MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: //home/cafsindia/cafsrms.sql
-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: May 10, 2026 at 07:07 PM
-- Server version: 8.0.35
-- PHP Version: 8.3.20

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `cafsrms`
--

DELIMITER $$
--
-- Procedures
--
CREATE  PROCEDURE `sp_a_run` (`cw_action` VARCHAR(255), `cw_query` TEXT)   BEGIN
	SET @buffer = cw_query;
	
	PREPARE stmt FROM @buffer;
	EXECUTE stmt;
	DEALLOCATE PREPARE stmt;
	IF cw_action = "INSERT" THEN
		SELECT LAST_INSERT_ID() as ins_id;
	END IF;
END$$

CREATE  PROCEDURE `sp_a_table_info` (`cw_action` VARCHAR(255))   BEGIN		
   SELECT table_info,search_info FROM  cw_page_setting where prime_module_id = cw_action;
END$$

CREATE  PROCEDURE `sp_chart_setting_search` (`cw_action` VARCHAR(10), `cw_search` VARCHAR(255), `cw_limit` INT(100), `cw_offset` INT(100), `cw_sort` VARCHAR(255), `cw_order` VARCHAR(100))   BEGIN
IF cw_action = "SEARCH" THEN
SET @buffer = CONCAT_WS('',
'SELECT * FROM cw_chart_view_line inner join cw_chart_view on cw_chart_view.prime_chart_view_id=cw_chart_view_line.chart_view_id where cw_chart_view_line.trans_status = 1'
);

PREPARE stmt FROM @buffer;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
END IF; 
IF cw_action = "COUNT" THEN  
SELECT COUNT(*) AS data_count FROM cw_chart_view_line WHERE trans_status = 1;
END IF;
END$$

CREATE  PROCEDURE `sp_cond_crud` (`cw_action` VARCHAR(255), `cw_table_data` TEXT, `cw_action_by` VARCHAR(255))   BEGIN
DECLARE cw_prime_cond_id,cw_cond_module_id,cw_condition_label_name,cw_condition_type,cw_condition_for,cw_condition_check_form,cw_condition_bind_to,
cw_condition_table,cw_is_drop_down,cw_cond_drop_down TEXT;
SET cw_prime_cond_id        = json_val(cw_table_data,'prime_cond_id');
SET cw_cond_module_id       = json_val(cw_table_data,'cond_module_id');
SET cw_condition_label_name = json_val(cw_table_data,'condition_label_name');
SET cw_condition_type       = json_val(cw_table_data,'condition_type');
SET cw_condition_for        = json_val(cw_table_data,'condition_for');
SET cw_condition_check_form = json_val(cw_table_data,'condition_check_form');
SET cw_condition_bind_to    = json_val(cw_table_data,'condition_bind_to');
SET cw_condition_table      = json_val(cw_table_data,'condition_table');
SET cw_is_drop_down         = json_val(cw_table_data,'is_drop_down');
SET cw_cond_drop_down       = json_val(cw_table_data,'cond_drop_down');
	
       IF cw_action = "VIEW" THEN
	SELECT * FROM  cw_form_condition_formula WHERE cond_module_id = cw_cond_module_id AND trans_status = '1';
    END IF;
         IF cw_action = "EDIT" THEN
	SELECT * FROM  cw_form_condition_formula WHERE prime_cond_id = cw_prime_cond_id  and cond_module_id = cw_cond_module_id 
	AND trans_status = '1';
    END IF;
          IF cw_action = "REMOVE" THEN
    
	UPDATE  
		cw_form_condition_formula
	SET  	
		trans_status = '0',trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")  
	WHERE 
		prime_cond_id = cw_prime_cond_id;
		
	UPDATE  
		cw_form_for_input
	SET  	
		trans_status = '0',trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")  
	WHERE 
		input_for_cond_id = cw_prime_cond_id;
		
	UPDATE  
		cw_form_bind_input
	SET  	
		trans_status = '0',trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")  
	WHERE 
		input_cond_id = cw_prime_cond_id;
		
    END IF;
        IF cw_action = "SAVE" THEN
	IF EXISTS(SELECT prime_cond_id FROM cw_form_condition_formula WHERE prime_cond_id = cw_prime_cond_id AND trans_status = '1')  THEN
		UPDATE  
			cw_form_condition_formula
		SET  	
			cond_module_id = cw_cond_module_id,condition_label_name = cw_condition_label_name,condition_type = cw_condition_type, 
			condition_for = cw_condition_for, condition_check_form = cw_condition_check_form,condition_bind_to = cw_condition_bind_to,
			condition_table=cw_condition_table,is_drop_down=cw_is_drop_down,cond_drop_down=cw_cond_drop_down,trans_updated_by = cw_action_by,
			trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")  
		WHERE 
		prime_cond_id = cw_prime_cond_id;
		SELECT '1' AS result;
	ELSE
		INSERT INTO cw_form_condition_formula 
			(cond_module_id,condition_label_name,condition_type,condition_for,condition_check_form,condition_bind_to,condition_table,
			is_drop_down,cond_drop_down,trans_created_by,trans_created_date)
		VALUES 
			(cw_cond_module_id,cw_condition_label_name,cw_condition_type,cw_condition_for,cw_condition_check_form,cw_condition_bind_to,
			cw_condition_table,cw_is_drop_down,cw_cond_drop_down,cw_action_by,DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S"));
		SELECT LAST_INSERT_ID() AS ins_id;
	END IF;
    END IF;
END$$

CREATE  PROCEDURE `sp_custom_form_search` (`cw_action` VARCHAR(10))   BEGIN
IF cw_action = "SEARCH" THEN
	SET @buffer = 'SELECT module_id,module_name FROM cw_modules  where cw_modules.trans_status = 1 and cw_modules.custom_module = 1'; 
	
	
	PREPARE stmt FROM @buffer;
	EXECUTE stmt;
	DEALLOCATE PREPARE stmt;
END IF;  
IF cw_action = "COUNT" THEN   
	SELECT COUNT(*) AS data_count FROM cw_modules  where cw_modules.trans_status = 1 and cw_modules.custom_module = 1;
END IF;
END$$

CREATE  PROCEDURE `sp_form_setting_crud` (`cw_action` VARCHAR(255), `cw_table_data` TEXT, `cw_action_by` VARCHAR(255))   BEGIN
DECLARE cw_prime_form_id,cw_prime_module_id,cw_input_view_type,cw_input_for,cw_field_type,cw_label_name,cw_view_name,cw_short_name,cw_text_type,cw_field_length,cw_field_decimals,cw_pick_list_type,cw_pick_list,
cw_pick_table,cw_auto_prime_id,cw_auto_dispaly_value,cw_pick_list_import,cw_field_isdefault,cw_default_value,cw_mandatory_field,cw_unique_field,cw_sort_order,cw_field_show,cw_field_sort,cw_field_for,cw_file_type,cw_upload_extension,
cw_table_show,cw_search_show,cw_table_sort,cw_transaction_type,cw_gross_check,cw_taxable_check,cw_earn_month_check,cw_earn_payroll_check,cw_ded_payroll_check,cw_benefit_check,cw_increment_check,cw_arrear_pf_check,cw_fandf_check,cw_deduction_check,cw_deduction_month_check,cw_loan_check,cw_uniform_check,cw_edit_read,cw_monthly_input_sort,cw_payroll_sort,cw_picklist_data,cw_duplicate_data TEXT;
SET cw_prime_form_id           = json_val(cw_table_data,'prime_form_id');
SET cw_prime_module_id         = json_val(cw_table_data,'prime_module_id'); 
SET cw_field_type              = json_val(cw_table_data,'field_type');
SET cw_input_view_type         = json_val(cw_table_data,'input_view_type');
SET cw_input_for               = json_val(cw_table_data,'input_for');
SET cw_label_name              = json_val(cw_table_data,'label_name');
SET cw_view_name               = json_val(cw_table_data,'view_name');
SET cw_short_name              = json_val(cw_table_data,'short_name');
SET cw_field_length            = json_val(cw_table_data,'field_length');
SET cw_field_decimals          = json_val(cw_table_data,'field_decimals');
SET cw_pick_list_type          = json_val(cw_table_data,'pick_list_type');
SET cw_pick_list               = json_val(cw_table_data,'pick_list');
SET cw_pick_table              = json_val(cw_table_data,'pick_table');
SET cw_auto_prime_id           = json_val(cw_table_data,'auto_prime_id');
SET cw_auto_dispaly_value      = json_val(cw_table_data,'auto_dispaly_value');
SET cw_field_isdefault         = json_val(cw_table_data,'field_isdefault');
SET cw_default_value           = json_val(cw_table_data,'default_value');
SET cw_mandatory_field         = json_val(cw_table_data,'mandatory_field');
SET cw_unique_field            = json_val(cw_table_data,'unique_field');
SET cw_field_show              = json_val(cw_table_data,'field_show');
SET cw_field_sort              = json_val(cw_table_data,'field_sort');
SET cw_field_for               = json_val(cw_table_data,'field_for');
SET cw_file_type               = json_val(cw_table_data,'file_type');
SET cw_table_show              = json_val(cw_table_data,'table_show');
SET cw_search_show             = json_val(cw_table_data,'search_show');
SET cw_transaction_type        = json_val(cw_table_data,'transaction_type');
SET cw_gross_check             = json_val(cw_table_data,'gross_check');
SET cw_taxable_check           = json_val(cw_table_data,'taxable_check');
SET cw_earn_month_check        = json_val(cw_table_data,'earn_month_check');
SET cw_earn_payroll_check      = json_val(cw_table_data,'earn_payroll_check');
SET cw_ded_payroll_check       = json_val(cw_table_data,'ded_payroll_check');
SET cw_benefit_check           = json_val(cw_table_data,'benefit_check');
SET cw_increment_check         = json_val(cw_table_data,'increment_check'); 
SET cw_arrear_pf_check         = json_val(cw_table_data,'arrear_pf_check');
SET cw_fandf_check             = json_val(cw_table_data,'fandf_check');
SET cw_deduction_check         = json_val(cw_table_data,'deduction_check');
SET cw_deduction_month_check   = json_val(cw_table_data,'deduction_month_check');
SET cw_loan_check              = json_val(cw_table_data,'loan_check');
SET cw_uniform_check           = json_val(cw_table_data,'uniform_check');
SET cw_edit_read               = json_val(cw_table_data,'edit_read');
SET cw_monthly_input_sort      = json_val(cw_table_data,'monthly_input_sort');
SET cw_payroll_sort            = json_val(cw_table_data,'payroll_sort');
SET cw_picklist_data           = json_val(cw_table_data,'picklist_data');
SET cw_duplicate_data          = json_val(cw_table_data,'duplicate_data');
SET cw_pick_list_import        = json_val(cw_table_data,'pick_list_import');
SET cw_text_type               = json_val(cw_table_data,'text_type');
SET cw_upload_extension        = json_val(cw_table_data,'upload_extension');
       IF cw_action = "VIEW" THEN
	SELECT * FROM  cw_form_setting WHERE prime_module_id = cw_prime_module_id AND trans_status = '1' ORDER BY ABS(field_sort) ASC;
    END IF;
        IF cw_action = "VIEW_INPUT" THEN
	SELECT * FROM  cw_form_setting WHERE prime_module_id = cw_prime_module_id  AND input_for = cw_input_for  
	AND trans_status = '1' ORDER BY ABS(field_sort) ASC;
    END IF;
        IF cw_action = "TAB_VIEW" THEN
	SELECT * FROM  cw_form_setting WHERE prime_module_id = cw_prime_module_id AND input_view_type IN (1,2)  AND table_show = '1'
	AND trans_status = '1' ORDER BY ABS(table_sort) ASC;
    END IF;
        IF cw_action = "MONTH_VIEW" THEN
	SELECT * FROM  cw_form_setting WHERE prime_module_id = cw_prime_module_id AND (earn_month_check = cw_earn_month_check OR deduction_month_check = cw_deduction_month_check) AND input_view_type IN (1,2)
	AND trans_status = '1' ORDER BY ABS(monthly_input_sort) ASC;
    END IF;
        IF cw_action = "PAYROLL_VIEW" THEN
	SELECT * FROM  cw_form_setting WHERE prime_module_id = cw_prime_module_id AND (earn_payroll_check = cw_earn_payroll_check OR ded_payroll_check = cw_ded_payroll_check) AND input_view_type IN (1,2)
	AND trans_status = '1' ORDER BY ABS(payroll_sort) ASC;
    END IF;
        IF cw_action = "QUERY_VIEW" THEN
	IF cw_input_view_type = "1" THEN
	    SELECT * FROM  cw_form_setting WHERE prime_module_id = cw_prime_module_id AND input_view_type IN (1,2) 
	    AND trans_status = '1' ORDER BY ABS(field_sort) DESC;
	END IF;
	IF cw_input_view_type = "3" THEN
	    SELECT * FROM  cw_form_setting WHERE prime_module_id = cw_prime_module_id AND input_view_type IN (3) 
	    AND trans_status = '1' ORDER BY ABS(field_sort) DESC;
	END IF;
    END IF;
         IF cw_action = "EDIT" THEN
	SELECT * FROM  cw_form_setting WHERE prime_form_id = cw_prime_form_id AND prime_module_id = cw_prime_module_id 
	AND trans_status = '1' ORDER BY ABS(field_sort) ASC;
    END IF;
         IF cw_action = "SORT_COUNT" THEN
	SELECT COUNT(*) AS sort_count FROM  cw_form_setting WHERE prime_module_id = cw_prime_module_id  AND input_for = cw_input_for
	AND trans_status = '1';
    END IF;
        IF cw_action = "SAVE" THEN
	IF EXISTS(SELECT prime_form_id FROM cw_form_setting WHERE prime_form_id = cw_prime_form_id OR (prime_module_id = cw_prime_module_id AND label_name = cw_label_name) AND trans_status = '1')  THEN
		UPDATE  
			cw_form_setting
		SET  	
			input_view_type = cw_input_view_type,input_for = cw_input_for,prime_module_id = cw_prime_module_id,field_type=cw_field_type,label_name=cw_label_name,
			view_name=cw_view_name,short_name=cw_short_name,text_type = cw_text_type,field_length = cw_field_length,field_decimals = cw_field_decimals,pick_list = cw_pick_list,
			pick_list_type = cw_pick_list_type,pick_list_import = cw_pick_list_import, pick_table = cw_pick_table,auto_prime_id = cw_auto_prime_id,
			auto_dispaly_value = cw_auto_dispaly_value,field_isdefault = cw_field_isdefault,
			default_value = cw_default_value,mandatory_field = cw_mandatory_field,unique_field = cw_unique_field,
			field_show = cw_field_show,field_for = cw_field_for,file_type=cw_file_type,upload_extension = cw_upload_extension,table_show = cw_table_show,
			search_show = cw_search_show,transaction_type = cw_transaction_type,gross_check = cw_gross_check,taxable_check = cw_taxable_check,earn_month_check = cw_earn_month_check,earn_payroll_check = cw_earn_payroll_check,ded_payroll_check = cw_ded_payroll_check,benefit_check = cw_benefit_check,increment_check = cw_increment_check, arrear_pf_check = cw_arrear_pf_check,fandf_check = cw_fandf_check,deduction_check = cw_deduction_check,deduction_month_check = cw_deduction_month_check,loan_check = cw_loan_check,uniform_check = cw_uniform_check,edit_read = cw_edit_read,picklist_data = cw_picklist_data,duplicate_data = cw_duplicate_data,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")  
		WHERE 
		prime_form_id = cw_prime_form_id;
		SELECT '1' AS result;
	ELSE
		INSERT INTO cw_form_setting 
			(input_view_type,input_for,prime_module_id, field_type,label_name,view_name,short_name,text_type,field_length,field_decimals,pick_list,field_isdefault,default_value,mandatory_field,unique_field,field_show,field_sort,pick_list_type,pick_list_import,pick_table,auto_prime_id,auto_dispaly_value,field_for,file_type,upload_extension,table_show,search_show,transaction_type,gross_check,taxable_check,earn_month_check,earn_payroll_check,ded_payroll_check,benefit_check,increment_check,arrear_pf_check,fandf_check,deduction_check,deduction_month_check,loan_check,uniform_check,edit_read,picklist_data,duplicate_data,
			trans_created_by,trans_created_date)
		VALUES 
			(cw_input_view_type,cw_input_for,cw_prime_module_id, cw_field_type,cw_label_name,cw_view_name,cw_short_name,cw_text_type,cw_field_length,cw_field_decimals,cw_pick_list,cw_field_isdefault,cw_default_value,cw_mandatory_field,cw_unique_field,cw_field_show,cw_field_sort,cw_pick_list_type,cw_pick_list_import,cw_pick_table,cw_auto_prime_id,cw_auto_dispaly_value,cw_field_for,cw_file_type,cw_upload_extension,cw_table_show,cw_search_show,cw_transaction_type,cw_gross_check,cw_taxable_check,cw_earn_month_check,cw_earn_payroll_check,cw_ded_payroll_check,cw_benefit_check,cw_increment_check,cw_arrear_pf_check,cw_fandf_check,cw_deduction_check,cw_deduction_month_check,cw_loan_check,cw_uniform_check,cw_edit_read,cw_picklist_data,cw_duplicate_data,cw_action_by,DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S"));
		SELECT '1' AS result;
	END IF;
    END IF;
        IF cw_action = "UPD_SORT" THEN
	SET cw_sort_order    = json_val(cw_table_data,'sort_order');	
	UPDATE  
		cw_form_setting
	SET  	
		field_sort = cw_sort_order,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")  
	WHERE 
	prime_form_id = cw_prime_form_id AND prime_module_id = cw_prime_module_id AND input_for = cw_input_for;
	SELECT '1' AS result;
    END IF;
         IF cw_action = "UPD_TABLE_SORT" THEN
	SET cw_table_sort    = json_val(cw_table_data,'table_sort');
	
	UPDATE  
		cw_form_setting
	SET  	
		table_sort = cw_table_sort,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")  
	WHERE 
	prime_form_id = cw_prime_form_id AND prime_module_id = cw_prime_module_id;
	SELECT '1' AS result;
    END IF;
         IF cw_action = "UPD_MONTHLY_SORT" THEN
	SET cw_monthly_input_sort    = json_val(cw_table_data,'monthly_input_sort');
	
	UPDATE  
		cw_form_setting
	SET  	
		monthly_input_sort = cw_monthly_input_sort,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")  
	WHERE 
	prime_form_id = cw_prime_form_id AND prime_module_id = cw_prime_module_id;
	SELECT '1' AS result;
    END IF;
        IF cw_action = "UPD_PAYROLL_SORT" THEN
	SET cw_monthly_input_sort    = json_val(cw_table_data,'payroll_sort');
	
	UPDATE  
		cw_form_setting
	SET  	
		payroll_sort = cw_payroll_sort,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")  
	WHERE 
	prime_form_id = cw_prime_form_id AND prime_module_id = cw_prime_module_id;
	SELECT '1' AS result;
    END IF;
        IF cw_action = "VIEW_CUSTOM" THEN
	SELECT * FROM  cw_form_setting WHERE prime_module_id = cw_prime_module_id  AND input_for = cw_input_for  
	AND trans_status = '1' AND field_show = '1' ORDER BY ABS(field_sort) ASC;
    END IF;
END$$

CREATE  PROCEDURE `sp_form_setting_search` (`cw_action` VARCHAR(10), `cw_search` VARCHAR(255), `cw_limit` INT(100), `cw_offset` INT(100), `cw_sort` VARCHAR(255), `cw_order` VARCHAR(100))   BEGIN
IF cw_action = "SEARCH" THEN
	SET @buffer = CONCAT_WS('',
	'SELECT * FROM cw_modules left join cw_main_menu on cw_main_menu.prime_menu_id = cw_modules.menu_id where cw_modules.trans_status = 1 and cw_modules.menu_id not in (1,2) and cw_modules.module_name LIKE ', CONCAT("'%", cw_search , "%'") , 'or cw_modules.module_type LIKE ', CONCAT("'%", cw_search , "%'") ,' ORDER BY ', cw_sort, ' ', cw_order, ' LIMIT ' , cw_limit, ',', cw_offset
	);
	
	PREPARE stmt FROM @buffer;
	EXECUTE stmt;
	DEALLOCATE PREPARE stmt;
END IF;  
IF cw_action = "COUNT" THEN   
	SELECT COUNT(*) AS data_count FROM cw_modules where show_module = 1 and trans_status = 1 and menu_id not in (1,2);
END IF;
END$$

CREATE  PROCEDURE `sp_form_view_setting_crud` (`cw_action` VARCHAR(255), `cw_table_data` TEXT, `cw_action_by` VARCHAR(255))   BEGIN
DECLARE cw_prime_form_view_id,cw_prime_view_module_id,cw_form_view_type,cw_form_view_type_mode,cw_form_view_label_name,cw_form_view_heading,cw_form_view_for,cw_form_view_show,cw_form_view_sort TEXT;
SET cw_prime_form_view_id   = json_val(cw_table_data,'prime_form_view_id');
SET cw_prime_view_module_id = json_val(cw_table_data,'prime_view_module_id'); 
SET cw_form_view_type       = json_val(cw_table_data,'form_view_type'); 
SET cw_form_view_type_mode  = json_val(cw_table_data,'form_view_type_mode'); 
SET cw_form_view_label_name = json_val(cw_table_data,'form_view_label_name'); 
SET cw_form_view_heading    = json_val(cw_table_data,'form_view_heading'); 
SET cw_form_view_for        = json_val(cw_table_data,'form_view_for'); 
SET cw_form_view_show       = json_val(cw_table_data,'form_view_show'); 
SET cw_form_view_sort       = json_val(cw_table_data,'form_view_sort'); 
        IF cw_action = "VIEW" THEN
	SELECT * FROM  cw_form_view_setting WHERE prime_view_module_id = cw_prime_view_module_id AND trans_status = '1' ORDER BY form_view_sort ASC;
    END IF;
        IF cw_action = "SORT_COUNT" THEN
	SELECT COUNT(*) AS sort_count FROM  cw_form_view_setting WHERE prime_view_module_id = cw_prime_view_module_id
	AND trans_status = '1';
    END IF;
    
          IF cw_action = "EDIT" THEN
	SELECT * FROM  cw_form_view_setting WHERE prime_form_view_id = cw_prime_form_view_id AND prime_view_module_id = cw_prime_view_module_id 
	AND trans_status = '1' ORDER BY form_view_sort ASC;
    END IF;
    
         IF cw_action = "UPD_SORT" THEN
	UPDATE  
		cw_form_view_setting
	SET  	
		form_view_sort = cw_form_view_sort,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")  
	WHERE 
	prime_form_view_id = cw_prime_form_view_id AND prime_view_module_id = cw_prime_view_module_id;
	SELECT '1' AS result;
    END IF;
    
        IF cw_action = "SAVE" THEN
	IF EXISTS(SELECT prime_form_view_id FROM cw_form_view_setting WHERE (prime_form_view_id = cw_prime_form_view_id OR 
	form_view_label_name = cw_form_view_label_name) AND trans_status = '1')  THEN
		UPDATE  
			cw_form_view_setting
		SET  	
			prime_view_module_id = cw_prime_view_module_id,form_view_type = cw_form_view_type,form_view_type_mode = cw_form_view_type_mode,
			form_view_label_name = cw_form_view_label_name,form_view_heading =cw_form_view_heading,form_view_for = cw_form_view_for,
			form_view_show = cw_form_view_show,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")  
		WHERE 
		prime_form_view_id = cw_prime_form_view_id;
		
		UPDATE  cw_form_setting SET input_view_type = cw_form_view_type WHERE input_for = cw_prime_form_view_id;		
		SELECT '1' AS result;
	ELSE
		INSERT INTO cw_form_view_setting 
			(prime_view_module_id,form_view_type,form_view_type_mode,form_view_label_name,form_view_heading,form_view_for,form_view_show,form_view_sort,
			trans_created_by,trans_created_date)
		VALUES 
			(cw_prime_view_module_id,cw_form_view_type,cw_form_view_type_mode,cw_form_view_label_name,cw_form_view_heading,cw_form_view_for,cw_form_view_show,
			cw_form_view_sort,cw_action_by,DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S"));
		
		UPDATE  cw_form_setting SET input_view_type = cw_form_view_type WHERE input_for = LAST_INSERT_ID();		
		SELECT '1' AS result;
	END IF;
    END IF;
END$$

CREATE  PROCEDURE `sp_print_setting_search` (`cw_action` VARCHAR(10))   BEGIN
IF cw_action = "SEARCH" THEN
	SET @buffer = 'SELECT * FROM cw_modules left join cw_main_menu on cw_main_menu.prime_menu_id = cw_modules.menu_id where cw_modules.trans_status = 1 and cw_modules.pdf_module = 1 and cw_modules.menu_id not in (1,2)';
	
	PREPARE stmt FROM @buffer;
	EXECUTE stmt;
	DEALLOCATE PREPARE stmt;
END IF;  
IF cw_action = "COUNT" THEN   
	SELECT COUNT(*) AS data_count FROM cw_modules WHERE show_module = 1 AND trans_status = 1 AND pdf_module = 1 AND menu_id NOT IN (1,2);
END IF;
END$$

CREATE  PROCEDURE `sp_utilities_setting_search` (`cw_action` VARCHAR(10), `cw_search` VARCHAR(255))   BEGIN
IF cw_action = "SEARCH" THEN
	SET @buffer = CONCAT_WS('',
	'SELECT * FROM cw_modules left join cw_main_menu on cw_main_menu.prime_menu_id = cw_modules.menu_id where cw_modules.trans_status = 1 and cw_modules.import_module = 1 and (cw_modules.module_name LIKE ', CONCAT("'%", cw_search , "%'") , 'or cw_modules.module_type LIKE ', CONCAT("'%", cw_search , "%'"),') and cw_modules.menu_id not in (2)'
	); 
	
	
	PREPARE stmt FROM @buffer;
	EXECUTE stmt;
	DEALLOCATE PREPARE stmt;
END IF;  
IF cw_action = "COUNT" THEN   
	SELECT COUNT(*) AS data_count FROM cw_modules WHERE show_module = 1 AND import_module = 1  AND trans_status = 1 AND menu_id NOT IN (1,2);
END IF;
END$$

--
-- Functions
--
CREATE  FUNCTION `json_val` (`details` TEXT, `required_field` VARCHAR(255)) RETURNS TEXT CHARSET latin1  BEGIN
  DECLARE search_term TEXT;
  SET details = SUBSTRING_INDEX(details, "{", -1);
  SET details = SUBSTRING_INDEX(details, "}", 1);
  SET search_term = CONCAT('"', SUBSTRING_INDEX(required_field,'$.', - 1), '"');
  IF INSTR(details, search_term) > 0 THEN
    RETURN TRIM(
      BOTH '"' FROM SUBSTRING_INDEX(
        SUBSTRING_INDEX(
          SUBSTRING_INDEX(
            details,
            search_term,
            - 1
          ),
          ',"',
          1
        ),
        ':',
        -1
      )
    );
  ELSE
    RETURN NULL;
  END IF;
END$$

DELIMITER ;

-- --------------------------------------------------------

--
-- Table structure for table `cw_active_status`
--

CREATE TABLE `cw_active_status` (
  `prime_active_status_id` int NOT NULL,
  `active_status_value` varchar(100) DEFAULT NULL,
  `trans_status` int NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_active_status`
--

INSERT INTO `cw_active_status` (`prime_active_status_id`, `active_status_value`, `trans_status`) VALUES
(0, 'Active', 1),
(1, 'In Active', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_app_config`
--

CREATE TABLE `cw_app_config` (
  `app_id` int NOT NULL,
  `key` varchar(255) NOT NULL,
  `value` varchar(255) NOT NULL,
  `shop_id` varchar(16) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `cw_app_config`
--

INSERT INTO `cw_app_config` (`app_id`, `key`, `value`, `shop_id`) VALUES
(7546, 'address', 'Globus, 5th Floor, B block,Sir Thyagaraya Road,T.Nagar,,Chennai,600003,India', 'SPAT1H57987783'),
(7547, 'barcode_content', 'number', 'SPAT1H57987783'),
(7548, 'barcode_first_row', 'not_show', 'SPAT1H57987783'),
(7549, 'barcode_font', '0', 'SPAT1H57987783'),
(7550, 'barcode_font_size', '10', 'SPAT1H57987783'),
(7551, 'barcode_generate_if_empty', '0', 'SPAT1H57987783'),
(7552, 'barcode_height', '50', 'SPAT1H57987783'),
(7553, 'barcode_num_in_row', '2', 'SPAT1H57987783'),
(7554, 'barcode_page_cellspacing', '20', 'SPAT1H57987783'),
(7555, 'barcode_page_width', '100', 'SPAT1H57987783'),
(7556, 'barcode_quality', '100', 'SPAT1H57987783'),
(7557, 'barcode_second_row', 'item_code', 'SPAT1H57987783'),
(7558, 'barcode_third_row', 'not_show', 'SPAT1H57987783'),
(7559, 'barcode_type', 'Code39', 'SPAT1H57987783'),
(7560, 'barcode_width', '250', 'SPAT1H57987783'),
(7561, 'city', 'Chennai', 'SPAT1H57987783'),
(7562, 'client_id', 'fa4fa19d-885c-4299-940a-4c382b5490a0', 'SPAT1H57987783'),
(7563, 'company', 'CAFS JOBS', 'SPAT1H57987783'),
(7565, 'country', 'India', 'SPAT1H57987783'),
(7566, 'country_codes', 'in', 'SPAT1H57987783'),
(7567, 'currency_decimals', '2', 'SPAT1H57987783'),
(7568, 'currency_symbol', '₹', 'SPAT1H57987783'),
(7579, 'dateformat', 'd/m/Y', 'SPAT1H57987783'),
(7586, 'email', 'hr@cafsinfotech.com', 'SPAT1H57987783'),
(7587, 'fax', '', 'SPAT1H57987783'),
(7588, 'gstin', '21ADSPU4691P1Z5', 'SPAT1H57987783'),
(7591, 'invoice_enable', '1', 'SPAT1H57987783'),
(7592, 'language', 'en', 'SPAT1H57987783'),
(7593, 'lines_per_page', '25', 'SPAT1H57987783'),
(7594, 'mailpath', '/usr/sbin/sendmail', 'SPAT1H57987783'),
(7598, 'msg_uid', '-', 'SPAT1H57987783'),
(7599, 'notify_horizontal_position', 'right', 'SPAT1H57987783'),
(7600, 'notify_vertical_position', 'bottom', 'SPAT1H57987783'),
(7601, 'number_locale', 'en_IN', 'SPAT1H57987783'),
(7602, 'pan', 'ADSPU4691P', 'SPAT1H57987783'),
(7603, 'payment_options_order', 'cashdebitcredit', 'SPAT1H57987783'),
(7604, 'phone', '9500088633', 'SPAT1H57987783'),
(7605, 'pincode', '600003', 'SPAT1H57987783'),
(7606, 'print_bottom_margin', '', 'SPAT1H57987783'),
(7607, 'print_footer', '0', 'SPAT1H57987783'),
(7608, 'print_header', '0', 'SPAT1H57987783'),
(7609, 'print_left_margin', '', 'SPAT1H57987783'),
(7610, 'print_right_margin', '', 'SPAT1H57987783'),
(7611, 'print_silently', '0', 'SPAT1H57987783'),
(7612, 'print_top_margin', '', 'SPAT1H57987783'),
(7613, 'protocol', 'mail', 'SPAT1H57987783'),
(7614, 'quantity_decimals', '0', 'SPAT1H57987783'),
(7615, 'receipt_show_description', '1', 'SPAT1H57987783'),
(7616, 'receipt_show_serialnumber', '1', 'SPAT1H57987783'),
(7617, 'receipt_show_taxes', '1', 'SPAT1H57987783'),
(7618, 'receipt_show_total_discount', '1', 'SPAT1H57987783'),
(7619, 'receipt_template', 'receipt_short', 'SPAT1H57987783'),
(7620, 'receiving_calculate_average_price', '0', 'SPAT1H57987783'),
(7621, 'recv_invoice_format', '$CO', 'SPAT1H57987783'),
(7623, 'sales_invoice_format', '$CO', 'SPAT1H57987783'),
(7624, 'smtp_crypto', 'ssl', 'SPAT1H57987783'),
(7625, 'smtp_host', '', 'SPAT1H57987783'),
(7626, 'smtp_pass', '', 'SPAT1H57987783'),
(7627, 'smtp_port', '465', 'SPAT1H57987783'),
(7628, 'smtp_timeout', '5', 'SPAT1H57987783'),
(7629, 'smtp_user', '', 'SPAT1H57987783'),
(7630, 'street', 'Globus, 5th Floor, B block,Sir Thyagaraya Road,T.Nagar,', 'SPAT1H57987783'),
(7631, 'tax_decimals', '2', 'SPAT1H57987783'),
(7632, 'tax_included', '0', 'SPAT1H57987783'),
(7633, 'thousands_separator', 'thousands_separator', 'SPAT1H57987783'),
(7634, 'timeformat', 'h:i:s a', 'SPAT1H57987783'),
(7635, 'timezone', 'Asia/Kolkata', 'SPAT1H57987783'),
(7636, 'typeofstore', '', 'SPAT1H57987783'),
(7637, 'website', 'http://cafsinfotech.com/', 'SPAT1H57987783'),
(7673, 'state', '1', 'SPAT1H57987783');

-- --------------------------------------------------------

--
-- Table structure for table `cw_assign_log`
--

CREATE TABLE `cw_assign_log` (
  `prime_assign_log_id` int NOT NULL,
  `prime_candidate_tracker_id` int DEFAULT NULL,
  `interviewer` int DEFAULT NULL,
  `interview_status` int DEFAULT NULL,
  `overall_rating` int DEFAULT '0',
  `remarks` text,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_assign_log`
--

INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(1, 7, 8, 4, 2, 'to check-php developer', 7, '0000-00-00 00:00:00', 1),
(2, 3, 8, 5, 2, 'no job need, will not sustain.', 10, '0000-00-00 00:00:00', 1),
(3, 4, 8, 4, 3, 'Need to check  whether she will suite for our process.', 1, '0000-00-00 00:00:00', 1),
(4, 5, 8, 2, 2, 'exp salary is 17K', 1, '0000-00-00 00:00:00', 1),
(5, 9, 8, 5, 0, 'Will not  suite  for  CRM  and  rE', 1, '0000-00-00 00:00:00', 1),
(6, 8, 8, 5, 0, 'will not suite for cRM', 1, '0000-00-00 00:00:00', 1),
(7, 12, 16, 3, 2, 'He Is Wrongly Applied to post,He Is Eligible For RE', 1, '0000-00-00 00:00:00', 1),
(8, 18, 8, 5, 0, 'No  Relevant exp.  prefers non voice  looking job for  time being', 10, '0000-00-00 00:00:00', 1),
(9, 14, 8, 5, 0, 'Not speaking up', 10, '0000-00-00 00:00:00', 1),
(10, 15, 8, 5, 0, 'No  Relevant Experience , salary Exception high   ', 10, '0000-00-00 00:00:00', 1),
(11, 17, 8, 5, 0, 'will not suite for this profile', 10, '0000-00-00 00:00:00', 1),
(12, 13, 8, 5, 0, 'He is not Interested in field sales, salary Package is as a crm  ', 10, '0000-00-00 00:00:00', 1),
(13, 4, 11, 2, 3, 'Travailing hours more than 2 hours need to check ', 8, '2020-09-03 11:55:50', 1),
(14, 4, 11, 2, 3, 'Travailing hours more than 2 hours need to check ', 8, '2020-09-03 11:55:50', 1),
(15, 19, 8, 5, 0, 'will not suite for cRM', 1, '0000-00-00 00:00:00', 1),
(16, 20, 11, 5, 0, 'will not suite for Mis', 1, '0000-00-00 00:00:00', 1),
(17, 23, 8, 5, 0, 'lang is not good, he is not suite for crm and rE', 1, '0000-00-00 00:00:00', 1),
(18, 6, 8, 2, 3, '.Asked time to think about the salary Exp in kalyan Matrimony. okay for portfolio. exp is 13K.', 1, '0000-00-00 00:00:00', 1),
(19, 26, 21, 5, 3, 'not suitable for sales', 1, '0000-00-00 00:00:00', 1),
(20, 30, 21, 4, 4, 'recruiter....expected package 12k', 1, '0000-00-00 00:00:00', 1),
(21, 24, 16, 5, 1, 'Not Fit For RE and calling', 1, '0000-00-00 00:00:00', 1),
(22, 22, 24, 4, 3, 'HE APPLY FOR MIS .. SO NEXT ROUND ALLOCATED.. PROFILE HAND OVER TO NIRMAL', 1, '0000-00-00 00:00:00', 1),
(23, 1, 11, 2, 0, 'salary expected high if she is ok with 12 selected', 1, '0000-00-00 00:00:00', 1),
(24, 16, 11, 4, 4, 'we can try for recruiter....expected package 10k or 10,5k', 1, '0000-00-00 00:00:00', 1),
(25, 16, 8, 5, 3, 'holded for telephonic and no Response from her. will not suite for CAFS', 11, '2020-09-03 01:10:05', 1),
(26, 22, 25, 2, 0, 'Hold for telephonic round', 24, '2020-09-03 01:14:44', 1),
(27, 30, 8, 2, 0, 'Hold  for  telephonic  interview for cross  check', 21, '2020-09-03 01:24:47', 1),
(28, 25, 17, 4, 3, 'He is a Suitable calling profile and he is willing to work calling profile.   ', 1, '0000-00-00 00:00:00', 1),
(29, 27, 8, 5, 0, 'will not  suite  for  RM /RE  expected is  80K, Communication is  very  poor', 1, '0000-00-00 00:00:00', 1),
(30, 25, 13, 5, 0, 'will not suite for sales and calling', 17, '2020-09-03 02:37:26', 1),
(31, 7, 26, 5, 0, 'she dont know the basics of c and c++', 8, '2020-09-03 04:53:00', 1),
(32, 7, 26, 5, 0, 'she dont know the basics of c and c++', 8, '2020-09-03 04:53:00', 1),
(33, 7, 26, 5, 0, 'she dont know the basics of c and c++', 8, '2020-09-03 04:53:00', 1),
(34, 7, 26, 5, 0, 'she dont know the basics of c and c++', 8, '2020-09-03 04:53:00', 1),
(35, 40, 28, 4, 3, 'test nill', 7, '0000-00-00 00:00:00', 1),
(36, 40, 26, 2, 4, 'nill', 28, '2020-09-04 12:09:25', 1),
(37, 40, 26, 3, 0, NULL, 26, '2020-09-04 12:12:03', 1),
(38, 40, 26, 3, 0, NULL, 26, '2020-09-04 12:12:03', 1),
(39, 42, 8, 5, 1, 'looking for admin related job. will not sustain and Struggling to speak.', 1, '0000-00-00 00:00:00', 1),
(40, 44, 8, 4, 4, 'fresher, will suite for portfolio', 1, '0000-00-00 00:00:00', 1),
(41, 45, 8, 5, 1, 'Language is not good', 1, '0000-00-00 00:00:00', 1),
(42, 44, 21, 1, 0, NULL, 8, '2020-09-04 11:14:03', 1),
(43, 44, 21, 1, 0, NULL, 8, '2020-09-04 11:14:03', 1),
(44, 44, 11, 3, 4, 'salary decided 11k', 8, '2020-09-04 11:14:03', 1),
(45, 48, 8, 4, 3, 'will suite for portfolio and okay with 12K.', 1, '0000-00-00 00:00:00', 1),
(46, 48, 11, 3, 4, 'candidate ok', 8, '2020-09-04 11:35:47', 1),
(47, 48, 11, 3, 4, 'candidate ok', 8, '2020-09-04 11:35:47', 1),
(48, 49, 8, 5, 2, 'language is not good. Pronunciation is not good.', 1, '0000-00-00 00:00:00', 1),
(49, 50, 8, 5, 2, 'will not suite for CRM. Not speaking up. will not handle pressure and Sustain.', 1, '0000-00-00 00:00:00', 1),
(50, 60, 8, 5, 2, 'very childish will not suite for CRM', 1, '0000-00-00 00:00:00', 1),
(51, 46, 26, 5, 1, 'Her Years Of Experience, She Is Not Good At Technical.', 1, '0000-00-00 00:00:00', 1),
(52, 61, 18, 3, 3, 'Good candidate and has relevant experience', 1, '0000-00-00 00:00:00', 1),
(53, 53, 17, 5, 2, 'He will not sustain for sales ', 1, '0000-00-00 00:00:00', 1),
(54, 62, 14, 4, 3, 'Already 1 year experience in health insurance & need to check once in confident level', 1, '0000-00-00 00:00:00', 1),
(55, 62, 14, 4, 3, 'Already 1 year experience in health insurance & need to check once in confident level', 1, '0000-00-00 00:00:00', 1),
(56, 52, 11, 5, 3, 'not suitable for sales &telecalling', 1, '0000-00-00 00:00:00', 1),
(57, 54, 8, 5, 0, 'looking for non voice and will not sustain.', 1, '0000-00-00 00:00:00', 1),
(58, 57, 8, 4, 0, 'check with his skills', 1, '0000-00-00 00:00:00', 1),
(59, 62, 17, 3, 3, 'after 6 month based on Performance will Increase the salary   \nsalary will ', 14, '2020-09-04 01:05:33', 1),
(60, 62, 17, 3, 3, 'after 6 month based on Performance will Increase the salary   \nsalary will ', 14, '2020-09-04 01:05:33', 1),
(61, 56, 8, 5, 0, '2months in voice process, absconded from the company because of pressure. prefers non voice', 1, '0000-00-00 00:00:00', 1),
(62, 64, 40, 5, 3, 'Not willing to work in sales and interested in telecalling and he is asking 21k in telemarketing', 1, '0000-00-00 00:00:00', 1),
(63, 68, 8, 4, 3, 'nill', 1, '0000-00-00 00:00:00', 1),
(64, 68, 11, 2, 4, 'For Testing Purpose Updated by Sathish IT', 8, '2020-09-04 01:22:08', 1),
(65, 68, 11, 5, 0, NULL, 11, '2020-09-04 01:24:58', 1),
(66, 68, 11, 5, 0, NULL, 11, '2020-09-04 01:24:58', 1),
(67, 65, 40, 4, 4, 'Seems positive but not that much professional', 1, '0000-00-00 00:00:00', 1),
(68, 66, 8, 2, 0, 'for telephonic to cross check', 1, '0000-00-00 00:00:00', 1),
(69, 63, 8, 5, 2, 'too long,  not speaking up will  not suite for CRM', 1, '0000-00-00 00:00:00', 1),
(70, 67, 8, 5, 0, 'Pronunciation is not good and  lack in communication ', 1, '0000-00-00 00:00:00', 1),
(71, 57, 25, 5, 0, 'technical round - rejected', 8, '2020-09-04 02:09:51', 1),
(72, 57, 25, 5, 0, 'technical round - rejected', 8, '2020-09-04 02:09:51', 1),
(73, 71, 44, 4, 3, 'He Is Having Some Experience In Life Insurance From HDFC Casa, And Ok For RM Profile But He Dont Have Bike .Please Meet Once', 1, '0000-00-00 00:00:00', 1),
(74, 65, 18, 3, 3, 'Ok Candidate Need To  Call Him In This Number 9840584598\n', 40, '2020-09-04 02:37:59', 1),
(75, 74, 27, 2, 1, 'nill', 7, '0000-00-00 00:00:00', 1),
(76, 74, 27, 5, 0, NULL, 27, '2020-09-04 03:20:46', 1),
(77, 71, 29, 5, 1, 'not fit', 44, '2020-09-04 03:42:36', 1),
(78, 75, 8, 2, 3, 'for HR telephonic', 1, '0000-00-00 00:00:00', 1),
(79, 71, 29, 5, 1, 'not fit', 44, '2020-09-04 04:04:49', 1),
(80, 71, 29, 5, 1, 'not fit', 44, '2020-09-04 04:50:14', 1),
(81, 86, 40, 4, 3, 'Attitude issues but hard worker', 1, '0000-00-00 00:00:00', 1),
(82, 86, 18, 3, 3, 'Refereal candidate we can try to mould', 40, '2020-09-05 12:16:08', 1),
(83, 29, 8, 4, 3, 'Good in tech', 7, '0000-00-00 00:00:00', 1),
(84, 29, 26, 3, 4, 'good in tech and atitude', 8, '2020-09-05 01:38:50', 1),
(85, 81, 21, 4, 3, 'ok', 1, '0000-00-00 00:00:00', 1),
(86, 85, 21, 4, 3, 'selected', 1, '0000-00-00 00:00:00', 1),
(87, 94, 21, 4, 3, 'need  to check ramesh', 1, '0000-00-00 00:00:00', 1),
(88, 81, 14, 4, 4, 'Selected  . 9k salary ', 21, '2020-09-05 05:53:44', 1),
(89, 85, 8, 3, 0, 'for dhivya team', 21, '2020-09-05 05:56:12', 1),
(90, 94, 8, 8, 0, 'not turned up for 2nd round', 21, '2020-09-05 05:58:15', 1),
(91, 105, 8, 4, 5, 'tech, good', 1, '0000-00-00 00:00:00', 1),
(92, 105, 26, 3, 0, 'Good', 8, '2020-09-06 11:39:50', 1),
(93, 110, 19, 5, 2, 'NO COMMUNICATION IN BOTH(ENGLISH & tAMIL)', 50, '0000-00-00 00:00:00', 1),
(94, 104, 15, 5, 2, 'mBA student ,salary expectation high', 50, '0000-00-00 00:00:00', 1),
(95, 109, 8, 5, 0, 'looking for nonvoice. basics in excel.  will not suite for  crm.', 50, '0000-00-00 00:00:00', 1),
(96, 96, 8, 5, 0, 'no confidence and will not suite for HR and  voice is very low', 50, '0000-00-00 00:00:00', 1),
(98, 112, 26, 4, 3, 'assign dynamic form creation to save and list, delete option. he is having experience MERN.', 50, '0000-00-00 00:00:00', 1),
(99, 111, 8, 4, 3, 'Layoff from reliance. will not handle Pressure. need to cross check with his product Knowledge.', 50, '0000-00-00 00:00:00', 1),
(100, 108, 16, 2, 3, 'DECIDE TO SALARY', 50, '0000-00-00 00:00:00', 1),
(101, 111, 40, 4, 4, 'Looks like long runner with neutral knowledge in insurance field', 8, '2020-09-07 11:44:47', 1),
(102, 114, 8, 5, 3, 'Last week  Attended interview and rejected by suthagar and srikanth.', 50, '0000-00-00 00:00:00', 1),
(103, 115, 8, 5, 0, 'will not suite for CRM', 50, '0000-00-00 00:00:00', 1),
(104, 117, 20, 5, 3, 'no sales exp', 50, '0000-00-00 00:00:00', 1),
(105, 116, 24, 4, 5, 'SALARY 14.5k TO 15K INFORMED.. ALREADY EXP', 50, '0000-00-00 00:00:00', 1),
(106, 118, 33, 2, 0, 'Left before interview', 50, '0000-00-00 00:00:00', 1),
(107, 111, 18, 5, 3, 'Not fit for sales', 40, '2020-09-07 12:35:51', 1),
(109, 112, 27, 5, 2, '', 26, '2020-09-07 12:50:27', 1),
(110, 108, 8, 2, 0, 'Left after first round interview.', 16, '2020-09-07 12:52:13', 1),
(111, 108, 16, 4, 0, 'DECIDE TO SALARY ,HE IS EXPECT 15K TO 16K BUT PREVIOUS COMPANY TAKEN 11K', 16, '2020-09-07 12:52:13', 1),
(112, 106, 26, 5, 1, 'Fresher, No idea about basics and not interested in our terms.', 1, '0000-00-00 00:00:00', 1),
(113, 83, 8, 4, 3, 'Interested in field sales, but profile matches for CRM but salary exp is 18K.', 50, '0000-00-00 00:00:00', 1),
(114, 119, 24, 5, 1, 'Past Job.. 2month Abscond And 6month Abscond', 50, '0000-00-00 00:00:00', 1),
(115, 120, 18, 7, 3, 'GIven to GK', 50, '0000-00-00 00:00:00', 1),
(116, 123, 31, 4, 3, 'Lokesh Team reference', 50, '0000-00-00 00:00:00', 1),
(117, 121, 24, 5, 1, 'NOT SUITABLE FOR OUR PROFILE AND EXPECTING MORE SALARY.... ', 50, '0000-00-00 00:00:00', 1),
(118, 116, 20, 2, 4, 'Have To discuss salary.on final call', 24, '2020-09-07 01:39:45', 1),
(119, 122, 8, 5, 0, 'Already attend interview and rejected by suthagar and srikanth', 50, '0000-00-00 00:00:00', 1),
(120, 83, 19, 5, 2, 'no sustainability', 8, '2020-09-07 02:06:06', 1),
(121, 123, 18, 5, 3, 'Average guy', 31, '2020-09-07 03:46:35', 1),
(122, 116, 7, 1, 0, NULL, 20, '2020-09-07 04:55:41', 1),
(123, 116, 20, 4, 0, 'kindly confirm salary on call.', 20, '2020-09-07 04:55:41', 1),
(124, 128, 21, 4, 3, 'selected , 10k salary,need to  confirm joining bcz exam pending ', 50, '0000-00-00 00:00:00', 1),
(125, 149, 21, 4, 3, 'selected 10 k salary,need to confirm joining date last exam pending ', 50, '0000-00-00 00:00:00', 1),
(126, 135, 11, 5, 3, 'previous salary 15k(semi voice) .currently expecting 15k above...so rejected...', 50, '0000-00-00 00:00:00', 1),
(127, 137, 21, 4, 4, 'selected , 10 k salary, need to confirm joining date last exams pending ', 50, '0000-00-00 00:00:00', 1),
(128, 131, 31, 5, 3, 'Expecting 45k .  ', 50, '0000-00-00 00:00:00', 1),
(129, 129, 8, 4, 3, 'fresher, holds exp in Tommy retail. check with sustainability.', 50, '0000-00-00 00:00:00', 1),
(130, 132, 17, 4, 3, 'future plan business with brother  so cross check the profile ', 50, '0000-00-00 00:00:00', 1),
(131, 134, 26, 4, 2, 'fresher but he wants to learn technology, He knows the basics of PHP s but has to assign a simple task and evaluate.', 50, '0000-00-00 00:00:00', 1),
(132, 139, 26, 5, 1, 'he dont know the basics of PHP. not sure he cant learn things quickly.', 50, '0000-00-00 00:00:00', 1),
(133, 148, 8, 4, 3, 'has knowledge in health. salary exp is 17k  with inc.', 50, '0000-00-00 00:00:00', 1),
(134, 127, 17, 4, 3, 'cross check ', 50, '0000-00-00 00:00:00', 1),
(135, 142, 21, 5, 2, 'not fit for sales ,', 50, '0000-00-00 00:00:00', 1),
(136, 155, 19, 5, 1, 'not opening his mouth', 50, '0000-00-00 00:00:00', 1),
(137, 156, 24, 4, 4, 'GOOD FOR SALE', 50, '0000-00-00 00:00:00', 1),
(138, 141, 44, 5, 2, 'He is looking for Loan sales and not intrested in Insurance job', 50, '0000-00-00 00:00:00', 1),
(139, 145, 31, 4, 3, 'jobless now.  forward to next round', 50, '0000-00-00 00:00:00', 1),
(140, 157, 11, 5, 3, 'expected salary is high  15 k above.so rejected ', 50, '0000-00-00 00:00:00', 1),
(141, 132, 40, 4, 3, 'Fresher,planning to work for next 2 years maximum', 17, '2020-09-08 11:55:12', 1),
(142, 156, 19, 5, 1, 'not fit for sales', 24, '2020-09-08 12:05:08', 1),
(143, 118, 33, 5, 0, 'Candidate are not fit for rm category and drops convincing skills Not worthy for expected salary 26000\n', 33, '2020-09-08 12:11:45', 1),
(144, 148, 14, 5, 3, 'previous company salary less but he expecting high . ', 8, '2020-09-08 12:28:05', 1),
(145, 134, 27, 2, 2, 'System Task Given. He will come to office on 10 Sep 2020 for System Task.', 26, '2020-09-08 12:28:40', 1),
(146, 129, 36, 3, 3, 'okay for rm. ', 8, '2020-09-08 12:34:15', 1),
(147, 145, 29, 1, 0, NULL, 31, '2020-09-08 12:36:16', 1),
(148, 127, 16, 4, 3, 'SELECTED, ONCE CONFIRM SALARY', 17, '2020-09-08 12:40:55', 1),
(149, 132, 18, 5, 3, 'Not fit for RM Profile', 40, '2020-09-08 12:52:04', 1),
(150, 127, 8, 3, 0, 'last take was 15k and he is okay with inc.', 16, '2020-09-08 01:07:40', 1),
(151, 140, 26, 4, 3, 'have to assign task and review. kindly assign simple task reminder app. she has to create a data base in firebase and api, application using Java\n', 50, '0000-00-00 00:00:00', 1),
(152, 140, 27, 2, 3, 'System Task Given. She will Complete and share the files on 09 Sep 2020 at 11 AM.', 26, '2020-09-08 02:19:37', 1),
(153, 128, 8, 3, 0, 'For dhivya team', 21, '2020-09-08 02:54:03', 1),
(154, 137, 8, 3, 0, 'for dhivya team', 21, '2020-09-08 02:58:40', 1),
(155, 149, 8, 3, 0, 'for dhivya team', 21, '2020-09-08 03:05:50', 1),
(156, 30, 8, 5, 0, 'rejected in telephonic ', 8, '2020-09-08 03:50:21', 1),
(157, 5, 8, 5, 0, 'has exp only in semi voice  ane exp salary is 17K', 8, '2020-09-08 04:06:25', 1),
(158, 6, 8, 5, 0, 'asked Time To Think About The Salary Exp In Kalyan Matrimony. Exp Is 13k+', 8, '2020-09-08 04:08:58', 1),
(159, 175, 8, 4, 2, 'profile miss match, check with his previous Concerns.', 50, '0000-00-00 00:00:00', 1),
(160, 161, 8, 4, 3, 'fresher for calling. check whether he will suite for our process.', 50, '0000-00-00 00:00:00', 1),
(161, 175, 34, 5, 2, 'Not a Sustain-er and seems like a non-productive worker ', 8, '2020-09-09 10:50:24', 1),
(162, 178, 8, 5, 3, 'not speaking up. will not suite for CRM.', 50, '0000-00-00 00:00:00', 1),
(163, 179, 21, 5, 2, 'pre  exp in data entry ,not suit for sales', 50, '0000-00-00 00:00:00', 1),
(164, 161, 14, 3, 4, '14.09.2020 joining ', 8, '2020-09-09 11:09:15', 1),
(165, 180, 21, 4, 4, 'ok for health process ', 50, '0000-00-00 00:00:00', 1),
(166, 182, 21, 4, 2, 'need to check recuruter pros , bec  he already worked in  us process', 50, '0000-00-00 00:00:00', 1),
(167, 183, 21, 4, 4, 'need to confirm joining  date ', 50, '0000-00-00 00:00:00', 1),
(168, 165, 21, 4, 4, 'rE candidate , need to  check  sudhakar ', 50, '0000-00-00 00:00:00', 1),
(169, 170, 8, 5, 3, 'not Speaking up and will not uite for CRM', 50, '0000-00-00 00:00:00', 1),
(170, 160, 8, 2, 3, 'for telephonic', 50, '0000-00-00 00:00:00', 1),
(171, 171, 8, 5, 3, 'he wanna to do designing course so he is looking for job. will not sustain for us.', 50, '0000-00-00 00:00:00', 1),
(172, 167, 19, 4, 3, 'communication is good  but sustainability ?', 50, '0000-00-00 00:00:00', 1),
(173, 187, 21, 4, 4, 'need to confirm salary ...', 50, '0000-00-00 00:00:00', 1),
(174, 81, 8, 3, 0, '9K for priyanka team', 14, '2020-09-09 11:37:21', 1),
(175, 166, 11, 3, 4, 'salary take home 11k.', 50, '0000-00-00 00:00:00', 1),
(176, 169, 11, 5, 3, 'she is looking for only non voice or semi voice process.so rejected', 50, '0000-00-00 00:00:00', 1),
(177, 181, 13, 4, 4, '11k salary', 50, '0000-00-00 00:00:00', 1),
(178, 189, 13, 3, 4, 'ok ', 50, '0000-00-00 00:00:00', 1),
(179, 188, 14, 5, 2, 'he is not fit for long term sustainability .. confident level very less .', 50, '0000-00-00 00:00:00', 1),
(180, 183, 8, 2, 0, 'yet to Complete her exams and will confirm once after her exams.(oct)', 21, '2020-09-09 02:32:23', 1),
(181, 195, 44, 4, 3, 'I Am Ok With This Candaidate And  Need  Your Suggestion ,', 50, '0000-00-00 00:00:00', 1),
(182, 196, 20, 2, 4, '2nd round tomorrow at 10.30', 50, '0000-00-00 00:00:00', 1),
(183, 187, 8, 3, 0, '12K for dhivya team', 21, '2020-09-09 02:35:11', 1),
(184, 180, 13, 4, 4, 'ok ', 21, '2020-09-09 02:36:37', 1),
(185, 182, 8, 5, 2, 'will not suite for CRM and RE', 21, '2020-09-09 02:44:20', 1),
(186, 165, 24, 5, 1, 'Candidate Should Not Sustain .. He Is Looking Government Job... 6 Month Period Only  He Looking Job... join interview with kannan', 21, '2020-09-09 02:49:02', 1),
(187, 167, 22, 5, 2, '', 19, '2020-09-09 02:52:36', 1),
(188, 180, 8, 3, 0, 'for muthu team', 13, '2020-09-09 03:05:31', 1),
(189, 181, 8, 3, 0, '11K for muthu team', 13, '2020-09-09 03:09:42', 1),
(190, 195, 18, 3, 4, 'Experienced & good candidate', 44, '2020-09-09 04:20:52', 1),
(191, 163, 8, 2, 0, 'just assigned to check. not Attend the interview', 7, '0000-00-00 00:00:00', 1),
(192, 219, 27, 4, 3, '', 1, '0000-00-00 00:00:00', 1),
(193, 219, 26, 7, 3, '', 27, '2020-09-10 09:55:15', 1),
(194, 219, 41, 3, 3, '', 26, '2020-09-10 09:57:41', 1),
(195, 220, 26, 4, 3, '', 1, '0000-00-00 00:00:00', 1),
(196, 220, 27, 7, 4, '', 26, '2020-09-10 10:19:33', 1),
(197, 220, 41, 3, 4, '', 27, '2020-09-10 10:20:28', 1),
(198, 196, 22, 2, 0, 'candidates did not come 2nd round', 20, '2020-09-10 10:41:45', 1),
(199, 196, 20, 4, 0, '', 20, '2020-09-10 10:41:45', 1),
(200, 159, 21, 5, 3, '', 50, '0000-00-00 00:00:00', 1),
(201, 222, 21, 5, 2, '', 50, '0000-00-00 00:00:00', 1),
(202, 221, 35, 5, 0, '', 50, '0000-00-00 00:00:00', 1),
(203, 203, 21, 5, 2, '', 50, '0000-00-00 00:00:00', 1),
(204, 192, 19, 5, 2, '', 50, '0000-00-00 00:00:00', 1),
(205, 226, 11, 5, 3, '', 50, '0000-00-00 00:00:00', 1),
(206, 224, 14, 5, 2, '', 50, '0000-00-00 00:00:00', 1),
(207, 225, 14, 5, 2, '', 50, '0000-00-00 00:00:00', 1),
(208, 191, 26, 5, 1, '', 50, '0000-00-00 00:00:00', 1),
(209, 200, 24, 5, 2, '', 50, '0000-00-00 00:00:00', 1),
(210, 223, 13, 7, 4, '', 50, '0000-00-00 00:00:00', 1),
(211, 158, 31, 5, 4, 'previous experience with stores.  not fit for direct sales.  not convincing', 50, '0000-00-00 00:00:00', 1),
(212, 184, 8, 4, 3, '', 50, '0000-00-00 00:00:00', 1),
(213, 164, 20, 7, 0, '', 50, '0000-00-00 00:00:00', 1),
(214, 184, 17, 2, 3, '', 8, '2020-09-10 12:07:27', 1),
(215, 194, 24, 4, 4, '', 50, '0000-00-00 00:00:00', 1),
(216, 164, 44, 5, 2, '', 20, '2020-09-10 12:24:20', 1),
(217, 194, 22, 7, 3, '', 24, '2020-09-10 12:55:22', 1),
(218, 194, 8, 3, 0, 'for kannan team', 22, '2020-09-10 01:23:36', 1),
(219, 223, 8, 3, 0, 'For muthu team', 13, '2020-09-10 01:30:17', 1),
(220, 231, 21, 5, 0, 'not attended , 2 nd time entry', 50, '0000-00-00 00:00:00', 1),
(221, 134, 27, 5, 0, '', 27, '2020-09-10 02:14:12', 1),
(222, 240, 21, 5, 3, '', 50, '0000-00-00 00:00:00', 1),
(223, 250, 27, 4, 3, 'nill', 1, '0000-00-00 00:00:00', 1),
(224, 250, 26, 7, 3, 'nill test', 27, '2020-09-10 04:38:46', 1),
(225, 250, 41, 3, 5, 'nill', 26, '2020-09-10 04:41:10', 1),
(226, 249, 41, 5, 0, 'Not attended the interview.Got job offer from another company', 50, '0000-00-00 00:00:00', 1),
(227, 247, 31, 5, 3, 'unable to understand english.  not wiling to make calls on regular basis', 7, '0000-00-00 00:00:00', 1),
(228, 193, 8, 4, 3, 'cross check-will handle sales pressure.', 7, '0000-00-00 00:00:00', 1),
(229, 258, 8, 4, 3, 'holds sales Experience but fresher for insurance', 50, '0000-00-00 00:00:00', 1),
(230, 177, 21, 4, 4, 'assign to raghu mf ', 50, '0000-00-00 00:00:00', 1),
(231, 193, 21, 5, 3, 'not bold ', 8, '2020-09-11 10:42:59', 1),
(232, 260, 13, 7, 4, 'she is on notice period in previous company till 23rd September. So join 24th September', 50, '0000-00-00 00:00:00', 1),
(233, 236, 19, 7, 4, 'well knowledged expecting 20k salary', 50, '0000-00-00 00:00:00', 1),
(234, 237, 21, 5, 1, 'not sustain long term', 50, '0000-00-00 00:00:00', 1),
(235, 258, 33, 2, 2, 'Candidate Very very Slow But Interested In Sales', 8, '2020-09-11 11:05:13', 1),
(236, 251, 8, 2, 3, 'for telephonid-HR-R', 50, '0000-00-00 00:00:00', 1),
(237, 248, 15, 4, 3, 'suitable for rM expecting pA 3.5', 50, '0000-00-00 00:00:00', 1),
(238, 243, 8, 2, 0, 'for am', 50, '0000-00-00 00:00:00', 1),
(239, 239, 26, 5, 1, 'He Is Looking For The Job Because He Completed CSE, Importance Of Job Zero. He  Bought Final Year Project From Company And Submitted In College,  Dont Know What Is The Project He Done.', 50, '0000-00-00 00:00:00', 1),
(240, 256, 8, 5, 3, 'will not suite for CRM. will not join without her friend.', 50, '0000-00-00 00:00:00', 1),
(241, 262, 8, 5, 2, 'will not Sustain and will not join Without her friend.', 50, '0000-00-00 00:00:00', 1),
(242, 255, 31, 4, 4, 'candidate okay.  ', 50, '0000-00-00 00:00:00', 1),
(243, 244, 21, 7, 4, '9.5 k salary,need to confirm joining date , last exam pending ', 50, '0000-00-00 00:00:00', 1),
(244, 241, 21, 5, 2, 'expected high salary ,not sustain long term', 50, '0000-00-00 00:00:00', 1),
(245, 264, 26, 4, 0, 'He is looking for job in sales so kindly check the profile and assign to sales team', 50, '0000-00-00 00:00:00', 1),
(246, 177, 35, 7, 0, 'Communication was good and shexquots ok with Operationxquots work. ', 21, '2020-09-11 12:03:23', 1),
(247, 257, 13, 7, 4, 'Salary - 10500,Need To Go For The Exams So Joining Date October 1st Week', 50, '0000-00-00 00:00:00', 1),
(248, 236, 22, 5, 1, 'Bond Not Interested..  sustainability doubt', 19, '2020-09-11 12:22:44', 1),
(249, 258, 33, 2, 0, 'Candidate Are Smart In appearance and discipline but very slow in approaches and New To Insurance industry', 33, '2020-09-11 12:25:55', 1),
(250, 258, 40, 5, 2, 'Not fit for job', 33, '2020-09-11 12:28:25', 1),
(251, 258, 33, 4, 0, 'Candidate Are Very Slow In Approaches And New To Sales ', 33, '2020-09-11 12:28:25', 1),
(252, 265, 11, 4, 3, 'salary expectation is high 23 to 24k...last take home 18.5k', 50, '0000-00-00 00:00:00', 1),
(253, 264, 19, 5, 1, 'not fit for sales job', 26, '2020-09-11 12:43:06', 1),
(254, 244, 8, 3, 0, 'for dhivya team', 21, '2020-09-11 12:45:59', 1),
(255, 265, 8, 3, 0, 'Agreed with 18K+inc. as she is fresher for RM profile', 11, '2020-09-11 12:58:10', 1),
(256, 248, 34, 7, 0, 'he was shortlisted and next round moved to sriram sir', 15, '2020-09-11 01:01:27', 1),
(257, 266, 19, 5, 1, 'not fit for sales', 50, '0000-00-00 00:00:00', 1),
(258, 271, 26, 5, 0, 'her expected salary 74 k, According to us she is not matching with our spec and Excepted salary also high.', 50, '0000-00-00 00:00:00', 1),
(259, 260, 8, 3, 0, 'for muthu team', 13, '2020-09-11 03:53:46', 1),
(260, 32, 8, 5, 2, 'will not suite for crm', 50, '0000-00-00 00:00:00', 1),
(261, 58, 8, 4, 0, 'check with MIS skill', 50, '0000-00-00 00:00:00', 1),
(262, 265, 40, 7, 3, 'Fresher, positive and long runner, Job desperately needed......Need training in sales and marketing....', 8, '2020-09-11 04:10:39', 1),
(263, 265, 8, 3, 0, 'Agreed with 18K+inc. as she is fresher for RM profile', 8, '2020-09-11 04:10:39', 1),
(264, 243, 8, 5, 0, 'No degree will not suite for Amgr.', 8, '2020-09-11 04:13:25', 1),
(265, 75, 8, 5, 0, 'not Picking Up the call hope not Interested in the profile', 8, '2020-09-11 06:14:28', 1),
(266, 177, 8, 3, 0, 'for MF operation', 35, '2020-09-11 06:43:40', 1),
(267, 257, 8, 2, 0, 'selected. 10.5K for muthu team. need to Complete her exams ', 13, '2020-09-11 06:44:09', 1),
(268, 248, 8, 3, 0, '29K. for Guru team shortlisted by sriram.', 34, '2020-09-11 07:16:46', 1),
(269, 255, 29, 7, 0, 'selected for rM profile -18k for next 3 months, if productivity is more than 1 lac for next 3 month can increase to 20k, reporting manager gk', 31, '2020-09-11 08:19:29', 1),
(270, 265, 8, 3, 0, 'Agreed with 18K+inc. as she is fresher for RM profile', 40, '2020-09-11 09:12:14', 1),
(271, 259, 8, 5, 3, 'will not suite for our profile', 50, '0000-00-00 00:00:00', 1),
(272, 269, 8, 4, 0, 'check with RM profile', 50, '0000-00-00 00:00:00', 1),
(273, 267, 16, 5, 1, 'He Is Working  Past Company 2 Yrs ,Currently Close That Company ,But He Go Out Or Left Any Time Sustain Doubt', 50, '0000-00-00 00:00:00', 1),
(274, 285, 27, 7, 5, 'test employee', 1, '0000-00-00 00:00:00', 1),
(275, 285, 41, 3, 5, 'nill', 27, '2020-09-12 12:11:22', 1),
(276, 253, 35, 7, 0, 'Candidate  is apt to profile what we are looking, communication also good, but she is expecting high salary if Negotiable we can hire ( she relived due to Pregnancy @ 2018  16.5k  can offer 18 to 19K ) ', 50, '0000-00-00 00:00:00', 1),
(277, 253, 8, 5, 0, 'Salary exp is high. got hike in previous company 16500 and server 2 months and looking for job after covid19 and exp is 18+', 35, '2020-09-12 12:57:54', 1),
(278, 288, 21, 5, 2, 'fake  details', 50, '0000-00-00 00:00:00', 1),
(279, 302, 41, 3, 0, 'nill', 1, '0000-00-00 00:00:00', 1),
(280, 312, 35, 5, 0, 'Communication Not Well, no about her Previous Company, ', 50, '0000-00-00 00:00:00', 1),
(281, 317, 21, 5, 1, 'low confidence,not bold', 50, '0000-00-00 00:00:00', 1),
(282, 299, 21, 4, 4, 'need to confirm joining date ,exam pending', 50, '0000-00-00 00:00:00', 1),
(283, 321, 21, 5, 1, 'not sustain long term', 50, '0000-00-00 00:00:00', 1),
(284, 289, 15, 4, 0, 'salary  expected high need 25k', 50, '0000-00-00 00:00:00', 1),
(285, 307, 38, 5, 1, 'he dont know how to behave in office....', 50, '0000-00-00 00:00:00', 1),
(286, 305, 38, 5, 1, 'bad outlook xxamp he will not suit for our field ', 50, '0000-00-00 00:00:00', 1),
(287, 308, 38, 5, 2, 'will not sustain xxamp not good in communication', 50, '0000-00-00 00:00:00', 1),
(288, 318, 14, 5, 2, 'not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(289, 319, 34, 4, 5, 'will check for re', 50, '0000-00-00 00:00:00', 1),
(290, 283, 14, 4, 4, '10500 salary ..17.09.2020 joining data ', 50, '0000-00-00 00:00:00', 1),
(291, 286, 13, 5, 3, 'expected salary high', 50, '0000-00-00 00:00:00', 1),
(292, 326, 11, 4, 3, 'she is ok...salary spoken 10k...', 50, '0000-00-00 00:00:00', 1),
(293, 328, 31, 5, 2, 'will not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(294, 325, 8, 4, 3, 'Check for rm profile', 50, '0000-00-00 00:00:00', 1),
(295, 323, 8, 4, 3, 'fresher for sales, previously into kyc. check with re profile. exp sal is 15K.', 50, '0000-00-00 00:00:00', 1),
(296, 324, 8, 4, 3, 'check for RM profile', 50, '0000-00-00 00:00:00', 1),
(297, 319, 15, 5, 1, 'no sustainability need 18k salary', 34, '2020-09-14 12:35:26', 1),
(298, 322, 34, 4, 4, 'selected for next round with sriram', 50, '0000-00-00 00:00:00', 1),
(299, 325, 34, 4, 4, 'selected for next round telephonic interview with sriram', 8, '2020-09-14 01:15:20', 1),
(300, 323, 24, 5, 1, 'slary expc high', 8, '2020-09-14 01:18:39', 1),
(301, 329, 15, 4, 4, 'balaji ref so kindly allocate ramesh', 50, '0000-00-00 00:00:00', 1),
(302, 324, 36, 4, 0, 'Interested in CRM category', 8, '2020-09-14 01:34:39', 1),
(303, 324, 14, 8, 0, 'Not attend the interview', 36, '2020-09-14 02:21:17', 1),
(304, 299, 8, 2, 0, 'need to confirm joining date', 21, '2020-09-14 02:29:30', 1),
(305, 326, 21, 4, 4, '10k salary ok ', 11, '2020-09-14 02:36:59', 1),
(306, 326, 8, 3, 0, 'for dhivya team', 21, '2020-09-14 02:38:33', 1),
(307, 325, 18, 5, 3, 'Not interested in sales', 34, '2020-09-14 02:38:47', 1),
(308, 322, 18, 7, 0, 'Kindly check with him  given 21k salary', 34, '2020-09-14 02:40:39', 1),
(309, 283, 8, 3, 0, 'for priyanka jenit team', 14, '2020-09-14 03:10:23', 1),
(310, 332, 36, 4, 0, 'Need to check', 50, '0000-00-00 00:00:00', 1),
(311, 289, 36, 4, 0, 'Selected for RM', 15, '2020-09-14 03:18:18', 1),
(312, 329, 17, 7, 3, 'he is selected will give 13k need to confirm the joining date ', 15, '2020-09-14 04:19:24', 1),
(313, 289, 29, 7, 0, 'selected for rm 20k salary, reporting to lokesh', 36, '2020-09-14 04:26:24', 1),
(314, 332, 18, 7, 3, 'Selected for lokesh team with salary of 30K', 36, '2020-09-14 04:27:04', 1),
(315, 278, 8, 2, 0, 'testing-assigned', 7, '0000-00-00 00:00:00', 1),
(316, 333, 21, 4, 4, 'selected 11.5 k salary, need to confirm joining date ,she is in notice period (oct 11 exp joining)', 50, '0000-00-00 00:00:00', 1),
(317, 334, 14, 7, 3, 'okay for mf ..not fit for sales', 50, '0000-00-00 00:00:00', 1),
(318, 335, 21, 5, 0, 'cand gone before interview ', 50, '0000-00-00 00:00:00', 1),
(319, 293, 21, 5, 3, 'expected 18 k salary for crm', 50, '0000-00-00 00:00:00', 1),
(320, 310, 21, 5, 0, 'expecting 16 k for crm', 50, '0000-00-00 00:00:00', 1),
(321, 342, 21, 4, 4, '11k salary,need to confirm joining', 50, '0000-00-00 00:00:00', 1),
(322, 346, 29, 5, 1, 'Not fir for sales', 50, '0000-00-00 00:00:00', 1),
(323, 334, 9, 4, 0, 'change to new id', 14, '2020-09-15 11:43:41', 1),
(324, 340, 29, 5, 0, 'iS ON HIGHER CTC xxamp DOENxquotT HAVE CONVINCING SKILL, EXPERIENCE,WILL NOT BE SUITABLE FOR SALES', 50, '0000-00-00 00:00:00', 1),
(325, 343, 16, 5, 0, 'reason for Above age ', 50, '0000-00-00 00:00:00', 1),
(326, 338, 8, 5, 2, 'not speaking up will not suite for CRM.', 50, '0000-00-00 00:00:00', 1),
(327, 333, 8, 3, 0, 'for Dhivya team', 21, '2020-09-15 12:50:53', 1),
(328, 342, 8, 3, 0, 'For Dhivya team', 21, '2020-09-15 12:53:52', 1),
(329, 39, 26, 7, 4, 'nill', 1, '0000-00-00 00:00:00', 1),
(330, 39, 8, 3, 0, 'nill', 26, '2020-09-15 03:03:42', 1),
(331, 331, 24, 5, 2, 'voice of clarity is low average  .. implement is poor for existing job ', 50, '0000-00-00 00:00:00', 1),
(332, 354, 21, 4, 3, 'ok selected ', 50, '0000-00-00 00:00:00', 1),
(333, 329, 8, 3, 0, 'For ramesh team', 17, '2020-09-15 05:24:30', 1),
(334, 255, 8, 3, 0, 'For GK team', 29, '2020-09-15 06:07:29', 1),
(335, 289, 8, 3, 0, 'for Gaurav team', 29, '2020-09-15 06:08:40', 1),
(336, 269, 51, 4, 4, 'i am ok with  mr.SURENDHAR M and he is willing to work ', 8, '2020-09-15 06:14:14', 1),
(337, 353, 41, 8, 0, 'Quarantined for 21 days ', 50, '0000-00-00 00:00:00', 1),
(338, 108, 8, 8, 0, 'left before Interview.', 8, '2020-09-16 10:15:04', 1),
(339, 278, 8, 8, 0, 'assigned to test. ', 8, '2020-09-16 10:16:58', 1),
(340, 367, 26, 5, 1, 'He Did A 6-Month Course In PHP Spent 25,000,  But He Is Not Good At Even The Basics Of PHP.', 50, '0000-00-00 00:00:00', 1),
(341, 368, 26, 5, 2, 'He Is Having One Year 6 Months Of Experience But He Dont Know Basic Jquery Ajax Syntax And Basic MySQL Queries. have sent Assessment sheet to HR to check with consultancy.', 50, '0000-00-00 00:00:00', 1),
(342, 356, 21, 5, 1, 'not bold, very low voice , expecting high salary ....', 50, '0000-00-00 00:00:00', 1),
(343, 94, 8, 8, 0, 'not turned up for 2nd round', 8, '2020-09-16 11:09:56', 1),
(344, 160, 8, 5, 0, 'absconded', 8, '2020-09-16 11:11:16', 1),
(345, 355, 8, 2, 3, 'hold for Telephonic ', 50, '0000-00-00 00:00:00', 1),
(346, 369, 21, 5, 1, 'worst attitude , no voice clarity language is not good , not sustain long term, also expecting high salary', 50, '0000-00-00 00:00:00', 1),
(347, 359, 8, 5, 2, 'language is not good and will not suite for CAFS', 50, '0000-00-00 00:00:00', 1),
(348, 361, 8, 5, 3, 'Will Not Suite For Our Process. No Fluency While Speaking.', 50, '0000-00-00 00:00:00', 1),
(349, 364, 8, 3, 0, 'for Dhivya team', 50, '0000-00-00 00:00:00', 1),
(350, 269, 29, 5, 1, 'Doesnxquott suit for any profile', 51, '2020-09-16 12:14:57', 1),
(351, 350, 26, 5, 0, 'he dont know the basic concepts in php', 50, '0000-00-00 00:00:00', 1),
(352, 351, 26, 5, 0, 'he dont know the Basics of c and c++, oops concepts ', 50, '0000-00-00 00:00:00', 1),
(353, 311, 21, 5, 1, 'not sustain long term,low voice ,', 50, '0000-00-00 00:00:00', 1),
(354, 380, 21, 4, 4, 'selected, salary (11 to 11.5 k),immediate joining .(17.9.20)', 50, '0000-00-00 00:00:00', 1),
(355, 364, 21, 4, 4, 'ok selected ,need to confirm  salary, she is expected 12-13 k salary', 8, '2020-09-16 12:49:44', 1),
(356, 378, 21, 5, 0, 'not fit for sales', 50, '0000-00-00 00:00:00', 1),
(357, 382, 21, 4, 4, '11k salary, immediate joining ', 50, '0000-00-00 00:00:00', 1),
(358, 383, 21, 5, 1, 'low voice ,not bold, ,low confidence, ', 50, '0000-00-00 00:00:00', 1),
(359, 371, 13, 5, 2, 'Not fit for tele filed', 50, '0000-00-00 00:00:00', 1),
(360, 381, 13, 5, 2, 'Not Suitable For Pressure Handling', 50, '0000-00-00 00:00:00', 1),
(361, 389, 27, 7, 4, 'nill', 1, '0000-00-00 00:00:00', 1),
(362, 389, 41, 3, 4, 'nill', 27, '2020-09-16 02:08:02', 1),
(363, 388, 26, 5, 2, 'She Is Having  2.5 Years but Dont Know The Basic (Array  Concepts And Database Queries) . ', 50, '0000-00-00 00:00:00', 1),
(364, 366, 38, 5, 1, 'not good in communication', 50, '0000-00-00 00:00:00', 1),
(365, 372, 38, 5, 1, 'zero english communication', 50, '0000-00-00 00:00:00', 1),
(366, 365, 38, 5, 3, 'risk to hire her...why because shexquots spouse is a star health agent xxamp  lawyer too', 50, '0000-00-00 00:00:00', 1),
(367, 380, 8, 3, 0, 'for dhivya team', 21, '2020-09-16 03:29:03', 1),
(368, 390, 26, 7, 4, 'he is ok 100 rs and ready to join immediately', 1, '0000-00-00 00:00:00', 1),
(369, 390, 8, 3, 3, 'Informed all terms and condition', 26, '2020-09-16 04:11:28', 1),
(370, 364, 8, 3, 0, 'for Dhivya team', 21, '2020-09-16 04:14:42', 1),
(371, 382, 8, 3, 0, 'for dhivya team', 21, '2020-09-16 04:52:58', 1),
(372, 355, 8, 5, 0, 'will not suite for this profile.', 8, '2020-09-16 07:07:45', 1),
(373, 407, 27, 2, 3, 'He knows the basics in theoretical. He Is not prepared for the System Task. He need two days to Practice. If come back we will give system Task else rejected.', 50, '0000-00-00 00:00:00', 1),
(374, 405, 11, 5, 3, 'candidate is not interested in sales.he is not willing to work in pressure ', 50, '0000-00-00 00:00:00', 1),
(375, 397, 53, 5, 0, 'Pronounciation is nt good.', 50, '0000-00-00 00:00:00', 1),
(376, 401, 21, 5, 3, 'Not Sustain Long Term , 45 Mins To 1 Hour Travel,,Expected 15 K Salary, She  Not Have Voice Exp Also', 50, '0000-00-00 00:00:00', 1),
(377, 393, 24, 7, 3, 'kindly check with rm.. then check with sustainability.. epx salary 21k', 50, '0000-00-00 00:00:00', 1),
(378, 413, 53, 5, 0, 'Not much experience in MIS. expected high sal abv 15k', 50, '0000-00-00 00:00:00', 1),
(379, 398, 8, 5, 0, 'From Ambattur And Has 1yr Kid Will Not Sustain 2 Years Gap And Exp Is 20+ As Take Home.', 50, '0000-00-00 00:00:00', 1),
(380, 375, 8, 5, 2, 'will not handle pressure and not speaking up too.', 50, '0000-00-00 00:00:00', 1),
(381, 374, 8, 2, 0, 'for AMgr', 50, '0000-00-00 00:00:00', 1),
(382, 399, 8, 3, 0, '23K for veben team', 50, '0000-00-00 00:00:00', 1),
(383, 393, 8, 5, 0, 'will not suite for RM and will not Sustain. got update from GK ', 24, '2020-09-17 12:21:28', 1),
(384, 399, 40, 4, 3, 'DOESNxquotT HAVE KNOWLEDGE IN INSURANCE INDUSTRY, PREVIOUS SALES EXP AROUND 17MONTHS, BUT NEED TO MOLD HIM A BETTER INSURANCE SELLER IF HE GETS AN oPPORTUNITY IN CAFS....', 8, '2020-09-17 12:51:15', 1),
(385, 415, 24, 4, 3, 'okay for rE.. but cross check with communication.. slr 14 to 15k... 18 sep 20 arrange 2nd round', 50, '0000-00-00 00:00:00', 1),
(386, 411, 8, 3, 0, '23K by Gaurav. as sourcing BDM', 50, '0000-00-00 00:00:00', 1),
(387, 411, 18, 2, 0, 'He is well experienced but he wont do telecalling xxamp has average capability for team handling', 8, '2020-09-17 01:39:07', 1),
(388, 429, 35, 8, 0, 'Candidate Not Available We Try To Reach But Hexquots Disconnecting The Call', 50, '0000-00-00 00:00:00', 1),
(389, 399, 18, 7, 3, 'Selected for Veben team ', 40, '2020-09-17 01:46:12', 1),
(390, 419, 13, 5, 1, 'expecting high salary and not suitable for sales profile . ', 50, '0000-00-00 00:00:00', 1),
(391, 415, 22, 2, 0, 'candidate did not come for 2nd round', 24, '2020-09-17 02:07:58', 1),
(392, 426, 38, 4, 4, 'check sustainability and confirm  her salary', 50, '0000-00-00 00:00:00', 1),
(393, 436, 8, 5, 2, 'not speaking up and no relevant exp. exp is 15K', 50, '0000-00-00 00:00:00', 1),
(394, 438, 21, 5, 0, 'fake resume', 50, '0000-00-00 00:00:00', 1),
(395, 437, 8, 5, 0, 'will not suit for CRM. no relevant exp. and exp is 15K', 50, '0000-00-00 00:00:00', 1),
(396, 426, 8, 3, 0, '20K as sourcing TL for Gowshick team', 38, '2020-09-17 03:00:29', 1),
(397, 422, 8, 8, 0, 'not attended', 50, '0000-00-00 00:00:00', 1),
(398, 434, 13, 5, 1, 'not fit for this telecalling profile . expected salary high ', 50, '0000-00-00 00:00:00', 1),
(399, 399, 8, 3, 0, '23K for veben team', 18, '2020-09-17 03:33:56', 1),
(400, 443, 32, 2, 0, 'Candidate hold', 7, '0000-00-00 00:00:00', 1),
(401, 444, 8, 8, 0, 'left before interview', 7, '0000-00-00 00:00:00', 1),
(402, 428, 32, 5, 0, 'Not Opted for CRM', 7, '0000-00-00 00:00:00', 1),
(403, 431, 53, 9, 0, 'she s suit for telecalling', 7, '0000-00-00 00:00:00', 1),
(404, 432, 8, 3, 0, 'for banu team', 7, '0000-00-00 00:00:00', 1),
(405, 432, 53, 7, 0, 'sal 12k, doj 21.09.20 ', 8, '2020-09-17 04:17:52', 1),
(406, 432, 8, 3, 0, 'for banu team', 53, '2020-09-17 04:29:45', 1),
(407, 431, 32, 7, 0, 'shortlisted for sales team', 1, '0000-00-00 00:00:00', 1),
(408, 431, 8, 3, 0, 'for dummy surender', 32, '2020-09-17 04:37:40', 1),
(409, 445, 53, 7, 0, 'Ok fr TC. sal 20k DOJ 18 sep 20', 7, '0000-00-00 00:00:00', 1),
(410, 445, 8, 3, 0, 'for gokul team', 53, '2020-09-17 04:47:51', 1),
(411, 427, 8, 2, 0, 'Does Not have portal knowledge and  sourced through reference. she was getting 18 and exp 30% hike.', 50, '0000-00-00 00:00:00', 1),
(412, 439, 8, 4, 3, 'check for re profile.  check his sustainability.', 50, '0000-00-00 00:00:00', 1),
(413, 354, 8, 3, 0, '12K for dhivya team', 21, '2020-09-18 10:40:49', 1),
(414, 460, 8, 3, 0, 'for priyanka team', 50, '0000-00-00 00:00:00', 1),
(415, 385, 8, 4, 3, 'fresher, 4 months in semi voice.  check with sustainability.Family Commitments There Is Possibility To switch Easily For Salary.', 50, '0000-00-00 00:00:00', 1),
(416, 455, 21, 5, 3, 'she is not sustain  long term , interested in viscom field .... no job need for family ...', 50, '0000-00-00 00:00:00', 1),
(417, 465, 31, 5, 2, 'Dont have direct sales experience and his  expectation salary is high', 50, '0000-00-00 00:00:00', 1),
(418, 464, 24, 7, 4, 'OKAY FOR CRM..', 50, '0000-00-00 00:00:00', 1),
(419, 460, 21, 4, 0, 'ok for health process', 8, '2020-09-18 11:07:23', 1),
(420, 459, 41, 8, 0, 'Long distance not interested', 50, '0000-00-00 00:00:00', 1),
(421, 385, 14, 5, 1, 'not fit for voice process ', 8, '2020-09-18 11:19:15', 1),
(422, 458, 8, 2, 0, 'selected. she can join in oct. 10K salary', 50, '0000-00-00 00:00:00', 1),
(423, 406, 26, 5, 0, 'he dont know the basic of c and c++', 50, '0000-00-00 00:00:00', 1),
(424, 464, 8, 3, 0, 'for muthu team', 24, '2020-09-18 11:35:01', 1),
(425, 439, 19, 2, 3, 'hold', 8, '2020-09-18 11:37:19', 1),
(426, 470, 26, 5, 0, 'he is having more then 2  years of Experience but not good in mysql concepts.', 50, '0000-00-00 00:00:00', 1),
(427, 466, 26, 5, 0, 'she is having 10 month of Experience but she dont know the  Basis of ajax ,scripts .', 50, '0000-00-00 00:00:00', 1),
(428, 463, 8, 5, 2, 'not speaking up will not suite for calling and not int in sales.', 50, '0000-00-00 00:00:00', 1),
(429, 460, 14, 7, 4, 'expecting salary 9k to 10k  and suitable for telecalling profile', 21, '2020-09-18 11:53:16', 1),
(430, 471, 30, 7, 3, 'candidate okay for me kindly confirm his salary and joining', 50, '0000-00-00 00:00:00', 1),
(431, 408, 8, 5, 2, 'will not handle Pressure, and target', 50, '0000-00-00 00:00:00', 1),
(432, 421, 8, 3, 0, '10K for Priyanka team', 50, '0000-00-00 00:00:00', 1),
(433, 440, 8, 4, 3, 'exp salary is 11-13K. no relevant exp but has calling quality.', 50, '0000-00-00 00:00:00', 1),
(434, 460, 8, 3, 0, 'for priyanka team', 14, '2020-09-18 12:24:21', 1),
(435, 469, 38, 2, 3, 'Review him by your said because He Discussed With One Of Our RM, If Salary Is Not Above Than 18k Ixquotll Not Join here', 50, '0000-00-00 00:00:00', 1),
(436, 475, 14, 5, 2, 'long distance . not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(437, 458, 21, 4, 4, 'need to check salary xxamp joining date ', 8, '2020-09-18 01:13:23', 1),
(438, 440, 13, 5, 2, 'not fit for telesales', 8, '2020-09-18 01:21:34', 1),
(439, 421, 21, 4, 0, 'ok for health', 8, '2020-09-18 01:33:04', 1),
(440, 424, 8, 2, 0, 'need to think.', 50, '0000-00-00 00:00:00', 1),
(441, 417, 8, 5, 0, 'will not suite for MIS very lazy and will not suite for any profile.', 7, '0000-00-00 00:00:00', 1),
(442, 477, 27, 2, 4, 'Task Assigned. She will complete and will send us back tomorrow before 11 AM.', 50, '0000-00-00 00:00:00', 1),
(443, 481, 8, 5, 3, '1:30 mins traveling aprox. and will not suite for our process.', 50, '0000-00-00 00:00:00', 1),
(444, 480, 38, 5, 1, 'zero in communication xxamp attitude', 50, '0000-00-00 00:00:00', 1),
(445, 469, 38, 2, 0, 'Review this candidate by your side because He Discussed With One Of Our RM.... If Salary Is Not Above Than 18k Ixquotll Not Join here', 38, '2020-09-18 02:30:33', 1),
(446, 476, 8, 4, 0, 'communication and Experience wise he is okay.', 50, '0000-00-00 00:00:00', 1),
(447, 476, 53, 5, 0, 'He dont hve patience and lessoning capacity. He wont suit for HR', 8, '2020-09-18 05:09:51', 1),
(448, 421, 14, 7, 4, 'fit for this tele calling profile ..salary 10k ok for her ..', 21, '2020-09-18 06:37:04', 1),
(449, 458, 8, 2, 0, 'selected. she can join in oct. 10K salary', 21, '2020-09-18 06:40:27', 1),
(450, 486, 8, 5, 3, 'Pronunciation Is Not Good', 50, '0000-00-00 00:00:00', 1),
(451, 421, 8, 3, 0, '10K for Priyanka team', 14, '2020-09-19 10:56:46', 1),
(452, 498, 53, 5, 0, 'hvng little knowledge in MIS, he dont know Macro and spreadsheet.  Wont sustain also.', 50, '0000-00-00 00:00:00', 1),
(453, 491, 8, 4, 3, 'check with product knowledge and exp 16K.', 50, '0000-00-00 00:00:00', 1),
(454, 462, 8, 5, 0, 'Will Not Sustain And She Is Looking For HR Generalist And Doesnt Have Relevant Exp.  She Was Getting 13K And Exp 20 A Salary Hike.', 50, '0000-00-00 00:00:00', 1),
(455, 490, 8, 5, 2, 'will not sustain. doing his degree and looking for part time job.', 50, '0000-00-00 00:00:00', 1),
(456, 484, 8, 4, 3, 'fresher but has sales exp. check for Rm profile. ', 50, '0000-00-00 00:00:00', 1),
(457, 493, 8, 2, 0, 'no response from her', 50, '0000-00-00 00:00:00', 1),
(458, 491, 51, 5, 2, 'product knowldege is poor', 8, '2020-09-19 12:29:32', 1),
(459, 504, 8, 2, 0, 'she can join oct. selected for priyanka team', 50, '0000-00-00 00:00:00', 1),
(460, 484, 51, 5, 2, 'he cant work on leave ', 8, '2020-09-19 12:44:50', 1),
(461, 483, 21, 5, 2, 'already he worked non voice process, he is not sustain long term', 50, '0000-00-00 00:00:00', 1),
(462, 501, 8, 4, 3, 'looking for salary hike. check for crm and check with Sustainability', 50, '0000-00-00 00:00:00', 1),
(463, 493, 53, 7, 0, 'good communication, having exp in rec field, she knw to access portal, ok with 2 yrs bond. sal take home 14k. joining datae may be next week', 8, '2020-09-19 01:13:57', 1),
(464, 504, 21, 4, 4, 'ok selected ,need to confirm joining xxamp salary ', 8, '2020-09-19 01:45:14', 1),
(465, 501, 13, 5, 2, 'Sustainability	less', 8, '2020-09-19 01:54:30', 1),
(466, 471, 8, 3, 0, '27K. for  manivel team', 30, '2020-09-19 02:07:18', 1),
(467, 488, 16, 5, 1, 'he is expect more salary and sustain doubt', 50, '0000-00-00 00:00:00', 1),
(468, 504, 8, 2, 0, 'she can join oct. selected for priyanka team', 21, '2020-09-19 03:22:52', 1),
(469, 508, 53, 4, 0, 'Ok for Hr rec. gud communication nd hvng knowledge in naukri nd monstar portal..hvng 4 yrs experience in madurai, Exp sal 17k bt  its negotiable. ', 1, '0000-00-00 00:00:00', 1),
(470, 508, 8, 2, 0, 'spoken with her waiting for her confirmation (zoom call)', 53, '2020-09-19 05:42:25', 1),
(471, 493, 8, 2, 0, 'no response from her', 53, '2020-09-21 09:53:31', 1),
(472, 474, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(473, 500, 8, 5, 2, 'will not sustain.', 52, '0000-00-00 00:00:00', 1),
(474, 526, 53, 5, 0, 'Not suit for CAFS, switching the jo frequently, she s not like to work cycling process, wants to explore her knowledge thts y switching the job countineously', 52, '0000-00-00 00:00:00', 1),
(475, 527, 53, 4, 0, 'Gud communication nd hvng exp in IT rec, selected, 23k sal negotiable', 52, '0000-00-00 00:00:00', 1),
(476, 529, 53, 5, 0, 'Exp high salary, dnt hve relevant exp in Hr. he s oly handling manifacture nd bubai candidates', 50, '0000-00-00 00:00:00', 1),
(477, 453, 53, 4, 0, 'He dont knw payroll, exp high sal, wont survive fr long term', 50, '0000-00-00 00:00:00', 1),
(478, 524, 54, 5, 0, 'she will not sustain and dont have a patince.', 50, '0000-00-00 00:00:00', 1),
(479, 511, 53, 4, 0, 'pls check sustainability', 50, '0000-00-00 00:00:00', 1),
(480, 512, 53, 5, 0, 'Well settled, there is no need for job.', 1, '0000-00-00 00:00:00', 1),
(481, 510, 27, 4, 4, 'Task Assigned on 17thSep2020. He is completed.  Task and code was reviewed by Udhayakumar.', 1, '0000-00-00 00:00:00', 1),
(482, 510, 26, 7, 3, 'selected, 14 k joining as as much as possible, he can work from day one in project, he has to sign 2 years service contract. ', 27, '2020-09-21 11:42:44', 1),
(483, 521, 21, 5, 2, 'words pronuncation problem ', 50, '0000-00-00 00:00:00', 1),
(484, 538, 8, 4, 0, 'not bold and check for recruiter profile', 50, '0000-00-00 00:00:00', 1),
(485, 541, 8, 2, 0, 'check with banu', 50, '0000-00-00 00:00:00', 1),
(486, 540, 39, 4, 3, 'Selected for next round', 50, '0000-00-00 00:00:00', 1),
(487, 513, 53, 5, 0, 'exp high sal, thinking reg bond', 50, '0000-00-00 00:00:00', 1),
(488, 528, 53, 4, 0, 'selected, sal 10 to 11k, she is ok with 2 yrs bond. gud communication.', 50, '0000-00-00 00:00:00', 1),
(489, 534, 31, 4, 4, 'Candidate is okay.  ', 50, '0000-00-00 00:00:00', 1),
(490, 531, 26, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(491, 539, 44, 4, 4, 'Sound is good but Expecting high salary,Need your Suggestion  ', 50, '0000-00-00 00:00:00', 1),
(492, 543, 36, 4, 3, 'Expected salary high Need to check with HR team', 50, '0000-00-00 00:00:00', 1),
(493, 516, 14, 5, 1, 'not suitable for tele calling..communication not good ', 50, '0000-00-00 00:00:00', 1),
(494, 545, 14, 5, 1, 'want to continue the higher studies . so he is not able to sustain', 50, '0000-00-00 00:00:00', 1),
(495, 536, 33, 5, 1, 'candidate facing stammering problem he is not fit for sales ', 50, '0000-00-00 00:00:00', 1),
(496, 140, 27, 5, 0, 'She is not Completed. We gave more than three days time to complete the Task. Still it is Incomplete only.', 27, '2020-09-21 01:19:55', 1),
(497, 546, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(498, 539, 29, 7, 3, 'selected for rm profile, salary 22000.. after 3 months based on performance of 1.5lacs ave moM we can increase additional 2k from 4th months onwards', 44, '2020-09-21 01:34:12', 1),
(499, 510, 8, 3, 3, 'For PHP developer.', 26, '2020-09-21 01:47:09', 1),
(500, 543, 8, 5, 0, 'no sales exp. exp salary is 4L and will not suite for calling too.', 36, '2020-09-21 02:26:19', 1),
(501, 555, 14, 4, 3, 'she is okay for telecalling .. but joining date oct 1st week so need to cross check once', 7, '0000-00-00 00:00:00', 1),
(502, 554, 14, 4, 4, 'okay for tele calling need to cross check once', 7, '0000-00-00 00:00:00', 1),
(503, 535, 53, 4, 0, 'Doubt only, He wont suit for hr profile, pls check sustainability', 52, '0000-00-00 00:00:00', 1),
(504, 535, 8, 5, 0, 'will not sustain and his pronunciation and language is not good.', 53, '2020-09-21 04:27:19', 1),
(505, 453, 8, 5, 0, 'will not sustain. will move  if get better offer. has exp only in sourcing and rec.', 53, '2020-09-21 04:29:07', 1),
(506, 511, 54, 5, 0, 'He will not sustain, because his brother running own consultancy. he worked few months and due to personal Reason he left the company.', 53, '2020-09-21 04:35:19', 1),
(507, 528, 54, 3, 0, 'having good attitude, but we must train sometime.', 53, '2020-09-21 04:37:35', 1),
(508, 538, 53, 5, 0, 'low voice nt suit fr hr profile', 8, '2020-09-21 04:42:14', 1),
(509, 540, 30, 7, 3, 'overall Performance nice xxamp Will sustain long time  .', 39, '2020-09-21 04:51:34', 1),
(510, 58, 53, 5, 0, 'Dont have much experience in Excel nd dont know abt spreadsheet', 8, '2020-09-21 04:54:54', 1),
(511, 555, 13, 7, 4, 'salary 10k HR need to confirm joining data', 14, '2020-09-21 05:02:01', 1),
(512, 554, 13, 7, 4, 'salary 10k ...joining date 28 sep 20 need to check joining date once ', 14, '2020-09-21 05:15:42', 1),
(513, 554, 8, 3, 0, '10K for Priyanka team', 13, '2020-09-21 05:18:53', 1),
(514, 555, 8, 3, 0, '10K for priyanka team', 13, '2020-09-21 05:20:19', 1),
(515, 539, 8, 3, 0, '22K for Shanmugam Team', 29, '2020-09-21 05:20:20', 1),
(516, 424, 8, 3, 0, 'for Dhivya team', 8, '2020-09-21 06:27:20', 1),
(517, 534, 29, 7, 4, 'selected for rm, gk team, 27k salary, based on performance 1.5 lacs moM can increase 3k from 4th month onwards', 31, '2020-09-21 06:44:57', 1),
(518, 534, 8, 3, 0, '27K for GK team', 29, '2020-09-21 06:50:57', 1),
(519, 427, 8, 5, 0, 'no  relevant exp. rejected in telephonic. fake information.', 8, '2020-09-21 06:57:43', 1),
(520, 540, 8, 3, 3, '25K for  Manivel Team', 30, '2020-09-21 07:09:03', 1),
(521, 533, 27, 5, 2, 'This Candidate donxquott know the things what exactly we expected. He knows only wordpress development.', 50, '0000-00-00 00:00:00', 1),
(522, 565, 33, 5, 0, 'Not qualified for sales ', 50, '0000-00-00 00:00:00', 1),
(523, 566, 31, 4, 5, 'Okay candidate', 50, '0000-00-00 00:00:00', 1),
(524, 567, 17, 7, 3, 'Need confirm salary', 50, '0000-00-00 00:00:00', 1),
(525, 568, 44, 5, 1, 'Not fit for sales and He is having Lic agent code', 50, '0000-00-00 00:00:00', 1),
(526, 547, 24, 5, 0, 'he is not willing to  field work. salary expectation also 20k.. so not suitable for CRM', 50, '0000-00-00 00:00:00', 1),
(527, 550, 21, 5, 3, 'long distance 1; 30 hrs travel , expected 15 k for crm', 50, '0000-00-00 00:00:00', 1),
(528, 456, 14, 5, 1, 'She said donxquott want voice process looking for non voice ..and not suitable for sales', 50, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(529, 544, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(530, 573, 26, 9, 0, 'nill', 1, '0000-00-00 00:00:00', 1),
(531, 573, 27, 5, 0, 'nil', 26, '2020-09-22 01:05:51', 1),
(532, 478, 8, 4, 3, 'check for RE, okay with 12K but exp is 13K At Least. ', 50, '0000-00-00 00:00:00', 1),
(533, 563, 8, 2, 0, 'need to check', 50, '0000-00-00 00:00:00', 1),
(534, 478, 19, 5, 1, 'sustainability doubt', 8, '2020-09-22 03:02:19', 1),
(535, 530, 33, 5, 1, 'HE IS NOT GOOD PROFILE FOR RM CATEGORY', 50, '0000-00-00 00:00:00', 1),
(536, 541, 8, 5, 0, 'Got offer ', 8, '2020-09-22 05:02:40', 1),
(537, 66, 8, 5, 0, 'no response from her end. hold for recruiter.', 8, '2020-09-22 05:12:27', 1),
(538, 163, 8, 5, 0, 'just assigned to check. for testing process.', 8, '2020-09-22 05:13:38', 1),
(539, 251, 8, 5, 0, 'rejected in telephonic.', 8, '2020-09-22 05:14:28', 1),
(540, 566, 29, 7, 3, 'Selected for RM, Manager - Sarath, Salary - 20k', 31, '2020-09-22 06:50:03', 1),
(541, 566, 8, 3, 0, '20K for sarath team', 29, '2020-09-22 06:53:11', 1),
(542, 583, 34, 7, 4, 'selected salary up to 2ok we can give spoken to sriram also he lost his parents and he have one brother he the one taking care of him', 7, '0000-00-00 00:00:00', 1),
(543, 584, 33, 9, 0, 'looking for crm profile . not fit for rm profile', 50, '0000-00-00 00:00:00', 1),
(544, 584, 8, 5, 0, 'was rejected by Kannan and srikanth. no sales pitch but good communication', 33, '2020-09-23 10:58:35', 1),
(545, 572, 35, 5, 0, 'we given a time for 2nd Round Candidate Not Responding so that am Rejecting. ', 50, '0000-00-00 00:00:00', 1),
(546, 583, 8, 3, 0, '18K for guru team.', 34, '2020-09-23 11:25:35', 1),
(547, 482, 41, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(548, 575, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(549, 569, 8, 2, 0, 'he need to think', 50, '0000-00-00 00:00:00', 1),
(550, 582, 38, 5, 2, 'he is looking high package xxamp he will not ready to go out  for Appointment', 50, '0000-00-00 00:00:00', 1),
(551, 589, 38, 5, 1, 'I Ask To Wait For Next Round But Is Not Available.......Worst In Patience ', 50, '0000-00-00 00:00:00', 1),
(552, 591, 36, 7, 4, 'selected for RM', 50, '0000-00-00 00:00:00', 1),
(553, 592, 38, 7, 3, 'try to confirm salary 14k  or 14.5k and confirm her joining', 50, '0000-00-00 00:00:00', 1),
(554, 596, 38, 2, 2, 'check by your end once okay means confirm salary otherwise reject her........50-50', 50, '0000-00-00 00:00:00', 1),
(555, 592, 8, 2, 0, 'RNR', 38, '2020-09-23 03:02:17', 1),
(556, 591, 8, 3, 0, '33K for lokesh team', 36, '2020-09-23 06:23:57', 1),
(557, 602, 41, 3, 0, 'nill', 1, '0000-00-00 00:00:00', 1),
(558, 603, 8, 4, 0, 'Check for PHP developer', 7, '0000-00-00 00:00:00', 1),
(559, 603, 54, 5, 0, 'she dont know the basics of c and C++', 8, '2020-09-24 11:52:33', 1),
(560, 606, 8, 3, 3, 'for Srikath team. 11K.', 7, '0000-00-00 00:00:00', 1),
(561, 604, 21, 5, 2, 'no voice exp, exp high salary , not sustain long  term', 52, '0000-00-00 00:00:00', 1),
(562, 590, 21, 5, 3, 'pronouncation problem', 7, '0000-00-00 00:00:00', 1),
(563, 598, 21, 5, 3, 'double minded ', 7, '0000-00-00 00:00:00', 1),
(564, 613, 53, 5, 0, 'He is having oly co ordinating exp in HR nd also expecting high salry, and suggested for RM but he s nt intrested in field work.', 7, '0000-00-00 00:00:00', 1),
(565, 608, 31, 9, 0, 'check for RE', 7, '0000-00-00 00:00:00', 1),
(566, 615, 14, 5, 1, 'Expecting high salary not suitable for voice process', 7, '0000-00-00 00:00:00', 1),
(567, 616, 14, 5, 1, 'not suitable for telecalling', 7, '0000-00-00 00:00:00', 1),
(568, 612, 51, 5, 2, 'she is not willing to travel long distance to meet the clients ', 7, '0000-00-00 00:00:00', 1),
(569, 527, 54, 3, 0, 'Selected, he is having good exprience in screening and calling.', 53, '2020-09-24 02:36:22', 1),
(570, 605, 8, 5, 0, 'for testing', 1, '0000-00-00 00:00:00', 1),
(571, 592, 8, 3, 0, '14K for Gowshick team.', 8, '2020-09-24 07:21:37', 1),
(572, 563, 8, 5, 0, 'will not suite for our process. already we hold 3.', 8, '2020-09-24 07:22:13', 1),
(573, 508, 8, 5, 0, 'hold for telephonic but she is not Responding.', 8, '2020-09-24 07:23:00', 1),
(574, 621, 38, 5, 2, 'will not suit for sales', 50, '0000-00-00 00:00:00', 1),
(575, 610, 8, 5, 0, 'poor communication and no HR skills, and no portal knowledge.', 50, '0000-00-00 00:00:00', 1),
(576, 614, 21, 5, 1, 'he dont know tamil.....', 50, '0000-00-00 00:00:00', 1),
(577, 617, 8, 5, 0, 'Not active, Switched  company ever 3 months will not sustain.', 50, '0000-00-00 00:00:00', 1),
(578, 567, 8, 3, 0, '13.5K for Ramesh team', 17, '2020-09-25 12:03:44', 1),
(579, 619, 21, 4, 4, 'ok 10.5 k salary , monday joinin', 50, '0000-00-00 00:00:00', 1),
(580, 619, 8, 3, 0, '10.5K Fro Dhivya team', 21, '2020-09-25 01:11:44', 1),
(581, 628, 38, 5, 2, 'i trIed for RM But he is having health issue xxamp he is looking for office work', 50, '0000-00-00 00:00:00', 1),
(582, 632, 51, 2, 3, 'keep on hold till 29th sept', 50, '0000-00-00 00:00:00', 1),
(583, 623, 8, 5, 0, 'will not suite for MIS', 50, '0000-00-00 00:00:00', 1),
(584, 439, 19, 5, 0, 'no working exp nd sustanbility ', 19, '2020-09-25 01:38:32', 1),
(585, 623, 9, 4, 0, 'change to new one', 8, '2020-09-25 02:16:15', 1),
(586, 374, 8, 5, 0, 'exp  CTC is 5.5L will not suite for AM.', 8, '2020-09-25 05:29:35', 1),
(587, 623, 8, 5, 0, 'will not suite for MIS', 9, '2020-09-26 10:07:42', 1),
(588, 334, 8, 8, 0, 'left before interview', 9, '2020-09-26 10:08:00', 1),
(589, 640, 13, 5, 3, 'expected salary high', 7, '0000-00-00 00:00:00', 1),
(590, 651, 53, 7, 0, 'sal 12k. doj 28 sep 20', 7, '0000-00-00 00:00:00', 1),
(591, 650, 8, 3, 0, 'For CRM 14K', 52, '0000-00-00 00:00:00', 1),
(592, 651, 8, 3, 0, '18K for TL', 53, '2020-09-26 10:35:29', 1),
(593, 629, 20, 4, 0, 'shortlisted and forwarded', 7, '0000-00-00 00:00:00', 1),
(594, 633, 21, 5, 2, 'Not Sustain Long Term , She I Il Come Only With Friends....', 7, '0000-00-00 00:00:00', 1),
(595, 644, 24, 5, 0, 'LOW VOICE .. NOT SUITABLE FOR TELECALLING JOB', 7, '0000-00-00 00:00:00', 1),
(596, 634, 14, 5, 1, 'not good in communication not suitable for voice ', 7, '0000-00-00 00:00:00', 1),
(597, 638, 21, 5, 3, 'expecting high salary 15 k above', 7, '0000-00-00 00:00:00', 1),
(598, 636, 13, 5, 2, 'not suitable for pressure handling', 7, '0000-00-00 00:00:00', 1),
(599, 648, 14, 5, 1, 'not suitable for telecalling ', 7, '0000-00-00 00:00:00', 1),
(600, 626, 24, 5, 0, 'SHE IS LOOKING FOR 6MONTH OR 1YRS JOB ONLY.. NEXT SHE WILL STUDY UPSC EXAM.. SO SUSTAINABILITY IS DOUBT', 50, '0000-00-00 00:00:00', 1),
(601, 647, 21, 5, 3, 'Not Sustain Long Term  Becz She Ill Come With Friends Only', 50, '0000-00-00 00:00:00', 1),
(602, 654, 14, 5, 1, 'not suitable for sales ', 50, '0000-00-00 00:00:00', 1),
(603, 653, 8, 5, 0, 'not Interested in insurance. looking for job in health  care', 50, '0000-00-00 00:00:00', 1),
(604, 652, 21, 5, 3, 'Long Distance (Perungaluthur)', 50, '0000-00-00 00:00:00', 1),
(605, 625, 14, 8, 0, 'candidate not attended the interview', 50, '0000-00-00 00:00:00', 1),
(606, 645, 14, 5, 1, 'long distance and not suitable for voice', 50, '0000-00-00 00:00:00', 1),
(607, 447, 53, 7, 0, 'sal 15k, doj 30 sep', 52, '0000-00-00 00:00:00', 1),
(608, 447, 8, 3, 0, 'for Banu team', 53, '2020-09-26 02:47:26', 1),
(609, 641, 13, 5, 2, 'Not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(610, 663, 21, 7, 4, 'selected 10 k salary , reshma ref ', 50, '0000-00-00 00:00:00', 1),
(611, 120, 0, 1, 0, NULL, 18, '2020-09-28 11:10:28', 1),
(612, 663, 8, 3, 0, '10K for dhivya team', 21, '2020-09-28 11:25:57', 1),
(613, 667, 13, 7, 4, '10.5k salary,joining date (Oct 1)', 50, '0000-00-00 00:00:00', 1),
(614, 669, 21, 5, 2, 'not sustain long term, salary exp 17 k above for crm, already have offer in 2comp', 50, '0000-00-00 00:00:00', 1),
(615, 670, 19, 5, 1, 'dress ccode not good nd lookwise also not good', 50, '0000-00-00 00:00:00', 1),
(616, 676, 21, 5, 1, 'not sustain long term xxamp also long distance 1.5 hrs travel ', 50, '0000-00-00 00:00:00', 1),
(617, 668, 21, 5, 3, 'not bold,no confidence', 50, '0000-00-00 00:00:00', 1),
(618, 666, 40, 4, 4, '13 years sales experience, sustainer for long, previous job knowledge is clear...Immediate joiner as well.', 50, '0000-00-00 00:00:00', 1),
(619, 664, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(620, 677, 21, 5, 2, 'Not Bold ,Cant Sustain Long Term', 50, '0000-00-00 00:00:00', 1),
(621, 680, 13, 7, 4, '11k salary,joining date oct 1', 50, '0000-00-00 00:00:00', 1),
(622, 673, 21, 5, 3, 'he dont have voice exp, also not sustain long term ', 50, '0000-00-00 00:00:00', 1),
(623, 672, 13, 5, 1, 'not sustain long time', 50, '0000-00-00 00:00:00', 1),
(624, 679, 13, 4, 4, 'priyanka team', 50, '0000-00-00 00:00:00', 1),
(625, 665, 11, 4, 3, 'ok for telecalling', 50, '0000-00-00 00:00:00', 1),
(626, 683, 8, 5, 2, 'will not handle pressure.', 50, '0000-00-00 00:00:00', 1),
(627, 681, 13, 5, 2, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(628, 674, 19, 5, 1, 'dress code not good nd no sustainability', 50, '0000-00-00 00:00:00', 1),
(629, 685, 8, 2, 0, 'for telephonic\n', 50, '0000-00-00 00:00:00', 1),
(630, 684, 8, 5, 2, 'will not sustain', 50, '0000-00-00 00:00:00', 1),
(631, 682, 8, 5, 0, 'will not suite for CRM. ', 50, '0000-00-00 00:00:00', 1),
(632, 675, 20, 5, 2, 'communication not good and no convincing skills.', 50, '0000-00-00 00:00:00', 1),
(633, 666, 18, 7, 4, 'Selected for Veben Team Salary 31k', 40, '2020-09-28 01:06:21', 1),
(634, 686, 8, 5, 0, 'not speaking up\n', 50, '0000-00-00 00:00:00', 1),
(635, 687, 26, 5, 0, 'she dont know basics', 50, '0000-00-00 00:00:00', 1),
(636, 629, 22, 7, 0, 'canditate selected', 20, '2020-09-28 01:21:32', 1),
(637, 689, 26, 5, 0, 'She dont know basics of c and c++', 50, '0000-00-00 00:00:00', 1),
(638, 678, 8, 5, 2, 'no sales exp, gave negative feedback about insurance. will not suite for RM profile. No degree to.', 50, '0000-00-00 00:00:00', 1),
(639, 690, 13, 5, 2, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(640, 691, 13, 5, 2, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(641, 694, 13, 7, 4, '10.5k salary,joining date( oct 1)', 50, '0000-00-00 00:00:00', 1),
(642, 693, 35, 5, 0, 'Looking a operational job, not much Knowledge in MF , Sales Not Interested ', 50, '0000-00-00 00:00:00', 1),
(643, 695, 21, 7, 4, 'ok for health team ...', 50, '0000-00-00 00:00:00', 1),
(644, 696, 21, 5, 0, 'she is interested in hr traniee, also not sustain long term', 50, '0000-00-00 00:00:00', 1),
(645, 692, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(646, 698, 21, 5, 1, 'She Is Searching Mail Process xxamp Also Expected 14 K Above For Crm', 50, '0000-00-00 00:00:00', 1),
(647, 699, 13, 7, 4, '10.5k salary,joining date(Oct 1)', 50, '0000-00-00 00:00:00', 1),
(648, 695, 8, 3, 0, '10K for health team.', 21, '2020-09-28 05:26:52', 1),
(649, 680, 8, 3, 0, '11K for Muthu team', 13, '2020-09-28 06:11:57', 1),
(650, 694, 8, 3, 0, '10.5K for Muthu team', 13, '2020-09-28 06:15:51', 1),
(651, 196, 22, 5, 0, 'candidate  did not came for second round', 22, '2020-09-28 06:23:14', 1),
(652, 629, 8, 3, 0, '11K for Srikanth Team', 22, '2020-09-28 06:24:07', 1),
(653, 415, 22, 5, 0, 'candidate did not came for second round', 22, '2020-09-28 06:25:12', 1),
(654, 667, 8, 3, 0, '10.5K for Muthu team', 13, '2020-09-28 06:36:23', 1),
(655, 699, 8, 3, 0, '10.5K for Muthu team', 13, '2020-09-28 06:38:39', 1),
(656, 572, 35, 5, 0, 'we given a time for 2nd Round Candidate Not Responding so that am Rejecting. ', 35, '2020-09-28 06:58:55', 1),
(657, 662, 41, 5, 0, 'Will not sustain,not fit for hR role,Fresher', 50, '0000-00-00 00:00:00', 1),
(658, 700, 24, 5, 1, 'Sustainability Is Doubt', 50, '0000-00-00 00:00:00', 1),
(659, 703, 21, 5, 3, 'not sustain long term xxamp also expecting high  salary 18k for crm', 50, '0000-00-00 00:00:00', 1),
(660, 704, 21, 5, 3, 'not sustain long term, xxamp also expecting high salry for crm above 18k ...', 50, '0000-00-00 00:00:00', 1),
(661, 705, 27, 2, 0, 'She is not interested in Bond. she will discuss with her family and will callback today.', 50, '0000-00-00 00:00:00', 1),
(662, 707, 13, 5, 3, 'NOT SUITABLE FOR PRESSURE HANDLING', 50, '0000-00-00 00:00:00', 1),
(663, 701, 13, 9, 5, 'GOOD EXPERIENCE BUT EXPECTED SALARY HIGH', 50, '0000-00-00 00:00:00', 1),
(664, 708, 13, 5, 1, 'not fit for tele sales', 50, '0000-00-00 00:00:00', 1),
(665, 702, 13, 5, 3, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(666, 711, 13, 7, 4, '10k Salary,Oct 1st Joining', 50, '0000-00-00 00:00:00', 1),
(667, 710, 13, 7, 4, '10k salary,Oct 1st joining', 50, '0000-00-00 00:00:00', 1),
(668, 713, 13, 5, 2, 'she is not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(669, 701, 8, 3, 0, '23K, fro RM.  shortlisted by sriram', 13, '2020-09-29 01:00:52', 1),
(670, 671, 13, 5, 3, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(671, 701, 18, 4, 0, 'Please check as it is doubtful. Told 21k salary', 8, '2020-09-29 01:39:39', 1),
(672, 719, 36, 7, 3, 'Selected for RM', 50, '0000-00-00 00:00:00', 1),
(673, 659, 13, 2, 4, 'ok but she is 15days notice period on previous company', 50, '0000-00-00 00:00:00', 1),
(674, 688, 13, 5, 3, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(675, 719, 8, 2, 0, 'Exp salary is high and need to cross check with Concern manager', 36, '2020-09-29 03:29:36', 1),
(676, 710, 8, 3, 0, '10K for Muthu team', 13, '2020-09-29 06:03:20', 1),
(677, 711, 8, 3, 0, '10K for Muthu team', 13, '2020-09-29 06:05:09', 1),
(678, 717, 41, 5, 0, 'Will not sustain long travel distance,dependent on her friend', 50, '0000-00-00 00:00:00', 1),
(679, 730, 41, 5, 3, '2022 graduate correspondence,will not sustain,can not handle pressure,not convincing and not a good listener', 50, '0000-00-00 00:00:00', 1),
(680, 723, 41, 5, 2, 'will not sustain,will not handle pressure,will not sustain', 50, '0000-00-00 00:00:00', 1),
(681, 745, 41, 4, 3, 'Check his profile and confidence level', 50, '0000-00-00 00:00:00', 1),
(682, 746, 41, 9, 3, 'Dep change will be suitable for RE assign to Saravanan', 50, '0000-00-00 00:00:00', 1),
(683, 745, 14, 7, 4, 'selected 10k salary need to check joining date', 41, '2020-09-30 12:02:13', 1),
(684, 746, 8, 4, 0, 'department change. check for RE', 41, '2020-09-30 12:05:10', 1),
(685, 721, 41, 5, 2, 'will  not sustain', 50, '0000-00-00 00:00:00', 1),
(686, 751, 41, 9, 3, 'Check for RE/RM, need to check JN and Sustainability', 50, '0000-00-00 00:00:00', 1),
(687, 746, 15, 5, 0, 'he will not sustain', 8, '2020-09-30 12:32:02', 1),
(688, 745, 8, 3, 0, '10K for Priyanka jenit', 14, '2020-09-30 12:33:03', 1),
(689, 755, 27, 9, 0, 'Wrongly Applied', 50, '0000-00-00 00:00:00', 1),
(690, 731, 14, 5, 1, 'expecting high salary he is not even to sustain . not suitable for voice', 50, '0000-00-00 00:00:00', 1),
(691, 753, 13, 5, 1, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(692, 718, 27, 9, 0, 'Wrongly Applied. she is interested in telecalling.', 50, '0000-00-00 00:00:00', 1),
(693, 743, 14, 7, 4, 'oct 1st joining salary 10.5k need to confirm the joining date once', 50, '0000-00-00 00:00:00', 1),
(694, 718, 8, 3, 0, '10.5K for priyanka team', 27, '2020-09-30 12:57:34', 1),
(695, 718, 14, 7, 4, 'salary 10.5k need to confirm joining date', 8, '2020-09-30 12:59:43', 1),
(696, 755, 8, 4, 0, 'check for CRM.', 27, '2020-09-30 01:05:59', 1),
(697, 755, 14, 5, 1, 'not suitable for voice process', 8, '2020-09-30 01:07:38', 1),
(698, 752, 13, 5, 2, 'not suitable for tele sales', 50, '0000-00-00 00:00:00', 1),
(699, 714, 13, 5, 3, 'not  suitable for tele sales', 50, '0000-00-00 00:00:00', 1),
(700, 716, 14, 5, 1, 'looking for non voice process ', 50, '0000-00-00 00:00:00', 1),
(701, 744, 14, 5, 0, 'looking for data entry ..not fit for voice process', 50, '0000-00-00 00:00:00', 1),
(702, 751, 8, 4, 0, 'check for RE, job need and Sustainability', 41, '2020-09-30 01:39:28', 1),
(703, 751, 19, 5, 1, 'sustainability zero', 8, '2020-09-30 01:42:29', 1),
(704, 726, 14, 7, 4, 'salary 10.5k need to confirm the joining date', 50, '0000-00-00 00:00:00', 1),
(705, 764, 41, 5, 2, 'Memory loss patient,We can not handle, 1985 born,But High job need', 50, '0000-00-00 00:00:00', 1),
(706, 768, 41, 5, 2, 'will not sustain,will not suite for any profile with CAFS', 50, '0000-00-00 00:00:00', 1),
(707, 743, 8, 3, 0, '10.5K for Priyanka team', 14, '2020-09-30 03:12:42', 1),
(708, 726, 8, 3, 0, '10.5K for Priyanka team', 14, '2020-09-30 03:15:25', 1),
(709, 718, 8, 3, 0, '10.5K for priyanka team', 14, '2020-09-30 03:16:49', 1),
(710, 787, 16, 7, 4, 'Good Comminication Skill And Salary Need  ,Sustain No Doubt Expect Salary 13 To 13.5', 50, '0000-00-00 00:00:00', 1),
(711, 759, 13, 5, 2, 'NOT SUITABLE FOR TELESALES', 50, '0000-00-00 00:00:00', 1),
(712, 786, 14, 5, 1, 'not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(713, 790, 13, 5, 3, 'Confidence Level	very low so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(714, 729, 53, 5, 0, 'He dont have experience n Hr profile, hvng experience n NV oly. Moreover he will not suit for RE nd CRM also.', 50, '0000-00-00 00:00:00', 1),
(715, 735, 14, 7, 4, 'salary 10k need to confirm joining date', 50, '0000-00-00 00:00:00', 1),
(716, 734, 54, 5, 0, 'He is doing freelance,he is looking for a job because of his marriage and will not sustain.', 50, '0000-00-00 00:00:00', 1),
(717, 799, 13, 5, 3, 'Communication xxamp Observation Skills	very poor so nalesot suitable for this telesales', 50, '0000-00-00 00:00:00', 1),
(718, 798, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(719, 797, 13, 5, 3, 'Communication  xxamp Confidence Level	 Very Low So Not Suitable For This Field', 50, '0000-00-00 00:00:00', 1),
(720, 793, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(721, 773, 13, 7, 4, '4 Yrs Experience good Convincing Skills,	  12k Salary (Oct 5th Joing)', 50, '0000-00-00 00:00:00', 1),
(722, 794, 13, 5, 3, 'Convincing Skills	very poor so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(723, 791, 14, 5, 1, 'not fit for sales', 50, '0000-00-00 00:00:00', 1),
(724, 789, 13, 5, 2, 'Communication skills  ok but  Sustainability	is low', 50, '0000-00-00 00:00:00', 1),
(725, 276, 44, 4, 3, 'good candidate ,Once you check with him  and expecting salary 27 K', 50, '0000-00-00 00:00:00', 1),
(726, 788, 33, 4, 3, 'Fit for rm but doubt in field work please check and clarify', 50, '0000-00-00 00:00:00', 1),
(727, 801, 14, 2, 4, 'Expecting high salary ', 50, '0000-00-00 00:00:00', 1),
(728, 739, 53, 5, 0, 'Long distance, nt suit fr HR rec, dnt hve portal knowledge also', 50, '0000-00-00 00:00:00', 1),
(729, 806, 14, 2, 4, 'need one month time to join ', 50, '0000-00-00 00:00:00', 1),
(730, 787, 8, 3, 0, '13K for Thiyagu team', 16, '2020-10-01 01:04:29', 1),
(731, 788, 44, 5, 2, 'She is not fit for our company', 33, '2020-10-01 01:25:59', 1),
(732, 805, 14, 5, 1, 'not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(733, 811, 41, 5, 3, 'Will Not Sustain Looking For Job To Pay Her Govt Exam Coaching Fee', 50, '0000-00-00 00:00:00', 1),
(734, 810, 36, 4, 3, 'Salary Suggestion around 3L', 50, '0000-00-00 00:00:00', 1),
(735, 812, 41, 5, 2, 'Will not sustain,Preparing for Govt job to pay for the coaching center looking for job', 50, '0000-00-00 00:00:00', 1),
(736, 778, 53, 5, 0, 'gud communication, but hvng kid nd sick mother, she wants to go home early. ', 50, '0000-00-00 00:00:00', 1),
(737, 747, 53, 5, 0, 'Good n communication, hvng knowledge in all fields, he s suitable for hr but expected high salary around 60k', 50, '0000-00-00 00:00:00', 1),
(738, 815, 14, 7, 4, 'salary 10.5k . need to confirm the joining date', 50, '0000-00-00 00:00:00', 1),
(739, 766, 14, 7, 4, 'salary 10k need to confirm joining date', 50, '0000-00-00 00:00:00', 1),
(740, 822, 36, 5, 0, 'Not fit for rM', 50, '0000-00-00 00:00:00', 1),
(741, 757, 54, 4, 0, 'Have to check sustainability and trust.', 50, '0000-00-00 00:00:00', 1),
(742, 773, 8, 3, 0, '12K fro muthu team', 13, '2020-10-01 04:16:27', 1),
(743, 810, 8, 4, 3, 'check with sustainability', 36, '2020-10-01 04:43:06', 1),
(744, 815, 8, 3, 0, '10.5K for priyanka team', 14, '2020-10-01 05:07:33', 1),
(745, 735, 8, 3, 0, '10K. for priyanka  team', 14, '2020-10-01 05:09:24', 1),
(746, 766, 8, 3, 0, '10K for priyanka team', 14, '2020-10-01 05:10:58', 1),
(747, 719, 18, 1, 0, NULL, 8, '2020-10-02 10:47:50', 1),
(748, 719, 8, 4, 0, 'check for RM', 8, '2020-10-02 10:47:50', 1),
(749, 828, 44, 4, 1, 'She is not fit for field sales ,and you can check for Tele sales', 7, '0000-00-00 00:00:00', 1),
(750, 828, 8, 5, 3, 'will not suite for sales and calling to. her voice is not bold and she will not sustain and her exp sal is 18+.', 44, '2020-10-02 01:40:30', 1),
(751, 608, 8, 3, 0, '14K for kannan team', 31, '2020-10-02 02:58:09', 1),
(752, 831, 53, 5, 0, 'dnt hve relevant exp', 7, '0000-00-00 00:00:00', 1),
(753, 833, 53, 5, 0, 'dnt hve exp in ths field. exp high sal', 7, '0000-00-00 00:00:00', 1),
(754, 332, 8, 3, 0, '30K for Lokesh team', 18, '2020-10-02 05:23:45', 1),
(755, 701, 8, 3, 0, '23K, fro RM.  shortlisted by sriram', 18, '2020-10-02 05:24:35', 1),
(756, 411, 8, 3, 0, '23K by Gaurav. as sourcing BDM', 18, '2020-10-02 05:25:44', 1),
(757, 411, 18, 7, 0, 'Given to gaurav for BDM profile', 18, '2020-10-02 05:25:44', 1),
(758, 322, 8, 3, 0, '21K. for Guru team ', 18, '2020-10-02 05:31:50', 1),
(759, 666, 8, 3, 0, '31K. for veben team', 18, '2020-10-02 05:33:44', 1),
(760, 781, 54, 4, 0, 'she is very confident and will sustain. have a good Communication skill. ', 50, '0000-00-00 00:00:00', 1),
(761, 814, 13, 5, 3, 'Pressure Handling low so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(762, 748, 14, 5, 0, 'Expecting high salary and long distance ', 50, '0000-00-00 00:00:00', 1),
(763, 749, 13, 5, 4, 'ok but expected salary high', 50, '0000-00-00 00:00:00', 1),
(764, 758, 14, 5, 0, 'expecting high salary 18k to 20k not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(765, 411, 8, 3, 0, '23K by Gaurav. as sourcing BDM', 8, '2020-10-03 10:41:13', 1),
(766, 608, 8, 3, 0, '14K for kannan team', 8, '2020-10-03 10:43:04', 1),
(767, 737, 54, 5, 0, 'communication not good.', 50, '0000-00-00 00:00:00', 1),
(768, 802, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(769, 796, 14, 5, 1, 'looking for data entry', 50, '0000-00-00 00:00:00', 1),
(770, 845, 31, 4, 4, 'forward to 2nd round', 50, '0000-00-00 00:00:00', 1),
(771, 843, 8, 8, 0, 'not attended', 50, '0000-00-00 00:00:00', 1),
(772, 819, 13, 5, 2, 'Sustainability	low so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(773, 847, 51, 7, 4, 'candidate is ok', 50, '0000-00-00 00:00:00', 1),
(774, 738, 8, 2, 0, 'okay for inter not as recruiter.', 50, '0000-00-00 00:00:00', 1),
(775, 851, 8, 2, 0, 'for Axa AM', 50, '0000-00-00 00:00:00', 1),
(776, 844, 20, 4, 0, 'suitable for RE', 50, '0000-00-00 00:00:00', 1),
(777, 847, 8, 3, 3, '21K for  Sarath team', 51, '2020-10-03 12:26:45', 1),
(778, 825, 8, 5, 0, 'will  not Sustain native is AP. salary exp is high. ', 50, '0000-00-00 00:00:00', 1),
(779, 853, 13, 7, 4, 'ok good Communication skills 5yrs telecalling experience 12k salary  Oct 5th joining', 50, '0000-00-00 00:00:00', 1),
(780, 800, 8, 4, 0, 'check with the profile. cross check with sustainability.', 50, '0000-00-00 00:00:00', 1),
(781, 844, 24, 2, 0, 'CANDIDATE OK BUT RE-CHECK WITH BALAJI SIR', 20, '2020-10-03 01:33:01', 1),
(782, 853, 8, 3, 0, '11K for Gowshick team.', 13, '2020-10-03 01:35:08', 1),
(783, 859, 14, 5, 0, 'expecting high salary and not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(784, 840, 13, 5, 2, 'Confidence Level	 very low so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(785, 722, 8, 5, 0, '20 days notice yet to put paper and will nit sustain. exp 50% hike + inc.', 50, '0000-00-00 00:00:00', 1),
(786, 776, 8, 5, 0, 'Will Not Suite For Our Process. Will Not Sustain. Exp Sal Is 25K', 50, '0000-00-00 00:00:00', 1),
(787, 858, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(788, 660, 13, 5, 2, 'Communication  skills poor so not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(789, 862, 38, 7, 3, 'kindly confirm joining xxamp salary', 50, '0000-00-00 00:00:00', 1),
(790, 861, 38, 7, 3, 'confirm her salary and joining', 50, '0000-00-00 00:00:00', 1),
(791, 845, 29, 5, 1, 'not selected', 31, '2020-10-03 03:15:48', 1),
(792, 724, 8, 5, 0, 'she will not suite for us and will not suatain.', 50, '0000-00-00 00:00:00', 1),
(793, 763, 8, 5, 0, 'fresher exp is 18-20K. Avg communication, will not sustain.', 50, '0000-00-00 00:00:00', 1),
(794, 861, 8, 3, 0, '11K for gowshick team', 38, '2020-10-03 03:52:57', 1),
(795, 862, 0, 1, 0, NULL, 38, '2020-10-03 03:55:38', 1),
(796, 800, 54, 5, 0, 'He Dont know about HRMS and will not Listen. keep on telling same. will not Sustain longtime. ', 8, '2020-10-03 05:06:40', 1),
(797, 781, 53, 7, 0, 'she needs clarity in PF. but potential candidate', 54, '2020-10-03 05:19:06', 1),
(798, 724, 54, 4, 0, 'as discussed profile re-assign to Kayal', 8, '2020-10-03 05:40:07', 1),
(799, 824, 21, 5, 3, 'not sustain long , 2015 passed out he dont have exper in voice @ other field also ... not fit for sales', 50, '0000-00-00 00:00:00', 1),
(800, 879, 14, 5, 0, 'Expecting high salary and not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(801, 881, 44, 5, 2, 'He is not fit for a life sales ', 50, '0000-00-00 00:00:00', 1),
(802, 877, 13, 5, 2, 'Communication skills poor so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(803, 854, 14, 5, 0, 'not suitable for voice xxamp expecting high salary for crm', 50, '0000-00-00 00:00:00', 1),
(804, 888, 28, 5, 2, 'basic skill is not enough', 50, '0000-00-00 00:00:00', 1),
(805, 889, 13, 7, 4, '3yrs experience,12k salary,(8th oct joining)', 50, '0000-00-00 00:00:00', 1),
(806, 880, 28, 2, 3, 'He struggle in basic frontend validation jquery or javascript.', 50, '0000-00-00 00:00:00', 1),
(807, 878, 24, 5, 1, 'Not Suitable For  Calling Profile.', 50, '0000-00-00 00:00:00', 1),
(808, 727, 36, 5, 0, 'Not fit for RM', 50, '0000-00-00 00:00:00', 1),
(809, 785, 53, 5, 0, 'she s not for HR rec, exp high salary', 50, '0000-00-00 00:00:00', 1),
(810, 865, 13, 5, 2, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(811, 860, 13, 7, 5, 'ok,10.5k salary,8th Oct joining', 50, '0000-00-00 00:00:00', 1),
(812, 810, 33, 5, 1, 'not fit for rm and sales', 8, '2020-10-05 12:53:03', 1),
(813, 827, 53, 5, 0, 'Exp high sal, dnt knw use portal also', 50, '0000-00-00 00:00:00', 1),
(814, 458, 8, 3, 0, '10K for dhivya team', 8, '2020-10-05 12:57:35', 1),
(815, 569, 8, 5, 0, 'he asked time time to think and not turned up', 8, '2020-10-05 12:58:14', 1),
(816, 299, 8, 3, 0, '10K for dhivya team', 8, '2020-10-05 01:01:13', 1),
(817, 772, 53, 4, 0, 'hvng exp n hr filed, Ok', 50, '0000-00-00 00:00:00', 1),
(818, 869, 13, 5, 2, 'Communication skills very poor', 50, '0000-00-00 00:00:00', 1),
(819, 897, 17, 9, 0, 'check for crm ', 50, '0000-00-00 00:00:00', 1),
(820, 893, 13, 5, 2, 'no Pressure Handling  xxamp Sustainability low', 50, '0000-00-00 00:00:00', 1),
(821, 894, 13, 5, 2, 'Attitude poor', 50, '0000-00-00 00:00:00', 1),
(822, 897, 13, 5, 2, 'Communication  low so rejected', 17, '2020-10-05 01:38:00', 1),
(823, 863, 13, 5, 1, 'Confidence Level	low', 50, '0000-00-00 00:00:00', 1),
(824, 874, 13, 5, 2, 'Communication poor but expected salary', 50, '0000-00-00 00:00:00', 1),
(825, 895, 13, 5, 2, 'Confidence Level	low so not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(826, 883, 36, 4, 4, 'Asked to come second round today', 50, '0000-00-00 00:00:00', 1),
(827, 736, 41, 5, 0, 'Pursuing MBA Corres Saturday and Sunday classes', 50, '0000-00-00 00:00:00', 1),
(828, 892, 34, 7, 4, 'SHORT LISTED AND MOVED TO SHANMUGAM ', 50, '0000-00-00 00:00:00', 1),
(829, 898, 13, 5, 2, 'Sustainability	less', 50, '0000-00-00 00:00:00', 1),
(830, 900, 30, 7, 3, 'Candidate okay...confirm his salary xxamp joining', 50, '0000-00-00 00:00:00', 1),
(831, 891, 38, 7, 3, 'Kindly confirm her joining xxamp salary', 50, '0000-00-00 00:00:00', 1),
(832, 901, 33, 9, 4, 'Please. Check the salary part and finalize ', 50, '0000-00-00 00:00:00', 1),
(833, 891, 8, 3, 0, '11K for Gowshick team', 38, '2020-10-05 04:21:06', 1),
(834, 860, 8, 3, 0, '10.5K for Muthu team', 13, '2020-10-05 05:55:15', 1),
(835, 900, 8, 3, 0, '27.5K for Sathish  team', 30, '2020-10-05 06:00:45', 1),
(836, 889, 8, 3, 0, '12K for Muthu team', 13, '2020-10-05 06:02:44', 1),
(837, 901, 18, 7, 3, 'Selected for Raj Team Negotiate Salary\n', 33, '2020-10-05 07:53:29', 1),
(838, 909, 34, 5, 3, 'rejected not sutable for our job', 50, '0000-00-00 00:00:00', 1),
(839, 772, 54, 2, 0, 'Good candidate, she is having good experience in the end to end process of requirement.  next round scheduled on  08-10-2020', 53, '2020-10-06 10:32:16', 1),
(840, 781, 8, 2, 0, 'for final feedback from Banu', 53, '2020-10-06 10:33:29', 1),
(841, 757, 8, 5, 0, 'will not suite for this profile', 54, '2020-10-06 10:38:18', 1),
(842, 724, 8, 5, 0, 'she will not suite for us and will not suatain.', 54, '2020-10-06 10:43:12', 1),
(843, 912, 33, 4, 3, 'SELECTED BUT SALARY PART NOT DISCUSSED KINDLY CHECK AND CONFIRM JOINING DATE WOULD BE 12TH OF THIS MONTH', 50, '0000-00-00 00:00:00', 1),
(844, 914, 13, 5, 2, 'Communication skills not well so rejected', 50, '0000-00-00 00:00:00', 1),
(845, 913, 21, 5, 1, 'long distance  1 hr travel,Not Sustain Long Term, She Is Intrested In Lecture Job , Tnpsc Exam', 50, '0000-00-00 00:00:00', 1),
(846, 915, 21, 5, 2, 'no need for job', 50, '0000-00-00 00:00:00', 1),
(847, 911, 13, 5, 2, 'not bold and not Sustain long term', 50, '0000-00-00 00:00:00', 1),
(848, 882, 21, 7, 4, 'ok selected , exp sal 9 to 10 k ', 50, '0000-00-00 00:00:00', 1),
(849, 883, 18, 7, 0, 'Shortlisted for Lokesh Team', 36, '2020-10-06 11:28:47', 1),
(850, 912, 18, 7, 0, 'Selected for veben Team can give salary 21k', 33, '2020-10-06 11:31:55', 1),
(851, 901, 8, 3, 3, '26K . For rajkumar team', 18, '2020-10-06 11:36:57', 1),
(852, 916, 30, 7, 3, 'manivel ref.....ixquotm okay with this candidate....already exp in sales (life).....confirm his salary and joining', 50, '0000-00-00 00:00:00', 1),
(853, 918, 21, 5, 3, 'she dont want presure job', 50, '0000-00-00 00:00:00', 1),
(854, 885, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(855, 890, 21, 5, 1, 'She Is Not Work With Pressure', 50, '0000-00-00 00:00:00', 1),
(856, 924, 51, 7, 3, 'moved for nxt round', 50, '0000-00-00 00:00:00', 1),
(857, 884, 13, 5, 3, 'Confidence Level	Very Low', 50, '0000-00-00 00:00:00', 1),
(858, 886, 21, 5, 3, 'not sustain long term ... seeking alliance ..', 50, '0000-00-00 00:00:00', 1),
(859, 276, 18, 7, 0, 'Selected for Raj team', 44, '2020-10-06 02:28:39', 1),
(860, 882, 8, 3, 0, '9K for Dhivya team.', 21, '2020-10-06 02:34:20', 1),
(861, 916, 8, 3, 3, '26K for Sathish team', 30, '2020-10-06 03:25:55', 1),
(862, 679, 8, 3, 0, '10K for Priyanka team', 13, '2020-10-06 03:30:09', 1),
(863, 493, 8, 5, 0, 'selected, but not joined. and no response', 8, '2020-10-06 03:44:35', 1),
(864, 738, 8, 5, 0, 'hold for intern but not turned up', 8, '2020-10-06 03:45:07', 1),
(865, 1, 11, 5, 0, 'will not sustain', 11, '2020-10-06 03:52:41', 1),
(866, 4, 11, 5, 0, 'not suitable for sales', 11, '2020-10-06 03:54:50', 1),
(867, 665, 8, 5, 0, 'will not suite for CRM.', 11, '2020-10-06 03:57:38', 1),
(868, 939, 34, 7, 4, 'shortlisted for next round tomrw 11 am', 50, '0000-00-00 00:00:00', 1),
(869, 939, 18, 5, 0, 'Non degeree holder and an average guy', 34, '2020-10-06 06:27:42', 1),
(870, 923, 21, 5, 3, 'She Dont Have  Voice Exp , Alreadyhave Exp In Email Chat Process ...', 50, '0000-00-00 00:00:00', 1),
(871, 952, 13, 7, 4, 'ok,10,5k salary need confirm to kayal', 50, '0000-00-00 00:00:00', 1),
(872, 955, 8, 5, 2, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(873, 899, 53, 4, 0, 'Fresher, gud communication, Will try fr recruiter', 50, '0000-00-00 00:00:00', 1),
(874, 920, 8, 2, 0, 'for axa', 50, '0000-00-00 00:00:00', 1),
(875, 943, 21, 5, 1, 'She Is Interested In Customer Support ', 50, '0000-00-00 00:00:00', 1),
(876, 950, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(877, 951, 21, 4, 4, 'ok selected ', 50, '0000-00-00 00:00:00', 1),
(878, 954, 13, 5, 2, 'Communication  poor', 50, '0000-00-00 00:00:00', 1),
(879, 907, 21, 5, 3, 'rejected ,not sustain long term bcz expecting high salary 15 k above ', 50, '0000-00-00 00:00:00', 1),
(880, 964, 13, 5, 2, 'Sustainability	less', 50, '0000-00-00 00:00:00', 1),
(881, 966, 21, 5, 2, 'Low Voice ,Not Bold ,Not Sus Long Term', 50, '0000-00-00 00:00:00', 1),
(882, 899, 8, 4, 0, 'check for HR', 53, '2020-10-07 12:23:08', 1),
(883, 948, 13, 5, 1, 'Communication  skills very poor', 50, '0000-00-00 00:00:00', 1),
(884, 927, 21, 7, 4, 'ok selected 10 k salary', 50, '0000-00-00 00:00:00', 1),
(885, 960, 13, 5, 2, 'Confidence Level	Skills low', 50, '0000-00-00 00:00:00', 1),
(886, 959, 21, 5, 1, 'She Wants 3 Month Only Full Time Job, After  She Went To Colleage ', 50, '0000-00-00 00:00:00', 1),
(887, 957, 13, 5, 2, 'Communication skills low', 50, '0000-00-00 00:00:00', 1),
(888, 931, 21, 5, 2, 'interested only in cus support', 50, '0000-00-00 00:00:00', 1),
(889, 944, 13, 5, 2, 'intrested only for data entry so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(890, 965, 21, 5, 2, 'Not Sustain Long term  xxamp Also Double Minded ', 50, '0000-00-00 00:00:00', 1),
(891, 920, 8, 2, 0, 'for axa', 8, '2020-10-07 12:55:37', 1),
(892, 924, 29, 5, 1, 'not selected', 51, '2020-10-07 01:12:51', 1),
(893, 908, 13, 5, 2, 'Observation Skills low', 50, '0000-00-00 00:00:00', 1),
(894, 967, 39, 7, 4, 'Confirm his salary and joining', 7, '0000-00-00 00:00:00', 1),
(895, 947, 21, 7, 4, 'ok selected ', 50, '0000-00-00 00:00:00', 1),
(896, 963, 30, 7, 3, 'Am k with this candidate, confirm the salary and joining date', 7, '0000-00-00 00:00:00', 1),
(897, 970, 28, 4, 3, 'He Is Good Knowledge In Android.', 50, '0000-00-00 00:00:00', 1),
(898, 942, 28, 5, 2, 'He Is Not Strong In Php Basic . ', 50, '0000-00-00 00:00:00', 1),
(899, 970, 27, 2, 0, 'Task Given to this Candidate. He will complete and let us know tomorrow. if Task Completed we will proceed further.', 28, '2020-10-07 03:11:34', 1),
(900, 952, 8, 3, 0, '10.5K for muthu team', 13, '2020-10-07 03:17:58', 1),
(901, 951, 8, 3, 3, '10.5K for dhivya team', 21, '2020-10-07 03:18:43', 1),
(902, 947, 8, 3, 0, '11K for dhivya team', 21, '2020-10-07 03:25:11', 1),
(903, 899, 54, 5, 0, 'She will not sustain, if she got any other better offer she will switch.', 8, '2020-10-07 03:52:40', 1),
(904, 927, 8, 3, 0, '10K for dhivya team', 21, '2020-10-07 04:54:20', 1),
(905, 967, 8, 2, 0, 'called more than 3 times no response form him', 39, '2020-10-07 05:29:19', 1),
(906, 963, 8, 2, 0, 'wrong number', 30, '2020-10-07 07:35:34', 1),
(907, 936, 21, 5, 3, 'Not  Sustain Long Term xxamp Also  Last Salry 18k ', 50, '0000-00-00 00:00:00', 1),
(908, 985, 13, 7, 5, 'communication xxamp Confidence Level	 good,10k salary', 50, '0000-00-00 00:00:00', 1),
(909, 987, 53, 4, 0, 'Due to training directly forwarded to  gokul', 50, '0000-00-00 00:00:00', 1),
(910, 477, 27, 5, 0, 'Task Not Completed and no reply from her.', 27, '2020-10-08 12:02:00', 1),
(911, 956, 36, 7, 3, 'Selected for RM', 1, '0000-00-00 00:00:00', 1),
(912, 976, 13, 8, 0, 'candidate not attend the interview', 1, '0000-00-00 00:00:00', 1),
(913, 985, 8, 3, 0, '10K for muthu team', 13, '2020-10-08 12:37:31', 1),
(914, 995, 24, 4, 4, 'candidate select .. next round balaji sir assigned.. CTC 1.56L TO 1.68L', 7, '0000-00-00 00:00:00', 1),
(915, 994, 53, 9, 0, 'crm', 7, '0000-00-00 00:00:00', 1),
(916, 993, 53, 9, 0, 'crm', 7, '0000-00-00 00:00:00', 1),
(917, 988, 36, 5, 0, 'na', 7, '0000-00-00 00:00:00', 1),
(918, 977, 21, 7, 4, 'ok 10 k salary ,need to check distance ...', 7, '0000-00-00 00:00:00', 1),
(919, 978, 13, 5, 3, 'Convincing  level poor', 7, '0000-00-00 00:00:00', 1),
(920, 995, 22, 5, 1, 'appearance and comunication is not good', 24, '2020-10-08 01:36:00', 1),
(921, 986, 13, 5, 2, 'he is intrested only nonvoice process', 50, '0000-00-00 00:00:00', 1),
(922, 989, 51, 5, 0, 'given information by him is fake', 50, '0000-00-00 00:00:00', 1),
(923, 971, 21, 5, 1, 'Not Sustain Long Term , Bcz  She Have Offer And Expecting High  Salary ', 50, '0000-00-00 00:00:00', 1),
(924, 977, 8, 2, 3, 'she is from ambatur need to check.', 21, '2020-10-08 03:27:51', 1),
(925, 1004, 15, 5, 0, 'not sustain', 7, '0000-00-00 00:00:00', 1),
(926, 1013, 13, 7, 4, 'ok,10ksalary', 50, '0000-00-00 00:00:00', 1),
(927, 1015, 35, 5, 0, 'Candidate Dont Have A Knowledge  About Mutual Fund. And He Looking A Operational Job, Not Okay For Sales.', 50, '0000-00-00 00:00:00', 1),
(928, 1018, 53, 4, 0, 'mis system roung pending', 50, '0000-00-00 00:00:00', 1),
(929, 1017, 53, 5, 0, 'Sustain issue. he s not ok with bonds', 50, '0000-00-00 00:00:00', 1),
(930, 1019, 21, 5, 2, 'she  is  interested in data entry job ', 50, '0000-00-00 00:00:00', 1),
(931, 1013, 8, 3, 0, '10K for muthu team', 13, '2020-10-09 11:17:57', 1),
(932, 987, 54, 5, 0, 'Task Incomplete', 53, '2020-10-09 11:20:00', 1),
(933, 993, 8, 5, 0, 'will not suite for CRM. not speaking up', 53, '2020-10-09 11:20:22', 1),
(934, 994, 8, 5, 0, 'will not suite for CRM, not speaking up', 53, '2020-10-09 11:20:42', 1),
(935, 1016, 53, 4, 0, 'pending for system round', 50, '0000-00-00 00:00:00', 1),
(936, 505, 13, 5, 2, 'he is intersted on only non-voice process', 50, '0000-00-00 00:00:00', 1),
(937, 1020, 53, 5, 0, 'She s looking fro mis or any non voice process, but she dont have exp in excel even she dont hve basic knowledge in excel', 50, '0000-00-00 00:00:00', 1),
(938, 276, 8, 3, 0, '21K for rajkumar team', 18, '2020-10-09 12:04:36', 1),
(939, 1028, 21, 5, 2, 'Not Bold , Not Fit For Sales..Long Distance', 50, '0000-00-00 00:00:00', 1),
(940, 1030, 13, 5, 2, 'she is not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(941, 1021, 21, 5, 2, 'She Is Not Sustain Long Term Bcz,Already In Accounts Field xxampAlso Expecting Above 12k Salary', 50, '0000-00-00 00:00:00', 1),
(942, 1006, 13, 7, 4, 'ok,10k salary joining date 12th Oct', 50, '0000-00-00 00:00:00', 1),
(943, 1027, 14, 5, 0, 'looking for data entry not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(944, 1031, 14, 7, 4, 'salary 10k need to check the joining date ', 50, '0000-00-00 00:00:00', 1),
(945, 1012, 53, 5, 0, 'he wont suit for any profile in cafs', 50, '0000-00-00 00:00:00', 1),
(946, 1023, 13, 5, 2, 'not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(947, 1032, 53, 5, 0, 'not suit for mis', 50, '0000-00-00 00:00:00', 1),
(948, 1016, 54, 5, 0, 'He left office, no information', 53, '2020-10-09 02:28:02', 1),
(949, 1031, 8, 3, 0, '10K for priyanka team', 14, '2020-10-09 02:36:22', 1),
(950, 1034, 53, 5, 0, 'dont hve exp in excel\n', 50, '0000-00-00 00:00:00', 1),
(951, 1018, 54, 5, 0, 'Task Incomplete', 53, '2020-10-09 02:55:21', 1),
(952, 1006, 8, 3, 0, '10K for muthu team', 13, '2020-10-09 03:15:37', 1),
(953, 1024, 14, 5, 1, 'not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(954, 912, 8, 3, 0, '21K for Veben team', 18, '2020-10-09 04:09:23', 1),
(955, 956, 8, 3, 0, '20K for Lokesh team', 36, '2020-10-09 04:11:23', 1),
(956, 876, 8, 3, 0, '13K for Syed team', 7, '0000-00-00 00:00:00', 1),
(957, 892, 44, 7, 3, 'He will join on 1st week of November', 34, '2020-10-09 04:44:58', 1),
(958, 1002, 38, 2, 3, 'kindly check this candidate by your side through telephonic round...confirm her joining and salary...  ', 50, '0000-00-00 00:00:00', 1),
(959, 1035, 38, 2, 3, 'kindly arrange telephonic round and confirm her salary and joining by monday', 50, '0000-00-00 00:00:00', 1),
(960, 892, 0, 1, 0, NULL, 44, '2020-10-09 05:34:10', 1),
(961, 963, 8, 3, 0, '23K  for manivel team', 8, '2020-10-09 06:52:23', 1),
(962, 967, 8, 3, 0, '18K for Muppudathy team', 8, '2020-10-09 06:53:18', 1),
(963, 1043, 14, 5, 1, 'not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(964, 883, 8, 3, 0, '18K for lokesh team', 18, '2020-10-10 10:53:05', 1),
(965, 1037, 21, 5, 3, 'Not  Sustain Long Term xxamp Also Joining It Course , xxampNow He Want Data Entry Job.. ', 50, '0000-00-00 00:00:00', 1),
(966, 1045, 54, 2, 0, 'task given he will send to us by monday ', 50, '0000-00-00 00:00:00', 1),
(967, 1046, 54, 2, 0, ' next interview System Round on 14-10-2020', 50, '0000-00-00 00:00:00', 1),
(968, 1047, 53, 5, 0, 'he dont hve much knowledge in excel nd powerpoint presentation. exp abv 20k ', 50, '0000-00-00 00:00:00', 1),
(969, 1039, 54, 2, 0, 'given one week time and task given has to complete and revert', 50, '0000-00-00 00:00:00', 1),
(970, 1038, 53, 5, 0, 'He dont knw basic functions nd formulas also. he ll not suit fr MIS', 50, '0000-00-00 00:00:00', 1),
(971, 1044, 51, 4, 4, 'interested in sales', 50, '0000-00-00 00:00:00', 1),
(972, 1040, 53, 5, 0, 'dont hve knowledge in excel, even he doesnt knw the functions nd basic formulas.', 50, '0000-00-00 00:00:00', 1),
(973, 1051, 13, 5, 2, 'Sustainability	 less', 50, '0000-00-00 00:00:00', 1),
(974, 1050, 53, 2, 0, 'Sytem round completed, hold  becz of sustainability', 50, '0000-00-00 00:00:00', 1),
(975, 1049, 21, 5, 3, 'Not Sustain Bcz, He  Have More 10  Yrs Experienced  In Front Office Asst In Hotel xxamp Resorts ...Also Expecting 15 K Above For Crm ', 50, '0000-00-00 00:00:00', 1),
(976, 1048, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(977, 1055, 14, 5, 0, 'expecting high salary and not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(978, 1054, 21, 5, 3, 'Not Sustain Long Term Becz, She Already Worked Courier Process Related System Work..', 50, '0000-00-00 00:00:00', 1),
(979, 1057, 44, 5, 1, 'He looking for data entry Job', 50, '0000-00-00 00:00:00', 1),
(980, 1052, 53, 5, 0, 'she dont know the basic Excel also, hvng 5 yrs exp but not in this field.. ', 50, '0000-00-00 00:00:00', 1),
(981, 1067, 38, 5, 1, 'Her Voice Is Too Low and will not suit for our field', 50, '0000-00-00 00:00:00', 1),
(982, 1068, 38, 5, 1, 'She Is Looking For Non Voice Process', 50, '0000-00-00 00:00:00', 1),
(983, 1056, 54, 5, 0, 'He will not sustain, Package is high ', 50, '0000-00-00 00:00:00', 1),
(984, 1076, 15, 4, 4, '15k salary fixed', 50, '0000-00-00 00:00:00', 1),
(985, 1074, 21, 2, 4, 'Need To Check Distance,2 Hrs  ', 50, '0000-00-00 00:00:00', 1),
(986, 1075, 21, 5, 3, 'long distance 2 hrs travel...', 50, '0000-00-00 00:00:00', 1),
(987, 1089, 24, 9, 0, 'rm profile', 50, '0000-00-00 00:00:00', 1),
(988, 1085, 54, 8, 0, 'Not attendend', 50, '0000-00-00 00:00:00', 1),
(989, 1079, 14, 7, 4, 'salary 10k need to confirm the joining date', 50, '0000-00-00 00:00:00', 1),
(990, 1081, 14, 5, 1, 'not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(991, 1041, 13, 9, 0, 'he is intrested in  mis', 50, '0000-00-00 00:00:00', 1),
(992, 1078, 38, 2, 3, 'Candidate okay for me...Kindly Arrange telephonic round and confirm this candidate from your side.....', 50, '0000-00-00 00:00:00', 1),
(993, 999, 13, 5, 3, 'Convincing Skills	low', 50, '0000-00-00 00:00:00', 1),
(994, 1011, 21, 5, 3, 'Not Sustain Long Term  Bcz Of Family Backround', 50, '0000-00-00 00:00:00', 1),
(995, 1076, 8, 2, 2, 'no sales exp too', 15, '2020-10-12 11:52:09', 1),
(996, 1084, 21, 5, 3, 'already he worked in mobile showroom , paintshop , not profiled also expecting 20 k salary ', 50, '0000-00-00 00:00:00', 1),
(997, 1080, 54, 2, 0, 'next interview on friday 16-10-2020\n', 50, '0000-00-00 00:00:00', 1),
(998, 1089, 8, 4, 0, 'Check for RM', 24, '2020-10-12 12:12:33', 1),
(999, 1082, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1000, 1083, 14, 5, 1, 'not fit for sales ', 50, '0000-00-00 00:00:00', 1),
(1001, 1086, 54, 2, 0, 'She is Completely Nervous, so we given two weeks of time to learn.', 50, '0000-00-00 00:00:00', 1),
(1002, 1073, 13, 7, 5, 'Communication xxampConvincing Skills	 good (ok 11k salary  joining date oct 15th)', 50, '0000-00-00 00:00:00', 1),
(1003, 1097, 16, 5, 1, 'NO COMUNICATION SKLIIS, SUSTAIN DOUBT', 50, '0000-00-00 00:00:00', 1),
(1004, 1089, 40, 4, 4, '25k expected/ But doesnxquott have exp in revenue generation sales...but seems like a quick learner', 8, '2020-10-12 12:48:02', 1),
(1005, 1098, 13, 5, 2, 'Confidence Level	very low', 50, '0000-00-00 00:00:00', 1),
(1006, 1088, 38, 2, 3, 'Okay for me...but expecting high package....kindly arrange telephonic round and confirm this candidate', 50, '0000-00-00 00:00:00', 1),
(1007, 1094, 54, 2, 0, 'he have a next round on 15-10-2020', 50, '0000-00-00 00:00:00', 1),
(1008, 1096, 54, 5, 0, 'he is Interested in java', 50, '0000-00-00 00:00:00', 1),
(1009, 1104, 14, 5, 1, 'not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(1010, 1100, 54, 5, 0, 'he dont Have basic idea in php and he is not active', 50, '0000-00-00 00:00:00', 1),
(1011, 1091, 16, 4, 4, 'Good Cominication Skills,Sustain No Doubt Salary Expect 13k ', 50, '0000-00-00 00:00:00', 1),
(1012, 1077, 14, 5, 1, 'not fit for this job', 50, '0000-00-00 00:00:00', 1),
(1013, 1102, 54, 2, 0, 'have a next round on 16-10-2020\n', 50, '0000-00-00 00:00:00', 1),
(1014, 1089, 18, 4, 0, 'Yet to see', 40, '2020-10-12 01:55:22', 1),
(1015, 1095, 38, 7, 3, 'Kindly Confirm Her Joining xxamp Salary', 50, '0000-00-00 00:00:00', 1),
(1016, 1041, 8, 4, 0, 'check for MIS', 13, '2020-10-12 02:08:19', 1),
(1017, 1089, 44, 5, 1, 'Not fit for life sales', 18, '2020-10-12 02:09:35', 1),
(1018, 1062, 54, 5, 0, 'he is Completely Interested in java so he will not sustain', 50, '0000-00-00 00:00:00', 1),
(1019, 1074, 8, 2, 0, 'long distance', 21, '2020-10-12 02:50:07', 1),
(1020, 1074, 21, 4, 0, 'need to  check distance ,she is from kundrathur ...', 21, '2020-10-12 02:50:07', 1),
(1021, 1106, 54, 5, 0, 'He is looking job in sql. but we are looking php.\nprofile not matched', 50, '0000-00-00 00:00:00', 1),
(1022, 1105, 54, 8, 0, 'Not Attended', 50, '0000-00-00 00:00:00', 1),
(1023, 1091, 8, 3, 0, '13K for thiyagu team', 16, '2020-10-12 03:08:08', 1),
(1024, 1073, 8, 3, 0, '11K for muthu team', 13, '2020-10-12 03:31:06', 1),
(1025, 1079, 8, 3, 0, '10K for priyanka team', 14, '2020-10-12 03:31:33', 1),
(1026, 1107, 53, 2, 0, 'hvng exp n programming field cTS, but looking for hr. pls hold this profile', 50, '0000-00-00 00:00:00', 1),
(1027, 1041, 53, 5, 0, 'in excel he dont know the basic formulas also', 8, '2020-10-12 04:07:08', 1),
(1028, 1095, 8, 3, 0, '11K for gowshick team', 38, '2020-10-12 05:26:16', 1),
(1029, 1078, 8, 3, 0, '15K for gowshick team', 38, '2020-10-12 06:56:45', 1),
(1030, 1078, 38, 4, 0, 'Kindly confirm joining and salary. ', 38, '2020-10-12 06:56:45', 1),
(1031, 1111, 21, 5, 2, 'she is from kodungaiyur 1;30 hrs above travelxxamp also no maturity', 50, '0000-00-00 00:00:00', 1),
(1032, 1044, 29, 7, 4, 'selected as rM for 22k salary, sarath team doj 15th oct 2020', 51, '2020-10-13 10:02:31', 1),
(1033, 632, 51, 5, 0, 'looking for more salary', 51, '2020-10-13 10:03:37', 1),
(1034, 1110, 13, 7, 4, 'Confidence Level	good (10k salary)', 7, '0000-00-00 00:00:00', 1),
(1035, 1119, 28, 5, 0, 'Not ans basic php questions', 7, '0000-00-00 00:00:00', 1),
(1036, 1118, 28, 5, 0, 'Not ans basic php questions', 7, '0000-00-00 00:00:00', 1),
(1037, 1108, 14, 5, 1, 'not fit for sales he looking for data entry ', 7, '0000-00-00 00:00:00', 1),
(1038, 1121, 53, 9, 0, 'he came for php', 7, '0000-00-00 00:00:00', 1),
(1039, 1112, 21, 5, 3, 'Not Sustain Long Term bcz he exp 15 k above sal ,dont have 2 wheeler , no reliving , payslip also', 7, '0000-00-00 00:00:00', 1),
(1040, 1090, 28, 5, 0, 'He is not strong in php basic', 7, '0000-00-00 00:00:00', 1),
(1041, 1035, 8, 3, 0, '11K for gowshick team', 38, '2020-10-13 11:51:32', 1),
(1042, 1035, 38, 7, 0, 'Confirm her joining by wednesday', 38, '2020-10-13 11:51:32', 1),
(1043, 1110, 8, 3, 2, '10K for muthu team', 13, '2020-10-13 11:55:20', 1),
(1044, 1122, 53, 5, 0, 'she s hvng oly exp in billing. she wont suit for any profile at cafs', 7, '0000-00-00 00:00:00', 1),
(1045, 1123, 15, 5, 0, 'not sustain', 7, '0000-00-00 00:00:00', 1),
(1046, 1124, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1047, 1130, 14, 5, 1, 'looking for data entry not interested in sales', 7, '0000-00-00 00:00:00', 1),
(1048, 1120, 21, 5, 3, 'Not Sustain Long Term Bcz , She Compl B.Ed , Due To Covid Schools  Are Not Opened Now, Once Open She Went', 7, '0000-00-00 00:00:00', 1),
(1049, 1099, 53, 2, 0, 'he s not intrested n field, hvng exp in mis, explaind task, asked to come for next round once u prepared the task.', 7, '0000-00-00 00:00:00', 1),
(1050, 1076, 8, 3, 0, '15K for saravana team', 8, '2020-10-13 01:49:11', 1),
(1051, 1115, 13, 7, 4, 'ok,10.5k salary need to confirm joining date', 7, '0000-00-00 00:00:00', 1),
(1052, 1117, 53, 4, 0, 'gud communication.  but he s npt ok with bonds, pls check sustainability', 7, '0000-00-00 00:00:00', 1),
(1053, 1152, 14, 5, 1, 'long distance and not even to handle the pressure ', 7, '0000-00-00 00:00:00', 1),
(1054, 1150, 21, 5, 2, 'Rejected Bcz, She Worked In Personal Loan  At Last 6 Months , She Quit Bcz Of Target xxamp Job Pressure , Also Expecting 13 K Salary ..', 7, '0000-00-00 00:00:00', 1),
(1055, 1115, 8, 2, 0, 'she is not from chennai. she need to confirm her room and  update us.then doj', 13, '2020-10-13 03:47:37', 1),
(1056, 1153, 21, 5, 2, 'Rejected Bcz, She Worked In Personal Loan  At Last 6 Months , She Quit Bcz Of Target xxamp Job Pressure , Also Expecting 13 K Salary ..', 7, '0000-00-00 00:00:00', 1),
(1057, 1156, 21, 4, 4, 'ok selected ', 50, '0000-00-00 00:00:00', 1),
(1058, 1151, 13, 5, 2, '  not suitable for pressure handling so Sustainability	Low', 7, '0000-00-00 00:00:00', 1),
(1059, 1170, 31, 9, 3, 'better to check with finance and accounts if possible', 7, '0000-00-00 00:00:00', 1),
(1060, 1131, 53, 5, 0, 'very low voice, not convincing', 7, '0000-00-00 00:00:00', 1),
(1061, 1171, 13, 5, 2, 'Communication very poor so not fit for telesales', 7, '0000-00-00 00:00:00', 1),
(1062, 1157, 21, 5, 3, 'He Is Doing MBA , Week End Class Have ,and also low confidence , not sustain long term also...', 7, '0000-00-00 00:00:00', 1),
(1063, 1117, 8, 4, 0, 'check with sustainability', 53, '2020-10-14 11:11:50', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(1064, 1121, 54, 5, 0, 'not good in technical', 53, '2020-10-14 11:17:51', 1),
(1065, 1132, 53, 4, 0, 'pls check, average communication, job must for family situation', 7, '0000-00-00 00:00:00', 1),
(1066, 1173, 14, 7, 4, 'salary 10k need to confirm the joining date', 7, '0000-00-00 00:00:00', 1),
(1067, 1117, 54, 5, 0, 'Not Attended', 8, '2020-10-14 11:43:40', 1),
(1068, 1126, 53, 5, 0, 'fresher, she dnt know anything abt rec, exp min 15k salary', 7, '0000-00-00 00:00:00', 1),
(1069, 1149, 28, 2, 0, 'Need To  Recall 1 Week Time', 7, '0000-00-00 00:00:00', 1),
(1070, 1133, 53, 4, 0, 'gud communication. ok for hr profile, need to check sustainability', 7, '0000-00-00 00:00:00', 1),
(1071, 1143, 28, 2, 0, 'Need to  recall 1 week time', 7, '0000-00-00 00:00:00', 1),
(1072, 1135, 53, 5, 0, 'not bold, not ok with bond', 7, '0000-00-00 00:00:00', 1),
(1073, 1156, 53, 7, 0, 'selected. sal 11 to 12k. immediate joing. dhivya team', 21, '2020-10-14 12:12:30', 1),
(1074, 1156, 8, 3, 0, '12K for Dhivya team', 53, '2020-10-14 12:28:53', 1),
(1075, 1133, 8, 2, 0, 'need to confirm joining and salary', 53, '2020-10-14 12:29:32', 1),
(1076, 1132, 8, 5, 0, 'no communication. no previous job analysis and not very clear about her topic.', 53, '2020-10-14 12:31:28', 1),
(1077, 1172, 13, 5, 2, 'not fit for telesales', 7, '0000-00-00 00:00:00', 1),
(1078, 1175, 53, 5, 0, 'not intrested in bond', 7, '0000-00-00 00:00:00', 1),
(1079, 1170, 8, 5, 0, 'looking for job in Accounts.', 31, '2020-10-14 12:43:16', 1),
(1080, 1146, 53, 4, 0, 'in meeting. so forwarded to kayal', 7, '0000-00-00 00:00:00', 1),
(1081, 1129, 13, 5, 2, 'not suitable for pressure handling', 7, '0000-00-00 00:00:00', 1),
(1082, 1181, 53, 8, 0, 'he left frm office', 7, '0000-00-00 00:00:00', 1),
(1083, 1183, 21, 5, 3, 'Not Sustain 2 Comp Quit In Last 1 Yr Bec Of Personal Reason , ', 7, '0000-00-00 00:00:00', 1),
(1084, 1158, 14, 8, 0, 'not attend the interview', 7, '0000-00-00 00:00:00', 1),
(1085, 1140, 53, 5, 0, 'he is not ok for HR profile, but exp sal is 30k', 7, '0000-00-00 00:00:00', 1),
(1086, 1137, 53, 7, 0, 'she s ok with pne year bond, exp sal is 12k, due to brother marriage asking joining next month, i asked to cnfrm with priyanka', 7, '0000-00-00 00:00:00', 1),
(1087, 1179, 13, 7, 4, 'OK,11K SALARY BUT EXPECTED SALARY HIGH', 7, '0000-00-00 00:00:00', 1),
(1088, 1173, 8, 3, 0, '10K for priyanka team', 14, '2020-10-14 02:49:33', 1),
(1089, 1044, 8, 3, 0, '22K for  Sarath team', 29, '2020-10-14 03:32:00', 1),
(1090, 1195, 8, 3, 0, 'with Ded. 23211 as take home. for HR-G', 7, '0000-00-00 00:00:00', 1),
(1091, 1195, 53, 7, 0, 'selected sal 28k ...doj pls check with him', 8, '2020-10-14 04:28:34', 1),
(1092, 1137, 8, 2, 0, 'need to confirm her joining and salary', 53, '2020-10-14 04:36:31', 1),
(1093, 1146, 8, 5, 0, 'will not suite for HR, no understanding, no listening and avg,. comm. No job need.', 53, '2020-10-14 04:39:32', 1),
(1094, 1179, 8, 3, 0, '11K for muthu team', 13, '2020-10-14 05:02:23', 1),
(1095, 1148, 8, 4, 0, 'check for MIS', 7, '0000-00-00 00:00:00', 1),
(1096, 1148, 53, 5, 0, 'dnt have knowledge in excel', 8, '2020-10-14 05:48:48', 1),
(1097, 1177, 21, 5, 1, 'Not Sustain Bcz , He Is Interested In Customer Support Proces, Dont Want Sales  Profile, Also Interested In IT Prof', 50, '0000-00-00 00:00:00', 1),
(1098, 1197, 28, 2, 0, 'Need to time for recall the php basic.  Next interview on  19/10/2020', 50, '0000-00-00 00:00:00', 1),
(1099, 1207, 14, 7, 4, 'salary 10k need to confirm joining date', 50, '0000-00-00 00:00:00', 1),
(1100, 1206, 28, 2, 0, 'He need to recall the php basic next interview on  19/10/2020', 50, '0000-00-00 00:00:00', 1),
(1101, 1210, 28, 2, 0, 'He need  to time for recall basic php, next interview on 19/10/2020', 50, '0000-00-00 00:00:00', 1),
(1102, 1209, 13, 7, 4, 'ok,10.5k salary', 50, '0000-00-00 00:00:00', 1),
(1103, 1211, 28, 4, 0, 'She have good answering php basic questions.', 50, '0000-00-00 00:00:00', 1),
(1104, 1199, 53, 7, 0, 'gud communication. hvng exp in this fiel, sal 13 to 15k', 50, '0000-00-00 00:00:00', 1),
(1105, 1212, 22, 5, 0, 'not satisfied', 50, '0000-00-00 00:00:00', 1),
(1106, 1176, 53, 4, 0, 'check sustainability, average caller', 50, '0000-00-00 00:00:00', 1),
(1107, 1217, 28, 2, 0, 'next interview on  19/10/2020', 50, '0000-00-00 00:00:00', 1),
(1108, 1205, 53, 5, 0, 'he s thinking to take calls. he wont take 80 calls per day', 50, '0000-00-00 00:00:00', 1),
(1109, 1209, 8, 3, 0, '10.5K for muthu team', 13, '2020-10-15 11:54:38', 1),
(1110, 1215, 21, 5, 1, 'He Is Interested In Father Buisness, Current Situtation Only Need Job', 50, '0000-00-00 00:00:00', 1),
(1111, 1198, 36, 5, 0, 'Not fit', 50, '0000-00-00 00:00:00', 1),
(1112, 1193, 53, 7, 0, 'gud communication, sal 13 to 15k.', 50, '0000-00-00 00:00:00', 1),
(1113, 1185, 53, 5, 0, 'poor communication, he dont hve exp in hr bt looking 15k minimum', 50, '0000-00-00 00:00:00', 1),
(1114, 1188, 14, 5, 1, 'looking for data entry not fit for sales', 50, '0000-00-00 00:00:00', 1),
(1115, 1201, 13, 5, 1, 'Pressure Handling very poor', 50, '0000-00-00 00:00:00', 1),
(1116, 1220, 21, 5, 1, 'Not Bold Not Sustain Bcz, 1;30 Hrs Travel', 50, '0000-00-00 00:00:00', 1),
(1117, 1219, 14, 5, 1, 'not fit for voice process', 50, '0000-00-00 00:00:00', 1),
(1118, 1213, 53, 4, 0, 'holded for system round, he knw oly excel nt macros nd spreadsheet', 50, '0000-00-00 00:00:00', 1),
(1119, 1221, 30, 7, 3, 'candidate okay....confirm her salary and joining', 50, '0000-00-00 00:00:00', 1),
(1120, 1214, 13, 5, 2, 'not suitable for tele sales', 50, '0000-00-00 00:00:00', 1),
(1121, 1208, 28, 2, 0, 'Need to recall basic php, next interview schedule on  19/10/2020', 50, '0000-00-00 00:00:00', 1),
(1122, 1226, 14, 7, 4, 'salary 10k need to confirm joining date', 50, '0000-00-00 00:00:00', 1),
(1123, 1211, 54, 7, 4, 'CTC --101,052 after Deduction 8000 Monthly take, joining 26 th oct 2020', 28, '2020-10-15 01:16:24', 1),
(1124, 1231, 28, 5, 0, 'He is not know android and Php basic', 50, '0000-00-00 00:00:00', 1),
(1125, 1227, 31, 7, 4, 'Candidate okay', 50, '0000-00-00 00:00:00', 1),
(1126, 1226, 8, 3, 0, '10K for Priyanka team', 14, '2020-10-15 02:27:14', 1),
(1127, 1207, 8, 3, 0, '10K for priyanka team', 14, '2020-10-15 02:29:37', 1),
(1128, 1213, 54, 5, 0, 'will not complete the task\n', 53, '2020-10-15 03:01:00', 1),
(1129, 1176, 8, 5, 0, 'not okay with bond and will not suite for our HR process', 53, '2020-10-15 03:01:37', 1),
(1130, 1199, 8, 3, 0, '13K as TH.', 53, '2020-10-15 03:03:13', 1),
(1131, 1193, 8, 3, 0, '13K  as TH with out det. ', 53, '2020-10-15 03:03:44', 1),
(1132, 1155, 8, 5, 0, 'salary exp is high. 18K and looking  for job change (salary)', 50, '0000-00-00 00:00:00', 1),
(1133, 1244, 8, 2, 0, '3yr exp but not completely into rec. last th is 20K. ', 50, '0000-00-00 00:00:00', 1),
(1134, 1133, 8, 3, 0, '13K as TH', 8, '2020-10-15 05:12:17', 1),
(1135, 1221, 8, 3, 0, '24k for RM', 30, '2020-10-15 05:59:40', 1),
(1136, 1240, 53, 4, 0, 'check sustainability', 50, '0000-00-00 00:00:00', 1),
(1137, 1243, 21, 5, 2, 'Not Sustain, Low Confidence , Not Bold, Noflow In Words ,Come With Friend Only..', 50, '0000-00-00 00:00:00', 1),
(1138, 1245, 13, 5, 2, 'NOT SUITABLE FOR TELESALES', 50, '0000-00-00 00:00:00', 1),
(1139, 1248, 28, 2, 0, 'He is fresher not Experience in  Relevant filed. But  he ans basic php questions. Next interview on  19/10/2020', 50, '0000-00-00 00:00:00', 1),
(1140, 1241, 53, 4, 0, 'selected fr rec', 50, '0000-00-00 00:00:00', 1),
(1141, 1252, 28, 5, 0, 'He is not Know basic php', 50, '0000-00-00 00:00:00', 1),
(1142, 1228, 13, 5, 2, 'he is intrested only non-voice process', 50, '0000-00-00 00:00:00', 1),
(1143, 1242, 14, 7, 4, 'salary 10k need to confirm the joining date ', 50, '0000-00-00 00:00:00', 1),
(1144, 1251, 14, 7, 4, 'salary 10k need to confirm joining date', 50, '0000-00-00 00:00:00', 1),
(1145, 1257, 21, 5, 2, 'Not Sustain Bez His Brother Also Work In Lic ...,Already Teeth Pain ...', 50, '0000-00-00 00:00:00', 1),
(1146, 1174, 13, 7, 5, 'ok,10.5k salary joining date Oct 19th', 50, '0000-00-00 00:00:00', 1),
(1147, 1261, 21, 5, 1, 'He Is Interested In Customer Care Base Or Cus Support', 7, '0000-00-00 00:00:00', 1),
(1148, 1256, 39, 4, 2, '50-50  we can try', 50, '0000-00-00 00:00:00', 1),
(1149, 970, 27, 5, 0, 'Task Incomplete', 27, '2020-10-16 12:58:56', 1),
(1150, 705, 27, 5, 0, 'not interested for bond.', 27, '2020-10-16 01:00:57', 1),
(1151, 1174, 8, 3, 0, '10.5K for muthu team', 13, '2020-10-16 01:08:33', 1),
(1152, 659, 13, 5, 0, 'person not attend the call  ringing only ', 13, '2020-10-16 01:26:20', 1),
(1153, 1242, 8, 3, 0, '10K for priyanka team', 14, '2020-10-16 01:28:01', 1),
(1154, 1251, 8, 3, 0, '10K for priyanka team', 14, '2020-10-16 01:30:26', 1),
(1155, 1202, 53, 4, 0, 'check sustainability', 50, '0000-00-00 00:00:00', 1),
(1156, 1262, 53, 4, 0, 'asked to come monday', 50, '0000-00-00 00:00:00', 1),
(1157, 1256, 56, 5, 1, 'he will not suit for this field', 39, '2020-10-16 02:30:11', 1),
(1158, 1263, 13, 5, 2, 'communication low and expected salary High', 50, '0000-00-00 00:00:00', 1),
(1159, 1267, 8, 4, 0, 'has 5+ yr exp in MIS, check  for MIS profile.', 50, '0000-00-00 00:00:00', 1),
(1160, 1267, 53, 2, 0, 'gvn task. asked to prepare', 8, '2020-10-16 05:25:46', 1),
(1161, 1137, 8, 5, 0, 'hold for HR- will not join. long distance.', 8, '2020-10-16 05:26:39', 1),
(1162, 1115, 8, 5, 0, 'will not join.', 8, '2020-10-16 05:30:18', 1),
(1163, 1074, 8, 5, 0, 'will not join', 8, '2020-10-16 05:32:50', 1),
(1164, 920, 8, 5, 0, 'told no int in insurance', 8, '2020-10-16 05:33:38', 1),
(1165, 685, 8, 5, 0, 'not selected in telephonic interview', 8, '2020-10-16 05:34:38', 1),
(1166, 851, 8, 5, 0, 'not selected in BAxa', 8, '2020-10-16 05:35:03', 1),
(1167, 1202, 8, 2, 0, 'for Bond she need to discuss with her parents.', 53, '2020-10-16 05:41:05', 1),
(1168, 1240, 8, 2, 0, 'For Bond She Need To Discuss With Her Parents.', 53, '2020-10-16 05:41:23', 1),
(1169, 1241, 8, 3, 0, '12650 as  CTC', 53, '2020-10-16 05:41:52', 1),
(1170, 1262, 8, 2, 0, 'Next round on monday', 53, '2020-10-16 05:42:13', 1),
(1171, 1269, 28, 4, 0, 'He is 6 month experience in php. good ans php basic', 50, '0000-00-00 00:00:00', 1),
(1172, 1271, 28, 5, 0, 'She is not Know basic skill in php', 50, '0000-00-00 00:00:00', 1),
(1173, 1254, 28, 5, 0, 'She is not Know basic Php skills', 50, '0000-00-00 00:00:00', 1),
(1174, 1277, 53, 4, 0, 'ok for rec, gud communication', 50, '0000-00-00 00:00:00', 1),
(1175, 1275, 21, 9, 0, 'sarath  reference for rm', 50, '0000-00-00 00:00:00', 1),
(1176, 1269, 27, 2, 0, 'Task Given. He is asking 1 hour time to complete. i gave 2 hours time.', 28, '2020-10-17 11:01:14', 1),
(1177, 1270, 28, 5, 0, 'He is Dont Know Basic skills, PHP, Mysql and JavaScript ', 7, '0000-00-00 00:00:00', 1),
(1178, 1253, 53, 4, 0, 'check sustainability', 7, '0000-00-00 00:00:00', 1),
(1179, 1255, 13, 5, 3, 'communication skill average but expected salary High', 7, '0000-00-00 00:00:00', 1),
(1180, 1278, 28, 5, 0, 'He is not strong basic skill set', 7, '0000-00-00 00:00:00', 1),
(1181, 1279, 28, 5, 0, 'He Is Not Strong Basic Skill Set', 7, '0000-00-00 00:00:00', 1),
(1182, 1280, 16, 5, 0, 'no comunication skills ', 7, '0000-00-00 00:00:00', 1),
(1183, 1282, 13, 7, 5, 'ok,10.5k salary monday joining', 7, '0000-00-00 00:00:00', 1),
(1184, 1284, 21, 5, 1, 'he Is Come With Friend Only xxampalso Not Bold...', 7, '0000-00-00 00:00:00', 1),
(1185, 1285, 21, 5, 1, 'Not Bold ,No Voice Clarity, She Is Come With His Friend ', 7, '0000-00-00 00:00:00', 1),
(1186, 1282, 8, 3, 0, '10.5K for Muthu team', 13, '2020-10-17 02:07:58', 1),
(1187, 1281, 14, 7, 4, 'salary 11k need to confirm joining date', 7, '0000-00-00 00:00:00', 1),
(1188, 1288, 13, 5, 1, 'she is looking for the job temporary only', 7, '0000-00-00 00:00:00', 1),
(1189, 1277, 54, 5, 0, 'Se will not Sustain because willing to join indian army.', 53, '2020-10-17 02:53:19', 1),
(1190, 1253, 8, 5, 0, 'Pronounced that she will move if she get better offer.  not okay with bond. no knowledge in HR process and time being looking for job.', 53, '2020-10-17 02:54:01', 1),
(1191, 1281, 8, 3, 0, '11K for Priyanka team', 14, '2020-10-17 03:24:08', 1),
(1192, 1269, 54, 5, 0, 'He will not sustain', 27, '2020-10-17 05:22:21', 1),
(1193, 1269, 27, 4, 0, 'Task Completed.', 27, '2020-10-17 05:22:21', 1),
(1194, 1275, 8, 8, 0, 'check for rm', 21, '2020-10-17 06:24:34', 1),
(1195, 1291, 28, 5, 0, 'She is Not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1196, 1197, 28, 5, 0, 'He is not strong in basic php', 28, '2020-10-19 11:15:52', 1),
(1197, 1248, 27, 5, 0, 'Task Not Completed.', 28, '2020-10-19 11:16:33', 1),
(1198, 1248, 28, 4, 0, 'He is  Know basic Php skill.', 28, '2020-10-19 11:16:33', 1),
(1199, 1286, 53, 4, 0, 'gud communication, fresher, expecting abv 15k. pls check sustainability', 50, '0000-00-00 00:00:00', 1),
(1200, 1301, 14, 7, 4, 'salary 10k need to confirm joining date ', 50, '0000-00-00 00:00:00', 1),
(1201, 1304, 28, 5, 0, 'He is not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1202, 1303, 28, 4, 0, 'First interview taken by gokul sir.', 50, '0000-00-00 00:00:00', 1),
(1203, 1302, 21, 4, 4, 'Need To Check ,Sustainability ,She Is Come With Friend ,, xxamp Also Need To Check Distance ', 50, '0000-00-00 00:00:00', 1),
(1204, 1293, 28, 5, 0, 'He is not strong in basic php and html', 50, '0000-00-00 00:00:00', 1),
(1205, 1206, 28, 5, 0, 'He is not strong in basic php', 28, '2020-10-19 12:14:31', 1),
(1206, 1294, 28, 5, 0, 'He is not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1207, 1305, 29, 7, 3, 'Selected for RM, Salary 23000, once completed 6 lacs in next 3 months with average 2 lacs month he will be eligible for 2k increment, reporting to sarath', 50, '0000-00-00 00:00:00', 1),
(1208, 1301, 8, 3, 0, '10K for priyanka team', 14, '2020-10-19 12:27:56', 1),
(1209, 1289, 28, 5, 0, 'He is  not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1210, 1258, 53, 5, 0, 'having just 2 months experience. not suit for  recruiter profile..', 50, '0000-00-00 00:00:00', 1),
(1211, 1308, 13, 5, 2, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(1212, 1306, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1213, 1292, 28, 5, 0, 'He is not strong in  php', 50, '0000-00-00 00:00:00', 1),
(1214, 1295, 21, 9, 0, 'mIS ', 50, '0000-00-00 00:00:00', 1),
(1215, 1302, 8, 3, 0, '10K for Dhivya team.', 21, '2020-10-19 01:09:35', 1),
(1216, 1310, 21, 5, 3, 'Not bold, Low Confidence ,She Is Interested In Data entry', 50, '0000-00-00 00:00:00', 1),
(1217, 1303, 27, 2, 0, 'Dynamic Task Given.', 28, '2020-10-19 02:29:17', 1),
(1218, 1164, 14, 5, 1, 'not suitable for sales looking for data entry', 50, '0000-00-00 00:00:00', 1),
(1219, 1250, 13, 5, 2, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(1220, 1295, 53, 5, 0, 'she know oly vlookup.', 21, '2020-10-19 03:00:43', 1),
(1221, 1195, 8, 3, 0, 'with Ded. 23211 as take home. for HR-G', 53, '2020-10-19 04:06:24', 1),
(1222, 1286, 8, 5, 0, 'no exp in HR and exp is 14-15K as TH. will not suite for REc.', 53, '2020-10-19 04:21:45', 1),
(1223, 1202, 8, 5, 0, 'not okay with bond. will not join.', 8, '2020-10-19 04:46:40', 1),
(1224, 1240, 8, 5, 0, 'Not Okay With Bond. Will Not Join.', 8, '2020-10-19 04:46:49', 1),
(1225, 1307, 53, 4, 0, 'check sustainability', 50, '0000-00-00 00:00:00', 1),
(1226, 1321, 8, 2, 0, 'salary exp upto 20K. has 1yr exp in rec. ', 50, '0000-00-00 00:00:00', 1),
(1227, 1317, 21, 5, 3, 'Not Sustain ,He Searched Data  Entry Job ...', 7, '0000-00-00 00:00:00', 1),
(1228, 1328, 13, 5, 2, 'not suitable for pressure handling', 7, '0000-00-00 00:00:00', 1),
(1229, 1329, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1230, 1318, 21, 5, 0, 'already she went training in consultancy .. xxamp also  long distance ', 7, '0000-00-00 00:00:00', 1),
(1231, 1307, 8, 2, 0, 'need to check. no job need.', 53, '2020-10-20 12:02:32', 1),
(1232, 1327, 21, 5, 0, 'he have 18 arrears xxamp also not fit for our process', 7, '0000-00-00 00:00:00', 1),
(1233, 1315, 24, 5, 1, 'voice not bold.. not convince for sale field.', 7, '0000-00-00 00:00:00', 1),
(1234, 1338, 57, 5, 1, 'he is not sales profile .. voice is not clear ', 7, '0000-00-00 00:00:00', 1),
(1235, 1340, 19, 5, 1, 'no longer sustain', 7, '0000-00-00 00:00:00', 1),
(1236, 1314, 21, 9, 0, 'try renewal calls ', 7, '0000-00-00 00:00:00', 1),
(1237, 1335, 21, 5, 3, 'not fit for our process', 7, '0000-00-00 00:00:00', 1),
(1238, 1316, 31, 5, 0, 'Candidate expecting accountant of finance department. Not interested in sales', 7, '0000-00-00 00:00:00', 1),
(1239, 1341, 21, 5, 0, 'kannan  met this candidate, not ok  for crm', 7, '0000-00-00 00:00:00', 1),
(1240, 1343, 28, 5, 0, 'He is not  strong in technically and not sustain. Interview Taken by Gokul Sir.', 7, '0000-00-00 00:00:00', 1),
(1241, 1345, 21, 5, 0, 'she said data entry job only interest', 7, '0000-00-00 00:00:00', 1),
(1242, 1346, 21, 5, 0, 'she is come with friends only....', 7, '0000-00-00 00:00:00', 1),
(1243, 1347, 21, 5, 3, 'Not Sustain , She Is Interested In Non Voice Job xxampAlso Come With His Friend Only ', 7, '0000-00-00 00:00:00', 1),
(1244, 1331, 57, 4, 3, 'select for next round', 7, '0000-00-00 00:00:00', 1),
(1245, 1326, 8, 5, 0, 'will not suite for rec. no knowledge in portal and sal exp is 15K+', 7, '0000-00-00 00:00:00', 1),
(1246, 1322, 8, 8, 0, 'left before interview', 7, '0000-00-00 00:00:00', 1),
(1247, 1352, 29, 5, 1, 'Will not sustain for longer term', 7, '0000-00-00 00:00:00', 1),
(1248, 1331, 22, 7, 3, 'ok for Health Insurance RE profile', 57, '2020-10-20 04:01:11', 1),
(1249, 1314, 53, 5, 0, 'not suit fr telecalling', 21, '2020-10-20 04:24:23', 1),
(1250, 1305, 8, 2, 0, 'he is in notice period. he has to confirm his joining. asked him to drop a mail regarding the same.', 29, '2020-10-20 04:38:10', 1),
(1251, 1331, 8, 3, 0, '14K for Syed team', 22, '2020-10-20 07:24:18', 1),
(1252, 1350, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1253, 1299, 21, 4, 3, 'ok for health ', 7, '0000-00-00 00:00:00', 1),
(1254, 1377, 21, 9, 0, 'he is ok with RE profile', 7, '0000-00-00 00:00:00', 1),
(1255, 1351, 28, 4, 0, 'He is answer in basic php.  ', 7, '0000-00-00 00:00:00', 1),
(1256, 1353, 21, 5, 2, 'Already Relived In Credit Card Sales Due To Pressure ', 7, '0000-00-00 00:00:00', 1),
(1257, 1380, 13, 9, 0, 'refer to reniwal dept', 7, '0000-00-00 00:00:00', 1),
(1258, 1348, 21, 5, 2, 'Need To Check Bcz ,She Already Worked 3  Companies In Last 4 Yrs xxamp Also Expecting High Salary For Crm 18k Above ', 7, '0000-00-00 00:00:00', 1),
(1259, 1332, 31, 5, 2, 'Expecting service based job.  not fit for sales', 7, '0000-00-00 00:00:00', 1),
(1260, 1367, 24, 4, 0, 'NOT INTREST FOR RE PROFILE.. CHECK WITH CRM PROFILE', 7, '0000-00-00 00:00:00', 1),
(1261, 1359, 13, 5, 1, 'he is intrested only non-voice process', 7, '0000-00-00 00:00:00', 1),
(1262, 1342, 19, 7, 4, 'Selected', 7, '0000-00-00 00:00:00', 1),
(1263, 1381, 21, 5, 3, 'He Already Relived  Credit Card Job Bcz Not Able To Handle Pressure...', 7, '0000-00-00 00:00:00', 1),
(1264, 1383, 53, 5, 0, 'not suit fr mis', 7, '0000-00-00 00:00:00', 1),
(1265, 1372, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1266, 1355, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1267, 1356, 13, 5, 2, 'communication skill poor', 7, '0000-00-00 00:00:00', 1),
(1268, 1373, 21, 5, 2, 'she is come with her friend only ,xxamp not bold ...', 7, '0000-00-00 00:00:00', 1),
(1269, 1374, 21, 5, 0, 'not suit for our process, she is come with her friend only...', 7, '0000-00-00 00:00:00', 1),
(1270, 1382, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1271, 1367, 8, 4, 0, 'insted dep change suthagar shared profile to me. check for CRM', 24, '2020-10-21 11:43:43', 1),
(1272, 1363, 21, 7, 3, 'candidate ok for crm.. need to confirm joining xxamp salary', 7, '0000-00-00 00:00:00', 1),
(1273, 1376, 21, 4, 0, 'ok for crm , but expecting 15 k salary....', 7, '0000-00-00 00:00:00', 1),
(1274, 1358, 19, 5, 1, 'will not sustain for long term', 7, '0000-00-00 00:00:00', 1),
(1275, 1388, 28, 5, 0, 'She is not answering basic php', 7, '0000-00-00 00:00:00', 1),
(1276, 1362, 44, 5, 2, 'Not fit for life sales', 7, '0000-00-00 00:00:00', 1),
(1277, 1354, 53, 4, 0, 'Will try', 7, '0000-00-00 00:00:00', 1),
(1278, 1360, 21, 5, 0, 'not suit for our process, xxamphe is expecting 20 k for crm (fresher)', 7, '0000-00-00 00:00:00', 1),
(1279, 1351, 27, 5, 1, 'i am not sure he will sustain. He told salary problem in his company. He got a hike in current month. now he expected more from that. i asked him is it ok if  we offer the same salary. he is not ready to accept. ', 28, '2020-10-21 12:25:53', 1),
(1280, 1365, 28, 5, 0, 'He is Not strong in basic php', 7, '0000-00-00 00:00:00', 1),
(1281, 1344, 53, 4, 0, 'system round', 7, '0000-00-00 00:00:00', 1),
(1282, 1391, 13, 5, 2, 'he is intrested only non-voice process so not fit for telesales', 7, '0000-00-00 00:00:00', 1),
(1283, 1395, 57, 4, 4, 'selected for next round', 7, '0000-00-00 00:00:00', 1),
(1284, 1394, 24, 5, 0, 'NOT FIT FOR OUR PROFILE', 7, '0000-00-00 00:00:00', 1),
(1285, 1390, 13, 5, 2, 'communication not well but expected salary very high', 7, '0000-00-00 00:00:00', 1),
(1286, 1398, 24, 5, 1, 'not fit for our profile', 7, '0000-00-00 00:00:00', 1),
(1287, 1380, 8, 4, 0, 'For MIS', 13, '2020-10-21 01:42:16', 1),
(1288, 1299, 13, 7, 4, '10k salary,oct 22nd joining', 21, '2020-10-21 02:31:02', 1),
(1289, 1376, 53, 4, 0, 'check fr renewals', 21, '2020-10-21 02:35:11', 1),
(1290, 1378, 28, 4, 0, 'He is good basic php', 7, '0000-00-00 00:00:00', 1),
(1291, 1377, 8, 3, 0, '13k for suthagar team', 21, '2020-10-21 02:40:47', 1),
(1292, 1404, 13, 5, 1, 'not well communication  so not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1293, 1379, 21, 5, 0, 'already worked team leader in non voice process....', 7, '0000-00-00 00:00:00', 1),
(1294, 1309, 53, 5, 0, 'nt suit for rec. Asked to go for field but he s not intrested in firls allso, last job he quit due to pressure', 7, '0000-00-00 00:00:00', 1),
(1295, 1363, 8, 3, 0, '13K for Dhivya team', 21, '2020-10-21 02:47:51', 1),
(1296, 1380, 53, 5, 0, 'she s nt opening her mouth also', 8, '2020-10-21 03:07:29', 1),
(1297, 1377, 24, 7, 0, 'candidate selected 13k slry', 8, '2020-10-21 03:12:48', 1),
(1298, 1299, 8, 3, 0, '10K for Muthu team.', 13, '2020-10-21 03:17:50', 1),
(1299, 1378, 27, 5, 0, 'Task Given for this candidate. Task Incomplete. He did not complete even 50%.', 28, '2020-10-21 03:20:34', 1),
(1300, 1403, 21, 5, 2, 'He Is Expected 13 K Above For Crm.....', 7, '0000-00-00 00:00:00', 1),
(1301, 1344, 54, 5, 0, 'Slow, Task Incomplete.', 53, '2020-10-21 05:12:34', 1),
(1302, 1354, 8, 2, 0, 'she need to discuss with her parents.\n', 53, '2020-10-21 05:20:43', 1),
(1303, 1376, 8, 3, 0, '15010 as take home. for renewal', 53, '2020-10-21 05:21:09', 1),
(1304, 1367, 13, 5, 2, 'not suitable for pressure handling', 8, '2020-10-21 05:51:45', 1),
(1305, 1395, 8, 3, 0, '12.5K fotr syed team', 57, '2020-10-21 06:10:44', 1),
(1306, 1342, 8, 3, 0, '16k for kannan team', 19, '2020-10-21 06:22:22', 1),
(1307, 407, 27, 5, 0, 'Task Incomplete. Gave 3 days time and given 2 time excuses. but he could not complete.', 27, '2020-10-22 10:01:57', 1),
(1308, 1424, 28, 5, 0, 'He is not strong in  basic php', 50, '0000-00-00 00:00:00', 1),
(1309, 1392, 53, 5, 0, ' she knows oly basics, exp 2ok', 50, '0000-00-00 00:00:00', 1),
(1310, 1414, 21, 5, 3, 'Non Voice Job In Cognazant, she said data entry ill be ok ', 50, '0000-00-00 00:00:00', 1),
(1311, 1421, 21, 5, 2, 'Not Bold xxamp Low Confidence  Last 1 Year She Not Went for Any Job,,,', 50, '0000-00-00 00:00:00', 1),
(1312, 1415, 24, 7, 0, 'candidate ok 17k salary.. ', 50, '0000-00-00 00:00:00', 1),
(1313, 1416, 53, 5, 0, 'exp 25k,  knw hve tht much knowledge', 50, '0000-00-00 00:00:00', 1),
(1314, 1427, 21, 9, 0, 'mIS', 50, '0000-00-00 00:00:00', 1),
(1315, 1410, 21, 5, 0, 'pronouncation problem, xxamp no flow in words', 50, '0000-00-00 00:00:00', 1),
(1316, 1433, 21, 5, 0, 'married she need work from xxamp data entry ill be ok with it..', 50, '0000-00-00 00:00:00', 1),
(1317, 1420, 21, 5, 1, 'not bold,also interested in data entry...', 50, '0000-00-00 00:00:00', 1),
(1318, 1412, 21, 5, 0, '18 age  running ', 50, '0000-00-00 00:00:00', 1),
(1319, 1384, 53, 5, 0, 'too long  he dnt knw abt PPT', 50, '0000-00-00 00:00:00', 1),
(1320, 1407, 53, 5, 0, 'too long as well as he dnt knw PPT and all', 50, '0000-00-00 00:00:00', 1),
(1321, 1422, 13, 5, 2, 'NOT SUITABLE FOR TELESALES', 50, '0000-00-00 00:00:00', 1),
(1322, 1423, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(1323, 1389, 13, 7, 4, '11K SALARY,MONDAY JOINING', 50, '0000-00-00 00:00:00', 1),
(1324, 1393, 53, 5, 0, 'he s not opening his mouth', 50, '0000-00-00 00:00:00', 1),
(1325, 1428, 53, 4, 0, 'doubt oly, pls check frm ur end also, if ur ok i ll arrange next round of interview at arumbakkam', 50, '0000-00-00 00:00:00', 1),
(1326, 1429, 16, 5, 0, 'NO COMUNICATION SKILLS,LOW PROFILE', 50, '0000-00-00 00:00:00', 1),
(1327, 1434, 13, 5, 2, 'he is intrested only non-voice process', 50, '0000-00-00 00:00:00', 1),
(1328, 1425, 13, 5, 3, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(1329, 1430, 19, 7, 4, 'Salary 14k', 50, '0000-00-00 00:00:00', 1),
(1330, 1427, 53, 5, 0, 'dnt knw basic excel also', 21, '2020-10-22 01:20:30', 1),
(1331, 1389, 8, 3, 0, '11K  muthu team', 13, '2020-10-22 01:27:54', 1),
(1332, 1361, 13, 7, 4, '10 to 10.5k salary monday joining', 50, '0000-00-00 00:00:00', 1),
(1333, 1441, 21, 8, 0, 'gone', 50, '0000-00-00 00:00:00', 1),
(1334, 904, 21, 8, 0, 'candidate gone', 50, '0000-00-00 00:00:00', 1),
(1335, 1440, 19, 5, 0, 'not fit for sales', 50, '0000-00-00 00:00:00', 1),
(1336, 1361, 8, 3, 0, '10.5K for Muthu team', 13, '2020-10-22 02:36:25', 1),
(1337, 1445, 21, 5, 0, 'she is come with her friend only..', 50, '0000-00-00 00:00:00', 1),
(1338, 1211, 8, 3, 0, '8421 and IT tean', 54, '2020-10-22 06:02:34', 1),
(1339, 1415, 8, 3, 0, '17K for RE suthagar team', 24, '2020-10-22 06:32:26', 1),
(1340, 1377, 8, 3, 0, '13k for suthagar team', 24, '2020-10-22 06:38:30', 1),
(1341, 1217, 27, 5, 0, 'Not Completed the system task. ', 28, '2020-10-22 06:52:05', 1),
(1342, 1217, 28, 4, 0, 'System Task', 28, '2020-10-22 06:52:05', 1),
(1343, 1428, 15, 5, 0, '...', 53, '2020-10-23 10:47:06', 1),
(1344, 1455, 13, 5, 1, 'not suitable for voice process', 7, '0000-00-00 00:00:00', 1),
(1345, 1453, 16, 9, 0, 'NOT FIT FOR RE ,ONCE TRY TO CRM', 7, '0000-00-00 00:00:00', 1),
(1346, 1452, 13, 7, 4, 'OK.10K SALARY MONDAY JOINING ', 7, '0000-00-00 00:00:00', 1),
(1347, 1435, 13, 5, 2, 'NOT SUITABLE FOR VOICE PROCESS', 7, '0000-00-00 00:00:00', 1),
(1348, 1432, 28, 5, 0, 'He is Not strong in basic Php', 7, '0000-00-00 00:00:00', 1),
(1349, 1451, 53, 4, 0, 'selected fr second round', 7, '0000-00-00 00:00:00', 1),
(1350, 1419, 8, 2, 0, 'for star', 7, '0000-00-00 00:00:00', 1),
(1351, 1449, 8, 2, 0, 'for Star', 7, '0000-00-00 00:00:00', 1),
(1352, 1452, 8, 3, 0, '10K for muthu team', 13, '2020-10-23 12:21:02', 1),
(1353, 1458, 20, 2, 2, 'candidate missing after 1st round', 7, '0000-00-00 00:00:00', 1),
(1354, 1448, 13, 7, 4, 'ok,10k salary  Monday joining', 7, '0000-00-00 00:00:00', 1),
(1355, 1460, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1356, 1459, 8, 4, 2, 'check for RE', 7, '0000-00-00 00:00:00', 1),
(1357, 1447, 8, 5, 2, 'she is Stumbling to speak and her pronunciation is not clear. will not suite for CRM', 7, '0000-00-00 00:00:00', 1),
(1358, 1462, 13, 5, 1, 'not fit for telesales', 7, '0000-00-00 00:00:00', 1),
(1359, 1461, 13, 5, 1, 'not suitable for pressure  handling', 7, '0000-00-00 00:00:00', 1),
(1360, 1453, 8, 4, 0, 'check for CRM', 16, '2020-10-23 02:26:24', 1),
(1361, 1459, 16, 5, 0, 'no comunication skill local slaung', 8, '2020-10-23 02:30:20', 1),
(1362, 1453, 13, 5, 1, 'not  suitable for tele sales', 8, '2020-10-23 02:31:13', 1),
(1363, 1417, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1364, 1448, 8, 3, 0, '10K for Muthu team', 13, '2020-10-23 02:52:02', 1),
(1365, 1457, 53, 5, 0, 'exp sal 30k min, last package 20k, due to his personal reason  he need tht  much slary, nd more over he cannot join immediately', 50, '0000-00-00 00:00:00', 1),
(1366, 1430, 8, 3, 0, '14K for kannan team', 19, '2020-10-24 10:35:14', 1),
(1367, 1480, 44, 5, 1, 'He is not fit ', 50, '0000-00-00 00:00:00', 1),
(1368, 1476, 13, 7, 4, '10k salary,monday joining', 50, '0000-00-00 00:00:00', 1),
(1369, 1484, 53, 5, 0, 'poor communication,  she is thinking for targets, she s not ok with the targets', 50, '0000-00-00 00:00:00', 1),
(1370, 1474, 24, 5, 0, 'Not Worth For any profile. not even explaining his graduation', 50, '0000-00-00 00:00:00', 1),
(1371, 1487, 13, 5, 2, 'she is intrested only non-voice process', 50, '0000-00-00 00:00:00', 1),
(1372, 1399, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(1373, 1405, 13, 5, 1, 'he is looking for non-voice process', 50, '0000-00-00 00:00:00', 1),
(1374, 1475, 14, 5, 0, 'looking for data entry non voice process not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1375, 1451, 54, 5, 0, 'task not completed', 53, '2020-10-24 11:38:49', 1),
(1376, 1486, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1377, 1470, 53, 5, 0, 'stammering. he wont suit fr  mis', 50, '0000-00-00 00:00:00', 1),
(1378, 1471, 53, 8, 0, 'not attended', 50, '0000-00-00 00:00:00', 1),
(1379, 1473, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1380, 1330, 28, 5, 0, 'He dont Know frame work like wordpress.', 50, '0000-00-00 00:00:00', 1),
(1381, 1488, 14, 4, 4, 'salary 10k need to confirm joining date ', 50, '0000-00-00 00:00:00', 1),
(1382, 1489, 14, 5, 1, 'expecting high salary and sustainability less ', 50, '0000-00-00 00:00:00', 1),
(1383, 1479, 28, 5, 0, 'He is not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1384, 1402, 13, 5, 2, 'not siutable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(1385, 1482, 14, 5, 0, 'looking for non voice process not suitable for telecalling', 50, '0000-00-00 00:00:00', 1),
(1386, 1436, 13, 7, 5, '10k salary,monday joining', 50, '0000-00-00 00:00:00', 1),
(1387, 1469, 28, 5, 0, 'Not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1388, 1476, 8, 3, 0, '12K  for Rec', 13, '2020-10-24 01:58:20', 1),
(1389, 1436, 8, 2, 0, 'to confirm joining', 13, '2020-10-24 02:02:02', 1),
(1390, 1490, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1391, 1491, 14, 5, 1, 'not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(1392, 1492, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1393, 1488, 8, 3, 0, '10k for Priyanka team', 14, '2020-10-24 02:59:10', 1),
(1394, 1499, 13, 5, 2, 'NOT FIT FOR TELESALES', 50, '0000-00-00 00:00:00', 1),
(1395, 1500, 13, 5, 1, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(1396, 1502, 13, 9, 5, 'refer to rE', 50, '0000-00-00 00:00:00', 1),
(1397, 1502, 8, 4, 0, 'Check for RE\n', 13, '2020-10-26 12:34:07', 1),
(1398, 1501, 14, 4, 4, 'need to confirm salary', 50, '0000-00-00 00:00:00', 1),
(1399, 1503, 14, 5, 0, 'looking for data entry not fit for voice', 50, '0000-00-00 00:00:00', 1),
(1400, 1502, 16, 5, 0, 'No communication ,sustain doubt', 8, '2020-10-26 01:03:02', 1),
(1401, 1506, 14, 9, 0, 'expecting high salary need to check rm profile', 50, '0000-00-00 00:00:00', 1),
(1402, 1507, 27, 7, 0, 'Shortlisted. we can offer 8k as a Take home.  After 3 months we will give 10k as a take home per month based on the performance.', 7, '0000-00-00 00:00:00', 1),
(1403, 1509, 27, 7, 0, 'Shortlisted. we can offer 8k. ', 7, '0000-00-00 00:00:00', 1),
(1404, 1508, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1405, 1325, 28, 9, 0, 'CRM Interest', 50, '0000-00-00 00:00:00', 1),
(1406, 1513, 14, 5, 0, 'looking for data entry not suitable for sales', 50, '0000-00-00 00:00:00', 1),
(1407, 1485, 14, 5, 0, 'looking for non voice process not suitable for sales', 50, '0000-00-00 00:00:00', 1),
(1408, 1505, 8, 2, 0, 'for next round by tomorrow', 50, '0000-00-00 00:00:00', 1),
(1409, 1325, 8, 4, 0, 'Check for CRM', 28, '2020-10-26 03:35:25', 1),
(1410, 1325, 14, 5, 0, 'not fit for this profile', 8, '2020-10-26 04:18:46', 1),
(1411, 1262, 8, 5, 0, 'told him to attend interview and he not turned back', 8, '2020-10-26 04:36:17', 1),
(1412, 781, 8, 5, 0, 'she will not join bcoz of salary split up', 8, '2020-10-26 04:37:32', 1),
(1413, 257, 8, 5, 0, 'not turned back after her exams.', 8, '2020-10-26 04:38:12', 1),
(1414, 1115, 8, 5, 0, 'no response from her', 8, '2020-10-26 04:39:10', 1),
(1415, 1507, 8, 3, 0, '8K take home', 27, '2020-10-26 04:50:52', 1),
(1416, 1509, 8, 3, 0, '8K take home', 27, '2020-10-26 04:51:46', 1),
(1417, 1518, 19, 5, 1, 'no longer sustain', 7, '0000-00-00 00:00:00', 1),
(1418, 1534, 21, 5, 2, 'Not Sustain Bcz She Need Non Voice  Job..xxamp also come with her friend only', 7, '0000-00-00 00:00:00', 1),
(1419, 1533, 21, 5, 3, 'She Ill Come With Her Friend Only', 7, '0000-00-00 00:00:00', 1),
(1420, 1514, 20, 5, 1, 'not suitable for any voice process.', 7, '0000-00-00 00:00:00', 1),
(1421, 1536, 53, 5, 0, 'fresher exp high package she said there is no negosiable', 7, '0000-00-00 00:00:00', 1),
(1422, 1506, 8, 3, 0, '25K for Lokesh team', 14, '2020-10-27 11:00:43', 1),
(1423, 1501, 8, 5, 0, 'will not sustain ', 14, '2020-10-27 11:03:17', 1),
(1424, 1458, 20, 5, 0, 'absconded after 1st round', 20, '2020-10-27 11:08:17', 1),
(1425, 1510, 16, 4, 3, 'Good  candidate,sustain no doubt salary expected 13k', 7, '0000-00-00 00:00:00', 1),
(1426, 1538, 19, 7, 4, 'salary 14k', 7, '0000-00-00 00:00:00', 1),
(1427, 1539, 57, 5, 0, 'sustainability and sales ... not good', 7, '0000-00-00 00:00:00', 1),
(1428, 1540, 21, 5, 0, 'long distance ,she is from kundrathur,already worked accountent 3 months ...', 7, '0000-00-00 00:00:00', 1),
(1429, 1542, 57, 4, 4, 'ok for sales ... ', 7, '0000-00-00 00:00:00', 1),
(1430, 1521, 21, 7, 4, 'ok once need to check sustainability ...', 7, '0000-00-00 00:00:00', 1),
(1431, 1541, 19, 5, 1, 'ot fit for sales', 7, '0000-00-00 00:00:00', 1),
(1432, 1287, 28, 5, 0, 'She is Not Strong In basic Php', 7, '0000-00-00 00:00:00', 1),
(1433, 1465, 53, 5, 0, 'she know basics oluy', 7, '0000-00-00 00:00:00', 1),
(1434, 1511, 19, 5, 1, 'not fit for sales', 7, '0000-00-00 00:00:00', 1),
(1435, 1516, 57, 5, 0, 'he is not ok for sales and voice process', 7, '0000-00-00 00:00:00', 1),
(1436, 1544, 19, 5, 1, 'not fit for sales', 7, '0000-00-00 00:00:00', 1),
(1437, 1521, 8, 3, 0, '10K for Dhivya team', 21, '2020-10-27 12:31:21', 1),
(1438, 1542, 8, 3, 0, '13K for syed team', 57, '2020-10-27 01:09:12', 1),
(1439, 1538, 8, 3, 0, '14K for Kannan team', 19, '2020-10-27 01:15:34', 1),
(1440, 1546, 21, 9, 0, 'RE  profile   given to daniel balaji', 7, '0000-00-00 00:00:00', 1),
(1441, 1537, 38, 5, 2, 'he wil not suit for CRM profile', 50, '0000-00-00 00:00:00', 1),
(1442, 1510, 8, 5, 0, 'he got better offer will not join', 16, '2020-10-27 02:44:37', 1),
(1443, 1547, 21, 8, 0, 'canditate gone', 7, '0000-00-00 00:00:00', 1),
(1444, 1546, 8, 4, 0, 'check for RE', 21, '2020-10-27 04:36:56', 1),
(1445, 1556, 53, 5, 0, 'nt suit fr hr', 7, '0000-00-00 00:00:00', 1),
(1446, 1568, 21, 5, 3, 'not bold low confidence, no flow in words', 7, '0000-00-00 00:00:00', 1),
(1447, 1558, 21, 5, 0, 'not interested in field , ok for crm but he is expecting 18 k ', 7, '0000-00-00 00:00:00', 1),
(1448, 1574, 21, 5, 2, 'he is interested in data entry ', 7, '0000-00-00 00:00:00', 1),
(1449, 1550, 8, 2, 0, 'he need to confirm', 7, '0000-00-00 00:00:00', 1),
(1450, 1559, 8, 4, 3, 'Check for CRM', 7, '0000-00-00 00:00:00', 1),
(1451, 1582, 8, 4, 0, 'reassigned', 7, '0000-00-00 00:00:00', 1),
(1452, 1554, 8, 4, 0, 'check for HR', 7, '0000-00-00 00:00:00', 1),
(1453, 1249, 8, 4, 3, 'Check for RE', 7, '0000-00-00 00:00:00', 1),
(1454, 1566, 8, 2, 0, 'Going to get married by nov. need to discuss about bond.', 7, '0000-00-00 00:00:00', 1),
(1455, 1548, 19, 5, 1, 'not fit for sales', 7, '0000-00-00 00:00:00', 1),
(1456, 1581, 20, 5, 1, 'not fit, doubt in sustainability', 7, '0000-00-00 00:00:00', 1),
(1457, 1523, 57, 5, 1, 'communication and sustainability level worst ', 7, '0000-00-00 00:00:00', 1),
(1458, 1580, 21, 5, 2, 'perungaluthur long distance also not suit for our process', 7, '0000-00-00 00:00:00', 1),
(1459, 1578, 21, 7, 3, 'ok selected , need to confirm joining ', 7, '0000-00-00 00:00:00', 1),
(1460, 1545, 24, 5, 1, 'Not Fit For Sales Field ', 7, '0000-00-00 00:00:00', 1),
(1461, 1517, 24, 5, 0, 'no  bike and also long distance so not suitable for CRM and RE', 7, '0000-00-00 00:00:00', 1),
(1462, 1050, 53, 5, 0, 'did system round but sustainability issue.', 53, '2020-10-28 12:59:16', 1),
(1463, 1099, 53, 5, 0, 'gvn task, but not truned up.', 53, '2020-10-28 01:00:09', 1),
(1464, 1107, 53, 5, 0, 'sustainability issue', 53, '2020-10-28 01:01:27', 1),
(1465, 1577, 21, 7, 3, 'need to confirm salary ', 7, '0000-00-00 00:00:00', 1),
(1466, 1520, 21, 5, 3, 'he is interested  international voice ', 7, '0000-00-00 00:00:00', 1),
(1467, 1249, 20, 5, 1, 'voice and communication not good', 8, '2020-10-28 02:37:49', 1),
(1468, 1578, 8, 3, 0, '10K for Dhivya team', 21, '2020-10-28 03:53:38', 1),
(1469, 1577, 8, 3, 0, '14K for dhivya team', 21, '2020-10-28 04:00:48', 1),
(1470, 1582, 53, 5, 0, 'exp high sal', 8, '2020-10-28 05:35:56', 1),
(1471, 1559, 21, 5, 0, 'he is interested in customer support process. not for sales ..', 8, '2020-10-28 05:38:11', 1),
(1472, 1554, 53, 5, 0, 'fresher bt exp high sal', 8, '2020-10-28 05:38:45', 1),
(1473, 1505, 8, 3, 0, '21292 as take home for MIS', 8, '2020-10-28 05:45:01', 1),
(1474, 1598, 28, 5, 0, 'He is not strong in basic skills', 7, '0000-00-00 00:00:00', 1),
(1475, 1585, 16, 5, 0, 'no communication skills ,low profile', 7, '0000-00-00 00:00:00', 1),
(1476, 1601, 20, 5, 0, 'did not attend. candidate is missing.', 7, '0000-00-00 00:00:00', 1),
(1477, 1588, 21, 5, 0, 'she is not interested in long term ,just time being only ...', 7, '0000-00-00 00:00:00', 1),
(1478, 1597, 8, 5, 0, 'will not suite for rec profile and no comm. and idea about the profile.', 7, '0000-00-00 00:00:00', 1),
(1479, 1600, 51, 5, 2, 'HE IS LOOKING FOR NON SALES JOBS', 7, '0000-00-00 00:00:00', 1),
(1480, 1603, 38, 5, 2, 'he will not suit for CRM', 7, '0000-00-00 00:00:00', 1),
(1481, 1604, 38, 5, 2, 'he will not suite for sales', 7, '0000-00-00 00:00:00', 1),
(1482, 1605, 21, 5, 3, 'long distance 2 hrs travel', 7, '0000-00-00 00:00:00', 1),
(1483, 1618, 20, 5, 2, 'sustainability.', 7, '0000-00-00 00:00:00', 1),
(1484, 1615, 24, 5, 1, 'not suitable for profile..', 7, '0000-00-00 00:00:00', 1),
(1485, 1592, 19, 7, 4, 'Salary 16k', 7, '0000-00-00 00:00:00', 1),
(1486, 1619, 8, 5, 0, '7 yrs exp as accountant exe.  completely i to billing and data enter. profile will not match for MIS exe.No knowledge in Macros and Spreadsheets.', 7, '0000-00-00 00:00:00', 1),
(1487, 1596, 51, 9, 3, 'moved for nxt round', 7, '0000-00-00 00:00:00', 1),
(1488, 1583, 20, 5, 1, 'looking for job Temporarily, plans to start own business, also studying graphic designing for carrier option.', 7, '0000-00-00 00:00:00', 1),
(1489, 1620, 24, 7, 0, 'candidate selected..', 7, '0000-00-00 00:00:00', 1),
(1490, 1622, 16, 5, 0, 'no communication skills ,low profile', 7, '0000-00-00 00:00:00', 1),
(1491, 1621, 19, 5, 1, 'not fit for sales', 7, '0000-00-00 00:00:00', 1),
(1492, 1590, 20, 5, 1, 'communication not good enough and doesnxquott know to drive bikes.', 7, '0000-00-00 00:00:00', 1),
(1493, 1592, 8, 3, 0, '16K for Kannan team', 19, '2020-10-30 02:42:37', 1),
(1494, 1626, 21, 5, 0, 'he is interested in data entry xxamp not  interested in pressured  job', 7, '0000-00-00 00:00:00', 1),
(1495, 1620, 8, 3, 0, '13K for Suthagar team', 24, '2020-10-30 03:44:00', 1),
(1496, 1596, 29, 8, 0, 'wrongly mapped to me', 51, '2020-10-30 03:56:53', 1),
(1497, 1627, 21, 5, 0, 'he is expecting  20k for crm,also not sustain long term ..not suitable  for our process', 7, '0000-00-00 00:00:00', 1),
(1498, 1640, 8, 2, 0, 'She Need To Discuss With Family And Update On Monday. exp is 15K', 7, '0000-00-00 00:00:00', 1),
(1499, 1629, 8, 2, 0, 'she need to discuss with family and update on monday', 7, '0000-00-00 00:00:00', 1),
(1500, 1642, 8, 5, 0, 'Very low voice and salary exo is 20+ ', 7, '0000-00-00 00:00:00', 1),
(1501, 1632, 8, 5, 0, 'not speaking up and will not suite for rec profile.', 7, '0000-00-00 00:00:00', 1),
(1502, 1637, 8, 5, 0, 'from hectadata, no comm and Doesnxquott have previous org analysis', 7, '0000-00-00 00:00:00', 1),
(1503, 1641, 8, 3, 0, '10K for dhivya team', 7, '0000-00-00 00:00:00', 1),
(1504, 1648, 56, 7, 3, 'confirm this candidate xxamp joining by 04-11-2020', 50, '0000-00-00 00:00:00', 1),
(1505, 1644, 16, 5, 0, 'Sustain doubt', 7, '0000-00-00 00:00:00', 1),
(1506, 1631, 8, 5, 0, 'From Hectadata, No Comm And Doesnxquott Have Previous Org Analysis. and doesnt know her rxxampR.', 7, '0000-00-00 00:00:00', 1),
(1507, 1636, 8, 5, 0, 'not speaking up and poor comm.', 7, '0000-00-00 00:00:00', 1),
(1508, 1641, 21, 7, 4, 'ok selected', 8, '2020-10-31 01:48:32', 1),
(1509, 1190, 8, 2, 0, 'She Need To Discuss With Family And Update On Monday. Exp Is 2.5L', 7, '0000-00-00 00:00:00', 1),
(1510, 1641, 8, 3, 0, '10K for dhivya team', 21, '2020-10-31 03:40:54', 1),
(1511, 1655, 53, 4, 0, 'average communication, but good calling pitch. selected for second round', 50, '0000-00-00 00:00:00', 1),
(1512, 1591, 31, 5, 0, 'dont have sales experience', 50, '0000-00-00 00:00:00', 1),
(1513, 1668, 13, 9, 0, 're-assin to divya', 50, '0000-00-00 00:00:00', 1),
(1514, 1237, 53, 4, 0, 'Reassigned', 50, '0000-00-00 00:00:00', 1),
(1515, 1659, 53, 4, 0, 'Average profile only, pls check fr HR', 50, '0000-00-00 00:00:00', 1),
(1516, 1614, 53, 4, 0, 'Reassinged', 50, '0000-00-00 00:00:00', 1),
(1517, 1665, 53, 4, 0, 'Reassigned', 50, '0000-00-00 00:00:00', 1),
(1518, 1633, 53, 4, 0, 'Reassigned', 50, '0000-00-00 00:00:00', 1),
(1519, 1671, 24, 7, 0, 'candidate selected', 50, '0000-00-00 00:00:00', 1),
(1520, 1668, 21, 7, 0, 'ok selected', 13, '2020-11-02 11:39:20', 1),
(1521, 1646, 28, 5, 0, 'She is not so much skill in php', 50, '0000-00-00 00:00:00', 1),
(1522, 1666, 8, 5, 0, 'Profile Will Not Match For \nHR, No Relevant Exp And Exp Sal Is 15K+', 50, '0000-00-00 00:00:00', 1),
(1523, 1267, 53, 5, 0, 'completed the mis task for two members comparing to him mohamed hve macros better knowledge and better communication', 53, '2020-11-02 11:51:06', 1),
(1524, 1655, 8, 2, 0, 'she need to confirm', 53, '2020-11-02 11:57:37', 1),
(1525, 1659, 8, 5, 0, 'fresher and no idea about the profile and no knowledge. ', 53, '2020-11-02 11:58:33', 1),
(1526, 1614, 8, 5, 0, 'no comm, and not speaking up, will not suite for HR', 53, '2020-11-02 11:59:33', 1),
(1527, 1633, 8, 5, 0, 'Profile Will Not Match For \nHR,  avg comm. ', 53, '2020-11-02 12:00:27', 1),
(1528, 1665, 8, 5, 0, 'Profile Will Not Match For \nHR, No Relevant Exp And Exp Sal Is 15K+', 53, '2020-11-02 12:00:45', 1),
(1529, 1676, 8, 5, 0, 'profile will not match for \nHR, no relevant exp and exp sal is 15K+', 50, '0000-00-00 00:00:00', 1),
(1530, 1616, 8, 5, 0, 'not speaking up, no Relevant exp and will not suite for HR', 50, '0000-00-00 00:00:00', 1),
(1531, 1667, 21, 7, 4, 'ok selected', 50, '0000-00-00 00:00:00', 1),
(1532, 1237, 8, 2, 0, 'need to discuss with her family.', 53, '2020-11-02 12:02:39', 1),
(1533, 842, 28, 8, 0, 'He is not attend the interview.', 50, '0000-00-00 00:00:00', 1),
(1534, 1652, 28, 9, 0, 'He is interest in sales.', 50, '0000-00-00 00:00:00', 1),
(1535, 1657, 24, 5, 0, 'not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(1536, 1638, 24, 2, 0, 'not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(1537, 1677, 21, 7, 3, 'ok selected', 50, '0000-00-00 00:00:00', 1),
(1538, 1652, 8, 8, 0, 'left before interview', 28, '2020-11-02 02:26:16', 1),
(1539, 880, 28, 5, 0, 'He Struggle In Basic Frontend Validation Jquery Or Javascript. Not coming next time interview Schedule time', 28, '2020-11-02 02:30:36', 1),
(1540, 1143, 28, 5, 0, 'He Struggle In Basic Skill sets. Not Coming Next Time Interview Schedule ', 28, '2020-11-02 02:31:22', 1),
(1541, 1149, 28, 5, 0, 'He Struggle In Basic Skill Sets. Not Coming Next Time Interview Schedule ', 28, '2020-11-02 02:31:35', 1),
(1542, 1208, 28, 5, 0, 'He Struggle In Basic Skill Sets. Not Coming Next Time Interview Schedule ', 28, '2020-11-02 02:31:47', 1),
(1543, 1210, 28, 5, 0, 'He Struggle In Basic Skill Sets. Not Coming Next Time Interview Schedule ', 28, '2020-11-02 02:31:55', 1),
(1544, 1651, 24, 4, 0, 'selected', 50, '0000-00-00 00:00:00', 1),
(1545, 1671, 8, 3, 0, '18K for Suthagar team', 24, '2020-11-02 04:56:23', 1),
(1546, 1667, 8, 3, 0, '10k for Dhivya team', 21, '2020-11-02 06:03:35', 1),
(1547, 1677, 8, 3, 0, '11k for dhivya team', 21, '2020-11-02 06:06:33', 1),
(1548, 1651, 8, 4, 0, 'check for RE', 24, '2020-11-02 06:24:07', 1),
(1549, 1651, 20, 5, 1, 'not fit,, interview by sudhakar', 8, '2020-11-02 06:25:06', 1),
(1550, 1638, 20, 7, 0, 'forwarded to HR For salary Discussion and final round', 24, '2020-11-03 10:44:40', 1),
(1551, 1638, 24, 4, 0, 'selected', 24, '2020-11-03 10:44:40', 1),
(1552, 1638, 8, 3, 0, '15K for re Srikanth team', 20, '2020-11-03 10:47:21', 1),
(1553, 1673, 53, 4, 0, 'sal 15k gud communication', 7, '0000-00-00 00:00:00', 1),
(1554, 1693, 19, 5, 1, 'looking for Crm', 7, '0000-00-00 00:00:00', 1),
(1555, 1678, 53, 2, 0, 'gud communication but thinking for 1 yr aggrement', 7, '0000-00-00 00:00:00', 1),
(1556, 1674, 28, 9, 0, 'She is interest in tellecaller. Not Strong in Basic Skill set.', 7, '0000-00-00 00:00:00', 1),
(1557, 1689, 21, 5, 0, '18k above sal exp , for crm...', 7, '0000-00-00 00:00:00', 1),
(1558, 1695, 21, 5, 0, 'pronounciation problem , no flow in words', 7, '0000-00-00 00:00:00', 1),
(1559, 1669, 53, 5, 2, 'He know basics but expecting 25k gross', 7, '0000-00-00 00:00:00', 1),
(1560, 1674, 8, 4, 0, 'Check for crm', 28, '2020-11-03 12:03:33', 1),
(1561, 1674, 21, 5, 0, 'she already have offer in tech mahindra flipcart process 16 salary..', 8, '2020-11-03 12:05:02', 1),
(1562, 1683, 53, 5, 0, 'he know oly windows but expecting high sal', 7, '0000-00-00 00:00:00', 1),
(1563, 360, 53, 5, 0, 'long distance', 7, '0000-00-00 00:00:00', 1),
(1564, 1696, 8, 5, 0, 'his pronunciation is not good and will not suite for rec.', 7, '0000-00-00 00:00:00', 1),
(1565, 1698, 8, 2, 0, 'need to discuss with family', 7, '0000-00-00 00:00:00', 1),
(1566, 1697, 8, 2, 0, 'by gokul', 7, '0000-00-00 00:00:00', 1),
(1567, 1688, 53, 4, 0, 'rescheduled', 7, '0000-00-00 00:00:00', 1),
(1568, 1694, 28, 4, 0, 'She is good Knowledge in Php.', 7, '0000-00-00 00:00:00', 1),
(1569, 1670, 21, 5, 3, 'Not Sustain Because She Already Have Offer In Tech Mahindra  16 K Salary..', 7, '0000-00-00 00:00:00', 1),
(1570, 347, 8, 4, 3, 'check for RE', 7, '0000-00-00 00:00:00', 1),
(1571, 1694, 27, 2, 0, 'Task Incomplete due to less time. if she is ready to come again we can Reschedule again.', 28, '2020-11-03 02:45:53', 1),
(1572, 347, 24, 5, 0, 'not fit for RE', 8, '2020-11-03 02:49:41', 1),
(1573, 1697, 54, 4, 3, 'hold the candidate for next four days if suppose not found, we can process the same candidate', 8, '2020-11-03 03:12:50', 1),
(1574, 1668, 8, 2, 0, 'to confirm joining', 21, '2020-11-03 03:22:42', 1),
(1575, 1708, 19, 5, 1, 'not fit for sale', 7, '0000-00-00 00:00:00', 1),
(1576, 1673, 8, 2, 0, 'need to confirm', 53, '2020-11-04 11:44:21', 1),
(1577, 1688, 8, 2, 0, 'will not suite', 53, '2020-11-04 11:50:46', 1),
(1578, 1697, 8, 2, 0, 'by gokul', 54, '2020-11-04 12:02:24', 1),
(1579, 1303, 27, 5, 0, 'Task Incompleted and there is no response from him.', 27, '2020-11-04 12:02:42', 1),
(1580, 1715, 21, 5, 0, 'already rejected candidate', 7, '0000-00-00 00:00:00', 1),
(1581, 1714, 19, 7, 4, 'Salary 17k', 7, '0000-00-00 00:00:00', 1),
(1582, 1716, 36, 7, 3, 'Selected for RM', 7, '0000-00-00 00:00:00', 1),
(1583, 1718, 28, 5, 0, 'Not strong in Basic Php skills', 7, '0000-00-00 00:00:00', 1),
(1584, 1713, 57, 5, 0, 'he is not good for sales .. voice is not clear ', 7, '0000-00-00 00:00:00', 1),
(1585, 1688, 8, 5, 0, 'will not suite for REc, her reason for relieving is not convincing.', 8, '2020-11-04 02:00:01', 1),
(1586, 1190, 8, 5, 0, 'not okay with our terms and conditions', 8, '2020-11-04 02:01:21', 1),
(1587, 1237, 8, 5, 0, 'Not Okay With Our Terms And Conditions. ', 8, '2020-11-04 02:02:54', 1),
(1588, 1244, 8, 5, 0, 'will not suite for rec. not completely in to rec. exp sal is high', 8, '2020-11-04 02:03:49', 1),
(1589, 1307, 8, 5, 0, 'no job need and will not suite for cafs', 8, '2020-11-04 02:05:13', 1),
(1590, 1321, 8, 5, 0, 'exp sal is 20+ and with one year exp', 8, '2020-11-04 02:05:47', 1),
(1591, 1354, 8, 5, 0, 'will not sustain, left previous 2 org due to Personal issues.', 8, '2020-11-04 02:07:23', 1),
(1592, 1550, 8, 5, 0, 'no response', 8, '2020-11-04 02:08:20', 1),
(1593, 1566, 8, 5, 0, 'No response', 8, '2020-11-04 02:08:45', 1),
(1594, 1629, 8, 3, 0, '12K for REC', 8, '2020-11-04 02:10:27', 1),
(1595, 1655, 8, 5, 0, 'Not Okay With Our Terms And Conditions', 8, '2020-11-04 02:10:42', 1),
(1596, 1698, 8, 3, 0, '12K for rec', 8, '2020-11-04 02:11:19', 1),
(1597, 1687, 38, 7, 3, 'confirm her salary 22k and joining', 50, '0000-00-00 00:00:00', 1),
(1598, 1720, 39, 7, 3, 'candidate ok for me. confirm salary joining  by your end', 50, '0000-00-00 00:00:00', 1),
(1599, 1721, 21, 5, 0, 'he worked at hotel industry .. he is not sui ', 50, '0000-00-00 00:00:00', 1),
(1600, 1714, 8, 3, 0, '17K for kannan team', 19, '2020-11-04 03:04:58', 1),
(1601, 469, 38, 5, 0, 'will not suit for our field', 38, '2020-11-04 03:06:04', 1),
(1602, 596, 38, 5, 0, 'will not suit for sales', 38, '2020-11-04 03:06:49', 1),
(1603, 1002, 38, 5, 0, 'she will handle pressure and will not suit for our field', 38, '2020-11-04 03:08:01', 1),
(1604, 1088, 38, 5, 0, 'kannada language problem for her and she will not suit for this kannada calling process', 38, '2020-11-04 03:08:58', 1),
(1605, 1687, 8, 3, 0, '22K for Sathish team', 38, '2020-11-04 03:21:05', 1),
(1606, 1675, 51, 5, 2, 'rejected', 50, '0000-00-00 00:00:00', 1),
(1607, 1720, 8, 2, 0, 'not picking up the call\n', 39, '2020-11-04 04:16:51', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(1608, 1648, 8, 3, 0, '17k for Manivel team', 56, '2020-11-04 05:41:08', 1),
(1609, 801, 14, 5, 0, 'not  interested to this profile', 14, '2020-11-04 05:41:36', 1),
(1610, 806, 14, 5, 0, 'not interested to this profile', 14, '2020-11-04 05:42:25', 1),
(1611, 844, 24, 5, 0, 'not suitable for our profile', 24, '2020-11-04 05:58:14', 1),
(1612, 22, 25, 5, 0, 'not fit for this profile', 25, '2020-11-05 10:15:24', 1),
(1613, 1726, 53, 7, 0, 'selected. need time for bond, Sal  13700 CTC', 50, '0000-00-00 00:00:00', 1),
(1614, 1717, 27, 5, 0, 'Task Incompleted.', 50, '0000-00-00 00:00:00', 1),
(1615, 1719, 53, 7, 0, 'She s ok with bond, Sal 13k CTC,  based on performnace sal hike wll be after 6 month, hold , she can join after diwali only', 50, '0000-00-00 00:00:00', 1),
(1616, 1739, 44, 8, 0, 'Please check with him', 50, '0000-00-00 00:00:00', 1),
(1617, 1725, 53, 7, 0, 'Selected. DOJ  9 nov 20. sal CTC 14k. Patroniss', 50, '0000-00-00 00:00:00', 1),
(1618, 1729, 53, 5, 0, 'No relevant experience, but expected 30k', 50, '0000-00-00 00:00:00', 1),
(1619, 1744, 20, 2, 4, 'have to conduct telephonic interview to Analyze voice clarity.', 50, '0000-00-00 00:00:00', 1),
(1620, 1748, 14, 5, 0, 'looking for non voice or data entry .not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1621, 1746, 14, 5, 1, 'not fit for voice process', 50, '0000-00-00 00:00:00', 1),
(1622, 1725, 8, 5, 0, 'not okay with bond', 53, '2020-11-05 02:26:06', 1),
(1623, 772, 54, 5, 0, 'she is not Interested\n', 54, '2020-11-05 02:29:09', 1),
(1624, 1039, 54, 8, 0, 'not Attended', 54, '2020-11-05 02:32:24', 1),
(1625, 1045, 54, 8, 0, 'not Attended\n', 54, '2020-11-05 02:33:03', 1),
(1626, 1046, 54, 8, 0, 'not attended', 54, '2020-11-05 02:33:29', 1),
(1627, 1080, 54, 8, 0, 'not attended\n', 54, '2020-11-05 02:34:16', 1),
(1628, 1086, 54, 8, 0, 'not Attended', 54, '2020-11-05 02:34:49', 1),
(1629, 1102, 54, 8, 0, 'not attented', 54, '2020-11-05 02:36:44', 1),
(1630, 1094, 54, 8, 0, 'not attended', 54, '2020-11-05 02:37:04', 1),
(1631, 1726, 8, 5, 0, 'will not join long distance.', 53, '2020-11-05 02:42:52', 1),
(1632, 1719, 8, 5, 0, 'will not join bcoz of bond', 53, '2020-11-05 02:44:55', 1),
(1633, 184, 17, 5, 0, 'He did  not camed again', 17, '2020-11-05 04:16:45', 1),
(1634, 1716, 8, 3, 0, '21.5K for lokesh team', 36, '2020-11-06 12:33:08', 1),
(1635, 1743, 53, 5, 0, 'Lake of communication, no confidence on speech', 50, '0000-00-00 00:00:00', 1),
(1636, 1761, 53, 5, 0, 'not suit for our expectation', 50, '0000-00-00 00:00:00', 1),
(1637, 1751, 53, 7, 0, 'CTC 14.5k, TK 13775, DOJ 9 nov 20.. Bangalore Recruiter', 50, '0000-00-00 00:00:00', 1),
(1638, 1741, 53, 2, 0, 'Ok only. but need to think for bond', 50, '0000-00-00 00:00:00', 1),
(1639, 1765, 21, 7, 4, 'ok selected for crm (10.5 k) salary ..need to confirm salary xxamp joining', 50, '0000-00-00 00:00:00', 1),
(1640, 1766, 13, 5, 1, 'ok but long distance', 50, '0000-00-00 00:00:00', 1),
(1641, 1756, 53, 5, 0, 'Not fir for this profile', 50, '0000-00-00 00:00:00', 1),
(1642, 1755, 44, 4, 4, 'Good candidate and ok for me , need  your suggestion', 50, '0000-00-00 00:00:00', 1),
(1643, 1740, 16, 9, 0, 'hold for rM,good cominication skills', 50, '0000-00-00 00:00:00', 1),
(1644, 1732, 53, 4, 0, 'Rescheduled to arun', 50, '0000-00-00 00:00:00', 1),
(1645, 1740, 41, 9, 0, 'Kindly check for CRM', 16, '2020-11-06 12:40:57', 1),
(1646, 1740, 31, 9, 0, 'check for CRM / RE', 41, '2020-11-06 12:47:42', 1),
(1647, 1770, 19, 9, 4, 'he is fit for RM', 50, '0000-00-00 00:00:00', 1),
(1648, 1734, 53, 7, 0, 'CTC 19k TH 18050, doj  after diwali she wants to cnfrm her joining nd sal', 50, '0000-00-00 00:00:00', 1),
(1649, 1757, 53, 5, 0, 'sustainability issue, 4yrs gap, UG, 21k demanding', 50, '0000-00-00 00:00:00', 1),
(1650, 1776, 20, 4, 4, 'forwarded to kannan for 2nd round', 50, '0000-00-00 00:00:00', 1),
(1651, 1768, 53, 5, 0, 'gud communication, not o wit bond', 50, '0000-00-00 00:00:00', 1),
(1652, 1758, 53, 5, 0, 'no relevant experience', 50, '0000-00-00 00:00:00', 1),
(1653, 1764, 14, 5, 1, 'Already working in non voice process only and not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1654, 1736, 53, 5, 0, 'fresher,  not fir for recruiter', 50, '0000-00-00 00:00:00', 1),
(1655, 1755, 29, 8, 0, 'i have not met, dropped candidate ', 44, '2020-11-06 01:35:10', 1),
(1656, 1775, 53, 5, 0, 'sustainability issue', 50, '0000-00-00 00:00:00', 1),
(1657, 1694, 27, 5, 0, 'Interview Task Incompleted. ', 27, '2020-11-06 02:49:14', 1),
(1658, 1776, 19, 5, 1, 'not even try to convince', 20, '2020-11-06 03:47:52', 1),
(1659, 1734, 8, 2, 0, 'for next batch, and sal exp is 18K', 53, '2020-11-06 04:43:40', 1),
(1660, 1741, 53, 5, 0, 'he s thnking for bond', 53, '2020-11-06 05:09:42', 1),
(1661, 1751, 8, 3, 0, '12K for rec', 53, '2020-11-06 05:11:52', 1),
(1662, 1765, 8, 3, 0, '10.5K for dhivya team', 21, '2020-11-06 05:44:41', 1),
(1663, 1740, 41, 9, 0, 'Kindly check for CRM', 31, '2020-11-06 05:47:19', 1),
(1664, 1770, 41, 9, 0, 'Interviewed by Kannan Check for RM', 19, '2020-11-06 05:52:47', 1),
(1665, 1740, 21, 5, 0, 'expecting 18 k for crm', 41, '2020-11-06 05:55:13', 1),
(1666, 1770, 31, 7, 4, 'Candidate okay.   Salary part needs to clarify with HR', 41, '2020-11-06 05:55:40', 1),
(1667, 1227, 8, 5, 0, 'wrongly updated. candidate is not selected.', 31, '2020-11-06 05:59:39', 1),
(1668, 1770, 8, 2, 0, 'not picking up the call no response from him', 31, '2020-11-06 06:26:13', 1),
(1669, 1778, 8, 5, 0, 'salary exp is high and will not sustain .', 50, '0000-00-00 00:00:00', 1),
(1670, 1774, 8, 5, 0, 'no local lang and exp salary is 28K. fresher for HR', 50, '0000-00-00 00:00:00', 1),
(1671, 1794, 8, 5, 0, 'not okay with bond.', 50, '0000-00-00 00:00:00', 1),
(1672, 1782, 8, 2, 0, 'need to confirm.', 50, '0000-00-00 00:00:00', 1),
(1673, 1790, 8, 2, 0, 'need to confirm', 50, '0000-00-00 00:00:00', 1),
(1674, 1795, 44, 5, 1, 'He is Lic Agent and His mother also LIC Agent', 50, '0000-00-00 00:00:00', 1),
(1675, 1763, 8, 5, 0, 'SAlary exp is high and already holds 2 offer.', 50, '0000-00-00 00:00:00', 1),
(1676, 1797, 8, 5, 0, 'not speaking up and said dont know for more than 3 times in interview.', 50, '0000-00-00 00:00:00', 1),
(1677, 1798, 8, 9, 2, 'Check  with the profile.', 50, '0000-00-00 00:00:00', 1),
(1678, 1783, 59, 5, 0, 'Will not sustain, not ready for bond No communication', 50, '0000-00-00 00:00:00', 1),
(1679, 1800, 14, 7, 4, 'salary 10k .hold for joining ', 50, '0000-00-00 00:00:00', 1),
(1680, 1801, 14, 5, 1, 'not fit for sales', 50, '0000-00-00 00:00:00', 1),
(1681, 1785, 8, 2, 0, 'Need to discuss with family.', 50, '0000-00-00 00:00:00', 1),
(1682, 1802, 28, 9, 0, 'Not Suitable Php.  Sales experience try for rm/re', 50, '0000-00-00 00:00:00', 1),
(1683, 1799, 57, 5, 0, 'he is looking for part time job... just  now join for college', 50, '0000-00-00 00:00:00', 1),
(1684, 1777, 8, 2, 0, 'need to confirm with her husband.', 50, '0000-00-00 00:00:00', 1),
(1685, 1792, 59, 5, 0, 'Not ok for agreement', 50, '0000-00-00 00:00:00', 1),
(1686, 1737, 8, 5, 0, 'Exp salary is high and already holds 2 offer', 50, '0000-00-00 00:00:00', 1),
(1687, 1802, 8, 3, 0, '13.5K for thiyagu team', 28, '2020-11-07 01:37:31', 1),
(1688, 1780, 20, 5, 2, 'doesnt fiit for voice process', 50, '0000-00-00 00:00:00', 1),
(1689, 1786, 59, 4, 0, 'Good profile. communication is good. Ok for agreement', 50, '0000-00-00 00:00:00', 1),
(1690, 1804, 13, 5, 1, 'Sustainability	 less', 50, '0000-00-00 00:00:00', 1),
(1691, 1803, 13, 5, 1, 'not suitable for this filed', 50, '0000-00-00 00:00:00', 1),
(1692, 1759, 59, 5, 0, 'Not ready for bond. High CTC exp,60 days notice', 50, '0000-00-00 00:00:00', 1),
(1693, 1800, 8, 3, 0, '10K for Priyanka team', 14, '2020-11-07 03:13:24', 1),
(1694, 1781, 59, 5, 0, 'no Communication. No knowledge on the role', 7, '0000-00-00 00:00:00', 1),
(1695, 1798, 16, 5, 0, 'sustain doubt long distance', 8, '2020-11-07 03:49:53', 1),
(1696, 1767, 59, 5, 0, 'High CTC exp. Hold 1 offer', 7, '0000-00-00 00:00:00', 1),
(1697, 1802, 16, 7, 0, 'Selected for RE salary 13.5k', 8, '2020-11-07 04:10:46', 1),
(1698, 1786, 54, 5, 0, 'She worked end to end hr cycle but incomplete skill all vertical', 59, '2020-11-07 04:22:50', 1),
(1699, 1546, 22, 5, 0, 'voice bad', 8, '2020-11-07 04:32:03', 1),
(1700, 1419, 8, 5, 0, 'hold for Star and will not suite for CAFS', 8, '2020-11-07 04:44:43', 1),
(1701, 1449, 8, 5, 0, 'for cafs hold for star', 8, '2020-11-07 04:46:42', 1),
(1702, 1672, 8, 3, 0, '12K for rec', 7, '0000-00-00 00:00:00', 1),
(1703, 1802, 8, 3, 0, '13.5K for thiyagu team', 16, '2020-11-07 06:48:51', 1),
(1704, 1678, 8, 3, 0, '12k for rec', 53, '2020-11-08 07:50:18', 1),
(1705, 1678, 53, 7, 0, 'confirm joining', 53, '2020-11-08 07:50:18', 1),
(1706, 1782, 8, 3, 0, '13K for rec', 8, '2020-11-08 08:05:18', 1),
(1707, 1811, 13, 5, 2, 'Communication  poor', 50, '0000-00-00 00:00:00', 1),
(1708, 1813, 16, 5, 0, 'sustain doubt', 50, '0000-00-00 00:00:00', 1),
(1709, 1812, 57, 9, 0, 'he is not interest for field work', 50, '0000-00-00 00:00:00', 1),
(1710, 1812, 8, 4, 0, 'check for CRM\n', 57, '2020-11-09 11:50:52', 1),
(1711, 1744, 20, 5, 0, 'didnt respond for Telephonic interview', 20, '2020-11-09 12:01:22', 1),
(1712, 1807, 14, 5, 1, 'not suitable for voice process ', 50, '0000-00-00 00:00:00', 1),
(1713, 1816, 8, 5, 0, '6+ yr exp in rec. switched more than 6 company and xp is 20K.  in between worked as BDM.', 50, '0000-00-00 00:00:00', 1),
(1714, 1814, 28, 5, 0, 'Not Strong In basic Php', 50, '0000-00-00 00:00:00', 1),
(1715, 1812, 21, 5, 0, 'exp 16 k above for crm', 8, '2020-11-09 01:02:00', 1),
(1716, 1305, 8, 5, 0, 'no update from his end.', 8, '2020-11-09 01:16:37', 1),
(1717, 1640, 8, 5, 0, 'no response from her end', 8, '2020-11-09 01:41:14', 1),
(1718, 1796, 14, 5, 0, 'long distance 2 hour and not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(1719, 1817, 21, 7, 0, 'ok selected need to con firm  salary xxamp joining', 7, '0000-00-00 00:00:00', 1),
(1720, 1806, 8, 4, 3, 'currently freelancer, 18K and looking for 25K CTC', 50, '0000-00-00 00:00:00', 1),
(1721, 1806, 53, 2, 0, 'hold for telephonic round.  discus with gokul', 8, '2020-11-09 04:38:34', 1),
(1722, 1818, 28, 4, 0, 'Technically Strong in core php.', 7, '0000-00-00 00:00:00', 1),
(1723, 1826, 20, 7, 0, 'suitable for RE', 7, '0000-00-00 00:00:00', 1),
(1724, 1825, 20, 9, 0, 'try for RM', 7, '0000-00-00 00:00:00', 1),
(1725, 1818, 54, 5, 0, 'He is not ready to sign a service contract.', 28, '2020-11-10 11:20:21', 1),
(1726, 1825, 40, 4, 4, 'SEEMS LIKE PROFESSIONAL AND LONG RUNNER', 20, '2020-11-10 11:26:27', 1),
(1727, 1720, 8, 5, 0, 'no response', 8, '2020-11-10 11:34:52', 1),
(1728, 1828, 57, 5, 0, 'voice is not good', 7, '0000-00-00 00:00:00', 1),
(1729, 1820, 24, 2, 0, 'need to discuss with manager so meet balaji sir tmrw', 7, '0000-00-00 00:00:00', 1),
(1730, 1826, 8, 3, 0, '12K For Srikanth team', 20, '2020-11-10 11:46:02', 1),
(1731, 1829, 28, 5, 0, 'technically Not strong and Sustainability Issue.', 7, '0000-00-00 00:00:00', 1),
(1732, 1821, 54, 2, 0, 'the task is given waiting for his replay ', 7, '0000-00-00 00:00:00', 1),
(1733, 1825, 18, 7, 3, 'Selected as consultant. Can give salary upto 31K', 40, '2020-11-10 12:05:46', 1),
(1734, 1822, 54, 2, 0, 'the task is given waiting for his reply.', 7, '0000-00-00 00:00:00', 1),
(1735, 1815, 53, 5, 0, 'not suit for  admin', 7, '0000-00-00 00:00:00', 1),
(1736, 1827, 20, 5, 0, 'doesnxquott know tamil or english', 7, '0000-00-00 00:00:00', 1),
(1737, 1831, 16, 5, 0, 'low profile,no communication skill', 7, '0000-00-00 00:00:00', 1),
(1738, 1832, 21, 5, 0, 'expecting high salary for crm,16000', 7, '0000-00-00 00:00:00', 1),
(1739, 1830, 24, 5, 0, 'NOT QUALIFIED FOR TELECALLING', 7, '0000-00-00 00:00:00', 1),
(1740, 1819, 31, 9, 0, 'Interested in sales.  interested in health ins.', 7, '0000-00-00 00:00:00', 1),
(1741, 1825, 8, 3, 0, 'for lokesh team as consultant RM', 18, '2020-11-10 01:43:33', 1),
(1742, 1835, 21, 5, 0, 'expecting 16 k above for crm', 7, '0000-00-00 00:00:00', 1),
(1743, 1817, 8, 3, 0, 'For Dhivya team', 21, '2020-11-10 06:32:08', 1),
(1744, 1819, 8, 3, 0, '14K CTC for Kannan team', 31, '2020-11-11 10:21:19', 1),
(1745, 1732, 59, 5, 0, 'Will not sustain for a long', 53, '2020-11-11 11:38:18', 1),
(1746, 1824, 28, 9, 0, 'Digital Marketing', 7, '0000-00-00 00:00:00', 1),
(1747, 1846, 21, 5, 0, 'she is interested in data entry job..', 7, '0000-00-00 00:00:00', 1),
(1748, 1839, 28, 4, 0, 'Good In basic skill set.', 7, '0000-00-00 00:00:00', 1),
(1749, 1820, 24, 5, 0, 'he organise part time coaching  class. so  hexquots rejected', 24, '2020-11-11 12:12:14', 1),
(1750, 1842, 57, 5, 0, 'voice is not good .. ', 7, '0000-00-00 00:00:00', 1),
(1751, 1838, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(1752, 1837, 28, 4, 0, 'Good in Basic skill set.', 7, '0000-00-00 00:00:00', 1),
(1753, 1841, 13, 5, 3, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1754, 1824, 8, 4, 0, 'For Digital Mktng.', 28, '2020-11-11 12:33:18', 1),
(1755, 1837, 54, 5, 0, 'He is having skills in Asp.net but not good in php.', 28, '2020-11-11 01:03:00', 1),
(1756, 1839, 54, 5, 0, 'System task not completed', 28, '2020-11-11 01:03:28', 1),
(1757, 1833, 28, 5, 0, 'Not Interest service bond. ', 7, '0000-00-00 00:00:00', 1),
(1758, 1824, 54, 2, 0, 'the task assigned to candidate.', 8, '2020-11-11 01:48:07', 1),
(1759, 1851, 57, 7, 0, 'candidate ok .. salary 17k ctc ', 7, '0000-00-00 00:00:00', 1),
(1760, 1854, 20, 5, 0, 'not fit for voice process', 7, '0000-00-00 00:00:00', 1),
(1761, 1853, 57, 5, 0, 'voice not good ', 7, '0000-00-00 00:00:00', 1),
(1762, 1851, 8, 3, 0, '17K for Syed team', 57, '2020-11-11 03:53:16', 1),
(1763, 1436, 8, 5, 0, 'not int to join', 8, '2020-11-11 03:53:22', 1),
(1764, 1734, 8, 5, 0, 'will not join, exp is 21 TH', 8, '2020-11-11 03:53:59', 1),
(1765, 1668, 8, 5, 0, 'no response will not join', 8, '2020-11-12 10:35:10', 1),
(1766, 1777, 8, 3, 0, '12K for rec', 8, '2020-11-12 10:37:17', 1),
(1767, 1844, 28, 4, 0, 'He is good in Php.', 50, '0000-00-00 00:00:00', 1),
(1768, 1850, 57, 7, 0, 'candidate ok .salary 14k ctc..', 50, '0000-00-00 00:00:00', 1),
(1769, 1819, 19, 7, 4, 'CTC - 17K TAKE HOME RS.16,150', 8, '2020-11-12 12:37:56', 1),
(1770, 1785, 8, 5, 0, 'no response. will not join', 8, '2020-11-12 12:38:40', 1),
(1771, 1790, 8, 5, 0, 'no response and RNR will not join', 8, '2020-11-12 12:39:06', 1),
(1772, 1850, 8, 3, 0, '14K for syed team', 57, '2020-11-12 12:42:29', 1),
(1773, 1847, 24, 5, 0, 'not fil for telecalling', 7, '0000-00-00 00:00:00', 1),
(1774, 1844, 54, 5, 2, 'He will not sustain ', 28, '2020-11-12 01:21:53', 1),
(1775, 1819, 8, 3, 0, '14K CTC for Kannan team', 19, '2020-11-12 02:43:27', 1),
(1776, 1866, 13, 5, 1, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1777, 1867, 13, 5, 1, 'not suitable for pressure handling', 7, '0000-00-00 00:00:00', 1),
(1778, 1868, 21, 5, 0, 'she is not sustain long term bcz she is with her friend only..', 7, '0000-00-00 00:00:00', 1),
(1779, 1870, 21, 7, 0, 'ok selected need to confirm salary xxamp joining date', 7, '0000-00-00 00:00:00', 1),
(1780, 1858, 20, 7, 0, 'Shortlisted, kindly discuss salary', 7, '0000-00-00 00:00:00', 1),
(1781, 1862, 57, 7, 0, 'candidate is ok. kindly negotiate the salary', 7, '0000-00-00 00:00:00', 1),
(1782, 1862, 8, 3, 0, '15K for Syed team', 57, '2020-11-12 04:42:48', 1),
(1783, 1858, 8, 3, 0, '15K for Kannan team\n', 20, '2020-11-12 05:14:07', 1),
(1784, 1870, 8, 3, 0, '10K for Dhivya team', 21, '2020-11-13 10:27:28', 1),
(1785, 1856, 57, 5, 0, 'voice is not good .. ', 7, '0000-00-00 00:00:00', 1),
(1786, 1869, 51, 7, 4, 'monday joining', 7, '0000-00-00 00:00:00', 1),
(1787, 1873, 39, 5, 2, 'he will not suit for this field', 7, '0000-00-00 00:00:00', 1),
(1788, 1878, 20, 5, 1, 'not fit.', 7, '0000-00-00 00:00:00', 1),
(1789, 1877, 40, 4, 4, 'He is having inside sales exp/ Challenges outcome seems very doubtful...Seems like a long runner..Productive yet doubtful', 7, '0000-00-00 00:00:00', 1),
(1790, 1861, 24, 5, 0, 'rE Profile Not suitable', 7, '0000-00-00 00:00:00', 1),
(1791, 1875, 31, 5, 2, 'expecting higher package and not match for that level', 7, '0000-00-00 00:00:00', 1),
(1792, 1639, 31, 5, 3, 'Not satisfied', 7, '0000-00-00 00:00:00', 1),
(1793, 1859, 28, 5, 0, 'He is strong in .net. But not Know php.', 7, '0000-00-00 00:00:00', 1),
(1794, 1877, 31, 5, 3, 'not a convinced candidate', 40, '2020-11-13 12:18:07', 1),
(1795, 1882, 16, 7, 0, 'candidate selected 14k  salary  fix', 7, '0000-00-00 00:00:00', 1),
(1796, 1869, 8, 3, 0, 'With ESI an PF. net is 22192 and gross is 26000', 51, '2020-11-13 01:05:51', 1),
(1797, 1871, 39, 7, 3, 'okay for RE...kindly confirm his salary and joining', 7, '0000-00-00 00:00:00', 1),
(1798, 1882, 8, 3, 0, '14K as TH. Thiyagarajan team', 16, '2020-11-13 01:43:07', 1),
(1799, 1863, 24, 5, 0, 'candidate not come for 2nd round', 52, '0000-00-00 00:00:00', 1),
(1800, 1885, 16, 5, 0, 'low profile ,no communication skills', 52, '0000-00-00 00:00:00', 1),
(1801, 1871, 8, 5, 0, 'will not join. cant arrange 2 wheeler', 39, '2020-11-13 03:25:32', 1),
(1802, 1895, 28, 5, 0, 'Not strong in basic skillset.', 50, '0000-00-00 00:00:00', 1),
(1803, 1876, 28, 5, 1, 'Not So Much Skill In Basic Php.', 50, '0000-00-00 00:00:00', 1),
(1804, 1893, 28, 5, 0, 'Not strong in basic skill.', 50, '0000-00-00 00:00:00', 1),
(1805, 1892, 28, 4, 0, 'Basic skills is Ok in php.', 50, '0000-00-00 00:00:00', 1),
(1806, 1898, 31, 4, 4, 'Referred by Raghu', 50, '0000-00-00 00:00:00', 1),
(1807, 1855, 20, 5, 0, '4 years experienced in service. not fit for sales', 50, '0000-00-00 00:00:00', 1),
(1808, 1865, 16, 9, 0, 'MOVE  TO cRM,', 50, '0000-00-00 00:00:00', 1),
(1809, 1896, 57, 5, 0, 'he is looking govt job .. and voice is not good', 50, '0000-00-00 00:00:00', 1),
(1810, 1899, 57, 7, 0, 'candidate is ok ..kindly negotiate  the salary', 50, '0000-00-00 00:00:00', 1),
(1811, 1865, 8, 5, 0, 'will no suite for crm', 16, '2020-11-16 01:33:23', 1),
(1812, 1888, 13, 5, 1, 'communication skill not well and expected salary high', 50, '0000-00-00 00:00:00', 1),
(1813, 1898, 18, 7, 3, 'Selected For Lokesh Team. Spoken CTC is for 25K PM xxamp Joinig on 19 nov ', 31, '2020-11-16 01:47:07', 1),
(1814, 1892, 27, 5, 0, 'Task Incomplete.  He dont know how to handle the errors.', 28, '2020-11-16 02:40:03', 1),
(1815, 1899, 8, 3, 0, '13K ctc for syed team', 57, '2020-11-16 02:54:23', 1),
(1816, 1889, 59, 5, 0, 'Hearing xxamp Speaking disability. Will not sustain for a long', 7, '0000-00-00 00:00:00', 1),
(1817, 1904, 20, 4, 0, 'forwarded for salary discussion.', 50, '0000-00-00 00:00:00', 1),
(1818, 1906, 16, 5, 0, 'low profile ,no sales knowledge', 50, '0000-00-00 00:00:00', 1),
(1819, 1904, 8, 5, 0, 'holds offer in JIO, still serving in sbi cards and lic in part time. pronunciation is also not clear.', 20, '2020-11-16 04:11:50', 1),
(1820, 1898, 8, 3, 0, '21192 th and for lokesh team', 18, '2020-11-16 04:33:42', 1),
(1821, 1886, 28, 5, 0, 'Not Know basic skills.', 7, '0000-00-00 00:00:00', 1),
(1822, 1900, 28, 5, 0, 'Not Know basic skill set.', 7, '0000-00-00 00:00:00', 1),
(1823, 1909, 16, 5, 0, 'low profile ,no communication skills', 7, '0000-00-00 00:00:00', 1),
(1824, 1912, 16, 9, 0, 'move to RM', 7, '0000-00-00 00:00:00', 1),
(1825, 1912, 36, 5, 0, 'NOT FIT', 16, '2020-11-17 12:19:15', 1),
(1826, 1913, 31, 7, 4, 'selected for RM conformed by gaurav and salary part kindly refer resume', 7, '0000-00-00 00:00:00', 1),
(1827, 1921, 14, 4, 4, 'salary 10k check for second round', 7, '0000-00-00 00:00:00', 1),
(1828, 1923, 36, 5, 0, 'Not fit', 7, '0000-00-00 00:00:00', 1),
(1829, 1921, 13, 7, 4, 'ok 10k Salary  19th Nov Joining', 14, '2020-11-17 01:24:02', 1),
(1830, 1921, 8, 3, 0, '10K for Muthu team', 13, '2020-11-17 01:33:41', 1),
(1831, 1926, 57, 5, 0, 'voice and appearance very bad.. ', 7, '0000-00-00 00:00:00', 1),
(1832, 1929, 51, 7, 4, 'joining by 1dec', 7, '0000-00-00 00:00:00', 1),
(1833, 1908, 30, 5, 1, 'he will not suit for this field and he donxquott know basic english', 50, '0000-00-00 00:00:00', 1),
(1834, 1673, 8, 5, 0, 'will not join', 8, '2020-11-18 10:09:33', 1),
(1835, 1936, 29, 5, 1, 'aged and not fit for our profile', 7, '0000-00-00 00:00:00', 1),
(1836, 1942, 36, 7, 3, 'Selected for rM', 7, '0000-00-00 00:00:00', 1),
(1837, 1943, 51, 4, 4, 'fresher', 7, '0000-00-00 00:00:00', 1),
(1838, 1934, 31, 5, 4, 'Not interested in sales', 7, '0000-00-00 00:00:00', 1),
(1839, 1929, 8, 3, 0, '23k  for sarath team', 51, '2020-11-18 12:06:39', 1),
(1840, 1943, 29, 7, 3, 'selected for RM, sarath team, 18k salary ', 51, '2020-11-18 12:07:43', 1),
(1841, 1944, 59, 4, 0, 'Shortlisted for next round. Worked in  the areas of excel xxamp PowerPoint', 7, '0000-00-00 00:00:00', 1),
(1842, 1864, 39, 7, 3, 'Joining date on Monday. Cnfrm the salary', 7, '0000-00-00 00:00:00', 1),
(1843, 1915, 28, 4, 0, 'Technically Ok in php.', 7, '0000-00-00 00:00:00', 1),
(1844, 1915, 27, 5, 0, 'Not Good in Technical.  Already attended before 6 Months.', 28, '2020-11-18 01:25:27', 1),
(1845, 1911, 30, 5, 3, 'he is looking for high package and he will not suite for our process', 7, '0000-00-00 00:00:00', 1),
(1846, 1933, 27, 8, 0, 'this candidate wrongly mapped. he is not attended', 7, '0000-00-00 00:00:00', 1),
(1847, 1944, 8, 5, 0, 'not upto the level for mis', 59, '2020-11-18 02:25:51', 1),
(1848, 1920, 57, 5, 0, 'voice is not good ..', 7, '0000-00-00 00:00:00', 1),
(1849, 1949, 57, 4, 0, 'candidate is ok .. he is selected for next round', 7, '0000-00-00 00:00:00', 1),
(1850, 1949, 22, 7, 0, 'candidate ok', 57, '2020-11-18 05:08:20', 1),
(1851, 1770, 8, 3, 0, 'with esi and pf for gk team.', 8, '2020-11-18 05:55:32', 1),
(1852, 1959, 27, 7, 3, 'Potential Candidate. Job Need. System Task Completed. Joining Date 23-11-2020. Salary 10K. 9.5 Take Home', 1, '0000-00-00 00:00:00', 1),
(1853, 1959, 8, 3, 0, '9.5K for IT team', 27, '2020-11-19 11:03:34', 1),
(1854, 1922, 27, 2, 3, 'Dynamic Task Given. ', 7, '0000-00-00 00:00:00', 1),
(1855, 1962, 57, 5, 0, 'voice bad', 7, '0000-00-00 00:00:00', 1),
(1856, 1879, 38, 7, 3, 'kindly confirm her salary 11.6k ctc per month ', 7, '0000-00-00 00:00:00', 1),
(1857, 1963, 28, 5, 3, 'She is not strong in basic php.', 7, '0000-00-00 00:00:00', 1),
(1858, 1961, 51, 4, 4, 'experinced in life insurance', 7, '0000-00-00 00:00:00', 1),
(1859, 1961, 29, 5, 1, 'rejected', 51, '2020-11-19 01:19:57', 1),
(1860, 1937, 36, 2, 3, 'Need time to buy Laptop', 7, '0000-00-00 00:00:00', 1),
(1861, 1879, 8, 3, 0, '11020 as tH.For CRM-PC', 38, '2020-11-19 02:55:10', 1),
(1862, 1966, 38, 8, 0, 'WORST BEHAVIOUR', 7, '0000-00-00 00:00:00', 1),
(1863, 1967, 57, 7, 0, 'candidate is ok ..salary 15k ctc', 7, '0000-00-00 00:00:00', 1),
(1864, 1965, 24, 4, 0, 'candidate okay', 7, '0000-00-00 00:00:00', 1),
(1865, 1949, 8, 3, 0, '13K for syed  team', 22, '2020-11-19 04:51:20', 1),
(1866, 1967, 8, 3, 0, '15k ctc for syed team\n', 57, '2020-11-19 05:41:11', 1),
(1867, 1965, 57, 7, 0, 'candidate is ok .', 24, '2020-11-19 05:55:56', 1),
(1868, 1925, 27, 5, 0, 'Telephonic interview taken. She is not good in technical. ', 1, '0000-00-00 00:00:00', 1),
(1869, 1942, 8, 3, 0, '15800 CTC,15010 TH', 36, '2020-11-19 06:45:00', 1),
(1870, 1953, 27, 2, 0, 'He Will come in Next Week for System Task.', 50, '0000-00-00 00:00:00', 1),
(1871, 1946, 28, 4, 0, 'Technically Good in php.', 50, '0000-00-00 00:00:00', 1),
(1872, 1935, 28, 5, 0, 'Not strong in basic skillset.', 50, '0000-00-00 00:00:00', 1),
(1873, 1943, 8, 3, 0, 'CTC-18950/TH - 18002.50', 29, '2020-11-20 11:07:27', 1),
(1874, 1973, 19, 5, 1, 'not fit for sale', 50, '0000-00-00 00:00:00', 1),
(1875, 1907, 28, 4, 0, 'He is good in basic php skillset', 50, '0000-00-00 00:00:00', 1),
(1876, 1974, 28, 5, 0, 'He is not good in basic skillset', 50, '0000-00-00 00:00:00', 1),
(1877, 1969, 19, 9, 0, 'not fit for RE', 50, '0000-00-00 00:00:00', 1),
(1878, 1946, 27, 2, 0, 'System Task Given. he is okay for all the terms and conditions. If Task Completed we will proceed to final round.', 28, '2020-11-20 11:29:44', 1),
(1879, 1952, 13, 9, 0, 'ok but expected salary 26k refer to RM', 50, '0000-00-00 00:00:00', 1),
(1880, 1907, 27, 2, 0, 'Interview Taken. Task Given.', 28, '2020-11-20 12:05:25', 1),
(1881, 1913, 8, 3, 0, '23K CTC,PT - 208', 31, '2020-11-20 12:07:26', 1),
(1882, 1969, 51, 5, 0, 'not fit for sales', 19, '2020-11-20 12:22:56', 1),
(1883, 1952, 41, 9, 0, 'Check for RM \nExp sal - 26K\nInterviewed by Muthuraj', 13, '2020-11-20 12:53:09', 1),
(1884, 1952, 51, 7, 3, 'joining by nxt month', 41, '2020-11-20 01:15:47', 1),
(1885, 1947, 27, 5, 1, 'He is Not Good in Technical, Attitude is not good.', 50, '0000-00-00 00:00:00', 1),
(1886, 1964, 51, 5, 0, 'rejected', 50, '0000-00-00 00:00:00', 1),
(1887, 1952, 8, 2, 0, 'for salary confirmation', 51, '2020-11-20 04:49:37', 1),
(1888, 1987, 51, 5, 3, 'Convicing Skill Is Poor', 50, '0000-00-00 00:00:00', 1),
(1889, 1989, 13, 5, 1, 'Expected Salary High And Long Distance', 50, '0000-00-00 00:00:00', 1),
(1890, 1965, 8, 3, 0, '15225 CTC,14500 TH', 57, '2020-11-21 11:43:32', 1),
(1891, 1990, 57, 7, 0, 'candidate is ok . salary 13k ctc', 50, '0000-00-00 00:00:00', 1),
(1892, 1940, 36, 7, 4, 'Selected for RM\nExpected salary negotiable only  kindly check ', 50, '0000-00-00 00:00:00', 1),
(1893, 1994, 31, 4, 4, 'Candidate is okay.  Forward to sriram for next round', 50, '0000-00-00 00:00:00', 1),
(1894, 1990, 8, 3, 0, '13K cCTC TH-12350 - TEAM SYED  BY arun', 57, '2020-11-21 01:01:01', 1),
(1895, 1979, 39, 7, 3, 'Confirm the joining date and salary', 50, '0000-00-00 00:00:00', 1),
(1896, 1976, 24, 7, 0, 'candidate selected  24th joining ', 50, '0000-00-00 00:00:00', 1),
(1897, 1980, 39, 5, 1, 'He is not suitable for our profile. Communication is too bad', 50, '0000-00-00 00:00:00', 1),
(1898, 1979, 8, 3, 0, '26k ctc no esi and pf', 39, '2020-11-21 03:34:37', 1),
(1899, 1864, 8, 3, 0, 'CTC-18K/TH - 17100', 39, '2020-11-21 03:39:47', 1),
(1900, 1994, 18, 7, 4, 'Shortlisted for Lokesh Team\n', 31, '2020-11-21 05:08:10', 1),
(1901, 2005, 51, 7, 4, 'good', 50, '0000-00-00 00:00:00', 1),
(1902, 1976, 8, 3, 0, '16k ctc 12464 TH with esixxampPf', 24, '2020-11-23 10:37:23', 1),
(1903, 1997, 28, 5, 0, 'Not strong in basic skills', 50, '0000-00-00 00:00:00', 1),
(1904, 1995, 51, 7, 4, 'good', 50, '0000-00-00 00:00:00', 1),
(1905, 1945, 29, 5, 1, 'not selected', 50, '0000-00-00 00:00:00', 1),
(1906, 2014, 21, 5, 0, 'she is not suitable for our process bcz, no flow in speaking..', 50, '0000-00-00 00:00:00', 1),
(1907, 2013, 16, 7, 0, 'selected for RE ,salary 13k  fix', 50, '0000-00-00 00:00:00', 1),
(1908, 1985, 33, 9, 0, 'Convincing in sales but asking high package ', 50, '0000-00-00 00:00:00', 1),
(1909, 2002, 28, 5, 0, 'Not strong in basic skillsets.', 50, '0000-00-00 00:00:00', 1),
(1910, 2004, 29, 5, 1, 'rejected', 50, '0000-00-00 00:00:00', 1),
(1911, 1927, 18, 7, 3, 'Shortlisted for lokesh Team', 50, '0000-00-00 00:00:00', 1),
(1912, 2009, 28, 5, 0, 'Not strong in basic skill set.', 50, '0000-00-00 00:00:00', 1),
(1913, 2013, 8, 3, 0, '13K CTC FOR THIYAGU TEAM', 16, '2020-11-23 03:56:19', 1),
(1914, 1937, 36, 5, 0, 'Not fit', 36, '2020-11-23 05:50:45', 1),
(1915, 1995, 8, 3, 0, '23K ctc no esi and pf.', 51, '2020-11-24 10:40:18', 1),
(1916, 2005, 8, 3, 0, '24K ctc and no esi and pf', 51, '2020-11-24 10:41:21', 1),
(1917, 2050, 28, 4, 0, 'She is good in php. System task for  25/11/2020', 7, '0000-00-00 00:00:00', 1),
(1918, 2050, 27, 2, 0, 'System Task Given. She will completed today.', 28, '2020-11-24 12:58:53', 1),
(1919, 1982, 28, 5, 0, 'He is not strong in technically.', 7, '0000-00-00 00:00:00', 1),
(1920, 1922, 8, 5, 0, 'will not join', 27, '2020-11-26 11:02:03', 1),
(1921, 1922, 27, 7, 0, ' For The First Month same CTC which he getting in his previous company will be given. From the second month we will inform the CTC based on the performance.', 27, '2020-11-26 11:02:03', 1),
(1922, 1953, 27, 5, 0, 'System Task Not Completed.', 27, '2020-11-26 11:02:40', 1),
(1923, 2016, 27, 2, 0, 'He is a Fresher. He is confused in technology. I gave 1 week time. he will come back again for the interview.', 7, '0000-00-00 00:00:00', 1),
(1924, 1927, 8, 3, 0, '26k ctc for lokesh team', 18, '2020-11-26 12:50:04', 1),
(1925, 1994, 8, 5, 0, 'will not join. exp is 28k and current 21.5k', 18, '2020-11-26 12:51:25', 1),
(1926, 1946, 27, 5, 0, 'Task Incomplete.', 27, '2020-11-26 01:05:44', 1),
(1927, 1940, 8, 5, 0, 'will not join.', 36, '2020-11-26 01:06:20', 1),
(1928, 2015, 27, 5, 0, 'Donxquott have a Basic Knowledge. He knows only Wordpress.', 50, '0000-00-00 00:00:00', 1),
(1929, 2069, 57, 7, 0, 'candidate is ok .. kindly negotiate the salary', 50, '0000-00-00 00:00:00', 1),
(1930, 2070, 24, 7, 0, 'candidate selected 14k. 2nd round met mr.Srikanth.. joining monday', 50, '0000-00-00 00:00:00', 1),
(1931, 2073, 59, 5, 0, 'Not good in communication, High CTC expectations', 50, '0000-00-00 00:00:00', 1),
(1932, 2067, 27, 2, 0, 'Task Given. CAFS Jobs Website and Logo has to design with his own creativity.', 50, '0000-00-00 00:00:00', 1),
(1933, 2076, 19, 4, 4, 'NEED BALAJI SIR CONFIRMATION', 50, '0000-00-00 00:00:00', 1),
(1934, 1694, 8, 3, 0, '14k ctc for it', 27, '2020-11-27 01:28:54', 1),
(1935, 1694, 27, 7, 0, 'She Is Rejected In The Previous Interview Because Of Task Incomplete. She Is Come Again And Completed The Given Task. She Is Selected.', 27, '2020-11-27 01:28:54', 1),
(1936, 2070, 8, 3, 0, '14k for Suthagar team', 24, '2020-11-27 01:32:54', 1),
(1937, 2069, 8, 3, 0, '14k for syed team', 57, '2020-11-27 01:36:05', 1),
(1938, 1996, 28, 4, 0, 'She Know  answer but not explain the properly.  So given to system task for checking skills.', 1, '0000-00-00 00:00:00', 1),
(1939, 1996, 27, 7, 0, 'System Task is Completed. we can offer 16K as a CTC. Already i have spoke with her.', 28, '2020-11-27 02:42:36', 1),
(1940, 1996, 8, 3, 0, '16kctc for it team', 27, '2020-11-27 03:01:44', 1),
(1941, 2076, 8, 3, 0, '21K ctc  for kannan team', 19, '2020-11-27 05:39:38', 1),
(1942, 2091, 20, 5, 0, 'not good in communication', 7, '0000-00-00 00:00:00', 1),
(1943, 2056, 57, 7, 0, 'candidate is ok . salary 13k ctc ', 7, '0000-00-00 00:00:00', 1),
(1944, 2088, 28, 5, 0, 'He is not strong in basic php.', 7, '0000-00-00 00:00:00', 1),
(1945, 2086, 28, 2, 0, 'She is need to recall Technical.  ncd on 30/11/2020', 7, '0000-00-00 00:00:00', 1),
(1946, 2056, 8, 3, 0, '13k for syed team', 57, '2020-11-28 12:21:01', 1),
(1947, 2094, 19, 5, 0, 'not fit for sale', 7, '0000-00-00 00:00:00', 1),
(1948, 2072, 28, 5, 0, 'Not strong in basic skillset', 7, '0000-00-00 00:00:00', 1),
(1949, 2057, 59, 5, 0, 'Not much communicative, will not be fit', 7, '0000-00-00 00:00:00', 1),
(1950, 2083, 40, 4, 4, 'Not having sales experience, But seems like a dedicated candidate and long term asset.', 50, '0000-00-00 00:00:00', 1),
(1951, 2083, 18, 7, 4, 'Selected For Veben Team. Offer 2.75L per annum As a Consultant. Joining Date Is 1 Dec', 40, '2020-11-30 10:42:55', 1),
(1952, 2026, 59, 5, 0, 'Location Constraint', 50, '0000-00-00 00:00:00', 1),
(1953, 2025, 59, 4, 0, 'Not much ok, can give a try', 50, '0000-00-00 00:00:00', 1),
(1954, 2027, 59, 5, 0, 'Not Fit. Looking for Non voice', 50, '0000-00-00 00:00:00', 1),
(1955, 2007, 56, 4, 3, 'selected for next round', 52, '0000-00-00 00:00:00', 1),
(1956, 2044, 59, 4, 0, 'Not much ok, can give a try', 50, '0000-00-00 00:00:00', 1),
(1957, 2122, 59, 4, 0, 'Good in Communicating', 50, '0000-00-00 00:00:00', 1),
(1958, 2124, 59, 5, 0, 'No Bike. Will not sustain', 50, '0000-00-00 00:00:00', 1),
(1959, 2133, 24, 7, 0, 'selected 21k ctc  1 dec 20 joining', 50, '0000-00-00 00:00:00', 1),
(1960, 2112, 59, 5, 0, 'Not ok for bond, will  not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(1961, 2113, 59, 8, 0, 'Left without attending', 50, '0000-00-00 00:00:00', 1),
(1962, 2040, 14, 5, 0, 'not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(1963, 2075, 38, 7, 3, 'Kindly confirm his joining and salary', 50, '0000-00-00 00:00:00', 1),
(1964, 2120, 27, 2, 0, 'He Is Looking For Internship. Will Discuss With Team.', 50, '0000-00-00 00:00:00', 1),
(1965, 2128, 27, 2, 0, 'He Is Looking For Internship. Will Discuss With Team.', 50, '0000-00-00 00:00:00', 1),
(1966, 2118, 27, 2, 0, 'He is Looking for Internship. Will discuss with Team.', 50, '0000-00-00 00:00:00', 1),
(1967, 2077, 38, 5, 2, 'he Quited Previous Job Because Of Roaming Outside, So He Will Not Sustain In Our Field.....', 50, '0000-00-00 00:00:00', 1),
(1968, 2086, 27, 5, 0, 'Task Not Completed. Even she is not ready to Complete the Task.', 28, '2020-11-30 12:08:36', 1),
(1969, 2086, 28, 4, 0, 'She is good in basic skills.', 28, '2020-11-30 12:08:36', 1),
(1970, 2083, 8, 3, 0, '23k ctc for veben team 21850 as net in patroniss', 18, '2020-11-30 12:11:50', 1),
(1971, 2121, 27, 5, 0, 'Dont Know The Basics.  ', 50, '0000-00-00 00:00:00', 1),
(1972, 2022, 8, 5, 0, 'pronunciation is not clear and will not suite for crm', 50, '0000-00-00 00:00:00', 1),
(1973, 2024, 59, 5, 0, 'Not fit. Location Constraint', 50, '0000-00-00 00:00:00', 1),
(1974, 2142, 27, 5, 0, 'Dont know the Basics. he is interested in Python Only.', 50, '0000-00-00 00:00:00', 1),
(1975, 2131, 59, 4, 0, 'Have sales exp, Ok can give a try', 50, '0000-00-00 00:00:00', 1),
(1976, 2037, 59, 8, 0, 'Left without attending', 50, '0000-00-00 00:00:00', 1),
(1977, 2136, 8, 5, 0, 'will not suite for sales.', 50, '0000-00-00 00:00:00', 1),
(1978, 2144, 8, 5, 0, 'will not sustain. no language and no 2 wheeler', 50, '0000-00-00 00:00:00', 1),
(1979, 2064, 8, 3, 0, '13700ctc and net 13k for syed team', 50, '0000-00-00 00:00:00', 1),
(1980, 2049, 8, 8, 0, 'left before interview\n', 50, '0000-00-00 00:00:00', 1),
(1981, 2085, 39, 9, 0, 'Check for RE', 50, '0000-00-00 00:00:00', 1),
(1982, 2104, 27, 5, 0, 'He knows only Java. He dont have an idea in PHP Basics.', 50, '0000-00-00 00:00:00', 1),
(1983, 2075, 8, 3, 0, '17900 ctc and net 17K for gowshick team', 38, '2020-11-30 01:19:34', 1),
(1984, 2140, 8, 4, 0, 'check for sys admin profile. fresher', 50, '0000-00-00 00:00:00', 1),
(1985, 2046, 59, 5, 0, 'Location Constraint', 50, '0000-00-00 00:00:00', 1),
(1986, 2065, 27, 2, 0, 'He done one application in inventory. He need two days time for recall.  will give system task then check.', 50, '0000-00-00 00:00:00', 1),
(1987, 2132, 38, 5, 1, 'he will not suit for our process and not good in communication', 50, '0000-00-00 00:00:00', 1),
(1988, 2122, 8, 4, 0, 'check for crm profile\n', 59, '2020-11-30 04:45:22', 1),
(1989, 2064, 57, 7, 0, 'Candidate is ok ..kindly negotiate the salary', 8, '2020-11-30 04:56:37', 1),
(1990, 2044, 8, 5, 0, 'language is not good. will not suite for our process.', 59, '2020-11-30 04:57:13', 1),
(1991, 2140, 54, 4, 2, 'He is fresher, so kindly check he can able to learn things quickly.', 8, '2020-11-30 05:05:42', 1),
(1992, 2122, 21, 5, 1, 'Not Sustain Long Term Bcz She Is Planning Mba For Abroad...', 8, '2020-11-30 05:07:28', 1),
(1993, 2112, 54, 4, 3, 'kindly check the sustainability.', 59, '2020-11-30 05:08:05', 1),
(1994, 2025, 8, 5, 0, 'will not suite for crm', 59, '2020-11-30 06:20:18', 1),
(1995, 2064, 8, 3, 0, '13700ctc and net 13k for syed team', 57, '2020-11-30 06:26:54', 1),
(1996, 2133, 8, 3, 0, '21k ctc for suthagar team', 24, '2020-12-01 10:00:31', 1),
(1997, 2155, 27, 2, 0, 'Fresher. but he wants to learn. he will come tomorrow for system Task.', 50, '0000-00-00 00:00:00', 1),
(1998, 2098, 27, 9, 0, 'She is came for Relationship Manager', 50, '0000-00-00 00:00:00', 1),
(1999, 2131, 21, 5, 0, '25k Above  Salary Expected ..', 59, '2020-12-01 10:42:09', 1),
(2000, 2007, 30, 4, 3, 'overall performance its good.Salary we discussed about 30k pre month ctc.confirm him joining and further process.', 56, '2020-12-01 11:06:27', 1),
(2001, 2117, 27, 5, 0, 'Donxquott Have A Basic Knowledge In PHP. But he is ready for 3 Years Bond.', 50, '0000-00-00 00:00:00', 1),
(2002, 2111, 27, 5, 0, 'Donxquott have a basic knowledge in PHP', 50, '0000-00-00 00:00:00', 1),
(2003, 2085, 38, 4, 2, 'check this candidate by telephonic round once okay means confirm his joining and salary 15k take home....', 39, '2020-12-01 11:30:29', 1),
(2004, 2051, 39, 5, 1, 'He will not sustain and he will not suit for our Field', 50, '0000-00-00 00:00:00', 1),
(2005, 2166, 38, 7, 0, 'CONFIRM HER FOR SATHISH SIR TEAM CRM....SALARY 14K TAKE HOME....', 50, '0000-00-00 00:00:00', 1),
(2006, 2140, 32, 5, 0, 'Not accepted for Bond', 54, '2020-12-01 12:04:49', 1),
(2007, 2127, 36, 5, 0, 'Not fit', 50, '0000-00-00 00:00:00', 1),
(2008, 2112, 59, 5, 0, 'Not ok for bond, will  not sustain for a long', 54, '2020-12-01 12:07:11', 1),
(2009, 2163, 27, 2, 0, 'tASK given. He will complete and send back to us', 50, '0000-00-00 00:00:00', 1),
(2010, 2160, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(2011, 1907, 8, 3, 0, '8k ctc for it', 27, '2020-12-01 01:09:39', 1),
(2012, 1907, 27, 7, 0, 'He is Shortlisted. Partially he done the Task. But we can consider as a fresher with 3 Years Bond. He is okay for that.', 27, '2020-12-01 01:09:39', 1),
(2013, 2098, 8, 5, 0, 'too long. from sriperambur', 27, '2020-12-01 01:14:29', 1),
(2014, 2007, 8, 3, 0, '30k ctc for mani team', 30, '2020-12-01 02:58:03', 1),
(2015, 2186, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2016, 2148, 51, 5, 0, 'fake info', 7, '0000-00-00 00:00:00', 1),
(2017, 2181, 59, 5, 0, 'Not Fit,will not sustain ', 50, '0000-00-00 00:00:00', 1),
(2018, 2176, 27, 2, 0, 'Task Given. She will Complete and send back to us.', 50, '0000-00-00 00:00:00', 1),
(2019, 2186, 24, 5, 0, 'not fit our profile', 8, '2020-12-01 03:37:44', 1),
(2020, 2023, 59, 5, 0, 'Will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(2021, 2190, 36, 7, 4, 'Shortlisted.  15K confirmed with Sriram sir ', 50, '0000-00-00 00:00:00', 1),
(2022, 2194, 59, 5, 0, 'No much ok with agreement, will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(2023, 2191, 30, 4, 0, 'Over all performance its good,product knowledge and more Experience in our sales field.confirm joining and further process.6.5lac ctc', 7, '0000-00-00 00:00:00', 1),
(2024, 2050, 27, 5, 0, 'Task Not Completed.', 27, '2020-12-02 10:39:19', 1),
(2025, 2160, 27, 5, 0, 'Task not Completed.', 27, '2020-12-02 10:39:41', 1),
(2026, 2128, 8, 5, 0, 'intership', 27, '2020-12-02 10:41:51', 1),
(2027, 2128, 27, 7, 0, 'We offered an internship. He is studying now. ', 27, '2020-12-02 10:41:51', 1),
(2028, 2120, 8, 5, 0, 'internship ', 27, '2020-12-02 10:42:03', 1),
(2029, 2120, 27, 7, 0, 'We Offered An Internship. He Is Studying Now. ', 27, '2020-12-02 10:42:03', 1),
(2030, 2118, 27, 5, 0, 'He is Looking for an internship. He is not good in technical.', 27, '2020-12-02 10:42:40', 1),
(2031, 2191, 8, 3, 0, '50359 th and with esi/pf', 30, '2020-12-02 10:49:38', 1),
(2032, 1952, 8, 3, 0, '30k ctc for sarath team', 8, '2020-12-02 11:12:45', 1),
(2033, 2199, 8, 3, 0, '24k ctc and no esi/pf for logesh team', 50, '0000-00-00 00:00:00', 1),
(2034, 2149, 27, 7, 0, 'Potential Candidate. Shortlisted and offered 12.5k take home. joining tomorrow.', 50, '0000-00-00 00:00:00', 1),
(2035, 2100, 8, 5, 0, 'was hold for next round but no response', 50, '0000-00-00 00:00:00', 1),
(2036, 2198, 8, 5, 0, 'will not suite for calling and sales', 50, '0000-00-00 00:00:00', 1),
(2037, 2209, 27, 2, 0, 'Task Given(remote). He will complete and let us know.', 50, '0000-00-00 00:00:00', 1),
(2038, 2211, 44, 5, 0, 'Not fit for Sales', 50, '0000-00-00 00:00:00', 1),
(2039, 2079, 8, 3, 0, '16k th and 16850 ctc for dhivya team', 50, '0000-00-00 00:00:00', 1),
(2040, 2178, 27, 5, 0, 'Dont have an experience in UX', 50, '0000-00-00 00:00:00', 1),
(2041, 2190, 8, 3, 0, '15800 ctc and 15th for logesh team', 36, '2020-12-02 12:54:42', 1),
(2042, 2147, 27, 2, 0, 'Task has to be given tomorrow.', 50, '0000-00-00 00:00:00', 1),
(2043, 2085, 8, 3, 0, '15k th for gowshick team', 38, '2020-12-02 01:35:54', 1),
(2044, 2199, 36, 7, 0, 'Selected. 24K', 8, '2020-12-02 02:34:52', 1),
(2045, 2100, 53, 4, 0, 'pls check fr arumbakm. he said ll go by sat. bt doubt oly.', 8, '2020-12-02 02:47:36', 1),
(2046, 2149, 8, 3, 0, '12540 th and 13200 ctc for it', 27, '2020-12-02 03:41:20', 1),
(2047, 2079, 21, 7, 0, 'ok , selected , need to confirm joining', 8, '2020-12-02 04:01:48', 1),
(2048, 2199, 8, 3, 0, '24k ctc and no esi/pf for logesh team', 36, '2020-12-02 04:27:19', 1),
(2049, 2169, 27, 2, 0, 'Task Given. he will complete and let us know.', 50, '0000-00-00 00:00:00', 1),
(2050, 2205, 27, 2, 0, 'He will come tomorrow for an interview.', 50, '0000-00-00 00:00:00', 1),
(2051, 2188, 27, 5, 0, 'Not Good in Technical.', 50, '0000-00-00 00:00:00', 1),
(2052, 2218, 27, 2, 0, 'Selected for system task. i will assign the task.', 50, '0000-00-00 00:00:00', 1),
(2053, 2214, 8, 4, 0, 'fresher and done 3 month course in uixxampux', 50, '0000-00-00 00:00:00', 1),
(2054, 2195, 8, 4, 0, 'have 1.4 yr exp  and exp is 18k', 50, '0000-00-00 00:00:00', 1),
(2055, 2225, 8, 4, 0, '2yr exp in ui/ux and exp is 40k', 50, '0000-00-00 00:00:00', 1),
(2056, 2171, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2057, 2214, 27, 2, 0, 'Task Given. He will complete and semd us back.', 8, '2020-12-03 12:46:29', 1),
(2058, 2195, 27, 5, 0, 'He knows only UI. donxquott have an experience in UX.', 8, '2020-12-03 12:47:27', 1),
(2059, 2171, 16, 5, 0, 'low profile', 8, '2020-12-03 12:48:20', 1),
(2060, 2225, 27, 2, 0, 'Task Given. He will complete and send back to us.', 8, '2020-12-03 12:48:56', 1),
(2061, 2196, 33, 5, 2, 'NOT FIT FOR SALES AND RM', 50, '0000-00-00 00:00:00', 1),
(2062, 2153, 8, 3, 0, '22k ctc for sarath team no esi/pf', 50, '0000-00-00 00:00:00', 1),
(2063, 2204, 8, 4, 3, 'Check for RM.', 50, '0000-00-00 00:00:00', 1),
(2064, 2153, 51, 4, 3, 'moved to sir for final round', 8, '2020-12-03 03:32:32', 1),
(2065, 2204, 51, 5, 1, 'Low In Pressure Handling', 8, '2020-12-03 03:34:16', 1),
(2066, 2221, 8, 4, 0, 'check for admin profile. fresher', 50, '0000-00-00 00:00:00', 1),
(2067, 2166, 8, 3, 0, '14k th for crm sathish team', 38, '2020-12-03 04:03:20', 1),
(2068, 2163, 27, 5, 0, 'Couldnxquott meet our expectations.', 27, '2020-12-03 04:10:55', 1),
(2069, 2221, 32, 5, 0, 'Not Accepted for Bond', 8, '2020-12-03 04:40:29', 1),
(2070, 2153, 29, 7, 3, 'SELECTED FOR RM - SARATH TEAM, SALARY DETAILS MENTION IN RESUME', 51, '2020-12-03 07:29:35', 1),
(2071, 2234, 27, 5, 0, 'He dont have a knowledge in PHP.', 50, '0000-00-00 00:00:00', 1),
(2072, 2245, 8, 4, 3, 'check for e-sale profile', 50, '0000-00-00 00:00:00', 1),
(2073, 2236, 27, 5, 0, 'Having 5 months experience. last 7 month gap. he dont have a knowledge in PHP.', 50, '0000-00-00 00:00:00', 1),
(2074, 2228, 32, 5, 0, 'Expected Salary is High', 50, '0000-00-00 00:00:00', 1),
(2075, 2245, 11, 5, 3, 'communication is poor', 8, '2020-12-04 12:31:35', 1),
(2076, 2249, 38, 5, 3, 'expecting high package but he is fresher', 50, '0000-00-00 00:00:00', 1),
(2077, 2176, 27, 5, 0, 'Task not up to our level. Even she is not did what am telling', 27, '2020-12-04 01:23:51', 1),
(2078, 2016, 27, 5, 0, 'Task not Completed.', 27, '2020-12-04 01:26:47', 1),
(2079, 2260, 8, 3, 0, '25k ctc for GK team. no esi/pf', 50, '0000-00-00 00:00:00', 1),
(2080, 2260, 29, 7, 3, 'SELECTED FOR RM,  GK TEAM, SALARY DETAILS MENTIONED IN RESUME', 8, '2020-12-04 04:08:51', 1),
(2081, 2079, 8, 3, 0, '16k th and 16850 ctc for dhivya team', 21, '2020-12-04 06:26:16', 1),
(2082, 2253, 59, 4, 0, 'Ok,can try for Arumbakkam branch', 50, '0000-00-00 00:00:00', 1),
(2083, 2272, 27, 5, 0, 'He had an offer in infosys. he will not sustain with us.', 50, '0000-00-00 00:00:00', 1),
(2084, 2259, 27, 2, 0, '1st round taken by umadevi. Selected for system task. task given', 50, '0000-00-00 00:00:00', 1),
(2085, 2153, 8, 3, 0, '22k ctc for sarath team no esi/pf', 29, '2020-12-05 11:25:23', 1),
(2086, 2260, 8, 3, 0, '25k ctc for GK team. no esi/pf', 29, '2020-12-05 11:27:06', 1),
(2087, 2229, 8, 4, 3, 'fresher, exp 15k and check for RM.', 50, '0000-00-00 00:00:00', 1),
(2088, 2229, 44, 5, 3, 'She is Looking OPS or HR Job', 8, '2020-12-05 12:25:08', 1),
(2089, 2285, 8, 4, 0, 'check for RM', 50, '0000-00-00 00:00:00', 1),
(2090, 2219, 27, 2, 0, 'Task Given. He Will Complete And Send Back To Us.', 50, '0000-00-00 00:00:00', 1),
(2091, 2281, 8, 5, 0, 'will not suite for rE. no communication and not speaking up.', 50, '0000-00-00 00:00:00', 1),
(2092, 2284, 8, 4, 0, 'check for esale crm', 50, '0000-00-00 00:00:00', 1),
(2093, 2256, 8, 3, 0, '16850 ctc and th 16k.', 50, '0000-00-00 00:00:00', 1),
(2094, 2285, 51, 4, 3, 'moved  to sir', 8, '2020-12-05 02:45:37', 1),
(2095, 2256, 21, 7, 4, 'need to confirm salary xxamp joining ', 8, '2020-12-05 02:46:10', 1),
(2096, 2284, 21, 5, 0, 'she have experienced in credit card collection process.. she  dont have sales skill . but expecting  18k above xxamp also she is not sustain long term , bcz 6 month only she planned working...', 8, '2020-12-05 02:46:41', 1),
(2097, 2253, 53, 9, 0, 'intrested inMF', 59, '2020-12-05 03:48:38', 1),
(2098, 2259, 27, 5, 0, 'Not Completed Task.', 27, '2020-12-05 04:41:28', 1),
(2099, 2285, 29, 5, 1, 'NOT SELECTED', 51, '2020-12-05 06:10:00', 1),
(2100, 2256, 8, 3, 0, '16850 ctc and th 16k.', 21, '2020-12-05 06:13:28', 1),
(2101, 1985, 18, 5, 0, 'no response from the candidate.', 33, '2020-12-06 12:55:38', 1),
(2102, 2261, 59, 4, 0, 'Ok, can give a try  for RM', 50, '0000-00-00 00:00:00', 1),
(2103, 2248, 27, 2, 0, 'Task Given. He will complete and send back to us.', 50, '0000-00-00 00:00:00', 1),
(2104, 2279, 27, 5, 0, 'Dont have a knowledge in PHP', 50, '0000-00-00 00:00:00', 1),
(2105, 2289, 59, 5, 0, 'Not much communicative', 50, '0000-00-00 00:00:00', 1),
(2106, 2304, 27, 2, 0, 'Task Given. she will come back to us', 50, '0000-00-00 00:00:00', 1),
(2107, 2226, 27, 5, 0, 'Dont know the Basics', 50, '0000-00-00 00:00:00', 1),
(2108, 2189, 27, 5, 0, 'Dont know the Basics', 50, '0000-00-00 00:00:00', 1),
(2109, 2312, 8, 5, 0, 'he is struggling to speak. will not suite for RM.', 50, '0000-00-00 00:00:00', 1),
(2110, 2288, 8, 5, 0, 'not int in field sales. as CRM she is exp 20K. ', 50, '0000-00-00 00:00:00', 1),
(2111, 2316, 8, 5, 0, 'can try for crm', 50, '0000-00-00 00:00:00', 1),
(2112, 2283, 56, 4, 3, 'selected for next round for RM', 50, '0000-00-00 00:00:00', 1),
(2113, 2309, 27, 2, 0, 'He will come for next Round.', 50, '0000-00-00 00:00:00', 1),
(2114, 2261, 33, 7, 4, 'Selected ', 59, '2020-12-07 12:27:00', 1),
(2115, 2283, 30, 4, 3, 'Overall all performance k ,take one more telephonic round from your side,whether she k with PC rm profile or e sales rm profile.confirm joining and further process.', 56, '2020-12-07 12:30:40', 1),
(2116, 2295, 8, 5, 0, 'fresher, no job need, time being she is looking for job. ', 50, '0000-00-00 00:00:00', 1),
(2117, 2302, 8, 5, 0, 'applied for RE. fresher, will not suite for calling and sales profile. no 2 wheeler and too long from paadi.', 50, '0000-00-00 00:00:00', 1),
(2118, 2305, 8, 3, 0, '19k ctc for kannan team', 50, '0000-00-00 00:00:00', 1),
(2119, 2321, 8, 3, 0, '13k for saravana team', 50, '0000-00-00 00:00:00', 1),
(2120, 1806, 53, 5, 0, 'asked to call after 10 days but he didnt call', 53, '2020-12-07 03:26:55', 1),
(2121, 2253, 8, 3, 0, '18k ctc for raghu team', 53, '2020-12-07 03:29:42', 1),
(2122, 2287, 8, 4, 3, 'check for rm profile', 50, '0000-00-00 00:00:00', 1),
(2123, 2323, 27, 5, 0, 'He knows only Java. dont have a knowledge in PHP.', 50, '0000-00-00 00:00:00', 1),
(2124, 2321, 53, 4, 0, 'Ok fr RE. Arumbnakkam pls check', 8, '2020-12-07 04:13:27', 1),
(2125, 2305, 19, 7, 4, 'ctc 19k', 8, '2020-12-07 04:14:24', 1),
(2126, 2287, 44, 5, 2, 'He is not fit for life sales', 8, '2020-12-07 04:15:21', 1),
(2127, 2316, 24, 1, 0, NULL, 8, '2020-12-07 04:18:55', 1),
(2128, 2253, 35, 7, 0, 'Selected for MF RM  Transferred to HR ', 8, '2020-12-07 04:19:55', 1),
(2129, 2271, 8, 3, 0, '13k for Saravana team.', 7, '0000-00-00 00:00:00', 1),
(2130, 2261, 8, 3, 0, '24k  ctc and no esi/pf, for rajkumar team', 33, '2020-12-07 05:11:55', 1),
(2131, 2271, 53, 4, 0, 'check fr RE. Aumbakkam', 8, '2020-12-07 05:50:53', 1),
(2132, 2253, 8, 3, 0, '18k ctc for raghu team', 35, '2020-12-07 06:40:21', 1),
(2133, 2283, 8, 2, 0, 'telephonic', 30, '2020-12-07 11:46:33', 1),
(2134, 2299, 27, 5, 0, 'Not good in technical', 50, '0000-00-00 00:00:00', 1),
(2135, 2292, 27, 2, 0, 'Good in technical. She will come for an interview for System task.', 50, '0000-00-00 00:00:00', 1),
(2136, 2296, 27, 5, 0, 'dont know the Basics. ', 50, '0000-00-00 00:00:00', 1),
(2137, 2329, 27, 2, 0, 'Task Given. She will complete and send back to us.', 50, '0000-00-00 00:00:00', 1),
(2138, 2321, 15, 4, 3, 'ok selected salary 13k expected', 53, '2020-12-08 10:57:55', 1),
(2139, 2271, 15, 4, 3, 'ok salary expected 13k ...', 53, '2020-12-08 11:04:44', 1),
(2140, 2325, 27, 5, 0, 'Dont Have a knowledge in PHP Mysql', 50, '0000-00-00 00:00:00', 1),
(2141, 2305, 8, 3, 0, '19k ctc for kannan team', 19, '2020-12-08 11:08:59', 1),
(2142, 2340, 8, 3, 0, '13k for esale dhivya team', 50, '0000-00-00 00:00:00', 1),
(2143, 2100, 8, 5, 0, 'was hold for next round but no response', 53, '2020-12-08 11:22:40', 1),
(2144, 2273, 27, 5, 0, 'He dont have a knowledge in which position he applied.', 50, '0000-00-00 00:00:00', 1),
(2145, 2334, 8, 4, 0, 'looks like not Genuine. Check for RM', 50, '0000-00-00 00:00:00', 1),
(2146, 2346, 8, 3, 0, '22k ctc no esi/pf for shanmugam team', 50, '0000-00-00 00:00:00', 1),
(2147, 2335, 30, 4, 3, 'Overall performance k and confirm joining. We discussed salary 3.6ctc', 50, '0000-00-00 00:00:00', 1),
(2148, 2341, 8, 3, 0, '18k ctc for suthagar team', 50, '0000-00-00 00:00:00', 1),
(2149, 2350, 8, 5, 0, 'fresher, no communication and will not suite for crm/re.', 50, '0000-00-00 00:00:00', 1),
(2150, 2313, 8, 3, 0, '18k ctc for dhivya team esale', 50, '0000-00-00 00:00:00', 1),
(2151, 2315, 8, 5, 0, 'will not suit for our process. voice is very low and not bold', 50, '0000-00-00 00:00:00', 1),
(2152, 2311, 27, 5, 0, 'Not Good in technical.', 50, '0000-00-00 00:00:00', 1),
(2153, 2310, 27, 2, 0, 'Task Given. He will Complete and Send back to us.', 50, '0000-00-00 00:00:00', 1),
(2154, 2345, 8, 3, 0, '13k for ramesh team', 50, '0000-00-00 00:00:00', 1),
(2155, 2319, 8, 3, 0, '16k ctc for kannan team', 50, '0000-00-00 00:00:00', 1),
(2156, 2346, 31, 4, 3, 'recommend for next round with shanmugam', 8, '2020-12-08 01:14:29', 1),
(2157, 2268, 8, 4, 3, 'check for esale', 50, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(2158, 2340, 21, 4, 3, 'ok selected , need to confirm salary ', 8, '2020-12-08 01:15:11', 1),
(2159, 2334, 31, 5, 3, 'conveying most irrelevant things', 8, '2020-12-08 01:16:16', 1),
(2160, 2314, 59, 4, 0, 'Ok profile, can give a try ,having exp in customer handling', 50, '0000-00-00 00:00:00', 1),
(2161, 2268, 21, 8, 0, 'candidate gone', 8, '2020-12-08 01:17:22', 1),
(2162, 2313, 21, 7, 4, 'ok selected need to confirm  salary ..', 8, '2020-12-08 02:45:26', 1),
(2163, 2319, 19, 7, 4, 'ctc - 16k', 8, '2020-12-08 02:46:13', 1),
(2164, 2341, 53, 4, 0, 'Ok fr me. pls check frm ur end', 8, '2020-12-08 02:46:49', 1),
(2165, 2345, 53, 7, 0, 'Ok fr RE. Ramesh team', 8, '2020-12-08 02:48:45', 1),
(2166, 2357, 59, 4, 0, 'Good Profile, Ready for field sales ', 50, '0000-00-00 00:00:00', 1),
(2167, 2349, 8, 2, 0, 'for rejoining confirmation.', 7, '0000-00-00 00:00:00', 1),
(2168, 2344, 8, 3, 0, '13k ctc for saravana team', 7, '0000-00-00 00:00:00', 1),
(2169, 2362, 16, 5, 0, 'low profile,sustain doubt', 7, '0000-00-00 00:00:00', 1),
(2170, 2344, 53, 7, 0, 'Ok fr RE saravanan team 13k Take home', 8, '2020-12-08 04:01:13', 1),
(2171, 2319, 8, 3, 0, '16k ctc for kannan team', 19, '2020-12-08 04:23:03', 1),
(2172, 2304, 27, 5, 0, 'Design is not good.', 27, '2020-12-08 04:30:56', 1),
(2173, 2065, 27, 5, 0, 'Task Not Completed', 27, '2020-12-08 04:31:31', 1),
(2174, 2314, 21, 5, 0, 'pronounciation problem', 59, '2020-12-08 04:43:41', 1),
(2175, 2357, 44, 7, 3, 'Candidate ok ,and salary part you can discuss with her', 59, '2020-12-08 04:44:30', 1),
(2176, 2321, 8, 3, 0, '13k for saravana team', 15, '2020-12-08 05:18:12', 1),
(2177, 2271, 8, 3, 0, '13k for Saravana team.', 15, '2020-12-08 05:21:58', 1),
(2178, 2340, 8, 3, 0, '13k for esale dhivya team', 21, '2020-12-08 05:32:32', 1),
(2179, 2313, 8, 3, 0, '18k ctc for dhivya team esale', 21, '2020-12-08 05:34:57', 1),
(2180, 2346, 44, 4, 3, 'Ji Please check once', 31, '2020-12-08 07:29:38', 1),
(2181, 2335, 8, 2, 0, 'for salary confirmation', 30, '2020-12-09 09:42:09', 1),
(2182, 2346, 29, 7, 3, 'SELECTED FOR RM - SHANMUGAM TEAM - 22K SALARY', 44, '2020-12-09 10:36:18', 1),
(2183, 2357, 8, 2, 0, 'she need to confirm her joining', 44, '2020-12-09 10:43:06', 1),
(2184, 2345, 8, 3, 0, '13k for ramesh team', 53, '2020-12-09 10:46:06', 1),
(2185, 2344, 8, 3, 0, '13k ctc for saravana team', 53, '2020-12-09 10:46:44', 1),
(2186, 2341, 24, 7, 0, 'candidate selected.. 18k slry banu madam already  checked  candidate..', 53, '2020-12-09 10:47:51', 1),
(2187, 2257, 27, 5, 0, 'He donxquott know the Basics', 50, '0000-00-00 00:00:00', 1),
(2188, 2369, 8, 2, 0, 'will not suite for esale and he needs time to think about re profile. ', 50, '0000-00-00 00:00:00', 1),
(2189, 2366, 8, 4, 0, 'check for BDM.', 50, '0000-00-00 00:00:00', 1),
(2190, 2351, 8, 3, 0, '14k ctc for srikanth team', 50, '0000-00-00 00:00:00', 1),
(2191, 2354, 8, 4, 0, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2192, 2341, 8, 3, 0, '18k ctc for suthagar team', 24, '2020-12-09 12:26:01', 1),
(2193, 2326, 8, 5, 0, 'not speaking up. will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(2194, 2338, 8, 5, 0, 'will  not suite for any profile.  knows nothing.', 50, '0000-00-00 00:00:00', 1),
(2195, 2374, 8, 3, 0, '14k ctc for dhivya team', 50, '0000-00-00 00:00:00', 1),
(2196, 2381, 8, 3, 0, '30k ctc and no pf and pt alone', 50, '0000-00-00 00:00:00', 1),
(2197, 2384, 8, 4, 3, 'check with this profile.', 50, '0000-00-00 00:00:00', 1),
(2198, 2329, 27, 5, 0, 'UI Design Not Good. ', 27, '2020-12-09 02:50:48', 1),
(2199, 2248, 27, 5, 0, 'Not Upto the Level', 27, '2020-12-09 02:52:02', 1),
(2200, 2155, 27, 5, 0, 'not Complete the System Task.', 27, '2020-12-09 02:53:22', 1),
(2201, 2219, 27, 5, 0, 'System Task not Completed.', 27, '2020-12-09 02:53:58', 1),
(2202, 2351, 20, 7, 0, 'Kindly shortlist the candidate for 14k CTC', 8, '2020-12-09 02:55:01', 1),
(2203, 2209, 27, 5, 0, 'Donxquott get any response.', 27, '2020-12-09 02:55:08', 1),
(2204, 2354, 20, 8, 0, 'didnt attend', 8, '2020-12-09 02:55:44', 1),
(2205, 2366, 29, 4, 0, 'esale - BDM Profile - Good insurance Experience, lower productive business, Sustainability will be Challenge, once review and confirm sir  ', 8, '2020-12-09 02:56:22', 1),
(2206, 2374, 21, 7, 3, 'ok selected internal reference ', 8, '2020-12-09 03:00:12', 1),
(2207, 1697, 8, 5, 0, 'no update for his profile ', 8, '2020-12-09 03:21:18', 1),
(2208, 2381, 33, 4, 0, 'Selected ', 8, '2020-12-09 04:30:49', 1),
(2209, 2349, 8, 3, 0, '15k ctc for ramesh team', 8, '2020-12-09 04:48:18', 1),
(2210, 2384, 33, 5, 0, 'Not fit for sales', 8, '2020-12-09 05:04:32', 1),
(2211, 2351, 8, 3, 0, '14k ctc for srikanth team', 20, '2020-12-09 06:41:18', 1),
(2212, 2374, 8, 3, 0, '14k ctc for dhivya team', 21, '2020-12-10 10:16:44', 1),
(2213, 2372, 59, 2, 0, 'He needs time to think  on the  role', 50, '0000-00-00 00:00:00', 1),
(2214, 2395, 27, 5, 0, 'Communication not good.', 50, '0000-00-00 00:00:00', 1),
(2215, 2371, 27, 5, 0, 'Not good in mysql queries.', 50, '0000-00-00 00:00:00', 1),
(2216, 2392, 27, 5, 0, 'He donxquott have a basic knowledge. its a first interview. He didnxquott prepared anything.', 50, '0000-00-00 00:00:00', 1),
(2217, 2346, 8, 3, 0, '22k ctc no esi/pf for shanmugam team', 29, '2020-12-10 02:58:07', 1),
(2218, 2366, 45, 8, 0, 'Not  Attended', 29, '2020-12-10 03:02:55', 1),
(2219, 2405, 59, 5, 0, 'Will not fit for the role', 50, '0000-00-00 00:00:00', 1),
(2220, 2333, 41, 3, 0, 'Test \nDummy entry', 50, '0000-00-00 00:00:00', 1),
(2221, 2427, 8, 4, 3, 'fresher,  need to check for RM .', 50, '0000-00-00 00:00:00', 1),
(2222, 2427, 44, 5, 1, 'He is not fit for life sales', 8, '2020-12-11 12:41:43', 1),
(2223, 2369, 8, 5, 0, 'not Interested in sales', 8, '2020-12-11 12:46:57', 1),
(2224, 2317, 30, 5, 0, 'he will sustain and bad in communication', 50, '0000-00-00 00:00:00', 1),
(2225, 2243, 8, 3, 0, '13k ctc and for kannan team', 50, '0000-00-00 00:00:00', 1),
(2226, 2415, 8, 4, 0, 'came for crm but interested in IT.', 50, '0000-00-00 00:00:00', 1),
(2227, 2336, 30, 7, 3, 'Confirm his salary and joining', 50, '0000-00-00 00:00:00', 1),
(2228, 2435, 59, 5, 0, 'No good communication', 50, '0000-00-00 00:00:00', 1),
(2229, 2243, 19, 7, 4, 'ctc 13k', 8, '2020-12-11 03:14:52', 1),
(2230, 2415, 27, 5, 0, 'He donxquott have a basic knowledge. ', 8, '2020-12-11 03:16:43', 1),
(2231, 2438, 8, 3, 0, '83333 ctc and 79525 is net. ', 7, '0000-00-00 00:00:00', 1),
(2232, 2433, 8, 4, 0, 'check for e-sale', 50, '0000-00-00 00:00:00', 1),
(2233, 2433, 21, 5, 0, 'not fit for esales', 8, '2020-12-11 05:21:34', 1),
(2234, 2243, 19, 7, 4, 'ctc 13k', 19, '2020-12-11 05:37:31', 1),
(2235, 2243, 8, 3, 0, '13k ctc and for kannan team', 19, '2020-12-11 05:49:52', 1),
(2236, 2336, 8, 3, 0, '29k for Sanjeev team with esi/pf', 30, '2020-12-11 06:53:21', 1),
(2237, 2440, 8, 5, 0, 'will not sustain and will not suite for RE', 50, '0000-00-00 00:00:00', 1),
(2238, 2457, 27, 7, 0, 'He is okay for 3 years Bond. salary confirmed 8k per month as a take home.', 50, '0000-00-00 00:00:00', 1),
(2239, 2451, 8, 5, 0, 'fresher, will not suite for our process.', 50, '0000-00-00 00:00:00', 1),
(2240, 2458, 20, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(2241, 2455, 38, 5, 1, 'bad in communication and he is expecting high salary ', 50, '0000-00-00 00:00:00', 1),
(2242, 2445, 59, 5, 0, 'No experience in Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2243, 2461, 20, 4, 0, 'selected for Next round', 50, '0000-00-00 00:00:00', 1),
(2244, 2462, 8, 4, 0, 'check for RE, fresher', 50, '0000-00-00 00:00:00', 1),
(2245, 2434, 8, 4, 0, 'check for Re', 50, '0000-00-00 00:00:00', 1),
(2246, 2453, 8, 5, 0, 'not Interested to join', 50, '0000-00-00 00:00:00', 1),
(2247, 2465, 8, 5, 0, 'will  not suite for any profile', 50, '0000-00-00 00:00:00', 1),
(2248, 2459, 59, 5, 0, 'No communication xxamp no experience in Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2249, 2463, 8, 5, 0, 'not speaking up will not suite for CRM', 50, '0000-00-00 00:00:00', 1),
(2250, 2447, 8, 3, 0, '13k ctc for kannan team', 50, '0000-00-00 00:00:00', 1),
(2251, 2457, 8, 3, 0, '8k th for IT', 27, '2020-12-12 12:22:38', 1),
(2252, 2466, 8, 5, 0, 'fresher, will not suite for esale. ', 50, '0000-00-00 00:00:00', 1),
(2253, 2461, 53, 4, 0, 'pls check sustainability, laptop and payslip.', 20, '2020-12-12 12:53:31', 1),
(2254, 2364, 41, 5, 0, 'Dummy\nTest', 1, '0000-00-00 00:00:00', 1),
(2255, 2461, 59, 8, 0, 'Candidate left without attending the interview', 53, '2020-12-12 12:56:52', 1),
(2256, 2453, 35, 7, 0, 'Shortlisted Next Round to HR  Candidate stated okay for Sales and Bond too, ', 8, '2020-12-12 02:30:51', 1),
(2257, 2434, 24, 5, 0, 'NOT FIT FOR TELECALLING AND RE', 8, '2020-12-12 02:31:41', 1),
(2258, 2447, 19, 7, 4, 'ctc 13k', 8, '2020-12-12 02:32:29', 1),
(2259, 2462, 19, 5, 1, 'not fit for sales', 8, '2020-12-12 02:34:32', 1),
(2260, 2447, 8, 3, 0, '13k ctc for kannan team', 19, '2020-12-12 02:44:15', 1),
(2261, 2442, 27, 5, 0, 'confused in his technology. applied android developer. but he donxquott have a knowledge in this.', 50, '0000-00-00 00:00:00', 1),
(2262, 2475, 20, 9, 0, 'doesnxquott have bike', 50, '0000-00-00 00:00:00', 1),
(2263, 2475, 8, 3, 0, '15k ctc for Esale', 20, '2020-12-12 04:44:24', 1),
(2264, 2475, 21, 7, 4, 'selected...', 8, '2020-12-12 04:47:55', 1),
(2265, 2475, 8, 3, 0, '15k ctc for Esale', 21, '2020-12-12 06:13:22', 1),
(2266, 2453, 8, 5, 0, 'not Interested to join', 35, '2020-12-14 10:07:01', 1),
(2267, 2372, 59, 5, 0, 'He asked for a time to think, but No Response ', 59, '2020-12-14 10:12:03', 1),
(2268, 2387, 19, 5, 1, 'not fit for sales', 50, '0000-00-00 00:00:00', 1),
(2269, 2382, 19, 5, 1, 'salary exceptation too high', 50, '0000-00-00 00:00:00', 1),
(2270, 2420, 24, 5, 0, 'NOT FIT FOR TELECALLING AND RE', 50, '0000-00-00 00:00:00', 1),
(2271, 2418, 57, 5, 0, 'not attended to second round', 50, '0000-00-00 00:00:00', 1),
(2272, 2448, 59, 5, 0, 'Content Written is not upto the standard', 50, '0000-00-00 00:00:00', 1),
(2273, 2452, 59, 5, 0, 'Much into content only no exp in SEO/SEM', 50, '0000-00-00 00:00:00', 1),
(2274, 2429, 59, 5, 0, 'Good Exp in SEO /SEM, but no content writing', 50, '0000-00-00 00:00:00', 1),
(2275, 2483, 59, 5, 0, 'Location Constraint', 50, '0000-00-00 00:00:00', 1),
(2276, 2481, 59, 5, 0, 'Stability issue', 50, '0000-00-00 00:00:00', 1),
(2277, 2143, 27, 5, 0, 'Task not Completed.', 50, '0000-00-00 00:00:00', 1),
(2278, 2444, 24, 5, 0, 'HE IS NOT INRESTED FOR SALES', 50, '0000-00-00 00:00:00', 1),
(2279, 2486, 11, 5, 3, 'she wont suitable for e sales ', 50, '0000-00-00 00:00:00', 1),
(2280, 2283, 8, 5, 0, 'no response', 8, '2020-12-14 12:20:49', 1),
(2281, 2491, 8, 2, 0, 'will join after jan 5th. esale dhivya team', 50, '0000-00-00 00:00:00', 1),
(2282, 2489, 8, 5, 0, 'will not suite for crm, fresher not int in RE.', 50, '0000-00-00 00:00:00', 1),
(2283, 2484, 59, 5, 0, 'Frequent Job Changes, no content exp', 50, '0000-00-00 00:00:00', 1),
(2284, 2493, 8, 5, 0, 'fresher, will not suite for calling, no communication.', 50, '0000-00-00 00:00:00', 1),
(2285, 2494, 8, 5, 0, 'Will Not Suite For esale. may be for health.', 50, '0000-00-00 00:00:00', 1),
(2286, 2496, 8, 5, 0, 'fresher, will  not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(2287, 2497, 8, 5, 0, 'not speaking  up and no communication. will not suite for calling. ', 50, '0000-00-00 00:00:00', 1),
(2288, 2491, 21, 7, 0, 'ok selected  candidate have note period in prevoius concern , so need to check joining ..(jan 2nd)...', 8, '2020-12-14 03:07:20', 1),
(2289, 2507, 27, 5, 0, 'He donxquott have a basic knowledge.', 50, '0000-00-00 00:00:00', 1),
(2290, 2511, 31, 5, 1, 'his priority in event management. still he is doing this business', 50, '0000-00-00 00:00:00', 1),
(2291, 2409, 8, 4, 0, 'check for RM', 50, '0000-00-00 00:00:00', 1),
(2292, 2516, 27, 8, 0, 'he is not attended.', 50, '0000-00-00 00:00:00', 1),
(2293, 2473, 8, 4, 0, 'Check for CRM esale', 50, '0000-00-00 00:00:00', 1),
(2294, 2409, 31, 5, 2, 'not a convincing candidate for sales.  interested in HR', 8, '2020-12-15 04:38:12', 1),
(2295, 2473, 11, 2, 3, 'candidate more interested in accounts field ', 8, '2020-12-15 04:41:54', 1),
(2296, 2491, 8, 2, 0, 'will join after jan 5th. esale dhivya team', 21, '2020-12-15 06:19:05', 1),
(2297, 2527, 59, 5, 0, 'Not interested for Sales', 50, '0000-00-00 00:00:00', 1),
(2298, 2510, 38, 7, 3, 'confirm his salary 18k take home and joining by saturday', 50, '0000-00-00 00:00:00', 1),
(2299, 2535, 59, 5, 0, 'Only SEO Exp, No PPC xxamp Content exp', 50, '0000-00-00 00:00:00', 1),
(2300, 2513, 38, 7, 3, 'confirm his salary 20k take home and joining by saturday', 50, '0000-00-00 00:00:00', 1),
(2301, 2514, 38, 7, 0, 'selected as portfolio cRM...her salary sathish will confirm...', 50, '0000-00-00 00:00:00', 1),
(2302, 2490, 59, 5, 0, 'No Exp in PPC, content writing', 50, '0000-00-00 00:00:00', 1),
(2303, 2518, 8, 5, 3, 'looking for customer support and not interested in sales.', 50, '0000-00-00 00:00:00', 1),
(2304, 2538, 8, 4, 3, 'check for RE. ', 50, '0000-00-00 00:00:00', 1),
(2305, 2538, 24, 5, 1, 'not fit for telecalling and re profile', 8, '2020-12-16 01:12:00', 1),
(2306, 2542, 59, 5, 0, 'Good in Communication, High CTC expectation', 50, '0000-00-00 00:00:00', 1),
(2307, 2539, 8, 5, 0, 'not okay with the salary package', 50, '0000-00-00 00:00:00', 1),
(2308, 2485, 59, 4, 0, 'Have Exp in System Admin, can give a try', 50, '0000-00-00 00:00:00', 1),
(2309, 2546, 42, 7, 3, 'Check her previous agrement basis job and then Confirm her salary as we discussed', 50, '0000-00-00 00:00:00', 1),
(2310, 2539, 44, 9, 3, 'He is not fit for RM ,Check for RE', 8, '2020-12-16 03:02:00', 1),
(2311, 2510, 8, 3, 3, '18k th for RE gowshick team', 38, '2020-12-16 03:29:46', 1),
(2312, 2513, 8, 5, 0, 'Mismatch in payslip. will not join. salary exp is high', 38, '2020-12-16 03:34:15', 1),
(2313, 2514, 8, 5, 0, 'Mismatch In Payslip. Will Not Join. Salary Exp Is High', 38, '2020-12-16 03:36:02', 1),
(2314, 2543, 39, 5, 2, 'he will not suit for our filed and he donxquott have patience ', 50, '0000-00-00 00:00:00', 1),
(2315, 2485, 32, 5, 0, 'Expected Salary is High', 59, '2020-12-16 05:36:47', 1),
(2316, 2560, 8, 4, 2, 'fresher for sale. check for app fixing crm', 50, '0000-00-00 00:00:00', 1),
(2317, 2560, 21, 5, 0, 'not fit for our process', 8, '2020-12-17 12:59:35', 1),
(2318, 2316, 8, 5, 0, 'can try for crm', 20, '2020-12-17 04:08:50', 1),
(2319, 2381, 36, 7, 4, 'Selected for RM', 33, '2020-12-17 05:08:52', 1),
(2320, 2381, 8, 3, 0, '30k ctc and no pf and pt alone', 36, '2020-12-17 05:12:56', 1),
(2321, 2576, 59, 5, 0, 'No Communication, no Exp in Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2322, 2522, 59, 5, 0, 'Not much exp in Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2323, 2568, 11, 2, 3, 'need to check for bond sign', 50, '0000-00-00 00:00:00', 1),
(2324, 2479, 56, 4, 3, 'SELECTED FOR NEXT ROUND', 50, '0000-00-00 00:00:00', 1),
(2325, 2539, 8, 5, 0, 'not okay with the salary package', 44, '2020-12-18 11:22:55', 1),
(2326, 2564, 8, 5, 0, 'will not suite for sales and not interested too', 50, '0000-00-00 00:00:00', 1),
(2327, 2580, 8, 4, 0, 'check for  esale', 50, '0000-00-00 00:00:00', 1),
(2328, 2586, 8, 5, 0, 'not speaking up and will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(2329, 2582, 8, 3, 0, '12k ctc and for keerthiga team', 50, '0000-00-00 00:00:00', 1),
(2330, 2546, 8, 5, 0, 'will not  join. salary exp is high.', 42, '2020-12-18 01:06:45', 1),
(2331, 2590, 8, 4, 0, 'check for esale ', 50, '0000-00-00 00:00:00', 1),
(2332, 2580, 11, 5, 3, 'rejected due to long distance', 8, '2020-12-18 02:39:51', 1),
(2333, 2585, 59, 4, 0, 'have Exp in sales', 50, '0000-00-00 00:00:00', 1),
(2334, 2584, 59, 4, 0, 'Have exp in sales', 50, '0000-00-00 00:00:00', 1),
(2335, 2590, 21, 5, 0, 'not bold ...', 8, '2020-12-18 02:41:13', 1),
(2336, 2579, 39, 5, 1, 'HE WILL NOT SUSTAIN IN SALES FIELD', 50, '0000-00-00 00:00:00', 1),
(2337, 2479, 30, 7, 3, 'she is expecting high salary max we can offer 17k....if it is okay means confirm her joining', 56, '2020-12-18 03:39:49', 1),
(2338, 2584, 18, 5, 3, 'Not fit for our profile\n', 59, '2020-12-18 03:41:28', 1),
(2339, 2585, 18, 7, 3, 'Need to negotiate salary as he is already taking 28K. Also wishes to join as employee and need PF', 59, '2020-12-18 03:41:48', 1),
(2340, 2582, 21, 7, 0, 'ok selected , bahalf of karthika', 8, '2020-12-18 07:16:31', 1),
(2341, 2592, 59, 5, 0, 'He is in Govt employment, looking for freelance High budget exp', 50, '0000-00-00 00:00:00', 1),
(2342, 2552, 59, 5, 0, 'Stability issues,High CTC exp', 50, '0000-00-00 00:00:00', 1),
(2343, 2599, 59, 5, 0, 'Looking for Freelance only not much exp and very high Package Exp', 50, '0000-00-00 00:00:00', 1),
(2344, 2572, 27, 2, 0, 'Task Given. He will complete within 4.30', 50, '0000-00-00 00:00:00', 1),
(2345, 2585, 8, 5, 0, 'we offered 26k. no response from his end. will not join.', 18, '2020-12-19 11:57:52', 1),
(2346, 2424, 8, 5, 0, 'will not sustain, already applied job in UAE and waiting for visa.', 50, '0000-00-00 00:00:00', 1),
(2347, 2130, 8, 5, 2, 'will not sustain and will not suite for sales', 50, '0000-00-00 00:00:00', 1),
(2348, 2565, 42, 5, 1, 'she willnot suit for crm\nbad communication and she will not sustain', 50, '0000-00-00 00:00:00', 1),
(2349, 2600, 59, 5, 0, 'Not suitable,less exp high exp', 50, '0000-00-00 00:00:00', 1),
(2350, 2607, 8, 5, 0, 'not speaking up and IRDA code active in exide. zero pdt knowledge.', 50, '0000-00-00 00:00:00', 1),
(2351, 2598, 59, 5, 0, 'Good Profile, but high Exp xxamp not ok for Agreement', 50, '0000-00-00 00:00:00', 1),
(2352, 2609, 8, 5, 0, 'IRDA active in exide, wife working in aegon. zero pdt knowledge. exp 25k', 50, '0000-00-00 00:00:00', 1),
(2353, 2582, 8, 3, 0, '12k ctc and for keerthiga team', 21, '2020-12-19 03:59:35', 1),
(2354, 2479, 8, 3, 0, '17500 Ctc and sathish team.', 30, '2020-12-19 04:00:26', 1),
(2355, 2572, 27, 5, 0, 'task not Completed.', 27, '2020-12-19 05:16:12', 1),
(2356, 2310, 27, 5, 0, 'Need much experience on it.', 27, '2020-12-19 05:17:34', 1),
(2357, 2292, 27, 5, 0, 'Task Not completed', 27, '2020-12-19 05:17:49', 1),
(2358, 2214, 27, 5, 0, 'Task not completed', 27, '2020-12-19 05:18:23', 1),
(2359, 2218, 27, 5, 0, 'Task not completed.', 27, '2020-12-19 05:20:21', 1),
(2360, 2309, 27, 5, 0, 'Task not Completed.', 27, '2020-12-19 05:54:37', 1),
(2361, 2209, 27, 5, 0, 'He already got job.', 27, '2020-12-21 10:57:56', 1),
(2362, 2606, 59, 5, 0, 'Not fit for RE', 50, '0000-00-00 00:00:00', 1),
(2363, 2623, 38, 5, 1, 'HE WILL NOT SUIT FOR OUR PROFILE xxamp COMMUNICATION IS TOO WORST', 50, '0000-00-00 00:00:00', 1),
(2364, 2619, 59, 4, 0, 'Profile is Good', 50, '0000-00-00 00:00:00', 1),
(2365, 2625, 27, 2, 0, 'Task has to be given on 25th Dec 2020', 50, '0000-00-00 00:00:00', 1),
(2366, 2622, 8, 5, 2, 'will not suite for  RM. no convincing skill. not active too', 50, '0000-00-00 00:00:00', 1),
(2367, 2618, 59, 5, 0, 'Sustainability Issue', 50, '0000-00-00 00:00:00', 1),
(2368, 2627, 8, 4, 3, 'check for esale ', 50, '0000-00-00 00:00:00', 1),
(2369, 2626, 8, 5, 2, 'will not suite for sales, looking for admin job. will not sustain.', 50, '0000-00-00 00:00:00', 1),
(2370, 2515, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2371, 2597, 59, 5, 0, 'Not suitable for digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2372, 2628, 8, 2, 0, 'need to check for AM', 50, '0000-00-00 00:00:00', 1),
(2373, 2602, 30, 5, 1, 'He Will Not Sustain....He Will Not Handle Sales Pressure', 60, '0000-00-00 00:00:00', 1),
(2374, 2617, 41, 5, 0, 'No fluent in english\nNot good in content', 50, '0000-00-00 00:00:00', 1),
(2375, 2627, 11, 5, 0, 'she is not interested in sales ...looking for operations ', 8, '2020-12-21 05:29:34', 1),
(2376, 2515, 34, 5, 3, 'HE IS LOOKING FOR AN SI POST IN   POLICE ONCE HE CLEARS THE EXAM HE WILL MOVE OUT FROM OUR COMPANY', 8, '2020-12-21 05:34:29', 1),
(2377, 2614, 8, 5, 3, 'will not suite for RM. fresher and salary exp is high 25K. no convincing skill.', 50, '0000-00-00 00:00:00', 1),
(2378, 2635, 41, 5, 2, 'Will not sustain not interested in sales', 50, '0000-00-00 00:00:00', 1),
(2379, 2633, 8, 5, 0, 'not turned up', 50, '0000-00-00 00:00:00', 1),
(2380, 2633, 31, 2, 4, 'dont have sales experience, but having good language.  hold him, will conform', 8, '2020-12-21 05:43:09', 1),
(2381, 2593, 8, 3, 0, '12k th for srikanth team', 50, '0000-00-00 00:00:00', 1),
(2382, 2604, 8, 5, 0, 'not speaking up. will not suite for sales', 50, '0000-00-00 00:00:00', 1),
(2383, 2585, 33, 7, 0, 'Candidate is okey but 28000 is very cost kindly negotiate for 26k or 27 k maximum ', 8, '2020-12-22 11:16:15', 1),
(2384, 2629, 8, 5, 0, 'will not suite for calling and sales', 50, '0000-00-00 00:00:00', 1),
(2385, 2630, 8, 5, 0, 'no response from her end. will not join.\n', 50, '0000-00-00 00:00:00', 1),
(2386, 2634, 59, 5, 0, 'High CTC xxamp Not in content Writing', 50, '0000-00-00 00:00:00', 1),
(2387, 2662, 8, 4, 3, 'check for re ', 50, '0000-00-00 00:00:00', 1),
(2388, 2662, 24, 5, 0, 'candidate not come for 2nd round so rejected my side..', 8, '2020-12-22 01:12:29', 1),
(2389, 2593, 20, 7, 0, 'shortlisted,,, kindly through with final round', 8, '2020-12-22 01:21:51', 1),
(2390, 2630, 21, 7, 4, 'ok selected ,need to confirm joining', 8, '2020-12-22 01:28:09', 1),
(2391, 2659, 38, 5, 1, 'he will not sustain xxamp he will not suit for our field', 50, '0000-00-00 00:00:00', 1),
(2392, 2656, 8, 3, 0, '24ctc for rajkumar team and no pf', 50, '0000-00-00 00:00:00', 1),
(2393, 2593, 22, 7, 0, 'Fresher yet trustable', 20, '2020-12-22 02:55:49', 1),
(2394, 2656, 44, 4, 3, 'Please check once', 8, '2020-12-22 02:58:56', 1),
(2395, 2630, 8, 5, 0, 'no response from her end. will not join.\n', 21, '2020-12-22 03:17:03', 1),
(2396, 2678, 8, 4, 3, 'check for rM', 50, '0000-00-00 00:00:00', 1),
(2397, 2628, 8, 5, 0, '37+  will not suite for sales. no sales exp. NRI', 8, '2020-12-23 10:14:13', 1),
(2398, 2686, 8, 3, 0, '25ctc with pf', 50, '0000-00-00 00:00:00', 1),
(2399, 2680, 59, 5, 0, 'Not much exp in Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2400, 2656, 18, 7, 4, 'Selected for Raj Team. Expected salary is 25 k including PF. Can negotiate and reduce it upto 24K. Ready to join immedieatly so kindly initiate the joining', 44, '2020-12-23 10:48:38', 1),
(2401, 2678, 44, 4, 3, 'Fresher and Need your Suggestion  ', 8, '2020-12-23 11:03:52', 1),
(2402, 2335, 8, 3, 0, '26192 th and with pf for sanjeev team', 8, '2020-12-23 11:16:19', 1),
(2403, 2631, 38, 5, 2, 'no bike....he will not suit for our profile and  ixquotm not satisfied with his communication ', 50, '0000-00-00 00:00:00', 1),
(2404, 2632, 38, 5, 2, 'No Bike....He Will Not Suit For Our Profile And  Ixquotm Not Satisfied With His Communication ', 50, '0000-00-00 00:00:00', 1),
(2405, 2678, 29, 5, 1, 'not selected', 44, '2020-12-23 11:33:18', 1),
(2406, 2615, 8, 4, 3, 'check for esale', 50, '0000-00-00 00:00:00', 1),
(2407, 2682, 59, 5, 0, 'Not much exp sustainability issue', 50, '0000-00-00 00:00:00', 1),
(2408, 2683, 59, 5, 0, 'Good Profile,only in seo and Exp in more', 50, '0000-00-00 00:00:00', 1),
(2409, 2615, 11, 4, 0, 'candidate communication is ok.need to check sustainability', 8, '2020-12-23 12:26:10', 1),
(2410, 2684, 8, 5, 0, 'will  not suit for calling, no convincing skill.', 50, '0000-00-00 00:00:00', 1),
(2411, 2569, 59, 5, 0, 'No Exp and not fit for digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2412, 2644, 8, 5, 0, 'exp 32k and he will not join.', 50, '0000-00-00 00:00:00', 1),
(2413, 2693, 8, 4, 3, 'check for rm profile.', 50, '0000-00-00 00:00:00', 1),
(2414, 2675, 8, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(2415, 2673, 8, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(2416, 2674, 8, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(2417, 2652, 59, 5, 0, 'No Exp and Sustainability issue\n', 50, '0000-00-00 00:00:00', 1),
(2418, 2696, 53, 7, 0, 'Shortlisted for arumbakkam branch, Gud communication, hvng experience in health, He is ok fr bond also, Sal CTC 16.5k, Saravana team', 50, '0000-00-00 00:00:00', 1),
(2419, 2696, 8, 3, 3, '16500k as ctc for saravana team.', 53, '2020-12-23 05:12:19', 1),
(2420, 2693, 29, 5, 1, 'He donxquott want RM profile or sales profile, he wants BPO service', 8, '2020-12-23 05:37:48', 1),
(2421, 2691, 8, 4, 3, 'check for RM', 7, '0000-00-00 00:00:00', 1),
(2422, 2691, 36, 5, 0, 'Not fit RM\nExpected pay very high so RE also not possible', 8, '2020-12-23 06:51:41', 1),
(2423, 2644, 33, 4, 3, 'Asking high package but not suitable for high package convey maximum 25k salary to candidate with management permission', 8, '2020-12-23 06:53:49', 1),
(2424, 2615, 67, 2, 3, 'will meet her for second round and decide', 11, '2020-12-24 11:18:10', 1),
(2425, 2568, 8, 5, 0, 'will not relocate. will not join.', 11, '2020-12-24 11:19:32', 1),
(2426, 2568, 11, 7, 0, 'have to check for bond ', 11, '2020-12-24 11:19:32', 1),
(2427, 2473, 11, 5, 0, 'interested in accounts field ', 11, '2020-12-24 11:19:51', 1),
(2428, 2702, 59, 5, 0, 'Sustainability issue', 50, '0000-00-00 00:00:00', 1),
(2429, 2593, 8, 3, 0, '12k th for srikanth team', 22, '2020-12-24 12:38:51', 1),
(2430, 2624, 38, 5, 2, 'HE DONT HAVE BIKE AND HE CANT ARRANGE SO HE WILL NOT SUIT FOR OUR FIELD', 50, '0000-00-00 00:00:00', 1),
(2431, 2709, 38, 5, 2, 'he dont have bike, he cant arrange.', 50, '0000-00-00 00:00:00', 1),
(2432, 2694, 59, 5, 0, 'Not fit for digital Marketing,', 50, '0000-00-00 00:00:00', 1),
(2433, 2698, 8, 5, 3, 'No sales skill , and no relevant exp. ', 50, '0000-00-00 00:00:00', 1),
(2434, 2644, 8, 5, 0, 'exp 32k and he will not join.', 33, '2020-12-24 02:55:52', 1),
(2435, 2585, 8, 5, 0, 'we offered 26k. no response from his end. will not join.', 33, '2020-12-24 06:50:55', 1),
(2436, 2610, 53, 5, 0, 'looking non voice process', 52, '0000-00-00 00:00:00', 1),
(2437, 2711, 53, 4, 0, 'ok. average communication, gud n confidence, hvng fianl year sem, need only permoision for the sem exam in the month of jan, sal ctc 13750.', 52, '0000-00-00 00:00:00', 1),
(2438, 2718, 53, 5, 0, 'fresh nd new for chennai, no proper pronounciation nd confidence.', 52, '0000-00-00 00:00:00', 1),
(2439, 2711, 19, 4, 4, 'fit for sales', 53, '2020-12-25 12:50:08', 1),
(2440, 2711, 22, 7, 0, 'Kindly finalize the candidate 13750 as ctc. Joining by 4 th of january... joining for kannan team', 19, '2020-12-25 12:54:51', 1),
(2441, 2714, 53, 4, 0, 'Average communication, dont hve pure sales experience, but will try.', 52, '0000-00-00 00:00:00', 1),
(2442, 2714, 29, 5, 1, 'will not suit our profile', 53, '2020-12-25 01:20:20', 1),
(2443, 2660, 39, 5, 2, 'he will not suit for our field bcs not good in communication', 52, '0000-00-00 00:00:00', 1),
(2444, 2711, 8, 3, 0, '13750ctc and for kannan team', 22, '2020-12-25 04:35:18', 1),
(2445, 2091, 53, 4, 0, 'taken telephonic round, we can try for training period that 7 days even clearly informed to candidate also. we can try. ctc 12750.', 52, '0000-00-00 00:00:00', 1),
(2446, 2091, 22, 7, 0, 'Shortlisted for 12650 CTC as RE for Srikanthxquots team,  Joining by monday 28th DEC', 53, '2020-12-25 04:42:06', 1),
(2447, 2091, 8, 7, 0, 'Shortlisted For 12650 CTC As RE For Srikanthxquots Team,  Joining By Monday 28th DEC', 22, '2020-12-25 05:09:52', 1),
(2448, 2726, 59, 5, 0, 'Looking for Core openings,for time being looking for a job', 50, '0000-00-00 00:00:00', 1),
(2449, 2713, 59, 5, 0, 'Looking for the core openings only', 50, '0000-00-00 00:00:00', 1),
(2450, 2731, 59, 5, 0, 'Will not fit for sales', 50, '0000-00-00 00:00:00', 1),
(2451, 2719, 59, 5, 0, 'Not interested in sales. Looking for bank openings ', 50, '0000-00-00 00:00:00', 1),
(2452, 2733, 53, 5, 0, 'Student. ', 50, '0000-00-00 00:00:00', 1),
(2453, 2722, 53, 5, 0, 'Student. he ll complete the course in the month of april only', 50, '0000-00-00 00:00:00', 1),
(2454, 2732, 59, 5, 0, 'Not open for Sales', 50, '0000-00-00 00:00:00', 1),
(2455, 2735, 53, 5, 0, 'no sales experience. but will try', 50, '0000-00-00 00:00:00', 1),
(2456, 2737, 53, 4, 0, 'check fr RM', 50, '0000-00-00 00:00:00', 1),
(2457, 2736, 53, 5, 0, 'student', 50, '0000-00-00 00:00:00', 1),
(2458, 2724, 59, 5, 0, 'Not interested for sales, Looking for bank openings only\n', 50, '0000-00-00 00:00:00', 1),
(2459, 2734, 59, 5, 0, 'Not Fit for sales', 50, '0000-00-00 00:00:00', 1),
(2460, 2716, 59, 5, 0, 'Sustainability Issue,will not fit for esales', 50, '0000-00-00 00:00:00', 1),
(2461, 2741, 59, 5, 0, 'Not ready to go for field sales', 50, '0000-00-00 00:00:00', 1),
(2462, 2729, 59, 9, 0, 'shortlisted for esales ', 50, '0000-00-00 00:00:00', 1),
(2463, 2169, 27, 5, 0, 'Joined in another Company', 27, '2020-12-26 03:27:07', 1),
(2464, 2205, 27, 5, 0, 'he is not coming.', 27, '2020-12-26 03:28:00', 1),
(2465, 2091, 7, 1, 0, NULL, 8, '2020-12-26 04:13:00', 1),
(2466, 2729, 11, 4, 0, 'communication is good ', 59, '2020-12-26 04:45:48', 1),
(2467, 2743, 59, 4, 0, 'Internal Team reference,no exp in Insurance sales', 60, '0000-00-00 00:00:00', 1),
(2468, 2743, 36, 4, 0, 'Selected for RM to Veben Team', 59, '2020-12-26 06:13:47', 1),
(2469, 2738, 59, 5, 0, 'Sustainability issue, Worked into various positions', 50, '0000-00-00 00:00:00', 1),
(2470, 2744, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2471, 2715, 59, 5, 0, 'Not much exp in digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2472, 2705, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2473, 2746, 59, 5, 0, 'Not suitable much into IT positions only few exp in DM ', 50, '0000-00-00 00:00:00', 1),
(2474, 2751, 8, 4, 2, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2475, 2739, 8, 5, 3, '10 years in cs, looking for inside sales. exp sal is 4L. age and salary will not match as CRM/esale', 50, '0000-00-00 00:00:00', 1),
(2476, 2699, 8, 5, 3, 'will not sustain and not interested in sales. fresher', 50, '0000-00-00 00:00:00', 1),
(2477, 2744, 24, 5, 0, 'NOT FIT FOR RE', 8, '2020-12-28 12:55:26', 1),
(2478, 2705, 24, 5, 0, 'NOT FIT FOR  RE', 8, '2020-12-28 12:57:37', 1),
(2479, 2751, 24, 5, 1, 'NOT FIT FOR RE PROFILE. LOOK LIKE PULLINGO', 8, '2020-12-28 12:59:14', 1),
(2480, 2737, 33, 4, 3, 'Candidate expected salary 28000 but not suitable for that salary please negotiate maximum 25000 else please allocate other bdm thanks ', 53, '2020-12-28 01:37:24', 1),
(2481, 2737, 18, 7, 4, 'Shortlisted For Raj Team. Expected salary is 25k but not worth more than 21 and can negotiate. Also commited to increase his salary after seeing 6 months perfomance. Willing to join from 2nd Jan', 33, '2020-12-28 02:08:52', 1),
(2482, 2737, 8, 3, 0, '21500 ctc, no pf for Rajkumar team', 18, '2020-12-28 03:45:30', 1),
(2483, 2769, 8, 5, 0, 'not speaking up,  will not suite for any profile', 50, '0000-00-00 00:00:00', 1),
(2484, 2767, 8, 5, 0, 'not speaking up, fresher will  not suite for RE.', 7, '0000-00-00 00:00:00', 1),
(2485, 2774, 8, 4, 3, 'check for RM', 7, '0000-00-00 00:00:00', 1),
(2486, 2728, 59, 5, 0, 'Sustainability Issue and  not fit for DM', 50, '0000-00-00 00:00:00', 1),
(2487, 2754, 8, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(2488, 2765, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2489, 2763, 8, 5, 2, 'fresher, will not suite for callind, and long distance too. 2hrs', 50, '0000-00-00 00:00:00', 1),
(2490, 2729, 67, 4, 0, 'sELECTED.. DELAY IN JOINING AS SHE HAS SOME PERSONAL ISSUES- DEATH OF FAMILY MEMBER', 11, '2020-12-29 12:40:05', 1),
(2491, 2776, 59, 8, 0, 'Left without attending the interview', 50, '0000-00-00 00:00:00', 1),
(2492, 2760, 59, 5, 0, 'Not much exp in DM', 50, '0000-00-00 00:00:00', 1),
(2493, 2774, 33, 9, 2, 'candidate looking for crm or esales kindly check with particular managere thanks ', 8, '2020-12-29 01:44:23', 1),
(2494, 2765, 24, 5, 0, 'He is not willing to work weekends including saturday..', 8, '2020-12-29 01:46:50', 1),
(2495, 2768, 8, 5, 0, 'Fresher, Will Not Suite For Calling And Sales. Not Speaking Up And Language Is Not Good.', 7, '0000-00-00 00:00:00', 1),
(2496, 2755, 8, 5, 0, 'will not sustain and time being looking for job.', 7, '0000-00-00 00:00:00', 1),
(2497, 2656, 8, 3, 0, '24ctc for rajkumar team and no pf', 18, '2020-12-29 05:13:45', 1),
(2498, 2793, 8, 4, 3, 'check for rm', 7, '0000-00-00 00:00:00', 1),
(2499, 2783, 8, 2, 0, 'will join after 20th jan. gk team', 7, '0000-00-00 00:00:00', 1),
(2500, 2796, 59, 4, 0, 'Shortlisted for Esale, Dept change ', 7, '0000-00-00 00:00:00', 1),
(2501, 2752, 59, 5, 0, 'Not much exp in digital Marketing', 7, '0000-00-00 00:00:00', 1),
(2502, 2798, 59, 5, 0, 'Not much communicative, will not fit for sales', 7, '0000-00-00 00:00:00', 1),
(2503, 2774, 7, 1, 0, NULL, 33, '2020-12-30 12:22:04', 1),
(2504, 2799, 59, 5, 0, 'Not open for Field Sales', 50, '0000-00-00 00:00:00', 1),
(2505, 2743, 40, 4, 3, 'Looking for Job and zero knowledge in sales/ but seems like a long runner and interested to learn new things as well.', 36, '2020-12-30 03:21:33', 1),
(2506, 2743, 18, 8, 0, 'Please reschedule\n', 40, '2020-12-30 04:00:44', 1),
(2507, 2619, 54, 7, 0, 'Selected, CTC-306000 for first three months and after three months CTC-336000', 59, '2020-12-30 04:12:19', 1),
(2508, 2802, 36, 4, 3, 'Selected for RM', 50, '0000-00-00 00:00:00', 1),
(2509, 2783, 29, 7, 3, 'for RM profile, GK team, salary 22k,, if produ is average 1.5 lacs moM will increase 2k from 4th month, joining expected after 15th jan 21', 8, '2020-12-30 04:37:42', 1),
(2510, 2793, 29, 5, 1, 'will not suit for our profile', 8, '2020-12-30 04:39:13', 1),
(2511, 2783, 8, 2, 0, 'will join after 20th jan. gk team', 29, '2020-12-30 04:54:03', 1),
(2512, 2619, 8, 3, 0, 'for it.  25.5k', 54, '2020-12-30 05:05:37', 1),
(2513, 2802, 18, 7, 4, 'Selected for logesh team. Expected was 30 but  convinced for 25K take home as a consultant. ready to join on 2nd jan 2021. kindly initiate the joining process', 36, '2020-12-30 05:33:35', 1),
(2514, 2796, 8, 5, 0, 'will not suite for esale', 59, '2020-12-30 06:40:34', 1),
(2515, 2800, 8, 5, 2, 'will not suite for sales, no sales exp too.', 50, '0000-00-00 00:00:00', 1),
(2516, 2811, 8, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(2517, 2802, 8, 3, 0, '25k as ctc and for lokesh team.', 18, '2020-12-31 12:19:42', 1),
(2518, 2807, 53, 4, 0, 'Shortlisted for Guru Team', 50, '0000-00-00 00:00:00', 1),
(2519, 2808, 53, 4, 0, 'Shortlisted for Saravanan team', 50, '0000-00-00 00:00:00', 1),
(2520, 2794, 8, 5, 0, 'time being looking for job. will join in his father office soon.', 50, '0000-00-00 00:00:00', 1),
(2521, 2816, 59, 5, 0, 'No fit for Insurance Sales', 50, '0000-00-00 00:00:00', 1),
(2522, 2814, 59, 4, 0, 'Having knowledge on Star helath products\n', 50, '0000-00-00 00:00:00', 1),
(2523, 2815, 59, 5, 0, 'Not open for Insurance Sales\n', 50, '0000-00-00 00:00:00', 1),
(2524, 2823, 59, 5, 0, 'Will not sustain ', 50, '0000-00-00 00:00:00', 1),
(2525, 2821, 41, 5, 0, 'Not relevant at all', 50, '0000-00-00 00:00:00', 1),
(2526, 2826, 59, 5, 0, 'Sustainability issue', 50, '0000-00-00 00:00:00', 1),
(2527, 2808, 8, 7, 0, 'CTC - 176844 TH - 14000\nGross-14737', 53, '2021-01-02 04:33:10', 1),
(2528, 2807, 34, 7, 4, 'SELECTED ', 53, '2021-01-02 04:33:32', 1),
(2529, 2808, 7, 1, 0, NULL, 8, '2021-01-02 04:35:47', 1),
(2530, 2814, 16, 7, 0, 'Good Candidate ,selected', 59, '2021-01-02 06:22:58', 1),
(2531, 2814, 8, 7, 0, 'Shortlisted for Thiyagu Team CTC 146400 , Gross 12200 ,TH 11590', 16, '2021-01-02 06:34:06', 1),
(2532, 2814, 7, 1, 0, NULL, 8, '2021-01-02 06:37:14', 1),
(2533, 2837, 59, 5, 0, 'No Exp in Adobe Tools, Not much exp into UI UX, will not sustain', 50, '0000-00-00 00:00:00', 1),
(2534, 2839, 59, 4, 0, 'Internal Reference, can give a try for esales', 50, '0000-00-00 00:00:00', 1),
(2535, 2835, 59, 5, 0, 'Not much exp in UI UX, only into basics of HTML CSS,No Exp in Adobe tools', 50, '0000-00-00 00:00:00', 1),
(2536, 2840, 59, 2, 0, 'Only Exp in UI,System test has been given', 50, '0000-00-00 00:00:00', 1),
(2537, 2831, 27, 2, 0, 'Task Given. he will send back to us once completed.', 50, '0000-00-00 00:00:00', 1),
(2538, 2803, 8, 5, 2, 'No Sales Exp. . Prefers Admin Job. Will Not Sustain. quit her job bcoz of shift timing and Long distance. will not adapt  easily and will not work in sales pressure. exp 15k+', 50, '0000-00-00 00:00:00', 1),
(2539, 2843, 8, 4, 3, 'check for crm for keerthika team', 50, '0000-00-00 00:00:00', 1),
(2540, 2795, 8, 5, 2, 'no sales exp. will not suite for calling. prefers admin job. will not sustain.', 50, '0000-00-00 00:00:00', 1),
(2541, 2828, 8, 5, 2, 'very slow and after his degree 4yr he was Searching job.  will  not  sustain.', 50, '0000-00-00 00:00:00', 1),
(2542, 2848, 59, 4, 0, 'Having exp in Angular but not in React ,Can give a try', 50, '0000-00-00 00:00:00', 1),
(2543, 2843, 11, 5, 0, 'not suitable for crm profile..sustainability is doubt', 8, '2021-01-04 03:06:31', 1),
(2544, 2839, 67, 5, 0, 'aS THE CANDIDATE HAS 3 MONTHS EXPERIENCE IN SERVICE RELATED COMPANY. NOT APT FOR TELESALES.', 59, '2021-01-04 05:54:02', 1),
(2545, 2615, 67, 5, 0, 'nOT WILLING TO SIGN AGREEMENT AS HER INTENTION WAS TO STAY FOR LESSER PERIOD OF TIME.', 67, '2021-01-04 05:57:22', 1),
(2546, 2729, 8, 5, 0, 'got offer will not join.', 67, '2021-01-04 06:00:25', 1),
(2547, 2357, 8, 5, 0, 'no response from her end.  not interested.', 8, '2021-01-05 11:08:29', 1),
(2548, 2491, 8, 5, 0, 'will not join. not okay with the salary package.', 8, '2021-01-05 11:08:58', 1),
(2549, 2856, 8, 8, 0, 'not attended', 50, '0000-00-00 00:00:00', 1),
(2550, 2846, 8, 3, 0, '9k ctc for keerthika team.', 50, '0000-00-00 00:00:00', 1),
(2551, 2860, 8, 5, 0, 'got offer and updated the same.', 50, '0000-00-00 00:00:00', 1),
(2552, 2844, 8, 4, 3, 'check for rm. ', 50, '0000-00-00 00:00:00', 1),
(2553, 2861, 34, 7, 4, 'SELECTED', 7, '0000-00-00 00:00:00', 1),
(2554, 2855, 27, 5, 0, 'Not Upto the Level. He is telling i am not recall the technologies.', 50, '0000-00-00 00:00:00', 1),
(2555, 2863, 27, 2, 0, 'Task Given. She will complete and call back us on 8th jan 2021', 50, '0000-00-00 00:00:00', 1),
(2556, 2860, 8, 5, 0, 'got offer and updated the same.', 8, '2021-01-05 01:46:56', 1),
(2557, 2844, 40, 4, 4, 'Zero knowledge in sales/Job requirements highly needed/Attitude matters.', 8, '2021-01-05 01:48:20', 1),
(2558, 2844, 18, 4, 3, 'Not 100% sure so gave to gaurav for double check', 40, '2021-01-05 02:16:11', 1),
(2559, 2865, 44, 4, 3, 'Candidate ok for me and need your Suggestion ', 7, '0000-00-00 00:00:00', 1),
(2560, 2846, 18, 7, 0, 'selected. 9k as take home. ', 8, '2021-01-05 04:23:38', 1),
(2561, 2865, 29, 7, 3, 'selected for rM, Shanmugam team, refer resume for salary structure', 44, '2021-01-05 05:12:36', 1),
(2562, 2840, 59, 5, 0, 'No Exp in UX ', 59, '2021-01-05 06:42:20', 1),
(2563, 2848, 54, 2, 0, 'System round pending', 59, '2021-01-05 06:43:46', 1),
(2564, 2875, 8, 3, 2, '15k ctc for suthagar team.', 7, '0000-00-00 00:00:00', 1),
(2565, 2874, 8, 3, 3, '15k ctc for Suthagar team', 7, '0000-00-00 00:00:00', 1),
(2566, 2836, 8, 5, 0, 'will  not suite for our profile, will not sustain.  switched company for salary', 7, '0000-00-00 00:00:00', 1),
(2567, 2845, 8, 2, 0, 'very nervous so asked to come again.', 7, '0000-00-00 00:00:00', 1),
(2568, 2879, 8, 5, 0, 'will not suite for esale.', 7, '0000-00-00 00:00:00', 1),
(2569, 2247, 8, 4, 0, 'check for RE', 7, '0000-00-00 00:00:00', 1),
(2570, 2885, 8, 4, 3, 'check for RM', 7, '0000-00-00 00:00:00', 1),
(2571, 2886, 8, 3, 0, '22k ctc for shanmugam team. no pf.', 7, '0000-00-00 00:00:00', 1),
(2572, 2883, 8, 3, 0, '15k ctc for karthika team. esale', 7, '0000-00-00 00:00:00', 1),
(2573, 2884, 56, 5, 0, 'Not fit for sales', 7, '0000-00-00 00:00:00', 1),
(2574, 2887, 27, 2, 0, 'Interview Taken. Task Given.', 50, '0000-00-00 00:00:00', 1),
(2575, 2858, 27, 4, 0, 'having 10 Years experience. Worked in all the verticals. Gs has to check and confirm.', 50, '0000-00-00 00:00:00', 1),
(2576, 2827, 27, 2, 0, 'Interview taken. Task Given.', 50, '0000-00-00 00:00:00', 1),
(2577, 2247, 16, 5, 0, ' Sustain doubt', 8, '2021-01-06 03:18:10', 1),
(2578, 2875, 20, 4, 0, 'selected for kannan', 8, '2021-01-06 03:19:23', 1),
(2579, 2874, 20, 4, 0, 'selected for suthagar', 8, '2021-01-06 03:20:12', 1),
(2580, 2883, 67, 7, 0, 'sELECTED AND WILL JOIN ON 20TH JAN AS SHE HAS PERSONAL COMMITMENT TILL 20TH JAN. sALARY FIXED 15K WITH mR.sURESH vERBAL aPPROVAL. eX EMPLOYEE OF cAFS,\n2YEARS AGREEMENT DISCUSSED', 8, '2021-01-06 03:21:20', 1),
(2581, 2885, 44, 5, 2, 'He is not fit for Life sales', 8, '2021-01-06 03:22:31', 1),
(2582, 2886, 44, 4, 3, 'Candidate ok for me and need your Approval ', 8, '2021-01-06 03:23:50', 1),
(2583, 2886, 29, 7, 2, 'rM - Shanmugam team', 44, '2021-01-06 05:58:54', 1),
(2584, 2858, 54, 2, 0, 'task assigned.', 27, '2021-01-06 06:04:11', 1),
(2585, 2865, 8, 3, 0, '23 ctc and hike after 3 month.1.5l target. for shanmugam team', 29, '2021-01-06 06:24:09', 1),
(2586, 2886, 8, 3, 0, '22k ctc for shanmugam team. no pf.', 29, '2021-01-06 06:32:15', 1),
(2587, 2846, 8, 3, 0, '9k ctc for keerthika team.', 18, '2021-01-07 10:17:55', 1),
(2588, 2899, 59, 4, 0, 'Have relevant Exp in Insurance, Can give a try', 60, '0000-00-00 00:00:00', 1),
(2589, 2898, 59, 4, 0, 'Have exp in Sales,Can give a try', 60, '0000-00-00 00:00:00', 1),
(2590, 2830, 27, 5, 0, 'He donxquott know the basics.', 60, '0000-00-00 00:00:00', 1),
(2591, 2904, 59, 5, 0, 'Not fit into sales', 50, '0000-00-00 00:00:00', 1),
(2592, 2903, 59, 5, 0, 'Will not fit for Sales', 50, '0000-00-00 00:00:00', 1),
(2593, 2901, 59, 5, 0, 'Not much communicative, will not fir for sales', 50, '0000-00-00 00:00:00', 1),
(2594, 2902, 8, 5, 0, 'bad attitude. chewing the chewing gum while interview and very lethargic', 50, '0000-00-00 00:00:00', 1),
(2595, 2900, 8, 4, 4, 'check for re', 50, '0000-00-00 00:00:00', 1),
(2596, 2905, 8, 5, 0, 'will not suite for our process looking  for admin job', 50, '0000-00-00 00:00:00', 1),
(2597, 2907, 8, 4, 0, 'check for esale', 50, '0000-00-00 00:00:00', 1),
(2598, 2906, 59, 5, 0, 'Sustainability Issue 2yrs 3 companies changed', 50, '0000-00-00 00:00:00', 1),
(2599, 2909, 59, 5, 0, 'No relevant Exp,Will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(2600, 2899, 57, 4, 0, 'candidate is ok .. ', 59, '2021-01-07 02:45:02', 1),
(2601, 2875, 19, 4, 0, 'selected for next round', 20, '2021-01-07 02:46:37', 1),
(2602, 2874, 24, 4, 0, 'candidate selected for 2nd round', 20, '2021-01-07 02:46:59', 1),
(2603, 2875, 22, 7, 0, 'Selected for Kannan Team.\nfresher yet seems suitable for RE.\nKindly do the joining Procedures.', 19, '2021-01-07 02:48:02', 1),
(2604, 2898, 16, 5, 0, 'no sales skills', 59, '2021-01-07 02:48:55', 1),
(2605, 2874, 22, 7, 0, 'Shortlised for Suthagar Team.\nkindly do the joining procedures', 24, '2021-01-07 02:49:25', 1),
(2606, 2874, 8, 3, 3, '15k ctc for Suthagar team', 22, '2021-01-07 02:51:24', 1),
(2607, 2866, 27, 2, 0, 'Task Given.', 60, '0000-00-00 00:00:00', 1),
(2608, 2875, 8, 3, 2, '15k ctc for suthagar team.', 22, '2021-01-07 02:52:26', 1),
(2609, 2899, 22, 7, 0, 'Experienced Candidate Kindly allocate to syedxquots team', 57, '2021-01-07 02:52:51', 1),
(2610, 2899, 8, 3, 0, '18k ctc for syed team', 22, '2021-01-07 02:54:18', 1),
(2611, 2844, 29, 5, 1, 'will not fit for any profile, has not worked for last 1 year, expecting higher salary, however zero skill ', 18, '2021-01-07 02:59:30', 1),
(2612, 2911, 8, 3, 0, '10k th for keerthiga team.', 50, '0000-00-00 00:00:00', 1),
(2613, 2910, 8, 5, 0, 'will  not suite for calling', 50, '0000-00-00 00:00:00', 1),
(2614, 2907, 21, 4, 4, 'candidate ok ', 8, '2021-01-07 05:29:23', 1),
(2615, 2900, 19, 5, 0, 'not fit for sales', 8, '2021-01-07 05:31:06', 1),
(2616, 2907, 67, 5, 0, 'She demanded for higher salary. (18K) We offered as per esales norms.  Arun HR spoke to her over phone for her willingness but she refused our offer.', 21, '2021-01-07 05:53:29', 1),
(2617, 2911, 18, 7, 3, 'Selected as CRM for keerthika team. Expected salary is 12K but can negotiate. Ready to Join on 18 Jan\n ', 8, '2021-01-07 06:52:33', 1),
(2618, 2883, 8, 3, 0, '15k ctc for karthika team. esale', 67, '2021-01-07 08:08:00', 1),
(2619, 2916, 8, 5, 0, 'will not suite for calling.  not speaking up.', 50, '0000-00-00 00:00:00', 1),
(2620, 2807, 8, 5, 0, 'no response', 34, '2021-01-08 10:55:59', 1),
(2621, 2861, 8, 3, 0, '13k ctc for syed team', 34, '2021-01-08 11:06:41', 1),
(2622, 2917, 8, 4, 0, 'check for RE, fresher', 50, '0000-00-00 00:00:00', 1),
(2623, 2918, 56, 4, 3, 'selected for next round', 50, '0000-00-00 00:00:00', 1),
(2624, 2915, 8, 2, 0, 'hold', 50, '0000-00-00 00:00:00', 1),
(2625, 2914, 27, 2, 0, 'Task Given. he will complete and let us know.', 60, '0000-00-00 00:00:00', 1),
(2626, 2917, 24, 7, 0, 'Candidate selected for next round', 8, '2021-01-08 01:37:08', 1),
(2627, 2890, 27, 5, 0, 'We are Looking more Experienced. He dont have much knowledge in Photoshop.', 60, '0000-00-00 00:00:00', 1),
(2628, 2920, 59, 5, 0, 'Will not fit into sales, Not communicating', 60, '0000-00-00 00:00:00', 1),
(2629, 2924, 59, 5, 0, 'Looking only for Admin positions, not open for Sales', 60, '0000-00-00 00:00:00', 1),
(2630, 2926, 59, 5, 0, 'Not open for Sales, looking for voice process,but not for sales', 60, '0000-00-00 00:00:00', 1),
(2631, 2917, 22, 7, 4, 'good candidate and also spokened for 1 year bond', 24, '2021-01-08 04:31:54', 1),
(2632, 2917, 60, 1, 0, NULL, 22, '2021-01-08 04:34:30', 1),
(2633, 2914, 27, 2, 0, 'Task Given. he will Complete and send back tomorrow.', 27, '2021-01-08 06:34:43', 1),
(2634, 2925, 59, 5, 0, 'Will Not sustain in Sales, Focus much into IT positions', 60, '0000-00-00 00:00:00', 1),
(2635, 2862, 27, 2, 0, 'Interview Taken. task Given', 60, '0000-00-00 00:00:00', 1),
(2636, 2929, 8, 4, 3, 'check for esale. have 5yr exp in sim sales.', 60, '0000-00-00 00:00:00', 1),
(2637, 2929, 21, 5, 3, 'She Is Not Able To Sustain Long Term ,Bcz,  She Have Family Problem With Husband.. Not Suit For Our Procees', 8, '2021-01-09 12:48:30', 1),
(2638, 1887, 27, 2, 0, 'Interview taken. Task Given', 7, '0000-00-00 00:00:00', 1),
(2639, 2918, 30, 7, 3, 'verify existing payslip and bank statement bcoz existing package 28k but i finalised 25k take home.16th only he will join.so confirm from your end further process.thanks', 56, '2021-01-09 03:43:42', 1),
(2640, 2918, 8, 3, 3, '25k  ctc and no pf. ', 30, '2021-01-09 05:08:52', 1),
(2641, 2827, 27, 5, 0, 'Task Not Satisfied.', 27, '2021-01-11 10:30:10', 1),
(2642, 2937, 59, 5, 0, 'Will not fit into Insurance Sales', 60, '0000-00-00 00:00:00', 1),
(2643, 2933, 59, 4, 0, 'No relevant Exp , can give a try ', 60, '0000-00-00 00:00:00', 1),
(2644, 2944, 59, 4, 0, 'Profile oK. Can give a try for Sales', 7, '0000-00-00 00:00:00', 1),
(2645, 2936, 59, 4, 0, 'Have Exp in Sales,profile ok', 7, '0000-00-00 00:00:00', 1),
(2646, 2934, 68, 7, 4, 'Shortlisted', 7, '0000-00-00 00:00:00', 1),
(2647, 2943, 68, 7, 4, 'Expectig 3L CTC', 7, '0000-00-00 00:00:00', 1),
(2648, 2784, 27, 2, 0, 'Task Given', 60, '0000-00-00 00:00:00', 1),
(2649, 2944, 19, 4, 4, 'Job needed', 59, '2021-01-11 03:19:48', 1),
(2650, 2936, 19, 4, 0, 'Salary 16k', 59, '2021-01-11 03:21:15', 1),
(2651, 2933, 34, 7, 4, 'SELECTED NEXT WEDNESDAY JOING ', 59, '2021-01-11 03:21:56', 1),
(2652, 2946, 59, 4, 0, 'Good Communication,Internal Saranya Devi Ref,Can give a try for sales', 60, '0000-00-00 00:00:00', 1),
(2653, 2946, 18, 7, 4, 'Selected for Veben Team. Salary agreed is 25K take home per month and can ignore pf. Immed joining', 59, '2021-01-11 03:47:04', 1),
(2654, 2870, 59, 4, 0, 'Have Exp in ICICI Loan sales, can give a try for RE', 7, '0000-00-00 00:00:00', 1),
(2655, 2946, 8, 3, 3, '25k ctc for veben team.', 18, '2021-01-11 06:08:34', 1),
(2656, 2870, 16, 1, 0, NULL, 59, '2021-01-11 06:12:59', 1),
(2657, 2934, 0, 1, 0, NULL, 68, '2021-01-11 06:45:11', 1),
(2658, 2943, 0, 1, 0, NULL, 68, '2021-01-11 06:48:20', 1),
(2659, 2944, 22, 7, 4, 'canditate ok', 19, '2021-01-11 06:57:25', 1),
(2660, 2936, 22, 7, 4, 'canditate ok', 19, '2021-01-11 06:58:15', 1),
(2661, 2922, 56, 4, 4, 'selected for next round', 7, '0000-00-00 00:00:00', 1),
(2662, 2922, 30, 7, 3, 'Confirm her salary 21k and joining process', 56, '2021-01-11 07:07:17', 1),
(2663, 2936, 8, 3, 0, '16k ctc for kannan team', 22, '2021-01-12 11:02:27', 1),
(2664, 2944, 8, 3, 0, '15k ctc for kannan team', 22, '2021-01-12 11:03:08', 1),
(2665, 2845, 8, 5, 0, 'no response', 8, '2021-01-12 11:39:35', 1),
(2666, 2915, 8, 5, 0, 'no response', 8, '2021-01-12 11:39:48', 1),
(2667, 2933, 8, 3, 0, '15.5k ctc and for guru team.', 34, '2021-01-12 11:43:18', 1),
(2668, 2067, 27, 5, 0, 'Looking More Experienced Profile.', 27, '2021-01-12 11:47:10', 1),
(2669, 2955, 59, 5, 0, 'Will not sustain and very high CTC ', 60, '0000-00-00 00:00:00', 1),
(2670, 2147, 27, 5, 0, 'Got Another Job.', 27, '2021-01-12 11:47:30', 1),
(2671, 2225, 27, 5, 0, 'UI not Satisfied', 27, '2021-01-12 11:47:46', 1),
(2672, 2831, 27, 5, 0, 'Looking more Experienced.', 27, '2021-01-12 11:50:23', 1),
(2673, 2866, 27, 5, 0, 'UI not good. Looking Better Design.', 27, '2021-01-12 11:59:16', 1),
(2674, 1887, 27, 5, 0, 'He is not completed the Task and no response from him.', 27, '2021-01-12 12:09:29', 1),
(2675, 2625, 27, 5, 0, 'Not completed the Task', 27, '2021-01-12 12:10:05', 1),
(2676, 2945, 8, 2, 0, 'check for esale bdm.', 7, '0000-00-00 00:00:00', 1),
(2677, 2957, 8, 5, 2, 'will not suite for our process. he already Attended interview last year and rejected for the same reason', 7, '0000-00-00 00:00:00', 1),
(2678, 2959, 8, 5, 0, 'will not suite for calling and not interested in field sales', 7, '0000-00-00 00:00:00', 1),
(2679, 2960, 8, 5, 0, 'will not suite for sales and calling.', 7, '0000-00-00 00:00:00', 1),
(2680, 2863, 27, 5, 0, 'Task not Completed.', 27, '2021-01-12 04:42:07', 1),
(2681, 2911, 8, 3, 0, '10k th for keerthiga team.', 18, '2021-01-12 05:43:11', 1),
(2682, 2934, 8, 3, 0, '17k ctc. for RM', 30, '2021-01-13 01:00:23', 1),
(2683, 2922, 8, 3, 0, '18k th  for rm.  while Negotiation candidate is okay 18k bcoz his previous  package was 15k.', 30, '2021-01-13 01:02:16', 1),
(2684, 1101, 8, 5, 0, 'Will Not Suite For Sales Calling And Not Interested In Sales. Will Not Sustain.', 7, '0000-00-00 00:00:00', 1),
(2685, 2948, 27, 2, 0, 'Task Given.', 60, '0000-00-00 00:00:00', 1),
(2686, 2964, 59, 4, 0, 'High Exp in Sales domain,High CTC,Can give a try', 7, '0000-00-00 00:00:00', 1),
(2687, 2784, 27, 5, 0, 'Task not Completed.', 27, '2021-01-13 12:13:23', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(2688, 2971, 59, 4, 0, 'Ok For sales', 7, '0000-00-00 00:00:00', 1),
(2689, 2973, 59, 5, 0, 'Not Fit for Sales, will not sustain', 7, '0000-00-00 00:00:00', 1),
(2690, 2964, 44, 8, 0, 'please Reassign to GK Ji ', 59, '2021-01-13 04:42:24', 1),
(2691, 2954, 59, 4, 0, 'No relevant Exp Insurance Exp,Can give a try', 7, '0000-00-00 00:00:00', 1),
(2692, 2954, 34, 7, 4, 'selected tuesday joining', 59, '2021-01-13 05:02:38', 1),
(2693, 2971, 24, 4, 0, 'Experienced in health. selected for my team', 59, '2021-01-13 05:05:41', 1),
(2694, 2870, 59, 8, 0, 'Selected for Next Round, but not attended ', 59, '2021-01-15 10:57:04', 1),
(2695, 2979, 59, 5, 0, 'Fresher, Not open for agreement', 60, '0000-00-00 00:00:00', 1),
(2696, 2971, 22, 7, 0, 'Candidate is already experienced in insurance field has knowledge in star and religare health insurance products. kindly through for the final round.', 24, '2021-01-15 12:02:00', 1),
(2697, 2978, 59, 5, 0, 'Sustainability Issue,Not much communicative', 60, '0000-00-00 00:00:00', 1),
(2698, 2971, 8, 3, 0, '20k th for suthagar team. 21100ctc', 22, '2021-01-15 12:12:16', 1),
(2699, 2954, 53, 7, 0, 'Shortlisted. sal ctc 13k, pls cnfrm DOJ', 34, '2021-01-15 12:20:47', 1),
(2700, 2954, 8, 3, 0, '13k ctc for guru team', 53, '2021-01-15 02:59:17', 1),
(2701, 2943, 8, 3, 0, '24.5k ctc and no pf. for sanjeev team', 30, '2021-01-16 12:52:27', 1),
(2702, 2989, 27, 5, 0, 'this candidate Selected for next round. GS seen and Rejected. Donxquott have any experience in new technologies.', 60, '0000-00-00 00:00:00', 1),
(2703, 2862, 60, 1, 0, NULL, 27, '2021-01-18 11:20:36', 1),
(2704, 2862, 27, 7, 0, 'Selected for final round.', 27, '2021-01-18 11:20:36', 1),
(2705, 2990, 8, 5, 0, 'in two months looking for job change bcoz of long distance. current 10k and exp is 15k. not confident  and will not suite for our process.', 60, '0000-00-00 00:00:00', 1),
(2706, 2981, 8, 5, 0, 'looking for backend job. his pronunciation was not clear and good. will not suite for calling.', 60, '0000-00-00 00:00:00', 1),
(2707, 2991, 59, 5, 0, 'Not Ok for Sys Admin,will not sustain.', 60, '0000-00-00 00:00:00', 1),
(2708, 2961, 59, 5, 0, 'Will not Fit for Mernstack, Much interest into Aero(drone).Recently started looking for IT openings', 60, '0000-00-00 00:00:00', 1),
(2709, 2984, 59, 5, 0, 'Not ok for Sales, looking much for non voice', 60, '0000-00-00 00:00:00', 1),
(2710, 2995, 8, 3, 0, '13k ctc for kannan team', 60, '0000-00-00 00:00:00', 1),
(2711, 3001, 8, 2, 0, 'Need To Discuss About Salary', 60, '0000-00-00 00:00:00', 1),
(2712, 2999, 8, 5, 0, 'not interested in sales  and will not suite for calling too.', 60, '0000-00-00 00:00:00', 1),
(2713, 2992, 8, 5, 0, 'fresher, not speaking up and will not suite for Esale/CRM.', 60, '0000-00-00 00:00:00', 1),
(2714, 2988, 27, 5, 0, 'Attitude not good. technically not good.', 60, '0000-00-00 00:00:00', 1),
(2715, 3000, 8, 2, 0, 'need to discuss about salary', 60, '0000-00-00 00:00:00', 1),
(2716, 2985, 8, 2, 0, 'she need to confirm her joining. 30 days notice.', 60, '0000-00-00 00:00:00', 1),
(2717, 2995, 19, 4, 0, 'one year experienced in voice process. selected for next  round', 8, '2021-01-19 01:32:36', 1),
(2718, 2985, 44, 4, 3, 'Candidate ok for me and need your suggestion ', 8, '2021-01-19 01:35:25', 1),
(2719, 2945, 8, 5, 0, 'looking for BDM profile. but no Relevant exp.  and no response too.', 8, '2021-01-19 02:29:53', 1),
(2720, 2995, 22, 7, 0, 'Shortlisted for next round. negotiate salary. he wanted 15k..i have reduced to 13K Net salary. do the needfull', 19, '2021-01-19 06:27:01', 1),
(2721, 2995, 8, 3, 0, '13k ctc for kannan team', 22, '2021-01-19 06:29:10', 1),
(2722, 1824, 54, 5, 0, 'He is not completed the given task', 54, '2021-01-19 06:34:12', 1),
(2723, 2858, 54, 5, 0, 'we picked another candidate', 54, '2021-01-19 06:34:52', 1),
(2724, 2848, 54, 5, 0, 'task incomplete.', 54, '2021-01-19 06:35:34', 1),
(2725, 1822, 54, 5, 0, 'no replay from the candidate.', 54, '2021-01-19 06:36:12', 1),
(2726, 1821, 54, 5, 0, 'No replay from the candidate.', 54, '2021-01-19 06:36:50', 1),
(2727, 3010, 8, 3, 0, '10k take home for pargavi team', 7, '0000-00-00 00:00:00', 1),
(2728, 3009, 8, 5, 0, 'will not suite for calling. not speaking up. will not handle pressure and sustain.', 7, '0000-00-00 00:00:00', 1),
(2729, 3005, 27, 2, 0, 'We can offer as a intern after that we can add as a employee. he will discuss and confirm.', 60, '0000-00-00 00:00:00', 1),
(2730, 2996, 8, 5, 0, 'no response', 60, '0000-00-00 00:00:00', 1),
(2731, 2994, 59, 5, 0, 'High Exp and High CTC expectation', 60, '0000-00-00 00:00:00', 1),
(2732, 2996, 44, 4, 3, 'Ji please check once and conform', 8, '2021-01-20 02:38:31', 1),
(2733, 3010, 44, 4, 3, 'She is Fresher but  ok for CRM ,', 8, '2021-01-20 02:40:15', 1),
(2734, 3000, 8, 5, 0, 'will not join. fresher and exp sal is 12k+', 8, '2021-01-20 02:40:55', 1),
(2735, 3001, 8, 5, 0, 'Will Not Join. Fresher And Exp Sal Is 12k+', 8, '2021-01-20 02:41:05', 1),
(2736, 2948, 27, 5, 0, 'Task Not satisfied.', 27, '2021-01-20 02:50:20', 1),
(2737, 2887, 27, 5, 0, 'Task not satisfied.', 27, '2021-01-20 02:50:40', 1),
(2738, 3011, 8, 4, 0, 'Around 10yr exp and 1yr exp in insurance. check for RM profile.', 7, '0000-00-00 00:00:00', 1),
(2739, 3012, 8, 5, 0, 'will not suite for RM profile. sal exp is 4L+', 7, '0000-00-00 00:00:00', 1),
(2740, 3011, 40, 5, 0, 'Not fit for Job', 8, '2021-01-20 05:15:06', 1),
(2741, 2980, 27, 5, 0, 'She donxquott have a good knowledge in any technology.', 7, '0000-00-00 00:00:00', 1),
(2742, 3020, 8, 3, 0, '13k ctc for srikanth team', 7, '0000-00-00 00:00:00', 1),
(2743, 3021, 8, 4, 3, 'very lethargic and cross check for RE.', 7, '0000-00-00 00:00:00', 1),
(2744, 3020, 20, 4, 0, 'HAs a 6months voice experience. seems trustable.', 8, '2021-01-21 01:38:24', 1),
(2745, 3021, 20, 5, 0, 'Not sustainable', 8, '2021-01-21 01:40:25', 1),
(2746, 3019, 30, 4, 3, 'candidate k but he is expecting high 30k take home,previous company 25k + 3k petrol allowance .but we can offer maximum 25k .Candidate will think and update to jenifer.one draw back he dont have experience in our field.kindly confirm from your end.', 7, '0000-00-00 00:00:00', 1),
(2747, 3020, 22, 7, 0, ' shortlisted for srikanth team.. seems suitable and has 6 months voice calling experience.... negotiate and finalize salary to 13K and joining on monday.', 20, '2021-01-21 04:16:43', 1),
(2748, 2914, 60, 1, 0, NULL, 27, '2021-01-21 06:36:49', 1),
(2749, 2914, 27, 7, 0, 'Selected. We can offer 20K.', 27, '2021-01-21 06:36:49', 1),
(2750, 3005, 27, 5, 0, 'Not completed the task.', 27, '2021-01-21 06:37:19', 1),
(2751, 3019, 8, 2, 0, 'Need to confirm with the candidate.', 30, '2021-01-21 07:13:30', 1),
(2752, 2985, 29, 7, 2, 'selected for RM, Shanmugam Team,', 44, '2021-01-22 11:10:43', 1),
(2753, 2996, 29, 2, 0, 'hold', 44, '2021-01-22 11:13:07', 1),
(2754, 3010, 29, 7, 2, 'selected for CRM, Pargavi Team, Salary - check resume', 44, '2021-01-22 11:15:01', 1),
(2755, 3016, 27, 2, 0, 'Task Given. He will complete and update to us.', 60, '0000-00-00 00:00:00', 1),
(2756, 3023, 27, 5, 0, 'not completed the system task.', 60, '0000-00-00 00:00:00', 1),
(2757, 3006, 27, 5, 0, 'He is waiting for Wipro. He will not sustain.', 60, '0000-00-00 00:00:00', 1),
(2758, 3014, 27, 2, 0, 'Task Given. He will Complete and send back to us.', 60, '0000-00-00 00:00:00', 1),
(2759, 3020, 8, 3, 0, '13k ctc for srikanth team', 22, '2021-01-22 03:20:27', 1),
(2760, 3010, 8, 3, 0, '10k take home for pargavi team', 29, '2021-01-22 06:15:14', 1),
(2761, 2985, 8, 2, 0, 'she need to confirm her joining. 30 days notice.', 29, '2021-01-22 06:21:28', 1),
(2762, 3031, 27, 2, 0, 'Interview Taken. Task Given.', 60, '0000-00-00 00:00:00', 1),
(2763, 3032, 59, 5, 0, 'No Insurance based exp, High CTC Exp, Sustainability Issue', 60, '0000-00-00 00:00:00', 1),
(2764, 3033, 59, 5, 0, 'No Relevant Exp will not fit to CRM/Esales', 60, '0000-00-00 00:00:00', 1),
(2765, 3030, 59, 5, 0, 'Sustainability Issue, High CTC Expectation', 60, '0000-00-00 00:00:00', 1),
(2766, 3029, 27, 2, 0, 'He will confirm within one week', 60, '0000-00-00 00:00:00', 1),
(2767, 3028, 27, 2, 0, 'He is working in both Hardware and software.  task given. he will complete and let us know.', 1, '0000-00-00 00:00:00', 1),
(2768, 3037, 27, 5, 0, 'Dont know the Basics.', 60, '0000-00-00 00:00:00', 1),
(2769, 3041, 59, 4, 0, 'Internal Reference, Can give a try for Sales', 60, '0000-00-00 00:00:00', 1),
(2770, 3034, 27, 2, 0, 'Task Given. He will complete and send back to us.', 1, '0000-00-00 00:00:00', 1),
(2771, 3034, 27, 5, 0, 'Task Incompleted. Getting Many Errors.', 27, '2021-01-25 12:54:49', 1),
(2772, 3041, 19, 4, 0, 'NEED TO REVIEW ', 59, '2021-01-25 03:13:20', 1),
(2773, 3031, 27, 5, 0, 'Task not fully completed. If he is ready to work with same salary we can offer.', 27, '2021-01-25 04:54:27', 1),
(2774, 3047, 27, 5, 0, 'He is Looking for an Internship.Intern for UI/UX not Required.', 60, '0000-00-00 00:00:00', 1),
(2775, 3049, 59, 4, 0, 'No Sales Experience, Internal Team Reference Profile, Give a try if suits ', 60, '0000-00-00 00:00:00', 1),
(2776, 3050, 8, 5, 0, 'not genuine lot of miss communication about her salary. absconded from last company. exp sal is 15k.', 60, '0000-00-00 00:00:00', 1),
(2777, 3052, 59, 5, 0, 'only non voice exp, Distance issue, will not fit for sales ', 60, '0000-00-00 00:00:00', 1),
(2778, 3049, 29, 5, 1, 'will not suit', 59, '2021-01-27 02:33:58', 1),
(2779, 3058, 68, 5, 2, 'Looking for Back End Jobs, ', 7, '0000-00-00 00:00:00', 1),
(2780, 3028, 27, 5, 0, 'Task Incompleted.', 27, '2021-01-27 06:09:27', 1),
(2781, 2985, 8, 5, 0, 'will not join exp 25k+ and no response from her.', 8, '2021-01-27 06:42:09', 1),
(2782, 3060, 27, 5, 0, 'Donxquott have an experience in MERN. She is a front end developer. ', 60, '0000-00-00 00:00:00', 1),
(2783, 3071, 18, 7, 4, 'Selected For Raj Team Expected salary is 28K but not worth more than 25K immed joining', 60, '0000-00-00 00:00:00', 1),
(2784, 3070, 27, 5, 0, 'She donxquott have  a knowledge in PHP Mysql. ', 60, '0000-00-00 00:00:00', 1),
(2785, 3038, 27, 5, 0, 'He dont have a good knowledge in Technical', 60, '0000-00-00 00:00:00', 1),
(2786, 3046, 27, 2, 0, 'Task Given. He will complete and send us tomorrow.', 60, '0000-00-00 00:00:00', 1),
(2787, 3069, 59, 5, 0, 'No Exp in React, Focus on the salary Part, will not sustain', 60, '0000-00-00 00:00:00', 1),
(2788, 3072, 40, 4, 4, 'doubtful for longtime..expecting 40k pM....', 7, '0000-00-00 00:00:00', 1),
(2789, 3072, 18, 7, 4, 'Expected salary is 40k Need to negotiate for 32k. Selected for raj team. Kindly call and confirm', 40, '2021-01-28 12:42:09', 1),
(2790, 3066, 27, 2, 0, 'He will come tomorrow for System task.', 60, '0000-00-00 00:00:00', 1),
(2791, 3079, 27, 2, 0, 'Dynamic Task Given. He will complete and send back to us.', 60, '0000-00-00 00:00:00', 1),
(2792, 3014, 27, 2, 0, 'Still Hold only. we will update after 1st Feb.', 27, '2021-01-28 06:45:04', 1),
(2793, 3071, 8, 3, 3, '23273 gross sal. for rajkumar team. in patroniss.', 18, '2021-01-28 06:47:24', 1),
(2794, 3041, 22, 8, 0, 'kindly allocate for second round ', 19, '2021-01-28 07:37:58', 1),
(2795, 3065, 27, 2, 0, 'Selected For Task Round. Task given', 60, '0000-00-00 00:00:00', 1),
(2796, 3072, 8, 3, 0, '27400 gross and 23592 as net  with pf.', 18, '2021-01-29 12:06:40', 1),
(2797, 3084, 8, 5, 0, 'CRM profile, fresher for calling, has exp in kyc. will not suite for esales. sis working in hdfc life. sal exp is too high will not handle pressure and sustain.', 60, '0000-00-00 00:00:00', 1),
(2798, 3082, 8, 5, 2, 'looking for non voice, Will Not Handle Pressure And Sustain And Will Not Suite For Re.', 60, '0000-00-00 00:00:00', 1),
(2799, 3077, 27, 2, 0, 'Selected For Task Round.', 60, '0000-00-00 00:00:00', 1),
(2800, 3053, 8, 5, 2, 'no Relevant exp, 60 days notice and not int in customer support. current th is 20k and exp 30%', 60, '0000-00-00 00:00:00', 1),
(2801, 3085, 8, 3, 0, '10k th for keerthiga team\n', 60, '0000-00-00 00:00:00', 1),
(2802, 3087, 59, 5, 0, 'No Sales Exp, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(2803, 3085, 18, 7, 3, 'Selected for CRM for keerthiga team. Please discuss the salary as per CRM Norms\n', 8, '2021-01-29 02:48:35', 1),
(2804, 3013, 27, 2, 0, 'Selected for Task Round', 60, '0000-00-00 00:00:00', 1),
(2805, 3079, 27, 5, 0, 'No response from him.', 27, '2021-01-29 06:47:41', 1),
(2806, 3077, 27, 5, 0, 'Not attend the system task.', 27, '2021-01-29 06:49:08', 1),
(2807, 3065, 27, 5, 0, 'Not completed the task.', 27, '2021-01-29 06:54:16', 1),
(2808, 1278, 27, 5, 0, 'not completed the task', 27, '2021-01-29 06:54:36', 1),
(2809, 3064, 27, 5, 0, 'He donxquott know the React. But we required MERN', 60, '0000-00-00 00:00:00', 1),
(2810, 3086, 27, 5, 0, 'Task not completed. he knows only front end.', 60, '0000-00-00 00:00:00', 1),
(2811, 3055, 27, 2, 0, 'Task Given. he is completed. I will check and update on monday.', 60, '0000-00-00 00:00:00', 1),
(2812, 3091, 27, 2, 0, 'Task Given. she will complete and send on monday.', 60, '0000-00-00 00:00:00', 1),
(2813, 3095, 8, 3, 0, '26ctc with pf Shanmugam team', 60, '0000-00-00 00:00:00', 1),
(2814, 3078, 27, 2, 0, 'Task Given.', 60, '0000-00-00 00:00:00', 1),
(2815, 3081, 27, 5, 0, 'He is a trainer. he dont know about the technologies which is required.\n', 60, '0000-00-00 00:00:00', 1),
(2816, 3096, 8, 4, 3, 'check for Esale. ', 60, '0000-00-00 00:00:00', 1),
(2817, 3095, 29, 7, 3, 'selected RM, shanmugam team.. salary details pls refer resume', 8, '2021-01-30 11:33:22', 1),
(2818, 3098, 27, 2, 0, 'Selected for task round. Task Given. ', 60, '0000-00-00 00:00:00', 1),
(2819, 3089, 27, 2, 0, 'Task Given. he will complete and send back monday', 60, '0000-00-00 00:00:00', 1),
(2820, 3096, 11, 5, 0, 'She is not suitable for sales process', 8, '2021-01-30 11:57:25', 1),
(2821, 3076, 27, 5, 0, 'Latha taken the interview. She donxquott have that much knowledge in technical.', 60, '0000-00-00 00:00:00', 1),
(2822, 3093, 27, 2, 0, 'Task Given. he will complete and send on sunday aftn.', 60, '0000-00-00 00:00:00', 1),
(2823, 3019, 8, 5, 0, 'no response from his end. not okay with salary.', 8, '2021-01-30 03:53:36', 1),
(2824, 3042, 27, 5, 0, 'Attitude is not good.', 60, '0000-00-00 00:00:00', 1),
(2825, 3085, 36, 4, 0, 'Shortlisted for caller', 18, '2021-01-30 09:49:56', 1),
(2826, 3095, 8, 3, 0, '26ctc with pf Shanmugam team', 29, '2021-02-01 10:32:06', 1),
(2827, 3085, 18, 7, 3, 'Selected for CRM for keerthiga team. Please discuss the salary as per CRM Norms\n', 36, '2021-02-01 10:48:16', 1),
(2828, 3085, 8, 3, 0, '10k th for keerthiga team\n', 18, '2021-02-01 10:58:02', 1),
(2829, 3088, 8, 5, 0, 'no response will not join', 7, '0000-00-00 00:00:00', 1),
(2830, 3105, 27, 5, 0, 'Dont have a knowledge in PHP.', 50, '0000-00-00 00:00:00', 1),
(2831, 3112, 8, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(2832, 3113, 8, 4, 3, 'check for RM. fresher for us, 18k exp. lay off.', 50, '0000-00-00 00:00:00', 1),
(2833, 3107, 8, 5, 0, 'fresher, not interested in  sales.', 50, '0000-00-00 00:00:00', 1),
(2834, 3088, 19, 4, 0, 'Sustainability', 8, '2021-02-01 12:36:30', 1),
(2835, 3113, 33, 5, 2, 'not suit for sales industry ', 8, '2021-02-01 12:38:52', 1),
(2836, 3106, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2837, 3106, 19, 5, 0, 'not fit for sale', 8, '2021-02-01 01:20:26', 1),
(2838, 3115, 8, 3, 0, '15k th for kannan team.', 50, '0000-00-00 00:00:00', 1),
(2839, 3108, 8, 2, 0, 'need time to discuss', 50, '0000-00-00 00:00:00', 1),
(2840, 3100, 8, 2, 0, 'need time to discuss', 50, '0000-00-00 00:00:00', 1),
(2841, 3111, 8, 2, 0, 'for salary confirmation', 50, '0000-00-00 00:00:00', 1),
(2842, 3111, 16, 4, 0, 'Good Skills Going On salary bargain', 8, '2021-02-01 03:46:33', 1),
(2843, 3115, 19, 7, 0, 'fit for sales', 8, '2021-02-01 04:54:36', 1),
(2844, 3098, 27, 5, 0, 'Not completed the task.', 27, '2021-02-01 05:14:55', 1),
(2845, 3029, 27, 5, 0, 'No Response from him.', 27, '2021-02-01 05:15:53', 1),
(2846, 3091, 27, 2, 0, 'She need another one day to complete.', 27, '2021-02-01 05:19:04', 1),
(2847, 3014, 27, 2, 0, 'He will confirm before EOD.', 27, '2021-02-01 05:19:40', 1),
(2848, 3066, 27, 2, 0, 'He will come tomorrow', 27, '2021-02-01 05:22:33', 1),
(2849, 3055, 27, 5, 0, 'Task not Completed.', 27, '2021-02-01 05:22:53', 1),
(2850, 3046, 27, 2, 0, 'Task Coimpleted. has to check tomorrow.', 27, '2021-02-01 05:23:29', 1),
(2851, 3093, 27, 2, 0, 'Task completed. has to check tomorrow', 27, '2021-02-01 05:23:50', 1),
(2852, 3089, 27, 2, 0, 'Task Completed. has to check tomorrow.', 27, '2021-02-01 05:24:21', 1),
(2853, 3115, 22, 7, 3, 'Convincing skills ok', 19, '2021-02-01 05:51:33', 1),
(2854, 3111, 8, 2, 0, 'for salary confirmation', 16, '2021-02-01 05:58:10', 1),
(2855, 3115, 8, 3, 0, '15k th for kannan team.', 22, '2021-02-02 10:28:45', 1),
(2856, 3111, 8, 5, 0, 'will not join.  going to rejoin in old company.', 8, '2021-02-02 10:33:18', 1),
(2857, 3088, 16, 4, 0, 'HOLD ', 19, '2021-02-02 10:45:07', 1),
(2858, 3059, 27, 2, 0, 'He will come back for system task on friday.', 50, '0000-00-00 00:00:00', 1),
(2859, 3126, 27, 2, 0, 'Task Given. he is doing the task.', 50, '0000-00-00 00:00:00', 1),
(2860, 3120, 8, 4, 3, 'check for rE', 50, '0000-00-00 00:00:00', 1),
(2861, 3121, 8, 4, 3, 'fresher, good communication but little bit slow, check for RE profile.', 50, '0000-00-00 00:00:00', 1),
(2862, 3128, 59, 4, 0, 'Check for System Admin', 50, '0000-00-00 00:00:00', 1),
(2863, 3104, 8, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(2864, 3091, 27, 5, 0, 'UI Design not Good.', 27, '2021-02-02 12:41:15', 1),
(2865, 3124, 59, 5, 0, 'Will not sustain, No relevant Exp', 60, '0000-00-00 00:00:00', 1),
(2866, 3127, 59, 5, 0, 'Not suitable, will not sustain ', 50, '0000-00-00 00:00:00', 1),
(2867, 3129, 59, 8, 0, 'Candidate left without attending the interview', 50, '0000-00-00 00:00:00', 1),
(2868, 3120, 24, 4, 0, 'SELECTED FOR NEXT ROUND', 8, '2021-02-02 03:02:09', 1),
(2869, 3121, 24, 5, 0, 'NOT FIT FOR RE', 8, '2021-02-02 03:03:20', 1),
(2870, 3130, 59, 5, 0, 'No Relevant Exp, Will not sustain', 50, '0000-00-00 00:00:00', 1),
(2871, 3128, 32, 5, 0, 'Expecting High Package', 59, '2021-02-02 04:12:21', 1),
(2872, 3066, 27, 2, 0, 'He will come for the interview thursday', 27, '2021-02-02 05:56:51', 1),
(2873, 3140, 8, 3, 0, '16k ctc for srikanthteam', 50, '0000-00-00 00:00:00', 1),
(2874, 3061, 27, 5, 0, 'She donxquott have a basic knowledge.', 50, '0000-00-00 00:00:00', 1),
(2875, 3133, 8, 5, 0, 'fresher will not suite for CRM.', 50, '0000-00-00 00:00:00', 1),
(2876, 3120, 22, 5, 0, 'candidate selected but exp Salary  High 15k so rejected', 24, '2021-02-03 11:18:33', 1),
(2877, 3132, 8, 2, 0, 'has to attend one more round interview', 50, '0000-00-00 00:00:00', 1),
(2878, 3140, 20, 4, 0, 'Has experience in Voice calling. Wanted 16k package... committed 16K CTC and promised for revision of salary based on 6 months performance. Kindly analyze and shortlist the candidate', 8, '2021-02-03 12:48:15', 1),
(2879, 3147, 8, 5, 0, 'very childish and will not suite for our process', 50, '0000-00-00 00:00:00', 1),
(2880, 3140, 22, 7, 0, 'potential candidate. Immediate joining shortlisted for Srikanth Team. With 16K CTC increment after 6 months performing.', 20, '2021-02-03 04:46:22', 1),
(2881, 3140, 8, 3, 0, '16k ctc for srikanthteam', 22, '2021-02-03 04:47:57', 1),
(2882, 3156, 8, 3, 0, 'Candidate selected for Logesh Team  18kCTC ', 50, '0000-00-00 00:00:00', 1),
(2883, 3150, 8, 4, 0, 'check for RE, fresher and exp sal is 12-13k.', 50, '0000-00-00 00:00:00', 1),
(2884, 3151, 27, 5, 0, 'Task not Completed.', 50, '0000-00-00 00:00:00', 1),
(2885, 3160, 8, 4, 2, 'check for RM, in notice period. has relevant exp.', 50, '0000-00-00 00:00:00', 1),
(2886, 3149, 8, 5, 0, 'sal exp is 15k. fresher, not speaking up and will not suite for our process.', 50, '0000-00-00 00:00:00', 1),
(2887, 3163, 8, 4, 3, 'check for esale and sustainability. exp sal is 15k.', 50, '0000-00-00 00:00:00', 1),
(2888, 3051, 8, 4, 0, 'have telephonic interview', 50, '0000-00-00 00:00:00', 1),
(2889, 3161, 8, 4, 3, 'check for CRM and sustainability.', 50, '0000-00-00 00:00:00', 1),
(2890, 3156, 36, 4, 0, 'Selected for RM', 8, '2021-02-04 01:12:34', 1),
(2891, 3051, 59, 5, 0, 'Candidate didnt turned for the second round of Discussion', 8, '2021-02-04 01:36:10', 1),
(2892, 3161, 18, 5, 2, 'Not fir for CRM\n', 8, '2021-02-04 01:41:16', 1),
(2893, 3163, 21, 5, 3, 'She Is Not Sustain Long Term, and also not able to take pressure', 8, '2021-02-04 01:42:28', 1),
(2894, 3160, 44, 5, 1, 'He is not fit and Attitude issues ', 8, '2021-02-04 01:44:12', 1),
(2895, 3150, 34, 7, 3, 'selected for next round', 8, '2021-02-04 01:45:02', 1),
(2896, 3150, 53, 5, 0, 'He s nt intrested in sales, looking for accounts related job.', 34, '2021-02-04 03:30:13', 1),
(2897, 3134, 59, 4, 0, 'Having Sales Exp in Loan, Can give a try for Insurance Sales', 50, '0000-00-00 00:00:00', 1),
(2898, 3156, 18, 7, 3, 'Selected for Lokesh Team. Salary spoken by kayal. Today joining (8Feb)', 36, '2021-02-04 06:11:59', 1),
(2899, 3134, 34, 7, 4, 'SELECTED', 59, '2021-02-04 07:45:13', 1),
(2900, 3148, 8, 2, 0, 'left before second round', 50, '0000-00-00 00:00:00', 1),
(2901, 3155, 8, 2, 0, 'left before second round', 50, '0000-00-00 00:00:00', 1),
(2902, 3181, 68, 5, 1, 'Not fit for insurance sales', 50, '0000-00-00 00:00:00', 1),
(2903, 3134, 53, 3, 0, 'having 9 yrs exp in the two-wheeler loan process,  even field exp in 6 yrs. CTC 17k.', 34, '2021-02-05 12:32:08', 1),
(2904, 3182, 8, 3, 0, 'TH 25K with PFxxamp PT 28808 Gross', 50, '0000-00-00 00:00:00', 1),
(2905, 3182, 40, 4, 4, 'no sales exp/zero knowledge in local language and insurance..doubtful', 8, '2021-02-05 03:09:54', 1),
(2906, 3182, 18, 7, 4, 'Selected \nfor veben team. Need to negotiate salary and told he is ready to join in 15 Feb 2020', 40, '2021-02-05 06:06:09', 1),
(2907, 3014, 27, 5, 0, 'not ready to join', 27, '2021-02-05 06:25:08', 1),
(2908, 3066, 27, 5, 0, 'Couldnot completed the task.', 27, '2021-02-05 06:25:33', 1),
(2909, 3089, 27, 5, 0, 'Not Upto our level.', 27, '2021-02-05 06:25:55', 1),
(2910, 3059, 27, 5, 0, 'Task not completed.', 27, '2021-02-05 06:26:18', 1),
(2911, 3093, 27, 5, 0, 'task Not working properly.', 27, '2021-02-05 06:26:55', 1),
(2912, 3126, 27, 5, 0, 'Task not completed and no response from him.', 27, '2021-02-05 06:27:36', 1),
(2913, 3183, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(2914, 3193, 59, 5, 0, 'Not suitable for Sales', 50, '0000-00-00 00:00:00', 1),
(2915, 3195, 39, 5, 2, 'he will not suit for our process', 50, '0000-00-00 00:00:00', 1),
(2916, 3188, 59, 4, 0, 'Have  Field Sales Exp, Can give a try for Insurance Sales', 50, '0000-00-00 00:00:00', 1),
(2917, 3196, 59, 5, 0, 'Sustainability Issue', 50, '0000-00-00 00:00:00', 1),
(2918, 3199, 59, 4, 0, 'Can Give a try for CRM ', 50, '0000-00-00 00:00:00', 1),
(2919, 3184, 27, 5, 0, 'He Knows only testing. Dont have a knowledge in MERN Stack.', 50, '0000-00-00 00:00:00', 1),
(2920, 3185, 27, 5, 0, 'Potential Candidate only. but she donxquott have an experience in Node and Express Js. she will learn and come back after 3 months.', 50, '0000-00-00 00:00:00', 1),
(2921, 3191, 59, 5, 0, 'Not suitable,Not strong in React,Mongo,Node', 50, '0000-00-00 00:00:00', 1),
(2922, 3201, 59, 5, 0, 'No Relevant Exp,will not sustain', 50, '0000-00-00 00:00:00', 1),
(2923, 3188, 29, 7, 2, 'selected for rm, shanmugam team, for salary pls refer resume', 59, '2021-02-06 04:06:31', 1),
(2924, 3199, 18, 7, 0, 'Need to negotiate salary ash her expectations are high but a decent candidate\n', 59, '2021-02-06 04:11:09', 1),
(2925, 3088, 8, 5, 0, 'no response will not join', 16, '2021-02-06 05:55:57', 1),
(2926, 3190, 27, 2, 0, 'Selected for Task Round. Task Given. He will complete and send back to us.', 60, '0000-00-00 00:00:00', 1),
(2927, 3156, 8, 3, 0, 'Candidate selected for Logesh Team  18kCTC ', 18, '2021-02-08 09:55:08', 1),
(2928, 3154, 59, 5, 0, 'Came for Internship and the Expectation is High', 50, '0000-00-00 00:00:00', 1),
(2929, 3208, 8, 5, 0, 'will not work under pressure and will not suite for esale/crm', 50, '0000-00-00 00:00:00', 1),
(2930, 3211, 8, 5, 0, 'fresher, not speaking up and will not suite for RM/CRM', 50, '0000-00-00 00:00:00', 1),
(2931, 3209, 8, 5, 0, 'not speaking up, looking for acc job. will not suite for rm/crm', 50, '0000-00-00 00:00:00', 1),
(2932, 3205, 8, 4, 3, 'check for rE. check with sustainability. fresher for us.', 50, '0000-00-00 00:00:00', 1),
(2933, 3213, 8, 5, 3, 'fresher and exp is 15k. will work if we offer 15k. her attitude will not suite for us.', 50, '0000-00-00 00:00:00', 1),
(2934, 3179, 8, 2, 0, 'left before 2nd round', 50, '0000-00-00 00:00:00', 1),
(2935, 3187, 8, 5, 0, 'Candidate will not join as he got another offer', 50, '0000-00-00 00:00:00', 1),
(2936, 3063, 8, 3, 0, 'For Guru Team, CTC 15790', 50, '0000-00-00 00:00:00', 1),
(2937, 3177, 27, 5, 0, 'She is not matching with our requirements.', 50, '0000-00-00 00:00:00', 1),
(2938, 3199, 8, 5, 0, 'Not open for the agreement. She agreed for 12k TH but not for the agreement', 18, '2021-02-08 12:13:13', 1),
(2939, 3210, 54, 2, 0, 'he joined as trainee.', 50, '0000-00-00 00:00:00', 1),
(2940, 3205, 16, 5, 0, 'sustain doubt', 8, '2021-02-08 01:12:09', 1),
(2941, 3187, 29, 7, 2, 'selected for rm, gkji team, refer resume for salary', 8, '2021-02-08 01:13:07', 1),
(2942, 3215, 39, 5, 2, 'Will not suitable for our profile', 7, '0000-00-00 00:00:00', 1),
(2943, 3063, 34, 7, 4, 'selected for next round', 8, '2021-02-08 01:36:31', 1),
(2944, 3188, 8, 3, 0, '22500 ctc with pf. for shanmugam team', 29, '2021-02-08 01:40:29', 1),
(2945, 3187, 8, 5, 0, 'Candidate will not join as he got another offer', 29, '2021-02-08 01:42:07', 1),
(2946, 3155, 8, 5, 0, 'exp high sal 15k . last sal is 10k but no sales exp.', 8, '2021-02-08 03:09:54', 1),
(2947, 3219, 59, 4, 0, 'No relevant Exp in Sales, Worked as a customer Service Executive. Can give a try for sales. Internal Team Reference', 50, '0000-00-00 00:00:00', 1),
(2948, 3148, 8, 5, 0, 'fresher, exp is 15k. left before 2nd round', 8, '2021-02-08 03:10:58', 1),
(2949, 2783, 8, 5, 0, 'will not join. hold more than 1month.', 8, '2021-02-08 03:11:35', 1),
(2950, 3100, 8, 5, 0, 'no response. will not join', 8, '2021-02-08 03:17:12', 1),
(2951, 3108, 8, 5, 0, 'no response will not join', 8, '2021-02-08 03:17:29', 1),
(2952, 3132, 8, 5, 0, 'no response. will not join', 8, '2021-02-08 03:18:07', 1),
(2953, 3219, 24, 4, 0, 'OK', 59, '2021-02-08 04:55:09', 1),
(2954, 3219, 22, 7, 0, 'candidate selected .. suthagar team 15k Take home.. wednesday joining  ', 24, '2021-02-08 05:12:53', 1),
(2955, 3219, 8, 1, 0, NULL, 22, '2021-02-08 05:28:56', 1),
(2956, 3183, 27, 5, 0, 'Not completed the system task.', 27, '2021-02-08 07:03:51', 1),
(2957, 3224, 59, 4, 0, 'No voice Exp, Not much suitable for sales, but internal reference, kindly check this profile', 50, '0000-00-00 00:00:00', 1),
(2958, 3202, 27, 8, 0, 'He came office. but not attended the interview.', 50, '0000-00-00 00:00:00', 1),
(2959, 3223, 27, 2, 0, 'Task has to be given.', 50, '0000-00-00 00:00:00', 1),
(2960, 3131, 27, 2, 0, 'Task Given. He will complete and let us know.', 50, '0000-00-00 00:00:00', 1),
(2961, 3231, 59, 4, 0, 'No Relevant Exp in Insurance Sales, Check for RM handling HNI customers', 50, '0000-00-00 00:00:00', 1),
(2962, 3222, 68, 7, 0, 'Shortlisted', 50, '0000-00-00 00:00:00', 1),
(2963, 3222, 30, 7, 0, 'salary suggestion 22k ctc per month....kindly confirm joining by tmrw', 68, '2021-02-09 05:13:03', 1),
(2964, 3016, 60, 1, 0, NULL, 27, '2021-02-09 05:40:12', 1),
(2965, 3016, 27, 7, 0, 'Shortlisted. We can offer 10K.', 27, '2021-02-09 05:40:12', 1),
(2966, 3222, 8, 7, 0, 'Selected for Sanjeev Team,CTC 22k with PF PT', 30, '2021-02-09 05:41:14', 1),
(2967, 3222, 7, 1, 0, NULL, 8, '2021-02-09 05:42:35', 1),
(2968, 3224, 14, 5, 1, 'looking for non voice not suitable for voice process.', 59, '2021-02-09 05:56:11', 1),
(2969, 3226, 27, 5, 0, 'technically not good. Always telling i am not prepared well.', 50, '0000-00-00 00:00:00', 1),
(2970, 3225, 27, 5, 0, 'She donxquott have a good knowledge in technically.', 50, '0000-00-00 00:00:00', 1),
(2971, 3237, 56, 5, 0, 'hes not good for sales', 50, '0000-00-00 00:00:00', 1),
(2972, 3245, 59, 4, 0, 'No Exp in Sales, Just check his suitability', 50, '0000-00-00 00:00:00', 1),
(2973, 3246, 41, 4, 3, 'Check for RE', 50, '0000-00-00 00:00:00', 1),
(2974, 3182, 8, 3, 0, 'TH 25K with PFxxamp PT 28808 Gross', 18, '2021-02-10 11:43:23', 1),
(2975, 3063, 53, 7, 0, 'Selected for rE', 34, '2021-02-10 12:03:47', 1),
(2976, 3246, 53, 4, 0, 'Ok fr RE, hvng 2 yrs exp bt not in this field, he s flexible nd gud communication.  take home 15k.', 41, '2021-02-10 12:15:29', 1),
(2977, 3247, 38, 7, 2, 'he will not suit for our process', 50, '0000-00-00 00:00:00', 1),
(2978, 3197, 41, 2, 3, 'nEED TO CHECK FOR 2ND ROUND', 50, '0000-00-00 00:00:00', 1),
(2979, 3248, 41, 4, 3, 'Check for RM', 50, '0000-00-00 00:00:00', 1),
(2980, 3249, 41, 5, 3, 'stammering can not speak continuously', 50, '0000-00-00 00:00:00', 1),
(2981, 3250, 41, 4, 3, 'Check for CRM', 50, '0000-00-00 00:00:00', 1),
(2982, 3246, 34, 7, 4, 'selected', 53, '2021-02-10 12:54:52', 1),
(2983, 3063, 8, 3, 0, 'For Guru Team, CTC 15790', 53, '2021-02-10 12:57:55', 1),
(2984, 3246, 8, 3, 0, 'CTC 15790', 34, '2021-02-10 02:59:58', 1),
(2985, 2523, 59, 8, 0, 'Candidate Left without attending the interview', 50, '0000-00-00 00:00:00', 1),
(2986, 3248, 29, 7, 2, 'selected for rm, shanmugam team', 41, '2021-02-10 03:16:01', 1),
(2987, 3252, 41, 4, 2, 'CHECK TO RE\nHE WILL ARRANGE BIKE', 50, '0000-00-00 00:00:00', 1),
(2988, 3252, 34, 7, 4, 'selected', 41, '2021-02-10 03:24:08', 1),
(2989, 3247, 8, 1, 0, NULL, 38, '2021-02-10 03:42:40', 1),
(2990, 3245, 16, 5, 0, 'no sustain doubt', 59, '2021-02-10 06:17:53', 1),
(2991, 3230, 27, 2, 0, 'She is Completed the Task. Task has to be reviewed.', 50, '0000-00-00 00:00:00', 1),
(2992, 3258, 59, 5, 0, 'Will not fit into Sales.Not suitable', 50, '0000-00-00 00:00:00', 1),
(2993, 3227, 27, 2, 0, 'Task Given. She will complete and let us know.', 50, '0000-00-00 00:00:00', 1),
(2994, 3261, 56, 4, 0, 'Selected for next round', 50, '0000-00-00 00:00:00', 1),
(2995, 3240, 59, 4, 0, 'No relevant Exp, Give a try for RE', 50, '0000-00-00 00:00:00', 1),
(2996, 2967, 59, 5, 0, 'Candidate will not sustain and looking much for semivoice only', 50, '0000-00-00 00:00:00', 1),
(2997, 3248, 8, 3, 0, '18K CTC with PF PT Deductions for Shanmugam Team', 29, '2021-02-11 01:21:05', 1),
(2998, 3261, 68, 7, 0, 'Selected', 56, '2021-02-11 01:21:06', 1),
(2999, 3264, 59, 4, 0, 'Having Exp in Loan Department, Check for RM handling HNI Customers ', 50, '0000-00-00 00:00:00', 1),
(3000, 3027, 27, 2, 0, 'Task Given. He is doing the task.', 50, '0000-00-00 00:00:00', 1),
(3001, 3240, 16, 5, 0, ' sustain doubt', 59, '2021-02-11 03:49:52', 1),
(3002, 3261, 8, 5, 0, 'Candidate Expectation is very high and seems not to be genuine', 68, '2021-02-11 04:02:37', 1),
(3003, 3264, 29, 5, 1, 'not fit', 59, '2021-02-11 04:27:51', 1),
(3004, 3231, 29, 5, 1, 'will not suit our profile', 59, '2021-02-11 05:13:00', 1),
(3005, 3250, 14, 7, 4, 'salary 10k need to confirm joining date \n', 41, '2021-02-12 09:48:26', 1),
(3006, 3229, 27, 5, 0, 'He is from the Dot Net Domin. He dont have a knowledge in MERN.', 50, '0000-00-00 00:00:00', 1),
(3007, 3252, 59, 3, 0, 'Candidate Selected for Guru Team, CTC 13000', 34, '2021-02-12 10:14:33', 1),
(3008, 3250, 59, 7, 0, 'Candidate Shortlisted for Priyanka Jeni,CTC 10550 ', 14, '2021-02-12 10:42:34', 1),
(3009, 3267, 59, 5, 0, 'No communication will not sustain', 50, '0000-00-00 00:00:00', 1),
(3010, 3259, 59, 5, 0, 'Will not Fit and sustain for our sales', 50, '0000-00-00 00:00:00', 1),
(3011, 3275, 59, 5, 0, 'Communication is Good No Relevant Insurance Exp, High CTC Expectation', 50, '0000-00-00 00:00:00', 1),
(3012, 3274, 59, 4, 0, 'No Exp in sales, Check for RE', 50, '0000-00-00 00:00:00', 1),
(3013, 3276, 59, 5, 0, 'Will Not Fit for MIS', 50, '0000-00-00 00:00:00', 1),
(3014, 3273, 59, 5, 0, 'No Relevant Exp, Expectation is high ', 50, '0000-00-00 00:00:00', 1),
(3015, 3277, 59, 5, 0, 'Will not fit for MIS ', 50, '0000-00-00 00:00:00', 1),
(3016, 3279, 59, 4, 0, 'Candidate Exp in Insurance/health. High Salary Exp', 50, '0000-00-00 00:00:00', 1),
(3017, 3281, 39, 5, 2, 'he will not handle pressure and he will not sustain', 50, '0000-00-00 00:00:00', 1),
(3018, 3250, 60, 1, 0, NULL, 59, '2021-02-12 02:44:36', 1),
(3019, 3274, 16, 5, 0, 'HE IS INTREST TELECALLNG MEAN ADMIN', 59, '2021-02-12 02:49:08', 1),
(3020, 3269, 59, 5, 0, 'No Relevant Exp in Sales', 50, '0000-00-00 00:00:00', 1),
(3021, 3279, 18, 5, 0, 'He is a decent candidate but for a startup channel he is not adequate. Can keep his resume for a backup for future additon for additional manager', 59, '2021-02-12 06:20:56', 1),
(3022, 3272, 27, 2, 0, 'Task Has to be given.', 50, '0000-00-00 00:00:00', 1),
(3023, 3283, 59, 5, 0, 'Not Much communicative', 50, '0000-00-00 00:00:00', 1),
(3024, 3288, 59, 5, 0, 'Will not Fit our CRM Sales', 50, '0000-00-00 00:00:00', 1),
(3025, 3291, 59, 5, 0, 'Not Much Communicative', 50, '0000-00-00 00:00:00', 1),
(3026, 3282, 59, 5, 0, 'Rejected by Keerthika, Will not Sustain', 50, '0000-00-00 00:00:00', 1),
(3027, 3293, 59, 5, 0, 'Location Constraint', 50, '0000-00-00 00:00:00', 1),
(3028, 3294, 41, 4, 0, 'CHECK FOR RE\nBUT NO BIKE', 50, '0000-00-00 00:00:00', 1),
(3029, 3295, 41, 4, 0, 'check for CRM', 50, '0000-00-00 00:00:00', 1),
(3030, 3262, 27, 5, 0, 'Attitude not good. ', 50, '0000-00-00 00:00:00', 1),
(3031, 3296, 41, 5, 0, 'Not fir for MIS', 50, '0000-00-00 00:00:00', 1),
(3032, 3297, 41, 5, 0, 'Not fir for MIS', 50, '0000-00-00 00:00:00', 1),
(3033, 3119, 27, 2, 0, 'task has to be given.', 60, '0000-00-00 00:00:00', 1),
(3034, 3298, 41, 5, 0, 'Not fir for MIS', 50, '0000-00-00 00:00:00', 1),
(3035, 3290, 41, 2, 2, 'HE WILL INFORM THE RECRUITER', 50, '0000-00-00 00:00:00', 1),
(3036, 3300, 59, 5, 0, 'No Exp in pPT,Not much exp in MIS Activities', 50, '0000-00-00 00:00:00', 1),
(3037, 3294, 53, 4, 0, 'Ok for RE. Thiyagu team, 13k Take home, pls cnfrm Joining', 41, '2021-02-13 02:40:28', 1),
(3038, 3295, 21, 4, 3, 'candidate ok need to check once sustainability..', 41, '2021-02-13 03:16:01', 1),
(3039, 2152, 59, 5, 0, 'Will not sustain much interested into Non Voice\n', 50, '0000-00-00 00:00:00', 1),
(3040, 3270, 59, 5, 0, 'Not Much Relevant Exp,Will not fit for our expectations', 50, '0000-00-00 00:00:00', 1),
(3041, 3295, 67, 5, 0, 'Candidate was suggested contract by HR which she was not interested. We(Dhivya xxamp I) asked her to get back for a discussion, she did not get back. ', 21, '2021-02-13 04:01:29', 1),
(3042, 3197, 41, 5, 0, 'not turned up', 41, '2021-02-13 04:34:15', 1),
(3043, 3289, 27, 2, 0, 'We are reviewing the sustainability. ', 50, '0000-00-00 00:00:00', 1),
(3044, 3239, 27, 5, 0, 'He is not interested with out company policy.', 50, '0000-00-00 00:00:00', 1),
(3045, 3306, 41, 5, 0, 'No relevant exp', 50, '0000-00-00 00:00:00', 1),
(3046, 3312, 39, 7, 3, 'she is selected as rM....Salary suggestion 30k', 50, '0000-00-00 00:00:00', 1),
(3047, 3315, 27, 2, 0, 'Dont have that much knowledge. we can consider as a intern because refered by JP.', 50, '0000-00-00 00:00:00', 1),
(3048, 3314, 41, 5, 0, 'Not at all speaking', 50, '0000-00-00 00:00:00', 1),
(3049, 3313, 41, 5, 0, 'Not at all speaking', 50, '0000-00-00 00:00:00', 1),
(3050, 3234, 27, 2, 0, 'Task Given. He needs 1 week time to complete.', 50, '0000-00-00 00:00:00', 1),
(3051, 3301, 27, 2, 0, 'Task Given. He needs 3 days to complete this process.', 50, '0000-00-00 00:00:00', 1),
(3052, 3242, 27, 5, 0, 'She donxquott have a basic knowledge.', 52, '0000-00-00 00:00:00', 1),
(3053, 3311, 41, 5, 0, 'Can not handle pressure will not sustain', 50, '0000-00-00 00:00:00', 1),
(3054, 3318, 41, 4, 0, 'check for 1 yr bond and LIC code, Check for RM', 50, '0000-00-00 00:00:00', 1),
(3055, 3316, 41, 4, 0, 'Check for RE', 50, '0000-00-00 00:00:00', 1),
(3056, 3317, 41, 5, 0, 'Not bold rejected by Keerthi', 50, '0000-00-00 00:00:00', 1),
(3057, 3312, 8, 5, 0, 'Expected 4.5 LPA We offer 4 LPA,but she got an offer for 4.5 LPA', 39, '2021-02-15 03:03:26', 1),
(3058, 3308, 41, 5, 0, 'No communication and proper Pronunciation will not suite for RM', 50, '0000-00-00 00:00:00', 1),
(3059, 3216, 59, 7, 0, '15K CTC in Patroniss', 50, '0000-00-00 00:00:00', 1),
(3060, 3290, 13, 5, 2, 'confident level very low so not suitable for telesales', 41, '2021-02-15 04:18:07', 1),
(3061, 3290, 41, 4, 0, 'Check for CRM xxamp Sustainability', 41, '2021-02-15 04:18:07', 1),
(3062, 3316, 16, 7, 0, 'candidate selected', 41, '2021-02-15 04:23:27', 1),
(3063, 3318, 44, 5, 1, 'Not fit for life sales', 41, '2021-02-15 04:24:43', 1),
(3064, 3294, 16, 7, 0, 'Candidate selected', 53, '2021-02-15 05:55:05', 1),
(3065, 3294, 59, 7, 0, 'CTC 13685 TH 13000', 16, '2021-02-15 06:19:07', 1),
(3066, 3316, 59, 7, 0, 'CTC 13685 xxamp TH 13K', 16, '2021-02-15 06:20:55', 1),
(3067, 3216, 34, 7, 4, 'selected', 59, '2021-02-16 09:39:19', 1),
(3068, 2157, 27, 7, 0, 'Task Completed. Selected through telephonic interview. we can offer 8k as a take home.', 60, '0000-00-00 00:00:00', 1),
(3069, 2157, 59, 3, 0, 'CTC 8K TH ,Will be trained in  Mern Stack', 27, '2021-02-16 10:00:53', 1),
(3070, 3304, 27, 2, 0, 'Task given. he will complete and  send back to us.', 50, '0000-00-00 00:00:00', 1),
(3071, 3326, 59, 5, 0, 'No communication, will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3072, 3327, 27, 5, 0, 'He doesxquott have a knowledge in basics. even he is not answering for a freshers questions', 50, '0000-00-00 00:00:00', 1),
(3073, 3332, 59, 4, 0, 'Internal Reference,do check for RM but Expectation is High', 50, '0000-00-00 00:00:00', 1),
(3074, 3323, 59, 2, 0, 'candidate profile on hold as she needs to check for the agreement', 50, '0000-00-00 00:00:00', 1),
(3075, 3336, 59, 5, 0, 'Attended final round of discussion with Mahadevan-Axa and got rejected', 50, '0000-00-00 00:00:00', 1),
(3076, 3268, 27, 5, 0, 'He dont have that much knowledge for what he is expected. ', 50, '0000-00-00 00:00:00', 1),
(3077, 3340, 59, 5, 0, 'Candidate holds an offer with 3.5 LPA and looks for high Pay', 50, '0000-00-00 00:00:00', 1),
(3078, 3320, 41, 5, 0, 'From collection BG not interested in sales', 50, '0000-00-00 00:00:00', 1),
(3079, 3198, 41, 5, 0, 'From collection BG not interested in sales', 50, '0000-00-00 00:00:00', 1),
(3080, 3337, 59, 5, 0, 'Shortlisted and checked for CRM Appointment Fix - Keerthika team,But rejected ', 50, '0000-00-00 00:00:00', 1),
(3081, 3216, 53, 7, 0, 'sekected for RE. pls cnfrm the salary and DOJ', 34, '2021-02-16 04:34:56', 1),
(3082, 3333, 59, 4, 0, 'No relevant Sales Exp ,can try for RM', 50, '0000-00-00 00:00:00', 1),
(3083, 3324, 27, 5, 0, 'not good in basic level. he will not sustain.', 1, '0000-00-00 00:00:00', 1),
(3084, 3216, 59, 7, 0, '15K CTC in Patroniss', 53, '2021-02-16 05:22:23', 1),
(3085, 3216, 60, 1, 0, NULL, 59, '2021-02-16 05:26:53', 1),
(3086, 3294, 60, 1, 0, NULL, 59, '2021-02-16 05:36:25', 1),
(3087, 3316, 60, 1, 0, NULL, 59, '2021-02-16 05:38:00', 1),
(3088, 3333, 44, 5, 0, 'he is not looking life sales', 59, '2021-02-16 05:42:51', 1),
(3089, 3336, 18, 4, 0, 'Expected salary is high but can stick to 4.2. She is a good and positive candidate. Suitable for new channel. But sustainability is a bit doubtful. AXA Mahadevan will see her for a final round and convey the same to the candidate.', 59, '2021-02-16 05:43:46', 1),
(3090, 3332, 33, 5, 0, 'not sustainity in our system', 59, '2021-02-16 05:46:39', 1),
(3091, 3355, 59, 5, 0, 'Communication is ok ,only excel exp', 50, '0000-00-00 00:00:00', 1),
(3092, 3356, 59, 4, 0, 'Profile ok, Give a try for MIS but no PPT knowledge', 50, '0000-00-00 00:00:00', 1),
(3093, 3357, 59, 5, 0, 'Will not fit for our MIS', 50, '0000-00-00 00:00:00', 1),
(3094, 3349, 59, 5, 0, 'He already holds agent code for LIC and Star Health.Will hold this profile for future Use', 50, '0000-00-00 00:00:00', 1),
(3095, 3328, 59, 5, 0, 'Will not fit into Sales', 50, '0000-00-00 00:00:00', 1),
(3096, 3359, 41, 5, 0, 'Will not suite for mMIS profile', 50, '0000-00-00 00:00:00', 1),
(3097, 3360, 59, 4, 0, 'Profile is Good, Holds MIS Exp can train him in other areas', 50, '0000-00-00 00:00:00', 1),
(3098, 3363, 59, 5, 0, 'Not fit for MIS', 50, '0000-00-00 00:00:00', 1),
(3099, 3325, 59, 5, 0, 'No Relevant Exp. Will not fit for our sales profile', 50, '0000-00-00 00:00:00', 1),
(3100, 3362, 41, 4, 0, 'Check for Written Communication and Excel', 50, '0000-00-00 00:00:00', 1),
(3101, 3364, 41, 5, 0, 'Not interested with agreement ', 50, '0000-00-00 00:00:00', 1),
(3102, 3368, 59, 5, 0, 'Not much exp in MIS. Will not fit for our role', 50, '0000-00-00 00:00:00', 1),
(3103, 3365, 59, 5, 0, 'Only excel knowledge', 50, '0000-00-00 00:00:00', 1),
(3104, 3346, 59, 5, 0, 'High Expectations', 50, '0000-00-00 00:00:00', 1),
(3105, 3345, 27, 5, 0, 'He donxquott have a good knowledge in tech. distance too long. he is from kelambakkam. will not suit for us.', 50, '0000-00-00 00:00:00', 1),
(3106, 3373, 59, 2, 0, 'She needs to confirm on the Agreement.', 50, '0000-00-00 00:00:00', 1),
(3107, 3371, 59, 5, 0, 'Will not fit for Field sales. Sustainability issues', 50, '0000-00-00 00:00:00', 1),
(3108, 3356, 53, 5, 0, 'not suit fr MIS', 59, '2021-02-17 04:48:45', 1),
(3109, 3360, 53, 7, 0, 'Ok for MIS. Pls cnfrm sal nd DOJ', 59, '2021-02-17 04:55:10', 1),
(3110, 3362, 53, 5, 0, 'Nt suit fr MIS', 41, '2021-02-17 05:06:33', 1),
(3111, 3354, 59, 5, 0, 'No Relevant Sales Exp. High CTC Expectation', 50, '0000-00-00 00:00:00', 1),
(3112, 3360, 8, 5, 0, 'Salary Expectation i s very high and got another offer', 53, '2021-02-17 05:32:38', 1),
(3113, 3336, 59, 5, 0, 'Attended final round of discussion with Mahadevan-Axa and got rejected', 18, '2021-02-17 06:54:36', 1),
(3114, 3361, 59, 5, 0, 'Much exp in sales. looking for MIS but not much relevant', 50, '0000-00-00 00:00:00', 1),
(3115, 3375, 27, 2, 0, 'Task Given. She will complete and let us know.', 50, '0000-00-00 00:00:00', 1),
(3116, 3344, 27, 2, 0, 'Task Given. She Will Complete And Let Us Know.', 50, '0000-00-00 00:00:00', 1),
(3117, 3370, 27, 5, 0, 'She dont know the basics. She will learn and come after 1 week may be.', 50, '0000-00-00 00:00:00', 1),
(3118, 3385, 59, 5, 0, 'High CTC expectations.Will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(3119, 3350, 59, 5, 0, 'Will not fit for our MIS', 50, '0000-00-00 00:00:00', 1),
(3120, 3386, 59, 5, 0, 'No Relevant Experience. Will not fit for our BDM', 50, '0000-00-00 00:00:00', 1),
(3121, 3387, 59, 5, 0, 'Sustainability issue.No relevant Exp', 50, '0000-00-00 00:00:00', 1),
(3122, 3353, 27, 5, 0, 'Notice period too long. He had experience in JAVA only. not in react. rejected by arun hR', 50, '0000-00-00 00:00:00', 1),
(3123, 3389, 59, 5, 0, 'Full Exp in VBA,will not sustain in MIS and high CTC', 50, '0000-00-00 00:00:00', 1),
(3124, 3392, 59, 5, 0, 'Only excel knowledge, not ready for agreement', 50, '0000-00-00 00:00:00', 1),
(3125, 3390, 59, 5, 0, 'No Communication, Not fit for MIS', 50, '0000-00-00 00:00:00', 1),
(3126, 3391, 59, 5, 0, 'CMA Inter. Focus in to CA will not sustain in MIS', 50, '0000-00-00 00:00:00', 1),
(3127, 3383, 59, 5, 0, 'Location too long.will not sustain', 60, '0000-00-00 00:00:00', 1),
(3128, 3395, 59, 5, 0, 'Candidate is having health issue(related to ear).Not ready for Agreement.', 50, '0000-00-00 00:00:00', 1),
(3129, 3397, 59, 4, 0, 'Profile ok, Check for MIS.', 50, '0000-00-00 00:00:00', 1),
(3130, 3401, 59, 4, 0, 'candidate have exp in relevant sales.Check for RM\n', 50, '0000-00-00 00:00:00', 1),
(3131, 3399, 59, 5, 0, 'High CTC Exp.', 50, '0000-00-00 00:00:00', 1),
(3132, 3271, 27, 2, 0, 'need to discuss with gs and update.', 50, '0000-00-00 00:00:00', 1),
(3133, 3352, 27, 5, 0, 'could not meet our expectation.', 50, '0000-00-00 00:00:00', 1),
(3134, 3367, 27, 2, 0, 'Will discuss with gs and update.', 50, '0000-00-00 00:00:00', 1),
(3135, 3402, 59, 4, 0, 'Candidate is ok, based on CTC ready to sign the service Agreement', 50, '0000-00-00 00:00:00', 1),
(3136, 3405, 68, 5, 2, '....', 50, '0000-00-00 00:00:00', 1),
(3137, 3403, 38, 5, 0, 'she is expecting high salary....she will not sustain for long term...she is too far from our office location...', 50, '0000-00-00 00:00:00', 1),
(3138, 3406, 38, 5, 0, 'she will not suit for our process....she is expecting 20k salary and she will not handle pressure....', 50, '0000-00-00 00:00:00', 1),
(3139, 3393, 41, 5, 0, 'Will not be suitable for sales', 50, '0000-00-00 00:00:00', 1),
(3140, 3411, 41, 4, 0, 'Check for CRM', 50, '0000-00-00 00:00:00', 1),
(3141, 3409, 59, 4, 0, 'Have Sales exp, give a try for RE', 50, '0000-00-00 00:00:00', 1),
(3142, 3377, 27, 5, 0, 'Technically not good.', 50, '0000-00-00 00:00:00', 1),
(3143, 3347, 27, 5, 0, 'Not good in technical.', 50, '0000-00-00 00:00:00', 1),
(3144, 3400, 59, 4, 0, 'No Relevant Sales Exp,but we can try for RM Sales', 50, '0000-00-00 00:00:00', 1),
(3145, 3400, 36, 4, 4, 'Selected for RM', 59, '2021-02-19 04:25:05', 1),
(3146, 3409, 17, 4, 3, 'Need to check sustainability and package ', 59, '2021-02-19 04:25:29', 1),
(3147, 3397, 53, 5, 0, 'Candidate is handicapped, will not be able to handle our role', 59, '2021-02-19 04:26:18', 1),
(3148, 3393, 41, 5, 0, 'Will not be suitable for sales', 41, '2021-02-19 04:27:19', 1),
(3149, 3401, 44, 4, 3, 'Ji candidate ok and need your opinion', 59, '2021-02-19 04:28:01', 1),
(3150, 3402, 53, 5, 0, 'Not interested in agreement', 59, '2021-02-19 04:29:03', 1),
(3151, 3400, 18, 7, 4, 'Shortliste to lokesh team. Expected salary is 25k but can finish in 22k. Can Join on Monday \n', 36, '2021-02-19 04:41:31', 1),
(3152, 3400, 8, 3, 0, '23000 TH with PF xxamp PT 26808 Gross', 18, '2021-02-19 07:12:08', 1),
(3153, 3418, 69, 4, 0, 'sELECTED AS INTERN WITH STIPEND 3000 FOR CONTENT WRITTING.', 50, '0000-00-00 00:00:00', 1),
(3154, 3412, 59, 5, 0, 'No relevant Exp.Medical Billing Exp not interested in field sales', 50, '0000-00-00 00:00:00', 1),
(3155, 3409, 53, 7, 0, 'Candidate is ok,Selected for RE Ramesh Team\n', 17, '2021-02-20 11:08:47', 1),
(3156, 3424, 59, 4, 0, 'Candidate is ok will come on monday(22-feb) for next round of discussion', 50, '0000-00-00 00:00:00', 1),
(3157, 3417, 69, 5, 0, 'lESS VERBAL SKILLS', 50, '0000-00-00 00:00:00', 1),
(3158, 3422, 59, 4, 0, 'Candidate have exp in Sales. Check for RM. Expected Salary is high', 50, '0000-00-00 00:00:00', 1),
(3159, 3427, 59, 2, 0, 'Need to confirm on the agreement, No relevant field but into sales.Doubful on the sustainability', 50, '0000-00-00 00:00:00', 1),
(3160, 3426, 59, 5, 0, 'Only Excel Exp,no communication as expected. Will not fit for our role', 50, '0000-00-00 00:00:00', 1),
(3161, 3374, 41, 4, 0, 'check once before Sending for further rounds', 50, '0000-00-00 00:00:00', 1),
(3162, 3428, 41, 5, 0, 'will not sustain', 50, '0000-00-00 00:00:00', 1),
(3163, 3429, 41, 5, 0, 'will not sustain', 50, '0000-00-00 00:00:00', 1),
(3164, 3431, 59, 5, 0, 'Will not fit for our sales profile', 50, '0000-00-00 00:00:00', 1),
(3165, 3415, 27, 5, 0, 'Technically not good.', 50, '0000-00-00 00:00:00', 1),
(3166, 3369, 41, 5, 0, 'Will not suite for sales', 50, '0000-00-00 00:00:00', 1),
(3167, 3433, 41, 5, 0, 'can not handle pressure', 50, '0000-00-00 00:00:00', 1),
(3168, 3409, 8, 3, 0, '18K CTC 17100 TH in Patroniss for Ramesh Arumbakkam', 53, '2021-02-20 01:58:40', 1),
(3169, 3424, 53, 5, 0, 'No proper communication, having 10 yrs experience but he dont have tht much of knowledge', 59, '2021-02-20 03:37:19', 1),
(3170, 3422, 31, 5, 3, 'Candidates expectation is high on package', 59, '2021-02-20 03:39:04', 1),
(3171, 3418, 59, 3, 0, 'Selected as a Intern for 1 month', 69, '2021-02-20 04:21:49', 1),
(3172, 3319, 59, 5, 0, 'Not open for agreement. High CTC expectation', 60, '0000-00-00 00:00:00', 1),
(3173, 3414, 59, 2, 0, 'Task Should be given. Based on the work will decide later', 60, '0000-00-00 00:00:00', 1),
(3174, 3374, 59, 4, 0, 'Check for RM as well for BDM(HNI)', 41, '2021-02-20 04:45:01', 1),
(3175, 3411, 53, 4, 0, 'Shortlist. documents pending', 41, '2021-02-20 04:48:27', 1),
(3176, 3374, 53, 5, 0, 'Not suit for HNI client process', 59, '2021-02-20 04:51:03', 1),
(3177, 3423, 59, 4, 0, 'Candidate is ok, check for CRM Parkavi Team', 50, '0000-00-00 00:00:00', 1),
(3178, 3411, 59, 4, 0, 'Candidate is ok, Check for CRM Appointment Fixing', 53, '2021-02-22 10:05:14', 1),
(3179, 3394, 59, 5, 0, 'High CTC expectation, holding an offer', 50, '0000-00-00 00:00:00', 1),
(3180, 3439, 41, 5, 0, 'not at all a relevant profile', 50, '0000-00-00 00:00:00', 1),
(3181, 3265, 41, 5, 0, 'Will not handle pressure', 50, '0000-00-00 00:00:00', 1),
(3182, 3447, 41, 5, 0, 'false information completely', 50, '0000-00-00 00:00:00', 1),
(3183, 3432, 41, 5, 0, 'Not at all a relevant profile', 50, '0000-00-00 00:00:00', 1),
(3184, 3445, 59, 5, 0, 'Location constraint, Fresher profile, not interested in sales. No exp in System Admin', 50, '0000-00-00 00:00:00', 1),
(3185, 3440, 59, 5, 0, 'have exp in Loan and collection, will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3186, 3446, 59, 5, 0, 'Communication better, Location constraint', 50, '0000-00-00 00:00:00', 1),
(3187, 3441, 69, 4, 0, 'Good candidate, should check for 3 months internship and Onboarding the candidate.', 50, '0000-00-00 00:00:00', 1),
(3188, 3438, 59, 4, 0, 'Exp in Bank-handling Insurance sales also, check for RM', 50, '0000-00-00 00:00:00', 1),
(3189, 3450, 59, 5, 0, 'Average Communication, not much in PPT. Will not fit for our MIS positions', 50, '0000-00-00 00:00:00', 1),
(3190, 3452, 39, 5, 1, 'he will not suit for our process', 50, '0000-00-00 00:00:00', 1),
(3191, 3453, 39, 5, 1, 'he will not suit for our field\n', 50, '0000-00-00 00:00:00', 1),
(3192, 3444, 59, 5, 0, 'Not much knowledge in React, Sustainability Doubt', 50, '0000-00-00 00:00:00', 1),
(3193, 3451, 59, 5, 0, 'Will not fit for our role, looking for internship ', 50, '0000-00-00 00:00:00', 1),
(3194, 3438, 44, 5, 0, 'He is not fit for life sales', 59, '2021-02-22 05:32:26', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(3195, 3441, 59, 5, 0, 'Candidate is looking for a month Internship, His focus in on the Air Force Job. Doubtful on onboarding', 69, '2021-02-22 06:58:38', 1),
(3196, 3411, 18, 7, 0, 'Shortlisted for CRM Expected salary is high but can negotiate and told to increase after 3 months after seeing perfomance. Ready to join immedeatly', 59, '2021-02-22 07:11:36', 1),
(3197, 3423, 29, 5, 0, 'SHE IS NOT INTERESTED FOR TELECALLING', 59, '2021-02-22 07:13:47', 1),
(3198, 3401, 29, 7, 2, 'RM, shanmugam team, salary mentioned in resume', 44, '2021-02-22 07:23:32', 1),
(3199, 3421, 27, 5, 0, 'Looking forward only for Hike. He will not sustain. rejected by arun', 60, '0000-00-00 00:00:00', 1),
(3200, 3465, 59, 5, 0, 'Checked for System Admin-Rejected by surendar', 60, '0000-00-00 00:00:00', 1),
(3201, 3470, 59, 4, 0, 'check for CRM-Keerthika team', 60, '0000-00-00 00:00:00', 1),
(3202, 3436, 27, 5, 0, 'Technically not good. rejected by latha', 60, '0000-00-00 00:00:00', 1),
(3203, 3472, 59, 5, 0, 'Will not fit for our MIS Role', 60, '0000-00-00 00:00:00', 1),
(3204, 3478, 59, 4, 0, 'Good in Communication, having ability to learn.  suit for our MIS role', 60, '0000-00-00 00:00:00', 1),
(3205, 3475, 59, 5, 0, 'Got selected for MIS Role,we offered 22k TH with Patroniss,but he was not ready to sign the agreement with documents submitting', 60, '0000-00-00 00:00:00', 1),
(3206, 3469, 59, 2, 0, 'Shortlisted for Telecaller,but left without attending the second level interview', 60, '0000-00-00 00:00:00', 1),
(3207, 3456, 59, 4, 0, 'No experience in Sales,Fresher profile check for RE\n', 60, '0000-00-00 00:00:00', 1),
(3208, 3455, 69, 4, 0, 'Check for digital marketing internship', 52, '0000-00-00 00:00:00', 1),
(3209, 3456, 16, 5, 0, 'IMMATURED ,AND SUSTAIN ALSO DOUBT', 59, '2021-02-23 05:32:34', 1),
(3210, 3475, 53, 7, 0, 'shortlisted for MIS. pls cnfrm sal and DOJ', 59, '2021-02-23 05:40:14', 1),
(3211, 3478, 53, 2, 0, 'hold for MIS', 59, '2021-02-23 05:41:04', 1),
(3212, 3458, 59, 5, 0, 'Communication is not upto the mark.Will not fit for our role', 60, '0000-00-00 00:00:00', 1),
(3213, 3463, 59, 4, 0, 'Check for MIS Role,Good in Communication but not much relevant in Exp', 60, '0000-00-00 00:00:00', 1),
(3214, 3455, 59, 2, 0, 'Task has been given by Reyaz,based on the task will decide on the profile', 69, '2021-02-23 05:46:30', 1),
(3215, 3463, 53, 5, 0, 'not suit for MIS', 59, '2021-02-23 05:49:01', 1),
(3216, 3470, 44, 5, 0, 'She is not fit for CRM and Expecting High salary ', 59, '2021-02-23 05:49:44', 1),
(3217, 3475, 59, 5, 0, 'Got selected for MIS Role,we offered 22k TH with Patroniss,but he was not ready to sign the agreement with documents submitting', 53, '2021-02-23 06:22:47', 1),
(3218, 3476, 27, 5, 0, 'not good in technical. rejected by gs.', 50, '0000-00-00 00:00:00', 1),
(3219, 3483, 27, 2, 0, '3 month as a intern. after internship 2.6 years service agreement. if no one is not good we can proceed him.', 50, '0000-00-00 00:00:00', 1),
(3220, 3454, 27, 5, 0, 'Looking for salary. he knows UI part alone.', 50, '0000-00-00 00:00:00', 1),
(3221, 3473, 59, 5, 0, 'have exp in front office. Will not fit for our MIS role', 50, '0000-00-00 00:00:00', 1),
(3222, 3482, 59, 5, 0, 'Not open for agreement', 50, '0000-00-00 00:00:00', 1),
(3223, 3484, 59, 5, 0, 'Worked as a professor, will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3224, 3479, 69, 2, 0, 'Candidate is okay, can consider if no other Choice.', 50, '0000-00-00 00:00:00', 1),
(3225, 3477, 69, 5, 0, 'not suitable for our Organization culture.', 50, '0000-00-00 00:00:00', 1),
(3226, 3490, 69, 5, 0, 'Not Suitable For Our Organization Culture.', 50, '0000-00-00 00:00:00', 1),
(3227, 3287, 27, 2, 0, 'Task has to be given.', 50, '0000-00-00 00:00:00', 1),
(3228, 3342, 59, 5, 0, 'Will not fit for our sales,sustainability Issue', 50, '0000-00-00 00:00:00', 1),
(3229, 3491, 59, 3, 0, '17K CTC in patroniss for Thiyagu Team with Service Agreement for 1 year', 50, '0000-00-00 00:00:00', 1),
(3230, 3437, 69, 5, 0, 'Candidate not okay with service agreement.', 50, '0000-00-00 00:00:00', 1),
(3231, 3401, 8, 3, 0, 'Selected for RM - Shanmugam Team/25K TH Patroniss Gross 26316', 29, '2021-02-24 01:36:43', 1),
(3232, 3461, 69, 5, 0, 'Attitude issue, wont sustain for a long time', 50, '0000-00-00 00:00:00', 1),
(3233, 3502, 30, 4, 4, 'confirm her salary  ctc and other Formalities ', 50, '0000-00-00 00:00:00', 1),
(3234, 3487, 59, 5, 0, 'High CTC Expectation.', 50, '0000-00-00 00:00:00', 1),
(3235, 3501, 59, 5, 0, 'No Sales experience', 50, '0000-00-00 00:00:00', 1),
(3236, 3411, 8, 5, 0, 'will not join. couldnt share payslip and relieving', 18, '2021-02-24 03:19:06', 1),
(3237, 3491, 16, 7, 0, 'Selected the Candidate', 59, '2021-02-24 05:25:05', 1),
(3238, 3496, 69, 5, 0, 'Candidate lacks basic knowledge on SEO.', 50, '0000-00-00 00:00:00', 1),
(3239, 3500, 59, 5, 0, 'Internal Reference for RE, Not open up.Will not fit for RE', 50, '0000-00-00 00:00:00', 1),
(3240, 3499, 59, 5, 0, 'Internal reference for RE,Not open for Field Sales will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3241, 3437, 41, 4, 0, 'Ok for Internship', 69, '2021-02-24 06:02:35', 1),
(3242, 3491, 59, 3, 0, '17K CTC in patroniss for Thiyagu Team with Service Agreement for 1 year', 16, '2021-02-24 06:05:40', 1),
(3243, 3479, 69, 2, 0, 'Candidate is okay, need to look for some more candidates', 69, '2021-02-24 06:07:45', 1),
(3244, 3506, 69, 5, 0, 'Less technical knowledge', 50, '0000-00-00 00:00:00', 1),
(3245, 3512, 59, 5, 0, 'Not much communicative, will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3246, 3504, 27, 5, 0, 'she is not okay with our policy.', 50, '0000-00-00 00:00:00', 1),
(3247, 3511, 59, 5, 0, 'Not interested in sales', 50, '0000-00-00 00:00:00', 1),
(3248, 3503, 59, 2, 0, 'Candidate need time to decide on the offer. will give the confirmation on 01-Mar-2021', 50, '0000-00-00 00:00:00', 1),
(3249, 3515, 59, 5, 0, 'No communication, will not get fit for our MIS openings ', 50, '0000-00-00 00:00:00', 1),
(3250, 3503, 13, 4, 4, 'ok, but candidate joining date will be confirmed on Monday.', 59, '2021-02-25 01:33:57', 1),
(3251, 3520, 59, 4, 0, 'Check for RE,no relevant Exp.Have exp in Credit card sales\n', 50, '0000-00-00 00:00:00', 1),
(3252, 3503, 59, 2, 0, 'Candidate need time to decide on the offer. will give the confirmation on 01-Mar-2021', 13, '2021-02-25 04:01:13', 1),
(3253, 3520, 16, 5, 0, 'sustain doubt,zero sales skiils', 59, '2021-02-25 04:50:53', 1),
(3254, 3373, 59, 5, 0, 'She didnt confirm on the Agreement.Overall her profile will not get matched with our MIS Role\n', 59, '2021-02-25 04:55:51', 1),
(3255, 3469, 59, 5, 0, 'Candidate selected for CRM, but left without attending the 2nd level interview', 59, '2021-02-25 05:20:02', 1),
(3256, 3414, 59, 5, 0, 'candidate was not able to do the task', 59, '2021-02-25 05:22:26', 1),
(3257, 3527, 59, 5, 0, 'Not interested in sales', 50, '0000-00-00 00:00:00', 1),
(3258, 3529, 59, 5, 0, 'Will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3259, 3535, 69, 5, 0, 'Didnxquott have any blogs to prove Interest in Digital marketing.', 50, '0000-00-00 00:00:00', 1),
(3260, 3531, 59, 5, 0, 'Having exp in hotel industry as Captain,branch Manager. Sustainability issue and will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3261, 3524, 27, 2, 0, 'Task has to be checked by gs.', 50, '0000-00-00 00:00:00', 1),
(3262, 3523, 27, 5, 0, 'He is not okay with our policy.', 50, '0000-00-00 00:00:00', 1),
(3263, 3532, 59, 5, 0, 'Sustainability Issue, ', 50, '0000-00-00 00:00:00', 1),
(3264, 3528, 41, 5, 0, 'Not interested in field sales', 50, '0000-00-00 00:00:00', 1),
(3265, 3536, 59, 5, 0, 'Not interested for Field sales and High CTC expectation for CRM', 50, '0000-00-00 00:00:00', 1),
(3266, 2469, 41, 4, 0, 'Check sustainability ', 50, '0000-00-00 00:00:00', 1),
(3267, 3534, 41, 5, 0, 'Age-37, no exp in field sales, not a long runner', 50, '0000-00-00 00:00:00', 1),
(3268, 3538, 59, 4, 0, 'Have Exp in HDFC Loan, Check for RM.', 50, '0000-00-00 00:00:00', 1),
(3269, 3542, 59, 5, 0, 'Candidate Exp is high for CRM role,not open for field sales', 50, '0000-00-00 00:00:00', 1),
(3270, 3541, 68, 5, 1, '....', 50, '0000-00-00 00:00:00', 1),
(3271, 3539, 59, 5, 0, 'Candidate is not open for field sales,holding many offer related to insurance sales and looking for many ', 50, '0000-00-00 00:00:00', 1),
(3272, 3537, 41, 5, 0, 'Long distance,not willing for agreement', 50, '0000-00-00 00:00:00', 1),
(3273, 3519, 41, 5, 0, 'False info', 50, '0000-00-00 00:00:00', 1),
(3274, 3543, 59, 4, 0, 'No Relevant Sales Exp, Communication is good. check for BDM', 50, '0000-00-00 00:00:00', 1),
(3275, 3459, 27, 5, 0, 'He is looking only for salary. he will not sustain.', 50, '0000-00-00 00:00:00', 1),
(3276, 3538, 31, 9, 0, 'Please check for elite', 59, '2021-02-26 03:04:26', 1),
(3277, 2742, 68, 7, 4, 'Asking salary for 23k in hand. ', 50, '0000-00-00 00:00:00', 1),
(3278, 3543, 29, 5, 0, 'no Relevance experience, his preference for IT job, need higher package more than 40k', 59, '2021-02-26 03:14:59', 1),
(3279, 2742, 59, 3, 0, 'Selected for sanjeev - Bangalore team 25000 Gross with PF xxamp PT', 68, '2021-02-26 04:26:14', 1),
(3280, 3455, 59, 5, 0, 'Will not fit for our content writer position', 59, '2021-02-26 04:53:15', 1),
(3281, 3427, 59, 5, 0, 'Not open for agreement', 59, '2021-02-26 04:54:32', 1),
(3282, 2469, 59, 5, 0, 'sustainability doubt, For CRM high CTC expectation', 41, '2021-02-26 05:10:18', 1),
(3283, 3437, 69, 5, 0, 'Candidate not okay with service agreement.', 41, '2021-02-26 05:10:37', 1),
(3284, 3318, 29, 5, 1, 'not fit for any profile', 59, '2021-02-26 05:28:33', 1),
(3285, 3323, 59, 5, 0, 'Not open for Agreement, Will not sustain for our sales', 59, '2021-02-26 06:12:51', 1),
(3286, 3179, 8, 5, 0, 'Left without attending the 2nd round of interview', 8, '2021-02-26 06:48:52', 1),
(3287, 3538, 60, 1, 0, NULL, 31, '2021-02-26 06:56:21', 1),
(3288, 3549, 59, 5, 0, 'High Experienced profile.Will not get fit for our MIS role.Age around 40', 60, '0000-00-00 00:00:00', 1),
(3289, 3555, 59, 5, 0, 'Not open for service Agreement, an Attitude issue and not fit for our MIS role', 60, '0000-00-00 00:00:00', 1),
(3290, 3530, 59, 5, 0, 'No open for agreement, very high CTC Expectation and sustainability issue', 60, '0000-00-00 00:00:00', 1),
(3291, 3443, 27, 2, 0, 'He will learn and come back after 1 week.', 60, '0000-00-00 00:00:00', 1),
(3292, 3558, 59, 7, 0, 'Selected for Thiyagu Team,CTC - 2,04,000 with Gross - 17000 xxamp TH - 16150', 60, '0000-00-00 00:00:00', 1),
(3293, 3559, 59, 5, 0, 'Candidate is ok,checked for Esale by Karthika and got  rejected', 60, '0000-00-00 00:00:00', 1),
(3294, 3516, 27, 5, 0, 'Will not suitable for us.', 60, '0000-00-00 00:00:00', 1),
(3295, 3554, 59, 5, 0, 'Sustainability issue, No relevant Exp', 60, '0000-00-00 00:00:00', 1),
(3296, 3545, 69, 5, 0, 'No Relevant experience.', 60, '0000-00-00 00:00:00', 1),
(3297, 3563, 27, 5, 0, 'Dont have a basic knowledge. rejected by latha', 60, '0000-00-00 00:00:00', 1),
(3298, 3564, 59, 5, 0, 'Not open for Insurance Sales.Sustainability issue', 60, '0000-00-00 00:00:00', 1),
(3299, 3558, 16, 2, 0, 'waiting for salary conformation', 59, '2021-02-27 04:29:35', 1),
(3300, 3507, 27, 2, 0, 'Task Given. he will complete and let us know.', 50, '0000-00-00 00:00:00', 1),
(3301, 3548, 59, 5, 0, 'Not much exp in customer handling.Expectation is high and will not fit for our MIS role', 50, '0000-00-00 00:00:00', 1),
(3302, 3571, 69, 5, 0, 'Candidate has less verbal skills and not good for long-term.', 50, '0000-00-00 00:00:00', 1),
(3303, 3572, 69, 5, 0, 'Candidate Has Less Verbal Skills And Not Good For Long-Term.', 50, '0000-00-00 00:00:00', 1),
(3304, 3579, 59, 5, 0, 'Will not sustain and the expectation is high for Telecaller', 50, '0000-00-00 00:00:00', 1),
(3305, 3561, 59, 5, 0, 'No Communication as we expected for MIS', 50, '0000-00-00 00:00:00', 1),
(3306, 3585, 59, 4, 0, 'Check for RE, No relevant Exp, he is much into order taking in the field', 50, '0000-00-00 00:00:00', 1),
(3307, 3565, 41, 5, 0, 'Will not suite for Co Coordinator MIS', 50, '0000-00-00 00:00:00', 1),
(3308, 3587, 59, 4, 0, 'Good in Communication, No local language, Looking for sales openings', 50, '0000-00-00 00:00:00', 1),
(3309, 3583, 59, 5, 0, 'Not open up, no communication. Will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3310, 3584, 59, 4, 0, 'Check for CRM, Communication ok, Need of  Job', 50, '0000-00-00 00:00:00', 1),
(3311, 3589, 59, 5, 0, 'He was not clear in his position focussed. Just in need of money  looking for a job', 50, '0000-00-00 00:00:00', 1),
(3312, 3574, 41, 4, 0, 'Communication and convincing good, check sustainability (BOND) and salary', 50, '0000-00-00 00:00:00', 1),
(3313, 3588, 59, 5, 0, 'Not much communicative, will not fit for our CRM sales', 50, '0000-00-00 00:00:00', 1),
(3314, 3046, 27, 5, 0, 'Donxquott get any response.', 27, '2021-03-01 01:00:37', 1),
(3315, 3551, 59, 5, 0, 'Have Exp only in the documentation, no Excel PPT experience. Much focus on the Documentation process', 50, '0000-00-00 00:00:00', 1),
(3316, 3568, 59, 2, 0, 'No relevant Exp in Mern, fresher, Holding Testing certificate.I Will send the Link he developed, based  on that will schedule for next level ', 50, '0000-00-00 00:00:00', 1),
(3317, 3560, 59, 5, 0, 'Not much good in communication. have the only exp in Excel', 50, '0000-00-00 00:00:00', 1),
(3318, 3590, 59, 5, 0, 'Will not fit for our MIS Coordinator,Communication is not that much ok', 50, '0000-00-00 00:00:00', 1),
(3319, 3574, 59, 4, 0, 'Good in Communication, He is ok for a 1 yr bond and the expected salary is high. Do check for MIS Coordinator Role', 41, '2021-03-01 04:46:22', 1),
(3320, 3574, 53, 4, 0, 'Pls check for MIS', 59, '2021-03-01 05:23:11', 1),
(3321, 3577, 59, 5, 0, 'Not much communicative, will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3322, 3585, 57, 5, 0, 'he is not ok for voice process .. pronunciation is not clear ', 59, '2021-03-01 05:32:24', 1),
(3323, 3584, 13, 5, 2, 'Convincing Skills	very low so not fit for Telesales', 59, '2021-03-01 05:35:31', 1),
(3324, 3587, 29, 5, 1, 'will not fit', 59, '2021-03-01 05:38:57', 1),
(3325, 3013, 27, 5, 0, 'task not completed.', 27, '2021-03-01 05:53:39', 1),
(3326, 3027, 27, 5, 0, 'Task Not Completed.', 27, '2021-03-01 05:53:46', 1),
(3327, 3190, 27, 5, 0, 'Task Not Completed.', 27, '2021-03-01 05:53:58', 1),
(3328, 3304, 27, 5, 0, 'Task Not Completed.', 27, '2021-03-01 05:54:09', 1),
(3329, 3289, 27, 5, 0, 'He is not suitable for us.', 27, '2021-03-01 05:55:13', 1),
(3330, 3524, 27, 5, 0, 'Task Not Completed.', 27, '2021-03-01 05:57:20', 1),
(3331, 3595, 8, 5, 0, 'Communication is not good.  dont have that much knowledge in excel and ppt.', 50, '0000-00-00 00:00:00', 1),
(3332, 3603, 8, 4, 0, 'check for MIS. avg communication and exp 3l.', 50, '0000-00-00 00:00:00', 1),
(3333, 3596, 8, 4, 0, 'check for MIS. oral comm is good and has exp in handling vendor.', 50, '0000-00-00 00:00:00', 1),
(3334, 3602, 8, 5, 0, 'communication is not good and has only 6 months exp in backend. doesnt have that much knowledge in excel and PPT', 50, '0000-00-00 00:00:00', 1),
(3335, 3604, 8, 5, 3, 'father is working in LIC and exp sal is 18k+. will not sustain.', 50, '0000-00-00 00:00:00', 1),
(3336, 3594, 59, 5, 0, 'Not much exp in MIS activities, Communication is not up to the mark as we expected. High Exp and the expectation is high.', 50, '0000-00-00 00:00:00', 1),
(3337, 3597, 8, 5, 0, 'fresher with avg communication, no clarity in speech and will not suite for RM.', 50, '0000-00-00 00:00:00', 1),
(3338, 3605, 8, 2, 0, 'need to  discuss about bond.', 50, '0000-00-00 00:00:00', 1),
(3339, 3606, 59, 5, 0, 'Internal Reference, Not much active will not sustain for our sales', 50, '0000-00-00 00:00:00', 1),
(3340, 3607, 8, 4, 3, 'has around 8yr exp in salaes. sal exp is 33k+. not interested in agency. check for RM.', 50, '0000-00-00 00:00:00', 1),
(3341, 3608, 59, 5, 0, 'Not open for the agreement, Interest towards BPO', 50, '0000-00-00 00:00:00', 1),
(3342, 3607, 59, 5, 0, 'No relevant Exp, only 6 months initial exp in Shriram Insurance, Jumped another job due to pressure. Will not sustain', 8, '2021-03-02 01:18:00', 1),
(3343, 3603, 59, 2, 0, 'Communication is average,Min exp is 21KTH but not up to the mark as we expected', 8, '2021-03-02 01:30:02', 1),
(3344, 3596, 59, 5, 0, 'Sustainability doubt in this field, her focus is much into Accounts/Admin', 8, '2021-03-02 01:32:53', 1),
(3345, 3601, 8, 5, 0, 'looking for 3.5l. sal package doesnt match', 50, '0000-00-00 00:00:00', 1),
(3346, 3574, 54, 5, 0, 'He will not sustain', 53, '2021-03-03 10:30:39', 1),
(3347, 3609, 8, 5, 0, 'no language and will not suite for MIS', 50, '0000-00-00 00:00:00', 1),
(3348, 3592, 69, 2, 0, 'high salary expectation, hence holding him for 2 days.', 50, '0000-00-00 00:00:00', 1),
(3349, 3580, 59, 3, 0, '11K CTC,10450 TH  for Muthu team', 50, '0000-00-00 00:00:00', 1),
(3350, 3623, 8, 3, 0, 'For Veben Team,CTC - 2,61,696 With Monthly Gross - 21808 xxamp TH - 18000 ', 50, '0000-00-00 00:00:00', 1),
(3351, 3624, 8, 5, 0, 'will not join', 50, '0000-00-00 00:00:00', 1),
(3352, 3612, 59, 5, 0, 'Location constraint.No Bike for CRM package need to check with family\n', 50, '0000-00-00 00:00:00', 1),
(3353, 3601, 8, 5, 0, 'looking for 3.5l. sal package doesnt match', 8, '2021-03-03 01:38:10', 1),
(3354, 3624, 29, 7, 2, 'selected for rm, shanmugam team', 8, '2021-03-03 01:41:38', 1),
(3355, 3623, 33, 4, 3, 'Candidate has rejected because of health issues ', 8, '2021-03-03 01:44:19', 1),
(3356, 3553, 59, 5, 0, 'No local language, the expectation is high.Not much exp in MIS\n', 50, '0000-00-00 00:00:00', 1),
(3357, 3627, 8, 4, 0, 'check for MIS. good communication and communicating. ', 50, '0000-00-00 00:00:00', 1),
(3358, 3628, 8, 5, 0, 'language is not good and salary exp is 4L+.', 50, '0000-00-00 00:00:00', 1),
(3359, 3546, 59, 5, 0, 'Communication is average, not much relevant for our MIS ', 50, '0000-00-00 00:00:00', 1),
(3360, 3627, 53, 5, 0, 'not worth fr 25k, having another offer also.', 8, '2021-03-03 04:01:31', 1),
(3361, 3580, 13, 7, 4, 'good communication and convincing skills (10.5k salary  jaining date : 04-March-2021)', 59, '2021-03-03 04:17:44', 1),
(3362, 3580, 59, 3, 0, '11K CTC,10450 TH  for Muthu team', 13, '2021-03-03 04:27:47', 1),
(3363, 3620, 8, 4, 0, 'check for MIS', 7, '0000-00-00 00:00:00', 1),
(3364, 3567, 59, 4, 0, 'Fresher, seems to have knowledge in Mern Stack.Check for MERN(Intern with 3 yrs Agreement OK)', 7, '0000-00-00 00:00:00', 1),
(3365, 3620, 59, 4, 0, 'Profile OK, good in communication, have exp in Sales xxamp operations,check for MIS', 8, '2021-03-04 04:10:17', 1),
(3366, 3502, 59, 3, 0, 'Gross 45833  with PF xxamp PT\nTH - 42025', 30, '2021-03-04 04:51:17', 1),
(3367, 3567, 27, 2, 0, 'Task Given. Task incomplete. he will come again for the system task.', 59, '2021-03-04 06:36:14', 1),
(3368, 3620, 8, 4, 0, 'check for MIS', 59, '2021-03-04 06:38:32', 1),
(3369, 3657, 8, 5, 0, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(3370, 3638, 8, 3, 0, ' CTC - 3,80,000 With Gross - 31667 xxamp TH - 27859  for shanmugam', 50, '0000-00-00 00:00:00', 1),
(3371, 3660, 8, 2, 0, 'very bold and confident. his pronunciation is not clear because of his mother Tongue. ', 50, '0000-00-00 00:00:00', 1),
(3372, 3661, 8, 4, 0, 'good in convincing and has calling Experience. okay with 10-11k.', 50, '0000-00-00 00:00:00', 1),
(3373, 3646, 8, 5, 0, 'communication below avg, no knowledge in excel and ppt.', 50, '0000-00-00 00:00:00', 1),
(3374, 3650, 59, 5, 0, 'No knowledge in digital Marketing, Her field of knowledge in Interior Design, and need time to think on the agreement', 50, '0000-00-00 00:00:00', 1),
(3375, 3410, 59, 7, 0, 'CTC Finalised for the candidate - 3,60,000 with PF xxamp PT Deductions - Gross 30,000 xxamp TH - 26192.Need to serve 15 days of notice', 50, '0000-00-00 00:00:00', 1),
(3376, 3648, 8, 4, 0, 'has good communication and convincing exp sal is 4l. check for MIS. knows basics in excel and ppt', 50, '0000-00-00 00:00:00', 1),
(3377, 3667, 59, 5, 0, 'Much into opertions, will not sustain in sales', 50, '0000-00-00 00:00:00', 1),
(3378, 3666, 8, 4, 3, 'check for CRM/RM', 50, '0000-00-00 00:00:00', 1),
(3379, 3624, 8, 5, 0, 'will not join', 29, '2021-03-05 12:40:17', 1),
(3380, 3668, 8, 5, 0, 'will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(3381, 3669, 8, 5, 0, 'gng to write IRDA exam, will not sustain here and exp is 13k.', 50, '0000-00-00 00:00:00', 1),
(3382, 3674, 8, 3, 0, '13k ctc for kannan team', 50, '0000-00-00 00:00:00', 1),
(3383, 3670, 59, 3, 0, '11K CTC for Muthu Team', 50, '0000-00-00 00:00:00', 1),
(3384, 3675, 8, 5, 0, 'will not join. not interested in voice.', 7, '0000-00-00 00:00:00', 1),
(3385, 3410, 40, 4, 4, 'Fit for Job..Expected pay 4lac PA..Good in sales and will sustain importance of job is high.', 59, '2021-03-05 05:55:25', 1),
(3386, 3670, 13, 7, 4, 'Confident level and convincing skill very good (10.5k salary  joining date 8th March)', 59, '2021-03-05 06:07:41', 1),
(3387, 3670, 59, 3, 0, '11K CTC for Muthu Team', 13, '2021-03-05 06:45:17', 1),
(3388, 3638, 29, 7, 2, 'selected for srm ', 8, '2021-03-05 06:55:33', 1),
(3389, 3648, 53, 2, 0, 'Hold. will check for a better profile', 8, '2021-03-05 06:57:33', 1),
(3390, 3674, 24, 4, 0, 'selected for next round', 8, '2021-03-05 08:53:07', 1),
(3391, 3675, 13, 7, 4, 'Good Confident Level and communication skills (10.5k Salary Joining date 8th March ', 8, '2021-03-05 08:55:08', 1),
(3392, 3666, 40, 5, 2, 'Not fit for job', 8, '2021-03-05 09:04:52', 1),
(3393, 3661, 13, 5, 0, 'candidate is not intrested in voice process. he is  looking for non voice process only', 8, '2021-03-05 09:11:42', 1),
(3394, 3410, 18, 7, 4, 'Selected for Veben Team. Expected salary is 4L per Annum but can give 3.6 under pantronics and commited to raise after seeeing 3 months perfomance. Once the offer is released he needs to serve 15 days notice period.', 40, '2021-03-06 08:56:03', 1),
(3395, 3659, 8, 5, 2, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(3396, 3620, 53, 5, 0, 'Written communication is not good', 8, '2021-03-06 10:46:20', 1),
(3397, 3586, 59, 5, 0, 'Profile ok, Very High CTC Expectation.Focus only on the package', 50, '0000-00-00 00:00:00', 1),
(3398, 3442, 8, 4, 3, 'check for RM. exp salary 28k.', 50, '0000-00-00 00:00:00', 1),
(3399, 3442, 40, 5, 3, 'Not fit for Job', 8, '2021-03-06 12:12:00', 1),
(3400, 3680, 8, 3, 0, 'CTC 156000 With Gross - 13000 And TH - 12350, for muthu team', 50, '0000-00-00 00:00:00', 1),
(3401, 3675, 8, 5, 0, 'will not join. not interested in voice.', 13, '2021-03-06 12:52:52', 1),
(3402, 3348, 59, 5, 0, 'Recently got Hike and looking for more. Will not sustain for a long, not open for agreement', 50, '0000-00-00 00:00:00', 1),
(3403, 3682, 8, 4, 3, 'check for RM, hold 2 offers. kindly check once. exp 5l', 50, '0000-00-00 00:00:00', 1),
(3404, 3683, 8, 2, 0, 'for RM. held up with some personal work. ', 50, '0000-00-00 00:00:00', 1),
(3405, 3665, 8, 5, 0, 'will not suite for sales calling.', 50, '0000-00-00 00:00:00', 1),
(3406, 3613, 8, 5, 0, 'comm is below avg. will not suite for mis', 50, '0000-00-00 00:00:00', 1),
(3407, 3684, 8, 4, 3, 'Check for RM, ', 50, '0000-00-00 00:00:00', 1),
(3408, 3677, 59, 5, 0, 'High CTC Expectation, Sustainability doubt, Have a plan to travel abroad also', 60, '0000-00-00 00:00:00', 1),
(3409, 3678, 8, 5, 0, 'avg comm, will not suite for mis.', 50, '0000-00-00 00:00:00', 1),
(3410, 3682, 40, 5, 3, 'Not fit job dataxquots which given by candidate is not relevant', 8, '2021-03-06 03:32:28', 1),
(3411, 3684, 40, 5, 3, 'Not fit for job', 8, '2021-03-06 03:34:32', 1),
(3412, 3680, 11, 4, 0, 'suitable for health process', 8, '2021-03-06 03:37:52', 1),
(3413, 3410, 59, 7, 0, 'CTC Finalised for the candidate - 3,60,000 with PF xxamp PT Deductions - Gross 30,000 xxamp TH - 26192.Need to serve 15 days of notice', 18, '2021-03-06 04:41:17', 1),
(3414, 3689, 8, 5, 0, 'profile was selected but he is not Interested. due to package', 7, '0000-00-00 00:00:00', 1),
(3415, 3690, 8, 3, 0, 'For Priyanka team With CTC - 126312 Gross - 10526 TH - 10000', 7, '0000-00-00 00:00:00', 1),
(3416, 3691, 8, 5, 0, 'avg communication, no written skill. will not suite for mis', 7, '0000-00-00 00:00:00', 1),
(3417, 3688, 8, 4, 0, 'check for MIS.', 60, '0000-00-00 00:00:00', 1),
(3418, 3689, 29, 4, 2, 'moved', 8, '2021-03-08 12:25:03', 1),
(3419, 3693, 8, 3, 0, '10k th 10526  as gross for muthuteam.', 7, '0000-00-00 00:00:00', 1),
(3420, 3693, 13, 7, 4, 'Ok 10k Salary  , she said that joining  date will be confirmed in 4 days', 8, '2021-03-08 12:26:35', 1),
(3421, 3695, 8, 3, 0, '13th for suthagar team', 7, '0000-00-00 00:00:00', 1),
(3422, 3694, 8, 5, 0, 'looking for non voice but has exp in voice 3yr', 60, '0000-00-00 00:00:00', 1),
(3423, 3696, 8, 4, 3, 'check for rE. fresher.', 7, '0000-00-00 00:00:00', 1),
(3424, 3692, 8, 2, 0, 'for agency BDM', 7, '0000-00-00 00:00:00', 1),
(3425, 3697, 8, 5, 0, 'avg comm. going to takeover his father business. will not sustain and will not suite for mis', 60, '0000-00-00 00:00:00', 1),
(3426, 3699, 8, 5, 0, 'fresher for us. 2yrs exp in max showroom sales. will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3427, 3698, 8, 5, 0, 'will not suite for us. not speaking up.', 7, '0000-00-00 00:00:00', 1),
(3428, 3701, 8, 5, 0, 'will not suite for calling, fresher', 7, '0000-00-00 00:00:00', 1),
(3429, 3703, 8, 2, 0, 'need to discuss ', 7, '0000-00-00 00:00:00', 1),
(3430, 3674, 53, 7, 0, 'selected for RE. kannan team, check-in traning period then wll decide.', 24, '2021-03-08 03:38:17', 1),
(3431, 3693, 8, 3, 0, '10k th 10526  as gross for muthuteam.', 13, '2021-03-08 04:39:35', 1),
(3432, 3696, 24, 4, 0, 'allocated for 2nd round.. ', 8, '2021-03-08 04:43:54', 1),
(3433, 3688, 59, 4, 0, 'Check for MIS Role, Communication is ok, Open for Agreement.50/50', 8, '2021-03-08 04:45:28', 1),
(3434, 3695, 24, 4, 0, 'selected for next round .. syed team', 8, '2021-03-08 04:53:43', 1),
(3435, 3693, 59, 7, 0, 'CTC 126312, Gross 10526  xxamp   TH10K', 8, '2021-03-08 04:54:43', 1),
(3436, 3688, 53, 2, 0, '50 50', 59, '2021-03-08 05:49:18', 1),
(3437, 3695, 53, 4, 0, 'shortlisted for RE. syed team', 24, '2021-03-08 06:00:22', 1),
(3438, 3696, 53, 5, 0, 'rejected', 24, '2021-03-08 06:01:00', 1),
(3439, 3694, 13, 4, 2, 'she is intrested only on  Non-voice process', 8, '2021-03-08 06:58:56', 1),
(3440, 3693, 8, 3, 0, '10k th 10526  as gross for muthuteam.', 59, '2021-03-08 07:13:03', 1),
(3441, 3641, 8, 4, 0, 'little bit slow. need to cross check. has sales exp.', 7, '0000-00-00 00:00:00', 1),
(3442, 3702, 8, 5, 0, 'will not suite for sales calling', 7, '0000-00-00 00:00:00', 1),
(3443, 3641, 59, 4, 0, 'Check for RM, No relevant Exp ', 8, '2021-03-08 07:33:56', 1),
(3444, 3674, 8, 3, 0, '13k ctc for kannan team', 53, '2021-03-09 10:06:16', 1),
(3445, 3715, 8, 5, 3, 'will not suite for sales. looking for HR job.', 7, '0000-00-00 00:00:00', 1),
(3446, 3714, 8, 3, 0, '13k ctc for suthagar team.', 7, '0000-00-00 00:00:00', 1),
(3447, 3714, 24, 4, 0, 'selected for next round', 8, '2021-03-09 11:11:19', 1),
(3448, 3694, 8, 5, 0, 'looking for non voice but has exp in voice 3yr', 13, '2021-03-09 11:25:31', 1),
(3449, 3716, 8, 3, 0, '15k th for syed team', 7, '0000-00-00 00:00:00', 1),
(3450, 3708, 59, 5, 0, 'No communication, will not fit for our role DM', 7, '0000-00-00 00:00:00', 1),
(3451, 3718, 8, 5, 0, 'will not suite for any profile.', 7, '0000-00-00 00:00:00', 1),
(3452, 3720, 8, 5, 0, 'will not suite for calling, fresher.', 50, '0000-00-00 00:00:00', 1),
(3453, 3719, 8, 3, 0, '13k ctc for thiyagu team', 50, '0000-00-00 00:00:00', 1),
(3454, 3723, 8, 5, 0, 'will not suite for our prosess. gaurav rejected him', 7, '0000-00-00 00:00:00', 1),
(3455, 3630, 69, 5, 0, 'The candidate wonxquott sustain for the long term', 60, '0000-00-00 00:00:00', 1),
(3456, 3641, 31, 5, 0, 'not fit for sales', 59, '2021-03-09 12:31:49', 1),
(3457, 3705, 8, 5, 0, 'no local language and lang is avg. will not suite for mis', 7, '0000-00-00 00:00:00', 1),
(3458, 3722, 8, 5, 1, 'Planing to do higher study and doing  part time job too.', 7, '0000-00-00 00:00:00', 1),
(3459, 3687, 59, 4, 0, 'Not much relevant Profile for our Sales, full into operations. Check for RM 50/50', 7, '0000-00-00 00:00:00', 1),
(3460, 3717, 59, 8, 0, 'The candidate left without attending the interview', 7, '0000-00-00 00:00:00', 1),
(3461, 3723, 29, 4, 2, 'Moved', 8, '2021-03-09 02:52:47', 1),
(3462, 3719, 16, 4, 0, 'good candidate good skills', 8, '2021-03-09 03:11:55', 1),
(3463, 3716, 57, 7, 0, 'candidate is ok .. salary 15k take home .. thank you', 8, '2021-03-09 03:13:28', 1),
(3464, 3730, 27, 2, 0, 'Task Given. Task was incomplete. He will come again in this weekend. ', 7, '0000-00-00 00:00:00', 1),
(3465, 3078, 27, 5, 0, 'not meet our expectations', 27, '2021-03-09 03:25:46', 1),
(3466, 3119, 27, 5, 0, 'could Not Meet Our Expectations', 27, '2021-03-09 03:26:03', 1),
(3467, 3131, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:26:13', 1),
(3468, 3223, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:26:20', 1),
(3469, 3227, 60, 1, 0, NULL, 27, '2021-03-09 03:27:05', 1),
(3470, 3227, 27, 7, 0, 'Selected by GS. we will see 1st 7 days. after that we will decide.', 27, '2021-03-09 03:27:05', 1),
(3471, 3230, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:27:15', 1),
(3472, 3234, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:27:22', 1),
(3473, 3271, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:27:29', 1),
(3474, 3272, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:27:37', 1),
(3475, 3287, 27, 5, 0, 'Task not completed perfectly.', 27, '2021-03-09 03:27:55', 1),
(3476, 3344, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:28:04', 1),
(3477, 3375, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:28:11', 1),
(3478, 3507, 27, 5, 0, 'Task completion not satisfied.', 27, '2021-03-09 03:28:41', 1),
(3479, 3315, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:29:26', 1),
(3480, 3301, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:30:05', 1),
(3481, 3443, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:30:21', 1),
(3482, 3367, 27, 5, 0, 'Task not completed.', 27, '2021-03-09 03:30:44', 1),
(3483, 3726, 8, 5, 0, 'looking for Back end job. not interested in sales', 7, '0000-00-00 00:00:00', 1),
(3484, 3728, 8, 5, 0, 'looking for non voice. not interested in sales.', 7, '0000-00-00 00:00:00', 1),
(3485, 3729, 8, 5, 3, 'will not sustain. ', 7, '0000-00-00 00:00:00', 1),
(3486, 3727, 8, 5, 3, 'will not sustain and will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3487, 3671, 59, 5, 0, 'Will not fit for our role DM, No communication', 7, '0000-00-00 00:00:00', 1),
(3488, 3625, 59, 4, 0, 'Check for DM, open for 1 yr Service only, Sustainability doubt, Age around 37 yrs.No content writing', 7, '0000-00-00 00:00:00', 1),
(3489, 3710, 59, 5, 0, 'Not suits for DM.Content not upto the mark', 7, '0000-00-00 00:00:00', 1),
(3490, 3725, 8, 2, 0, '2months exp. oral is avg. ', 7, '0000-00-00 00:00:00', 1),
(3491, 3724, 8, 5, 0, 'left before 2nd round', 7, '0000-00-00 00:00:00', 1),
(3492, 3721, 8, 5, 3, 'appearance and slang is not up to the level. will not suite for us', 7, '0000-00-00 00:00:00', 1),
(3493, 3709, 8, 4, 0, 'good communication and has exp in SAP. exp 20k and okay with bond', 7, '0000-00-00 00:00:00', 1),
(3494, 3709, 53, 4, 0, 'Good communication, hvng 6 yrs Exp', 8, '2021-03-09 05:12:21', 1),
(3495, 3410, 8, 3, 0, '30k ctc with pf and pt', 59, '2021-03-09 05:57:54', 1),
(3496, 3687, 8, 5, 0, 'will not suite for 30k package and will not suite for RM', 59, '2021-03-09 05:59:15', 1),
(3497, 3503, 59, 5, 0, 'The candidate didnxquott turn up, Sustainability doubt', 59, '2021-03-09 06:00:50', 1),
(3498, 3568, 59, 5, 0, 'He is much into testing, will not get fit for our Mern', 59, '2021-03-09 06:08:33', 1),
(3499, 3603, 59, 5, 0, 'Candidate ok, but only 50/50 for our MIS', 59, '2021-03-09 06:09:46', 1),
(3500, 3709, 54, 5, 0, 'she worked more than 6 years of Experience but not match her skill ', 53, '2021-03-09 06:29:42', 1),
(3501, 3323, 59, 1, 0, NULL, 13, '2021-03-09 06:49:38', 1),
(3502, 3714, 53, 7, 0, 'selected for suthagar team, CTC 13k. ', 24, '2021-03-09 07:06:56', 1),
(3503, 3625, 69, 2, 0, 'Given an Assignment, Candidate has to confirm about the sustainability.', 59, '2021-03-09 07:35:51', 1),
(3504, 3714, 59, 7, 0, 'CTC 156000 Monthly Gross - 13000 xxamp TH - 12350', 53, '2021-03-10 09:58:12', 1),
(3505, 3735, 59, 4, 0, 'Profile ok check for PHP', 7, '0000-00-00 00:00:00', 1),
(3506, 3719, 53, 7, 0, 'shortlisted for RE thiyagu team, 13k ctc pls cnfrm the joining', 16, '2021-03-10 10:30:03', 1),
(3507, 3719, 59, 7, 0, 'CTC 156000 with Monthly Gross - 13000 xxamp TH - 12350', 53, '2021-03-10 10:38:17', 1),
(3508, 3695, 59, 7, 0, 'CTC 164208 Monthly Gross - 13684 xxamp TH - 13000', 53, '2021-03-10 10:43:54', 1),
(3509, 3592, 69, 5, 0, 'High salary expectation\n', 69, '2021-03-10 10:46:48', 1),
(3510, 3695, 8, 3, 0, '13th for suthagar team', 59, '2021-03-10 10:49:53', 1),
(3511, 3719, 8, 3, 0, '13k ctc for thiyagu team', 59, '2021-03-10 10:52:58', 1),
(3512, 3714, 8, 3, 0, '13k ctc for suthagar team.', 59, '2021-03-10 10:57:05', 1),
(3513, 3623, 40, 2, 3, 'ok for 2 years contract not having proper documentation for graduation xxamp work! 18k can provide. Yet to confirm', 33, '2021-03-10 10:58:28', 1),
(3514, 3736, 8, 3, 0, '12k ctc for muthu team', 7, '0000-00-00 00:00:00', 1),
(3515, 3737, 8, 5, 0, 'will not suite for our process. 6m in hathway and exp is 12k min', 7, '0000-00-00 00:00:00', 1),
(3516, 3737, 8, 5, 0, 'will not suite for our process. 6m in hathway and exp is 12k min', 50, '0000-00-00 00:00:00', 1),
(3517, 3733, 8, 4, 0, 'Check for internship. fresher okay with 2yr bond.', 50, '0000-00-00 00:00:00', 1),
(3518, 3739, 8, 4, 3, 'check for RE. need to arrange 2w.', 50, '0000-00-00 00:00:00', 1),
(3519, 3736, 24, 4, 0, 'candidate direct handle to srikanth', 8, '2021-03-10 11:15:19', 1),
(3520, 3731, 59, 2, 0, 'Profile is ok,Latha took interview and need to get the confirmations  on the agreement xxamp terms', 7, '0000-00-00 00:00:00', 1),
(3521, 3739, 20, 4, 0, 'Suitable For RE, Genuine candidate,\nhas 5 months experience, bold voice, kindly Scrutinize and shortlist. Exptd CTC 13K', 8, '2021-03-10 12:12:37', 1),
(3522, 3706, 59, 5, 0, 'Fresher Profile,High CTC expectations,not much comfortable with Agreement', 7, '0000-00-00 00:00:00', 1),
(3523, 3711, 8, 5, 0, 'comm is very poor. will not suite for mis', 7, '0000-00-00 00:00:00', 1),
(3524, 3744, 59, 5, 0, 'Not open for Agreement,have a plan to  travel muscat,will not sustain for a long .high CTC expectations', 7, '0000-00-00 00:00:00', 1),
(3525, 3743, 8, 5, 0, 'not interested in sales job', 7, '0000-00-00 00:00:00', 1),
(3526, 3741, 8, 5, 0, 'will not sustain. looking for Temporary joj for 3-4months', 7, '0000-00-00 00:00:00', 1),
(3527, 3736, 20, 9, 0, 'Seems Suitable for voice, \nNot Possible to arrange two wheeler, kindly try for CRM', 24, '2021-03-10 12:37:05', 1),
(3528, 3736, 8, 3, 0, '12k ctc for muthu team', 20, '2021-03-10 12:41:04', 1),
(3529, 3739, 53, 2, 0, 'Need on week, priyanka will update on 17th.', 20, '2021-03-10 12:43:31', 1),
(3530, 3733, 59, 5, 0, 'Not suits for IT requirement.', 8, '2021-03-10 12:46:18', 1),
(3531, 3742, 8, 5, 0, 'not speaking up. will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(3532, 3745, 8, 3, 0, 'Selected With CTC - 309696 With Gross - 25808 TH - 22000', 7, '0000-00-00 00:00:00', 1),
(3533, 3732, 8, 3, 0, '350000 CTC,29167-gC, 25359-TH for Rajkumar team.', 7, '0000-00-00 00:00:00', 1),
(3534, 3750, 8, 5, 2, 'will not suite for our process. no relevant exp. exp min 16K.', 7, '0000-00-00 00:00:00', 1),
(3535, 3749, 8, 3, 0, '16k th for srikanth team.', 7, '0000-00-00 00:00:00', 1),
(3536, 3746, 8, 5, 0, 'will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3537, 3747, 8, 5, 0, 'will not suite for crm.', 7, '0000-00-00 00:00:00', 1),
(3538, 3707, 8, 2, 0, 'need to check.', 7, '0000-00-00 00:00:00', 1),
(3539, 3748, 8, 5, 0, 'Very Poor Communication. Will Not Suite For Our Process.', 7, '0000-00-00 00:00:00', 1),
(3540, 3749, 20, 4, 0, 'seems suitable for RE, Has done Multiple Switches in the past few years, kindly check sustainability and shortlist. Definitely has job need. wanted 16 to 17k as cTC.', 8, '2021-03-10 05:54:38', 1),
(3541, 3745, 33, 4, 3, 'I have 50% doubt on job sustainability but having sales experience in medical representative please check the profile and select if really works in our process ', 8, '2021-03-10 06:02:49', 1),
(3542, 3749, 53, 4, 0, 'Selected, srikanth team, 16k TH, DOJ 15th march, pls cnfm with the candidate', 20, '2021-03-10 06:13:11', 1),
(3543, 3736, 13, 7, 4, 'tomorrow joining', 8, '2021-03-10 06:14:50', 1),
(3544, 3735, 27, 2, 0, 'Task Given. He is working now.', 59, '2021-03-10 06:17:00', 1),
(3545, 3732, 33, 4, 4, 'Kindly check the sustainability and pressure handling ', 8, '2021-03-10 06:34:43', 1),
(3546, 3605, 8, 5, 0, 'not turned up', 8, '2021-03-10 06:36:46', 1),
(3547, 3703, 8, 5, 0, 'not turned up', 8, '2021-03-10 06:37:26', 1),
(3548, 3692, 53, 4, 0, 'pls check for Agency chanel', 8, '2021-03-10 06:37:56', 1),
(3549, 3692, 8, 2, 0, 'for agency BDM', 8, '2021-03-10 06:37:56', 1),
(3550, 3660, 8, 5, 0, 'asking for non voice', 8, '2021-03-10 06:38:20', 1),
(3551, 3736, 59, 7, 0, 'CTC 144000 with Gross - 12000 xxamp TH - 11400', 13, '2021-03-10 06:45:03', 1),
(3552, 3736, 8, 3, 0, '12k ctc for muthu team', 59, '2021-03-10 06:54:49', 1),
(3553, 3716, 53, 4, 0, 'selected. syed team 15750 ctc 15k TH, pls cnfrm joining date ', 57, '2021-03-11 10:22:07', 1),
(3554, 3716, 59, 7, 0, 'Selected for Syed Team,DOJ - 11/Mar with CTC - 1,89,480 Monthly Gross - 15790 xxamp TH - 15000 for Patroniss', 53, '2021-03-11 10:39:32', 1),
(3555, 3752, 41, 4, 0, 'Check sustainability and pressure handling', 50, '0000-00-00 00:00:00', 1),
(3556, 3749, 59, 7, 0, 'No relevant Exp, Open for Agreement  with document CTC - 2,02,104 with Gross - 16842 and TH - 16K', 53, '2021-03-11 11:34:12', 1),
(3557, 3716, 8, 3, 0, '15k th for syed team', 59, '2021-03-11 11:37:23', 1),
(3558, 3752, 8, 3, 0, 'CTC - 2,02,104 With Gross - 16842 And TH - 16000, for guru team', 41, '2021-03-11 11:45:08', 1),
(3559, 3761, 8, 3, 0, ' for muthu team With Gross - 12105 xxamp TH - 11500', 50, '0000-00-00 00:00:00', 1),
(3560, 3763, 8, 3, 0, 'Selected For Kannan Team RE,CTC - 168000 With Gross - 14000 xxamp TH - 13,300 ', 50, '0000-00-00 00:00:00', 1),
(3561, 3762, 8, 3, 0, '11k ctc for muthu team', 50, '0000-00-00 00:00:00', 1),
(3562, 3765, 8, 5, 0, 'looking for admin job.  will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(3563, 3766, 8, 5, 0, 'will not suite for calling. fresher 3m in semi voice.', 50, '0000-00-00 00:00:00', 1),
(3564, 3768, 8, 3, 0, '10k th for keerthiga team.', 50, '0000-00-00 00:00:00', 1),
(3565, 3692, 29, 4, 0, 'moved', 53, '2021-03-11 12:16:20', 1),
(3566, 3751, 59, 5, 0, 'Not open for Agreement, should check with family.Have a plan to do an MBA also.Sustainability doubt', 7, '0000-00-00 00:00:00', 1),
(3567, 3761, 13, 7, 4, 'Salary 11.5k( ,joining date March 15th )', 8, '2021-03-11 12:32:04', 1),
(3568, 3762, 13, 7, 4, 'Salary 10.5k( ,Joining Date March 15th )', 8, '2021-03-11 12:32:48', 1),
(3569, 3756, 8, 5, 0, 'will not suite for us.', 50, '0000-00-00 00:00:00', 1),
(3570, 3749, 8, 3, 0, '16k th for srikanth team.', 59, '2021-03-11 12:39:59', 1),
(3571, 3772, 8, 4, 3, 'check for BDM-agency channel', 50, '0000-00-00 00:00:00', 1),
(3572, 3764, 41, 4, 0, 'check for CRM ', 50, '0000-00-00 00:00:00', 1),
(3573, 3767, 8, 5, 0, 'appearance is not okay. avg communication.', 50, '0000-00-00 00:00:00', 1),
(3574, 3763, 53, 4, 0, 'he s not suit for Agency model, pls check fr RM', 8, '2021-03-11 01:10:47', 1),
(3575, 3759, 41, 4, 0, 'Not fit sor sales try for renewal', 7, '0000-00-00 00:00:00', 1),
(3576, 3771, 8, 5, 0, 'will not suite for CRM. looking for back end job.', 7, '0000-00-00 00:00:00', 1),
(3577, 3755, 59, 5, 0, 'Not open for agreement, Fresher will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(3578, 3773, 8, 5, 0, 'profile mismatch and will not suite for calling. no sustainability.', 50, '0000-00-00 00:00:00', 1),
(3579, 3759, 53, 5, 0, 'not suit for sales and renewals.', 41, '2021-03-11 04:00:57', 1),
(3580, 3764, 13, 4, 3, 'expected salary  high ', 41, '2021-03-11 04:01:37', 1),
(3581, 3763, 19, 4, 0, 'Shortlisted for RE with 14K ctc. kindly do the needful', 53, '2021-03-11 04:37:38', 1),
(3582, 3772, 53, 5, 0, 'not  suit for agency channel', 8, '2021-03-11 04:57:42', 1),
(3583, 3775, 8, 5, 0, 'too long. from gooduvancherry.', 7, '0000-00-00 00:00:00', 1),
(3584, 3768, 36, 4, 4, 'Selected for Keerthika team as a caller', 8, '2021-03-11 05:08:08', 1),
(3585, 3683, 8, 5, 0, 'not turnedup', 8, '2021-03-11 06:15:26', 1),
(3586, 3478, 53, 5, 0, 'HE is planning to work in dubai', 53, '2021-03-11 06:19:21', 1),
(3587, 3648, 59, 5, 0, 'Communication ok, Bit Attitude will not much suits for our role ', 53, '2021-03-11 06:20:15', 1),
(3588, 3648, 53, 4, 0, 'selcted fr next round', 53, '2021-03-11 06:20:15', 1),
(3589, 3688, 53, 5, 0, '50 50', 53, '2021-03-11 06:21:05', 1),
(3590, 3764, 59, 5, 0, 'Not suits for our role, expecting High Pay', 13, '2021-03-11 06:41:49', 1),
(3591, 3761, 59, 7, 0, 'CTC - 1,45,260 with Gross - 12105 xxamp TH - 11500', 13, '2021-03-11 06:46:37', 1),
(3592, 3762, 59, 7, 0, 'CTC - 132000 Gross - 11000 xxamp TH - 10450', 13, '2021-03-11 06:47:23', 1),
(3593, 3761, 8, 3, 0, ' for muthu team With Gross - 12105 xxamp TH - 11500', 59, '2021-03-11 07:15:45', 1),
(3594, 3762, 8, 3, 0, '11k ctc for muthu team', 59, '2021-03-11 07:16:43', 1),
(3595, 3623, 60, 1, 0, NULL, 40, '2021-03-12 08:43:26', 1),
(3596, 3623, 40, 4, 0, '18k can provide not more than that..fresher (Not Certificates having for graduation) \n2 years contract is ok for candidate.', 40, '2021-03-12 08:43:26', 1),
(3597, 3754, 59, 5, 0, 'Not Suitable(Interviewed by Latha)', 7, '0000-00-00 00:00:00', 1),
(3598, 3758, 59, 5, 0, 'Will not suits for our position(Interviewed by latha)', 7, '0000-00-00 00:00:00', 1),
(3599, 3343, 59, 2, 0, 'Will Come for System task , the profile is ok', 7, '0000-00-00 00:00:00', 1),
(3600, 3768, 18, 7, 3, 'Shortlisted For CRM In Keerthiga Team Expected Salary Is 10K And It Is Ok. Ready To Join On Monday\n', 36, '2021-03-12 11:04:35', 1),
(3601, 3734, 59, 5, 0, 'Not suitable for our Position(Interviewed by Latha)', 50, '0000-00-00 00:00:00', 1),
(3602, 3732, 18, 7, 4, 'Selected for veben Team. Kindly confirm the joining date with the candidate. Expecetd CTC is 3.5L PA but can give upto 27K take home but can negotiate', 33, '2021-03-12 11:27:30', 1),
(3603, 3745, 18, 7, 3, 'Selected for Raj Team. Last salary is 21k take home expected is 25K take home but can give 22k take home and promised to hike another 2 or 3k by giving 3 months target. ready to join on monday\n', 33, '2021-03-12 11:29:50', 1),
(3604, 3778, 8, 5, 0, 'avg communication, wrote content from google.', 50, '0000-00-00 00:00:00', 1),
(3605, 3781, 8, 4, 0, 'check for MIS', 50, '0000-00-00 00:00:00', 1),
(3606, 3783, 8, 4, 0, 'came for crm, int in DM internship. kindly cc.', 50, '0000-00-00 00:00:00', 1),
(3607, 3784, 8, 3, 0, 'CTC - 132000 With Gross - 11000 xxamp TH - 10450 for muthu team', 50, '0000-00-00 00:00:00', 1),
(3608, 3782, 8, 4, 3, 'fresher check for cRM. 10k', 50, '0000-00-00 00:00:00', 1),
(3609, 3784, 13, 7, 4, 'ok 11k ctc,joining date march 15th', 8, '2021-03-12 01:38:18', 1),
(3610, 3782, 13, 5, 2, 'not fit for telesales', 8, '2021-03-12 01:39:20', 1),
(3611, 3783, 59, 4, 0, 'Showing interest towards  DM,Keen to Learn check for Digital Marketing,Content Writing is Doubt', 8, '2021-03-12 01:40:20', 1),
(3612, 3781, 59, 4, 0, 'Communication is Good, need is there, but no relevant for our Role, Age is around 41', 8, '2021-03-12 01:40:40', 1),
(3613, 3785, 8, 5, 0, 'just like that came for an interview. no job need. Planing to do business', 50, '0000-00-00 00:00:00', 1),
(3614, 3752, 34, 7, 4, 'selected for next round', 8, '2021-03-12 03:16:36', 1),
(3615, 3752, 8, 3, 0, 'CTC - 2,02,104 With Gross - 16842 And TH - 16000, for guru team', 8, '2021-03-12 03:16:36', 1),
(3616, 3707, 8, 5, 0, 'wrote written from google. comm was okay. 25k exp.', 8, '2021-03-12 03:17:34', 1),
(3617, 3768, 8, 3, 0, '10k th for keerthiga team.', 18, '2021-03-12 03:19:00', 1),
(3618, 3680, 8, 3, 0, 'CTC 156000 With Gross - 13000 And TH - 12350, for muthu team', 11, '2021-03-12 03:38:37', 1),
(3619, 3789, 59, 4, 0, 'Profile  ok, No Insurance Sales but can give a try for RM', 50, '0000-00-00 00:00:00', 1),
(3620, 3784, 59, 7, 0, 'CTC - 132000 with Gross - 11000 xxamp TH - 10450', 13, '2021-03-12 05:23:44', 1),
(3621, 3752, 53, 4, 0, 'Selected for RE  guru team , DOJ 15 mar 21, CTC 16850', 34, '2021-03-12 05:26:14', 1),
(3622, 3781, 53, 5, 0, 'good communication but know have basic knowledge in excel and analytical.', 59, '2021-03-12 05:30:40', 1),
(3623, 3783, 69, 5, 0, 'Candidat not having basic knowledge about DM', 59, '2021-03-12 05:32:15', 1),
(3624, 3789, 8, 2, 0, 'for next round', 59, '2021-03-12 05:33:29', 1),
(3625, 3784, 8, 3, 0, 'CTC - 132000 With Gross - 11000 xxamp TH - 10450 for muthu team', 59, '2021-03-12 05:35:57', 1),
(3626, 3789, 31, 4, 0, 'hold', 8, '2021-03-12 05:50:06', 1),
(3627, 3752, 59, 7, 0, 'CTC - 2,02,104 with Gross - 16842 and TH - 16000', 53, '2021-03-12 06:03:12', 1),
(3628, 3757, 8, 5, 2, 'will not suite for sales, will not sustain, no job need, will not handle pressure', 50, '0000-00-00 00:00:00', 1),
(3629, 3793, 59, 2, 0, 'Should check with the family on the agreement and the salary Package', 50, '0000-00-00 00:00:00', 1),
(3630, 3779, 8, 2, 0, 'has to discuss about the bond. fresher.', 50, '0000-00-00 00:00:00', 1),
(3631, 3798, 8, 4, 3, '2yr exp in AR calling. exp 20k, check for RE.', 7, '0000-00-00 00:00:00', 1),
(3632, 3803, 8, 5, 2, 'not Speaking up,  will not suite for sales. doesnt have observation and listening skills', 50, '0000-00-00 00:00:00', 1),
(3633, 3788, 59, 2, 0, 'WIll come for the system task', 50, '0000-00-00 00:00:00', 1),
(3634, 3798, 16, 4, 0, 'selected ', 8, '2021-03-13 11:39:35', 1),
(3635, 3804, 8, 5, 0, 'will not suite for sales calling. exp is 18k. newly married too. will not sustain.', 7, '0000-00-00 00:00:00', 1),
(3636, 3801, 8, 5, 3, 'pursuing her final year, has to attend online class weekly twice. ask her to call after degree.', 7, '0000-00-00 00:00:00', 1),
(3637, 3807, 8, 5, 0, 'will not sustain and time being he is looking for job. language is also not good.', 7, '0000-00-00 00:00:00', 1),
(3638, 3806, 8, 5, 0, 'profile and data miss match and will not sustain. not speaking up. will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(3639, 3805, 8, 5, 0, 'no job need, will not sustain and will not suite for calling too.', 7, '0000-00-00 00:00:00', 1),
(3640, 3790, 59, 2, 0, 'Scheduled client(Nalam Healthcare)Interview on Monday 15-Mar', 7, '0000-00-00 00:00:00', 1),
(3641, 3792, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(3642, 3809, 8, 2, 0, 'has to check with client company.', 7, '0000-00-00 00:00:00', 1),
(3643, 3795, 59, 5, 0, 'Not comfortable with the agreement, left without attending the 2nd level interview', 7, '0000-00-00 00:00:00', 1),
(3644, 3797, 59, 5, 0, 'Not Comfortable With The Agreement, Left Without Attending The 2nd Level Interview', 7, '0000-00-00 00:00:00', 1),
(3645, 3808, 8, 2, 0, 'asked him to attend 2nd round interview. left b4 interview.', 7, '0000-00-00 00:00:00', 1),
(3646, 3791, 59, 2, 0, 'Scheduled Client(Nalam) Interview on 15-Mar', 60, '0000-00-00 00:00:00', 1),
(3647, 3752, 8, 3, 0, 'CTC - 2,02,104 With Gross - 16842 And TH - 16000, for guru team', 59, '2021-03-13 02:50:50', 1),
(3648, 3776, 69, 5, 0, 'Attitude issue.', 60, '0000-00-00 00:00:00', 1),
(3649, 3794, 59, 2, 0, 'Scheduled for Client Interview', 50, '0000-00-00 00:00:00', 1),
(3650, 3815, 8, 5, 0, 'too long from ennore', 7, '0000-00-00 00:00:00', 1),
(3651, 3774, 8, 2, 0, 'for bond-has to discuss with family ', 7, '0000-00-00 00:00:00', 1),
(3652, 3814, 8, 5, 0, 'no relevant exp. too long from ennore.', 7, '0000-00-00 00:00:00', 1),
(3653, 3680, 13, 7, 4, 'ok 13k ctc (joining date March  15th)', 8, '2021-03-13 05:01:27', 1),
(3654, 3680, 8, 3, 0, 'CTC 156000 With Gross - 13000 And TH - 12350, for muthu team', 8, '2021-03-13 05:01:27', 1),
(3655, 3810, 41, 5, 0, 'Looking for non voice', 7, '0000-00-00 00:00:00', 1),
(3656, 3811, 41, 5, 0, 'not bold', 7, '0000-00-00 00:00:00', 1),
(3657, 3813, 41, 5, 0, 'Not at all speaking', 7, '0000-00-00 00:00:00', 1),
(3658, 3680, 59, 7, 0, 'CTC 156000 with Gross - 13000 and TH - 12350', 13, '2021-03-13 05:03:35', 1),
(3659, 3558, 60, 1, 0, NULL, 16, '2021-03-13 05:41:53', 1),
(3660, 3558, 16, 4, 0, 'Selected', 16, '2021-03-13 05:41:53', 1),
(3661, 3798, 60, 1, 0, NULL, 16, '2021-03-13 05:43:40', 1),
(3662, 3680, 8, 3, 0, 'CTC 156000 With Gross - 13000 And TH - 12350, for muthu team', 59, '2021-03-13 05:56:42', 1),
(3663, 3558, 8, 3, 0, 'Selected For Thiyagu Team,CTC - 2,04,000 With Gross - 17000 xxamp TH - 16150', 59, '2021-03-13 06:03:16', 1),
(3664, 3763, 59, 7, 0, 'Selected for Kannan Team RE,CTC - 168000 with Gross - 14000 xxamp TH - 13,300 ', 19, '2021-03-13 06:36:29', 1),
(3665, 3763, 8, 3, 0, 'Selected For Kannan Team RE,CTC - 168000 With Gross - 14000 xxamp TH - 13,300 ', 59, '2021-03-13 06:41:42', 1),
(3666, 3638, 59, 7, 0, 'Selected CTC - 3,80,000 with Gross - 31667 xxamp TH - 27859 ', 29, '2021-03-13 07:29:29', 1),
(3667, 3638, 8, 3, 0, ' CTC - 3,80,000 With Gross - 31667 xxamp TH - 27859  for shanmugam', 59, '2021-03-15 09:51:55', 1),
(3668, 3826, 8, 5, 0, 'will not suite for calling. local slang.', 50, '0000-00-00 00:00:00', 1),
(3669, 3802, 59, 4, 0, 'Profile interviewed by latha,Will schedule the second round interview with Sathish\n', 50, '0000-00-00 00:00:00', 1),
(3670, 3787, 59, 7, 0, 'Selected for DM with Internship for 3 months\nInternship pay 2k employment will be discussed after internship.2.3 yrs of agreement', 50, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(3671, 3816, 59, 5, 0, 'Will not fit for our PHP Role\n', 50, '0000-00-00 00:00:00', 1),
(3672, 3676, 8, 4, 0, 'comm is okay but very slow while speaking, okay with bond and salary.', 50, '0000-00-00 00:00:00', 1),
(3673, 3827, 8, 4, 3, 'check for RE, 1yr in Credit card sales.', 50, '0000-00-00 00:00:00', 1),
(3674, 3820, 59, 5, 0, 'Not suitable for Dotnet Winforms', 50, '0000-00-00 00:00:00', 1),
(3675, 3796, 59, 2, 0, 'Fresher profile, Open for Agreement but  doubtful with her sustainability,Aged around 25 ', 50, '0000-00-00 00:00:00', 1),
(3676, 3818, 8, 2, 0, 'ctc 5l, will not sustain.', 50, '0000-00-00 00:00:00', 1),
(3677, 3800, 59, 5, 0, 'Not open for the agreement, Fresher profile', 50, '0000-00-00 00:00:00', 1),
(3678, 3623, 59, 7, 0, 'Selected for Veben Team,CTC - 2,61,696 with monthly Gross - 21808 xxamp TH - 18000 ', 18, '2021-03-15 01:26:41', 1),
(3679, 3825, 8, 4, 0, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(3680, 3831, 8, 5, 0, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(3681, 3676, 59, 5, 0, 'Communication ok, Not seems much active and  will take a long to train the candidate', 8, '2021-03-15 01:36:13', 1),
(3682, 3827, 16, 5, 0, 'no skills,no experince', 8, '2021-03-15 01:42:23', 1),
(3683, 3623, 8, 3, 0, 'For Veben Team,CTC - 2,61,696 With Monthly Gross - 21808 xxamp TH - 18000 ', 59, '2021-03-15 02:35:55', 1),
(3684, 3832, 8, 5, 0, 'will not handle pressure and will not sustain. int in photography and absconded from previous company and told the company was shutdown.', 50, '0000-00-00 00:00:00', 1),
(3685, 3833, 8, 5, 0, 'last th is 14k and exp 25kth.  profile matches for RE.', 50, '0000-00-00 00:00:00', 1),
(3686, 3802, 27, 5, 0, 'Task not completed.', 59, '2021-03-15 05:09:07', 1),
(3687, 3787, 69, 4, 0, 'Candidate selected for next round.', 59, '2021-03-15 05:11:32', 1),
(3688, 3825, 53, 4, 0, 'thinking abt bond. pls cnfrm with the candidate', 8, '2021-03-15 05:51:47', 1),
(3689, 3835, 8, 5, 3, 'will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3690, 1585, 19, 5, 1, 'NOT FIT FOR SALES', 8, '2021-03-15 06:10:05', 1),
(3691, 1598, 19, 5, 1, 'not fit for sale', 8, '2021-03-15 06:11:03', 1),
(3692, 3825, 59, 5, 0, 'Very High Expectation,No relevant Exp last CTC - 1,44,00 and the expected CTC - 192000 more than 30%', 53, '2021-03-15 06:23:25', 1),
(3693, 3825, 17, 4, 3, 'Need to check sustain ability ', 59, '2021-03-15 06:58:15', 1),
(3694, 3788, 59, 5, 0, 'System Task Given and not to able to do the tsk', 59, '2021-03-15 07:05:21', 1),
(3695, 3793, 59, 5, 0, 'Not open for the agreement', 59, '2021-03-15 07:06:00', 1),
(3696, 3731, 59, 5, 0, 'Not completed the task\n', 59, '2021-03-15 07:07:40', 1),
(3697, 3825, 59, 5, 0, 'Very High Expectation,No relevant Exp last CTC - 1,44,00 and the expected CTC - 192000 more than 30%', 17, '2021-03-16 10:28:51', 1),
(3698, 3567, 27, 5, 0, 'Task not completed.', 27, '2021-03-16 10:34:10', 1),
(3699, 3840, 8, 5, 2, 'will not suite for calling. not speaking up.', 7, '0000-00-00 00:00:00', 1),
(3700, 3841, 8, 5, 0, 'pronunciation is not good. will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3701, 3834, 8, 5, 0, 'no observation, listening, acceptance. fresher looking for 3l ctc', 7, '0000-00-00 00:00:00', 1),
(3702, 3846, 8, 5, 0, 'will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3703, 3780, 8, 5, 0, 'no job need. written was avg. will not suite for coordination', 7, '0000-00-00 00:00:00', 1),
(3704, 3847, 59, 2, 0, 'scheduled for Client Interview', 60, '0000-00-00 00:00:00', 1),
(3705, 3787, 59, 7, 0, 'Selected for DM with Internship for 3 months\nInternship pay 2k employment will be discussed after internship.2.3 yrs of agreement', 69, '2021-03-16 12:37:52', 1),
(3706, 3848, 68, 4, 0, '..', 7, '0000-00-00 00:00:00', 1),
(3707, 3848, 30, 7, 0, 'confirm joining and further process', 68, '2021-03-16 03:31:32', 1),
(3708, 3787, 8, 3, 0, 'Selected For DM With Internship For 3 Months\nInternship Pay 2k Employment Will Be Discussed After Internship.2.3 Yrs Of Agreement', 59, '2021-03-16 04:15:03', 1),
(3709, 3845, 8, 4, 3, 'check for RM, arumbakkam team', 7, '0000-00-00 00:00:00', 1),
(3710, 3845, 53, 8, 0, 'not attended', 8, '2021-03-16 05:41:05', 1),
(3711, 3837, 8, 5, 0, 'will not sustain and looking for network engg. job or it job but not oaky with internship with infotech, not int in sales, demand 20k package.', 7, '0000-00-00 00:00:00', 1),
(3712, 3851, 59, 2, 0, 'Scheduled for the client interview', 7, '0000-00-00 00:00:00', 1),
(3713, 3838, 59, 2, 0, 'Scheduled client round of discussion ', 7, '0000-00-00 00:00:00', 1),
(3714, 3843, 59, 5, 0, 'Attitude issue,not open for Agreement', 7, '0000-00-00 00:00:00', 1),
(3715, 3853, 8, 5, 2, 'not interested in sales, will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3716, 3860, 8, 5, 2, 'will not suite for our process, not active, exp is 18th.', 7, '0000-00-00 00:00:00', 1),
(3717, 3861, 8, 5, 0, 'will not suite for sales, not interested in sales.', 7, '0000-00-00 00:00:00', 1),
(3718, 3753, 59, 2, 0, 'Should check for the service Agreement, fresher profile  looking for Mern Stack', 7, '0000-00-00 00:00:00', 1),
(3719, 3859, 8, 5, 0, 'will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3720, 3850, 59, 5, 0, 'not open for the agreement', 60, '0000-00-00 00:00:00', 1),
(3721, 3857, 59, 2, 0, 'Schedule for the client round of Interview', 7, '0000-00-00 00:00:00', 1),
(3722, 3863, 8, 5, 0, 'looking for accounts job. comm is avg.', 7, '0000-00-00 00:00:00', 1),
(3723, 3864, 8, 2, 0, 'for next round.', 7, '0000-00-00 00:00:00', 1),
(3724, 3865, 8, 5, 0, 'fresher, avg communication. knows basics in excel.', 7, '0000-00-00 00:00:00', 1),
(3725, 3856, 59, 2, 0, 'Should check for the service Agreement,will come back after 2 Days', 7, '0000-00-00 00:00:00', 1),
(3726, 3866, 8, 5, 3, 'will not sustain, done her physiotheraphy and medical coding course. will move easily, not okay with the bond too. ', 7, '0000-00-00 00:00:00', 1),
(3727, 3867, 8, 5, 2, 'will  not suite for any profile. attitude was very bad.', 7, '0000-00-00 00:00:00', 1),
(3728, 3868, 8, 5, 0, 'exp is 30-35k, oral is good but written is below avg.', 7, '0000-00-00 00:00:00', 1),
(3729, 3858, 59, 5, 0, 'Should check for agreement,sustainability doubt\n', 50, '0000-00-00 00:00:00', 1),
(3730, 3745, 59, 7, 0, 'Selected with CTC - 309696 with Gross - 25808 TH - 22000', 18, '2021-03-17 03:53:23', 1),
(3731, 3882, 8, 5, 3, 'will not suite for our process. has exp in showroom sales.', 7, '0000-00-00 00:00:00', 1),
(3732, 3870, 8, 4, 0, 'he is looking for internship in DM but sabeha scheduled for DA interview. check his profile will suite for any IT profile.', 7, '0000-00-00 00:00:00', 1),
(3733, 3884, 8, 3, 0, 'Selected For Srikanth Team CTC - 192000 With PF PT  ESI Deductions', 7, '0000-00-00 00:00:00', 1),
(3734, 3885, 8, 3, 0, 'Selected For BDM Role,CTC - 5,49,600 Gross - 45,800 TH - 41992', 7, '0000-00-00 00:00:00', 1),
(3735, 3849, 59, 5, 0, 'Not much suits for our Mern Stack profile', 50, '0000-00-00 00:00:00', 1),
(3736, 3855, 59, 3, 0, 'Selected for the client Nalam Health care after 6 months probation - 10K Salary', 50, '0000-00-00 00:00:00', 1),
(3737, 3862, 8, 2, 0, 'hold for salary confirmation. he yet to decide', 50, '0000-00-00 00:00:00', 1),
(3738, 3886, 8, 5, 0, 'will not sustain for long term. doing his part time jobs. exp salary is also high as fresher.', 7, '0000-00-00 00:00:00', 1),
(3739, 3879, 59, 2, 0, 'Schedule for the client interview', 7, '0000-00-00 00:00:00', 1),
(3740, 3887, 8, 2, 0, 'check for agency module', 7, '0000-00-00 00:00:00', 1),
(3741, 3889, 8, 5, 0, 'communication and convincing is not good. will not suite for our process. may try as agent.', 7, '0000-00-00 00:00:00', 1),
(3742, 3894, 8, 3, 0, 'Selected For Muthu With CTC  - 1,44,000 And Gross - 12000 TH - 11400', 50, '0000-00-00 00:00:00', 1),
(3743, 3890, 41, 4, 0, 'Check for CRM and Salary', 50, '0000-00-00 00:00:00', 1),
(3744, 3891, 8, 5, 0, 'will not sustain, has only 5m exp in insurance. 6yr in credit card sales. but will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3745, 3895, 8, 5, 0, 'will not suite for sales, not speaking up.  fresher.', 7, '0000-00-00 00:00:00', 1),
(3746, 3896, 8, 2, 0, 'asked him to cut his hair and come back for interview.', 7, '0000-00-00 00:00:00', 1),
(3747, 3873, 69, 5, 0, 'Candidate not Interested suitable for digital marketing.', 50, '0000-00-00 00:00:00', 1),
(3748, 3897, 8, 3, 0, 'Selected For Srikanth Team With CTC 176844 Gross - 14737 xxamp TH - 14000', 7, '0000-00-00 00:00:00', 1),
(3749, 3872, 8, 8, 0, 'left before interview. will come tomorrow.', 7, '0000-00-00 00:00:00', 1),
(3750, 3885, 29, 4, 0, 'Selected for HNI', 8, '2021-03-18 03:19:13', 1),
(3751, 3890, 13, 7, 4, 'ctc-13k ,tomorrow joining', 41, '2021-03-18 03:32:45', 1),
(3752, 3903, 59, 5, 0, 'Not suitable and the expectation is very high', 7, '0000-00-00 00:00:00', 1),
(3753, 3894, 13, 7, 4, 'ctc-12k,joining date 22nd March', 8, '2021-03-18 04:01:03', 1),
(3754, 3862, 53, 4, 0, 'check fr rE, looking high package', 8, '2021-03-18 04:08:03', 1),
(3755, 3893, 8, 2, 0, 'check once', 7, '0000-00-00 00:00:00', 1),
(3756, 3875, 8, 3, 0, 'Selected For Srikanth Team With CTC - 202104 Gross - 16842 xxamp TH - 16000', 7, '0000-00-00 00:00:00', 1),
(3757, 3890, 59, 7, 0, 'Selected for Muthu Team with CTC - 1,56,000 Gross - 13000 xxamp TH - 12350', 13, '2021-03-18 04:56:56', 1),
(3758, 3894, 59, 7, 0, 'Selected for Muthu with CTC  - 1,44,000 and Gross - 12000 TH - 11400', 13, '2021-03-18 04:58:13', 1),
(3759, 3893, 20, 9, 0, 'Not ready for field sales, kindly check for CRM', 8, '2021-03-18 05:29:33', 1),
(3760, 3890, 8, 3, 0, 'Selected For Muthu Team With CTC - 1,56,000 Gross - 13000 xxamp TH - 12350', 59, '2021-03-18 05:56:50', 1),
(3761, 3897, 20, 4, 0, 'Has a bold Voice, Kindly finalize CTC and shortlist. ', 8, '2021-03-18 05:58:10', 1),
(3762, 3894, 8, 3, 0, 'Selected For Muthu With CTC  - 1,44,000 And Gross - 12000 TH - 11400', 59, '2021-03-18 05:58:18', 1),
(3763, 3884, 20, 5, 0, 'Not Fit For sales', 8, '2021-03-18 06:04:02', 1),
(3764, 3870, 59, 5, 0, 'Will not fit for our Roles', 8, '2021-03-18 06:09:09', 1),
(3765, 3862, 8, 2, 0, 'hold for salary confirmation. he yet to decide', 53, '2021-03-18 06:42:13', 1),
(3766, 3901, 8, 2, 0, 'check for RE', 7, '0000-00-00 00:00:00', 1),
(3767, 3913, 8, 3, 0, 'Selected For Srikanth 2 Yrs Agreement Proposed With CTC - 164208  Gross-13684 TH - 13000', 50, '0000-00-00 00:00:00', 1),
(3768, 3911, 8, 5, 3, 'too long and she is a boxing trainer as well as personal trainer. our office timing will not match. ', 7, '0000-00-00 00:00:00', 1),
(3769, 3914, 8, 3, 0, 'Selected With CTC - 198000 Gross - 16500 TH -  15675', 7, '0000-00-00 00:00:00', 1),
(3770, 3892, 59, 2, 0, 'Will schedule the candidate for the client round\n', 7, '0000-00-00 00:00:00', 1),
(3771, 3907, 8, 5, 0, 'body lang and attitude is not good. communication is okay and written is avg.exp is 28th. one year gap.', 7, '0000-00-00 00:00:00', 1),
(3772, 3916, 8, 5, 3, 'not interested in sales. will not handle pressure. will not suite for mIS eng comm. is below avg.', 7, '0000-00-00 00:00:00', 1),
(3773, 3901, 53, 4, 0, 'Pls check for RM exp sal 20k', 8, '2021-03-19 11:55:26', 1),
(3774, 3922, 8, 5, 0, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(3775, 3921, 8, 3, 0, 'Selected For Guru Team With CTC - 202104 Gross - 16842 TH - 16000', 50, '0000-00-00 00:00:00', 1),
(3776, 3914, 53, 4, 0, 'Selected for RE. pls check', 8, '2021-03-19 12:16:08', 1),
(3777, 3918, 8, 5, 0, 'pronunciation is not clear will not suite for calling and sales', 7, '0000-00-00 00:00:00', 1),
(3778, 3913, 20, 4, 0, 'Seems Suitable for RE,  doesnxquott have sales experience, yet seems convincing and tries to explain whatever topic given. kindly do the needful.', 8, '2021-03-19 01:02:52', 1),
(3779, 3919, 8, 5, 0, 'not speaking up and will not suite for calling and sales.', 7, '0000-00-00 00:00:00', 1),
(3780, 3901, 31, 9, 0, 'check for RE', 53, '2021-03-19 01:33:35', 1),
(3781, 3924, 8, 5, 0, 'will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(3782, 3925, 8, 5, 0, 'not speaking up, will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3783, 3914, 34, 7, 4, 'selected', 53, '2021-03-19 02:32:32', 1),
(3784, 3739, 53, 5, 0, 'he didnxquott turned up', 53, '2021-03-19 02:51:23', 1),
(3785, 3913, 53, 4, 0, 'selected for re, immediate joining.', 20, '2021-03-19 03:03:12', 1),
(3786, 3913, 59, 7, 0, 'Selected for Srikanth 2 yrs agreement proposed with CTC - 164208  Gross-13684 TH - 13000', 53, '2021-03-19 03:20:50', 1),
(3787, 3848, 59, 7, 0, 'CTC - 333036 with Gross-27753 xxamp TH - 23945', 30, '2021-03-19 03:38:50', 1),
(3788, 3927, 8, 2, 0, 'has to confirm', 7, '0000-00-00 00:00:00', 1),
(3789, 3917, 8, 5, 2, 'will not suite for sales profile. can try for Agent.', 7, '0000-00-00 00:00:00', 1),
(3790, 3912, 8, 3, 0, 'For Gaurav team. With CTC - 1,50,000 Gross - 12500 TH - 11875', 7, '0000-00-00 00:00:00', 1),
(3791, 3912, 29, 4, 2, 'Moved', 8, '2021-03-19 04:24:58', 1),
(3792, 3927, 13, 4, 4, 'ok but expected salary high ', 8, '2021-03-19 04:29:25', 1),
(3793, 3921, 31, 9, 0, 'check for RE', 8, '2021-03-19 04:31:55', 1),
(3794, 3836, 8, 2, 0, 'will update.', 7, '0000-00-00 00:00:00', 1),
(3795, 3836, 8, 2, 0, 'will check with his mom', 8, '2021-03-19 05:00:03', 1),
(3796, 3923, 59, 5, 0, 'Will not fit for our role', 7, '0000-00-00 00:00:00', 1),
(3797, 3896, 8, 5, 0, 'not turned up', 8, '2021-03-19 05:05:40', 1),
(3798, 3864, 18, 5, 0, 'Not fit for our profile\n', 8, '2021-03-19 05:10:00', 1),
(3799, 3864, 8, 4, 0, 'Check for BDM-HNI/Partner, has exp in retail and  franchise pan india', 8, '2021-03-19 05:10:00', 1),
(3800, 3848, 8, 3, 0, 'CTC - 333036 With Gross-27753 xxamp TH - 23945', 59, '2021-03-19 05:11:43', 1),
(3801, 3745, 8, 3, 0, 'Selected With CTC - 309696 With Gross - 25808 TH - 22000', 59, '2021-03-19 05:14:32', 1),
(3802, 3921, 8, 3, 0, 'Selected For Guru Team With CTC - 202104 Gross - 16842 TH - 16000', 31, '2021-03-19 05:48:21', 1),
(3803, 3901, 8, 2, 0, 'check for RE', 31, '2021-03-19 05:48:57', 1),
(3804, 3789, 8, 2, 0, 'for next round', 31, '2021-03-19 05:49:45', 1),
(3805, 2633, 8, 5, 0, 'not turned up', 31, '2021-03-19 05:51:02', 1),
(3806, 2633, 31, 4, 0, 'check with this profile', 31, '2021-03-19 05:51:02', 1),
(3807, 3862, 8, 5, 0, 'salary will not suit. exp is high', 8, '2021-03-19 05:56:31', 1),
(3808, 3818, 8, 5, 0, 'will check for someother profile.', 8, '2021-03-19 05:57:06', 1),
(3809, 3732, 59, 2, 0, 'Discussed on the CTC,candidate will share the Salary Breakup.once received will review and confirm the CTC', 18, '2021-03-19 06:20:30', 1),
(3810, 3875, 20, 7, 0, 'Has 7 years experience in back office and general insurance sales. seems suitable for RE willing to go field kindly finalize CTC for joining.', 8, '2021-03-19 06:44:56', 1),
(3811, 3913, 8, 3, 0, 'Selected For Srikanth 2 Yrs Agreement Proposed With CTC - 164208  Gross-13684 TH - 13000', 59, '2021-03-19 07:04:56', 1),
(3812, 3921, 34, 7, 4, 'selected', 8, '2021-03-20 09:44:05', 1),
(3813, 3735, 27, 5, 0, 'He has not interested to join.', 27, '2021-03-20 10:02:01', 1),
(3814, 3934, 59, 5, 0, 'No Communication, not open for Agreement,expecting High Salary', 7, '0000-00-00 00:00:00', 1),
(3815, 3915, 59, 5, 0, 'Sustainability Doubt', 7, '0000-00-00 00:00:00', 1),
(3816, 3875, 53, 7, 0, 'shortlisted for srikanth team, doj 22 mar 21, 2yrs bond, sal 16k TH', 20, '2021-03-20 10:42:17', 1),
(3817, 3897, 53, 7, 0, 'shortlisted for srikanth team, 14k TH, depends on the performance will increase the salary  after 6 Month.', 20, '2021-03-20 10:43:26', 1),
(3818, 3893, 8, 2, 0, 'check once', 20, '2021-03-20 10:53:29', 1),
(3819, 3875, 59, 7, 0, 'Selected for Srikanth Team with CTC - 202104 Gross - 16842 xxamp TH - 16000', 53, '2021-03-20 11:00:35', 1),
(3820, 3897, 59, 7, 0, 'Selected for Srikanth Team with CTC 176844 Gross - 14737 xxamp TH - 14000', 53, '2021-03-20 11:02:49', 1),
(3821, 3936, 8, 4, 3, 'has 2yr exp in calling, check for our process.', 7, '0000-00-00 00:00:00', 1),
(3822, 3935, 8, 5, 3, 'will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3823, 3927, 8, 2, 0, 'has to confirm', 13, '2021-03-20 12:01:51', 1),
(3824, 3938, 8, 4, 3, 'check for CRM. has 2yr exp in calling. check for sales process.', 7, '0000-00-00 00:00:00', 1),
(3825, 3937, 8, 8, 0, 'left before interview', 7, '0000-00-00 00:00:00', 1),
(3826, 3914, 59, 7, 0, 'Selected with CTC - 198000 Gross - 16500 TH -  15675', 34, '2021-03-20 12:36:27', 1),
(3827, 3921, 53, 7, 0, 'selected for guru team, doj 22 mar 21, pls cnfem the salary', 34, '2021-03-20 12:40:26', 1),
(3828, 3939, 8, 8, 0, 'Left Before Interview', 7, '0000-00-00 00:00:00', 1),
(3829, 3940, 8, 8, 0, 'Left Before Interview', 7, '0000-00-00 00:00:00', 1),
(3830, 3936, 53, 2, 0, 'left without attending', 8, '2021-03-20 01:38:31', 1),
(3831, 3938, 13, 5, 2, 'not suitable for telesales', 8, '2021-03-20 01:41:27', 1),
(3832, 3921, 59, 7, 0, 'Selected for Guru Team with CTC - 202104 Gross - 16842 TH - 16000', 53, '2021-03-20 02:56:16', 1),
(3833, 3926, 59, 2, 0, 'Scheduled client interview ', 60, '0000-00-00 00:00:00', 1),
(3834, 3933, 59, 2, 0, 'Scheduled client interview', 60, '0000-00-00 00:00:00', 1),
(3835, 3875, 8, 3, 0, 'Selected For Srikanth Team With CTC - 202104 Gross - 16842 xxamp TH - 16000', 59, '2021-03-20 04:59:59', 1),
(3836, 3897, 8, 3, 0, 'Selected For Srikanth Team With CTC 176844 Gross - 14737 xxamp TH - 14000', 59, '2021-03-20 05:02:31', 1),
(3837, 3943, 59, 5, 0, 'High CTC Expectation holding offer with 58K\n', 7, '0000-00-00 00:00:00', 1),
(3838, 3946, 8, 3, 0, 'Selected CTC - 1,64,208 With Gross - 13684 TH - 13000', 7, '0000-00-00 00:00:00', 1),
(3839, 3945, 8, 5, 0, 'will not suite for our process, exp is 15k will not sustain and got offer in imarqu for 12k', 7, '0000-00-00 00:00:00', 1),
(3840, 3946, 20, 4, 0, 'seems suitable for RE, is confident and bold, kindly shortlist for Suthagarxquots team', 8, '2021-03-20 05:12:14', 1),
(3841, 3901, 8, 5, 0, 'will not suite for our process', 8, '2021-03-20 05:17:24', 1),
(3842, 3836, 8, 5, 0, 'not turned up', 8, '2021-03-20 05:18:01', 1),
(3843, 3808, 8, 5, 0, 'not turned up', 8, '2021-03-20 05:18:22', 1),
(3844, 3779, 8, 5, 0, 'Not turned up', 8, '2021-03-20 05:19:22', 1),
(3845, 3774, 8, 5, 0, 'Not Turned Up', 8, '2021-03-20 05:19:35', 1),
(3846, 3942, 8, 4, 3, 'check for RM, holds 3 offer 2.8, 2.9, and 3L. exp is 3l. looking for better company and learning.', 7, '0000-00-00 00:00:00', 1),
(3847, 3942, 31, 4, 4, 'recommended for next round', 8, '2021-03-20 05:26:16', 1),
(3848, 3946, 53, 7, 0, 'selected, suthagar team, 13650 ctc, doj 22 mar 21.', 20, '2021-03-20 05:26:53', 1),
(3849, 3946, 59, 7, 0, 'Selected CTC - 1,64,208 with Gross - 13684 TH - 13000', 53, '2021-03-20 05:41:58', 1),
(3850, 3914, 8, 3, 0, 'Selected With CTC - 198000 Gross - 16500 TH -  15675', 59, '2021-03-20 05:52:33', 1),
(3851, 3946, 8, 3, 0, 'Selected CTC - 1,64,208 With Gross - 13684 TH - 13000', 59, '2021-03-20 06:26:16', 1),
(3852, 3921, 8, 3, 0, 'Selected For Guru Team With CTC - 202104 Gross - 16842 TH - 16000', 59, '2021-03-20 06:27:35', 1),
(3853, 3732, 8, 3, 0, '350000 CTC,29167-gC, 25359-TH for Rajkumar team.', 59, '2021-03-20 06:58:57', 1),
(3854, 3732, 59, 7, 0, 'Discussed On The CTC,Candidate Will Share The Offer Letter he holds.Once Received Will Review And Confirm The CTC', 59, '2021-03-20 06:58:57', 1),
(3855, 3888, 59, 5, 0, 'Sustainability issue,high CTC expectation', 7, '0000-00-00 00:00:00', 1),
(3856, 3948, 59, 5, 0, 'Scheduled client interview and got rejected', 7, '0000-00-00 00:00:00', 1),
(3857, 3777, 59, 5, 0, 'High CTC expectation,not open for agreement\n', 50, '0000-00-00 00:00:00', 1),
(3858, 3955, 41, 2, 0, 'Check for channel', 50, '0000-00-00 00:00:00', 1),
(3859, 3941, 41, 5, 0, 'will not suite for rm', 50, '0000-00-00 00:00:00', 1),
(3860, 3956, 41, 4, 0, 'Check for RE', 50, '0000-00-00 00:00:00', 1),
(3861, 3852, 59, 2, 0, 'Scheduled client round of discussionxquot\n', 50, '0000-00-00 00:00:00', 1),
(3862, 3961, 41, 4, 0, 'check Attire and Language ', 50, '0000-00-00 00:00:00', 1),
(3863, 3958, 41, 5, 0, 'Will not suite for CRM', 50, '0000-00-00 00:00:00', 1),
(3864, 3963, 8, 5, 0, 'will not suite for our process, exp is 18k. no parents and will not handle pressure.', 50, '0000-00-00 00:00:00', 1),
(3865, 3957, 8, 5, 2, 'will not suite for sales and our process, body language is not good.', 50, '0000-00-00 00:00:00', 1),
(3866, 3961, 8, 3, 0, 'Selected With CTC 1,80,000 Gross- 15000,TH - 14250', 41, '2021-03-22 01:12:34', 1),
(3867, 3956, 34, 7, 4, 'selected', 41, '2021-03-22 01:14:30', 1),
(3868, 3955, 31, 4, 0, 'Referred to next round for agency channel', 41, '2021-03-22 01:29:07', 1),
(3869, 3955, 41, 4, 0, 'Check for patner channel.', 41, '2021-03-22 01:29:07', 1),
(3870, 3931, 59, 5, 0, 'Sustainability issue,will not fit for Client position', 50, '0000-00-00 00:00:00', 1),
(3871, 3961, 20, 4, 0, 'kindly ask for bond and shortlist for my team with 15k CTC.', 8, '2021-03-22 03:50:00', 1),
(3872, 3965, 41, 5, 0, 'Searching job for time being', 50, '0000-00-00 00:00:00', 1),
(3873, 3966, 41, 2, 0, 'Check with Bond', 50, '0000-00-00 00:00:00', 1),
(3874, 3967, 41, 2, 0, 'Check for Bond', 50, '0000-00-00 00:00:00', 1),
(3875, 3936, 53, 8, 0, 'let without attending the interview', 53, '2021-03-22 05:07:59', 1),
(3876, 3961, 53, 7, 0, 'selected for srikanth team, qualification 10th but he s very confident, 15k ctc, immediate joining, 1 yr bond he ll provide 10th marksheet.', 20, '2021-03-22 06:15:16', 1),
(3877, 3928, 59, 5, 0, 'Client rejected in the interview', 7, '0000-00-00 00:00:00', 1),
(3878, 3971, 8, 3, 0, 'Selected For Ramesh Team With CTC- 176844 Gross - 14737 TH - 14000', 7, '0000-00-00 00:00:00', 1),
(3879, 3972, 8, 5, 3, 'fresher, will not suite for our process, will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(3880, 3971, 53, 4, 0, 'Ok for RE, he can arrange laptop, havng 1yr exp, 14k TH discussed, check sustainability, gvn arumbakkam address.', 8, '2021-03-23 11:06:07', 1),
(3881, 3980, 8, 5, 0, 'wearing  braces. pronunciation is not clear, looking for mF. no sales skill.', 7, '0000-00-00 00:00:00', 1),
(3882, 3974, 59, 5, 0, 'Content is not up to the mark and not Much good in analytical', 7, '0000-00-00 00:00:00', 1),
(3883, 3971, 17, 4, 3, 'Need to check sustainability', 53, '2021-03-23 12:01:52', 1),
(3884, 3961, 59, 7, 0, 'Selected with CTC 1,80,000 Gross- 15000,TH - 14250', 53, '2021-03-23 12:04:06', 1),
(3885, 3979, 8, 5, 3, 'will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3886, 3977, 8, 4, 3, 'check for renewal or crm. has 1.6yr exp in collection.', 7, '0000-00-00 00:00:00', 1),
(3887, 3976, 8, 4, 0, 'Fresher For Us, Has 8m Exp In Sbi Collection. 10k Exp.', 7, '0000-00-00 00:00:00', 1),
(3888, 3975, 8, 4, 0, 'fresher for us, has 8m exp in sbi collection. 10k exp.', 7, '0000-00-00 00:00:00', 1),
(3889, 3982, 8, 5, 0, 'will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3890, 3981, 8, 3, 0, '14737 mctc 14k th for guru team', 7, '0000-00-00 00:00:00', 1),
(3891, 3977, 53, 2, 0, 'Donxquott have sales experience, he s looking for a collection process bt ok with sales. He needs one day time for  agreement, needs to check sustainability, ', 8, '2021-03-23 01:33:42', 1),
(3892, 3983, 8, 3, 0, '16k th, 16842 ctc for ramesh team', 7, '0000-00-00 00:00:00', 1),
(3893, 3973, 59, 5, 0, 'Fresher and doing freelance not open for Service Agreement', 7, '0000-00-00 00:00:00', 1),
(3894, 3949, 59, 5, 0, 'Not much active will not fit and sustain for our IT openingsxquot\n', 7, '0000-00-00 00:00:00', 1),
(3895, 3985, 8, 2, 0, 'given time to prepare', 7, '0000-00-00 00:00:00', 1),
(3896, 3906, 59, 5, 0, 'Exp in Semi voice,Not open for Sales will not fit for IT openings\n', 7, '0000-00-00 00:00:00', 1),
(3897, 3978, 8, 4, 3, 'check for RE, has retail sales exp. exp sal is 18k+', 7, '0000-00-00 00:00:00', 1),
(3898, 3978, 20, 5, 0, 'Profile Experience doesnxquott add up.', 8, '2021-03-23 03:49:50', 1),
(3899, 3983, 53, 4, 0, 'Ok for RE, Arumbakkam, 16k TH', 8, '2021-03-23 03:51:33', 1),
(3900, 3981, 20, 4, 0, 'has sales experience on field, suitable for RE. Kindly finalize CTC and shortlist for Guru Team.', 8, '2021-03-23 03:54:23', 1),
(3901, 3989, 8, 5, 0, 'gave a negative feedback insurance. will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3902, 3992, 8, 5, 0, 'low voice, looking for non voice, exp about the phone was good but not satisfied with his profile, ', 7, '0000-00-00 00:00:00', 1),
(3903, 3975, 13, 5, 1, 'he is not fit for telesales voice process ', 8, '2021-03-23 05:27:12', 1),
(3904, 3976, 13, 5, 2, 'she is not fit for tele sales', 8, '2021-03-23 05:27:59', 1),
(3905, 3927, 8, 5, 0, 'no response', 8, '2021-03-23 05:46:52', 1),
(3906, 3893, 8, 5, 0, 'not interested in FE. salary will not match for cRM', 8, '2021-03-23 05:47:21', 1),
(3907, 3790, 59, 5, 0, 'Rejected in the client round', 59, '2021-03-23 07:24:33', 1),
(3908, 3791, 59, 5, 0, 'Rejected In The Client Round', 59, '2021-03-23 07:24:51', 1),
(3909, 3796, 59, 5, 0, 'Not much suits will not sustain\n', 59, '2021-03-23 07:25:36', 1),
(3910, 3847, 59, 5, 0, 'Rejected In The Client Round', 59, '2021-03-23 07:26:11', 1),
(3911, 3851, 59, 5, 0, 'No Show for Client interview', 59, '2021-03-23 07:26:32', 1),
(3912, 3852, 59, 5, 0, 'Rejected In The Client Round', 59, '2021-03-23 07:26:45', 1),
(3913, 3879, 59, 5, 0, 'Rejected In The Client Round', 59, '2021-03-23 07:27:02', 1),
(3914, 3753, 59, 5, 0, 'Not open for Agreement', 59, '2021-03-23 07:28:45', 1),
(3915, 3838, 59, 5, 0, 'Rejected In The Client Round', 59, '2021-03-23 07:30:48', 1),
(3916, 3983, 17, 4, 3, 'Need to finalize salary and sustainability ', 53, '2021-03-24 10:39:29', 1),
(3917, 4006, 59, 5, 0, 'Good in Communication and from the Training field, Reyaz from IT took 2nd Round and rejected in the 3rd round with Syed Reyaz Ahmed - AM ESales', 7, '0000-00-00 00:00:00', 1),
(3918, 3953, 8, 5, 0, 'will not suite for our process, no sales exp. will not sustain.', 7, '0000-00-00 00:00:00', 1),
(3919, 3993, 8, 5, 3, 'will not join without his friend. bcoz he Referred him. but he is okay for RE.', 7, '0000-00-00 00:00:00', 1),
(3920, 3986, 8, 5, 0, 'no fluency while speaking, will not suite for calling. no clarity too.', 7, '0000-00-00 00:00:00', 1),
(3921, 4002, 8, 5, 0, 'comm. is poor not even an avg. no knowledge as MIS in previous org.', 7, '0000-00-00 00:00:00', 1),
(3922, 3991, 59, 5, 0, 'No Communication and not suitable for the role', 7, '0000-00-00 00:00:00', 1),
(3923, 3944, 59, 5, 0, 'Will Not fit for our role', 50, '0000-00-00 00:00:00', 1),
(3924, 4011, 59, 5, 0, 'Good in Communication, Same company with Dilshad begum.Sustainability Doubt', 7, '0000-00-00 00:00:00', 1),
(3925, 4004, 8, 5, 0, 'Communication is below avg. exp sal is 30K+, not that much knowledge as MIS exc. but he has sales exp and not interested in sales.', 7, '0000-00-00 00:00:00', 1),
(3926, 4003, 8, 4, 2, 'check for RM profile.he Pronounced he will not travel more than 30 km per day,', 7, '0000-00-00 00:00:00', 1),
(3927, 3994, 8, 5, 0, 'has 90days notice. will not suite for RM/RE. has exp but no knowledge. no convincing skill too.', 7, '0000-00-00 00:00:00', 1),
(3928, 4003, 40, 5, 2, 'Not fit for Job', 8, '2021-03-24 01:31:40', 1),
(3929, 4015, 8, 5, 0, 'no clarity in voice. will not suite for sales process, looking for non sales. will not sustain.', 7, '0000-00-00 00:00:00', 1),
(3930, 4016, 8, 5, 0, 'language is not good, no clarity in speech, mother Tongue is telugu. no understanding. will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3931, 4017, 8, 5, 0, 'fresher, low voice, has exp in mobile sales will not suite for our process', 7, '0000-00-00 00:00:00', 1),
(3932, 4021, 8, 5, 0, 'Pronunciation is not clear, mother tounge is sowrashtra. Attitude is not good. tapping the table while taking will not suite for sales profile. has 5yr exp in showroom sales.', 7, '0000-00-00 00:00:00', 1),
(3933, 4020, 8, 5, 0, 'not interested in field sales, will not suite for our process, expt sal is18K which will not suite for CRM', 7, '0000-00-00 00:00:00', 1),
(3934, 3961, 8, 3, 0, 'Selected With CTC 1,80,000 Gross- 15000,TH - 14250', 59, '2021-03-24 08:01:45', 1),
(3935, 3971, 59, 7, 0, 'Selected for Ramesh Team with CTC- 176844 Gross - 14737 TH - 14000', 17, '2021-03-24 08:25:04', 1),
(3936, 3971, 8, 3, 0, 'Selected For Ramesh Team With CTC- 176844 Gross - 14737 TH - 14000', 59, '2021-03-25 10:15:36', 1),
(3937, 3981, 53, 4, 0, 'Selected, 14k TH, Guru team. Pls cnfrm joining date', 20, '2021-03-25 10:19:27', 1),
(3938, 4019, 59, 5, 0, 'Not open for Agreement,Core Data Analyst Will not sustain for our role', 50, '0000-00-00 00:00:00', 1),
(3939, 4009, 59, 5, 0, 'Communication ok,Core data Analyst profile,will not sustain for our role', 50, '0000-00-00 00:00:00', 1),
(3940, 4035, 8, 4, 3, 'check for RE, fresher and for arumbakkam ', 7, '0000-00-00 00:00:00', 1),
(3941, 4031, 59, 5, 0, 'Not open for Agreement, Core DA will not sustain for a long', 7, '0000-00-00 00:00:00', 1),
(3942, 4034, 8, 5, 0, 'language is not good, has showroom exp in joy alukkas for 3yrs.', 7, '0000-00-00 00:00:00', 1),
(3943, 4033, 8, 3, 0, '17k th 17894 mtc 214728y ctc an for guru team', 7, '0000-00-00 00:00:00', 1),
(3944, 4039, 8, 5, 3, 'he has sales exp but not relevant and will not suite for our process, little bit slow.', 7, '0000-00-00 00:00:00', 1),
(3945, 4040, 8, 5, 0, 'will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(3946, 4041, 8, 5, 0, 'will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(3947, 4025, 59, 4, 0, 'Good in Communication, open for Agreement, Can Try for Coordinator Data Management position', 7, '0000-00-00 00:00:00', 1),
(3948, 4033, 20, 4, 0, 'seems not suitable for RE for the desired package, kindly check.', 8, '2021-03-25 01:38:17', 1),
(3949, 4035, 53, 1, 0, NULL, 8, '2021-03-25 01:41:45', 1),
(3950, 4026, 59, 5, 0, 'Will not suit for our role', 7, '0000-00-00 00:00:00', 1),
(3951, 4030, 59, 2, 0, 'Keen to learn Mern, should come back with the confirmation for the Agreement', 50, '0000-00-00 00:00:00', 1),
(3952, 3996, 59, 5, 0, 'No Local language, Much with Data Science and the expectation is high', 50, '0000-00-00 00:00:00', 1),
(3953, 4018, 59, 5, 0, 'Average Communication,Sustainability doubt', 50, '0000-00-00 00:00:00', 1),
(3954, 4025, 54, 2, 0, 'Okay, she will back on ist week of apirl', 59, '2021-03-25 04:51:59', 1),
(3955, 4036, 8, 3, 0, '13k ctc and for ramesh team', 7, '0000-00-00 00:00:00', 1),
(3956, 4036, 53, 4, 0, 'Selected for RE, Arumbakkam, pls cnfrm DOJ and sal', 8, '2021-03-25 05:01:53', 1),
(3957, 4028, 59, 5, 0, 'No Communication,Very Slow will not fit for our Role', 7, '0000-00-00 00:00:00', 1),
(3958, 4042, 41, 4, 0, '50-50 try', 7, '0000-00-00 00:00:00', 1),
(3959, 4043, 41, 5, 0, 'looking for non voice', 7, '0000-00-00 00:00:00', 1),
(3960, 4037, 41, 5, 0, 'Not at all speaking', 7, '0000-00-00 00:00:00', 1),
(3961, 3966, 41, 5, 0, 'No Response', 41, '2021-03-25 05:10:00', 1),
(3962, 3967, 41, 5, 0, 'No response', 41, '2021-03-25 05:10:55', 1),
(3963, 4042, 8, 5, 3, 'very slow and will not suite for our process and will not do calling.', 41, '2021-03-25 05:11:59', 1),
(3964, 3892, 59, 5, 0, 'Got rejected in the client Interview', 59, '2021-03-25 05:20:56', 1),
(3965, 3856, 59, 5, 0, 'Didnxquott Come Back After 2 Days with the confirmation for the service Agreement', 59, '2021-03-25 05:23:23', 1),
(3966, 4033, 53, 4, 0, 'selected. 17k TH. guru team', 20, '2021-03-25 06:45:31', 1),
(3967, 4013, 59, 5, 0, '50/50,Interviewed by Reyaz for the 2nd level and got rejected', 50, '0000-00-00 00:00:00', 1),
(3968, 4050, 8, 5, 0, 'very poor lang, will not suite for our process', 7, '0000-00-00 00:00:00', 1),
(3969, 4001, 59, 5, 0, 'Not open for Agreement,also not fit much for our DA Role', 7, '0000-00-00 00:00:00', 1),
(3970, 4051, 8, 5, 0, 'well prepared script for Interview alone, no practical knowledge, stammering while Speaking', 7, '0000-00-00 00:00:00', 1),
(3971, 3954, 8, 5, 0, 'well Prepared script about self intro, other than that she is not speaking.', 7, '0000-00-00 00:00:00', 1),
(3972, 4052, 8, 5, 0, 'prefer Backed process. will not suite for our process. will not sustain. worked in insurance but doesnt know any terms', 7, '0000-00-00 00:00:00', 1),
(3973, 4053, 8, 4, 3, 'fresher, has 3m exp in mobile sales, check his pronunciation and check for RE.', 7, '0000-00-00 00:00:00', 1),
(3974, 4054, 8, 5, 2, 'will not suite fro sales process, from thiruvallur. no sales skill.', 7, '0000-00-00 00:00:00', 1),
(3975, 3999, 59, 5, 0, 'not suits for our Data Analyst Role', 7, '0000-00-00 00:00:00', 1),
(3976, 4048, 8, 5, 0, 'has 6m exp but no knowledge and exp is 25k. will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3977, 4055, 8, 5, 0, 'left before 2nd round interview.', 7, '0000-00-00 00:00:00', 1),
(3978, 4057, 8, 9, 0, 'she came for CRM but interesrted in IT. Check with this profile', 7, '0000-00-00 00:00:00', 1),
(3979, 4053, 57, 5, 0, 'not interested for telecalling.. ', 8, '2021-03-26 01:22:29', 1),
(3980, 4063, 8, 5, 0, 'language is not good. will not suite for process.', 7, '0000-00-00 00:00:00', 1),
(3981, 4060, 8, 5, 0, 'too long from vgp, vettuvakani', 7, '0000-00-00 00:00:00', 1),
(3982, 4044, 59, 5, 0, 'No communication,will not fit much for our role', 7, '0000-00-00 00:00:00', 1),
(3983, 4059, 8, 5, 0, 'fresher, will not suite for this profile.', 7, '0000-00-00 00:00:00', 1),
(3984, 3956, 8, 5, 0, 'no rsponse', 34, '2021-03-26 02:50:50', 1),
(3985, 4064, 8, 3, 0, ' For Veben Team, With CTC - 3,21,696 Gross - 26808.', 7, '0000-00-00 00:00:00', 1),
(3986, 4064, 40, 4, 4, 'Fit for Job. Expected 24k/April 1st joining. Family background (Father Late) Taking care about family now. Seems professional.', 8, '2021-03-26 03:11:25', 1),
(3987, 3983, 8, 3, 0, '16k th, 16842 ctc for ramesh team', 17, '2021-03-26 03:20:03', 1),
(3988, 4064, 18, 7, 4, 'Selected for Veben Team. Joining date on 4th April. Expected salary is 25K but we can negotiate and give 23 take home Plus PF.\n', 40, '2021-03-26 04:02:20', 1),
(3989, 3981, 34, 7, 4, 'selected', 53, '2021-03-26 04:53:04', 1),
(3990, 4033, 34, 7, 4, 'selected', 53, '2021-03-26 04:54:30', 1),
(3991, 4056, 8, 5, 0, 'will not suite for calling. fresher.', 7, '0000-00-00 00:00:00', 1),
(3992, 4057, 27, 2, 0, 'Task has to be given.', 8, '2021-03-26 05:49:29', 1),
(3993, 4072, 8, 5, 0, 'will not suite for this profile, ', 50, '0000-00-00 00:00:00', 1),
(3994, 4071, 8, 5, 0, 'will not suite for calling and sales', 50, '0000-00-00 00:00:00', 1),
(3995, 4078, 8, 5, 0, 'no clarity in speech, will not suite for this profile.', 7, '0000-00-00 00:00:00', 1),
(3996, 4076, 13, 5, 2, 'not suitable for tele sales', 50, '0000-00-00 00:00:00', 1),
(3997, 4075, 13, 5, 2, 'Communication skill low', 50, '0000-00-00 00:00:00', 1),
(3998, 4073, 19, 7, 4, 'final round Banu Mam', 50, '0000-00-00 00:00:00', 1),
(3999, 3955, 29, 1, 0, NULL, 31, '2021-03-27 01:29:53', 1),
(4000, 4036, 17, 4, 4, 'Need to finalize salary and joining date ', 53, '2021-03-27 02:21:26', 1),
(4001, 4079, 8, 5, 3, 'has 2yr exp in collection exp sal is 17k ', 7, '0000-00-00 00:00:00', 1),
(4002, 4036, 8, 3, 0, '13k ctc and for ramesh team', 17, '2021-03-27 03:12:02', 1),
(4003, 4038, 69, 5, 0, 'Candidate not suitable for our preferred role.', 7, '0000-00-00 00:00:00', 1),
(4004, 3998, 69, 2, 0, 'Need to interview few  more candidates to find the best out of them.', 7, '0000-00-00 00:00:00', 1),
(4005, 3981, 8, 3, 0, '14737 mctc 14k th for guru team', 34, '2021-03-27 05:04:27', 1),
(4006, 4033, 8, 3, 0, '17k th 17894 mtc 214728y ctc an for guru team', 34, '2021-03-27 05:25:32', 1),
(4007, 3625, 69, 5, 0, 'Sustainability issue', 69, '2021-03-27 05:41:07', 1),
(4008, 4067, 59, 5, 0, 'Not suits for BDM, Sustainability doubt and into different field', 7, '0000-00-00 00:00:00', 1),
(4009, 4084, 59, 5, 0, 'Task Partially Completed. He Can Learn Quickly. We Can Consider As A Intern For 1st 3 Months. After That 2.3 Months Should Be Work Here. Not open with  AGreement and the Focus on the pay also', 7, '0000-00-00 00:00:00', 1),
(4010, 4086, 59, 2, 0, 'Should come again for 2nd level interview', 7, '0000-00-00 00:00:00', 1),
(4011, 4091, 8, 5, 2, 'will not suite for RM profile,', 7, '0000-00-00 00:00:00', 1),
(4012, 4081, 59, 4, 0, '3 yrs Exp check for UI UX ', 7, '0000-00-00 00:00:00', 1),
(4013, 4093, 8, 5, 0, 'will not suite for collection exe. previous package is 45k but not interested in sales.', 7, '0000-00-00 00:00:00', 1),
(4014, 4092, 8, 5, 0, 'will not suite for CRM, looking for acc job, will not sustain.expt sal is 15k.', 7, '0000-00-00 00:00:00', 1),
(4015, 4089, 59, 5, 0, 'Not open for the agreement,exp high pay', 7, '0000-00-00 00:00:00', 1),
(4016, 4095, 8, 5, 0, 'very slow and Planing to go canada asap, ', 7, '0000-00-00 00:00:00', 1),
(4017, 4096, 8, 4, 3, 'check for crm thiruvallur', 7, '0000-00-00 00:00:00', 1),
(4018, 4097, 8, 4, 3, 'check for cRM, fresher', 7, '0000-00-00 00:00:00', 1),
(4019, 4098, 8, 5, 0, 'planning to do MBA in part time.   she is not very sure about it and the profile.', 7, '0000-00-00 00:00:00', 1),
(4020, 1196, 41, 5, 0, 'sALARY DEMAND AND WILL NOT SUSTAIN', 7, '0000-00-00 00:00:00', 1),
(4021, 4087, 59, 5, 0, 'No Communication will not much fit for our Digital Marketing', 60, '0000-00-00 00:00:00', 1),
(4022, 4104, 41, 5, 0, 'WILL NOT SUITE FOR HR', 7, '0000-00-00 00:00:00', 1),
(4023, 4047, 59, 2, 0, 'Should check with parents on the service Agreement,Also the CTC expectation is high', 7, '0000-00-00 00:00:00', 1),
(4024, 4082, 59, 5, 0, 'Not open for the Agreement Fresher exp 12-15K', 7, '0000-00-00 00:00:00', 1),
(4025, 4099, 8, 4, 3, 'check for RE, fresher for us, expt is 16k.', 7, '0000-00-00 00:00:00', 1),
(4026, 4108, 8, 8, 0, 'left before interview', 7, '0000-00-00 00:00:00', 1),
(4027, 4107, 8, 2, 0, 'looking for front office will not suite for sales, expt is 12k. no 2w.', 7, '0000-00-00 00:00:00', 1),
(4028, 4106, 41, 4, 0, 'Check for Sales', 7, '0000-00-00 00:00:00', 1),
(4029, 4105, 8, 5, 0, 'too long from mathuranthagam', 7, '0000-00-00 00:00:00', 1),
(4030, 4094, 8, 5, 0, 'voice and modulation is not good, will not suite for BDM, no clarity in speech.', 7, '0000-00-00 00:00:00', 1),
(4031, 4073, 53, 5, 0, 'Not intrested', 19, '2021-03-29 03:43:23', 1),
(4032, 4106, 8, 5, 0, 'will not join.', 41, '2021-03-29 03:43:31', 1),
(4033, 4099, 57, 4, 0, 'candidate is ok .. kindly negotiate the salary ', 8, '2021-03-29 04:02:24', 1),
(4034, 4096, 53, 5, 0, 'sustainability issue.', 8, '2021-03-29 04:33:36', 1),
(4035, 4106, 53, 4, 0, 'he came for MIS but he s nt suir for mis, intrested in sales. pls check for RE', 8, '2021-03-29 04:37:59', 1),
(4036, 4097, 13, 5, 0, 'two person coming for a interview but one person only selected but the selected person also not coming for joining ', 8, '2021-03-29 04:40:39', 1),
(4037, 4099, 53, 5, 0, 'NI in bond', 57, '2021-03-29 06:13:21', 1),
(4038, 4081, 27, 5, 0, 'He is not good in basic things.', 59, '2021-03-29 06:23:10', 1),
(4039, 4084, 27, 7, 0, 'task partially completed. he can learn quickly. we can consider as a intern for 1st 3 months. after that 2.3 months should be work here. ', 59, '2021-03-29 06:24:09', 1),
(4040, 4118, 8, 4, 0, 'check for crm telephonic', 7, '0000-00-00 00:00:00', 1),
(4041, 4106, 17, 4, 4, 'After 7 days will confirm the employee ', 53, '2021-03-30 11:04:21', 1),
(4042, 4115, 59, 2, 0, 'Should check for Service Agreement\n', 50, '0000-00-00 00:00:00', 1),
(4043, 4124, 8, 5, 0, 'not speaking up. will not suite for crm. from mathuravoyal long distance too.', 7, '0000-00-00 00:00:00', 1),
(4044, 4125, 8, 5, 0, 'very childish and will not suite for our process, ', 7, '0000-00-00 00:00:00', 1),
(4045, 4128, 59, 5, 0, 'Not suits for our Digital Marketing, No Communication not open for the Service Agreement\n', 7, '0000-00-00 00:00:00', 1),
(4046, 4129, 8, 2, 0, 'has to check', 7, '0000-00-00 00:00:00', 1),
(4047, 4132, 8, 5, 0, 'looking for acc xxamp fin. non voice', 7, '0000-00-00 00:00:00', 1),
(4048, 4136, 8, 5, 3, 'will not suite for crm/re. not speaking up and not convincing.', 7, '0000-00-00 00:00:00', 1),
(4049, 4133, 8, 8, 0, 'left before interview', 7, '0000-00-00 00:00:00', 1),
(4050, 4113, 8, 2, 0, 'hold for next round', 7, '0000-00-00 00:00:00', 1),
(4051, 4064, 59, 7, 0, 'Selected for Veben Team, with CTC - 3,21,696 Gross - 26808', 18, '2021-03-30 01:20:51', 1),
(4052, 4119, 59, 2, 0, 'Will come back after checking for the Service Agreement', 50, '0000-00-00 00:00:00', 1),
(4053, 4122, 8, 3, 0, ' For Collection - 151584 With Gross - 12632,TH - 12000', 7, '0000-00-00 00:00:00', 1),
(4054, 4131, 8, 5, 0, 'looking for acc @ fin,. non voice', 7, '0000-00-00 00:00:00', 1),
(4055, 4134, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4056, 4126, 8, 2, 0, 'hold, for HR/MF. exp is 4.5l for MF and 2.5l for HR', 7, '0000-00-00 00:00:00', 1),
(4057, 4123, 8, 2, 0, 'has to check', 7, '0000-00-00 00:00:00', 1),
(4058, 4062, 8, 5, 0, 'will not sustain, switched company purely for salary and completely into banking no insurance exp. ', 7, '0000-00-00 00:00:00', 1),
(4059, 4122, 53, 7, 0, 'Selected for collection, sal 12k TH.', 8, '2021-03-30 03:34:29', 1),
(4060, 3725, 8, 5, 0, 'no response', 8, '2021-03-30 03:46:16', 1),
(4061, 4130, 8, 5, 0, 'Profile Will Not Match For Data Analyst. Will Not Suite For CRM/BDM. No Understanding And Patience. ', 7, '0000-00-00 00:00:00', 1),
(4062, 4118, 35, 5, 0, 'Telephonic Round Completed, not satisfied, Poor Communication and Industry Knowledge,  ', 8, '2021-03-30 06:10:48', 1),
(4063, 2996, 8, 5, 0, 'no response', 29, '2021-03-30 06:53:25', 1),
(4064, 2996, 29, 4, 0, 'Not Met', 29, '2021-03-30 06:53:25', 1),
(4065, 3885, 59, 7, 0, 'Selected for BDM role,CTC - 5,49,600 Gross - 45,800 TH - 41992', 29, '2021-03-30 06:54:19', 1),
(4066, 3689, 8, 5, 0, 'profile was selected but he is not Interested. due to package', 29, '2021-03-30 06:56:01', 1),
(4067, 3692, 8, 2, 0, 'for agency BDM', 29, '2021-03-30 06:56:17', 1),
(4068, 3723, 8, 5, 0, 'will not suite for our prosess. gaurav rejected him', 29, '2021-03-30 06:57:16', 1),
(4069, 3912, 8, 3, 0, 'For Gaurav team. With CTC - 1,50,000 Gross - 12500 TH - 11875', 29, '2021-03-30 06:57:41', 1),
(4070, 4150, 8, 4, 0, 'No eng. communication. has 2yr exp in amc and MF. have telephonic interview', 50, '0000-00-00 00:00:00', 1),
(4071, 4150, 35, 5, 0, 'Telephonic Round Completed, Not Satisfied, Poor Communication And Industry Knowledge, ', 8, '2021-03-31 10:20:28', 1),
(4072, 4142, 59, 5, 0, 'Not open for Agreement and the expected pay is very high', 7, '0000-00-00 00:00:00', 1),
(4073, 4088, 59, 5, 0, 'Scheduled for 2nd round of Interview, but left without attending the interview ', 7, '0000-00-00 00:00:00', 1),
(4074, 4110, 59, 4, 0, 'Good in Communication,check for Digital Marketing', 7, '0000-00-00 00:00:00', 1),
(4075, 4152, 8, 4, 3, 'fresher, check for crm, exp 10k', 7, '0000-00-00 00:00:00', 1),
(4076, 4106, 59, 7, 0, 'CTC - 168000,Gross- 14000', 17, '2021-03-31 11:06:39', 1),
(4077, 4146, 59, 4, 0, 'Fresher Profile, check for PHP only basic knowledge', 50, '0000-00-00 00:00:00', 1),
(4078, 4143, 59, 4, 0, 'Fresher basic knowledge check for PHP open for Agreeement', 50, '0000-00-00 00:00:00', 1),
(4079, 4153, 8, 5, 3, 'will not suite for our process sales. Observation is poor.', 50, '0000-00-00 00:00:00', 1),
(4080, 4147, 59, 4, 0, 'Fresher, Keen to learn in the areas of Digital Marketing. Open for Agreement', 50, '0000-00-00 00:00:00', 1),
(4081, 4158, 8, 3, 0, 'For Syed Team CTC - 1,51,584 Gross - 12632 TH- 12000 ', 50, '0000-00-00 00:00:00', 1),
(4082, 4161, 8, 5, 0, 'poor comm. body language and manner is not good, slow learner. expt is 15k+', 50, '0000-00-00 00:00:00', 1),
(4083, 4157, 8, 5, 0, 'looking for PHP but no knowledge in PHP, with basics. told him to learn and then attend interview later.', 50, '0000-00-00 00:00:00', 1),
(4084, 4163, 8, 5, 3, 'will not suite for calling, not interested in sales, no clarity in speech.', 50, '0000-00-00 00:00:00', 1),
(4085, 4159, 8, 5, 0, 'will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(4086, 4164, 8, 5, 0, 'looking for acc xxamp fin. native is thanjavur', 50, '0000-00-00 00:00:00', 1),
(4087, 4156, 8, 4, 3, 'has 2yr calling exp, fresher for us, check for RM', 50, '0000-00-00 00:00:00', 1),
(4088, 4138, 59, 3, 0, 'Selected as an intern for 3 months, after intern will continue with employment and the service agreement for 3.6 yrs. Salary will be confirmed after 3 months of internship', 50, '0000-00-00 00:00:00', 1),
(4089, 4101, 59, 5, 0, 'Not open for the agreement,have a plan to go oversees for higher education', 50, '0000-00-00 00:00:00', 1),
(4090, 4158, 57, 4, 0, 'candidate is ok .. kindly negotiate the salary', 8, '2021-03-31 01:30:22', 1),
(4091, 4152, 13, 5, 2, 'she is not fit for telesales', 8, '2021-03-31 01:31:41', 1),
(4092, 4156, 29, 1, 0, NULL, 8, '2021-03-31 01:35:07', 1),
(4093, 4158, 53, 7, 0, 'selected for ayed team, 13k ctc. pls cnfm doj', 57, '2021-03-31 03:02:06', 1),
(4094, 4167, 8, 5, 2, 'will not suite for sales, no Convincing and confidence. exp is 20k+', 50, '0000-00-00 00:00:00', 1),
(4095, 4165, 8, 5, 2, 'no knowledge in sales, will not suite for our process, 2yrs in equitas finance. ', 50, '0000-00-00 00:00:00', 1),
(4096, 4084, 59, 5, 0, 'Task Partially Completed. He Can Learn Quickly. We Can Consider As A Intern For 1st 3 Months. After That 2.3 Months Should Be Work Here. Not open with  AGreement and the Focus on the pay also', 27, '2021-03-31 07:20:38', 1),
(4097, 3730, 27, 5, 0, 'Task not Completed.', 27, '2021-03-31 07:22:18', 1),
(4098, 4138, 27, 7, 0, 'Shortlisted. 1st 3 months will be consider as an intern.', 59, '2021-04-01 09:53:46', 1),
(4099, 4147, 69, 5, 0, 'The candidate wonxquott sustain  the long-term', 59, '2021-04-01 09:57:18', 1),
(4100, 4110, 69, 5, 0, 'The candidate wonxquott sustain for Long-term', 59, '2021-04-01 09:58:53', 1),
(4101, 4143, 27, 2, 0, 'Will learn and come within one week.', 59, '2021-04-01 10:02:21', 1),
(4102, 4146, 27, 2, 0, 'Will Learn And Come Within One Week.', 59, '2021-04-01 10:03:12', 1),
(4103, 4120, 59, 5, 0, 'Not much suitable for UI UX Position, No exp in Javascript, No knowledge related to UX Design - Photoshop/Illustrator', 50, '0000-00-00 00:00:00', 1),
(4104, 4138, 59, 3, 0, 'Selected as an intern for 3 months, after intern will continue with employment and the service agreement for 3.6 yrs. Salary will be confirmed after 3 months of internship', 27, '2021-04-01 10:19:12', 1),
(4105, 4154, 8, 4, 2, 'already attended interview 4 months back, no sustainability and not clear about his existing exp., expt is 25k, ', 50, '0000-00-00 00:00:00', 1),
(4106, 3885, 8, 3, 0, 'Selected For BDM Role,CTC - 5,49,600 Gross - 45,800 TH - 41992', 59, '2021-04-01 11:16:10', 1),
(4107, 4176, 8, 4, 3, 'fresher for us, check with his sales skills, expt. is 12-15k', 50, '0000-00-00 00:00:00', 1),
(4108, 4172, 59, 5, 0, 'Not open for Agreement,35 yrs Age 2 yrs Exp Expecting 25K TH\n', 50, '0000-00-00 00:00:00', 1),
(4109, 4177, 8, 5, 0, 'will not suite for calling. not interested in target base job.', 50, '0000-00-00 00:00:00', 1),
(4110, 4183, 8, 5, 0, 'Preparing for govt exams for past 2yrs, time being looking for job. doing her relevant courses in chennai.', 50, '0000-00-00 00:00:00', 1),
(4111, 4176, 19, 5, 1, 'not fit for sales', 8, '2021-04-01 02:55:35', 1),
(4112, 4193, 59, 5, 0, 'Sustainability Doubt, Mail Comm not upto the mark', 60, '0000-00-00 00:00:00', 1),
(4113, 4180, 59, 4, 0, 'Fresher Profile, check for PHP only basic knowledge', 60, '0000-00-00 00:00:00', 1),
(4114, 4175, 59, 5, 0, 'Sustainability Doubt', 60, '0000-00-00 00:00:00', 1),
(4115, 4179, 59, 5, 0, 'Not suits for our UI UX Position', 60, '0000-00-00 00:00:00', 1),
(4116, 4149, 59, 5, 0, 'Not suits for our Role, No Basic knowledge', 60, '0000-00-00 00:00:00', 1),
(4117, 4186, 59, 5, 0, 'Not suits for our role,Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(4118, 4145, 59, 5, 0, 'Rejected in the System Task by Sathish', 60, '0000-00-00 00:00:00', 1),
(4119, 4187, 59, 5, 0, 'Mail Communication not upto the mark', 50, '0000-00-00 00:00:00', 1),
(4120, 4154, 40, 5, 2, 'Candidate not fit for the Job', 8, '2021-04-05 10:32:39', 1),
(4121, 4154, 8, 4, 2, 'already attended interview 4 months back, no sustainability and not clear about his existing exp., expt is 25k, ', 8, '2021-04-05 10:32:39', 1),
(4122, 4191, 59, 2, 0, '50/50 on the agreement, High Pay Expectation', 7, '0000-00-00 00:00:00', 1),
(4123, 4202, 8, 2, 0, 'for next round', 7, '0000-00-00 00:00:00', 1),
(4124, 4203, 8, 4, 0, 'check for MF-coordinator. exp is 18k-20k. fresher for us,', 7, '0000-00-00 00:00:00', 1),
(4125, 4204, 8, 5, 0, 'will not suite for our profile. he was not into sales completely in training and fashion designing with qC ', 50, '0000-00-00 00:00:00', 1),
(4126, 4203, 35, 4, 0, 'Selected for Next Round,  negotiate  the Salary bcz she is a Fresher for Our Industry, Communication and Knowledge is Good, ', 8, '2021-04-05 12:32:00', 1),
(4127, 4208, 8, 5, 1, 'will not suite for our process. ', 7, '0000-00-00 00:00:00', 1),
(4128, 4207, 53, 2, 0, 'saravana asked one day time to decide, becz her fiancee working in star health as a TL', 7, '0000-00-00 00:00:00', 1),
(4129, 4206, 8, 2, 0, 'has to discuss about her salary with family', 7, '0000-00-00 00:00:00', 1),
(4130, 4181, 8, 4, 3, 'check for RM. has exp in insurance. exp is 20k.', 7, '0000-00-00 00:00:00', 1),
(4131, 4201, 8, 2, 0, 'LEFT BEFORE INTERVIEW', 7, '0000-00-00 00:00:00', 1),
(4132, 4210, 8, 5, 0, 'Looking For Non Voice Acc And Fin.', 7, '0000-00-00 00:00:00', 1),
(4133, 4214, 8, 5, 0, 'looking for non voice acc and Fin.', 7, '0000-00-00 00:00:00', 1),
(4134, 4218, 59, 4, 0, 'Check for Tiruvallur Location', 7, '0000-00-00 00:00:00', 1),
(4135, 4205, 59, 4, 0, 'Check for MF, have Exp in MF', 7, '0000-00-00 00:00:00', 1),
(4136, 4211, 59, 5, 0, 'Not interested for Sales', 7, '0000-00-00 00:00:00', 1),
(4137, 4215, 8, 5, 2, 'will not suite for our process, language is not convincing.', 7, '0000-00-00 00:00:00', 1),
(4138, 4216, 59, 5, 0, 'Expectation is High, Not ready to negotiate', 7, '0000-00-00 00:00:00', 1),
(4139, 4217, 59, 5, 0, 'Sustainability Doubt, High CTC Expectation', 7, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(4140, 4212, 8, 5, 2, 'language is not good, will not suite for our process. currently working in justdail for past 2m, ', 7, '0000-00-00 00:00:00', 1),
(4141, 4219, 8, 4, 3, 'fresher for calling, no degree and high job need. for thiruvallur.', 7, '0000-00-00 00:00:00', 1),
(4142, 4181, 31, 4, 3, 'recommended for next round', 8, '2021-04-05 01:42:15', 1),
(4143, 4219, 53, 4, 0, 'pls check sustainability, ok for CRM thiruvallur branch', 8, '2021-04-05 02:59:28', 1),
(4144, 4220, 8, 5, 0, 'dont even has resume with him, Just like that came for interview with his friend.', 7, '0000-00-00 00:00:00', 1),
(4145, 3912, 59, 7, 0, 'Selected with CTC - 1,50,000 Gross - 12500 TH - 11875', 8, '2021-04-05 05:14:36', 1),
(4146, 3912, 8, 3, 0, 'For Gaurav team. With CTC - 1,50,000 Gross - 12500 TH - 11875', 8, '2021-04-05 05:14:36', 1),
(4147, 4122, 59, 7, 0, 'Selected for Collection - 151584 with Gross - 12632,TH - 12000', 53, '2021-04-05 05:23:26', 1),
(4148, 4158, 59, 7, 0, 'Selected with CTC - 1,51,584 Gross - 12632 TH- 12000 ', 53, '2021-04-05 05:24:26', 1),
(4149, 4219, 14, 7, 4, 'salary 11k .need to check joining date .shortlisted for thiruvallur branch', 53, '2021-04-05 05:26:19', 1),
(4150, 4217, 11, 4, 0, 'candidate communication is ok ...have to check the sustainbility and  salary package ', 59, '2021-04-05 07:20:54', 1),
(4151, 4216, 14, 7, 4, 'salary 13k,she  is already working on a notice period in an existing company.need to check joining date', 59, '2021-04-05 07:21:54', 1),
(4152, 4218, 53, 5, 0, 'not open her mouth also', 59, '2021-04-05 07:23:40', 1),
(4153, 4205, 35, 5, 0, 'he Donxquott have a much Knowledge in MF and Communication also Poor, even he Donxquott know what is AMC and RTA. ', 59, '2021-04-05 07:25:56', 1),
(4154, 4180, 27, 2, 0, 'We can try as a php developer fresher. he has to improve his skill in php. If interested he can come once again for the interview. ', 59, '2021-04-05 07:29:48', 1),
(4155, 4203, 59, 5, 0, 'High CTC Expectation for MF position, Fresher Profile Min TH exp is 15-16 K', 35, '2021-04-05 08:00:43', 1),
(4156, 4226, 64, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4157, 4231, 53, 5, 0, 'Not suit for HR', 50, '0000-00-00 00:00:00', 1),
(4158, 4230, 53, 5, 0, 'not suit fr HR', 50, '0000-00-00 00:00:00', 1),
(4159, 4232, 8, 5, 0, 'tamil comm. is not good. no clarity in pronunciation. body lang. is also not good.', 50, '0000-00-00 00:00:00', 1),
(4160, 4233, 8, 5, 0, 'no response will not join', 50, '0000-00-00 00:00:00', 1),
(4161, 4238, 8, 4, 3, '7+yr exp in sales, fresher for us. expt is 26 - 28k ctc.', 50, '0000-00-00 00:00:00', 1),
(4162, 4234, 8, 5, 0, 'will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(4163, 4235, 8, 4, 0, 'has LI exp. kindly cross check for RM profile/BDM agency', 50, '0000-00-00 00:00:00', 1),
(4164, 4236, 8, 5, 0, 'not interested in sales. no knowledge in MF. he was into qC', 50, '0000-00-00 00:00:00', 1),
(4165, 4240, 8, 5, 0, 'planning to do her course by next week, interested in IT job, will not sustain for sales. ', 50, '0000-00-00 00:00:00', 1),
(4166, 2407, 53, 5, 0, 'ni in sales', 50, '0000-00-00 00:00:00', 1),
(4167, 4237, 8, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(4168, 4209, 59, 5, 0, 'Fresher for UI,Health Issue Sustainability Doubt', 50, '0000-00-00 00:00:00', 1),
(4169, 4241, 53, 5, 0, 'Attitide', 50, '0000-00-00 00:00:00', 1),
(4170, 4227, 59, 5, 0, 'High Salary Expectation,Not open for Long Career', 50, '0000-00-00 00:00:00', 1),
(4171, 4243, 41, 4, 0, 'Check for CRM', 50, '0000-00-00 00:00:00', 1),
(4172, 4200, 59, 5, 0, 'No Exp  Not ope n for Agreement', 50, '0000-00-00 00:00:00', 1),
(4173, 4223, 8, 5, 0, 'fresher, demanding atleast 14k th. ', 7, '0000-00-00 00:00:00', 1),
(4174, 4221, 8, 5, 0, 'will not suite for calling and he is not interested too, looking for collection job.', 7, '0000-00-00 00:00:00', 1),
(4175, 4247, 59, 5, 0, 'Will not sustain for a long,looking for Mechanical Core for time being looking for job', 50, '0000-00-00 00:00:00', 1),
(4176, 4213, 8, 5, 0, 'will not suite for calling and sales', 7, '0000-00-00 00:00:00', 1),
(4177, 4225, 8, 3, 0, '10k th Mtc10526, ctc 126312 for Muthu team', 7, '0000-00-00 00:00:00', 1),
(4178, 4224, 8, 5, 0, 'will not suite for sales process, will not sustain.', 7, '0000-00-00 00:00:00', 1),
(4179, 3970, 8, 5, 0, 'no sales exp. exp sal is 18k. he was comfortable in dhubai job.', 7, '0000-00-00 00:00:00', 1),
(4180, 4235, 44, 1, 0, NULL, 8, '2021-04-07 04:35:43', 1),
(4181, 4238, 31, 5, 0, 'Not suitable for RM Profile', 8, '2021-04-07 04:39:37', 1),
(4182, 4233, 13, 7, 4, 'salary 10k, (joining date March 15th )', 8, '2021-04-07 04:41:09', 1),
(4183, 4250, 59, 5, 0, 'Good in Communication,Sustainability Doubt,not open for 2 yrs service Agree', 7, '0000-00-00 00:00:00', 1),
(4184, 4245, 59, 5, 0, 'Commucation Average,Mail Communication is not Good, Agreement should check with Family ', 50, '0000-00-00 00:00:00', 1),
(4185, 4257, 8, 5, 0, 'not speaking up. will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(4186, 4262, 8, 5, 0, 'will not suite for Calling and handle pressure', 7, '0000-00-00 00:00:00', 1),
(4187, 4263, 8, 5, 0, 'too long. singaperumalkovil', 7, '0000-00-00 00:00:00', 1),
(4188, 4256, 59, 5, 0, 'No Communication, Will not suit for our Role', 50, '0000-00-00 00:00:00', 1),
(4189, 4270, 8, 2, 0, 'for front office. exp is 18k', 50, '0000-00-00 00:00:00', 1),
(4190, 4265, 8, 3, 0, 'For Priyanka team With CTC - 126312 Gross - 10526 xxamp TH - 10000', 50, '0000-00-00 00:00:00', 1),
(4191, 4268, 8, 5, 0, 'not speaking up keep on smiling and will not suite for calling. too long.', 7, '0000-00-00 00:00:00', 1),
(4192, 4259, 8, 5, 0, 'too long from singaperumal kovil', 7, '0000-00-00 00:00:00', 1),
(4193, 4278, 8, 4, 0, 'check for crm, fresher okay with 10k,  check with sustainability. bcoz of her DMLT', 7, '0000-00-00 00:00:00', 1),
(4194, 4276, 8, 5, 0, 'will not suite for calling. ', 7, '0000-00-00 00:00:00', 1),
(4195, 4261, 8, 5, 0, 'very low voice. will not suite for calling. she is 19.', 7, '0000-00-00 00:00:00', 1),
(4196, 4275, 8, 2, 0, 'for RE', 7, '0000-00-00 00:00:00', 1),
(4197, 4272, 8, 4, 0, 'fresher good in convincing, check with crm profile.', 7, '0000-00-00 00:00:00', 1),
(4198, 4274, 8, 5, 0, 'will not suite for RM, 2.5 yr in acc. will not sustain for sales.', 7, '0000-00-00 00:00:00', 1),
(4199, 4264, 8, 5, 0, 'voice is not clear and no clarity. she is 19. will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(4200, 4279, 8, 2, 0, 'for HR rec. exp is 13k, fresher, 1yr exp in cameo', 50, '0000-00-00 00:00:00', 1),
(4201, 4280, 8, 4, 0, 'check for re, ha s6m sales exp and PPI. ', 7, '0000-00-00 00:00:00', 1),
(4202, 4233, 8, 5, 0, 'no response will not join', 13, '2021-04-08 12:53:12', 1),
(4203, 4281, 8, 5, 0, 'will not suite for calling, will not handle pressure. salary exp is high, already he was getting 18k in jk copier.', 7, '0000-00-00 00:00:00', 1),
(4204, 4273, 41, 2, 0, 'telephonic by Kayal', 7, '0000-00-00 00:00:00', 1),
(4205, 4275, 57, 4, 0, 'candidate is ok .. kindly negotiate the salary and  confirm the joining date ... ', 8, '2021-04-08 01:05:38', 1),
(4206, 4282, 8, 2, 0, 'his voice is very feminie and has to check with it', 50, '0000-00-00 00:00:00', 1),
(4207, 4228, 59, 5, 0, 'Good in Communication, Interview by reyaz 2nd level , sustainability Doubt', 50, '0000-00-00 00:00:00', 1),
(4208, 4057, 27, 5, 0, 'No response from this candidate.', 27, '2021-04-08 02:40:37', 1),
(4209, 4143, 27, 5, 0, 'No Response From This Candidate.', 27, '2021-04-08 02:40:43', 1),
(4210, 4146, 27, 5, 0, 'No Response From This Candidate.', 27, '2021-04-08 02:40:52', 1),
(4211, 4277, 41, 4, 0, 'thiruvallur caller', 7, '0000-00-00 00:00:00', 1),
(4212, 4278, 14, 5, 1, 'not suitable for this profile', 8, '2021-04-08 02:59:00', 1),
(4213, 4252, 59, 5, 0, 'Communication OK, But for Agreement need to check with Family Max 1 yr Sustain', 50, '0000-00-00 00:00:00', 1),
(4214, 4244, 59, 5, 0, 'Communication Average,Not good in mail communications, Focus will be much into Banking Job will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(4215, 4286, 8, 2, 0, 'hold for BDM', 50, '0000-00-00 00:00:00', 1),
(4216, 4275, 53, 2, 0, 'need to check', 57, '2021-04-08 03:21:36', 1),
(4217, 4290, 8, 5, 0, 'native language and his pronunciation was not good. will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(4218, 4289, 8, 4, 0, '6m exp in credit cars. check for crm. fresher', 50, '0000-00-00 00:00:00', 1),
(4219, 4289, 13, 5, 1, 'not suitable for telesales', 8, '2021-04-08 05:28:22', 1),
(4220, 4271, 8, 5, 0, 'will not join, not interested', 7, '0000-00-00 00:00:00', 1),
(4221, 4265, 14, 7, 4, 'salary 10k.check the joining date', 8, '2021-04-08 05:41:33', 1),
(4222, 4271, 14, 7, 3, 'salary 10k, need to check distance once.confirm the joining date', 8, '2021-04-08 05:43:56', 1),
(4223, 4287, 8, 3, 0, 'CTC - 126312, Gross-10526,TH-10000 for priyanka team', 7, '0000-00-00 00:00:00', 1),
(4224, 4287, 14, 7, 4, 'salary 10k. need to check the joining date', 8, '2021-04-08 05:45:40', 1),
(4225, 4272, 13, 5, 2, 'not suitable for telesales', 8, '2021-04-08 05:47:11', 1),
(4226, 4280, 24, 4, 0, 'CHECK WITH VOICE', 8, '2021-04-08 05:50:41', 1),
(4227, 4285, 8, 5, 0, 'will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(4228, 4106, 8, 5, 0, 'will not join.', 59, '2021-04-08 06:22:36', 1),
(4229, 4216, 59, 5, 0, 'Expectation is High, Not ready to negotiate', 14, '2021-04-08 06:24:28', 1),
(4230, 4219, 59, 5, 0, 'No response for a long, Dsicussed on the CTC earlier and her expectation is High', 14, '2021-04-08 06:25:57', 1),
(4231, 4287, 59, 7, 0, 'CTC - 126312, gross-10526,TH-10000', 14, '2021-04-08 06:40:54', 1),
(4232, 4271, 59, 7, 0, 'Selected - 126312 Gross - 10526 TH - 10000', 14, '2021-04-08 06:43:14', 1),
(4233, 3295, 8, 5, 0, 'no response', 8, '2021-04-09 10:05:25', 1),
(4234, 3690, 14, 7, 4, 'salary 10k . check joining date', 8, '2021-04-09 10:05:57', 1),
(4235, 3690, 8, 3, 0, 'For Priyanka team With CTC - 126312 Gross - 10526 TH - 10000', 8, '2021-04-09 10:05:57', 1),
(4236, 3789, 8, 5, 0, 'no response.', 8, '2021-04-09 10:06:14', 1),
(4237, 4280, 53, 5, 0, 'not suit for sales', 24, '2021-04-09 10:25:44', 1),
(4238, 4196, 8, 2, 0, 'for RE', 7, '0000-00-00 00:00:00', 1),
(4239, 4295, 8, 5, 0, 'done his nism coures apart from this he knows nothind, for the past 4 yrs he was preparing for bank exams.', 7, '0000-00-00 00:00:00', 1),
(4240, 4301, 8, 5, 0, 'will not handle pressure, looking for non Target job.', 50, '0000-00-00 00:00:00', 1),
(4241, 4304, 8, 2, 0, 'mis. check and revert', 50, '0000-00-00 00:00:00', 1),
(4242, 4303, 8, 4, 3, 'check for crm, fresher 10k expt', 50, '0000-00-00 00:00:00', 1),
(4243, 4302, 8, 5, 2, 'very hyper active and he was into cine field. will not sustain for long period. ', 50, '0000-00-00 00:00:00', 1),
(4244, 4217, 59, 5, 0, 'Sustainability Doubt, High CTC Expectation', 11, '2021-04-09 11:36:29', 1),
(4245, 4265, 59, 7, 0, 'Selected with CTC - 126312 Gross - 10526 xxamp TH - 10000', 14, '2021-04-09 12:04:56', 1),
(4246, 3690, 59, 7, 0, 'Selected with CTC - 126312 Gross - 10526 TH - 10000', 14, '2021-04-09 12:13:39', 1),
(4247, 4305, 8, 2, 0, 'for collection. okay with 12k. 4yr exp in housing finance.', 50, '0000-00-00 00:00:00', 1),
(4248, 4308, 8, 5, 0, '2yr gap, looking for job bcoz she is bored at home. newly married. exp is 18k', 7, '0000-00-00 00:00:00', 1),
(4249, 4298, 8, 5, 0, 'looking for non voice. will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(4250, 4225, 13, 7, 4, '10k TH,monday  joining', 8, '2021-04-09 02:39:46', 1),
(4251, 4311, 8, 3, 0, 'Selected as Sourcing TL - 214740\nGross- 17895 TH - 17000', 7, '0000-00-00 00:00:00', 1),
(4252, 4255, 59, 5, 0, '2 yrs of UI Exp,but  no know  in detail,High Pay Expectation', 50, '0000-00-00 00:00:00', 1),
(4253, 4300, 8, 5, 0, 'not interested will not join', 7, '0000-00-00 00:00:00', 1),
(4254, 4300, 13, 7, 4, 'salary 10k TH,april 15th  joining', 8, '2021-04-09 02:58:27', 1),
(4255, 4303, 14, 7, 4, 'salary 10k.confirm joining date', 8, '2021-04-09 02:59:58', 1),
(4256, 4312, 8, 4, 3, 'check for CRM, thiruvallur', 50, '0000-00-00 00:00:00', 1),
(4257, 4306, 8, 4, 3, 'check for re, expt is 15k th. ', 7, '0000-00-00 00:00:00', 1),
(4258, 4306, 57, 4, 0, 'candidate is ok ... kindly negotiate the salary ... and confirm the joining date', 8, '2021-04-09 03:04:57', 1),
(4259, 4196, 57, 4, 0, 'selected for the next round..but he is not attend the second round', 8, '2021-04-09 03:06:36', 1),
(4260, 4196, 53, 2, 0, 'need to check', 57, '2021-04-09 03:14:08', 1),
(4261, 4306, 53, 7, 0, '15k tH, selected for RE, syed team', 57, '2021-04-09 03:14:56', 1),
(4262, 4311, 53, 7, 0, 'sourcing TL, 17k TH, Elite.. Pls cnfrm the joining', 8, '2021-04-09 03:54:13', 1),
(4263, 4312, 14, 5, 2, 'not suitable for this profile', 8, '2021-04-09 03:56:17', 1),
(4264, 4064, 8, 3, 0, ' For Veben Team, With CTC - 3,21,696 Gross - 26808.', 59, '2021-04-09 04:46:46', 1),
(4265, 4311, 59, 7, 0, 'Selected for Sourcing TL - 214740\nGross- 17895 TH - 17000', 53, '2021-04-09 05:47:16', 1),
(4266, 4306, 59, 7, 0, 'Selected for Syed Team,CTC - 189468 Gross - 15789, TH - 15000', 53, '2021-04-09 05:47:51', 1),
(4267, 4207, 53, 5, 0, 'no response frm him', 53, '2021-04-09 05:53:48', 1),
(4268, 3977, 53, 5, 0, 'no response', 53, '2021-04-09 05:56:25', 1),
(4269, 4265, 8, 3, 0, 'For Priyanka team With CTC - 126312 Gross - 10526 xxamp TH - 10000', 59, '2021-04-09 06:57:04', 1),
(4270, 4158, 8, 3, 0, 'For Syed Team CTC - 1,51,584 Gross - 12632 TH- 12000 ', 59, '2021-04-09 07:30:03', 1),
(4271, 4243, 14, 5, 0, 'not suitable for this profile ', 41, '2021-04-10 10:17:29', 1),
(4272, 4277, 14, 7, 4, 'salary 10k, thiruvallur branch, check the joining date', 41, '2021-04-10 10:19:14', 1),
(4273, 4253, 59, 5, 0, 'Will not sustain for a long, No focus on the particular position', 7, '0000-00-00 00:00:00', 1),
(4274, 4321, 8, 4, 3, 'check for crm has 2yr exp in karvy calling, expt is 13k. okay with 11k', 50, '0000-00-00 00:00:00', 1),
(4275, 4320, 8, 5, 0, 'will not suite for sales profile.', 50, '0000-00-00 00:00:00', 1),
(4276, 4225, 8, 3, 0, '10k th Mtc10526, ctc 126312 for Muthu team', 13, '2021-04-10 10:53:40', 1),
(4277, 4300, 8, 5, 0, 'not interested will not join', 13, '2021-04-10 10:54:53', 1),
(4278, 4324, 8, 3, 0, 'for muthu teamCTC- 1,32,636 Gross - 11053 Th - 10500', 50, '0000-00-00 00:00:00', 1),
(4279, 4326, 8, 5, 0, 'will not suite for CRM,  no bile as RE. exp is14k', 50, '0000-00-00 00:00:00', 1),
(4280, 4322, 8, 5, 0, 'will not suite for this profile. knows only basics in stocks, doing his own trading and lost funds.', 50, '0000-00-00 00:00:00', 1),
(4281, 3942, 29, 1, 0, NULL, 31, '2021-04-10 11:15:32', 1),
(4282, 4181, 29, 1, 0, NULL, 31, '2021-04-10 11:17:53', 1),
(4283, 4325, 8, 5, 0, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(4284, 4321, 13, 5, 2, 'Confidence Level	very low \nnot suitable for telesales', 8, '2021-04-10 11:46:50', 1),
(4285, 4330, 8, 4, 3, 'check for re, fresher expt is 12k', 50, '0000-00-00 00:00:00', 1),
(4286, 4293, 8, 5, 0, 'not speaking up, will not suite for crm', 50, '0000-00-00 00:00:00', 1),
(4287, 4294, 8, 5, 0, 'not speaking up done her beautician course and looking Relevant profile, time being she is looking for job', 50, '0000-00-00 00:00:00', 1),
(4288, 4329, 8, 4, 3, 'check for crm thiruvallur, exp is 10k.', 50, '0000-00-00 00:00:00', 1),
(4289, 4331, 8, 5, 0, 'will not suite for any current , not speaking up and will not suite for calling and sales', 50, '0000-00-00 00:00:00', 1),
(4290, 4162, 8, 5, 0, 'will not suite for mis as well crm, actual salary is 10k got Reviced 3m before which is  12k, her expt is 18k. has 1.3yr in Personal loan.', 50, '0000-00-00 00:00:00', 1),
(4291, 4330, 57, 4, 0, 'candidate is ok ... kindly negatiate the salary and confirm the joining date ...', 8, '2021-04-10 01:20:39', 1),
(4292, 4329, 53, 5, 0, 'Looking for Nonvoice', 8, '2021-04-10 01:22:26', 1),
(4293, 4334, 8, 4, 3, 'check for RM, has exp in banking and finance. fresher for us.', 7, '0000-00-00 00:00:00', 1),
(4294, 4148, 59, 5, 0, 'Already attended for UI,System Task not completed,also not open for Agreement', 50, '0000-00-00 00:00:00', 1),
(4295, 4310, 59, 5, 0, 'Fresher Little bit knowledge in HTML CSS ,No Javascript knowledge not open for Agreement too', 50, '0000-00-00 00:00:00', 1),
(4296, 3912, 8, 3, 0, 'For Gaurav team. With CTC - 1,50,000 Gross - 12500 TH - 11875', 59, '2021-04-10 03:40:19', 1),
(4297, 4122, 8, 3, 0, ' For Collection - 151584 With Gross - 12632,TH - 12000', 59, '2021-04-10 03:48:45', 1),
(4298, 4287, 8, 3, 0, 'CTC - 126312, Gross-10526,TH-10000 for priyanka team', 59, '2021-04-10 03:50:32', 1),
(4299, 4030, 59, 5, 0, 'Not open for Agreement, also he gpt another Offer', 59, '2021-04-10 04:42:43', 1),
(4300, 4047, 59, 5, 0, 'High CTC Exp,Sustainability Doubt', 59, '2021-04-10 04:43:59', 1),
(4301, 3794, 59, 5, 0, 'Rejected in the Client Interview', 59, '2021-04-10 04:45:50', 1),
(4302, 3857, 59, 5, 0, 'Client Round Rejected', 59, '2021-04-10 04:54:10', 1),
(4303, 3343, 59, 5, 0, 'Got Another Offer', 59, '2021-04-10 04:54:31', 1),
(4304, 3926, 60, 1, 0, NULL, 59, '2021-04-10 04:55:21', 1),
(4305, 3926, 59, 7, 0, 'Selected for Client,Nalam HCIT', 59, '2021-04-10 04:55:21', 1),
(4306, 3933, 60, 1, 0, NULL, 59, '2021-04-10 04:55:48', 1),
(4307, 3933, 59, 7, 0, 'Selected for Client - Nalam HCIT', 59, '2021-04-10 04:55:48', 1),
(4308, 4115, 59, 5, 0, 'Not  open for SA,will not sustain for a long', 59, '2021-04-10 04:58:34', 1),
(4309, 4119, 59, 5, 0, 'Not open For The Service Agreement', 59, '2021-04-10 05:00:30', 1),
(4310, 3690, 8, 3, 0, 'For Priyanka team With CTC - 126312 Gross - 10526 TH - 10000', 59, '2021-04-10 05:17:49', 1),
(4311, 4271, 8, 5, 0, 'will not join, not interested', 59, '2021-04-10 05:29:29', 1),
(4312, 4311, 8, 3, 0, 'Selected as Sourcing TL - 214740\nGross- 17895 TH - 17000', 59, '2021-04-10 05:40:50', 1),
(4313, 4086, 59, 5, 0, 'He Committed to come for 2nd level interview ,but no show', 59, '2021-04-10 05:45:00', 1),
(4314, 4341, 8, 5, 0, 'will not suite for calling, very slow and gap while speaking', 7, '0000-00-00 00:00:00', 1),
(4315, 4327, 8, 5, 0, 'not int in field sales, looking for calling but expt is 15k. will not suite for this package', 7, '0000-00-00 00:00:00', 1),
(4316, 4330, 53, 7, 0, '13k ctc, syed team, pls cnfrm the joining.', 57, '2021-04-10 07:03:59', 1),
(4317, 4334, 44, 1, 0, NULL, 8, '2021-04-10 10:19:04', 1),
(4318, 4336, 41, 5, 0, 'will not suite for MF', 7, '0000-00-00 00:00:00', 1),
(4319, 4309, 59, 5, 0, 'Not suits for our role', 50, '0000-00-00 00:00:00', 1),
(4320, 4337, 41, 2, 0, 'only for ops - fresher to stcoks', 50, '0000-00-00 00:00:00', 1),
(4321, 4328, 41, 2, 0, 'can try for 1st start-vasu', 50, '0000-00-00 00:00:00', 1),
(4322, 4354, 53, 5, 0, 'very low voice and no confidence level, rejected.', 50, '0000-00-00 00:00:00', 1),
(4323, 4351, 53, 5, 0, 'not suit for telecalling, very low voice.', 50, '0000-00-00 00:00:00', 1),
(4324, 4349, 53, 4, 0, 'pls check for dealer', 50, '0000-00-00 00:00:00', 1),
(4325, 4352, 53, 7, 0, 'selected for RE, 13k TH, suthagar team, pls cnfrm the joining', 50, '0000-00-00 00:00:00', 1),
(4326, 4319, 59, 5, 0, 'No Knowledge in HTML CSS, High Pay Expectation1 yr Exp', 50, '0000-00-00 00:00:00', 1),
(4327, 4340, 59, 5, 0, 'Communication is average, only into report Analyst Not much suits for our role', 50, '0000-00-00 00:00:00', 1),
(4328, 4296, 59, 5, 0, 'Appeared for UI/UX, no relevant knowledge ,into App Development but not into Reactnative\n', 50, '0000-00-00 00:00:00', 1),
(4329, 4353, 59, 4, 0, 'Check for CRM,50/50', 50, '0000-00-00 00:00:00', 1),
(4330, 4357, 53, 4, 0, 'Ok for RE, salary 12k TH, srikanth team.', 50, '0000-00-00 00:00:00', 1),
(4331, 4358, 53, 5, 0, 'He could not speak tamil fluently, he knpw oly rajasthani language.', 50, '0000-00-00 00:00:00', 1),
(4332, 4350, 54, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4333, 4355, 8, 5, 0, 'no degree, poor communication and will not suite for this profile.', 50, '0000-00-00 00:00:00', 1),
(4334, 4359, 8, 5, 0, 'not turned after lunch.', 50, '0000-00-00 00:00:00', 1),
(4335, 4361, 8, 2, 0, 'for agent. agent in reliance GI.', 50, '0000-00-00 00:00:00', 1),
(4336, 4362, 8, 2, 0, 'hold to prepare. he was very nervous.', 50, '0000-00-00 00:00:00', 1),
(4337, 4345, 8, 5, 0, 'Not Turned After Lunch.', 50, '0000-00-00 00:00:00', 1),
(4338, 4343, 59, 5, 0, 'Appeared for Intern,Passout year to be 2022,will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(4339, 4363, 8, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4340, 4360, 8, 5, 0, 'will not suite for our process, ideal in home and looking for job.', 50, '0000-00-00 00:00:00', 1),
(4341, 4338, 59, 5, 0, 'Distance too long, Not much Relevant ', 50, '0000-00-00 00:00:00', 1),
(4342, 4352, 24, 4, 0, 'candidate selected for next round banu mam', 53, '2021-04-12 01:10:08', 1),
(4343, 4357, 20, 2, 0, 'shortlisted yet to finalize joining due to pf implementation', 53, '2021-04-12 01:21:28', 1),
(4344, 4349, 54, 1, 0, NULL, 53, '2021-04-12 01:21:47', 1),
(4345, 4365, 8, 5, 0, 'will not suite for our process, very slow and expt sal is 17k.', 50, '0000-00-00 00:00:00', 1),
(4346, 4367, 8, 4, 0, 'kindly check for MIS, avg communication and okay with 1yr bond, check with Analytical.', 50, '0000-00-00 00:00:00', 1),
(4347, 4367, 59, 5, 0, 'No communication, mail communication is not upto the mark', 8, '2021-04-12 04:08:33', 1),
(4348, 4372, 8, 5, 0, 'will not suite for our process.  ', 50, '0000-00-00 00:00:00', 1),
(4349, 4330, 59, 7, 0, 'Selected for Syed Team CTC - 156000 Gross - 13000 TH - 12350', 53, '2021-04-12 05:28:05', 1),
(4350, 4353, 8, 5, 0, 'not speaking up and very slow. will not suite for calling.', 59, '2021-04-12 07:19:11', 1),
(4351, 4375, 59, 5, 0, 'Communication is just  a Manageable ,Mail Communication is poor, Sustainability Doubt,Focus into SQL DBA', 7, '0000-00-00 00:00:00', 1),
(4352, 4324, 59, 4, 0, '2nd level interviewed by Muthu and processed for CTC discussion. Selected with CTC - 1,32,636 Gross - 11053 TH - 10500', 13, '2021-04-13 10:36:43', 1),
(4353, 4352, 53, 7, 0, 'selected for RE, 13k TH, suthagar team, pls cnfrm the joining', 24, '2021-04-13 10:39:26', 1),
(4354, 4384, 8, 4, 0, 'check for dealer profile. expt is 30k. his previous was 18k. has only basics in equity and trading.', 50, '0000-00-00 00:00:00', 1),
(4355, 4385, 54, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4356, 4386, 8, 5, 0, 'will not suite for crm, looking for air space design profile. expt is 20k+', 50, '0000-00-00 00:00:00', 1),
(4357, 4387, 8, 5, 0, 'will not suite for crm, not speaking up and will nit Suite for data analyst dont kniw basics in excel.', 50, '0000-00-00 00:00:00', 1),
(4358, 4368, 59, 5, 0, 'Communication is Good Agreement - 50/50 and the Exp CTC in 30K for 1.5 yrs Experience', 50, '0000-00-00 00:00:00', 1),
(4359, 4390, 8, 5, 0, 'has exp as mis exe. but communication is below avg.', 50, '0000-00-00 00:00:00', 1),
(4360, 4388, 53, 5, 0, 'Not suit for our process', 50, '0000-00-00 00:00:00', 1),
(4361, 4382, 8, 3, 0, 'For Priyanka Team With CTC - 132000,Gross  - 11000 TH - 10450', 50, '0000-00-00 00:00:00', 1),
(4362, 4389, 8, 5, 0, 'looking for health care data entry job. previously into cognizant, expt is 25k for crm. will not handle pressure.', 50, '0000-00-00 00:00:00', 1),
(4363, 4384, 54, 1, 0, NULL, 8, '2021-04-13 01:24:45', 1),
(4364, 4382, 14, 7, 4, 'salary told- 10k to 12k . kindly confirm this ,need to check joining date ', 8, '2021-04-13 01:28:04', 1),
(4365, 4395, 8, 5, 0, 'will not suite for our process. will not sustain.', 50, '0000-00-00 00:00:00', 1),
(4366, 4374, 59, 2, 0, 'Communication is Average, open for any Jobs should come after check with family on the agreement', 50, '0000-00-00 00:00:00', 1),
(4367, 4382, 59, 7, 0, 'Selected for Priyanka Team With CTC - 132000,Gross  - 11000 TH - 10450', 14, '2021-04-13 04:24:28', 1),
(4368, 4397, 8, 5, 0, 'will not suite fo rM profile, language is below avg. will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(4369, 4324, 8, 3, 0, 'for muthu teamCTC- 1,32,636 Gross - 11053 Th - 10500', 59, '2021-04-13 05:55:47', 1),
(4370, 4396, 54, 4, 0, 'Hold, but we will consider this profile for stocks back-end activities.', 7, '0000-00-00 00:00:00', 1),
(4371, 4306, 60, 1, 0, NULL, 59, '2021-04-13 06:04:52', 1),
(4372, 4382, 8, 3, 0, 'For Priyanka Team With CTC - 132000,Gross  - 11000 TH - 10450', 59, '2021-04-13 06:07:26', 1),
(4373, 4391, 59, 5, 0, 'QC Profile, Not open for Agreement and the Expected Salary is high', 7, '0000-00-00 00:00:00', 1),
(4374, 4405, 8, 5, 0, 'will not suite for MF, fresher no idea about MF, not even prepare a single line for interview.', 50, '0000-00-00 00:00:00', 1),
(4375, 4393, 59, 4, 0, 'Communication ok, no relevant Exp but can be trained', 7, '0000-00-00 00:00:00', 1),
(4376, 4407, 59, 5, 0, 'not good in communication, will not suit much for our role', 50, '0000-00-00 00:00:00', 1),
(4377, 4409, 8, 5, 0, 'will not Sustain, will join only if his friend join and will not suite fro calling.', 50, '0000-00-00 00:00:00', 1),
(4378, 4410, 8, 5, 0, 'not speaking up, will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(4379, 4394, 59, 5, 0, 'good Communication, Little Attitude and the salary Expectation is high', 50, '0000-00-00 00:00:00', 1),
(4380, 4411, 8, 5, 0, 'no Sustainability, 3m, 4m and 7m in each company. expt 18k th. communication wise okay.', 50, '0000-00-00 00:00:00', 1),
(4381, 4412, 8, 4, 3, 'check for rM, fresher for us, expt 22k+.', 50, '0000-00-00 00:00:00', 1),
(4382, 4413, 8, 4, 0, 'check for \nMIS but has 3yr exp in MF backend. MTC is 21.5 expt is 30k.', 50, '0000-00-00 00:00:00', 1),
(4383, 4401, 59, 5, 0, 'Location Constraint, Not open for the agreement', 50, '0000-00-00 00:00:00', 1),
(4384, 4412, 31, 4, 4, 'Forward to next round.  hope , candidate is okay', 8, '2021-04-15 12:52:39', 1),
(4385, 4402, 8, 4, 0, 'check for MF, fresher for MF, expt is 15k.', 50, '0000-00-00 00:00:00', 1),
(4386, 4413, 59, 5, 0, 'Will not sustain for a long and not able to handle the pressure.', 8, '2021-04-15 02:38:33', 1),
(4387, 4419, 8, 5, 0, 'will not suite for calling. very childish, will not sustain.', 50, '0000-00-00 00:00:00', 1),
(4388, 4420, 8, 5, 0, 'Will Not Suite For Calling. Very Childish, Will Not Sustain.', 50, '0000-00-00 00:00:00', 1),
(4389, 4418, 8, 4, 0, 'check for crm thiruvallur, exp is 15k th. cross check once', 50, '0000-00-00 00:00:00', 1),
(4390, 4402, 35, 4, 0, 'Reassigned to Arun,  negotiate the Salary.', 8, '2021-04-15 03:29:27', 1),
(4391, 4421, 8, 4, 0, 'no Relevant exp, he was completely into B2B. will not suite for BDM, check once for RM but expected CTC is 5L+', 7, '0000-00-00 00:00:00', 1),
(4392, 4418, 53, 7, 0, 'selected for thiruvallur branch, 15k TH, immediate joining', 8, '2021-04-15 04:06:46', 1),
(4393, 4421, 18, 8, 0, 'Kindly refix after lockdown', 8, '2021-04-15 04:09:46', 1),
(4394, 4399, 59, 5, 0, 'Not suitable for the Data Analyst role, No Communication', 7, '0000-00-00 00:00:00', 1),
(4395, 4398, 59, 5, 0, 'Communication Average,Exp high Pay,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(4396, 4393, 54, 3, 0, 'He is new to this domain but we will train him.', 59, '2021-04-15 05:22:27', 1),
(4397, 4425, 8, 4, 3, 'Check with this profile, has Experience in team handling, CTC is 4.7L and expecting as per company norms from his previous package. ', 7, '0000-00-00 00:00:00', 1),
(4398, 4425, 18, 8, 0, 'Kindly refix after Lockdown\n', 8, '2021-04-15 06:40:51', 1),
(4399, 4304, 8, 5, 0, 'comm is good, very basics in excel. ', 8, '2021-04-15 06:41:34', 1),
(4400, 3809, 8, 5, 0, 'will not suite for us', 8, '2021-04-15 06:42:22', 1),
(4401, 3985, 8, 5, 0, 'not turned up', 8, '2021-04-15 06:43:34', 1),
(4402, 4107, 8, 5, 0, 'will not suite for us. ', 8, '2021-04-15 06:44:41', 1),
(4403, 4113, 8, 5, 0, 'not turned up', 8, '2021-04-15 06:44:59', 1),
(4404, 4129, 8, 5, 0, 'no response', 8, '2021-04-15 06:45:24', 1),
(4405, 4206, 8, 5, 0, 'not interested', 8, '2021-04-15 06:45:42', 1),
(4406, 4396, 41, 2, 0, 'can try for 1st start', 54, '2021-04-16 10:01:46', 1),
(4407, 4414, 59, 5, 0, 'Not suits for our position, will not sustain, No Communication', 50, '0000-00-00 00:00:00', 1),
(4408, 4402, 59, 5, 0, 'New to the MF position and the Expected 15K TH and not open for negotiating with PF PT Deductions', 35, '2021-04-16 10:37:59', 1),
(4409, 4422, 59, 5, 0, 'No Communication not suitable', 50, '0000-00-00 00:00:00', 1),
(4410, 4430, 41, 2, 0, 'can try - Vasu', 50, '0000-00-00 00:00:00', 1),
(4411, 4429, 41, 5, 0, 'Will not suite for our process', 50, '0000-00-00 00:00:00', 1),
(4412, 4427, 8, 2, 0, 'for RE', 50, '0000-00-00 00:00:00', 1),
(4413, 4381, 59, 5, 0, 'No Communication, Not suits for our role', 50, '0000-00-00 00:00:00', 1),
(4414, 4434, 8, 2, 0, 'for RE- Arumbakkam', 50, '0000-00-00 00:00:00', 1),
(4415, 4428, 8, 2, 0, 'for RE', 50, '0000-00-00 00:00:00', 1),
(4416, 4424, 59, 5, 0, 'Not suitable, Will not sustain', 50, '0000-00-00 00:00:00', 1),
(4417, 4433, 8, 5, 0, 'will not suite for calling, not int in sales. int in non voice', 50, '0000-00-00 00:00:00', 1),
(4418, 4436, 41, 5, 0, 'will not suite for CRM', 50, '0000-00-00 00:00:00', 1),
(4419, 4416, 59, 5, 0, 'Not suits for our role, will not handle the pressure, Communication Average', 50, '0000-00-00 00:00:00', 1),
(4420, 4423, 59, 5, 0, 'Not suits,not open for Agreement', 50, '0000-00-00 00:00:00', 1),
(4421, 4437, 8, 5, 2, 'will not sustain, will not handle sales pressure. expt is 10k.', 7, '0000-00-00 00:00:00', 1),
(4422, 4432, 41, 5, 0, 'will not suite for ED Profile by Vasu', 50, '0000-00-00 00:00:00', 1),
(4423, 4431, 41, 5, 0, 'aged will not suite for our process-by gokul', 50, '0000-00-00 00:00:00', 1),
(4424, 4303, 59, 7, 0, 'Selected for Priyanka Team,CTc - 126312,Gross - 10526 TH - 10000', 14, '2021-04-16 05:46:17', 1),
(4425, 4277, 59, 5, 0, 'Tried reaching, no response for a long. In the initial discussion  she Requested time to check with parents on the location, but didnt turn back ', 14, '2021-04-16 05:49:13', 1),
(4426, 4335, 59, 5, 0, 'Attitude issue, sustainability doubt, High CTC Expectation', 60, '0000-00-00 00:00:00', 1),
(4427, 4445, 59, 5, 0, 'Will not fit for our role, Stammering Issue, no sustainability', 50, '0000-00-00 00:00:00', 1),
(4428, 4446, 41, 2, 0, 'Vasu interview', 50, '0000-00-00 00:00:00', 1),
(4429, 4448, 53, 7, 0, 'Selected for thiruvallur branch, 12k ctc, immediate joining.', 50, '0000-00-00 00:00:00', 1),
(4430, 4449, 41, 5, 0, 'No knowledge in MF at all', 50, '0000-00-00 00:00:00', 1),
(4431, 4450, 41, 2, 0, 'RE need to decide (He will inform to Jennifer)', 50, '0000-00-00 00:00:00', 1),
(4432, 4451, 41, 4, 0, 'Check for CRM - T.Nagar', 50, '0000-00-00 00:00:00', 1),
(4433, 4438, 59, 5, 0, 'Good in Mern,but the expectation is very High being a fresher, sustainability doubt not open for the agreement', 50, '0000-00-00 00:00:00', 1),
(4434, 4303, 60, 1, 0, NULL, 59, '2021-04-17 02:44:53', 1),
(4435, 4377, 41, 5, 0, 'Not exp in TC, will not suite for Any other profile', 50, '0000-00-00 00:00:00', 1),
(4436, 4454, 41, 2, 0, 'Vasu Interview', 50, '0000-00-00 00:00:00', 1),
(4437, 4453, 41, 4, 0, 'Check for CRM - T.Nagar', 50, '0000-00-00 00:00:00', 1),
(4438, 4451, 53, 5, 0, 'looking for non voice process', 41, '2021-04-17 03:10:30', 1),
(4439, 4448, 59, 7, 0, 'Selected for Tiruvallur Location,initial 10 Days of training in Tnagar with CTC - 144000,Gross - 12000 TH - 11400', 53, '2021-04-17 03:27:28', 1),
(4440, 4418, 59, 7, 0, 'Selected for Tiruvallur Location CTC - 189468\nGross - 15789\nTH - 15000', 53, '2021-04-17 03:28:38', 1),
(4441, 4352, 59, 5, 0, 'We hold the candidate 4 months back for suthagar team and now there is no response from the candidate. Tried reaching him couple of time.', 53, '2021-04-17 03:29:29', 1),
(4442, 4448, 60, 1, 0, NULL, 59, '2021-04-17 03:37:51', 1),
(4443, 4418, 60, 1, 0, NULL, 59, '2021-04-17 03:43:50', 1),
(4444, 4330, 60, 1, 0, NULL, 59, '2021-04-17 04:10:17', 1),
(4445, 4453, 59, 5, 0, 'Selected for Priyanka, but didnt turn up with her confirmation', 41, '2021-04-17 04:50:12', 1),
(4446, 4453, 14, 7, 4, 'salary 11k, need to confirm joining date', 59, '2021-04-17 05:09:19', 1),
(4447, 4439, 59, 5, 0, 'Fresher Good Commuication ,open for Agreement, but the expectation is high 25K Negotiable to 20K', 50, '0000-00-00 00:00:00', 1),
(4448, 4447, 59, 4, 0, 'check for PHP, only backend experience ,give a try for PHP', 50, '0000-00-00 00:00:00', 1),
(4449, 4463, 59, 5, 0, 'Sustainability Doubt, will  not fit for our role', 50, '0000-00-00 00:00:00', 1),
(4450, 4458, 59, 5, 0, 'Communication Average, Data excel knowledge Basic Will not fit for our role', 50, '0000-00-00 00:00:00', 1),
(4451, 4465, 59, 4, 0, 'Check for CRM - 50/50', 50, '0000-00-00 00:00:00', 1),
(4452, 4455, 59, 5, 0, 'Will not suit for DM, Sustainability doubt need to check with family', 50, '0000-00-00 00:00:00', 1),
(4453, 4466, 59, 4, 0, 'check for PHP, ok profile 50/50', 50, '0000-00-00 00:00:00', 1),
(4454, 4453, 59, 5, 0, 'Selected for Priyanka, but didnt turn up with her confirmation', 14, '2021-04-19 11:58:08', 1),
(4455, 4471, 59, 5, 0, 'Average Communication, only Data Entry, not open for Agreement, Exp 18K', 50, '0000-00-00 00:00:00', 1),
(4456, 4472, 59, 5, 0, 'Checked for RE,left without attending 2nd level', 50, '0000-00-00 00:00:00', 1),
(4457, 4467, 59, 7, 0, 'Selected for Tiruvallur Location, CTC - 138948 TH - 11k', 50, '0000-00-00 00:00:00', 1),
(4458, 4468, 59, 5, 0, 'Not suitable for Sales, Focus is only on the  Professor Jobs\n ', 50, '0000-00-00 00:00:00', 1),
(4459, 4470, 59, 5, 0, 'Interviewed in the month of April and on hold for Guru, finally dropped this Profile with concern to the pandemic and the lockdown', 50, '0000-00-00 00:00:00', 1),
(4460, 4474, 59, 5, 0, 'Left without attending the interview', 50, '0000-00-00 00:00:00', 1),
(4461, 4476, 59, 7, 0, 'Selected for Guru Team with CTC - 1,80,000 LPA inclusive of PF/PF deductions. joining Date: 06-May-2021', 50, '0000-00-00 00:00:00', 1),
(4462, 4478, 59, 5, 0, 'No knowledge Communication poor, sustainability doubt', 50, '0000-00-00 00:00:00', 1),
(4463, 4473, 59, 5, 0, 'Left without attending the interview', 50, '0000-00-00 00:00:00', 1),
(4464, 4479, 59, 5, 0, 'Left without attending the interview', 50, '0000-00-00 00:00:00', 1),
(4465, 4481, 59, 5, 0, 'Not open for field sales, only for telecall and the exp 14+ Gross,Will not sustain  ', 50, '0000-00-00 00:00:00', 1),
(4466, 4484, 53, 5, 0, 'Expected high salary', 50, '0000-00-00 00:00:00', 1),
(4467, 4475, 59, 5, 0, 'No knowledge in IT, looking for AR/AP caller positions', 50, '0000-00-00 00:00:00', 1),
(4468, 4447, 27, 5, 0, 'Task not Completed.', 59, '2021-04-19 03:58:57', 1),
(4469, 4467, 53, 7, 0, 'selected for tiruvallur, 12k TH, wednesday joining.', 59, '2021-04-19 04:02:55', 1),
(4470, 4466, 27, 5, 0, 'Task not Completed.', 59, '2021-04-19 05:03:11', 1),
(4471, 4465, 14, 5, 2, 'Not suitable for this profile', 59, '2021-04-19 05:08:38', 1),
(4472, 4470, 34, 7, 4, 'selected', 59, '2021-04-19 05:34:33', 1),
(4473, 4286, 29, 4, 0, 'on hold - for bDM profile Agency channal, ok for this profile', 8, '2021-04-19 05:34:47', 1),
(4474, 4286, 8, 2, 0, 'hold for BDM', 8, '2021-04-19 05:34:47', 1),
(4475, 4476, 34, 7, 4, 'selected', 59, '2021-04-19 05:36:08', 1),
(4476, 4490, 41, 2, 0, 'Zoom interview with Vasu', 50, '0000-00-00 00:00:00', 1),
(4477, 4492, 59, 4, 0, 'check for CRM 50/50', 50, '0000-00-00 00:00:00', 1),
(4478, 4493, 59, 4, 0, 'Check for CRM 50/50', 50, '0000-00-00 00:00:00', 1),
(4479, 4494, 59, 4, 0, 'Check for CRM 50/50', 50, '0000-00-00 00:00:00', 1),
(4480, 4496, 59, 5, 0, 'Focus on Govt Job only for Time being looking for a job', 50, '0000-00-00 00:00:00', 1),
(4481, 4501, 59, 5, 0, 'Looking for IT positions only, but not relevant for our IT positions', 50, '0000-00-00 00:00:00', 1),
(4482, 4117, 59, 5, 0, 'Not much knowledge in UI/UX ', 50, '0000-00-00 00:00:00', 1),
(4483, 4503, 59, 5, 0, 'Looking for Non Voice process only', 50, '0000-00-00 00:00:00', 1),
(4484, 4502, 59, 2, 0, 'Partially can try for RE', 50, '0000-00-00 00:00:00', 1),
(4485, 468, 59, 5, 0, 'Attitude, Just for time being looking for a job, Will not sustain ', 50, '0000-00-00 00:00:00', 1),
(4486, 4504, 41, 2, 0, 'Zoom Interview With Vasu', 50, '0000-00-00 00:00:00', 1),
(4487, 4511, 59, 5, 0, 'Looking for Non Voice process only', 7, '0000-00-00 00:00:00', 1),
(4488, 4495, 59, 5, 0, 'No Exp in Sales,Sustainability Doubt will not handle the pressure', 7, '0000-00-00 00:00:00', 1),
(4489, 4499, 59, 5, 0, 'No Sales Exp ,sustainability doubt', 7, '0000-00-00 00:00:00', 1),
(4490, 4480, 59, 5, 0, 'Not much comfortable with the agreement,sustainability Doubt fresher for Digital Marketing', 7, '0000-00-00 00:00:00', 1),
(4491, 4427, 8, 5, 0, 'will not suite for our profile. no clarity in speech.', 8, '2021-04-20 01:49:20', 1),
(4492, 4428, 16, 5, 0, 'NO SALES SKILLS ', 8, '2021-04-20 01:51:27', 1),
(4493, 4428, 8, 4, 0, 'check for RE, has 1.5yr exp in calling at reliance LI. expt 15k.', 8, '2021-04-20 01:51:27', 1),
(4494, 4362, 8, 5, 0, 'not turned up', 8, '2021-04-20 01:52:00', 1),
(4495, 4305, 8, 5, 0, 'collection exe joined and Completed training.', 8, '2021-04-20 01:52:53', 1),
(4496, 4282, 8, 5, 0, 'had a telephonic interview and feel the same.', 8, '2021-04-20 01:54:00', 1),
(4497, 4201, 8, 5, 0, 'not turned up', 8, '2021-04-20 01:56:15', 1),
(4498, 4507, 59, 5, 0, 'No Communication,looking only for Accounts positions', 50, '0000-00-00 00:00:00', 1),
(4499, 4510, 59, 5, 0, 'Frequent Job Changes, no relevant Exp not suits', 50, '0000-00-00 00:00:00', 1),
(4500, 4491, 59, 2, 0, 'will come after checking for the agreement with Family\n', 60, '0000-00-00 00:00:00', 1),
(4501, 4454, 41, 5, 0, 'not attended zoom interview no call back from the candidate also', 41, '2021-04-20 05:27:04', 1),
(4502, 4450, 41, 5, 0, 'Not interested with rE profile', 41, '2021-04-20 05:27:54', 1),
(4503, 4492, 14, 5, 0, 'not suitable for this profile', 59, '2021-04-20 07:42:00', 1),
(4504, 4493, 14, 5, 1, 'not suitable for this profile', 59, '2021-04-20 07:42:40', 1),
(4505, 4494, 14, 5, 1, 'not fit for this profile and looking for non voice', 59, '2021-04-20 07:43:07', 1),
(4506, 4505, 59, 5, 0, 'Communication Average, High Pay Expectation Sustainability Doubt', 7, '0000-00-00 00:00:00', 1),
(4507, 4518, 59, 5, 0, 'Not fit for MF positions, no basic knowledge in MF', 7, '0000-00-00 00:00:00', 1),
(4508, 4521, 59, 5, 0, 'Sales Exp in CDF, high CTC expectation', 7, '0000-00-00 00:00:00', 1),
(4509, 4513, 59, 2, 0, 'Communication Good, Should check for Agreement with parents, Will come back again on monday', 7, '0000-00-00 00:00:00', 1),
(4510, 4524, 59, 5, 0, 'Not open for Voice, will not handle the Pressure  and not ready to work on target', 7, '0000-00-00 00:00:00', 1),
(4511, 4528, 59, 5, 0, 'Candidate Got Selected For Thiyagu Team,15K TH Was Committed Earlier,Now Need To Negotiate With PF Deductions/He S Corona Positive Will Take Some Time To Come Back. Attended 3months back ', 7, '0000-00-00 00:00:00', 1),
(4512, 4515, 59, 2, 0, 'Fresher, looking for Digi Mar, sustainability Doubt, need to check  with parents and come back ', 7, '0000-00-00 00:00:00', 1),
(4513, 4196, 53, 2, 0, 'Hold, he is working he ll come within a week', 53, '2021-04-21 03:16:47', 1),
(4514, 4275, 53, 2, 0, 'hold', 53, '2021-04-21 03:17:05', 1),
(4515, 4532, 59, 5, 0, 'Looking for Non Voice Process only', 7, '0000-00-00 00:00:00', 1),
(4516, 4412, 29, 7, 3, 'gk team, 3 lacs CTC, Next 3 months, monthly target 1.50 lacs MOM total 4.5 lacs , if achieved we can increase salary to 3.30 lacs from 4th month onwards', 31, '2021-04-21 03:43:21', 1),
(4517, 4534, 59, 5, 0, 'Looking only for Non Voice process', 7, '0000-00-00 00:00:00', 1),
(4518, 4536, 59, 5, 0, 'Not open for Voice process', 7, '0000-00-00 00:00:00', 1),
(4519, 4537, 59, 5, 0, 'Looking only for Non Voice Process', 7, '0000-00-00 00:00:00', 1),
(4520, 4528, 16, 4, 0, 'GOOD CANDIDATE', 59, '2021-04-21 05:02:36', 1),
(4521, 4525, 59, 5, 0, 'Sustainability Doubt, Will not handle the pressure,', 60, '0000-00-00 00:00:00', 1),
(4522, 4509, 59, 5, 0, 'Have MIS Exp, Communication ok but the expectation is very high Holding an offer for 4 LPA,Exp 4.5 LPA Min', 60, '0000-00-00 00:00:00', 1),
(4523, 4541, 59, 2, 0, 'For Mern Stack,Fresher,Should come back after completing the exams\n', 7, '0000-00-00 00:00:00', 1),
(4524, 4549, 59, 5, 0, 'Only for Non Voice,will not sustain in our process', 7, '0000-00-00 00:00:00', 1),
(4525, 4552, 59, 5, 0, 'only retail store Exp, Will not fit for  our Sales profile,will not handle the pressure', 7, '0000-00-00 00:00:00', 1),
(4526, 4550, 59, 5, 0, 'Sustainability Doubt, Will not fit for our MF Role, No knowledge in MF', 7, '0000-00-00 00:00:00', 1),
(4527, 4555, 59, 5, 0, 'Communication ok,Salary Expectation is high,sustainability Doubt', 7, '0000-00-00 00:00:00', 1),
(4528, 4558, 59, 5, 0, 'Not interested for Sales,No communication', 7, '0000-00-00 00:00:00', 1),
(4529, 4528, 59, 5, 0, 'Candidate Got Selected For Thiyagu Team,15K TH Was Committed Earlier,Now Need To Negotiate With PF Deductions/He S Corona Positive Will Take Some Time To Come Back. Attended 3months back ', 16, '2021-04-22 01:21:22', 1),
(4530, 3509, 59, 4, 0, 'Check for DM, Focus on Dadxquots Business', 7, '0000-00-00 00:00:00', 1),
(4531, 4564, 53, 4, 0, 'Ok, located in poonamalle, she s ready to relocate to thiruvallur, gud communication, sal 10k TH', 7, '0000-00-00 00:00:00', 1),
(4532, 4565, 53, 5, 0, 'even he s not opening his mouth', 7, '0000-00-00 00:00:00', 1),
(4533, 4566, 53, 5, 0, 'not opened her mouth', 7, '0000-00-00 00:00:00', 1),
(4534, 4567, 53, 4, 0, 'Ok bt check sustainability', 7, '0000-00-00 00:00:00', 1),
(4535, 4564, 14, 7, 4, 'salary 10k check joining date', 53, '2021-04-22 03:53:13', 1),
(4536, 4567, 14, 5, 0, 'voice not clear not suitable for this profile', 53, '2021-04-22 03:54:47', 1),
(4537, 4529, 59, 5, 0, 'For Tiruvallur Location, Expectation Min 20k,Into Credit Card Sales', 7, '0000-00-00 00:00:00', 1),
(4538, 4551, 59, 7, 0, 'Selected for Priyanka Jeni, CTC -132000 Gross-  11000 TH - 10450', 7, '0000-00-00 00:00:00', 1),
(4539, 3509, 69, 5, 0, 'Candidate holding less interest towards DM', 59, '2021-04-23 10:50:29', 1),
(4540, 4551, 14, 7, 3, 'salary 10k check distance once and confirm joining date', 59, '2021-04-23 10:51:34', 1),
(4541, 4575, 59, 5, 0, 'Communication average ,not open for Agreement', 50, '0000-00-00 00:00:00', 1),
(4542, 4578, 59, 5, 0, 'Communication Average, College yet to complete.Sustainability 50/50', 50, '0000-00-00 00:00:00', 1),
(4543, 4579, 59, 4, 0, 'Check for CRM,50/50 Profile', 50, '0000-00-00 00:00:00', 1),
(4544, 4561, 59, 5, 0, 'Location Constraint, No Communication will not suits for our role', 50, '0000-00-00 00:00:00', 1),
(4545, 4560, 59, 5, 0, 'No communication ,College yet to complete', 50, '0000-00-00 00:00:00', 1),
(4546, 4563, 59, 5, 0, 'Average Communication, Sustainability Doubt', 50, '0000-00-00 00:00:00', 1),
(4547, 4543, 59, 4, 0, 'Profile ok, check for UI/React, candidate seems little slow', 50, '0000-00-00 00:00:00', 1),
(4548, 4520, 59, 2, 0, 'worked in RR Donnelly, sustainability Doubt Career Gap, Exp - 18K', 50, '0000-00-00 00:00:00', 1),
(4549, 4582, 59, 5, 0, 'Looking only for Nonvoice, Will not handle pressure', 50, '0000-00-00 00:00:00', 1),
(4550, 4568, 59, 5, 0, 'Already attended for RM, we offered but  didnt join now came for Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(4551, 4572, 53, 5, 0, 'not opening his mounth also', 7, '0000-00-00 00:00:00', 1),
(4552, 4580, 53, 5, 0, 'exp high salary, seems fraud', 50, '0000-00-00 00:00:00', 1),
(4553, 4581, 59, 5, 0, 'Much focus into nonvoice, location constraint', 50, '0000-00-00 00:00:00', 1),
(4554, 4564, 59, 2, 0, 'She needs to vacate the hostel, not sure where she s relocating new to chennai. Once settle down will come back ', 14, '2021-04-23 12:50:03', 1),
(4555, 4551, 59, 7, 0, 'Selected for Priyanka Jeni, CTC -132000 Gross-  11000 TH - 10450', 14, '2021-04-23 12:54:48', 1),
(4556, 4562, 59, 5, 0, 'Focus on IT positions, Need to complete the graduation, will come once done with Course', 50, '0000-00-00 00:00:00', 1),
(4557, 4584, 59, 3, 0, 'Selected for CRM - Priority Shanmuga Kutralingam Team with CTC 146496 includes 208 deduction in Client Advisory Prop', 50, '0000-00-00 00:00:00', 1),
(4558, 4583, 59, 7, 0, 'Selected for Mutual Fund Coordinator cum Sales profile CTC - 216000 included PF/PT/ESI deductions\n', 50, '0000-00-00 00:00:00', 1),
(4559, 4583, 35, 7, 0, 'Communication and Learning was Good, Convincing skill also Good. Negotiate the Salary.   ', 59, '2021-04-23 04:18:23', 1),
(4560, 4584, 35, 5, 0, 'poor Communication, no Core Communication, have to Check sustainability.', 59, '2021-04-23 04:22:17', 1),
(4561, 4579, 14, 5, 0, 'not suitable for voice process', 59, '2021-04-23 04:29:14', 1),
(4562, 4543, 27, 5, 0, 'Task not Satisfied.', 59, '2021-04-23 04:32:39', 1),
(4563, 4551, 8, 1, 0, NULL, 59, '2021-04-23 04:44:00', 1),
(4564, 4553, 59, 5, 0, 'Good Communication,Profile is Good, not sure about sustainability as her marriage proposal going on', 60, '0000-00-00 00:00:00', 1),
(4565, 4556, 59, 5, 0, 'Looking only for Accounts position,Sustainability Doubt', 60, '0000-00-00 00:00:00', 1),
(4566, 4569, 59, 5, 0, 'Agreement Ok Yet To Complete College, Can join only after his studies', 60, '0000-00-00 00:00:00', 1),
(4567, 4574, 59, 7, 0, 'Selected for Digital Marketing Intern cum Employment, initial Stipend will be provided then CTC will be finalised post 3 months of Internship', 60, '0000-00-00 00:00:00', 1),
(4568, 4588, 59, 5, 0, 'No knowledge in MF, not even clear for which position he came', 60, '0000-00-00 00:00:00', 1),
(4569, 4571, 59, 5, 0, 'Will come back after completing the exams,focus into IT openings\n', 60, '0000-00-00 00:00:00', 1),
(4570, 4587, 59, 5, 0, 'No basic knowledge, sustainability doubt,not much active', 60, '0000-00-00 00:00:00', 1),
(4571, 4592, 59, 4, 0, 'Good Profile,Communication ok check for DA,Interview by Reyaz 2nd level Interview', 60, '0000-00-00 00:00:00', 1),
(4572, 4577, 59, 5, 0, 'Every one year Job Change,sustainability doubt will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(4573, 4538, 59, 5, 0, 'Need to check with family for SA, Sustainability Doubt', 60, '0000-00-00 00:00:00', 1),
(4574, 4596, 59, 5, 0, 'Focus into IT openings,Exp but career gap need to brush up the knowledge, age around 33 yrs', 60, '0000-00-00 00:00:00', 1),
(4575, 4530, 59, 5, 0, 'No basic knowledge, sustainability doubt, will not suits', 60, '0000-00-00 00:00:00', 1),
(4576, 4487, 59, 5, 0, 'Not open for Agreement, Exp is very High ,career Gap', 60, '0000-00-00 00:00:00', 1),
(4577, 4602, 59, 5, 0, 'Sustainability Doubt, will not suits much for our role', 60, '0000-00-00 00:00:00', 1),
(4578, 4601, 59, 5, 0, 'Not open up ,will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(4579, 4545, 59, 5, 0, 'Not open for Agreement, fresher yet to complete College', 60, '0000-00-00 00:00:00', 1),
(4580, 3880, 14, 5, 0, 'not suitable for this profile', 60, '0000-00-00 00:00:00', 1),
(4581, 4592, 60, 1, 0, NULL, 59, '2021-04-24 04:23:56', 1),
(4582, 4574, 69, 7, 0, 'The candidate is good,  Need to confirm whether he adheres towards company policy', 59, '2021-04-24 04:28:42', 1),
(4583, 4574, 59, 7, 0, 'Selected for Digital Marketing Intern cum Employment, initial Stipend will be provided then CTC will be finalised post 3 months of Internship', 69, '2021-04-26 10:18:03', 1),
(4584, 4609, 59, 7, 0, 'Selected for Dhivya Team,CTC - 1,86,000 includes PF/PT/ESI Deductions Joining Date: 06-May-2021', 50, '0000-00-00 00:00:00', 1),
(4585, 4605, 59, 5, 0, 'Fresher, Yet to complete College, Will not sustain', 50, '0000-00-00 00:00:00', 1),
(4586, 4412, 59, 7, 0, 'Selected for GK Sir, CTC -3 LPA, Gross - 25000 (Includes PF PT Deductions)', 29, '2021-04-26 11:24:14', 1),
(4587, 4286, 8, 2, 0, 'hold for BDM', 29, '2021-04-26 11:25:58', 1),
(4588, 4610, 59, 5, 0, 'Communication Good, Will not sustain for a long, also not much suits', 50, '0000-00-00 00:00:00', 1),
(4589, 4606, 59, 5, 0, 'Fresher, not open for Agreement, Exp high Pay', 50, '0000-00-00 00:00:00', 1),
(4590, 4612, 59, 5, 0, 'Not Focused on the Career to choose, Sustainability doubt', 50, '0000-00-00 00:00:00', 1),
(4591, 4613, 59, 5, 0, 'Not open for Agreement,Not focused on the positions', 60, '0000-00-00 00:00:00', 1),
(4592, 4615, 59, 5, 0, 'No Communication, Not suitable for Sales', 50, '0000-00-00 00:00:00', 1),
(4593, 4593, 14, 5, 0, 'not fit for this profile', 60, '0000-00-00 00:00:00', 1),
(4594, 4599, 14, 5, 0, 'looking for non voice process not fit for this profile', 60, '0000-00-00 00:00:00', 1),
(4595, 4600, 14, 5, 0, 'not suitable for this profile', 60, '0000-00-00 00:00:00', 1),
(4596, 4597, 14, 5, 0, 'communication skill not good not suitable for this profile', 60, '0000-00-00 00:00:00', 1),
(4597, 4591, 14, 5, 0, 'not suitable for voice process', 60, '0000-00-00 00:00:00', 1),
(4598, 4616, 59, 5, 0, 'Will not sustain ,for time being looking for a job', 50, '0000-00-00 00:00:00', 1),
(4599, 4412, 60, 1, 0, NULL, 59, '2021-04-26 03:58:10', 1),
(4600, 4467, 59, 7, 0, 'Selected for Tiruvallur Location, CTC - 138948 TH - 11k', 53, '2021-04-26 04:15:39', 1),
(4601, 4467, 60, 1, 0, NULL, 59, '2021-04-26 04:20:05', 1),
(4602, 4609, 21, 4, 4, 'need to check with gaurav sir...', 59, '2021-04-26 06:51:15', 1),
(4603, 4620, 59, 5, 0, 'No knowledge in Mutual Fund, No Communication', 50, '0000-00-00 00:00:00', 1),
(4604, 4609, 29, 7, 2, 'selected for esales RM - Divya Team', 21, '2021-04-27 11:04:40', 1),
(4605, 4589, 59, 5, 0, 'Doubtful for a long run, fresher profile not open for SA', 50, '0000-00-00 00:00:00', 1),
(4606, 4539, 59, 5, 0, 'Looking only for Non Voice process, location constraint', 50, '0000-00-00 00:00:00', 1),
(4607, 4624, 53, 5, 0, 'not suit for sales process, not opening his mouth also', 50, '0000-00-00 00:00:00', 1),
(4608, 4625, 59, 5, 0, 'Will not sustain for a long, no focus on the career ', 50, '0000-00-00 00:00:00', 1),
(4609, 4622, 59, 5, 0, 'Not open for Telesales, looking  only for non voice, will not sustain for a long', 50, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(4610, 4621, 59, 5, 0, 'Distance too long, not comfortable for Sales process', 50, '0000-00-00 00:00:00', 1),
(4611, 4626, 53, 5, 0, '32yrs, not bold, not suit for telesales.', 50, '0000-00-00 00:00:00', 1),
(4612, 4628, 59, 5, 0, 'Canditate Ok Better Communication Skills Well Matured,but not ready to go for Field Sales looking only for Internal and the expectation is high', 60, '0000-00-00 00:00:00', 1),
(4613, 4629, 59, 3, 0, 'Selected for Tiruvallur in cash mode', 50, '0000-00-00 00:00:00', 1),
(4614, 4630, 59, 3, 0, 'Selected for Tiruvallur Location with TH 10K', 50, '0000-00-00 00:00:00', 1),
(4615, 4629, 53, 7, 0, 'selected for thiruvallur, 10k TH, she ll join thiruvallur branch only', 59, '2021-04-27 04:19:26', 1),
(4616, 4630, 53, 7, 0, 'selected for thiruvallur branch oly, 10k TH, she ll join thiruvallur branch oly', 59, '2021-04-27 04:22:45', 1),
(4617, 4628, 13, 4, 4, 'canditate ok better communication skills well matured we speak in last dicussion 12k but expected salary high...', 59, '2021-04-27 04:24:12', 1),
(4618, 4629, 8, 4, 0, 'Confirm DOJ And Salary', 53, '2021-04-27 04:46:30', 1),
(4619, 4630, 8, 4, 0, 'Confirm DOJ And Salary', 53, '2021-04-27 04:47:24', 1),
(4620, 4619, 18, 7, 4, 'Selected for santosh team. Will confirm the offer date. Expected salary already discussed with hR', 60, '0000-00-00 00:00:00', 1),
(4621, 4564, 59, 5, 0, 'Went back to the native, once return to chennai will let us know', 59, '2021-04-27 07:16:24', 1),
(4622, 4629, 59, 3, 0, 'Selected for Tiruvallur in cash mode', 8, '2021-04-27 07:26:51', 1),
(4623, 4630, 59, 3, 0, 'Selected for Tiruvallur Location with TH 10K', 8, '2021-04-27 07:27:43', 1),
(4624, 4638, 59, 5, 0, 'will not Sustain for a long, Too long distance also', 50, '0000-00-00 00:00:00', 1),
(4625, 4633, 59, 2, 0, 'Communication average,Written also average will check if no profiles shortlisted', 50, '0000-00-00 00:00:00', 1),
(4626, 4639, 59, 5, 0, 'Good Profile Communication good, Need to check later if no profile selected for DA,High CTC Expectation too', 50, '0000-00-00 00:00:00', 1),
(4627, 4635, 59, 2, 0, 'Communication Good, Will come for 2nd level interview for Data Analyst', 50, '0000-00-00 00:00:00', 1),
(4628, 4643, 59, 5, 0, 'No knowledge in Mutual Fund, not suits for MIS role also', 50, '0000-00-00 00:00:00', 1),
(4629, 4644, 53, 7, 0, 'selected for thiruvallur branch, 10k TH, 15 days training iat tnagar, need logout at 5 clk due to distance', 50, '0000-00-00 00:00:00', 1),
(4630, 4641, 59, 4, 0, 'Check for CRM, No Relevant Exp but in Sales earlier', 50, '0000-00-00 00:00:00', 1),
(4631, 4645, 8, 5, 0, 'will not suite for our process', 50, '0000-00-00 00:00:00', 1),
(4632, 4647, 8, 5, 0, 'will  not suite for calling', 50, '0000-00-00 00:00:00', 1),
(4633, 4648, 8, 4, 3, 'fresher, 2m in icici loan process, check for crm', 50, '0000-00-00 00:00:00', 1),
(4634, 4649, 8, 3, 0, ' For Dhivya Team,  Ctc - 180000 with pf, Mctc 15000.', 50, '0000-00-00 00:00:00', 1),
(4635, 4652, 8, 4, 3, 'has 1.6yr exp in customer support. 1yr gap and expt is 12k th.', 50, '0000-00-00 00:00:00', 1),
(4636, 4646, 8, 2, 0, 'for crm', 50, '0000-00-00 00:00:00', 1),
(4637, 4650, 8, 4, 3, 'check for crm, neg salary, previously he was getting variable payout.', 50, '0000-00-00 00:00:00', 1),
(4638, 4642, 8, 4, 0, 'check for CRM-thiruvallur, fresher for us.', 50, '0000-00-00 00:00:00', 1),
(4639, 4653, 8, 5, 0, 'not Interested in sales process', 50, '0000-00-00 00:00:00', 1),
(4640, 4655, 8, 3, 0, 'for thiruvallur, 10k th and ctc 126312. ', 50, '0000-00-00 00:00:00', 1),
(4641, 4654, 8, 5, 0, 'Not interested in sales process.', 50, '0000-00-00 00:00:00', 1),
(4642, 3566, 59, 5, 0, 'Already attended for IT opening,now came for Digital Marketing will not suit for the DM Role\n', 60, '0000-00-00 00:00:00', 1),
(4643, 4655, 53, 7, 0, 'selected for thiruvallur branch, pls cnfrm the joining and salary.', 8, '2021-04-28 03:19:48', 1),
(4644, 4657, 8, 5, 0, 'has 4m exp in sales and expt 15k th for RE.', 50, '0000-00-00 00:00:00', 1),
(4645, 4644, 59, 3, 0, 'Selected for Tiruvallur in Cash mode', 53, '2021-04-28 03:46:05', 1),
(4646, 4642, 53, 8, 0, 'left without attending the interview', 8, '2021-04-28 04:00:45', 1),
(4647, 3884, 8, 3, 0, 'Selected For Srikanth Team CTC - 192000 With PF PT  ESI Deductions', 59, '2021-04-28 04:22:06', 1),
(4648, 4648, 21, 5, 2, 'She Is Not Sustain Long Term Because Already She Left Her Job Bec Of Pressure ', 8, '2021-04-28 04:36:46', 1),
(4649, 4649, 21, 4, 4, 'candiate ok need to check with gaurav sir ', 8, '2021-04-28 04:42:27', 1),
(4650, 4652, 11, 7, 0, 'candidate is ok...need to check with gaurav sir for salary package ', 8, '2021-04-28 04:44:16', 1),
(4651, 4650, 13, 5, 0, 'no confident not suite for voice process....', 8, '2021-04-28 04:45:40', 1),
(4652, 4661, 53, 7, 0, 'Selected. 10.5k TH, Need to increase the salary within 6Months depends on performance. pls cnfrm the joining', 50, '0000-00-00 00:00:00', 1),
(4653, 4655, 59, 7, 0, 'Selected for Tiruvallur Location,TH-10K Joining Date: 06-May-2021 Training in Tnagar Office for 15 Days and timing during Training will be 5 PM', 53, '2021-04-28 06:17:50', 1),
(4654, 4661, 59, 7, 0, 'Selected for Tiruvallur, TH - 10.5 After 6 months based on the performance Salary to be revised was the commitment given by Banu', 53, '2021-04-28 06:22:05', 1),
(4655, 4661, 8, 3, 0, 'Selected For Tiruvallur, TH - 10.5. MCTC-11053. salary Hike based on Performance', 59, '2021-04-28 07:29:45', 1),
(4656, 4631, 59, 5, 0, 'No sustainability,1.10 yrs 3 companies changes and not open for Agreement', 50, '0000-00-00 00:00:00', 1),
(4657, 4666, 59, 5, 0, 'Will not sustain for a long, Looking much for Non Voice only', 50, '0000-00-00 00:00:00', 1),
(4658, 4667, 59, 4, 0, 'Check for CRM Tiruvallur Location, ok for 10K TH, fresher yet to complete their Exams', 50, '0000-00-00 00:00:00', 1),
(4659, 4649, 59, 7, 0, 'Selected for Dhivya Team, Shortlisted by Gaurav sir CTC - 180000 includes PF / PT / ESI Deductions. Joining Date: 03-May-2021', 21, '2021-04-29 11:20:31', 1),
(4660, 4663, 8, 2, 0, 'for Mf, has to check for sales.', 50, '0000-00-00 00:00:00', 1),
(4661, 4665, 8, 5, 3, 'will not sustain and Planning to start his own biz, will not suite for calling profile.', 50, '0000-00-00 00:00:00', 1),
(4662, 4670, 8, 4, 0, 'cross check for crm, doing part time biz(gift). expt is 11-12k', 50, '0000-00-00 00:00:00', 1),
(4663, 4667, 14, 5, 0, 'Not suitable', 59, '2021-04-29 11:48:43', 1),
(4664, 4671, 8, 4, 0, 'check for MIS, okay with comm. 5yr in backend process.', 50, '0000-00-00 00:00:00', 1),
(4665, 4674, 8, 4, 3, 'check for CRM-thiruvallur, fresher. 2yr in pharma.', 50, '0000-00-00 00:00:00', 1),
(4666, 4673, 8, 4, 0, 'check for crm-thiruvallur. has 6m exp in calling and 1y in airtel fiber net.', 50, '0000-00-00 00:00:00', 1),
(4667, 4649, 8, 3, 0, ' For Dhivya Team,  Ctc - 180000 with pf, Mctc 15000.', 59, '2021-04-29 12:00:51', 1),
(4668, 4641, 14, 5, 0, 'Not suitable for this profile', 59, '2021-04-29 12:02:40', 1),
(4669, 4664, 8, 5, 0, 'no comm, lang is not that much good, no knowledge in excel and ppt, lTH is 10k and ecpt is 17-18k.', 50, '0000-00-00 00:00:00', 1),
(4670, 4644, 8, 4, 0, 'confirm DOJ and salary', 59, '2021-04-29 12:41:05', 1),
(4671, 4655, 8, 3, 0, 'for thiruvallur, 10k th and ctc 126312. ', 59, '2021-04-29 12:44:50', 1),
(4672, 4583, 59, 7, 0, 'Selected for Mutual Fund Coordinator cum Sales profile CTC - 216000 included PF/PT/ESI deductions\n', 35, '2021-04-29 02:30:50', 1),
(4673, 4586, 8, 2, 0, 'to check with his patience', 50, '0000-00-00 00:00:00', 1),
(4674, 4674, 14, 7, 0, 'profile shortlisted . kindly check salary and joining date for tiruvallur', 8, '2021-04-29 02:35:21', 1),
(4675, 4673, 14, 7, 0, 'i am not discuss about salary confirm the salary and joining date . profile ok', 8, '2021-04-29 02:36:34', 1),
(4676, 4670, 13, 5, 0, 'no idea in voice process  low level confident', 8, '2021-04-29 02:40:56', 1),
(4677, 4671, 59, 5, 0, 'Communication Average, Requested for time to check with parents. Its been a week time no response ', 8, '2021-04-29 02:42:39', 1),
(4678, 4679, 8, 5, 0, 'will not suite for our process, false information', 50, '0000-00-00 00:00:00', 1),
(4679, 4673, 59, 7, 0, 'selected for CRM Tiruvallur CTC - 126000', 14, '2021-04-29 03:28:06', 1),
(4680, 4674, 59, 7, 0, 'Shortlisted for Tiruvallur CRM,CTC - 126000', 14, '2021-04-29 03:29:22', 1),
(4681, 4585, 8, 5, 0, 'written was not good and expt is 3.7l. as exp only in accounts', 7, '0000-00-00 00:00:00', 1),
(4682, 4660, 8, 5, 0, 'has 2m exp in metro, in 6 months contract, doesnt what is his salary, will not sustain, comm is avg,  not okay with service agreement.', 7, '0000-00-00 00:00:00', 1),
(4683, 4685, 8, 5, 0, 'no job need, will not sustain.', 7, '0000-00-00 00:00:00', 1),
(4684, 4686, 8, 5, 0, 'not int in sales, no knowledge in MF, knows only the theory. comm is very avg.', 50, '0000-00-00 00:00:00', 1),
(4685, 4681, 8, 5, 0, 'Stammering to speak, comm is avg and no basics in excel. fresher and expt is 20k.', 50, '0000-00-00 00:00:00', 1),
(4686, 4672, 8, 8, 0, 'left before  interview', 50, '0000-00-00 00:00:00', 1),
(4687, 4470, 53, 4, 0, 'pls cnfrm salary and DOJ', 34, '2021-04-30 11:07:48', 1),
(4688, 4476, 53, 7, 0, 'Pls Cnfrm Salary And DOJ', 34, '2021-04-30 11:14:11', 1),
(4689, 4680, 8, 5, 0, 'expt is high. rejected by reyaz', 50, '0000-00-00 00:00:00', 1),
(4690, 643, 8, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(4691, 4682, 8, 5, 0, 'pronunciation is not clear, will not suite for our process. expt is 17-18k.', 50, '0000-00-00 00:00:00', 1),
(4692, 4676, 8, 2, 0, 'for next round', 50, '0000-00-00 00:00:00', 1),
(4693, 4675, 8, 5, 0, 'comm is below avg, no Basics in excel,  just like that came for interview. ', 50, '0000-00-00 00:00:00', 1),
(4694, 4678, 8, 5, 0, 'not okay with service agg.', 50, '0000-00-00 00:00:00', 1),
(4695, 4689, 8, 5, 0, 'expt is high. age is 31 and rejected by reyaz', 50, '0000-00-00 00:00:00', 1),
(4696, 4687, 8, 5, 0, 'very slow and low voice, will not suite for our process.', 50, '0000-00-00 00:00:00', 1),
(4697, 4470, 59, 5, 0, 'Interviewed in the month of April and on hold for Guru, finally dropped this Profile with concern to the pandemic and the lockdown', 53, '2021-04-30 01:33:06', 1),
(4698, 4476, 59, 7, 0, 'Selected for Guru Team with CTC - 1,80,000 LPA inclusive of PF/PF deductions. joining Date: 06-May-2021', 53, '2021-04-30 01:33:26', 1),
(4699, 4652, 60, 1, 0, NULL, 11, '2021-04-30 03:20:11', 1),
(4700, 4196, 53, 2, 0, 'not attended  for final round of interview', 53, '2021-04-30 03:25:46', 1),
(4701, 4196, 8, 2, 0, 'for RE', 53, '2021-04-30 03:26:20', 1),
(4702, 4196, 53, 4, 0, 'Not Attended  For Final Round Of Interview', 53, '2021-04-30 03:26:20', 1),
(4703, 4275, 8, 2, 0, 'for RE', 53, '2021-04-30 03:31:06', 1),
(4704, 4275, 53, 4, 0, 'not attended for final round of interview', 53, '2021-04-30 03:31:06', 1),
(4705, 4646, 13, 7, 4, 'good  confident and intrested  in voice process, 1year bond also accepted expected salary 10k take home...', 8, '2021-04-30 04:11:05', 1),
(4706, 4646, 8, 4, 0, 'check for CRM. fresher', 8, '2021-04-30 04:11:05', 1),
(4707, 4628, 59, 5, 0, 'Canditate Ok Better Communication Skills Well Matured,but not ready to go for Field Sales looking only for Internal and the expectation is high', 13, '2021-04-30 04:28:16', 1),
(4708, 4646, 59, 7, 0, 'Selected for CRM Muthu Team CTC - 126312', 13, '2021-04-30 04:32:57', 1),
(4709, 4674, 60, 1, 0, NULL, 59, '2021-05-02 09:46:32', 1),
(4710, 4673, 60, 1, 0, NULL, 59, '2021-05-02 09:47:32', 1),
(4711, 4646, 60, 1, 0, NULL, 59, '2021-05-02 09:50:29', 1),
(4712, 4574, 60, 1, 0, NULL, 59, '2021-05-03 09:47:54', 1),
(4713, 4583, 8, 3, 0, 'for mF, Mctc is 18000, and ctc is 216000.', 59, '2021-05-03 10:05:11', 1),
(4714, 4695, 59, 4, 0, 'Check for CRM, Fresher not a graduate but have telecall exp for 6 months', 50, '0000-00-00 00:00:00', 1),
(4715, 4691, 59, 5, 0, 'Sustainability Doubt,Holding an offer for 25K with the Japan based company,looking for high Pay ,1.6 yrs 2 companies changed', 50, '0000-00-00 00:00:00', 1),
(4716, 4700, 8, 5, 0, 'very childish, will not suite for our process', 50, '0000-00-00 00:00:00', 1),
(4717, 4696, 8, 5, 0, 'not interested in sales calling, will not sustain. ', 50, '0000-00-00 00:00:00', 1),
(4718, 4697, 8, 5, 0, 'will  not suite for our process, salary expt is 25k. ', 50, '0000-00-00 00:00:00', 1),
(4719, 4701, 8, 5, 0, 'looking for job change (salary). his sal was 10k and got revised by last month as 12k, his expt is 17k. no knowledge in mF and not interested in sales.', 50, '0000-00-00 00:00:00', 1),
(4720, 4705, 8, 5, 3, 'will not suite for calling, has exp in admin and will not handle pressure.', 50, '0000-00-00 00:00:00', 1),
(4721, 4702, 8, 3, 0, 'For Suthagar Team CTC - 162000 With Esi,PF MCTC Is 13500 And Th Is10484.', 50, '0000-00-00 00:00:00', 1),
(4722, 4703, 8, 5, 0, 'not speaking up and just like that came for interview and said no idea about it.', 50, '0000-00-00 00:00:00', 1),
(4723, 4702, 24, 7, 0, 'Candidate selected .. ', 8, '2021-05-03 03:07:58', 1),
(4724, 4702, 59, 7, 0, 'Selected for Suthagar Team CTC - 162000 inclusive of PF/PT/ESI Dedcutions. Will be a Patroniss Staff. Joining Date: 06-May-2021', 24, '2021-05-03 03:57:19', 1),
(4725, 4702, 8, 3, 0, 'For Suthagar Team CTC - 162000 With Esi,PF MCTC Is 13500 And Th Is10484.', 59, '2021-05-03 04:48:51', 1),
(4726, 4695, 13, 5, 0, 'Lockdown period hold long pending ', 59, '2021-05-03 04:49:28', 1),
(4727, 4711, 59, 4, 0, 'check for CRM Tiruvallur, No Relevant Exp but worked in Reliance Trends', 50, '0000-00-00 00:00:00', 1),
(4728, 4706, 59, 4, 0, 'Fresher Check for PHP,interest to learn Mern Also. Ok with our terms xxamp conditions', 50, '0000-00-00 00:00:00', 1),
(4729, 4712, 59, 5, 0, 'Not much open for Tamil Voice process, Just for time being looking for a job will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(4730, 4706, 27, 5, 0, 'No Response.', 59, '2021-05-04 10:43:37', 1),
(4731, 4711, 8, 5, 0, 'will not sustain, done her mA eng. lit, pursuing her net and looking for job in teaching. time being looking for job.', 59, '2021-05-04 10:45:09', 1),
(4732, 4714, 59, 7, 0, 'Selected for Syed Team, with CTC - 1,74,000 included PF/PT/ESI and comes under Patroniss Staff', 50, '0000-00-00 00:00:00', 1),
(4733, 4715, 8, 5, 2, 'will not suite for our process', 50, '0000-00-00 00:00:00', 1),
(4734, 4714, 57, 7, 0, 'candidate is ok ...kinldy negotiate the salary and confirm the joining', 59, '2021-05-04 01:22:45', 1),
(4735, 4710, 59, 5, 0, 'Very High Expectation, already he has some pipelines ,not ready for service Agreement', 50, '0000-00-00 00:00:00', 1),
(4736, 4633, 59, 5, 0, 'Communication Average, Written Also Average, but sustainability Doubt', 59, '2021-05-04 04:29:48', 1),
(4737, 4635, 59, 5, 0, 'Communication Good, didnxquott turn back for the 2nd level interview ', 59, '2021-05-04 04:31:37', 1),
(4738, 4520, 59, 5, 0, 'Worked In RR Donnelly, Sustainability Doubt Career Gap, Exp - 18K', 59, '2021-05-04 04:32:53', 1),
(4739, 4491, 59, 5, 0, 'Didnt turn back after checking with his family on the SA,', 59, '2021-05-04 04:39:01', 1),
(4740, 4502, 59, 5, 0, 'Not much open up no relevant Exp in Sales, Sustainability Doubt', 59, '2021-05-04 04:42:37', 1),
(4741, 4476, 8, 3, 0, 'For Guru Team With Ctc - 1,80,000 MCTC 15000, 11672 net', 59, '2021-05-04 05:14:26', 1),
(4742, 4719, 59, 7, 0, 'Shortlisted for DA,selected by Gokul, with CTC - 1,80,000 LPA with PF/PT/ESI Deductions will come under patroniss as Staff', 50, '0000-00-00 00:00:00', 1),
(4743, 4723, 59, 7, 0, 'Shortlisted for Suthagar Team with CTC - 1,62,000 includes PF/PT/ESI deductions will come under patroniss Staff Role', 50, '0000-00-00 00:00:00', 1),
(4744, 4707, 59, 5, 0, 'Task has been given, but didnt turn with the Task will not suits for our role', 50, '0000-00-00 00:00:00', 1),
(4745, 4721, 8, 5, 0, 'will not suite for calling, will not handle pressure. will not sustain', 50, '0000-00-00 00:00:00', 1),
(4746, 4724, 8, 5, 0, 'will not suite for our process', 50, '0000-00-00 00:00:00', 1),
(4747, 4723, 24, 7, 0, 'candidate selected', 59, '2021-05-05 12:54:40', 1),
(4748, 4719, 8, 3, 0, 'for DA, ctc is 180000 and Mctc is 15000.', 59, '2021-05-05 12:58:45', 1),
(4749, 4725, 8, 5, 0, 'not speaking up, will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(4750, 4726, 14, 5, 1, 'not suitable for this profile . ', 50, '0000-00-00 00:00:00', 1),
(4751, 4727, 8, 4, 3, 'check for cRM- thiruvallur', 50, '0000-00-00 00:00:00', 1),
(4752, 4728, 14, 5, 2, 'not fit for this job', 50, '0000-00-00 00:00:00', 1),
(4753, 4723, 59, 7, 0, 'Shortlisted for Suthagar Team with CTC - 1,62,000 includes PF/PT/ESI deductions will come under patroniss Staff Role', 24, '2021-05-05 01:38:26', 1),
(4754, 4730, 8, 3, 0, 'Selected For Kannan Team,CTC - 204000 Includes PF/PT Dedcutions', 50, '0000-00-00 00:00:00', 1),
(4755, 4722, 8, 5, 2, 'has 5yr exp in showroom sales, will not suite for calling and expt sal is 25k and his previous also 25k. will not suite for RM.', 50, '0000-00-00 00:00:00', 1),
(4756, 4732, 8, 5, 0, 'will not suite for calling, 7yr into data entry, not speaking up.', 50, '0000-00-00 00:00:00', 1),
(4757, 4723, 8, 3, 0, 'for suthagar team, Mct 13500, ctc 162000', 59, '2021-05-05 03:03:06', 1),
(4758, 4734, 8, 4, 0, 'check for esale, has 3 yr exp in renewal. has basic knowledge about hdfc pdt.', 50, '0000-00-00 00:00:00', 1),
(4759, 4735, 8, 5, 2, 'Will Not Handle Pressure And Will Not Suite For Sales May Be For Renewal.', 50, '0000-00-00 00:00:00', 1),
(4760, 4736, 8, 5, 2, 'will not handle pressure and will not suite for sales may be for renewal.', 50, '0000-00-00 00:00:00', 1),
(4761, 4718, 59, 5, 0, 'Sustainability doubt and the expectation is high with high Exp Pure Data Analyst looking something with the same Skills and technologies', 50, '0000-00-00 00:00:00', 1),
(4762, 4714, 59, 7, 0, 'Selected for Syed Team, with CTC - 1,74,000 included PF/PT/ESI and comes under Patroniss Staff', 57, '2021-05-05 04:22:37', 1),
(4763, 4609, 59, 7, 0, 'Selected for Dhivya Team,CTC - 1,86,000 includes PF/PT/ESI Deductions Joining Date: 06-May-2021', 29, '2021-05-05 06:04:45', 1),
(4764, 4609, 8, 3, 0, 'for RM-esale, 1,86,000 CTC and 15500 as Mctc', 59, '2021-05-05 06:26:58', 1),
(4765, 4734, 11, 1, 0, NULL, 8, '2021-05-05 06:36:32', 1),
(4766, 4730, 57, 4, 0, 'selected ', 8, '2021-05-05 06:38:15', 1),
(4767, 4727, 14, 7, 0, 'Need to check joining date and salary 10', 8, '2021-05-05 06:42:46', 1),
(4768, 4716, 59, 5, 0, 'Not open on the Service Agreement Will not sustain for a long', 7, '0000-00-00 00:00:00', 1),
(4769, 4714, 8, 3, 0, 'for syed team 1,74,000  wit esixxamp\nPf. 14500 as Mctc', 59, '2021-05-06 11:22:00', 1),
(4770, 4733, 40, 5, 2, 'Reason for rejection:\n1. Candidate didnxquott show the positive attitude\n2. He is having problem in local language\n3.Existing working exp seems irrelevant to me as per the observation.\n4. During the interview  the connection were missing completely between Interviewer and the candidate\n5. Cnadidate belongs to Odisa and he is here in HYD only for his brother occupation in future if he moved to other state he will also migrate to their\n6.Seems not flexible to work in field sales.\n7. Appearance  was not good.', 50, '0000-00-00 00:00:00', 1),
(4771, 4747, 59, 4, 0, 'Selected for IT PHP Profile', 7, '0000-00-00 00:00:00', 1),
(4772, 4743, 40, 5, 1, 'Not fit for Job', 50, '0000-00-00 00:00:00', 1),
(4773, 4753, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4774, 4750, 8, 4, 3, 'check for RE, 7m exp in kvb', 7, '0000-00-00 00:00:00', 1),
(4775, 4750, 57, 4, 0, 'candidate is ok .. kindly negotiate the salary and confirm the joining date', 8, '2021-05-06 05:05:12', 1),
(4776, 4586, 8, 5, 0, 'not turned up for next round interview', 8, '2021-05-06 06:23:39', 1),
(4777, 4747, 27, 2, 0, 'He will come tomorrow for the System Task.', 59, '2021-05-06 07:31:44', 1),
(4778, 4748, 59, 4, 0, 'Communication Good, Interested towards Digital Marketing', 7, '0000-00-00 00:00:00', 1),
(4779, 4748, 69, 5, 0, 'High Package In The Previous Company. Doubtful Of Sustainability.', 59, '2021-05-07 10:53:57', 1),
(4780, 2439, 59, 4, 0, 'Check for Tiruvallur,50/50 not much open up ', 7, '0000-00-00 00:00:00', 1),
(4781, 4749, 59, 7, 0, 'Selected For Internship - 5K Stipend  - Mern Stack, Joined on 2-Jun-2021 WFH Training', 7, '0000-00-00 00:00:00', 1),
(4782, 4754, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4783, 4761, 59, 5, 0, 'Communication Average, Less Exp in MIS but the expectation is very high', 7, '0000-00-00 00:00:00', 1),
(4784, 4630, 8, 4, 0, 'Confirm DOJ And Salary', 59, '2021-05-07 11:56:49', 1),
(4785, 2439, 8, 5, 0, 'will not suite for crm,  no clarity in speech, not speaking up.', 59, '2021-05-07 11:58:47', 1),
(4786, 4764, 59, 5, 0, 'Will not sustain for a long,Just for time being looking for a job if he finds any relevant Core job will move for that', 7, '0000-00-00 00:00:00', 1),
(4787, 4738, 18, 7, 3, 'His old CTC is 3L pa. Need to negotiate salary and can join immed.\n', 50, '0000-00-00 00:00:00', 1),
(4788, 4765, 59, 4, 0, 'Candidate ok for RM, internal reference,  Have exp in Sales', 7, '0000-00-00 00:00:00', 1),
(4789, 4690, 59, 5, 0, 'only into front end no knowledge in basic pHP and the salary Expectation in very high', 7, '0000-00-00 00:00:00', 1),
(4790, 4767, 8, 5, 0, 'will not suite for calling and our process', 7, '0000-00-00 00:00:00', 1),
(4791, 4755, 8, 5, 0, 'will not sustain and will not handle pressure. absconded from the last company.', 7, '0000-00-00 00:00:00', 1),
(4792, 4765, 71, 4, 0, 'Candidate ok for RM.', 59, '2021-05-07 03:52:04', 1),
(4793, 4765, 18, 5, 0, 'First i shorlisted but Rejected in ref check', 71, '2021-05-07 03:58:54', 1),
(4794, 4771, 8, 2, 0, 'for front office', 7, '0000-00-00 00:00:00', 1),
(4795, 4513, 59, 5, 0, 'Communication Good, Requested  time to Check For Agreement With Parents and didnt turn back', 59, '2021-05-07 04:21:02', 1),
(4796, 4191, 59, 5, 0, '50/50 On The Agreement, High Pay Expectation', 59, '2021-05-07 04:21:46', 1),
(4797, 4374, 59, 5, 0, 'Communication Is Average, Open For Any Jobs,not open for the agreement\n', 59, '2021-05-07 04:22:37', 1),
(4798, 4515, 59, 5, 0, 'Fresher, Looking For Digi Mar, Sustainability Doubt,', 59, '2021-05-07 04:26:14', 1),
(4799, 4757, 21, 4, 4, 'ok ,need to confirm gaurav sir ', 50, '0000-00-00 00:00:00', 1),
(4800, 4758, 11, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4801, 4763, 27, 2, 0, 'Interview Taken. Task Given. She will complete and let us know.', 7, '0000-00-00 00:00:00', 1),
(4802, 4352, 8, 4, 0, 'Confirm DOJ And Salary', 59, '2021-05-07 06:42:04', 1),
(4803, 4768, 59, 5, 0, 'Communication Average, Not much focused towards Work, Family running their own business. Sustainability Doubt, yet to complete his exams\n', 7, '0000-00-00 00:00:00', 1),
(4804, 4782, 59, 5, 0, 'Communication ok, Full focused on pure Data Science openings, Sustainability issue 3 yrs 3 companies and high Salary Expectations', 7, '0000-00-00 00:00:00', 1),
(4805, 4783, 8, 4, 0, 'check for RM esale, knows basics in insurance and has exp in renewal and customer support.', 7, '0000-00-00 00:00:00', 1),
(4806, 4663, 8, 5, 0, 'no response', 8, '2021-05-08 11:12:11', 1),
(4807, 4784, 40, 4, 3, 'We can consider this guys as fresher and we need to train him.\nWilling to work under contract for 2 years and having bike and laptop and staying 8 km far from office willing to work on sundays and late evening if required, 7 observation also explained, Salary as per company norms.', 50, '0000-00-00 00:00:00', 1),
(4808, 4784, 18, 7, 4, 'Selected for Veben Team. His last CTC is 2.2. max donxquott go more than 2.4L while offering the job.', 40, '2021-05-08 11:29:43', 1),
(4809, 4786, 59, 5, 0, 'Exp In MIS,Not Much With Communications Need much ok with SA', 7, '0000-00-00 00:00:00', 1),
(4810, 4783, 11, 1, 0, NULL, 8, '2021-05-08 12:08:09', 1),
(4811, 4780, 59, 5, 0, 'Not much suits for UI,not much knowledge ', 7, '0000-00-00 00:00:00', 1),
(4812, 4775, 59, 5, 0, 'Experienced, Gap In Career Expecting 21k,Sustainability doubt on this profile', 7, '0000-00-00 00:00:00', 1),
(4813, 4731, 59, 5, 0, 'Will not fit for our Digital Marketing Profile, will not sustain for a long', 7, '0000-00-00 00:00:00', 1),
(4814, 4788, 8, 5, 0, 'very slow, not speaking up and will not handle Sales pressure. ', 7, '0000-00-00 00:00:00', 1),
(4815, 4751, 59, 5, 0, 'Location too long fresher,exams yet to complete\n', 7, '0000-00-00 00:00:00', 1),
(4816, 4773, 59, 5, 0, 'Much into Data Science with the Technologies of Python and more. will not sustain for our Data Analyst position', 60, '0000-00-00 00:00:00', 1),
(4817, 4781, 59, 2, 0, 'communication Average,2+ yrs into MIS with Amazon,30 Days of notice,Salary Expectation is high,Sustainability doubt', 7, '0000-00-00 00:00:00', 1),
(4818, 4790, 59, 5, 0, 'Communication ok, Work Exp into Core Subject(Biotechnology),Too long Distance up and down 52kms and the expectation is around 17K TH', 7, '0000-00-00 00:00:00', 1),
(4819, 4791, 59, 5, 0, 'Good Communication, Sustainability  doubt need a month time post selection for the submission of Documents.Also he holds a offer with BYJuxquots for BDE with 7LPA  ans being into Sales he was not much comfortable with BYJU. His Expectation from us is around 4 LPA. Much Focus into Financial Analyst', 7, '0000-00-00 00:00:00', 1),
(4820, 4727, 53, 7, 0, 'Shortlisted fr thiruvallur location, pls cnfrm DOJ and salary', 14, '2021-05-10 12:50:05', 1),
(4821, 4729, 27, 2, 0, 'Interview taken. Task Given', 7, '0000-00-00 00:00:00', 1),
(4822, 4792, 27, 5, 0, 'dont know the basic. she will not suit for us.', 7, '0000-00-00 00:00:00', 1),
(4823, 4629, 8, 4, 0, 'Confirm DOJ And Salary', 59, '2021-05-10 07:11:38', 1),
(4824, 4763, 27, 5, 0, 'Task Not completed and no response.', 27, '2021-05-11 09:46:15', 1),
(4825, 4798, 59, 2, 0, 'Communication Ok, If Trained Will Pick Up. Open For The Service Agreement And The Expectation Is 18-20K For 1.7 Yrs Can  Give A Try For MIS', 7, '0000-00-00 00:00:00', 1),
(4826, 4800, 59, 2, 0, 'Communication Ok, Need couple of hours to give his confirmation for the Service Agreement. Open for the Same CTC 23400 Gross, Can give a try for MIS, but the location is long (Guduvanchery)', 7, '0000-00-00 00:00:00', 1),
(4827, 4799, 59, 5, 0, 'Communication Is Good, But No Local Language, Not Much Into Excel Need To Train A Lot, Open For Agreement But Not Sure Sustainability Doubts', 7, '0000-00-00 00:00:00', 1),
(4828, 4802, 59, 7, 0, 'Selected for MF, need to confirm on the joining post  relations in the lockdown', 7, '0000-00-00 00:00:00', 1),
(4829, 4801, 59, 2, 0, '50/50 communication average, Long Distance  around 20kms,Can train him for MIS, If no other profiles suits can give a try with this.2+ yrs with 12.5 Gross\n', 7, '0000-00-00 00:00:00', 1),
(4830, 4804, 27, 2, 0, 'Interview taken. task given.', 7, '0000-00-00 00:00:00', 1),
(4831, 4805, 27, 2, 0, 'RNR. I will call tomorrow.', 7, '0000-00-00 00:00:00', 1),
(4832, 4806, 27, 2, 0, 'RNR. will check again tomorrow.', 7, '0000-00-00 00:00:00', 1),
(4833, 4797, 40, 5, 2, 'Not fit for Job', 50, '0000-00-00 00:00:00', 1),
(4834, 4802, 35, 7, 0, 'Interested in sales, also have a exp in basic mF Process, Exp CTC Min 20% from last CTC Negotiate the Salary. ', 59, '2021-05-11 07:16:55', 1),
(4835, 4802, 59, 7, 0, 'Selected for MF, need to confirm on the joining post  relations in the lockdown', 59, '2021-05-11 07:16:55', 1),
(4836, 4794, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4837, 4813, 59, 5, 0, 'Communication Ok , She Around 26 Yrs, Not Sure On  The Sustainability,  Currently Working 15 Days Notice As She Is In 3rd Party Payroll', 60, '0000-00-00 00:00:00', 1),
(4838, 4816, 27, 2, 0, 'Interview taken.task given.', 7, '0000-00-00 00:00:00', 1),
(4839, 4808, 27, 2, 0, 'RNR. I will try tomorrow.\n', 7, '0000-00-00 00:00:00', 1),
(4840, 4814, 40, 4, 3, 'Having exp in field sales But yet to check his Exp analyze and Salary part.', 50, '0000-00-00 00:00:00', 1),
(4841, 4814, 18, 7, 4, 'Selected for Veben team. His last CTC is 2.52... Confirm the Last CTDC\n and negotiate salary accordingly.', 40, '2021-05-12 03:40:01', 1),
(4842, 4807, 40, 5, 3, 'Not a sustainer and not fit for our profile.', 50, '0000-00-00 00:00:00', 1),
(4843, 4809, 40, 8, 0, 'Not attended', 50, '0000-00-00 00:00:00', 1),
(4844, 4810, 40, 5, 2, 'Not fit for our Profile', 50, '0000-00-00 00:00:00', 1),
(4845, 4815, 40, 8, 0, 'Not attended the interview', 50, '0000-00-00 00:00:00', 1),
(4846, 4805, 27, 2, 0, 'Interview taken. Task Given', 27, '2021-05-12 07:48:28', 1),
(4847, 4730, 19, 7, 4, 'fit for sales', 57, '2021-05-13 12:42:17', 1),
(4848, 4750, 59, 5, 0, 'Profile kept on hold during this pandemic and dropped post the completion of Lockdown', 57, '2021-05-13 12:43:43', 1),
(4849, 4823, 40, 4, 4, 'He may fit for our profile xxamp Salary part we need to discuss and We should check his Sustainability part properly once again. He is ok with company Norms and can able to join immediately.', 50, '0000-00-00 00:00:00', 1),
(4850, 4770, 40, 8, 0, 'Not attended the interview', 50, '0000-00-00 00:00:00', 1),
(4851, 4823, 18, 7, 4, 'Selected on thursday with immed joining. Expected package is 3.25l Pa', 40, '2021-05-13 01:04:26', 1),
(4852, 4824, 59, 5, 0, 'Fresher for this Role,Not much knowledge in Excel, will not sustain for a long. Max for a year only and the Expectation is High', 60, '0000-00-00 00:00:00', 1),
(4853, 4818, 64, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4854, 4827, 59, 5, 0, 'Communication ok, Sustainability Doubt not open for SA, No Excel knowledge', 60, '0000-00-00 00:00:00', 1),
(4855, 4730, 59, 7, 0, 'Selected for Kannan Team,CTC - 204000 includes PF/PT Dedcutions', 19, '2021-05-13 02:03:30', 1),
(4856, 4826, 59, 2, 0, 'Communication Ok, Career Gap Expecting 22K, She s ok for SA,but not sure on  her sustainability. Hold her \nProfile,let see if there is o other profiles\n', 60, '0000-00-00 00:00:00', 1),
(4857, 4730, 8, 3, 0, 'Selected For Kannan Team,CTC - 204000 Includes PF/PT Dedcutions', 59, '2021-05-13 02:50:27', 1),
(4858, 4831, 59, 5, 0, 'Communication Good ,Will not sustain more than a year,Much focus on pure Analyst role\n', 7, '0000-00-00 00:00:00', 1),
(4859, 4834, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4860, 4832, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4861, 4822, 59, 5, 0, 'Communication Average, Pressure Handling Doubt, Need To Check With Family On SA ,but didnt turn', 60, '0000-00-00 00:00:00', 1),
(4862, 4781, 59, 5, 0, 'Communication Average,2+ Yrs Into MIS With Amazon,30 Days Of Notice, Salary Expectation Is High, Sustainability Doubt', 59, '2021-05-13 03:28:10', 1),
(4863, 4800, 59, 5, 0, 'Communication Ok, Service Agreement. Open For The Same CTC 23400 Gross, Can Give A Try For MIS, But The Location Is Long (Guduvanchery)', 59, '2021-05-13 03:29:20', 1),
(4864, 4798, 59, 5, 0, 'Communication Ok, If Trained Will Pick Up. Open For The Service Agreement And The Expectation Is 18-20K For 1.7 Yrs Can  Give A Try For MIS. Interviewed over Zoom by Gokul, No knowledge in Excel,Not suits for the salary Expectation', 59, '2021-05-13 03:31:03', 1),
(4865, 4821, 64, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4866, 4825, 59, 5, 0, 'Communication ok, will not sustain for a long.Not much comfortable with the SA', 60, '0000-00-00 00:00:00', 1),
(4867, 4842, 40, 5, 3, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4868, 4837, 40, 8, 0, 'Not attended the interview', 50, '0000-00-00 00:00:00', 1),
(4869, 4844, 40, 5, 3, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4870, 4846, 40, 4, 4, 'Good in sales. He may fit for our profile. Yet to discuss with him about 7 days Observation period and salary hold process.', 50, '0000-00-00 00:00:00', 1),
(4871, 4840, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4872, 4860, 13, 2, 2, 'THREE ROUNDS COMPLETED GOOD IN \nINTRACTION PEN SALES IN INERVIEW,GOOD \nFAMILY BACKGROUND GOOD ONLY\n\nBUT NOT SUITE FOR WFH\n', 8, '2021-05-15 10:15:12', 1),
(4873, 4853, 40, 8, 0, 'Not attended the interview', 50, '0000-00-00 00:00:00', 1),
(4874, 4854, 40, 4, 4, 'Physically not fit but having proper knowledge in sales and marketing he may fit for our profile.', 50, '0000-00-00 00:00:00', 1),
(4875, 4855, 40, 8, 0, 'Not attended the interview', 50, '0000-00-00 00:00:00', 1),
(4876, 4858, 40, 5, 2, 'Not fit for our profile and he was waiting for govt Job for the last 4 years.', 50, '0000-00-00 00:00:00', 1),
(4877, 4804, 27, 5, 0, 'Task not good for 2.4 years experienced. This code look like a fresher.', 27, '2021-05-15 10:34:35', 1),
(4878, 4835, 59, 5, 0, 'Not responding to the calls', 7, '0000-00-00 00:00:00', 1),
(4879, 4836, 59, 5, 0, 'Communication ok, Focus much into IT Technical Skill, Sustainability Doubt', 7, '0000-00-00 00:00:00', 1),
(4880, 4856, 59, 5, 0, 'Communication OK Fresher With M.Sc Statistics, Need To Check Her Written Communication,but sustainability doubts on this profile\n', 7, '0000-00-00 00:00:00', 1),
(4881, 4845, 59, 5, 0, 'Communication Average,Looks much for Android opening,will not fit for DA/MIS Role\n', 7, '0000-00-00 00:00:00', 1),
(4882, 4864, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000  Gross - 10k TH-9.5K', 7, '0000-00-00 00:00:00', 1),
(4883, 4846, 18, 5, 0, 'Candidate not interested in insurance field\n', 40, '2021-05-15 12:06:26', 1),
(4884, 4802, 59, 7, 0, 'Selected for MF, need to confirm on the joining post  relations in the lockdown', 35, '2021-05-15 12:20:05', 1),
(4885, 4850, 59, 5, 0, 'Communication No, Looking only for WFH and to not open for the location up and down 40 kms', 60, '0000-00-00 00:00:00', 1),
(4886, 4852, 59, 5, 0, 'Communication ok, Will not sustain for a long, TCS Offered 4.5 LPA and looking only for Week off Job', 60, '0000-00-00 00:00:00', 1),
(4887, 4857, 59, 5, 0, 'Communication Ok, Focused much into Data Science, and The Expected Salary is 3.2-3.5 LPA for 1+ yrs Exp', 60, '0000-00-00 00:00:00', 1),
(4888, 4854, 18, 4, 3, 'Not 100% convinced so asked gaurav to take another round', 40, '2021-05-15 02:23:40', 1),
(4889, 4873, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000  Gross - 10k TH-9.5K', 7, '0000-00-00 00:00:00', 1),
(4890, 4875, 8, 4, 0, 'fresher, expt 10-12k, she is from readhills long distance and she will get back within today EOD.', 7, '0000-00-00 00:00:00', 1),
(4891, 4865, 59, 5, 0, 'Lcoation too Long,No clear focus on the career.Will not sustain for a long', 7, '0000-00-00 00:00:00', 1),
(4892, 4874, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4893, 4880, 59, 5, 0, 'Not suits for our Role, Focus into IT Database Management,Withour clear info about  the profile she applied for the opening', 7, '0000-00-00 00:00:00', 1),
(4894, 4875, 53, 7, 0, 'Selected For Thiruvallur Location 10k Ctc DOJ 10 Jun 21 Pls Cnfrm', 8, '2021-05-17 10:35:39', 1),
(4895, 4862, 13, 7, 3, 'THREE ROUNDS COMPLETED FATHER IN \nFOREIGN DRIVER INCOME 30 K MONTHLY\nANT SOLUTION HERBAL PRODUCT SALES experienced\ngood piching and conveniencing skills ', 8, '2021-05-17 10:36:29', 1),
(4896, 4861, 13, 2, 2, 'ALL THREE ROUNDS COMPLETED 6 MONTHS\nEXPERIENCE IN LAKSHMI FORD,FATHER CRC \nCONDUCTOR,2 SISTER,1 BROTHER,\nFAMILY IS VERY POOR CONDITION AND NO NETWORK FACILITY', 8, '2021-05-17 10:37:11', 1),
(4897, 4864, 13, 7, 2, 'THREE ROUNDS COMPLETED FATHER FARMER\nOWN HOUSE ,SISTER,BROTHER,EXPERIENCE IN\nDARLING TVS,PLAN TO BUY A HOUSE AND CAR\nlots of experience performing good only', 8, '2021-05-17 10:37:46', 1),
(4898, 4873, 13, 7, 2, 'THREE ROUNDS COMPLETED EXPERIENCE\nIN SUPER MARKET ACCOUNTS AND HANDLING\nFATHER JOBLESS NOW,SISTER NURSE,1 YEAR \nBOND BECAUSE OF NETWORKING FIELD INTRESTED\n', 8, '2021-05-17 10:41:13', 1),
(4899, 4868, 40, 4, 3, 'Selected. But Ixquotm not convinced 100% since he is new to this industry and having zero experience in sales. He is not having a laptop but he said he will arrange it in 10-15days', 50, '0000-00-00 00:00:00', 1),
(4900, 4867, 40, 4, 3, 'Please check his potential and give the joining date.', 50, '0000-00-00 00:00:00', 1),
(4901, 4870, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4902, 4871, 40, 5, 1, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4903, 4872, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4904, 4868, 18, 8, 0, 'Not attended', 40, '2021-05-17 01:07:21', 1),
(4905, 4866, 59, 5, 0, 'Communication ok ,SA need to check with Husband not sure about her sustainability', 60, '0000-00-00 00:00:00', 1),
(4906, 4869, 59, 5, 0, 'Communication Average,Got another offer and not open for F2F', 60, '0000-00-00 00:00:00', 1),
(4907, 4867, 18, 4, 4, 'Selected for hyderabad. Need to negotiate for minimum increment. Need 10 days notice perion and selcted for veben team\n', 40, '2021-05-17 04:09:42', 1),
(4908, 4877, 27, 5, 0, 'Attitude is not good. she doesxquott know basics.', 7, '0000-00-00 00:00:00', 1),
(4909, 4867, 59, 5, 0, 'Selected for VEben, Discussed on the Salary and shared the breakup for the confirmation from the candidate,But he didnt turn and RNR', 18, '2021-05-17 06:18:20', 1),
(4910, 4854, 29, 1, 0, NULL, 18, '2021-05-17 10:49:30', 1),
(4911, 4814, 59, 7, 0, 'Selected for Veben,CTC - 288000 includes PF/PT', 18, '2021-05-17 10:54:16', 1),
(4912, 4784, 59, 7, 0, 'Selected For Veben, CTC - 2.35 LPA Includes PF/PT ', 18, '2021-05-17 10:58:52', 1),
(4913, 4808, 27, 2, 0, 'Interview taken. task given.', 27, '2021-05-18 10:26:02', 1),
(4914, 4805, 27, 2, 0, 'task has to be given saturday.', 27, '2021-05-18 10:26:36', 1),
(4915, 4816, 27, 5, 0, 'task not completed. no response', 27, '2021-05-18 10:27:36', 1),
(4916, 4747, 27, 5, 0, 'no response.', 27, '2021-05-18 10:28:17', 1),
(4917, 4729, 27, 5, 0, 'task not completed.', 27, '2021-05-18 10:28:35', 1),
(4918, 4883, 59, 5, 0, 'Communication Ok,Sustainability Doubts and handling the pressure doubts on this profile,fresher profile', 7, '0000-00-00 00:00:00', 1),
(4919, 4890, 59, 5, 0, 'Not open for Insurance Sales', 60, '0000-00-00 00:00:00', 1),
(4920, 4889, 59, 4, 0, '50/50  no relevant Exp but into sales, sustainability doubt needs to have 1 yr Service Agreement. Bike is there, laptop also', 60, '0000-00-00 00:00:00', 1),
(4921, 4887, 18, 4, 4, 'Didnt complete fully. Veben need to cross check and I will take another round', 50, '0000-00-00 00:00:00', 1),
(4922, 4891, 59, 4, 0, 'Communication Average,50/50 for our profile. In Feb 2021 he joined a company related to bulk SMS sales but not comfortable with that. He is open for the same package(15K Gross). The bike is there, Laptop he has but not in working condition needs some time to prepare', 60, '0000-00-00 00:00:00', 1),
(4923, 4892, 59, 5, 0, 'His overall 5+ Experience in the Construction domain and attended few interviews in the same construction domain, for time being he looks for other domains. His last drawn package was 33K gross. Sustainability doubt on this profile. No Laptop Bike is there almost 17 kms from his location', 60, '0000-00-00 00:00:00', 1),
(4924, 4891, 40, 5, 2, 'Not fit for our profile', 59, '2021-05-18 12:48:11', 1),
(4925, 4889, 40, 5, 3, 'Not fit for our profile', 59, '2021-05-18 12:49:03', 1),
(4926, 4894, 59, 5, 0, 'Communication ok ,from mogappair but not sure  on her sustainability', 60, '0000-00-00 00:00:00', 1),
(4927, 4882, 41, 5, 0, 'interviewed by Gokul \ncandidate not good in excel\nhaving 4 year exp and expected salary is a also high\ngood communication', 50, '0000-00-00 00:00:00', 1),
(4928, 4888, 18, 8, 0, 'Old lead need to verfiy', 50, '0000-00-00 00:00:00', 1),
(4929, 4881, 27, 2, 0, 'reschedulled 22nd MAY 2021', 7, '0000-00-00 00:00:00', 1),
(4930, 4884, 27, 5, 0, 'Profile will not suitable for us.', 7, '0000-00-00 00:00:00', 1),
(4931, 4886, 27, 2, 0, 'Reschedulled today.', 7, '0000-00-00 00:00:00', 1),
(4932, 4899, 27, 2, 0, 'Interview taken. task given. ', 7, '0000-00-00 00:00:00', 1),
(4933, 4900, 27, 2, 0, 'Interview taken. Task has to be given.', 7, '0000-00-00 00:00:00', 1),
(4934, 4902, 27, 5, 0, 'She is looking for work from home only.', 7, '0000-00-00 00:00:00', 1),
(4935, 4738, 8, 4, 0, 'Check And Revert', 18, '2021-05-18 05:12:55', 1),
(4936, 4823, 59, 7, 0, 'Selected for Veben, Hyderabad Location\nCTC - 312000 included PF/PT deductions. Post Lockdown Joining date will be confirmed', 18, '2021-05-18 05:17:29', 1),
(4937, 4887, 40, 5, 3, 'Not fit for our profile', 18, '2021-05-18 05:19:34', 1),
(4938, 4619, 59, 7, 0, 'Selected for Santhosh Team, CTC has been confirmed by Sriram Sir itself. Committed CTC is 3.96 LPA includes PF/PT', 18, '2021-05-18 05:25:48', 1),
(4939, 4906, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4940, 4916, 8, 5, 0, '6m in JD and now in native, expt is 14-15k. basically from mumbai settled in thiruvannamalai. father running a hotel, driver in Dubai. too much attitude.', 7, '0000-00-00 00:00:00', 1),
(4941, 4917, 8, 5, 0, 'will not suite for calling, very native lang. will not suite for sales profie.', 7, '0000-00-00 00:00:00', 1),
(4942, 4919, 8, 5, 0, 'has 1.5yr exp in qc, will not suite for sales, expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(4943, 4918, 8, 5, 0, 'bba in airlines and 2yr training in chennai airport, not speaking up, from madurai sty in pallavaram.', 7, '0000-00-00 00:00:00', 1),
(4944, 4921, 8, 5, 0, 'done her bba ntr. worked in same fielf for past 1.5yr, planning to do her higher study and felt over pressure so reliver from the job 16k, will not sustain and expt is 15-17k.', 7, '0000-00-00 00:00:00', 1),
(4945, 4913, 59, 5, 0, 'Communication  Average, Will not sustain in our domain and his focus into FMCG only', 60, '0000-00-00 00:00:00', 1),
(4946, 4912, 59, 5, 0, 'Communication Average, Not open for the SA and she is very clear on the sustainability long stay', 60, '0000-00-00 00:00:00', 1),
(4947, 4808, 27, 5, 0, 'Task not completed.', 27, '2021-05-20 09:27:04', 1),
(4948, 4806, 27, 5, 0, 'Not completed the task. rejected by dhineshraj.', 27, '2021-05-20 10:47:11', 1),
(4949, 4926, 59, 5, 0, 'No Communication, He is into Quality Check  no Excel knowledge. Sustainability  doubt  for our role', 7, '0000-00-00 00:00:00', 1),
(4950, 4904, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4951, 4935, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4952, 4823, 72, 1, 0, NULL, 59, '2021-05-20 05:06:28', 1),
(4953, 4814, 72, 1, 0, NULL, 59, '2021-05-20 05:16:32', 1),
(4954, 4774, 40, 7, 0, 'Mapped to Sriram and already shortlisted candidate', 50, '0000-00-00 00:00:00', 1),
(4955, 4928, 18, 4, 3, 'Fresher but last 1 year did not work after completing MBA can try', 50, '0000-00-00 00:00:00', 1),
(4956, 4932, 59, 4, 0, 'Having 1 yr of Sales Experience in Club Mahindra, communication is good, Bike is there but no Laptop. Sustainability Doubt 2yrs 2 companies. Current CTC 2.5 LPA', 60, '0000-00-00 00:00:00', 1),
(4957, 4925, 59, 5, 0, 'No Communication, not much suits for our position, already he got an offer and not interested being the same into sales', 60, '0000-00-00 00:00:00', 1),
(4958, 4929, 59, 5, 0, 'No Communication Fresher Profile, will not suit our role.No idea on our domain. Already got an offer for 17Gross and looks for something more.will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(4959, 4930, 59, 5, 0, 'No response to the calls', 60, '0000-00-00 00:00:00', 1),
(4960, 4932, 40, 4, 4, 'Communication was good, having exp in inbound sales and intersted in field sales very much,Last take home was 2.4lac expectation as per company norms.', 59, '2021-05-21 10:36:45', 1),
(4961, 4801, 59, 5, 0, '50/50 Communication Average, Long Distance  Around 20kms,Sustainability doubt 12.5 Gross', 59, '2021-05-21 11:13:11', 1),
(4962, 4774, 18, 7, 4, 'Spoken 2,75L CTC overall Can join Immed', 40, '2021-05-21 11:54:10', 1),
(4963, 4938, 59, 4, 0, '50/50 Fresher Profile, Focusing on the Marketing Profile, Can check for our role. The bike is there, Laptop can  be arranged', 60, '0000-00-00 00:00:00', 1),
(4964, 4945, 59, 5, 0, 'Open for CRM Position only, Distance around 18Kms sustainability doubt and Expectation is high', 60, '0000-00-00 00:00:00', 1),
(4965, 4895, 27, 2, 0, 'He wants to reschedule on 26-05-2021', 7, '0000-00-00 00:00:00', 1),
(4966, 4949, 59, 5, 0, '3yrs 3 companies with a different domain. Will not handle the pressure and sustainability doubt for our role.', 60, '0000-00-00 00:00:00', 1),
(4967, 4936, 59, 5, 0, 'Communication Good, Holding an offer with Vedantu for 3.5 LPA and looking for some more.Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(4968, 4932, 18, 7, 4, 'Shortlisted foy Hyd. Salary is 2.75L pa Immed Joining', 40, '2021-05-21 01:44:31', 1),
(4969, 4938, 40, 4, 3, 'Having a bike and can able to arrange a laptop and immediately can join. Fresher and expectation is 18-20k Take home salary. Please check his Sustainability and background. ', 59, '2021-05-21 02:03:37', 1),
(4970, 4937, 59, 5, 0, 'Not open for Insurance Sales', 60, '0000-00-00 00:00:00', 1),
(4971, 4784, 59, 7, 0, 'Selected For Veben, CTC - 2.35 LPA Includes PF/PT ', 59, '2021-05-21 03:02:26', 1),
(4972, 4784, 72, 1, 0, NULL, 59, '2021-05-21 03:59:50', 1),
(4973, 4933, 27, 2, 0, 'Interview taken. task has to be given.', 7, '0000-00-00 00:00:00', 1),
(4974, 4928, 40, 7, 3, 'selected. Salary expectation is 2.5lac CTC and having a laptop and bike can join Immediately. please negotiate salary part and check his background too. ', 18, '2021-05-21 05:22:17', 1),
(4975, 4938, 18, 5, 0, 'He is having  fits and also he will not sustain and average sales guy', 40, '2021-05-22 12:44:49', 1),
(4976, 4928, 59, 7, 0, 'Selected for Veben Team with CTC - 2.5 LPA includes PF/PT', 40, '2021-05-22 12:47:47', 1),
(4977, 4847, 27, 5, 0, 'He Already Got Job.', 27, '2021-05-22 04:07:24', 1),
(4978, 4774, 8, 3, 0, 'For veben team hyderabad. 2.75L ctc, 22917 MCTC and 19316.6 as net. with pf/PT\n\n', 18, '2021-05-23 08:01:51', 1),
(4979, 4932, 8, 3, 0, 'For Veben Team Hyderabad. 2.75L Ctc, 22917 MCTC And 19316.6 As Net. With Pf/PT', 18, '2021-05-23 09:15:19', 1),
(4980, 4952, 59, 7, 0, 'Selected for React Intern, - 3 months Stipend Rs3500 per month post intern will confirm the salary - 3 yrs service Agreement,will come and join once receive the original documents from College', 7, '0000-00-00 00:00:00', 1),
(4981, 4907, 27, 5, 0, 'She is not interested.', 27, '2021-05-25 06:36:01', 1),
(4982, 4805, 27, 5, 0, 'no sustainability.', 27, '2021-05-25 06:38:40', 1),
(4983, 4885, 27, 2, 0, 'RNR', 27, '2021-05-26 10:35:07', 1),
(4984, 4881, 27, 2, 0, 'He Wants To Reschedule On 26-05-2021', 27, '2021-05-26 10:36:38', 1),
(4985, 4948, 27, 2, 0, 'Interview taken. task given.', 1, '0000-00-00 00:00:00', 1),
(4986, 4967, 40, 5, 3, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4987, 4968, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4988, 4969, 40, 7, 4, 'Candidate selected', 50, '0000-00-00 00:00:00', 1),
(4989, 4970, 41, 5, 0, 'analytical weak,Communication average, and no excel knowledge', 50, '0000-00-00 00:00:00', 1),
(4990, 4963, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4991, 4962, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4992, 4954, 59, 7, 0, 'Intern for 5 months(1 month Internship - No Payment and for remaning months 3.5 Stipend,post intern 3yrs agreement also salary wil be confirmed', 7, '0000-00-00 00:00:00', 1),
(4993, 4974, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4994, 4947, 69, 5, 0, 'Candidate having own business', 7, '0000-00-00 00:00:00', 1),
(4995, 4964, 27, 2, 0, 'Interview taken. Task Given.', 7, '0000-00-00 00:00:00', 1),
(4996, 4973, 41, 5, 0, 'Not interested in MIS role', 50, '0000-00-00 00:00:00', 1),
(4997, 4972, 41, 4, 0, 'Check this profile for MIS ', 50, '0000-00-00 00:00:00', 1),
(4998, 4972, 72, 1, 0, NULL, 41, '2021-05-26 05:51:59', 1),
(4999, 4895, 27, 2, 0, 'Intervirew taken. task given.', 27, '2021-05-26 05:55:40', 1),
(5000, 4885, 27, 2, 0, 'RNR', 27, '2021-05-26 07:03:30', 1),
(5001, 4881, 27, 2, 0, 'RNR', 27, '2021-05-26 07:03:45', 1),
(5002, 4975, 40, 5, 3, 'Not fit', 50, '0000-00-00 00:00:00', 1),
(5003, 4977, 40, 5, 2, 'Not fit', 50, '0000-00-00 00:00:00', 1),
(5004, 4978, 40, 4, 3, 'Selected for next round but please ensure his abilities once again ', 50, '0000-00-00 00:00:00', 1),
(5005, 4979, 40, 5, 3, 'not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(5006, 4839, 27, 5, 0, 'no response. task not completed.', 27, '2021-05-27 03:16:32', 1),
(5007, 4988, 27, 2, 0, 'Interview taken. task given.', 7, '0000-00-00 00:00:00', 1),
(5008, 4990, 27, 2, 0, 'She is learning now. she will come back after 1 month.', 7, '0000-00-00 00:00:00', 1),
(5009, 4991, 27, 2, 0, 'Interivew taken. he had experience in asp.net. fresher for php. Task Given.', 7, '0000-00-00 00:00:00', 1),
(5010, 4965, 27, 5, 0, 'Task not completed', 27, '2021-05-27 06:54:13', 1),
(5011, 4993, 8, 4, 4, 'good in communication and convincing, done few courses related to IT, interested in sales and marketing but expt sal is 5L (nego). told him to share his last org. payslips to cross-check.', 50, '0000-00-00 00:00:00', 1),
(5012, 4995, 8, 2, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(5013, 4996, 8, 5, 0, 'Fresher for sales, little bit slow and no sustainability and expt is 16k. avg communication and convincing. Will not suite for RM.', 50, '0000-00-00 00:00:00', 1),
(5014, 4998, 8, 5, 3, 'Fresher, he is from Bihar and very native language and avg communication. doesnxquott have 2 wheeler and expt is 18k. will not suite for RM.', 50, '0000-00-00 00:00:00', 1),
(5015, 4999, 8, 2, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(5016, 4878, 27, 5, 0, 'could not complete the task.', 27, '2021-05-28 12:09:35', 1),
(5017, 4994, 27, 5, 0, 'not good in technical.', 7, '0000-00-00 00:00:00', 1),
(5018, 5000, 27, 2, 0, 'Interview taken. task given', 7, '0000-00-00 00:00:00', 1),
(5019, 5009, 27, 2, 0, 'RNR.', 7, '0000-00-00 00:00:00', 1),
(5020, 4881, 27, 5, 0, 'tried too many times. no response from him. ', 27, '2021-05-28 05:50:12', 1),
(5021, 4885, 27, 5, 0, 'Tried too many times. no response.', 27, '2021-05-28 06:15:26', 1),
(5022, 4896, 27, 2, 0, 'Interview taken. task has to be given 29th may evening', 27, '2021-05-28 07:20:43', 1),
(5023, 5004, 27, 2, 0, 'Interview taken. task given.', 7, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(5024, 5005, 27, 2, 0, 'interview taken. task has to be given.', 7, '0000-00-00 00:00:00', 1),
(5025, 5008, 27, 5, 0, 'Not good in basic.', 7, '0000-00-00 00:00:00', 1),
(5026, 5015, 27, 2, 0, 'No response.', 7, '0000-00-00 00:00:00', 1),
(5027, 5019, 27, 2, 0, 'Task has to be given.', 7, '0000-00-00 00:00:00', 1),
(5028, 5022, 27, 2, 0, 'Intrerview taken. Task Given.', 7, '0000-00-00 00:00:00', 1),
(5029, 5023, 27, 2, 0, 'Interview taken. Task Given.', 7, '0000-00-00 00:00:00', 1),
(5030, 4948, 27, 5, 0, 'Someone did his task.', 27, '2021-05-31 03:57:45', 1),
(5031, 4923, 60, 1, 0, NULL, 27, '2021-05-31 03:58:50', 1),
(5032, 4923, 27, 7, 0, 'selected. we can take it as a fresher. same terms applicable.', 27, '2021-05-31 03:58:50', 1),
(5033, 5009, 27, 5, 0, 'not good in basic.', 27, '2021-05-31 04:51:13', 1),
(5034, 4988, 27, 5, 0, 'Task not completed.', 27, '2021-05-31 06:08:26', 1),
(5035, 1647, 27, 2, 0, 'Inrterview taken. task given.', 27, '2021-05-31 06:12:18', 1),
(5036, 5018, 8, 2, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(5037, 5020, 8, 2, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(5038, 5021, 8, 4, 3, 'fresher for insurance sales, avg communication and has 3.5yr exp in sales. he was plannig to do his higher study so relived from the job, now he dropped his plan and looking for a job in sales, last TH is 30k and he is expt is 35k.', 50, '0000-00-00 00:00:00', 1),
(5039, 5015, 27, 5, 0, 'No Proper Reaponse.', 27, '2021-06-01 10:56:30', 1),
(5040, 5024, 8, 2, 0, 'rescheduled', 50, '0000-00-00 00:00:00', 1),
(5041, 5027, 8, 4, 0, 'Akshitha is fresher for calling, avg communication and has 6m exp in back end job like KYC.was getting 15k and now expecting 13k as th.', 50, '0000-00-00 00:00:00', 1),
(5042, 5005, 27, 5, 0, 'Task not completed. She is download from google and shared  with us.', 27, '2021-06-01 11:58:14', 1),
(5043, 5003, 27, 2, 0, 'Interview taken. task has to be given.\n', 7, '0000-00-00 00:00:00', 1),
(5044, 5029, 27, 2, 0, 'reschedulled on 01JAN2021', 7, '0000-00-00 00:00:00', 1),
(5045, 5028, 27, 5, 0, 'Not Good in  basics.', 7, '0000-00-00 00:00:00', 1),
(5046, 5030, 27, 5, 0, 'Not good in basics', 7, '0000-00-00 00:00:00', 1),
(5047, 4928, 60, 1, 0, NULL, 59, '2021-06-01 03:52:29', 1),
(5048, 4969, 59, 7, 0, 'Selected for Veben Team with CTC - 3.45 includes PF/PT', 40, '2021-06-01 04:05:28', 1),
(5049, 4978, 18, 8, 0, 'He is not well and told that he will get back after 2 days', 40, '2021-06-01 04:39:50', 1),
(5050, 4969, 60, 1, 0, NULL, 59, '2021-06-01 04:46:21', 1),
(5051, 5027, 40, 4, 0, 'Selected but need to update about training period salary part!\nHaving 6 months of exp as telecaller. but sustainablity seems bit doubtful', 8, '2021-06-01 05:33:27', 1),
(5052, 5027, 18, 7, 0, 'Selected as CRM for Hyderabad. CTS 1.5L is spoken and immed joiner', 40, '2021-06-01 05:39:42', 1),
(5053, 5021, 40, 5, 2, 'Not fit for our profile', 8, '2021-06-01 05:41:45', 1),
(5054, 4933, 60, 1, 0, NULL, 27, '2021-06-01 05:44:18', 1),
(5055, 4933, 27, 7, 0, 'Task Completed. Potential Candidate. we can offer 8k take home. She need to lead his family.', 27, '2021-06-01 05:44:18', 1),
(5056, 4993, 40, 8, 0, 'Didnxquott attend the interview', 8, '2021-06-01 05:45:03', 1),
(5057, 4991, 27, 5, 0, 'Only 30% of task completed.', 27, '2021-06-01 05:47:55', 1),
(5058, 5044, 13, 7, 3, 'THREE ROUNDS COMPLETED, RM IN MUTUAL \nFUND,GOOD EXPOSURE,1 YEEAR BOND \nACCEPTED BECAUSE OF GOING TO FOREIGHN.\nALREADY EXPERIENCED IN MUTUAL FUNDS SO GOOD ONLY\n', 8, '2021-06-01 07:40:45', 1),
(5059, 4803, 59, 7, 0, 'Selected For Thanjavur With CTC - 120000 Gross - 10k TH-9.5K', 13, '2021-06-01 07:44:04', 1),
(5060, 4862, 59, 7, 0, 'Selected for Thanjavur with CTC - 120000 Gross - 10k TH-9.5K', 13, '2021-06-01 07:46:34', 1),
(5061, 4864, 59, 7, 0, 'Selected For Thanjavur With CTC - 120000 Gross - 10k TH-9.5K', 13, '2021-06-01 07:48:50', 1),
(5062, 4873, 59, 7, 0, 'Selected For Thanjavur With CTC - 120000 Gross - 10k TH-9.5K', 13, '2021-06-01 07:53:10', 1),
(5063, 5044, 59, 7, 0, 'Selected For Thanjavur With CTC - 120000 Gross - 10k TH-9.5K', 13, '2021-06-01 07:55:10', 1),
(5064, 4862, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000  Gross - 10k TH-9.5K', 59, '2021-06-01 08:47:31', 1),
(5065, 4864, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000  Gross - 10k TH-9.5K', 59, '2021-06-01 08:48:04', 1),
(5066, 4873, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000  Gross - 10k TH-9.5K', 59, '2021-06-01 08:48:50', 1),
(5067, 5044, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000  Gross - 10k TH-9.5K', 59, '2021-06-01 08:50:19', 1),
(5068, 4803, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000  Gross - 10k TH-9.5K', 59, '2021-06-01 08:52:41', 1),
(5069, 5025, 59, 5, 0, 'Not open for Insurance Sales Domain', 60, '0000-00-00 00:00:00', 1),
(5070, 5026, 59, 5, 0, 'Focus only on the service based opening not into sales domain', 60, '0000-00-00 00:00:00', 1),
(5071, 5033, 59, 4, 0, 'Have exp in Semi voice process, can relocate to jubilee hills.1-year career gap he has. The laptop is there.Can give a try a CRM.', 50, '0000-00-00 00:00:00', 1),
(5072, 5038, 59, 5, 0, 'Very high CTC expectation, her current CTC itself 25k TH and she attended around 15 interview.Location constraint up and down 48kms.Sustainability doubt', 50, '0000-00-00 00:00:00', 1),
(5073, 5039, 59, 5, 0, 'Have 6+ yrs experience. sustainability doubt she may get marry in-between age around 27yrs.Notice 30 Days with the current company. Communication Average. She needs time to check with parents on the agreement/Document Submission', 50, '0000-00-00 00:00:00', 1),
(5074, 5041, 59, 5, 0, 'Currently working with Byjuxquots and native of west bengal no local language.Notice Period will be around 30 days but she s not clear on the notice nd she says around 15 days. Expectation little high and sustainability with our domain is doubtful', 50, '0000-00-00 00:00:00', 1),
(5075, 4895, 27, 5, 0, 'Task not completed. His task look like fresher task. we can consider this candidate as a fresher only..', 27, '2021-06-02 10:45:36', 1),
(5076, 5034, 27, 2, 0, 'Interview taken. Task has to be given.', 7, '0000-00-00 00:00:00', 1),
(5077, 5035, 27, 5, 0, 'No Response.', 7, '0000-00-00 00:00:00', 1),
(5078, 5036, 27, 5, 0, 'Not Good in basics.', 7, '0000-00-00 00:00:00', 1),
(5079, 5037, 27, 2, 0, 'RNR.', 7, '0000-00-00 00:00:00', 1),
(5080, 5040, 27, 2, 0, 'Interview Taken. Task Given. Will Submit Tomorrow EOD', 7, '0000-00-00 00:00:00', 1),
(5081, 5042, 27, 2, 0, 'Interview taken. task given.', 7, '0000-00-00 00:00:00', 1),
(5082, 5043, 27, 5, 0, 'Not good in technical. rejected by latha.', 7, '0000-00-00 00:00:00', 1),
(5083, 5033, 40, 4, 0, 'Selected and Take home expected between 10-11k per month. Laptop having and ready to relocate to Proper hyderabad currently staying in Kaamam. Interested and also applied for Govt Job too.', 59, '2021-06-02 05:38:41', 1),
(5084, 4749, 60, 1, 0, NULL, 59, '2021-06-02 06:08:29', 1),
(5085, 5033, 18, 5, 0, 'we holded him for better option but he messaged that he joined a diffrent voice non sales procedd', 40, '2021-06-03 11:25:16', 1),
(5086, 4896, 27, 5, 0, 'task not completed.', 27, '2021-06-03 02:27:15', 1),
(5087, 5000, 27, 5, 0, 'task not completed.', 27, '2021-06-03 02:27:38', 1),
(5088, 5034, 27, 2, 0, 'Task Given.', 27, '2021-06-03 02:29:45', 1),
(5089, 5050, 27, 2, 0, 'Interview taken. task given. will submit tomorrow EOD', 7, '0000-00-00 00:00:00', 1),
(5090, 5051, 27, 2, 0, 'Interview Taken. Task Given. Will Submit Tomorrow EOD', 7, '0000-00-00 00:00:00', 1),
(5091, 5046, 59, 4, 0, 'Can check for CRM 50/50 Fresher Profile not yet completed the exams, have interest in voice process.', 60, '0000-00-00 00:00:00', 1),
(5092, 5047, 59, 4, 0, 'check for CRM, Communication ok, Having Bike and Laptop. Have Exp in voice process and open for sales voice process.', 60, '0000-00-00 00:00:00', 1),
(5093, 5046, 40, 5, 0, 'Not fit for the profile', 59, '2021-06-03 05:06:18', 1),
(5094, 5047, 40, 4, 0, 'Selected but he is not having a Laptop. Sustainability also bit doubtful, Let him have a final round and let Sriram decide.', 59, '2021-06-03 05:07:07', 1),
(5095, 5027, 59, 7, 0, 'Selected as CRM for Veben Hyderabad with CTC 1.5LPA not open for PF/PF so processed with 5% deductions', 18, '2021-06-03 05:11:48', 1),
(5096, 1647, 27, 5, 0, 'task not completed.', 27, '2021-06-04 11:48:49', 1),
(5097, 5022, 60, 1, 0, NULL, 27, '2021-06-04 12:01:17', 1),
(5098, 5022, 27, 7, 0, 'shortlisted. he is a fresher. we can offer 8k as a take home.', 27, '2021-06-04 12:01:17', 1),
(5099, 4900, 27, 5, 0, 'no response past 1 week.', 27, '2021-06-04 12:01:50', 1),
(5100, 4886, 27, 5, 0, 'task not completed.', 27, '2021-06-04 12:02:24', 1),
(5101, 4899, 27, 5, 0, 'task not completed.', 27, '2021-06-04 12:02:58', 1),
(5102, 4964, 27, 5, 0, 'task not completed.', 27, '2021-06-04 12:11:33', 1),
(5103, 5004, 60, 1, 0, NULL, 27, '2021-06-04 12:21:57', 1),
(5104, 5004, 27, 7, 0, 'Shortlisted. He Is A Fresher. We Can Offer 8k As A Take Home.\n', 27, '2021-06-04 12:21:57', 1),
(5105, 5047, 18, 5, 0, 'Does not have laptop and cannot offer under current situatation', 40, '2021-06-04 03:05:20', 1),
(5106, 4619, 60, 1, 0, NULL, 59, '2021-06-07 10:30:22', 1),
(5107, 5027, 60, 1, 0, NULL, 59, '2021-06-07 12:06:11', 1),
(5108, 5076, 71, 4, 0, 'Age-28, Fatherxxampmother no more, married with 3month baby, wife before has working now no job, candidate  btech it, 7+ years, location- adambakam chennai,  sales skill good, insurance knowledge -average, last ctc-313000, expectation- 350000, Ask take home 25k. ', 60, '0000-00-00 00:00:00', 1),
(5109, 5071, 59, 5, 0, 'RNR Tried Multiple Times And No Call Back Also', 60, '0000-00-00 00:00:00', 1),
(5110, 5068, 59, 5, 0, 'RNR Tried multiple times and no call back also', 60, '0000-00-00 00:00:00', 1),
(5111, 5070, 59, 5, 0, 'he is much into research,will not sustain for a long n sales.No target n previous company and he canxquott handle our pressure', 60, '0000-00-00 00:00:00', 1),
(5112, 5069, 59, 4, 0, '5050 For RM have experience in sales but not into relevant domain. Pursing his degree and he s into 2nd year.1 more year to go,but he says that can be managable. Salary expectation s around 25 but his current CTC oly 18k.', 60, '0000-00-00 00:00:00', 1),
(5113, 5067, 59, 5, 0, 'Keep on postponing the call shows not interestde for the role', 60, '0000-00-00 00:00:00', 1),
(5114, 5069, 40, 8, 0, 'Didnxquott attend the interview', 59, '2021-06-07 06:34:32', 1),
(5115, 5076, 18, 7, 4, 'Selected for santosh team. Offered 3.6L ctc. Joining date is 14th june.Please  Release the offer.', 71, '2021-06-07 06:48:59', 1),
(5116, 5077, 59, 5, 0, 'will not sustain for a long, career gap and he will handle the pressure and not suits for our company', 60, '0000-00-00 00:00:00', 1),
(5117, 5048, 59, 7, 0, 'Interviewed by gokul and selected for Mern Positions,starting their training on 2nd Jun(WFH) CTC - 98496 TH - 8000 xxamp Deductions 208', 60, '0000-00-00 00:00:00', 1),
(5118, 5073, 59, 5, 0, 'High Exp Into Inside Sales,Will Be A Fresher For This Mis Position.Her Current Ctc Was 7 Lpa And Open For 3 Lpa.Recently Married And Says Ok For Sa,But We Canxquott Expect Her For A Long Stay. Communication S Good', 60, '0000-00-00 00:00:00', 1),
(5119, 5074, 59, 5, 0, 'Communication ok, no relevant Experience, have experience as  a process associate.Expectation is very high. done interview with  Gokul also', 60, '0000-00-00 00:00:00', 1),
(5120, 5075, 59, 5, 0, 'Rejected,Communication very average,not open for SA, Expected salary s high.Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5121, 5048, 60, 1, 0, NULL, 59, '2021-06-08 06:00:48', 1),
(5122, 5088, 8, 4, 0, 'fresher, father doing biz,  little bit native lang and his pronunciation is 5050 check once. okay with 9-10k.', 7, '0000-00-00 00:00:00', 1),
(5123, 5087, 8, 4, 0, 'fresher, no father, mother ia an accountant, expt sal 10-11k, pursuing his Bsc. from Arakonam', 7, '0000-00-00 00:00:00', 1),
(5124, 5086, 8, 4, 0, 'has 1yr exp in loan collection10K, has 2wheeler also okay with collection.expt is 10-12k.father working in a pvt company. he is from Thirumullai', 7, '0000-00-00 00:00:00', 1),
(5125, 5086, 14, 4, 0, 'Thiruvallor branch salary 11k .. ok with wfh laptop ,sim, internet facilities having.  Need to confirm joining date ', 8, '2021-06-09 04:07:26', 1),
(5126, 5088, 53, 7, 0, 'Selected For Thiruvallur Location , 10k Ctc DOJ 10 Jun 21 Pls Cnfrm', 8, '2021-06-09 04:07:52', 1),
(5127, 5087, 14, 4, 0, 'salary 10k thiruvallor branch ok with wfh ,sim and having Laptop with internet connections ', 8, '2021-06-09 04:08:24', 1),
(5128, 5053, 13, 7, 3, 'mother only very poor family performing good in interview running tution for month expenses and ok for PF AND ESI already have account for pf so she need to follow the same here too', 8, '2021-06-09 04:09:53', 1),
(5129, 5062, 14, 4, 4, 'Fresher .salary 10k. She is okay with wfh and having laptop with internet connectivity.  Confirm joining date', 8, '2021-06-09 04:11:45', 1),
(5130, 5078, 59, 5, 0, 'For CRM roles responsibility he is not much interested and he much prefers for sales profile,but the salary expectation is very being a fresher.Exp 25k and he needs time to think.Sustainability doubt on his profile.', 60, '0000-00-00 00:00:00', 1),
(5131, 5079, 59, 4, 0, 'Communication Good,2yrs of exp as medical rep.Bike s there but no laptop.He can arrange it.Can give a try for RM.Career gap due to his higher education.', 60, '0000-00-00 00:00:00', 1),
(5132, 5079, 40, 5, 2, 'Not fit for the profile', 59, '2021-06-09 04:38:56', 1),
(5133, 5089, 14, 4, 0, 'salary 10k . Tnagar branch .ok with wfh and sim laptop with internet connection having. Need to Confirm joining date ', 8, '2021-06-09 05:27:10', 1),
(5134, 5062, 53, 7, 0, 'Selected For T nagar Location , Priyanka team, 11k Ctc DOJ 10 Jun 21 Pls Cnfrm', 14, '2021-06-09 05:48:28', 1),
(5135, 5086, 53, 7, 0, 'Selected For Thiruvallur  Location  10.5k Ctc DOJ 10 Jun 21 Pls Cnfrm', 14, '2021-06-09 05:52:26', 1),
(5136, 5087, 53, 7, 0, 'Selected For Thiruvallur Location , 10k Ctc DOJ 10 Jun 21 Pls Cnfrm', 14, '2021-06-09 05:54:23', 1),
(5137, 5089, 53, 7, 0, 'Selected For T Nagar Location , Priyanka Team, 10k Ctc DOJ 10 Jun 21 Pls Cnfrm', 14, '2021-06-09 05:55:46', 1),
(5138, 5091, 8, 4, 0, 'has overall 3.8yr exp in calling and his sal is 22k, now he is okay with any package, job need it seems. okay with WFH', 7, '0000-00-00 00:00:00', 1),
(5139, 5091, 53, 7, 0, 'Selected for priyanka team, CTC 13k, DOJ 10 jun 21', 8, '2021-06-09 06:06:07', 1),
(5140, 5092, 8, 4, 0, 'no sustainability but he has a reason, expt is 13k and check with his listening attitude once.okay with 10-12k.', 7, '0000-00-00 00:00:00', 1),
(5141, 5092, 53, 7, 0, 'Selected for Priyanka team, TH 11k, DOJ 10 jun 21', 8, '2021-06-09 06:14:39', 1),
(5142, 4875, 59, 3, 0, 'Selected for Tiruvallur Location in Cash mode with CTC 120000', 53, '2021-06-09 07:10:19', 1),
(5143, 5062, 59, 3, 0, 'Selected for Tnagar with 10450 TH Cash Mode', 53, '2021-06-09 07:11:40', 1),
(5144, 5086, 59, 3, 0, 'Selected for Tiruvallur Location with 9975 TH Cash Mode', 53, '2021-06-09 07:15:51', 1),
(5145, 5089, 59, 3, 0, 'Selected for Tnagar with 9500 TH cash mode', 53, '2021-06-09 07:16:42', 1),
(5146, 5088, 59, 3, 0, 'Selected for Tiruvallur with 9500 TH cash Mode', 53, '2021-06-09 07:18:01', 1),
(5147, 5087, 59, 7, 0, 'Selected for Tiruvallur with  CTC 120000 includes PF/PT/ESI Deductions', 53, '2021-06-09 07:18:54', 1),
(5148, 5091, 59, 7, 0, 'Selected for Tnagar location,CTC 156000 Gross - 13000 with PF/PT deductions', 53, '2021-06-09 07:51:13', 1),
(5149, 5092, 59, 3, 0, 'Selected for T.Nagar with 11000 TH Cash Mode', 53, '2021-06-09 07:52:03', 1),
(5150, 5091, 60, 1, 0, NULL, 59, '2021-06-09 07:53:26', 1),
(5151, 5087, 60, 1, 0, NULL, 59, '2021-06-09 07:57:26', 1),
(5152, 5080, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(5153, 5082, 40, 5, 1, 'Will not sustain and very poor performance during interview', 50, '0000-00-00 00:00:00', 1),
(5154, 5083, 40, 4, 4, 'Will fit for our profile', 50, '0000-00-00 00:00:00', 1),
(5155, 5084, 40, 5, 3, 'Will not sustain and will not suit for our profile', 50, '0000-00-00 00:00:00', 1),
(5156, 5085, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(5157, 5083, 18, 7, 3, 'Selected for hyderabad. Immed joiner. Joining date is on 14th June. Spoken CTC of 2.7L per annum', 40, '2021-06-10 02:28:39', 1),
(5158, 5083, 59, 7, 0, 'Selected for Hyderabad CTC - 2.7LPA includes PF/ESI Deductions', 18, '2021-06-11 12:07:35', 1),
(5159, 5093, 40, 5, 2, 'Rejected', 50, '0000-00-00 00:00:00', 1),
(5160, 5094, 40, 5, 2, 'He is not willing to work on sundays', 50, '0000-00-00 00:00:00', 1),
(5161, 5095, 40, 5, 2, 'rejected', 50, '0000-00-00 00:00:00', 1),
(5162, 5096, 40, 5, 2, 'Will not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(5163, 5076, 59, 7, 0, 'Selected for Chennai RM- Santhosh Team -With CTC 3.6 LPA includes PF/PT deductions in Patroniss', 18, '2021-06-11 02:54:22', 1),
(5164, 5098, 59, 5, 0, 'Communication is Good, Currently working in the Murugappa group and the official notice is 30 days.She is getting her increment by next month. Recently got married and she is not fine with the SA as she may take a break in between.', 60, '0000-00-00 00:00:00', 1),
(5165, 5097, 59, 5, 0, 'I spoke with this candidate in the month of March and rejected this profile. She will not sustain for a long with our domain. Career Gap in between as she traveled to Dubai with her husband and she attended many interviews past 3 months and none got selected.', 60, '0000-00-00 00:00:00', 1),
(5166, 5099, 59, 5, 0, 'Seems not much active will not handle the pressure.No knowledge on the MIS and not clear with the position. He will not sustain for long with us in their role. He is much into BGV process', 60, '0000-00-00 00:00:00', 1),
(5167, 5101, 59, 5, 0, 'Currently Working 2 months of the notice period, Not open for SA as she may get married in next 1 yr of time and this month she got increment and expects more on the package from us. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5168, 5083, 60, 1, 0, NULL, 59, '2021-06-11 06:06:53', 1),
(5169, 5076, 60, 1, 0, NULL, 59, '2021-06-12 11:33:08', 1),
(5170, 5053, 59, 7, 0, 'Selected for Thanjavur Location with CTC - 120000 included PF/ESI deductions - TH 7805', 13, '2021-06-12 12:09:58', 1),
(5171, 5053, 8, 3, 0, 'For Thanjavur  CTC - 120000 Included PF/ESI Deductions - TH 7805', 59, '2021-06-12 01:21:09', 1),
(5172, 5115, 8, 4, 0, 'fresher, okay with 10k, father is a labour.', 7, '0000-00-00 00:00:00', 1),
(5173, 5114, 8, 4, 0, 'fresher, pursuing her bba, okay with 10k.', 7, '0000-00-00 00:00:00', 1),
(5174, 5115, 13, 5, 0, 'Lockdown Period Hold Long Pending ', 8, '2021-06-12 04:50:42', 1),
(5175, 5102, 59, 2, 0, 'Communication Average,50/50 can give a try for MIS but he is currently working and his notice period is 30 days. He is having backend support in the banking domain and can be trained. The only thing is notice 30 days if we offer him not sure about his joining. Letxquots hold his profile now and try later', 60, '0000-00-00 00:00:00', 1),
(5176, 5103, 59, 5, 0, 'Communication ok, Having around 2+yrs of experience with 4 companies.No Sustainability, and her profile is fully into the voice process. She felt pressure in her previous companies.Her marriage has been fixed,due to lockdown its getting delay.Will not sustain with us for a long', 60, '0000-00-00 00:00:00', 1),
(5177, 5104, 59, 4, 0, 'Communication s average, Have experience in SBI Card Sales. Left the Job in the month of Jan to look after his family Hostel Business. Started looking for a job from last month. Around 10 km from Jubilee Hills. Having his own bike and laptop. Open for same CTC.50/50 ', 60, '0000-00-00 00:00:00', 1),
(5178, 5105, 59, 4, 0, 'Communication ok, Fresher profile distance around 4 km, having bike and laptop can be arranged.Keen to work in the insurance domain.Can give a try 50/50', 60, '0000-00-00 00:00:00', 1),
(5179, 5106, 59, 5, 0, 'Communication Average,3yrs with 3 companies into Liquor Product Sales.Fresher for our role.Doubtful in handling our sales.Sustainability doubts on this profile. Since their family is not comfortable with liquor sales, he is looking for a different domain. Will not handle our pressure.', 60, '0000-00-00 00:00:00', 1),
(5180, 5107, 59, 3, 0, 'Selected for veben Team with CTC - 286000 includes PF/PT in Patroniss as a staff', 60, '0000-00-00 00:00:00', 1),
(5181, 5108, 59, 5, 0, 'No Communication. Only local Language. He is not responding to the meet cal and sending a message stating that he is not comfortable with this position.', 60, '0000-00-00 00:00:00', 1),
(5182, 5110, 59, 5, 0, 'Communication Is Ok,3.5 Yrs With 3 Companies And Much Into Finance Positions.She Says Ok With The Agreement But Not Sure About The Long Stay As She Got Married A Year Back, She May Take A Break. Her CTC Is 2.7 LPA And The Expectation Is Around 3 LPA. ', 60, '0000-00-00 00:00:00', 1),
(5183, 5107, 40, 4, 3, 'Please check the sales aspects and for me he is ok for our profile.', 59, '2021-06-12 05:12:57', 1),
(5184, 5104, 40, 5, 3, 'he is not interested in insurance profile', 59, '2021-06-12 05:13:46', 1),
(5185, 5114, 13, 7, 0, 'degree completed 10 k salary talk active girl farmer only selected but srill not not reachable mobile number', 8, '2021-06-12 05:17:46', 1),
(5186, 5120, 8, 4, 0, 'has 1yr exp in fastrack call taxi and 1m in starhealth. lang is little bit native. he is from kumbakonam and looking for job in Chennai. expt is 11k.', 7, '0000-00-00 00:00:00', 1),
(5187, 5120, 13, 7, 4, 'father is a farmer and sister brother studying so job importance is more important,salary 10 k....3 month working in fastrack ,1 month working in star health native kumbakonam', 8, '2021-06-12 07:34:38', 1),
(5188, 5120, 59, 7, 0, 'Selected for Chennai Suriya Elite Team with CTC 120000 TH-9500 Cash mode Joining Date-14-Jun-2021', 13, '2021-06-14 10:50:41', 1),
(5189, 5120, 60, 1, 0, NULL, 59, '2021-06-14 11:03:55', 1),
(5190, 5111, 40, 5, 1, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(5191, 5112, 40, 5, 2, 'Not fit', 50, '0000-00-00 00:00:00', 1),
(5192, 5117, 40, 5, 1, 'rejected', 50, '0000-00-00 00:00:00', 1),
(5193, 5107, 18, 7, 3, 'Selected for hyderabad veben team. Ready to join on Thursday joining  (17th June). Offered  2,86,000 as ctc', 40, '2021-06-14 03:52:00', 1),
(5194, 5116, 59, 5, 0, 'Communication ok.she is into reconciliation process and her interest also towards the same.For MIS fresher and not much comfortable with SA as she got married few months back.Not much very active in the call.Sustainability doubts.Rejected', 60, '0000-00-00 00:00:00', 1),
(5195, 5109, 59, 5, 0, 'Not Communicating in English he prefers to speak only in Tamil, No experience and knowledge on the MIS part, Fresher for this role. Have experience using SAP FICO. Not much comfortable with the Service Agreement, he can give his acceptance for SA only based on the salary. His current TH is 18k.Sustainability doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(5196, 5107, 59, 3, 0, 'Selected for veben Team with CTC - 286000 includes PF/PT in Patroniss as a staff', 18, '2021-06-14 07:40:22', 1),
(5197, 5121, 59, 5, 0, 'Communication Average,he donxquott have interest towards the insurance domain.Rejected', 60, '0000-00-00 00:00:00', 1),
(5198, 5123, 59, 5, 0, 'Communication Ok, Working In Hospital Handling The Coordination Part, He Is Into A Contract And Notice Period Is 30 Days. Seems Not Much Comfortable With The Insurance Domain.', 60, '0000-00-00 00:00:00', 1),
(5199, 5124, 59, 4, 0, 'Communication Average.1yr experience in Bajaj Insurance slaes.No proper reason for leaving the job in Bajaj.Around 10 kms having his own bike and laptop.Attended few interviews.Sustainabilty doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(5200, 5105, 40, 4, 4, 'Selected and expected salary between 2-2.5lac and interested in insurance profile', 59, '2021-06-15 07:09:46', 1),
(5201, 5129, 59, 5, 0, 'Communication ok,having exp in IT Sales (B2B) 1.4 yrs of exp and looking for a change only for salary hike,also he feels pressure in this job.He gave some interview relates to the same IT Sales.Will not sustain with our position', 60, '0000-00-00 00:00:00', 1),
(5202, 5133, 59, 5, 0, 'Attitude issue No documented proof of his current experience.The expectation is very high.Communication ok, Working with Indusind in third party payroll, only for 9 months and looking for a permanent position.Not much working knowledge in excel, having basic knowledge in Excel. Career Gap and he was into Amway business.', 60, '0000-00-00 00:00:00', 1),
(5203, 5105, 18, 8, 0, 'Tried reaching his but not responding', 40, '2021-06-16 02:47:57', 1),
(5204, 5130, 59, 5, 0, 'Communication Average, Seems not much active and not proper reasons for relieving from the previous organizations. Started his career with Dish sales and worked for 3 yrs with no increment,1 yr with kotak. Will not suits much wth our positions and sustainability doubts on the candidate', 60, '0000-00-00 00:00:00', 1),
(5205, 5131, 59, 5, 0, 'Communication Average.1.6 yrs with 2 companies, experience in POS xxamp QR Code B2B sales. currently working in the company with commission basis. Having a Bike and laptop. Feeling pressure in his current role. Sustainability doubts on this candidate.Pressure handling doubts', 60, '0000-00-00 00:00:00', 1),
(5206, 5132, 59, 4, 0, 'Communication ok,Fresher profile.Can relocate to Jubilee hills.Having his own bike and laptop.No knowledge in Insurance Domain.', 60, '0000-00-00 00:00:00', 1),
(5207, 5132, 40, 5, 2, 'Will not fit for our profile', 59, '2021-06-16 04:28:52', 1),
(5208, 5124, 40, 5, 2, 'Will not fit', 59, '2021-06-16 04:31:45', 1),
(5209, 5139, 40, 5, 2, 'Not fit for the profile', 50, '0000-00-00 00:00:00', 1),
(5210, 5140, 40, 5, 2, 'Not fit for the profile', 50, '0000-00-00 00:00:00', 1),
(5211, 5136, 59, 5, 0, 'Communication ok.Distance around 16 kms,recently married and not comfortable with the service Agreement.no knowledge in MIS,need to train a lot in excel.', 60, '0000-00-00 00:00:00', 1),
(5212, 5137, 59, 5, 0, 'Communication is good,Fresher and focusing on the accounts xxamp finance positions,He is preparing for CMA exams and he wants to get into that field only.He s not ok with service agreement.Just for time being he looks into other positions.', 60, '0000-00-00 00:00:00', 1),
(5213, 5138, 59, 9, 0, 'Communication Average and ok, but for the service agreement he needs to check with his parents. He attended around 10 interview and got rejected.He much focus into voice process only', 60, '0000-00-00 00:00:00', 1),
(5214, 5142, 59, 5, 0, 'No Communication, Currently working with Tech Mahindra in voice process and his notice period is 30 days.3yrs with 3 companies, no sustainability with the candidate.No MIS knowledge he mainly focuses on the salary only. He can sign the agreement but not ready to submit the documents', 60, '0000-00-00 00:00:00', 1),
(5215, 5143, 59, 5, 0, 'Communication Average and manageable. Not much experienced in excel, currently working and he is into notice with 15 days left. Given him a task to check his writing skills,But writing skill is not upto the mark', 60, '0000-00-00 00:00:00', 1),
(5216, 5144, 59, 5, 0, 'Communication Average, Fresher Profile.Will not much suits for MIS role.Not 100% ok with SA,however Given a task to check his writing skills, but the content is not up to the level', 60, '0000-00-00 00:00:00', 1),
(5217, 5138, 8, 5, 0, 'no response', 59, '2021-06-17 06:22:20', 1),
(5218, 5154, 8, 5, 3, 'very slow and no convincing, expt is 10-15k, from ramapuram, farher and mother both are cooli.', 7, '0000-00-00 00:00:00', 1),
(5219, 5148, 8, 4, 3, '5m in SBI credit card 13.5k, father working in railways, from villivakkam, expt is 10k. fresher for sales.', 7, '0000-00-00 00:00:00', 1),
(5220, 5164, 8, 5, 2, 'will not sustain, done her mpil and planning do phd, 1yr as Professor in a clg, father is a Reporter, doing her race couching for banking.', 7, '0000-00-00 00:00:00', 1),
(5221, 5162, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5222, 5165, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5223, 5148, 14, 5, 1, 'not suitable for sales and not able to handle pressure', 8, '2021-06-18 04:55:15', 1),
(5224, 5146, 59, 5, 0, 'Communication Average.No sustainability worked with various domain,No knowledge on Insurance Domain.No Higher Education, completed only 12th in open education.Will not sustain with us', 60, '0000-00-00 00:00:00', 1),
(5225, 5145, 59, 5, 0, 'candidate got another offer and he prefers to go with that offer', 60, '0000-00-00 00:00:00', 1),
(5226, 5152, 59, 5, 0, 'Communication Ok, Previously Worked In A Contract Role. Salary Expectation Is High And Not Much Comfortable With The SA,Content What She Gave Gets Plagarism', 60, '0000-00-00 00:00:00', 1),
(5227, 5153, 59, 5, 0, 'Attended Interview and System Task but not suitable for our role. Will not Sustain', 60, '0000-00-00 00:00:00', 1),
(5228, 5170, 59, 5, 0, 'Communication Ok, Fresher Profile For The MIS Role, Basic Knowledge In Excel, But Not Much Ok With The SA And Document Submission,', 60, '0000-00-00 00:00:00', 1),
(5229, 5174, 59, 5, 0, 'Communication Ok, Fresher Profile, No Idea Into Position What She Applied, Need To Train A Lot For The Role. Need Time To Check With Her Parents On The Service Agreement.She Did Certification In NISM Mutual Fund Too', 60, '0000-00-00 00:00:00', 1),
(5230, 5175, 59, 5, 0, 'Not suits for our position,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5231, 5185, 8, 4, 0, 'fresher for calling, currently working in KFC as part timer, looking for full time job with 10k.', 7, '0000-00-00 00:00:00', 1),
(5232, 5185, 13, 7, 3, 'already working in core field and from poor background job need father is a farmer ..now part time in kfc....well profiled more conviencing skill technically strong person ...lead to take  speak about any topic basically strong person...pf and esi ok with it', 8, '2021-06-19 06:46:56', 1),
(5233, 5182, 8, 4, 0, 'Fresher, From Vellore Will Relocate To Chennai. Pursuing Her Mba, Okay With 10k, Check With Sustainability Once.', 7, '0000-00-00 00:00:00', 1),
(5234, 5180, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5235, 5181, 8, 5, 0, 'was selected for next round but no response from him', 7, '0000-00-00 00:00:00', 1),
(5236, 5169, 8, 5, 0, 'she already Attended interview on june 10th. jennifers', 7, '0000-00-00 00:00:00', 1),
(5237, 5168, 8, 5, 0, 'no sales and convincing and will not suite for sales and expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(5238, 5166, 8, 5, 0, '29, has 3yr exp in other field 23k, from karaikudi will relocate, will not suite for our process and will not sustain for salary, expt 12k.', 7, '0000-00-00 00:00:00', 1),
(5239, 5172, 8, 5, 0, 'time being looking for job, he was into real estate and car broking biz, will not sustain. expt is 12-15k.', 7, '0000-00-00 00:00:00', 1),
(5240, 5173, 8, 5, 0, '1yr as process ass 14k, resently married from arumbakkam, will not handle pressure, worked in times of india newspaper sales, felt pressure and relived from that. expt is 10k.', 7, '0000-00-00 00:00:00', 1),
(5241, 5185, 59, 3, 0, 'Selected for Tanjore with PF/ESI/PT deductions.', 13, '2021-06-21 09:54:40', 1),
(5242, 5206, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5243, 5205, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5244, 5204, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5245, 5207, 8, 4, 0, 'Currently Doing Course, Fresher, Expt 9-10k, Okay With 1-2yr Agreement.', 7, '0000-00-00 00:00:00', 1),
(5246, 5208, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5247, 5210, 59, 7, 0, 'Selected for MIS Position,2nd Round interviewed by Gokul and shortlisted for the role MIS', 7, '0000-00-00 00:00:00', 1),
(5248, 5196, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5249, 5210, 60, 1, 0, NULL, 59, '2021-06-22 03:01:19', 1),
(5250, 537, 8, 5, 0, 'already Attended interview and rejected on 2020 oct', 7, '0000-00-00 00:00:00', 1),
(5251, 5200, 8, 2, 0, 'salary expt is high 15k, fresher', 7, '0000-00-00 00:00:00', 1),
(5252, 5201, 8, 5, 0, 'no response', 7, '0000-00-00 00:00:00', 1),
(5253, 5202, 8, 2, 0, 'for RM', 7, '0000-00-00 00:00:00', 1),
(5254, 5203, 8, 5, 0, 'no response', 7, '0000-00-00 00:00:00', 1),
(5255, 5217, 8, 5, 0, 'will not suite for calling, prefer non voice job, expt min 15k take home.', 7, '0000-00-00 00:00:00', 1),
(5256, 5218, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5257, 5219, 8, 4, 0, 'check for esale RM, has 2yr calling exp', 7, '0000-00-00 00:00:00', 1),
(5258, 5220, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5259, 5230, 8, 5, 0, 'will not sustain. 2yr in detective agency, 1yr as store incharge, 2yr in real estate, running own veg shop now his mother is taking care, was getting 17k-20k, expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(5260, 5229, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5261, 5244, 40, 4, 3, 'He is not having sales exp but salary exp is 30k but no having that much skills incase if he ok for 23k then we can else we can reject him.\nNot having bike but asked for 15 days time to get ', 50, '0000-00-00 00:00:00', 1),
(5262, 5244, 18, 7, 4, 'Selected for hyderabab. Ready to join on monday. Ypu can give 286000 as overall CTC.\n', 40, '2021-06-24 02:30:29', 1),
(5263, 5240, 8, 4, 0, 'fresher for calling, dnh event mgnt in part time, no father and mother tailor, expt is 9-10k. no laptop willing WFO.', 7, '0000-00-00 00:00:00', 1),
(5264, 5239, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5265, 5238, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5266, 5237, 8, 4, 0, 'Fresher From Chrompet, Pursuing Her Bcom,And Expt Is 10k.', 7, '0000-00-00 00:00:00', 1),
(5267, 5236, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5268, 5235, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5269, 5234, 8, 4, 0, 'fresher from aadambakkam, pursuing her bcom, father is a supervisor and expt is 10k.', 7, '0000-00-00 00:00:00', 1),
(5270, 5233, 8, 8, 0, 'not attended', 7, '0000-00-00 00:00:00', 1),
(5271, 5231, 8, 2, 0, 'she is 18 and written her 10th and waiting for results, was working in botiq as sales girl 15k and expt is 13k. no laptop and will come chennai on 27th', 7, '0000-00-00 00:00:00', 1),
(5272, 5242, 59, 5, 0, 'Not Suits for our role, will not sustain for  a long', 60, '0000-00-00 00:00:00', 1),
(5273, 5241, 59, 7, 0, 'Selected for Priyanka Team with CTC 126000 with PF/PT deductions', 60, '0000-00-00 00:00:00', 1),
(5274, 5232, 59, 5, 0, 'Communication Average,Content not upto the mark', 60, '0000-00-00 00:00:00', 1),
(5275, 5227, 59, 2, 0, 'Received Content and scheduled him for F2F,but didnt turn.Need to reschedule him for some other day 50/50 Profile\n', 60, '0000-00-00 00:00:00', 1),
(5276, 5226, 59, 5, 0, 'Selected her for the MIS Role,but she is not interested with the package what we offered and not comfortable with office timings', 60, '0000-00-00 00:00:00', 1),
(5277, 5250, 8, 4, 0, 'expt is 12k, okay with 10k and job need', 7, '0000-00-00 00:00:00', 1),
(5278, 5248, 8, 5, 0, 'from vellore, will not sustain and handle pressure', 7, '0000-00-00 00:00:00', 1),
(5279, 5247, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5280, 5246, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5281, 5244, 59, 7, 0, 'Selected for Veben Team with CTC 286000 includes PF/ESI Deductions', 18, '2021-06-25 07:43:24', 1),
(5282, 5228, 59, 2, 0, 'Selected as a intern for HR recruitment with the stipend of Rs 5000 PM with contnuation of employment. Salary will be confirmed post internship', 60, '0000-00-00 00:00:00', 1),
(5283, 5268, 59, 3, 0, 'Selected for Priyanka Team-Internal Reference with CTC - 120000 Cash mode 5% deduction - 9500 TH\n', 60, '0000-00-00 00:00:00', 1),
(5284, 5253, 59, 7, 0, 'Selected for MIS Role,2nd Round interviewed by gokul and selected ', 60, '0000-00-00 00:00:00', 1),
(5285, 5240, 14, 4, 4, 'salary 10k need to confirm joining date', 8, '2021-06-26 03:15:40', 1),
(5286, 5268, 14, 4, 4, 'salary 10k need to confirm joining date', 59, '2021-06-26 03:17:50', 1),
(5287, 5234, 13, 7, 4, 'Candidate Is Good With The Communication And Convencing Skills. 10K Salary Was Fixed. Joining Date Is On July 1st.', 8, '2021-06-26 03:18:45', 1),
(5288, 5253, 60, 1, 0, NULL, 59, '2021-06-26 03:19:14', 1),
(5289, 5243, 59, 5, 0, 'Will not sustain for a long she is focusing into UPSC exams only', 60, '0000-00-00 00:00:00', 1),
(5290, 5213, 59, 5, 0, 'Communication average,no relevant Exp.Content what he gave is not upto yhe mark\n', 60, '0000-00-00 00:00:00', 1),
(5291, 5214, 59, 5, 0, 'Communication ok, Salary Expectation is very high, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5292, 5269, 8, 4, 0, '6m in Vodafone payment collection 10k, no father and mom selling fish, from kotturpuram, expt is 10.5k.', 7, '0000-00-00 00:00:00', 1),
(5293, 5269, 13, 7, 4, 'candidate have self confidence and likes to face challenges .salarey of 10k if fixed.', 8, '2021-06-26 03:38:55', 1),
(5294, 5279, 8, 4, 0, '9m in omega PE with 12.5k, father daily wages and expt is 10-11k, from ponneri.', 7, '0000-00-00 00:00:00', 1),
(5295, 5279, 14, 4, 4, 'salary 10k need to confirm joining date', 8, '2021-06-26 04:01:50', 1),
(5296, 5244, 60, 1, 0, NULL, 59, '2021-06-26 04:17:06', 1),
(5297, 5241, 14, 4, 4, 'check the distance and confirm joining date', 59, '2021-06-26 04:24:22', 1),
(5298, 5279, 53, 7, 0, 'selected. pls cnfrm joining date and sal.', 14, '2021-06-26 04:55:32', 1),
(5299, 5268, 53, 7, 0, 'selected.  pls cnfrm joining and sal.', 14, '2021-06-26 04:56:10', 1),
(5300, 5241, 53, 7, 0, 'selected. pls cnfrm sal and joining date', 14, '2021-06-26 04:57:20', 1),
(5301, 5240, 53, 7, 0, 'selected. pls cnfrm the salary and joining date', 14, '2021-06-26 04:58:25', 1),
(5302, 5240, 59, 3, 0, 'Selected for Priyanka Jeni Team with CTC 120000 includes PF/ESI/PT', 53, '2021-06-28 10:13:42', 1),
(5303, 5241, 59, 7, 0, 'Selected for Priyanka Team with CTC 126000 with PF/PT deductions', 53, '2021-06-28 10:14:20', 1),
(5304, 5268, 59, 3, 0, 'Selected for Priyanka Team-Internal Reference with CTC - 120000 Cash mode 5% deduction - 9500 TH\n', 53, '2021-06-28 10:15:14', 1),
(5305, 5279, 59, 7, 0, 'Selected for Priyanka Team with CTC 126000  - Cash Mode with 5% deduction 9975 take home Salary', 53, '2021-06-28 10:15:41', 1),
(5306, 5285, 59, 7, 0, 'Selected for Raj Kumar with CTC - 357696 includes PF/PT deductions', 60, '0000-00-00 00:00:00', 1),
(5307, 5277, 39, 4, 4, 'candidate is ok. suitable for our profile', 60, '0000-00-00 00:00:00', 1),
(5308, 5277, 30, 7, 4, 'candidate is shortlisted. arun hr need to call and cnfrm the package', 39, '2021-06-28 01:37:20', 1),
(5309, 5277, 59, 3, 0, 'Selected for Muppudathy Team wiht CTC 350000 includes PF/PT Deductions', 30, '2021-06-28 01:42:00', 1),
(5310, 5288, 59, 5, 0, 'Not suitable for our role', 60, '0000-00-00 00:00:00', 1),
(5311, 5291, 59, 5, 0, 'Communication OK, No relevant exp, also he holds an offer with Infosys and Cognizant. Will not sustain with us for the role', 60, '0000-00-00 00:00:00', 1),
(5312, 5297, 59, 5, 0, 'Will not suits for our Role, he is  into  real estate Sales', 60, '0000-00-00 00:00:00', 1),
(5313, 5284, 59, 4, 0, 'Check for Digital Marketing - Communication ok\n', 60, '0000-00-00 00:00:00', 1),
(5314, 5299, 59, 5, 0, 'Communication Average, Will not sustain for a long with this role. Salary Expectation is very high', 60, '0000-00-00 00:00:00', 1),
(5315, 5290, 40, 8, 0, 'Not attended the interview', 50, '0000-00-00 00:00:00', 1),
(5316, 5292, 8, 2, 0, 'looking for RM, and expt is 20k+', 7, '0000-00-00 00:00:00', 1),
(5317, 5293, 8, 5, 0, 'no response', 7, '0000-00-00 00:00:00', 1),
(5318, 5294, 8, 5, 0, 'will not handle pressure and sales target. ', 7, '0000-00-00 00:00:00', 1),
(5319, 5295, 8, 5, 0, 'no response', 7, '0000-00-00 00:00:00', 1),
(5320, 5285, 71, 4, 0, 'Selected for next round. Ask take home 27k.  ', 59, '2021-06-29 05:51:35', 1),
(5321, 4984, 59, 5, 0, 'Fresher, Need To Complete The Exams.Will Come For The 2nd Level Interview Post The Completion Of Exams\n', 60, '0000-00-00 00:00:00', 1),
(5322, 5303, 8, 5, 0, 'no response', 7, '0000-00-00 00:00:00', 1),
(5323, 5304, 8, 5, 0, 'high profie, will not suite for telecalling', 7, '0000-00-00 00:00:00', 1),
(5324, 5305, 8, 2, 0, 'for RM', 7, '0000-00-00 00:00:00', 1),
(5325, 5306, 8, 5, 0, 'will not sustain and expt is 18k', 7, '0000-00-00 00:00:00', 1),
(5326, 5285, 18, 7, 4, 'Selected for Raj team PC Chennai. Tomorrow joining (1July) CTC Spoken is 3.7L overall including pF', 71, '2021-06-30 11:44:26', 1),
(5327, 5134, 8, 4, 0, 'fresher, okay with calling and expt is 9-10k. dont have laptop, will join office directly', 7, '0000-00-00 00:00:00', 1),
(5328, 5272, 8, 4, 0, '1yr exp in HDFC life and 3m in loan 12k, expt is 12.5k, father into bag biz.', 7, '0000-00-00 00:00:00', 1),
(5329, 5285, 59, 7, 0, 'Selected for Raj Kumar with CTC - 357696 includes PF/PT deductions', 18, '2021-06-30 01:10:11', 1),
(5330, 5195, 56, 4, 0, 'Selected for next round', 60, '0000-00-00 00:00:00', 1),
(5331, 5114, 59, 5, 0, 'Switched OFF', 13, '2021-06-30 03:57:06', 1),
(5332, 5234, 59, 5, 0, 'Communicated and shared the Salary breakup for the candidate approval,but she turn back with her approval', 13, '2021-06-30 04:04:53', 1),
(5333, 5269, 59, 3, 0, 'Selected for Suriya Team with CTC 120000 includes PF/ESI - but didnt come for the joining', 13, '2021-06-30 04:09:45', 1),
(5334, 5185, 59, 3, 0, 'Selected for Tanjore with PF/ESI/PT deductions.', 59, '2021-06-30 05:09:41', 1),
(5335, 4826, 59, 5, 0, 'Communication Ok, Career Gap Expecting 22K, She S Ok For SA, But Not Sure On  Her Sustainability. \n', 59, '2021-06-30 05:23:50', 1),
(5336, 5285, 60, 1, 0, NULL, 59, '2021-06-30 05:33:37', 1),
(5337, 5272, 13, 7, 4, 'candidate is already experienced with sales. sales pitch and convence are good . 12k CTC is fixed', 8, '2021-06-30 06:03:12', 1),
(5338, 5301, 59, 5, 0, '	Not Much Into Ui,Strong In Ux Only.Requested For Freelance Position,But He Is Not Much Comfortable.', 60, '0000-00-00 00:00:00', 1),
(5339, 5307, 59, 4, 0, 'Fresher Profile,5050 Internal team reference. Please do check for RE', 60, '0000-00-00 00:00:00', 1),
(5340, 5307, 34, 5, 2, 'not selected', 59, '2021-06-30 06:08:20', 1),
(5341, 4952, 60, 1, 0, NULL, 59, '2021-06-30 06:11:41', 1),
(5342, 5252, 13, 7, 4, 'candidate likes to join the voice process , and ready to face the tough jobs.  10K salarey is fixed.', 8, '2021-06-30 06:45:19', 1),
(5343, 5252, 59, 7, 0, 'Selected for Suriya  Team with CTC  120000 includes PF/ESI/PT', 13, '2021-06-30 07:08:30', 1),
(5344, 5272, 59, 7, 0, 'Selected for Suriya Team with CTC - 144000 includes PF/ESI/PT', 13, '2021-06-30 07:13:55', 1),
(5345, 5252, 60, 1, 0, NULL, 59, '2021-06-30 07:20:22', 1),
(5346, 5272, 60, 1, 0, NULL, 59, '2021-06-30 07:25:31', 1),
(5347, 5279, 60, 1, 0, NULL, 59, '2021-07-01 09:50:00', 1),
(5348, 5315, 8, 4, 0, 'okay with salary and terms. check with technical skills', 7, '0000-00-00 00:00:00', 1),
(5349, 5311, 59, 5, 0, 'Candidate keen to learn, but cant communicate the basics, need some time to learn and come', 60, '0000-00-00 00:00:00', 1),
(5350, 5313, 59, 5, 0, 'Will not suits for our UI Developer position,He is much into UX Design Part only', 60, '0000-00-00 00:00:00', 1),
(5351, 5257, 59, 7, 0, 'Selected for Suriya Team with CTC 120000 includes PF ESI PT deductions', 60, '0000-00-00 00:00:00', 1),
(5352, 5314, 59, 7, 0, 'Intern for 3 months - 3500K Stipend ,continuing employment with min 8K.3yrs SA', 60, '0000-00-00 00:00:00', 1),
(5353, 5314, 59, 7, 0, 'Intern for 3 months - 3500K Stipend ,continuing employment with min 8K.3yrs SA', 60, '0000-00-00 00:00:00', 1),
(5354, 5321, 59, 5, 0, 'Not much experience into MIS, Married, will not handle our pressure and sustainability doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(5355, 5314, 60, 1, 0, NULL, 59, '2021-07-01 06:54:26', 1),
(5356, 5257, 13, 7, 4, 'this Candidate ok,10k salary,joining date : 05-july-2021', 59, '2021-07-01 07:05:21', 1),
(5357, 5327, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5358, 5333, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5359, 5325, 59, 5, 0, 'Just for the Salary Rise, he looks for an opportunity.Sustainability doubt and the salary expectation is very high', 60, '0000-00-00 00:00:00', 1),
(5360, 5326, 59, 7, 0, 'Intern for 5 months, post intern 3yrs agreement also salary(8K) wil confirmed. ', 60, '0000-00-00 00:00:00', 1),
(5361, 5331, 59, 5, 0, 'Currently working and his Gross is around 15K in native itself. He is not comfortable with our package and he is not much open to the service agreement.', 60, '0000-00-00 00:00:00', 1),
(5362, 5334, 59, 5, 0, 'Not suits for our role, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5363, 5338, 59, 5, 0, 'Not much open up, no relevant Exp into Sales, Will not handle pressure', 60, '0000-00-00 00:00:00', 1),
(5364, 5322, 71, 4, 0, 'Selected for next round ', 60, '0000-00-00 00:00:00', 1),
(5365, 5326, 60, 1, 0, NULL, 59, '2021-07-02 05:47:02', 1),
(5366, 5257, 59, 7, 0, 'Selected for Suriya Team with CTC 120000 includes PF ESI PT deductions', 13, '2021-07-03 09:59:04', 1),
(5367, 5257, 60, 1, 0, NULL, 59, '2021-07-03 10:22:31', 1),
(5368, 5335, 64, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(5369, 5337, 59, 5, 0, 'Not suitable for MErn Stack.No knowlege in React,will not sustain for a long not comfortable with the SA', 60, '0000-00-00 00:00:00', 1),
(5370, 5329, 59, 5, 0, 'Need to check With parents on the SA, Fresher profile not much comfortable with Internship Role\n', 60, '0000-00-00 00:00:00', 1),
(5371, 5328, 59, 5, 0, 'Not much ok with SA, need some time to confirm.Not much comfortable with intern model and expectation is high', 60, '0000-00-00 00:00:00', 1),
(5372, 5341, 59, 5, 0, 'Not suits for Telecaller profile,yet to complete his graduation one more year to go', 60, '0000-00-00 00:00:00', 1),
(5373, 5284, 69, 5, 0, 'No relevant DM knowledge', 59, '2021-07-03 12:18:41', 1),
(5374, 5318, 59, 5, 0, 'not open for 3 yrs of service agreement no knowledge in ReactJS,also expectation is around 10-12K', 60, '0000-00-00 00:00:00', 1),
(5375, 5339, 59, 5, 0, '.No Knowledge In MIS, Communication Is Good. Sustainability Doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(5376, 5343, 59, 5, 0, 'Not suitable for the positions ,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5377, 5195, 30, 4, 3, 'Confirm salary and joining date', 56, '2021-07-03 05:37:47', 1),
(5378, 5195, 59, 7, 0, 'Selected for Manivel TEam with CTC - 345696 includes PF/PT', 30, '2021-07-03 06:50:37', 1),
(5379, 5195, 60, 1, 0, NULL, 59, '2021-07-03 06:53:22', 1),
(5380, 5345, 59, 5, 0, 'Not open with terms and conditions, fresher profile no basic knowledge', 60, '0000-00-00 00:00:00', 1),
(5381, 5348, 59, 5, 0, 'Fresher Profile, not open with terms and conditions will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5382, 5344, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5383, 5352, 59, 4, 0, 'Check for CRM', 60, '0000-00-00 00:00:00', 1),
(5384, 5353, 59, 5, 0, 'not suits for our Telecaller role', 60, '0000-00-00 00:00:00', 1),
(5385, 5350, 59, 5, 0, 'Not suits for UI Position, no basic knowledge in UI UX', 60, '0000-00-00 00:00:00', 1),
(5386, 5354, 59, 3, 0, 'Selected for RajKumar with CTC - 350000 includes PF/PT deductions', 60, '0000-00-00 00:00:00', 1),
(5387, 5322, 18, 7, 0, 'selected for rm at 2.4L ctc overall for santosh team. we are giving 1.8 to 2.4 because he is a quality rm and also his old salary was in rural', 71, '2021-07-05 04:56:22', 1),
(5388, 5342, 59, 5, 0, 'Communication ok,Attended F2F discussion,Written communication is very average only. Recently married and not sure on the sustainability. She is much into pure data Analyst', 60, '0000-00-00 00:00:00', 1),
(5389, 4954, 60, 1, 0, NULL, 59, '2021-07-05 06:39:57', 1),
(5390, 5352, 13, 5, 0, 'Lockdown Period Hold Long Pending ', 59, '2021-07-05 06:44:50', 1),
(5391, 5354, 33, 4, 0, 'HAVING SALES EXPERIENCE PLEASE CHECK HIS SUSTAINABLITY', 59, '2021-07-05 06:51:48', 1),
(5392, 5357, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5393, 5356, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5394, 5360, 59, 4, 0, 'DM Certified, Communication Average 50/50 please check for DM', 60, '0000-00-00 00:00:00', 1),
(5395, 5346, 59, 5, 0, 'No basic knowledge in UI UX,only in to the designing part, Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5396, 5361, 59, 5, 0, 'Left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(5397, 5358, 59, 4, 0, 'Exp in BPO, Stamering please co check for CRM Tiruvallur Location', 60, '0000-00-00 00:00:00', 1),
(5398, 5360, 69, 5, 0, 'Profile not Up to expectation.', 59, '2021-07-06 03:24:51', 1),
(5399, 5358, 53, 5, 0, 'Not Suit For Telecalling, Low Confidence level', 59, '2021-07-06 03:26:11', 1),
(5400, 5332, 59, 5, 0, 'No basic knowledge in UI UX will not sustain for a long.No basic knowledge in CSS Javascript,photoshop', 60, '0000-00-00 00:00:00', 1),
(5401, 5241, 60, 1, 0, NULL, 59, '2021-07-06 04:33:51', 1),
(5402, 5228, 60, 1, 0, NULL, 59, '2021-07-06 04:35:22', 1),
(5403, 5228, 59, 7, 0, 'Selected As A Intern For HR Recruitment With The Stipend Of Rs 5000 PM With Contnuation Of Employment. Salary Will Be Confirmed Post Internship', 59, '2021-07-06 04:35:22', 1),
(5404, 5227, 59, 5, 0, 'Received Content And Scheduled Him For F2F,But Didnt Turn.', 59, '2021-07-06 04:36:38', 1),
(5405, 4541, 59, 5, 0, 'For Mern Stack,Fresher,Should Come Back After Completing The Exams', 59, '2021-07-06 04:43:05', 1),
(5406, 5102, 59, 5, 0, 'Communication Average,50/50 Can Give A Try For MIS But He Is Currently Working And His Notice Period Is 30 Days. He Is Having Backend Support In The Banking Domain. The Only Thing Is Notice 30 Days If We Offer Him Not Sure About His Joining.', 59, '2021-07-06 05:12:07', 1),
(5407, 5355, 8, 5, 0, 'slow and will not handle pressure. expt is 12k+, will relocate to chennai', 7, '0000-00-00 00:00:00', 1),
(5408, 4802, 60, 1, 0, NULL, 59, '2021-07-06 05:18:58', 1),
(5409, 5219, 11, 1, 0, NULL, 8, '2021-07-06 05:32:48', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(5410, 5366, 59, 5, 0, 'Communication Averaga,no basic knowledge on the recruitment. Will not sustain and handling pressure doubtful', 60, '0000-00-00 00:00:00', 1),
(5411, 5359, 40, 4, 3, 'He is a fresher and poor in communication but we can try else we can reject him', 50, '0000-00-00 00:00:00', 1),
(5412, 5362, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5413, 5364, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5414, 5280, 8, 4, 0, 'fresher from thiruthani, no father, job need expt is 10k.', 7, '0000-00-00 00:00:00', 1),
(5415, 5280, 14, 7, 4, 'Salary 10k  joining date 14th july thiruvallur', 8, '2021-07-07 04:59:27', 1),
(5416, 5365, 59, 5, 0, 'Didnt turn for the F2F discussion,', 60, '0000-00-00 00:00:00', 1),
(5417, 5367, 59, 5, 0, 'Sustainability Doubts not much comfortable with the service Agreement, Need to hire her as an Intern cum employment. Only front end React Basic,her current gross is 12k PM.', 60, '0000-00-00 00:00:00', 1),
(5418, 5368, 44, 4, 4, 'candidate ok for me and need your suggestion Ji', 60, '0000-00-00 00:00:00', 1),
(5419, 5369, 59, 5, 0, 'Left Without attending the interview', 60, '0000-00-00 00:00:00', 1),
(5420, 5370, 59, 5, 0, 'Not suits for the role,', 60, '0000-00-00 00:00:00', 1),
(5421, 5372, 59, 5, 0, 'No basic knowledge in UI/UX, he is only into Design. Will not sustain with us for a long', 60, '0000-00-00 00:00:00', 1),
(5422, 5374, 59, 4, 0, 'UIUX Knowledged Experienced profile, Check for UI UX, Expectation is around 25K', 60, '0000-00-00 00:00:00', 1),
(5423, 5336, 59, 4, 0, 'Check for UI/UX having knowledge,but sustainability doubts .He is holding 2 offer for 2.16 LPA', 60, '0000-00-00 00:00:00', 1),
(5424, 5384, 59, 5, 0, 'Communication is Good, Sustainability doubts on the profile and the expectation is very high. Fresher for Recruitment profile', 60, '0000-00-00 00:00:00', 1),
(5425, 5383, 59, 4, 0, 'Check for CRM\n', 60, '0000-00-00 00:00:00', 1),
(5426, 5354, 18, 7, 4, 'Selected for Raj Team. Can give 3.5L ctc overall.ready to join immed.', 33, '2021-07-08 03:28:19', 1),
(5427, 5368, 29, 7, 3, 'selected for RM, shanmugam team, salary 261696. can increase 2k monthly, if mOM completes 1.50 lacs for next 3 months,', 44, '2021-07-08 05:48:50', 1),
(5428, 5382, 64, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(5429, 5380, 64, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(5430, 5376, 64, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(5431, 5336, 69, 5, 0, 'Not having designing knowledge, Having two offers in hand', 59, '2021-07-08 06:34:05', 1),
(5432, 5374, 69, 2, 0, 'Candidate profile is good, high expectations, need to give a task further.', 59, '2021-07-08 06:39:16', 1),
(5433, 5383, 13, 5, 0, 'Hold on Long Pending ', 59, '2021-07-08 06:49:46', 1),
(5434, 5368, 59, 7, 0, 'Selected for Shanmugam Team - Internal Team Reference - Selected with CTC - 261696 includes PF /PT', 29, '2021-07-08 07:10:30', 1),
(5435, 5368, 60, 1, 0, NULL, 59, '2021-07-08 07:19:07', 1),
(5436, 5389, 59, 5, 0, 'Exams yet to get complete,not much suits for our Mern Role', 60, '0000-00-00 00:00:00', 1),
(5437, 5359, 18, 7, 3, 'SELECTED FOR HYDERABAB. OFFERED SALARY IS  2,52,200 AS OVERALL CTC INCLUDING PF. READY TO JOIN IMMED', 40, '2021-07-09 10:13:45', 1),
(5438, 5322, 59, 7, 0, 'Selected for Santhosh Team - RM with CTC 2.4 LPA includes PF/ESI/PT deductions', 18, '2021-07-09 12:03:16', 1),
(5439, 5386, 59, 5, 0, 'Will not get fit with our requirement, Sustainability doubts, Not much open with SA', 60, '0000-00-00 00:00:00', 1),
(5440, 5388, 59, 5, 0, '	Can Check For Mern 5050 Profile ,Fresher - didnt appear for the F2F discussion', 60, '0000-00-00 00:00:00', 1),
(5441, 5393, 59, 5, 0, 'Will not sustain with us for a long. Not much suits for our role', 60, '0000-00-00 00:00:00', 1),
(5442, 5394, 59, 5, 0, 'No basic knowledge on the profile,will not suits for our role.', 60, '0000-00-00 00:00:00', 1),
(5443, 5397, 59, 5, 0, 'Not much open with the Service Agreement.Sustainability doubts on her profile', 60, '0000-00-00 00:00:00', 1),
(5444, 5322, 60, 1, 0, NULL, 59, '2021-07-09 05:36:45', 1),
(5445, 5404, 59, 5, 0, 'Need To Come Back With His Acceptance On Our Terms And Conditions. Communication Is Good  Fresher - Didnt turn back for a long and his profile has been rejected on 27-Jul-2021', 60, '0000-00-00 00:00:00', 1),
(5446, 5399, 59, 5, 0, 'Fresher for Mern, He is into profile research for past 1,5 yrs. Currently working 30 Days of notice period.Salary Expecatation is high,Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(5447, 5405, 8, 4, 3, 'from karaikudu currently in medavakkam, 4yr in core job as process supervisor 20k, expt is 18k', 60, '0000-00-00 00:00:00', 1),
(5448, 5405, 57, 4, 4, 'candidate is ok .. kindly negotiate the salary and confirm the joining date \n', 8, '2021-07-10 01:12:10', 1),
(5449, 5398, 59, 5, 0, '6 months Exp left due to salary Issue,not much strong in Basics of Mern, will not handle the pressure.Sustainability doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(5450, 5403, 59, 5, 0, 'No relevant Exp, Worked in various other domain, will not handle the pressure. No sustainability  in this profile', 60, '0000-00-00 00:00:00', 1),
(5451, 5377, 59, 5, 0, 'No sustainability in his previous experience, focused only on the Salary, No basic knowledge on the requirement. Will not sustain with us  for a long', 60, '0000-00-00 00:00:00', 1),
(5452, 5405, 59, 7, 0, 'Selected for Syed Team with CTC - 216000 includes PF/ESI/PT', 57, '2021-07-10 04:04:44', 1),
(5453, 5405, 60, 1, 0, NULL, 59, '2021-07-10 04:51:01', 1),
(5454, 5359, 59, 3, 0, 'Selected for Veben - Hyderabad Team with CTC 252200 includes PF/PT deductions', 18, '2021-07-12 12:39:51', 1),
(5455, 4357, 8, 4, 0, 'check and revert', 20, '2021-07-12 03:07:16', 1),
(5456, 4357, 20, 4, 0, 'Kindly check with the job need, and call for an interview if he is worthy.', 20, '2021-07-12 03:07:16', 1),
(5457, 5416, 8, 5, 0, 'will not sustain, Planning to do his ms in canada.  looking for internship alone.', 7, '0000-00-00 00:00:00', 1),
(5458, 5387, 8, 4, 3, '1yr in royal enfield and 2m in a IT, Looking For Job Change In IT, self learning through onlineMERN And Okay With Internship Terms And Conditions, high job need.', 7, '0000-00-00 00:00:00', 1),
(5459, 5396, 8, 4, 3, 'has 4yrs exp in customer support and looking for job change in IT, done 55hr course in MERN and okay with internship terms and conditions.', 7, '0000-00-00 00:00:00', 1),
(5460, 5410, 8, 4, 0, 'has 2yr exp in digi mktng 24k, married 5m husband into QC, expt is 11k, fresher for sales calling.', 7, '0000-00-00 00:00:00', 1),
(5461, 5413, 8, 4, 0, 'fresher, looking for internship with 7k, has basic knowledge in seo, smo and blogs, check with her content.', 7, '0000-00-00 00:00:00', 1),
(5462, 5414, 8, 4, 3, 'has 1.6yr exp in calling-credit card sales, expt is 15k(nego).', 7, '0000-00-00 00:00:00', 1),
(5463, 5414, 19, 4, 4, 'Selected', 8, '2021-07-12 04:53:46', 1),
(5464, 5413, 69, 5, 0, 'Not sustainable', 8, '2021-07-12 04:55:00', 1),
(5465, 5410, 13, 5, 0, 'Hold on Long Pending ', 8, '2021-07-12 04:56:58', 1),
(5466, 5396, 54, 1, 0, NULL, 8, '2021-07-12 04:59:21', 1),
(5467, 5387, 54, 1, 0, NULL, 8, '2021-07-12 05:02:02', 1),
(5468, 5324, 8, 4, 3, 'has 2yr exp in sales and collection, 1yr in loan and credit card 15k, expt is 17-18k(nego)', 60, '0000-00-00 00:00:00', 1),
(5469, 5414, 59, 7, 0, 'Selected for Kannan Team with CTC  - 156000 includes PF/ESI/PT', 19, '2021-07-13 11:22:01', 1),
(5470, 5324, 16, 4, 0, 'good candidate ', 8, '2021-07-13 11:31:58', 1),
(5471, 4960, 53, 7, 0, 'kindly confirm DOJ', 8, '2021-07-13 12:00:26', 1),
(5472, 5418, 20, 7, 3, 'selected for my team, kindly negotiate salary and finalize for joining', 8, '2021-07-13 12:21:19', 1),
(5473, 5406, 59, 5, 0, 'Candidate not sure on the Sustainability, very basic knowledge only in the excel. Not much comfortable on the Service Agreement', 60, '0000-00-00 00:00:00', 1),
(5474, 5420, 59, 5, 0, 'Will not suits for our Recruiter Role. Handling Pressure doubtful, Sustainability Doubt', 60, '0000-00-00 00:00:00', 1),
(5475, 5400, 59, 5, 0, 'Fresher for Mern Stack, Not much comfortable on the service Agreement. No basic knowledge ', 60, '0000-00-00 00:00:00', 1),
(5476, 5411, 59, 5, 0, 'Communication  is good, Fresher for the Recruiter Role,Salary Expectation is very high around 20K', 60, '0000-00-00 00:00:00', 1),
(5477, 5415, 59, 5, 0, 'Yet to complete her graduation, not suitable for our roel', 60, '0000-00-00 00:00:00', 1),
(5478, 5412, 59, 5, 0, 'Not suits for our Recruiter profile, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5479, 5421, 59, 2, 0, 'Candidate has been scheduled for 2nd F2F on Monday, Need to confirm, very basic knowledge in the  MERN, Can be trained ', 60, '0000-00-00 00:00:00', 1),
(5480, 5324, 59, 7, 0, 'Selected for Thiyagu Team with CTC - 192000 includes PF/ESI/PT', 16, '2021-07-13 04:55:57', 1),
(5481, 5414, 60, 1, 0, NULL, 59, '2021-07-13 05:21:37', 1),
(5482, 5324, 60, 1, 0, NULL, 59, '2021-07-13 05:24:09', 1),
(5483, 5418, 59, 7, 0, 'Selected for Srikanth Team with CTC 204000 included PF/ESI/PT', 20, '2021-07-13 05:27:25', 1),
(5484, 5418, 60, 1, 0, NULL, 59, '2021-07-13 05:35:45', 1),
(5485, 5280, 59, 3, 0, 'Selected for Tiruvallur Team with cTC 120000 includes PF/ESI/PT dedcutions', 14, '2021-07-14 05:23:32', 1),
(5486, 5436, 59, 5, 0, 'No commuication, not open up will not fir for our role', 60, '0000-00-00 00:00:00', 1),
(5487, 5432, 59, 5, 0, '5050 profile,can check for CRM-Processed for 2nd level, but left without attending', 60, '0000-00-00 00:00:00', 1),
(5488, 5435, 59, 5, 0, 'Not communicating ,will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5489, 5437, 59, 5, 0, 'Not suits for the role, will not sustain for a long and handling pressure doubt\n', 60, '0000-00-00 00:00:00', 1),
(5490, 5438, 59, 5, 0, 'Can Give A Try For Health Sales, Bdm Shanmugam Had A Review On The Profile.Salary Exoectation is there', 60, '0000-00-00 00:00:00', 1),
(5491, 5422, 59, 2, 0, 'Will come for 2nd level Interview with the joining process may carry on the same day', 60, '0000-00-00 00:00:00', 1),
(5492, 5430, 59, 4, 0, '5050 profile, give a try for esale. Convincing not much comfortable, kindly check and let me know', 60, '0000-00-00 00:00:00', 1),
(5493, 5433, 59, 5, 0, 'No degree,5050 have exp in Telecaller,processed for 2nd round but left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(5494, 5434, 59, 5, 0, 'No sustainability in the profile, checked with 2nd level and got rejected. Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5495, 5441, 8, 4, 0, 'fresher, job need, okay for calling and expt is 9-10k', 7, '0000-00-00 00:00:00', 1),
(5496, 5439, 8, 4, 0, 'job need, okay for calling, fresher', 7, '0000-00-00 00:00:00', 1),
(5497, 5439, 53, 7, 0, 'selected for thiruvallur branch. pls cnfrm sal and joining date', 8, '2021-07-15 10:50:24', 1),
(5498, 5441, 53, 4, 0, 'Selected For Thiruvallur Branch. Pls Cnfrm Sal And Joining Date', 8, '2021-07-15 10:52:40', 1),
(5499, 5354, 59, 3, 0, 'Selected for RajKumar with CTC - 350000 includes PF/PT deductions', 18, '2021-07-15 12:22:55', 1),
(5500, 5430, 11, 1, 0, NULL, 59, '2021-07-15 01:15:59', 1),
(5501, 5439, 59, 3, 0, 'Selected for Tiruvallur Location with CTC 120000 includes PF/ESI/PT', 53, '2021-07-15 02:51:56', 1),
(5502, 5441, 59, 3, 0, 'Selected for Tiruvallur Location with CTC 120000 includes PF/ESI/PT deductions', 53, '2021-07-15 02:52:22', 1),
(5503, 5407, 8, 4, 0, 'has 2yr exp in calling 12k, no laptop will join directly, from arakkonam.', 7, '0000-00-00 00:00:00', 1),
(5504, 5407, 53, 7, 0, 'selected', 8, '2021-07-15 04:58:25', 1),
(5505, 5431, 59, 5, 0, 'Fresher,No knowledge on the skills,will not sustain for a long ,candidate clearly states that he is not much comfortable with this profile too', 60, '0000-00-00 00:00:00', 1),
(5506, 3322, 59, 7, 0, 'Candidate Need To Be Scheduled For F2F,2nd Round Of Discussion. Communication Average. Based On  F2F Oly Can Be Decided On  The Position / Candidate attended interview and got selected for Intern cum employment', 60, '0000-00-00 00:00:00', 1),
(5507, 5428, 59, 5, 0, 'Not comfortable with the terms and conditions, fresher profile', 60, '0000-00-00 00:00:00', 1),
(5508, 5426, 11, 4, 0, 'candidate ok E sales ', 60, '0000-00-00 00:00:00', 1),
(5509, 5456, 69, 4, 0, 'Candidate Couldxquotve been mapped wrongly.', 60, '0000-00-00 00:00:00', 1),
(5510, 5458, 59, 5, 0, 'Will not fit for our role, Age around 39 yrs,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5511, 5427, 59, 5, 0, 'Will not suits for our client role.', 60, '0000-00-00 00:00:00', 1),
(5512, 5448, 59, 5, 0, ' Do Not Have Much Importance Towards The Job, Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(5513, 5454, 59, 5, 0, 'Not suits for Our UI/UX position, she is only into the design part,will not sustain for a long ,not much comfortable on the terms xxamp conditions', 60, '0000-00-00 00:00:00', 1),
(5514, 5460, 59, 5, 0, 'No basic knowledge,not comfortable on the terms and conditions, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5515, 5472, 59, 5, 0, 'Communication Average, no basic knowledge in the recruitment .No focus on the particular position', 60, '0000-00-00 00:00:00', 1),
(5516, 5471, 59, 5, 0, 'No Communication, will not handle the pressure. Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(5517, 5466, 59, 5, 0, 'Not much ok with SA, Currently working as Technical Associate. Previous 7 months Exp in React JS. Min Salary Expectation is 16K ', 60, '0000-00-00 00:00:00', 1),
(5518, 5477, 59, 5, 0, 'No Stability,every 6 months changed the job. Seems not much clear on the previous experiences', 60, '0000-00-00 00:00:00', 1),
(5519, 5480, 53, 7, 0, 'selected', 60, '0000-00-00 00:00:00', 1),
(5520, 4727, 59, 3, 0, 'Selected for Tiruvallur Location with CTC 120000 - Cash mode 5%', 53, '2021-07-17 05:20:22', 1),
(5521, 5426, 29, 1, 0, NULL, 11, '2021-07-17 05:22:32', 1),
(5522, 5480, 59, 3, 0, 'Selected for Dhanalakshmi Team with CTC - 132000 - Cash mode', 53, '2021-07-19 12:27:36', 1),
(5523, 5407, 59, 3, 0, 'Selected for Tiruvallur location  with CTC 132000 includes PF/ESI', 53, '2021-07-19 12:27:54', 1),
(5524, 5282, 8, 4, 0, 'Fresher, Okay With Calling And Expt Is 9-10k. Dont Have Laptop, Will Join Office Directly', 7, '0000-00-00 00:00:00', 1),
(5525, 5134, 53, 5, 0, 'Not suit for telecalling, Low Voice', 8, '2021-07-19 04:43:46', 1),
(5526, 5282, 53, 7, 0, 'selected', 8, '2021-07-19 04:44:11', 1),
(5527, 5482, 59, 5, 0, 'Communication Average, Candidate can join on the next day, scheduled for 2nd level but the candidate left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(5528, 5475, 59, 5, 0, 'Not much comfortable with the service Agreement, Attitude issue', 60, '0000-00-00 00:00:00', 1),
(5529, 5470, 59, 5, 0, 'Fresher, no basic knowledge in React,Seems not much comfortable with the service Agreement ,also not ready to submit the documents', 60, '0000-00-00 00:00:00', 1),
(5530, 5493, 59, 5, 0, 'No relevant Profile,Direct Walk in. Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5531, 5489, 59, 4, 0, 'Internal Team Reference - Not much ok with this profile.50/50 for the RE position,please do check', 60, '0000-00-00 00:00:00', 1),
(5532, 5487, 59, 4, 0, 'Internal Team Reference,50/50 please do check for RE', 60, '0000-00-00 00:00:00', 1),
(5533, 5473, 59, 5, 0, 'Ongoing Course Related To React Js, Need Time To Confirm On The Sa, Career Gap If Candidate Comes Back Lets Decide On The Profile', 60, '0000-00-00 00:00:00', 1),
(5534, 5455, 59, 5, 0, 'Candidate Scheduled Final Interview With Some Other Company. Applied For React Native, Have Experience In React Native But The Salary Expectation Is Ver High', 60, '0000-00-00 00:00:00', 1),
(5535, 5474, 59, 5, 0, 'Will not handle the pressure, only basic knowledge in HTML,CSS,JS. Sustainability doubt on this profile', 60, '0000-00-00 00:00:00', 1),
(5536, 5489, 57, 5, 0, 'not yet seen the candidate .. kindly check and update ', 59, '2021-07-19 07:05:20', 1),
(5537, 5487, 57, 5, 0, 'candidate is not for my team thank you \n', 59, '2021-07-19 07:06:48', 1),
(5538, 5421, 59, 3, 0, 'Joined as a Intern (will be in Observation for 7 Days till 25-Jul) post observation Internship starts with the stipend 0f 3500 for 5 months then as an employee starts with the pay of 8000', 59, '2021-07-19 07:21:18', 1),
(5539, 5422, 59, 3, 0, 'Joined As A Intern (Will Be In Observation For 7 Days Till 25-Jul) Post Observation Internship Starts With The Stipend 0f 3500 For 5 Months Then As An Employee Starts With The Pay Of 8000', 59, '2021-07-19 07:21:36', 1),
(5540, 5491, 59, 4, 0, 'Communication OK can give a try for CRM - Tiruvallur Location. Candidate will directly walk in for the F2F interview in Tiruvallur Location', 60, '0000-00-00 00:00:00', 1),
(5541, 5495, 59, 5, 0, 'Duplicate profile Submitted twice', 60, '0000-00-00 00:00:00', 1),
(5542, 5501, 59, 5, 0, 'Communication OK, Fresher For The Recruiter Role. Left Without Attending  The 2nd Round Of Discussion. Sustainability doubt and not much comfortable with the Service Agreement', 60, '0000-00-00 00:00:00', 1),
(5543, 5500, 59, 5, 0, 'Communication Average, Fresher for the recruiter role. Left without attending  the 2nd round of discussion', 60, '0000-00-00 00:00:00', 1),
(5544, 5490, 59, 5, 0, 'No Basic  knowledge in  HTML React, she was much comfortable with Python. Will not Comfortable for our role. Sustainability Doubt', 60, '0000-00-00 00:00:00', 1),
(5545, 5483, 59, 5, 0, 'Not much comfortable on the TxxampC, need to check with parents.No basic knowledge in React HTML CSS Javascripti, she is currently working in Telesales but looking for IT', 60, '0000-00-00 00:00:00', 1),
(5546, 2011, 59, 5, 0, 'No Relevant Exp xxamp no knowledge in .NEt C#,not suits for the client openings', 60, '0000-00-00 00:00:00', 1),
(5547, 5506, 69, 5, 0, 'High expectation of salary', 60, '0000-00-00 00:00:00', 1),
(5548, 5282, 59, 3, 0, 'Selected for Tiruvallur Location in cash mode ', 53, '2021-07-20 04:34:05', 1),
(5549, 5491, 53, 5, 0, 'not suit fr TC', 59, '2021-07-20 06:43:51', 1),
(5550, 5442, 59, 5, 0, 'No relevant Exp, Will not Sustain for a long. not much focused on the requirement', 60, '0000-00-00 00:00:00', 1),
(5551, 5516, 59, 3, 0, 'Selected for Raj Kumar CRM Role,with CTC 146496 inlcudes PT only 208 deduction in client advisory Prop Staff', 60, '0000-00-00 00:00:00', 1),
(5552, 5513, 59, 5, 0, 'Candidate holding an offer and not much comfortable with the service Agreement. Communication is good ', 60, '0000-00-00 00:00:00', 1),
(5553, 5444, 59, 7, 0, 'Selected for Intern Cum Employment Offered 3.5 K Stipend for 5 months follow up with the Employment starts with the pay of 8000 - 22 Jul 2021 joining\n', 60, '0000-00-00 00:00:00', 1),
(5554, 5478, 59, 5, 0, 'Profile is ok, but salary expectation is very high and he will not  sustain for long', 60, '0000-00-00 00:00:00', 1),
(5555, 5515, 30, 7, 0, 'Candidate shortlisted for Sourcing BDM and  ctc 4.5lac  Finalized. after performance of three month(based on target)  he will promote nON SOURCING BDM. once  target achieved promotion salary will revise  in the month of november 5.5lac  to 6lac . other details i forward in mail communication.', 60, '0000-00-00 00:00:00', 1),
(5556, 5512, 8, 4, 0, 'fresher, job need, okay with 9-10k,father doing box biz.', 7, '0000-00-00 00:00:00', 1),
(5557, 5514, 8, 4, 0, 'fresher, job need, okay with 10k', 7, '0000-00-00 00:00:00', 1),
(5558, 5512, 53, 7, 0, 'Kindly Confirm DOJ', 8, '2021-07-21 04:51:30', 1),
(5559, 5514, 53, 7, 0, 'kindly confirm DOJ', 8, '2021-07-21 04:52:03', 1),
(5560, 5515, 59, 7, 0, 'Selected as Sourcing BDM - 4.5 LPA includes PF/PT.3 months Target will be given  and based on the target achieved, will be promoted and the salary will be revised - Commitment will be shared over the mail by Sathish Kumar - Bangalore', 30, '2021-07-21 05:05:49', 1),
(5561, 5515, 60, 1, 0, NULL, 59, '2021-07-21 05:30:36', 1),
(5562, 5516, 33, 4, 3, 'please check sustainability and candidate asking 15k salary please negotiate it ', 59, '2021-07-21 07:16:59', 1),
(5563, 5444, 60, 1, 0, NULL, 59, '2021-07-21 07:19:29', 1),
(5564, 5527, 59, 5, 0, 'Not much open with our terms and conditions, no sustainability in his profile.  Will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(5565, 5517, 59, 5, 0, 'No Basic knowledge, not even clear o n the skill. Will not suitable for our role', 60, '0000-00-00 00:00:00', 1),
(5566, 5518, 59, 5, 0, 'Yet to complete his graduation, Focusing into Java positions.1 more year to go', 60, '0000-00-00 00:00:00', 1),
(5567, 5519, 59, 5, 0, 'He is doing part time trainer in shuttle,No basics of Javascript,will not suits for our role and sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(5568, 5520, 59, 5, 0, 'Focusing Positions into Java/Python. Not suits for our role.Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5569, 5526, 59, 5, 0, 'Rejected, Not suitable for Telesales Sales.Not much open up', 60, '0000-00-00 00:00:00', 1),
(5570, 5528, 59, 5, 0, 'Internal REference ,not much open up. not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5571, 5529, 59, 5, 0, 'Not suits for our sales, will not sustain and handle our pressure', 60, '0000-00-00 00:00:00', 1),
(5572, 5534, 59, 4, 0, 'No relevant Exp, Communication ok, but seems not much matured.Saalry expectation is high, Check for Esales 5050 ', 60, '0000-00-00 00:00:00', 1),
(5573, 5523, 59, 5, 0, 'Not strong in Basics, Exams yet to complete. Mostly focus only for the Intern. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5574, 5550, 59, 5, 0, '50/50 can give a try for Esale RM, but left without attending  the 2nd level Interview', 60, '0000-00-00 00:00:00', 1),
(5575, 5537, 59, 5, 0, 'Can Give A Try For .NET, Focusing Much Into Gaming But Have Knowledge In .Net With C#.5050 Profile Can Give A Try - Rejected in the client round', 60, '0000-00-00 00:00:00', 1),
(5576, 5549, 59, 5, 0, 'Location Constraint, Sustainability doubts. Will not handle pressure. Not suits for our recruiter Role. He left previous company because of job pressure', 60, '0000-00-00 00:00:00', 1),
(5577, 5546, 59, 5, 0, 'No Communication, Fresher for  the recruitment Role.He will not handle the pressure and will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5578, 5551, 59, 5, 0, 'No communication, No sales Experience will not suits for our role.', 60, '0000-00-00 00:00:00', 1),
(5579, 5543, 59, 5, 0, 'Not open for Terms xxamp conditions and the expectation is very high. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5580, 5542, 59, 5, 0, 'Not open for Terms and conditions,not interested much into the coding. She focus much into Java Python', 60, '0000-00-00 00:00:00', 1),
(5581, 5516, 18, 7, 4, 'CRM Profile. Expected salary is 15K but can negotiate to 12000. Ready to join Immedieatly', 33, '2021-07-23 04:49:41', 1),
(5582, 5530, 59, 2, 0, '5050 for .Net, having knowledge in ASP. Net MVC only and also in C#. Keen to learn in Window Form, can give a try for client', 60, '0000-00-00 00:00:00', 1),
(5583, 5562, 59, 4, 0, 'Communication Ok, But Not Convincible For The Sales Profile. Location Too Long For The Candidate', 60, '0000-00-00 00:00:00', 1),
(5584, 5539, 59, 5, 0, 'No communication,Having knowledge only in Aap.Net \nsalary Expectation is very high and will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5585, 5561, 59, 3, 0, 'Selected for Sarath Team with CTC-192000 includes PF/ESI. Target will given to the candidate and if he Achieved the target salary will be revised with the addition of 20k', 60, '0000-00-00 00:00:00', 1),
(5586, 5564, 59, 3, 0, 'Selected for Kannan Team - RE with CTC 186000 includes PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(5587, 5562, 13, 5, 0, 'Hold On Long Pending ', 59, '2021-07-24 02:39:56', 1),
(5588, 5561, 51, 4, 0, 'selected for final round', 59, '2021-07-24 02:50:17', 1),
(5589, 5564, 19, 7, 4, 'Shortlisted', 59, '2021-07-24 02:52:45', 1),
(5590, 5564, 59, 3, 0, 'Selected for Kannan Team - RE with CTC 186000 includes PF/ESI/PT', 19, '2021-07-24 03:38:44', 1),
(5591, 5570, 59, 5, 0, 'Will Come For The Joining On 28-Jul,Need To Collect Original Certificates Tomorrow,Selected For Mern Stack Can Be Trained / Candidate didnt turn back ', 60, '0000-00-00 00:00:00', 1),
(5592, 5574, 59, 5, 0, 'Interviewed by Gokul in the 2nd round and got rejected, Will not sustain for a long. Most focus only on the Salary', 60, '0000-00-00 00:00:00', 1),
(5593, 5559, 59, 5, 0, 'Not open with TxxampC. Having basic knowledge in HTML,CSS,JS with not much importance on the job', 60, '0000-00-00 00:00:00', 1),
(5594, 5553, 59, 5, 0, 'Not suits for our client position, she is comfortable only for ASP.Net MVC positions ', 60, '0000-00-00 00:00:00', 1),
(5595, 5581, 59, 5, 0, 'Not suitable for our Mern Stack, also not for our client positons', 60, '0000-00-00 00:00:00', 1),
(5596, 5582, 59, 5, 0, 'Not much comfort with TxxampC,no basic Knowledge. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(5597, 5555, 59, 5, 0, 'Much interested towards Angular Positions only, will not handle the work pressure.', 60, '0000-00-00 00:00:00', 1),
(5598, 5547, 59, 5, 0, 'No basic knowledge. He is much into Java, C. Will not handle the work pressure', 60, '0000-00-00 00:00:00', 1),
(5599, 5516, 59, 3, 0, 'Selected for Raj Kumar CRM Role,with CTC 146496 inlcudes PT only 208 deduction in client advisory Prop Staff', 18, '2021-07-26 06:30:02', 1),
(5600, 5563, 59, 5, 0, 'Fresher ,little of basic knowledge, Much into PHP, Min Salary Expectation  is 20K.Will not sustain for a long, Focusing much for Tier level companies\n', 60, '0000-00-00 00:00:00', 1),
(5601, 5531, 59, 5, 0, 'No relevant Exp in Winforms, having knowledge in ASP.Net only. age around 35 yrs. More of Career Gap', 60, '0000-00-00 00:00:00', 1),
(5602, 5535, 59, 5, 0, 'Focussing only for Internship, if she joins also will not sustain more than 2 yrs. Too long distance.Not open comfortable with txxampC', 60, '0000-00-00 00:00:00', 1),
(5603, 5573, 59, 5, 0, '	Need Some Time To Learning, No Basic Knowledge .Yet to Get The Document From College, Currently Working In Voice Process. Need Some Time To Decide ', 60, '0000-00-00 00:00:00', 1),
(5604, 5585, 59, 5, 0, 'Internal Reference, No communication and no stability in the previous experience. Will not suits for our role.', 60, '0000-00-00 00:00:00', 1),
(5605, 5576, 59, 5, 0, 'Having Exp in React Native,Little Attitude Issue,Salary expectation is very high.Not much comfortable with SA. No sustainability in previous exp.Not in smooth manner with the previous Companies\n', 60, '0000-00-00 00:00:00', 1),
(5606, 5509, 59, 5, 0, 'Client Interview Rejected', 60, '0000-00-00 00:00:00', 1),
(5607, 5597, 59, 5, 0, 'Education yet to complete.2022 Passout Students.No basic knowledge relevant to our technoloiges.Will not sustain for a long.', 60, '0000-00-00 00:00:00', 1),
(5608, 5599, 59, 5, 0, 'Education Yet To Complete.2022 Passout Students.No Basic Knowledge Relevant To Our Technoloiges.Will Not Sustain For A Long.', 60, '0000-00-00 00:00:00', 1),
(5609, 5606, 59, 5, 0, 'Currently working as an Assistant Engineer and fresher for the Recruiter Profile. Current Salary PM is 18K and the expectation is more than .Not much comfortable with the service Agreement', 60, '0000-00-00 00:00:00', 1),
(5610, 5604, 59, 5, 0, 'Looking for opportunities in cyber Security/Information security positions. Will not sustain for a long in our openings. Plan to go with CCNA/CCNP certifications', 60, '0000-00-00 00:00:00', 1),
(5611, 5601, 59, 4, 0, '50/50 Career Gap Age around 35 yrs, No relevant Experience. Need of Job in a priority, sustainability doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(5612, 5590, 59, 5, 0, 'Holding an offer with Net Access for a month training and then with 10k Salary and Hike after an year. Much comfortable and the previous exp is in PHP. Will not sustain for a long in our domain', 60, '0000-00-00 00:00:00', 1),
(5613, 5603, 8, 4, 3, 'completed his diploma and done many part time jobs, job in need. expt is 14-15k, okay with 12-13k. fresher for sales.', 60, '0000-00-00 00:00:00', 1),
(5614, 5607, 59, 5, 0, 'No Communication, no stability in the previous experiences. Will not suits for our Telecaller/sales profile', 60, '0000-00-00 00:00:00', 1),
(5615, 5601, 11, 1, 0, NULL, 59, '2021-07-27 03:16:01', 1),
(5616, 5534, 11, 1, 0, NULL, 59, '2021-07-27 03:33:08', 1),
(5617, 5530, 59, 5, 0, '5050 For .Net, Having Knowledge In ASP. Net MVC Only And Also In C#. Keen To Learn In Window Form, Can Give A Try For Client - Rejected in the client round of Interview', 59, '2021-07-27 03:33:53', 1),
(5618, 5561, 29, 7, 0, 'Selected for RM - Sarath team, Salary details refer resume, hike of 2k in 2 months biz of 1.50 lacs each month..check during training and confirm', 51, '2021-07-27 04:52:55', 1),
(5619, 5603, 24, 7, 4, 'candidate selected .. ', 8, '2021-07-27 05:55:35', 1),
(5620, 5603, 59, 3, 0, 'Selected for Suthagar team with CTC 180000 includes \nPF/ESI/PT Deduction ', 24, '2021-07-27 05:58:20', 1),
(5621, 5561, 59, 3, 0, 'Selected for Sarath Team with CTC-192000 includes PF/ESI. Target will given to the candidate and if he Achieved the target salary will be revised with the addition of 20k', 29, '2021-07-28 04:56:47', 1),
(5622, 5552, 8, 4, 3, 'has 2yr exp and okay with sales and expt is 15k, check with sustainability.', 60, '0000-00-00 00:00:00', 1),
(5623, 5552, 24, 4, 0, 'Select for next round', 8, '2021-07-28 05:43:53', 1),
(5624, 5626, 59, 5, 0, 'Communication Average, Very Slow.No sustainability in his previous exp. Left previous job due to pressure. Salary Exp is very high', 60, '0000-00-00 00:00:00', 1),
(5625, 5488, 59, 5, 0, 'CLient round Rejected', 60, '0000-00-00 00:00:00', 1),
(5626, 5621, 59, 5, 0, '	Can Schedule Him For The Second Level Of Interview, He Is Having Multiple Other Interview With Companies. If He Come Back Let See / Candidate didnt turn back ', 60, '0000-00-00 00:00:00', 1),
(5627, 5556, 59, 5, 0, 'Poor Communication, No basic knowledge, will not handle our pressure. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(5628, 5572, 59, 5, 0, 'Looking for Testing Profile, Worked with RANE. Not much focused towards the career. Salary Expectation is also too high', 60, '0000-00-00 00:00:00', 1),
(5629, 5605, 59, 5, 0, 'Need to check with family on the Service Agreement, Sustainability doubts on her profile. Will not handle our pressure. No basic knowledge in Javascript. She is much into Python ', 60, '0000-00-00 00:00:00', 1),
(5630, 5567, 59, 5, 0, 'Didnxquott come back after checking with his family on TxxampC. Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(5631, 5618, 59, 5, 0, 'Communication Average ,Not much comfortable with the service Agreement .Expectation is very high', 60, '0000-00-00 00:00:00', 1),
(5632, 3960, 59, 5, 0, 'No Communication, Salary Expectation is very high. No understanding. Will  not sustain with us for a long.', 60, '0000-00-00 00:00:00', 1),
(5633, 5620, 8, 4, 0, 'will come office for next round, fresher expt is 10k, job need. no father.', 60, '0000-00-00 00:00:00', 1),
(5634, 5552, 19, 7, 3, 'Next Round ', 24, '2021-07-28 08:07:50', 1),
(5635, 5552, 59, 3, 0, 'Selected for Kannan Team with CTC - 216000 includes PF/ESI/PT deductions', 19, '2021-07-29 12:29:53', 1),
(5636, 5609, 59, 5, 0, 'Focus much for Govt Exams and he is having knowledge much with Python. Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5637, 5630, 59, 5, 0, 'Fresher, high CTC Expectation, not much ok with Service Agreement.', 60, '0000-00-00 00:00:00', 1),
(5638, 5632, 59, 5, 0, 'Communication Average,  Salary Expectation is high. Not much comfortable with terms xxamp conditions', 60, '0000-00-00 00:00:00', 1),
(5639, 5612, 59, 5, 0, 'Attitude Issue, will not fit for our role.', 60, '0000-00-00 00:00:00', 1),
(5640, 5623, 59, 3, 0, 'Selected for Mern Stack with Stipend initial 3,5k Stipend for 5 month post intern starts with the salary of 8000', 60, '0000-00-00 00:00:00', 1),
(5641, 5644, 59, 5, 0, 'No communication, will not sustain and handle pressure', 60, '0000-00-00 00:00:00', 1),
(5642, 5511, 59, 5, 0, 'Will Come For System Task, Having 1 Yr Of Experience In React Native - Mobile/Web Applications - Task has been given and not up to the mark as we expected. We need to train him a lot. Candidate notice is 30 Days', 60, '0000-00-00 00:00:00', 1),
(5643, 5622, 59, 5, 0, 'No Communication,not much open up no basic knowledge ,Will not handle the pressure and sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(5644, 5624, 59, 5, 0, 'Looking only for Python positions', 60, '0000-00-00 00:00:00', 1),
(5645, 5648, 59, 3, 0, 'Selected for Kannan Team internal team reference with cTC 168000 includes PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(5646, 5652, 59, 3, 0, 'Selected for Suthagr TEam with CTC 156000 includes PF/ESI/PT deductions', 60, '0000-00-00 00:00:00', 1),
(5647, 5648, 19, 4, 4, 'Referance', 59, '2021-07-31 05:57:10', 1),
(5648, 5652, 24, 4, 0, 'select for next round .. expected high package.. ', 59, '2021-07-31 05:59:19', 1),
(5649, 5654, 59, 5, 0, 'Communication ok, left without  attending the second level interview', 60, '0000-00-00 00:00:00', 1),
(5650, 5651, 59, 5, 0, 'Having his own business-GYM products manufacturing. Looking for Recruiter position with the high pay. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5651, 5650, 59, 5, 0, 'Notice period 30 days,1 yr Exp and Salary expectation is  High. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(5652, 5634, 59, 5, 0, 'No relevant experience in DotNet, have work ep in Digital Marketing  but dont have much knowledge on that .Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5653, 5649, 59, 5, 0, 'Not open for Telesales, looking only for 2d designing jobs. Will not  handle the pressure', 60, '0000-00-00 00:00:00', 1),
(5654, 5647, 59, 5, 0, 'Communication okand salary exp in high and seems not comfort with TxxampC', 60, '0000-00-00 00:00:00', 1),
(5655, 5652, 59, 3, 0, 'Selected for Suthagr TEam with CTC 156000 includes PF/ESI/PT deductions', 24, '2021-07-31 06:13:45', 1),
(5656, 5648, 59, 3, 0, 'Selected for Kannan Team internal team reference with cTC 168000 includes PF/ESI/PT', 19, '2021-08-02 10:39:44', 1),
(5657, 5679, 8, 5, 0, 'very low voice and not bold', 7, '0000-00-00 00:00:00', 1),
(5658, 5681, 8, 4, 0, 'fresher for calling and sales. has exp in core, expt is 12-15k, check with sustainability once.', 7, '0000-00-00 00:00:00', 1),
(5659, 5672, 8, 4, 0, 'has 2yr exp in AR calling, good in  speaking script, expt 13-15k. check with convincing once.', 7, '0000-00-00 00:00:00', 1),
(5660, 5673, 8, 5, 0, 'has around 5yr exp, no product knowledge.', 7, '0000-00-00 00:00:00', 1),
(5661, 4483, 59, 4, 0, 'Check for Digital Marketing-Communication ok having Knowledge and freelance exp in Digital Marketing', 60, '0000-00-00 00:00:00', 1),
(5662, 5672, 24, 4, 0, 'cross check', 8, '2021-08-02 05:00:20', 1),
(5663, 5635, 59, 5, 0, 'No basic knowledge in .Net Profile few months back attended interview for RM and got rejected', 60, '0000-00-00 00:00:00', 1),
(5664, 5641, 59, 5, 0, '	Not Much Clear With TxxampC,But Showing Interest On The Profile, Udhay Will Interview And Let Us Decide / But she didnt turn back on the next day for the interview', 60, '0000-00-00 00:00:00', 1),
(5665, 5681, 24, 4, 0, 'Cross check with experience ', 8, '2021-08-02 05:02:06', 1),
(5666, 5653, 59, 3, 0, 'Selected for Suthagar Team with CTC 216000 includes PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(5667, 5671, 59, 4, 0, 'check for CRM, internal team reference but the distance -58km up and down', 60, '0000-00-00 00:00:00', 1),
(5668, 5560, 59, 4, 0, '5050 check for UI,Exp in UI but no exp in  the areas of UX', 60, '0000-00-00 00:00:00', 1),
(5669, 5660, 59, 5, 0, 'Didnt trun back with the task provided', 60, '0000-00-00 00:00:00', 1),
(5670, 5677, 59, 4, 0, 'check for Elite - 5050', 60, '0000-00-00 00:00:00', 1),
(5671, 5676, 59, 5, 0, 'Looking only for non voice process', 60, '0000-00-00 00:00:00', 1),
(5672, 5674, 59, 5, 0, 'Location constraint - Up and down 76 kms, long back scheduled interview and not attende.', 60, '0000-00-00 00:00:00', 1),
(5673, 5667, 59, 5, 0, 'No Exp, fresher, sustainability doubts.Will not fit for our sales profile', 60, '0000-00-00 00:00:00', 1),
(5674, 5665, 59, 5, 0, 'Looking for Java/Python openings.Not open for our technology', 60, '0000-00-00 00:00:00', 1),
(5675, 5664, 59, 5, 0, 'Looking only for testing positions,no relevant for our roles', 60, '0000-00-00 00:00:00', 1),
(5676, 5670, 59, 5, 0, 'Not open for Voice process, focusing only for the non voice openings', 60, '0000-00-00 00:00:00', 1),
(5677, 5666, 59, 5, 0, 'Fresher,but updated her resume with Fake Exp,Will not suitable for our sales', 60, '0000-00-00 00:00:00', 1),
(5678, 4483, 69, 4, 0, 'Task Has Been Assigned', 59, '2021-08-02 05:20:17', 1),
(5679, 5660, 69, 4, 0, 'Task has been assigned.', 59, '2021-08-02 05:29:36', 1),
(5680, 5660, 59, 5, 0, 'Didnt trun back with the task provided', 69, '2021-08-02 05:30:34', 1),
(5681, 4483, 60, 1, 0, NULL, 69, '2021-08-02 05:30:53', 1),
(5682, 5560, 69, 5, 0, 'Not enough knowledge', 59, '2021-08-02 05:32:29', 1),
(5683, 5677, 14, 5, 0, 'Not suitable for this profile', 59, '2021-08-02 05:43:15', 1),
(5684, 5671, 33, 1, 0, NULL, 59, '2021-08-02 05:44:37', 1),
(5685, 5653, 24, 7, 0, 'expct 18k salary', 59, '2021-08-02 05:48:49', 1),
(5686, 5595, 59, 5, 0, 'Career Gap - 8 years,1 yr experience into ASP.Net, high Salary Expectation. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5687, 5672, 19, 7, 4, 'Sustainability', 24, '2021-08-03 10:19:31', 1),
(5688, 5681, 59, 5, 0, 'Suthagar rejected the profile.by mistake he scheduled the candidate for next level with me', 24, '2021-08-03 10:21:58', 1),
(5689, 5653, 59, 3, 0, 'Selected for Suthagar Team with CTC 216000 includes PF/ESI/PT', 24, '2021-08-03 10:23:02', 1),
(5690, 5620, 14, 5, 0, 'Not suitable for this profile', 8, '2021-08-03 11:22:30', 1),
(5691, 5633, 59, 5, 0, 'No Winform Exp she is fully into Web application.* month Exp and her salary Exp is very high', 60, '0000-00-00 00:00:00', 1),
(5692, 5611, 59, 5, 0, 'No Relevant Exp, Working in the Manufacturing Company for 3 months and looking for openings in IT company.No basic knowledge in IT skills,salary Expectation is high,will not sustain for aa long', 60, '0000-00-00 00:00:00', 1),
(5693, 5696, 8, 4, 0, 'fresher, father-daily wages and expt 12k.job need.', 7, '0000-00-00 00:00:00', 1),
(5694, 5698, 8, 4, 0, 'no calling Experience and has 2yr exp in car showroom sales, expt is 15k', 7, '0000-00-00 00:00:00', 1),
(5695, 5696, 24, 7, 0, 'Selected ', 8, '2021-08-03 05:51:17', 1),
(5696, 5698, 24, 5, 0, 'Expct highe salary but not fit for that.. and also speaking not fluent', 8, '2021-08-03 05:52:14', 1),
(5697, 5610, 59, 3, 0, 'Selected for Internship\n1st month Unpaid Internship, then 3500 Stipend for 5 months which continues with 8k salary includes 3 yrs overall Service Agreement', 60, '0000-00-00 00:00:00', 1),
(5698, 5696, 59, 3, 0, 'Selected for Suthagar team includes PF/ESI/PT', 24, '2021-08-03 06:03:56', 1),
(5699, 5207, 13, 7, 4, 'ok 10k Salary kindly confirm date of joining', 8, '2021-08-03 06:09:46', 1),
(5700, 5182, 13, 5, 0, 'Lockdown Period Hold Long Pending ', 8, '2021-08-03 06:10:11', 1),
(5701, 5237, 14, 5, 0, 'Not suitable for this profile', 8, '2021-08-03 06:10:43', 1),
(5702, 5697, 24, 4, 0, 'expect highe salary ..  ', 60, '0000-00-00 00:00:00', 1),
(5703, 5705, 59, 3, 0, 'Selected for Elite RE with CTC 120000 includes PF/ESI/PT\n', 60, '0000-00-00 00:00:00', 1),
(5704, 5706, 59, 5, 0, 'yet to complete one more semester ,will not fit for our telesales profile', 60, '0000-00-00 00:00:00', 1),
(5705, 5629, 59, 5, 0, 'Not open with TxxampC,no basic knowledge in IT Skills will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5706, 5692, 59, 5, 0, 'Not open for TxxampC,CCNA certified candidate,no basic in our skills will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5707, 5701, 59, 5, 0, 'Looking only for intern, college yet to complete', 60, '0000-00-00 00:00:00', 1),
(5708, 5687, 59, 5, 0, '2 months Intern Exp .she holds an offer with net access for 15K salary and she expects for the more.Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5709, 5703, 59, 5, 0, 'No communication, internal team reference, will not handle the pressure. Sustainability doubts\n', 60, '0000-00-00 00:00:00', 1),
(5710, 5250, 53, 5, 0, 'Not Suit For Telecalling, Sustainabillity issue', 8, '2021-08-03 06:25:38', 1),
(5711, 5705, 14, 7, 4, 'Salary 10k need to confirm joining date', 59, '2021-08-03 06:36:43', 1),
(5712, 5697, 59, 5, 0, 'Discussed with the candidate and asked him to share the payslio ,but no reply and not responding to the calls too.', 24, '2021-08-04 10:07:55', 1),
(5713, 5718, 59, 5, 0, 'No relevant Exp,Focus much into Java Python\n', 60, '0000-00-00 00:00:00', 1),
(5714, 5663, 59, 5, 0, 'Holding other offers and looking for high pay\n', 60, '0000-00-00 00:00:00', 1),
(5715, 5672, 59, 3, 0, 'Selected for Kannan Team with CTC 204000 includes PF/ESI/PT', 19, '2021-08-04 10:56:02', 1),
(5716, 5695, 18, 4, 4, 'Decent candidate but not having laptop. Expected salary is 22k. Shotlisted for Veben and an immed joiner', 50, '0000-00-00 00:00:00', 1),
(5717, 5699, 18, 7, 4, 'Good Candidate. But not having laptop and Bike. Informed to Get Laptop and Join on Monday (9 Aug)', 50, '0000-00-00 00:00:00', 1),
(5718, 5712, 18, 8, 0, 'Kindly Refix', 50, '0000-00-00 00:00:00', 1),
(5719, 5714, 18, 8, 0, 'Old Resume', 50, '0000-00-00 00:00:00', 1),
(5720, 5497, 59, 5, 0, 'No relevant Exp in Dotnet Winform,will not suits for the cleint requirement\n', 50, '0000-00-00 00:00:00', 1),
(5721, 5695, 40, 8, 0, 'Not attended', 18, '2021-08-04 12:39:12', 1),
(5722, 5717, 13, 5, 0, 'Hold on long pending', 50, '0000-00-00 00:00:00', 1),
(5723, 5719, 59, 5, 0, 'No relevant Exp, Fresher, Focusing on Aviation and for the time being looking for a job', 50, '0000-00-00 00:00:00', 1),
(5724, 5724, 59, 5, 0, 'Looking for non Voice', 60, '0000-00-00 00:00:00', 1),
(5725, 5699, 8, 4, 0, 'check and revert', 18, '2021-08-04 03:41:49', 1),
(5726, 5705, 59, 3, 0, 'Selected for Elite RE with CTC 120000 includes PF/ESI/PT\n', 14, '2021-08-04 03:58:02', 1),
(5727, 5720, 59, 5, 0, 'Yet to complete College 1 more year to go,Distance toolong around 72 kms up and down', 60, '0000-00-00 00:00:00', 1),
(5728, 5669, 59, 5, 0, 'No relevant Exp in Dot net WinForms, Exp into BPO Health care domain', 60, '0000-00-00 00:00:00', 1),
(5729, 5659, 59, 5, 0, 'Started her career in recruitment and moved to the IT skills internally from past 3 months. Salary Expectation is very high', 60, '0000-00-00 00:00:00', 1),
(5730, 5680, 59, 5, 0, 'Career Gap no individual learning,thinking a lot on the TxxampC seems not comfortable .Much comfortable with Python', 60, '0000-00-00 00:00:00', 1),
(5731, 5685, 59, 5, 0, 'Client Interview Rejected', 60, '0000-00-00 00:00:00', 1),
(5732, 5734, 18, 5, 3, 'Not fit for sales', 50, '0000-00-00 00:00:00', 1),
(5733, 5722, 40, 8, 0, 'Not attended', 50, '0000-00-00 00:00:00', 1),
(5734, 5723, 40, 4, 3, 'Selected for next round but 50/50. Fresher, salary as per company norms. He can join after 15days due to some family function. Having a Laptop and a bike. Location 18kms from our office', 50, '0000-00-00 00:00:00', 1),
(5735, 5725, 40, 5, 2, 'Not fit for the Job', 50, '0000-00-00 00:00:00', 1),
(5736, 5727, 59, 5, 0, 'no knowledge in the basics,no ideas on MERN,2020 passed out and Didnxquott show any interest in learning the technologies. Sustainability Doubts', 50, '0000-00-00 00:00:00', 1),
(5737, 5700, 59, 5, 0, 'no basic knowledge in Dotnet, fresher profile having knowledge in relates to c,C++.Will not suits for client requirement', 50, '0000-00-00 00:00:00', 1),
(5738, 5728, 59, 7, 0, 'Selected for the recruiter position with  salary 5000 for 3months + 15 days  after that salary will be decided', 60, '0000-00-00 00:00:00', 1),
(5739, 5742, 59, 4, 0, 'Communication ok, having exp in  Sales voice process, can give a try', 60, '0000-00-00 00:00:00', 1),
(5740, 5686, 59, 5, 0, 'Fresher,having knowledge in HTML CSS Javascript but not comfortable with TxxampC.Presuure handling xxamp Sustainability doubt', 60, '0000-00-00 00:00:00', 1),
(5741, 5747, 59, 5, 0, 'Poor Communication,no basic ideas in the recruitment,career gap,having his own business and will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5742, 5743, 59, 5, 0, 'No relevant Exp Fully into non voice process,will not handle our pressure.Not suitable', 60, '0000-00-00 00:00:00', 1),
(5743, 5745, 8, 4, 0, 'Has Around 4yr Exp, Fresher For Insurance, Expt Is 15-17k, Due To Hike Issue He Relived From Previous Company.', 60, '0000-00-00 00:00:00', 1),
(5744, 5713, 59, 2, 0, 'can schedule him for F2F client round.have exp in Winforms but seems very slow in process', 60, '0000-00-00 00:00:00', 1),
(5745, 5739, 59, 5, 0, 'No Basic Skills Knowledge,Attended Interviews And Not Joined Due To Service Agreement With Previous Offer.Not Comfortable With Our TxxampC', 60, '0000-00-00 00:00:00', 1),
(5746, 5740, 59, 5, 0, 'No Basic Skills Knowledge,Attended Interviews And Not Joined Due To Service Agreement With Previous Offer.Not Comfortable With Our TxxampC', 60, '0000-00-00 00:00:00', 1),
(5747, 5735, 59, 5, 0, 'No Basic Skills Knowledge,Attended Interviews And Not Joined Due To Service Agreement With Previous Offer.Not Comfortable With Our TxxampC\n', 60, '0000-00-00 00:00:00', 1),
(5748, 5741, 59, 5, 0, 'No basic skills knowledge,attended interviews and not joined due to Service Agreement with previous offer.Not comfortable with our TxxampC', 60, '0000-00-00 00:00:00', 1),
(5749, 5745, 19, 7, 4, 'Job Needed Person', 8, '2021-08-05 03:47:03', 1),
(5750, 5742, 14, 5, 0, 'Not suitable for this profile', 59, '2021-08-05 03:53:57', 1),
(5751, 5728, 60, 1, 0, NULL, 59, '2021-08-05 03:56:24', 1),
(5752, 5745, 59, 3, 0, 'Selected for Kannan Team, internal Team reference with  CTC  204000 includes PF/ESI/PT', 19, '2021-08-05 04:47:22', 1),
(5753, 5726, 59, 5, 0, 'Salary Expectation is very high, In native itself he earns around 10k and left only for the package', 60, '0000-00-00 00:00:00', 1),
(5754, 5690, 59, 5, 0, 'Client Round Rejected', 60, '0000-00-00 00:00:00', 1),
(5755, 5730, 59, 5, 0, 'Profile is Good,not open with the TxxampC will not sustain for a long and  the salary expectation is very high.', 60, '0000-00-00 00:00:00', 1),
(5756, 5729, 59, 5, 0, 'Having knowledge in React.JS, but not comfortable with TxxampC and the salary expectation is min 12K as a fresher', 60, '0000-00-00 00:00:00', 1),
(5757, 5661, 59, 5, 0, 'not open with the terms xxamp conditions and the salary expectation is very high, having basic knowledge in Node.JS', 60, '0000-00-00 00:00:00', 1),
(5758, 5760, 59, 5, 0, 'Not a relevant profile, just looking for any job.No Focus in the domain', 60, '0000-00-00 00:00:00', 1),
(5759, 5758, 59, 5, 0, 'Communication is Good, no experience in Digital Marketing.2 yrs career gap but the salary expectation is very high', 60, '0000-00-00 00:00:00', 1),
(5760, 5753, 18, 7, 4, 'Selected for Veben team in hyderadba. Monday Joiner. Offered 231000 as overall CTC ', 50, '0000-00-00 00:00:00', 1),
(5761, 5694, 59, 5, 0, 'Fresher, not much strong into technical, attended 2nd level with the client and got rejected', 60, '0000-00-00 00:00:00', 1),
(5762, 5761, 59, 5, 0, 'Communication ok, fresher, career gap for an year. Need time to decide on the Terms xxamp  conditions. Seems not much comfortable. Sustainability doubts ', 60, '0000-00-00 00:00:00', 1),
(5763, 5763, 59, 5, 0, 'Need to get into Digital Marketing, not much comfortable with TxxampC. having internship exp in recruitment ,but focus into digital Marketing. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(5764, 5753, 59, 3, 0, 'Selected for Veben Team in Hyderabad with CTC 231000 includes PF/ESI/PT', 18, '2021-08-06 12:53:49', 1),
(5765, 5746, 59, 5, 0, 'Communication is OK, and he is not open or the sales profile. He is not ready to make calls and focus only on the salary. No sustainability in his previous experiences too.', 50, '0000-00-00 00:00:00', 1),
(5766, 5750, 18, 8, 0, 'Not Attended', 50, '0000-00-00 00:00:00', 1),
(5767, 5756, 27, 2, 0, 'Interview taken. Task Given.', 60, '0000-00-00 00:00:00', 1),
(5768, 5752, 59, 5, 0, 'Candidate seems good. basic knowledge in React.JS, Currently into internship in coimbatore and the salary expectation is very high.', 60, '0000-00-00 00:00:00', 1),
(5769, 5691, 8, 4, 0, 'fresher, job need, okay with 9-10k,', 60, '0000-00-00 00:00:00', 1),
(5770, 5693, 8, 4, 0, 'fresher, okay with 10k, father tailor job need.', 60, '0000-00-00 00:00:00', 1),
(5771, 5773, 53, 7, 0, 'Sal 10k Pls Cnfrm DOJ', 60, '0000-00-00 00:00:00', 1),
(5772, 5691, 53, 7, 0, '9585078385', 8, '2021-08-06 06:57:07', 1),
(5773, 5693, 53, 7, 0, 'kindly confirm DOJ', 8, '2021-08-06 06:57:39', 1),
(5774, 4584, 59, 3, 0, 'Selected for CRM - Priority Shanmuga Kutralingam Team with CTC 146496 includes 208 deduction in Client Advisory Prop', 44, '2021-08-06 07:29:03', 1),
(5775, 5721, 59, 5, 0, 'Client round rejected', 60, '0000-00-00 00:00:00', 1),
(5776, 5733, 59, 5, 0, '60 Days notice, Salary expectation is around 6.5 LPA. Working in CSS. Recently stepped into React.JS', 60, '0000-00-00 00:00:00', 1),
(5777, 5723, 18, 8, 0, 'Not Attended', 40, '2021-08-07 11:28:52', 1),
(5778, 5764, 40, 4, 4, 'Selected for the final round. \nFresher but having an offer with Byjus for 5lac CTC. \nCommunication is good.\nInterested in Insurance Industry. Having a laptop and a bike. With in a week he can able to join', 50, '0000-00-00 00:00:00', 1),
(5779, 5765, 40, 8, 0, 'Not interested in our profile', 50, '0000-00-00 00:00:00', 1),
(5780, 5769, 40, 8, 0, 'Not attended', 50, '0000-00-00 00:00:00', 1),
(5781, 5764, 18, 7, 4, 'Shortisted for Veben Team. Offered 299000 CTC overall. Joining date on 16th August', 40, '2021-08-07 11:42:43', 1),
(5782, 5199, 8, 5, 0, 'no laptop and will not sustain', 60, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(5783, 5704, 59, 5, 0, 'Not much into Winform, Fresher have a knowledge in relates to webforms', 60, '0000-00-00 00:00:00', 1),
(5784, 5707, 59, 5, 0, 'Not much strong in DotNet.,will not sustain for a long ,relocation doubtsxquot\n', 60, '0000-00-00 00:00:00', 1),
(5785, 5708, 59, 5, 0, 'Not open for Winform opening, looking specifically for Web development ASP.Net. His sister is guiding him towards the ASP.Net', 60, '0000-00-00 00:00:00', 1),
(5786, 5749, 59, 5, 0, 'Having Exp in Non It domain for 1.5+ yrs and looking for opportunities in IT Mern Stack but his expectation is very high with min salary of 12K.Sustainability doubts with TxxampC', 60, '0000-00-00 00:00:00', 1),
(5787, 5751, 59, 5, 0, 'Have Exp in Dotnet but the Expectation is high and sustainability doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(5788, 3040, 59, 4, 0, 'Long back attended for RE,No relevant Experience,please do check and let me know - 50/50', 60, '0000-00-00 00:00:00', 1),
(5789, 5778, 59, 4, 0, 'Not much suits, but internal reference. Kindly check this profile and let me know', 60, '0000-00-00 00:00:00', 1),
(5790, 5711, 59, 5, 0, 'No basic knowledge in WinForms,. very slow seems not  much importance with the job.Will not sustain for a long.Not suits for our client', 60, '0000-00-00 00:00:00', 1),
(5791, 5766, 59, 5, 0, 'No Communication, no basic ideas about the recruitment.Will not handle our pressure and sustainability doubts\n', 60, '0000-00-00 00:00:00', 1),
(5792, 5782, 59, 4, 0, 'Check for Elite, RE Internal Reference 5050 ', 60, '0000-00-00 00:00:00', 1),
(5793, 5782, 14, 5, 0, 'Not suitable for this profile', 59, '2021-08-07 03:29:47', 1),
(5794, 5778, 24, 5, 0, 'not suitable', 59, '2021-08-07 03:38:36', 1),
(5795, 3040, 24, 5, 0, 'rejected', 59, '2021-08-07 03:41:53', 1),
(5796, 5754, 27, 2, 0, 'Interview taken. Task has to be given.', 60, '0000-00-00 00:00:00', 1),
(5797, 5774, 53, 7, 0, 'please confirm DOJ', 60, '0000-00-00 00:00:00', 1),
(5798, 3322, 60, 1, 0, NULL, 59, '2021-08-07 06:10:15', 1),
(5799, 5748, 59, 5, 0, 'Have Basic Knowledeg In React, Requested time To Check With His Family and didnt turn back with the response', 60, '0000-00-00 00:00:00', 1),
(5800, 5781, 59, 5, 0, 'Keen To Learn But Too Long Distance From Sriperumbuthur.', 50, '0000-00-00 00:00:00', 1),
(5801, 5731, 59, 5, 0, 'Not much comfort with the TxxampC ,need to check with his family.', 50, '0000-00-00 00:00:00', 1),
(5802, 5780, 59, 5, 0, 'Communication is Good, Too long Distance up and down 50 kms.Have a focus towards his father business.Salary expectation is High', 50, '0000-00-00 00:00:00', 1),
(5803, 5774, 59, 3, 0, 'Selected for Tiruvallur Location with CTC 144000 includes PF/ESI', 53, '2021-08-09 10:53:14', 1),
(5804, 5693, 59, 3, 0, 'Selected for Tiruvallur Location in cash mode', 53, '2021-08-09 10:54:01', 1),
(5805, 5691, 59, 3, 0, 'Selected for Tiruvallur Location with Cash mode', 53, '2021-08-09 10:54:48', 1),
(5806, 5514, 59, 3, 0, 'Selected for Tiruvallur Location with CTC 120000 in cash mode', 53, '2021-08-09 10:55:22', 1),
(5807, 5512, 59, 3, 0, 'Selected for Tiruvallur Location with CTC 120000 in cash mode', 53, '2021-08-09 10:55:43', 1),
(5808, 4960, 59, 5, 0, 'Not ok with our Offer.also our rms link is incomplete', 53, '2021-08-09 10:58:23', 1),
(5809, 5790, 59, 3, 0, 'Selected for Suthagar team with CTC 180000 includes PF/ESI/PT', 50, '0000-00-00 00:00:00', 1),
(5810, 5787, 59, 5, 0, 'Career Gap not much strong into the areas of UI/UX.Not much serious towards the job focusing for Govt Jobs', 50, '0000-00-00 00:00:00', 1),
(5811, 4757, 29, 7, 3, 'selected for Esales rM, divya team, 14k salary, will increase  1k for 3rd month if logged 1 lac each for next 2 months..', 21, '2021-08-09 01:07:23', 1),
(5812, 4757, 59, 3, 0, 'Selected for Dhivya Team with CTC 170496 includes PF/ESI/PT', 29, '2021-08-09 03:42:16', 1),
(5813, 5788, 59, 5, 0, 'No Communication, by mistake she came here for the  interview', 60, '0000-00-00 00:00:00', 1),
(5814, 5784, 59, 5, 0, 'Communication OK, not familiar with local language, Salary Expectation is High, Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5815, 5790, 24, 7, 0, 'selected', 59, '2021-08-09 06:55:19', 1),
(5816, 5790, 59, 3, 0, 'Selected for Suthagar team with CTC 180000 includes PF/ESI/PT', 24, '2021-08-09 07:13:00', 1),
(5817, 5793, 59, 5, 0, 'Communication Is Ok, No Relevant Exp In Insurance Sales. He Is Having A Career Gap And Long-Run Doubts On This Profile. He Is Not Having A Bike And Is Around 10kms From Jubilee Hills. 50/50 Profile.', 50, '0000-00-00 00:00:00', 1),
(5818, 5819, 59, 4, 0, 'Communication ok, No relevant Exp in Sales, worked in the BPO sector, Career Gap, can give a try for RE', 60, '0000-00-00 00:00:00', 1),
(5819, 5798, 59, 5, 0, 'Communication is Good not much comfortable with the terms and conditions and most  comfortable for freelance only and the expectation is very high', 60, '0000-00-00 00:00:00', 1),
(5820, 5812, 59, 4, 0, 'Check for Elite, Seems to be good in communication ', 60, '0000-00-00 00:00:00', 1),
(5821, 5811, 59, 4, 0, 'Communication Average,50/50 please check for Elite', 60, '0000-00-00 00:00:00', 1),
(5822, 5791, 59, 5, 0, 'no basic knowledge ,,fresher for DotNet. no clear ideas about the Dotnet .Career Gap will not sustain for a long.Earlier he is into business', 60, '0000-00-00 00:00:00', 1),
(5823, 5796, 59, 5, 0, 'Long Career Gap,Much into web applications only.Will not fit for our client role', 60, '0000-00-00 00:00:00', 1),
(5824, 5809, 59, 3, 0, 'Selected for Raj Kumar with CTC 300000 includes PF/PT deductions', 60, '0000-00-00 00:00:00', 1),
(5825, 5819, 34, 5, 0, 'rejected ', 59, '2021-08-10 04:19:12', 1),
(5826, 5776, 59, 5, 0, 'No sustainability,2.5 yrs 3 companies and looking for a change. Holding an offer with another company', 60, '0000-00-00 00:00:00', 1),
(5827, 5803, 59, 5, 0, 'Fresher profile, expecting high Pay, already he received an offer for 12K  and he is not comfortable  with package. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5828, 5811, 8, 5, 0, 'Will Not Suite For Calling, No Flow In Speech', 59, '2021-08-10 07:04:26', 1),
(5829, 5812, 8, 5, 0, 'will not suite for calling, no flow in speech', 59, '2021-08-10 07:05:15', 1),
(5830, 5809, 33, 4, 3, 'kindly update sustainability and gothrough his sales knowledge ', 59, '2021-08-10 07:06:54', 1),
(5831, 5813, 73, 4, 0, 'check  voice and sustainability.', 60, '0000-00-00 00:00:00', 1),
(5832, 5814, 73, 5, 0, 'she is looking for non-voice , because preparing for competitive exam. not suitable for this profile.', 60, '0000-00-00 00:00:00', 1),
(5833, 5805, 59, 5, 0, 'Working, not sure on the Notice to serve,not much comforrtable with TxxampC,if he comes back let see', 50, '0000-00-00 00:00:00', 1),
(5834, 5809, 18, 7, 4, 'Selected for Raj Team. Spoken CTC is 3L per annuam. Able to Join on 19th August', 33, '2021-08-11 12:05:20', 1),
(5835, 5764, 59, 3, 0, 'Selected for Hyderabad with CTC 299000 includes PF/ESI/PT', 18, '2021-08-11 12:37:45', 1),
(5836, 5830, 27, 5, 0, 'Task not completed. even she doesnxquott know how to run the application.', 50, '0000-00-00 00:00:00', 1),
(5837, 5813, 14, 4, 0, 'Salary 10k kindly check for voice or non voice once', 73, '2021-08-11 02:54:05', 1),
(5838, 5836, 59, 3, 0, 'Selected for Syed Team with CTC 192000 includes PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(5839, 5840, 59, 3, 0, 'Selected For Guru Team With CTC 192000 Includes PF/ESI Deductions.Guru Reference And Manager Round Has Been Taken By Syed Abthali', 60, '0000-00-00 00:00:00', 1),
(5840, 2352, 59, 3, 0, 'Selected for Guru Team with CTC 198000 includes PF/ESI deductions.Guru reference and manager round has been taken by Syed abthali', 60, '0000-00-00 00:00:00', 1),
(5841, 5840, 57, 4, 3, 'he is ok', 59, '2021-08-11 05:37:10', 1),
(5842, 2352, 57, 4, 3, 'candidate is ok ', 59, '2021-08-11 05:38:36', 1),
(5843, 5836, 57, 4, 2, 'candidate is ok . ', 59, '2021-08-11 05:41:16', 1),
(5844, 5809, 59, 3, 0, 'Selected for Raj Kumar with CTC 300000 includes PF/PT deductions', 18, '2021-08-11 05:55:10', 1),
(5845, 5709, 59, 5, 0, 'Experienced but no basic knowledge in UI/UX ,Salary expectation is very high. Will not sustain with us ', 60, '0000-00-00 00:00:00', 1),
(5846, 5813, 59, 5, 0, 'Communication ok,his focus is much towards the non voice process, just for time being looking for opportunities', 14, '2021-08-11 06:18:29', 1),
(5847, 5839, 59, 5, 0, 'Not much open up, will not suits for our sales profile. No relevant Exp.', 60, '0000-00-00 00:00:00', 1),
(5848, 5768, 59, 5, 0, 'No Communication ,fresher ,no basic knowledge in Digital Marketing. Not suits', 60, '0000-00-00 00:00:00', 1),
(5849, 5833, 57, 5, 0, 'not yet seen this candidate but he is assigned in my rms so kindly check \n', 60, '0000-00-00 00:00:00', 1),
(5850, 5770, 59, 5, 0, 'Location too long, need to check with his family on TxxampC.Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(5851, 5799, 59, 5, 0, 'Not much comfortable with TxxampC,need some time to check with family.If he comes back let see.Fresher', 60, '0000-00-00 00:00:00', 1),
(5852, 5836, 59, 3, 0, 'Selected for Syed Team with CTC 192000 includes PF/ESI/PT', 57, '2021-08-11 08:25:42', 1),
(5853, 2352, 59, 3, 0, 'Selected for Guru Team with CTC 198000 includes PF/ESI deductions.Guru reference and manager round has been taken by Syed abthali', 57, '2021-08-11 08:26:41', 1),
(5854, 5840, 59, 3, 0, 'Selected For Guru Team With CTC 192000 Includes PF/ESI Deductions.Guru Reference And Manager Round Has Been Taken By Syed Abthali', 57, '2021-08-11 08:27:23', 1),
(5855, 5835, 41, 5, 0, '2016-2021 - was doing farming very average in communication, can not handle pressure, ver new to sales', 50, '0000-00-00 00:00:00', 1),
(5856, 5834, 41, 5, 0, 'planning to settle in canada by 2022 sep till then looking for job, not a long term employee', 50, '0000-00-00 00:00:00', 1),
(5857, 5852, 73, 5, 0, 'voice  Very  low  and not suitable for this profile.', 60, '0000-00-00 00:00:00', 1),
(5858, 5851, 73, 4, 0, 'move to next round', 60, '0000-00-00 00:00:00', 1),
(5859, 5854, 59, 5, 0, 'Internal REference,Looking for Logistics domain,will not sustain in our field', 60, '0000-00-00 00:00:00', 1),
(5860, 5816, 59, 5, 0, 'No Communication,No basic knowledge ano no stability', 60, '0000-00-00 00:00:00', 1),
(5861, 5847, 59, 5, 0, 'No relevant Exp,looking only for Accounts profile.Will not sustain with is for a long', 60, '0000-00-00 00:00:00', 1),
(5862, 5850, 59, 5, 0, 'Communicaiton Average,she got offer in Axis and in terms of target/presuusre she didnxquott join.Her main focus is into Non Voice only', 60, '0000-00-00 00:00:00', 1),
(5863, 5828, 59, 5, 0, 'Client round rejected', 60, '0000-00-00 00:00:00', 1),
(5864, 5875, 73, 4, 0, 'selected , check joinig  date and salary details.', 60, '0000-00-00 00:00:00', 1),
(5865, 5871, 19, 5, 0, 'Sustainability', 60, '0000-00-00 00:00:00', 1),
(5866, 5870, 59, 5, 0, 'Applied for B.E regular post Diploma completion. just for time being looking for opportunities', 60, '0000-00-00 00:00:00', 1),
(5867, 5866, 59, 5, 0, 'Not open up, fresher too long will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5868, 5823, 59, 5, 0, 'Fresher knowledge ,having basic knowledge in HTML,CSS,JS but not comfort with TxxampC.Requested time to confirm with parents but left without convey', 60, '0000-00-00 00:00:00', 1),
(5869, 5851, 53, 7, 0, 'Sal 10k Pls Cnfrm DOJ', 73, '2021-08-13 01:05:24', 1),
(5870, 5875, 59, 3, 0, 'Selected for Tiruvallur team with cTC 120000 in cash mode', 73, '2021-08-13 01:10:57', 1),
(5871, 5853, 41, 5, 0, 'Looking for accounts and Finance profile job', 50, '0000-00-00 00:00:00', 1),
(5872, 5846, 18, 7, 3, 'Selecetd for hyderabad for 3.4L ctc. Reday to join on monday', 50, '0000-00-00 00:00:00', 1),
(5873, 5849, 40, 8, 0, 'Not attend', 50, '0000-00-00 00:00:00', 1),
(5874, 5846, 59, 3, 0, 'Selected for Hyderabad team with CTC 340000 includes PF/PT', 18, '2021-08-13 04:45:08', 1),
(5875, 5783, 59, 5, 0, 'No Basic knowledge fresher,not open with terms and conditions', 60, '0000-00-00 00:00:00', 1),
(5876, 5857, 59, 5, 0, 'Need time to join post August only she can join,Documents is in the college,need time to confirm with family on txxampC.Hand injury xxamp if she comes back let see', 60, '0000-00-00 00:00:00', 1),
(5877, 5865, 59, 5, 0, 'No communication,not open up will not handle pressure,career Gap not suitable', 60, '0000-00-00 00:00:00', 1),
(5878, 5882, 59, 5, 0, 'No basic knowledge, Not comfortable with terms and conditions. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(5879, 5424, 59, 5, 0, 'She is into ASP.Net with MVC much into webforms. Not suits for our client', 60, '0000-00-00 00:00:00', 1),
(5880, 5887, 20, 4, 0, 'suitable for RE, negotiate salary and shortlist', 60, '0000-00-00 00:00:00', 1),
(5881, 5872, 40, 8, 0, 'not attended the interview', 50, '0000-00-00 00:00:00', 1),
(5882, 5838, 59, 5, 0, 'Frehser and the Salary expectation is min 18K and very stubborn towards the package', 50, '0000-00-00 00:00:00', 1),
(5883, 5807, 59, 5, 0, 'very average communication, No relevant Exp in Recruitment, worked in the manufacturing company. Sustainability Doubts', 50, '0000-00-00 00:00:00', 1),
(5884, 5894, 73, 5, 0, 'very  sensitive person so not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(5885, 5906, 73, 4, 0, 'profile okay, check sustainabilty ,immediate joining', 50, '0000-00-00 00:00:00', 1),
(5886, 5900, 8, 2, 0, 'till working and looking for job change, has salary issues in previous company, expt is 12k.', 50, '0000-00-00 00:00:00', 1),
(5887, 5842, 8, 2, 0, 'has 6m exp in dot net 2.5l, and 2yr in hcl sys ad 2.3l, expt is 3-3.5l, has around 4yr gap after marriage.', 50, '0000-00-00 00:00:00', 1),
(5888, 5885, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(5889, 5914, 8, 5, 0, 'came with her friend, will not join without him, expt is 12k and not speaking up, will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(5890, 5913, 8, 5, 0, 'came with his girlfriend and will not join without her, expt is 12k. no neck button and prefers backend job.', 7, '0000-00-00 00:00:00', 1),
(5891, 5911, 8, 4, 3, '1yr in railways in contract basis and his father was working in railways, 6m in collections, expt is 16k. check once', 7, '0000-00-00 00:00:00', 1),
(5892, 5909, 8, 2, 0, 'looking for internship in MEARN, fresher and 8m in allsec voice process, expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(5893, 5901, 8, 4, 0, 'fresher, doing his 6m internship in a company completed 2m along and looking for job. doesnt know any basics and expt is 12k Initially and 15k after 6m. okay with 3yr service agreement. ', 7, '0000-00-00 00:00:00', 1),
(5894, 5881, 8, 4, 0, 'has 8m exp in a company, due to internal politics and no Recognition he relived. was getting 13k and expt is 20-25k. said the ex company treated him as a slave.', 7, '0000-00-00 00:00:00', 1),
(5895, 5906, 53, 7, 0, 'Sal 10k pls cnfrm DOJ', 73, '2021-08-17 03:43:27', 1),
(5896, 5896, 41, 5, 0, 'not interested in life insurance sales', 50, '0000-00-00 00:00:00', 1),
(5897, 5925, 8, 5, 0, 'not speaking up, said very nervous and expt is 10-12k.', 7, '0000-00-00 00:00:00', 1),
(5898, 5924, 8, 4, 0, 'married and 2kind from bangalore after marriage settled in chennai, has 1,5yr in Hyundai in admin 11k, expt the same. due to rotational shift she resigned.', 7, '0000-00-00 00:00:00', 1),
(5899, 5923, 8, 5, 0, 'from krishnagiri, doing his PG in Correspondence so looking for job, no job need, expt is 15k not speaking up, very slow. ', 7, '0000-00-00 00:00:00', 1),
(5900, 5920, 8, 4, 0, 'has 1m in yesbank credit card and 1m in care, good at script, expt is 11k.', 7, '0000-00-00 00:00:00', 1),
(5901, 5919, 8, 5, 0, 'just came with friend for interview and attended, expt is 18k, and no Relevant exp. done her part time job in holiday package.', 7, '0000-00-00 00:00:00', 1),
(5902, 5918, 8, 5, 0, 'not speaking up, has 1m in yes bank credit card. ', 7, '0000-00-00 00:00:00', 1),
(5903, 5113, 8, 5, 0, 'has 3m exp in car showroom, Body Language and way of speaking is not good. ', 7, '0000-00-00 00:00:00', 1),
(5904, 5901, 27, 5, 0, 'No Response.', 8, '2021-08-17 05:43:40', 1),
(5905, 5881, 27, 5, 0, 'No Response.', 8, '2021-08-17 05:45:39', 1),
(5906, 5911, 57, 4, 3, 'candidate is ok kindly negotiate the salary and confirm the joining date..', 8, '2021-08-17 05:54:50', 1),
(5907, 5858, 8, 2, 0, 'Looking For Internship In MEARN, Fresher And 8m In Allsec Voice Process, Expt Is 15k.', 7, '0000-00-00 00:00:00', 1),
(5908, 5924, 53, 5, 0, 'She cant speak tamil fluently', 8, '2021-08-17 06:09:20', 1),
(5909, 5920, 14, 7, 0, 'salary 10k need to check joining date', 8, '2021-08-17 06:11:41', 1),
(5910, 5920, 59, 5, 0, 'Candidate Salary Expectation Is Very High. Being A Fresher Take Home Expectation Is Around 12-13K For Elite.Will not sustain for a long', 14, '2021-08-18 10:34:27', 1),
(5911, 5842, 8, 5, 0, 'salary expt is high', 8, '2021-08-18 11:23:57', 1),
(5912, 5926, 27, 2, 0, 'Task Given', 50, '0000-00-00 00:00:00', 1),
(5913, 5843, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(5914, 5861, 8, 4, 0, 'has 6m exp as interen with 18k, holds an offer with 20% hike and expt the same.', 7, '0000-00-00 00:00:00', 1),
(5915, 5929, 8, 2, 0, 'has to discuss with parents regarding service agreement.', 7, '0000-00-00 00:00:00', 1),
(5916, 5911, 59, 5, 0, 'Salary Exp is very high and no relevant sales Exp', 57, '2021-08-18 02:44:03', 1),
(5917, 5931, 8, 5, 0, 'will not suite for calling, no flow and not speaking up and no language and expt is 15k. ', 7, '0000-00-00 00:00:00', 1),
(5918, 5930, 8, 5, 0, 'will not suite for calling, not speaking up and expt is 12k.', 7, '0000-00-00 00:00:00', 1),
(5919, 5879, 8, 2, 0, 'left before 2nd round', 7, '0000-00-00 00:00:00', 1),
(5920, 5898, 73, 4, 0, 'check Sustainability.', 60, '0000-00-00 00:00:00', 1),
(5921, 5910, 73, 4, 0, 'check joining date  and salary confirmation', 60, '0000-00-00 00:00:00', 1),
(5922, 5861, 69, 5, 0, 'Task given was not completed up to our satisfaction.', 8, '2021-08-18 06:03:30', 1),
(5923, 5929, 8, 2, 0, 'has to discuss with his parents regarding service agreement.', 8, '2021-08-18 06:10:35', 1),
(5924, 5922, 8, 5, 0, 'no Focus towards his Career and no idea about it, will not sustain, ', 50, '0000-00-00 00:00:00', 1),
(5925, 5937, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(5926, 5941, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(5927, 5892, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(5928, 5932, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(5929, 5934, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(5930, 5906, 59, 3, 0, 'Selected for Tiruvallur with CTC 120000 in cash mode', 53, '2021-08-19 09:57:25', 1),
(5931, 5851, 59, 3, 0, 'Selected for Tiruvallur team with CTC 120000 in cash mode', 53, '2021-08-19 09:58:51', 1),
(5932, 5773, 59, 3, 0, 'Selected for Tiruvallur Team with CTC 120000 Cash mode', 53, '2021-08-19 09:59:06', 1),
(5933, 5927, 8, 5, 2, 'has 1yr exp in calling 12k, expt is 15k, done 3m online internship, has family commitment and expt is 15k, has to discuss about service agreement with parents.', 50, '0000-00-00 00:00:00', 1),
(5934, 5944, 8, 5, 0, 'Has 1yr Exp In Calling 12k, Expt Is 15k  Has Family Commitment And Expt Is 13-15k, Has To Discuss About Service Agreement With Parents.', 50, '0000-00-00 00:00:00', 1),
(5935, 5898, 53, 7, 0, 'Selected. Pls cnfrm the joining', 73, '2021-08-19 03:04:39', 1),
(5936, 5910, 53, 7, 0, 'Sal 10k pls cnfrm joining', 73, '2021-08-19 03:06:18', 1),
(5937, 5890, 73, 7, 0, 'selected', 60, '0000-00-00 00:00:00', 1),
(5938, 5945, 73, 5, 0, 'expectation salary high and he is searching job for  foreign .', 60, '0000-00-00 00:00:00', 1),
(5939, 5951, 8, 4, 3, 'brother of priyanka jenit, he prepared for interview,fresher and okay with calling, expt is 14-15k, has 2w and previously helping his father biz.', 7, '0000-00-00 00:00:00', 1),
(5940, 5951, 24, 7, 0, 'SELECTED', 8, '2021-08-19 04:32:35', 1),
(5941, 5879, 8, 5, 0, 'not interested in the profile.', 8, '2021-08-19 04:33:27', 1),
(5942, 5936, 40, 4, 3, 'Salary expectation is high and fresher otherwise the profile if good to consider.', 50, '0000-00-00 00:00:00', 1),
(5943, 5910, 59, 3, 0, 'selected for Tiruvallur team with CTC 120000 Cash mode', 53, '2021-08-19 04:44:27', 1),
(5944, 5898, 59, 3, 0, 'Selected for Tiruvallur - Cash Mode', 53, '2021-08-19 05:48:49', 1),
(5945, 5968, 8, 5, 0, 'will not suite for sales profile, past 2yr he was ideal and earning through rental shops, will not sustain.', 7, '0000-00-00 00:00:00', 1),
(5946, 5967, 8, 5, 0, 'no flow in speech, will not suite for calling, from chengalpet too long', 7, '0000-00-00 00:00:00', 1),
(5947, 5965, 8, 4, 0, 'very native language, has calling and collection exp, has 2w and laptop, last ctc is 18k and expt 15k th(nego)', 7, '0000-00-00 00:00:00', 1),
(5948, 5964, 8, 2, 0, 'not speaking up, very nervous and said 1st interview, told him to come back on monday.', 7, '0000-00-00 00:00:00', 1),
(5949, 5963, 8, 5, 0, 'no clarity in speech, expt sal is also high.', 7, '0000-00-00 00:00:00', 1),
(5950, 5960, 8, 5, 0, 'has 5yr exp in ngo into teaching, will not handle pressure and expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(5951, 5957, 8, 4, 0, 'in need of job, no Relevant exp, knows basics in .net, okay with 10k. stammering to speak.', 7, '0000-00-00 00:00:00', 1),
(5952, 5952, 8, 4, 0, 'check over the call, knows basics in .net but expt is 15k during training. has to relocate from sivakasi.', 7, '0000-00-00 00:00:00', 1),
(5953, 5950, 8, 4, 0, 'has 3m internship exp, looking for internship, willing to learn, okay with our terms and conditions.', 7, '0000-00-00 00:00:00', 1),
(5954, 5943, 8, 8, 0, 'applied twice ', 7, '0000-00-00 00:00:00', 1),
(5955, 5862, 8, 5, 0, 'fresher, doesnt know html and css, no working exp, done designing course and expt is 20k.', 7, '0000-00-00 00:00:00', 1),
(5956, 5965, 20, 4, 4, 'selected for kannan team', 8, '2021-08-20 01:26:17', 1),
(5957, 5957, 59, 2, 0, 'Scheduled for client round - (Candidate Have Basic Knowledge And Exp In .Net, Also He Is In Training For REact JS Can Give A Try.But The Salary Expectation Is High.Need Some Time To Give Confirmation On The Position)\n', 8, '2021-08-20 01:31:13', 1),
(5958, 5883, 8, 5, 0, 'has 3m training and 2m exp in designing, doesnt know html and css, expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(5959, 5950, 54, 1, 0, NULL, 8, '2021-08-20 05:41:54', 1),
(5960, 5952, 59, 5, 0, 'Not much clear into Dotnet. already she received an offer for 8K in native and her expectation seems to very high.Sustainability doubts', 8, '2021-08-20 05:44:17', 1),
(5961, 5970, 8, 4, 0, 'has 1yr exp in real estate, high job need okay with 10k. expt is 10.5k. ', 7, '0000-00-00 00:00:00', 1),
(5962, 5971, 8, 4, 0, 'fresher, staying with friend she selected for muthu team, okay with 10k, check with sustainability once.', 7, '0000-00-00 00:00:00', 1),
(5963, 5972, 8, 4, 0, 'very confident while speaking, okay with 10k.', 7, '0000-00-00 00:00:00', 1),
(5964, 5973, 8, 4, 3, 'has exp in trading and insurance, lctc is 20k and expt the same, job need, married and 2kids, has calling pitch.', 7, '0000-00-00 00:00:00', 1),
(5965, 5969, 8, 5, 0, 'will not suite for calling, no flow in speech, fresher.', 7, '0000-00-00 00:00:00', 1),
(5966, 5959, 8, 4, 0, 'check for internship, willing to learn, already working in sony 1.5l.', 7, '0000-00-00 00:00:00', 1),
(5967, 5958, 8, 4, 0, 'check for ui/ux, he is not sure about his profile and due to long distance relived from last company, already joined here for HR and left next day due to personal issues.', 7, '0000-00-00 00:00:00', 1),
(5968, 5873, 8, 4, 0, 'fresher, no basic knowledge in coding, high job need, willing to learn, looking for internship.', 7, '0000-00-00 00:00:00', 1),
(5969, 5974, 8, 5, 0, 'looking for job in accounts, has 6m exp with acc. 15k will not suite for sales', 7, '0000-00-00 00:00:00', 1),
(5970, 5973, 31, 4, 4, 'recommended for 2nd round with gaurav', 8, '2021-08-21 06:27:22', 1),
(5971, 5972, 14, 7, 0, 'Salary 10k confirm joining date', 8, '2021-08-21 06:28:01', 1),
(5972, 5970, 13, 7, 4, 'salary 10.5k', 8, '2021-08-21 06:29:08', 1),
(5973, 5971, 14, 7, 0, 'salary 10k confirm joining date', 8, '2021-08-21 06:30:16', 1),
(5974, 5959, 54, 1, 0, NULL, 8, '2021-08-21 06:32:05', 1),
(5975, 5958, 69, 5, 0, 'Less knowledge about UI/UX', 8, '2021-08-21 06:33:53', 1),
(5976, 5873, 54, 1, 0, NULL, 8, '2021-08-21 06:35:03', 1),
(5977, 5936, 18, 8, 0, 'Not Attended', 40, '2021-08-23 11:01:24', 1),
(5978, 5965, 19, 7, 4, 'FRESHER FOR THIS FIELD', 20, '2021-08-23 04:52:52', 1),
(5979, 5982, 8, 4, 0, 'already worked in our company for 8m and looking after his mother biz for past 2 years and working as channel partner in a real Estate company. expt is 18k for rE. kindly check and revert', 7, '0000-00-00 00:00:00', 1),
(5980, 5955, 8, 5, 0, 'will not suite for our profile, not clear about his Career and has to discuss with parents regarding agreement ', 7, '0000-00-00 00:00:00', 1),
(5981, 5917, 8, 4, 0, 'no basics in designing, was working in epub company, expt is 15k, check with his skills', 7, '0000-00-00 00:00:00', 1),
(5982, 5887, 59, 5, 0, 'Requested candidate to share the previous company documents What he has, but didnt turn back and no relevant Exp in sales', 20, '2021-08-23 04:53:31', 1),
(5983, 5951, 59, 3, 0, 'Selected for Suthagar team with CTC 156000 includes PF/ESI/PT', 24, '2021-08-23 04:54:34', 1),
(5984, 5977, 8, 8, 0, 'she doesnt have whats app and i have shared the link through normal sms twice and waiting her to connect more than 15mins. no response.', 7, '0000-00-00 00:00:00', 1),
(5985, 5965, 59, 3, 0, 'Selected for Kannan Team with CTC 192000 includes PF/ESI/PT', 19, '2021-08-23 06:46:22', 1),
(5986, 5982, 17, 4, 4, 'Finalize salary and joining date', 8, '2021-08-24 09:52:23', 1),
(5987, 5917, 27, 5, 0, 'No Response.', 8, '2021-08-24 09:56:37', 1),
(5988, 5984, 8, 8, 0, 'No Response', 50, '0000-00-00 00:00:00', 1),
(5989, 5978, 8, 5, 0, 'already attened interview here for .net and Attend interview in nalm client company and got rejected. ', 50, '0000-00-00 00:00:00', 1),
(5990, 5992, 8, 5, 0, 'was in loan and multiple bank backend process, will not suite for sales, not speaking up', 7, '0000-00-00 00:00:00', 1),
(5991, 5989, 8, 5, 0, 'was doing his part time like promoting ads, no basic skills.', 7, '0000-00-00 00:00:00', 1),
(5992, 5988, 8, 4, 0, 'okay with calling and convincing, check for re and expt is 14-15k', 7, '0000-00-00 00:00:00', 1),
(5993, 5987, 8, 5, 0, 'not speaking up, will not suite for sales calling.', 7, '0000-00-00 00:00:00', 1),
(5994, 5986, 8, 4, 0, 'okay with calling, 21 and married, okay with 1yr agreement. check with sustainability. expt sal 9-11k', 7, '0000-00-00 00:00:00', 1),
(5995, 5995, 8, 5, 0, '20days as collection exe, will not sustain, can work for 6m. expt 15k', 7, '0000-00-00 00:00:00', 1),
(5996, 5983, 8, 2, 0, 'has to discuss terms with parents and get back', 7, '0000-00-00 00:00:00', 1),
(5997, 5981, 8, 2, 0, 'has to discuss the terms with parents and get back.', 7, '0000-00-00 00:00:00', 1),
(5998, 5991, 8, 5, 0, 'comm is below avg, can cut copy the blogs and worked as part timer and looking for job in DM.', 50, '0000-00-00 00:00:00', 1),
(5999, 5993, 8, 5, 0, 'Preferred job in Accounts, got a mail from naukri and just came to attend interview. as fresher expt is 15k.', 50, '0000-00-00 00:00:00', 1),
(6000, 5844, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(6001, 6002, 8, 8, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(6002, 5948, 8, 4, 0, 'check for .net skills', 7, '0000-00-00 00:00:00', 1),
(6003, 5890, 59, 3, 0, 'Selected for Tiruvallur with CTC 120000 Cash mode\n', 73, '2021-08-25 11:45:15', 1),
(6004, 5986, 14, 7, 0, 'Salary 10 to  11k confirm joining date', 8, '2021-08-25 12:05:03', 1),
(6005, 5982, 59, 3, 0, 'Selected for Arumbakkam with CTC 192000 includes PF/ESI/PT', 17, '2021-08-25 12:30:53', 1),
(6006, 6025, 8, 4, 0, 'has calling exp, job need, from nagapattinam will relocate to chennai, father is a driver.', 7, '0000-00-00 00:00:00', 1),
(6007, 5973, 29, 7, 3, 'GK team as RM', 31, '2021-08-25 03:29:17', 1),
(6008, 6031, 8, 4, 3, 'was running dance class for past 2yrs closed due to covid, was teaching primary school std., expt 15k, mom working in high court and father is a supervisor.', 7, '0000-00-00 00:00:00', 1),
(6009, 6030, 8, 5, 0, 'no clarity in speech, no degree 4times drop out, 5050', 7, '0000-00-00 00:00:00', 1),
(6010, 6027, 8, 5, 0, 'lang is not good, has 6m exp in credit card collection, will not suite for our process', 7, '0000-00-00 00:00:00', 1),
(6011, 6024, 8, 4, 0, 'has 1yr exp in calling and not into sales, job need, expt is 11k. speaking her script clearly.', 7, '0000-00-00 00:00:00', 1),
(6012, 6023, 8, 8, 0, 'not attended', 7, '0000-00-00 00:00:00', 1),
(6013, 6022, 8, 5, 0, 'planning do higher studies will not sustain.', 7, '0000-00-00 00:00:00', 1),
(6014, 6020, 8, 7, 0, 'kindly confirm doj and salary', 7, '0000-00-00 00:00:00', 1),
(6015, 6014, 8, 4, 0, 'well settled family, only daughter, expt 20k', 7, '0000-00-00 00:00:00', 1),
(6016, 6012, 8, 5, 0, 'will not handle pressure, fresher and not speaking up', 7, '0000-00-00 00:00:00', 1),
(6017, 6011, 8, 5, 0, 'has 4m exp in operation (bank), couldnt handle pressure and 28k ctc, expt is 20k.', 7, '0000-00-00 00:00:00', 1),
(6018, 6008, 8, 5, 0, 'not speaking up, will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(6019, 6031, 24, 7, 0, 'selected 13k salary', 8, '2021-08-25 10:21:02', 1),
(6020, 6024, 13, 7, 4, 'Selected (salary  10 or 10.5k  ah nu mattum konjam Check pannikonga) Monday joining', 8, '2021-08-25 10:24:14', 1),
(6021, 6020, 31, 4, 4, 'Candidate okay 2nd round with gaurav', 8, '2021-08-25 10:26:24', 1),
(6022, 6006, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(6023, 6018, 8, 5, 0, 'will not sustain, prefer non voice', 50, '0000-00-00 00:00:00', 1),
(6024, 6037, 8, 4, 0, 'check with skills, has 1yr and6m Internship exp. in seo/smo. willing to learn, married jan 2021 and father is a CID. ', 50, '0000-00-00 00:00:00', 1),
(6025, 5806, 8, 8, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(6026, 6020, 29, 7, 2, 'gk team', 31, '2021-08-26 11:18:54', 1),
(6027, 5973, 59, 3, 0, 'Selected for GK Sir Team,2.7 LPA have been finalised after discussion with Gaurav sir on the Target given and salry hike post the completion of Target 2L in 2 month will be 25K in the candidate CTC from 3rd month', 29, '2021-08-26 11:19:30', 1),
(6028, 6020, 8, 7, 0, 'kindly confirm doj and salary', 29, '2021-08-26 11:27:15', 1),
(6029, 6043, 8, 4, 0, 'fresher, okay for calling we can train, interested in sales profile, will arrange 2w,', 7, '0000-00-00 00:00:00', 1),
(6030, 6043, 20, 7, 0, 'Kindly shortlist for joining and pay a salary of 14k as monthly CTC', 8, '2021-08-26 11:37:57', 1),
(6031, 6041, 8, 4, 0, 'fresher, good in communication and convincing, okay with company norms. ', 7, '0000-00-00 00:00:00', 1),
(6032, 6041, 31, 5, 0, 'not suitable for RM Profile', 8, '2021-08-26 11:41:51', 1),
(6033, 6043, 59, 3, 0, 'Selected for Srikanth team with CTC 156000 includes PF/ESI/PT', 20, '2021-08-26 11:46:34', 1),
(6034, 6047, 8, 4, 3, 'fresher for sales, has 6m calling exp 16k, expt is 16k or 16k+, from kanyakumari staying with cousin and father in UAE.', 7, '0000-00-00 00:00:00', 1),
(6035, 6047, 19, 7, 4, 'next round', 8, '2021-08-26 01:34:13', 1),
(6036, 6048, 8, 4, 0, 'check for collection exe, okay with10k and cross check sustainability', 7, '0000-00-00 00:00:00', 1),
(6037, 6052, 8, 5, 0, 'will not sustain and prefer non voice', 7, '0000-00-00 00:00:00', 1),
(6038, 6049, 8, 5, 0, 'too long, was doing part time job in dominos 6k, expt 12k and voice is very low', 7, '0000-00-00 00:00:00', 1),
(6039, 6045, 8, 5, 0, 'will not handle sales pressure, has admin exp, was asking about target and job with out target', 7, '0000-00-00 00:00:00', 1),
(6040, 6044, 8, 5, 0, 'no pronunciation, very native slang. will not suite for health calling', 7, '0000-00-00 00:00:00', 1),
(6041, 6042, 8, 5, 0, 'fresher, not speaking up, will not suite for calling, expt is 14k', 7, '0000-00-00 00:00:00', 1),
(6042, 6039, 8, 5, 0, 'fresher, expt is 3-4l. good in communication alone. planning to settle in singapore', 7, '0000-00-00 00:00:00', 1),
(6043, 6038, 8, 5, 0, 'fresher, dont know basics in .net, expt is 12k', 7, '0000-00-00 00:00:00', 1),
(6044, 6028, 8, 5, 0, 'very poor Performance, pursuing mba in annamalai and he need more training and no acceptance.but okay with all terms and conditions. ', 7, '0000-00-00 00:00:00', 1),
(6045, 6001, 8, 2, 0, 'has to check with gokul', 7, '0000-00-00 00:00:00', 1),
(6046, 5998, 8, 5, 0, 'worst Performance, will not suite for any job. attitude was too bad.', 7, '0000-00-00 00:00:00', 1),
(6047, 6047, 59, 5, 0, 'He is not open to work on Saturdays and his cTC Expectation is very high. Min Expectation is around 16K as TH', 19, '2021-08-26 01:52:32', 1),
(6048, 6037, 69, 5, 0, 'task plagarised ', 8, '2021-08-26 01:59:28', 1),
(6049, 6007, 8, 5, 0, '2m internship in IIT at admin dept with 15k, not interested in core job, communication is good but expt is 15k+ fresher for us.', 50, '0000-00-00 00:00:00', 1),
(6050, 6048, 35, 7, 0, 'he wonxquott accept 1 yr Bond, if its 6 month he will be join after discussion with Family', 8, '2021-08-26 03:42:15', 1),
(6051, 6048, 60, 1, 0, NULL, 35, '2021-08-26 05:01:37', 1),
(6052, 5948, 59, 5, 0, 'Client Round Reject', 8, '2021-08-26 06:56:02', 1),
(6053, 6025, 13, 7, 4, 'ok  (10k Salary Monday Joining)', 8, '2021-08-26 06:57:22', 1),
(6054, 6014, 72, 1, 0, NULL, 8, '2021-08-26 07:01:36', 1),
(6055, 5988, 24, 7, 0, 'candiate selected but some personal reason he want joining date sep month.', 8, '2021-08-26 07:12:49', 1),
(6056, 6020, 59, 3, 0, 'Selected for GK sir Team with PF/ESI/PT', 8, '2021-08-26 07:17:41', 1),
(6057, 5964, 8, 5, 0, 'no response', 8, '2021-08-26 07:18:20', 1),
(6058, 6060, 73, 4, 0, 'selected for next round check sustainability', 50, '0000-00-00 00:00:00', 1),
(6059, 5985, 8, 8, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(6060, 6051, 27, 5, 0, 'Task not upto the level.', 50, '0000-00-00 00:00:00', 1),
(6061, 5608, 8, 4, 0, 'check for client company, knows basics and okay with term', 50, '0000-00-00 00:00:00', 1),
(6062, 6054, 56, 4, 0, 'sELECTED for next round', 50, '0000-00-00 00:00:00', 1),
(6063, 6061, 8, 4, 0, 'done 6m course in DM and has exp in dmat, his last ctc is 29k and okay with our term.', 50, '0000-00-00 00:00:00', 1),
(6064, 5583, 8, 5, 0, 'no basic skills in lang', 50, '0000-00-00 00:00:00', 1),
(6065, 6059, 8, 4, 0, 'has 1.5yr exp in sutherland, expt 2-3l and knows basics in lang, okay with our tearms', 50, '0000-00-00 00:00:00', 1),
(6066, 6074, 8, 2, 0, 'expt 18k take home. i said 15-16th. has 4yr calling exp but not into insurance.', 50, '0000-00-00 00:00:00', 1),
(6067, 5972, 59, 5, 0, 'Last week spoke and confirmed the CTC. She requested time for joining.28/Aug Tried reaching to confirm again and received a message stating that not  interested and she got selected in a Company through campus drive', 14, '2021-08-27 12:12:41', 1),
(6068, 5986, 59, 3, 0, 'selected for Priyanka Team with PF/PT/ESI', 14, '2021-08-27 12:13:26', 1),
(6069, 5971, 59, 3, 0, 'Selected for Muthu cash mode', 14, '2021-08-27 12:16:39', 1),
(6070, 6054, 30, 7, 3, 'candidate expecting 20 to 22% hike from last salary. we can give max 3.3lac . confirm xxamp update me', 56, '2021-08-27 01:21:07', 1),
(6071, 6084, 8, 4, 0, 'has 4m exp in calling, high job need, okay with 10k. clear with his script.', 50, '0000-00-00 00:00:00', 1),
(6072, 6060, 53, 7, 0, 'selected 10k salary and kindly confirm salary and DOJ on monday', 73, '2021-08-27 03:38:35', 1),
(6073, 6077, 8, 5, 0, '1m in collection, will not sustain expt 10-11k', 7, '0000-00-00 00:00:00', 1),
(6074, 6075, 8, 5, 0, 'expt 4l, no relevant exp, no sales skills and convincing.', 7, '0000-00-00 00:00:00', 1),
(6075, 6068, 8, 5, 0, 'not speaking up, prefer acc job, expr 12-15k', 7, '0000-00-00 00:00:00', 1),
(6076, 6069, 8, 5, 0, 'no local language, eng below avg.', 7, '0000-00-00 00:00:00', 1),
(6077, 6066, 8, 5, 0, 'very childish and 18. will not suit for calling', 7, '0000-00-00 00:00:00', 1),
(6078, 6010, 8, 2, 0, 'has to learn the Basics and will come for technical. ', 7, '0000-00-00 00:00:00', 1),
(6079, 6060, 59, 3, 0, 'selected for Tiruvallur in cash mode', 53, '2021-08-27 04:57:29', 1),
(6080, 5608, 59, 2, 0, 'Fresher,5050 can give a try for Dotnet winform', 8, '2021-08-27 06:32:31', 1),
(6081, 6061, 69, 5, 0, 'Plagarised task', 8, '2021-08-27 06:33:40', 1),
(6082, 6059, 54, 1, 0, NULL, 8, '2021-08-27 06:36:17', 1),
(6083, 5929, 8, 5, 0, 'no response', 8, '2021-08-28 09:55:52', 1),
(6084, 5699, 59, 5, 0, 'No Responses from the candidate for a long and we dropped', 8, '2021-08-28 09:57:50', 1),
(6085, 4738, 59, 5, 0, 'We offered him the package of 23K gross,but he didnt responds and not joinied', 8, '2021-08-28 09:58:17', 1),
(6086, 4644, 59, 3, 0, 'Selected for Tiruvallur in Cash mode', 8, '2021-08-28 09:59:07', 1),
(6087, 4630, 59, 3, 0, 'Selected for Tiruvallur Location with TH 10K', 8, '2021-08-28 09:59:25', 1),
(6088, 4629, 59, 3, 0, 'Selected for Tiruvallur in cash mode', 8, '2021-08-28 09:59:41', 1),
(6089, 4352, 59, 5, 0, 'We hold the candidate 4 months back for suthagar team and now there is no response from the candidate. Tried reaching him couple of time.', 8, '2021-08-28 09:59:59', 1),
(6090, 4357, 59, 5, 0, 'sustainability doubts dropped ', 8, '2021-08-28 10:01:23', 1),
(6091, 6031, 59, 3, 0, 'selected for Suthagar team with PF/ESI/PT', 24, '2021-08-28 10:18:30', 1),
(6092, 5988, 59, 3, 0, 'Selected for Suthagar team with PF/ESI/PT deductions', 24, '2021-08-28 10:21:54', 1),
(6093, 6092, 73, 4, 0, 'selected  confirm joining date xxamp check pronounciation.', 50, '0000-00-00 00:00:00', 1),
(6094, 6092, 53, 7, 0, 'selected sal 10k, DOJ 30 aug 21', 73, '2021-08-28 10:53:17', 1),
(6095, 6025, 59, 3, 0, 'Selected for Muthu with PF/ESI/PT', 13, '2021-08-28 11:41:51', 1),
(6096, 6093, 8, 5, 0, 'not speaking up, will not suite for calling. pronunciation is not clear.', 7, '0000-00-00 00:00:00', 1),
(6097, 6091, 8, 5, 0, 'not speaking up very low voice, will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(6098, 6083, 8, 4, 0, 'friend of babu, done 6m course in digi Perform and okay with out Terms and will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(6099, 6065, 8, 5, 0, 'shared profile with george, no knowledge in java script.', 7, '0000-00-00 00:00:00', 1),
(6100, 6094, 8, 4, 3, 'fresher for sales, has 1yr exp in backend data entry, 4m in calling, no degree expt is 12k.', 7, '0000-00-00 00:00:00', 1),
(6101, 6024, 59, 3, 0, 'Slected for Muthu with PF/ESI/Pt', 13, '2021-08-28 11:52:56', 1),
(6102, 6080, 73, 4, 0, 'selected check joining date ', 50, '0000-00-00 00:00:00', 1),
(6103, 6080, 53, 7, 0, 'selected 10k, DOJ 30 aug 21', 73, '2021-08-28 12:31:38', 1),
(6104, 6094, 34, 7, 4, 'selected  he is ready to join from monday', 8, '2021-08-28 01:25:49', 1),
(6105, 6099, 8, 5, 0, 'not speaking up, from enore and expt is 15k', 7, '0000-00-00 00:00:00', 1),
(6106, 6098, 8, 5, 0, 'high job need, avg communication and expt is 11k-12k. no father and mom daily wages.', 7, '0000-00-00 00:00:00', 1),
(6107, 6097, 8, 5, 0, 'not speaking up, will not suite for calling, job need.', 7, '0000-00-00 00:00:00', 1),
(6108, 6090, 8, 5, 0, 'not speaking up, will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(6109, 6084, 14, 7, 0, 'Salary 10k need to confirm joining date', 8, '2021-08-28 01:37:28', 1),
(6110, 6084, 59, 3, 0, 'Selected for Priyanka Team in Cash mode. No Laptop ', 14, '2021-08-28 02:23:59', 1),
(6111, 6094, 59, 5, 0, 'No Relevant Exp In Sales,This Is The First Interview In Sales Profile.Yet To Complete His 12th Std, Career Gap,Having Only BPo Healthcare Exp .Sustainability xxamp Pressure Handling Doubt For This Profile.Discussed with Sir and cross checked with the candidate for collection cum sales,but candidate was not interested towards this role', 34, '2021-08-28 03:40:36', 1),
(6112, 6080, 59, 3, 0, 'Selected for Tiruvallur in cash mode tH 9500.Candidate seems 50/50 ', 53, '2021-08-28 03:46:25', 1),
(6113, 6092, 59, 3, 0, 'Selected for Tiruvallur Location in cash mode TH 9500', 53, '2021-08-28 03:46:51', 1),
(6114, 6083, 69, 5, 0, 'plagarised task', 8, '2021-08-28 05:00:05', 1),
(6115, 5668, 8, 5, 0, 'skill set doesnt match', 7, '0000-00-00 00:00:00', 1),
(6116, 5935, 8, 5, 0, 'he is a graphics designer, doesnt know html css, will not suite for us.', 7, '0000-00-00 00:00:00', 1),
(6117, 5315, 27, 5, 0, 'No Response.', 8, '2021-08-28 06:40:47', 1),
(6118, 6082, 8, 4, 0, 'looking for job, done 4m course in digi Perform and expt is 15k, father and brother into family biz, very Lethargic. ', 50, '0000-00-00 00:00:00', 1),
(6119, 5997, 8, 4, 0, 'looking for internship, below ag communication, cousin sis is working in DM so he got interested. okay with terms and expt is 15k.', 50, '0000-00-00 00:00:00', 1),
(6120, 3483, 27, 5, 0, 'not joined', 27, '2021-08-30 10:26:11', 1),
(6121, 5997, 69, 5, 0, 'Plagiarism in task', 8, '2021-08-30 10:30:47', 1),
(6122, 6082, 69, 5, 0, 'Candidate interned for a day and quit', 8, '2021-08-30 10:32:18', 1),
(6123, 4180, 27, 5, 0, 'Task not Completed', 27, '2021-08-30 10:33:41', 1),
(6124, 4990, 27, 5, 0, 'task not Completed', 27, '2021-08-30 10:34:36', 1),
(6125, 4951, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:35:07', 1),
(6126, 5003, 64, 1, 0, NULL, 27, '2021-08-30 10:36:37', 1),
(6127, 5003, 27, 4, 0, 'Task Was Completed', 27, '2021-08-30 10:36:37', 1),
(6128, 5019, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:39:00', 1),
(6129, 5023, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:39:13', 1),
(6130, 5029, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:47:43', 1),
(6131, 5034, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:48:03', 1),
(6132, 5037, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:49:57', 1),
(6133, 5040, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:50:52', 1),
(6134, 5042, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:51:39', 1),
(6135, 5050, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:52:29', 1),
(6136, 5051, 27, 8, 0, 'Task Not Completed', 27, '2021-08-30 10:52:55', 1),
(6137, 5754, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:53:45', 1),
(6138, 5756, 64, 1, 0, NULL, 27, '2021-08-30 10:56:18', 1),
(6139, 5756, 27, 4, 0, 'Task was Completed', 27, '2021-08-30 10:56:18', 1),
(6140, 5843, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:56:51', 1),
(6141, 5926, 27, 8, 0, 'Task Not Completed', 27, '2021-08-30 10:58:07', 1),
(6142, 5932, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:58:24', 1),
(6143, 5934, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:59:45', 1),
(6144, 5937, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 11:00:10', 1),
(6145, 5941, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 11:01:12', 1),
(6146, 6036, 8, 5, 0, 'no basics skills and rejected by george.', 50, '0000-00-00 00:00:00', 1),
(6147, 6109, 8, 5, 0, 'has 2yr exp in manapuram gold loan 18k, target based salary, Resigned and looking for job. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(6148, 6108, 8, 5, 0, 'not speaking up, doing her own biz reselling. job need but will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(6149, 6107, 8, 4, 0, '2m exp in calling, fresher for us, father is a driver, expt 10-11k.', 7, '0000-00-00 00:00:00', 1),
(6150, 6107, 73, 4, 0, 'check sustainability xxamp Pressure handling.', 8, '2021-08-30 02:46:32', 1),
(6151, 6032, 8, 5, 0, 'fresher and very slow, rejected in technical round', 7, '0000-00-00 00:00:00', 1),
(6152, 6116, 8, 5, 0, 'will not suite for HR profile, below avg communication, for interview she learned few topics about HR, no Acceptance.', 7, '0000-00-00 00:00:00', 1),
(6153, 6111, 8, 8, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(6154, 6107, 14, 7, 0, 'salary 10k need to confirm joining date', 73, '2021-08-31 12:02:33', 1),
(6155, 5999, 8, 5, 0, 'still working in css corp 2l ctc, looking for career change, expt is 3-4l.has to discuss about the document submission and service agreement with parents.', 50, '0000-00-00 00:00:00', 1),
(6156, 6004, 8, 5, 0, 'will not suite for us, pursuing his degree in Journalism and interested in cine field.', 50, '0000-00-00 00:00:00', 1),
(6157, 6118, 8, 5, 0, 'known only UX, no basic knowledge in html/css, expt is 30k.', 50, '0000-00-00 00:00:00', 1),
(6158, 6055, 8, 4, 0, 'stammering to speak and seems like Mentally unstable. do check that once, okay with company terms.', 50, '0000-00-00 00:00:00', 1),
(6159, 6127, 8, 5, 0, 'from Redhills will not sustain. expt 10k', 7, '0000-00-00 00:00:00', 1),
(6160, 6126, 8, 5, 0, 'not speaking up. will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(6161, 6125, 8, 2, 0, 'sal expt is 15k, fresher for us but has 3.9m exp in credit card sales. ', 7, '0000-00-00 00:00:00', 1),
(6162, 6120, 8, 5, 0, 'came along with his friend tharick, he was not selected so he is not interested.', 7, '0000-00-00 00:00:00', 1),
(6163, 6110, 8, 5, 0, 'has 2yr exp in AMC 13k, expt is 16k. no Calling and sales exp.', 7, '0000-00-00 00:00:00', 1),
(6164, 6055, 69, 5, 0, 'not good with terms', 8, '2021-08-31 03:08:10', 1),
(6165, 6104, 73, 4, 0, 'selected but check sustainability ', 50, '0000-00-00 00:00:00', 1),
(6166, 6105, 8, 4, 2, 'has 3yr exp in health and general insurance 14k. 3 yr in acc as part timer during clg, good in health script. expt 15k. married 2021 may. ', 7, '0000-00-00 00:00:00', 1),
(6167, 6105, 53, 7, 0, 'selected hvng 3yrs exp in same field. we can provide her last sal 14k TH', 8, '2021-09-01 12:22:59', 1),
(6168, 6016, 8, 4, 0, 'already shortlisted by dhanalakshmi and priyanka. due to salary issue not joined. ', 7, '0000-00-00 00:00:00', 1),
(6169, 6016, 53, 7, 0, 'sal 11k ctc selected fr thiruvallur', 8, '2021-09-01 12:32:52', 1),
(6170, 6105, 59, 5, 0, 'Not responding to the calls. Even we tried reaching her on 07-Sep-2021.Earlier we Discussed With Her The Salary, Also She Looks For PF/ESI Benefits Too. The Candidate Will Share The Offer Letter And The Other Documents Today. I Will Confirm The Same ASAP Once Received From The Candidate', 53, '2021-09-01 12:42:14', 1),
(6171, 6016, 59, 3, 0, 'Selected for Tiruvallur Location in cash mode', 53, '2021-09-01 12:42:42', 1),
(6172, 6107, 59, 5, 0, 'Not comfortable with the salary what we offered being a fresher.Expecation is high than the 10.5 we offered. Not responding to the calls properly.Will not sustain for a long.', 14, '2021-09-01 02:57:43', 1),
(6173, 6145, 8, 5, 0, 'will not suite for our process, came with 3 friends will not sustain. 2m in Matrimoni calling ', 7, '0000-00-00 00:00:00', 1),
(6174, 6143, 8, 5, 0, 'Will Not Suite For Our Process, Came With 3 Friends Will Not Sustain. 1m In Matrimoni Calling ', 7, '0000-00-00 00:00:00', 1),
(6175, 6142, 8, 5, 0, 'Will Not Suite For Our Process, Came With 3 Friends Will Not Sustain. 2m In Matrimoni Calling and 2ys in chennai Corporation 15k.', 7, '0000-00-00 00:00:00', 1),
(6176, 6141, 8, 5, 0, 'not speaking up. native slang and lot of gap while speaking.', 7, '0000-00-00 00:00:00', 1),
(6177, 6140, 8, 4, 0, 'kindly confirm salary and DOJ', 7, '0000-00-00 00:00:00', 1),
(6178, 6138, 8, 4, 0, 'fresher for us, 2m calling exp and 1.2yr in gym as manager, was doing his own biz, check with sustainability and learning.', 7, '0000-00-00 00:00:00', 1),
(6179, 6136, 8, 5, 0, 'very childish will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(6180, 6129, 8, 5, 0, 'fresher for developing, married and has 2 yr kid, expt is 20k and was asking for shift timing. will not suite for us.', 7, '0000-00-00 00:00:00', 1),
(6181, 6114, 8, 5, 0, 'was working in photo studio fir 5yrs 20k, no payslips, know only Photoshop. expt sal is 25k', 7, '0000-00-00 00:00:00', 1),
(6182, 6106, 8, 5, 0, 'no response', 7, '0000-00-00 00:00:00', 1),
(6183, 6140, 29, 7, 2, 'Esales RM - Karthika Team', 8, '2021-09-01 03:35:56', 1),
(6184, 6130, 27, 5, 0, 'No Response.', 7, '0000-00-00 00:00:00', 1),
(6185, 6106, 69, 4, 0, 'The candidate has been assigned wrongly.', 8, '2021-09-01 03:41:01', 1),
(6186, 6063, 8, 5, 0, 'not active, father is an awin milk dealer, fro karur. just like that looking for job. ', 7, '0000-00-00 00:00:00', 1),
(6187, 6112, 8, 2, 0, 'has no degree, 2nd year drop out, has 2.6yr field exe exp. , 1yr in flipkart delivery. expt is 15k.father is a travel agent.', 7, '0000-00-00 00:00:00', 1),
(6188, 6138, 71, 5, 0, 'REJECT', 8, '2021-09-01 07:03:34', 1),
(6189, 6150, 8, 5, 0, 'was working in botiq accounts 16k, will not suite for our process. changing job for salary. expt is 18+, avg communication.', 7, '0000-00-00 00:00:00', 1),
(6190, 6134, 8, 4, 0, 'has 6m exp and expt is 15k, knows UX. looking for job. okay with terms.', 50, '0000-00-00 00:00:00', 1),
(6191, 6146, 8, 4, 0, 'has exp in .net, check for client company.expt is 12k. but long distance.', 50, '0000-00-00 00:00:00', 1),
(6192, 6137, 27, 2, 0, 'task was given', 50, '0000-00-00 00:00:00', 1),
(6193, 6152, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(6194, 6159, 8, 4, 3, 'fresher and job need, okay with calling and sales.  expt sal is 14-15k. ', 7, '0000-00-00 00:00:00', 1),
(6195, 6159, 24, 7, 0, 'candidate selected 13.5K salary', 8, '2021-09-02 11:11:18', 1),
(6196, 6159, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 24, '2021-09-02 11:14:06', 1),
(6197, 6164, 8, 4, 3, 'has 1yr exp as machine op. 12k expt 13k.  okay with calling and willing to learn.', 7, '0000-00-00 00:00:00', 1),
(6198, 6164, 24, 7, 0, '14K salary.. ', 8, '2021-09-02 12:48:31', 1),
(6199, 6164, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 24, '2021-09-02 12:53:15', 1),
(6200, 6172, 8, 5, 0, 'sal expt is high 15k but no Relevant exp in sales.', 7, '0000-00-00 00:00:00', 1),
(6201, 6171, 8, 5, 0, 'will not suite for our process, expt is 15k as fresher. ', 7, '0000-00-00 00:00:00', 1),
(6202, 6169, 8, 4, 2, 'has 1yr credit card sales 13k, has no reliving and payslip. Attire is not satisfied.', 7, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(6203, 6168, 8, 5, 0, 'very childish, hyper active and will not handle our pressure.', 7, '0000-00-00 00:00:00', 1),
(6204, 6165, 8, 5, 0, 'will not suite for sales, expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(6205, 6163, 8, 5, 0, 'Left Before Interview', 7, '0000-00-00 00:00:00', 1),
(6206, 6162, 8, 8, 0, 'left before interview', 7, '0000-00-00 00:00:00', 1),
(6207, 6161, 8, 5, 0, 'from kancheepuram, will not sustain, no idea about the job. Referred by GS Consultancy.', 7, '0000-00-00 00:00:00', 1),
(6208, 6157, 8, 5, 0, 'very childish, 18 and expt is 12-15k. native slang.', 7, '0000-00-00 00:00:00', 1),
(6209, 6153, 8, 4, 0, 'has 6m exp, expt is 15k,  knows basics in ui/ux. completed 6m course in designing. ', 7, '0000-00-00 00:00:00', 1),
(6210, 4729, 60, 1, 0, NULL, 27, '2021-09-02 02:58:28', 1),
(6211, 4729, 27, 7, 0, 'Selected as a Intern. 3 Years Service Agreement. intern for 1st 6 months. 3k salary for an internship.', 27, '2021-09-02 02:58:28', 1),
(6212, 6169, 14, 1, 0, NULL, 8, '2021-09-02 03:04:48', 1),
(6213, 6140, 8, 4, 0, 'kindly confirm salary and DOJ', 29, '2021-09-02 03:18:39', 1),
(6214, 6134, 69, 5, 0, 'Task not satisfactory', 8, '2021-09-02 03:32:47', 1),
(6215, 6153, 69, 4, 0, 'need to discuss regarding salary, 3 months observation period and sustainability.', 8, '2021-09-02 03:34:14', 1),
(6216, 6146, 59, 5, 0, 'Client round rejected', 8, '2021-09-02 05:43:13', 1),
(6217, 6140, 59, 3, 0, 'Selected for Karthika Esales Team in CAFSinfotech Prop in 208 deductions', 8, '2021-09-02 05:46:44', 1),
(6218, 6156, 8, 4, 0, 'fresher, okay with terms and conditions.', 50, '0000-00-00 00:00:00', 1),
(6219, 6102, 8, 5, 0, 'will not suite for us, was asking for leaves and timings and weekoff, expt is 15k and not okay with terms and conditions.', 50, '0000-00-00 00:00:00', 1),
(6220, 6178, 8, 5, 0, 'will not suite for sales profile, no confidence in speech.', 7, '0000-00-00 00:00:00', 1),
(6221, 6153, 59, 5, 0, 'We offered with the CTC 96000 for 1st 6 months and continues with the hike upto 12K PM along with SA. Candidate seems doubtful and we have given him time to confirm, but he Didnxquott turn with his interest', 69, '2021-09-03 02:32:46', 1),
(6222, 6190, 8, 5, 0, 'very low voice and will not suite for sales and expt is 18-20k. looking for backend job', 7, '0000-00-00 00:00:00', 1),
(6223, 6189, 8, 5, 0, 'very low voice and not speaking up, expt is 12-15k. said no idea to speak, ', 7, '0000-00-00 00:00:00', 1),
(6224, 6188, 8, 5, 0, 'has 6m exp in calling, job need married and divorced has 3yr kid, very native language. will not suite for our process,', 7, '0000-00-00 00:00:00', 1),
(6225, 6186, 8, 5, 0, 'has 1m exp in calling, came with friends, her communication and convincing is okay. will not sustain.', 7, '0000-00-00 00:00:00', 1),
(6226, 6185, 8, 5, 0, 'has 6m exp in semi voice and came with friends, will not sustain.', 7, '0000-00-00 00:00:00', 1),
(6227, 6180, 8, 5, 0, 'no job need, only son not very serious into his career. will not suite for sales.', 7, '0000-00-00 00:00:00', 1),
(6228, 6167, 8, 4, 0, 'has 1ye exp in calling, high job need expt 11k. from namakkal hs native slang.', 7, '0000-00-00 00:00:00', 1),
(6229, 6174, 41, 5, 0, 'Worked in fmcg sales and in cousin company will not suite for our profile', 50, '0000-00-00 00:00:00', 1),
(6230, 6175, 41, 5, 0, 'Will not sustain planning to do higher studies', 50, '0000-00-00 00:00:00', 1),
(6231, 6167, 14, 7, 0, 'Salary 10.5k,  07th sep joining she said so kindly confirm joining date', 8, '2021-09-03 03:46:38', 1),
(6232, 6156, 69, 5, 0, 'Candidate not good with content writing and communication ', 8, '2021-09-03 05:45:58', 1),
(6233, 6176, 8, 4, 0, 'will not suite for our process, knows only photoshop editing, last mctc 20-25k, expt 23-25k.', 50, '0000-00-00 00:00:00', 1),
(6234, 6181, 8, 4, 0, 'fresher and looking for react internship and okay with company terms', 50, '0000-00-00 00:00:00', 1),
(6235, 6176, 69, 5, 0, 'no relevant skills', 8, '2021-09-04 11:13:48', 1),
(6236, 6198, 8, 4, 0, 'fresher for calling and sales, has 1.4m exp in core, from pennadam, father working in a sugar factory. no 2w will arrange in 2-3 weeks.expt is 12-14k.', 7, '0000-00-00 00:00:00', 1),
(6237, 6198, 34, 7, 4, 'Selected he will join from 13th due to room issues and salary package is 13k take home ', 8, '2021-09-04 11:27:12', 1),
(6238, 6167, 59, 3, 0, 'Selected for Elite - Priyanka Team in Cash mode', 14, '2021-09-04 12:20:23', 1),
(6239, 6198, 59, 2, 0, 'Need to check the reporting manager to be assigned', 34, '2021-09-04 01:26:39', 1),
(6240, 6183, 8, 4, 0, 'fresher, job need, avg communication and expt is 10k, check with sustainability once.', 7, '0000-00-00 00:00:00', 1),
(6241, 6201, 8, 5, 0, 'fresher and no basic knowledge in domain.', 7, '0000-00-00 00:00:00', 1),
(6242, 6199, 8, 5, 0, 'looking for internship, pursuing his 3rd year,  willing to learn', 7, '0000-00-00 00:00:00', 1),
(6243, 6149, 8, 5, 0, 'fresher, expt is 15k+ and need to discuss about the terms and conditions with parents.', 7, '0000-00-00 00:00:00', 1),
(6244, 6183, 14, 7, 0, 'salary 10k need to confirm joining date ', 8, '2021-09-04 02:38:32', 1),
(6245, 6181, 54, 1, 0, NULL, 8, '2021-09-04 04:13:26', 1),
(6246, 6183, 59, 3, 0, 'Selected for Elite RE,5050 candidate sustainability doubts a lot. Last 1.5 months she got multiple offers and declined stating multiple reasons.Let us analyse in the 7 days of training', 14, '2021-09-04 04:13:40', 1),
(6247, 6104, 14, 5, 0, 'not suitable for this profile', 73, '2021-09-04 04:38:17', 1),
(6248, 6207, 8, 5, 0, 'looking for internship alone, planning to do higher study. ', 7, '0000-00-00 00:00:00', 1),
(6249, 6210, 27, 2, 0, 'task was given', 50, '0000-00-00 00:00:00', 1),
(6250, 6211, 8, 4, 0, 'okay with terms, has to relocate from bangalore, check the tech skills. cross check with the service agreement, only son so have to discuss with parents.', 50, '0000-00-00 00:00:00', 1),
(6251, 6216, 8, 4, 3, 'was working in her father company 2yrs no salary, married and husband and father in dubai, 2yr kid, okay with 10k', 50, '0000-00-00 00:00:00', 1),
(6252, 6154, 8, 4, 0, 'check with his skills, freelancer doing projects with his friend, looking for full time job. expt is 3l. ', 50, '0000-00-00 00:00:00', 1),
(6253, 6218, 8, 4, 3, 'has 4m exp in 2w loan and 1.5yr in back end. expt is 12k TH. ', 7, '0000-00-00 00:00:00', 1),
(6254, 6217, 8, 4, 0, 'has overall 8yr exp in sales, but no relevant exp. last mtc is 14.5 and expt is same. last 1yr working in swiggi. job need.', 7, '0000-00-00 00:00:00', 1),
(6255, 6218, 20, 7, 0, 'Shortlisted For 12k Tale home', 8, '2021-09-06 01:42:48', 1),
(6256, 6217, 20, 7, 0, 'Seems Suitable For RE, Kindly Negotiate For 14k Take home', 8, '2021-09-06 01:46:52', 1),
(6257, 6216, 14, 7, 0, 'Salary 10k need to confirm joining date', 8, '2021-09-06 01:48:16', 1),
(6258, 6218, 59, 5, 0, 'Not Comfortable With Telesales, Parents Are Not Convincing With The Role.', 20, '2021-09-06 02:34:07', 1),
(6259, 6217, 59, 2, 0, 'RNR,will check again and update the status', 20, '2021-09-06 02:34:44', 1),
(6260, 6197, 8, 5, 0, 'will not suite for any profile, very Lethargic and no sustainability. expt 15k', 50, '0000-00-00 00:00:00', 1),
(6261, 6224, 8, 5, 0, 'will not suite for calling, very low voice and will not handle pressure. 2017 passed out husband late has 3yr kid.', 7, '0000-00-00 00:00:00', 1),
(6262, 6221, 8, 4, 0, 'already worked in our org. last mtc is 11.5k, high job need. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(6263, 6221, 29, 7, 3, 'Esales RM - Divya Team', 8, '2021-09-06 03:39:35', 1),
(6264, 6216, 59, 3, 0, 'Selected for Priyanka Team in cash mode. Family business have been shifted from Pallavaram to Dubai.Distance around 16kms.', 14, '2021-09-06 04:31:15', 1),
(6265, 6210, 27, 2, 0, 'Task was Given', 27, '2021-09-06 05:08:07', 1),
(6266, 6211, 54, 1, 0, NULL, 8, '2021-09-06 05:09:03', 1),
(6267, 6154, 69, 5, 0, 'Task not satisfactory, candidate not fit for team', 8, '2021-09-06 06:32:32', 1),
(6268, 6232, 8, 4, 3, 'fresher for sales, has calling exp and expt is 15k, okay with company norms, mom taking care of family biz, check with his slang.', 50, '0000-00-00 00:00:00', 1),
(6269, 6226, 8, 5, 0, 'will not suite for our process, not speaking up, will not handle pressure.', 50, '0000-00-00 00:00:00', 1),
(6270, 6214, 8, 4, 0, 'done 6m course in .net, doesnt know any basics and expt is 15k, no idea about winforms. ', 50, '0000-00-00 00:00:00', 1),
(6271, 6229, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(6272, 6232, 57, 4, 0, 'candidate ok kindly confirm the salary and joining date ....', 8, '2021-09-07 11:21:38', 1),
(6273, 6232, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT deductions. Candidate have a plan to do part time education in UG. Not relevant Sales Exp, but he is into Customer care exp earlier. Let us try for Relationship Executive', 57, '2021-09-07 11:22:44', 1),
(6274, 6236, 8, 5, 0, 'has 3m exp in semi voice 8k, expt sal is 12k, will not suite for 12k.', 50, '0000-00-00 00:00:00', 1),
(6275, 6235, 8, 5, 0, 'will not sustain, will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(6276, 6234, 8, 5, 0, 'will not suite for our process, will not handle pressure and sustain', 7, '0000-00-00 00:00:00', 1),
(6277, 6233, 8, 4, 3, 'fresher and new to chennai, staying in pg with friend and his friend will not suite for us, kindly check with his sustainability. expt is 12-15k.', 7, '0000-00-00 00:00:00', 1),
(6278, 6233, 24, 7, 0, 'cross check sustainability.. . 11k salary', 8, '2021-09-07 12:38:08', 1),
(6279, 6233, 59, 2, 0, 'Fresher for RE profile, Salary Expectation is around 11K Th but sustainability doubts on this profile. Pressure handling doubts .Will confirm shortly', 24, '2021-09-07 12:42:58', 1),
(6280, 6112, 59, 3, 0, 'Selected for Kannan Team with PF/ESI/PT deductions. No previous Company payslip/offer letter. Commission based salary average 15K TH. Let us try for RE and analyse  the person in 7 days of training.No Higher Graduation, ist yr BCA discontinued', 19, '2021-09-07 12:44:07', 1),
(6281, 6242, 8, 4, 0, 'has 3yr exp in acc as part time 12k, looking for career change. father rtd govt mother house keeping. expt 10-12k.', 7, '0000-00-00 00:00:00', 1),
(6282, 6239, 8, 4, 3, 'has 4m exp in calling, has to sell braces over the call, expt is 13-15k, will relocate to chennai. ', 7, '0000-00-00 00:00:00', 1),
(6283, 6237, 8, 4, 3, 'has 4yr exp in teaching 15k, 2yrs in mobile shop as sales exe. 18k. shifted to chennai last month. job need expt 20k but okay with incentives and company norms. ', 7, '0000-00-00 00:00:00', 1),
(6284, 6237, 24, 5, 0, 'i dont remember on this.. sorry', 8, '2021-09-07 03:39:50', 1),
(6285, 6239, 29, 7, 3, 'Esales RM - Karthika Team, for salary refer resume or Arun', 8, '2021-09-07 03:43:19', 1),
(6286, 6242, 13, 7, 4, '10k salary but date of joining 26th sep because notice period of previous company', 8, '2021-09-07 04:02:36', 1),
(6287, 6242, 59, 3, 0, 'Selected for Muthu team with PF/ESI/PT', 13, '2021-09-07 04:07:48', 1),
(6288, 6243, 8, 5, 0, 'will not suite for our process, communication is not upto the level and expt is 15k', 7, '0000-00-00 00:00:00', 1),
(6289, 6231, 8, 4, 0, 'no knowledge in DM, just like that came for interview. looking for internship.', 7, '0000-00-00 00:00:00', 1),
(6290, 6214, 59, 5, 0, 'No relevant knowledge and experience.Not suits for our client role', 8, '2021-09-07 04:52:02', 1),
(6291, 6231, 69, 5, 0, 'No knowledge and not fit for our team', 8, '2021-09-07 04:53:35', 1),
(6292, 6218, 59, 5, 0, 'Not Comfortable With Telesales, Parents Are Not Convincing With The Role.', 59, '2021-09-07 07:48:50', 1),
(6293, 6196, 8, 5, 0, 'Knows Only Theory And No Practical Knowledge, Fresher And Done 2m Course. Will Not Suite For Client Company.', 50, '0000-00-00 00:00:00', 1),
(6294, 5826, 8, 8, 0, 'not attended', 50, '0000-00-00 00:00:00', 1),
(6295, 6173, 8, 5, 0, 'will not suite for the profile. avg communication and expt is 12-13k.', 50, '0000-00-00 00:00:00', 1),
(6296, 6212, 8, 5, 0, 'from Neyveli, fresher knows nothing in technical, not even knows the basics.', 50, '0000-00-00 00:00:00', 1),
(6297, 6219, 8, 5, 0, 'knows only theory and no practical knowledge, fresher and done 4m course. will not suite for client company.', 50, '0000-00-00 00:00:00', 1),
(6298, 6251, 8, 5, 0, 'will not suite for any profile, very fresher and new to chennai, no idea about his career and job.', 7, '0000-00-00 00:00:00', 1),
(6299, 6253, 8, 5, 0, 'will not suite for our process, has 3yr exp in calling but no clarity in his speech. Lctc ia 10.5k and expt is 16k.', 7, '0000-00-00 00:00:00', 1),
(6300, 6254, 8, 5, 0, 'will not suite for calling, wearing braces and has 6 bL and has to complete his exam and planning to do higher study.', 7, '0000-00-00 00:00:00', 1),
(6301, 6255, 8, 5, 0, 'time being looking for job, for extra pocket money he looking for job, will not sustain.', 7, '0000-00-00 00:00:00', 1),
(6302, 6256, 8, 5, 0, 'will not sustain, can work here for 6m, planning to do his higher study regular.', 7, '0000-00-00 00:00:00', 1),
(6303, 6249, 8, 5, 0, 'will not sustain and handle pressure.', 7, '0000-00-00 00:00:00', 1),
(6304, 6054, 59, 5, 0, 'Candidate salary Expectation is very high, holding multiple offers and demanding a lot from us. Expecting around 21% from his last drawn CTC and no relevant insurance sales exp.If we offered also not sure he joins us', 30, '2021-09-08 04:58:09', 1),
(6305, 6217, 59, 2, 0, 'RNR,Will Check Again And Update The Status. Tried Reaching Him From The Day Of Interview .But The Line Is Busy At Every Time We Reached. No Call Back Also', 59, '2021-09-08 05:28:20', 1),
(6306, 5981, 8, 5, 0, 'no update', 8, '2021-09-08 06:20:32', 1),
(6307, 5983, 8, 5, 0, 'no update', 8, '2021-09-08 06:20:55', 1),
(6308, 5909, 8, 5, 0, 'No Update', 8, '2021-09-08 06:21:20', 1),
(6309, 5858, 8, 5, 0, 'No Update', 8, '2021-09-08 06:22:20', 1),
(6310, 6257, 8, 5, 0, 'has 1yr exp in calling and 2yr exp in cams kyc, got hike in april 2021 from 13k to 16k. reason for reliving is low hike, expt is 18-20k', 7, '0000-00-00 00:00:00', 1),
(6311, 5608, 59, 5, 0, 'Client Round Reject\n', 59, '2021-09-08 07:17:01', 1),
(6312, 5713, 59, 5, 0, 'Client Round Reject', 59, '2021-09-08 07:17:16', 1),
(6313, 5957, 59, 5, 0, 'client round reject', 59, '2021-09-08 07:17:37', 1),
(6314, 5970, 59, 3, 0, 'Selected for Muthu team with TH 9975 Cash Mode', 13, '2021-09-09 10:19:00', 1),
(6315, 6263, 8, 4, 2, 'has 6m exp in health calling, good in script, expt is 12k. father farmer', 50, '0000-00-00 00:00:00', 1),
(6316, 6240, 8, 5, 0, 'looking for job, no knowledge in basics, has self learning will not suite for 15k and internship too.', 50, '0000-00-00 00:00:00', 1),
(6317, 6263, 19, 7, 0, 'shortlisted for srikanth team', 8, '2021-09-09 12:18:28', 1),
(6318, 6262, 8, 5, 0, 'has 2yr exp in calling, mahaveer electronics, expt is 18k and holds offer in bank bazar 15k and will not sustain, and suite for our process', 7, '0000-00-00 00:00:00', 1),
(6319, 6265, 8, 5, 0, 'has 1yr exp in networking, fresher for calling expt is 15k, not speaking up and will not suite for sales.', 7, '0000-00-00 00:00:00', 1),
(6320, 6074, 8, 5, 0, 'no response', 8, '2021-09-09 01:11:46', 1),
(6321, 4196, 8, 5, 0, 'no response', 8, '2021-09-09 01:14:46', 1),
(6322, 6264, 59, 2, 0, 'Fresher for IT domain, mechanical graduate, self learned the skills of IT, Can give a try for  React/React Native. Need to come back with his confirmation on the Service Agreement.', 60, '0000-00-00 00:00:00', 1),
(6323, 6274, 59, 5, 0, 'Fresher, not much comfortable with Telesales. Not open for target based positions. Will not handle the pressure. Not much communicative', 50, '0000-00-00 00:00:00', 1),
(6324, 6239, 59, 3, 0, 'Selected for Karthika Esales Team with PT deductions only in CAFSinfotech Prop', 29, '2021-09-11 11:45:37', 1),
(6325, 6221, 59, 3, 0, 'Selected for Dhivya Team with PT deduction in CAFSInfotech Prop', 29, '2021-09-11 11:48:19', 1),
(6326, 6263, 59, 2, 0, 'only 6 months exp Discussed and proposed CTC with PF/ESI/PT and candidate is expecting more and he needs to give confirmation, also he is in native and can join us next thursday(16-Sep)', 19, '2021-09-11 11:59:51', 1),
(6327, 6276, 59, 4, 0, 'No relevant Exp in sales, only into voice process exp. No bike and recently  met with accident and recovered.5050 profile, kindly check the profile for RE ', 60, '0000-00-00 00:00:00', 1),
(6328, 6276, 20, 5, 0, 'Candidate had an accident recently due to which he has to visit his ortho everyday from evening 6 to 9 for atleast 6 montha. Not willing for full day work', 59, '2021-09-11 01:14:25', 1),
(6329, 6198, 19, 5, 1, 'Not Fit ', 59, '2021-09-11 03:27:16', 1),
(6330, 6198, 59, 4, 0, 'Kindly check this candidate and update. As discussed please do have a telephonic Interview with the candidate and give me your feedback.', 59, '2021-09-11 03:27:16', 1),
(6331, 6280, 8, 5, 0, 'has 6m exp in networking 13k, no basic knowledge in ui/ux, expt is 10-15k,', 50, '0000-00-00 00:00:00', 1),
(6332, 6287, 8, 4, 0, 'has 3m exp Aa AR caller 15k, expt is 14k, has 2w and okay with RE, check with sustainability, last 3m working with Cousin as Contractor', 7, '0000-00-00 00:00:00', 1),
(6333, 6286, 8, 2, 0, 'selected by priyanka, will join by next month 11.5k, has 1.5yr exp in calling.', 50, '0000-00-00 00:00:00', 1),
(6334, 6272, 8, 4, 0, 'fresher for ux, no knowledge in UI, knows figma and adobe, from medavakkam wife working in TCS 45k, parents in native, okay with terms expt sal is 15k.', 7, '0000-00-00 00:00:00', 1),
(6335, 6290, 8, 5, 0, 'not speaking up, after degree 4yrs ideal at home, said very shy to search job.', 7, '0000-00-00 00:00:00', 1),
(6336, 6291, 8, 5, 0, 'will not sustain, already got offer for 9.5k, due to low salary not joined. currently from vadapalani asking for nearby location.', 7, '0000-00-00 00:00:00', 1),
(6337, 6287, 20, 7, 0, 'kindly shortlist for my team with 11k as take home salary.', 8, '2021-09-13 01:05:26', 1),
(6338, 6287, 59, 5, 0, 'Candidate Didnxquott turn for interview after lunch, also not responding to the calls. Recruiter checked with the candidate and updated that he is not interested in the profile', 20, '2021-09-13 01:11:56', 1),
(6339, 6272, 69, 5, 0, 'Task not satisfactory', 8, '2021-09-13 01:24:13', 1),
(6340, 6295, 8, 4, 0, 'No fahter she has to go for job, Check salary and office locaion.  Expt Is 10k', 7, '0000-00-00 00:00:00', 1),
(6341, 6297, 8, 4, 0, 'fresher, good convincing skill, job need, 10k expt', 7, '0000-00-00 00:00:00', 1),
(6342, 6298, 8, 4, 0, 'Fresher, high job need expt 10k, has laptop, father is a cleaner in hotel.  travelling distance 30mins from thanjavur.', 7, '0000-00-00 00:00:00', 1),
(6343, 6298, 74, 7, 4, 'completed be but not intrested in core field, need a system work family is in poor situtation so job need, have laptop and near to office only salary 10k ', 8, '2021-09-13 04:21:03', 1),
(6344, 6297, 74, 7, 3, 'completed bcom intrested in telesales family in a poor condition job need group 2 exam intrested and preparing.....salary 10k kindly confirm once', 8, '2021-09-13 04:21:45', 1),
(6345, 6295, 74, 7, 3, 'completed bcom father passed away intreated in telecalling, taking tution in parttime.............2 siblings ....financially week so job to much needed...10k salary kindly confirm once', 8, '2021-09-13 04:22:48', 1),
(6346, 6294, 74, 7, 3, 'completed be but intrested in telecalling and poor family job needed ....10 to 11k salary ....father electrician....kindly confirm once', 8, '2021-09-13 04:23:24', 1),
(6347, 6299, 8, 4, 0, 'fresher, father late his uncle supporting financially, job need willing to learn, will buy laptop in a week, expt is 10k, from thiruvarur.', 7, '0000-00-00 00:00:00', 1),
(6348, 6299, 74, 7, 4, 'completed bsc IT but not intrested in software field, good listener and talk active very much job need father passed away ....uncle support financially ......salary 10 k kindly confirm once', 8, '2021-09-13 04:34:16', 1),
(6349, 6298, 59, 3, 0, 'Selected for Tanjavur in cash mode', 74, '2021-09-13 04:34:50', 1),
(6350, 6299, 59, 2, 0, 'Spoke with the candidate and projected our salary breakup, he will give us the confirmation tonight', 74, '2021-09-13 04:38:46', 1),
(6351, 6297, 59, 2, 0, 'Discussed and shared the salary breakup for the candidate confirmation,will update once get the confirmation', 74, '2021-09-13 04:41:59', 1),
(6352, 6295, 59, 2, 0, 'Spoke with candidate and shared the salary breakup for her confirmation. Will update the status once done', 74, '2021-09-13 04:46:28', 1),
(6353, 6294, 59, 2, 0, 'Discussed and shared the salary breakup ,will confirm once get her confirmation', 74, '2021-09-13 04:55:46', 1),
(6354, 6279, 8, 5, 0, 'Doesnxquott know what is ui/ux, knows photoshop and cdrw, 4.5yr exp in core field 23.7k, expt is 30k, just like that came for interview.', 50, '0000-00-00 00:00:00', 1),
(6355, 6283, 8, 4, 0, 'came for ob, not okay with internship, said knows skills like php, android, html,css,jqueri. done workshops in clg. check with his technical skills.', 50, '0000-00-00 00:00:00', 1),
(6356, 6292, 8, 4, 0, '9m exp in csharp and knows basics in winforms, ctc is 2.7l and expt is 3.2l, will relocate to chennai. reason for reliving-contract till sep30th, no idea to continue there.', 50, '0000-00-00 00:00:00', 1),
(6357, 6301, 8, 8, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(6358, 6293, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(6359, 6303, 8, 4, 3, 'has 2yr exp in direct sales but fresher for us 13-14k in hand, from madurai residing at triplicane, father auto driver. expt is 16-18k.', 7, '0000-00-00 00:00:00', 1),
(6360, 6302, 8, 2, 0, 'no idea about dM, looking for internship. and okay with the Norms.', 7, '0000-00-00 00:00:00', 1),
(6361, 6303, 20, 7, 0, '2 years field sales experience, shortlist for 12.5K as take home salary. ', 8, '2021-09-14 12:08:03', 1),
(6362, 5207, 59, 2, 0, 'Discussed and yet to get candidate confirmation.Shared the salary breakup for his reference\n', 13, '2021-09-14 12:15:43', 1),
(6363, 6303, 59, 2, 0, 'Discussed and projected our salary breakup with PF/ESI/PT. But he is expecting more. No relevant Insurance sales, but into Construction.07th sept attended interview with ICICI and they are ready to offer around 18-19 for field sales. Candidate will give his confirmation on 16th Sep only', 20, '2021-09-14 12:27:18', 1),
(6364, 6306, 8, 5, 0, 'will not suite for our process, not speaking up and expt is 12k, father and mother govt emp.', 7, '0000-00-00 00:00:00', 1),
(6365, 6308, 8, 5, 0, '1yr exp in tcs 2.5l ctc and expt is 15k. not okay with her convincing. ', 7, '0000-00-00 00:00:00', 1),
(6366, 6294, 59, 3, 0, 'Selected for Tanjore Location in cash mode', 59, '2021-09-14 04:28:38', 1),
(6367, 6295, 59, 3, 0, 'Selected for Tanjore in Cash mode', 59, '2021-09-14 04:29:29', 1),
(6368, 6292, 59, 5, 0, 'Discussed, he is only into debugging no development Exp.9 months of Exp into debug only 30 days of the notice period. Attended around 30+ virtual interviews and the salary expectation is very high . Sustainability doubts.', 8, '2021-09-14 05:03:49', 1),
(6369, 6283, 27, 5, 0, 'No Response.', 8, '2021-09-14 05:30:41', 1),
(6370, 6297, 59, 3, 0, 'Selected for Tanjore location  in cash mode', 59, '2021-09-14 05:57:22', 1),
(6371, 6299, 59, 3, 0, 'Selected for Tanjore in cash mode\n', 59, '2021-09-14 05:57:50', 1),
(6372, 6316, 40, 8, 0, 'Not attended', 50, '0000-00-00 00:00:00', 1),
(6373, 6281, 8, 5, 0, 'has 11m exp in s/w testing 10k, 6m course in multiple domin, married and 3yr kid, father and mother both govt emp, husband is a project manager in a pvt company.', 50, '0000-00-00 00:00:00', 1),
(6374, 6271, 8, 5, 0, 'has 10yr exp and 5yrs in society general. his ctc is 16.5L and expt is 24L. wife working in tcs and from virugambakkam.', 50, '0000-00-00 00:00:00', 1),
(6375, 6289, 8, 5, 0, 'has 2yr exp in mern in tcs and 3.2l ctc, before that he was running his own biz in 3d printing, looking for react internship and for job expt is 4l.', 50, '0000-00-00 00:00:00', 1),
(6376, 6310, 8, 5, 0, 'done 6m course, no working exp in .net and expt 20k in hand. has 3.5yr exp in backend  24k.', 50, '0000-00-00 00:00:00', 1),
(6377, 6318, 8, 4, 3, 'has 9m exp in backend 9.5k, expt 10k and from 1000lights, father is a gold merchant and only son. okay for calling.', 7, '0000-00-00 00:00:00', 1),
(6378, 6318, 14, 7, 0, 'salary 10k.need to confirm joining date', 8, '2021-09-15 12:55:55', 1),
(6379, 6318, 59, 3, 0, 'Selected for Priyanka Elite Team in Cash Consultant mode', 14, '2021-09-15 01:04:33', 1),
(6380, 6323, 8, 4, 0, 'fresher, father daily wages, we can train him, job need, planning to do higher study after 2yrs, expt 10-12k', 7, '0000-00-00 00:00:00', 1),
(6381, 6323, 13, 7, 4, 'ok 10k salary Monday joining', 8, '2021-09-15 02:56:31', 1),
(6382, 6322, 8, 4, 0, 'fresher, high job need, no father and brother was working now unemployed and mom house wife. 2km from thanjavur and no laptop. okay with 10k salary. Can join tomorrow.', 7, '0000-00-00 00:00:00', 1),
(6383, 6322, 74, 7, 3, 'Completed BE and interested in bpo only salary 10k good in Convincing,father passed away, high job need ', 8, '2021-09-15 04:14:49', 1),
(6384, 6322, 59, 3, 0, 'Selected for Thanjavur in Cash Mode\n', 74, '2021-09-15 04:21:54', 1),
(6385, 6303, 59, 3, 0, 'Selected for Srikanth Team with PF/ESI/PT', 59, '2021-09-15 05:32:49', 1),
(6386, 5207, 59, 3, 0, 'Selected for Tanjore location in cash mode\n', 59, '2021-09-15 06:23:17', 1),
(6387, 6217, 59, 5, 0, '	Rnr Tried Reaching Him From The Day Of Interview .But The Line Is Busy At Every Time We Reached. No Call Back Also', 59, '2021-09-15 06:46:38', 1),
(6388, 6327, 8, 4, 3, 'has 2yr part time exp in pharma, fresher for calling, job need and expt 10k,', 7, '0000-00-00 00:00:00', 1),
(6389, 6327, 19, 7, 0, 'selected suthagar team', 8, '2021-09-16 11:51:17', 1),
(6390, 6326, 8, 4, 0, 'check for calling and sales', 7, '0000-00-00 00:00:00', 1),
(6391, 6326, 73, 7, 0, 'selected confirm joining date and salary package', 8, '2021-09-16 12:13:27', 1),
(6392, 6331, 8, 4, 2, 'fresher for us, 5yr in cub as sr. associate. 30k and expt 25k. was asking for transfer then resigned. wife working in logistics into sales.', 7, '0000-00-00 00:00:00', 1),
(6393, 6329, 8, 4, 0, 'looking for accounts job, check once.', 7, '0000-00-00 00:00:00', 1),
(6394, 6319, 8, 4, 0, 'knows ux and no idea about ui, has 10+ yrs exp and expt 3l. wife working in wipro and has 1 kind.', 7, '0000-00-00 00:00:00', 1),
(6395, 6331, 44, 1, 0, NULL, 8, '2021-09-16 12:19:20', 1),
(6396, 6319, 69, 5, 0, 'Task not satisfactory', 8, '2021-09-16 12:45:15', 1),
(6397, 6327, 59, 3, 0, 'Selected for Suthagar team with Pf/ESI/PT', 19, '2021-09-16 12:52:32', 1),
(6398, 6305, 8, 4, 0, 'fresher, willing to learn okay with company norms, expt is 12k,', 7, '0000-00-00 00:00:00', 1),
(6399, 6305, 54, 1, 0, NULL, 8, '2021-09-16 01:25:05', 1),
(6400, 6336, 8, 5, 0, 'very childish and Stammering to speak. will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(6401, 6335, 8, 2, 0, 'for telephonic', 7, '0000-00-00 00:00:00', 1),
(6402, 6334, 8, 5, 0, 'planning to join it course and search it job, expt is 15k from sri perambathur.', 7, '0000-00-00 00:00:00', 1),
(6403, 6333, 8, 5, 0, 'Planning To Join It Course And Search It Job, Expt Is 15k From Sri Perambathur.', 7, '0000-00-00 00:00:00', 1),
(6404, 6332, 8, 5, 0, 'fresher, has to learn', 7, '0000-00-00 00:00:00', 1),
(6405, 6337, 8, 4, 3, 'has 3yr exp in car showroom sales 18k and expt is 23k, check with his calling skill and fresher for life insurance. in notice-7more days, will join on 27th sep.', 7, '0000-00-00 00:00:00', 1),
(6406, 6337, 33, 4, 3, 'PLEASE CHECK SUSTAINABILITY AND SALARY SIR ', 8, '2021-09-16 04:34:08', 1),
(6407, 6337, 18, 7, 4, 'Selected for Raj Team. Ready to Join on 27th of this months. Package discussed is 2.6L CTC overall. Can release the offer', 33, '2021-09-16 05:27:41', 1),
(6408, 4154, 33, 4, 2, 'kindly check sustainability candidate didnt get job for one year so long gap please check sustainabiliity and gaurav sir suggested to give salary 20k  take home for per month maximum  and sharath taken interview he told good in telecalling skills ', 8, '2021-09-16 05:46:10', 1),
(6409, 6337, 59, 3, 0, 'Selected for Raj Team with PF/ESI/Deductions.3+ yrs in showroom sales exp but no documents for the proof.Has initiated his resignation in the company', 18, '2021-09-16 06:17:01', 1),
(6410, 6329, 53, 2, 0, 'Need to check once', 8, '2021-09-16 06:29:22', 1),
(6411, 6339, 8, 4, 3, 'Has 7m exp in Construction field, okay With his pro and expt as per Company and we can Train for RE. No father ans mom is a seri Actress.', 7, '0000-00-00 00:00:00', 1),
(6412, 6339, 19, 7, 4, 'Sustainability', 8, '2021-09-17 11:28:33', 1),
(6413, 6342, 8, 4, 3, 'has 11m exp in core 14k, relived due to covid, parents farmer, expt 16k but okay with 13-14k ctc, fresher for us we need to train.', 7, '0000-00-00 00:00:00', 1),
(6414, 6341, 8, 5, 0, 'has 1yr part time job in hsbc bank back end, salary not satisfied so looking for job change, expt 18k, will not suite for our company. ', 7, '0000-00-00 00:00:00', 1),
(6415, 6339, 59, 3, 0, 'Selected for  Suthagar Team with PF/ESI/PT deductions', 19, '2021-09-17 11:39:52', 1),
(6416, 6342, 24, 5, 0, 'Expected High salary', 8, '2021-09-17 12:00:22', 1),
(6417, 6340, 8, 5, 0, 'no degree, holds offer and his language is not good, will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(6418, 6349, 8, 5, 0, 'fresher, looking for calling and not interested in field sales, expt is 15k take home.', 7, '0000-00-00 00:00:00', 1),
(6419, 6343, 8, 4, 0, 'fresher for calling and has 2yr exp in backend 13k, okay with 10k, no father and mother daily wages.', 7, '0000-00-00 00:00:00', 1),
(6420, 6326, 59, 2, 0, 'Not reachable', 73, '2021-09-17 05:42:26', 1),
(6421, 6330, 53, 7, 0, 'Salary 10k need to confirm joining date', 7, '0000-00-00 00:00:00', 1),
(6422, 6355, 8, 4, 0, 'check and do the needful', 7, '0000-00-00 00:00:00', 1),
(6423, 6343, 14, 7, 0, 'Salary 11k kindly confirm joining date for thiruvallur', 8, '2021-09-17 06:15:39', 1),
(6424, 6343, 59, 2, 0, 'need to come back with her confirmation', 14, '2021-09-17 06:20:26', 1),
(6425, 6355, 18, 7, 4, 'Selected for raj team. Spokent 252100 as overall ctc Able to join around 27th', 8, '2021-09-17 06:21:35', 1),
(6426, 6330, 59, 2, 0, 'Doubtful on sustainability, He much prefers for the non-voice process. He tried to avoid voice as there will be a lot of pressure on the targets.Pressure handling very doubtfull', 53, '2021-09-17 06:34:52', 1),
(6427, 6309, 8, 4, 0, 'has to check his tech skills, very fresher and self learning in it, completed bsc physics, father and mother dialy wages, okay with company norms.', 7, '0000-00-00 00:00:00', 1),
(6428, 6309, 59, 5, 0, 'Fresher,Self learned but not much comfortable with terms and conditions on the SA', 8, '2021-09-17 06:46:42', 1),
(6429, 6338, 8, 4, 0, 'has 5m and 5m exp in designing, knows ux 12kand expt is 17k. holds offer in a company for 15k.', 50, '0000-00-00 00:00:00', 1),
(6430, 6350, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(6431, 6323, 59, 3, 0, 'Selected for Muthu Team in Cash mode', 13, '2021-09-18 11:54:03', 1),
(6432, 6361, 8, 5, 0, 'fresher, not speaking up and first interview ', 7, '0000-00-00 00:00:00', 1),
(6433, 6356, 8, 5, 0, 'has 5yr in ar calling 15k and no sales exp. 4m in a pest company and  Expt Is 25k, company 18.5k. ', 7, '0000-00-00 00:00:00', 1),
(6434, 6311, 8, 4, 0, '4m back attened interview, has internship exp, exp is 12-15k, avg communication. father rtd emp.', 50, '0000-00-00 00:00:00', 1),
(6435, 4154, 18, 7, 4, 'Selected for Raj Team. Expected package is 23K in hand but we can check and negotiate. Immed Joiner', 33, '2021-09-18 12:56:16', 1),
(6436, 6326, 59, 3, 0, 'Selected for Tiruvallur Location in Cash mode', 59, '2021-09-18 04:29:59', 1),
(6437, 6343, 59, 3, 0, 'Selected for Tiruvallur Location in Cash mode', 59, '2021-09-18 04:30:39', 1),
(6438, 6311, 69, 5, 0, 'Candidate having own business. ', 8, '2021-09-18 06:09:19', 1),
(6439, 6338, 69, 5, 0, 'Not fit for team', 8, '2021-09-18 06:11:36', 1),
(6440, 6379, 8, 5, 0, 'no basic tech skills, expt 15k, not okay with service agreement. ', 50, '0000-00-00 00:00:00', 1),
(6441, 6296, 8, 5, 0, 'fresher, no basic tech skill, expt is 15k.', 50, '0000-00-00 00:00:00', 1),
(6442, 6357, 8, 5, 0, 'fresher and self learner, have not done any courses. expt is 3l.', 50, '0000-00-00 00:00:00', 1),
(6443, 6374, 8, 5, 0, 'will not sustain, avg convincing. ', 7, '0000-00-00 00:00:00', 1),
(6444, 6385, 8, 4, 0, 'lang below avg. learnt basic about dM and attitude is not satisfied. expt is 15k, terms not shared with him.', 50, '0000-00-00 00:00:00', 1),
(6445, 6313, 8, 4, 0, 'fresher from tnagar, father in to biz, knows basics in tech. expt is 10-15k, okay with company norms.\n', 50, '0000-00-00 00:00:00', 1),
(6446, 5789, 8, 5, 0, 'Fresher, No Basic Tech Skill, Expt Is 15k.', 50, '0000-00-00 00:00:00', 1),
(6447, 6387, 8, 5, 0, 'will not suite for our process, 1yr exp in press in data entry. will not suite for sales aswell. ', 7, '0000-00-00 00:00:00', 1),
(6448, 6386, 8, 5, 0, 'very fresher, no tech skills, has to learn. no course ', 7, '0000-00-00 00:00:00', 1),
(6449, 6382, 8, 5, 0, 'will not suite for sales, has core exp expt is 15, not speaking up, no flow.', 7, '0000-00-00 00:00:00', 1),
(6450, 6385, 69, 5, 0, 'No knowledge about DM, doubtful in terms of sustainability. Attitude issues.\n\n\n\n\n ', 8, '2021-09-20 01:07:07', 1),
(6451, 6330, 59, 3, 0, 'Selected for tiruvallur Location in cash mode', 59, '2021-09-20 01:18:36', 1),
(6452, 3479, 69, 5, 0, 'Not sustainable', 69, '2021-09-20 01:19:30', 1),
(6453, 5374, 69, 5, 0, 'Task not satisfactory', 69, '2021-09-20 01:23:42', 1),
(6454, 6313, 54, 1, 0, NULL, 8, '2021-09-20 02:30:36', 1),
(6455, 6383, 8, 4, 0, 'fresher for calling, has exp in core job, expt is 12k and okay with 10k in native, good in convincing. we can train him.', 7, '0000-00-00 00:00:00', 1),
(6456, 6383, 74, 7, 3, 'completed BE and not intrested in core job well exposure and good explaining capacity salary 10.5 k  wednesday joining kindly conform once', 8, '2021-09-20 02:42:13', 1),
(6457, 6123, 8, 4, 0, 'freelancer, video editor for a youtube channel and has knowledge in UX, expt is 25k.will relocate to chennai.', 7, '0000-00-00 00:00:00', 1),
(6458, 6383, 59, 2, 0, 'He is in travel,will call back later', 74, '2021-09-20 04:36:32', 1),
(6459, 6393, 8, 5, 0, 'Fresher 5050, Avg In Convincing.', 7, '0000-00-00 00:00:00', 1),
(6460, 6380, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(6461, 6123, 69, 5, 0, 'No relevant skills', 8, '2021-09-20 06:36:36', 1),
(6462, 6401, 8, 5, 0, 'will not suite for our process, no flow in speech, has 5yrs gap expt is 13k.', 7, '0000-00-00 00:00:00', 1),
(6463, 6402, 8, 5, 0, 'fresher, not speaking up, prefers accounts job, will not handle pressure and sustain.', 7, '0000-00-00 00:00:00', 1),
(6464, 6403, 8, 4, 3, 'fresher, expt 10k, has 2w no laptop, good in convincing and lang is good. ', 7, '0000-00-00 00:00:00', 1),
(6465, 6353, 8, 4, 0, 'fresher for ui, expt is 12k, has basics in ui, check with this tech skills. attitude wise good.', 7, '0000-00-00 00:00:00', 1),
(6466, 6403, 20, 7, 5, 'kindly shortlist for my team with 13k cTC', 8, '2021-09-21 11:49:17', 1),
(6467, 6403, 59, 3, 0, 'Fresher for our Sales Profile,Selected for Srikanth team with PF/ESI/PT Deductions', 20, '2021-09-21 11:54:41', 1),
(6468, 6407, 8, 4, 3, 'has 3yr exp in calling and currently working in murugappa 1yr contract. resently married looking for salary hike and day shift. no laptop. expt is 15k. wife is looking for job.', 7, '0000-00-00 00:00:00', 1),
(6469, 6407, 53, 7, 0, 'selected for srikanth team, having 3 yrs telecalling exp, married, job need, pls cnfrm DOJ nd salary', 8, '2021-09-21 01:16:10', 1),
(6470, 6412, 8, 4, 3, 'fresher, okay for calling profile, will train. expt 10-12k', 7, '0000-00-00 00:00:00', 1),
(6471, 6411, 8, 4, 3, 'fresher, little bit slow, we can train. expt 10k, came with her Friend so check sustainability once. job need.', 7, '0000-00-00 00:00:00', 1),
(6472, 6409, 8, 5, 0, 'fresher, no basics knowledge, bcom but looking for IT profile and no course and expt 10k. job need, mom Separated.', 7, '0000-00-00 00:00:00', 1),
(6473, 6412, 14, 7, 0, 'salary 10k. need to confirm joining date', 8, '2021-09-21 02:42:25', 1),
(6474, 6406, 8, 5, 0, 'no Sustainability, his last ctc is 16k and holds offer for 22k and expt 24-28k. will not suite for our process. was doing his catering biz and will continue the biz as well.', 7, '0000-00-00 00:00:00', 1),
(6475, 6412, 59, 3, 0, 'Selected for Elite RE - Priyanka Team - Cash mode\n', 14, '2021-09-21 02:51:46', 1),
(6476, 6355, 8, 4, 0, 'check and do the needful', 18, '2021-09-21 04:23:35', 1),
(6477, 6353, 69, 5, 0, 'lack of  experience.', 8, '2021-09-21 05:18:07', 1),
(6478, 6383, 59, 2, 0, 'Discussed With The Candidate And Shared The Salary Breakup.Once Get The Candidate Confirmation Will Update The Same', 59, '2021-09-21 05:36:43', 1),
(6479, 6383, 59, 3, 0, 'Selected for Elite RE Thanjavur Location in Cash mode and able to join on Thursday only due to some personal work\n', 59, '2021-09-21 06:28:06', 1),
(6480, 6411, 14, 5, 0, 'Not suitable for voice process', 8, '2021-09-22 10:21:08', 1),
(6481, 6355, 59, 3, 0, 'Selected for RM - Raj Team with PF/ESI/PT deductions. Having Sales Exp in Automobile Industry.', 8, '2021-09-22 10:24:19', 1),
(6482, 6302, 8, 5, 0, 'will not suite for us, has to learn and come', 8, '2021-09-22 10:27:11', 1),
(6483, 6286, 8, 5, 0, 'no response sal expt high', 8, '2021-09-22 10:27:35', 1),
(6484, 6425, 8, 5, 0, 'have seen post in naukri and came directly, looking for accounts job.', 7, '0000-00-00 00:00:00', 1),
(6485, 6424, 8, 5, 0, 'fresher, not speaking up and will not suite for our process, will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(6486, 6421, 8, 5, 0, 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Interested In Internship Has To Discuss With Family.', 7, '0000-00-00 00:00:00', 1),
(6487, 6420, 8, 4, 0, 'fresher, has done 3m course in designing but applied for php (as hr said), no idea about php and pgmng lang. knows basic in html and css. check with his tech skills.', 7, '0000-00-00 00:00:00', 1),
(6488, 6419, 8, 5, 0, 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Interested In Internship Has To Discuss With Family.', 7, '0000-00-00 00:00:00', 1),
(6489, 6418, 8, 5, 0, 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Interested In Internship has to discuss with family.', 7, '0000-00-00 00:00:00', 1),
(6490, 6416, 8, 5, 0, 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Not Interested In Internship Too.', 7, '0000-00-00 00:00:00', 1),
(6491, 6415, 8, 5, 0, 'pursuing mca, yet to complete final year project. expt 15k, doesnt know the basics in php and other programming lang. not interested in internship too.', 7, '0000-00-00 00:00:00', 1),
(6492, 6378, 8, 4, 0, 'has 3.6m exp in UI-20k, expt 30k, from nagarkovil will relocate to chennai. knows basics in ux. check with his tech skills.', 7, '0000-00-00 00:00:00', 1),
(6493, 6233, 59, 5, 0, 'Tried couple of times and no response from the candidate', 59, '2021-09-22 02:40:11', 1),
(6494, 6263, 59, 5, 0, 'have given time to confirm the CTC offered,but his expectation is very high and not comfortable  to join us', 59, '2021-09-22 02:42:28', 1),
(6495, 6264, 59, 5, 0, 'Seems not much comfortable with TxxampC, asked time to confirm on the same but he Didnxquott turn back with his confirmation.', 59, '2021-09-22 02:43:40', 1),
(6496, 6407, 59, 3, 0, 'Selected for Srikanth  Team with PF/ESI/PT deductions.2+ yrs voice experience but not in Insurance domain.', 53, '2021-09-22 02:51:27', 1),
(6497, 6329, 53, 5, 0, 'he s not intrested in telecalling. looking for Accounts related job', 53, '2021-09-22 02:52:00', 1),
(6498, 6378, 69, 5, 0, 'Task was okay but Couldnxquott match with our requirements. Checked with udhay bro too.', 8, '2021-09-22 06:07:06', 1),
(6499, 6420, 69, 5, 0, 'candidate actually interested in UI and we only require experienced for the same.', 8, '2021-09-22 06:15:56', 1),
(6500, 6434, 8, 5, 0, 'has 3yr exp in calling but will not suite for sales.', 7, '0000-00-00 00:00:00', 1),
(6501, 6433, 8, 2, 0, 'fresher, 8yr delivering news papers in morning 1.5k, lang is very native. has to check once.', 7, '0000-00-00 00:00:00', 1),
(6502, 6432, 8, 2, 0, 'has to complete telephonic interview. ', 7, '0000-00-00 00:00:00', 1),
(6503, 6414, 8, 4, 0, 'fresher, have done 2m online class in DM, expt 12k. has no idea about the profile. has 21k follower in instagram. communication is below avg.', 7, '0000-00-00 00:00:00', 1),
(6504, 6414, 69, 5, 0, 'Candidate having Oscillation. ', 8, '2021-09-23 12:34:51', 1),
(6505, 6439, 8, 2, 0, 'fresher, father is a revenue dept inspt, okay wit his skills, job need is doubt. need to check once, fnd of krishna-yet to join.', 7, '0000-00-00 00:00:00', 1),
(6506, 6410, 8, 4, 0, 'fresher, check with his tech skills, term and sal not shared with candidate', 7, '0000-00-00 00:00:00', 1),
(6507, 6304, 8, 5, 0, 'very fresher, doesnt know basics, not okay with terms and conditions. expt 14-15k.', 7, '0000-00-00 00:00:00', 1),
(6508, 6410, 69, 2, 0, 'Task yet to be shared properly', 8, '2021-09-23 05:46:27', 1),
(6509, 6449, 8, 4, 3, 'fresher for us no sales exp. good in communication and convincing, Recently married can work 1-1.5yr. expt 20k. ', 7, '0000-00-00 00:00:00', 1),
(6510, 6448, 8, 4, 3, 'fresher for sales, has core exp 1.5yr 14k and okay with calling profile and expt is 13k. no 2w and laptop will arrange asap.', 7, '0000-00-00 00:00:00', 1),
(6511, 6447, 8, 4, 0, 'fresher, came by simply jpr youtube. from rameshwaram willing to learn and need to discuss with family regarding internship. check with his tech skills.', 7, '0000-00-00 00:00:00', 1),
(6512, 6446, 8, 4, 0, 'Fresher, Came By Simply Jpr Youtube. From Rameshwaram Willing To Learn and okay with internship. Check With His Tech Skills.', 7, '0000-00-00 00:00:00', 1),
(6513, 6445, 8, 5, 0, 'very slow, will ot suite for voice process.', 7, '0000-00-00 00:00:00', 1),
(6514, 6441, 8, 4, 0, '1yr trainee in tvs tech 15k, no relevant exp and expt is 16-18k. ', 7, '0000-00-00 00:00:00', 1),
(6515, 6435, 8, 5, 0, 'was working in printer service like filling ink and installation for past 6yrs.  will not suite for designing. learning fullstalk and expt 12-15k', 7, '0000-00-00 00:00:00', 1),
(6516, 6429, 8, 5, 0, 'has 1yr exp in testing, learning php doesnt know basics. expt is 3l, sal and terms not shared with him.', 7, '0000-00-00 00:00:00', 1),
(6517, 6413, 8, 4, 0, 'fresher, sid knows basics in designing. check with his tech skills. ', 7, '0000-00-00 00:00:00', 1),
(6518, 6443, 8, 5, 0, 'Fresher, Doesnt Know Basics In Php. From alapakkam Too Long. Expt Is 13-15k, Terms Not Shared With Her.', 7, '0000-00-00 00:00:00', 1),
(6519, 6426, 8, 5, 0, 'fresher, doesnt know basics in php. from kundrathur too long. expt is 13-15k, terms not shared with her.', 7, '0000-00-00 00:00:00', 1),
(6520, 6449, 71, 4, 0, 'Profile- Good\nFamily Background-Good \nage-29, Newly married \nInsurance knowledge - Average \nSales skill - Average\nLast salary in chennai - 15k take home\nExpectation salary - Above 20k take home.  ', 8, '2021-09-24 01:09:30', 1),
(6521, 6449, 18, 7, 4, 'Selected for Santosh Team. Ready to Join on Monday. Expected salary is 20K net+ PF. Please check and close', 71, '2021-09-24 01:20:15', 1),
(6522, 6448, 53, 7, 0, 'Selected for RE, First 2 months he is ok with telecalling becz of bike issue, after two month he ll go for appt, sal 10k, once he promoted as RE need to increase his takehome salary 2k to 3 k  already discussed wioth the candidate', 8, '2021-09-24 02:32:15', 1),
(6523, 6447, 27, 5, 0, 'No Response.', 8, '2021-09-24 05:16:11', 1),
(6524, 6446, 54, 1, 0, NULL, 8, '2021-09-24 05:25:10', 1),
(6525, 6441, 69, 5, 0, 'Candidate only exposure in Auto CAD xxamp High salary expectation ', 8, '2021-09-24 05:40:07', 1),
(6526, 6404, 8, 4, 0, 'has 1yr exp in iob backend, learning designing and father x-service and expt 15k. terms and conditions not shared with him.', 7, '0000-00-00 00:00:00', 1),
(6527, 6404, 69, 4, 0, 'candidate task is good', 8, '2021-09-24 05:42:16', 1),
(6528, 6430, 8, 5, 0, '	Was Working In Printer Service Like Filling Ink And Installation For Past 6yrs. Will Not Suite For Designing. Learning Fullstalk And Expt 12-15k', 7, '0000-00-00 00:00:00', 1),
(6529, 6413, 69, 2, 0, 'Has to complete task', 8, '2021-09-24 06:05:10', 1),
(6530, 6410, 69, 5, 0, 'Candidate wont suit our team. Task too was not good', 69, '2021-09-24 06:40:25', 1),
(6531, 6448, 59, 3, 0, 'Selected for elite - Priyanka Team in Consultant Cash mode. He will arrange bike in next 2-3 months, if arranged will be handling RE role and his salary will be revised with the increment of 2-3K(Overall CTC, should try him with PF/ESI)', 53, '2021-09-25 10:25:35', 1),
(6532, 6453, 58, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(6533, 6125, 29, 7, 2, 'esales RM, karthika team, salary refer resume, hike of 1k-2k in 2 months biz Performance ', 8, '2021-09-25 03:55:54', 1),
(6534, 6125, 8, 4, 0, 'Check fir RM esale ', 8, '2021-09-25 03:55:54', 1),
(6535, 6317, 59, 5, 0, 'No C# Exp,2.5 yrs in VB.Net only .Notice Period is 60 Days', 60, '0000-00-00 00:00:00', 1),
(6536, 6125, 59, 3, 0, 'Selected for Esales KArthika Team in CAFSInfotech Prop.Salary will be revised based on the target of 1.5L for a month overall 3 L in 2 months achieved - 2K increase', 29, '2021-09-27 10:00:24', 1),
(6537, 6455, 8, 4, 3, 'has 8m exp in loan renewal calling 13k, due to sal issues he relived. expt 12-13k. apart from script he is not speaking up. check once', 7, '0000-00-00 00:00:00', 1),
(6538, 6440, 8, 5, 0, 'has around 7yr exp in core job, still as machine operator 12k and expt 12-15k. done 6m course in designing and no portfolio with him. ', 7, '0000-00-00 00:00:00', 1),
(6539, 6438, 8, 5, 0, 'frehsr, 6m course in designing, doesnt know basics. expt 15k, from thindivanam and will come office from there if required will stay in thambaram. terms and conditions not shared with him.', 7, '0000-00-00 00:00:00', 1),
(6540, 6455, 14, 7, 0, 'salary 10.5k need to confirm joining date', 8, '2021-09-27 12:01:49', 1),
(6541, 6417, 8, 4, 0, 'fresher, learnt through udemy expt 3l after training. from salem and will stay with his friend in guindy, father xservice man and mother in SBI.', 7, '0000-00-00 00:00:00', 1),
(6542, 6417, 54, 1, 0, NULL, 8, '2021-09-27 12:30:29', 1),
(6543, 6455, 59, 3, 0, 'Selected for Priyanka Jenit Team in Cash mode - 5% deductions', 14, '2021-09-27 03:53:35', 1),
(6544, 5024, 8, 5, 0, 'no response', 8, '2021-09-27 05:35:43', 1),
(6545, 5020, 8, 5, 0, 'no response', 8, '2021-09-27 05:36:12', 1),
(6546, 4999, 8, 5, 0, 'no response', 8, '2021-09-27 05:36:29', 1),
(6547, 5018, 8, 5, 0, 'no response', 8, '2021-09-27 05:36:50', 1),
(6548, 4995, 8, 5, 0, 'no response', 8, '2021-09-27 05:37:09', 1),
(6549, 6462, 8, 4, 0, 'fresher for calling, was doing his part time job, job need expt is 12k but okay with 10k.', 7, '0000-00-00 00:00:00', 1),
(6550, 6462, 53, 7, 0, 'Selected for CRM thiruvallur. Sal 10k take home , pls cnfrm DOJ', 8, '2021-09-28 11:38:00', 1),
(6551, 6459, 8, 5, 0, 'we are looking for fresher, has 1yr in ui and 1yr in fullstack 17k, expt is 25k, knows the concept but right. terms and conditions and salary details not shared.', 7, '0000-00-00 00:00:00', 1),
(6552, 6458, 18, 7, 0, 'Selected as BDM with 8.5L CTC', 60, '0000-00-00 00:00:00', 1),
(6553, 6458, 59, 3, 0, 'Selected as Cluster Head - CTC committed by Suresh includes all deductions as per company policy', 18, '2021-09-28 12:54:57', 1),
(6554, 6432, 8, 5, 0, 'okay with priyanka and banu was rejected in telephonic by dhanalakshim.  ', 8, '2021-09-28 01:01:38', 1),
(6555, 6439, 8, 5, 0, 'will not join. his friend krishna left', 8, '2021-09-28 01:02:19', 1),
(6556, 6335, 8, 5, 0, 'no response.', 8, '2021-09-28 01:02:40', 1),
(6557, 6462, 59, 2, 0, 'Discussed with the candidate and shared the salary breakup, candidate need to get the confirmation from his family, Based on his update will approve the same', 53, '2021-09-28 02:16:28', 1),
(6558, 6467, 8, 5, 0, 'has 3yr exp in sales-credit card, expt 17-18k, will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(6559, 6465, 8, 5, 0, 'fresher, married 2yrs b4, 10-12k, husband in tvs as boff. avg profile, willing to work.', 7, '0000-00-00 00:00:00', 1),
(6560, 6390, 8, 5, 0, 'fresher, all his 3 bro working in it, he is gng class in race for ssc and banking, can work for 6m. will not sustain. interested to study cryptography. ', 7, '0000-00-00 00:00:00', 1),
(6561, 6437, 8, 5, 0, '1m internship in front  end, very dull and father is SI in 1000 lights. expt 2.5l ', 7, '0000-00-00 00:00:00', 1),
(6562, 6463, 8, 5, 0, 'Fresher, Doesnt Knows Basics In Ui/Ux, From Pondy Will Not Suite For our process.', 7, '0000-00-00 00:00:00', 1),
(6563, 6464, 8, 5, 0, '6m course and doesnt knows bsics and very dull,  terms and conditions not shared with candidate. ', 7, '0000-00-00 00:00:00', 1),
(6564, 6469, 8, 5, 0, 'fresher, doesnt knows basics in ui/ux, from pondy will not suite for our process.  ', 7, '0000-00-00 00:00:00', 1),
(6565, 6470, 8, 5, 0, 'from pollachi, fresher expt is 16k, no convincing and sales skill. ', 7, '0000-00-00 00:00:00', 1),
(6566, 6471, 8, 2, 0, 'has 2m exp in field sales-book selling, expt 13k and okay with 10k.', 7, '0000-00-00 00:00:00', 1),
(6567, 6462, 59, 3, 0, 'Selected for Tiruvallur Location in cash mode. Candidate seems to be Doubtful, he looks for travel allowances and all.', 59, '2021-09-29 01:10:45', 1),
(6568, 6413, 69, 5, 0, 'No response from candidate\n', 69, '2021-09-29 04:01:48', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(6569, 6466, 8, 5, 0, 'fresher, done 6m online course and knows basics in ux, expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(6570, 6457, 8, 4, 0, 'fresher, knows basics in php, willing to learn, okay with company norms and expt is 10k. okay for internship.', 7, '0000-00-00 00:00:00', 1),
(6571, 6457, 27, 7, 0, 'Fresher. okay for an internship. 3 years service agrement. 1st 3 months intern and the pay is 3.5K. after three months will be 8K.', 8, '2021-09-30 06:18:55', 1),
(6572, 6482, 8, 4, 3, 'no degree, was doing events in part time and 8m exp in hdfc loan 10k relived due to sal issue, okay with calling, expt 13k and okay with 10-10.5k.', 7, '0000-00-00 00:00:00', 1),
(6573, 6482, 13, 7, 4, 'ctc - 10.5k ,joining  Date - 5th October', 8, '2021-10-04 12:16:00', 1),
(6574, 6482, 59, 3, 0, 'Selected for Muthu Team in Cash mode, no graduation, only 12th  long experiences in Event Management.only 8 months exp in telecall, let us try  but 5050', 13, '2021-10-04 12:41:49', 1),
(6575, 6475, 8, 5, 0, 'fresher, portfolio is below avg, expt 15k, okay with company norms, interested in uI and very basic knowledge in ux and ui too.', 7, '0000-00-00 00:00:00', 1),
(6576, 6485, 73, 7, 0, 'salary  10k, voice clarity average ,job need .  confirm joining date.', 7, '0000-00-00 00:00:00', 1),
(6577, 6486, 73, 7, 0, 'salary 10k ,  immediate joining laptop ok, voice clarity better. confirm joining date', 7, '0000-00-00 00:00:00', 1),
(6578, 6488, 73, 7, 0, 'immediate joining , laptop ok,  salary 10k , confirm joining date', 7, '0000-00-00 00:00:00', 1),
(6579, 6492, 8, 5, 0, 'fresher, will learn and come.', 7, '0000-00-00 00:00:00', 1),
(6580, 6422, 8, 4, 0, 'communication below avg, fresher for dm and knows only basics. expt is 20k+.', 7, '0000-00-00 00:00:00', 1),
(6581, 6485, 59, 2, 0, 'candidate is outside, will give a call back', 73, '2021-10-04 04:13:58', 1),
(6582, 6486, 59, 2, 0, 'RNR', 73, '2021-10-04 04:16:20', 1),
(6583, 6488, 59, 2, 0, 'Voice not audible ,candidate was outside', 73, '2021-10-04 04:17:58', 1),
(6584, 6422, 69, 5, 0, 'No knowledge with respect to learning experience', 8, '2021-10-04 06:14:51', 1),
(6585, 6486, 59, 3, 0, 'Selected for Tiruvallur location, Communication is Good. but long stay from the candidate is doubtful. He is from EEE background but he  focus much into the IT openings. Selected in Cash mode', 59, '2021-10-04 06:29:46', 1),
(6586, 6485, 59, 2, 0, 'Discussed with the candidate, sustainability doubts as the Reporting Manager suggested. Need some time to give us the confirmation', 59, '2021-10-04 06:39:20', 1),
(6587, 6498, 59, 4, 0, 'Communication ok, no relevant Expr in Sales. Internal Team Reference. Check for RM/E sales', 60, '0000-00-00 00:00:00', 1),
(6588, 6499, 59, 4, 0, '5050 profile, fresher  need to open up a lot ,check for Elite RE', 60, '0000-00-00 00:00:00', 1),
(6589, 6500, 59, 4, 0, 'Having telesales Exp,but not open for Field Sales RE, Salary is high for Elite RE, please do check and give your suggestions', 60, '0000-00-00 00:00:00', 1),
(6590, 6497, 59, 2, 0, 'Discussed and shared the salary projection for her confirmation. Once confirmed will update the same', 60, '0000-00-00 00:00:00', 1),
(6591, 6488, 59, 2, 0, 'RNR', 59, '2021-10-05 03:30:03', 1),
(6592, 6497, 13, 7, 4, '11.5k ctc,kindly confirm joining Date', 59, '2021-10-05 03:33:15', 1),
(6593, 6498, 29, 1, 0, NULL, 59, '2021-10-05 03:35:41', 1),
(6594, 6499, 13, 8, 0, 'not attend the interview', 59, '2021-10-05 03:40:06', 1),
(6595, 6500, 13, 5, 2, 'not fit for telesales', 59, '2021-10-05 03:41:37', 1),
(6596, 4154, 59, 2, 0, 'Discussed,candidate will share the payslip and the other documents,once received will confirm the CTC and update', 18, '2021-10-05 07:17:38', 1),
(6597, 6404, 59, 3, 0, '3 months unpaid intern,3 months paid intern and 3 yrs employment', 69, '2021-10-06 09:54:04', 1),
(6598, 6501, 59, 5, 0, 'Fresher, Not much comfortable with TxxampC. Need time to check with Family', 50, '0000-00-00 00:00:00', 1),
(6599, 6503, 59, 5, 0, 'Fresher, Not Much Comfortable With TxxampC. Need Time To Check With Family', 50, '0000-00-00 00:00:00', 1),
(6600, 6395, 59, 2, 0, 'Fresher candidate,Self Learned, will give his confirmation on the TxxampC.', 50, '0000-00-00 00:00:00', 1),
(6601, 6507, 74, 5, 0, 'wrongly updated , by mistake rejected not performing well and not suite for telesales ,,,n voice clarity', 50, '0000-00-00 00:00:00', 1),
(6602, 6508, 73, 7, 0, 'selected , confirm joining date. discuss with salary 12k so salary also confirm to this candidate. having laptop ', 50, '0000-00-00 00:00:00', 1),
(6603, 6509, 59, 4, 0, 'Experience in Credit Card/Vodafone /Kotak Health Insurance Sales. Seems to have an attitude, Holding multiple offers and look for some more. Sustainability Doubts. please do check your suitability', 50, '0000-00-00 00:00:00', 1),
(6604, 6490, 59, 4, 0, 'Fresher, basic knowledge in PHP, ok with terms and conditions.Seems to get developed if trained. Kndly check and confirm', 60, '0000-00-00 00:00:00', 1),
(6605, 6473, 59, 4, 0, 'Having Freelance exp, Career Gap, kindly check and confirm ', 50, '0000-00-00 00:00:00', 1),
(6606, 6510, 74, 7, 3, 'well profiled highly job need , salary 10k, try to prepare govt job,, but now financial crisis so job need ,having laptop, 7/10/21 joining kindly check once..', 50, '0000-00-00 00:00:00', 1),
(6607, 6507, 74, 5, 0, 'wrongly updated , by mistake rejected not performing well and not suite for telesales ,,,n voice clarity', 74, '2021-10-06 12:58:33', 1),
(6608, 6510, 59, 3, 0, 'Selected for Tanjore Location in cash Mode', 74, '2021-10-06 01:11:36', 1),
(6609, 6508, 59, 3, 0, 'Selected for Tiruvallur Location in Cash mode. Candidate Communication is good  and have store Sales exp along with Telesales Exp.', 73, '2021-10-06 01:13:21', 1),
(6610, 6509, 11, 1, 0, NULL, 59, '2021-10-06 01:13:35', 1),
(6611, 6473, 27, 5, 0, 'No Response.', 59, '2021-10-06 01:18:40', 1),
(6612, 6490, 27, 5, 0, 'No Response.', 59, '2021-10-06 01:19:47', 1),
(6613, 4154, 59, 3, 0, 'Selected for Raj Team, candidate shared his previous company documents. We offered the same cost what he was getting earlier', 59, '2021-10-06 03:57:34', 1),
(6614, 6497, 59, 2, 0, 'Discussed and shared the salary projection for her confirmation. Once confirmed will update the same', 13, '2021-10-06 06:36:05', 1),
(6615, 6515, 59, 5, 0, 'Fresher, Career Gap, No basic knowledge will not sustain with us for a long', 60, '0000-00-00 00:00:00', 1),
(6616, 6520, 8, 4, 3, 'fresher from thiruvarur, will relocate to Thanjavur. parents farmer, job need and expt is 10k. has a laptop.', 7, '0000-00-00 00:00:00', 1),
(6617, 6520, 74, 7, 3, 'he is talk active and highly job need, salary 10 k , relocate to thanjavur brother house native tiruvarur, bike and laptop available, monday 11-10-21 joining kindly check and confirm ', 8, '2021-10-07 06:32:03', 1),
(6618, 6520, 59, 3, 0, 'Selected for Tanjore Location in cAsh Mode\n', 74, '2021-10-07 07:51:49', 1),
(6619, 6513, 73, 7, 0, 'move to next round \ncheck sustainability xxamp pressure handling ', 50, '0000-00-00 00:00:00', 1),
(6620, 6513, 14, 7, 0, 'Salary 10k . confirm joining date', 73, '2021-10-08 10:49:26', 1),
(6621, 6513, 59, 2, 0, 'Discussed and shared the salary break up for  candidate confirmation. Once done will update', 14, '2021-10-08 11:25:14', 1),
(6622, 6506, 8, 5, 0, 'fresher, already doing his internship and 5k . 6m internship and completed 2m. small company and not willing to join there. no basic knowledge in tech skills. expt 2L. not okay with agreement. ', 50, '0000-00-00 00:00:00', 1),
(6623, 6527, 8, 5, 0, 'has 1 ye exp in calling and 3yr exp in backend. will not suite for sales profile and handle pressure. expt is 13k.', 7, '0000-00-00 00:00:00', 1),
(6624, 6526, 8, 5, 0, 'Was Working In Hdb Fin For 3m With 10k And Expt 13-15k. will not handle sales pressure.', 7, '0000-00-00 00:00:00', 1),
(6625, 6525, 8, 5, 0, 'done mcom and prefers non voice and acc and fin job. time being looking for job in voice process. will not sustain. was working in hdb fin for 3m with 10k and expt 12-13k.', 7, '0000-00-00 00:00:00', 1),
(6626, 6485, 59, 5, 0, 'Candidate Didnxquott turn  with his response, Even tried reaching him to get his confirmation but no response', 59, '2021-10-08 02:20:05', 1),
(6627, 6488, 59, 5, 0, 'discussed and projected the salary,. need to get his confirmation. Tried couple of times but there is no response from the candidate', 59, '2021-10-08 02:21:22', 1),
(6628, 6471, 8, 5, 0, 'not turned up', 8, '2021-10-08 02:46:48', 1),
(6629, 6433, 8, 5, 0, 'no response and update', 8, '2021-10-08 02:47:22', 1),
(6630, 6010, 8, 5, 0, 'not turned up', 8, '2021-10-08 02:47:58', 1),
(6631, 5900, 8, 5, 0, 'Not Turned Up', 8, '2021-10-08 02:48:19', 1),
(6632, 5880, 8, 5, 0, 'Not Turned Up', 8, '2021-10-08 02:50:46', 1),
(6633, 6449, 59, 3, 0, 'Selected for Santhosh Team with PF/PT Deductions.', 18, '2021-10-08 02:53:03', 1),
(6634, 5305, 8, 5, 0, 'no  response', 8, '2021-10-08 02:57:54', 1),
(6635, 5292, 8, 5, 0, 'no response', 8, '2021-10-08 02:58:32', 1),
(6636, 5231, 8, 5, 0, 'will not suite for our process, age doesnt match. expt is high', 8, '2021-10-08 02:59:28', 1),
(6637, 6533, 40, 4, 0, 'Fresher, communication above average, expectation is 22k take home location Khammam can migrate from their to Hyderabad on immediate basis and can able to join our company on 18th Oct. Having a Laptop and Bike.', 50, '0000-00-00 00:00:00', 1),
(6638, 6533, 18, 7, 0, 'Selected for Veben team with 2.6L CTC. Candidate wished to discusss with his mother and will confirm his joining by Saturday and ready to join on monday 25th Oct', 40, '2021-10-08 04:26:53', 1),
(6639, 6513, 59, 3, 0, 'Selected for Tiruvallur Location in Cash Mode-Fresher for telesales-Communication is Good,She much focus into Medical Lab field(long Stay 5050)', 59, '2021-10-08 05:25:54', 1),
(6640, 6524, 59, 5, 0, 'Only knowledge in Adobe XD, Figma. Not open to learn new skills of UI, Salary Expectation is very high. Will not sustain with us for a long', 60, '0000-00-00 00:00:00', 1),
(6641, 6511, 59, 2, 0, 'Selected for Mern Stack Profile with 1 month unpaid then 5 months paid intern and 8k Salary starts post completion of intern 3.6 SA - Inetrviewed by Arun, George, Kavya xxamp Final round with Gokul', 60, '0000-00-00 00:00:00', 1),
(6642, 6537, 8, 4, 0, '2017 batch, fresher for us and check for crm. check with sustainability once. expt 10k. has laptop.', 7, '0000-00-00 00:00:00', 1),
(6643, 6537, 74, 7, 3, 'she already worked in sales field 6 month....father crc conductor..she is intrested in govt job and completed special coaching also...salary 10 k have laptop...completed bE in anna university,,,,mech department,,monday joining kindly check once', 8, '2021-10-09 01:24:01', 1),
(6644, 6537, 59, 3, 0, 'Selected for  Thanjavur Location in Cash mode', 74, '2021-10-09 04:42:34', 1),
(6645, 6542, 8, 4, 0, '6m collection in ICICI and 1yr in jubiliant insurance back end 12.5k (chennai), father into construction(worker), sis working in icici collection chennai. will arrange laptop. expt 10-11k. immediate joiner.', 60, '0000-00-00 00:00:00', 1),
(6646, 6542, 74, 7, 3, 'she is experienced 1 year in insurance collection and icici bank accounts chennai 6 months...due to hostel food health issue....near by office to home 1 km only....fit for telesales have laptop need to take home 10k salary but check once and confirm sister also working in chennai telesales field job need only and brother studing in college kindly check once and confirm joining monday 11/10/21', 8, '2021-10-10 12:23:15', 1),
(6647, 6542, 59, 3, 0, 'Selected for Thanjavur Location in  Cash mode.Not much relevant Exp,she has experiences working in chennai,due to health condition. she focus in her native location', 74, '2021-10-10 12:39:11', 1),
(6648, 6536, 59, 5, 0, 'Candidate communciation is Good have Exp in Matrimony Telecall. He is having health issue(Taking treatment for TB. We are dropping this candidate because of the health issue', 60, '0000-00-00 00:00:00', 1),
(6649, 6502, 59, 5, 0, 'Fresher, too long around 62 kms up and down. Will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(6650, 6517, 59, 4, 0, 'Fresher, Seems ok in UX design skills,can check for UX designer profile.ok with TxxampC, but she needs to confirm the same with her family', 50, '0000-00-00 00:00:00', 1),
(6651, 6514, 59, 4, 0, 'Fresher,seems good in Designing but the salary expectation is very high. Can check for UX Design', 60, '0000-00-00 00:00:00', 1),
(6652, 6521, 59, 5, 0, '1 yr exp in UX designing but not much skilled,not open for the txxampC, not ready to submit the documents. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(6653, 6530, 59, 5, 0, 'Around 1.9 yrs exp in UX designing,frequent Job changer changed 2 companies and the salary expectation is very high.Not much comfortable with TxxampC,Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(6654, 6543, 59, 4, 0, 'Fresher for DM,\nCommunication is ok,Having basic knowledge in DM. Can check for Digital marketing. required time to give confirmation on the TxxampC', 60, '0000-00-00 00:00:00', 1),
(6655, 6517, 69, 2, 0, 'Task has been assigned to recreate cafsmoney.com', 59, '2021-10-11 03:49:40', 1),
(6656, 6514, 69, 2, 0, 'Task assigned to recreate cafsMoney.com website', 59, '2021-10-11 03:51:26', 1),
(6657, 6543, 69, 2, 0, 'Task given for meme marketing template and content Writing.', 59, '2021-10-11 04:06:36', 1),
(6658, 6457, 59, 3, 0, 'Fresher. Okay For An Internship. 3 Years Service Agrement. 1st 3 Months Intern And The Pay Is 3.5k. After Three Months Will Be 8k.', 27, '2021-10-12 10:05:13', 1),
(6659, 6531, 59, 3, 0, 'Selected for digital Marketing Profile with 6 months intern then 2.6 yrs service overall 3 yrs SA.', 60, '0000-00-00 00:00:00', 1),
(6660, 6548, 59, 5, 0, 'Communication ok but the candidate much prefer for non voice only, will not suits for our sakes.', 60, '0000-00-00 00:00:00', 1),
(6661, 6531, 69, 4, 0, 'Gokul sir has interviewed the candidate and shortlisted. Task been given and completed.', 59, '2021-10-12 01:43:35', 1),
(6662, 6531, 59, 3, 0, 'Selected for digital Marketing Profile with 6 months intern then 2.6 yrs service overall 3 yrs SA.', 69, '2021-10-12 01:45:04', 1),
(6663, 6517, 69, 5, 0, 'Not okay with Package and Bond', 69, '2021-10-13 10:25:32', 1),
(6664, 6514, 69, 5, 0, 'Not okay with package and bond', 69, '2021-10-13 10:27:41', 1),
(6665, 6106, 8, 5, 0, 'no response', 69, '2021-10-13 10:30:21', 1),
(6666, 6543, 69, 5, 0, 'No response from candidate', 69, '2021-10-13 10:52:05', 1),
(6667, 6550, 8, 4, 0, 'fresher, job need we need to train him, okay with field sales and no laptop, check once with pressure handling. ', 50, '0000-00-00 00:00:00', 1),
(6668, 6556, 8, 5, 0, 'during interview was looking in to mobile and using it. will not suite for us and age is 19 and not completed 12th, no sustainability.', 7, '0000-00-00 00:00:00', 1),
(6669, 6555, 8, 5, 0, 'attitude is not upto the level, no sustainability, 3m in spa and 3m in hdfs absconded due to over pressure. she will not handle sales pressure.', 7, '0000-00-00 00:00:00', 1),
(6670, 6554, 8, 5, 0, 'completed her LLb waiting for her placement, doing her online process and will not sustain bcoz expt is 13k min. has 1yr exp in acc opening 15k.', 7, '0000-00-00 00:00:00', 1),
(6671, 6553, 8, 5, 0, 'completed his bsw, no listening and understanding, will not suite for our process, expt is 15k', 7, '0000-00-00 00:00:00', 1),
(6672, 6550, 19, 5, 1, 'Not Fit', 8, '2021-10-13 12:46:27', 1),
(6673, 6497, 59, 3, 0, 'Selected for Thanjavur Location in Cash mode, Will get relieve from her current company this week only', 59, '2021-10-13 02:43:29', 1),
(6674, 6562, 59, 4, 0, 'Fresher,No Sales Knowledge,Job Need Is High, Sustainability Doubts -5050 Profle, Please Do Check For Elite RE', 60, '0000-00-00 00:00:00', 1),
(6675, 6562, 13, 5, 0, 'Salary Not Satisfied\n', 59, '2021-10-13 04:59:33', 1),
(6676, 6565, 59, 2, 0, '1 year exp in Stock from Arakonnam location, Second round interviewed by Gokul and the profile is on Hold', 60, '0000-00-00 00:00:00', 1),
(6677, 6564, 69, 2, 0, 'Below average candidate, Both in Communication and knowledge.', 50, '0000-00-00 00:00:00', 1),
(6678, 6511, 59, 5, 0, 'candidate didnt turn on the day of joining as we commit with him', 59, '2021-10-16 10:16:37', 1),
(6679, 5456, 8, 5, 0, 'no response', 69, '2021-10-16 11:48:31', 1),
(6680, 6573, 59, 3, 0, 'Selected for Muthu team in cash mode', 60, '0000-00-00 00:00:00', 1),
(6681, 6577, 59, 5, 0, 'Fresher, Attitude is not good,Will not sustain and handling pressure doubtful', 60, '0000-00-00 00:00:00', 1),
(6682, 6574, 59, 3, 0, 'Selected for Muthu Team in Cash mode', 60, '0000-00-00 00:00:00', 1),
(6683, 6579, 59, 4, 0, 'Have Sales Exp in Star  Health,communication is Average ,5050 profile kindly check for elite', 60, '0000-00-00 00:00:00', 1),
(6684, 6575, 59, 4, 0, 'Have sales Exp in Star health products, Communication is ok, check for Elite RE', 60, '0000-00-00 00:00:00', 1),
(6685, 6573, 13, 7, 4, 'OK,10K SALARY MONDAY JOINING', 59, '2021-10-16 04:02:54', 1),
(6686, 6574, 13, 7, 4, 'OK,10.5K SALARY MONDAY JOINING', 59, '2021-10-16 04:04:44', 1),
(6687, 6575, 13, 5, 0, 'Hold on long pending', 59, '2021-10-16 04:09:45', 1),
(6688, 6579, 13, 5, 0, 'NOT FIT FOR TELESALES', 59, '2021-10-16 04:12:22', 1),
(6689, 6573, 59, 3, 0, 'Selected for Muthu team in cash mode', 13, '2021-10-16 04:57:58', 1),
(6690, 6574, 59, 3, 0, 'Selected for Muthu Team in Cash mode', 13, '2021-10-16 05:00:29', 1),
(6691, 6580, 41, 5, 0, 'Communication is not good. will not suite for hr profile', 50, '0000-00-00 00:00:00', 1),
(6692, 6495, 27, 5, 0, 'If rejected because donxquott answering a basic php and mysql questions,', 50, '0000-00-00 00:00:00', 1),
(6693, 6564, 69, 2, 0, 'Will finalise if no other candidates suit.', 69, '2021-10-18 02:58:12', 1),
(6694, 6590, 41, 5, 0, 'coming from pond. will not suite for our Profile. no communication', 50, '0000-00-00 00:00:00', 1),
(6695, 6589, 41, 5, 0, 'coming from cuddalore. No english communication will not syuite for our profile', 50, '0000-00-00 00:00:00', 1),
(6696, 6592, 8, 5, 0, 'looking for job in IT-android, expt is 18k. not interested in calling.', 7, '0000-00-00 00:00:00', 1),
(6697, 6593, 8, 5, 0, 'looking for job in collection and not interested in calling.', 7, '0000-00-00 00:00:00', 1),
(6698, 6591, 8, 5, 0, 'looking for job in chat support, not interested in calling.', 7, '0000-00-00 00:00:00', 1),
(6699, 6586, 8, 2, 0, 'for telephonic.', 7, '0000-00-00 00:00:00', 1),
(6700, 6595, 41, 4, 0, 'interviewed by jennifer. check sustainability and salary', 50, '0000-00-00 00:00:00', 1),
(6701, 6587, 41, 4, 3, 'for thiruvallur location. need to check salary and sustainability', 50, '0000-00-00 00:00:00', 1),
(6702, 6588, 41, 4, 3, 'for thiruvallur location need to check salasry and sustainability ', 50, '0000-00-00 00:00:00', 1),
(6703, 6587, 14, 7, 0, 'Salary 10.5k kindly confirm joining date', 41, '2021-10-18 03:27:07', 1),
(6704, 6588, 14, 5, 0, 'Selected for thiruvallur location but she not joined yet her friend only joined so profile rejected', 41, '2021-10-18 03:28:48', 1),
(6705, 6595, 13, 5, 0, 'Hold On Long Pending', 41, '2021-10-18 03:30:55', 1),
(6706, 6395, 59, 5, 0, 'didnt turn back  with his confirmation on the  TxxampC', 59, '2021-10-18 06:53:30', 1),
(6707, 6583, 59, 2, 0, 'Communication Is Ok, Fresher, Open For The  TxxampC, 5050 profile,came along with his friend, Gokul need to analyse the profile and decide', 60, '0000-00-00 00:00:00', 1),
(6708, 6585, 59, 2, 0, 'Communication is Good, fresher, open for the  TxxampC, but the location is almost 30 KMS up and down.', 60, '0000-00-00 00:00:00', 1),
(6709, 6603, 59, 2, 0, 'Fresher for HR, Communication ok,being fresher her salary exp min 15k can come down to 13K.Max 2 yrs ok with TxxampC. No Parents ,Grandparents insisting her to take care of their business.5050 profile. From Porur she needs to travel', 60, '0000-00-00 00:00:00', 1),
(6710, 6607, 59, 5, 0, 'Not Suits for our Sales profile. candidate focusing towards  his own business. Will not sustain and handle the pressure.', 60, '0000-00-00 00:00:00', 1),
(6711, 5504, 59, 5, 0, 'Freelancer,have a plan to continue his freelance options,Salary Exp is very Hgih,open only for 1 year SA.Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(6712, 5155, 59, 5, 0, 'Have CRM exp, No Voice Clarity, Frequent Job changer. Too long distance around 60KMS up and down .Even for Tiruvallur too long.. will not handle pressure', 60, '0000-00-00 00:00:00', 1),
(6713, 6479, 59, 5, 0, 'Credit Card Sales Exp.Frequent Job Changer,not open for Field Sales,looking only for the CRM level and his exp salary is min 15K.Will not sustain and handling pressure doubtful', 60, '0000-00-00 00:00:00', 1),
(6714, 6603, 59, 2, 0, 'Fresher For HR, Communication Ok,Being Fresher Her Salary Exp Min 15k Can Come Down To 13K.Max 2 Yrs Ok With TxxampC. No Parents ,Grandparents Insisting Her To Take Care Of Their Business.5050 Profile. From Porur She Needs To Travel.Gokul Needs To Analyse The Profile And Decide', 59, '2021-10-19 03:43:06', 1),
(6715, 6552, 59, 5, 0, 'Fresher for Mern stack, not open for our TxxampC, he is comfortable only for 2 yrs of SA.will not suits for our role', 50, '0000-00-00 00:00:00', 1),
(6716, 6611, 59, 5, 0, 'Fresher, Candidate seems not much active, will not sustain and handling pressure doubtful.', 50, '0000-00-00 00:00:00', 1),
(6717, 6612, 59, 5, 0, 'Fresher, Besant Tech Candidate, Not much open for TxxampC. Cousins are working in IT companies and have some reference too in their companies. Sustainability doubts  with us on this profile', 50, '0000-00-00 00:00:00', 1),
(6718, 6613, 59, 5, 0, 'Fresher, Not open with TxxampC, Need time to check with family, if he comes back will make changes', 50, '0000-00-00 00:00:00', 1),
(6719, 6617, 59, 5, 0, 'Career Gap 2019 Passed out Focusing much for Angular JS Profile. Not much comfort with TxxampC', 50, '0000-00-00 00:00:00', 1),
(6720, 6568, 59, 5, 0, 'From Besant Technologies, Fresher Profile, Not much comfortable with TxxampC. Need to check with his parents', 50, '0000-00-00 00:00:00', 1),
(6721, 6623, 59, 5, 0, 'Fresher, not clear on the profile he applied, No basic knowledge in React. AWS/Java Certified. Looking for AWS Cloud based openings in the future, Will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(6722, 6616, 59, 5, 0, 'Fresher,Bad Attitude,No patience,will not fit for our position - Gokul Interviewed him in the 2nd level', 50, '0000-00-00 00:00:00', 1),
(6723, 6563, 74, 5, 1, 'already completed two years experience in mutual fund ....insurance related course also completed...not suit for team', 60, '0000-00-00 00:00:00', 1),
(6724, 6584, 59, 3, 0, 'Selected for Thanjavur, joining date may change. Candidate yet to confirm', 60, '0000-00-00 00:00:00', 1),
(6725, 6584, 74, 7, 3, 'she is active and talkactive...highly intrested in telecalling father passed away one siblings...already selected in tcs but due to family situation not suit to go out of town, ...no laptop....salary 10 k native kumbakonam now relocate to thanjavur relative house...kindly check once sustainability..', 59, '2021-10-20 05:48:16', 1),
(6726, 6615, 73, 7, 0, 'Selected, Already experienced for marketing field,confirm  joining date ', 60, '0000-00-00 00:00:00', 1),
(6727, 6564, 69, 5, 0, 'Candidate got a job somewhere else', 69, '2021-10-20 06:09:04', 1),
(6728, 6587, 59, 2, 0, 'Call Waiting', 14, '2021-10-21 11:50:32', 1),
(6729, 6600, 59, 4, 0, 'Fresher,Family need is there,Seems have lot a personal issue,have web development exp(Projects),5050,Not much familiar with UI/UX, Kindly Check for the same', 50, '0000-00-00 00:00:00', 1),
(6730, 6582, 59, 5, 0, 'Fresher,2015 passed out, Worked in different domain, Not much comfortable with TxxampC,Will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(6731, 6599, 59, 4, 0, 'Fresher,5050 ,only UX design knowledge,seems not much comforts with TxxampC,please do check this profile', 50, '0000-00-00 00:00:00', 1),
(6732, 6614, 59, 5, 0, 'No basic knowledge in UI/UX will not sustain and not suitable for our position. Pressure handling no', 50, '0000-00-00 00:00:00', 1),
(6733, 6631, 59, 5, 0, 'Discussed and shared the salary breakup for candidate confirmation, Not yet received any confirmation from  candidate, Tried reaching him couple of times and no responses. Dropped the candidate from selection', 50, '0000-00-00 00:00:00', 1),
(6734, 6615, 59, 2, 0, 'RNR', 73, '2021-10-21 12:11:55', 1),
(6735, 6632, 59, 5, 0, 'Not much comfortable with Tele sales(Voice Process) Salary Exp is high', 50, '0000-00-00 00:00:00', 1),
(6736, 6633, 59, 5, 0, 'communication ok, much prefers for non voice  and the salary Exp in high', 50, '0000-00-00 00:00:00', 1),
(6737, 6634, 73, 7, 0, 'Shortlisted, salary package 10k ,  Confirm joining date', 50, '0000-00-00 00:00:00', 1),
(6738, 6635, 59, 2, 0, 'Have Sales  Exp but seems not much confident,Pressure handling Doubtful,Candidate left without attending the 2nd level interview,if he comes back let us check', 50, '0000-00-00 00:00:00', 1),
(6739, 6604, 59, 5, 0, 'Fresher no basic design skill knowledge, he needs time to learn a lot in UI/UX,If candidate comes back we can check and decide', 60, '0000-00-00 00:00:00', 1),
(6740, 6599, 69, 5, 0, 'Not Interested in learning coding.', 59, '2021-10-21 04:22:00', 1),
(6741, 6600, 69, 2, 0, 'The candidate has to share his  project, we will review it decide on the next round', 59, '2021-10-21 04:24:16', 1),
(6742, 6631, 57, 4, 4, 'Candidate is ok ..kindly confirm the joining date and salary thanks ', 59, '2021-10-21 04:36:44', 1),
(6743, 6631, 59, 5, 0, 'Discussed and shared the salary breakup for candidate confirmation, Not yet received any confirmation from  candidate, Tried reaching him couple of times and no responses. Dropped the candidate from selection', 57, '2021-10-21 05:16:45', 1),
(6744, 6600, 69, 5, 0, 'candidate task not satisfactory.', 69, '2021-10-21 05:38:22', 1),
(6745, 6533, 59, 2, 0, 'Discussed and shared the salary Breakup, Candidate yet to give his confirmation on the Joining Date and the Salary', 18, '2021-10-21 05:45:11', 1),
(6746, 6634, 59, 2, 0, 'RNR', 73, '2021-10-21 07:06:55', 1),
(6747, 6597, 59, 5, 0, 'Exp In Recruitment, Career Gap, Not Much Comfortable With TxxampC ,Seems Little Attitude,Min Exp Is 15K,Not much comfortable with Terms and conditions. Sustainability Doubts', 50, '0000-00-00 00:00:00', 1),
(6748, 6618, 59, 4, 0, 'Fresher no basic knowledge in Digital Marketing, keen to learn ,check for Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(6749, 6620, 59, 2, 0, '5050 profile,fresher seems interest to learn open with TxxampC, can check for Recruitment', 50, '0000-00-00 00:00:00', 1),
(6750, 6584, 59, 3, 0, 'Selected for Thanjavur, joining date may change. Candidate yet to confirm', 74, '2021-10-22 09:56:05', 1),
(6751, 6645, 59, 5, 0, 'No Communication, no importance for the job, career Gap.Not having any clear ideas whether to step in voice/non voice. Will not handle pressure', 50, '0000-00-00 00:00:00', 1),
(6752, 6622, 59, 2, 0, 'Fresher for Recruitment, have  few month exp in HR Activities,can check for recruitment, 5050 sustainability need to see', 60, '0000-00-00 00:00:00', 1),
(6753, 6642, 59, 5, 0, 'Not open for Target oriented positions, will not sustain with us', 60, '0000-00-00 00:00:00', 1),
(6754, 6624, 59, 5, 0, 'Fresher,no basic  skills knowledge will not handle our pressure and sustainability doubts  wiht us', 50, '0000-00-00 00:00:00', 1),
(6755, 6625, 59, 2, 0, 'Little exp in Recruitment,Not much comfortable with TxxampC need to check with Family,Sustainability Doubts,Location s from Padi', 50, '0000-00-00 00:00:00', 1),
(6756, 6650, 59, 3, 0, 'Selected for Santhosh Team with CTC 375000 includes PF/ESI/PT - No relevant Insurance Sales Exp', 60, '0000-00-00 00:00:00', 1),
(6757, 6618, 69, 8, 0, 'no response from candidate', 59, '2021-10-22 05:06:12', 1),
(6758, 6650, 71, 4, 0, 'He is ok for sales. ', 59, '2021-10-22 05:26:46', 1),
(6759, 6615, 59, 3, 0, 'Selected for Tiruvallur Location,joining date may change as the candidate requesting for joining post Diwali', 59, '2021-10-22 05:37:37', 1),
(6760, 6649, 59, 5, 0, 'No communication,No Sustainability with the previous companies, will not handle pressure and sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(6761, 6654, 17, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(6762, 6587, 59, 2, 0, '126312 - Selected for Tiruvallur Location will come back with her confirmation on Salary', 59, '2021-10-22 06:59:01', 1),
(6763, 6635, 59, 5, 0, '	Have Sales Exp But Seems Not Much Confident,Pressure Handling Doubtful,Candidate Left Without Attending The 2nd Level Interview,If He Comes Back Let Us Check', 59, '2021-10-23 10:40:12', 1),
(6764, 6628, 59, 2, 0, 'Communication ok,keen to learn in HR,Need to comeback with her confirmation,Gokul interviewed her in the 2nd Round', 60, '0000-00-00 00:00:00', 1),
(6765, 6533, 59, 2, 0, 'Discussed with the candidate  on 23 Oct yet to get confirmation from his mother,Will update once confirmed', 59, '2021-10-23 06:26:51', 1),
(6766, 6634, 59, 3, 0, 'Selected for Tiruvallur Location,Train travel around 1 hour,not open for SA as Manager requested. Need to analyse her in 7 Days', 59, '2021-10-23 06:33:04', 1),
(6767, 6587, 59, 5, 0, 'Salary Breakup shared and the candidate messaged as not interested after discussing with her grandparents', 59, '2021-10-23 06:40:13', 1),
(6768, 6653, 59, 5, 0, 'Communication OK,Little Stamerring,Sal Exp is very High', 60, '0000-00-00 00:00:00', 1),
(6769, 6655, 59, 5, 0, 'No communication,will not suits for our Digital Marketing,No basic Ideas about DM', 60, '0000-00-00 00:00:00', 1),
(6770, 6652, 59, 5, 0, 'Fresher ,Communication Very Average, Not open with TxxampC Sustainability doubts,', 50, '0000-00-00 00:00:00', 1),
(6771, 6626, 59, 5, 0, 'Fresher,Not much comfortable with TxxampC,Much open for Angular Openings.If he come back need to check and decide', 50, '0000-00-00 00:00:00', 1),
(6772, 6662, 59, 3, 0, 'Selected for Muthu Team Elite RE in CAsh mode - 10K TH', 50, '0000-00-00 00:00:00', 1),
(6773, 6641, 59, 2, 0, 'Fresher Keen to Learn ,have a plan to go abroad for Higher studies after3 yrs, Need time to give his confirmation,If he comes back let us check and consider', 50, '0000-00-00 00:00:00', 1),
(6774, 6662, 13, 7, 4, 'ok10.5k salary,kindly confirm joining date', 59, '2021-10-25 12:25:54', 1),
(6775, 6650, 18, 7, 4, 'Selected for Santosh Team CTC spoken is 3.75L overall. Ready to Join on 1st Nov', 71, '2021-10-25 01:17:10', 1),
(6776, 6662, 59, 3, 0, 'Selected for Muthu Team Elite RE in CAsh mode - 10K TH', 13, '2021-10-25 01:34:51', 1),
(6777, 6637, 59, 5, 0, 'Communication Good, have Exp in US IT Recruitment, Native of Andhra, Much focus on HR Executive  and not much comfortable with Terms Conditions, Sustainability Doubts', 50, '0000-00-00 00:00:00', 1),
(6778, 6644, 59, 5, 0, 'Communication Average, Working for 6 months official notice 30 Days. Focusing  on the UPSC exams,Salary Exp is very high,Attended interview  around 20 Interviews and not comfortable with the pay they offered. Focus much on the salary. Will not sustain with us for a long', 50, '0000-00-00 00:00:00', 1),
(6779, 6533, 59, 5, 0, 'Candidate need another 2 months to  start his career, His mother is not comfortable to allow him to go for work now.Dropped his profile', 59, '2021-10-25 02:53:12', 1),
(6780, 6628, 59, 2, 0, 'Yet to give her confirmation on the offer, need some time, Seems she may back out from the position ', 59, '2021-10-25 04:33:46', 1),
(6781, 6658, 59, 5, 0, 'Communication very Average,No basic knowledge  in Digital Marketing,Too Long,Sustainability doubts as he requires time to check with his family on 2 yrs SA', 50, '0000-00-00 00:00:00', 1),
(6782, 6667, 73, 7, 0, 'selected , salary 11k fixed, confirm joining date.', 50, '0000-00-00 00:00:00', 1),
(6783, 6670, 53, 4, 0, 'ok for Renewals department, he is thinking for 2 yrs bond', 50, '0000-00-00 00:00:00', 1),
(6784, 6671, 53, 5, 0, 'not suit for telecalling', 50, '0000-00-00 00:00:00', 1),
(6785, 6650, 59, 3, 0, 'Selected for Santhosh Team with CTC 375000 includes PF/ESI/PT - No relevant Insurance Sales Exp', 18, '2021-10-26 12:47:46', 1),
(6786, 6668, 59, 5, 0, 'Communication Sounds very average,have a retail sales exp.Pressure handling doubts in  our domain..Will not  sustain for our role', 60, '0000-00-00 00:00:00', 1),
(6787, 6667, 59, 2, 0, 'Have Exp in Star health Sales,attended interview along with her sister,she needs time to check with the family as her elder sister suggested this opening and got rejected in the interview.She will give her confirmation tomorrow\n', 73, '2021-10-26 02:59:13', 1),
(6788, 6651, 59, 5, 0, 'Communication ok,Fresher career Gap ,Need to discuss with family on TxxampC,Sustainability doubts as she may get married in next 1 yr of time', 50, '0000-00-00 00:00:00', 1),
(6789, 6670, 59, 2, 0, 'Candidate need to come back with his confirmation after discussing with his parents', 53, '2021-10-26 03:39:54', 1),
(6790, 6672, 59, 4, 0, '5050 profile,communication very average,check for Elite Muthu team', 60, '0000-00-00 00:00:00', 1),
(6791, 6672, 53, 5, 0, 'Wont suit for sales', 59, '2021-10-26 06:52:20', 1),
(6792, 6620, 59, 5, 0, 'Candidate not interstetd with the TxxampC,Didnt turn back for the 2nd round', 59, '2021-10-26 07:09:26', 1),
(6793, 6622, 59, 5, 0, 'Not responding to the calls,requested her to come for 2nd round but didnt turn for the interview', 59, '2021-10-26 07:10:14', 1),
(6794, 6628, 59, 5, 0, 'Discussed with the candidate and she is continuing with the same position in NTT (current Package 21K)', 59, '2021-10-26 07:11:15', 1),
(6795, 6675, 59, 5, 0, 'Candidate have bancassurance exp and he much prefers for Sr Level position,not open for Agency positons,looking only for Sales but the salary exp is very high and the candidate sustainability doubts in our company', 60, '0000-00-00 00:00:00', 1),
(6796, 6676, 59, 5, 0, 'Internal reference, from ennore location have data entry exp and looking for non voice opportunities', 60, '0000-00-00 00:00:00', 1),
(6797, 6656, 59, 5, 0, 'Communication Average,, Fresher MBA, No basic knowledge in Recruitment, Need time to check with her family on Txxampc. From Gerugambakkam she needs to travel, Sustainability Doubts', 50, '0000-00-00 00:00:00', 1),
(6798, 6679, 59, 5, 0, 'Candidate have exp in backend process in GRT and looking for Non Voice opportunities.', 50, '0000-00-00 00:00:00', 1),
(6799, 6674, 59, 5, 0, 'very average communication, Much focus into Nonvoice process, Location is Guduvancherry, Will not handle pressure', 50, '0000-00-00 00:00:00', 1),
(6800, 6647, 59, 2, 0, 'Communication ok,Candidate 5050 on the txxampC,No much comfort  in Internship Stipend, Fresher for the recruitment Role.Need time to give his confirmation', 60, '0000-00-00 00:00:00', 1),
(6801, 6678, 59, 5, 0, 'No Communication candidate gives preference for the Non voice positions only.', 60, '0000-00-00 00:00:00', 1),
(6802, 6641, 59, 5, 0, 'Fresher Keen To Learn ,Have A Plan To Go Abroad For Higher Studies After3 Yrs, Need Time To Give His Confirmation,If He Comes Back Let Us Check And Consider. Candidate didnt turn back for the interview', 59, '2021-10-28 05:21:21', 1),
(6803, 6667, 59, 5, 0, 'Candidate not interested to accept the offer as her sister who attended the interview  in Tiruvallur branch got rejected in the Interview', 59, '2021-10-28 05:23:03', 1),
(6804, 6583, 59, 5, 0, 'Communication Is Ok, Fresher, Open For The  TxxampC, 5050 Profile,Came Along With His Friend.Seems doubtful on the joining ,sustainability doubts ', 59, '2021-10-28 07:10:41', 1),
(6805, 6585, 59, 5, 0, 'Communication Is Good, Fresher, Open For The  TxxampC, But The Location Is Almost 30 KMS Up And Down.Seems candidate will join mostly if his friend joins too', 59, '2021-10-28 07:11:21', 1),
(6806, 6689, 59, 4, 0, 'Internal Reference,Candidate distance is too long,No relevant Sales Exp ,sustainability Doubt - 5050 profile please do check for RE', 60, '0000-00-00 00:00:00', 1),
(6807, 6677, 59, 5, 0, 'Fresher,Candidate is focusing for the Core Designing(Mechanical Domain),also look for IT openings, Will not suit for Sales and our IT openings too.Will not sustain with us \n', 50, '0000-00-00 00:00:00', 1),
(6808, 6682, 59, 5, 0, 'Experienced much in Non Voice process,father is running his own business and he too have idea to ave the same.Not open for  Field Sales  and high Sal Exp for CRM profile,Not familiar in Tamil language', 50, '0000-00-00 00:00:00', 1),
(6809, 6687, 59, 4, 0, 'Communication ok,No Relevant Exp  but can give a try for RM.Year back we have shortlisted him for the RE profile,but missed due to some reasons,Check for RM and let  me know\n', 60, '0000-00-00 00:00:00', 1),
(6810, 6690, 59, 4, 0, 'Internal Team Reference, No Relevant sales,6 months work in Credit card Collection, Too long distance, Left previous company due to location constraint only, kindly check and suggest', 60, '0000-00-00 00:00:00', 1),
(6811, 6687, 51, 5, 3, 'because he as many agents in his own family', 59, '2021-10-29 04:11:07', 1),
(6812, 6689, 16, 5, 0, 'no cominnication skills', 59, '2021-10-29 04:13:00', 1),
(6813, 6690, 11, 1, 0, NULL, 59, '2021-10-29 04:18:56', 1),
(6814, 6603, 59, 5, 0, 'Fresher For HR, Communication Ok, Being Fresher Her Salary Exp Min 15k Can Come Down To 13K.Max 2 Yrs Ok With TxxampC. No Parents ,Grandparents Insisting Her To Take Care Of Their Business.5050 Profile. From Porur She Needs To Travel.Sustainability doubts as she may get marry before 2 years', 59, '2021-10-29 04:23:23', 1),
(6815, 6625, 59, 5, 0, 'Little Exp In Recruitment, Not Much Comfortable With TxxampC Need To Check With Family, Sustainability Doubts, Location S From Padi', 59, '2021-10-29 04:24:17', 1),
(6816, 6684, 59, 5, 0, 'Fresher, have  exp in Non Voice Data Entry process. Too long distance from urappakam,Sustainability doubts in Voice process,5050 profile, Marriage has been fixed to happen in next 6 months', 60, '0000-00-00 00:00:00', 1),
(6817, 6697, 59, 5, 0, 'Frequent Job Changer, most prefer to go in Admin openings, Not open for Field sales and the salary Expectation is very high. Not Suitable for CRM', 60, '0000-00-00 00:00:00', 1),
(6818, 6696, 59, 5, 0, 'Communication Average, have exp in non voice/voice process. Presurre handling and sustainability doubts on this profile.Will not fit for our role', 60, '0000-00-00 00:00:00', 1),
(6819, 6664, 59, 5, 0, 'fresher, working as Data Entry operator in Navy (Contract Role). Distance around 44KMS up xxamp down, Not much comfortable with TxxampC,, Thinking a lot on Agreement, Sustainability Doubts If candidate comes back need to review and finalise.', 60, '0000-00-00 00:00:00', 1),
(6820, 6694, 59, 5, 0, 'have 6 months exp in back end operations and much focus on the Non Voice Positions,Will not sustain with us and pressure handling doubt', 60, '0000-00-00 00:00:00', 1),
(6821, 6695, 59, 5, 0, 'Presurre handling and sustainability doubts.Came along her friend only much comforts for non voice ', 60, '0000-00-00 00:00:00', 1),
(6822, 6701, 59, 5, 0, 'Not ready to work in Targets,no voice process Exp,will not sustain with us\n', 60, '0000-00-00 00:00:00', 1),
(6823, 6691, 59, 5, 0, 'Communication ok,have exp in Digital Marketing and HR activities,Not much comfortable with the document submission, Salary Exp is around 20K.If she comes back with  her confirmation lets try, Pressure handling doubts a lot', 60, '0000-00-00 00:00:00', 1),
(6824, 6706, 59, 5, 0, 'Fresher for Recruitment,have 2 yrs of Exp in Govt,Looking for the recruitment,but not  ready to work for Non It Sales profile. Sustainability Doubts for our role', 60, '0000-00-00 00:00:00', 1),
(6825, 6708, 59, 5, 0, 'Communication Average,Focus on the IT profile Recruitment only.Not much comfort with TxxampC.,Will not sustain for a long,also will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(6826, 6720, 59, 3, 0, 'Selected for ESales Profile with CTC 170496 for Karthika Team - Prop ', 60, '0000-00-00 00:00:00', 1),
(6827, 6721, 59, 5, 0, 'Communication Average, sustainability doubts on this profile,2 companies in 1year,also location constraint', 60, '0000-00-00 00:00:00', 1),
(6828, 6726, 59, 5, 0, 'Holding 3-4 Offers 17K max, Communication is Good,3 months exp in Buzzworks.Salary Expectation is very high. Sustainability Doubts\n', 60, '0000-00-00 00:00:00', 1),
(6829, 6724, 59, 5, 0, '4 months In Office in star health f electrician M HM,correspondance MCA,ccna course completed,Looking only for the salary,will not sustain with us.next month only she can join \n', 60, '0000-00-00 00:00:00', 1),
(6830, 6665, 59, 2, 0, 'candidate is outside need to schedule tomorrow', 60, '0000-00-00 00:00:00', 1),
(6831, 6722, 59, 2, 0, 'need 15 days time to Join, Communication ok 5050 profile, have 5 yrs of Exp in Loan sales Exp 18K TH, No Bike and he cant arrange now\n', 60, '0000-00-00 00:00:00', 1),
(6832, 6686, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(6833, 6723, 59, 2, 0, 'In travel need to call later', 60, '0000-00-00 00:00:00', 1),
(6834, 6713, 59, 5, 0, 'need time to check with parents on TxxampC,5050 profile,not seems to very active.sustainability doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(6835, 6715, 59, 5, 0, '2 month in byju for 4 LPA, Exp 20-25K as salary, Have a plan to move abraod  after few years,5050 profile, very close to bangalore looking for opportunities over there too\n', 60, '0000-00-00 00:00:00', 1),
(6836, 6705, 59, 2, 0, 'Now she is outside,will give a call once back to home\n', 60, '0000-00-00 00:00:00', 1),
(6837, 6703, 59, 5, 0, 'He is in internship till dec 2021,College yet to complete. Communication ok 5050 profile, handling pressure doubtful and sustainability doubts\n', 60, '0000-00-00 00:00:00', 1),
(6838, 6714, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(6839, 6730, 74, 5, 0, 'unfit', 50, '0000-00-00 00:00:00', 1),
(6840, 6720, 11, 4, 0, 'candidate ok for E sales .', 59, '2021-11-08 05:40:46', 1),
(6841, 6647, 59, 5, 0, 'Communication Ok,Candidate 5050 On The TxxampC,No Much Comfort  In Internship Stipend, Fresher For The Recruitment Role.Need Time To Give His Confirmation', 59, '2021-11-08 05:41:11', 1),
(6842, 6742, 59, 4, 0, 'profiles has been scehduled for Esales. Communication  ok, candidate is not much active. not Comfortable for your ESales process. Checked with Gaurav Sir also. Please Check for Tele caller profile and do let me know', 50, '0000-00-00 00:00:00', 1),
(6843, 6729, 59, 4, 0, 'Fresher, No Insurance Sales Exp, Have tried for some Govt Exams Earlier, kindly check for RM and let me know', 60, '0000-00-00 00:00:00', 1),
(6844, 6739, 59, 5, 0, 'Fresher, will not sustain for a long ,communication average. Pressure handling also doubts and the salary exp is high\n', 60, '0000-00-00 00:00:00', 1),
(6845, 6737, 59, 5, 0, 'Candidate Communication Is Good, But We Prefer To Have A Good Local Communication For This Insurance Sales. Having Exp In Multiple Domains And Understood From The Discussion Had With The Candidate That He Comforts To Work In Other Domain Areas. For our Insurance Sales seems not to be much comfortable with handling the pressure.', 60, '0000-00-00 00:00:00', 1),
(6846, 6742, 13, 5, 3, 'not suitable for tele sales', 59, '2021-11-09 04:02:10', 1),
(6847, 6727, 59, 2, 0, 'Can Give  a try for Mern, give a task and we can Analyze based on that. \n', 60, '0000-00-00 00:00:00', 1),
(6848, 6733, 59, 5, 0, 'Communciation ok, Not much comfort with the TxxampC, Fresher, Sustainability Doubts, Father is doing business in Singapore, Brother did his studies in Singapore, Mother Govt Health Dept Staff. Salary Exp also High being a fresher\n\n', 60, '0000-00-00 00:00:00', 1),
(6849, 6734, 59, 2, 0, 'in Hospital due to some emergency ', 60, '0000-00-00 00:00:00', 1),
(6850, 6735, 59, 5, 0, 'Communication Average, need time to check with parents on the TxxampC, Pressure handling seems to doubt on the profile\n', 60, '0000-00-00 00:00:00', 1),
(6851, 6709, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(6852, 6732, 59, 5, 0, 'No Local communication, candidate is from andhra he prefers much for Telugu xxamp Hindi communications.Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(6853, 6736, 59, 2, 0, 'Fresher, can schedule her for the F2F interview, based on that only we can decide. Communication ok', 60, '0000-00-00 00:00:00', 1),
(6854, 6729, 51, 5, 2, 'Fresher, No Insurance Sales Exp, Have tried for some Govt Exams Earlier, ', 59, '2021-11-10 11:39:52', 1),
(6855, 6745, 59, 5, 0, 'Communication Average,candidate much comfort to work in non voice process only. Will not sustain in our sales process', 60, '0000-00-00 00:00:00', 1),
(6856, 6710, 59, 5, 0, 'Having knowledge in the basics of PHP,6 months Exp in PHP,Seems comfort with the TxxampC but the salary Exp is very High 6 months - 18K Exp ,She is from Porur Location', 60, '0000-00-00 00:00:00', 1),
(6857, 6711, 59, 5, 0, 'No basic Knowledge in ReactNative,2021 BCA,Fresher, Need time to check on the TxxampC,Brother is working in the Altencalsoft .If he coesback with his confirmation,can analyse based on the system task', 60, '0000-00-00 00:00:00', 1),
(6858, 6747, 59, 4, 0, 'Fresher,communication Average,Family need is there,5050 profile. Check for RE. also we can analyse him in 7 days of training', 60, '0000-00-00 00:00:00', 1),
(6859, 6738, 59, 2, 0, 'Fresher, looking only for the internship and not open up to learn addtional skills.much comfortable to work only in Designing. Candidate yet to share his portfolio, based on that only we can consider', 60, '0000-00-00 00:00:00', 1),
(6860, 6748, 59, 4, 0, 'Internal Reference, have exp in Insurance Sales and the Salary Expectation is very High.Holding  an offer for 18K.If hired sustainability doubts, please do check for RE', 60, '0000-00-00 00:00:00', 1),
(6861, 6712, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(6862, 6747, 16, 5, 0, 'not fit for sales', 59, '2021-11-10 05:21:16', 1),
(6863, 6748, 57, 1, 0, NULL, 59, '2021-11-10 05:23:29', 1),
(6864, 6744, 59, 2, 0, 'Candidate can be Analyzed by giving a task. Open for the TxxampC.', 60, '0000-00-00 00:00:00', 1),
(6865, 6750, 59, 5, 0, 'Communication Average, need to open up will not handle our pressure. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(6866, 6751, 59, 5, 0, 'Fresher ,Communication Average, will not sustain   xxamp pressure handling doubts.', 60, '0000-00-00 00:00:00', 1),
(6867, 6754, 59, 5, 0, 'Communication ok,have backend exp ,not much open with Target,not open for collections.looking only for Sr Level positions and the salary exp is very high ', 60, '0000-00-00 00:00:00', 1),
(6868, 6755, 59, 4, 0, '5050 Profile, Have Exp In Telecaller, Kindly Check For E Sales RM And Let Me Know', 60, '0000-00-00 00:00:00', 1),
(6869, 6755, 11, 1, 0, NULL, 59, '2021-11-12 07:04:39', 1),
(6870, 6709, 59, 2, 0, 'Communication  Ok,fresher for REcruitment,have exp in AR Caller,plan to do MBA in correspondance,Need to check with his parents on TxxampC,if comes back can have a F2F interview', 59, '2021-11-13 12:11:00', 1),
(6871, 6757, 73, 5, 0, 'not suitable this profile looking for non- voice ', 60, '0000-00-00 00:00:00', 1),
(6872, 6714, 59, 2, 0, 'Cadidate will come for a direct F2F,5050 Profile fresher for Insurance Sales.have Exp in Core xxamp School of sports.Let have a f2F and decide', 59, '2021-11-13 01:05:54', 1),
(6873, 6756, 59, 5, 0, 'Fresher,No basic skills knowledge,Not much open with internship cum employment,sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(6874, 6749, 59, 5, 0, 'Communication Average,Sustainability Doubts he is aving a plan to start business.Handling pressure also doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(6875, 6759, 59, 5, 0, 'Interviewed by Gokul and profile has been rejected', 60, '0000-00-00 00:00:00', 1),
(6876, 6738, 59, 5, 0, 'Fresher, Looking Only For The Internship And Not Open Up To Learn Addtional Skills.Much Comfortable To Work Only In Designing. Candidate commited to share the porfolio but didnt turned', 59, '2021-11-13 03:56:13', 1),
(6877, 6712, 59, 5, 0, 'Discussed with her for the Zoom Interview,but after that the candidate not responding to the calls,tried couple of times in multiple days.Finally dropped the profile', 59, '2021-11-13 04:16:41', 1),
(6878, 6768, 59, 2, 0, 'Have interest to learn, having basic knowledge in UI/UX .Selected for Internship', 60, '0000-00-00 00:00:00', 1),
(6879, 6770, 59, 5, 0, 'Very poor communication, no basic knowledge, Poor understanding, not suitable.', 60, '0000-00-00 00:00:00', 1),
(6880, 6774, 59, 5, 0, 'Average Communication,no sustainability in his previous exp. Worked in various domain. Not suitable for our sales ,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(6881, 6758, 59, 5, 0, 'Offered him for the internship cum employment, candidate expects very high pay of 20K Gross, Suggested him for the Internship alone too, but not interested for this', 64, '0000-00-00 00:00:00', 1),
(6882, 6777, 59, 3, 0, 'Selected for Arumbakkam  - Saravanan Team with PF/ESI/PT\n', 64, '0000-00-00 00:00:00', 1),
(6883, 6779, 59, 5, 0, 'Not much open up, have exp in accounts -  super market.Much comforts to work in Non voice process only', 50, '0000-00-00 00:00:00', 1),
(6884, 6761, 59, 5, 0, 'No communication, little attitude, currently working in ICICI prudential and looking for HR Recruitment. Not open for TxxampC, will not sustain', 64, '0000-00-00 00:00:00', 1),
(6885, 6762, 59, 5, 0, 'Not open for Sales, he worked as a coordinator in his previous exp, looking for non voice opening only/backend operations like KYC verification', 64, '0000-00-00 00:00:00', 1),
(6886, 6773, 59, 5, 0, 'Communication very average, no basic knowledge about digital marketing, salary Exp is very high. worked in Accounts/Admin no stability in her experience', 64, '0000-00-00 00:00:00', 1),
(6887, 6772, 59, 5, 0, 'Communication no, no sustainability in his previous exp. not clear on the position he looks. Comforts to work in Non voice. Not suitable for our role ', 60, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(6888, 6392, 59, 5, 0, 'Much looks for intern only, need to relocate from native, sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(6889, 6758, 69, 4, 0, 'Candidate is Good, need to talk for salary discussion', 59, '2021-11-15 06:14:29', 1),
(6890, 6758, 59, 5, 0, 'Offered him for the internship cum employment, candidate expects very high pay of 20K Gross, Suggested him for the Internship alone too, but not interested for this', 69, '2021-11-15 06:46:53', 1),
(6891, 6565, 59, 5, 0, '1 Year Exp In Stock From Arakonnam Location, Second Round Interviewed By Gokul And The Profile Is Reject', 59, '2021-11-15 06:48:45', 1),
(6892, 6714, 51, 5, 3, 'no idea in insurance', 59, '2021-11-15 06:53:31', 1),
(6893, 6714, 59, 4, 0, 'No relevant Exp,have a yera exp in sales,5050 profile for our insurance sales, Kindly check and give your inputs', 59, '2021-11-15 06:53:31', 1),
(6894, 6722, 59, 5, 0, '5050 profile, communication ok, but not much comforts for our sales, no bike ,sustainability doubts on this profile', 59, '2021-11-15 06:56:21', 1),
(6895, 6723, 59, 2, 0, 'discussed with the candidate, Communication ok, have exp in field sales for 6 months, seems not much to comfort to take calls.Sustainability doubts,need to analyse once candidate come for the F2F', 59, '2021-11-15 07:08:47', 1),
(6896, 6764, 59, 4, 0, 'Communication ok,5050 profile, just have few ideas on Digital Marketing. No ideas on content writing, kindly check and let you know your interest', 64, '0000-00-00 00:00:00', 1),
(6897, 6769, 59, 5, 0, 'Communication Average, Not much comfortable with TxxampC, Not ready to work in target if we have for the recruitment,In 10 months 2 companies and working in FMCG company with 15K TH and Expecting more ', 64, '0000-00-00 00:00:00', 1),
(6898, 6771, 59, 3, 0, 'Selected for PHP - Intern for 3 months then employement overall 3 yrs SA', 64, '0000-00-00 00:00:00', 1),
(6899, 6782, 59, 5, 0, 'Communication  ok, Attitude is there, Have Exp in US IT Recruitment.10 months 2 companies worked Last drawn Salary is 20100 and not ready to negotiate less than this. Sustainability doubts on this profile', 64, '0000-00-00 00:00:00', 1),
(6900, 6784, 59, 5, 0, 'Not Active, No basic knowledge in HTML,CSS,JS, will not sustain. Not suitable for our role', 64, '0000-00-00 00:00:00', 1),
(6901, 6763, 59, 5, 0, 'Communication Average, Have Interest towards robotics and automation, Not much comfort to work in Target', 64, '0000-00-00 00:00:00', 1),
(6902, 6794, 59, 5, 0, 'Communication Average not open for Target based position. Looking for the Core Mechanical position. For time being looking for other positions', 64, '0000-00-00 00:00:00', 1),
(6903, 6780, 59, 5, 0, 'Communication average, In 1.10 yrs 2 companies and the salary expectation is  very high. Candidate location is from Chengalpet', 64, '0000-00-00 00:00:00', 1),
(6904, 6785, 59, 4, 0, 'Communication Ok, No relevant Exp in Sales. He is into business for a long. Kindly check  and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(6905, 6766, 59, 5, 0, 'No basic knowledge in Javascript,,Handling pressure and sustainability  doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(6906, 6790, 59, 5, 0, 'Communication is Good, Career Gap, Holding offer with CTS for 3 LPA, and looking for some more offers. Will not sustain with us ', 60, '0000-00-00 00:00:00', 1),
(6907, 6789, 59, 5, 0, 'Communication Average, Worked in Voice xxamp Non Voice 3 yrs 4 companies  handling pressure and sustainability doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(6908, 6788, 59, 5, 0, 'Not much open up, too long distance from Ennore.', 60, '0000-00-00 00:00:00', 1),
(6909, 6791, 59, 5, 0, 'Communication Average,working in share trading company,just as a coordinator.In 1.2 yrs changed 2 companies .Pressure handling doubts and salary expectation is very high as he was getting around 19.5 TH', 60, '0000-00-00 00:00:00', 1),
(6910, 6764, 69, 5, 0, 'Candidate not suitable for the profile', 59, '2021-11-16 06:43:17', 1),
(6911, 6785, 44, 1, 0, NULL, 59, '2021-11-16 07:00:32', 1),
(6912, 6771, 27, 7, 0, 'Have Basic Knowledge in PHP. But hope he will pickup. 3 months intern. Then Based on the performance will promote as an employee and give 8k. ', 59, '2021-11-16 07:05:45', 1),
(6913, 6802, 59, 5, 0, 'Have 2 months exp in voice process, left the company due to work pressure and looking for Admin openings, also plan to do Course related to IT. Will not handle our pressure, Not suits for our role', 50, '0000-00-00 00:00:00', 1),
(6914, 6803, 59, 5, 0, 'Have Exp in Collections and looking for non voice openings(data Entry/Documentation),not comfortable for voice process', 50, '0000-00-00 00:00:00', 1),
(6915, 6786, 59, 5, 0, 'Communication Ok,have 1 yr of exp but frequent permission/leaves during the work. Will not sustain and not suitable for our role', 60, '0000-00-00 00:00:00', 1),
(6916, 6804, 59, 5, 0, 'Frequent Job changer,have exp in both voice xxamp non  voice but much comfort for non voice.Long career Gap.Will not sustain with us', 60, '0000-00-00 00:00:00', 1),
(6917, 6807, 59, 5, 0, 'Fresher ,Career Gap and he is interest to go with the agriculture, but his parents push him to get  into Job, No communication, will not sustain for our pressure', 60, '0000-00-00 00:00:00', 1),
(6918, 6805, 59, 4, 0, 'Have exp in Inbound / Outbound but not relevant Sales Exp, Communication ok, can give a try for voice process. Kindly check for Elite and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(6919, 6805, 13, 5, 0, 'Hold On Long Pending', 59, '2021-11-17 06:03:17', 1),
(6920, 6686, 59, 5, 0, 'Not responding to the calls, tried couple of days .Dropped the profile', 59, '2021-11-17 06:59:21', 1),
(6921, 6768, 60, 1, 0, NULL, 59, '2021-11-17 07:03:48', 1),
(6922, 6768, 59, 7, 0, 'Selected the candidate for the internship', 59, '2021-11-17 07:03:48', 1),
(6923, 6720, 59, 3, 0, 'Selected for ESales Profile with CTC 170496 for Karthika Team - Prop ', 11, '2021-11-18 06:37:27', 1),
(6924, 6720, 29, 7, 2, 'ok for Esales RM - Karthika Team', 59, '2021-11-18 06:47:03', 1),
(6925, 6809, 59, 2, 0, 'communication ok, pursuing MBA in evening college - final Year. Have 2 yrs of Sales Exp. Looking for HR openings, but not comfort with the TxxampC, Need some time to check with family. If he comes back let us review and consider', 64, '0000-00-00 00:00:00', 1),
(6926, 6811, 59, 5, 0, 'Candidate have basic exp in Core PHP, have 1 year exp in PHP and his Salary Exp is High not ready to come down from his exp, also not much comfort with TxxampC', 60, '0000-00-00 00:00:00', 1),
(6927, 6819, 59, 5, 0, '1yr Exp in HR,Last drawn salary is 21K from manufacturing company and his exp is more. Not  much comfort to sign the Service Agreement', 60, '0000-00-00 00:00:00', 1),
(6928, 6818, 59, 5, 0, 'Communication ok, career gap and the salary exp is very high, stating that he looks for HR openings but hold an offer with ICICI for 26K.Sustainability doubts ', 60, '0000-00-00 00:00:00', 1),
(6929, 6822, 59, 5, 0, 'candidate not interested with TxxampC', 60, '0000-00-00 00:00:00', 1),
(6930, 6822, 53, 4, 0, 'Ok for Operations, kindly check with gokul', 59, '2021-11-19 03:01:30', 1),
(6931, 6793, 40, 5, 1, 'Rejected - Will not sustain, Poor communication, Previous working experience is unapt, not having a laptop.\n', 64, '0000-00-00 00:00:00', 1),
(6932, 6829, 80, 4, 0, 'He knew from Icici prudential. Kindly check for next round and give your valid feedback', 60, '0000-00-00 00:00:00', 1),
(6933, 6829, 18, 5, 0, 'Expected saalry is 4.5L Not fit for that salary', 80, '2021-11-19 06:06:50', 1),
(6934, 6709, 59, 5, 0, 'Communication  Ok,Fresher For REcruitment, Have Exp In AR Caller, Plan To Do MBA In Correspondance, Requested time to check With His Parents On TxxampC, Candidate didnt came back with his confirmation.Dropped', 59, '2021-11-20 10:16:25', 1),
(6935, 6813, 59, 5, 0, 'Have only designing knowledge. Looking for high pay, holding multiple offers  with 12K and not much open for UI development Skills learning. Not much comfort with TxxampC too.', 64, '0000-00-00 00:00:00', 1),
(6936, 6718, 59, 5, 0, 'No basic skills knowledge, having his own business and he prefers to continue the same. Will not sustain for a long', 64, '0000-00-00 00:00:00', 1),
(6937, 6797, 40, 4, 0, 'Having sales experience in general insurance and agriculture insurance, Un married, Immediate joiner, Expectation on salary is quit High, but we keep this profile as self sourcing BDM for 6 months after that we can move to team handling.', 64, '0000-00-00 00:00:00', 1),
(6938, 6797, 18, 7, 0, 'Shortlisted for Sourcing BDM Profile. Current CTC is 5.75L and he recently got Hike and expeced 30% hike. Need to negotiate the same. Also need 1 month notice period time and willing to join from Jan 1', 40, '2021-11-20 01:23:54', 1),
(6939, 6821, 59, 5, 0, 'Communication Average,Have Exp in Core field,fresher for the recruitment,no  much knowledge in the recruitment,  Sustainability doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(6940, 6720, 59, 3, 0, 'Selected for ESales Profile with CTC 170496 for Karthika Team - Prop ', 29, '2021-11-20 06:39:19', 1),
(6941, 6823, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(6942, 6824, 40, 5, 2, 'Not interested in sales profile', 64, '0000-00-00 00:00:00', 1),
(6943, 6835, 59, 3, 0, 'Selected for RM - Shanmuga Kutralinigam Team with PF/PT Deductions', 60, '0000-00-00 00:00:00', 1),
(6944, 6839, 59, 5, 0, 'Fresher,currently pursuing his graduation in correspondance,have exp in Finance company,much comfort to work in non voice process.Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(6945, 6840, 59, 5, 0, 'have collection call Exp, not much open up, will not handle the pressure. Sustainability dooubts', 60, '0000-00-00 00:00:00', 1),
(6946, 6835, 44, 7, 0, 'Candidate ok for me do the Further process ASAP  ', 59, '2021-11-22 01:44:33', 1),
(6947, 6836, 73, 5, 0, 'not suitable for this profile,highly doubt for pressure handling. ', 60, '0000-00-00 00:00:00', 1),
(6948, 6797, 59, 2, 0, 'Discussed with the candidate, he will share the  required payslips and the documents of the previous exp. Once received will review and discuss on the CTC.', 18, '2021-11-22 04:04:45', 1),
(6949, 6835, 59, 3, 0, 'Selected for RM - Shanmuga Kutralinigam Team with PF/PT Deductions', 44, '2021-11-22 06:07:49', 1),
(6950, 6842, 59, 5, 0, 'Poor Communication, In 6 months 2 companies  changed. Will not handle our pressure and sustainability doubts.', 60, '0000-00-00 00:00:00', 1),
(6951, 6841, 59, 2, 0, 'communication Ok, Fresher career Gap is there, have basic knowledge in the Skills, Need time to give his confirmation on the TxxampC.', 60, '0000-00-00 00:00:00', 1),
(6952, 6823, 59, 2, 0, 'RNR', 59, '2021-11-23 04:49:43', 1),
(6953, 6850, 59, 5, 0, 'Fresher for Sales, No sustainability in the previous experience. Not comfortable to take calls, much comfort to go for field only. Salary Exp is very high. Will not sustain and handle our pressure. Candidate Need time to think on the CTC what we suggested.', 60, '0000-00-00 00:00:00', 1),
(6954, 6837, 40, 4, 4, 'Looking for a Job and requirement is there and Salary part we need to Negotiate, 15 days notice period is there and Not having a Laptop  ', 64, '0000-00-00 00:00:00', 1),
(6955, 6845, 40, 5, 1, 'Will doesnxquott suit for our profile', 64, '0000-00-00 00:00:00', 1),
(6956, 6846, 40, 2, 0, 'Not having a proper knowledge in our profile and Poor communication. Kindly hold it for 3 days will update', 64, '0000-00-00 00:00:00', 1),
(6957, 6837, 18, 7, 4, 'Selected for Hyderabad. Dont have laptop we need to arrange so need to discuss on the same. Current ctc is 2.75 and expected 4L but can give 15% or max 20% hike but before 6 months only he got 2.75L CTC. But good candidate.', 40, '2021-11-24 11:14:30', 1),
(6958, 6823, 59, 5, 0, 'Dropped ,not responding to the calls. Tried couple of Days', 59, '2021-11-24 11:29:00', 1),
(6959, 6853, 59, 3, 0, 'Selected for Muthu Team  - Elite RE in cash mode', 60, '0000-00-00 00:00:00', 1),
(6960, 6853, 13, 7, 4, 'ok 10k salary  tomorrow joining', 59, '2021-11-24 01:09:17', 1),
(6961, 6853, 59, 3, 0, 'Selected for Muthu Team  - Elite RE in cash mode', 13, '2021-11-24 01:28:51', 1),
(6962, 6849, 40, 5, 3, 'Selected but he does not have a laptop and he couldnxquott able to arrange it also, in that case, we canxquott do anything if he can arrange it means proceed with next level. Else drop it. \nHe said he informed the same thing to HR who schedule it. ', 64, '0000-00-00 00:00:00', 1),
(6963, 6858, 59, 5, 0, 'Fresher for Telecaller profile, Focus on the Non Voice process,6 months 2 companies changed and career gap for 2.5 yrs. Will not sustain and handling pressure no with our profile', 60, '0000-00-00 00:00:00', 1),
(6964, 6847, 59, 5, 0, 'Candidate was busy with some bank purpose. Finally had a call with the candidate in evening and understood that he holds an offer and planning  to go with the same.', 60, '0000-00-00 00:00:00', 1),
(6965, 6843, 40, 5, 2, 'Not looking for field sales xxamp will not suit for our profile', 64, '0000-00-00 00:00:00', 1),
(6966, 6857, 40, 4, 3, 'Tarun - Itxquots a 50-50 profile, He is ok with salary as per company norms and can able to join immediately, Having a Laptop and a Bike as well. Average Communication, Not having a proper sales industry exposure before. But during the training period we should understand his capabilities xxamp we need to decide.\nSo, I am moving this profile to next level, let Sriram decide once.', 64, '0000-00-00 00:00:00', 1),
(6967, 6859, 40, 8, 0, 'Not attended', 64, '0000-00-00 00:00:00', 1),
(6968, 6864, 59, 5, 0, 'Looking  for Java openings only. not suitable for our positions', 60, '0000-00-00 00:00:00', 1),
(6969, 6861, 59, 5, 0, 'Looking for Non Voice process, not comfort to work in IT Domain', 60, '0000-00-00 00:00:00', 1),
(6970, 6863, 59, 5, 0, 'Fresher and no basic skills, Seems not much ok with TxxampC ,sustainability doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(6971, 6837, 59, 2, 0, 'Discussed with the candidate.Yet to receive his payslip/Offer letter of the current company, Once received will speak to him and update the same ', 18, '2021-11-25 12:45:42', 1),
(6972, 6869, 59, 3, 0, 'Selected for Muthu Team,No PF.ESI/PT deductions', 60, '0000-00-00 00:00:00', 1),
(6973, 6870, 59, 3, 0, 'Selected for Muthu Team ,no PF/ESI/Deductions.', 60, '0000-00-00 00:00:00', 1),
(6974, 6871, 59, 5, 0, 'Fresher, Not much familiar with the skills, need time to  give his confirmation on the TxxampC.If  he comes back let us see', 60, '0000-00-00 00:00:00', 1),
(6975, 6867, 59, 5, 0, 'Not open for Voice - Stock/Equity positions, Looking for non voice process only', 60, '0000-00-00 00:00:00', 1),
(6976, 6862, 59, 5, 0, 'Need to open up, Looking for Java openings. Will not sustain and pressure handling doubts. Not much comfort with TxxampC', 60, '0000-00-00 00:00:00', 1),
(6977, 6868, 59, 5, 0, 'Not interested for Stocks/Share market positions. Looking for Finance based accounting profile.', 60, '0000-00-00 00:00:00', 1),
(6978, 6865, 59, 5, 0, 'No Clear communication, No basic knowledge in Digital Marketing. Will not sustain with us. Not suitable for DM', 60, '0000-00-00 00:00:00', 1),
(6979, 6870, 13, 7, 4, 'ok,10k salary,monday joining', 59, '2021-11-25 04:11:27', 1),
(6980, 6869, 13, 7, 4, 'ok 10k salary,monday joining', 59, '2021-11-25 04:11:47', 1),
(6981, 6869, 59, 3, 0, 'Selected for Muthu Team,No PF.ESI/PT deductions', 13, '2021-11-25 04:34:00', 1),
(6982, 6870, 59, 3, 0, 'Selected for Muthu Team ,no PF/ESI/Deductions.', 13, '2021-11-25 04:35:45', 1),
(6983, 6857, 18, 7, 4, 'Selected for Hyderabad. Need 10 days time to join Current salary is 13500 in rural area. Expected salary is 30 k but can negotoate. Can give 20+ becasuse of urban migration and he is a good candidate', 40, '2021-11-25 04:37:13', 1),
(6984, 6881, 40, 5, 0, 'Rejected over the call - He is not interested in the sales profile and he is not proficient in Telugu as well.', 64, '0000-00-00 00:00:00', 1),
(6985, 6883, 59, 5, 0, 'Communication Ok,11th Std discontinued, Handling Pressure Doubt, Will not sustain for a long ', 64, '0000-00-00 00:00:00', 1),
(6986, 6878, 59, 2, 0, 'Selected for Dealer Stocks profile,need to discuss and close.Gokul shortlisted in the second round', 64, '0000-00-00 00:00:00', 1),
(6987, 6882, 40, 5, 1, 'Will not sustain', 64, '0000-00-00 00:00:00', 1),
(6988, 6895, 59, 5, 0, 'Need to open up on communication, will not handle our pressure .Not suitable', 60, '0000-00-00 00:00:00', 1),
(6989, 6889, 59, 4, 0, '5050 profile,communication Average,have 3 months of Exp in Voice,Family need is there. Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(6990, 6896, 59, 5, 0, 'No communication, Looking for Non Voice Process, Will not handle our pressure .', 60, '0000-00-00 00:00:00', 1),
(6991, 6887, 59, 5, 0, 'Looking for Non voice process only\n', 60, '0000-00-00 00:00:00', 1),
(6992, 6874, 59, 5, 0, 'Have Exp in AR caller,Looking for any finance opportunities.Will not sustain for a Stocks /Dealer profiel - Salary Exp is very high', 64, '0000-00-00 00:00:00', 1),
(6993, 6885, 59, 4, 0, 'Candidate Communication Is Good. Seems Little Attitude.Had His Own Business.Can Check For RM.', 60, '0000-00-00 00:00:00', 1),
(6994, 6890, 59, 5, 0, 'communication ok, but much prefers for non voice process only. too long Will not sustain in our role. Have much non voice exp only ', 60, '0000-00-00 00:00:00', 1),
(6995, 6891, 59, 2, 0, 'Selected for Priyanka Team - ex employee need to finalise the pay', 60, '0000-00-00 00:00:00', 1),
(6996, 6892, 59, 5, 0, 'Fresher for Employment, Long career gap,Not serious on his career earlier, Communication ok but will not sustain in our process. ', 60, '0000-00-00 00:00:00', 1),
(6997, 6886, 59, 5, 0, 'Not interested for Voice Process, Looking for Core Micro Biology openings only. Not suitable for our role', 60, '0000-00-00 00:00:00', 1),
(6998, 6893, 59, 5, 0, 'Currently pursuing graduation,1 more year to go. Looking for intern no basic skills', 60, '0000-00-00 00:00:00', 1),
(6999, 6888, 59, 3, 0, 'Selected for Esales RM - Karthika Team - PT - Prop', 60, '0000-00-00 00:00:00', 1),
(7000, 6888, 11, 4, 0, 'candidate ok for E sales', 59, '2021-11-26 05:33:18', 1),
(7001, 6885, 31, 5, 0, 'not picking up calls', 59, '2021-11-26 05:45:28', 1),
(7002, 6889, 11, 1, 0, NULL, 59, '2021-11-26 05:48:30', 1),
(7003, 6891, 59, 3, 0, 'Selected for Priyanka Jeni Team Elite RE - ex employee of CAFS', 59, '2021-11-26 08:05:15', 1),
(7004, 6877, 59, 5, 0, 'Communication ok,candidate preferes for Pythin and interest to learn additional skills. Not much comfort with terms and conditions. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(7005, 6878, 59, 3, 0, 'Selected for Stocks/Dealer profile. will be in training for 15 days in Motilal.3 months intern cum employment.SA for 2.3 yrs', 59, '2021-11-26 08:48:38', 1),
(7006, 1682, 44, 7, 4, 'Arun please do the Further process ', 60, '0000-00-00 00:00:00', 1),
(7007, 6852, 59, 5, 0, 'communciation Averege, No basic ideas on the Skills, Handling Pressure no and sustainability doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(7008, 4378, 59, 2, 0, 'Communication Ok, Have Exp In Recruitment, Worked With Hexaware In Contract Through Live Ceonnections, Salary Exp In High, But Can Be Negotiated, Can Check For HR Recruitment, Try Schedule The Candidate For F2F,Also Ask Him To Come Chennai With Some More Schedules.', 60, '0000-00-00 00:00:00', 1),
(7009, 6880, 59, 5, 0, 'Communication ok, Not much importance towards the work, Last few months he was doing trading, Salary Exp is high being fresher, Not comfort to go with Internship', 60, '0000-00-00 00:00:00', 1),
(7010, 6902, 59, 2, 0, 'No relevant Outbound call sales,he is purely into inbound calls,not handled with targets,bu thaving interest to develop in other areas too,can schedule him for the F2F and let us decide the profile.Candidate is available on Wednesday/Thursday for the F2F interview.Salary Exp is ok and can be negotiated', 60, '0000-00-00 00:00:00', 1),
(7011, 6884, 59, 2, 0, 'No Reevant Exp in outbound call sales,have exp in retail store sales,Communication ok can check for RM profile.Candidate is ready to come for F2F interview on Wednesday/Thursday.Currently working and his notice is 30 Days', 60, '0000-00-00 00:00:00', 1),
(7012, 6898, 59, 2, 0, 'Seem not much comfort with the insurance sales,however asked the candidate to come for the F2F,need to analyse the candidate in person.Have exp in institutional sales for sketchers shoes brand B2B', 60, '0000-00-00 00:00:00', 1),
(7013, 6879, 59, 5, 0, 'Communication Average, Will not handle our pressure .Not much comfort with terms xxamp conditions. Sustainability Doubts. Seems not much to work under targets', 60, '0000-00-00 00:00:00', 1),
(7014, 6904, 59, 5, 0, 'Have Exp in Non Voice only,Attitude issue,Not open for Field Sales,Exp is very high for our CRM role.Will not sustain in our position.Highest graudation is 12th only.Not much importance on the work', 60, '0000-00-00 00:00:00', 1),
(7015, 6809, 59, 5, 0, 'Communication Ok, Pursuing MBA In Evening College - Final Year. Have 2 Yrs Of Sales Exp. Looking For HR Openings, But Not Comfort With The TxxampC, Need Some Time To Check With Family. If He Comes Back Let Us Review And Consider - didnt Turn back with his opinion', 59, '2021-11-27 04:43:37', 1),
(7016, 6846, 40, 5, 0, 'Will not fit for our profile', 40, '2021-11-27 05:59:05', 1),
(7017, 6905, 40, 5, 0, 'Will not suit for our profile', 50, '0000-00-00 00:00:00', 1),
(7018, 1682, 59, 3, 0, 'Selected for RM Profile - Shanmugam Team with PF/PT', 44, '2021-11-29 10:55:53', 1),
(7019, 6913, 59, 3, 0, 'Selected for GK sir Team with PF/PT Deductions', 60, '0000-00-00 00:00:00', 1),
(7020, 6914, 59, 3, 0, 'Selected for Pandiarajan Team - RM with PF/PT\n', 60, '0000-00-00 00:00:00', 1),
(7021, 6915, 59, 5, 0, 'Not open for insurance Sales, Looking for the same domain sales\n', 60, '0000-00-00 00:00:00', 1),
(7022, 6856, 74, 7, 3, 'candidate shorlisted highly job need due to financial crisis, good exposure and convencing skill,expreience in instrumention field due to some personal issue and quit the previous company job now looking job in thanjavur. laptop available need to join 1 dec.', 60, '0000-00-00 00:00:00', 1),
(7023, 6913, 31, 4, 4, 'Candidate okay forwarded to next round with gaurav', 59, '2021-11-29 02:21:07', 1),
(7024, 6914, 80, 4, 0, 'Good Communication skill. Fresher 2021 passout batch. HE HAVE MAX LIFE TRAINING. HE KNOWING MAX LIFE ENDOWMENT PLAN. GOOD GUY', 59, '2021-11-29 02:40:26', 1),
(7025, 6918, 59, 3, 0, 'Selected for Sarath Team with PF/ PT', 60, '0000-00-00 00:00:00', 1),
(7026, 6918, 44, 4, 4, 'sent to gaurav for 2nd round', 59, '2021-11-29 03:17:46', 1),
(7027, 6856, 59, 3, 0, 'Selected for Elite - Thanjavur  - CASH Mode\n', 74, '2021-11-29 03:51:00', 1),
(7028, 6913, 29, 7, 3, 'GK Team as RM', 31, '2021-11-29 03:53:42', 1),
(7029, 6857, 59, 2, 0, 'Discussed ,will share the payslips ASAP\n', 18, '2021-11-29 05:11:53', 1),
(7030, 6918, 29, 7, 3, 'sarath team as rM, can hike 10% if does 1.50 lac in next 2 months (3 Lac)', 44, '2021-11-29 06:06:03', 1),
(7031, 6920, 59, 5, 0, 'Candidate is not clear on the position he applied. No Ideas on this insurance Sales, He just open for any sales openings in Chennai,Have Exp in Jio Retail B2B sales Sustainability doubts in our sales profile. Reviewed in the telephonic Discussion', 60, '0000-00-00 00:00:00', 1),
(7032, 6924, 59, 5, 0, 'Not interresetd to take Calls and the sales ,looking only for the collections', 60, '0000-00-00 00:00:00', 1),
(7033, 6900, 59, 5, 0, 'Have 3 months Recruiter Exp,not comforrtable with TxxampC Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(7034, 6876, 59, 4, 0, 'Communication ok,interest to learn in the areas of stocks/share market, check for Equity dealer and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7035, 6899, 59, 2, 0, '5050 profile,have exp in Byju as BDA,Fresher for IT Profile,Long stay not sure on this profile.Let us hold if candidate comes back let us see\n', 60, '0000-00-00 00:00:00', 1),
(7036, 6907, 59, 2, 0, 'Communication Average,Fresher for Recruitment,learning some course related to IT,Sustainability 5050,let candidate come for F2F\n', 60, '0000-00-00 00:00:00', 1),
(7037, 6930, 73, 5, 0, ' no important for  job this profile , xxamp looking for non - voice also.', 50, '0000-00-00 00:00:00', 1),
(7038, 6932, 59, 5, 0, 'Interviewed by Sabeha - very High Exp with 4 yrs of Experience', 64, '0000-00-00 00:00:00', 1),
(7039, 6933, 59, 4, 0, 'Interviewed by Jeniffer - Have Exp in Telecaller, kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7040, 6934, 59, 5, 0, 'Interviewed by Jennifer - Not interested in Telesales', 64, '0000-00-00 00:00:00', 1),
(7041, 6935, 59, 5, 0, 'Interviewed by Jennifer - Sustainability Doubt xxamp Attitude ', 64, '0000-00-00 00:00:00', 1),
(7042, 6936, 59, 5, 0, 'Interviewed by Jennifer - Will not suit for Calling', 64, '0000-00-00 00:00:00', 1),
(7043, 6937, 80, 4, 0, 'He having Marketing experience. He was in Tyre retailer Company sales person. He knowing many places in chennai. Every day he fix some areas and he went for sales. Calling skill ok but not good. Direct meet he will be good communication ', 64, '0000-00-00 00:00:00', 1),
(7044, 6925, 59, 5, 0, 'no basic ideas in the skills,not comfort with TxxampC', 64, '0000-00-00 00:00:00', 1),
(7045, 6926, 59, 5, 0, 'Interviewed by Reyaz,Not suitable no basic ideas ,will not sustain', 64, '0000-00-00 00:00:00', 1),
(7046, 6931, 59, 2, 0, 'can check him with the task,5050 profile,not sure will he join as his friends not selected for other roles', 64, '0000-00-00 00:00:00', 1),
(7047, 6929, 59, 5, 0, 'No basic ideas on the digital Marketing,will not sustain on our role', 64, '0000-00-00 00:00:00', 1),
(7048, 6888, 59, 3, 0, 'Selected for Esales RM - Karthika Team - PT - Prop', 11, '2021-11-30 05:48:17', 1),
(7049, 6888, 29, 7, 2, 'karthika team, salary 14k, need to review for 7 days and confirm for longer term', 59, '2021-11-30 06:04:47', 1),
(7050, 1793, 59, 4, 0, 'Have Ep in Credit Card Sales, fresh for Insurance Sales,Graduation not completed 5050 profile kindly check and let me know', 60, '0000-00-00 00:00:00', 1),
(7051, 6888, 59, 3, 0, 'Selected for Esales RM - Karthika Team - PT - Prop', 29, '2021-11-30 07:31:54', 1),
(7052, 6918, 59, 3, 0, 'Selected for Sarath Team with PF/ PT', 29, '2021-11-30 07:34:25', 1),
(7053, 1793, 51, 5, 0, 'rejected', 59, '2021-11-30 07:48:38', 1),
(7054, 6933, 11, 1, 0, NULL, 59, '2021-11-30 07:51:47', 1),
(7055, 6898, 59, 5, 0, 'Interviewed by Jennifer - Will not sustain in our role', 59, '2021-11-30 07:53:34', 1),
(7056, 6907, 59, 5, 0, 'Not clear with his passion towards the work,Pressure handling doubt, and the salary exp is also high in terms of Internship', 59, '2021-11-30 07:56:47', 1),
(7057, 6876, 35, 1, 0, NULL, 59, '2021-11-30 08:03:35', 1),
(7058, 6927, 59, 5, 0, 'Not open up, not ready to do sales  calls much. Will not sustain in our positions', 60, '0000-00-00 00:00:00', 1),
(7059, 6771, 59, 3, 0, 'Selected for PHP - Intern for 3 months then employement overall 3 yrs SA', 27, '2021-12-01 11:38:48', 1),
(7060, 6947, 59, 5, 0, 'Not open up,Too long distance, Will not sustain in our role.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7061, 6948, 59, 4, 0, '5050 profile,fresher for telecaller,too long distance,Sustainability Doubts,kindly check and give your opinion for Tiruvallur', 60, '0000-00-00 00:00:00', 1),
(7062, 6953, 59, 5, 0, '4 months Exp in recruitment an looking for Telecaller position, No communication too. Will not handle our pressure .Not suitable ', 60, '0000-00-00 00:00:00', 1),
(7063, 6952, 59, 5, 0, 'have much only in inbound calls,Will not handle our sales.Salary Exp is also high\n', 60, '0000-00-00 00:00:00', 1),
(7064, 6946, 73, 7, 0, 'selected, confirm joining date ', 50, '0000-00-00 00:00:00', 1),
(7065, 6943, 59, 5, 0, 'Communication Poor,No clear ideas on the Recruitment, Will not handle our pressure and sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(7066, 6954, 74, 2, 0, 'good in profile voice clear suitable for telesalees , but highly expected in salary upto 13k need and sustainability issue...he is highly expected in salary and more than two years unemployed,already releived from two companies bajaj and icici company didnt gave proper explanantion for releiving he convenient for work in chennai to so try to took interview in chennai is better option.', 50, '0000-00-00 00:00:00', 1),
(7067, 6960, 73, 7, 0, 'selected , already worked in LIC  2 yrs exp.  expected salary 15k , confirm joining date and salary.', 50, '0000-00-00 00:00:00', 1),
(7068, 6913, 59, 3, 0, 'Selected for GK sir Team with PF/PT Deductions', 29, '2021-12-01 05:44:33', 1),
(7069, 6946, 59, 3, 0, 'Selected for Tiruvallur Team in Cash mode - Patroniss', 73, '2021-12-01 05:58:43', 1),
(7070, 6960, 59, 5, 0, 'Candidate is not interested for the Telecaller, looking for opportunities in Admin. Earlier worked with Bluechip - Same Domain Insurance Sales,but no interest to continue in telecalling. For time being she s looking for the telecaller. Will not sustain ', 73, '2021-12-01 06:00:14', 1),
(7071, 5459, 59, 5, 0, 'No basic knowledge in the skills, If he comes back let us try, Need time to learn', 60, '0000-00-00 00:00:00', 1),
(7072, 6948, 14, 5, 0, 'not suitable for this profile', 59, '2021-12-01 06:07:24', 1),
(7073, 6950, 59, 5, 0, 'No Relevant Exp in Sales, have worked in multiple domain.Will not handle our sales pressure.  Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(7074, 6944, 59, 2, 0, 'Profile is good, Have little exp in Recruitment, Can be trained, but she is currently pursuing her graduation. If she comes back will consider her profile', 64, '0000-00-00 00:00:00', 1),
(7075, 6955, 59, 2, 0, 'Communication is Good, have basic ideas of digital marketing, Can be trained, Need to come back on his confirmation for Internship only/Intern cum employment', 64, '0000-00-00 00:00:00', 1),
(7076, 6963, 73, 7, 0, 'selected, Expected salary 12k , confirmed for joining date xxamp salary.', 60, '0000-00-00 00:00:00', 1),
(7077, 6938, 18, 4, 4, 'No Laptop and interested in Office sales and does not wish to go for field. Analytical skill is average but she is a sales girl. Just check', 64, '0000-00-00 00:00:00', 1),
(7078, 6938, 40, 5, 0, 'Not fit for the profile', 18, '2021-12-02 12:01:51', 1),
(7079, 6965, 59, 2, 0, 'Candidate  have basic knowledge in the Skills, have interest to learn .Can be trained, need to come back with his confirmation on TxxampC', 64, '0000-00-00 00:00:00', 1),
(7080, 6963, 59, 3, 0, 'Selected for Tiruvallur location in Patroniss No PF/ESI/PT', 73, '2021-12-02 12:11:48', 1),
(7081, 6942, 80, 4, 0, '50 - 50 profile\nHe was a good guy in terms of professional guy. He having attitude in that kindly check ji. ', 60, '0000-00-00 00:00:00', 1),
(7082, 6914, 18, 7, 4, 'Selected for Pandiarajan. Offeer 2.6L ctc. Ready to join on monday', 80, '2021-12-02 01:45:03', 1),
(7083, 6937, 18, 8, 0, 'Unable to reach him', 80, '2021-12-02 01:47:23', 1),
(7084, 6942, 18, 5, 0, 'Not fit for sales', 80, '2021-12-02 01:49:06', 1),
(7085, 6961, 40, 4, 3, 'Selected we can take a try', 64, '0000-00-00 00:00:00', 1),
(7086, 6959, 40, 5, 0, 'WIll not suit for our profile', 64, '0000-00-00 00:00:00', 1),
(7087, 6966, 59, 5, 0, 'Have Exp in Semivoice process and looking for Nonvoice/IT.In IT no  basic knowledge will not sustain in our role', 60, '0000-00-00 00:00:00', 1),
(7088, 6967, 59, 2, 0, 'Not much relevant Exp,5050 profile.Have around 1+ yrs exp in sales/Service .Can schedule the candidate for F2F.30 Days notice period, shifting his job only for Hike', 60, '0000-00-00 00:00:00', 1),
(7089, 6964, 73, 5, 0, 'pronoun to disease very poor.  qualification 12th std only . married .  near to location.   but drop.', 60, '0000-00-00 00:00:00', 1),
(7090, 6970, 40, 4, 0, 'Selected but need to check his sales skills and flexibilities', 64, '0000-00-00 00:00:00', 1),
(7091, 6973, 59, 4, 0, 'Have Exp in same Domain - Life insurance Sales, No proper relieving from the previous company. Internal Team Reference, can check for ESales. Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7092, 6961, 18, 5, 0, 'intersted in Opertions Job. Not Intersted in the sales', 40, '2021-12-03 12:20:06', 1),
(7093, 6976, 59, 4, 0, '5050 Profile, Have Exp in Telecalling - Collections/Recovery. Not much interested to do the Sales Call. Kindly check and let me know your inputs', 50, '0000-00-00 00:00:00', 1),
(7094, 6914, 59, 3, 0, 'Selected for Pandiarajan Team - RM with PF/PT\n', 18, '2021-12-03 01:10:42', 1),
(7095, 6973, 11, 1, 0, NULL, 59, '2021-12-03 02:56:05', 1),
(7096, 6978, 59, 5, 0, 'Communication ok have sales Exp but into sales of multiple domain .Not comfortable to take call. Will not suitable for our role .Sustainability doubts in our profiles', 50, '0000-00-00 00:00:00', 1),
(7097, 6976, 53, 5, 0, 'Not intrested in telecalling', 59, '2021-12-03 02:57:32', 1),
(7098, 6986, 58, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7099, 6987, 58, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7100, 6951, 59, 5, 0, 'Interviewed by Sabeha,only 3 months exp and looking for a change. Will not sustain with us and the salary Exp is high', 64, '0000-00-00 00:00:00', 1),
(7101, 6962, 59, 5, 0, 'Interviewed By Sabeha,Only 3 Months Exp And Looking For A Change. Will Not Sustain With Us And The Salary Exp Is High', 64, '0000-00-00 00:00:00', 1),
(7102, 6970, 18, 8, 0, 'connected twice\n but he did not attend', 40, '2021-12-04 02:10:51', 1),
(7103, 6969, 40, 4, 4, '50 - 50 profile but we can try, \nSalary expectation and Sustainability issue is there', 64, '0000-00-00 00:00:00', 1),
(7104, 6981, 59, 5, 0, 'Fresher for Recruitment, Communication ok, but not much comfort with txxampC. Salary Exp is very high being fresher. Will not sustain for a long', 64, '0000-00-00 00:00:00', 1),
(7105, 6980, 59, 5, 0, 'Fresher for Recruitment, seems not much comfort on the SA. Much comfortable for  yr of SA, Need time to give us the confirmation, if he comes back let us see', 60, '0000-00-00 00:00:00', 1),
(7106, 6984, 59, 5, 0, 'Fresher for Recruitment, have exp as trainee HR executive from Kerela, looking for Recruitment with high salary Exp. Sustainability Doubts,', 60, '0000-00-00 00:00:00', 1),
(7107, 6777, 15, 4, 3, 'fresher so eaduthu train pananum but ok', 59, '2021-12-06 10:01:47', 1),
(7108, 6977, 59, 2, 0, 'Candidate communication ok,Not much comfort with 2.3 yrs of Service Agreement,planning to negotiate on the SA,But the initial internship and the salary pay of 12-13K max to be finallised with the candidate', 64, '0000-00-00 00:00:00', 1),
(7109, 6990, 59, 5, 0, 'Not suitable for our roles,will not sustain\n', 50, '0000-00-00 00:00:00', 1),
(7110, 6991, 59, 5, 0, 'Candidate communication is not clear - Stammering - Not comfortable to take the Call, Will not sustain in our role', 50, '0000-00-00 00:00:00', 1),
(7111, 6992, 59, 4, 0, 'Candidate Communication is ok,Fresher for Telecaller,Ready to relocate Bangalore,kindly check for ESales RM', 50, '0000-00-00 00:00:00', 1),
(7112, 6994, 59, 4, 0, 'Communication ok, Fresher for Sales, Can be Trained for Sales .Kindly check for ESales RM and let me know your inputs', 50, '0000-00-00 00:00:00', 1),
(7113, 6777, 59, 3, 0, 'Selected for Arumbakkam  - Saravanan Team with PF/ESI/PT\n', 15, '2021-12-06 10:55:53', 1),
(7114, 6992, 56, 4, 0, 'selected for next round', 59, '2021-12-06 11:41:27', 1),
(7115, 6985, 59, 2, 0, 'Fresher Profile for Equity,Communication is Good,have interest to learn ,Can be trained in the areas of Stocks/Share.2nd Round interviewed by Raghu and forwarded for the final round. Interviewed by Gokul and the profile on Hold', 64, '0000-00-00 00:00:00', 1),
(7116, 6995, 59, 5, 0, 'Fresher for Insurance Sales,have worked with Reliance for 2 months,in 10 months 2 companies,not comfort to spend additional time in the work. Not suitable for our role', 50, '0000-00-00 00:00:00', 1),
(7117, 6969, 18, 7, 4, 'Selected for Hyderabad. Can give 288000 package. Last drawn take home was 20K and giving 20% Increament. Ready to join Next monday', 40, '2021-12-06 01:35:40', 1),
(7118, 7002, 59, 3, 0, 'Selected for Syed Team - RE with PF/ESI/PT Dedcutions', 60, '0000-00-00 00:00:00', 1),
(7119, 7000, 59, 5, 0, 'Communication ok, Fresher for Telecaller Sales Profile,Looking for IT Domain only and for the time being he is looking for the telecaller positions.Will not sustain and not suits for our role', 60, '0000-00-00 00:00:00', 1),
(7120, 7002, 57, 4, 0, 'candidate is ok kindly negotiate the salary and confirm the joining date', 59, '2021-12-06 04:42:47', 1),
(7121, 7001, 59, 5, 0, 'no Communication,no sustainability in his previous exp,will not handle our pressure on sales.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7122, 6999, 59, 5, 0, 'Fresher for Telecaller, Have  Exp in Core only,Also seems to much comfort in the non voice/Core only. Not suitable for our role', 60, '0000-00-00 00:00:00', 1),
(7123, 6939, 59, 5, 0, 'Have Exp in Non Voice ,candidate communication sounds good,Not suits for CRM,RE Profile - No Bike 5050 handling the field Sales. Will not sustain in our role', 60, '0000-00-00 00:00:00', 1),
(7124, 7002, 59, 3, 0, 'Selected for Syed Team - RE with PF/ESI/PT Dedcutions', 57, '2021-12-06 05:34:44', 1),
(7125, 6969, 59, 2, 0, 'Candidate Didnt Respond to the calls', 18, '2021-12-06 05:50:08', 1),
(7126, 6994, 39, 1, 0, NULL, 59, '2021-12-07 09:57:04', 1),
(7127, 6955, 69, 5, 0, 'Candidate not suitable, he is not okay with job role', 59, '2021-12-07 09:58:09', 1),
(7128, 6955, 59, 4, 0, 'Communication Is Good, Have Basic Ideas Of Digital Marketing, Can Be Trained, Need To Come Back On His Confirmation For Internship Only/Intern Cum Employment', 59, '2021-12-07 09:58:09', 1),
(7129, 6944, 59, 5, 0, 'Profile Is Good, Have Little Exp In Recruitment, Can Be Trained, But She Is Currently Pursuing Her Graduation. If She Comes Back Will Consider Her Profile. As she is in her graduation final year full time, will not be comfortable to work in our profile.Sustainability Doubts she didnt turn back with her confirmation', 59, '2021-12-07 10:02:27', 1),
(7130, 6857, 59, 5, 0, 'Candidate is expecting min 80-90% Hike on the pay. Already we suggested him with the good percentage. But candidate is not ok with the pay.', 59, '2021-12-07 10:11:59', 1),
(7131, 6837, 59, 5, 0, 'Candidate is in dilemma to continue with his current company for another 6months to complete his 1 yr with ICICI, Even we projected him the salary offered. Candidate dropped', 59, '2021-12-07 10:12:29', 1),
(7132, 6998, 40, 5, 0, 'Will not suit for our profile', 64, '0000-00-00 00:00:00', 1),
(7133, 7003, 40, 8, 0, 'Not attended', 64, '0000-00-00 00:00:00', 1),
(7134, 7009, 59, 5, 0, 'Have Exp in multiple domain, not interested for Sales calls. Not suitable', 64, '0000-00-00 00:00:00', 1),
(7135, 7010, 59, 5, 0, 'have Exp as a receptionist, not clear for which position she applied. Will not handle the Telecaller Sales. Not Suitable', 64, '0000-00-00 00:00:00', 1),
(7136, 7011, 59, 3, 0, 'Selected for Pandiarajan Team - RM Candidate - With PF/PT Deductions', 64, '0000-00-00 00:00:00', 1),
(7137, 7013, 59, 5, 0, 'communication ok, seems not  showing much importance to the job.Earlier 2 months worked as call coordinator then career gap,No Graduation, Will not sustain in our role', 64, '0000-00-00 00:00:00', 1),
(7138, 6983, 59, 5, 0, 'Have 3 months Exp in HR operations fresher for Recruitment, Communication ok, Married,Not comfort with TxxampC, need time to check with family, Pressure handling doubts. Long Stay doubts on the profile', 50, '0000-00-00 00:00:00', 1),
(7139, 7012, 59, 5, 0, 'Have 8 months exp in  loan collections, Not interested to take the outbound calls. Not suitable and will not sustain. No Sustainability in her previous exp too.', 64, '0000-00-00 00:00:00', 1),
(7140, 7011, 80, 4, 4, 'Sales Experience he have. We trained indepth definitely we will get good employee', 59, '2021-12-07 01:21:59', 1),
(7141, 7011, 18, 7, 3, 'Selected for Pandiarajan team. Can give 23K Gross monthly... Immediate Joiner', 80, '2021-12-07 01:37:22', 1),
(7142, 7020, 56, 4, 0, 'selected for next round', 50, '0000-00-00 00:00:00', 1),
(7143, 7022, 56, 4, 0, 'Selceted for next round', 50, '0000-00-00 00:00:00', 1),
(7144, 7022, 11, 4, 0, 'candidate ok ', 56, '2021-12-07 03:17:14', 1),
(7145, 7020, 11, 4, 0, 'candidate is ok ', 56, '2021-12-07 03:17:44', 1),
(7146, 7021, 59, 5, 0, 'Not ready for ESales and for the CRM profile Exp is very high', 64, '0000-00-00 00:00:00', 1),
(7147, 7023, 59, 5, 0, 'Communication ok,Long Distance around 20 kms and the candidate is not ready to relocate ,also the salary exp is around min 18K PM. No Relevant Exp in Telecaller Sales Will not sustain in our role', 50, '0000-00-00 00:00:00', 1),
(7148, 7015, 59, 2, 0, 'Communication is Good,Currently pursuing CA,No regular  graduation.At present working with Bank Bazaar ,in notice period. Holding an offer for 28K from a real estate Company. His current Cost in 15K PM, Candidate is doubtful on the sustainability in terms of salary,Check with the candidate and schedule him for the 2nd level interview  and then we will finalise\n', 60, '0000-00-00 00:00:00', 1),
(7149, 7017, 59, 5, 0, 'Communication ok, Recently joined reliance and looking for change in terms of salary, also he is not comfort to take the calls and generating the leads.Will not sustain,not suitable', 60, '0000-00-00 00:00:00', 1),
(7150, 6969, 59, 2, 0, 'Candidate is in dilemma as he received another offer on 06Dec from Sykes for 3.5 LPA also he holds an offer from 24 mantra for the same we offered. Need to confirm the candidate tomorrow', 59, '2021-12-07 07:26:14', 1),
(7151, 7011, 59, 3, 0, 'Selected for Pandiarajan Team - RM Candidate - With PF/PT Deductions', 18, '2021-12-07 07:35:37', 1),
(7152, 7026, 40, 4, 3, 'Selected - Can give him a chance, Fresher to our industry, Salary expectation also reasonable and Having a Laptop and a bike, can able to join on 15th dec. ', 50, '0000-00-00 00:00:00', 1),
(7153, 7024, 59, 5, 0, 'Fresher ,No basic skills knowledge,not comfirt with the terms and conditions,need time to confirm on the TxxampC,if comes back let us check\n', 64, '0000-00-00 00:00:00', 1),
(7154, 7031, 59, 4, 0, 'Communication ok, sounds to be silent, have Sales Exp in Automobile Sales,5050 profile,can be trained in our Sales, kindly check and let me know your inputs', 50, '0000-00-00 00:00:00', 1),
(7155, 7027, 59, 5, 0, 'Fresher for IT he has exp in Core Civil Domian,Looking for IT openings.Not Strong with the basic skills.2nd LEvel Interviewed by Latha and the profile has been rejected', 64, '0000-00-00 00:00:00', 1),
(7156, 7026, 18, 5, 0, 'Not fit for our profile', 40, '2021-12-08 12:58:48', 1),
(7157, 7033, 59, 5, 0, 'Fresher for Telecaller, have Exp in Data Entry, Comfort to work in Non Voice Process, .He is a Dancer Too, Will not sustain with our role for a long', 64, '0000-00-00 00:00:00', 1),
(7158, 7034, 59, 5, 0, 'Not ready to work under Targets. Not suitable ', 64, '0000-00-00 00:00:00', 1),
(7159, 7037, 59, 5, 0, 'Not much suitable for the RM role, no relevant Sales Exp too, have worked in B2B earlier. no clarity on the previous job changes.Sustainability Doubts on this position', 60, '0000-00-00 00:00:00', 1),
(7160, 7031, 80, 5, 0, 'He went lunch after that he doesnxquott come to office', 59, '2021-12-08 02:54:12', 1),
(7161, 7039, 40, 4, 4, 'Fresher, immediate joiner, salary expectation is reasonable, having bike and Laptop, staying near to our office.', 64, '0000-00-00 00:00:00', 1),
(7162, 7041, 59, 5, 0, 'Have Exp in Customer Support and looking for IT openings but not relevant to our skill sets.Currently pursuing AWS course.Will not sustain in our Telecaller\n', 50, '0000-00-00 00:00:00', 1),
(7163, 7039, 18, 7, 4, 'Selected for Veben Team. Can give 3.25L CTC. Immed Joiner. quality Candidate by reference', 40, '2021-12-08 03:55:56', 1),
(7164, 7042, 59, 5, 0, 'No Relevant Exp in Sales,Will not handle our telecaller pressure.Looking for AWs openings', 50, '0000-00-00 00:00:00', 1),
(7165, 6941, 59, 5, 0, 'No clarity on the job he looks, profile shows he much prefers to be in Mechanical Design .Will not sustain in our recruitment Role\n', 64, '0000-00-00 00:00:00', 1),
(7166, 7020, 59, 3, 0, 'Selected for ESales Bangalore Reporting to Sathish Kumar in  Prop - 208 Deductions', 11, '2021-12-08 05:42:56', 1),
(7167, 7022, 59, 3, 0, 'Selected For ESales Bangalore Reporting To Sathish Kumar In  Prop - 208 Deductions', 11, '2021-12-08 05:44:22', 1),
(7168, 6969, 59, 5, 0, 'Candidate decided to go with the offer he holds for 3.5 LPA. Not interested', 59, '2021-12-09 10:10:29', 1),
(7169, 6899, 59, 5, 0, '5050 Profile, Have Exp In Byju As BDA, Fresher For IT Profile, Long Stay Not Sure On This Profile. Not suitable', 59, '2021-12-09 10:12:22', 1),
(7170, 7029, 40, 5, 1, 'Not fit', 50, '0000-00-00 00:00:00', 1),
(7171, 7048, 59, 5, 0, 'No Relevant Exp,have worked in multiple domain,in 2yrs worked with 4 companies. salary Exp is very high.Will not sustain in our position.Not suitable', 50, '0000-00-00 00:00:00', 1),
(7172, 7049, 59, 5, 0, 'Fresher ,not a Graduate,Have worked in non voice process only,Not comfort to work in Voice Process.Will not sustain in our role', 64, '0000-00-00 00:00:00', 1),
(7173, 7045, 59, 4, 0, 'Communication Average,5050 profile, Fresher for Telecaller,,Kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7174, 7039, 59, 3, 0, 'selected for Veben Team with PF/PT. Commitment has been given to the candidate on the revision of the salary after 6 months', 18, '2021-12-09 01:58:56', 1),
(7175, 7045, 14, 5, 0, 'Not suitable for this voice process', 59, '2021-12-09 03:16:03', 1),
(7176, 7040, 59, 5, 0, 'Communication Average, 3 yrs 3 companies, seems not much good profile for our recruitment, Sustainability also doubts, handling pressure Doubts, Father is  Govt Chief Health Inspector', 64, '0000-00-00 00:00:00', 1),
(7177, 7056, 59, 5, 0, 'No Relevant Exp ,Earlier he was a Field Service Engineer .Candidate not open for Field Sales, looking for office based Telecaller work and his last drawn monthly 18K .Will not sustain in our roles.', 60, '0000-00-00 00:00:00', 1),
(7178, 7054, 59, 5, 0, 'Communication ok, no strong knowledge  in React, Having knowledge only in HTML,CSS. Too long distance around60kms up and down.', 64, '0000-00-00 00:00:00', 1),
(7179, 7006, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(7180, 7060, 40, 5, 0, 'Raj BDM took the Interview, sustainability issue and not having relavant experienvce so rejected', 50, '0000-00-00 00:00:00', 1),
(7181, 7057, 40, 4, 3, 'Candidate is ok but he is expecting high package we need to negotiate that part alone otherwise profile is ok.', 64, '0000-00-00 00:00:00', 1),
(7182, 7066, 30, 4, 0, 'candidate selected ,confirm salary part and joining date', 50, '0000-00-00 00:00:00', 1),
(7183, 7065, 56, 4, 0, 'selected for next round', 50, '0000-00-00 00:00:00', 1),
(7184, 7068, 27, 2, 0, 'Fresher. Having Learning Capability. He knows UX Design stuffs and need to learn UI Stuffs. Okay for an Internship. He will confirm with his parents for our terms.', 64, '0000-00-00 00:00:00', 1),
(7185, 7072, 56, 5, 0, 'Not selected', 50, '0000-00-00 00:00:00', 1),
(7186, 7073, 59, 4, 0, '5050 profile, no relevant Exp,Every 1 year changed the job, kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7187, 7066, 59, 3, 0, 'Selected for Bangalore ESales  - PF/ESI/PT Deductions', 30, '2021-12-10 11:50:50', 1),
(7188, 7075, 56, 4, 0, 'selected for next round', 50, '0000-00-00 00:00:00', 1),
(7189, 7074, 56, 5, 0, 'not selected', 50, '0000-00-00 00:00:00', 1),
(7190, 7076, 59, 5, 0, 'No basic knowledge in the required skills,much comfort to work in the non voice process', 50, '0000-00-00 00:00:00', 1),
(7191, 7077, 59, 5, 0, 'Not interested for Insurance Sales', 64, '0000-00-00 00:00:00', 1),
(7192, 7053, 59, 5, 0, 'Communication ok, Fresher for Stocks, Much into finance/Accounting. Recently married and sustainability doubts on this profile.', 64, '0000-00-00 00:00:00', 1),
(7193, 7052, 59, 5, 0, 'Communication ok, have 1 yr exp as HR Trainee in TVS, Recently Married, Salary Exp is very high Min 17K.No relevant Exp in Recruitment, can be trained, but sustainability doubts', 64, '0000-00-00 00:00:00', 1),
(7194, 7064, 59, 5, 0, 'Communication Average, much focus on the salary only. Pressure handling doubt, will not sustain', 50, '0000-00-00 00:00:00', 1),
(7195, 7057, 18, 7, 4, 'Selected for Hyderabad. Ready to Join next thursday(23 Dec 2021) Salary ecpectation is high and need to negotiate.', 40, '2021-12-10 03:13:55', 1),
(7196, 7043, 59, 5, 0, 'Candidate communication is ok,No basic knowledge in the Recruitment.Worked in the core for almost 2 yrs, have a plan to go with Master degree. Preparing Civil Service Exam too. Will not sustain for a long', 64, '0000-00-00 00:00:00', 1),
(7197, 7073, 44, 1, 0, NULL, 59, '2021-12-10 05:19:37', 1),
(7198, 7065, 30, 4, 0, 'About candidate i have one doubt  \nfor job sustainity bcoz she wrote exam for police, waiting for result after that physical test its there. once again confirm from your end , if its ok then move for further process', 56, '2021-12-10 05:52:53', 1),
(7199, 7083, 59, 5, 0, 'Communication Average ,Frequent Job Changes,Exp as a service Engineer,Not suitable for Telecaller/RE/RM', 64, '0000-00-00 00:00:00', 1),
(7200, 7075, 30, 4, 0, 'Candidate selected , Cofirm salary package , expectation 15k but she is fresher ,as per company norms  base salary we can provide. Probably monday she will join', 56, '2021-12-10 05:58:09', 1),
(7201, 7075, 59, 2, 0, 'Candidate is a fresher and No highest graduation- not completed,also too long distance almost 2.5 hours travel, Need to check with family for the confirmation on the job', 30, '2021-12-10 06:30:42', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(7202, 7065, 59, 3, 0, 'Selected for Esales - Madiwalla with PT only in CAFS Infotech Prop', 30, '2021-12-10 06:33:27', 1),
(7203, 7016, 40, 8, 0, 'Not attended', 64, '0000-00-00 00:00:00', 1),
(7204, 7084, 40, 8, 0, 'Not attended', 64, '0000-00-00 00:00:00', 1),
(7205, 7088, 59, 5, 0, 'Not much comfortable for Field Sales, looking for Inventory and Stocks maintenance Roles much', 64, '0000-00-00 00:00:00', 1),
(7206, 7089, 59, 4, 0, '5050 profile, have exp in Telecaller xxamp Non Voice, Kindly check for CRM role in your team and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7207, 7087, 59, 5, 0, 'Communication ok, Fresher profile, Salary Exp is very high,Already he holds offer multiple offers and awaiting for the final discussion with byjuxquots. Will not sustain ', 50, '0000-00-00 00:00:00', 1),
(7208, 7089, 51, 5, 0, 'rejected', 59, '2021-12-11 01:26:48', 1),
(7209, 7090, 59, 4, 0, 'Discussed with the candidate, Fresher for our Sales, Have exp in CRM roles only.In 1.5 yrs 2 companies changed and looking for the third. We can try this profile,5050 Schedule the candidate for F2F interview by monday', 60, '0000-00-00 00:00:00', 1),
(7210, 7090, 56, 5, 0, 'did not come for interview', 59, '2021-12-11 05:29:36', 1),
(7211, 7080, 59, 2, 0, 'Communciation ok,fresher for Recruitment, Need to analyse the candidate in depth on F2F.Once she is back to chennai schedule her for F2F', 60, '0000-00-00 00:00:00', 1),
(7212, 7019, 40, 5, 2, 'Will not fit for the profile', 60, '0000-00-00 00:00:00', 1),
(7213, 7097, 59, 5, 0, 'Candidate is interested towards the non voice process only', 60, '0000-00-00 00:00:00', 1),
(7214, 7047, 59, 3, 0, 'Selected for Elite RE- Muthu Team  in Patroniss Cash', 60, '0000-00-00 00:00:00', 1),
(7215, 7047, 13, 7, 4, 'ok 10k salary thursday joining', 59, '2021-12-14 10:06:34', 1),
(7216, 7047, 59, 3, 0, 'Selected for Elite RE- Muthu Team  in Patroniss Cash', 13, '2021-12-14 12:59:10', 1),
(7217, 7093, 59, 5, 0, 'Communication ok, fresher for recruitment, Salary Exp is high, Need to confirm with her family on SA, if she comes back let us see', 60, '0000-00-00 00:00:00', 1),
(7218, 7107, 59, 4, 0, 'No Relevant Exp In Sales Fresher, Having Attitude Issue, Sustainability Doubts,5050 Profile, Kindly Check And Let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7219, 7085, 59, 5, 0, 'Candidate Communication is Good, Fresher for Recruitment, Currently pursuing MBA and she will be having saturday  xxamp sunday class. Salary expectation seems high .Not much comfort with the submission of documents. Doubts to stay not more than a year. If she comes back let us see', 60, '0000-00-00 00:00:00', 1),
(7220, 7102, 57, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(7221, 7108, 59, 5, 0, 'Just 3 months Exp in Telecaller and much prefer to work in Non Voice process,Will not sustain  in our roles', 60, '0000-00-00 00:00:00', 1),
(7222, 7111, 59, 4, 0, 'communication ok, have 6 month exp in health insurance, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7223, 7111, 24, 5, 0, 'i dont remember on this .. old candidate', 59, '2021-12-14 05:30:37', 1),
(7224, 7107, 51, 5, 0, 'rejected', 59, '2021-12-14 05:35:00', 1),
(7225, 7117, 59, 5, 0, 'Candidate Not Comfortable With The Positions .Will Not Sustain In Our Roles.', 64, '0000-00-00 00:00:00', 1),
(7226, 7118, 59, 5, 0, 'Communication Average,No basic knowledge relates to the telecaller skills, Will not sustain in our positions.Not suitable', 64, '0000-00-00 00:00:00', 1),
(7227, 7119, 59, 5, 0, 'candidate is comfort to work in nonvoice process only, Too long Distance. Not suitable for our roles, will not sustain', 64, '0000-00-00 00:00:00', 1),
(7228, 7079, 40, 5, 0, 'Rejected will not fit', 64, '0000-00-00 00:00:00', 1),
(7229, 7082, 40, 5, 0, 'Rejected will not fit for our profile', 64, '0000-00-00 00:00:00', 1),
(7230, 7046, 40, 5, 0, 'Not fit', 64, '0000-00-00 00:00:00', 1),
(7231, 7110, 59, 3, 0, 'Selected for RE - Syed Team with PF/ESI/PT\n\n', 64, '0000-00-00 00:00:00', 1),
(7232, 7125, 59, 5, 0, 'Not clear in his job preference, looking for Sales, IT openings. Pressure handling doubt on this profile.', 64, '0000-00-00 00:00:00', 1),
(7233, 7120, 30, 4, 0, 'Expected salary 15k , candidate selected, finalize ctc and confirm joining', 50, '0000-00-00 00:00:00', 1),
(7234, 7103, 40, 5, 0, 'Not fit for our profile', 64, '0000-00-00 00:00:00', 1),
(7235, 7126, 59, 5, 0, 'She is a fresher profile and not comfortable for the Chennai location, looking for opportunities in and around Kerala. Prefer to work only in the IT openings only', 64, '0000-00-00 00:00:00', 1),
(7236, 7114, 40, 5, 0, 'Salary Expectation is high and not having proper exp in sales and sustainability issue is there, and not having laptop as well.', 64, '0000-00-00 00:00:00', 1),
(7237, 6992, 30, 5, 0, 'communication Skill', 56, '2021-12-15 01:53:20', 1),
(7238, 6370, 59, 5, 0, 'Not open to work on targets, Already joined justdial and left the company due to work pressure,Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(7239, 7110, 57, 4, 0, 'Candidate is ok.. kindly negotiate the salary', 59, '2021-12-15 03:28:33', 1),
(7240, 7117, 16, 7, 0, 'SELECTED', 59, '2021-12-15 03:42:51', 1),
(7241, 7128, 30, 4, 0, 'Candidate selected she will join on monday confirm the salary part and further formalities', 50, '0000-00-00 00:00:00', 1),
(7242, 7117, 59, 5, 0, 'Candidate Not Comfortable With The Positions .Will Not Sustain In Our Roles.', 16, '2021-12-15 06:01:43', 1),
(7243, 7120, 59, 2, 0, 'RNR\n', 30, '2021-12-15 06:07:42', 1),
(7244, 7128, 59, 3, 0, 'Selected for ESales RM - Bangalore Location ', 30, '2021-12-15 06:08:27', 1),
(7245, 7141, 59, 3, 0, 'Selected for Digital Marketing - PT only\n', 60, '0000-00-00 00:00:00', 1),
(7246, 7141, 69, 4, 0, 'Candidate Okay, Please Check For Bond And Salary.', 59, '2021-12-15 07:08:02', 1),
(7247, 7141, 59, 3, 0, 'Selected for Digital Marketing - PT only\n', 69, '2021-12-15 07:52:51', 1),
(7248, 7140, 59, 5, 0, 'Frequent Job changer and the salary exp 25K TH in very high. Will not sustain', 64, '0000-00-00 00:00:00', 1),
(7249, 7147, 59, 5, 0, 'Attitude Issue,Frequent Job changes,Looking only for the Salary Growth.Will not handle our sales pressure.Not suitable', 64, '0000-00-00 00:00:00', 1),
(7250, 7122, 40, 5, 0, 'Not fit for the profile', 64, '0000-00-00 00:00:00', 1),
(7251, 7134, 40, 5, 0, 'Not fit for the profilw', 64, '0000-00-00 00:00:00', 1),
(7252, 7135, 40, 5, 0, 'Rejected Over the call', 64, '0000-00-00 00:00:00', 1),
(7253, 7148, 59, 5, 0, 'Not much comfortable with the Targets, Will not sustain ', 64, '0000-00-00 00:00:00', 1),
(7254, 7139, 59, 5, 0, 'Communication is Good,Looking only for MIS Activities,but not comfortable in handling the calls  for a long as she is having some ear problem.The profile can be considered later for any immeidate circumstances', 64, '0000-00-00 00:00:00', 1),
(7255, 7149, 40, 5, 0, 'Not suitable for our profile', 64, '0000-00-00 00:00:00', 1),
(7256, 7127, 59, 5, 0, 'communication average, not comfort with the Terms and the salary also, will not sustain in our roles', 64, '0000-00-00 00:00:00', 1),
(7257, 7035, 59, 2, 0, 'Fresher for Telecaller-Esales,Sustainability Doubts,she recently married,Not comfort to travel from her location to madiwalla, requested time to confirm her interest', 64, '0000-00-00 00:00:00', 1),
(7258, 7130, 59, 5, 0, 'Communication Average,Not much comfort on the Document Submission, Seems to be slow and pressure handling doubt', 64, '0000-00-00 00:00:00', 1),
(7259, 7124, 59, 5, 0, 'Communication ok,Not much comfort with TxxampC,Document submission need to check with family,if he comes back let us decide', 64, '0000-00-00 00:00:00', 1),
(7260, 7152, 24, 7, 0, 'candidates selected.', 60, '0000-00-00 00:00:00', 1),
(7261, 7110, 59, 3, 0, 'Selected for RE - Syed Team with PF/ESI/PT\n\n', 57, '2021-12-16 03:36:36', 1),
(7262, 7155, 59, 4, 0, 'Check for Digital Marketing,No Exp in Digital Marketing,Fresher,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7263, 7129, 59, 5, 0, 'Working With HCL In Non Voice, Looking For Both Voice/Nonvoice, But The Salary Exp Is High.Candidate is in Dilemma.If she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(7264, 7152, 59, 3, 0, 'Selected for Suthagar - PF/ESI/PT\n', 24, '2021-12-16 05:52:27', 1),
(7265, 7155, 69, 5, 0, 'CSE degree holder but cant reply more than 3 HTML tags', 59, '2021-12-16 06:33:21', 1),
(7266, 7145, 59, 5, 0, 'Candidate 5050 profile,fresher for Sales,Scheduled the candidate for 2nd level,but left without attending the 2nd round', 60, '0000-00-00 00:00:00', 1),
(7267, 7146, 59, 2, 0, 'Have Exp in Collections only, not open for Field Sales RM profile, Discussed with Gokul on the profile.', 60, '0000-00-00 00:00:00', 1),
(7268, 7159, 59, 5, 0, 'Communication Average, Prefers to work much in Non voice only, Seems not much comfort with the targets, Preparing for the Bank Exams, Will not sustain and pressure handling doubt', 64, '0000-00-00 00:00:00', 1),
(7269, 7154, 59, 5, 0, 'No communication Understanding poor, Not suitable ', 64, '0000-00-00 00:00:00', 1),
(7270, 7150, 40, 4, 0, 'Spoke to her Over the call, She may suits for E-sales RM profile, Salary Expectation is 15-18k, Immediate Joiner. Let her have a discussion with Sriram once, Let him decide.', 64, '0000-00-00 00:00:00', 1),
(7271, 7142, 59, 5, 0, 'Attitude, Fresher for the recruitment age around 27 yrs,Career Gap,No sustainability in the previous companies.Will not suits to our role', 64, '0000-00-00 00:00:00', 1),
(7272, 7153, 59, 4, 0, 'Communication is Good, Have interest to learn,Can be trained in HR Recruitment.Need to schedule for a virtual interview\n', 64, '0000-00-00 00:00:00', 1),
(7273, 7057, 59, 2, 0, 'Discussed with the candidate, yet to get his documents. Salary Exp is High', 18, '2021-12-17 12:08:22', 1),
(7274, 7161, 59, 2, 0, 'Candidate Communication is Good,Can be trained in the Recruitment,need to check and give his confirmation on the TxxampC\n', 64, '0000-00-00 00:00:00', 1),
(7275, 7137, 59, 5, 0, 'Communication Average, Career Gap,No Relevant Exp ,Sustainability Doubt.Will not handle the pressure\n', 64, '0000-00-00 00:00:00', 1),
(7276, 7150, 18, 7, 4, 'Selected for E Sale RM in hyderabad. Expected salary is 18K Take home and immed joiner', 40, '2021-12-17 01:53:10', 1),
(7277, 7165, 59, 4, 0, 'Communication ok, Have Exp in Sales not exactly in insurance, can be trained. Kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7278, 7153, 72, 1, 0, NULL, 59, '2021-12-17 03:05:55', 1),
(7279, 7075, 59, 3, 0, 'Selected for ESales - Bangalore Location with PT only', 59, '2021-12-17 03:37:12', 1),
(7280, 7120, 59, 3, 0, 'Selected for ESales Rm - Bangalore - PT deduction only', 59, '2021-12-17 03:41:23', 1),
(7281, 7169, 59, 5, 0, 'Communicaiton ok,5050 profile,no relevant Exp,Age around 36 yrs,Sustainability Doubts,2nd round interviewed by Shanmuga K and Rejected', 64, '0000-00-00 00:00:00', 1),
(7282, 7170, 59, 2, 0, 'Candidate is in outside, Need to call tomorrow', 64, '0000-00-00 00:00:00', 1),
(7283, 7165, 80, 4, 3, 'Ji kindly check for for value or not. Myself he Will be work based on financial situation but quality wise he is not ok', 59, '2021-12-17 05:50:09', 1),
(7284, 6736, 59, 5, 0, 'Fresher, Scheduled for a F2F ,but candidate didnt turn', 59, '2021-12-17 05:57:33', 1),
(7285, 7156, 59, 4, 0, 'Not suitable for ESales, have Much Exp in Non Voice and Voice process Too, Pressure handling doubts, also have a thought on candidate learning, Kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7286, 3212, 59, 5, 0, 'have 4 months of Sales Exp, Career Gap, Can be trained for Relationship manager. Scheduled with GK sir for the 2nd level, but the candidate left without attending the interview', 64, '0000-00-00 00:00:00', 1),
(7287, 7183, 59, 3, 0, 'Selected for RM - with PF/PT Deductions', 64, '0000-00-00 00:00:00', 1),
(7288, 7160, 59, 5, 0, 'Communication Ok, Candidate seems to be slow, sustainability and pressure holding Doubt ', 64, '0000-00-00 00:00:00', 1),
(7289, 7184, 59, 5, 0, 'No Clarity on her interest towards the profile. Have a thought of doing B.L.Much preferes to go in Non voice, Will not sustain and handle the pressure Doubts', 64, '0000-00-00 00:00:00', 1),
(7290, 7185, 59, 4, 0, 'Communication is Good, Fresher for Digital Marketing, Can be trained, Currently Serving Notice, Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7291, 7181, 59, 2, 0, 'Communication ok, Open for Elite position, need to schedule the candidate for F2F and then we can decide the profile', 60, '0000-00-00 00:00:00', 1),
(7292, 7186, 59, 5, 0, 'Have Exp in Loan Collections, Not Comfortable to travel due to his health conditions, Will not Sustain for a long', 64, '0000-00-00 00:00:00', 1),
(7293, 7185, 69, 5, 0, 'Candidate did not turn up for the final round\n', 59, '2021-12-18 04:06:14', 1),
(7294, 7183, 31, 4, 4, 'candidate okay forwarded to gaurav for finalise', 59, '2021-12-18 04:12:21', 1),
(7295, 7156, 53, 5, 0, 'She is looking non voice process', 59, '2021-12-18 04:17:27', 1),
(7296, 7158, 59, 5, 0, 'Fresher,No native language,candidate is from Andaman,Salary Exp is high.Not suitable ', 64, '0000-00-00 00:00:00', 1),
(7297, 7188, 40, 5, 0, 'Not fit for the profile', 64, '0000-00-00 00:00:00', 1),
(7298, 7138, 59, 4, 0, 'Fresher for PHP,Can be trained ,kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7299, 7200, 59, 5, 0, 'Communication ok, no relevant Exp, Will not sustain in Insurance Sales.', 64, '0000-00-00 00:00:00', 1),
(7300, 7199, 59, 5, 0, 'Preferred to work in Non Voice process', 64, '0000-00-00 00:00:00', 1),
(7301, 7131, 59, 5, 0, 'Fresher for React, have Exp in graphic Designing not in depth. Looking for opportunities in IT, But no basic skill knowledge. If he come back let us decide ', 64, '0000-00-00 00:00:00', 1),
(7302, 7201, 59, 2, 0, 'Communication ok, Have Exp in Telecalling but not in Sales. She need time to give her confirmation ', 64, '0000-00-00 00:00:00', 1),
(7303, 7187, 59, 5, 0, 'Attitude,Too long distance,Communication,Sustainability Doubts.In  internship with the company and his expectation is also high.', 64, '0000-00-00 00:00:00', 1),
(7304, 7172, 59, 2, 0, 'Communication ok,can be trained in HR,Will come back with her confirmation on the TxxampC', 64, '0000-00-00 00:00:00', 1),
(7305, 7092, 59, 2, 0, 'Communication ok,can be trained in HR Recruitment,Will come back with his confirmation on the TxxampC', 64, '0000-00-00 00:00:00', 1),
(7306, 7183, 29, 7, 2, 'Selected for RM, GK team', 31, '2021-12-20 03:47:54', 1),
(7307, 7105, 59, 5, 0, 'Looking for Retail Sales only.Will not sustain', 60, '0000-00-00 00:00:00', 1),
(7308, 7206, 59, 5, 0, 'No Sustainability in the previous Exp,Attitude,will not sustain,handling pressure No.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7309, 7202, 59, 4, 0, 'Have Agency Manager Exp in Bharati Axa,Communication ok,Kindly check and let me know your  inputs', 60, '0000-00-00 00:00:00', 1),
(7310, 7202, 31, 5, 0, 'not fit for sales profile', 59, '2021-12-20 05:17:51', 1),
(7311, 7138, 27, 5, 0, 'No Response.', 59, '2021-12-20 05:24:23', 1),
(7312, 7181, 59, 5, 0, 'Received a message from candidate that she got another offer', 59, '2021-12-20 05:27:02', 1),
(7313, 6797, 59, 5, 0, ' the candidate is expecting the high Pay than we suggested. Dropped', 59, '2021-12-20 05:32:21', 1),
(7314, 6985, 59, 5, 0, 'Exp and Not much Comfort on TxxampC,Dropped  ', 59, '2021-12-20 05:33:31', 1),
(7315, 7203, 59, 4, 0, '5050 Profile,No Exp Fresher for Sales,Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7316, 7203, 56, 5, 0, 'did not come for interview', 59, '2021-12-20 05:36:47', 1),
(7317, 7183, 59, 3, 0, 'Selected for RM - with PF/PT Deductions', 29, '2021-12-20 06:28:13', 1),
(7318, 7150, 59, 3, 0, 'Selected for ESales Hyderabad with PT Only\n', 18, '2021-12-20 07:05:54', 1),
(7319, 7198, 39, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7320, 7204, 59, 5, 0, 'Communication Average, Few months Exp in Recruitment, Handling pressure Doubts.Sustainability Doubts in our role', 64, '0000-00-00 00:00:00', 1),
(7321, 7214, 59, 3, 0, 'Selected for Sarath Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(7322, 7208, 59, 5, 0, 'Communication Average, Will not handle the pressure, Sustainability Doubts .Not suitable', 64, '0000-00-00 00:00:00', 1),
(7323, 7166, 59, 2, 0, 'Communication ok,Have Few months Exp in Recruitment,But sustainability douobts with respect to her age,but can give a try for recruitment', 64, '0000-00-00 00:00:00', 1),
(7324, 7216, 59, 3, 0, 'Selected for Raj Kumar Team - Relationship Manager with PF/PT', 64, '0000-00-00 00:00:00', 1),
(7325, 7218, 59, 5, 0, 'No sustainability in the previous Exp, Attitude, Looking only on the monetory growth .Will not sustain', 60, '0000-00-00 00:00:00', 1),
(7326, 7212, 59, 3, 0, 'Selected for Pandian Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(7327, 7211, 59, 5, 0, 'Looking for Non voice process only', 60, '0000-00-00 00:00:00', 1),
(7328, 7193, 59, 5, 0, 'No Communication no basic knowledge,Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(7329, 7212, 80, 7, 4, 'Good Guy will be continue atleast 2 years', 59, '2021-12-21 04:27:00', 1),
(7330, 7214, 51, 7, 0, 'selected', 59, '2021-12-21 04:28:24', 1),
(7331, 7216, 33, 4, 0, 'Candidate has no telecalling experience having cold call experience and field work please cross check his sustainability and fix salary upto 22 k per Month take home', 59, '2021-12-21 04:43:21', 1),
(7332, 7205, 59, 5, 0, 'No Communication, have exp as coordinator in the recruitment process.Will not sustain in our roles', 64, '0000-00-00 00:00:00', 1),
(7333, 7215, 59, 5, 0, 'Fresher for Recruitment,Focus much in Aviation,for time being looking for other opportunities', 64, '0000-00-00 00:00:00', 1),
(7334, 7221, 59, 2, 0, 'Fresher for HR Recruitment, communication ok can be trained currently working and the LWD is Jan 31st', 64, '0000-00-00 00:00:00', 1),
(7335, 7223, 59, 5, 0, 'Looking for Logistics opportunites,Travelling to UK in the month of Aug 2022..Will not sustain and not interested for Insurance Sales', 64, '0000-00-00 00:00:00', 1),
(7336, 7224, 59, 4, 0, '5050 profile no relevant Insurance Sales but have Exp in Sales. Check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7337, 7219, 59, 5, 0, 'Sounds very low and too long distance around 60 kms,will not sustain', 64, '0000-00-00 00:00:00', 1),
(7338, 7227, 59, 4, 0, 'Communication ok no Exp in Insurance Sales,can be trained 5050 profile, kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7339, 7226, 59, 5, 0, 'Not much comfortable with taking calls, will not sustain in the field', 64, '0000-00-00 00:00:00', 1),
(7340, 7230, 59, 5, 0, 'Looking for positions without target,much focus on the office timings.Will not handle the pressure .Not suitable', 64, '0000-00-00 00:00:00', 1),
(7341, 7228, 59, 5, 0, 'no communication,Not open for Voice process,looking for Accounting positions only.No clarity in the speech', 64, '0000-00-00 00:00:00', 1),
(7342, 7233, 59, 5, 0, 'Have Internshi[ Exp in Muthoot,No bike ,Too long Distance up and down 40 kms and the Salary Expectation is high', 64, '0000-00-00 00:00:00', 1),
(7343, 7212, 18, 7, 4, 'Selected for Pandi Team. Informed arun to discuss the Package', 80, '2021-12-22 03:45:44', 1),
(7344, 7165, 18, 8, 0, 'Need to Reschedule', 80, '2021-12-22 03:49:12', 1),
(7345, 7235, 59, 5, 0, 'Communication ok have exp as ESales RM in ICICI bank,Looking for opportunities in CRM/Esales but the salary Exp is very High.Around 23-25K she expects.Need time to confirm her interest', 64, '0000-00-00 00:00:00', 1),
(7346, 7224, 80, 5, 0, 'Candidate didnt came for the final round', 59, '2021-12-22 05:12:20', 1),
(7347, 7227, 31, 5, 0, 'not fit for this profile\n', 59, '2021-12-22 05:14:58', 1),
(7348, 7035, 59, 5, 0, 'Fresher For Telecaller-Esales,Sustainability Doubts,She Recently Married,Not Comfort To Travel From Her Location To Madiwalla, Didnt come back with her interest', 59, '2021-12-22 05:18:30', 1),
(7349, 7225, 59, 2, 0, 'Discussed with the candidate,need to come for F2F\n', 60, '0000-00-00 00:00:00', 1),
(7350, 7238, 59, 5, 0, 'Looking much for non  Voice process only,will not sustain', 64, '0000-00-00 00:00:00', 1),
(7351, 7241, 59, 5, 0, 'Looking for Non Voice Process only ', 64, '0000-00-00 00:00:00', 1),
(7352, 7213, 59, 5, 0, 'He is open for the Non Voice Process only', 64, '0000-00-00 00:00:00', 1),
(7353, 7244, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 64, '0000-00-00 00:00:00', 1),
(7354, 7245, 59, 5, 0, 'Looking much for Non Voice Process, Not open up will not handle the pressure', 64, '0000-00-00 00:00:00', 1),
(7355, 7246, 59, 4, 0, 'High Exp profile age around 31 yrs, internal reference, kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7356, 7243, 59, 4, 0, '5050  profile  have Exp in Telecaller for ! yr postpaid Collection,kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7357, 7104, 59, 3, 0, 'Selected for CRm Role  - Banu Team in  consultant Role', 64, '0000-00-00 00:00:00', 1),
(7358, 7237, 59, 5, 0, 'Candidate is very slow,No Communication ,looking only for the salary,Will not sustain', 64, '0000-00-00 00:00:00', 1),
(7359, 7236, 40, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7360, 7247, 59, 3, 0, 'Selected for Ravi Team with PF/ESI/PT', 64, '0000-00-00 00:00:00', 1),
(7361, 7229, 59, 5, 0, 'Prefer to work in logistics,since no opportunities joined HR Recruitment before 20 days and looking for another as there is issue inthe management,SAlary Exp is very high being a fresher', 64, '0000-00-00 00:00:00', 1),
(7362, 7248, 59, 5, 0, 'Very slow,Will not handle the pressure,Sustainability Doubts', 64, '0000-00-00 00:00:00', 1),
(7363, 7240, 73, 5, 0, 'rejected', 50, '0000-00-00 00:00:00', 1),
(7364, 7249, 59, 2, 0, 'Will come tomorrow with the task for Voice Process  - Banu\n', 64, '0000-00-00 00:00:00', 1),
(7365, 7104, 53, 7, 0, 'Selected for portfolio, DOJ 27th dec, sal 10.5k , She is ok with 1yr Agreement', 59, '2021-12-23 05:50:27', 1),
(7366, 7243, 11, 1, 0, NULL, 59, '2021-12-23 05:57:11', 1),
(7367, 7244, 57, 4, 3, 'Candidate is ok kindly confirm the salary and joining date ', 59, '2021-12-23 05:58:02', 1),
(7368, 7246, 80, 5, 0, 'Age criteria not met', 59, '2021-12-23 05:59:04', 1),
(7369, 7239, 59, 5, 0, 'Looking for non voice process only', 60, '0000-00-00 00:00:00', 1),
(7370, 7247, 82, 7, 0, 'shortlisted kindly finalise the salary package.', 59, '2021-12-23 06:12:13', 1),
(7371, 7225, 59, 5, 0, 'Will not sustain,Salary Exp is Very High', 59, '2021-12-23 06:12:44', 1),
(7372, 7244, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2021-12-23 06:19:38', 1),
(7373, 7214, 29, 7, 2, 'Selected for RM, Sarath Team', 51, '2021-12-23 06:20:29', 1),
(7374, 7216, 18, 7, 0, 'Selected for Raj Team Sopken 3L package Ready to Join on 27th', 33, '2021-12-23 06:29:57', 1),
(7375, 7251, 59, 5, 0, 'No Communication,Sustainability Doubts ,not suitable for our recruitment Roles', 64, '0000-00-00 00:00:00', 1),
(7376, 7252, 59, 5, 0, 'No communication Career Gap,Will not handle the pressure and sustainability Doubts', 64, '0000-00-00 00:00:00', 1),
(7377, 7104, 59, 3, 0, 'Selected for CRm Role  - Banu Team in  consultant Role', 53, '2021-12-24 12:00:27', 1),
(7378, 7247, 59, 3, 0, 'Selected for Ravi Team with PF/ESI/PT', 82, '2021-12-24 12:45:57', 1),
(7379, 7178, 59, 5, 0, 'Left without attending the interview', 64, '0000-00-00 00:00:00', 1),
(7380, 7264, 59, 5, 0, 'No Local Communication, have Exp in Sales Worked in UAE for a long, Will not sustain if he gets opportunity may leave ', 64, '0000-00-00 00:00:00', 1),
(7381, 7262, 59, 3, 0, 'Selected for Banu CRM Role  - 5% TDS', 60, '0000-00-00 00:00:00', 1),
(7382, 7262, 53, 7, 0, 'Selected for Portfolio team, 10.5k sal. ', 59, '2021-12-24 01:39:51', 1),
(7383, 7221, 59, 3, 0, 'Will come and join after pongal - IJOBS', 59, '2021-12-24 02:23:22', 1),
(7384, 7257, 59, 5, 0, 'Have Exp in Loan Sales,Handling Pressure Doubt,Sustainability doubts,Salary Exp is also high', 60, '0000-00-00 00:00:00', 1),
(7385, 7258, 59, 5, 0, 'Candidate Didnxquott come back with her confirmation in the time she requested', 60, '0000-00-00 00:00:00', 1),
(7386, 7258, 53, 7, 0, 'Selected 12k,  she need to discus sal with his family then she ll cnfrm', 59, '2021-12-24 02:44:36', 1),
(7387, 7262, 59, 3, 0, 'Selected for Banu CRM Role  - 5% TDS', 53, '2021-12-24 03:38:25', 1),
(7388, 7258, 59, 5, 0, 'Candidate Didnxquott come back with her confirmation in the time she requested', 53, '2021-12-24 03:39:47', 1),
(7389, 7214, 59, 3, 0, 'Selected for Sarath Team with PF/ESI/PT', 29, '2021-12-24 04:05:22', 1),
(7390, 7263, 59, 5, 0, 'Not open Up Will not suits in our role', 60, '0000-00-00 00:00:00', 1),
(7391, 7255, 30, 4, 0, 'Candidate selected and confirm the package and joining date', 50, '0000-00-00 00:00:00', 1),
(7392, 7253, 30, 5, 0, 'Due to high package,  not experience related our profile', 50, '0000-00-00 00:00:00', 1),
(7393, 7255, 59, 3, 0, 'Selected for esales bangalore - PF/ESI/PT - Patroniss Staff', 30, '2021-12-25 01:10:55', 1),
(7394, 7266, 59, 5, 0, 'Average communication,not interested in telesales looking for opportunities in finance accounts background only.Understanding capacity s poor will not sustain in our roles', 50, '0000-00-00 00:00:00', 1),
(7395, 7268, 40, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7396, 7267, 40, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7397, 7271, 59, 3, 0, 'Selected for Ravi Team with PF/ESI/PT', 64, '0000-00-00 00:00:00', 1),
(7398, 7275, 59, 5, 0, 'Communication ok,no ideas in the recruitment,have interest towards the business onlyalso too long distance,will not sustain for a long', 64, '0000-00-00 00:00:00', 1),
(7399, 7274, 59, 4, 0, '5050 Profile no relevant Exp can be trained,kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7400, 7273, 59, 3, 0, 'Selected for Banu Team  - B2B - 5% TDS Deduction 12K TH', 60, '0000-00-00 00:00:00', 1),
(7401, 7283, 59, 4, 0, 'No Relevant Exp, need is there, kindly check and let me know your inputs,5050 Profile', 64, '0000-00-00 00:00:00', 1),
(7402, 7254, 59, 7, 0, 'Selected for Recruiter Role with TH 12K xxamp208 PT', 64, '0000-00-00 00:00:00', 1),
(7403, 7271, 82, 4, 0, 'shortlisted, Kindly discuss salary package.', 59, '2021-12-27 03:44:42', 1),
(7404, 7271, 59, 3, 0, 'Selected for Ravi Team with PF/ESI/PT', 82, '2021-12-27 03:49:00', 1),
(7405, 7212, 59, 3, 0, 'Selected for Pandian Team with PF/PT', 18, '2021-12-27 05:12:06', 1),
(7406, 7216, 59, 3, 0, 'Selected for Raj Kumar Team - Relationship Manager with PF/PT', 18, '2021-12-27 05:13:47', 1),
(7407, 7287, 59, 4, 0, 'Selected for MF long back and the profile on hold, now he appears for the RM profile, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7408, 7015, 59, 5, 0, 'Appeared for an Interview and the salary Exp is very High,Not open for Field Sales looking only for Telecaller roles', 59, '2021-12-27 05:46:01', 1),
(7409, 7280, 59, 5, 0, 'Distance up and Down 42 kms,have Exp in Loan Sales for 3 months and the Exp is High not open for Field Sales too\n', 60, '0000-00-00 00:00:00', 1),
(7410, 7279, 59, 5, 0, 'Preparing for the Exams, have Exp in Loan Collections for 3 months, Exp is around 13,but not open for Field Sales. Sustaianability Doubts', 60, '0000-00-00 00:00:00', 1),
(7411, 7272, 59, 5, 0, 'He is preparing for the NET/PHD exams, just for the time to learn he is looking for the opportunities, will not sustain  for a long', 60, '0000-00-00 00:00:00', 1),
(7412, 7281, 59, 5, 0, 'Fresher much comfort to work in Non Voice Process Only, Came for the interview as a group, Sustainability Doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(7413, 7254, 72, 1, 0, NULL, 59, '2021-12-27 07:28:01', 1),
(7414, 7273, 53, 7, 0, 'selected for B2B. 12k take home', 59, '2021-12-27 07:43:07', 1),
(7415, 7274, 80, 5, 0, 'We discussed Package but person not accept ', 59, '2021-12-27 07:43:47', 1),
(7416, 7283, 14, 5, 0, 'not suitable for this profile', 59, '2021-12-27 07:46:30', 1),
(7417, 7287, 44, 1, 0, NULL, 59, '2021-12-27 07:48:41', 1),
(7418, 7273, 59, 3, 0, 'Selected for Banu Team  - B2B - 5% TDS Deduction 12K TH', 53, '2021-12-28 10:19:58', 1),
(7419, 7265, 40, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7420, 7276, 73, 5, 0, 'Already experienced with other field. exp salary 15k . not need for job highly doubt for sustainability.  drop the candidate.', 50, '0000-00-00 00:00:00', 1),
(7421, 7277, 73, 5, 0, 'looking for non voice , not handle to pressure handling. so drop.', 50, '0000-00-00 00:00:00', 1),
(7422, 7295, 59, 5, 0, 'Dropped, She got another offer. Will not join us ', 50, '0000-00-00 00:00:00', 1),
(7423, 7290, 59, 5, 0, 'Fresher No Basic knowledge in Recruitment,Handling Pressure and Sustainability Doubts not much comfort on the distance\n', 64, '0000-00-00 00:00:00', 1),
(7424, 7298, 59, 5, 0, 'Fresher,having interest in Non Voice process,location distance around 36 up and down no bike will not sustain ', 60, '0000-00-00 00:00:00', 1),
(7425, 7299, 59, 5, 0, 'Fresher fir Sales,Career Gap,Came along with his friend.Looking for opportunites in the non voice process only.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7426, 7291, 59, 5, 0, 'Attitude,High CTC Expectation,Not open for Field Sales too,Pressure handling doubt', 60, '0000-00-00 00:00:00', 1),
(7427, 7297, 59, 5, 0, 'Have Exp in AR Caller not open for fieldsales,Salary Exp is more than 17K,Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7428, 7303, 59, 5, 0, 'Worked in different domain,but no sustainability in the previous exp,Pressure handling Doubt and will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7429, 7301, 59, 5, 0, 'Looking for Chat process only not much open up ,pressure handling no,Not suitable', 60, '0000-00-00 00:00:00', 1),
(7430, 7302, 59, 5, 0, 'Career Gap Fresher for Sales, Looking for opportunities in Testing Profiles for time being looking for other opportunities. Will not Sustain', 60, '0000-00-00 00:00:00', 1),
(7431, 7295, 53, 7, 0, 'shortlisted. she ll cnfrm before 5.30 12k salary', 59, '2021-12-28 02:36:24', 1),
(7432, 7293, 59, 2, 0, 'Discussed with the candidate, she is ready to relocate, Fresher for Telecaller Sales Career Gap can be trained, schedule her for a F2F on Monday(03-Jan-2022)', 60, '0000-00-00 00:00:00', 1),
(7433, 7057, 59, 3, 0, 'Selected for Veben, Discussed with Sriram Sir and Finalized the pay for 3.6LPA', 59, '2021-12-28 04:34:40', 1),
(7434, 7295, 59, 5, 0, 'Dropped, She got another offer. Will not join us ', 53, '2021-12-28 04:53:31', 1),
(7435, 7282, 59, 5, 0, 'Candidate is looking for Core production opportunities only. Not interested in Telecaller/RE/RM Sales positions', 60, '0000-00-00 00:00:00', 1),
(7436, 7318, 59, 4, 0, 'Communication is Good,Not yet completed his graduation,can be trained in our sales,have a year Exp in Telecaller, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7437, 7318, 16, 5, 0, 'document fake', 59, '2021-12-28 07:02:43', 1),
(7438, 7304, 40, 4, 0, 'Selected, Communication is good, immediate joiner but sustainability is doubtful,\nlet Sriram take a call', 64, '0000-00-00 00:00:00', 1),
(7439, 7304, 18, 8, 0, 'Not Attended', 40, '2021-12-29 11:40:39', 1),
(7440, 7320, 74, 5, 0, 'due to lag of self confident fully pampering girl damn sure not fit for telesales no mobile and laptop no exposure salary expectation is high', 50, '0000-00-00 00:00:00', 1),
(7441, 7327, 59, 4, 0, '5050 profile,internal team reference,5 months in 2 companies,kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7442, 7294, 59, 5, 0, 'Sounds Low will not handle the job pressure and sustainability Doubts.Not suitable', 64, '0000-00-00 00:00:00', 1),
(7443, 7308, 59, 5, 0, 'Communication was good ,No relevant Sales Exp much into Non Voice,Scheduled for 2nd Round with Karthika for ESales post lunch but she left without attending', 64, '0000-00-00 00:00:00', 1),
(7444, 7325, 59, 5, 0, 'Not interested in Voice process looking for Opportunities Networking IT profile, For time being looking for Job', 60, '0000-00-00 00:00:00', 1),
(7445, 7319, 59, 5, 0, 'Candidate prefers to work in Networking profile,looking for time being opportunites attended few networking interview,Will not sustain in our role.If he get any networking profile will move.If he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(7446, 7322, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT deductions - Arumbakkam Location', 60, '0000-00-00 00:00:00', 1),
(7447, 7328, 59, 5, 0, 'Interested to work in nonvoice process only. Not open for Field Sales too if we try him based on the salary Expectation', 60, '0000-00-00 00:00:00', 1),
(7448, 7329, 59, 5, 0, 'Not open to work in Targets and pressure handling no will not sustain', 60, '0000-00-00 00:00:00', 1),
(7449, 7288, 40, 5, 0, 'Candidate will not sustain for long and not fit for the profile', 64, '0000-00-00 00:00:00', 1),
(7450, 7313, 40, 8, 0, 'Interview not attended', 64, '0000-00-00 00:00:00', 1),
(7451, 7270, 59, 5, 0, 'Have 6 months Exp in Recruitment, Career Gap due to marriage.Handling pressure Doubt,will not handle our pressure.She requested to confirm on the TxxampC If she comes back let us see', 64, '0000-00-00 00:00:00', 1),
(7452, 7317, 59, 5, 0, 'Fresher for Recruitment, Salary Exp is very high, will not sustain with us. Not suitable', 64, '0000-00-00 00:00:00', 1),
(7453, 7322, 24, 7, 0, 'candidate selected', 59, '2021-12-29 02:38:17', 1),
(7454, 7327, 53, 5, 0, 'Looking Non voice process', 59, '2021-12-29 02:41:42', 1),
(7455, 7296, 59, 5, 0, 'No Communication ,no basic understandings on the positions.Not suitable', 64, '0000-00-00 00:00:00', 1),
(7456, 7322, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT deductions - Arumbakkam Location', 24, '2021-12-29 04:46:43', 1),
(7457, 7323, 40, 7, 0, 'Fit for our profile but salary part need negotiate can give upto 22k per month take home', 64, '0000-00-00 00:00:00', 1),
(7458, 7338, 73, 7, 0, 'selected but need to check sustainability only. ', 60, '0000-00-00 00:00:00', 1),
(7459, 7339, 59, 3, 0, 'Selected for Priyanka Jenit Team in Consultant 5%', 60, '0000-00-00 00:00:00', 1),
(7460, 7337, 73, 7, 0, 'Selected, salary 10.5k fixed. confirm joinnig date  . Parents Passed away. he only take care of self .', 50, '0000-00-00 00:00:00', 1),
(7461, 7335, 74, 5, 0, 'not fit for telesales financial crisis but he is not attend the interview that much better and not answering any question vioice is not fluence', 50, '0000-00-00 00:00:00', 1),
(7462, 7336, 74, 7, 3, 'completed to major degree voice clarity anf fluency is very good and suite for telesales expected salary 10k kindly confirm once have laptop two brother first brother age 30 so he is the first person for marriage.....father and another brother unemployed....rental house only so highly job need fresher', 50, '0000-00-00 00:00:00', 1),
(7463, 7342, 59, 5, 0, 'Fresher for Telecaller Field Sales have Exp in Store Sales and looking only for opportunities inside the office. Salary Exp is also high,Time being only he is looking for openings,He specifically trying for opportunites in Anchor roles ,he already attended some interview related to anchor openings,Will not sustain for a long. Not Suitable', 60, '0000-00-00 00:00:00', 1),
(7464, 7339, 53, 7, 0, 'selected for priyanka team sal 10k pls cnfrm DOJ', 59, '2021-12-30 02:29:11', 1),
(7465, 7311, 40, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7466, 7315, 40, 8, 0, 'Not attended the interview', 64, '0000-00-00 00:00:00', 1),
(7467, 7332, 40, 8, 0, 'Not attended', 64, '0000-00-00 00:00:00', 1),
(7468, 7338, 59, 5, 0, 'Candidate prefer much towards the Non Voice process,for time being she looks for this.Looking for the opportunities near to her home only.Will not sustain for a long.will not handle the pressure', 73, '2021-12-30 02:59:05', 1),
(7469, 7337, 59, 2, 0, 'discussed with the candidate, yet to get his confirmation on the salary proposed', 73, '2021-12-30 03:03:00', 1),
(7470, 7336, 59, 2, 0, 'RNR', 74, '2021-12-30 03:13:21', 1),
(7471, 7346, 73, 4, 0, 'ok but fully intrested for cini field. so check sustainability. sal 10k ', 60, '0000-00-00 00:00:00', 1),
(7472, 7346, 59, 2, 0, 'Discussed with the candidate,sustainability doubts a lot on this profile, no proper communication. need to check again with the candidate tomorrow and update the status', 73, '2021-12-30 03:36:00', 1),
(7473, 4861, 13, 5, 0, 'already  joined Thanjavur Team', 13, '2021-12-30 04:39:12', 1),
(7474, 4860, 13, 5, 0, 'Lockdown Period Hold Long Pending ', 13, '2021-12-30 04:41:55', 1),
(7475, 7348, 59, 4, 0, '5050 Profile,Frequent job Changer,4 months 4 companies,Sustaianability Doubts on this profile,but speaking, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7476, 7345, 59, 4, 0, 'Only 3 months Exp in Telecaller,Career Gap Sports Player and coach 5050 profile sustainability Doubts, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7477, 7345, 53, 5, 0, 'Sports player not suit for telecalling', 59, '2021-12-30 05:25:50', 1),
(7478, 7348, 14, 5, 1, 'Not suitable for this profile', 59, '2021-12-30 05:27:35', 1),
(7479, 7339, 59, 3, 0, 'Selected for Priyanka Jenit Team in Consultant 5%', 53, '2021-12-30 06:45:31', 1),
(7480, 7333, 59, 5, 0, 'Communication Ok, Fresher Have a Month Internship Exp, Salary Exp Is negotable, Sustainability Doubts as he is already running his own online business.', 64, '0000-00-00 00:00:00', 1),
(7481, 7330, 59, 5, 0, 'Communication ok,fresher have 2 months internship exp,Salary Exp is very high,Sustainability Doubts', 64, '0000-00-00 00:00:00', 1),
(7482, 7343, 59, 2, 0, 'Communication is Good,have interest towards Recruitment,can be trained,will schedule for final round with Gokul', 64, '0000-00-00 00:00:00', 1),
(7483, 7350, 59, 5, 0, 'Fresher for Sales,Have interest towards Non Voice xxamp IT Testinf positions,not open on saturdays to work,will not sustain in our roles', 64, '0000-00-00 00:00:00', 1),
(7484, 7349, 59, 2, 0, 'Communication is Good,Fresher for Recruitment,can be trained,Will schedule the candidate for final round with Gokul and decide', 64, '0000-00-00 00:00:00', 1),
(7485, 7352, 59, 5, 0, 'No relevant Exp looking much for opportunites in Non Voice,will not sustain in our role', 64, '0000-00-00 00:00:00', 1),
(7486, 7355, 59, 5, 0, 'Not interested in Voice process,Looking for design oriented positions,too long distance', 64, '0000-00-00 00:00:00', 1),
(7487, 7353, 59, 3, 0, 'selected for Muthu Team in Consultant 5% TDS role', 64, '0000-00-00 00:00:00', 1),
(7488, 7356, 59, 5, 0, 'Too long distance not ready to relocate, Much prefer to work in non voice process', 64, '0000-00-00 00:00:00', 1),
(7489, 7357, 74, 5, 0, 'highly job need 6 months experience but high salary expectation and attitude is very poor not fit for team over attitude person', 50, '0000-00-00 00:00:00', 1),
(7490, 7354, 74, 5, 0, 'family financial crisis but very lazy not a talk active person and poor performance in interview..not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(7491, 7344, 59, 5, 0, 'Communication Average,no convincing,Much comfort to work in Non Voice,already her sister is working in non voice only.For time being looking for Voice process.Will not sustain', 50, '0000-00-00 00:00:00', 1),
(7492, 7353, 13, 7, 5, 'ok  12k salary,Monday Joining', 59, '2021-12-31 02:35:42', 1),
(7493, 7353, 59, 3, 0, 'selected for Muthu Team in Consultant 5% TDS role', 13, '2021-12-31 02:39:16', 1),
(7494, 7249, 59, 5, 0, 'Dropped - Candidate didnt turn with his response', 59, '2021-12-31 03:20:08', 1),
(7495, 7146, 59, 5, 0, 'Dropped.Candidate got another offer', 59, '2021-12-31 03:21:14', 1),
(7496, 7361, 74, 7, 0, 'she is very talk active voice fluency is good fresher but sales course completed ....so very talk active and fit for sales ....salary 10 k have laptop joining on 3 jan....father passed away and mother only financial crises very poor family kindly confirm once', 50, '0000-00-00 00:00:00', 1),
(7497, 7234, 59, 2, 0, 'Frequent Job changes,ready to sign the SA,also sustainability Doubts,Will come for final round by monday', 64, '0000-00-00 00:00:00', 1),
(7498, 7362, 74, 5, 0, 'fresher in field not talk active and not fit for telesales....salary highly expected need a job like part time ', 50, '0000-00-00 00:00:00', 1),
(7499, 7361, 59, 3, 0, 'Selected for Sithy Team - Elite RE - Thanjavur location', 74, '2021-12-31 06:14:19', 1),
(7500, 7220, 59, 2, 0, 'Communication Is Good,Have Internship Exp In Recruitment,Can Be Trained - 2nd Round Interviewed By Gokul And The Candidate Will Give Her Confirmation After Internship Get Completed', 64, '0000-00-00 00:00:00', 1),
(7501, 7351, 59, 5, 0, 'Seems to be clow and too long distance around 72kms up and down, will not sustain and handling pressure doubtful', 64, '0000-00-00 00:00:00', 1),
(7502, 7363, 59, 4, 0, '5050 Profile,very Average profile,need to train a lot, kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7503, 7360, 59, 5, 0, 'Communication is Good ,Have Exp in Internship ,but the salary exp is very high,min exp is 25K will not come down', 64, '0000-00-00 00:00:00', 1),
(7504, 7365, 59, 3, 0, 'Selected for Pandian Team with PF/PT Deductions', 50, '0000-00-00 00:00:00', 1),
(7505, 7364, 59, 5, 0, 'No communication,sustainability Doubts,Not suitable', 64, '0000-00-00 00:00:00', 1),
(7506, 7368, 59, 5, 0, 'No communication,will not handle the pressure and sustainability doubts', 64, '0000-00-00 00:00:00', 1),
(7507, 7366, 73, 4, 0, 'Highly need to job, but pronounce  very low.  need to check pronounce . no laptop exp salary 10k. immediate joining.', 60, '0000-00-00 00:00:00', 1),
(7508, 7366, 59, 2, 0, 'Dhanalakshmi have given some task, candidate should come back with the task tomorrow', 73, '2022-01-03 03:05:25', 1),
(7509, 7323, 59, 2, 0, 'Discussed, candidate will share the documents once received will review and finalise', 40, '2022-01-03 04:15:37', 1),
(7510, 7369, 39, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(7511, 7363, 13, 5, 2, 'not fit for telesales', 59, '2022-01-03 05:16:55', 1),
(7512, 7365, 80, 7, 4, 'Good Guy. He will join Tomorrow ', 59, '2022-01-03 05:18:51', 1),
(7513, 7349, 59, 3, 0, 'Selected for Recruitment Role with Stipend 7500 PM for 3 months post internship salary will be confirmed min 12K TH', 59, '2022-01-03 05:24:45', 1),
(7514, 7337, 59, 3, 0, 'Selected for  Tiruvallur Location in Consultant 5% TDS\n', 59, '2022-01-03 05:28:03', 1),
(7515, 7365, 59, 3, 0, 'Selected for Pandian Team with PF/PT Deductions', 80, '2022-01-04 11:59:33', 1),
(7516, 7367, 59, 5, 0, 'Communication No,REcently married,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7517, 7381, 59, 5, 0, 'Salary Exp Is Very High,Came For Interview As A Group,Will Not Join If Others Didnt Get Opportunity.Not Open For Field Sales Too Compare To The Salary Exp', 60, '0000-00-00 00:00:00', 1),
(7518, 7382, 73, 5, 0, 'Job no need,  Parents not accept to job so rejected. ', 60, '0000-00-00 00:00:00', 1),
(7519, 7385, 73, 5, 0, 'He is looking for non Voice xxamp trying job IT field. Sustainability is highly doubt. So Rejected. ', 60, '0000-00-00 00:00:00', 1),
(7520, 7386, 59, 3, 0, 'Selected for Sarath Team,Gaurav have given a commitment on salary revisal based on the Target achievement of 2L each for 2 months with 15%', 60, '0000-00-00 00:00:00', 1),
(7521, 7388, 59, 5, 0, 'Dropped she didnt turn as her friend got rejected in the interview', 60, '0000-00-00 00:00:00', 1),
(7522, 7389, 59, 4, 0, 'Have Telecaller Exp in Starhealth,can give a try, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7523, 7387, 59, 5, 0, 'no communication, have B2B sales only, will not sustain for a long.', 60, '0000-00-00 00:00:00', 1),
(7524, 7377, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(7525, 7380, 59, 5, 0, 'Salary Exp Is Very High,Came For Interview As A Group,Will Not Join If Others Didnt Get Opportunity.Not Open For Field Sales Too Compare To The Salary Exp', 60, '0000-00-00 00:00:00', 1),
(7526, 7378, 59, 5, 0, 'Salary Exp Is Very High,Came For Interview As A Group,Will Not Join If Others Didnt Get Opportunity.Not Open For Field Sales Too Compare To The Salary Exp', 60, '0000-00-00 00:00:00', 1),
(7527, 7375, 59, 5, 0, 'No communication will not sustain not suitable ', 60, '0000-00-00 00:00:00', 1),
(7528, 7379, 59, 5, 0, 'Have a part time job as karate Coach,Salary Exp is very high,not suitable for CRM', 60, '0000-00-00 00:00:00', 1),
(7529, 7384, 59, 5, 0, 'Have Non Voice Exp ,no communication, looking only for non voice process', 60, '0000-00-00 00:00:00', 1),
(7530, 7377, 57, 4, 0, 'candidate ok confirm the joining date and salary', 59, '2022-01-04 06:25:46', 1),
(7531, 7386, 51, 4, 0, 'OK', 59, '2022-01-04 06:30:10', 1),
(7532, 7389, 13, 5, 2, 'not fit for telesales', 59, '2022-01-04 06:46:34', 1),
(7533, 7388, 13, 7, 4, 'ok ,11k salary but  not joined', 59, '2022-01-04 06:46:49', 1),
(7534, 7323, 59, 3, 0, 'Selected for Veben Team in PF/PT deductions', 59, '2022-01-05 01:42:05', 1),
(7535, 7376, 59, 5, 0, 'Communication Average,No confidence,handling Pressure Doubts will not sustain', 60, '0000-00-00 00:00:00', 1),
(7536, 7397, 59, 5, 0, 'Too Long Distance Not Ready To Relocate,Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(7537, 7396, 59, 5, 0, 'Too long Distance not ready to relocate,will not sustain', 60, '0000-00-00 00:00:00', 1),
(7538, 7398, 59, 5, 0, 'Communication Average,Too long Distance around 64kms up and down,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7539, 7395, 59, 5, 0, 'Looking for Non voice Process only', 60, '0000-00-00 00:00:00', 1),
(7540, 7394, 59, 5, 0, 'Looking for Non Voice or networking profile only\n', 60, '0000-00-00 00:00:00', 1),
(7541, 7393, 59, 5, 0, 'Looking only for Non Voice Process,not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(7542, 7400, 59, 5, 0, 'Have Exp in Non Voice only,Speaking but sustainability Doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(7543, 7402, 59, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(7544, 7392, 73, 7, 0, 'Selected but studying mba in corres need for monthly once leave. Salary 10k , Immediate joining. ', 60, '0000-00-00 00:00:00', 1),
(7545, 7392, 59, 3, 0, 'Selected for Tiruvallur Team in Consultant 5% TDS,can give a try 5050 profile', 73, '2022-01-05 05:22:24', 1),
(7546, 7377, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2022-01-06 10:42:20', 1),
(7547, 7407, 59, 4, 0, 'Communication is Good,have Exp in Sales but not a relevant one,Can give a try,Kindly check and give your inout', 60, '0000-00-00 00:00:00', 1),
(7548, 7405, 73, 7, 0, 'selected, already exp in star  8 month only. confirm joining date and sal 10k ', 60, '0000-00-00 00:00:00', 1),
(7549, 7404, 59, 5, 0, 'Salary Exp is High,not open for Field Sales,Will not Sustain', 60, '0000-00-00 00:00:00', 1),
(7550, 7407, 31, 5, 0, 'Not fit for this profile\n', 59, '2022-01-06 08:25:57', 1),
(7551, 7408, 59, 5, 0, 'Communication is average, looking for system admin roles, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7552, 7409, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(7553, 7410, 59, 3, 0, 'Selected for Priyanka Jenit Team in Consultant Role - 5% TDS', 60, '0000-00-00 00:00:00', 1),
(7554, 7411, 59, 5, 0, 'No Sales/Telecaller Exp,Low BP,will not handle our pressure,not open to take the targets xxamp pressure', 60, '0000-00-00 00:00:00', 1),
(7555, 7405, 59, 3, 0, 'Selected for Tiruvallur Location in consultant role ', 73, '2022-01-07 04:20:33', 1),
(7556, 7414, 59, 3, 0, 'Selected for Pandian Team,Candidate Exp is high,Team manager should give a mail commitment with the target based increment', 60, '0000-00-00 00:00:00', 1),
(7557, 7413, 59, 5, 0, 'Too long Distance no Telecaller Exp only retail store Exp,Will not sustain', 60, '0000-00-00 00:00:00', 1),
(7558, 7409, 57, 4, 0, 'Candidate is ok kindly  negotiate the salary and joining date ', 59, '2022-01-07 04:47:51', 1),
(7559, 7410, 14, 7, 0, 'Selected . Salary 11k . Joining date 10th jan ', 59, '2022-01-07 04:49:04', 1),
(7560, 7414, 80, 4, 4, 'Ok with his experience. Please check he is ok or not', 59, '2022-01-07 04:55:27', 1),
(7561, 7410, 59, 3, 0, 'Selected for Priyanka Jenit Team in Consultant Role - 5% TDS', 14, '2022-01-07 05:32:23', 1),
(7562, 7416, 74, 5, 0, 'not fit', 58, '0000-00-00 00:00:00', 1),
(7563, 7414, 18, 7, 3, 'Selected for Pandi Team. Expected salary is 3.25L ctc butyou can negotiable. Immedieate joinee', 80, '2022-01-07 06:59:32', 1),
(7564, 7409, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2022-01-07 07:41:46', 1),
(7565, 7415, 59, 3, 0, 'selected for  muthu team  in consultant role for 5% TDS ', 60, '0000-00-00 00:00:00', 1),
(7566, 7415, 13, 7, 4, 'ok salary 11k,monday joining', 59, '2022-01-08 01:33:07', 1),
(7567, 7346, 59, 5, 0, 'Dropped,candidate will not sustain ', 59, '2022-01-08 01:34:10', 1),
(7568, 7422, 59, 5, 0, 'have exp in both voice and non voice, sustaianability doubt as she is getting married in the month of march,also much prefers to work in non voice', 60, '0000-00-00 00:00:00', 1),
(7569, 7423, 59, 3, 0, 'Selected for Priyanka Jenit Elite PRofile in Consultant Role TDS 5%', 60, '0000-00-00 00:00:00', 1),
(7570, 7419, 59, 5, 0, 'Communication Average,Completed his graduation in 2019 and have exp in different domains, looking for  HR  position and the salary Exp is very high.We should consider this candidate as  a fresher only with Internship,Will not sustain,not much comfort with TxxampC.. Had a telephoinic discussion. Sustainability doubts a lot', 60, '0000-00-00 00:00:00', 1),
(7571, 7423, 14, 7, 0, 'Selected 10.5k salary 10th jan joining please confirm the joining date once', 59, '2022-01-08 03:11:35', 1),
(7572, 7423, 59, 3, 0, 'Selected for Priyanka Jenit Elite PRofile in Consultant Role TDS 5%', 14, '2022-01-08 04:43:16', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(7573, 7415, 59, 3, 0, 'selected for  muthu team  in consultant role for 5% TDS ', 13, '2022-01-08 05:01:24', 1),
(7574, 7421, 59, 4, 0, 'Candidate communication is good, degree incomplete and there is no sustainability in the previous exp. Have worked in retail store B2C/B2B.Salary Exp is ok, but there is no set of salary proof for previous experiences. Can be trained 50/50 profile. Have a bike but no laptop and he canxquott arrange it. He is available for F2F next week by Tuesday. Let Veben have a round of interview and decide on the profile.', 60, '0000-00-00 00:00:00', 1),
(7575, 7421, 40, 1, 0, NULL, 59, '2022-01-08 05:21:26', 1),
(7576, 7433, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT deductions', 60, '0000-00-00 00:00:00', 1),
(7577, 7433, 57, 4, 0, 'Candidate ok confirm the Joining date', 59, '2022-01-10 01:44:43', 1),
(7578, 7431, 74, 7, 3, 'she is already working in two three company due to traveling issues not suit for him so she need to work in native no laptop kindly check once salary not confirmed mba and speaking is good only joining from after pongal so kindly confirm once joining ', 60, '0000-00-00 00:00:00', 1),
(7579, 7433, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT deductions', 57, '2022-01-10 05:08:12', 1),
(7580, 7431, 59, 2, 0, 'RNR\n', 74, '2022-01-10 06:20:41', 1),
(7581, 7435, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(7582, 7444, 59, 4, 0, '5050 profile,came along with her friend,Family need is there,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7583, 7443, 59, 5, 0, 'Have Exp in Nonvoice and much prefers to work in the same domain,for time being open for Voice Process,Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7584, 7436, 59, 5, 0, 'Average Communication no ideas in the recruitment,Not comfort on TxxampC,Will not Sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7585, 7449, 59, 2, 0, 'Have Exp in General Insurance ,health insurance,2nd interviewed by GK Sir,Will come for Interview again by tomorrow', 60, '0000-00-00 00:00:00', 1),
(7586, 7455, 59, 5, 0, 'She was into teaching and now open for voice/Non voice process,Interested to work much in the non pressure areas will not sustain for along', 60, '0000-00-00 00:00:00', 1),
(7587, 7454, 59, 5, 0, 'Too long distance from chengalpet,,Preparing for the bank exams,focus is on the govt jobs only,time being looking for openings,will not sustain in a long run,fresher\n', 60, '0000-00-00 00:00:00', 1),
(7588, 7446, 59, 5, 0, 'Not open up,handling pressure no, Came along with her sister, if she didnt join he wont.Will not sustain', 60, '0000-00-00 00:00:00', 1),
(7589, 7447, 59, 5, 0, 'Handling Pressure No,No basic knowledge in terms of skills,not suitable ', 60, '0000-00-00 00:00:00', 1),
(7590, 7442, 59, 5, 0, 'Attitude,no sustainability with the previous Exp,fresher for our sales,not ready to relocate distance around 40kms up and down', 60, '0000-00-00 00:00:00', 1),
(7591, 7452, 59, 5, 0, 'Too long distance ,no exp Fresher for telecaller,need to open up a lot,much comfort in non voice ', 60, '0000-00-00 00:00:00', 1),
(7592, 7453, 59, 5, 0, 'Looking for Non Voice process,will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(7593, 7388, 59, 5, 0, 'Dropped she didnt turn as her friend got rejected in the interview', 13, '2022-01-11 04:27:43', 1),
(7594, 7444, 13, 5, 2, 'not fit for telesales and expected salary also high', 59, '2022-01-11 04:59:33', 1),
(7595, 7386, 29, 7, 0, 'Sarath Team,need to check in 7 days', 51, '2022-01-11 05:11:08', 1),
(7596, 7386, 59, 3, 0, 'Selected for Sarath Team,Gaurav have given a commitment on salary revisal based on the Target achievement of 2L each for 2 months with 15%', 29, '2022-01-11 05:13:39', 1),
(7597, 7451, 59, 2, 0, 'Have Exp in Sales but not in Calling Activities,fresher for telecalling,5050 profile,need to schedule him for next level and check', 60, '0000-00-00 00:00:00', 1),
(7598, 7463, 73, 5, 0, 'expected salary  very high and try to job for IT company.  rejected.', 58, '0000-00-00 00:00:00', 1),
(7599, 7466, 59, 5, 0, 'Left without attending the interview', 58, '0000-00-00 00:00:00', 1),
(7600, 7470, 59, 4, 0, '5050 Profile have 2 months Exp in Credit Card Sales,Salary Exp is high,need to negotiate and finalise kindly check the candidate and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7601, 7458, 59, 2, 0, 'Communication ok have exp in Recruitment ,not much comfort on TxxampC,Salary Exp is Also high,need to come back with his confirmation\n', 60, '0000-00-00 00:00:00', 1),
(7602, 7425, 59, 5, 0, 'Communication Average,Pressure handling doubts on this profile,timing she was not comfortable', 60, '0000-00-00 00:00:00', 1),
(7603, 7440, 59, 5, 0, 'Scheduled for 2nd round with Karthika,but left without attending as her friend got rejected in the final round', 60, '0000-00-00 00:00:00', 1),
(7604, 7457, 59, 5, 0, 'No basic knowledge in the recruitment,Pressure handling Doubt,Will not sustain', 60, '0000-00-00 00:00:00', 1),
(7605, 7464, 59, 5, 0, 'College yet to complete, Will not sustain for a long,need to open up a lot\n', 60, '0000-00-00 00:00:00', 1),
(7606, 7432, 59, 5, 0, 'Looking for Non Voice only,but no Exp in Excel ', 60, '0000-00-00 00:00:00', 1),
(7607, 7470, 14, 5, 0, 'not suitable for this profile', 59, '2022-01-12 06:05:33', 1),
(7608, 7465, 74, 7, 0, 'completed marine and he is working in thirupur after that he releived the job and he did not get foreign oportunity too so need to work in local in bpo good language and convenience skill salary expected 11k have laptop and bike refered by priyanka jenit joining after pongal monday kindly confirm once', 60, '0000-00-00 00:00:00', 1),
(7609, 7469, 74, 7, 0, 'completed mA and she very talk active and profiled completely suite to our team good only expected take home 10k have laptop, home is very near to office have teaching experience and need now studying b.ed in part time good only kindly confirm once sustainability....my self reference ', 60, '0000-00-00 00:00:00', 1),
(7610, 7465, 59, 3, 0, 'Selected for Sithyvinayagam Team in consultant mode - 5% TDS', 74, '2022-01-12 07:08:56', 1),
(7611, 7469, 59, 3, 0, 'Selected for Sithy Thanjavur Team in Consultant 5%\n', 74, '2022-01-12 07:11:15', 1),
(7612, 7472, 83, 5, 0, 'candidate will not sustain', 58, '0000-00-00 00:00:00', 1),
(7613, 7473, 83, 4, 0, 'okay with the profile,,  kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(7614, 7481, 83, 5, 0, 'looking for non voice process', 58, '0000-00-00 00:00:00', 1),
(7615, 7476, 83, 4, 0, 'okay with sales pitch but 50-50 due to sustainability issue, kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(7616, 7477, 83, 5, 0, 'candidate not willing to work for insurance sales', 58, '0000-00-00 00:00:00', 1),
(7617, 7478, 83, 5, 0, 'candidate expecting high salary xxamp will not be suitable', 58, '0000-00-00 00:00:00', 1),
(7618, 7473, 67, 1, 0, NULL, 83, '2022-01-15 10:42:56', 1),
(7619, 7476, 80, 5, 0, 'Person not come for an final round', 83, '2022-01-15 10:45:58', 1),
(7620, 7474, 83, 4, 0, 'Okay with profile,  7 months  of experience As Customer Care Exective in hathway banglore', 60, '0000-00-00 00:00:00', 1),
(7621, 7473, 57, 4, 0, 'Candidate ok Confirm the Joining date', 57, '2022-01-15 10:56:54', 1),
(7622, 7474, 7, 1, 0, NULL, 83, '2022-01-15 11:17:06', 1),
(7623, 7431, 59, 5, 0, 'Dropped,she already holds IRDA,currently workin in tata AIA,not interested', 59, '2022-01-15 11:27:49', 1),
(7624, 7475, 74, 7, 0, 'Good Only Completed Visual Communication...Good Exposure With English Knowledge ,,,,Family Not Support To Work In Chennai...So She Need A Perfect Exposure And Working Environ Ment.... Have Laptop An Home Near By Only Event Mangement Working .....Refered By My Friend Kindly Check Once And Confirm', 60, '0000-00-00 00:00:00', 1),
(7625, 7475, 59, 3, 0, 'Selected for Thanjavur Team in Consultant 5%\n', 74, '2022-01-15 11:36:40', 1),
(7626, 7482, 59, 2, 0, 'Candidate Communication is Good, Currently pursuing MBA full time, Need leave on Saturdays,Will come for F2F on tuesday we should finalise the profile', 60, '0000-00-00 00:00:00', 1),
(7627, 7474, 59, 3, 0, 'Selected for Thiyagu Team - PF/ESI/PT,5050 Profile,sustainability Doubts', 16, '2022-01-15 12:06:06', 1),
(7628, 7473, 59, 3, 0, 'Selected for Syed Team with PF/ESI.But candidate seems to be doubtful,need to analyse in 7 Days,', 57, '2022-01-15 12:30:57', 1),
(7629, 7343, 59, 5, 0, 'Dropped by Gokul in the final round,', 59, '2022-01-15 05:55:48', 1),
(7630, 7438, 59, 3, 0, 'Selected for Partner Channel-Hyderabad direct reporting to Suresh Sir Level 1 xxamp2', 60, '0000-00-00 00:00:00', 1),
(7631, 7449, 59, 5, 0, 'Final Round interviewed by Gaurav Sir and the Profile has been rejected. Will not sustain and not fit in our company roles. Seems to have much false communications.', 59, '2022-01-17 12:18:11', 1),
(7632, 7166, 59, 5, 0, 'Dropped ,we offered her for the Recruiter Role,but candidate didnt join\n', 59, '2022-01-17 12:19:01', 1),
(7633, 7201, 59, 5, 0, 'Candidate didnt come back with her confirmation\n', 59, '2022-01-17 12:23:02', 1),
(7634, 6931, 59, 5, 0, 'Dropped, seems not much comfort with the position as his friend didnt get selected\n', 59, '2022-01-17 12:24:55', 1),
(7635, 7414, 59, 3, 0, 'Selected for Pandian Team,Candidate Exp is high,Team manager should give a mail commitment with the target based increment', 18, '2022-01-17 05:06:02', 1),
(7636, 7484, 59, 5, 0, 'no relevant Exp,he is  much into Backend process,but not much into Excels,Currently working and his notice is 30 Days ,Salary Exp is high, not open for Sales', 60, '0000-00-00 00:00:00', 1),
(7637, 7485, 59, 5, 0, 'No Relevant Exp, He Is  Into Backend Process and looking for the same, But Not Much Into Excels, Currently Working And His Notice Is 30 Days ,Salary Exp Is High, ', 60, '0000-00-00 00:00:00', 1),
(7638, 7428, 74, 5, 0, 'not suite', 58, '0000-00-00 00:00:00', 1),
(7639, 7492, 59, 3, 0, 'Selected for Muthu Team in Consultant 5%', 60, '0000-00-00 00:00:00', 1),
(7640, 7489, 59, 5, 0, 'Communication ok but not much suit towards the sales, not comfortable with previous Exp as there was much pressure, sustainability Doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(7641, 7490, 59, 5, 0, 'Average Commuication,Too long Distance around 40kms up and down,Will not sustain and handling pressure no\n', 60, '0000-00-00 00:00:00', 1),
(7642, 7491, 59, 4, 0, 'Have a month Exp in Telecaller,5050 profile, not much convinced ,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7643, 7494, 59, 2, 0, 'Communication is Good,need to check the position to be placed,2nd by Banu xxamp 3rd Round by Gokul,candidate yet to give her confirmation.We commited 17K TH for 3months then 21600', 60, '0000-00-00 00:00:00', 1),
(7644, 7495, 59, 5, 0, 'Communication no,will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(7645, 7492, 13, 7, 4, 'ok 11k salary,joining today evening kulla confirm panrenu sollirukkan', 59, '2022-01-18 02:44:48', 1),
(7646, 7496, 59, 4, 0, 'He is into sales, which is not relevant experience, but we can try in our position. Available for F2F in Bangalore on Friday', 58, '0000-00-00 00:00:00', 1),
(7647, 7492, 59, 3, 0, 'Selected for Muthu Team in Consultant 5%', 13, '2022-01-18 02:49:59', 1),
(7648, 7497, 59, 3, 0, 'Ok for Ravi,need to analyse in 7 days of training', 60, '0000-00-00 00:00:00', 1),
(7649, 7497, 82, 4, 0, 'Kindly negotiate the salary package.', 59, '2022-01-18 04:06:41', 1),
(7650, 7497, 59, 3, 0, 'Ok for Ravi,need to analyse in 7 days of training', 82, '2022-01-18 04:11:00', 1),
(7651, 7498, 59, 3, 0, 'Selected for B2B in  5% consultant', 60, '0000-00-00 00:00:00', 1),
(7652, 7491, 13, 5, 2, 'not fit for telesales', 59, '2022-01-18 06:27:41', 1),
(7653, 7498, 53, 7, 0, 'selected sal 10k b2b', 59, '2022-01-18 07:54:45', 1),
(7654, 7496, 56, 5, 0, 'did not come for interview', 59, '2022-01-18 07:55:39', 1),
(7655, 7500, 59, 3, 0, 'Selected for Priyanka Jenit Team in Consultant 5%', 60, '0000-00-00 00:00:00', 1),
(7656, 7502, 59, 5, 0, 'Have Exp in Non Voice pressure only, need to open a lot, Will not sustain and handle our pressure.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7657, 7505, 59, 5, 0, 'Communication Average ,No Stability in the previous Exp, every Six months shifted and there are multiple reason. Doing a part time family business too. No ideas in the recruitment, earlier he worked just as a coordinator. Will not sustain and the Salary Exp is Very High.', 60, '0000-00-00 00:00:00', 1),
(7658, 7499, 59, 5, 0, 'Communication is Average, Fresher for Recruitment, no sustainability, Will not handle the pressure.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7659, 7500, 14, 7, 0, 'Selected 10k salary need to confirm joining date', 59, '2022-01-19 02:53:20', 1),
(7660, 7500, 59, 3, 0, 'Selected for Priyanka Jenit Team in Consultant 5%', 14, '2022-01-19 04:15:15', 1),
(7661, 7507, 59, 5, 0, 'Communication ok, not comfortable with the timings and the salary Exp is very high, will not sustain for a long, not comfort to take much calls.', 60, '0000-00-00 00:00:00', 1),
(7662, 7516, 73, 7, 0, 'Selected,  need to confirm salary 13k ,  Already experience in yes bank credit card 9 month , immediate joining , confirm DOJ.', 58, '0000-00-00 00:00:00', 1),
(7663, 7510, 73, 7, 0, 'selected,  need to confirm joining date. salary 10k. ', 58, '0000-00-00 00:00:00', 1),
(7664, 7516, 59, 5, 0, 'Dropped,final Interview by banu priya and rejected as her salary Exp is too high', 73, '2022-01-20 01:25:48', 1),
(7665, 7510, 59, 3, 0, 'Candidate seems to be slow,kindly analyse in 7 days of training,Proceed with the Joining Formalities.', 73, '2022-01-20 01:26:50', 1),
(7666, 7525, 59, 5, 0, 'no basic ideas in the IT domain,came along with the  his freind for telecaller role,Need to open a lot,will not sustain in our roles,Salary Exp is very high,not suits', 60, '0000-00-00 00:00:00', 1),
(7667, 7523, 59, 3, 0, '	Communication Ok, Have Exp In Paytm Sales, Can Be Trained As Rm, Kindly Check And Let Me Know Your Inputs\n\nselected for GK SIr team  with PF/PT', 60, '0000-00-00 00:00:00', 1),
(7668, 7511, 59, 5, 0, 'Communication Average,Fresher for Recruitment,no clear ideas in the recruitment,not much comfort on the timings,will not handle the pressure,not suitable', 60, '0000-00-00 00:00:00', 1),
(7669, 7521, 59, 5, 0, 'communication Average,need to open up,Looking much for core Automobile domain, Will not sustain, comfortable to work much in the non voice ', 60, '0000-00-00 00:00:00', 1),
(7670, 7520, 59, 5, 0, 'Have Exp in Store Sales only ,pressure handling no,sustainability Doubts.Need to speak,Degree incomplete,not suitable', 60, '0000-00-00 00:00:00', 1),
(7671, 7514, 59, 4, 0, 'Have Exp in Star Health for 3 months,left due to pressure/continuous calls.Not ok for our roles,will not sustain.Handling Pressure no.Due to the releavnt Exp kinldy check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7672, 7517, 59, 4, 0, 'not much ok profile,5050 Have Exp only in Non Voice,Pressure handling Doubt,Will not sustain for a long,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7673, 7522, 59, 5, 0, 'Too long Distance no bike no laptop, fresher, need to open a lot ,will not handle our pressure.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7674, 7518, 59, 2, 0, 'Candidate Should Come Back With Her Confirmation', 60, '0000-00-00 00:00:00', 1),
(7675, 7512, 59, 2, 0, 'Candidate should come back with her confirmation', 60, '0000-00-00 00:00:00', 1),
(7676, 7514, 57, 1, 0, NULL, 59, '2022-01-20 03:21:21', 1),
(7677, 7517, 13, 5, 2, 'already marrieed 2 kids irukku but maturity level low and timing not suitable', 59, '2022-01-20 03:23:03', 1),
(7678, 7518, 53, 7, 0, 'Ok But Changed Too Many Jobs In Short Period. Pls Check For 1 Yr Aggrement', 59, '2022-01-20 03:29:11', 1),
(7679, 7523, 31, 4, 4, 'candidate okay sent for next round', 59, '2022-01-20 03:53:13', 1),
(7680, 7512, 53, 7, 0, 'Ok but changed too many jobs in short period. pls check for 1 yr aggrement', 59, '2022-01-20 04:11:10', 1),
(7681, 7512, 59, 2, 0, 'Candidate should come back with her confirmation', 53, '2022-01-20 04:49:57', 1),
(7682, 7518, 59, 2, 0, 'Candidate Should Come Back With Her Confirmation', 53, '2022-01-20 04:50:13', 1),
(7683, 7498, 59, 3, 0, 'Selected for B2B in  5% consultant', 53, '2022-01-20 04:51:51', 1),
(7684, 7523, 29, 7, 3, 'Selected for RM, GK team', 31, '2022-01-21 12:19:38', 1),
(7685, 7528, 59, 2, 0, 'Communication is Good, Distance too long but can travel,Salary Exp is also high. Have Exp in BPO Process ,Last earning was around 25K ,Should come back with her confirmation on the TxxampC.', 60, '0000-00-00 00:00:00', 1),
(7686, 7537, 74, 4, 0, 'very poor family salary 12 k confirmed have laptop already experienced in hdfc telecalling 1 year ,,,,,,,,father passed away....2 sisters marriaged.....not she is married after 2 years kindly confirm once', 58, '0000-00-00 00:00:00', 1),
(7687, 7539, 59, 5, 0, 'Very Poor Candidate,no communication,Will not sustain,not suitable for our telecaller roles', 60, '0000-00-00 00:00:00', 1),
(7688, 7538, 59, 2, 0, 'Communication Ok,have Exp in Recruitment,currently serviing notice,20 more dyas to go, Min Sal Exp is 19K TH,Little Attitude seems to have,Need to finalise on the Salary Part and to schedule her for 2nd level interview', 60, '0000-00-00 00:00:00', 1),
(7689, 7536, 59, 5, 0, 'Communication ok,no relevant Exp,open for any positions for time being.he much prefers to work as Arabic Tutor/Looking for international vaccanicies too.He needs time to give his confirmation but sustainability doubts.If candidate comes back let us see.He much focus in the Salary part', 60, '0000-00-00 00:00:00', 1),
(7690, 7535, 59, 4, 0, 'have exp as telecaller in Collections,communication souonds to be good,having health issue(Sugar Diabetic).Candidate Appearance not upto the mark,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7691, 7533, 59, 5, 0, 'No sustainabilty,3 months 2 companies changed,Career Gap.Graduation discontinued,not opne up, need to speak,will not sustain and handling pressure no', 60, '0000-00-00 00:00:00', 1),
(7692, 7532, 59, 5, 0, 'Looking for Non voice Process , not fit for our operations and HR roles, will not sustain', 60, '0000-00-00 00:00:00', 1),
(7693, 7532, 59, 5, 0, 'Looking for Non voice Process , not fit for our operations and HR roles, will not sustain', 60, '0000-00-00 00:00:00', 1),
(7694, 7529, 59, 5, 0, 'Communication Average,Looking for recruitment Roles not for CRM,No basic ideas in the recruitment,will not sustain and handling pressure doubt', 60, '0000-00-00 00:00:00', 1),
(7695, 7531, 59, 4, 0, 'communication ok,have Exp in Voice Process for 6 months,can be trained in  Elite RE Roles, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7696, 7531, 59, 4, 0, 'communication ok,have Exp in Voice Process for 6 months,can be trained in  Elite RE Roles, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7697, 7535, 14, 5, 0, 'He already having health issues so not suitable for this profile', 59, '2022-01-21 03:00:48', 1),
(7698, 7531, 53, 5, 0, 'Not intrested in voice process', 59, '2022-01-21 03:06:27', 1),
(7699, 7518, 59, 5, 0, 'As Sales team requested for the SA, Candidate not interested with the same  and she will not sustain for a long .Dropped', 59, '2022-01-21 03:39:28', 1),
(7700, 7519, 74, 4, 0, 'already experienced in sales 2 and half year.....salary 11k confirmed have laptop....need to join monday good only', 58, '0000-00-00 00:00:00', 1),
(7701, 7527, 59, 4, 0, 'Communication ok and soft,no telecaller Exp but have worked in different domain for almost 3 yrs,5050 profile, family need is there, can be trained.Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7702, 7537, 53, 7, 0, 'selected for B2B 12k. pls cnfrm DOJ', 74, '2022-01-21 06:11:49', 1),
(7703, 7519, 53, 7, 0, 'selected B2B. 11k sal. pls cnfrm doj', 74, '2022-01-21 06:12:54', 1),
(7704, 7527, 14, 5, 0, 'not suitable for this profile', 59, '2022-01-21 06:19:30', 1),
(7705, 7542, 59, 5, 0, 'No graduation,not showing any interest on the job,will not handle the pressure and sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(7706, 7541, 59, 5, 0, 'No Graduation,no importance on the job,College terminated due to attendance,Will not sustain for a long,not suitable', 60, '0000-00-00 00:00:00', 1),
(7707, 7544, 59, 4, 0, 'Communication okay. 3yrs in sales, but no document proof for the exp. Can be trained in RE level, Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7708, 7544, 57, 1, 0, NULL, 59, '2022-01-21 06:57:24', 1),
(7709, 7537, 59, 3, 0, 'Selected for B2B Thanjavur Consultant 5%', 53, '2022-01-22 12:19:45', 1),
(7710, 7519, 59, 3, 0, 'Selected for B2B thanjavur Location, Consultant Role - 5% TDS', 53, '2022-01-22 12:25:36', 1),
(7711, 7548, 59, 3, 0, 'Selected as an employee 8k for 3 months then the salary will be revised after 3 moths - 1.6 yrs SA,no document submission', 60, '0000-00-00 00:00:00', 1),
(7712, 7534, 59, 5, 0, 'Communication Ok, have 6  months exp in Recruitment, little attitude, but seems ok for the profile, scheduled her for the 2nd round but left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(7713, 7530, 59, 5, 0, 'Communication ok but very soft and slow,fresher for recruiter,need time to give confirmation on the SA also the Stipend pay,She was working in Healthcare night shift 15K TH. If she comes back let  us decide', 60, '0000-00-00 00:00:00', 1),
(7714, 7546, 59, 5, 0, 'Fresher for TElecaller,communication ok but slow,and much to prefer to work in Non voice process only', 60, '0000-00-00 00:00:00', 1),
(7715, 7526, 59, 2, 0, 'Communication ok, fresher for the recruitment, can be trained, candidate need to give her confirmation on the TxxampC and the stipend pay', 60, '0000-00-00 00:00:00', 1),
(7716, 7547, 59, 5, 0, 'Aged profile, worked in multiple non voice domain, not suitable', 60, '0000-00-00 00:00:00', 1),
(7717, 7523, 59, 3, 0, '	Communication Ok, Have Exp In Paytm Sales, Can Be Trained As Rm, Kindly Check And Let Me Know Your Inputs\n\nselected for GK SIr team  with PF/PT', 29, '2022-01-22 03:01:01', 1),
(7718, 7550, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(7719, 7550, 57, 4, 0, 'candidate is ok ', 59, '2022-01-22 05:54:27', 1),
(7720, 7550, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2022-01-22 06:21:45', 1),
(7721, 7551, 59, 5, 0, 'Need to open up a lot will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(7722, 7553, 59, 5, 0, 'Not suitable age around 35 will not handle our pressure will not sustain too', 60, '0000-00-00 00:00:00', 1),
(7723, 7549, 59, 5, 0, 'Left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(7724, 7556, 59, 3, 0, 'Selected for B2B in consultant 5% TDS', 60, '0000-00-00 00:00:00', 1),
(7725, 7555, 59, 5, 0, 'Looking for non voice process ,will not handle the pressure Not suitable', 60, '0000-00-00 00:00:00', 1),
(7726, 7557, 59, 4, 0, 'Fresher, for Tiruvallur Location, but too long distance, need to train a lot, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7727, 7558, 59, 5, 0, 'No sustainability in the previous positions,Will not handle the pressure,personal marriage issue,will not focus much in work,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7728, 7554, 59, 2, 0, 'communication Average, fresher for recruitment, need to give her confirmation on the TxxampC, if she comes back will check again', 60, '0000-00-00 00:00:00', 1),
(7729, 7561, 59, 5, 0, 'Age 19yrs 12th passed, comfort to work in non voice process,too long distance too,Not Suitable', 60, '0000-00-00 00:00:00', 1),
(7730, 7559, 59, 5, 0, 'Fresher for Telecaller, need to speak, much comfort to work in non voice,will not sustain for long', 60, '0000-00-00 00:00:00', 1),
(7731, 7556, 53, 7, 0, 'selected for B2B. 13k TH having 2 yrs experience, Feb 1st joining', 59, '2022-01-24 02:43:56', 1),
(7732, 7557, 14, 2, 0, 'number canxquott able to reach', 59, '2022-01-24 03:56:29', 1),
(7733, 7556, 59, 3, 0, 'Selected for B2B in consultant 5% TDS', 53, '2022-01-25 11:09:05', 1),
(7734, 7569, 74, 7, 0, 'he intrested in telecalling need to speak more highly intrested candidate....ready to join immedietly salary need take home 10k..have laptop and bike ......very talkactive and job need .', 58, '0000-00-00 00:00:00', 1),
(7735, 7578, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(7736, 7568, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(7737, 7573, 59, 3, 0, 'Selected for Syed team  with PF/ESI/PT ', 60, '0000-00-00 00:00:00', 1),
(7738, 7560, 59, 3, 0, 'Selected as an intern for 5 months with 5K Stipend and 10K Salary thereafter,2 yrs SA 10/12 Submission- Selected by Gokul in the 2nd round', 60, '0000-00-00 00:00:00', 1),
(7739, 7579, 59, 3, 0, 'Selected for B2B in consultant Role', 60, '0000-00-00 00:00:00', 1),
(7740, 7568, 57, 4, 0, 'candidate is ok kindly negotiate the salary ', 59, '2022-01-25 04:34:28', 1),
(7741, 7573, 57, 4, 0, 'candidate is ok confirm the joining date and negotiate the salary', 59, '2022-01-25 04:35:05', 1),
(7742, 7579, 53, 7, 0, 'selected for B2B. pls cnfrm doj and sal', 59, '2022-01-25 04:35:50', 1),
(7743, 7578, 13, 7, 4, 'Candidate is well profiled and talk active suitable for telecalling so fixed 12.5k salary but he is little double minded about the salary, so i commit for the salary hike after 6 months to prove by the performance is good.', 59, '2022-01-25 04:41:44', 1),
(7744, 7571, 59, 5, 0, 'Communication Average,not much strong in the areas of excel, but worked in the operations/MIS roles. long distance,will not sustain in our roles\n', 60, '0000-00-00 00:00:00', 1),
(7745, 7570, 59, 4, 0, 'Communication ok,not interested much to the calling activities,have  knowledge in the MIS part,comfort to work in Renewals too kindly check for Renewals', 60, '0000-00-00 00:00:00', 1),
(7746, 7573, 59, 3, 0, 'Selected for Syed team  with PF/ESI/PT ', 57, '2022-01-25 04:48:15', 1),
(7747, 7572, 59, 5, 0, 'Left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(7748, 7568, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2022-01-25 04:49:12', 1),
(7749, 7524, 59, 5, 0, 'Communication is good,have multiple intern Exp and the current is ready to pay her 4 LPA in 3 months time,Salary Exp is around 3.5 LPA,Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7750, 7580, 59, 5, 0, 'Communication no,need to open a lot, will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(7751, 7581, 59, 5, 0, 'Communication ok,have exp in renewals,but no sustainability,holding an offer for 18K TH,will not sustain and handle our pressure', 60, '0000-00-00 00:00:00', 1),
(7752, 7570, 53, 5, 0, 'Not intrested in teleclling', 59, '2022-01-25 05:08:30', 1),
(7753, 7569, 59, 5, 0, 'discussed and shared the salary breakup,requestde time to gove his confirmation,but after that he is not responding to the calls.Dropped', 74, '2022-01-25 06:17:19', 1),
(7754, 7578, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2022-01-25 06:28:10', 1),
(7755, 7579, 59, 3, 0, 'Selected for B2B in consultant Role', 53, '2022-01-27 10:22:22', 1),
(7756, 7590, 73, 5, 0, 'Job not mandatory  working for calm place . She will not handle in pressure . So drop.', 58, '0000-00-00 00:00:00', 1),
(7757, 7606, 59, 5, 0, 'No communication,Career Gap and looking for accounts positions,not good in MIS Activities,no ideas on Excel,will not sustain and the exp is also high', 60, '0000-00-00 00:00:00', 1),
(7758, 7596, 14, 5, 0, 'not suitable for voice process he is looking for non voice process', 60, '0000-00-00 00:00:00', 1),
(7759, 7599, 14, 4, 0, 'salary 11k need to check joining date', 60, '0000-00-00 00:00:00', 1),
(7760, 7598, 14, 4, 0, 'need to check sustainability', 60, '0000-00-00 00:00:00', 1),
(7761, 7602, 59, 4, 0, 'fresher for Sales,need to open a lot,internal reference,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7762, 7604, 59, 5, 0, 'Not open,no communication,Looking for non voice only', 60, '0000-00-00 00:00:00', 1),
(7763, 7597, 59, 2, 0, 'no basic knowledge  related to PHP,have ideas in HTML ,CSS only but interested to learn, Age around 31 yrs,fresher for IT Domain,Need to check by giving a task\n', 60, '0000-00-00 00:00:00', 1),
(7764, 7593, 59, 5, 0, 'Communication is Good,not interested in operations,not open for Esales looking for norml CRM but the salary Exp is 20K min and recently married sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(7765, 7592, 59, 5, 0, 'Average communication, Recently married and not open for targets and pressure, will not sustain', 60, '0000-00-00 00:00:00', 1),
(7766, 7587, 59, 5, 0, 'have Exp in Starhealth but looking for the opportunities without tsrget and the pressure,will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(7767, 7583, 59, 5, 0, 'no sustainability ,5yrs 4 companies in different domain,salary Exp is too high,fresher for Recruitment,need to train but will not sustain and even the communication also Average', 60, '0000-00-00 00:00:00', 1),
(7768, 7594, 14, 4, 0, 'Profiled moved to rm need to check', 60, '0000-00-00 00:00:00', 1),
(7769, 7595, 14, 5, 0, 'looking for non voice process not suitable for this profile', 60, '0000-00-00 00:00:00', 1),
(7770, 7591, 14, 5, 0, 'Not suitable for this profile she donxquott know tamil ', 60, '0000-00-00 00:00:00', 1),
(7771, 7600, 59, 5, 0, 'communication is Good,have exp in recruitment for 3 months and her current pay  30K,Salary Exp is very high and will not sustain for a long as she is getting married in few months', 60, '0000-00-00 00:00:00', 1),
(7772, 7601, 59, 5, 0, 'No Communication,no basic knowledge in terms of MF,Have Exp as a document verifier only,will not handle our pressure and sustain ', 60, '0000-00-00 00:00:00', 1),
(7773, 7601, 59, 5, 0, 'No Communication,no basic knowledge in terms of MF,Have Exp as a document verifier only,will not handle our pressure and sustain ', 60, '0000-00-00 00:00:00', 1),
(7774, 7584, 14, 4, 0, 'doubt for one year bond need to check', 60, '0000-00-00 00:00:00', 1),
(7775, 7586, 59, 3, 0, 'Selected for Esale KArthika in PTonly 13K TH', 60, '0000-00-00 00:00:00', 1),
(7776, 7585, 53, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(7777, 7603, 59, 5, 0, 'No communication looking for the core, for time being looking for opportunities,Will not sustain.Need to open up a lot', 60, '0000-00-00 00:00:00', 1),
(7778, 7586, 11, 4, 0, 'selected', 59, '2022-01-27 04:00:28', 1),
(7779, 7584, 59, 5, 0, 'In the second round with Banu/Priyanka he said ok for RE Field for Elite,but in the final round he said not ok for the Field and looking only for the Telecaller but the Salary Exp is around 13K with 1 yr SA,Requestd him to wait for the confirmation on the Salary,but left without attending', 14, '2022-01-27 04:09:28', 1),
(7780, 7594, 59, 5, 0, 'Communication ok,have 3 yrs of Exp as Delivery and operation but not interested in MIS Roles,tried for sales but the salary exp is min 25K,recenlt married and sustainabiity in the long run doubts', 14, '2022-01-27 04:10:30', 1),
(7781, 7599, 59, 2, 0, 'Shared the salary breakup, candidate yet to give his confirmation ', 14, '2022-01-27 04:11:08', 1),
(7782, 7598, 59, 2, 0, 'mentioned exp in the resume but not seems be a genuine,Focus only on the Salary and not open for field sales,for telecaller Salary Exp in around 15K,if he comes back need to finalise for 12K\n', 14, '2022-01-27 04:11:46', 1),
(7783, 7602, 19, 5, 1, 'No fit', 59, '2022-01-27 04:32:42', 1),
(7784, 7589, 73, 5, 0, 'Expected salary 16k to 17k  . So drop  1 yrs experience  but digital marketing  field  other platform.  He will not sustain this job.\n', 60, '0000-00-00 00:00:00', 1),
(7785, 7588, 73, 5, 0, 'Looking for non voice he will c\nHandle pressure  . So drop\n', 60, '0000-00-00 00:00:00', 1),
(7786, 7614, 59, 5, 0, 'Looking for Non Voice,no communication,5 months 2 companies', 60, '0000-00-00 00:00:00', 1),
(7787, 7613, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(7788, 7607, 59, 3, 0, 'Selected for Muthu Team in consultant role 5%', 60, '0000-00-00 00:00:00', 1),
(7789, 7611, 59, 3, 0, 'Selected for Muthu team in Consultant 5%', 60, '0000-00-00 00:00:00', 1),
(7790, 7612, 59, 5, 0, 'Communication Average,have exp in telecalling,Salary Exp is very High,Not open for Field will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7791, 7608, 73, 7, 0, 'Selected, highly need job, immediate joiner 10k salary fixed. ', 60, '0000-00-00 00:00:00', 1),
(7792, 7607, 13, 7, 4, 'candidate is well profiled and talk active suitable for telecalling so fixed 12.5k salary but he is little double minded about the salary, so i commit for the salary hike after 6 months to prove by the performance is good.', 59, '2022-01-28 03:41:30', 1),
(7793, 7611, 13, 7, 4, 'candidate is well profiled and talk active suitable for telecalling so fixed 12k salary but he is little double minded about the salary, so i commit for the salary hike after 6 months to prove by the performance is good.', 59, '2022-01-28 03:47:32', 1),
(7794, 7613, 57, 4, 0, 'Candidate is ok .. Kindly confirm the joining Date And negotiate the salary thanks', 59, '2022-01-28 03:52:48', 1),
(7795, 7613, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 57, '2022-01-28 04:14:53', 1),
(7796, 7608, 59, 3, 0, 'Selected for Dhanalakshmi in consultant 5%', 73, '2022-01-28 05:53:37', 1),
(7797, 7615, 59, 3, 0, 'Selected for Muthu team in consultant 5%\n', 60, '0000-00-00 00:00:00', 1),
(7798, 7607, 59, 3, 0, 'Selected for Muthu Team in consultant role 5%', 13, '2022-01-28 06:46:46', 1),
(7799, 7615, 13, 7, 4, 'candidate is well profiled and talk active suitable for telecalling so fixed 13k salary but he is little double minded about the salary, so i commit for the salary hike after 6 months (Minimum average 80k) to prove by the performance is good.', 59, '2022-01-28 06:47:40', 1),
(7800, 7611, 59, 3, 0, 'Selected for Muthu team in Consultant 5%', 13, '2022-01-28 06:48:08', 1),
(7801, 7615, 59, 3, 0, 'Selected for Muthu team in consultant 5%\n', 13, '2022-01-28 06:51:08', 1),
(7802, 7616, 73, 7, 0, 'SELECTED, NEXT ROUND HANLE TO PRIYANKA VOICE ONLY LOW OTHERWISE THIS CANDIDATE OK . POOR FAMILY  HIGHLY JOB NEED. SALARY 10K . CONFIRM JOINING DATE.', 60, '0000-00-00 00:00:00', 1),
(7803, 7586, 59, 3, 0, 'Selected for Esale KArthika in PTonly 13K TH', 11, '2022-01-29 03:01:47', 1),
(7804, 7617, 59, 5, 0, 'No communication,every 6 month shofter jobs,will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(7805, 7619, 59, 3, 0, 'Selected for Syed Team in PF/ESI/PT\n', 60, '0000-00-00 00:00:00', 1),
(7806, 7616, 59, 3, 0, 'Selected for Tiruvallur Consultant 5%', 73, '2022-01-29 05:09:43', 1),
(7807, 7619, 57, 4, 0, 'candidate is just ok .. ', 59, '2022-01-29 06:29:40', 1),
(7808, 7619, 59, 3, 0, 'Selected for Syed Team in PF/ESI/PT\n', 57, '2022-01-29 06:35:08', 1),
(7809, 7586, 8, 1, 0, NULL, 29, '2022-01-31 11:24:33', 1),
(7810, 7626, 59, 3, 0, 'Selected for  B2B Staff Role', 60, '0000-00-00 00:00:00', 1),
(7811, 7632, 59, 3, 0, 'Selected for Banu B2B 5% TDS', 60, '0000-00-00 00:00:00', 1),
(7812, 7625, 59, 5, 0, 'Looking for hassle free job ,no pressure handling will not sustain', 60, '0000-00-00 00:00:00', 1),
(7813, 7635, 59, 5, 0, 'Communication ok but much comfort to work in non voice ,Yet to complete his graduation and the statement seems to be wrong in most of the places', 60, '0000-00-00 00:00:00', 1),
(7814, 7637, 59, 5, 0, 'Looking only for the team lead role,very high Exp ut not much capable as per expectation.Can give a try for RM,but Salary Exceeds the more', 60, '0000-00-00 00:00:00', 1),
(7815, 7636, 59, 5, 0, 'No communication long career Gap,will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(7816, 7627, 59, 5, 0, 'Need to open a lot,much suits for non voice ,will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(7817, 7633, 59, 5, 0, 'Looking Only For The Team Lead Role,Very High Exp Ut Not Much Capable As Per Expectation.Can Give A Try For RM,But Salary Exceeds The More', 60, '0000-00-00 00:00:00', 1),
(7818, 7631, 59, 5, 0, 'No communication,not much comfort in the Exel areas,will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(7819, 7629, 59, 5, 0, 'Moved for 2nd Round,but left in between as her parents are not ok with TxxampC', 60, '0000-00-00 00:00:00', 1),
(7820, 7626, 53, 7, 0, '13TH, Shortlisted for B2B, Pls cnfrm DOJ', 59, '2022-01-31 05:30:20', 1),
(7821, 7632, 53, 7, 0, '13k TH, Selected for B2B, Pls cnfrm DOJ', 59, '2022-01-31 05:31:34', 1),
(7822, 7626, 59, 3, 0, 'Selected for  B2B Staff Role', 53, '2022-01-31 05:49:43', 1),
(7823, 7632, 59, 3, 0, 'Selected for Banu B2B 5% TDS', 53, '2022-01-31 05:50:22', 1),
(7824, 7639, 73, 5, 0, 'SHE IS LOOKING  FOR NON VOICE xxamp  NOT HANDLE TO PRESSURE HANDLING. SO REJECTED.', 58, '0000-00-00 00:00:00', 1),
(7825, 7642, 59, 3, 0, 'Selected for Syed Team in PF/ESI /PT\n', 60, '0000-00-00 00:00:00', 1),
(7826, 7649, 59, 5, 0, 'communiation average,will not sustain in our role', 60, '0000-00-00 00:00:00', 1),
(7827, 7643, 59, 5, 0, 'Not suitable', 60, '0000-00-00 00:00:00', 1),
(7828, 7641, 59, 3, 0, 'Selected as regional head Direct Marketing with PF/PT', 60, '0000-00-00 00:00:00', 1),
(7829, 7644, 59, 3, 0, 'Selected for HR Recruitment in Internship Employment model', 60, '0000-00-00 00:00:00', 1),
(7830, 7650, 59, 5, 0, 'Not suitable\n', 60, '0000-00-00 00:00:00', 1),
(7831, 7651, 59, 5, 0, 'Shortlisted but  dropped as the candidate was not turned back with his confirmation,also seems to have large expectation on the Pay', 60, '0000-00-00 00:00:00', 1),
(7832, 7645, 74, 7, 0, 'already working in arthi scans head office chennai to sell a package of full checkup and due to covid issues releived and after that joining as a telecaller and work in thanjavur as a client based telecalling company ...after that mothers health issue she releived one month back now family in poor condition job need ....office to home 45 mins travel so cross check once about the time managemnt good only fit for team salary expected 11 to 12 but confirm once ', 60, '0000-00-00 00:00:00', 1),
(7833, 7648, 74, 7, 0, 'speaked frankly voice audiable...already have experience in online marketing 10k salary coimbatore...prepared for goverment exam also but not regularly.....father welder brother in singapore but not intrested to go abroad....no laptop..have bike ...home from office 15 mins only...work in aavin milk factory also......very open minded attitude but in nature only hope is adapt to my team kindly cross check once and confirm joining ...salary expected 11 k ', 60, '0000-00-00 00:00:00', 1),
(7834, 7648, 59, 3, 0, 'selected for Thanjavur Location in Consultant 5%', 74, '2022-02-01 04:53:09', 1),
(7835, 7645, 59, 3, 0, 'Seleceted for Thanjavur Location in consultant 5%\n', 74, '2022-02-01 04:56:08', 1),
(7836, 7642, 57, 4, 0, 'candidate is ok ', 59, '2022-02-01 06:06:41', 1),
(7837, 7642, 59, 3, 0, 'Selected for Syed Team in PF/ESI /PT\n', 57, '2022-02-01 06:07:16', 1),
(7838, 7664, 73, 4, 0, 'Already experience for voice process once check sustainability. ', 58, '0000-00-00 00:00:00', 1),
(7839, 7662, 73, 4, 0, 'Check sustainability xxamp Pressure handling. ', 58, '0000-00-00 00:00:00', 1),
(7840, 7663, 83, 4, 0, 'need of job, already have exp in sales, will sustain, kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(7841, 7623, 83, 5, 0, 'no flow in speech, will not be suitable', 58, '0000-00-00 00:00:00', 1),
(7842, 7662, 14, 5, 0, 'Doubt  for Sustainability and 2 times called him for this he said will confirm will call like that so not suitable for this profile', 73, '2022-02-03 12:02:38', 1),
(7843, 7664, 14, 2, 0, 'Salary expectation high but not worth for that much salary', 73, '2022-02-03 12:03:22', 1),
(7844, 7660, 73, 4, 0, 'need job but check sustainability xxamp salary 12k ', 58, '0000-00-00 00:00:00', 1),
(7845, 7673, 73, 5, 0, 'voice very low not suitable for this profile.', 58, '0000-00-00 00:00:00', 1),
(7846, 7674, 73, 4, 0, 'check sustainability, salary 10k , immediate joining.', 58, '0000-00-00 00:00:00', 1),
(7847, 7660, 53, 7, 0, 'Selected. 12kTH. Immediate joining', 73, '2022-02-03 02:40:55', 1),
(7848, 7674, 53, 7, 0, 'Selected 10k TH immediate joining', 73, '2022-02-03 02:45:04', 1),
(7849, 7663, 53, 7, 0, 'selected. B2B pls cnfrm doj and salary', 83, '2022-02-03 04:13:32', 1),
(7850, 7660, 59, 3, 0, 'Selected for Tiruvallur Location in Consltant 5%', 53, '2022-02-03 04:29:02', 1),
(7851, 7674, 59, 3, 0, 'selected for Tiruvallur in consultant 5%', 53, '2022-02-03 04:32:42', 1),
(7852, 7670, 59, 5, 0, 'Candidate didnt turn with his confirmation on the salary,No responses to the call,we requestd himto share the previous documents  butno responses after that', 60, '0000-00-00 00:00:00', 1),
(7853, 7672, 59, 4, 0, 'Communication ok have exp in Store Sales, can be trained, Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7854, 7676, 59, 5, 0, 'Not open for Telecalling Activities,much focus on her core profession only,will not sustain for a long\n', 60, '0000-00-00 00:00:00', 1),
(7855, 7655, 59, 5, 0, 'Have Working Exp in Telecalling, currently looking for WFH,need some time to come out of his sudden demise of their parents\n', 60, '0000-00-00 00:00:00', 1),
(7856, 7658, 18, 5, 0, 'Ok candidate but not suitable for our profile', 60, '0000-00-00 00:00:00', 1),
(7857, 6683, 59, 2, 0, 'Communication ok,need tim to give her confirmation,but too long distance up and down almost 66 kms.sustainability Doubts ,can sign the SA,but doubts a lot', 60, '0000-00-00 00:00:00', 1),
(7858, 7670, 57, 4, 0, 'candidate is ok. kindly confirm the joining date and salary', 59, '2022-02-03 07:21:11', 1),
(7859, 7672, 13, 5, 0, 'Not response (continues RNR)', 59, '2022-02-03 07:27:30', 1),
(7860, 7678, 8, 5, 0, 'will not suite for telecalling his slang is not good and will not sustain and will not handle pressure. expt is 12k as fresher.', 7, '0000-00-00 00:00:00', 1),
(7861, 7670, 59, 5, 0, 'Candidate didnt turn with his confirmation on the salary,No responses to the call,we requestd himto share the previous documents  butno responses after that', 57, '2022-02-04 12:23:36', 1),
(7862, 7677, 59, 5, 0, 'Communication no,looking for non voice only,but not much interest on the job openings,no basic excel knowledge will not sustain', 60, '0000-00-00 00:00:00', 1),
(7863, 7554, 59, 3, 0, 'Selected for 3 months intern with 7.5 K,then 12K TH  with 208 Deductions - iJobs', 59, '2022-02-04 01:14:08', 1),
(7864, 7092, 59, 5, 0, 'Dropped not responding to the calls properly\n', 59, '2022-02-04 03:04:27', 1),
(7865, 7680, 8, 5, 2, 'his slang is too native and will not suite and sustain for telecalling. looking for IT related jobs but no idea about it. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(7866, 7681, 8, 5, 2, 'not looking for telecalling job and will not suite for calling to. married and then shifted to chennai. expt 15k. looking for office assistance job.', 7, '0000-00-00 00:00:00', 1),
(7867, 7682, 8, 5, 0, 'high job need but no communication and avg skills. need lot of training, has 9m exp in complete MIS, 13.5k tH and has proper doc. okay with 2yr service agreement.', 7, '0000-00-00 00:00:00', 1),
(7868, 7683, 8, 5, 0, 'Avg communication and she dont speak regional lang, no basic idea about the profile and expt 15k, married 3m back and settled in chennai. husband- biz asso. ', 7, '0000-00-00 00:00:00', 1),
(7869, 7687, 8, 4, 0, ' knows basics in lang. , high job need and okay with company norms.', 7, '0000-00-00 00:00:00', 1),
(7870, 7685, 8, 4, 3, '6m in semi voice and 1m in voice looking for fixed salary kind of job,  expt 11k and her mom is taking care of family. good in previous companyxquots script.', 7, '0000-00-00 00:00:00', 1),
(7871, 7566, 8, 5, 0, 'expt16k since her last th sal is 15k. no Relevant exp in recruitment and no basic idea about the profile. she was handling 6ppl in previous org. will not sustain for us. not clear about her current Position. but okay with service agmt.', 7, '0000-00-00 00:00:00', 1),
(7872, 7685, 53, 7, 0, 'selected B2B. pls cnfrm DOJ and salary', 8, '2022-02-05 12:19:17', 1),
(7873, 7687, 59, 5, 0, 'Fresher no basic knowledge need to train a lot,thinking a lot on the SA,TxxampC,Will not sustain in our role', 8, '2022-02-05 12:24:17', 1),
(7874, 7685, 59, 3, 0, 'Selected for B2B in consultant 5%', 53, '2022-02-05 04:52:07', 1),
(7875, 7663, 59, 3, 0, 'Selected for B2B Staff Role', 53, '2022-02-05 04:53:03', 1),
(7876, 7701, 8, 2, 0, 'no response after call for zoom', 7, '0000-00-00 00:00:00', 1),
(7877, 7700, 8, 4, 3, 'has 4+yrs of calling exp and okay with RM profile(cold calling and field sales), expt is 20K and above. from 16k he moved to 20k and worked for 6m, job need looking for Descent salary or else will not join. has laptop and 2w.', 7, '0000-00-00 00:00:00', 1),
(7878, 7695, 8, 4, 0, 'has 5m exp with sriram life,  okay with 10k, check once', 7, '0000-00-00 00:00:00', 1),
(7879, 7693, 8, 5, 0, 'has  5m exp in rbl credit card renewal 10k, expt is 15k and will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(7880, 7691, 8, 4, 3, 'good communication, 41 and single, in need of job, has 2yrs general insurance exp, okay with RM profile. expt 20k and okay wit cmpy norms.', 7, '0000-00-00 00:00:00', 1),
(7881, 7697, 8, 5, 0, 'has 1yr exp in holidays Package 14k and expt 18k, will not join without her fnd madavi', 7, '0000-00-00 00:00:00', 1),
(7882, 7698, 8, 5, 0, 'will not suite for our process, very slow and will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(7883, 7694, 8, 4, 3, 'has 6m exp in dmat and in lockdown worked as ambulance driver, expt 13k+ but okay with our company norms. check with sustainability once. father and bro is a driver.', 7, '0000-00-00 00:00:00', 1),
(7884, 7692, 8, 5, 0, 'his pronunciation is not clear and stammering to speak, will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(7885, 7696, 8, 5, 0, 'will not sustain, doesnt have Relevant exp expt is 25k, was getting 16k in next company he got 20k and served only 6m and now expt 25k, relived due to work pressure.', 7, '0000-00-00 00:00:00', 1),
(7886, 7691, 80, 5, 0, 'He came Final round inbetween the interview he gone away', 8, '2022-02-07 03:18:08', 1),
(7887, 7695, 53, 5, 0, 'Not suit for telecalling', 8, '2022-02-07 03:42:47', 1),
(7888, 7694, 57, 4, 0, 'Candidate is ok . kindly confirm the salary and joining date thanks ', 8, '2022-02-07 03:47:00', 1),
(7889, 7700, 31, 5, 3, 'No direct sales experience,    ', 8, '2022-02-07 03:51:44', 1),
(7890, 7694, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2022-02-07 06:12:01', 1),
(7891, 7699, 8, 4, 3, 'has exp in Different Domine and currently into sales and mktnd from on role she is working as freelancer 20k. still serving and exptng same or more than that, married and 2kids 9th and 7th. husband trainer in cricket council.  she is okay with our RM profile (cold calling and field sales)', 7, '0000-00-00 00:00:00', 1),
(7892, 7699, 71, 5, 0, 'REJECTED ', 8, '2022-02-07 06:36:36', 1),
(7893, 7704, 8, 5, 0, 'will not Suit for recruiter profile and too long padi, very childish.', 7, '0000-00-00 00:00:00', 1),
(7894, 7707, 8, 5, 0, 'zero communication, will not suite for recruiter profile.', 7, '0000-00-00 00:00:00', 1),
(7895, 3887, 8, 5, 0, 'will not suite for BDM', 8, '2022-02-08 11:22:03', 1),
(7896, 6586, 8, 5, 0, 'will not suite for crm', 8, '2022-02-08 11:23:34', 1),
(7897, 6001, 8, 5, 0, 'no response', 8, '2022-02-08 11:24:36', 1),
(7898, 5202, 8, 5, 0, 'No Response', 8, '2022-02-08 11:25:47', 1),
(7899, 5200, 8, 5, 0, 'No Response', 8, '2022-02-08 11:26:06', 1),
(7900, 4771, 8, 5, 0, 'No Response', 8, '2022-02-08 11:26:23', 1),
(7901, 4676, 8, 5, 0, 'No Response', 8, '2022-02-08 11:27:00', 1),
(7902, 4434, 8, 5, 0, 'sal expt is high', 8, '2022-02-08 11:27:33', 1),
(7903, 4279, 8, 5, 0, 'No Response', 8, '2022-02-08 11:28:16', 1),
(7904, 4275, 8, 5, 0, 'No Response', 8, '2022-02-08 11:28:42', 1),
(7905, 4202, 8, 5, 0, 'No Response', 8, '2022-02-08 11:29:10', 1),
(7906, 4123, 8, 5, 0, 'expt is 25k but our Budget was 15k', 8, '2022-02-08 11:30:03', 1),
(7907, 7709, 73, 5, 0, 'salary expectation is high 14200/. previous exp furniture sales.\ndoubt for sustainability.', 58, '0000-00-00 00:00:00', 1),
(7908, 4126, 8, 5, 0, 'sal expt high', 8, '2022-02-08 11:35:45', 1),
(7909, 7689, 8, 4, 3, 'has 6m exp in calling, job need and okay with 10k. ', 7, '0000-00-00 00:00:00', 1),
(7910, 7689, 53, 7, 0, 'selected for b2b. 11k CTC, pls cnfrm DOJ', 8, '2022-02-08 11:49:58', 1),
(7911, 7664, 59, 2, 0, 'No Response - 1 num no incoming accepted/1 number RNR\n', 14, '2022-02-08 11:57:25', 1),
(7912, 7664, 14, 7, 0, 'salary 11k need to confirm joining date (according to performance 6months after increment spoken with candidate)', 14, '2022-02-08 11:57:25', 1),
(7913, 7689, 59, 3, 0, 'Selected for B2B in Consultant5%', 53, '2022-02-08 12:10:21', 1),
(7914, 7702, 8, 5, 0, 'no sustainability, has Carrier gap due to his personal reason and accident.  no payslips and expt is 15k+. overall 2yrs exp in calling but not into sales. ', 7, '0000-00-00 00:00:00', 1),
(7915, 7710, 8, 5, 0, 'will not suite for our process, fresher and slow learner and need lot of training. expt 15k. as he Pronounce will move to next company if sal is not satisfied.', 7, '0000-00-00 00:00:00', 1),
(7916, 7712, 8, 4, 0, 'confirm salary', 7, '0000-00-00 00:00:00', 1),
(7917, 7712, 11, 4, 0, 'have to check the sustainability', 8, '2022-02-08 02:41:04', 1),
(7918, 7714, 8, 4, 0, 'has 1yr exp in credit card sales 14k and lay off, expt 13k okay with RM profile. already Attended interview with babu-arumbakkam.', 7, '0000-00-00 00:00:00', 1),
(7919, 7718, 8, 2, 0, 'has 3m exp in hdb fin, 1yr as sales rep in pharma, okay with sales profile but will not handle sales target. expt 15k. will relocate imm. ', 7, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(7920, 7706, 8, 5, 0, 'married 6m back, Recently shifted to chennai with her. husband.  she knows basics only in sql, she dont even knows php basics.', 7, '0000-00-00 00:00:00', 1),
(7921, 7714, 59, 3, 0, 'Selected for Arumbakkam with Pf/ESI /PT', 8, '2022-02-08 05:19:07', 1),
(7922, 7717, 74, 7, 0, 'already working in a private consern as it recruiter for uS basis night shift salary 12k......night shift is not suite and health issues....from office to home direct bus half hour travel.....job need father tailore only .......complete bcom computer.....expected salary 13k....and have laptop...immediate joining...', 58, '0000-00-00 00:00:00', 1),
(7923, 7720, 74, 7, 0, 'Age 25 She Is From Boodhalur Mid To Trichy And Thanjavur Travel Time 1 Hour But Direct Bus To Office Is There .....Age Bit High Parents Looking For Alliance...But She Is Well Matured And Highly Job Need After Marriage Also Worked Properly....Salary 15k I Am Not Confirmed About Salary.....10 Months In Kotak Life Insurance And 2 And Half Years For Hdfc Mobile Banking Process....Completed His Mba In Sastra University....So Highly Professional Candidate And Much Need For Our Team........Father Working In Private Consern 15k Salary....And Mother Home Maker....Have Laptop....Immediate Joining...Already Know About Health Insurance', 58, '0000-00-00 00:00:00', 1),
(7924, 7725, 74, 2, 0, 'fresher only kavibharathi and durga both are friends speak voice loudly fit to team ........but bit childish bcoz of friends .....salary 11k..have laptop....monday joining but i hold this profile to 22 feb', 58, '0000-00-00 00:00:00', 1),
(7925, 7729, 8, 5, 0, 'will not suite for our process,  sal expt is also high, not that much bold ', 7, '0000-00-00 00:00:00', 1),
(7926, 7726, 8, 5, 0, 'not profiled, has exp in qc, maintenance, currently working in manpower company no fixed pay. will not suite for RM profile, expt is 20k, his wife is working in justdial. ', 7, '0000-00-00 00:00:00', 1),
(7927, 7724, 8, 4, 3, 'has overall 2.5yr exp in calling MCTC 18k and expt the same or above, married 1yr back has lot of commitments as he disclose. from thiruvyirkadu no 2w but okay with field sales. ', 7, '0000-00-00 00:00:00', 1),
(7928, 7723, 8, 4, 0, 'knows basics and expt is 23k and for service agmnt he need to check with his parents. eager to do sys task.', 7, '0000-00-00 00:00:00', 1),
(7929, 7728, 8, 4, 0, 'has 7m exp in IDFC-12.5k, 1m in alsec 10k. due to low sal looking for job change. good in current script. can join after 22nd feb. ', 7, '0000-00-00 00:00:00', 1),
(7930, 7724, 57, 4, 0, 'candidate is ok .. he already have 2 years experience for tele calling pls confirm the joining date and salary thanks..', 8, '2022-02-09 03:43:11', 1),
(7931, 7724, 59, 3, 0, 'Selected for Syed Team ,hired as a consultant last drwan package around 21637 TH-18K,we mapped the same .After 3-6 months based on the performance  we can revise the pay and bring him in the Staff', 57, '2022-02-09 04:12:41', 1),
(7932, 7720, 59, 2, 0, 'Requested candidate to share the payslip, once received will confirm the package\n', 74, '2022-02-09 04:32:58', 1),
(7933, 7717, 59, 2, 0, 'Candidate was outside and her sister only responded,will ask her to call once reached', 74, '2022-02-09 04:36:40', 1),
(7934, 7728, 13, 7, 4, 'okay salary confirm pannanum 22nd joining', 8, '2022-02-09 04:38:22', 1),
(7935, 7732, 8, 4, 0, 'fresher for IT has 2yr exp in acc., 1yr courses related to IT, from thirunelveli okay with company norms 2yrs, training with placement. father-farmer and mom- daily wages. ', 7, '0000-00-00 00:00:00', 1),
(7936, 7733, 8, 4, 0, 'fresher, 1yr courses related to IT, from thirunelveli okay with company norms 2yrs, training with placement. father-farmer. ', 7, '0000-00-00 00:00:00', 1),
(7937, 7723, 27, 5, 0, 'No Response.', 8, '2022-02-09 04:40:20', 1),
(7938, 7733, 27, 7, 0, 'Shortlisted. Fresher. Donxquott have an experience in php. Need to build from the basic.', 8, '2022-02-09 04:42:36', 1),
(7939, 7732, 27, 5, 0, 'No Response.', 8, '2022-02-09 04:43:27', 1),
(7940, 7730, 8, 5, 0, 'fresher for IT, interest towards web front end, has 2yr exp in QC due to his sal issues he relived from previous org. 12k. expt 12k and for service agmnt he need to discuss with his parents.', 7, '0000-00-00 00:00:00', 1),
(7941, 7664, 59, 2, 0, 'No response,tried couple of times', 59, '2022-02-09 08:36:37', 1),
(7942, 7738, 8, 4, 0, 'Has 6m Exp In Bharat Matrimony And 10.5k Sal, Due To Timing Issues Relived. Job Need,good with her script. Expt 15k Okay With Upto 12k. Came With Her Fnd. Check Once.', 7, '0000-00-00 00:00:00', 1),
(7943, 7737, 8, 4, 3, 'has 6m exp in bharat matrimony and 10.5k sal, due to timing issues relived. job need, she is bold and confident. expt 15k okay with upto 12k. came with her fnd. check once.', 7, '0000-00-00 00:00:00', 1),
(7944, 7722, 8, 5, 0, 'he is 30 and was working in medical shop for 1.8yrs and 12K take home . he is from maraimalainagar his train travelling time itself more than 1hr. talkative but no convincing skill will not suite for our process. expt sal 12k+                           ', 7, '0000-00-00 00:00:00', 1),
(7945, 7736, 59, 3, 0, 'Selected for Priyanka Jenit Team  as consultant 5%', 60, '0000-00-00 00:00:00', 1),
(7946, 7736, 14, 7, 0, 'salary 10.5k need to confirm joining date', 59, '2022-02-10 11:23:03', 1),
(7947, 7664, 59, 2, 0, 'Tried reaching again on 10Feb Not responding /disconnecting the call', 59, '2022-02-10 11:29:02', 1),
(7948, 7737, 13, 7, 4, 'Salary 11k Monday Joining, will committed salary hike  Based on Performance Next 6 month.', 8, '2022-02-10 12:06:15', 1),
(7949, 7738, 53, 7, 0, 'Selected. pls cnfrm DOJ and salary', 8, '2022-02-10 12:07:04', 1),
(7950, 7739, 8, 4, 0, 'done 6m course and 3w training in fullstack, okay with company norms. expt 8-10k since. willing to learn, time being staying with relative house. job need. parents farmer.', 7, '0000-00-00 00:00:00', 1),
(7951, 7739, 27, 5, 0, 'No Response.', 8, '2022-02-10 12:09:34', 1),
(7952, 7740, 8, 4, 2, 'she has 1.4 yr exp in matrimony 12.5k and 6m in hdfc load 15k mctc, expt upto 20k, she is not confident and speaking like a fresher, not interested in field sales and got selected in icici. check with her sustainability.', 7, '0000-00-00 00:00:00', 1),
(7953, 7740, 16, 7, 0, 'SELECTED ', 8, '2022-02-10 01:06:08', 1),
(7954, 7711, 8, 5, 0, 'will not sustain, expt package is high, her self pronounced she will not sustain if got better offer.', 7, '0000-00-00 00:00:00', 1),
(7955, 7736, 59, 3, 0, 'Selected for Priyanka Jenit Team  as consultant 5%', 14, '2022-02-10 03:23:05', 1),
(7956, 7712, 8, 4, 0, 'confirm salary', 11, '2022-02-10 05:17:59', 1),
(7957, 7748, 83, 5, 0, 'candidate will not sustain xxamp  not willing to work for target job', 58, '0000-00-00 00:00:00', 1),
(7958, 7749, 83, 4, 0, 'okay with the profile, need of job', 58, '0000-00-00 00:00:00', 1),
(7959, 7749, 16, 7, 0, 'SELECTED', 83, '2022-02-11 03:47:58', 1),
(7960, 7751, 59, 4, 0, 'Candidate Average Communication,Statements seems to be fake,no sustainability,Internal Reference so kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7961, 7752, 59, 5, 0, 'Left without attending the interview,came alog with the friend and she got rejected\n', 60, '0000-00-00 00:00:00', 1),
(7962, 7752, 59, 5, 0, 'Left without attending the interview,came alog with the friend and she got rejected\n', 60, '0000-00-00 00:00:00', 1),
(7963, 7754, 59, 3, 0, 'Selected for Manikandan with Pf/ESI/PT\n', 60, '0000-00-00 00:00:00', 1),
(7964, 7751, 13, 5, 0, 'not suitable for tele sales', 59, '2022-02-11 05:40:03', 1),
(7965, 7752, 13, 7, 4, 'ok,12k salary', 59, '2022-02-11 05:42:27', 1),
(7966, 7754, 86, 4, 0, 'i am okay with the person and moved for next Round for conformation.', 59, '2022-02-11 05:49:28', 1),
(7967, 7717, 59, 3, 0, 'Selected for  Thanjavur Team in Consultant 5%', 59, '2022-02-11 05:53:22', 1),
(7968, 7720, 59, 3, 0, 'Selected for Thanjavur in consultant 5%\n', 59, '2022-02-11 06:11:53', 1),
(7969, 7754, 18, 7, 4, 'Selected For mani Team.  Offered 3L CTC Overall. Monday Joining', 86, '2022-02-11 06:40:56', 1),
(7970, 7754, 60, 1, 0, NULL, 18, '2022-02-12 11:31:17', 1),
(7971, 7760, 24, 7, 0, 'candidate selected for next round with Arun', 60, '0000-00-00 00:00:00', 1),
(7972, 7759, 59, 5, 0, 'Too long distance,looking only for the receptionist role,no basic knowledge in the Excel Data,will not sustain ,matured butwill not run for a long\n', 60, '0000-00-00 00:00:00', 1),
(7973, 7758, 59, 5, 0, 'Communication average,handling Pressure No.No relevant Exp will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(7974, 7760, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI', 24, '2022-02-12 01:34:54', 1),
(7975, 7740, 59, 3, 0, 'selected for Thiyagarajan Team in consultant 5%', 16, '2022-02-12 02:36:18', 1),
(7976, 7749, 59, 3, 0, 'Selected for Thiyagu Team RE in Consultant 5%', 16, '2022-02-12 02:36:44', 1),
(7977, 7737, 59, 3, 0, 'Selected for Muthu TEam in Consultant 5%', 13, '2022-02-12 03:45:04', 1),
(7978, 7738, 59, 3, 0, 'Selected for Muthu Team Consultant 5%', 53, '2022-02-12 03:49:01', 1),
(7979, 7752, 59, 5, 0, 'Left without attending the interview,came alog with the friend and she got rejected\n', 13, '2022-02-12 03:52:37', 1),
(7980, 7770, 8, 4, 2, 'has 1.9 yr exp in apollo as front office receptionist, handling inbound calls regarding services 17.5k TH, expt 18k and job need, holds offer since our office is nearby she choose here. ', 7, '0000-00-00 00:00:00', 1),
(7981, 7764, 8, 4, 0, 'ece-2018 batch, no basic knowledge and said i read in google. for career gap she blames her parents. expt 3L, since her bro is working in IT she chosen IT, for terms and conditions she has to check with her family, will relocate to tnagar. ', 7, '0000-00-00 00:00:00', 1),
(7982, 7771, 8, 5, 0, 'not interested in telecalling, since she is not interested in calling she dont wanna to attend interview and her way of talking and attitude will not suite for us, still serving in accenture(contract based) 22days notice. expt 18-20k. and looking for similar kind of job and no excel knowledge, no idea about gsheets. ', 7, '0000-00-00 00:00:00', 1),
(7983, 7755, 8, 5, 0, 'fresher, currently doing his basics course in igenuine till march. dont know any basics and expt is 15k, need time to think about the company norms.', 7, '0000-00-00 00:00:00', 1),
(7984, 7766, 8, 5, 0, 'looking for WFH. from ponneri too long and sal expt is 16-17k TH, currently working in amazon seller, came with friends.', 7, '0000-00-00 00:00:00', 1),
(7985, 7772, 8, 5, 0, 'no sustainability, 6m as part time in pizza maker, 6m in sriram li, 3m as game designer, no basic knowledge in lang like php. not clear about his previous jobs, not interested in calling, expt 10-12k. need time to think about the company norms.', 7, '0000-00-00 00:00:00', 1),
(7986, 7774, 8, 5, 0, 'not interested in calling,  from ponneri too long, okay with collection profile but sal expt is 15k TH, currently working in amazon seller, came with friends.', 7, '0000-00-00 00:00:00', 1),
(7987, 7775, 8, 5, 0, 'not speaking up, will not suite for telecalling, from ponneri too long, okay with collection profile but sal expt is 15k TH, currently working in amazon seller, came with friends.', 7, '0000-00-00 00:00:00', 1),
(7988, 7764, 63, 1, 0, NULL, 8, '2022-02-14 01:20:28', 1),
(7989, 7770, 16, 7, 0, 'HOLD ON  FOR SALARY  DISCUSSION', 8, '2022-02-14 01:25:10', 1),
(7990, 7769, 74, 5, 0, 'He is not that much profile have no vision  to where he is  going to work.doing his msc in regular last sem due to covid attendingonline classes xxamp intrested in it field so will not suit for crm', 58, '0000-00-00 00:00:00', 1),
(7991, 7769, 74, 5, 0, 'He is not that much profile have no vision  to where he is  going to work.doing his msc in regular last sem due to covid attendingonline classes xxamp intrested in it field so will not suit for crm', 58, '0000-00-00 00:00:00', 1),
(7992, 7768, 8, 4, 0, 'currently working in Travels handling end to end admin and booking, she dont have esi and pf there and that is the only reason for job change. has 3+ yrs exp in calling. she is from chengalpet but 2yrs she worked in imarqu, Mctc is 16k and expt is 17k. father-late and her mom was working in clg. ', 7, '0000-00-00 00:00:00', 1),
(7993, 7768, 11, 1, 0, NULL, 8, '2022-02-14 04:31:12', 1),
(7994, 7776, 8, 5, 0, 'Communication below average, has recruitment exp but am not convinced with her existing profile analysis . has only basic knowledge in sourcing. 1yr in finance company as recruiter-10k and past 2yrs in house recruitment as WFH module with 15k take home, expt 20k as take home. not an immediate joiner 2m notice period. reason for job change- since she in recruitment for past 3yrs looking for career growth. she doesnt prefer recruiter profile.', 7, '0000-00-00 00:00:00', 1),
(7995, 7718, 8, 5, 0, 'no response.', 8, '2022-02-15 10:17:53', 1),
(7996, 7770, 59, 3, 0, 'Selected for Thiyagu Team in Staff Role Prop Company,have exp in Telecalling but not a relevant one,let us analyse the candidate in 7 Days training', 16, '2022-02-15 11:55:04', 1),
(7997, 7783, 8, 5, 0, '2yrs in credit card and fresher for us. will not suite for our process, Mctc is 13.5k and expt 20k.  ', 7, '0000-00-00 00:00:00', 1),
(7998, 7777, 8, 5, 0, 'not okay with company norms, has 3m exp in php 7k and expt 12k, will not sustain.', 7, '0000-00-00 00:00:00', 1),
(7999, 7756, 8, 5, 0, 'Fresher completed 4m course in besant tech but no basic skills and slow learner, he need to check with his brother regarding company norms and he is working in cognizant. parents into catering.', 7, '0000-00-00 00:00:00', 1),
(8000, 7757, 8, 4, 0, 'Fresher completed 4m course in besant tech willing to learn and job need, he is okay with company norms, expt 10k.', 7, '0000-00-00 00:00:00', 1),
(8001, 7779, 8, 4, 3, 'has 6m exp in calling credit card collection 17k, okay for renewal and he can learn, expt 15-17k and other company norms. moved his profile to herash and gokul. they shortlisted, just confirm his salary and DOJ.', 7, '0000-00-00 00:00:00', 1),
(8002, 7779, 59, 3, 0, 'Selected for Renewal with CTC 180000 includes PF/ESI/PT', 8, '2022-02-15 12:45:44', 1),
(8003, 7784, 8, 5, 0, 'not speaking up and will not suite for calling and she is not interested in calling too', 7, '0000-00-00 00:00:00', 1),
(8004, 7785, 8, 4, 3, 'has 7m calling exp in matrimony and 4+yrs in 2wheeler loan and finance in different org. last mctc 18k and expt 19-20k, he is from katankulathur check it once. has 2w and laptop.', 7, '0000-00-00 00:00:00', 1),
(8005, 7757, 63, 1, 0, NULL, 8, '2022-02-15 01:32:38', 1),
(8006, 7728, 59, 2, 0, 'RNR', 13, '2022-02-15 02:57:24', 1),
(8007, 7785, 80, 7, 4, 'Good Guy. But long distance onlybthe ', 8, '2022-02-15 03:52:35', 1),
(8008, 7788, 8, 2, 0, 'has 2.6yrs exp in hindi calling and 5yrs in hotel mgnt. has no sales exp. he is comfortable with hindi. he need to discuss with his mom and get back. expt is 18k. he is from maharastra and settled in tamil nadu.', 7, '0000-00-00 00:00:00', 1),
(8009, 7787, 8, 5, 0, 'Fresher for digital marketing, completed 4m internship with 15k and expt is 20k. he is not strong in basics and he is not active. shared profile with reyaz and received the same feedback.', 7, '0000-00-00 00:00:00', 1),
(8010, 7781, 8, 5, 0, 'he was an agent in exide LI (commission based) for 2yrs, 4yrs as sales incharge like maintanance, 2yrs in real estate as freelancer (commission based) selling plots and house, for past 2m he is working in a real estate company as BDM with 20k. his expt is 25k take home. he is from telugana and relocated to hyderabad with his wife and kid. father into hotel biz. his communication is not good and expt is high will not suite for RM profile.', 7, '0000-00-00 00:00:00', 1),
(8011, 7773, 8, 4, 3, 'has 1yr exp in alsec credit card sales and 7m in star health, he is from chennai and working in vellore. his family relocating to hyderabad so he is looking for job there. his father in to constructions, has 2w (will buy with in a month) and laptop. 30 days notice.mctc is 17k and expt is 21k.', 7, '0000-00-00 00:00:00', 1),
(8012, 7773, 18, 7, 4, 'Selected for Hyderabad. Quality candidate. Asked 2.25CTC but can give upto 2.4 CTC. Please spesk and confirm.  Post offer he will put paper and join within a month.', 8, '2022-02-15 06:17:48', 1),
(8013, 7789, 8, 2, 0, 'from kanchipuran more than 2hr travel, mctc 14.5k and expt 18k.', 7, '0000-00-00 00:00:00', 1),
(8014, 7791, 8, 5, 0, 'has 2.5yr exp in consultancy and loan process. no existing analysis his expt is 15k th and his mctc is 13k and 11.5k th, 6m gap and got married 15days back. will not sustain for our process and salary.', 7, '0000-00-00 00:00:00', 1),
(8015, 7792, 8, 5, 0, 'fresher, not interested in sales and will not handle pressure and sustain. expt 11-12k she is from theni and currently residing in velacherry.', 7, '0000-00-00 00:00:00', 1),
(8016, 7794, 8, 5, 0, 'No degree 10th, married 2kids, husband auto mechanic, 1.6yr in child life trust as caller 9K, reason for reliving work pressure, will not handle sales pressure and no convincing skill will not suite for us. expt 11k.', 7, '0000-00-00 00:00:00', 1),
(8017, 7795, 8, 5, 0, 'bsc maths due to BL he completed in 2021, no basic knowledge in development. will learn and come. father late, mom aeo in govt. ', 7, '0000-00-00 00:00:00', 1),
(8018, 7796, 8, 4, 3, 'has 1yr in AE- creditcard and 8m in IDBI-saving and current acc opening, 1yr in biz and personal loan, last mctc 21k and expt 24k. has 2wheeler and will arrange lap, he is from perambur.', 7, '0000-00-00 00:00:00', 1),
(8019, 7796, 86, 4, 0, 'Ok for next round', 8, '2022-02-16 02:59:22', 1),
(8020, 7796, 18, 7, 4, 'Selected for Mani Team. Ready to Join next monday. Clearly check his last CTC and can give max 10% hike.', 86, '2022-02-16 03:15:41', 1),
(8021, 7793, 8, 4, 3, 'he is from Villupuram, has 1yr core exp and 2yrs in IDFC acc opening, loan and cards, due to accident he relived and has all his papers 21k and expt 22-25k, will relocate to chennai with wife and kid. immediate joiner. has 2w and laptop he need to arrange. ', 7, '0000-00-00 00:00:00', 1),
(8022, 7793, 80, 5, 0, 'Rejected ', 8, '2022-02-16 05:02:37', 1),
(8023, 7785, 18, 7, 0, 'Shortlisted for Pandi Team. Discussed the pay structure with HR. Joining on Monday', 80, '2022-02-16 05:32:46', 1),
(8024, 7798, 8, 5, 0, 'Avg communication, has 2w and no laptop and cant arrange. father runs a grocery shop, mom house wife, 15days notice. he is From Bhainsa 10km to mathapur, currently working in HDB fin  credit card sales for the pastr 10m and ctc is 1.5L expt is 3L, due to work pressure and low salary he is looking for job change, will not sustain for us,', 60, '0000-00-00 00:00:00', 1),
(8025, 7728, 59, 2, 0, 'Discussed with the candidate need to confirm the salary', 59, '2022-02-16 08:06:52', 1),
(8026, 7800, 59, 4, 0, 'communication is good,looking for any opportunities,can be trained in RM matured candidate,ready to relocate to chennai,kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(8027, 7800, 80, 7, 4, 'Good Guy. Lot of commitment ', 59, '2022-02-17 10:37:06', 1),
(8028, 7799, 8, 5, 0, 'has 2yr exp in semi voice with 12.5K, was taking care of his father tailoring biz for the past 1 yr. not bold and not speaking up will not suite for our process. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(8029, 7801, 8, 4, 0, 'already attended interview by last September. bcoz of agreement he didnt joined here. he joined in a org as trainee but no stipend and salary and learning, now he is okay with company norms.', 7, '0000-00-00 00:00:00', 1),
(8030, 7801, 59, 3, 0, 'Selected for PHP - 6 months Intern - 3.5K Stipend plus 2.6 yrs of Employment', 8, '2022-02-17 12:38:11', 1),
(8031, 7802, 8, 5, 0, 'Fresher for calling, was working in chennai corparation for past 2yrs timing 7:00am to 12:00pm with 15K, looking for similar kind of job with 15K+ salary. very lethargic he dont prefer target based job, will not suite for our process and his father and brother-driver, mom-hw.', 7, '0000-00-00 00:00:00', 1),
(8032, 7803, 8, 5, 0, 'attened technical and got same feedback from all, no practical knowledge. she memorized all interview questions. expt 10K+ and initially she was not okay with 3m internship and norms later on she is okay with it. ', 7, '0000-00-00 00:00:00', 1),
(8033, 7804, 8, 4, 0, 'fresher for calling, 5050 since its internal reference we can try, job need and expt is 10-11k.', 7, '0000-00-00 00:00:00', 1),
(8034, 7803, 8, 5, 0, 'attened technical and got same feedback from all, no practical knowledge. she memorized all interview questions. expt 10K+ and initially she was not okay with 3m internship and norms later on she is okay with it. ', 8, '2022-02-17 02:25:49', 1),
(8035, 7804, 13, 7, 4, 'ok,10k salary Monday joining', 8, '2022-02-17 04:09:39', 1),
(8036, 7712, 29, 4, 2, 'Esale RM, Karthika Team', 8, '2022-02-17 04:14:21', 1),
(8037, 7701, 8, 5, 0, 'no response', 8, '2022-02-17 04:14:37', 1),
(8038, 6496, 8, 2, 0, 'last nov he applied interview by sabeha, from thirunelveli and fresher okay with company norms now, done 3m course in front end, looking for react js, got offer in core but not joined due to 3.5yr agreement. has to check with sustainability once. 3 bros working in uae since he is last one he stays with his mom. not strong in basics he will get back on monday. lets see.', 7, '0000-00-00 00:00:00', 1),
(8039, 7807, 8, 4, 3, 'Has sales exp but fresher for us, i couldnt see sustainability 7m armon switches,7m in electrical field and 4m in sanitizer agency but we can try with his profile, he has avg communication and sales exp and his ctc is 3.2L and expt is 3-3.2L. His father and sister are advocates and he has 2w but no laptop he will arrange within a month.', 7, '0000-00-00 00:00:00', 1),
(8040, 7808, 8, 5, 0, 'He is from maharastra and if got offer he will relocate to hyderabad,  his english comm is not convincing he is looking for team lead category since he is handling 15 ppl in current org. and he is not interested in target based and field sales job, his existing analysis is not convincing. no notice period and expt 25k take home, no relavant sales exp. he need a time to think about it too.', 7, '0000-00-00 00:00:00', 1),
(8041, 7807, 18, 8, 0, 'Kindly Refix', 8, '2022-02-17 05:48:34', 1),
(8042, 7806, 8, 4, 0, 'fresher, immature and all his dissensions are taken by his sister, got offer for 12.5k and not joined there. has basic calling skills. check once.', 7, '0000-00-00 00:00:00', 1),
(8043, 7813, 8, 5, 0, 'his pronunciation is not clear, will not suite for our process , 2m in calling 9k he is not okay sal, expt 11-12k.', 7, '0000-00-00 00:00:00', 1),
(8044, 7815, 8, 4, 0, 'has 6m exp in matrimony 10.4k, only son due to his father health he is looking for job in nearby. expt as per company.', 7, '0000-00-00 00:00:00', 1),
(8045, 7817, 8, 5, 0, 'no basic skills, father traffic police, since he is not interested in training he is looking for job. expt 15k', 7, '0000-00-00 00:00:00', 1),
(8046, 7816, 8, 5, 0, 'oral and writing is below avg, has around 10yr exp with 19k ctc and expt 30%, he is very slow and couldnt see his exp in terms of skills.', 7, '0000-00-00 00:00:00', 1),
(8047, 7806, 14, 1, 0, NULL, 8, '2022-02-18 11:41:49', 1),
(8048, 7815, 13, 7, 4, 'ok,11k salary monday joining\n(after 6M performance based Hike)', 8, '2022-02-18 11:48:31', 1),
(8049, 7712, 8, 4, 0, 'confirm salary', 29, '2022-02-18 12:13:47', 1),
(8050, 7785, 60, 1, 0, NULL, 18, '2022-02-18 12:33:44', 1),
(8051, 7800, 18, 8, 0, 'Kindly Refix', 80, '2022-02-18 12:36:43', 1),
(8052, 7821, 8, 4, 0, 'has exp in direct collection with 14k, expt 14k and no calling exp and we can try his profile, residing in porur.', 7, '0000-00-00 00:00:00', 1),
(8053, 7819, 8, 5, 0, 'her communication is below avg, not interested in calling profile and target based. she will not suit for both CRM and recruiter profile. she is separated with her parents and kid.', 7, '0000-00-00 00:00:00', 1),
(8054, 7814, 8, 4, 0, 'ha 1yr exp in logistics and 1.8yr in SMO. 2L and hold offer for 3L and expt 3L+. ', 7, '0000-00-00 00:00:00', 1),
(8055, 7825, 8, 5, 0, 'his pronunciation is not good, will not suite for health, has sales exp and expt 15k tH.ref suthagar.', 7, '0000-00-00 00:00:00', 1),
(8056, 7815, 59, 3, 0, 'Selected for Elite RE in consultant 5%', 13, '2022-02-18 03:13:57', 1),
(8057, 7804, 59, 3, 0, 'Selected for Elite Consultant Role 5%', 13, '2022-02-18 03:27:23', 1),
(8058, 7821, 24, 4, 0, 'selected for next round', 8, '2022-02-18 06:23:11', 1),
(8059, 7824, 8, 4, 0, 'has 1ye exp in credit card and 2yrs in vivo showroom, stays 17km away from our office, has 2w and laptop, father driver and only son. mctc is 14.5k and expt 17-18k. Avg communication.', 7, '0000-00-00 00:00:00', 1),
(8060, 7822, 8, 5, 0, 'has 5yrs exp in credit card but not convinced with his analysis. comm. below avg. last mctc is 23k and expt 28K +, holds an offer for 28k. 6m worked in HDB and no doc for that. parents farmer and only son.', 7, '0000-00-00 00:00:00', 1),
(8061, 7818, 8, 8, 0, 'was waiting to connect. no response', 7, '0000-00-00 00:00:00', 1),
(8062, 7812, 8, 5, 0, 'has 9m exp in content writing in 2014 has 8yr gap in between, no basic idea about DM, expt 17k.', 7, '0000-00-00 00:00:00', 1),
(8063, 7814, 69, 5, 0, 'HIgh salary expectations', 8, '2022-02-18 07:05:34', 1),
(8064, 7827, 8, 4, 0, 'has 2yrs exp in loan and credit card, from siddipet and okay with calling and field sales bcoz previously doing similar kind of profile, but sal expt is high. ctc 1.7l and expt 2.8l. parents farmers. english comm. avg and not convincing, has 2w and will arrange laptop. okay with direct walkin on monday or virtual on saturday.', 7, '0000-00-00 00:00:00', 1),
(8065, 7827, 18, 8, 0, 'Kindly Reschedule', 8, '2022-02-19 09:57:10', 1),
(8066, 7824, 18, 8, 0, 'Kindly Reschedule', 8, '2022-02-19 09:57:38', 1),
(8067, 7712, 59, 3, 0, 'Selected for ESales Chennai with PT Deductions only,5050 candidate ,11 months 2 companies travelled, 1st company started with 12K,in the month of relieving only she was revised as 15K', 8, '2022-02-19 09:59:46', 1),
(8068, 7821, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 24, '2022-02-19 10:34:18', 1),
(8069, 7832, 8, 5, 0, 'has 5m exp in loan with 12k no proper reliving, not good in script and expt 13-14k, will not handle sales pressure.', 7, '0000-00-00 00:00:00', 1),
(8070, 7834, 8, 4, 3, 'she has a basic calling skills and convincing. okay wit calling and fresher, check with sustainability alone.', 7, '0000-00-00 00:00:00', 1),
(8071, 7834, 34, 7, 0, 'monday joining', 8, '2022-02-19 02:40:01', 1),
(8072, 7834, 59, 3, 0, 'Selected for Guru Team  in consultant role 5%', 34, '2022-02-19 05:27:30', 1),
(8073, 7835, 8, 4, 0, 'has 9m exp in starhealth, 3m and 4m in other sales with 15k take home. she is from vijayawada and residing in kukapalli PG. father into car selling and real estate. only daughter and expt is 18k (negotiable). need to check her sustainability once.', 7, '0000-00-00 00:00:00', 1),
(8074, 7830, 8, 5, 0, 'will not suite for our process, expt is high and no relevant exp. previously he was working in retail. no sales and convincing skills.', 7, '0000-00-00 00:00:00', 1),
(8075, 7823, 8, 5, 0, 'no english comm. he is learning and completed 3m internship and he is doing freelance projects. expt 15-20k, reyaz checked his website and rejected. ', 7, '0000-00-00 00:00:00', 1),
(8076, 7838, 8, 5, 0, 'working as data entry operator, no basic knowledge, she is learning but no skills, expt 12k.', 7, '0000-00-00 00:00:00', 1),
(8077, 7843, 8, 4, 3, 'was working in phrma 2ys with 18k, was taking care of his own pharmacy now his bro handling it. check with sustainability once, okay wit calling and our process. has 2w and will arrange laptop. expt 15k ', 7, '0000-00-00 00:00:00', 1),
(8078, 7846, 8, 5, 0, 'looking for IT jobs, will not suite for voice and sales profile, not speaking up, told him to learn and come.', 7, '0000-00-00 00:00:00', 1),
(8079, 7842, 8, 5, 0, 'will not suite for RM profile, English comm bellow avg, father and brother into farming, he is fresher will not suite for calling and sales. ', 7, '0000-00-00 00:00:00', 1),
(8080, 7843, 24, 4, 0, '15k salary .. next round Arun', 8, '2022-02-21 02:36:02', 1),
(8081, 7843, 59, 3, 0, 'Selected for Suthagar Team,No relevant Exp,candidate  need to open a lot,can be trained,need to analyse him in the training period', 24, '2022-02-21 03:13:07', 1),
(8082, 7840, 8, 5, 0, 'her comm is avg, no idea in blogs and has exp in ecom content writing. will not suite for us.', 7, '0000-00-00 00:00:00', 1),
(8083, 7837, 8, 4, 0, 'Fresher for ReactJS, currently working with his bro (WFH) in html and css with 22k. not answered for the very basic questions but says he is not good in oral and strong in practical. i suggest team to give him any system task. . expt 25k-30k. from salem will relocate to chennai.', 7, '0000-00-00 00:00:00', 1),
(8084, 7826, 8, 5, 0, 'will not suite for our process and expt high', 7, '0000-00-00 00:00:00', 1),
(8085, 7841, 73, 4, 0, 'selected , confirm doJ.', 60, '0000-00-00 00:00:00', 1),
(8086, 7849, 8, 4, 0, 'as he said has 2yr exp in real estate but he couldnxquott deliver that clearly. expt 15k and min 12k in hand. will not handle our sales pressure. not completed his degree.', 7, '0000-00-00 00:00:00', 1),
(8087, 7849, 53, 5, 0, 'Hving 2 yrs experience, but he s not opening his mouth abt his previous calling script.', 8, '2022-02-22 02:42:46', 1),
(8088, 7852, 73, 5, 0, 'he looking for non-voice process. couldnxquott handled pressure  so dropped.', 60, '0000-00-00 00:00:00', 1),
(8089, 7853, 73, 7, 0, 'need to confirm DOJ. looking for voice process. salary 10k ', 60, '0000-00-00 00:00:00', 1),
(8090, 7853, 59, 2, 0, 'Discussed with the candidate,Distance around 40 kms up and down,he prefers to have opening in  sriperumbuthur itself,Have exp in non voice process only,fresher for Voice,he said 10K ok for Salary during  interview,but after travelling today for interview his min is 13K,sustainability doubts,He needs time to  give his confirmation', 73, '2022-02-22 04:07:07', 1),
(8091, 7796, 60, 1, 0, NULL, 18, '2022-02-22 04:25:28', 1),
(8092, 7833, 59, 5, 0, 'Dropped not suitable - Feedback from Interviewer', 73, '2022-02-22 05:49:35', 1),
(8093, 7841, 59, 3, 0, 'Selected for Tiruvallur Location - Consultant 5%', 73, '2022-02-22 05:50:19', 1),
(8094, 7847, 8, 4, 0, 'ignore the previous feedback. Fresher, not strong in basics, but okay with 3m as trainee. willing to learn he is from rajapalayam, will relocate and immediate joiner. parents- daily wages, expt 10k.', 7, '0000-00-00 00:00:00', 1),
(8095, 7847, 8, 4, 0, 'ignore the previous feedback. Fresher, not strong in basics, but okay with 3m as trainee. willing to learn he is from rajapalayam, will relocate and immediate joiner. parents- daily wages, expt 10k.', 8, '2022-02-22 06:01:51', 1),
(8096, 7837, 54, 1, 0, NULL, 8, '2022-02-22 06:02:41', 1),
(8097, 7847, 54, 1, 0, NULL, 8, '2022-02-22 06:05:30', 1),
(8098, 7868, 8, 5, 0, 'poor comm. from guduvancherry too long, has5m exp in seo and expt 15k, need time to check with company norms', 7, '0000-00-00 00:00:00', 1),
(8099, 7870, 73, 5, 0, 'dropped , looking for accounts department ', 58, '0000-00-00 00:00:00', 1),
(8100, 7871, 73, 5, 0, 'looking for non voice because already worked in  voice process now not interest to this field. so dropped', 58, '0000-00-00 00:00:00', 1),
(8101, 7879, 8, 4, 0, '5050 profile, internal reference. has 6m exp in matrimony 10k, expt 13-14k. check sustainability once.', 7, '0000-00-00 00:00:00', 1),
(8102, 7872, 8, 4, 3, 'has 1yr exp in loan HDB, okay with RE and has 2w and need to arrange laptop, mTH-13.5k and expt 15-16k. immediate joiner for babu team.', 7, '0000-00-00 00:00:00', 1),
(8103, 7861, 8, 4, 0, 'has exp in customer support and 3m in star health, his script was good. expt 13-15k. has 2w but not okay wit field sales. ', 7, '0000-00-00 00:00:00', 1),
(8104, 7872, 24, 4, 0, 'selected for next round,. Mr.Ramesh', 8, '2022-02-23 01:03:06', 1),
(8105, 7879, 13, 7, 4, 'ok.11k salary tomorrow joining', 8, '2022-02-23 01:04:09', 1),
(8106, 7861, 53, 7, 0, 'Selected for muthu team. kindly cnfrm salary and DOJ', 8, '2022-02-23 01:05:45', 1),
(8107, 7858, 8, 5, 0, 'Has 1yr exp in customer support. not interested in calling, looking for chat support and backend. no knowledge in Excel. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(8108, 7859, 8, 4, 0, 'good in oral, knows basics in DM and blogs. we can train him and he is okay with our norms. has 1yr exp in amazon with 2.5L.', 7, '0000-00-00 00:00:00', 1),
(8109, 7865, 8, 5, 0, 'has 6m exp in airtel inbound process as customer support with 15k mctc, he prefer non voice. will not sustain and he dont have proper reliving and payslip for 15k. expt 14-16k take home. in non voice he dont have excel knowledge.', 7, '0000-00-00 00:00:00', 1),
(8110, 7869, 8, 5, 0, 'From bihar, language issues, he couldnt speak and understand english easily, no basic knowledge in react js. need lot of learning. but he is okay with our norms.', 7, '0000-00-00 00:00:00', 1),
(8111, 7880, 8, 4, 3, 'has 6m exp in starhealth 12k and 6m in icici 2w insurance 13k. expt 14k and no father job need mom is working in coffee shop. ', 7, '0000-00-00 00:00:00', 1),
(8112, 7880, 53, 7, 0, 'Selected for priyanka team. kindly cnfrm the salary and DOJ', 8, '2022-02-23 01:30:12', 1),
(8113, 7879, 59, 3, 0, 'Selected for Muthu Team - consultant 5%', 13, '2022-02-23 01:43:06', 1),
(8114, 7877, 8, 5, 0, 'fresher, came with kavi nilavu, she knows nothing and not speaking up, will not suite for any of our openings. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(8115, 7867, 8, 5, 0, 'has 7m exp 2.4l ctc and expt 3.5l.', 7, '0000-00-00 00:00:00', 1),
(8116, 7890, 8, 4, 3, 'has 8m exp in semi voice and 1yr in axis bank and 2 yr in other sales, okay with re skills, has 2w and laptop, expt 18k min 15k as th, ', 7, '0000-00-00 00:00:00', 1),
(8117, 7886, 74, 5, 0, 'highly salary expected not fit to team high age', 60, '0000-00-00 00:00:00', 1),
(8118, 7863, 73, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8119, 5447, 74, 7, 0, 'candidate already shortlisted past 6 months back but have no transportation so she is not joined right now have bike but maturity is bit low kindly check one bcoz it makes a attrition to find which one best to his life....no laptop have bike....salary 10 to 11k.....confirm once', 58, '0000-00-00 00:00:00', 1),
(8120, 7891, 8, 4, 0, 'has 10m exp in sbi cards and 1m in star health, husband driver and 2yr kid, job need and expt 15k. good in scripts. ', 7, '0000-00-00 00:00:00', 1),
(8121, 7892, 8, 5, 0, 'fresher, as 3m exp in sbi cards 12.5k th and expt 15k. no job need and time being looking for job. will not handle pressure and very childish. ', 7, '0000-00-00 00:00:00', 1),
(8122, 7893, 8, 5, 0, 'has 3m exp in sbi cards 14k th and expt 18k, she is a beautician and no job need, settled family. time being looking for job and she will take leave during booking dates.', 7, '0000-00-00 00:00:00', 1),
(8123, 7887, 8, 5, 0, 'Fresher for us, has 7m exp in bijus with 7L. expt 25k, he is not comfortable with RM profile, for crm he need time to think about it. his passion into modeling and thats the only reason he came chennai. will not sustain here.', 7, '0000-00-00 00:00:00', 1),
(8124, 7878, 8, 5, 0, 'will not suite for calling and not active, very slow. expt 10k.', 7, '0000-00-00 00:00:00', 1),
(8125, 7876, 8, 5, 0, 'He is a fireman and has 4yr exp in fire and safty, last 6m he was working with his bro as front end developer with 16k, expt 17-18k, for trainee he need to check with his family it seems. his father is also a fireman.', 7, '0000-00-00 00:00:00', 1),
(8126, 7856, 8, 4, 0, 'Fresher for sales, he is preparing for gate exams, wrote exams and waiting for results has to check sustainability once. expt 12-13k. will relocate immediately father working in NLC, 2bros abd both are working.', 7, '0000-00-00 00:00:00', 1),
(8127, 7857, 8, 4, 0, 'Fresher, from vedaranyam will relocate to chennai, no basic skills, willing to learn in PHP. told him to learn and get back to you. parents farmers, expt 15k.', 7, '0000-00-00 00:00:00', 1),
(8128, 7872, 88, 4, 0, 'ok', 24, '2022-02-23 06:42:27', 1),
(8129, 7889, 8, 5, 0, 'Comm. is not as we expect. overall 7m exp and 4m in DM with 18k, expt the same. has 3more days of notice and will relocate to chennai. parents farmers. he knows basics in DM.', 7, '0000-00-00 00:00:00', 1),
(8130, 5447, 59, 2, 0, 'Candidate is not available ,her mother is attending the call, need to discuss and finalise with the candidate', 74, '2022-02-23 06:53:57', 1),
(8131, 7856, 24, 5, 0, 'he wrote GATE exam  and also he attend coaching classes.. so he not suitable for us.. ', 8, '2022-02-23 06:55:13', 1),
(8132, 7857, 27, 1, 0, NULL, 8, '2022-02-23 06:55:51', 1),
(8133, 7859, 69, 4, 0, 'Candidate selected for final round', 8, '2022-02-23 06:59:18', 1),
(8134, 7882, 8, 5, 0, 'Has 4yr exp in moothut gold loan as asst manager and handling 6 members am not convinced with his existing analysis. looking for similar kind of profile, english comm. is poor. will not suite for team handling and our process, mctc is 20k and expt 25k.', 7, '0000-00-00 00:00:00', 1),
(8135, 7891, 57, 5, 0, 'salary issue ', 8, '2022-02-24 10:08:52', 1),
(8136, 7890, 57, 4, 0, 'candidate was ok kindly confirm the salary and joining date', 8, '2022-02-24 10:11:43', 1),
(8137, 6496, 8, 5, 0, 'fresher, no basic knowledge in terms of technical, job need so told him to learn and get back.', 8, '2022-02-24 10:12:17', 1),
(8138, 7904, 74, 5, 0, 'not that much profile and no voive clarity not fit for teloe sales', 58, '0000-00-00 00:00:00', 1),
(8139, 7898, 74, 7, 0, 'sbi credit card experience 2 years and bajaj ventutres 3 years experience....marriage fixed by june only...salary expected 13k take home....well profiled and fit to telecalling good voice clarity fit to team march joining no laptop..need to confirm once', 60, '0000-00-00 00:00:00', 1),
(8140, 7907, 74, 2, 0, 'need to hold this candidate good voice clarity but bit sustainabilioty issue and looking for marriage also will check', 60, '0000-00-00 00:00:00', 1),
(8141, 7898, 59, 3, 0, 'Selected for Sithyvinayagam team in consultant role\n', 74, '2022-02-24 03:11:42', 1),
(8142, 7906, 8, 5, 0, 'comm below avg, has 2yr mis exp. basic xl knowledge and mctc 15k and expt 20k. already worked for 2yr contract now he need time to think about our company norms. ', 7, '0000-00-00 00:00:00', 1),
(8143, 7901, 8, 4, 0, '7m in ui/ux, okay with all the company norms, has 28days notice. gokul told to come on last day of notice. trainee then placement. ', 7, '0000-00-00 00:00:00', 1),
(8144, 7835, 18, 7, 4, 'Selected for Hyderabad. Can give 20K CTC Overall', 8, '2022-02-24 04:00:52', 1),
(8145, 7810, 8, 5, 0, 'has stammering issues, will not suite for voice, no xl skills will not suite for backend too. ', 7, '0000-00-00 00:00:00', 1),
(8146, 7901, 54, 1, 0, NULL, 8, '2022-02-24 04:28:51', 1),
(8147, 7880, 59, 3, 0, 'Selected for Priyanka Jenit Team in consultant 5%', 53, '2022-02-24 05:26:53', 1),
(8148, 7890, 88, 4, 0, 'Candidate is ok ,', 57, '2022-02-24 05:28:37', 1),
(8149, 7861, 59, 5, 0, 'Discussed and proposed the salary breakup for his approval,finally the candidate messaged that he is not interested in the profile.REquested for the reasons but no response after that', 53, '2022-02-24 05:43:57', 1),
(8150, 6822, 59, 5, 0, 'candidate not interested with TxxampC', 53, '2022-02-24 05:50:39', 1),
(8151, 7873, 8, 4, 0, 'She has 1.8yrs exp in axis gold loan. has avg communication. she is staying in PG and her parents  are in native. Was getting 12k ctc and expt 16-17k. reason for reliving is low salary.', 7, '0000-00-00 00:00:00', 1),
(8152, 7896, 8, 5, 0, 'has 1yr exp in core and 2yrs gap. her communication is not good. will not suite for esale. expt is 15-16k. staying in pg, her parents farmers.', 7, '0000-00-00 00:00:00', 1),
(8153, 7873, 18, 7, 4, 'Selected for Hyderabad. Joining on 18th Mar 2022. Salary as discussed', 8, '2022-02-25 10:37:18', 1),
(8154, 7835, 60, 1, 0, NULL, 18, '2022-02-25 11:04:33', 1),
(8155, 7890, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 88, '2022-02-25 11:44:00', 1),
(8156, 7920, 8, 4, 0, 'has 2yrs mis exp with 15k and expt 18k, has basic xl skills, father asst for vao, from kovur. okay with calling but comm is not as expected.', 7, '0000-00-00 00:00:00', 1),
(8157, 7914, 8, 5, 0, '6m exp in php 11.5k expt 15k, looking for job not okay with internship, not okay with company norms.', 7, '0000-00-00 00:00:00', 1),
(8158, 7926, 8, 5, 0, 'has 3yr exp in credit card sales. came with her friend madhavi. both from same clg worked in same company previously and relived in current company together. 18k th and expt 20k th. sal expt is high for crm, will not suite for rm since not interested in field sales. job need.her husband working in moothut fin.', 7, '0000-00-00 00:00:00', 1),
(8159, 7925, 8, 5, 0, 'will not suite for RM profile, he is looking for team handling profile. not interested in field sales. ', 7, '0000-00-00 00:00:00', 1),
(8160, 7923, 8, 5, 0, 'has 3yr exp in retail 13k. will not suite for our process and will not sustain, expt 15k', 7, '0000-00-00 00:00:00', 1),
(8161, 7903, 8, 5, 0, 'has 3yr exp in credit card sales. came with her friend. both from same clg worked in same company previously and relived in current company together. 18k th and expt 20k th. sal expt is high for crm, will not suite for rm since not interested in field sales. job need.', 7, '0000-00-00 00:00:00', 1),
(8162, 7920, 72, 1, 0, NULL, 8, '2022-02-25 03:10:13', 1),
(8163, 7773, 60, 1, 0, NULL, 18, '2022-02-25 04:26:29', 1),
(8164, 7929, 8, 4, 3, 'has2yrs sales exp in hdb with 13.5k, expt 15k, okay with sales skills. ', 7, '0000-00-00 00:00:00', 1),
(8165, 7854, 8, 2, 0, 'no vacency in php, so check with other like react and mern. she is willing to relocate and join.', 7, '0000-00-00 00:00:00', 1),
(8166, 7918, 8, 4, 0, 'okay with his comm and convincing, expt 15k take home, from vellore will relocate to chennai.  herash completed next level interview. check for renewal. okay with service agreement.', 7, '0000-00-00 00:00:00', 1),
(8167, 7919, 8, 4, 0, '25/02/2022	jennifer	Bhimashankar		RM	Bangalore	SNR	2yr exp in sales, was working in bounce with 16k and currently working in reliance retail backend sales with 23k. parents in gulbarka and he staying in pg. if required he will relocate nearby. has 2w and lap. expt 3.5-4L. 15days notice.', 7, '0000-00-00 00:00:00', 1),
(8168, 7538, 59, 5, 0, 'Didnt turn back with her confirmation', 59, '2022-02-26 11:28:45', 1),
(8169, 7528, 59, 5, 0, 'Not interestde with txxampC', 59, '2022-02-26 11:29:14', 1),
(8170, 7526, 59, 5, 0, 'Not comfortable with TxxampC', 59, '2022-02-26 11:29:40', 1),
(8171, 7664, 59, 5, 0, 'Tried Reaching Again On 10Feb Not Responding /Disconnecting The Call', 59, '2022-02-26 11:30:18', 1),
(8172, 7728, 59, 5, 0, 'Dropped - Not interested got another offer\n', 59, '2022-02-26 11:31:46', 1),
(8173, 7853, 59, 5, 0, 'asked for a time to confirm - too long distance- much prefers for Non Voice- Didnt turn back -Tried calling him No response', 59, '2022-02-26 11:32:43', 1),
(8174, 6683, 59, 5, 0, 'Didnt Turn Back - Too Long Distance Up And Down Almost 66 Kms.Sustainability Doubts ,Can Sign The SA,But Doubts A Lot', 59, '2022-02-26 11:52:44', 1),
(8175, 7941, 74, 7, 0, 'having experience in field sales ...highly job need ...have laptop and bike expected 12k and immeditate joining .....fit for team kindly confirm once', 58, '0000-00-00 00:00:00', 1),
(8176, 7938, 74, 5, 0, 'sustainability looking for IT but well profiled not fit for team and tele sales', 58, '0000-00-00 00:00:00', 1),
(8177, 7929, 24, 4, 0, 'selected for next round .. check with experience ', 8, '2022-02-26 03:10:07', 1),
(8178, 7927, 8, 5, 0, 'fresher expt 15k and she prefers non voice. pursuing her Mba. from mailaduthurai she will relocate to thanjavur so she is not okay with 9-10k.', 7, '0000-00-00 00:00:00', 1),
(8179, 7936, 8, 4, 0, 'fresher for calling, okay with convincing we can train, if got offer she will relocate to thambaram. expt 10-12k. she was looking for IT jobs but no basic skills. check with her sustainability once. parents farmers having laptop.', 7, '0000-00-00 00:00:00', 1),
(8180, 7940, 8, 5, 0, 'Has 1yr exp as dealer in aurkya milk with 10k from dharmaburi will relocate to Chennai and stay in chrompet with friends. No convincing and expt is 15k+,  not interested in field sales. As crm expt is high and will not suite for RE.', 7, '0000-00-00 00:00:00', 1),
(8181, 7939, 8, 4, 0, 'has 5yr exp in cams. 11.5k expt 15-18k. married 15days notice. father into construction.', 7, '0000-00-00 00:00:00', 1),
(8182, 7929, 17, 1, 0, NULL, 24, '2022-02-26 03:53:47', 1),
(8183, 7935, 8, 4, 0, 'says 6+ exp in php, check with tech skills. holds offer for 40k', 7, '0000-00-00 00:00:00', 1),
(8184, 7934, 8, 5, 0, 'done 3m course in react, no basic tech. skills, has 1yr exp in construction. he need time to think about company norms. looking for job not internship. min 1 yr he can sign agreement. ', 7, '0000-00-00 00:00:00', 1),
(8185, 7933, 8, 4, 0, 'fresher, expt 15k, avg comm and she is pursuing her Msc in regular, his father rtd. and now taking care of farming. she is from karimnagar will relocate to kukutpalli and stay with sis. she is very nerves and said this is her first time in virtual not speaking up. kindly ask arun to check once.', 7, '0000-00-00 00:00:00', 1),
(8186, 7931, 8, 5, 0, 'Fresher,Her communication is below avg and she couldn’t understand me and deliver exactly. Will not suite for our process and expect is 15k. Parents are farmers and she is staying in PG at amirpet.', 7, '0000-00-00 00:00:00', 1),
(8187, 7930, 8, 5, 0, 'has overall 10m exp 14k and expt 16-17k take home, okay with her scripts but her salary expt is high. she will not sustain and not okay with service agreement incase we hire for renewal.', 7, '0000-00-00 00:00:00', 1),
(8188, 7936, 13, 5, 2, 'not suitable for telesales', 8, '2022-02-26 04:02:32', 1),
(8189, 7941, 59, 3, 0, 'Selected for Thanjavur location in consultant Role', 74, '2022-02-26 04:35:22', 1),
(8190, 7929, 59, 3, 0, 'Selected for Suthagar Team in Staff Role Prop company only PT Deductions', 88, '2022-02-26 04:51:19', 1),
(8191, 7872, 59, 5, 0, 'Dropped she didnt provide the payslips and not responding to the calls too', 88, '2022-02-26 04:51:52', 1),
(8192, 7884, 74, 5, 0, 'not fit', 58, '0000-00-00 00:00:00', 1),
(8193, 7951, 59, 5, 0, 'Average Communication ,no basic knowledge in Exccel,Will not handle our pressure and sustainability doubts\n', 60, '0000-00-00 00:00:00', 1),
(8194, 7944, 59, 4, 0, '5050 Profile,fresher for Telecaller, Sustainability kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8195, 7957, 8, 5, 0, 'no idea about HR rec profile, done MA history and her passion towards teaching for time being she looking for job, expt 15k as fresher. her attitude is not good during interview. ', 7, '0000-00-00 00:00:00', 1),
(8196, 7949, 8, 5, 0, 'has 4yrs exp in construction. doing 6m course in fullstack, no basic practical knowledge. prepared few interview ques. need time to think about company norms.', 7, '0000-00-00 00:00:00', 1),
(8197, 7937, 8, 4, 0, 'has 1.9m exp in icici loan collection with 13.5k th. expt 16k, has 2w and lap, okay with Re profile, good in script. check with distance.  ', 7, '0000-00-00 00:00:00', 1),
(8198, 7937, 82, 7, 0, 'Shortliosted', 8, '2022-02-28 12:32:45', 1),
(8199, 7942, 8, 4, 0, 'From kadappa now residing in amirpet. has 1yr exp in other sales, 1yr in karvy as customer support and 6m6m in insurance. has basic skills in insurance and sales. worked in similar kind of profile in india first. lctc is 2.58L and expt the same or okay with company norms. has 2w and no laptop. resently brought bike so not possible for laptop. no father and he is taking care of his mother. job need.', 7, '0000-00-00 00:00:00', 1),
(8200, 7942, 18, 7, 3, 'Selected for Hyd. Can give joining date on 16th Mar', 8, '2022-02-28 01:33:16', 1),
(8201, 7960, 8, 5, 0, 'int-ref, was working in poorvika has to convert walkin customer for EMI working wor hdb fin, no convincing has 3yr exp. lctc 15k and expt 16-18k. will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(8202, 7959, 8, 5, 0, 'int-ref, was working in poorvika mobile sales, not okay with her lang, will not suite for our process, job need.', 7, '0000-00-00 00:00:00', 1),
(8203, 7944, 14, 1, 0, NULL, 59, '2022-02-28 06:34:23', 1),
(8204, 7948, 8, 2, 0, '5050, has 2m exp in production ans 2m in hotel reception, father into farming and 2bros working. will relocate to chennai and expt is 15k, no 2w and has laptop. expt is high and sustainability issues. due to his network issues disconnected the call. \nArun check this candidate once and let me know the feedback to move next level.', 7, '0000-00-00 00:00:00', 1),
(8205, 7933, 59, 4, 0, 'Fresher, no basic ideas in insurance domain, candidate is pursuing her masters degree regular college, also she commits that the college belongs to her family relative, hence she can appear only for the exams. Her interest is to have her own business, communication sounds good, father retired and she is the 4th child, her all3 sisters got married. Ready to relocate, and she is very clear with her ongoing studies. 5050 profile Sustainability doubts, let try to schedule her for the next level with Sriram sir and decide.', 8, '2022-03-01 10:09:09', 1),
(8206, 7961, 59, 3, 0, 'Selected for Tiruvallur Location - Consultant Role/Interviewed by Dhanalakshmi', 58, '0000-00-00 00:00:00', 1),
(8207, 7969, 8, 5, 0, 'will not handle pressure, has 2m exp in credit card. due to work pressure she relived from job. she prefers job with out target.', 7, '0000-00-00 00:00:00', 1),
(8208, 7970, 8, 4, 0, 'was working as collection exe for 2yrs. have calling and convincing skills, expt 16k. jon need.', 7, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(8209, 4356, 8, 5, 0, 'has 5m exp in MF looking for salary and carrier growth. will not sustain her sal expt is 20k. ', 7, '0000-00-00 00:00:00', 1),
(8210, 7933, 18, 8, 0, 'Kindly Reschedule', 59, '2022-03-01 11:55:35', 1),
(8211, 7919, 30, 1, 0, NULL, 8, '2022-03-01 12:12:41', 1),
(8212, 7962, 8, 5, 0, 'will not suite for sales calling, also checked for front office. will not suite for that. expt 15k, married, sustainability issues.', 7, '0000-00-00 00:00:00', 1),
(8213, 7935, 63, 1, 0, NULL, 8, '2022-03-01 12:25:02', 1),
(8214, 7939, 72, 1, 0, NULL, 8, '2022-03-01 12:27:47', 1),
(8215, 7789, 8, 5, 0, 'has 2.9m exp as mis but her skill set are avg. we need lot of time to train her.', 8, '2022-03-01 12:50:27', 1),
(8216, 7788, 8, 5, 0, 'very poor English communication and speaks telugu, not profiled, has 2yr exp in reliance retail as TL 20k and expt the same, his father got transfer to Hyderabad, his father accountant and mother teacher and he is only son. not interested in field sales will not suite for RM profile.', 8, '2022-03-01 12:56:23', 1),
(8217, 7970, 24, 4, 0, 'Candidate ok selected for next round', 8, '2022-03-01 04:30:28', 1),
(8218, 7965, 8, 5, 0, 'fresher from uurapakkam more than 1hr travel.too long and  will not sustain. expt 10-12k. job need.', 7, '0000-00-00 00:00:00', 1),
(8219, 7966, 8, 8, 0, 'not attended', 7, '0000-00-00 00:00:00', 1),
(8220, 7967, 8, 2, 0, 'fresher, done 6m course in fullstack. married and 1yr kid. expt 20k. has to check with team regarding technical.', 7, '0000-00-00 00:00:00', 1),
(8221, 7977, 8, 5, 0, 'not speaking up, will not suite for calling, has 6m exp in collection.', 7, '0000-00-00 00:00:00', 1),
(8222, 7968, 8, 8, 0, 'not attended', 7, '0000-00-00 00:00:00', 1),
(8223, 7964, 8, 2, 0, 'has 1yr exp in php, avg in tech skills, while interview he answered by referring some notes. expt 15k. check with the team regarding technical.', 7, '0000-00-00 00:00:00', 1),
(8224, 7918, 72, 1, 0, NULL, 8, '2022-03-01 06:42:31', 1),
(8225, 7970, 88, 7, 0, 'Selected for RE role', 24, '2022-03-02 07:50:22', 1),
(8226, 7970, 59, 3, 0, 'Selected for Suthagar team in PF/ESI/PT', 88, '2022-03-02 10:38:04', 1),
(8227, 7985, 8, 5, 0, 'has 4yr exp in mis, last working in oman. expt is high will not suite for us, wife-accountant and expt 30-35k.', 7, '0000-00-00 00:00:00', 1),
(8228, 7971, 8, 5, 0, 'has 2yr exp in grt jewelry as sales person. mctc 16k and expt 20k+, reason for reliving is low salary will not sustain for us, no calling and convincing skills. will not suite for RM. ', 7, '0000-00-00 00:00:00', 1),
(8229, 7973, 8, 5, 0, 'Fresher, not speaking up and will not suite for calling,from cuddalore expt 15-20k.', 7, '0000-00-00 00:00:00', 1),
(8230, 7979, 8, 5, 0, 'fresher, completed course in besent tech-3m. married will relocate to chennai, expt 3-3.5l', 7, '0000-00-00 00:00:00', 1),
(8231, 7981, 8, 5, 0, '2min credit card and 2m in collection 14k and expt 16-18k th. will not suite for voice process and will not sustain.', 7, '0000-00-00 00:00:00', 1),
(8232, 7987, 8, 2, 0, 'has sales exp but not in insurance. 7m in hdb loan process and 2yr in collection. from dharmapuri will relocate to chennai. little bit slow and we can check for RM. lmct is 16k and expt 20k. ', 7, '0000-00-00 00:00:00', 1),
(8233, 7989, 8, 5, 0, 'irda has not approved her profile. will not suite for other profile too bcoz her expt is 5L above.', 7, '0000-00-00 00:00:00', 1),
(8234, 7988, 8, 8, 0, 'na', 7, '0000-00-00 00:00:00', 1),
(8235, 7996, 8, 4, 0, 'has 2yr exp in other sales 25k. 2m in byjus, good in comm and convincing, expt min 20k. from saidhapet has 2w and lap.', 7, '0000-00-00 00:00:00', 1),
(8236, 7997, 8, 5, 0, 'will not suite for calling and not speaking up. ', 7, '0000-00-00 00:00:00', 1),
(8237, 7998, 8, 5, 0, 'not speaking up, will not suite for calling. ', 7, '0000-00-00 00:00:00', 1),
(8238, 7996, 57, 1, 0, NULL, 8, '2022-03-03 03:12:48', 1),
(8239, 8001, 59, 2, 0, 'Good Candidate,need to confirm the Terms xxampconditions', 60, '0000-00-00 00:00:00', 1),
(8240, 7974, 59, 5, 0, 'No clarity on the previous exp related to React was not clear,also the salary exp is very high,will not sustain', 60, '0000-00-00 00:00:00', 1),
(8241, 8000, 59, 5, 0, 'Fresher for content writing,His focus is fully towards the film making only,for time being to continue the practice of writing he is looking for opportunities.Will not sustain', 60, '0000-00-00 00:00:00', 1),
(8242, 8009, 59, 5, 0, 'Looking for non voice process,not open up will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(8243, 8005, 59, 5, 0, 'Age around 40 yrs,will not comfort in taking calls,sustainability doubts,not suitable', 60, '0000-00-00 00:00:00', 1),
(8244, 7999, 59, 5, 0, 'Have Exp in Insurance, but no sustainability in previous, Telecalling activities doubtful,will not handle our pressure and will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(8245, 8008, 59, 2, 0, 'Interviewed for B2B Lead profile,finally projected her for ESales with Salary ,candidate will give her confirmation on monday (7-Mar-2022)\n', 60, '0000-00-00 00:00:00', 1),
(8246, 8002, 59, 5, 0, 'Have Exp in Finance Sales, no field Sales Exp,2nd round interviewed by gaurav and got rejected.Will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(8247, 8010, 59, 3, 0, 'Selected for Ravi Team in PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(8248, 8006, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(8249, 8007, 59, 2, 0, 'Fresher,can be trained coming for a direct F2F interview, will check and decide', 60, '0000-00-00 00:00:00', 1),
(8250, 8010, 88, 7, 0, 'selected for RE', 82, '2022-03-04 04:43:48', 1),
(8251, 8006, 24, 4, 0, 'Candidate okay and selected for next round', 59, '2022-03-04 04:55:55', 1),
(8252, 8010, 59, 3, 0, 'Selected for Ravi Team in PF/ESI/PT', 88, '2022-03-04 05:02:43', 1),
(8253, 8012, 83, 4, 0, 'okay with the profile, kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(8254, 7762, 83, 4, 0, 'okay with the profile, good in communication but expected salary is high, kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(8255, 8016, 83, 5, 1, 'Will not be suitable due to salary xxamp  sustainability issue', 58, '0000-00-00 00:00:00', 1),
(8256, 7762, 80, 7, 4, 'Shortlisted but he will join after 30 working days', 83, '2022-03-05 03:47:45', 1),
(8257, 7762, 18, 7, 0, 'Selected for Pandi Team. Can give good Package and please negotiate', 80, '2022-03-05 04:19:40', 1),
(8258, 8012, 56, 4, 0, 'Sathish sir also seen this candidate', 83, '2022-03-05 04:30:33', 1),
(8259, 8014, 83, 4, 0, 'okay with the profile, candidate is in need of job,  check with the sustainability.', 58, '0000-00-00 00:00:00', 1),
(8260, 7937, 88, 7, 0, 'Selected for RE', 82, '2022-03-07 10:53:32', 1),
(8261, 8012, 59, 3, 0, 'Selected for Manivel team with PF/ESI/PT', 56, '2022-03-07 12:01:55', 1),
(8262, 7937, 59, 3, 0, 'Selected for Ravi Team in PF/ESI/PT\n', 88, '2022-03-07 02:01:02', 1),
(8263, 8021, 8, 4, 3, 'has 1yr exp in cigna and 2yrs in matrimony and other exp related to construction. lctc 3l and expt 30%. ', 7, '0000-00-00 00:00:00', 1),
(8264, 8024, 8, 5, 0, 'no sustainability, each 1yr job change, over all 10yr esp, las t 4m in gomechanic with 4.5l and looking for better offer 5.5l. will not suite for rm since he had team handling exp and looking for the same', 7, '0000-00-00 00:00:00', 1),
(8265, 8025, 8, 5, 0, 'will not suite for this profile', 7, '0000-00-00 00:00:00', 1),
(8266, 8027, 8, 2, 0, 'for arumbakkam, expt is 12k, fresher if he okay with 10k we can proceed.', 7, '0000-00-00 00:00:00', 1),
(8267, 8029, 8, 4, 0, 'has 4yrs calling and sales exp. lctc 21k and 18k th. expt the same. fresher for insurance sales, from vandalur long distance but her previous working loc is little mount. good in convincing and job need.', 7, '0000-00-00 00:00:00', 1),
(8268, 8034, 8, 5, 0, 'has baking exp, then legal asst. with a advocate, then agency manager as 9m in hdfc, 2yrs in bhratiaxa, 4m  in tataaig. 4.5l ctc and expt upto 6l. will not suite for rm, no GI exp so will not suit for that too.', 7, '0000-00-00 00:00:00', 1),
(8269, 8036, 8, 5, 0, 'has 2.5yrs exp in hdb and looking for better offer. not speaking up and couldnt deliver her script clearly. ctc 2k and expr 22k th. married will not suite for any process, her attire and body lang was not good.', 7, '0000-00-00 00:00:00', 1),
(8270, 8021, 86, 5, 0, 'He interested in collection type of job.', 8, '2022-03-07 05:42:45', 1),
(8271, 8029, 34, 7, 0, 'SELECTED SHE WILL JOIN ON 10TH 18.5K SALARY', 8, '2022-03-07 05:44:29', 1),
(8272, 8014, 80, 7, 4, 'Job needed very much', 83, '2022-03-08 11:15:44', 1),
(8273, 7991, 8, 4, 0, 'Fresher, knows basics in react. Completed 6m course. Check with team and schedule tech round. Father xarmy and he is only son. Expt 10-12k and okay with 3m internship.', 7, '0000-00-00 00:00:00', 1),
(8274, 7991, 59, 5, 0, 'Dropped,need  amonth time to decide', 8, '2022-03-08 12:34:10', 1),
(8275, 8029, 59, 3, 0, 'Selected for Guru Team with PT only - Prop Staff', 34, '2022-03-08 03:43:28', 1),
(8276, 8037, 8, 4, 0, 'fresher, good at basics, will learn react js, okay with company norms.', 7, '0000-00-00 00:00:00', 1),
(8277, 8042, 8, 5, 0, 'will not suite for our process, he drunk and came for interview yesterday so we sent him out. again he came today for interview. has overall exp in telecom and 2yrs in religer broking. expt 3.8L. 6m in pondicherry axa.', 7, '0000-00-00 00:00:00', 1),
(8278, 8037, 59, 3, 0, 'Selected for React Profile 1st  month - 3.5K 2-4 months - 5K 3yrs SA', 8, '2022-03-08 06:57:40', 1),
(8279, 8050, 8, 4, 0, 'okay with eng comm. has 3yr exp in calling. expt is 13k. okay with company norms. learning digi mktng.', 7, '0000-00-00 00:00:00', 1),
(8280, 8051, 8, 4, 0, 'has 1yr exp in calling was doing 2w and health ins. 2yrs in amazon as qc. married and husband is a driver. expt 11-12k. little bit childish kindly check once.', 7, '0000-00-00 00:00:00', 1),
(8281, 8039, 8, 8, 0, 'na', 7, '0000-00-00 00:00:00', 1),
(8282, 8054, 8, 5, 0, 'will not sustain, planning to start hotel in next 6m. expt 15k and has 1yr exp in calling', 7, '0000-00-00 00:00:00', 1),
(8283, 8052, 8, 5, 0, 'will not suite for our process, has 1yr exp in designing and has 2yrs gap, in between 10th and dip 10yrs gap, last ctc 20k and expt 22k for calling. will not suite for calling. no clarity in speech.', 7, '0000-00-00 00:00:00', 1),
(8284, 8047, 8, 5, 0, 'will not suite for calling, his slang is not good and expt is 20k since he need to relocate. from dharmaphuri and parents farmers, has 1yr exp in masala company and 4m in tractor company with 12k.', 7, '0000-00-00 00:00:00', 1),
(8285, 8050, 69, 4, 0, 'candidate good with basic skills, has family needs', 8, '2022-03-09 06:43:36', 1),
(8286, 8051, 53, 5, 0, 'Looking childish, not suit for Telecalling', 8, '2022-03-09 06:45:58', 1),
(8287, 8069, 8, 4, 0, 'job need, has 2yrs exp in qc, no father and she is the one taking care of family, bro 11th expt 11k. avg calling and convincing skills. check once.', 7, '0000-00-00 00:00:00', 1),
(8288, 8071, 8, 5, 0, 'dont know any developing lang. completed many courses but no knowledge about it. will not suite for calling as well IT.', 7, '0000-00-00 00:00:00', 1),
(8289, 8066, 8, 5, 0, 'was a teacher for 2yrs now pursuing montessori training, no idea about DM, okay with communication. expt 20k as fresher.', 7, '0000-00-00 00:00:00', 1),
(8290, 8067, 8, 4, 0, 'ignore the above cmnt.\nshe has 2.5yrs exp in service and sales and previously in qc. job need and mctc 15k and expt 18k. she is okay with field sales as well. check once. for salary hike she is looking for job change.', 7, '0000-00-00 00:00:00', 1),
(8291, 8069, 53, 7, 0, 'Selected for arumbakkam branch. pls cnfrm Sal and DOJ', 8, '2022-03-10 12:01:47', 1),
(8292, 8032, 8, 5, 0, 'sale expt is 3.5-4l, 7m in internship and 6m as trainee. he is not okay with the company norms, not even a year. but okay with his technical skills. he knows the basics.', 7, '0000-00-00 00:00:00', 1),
(8293, 8014, 18, 7, 4, 'Selected for Pandi Team. Please negotiate the package. Dont have Laptop', 80, '2022-03-10 01:10:57', 1),
(8294, 8067, 8, 4, 0, 'ignore the above cmnt.\nshe has 2.5yrs exp in service and sales and previously in qc. job need and mctc 15k and expt 18k. she is okay with field sales as well. check once. for salary hike she is looking for job change.', 8, '2022-03-10 02:33:47', 1),
(8295, 8077, 8, 4, 0, 'fresher for us, has other sales exp in japan based company. okay with his communication and convincing. after 2020 he was supporting his fathers small biz. lctc is 22k and expt per company norms. has 2w and will arrange laptop and immediate joiner.', 7, '0000-00-00 00:00:00', 1),
(8296, 8073, 8, 4, 2, 'has 2yrs exp in qc, 1yr in matrimony and then done her bed due to personal reason then 2.5yrs in collection. then she had gap, okay with her skills but doubt in sustainability. she is not okay with agreement. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(8297, 8067, 67, 1, 0, NULL, 8, '2022-03-10 04:58:40', 1),
(8298, 8077, 31, 5, 4, 'interested in  data entry comparing with sales', 8, '2022-03-10 05:03:16', 1),
(8299, 8063, 8, 4, 0, 'her oral comm is good, she dont know tamil she is from nagaland. expt 25K, was working in ajuba medical billing 20k. ', 7, '0000-00-00 00:00:00', 1),
(8300, 8062, 8, 5, 0, 'has 4yrs exp in content developing with 27k take home in 2019 then had maternity gap. expt 20k+, husband wise president in miot hospital. she dont have any idea about writing and not okay with backend or sales.', 7, '0000-00-00 00:00:00', 1),
(8301, 8073, 53, 5, 0, 'She is intrested in Non voice only', 8, '2022-03-10 05:12:33', 1),
(8302, 7762, 59, 2, 0, 'Discussed and following up with the candidate,yet to get the previous payslips xxamp documents,official 60 Days notice,can negotiate upto 30-45 Days', 18, '2022-03-10 05:14:31', 1),
(8303, 8063, 69, 5, 0, 'high salary expectations', 8, '2022-03-10 05:15:02', 1),
(8304, 8014, 59, 2, 0, 'Projected the Salary Breakup, Expectation is very high', 18, '2022-03-10 05:15:49', 1),
(8305, 7942, 60, 1, 0, NULL, 18, '2022-03-10 05:18:02', 1),
(8306, 8080, 8, 5, 0, 'no 12th, was working in pharmacy 13k, will not suite for calling, expt 15k', 7, '0000-00-00 00:00:00', 1),
(8307, 8082, 8, 5, 0, '12th, was working in pharmacy 10k, lang is not good will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(8308, 8086, 8, 4, 0, 'has 11m exp in flutter with 12k and expt 25k.', 7, '0000-00-00 00:00:00', 1),
(8309, 8084, 8, 4, 0, 'fresher for us, 7m exp in  loan process like kyc with 13k, expt 15k, from cetpet, check with sustainability once. has 2w and laptop.', 7, '0000-00-00 00:00:00', 1),
(8310, 8086, 54, 1, 0, NULL, 8, '2022-03-11 12:28:37', 1),
(8311, 8084, 82, 1, 0, NULL, 8, '2022-03-11 01:18:54', 1),
(8312, 7942, 59, 3, 0, 'Selected for Hyderabad with PF/ESI/PT', 59, '2022-03-11 01:25:11', 1),
(8313, 8088, 8, 2, 0, 'fresher for calling, her expt is 15k, she is okay with renewal but she is not ready to sign agreement bcoz of her marriage. she need time to think.', 7, '0000-00-00 00:00:00', 1),
(8314, 8006, 88, 7, 0, 'Selected for RE', 24, '2022-03-11 02:45:45', 1),
(8315, 8014, 59, 3, 0, 'Selected for Pandian Team with PF/PT Deductions', 59, '2022-03-12 11:22:48', 1),
(8316, 8098, 8, 5, 0, 'he is hyperactive will not suite for our process, his pronunciation are not clear. expt 14-16k. 6m exp in billing with 12k, looking for job change.', 7, '0000-00-00 00:00:00', 1),
(8317, 8058, 8, 5, 0, 'very childish will not suite for sales process, expt is 15k. from vellore she has to relocate to chennai.', 7, '0000-00-00 00:00:00', 1),
(8318, 8076, 8, 5, 0, 'from thiruvannamalai will relocate to chennai arumbakkam and stay with her friends, has 3m calling exp in credit card with 12k and expt 15k as take home. avg convincing and will not sustain for us. no father and mom house wife, her brothers taking care of family.', 7, '0000-00-00 00:00:00', 1),
(8319, 8069, 59, 3, 0, 'Selected for Arumbakkam team in Consultant Role\n', 53, '2022-03-12 11:59:43', 1),
(8320, 8085, 8, 5, 0, 'her communication is not good will not suite for writing. ', 7, '0000-00-00 00:00:00', 1),
(8321, 8006, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 88, '2022-03-12 01:37:16', 1),
(8322, 8104, 8, 2, 0, 'has to check with sriram', 7, '0000-00-00 00:00:00', 1),
(8323, 8102, 8, 5, 0, 'will not suite for calling, not convinced with her lang, expt is 15k will not sustain. ', 7, '0000-00-00 00:00:00', 1),
(8324, 8103, 8, 2, 0, 'check with his tech skills. not strong in basics, expt is 20k, has 5m exp in react js', 7, '0000-00-00 00:00:00', 1),
(8325, 8101, 8, 5, 0, 'not okay with his lang and attitude, will not sustain and handle sales pressure. has 4m and 3m exp. was handling father biz in b/w. expt 15-16k.', 7, '0000-00-00 00:00:00', 1),
(8326, 8100, 8, 4, 0, 'has 1yr calling exp but not in sales, okay with his convincing and all. kindly check whether he will suite for our process. ', 7, '0000-00-00 00:00:00', 1),
(8327, 8099, 8, 5, 0, 'will not suite for calling, no convincing and he is from chengalpattu too long distance. he cant relocate too.', 7, '0000-00-00 00:00:00', 1),
(8328, 7859, 54, 1, 0, NULL, 69, '2022-03-12 04:08:08', 1),
(8329, 8050, 54, 1, 0, NULL, 69, '2022-03-12 04:09:57', 1),
(8330, 8008, 59, 5, 0, 'Dropped,she is looking for Non Voice Process(Husband insisted her to look for Non Voice)', 59, '2022-03-12 04:11:39', 1),
(8331, 8060, 8, 5, 0, 'doing freelance projects with his brother know very basics. expt 2.5-3L min. from thirunelveli will relocate to chennai.', 7, '0000-00-00 00:00:00', 1),
(8332, 8018, 8, 5, 0, 'fresher, told him to learn and come, no basic skills.', 7, '0000-00-00 00:00:00', 1),
(8333, 8030, 8, 2, 0, 'hold for technical. has 1yr exp in sales but looking for it job expt 15k. check with team.', 7, '0000-00-00 00:00:00', 1),
(8334, 8100, 13, 5, 2, 'not suitable for telesales', 8, '2022-03-12 05:56:50', 1),
(8335, 8118, 8, 5, 0, 'has 2yrs exp in customer support, avg in convincing, expt 16+, looking for backend and op. no knowledge in excel and sheets. ', 7, '0000-00-00 00:00:00', 1),
(8337, 8038, 8, 5, 0, 'has 3yrs exp in kyc, no sales exp. ctc 2.5l and expt 4-4.5l. no calling and convincing skills. ', 7, '0000-00-00 00:00:00', 1),
(8338, 8115, 8, 5, 0, 'fresher for sales, has 3yrs exp in production and qc, no convincing and no calling skills, will not suite for us, expt 22k.', 7, '0000-00-00 00:00:00', 1),
(8339, 8119, 59, 4, 0, 'Have Exp in Telecalling,no Field Exp but can be trained,Interest to learn and perform,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8340, 8119, 80, 7, 4, 'Good Guy', 59, '2022-03-15 01:04:22', 1),
(8341, 8130, 59, 5, 0, 'Have Exp in Voice Process,relevant Star Health only but no sustainability, and will not sustain in our Roles xxamp Pressure\n', 60, '0000-00-00 00:00:00', 1),
(8342, 8007, 59, 5, 0, 'Dropped didnt appear for the F2F Interview', 59, '2022-03-15 02:43:42', 1),
(8343, 8001, 59, 5, 0, 'Not comfortable with terms xxampconditions\n', 59, '2022-03-15 02:44:01', 1),
(8344, 8119, 18, 8, 0, 'Kindly Reschedule', 80, '2022-03-15 02:55:38', 1),
(8345, 8132, 59, 5, 0, 'Communication Average,no sustainability in previous company stating mothexquots health issue,Handling Pressure,also she mention that she is ok with SA,but doubtful', 60, '0000-00-00 00:00:00', 1),
(8346, 8133, 8, 2, 0, 'has 4m in gobumper customer support, 7m in rec with 10k, expt 15k, holds offer for 13k, she is from poonamallee long distance too. shared renewal profile with her, she need time to think about it. ', 7, '0000-00-00 00:00:00', 1),
(8347, 8105, 8, 5, 0, 'will not suite for our process. has 7m exp in airtel sim sales, not clear with his existing analysis, no 2w and lap, expt 16-17k. talkative but no convincing skill.', 7, '0000-00-00 00:00:00', 1),
(8348, 8110, 8, 5, 0, 'from tutukudi, fresher and no convincing skill will not suite for calling, expt 15k min. ', 7, '0000-00-00 00:00:00', 1),
(8349, 8117, 8, 5, 0, 'after her degree 2018 she was serching job in chenni and got offer but didnt joined due to health issues, 1m in native due to health issues she relived from that job too, will not sustain and expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(8350, 8112, 72, 1, 0, NULL, 8, '2022-03-16 11:28:43', 1),
(8351, 8104, 8, 2, 0, 'has to check with sriram, no sales exp but good in lang and convincing. expt 18k. ', 8, '2022-03-16 11:36:36', 1),
(8352, 8126, 8, 2, 0, 'has 4yrs in sriram renewal with 14k. due to low salary she relived. now working in manappuram for past 4m not okay with feild sales so looking for job change with 18k, expt 20k. 15days notice. married and husband working in hcl. got married in 2015 and no kid. she need time to think about the service agreement and salary. her comm is below avg so cant push for esale.', 7, '0000-00-00 00:00:00', 1),
(8353, 8134, 8, 5, 0, 'fresher, done literature then fashion designing, worked 1m in consultancy for 10k absconded due to low salary. no job need. she is not clear with her carrier. expt 13-15k.', 7, '0000-00-00 00:00:00', 1),
(8354, 8142, 8, 4, 0, 'has 1 yr exp in visa-starhealth 11k, 4m in another company with 14k. looking for job change and came with her friend both worked and relived in both company. expt 14k. check with the sustainability. job need.', 7, '0000-00-00 00:00:00', 1),
(8355, 8143, 8, 4, 0, 'has 1 yr exp in visa-starhealth 11k, 4m in another company with 14k. looking for job change and came with her friend both worked and relived in both company. expt 14k. check with the sustainability. job need.', 7, '0000-00-00 00:00:00', 1),
(8356, 8145, 8, 5, 0, 'will not suite for our process, has 1yr exp in cash collection. 4m in real estate. lang is not good and expt is 15k and no 2w and laptop will not suite for re too. ', 7, '0000-00-00 00:00:00', 1),
(8357, 8135, 8, 5, 0, 'will not suite for our process. he is not interested in insurance. he has 6m exp in mf and insurance. he has no idea about amc and funds. known nothing about insurance too. was getting 12k and expt 15k min.', 7, '0000-00-00 00:00:00', 1),
(8358, 8142, 24, 4, 0, 'Selected for next round', 8, '2022-03-16 05:36:25', 1),
(8359, 8143, 24, 4, 0, 'selected for next round', 8, '2022-03-16 05:36:36', 1),
(8360, 8146, 8, 4, 0, 'has overall 6yrs exp in diff area. good in comm and convincing. last mctc is 35k and okay with company norms. 5yrs in mumbai and 1yr in chennai. parents settled in mumbai. ', 7, '0000-00-00 00:00:00', 1),
(8361, 8137, 8, 5, 0, 'was completely in teaching, currently working in bijus with 30-40k variable salary based on classes. married and willing to relocate to chennai. expt in between 30-40k, fresher and knows only the basic in react. not answered few ques. ', 7, '0000-00-00 00:00:00', 1),
(8362, 8146, 80, 7, 4, 'Good guy but package only higher side', 8, '2022-03-16 05:51:28', 1),
(8363, 8155, 8, 5, 0, 'has 2yrs exp in data analyst but she was doing data entry there. no knowledge in basic excel. not interested in calling.', 7, '0000-00-00 00:00:00', 1),
(8364, 8152, 8, 5, 0, 'has 7m exp in calling but now looking for non voice, due to pressure she relived so will not sustain here. expt 14-15k.', 7, '0000-00-00 00:00:00', 1),
(8365, 8150, 8, 5, 0, 'has 6m exp in a consultancy, no basic skills in calling and will not suite for our company. given negative feedback about the present org. expt 15k. ', 7, '0000-00-00 00:00:00', 1),
(8366, 8114, 59, 5, 0, 'Not Suitable,much prefer for non voice,will not sustain and handlle the pressure\n', 60, '0000-00-00 00:00:00', 1),
(8367, 8074, 8, 2, 0, 'has 1.5yrs exp with 12k and serving her notice expt 25k. gokul told her to come after her notice.', 60, '0000-00-00 00:00:00', 1),
(8368, 8089, 8, 5, 0, 'has 3yrs exp in care. looking for TL and no relevant exp and expt is 30k.', 60, '0000-00-00 00:00:00', 1),
(8369, 8109, 8, 5, 0, 'has 1yr exp in data entry, 1.5yrs in go fashion as backend support with 15k, 3m in sbi gi with 20k, expt 25k. poor communication and will not sustain. knows only basics in excel. will not suite for calling.', 60, '0000-00-00 00:00:00', 1),
(8370, 8107, 8, 5, 0, 'fresher, hold for next round but over the call banu rejected her. will not sustain here.', 60, '0000-00-00 00:00:00', 1),
(8371, 8163, 74, 7, 0, 'she fit to team good only..have no laptop...have bike..talkactive...and need to improve his voice skill bcoz of he is completed mba hr immediate joining....mother working father carpenter...sister married only one girl no no sustainability issue', 60, '0000-00-00 00:00:00', 1),
(8372, 8156, 8, 5, 0, 'she has stammering issues, not interested in calling as well. will not for any process.', 60, '0000-00-00 00:00:00', 1),
(8373, 8151, 8, 5, 0, '5050 profile. need to check with him again due to his network issues couldnt continue the call too.\nrejected over the call', 60, '0000-00-00 00:00:00', 1),
(8374, 8169, 8, 5, 0, '2016 batch, worked 4m in operations in dm company in b/w aug 21 to nov 21. no basci knowledge in recruitment. will not suite for our process no job need.', 7, '0000-00-00 00:00:00', 1),
(8375, 8161, 8, 4, 0, 'has 1yr exp in new india gi with 13k, high job need and expt 16k. looking for job change for sal. below avg comm. okay with 1yr terms for renewal.', 7, '0000-00-00 00:00:00', 1),
(8376, 8142, 88, 7, 0, 'Selected for RE role', 24, '2022-03-18 12:41:16', 1),
(8377, 8143, 88, 7, 0, 'Selected for RE role', 24, '2022-03-18 12:41:43', 1),
(8378, 7873, 60, 1, 0, NULL, 18, '2022-03-18 03:31:52', 1),
(8379, 8146, 18, 7, 4, 'Selected but he is in High package. Ask him Join on 7th April. Negotiate the salary and give target to salary hike in 6 months.', 80, '2022-03-18 05:13:45', 1),
(8380, 8163, 59, 2, 0, 'Discussed and proposed the salary break up ,candidate yet to give her confirmation', 74, '2022-03-18 05:45:58', 1),
(8381, 8174, 8, 5, 0, 'was working in merto ticket counter for past 1yr and not interested in sales and calling. not speaking up will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(8382, 8172, 8, 5, 0, 'fresher, not speaking up and no convincing. will not suite for our process and sales.', 7, '0000-00-00 00:00:00', 1),
(8383, 8171, 8, 5, 0, 'fresher, will not suite for our process and sales.', 7, '0000-00-00 00:00:00', 1),
(8384, 8168, 8, 5, 0, 'fresher, will not suite for calling and sales, not speaking at all, will not sustain too. ', 7, '0000-00-00 00:00:00', 1),
(8385, 8149, 8, 5, 0, 'not speaking up will not suite for calling and sales. was working n dhubai and will not sustain here.', 7, '0000-00-00 00:00:00', 1),
(8386, 8161, 72, 1, 0, NULL, 8, '2022-03-19 10:20:10', 1),
(8387, 8141, 8, 5, 0, 'she is not interested in calling. was asking for non voice. she dont know any basics in excel. then she is okay with calling but expt 12-14k. will not sustain for calling. ', 7, '0000-00-00 00:00:00', 1),
(8388, 8140, 8, 5, 0, 'will  not suit for mis, expt 4.2l. was doing freelancing for content. has to check with it.', 7, '0000-00-00 00:00:00', 1),
(8389, 8126, 8, 2, 0, 'was working in sriram life- collection 14k, 4m in manappuram with 18k. husband working in hcl for past 1m. 2018 married and they planning for child. she need time for service agmt.', 8, '2022-03-19 10:39:22', 1),
(8390, 8126, 8, 5, 0, 'she is not okay with agmt', 8, '2022-03-19 10:40:17', 1),
(8391, 8133, 8, 5, 0, 'no response', 8, '2022-03-19 10:53:36', 1),
(8392, 8088, 8, 5, 0, 'expt 14k for calling, for fresher we cant offer 14k', 8, '2022-03-19 10:55:03', 1),
(8393, 8103, 8, 5, 0, 'drop him', 8, '2022-03-19 10:55:33', 1),
(8394, 8027, 8, 5, 0, 'no response', 8, '2022-03-19 10:55:45', 1),
(8395, 8176, 8, 5, 0, 'will not suite for our process, not convinced with his profile and his pitch. expt 15k. has 1yr exp in diploma technical ppl.', 7, '0000-00-00 00:00:00', 1),
(8396, 8180, 8, 5, 0, 'has 1yr exp in hr admin. 15k expt 30%. has basic idea about sourcing. he is not okay to work with ijobs consultancy. he is not okay with service agmt.', 7, '0000-00-00 00:00:00', 1),
(8397, 8178, 8, 5, 0, 'completed online dm course. comm. is below avg and knows only basics in dm. will not suite for us.', 7, '0000-00-00 00:00:00', 1),
(8398, 3692, 8, 5, 0, 'no response', 8, '2022-03-19 12:29:56', 1),
(8399, 4270, 8, 5, 0, 'no response', 8, '2022-03-19 12:30:04', 1),
(8400, 4286, 8, 5, 0, 'no response', 8, '2022-03-19 12:30:23', 1),
(8401, 4361, 8, 5, 0, 'no response', 8, '2022-03-19 12:30:32', 1),
(8402, 8142, 59, 5, 0, 'We proposed our Salary and turned before joining as not interested', 88, '2022-03-19 12:54:00', 1),
(8403, 8143, 59, 5, 0, 'We Proposed Our Salary And Turned Before Joining As Not Interested', 88, '2022-03-19 12:54:29', 1),
(8404, 8177, 8, 5, 0, 'will not suite for calling and our process. as per his profile he is 33 and he said 43 during interview. has exp as service engg. expt 13-14k. no convincing.', 7, '0000-00-00 00:00:00', 1),
(8405, 8175, 8, 2, 0, 'fresher, completed 6m course in php, didnt answered any basic ques, said he can do the task. i told him to call back after learning. if he calls check with tech team., ', 7, '0000-00-00 00:00:00', 1),
(8406, 8190, 8, 4, 0, '5050 for me. fresher for us, has 2yrs site exp in b/w was taking care of his fathers biz, sustainability and pressure handling doubt. expt 18k. little bit slow too.', 7, '0000-00-00 00:00:00', 1),
(8407, 8189, 8, 4, 0, 'fresher for us but has sales exp. due to low sal looking for change. expt 17-18k check with the sustainability once. job need.', 7, '0000-00-00 00:00:00', 1),
(8408, 8189, 89, 1, 0, NULL, 8, '2022-03-21 12:22:11', 1),
(8409, 8190, 89, 1, 0, NULL, 8, '2022-03-21 12:23:40', 1),
(8410, 7336, 59, 5, 0, 'Continuous RNR Dropped\n', 59, '2022-03-21 03:35:03', 1),
(8411, 7762, 59, 2, 0, 'Discussed And Following Up With The Candidate,Yet To Get The Previous Payslips xxamp Documents,Official 60 Days Notice,Can Negotiate Upto 30-45 Days - His expectation is very as he will be getting increment in next few days\n', 59, '2022-03-21 03:36:03', 1),
(8412, 5447, 59, 5, 0, '	Whenever we reach her number. Candidate Is Not Available ,Her Mother Is Attending The Call.', 59, '2022-03-21 03:37:56', 1),
(8413, 8198, 8, 5, 0, 'has 1.5yr exp in hdb fin as caller with 9k, 7n in indus bank 16k. looking for team lead but no relevant exp. in insurance. will not suite for tl and sal expt is 20k. ', 7, '0000-00-00 00:00:00', 1),
(8414, 8165, 8, 2, 0, 'need to check with gokul. no eng comm. he is okay wit all terms.', 7, '0000-00-00 00:00:00', 1),
(8415, 7948, 8, 5, 0, 'no response', 8, '2022-03-21 06:27:19', 1),
(8416, 7967, 8, 5, 0, 'gokul droped', 8, '2022-03-21 06:27:59', 1),
(8417, 8163, 59, 3, 0, 'Selected for Thanjavur Location in Consultant Role\n', 59, '2022-03-21 06:33:45', 1),
(8418, 7597, 59, 5, 0, '	No Basic Knowledge Related To Php,Have Ideas In Html ,Css Only But Interested To Learn, Age Around 31 Yrs,Pressure handling doubt and will not sustain\n', 59, '2022-03-22 10:10:11', 1),
(8419, 7773, 59, 5, 0, 'Candidate didnt share the required data, informed him multiple times over the call.Even today(22 Mar) tried reaching him ,but no Response', 59, '2022-03-22 10:33:39', 1),
(8420, 8203, 8, 5, 0, 'will not suite for calling, no sustainability. has complete core exp but 2m ,1m,6m and 3m. ', 7, '0000-00-00 00:00:00', 1),
(8421, 8199, 8, 5, 0, 'no basic knowledge in php, was doing xml epub in freelancing 10k, okay with training and placement but no basic idea.', 7, '0000-00-00 00:00:00', 1),
(8422, 8186, 8, 5, 0, 'poor comm. will not suite for this profile. expt 20-22k with esi and pf. ', 7, '0000-00-00 00:00:00', 1),
(8423, 6670, 59, 5, 0, 'Candidate got another opportunity\n', 59, '2022-03-22 10:42:14', 1),
(8424, 7366, 59, 5, 0, 'Dropped - Candidate didnt turn back', 59, '2022-03-22 10:42:43', 1),
(8425, 7512, 59, 5, 0, 'Candidate didnt turn back and will not sustain', 59, '2022-03-22 10:43:28', 1),
(8426, 7598, 59, 5, 0, 'Candidate didnt come back with his confirmation', 59, '2022-03-22 10:45:23', 1),
(8427, 7599, 59, 5, 0, 'Shared the SAlary breakup,candidate didnt cmoe back with his confirmation', 59, '2022-03-22 10:46:58', 1),
(8428, 6884, 59, 5, 0, 'Candidate didnt come back and no responses', 59, '2022-03-22 10:48:42', 1),
(8429, 6967, 59, 5, 0, 'Not suitable will not sustain', 59, '2022-03-22 10:49:33', 1),
(8430, 6902, 59, 5, 0, 'Holded the candidate for 2nd round try ,but he didnt come back and finally dropped', 59, '2022-03-22 10:53:01', 1),
(8431, 7293, 59, 5, 0, 'Candidate didnt turn back and not looking for a change\n', 59, '2022-03-22 11:02:10', 1),
(8432, 7170, 59, 5, 0, 'Candidate no response', 59, '2022-03-22 11:02:44', 1),
(8433, 7435, 59, 5, 0, 'Continuous RNR Dropped', 59, '2022-03-22 11:03:28', 1),
(8434, 7451, 59, 5, 0, 'Candidate no Response', 59, '2022-03-22 11:04:41', 1),
(8435, 6665, 59, 5, 0, 'Seems Not interested,whenever calling he says outside', 59, '2022-03-22 11:05:22', 1),
(8436, 6723, 59, 5, 0, 'Not open to take calls,will not sustain', 59, '2022-03-22 11:06:06', 1),
(8437, 6965, 59, 5, 0, 'Not suitable REjected', 59, '2022-03-22 11:10:09', 1),
(8438, 6705, 59, 5, 0, 'Got another offer', 59, '2022-03-22 11:11:17', 1),
(8439, 6727, 59, 5, 0, 'Got another Offer', 59, '2022-03-22 11:12:45', 1),
(8440, 6841, 59, 5, 0, 'didnt come back and RNR\n', 59, '2022-03-22 11:13:22', 1),
(8441, 6744, 59, 5, 0, 'RNR Dropped', 59, '2022-03-22 11:14:03', 1),
(8442, 8202, 8, 5, 0, 'everything is okay but long distance. she is from paalavakkam too long more than 1.30 hrs travel. ', 7, '0000-00-00 00:00:00', 1),
(8443, 8204, 8, 5, 0, 'will not suite for our process, not active and he is not okay with sales profile. need time to think about it. comm is okay. ', 7, '0000-00-00 00:00:00', 1),
(8444, 6977, 59, 5, 0, 'Got another offer\n', 59, '2022-03-22 11:33:19', 1),
(8445, 7234, 59, 5, 0, 'Got another Offer', 59, '2022-03-22 11:33:44', 1),
(8446, 7458, 59, 5, 0, 'Candidate didnt come back and got another offer too', 59, '2022-03-22 11:34:28', 1),
(8447, 7482, 59, 5, 0, 'Not interested ', 59, '2022-03-22 11:35:14', 1),
(8448, 7080, 59, 5, 0, 'Now the number is not reachable', 59, '2022-03-22 11:35:57', 1),
(8449, 7494, 59, 5, 0, 'Candidate not comfortable with the Pay', 59, '2022-03-22 11:37:21', 1),
(8450, 4378, 59, 5, 0, 'Dropped  - RNR', 59, '2022-03-22 11:38:05', 1),
(8451, 8187, 8, 5, 0, 'has 2.5yrs in teleperfomance kyc. 3min yes bank due to over pressure looking for job change. she is not okay with calling and renewal. will not suite for mis. will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(8452, 8041, 30, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8453, 6734, 59, 5, 0, 'Dropped - RNR', 59, '2022-03-22 11:46:41', 1),
(8454, 7161, 59, 5, 0, 'Dropped - RNR,even he didnt come back with his confirmation', 59, '2022-03-22 11:48:01', 1),
(8455, 7220, 59, 5, 0, 'Candidate didnt come back with her confirmation for joining - not responding the calls too\n', 59, '2022-03-22 11:48:56', 1),
(8456, 7172, 59, 5, 0, 'Not interested with Terms xxamp Conditions,will not sustain', 59, '2022-03-22 11:49:33', 1),
(8457, 7992, 8, 5, 0, 'fresher for calling, was working in bakery with 13k, will not suite for our process expt 15k since he has to stay in chennai', 7, '0000-00-00 00:00:00', 1),
(8458, 8107, 59, 2, 0, 'Candidate yet to give her confirmation', 14, '2022-03-22 03:39:44', 1),
(8459, 8206, 8, 4, 0, 'has 1yr exp in calling and 1yr in admin. expt is 14k. in need of job but check with her attitude as we discussed. ', 7, '0000-00-00 00:00:00', 1),
(8460, 8131, 8, 4, 0, 'has 3+yrs  exp in health ins. with 15k and expt 18k. recently married and her husband owns travel agency. in previous company no proper reliving due to her personal reasons. ', 7, '0000-00-00 00:00:00', 1),
(8461, 8192, 8, 5, 0, 'pursuing her mca. okay with any job but in bangalore. expt 15k, poor communication and convincing too. referred by her friend pavithra.', 7, '0000-00-00 00:00:00', 1),
(8462, 8194, 8, 2, 0, 'has 6m exp in credit card, she prefer bangalore since she worked there already and has relative in bng. comm is below avg. expt is 15k th. ', 7, '0000-00-00 00:00:00', 1),
(8463, 8206, 53, 1, 0, NULL, 8, '2022-03-22 06:24:39', 1),
(8464, 8131, 53, 4, 0, 'Ok for elite team.  she s ready to relocate. ', 8, '2022-03-22 06:36:55', 1),
(8465, 8131, 14, 7, 0, 'Salary 14k need to confirm joining date', 53, '2022-03-23 11:06:21', 1),
(8466, 8218, 8, 4, 0, 'has 6m exp in axis healthcare with 20k in bangalore. she expt 20-25k, from vellor and her father is a teacher and mom professional singer. no job need. check with her sustainability. no proper reliving too.', 7, '0000-00-00 00:00:00', 1),
(8467, 8146, 60, 1, 0, NULL, 18, '2022-03-23 11:43:54', 1),
(8468, 8223, 8, 5, 0, 'not speaking up, will not suite for calling and backend too. was a promoter in avt part time.', 7, '0000-00-00 00:00:00', 1),
(8469, 8215, 8, 4, 0, 'fresher form theni  will relocate to chennai. expt 10-12k. was selected in sriram but not joined. check with her sustainability once.', 7, '0000-00-00 00:00:00', 1),
(8470, 8209, 8, 4, 0, 'has 6m exp in calling real estate with 15k expt 17-18k, okay for re profile and field sales. has 2w and will arrange laptop.', 7, '0000-00-00 00:00:00', 1),
(8471, 8218, 89, 4, 0, 'Select this candidate ', 8, '2022-03-23 06:10:17', 1),
(8472, 8209, 89, 4, 0, 'Select this candidate ', 8, '2022-03-23 06:12:41', 1),
(8473, 8215, 53, 1, 0, NULL, 8, '2022-03-23 06:17:19', 1),
(8474, 8131, 59, 3, 0, 'Selected for Arumbakkam Location with PT only,TH-15K', 14, '2022-03-24 10:25:39', 1),
(8475, 8209, 88, 7, 0, 'selected for RE', 89, '2022-03-24 11:02:26', 1),
(8476, 8218, 88, 7, 0, 'Selected for RE', 89, '2022-03-24 11:02:58', 1),
(8477, 8209, 59, 3, 0, 'Selected for Babu Team in PT only ', 88, '2022-03-24 11:46:50', 1),
(8478, 8218, 59, 3, 0, 'Selected for RE Babu Team in Consultant 5 %\n', 88, '2022-03-24 11:47:39', 1),
(8479, 8022, 8, 5, 0, 'has 6yr exp into construction with 25k and expt 30k. will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(8480, 8170, 8, 5, 0, 'has exp in hdfc loan with 14k, expt 18-20k. due to pressure he relived and not comfortable with calling.', 7, '0000-00-00 00:00:00', 1),
(8481, 8128, 8, 5, 0, 'will not suite for calling and backend. very childish and no understanding. only son and training him is also tough. ', 7, '0000-00-00 00:00:00', 1),
(8482, 8227, 8, 5, 0, 'will not work for long term and long distance too.', 7, '0000-00-00 00:00:00', 1),
(8483, 7733, 59, 3, 0, '1 month unpaid,then 5 months 5K,then 2.6 yrs Employment - Overall 3 yrs Document Sub', 27, '2022-03-24 01:06:19', 1),
(8484, 7068, 27, 5, 0, 'No Response.', 27, '2022-03-24 01:10:02', 1),
(8485, 6137, 27, 5, 0, 'No Response.', 27, '2022-03-24 01:13:24', 1),
(8486, 6137, 27, 5, 0, 'No Response.', 27, '2022-03-24 01:13:25', 1),
(8487, 6210, 27, 5, 0, 'No Response.', 27, '2022-03-24 01:14:20', 1),
(8488, 8221, 74, 7, 0, 'he well matured and age bit high.....but fit for telesales ....4 month experience in karvi technology in trichy and releived due to covid...and doing farming bcoz of father health issue now father fit so he looking for job...but purely teaching field so sustainability issue salary need 11k to 15k expected....no laptop and bike .............kindly crocess check and approve ', 60, '0000-00-00 00:00:00', 1),
(8489, 8222, 8, 4, 0, 'has sales exp but not in insurance. he is looking for field sales and interested towords it. expt 25k. resently married and check with his sustainability once bcoz not served more than 7m in all 3 companies. ', 7, '0000-00-00 00:00:00', 1),
(8490, 8222, 8, 4, 0, 'has sales exp but not in insurance. he is looking for field sales and interested towords it. expt 25k. resently married and check with his sustainability once bcoz not served more than 7m in all 3 companies. ', 7, '0000-00-00 00:00:00', 1),
(8491, 8201, 8, 4, 0, 'has 3yrs exp in same company and complete 1yr in core php. ctc 20k and expt 35k. current company is ready to offer 25k but he is looking for better offer. ', 7, '0000-00-00 00:00:00', 1),
(8492, 8193, 8, 4, 0, 'check for tech. 3yrs in same company and has 1.5yrs gap in between. looking for better offer. ctc 2.4l and expt 4L. only daughter and right now in wfh.', 7, '0000-00-00 00:00:00', 1),
(8493, 8184, 8, 4, 0, 'good in oral check with his content. was working in a company for 20days. he terminated his contact and chedk with this once. has basic idea about DM. willing to learn and expt 10k', 7, '0000-00-00 00:00:00', 1),
(8494, 8222, 80, 7, 4, 'Good person relevant experience not there but much needed job', 8, '2022-03-24 06:38:08', 1),
(8495, 8201, 27, 1, 0, NULL, 8, '2022-03-24 06:39:56', 1),
(8496, 8193, 27, 1, 0, NULL, 8, '2022-03-24 06:41:21', 1),
(8497, 8184, 69, 1, 0, NULL, 8, '2022-03-24 06:43:19', 1),
(8498, 8116, 8, 5, 0, 'will not suite for content writing. poor comm and no exp in writing. expt 25k.', 7, '0000-00-00 00:00:00', 1),
(8499, 8220, 8, 2, 0, 'has to check with his payslip. 10m exp in react and expt 4L. looking job in mern.', 7, '0000-00-00 00:00:00', 1),
(8500, 8225, 8, 4, 0, 'fresher, no father and taking care of mother. expt 10-15k, 10km from eroad. he prefers IT jobs and no opportunity in local so he is looking for telecalling job.', 7, '0000-00-00 00:00:00', 1),
(8501, 8230, 8, 5, 0, 'comm and convincing is fine but no sales exp. 60days notice and getting 40k expt 30%. wife is also working.', 7, '0000-00-00 00:00:00', 1),
(8502, 8225, 13, 7, 3, 'Average than but job need so direct interview vara sollirukku', 8, '2022-03-24 06:50:01', 1),
(8503, 8238, 8, 5, 0, 'will not suite for MIS and op. no excel knowledge and knows only kyc and data entry will not suite. was getting 12k and expt 17k. reason for reliving is no hike. ', 7, '0000-00-00 00:00:00', 1),
(8504, 8240, 8, 5, 0, 'will not suite for our process. has complete exp as site engg in singapore and planning to settle in canada. came along with his wife for interview. expt 25k. comm is manageable. ', 7, '0000-00-00 00:00:00', 1),
(8505, 8239, 8, 2, 0, 'has around 5yrs exp in admin and op. expt 15k th will not handle sales pressure. okay with renewal. she need to discuss with ppl and get back. planning to settle in canada and that in process.', 7, '0000-00-00 00:00:00', 1),
(8506, 8222, 60, 1, 0, NULL, 80, '2022-03-25 12:04:29', 1),
(8507, 8243, 8, 5, 0, 'will not suite for mis, poor comm and no skills, expt is 20k. was doing biz with his uncle so will not sustain for us.', 7, '0000-00-00 00:00:00', 1),
(8508, 8221, 59, 2, 0, 'Discussed with candidate,seems to be 5050 profile,pressure handling and sustinability doubt,most prefer to work in Teaching  field,need time to give his confirmation', 74, '2022-03-25 12:37:11', 1),
(8509, 8182, 8, 5, 0, 'will not suite for rm profile. 8m in manapuram with 2.4l and expt 3.5l', 7, '0000-00-00 00:00:00', 1),
(8510, 8182, 8, 5, 0, 'will not suite for rm profile. 8m in manapuram with 2.4l and expt 3.5l', 7, '0000-00-00 00:00:00', 1),
(8511, 8246, 59, 5, 0, 'Long Distance and not comfortable with the timings\n', 60, '0000-00-00 00:00:00', 1),
(8512, 8185, 8, 5, 0, 'he is working in Accenture with 11.5k and expt 18k. salary is his only concern he okay with any profile.  ', 7, '0000-00-00 00:00:00', 1),
(8513, 8017, 8, 5, 0, 'fresher from ooty, currently staying with brother in namakkal, will relocate to chennai. parents working in estate. his expt is 12k, he will discuses with family and get back. if he is okay with 10k we can proceed with next round interview.', 7, '0000-00-00 00:00:00', 1),
(8514, 8228, 8, 4, 0, 'has core exp and fresher for calling. expt 12k. check with his sustainability and pressure handling once', 7, '0000-00-00 00:00:00', 1),
(8515, 8228, 8, 4, 0, 'has core exp and fresher for calling. expt 12k. check with his sustainability and pressure handling once', 7, '0000-00-00 00:00:00', 1),
(8516, 8242, 8, 4, 0, 'has 1.5yrs exp in calling was working in agri related with 15k. fresher for us. expt 15k. will relocated to erode. native selam.', 7, '0000-00-00 00:00:00', 1),
(8517, 8225, 8, 1, 0, NULL, 13, '2022-03-26 11:42:46', 1),
(8518, 8234, 8, 2, 0, 'hold for technical. check with team.', 7, '0000-00-00 00:00:00', 1),
(8519, 8064, 8, 5, 0, '2yrs in hdb kyc process, 7m in indusbank calling. due to calling work pressure she is looking for change. no basic skills like excel and convincing. expt 20k.', 7, '0000-00-00 00:00:00', 1),
(8520, 8232, 8, 4, 0, 'fresher, was supporting his father biz, okay with calling and looking for good job with carreir growth. expt 10-15k. ', 7, '0000-00-00 00:00:00', 1),
(8521, 8233, 8, 5, 0, '	pursuing degree has exam in june and yet to complete projects. will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(8522, 8236, 8, 5, 0, '	pursuing degree has exam in june and yet to complete projects. will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(8523, 8237, 8, 5, 0, '	pursuing degree has exam in june and yet to complete projects. will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(8524, 8245, 8, 4, 0, 'has 1yr exp in calling and friend of jothika she prefers erode. but 1.30 mis travel. has to check once. expt 15k', 7, '0000-00-00 00:00:00', 1),
(8525, 8248, 8, 5, 0, '	pursuing degree has exam in june and yet to complete projects okay with her calling skills.', 7, '0000-00-00 00:00:00', 1),
(8526, 8252, 8, 5, 0, 'will not suite for calling, not speaking up. father dept. collector, mom hw, sis working in amazon.', 7, '0000-00-00 00:00:00', 1),
(8527, 8256, 8, 5, 0, 'pursuing degree has exam in june and yet to complete projects.', 7, '0000-00-00 00:00:00', 1),
(8528, 8257, 8, 5, 0, 'pursuing degree has exam in june and yet to complete projects.\nwill not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(8529, 8258, 8, 5, 0, 'pursuing degree has exam in june and yet to complete projects.', 7, '0000-00-00 00:00:00', 1),
(8530, 8260, 8, 5, 0, 'was into cini field. runs grocery shop. will not suite for rm. expt 25-30k.', 7, '0000-00-00 00:00:00', 1),
(8531, 8262, 8, 2, 0, '5050 has 1yr exp in realestate with 18k, expt 20k. has to recheck', 7, '0000-00-00 00:00:00', 1),
(8532, 8263, 8, 4, 0, 'was working in cafs 2yrs and relived due to personal reasons. will suite for b2b. check with her sustainability once.', 7, '0000-00-00 00:00:00', 1),
(8533, 8264, 8, 4, 0, 'has 4yrs exp in sbi cards, okay with his comm, ctc 25k and expt 30k. no insurance knowledge. check with his skills once.', 7, '0000-00-00 00:00:00', 1),
(8534, 8264, 86, 4, 0, 'for next round', 8, '2022-03-26 04:11:11', 1),
(8535, 8254, 8, 5, 0, 'was working in ecg lab 6m, then 1yr in hdb collection, 15k th and expt 20k, not negotiable, avg communication and has 30 days notice.  ', 7, '0000-00-00 00:00:00', 1),
(8536, 8221, 59, 5, 0, 'Dropeed.Received a call on Sunday(28-Mar) candidate informed that he is not going to join due to the location constraint and not much comfort with target based work', 59, '2022-03-28 10:14:03', 1),
(8537, 8228, 13, 7, 4, '10k salary kindly confirm Joining Date', 8, '2022-03-28 10:28:52', 1),
(8538, 8242, 13, 7, 4, 'ok 13k salary  Good communication skills and 1.5yrs  experience of tele sales kindly confirm joining date', 8, '2022-03-28 10:30:14', 1),
(8539, 8107, 59, 3, 0, 'Selected for Arumbakkam Elite Team in consultant Role', 59, '2022-03-28 10:34:34', 1),
(8540, 8263, 53, 1, 0, NULL, 8, '2022-03-28 10:35:21', 1),
(8541, 8264, 18, 7, 4, 'Selected for mani team. Ask him to Join on 18th April. Negotiate the salary. He is in notice period', 86, '2022-03-28 11:00:08', 1),
(8542, 8228, 8, 1, 0, NULL, 13, '2022-03-28 11:35:03', 1),
(8543, 8242, 8, 1, 0, NULL, 13, '2022-03-28 11:44:35', 1),
(8544, 8273, 74, 7, 0, 'she is already experienced two years in thanga maligai...as sales and cashier....salary 10k and completed mphil....willing to join immediately....father running a small hotel with monthly 10k income only....one sister doing CA in a trust basis.....having lapptop.....refernce by vengadesh......talk active and clear voice suite for telessales....expected 10 to `12 k kindly confirm once', 60, '0000-00-00 00:00:00', 1),
(8545, 8273, 59, 3, 0, 'Selected for Consultant role in Thanjavur location', 74, '2022-03-28 01:15:14', 1),
(8546, 8275, 8, 4, 0, 'has sales exp but not in insurance. ctc 17.5k and expt 23k. okay with his comm and convincing. has 2w and will arrange laptop.', 7, '0000-00-00 00:00:00', 1),
(8547, 8275, 31, 7, 4, 'candidate okay sent for next round', 8, '2022-03-28 06:45:30', 1),
(8548, 8281, 59, 5, 0, 'Bad Attitude, Focus only on the salary, Seems very Arrogant, will not sustain for a long in sales,No proper relieving from previous organizations. Not comfortable to come back after sales calls. Not Suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(8549, 8284, 8, 2, 0, 'has off roll exp in GI not int o sales. has 6m and 7m exp in life ins. into agency channel. will not suite for RM profile. bcoz he is not comfortable with cold calling and looking for same agency channel. expt 5l.', 7, '0000-00-00 00:00:00', 1),
(8550, 8284, 8, 2, 0, 'has off roll exp in GI not int o sales. has 6m and 7m exp in life ins. into agency channel. will not suite for RM profile. bcoz he is not comfortable with cold calling and looking for same agency channel. expt 5l.', 7, '0000-00-00 00:00:00', 1),
(8551, 8287, 8, 5, 0, 'will not suite for this process. poor comm. and no clarity in his speech. will not suite for calling and sales. not interested in current process. ctc 11.5k and expt 20k and he is requesting in interview to give him job. dont even knows basics in excel.', 7, '0000-00-00 00:00:00', 1),
(8552, 8288, 8, 5, 0, 'has 2yrs exp in data entry. 1+ yrs in sbi credit card back end. she was doing data entry there too with 13.5k. her company revised her salary as 16k. since she completed hdca course and 16k increment she is looking for better offer. expt min 20k take home. she in need of job but she dont have patience and understanding. i couldnt see adaptability. ', 7, '0000-00-00 00:00:00', 1),
(8553, 8289, 8, 5, 0, 'planning for higher study. will not suite for calling and long distance too. changalpattu', 7, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(8554, 8290, 8, 5, 0, 'will not suite for calling, 6m in harbor as acc with 18k. expt 15k th. no convincing.', 7, '0000-00-00 00:00:00', 1),
(8555, 8245, 13, 7, 4, '13k salary kindly confirm joining date', 8, '2022-03-29 05:05:21', 1),
(8556, 8232, 13, 7, 4, '10.5k salary kindly confirm joining date', 8, '2022-03-29 05:06:11', 1),
(8557, 8239, 8, 5, 0, 'no response', 8, '2022-03-29 05:19:17', 1),
(8558, 8194, 8, 5, 0, 'no response from her', 8, '2022-03-29 06:08:45', 1),
(8559, 8232, 59, 2, 0, 'Discussed and candidate confirmed for consultant role,  joining date yet to confirm', 13, '2022-03-29 06:58:47', 1),
(8560, 8245, 59, 2, 0, 'Discussed and shared the salary breakup,candidate yet to give her confirmation', 13, '2022-03-29 07:00:29', 1),
(8561, 8299, 8, 4, 0, 'has 7m exp in matrimony with 10k. expt 12k and due to timing issues she relived. good in her scripts. check with her distance once again.', 7, '0000-00-00 00:00:00', 1),
(8562, 8298, 8, 5, 0, 'will not suite for our process, he runs a event mgnt and professional photographer he is. will not sustain more than 6m. expt 15k. ', 7, '0000-00-00 00:00:00', 1),
(8563, 8259, 8, 4, 0, 'for tech. fresher and he is okay with company norms.', 7, '0000-00-00 00:00:00', 1),
(8564, 8261, 8, 5, 0, 'he is not interested in li. for GI no expt exp. sal expt is high so will not suite for re', 7, '0000-00-00 00:00:00', 1),
(8565, 8247, 8, 5, 0, 'overall 3yrs exp 1yr in core php 2yrs in laravel, worked in 3 companies, ctc 3L and expt 5.5L, 60 days notice. check with sathish once', 7, '0000-00-00 00:00:00', 1),
(8566, 8302, 8, 5, 0, 'Pursuing his final year, yet to complete his projects and exams. expt 15k. okay with company norms. let him complete his exam.', 7, '0000-00-00 00:00:00', 1),
(8567, 8299, 53, 7, 0, 'Selected for elite team, pls cnfrm Salary and DOJ.', 8, '2022-03-30 06:20:24', 1),
(8568, 7994, 8, 5, 0, 'Fresher for us. Don’t have sales exp. has 1.5yr exp in qc and production. Due to work pressure he relieved he will not handle sales pressure. Not speaking up and no convincing. Expt 20k take home. Parents into agriculture.', 7, '0000-00-00 00:00:00', 1),
(8569, 8295, 8, 4, 0, 'hold for tech. has 1yr exp in php with 14k in mailaduthurai. will relocate to chennai expt 16-17k. ', 7, '0000-00-00 00:00:00', 1),
(8570, 8235, 8, 5, 0, 'fresher, after degree she got married and has 1m baby. will not sustain and asking for wfh.', 7, '0000-00-00 00:00:00', 1),
(8571, 8266, 8, 2, 0, 'fresher, if he is okay with 10k we can check next level', 7, '0000-00-00 00:00:00', 1),
(8572, 8295, 27, 1, 0, NULL, 8, '2022-03-31 10:33:50', 1),
(8573, 8262, 8, 5, 0, 'will not come chennai for next round.', 8, '2022-03-31 10:34:37', 1),
(8574, 8259, 27, 1, 0, NULL, 8, '2022-03-31 10:36:20', 1),
(8575, 8234, 8, 5, 0, 'couldnt do sys task', 8, '2022-03-31 10:37:07', 1),
(8576, 8250, 13, 7, 0, 'ok,11k salary but ipo notise period la work pannitu irukkan saturday mudiyuthu so Monday joining', 7, '0000-00-00 00:00:00', 1),
(8577, 8292, 8, 5, 0, 'will not suite for our process, no sustainability. was worked in home credit, vodafone, paytm, realestate and airtel and so on. expt 25k.', 7, '0000-00-00 00:00:00', 1),
(8578, 8285, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8579, 8278, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8580, 8276, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8581, 8269, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8582, 8268, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8583, 8265, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8584, 8301, 8, 5, 0, 'will not suite for calling, not speaking up, time being looking for job.', 7, '0000-00-00 00:00:00', 1),
(8585, 8303, 8, 5, 0, 'dosent know basics. told him to learn and come back.', 7, '0000-00-00 00:00:00', 1),
(8586, 8308, 8, 2, 0, 'has to check with banu ahs 1yr calling exp. high job need and ctc 14k and ecpt 15-16k. ', 7, '0000-00-00 00:00:00', 1),
(8587, 8309, 8, 5, 0, 'looking for tL, has only 6m exp in calling-new india. in 3m she got promoted as asst. tl with 17.5k. due to late logout she is looking for job change. will not sustain here and long distance too. expt 20k.  she will think and get back to vishal.', 7, '0000-00-00 00:00:00', 1),
(8588, 8310, 8, 5, 0, 'will not suite for our process, has 4yr in hdfs and 2 yes in max, the  reason for reliving is not acceptable and his performance was not convincing. has avg convincing skills. expt 6.8l', 7, '0000-00-00 00:00:00', 1),
(8589, 8311, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8590, 8312, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8591, 8313, 8, 4, 0, 'has 6m exp in sbi cards. good in her scripts and talkative. expt 12k take home. check with her distance once', 7, '0000-00-00 00:00:00', 1),
(8592, 8314, 8, 5, 0, 'was working in blue dart doing cut copy paste in sys and says system admin. 20 and got married. will not suite for calling and sales. language is not good. expt 22k', 7, '0000-00-00 00:00:00', 1),
(8593, 8316, 8, 2, 0, 'has to check with banu. age-40, has 4yrs exp in pl calling exp with 15k, expt the same. no husband and has 2 son.', 7, '0000-00-00 00:00:00', 1),
(8594, 8318, 8, 5, 0, 'will not sustain. past 2yrs as doing fashion design and doing it. expt 17-18k. avg convincing and sales skills.', 7, '0000-00-00 00:00:00', 1),
(8595, 8319, 8, 2, 0, 'has to check for renewal and whether coming without her friend for interview.was working in apollo clg as admin with 15k. expt the same.', 7, '0000-00-00 00:00:00', 1),
(8596, 8313, 53, 1, 0, NULL, 8, '2022-03-31 03:39:16', 1),
(8597, 8300, 8, 5, 0, 'no basics so told her to learn and come back', 7, '0000-00-00 00:00:00', 1),
(8598, 8275, 29, 1, 0, NULL, 31, '2022-03-31 08:15:39', 1),
(8599, 8228, 59, 3, 0, 'Selected for Erode - Consultant Role', 59, '2022-04-01 05:24:45', 1),
(8600, 8232, 59, 3, 0, 'Selected for Erode - Consultant Role', 59, '2022-04-01 05:25:31', 1),
(8601, 8242, 59, 3, 0, 'Selected for Erode - Consultant Role', 59, '2022-04-01 05:26:14', 1),
(8602, 8245, 59, 3, 0, 'Selected for Consultant Role - Erode', 59, '2022-04-01 05:26:45', 1),
(8603, 8299, 59, 3, 0, 'Selected for Arumbakkam location  in consultant role', 53, '2022-04-04 12:45:51', 1),
(8604, 8346, 59, 5, 0, 'Frequent Job Changes,Lot of health issue and leave issues a lot with previous companies,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(8605, 8345, 59, 2, 0, 'Need to schedule for 2nd round RE profile', 60, '0000-00-00 00:00:00', 1),
(8606, 8342, 59, 2, 0, 'Fresher,No basic knowledge in telecalling,if she comes back lets try', 60, '0000-00-00 00:00:00', 1),
(8607, 8340, 59, 5, 0, 'Around 55kms from Erode,Married have Kid,Difficult in travel for a long will not sustain', 60, '0000-00-00 00:00:00', 1),
(8608, 8278, 59, 5, 0, 'Candidate much focus for non voice process, also he is dragging his joining', 24, '2022-04-04 08:11:35', 1),
(8609, 8347, 59, 5, 0, 'Distance around 48 kms, married have a kid, daily travel doubtful, need time to discuss with her husband,Also she may relocate to Chennai,Long Run with CAFS doubtful,Seems dilemma in Voice/Non voice process too,if she comes back arrange her for a F2F in Erode', 60, '0000-00-00 00:00:00', 1),
(8610, 8349, 83, 4, 0, ' Okay With The Profile, have previous  exp in sales, salary exp is high, kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(8611, 8350, 83, 5, 0, 'will not be suitable', 58, '0000-00-00 00:00:00', 1),
(8612, 8349, 53, 7, 0, 'Selected. Pls cnfrm Salary and DOJ', 83, '2022-04-05 01:31:12', 1),
(8613, 8352, 59, 5, 0, 'Much focusing on Accounts xxamp Non voice process only\n', 60, '0000-00-00 00:00:00', 1),
(8614, 8354, 59, 5, 0, 'no communication,career Gap,not much serious with the job,will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(8615, 8327, 57, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8616, 8332, 19, 4, 4, 'Fit for Sales', 60, '0000-00-00 00:00:00', 1),
(8617, 8332, 88, 7, 0, 'ok for rE level', 19, '2022-04-06 10:12:13', 1),
(8618, 8332, 59, 3, 0, 'Selected for Kannan Team - PF/PT', 88, '2022-04-06 10:17:33', 1),
(8619, 8362, 59, 5, 0, 'No Communication ,will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(8620, 8360, 59, 4, 0, '5050 Profile,fresher for Insurance Sales,have Career Gap kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(8621, 8363, 59, 4, 0, 'Have Exp in Sales,but no sustainability in her previous Exp,kindly check and let me know you inputs', 60, '0000-00-00 00:00:00', 1),
(8622, 8349, 59, 3, 0, 'Selected for B2B - Staff role', 53, '2022-04-06 03:12:29', 1),
(8623, 8356, 13, 7, 0, 'Ok 10k Salary,Today Joining', 60, '0000-00-00 00:00:00', 1),
(8624, 8365, 13, 7, 0, 'Ok 10k Salary,Today Joining', 60, '0000-00-00 00:00:00', 1),
(8625, 8356, 59, 3, 0, 'Selected for Erode - Consultant Role', 13, '2022-04-06 04:59:15', 1),
(8626, 8365, 59, 3, 0, 'Selected for Erode - Consultant Role\n', 13, '2022-04-06 04:59:41', 1),
(8627, 8360, 82, 1, 0, NULL, 59, '2022-04-06 06:30:43', 1),
(8628, 8363, 57, 4, 0, 'candidate is ok , kindly confirm the joining date ... ', 59, '2022-04-06 06:32:11', 1),
(8629, 8370, 59, 5, 0, 'Candidate communication is good. working in Amazon with 30 days notice. she is a fresher for recruitment. Her current salary is 3.25 lPA and her min expectation is 4.5 lpa being a fresher for recruitment. will focus much on the salary, sustainability doubts based on her expectations', 60, '0000-00-00 00:00:00', 1),
(8630, 8371, 59, 5, 0, 'Not open up, Prefer to go in non voice only, not comfort in Target/Pressure', 60, '0000-00-00 00:00:00', 1),
(8631, 8363, 88, 1, 0, NULL, 57, '2022-04-07 01:12:08', 1),
(8632, 8372, 59, 5, 0, 'Need to open a lot,Will not handle the pressure,much prefer for Non Voice only', 60, '0000-00-00 00:00:00', 1),
(8633, 8375, 59, 4, 0, '5050 Profile,have 5 months Exp in Telecalling,Sustainability Doubt,but can give a try kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8634, 8326, 53, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8635, 8376, 13, 7, 0, '10k salary today evening confirm the joining date', 60, '0000-00-00 00:00:00', 1),
(8636, 8375, 57, 1, 0, NULL, 59, '2022-04-07 05:25:26', 1),
(8637, 8377, 13, 5, 0, 'he is not suitable for tele sales', 60, '0000-00-00 00:00:00', 1),
(8638, 8351, 13, 5, 0, 'he is not suitable for pressure handling he is like non-voice process only', 60, '0000-00-00 00:00:00', 1),
(8639, 8376, 59, 5, 0, 'we shared the offer proposal,but He is going with another offer', 13, '2022-04-07 06:25:05', 1),
(8640, 8388, 59, 4, 0, 'Internal REference,Seems to be  Nervous,handling pressur edoubts,give a try and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8641, 8387, 59, 4, 0, 'Have Exp in SalesCommunication ok,Can give a try for RM profile,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8642, 8384, 59, 5, 0, 'Need to open up a lot, will not handle the pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(8643, 8382, 59, 5, 0, 'Looking much for backend operations,Tried for our operation by giving him written task but not upto the mark as we expected.Will not sustain in Telecalling Sales', 60, '0000-00-00 00:00:00', 1),
(8644, 8266, 24, 4, 0, 'candidate selected for 12k', 8, '2022-04-08 01:41:46', 1),
(8645, 8266, 8, 4, 0, 'Kindly check and let me know your inputs', 8, '2022-04-08 01:41:46', 1),
(8646, 8390, 59, 4, 0, '5050 Profile,fresher for our profile,communication Slang need to see,can give a try,kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(8647, 8391, 24, 4, 0, 'candidate okay for RE .  expect salary 13k.. virual interview tomorrow morning for AM', 60, '0000-00-00 00:00:00', 1),
(8648, 8392, 59, 4, 0, 'Check for General Insurance Sir,have Exp in GI/Life', 60, '0000-00-00 00:00:00', 1),
(8649, 8394, 24, 4, 0, 'candidate selected for telecalling .. expt salary 10- 12k.. ', 60, '0000-00-00 00:00:00', 1),
(8650, 8394, 88, 8, 0, 'Have to validate again by suthagar', 24, '2022-04-08 03:43:33', 1),
(8651, 8391, 88, 8, 0, 'Have to validate again by Suthagar', 24, '2022-04-08 03:45:14', 1),
(8652, 8266, 88, 7, 0, 'ok for RE', 24, '2022-04-08 04:00:15', 1),
(8653, 8398, 80, 7, 4, 'Good person', 60, '0000-00-00 00:00:00', 1),
(8654, 8386, 59, 5, 0, 'communication ok,already holds offer near to her home,much focus towards the accounts profile,will not sustain and handle pressure doubtful - Not Suitable', 60, '0000-00-00 00:00:00', 1),
(8655, 8390, 19, 5, 0, 'Not Intrest', 59, '2022-04-08 05:41:43', 1),
(8656, 8388, 71, 5, 0, 'REJECTED ', 59, '2022-04-08 05:47:37', 1),
(8657, 8387, 31, 5, 3, 'Attitude issue.  ', 59, '2022-04-08 05:49:12', 1),
(8658, 8397, 59, 5, 0, 'Looking for non voice process, will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(8659, 8398, 18, 7, 4, 'Selected for Pandi Team. Once offer released He will Update paper from Reliance Life. Current CTC is 3.6 Can Negotite', 80, '2022-04-08 07:34:33', 1),
(8660, 8392, 18, 5, 0, 'Not fit for us', 59, '2022-04-08 07:35:51', 1),
(8661, 8339, 83, 4, 0, 'okay with the profile, salary exoectation is high, check with sustainability,  kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(8662, 8286, 83, 4, 0, 'okay with profile, check with sustainability, kindly update', 58, '0000-00-00 00:00:00', 1),
(8663, 8407, 83, 4, 0, 'okay with profile, check  with sustainability xxamp kindly update', 58, '0000-00-00 00:00:00', 1),
(8664, 8339, 13, 7, 0, 'ok 11k salary,monday joining', 83, '2022-04-09 11:17:40', 1),
(8665, 8286, 34, 7, 0, '18th joining 12k take home spoken ', 83, '2022-04-09 11:18:55', 1),
(8666, 8407, 34, 7, 0, '18th joining spoken 12k take home', 83, '2022-04-09 11:20:00', 1),
(8667, 8398, 60, 1, 0, NULL, 18, '2022-04-09 11:35:13', 1),
(8668, 8286, 59, 3, 0, 'Selected for Guru Team in consultant role ,but candidate seems to be doubtful,if joins let see', 34, '2022-04-09 11:44:47', 1),
(8669, 8407, 59, 5, 0, 'Dropped - Candidate is not interested to join, plan to go with the same business,also not comfortable with the Take home 12K\n', 34, '2022-04-09 11:46:16', 1),
(8670, 8406, 24, 4, 0, 'candidate selected exp salary net 14.5K', 60, '0000-00-00 00:00:00', 1),
(8671, 8406, 88, 7, 0, 'Ok for RE', 24, '2022-04-09 02:38:12', 1),
(8672, 8406, 59, 3, 0, 'Selected for Erode Suthagar Team with PF/ESI/PT', 88, '2022-04-09 04:00:21', 1),
(8673, 8266, 59, 3, 0, 'Selected for Suthagar Team Erode Location', 88, '2022-04-09 04:40:34', 1),
(8674, 8264, 60, 1, 0, NULL, 18, '2022-04-09 05:26:56', 1),
(8675, 8401, 59, 5, 0, 'Communication Average, not open for the Terms xxamp conditions,will not sustain for a long,no basic knowledge in the Position', 60, '0000-00-00 00:00:00', 1),
(8676, 8395, 59, 5, 0, 'Need to train alot in MIS,Location constraint,long run doubtful in our company', 60, '0000-00-00 00:00:00', 1),
(8677, 8389, 59, 5, 0, 'No Communication just a manageble, not much strong in the areas of Excel,Will not handle our pressure,will not sustain in our roless\n', 60, '0000-00-00 00:00:00', 1),
(8678, 8408, 59, 4, 0, 'Fresher for Telecaller,can give a try,5050 profile kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8679, 8403, 24, 5, 0, 'Sustainabilty doubt so rejected.. existing company working 3 mnth and 6mnth only  ', 60, '0000-00-00 00:00:00', 1),
(8680, 8404, 24, 5, 0, 'sustainability doubt so rejected.. ', 60, '0000-00-00 00:00:00', 1),
(8681, 8413, 59, 5, 0, 'Communication is Good, Fresher for HR Recruitment, need time to give her confirmation,Sustainability doubts,5050 if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(8682, 8410, 59, 5, 0, 'Too long Distance,recently married,have exp in sales telecaller,but a career gap she has.will not sustain for a long,much she looks for work from home \n', 60, '0000-00-00 00:00:00', 1),
(8683, 8418, 59, 5, 0, 'need to open a lot, Seems not to be much interested towards the career.Not suitable', 60, '0000-00-00 00:00:00', 1),
(8684, 8415, 59, 4, 0, '5050 profile, having only inbound call \nExp, for our profile, can give a try ,but sustainability doubts,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8685, 8415, 19, 5, 0, 'Not Intrest', 59, '2022-04-11 04:44:08', 1),
(8686, 8409, 59, 4, 0, 'Need to open a lot,5050 profile kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8687, 8408, 89, 1, 0, NULL, 59, '2022-04-11 04:52:34', 1),
(8688, 8409, 89, 1, 0, NULL, 59, '2022-04-11 04:53:17', 1),
(8689, 8417, 59, 5, 0, 'not open up,not suitable', 60, '0000-00-00 00:00:00', 1),
(8690, 8432, 7, 1, 0, NULL, 90, '0000-00-00 00:00:00', 1),
(8691, 8424, 59, 2, 0, 'Average Communication, have exp in MIS activities, Married and have 3 months kid, Salary Exp is 20K with 5 yrs Exp,Sustainability Doubts,Lets hold her profile.Need some time to confirm her  for the position', 60, '0000-00-00 00:00:00', 1),
(8692, 8428, 59, 5, 0, 'Camdidate need to open up a lot and not interested towards the telecaller,will not sustain for a  long', 60, '0000-00-00 00:00:00', 1),
(8693, 8429, 59, 4, 0, 'Fresher,not a graduate,19 yrs old family need is there,no parents,Can give a try for Elite Will come for Interview tomorrow, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8694, 8436, 59, 4, 0, 'Need to open a lot,not much aggressive,5050 profile,do check  and let me know ', 60, '0000-00-00 00:00:00', 1),
(8695, 8437, 59, 5, 0, 'have basic knowledge in recruitment, have internship Exp but the communication is not upto the mark as we expected.', 60, '0000-00-00 00:00:00', 1),
(8696, 8438, 59, 4, 0, 'only 6 months Exp,no relevant Exp Long Career Gap,Age around 35yrs,5050 profile,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8697, 8434, 59, 5, 0, 'too lon distance up and down 50 kms,and not much comfortable with the timings,no much knowledge in the  excel, Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(8698, 8440, 13, 7, 0, 'ok ,10k salary tmrw joining', 60, '0000-00-00 00:00:00', 1),
(8699, 8380, 13, 7, 0, 'ok 10k salary tmrw joining', 60, '0000-00-00 00:00:00', 1),
(8700, 8405, 13, 7, 0, 'ok 10k salary tmrw joining', 60, '0000-00-00 00:00:00', 1),
(8701, 8439, 13, 7, 0, 'average than but job need athikama irukku so Training la chance kuduthu pakkalam (Salary 10k tmrw joining)', 60, '0000-00-00 00:00:00', 1),
(8702, 8440, 59, 2, 0, 'Candidate Can Join Only After Completing Their College Studies', 13, '2022-04-12 03:29:57', 1),
(8703, 8441, 13, 5, 0, 'not fit for telesales', 60, '0000-00-00 00:00:00', 1),
(8704, 8439, 59, 2, 0, 'Candidate can join only after completing their College Studies', 13, '2022-04-12 03:32:40', 1),
(8705, 8405, 59, 3, 0, 'Selected for Erode Location in Consultant 5%\n', 13, '2022-04-12 03:34:41', 1),
(8706, 8380, 59, 3, 0, 'Selected for Erode Consultant Role - 5% TDS', 13, '2022-04-12 03:35:31', 1),
(8707, 8438, 11, 4, 0, 'selected for e sales', 59, '2022-04-12 04:08:57', 1),
(8708, 8429, 14, 1, 0, NULL, 59, '2022-04-12 04:10:33', 1),
(8709, 8427, 59, 5, 0, 'Communication is Good,have basic knowledge in Recruitment,Have around 1 yr exp including the internship exp too and her current CTC is 20K and her expectation is more, She needs to travel from tambaram', 60, '0000-00-00 00:00:00', 1),
(8710, 8430, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(8711, 8443, 31, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8712, 8436, 57, 1, 0, NULL, 59, '2022-04-12 07:43:01', 1),
(8713, 8430, 59, 2, 0, 'Have Exp in Recruitment(Much into Sourcing only)1.8 yrs 2 companies and her current CTC is 3LPA,Looking for Min 4 LPA.Interested for HR Executive Roles(Not Focusing only into Recruitment).Lets Hold a try later', 59, '2022-04-12 07:44:45', 1),
(8714, 8447, 59, 5, 0, 'No Graduation,poor communication,will not handle the sales pressure,not suitable', 60, '0000-00-00 00:00:00', 1),
(8715, 8444, 59, 2, 0, 'Candidate need to come back with her confirmation, if she comes back let us decide', 60, '0000-00-00 00:00:00', 1),
(8716, 8453, 24, 5, 0, 'he want and suitable for part time job only.. because he is working agency in bajaj loan. and shawarma shop. so not suitable for our profile', 60, '0000-00-00 00:00:00', 1),
(8717, 8456, 24, 4, 0, 'marriage women.. but not sure to do this job .. kindly cross check', 60, '0000-00-00 00:00:00', 1),
(8718, 8455, 24, 5, 0, 'not fit our profile..', 60, '0000-00-00 00:00:00', 1),
(8719, 8452, 59, 5, 0, 'not suitable have exp in non voice process,no convincing skills,nont comfortable for Arumbakkam location,will not sustain for a long in our roles', 60, '0000-00-00 00:00:00', 1),
(8720, 8442, 59, 5, 0, 'No communication, not much strong in Excel, Focusing only on the salary, last company only 6 months and looking for salary growth, Will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(8721, 8457, 59, 2, 0, 'Communication is Good, Fresher for Recruitment, have 3 months Internship exp in SAP profiles only. Looking much for IT Recruitment positions only, not sure to handle the other domains. Salary Exp in very high min 15K being a fresher. Sustainability doubts a lot, Let us hold and decide later.', 60, '0000-00-00 00:00:00', 1),
(8722, 8416, 59, 2, 0, 'Will come for a direct F2F interview', 60, '0000-00-00 00:00:00', 1),
(8723, 8448, 13, 7, 0, 'ok good  candidate salary 11k sollirukken but candidate location madurai so location shift pannanum so expected salary high maximum 12 to 13k pesi pakkalam', 60, '0000-00-00 00:00:00', 1),
(8724, 8449, 13, 7, 0, 'expected salary is high but he is not worth for high salary', 60, '0000-00-00 00:00:00', 1),
(8725, 8461, 13, 5, 0, 'she is not suitable for tele sales she is like only non-voice  process', 60, '0000-00-00 00:00:00', 1),
(8726, 8448, 59, 5, 0, 'Dropped - High Salary Min 18K TH ,need to relocate from madurai,much prefer for Madurai only,will not join as he holds multiple offer and looking for additional offers', 13, '2022-04-15 12:14:42', 1),
(8727, 8449, 59, 5, 0, '2nd Interview Reject by Muthu-by mistake he mentioned as selected', 13, '2022-04-15 12:18:03', 1),
(8728, 8462, 59, 4, 0, 'Fresher for this profile,can give a try kindly check for RE', 60, '0000-00-00 00:00:00', 1),
(8729, 8462, 57, 5, 0, 'shortlist  not joining\n', 59, '2022-04-15 03:49:36', 1),
(8730, 8458, 59, 5, 0, 'Fresher for Recruitment, Looking for WFH only also she is pregnant now, will not sustain for a long ,not suitable', 60, '0000-00-00 00:00:00', 1),
(8731, 8466, 24, 5, 0, 'no degree and no interview basic skills.. ', 60, '0000-00-00 00:00:00', 1),
(8732, 8464, 74, 7, 0, 'candidate is good and suite for the team voice clarity and flow is good came from poor family background and need for job is must ...10 to 12 expectd salary father farmer intrested in IT but not suite for work apart from thanjavur so no sustainability issues kindly check once.....have laptop and bike immediate joining', 60, '0000-00-00 00:00:00', 1),
(8733, 8473, 59, 3, 0, 'Selected for B2B in Staff Role - Patroniss Employee', 60, '0000-00-00 00:00:00', 1),
(8734, 8475, 13, 7, 0, 'ok,10.5k salary,tmrw joining', 60, '0000-00-00 00:00:00', 1),
(8735, 8474, 59, 5, 0, 'Not open up ,will not sustain in our sales', 60, '0000-00-00 00:00:00', 1),
(8736, 8465, 59, 5, 0, 'Not interested in Insurance Sales', 60, '0000-00-00 00:00:00', 1),
(8737, 8473, 53, 7, 0, 'selected for b2b, pls cnfrm the salary and DOJ.', 59, '2022-04-18 12:48:38', 1),
(8738, 8475, 59, 3, 0, 'Selected for Tanjore Lcoation in consultant Role', 13, '2022-04-18 01:08:01', 1),
(8739, 8464, 59, 2, 0, 'RNR', 74, '2022-04-18 01:18:37', 1),
(8740, 8473, 59, 3, 0, 'Selected for B2B in Staff Role - Patroniss Employee', 53, '2022-04-18 05:19:05', 1),
(8741, 8487, 34, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8742, 8486, 24, 5, 0, 'she is 50 50 only.. she is discuss with family and informed so we will rejected', 60, '0000-00-00 00:00:00', 1),
(8743, 8490, 24, 2, 0, 'confirm with 2nd round', 60, '0000-00-00 00:00:00', 1),
(8744, 8492, 24, 4, 0, 'Selected expc salary 15k to 16k', 60, '0000-00-00 00:00:00', 1),
(8745, 8491, 89, 7, 0, 'Shortlisted', 60, '0000-00-00 00:00:00', 1),
(8746, 8494, 59, 4, 0, 'Internal Team(Esales Kanmani Reference),Suitability for ESales doubt,check for B2B and let me know', 60, '0000-00-00 00:00:00', 1),
(8747, 8493, 59, 4, 0, 'Fresher and have internship Exp, can be trained, only location distance need to be considered, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8748, 8497, 59, 4, 0, 'Good in communication,have 6 months Exp in Recruitment,travelling from so long,kinldy check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8749, 8495, 59, 5, 0, 'Much prefer for non voice,also no basic ideas using Excel,Will not sustain and handle our work pressure', 60, '0000-00-00 00:00:00', 1),
(8750, 8499, 59, 5, 0, 'Fresher,he is focus only for IT positions particularly python and just for time being 6 months he will be in telecalling also need to open a lot,not suitable.In python not that much strong', 60, '0000-00-00 00:00:00', 1),
(8751, 8498, 24, 4, 0, 'selected..', 60, '0000-00-00 00:00:00', 1),
(8752, 8469, 59, 2, 0, 'Sounds Good Looking for Opportunites in Chennai,Salary Exp is Hgh,we suggested the max what we can offer,she needs time to give her confirmation', 60, '0000-00-00 00:00:00', 1),
(8753, 8492, 88, 7, 0, 'selected for RE', 24, '2022-04-20 07:09:21', 1),
(8754, 8498, 88, 1, 0, NULL, 24, '2022-04-20 07:09:40', 1),
(8755, 8456, 88, 1, 0, NULL, 24, '2022-04-20 07:12:57', 1),
(8756, 8493, 53, 1, 0, NULL, 59, '2022-04-20 07:14:22', 1),
(8757, 8494, 53, 1, 0, NULL, 59, '2022-04-20 07:18:21', 1),
(8758, 8497, 53, 1, 0, NULL, 59, '2022-04-20 07:22:54', 1),
(8759, 8483, 24, 5, 0, 'He is not fit for our profile.. not fit in sales', 60, '0000-00-00 00:00:00', 1),
(8760, 8501, 24, 5, 0, 'He is not fit for sales .. he is interested in data entry job only', 60, '0000-00-00 00:00:00', 1),
(8761, 8490, 24, 5, 0, 'She is not interested in sales ', 24, '2022-04-21 01:36:11', 1),
(8762, 8505, 59, 2, 0, 'communication ok,have exp in recruitment,can be trained,only thing is location she is from chengalpet,2nd Round interviewed by gokul and the profile is on hold', 60, '0000-00-00 00:00:00', 1),
(8763, 8484, 13, 5, 0, 'she is not suitable for telesales', 60, '0000-00-00 00:00:00', 1),
(8764, 8491, 88, 7, 0, 'Selected for RE', 89, '2022-04-21 05:23:17', 1),
(8765, 8492, 59, 3, 0, 'Selected for Suthagar Erode Team in consultant role', 88, '2022-04-21 05:45:49', 1),
(8766, 8491, 59, 5, 0, 'Dropped ,candidate is not interested in the position, messaged us stating not interested,Not responding the calls', 88, '2022-04-21 05:51:11', 1),
(8767, 8231, 13, 5, 0, 'he is not active person so not suitable for tele sales', 60, '0000-00-00 00:00:00', 1),
(8768, 8503, 24, 5, 0, 'rejected', 60, '0000-00-00 00:00:00', 1),
(8769, 8513, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8770, 8516, 74, 7, 0, 'She is fit for team voice also good fit for telesales.....6 months experience in tele calling.....but got married in 10 months so need to cross check once have laptop immediate joining...highly job need....kindly check once and cross check sustainability', 60, '0000-00-00 00:00:00', 1),
(8771, 8504, 59, 5, 0, 'NOt suitable,will not sustain in our pressure', 60, '0000-00-00 00:00:00', 1),
(8772, 8507, 13, 7, 0, 'ok,11k salary Monday joining', 60, '0000-00-00 00:00:00', 1),
(8773, 8311, 18, 7, 4, 'Selceted for Santosh Team. Ready to Join on 9th Asking 25K package but can negotiate and give a target for May June July xxamp August and take him in. Good Canditate. Candidate Referred by Vijayaraghavan.', 71, '2022-04-22 02:35:50', 1),
(8774, 8507, 59, 3, 0, 'Selected for Erode  - Consultant Role', 13, '2022-04-22 02:37:41', 1),
(8775, 8515, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8776, 8516, 59, 5, 0, 'Dropped Candidate didnt come back with her Confirmation and not responding to the calls\n', 74, '2022-04-22 05:02:29', 1),
(8777, 8522, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8778, 8444, 59, 5, 0, 'Candidate is not suitable for our roles,will not handle our pressure\n', 59, '2022-04-23 10:50:48', 1),
(8779, 8430, 59, 5, 0, 'Very high CTC exp,Will not sustain in our roles,not suitable', 59, '2022-04-23 10:51:33', 1),
(8780, 8424, 59, 5, 0, 'Communication need to focus ,handling pressure in MIS doubtful,will not sustain,not suitable', 59, '2022-04-23 10:52:51', 1),
(8781, 8464, 59, 5, 0, 'Dropped as the candidate is not interested to take forward this position', 59, '2022-04-23 11:01:57', 1),
(8782, 8509, 59, 2, 0, 'Have few months Exp in Recruitment,career gap is there,Long run doubt with this profile,can hold this profile and let us try later', 60, '0000-00-00 00:00:00', 1),
(8783, 8525, 59, 5, 0, 'Looking opportunities in Remote, not comfortable with the timings', 60, '0000-00-00 00:00:00', 1),
(8784, 8518, 59, 2, 0, 'Selected for HR recruiter,Discussed the salary,candidate yet to give her confirmation on the joining date, once confirmed will proceed further', 60, '0000-00-00 00:00:00', 1),
(8785, 8523, 14, 7, 0, 'Salary 11k. need to confirm joining date', 60, '0000-00-00 00:00:00', 1),
(8786, 8523, 59, 3, 0, 'Selected for Elite Arumbakkam,After 3 months will promote him as a RE Arumbakam  along with the salary revision based on the performance\n', 14, '2022-04-23 02:50:50', 1),
(8787, 8519, 59, 4, 0, 'Communication ok have Exp in telecalling  Bajaj Finance, can give a try kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8788, 8530, 59, 5, 0, 'No Communication,not able to understand,Sustainability Doubt,not suitable', 60, '0000-00-00 00:00:00', 1),
(8789, 8526, 59, 5, 0, 'No Communication,not open up,will not handle the pressure,not suitable', 60, '0000-00-00 00:00:00', 1),
(8790, 8534, 24, 5, 0, 'he is not suitable for our profile.. because Convincing skill 0   ', 60, '0000-00-00 00:00:00', 1),
(8791, 8535, 24, 5, 0, 'rejected', 60, '0000-00-00 00:00:00', 1),
(8792, 8537, 59, 3, 0, 'Selected for Banu Team in Staff Role, PF/ESI/PT ', 60, '0000-00-00 00:00:00', 1),
(8793, 8537, 53, 7, 0, 'selected for b2B. Pls cnfrm the salary and doj. she s looking for immediate joining ', 59, '2022-04-25 02:33:20', 1),
(8794, 8537, 59, 3, 0, 'Selected for Banu Team in Staff Role, PF/ESI/PT ', 53, '2022-04-25 02:44:04', 1),
(8795, 8541, 59, 4, 0, '5050 Profile,Fresher for Sales,Sustainability Doubts,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8796, 8502, 59, 5, 0, 'Communication No,Have 7 months but no basic knowledge in the recruitment,Not suitable for our postiion,will not sustain', 60, '0000-00-00 00:00:00', 1),
(8797, 8519, 53, 1, 0, NULL, 59, '2022-04-25 04:43:12', 1),
(8798, 8539, 59, 3, 0, 'Selected for Santhosh Team - PF/PT deductions', 60, '0000-00-00 00:00:00', 1),
(8799, 8539, 71, 4, 0, 'Select to next round ', 59, '2022-04-25 08:08:13', 1),
(8800, 8541, 57, 5, 0, 'Shortlist but not joinined', 59, '2022-04-25 08:11:30', 1),
(8801, 8539, 18, 7, 4, 'Selecetd For Santosh Team. Negotiate The Salary And Take', 71, '2022-04-26 10:46:31', 1),
(8802, 8538, 59, 3, 0, 'selected for  Arumbakkam  in Consultant Role\n', 60, '0000-00-00 00:00:00', 1),
(8803, 8538, 53, 7, 0, 'Selected for Arumbakkam', 59, '2022-04-26 04:58:18', 1),
(8804, 8538, 59, 3, 0, 'selected for  Arumbakkam  in Consultant Role\n', 53, '2022-04-26 06:10:21', 1),
(8805, 8543, 59, 2, 0, 'Communication Average,Fresher for MIS and not much strong in Excel,not much suits for MIS and tried for Sales,need time to confirm his interest,if he comes back lets see\n', 60, '0000-00-00 00:00:00', 1),
(8806, 8545, 59, 2, 0, 'communication ok,no Tamil communication,handle recruitment for locations except hyderabad wil be difficult.Fresher for Recruitment,need some time to give her the feedback', 60, '0000-00-00 00:00:00', 1),
(8807, 8550, 59, 4, 0, 'Fresher,Seems to be slow,5050 Profile,kindly check for PHP/React', 60, '0000-00-00 00:00:00', 1),
(8808, 8549, 59, 5, 0, 'fresher for React,Not comfort with SA,High salary Expectation,sustainability dooubts', 60, '0000-00-00 00:00:00', 1),
(8809, 8548, 59, 5, 0, 'Fresher,not comfortable to relocate,Not much strong in React,Not comfortable with SA too', 60, '0000-00-00 00:00:00', 1),
(8810, 8550, 27, 1, 0, NULL, 59, '2022-04-26 06:31:49', 1),
(8811, 8529, 59, 5, 0, 'Communication Average,Will not handle the pressure,not suitable for our Roles,understanding capacity is poor,will not sustain', 60, '0000-00-00 00:00:00', 1),
(8812, 8555, 30, 7, 0, 'Selected Can give upto 17.5K TH', 60, '0000-00-00 00:00:00', 1),
(8813, 8311, 59, 3, 0, 'Selected for Santhosh Team with PF/PT ,will give a target for 4-5 months based on that  revision will be provided on achieving', 18, '2022-04-27 12:20:49', 1),
(8814, 8564, 59, 5, 0, 'No sustainability in his profile,have exp in agency handling only,not suitable for GI profile,Will not sustain', 60, '0000-00-00 00:00:00', 1),
(8815, 8558, 59, 5, 0, 'Fresher, Communication Average, month back married and right now in Avadi and ready to relocate but her husband is working in Srioerumbuthur,much comfort to work in nonvoice only as she hold a few months exp in non voice,In our Position,will not sustain and handle the pressure', 60, '0000-00-00 00:00:00', 1),
(8816, 8570, 59, 2, 0, 'Communication Average,have exp for a year but need to check clearly,not much exposure to the recruitment,Long Run doubts need to analyse later let us hold and decide later', 60, '0000-00-00 00:00:00', 1),
(8817, 8569, 59, 5, 0, 'No Communication Prefer To Speak In Tamil Only, 6 Months Exp In Recruitment But Not A Profiled Resume,Will Not Sustain In Our Positions', 60, '0000-00-00 00:00:00', 1),
(8818, 8304, 24, 5, 0, 'CANDIDATE EXPECT HIGH SALARY FRESHERS.. ', 60, '0000-00-00 00:00:00', 1),
(8819, 8563, 24, 5, 0, 'sALES NOT INTERESTED', 60, '0000-00-00 00:00:00', 1),
(8820, 8568, 24, 5, 0, 'CANDIDATE TIMING WAS NOT SUITABLE.. SHES EXPCT LOGUT TIME 6PM. SO REJECTED', 60, '0000-00-00 00:00:00', 1),
(8821, 8571, 24, 5, 0, 'NO SKILLS.. SO REJECTED', 60, '0000-00-00 00:00:00', 1),
(8822, 8565, 24, 5, 0, 'she is not intersted in sales', 60, '0000-00-00 00:00:00', 1),
(8823, 8536, 24, 4, 0, 'CANDIDATE OKAY,, CHECK SUSTAINABILITY.. AND EXPECT PREVIOUSE SALARY', 60, '0000-00-00 00:00:00', 1),
(8824, 8555, 59, 3, 0, 'Selected for PF/PT - Bangalore Location\n', 30, '2022-04-27 05:04:17', 1),
(8825, 8536, 88, 7, 0, 'Selected for RE role', 24, '2022-04-27 05:14:57', 1),
(8826, 8560, 59, 5, 0, 'No communication prefer to speak in tamil only, 6 months Exp in Recruitment but not a profiled resume,will not sustain in our positions', 60, '0000-00-00 00:00:00', 1),
(8827, 8556, 74, 7, 0, 'she is ok with the team suits for telecalling ......she is married and have baby also now in thanjavur planned to settle in thanjavur ............husband worked in chennai weekend only came for to thanjavur....she is with his parents and brothers.....so convenient to work with our team without any permission have no laptop.....have experience in accenture....salary 10 to 12 k expected', 60, '0000-00-00 00:00:00', 1),
(8828, 8556, 59, 2, 0, 'Need time to confirm with her husband\n', 74, '2022-04-27 05:59:24', 1),
(8829, 8588, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(8830, 8587, 59, 3, 0, 'Selected for Syed Team in consultant role', 60, '0000-00-00 00:00:00', 1),
(8831, 8574, 59, 2, 0, 'Communication is Good, have basic exp in HR, but not in Recruitment, Her current Pay is very high also her expectation is also high, No exp in Sourcing Screening, need to train a lot, We have suggested our best pay, she requested time to give her confirmation', 60, '0000-00-00 00:00:00', 1),
(8832, 8586, 59, 5, 0, 'Communication Ok, Have  Exp In Collection But Not In Telecaller Sales, Age Around 31 Yrs And Not Suitable For Our Sales RM, He Has 6 Yrs Exp In Core Field, Attitude Issue, Not Suitable For Us', 60, '0000-00-00 00:00:00', 1),
(8833, 8576, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(8834, 8583, 59, 5, 0, 'frequent Job Changes,will not sustain for a long in Telecaller,also sounds low for for this profile,need to open a lot', 60, '0000-00-00 00:00:00', 1),
(8835, 5974, 86, 4, 0, 'Selected for Next Round', 59, '2022-04-28 04:36:37', 1),
(8836, 5974, 18, 7, 0, 'Can give 2.4 CTC. Ready to join on 9th Selected for Mani Team', 86, '2022-04-28 04:43:48', 1),
(8837, 8576, 57, 4, 0, 'candidate is ok , negotiate the salary and confirm the joining', 59, '2022-04-28 04:55:15', 1),
(8838, 8588, 60, 1, 0, NULL, 56, '2022-04-28 06:12:06', 1),
(8839, 8587, 57, 4, 0, '1yr experience for sbi life insurance, candidate is ok , kindly confirm the joining date', 59, '2022-04-28 06:56:03', 1),
(8840, 8567, 59, 5, 0, 'Dropped.She got aoother offer\n', 60, '0000-00-00 00:00:00', 1),
(8841, 8593, 59, 5, 0, 'No clarity in his previous exp,not ready to telecalling and the field sales, Looking for Non voice, but will not sustain in our backend process', 60, '0000-00-00 00:00:00', 1),
(8842, 8594, 59, 4, 0, 'No relevant Exp ,5 yrs in Backend only,Have a career gap,salary exp is high around 23K,5050 profile,do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8843, 1733, 59, 5, 0, 'Communication ok, Too long Distance she is  from urapakkam around 56 KMS up and down, she left the previous exp due to the long distance(Teynampet),will not sustain for a long,have a plan to go with PHD in abroad', 60, '0000-00-00 00:00:00', 1),
(8844, 8584, 59, 5, 0, 'have exp in voice process,but as a male candidate we prefer to for field,but he is not ready to go as he is having a plate in the side and comfort to travel,Treid of operations but he is not suitable as there is no communication,no basic ideas using excel', 60, '0000-00-00 00:00:00', 1),
(8845, 8594, 34, 1, 0, NULL, 59, '2022-04-29 01:38:17', 1),
(8846, 8576, 88, 7, 0, 'selected for RE role', 57, '2022-04-29 03:11:59', 1),
(8847, 8587, 88, 7, 0, 'Selected for RE role', 57, '2022-04-29 03:13:14', 1),
(8848, 8599, 59, 4, 0, '5050Profile,Communication sounds Bold ,can be trained,fresher and sustainability doubts,kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(8849, 8599, 11, 1, 0, NULL, 59, '2022-04-29 04:29:17', 1),
(8850, 8576, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 88, '2022-04-29 04:40:09', 1),
(8851, 8587, 59, 3, 0, 'Selected for Syed Team in consultant role', 88, '2022-04-29 04:40:42', 1),
(8852, 8536, 59, 3, 0, 'Selectd for Suthagar Team - Consultant 16K TH\n', 88, '2022-04-29 04:41:06', 1),
(8853, 8477, 59, 2, 0, 'Tried couple of times,RNR', 60, '0000-00-00 00:00:00', 1),
(8854, 8616, 13, 7, 0, 'ok 10k salary Today joined  kaviya reference', 60, '0000-00-00 00:00:00', 1),
(8855, 7708, 74, 7, 0, 'she is 2 years experienced in exceloron technologies and speaked well good comunication skills ...suite for our team married and settled with his parents home near to office and husband have one child live in a rental house have laptop and bike joning on wednesday...salary 11 to 12k expected kindly confirm once', 60, '0000-00-00 00:00:00', 1),
(8856, 8617, 74, 5, 0, 'not fit', 60, '0000-00-00 00:00:00', 1),
(8857, 7708, 59, 3, 0, 'Selected for Thanjavur Location - Elite - Consultant', 74, '2022-05-02 03:12:56', 1),
(8858, 8615, 59, 5, 0, 'Selected and we offered,but candidate dropped as he is not comfortable in Package', 60, '0000-00-00 00:00:00', 1),
(8859, 8603, 59, 5, 0, 'Communication ok,having multiple offers and focus much on CMMI level companies only, not comfort with the salary,Holding offes and lookin for additionalxquot\n', 60, '0000-00-00 00:00:00', 1),
(8860, 8616, 59, 3, 0, 'Consultant Role - Erode  - Muthu Elite Team', 13, '2022-05-02 04:30:04', 1),
(8861, 8602, 59, 5, 0, 'Communication ok, no basic knowledge in the recruitment, Fresher for the recruitment profile, salary exp in min 14-15K being a fresher,long run as recruiter doubts', 60, '0000-00-00 00:00:00', 1),
(8862, 8626, 59, 4, 0, 'Communication Average,No Relevant sales Exp.no sustainability too,Internal Reference,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8863, 8619, 59, 5, 0, 'Fresher for Recruitment,No basic knowledge in Protal,have a career gap,Sustainability doubts,We tried checking for Back End,but the candidate left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(8864, 8622, 59, 5, 0, 'No Communication and looking for non  voice only', 60, '0000-00-00 00:00:00', 1),
(8865, 8624, 59, 5, 0, 'much prefer to work in non voice  will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(8866, 8632, 74, 7, 0, 'she is speaked well and ok with the team,,,,completed bE......but she is married and have one child ............now stay with parents and husband so kindly check with the puncuality......have no laptop salary 10k........kindly confirm for the laptop', 60, '0000-00-00 00:00:00', 1),
(8867, 8631, 74, 7, 0, 'she is speaked well and better for the team completed bcom and mcom ready to join immediately have laptop ..........................................marraige arrnged after one year so need to work now so kindly cross check about sustainability...', 60, '0000-00-00 00:00:00', 1),
(8868, 8629, 24, 4, 0, 'Candidate okay, expect 12k salary', 60, '0000-00-00 00:00:00', 1),
(8869, 8626, 89, 1, 0, NULL, 59, '2022-05-03 01:30:44', 1),
(8870, 8637, 59, 5, 0, '1,8 yrs 3 companies recently 2 months back joined a company and looking for a change only for the salary part,no communication,will not sustain in our roles,not comfortable intaking many calls', 60, '0000-00-00 00:00:00', 1),
(8871, 8635, 59, 5, 0, 'He is looking for opportunities in Logistics,long back he attended interview for RE sales and now he appeared for Recruitment.Career Gap and continuously looking for opportunities in Logistics,Will not sustain and not suitable for REcruitment,also his communication is poor', 60, '0000-00-00 00:00:00', 1),
(8872, 8630, 59, 5, 0, 'Communication ok,have 8 months Exp in recruitment,salary exp is high and his official notice is 30 days and it cant be negotiable.But sustainability doubts,discussed with Gokul  too and he is not interested in this profile too', 60, '0000-00-00 00:00:00', 1),
(8873, 8632, 59, 3, 0, 'Selected for Thanjavur  - Elite  - Consultant Role', 74, '2022-05-03 03:56:21', 1),
(8874, 8631, 59, 3, 0, 'Selected for Thanjavur - Erode - Consultant', 74, '2022-05-03 03:58:33', 1),
(8875, 8633, 24, 5, 0, 'He is not fit for sales', 60, '0000-00-00 00:00:00', 1),
(8876, 8612, 59, 5, 0, 'Not suits for our roles\n', 60, '0000-00-00 00:00:00', 1),
(8877, 8636, 24, 5, 0, 'Not fit for telecalling', 60, '0000-00-00 00:00:00', 1),
(8878, 8629, 88, 7, 0, 'joining date  06-Mayxquot22', 24, '2022-05-04 07:38:29', 1),
(8879, 8647, 74, 7, 0, 'she had 3 years above experience in sales field.....sri ram finance 1 year working with 8 k salary....due to mother health issue she releived and 1 year ecperience in small finance with 12.5k salary due to covid releived and last hdfc franchise life 1 year with 12.5 k salary and no files moved so she releived now expected 13 to 14k salary...have laptop and travel 1 hour and ready to join immediately,,', 60, '0000-00-00 00:00:00', 1),
(8880, 8648, 74, 7, 0, 'She Is Experienced Around 3 Years In A Sales Field And Worked In A Loan Bhazaar With 12k Salary And Moved To Hdfc Franchise Life With Payout Basis....Earned 13 To 14 K Above....Now Files Did Not Move So Moved On Fit To Team Have Laptop And Ready To Jon Immediately Father Passed Away...And Looking For A Alliance So Cross Check Once', 60, '0000-00-00 00:00:00', 1),
(8881, 8642, 74, 5, 0, 'not fit', 60, '0000-00-00 00:00:00', 1),
(8882, 8647, 59, 3, 0, 'Selected for Elite - Thanjavur - Consultant', 74, '2022-05-04 12:36:15', 1),
(8883, 8650, 24, 4, 0, 'cANDIDATE OKAY BUT EXPECT SALARY HIGH.. KINDLY CHECK SIR 18K TO 20K', 60, '0000-00-00 00:00:00', 1),
(8884, 8648, 59, 3, 0, 'Selected for Thanjavur location- Consultant', 74, '2022-05-04 02:58:29', 1),
(8885, 8539, 60, 1, 0, NULL, 18, '2022-05-04 03:04:22', 1),
(8886, 8650, 88, 7, 0, 'Joining date  09th Mayxquot22', 24, '2022-05-04 03:04:37', 1),
(8887, 5974, 60, 1, 0, NULL, 18, '2022-05-04 03:05:07', 1),
(8888, 8629, 59, 3, 0, 'Selected for Suthagar Team - Consultant Role', 88, '2022-05-04 03:24:40', 1),
(8889, 8650, 59, 3, 0, 'Selected for Erode - PT only - Prop Company', 88, '2022-05-04 03:25:21', 1),
(8890, 8654, 13, 7, 0, 'ok,13k Salary ,joining date May 10th', 60, '0000-00-00 00:00:00', 1),
(8891, 8653, 74, 7, 0, 'she is ok with the team good voice skill and bold speech.....refered by vinitha......study for banking exam only for past 4 years and ambition tooo but time takes too long so need a job now expected salary 10 to 12k..........have laptop but not suite to take to office........father and mother doing cattering business and brother working in wipro............and ready to join immeditaely............kindly cross check once and confirm  ', 60, '0000-00-00 00:00:00', 1),
(8892, 8655, 59, 4, 0, '5050 profile,fresher,not sustained in the previous company more than 20 days,Sustainability doubts in our roles,kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(8893, 8649, 59, 3, 0, 'Staff Role - Kannan - Balaji Reference - DM RE', 60, '0000-00-00 00:00:00', 1),
(8894, 8638, 59, 5, 0, 'Fresher ,no basic skills ,have 1 yr exp in textiles sales,but not open up for our Roles,will not handle our pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(8895, 8645, 59, 5, 0, 'Communication No,have exp but not in recruitment,just a coordination,Salary Exp is high comparing the exp,not suitable\n', 60, '0000-00-00 00:00:00', 1),
(8896, 8651, 59, 5, 0, 'Full testing profile,no basic skills of HTML CSS JS,Much focus in Testing profile,not comfort in TxxampC,Not suitable', 60, '0000-00-00 00:00:00', 1),
(8897, 8652, 59, 4, 0, 'have exp in PHP,Exp is almost ok but need to negotiate,can give a try ,check for PHP and let us know', 60, '0000-00-00 00:00:00', 1),
(8898, 8655, 53, 1, 0, NULL, 59, '2022-05-05 01:26:35', 1),
(8899, 8649, 88, 7, 0, 'Selected for RE', 59, '2022-05-05 01:31:24', 1),
(8900, 8652, 27, 1, 0, NULL, 59, '2022-05-05 01:33:26', 1),
(8901, 8653, 59, 3, 0, 'Selected for Elite - Thanjavur - Consultant', 74, '2022-05-05 02:20:31', 1),
(8902, 8654, 59, 3, 0, 'Selected for Erode - Consultant Role', 13, '2022-05-05 05:15:29', 1),
(8903, 8660, 31, 4, 4, 'Candidate is okay need to conform the salary', 60, '0000-00-00 00:00:00', 1),
(8904, 8659, 59, 5, 0, 'Communication is Good,but seems much attentive seeker,will not run for a long in our positions,Pressure handling doubts ', 60, '0000-00-00 00:00:00', 1),
(8905, 8639, 59, 5, 0, 'No basic skills , yet to complete her graduation,will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(8906, 8641, 59, 5, 0, 'Communication is Good,fresher for Recruitment,Min exp is 20 and not ready to come down,Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(8907, 8673, 24, 5, 0, 'nO RELAVAND EXPERIENCE.. ALREADY HAVING 20K SALARY SO EXPECT SALARY WE NOT PROVIDE', 60, '0000-00-00 00:00:00', 1),
(8908, 8668, 59, 2, 0, 'Fresher For MIS,Can Give A Try, Gokul Interviewed,Yet To Complete Their Exams,If They Come Back Lets See', 60, '0000-00-00 00:00:00', 1),
(8909, 8666, 59, 2, 0, 'Fresher for MIS,can give a try,Gokul Interviewed,Yet to complete their exams,if they come back lets see', 60, '0000-00-00 00:00:00', 1),
(8910, 8671, 59, 3, 0, 'Selected for Ravi Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(8911, 8669, 59, 5, 0, 'Fresher,Need To Open Alot,Will Not Handle Our Pressure Not Suitable', 60, '0000-00-00 00:00:00', 1),
(8912, 8667, 59, 5, 0, 'Fresher,need to open alot,will not handle our pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(8913, 8664, 59, 5, 0, 'Aged,9yrs gap,Fresher for Recruitment,Not comfort to work on saturdays,will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(8914, 8663, 59, 5, 0, 'Fresher,no basic in recruitment,even in excel,will not handle the work pressure,will not run in a long', 60, '0000-00-00 00:00:00', 1),
(8915, 8661, 59, 5, 0, 'Communication very Average,married sustainability doubts,1.5 yrs but seems not a good profile,will no sustain', 60, '0000-00-00 00:00:00', 1),
(8916, 8676, 59, 5, 0, 'Not open up,will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(8917, 8677, 59, 3, 0, 'Selected for Pandian Team   -  PF/PT', 60, '0000-00-00 00:00:00', 1),
(8918, 8675, 59, 4, 0, 'Have Exp in Sales,but not sure on the calling activities,age around 32 years,,taking calls doubts a lot,5050 profile do check and let me know\n', 60, '0000-00-00 00:00:00', 1),
(8919, 8665, 24, 4, 0, 'Selected .. expect salary 14k ..', 60, '0000-00-00 00:00:00', 1),
(8920, 8670, 24, 4, 0, 'SELECTED.. EXPCT 12K SALARY', 60, '0000-00-00 00:00:00', 1),
(8921, 8660, 29, 1, 0, NULL, 31, '2022-05-06 03:46:26', 1),
(8922, 8665, 88, 7, 0, 'Selected for RE Role', 24, '2022-05-06 03:56:19', 1),
(8923, 8670, 88, 7, 0, 'Selected for rE role', 24, '2022-05-06 03:57:53', 1),
(8924, 8670, 59, 3, 0, '\nSelected for Suthagar Erode - Consultant', 88, '2022-05-06 06:14:00', 1),
(8925, 8649, 59, 3, 0, 'Staff Role - Kannan - Balaji Reference - DM RE', 88, '2022-05-06 06:14:37', 1),
(8926, 8665, 59, 3, 0, 'Selected for Suthagar Team - Consultant Role', 88, '2022-05-06 06:15:22', 1),
(8927, 8671, 88, 7, 0, 'Selected for RE', 59, '2022-05-06 07:29:25', 1),
(8928, 8675, 34, 1, 0, NULL, 59, '2022-05-06 07:39:04', 1),
(8929, 8677, 80, 7, 4, 'Shortlisted ', 59, '2022-05-06 07:40:23', 1),
(8930, 8674, 59, 5, 0, 'Looking much focus on the core,will not run for a long in our roles,will not sustain', 60, '0000-00-00 00:00:00', 1),
(8931, 8681, 59, 5, 0, 'Fresher for Recruiter,but his exp is very high concern the previous exp,not ready to come down on the salary and being a fresher exp very high', 60, '0000-00-00 00:00:00', 1),
(8932, 8678, 59, 5, 0, 'No communication,not suits for recruitment,not interested to go in telesales too ,  not suitable', 60, '0000-00-00 00:00:00', 1),
(8933, 8684, 30, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8934, 8691, 59, 3, 0, 'Selected for Thiyagu Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(8935, 8693, 59, 3, 0, 'Selected for Mern - 5K stipend for 5 month then 10-12K Salary 3yrs SA', 60, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(8936, 8690, 59, 2, 0, 'Communication Average,need to open a lot,can give a try for Erode,Once done with next round lets see', 60, '0000-00-00 00:00:00', 1),
(8937, 8691, 16, 7, 0, 'Good Candidate', 59, '2022-05-09 07:09:58', 1),
(8938, 8557, 91, 4, 0, 'Sounds good in comunication \npast experience is only into lead generation\nsalary expecting 25K but only 1 month experience \ncommitment wise not sounding clear for long time\n\nCan proceed with India first salary with 10% hike if she gives commitment for next 1 year\n\nPerformance wise she had done only 1L business that to only for 3 months others 50K-70K with 2 nopxquots\n', 60, '0000-00-00 00:00:00', 1),
(8939, 8557, 18, 7, 0, 'Selected for Hyderabad. Immed Joining. Negotiate the Salary. Immed Joiner Give Joining date next monday', 91, '2022-05-10 04:11:05', 1),
(8940, 8677, 18, 7, 0, 'Selected for Pandi Team. Negotiated salary for 3.75 salary. Experienced guy. Joining tomorrow.', 80, '2022-05-10 04:20:33', 1),
(8941, 8706, 59, 3, 0, 'Selected for Syed Team  -  Staff Role', 60, '0000-00-00 00:00:00', 1),
(8942, 8703, 24, 5, 0, 'candidate okay.. but candidate need to discuss with family because here target job so', 60, '0000-00-00 00:00:00', 1),
(8943, 8701, 24, 5, 0, '19yrs Old .. Not Suitable For Our Profile.. ', 60, '0000-00-00 00:00:00', 1),
(8944, 8700, 24, 5, 0, '19yrs old .. not suitable for our profile.. ', 60, '0000-00-00 00:00:00', 1),
(8945, 8677, 59, 3, 0, 'Selected for Pandian Team   -  PF/PT', 18, '2022-05-10 05:06:12', 1),
(8946, 8557, 60, 1, 0, NULL, 18, '2022-05-10 05:07:13', 1),
(8947, 8706, 57, 4, 4, 'candidate is ok , he already working Decathlon night shift, he is interest in sales ', 59, '2022-05-10 07:07:03', 1),
(8948, 8671, 59, 3, 0, 'Selected for Ravi Team with PF/ESI/PT', 88, '2022-05-11 09:53:07', 1),
(8949, 8250, 59, 3, 0, 'Selected for Muthu Team - Consultant Role', 13, '2022-05-11 10:11:31', 1),
(8950, 8709, 74, 7, 0, 'he is well profiled and fit for team and telesales.....salary expected 10 to 12 k and already selected in first source and hgs global solution .........in chennai due to fathers health issue looking for job in home town father driver and one brother studing btech it and travel to office time 45 min he is confirmed to ready laptop so cross check once and kindly confirm joining once ', 60, '0000-00-00 00:00:00', 1),
(8951, 8708, 74, 5, 0, 'not fit', 60, '0000-00-00 00:00:00', 1),
(8952, 8714, 74, 5, 0, 'not fit', 60, '0000-00-00 00:00:00', 1),
(8953, 8713, 74, 7, 0, 'he is speaking good and potential candidate...father is a driver..and one brother studying be in kumbakonam.....already selected in chennai first source hgs companies but he is not joined due to father health issue so kindly confirm once expected 10 to 12k and have laptop....travel time 1 hour but ready to join immediately', 60, '0000-00-00 00:00:00', 1),
(8954, 8711, 59, 4, 0, 'Internal Reference,not suitable for our roles,will not sustain,Need to open a lot,as it is a internal reference kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8955, 8712, 59, 4, 0, '5050 profile,focus much in accounts profile,Fresher for Telecalling ,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8956, 8715, 59, 5, 0, 'Internal REference,not interested in telesales,not interested in Insurance domain too.not suitable ', 60, '0000-00-00 00:00:00', 1),
(8957, 8710, 59, 5, 0, 'Communication Average,For recruiter she need to open a lot no basic ideas in the recritment,have exp in telecalling sales,but no sustainability in the previous exp.not comfort on the TxxampC.Will not sustain and not suitable for sales too ', 60, '0000-00-00 00:00:00', 1),
(8958, 8711, 51, 5, 0, 'not ok with  calling', 59, '2022-05-11 02:54:19', 1),
(8959, 8712, 53, 1, 0, NULL, 59, '2022-05-11 02:56:56', 1),
(8960, 8713, 59, 5, 0, 'Sithyvinayagam rejected the profile\n', 74, '2022-05-11 04:03:58', 1),
(8961, 8706, 88, 7, 0, 'Selected for RE', 57, '2022-05-11 04:14:43', 1),
(8962, 8706, 59, 3, 0, 'Selected for Syed Team  -  Staff Role', 88, '2022-05-11 06:05:20', 1),
(8963, 8339, 59, 3, 0, 'Selected for Erode - Consultant Role', 13, '2022-05-11 07:34:50', 1),
(8964, 8725, 59, 5, 0, 'No Communicaiton,will not suits for our roles,up and  down 50 kms', 60, '0000-00-00 00:00:00', 1),
(8965, 8717, 91, 4, 0, 'Candidate Is Shortlisted For Second Round.\nCommunication Skills In English Are Above Average And In Telugu, She Is Presenting In A Good Way. We Are Looking For Ap/Ts She Can Communicate Betterley. \n\nwork experience is into sales done as front line sales and services, best thing I observed is consistency for 3 years.  commitment to their job she is transparent. hope she will stay with us for a long time. \n\nin proper training she will show  the better results. \n\nreason of job break :- break in job cycle due to father health condition she left the job. ', 60, '0000-00-00 00:00:00', 1),
(8966, 8727, 14, 7, 0, 'candidate ok experience less max salary 10.5k and need to confirm joining date', 60, '0000-00-00 00:00:00', 1),
(8967, 8726, 14, 7, 0, 'Candidate ok but salary expectation high 15k one year experience only need to confirm joining date salary max 11.5k ', 60, '0000-00-00 00:00:00', 1),
(8968, 8709, 59, 5, 0, 'Dropped No  response', 74, '2022-05-12 12:53:21', 1),
(8969, 8729, 74, 7, 0, 'he well profiled and fit for telesales and voice skill is too and fit for team....3 month experience in first sourse trichy ....but expected 15 k  will do 11 to 13k is worth so kindly confirm once.......have laptop and immediate joining ......poor family only and intrested in programming so cross check once', 60, '0000-00-00 00:00:00', 1),
(8970, 8730, 59, 4, 0, 'No Relevant Exp in Sales,have only B2B,Internal REference kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8971, 8729, 59, 5, 0, 'Dropped very high cTC,fresher for Telecalling not ready to come down than 13K', 74, '2022-05-12 01:25:24', 1),
(8972, 8726, 59, 5, 0, 'Dropped ,kept the call on hold for a long and not responding later', 14, '2022-05-12 01:29:33', 1),
(8973, 8727, 59, 5, 0, 'Dropped RNR\n', 14, '2022-05-12 01:31:35', 1),
(8974, 8717, 18, 8, 0, 'This is Hyd Candidate and we have freezed recruitment there', 91, '2022-05-12 05:11:33', 1),
(8975, 8720, 59, 5, 0, 'Communicaiton Average,no basic ideas in the recruitment and understanding poor.will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(8976, 8731, 59, 4, 0, 'Communication Ok Have Exp in Showroom and filed sales,5050 for Telecalling kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8977, 8733, 59, 5, 0, 'No Communicaiton not open up have 3 yrs in non voice,even not suitable for our MIS Roles', 60, '0000-00-00 00:00:00', 1),
(8978, 8730, 16, 5, 0, 'Not Quality', 59, '2022-05-12 07:21:03', 1),
(8979, 8731, 53, 1, 0, NULL, 59, '2022-05-12 07:22:23', 1),
(8980, 8739, 59, 3, 0, 'Selected for ESales  - PF/PT.ESI Deductions', 60, '0000-00-00 00:00:00', 1),
(8981, 8740, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(8982, 8742, 59, 4, 0, 'No Exp in Sales,fresher family need is there,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8983, 8738, 59, 4, 0, '5050 profile,have 1 yr exp but need to open a lot,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8984, 8741, 24, 2, 0, 'candidate okay but he want discuss with family for bike so want to confim monday', 60, '0000-00-00 00:00:00', 1),
(8985, 8745, 24, 4, 0, 'candidate okay.. expect salary 13k to 15k', 60, '0000-00-00 00:00:00', 1),
(8986, 8738, 53, 1, 0, NULL, 59, '2022-05-13 06:47:40', 1),
(8987, 8739, 11, 4, 0, 'she is ok for E sales', 59, '2022-05-13 06:49:03', 1),
(8988, 8742, 57, 1, 0, NULL, 59, '2022-05-13 07:01:47', 1),
(8989, 8751, 24, 5, 0, 'Not speaking well.. Family women timing also not suitable for her', 60, '0000-00-00 00:00:00', 1),
(8990, 8752, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(8991, 8745, 88, 7, 0, 'selected for RE role', 24, '2022-05-14 01:17:55', 1),
(8992, 8740, 59, 3, 0, 'Selected for Manivel - Staff Role', 56, '2022-05-14 01:28:12', 1),
(8993, 8756, 59, 5, 0, 'Only into UX designing,candidate is clear that he is just looking for  initial learning will not sustain in our roles,no basic knowledge in UI Development', 60, '0000-00-00 00:00:00', 1),
(8994, 8743, 59, 5, 0, 'NOt open up not suitable for Telesales,Attitude issue', 60, '0000-00-00 00:00:00', 1),
(8995, 8752, 59, 2, 0, 'Discussed with the candidate fresher for our sales Bangalore Location Exp 20K TH need time to give his confirmation', 56, '2022-05-14 01:29:47', 1),
(8996, 8750, 59, 5, 0, 'Voice Low,very high salary Expectation,not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(8997, 8753, 59, 4, 0, 'communication very average,have 8 months in telesales,career Gap ,5050 profile internal reference kindly check and let me know your inputs\n', 60, '0000-00-00 00:00:00', 1),
(8998, 8754, 24, 4, 0, 'candidate okay .. expect salary 13k to 14k', 60, '0000-00-00 00:00:00', 1),
(8999, 8749, 59, 5, 0, 'Communication Poor,no basic knowledge in recruitment areas,he was a kind of executive handled admin activities,will not handle our work pressure,also sustainability issues will be,Salary exp is very high', 60, '0000-00-00 00:00:00', 1),
(9000, 8758, 59, 5, 0, 'No Sales Exp,No Communication not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(9001, 8755, 59, 5, 0, 'Not Suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(9002, 8746, 59, 3, 0, 'Selected for Arumbakkam team consultant Role', 60, '0000-00-00 00:00:00', 1),
(9003, 8696, 59, 2, 0, 'Communication ok,have exp in telecalling and 3 months in Recruitment,need to be trained,5050 profile,not comfirtable with TxxampC,if she comes back let us See', 60, '0000-00-00 00:00:00', 1),
(9004, 8748, 59, 5, 0, 'No Communication,will not sustain and not suitabe for the position', 60, '0000-00-00 00:00:00', 1),
(9005, 8746, 53, 7, 0, 'selected for elite. pls cnfrm the sal and DOJ', 59, '2022-05-14 05:24:20', 1),
(9006, 8691, 60, 1, 0, NULL, 16, '2022-05-14 05:30:15', 1),
(9007, 8753, 11, 1, 0, NULL, 59, '2022-05-14 05:33:12', 1),
(9008, 8745, 59, 3, 0, 'Selected for Suthagar Team,Fresher  Suthagar Team PF/ESI/PT', 88, '2022-05-16 10:49:46', 1),
(9009, 8754, 88, 7, 0, 'Selected for RE', 24, '2022-05-16 12:17:32', 1),
(9010, 8741, 24, 5, 0, 'hexquots Thinking over and take time also long time so we rejected.. ', 24, '2022-05-16 12:27:12', 1),
(9011, 8754, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT\n', 88, '2022-05-16 01:00:05', 1),
(9012, 8761, 72, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9013, 8763, 59, 5, 0, 'no communication no basic knowledge in Figma,Designing Skills,need to open a lot,will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(9014, 8757, 59, 5, 0, 'Not open up fresher not suitable', 60, '0000-00-00 00:00:00', 1),
(9015, 8759, 59, 5, 0, 'Communication Average,No Exp in recruitment,hr executive and min 30K Exp on Salary,also not much comfort on TxxampC,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(9016, 8760, 59, 5, 0, 'no communication,not much strong in the excel work,will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(9017, 8769, 59, 3, 0, 'Selected for Manikandan - RM profile with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9018, 8765, 59, 4, 0, 'Have 2.3 yrs exp in telecalling,but ni collections,can give atry for ESales kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9019, 8737, 59, 5, 0, 'Not interested in Telesales,will not handle ourSales pressure,not suitable', 60, '0000-00-00 00:00:00', 1),
(9020, 8769, 86, 4, 0, 'Selected For Next Round', 59, '2022-05-17 03:38:41', 1),
(9021, 8765, 11, 1, 0, NULL, 59, '2022-05-17 03:39:47', 1),
(9022, 8279, 24, 4, 0, 'Candidate okay but need to check job important and sustainability ', 60, '0000-00-00 00:00:00', 1),
(9023, 8768, 24, 4, 0, 'Selected .. expt 15k .. but told 10k to 13k', 60, '0000-00-00 00:00:00', 1),
(9024, 8769, 18, 7, 3, 'Shortlisted for mani team. Expected current take home is 27K expected 10% hike. Try to negotiate . Ready to join on Monday', 86, '2022-05-17 03:49:14', 1),
(9025, 8766, 24, 5, 0, 'Not fit for us', 60, '0000-00-00 00:00:00', 1),
(9026, 8768, 88, 7, 0, 'selected for RE role', 24, '2022-05-17 03:53:46', 1),
(9027, 8279, 88, 1, 0, NULL, 24, '2022-05-17 03:55:31', 1),
(9028, 8768, 59, 3, 0, 'Selected for RE - Consultant Role - Erode Suthagar Team\n', 88, '2022-05-17 06:52:26', 1),
(9029, 8762, 59, 4, 0, 'Check with the task and let us decide\n', 60, '0000-00-00 00:00:00', 1),
(9030, 8769, 60, 1, 0, NULL, 18, '2022-05-18 01:46:54', 1),
(9031, 8780, 93, 7, 0, 'candidate is ok you can process further', 60, '0000-00-00 00:00:00', 1),
(9032, 8646, 59, 2, 0, 'communication is Good, has exp in IT recruitment, her current salary is 2.5 LPA, earlier when she joins the company it was 2.3 LPA. Now she is expecting 3 LPA finally ready to come down to 2.6 LPA but only 6 months strong in IT profiles. In our sales profile, she was ok but seems not much comfortable with TxxampC.Ask her to come for F2F and lets decide', 60, '0000-00-00 00:00:00', 1),
(9033, 8646, 59, 2, 0, 'Communication ok, Have only 6 months Exp in Recruitment, need to relocate from Madurai but her salary expect is around 18K.His current Salary is 10K.Her sustainability doubts in the long run comparing her salary expectation.Hold this profile,we can decide later on this profile,She has career gap to', 59, '2022-05-18 02:58:51', 1),
(9034, 8698, 59, 5, 0, 'communication is Good, has exp in IT recruitment, her current salary is 2.5 LPA, earlier when she joins the company it was 2.3 LPA. Now she is expecting 3 LPA finally ready to come down to 2.6 LPA but only 6 months strong in IT profiles. In our sales profile, she was ok but seems not much comfortable with TxxampC.Ask her to come for F2F and lets decide', 60, '0000-00-00 00:00:00', 1),
(9035, 8601, 59, 5, 0, 'Communication ok, Overall 1.5 yrs she traveled with 3 companies and this is her 4th company. In that, last 8 months, only she been in recruitment and looking for min exp of 17K.Long run sustainability doubts in this profile.Letshold this profile and decide later', 60, '0000-00-00 00:00:00', 1),
(9036, 8762, 69, 1, 0, NULL, 59, '2022-05-18 03:04:25', 1),
(9037, 8780, 60, 1, 0, NULL, 93, '2022-05-18 03:09:17', 1),
(9038, 8777, 59, 2, 0, 'No Sustainability,Not inrerested in Telecalling,Checked for Bakend,Also not comfortable in TxxampC,If she come back lets try', 60, '0000-00-00 00:00:00', 1),
(9039, 8752, 59, 5, 0, 'Dorpped as the candidate is not ready to join us\n', 59, '2022-05-18 05:39:34', 1),
(9040, 8588, 59, 5, 0, 'Candidate not reponding to the calls\n', 59, '2022-05-18 05:42:56', 1),
(9041, 8774, 88, 7, 0, 'Selected for RE', 57, '2022-05-18 06:15:57', 1),
(9042, 8774, 59, 3, 0, 'Selected for RE Syed Team with PF/ESI/PT\n', 88, '2022-05-18 06:42:51', 1),
(9043, 8785, 59, 2, 0, '5050 Profile,fresher for our domain,need to come for final round,can be trained ', 60, '0000-00-00 00:00:00', 1),
(9044, 8793, 74, 7, 0, 'he studied in thanjavur bba and working in a automobile company in chennai for 1 year and move to tellicalling for 3 months due to some health issue releived from the job father passed away from office to native too far soo choose to came from uncle house half hour travel or else clg friends room in thanjavur...no laptop and speak good and fit for team ............salary expected 15k but ok with 11 to 12 k....have bike and monday joining kindly check once', 60, '0000-00-00 00:00:00', 1),
(9045, 8789, 59, 5, 0, 'Not interested in telesales and not comforts with the TxxampC for Backend and no basic skills in the operations.Will not sustain', 60, '0000-00-00 00:00:00', 1),
(9046, 8791, 59, 5, 0, 'Internal Team Reference for operations,no communicaiton,no basic skills in Excel will not handle  our pressure', 60, '0000-00-00 00:00:00', 1),
(9047, 8790, 24, 4, 0, 'candidate selected.. exp 12 to 13k .. joining monday', 60, '0000-00-00 00:00:00', 1),
(9048, 8795, 59, 5, 0, 'Communication Average,No Sales Exp he is into collections only,not suits for our sales process', 60, '0000-00-00 00:00:00', 1),
(9049, 8793, 59, 3, 0, 'Selected for Thanjavur Elite - Consultant Role', 74, '2022-05-19 04:07:02', 1),
(9050, 8790, 88, 7, 0, 'Selected for RE', 24, '2022-05-19 04:18:28', 1),
(9051, 8788, 93, 7, 0, 'Selected ', 60, '0000-00-00 00:00:00', 1),
(9052, 8776, 93, 5, 0, 'No response ', 60, '0000-00-00 00:00:00', 1),
(9053, 8798, 59, 5, 0, 'Communication ok,not comfort in TxxampC,Will not handle our Pressure\n', 60, '0000-00-00 00:00:00', 1),
(9054, 8802, 24, 5, 0, 'not fit for sales', 60, '0000-00-00 00:00:00', 1),
(9055, 8801, 24, 5, 0, 'not fit for sales', 60, '0000-00-00 00:00:00', 1),
(9056, 8796, 24, 4, 0, 'Candidate Selected Monday Joining expct 14k to 15k', 60, '0000-00-00 00:00:00', 1),
(9057, 8799, 59, 5, 0, 'Communication no,not comfortable in taking calls and field,not suits for the backend positions too,not suitable', 60, '0000-00-00 00:00:00', 1),
(9058, 8792, 59, 5, 0, 'Communication Average,no convincing,handling pressure doubts,will not sustain', 60, '0000-00-00 00:00:00', 1),
(9059, 8806, 59, 2, 0, 'Communication Ok,age around 32 yrs,need to train a lot in our roles,9yrs in backend but not in Excel works,Thinking a lot on the service agreements,if she comes back lets try', 60, '0000-00-00 00:00:00', 1),
(9060, 8805, 59, 5, 0, 'Communication Average, need to open a lot, not much comfort in Field Sales, not suits for CRM too, will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(9061, 8803, 74, 7, 0, 'she is already working in lic 6 month and joined in a excela technologies in thanjavur parttime basis.........speaking good and fit for team......father post master mother cashier in panjayathu board .....only child ......have bike and desktop but salary expectation high bcoz of no vision in job ........kindly confirm the salary once 11 to 12k.....', 60, '0000-00-00 00:00:00', 1),
(9062, 8804, 59, 4, 0, 'Fresher for our sales,Internal team reference, need to train a lot, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9063, 8804, 53, 1, 0, NULL, 59, '2022-05-20 05:02:50', 1),
(9064, 8800, 59, 2, 0, 'Communication is good, she has exp in the backend, but not much in excel works needs to train a lot. She is currently in Hexaware and looking for opportunities only for the 2 days of weekend leaves required. Need to serve 30 days of notice. She will not handle our Pressure and Sustain with us. Every year she jumps to a different company stating health conditions. she needs to travel from Tambaram.', 60, '0000-00-00 00:00:00', 1),
(9065, 8790, 59, 3, 0, 'Selected for  RE Profile - Suthagar - Consultant Role\n', 88, '2022-05-20 07:19:05', 1),
(9066, 8796, 88, 7, 0, 'Selected for RE', 24, '2022-05-21 10:56:17', 1),
(9067, 8803, 59, 5, 0, 'Candidate not interested to join\n', 74, '2022-05-21 11:02:10', 1),
(9068, 8796, 59, 5, 0, 'Dropped not interested in Sales Target will not join\n', 88, '2022-05-21 12:39:19', 1),
(9069, 8810, 59, 5, 0, 'Communication Average, no basic skills in Excel, Frequent Job changes, Distance to long,have worked in same domain but not interested,Not suitable', 60, '0000-00-00 00:00:00', 1),
(9070, 8811, 59, 5, 0, 'Have Exp in other domain,fresher for MIS,only basic in Excel Need to trian a lot,Too long distance,not comfort in SA,Will not sustain', 60, '0000-00-00 00:00:00', 1),
(9071, 8812, 59, 5, 0, 'For MIS No communication and no basic knowledge in the Excel, also not interested in Sales Telecaling ,not suitable ', 60, '0000-00-00 00:00:00', 1),
(9072, 8809, 59, 4, 0, 'Communication is Good have exp in Telesales,Star Health - Can give a try for our roles,sounds good kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9073, 8809, 60, 1, 0, NULL, 59, '2022-05-21 05:36:25', 1),
(9074, 8779, 59, 5, 0, 'No communcition,not interested in Sales profile,also looking for admin roles only,Checked for our backend positions too,but not suitable and not interested towards the profile will not sustain', 60, '0000-00-00 00:00:00', 1),
(9075, 8813, 74, 7, 0, 'she well profiled and suite for telecalling have laptop and nearby home only 3 km salary expected 11 to 12k ....1 year experience in tellecalling kindly check once and confirm', 60, '0000-00-00 00:00:00', 1),
(9076, 8825, 74, 5, 0, 'not fit', 60, '0000-00-00 00:00:00', 1),
(9077, 8817, 59, 5, 0, 'Age around 38 yrs,Worked in Various Sectors,Foreign Return,Have Exp in HR but not strong in our recruitment areas,will not handle our pressuce, Will not sustain ', 60, '0000-00-00 00:00:00', 1),
(9078, 8818, 59, 3, 0, 'Selected for B2B - consultant Role', 60, '0000-00-00 00:00:00', 1),
(9079, 8819, 59, 5, 0, 'No communication,PRevious Exp seems to be false,sustainability doubts,will not handle our pressure Target', 60, '0000-00-00 00:00:00', 1),
(9080, 8820, 59, 2, 0, 'Communiation Ok,Can give a try for Recruiter Role,6 months Accoutns Exp in one Plus,Ok with TxxampC max 1.5 yrs SA Doc Sub,Notice 15 Days,Can appear for final round F2F next week', 60, '0000-00-00 00:00:00', 1),
(9081, 8814, 59, 5, 0, 'Not open up not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(9082, 8813, 59, 3, 0, 'Selected for Elite Thanjavur Location - Consultant Role', 74, '2022-05-23 01:28:07', 1),
(9083, 8818, 53, 7, 0, 'Selected for b2b. Kindly cnfrm the salary and DOJ. sal 14k i commintted increment after 6Month depends upon her  performance.', 59, '2022-05-23 01:39:45', 1),
(9084, 8826, 24, 5, 0, 'Not suitable', 60, '0000-00-00 00:00:00', 1),
(9085, 8824, 24, 5, 0, 'not suitable for us', 60, '0000-00-00 00:00:00', 1),
(9086, 8815, 59, 2, 0, 'Communication is good, have internship Exp, earning stipend around 15K, currently in an internship with saint Gobain, also he is in the final semester, have exams between 15June-25 June, Can join post completion of exams only and his expectation is Min 17-18KTH.He need some time to decide on the terms xxamp conditions,if he comes back lets see', 60, '0000-00-00 00:00:00', 1),
(9087, 8831, 24, 5, 0, 'Rejected.. he is not interested..', 60, '0000-00-00 00:00:00', 1),
(9088, 8832, 24, 5, 0, 'Voice not bold and also very low.. not confident', 60, '0000-00-00 00:00:00', 1),
(9089, 8828, 59, 3, 0, 'Selected for GK Sir Team PF/PT', 60, '0000-00-00 00:00:00', 1),
(9090, 8834, 59, 5, 0, 'Communication ok,not yet completed his graduation,Exams are there,Not much comfort in field sales,Need to change his dressings ', 60, '0000-00-00 00:00:00', 1),
(9091, 8836, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(9092, 8836, 59, 3, 0, 'Selected for Muppudathy team with PF/PT', 56, '2022-05-24 05:50:12', 1),
(9093, 8830, 59, 2, 0, 'Candidate is not available,should give a call tomorrow\n', 60, '0000-00-00 00:00:00', 1),
(9094, 8828, 31, 4, 4, 'candidate okay.  ', 59, '2022-05-24 06:30:16', 1),
(9095, 8788, 60, 1, 0, NULL, 93, '2022-05-24 06:43:30', 1),
(9096, 8827, 59, 2, 0, 'Communication is good, have exp as a research executive in native, ready to relocate and can give a try for the MIS role, Need some time to confirm this profile, will check again for the sustainability and let you know.Lets hold this profile', 60, '0000-00-00 00:00:00', 1),
(9097, 8835, 59, 2, 0, 'Communication is good, Fresher for Telecalling Sales, Currently working as a lecturer, sounds good in communicating, can be trained, sustainability needs to check,5050 profile, Kindly schedule him for a virtual with the DM team. Let them review and come back with the inputs.', 60, '0000-00-00 00:00:00', 1),
(9098, 8828, 29, 7, 3, 'Gk team ', 31, '2022-05-25 11:06:28', 1),
(9099, 8835, 57, 4, 0, 'Candiate ok pls confirm joining date and salary ', 59, '2022-05-25 01:23:38', 1),
(9100, 8835, 59, 4, 0, 'Communication is good, Fresher for Telecalling Sales, Currently working as a lecturer, sounds good in communicating, can be trained, sustainability needs to check,5050 profile, Kindly check and let me know your inputs', 59, '2022-05-25 01:23:38', 1),
(9101, 8833, 59, 4, 0, 'Communciation ok ,have 6 months field sales Exp can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9102, 8833, 89, 5, 0, 'No skill', 59, '2022-05-25 04:53:59', 1),
(9103, 8739, 60, 1, 0, NULL, 11, '2022-05-25 06:26:12', 1),
(9104, 8828, 60, 1, 0, NULL, 29, '2022-05-25 06:56:50', 1),
(9105, 8739, 60, 1, 0, NULL, 29, '2022-05-25 06:59:06', 1),
(9106, 8837, 59, 4, 0, 'Communication ok,have exp in sales but not a relevant one,can give a try check and let me know\n', 60, '0000-00-00 00:00:00', 1),
(9107, 8842, 59, 3, 0, 'Selected for Babu Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9108, 8844, 59, 5, 0, 'Fresher for Sales,backend exp but not in Excel works,no basic ideas too,will not handle the pressure and not suitable', 60, '0000-00-00 00:00:00', 1),
(9109, 8837, 82, 1, 0, NULL, 59, '2022-05-26 06:42:21', 1),
(9110, 8842, 89, 7, 0, 'Shortlisted \n', 59, '2022-05-26 06:43:32', 1),
(9111, 8818, 59, 3, 0, 'Selected for B2B - consultant Role', 53, '2022-05-27 11:15:19', 1),
(9112, 8847, 59, 5, 0, 'not interested in telesales will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(9113, 8845, 59, 5, 0, 'Looking for System Admin and high Exp, no positions in system admin', 60, '0000-00-00 00:00:00', 1),
(9114, 8852, 59, 5, 0, 'No Communication not suitable for our other roles too', 60, '0000-00-00 00:00:00', 1),
(9115, 8851, 30, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9116, 8842, 88, 7, 0, 'Selected for RE', 89, '2022-05-27 05:42:28', 1),
(9117, 8853, 59, 3, 0, 'Selected for Recruiter with 12.5K,after 5 months can be  increased if her performance  is good', 60, '0000-00-00 00:00:00', 1),
(9118, 8835, 88, 1, 0, NULL, 57, '2022-05-27 08:14:35', 1),
(9119, 8841, 59, 3, 0, 'Selected for REcrutier Intern cum employment', 60, '0000-00-00 00:00:00', 1),
(9120, 8854, 59, 5, 0, 'High Exp on Salary,not comfort in TxxampC', 60, '0000-00-00 00:00:00', 1),
(9121, 8849, 59, 3, 0, 'selected for Renewal with PT only', 60, '0000-00-00 00:00:00', 1),
(9122, 8856, 59, 3, 0, 'Selected for Recruiter Intern cum employee', 60, '0000-00-00 00:00:00', 1),
(9123, 8842, 59, 3, 0, 'Selected for Babu Team with PF/ESI/PT', 88, '2022-05-28 04:27:57', 1),
(9124, 8848, 59, 3, 0, 'Selected for ESales RM in the consultant Role', 60, '0000-00-00 00:00:00', 1),
(9125, 8848, 60, 1, 0, NULL, 93, '2022-05-30 10:07:23', 1),
(9126, 8868, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(9127, 8868, 59, 2, 0, 'Candidate will give a call back', 56, '2022-05-30 12:39:45', 1),
(9128, 8865, 24, 2, 0, 'Candidate having last semester exam.. so she want joining after exam only.. so cb 20th', 60, '0000-00-00 00:00:00', 1),
(9129, 8861, 59, 3, 0, 'Selected for  Operation team  with PT', 60, '0000-00-00 00:00:00', 1),
(9130, 8866, 59, 5, 0, 'Looking for networking Profile only', 60, '0000-00-00 00:00:00', 1),
(9131, 8867, 59, 5, 0, 'comfort to work in nonvoice only ', 60, '0000-00-00 00:00:00', 1),
(9132, 8863, 31, 4, 4, 'candidate okay forwarded to next round ', 60, '0000-00-00 00:00:00', 1),
(9133, 8863, 29, 7, 3, 'gk', 31, '2022-05-31 10:10:42', 1),
(9134, 8871, 59, 3, 0, 'Selected for ESales - 2nd Round by Gajalakshmi,3rd round by GK Sir Selected  - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(9135, 8872, 59, 2, 0, 'Communication is Good ,fresher for Recruitment need time to give confirmation', 60, '0000-00-00 00:00:00', 1),
(9136, 8874, 59, 5, 0, 'Communication ok not a relevant Exp ,salary Exp is high', 60, '0000-00-00 00:00:00', 1),
(9137, 8883, 59, 2, 0, 'Communication Is Good ,Fresher For Recruitment Need Time To Give Confirmation', 60, '0000-00-00 00:00:00', 1),
(9138, 8876, 59, 5, 0, 'Communication not clear no pronunciation,will not handle our sales', 60, '0000-00-00 00:00:00', 1),
(9139, 8877, 59, 5, 0, 'Need to open a lot,much comfort in non voice process only', 60, '0000-00-00 00:00:00', 1),
(9140, 8880, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(9141, 8881, 93, 7, 0, 'Shortlisted ', 60, '0000-00-00 00:00:00', 1),
(9142, 8882, 74, 7, 0, 'she is experience as a team lead for 5 years 2014 to 19....college completed 2013....and joined in a automobile telesales senior crm .........timing issue releived ................married 10years completed one child............................my wish she is dedicated and job need husband plumber only.....exposure is good and experience in insurance filed expected 13 to 14 good only have no laptop kindly cross check once and confirm ready to go for a collection also...', 60, '0000-00-00 00:00:00', 1),
(9143, 8880, 59, 3, 0, 'Selected for Manivel Team with PF/PT', 56, '2022-05-31 03:06:02', 1),
(9144, 8882, 59, 5, 0, 'Dropped - We have  offered her 156000 but she didnt turn with her confirmation', 74, '2022-05-31 04:49:35', 1),
(9145, 8881, 59, 2, 0, 'Communication Is Good 1 yr exp too long distance Need Time To Give Confirmation', 93, '2022-05-31 05:21:14', 1),
(9146, 8862, 59, 5, 0, 'Fresher Communication ok,not comfort in Terms and conditions', 60, '0000-00-00 00:00:00', 1),
(9147, 8863, 60, 1, 0, NULL, 29, '2022-05-31 08:42:17', 1),
(9148, 8923, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9149, 8923, 57, 4, 0, 'Candidate is ok , pls confirm ', 59, '2022-06-07 09:44:06', 1),
(9150, 8923, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2022-06-07 09:50:35', 1),
(9151, 8893, 74, 7, 0, 'he is fit for team well profiled and good communicaton skills...2 years experience in digital india transcation and releived have laptop and bike family background is good and near by only home salary ok with 12k', 60, '0000-00-00 00:00:00', 1),
(9152, 8898, 60, 1, 0, NULL, 19, '2022-06-07 11:01:09', 1),
(9153, 8912, 59, 4, 0, 'have 8 months Exp in Insurance Sales,but not seems much confident,5050 Profile,can give a try kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(9154, 8944, 59, 4, 0, '5050 profile have exp in telecalling but need to open a lot.Check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9155, 8947, 59, 5, 0, 'Not yet completed her graduation,23 days to complete her exams ,frehser,sustainability doubts on this profile,after exams if she comes back lets try', 60, '0000-00-00 00:00:00', 1),
(9156, 8946, 24, 7, 0, 'selected.. sustainability doubt lets check training period.. sal exp 15k', 60, '0000-00-00 00:00:00', 1),
(9157, 8945, 24, 5, 0, 'Voice low..', 60, '0000-00-00 00:00:00', 1),
(9158, 8940, 24, 7, 0, 'Tomorrow joining .. salary exp 13k to 14k', 60, '0000-00-00 00:00:00', 1),
(9159, 8943, 59, 5, 0, 'Not comfortable with the package', 60, '0000-00-00 00:00:00', 1),
(9160, 8931, 59, 5, 0, 'Salary Exp is veru high,will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(9161, 8930, 59, 5, 0, 'No communication,veru high Exp,not much comfort in TxxampC,will not sustain', 60, '0000-00-00 00:00:00', 1),
(9162, 8919, 59, 5, 0, 'Fresher for Recruitment,have a month internship Exp Salary Exp is high,also not comfort in TxxampC.will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(9163, 8924, 59, 5, 0, 'Very Slow,will not sustain and suits for our roles', 60, '0000-00-00 00:00:00', 1),
(9164, 8928, 59, 5, 0, 'Too high Exp,long distance,will not run in long not suitable', 60, '0000-00-00 00:00:00', 1),
(9165, 8925, 59, 4, 0, 'have Exp in Sales ,Can give a try for our Insurance Sales,Kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(9166, 8912, 57, 1, 0, NULL, 59, '2022-06-07 04:11:43', 1),
(9167, 8944, 44, 5, 0, 'she is not fit for Rm role', 59, '2022-06-07 04:13:03', 1),
(9168, 8925, 71, 5, 0, 'reject', 59, '2022-06-07 04:27:14', 1),
(9169, 8940, 59, 3, 0, 'Selected for RE - PF/ESI/PT - Erode Location\n', 24, '2022-06-07 05:42:24', 1),
(9170, 8946, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 24, '2022-06-07 05:43:47', 1),
(9171, 8865, 24, 2, 0, 'Exam so hold', 24, '2022-06-07 05:45:29', 1),
(9172, 8910, 74, 7, 0, 'he is well active and good communication skills and fit to the team already workied in a suzuki showoom as relationship manager and  good only completed automobile filed courses and doing msc as partime after 7ck via online courses have sustainability issue but good communication skills kindly check and confirm once 12.5 k salary expected', 60, '0000-00-00 00:00:00', 1),
(9173, 8893, 59, 3, 0, 'Selected for Thanjavur in Consultant Role', 74, '2022-06-08 03:37:42', 1),
(9174, 8910, 59, 3, 0, 'Selected for Thanjavur in Consultant Role', 74, '2022-06-08 03:41:20', 1),
(9175, 8934, 59, 2, 0, 'Communication ok,fresher for Recruitment,can give a try  but her min is very high and not ready to come  down, Given her time if she comes back lets see', 60, '0000-00-00 00:00:00', 1),
(9176, 8958, 59, 5, 0, 'Communication ok,60 days notice,written communication no,High CTC exp sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(9177, 8957, 59, 4, 0, 'Communication ok,no relevant Exp,but in B2B Sales 5050 profile can give a try and analyse in 7 days,ready to take calls,but exp seems somewhat high', 60, '0000-00-00 00:00:00', 1),
(9178, 8951, 59, 5, 0, 'No Communication,not able to understand what we communicate will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9179, 8952, 59, 5, 0, 'communication Average, not ready to handle the pressure,will not sustain', 60, '0000-00-00 00:00:00', 1),
(9180, 8953, 59, 4, 0, 'Communication ok have showroom car sales Exp,5050 profiles sustainability doubts on this profile,internal reference do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9181, 8807, 13, 7, 0, 'ok 13k salary comming monday joining', 60, '0000-00-00 00:00:00', 1),
(9182, 8807, 59, 3, 0, 'Selected for Muthu Team - Consultant Role', 13, '2022-06-08 04:44:42', 1),
(9183, 8950, 93, 7, 0, 'Shortlisted ', 60, '0000-00-00 00:00:00', 1),
(9184, 8950, 60, 1, 0, NULL, 93, '2022-06-08 05:06:47', 1),
(9185, 8948, 59, 5, 0, 'Communication Average, Career Gap, No Relevant Exp, Age around 25yrs, while communicating with her seems not much confident. The candidate says that she will be able to sign the SA but does not seems to be. Also, her expectation is high(18-20K) being a fresher', 60, '0000-00-00 00:00:00', 1),
(9186, 8949, 59, 5, 0, 'Fresher for our Sales and the candidate is looking for team lead profiles only, also he is not comfortable in taking calls. Not suitable', 60, '0000-00-00 00:00:00', 1),
(9187, 8957, 44, 1, 0, NULL, 59, '2022-06-08 07:30:04', 1),
(9188, 8953, 16, 5, 0, 'Sustain doubt', 59, '2022-06-08 07:32:22', 1),
(9189, 8960, 24, 7, 0, 'candidate okay.. .. exp 12k to 13k ... ', 60, '0000-00-00 00:00:00', 1),
(9190, 8967, 80, 5, 0, 'She is not speak out ', 60, '0000-00-00 00:00:00', 1),
(9191, 8959, 59, 5, 0, 'Communication ok,have exp in US IT recruitement 2 yrs back and she was into different domain.now again she is looking for Recruitment. not much comfort with the txxampC, also her expectation  is very high compare to her experience.IF she comes back Let us try', 60, '0000-00-00 00:00:00', 1),
(9192, 8941, 59, 5, 0, 'No Communication,no basic skills in the MIS,also not comfortable for Sales .Too Long distance will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(9193, 8938, 59, 5, 0, 'Communication ok,Fresher for Recruitment have internship Exp She is from Psychology background.Almost ok with the TxxampC but her expectation as fresher is minimum 20K.Not ready to come down on the salary', 60, '0000-00-00 00:00:00', 1),
(9194, 8970, 59, 5, 0, 'Have Exp in Sales Collections, but not comfortable to go in sales again, appeared for  MIS role, but no basic ideas.Too long Distance he is from tiruvallur and not ready to relocate,not suitable', 60, '0000-00-00 00:00:00', 1),
(9195, 8964, 59, 5, 0, 'Communication Average, not clear in his speech, not ok with TxxampC, Very slow  and will not handle the pressure.Not suitable', 60, '0000-00-00 00:00:00', 1),
(9196, 8969, 59, 3, 0, 'Selected for Pandiarajan Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9197, 8963, 59, 5, 0, 'Communication ok,have exp in telecalling sales,not suits for our MIS,Processed her for second round ESales,but got rejected in the final round with Gaurav sir.Rejected', 60, '0000-00-00 00:00:00', 1),
(9198, 8936, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(9199, 8962, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(9200, 8969, 80, 7, 4, 'Needed job ', 59, '2022-06-09 05:41:47', 1),
(9201, 8960, 59, 3, 0, 'Selected for Suthagar - PF/ESI/PT', 24, '2022-06-09 06:20:07', 1),
(9202, 8969, 18, 7, 3, 'Selected for Mani Team. Immed Joiner. Package as directly discussed', 80, '2022-06-09 06:58:25', 1),
(9203, 8969, 60, 1, 0, NULL, 18, '2022-06-10 01:21:37', 1),
(9204, 8984, 59, 4, 0, 'Communication ok 5050 profile fresher for  Sales do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9205, 8986, 59, 4, 0, 'Communication Average,very low profile 5050 check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9206, 8989, 59, 4, 0, 'Have Exp in Credit card sales,communication ok can check for RM,do check  and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9207, 8983, 59, 4, 0, '5050 Profile 6 months in Inbound calls,2nd round interviewed by karthika in your absence do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9208, 8987, 59, 5, 0, 'Ned to open a lot,no sustainability 2yrs 3 companies,Fresher will not hanlde our pressure', 60, '0000-00-00 00:00:00', 1),
(9209, 8988, 59, 5, 0, 'Communication ok,12th highest graduation,Have Exp in Collection Calls,5050 Profile left without attending the 2nd Round minimum 15-16K TH', 60, '0000-00-00 00:00:00', 1),
(9210, 8990, 59, 3, 0, 'Selected for  Pandian Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9211, 8973, 14, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9212, 8974, 59, 5, 0, 'Huge career gap, no basic knowledge in recruitment ,need to train from the scratch, too long distance 36kms up and down married 2 kids not comfort with the timings too', 60, '0000-00-00 00:00:00', 1),
(9213, 8991, 59, 5, 0, 'Have 4 months Exp in Recruitment,Distance up and down 36 kms,Not much comfort with TxxampC,Salary Exp min 15K TH ,if she come back let us try', 60, '0000-00-00 00:00:00', 1),
(9214, 8990, 80, 4, 0, 'He is Fresher in our industry. Basically he have B2B marketing experience. ', 59, '2022-06-10 06:31:10', 1),
(9215, 8984, 89, 1, 0, NULL, 59, '2022-06-10 06:38:34', 1),
(9216, 8986, 89, 1, 0, NULL, 59, '2022-06-10 06:39:27', 1),
(9217, 8983, 53, 1, 0, NULL, 59, '2022-06-10 06:40:43', 1),
(9218, 8989, 86, 4, 0, 'Selected for next Round', 59, '2022-06-10 06:44:34', 1),
(9219, 8965, 59, 5, 0, 'Communication Average, not comfortable  with the TxxampC,Will not run in a long,not suitable', 60, '0000-00-00 00:00:00', 1),
(9220, 8966, 59, 5, 0, 'Communication ok, Diploma graduate in 2014, had his own business then worked on different bank projects. Currently, he is in Bangalore working in Wintronics and looking for an opportunity, Min 18K Exp and not much with TxxampC, will not sustain in our roles.', 60, '0000-00-00 00:00:00', 1),
(9221, 8968, 59, 5, 0, 'Not Suitable For Our Roles', 60, '0000-00-00 00:00:00', 1),
(9222, 8990, 18, 7, 4, 'Selected for Pandian Team. Ready to Join on Monday. Package as discussed earlier', 80, '2022-06-11 12:46:33', 1),
(9223, 8989, 18, 7, 4, 'Asked one week time to Join for arranging laptop. Expected salary is 16+ take home+PF. Selected from Mani Team', 86, '2022-06-11 12:48:28', 1),
(9224, 8992, 59, 3, 0, 'Selected for RM Pandia Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9225, 8995, 59, 5, 0, 'Communication Average,Fresher,no basic ideas about recrruitment,will not sustain in our Role for a long not suitable', 60, '0000-00-00 00:00:00', 1),
(9226, 8998, 59, 5, 0, 'very high Exp in Sales and looking only for the lead level positions,', 60, '0000-00-00 00:00:00', 1),
(9227, 8994, 59, 4, 0, 'Sounds low,have exp in calling,internal reference from Gajalakshmi,check and let me know your inputsxquot\n', 60, '0000-00-00 00:00:00', 1),
(9228, 8997, 74, 5, 0, 'not fit', 60, '0000-00-00 00:00:00', 1),
(9229, 9000, 59, 2, 0, 'Have Exp as generalist applied for recruiter,Min Salary Exp is 18K,30 days notice', 60, '0000-00-00 00:00:00', 1),
(9230, 8996, 14, 7, 0, 'Please assign for second round little doubt for sustainability ', 60, '0000-00-00 00:00:00', 1),
(9231, 8992, 80, 7, 0, 'In our industry he is a Fresher. Good Sales guy', 59, '2022-06-11 06:11:27', 1),
(9232, 8994, 53, 1, 0, NULL, 59, '2022-06-11 06:13:00', 1),
(9233, 8990, 60, 1, 0, NULL, 18, '2022-06-12 09:39:41', 1),
(9234, 8971, 59, 2, 0, 'Looking for WFH,Having a long career gap,6 months Exp in IT recruitment,Married,need some time to finalise the Profile', 60, '0000-00-00 00:00:00', 1),
(9235, 9003, 59, 2, 0, 'Communication is Good, Can give a try for HR Recruiter Profile, candidatexquots exp is high, need to finalise ', 60, '0000-00-00 00:00:00', 1),
(9236, 9002, 59, 5, 0, 'Will not Sustain and handle our pressure, too long distance and having health issue too', 60, '0000-00-00 00:00:00', 1),
(9237, 9009, 59, 5, 0, 'Looking for Non Voice PRocess,no Communication,not suitabe', 60, '0000-00-00 00:00:00', 1),
(9238, 9005, 59, 4, 0, 'Communication Ok,No Relevant Sales,but in Retail Sales,can give a try for RM,Bike he has,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9239, 9005, 51, 5, 0, 'not selcted', 59, '2022-06-13 07:06:30', 1),
(9240, 9016, 59, 3, 0, 'Selected for B2B in  Consultant Role', 60, '0000-00-00 00:00:00', 1),
(9241, 9023, 39, 7, 4, 'Candidate is Ok for our profile', 60, '0000-00-00 00:00:00', 1),
(9242, 9023, 30, 7, 4, 'Shortlisted profile.. need to confirm salary and joining date', 39, '2022-06-14 02:57:32', 1),
(9243, 9023, 60, 1, 0, NULL, 30, '2022-06-14 02:59:42', 1),
(9244, 9013, 59, 5, 0, 'Communication is ok, have exp in recruitment for 9 months. Currently working and looking for salary growth, Min exp is 23K and not comfortable to work less than.', 60, '0000-00-00 00:00:00', 1),
(9245, 9026, 59, 5, 0, 'Too lon distance from Tiruvallur, not ready to relocate, Fresher for Recruitment, Not ok with TxxampC, Not suitable', 60, '0000-00-00 00:00:00', 1),
(9246, 9022, 59, 3, 0, 'Selected for B2B in PT only, Given high pay for B2B,should utilise the candidate for Sales Appointment  too', 60, '0000-00-00 00:00:00', 1),
(9247, 9015, 59, 4, 0, 'Communication Average,seems slow 5050 profile,need to open a lot kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9248, 9024, 59, 5, 0, 'Communication ok, no sustainability 1yr 2 companies, not in a stable position worked as HR for 6 months, Sales 7 months now appears for the backend positions, not comfortable much with TxxampC, also his expectation is high min 18K focusing on the relocation.Will not sustain and run for a long.', 60, '0000-00-00 00:00:00', 1),
(9249, 9014, 59, 5, 0, 'Communication ok, candidate looking for IT recruitment, also not comfortable with TxxampC being a fresher, he is also clear with the thoughts that will look for other opportunities in a short span.will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9250, 9025, 59, 2, 0, 'Fresher have interest to learn,2nd round interviewed by Kaviya, Candidate no basics in Skills if he comes back after a week lets try', 60, '0000-00-00 00:00:00', 1),
(9251, 9016, 53, 7, 0, 'selected for b2b. pls cnfrm the salary and DOJ', 59, '2022-06-14 05:48:22', 1),
(9252, 9029, 86, 4, 0, 'selected for next round', 60, '0000-00-00 00:00:00', 1),
(9253, 9022, 53, 7, 0, 'selected for b2b. pls cnfrm the doj and salary', 59, '2022-06-14 06:13:54', 1),
(9254, 9015, 53, 1, 0, NULL, 59, '2022-06-14 06:17:38', 1),
(9255, 8979, 14, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9256, 9006, 14, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9257, 9022, 59, 3, 0, 'Selected for B2B in PT only, Given high pay for B2B,should utilise the candidate for Sales Appointment  too', 53, '2022-06-15 11:10:33', 1),
(9258, 8746, 59, 3, 0, 'Selected for Arumbakkam team consultant Role', 53, '2022-06-15 11:13:35', 1),
(9259, 9039, 74, 7, 0, 'he is ok with the team knowing two three languages and well profiled 3 years experience in karvy technology icici process and rbi company life insurance.....................and 1 years in abroad mothers health issues and married have no baby so he planned to stay in thanjavur 45mins travel for home to office but salary expected high 16k but ok with 14k kindly confirm once and sustainability also...no bike and laptop ', 60, '0000-00-00 00:00:00', 1),
(9260, 9008, 74, 7, 0, 'age around 28 but poor family background have lotsof exerience in sales and collection sales skills and pitching is good have no laptop father passed and need to update the job for carrier security so highly job need and 1 year once 3 or 4 company shifted in thanjavur so sustainability issue is there kindly confirm once expected 12k take home have bike and know about insurance', 60, '0000-00-00 00:00:00', 1),
(9261, 9028, 24, 5, 0, 'he is only interested in non voice process only.. and not suitable for our profile..', 60, '0000-00-00 00:00:00', 1),
(9262, 9043, 39, 7, 3, 'CANDIDATE IS OK. JOINING NEED TO CONFIRM', 60, '0000-00-00 00:00:00', 1),
(9263, 9043, 60, 1, 0, NULL, 39, '2022-06-15 03:37:13', 1),
(9264, 9041, 39, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9265, 9042, 39, 5, 1, '12th only completed he is planing eve college in future.he  will not sustain', 60, '0000-00-00 00:00:00', 1),
(9266, 9039, 59, 3, 0, 'Selected fr Thanjavur Consultant Role', 74, '2022-06-15 03:46:40', 1),
(9267, 9008, 59, 5, 0, 'Not reposding the calls properly seems not interested in the position\n', 74, '2022-06-15 03:49:27', 1),
(9268, 8992, 18, 7, 3, 'Selected for Panid Team. Ready to join on mondy. Can give 12 to 15% hike from current package. Carefully check his PF Calculations and give package.', 80, '2022-06-15 04:23:20', 1),
(9269, 9037, 59, 5, 0, 'Not Suitable For Our Roles, Will not sustain ', 60, '0000-00-00 00:00:00', 1),
(9270, 9040, 59, 5, 0, 'not ready to take calls ,not comfortable in targets,not suitable', 60, '0000-00-00 00:00:00', 1),
(9271, 8992, 60, 1, 0, NULL, 18, '2022-06-16 11:56:58', 1),
(9272, 9046, 56, 4, 0, 'selected ', 60, '0000-00-00 00:00:00', 1),
(9273, 9052, 74, 7, 0, 'she is ok with the team voice is clear and fit for telesales ......already worked in bluechip 3 month with 13k salary package and releived now have salary slip also no laptop but need to arange and monday joining is ok 11 k salary expected ......45mins travel from home.......father farmer and poor background only kindly check and confirm', 60, '0000-00-00 00:00:00', 1),
(9274, 9051, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9275, 9046, 59, 3, 0, 'Selected for Manivel Team with PF/PT', 56, '2022-06-16 03:24:06', 1),
(9276, 9016, 59, 3, 0, 'Selected for B2B in  Consultant Role', 53, '2022-06-16 04:32:42', 1),
(9277, 9052, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-06-16 04:49:25', 1),
(9278, 9055, 59, 4, 0, 'Have Designing Exp kindly check and give your inputs', 60, '0000-00-00 00:00:00', 1),
(9279, 9057, 59, 5, 0, 'Frequent job changes no stable with the positions,will not sustain and handle the sales pressure', 60, '0000-00-00 00:00:00', 1),
(9280, 9049, 59, 2, 0, 'Have knowledge in Mern,but in dilemma for the joining,interviewed by Arun Kaviya Tamilmani Gokul', 60, '0000-00-00 00:00:00', 1),
(9281, 9050, 59, 4, 0, 'Communication ok have exp in Telecalling Can give a try kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9282, 9054, 59, 5, 0, 'Prefers to work in non voice but no communication as we expected', 60, '0000-00-00 00:00:00', 1),
(9283, 9050, 11, 1, 0, NULL, 59, '2022-06-16 06:54:08', 1),
(9284, 9055, 69, 5, 0, 'Candidate did not turn up after giving task\n', 59, '2022-06-16 06:57:01', 1),
(9285, 9062, 74, 7, 0, 'he is well profiled and ok with the process suit for telesales and team,,,,,,,,,,already working in global health care as AR caller US shift and releived .....ags health care due to health issue he is releived ............and now looking job in thanjavur.......poor family background only.......have laptop and bike ........expected 15k kindly confirm once', 60, '0000-00-00 00:00:00', 1),
(9286, 9062, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-06-17 03:44:24', 1),
(9287, 9065, 24, 4, 0, 'candidate okay .. expt salary 15k', 60, '0000-00-00 00:00:00', 1),
(9288, 9064, 24, 5, 0, 'Candidate 2hrs travel time.. so she will be discuss with family and update so we rejected..', 60, '0000-00-00 00:00:00', 1),
(9289, 9063, 24, 5, 0, 'Candidate Rejected.. sustainability doubt so we reject also Interviewed Ramesh sir ', 60, '0000-00-00 00:00:00', 1),
(9290, 9061, 59, 5, 0, 'Communication no preferred speaking only in tamil,have exp using excel but not much strong,2nd round interviewed by herash and rejected\n', 60, '0000-00-00 00:00:00', 1),
(9291, 9065, 88, 7, 0, 'selected for RE role', 24, '2022-06-17 08:17:36', 1),
(9292, 9065, 59, 3, 0, 'Selected for Erode - Suthagar Team Consultant Role\n', 88, '2022-06-18 12:36:00', 1),
(9293, 9068, 24, 5, 0, 'Candidate Observations skills is low.... Ramesh sir also Interviewed ', 60, '0000-00-00 00:00:00', 1),
(9294, 9074, 24, 4, 0, 'Candidate Selected..  expt Salary 10k to 12k ', 60, '0000-00-00 00:00:00', 1),
(9295, 9073, 24, 4, 0, 'Selected 10k to 12k.. Monday joining', 60, '0000-00-00 00:00:00', 1),
(9296, 9074, 88, 7, 0, 'Selected for RE', 24, '2022-06-18 03:45:33', 1),
(9297, 9073, 88, 7, 0, 'Selected for RE', 24, '2022-06-18 03:47:05', 1),
(9298, 9075, 59, 2, 0, 'Fresher Applied for REactNative,we checked for Flutter Long run doubts she is comfortable for 1.5 yrs post that may get marry and move on,if she come back with TxxampC let us try', 60, '0000-00-00 00:00:00', 1),
(9299, 9072, 59, 5, 0, 'Not comfort with timings have exp in telecalling but particularly looking for Timings also not ready to handle the pressure Target', 60, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(9300, 9069, 59, 4, 0, 'Fresher for our Sales,sustainability and Pressure handling doubts,internal reference from Thiyagarajan, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9301, 9070, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9302, 9070, 57, 4, 0, 'candidate is ok , kindly confirm the joining date and salary. \nfresher', 59, '2022-06-18 06:20:16', 1),
(9303, 9069, 88, 5, 0, 'Not suitable for role', 59, '2022-06-18 06:24:18', 1),
(9304, 9071, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9305, 9073, 59, 3, 0, 'Selected fr consultant Role - Suthagar Team', 88, '2022-06-18 06:59:20', 1),
(9306, 9074, 59, 3, 0, 'Selected Fr Consultant Role - Suthagar Team', 88, '2022-06-18 06:59:51', 1),
(9307, 9047, 59, 3, 0, 'Selected for Arumbakkam Elite Team in Staff Role PF/ESI/PT\n', 14, '2022-06-20 04:17:47', 1),
(9308, 9081, 59, 5, 0, 'Dropped- too long distance, also she is prefers to work close to poonamalle.Not ready to join', 14, '2022-06-20 04:18:52', 1),
(9309, 8996, 59, 3, 0, 'Selected for Staff Role Patroniss', 14, '2022-06-20 04:20:23', 1),
(9310, 9029, 18, 5, 0, 'Know this Candidate Not suitable', 86, '2022-06-20 05:50:36', 1),
(9311, 9076, 59, 4, 0, 'Communicaiton Ok have exp in life insurance Sales can give a try for our RM roles check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9312, 9085, 59, 5, 0, 'Have Knowledge in MERN,Spent around 47K and doing course not comfortable in TxxampC,Need some time to confirm his position,if he comes back let us see\n', 60, '0000-00-00 00:00:00', 1),
(9313, 9083, 59, 5, 0, 'Appeared for Telecaller process,also not clear with the profile to go,will not sustain and not suitable left without completing the round', 60, '0000-00-00 00:00:00', 1),
(9314, 9084, 59, 2, 0, 'Communicaiton ooooooook,no clear with the passion towards the job,if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(9315, 9079, 59, 5, 0, 'no communication need to open a lot will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(9316, 9078, 59, 5, 0, 'Communicatino Average from cAMS,repeated work much into nonvoice only,not suitable', 60, '0000-00-00 00:00:00', 1),
(9317, 9080, 59, 5, 0, 'Communicaiton Ok,Fresher for MIS,Need to train a lot not comfort in TxxampC checked her written skill also not upto the mark as we expected', 60, '0000-00-00 00:00:00', 1),
(9318, 9076, 86, 4, 0, 'Selected for Next Round', 59, '2022-06-20 07:55:46', 1),
(9319, 9059, 93, 7, 0, 'Shortlisted ', 60, '0000-00-00 00:00:00', 1),
(9320, 9077, 24, 4, 0, 'Candidate okay..  Expct Salary 13k to 15k ', 60, '0000-00-00 00:00:00', 1),
(9321, 9070, 88, 7, 0, 'Selected for RE', 57, '2022-06-21 11:31:19', 1),
(9322, 9077, 88, 7, 0, 'Selected for RE', 24, '2022-06-21 11:53:01', 1),
(9323, 9077, 59, 3, 0, 'Selected for RE Suthagar Erode - Consultant Role', 88, '2022-06-21 12:26:02', 1),
(9324, 9059, 59, 5, 0, 'Not interested in the position\n', 93, '2022-06-21 12:30:24', 1),
(9325, 9088, 59, 2, 0, 'Candidate have basic knowledge in HTML,CSS,JS,Can give a try ok with TxxampC,but not sure.2nd Round interviewed by Dinesh', 60, '0000-00-00 00:00:00', 1),
(9326, 9092, 59, 3, 0, 'Selected for Babu Team in PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9327, 9070, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 88, '2022-06-21 05:10:11', 1),
(9328, 9092, 89, 7, 0, 'Selected ', 59, '2022-06-21 07:57:46', 1),
(9329, 9098, 39, 7, 4, 'Candidate is shortlisted.  Pls confirm joining date and salary process', 60, '0000-00-00 00:00:00', 1),
(9330, 9098, 60, 1, 0, NULL, 39, '2022-06-22 11:08:41', 1),
(9331, 9076, 18, 7, 0, 'Selected For Mani team. need one Month time for Notice. Current CTC is 4L. Negotiate and do the needful', 86, '2022-06-22 02:42:57', 1),
(9332, 9106, 59, 5, 0, 'Fresher for Digital,have 6 months in sms campaign current 27.5K,expected too high and rejected in the 2nd round by Reyaz', 60, '0000-00-00 00:00:00', 1),
(9333, 9103, 59, 2, 0, '2nd round selected by Gokul Can give her 12K TH candidate yet to give her confirmation', 60, '0000-00-00 00:00:00', 1),
(9334, 9104, 59, 5, 0, 'Have Exp in Recruitment,Salary Exp is high,Will ot sustain and not comffort in TxxampC', 60, '0000-00-00 00:00:00', 1),
(9335, 9102, 59, 5, 0, 'Have knowledge in IT skills,Rejected in the 2nd rount by LAtha not suitable', 60, '0000-00-00 00:00:00', 1),
(9336, 9099, 59, 5, 0, 'Syed abthali Reference,Not much interested to take Calls looking for non Voice no communication not suitable and will not sustain', 60, '0000-00-00 00:00:00', 1),
(9337, 9095, 59, 4, 0, 'Seems not much suits for the Role,5050 profile can give a try and analyse in 7 days', 60, '0000-00-00 00:00:00', 1),
(9338, 9095, 89, 1, 0, NULL, 59, '2022-06-22 07:30:02', 1),
(9339, 9116, 39, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9340, 9117, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9341, 9094, 59, 3, 0, 'Selected for GK Sir Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9342, 9127, 59, 3, 0, 'Selected for Babu Team,5050 Profile Sustainability Doubts a lot with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9343, 9126, 59, 3, 0, 'Selected for Kannan Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9344, 9124, 59, 5, 0, 'Communication no,no ideas in the recruitment,not open with TxxampC,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(9345, 9125, 59, 5, 0, 'Need to open a lot will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(9346, 9118, 59, 4, 0, '5050 profile ,fresher for Sales sounding good but not sure with sustainability kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9347, 9119, 59, 5, 0, '8 months 2 companies no communication,confidence level poor,looking much on the distance,will not sustain', 60, '0000-00-00 00:00:00', 1),
(9348, 9129, 59, 5, 0, 'Have Exp in Star Health Insurance but not ready to go with same Telecalling,scheduled for Mutual Fund Coordinator,but no communication and not suitable .Internal reference - Raghu', 60, '0000-00-00 00:00:00', 1),
(9349, 9117, 51, 4, 0, 'moved to nxt set of interview with Sir', 59, '2022-06-24 04:01:09', 1),
(9350, 9094, 31, 4, 4, 'candidate is okay,  45 days notice period ', 59, '2022-06-24 04:09:58', 1),
(9351, 9127, 89, 7, 0, 'Selected ', 59, '2022-06-24 04:11:20', 1),
(9352, 9126, 88, 7, 0, 'Selected for RE', 59, '2022-06-24 04:12:38', 1),
(9353, 9118, 51, 5, 0, 'not ok', 59, '2022-06-24 04:29:44', 1),
(9354, 9112, 59, 2, 0, '5050 profile have sales exp but not an insurance one,Pressure and Target handling doubts,can check for RM Profile do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9355, 9113, 59, 5, 0, 'Not ready to take calls,communicaiton Average,not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(9356, 9114, 59, 5, 0, 'Have Exp in Backend,but not much strong in excel as we expected,writting skills is not upto the mark,long run  doubts,not ready to take calls', 60, '0000-00-00 00:00:00', 1),
(9357, 9126, 59, 3, 0, 'Selected for Kannan Team with PF/ESI/PT', 88, '2022-06-24 05:41:28', 1),
(9358, 9092, 88, 7, 0, 'Selected for RE', 89, '2022-06-24 05:58:42', 1),
(9359, 9127, 88, 7, 0, 'Selected for RE', 89, '2022-06-24 05:59:08', 1),
(9360, 9127, 59, 3, 0, 'Selected for Babu Team,5050 Profile Sustainability Doubts a lot with PF/ESI/PT', 88, '2022-06-24 07:31:34', 1),
(9361, 9092, 59, 3, 0, 'Selected for Babu Team in PF/ESI/PT', 88, '2022-06-24 07:31:58', 1),
(9362, 9134, 59, 5, 0, 'Too long distance currently working in Kodambakkam and looking for change due to the distance only will not sustain', 60, '0000-00-00 00:00:00', 1),
(9363, 9135, 59, 5, 0, 'Too Long Distance Currently Working In Kodambakkam And Looking For Change Due To The Distance Only Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(9364, 8937, 59, 2, 0, 'Dsiscussed 15K for 3 months if achieved 12 profiles per month then 2K incentive PM and the salary will be revised to 2.4LPA after 3 months...Candidate yet to give her confirmation', 60, '0000-00-00 00:00:00', 1),
(9365, 9139, 59, 4, 0, 'schedule her for  F2F in Thanjavur not suits for ESales also high CTC expectation', 60, '0000-00-00 00:00:00', 1),
(9366, 9122, 59, 4, 0, 'Communication ok have exp in sales, but need to check with his sustainability, Salary exp is high but can give a try for RM profile.I have scheduled him for the 2nd round virtual, will let you know once done with the interview.', 60, '0000-00-00 00:00:00', 1),
(9367, 9141, 59, 5, 0, 'Fresher,Yet to complete her graduation,Said not interested in technical but attended almost 10-15 interview in the core technical only,Not much   ok with fluency communication,Sustainability doubts a lot', 60, '0000-00-00 00:00:00', 1),
(9368, 9142, 59, 5, 0, 'Have Exp in Logistics domain,need to check her writting Skills,5050 profile,ask her to come for 2nd round post lunch but didnt appear', 60, '0000-00-00 00:00:00', 1),
(9369, 9139, 60, 1, 0, NULL, 59, '2022-06-25 06:18:55', 1),
(9370, 9122, 44, 1, 0, NULL, 59, '2022-06-25 06:23:40', 1),
(9371, 9094, 29, 7, 3, 'selected for RM, refer resume for details', 31, '2022-06-26 12:04:53', 1),
(9372, 9076, 60, 1, 0, NULL, 18, '2022-06-26 04:33:35', 1),
(9373, 9149, 24, 4, 0, 'Candidate Selected Freshers Expect 15k But We Provide Our Company Nomxquots..', 60, '0000-00-00 00:00:00', 1),
(9374, 9148, 24, 4, 0, 'Candidate selected fresher expect 15k but we provide our company nomxquots', 60, '0000-00-00 00:00:00', 1),
(9375, 9128, 59, 5, 0, 'Communication Average,not much comfort in TxxampC Too long Distance around 50kms up and down will not sustain', 60, '0000-00-00 00:00:00', 1),
(9376, 9130, 59, 4, 0, 'Have 6 months Exp in Calling but not a relevant one can give a try for ESales Profile kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9377, 9151, 59, 4, 0, 'Have 6 Months Exp In Calling But Not A Relevant One Can Give A Try For ESales Profile Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9378, 9152, 59, 5, 0, 'Not comfort in Field Sales,Looking only for Collection Calls will not run inour profile for a long', 60, '0000-00-00 00:00:00', 1),
(9379, 9153, 59, 5, 0, 'Communication No,Prefers to work in non voice positions too,not suitable for Reccruiter Have a long career Gap will not sustain and handle our pressure', 60, '0000-00-00 00:00:00', 1),
(9380, 9148, 88, 7, 0, 'Selected for RE', 24, '2022-06-27 03:22:33', 1),
(9381, 9149, 88, 7, 0, 'Selected for RE', 24, '2022-06-27 03:23:46', 1),
(9382, 9148, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 88, '2022-06-27 03:43:16', 1),
(9383, 9149, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT Staff Role', 88, '2022-06-27 03:43:46', 1),
(9384, 9130, 11, 1, 0, NULL, 59, '2022-06-27 07:10:33', 1),
(9385, 9151, 11, 1, 0, NULL, 59, '2022-06-27 07:10:56', 1),
(9386, 9111, 91, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9387, 9168, 59, 3, 0, 'Selected for Thanjavur in  consultant Role', 74, '2022-06-28 04:32:19', 1),
(9388, 9163, 59, 5, 0, 'Dropped Salary Exp is high also having attitude issue.For CRM role Exp take home 15 after PF/ESI/PT', 74, '2022-06-28 04:36:12', 1),
(9389, 9171, 93, 7, 0, 'Shortlisted', 60, '0000-00-00 00:00:00', 1),
(9390, 9171, 60, 1, 0, NULL, 93, '2022-06-28 06:35:45', 1),
(9391, 9165, 59, 5, 0, 'Scheduled with the 2ndd round with kavya IT and got rejected not much strong in the basics of Javascript', 60, '0000-00-00 00:00:00', 1),
(9392, 9159, 59, 5, 0, 'Very 5050 profile,fresher for Sales,sustainability doubts kindly check and let me know your inpputs', 60, '0000-00-00 00:00:00', 1),
(9393, 9158, 59, 5, 0, 'Communication Average,Fresher for Sales no basic ideas in Insurance Domain,left his previous work due to pressure will not sustain and not suitable\n', 60, '0000-00-00 00:00:00', 1),
(9394, 9164, 59, 5, 0, 'Not interested in telesales,not showing importance towards the job,will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9395, 9161, 39, 7, 4, 'candidate is ok for me. kindly cnfrm from your side', 60, '0000-00-00 00:00:00', 1),
(9396, 9162, 59, 4, 0, '5050 Profile no relevant Exp,Sounding Good can give  atry kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9397, 9169, 59, 4, 0, 'Communication ok have exp in showroom Sales new to telecalling sales,5050 profile sustainability in long run doubts ,can give a try for RE check and let me know your interest\n', 60, '0000-00-00 00:00:00', 1),
(9398, 9162, 89, 1, 0, NULL, 59, '2022-06-28 07:04:31', 1),
(9399, 9169, 57, 1, 0, NULL, 59, '2022-06-28 07:05:51', 1),
(9400, 9170, 59, 2, 0, 'Fresher for Telesales,can give a try for Arumbakkam,candidate will come back with her confirmation,based on that willl schedule her for 2nd round in arumbakkam', 60, '0000-00-00 00:00:00', 1),
(9401, 9182, 59, 2, 0, 'Have Knowledge in Mern Skills need to check with  family on the TxxampC,if he comes back let us try\n', 60, '0000-00-00 00:00:00', 1),
(9402, 9180, 59, 5, 0, 'Not opening ,not suitable for our roles,will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(9403, 9181, 59, 5, 0, 'Fresher ,have a plan to go with B.Ed,need to open a lot,Being fresher pressure handling and sustainability doubt on this candidate', 60, '0000-00-00 00:00:00', 1),
(9404, 9175, 59, 3, 0, 'Selected for Thiyagu Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9405, 9174, 74, 7, 0, 'he is ok with the team and fit for telesales.......mechanical oriented core company he is working for two years and releived due to no growth in the industry so move on to telesales and 6 months working in just dial.........but due to mother health he is moved to thanjavur near needamangalam 25km 45 mins travel.............father fish market wholesale business and brother going to abroad next month one sister studying higher study................rental house only very poor background and not intrested in going to abroad need a job right now suits for telesales ......expected 12 to 13 k takehome kindly cross check once have laptop immediate joining', 60, '0000-00-00 00:00:00', 1),
(9406, 9176, 59, 3, 0, 'Selected for GK Sir Team .Gaurav Sir Commited 1.5L Business per month will lead to 20K additional', 60, '0000-00-00 00:00:00', 1),
(9407, 9123, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9408, 9123, 57, 4, 0, 'candidate is ok , kindly confirm the joining date', 59, '2022-06-29 03:58:56', 1),
(9409, 9175, 16, 7, 0, 'Selected', 59, '2022-06-29 04:07:00', 1),
(9410, 9176, 31, 4, 0, 'candidate is okay ', 59, '2022-06-29 04:09:19', 1),
(9411, 9176, 29, 7, 0, 'ok rM, need to check for 7 days and confirm', 31, '2022-06-29 04:16:31', 1),
(9412, 9117, 29, 7, 2, 'RM, check resume for details', 51, '2022-06-29 05:21:22', 1),
(9413, 9161, 60, 1, 0, NULL, 39, '2022-06-29 05:48:40', 1),
(9414, 9174, 59, 3, 0, 'Selected for Thanjavur Sithy Team in Consultant ', 74, '2022-06-29 05:58:54', 1),
(9415, 9123, 88, 7, 0, 'Selected for RE', 57, '2022-06-29 06:10:19', 1),
(9416, 9175, 60, 1, 0, NULL, 16, '2022-06-29 06:13:50', 1),
(9417, 9123, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 88, '2022-06-29 06:23:20', 1),
(9418, 9094, 59, 3, 0, 'Selected for GK Sir Team with PF/PT', 29, '2022-06-30 11:48:28', 1),
(9419, 9117, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 29, '2022-06-30 11:50:17', 1),
(9420, 9176, 59, 3, 0, 'Selected for GK Sir Team .Gaurav Sir Commited 1.5L Business per month will lead to 20K additional', 29, '2022-06-30 11:50:59', 1),
(9421, 9184, 59, 5, 0, 'No basic knowledge in the skills ,will not sustain in our roles for long technical reject by Latha', 60, '0000-00-00 00:00:00', 1),
(9422, 9185, 59, 3, 0, 'Selected for Thiyagu Team  in consultant Role', 60, '0000-00-00 00:00:00', 1),
(9423, 9186, 59, 3, 0, 'Selected for Shanmuga Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9424, 9191, 59, 3, 0, 'Selected for RE Babu Team in consultant Role', 60, '0000-00-00 00:00:00', 1),
(9425, 9144, 59, 3, 0, 'Selected for Karthika ESales Team in Consultant Role 5%', 60, '0000-00-00 00:00:00', 1),
(9426, 9196, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9427, 9189, 59, 3, 0, 'Selected for Thiyagarajan Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9428, 9197, 74, 7, 0, 'she is fit for team very poor back ground and having 3 sibling so highly job need salary expected take home 10k only kindly check and confirm once have laptop 45mins travel from home', 85, '0000-00-00 00:00:00', 1),
(9429, 9198, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9430, 9193, 74, 7, 0, 'she is ok with the team very talk active and job needed looking 10k take home and fit for team 45 min travel from home to office have laptop kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(9431, 9194, 74, 7, 0, 'she is ok with the team .........talk active and office near by only very poor background father doing ironing business only immediate joining and salary expected 10k take home only have laptop kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(9432, 9195, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9433, 9188, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9434, 9187, 74, 7, 0, 'she is talk active and have experience in jewellery shop for 5 years and married also no baby husband move to abroad next week so need a job expected 10k ...have laptop and immediate joining kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(9435, 9155, 14, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9436, 9190, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(9437, 9144, 11, 7, 0, 'Candidate ok for E sales ', 59, '2022-06-30 04:42:08', 1),
(9438, 9191, 89, 7, 0, 'Selected ', 59, '2022-06-30 04:43:39', 1),
(9439, 9186, 44, 4, 3, 'Ji candidate ok for me need your Suggestion ', 59, '2022-06-30 04:45:08', 1),
(9440, 9189, 16, 7, 0, 'Selected', 59, '2022-06-30 04:45:56', 1),
(9441, 9185, 16, 7, 0, 'Selected', 59, '2022-06-30 04:47:12', 1),
(9442, 9144, 60, 1, 0, NULL, 11, '2022-06-30 05:14:56', 1),
(9443, 9190, 59, 3, 0, 'Selected for Manivel Team with Pf/Pt', 56, '2022-06-30 05:27:52', 1),
(9444, 9185, 60, 1, 0, NULL, 16, '2022-06-30 06:39:36', 1),
(9445, 9189, 60, 1, 0, NULL, 16, '2022-06-30 06:40:07', 1),
(9446, 9147, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2022-06-30 07:09:33', 1),
(9447, 9204, 56, 4, 0, 'Shortlisted', 60, '0000-00-00 00:00:00', 1),
(9448, 9191, 88, 7, 0, 'selected for RE', 89, '2022-07-01 12:48:06', 1),
(9449, 9191, 59, 3, 0, 'Selected for RE Babu Team in consultant Role', 88, '2022-07-01 01:27:23', 1),
(9450, 9204, 59, 3, 0, 'Selected for Manivel Team with PF/PT', 56, '2022-07-01 02:38:45', 1),
(9451, 9200, 14, 5, 0, 'Not suitable for this profile', 85, '0000-00-00 00:00:00', 1),
(9452, 9203, 59, 5, 0, 'Salary Discussed and confirmed but candidate didnt show interest in the profile later', 60, '0000-00-00 00:00:00', 1),
(9453, 9186, 29, 7, 2, 'RM sanmugam team', 44, '2022-07-01 02:57:42', 1),
(9454, 9206, 14, 5, 0, 'Not suitable for this profile', 85, '0000-00-00 00:00:00', 1),
(9455, 9194, 59, 5, 0, 'Discussed and finalised the package but now the candidate is not interested much as she is not comfortable to take calls continuously', 74, '2022-07-01 04:31:51', 1),
(9456, 9193, 59, 5, 0, 'Dropped.Candidate is not clear with her interest,just like that blocking the numbers,Will not join and conveyed the same to recruiter/Sales Manager', 74, '2022-07-01 04:33:35', 1),
(9457, 9197, 59, 5, 0, 'Dropped.Candidate Is Not Clear With Her Interest,Now she is committing that she doesnt have laptop and ,Will Not Join Conveyed The Same To Recruiter/Sales Manager', 74, '2022-07-01 04:37:01', 1),
(9458, 9187, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-01 04:51:07', 1),
(9459, 9209, 59, 4, 0, 'have Exp for Few months but not a relevant one,5050Profile need to train a lot kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9460, 9210, 59, 4, 0, 'Have Exp For Few Months But Not A Relevant One,5050Profile Need To Train A Lot Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9461, 9207, 59, 5, 0, 'Communication Average,Too long Distance from Tiruvallur,Not much suits for Digittal Marketng', 60, '0000-00-00 00:00:00', 1),
(9462, 9203, 57, 4, 0, 'candidate is ok kindly confirm the salary ', 59, '2022-07-01 05:04:57', 1),
(9463, 9209, 16, 5, 0, 'Low Profile', 59, '2022-07-01 05:06:59', 1),
(9464, 9210, 16, 1, 0, NULL, 59, '2022-07-01 05:07:34', 1),
(9465, 9202, 39, 7, 3, 'im ok with the candidate. pls check from your side', 60, '0000-00-00 00:00:00', 1),
(9466, 9202, 60, 1, 0, NULL, 39, '2022-07-02 10:46:02', 1),
(9467, 9203, 88, 7, 0, 'Selected for RE', 57, '2022-07-02 10:54:35', 1),
(9468, 9177, 74, 7, 0, 'she is well profiled and talk active good communication skill..............telecalling is a major passion.............she ia experienced in telecalling ecom private limited shared partner of brother process...complete aqua culture in chennai so very intrested in telesales willing to ready laptop tooo expected 11 to 12k.............from home 30 min travel now she want to vacate thing from andhra so need time for joning', 85, '0000-00-00 00:00:00', 1),
(9469, 9216, 74, 7, 0, 'she is matured and talkactive but she is married but have preferance for job first priority .....2 year child having but motherinlaw take care of child husband in foreign so no issues butdoubt only for she is married .we will check once need to ready laptop immediate joining 10k salary', 85, '0000-00-00 00:00:00', 1),
(9470, 9215, 59, 3, 0, 'Selected for Thiyagu Team - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(9471, 9215, 16, 7, 0, 'SELECTED', 59, '2022-07-02 12:09:45', 1),
(9472, 9183, 59, 2, 0, 'Communication ok seems not much confident 5050 profile can give a try,Need to confirm again and schedule her for the another round', 60, '0000-00-00 00:00:00', 1),
(9473, 9177, 59, 3, 0, 'Selected for Thanjavur in Consultant Role', 74, '2022-07-02 04:07:11', 1),
(9474, 9216, 59, 3, 0, 'Selected for Thanjavur  - Consultant Role', 74, '2022-07-02 04:11:15', 1),
(9475, 9223, 59, 5, 0, 'Not suitable every 6 months job changes not showing importance to the job will not sustain', 60, '0000-00-00 00:00:00', 1),
(9476, 9222, 59, 3, 0, 'Selected for ESales in Staff Role  - Final Round interviewed by gaurav', 60, '0000-00-00 00:00:00', 1),
(9477, 9218, 14, 7, 0, 'Selected need to confirm salary and joining date', 85, '0000-00-00 00:00:00', 1),
(9478, 9219, 14, 5, 0, 'Salary expectation high ', 85, '0000-00-00 00:00:00', 1),
(9479, 9220, 14, 5, 0, 'Expected salary high', 92, '0000-00-00 00:00:00', 1),
(9480, 9221, 14, 5, 0, 'Childish behavior and not suitable for this profile ', 85, '0000-00-00 00:00:00', 1),
(9481, 9224, 14, 5, 0, 'Not suitable for tele calling profile', 85, '0000-00-00 00:00:00', 1),
(9482, 9229, 74, 7, 0, 'he is ok with telecalling profile......1year experience in bajaj sales exective......expected 13k and 14k kindly confirm once........have laptop already completed degree in thanjavur only so travelling no issue ready to joining immediately kindly confirm once', 92, '0000-00-00 00:00:00', 1),
(9483, 9186, 59, 3, 0, 'Selected for Shanmuga Team with PF/ESI/PT', 29, '2022-07-04 12:57:49', 1),
(9484, 9229, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-07-04 03:14:02', 1),
(9485, 9237, 74, 7, 0, 'he is ok with the team good comunication and job need immediate joining and already work in mechanical company 6 months and releived ............pursuing engg in a reputed college so good and profesional expected 10 to 11k kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(9486, 9249, 74, 7, 0, 'he is well profiled and talk active...full cattered accounts studying but not continue still now so very poor background so job need and good profile currently worked as a accountant in agencies for 12k and agencies closed within a week so need to join a job within two days expected 12k but suitable candidate only have laptop but bit issues in laptop kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(9487, 8839, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(9488, 9245, 59, 4, 0, 'Fresher Can be trained for RE profile,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9489, 9251, 74, 7, 0, 'she is ok with the profile very talk activve and have laptop need to servise the laptop...highly job need and expected 10k take home only,,,,,father farmer ready to join kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(9490, 9246, 59, 4, 0, 'Fresher Can Be Trained For RE Profile,Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9491, 9248, 59, 4, 0, 'Having 4 months telecalling Exp Family need is there,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9492, 9232, 59, 3, 0, 'need to serve notice Salary TH 13K plus 208', 60, '0000-00-00 00:00:00', 1),
(9493, 9237, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-04 04:40:45', 1),
(9494, 9241, 59, 5, 0, 'Fresher sounding  low 5050 profile checked with banu for 2nd round and rejected', 60, '0000-00-00 00:00:00', 1),
(9495, 9235, 59, 5, 0, 'Not much exp in Recruitment but Salary Exp is high,no sustainability in the previous exp,will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(9496, 9247, 59, 5, 0, 'Fresher,Already holding an offer for 12K and looking for more being a fresher will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(9497, 9243, 59, 5, 0, 'Communication average and much prefers for Non Voice will not sustain', 60, '0000-00-00 00:00:00', 1),
(9498, 9231, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 60, '0000-00-00 00:00:00', 1),
(9499, 8839, 57, 4, 0, 'confirm the joining date', 59, '2022-07-04 05:00:14', 1),
(9500, 9245, 57, 4, 0, 'kindly confirm the joining date', 59, '2022-07-04 05:12:22', 1),
(9501, 9246, 57, 4, 0, 'fresher, candidate is ok  .\nkindly confirm the joining date', 59, '2022-07-04 05:12:52', 1),
(9502, 9248, 53, 1, 0, NULL, 59, '2022-07-04 05:14:23', 1),
(9503, 9251, 59, 3, 0, 'selected for Thanjavur  - Consultant Role', 74, '2022-07-04 05:39:59', 1),
(9504, 9249, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-04 05:47:16', 1),
(9505, 9215, 60, 1, 0, NULL, 16, '2022-07-05 09:56:19', 1),
(9506, 9255, 39, 7, 3, 'candidate is shortlisted. cnfrm package and joining from your side', 60, '0000-00-00 00:00:00', 1),
(9507, 9268, 74, 7, 0, 'she ok with the team talk active and family background is good have own laptop also currently working as a admin in maruthi suzuki pillai and sons franchise showroom ....completed mba finance....ready to join but expected 15k we will convince to 12k alteady getting take home 8 500......so check and confirm once', 85, '0000-00-00 00:00:00', 1),
(9508, 9267, 74, 7, 0, 'she is ok with the team need to ready laptop........family in poor situation.........need to expect 10 to 13k ..............already working in pillai and sons for 1 year due to salary issue she releived and highly job need...kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(9509, 9253, 24, 5, 0, 'time not suitable and not speaking well in skills', 85, '0000-00-00 00:00:00', 1),
(9510, 9245, 88, 1, 0, NULL, 57, '2022-07-05 03:11:17', 1),
(9511, 9246, 88, 1, 0, NULL, 57, '2022-07-05 03:11:46', 1),
(9512, 9271, 59, 5, 0, 'Too lon distance came along with his friends,will not sustain and run for a long', 60, '0000-00-00 00:00:00', 1),
(9513, 9272, 59, 5, 0, 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', 60, '0000-00-00 00:00:00', 1),
(9514, 9244, 59, 5, 0, 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', 60, '0000-00-00 00:00:00', 1),
(9515, 9233, 59, 5, 0, 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', 60, '0000-00-00 00:00:00', 1),
(9516, 9133, 59, 5, 0, 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', 60, '0000-00-00 00:00:00', 1),
(9517, 9266, 59, 3, 0, 'Selected for Babu Team in Staff Role', 60, '0000-00-00 00:00:00', 1),
(9518, 9265, 59, 4, 0, 'Communication ok Fresher can be trained but need to focus on her distance kindly check and let me know your inputs\n', 60, '0000-00-00 00:00:00', 1),
(9519, 9261, 59, 5, 0, 'Too long Distance Have Exp in Recruitment but into sourcing skills,No sustainability in her previous exp,Longrun doubts', 60, '0000-00-00 00:00:00', 1),
(9520, 9256, 59, 5, 0, 'Communication Average,No basic ideas in the recruitment,no clarity in job will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9521, 9257, 59, 5, 0, 'Fresher no idea on the job Preferred looking for any opportunities as of now ,but much focused in Accounts opening only', 60, '0000-00-00 00:00:00', 1),
(9522, 9274, 59, 3, 0, 'Staff Role -  Babu Team', 60, '0000-00-00 00:00:00', 1),
(9523, 9273, 59, 4, 0, 'Communication ok Fresher can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9524, 9254, 59, 5, 0, 'Salary Exp is high and not ready to come down', 60, '0000-00-00 00:00:00', 1),
(9525, 9218, 59, 3, 0, 'Selected for Arumbakkam in Consultant Role\n', 14, '2022-07-05 04:55:02', 1),
(9526, 9266, 89, 7, 0, 'selected', 59, '2022-07-05 05:15:30', 1),
(9527, 9265, 16, 5, 0, 'Sustain Doubt', 59, '2022-07-05 05:17:10', 1),
(9528, 9254, 18, 7, 4, 'Selected for Mani Team. Expecting salary is 4.5 but cannot give as last CTC is 3L. Kindly neotiate and can give target for Instant apprisal. Ready to join next week.', 59, '2022-07-05 05:20:07', 1),
(9529, 9273, 57, 4, 0, 'CONFIRM THE JOINING DATE', 59, '2022-07-05 05:21:23', 1),
(9530, 9274, 89, 7, 0, 'selected', 59, '2022-07-05 05:22:32', 1),
(9531, 9250, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(9532, 9222, 11, 7, 0, 'candidate ok for E sales ', 59, '2022-07-05 06:32:56', 1),
(9533, 9222, 59, 3, 0, 'Selected for ESales in Staff Role  - Final Round interviewed by gaurav', 59, '2022-07-05 06:32:56', 1),
(9534, 9255, 60, 1, 0, NULL, 39, '2022-07-05 06:47:05', 1),
(9535, 9260, 74, 7, 0, 'she is ok with the team and highly job need and expected 10k and have laptop and display problem joining monday....already work in pondicherry relative house is there and getting 8.5 k salary now she is ok with the profile', 60, '0000-00-00 00:00:00', 1),
(9536, 9268, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-07-05 07:04:02', 1),
(9537, 9260, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-05 07:06:07', 1),
(9538, 8839, 88, 7, 0, 'Selected for RE', 57, '2022-07-06 10:28:28', 1),
(9539, 9273, 88, 1, 0, NULL, 57, '2022-07-06 10:28:58', 1),
(9540, 9266, 88, 7, 0, 'selected for RE', 89, '2022-07-06 10:59:04', 1),
(9541, 9274, 88, 7, 0, 'Selected for RE', 89, '2022-07-06 10:59:38', 1),
(9542, 9266, 59, 3, 0, 'Selected for Babu Team in Staff Role', 88, '2022-07-06 11:03:12', 1),
(9543, 9274, 59, 3, 0, 'Staff Role -  Babu Team', 88, '2022-07-06 11:03:36', 1),
(9544, 9250, 59, 5, 0, 'Dropped Holding an offer with Byjuxquots and expecting high Salary not ready to come down ', 56, '2022-07-06 11:52:25', 1),
(9545, 9281, 39, 7, 3, 'candidate isok. from your side check candidate communication and package', 60, '0000-00-00 00:00:00', 1),
(9546, 9281, 60, 1, 0, NULL, 39, '2022-07-06 02:44:05', 1),
(9547, 9275, 59, 2, 0, 'Have Basic knowledge in skills,need time to confirm the TxxampC with his family if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(9548, 9276, 59, 5, 0, 'No basic ideas with Skills,not much comfort with TxxampC,Will not sustain for a long not suitable', 85, '0000-00-00 00:00:00', 1),
(9549, 9277, 59, 5, 0, 'No Basic Ideas With Skills, Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable,need to check with brother for every things ', 85, '0000-00-00 00:00:00', 1),
(9550, 9278, 59, 5, 0, 'No Much ideas with  skills not comfort in TxxampC Will not Join', 85, '0000-00-00 00:00:00', 1),
(9551, 9279, 59, 2, 0, 'Fresher have basic ideas need to check with family for TxxampC ', 85, '0000-00-00 00:00:00', 1),
(9552, 9280, 59, 5, 0, 'Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable,Bit Attitude Salary Exp is high', 85, '0000-00-00 00:00:00', 1),
(9553, 9283, 59, 5, 0, 'Course in Besant tech,Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable', 85, '0000-00-00 00:00:00', 1),
(9554, 9284, 59, 5, 0, 'Course In Besant Tech,Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable Too long Distance\n', 85, '0000-00-00 00:00:00', 1),
(9555, 9285, 59, 2, 0, 'Course In Besant Tech,Ok with TxxampC but need to give his confirmation after check with his family', 85, '0000-00-00 00:00:00', 1),
(9556, 9286, 59, 3, 0, 'Selectde  for Syed Team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(9557, 9287, 59, 5, 0, 'Not Much Comfort With TxxampC, Will Not Sustain For A Long Not Suitable Fresher no basic ideas second Round Reject', 85, '0000-00-00 00:00:00', 1),
(9558, 9286, 57, 4, 0, 'candidate is ok, pls confirm the joining ', 59, '2022-07-06 07:43:02', 1),
(9559, 8865, 24, 5, 0, 'Long Distance and scared about sales', 24, '2022-07-07 11:11:52', 1),
(9560, 9286, 88, 7, 0, 'Selected for RE', 57, '2022-07-07 11:34:32', 1),
(9561, 9299, 74, 7, 0, 'she is talkactive and very intrested in job candidate is good and highly job need .....salary expected 10k take home and completed fashion designing ........from home 15 mins only travel to office ...........need to arrange laptop she is ok with the profile father health issues so brothers and sisters take care of the family .....................kindly check once and confirm friday 8 7 22 joining ', 85, '0000-00-00 00:00:00', 1),
(9562, 9299, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-07 04:02:36', 1),
(9563, 9289, 59, 5, 0, 'Communication ok,have exp in sales Part time but no  documents with him,Salary exp in Very high,Will not sustain and the distance also too long,Attended 2nd round and the feedback was same', 60, '0000-00-00 00:00:00', 1),
(9564, 9293, 59, 2, 0, 'Have basic knowledge in the skills can be trained,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9565, 9290, 59, 5, 0, 'Communication Average,Looking much for Non Voice Data Entry only,She also preferred to work in Telecalling - But got rejected in 2nd round Sales Manager', 60, '0000-00-00 00:00:00', 1),
(9566, 9295, 59, 5, 0, 'Communication ok,No sustainability in his previous Exp,also the reasons were not seems to genuine,however ask the candidate to wait for the 2nd round but he left without attending - Rejected', 60, '0000-00-00 00:00:00', 1),
(9567, 9288, 59, 5, 0, 'She in into testing and no basic ideas in PHP/React Skills will not Sustain and not much comfort with TxxampC', 60, '0000-00-00 00:00:00', 1),
(9568, 9291, 59, 5, 0, 'Communication Average, No basic ideas in the Skills, will not sustain for a long not suitable', 60, '0000-00-00 00:00:00', 1),
(9569, 9294, 59, 5, 0, 'No communication,no basic ideas fresher Will not run in a long,Will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(9570, 9292, 59, 5, 0, 'Communication No, No Basic Ideas In The Skills, Will Not Sustain For A Long Not Suitab', 60, '0000-00-00 00:00:00', 1),
(9571, 9282, 59, 5, 0, 'Fresher only basic ideas in HTML/CSS need to learn a lot Not much comfort in TxxampC', 60, '0000-00-00 00:00:00', 1),
(9572, 9298, 59, 4, 0, 'Communication Good,Have Exp in Recruitment,she appeared fro RM role,Can give a try for our RM Roles,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9573, 9298, 80, 7, 0, 'Good Communication Skill. Explained very well for sales products ', 59, '2022-07-07 05:26:00', 1),
(9574, 8839, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 88, '2022-07-07 06:07:02', 1),
(9575, 9286, 59, 3, 0, 'Selectde  for Syed Team in Staff Role', 88, '2022-07-07 06:08:41', 1),
(9576, 9203, 59, 5, 0, 'Salary Discussed and confirmed but candidate didnt show interest in the profile later', 88, '2022-07-07 06:28:03', 1),
(9577, 9254, 60, 1, 0, NULL, 18, '2022-07-08 09:56:01', 1),
(9578, 9298, 18, 9, 0, 'Wrongly shared to Me', 80, '2022-07-08 10:52:50', 1),
(9579, 9267, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-08 12:51:43', 1),
(9580, 9308, 74, 7, 0, 'she is ok with the team and telecalling .....highly job need and  fresher only have laptop .............travelling distance is high so need to cheeck once .immeditae joining.......salary expected 10k...........completed bA and m.lib in central university...', 85, '0000-00-00 00:00:00', 1),
(9581, 9308, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-07-08 04:21:39', 1),
(9582, 9311, 74, 7, 0, 'she is talk active and fit for tele sales highly job need and immeditae joining.salary expected 10k..... father passes mother only ....no laptop need to arrange kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(9583, 9311, 59, 3, 0, 'Selected For Thanjavur Consultant Role', 74, '2022-07-08 04:31:04', 1),
(9584, 9222, 60, 1, 0, NULL, 11, '2022-07-08 06:19:43', 1),
(9585, 9297, 59, 2, 0, 'Freelancer and Exp is some what high,Have project Exp but sustainability doubts  as her sister is in TCS in same React Skills', 85, '0000-00-00 00:00:00', 1),
(9586, 9301, 59, 5, 0, 'No understanding,will not handle our work,not suitable', 85, '0000-00-00 00:00:00', 1),
(9587, 9304, 59, 5, 0, 'Too long Distance ,not much strong in the skills not suitable\n', 85, '0000-00-00 00:00:00', 1),
(9588, 9305, 59, 3, 0, 'Selected for Content Writing - 12K TH 2yrs SA', 85, '0000-00-00 00:00:00', 1),
(9589, 9310, 74, 5, 0, 'voice not clear not suit for team and telesales.......', 60, '0000-00-00 00:00:00', 1),
(9590, 9313, 74, 5, 0, 'voice not clear speaking problem not fit for telesales', 60, '0000-00-00 00:00:00', 1),
(9591, 9312, 74, 5, 0, 'age too high technically week and not fit for team', 60, '0000-00-00 00:00:00', 1),
(9592, 9307, 74, 5, 0, 'not suite for team voice not clear', 60, '0000-00-00 00:00:00', 1),
(9593, 9316, 59, 2, 0, 'Have done with 2nd round technical need to be trained in internship candidate should come backwith his confirmation', 85, '0000-00-00 00:00:00', 1),
(9594, 9319, 59, 5, 0, 'Not much importance towards the job,he is very clear if he gets an opportunity he will move for that positions.Will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(9595, 9321, 59, 5, 0, 'Communication average need to open a lot,Will not run in a long not suitable', 60, '0000-00-00 00:00:00', 1),
(9596, 9326, 93, 7, 0, 'Positive Attitude, interacting more experienced spoken for 16k salary take-home if possible we can provide 17k also \nlast 2 Companies releaving reason  the process got shout down ', 60, '0000-00-00 00:00:00', 1),
(9597, 9326, 59, 3, 0, 'Selected for ESales Bangalore Consultant Role', 93, '2022-07-09 03:50:43', 1),
(9598, 9317, 59, 2, 0, 'Need to check the writing content,currently in Full time graduation,Communication ok,Salary Exp is also high.', 60, '0000-00-00 00:00:00', 1),
(9599, 9314, 59, 2, 0, 'Fresher have basic knowledge in HTML, CSS JS, and learnt React on his own, Seems not much convinced with the TxxampC, need time to check with family. If he comes back let us try for the technical round', 60, '0000-00-00 00:00:00', 1),
(9600, 9320, 59, 2, 0, 'Communication ok, fresher for MERN, Ongoing course with NXTwave, Already given interviews with 2 companies and waiting for the result, expecting positive. Have done some projects using HTML, CSS and Javascript. Min Salary exp is 15K being fresher.After the results from interview,he will confirm.', 60, '0000-00-00 00:00:00', 1),
(9601, 9329, 59, 5, 0, 'Looking for IT openings but not comfortable inTxxampC No basic ideas in Skills', 85, '0000-00-00 00:00:00', 1),
(9602, 9330, 59, 5, 0, 'Looking For IT Openings But Not Comfortable InTxxampC No Basic Ideas In Skills', 85, '0000-00-00 00:00:00', 1),
(9603, 9331, 59, 5, 0, 'Looking For IT Openings But Not Comfortable InTxxampC No Basic Ideas In Skills', 85, '0000-00-00 00:00:00', 1),
(9604, 9333, 59, 2, 0, 'Fresher have some basic skills knowledge in PHP,completed training in besant tech,2nd interviewed by latha and on hold candidate need to come back with her confirmation', 85, '0000-00-00 00:00:00', 1),
(9605, 9334, 59, 2, 0, 'Need time to confirm with her sister on the position and the txxampC She hold another final round interview ,if she comes back need to check', 85, '0000-00-00 00:00:00', 1),
(9606, 9339, 74, 2, 0, 'he is ok with the process and purely adament not controlled under the management and sustainability issue also kindly hold the candidate', 85, '0000-00-00 00:00:00', 1),
(9607, 9340, 31, 5, 4, 'Expecting higher salary and team handling', 85, '0000-00-00 00:00:00', 1),
(9608, 9337, 59, 4, 0, 'Communication Average,need to open a lot 5050 profile kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9609, 9338, 59, 5, 0, 'Candidate not showing interest as her friend not got  selected', 85, '0000-00-00 00:00:00', 1),
(9610, 9335, 59, 4, 0, 'Candidate communication 4 months exp in Vissa Insurance but no proper relieving,Seems 5050 kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9611, 9332, 59, 4, 0, '5050 Profile not showing importance much with the job,Career Gap,Need to train a lot,Sustainability Doubts kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9612, 9346, 39, 7, 3, 'Candidate is ok for me.. cnfrm from your side joining and package', 60, '0000-00-00 00:00:00', 1),
(9613, 9338, 16, 7, 0, 'selected ', 59, '2022-07-11 06:21:02', 1),
(9614, 9332, 57, 1, 0, NULL, 59, '2022-07-11 06:26:41', 1),
(9615, 9343, 39, 5, 2, 'Candidate is not suit for this profile ', 60, '0000-00-00 00:00:00', 1),
(9616, 9335, 16, 1, 0, NULL, 59, '2022-07-11 06:35:23', 1),
(9617, 9337, 16, 1, 0, NULL, 59, '2022-07-11 06:41:57', 1),
(9618, 9353, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(9619, 9356, 74, 7, 0, 'she is ok with the team and suit for telecalling .........father shop keeper and very poor situation tavelling half hour only.....have laptop expected 10 to 12k salary..........already worked in a manufacturing comapany in chennai and releived so have good exposer kindly check and confirm once', 92, '0000-00-00 00:00:00', 1),
(9620, 9357, 74, 7, 0, 'he is ok with the team and very responsible person job need father doing real estate but in a poor condition.........2km from home to office .........and highly job need ...........have own laptop 11 to 12k expected salary ........immediate joining.kindly check once and confirm', 92, '0000-00-00 00:00:00', 1),
(9621, 9354, 59, 5, 0, 'No basic ideas need to open a lot will not sustain in a long run', 85, '0000-00-00 00:00:00', 1),
(9622, 9338, 60, 1, 0, NULL, 16, '2022-07-12 12:24:39', 1),
(9623, 9352, 59, 3, 0, 'Selected for Intern with 5K and salary will be fixed later based on the performance', 92, '0000-00-00 00:00:00', 1),
(9624, 9359, 59, 3, 0, 'Selected for Syed team in Consultant Role', 92, '0000-00-00 00:00:00', 1),
(9625, 9360, 59, 4, 0, 'Communication ok have Exp in Calling but not a relevant one,, can give a try for our sales profile kindly check and let me know your inputs', 92, '0000-00-00 00:00:00', 1),
(9626, 9362, 59, 5, 0, 'Nobasic Ideas Not Much Open With TxxampC Will Not Sustain', 92, '0000-00-00 00:00:00', 1),
(9627, 9361, 59, 5, 0, 'Nobasic ideas not much open with TxxampC Will not sustain', 92, '0000-00-00 00:00:00', 1),
(9628, 9359, 57, 4, 0, 'candidate is ok ,kindly confirm the joining date', 59, '2022-07-12 02:50:08', 1),
(9629, 9359, 88, 7, 0, 'selected for RE', 57, '2022-07-12 02:52:33', 1),
(9630, 9359, 59, 3, 0, 'Selected for Syed team in Consultant Role', 88, '2022-07-12 02:55:44', 1),
(9631, 9360, 71, 4, 0, 'Move to second round', 59, '2022-07-12 03:03:02', 1),
(9632, 9360, 18, 8, 0, 'Hyd Candidate and we have freezed recruitment there', 71, '2022-07-12 03:04:10', 1),
(9633, 9346, 60, 1, 0, NULL, 39, '2022-07-12 04:16:48', 1),
(9634, 9356, 59, 3, 0, 'Selected for Thanjavur Location in Consultant Role', 74, '2022-07-12 05:06:44', 1),
(9635, 9357, 59, 3, 0, 'Selected for Thanjavur Location in Consultant role', 74, '2022-07-12 05:08:53', 1),
(9636, 9326, 60, 1, 0, NULL, 30, '2022-07-12 06:30:49', 1),
(9637, 9346, 60, 1, 0, NULL, 30, '2022-07-12 06:43:53', 1),
(9638, 9380, 59, 2, 0, 'Candidate should come back with his  confirmation,having basic knowledge in Skills,can be trained but sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(9639, 9378, 59, 4, 0, 'Communication Good No relevant Exp in Sales ,Fresher for this domain Salary Exp is high, Internal reference from Pamesh Prasanna', 60, '0000-00-00 00:00:00', 1),
(9640, 9379, 59, 5, 0, 'No  basic ideas in MIS too Long Distance around 66KMS,will not sustain and communication Average', 60, '0000-00-00 00:00:00', 1),
(9641, 9367, 59, 5, 0, 'No  Basic Ideas In MIS Too Long Distance Around 66KMS,Will Not Sustain And Communication Average', 60, '0000-00-00 00:00:00', 1),
(9642, 9372, 59, 5, 0, 'Have Basic Ideas In PHP Skills Too Long Distance,Looking for the timings,Will Not Sustain And not ready to relocate', 60, '0000-00-00 00:00:00', 1),
(9643, 9370, 59, 2, 0, 'Candidate was interviewed and was on hold after 2nd round of interview need to give his confirmation', 60, '0000-00-00 00:00:00', 1),
(9644, 9365, 59, 5, 0, 'have basic ideas in HTML,CSS, JS  Too Long Distance up and down86KMS,Not ready to relocate  And Communication Average', 60, '0000-00-00 00:00:00', 1),
(9645, 9368, 59, 5, 0, 'Have Basic Ideas In HTML,CSS, JS  Too Long Distance Up And Down86KMS,Not Ready To Relocate  And Communication Average', 60, '0000-00-00 00:00:00', 1),
(9646, 9377, 59, 5, 0, 'Have ideas in HTML,CSS,not in CRUD  Doing ME in Correspondence have a plan to travel abroad in 1-2 yrs will not sustain', 60, '0000-00-00 00:00:00', 1),
(9647, 9376, 59, 5, 0, 'Need to open a lot  have ideas only in  HTML, CSS, not other  ideas in Crud, PHP, Will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(9648, 9373, 59, 5, 0, 'Not suitable for our role need to open a lot will not sustain', 60, '0000-00-00 00:00:00', 1),
(9649, 9378, 44, 1, 0, NULL, 59, '2022-07-13 01:07:26', 1),
(9650, 9385, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9651, 9383, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9652, 9382, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9653, 9386, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9654, 9381, 56, 4, 0, 'selected for Next round', 60, '0000-00-00 00:00:00', 1),
(9655, 9381, 30, 4, 4, 'confirm the joining date suggested ctc 23k+pf', 56, '2022-07-14 09:53:48', 1),
(9656, 9381, 60, 1, 0, NULL, 30, '2022-07-14 11:16:23', 1),
(9657, 9375, 13, 7, 0, 'ok  salary 10k takehome immediate joining call panni confirm pannanum', 60, '0000-00-00 00:00:00', 1),
(9658, 9375, 59, 3, 0, 'Selected for Erode - Consultant Role', 13, '2022-07-14 03:56:27', 1),
(9659, 9406, 31, 4, 0, 'Fresher, did part time job.  ', 60, '0000-00-00 00:00:00', 1),
(9660, 9339, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-14 05:13:12', 1),
(9661, 9339, 74, 7, 0, 'He is ok with the team and high potential...........already worked as a team leader and 3 years experience in sales .........expected 15k salary kindly confirm once .............have laptop imeediate joning and have bike also..................indhu priya reference.........', 74, '2022-07-14 05:13:12', 1),
(9662, 9406, 29, 7, 0, 'selected for rM', 31, '2022-07-14 05:13:45', 1),
(9663, 9347, 93, 4, 0, 'Fresher,going to relocate for this Job', 60, '0000-00-00 00:00:00', 1),
(9664, 9344, 93, 4, 0, 'Fresher, going to relocate for this job ', 60, '0000-00-00 00:00:00', 1),
(9665, 9344, 60, 1, 0, NULL, 93, '2022-07-14 06:36:23', 1),
(9666, 9347, 60, 1, 0, NULL, 93, '2022-07-14 06:37:11', 1),
(9667, 9406, 59, 3, 0, 'Selected for GK sir in Staff Role\n', 29, '2022-07-14 07:18:02', 1),
(9668, 9389, 59, 3, 0, 'Selected by Gokul 7 days training based on that only will get confirm', 60, '0000-00-00 00:00:00', 1),
(9669, 9393, 59, 5, 0, 'Final Round Reject by Kavya not suitable', 60, '0000-00-00 00:00:00', 1),
(9670, 9396, 59, 5, 0, 'Very Slow No basic ideas not suitable will not sustainxquot', 60, '0000-00-00 00:00:00', 1),
(9671, 9395, 59, 5, 0, 'No ideas in the skills and sustainability doubts not much active', 60, '0000-00-00 00:00:00', 1),
(9672, 9399, 59, 5, 0, 'No ideas in JS focus in Java openings Too long distance will not sustain', 60, '0000-00-00 00:00:00', 1),
(9673, 9392, 59, 5, 0, 'Bit Attitude,Already holding offers with good Pay will not join for less not suitable', 60, '0000-00-00 00:00:00', 1),
(9674, 9390, 59, 5, 0, 'No basic ideas not suitable for our Roles will not sustain', 60, '0000-00-00 00:00:00', 1),
(9675, 9394, 59, 5, 0, 'No ideas in Skills have exp in non voice no communication not suitable for other Roles', 60, '0000-00-00 00:00:00', 1),
(9676, 9400, 59, 2, 0, 'Average Skills but her sister in IT Domain already referred for some roles sustainability Doubt  if he coems back let us see', 60, '0000-00-00 00:00:00', 1),
(9677, 9391, 59, 5, 0, 'Much prefer to work in Java Language not suits for our Roles', 60, '0000-00-00 00:00:00', 1),
(9678, 9408, 59, 5, 0, 'Technical Round Rejected - Have basic knowledge and the distance too long will not sustain', 85, '0000-00-00 00:00:00', 1),
(9679, 9409, 59, 5, 0, 'need to open a lot not much with basic ideas given time to learn if she come bank let us try\n', 85, '0000-00-00 00:00:00', 1),
(9680, 9410, 59, 5, 0, 'No basic ideas in Skills, need to learn If he come back after learning let us try', 85, '0000-00-00 00:00:00', 1),
(9681, 9411, 59, 2, 0, 'Communication OK,Applied for HR Fresher Profile Checked for Mutual Fund too Asked her to wait for final round but the candidate Left', 85, '0000-00-00 00:00:00', 1),
(9682, 9412, 59, 5, 0, 'No basic ideas and looking for Java Openings much', 85, '0000-00-00 00:00:00', 1),
(9683, 9413, 59, 3, 0, 'Selected for Shanmugam Team Staff Role', 85, '0000-00-00 00:00:00', 1),
(9684, 9414, 59, 3, 0, 'Selected for GK Sir Team  Staff Role', 85, '0000-00-00 00:00:00', 1),
(9685, 9424, 59, 5, 0, 'Have a month intern exp and the salary Exp is high,not familiar with the Skills,Need to train a lot not ok with TxxampC', 85, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(9686, 9418, 59, 5, 0, 'Have mentioned about flutter asked the candidate come for final disussion after lunch but no response after', 85, '0000-00-00 00:00:00', 1),
(9687, 9422, 59, 5, 0, 'Have Exp inTelecalling but communication Average and also she looks for Compounder Role(Previous One)', 85, '0000-00-00 00:00:00', 1),
(9688, 9415, 59, 5, 0, 'Completed Course in Accord,Looking for Java xxamp Web Designing but not much storing in skills need to learn', 85, '0000-00-00 00:00:00', 1),
(9689, 9417, 59, 5, 0, 'no basic ideas not suitable', 85, '0000-00-00 00:00:00', 1),
(9690, 9416, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9691, 9425, 59, 5, 0, 'Fresher no ideas in CRUD operations,Not open for Timings Too', 85, '0000-00-00 00:00:00', 1),
(9692, 9423, 59, 5, 0, 'Holding an offer with Netaccess for 15K 25th joining in the mean time he is looking for more', 85, '0000-00-00 00:00:00', 1),
(9693, 9426, 59, 5, 0, 'Fresher for MERN,Career Gap no basic ideas in the Skills given time to learn if he come back let us try', 85, '0000-00-00 00:00:00', 1),
(9694, 9421, 59, 5, 0, 'Not suitable will not sustain have a plan to in Java Profile', 85, '0000-00-00 00:00:00', 1),
(9695, 9421, 59, 5, 0, 'Not suitable will not sustain have a plan to in Java Profile', 85, '0000-00-00 00:00:00', 1),
(9696, 9419, 59, 5, 0, 'Not Suitable Will Not Sustain Have A Plan To In Java Profile', 85, '0000-00-00 00:00:00', 1),
(9697, 9420, 59, 3, 0, 'staff role Kannan Team', 85, '0000-00-00 00:00:00', 1),
(9698, 9397, 59, 4, 0, 'Have Basic ideas in the PHP can be trained kindly check and let me know\n', 60, '0000-00-00 00:00:00', 1),
(9699, 9420, 19, 7, 5, 'Selected', 59, '2022-07-15 06:53:01', 1),
(9700, 9413, 44, 4, 4, 'Ji candidate ok for me need your Suggestion', 59, '2022-07-15 06:54:40', 1),
(9701, 9414, 31, 4, 4, 'Candidate okay forwarded for next round', 59, '2022-07-15 06:54:57', 1),
(9702, 9397, 63, 1, 0, NULL, 59, '2022-07-15 07:16:51', 1),
(9703, 9420, 59, 3, 0, 'staff role Kannan Team', 19, '2022-07-16 02:53:30', 1),
(9704, 9441, 59, 3, 0, 'Selected for RE,As finalised by Ramesh We processed with this package', 60, '0000-00-00 00:00:00', 1),
(9705, 9440, 59, 5, 0, 'Not suitable no skills knowledge and will not handle our pressure and sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(9706, 9437, 59, 5, 0, 'No basic  Skills need time to learn,if she come back after learning let us try', 60, '0000-00-00 00:00:00', 1),
(9707, 9435, 59, 5, 0, 'No Basic ideas she was into different Domain need to learn a lot,Already she holds an offer and look for some more distance also need to focus', 60, '0000-00-00 00:00:00', 1),
(9708, 9431, 59, 4, 0, 'Fresher for IT have Exp in Core Field Can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9709, 9428, 59, 4, 0, 'Fresher 5050 profile,kindly check for PHP and let me know your inputs ji\n', 60, '0000-00-00 00:00:00', 1),
(9710, 9441, 88, 7, 0, 'Selected for RE', 59, '2022-07-16 04:16:20', 1),
(9711, 9428, 27, 1, 0, NULL, 59, '2022-07-16 04:25:32', 1),
(9712, 9431, 27, 1, 0, NULL, 59, '2022-07-16 04:27:14', 1),
(9713, 9441, 59, 3, 0, 'Selected for RE,As finalised by Ramesh We processed with this package', 88, '2022-07-16 05:02:50', 1),
(9714, 9420, 59, 3, 0, 'staff role Kannan Team', 88, '2022-07-16 05:03:17', 1),
(9715, 9320, 59, 5, 0, 'Not interested with TxxampC,Salary Exp is high', 59, '2022-07-16 05:03:43', 1),
(9716, 9432, 14, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9717, 9413, 29, 7, 3, 'RM ', 44, '2022-07-16 06:42:41', 1),
(9718, 9318, 59, 5, 0, 'Have basic skills but not comfortable with the TxxampC being a fresher,also high CTC Exp', 92, '0000-00-00 00:00:00', 1),
(9719, 9447, 59, 5, 0, 'Too long Distance communication Average,Not ready to relocate will not sustain\n', 92, '0000-00-00 00:00:00', 1),
(9720, 9450, 59, 5, 0, 'Too long distance need to relocate sustainability doubt,requested for a time to confirm  with parents but left without attending the 2nd level', 92, '0000-00-00 00:00:00', 1),
(9721, 9451, 59, 4, 0, 'Have Exp in native  - PHP position,have basic knowledge sustainability doubts thinking a lot on TxxampC ', 92, '0000-00-00 00:00:00', 1),
(9722, 9452, 59, 5, 0, 'Looking for Python opening xxamp Machine Learning Seems to little attitude,will not sustain,also not much comfort with TxxampC', 92, '0000-00-00 00:00:00', 1),
(9723, 9456, 59, 5, 0, 'Not ok with TxxampC being fresher his brother is into same PHP Distance around 50Kms up and down,Will not sustain', 92, '0000-00-00 00:00:00', 1),
(9724, 9427, 59, 2, 0, 'Fresher not much strong with the skills ,need to come back with his confirmation.', 85, '0000-00-00 00:00:00', 1),
(9725, 9458, 59, 5, 0, 'Fresher no basic knowledge but checked for 2nd level and rejected by Kaaviya', 85, '0000-00-00 00:00:00', 1),
(9726, 9454, 59, 3, 0, 'Selected for  GK Sir with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9727, 9455, 59, 4, 0, 'Have telecaller Exp in Personal Loan,Getting married shortly sustainability doubts kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9728, 9449, 59, 5, 0, 'Fresher not much strong with the skills,seems to be very slow 2nd round rejected by manikandan', 60, '0000-00-00 00:00:00', 1),
(9729, 9448, 59, 5, 0, 'He prefer to work in Java openings not suitable\n', 60, '0000-00-00 00:00:00', 1),
(9730, 9451, 27, 1, 0, NULL, 59, '2022-07-18 07:21:30', 1),
(9731, 9454, 29, 7, 3, 'RM Gk team', 59, '2022-07-18 07:22:42', 1),
(9732, 9455, 29, 1, 0, NULL, 59, '2022-07-18 07:24:03', 1),
(9733, 9035, 24, 5, 0, 'Sustainability doubt.. 5yrs gap in last job.. married also so not suit', 85, '0000-00-00 00:00:00', 1),
(9734, 8396, 59, 5, 0, 'No communication,Sustainability with the previous exp no not open with TxxampC not open with telecalling Activities', 85, '0000-00-00 00:00:00', 1),
(9735, 9474, 59, 5, 0, 'Age Around 2=34 yrs no sustainability with the previous Exp have only field Exp will not sustain with Telecalling RM profiles monot Suitable', 60, '0000-00-00 00:00:00', 1),
(9736, 9468, 59, 2, 0, 'Good Communication have a theoritical knowledge,2nd interviewed by kavya and the same opinion he need time to give his confirmation on TxxampC', 60, '0000-00-00 00:00:00', 1),
(9737, 9465, 59, 5, 0, 'Fresher Average communication need to learn a lot 2nd interviewed and the same opinion after learning if he come let us try', 60, '0000-00-00 00:00:00', 1),
(9738, 9466, 59, 5, 0, 'No communication not open up will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9739, 9463, 59, 2, 0, 'Communication ok,have basic skills but not familiar with React,Open for UI UXdesign too need time to confirm on the TxxampC,if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(9740, 9469, 59, 4, 0, 'Have basic skills knowledge did some freelance project in UI UX ,Distance a lot and sustainability Doubt,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9741, 9469, 27, 1, 0, NULL, 59, '2022-07-20 10:13:27', 1),
(9742, 9489, 59, 5, 0, 'Fresher no basic ideas in PHP,Need time to give his confirmation on the TxxampC If he come back let us try', 92, '0000-00-00 00:00:00', 1),
(9743, 9490, 59, 5, 0, 'Have a good knowledge in java only,no PHP,Looking for earnings much,Sustainability Doubt if she come back let us try', 92, '0000-00-00 00:00:00', 1),
(9744, 9488, 74, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(9745, 9471, 59, 2, 0, 'Have basic knowledge in flutter 2nd round interviewed by Gokul and on hold', 85, '0000-00-00 00:00:00', 1),
(9746, 9472, 59, 3, 0, 'Selected for Flutter Need to analyse 2nd round interviewed by Gokul ', 85, '0000-00-00 00:00:00', 1),
(9747, 9477, 59, 4, 0, 'Have Exp in PHP Can give a try for PHP Profile kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9748, 9478, 59, 3, 0, 'Selected for Shanmugam Team with PF/PT Deductions', 85, '0000-00-00 00:00:00', 1),
(9749, 9484, 59, 4, 0, '5050 Profile Career Gap no Teleslaes Exp Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9750, 9487, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9751, 9491, 59, 5, 0, 'Communication ok Have Exp in Recovery Scheduled for the 2nd level but left without attending the interview', 85, '0000-00-00 00:00:00', 1),
(9752, 9492, 59, 5, 0, 'Communication Ok Have Exp In Recovery Scheduled For The 2nd Level But Left Without Attending The Interview', 85, '0000-00-00 00:00:00', 1),
(9753, 9478, 29, 7, 3, 'for RM, shanmugam team', 59, '2022-07-20 04:52:09', 1),
(9754, 9477, 27, 1, 0, NULL, 59, '2022-07-20 06:11:17', 1),
(9755, 9484, 89, 1, 0, NULL, 59, '2022-07-20 06:16:13', 1),
(9756, 9495, 59, 5, 0, 'Fresher ,Min Exp is 10K in intern,not open for TxxampC,His sis too in the same domain,will not join in TC', 85, '0000-00-00 00:00:00', 1),
(9757, 9473, 59, 3, 0, 'Selected for Shanmugam Team  - Staff Role', 85, '0000-00-00 00:00:00', 1),
(9758, 9475, 57, 4, 0, 'candidate is ok ,already exp 3yrs \nmarried.salary comt around 13.5k to 14k in hand like net . pls confirm the joining date ', 60, '0000-00-00 00:00:00', 1),
(9759, 9503, 39, 4, 4, 'candidate is ok for the profile . i moved this for second round to mr.sathishkumar', 60, '0000-00-00 00:00:00', 1),
(9760, 9434, 59, 5, 0, 'No ideas in Javascript,will not run in a long not suitable', 92, '0000-00-00 00:00:00', 1),
(9761, 9436, 59, 2, 0, 'Fresher for React Can give a try Thinking a lot  with TxxampC,if he come back let us try', 92, '0000-00-00 00:00:00', 1),
(9762, 9499, 59, 2, 0, 'Have 5 months Exp in the Front end Working on React Project and his current salary is 12.5K(1.5LPA) and his exp min 15-16K TH. Need to be analyzed by giving the task, Also thinking about the TxxampC.If he come back let us give a try', 92, '0000-00-00 00:00:00', 1),
(9763, 9501, 59, 5, 0, 'Fresher,Already got some offers and not joined as the salary was around 15K His min Exp  is 20-25K ', 92, '0000-00-00 00:00:00', 1),
(9764, 9504, 59, 4, 0, 'Fresher just learning the skills kindly check and let me know your inputs,He is ok with TxxampC', 92, '0000-00-00 00:00:00', 1),
(9765, 9505, 59, 5, 0, 'Not open for Flutter position', 92, '0000-00-00 00:00:00', 1),
(9766, 9506, 59, 5, 0, 'Not Open With TxxampC Fresher Did Some Course In Beeja Technologies ,Came Along With Friends,No Basic Ideas In NodeJS Will Not Sustain Not Suitable ', 92, '0000-00-00 00:00:00', 1),
(9767, 9508, 59, 5, 0, 'Not Open With TxxampC Fresher Did Some Course In Beeja Technologies ,Came Along With Friends,No Basic Ideas In NodeJS Will Not Sustain Not Suitable ', 92, '0000-00-00 00:00:00', 1),
(9768, 9509, 59, 5, 0, 'Not Open With TxxampC Fresher Did Some Course In Beeja Technologies ,Came Along With Friends,No Basic Ideas In NodeJS Will Not Sustain Not Suitable ', 92, '0000-00-00 00:00:00', 1),
(9769, 9511, 59, 3, 0, 'Selected for Shanmugam Team with PF/PT', 85, '0000-00-00 00:00:00', 1),
(9770, 9507, 59, 5, 0, 'Not open with TxxampC fresher did some course in Beeja Technologies ,Came along with friends,no basic ideas in NodeJS will not sustain not suitable have a plan to travel abroad', 60, '0000-00-00 00:00:00', 1),
(9771, 9510, 59, 5, 0, 'Have basic knowledge in HTMl,CSS,JS not much with React Need time to give his confirmation for TxxampC if he come back let us give a try', 60, '0000-00-00 00:00:00', 1),
(9772, 9497, 59, 4, 0, 'Have basic knowledge in PHP Skills can be trained but salary Exp is high,kindly check his technical skills and can decide based on the output', 60, '0000-00-00 00:00:00', 1),
(9773, 9371, 59, 4, 0, 'Fresher have a basic knowledge in Skills interest to learn,ready to relocate kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9774, 9511, 44, 4, 4, 'Ji candidate ok for me need your Suggestion ', 59, '2022-07-21 06:46:21', 1),
(9775, 9473, 44, 4, 4, 'Ji candidate ok for me need your Suggestion ', 59, '2022-07-21 06:48:17', 1),
(9776, 9497, 27, 1, 0, NULL, 59, '2022-07-21 07:05:30', 1),
(9777, 9504, 27, 1, 0, NULL, 59, '2022-07-21 07:08:03', 1),
(9778, 9371, 27, 1, 0, NULL, 59, '2022-07-21 07:19:29', 1),
(9779, 9475, 88, 7, 0, 'Selected for RE', 57, '2022-07-22 10:32:59', 1),
(9780, 9511, 29, 7, 2, 'RM, shanmugam team, he worked for 3 months in 2018 for health channel at royapetta office in sarvanan team', 44, '2022-07-22 03:10:33', 1),
(9781, 9478, 59, 3, 0, 'Selected for Shanmugam Team with PF/PT Deductions', 29, '2022-07-22 03:30:19', 1),
(9782, 9511, 59, 3, 0, 'Selected for Shanmugam Team with PF/PT', 29, '2022-07-22 03:35:10', 1),
(9783, 9498, 59, 4, 0, 'Have basic knowledge in PHP SKills Open for TxxampC,Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9784, 9500, 59, 2, 0, 'Have Basic Knowledge In React SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(9785, 9516, 59, 4, 0, 'Have Basic Knowledge In PHP SKills Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(9786, 9503, 30, 4, 3, 'She is ready to join on monday and salary suggested 16k take home', 39, '2022-07-22 04:11:56', 1),
(9787, 9503, 60, 1, 0, NULL, 30, '2022-07-22 04:14:54', 1),
(9788, 9525, 24, 5, 0, 'Not Interested in sales', 60, '0000-00-00 00:00:00', 1),
(9789, 9526, 24, 5, 0, 'Not interested in sales', 60, '0000-00-00 00:00:00', 1),
(9790, 9524, 24, 5, 0, 'Not interested in sales', 60, '0000-00-00 00:00:00', 1),
(9791, 9523, 24, 5, 0, 'Not interested in sales', 60, '0000-00-00 00:00:00', 1),
(9792, 9522, 24, 5, 0, 'not Interested in sales', 60, '0000-00-00 00:00:00', 1),
(9793, 9521, 59, 5, 0, 'Last week attended and rejected,again appeared today will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9794, 9517, 59, 4, 0, 'Have Basic Knowledge In PHP SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9795, 9515, 59, 4, 0, 'Have Basic Knowledge In PHP SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9796, 9513, 59, 4, 0, 'Have Basic Knowledge In PHP SKills Currently learning Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9797, 9520, 59, 4, 0, 'Fresher,Seems not comfort with Target Sustainability doubts Internal Team reference kindly check and let me know your inouts', 60, '0000-00-00 00:00:00', 1),
(9798, 9518, 59, 5, 0, 'No basic skills knowledge not suitable\n', 60, '0000-00-00 00:00:00', 1),
(9799, 9519, 59, 5, 0, 'No basic skills knowledge ,not suitable will not sustain', 60, '0000-00-00 00:00:00', 1),
(9800, 9529, 59, 4, 0, 'Have Basic Knowledge In PHP SKills 6 months Exp in PHP Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9801, 9532, 59, 4, 0, 'Have Basic Knowledge In PHP SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9802, 9514, 59, 3, 0, 'Selected for  Santhosh Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9803, 9527, 14, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9804, 9498, 27, 1, 0, NULL, 59, '2022-07-22 05:04:42', 1),
(9805, 9516, 27, 1, 0, NULL, 59, '2022-07-22 05:06:51', 1),
(9806, 9528, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', 92, '0000-00-00 00:00:00', 1),
(9807, 9515, 27, 1, 0, NULL, 59, '2022-07-22 05:07:31', 1),
(9808, 9517, 27, 1, 0, NULL, 59, '2022-07-22 05:07:45', 1),
(9809, 9513, 27, 1, 0, NULL, 59, '2022-07-22 05:08:22', 1),
(9810, 9532, 27, 1, 0, NULL, 59, '2022-07-22 05:09:19', 1),
(9811, 9529, 27, 1, 0, NULL, 59, '2022-07-22 05:09:49', 1),
(9812, 9514, 71, 4, 0, 'Selected for next round', 59, '2022-07-22 05:12:08', 1),
(9813, 9520, 57, 1, 0, NULL, 59, '2022-07-22 05:13:18', 1),
(9814, 9475, 59, 3, 0, 'Selected for Staff Role - Syed Team', 88, '2022-07-22 05:31:36', 1),
(9815, 8800, 59, 5, 0, 'Communication Is Good, She Has Exp In The Backend, But Not Much In Excel Works Needs To Train A Lot. She Is Currently In Hexaware And Looking For Opportunities Only For The 2 Days Of Weekend Leaves Required. Need To Serve 30 Days Of Notice. She Will Not Handle Our Pressure And Sustain With Us. Every Year She Jumps To A Different Company Stating Health Conditions. She Needs To Travel From Tambaram.', 59, '2022-07-22 05:48:43', 1),
(9816, 8806, 59, 5, 0, 'Communication Ok,Age Around 32 Yrs,Need To Train A Lot In Our Roles,9yrs In Backend But Not In Excel Works,Thinking A Lot On The Service Agreements,If She Comes Back Lets Try', 59, '2022-07-22 05:49:39', 1),
(9817, 9512, 24, 5, 0, 'Rejected not suitable for telecalling job.. ', 60, '0000-00-00 00:00:00', 1),
(9818, 9540, 24, 4, 0, 'candidate okay .. Expect   15k but joining only 1st Aug.. because  previous company in last working day 31s july', 60, '0000-00-00 00:00:00', 1),
(9819, 9540, 88, 7, 0, 'Selected for RE', 24, '2022-07-23 01:30:25', 1),
(9820, 2670, 59, 5, 0, 'Have Multiple offers with night shift,Good in communication,Salary Exp is high,1,5 yrs 2 companies travelled,Will not sustain in a long', 85, '0000-00-00 00:00:00', 1),
(9821, 9538, 59, 5, 0, 'not open for Internship Fresher no basic ideas in Javascript,not answering the questions not suitable', 85, '0000-00-00 00:00:00', 1),
(9822, 9542, 59, 4, 0, 'Fresher Need to open a lot Sustainability doubts kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9823, 9534, 13, 7, 0, 'ok ,11k salary ,joining date aug 1st', 60, '0000-00-00 00:00:00', 1),
(9824, 9534, 59, 5, 0, 'Not responding the calls continuous RNR', 13, '2022-07-23 04:25:22', 1),
(9825, 9414, 29, 7, 3, 'RM', 31, '2022-07-23 04:48:03', 1),
(9826, 9544, 59, 5, 0, 'Age 28 yrs career gap 2015 passed out will not handle our pressure and fast learning doubts not suitable', 92, '0000-00-00 00:00:00', 1),
(9827, 9543, 59, 5, 0, 'Not answering much,Have a plan to go again with Police Exams,Looking for more stipend in Intern Fresher 2yrs GAP Thinking a lot with TxxampC Will not sustain', 92, '0000-00-00 00:00:00', 1),
(9828, 9539, 59, 5, 0, 'up and down 40 kms,not open with TxxampC hold for 2nd level but later he mentioned that was not comfortable with TxxampC', 92, '0000-00-00 00:00:00', 1),
(9829, 9541, 59, 3, 0, 'Selected for Mern  - Internship Employment', 92, '0000-00-00 00:00:00', 1),
(9830, 9454, 59, 3, 0, 'Selected for  GK Sir with PF/PT', 29, '2022-07-23 04:56:12', 1),
(9831, 9413, 59, 3, 0, 'Selected for Shanmugam Team Staff Role', 29, '2022-07-23 04:58:09', 1),
(9832, 9414, 59, 3, 0, 'Selected for GK Sir Team  Staff Role', 29, '2022-07-23 04:58:45', 1),
(9833, 9535, 59, 5, 0, 'Not Much Good in Skills not answering will not sustain thinking a lot with TxxampC\n', 60, '0000-00-00 00:00:00', 1),
(9834, 9536, 59, 5, 0, 'Nt much good in skills No sustainability in his previous exp will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9835, 9542, 69, 5, 0, 'candidate wont suit our team', 59, '2022-07-23 06:52:19', 1),
(9836, 9514, 18, 7, 4, 'Reference Candidate Selected for santosh team. Need to check on sustainability and joining this week. Kindly negotiate the package.', 71, '2022-07-25 10:09:35', 1),
(9837, 9558, 24, 5, 0, 'Father doing star health and Lic agent so we dont required ', 85, '0000-00-00 00:00:00', 1),
(9838, 9557, 24, 5, 0, 'he is experience in account jobs so he will not work here confidently and he is also told discuss with family', 85, '0000-00-00 00:00:00', 1),
(9839, 9531, 59, 5, 0, 'Need time to learn and think on TxxampC,if he come back let us try', 85, '0000-00-00 00:00:00', 1),
(9840, 9548, 59, 3, 0, 'Selected for Mern if she join lets see', 85, '0000-00-00 00:00:00', 1),
(9841, 9550, 59, 5, 0, 'not suitable need to open a lot,will not sustain', 85, '0000-00-00 00:00:00', 1),
(9842, 9551, 59, 5, 0, 'No basic ideas in JS,Not answering the basic requirement not suitable', 85, '0000-00-00 00:00:00', 1),
(9843, 9559, 59, 5, 0, 'Long run doubts will not sustain in our environment His sister already working in infosys he may swift ', 85, '0000-00-00 00:00:00', 1),
(9844, 9562, 59, 5, 0, 'Currently Working In Avasoft With 4 LPA,6 Months In React Internship And The Min Exp Is 25K(3LPA)', 92, '0000-00-00 00:00:00', 1),
(9845, 9563, 59, 5, 0, 'Currently working in Avasoft with 4 LPA,6 months in React Internship and the min Exp is 25K(3LPA)', 92, '0000-00-00 00:00:00', 1),
(9846, 9556, 59, 3, 0, 'Selected for React JS developer Profile', 92, '0000-00-00 00:00:00', 1),
(9847, 9554, 59, 5, 0, 'Not much with TxxampC Need time to confirm,Need to learn a lot will not sustain', 92, '0000-00-00 00:00:00', 1),
(9848, 9565, 59, 5, 0, 'Dropped Her parents are not allowing for the T.Nagar Location not joining', 85, '0000-00-00 00:00:00', 1),
(9849, 9566, 59, 4, 0, '5050 Profile Internal Team Reference,Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(9850, 9567, 59, 4, 0, '5050 Profile Internal Team Reference,Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(9851, 9568, 59, 5, 0, 'Up and down 60kms,min stipend exp is 8-10K,currently working in core field,sustainability doubts', 85, '0000-00-00 00:00:00', 1),
(9852, 9569, 59, 3, 0, 'Selected fr Syed Team ', 85, '0000-00-00 00:00:00', 1),
(9853, 9555, 59, 3, 0, 'Selected for Babu Team with PF', 85, '0000-00-00 00:00:00', 1),
(9854, 9552, 59, 5, 0, 'Looking for testing profile only ', 85, '0000-00-00 00:00:00', 1),
(9855, 9555, 89, 7, 0, 'shortlisted', 59, '2022-07-25 07:17:53', 1),
(9856, 9569, 57, 4, 0, 'candidate is ok , pls confirm the salary and joining date', 59, '2022-07-25 07:18:50', 1),
(9857, 9494, 59, 5, 0, 'thinking on TxxampC,Fresher not ready to sustain for a long may get marriage next year', 60, '0000-00-00 00:00:00', 1),
(9858, 9565, 16, 7, 0, 'Selected', 59, '2022-07-25 07:37:02', 1),
(9859, 9566, 16, 1, 0, NULL, 59, '2022-07-25 07:37:15', 1),
(9860, 9567, 16, 5, 0, '50 50 no idea', 59, '2022-07-25 07:37:26', 1),
(9861, 9569, 88, 7, 0, 'Selected for RE', 57, '2022-07-26 10:34:01', 1),
(9862, 9565, 88, 7, 0, 'Selected for RE', 16, '2022-07-26 10:37:37', 1),
(9863, 9565, 59, 5, 0, 'Dropped Her parents are not allowing for the T.Nagar Location not joining', 88, '2022-07-26 10:53:41', 1),
(9864, 9569, 59, 3, 0, 'Selected fr Syed Team ', 88, '2022-07-26 10:54:12', 1),
(9865, 9540, 59, 2, 0, 'Candidate not yet relieved from the company will take another 20 days time', 88, '2022-07-26 10:54:36', 1),
(9866, 9502, 13, 7, 0, 'ok 10k salary joining date confirm pannanum', 60, '0000-00-00 00:00:00', 1),
(9867, 9502, 59, 3, 0, 'Selected for Erode in Consultant role', 13, '2022-07-26 03:25:20', 1),
(9868, 9555, 88, 7, 0, 'Selected for RE', 89, '2022-07-26 04:05:13', 1),
(9869, 9587, 59, 5, 0, 'Communication Average too long distance not suitable will not sustain in a long run fresher ', 85, '0000-00-00 00:00:00', 1),
(9870, 9585, 59, 2, 0, 'Ready to relocate,Seems to be ok Candidate need time to give his confirmation on TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(9871, 9584, 59, 5, 0, 'Not Much good in skills not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(9872, 9575, 59, 5, 0, 'Not clear with the basics of Recruitment,Freaher Exp is some what more being a freaher will not sustin in a long run', 85, '0000-00-00 00:00:00', 1),
(9873, 9576, 59, 5, 0, 'Left without attending', 85, '0000-00-00 00:00:00', 1),
(9874, 9572, 59, 5, 0, 'Candidate thinking  on the Distance around 40Km sup and down will not sustain', 85, '0000-00-00 00:00:00', 1),
(9875, 9577, 59, 5, 0, 'Not open with TxxampC,Min Exp is 18K bring a fresher if he comes back with his confirmation let us try', 85, '0000-00-00 00:00:00', 1),
(9876, 9578, 59, 5, 0, 'Not ready to work in multiple roles not ready to take targets focusing only in the earnings,will not sustain', 85, '0000-00-00 00:00:00', 1),
(9877, 9545, 59, 4, 0, '5050 Profile need to open a lot kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9878, 9555, 59, 3, 0, 'Selected for Babu Team with PF', 88, '2022-07-26 06:03:52', 1),
(9879, 9545, 57, 1, 0, NULL, 59, '2022-07-26 07:28:01', 1),
(9880, 9574, 59, 5, 0, 'thinking on TxxampC Long run doubts on this profile not much strong with the skills\n', 60, '0000-00-00 00:00:00', 1),
(9881, 9581, 59, 2, 0, 'Need time to give his confirmation on the TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(9882, 9582, 59, 4, 0, 'have basic skills knowledge sustainability doubts as he may travel abroad Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9883, 9583, 59, 2, 0, 'Have Skills knowledge Parents are in Mumbai Need time to give his confirmation on TxxampC', 60, '0000-00-00 00:00:00', 1),
(9884, 9582, 27, 1, 0, NULL, 59, '2022-07-26 07:32:18', 1),
(9885, 9600, 59, 4, 0, 'Have Basic Skills Knowledge Can Be Trained Kindly Check And Let Me Know Your Interest', 85, '0000-00-00 00:00:00', 1),
(9886, 9599, 59, 4, 0, 'Have basic skills knowledge can be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(9887, 9597, 59, 3, 0, 'Selected for Node Js Profile final round interviewed by Gokul', 85, '0000-00-00 00:00:00', 1),
(9888, 9596, 59, 2, 0, 'have basic skills in Node JS,Sustainability doubts if he come back with TxxampC will check into it .Settled family long run doubts a lot', 85, '0000-00-00 00:00:00', 1),
(9889, 9592, 59, 5, 0, 'Fresher need to learn a lot 2nd round reject by Manikandan', 85, '0000-00-00 00:00:00', 1),
(9890, 9586, 59, 5, 0, 'Not much good in skills need time to confirm on TxxampC ', 85, '0000-00-00 00:00:00', 1),
(9891, 9594, 59, 5, 0, 'Being fresher Exp is high,already he received a offer for 10K but didnt join as he is expecting more', 85, '0000-00-00 00:00:00', 1),
(9892, 9598, 59, 4, 0, 'Fresher  need to be trained from the start kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9893, 9514, 60, 1, 0, NULL, 18, '2022-07-27 03:27:13', 1),
(9894, 9599, 27, 1, 0, NULL, 59, '2022-07-27 05:46:26', 1),
(9895, 9600, 27, 1, 0, NULL, 59, '2022-07-27 05:46:46', 1),
(9896, 9598, 27, 1, 0, NULL, 59, '2022-07-27 05:52:53', 1),
(9897, 9605, 59, 5, 0, 'Final round reject by Gokul Will not pick up', 85, '0000-00-00 00:00:00', 1),
(9898, 9604, 59, 4, 0, 'have basic skills seems can be trained kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9899, 9590, 59, 5, 0, 'Not much good wiht the Skills not suitable ', 85, '0000-00-00 00:00:00', 1),
(9900, 9405, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain not much comfort with TxxampC', 85, '0000-00-00 00:00:00', 1),
(9901, 9608, 59, 5, 0, 'Too long distance not much strong in basic skills will not run in a long ', 92, '0000-00-00 00:00:00', 1),
(9902, 9609, 59, 5, 0, 'Not open for Telesales not suitable', 92, '0000-00-00 00:00:00', 1),
(9903, 9611, 59, 5, 0, 'have internship Exp but no basic skills need to come back with his confirmation,if he comes back need to analyse and confirm again', 92, '0000-00-00 00:00:00', 1),
(9904, 9607, 59, 4, 0, 'Have Few months Exp but not in telecalling, Need to be trained 5050 on the long run kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9905, 9615, 59, 5, 0, 'Not much comfort with TxxampC no family need  is there ,will not sustain ina long run', 85, '0000-00-00 00:00:00', 1),
(9906, 9606, 27, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9907, 9619, 24, 4, 0, 'candidate selected for next round fresher', 85, '0000-00-00 00:00:00', 1),
(9908, 9618, 24, 4, 0, 'candidate okay for next round', 85, '0000-00-00 00:00:00', 1),
(9909, 9620, 59, 4, 0, 'Fresher bit attitude,Focus much on the Salary,Sustainability Doubts in a long run Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9910, 9601, 30, 4, 3, 'confirm the joining date and suggested ctc 16k for Esales profile mohan team', 60, '0000-00-00 00:00:00', 1),
(9911, 9618, 88, 7, 0, 'Selected for RE', 24, '2022-07-28 05:09:27', 1),
(9912, 9619, 88, 7, 0, 'Selected for RE', 24, '2022-07-28 05:09:51', 1),
(9913, 9618, 59, 3, 0, 'Selected for Suthagar Team in PF/ESI/PT,Fresher  Need to be trained,Check and approve in 7 days ', 88, '2022-07-28 05:16:38', 1),
(9914, 9619, 59, 3, 0, 'Selected for RE Suthagar Team with PF/ESI/PT  Fresher Need to analyse in 7 Days Training', 88, '2022-07-28 05:17:13', 1),
(9915, 9620, 31, 5, 1, 'not sustained in any job more than a year', 59, '2022-07-28 06:31:34', 1),
(9916, 9607, 57, 4, 0, 'candidate is ok , kindly confirm the joining date ', 59, '2022-07-28 06:34:46', 1),
(9917, 9622, 59, 5, 0, 'Very Worst Candidate no basic ideas not showing interest on the profile keep on using mobile in the interview', 60, '0000-00-00 00:00:00', 1),
(9918, 9601, 60, 1, 0, NULL, 30, '2022-07-28 07:06:02', 1),
(9919, 9610, 59, 5, 0, 'Thinking a lot on TxxampC requested time to give his confirmation,if he comes back need to have a technical round and check', 92, '0000-00-00 00:00:00', 1),
(9920, 9629, 59, 5, 0, 'Looking for Accounts profile,he is very clear with  the job change if he get any accounts postion', 85, '0000-00-00 00:00:00', 1),
(9921, 9623, 59, 5, 0, 'No ideas in the JS not clear with his studies not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(9922, 9631, 59, 5, 0, 'Not ideas with the skills,need to open a lot will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(9923, 9630, 59, 5, 0, 'not open with TxxampC Earlier he received 4 offers and didnt join due to SA only will not joinus and Sustain', 85, '0000-00-00 00:00:00', 1),
(9924, 9632, 59, 2, 0, 'Need to  come for the Task 2nd level', 85, '0000-00-00 00:00:00', 1),
(9925, 9633, 59, 5, 0, 'Need to leasrn a lot Career Gap sustinability doubts in long run', 85, '0000-00-00 00:00:00', 1),
(9926, 9634, 59, 5, 0, 'Left without attending', 85, '0000-00-00 00:00:00', 1),
(9927, 9635, 59, 2, 0, 'Have basic Skills Can be trained asked candidate to wait for final round but left without attending if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(9928, 9636, 59, 5, 0, 'No basic skills not suitable', 85, '0000-00-00 00:00:00', 1),
(9929, 9626, 59, 4, 0, 'Have some basic knowledge Can give a try kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(9930, 9621, 59, 5, 0, 'Not Ideas With The Skills, Not answering Need To Open A Lot Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(9931, 9628, 59, 4, 0, 'Have Parttime Calling Exp can be trained kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9932, 9637, 59, 4, 0, 'Have Exp in Field Sales no sustainability in his previous Exp Long run doubts kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(9933, 9638, 59, 3, 0, 'Selected for Syed Team - Staff Role\n', 60, '0000-00-00 00:00:00', 1),
(9934, 9638, 57, 4, 0, 'candidate is ok ,kindly confirm the joining date , thanks', 59, '2022-07-29 04:48:35', 1),
(9935, 9628, 89, 1, 0, NULL, 59, '2022-07-29 04:51:40', 1),
(9936, 9637, 86, 4, 0, 'Selected For Next Round', 59, '2022-07-29 04:59:37', 1),
(9937, 9626, 27, 1, 0, NULL, 59, '2022-07-29 05:05:33', 1),
(9938, 9604, 27, 1, 0, NULL, 59, '2022-07-29 05:20:27', 1),
(9939, 9638, 88, 7, 0, 'Selected for RE', 57, '2022-07-29 05:36:14', 1),
(9940, 9644, 56, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9941, 9643, 59, 5, 0, 'Not open with the TxxampC, No basic ideas in the Skills', 60, '0000-00-00 00:00:00', 1),
(9942, 9647, 59, 2, 0, 'Fresher Need to be trained, need time to confirm on the TxxampC', 60, '0000-00-00 00:00:00', 1),
(9943, 9645, 59, 3, 0, 'Selected for Staff Role  - Manikandan Team', 60, '0000-00-00 00:00:00', 1),
(9944, 9640, 59, 4, 0, 'Internal Reference Fresher Communication Sounds,5050 profiles, sustainability doubts ina long run Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9945, 9641, 59, 4, 0, 'Fresher have completed course in Designing, have basic skills in Designing can be trained ', 60, '0000-00-00 00:00:00', 1),
(9946, 9640, 88, 1, 0, NULL, 59, '2022-07-30 05:45:26', 1),
(9947, 9641, 27, 1, 0, NULL, 59, '2022-07-30 05:47:29', 1),
(9948, 9645, 86, 4, 0, 'Selected For Next Round', 59, '2022-07-30 06:13:08', 1),
(9949, 8908, 59, 5, 0, 'Holding multiple offers,will not sustain for a long', 85, '0000-00-00 00:00:00', 1),
(9950, 9580, 59, 5, 0, 'Left without attending the final round with gaurav sir,Have Exp in telecalling but no sustainability in the prevous Exp ,Eventhough tried but left without attending', 85, '0000-00-00 00:00:00', 1),
(9951, 9650, 59, 5, 0, 'Not open up no ideas in the basic skills not suitable', 85, '0000-00-00 00:00:00', 1),
(9952, 9651, 59, 5, 0, 'No basic skills Focusing much in Dot net not suitable', 85, '0000-00-00 00:00:00', 1),
(9953, 9656, 59, 5, 0, 'No ideas in Javascript,Long Run doubts 2nd round reject by Tamilmani', 85, '0000-00-00 00:00:00', 1),
(9954, 9657, 59, 5, 0, 'Worst Profile, no basic skills knowledge not open for the timings', 85, '0000-00-00 00:00:00', 1),
(9955, 9658, 59, 5, 0, 'Too Long Distance ,Not Ready To Relocate Looking For CAB Facilities', 85, '0000-00-00 00:00:00', 1),
(9956, 9659, 59, 5, 0, 'too Long Distance ,not ready to relocate looking for CAB facilities', 85, '0000-00-00 00:00:00', 1),
(9957, 9660, 59, 5, 0, 'No ideas in Javascript,just started learning Notice 30-40 days if he come back let us try for our Roles', 85, '0000-00-00 00:00:00', 1),
(9958, 9662, 59, 5, 0, 'No Communication Writing skills poor not suitable for our role', 85, '0000-00-00 00:00:00', 1),
(9959, 9645, 18, 7, 3, 'Selected for Mani Team. Fresher. Negotiate the salary. Shall join next monday', 86, '2022-08-01 03:27:45', 1),
(9960, 9637, 18, 5, 0, 'Not fit for sales', 86, '2022-08-01 03:28:48', 1),
(9961, 9661, 59, 5, 0, 'Not open up no basic ideas on the skills not suitable', 85, '0000-00-00 00:00:00', 1),
(9962, 9638, 59, 3, 0, 'Selected for Syed Team - Staff Role\n', 88, '2022-08-01 06:13:52', 1),
(9963, 9645, 60, 1, 0, NULL, 18, '2022-08-01 06:15:38', 1),
(9964, 9677, 14, 4, 0, 'Salary 10.5k need to check 2nd round', 85, '0000-00-00 00:00:00', 1),
(9965, 9666, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9966, 9670, 59, 2, 0, 'Communication Tamil only she preferred,Can be trained need to come back with her confirmation on the TxxampC, kindly check and update', 85, '0000-00-00 00:00:00', 1),
(9967, 9671, 59, 5, 0, 'Too long Distance no basic ideas in PHP Skills will not sustain for a long  not suitable', 85, '0000-00-00 00:00:00', 1),
(9968, 9669, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 85, '0000-00-00 00:00:00', 1),
(9969, 9667, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 85, '0000-00-00 00:00:00', 1),
(9970, 9668, 59, 3, 0, 'Selected for Syed Team  - Consultant Role', 85, '0000-00-00 00:00:00', 1),
(9971, 9673, 74, 7, 0, 'she is ok with the team fit for telesales....highly job need and fresher .............expected 10k ............immediate joining kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(9972, 9676, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9973, 9680, 13, 7, 0, 'Ok 10k Salary  Joining Date Confirm Pannanum', 85, '0000-00-00 00:00:00', 1),
(9974, 9677, 59, 2, 0, 'RNR', 14, '2022-08-02 03:07:52', 1),
(9975, 9683, 14, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9976, 9682, 59, 5, 0, 'Not Strong With The Basic Skills Too Long Distance Will Not Sustain In A Along Run', 85, '0000-00-00 00:00:00', 1),
(9977, 9681, 59, 5, 0, 'Not strong with the basic skills too long distance will not sustain in a along run', 85, '0000-00-00 00:00:00', 1),
(9978, 9679, 59, 4, 0, 'Fresher Have interest to learn can be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(9979, 9675, 44, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9980, 9685, 59, 3, 0, 'Selected for Santhosh Team, - Team will give a task and based on completion may get the increment', 85, '0000-00-00 00:00:00', 1),
(9981, 9667, 14, 7, 0, 'Selected kindly confirm joining date', 59, '2022-08-02 03:58:55', 1),
(9982, 9669, 14, 7, 0, 'Selected confirm joining date', 59, '2022-08-02 03:59:16', 1),
(9983, 9668, 57, 4, 0, 'Candidate is ok, kindly confirm the joining date and salary , ', 59, '2022-08-02 04:00:26', 1),
(9984, 9679, 27, 1, 0, NULL, 59, '2022-08-02 04:15:32', 1),
(9985, 9680, 59, 3, 0, 'Selected for Erode - Muthu Team - Consultant Role\n', 13, '2022-08-02 04:21:26', 1),
(9986, 9678, 74, 7, 0, 'she is ok with the team very talk active and fresher have laptop immediate joining expected 10k take home .......adaptive girl and highl job need kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(9987, 9654, 74, 7, 0, 'she is ok with the team ......salary expected 10k have laptop...........having tailoring class......so joining once chceck and confirm', 85, '0000-00-00 00:00:00', 1),
(9988, 9685, 71, 4, 0, 'Move to next round ', 59, '2022-08-02 04:56:07', 1),
(9989, 9685, 18, 7, 4, 'Selected for Santosh Team. Need one month notice to Join post offer. Salary package as discussed with you', 71, '2022-08-02 04:57:29', 1),
(9990, 9674, 13, 7, 0, 'ok 10k salary joining date  confirm pannanum', 85, '0000-00-00 00:00:00', 1),
(9991, 9667, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 14, '2022-08-02 06:24:13', 1),
(9992, 9669, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 14, '2022-08-02 06:24:39', 1),
(9993, 9678, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-08-02 07:02:20', 1),
(9994, 9673, 59, 3, 0, 'Selected for Thanjavur- Consultant Role', 74, '2022-08-02 07:03:26', 1),
(9995, 9654, 59, 5, 0, 'Dropped not interested much with telecalling and not interested in Target ', 74, '2022-08-02 07:15:08', 1),
(9996, 9693, 59, 5, 0, '5050 Profile Fresher Came Along With Friend Can Be Trained Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(9997, 9692, 59, 5, 0, 'Communication Average, No basic ideas in the recruitment ,will not sustain in a long run', 85, '0000-00-00 00:00:00', 1),
(9998, 9694, 59, 4, 0, '5050 Profile Fresher Came along with friend can be trained kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9999, 9696, 59, 5, 0, 'Not much good with the Skills fresher already attended and waiting for the final update from some other company,Sustainability doubts a lot ', 85, '0000-00-00 00:00:00', 1),
(10000, 9697, 59, 5, 0, 'Career Gap not shown interest towards the career inn between not much strong with the skills not suitable', 85, '0000-00-00 00:00:00', 1),
(10001, 9695, 59, 5, 0, 'Very Slow No basic Skills knowledge Not suitable', 85, '0000-00-00 00:00:00', 1),
(10002, 9688, 24, 5, 0, 'she no need for target related job. ', 85, '0000-00-00 00:00:00', 1),
(10003, 9685, 60, 1, 0, NULL, 18, '2022-08-03 12:51:51', 1),
(10004, 9668, 88, 7, 0, 'Selected for RE', 57, '2022-08-03 12:56:01', 1),
(10005, 9699, 59, 4, 0, 'Have basic knowledge can be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10006, 9674, 59, 3, 0, 'Selected for  erode - Muthu Team  - Consultant Role\n', 13, '2022-08-03 02:49:17', 1),
(10007, 9701, 59, 5, 0, 'Candidate was not showing interest  didnt share the required documents and not responding the calls\n', 85, '0000-00-00 00:00:00', 1),
(10008, 9699, 27, 1, 0, NULL, 59, '2022-08-03 06:09:03', 1),
(10009, 9694, 57, 1, 0, NULL, 59, '2022-08-03 06:11:02', 1),
(10010, 9701, 18, 7, 4, 'Selected for Santosh Team. Ravikumar Reference. Shall Join on Monday (15th) Kidnly negoitate the salary and discuss', 59, '2022-08-03 06:26:37', 1),
(10011, 9668, 59, 3, 0, 'Selected for Syed Team  - Consultant Role', 88, '2022-08-03 06:53:39', 1),
(10012, 9607, 88, 1, 0, NULL, 57, '2022-08-03 07:04:45', 1),
(10013, 9702, 59, 2, 0, 'Need to be trained Sustainability Doubt in a long run Need to come back with his confirmation if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10014, 9704, 59, 3, 0, 'Selected for Staff Role - Syed Team', 60, '0000-00-00 00:00:00', 1),
(10015, 9705, 59, 3, 0, 'Selected for Manikandan - Staff Role Document has been verified based on that we offered him 14%', 60, '0000-00-00 00:00:00', 1),
(10016, 9691, 86, 4, 0, 'Selected For Next Round', 60, '0000-00-00 00:00:00', 1),
(10017, 9691, 18, 7, 0, 'Selcected For Mani team. Offer 2.4 Package. Shall join around 15th', 86, '2022-08-04 01:17:42', 1),
(10018, 9705, 86, 4, 0, 'Selected For Next Round', 59, '2022-08-04 01:48:58', 1),
(10019, 9705, 18, 7, 0, 'Good Candiate. Can offer upto 4L after verifying his last package. Kindly negotiate', 86, '2022-08-04 02:31:02', 1),
(10020, 9704, 57, 4, 0, 'candidate is ok, joining date monday', 59, '2022-08-04 02:31:28', 1),
(10021, 9704, 88, 7, 0, 'Selected for RE', 57, '2022-08-04 03:01:00', 1),
(10022, 9703, 59, 2, 0, 'Communication ok can be trained but not open with Docu Submission,need to confirm  with his father', 85, '0000-00-00 00:00:00', 1),
(10023, 9706, 59, 5, 0, 'Candidate was not interested dropped ', 85, '0000-00-00 00:00:00', 1),
(10024, 9707, 59, 4, 0, 'Fresher can be trained kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10025, 9709, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10026, 9710, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10027, 9691, 60, 1, 0, NULL, 18, '2022-08-08 10:18:30', 1),
(10028, 9705, 60, 1, 0, NULL, 18, '2022-08-08 10:19:34', 1),
(10029, 9704, 59, 3, 0, 'Selected for Staff Role - Syed Team', 88, '2022-08-08 11:24:30', 1),
(10030, 9737, 14, 7, 0, 'Salary  10k fresher need to confirm once and confirm joining date', 92, '0000-00-00 00:00:00', 1),
(10031, 9738, 14, 7, 0, 'Salary  10k Fresher Need To Confirm Once And Confirm Joining Date', 92, '0000-00-00 00:00:00', 1),
(10032, 9700, 74, 7, 0, 'She is well profiled and highly suite for telesales and very professional.... completed MBA finance and married one baby 10month child....have bike and laptop also .... husband working in foreign and now she is in inlaw house so baby caring is from inlaw so she need to improve herself in carrier.....salary expected 12.5k......kindly check once and confirm immediately joining...', 85, '0000-00-00 00:00:00', 1),
(10033, 9717, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10034, 9718, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10035, 9740, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10036, 9720, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10037, 9570, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10038, 9719, 85, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10039, 9724, 85, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10040, 9721, 13, 5, 0, 'not suitable for tele sales', 92, '0000-00-00 00:00:00', 1),
(10041, 9722, 24, 5, 0, 'Candidate okay but she told discuss with family for this job.. so we want to rejected', 85, '0000-00-00 00:00:00', 1),
(10042, 9725, 59, 3, 0, 'Shanmugam team', 60, '0000-00-00 00:00:00', 1),
(10043, 9727, 74, 7, 0, 'She is ok with the team adaptive and job need also 1 sister married and brother doing 12th ......home to office 5mins travel only ....have laptop and expected 10k salary kindly check once and confirm ', 85, '0000-00-00 00:00:00', 1),
(10044, 9728, 74, 7, 0, 'She is ok with the profile and highly job need father working in aavin labour only have laptop and near by only office immediately joining kindly check once and confirm expected 10k only', 85, '0000-00-00 00:00:00', 1),
(10045, 9729, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10046, 9735, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10047, 9730, 59, 5, 0, 'Not much comfort with TxxampC  Will not sustain', 92, '0000-00-00 00:00:00', 1),
(10048, 9731, 59, 5, 0, 'Will not sustain for a long may get marry next year,also not comfort much with the TxxampC Salary', 92, '0000-00-00 00:00:00', 1),
(10049, 9737, 59, 3, 0, 'Selected for Consultant Role - Arumbakkam', 14, '2022-08-08 03:18:50', 1),
(10050, 9732, 59, 5, 0, 'Wil not sustain for a long not open much with TxxampC not suitable', 92, '0000-00-00 00:00:00', 1),
(10051, 9739, 59, 5, 0, 'Need to Relocate Fresher no basic skills family need is there if he come back let us try', 92, '0000-00-00 00:00:00', 1),
(10052, 9738, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 14, '2022-08-08 03:19:14', 1),
(10053, 9725, 44, 4, 1, 'Ji candidate ok for me need your Suggestion ', 59, '2022-08-08 03:19:42', 1),
(10054, 9706, 14, 7, 0, 'Salary 10k candidate ok need to confirm joining date', 59, '2022-08-08 03:21:01', 1),
(10055, 9707, 14, 1, 0, NULL, 59, '2022-08-08 03:21:28', 1),
(10056, 9706, 59, 5, 0, 'Candidate was not interested dropped ', 14, '2022-08-08 03:45:52', 1),
(10057, 9743, 59, 5, 0, 'Will not sustain in our domain fresher he was into core for 5 yrs not suitable ', 85, '0000-00-00 00:00:00', 1),
(10058, 9733, 74, 7, 0, 'She is ok with telesales highly voice active and job need ....father farmer have laptop and highly family financial issue...have laptop expected 10k kindly check once and confirm ', 85, '0000-00-00 00:00:00', 1),
(10059, 9708, 13, 7, 0, 'ok salary 10k  joining date confirm pannanum', 60, '0000-00-00 00:00:00', 1),
(10060, 9708, 59, 2, 0, 'Salary Exp is high being a fresher ave his own family business Sustainability Doubts min Exp is 12K\n', 13, '2022-08-08 06:17:19', 1),
(10061, 9700, 59, 3, 0, 'Selected for Consultant Role - Thanjavur Locaiton', 74, '2022-08-08 06:27:42', 1),
(10062, 9728, 59, 5, 0, 'Not going to join she is relocating back to native', 74, '2022-08-08 06:34:30', 1),
(10063, 9727, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-08-08 06:40:05', 1),
(10064, 9733, 59, 3, 0, 'Consultant role Thanjavur Loca ', 74, '2022-08-08 06:45:24', 1),
(10065, 9677, 59, 2, 0, 'Continuous RNR', 59, '2022-08-08 07:30:40', 1),
(10066, 9725, 29, 7, 3, 'RM, shanmugam team', 44, '2022-08-09 09:35:33', 1),
(10067, 9748, 59, 5, 0, 'Too long Distance almost 54kms up and down will not run in a long show', 85, '0000-00-00 00:00:00', 1),
(10068, 9759, 14, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10069, 9751, 14, 2, 0, 'Expecting high salary and asking one month time to join need to try this month last week', 85, '0000-00-00 00:00:00', 1),
(10070, 9752, 59, 4, 0, 'Fresher kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10071, 9757, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10072, 9758, 85, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10073, 9756, 85, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10074, 9753, 74, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10075, 9754, 74, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10076, 9755, 74, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10077, 9712, 59, 5, 0, 'Too long distance will not sustain and not  much suitable for this Role\n', 85, '0000-00-00 00:00:00', 1),
(10078, 9713, 59, 5, 0, 'Communication Managable but long distance sustainability doubts a lot not suitable', 85, '0000-00-00 00:00:00', 1),
(10079, 9716, 59, 5, 0, 'Long Distancenot open with telecalling looking for MIS but not much clear with the skills and will not sustian', 85, '0000-00-00 00:00:00', 1),
(10080, 9744, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10081, 9746, 59, 5, 0, 'Much focussed on Accounts position,will not handle our pressure', 85, '0000-00-00 00:00:00', 1),
(10082, 9747, 59, 5, 0, 'Too long Distance will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(10083, 9749, 59, 5, 0, 'Exp is high not much stable with his previous exp  not much comfort with TxxampC', 85, '0000-00-00 00:00:00', 1),
(10084, 9750, 59, 5, 0, 'Long Career Gap Fresher to this domain age around 32 wil not run in a long show', 85, '0000-00-00 00:00:00', 1),
(10085, 9725, 59, 3, 0, 'Shanmugam team', 29, '2022-08-09 08:56:55', 1),
(10086, 9701, 60, 1, 0, NULL, 18, '2022-08-10 10:13:30', 1),
(10087, 9763, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10088, 9764, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10089, 9762, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10090, 9760, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10091, 9766, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10092, 9770, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10093, 9770, 88, 7, 0, 'Selected for RE ...Ok  for 16.5K  to 17K net', 57, '2022-08-10 03:16:50', 1),
(10094, 9767, 85, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10095, 9781, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10096, 9780, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10097, 9774, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10098, 9775, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10099, 9778, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10100, 9770, 59, 3, 0, 'Selected for Syed Team ', 88, '2022-08-11 02:55:56', 1),
(10101, 9776, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10102, 9777, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10103, 9783, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10104, 9784, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10105, 9785, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10106, 9786, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10107, 9787, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10108, 9788, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10109, 9789, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10110, 9797, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10111, 9794, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10112, 9795, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10113, 9782, 88, 7, 0, 'Selected for RE', 89, '2022-08-13 01:09:17', 1),
(10114, 9799, 13, 5, 0, 'not suitable for tele sales', 85, '0000-00-00 00:00:00', 1),
(10115, 9752, 27, 1, 0, NULL, 59, '2022-08-16 10:13:32', 1),
(10116, 9782, 59, 5, 0, 'Candidate didnt turn back with his confirmation  not responding the calls\n', 88, '2022-08-16 11:43:03', 1),
(10117, 9807, 24, 5, 0, 'expecting high sal', 85, '0000-00-00 00:00:00', 1),
(10118, 9806, 59, 5, 0, 'Communication Average,have exp in non voice Much Focus on the salary Will not run in a long show', 85, '0000-00-00 00:00:00', 1),
(10119, 9805, 74, 7, 0, 'she is ok with the sales and team high job and expected 10k have laptop immediate joining kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(10120, 9804, 74, 7, 0, 'she is ok with the profile and fit for team travel time 45mins and high job need expected 10k and have laptop immediate joinig and kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(10121, 9810, 59, 3, 0, 'Have 3 Months Exp 5050 Can Be Trained Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(10122, 9803, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(10123, 9809, 93, 4, 0, 'Shortlisted communication is good already worked in bpo real estate sales and receptionist in hotel \nPrevious salary 18k \nAsking for the same we can negotiate with her i told hr will call you regarding same ', 60, '0000-00-00 00:00:00', 1),
(10124, 9809, 60, 1, 0, NULL, 93, '2022-08-16 03:53:16', 1),
(10125, 9810, 57, 4, 0, 'candidate ok , pls confirm joinig date , fresher', 59, '2022-08-16 08:38:53', 1),
(10126, 9827, 14, 7, 0, 'Salary 11k, please confirm the joining date', 85, '0000-00-00 00:00:00', 1),
(10127, 9827, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 14, '2022-08-17 12:43:48', 1),
(10128, 9835, 14, 7, 0, 'Fresher , salary 10k, need to confirm joining date', 85, '0000-00-00 00:00:00', 1),
(10129, 9823, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10130, 9824, 97, 4, 0, 'has 1yr exp in telecalling.. good convincing skill.. e-saleS-RM', 85, '0000-00-00 00:00:00', 1),
(10131, 9815, 97, 2, 0, 'has some Theoretical knowledge in  php....so SNR ..wants to complete the task ..', 85, '0000-00-00 00:00:00', 1),
(10132, 9832, 74, 5, 0, 'not fit for team and not suite for telesales high attitude', 85, '0000-00-00 00:00:00', 1),
(10133, 9835, 59, 2, 0, 'Need to give his confirmation', 14, '2022-08-17 02:26:25', 1),
(10134, 9810, 88, 7, 0, 'Selected for RE', 57, '2022-08-17 04:15:42', 1),
(10135, 9810, 59, 3, 0, 'Have 3 Months Exp 5050 Can Be Trained Kindly Check And Let Me Know Your Inputs', 88, '2022-08-17 04:17:29', 1),
(10136, 9822, 97, 5, 0, 'Average communication..... fresher to ui/ux designer but sal expt high ... long distance too', 85, '0000-00-00 00:00:00', 1),
(10137, 9839, 13, 7, 0, 'ok 10k salary immediate joining', 85, '0000-00-00 00:00:00', 1),
(10138, 9839, 59, 3, 0, 'Selected for Erode - Consultant Role', 13, '2022-08-17 05:42:43', 1),
(10139, 9836, 59, 4, 0, 'Fresher for our Sales,Need to be trained Got terminated from his previous Exp Sustainability doubts kindly check and let me  know your interest', 85, '0000-00-00 00:00:00', 1),
(10140, 9813, 59, 5, 0, 'Have a plan to go with full time masters just for an exp he is looking for job will not sustainxquot', 85, '0000-00-00 00:00:00', 1),
(10141, 9816, 59, 3, 0, 'Internship + Employment', 85, '0000-00-00 00:00:00', 1),
(10142, 9820, 59, 4, 0, 'Fresher can be trained 2nd round interviewed by Latha kindly check and let me know your inputs\n', 85, '0000-00-00 00:00:00', 1),
(10143, 9826, 59, 2, 0, 'Candidate need to get trained 2nd round interviewed by Kaviya,if candidate comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10144, 9831, 59, 2, 0, 'Final round interviewed by gokul profile on Hold candidate not seems to be much active', 85, '0000-00-00 00:00:00', 1),
(10145, 9811, 97, 5, 0, 'has 3m intern exp ... no job need...  Sustainability doubts..', 85, '0000-00-00 00:00:00', 1),
(10146, 9834, 97, 5, 0, 'Have Interested in  python  ... no stability mind.. ', 85, '0000-00-00 00:00:00', 1),
(10147, 9817, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10148, 9818, 97, 5, 0, 'has some Theoretical knowledge in reactjs... so sNR but not much good  technical round so rejected by kaviya..', 85, '0000-00-00 00:00:00', 1),
(10149, 9825, 59, 5, 0, 'Not much comfort with TxxampC need time to confirm if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10150, 9824, 29, 7, 0, 'For Esales RM', 97, '2022-08-17 07:11:33', 1),
(10151, 9836, 86, 5, 0, 'Not Satisfied', 59, '2022-08-17 07:17:30', 1),
(10152, 9820, 27, 1, 0, NULL, 59, '2022-08-17 07:18:20', 1),
(10153, 9849, 74, 7, 0, 'She is very talk active and well profile ......clear mindset for the job.......have laptop travel time one hour but very intresting candidate bcoz of she attent the interview is very well.....immediate joining 10 to 11 k expected kindly check once and confirm', 92, '0000-00-00 00:00:00', 1),
(10154, 9850, 74, 7, 0, 'she is ok and well profiled and very strong in process.........have laptop and expected 10k salary ......immediate joining kindly ceck and confirm once', 92, '0000-00-00 00:00:00', 1),
(10155, 9854, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10156, 9855, 74, 5, 0, 'unfit', 85, '0000-00-00 00:00:00', 1),
(10157, 9837, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10158, 9840, 59, 5, 0, 'Communication no,poor writing skills will not sustain and not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(10159, 9842, 59, 5, 0, 'No basic knowledge in skills,Need to get trained a lot ongoing with the class need time to get learn with technnologies if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10160, 9843, 59, 5, 0, 'No Basic Knowledge In Skills,Need To Get Trained A Lot Ongoing With The Class Need Time To Get Learn With Technnologies If He Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(10161, 9844, 59, 5, 0, 'No Basic Knowledge In Skills,Need To Get Trained A Lot Ongoing With The Class Need Time To Get Learn With Technnologies If He Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(10162, 9848, 59, 3, 0, 'Selected for Babu Team - staff Role', 85, '0000-00-00 00:00:00', 1),
(10163, 9847, 59, 5, 0, 'not open up much Family need is there need time to check with his brother and confirm, if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10164, 9841, 24, 5, 0, 'not suitable for telecalling sales', 85, '0000-00-00 00:00:00', 1),
(10165, 9856, 59, 5, 0, 'Need to open a lot not open with TxxampC Salary Exp is high not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(10166, 9852, 59, 5, 0, 'Not showing much interest on the jobs due to family pressure on the job he is looking for a job not much active', 85, '0000-00-00 00:00:00', 1),
(10167, 9857, 74, 5, 0, 'unfit', 85, '0000-00-00 00:00:00', 1),
(10168, 9853, 13, 7, 0, 'ok 10k salary joining date confirm pannanum immediate ah ok nu than sonnanga', 85, '0000-00-00 00:00:00', 1),
(10169, 9821, 13, 7, 0, 'ok,10k salary immediate joining call panni confirm pannanum', 60, '0000-00-00 00:00:00', 1),
(10170, 9821, 59, 5, 0, 'Manager rejected - Wrongly updated\n', 13, '2022-08-18 03:43:19', 1),
(10171, 9853, 59, 3, 0, 'Selected for Elite - Erode Location', 13, '2022-08-18 03:44:58', 1),
(10172, 9793, 59, 3, 0, 'Selected for React Internship cum employment', 85, '0000-00-00 00:00:00', 1),
(10173, 9851, 24, 5, 0, 'not suitable for sales', 85, '0000-00-00 00:00:00', 1),
(10174, 9848, 89, 7, 0, 'Shortlist candidate ', 59, '2022-08-18 06:13:31', 1),
(10175, 9867, 14, 7, 0, 'Salary 10 to 10.5k need to check once and confirm joining date', 85, '0000-00-00 00:00:00', 1),
(10176, 9867, 59, 3, 0, 'Selected for Arumbakkam  - Consultant Role', 14, '2022-08-19 11:12:36', 1),
(10177, 9864, 74, 7, 0, 'she is ok with the team very tal active and suite for team...........very poor family having 3 sibling ........mother working as a accounts 6k salary .............father passed.....already 6 months working in telesales .......have laptop.....travel time 45 min but highly job need......expected 11.5k kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(10178, 9861, 74, 7, 0, 'she is ok with the team very talk active and suite for team also arrange the laptop.....father in foreign and 2 brothers doing own business...........have no financial crises but social staus and independance for came to job...........well profile and english literature........expected 11.5k........already work in a telesales...good exposure and 9k previous salary kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(10179, 9860, 59, 5, 0, 'No communicaiton not open for Sales not suits for MIS roles will not sustain and handle our pressure\n', 85, '0000-00-00 00:00:00', 1),
(10180, 9865, 59, 5, 0, 'No Communication no basic ideas in Digital not suitable \n', 85, '0000-00-00 00:00:00', 1),
(10181, 9872, 24, 5, 0, 'not interested in sales.. discuss with family', 85, '0000-00-00 00:00:00', 1),
(10182, 9873, 24, 5, 0, 'he is not interested in sales', 85, '0000-00-00 00:00:00', 1),
(10183, 9877, 13, 7, 0, 'ok 10k salary,monday joining confirm pannanum', 85, '0000-00-00 00:00:00', 1),
(10184, 9876, 59, 2, 0, 'Will come for the final round Sarath Team', 92, '0000-00-00 00:00:00', 1),
(10185, 9875, 59, 2, 0, 'Will Come For The Final Round Sarath Team', 92, '0000-00-00 00:00:00', 1),
(10186, 9866, 59, 5, 0, 'Not much strong with thbasics in hiring,will not run in a long show Family need is not much Sustainability doubts', 85, '0000-00-00 00:00:00', 1),
(10187, 9871, 59, 5, 0, 'Final Round reject by Gokul Will not sustain not much active', 92, '0000-00-00 00:00:00', 1),
(10188, 9869, 59, 5, 0, 'up and down 34kms need time to confirm if he comes back let us try for React', 92, '0000-00-00 00:00:00', 1),
(10189, 9868, 13, 5, 0, 'not suitable for telesales', 92, '0000-00-00 00:00:00', 1),
(10190, 9870, 59, 5, 0, 'Not much open up even though asked her to wait for 2nd round but she left', 85, '0000-00-00 00:00:00', 1),
(10191, 8078, 59, 2, 0, 'Schedule the candidate for F2f', 92, '0000-00-00 00:00:00', 1),
(10192, 9861, 59, 3, 0, 'Selected for Thanjavur Location - Consultant Role,thinking a lot on the target ', 74, '2022-08-19 05:43:51', 1),
(10193, 9864, 59, 3, 0, 'Selected for Thanjavur Elite - Consultant Role', 74, '2022-08-19 05:49:49', 1),
(10194, 9874, 31, 4, 4, 'forwarded for 2nd round interview .  candidated expecting little higher package', 85, '0000-00-00 00:00:00', 1),
(10195, 9849, 59, 3, 0, 'Selected for Thanjavur  - Consultant Role - 1 hr travel need to check her sustainability', 74, '2022-08-19 06:04:32', 1),
(10196, 9850, 59, 3, 0, 'Selected for thanjavur Location - Consultant Role', 74, '2022-08-19 06:07:59', 1),
(10197, 9815, 97, 5, 0, 'not ok with our terms', 97, '2022-08-19 06:16:11', 1),
(10198, 9804, 59, 5, 0, 'Dropped  - Parents are not ok with the profile', 74, '2022-08-19 06:17:26', 1),
(10199, 9805, 59, 5, 0, 'Dropped  - Plan to go in the core domain', 74, '2022-08-19 06:19:27', 1),
(10200, 9848, 88, 7, 0, 'ok for RE', 89, '2022-08-19 06:34:26', 1),
(10201, 9877, 59, 3, 0, 'Selected for Erode - Muthu Team Consultant. Seems not much active need to check with her sustainability', 13, '2022-08-20 10:20:40', 1),
(10202, 9881, 59, 4, 0, 'have exp in MIS,Can give a try Familly commitment is there kindly check and give your inputs', 85, '0000-00-00 00:00:00', 1),
(10203, 9885, 59, 5, 0, '1 yr exp in uiux  and his current salary is 20KTH,Distance need to focus he is from Tambaram not open with TxxampC Will not sustain in a long run', 85, '0000-00-00 00:00:00', 1),
(10204, 9884, 59, 4, 0, 'No Communication can be trained kindly check and let me know your inputs', 92, '0000-00-00 00:00:00', 1),
(10205, 9892, 59, 5, 0, 'Communication ok Salary expectation is high being a fresher,holding 2 offers with Ramsol and six sigma,will not join and sustain with us focus much on the salary\n', 92, '0000-00-00 00:00:00', 1),
(10206, 9879, 59, 5, 0, 'No understanding capacity will not handle our pressure not openfor taking calls', 85, '0000-00-00 00:00:00', 1),
(10207, 9886, 59, 4, 0, 'Ready tp learn,family need is there communication very average kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10208, 9889, 13, 7, 0, 'Candidate have 4 years experience but in other field and his previous salary is 18000, And hear in CAFS we  fixed 12000 salary. Next 6 months if performance is Best means salary hike will be provide, comming Tuesday joining.', 60, '0000-00-00 00:00:00', 1),
(10209, 9889, 59, 3, 0, 'Selected for Erode- Muthu Team Consultant Role  Focus on the salary much family need is there', 13, '2022-08-20 03:31:17', 1),
(10210, 9887, 59, 4, 0, 'Fresher can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10211, 9888, 59, 5, 0, 'No  communication,have exp in Justdial Sales but not interested to go again,checked for other roles in operations but not open with TxxampC,will not handle the work pressure', 85, '0000-00-00 00:00:00', 1),
(10212, 9890, 59, 3, 0, '	Have Exp But No Sustainability In His Previous Exp,Bit Attitude Issue Internal Team Reference Salary Exp Is High Kindly Check And Let Me Know Your Inputs , Candidate submitted the fake document ,also he accepted the same.Need to analyse his performance  and decide the candidate in 7 days training', 85, '0000-00-00 00:00:00', 1),
(10213, 9890, 89, 7, 0, 'Shortlist candidate ', 59, '2022-08-20 04:28:16', 1),
(10214, 9890, 88, 7, 0, 'Selected for RE at Rs 14300/- take home', 89, '2022-08-20 04:55:51', 1),
(10215, 9890, 88, 7, 0, 'Selected for RE at Rs 14300/- take home', 88, '2022-08-20 05:28:54', 1),
(10216, 9848, 59, 3, 0, 'Selected for Babu Team - staff Role', 88, '2022-08-20 05:29:18', 1),
(10217, 9884, 98, 5, 0, 'very poor communication . has knowledge in Excel !', 59, '2022-08-20 06:42:34', 1),
(10218, 9887, 51, 5, 0, 'ok', 59, '2022-08-20 06:43:36', 1),
(10219, 9886, 98, 4, 0, 'Fresher - Interested to learn, good self confident  ,', 59, '2022-08-20 06:45:15', 1),
(10220, 9881, 98, 4, 0, 'checked his knowledge in MIS.\n50% ok with his communication .', 59, '2022-08-20 06:46:03', 1),
(10221, 9881, 60, 1, 0, NULL, 98, '2022-08-20 06:48:27', 1),
(10222, 9886, 60, 1, 0, NULL, 98, '2022-08-20 06:53:45', 1),
(10223, 9875, 51, 5, 0, 'ok', 59, '2022-08-20 07:03:13', 1),
(10224, 9875, 59, 4, 0, 'Fresher for our Sales can be trained kindly check and let me know your inputs', 59, '2022-08-20 07:03:13', 1),
(10225, 9876, 51, 5, 0, 'no', 59, '2022-08-20 07:03:59', 1),
(10226, 9876, 59, 4, 0, 'Fresher for our sales can be trained kindly check and let me know your inputs', 59, '2022-08-20 07:03:59', 1),
(10227, 9899, 59, 3, 0, 'Selected for Mutual fund Coordinator final round interviewed by Gokul', 60, '0000-00-00 00:00:00', 1),
(10228, 9894, 59, 5, 0, 'Need to open a lot not much good in skills theoritically says only practical but not seems to be ok.Given him time to learn  if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10229, 9898, 59, 5, 0, 'Looking only for Team lead profile 90 days notice ', 60, '0000-00-00 00:00:00', 1),
(10230, 9896, 59, 5, 0, 'no Communication not comfort with TxxampC Pushed him for sales but not much comfort will not sustain and handle our sales pressure', 60, '0000-00-00 00:00:00', 1),
(10231, 9897, 59, 5, 0, 'Not much active need time to confirm on txxampC Will not sustain in a long run', 60, '0000-00-00 00:00:00', 1),
(10232, 9895, 31, 4, 4, 'already have relevant experience in cold calling and selling insurance products', 60, '0000-00-00 00:00:00', 1),
(10233, 9901, 97, 5, 0, 'long distance ... Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(10234, 9906, 14, 7, 0, 'Salary 10.5k, need to confirm joining date', 85, '0000-00-00 00:00:00', 1),
(10235, 9906, 59, 3, 0, 'Selected for  Arumbakkam -  consultant role', 14, '2022-08-23 02:58:55', 1),
(10236, 9895, 29, 5, 0, 'Shortlisted, but he Didnxquott respond to any calls and sms, Donxquott hire him in future also ', 31, '2022-08-23 05:06:58', 1),
(10237, 9902, 59, 4, 0, 'Fresher can be trained kindly check and let me knwo your inputs', 60, '0000-00-00 00:00:00', 1),
(10238, 9904, 59, 5, 0, 'No Communication not suitable for MIS not open for Sales', 60, '0000-00-00 00:00:00', 1),
(10239, 9905, 59, 2, 0, 'Communication is Good Fresher can be trained  final round interviewed by gokul if he comes back let us confirm with his joinig', 60, '0000-00-00 00:00:00', 1),
(10240, 9902, 63, 1, 0, NULL, 59, '2022-08-23 08:16:00', 1),
(10241, 9874, 29, 7, 3, 'with experience and higher package, need to check in 1 month if Potential to work  for long term, else need to remove in 45 days', 31, '2022-08-24 09:48:02', 1),
(10242, 9912, 59, 5, 0, 'No basic ideas need to open a lot  will not sustain in our Roles', 85, '0000-00-00 00:00:00', 1),
(10243, 9913, 97, 5, 0, 'From trichy ...no job need and  he will not sustain..', 85, '0000-00-00 00:00:00', 1),
(10244, 9914, 59, 5, 0, 'Looking much for the inbound calls,Focus towards the media roles will not run in a long no bike and no laptop', 85, '0000-00-00 00:00:00', 1),
(10245, 9915, 97, 5, 0, 'From trichy....will not suit for our process... sal expt also high...', 85, '0000-00-00 00:00:00', 1),
(10246, 9916, 59, 5, 0, 'Seems not much to be active Pronunciation no seems to experienced pressure in his previous ,sustainability doubts ', 85, '0000-00-00 00:00:00', 1),
(10247, 9919, 59, 5, 0, 'Fresher Need to be trained but sustainability doubts he may get some reference and move out Long run doubts on this profile', 85, '0000-00-00 00:00:00', 1),
(10248, 9920, 59, 5, 0, 'Fresher Distance to be focused Need time to confirm on TxxampC Thinking a lot on TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10249, 9921, 59, 5, 0, 'Fresher 5050 profile processed for 2nd round but left without attending the interview ', 85, '0000-00-00 00:00:00', 1),
(10250, 9921, 59, 5, 0, 'Fresher 5050 profile processed for 2nd round but left without attending the interview ', 85, '0000-00-00 00:00:00', 1),
(10251, 9922, 59, 5, 0, 'fresher no basic ideas in the skills too long distance no JS/PHP Skills not suitable', 85, '0000-00-00 00:00:00', 1),
(10252, 9923, 59, 5, 0, 'Fresher No Basic Ideas In The Skills No JS/PHP Skills Not Suitable Not Open For TxxampC', 85, '0000-00-00 00:00:00', 1),
(10253, 9924, 59, 5, 0, 'Fresher No Basic Ideas In The Skills No JS/PHP Skills Not Suitable not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(10254, 9926, 59, 4, 0, 'fresher 5050 profile sustainability doubts,kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10255, 9925, 59, 5, 0, 'Fresher no basic ideas  in the skills she is clear that will focus on high pay positions ,EB in Amazon and looking for references too will not run in a long', 85, '0000-00-00 00:00:00', 1),
(10256, 9927, 59, 3, 0, 'Selected for Renewals - Health Insurance 5 yrs Exp', 85, '0000-00-00 00:00:00', 1),
(10257, 9917, 59, 3, 0, 'Selected for Manikandan Team - PF/ESI/PT', 85, '0000-00-00 00:00:00', 1),
(10258, 9926, 63, 1, 0, NULL, 59, '2022-08-24 07:31:47', 1),
(10259, 9917, 86, 4, 0, 'Selected For Next Round', 59, '2022-08-24 07:37:27', 1),
(10260, 9824, 59, 3, 0, 'Selected for ESales Karthika Team Consultant Role', 29, '2022-08-25 12:11:41', 1),
(10261, 9874, 59, 3, 0, 'Gaurav sir got appproval for the candidate from Suresh sir with the condition of giving 20K hike round of 6 LPA  if he achieve the target of 3.5L within Sept 2022', 29, '2022-08-25 12:14:45', 1),
(10262, 9909, 59, 5, 0, 'Fresher need to be trained almost 1 hr travel 5050 on TxxampC If he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10263, 9929, 59, 5, 0, 'No understanding ,Pronunciation not good No local Language Writing skills also not upto the mark as we expected not suitable will not handle our pressure\n', 85, '0000-00-00 00:00:00', 1),
(10264, 9932, 24, 5, 0, 'not suitable for Profile ', 85, '0000-00-00 00:00:00', 1),
(10265, 9933, 59, 5, 0, 'Communication is Good,Checked for MF but the salary exp is very high his last drawn MCTC 35K,Not open for Sales Calls not suitable', 85, '0000-00-00 00:00:00', 1),
(10266, 9934, 59, 5, 0, '30 days notice 1.10 months 2 companies and looking for 3rd one .Focusing only on the salary much,Will not sustain in a long run,also felt pressure with the previous Exp not suitable', 85, '0000-00-00 00:00:00', 1),
(10267, 9935, 59, 4, 0, '5050 profile no communication for recruitment,for Telecaller little doubtful on sustainability kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10268, 9936, 59, 4, 0, '5050 profile need to be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10269, 9937, 59, 4, 0, 'Fresher need to be trained no bike Laptop Yes 5050 Profile kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10270, 9931, 59, 5, 0, 'No stability in her previous Exp, Currently working and looking for opportunities just for salary growth will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(10271, 9937, 89, 1, 0, NULL, 59, '2022-08-25 06:36:50', 1),
(10272, 9935, 14, 1, 0, NULL, 59, '2022-08-25 06:52:09', 1),
(10273, 9936, 57, 1, 0, NULL, 59, '2022-08-25 07:00:11', 1),
(10274, 9938, 59, 5, 0, 'Communication ok fresher not open for TxxampC  not even for an year will not sustain', 85, '0000-00-00 00:00:00', 1),
(10275, 9939, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(10276, 9941, 59, 2, 0, 'Need to come back with his confirmation,5050 if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10277, 9940, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(10278, 9947, 59, 5, 0, 'not open for TxxampC,Fresher,Not much strong in the Skills', 85, '0000-00-00 00:00:00', 1),
(10279, 9948, 59, 5, 0, 'Looking for Java Openings he was into media earlier not suitable', 85, '0000-00-00 00:00:00', 1),
(10280, 9949, 59, 5, 0, 'Not open for outbound calls need to get in the networking profile not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(10281, 9951, 59, 5, 0, 'No Convincing Not showing interest towards the job,Focus only for collections will not sustain ina long run', 85, '0000-00-00 00:00:00', 1),
(10282, 9952, 59, 5, 0, 'Fresher not open for Internship and SA,Focus only on the salary will not sustain', 85, '0000-00-00 00:00:00', 1),
(10283, 9944, 97, 5, 0, 'will not suit for our process not open up..', 85, '0000-00-00 00:00:00', 1),
(10284, 9945, 97, 5, 0, 'NO Sustainabilites in previous companies..  he will not suit for telesales also.. ', 85, '0000-00-00 00:00:00', 1),
(10285, 9907, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10286, 9953, 59, 4, 0, 'Fresher need to open a lot 5050 kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10287, 8989, 60, 1, 0, NULL, 18, '2022-08-26 04:30:12', 1),
(10288, 9955, 59, 4, 0, 'Have basic knowledge in the UI UX skills can be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10289, 9946, 59, 3, 0, 'Selected for Syed Team - RE - Stsff role no previous Exp Documents, should check in 7 days', 85, '0000-00-00 00:00:00', 1),
(10290, 9953, 53, 1, 0, NULL, 59, '2022-08-26 07:34:38', 1),
(10291, 9946, 57, 4, 0, 'Candidate is ok , confirm the salary and joining date , ', 59, '2022-08-26 07:40:04', 1),
(10292, 9955, 69, 1, 0, NULL, 59, '2022-08-26 07:44:13', 1),
(10293, 9966, 24, 4, 0, 'Candidate selected 10k -15k expct.. monday joining', 85, '0000-00-00 00:00:00', 1),
(10294, 9969, 59, 5, 0, 'Fresher no basic ideas in the skills not much comfort in TxxampC Will not sustain', 85, '0000-00-00 00:00:00', 1),
(10295, 9968, 59, 5, 0, 'Too long distance will not run in a long 2nd reject by manikandan', 85, '0000-00-00 00:00:00', 1),
(10296, 9967, 59, 5, 0, 'Fresher his EB in IT Pune he is looking for positions through reference too long distance will not sustina', 85, '0000-00-00 00:00:00', 1),
(10297, 9965, 59, 5, 0, 'Fresher No Basic Ideas In The Skills Not Much Comfort In TxxampC Will Not Sustain need time to confirm', 85, '0000-00-00 00:00:00', 1),
(10298, 9964, 59, 5, 0, 'Looking only for the Salary growth no basic ideas he is from Core filed', 85, '0000-00-00 00:00:00', 1),
(10299, 9963, 59, 5, 0, 'No basic skills and need time to give his confirmation if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10300, 9962, 59, 4, 0, 'Fresher  5050  discussed for noth Arumbakam xxamp Tnagar do check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10301, 9961, 59, 5, 0, 'Looking for Java Profile and not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(10302, 9960, 59, 3, 0, '15 Days Free Intern then 5K for 5 month 8-12 for Employment', 85, '0000-00-00 00:00:00', 1),
(10303, 9959, 59, 4, 0, 'fresher have basic knowledge in UI UX kindly check and let me know your interest\n', 85, '0000-00-00 00:00:00', 1),
(10304, 9958, 59, 5, 0, 'Fresher Preparing for UPSCxxamp police jobs will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(10305, 9956, 59, 5, 0, 'Too long Distance ready to relocate but not much comfort in TxxampC Will not sustain and handle our work pressure', 85, '0000-00-00 00:00:00', 1),
(10306, 9966, 88, 7, 0, 'Selected for RE', 24, '2022-08-27 01:01:11', 1),
(10307, 9973, 59, 5, 0, 'Too long Distance not open with TxxampC Looking for Time being preparing UPSC', 85, '0000-00-00 00:00:00', 1),
(10308, 9971, 59, 5, 0, 'No basic skills in Flutter not much importance on job will not run in a long show', 85, '0000-00-00 00:00:00', 1),
(10309, 9972, 59, 5, 0, 'No ideas in the Mobile App Skills nust came along with his friend', 85, '0000-00-00 00:00:00', 1),
(10310, 9966, 59, 3, 0, 'Selected for Erode - Suthagar  - Staff Role', 88, '2022-08-27 01:47:00', 1),
(10311, 9946, 88, 7, 0, 'Shortlisted for RE', 57, '2022-08-27 02:58:00', 1),
(10312, 9974, 59, 4, 0, 'Fresher 5050Profile Open for TxxampC already attended lot of interviews and finally come down for TxxampC', 85, '0000-00-00 00:00:00', 1),
(10313, 9959, 69, 5, 0, 'Task  output is terrible', 59, '2022-08-27 07:12:24', 1),
(10314, 9962, 53, 1, 0, NULL, 59, '2022-08-27 07:16:47', 1),
(10315, 9974, 27, 1, 0, NULL, 59, '2022-08-27 07:32:22', 1),
(10316, 9917, 18, 7, 0, 'Selected for Mani Team. Asked 16K+ as take home . Ready to Join on 5th. He has not completed degeree. Kinldy release offer.', 86, '2022-08-29 12:51:57', 1),
(10317, 9917, 60, 1, 0, NULL, 18, '2022-08-29 01:18:28', 1),
(10318, 9890, 59, 3, 0, '	Have Exp But No Sustainability In His Previous Exp,Bit Attitude Issue Internal Team Reference Salary Exp Is High Kindly Check And Let Me Know Your Inputs , Candidate submitted the fake document ,also he accepted the same.Need to analyse his performance  and decide the candidate in 7 days training', 88, '2022-08-29 04:36:20', 1),
(10319, 9990, 59, 3, 0, 'Selected for Banu Team  - B2B role', 60, '0000-00-00 00:00:00', 1),
(10320, 9978, 59, 5, 0, 'Fresher need to be trained a lot left without attending the 2nd round 5050 ', 60, '0000-00-00 00:00:00', 1),
(10321, 9988, 59, 5, 0, '9 months to complete the graduation looking for Internship', 60, '0000-00-00 00:00:00', 1),
(10322, 9989, 59, 5, 0, '9 Months To Complete The Graduation Looking For Internship', 60, '0000-00-00 00:00:00', 1),
(10323, 9984, 59, 4, 0, 'Communication ok can be trained do check and let me know your inpputs', 60, '0000-00-00 00:00:00', 1),
(10324, 9982, 59, 4, 0, 'Fresher for UIUX Can be trained have skills knowledge kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10325, 9979, 59, 5, 0, 'Communication average,No basic Ideas in the recruitment,will not run in a long,sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(10326, 9983, 59, 5, 0, 'No Communication not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(10327, 9986, 59, 2, 0, 'Communication Ok Can be trained but long run doubts professional Cricket player if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10328, 9981, 59, 3, 0, 'Selected for Babu Team - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(10329, 9980, 59, 5, 0, '6 months Exp but not much good in Skills wil not sustain for a long not much suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(10330, 9985, 59, 3, 0, 'Selected for Manikandan Team in Staff Role', 60, '0000-00-00 00:00:00', 1),
(10331, 9987, 59, 5, 0, 'Communication Average Left without completing the task not suitable Drop', 60, '0000-00-00 00:00:00', 1),
(10332, 9990, 53, 7, 0, 'selected for b2B. Sal 15k CTC, pls cnfrm the DOJ', 59, '2022-08-29 07:27:26', 1),
(10333, 9984, 69, 4, 0, 'candidate Didnxquott turn up', 59, '2022-08-29 07:35:22', 1),
(10334, 9982, 69, 1, 0, NULL, 59, '2022-08-29 07:36:08', 1),
(10335, 9981, 89, 7, 0, 'Selected ', 59, '2022-08-29 07:40:34', 1),
(10336, 9985, 86, 4, 0, 'Selected For Next Round', 59, '2022-08-29 07:42:21', 1),
(10337, 9946, 59, 3, 0, 'Selected for Syed Team - RE - Stsff role no previous Exp Documents, should check in 7 days', 88, '2022-08-29 08:27:35', 1),
(10338, 9981, 88, 7, 0, 'Selected for RE', 89, '2022-08-30 09:40:00', 1),
(10339, 9990, 59, 3, 0, 'Selected for Banu Team  - B2B role', 53, '2022-08-30 10:43:26', 1),
(10340, 10002, 13, 5, 0, 'not suitable for telesales', 85, '0000-00-00 00:00:00', 1),
(10341, 10003, 57, 4, 0, 'candidate is ok . kindly confirm the joining date , ', 85, '0000-00-00 00:00:00', 1),
(10342, 9984, 54, 1, 0, NULL, 69, '2022-08-30 05:52:38', 1),
(10343, 10015, 59, 4, 0, 'Fresher have Designing Skills Can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10344, 10016, 59, 5, 0, 'Too long Distance(Maraimalainagar) No basic ideas in Javascript looking for Bank openings Not suitable', 60, '0000-00-00 00:00:00', 1),
(10345, 10014, 59, 5, 0, 'yet to complete her graduation not suitable', 60, '0000-00-00 00:00:00', 1),
(10346, 10013, 59, 5, 0, 'Seems not much active,no basic JS skills,will not run in long not suitable', 60, '0000-00-00 00:00:00', 1),
(10347, 9992, 59, 5, 0, 'Preparing for CMA, Focus much on CMA positions only in next 3 months exams Will not handle our Pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(10348, 9993, 59, 5, 0, 'no basic ideas in MIS, will not handle our pressure not suitable ', 60, '0000-00-00 00:00:00', 1),
(10349, 9996, 59, 5, 0, 'Fresher Stipend Exp is more, Just started learning  JS,Preferred to work in Java Profile Will not sustain she may get reference ,sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(10350, 9998, 59, 2, 0, 'Fresher can be trained no bike no laptop Sustainability doubts Need to check later', 60, '0000-00-00 00:00:00', 1),
(10351, 9999, 59, 4, 0, 'Fresher ,5050 profile have 1 month exp in Data Entry, Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10352, 9977, 59, 4, 0, 'Fresher, Salary Exp is high,Communication is Good,Family need is not there kindly check and give your inputs', 85, '0000-00-00 00:00:00', 1),
(10353, 9994, 59, 5, 0, 'Fresh for Recruiter role,Have Exp in Collections/Retentions tried for Renewals Calling but candidate is not interested, need time to give  his confirmation on TxxampC', 85, '0000-00-00 00:00:00', 1),
(10354, 9995, 97, 5, 0, 'has Non-Voice exp ..no idea about Recruiting...long distance too...no communication', 85, '0000-00-00 00:00:00', 1),
(10355, 9997, 97, 5, 0, 'from chengalpattu....not ready to relocate.. no basic skills in ui/ux', 85, '0000-00-00 00:00:00', 1),
(10356, 10000, 97, 5, 0, 'no communication ..prefer to talk in tamil.. no idea about mIS .. will not suit for our process', 85, '0000-00-00 00:00:00', 1),
(10357, 10001, 97, 5, 0, '3m of intern exp  .. not much good in ui/ux.... will not sustain ..', 85, '0000-00-00 00:00:00', 1),
(10358, 10004, 97, 5, 0, 'has some Knowledge in html, and CSS. moved to sNR. but he left middle of the interview.', 85, '0000-00-00 00:00:00', 1),
(10359, 10006, 97, 5, 0, 'no idea about ui/ux ... will not suit for our role', 85, '0000-00-00 00:00:00', 1),
(10360, 10011, 97, 5, 0, 'fresher sal expt too high long distance too..', 85, '0000-00-00 00:00:00', 1),
(10361, 10012, 59, 5, 0, 'Not Open with TxxampC,No local language will not suits in our work environment Salary exp is high,not suitable', 85, '0000-00-00 00:00:00', 1),
(10362, 10008, 59, 2, 0, 'Fresher have basic skills knowledge in backend also but prefer to work in Front End Can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10363, 10009, 59, 5, 0, 'Fresher Distance Need to see,No basic ideas in the skills not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(10364, 10010, 59, 5, 0, 'Fresher,have basic exp in Skills need to be trained a lot,2nd round reject by Kavya', 85, '0000-00-00 00:00:00', 1),
(10365, 10007, 74, 5, 0, 'unfit', 85, '0000-00-00 00:00:00', 1),
(10366, 10015, 69, 1, 0, NULL, 59, '2022-08-30 06:54:02', 1),
(10367, 9999, 57, 1, 0, NULL, 59, '2022-08-30 07:20:43', 1),
(10368, 9977, 69, 1, 0, NULL, 59, '2022-08-30 07:25:08', 1),
(10369, 10028, 59, 2, 0, 'Will come for a final round - Product Support,Can be trained ', 85, '0000-00-00 00:00:00', 1),
(10370, 10027, 97, 5, 0, 'not suit for telecalling ... no convincing skill...', 85, '0000-00-00 00:00:00', 1),
(10371, 10026, 59, 5, 0, 'Communication is Good, have a plan to travel abroad for the studies,willnot sustain more than 7 months', 85, '0000-00-00 00:00:00', 1),
(10372, 10025, 97, 5, 0, '1hr travel ...will not sustain in our role ', 85, '0000-00-00 00:00:00', 1),
(10373, 10024, 97, 5, 0, 'From ponneri 2hrs travel not ready to shifting.. not much good in html xxampcss', 85, '0000-00-00 00:00:00', 1),
(10374, 10023, 59, 5, 0, 'Fresher for IT,Career Gap Not much good in skills,not open with TxxampC Will not sustain for a long', 85, '0000-00-00 00:00:00', 1),
(10375, 10022, 59, 5, 0, 'have 3 months exp in Recruitment,no proper reasons for relieving,not open with TxxampC will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(10376, 10021, 97, 5, 0, 'from villupuram .. average in Convincing skills... will not sustain in our process', 85, '0000-00-00 00:00:00', 1),
(10377, 10020, 97, 5, 0, 'From villupuram .no idea about telecalling, not ok with sales..', 85, '0000-00-00 00:00:00', 1),
(10378, 10019, 59, 5, 0, 'Fresher 36kms up and down not open for TxxampC not much good in skills not suitable salary exp is high', 85, '0000-00-00 00:00:00', 1),
(10379, 10018, 59, 3, 0, 'Selected for Babu Team  - Staff Role', 85, '0000-00-00 00:00:00', 1),
(10380, 10018, 89, 7, 0, 'Selected ', 59, '2022-09-01 06:35:07', 1),
(10381, 10003, 88, 7, 0, 'Selected for RE', 57, '2022-09-01 06:47:31', 1),
(10382, 10018, 88, 7, 0, 'Selected for RE', 89, '2022-09-01 06:49:44', 1),
(10383, 9981, 59, 3, 0, 'Selected for Babu Team - Consultant Role', 88, '2022-09-01 07:42:37', 1),
(10384, 10018, 59, 3, 0, 'Selected for Babu Team  - Staff Role', 88, '2022-09-01 07:43:35', 1),
(10385, 10003, 59, 3, 0, 'Selected for Syed Team  - Staff Role', 88, '2022-09-02 12:48:28', 1),
(10386, 10035, 14, 7, 0, 'Fresher , salary 10.5k , need to confirm joining date ', 60, '0000-00-00 00:00:00', 1),
(10387, 10035, 59, 3, 0, 'Selected for Elite - Arumbakkam - Consultant role Need to analyse in 7 days of training', 14, '2022-09-03 10:08:54', 1),
(10388, 10037, 24, 2, 0, 'Sustainabilty doubt long distance and also not speaking well so Ramesh sir decide to hold this profile', 85, '0000-00-00 00:00:00', 1),
(10389, 10036, 59, 4, 0, 'Communication Ok,5050 on sustainability can be trained in the Renewals/MIS kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10390, 10039, 24, 5, 0, 'not suitable for us..', 60, '0000-00-00 00:00:00', 1),
(10391, 10047, 14, 7, 0, 'Fresher , 10.5k to 11k salary please confirm joining date', 60, '0000-00-00 00:00:00', 1),
(10392, 10040, 59, 2, 0, 'Fresher for our domain can be trained should come for final round this Monday(03/Sep/2022)', 85, '0000-00-00 00:00:00', 1),
(10393, 10042, 59, 5, 0, 'no basic skills  not suitable long career gap will not sustain\n', 85, '0000-00-00 00:00:00', 1),
(10394, 10047, 59, 3, 0, 'selected for Arumbakkam - Consultant Role', 14, '2022-09-03 03:28:46', 1),
(10395, 10033, 24, 5, 0, 'rejected not fit for us', 60, '0000-00-00 00:00:00', 1),
(10396, 10034, 24, 5, 0, 'not suitable..', 60, '0000-00-00 00:00:00', 1),
(10397, 10044, 97, 5, 0, 'not suit for our process .. no idea about mIS .. not open up', 85, '0000-00-00 00:00:00', 1),
(10398, 10045, 97, 5, 0, 'no communication, not open up. Career gap too', 85, '0000-00-00 00:00:00', 1),
(10399, 10043, 97, 5, 0, 'Good at html , css xxamp JS.. sustainbility doubts..\nso.. SNR To kavya  then 3rd round by tamilmani .. finally rejected by gokul..', 85, '0000-00-00 00:00:00', 1),
(10400, 10036, 98, 1, 0, NULL, 59, '2022-09-03 05:28:34', 1),
(10401, 10049, 59, 5, 0, 'Too Long Distance Fresher Will not sustain in our Roles', 85, '0000-00-00 00:00:00', 1),
(10402, 10064, 97, 4, 0, 'has one yr of exp in hathway bB sales... okay with process check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(10403, 10057, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', 85, '0000-00-00 00:00:00', 1),
(10404, 10051, 59, 3, 0, 'Selected for Arumbakkam -  Consultant Role', 85, '0000-00-00 00:00:00', 1),
(10405, 10052, 59, 5, 0, 'Aged Had his higher studies in Abroad,also his salary Exp is high', 85, '0000-00-00 00:00:00', 1),
(10406, 10068, 59, 5, 0, 'Communication ok Fresh to our domain,5050 profilebut she was not interested much in the profile', 85, '0000-00-00 00:00:00', 1),
(10407, 10048, 59, 5, 0, 'Not open for TxxampC also not comfort in timings not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(10408, 10065, 59, 5, 0, 'Fresher in UIUX Salary exp is Very high also not much comfort in TxxampC', 85, '0000-00-00 00:00:00', 1),
(10409, 10063, 59, 5, 0, 'No basic skills not suitable for our roles will not sustain\n', 85, '0000-00-00 00:00:00', 1),
(10410, 10062, 59, 5, 0, 'No basic ideas not suitable will not work it out for our Roles', 85, '0000-00-00 00:00:00', 1),
(10411, 10055, 59, 3, 0, 'Fresher Can be Trained have basic skills Final round interviewed by Gokul and selected', 85, '0000-00-00 00:00:00', 1),
(10412, 10054, 59, 4, 0, 'Fresher for UIUX Can be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10413, 10053, 59, 2, 0, 'Fresher Seems not much ok with TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10414, 10050, 59, 2, 0, 'Fresher Can be trained need some time to give his confirmation', 85, '0000-00-00 00:00:00', 1),
(10415, 10058, 59, 5, 0, 'Working in Byjuxquots Salary Ex p is 6 LPA Not suitable for our Roles Will not sustain\n', 85, '0000-00-00 00:00:00', 1),
(10416, 9985, 18, 7, 0, 'Selected for Mani Team. Kindly negotiate the package for the current salary. Ready to join in a week', 86, '2022-09-05 03:12:44', 1),
(10417, 10064, 89, 1, 0, NULL, 97, '2022-09-05 05:40:13', 1),
(10418, 10054, 69, 1, 0, NULL, 59, '2022-09-05 07:48:05', 1),
(10419, 10051, 14, 7, 0, 'Salary 11k, please confirm joining date', 59, '2022-09-05 07:49:16', 1),
(10420, 9473, 29, 7, 3, 'shanmugam team', 44, '2022-09-06 10:55:54', 1),
(10421, 9985, 60, 1, 0, NULL, 18, '2022-09-06 11:48:11', 1),
(10422, 10087, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10423, 10086, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10424, 10088, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10425, 10084, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10426, 10061, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10427, 10060, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10428, 10069, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10429, 10089, 59, 2, 0, '5050 Profile Distance need to check sustainability doubts if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10430, 10092, 59, 5, 0, 'Will not sustain have skills knowledge in designningleft her previous due to salary Exp ', 85, '0000-00-00 00:00:00', 1),
(10431, 10094, 59, 4, 0, '5050 Profile have exp in Inbound Calls much Looking for Senior Lead Roles kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10432, 10085, 59, 5, 0, 'No basic Skills,not suits for our Sales Got terminated in the last company not suitable', 85, '0000-00-00 00:00:00', 1),
(10433, 10081, 59, 5, 0, 'Looking for Java Profile', 85, '0000-00-00 00:00:00', 1),
(10434, 10080, 59, 5, 0, 'Looking for Java Profile', 85, '0000-00-00 00:00:00', 1),
(10435, 10079, 59, 2, 0, 'Need time to give her confirmation,Have Exp in Renewal Calls but no English communication if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10436, 10075, 59, 5, 0, 'No basic skills knowledge seems to be very slow not suitable', 85, '0000-00-00 00:00:00', 1),
(10437, 10074, 59, 5, 0, 'Have Exp for 10 months with 18K only HTML CSS  non knowledge in JS Not suitable Salary exp is high\n', 85, '0000-00-00 00:00:00', 1),
(10438, 10073, 59, 5, 0, 'Not open for Sales Calls and the customer Visit For CRM Role  age and the Exp not getting mapped', 85, '0000-00-00 00:00:00', 1),
(10439, 10072, 59, 5, 0, 'Fresher Sal Exp is high Nt much comfort in TxxampC Will not sustain', 85, '0000-00-00 00:00:00', 1),
(10440, 10093, 59, 2, 0, 'Need to come back woht his confirmation Gokul Interviewed in the final Round', 85, '0000-00-00 00:00:00', 1),
(10441, 10090, 59, 5, 0, 'Looking for Java Openings', 85, '0000-00-00 00:00:00', 1),
(10442, 10078, 59, 5, 0, 'Looking for JAva Profile', 85, '0000-00-00 00:00:00', 1),
(10443, 10076, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(10444, 10091, 86, 4, 0, 'Selected For Next Round', 85, '0000-00-00 00:00:00', 1),
(10445, 10094, 31, 5, 0, 'not fit for our industry', 59, '2022-09-06 07:43:46', 1),
(10446, 9473, 59, 3, 0, 'Selected for Shanmugam Team  - Staff Role', 29, '2022-09-07 10:37:30', 1),
(10447, 10037, 24, 5, 0, 'Rejected for sustainibilty doubt', 24, '2022-09-07 11:03:13', 1),
(10448, 10032, 59, 5, 0, 'Looking for Database Management No Communication not suitable', 85, '0000-00-00 00:00:00', 1),
(10449, 10071, 59, 4, 0, '5050 Profile have 10  months Exp in Telecalling Salary Exp is somewhat high kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10450, 10096, 59, 5, 0, 'Fresher  for UI UX Not much open with TxxampC,Waiting for the Inteview results with other 4 companies will not sustain', 85, '0000-00-00 00:00:00', 1),
(10451, 10097, 59, 3, 0, 'Selected for Manikandan Team  - Staff Role Commitment will be give by the manager on the day of joining\n', 85, '0000-00-00 00:00:00', 1),
(10452, 10098, 59, 2, 0, 'Fresher 5050 Can give a try for React Need time to confirm', 85, '0000-00-00 00:00:00', 1),
(10453, 10100, 59, 4, 0, 'Fresher have a career Gap 5050 profile kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10454, 10101, 59, 5, 0, 'Came Along with her sister Self Learning thinking a lot on TxxampC Need Time to check with her brother if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10455, 10102, 59, 5, 0, 'No basic skills in JS Not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(10456, 10103, 59, 5, 0, 'No basic skills not open for a long term not suitable', 85, '0000-00-00 00:00:00', 1),
(10457, 10104, 59, 5, 0, 'No Skills in JS only HTML CSS Will not sustain for a long in our roles', 85, '0000-00-00 00:00:00', 1),
(10458, 10105, 59, 5, 0, 'Fresher looking for Exp only will have some reference in the future will not run with us for a long', 85, '0000-00-00 00:00:00', 1),
(10459, 10106, 59, 5, 0, 'Came Along With Her Sister Self Learning Thinking A Lot On TxxampC Need Time To Check With Her Brother If She Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(10460, 10107, 59, 5, 0, 'too long Distance friends are working in React to get exp looking for Job he has reference too will not run in a long not suitable', 85, '0000-00-00 00:00:00', 1),
(10461, 10108, 59, 5, 0, 'No Communication  for our MIS Role not interested in Sales', 85, '0000-00-00 00:00:00', 1),
(10462, 10109, 59, 5, 0, 'Communication Average,Checked his writing skills not upto the mark,Will not sustain in our roles came along with his friend', 85, '0000-00-00 00:00:00', 1),
(10463, 10097, 86, 4, 0, 'Selected For Next Round', 59, '2022-09-07 07:18:40', 1),
(10464, 10071, 53, 1, 0, NULL, 59, '2022-09-07 07:20:16', 1),
(10465, 10100, 63, 1, 0, NULL, 59, '2022-09-07 07:24:29', 1),
(10466, 10091, 18, 7, 3, 'Selected for Mani Team. Negotiate for the same package and ready to join after notice period', 86, '2022-09-08 10:23:39', 1),
(10467, 10097, 18, 7, 0, 'Selected for Mani Team. Good Candidate. Can give 10% hike from current package but he expects 20% but give a target while negotiation it he demads more and can he shall join next week', 86, '2022-09-08 10:24:08', 1),
(10468, 10110, 59, 3, 0, 'Selected for Babu Team - consultant Role', 60, '0000-00-00 00:00:00', 1),
(10469, 10111, 59, 5, 0, 'Fresher not open for TxxampC ok with 1 yrs not more than ', 60, '0000-00-00 00:00:00', 1),
(10470, 10112, 59, 5, 0, 'Fresher not open for TxxampC,No basic skills too will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10471, 10117, 59, 3, 0, 'Selected for Santhosh Team  - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10472, 10116, 59, 3, 0, 'Selected for Babu Team inStaff Role', 60, '0000-00-00 00:00:00', 1),
(10473, 10124, 59, 4, 0, '5050 Profile sustainability doubts a lot in this profile Do check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10474, 10121, 59, 5, 0, 'Comfortable to work inJava Need time to confirm will not join and run in our roles for a long', 60, '0000-00-00 00:00:00', 1),
(10475, 10119, 59, 5, 0, 'No Communication no basic knowledge in the skills not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(10476, 10118, 59, 5, 0, 'Have Exp in CAMS,No Communication not suitable for our roles ', 60, '0000-00-00 00:00:00', 1),
(10477, 10120, 59, 5, 0, 'Fresher have Offers with Wipro Mindtree,since joining date is not yet confirmed looking for opportunities will not join and sustain with us\n', 60, '0000-00-00 00:00:00', 1),
(10478, 10122, 59, 5, 0, 'Fresher just started learning JS EB in infosys need time to confirm on the TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10479, 10123, 59, 5, 0, 'Too long distance 64kms up and down also not much strong in the basic skills Feels 3yrs too long and comfort to sign max 1.5 yrs not suitable\n', 60, '0000-00-00 00:00:00', 1),
(10480, 10051, 59, 3, 0, 'Selected for Arumbakkam -  Consultant Role', 14, '2022-09-08 03:53:14', 1),
(10481, 10126, 59, 5, 0, 'No basic skills very long careerGap Will not sustain and handle our pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(10482, 10125, 59, 2, 0, 'Given him the Task for UIUX Fresher can be trained once done with task will confirm ', 60, '0000-00-00 00:00:00', 1),
(10483, 10110, 89, 7, 0, 'Selected ', 59, '2022-09-08 04:07:22', 1),
(10484, 10116, 89, 7, 0, 'Selected ', 59, '2022-09-08 04:08:12', 1),
(10485, 10117, 71, 7, 0, 'Candidate ok ', 59, '2022-09-08 04:08:54', 1),
(10486, 10124, 86, 5, 0, 'Not Satisfied.', 59, '2022-09-08 04:10:01', 1),
(10487, 10117, 60, 1, 0, NULL, 71, '2022-09-08 04:18:37', 1),
(10488, 10091, 60, 1, 0, NULL, 18, '2022-09-08 04:53:56', 1),
(10489, 10097, 60, 1, 0, NULL, 18, '2022-09-08 04:55:41', 1),
(10490, 10110, 88, 7, 0, 'Selected for RE', 89, '2022-09-09 09:52:31', 1),
(10491, 10116, 88, 7, 0, 'Selected for RE at 17K take home', 89, '2022-09-09 09:52:53', 1),
(10492, 10116, 59, 3, 0, 'Selected for Babu Team inStaff Role', 88, '2022-09-09 10:39:32', 1),
(10493, 10110, 59, 3, 0, 'Selected for Babu Team - consultant Role', 88, '2022-09-09 10:39:59', 1),
(10494, 10139, 59, 5, 0, 'working in Java for 7 months good PAckage and looking for change only for Salary growth not suitable', 60, '0000-00-00 00:00:00', 1),
(10495, 10138, 59, 5, 0, 'Have Basic Skills Sustainability Doubts too long distance up  and down 60kms will not sustain', 60, '0000-00-00 00:00:00', 1),
(10496, 10133, 59, 3, 0, 'selected for Babu Team Consultant Role', 60, '0000-00-00 00:00:00', 1),
(10497, 10130, 59, 5, 0, 'Fresher Sal Exp is high need to be trained having Dog Kennel and focusing much on the same will not sustain in our roles\n', 60, '0000-00-00 00:00:00', 1),
(10498, 10134, 59, 3, 0, 'Selected for Kannan Team - consultant Role Need to analyse in the 7 days training', 60, '0000-00-00 00:00:00', 1),
(10499, 10136, 59, 2, 0, 'Fresher 5050 Need to check his sustainability need time to check with his father Family need is there if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10500, 10129, 59, 5, 0, 'Fresher Can be trained but her sister in react for 3 yrs Doubtful on the sustainability ', 85, '0000-00-00 00:00:00', 1),
(10501, 10135, 59, 5, 0, 'Internal Reference GK Sir,Too Long Distance Fresher 5050 sustainability left without attending the 2nd round', 85, '0000-00-00 00:00:00', 1),
(10502, 10142, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 85, '0000-00-00 00:00:00', 1),
(10503, 10137, 59, 2, 0, 'Fresher 5050 Need Time to check with his family if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10504, 10143, 59, 5, 0, 'Not much strong in the skills 30 days Notice Currently in Sutherland too long distance Not suitable', 85, '0000-00-00 00:00:00', 1),
(10505, 10144, 59, 5, 0, 'Not Much Strong In The Skills 30 Days Notice Currently In Sutherland Salary Exp min 16 K being Fresher will not sustain', 85, '0000-00-00 00:00:00', 1),
(10506, 10140, 59, 4, 0, '5050 Profile Family need is there Can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10507, 10141, 59, 4, 0, 'Fresher 5050 Can be trained Family need is there kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10508, 10142, 57, 4, 0, 'candidate is ok , she is have 3 years experience , kindly confirm the joining and salary ', 59, '2022-09-09 03:31:40', 1),
(10509, 10133, 89, 7, 0, 'Selected ', 59, '2022-09-09 03:33:05', 1),
(10510, 10142, 88, 7, 0, 'Selected for RE ', 57, '2022-09-09 03:35:34', 1),
(10511, 10133, 88, 7, 0, 'Selected for RE', 89, '2022-09-09 03:38:20', 1),
(10512, 10142, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 88, '2022-09-09 03:39:10', 1),
(10513, 10133, 59, 3, 0, 'selected for Babu Team Consultant Role', 88, '2022-09-09 03:40:27', 1),
(10514, 10140, 14, 1, 0, NULL, 59, '2022-09-09 05:01:10', 1),
(10515, 10141, 14, 1, 0, NULL, 59, '2022-09-09 05:03:44', 1),
(10516, 10147, 97, 4, 0, 'has more intersted in uiux .. average communication.. some knowledge in web designs.. check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(10517, 10147, 69, 1, 0, NULL, 97, '2022-09-10 11:35:40', 1),
(10518, 10149, 97, 5, 0, 'has one yr of exp in react as a trainee because of sal changing his job sal expt too high .. sustainbility doubts..', 85, '0000-00-00 00:00:00', 1),
(10519, 10150, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10520, 10151, 97, 5, 0, 'no understanding.. sal expt too high .long distance too', 85, '0000-00-00 00:00:00', 1),
(10521, 10152, 97, 5, 0, 'has 1m of intern exp because of his training performance they rejected..', 85, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(10522, 10153, 97, 5, 0, 'recently joined one org as ui/ux ..coz of sal releving ,, has freelancer exp in graphic des.. no idea about ui/ux.. not suit for our role', 85, '0000-00-00 00:00:00', 1),
(10523, 10154, 97, 5, 0, 'fresher .. has knowledege in html xxamp css .. recently got offer .. coz of sal .. not joined', 85, '0000-00-00 00:00:00', 1),
(10524, 10155, 97, 5, 0, 'beginer level in technical skills no idea about framewroks have to learn more..', 85, '0000-00-00 00:00:00', 1),
(10525, 10156, 97, 5, 0, 'no understanding ..beginer level in technical skills..will not suit for process ', 85, '0000-00-00 00:00:00', 1),
(10526, 10157, 97, 5, 0, 'has 6m exp in us it recruiter..because of health xxamp commitments looking for job change ..sal expt high will not sustain with us long run', 85, '0000-00-00 00:00:00', 1),
(10527, 10158, 97, 5, 0, 'long distance. his brother working 6yrs in react.. so he has some knowledege.. no understanding .. only know hindi  average in tamil.. xxamp looking job in core role also', 85, '0000-00-00 00:00:00', 1),
(10528, 10165, 59, 4, 0, '5050 Profile fresher Need to be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10529, 10165, 86, 5, 0, 'Not Satisfied', 59, '2022-09-12 12:30:31', 1),
(10530, 10163, 59, 5, 0, 'Dropped Candidate didnt respond the call got an update from Thinkfinity that the candidate was not interested in the profile\n', 60, '0000-00-00 00:00:00', 1),
(10531, 10163, 51, 1, 0, NULL, 59, '2022-09-12 12:45:31', 1),
(10532, 10164, 59, 2, 0, 'Fresher Need to be trained a lot ,Much Focus in Accounts Profiles Need time to confirm on this profile', 60, '0000-00-00 00:00:00', 1),
(10533, 10160, 59, 4, 0, 'Communication is Good, Open  for Content Writing Need to analyse the contient writing skills kindly check and let me know your interest ', 60, '0000-00-00 00:00:00', 1),
(10534, 10169, 59, 5, 0, 'Fresher for IT Have Exp in Sales Not open for Sales again Looking for IT only Wife working in IT Need time to confirm on the TxxampC with 3yrs SA, if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10535, 10166, 59, 5, 0, 'Not suitable Need to open a lot ,will not handle our sales Pressure Very clear that if ssiter refer any IT openings will move for that', 60, '0000-00-00 00:00:00', 1),
(10536, 10161, 59, 5, 0, 'Looking for Pressure Free Profile, Fresher Sustainability Doubts a lot', 60, '0000-00-00 00:00:00', 1),
(10537, 10159, 59, 5, 0, 'No Communication. Not ready to taking Calls Looking for MF,NISM certified but no basics knowledge about SIP/AMCxquots  Backend roles only she preferred,Not ready totake renewal calls again', 60, '0000-00-00 00:00:00', 1),
(10538, 10170, 59, 4, 0, 'Have Exp in Retails Sales nut not much aggressive in Sales very 5050 Profile ,Sustainability doubts kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10539, 10160, 69, 1, 0, NULL, 59, '2022-09-12 01:39:20', 1),
(10540, 10171, 59, 5, 0, 'From Chengalpet married looking for Admin Role Non Voice have exp in CSE,but not open for Sales Calls and not ready to handle the pressure', 60, '0000-00-00 00:00:00', 1),
(10541, 10172, 59, 5, 0, 'Need to open a lot not speaking will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10542, 10170, 86, 5, 0, 'Not Satisfied', 59, '2022-09-12 03:01:21', 1),
(10543, 10173, 59, 4, 0, 'Fresher for Digital Marketing,have a career gap  Seems 5050 for the profile Sustainability Doubts in the profile kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10544, 10173, 69, 1, 0, NULL, 59, '2022-09-12 03:03:11', 1),
(10545, 10176, 59, 5, 0, 'Not open for Target based profiles,her brother wont allow to work in Target based jobs also her brothers are there in singapore  and looking  for opportunities in their company she is very clear that will travel to singapore once every process is done will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(10546, 10175, 59, 4, 0, 'Fresher Communication is good Can be trained Kindly check and let me kbow your inputs for B2B', 60, '0000-00-00 00:00:00', 1),
(10547, 10175, 53, 1, 0, NULL, 59, '2022-09-13 11:08:40', 1),
(10548, 10179, 59, 5, 0, 'Communication ok,Freshernot much comfort to go  for the appointments and beyond the official timings too,Need time to confirm with his parents Will not sustain and distance around 34 kms up and down', 60, '0000-00-00 00:00:00', 1),
(10549, 10178, 59, 5, 0, 'Communication is Good Have 1yrs 2 months Exp in recruitment and her salary exp is very high,current is 31K and Exp is 35K', 60, '0000-00-00 00:00:00', 1),
(10550, 10177, 59, 5, 0, 'Have 8 months Exp in IT recruitment,Current Salary is 2.6LPA and her exp is min 18K - 20K TH  Will not sustain in our roles  ', 60, '0000-00-00 00:00:00', 1),
(10551, 10181, 59, 5, 0, 'No Communication have exp in non voice process No ideas in the Digital marketing will not sustain and not open for SAles profiles too', 60, '0000-00-00 00:00:00', 1),
(10552, 10180, 59, 5, 0, 'Age around 40 yrs toally into media field worked earlier in Sales during 2000-2006 Looking for Film Industry as a director will not sustain and handle our Roles', 60, '0000-00-00 00:00:00', 1),
(10553, 10182, 59, 5, 0, '10th Completed no proper sustainability in  the positons,fresher to our roles will not handle our sales long run doubts 5050 if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10554, 10185, 59, 3, 0, 'selected for GK Sir Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(10555, 10183, 59, 4, 0, 'Internal REference,Fresher for our sales sustainability doubts kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10556, 10184, 59, 4, 0, 'Internal REference,Fresher For Our Sales Sustainability Doubts Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(10557, 10185, 31, 7, 4, 'candidate okay   forwarded for 2nd round', 59, '2022-09-13 01:32:51', 1),
(10558, 10183, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-09-13 01:35:14', 1),
(10559, 10184, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-09-13 01:35:24', 1),
(10560, 10167, 24, 4, 0, 'Selected .. wednesday joining..  expect salary 15k', 60, '0000-00-00 00:00:00', 1),
(10561, 10167, 88, 7, 0, 'Selected for RE', 24, '2022-09-13 02:51:53', 1),
(10562, 10186, 59, 4, 0, 'Fresher Have a plan to  in LLB Family need Can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10563, 10186, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-09-13 03:03:18', 1),
(10564, 10185, 29, 7, 3, 'PC', 31, '2022-09-13 05:36:26', 1),
(10565, 10167, 59, 3, 0, 'Selected for Suthagar Team Staff Role ', 88, '2022-09-13 05:48:53', 1),
(10566, 10134, 59, 3, 0, 'Selected for Kannan Team - consultant Role Need to analyse in the 7 days training', 88, '2022-09-13 05:49:14', 1),
(10567, 10193, 59, 5, 0, 'Selected and offered him 192000 LPA being a fresher but the candidate is not comfortable with the pay and expects more long distance too', 60, '0000-00-00 00:00:00', 1),
(10568, 10194, 59, 3, 0, 'Selected for Shanmugam Team in Staff Role need to analyze in 7 days of training', 60, '0000-00-00 00:00:00', 1),
(10569, 10193, 89, 7, 0, 'Selected ', 59, '2022-09-14 11:55:40', 1),
(10570, 10194, 44, 7, 4, 'Candidate ok and discussed with gaurav also he said will check in first 7 days', 59, '2022-09-14 11:58:55', 1),
(10571, 10196, 59, 3, 0, 'Selected for Staff Role', 60, '0000-00-00 00:00:00', 1),
(10572, 10187, 59, 4, 0, 'Communication Good Have Exp in Sales Telecall biut not interested to go in the same,Discussed for MIS/Technical Support Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10573, 10187, 98, 1, 0, NULL, 59, '2022-09-14 12:39:06', 1),
(10574, 10197, 59, 4, 0, 'Fresher 5050 Can be trained in our roles open for Field Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10575, 10199, 59, 2, 0, '5050 profile much focus for Java openings For time being looking for other openings need to clear 2 arrear papers if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10576, 10196, 11, 7, 0, 'candidate ok for E sales .', 59, '2022-09-14 01:31:52', 1),
(10577, 10195, 59, 3, 0, 'Selected for ESales  - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10578, 10198, 59, 4, 0, 'Fresher 5050 Can Be Trained In Our Roles Open For Field Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(10579, 10195, 11, 7, 0, 'candidate selected for e SALES ', 59, '2022-09-14 01:45:05', 1),
(10580, 10194, 60, 1, 0, NULL, 44, '2022-09-14 02:42:28', 1),
(10581, 10193, 88, 7, 0, 'Selected for RE', 89, '2022-09-14 03:11:36', 1),
(10582, 10197, 57, 1, 0, NULL, 59, '2022-09-14 03:14:01', 1),
(10583, 10198, 57, 1, 0, NULL, 59, '2022-09-14 03:14:13', 1),
(10584, 10193, 59, 5, 0, 'Selected and offered him 192000 LPA being a fresher but the candidate is not comfortable with the pay and expects more long distance too', 88, '2022-09-14 04:08:54', 1),
(10585, 10196, 59, 3, 0, 'Selected for Staff Role', 11, '2022-09-14 04:39:41', 1),
(10586, 10195, 59, 3, 0, 'Selected for ESales  - Staff Role', 11, '2022-09-14 04:40:40', 1),
(10587, 10195, 29, 7, 3, 'for esales, need to check in 7 days and approve, 13k salary gross, can increase if oct and nov done 1 lac each, from dec 22 - 14k Gross salary ', 59, '2022-09-14 04:54:16', 1),
(10588, 10196, 29, 7, 2, 'For Esales, Need To Check In 7 Days And Approve, 13k Salary Gross, Can Increase If Oct And Nov Done 1 Lac Each, From Dec 22 - 14k Gross Salary ', 59, '2022-09-14 04:54:58', 1),
(10589, 10195, 59, 3, 0, 'Selected for ESales  - Staff Role', 29, '2022-09-14 05:46:03', 1),
(10590, 10196, 59, 3, 0, 'Selected for Staff Role', 29, '2022-09-14 05:46:39', 1),
(10591, 10205, 59, 4, 0, 'Fresher profile need to be trained 5050 kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10592, 10205, 16, 5, 0, 'Not Fit For Sale', 59, '2022-09-15 11:04:53', 1),
(10593, 10206, 59, 3, 0, 'Selected for Arumbakkam Location in consultant Role', 60, '0000-00-00 00:00:00', 1),
(10594, 10209, 59, 5, 0, 'Fresher for UI UX Have Exp in Ar Caller for 7 yrs Salary Exp is high Need time to confirm this profile', 60, '0000-00-00 00:00:00', 1),
(10595, 10204, 59, 5, 0, 'Much prefer to work in non voice process but no communication have 6 yrs in NGO based Govt project not suitable', 60, '0000-00-00 00:00:00', 1),
(10596, 10206, 14, 7, 0, 'Candidate ok for this profile need to check telephonic interview ', 59, '2022-09-15 12:17:42', 1),
(10597, 10203, 59, 3, 0, 'Selected for esales karthika team Consultant role', 60, '0000-00-00 00:00:00', 1),
(10598, 10203, 11, 7, 0, 'candidate ok for E sales ', 59, '2022-09-15 12:33:54', 1),
(10599, 10207, 59, 5, 0, 'final Round reject by gaurav sir she came along with her friend only 1 selected and her friend joined us on 19Sep Dhakshayinin\n\n', 60, '0000-00-00 00:00:00', 1),
(10600, 10207, 11, 7, 0, 'rejected .', 59, '2022-09-15 12:49:58', 1),
(10601, 10208, 59, 5, 0, 'Fresher 1 month he need to travel from Arakonnam only,Having Health issue plus vison sight problem sustainability in our role doubts not suitable', 60, '0000-00-00 00:00:00', 1),
(10602, 10210, 59, 5, 0, 'Candidate dropped Being a fresher Saalry Exp is very high and not ready to come down got another offer too', 60, '0000-00-00 00:00:00', 1),
(10603, 10210, 53, 7, 0, 'selected for b2b. 13k sal pls cnfrm doj\n', 59, '2022-09-15 01:11:25', 1),
(10604, 10211, 59, 3, 0, 'Selected for  Thiyagu team with PF/eSI/PT', 60, '0000-00-00 00:00:00', 1),
(10605, 10211, 16, 7, 0, 'Selected', 59, '2022-09-15 01:19:59', 1),
(10606, 10202, 59, 2, 0, 'Much Focused to work in non voice  nit stability in the previous Exp,will hold this profile need time to confirm', 60, '0000-00-00 00:00:00', 1),
(10607, 10212, 59, 4, 0, 'Not much suits for our role 5050 Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10608, 10212, 16, 5, 0, 'Not Fit For Sale', 59, '2022-09-15 01:45:15', 1),
(10609, 10214, 59, 3, 0, 'Selected for Santhosh Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(10610, 10214, 18, 7, 0, 'Selected for Santosh Team. Kindly negotialte the package and can give decent package as she is having experince on Insurnace', 59, '2022-09-15 04:35:15', 1),
(10611, 10163, 59, 5, 0, 'Dropped Candidate didnt respond the call got an update from Thinkfinity that the candidate was not interested in the profile\n', 14, '2022-09-15 04:57:48', 1),
(10612, 10211, 88, 7, 0, 'Selected for RE', 16, '2022-09-15 06:53:40', 1),
(10613, 10215, 59, 5, 0, 'no communication Poor understanding not suitable  for out Telecaller roles also very clear he will move out if he get a suitable opportunity in his design interest.We also checked for our UX design,Portfolio design not upto the mark as we expected will not sustain in our IT tole not suitable', 60, '0000-00-00 00:00:00', 1),
(10614, 10201, 59, 2, 0, 'Communication have exp in retail medical Sales bit worried with the Telesales Candidate need time to confirm  on the position, if she \ncomes back let us try', 60, '0000-00-00 00:00:00', 1),
(10615, 10218, 59, 5, 0, 'Fresher  not open for Sales No Communication Need time to think and confirm Looking for flexibility in timings and the salary', 60, '0000-00-00 00:00:00', 1),
(10616, 10219, 59, 5, 0, 'Fresher for our roles have exp as AR caller Married and have a 1yr kid not open for Voice process looking for Non voice and pressure free will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10617, 10211, 59, 3, 0, 'Selected for  Thiyagu team with PF/eSI/PT', 88, '2022-09-16 01:11:37', 1),
(10618, 10221, 59, 5, 0, 'Communication Average not much comfort to work in Pressure Too long Distance and not ready to relocate,not suitable Need to open a lot', 60, '0000-00-00 00:00:00', 1),
(10619, 10222, 59, 4, 0, '5050 Profile Communication Average,Sustainability Doubt Came along with Friend Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10620, 10223, 59, 4, 0, 'Communication ok Fresher Can be trained in our role kindly check and let me know your interest\n', 60, '0000-00-00 00:00:00', 1),
(10621, 10223, 14, 1, 0, NULL, 59, '2022-09-16 03:11:56', 1),
(10622, 10222, 14, 1, 0, NULL, 59, '2022-09-16 03:12:59', 1),
(10623, 10220, 59, 3, 0, 'Selected for Technical Support - 15K TH post 3 months based onperformance 18K Need to check for the SA', 60, '0000-00-00 00:00:00', 1),
(10624, 10203, 59, 3, 0, 'Selected for esales karthika team Consultant role', 11, '2022-09-16 06:44:56', 1),
(10625, 10207, 59, 5, 0, 'final Round reject by gaurav sir she came along with her friend only 1 selected and her friend joined us on 19Sep Dhakshayinin\n\n', 11, '2022-09-16 06:46:56', 1),
(10626, 10206, 53, 7, 0, 'selected for arumbakkam team, sal 11k take home. Monday joining', 14, '2022-09-17 10:08:01', 1),
(10627, 10227, 59, 4, 0, 'Communication  is Good have exp in insurance sales not open for sales again comfort in renewals can be trained kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10628, 10229, 59, 3, 0, 'Selected for Shanmugam sir Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(10629, 10230, 59, 3, 0, 'Selected for GK Sir Team Staff Role', 60, '0000-00-00 00:00:00', 1),
(10630, 10227, 98, 1, 0, NULL, 59, '2022-09-17 01:02:04', 1),
(10631, 10230, 31, 4, 4, 'candidate okay ', 59, '2022-09-17 01:04:19', 1),
(10632, 10225, 59, 5, 0, 'Not much strong in the basics skills also not comfort with the TxxampC Need time to check with her family if she comes back let us try\n', 60, '0000-00-00 00:00:00', 1),
(10633, 10228, 24, 5, 0, 'distance 22km... so not suitable for our timing.. so rejected', 60, '0000-00-00 00:00:00', 1),
(10634, 10226, 59, 2, 0, 'Communication No Have exp as DA,Focusing on the salary growth,not much confident to speak in english,hold and let us try later', 60, '0000-00-00 00:00:00', 1),
(10635, 10231, 59, 2, 0, 'Fresher for Recruitment Need to be trained Family need in not much required Father is in the Govt Highways,Need to check with Gokul and decide', 60, '0000-00-00 00:00:00', 1),
(10636, 10206, 59, 3, 0, 'Selected for Arumbakkam Location in consultant Role', 53, '2022-09-17 05:49:29', 1),
(10637, 10203, 59, 3, 0, 'Selected for esales karthika team Consultant role', 29, '2022-09-18 07:04:05', 1),
(10638, 10207, 59, 5, 0, 'final Round reject by gaurav sir she came along with her friend only 1 selected and her friend joined us on 19Sep Dhakshayinin\n\n', 29, '2022-09-18 07:06:54', 1),
(10639, 10185, 59, 3, 0, 'selected for GK Sir Team with PF/PT', 29, '2022-09-18 07:07:59', 1),
(10640, 10230, 29, 7, 3, 'RM - GK team, check in 7 days and approve', 31, '2022-09-19 10:36:15', 1),
(10641, 10216, 93, 4, 0, 'Shortlisted need to assign to Sathish sir fresher looking salary around 15k ', 60, '0000-00-00 00:00:00', 1),
(10642, 10217, 93, 7, 0, 'Shortlisted need to assign to Sathish Sir looking salary around 15k ', 60, '0000-00-00 00:00:00', 1),
(10643, 10216, 60, 1, 0, NULL, 93, '2022-09-19 11:25:54', 1),
(10644, 10217, 60, 1, 0, NULL, 93, '2022-09-19 11:26:34', 1),
(10645, 10238, 59, 3, 0, 'Selected for Recruiter Role Have 8 months Exp in IT,Can give a try,Final round interviewed by Gokul and got selected  15K TH 2yrs SA No document Submission', 60, '0000-00-00 00:00:00', 1),
(10646, 10235, 59, 5, 0, 'communication no not open up to speak in english no ideas in the profession to go sustainability doubts in our role,declined several offers based onthe salary,High Exp on Salary', 60, '0000-00-00 00:00:00', 1),
(10647, 10234, 59, 5, 0, 'No basic skills Need to learn a lot not comfortable with the pay need time to check and confirm', 60, '0000-00-00 00:00:00', 1),
(10648, 10230, 59, 3, 0, 'Selected for GK Sir Team Staff Role', 29, '2022-09-19 04:33:25', 1),
(10649, 10217, 60, 1, 0, NULL, 30, '2022-09-19 04:35:35', 1),
(10650, 10216, 60, 1, 0, NULL, 30, '2022-09-19 04:36:58', 1),
(10651, 10240, 59, 5, 0, 'No basic skills communication Average will not sustain in our roles not suitable ', 60, '0000-00-00 00:00:00', 1),
(10652, 10242, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(10653, 10242, 57, 4, 0, 'candidate is ok , pls confirm the salary and joining date , she is already 3yrs experience same domain , sound is good ,', 59, '2022-09-20 11:46:16', 1),
(10654, 10244, 59, 4, 0, 'Have xp but no sustainability in the previous exp Can give a try Too long Distance Up and down 50kms kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10655, 10244, 88, 1, 0, NULL, 59, '2022-09-20 12:03:10', 1),
(10656, 10210, 59, 5, 0, 'Candidate dropped Being a fresher Saalry Exp is very high and not ready to come down got another offer too', 53, '2022-09-20 12:03:48', 1),
(10657, 10245, 59, 5, 0, '19 yrs no Graduation 12 passed 1.2yrs 3 companies this is  the 4th one looking only for the salary growth Have 3 months exp in telecaller wiht 15K salary looking for a change just for the salary hike', 60, '0000-00-00 00:00:00', 1),
(10658, 10243, 59, 5, 0, 'Fresher cAreer Gap Need to train a lot Candidate need to speak focusing much with the non voice process', 60, '0000-00-00 00:00:00', 1),
(10659, 10247, 24, 5, 0, 'Not fit for sales..', 60, '0000-00-00 00:00:00', 1),
(10660, 10241, 59, 5, 0, 'Too long Distance up and down 70kms not ready to relocate Long Career Gap No sustainability in the previous exp will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(10661, 10248, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', 60, '0000-00-00 00:00:00', 1),
(10662, 10214, 60, 1, 0, NULL, 18, '2022-09-20 01:59:55', 1),
(10663, 10242, 88, 7, 0, 'Selected for RE', 57, '2022-09-20 06:24:48', 1),
(10664, 10254, 59, 4, 0, 'Fresher 12th Discontinued Need To Open A Lot Internal Team Referene Do Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(10665, 10253, 59, 4, 0, 'Fresher 12th discontinued Need to open a lot internal team referene do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10666, 10253, 88, 1, 0, NULL, 59, '2022-09-21 11:33:49', 1),
(10667, 10254, 88, 1, 0, NULL, 59, '2022-09-21 11:34:07', 1),
(10668, 10249, 59, 5, 0, 'Need to speak a lot  have exp in core Electrical for 3yrs fresher for Telecaller handling pressure doubt will not sustain', 60, '0000-00-00 00:00:00', 1),
(10669, 10251, 59, 5, 0, 'Not much in outbound calls have exp in non voice process not ok much with sales calls will not sustain', 60, '0000-00-00 00:00:00', 1),
(10670, 10250, 59, 5, 0, 'Looking much for inbound calls ave exp in non voice process Frequent Job Changes will not sustain and handle our pressure\n', 60, '0000-00-00 00:00:00', 1),
(10671, 10257, 59, 2, 0, 'Fresher  Have 4 months Exp in Networking,Looking for HR Recruitment Pursuing MBA  Correspondance Not much ok wiht TxxampC candidate\nNeed time to confirm', 60, '0000-00-00 00:00:00', 1),
(10672, 10255, 59, 2, 0, 'Having Exp in PF/ESI/PT  compliance only 4.2 yrs Exp in same company Mandatory 30 days notice  Salary Exp is min 23-24K TH\n', 60, '0000-00-00 00:00:00', 1),
(10673, 10256, 59, 5, 0, 'Very Slow open for non voice only will not handle and sustain our pressure lot of personal issue will not sustain for a long not suitable', 60, '0000-00-00 00:00:00', 1),
(10674, 10260, 59, 4, 0, 'Communication Good Fresher for our Roles can give a try 6-0 days notice, waiting for accenture interview sustainability Doubts kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10675, 10260, 98, 1, 0, NULL, 59, '2022-09-22 12:04:04', 1),
(10676, 10262, 59, 5, 0, 'Fresher for IT, No  basics skills in JS understanding is poor will not sustain in our roles and long run doubts .focus to work in Angular openings much', 60, '0000-00-00 00:00:00', 1),
(10677, 10259, 59, 5, 0, 'Counds Good Have basic skills knowledge candidate ok with TxxampC but his parents are not ok,If he comes back can give a try', 60, '0000-00-00 00:00:00', 1),
(10678, 10263, 59, 5, 0, 'Looking for Testing Profile no ideas in development fresher for IT Sounding very low will not sustain and handle our pressure', 60, '0000-00-00 00:00:00', 1),
(10679, 6643, 59, 5, 0, '3rd time he appear for the same position,no improvement not strong inthe basic skills Javascript will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(10680, 10264, 59, 2, 0, 'Communication Good Can give a try for POS,Have Exp in BDE in recruitment firm will schedule with Bharathi Axa Gajendra 2nd round interviewed by Gokul and move forwarded', 60, '0000-00-00 00:00:00', 1),
(10681, 10265, 59, 5, 0, 'Attitude issue Holding several offers and looking for more most preferred location to work is bangalore not ready to learn additional Skills on UI Development and not ready to stay more than an year', 60, '0000-00-00 00:00:00', 1),
(10682, 10266, 59, 2, 0, 'Fresher for Telecaller Sales 5050 Profile Came along with friend Sustainability Doubts Need to analyse in 7 days training will confirm once again the interest of the candidate and schedule her for the telephonic', 60, '0000-00-00 00:00:00', 1),
(10683, 10267, 59, 5, 0, 'Fresher no basic knowledge in Javascript Scheduled them for 2nd level but left without attending ', 60, '0000-00-00 00:00:00', 1),
(10684, 10268, 59, 5, 0, 'Fresher No Basic Knowledge In Javascript Scheduled Them For 2nd Level But Left Without Attending ', 60, '0000-00-00 00:00:00', 1),
(10685, 10269, 59, 5, 0, 'Fresher for IT, Not much strong in basic JS Skills,Looking for Direct Employment not much comfort in Internship Role,Need time to check with family on the TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10686, 10277, 59, 2, 0, 'Fresher need time to confirm with the parents if she comes back let us try can be trained', 60, '0000-00-00 00:00:00', 1),
(10687, 10278, 59, 5, 0, 'Too long distance around 40 kms up and down Looking much on the salary growth He was into civil earlier will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10688, 10279, 59, 5, 0, 'Looking for Dot Net Profile,Have reference in multiple companies and looking for some more', 60, '0000-00-00 00:00:00', 1),
(10689, 10285, 59, 2, 0, 'theoritcally ok Need to be trained a lot Need time to check with his brother on sustainability if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10690, 10287, 59, 5, 0, 'Fresher  Have Project Exp In HTML CSS No Javascript In Depth Theoritically Ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', 60, '0000-00-00 00:00:00', 1),
(10691, 10289, 89, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(10692, 10292, 89, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(10693, 10284, 59, 5, 0, 'Fresher  Have Project Exp In HTML CSS No Javascript In Depth Theoritically ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', 60, '0000-00-00 00:00:00', 1),
(10694, 10286, 59, 5, 0, 'Fresher  Have Project Exp In HTML CSS No Javascript In Depth Theoritically Ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', 60, '0000-00-00 00:00:00', 1),
(10695, 10283, 59, 5, 0, 'Fresher  Have Project Exp in HTML CSS No Javascript in depth Need to be trained a lot ,they need time to confirm on the TxxampC if they come back let us try', 60, '0000-00-00 00:00:00', 1),
(10696, 10290, 59, 5, 0, 'Left without attending', 60, '0000-00-00 00:00:00', 1),
(10697, 10294, 53, 7, 0, 'selected fir b2b, exp 15k as Take home, Having multiple company experience.', 60, '0000-00-00 00:00:00', 1),
(10698, 10285, 59, 5, 0, 'Fresher  Have Project Exp In HTML CSS No Javascript In Depth Theoritically Ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', 59, '2022-09-23 01:41:40', 1),
(10699, 10294, 59, 3, 0, 'Selected for B2b in consultant Role', 53, '2022-09-23 03:16:36', 1),
(10700, 10291, 59, 5, 0, 'Looking for Andriod /Java positions no ideas in the Flutter also need time to confirm on the positions he id interested', 60, '0000-00-00 00:00:00', 1),
(10701, 10242, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 88, '2022-09-23 03:35:33', 1),
(10702, 10271, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10703, 10280, 59, 4, 0, 'Fresher need to be trained a lot thinking a lot on TxxampC May travel to native,5050 Profile do check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10704, 10298, 59, 3, 0, 'Communication Is Good Not Sure On Making The Calls Currently As Asst Manager 5050 Profile Ctc Ok Can Give A Try Kindly Check And Let Me Know Your Inputs - - - -Selected for BDM Role - Sriram Sir Reporting', 60, '0000-00-00 00:00:00', 1),
(10705, 10298, 71, 4, 0, 'Candidate Selected ', 59, '2022-09-24 12:05:31', 1),
(10706, 10321, 59, 5, 0, 'Distance Neeed to see stating along with his brother should check with brother on TxxampC,Basics in React.He need time to confirm his interest on the profile ,also looking for some more stipend ', 60, '0000-00-00 00:00:00', 1),
(10707, 10323, 59, 2, 0, 'Communication is Good Fresher for our domain have exp in  calling activity can be trained candudate need time to think on his expectations 4.5 LPA Current due to night shift we suggested 3.5 LPA', 60, '0000-00-00 00:00:00', 1),
(10708, 10322, 59, 5, 0, 'No basic skills in PHP,have only Java Python Will not handle our pressure and sustain Given time to learn', 60, '0000-00-00 00:00:00', 1),
(10709, 10327, 59, 2, 0, 'Fresher Need to be trained not open for 2 yrs convicnced on 1 yrs but need to check with her family on TxxampC if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10710, 10328, 59, 5, 0, 'Comfort to work in non voice not ready to handle the pressure communication Average', 60, '0000-00-00 00:00:00', 1),
(10711, 10281, 74, 7, 0, 'she is well profiled talk active and fit for team also.........expected 10k take home and have laptop..immediate joining ..............but have some sustainability issue for looking for groom for marriage but not confirm looking only so cross check once.........but intrested candidate', 85, '0000-00-00 00:00:00', 1),
(10712, 10282, 74, 7, 0, 'she is ok with the team very attendive and talk active highly job need father farmer and expected 10k salary ......from orathanadu 45 mins travel....have laptop immediate joining.......kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(10713, 10288, 74, 5, 0, 'not fit for team and not that much professional', 85, '0000-00-00 00:00:00', 1),
(10714, 10293, 74, 5, 0, 'no voice clarity and high expectation', 85, '0000-00-00 00:00:00', 1),
(10715, 10281, 59, 3, 0, 'Selected for Thanjavur  - Consultant Role', 74, '2022-09-24 01:12:24', 1),
(10716, 10325, 59, 5, 0, 'Need to speak out looking for Non Voice Process will not handle the sales pressure', 60, '0000-00-00 00:00:00', 1),
(10717, 10282, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-09-24 01:13:56', 1),
(10718, 10324, 59, 3, 0, 'Selected for Kannan Team  - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(10719, 10280, 98, 1, 0, NULL, 59, '2022-09-24 01:32:39', 1),
(10720, 10324, 88, 7, 0, 'Selected for RE', 59, '2022-09-24 01:35:14', 1),
(10721, 10326, 59, 5, 0, 'Left without attending', 60, '0000-00-00 00:00:00', 1),
(10722, 10330, 59, 5, 0, 'Fresher For Our Sales,Have Real Estate Exp,But No Proof And No Clarity From The Candidate On Her Employment. she is performing part time beautician Focusing Only On The Salary And Not Ready To Negotiate ,Family Need Is There But Need To Open A Lot ,Will Not Handle Our Pressure', 60, '0000-00-00 00:00:00', 1),
(10723, 10331, 59, 5, 0, 'Fresher for our Sales,Have Real Estate Exp,but no proof and no clarity from the candidate on her employment.Focusing only on the salary and not ready to negotiate ,Family need is there but need to open a lot ,will not handle our pressue', 60, '0000-00-00 00:00:00', 1),
(10724, 10334, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(10725, 10333, 56, 4, 0, 'Selected for next round', 85, '0000-00-00 00:00:00', 1),
(10726, 10332, 56, 4, 0, 'Selected for next round', 85, '0000-00-00 00:00:00', 1),
(10727, 10319, 56, 5, 0, 'Looking for inside sales job', 85, '0000-00-00 00:00:00', 1),
(10728, 10310, 93, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10729, 10311, 56, 5, 0, 'he doesnxquott have same field experience but expecting 5lac ctc', 85, '0000-00-00 00:00:00', 1),
(10730, 10231, 59, 3, 0, '5 months Intern 7.5K then 2yrs SA 12-14K need to finalise', 59, '2022-09-26 10:50:12', 1),
(10731, 10341, 59, 3, 0, '	Have Exp In Sales,Can Be Trained Ready To Negotaite On The Salary Only Thing Is Distance Need To See Do Check And Let Me Know Your Interest - -Selected for  Shanmugam Team ,final round interviewed by gaurav and got selected', 60, '0000-00-00 00:00:00', 1),
(10732, 10341, 44, 7, 4, 'Candidate Ok For Me And Gaurav Also Please Do The Further Process', 59, '2022-09-26 11:40:29', 1),
(10733, 10346, 59, 4, 0, '5050 Much comfort to work in non voice family need is there and open to go with any profile sustainability doubts kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10734, 10346, 53, 5, 0, 'low voice , We suggested for arumbakkam branch but she s willing to join tnagar oly', 59, '2022-09-26 12:10:06', 1),
(10735, 8510, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10736, 10350, 59, 5, 0, 'No communication need to open a lot will not handle our Pressure and not clear with the opportunities she want to get in', 60, '0000-00-00 00:00:00', 1),
(10737, 10351, 59, 2, 0, 'Communication Average Can be trained fresher for recruitment 5050 Can give a try if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10738, 10352, 59, 5, 0, 'Dropped - Have Exp in B2B Sales and not looking for high Salary focusing only on the salary, processed him for  Bharathi Axa but didnt turn for interview not interested to get into sales', 60, '0000-00-00 00:00:00', 1),
(10739, 10353, 59, 3, 0, 'Selected for B2B consultant Role', 60, '0000-00-00 00:00:00', 1),
(10740, 10353, 53, 7, 0, 'selected pls cnfrm the salary nd DOJ', 59, '2022-09-26 01:28:28', 1),
(10741, 10354, 59, 5, 0, 'Fresher for our Sales Have Exp in B2B Medical Equipment Sales 33 yrs Too long Distance up and down 60kms sustainability doubts if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10742, 10348, 59, 3, 0, '5050 Have Exp In Collection Too Long Distance Can Check For Arumbakkam Sustainanbility Doubts Kindly Check And Let Me Know Your Inputs - - Selected for arumbakkam  consultant Role', 60, '0000-00-00 00:00:00', 1),
(10743, 10347, 59, 4, 0, '5050 Have Exp in Collection too long distance can check for Arumbakkam sustainanbility doubts kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10744, 10347, 53, 5, 0, 'having 1yr experience but she doesnt suit for telecalling. exp 15k', 59, '2022-09-26 03:33:16', 1),
(10745, 10348, 53, 7, 0, 'selected for arumbakkam branch. pls cnfrm sal and DOJ', 59, '2022-09-26 03:33:30', 1),
(10746, 10353, 59, 3, 0, 'Selected for B2B consultant Role', 53, '2022-09-26 05:46:00', 1),
(10747, 10348, 59, 3, 0, '5050 Have Exp In Collection Too Long Distance Can Check For Arumbakkam Sustainanbility Doubts Kindly Check And Let Me Know Your Inputs - - Selected for arumbakkam  consultant Role', 53, '2022-09-26 05:47:52', 1),
(10748, 10333, 30, 4, 3, 'Expected 28k and Previous salary 23k take home . As per company norms you finalize the ctc . Suggested 27k in hand', 56, '2022-09-26 05:48:01', 1),
(10749, 10332, 30, 4, 3, 'Confirm ctc and joining date', 56, '2022-09-26 05:48:28', 1),
(10750, 10355, 59, 3, 0, 'Selected for Internship cum Employment - 3months 7.5 K then 12-14K salary based on Performance  1yr employment SA', 60, '0000-00-00 00:00:00', 1),
(10751, 10356, 59, 5, 0, 'Left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(10752, 10341, 59, 3, 0, '	Have Exp In Sales,Can Be Trained Ready To Negotaite On The Salary Only Thing Is Distance Need To See Do Check And Let Me Know Your Interest - -Selected for  Shanmugam Team ,final round interviewed by gaurav and got selected', 44, '2022-09-26 07:21:23', 1),
(10753, 10345, 59, 3, 0, 'Selected For Internship Cum Employment - 5months 5K Then 8-12K Salary Based On Performance  3yr Employment SA', 60, '0000-00-00 00:00:00', 1),
(10754, 10342, 59, 5, 0, 'Have 1yr Exp and his current CTC 3LPA Exp 3.5-4 LPA and much looking for IT Domain need to learn additional skills will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10755, 10366, 59, 5, 0, 'Looking for Non Voice No Communicaiton Will not sustain and handle our pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(10756, 10369, 59, 4, 0, '5050 Have Exp in App Sales for 3 months can give a try and analyse in 7 days Bike can arrange Laptop he has kinldy check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10757, 10369, 86, 5, 0, 'Not Satisfied. ', 59, '2022-09-27 11:57:06', 1),
(10758, 10340, 59, 4, 0, 'Have Exp in Field Sales Can give a try have a career gap kinldy check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10759, 10340, 51, 5, 0, 'p', 59, '2022-09-27 12:33:56', 1),
(10760, 10370, 24, 5, 0, 'Voice not suitable for our profile', 85, '0000-00-00 00:00:00', 1),
(10761, 10368, 24, 4, 0, 'selected for next round expt 15k .. but told 10k to 13k', 85, '0000-00-00 00:00:00', 1),
(10762, 10372, 59, 5, 0, 'Fresher Ok with the caller profile,but need to confirm with the family on the position if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10763, 10375, 59, 4, 0, '5050 Profile have exp in jio mart Pressure handling doubts kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10764, 10375, 51, 5, 0, 'ol', 59, '2022-09-27 01:25:13', 1),
(10765, 10376, 59, 2, 0, 'Fresher Looking for Accounts Profile,Need to train a lot have knowledge in tally,will check and confirm ', 60, '0000-00-00 00:00:00', 1),
(10766, 10357, 59, 5, 0, 'Too long distance not ready to relocate around 68kms up and down Fresher will not sustain due to distance', 60, '0000-00-00 00:00:00', 1),
(10767, 10371, 59, 4, 0, 'Fresher only basic knowledge 5050 can give  a try kindly check and let me know your interest\n', 60, '0000-00-00 00:00:00', 1),
(10768, 10371, 27, 1, 0, NULL, 59, '2022-09-27 03:47:48', 1),
(10769, 10381, 59, 2, 0, 'Communication ok can give a try for POS caller profile,need to check with gajendra ,once done will let the candidate  know the status\n', 60, '0000-00-00 00:00:00', 1),
(10770, 10333, 60, 1, 0, NULL, 30, '2022-09-27 04:04:12', 1),
(10771, 10368, 88, 7, 0, 'selected for RE', 24, '2022-09-27 04:06:26', 1),
(10772, 10332, 60, 1, 0, NULL, 30, '2022-09-27 04:30:41', 1),
(10773, 10298, 18, 7, 4, 'Selected for BDM Profile. Can Give 4.5L CTC. Ready to Join on 1st Oct', 71, '2022-09-27 04:50:53', 1),
(10774, 10298, 60, 1, 0, NULL, 18, '2022-09-27 04:54:06', 1),
(10775, 10368, 59, 5, 0, 'Not interested to join She Dragged a lot for giving her confirmation  to our roles', 88, '2022-09-27 05:11:14', 1),
(10776, 10324, 59, 3, 0, 'Selected for Kannan Team  - Consultant Role', 88, '2022-09-27 05:11:34', 1),
(10777, 10379, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10778, 10380, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10779, 10380, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10780, 10358, 59, 3, 0, 'Selected for Sarath Team - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10781, 10358, 51, 4, 0, 'ok', 59, '2022-09-28 11:08:00', 1),
(10782, 10390, 59, 5, 0, 'Not open for Insurance domain  not suitable', 60, '0000-00-00 00:00:00', 1),
(10783, 10382, 59, 3, 0, 'Selected for Manikandan Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(10784, 10382, 86, 4, 0, 'Selected For Next Round', 59, '2022-09-28 11:50:40', 1),
(10785, 10391, 59, 3, 0, 'Communication sounds good can be trained fresher 2nd round interviewed by gokul and shortlisted for the recruiter role - Internship cum employment 2yrs SA 3 months Intern', 60, '0000-00-00 00:00:00', 1),
(10786, 10393, 59, 5, 0, 'Looking for Non Voice Process Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10787, 10397, 59, 3, 0, 'Selected for Shanmugam Team - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10788, 10397, 44, 4, 4, 'Ji candidate ok for me but he will join on nov month ', 59, '2022-09-28 01:15:01', 1),
(10789, 10384, 59, 5, 0, 'Dropped Candidate is not interested with the profile', 60, '0000-00-00 00:00:00', 1),
(10790, 10384, 53, 7, 0, 'having 8months experience in data entry field. will try, pls cnfrm the salary and DOJ.', 59, '2022-09-28 02:40:34', 1),
(10791, 10399, 59, 4, 0, '5050 Profile have only 6 months Exp Career Gap due to marriage proposals looking for the oportunites sustainability doubts in the long run kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10792, 10396, 59, 4, 0, 'Fresher for our Sales internal team reference frequent Job Changes Sustainability doubts on this profile kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10793, 10401, 59, 5, 0, 'communication sound s good but have an attitude issue will not sustain in our roles and long run doubts 2nd Round Rejected', 60, '0000-00-00 00:00:00', 1),
(10794, 10402, 59, 3, 0, 'Communication Sounds Good Can Be Trained Fresher 2nd Round Interviewed By Gokul And Shortlisted For The Recruiter Role - Internship Cum Employment 2yrs Sa 3 Months Intern', 60, '0000-00-00 00:00:00', 1),
(10795, 10403, 59, 3, 0, 'Communication Sounds Good Can Be Trained Fresher 2nd Round Interviewed By Gokul And Shortlisted For The Recruiter Role - Internship Cum Employment 2yrs Sa 3 Months Intern', 60, '0000-00-00 00:00:00', 1),
(10796, 10406, 59, 5, 0, 'Communication Average,Being Frehser Salary Exp is very high will not sustain in our roles not suitable', 60, '0000-00-00 00:00:00', 1),
(10797, 10395, 59, 2, 0, 'Communication is Good Have frequent Job Changes Sustainability Doubts on this profile Need to check with Bharati Axa', 60, '0000-00-00 00:00:00', 1),
(10798, 10394, 59, 3, 0, 'Selected for GK Sir Team with the commitment - Commitment - 1L Target in Oct,completes then 20K Net from Nov', 60, '0000-00-00 00:00:00', 1),
(10799, 10400, 59, 5, 0, 'No confidence to speak and much preferred to be in nonvoice and pressure Free Career Gap Will not sustain', 60, '0000-00-00 00:00:00', 1),
(10800, 10398, 59, 4, 0, 'Communication Average Have 7 yrs of Exp in Financial Pre/Post Dispersal can be trained kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10801, 10384, 59, 5, 0, 'Dropped Candidate is not interested with the profile', 53, '2022-09-28 05:34:39', 1),
(10802, 10399, 31, 5, 0, 'not interested in insurance selling', 59, '2022-09-28 05:51:54', 1),
(10803, 10398, 98, 1, 0, NULL, 59, '2022-09-28 06:25:26', 1),
(10804, 10394, 31, 4, 4, 'candidate okay', 59, '2022-09-28 06:27:51', 1),
(10805, 10396, 71, 5, 0, 'Not satisfied', 59, '2022-09-28 06:35:04', 1),
(10806, 10414, 59, 5, 0, 'very fresh candidate need to train a lot not open for TxxampC No basic skills knowledge', 60, '0000-00-00 00:00:00', 1),
(10807, 10382, 18, 7, 4, 'Selected for Mani Team Ready to Join on 11th. Can Give 16K Package as overall ctc', 86, '2022-09-29 11:26:20', 1),
(10808, 10408, 24, 5, 0, 'shexquots take own time for interview so sustainability doubt', 85, '0000-00-00 00:00:00', 1),
(10809, 10415, 97, 5, 0, 'no idea about telecalling, will not suit for our process', 85, '0000-00-00 00:00:00', 1),
(10810, 10417, 97, 5, 0, 'has some Knowledge in php. not Open up... Sustainability doubts. not ok with txxampc too', 85, '0000-00-00 00:00:00', 1),
(10811, 10421, 97, 5, 0, 'good at  skills but no stability ... her brother already working in IT., fresher sal expt high xxamp not ok with terms too. ', 85, '0000-00-00 00:00:00', 1),
(10812, 10392, 97, 4, 0, 'Sounds good .. married and have 9m baby. have exp in Non-Voice process .... ok with sales has some Knowledge in insurance. let you check and update your feedback...', 85, '0000-00-00 00:00:00', 1),
(10813, 10426, 97, 5, 0, 'doing course. one week more but already got offer for 15k.  focusing on salary. will not suit for our company', 60, '0000-00-00 00:00:00', 1),
(10814, 10423, 97, 5, 0, 'Hv Basic Skills, no stability mind .. focusing on sal. ', 85, '0000-00-00 00:00:00', 1),
(10815, 10430, 97, 5, 0, 'no understanding, has 8m exp as a graphic designer ..sal exp high .. Sustainability doubts..', 85, '0000-00-00 00:00:00', 1),
(10816, 10392, 14, 7, 0, 'Salary 10.5k need to confirm joining date', 97, '2022-09-29 02:48:33', 1),
(10817, 10424, 59, 5, 0, 'Fresher SCheduled him for 2nd round basic skills have knowledge not  open with TxxampC and left without attending the 2nd round', 85, '0000-00-00 00:00:00', 1),
(10818, 10392, 59, 5, 0, 'Dropped Not responding the calls and got an update from consultancy that she is not interested', 14, '2022-09-29 03:01:59', 1),
(10819, 10428, 59, 5, 0, 'Fresher SCheduled Him For 2nd Round Basic Skills Have Knowledge high CTC Exp 2nd round reject by gokul', 60, '0000-00-00 00:00:00', 1),
(10820, 10420, 59, 5, 0, 'No Communication no basic ideas in the skills will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10821, 10427, 59, 5, 0, 'Fresher for our roles no basic skills will not sustain and not suitable ', 60, '0000-00-00 00:00:00', 1),
(10822, 10413, 59, 5, 0, 'No Stability and no Sales Exp frequent job changes not suitable and will not sustain', 60, '0000-00-00 00:00:00', 1),
(10823, 10373, 59, 4, 0, 'Communication Average fresher for our Domain,5050 kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10824, 10419, 97, 5, 0, 'Left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(10825, 10422, 97, 5, 0, 'Left Without Attending The Interview', 60, '0000-00-00 00:00:00', 1),
(10826, 10373, 44, 1, 0, NULL, 59, '2022-09-29 05:45:15', 1),
(10827, 10394, 29, 7, 0, 'ok', 31, '2022-09-29 08:32:41', 1),
(10828, 10431, 59, 3, 0, 'Selected for RM Role,SAnthosh Team - STAFF ROLE - Have Exp In Sales But Not A Relevant One Can Be Trained ', 60, '0000-00-00 00:00:00', 1),
(10829, 10431, 71, 4, 0, 'Candidate selected ', 59, '2022-09-30 10:44:45', 1),
(10830, 10435, 59, 5, 0, '5050 Profile,seems to be slow have basic skills knowledge,long rund doubts 2nd round interviewed by kaviiya,Candidate need time to learn if she comes back after 2 months can be considered based on her learnings', 60, '0000-00-00 00:00:00', 1),
(10831, 10436, 59, 5, 0, 'Not strong with the skills she learnt, need to speak out, not much comfort with TxxampC Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10832, 10388, 59, 5, 0, 'Fresher Pressure handling no have knowledge in UIUX but want to get into Sales,too long distance up and down 78 kms sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(10833, 10437, 59, 5, 0, 'No basic Skllls,not much open with TxxampC,Need time to confirm also need to learn a lot', 60, '0000-00-00 00:00:00', 1),
(10834, 10441, 59, 3, 0, 'selected for PHP 3-5 months 10K Salary then 13K based on performance 2yrs SA', 60, '0000-00-00 00:00:00', 1),
(10835, 10440, 59, 5, 0, 'Fresher for IT Roles  have Exp in Non voice Looking only for the salary growth will not sustain ', 60, '0000-00-00 00:00:00', 1),
(10836, 10438, 59, 5, 0, 'Fresher no basic skills will not sustain and handle our  Roles not suitable', 60, '0000-00-00 00:00:00', 1),
(10837, 10439, 59, 5, 0, 'Fresher No Basic Skills Will Not Sustain And Handle Our  Roles Not Suitable', 60, '0000-00-00 00:00:00', 1),
(10838, 10397, 29, 7, 2, 'RM for shanmugam team, mid oct or nov joining', 44, '2022-09-30 04:33:33', 1),
(10839, 10358, 29, 7, 2, 'ok for RM, sarath team', 51, '2022-09-30 04:45:09', 1),
(10840, 10397, 59, 3, 0, 'Selected for Shanmugam Team - Staff Role', 29, '2022-09-30 05:47:44', 1),
(10841, 10394, 59, 3, 0, 'Selected for GK Sir Team with the commitment - Commitment - 1L Target in Oct,completes then 20K Net from Nov', 29, '2022-09-30 05:50:04', 1),
(10842, 10358, 59, 3, 0, 'Selected for Sarath Team - Staff Role', 29, '2022-09-30 05:51:04', 1),
(10843, 10448, 59, 4, 0, 'Have Exp in Calling Career Gap is there can give a try Bike he has no laptop 5050 check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10844, 10448, 86, 5, 0, 'Not Satisfied', 59, '2022-10-01 12:14:40', 1),
(10845, 10382, 60, 1, 0, NULL, 18, '2022-10-01 05:12:31', 1),
(10846, 9298, 60, 1, 0, NULL, 18, '2022-10-01 05:15:27', 1),
(10847, 10445, 59, 3, 0, '3-5 months 5K then 2.7 yrs Emp 10-12K Salary after intern - Fresher have basic skills and interested to learn final round by Gokul', 60, '0000-00-00 00:00:00', 1),
(10848, 10449, 59, 5, 0, 'Fresher for PHP no basic skills need to train a lot but salary exp is high and not open for T7C', 60, '0000-00-00 00:00:00', 1),
(10849, 10446, 59, 5, 0, 'Fresher not much strong in basic skills not open for TxxampC will not sustain', 60, '0000-00-00 00:00:00', 1),
(10850, 10447, 59, 5, 0, 'No basic ideas in PHP looking for Java C++', 60, '0000-00-00 00:00:00', 1),
(10851, 10451, 59, 5, 0, 'Too long Distance communication average and writing skills not upto the mark as we expected', 60, '0000-00-00 00:00:00', 1),
(10852, 10362, 59, 2, 0, 'Have basic knowledge and 6 months internship Exp but need to be trained a lot,2nd round interviewed by gokul and  given time to confirm his interest if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10853, 10455, 59, 5, 0, 'Fresher Handling work pressure doubtful will not sustain in long run  not suitable', 60, '0000-00-00 00:00:00', 1),
(10854, 10456, 59, 5, 0, 'Too long Distance ,not much comfort in TxxampC Need time to give his confirmation ,sustainability doubts a lot ', 60, '0000-00-00 00:00:00', 1),
(10855, 10457, 59, 5, 0, 'Too Long Distance ,Not Much Comfort In TxxampC Need Time To Give His Confirmation ,Sustainability Doubts A Lot If He Comes Back Can Give A Try', 60, '0000-00-00 00:00:00', 1),
(10856, 10458, 59, 2, 0, 'Have Basic knowledge in Skills need time to confirm his position in TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10857, 10459, 59, 5, 0, 'No basic skills not comfort in TxxampC need to learn a lot will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(10858, 10431, 18, 7, 3, 'Selected For Santosh Team. Immideate Joiner. Negotiate The Salary', 71, '2022-10-04 04:53:58', 1),
(10859, 10466, 59, 5, 0, 'Looking for Java openings', 60, '0000-00-00 00:00:00', 1),
(10860, 10465, 59, 5, 0, 'Have basic skills knowledge Fresher SAlary exp is high and not open with TxxampC also not comfort with 8-10K Salary', 60, '0000-00-00 00:00:00', 1),
(10861, 10463, 59, 4, 0, 'Fresher Have interest to learn can be trained  have basic skills kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10862, 10467, 59, 5, 0, 'No sustainability in his previous Exp much focused with non voice Career Gap  need to open a lot for our sales and Salary Exp is high', 60, '0000-00-00 00:00:00', 1),
(10863, 10464, 59, 5, 0, 'No basic skills too long distance  will not sustain in our roles for a long', 60, '0000-00-00 00:00:00', 1),
(10864, 10463, 27, 7, 0, 'Selected as a trainee with 8k salary per month and 3 years service agreement.', 59, '2022-10-05 04:26:14', 1),
(10865, 10431, 60, 1, 0, NULL, 18, '2022-10-06 02:55:44', 1),
(10866, 10469, 59, 3, 0, 'Selected for B2B - Consultant Role\nCommunication Ok Have Exp In Calling But Not A Relevant One Can Give A Try ', 60, '0000-00-00 00:00:00', 1),
(10867, 10484, 59, 5, 0, 'Fresher no basic skills knowledge relocation not sure he is from kanchipuram sustainability doubts in this profile need to learn a lot', 60, '0000-00-00 00:00:00', 1),
(10868, 10461, 59, 5, 0, 'Communication Average, Writing skills not up to the mark as we expected fresher for our roles personal family issue are there will not sustain in long run', 60, '0000-00-00 00:00:00', 1),
(10869, 10482, 59, 2, 0, 'Fresher,5050 profile can give a try sustainability doubts have basic knowledge in recruitment,father is chief chef in china', 60, '0000-00-00 00:00:00', 1),
(10870, 10478, 59, 5, 0, 'Looking for JAVA openings only\n', 60, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(10871, 10474, 59, 2, 0, 'Not much active too long Distance ,he says that can relocate but not sure on that,will not handle our work pressure and sustainability doubts,5050 if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10872, 10471, 59, 5, 0, 'Looking for ASP.Net profile', 60, '0000-00-00 00:00:00', 1),
(10873, 10476, 59, 2, 0, 'Communication Average but sounding good have Exp in policy bazaar for 9 months looking for MF roles only not open for Sales 5050 Can give a try,writing skills Average need to check with gokul and confirm', 85, '0000-00-00 00:00:00', 1),
(10874, 10476, 59, 2, 0, 'Communication Average but sounding good have Exp in policy bazaar for 9 months looking for MF roles only not open for Sales 5050 Can give a try,writing skills Average need to check with gokul and confirm', 60, '0000-00-00 00:00:00', 1),
(10875, 10480, 59, 5, 0, 'Not much active,will not handle our work  pressure will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(10876, 10477, 59, 2, 0, 'Have Basic skills in PHP have Exp for Few months Recently married and husband in singapore,need to check and confirm us for the TxxampC is she comes back let us try\n', 60, '0000-00-00 00:00:00', 1),
(10877, 10470, 59, 4, 0, 'Have a months exp in PHP,can be trained open for TxxampC need to be trained can give a try kindly check and let me know your inpts', 85, '0000-00-00 00:00:00', 1),
(10878, 10473, 59, 5, 0, 'Fresher have basic knowledge in JS ,5050 not much comfort with TxxampC 2nd round reject by manikandan', 85, '0000-00-00 00:00:00', 1),
(10879, 10472, 59, 4, 0, '5050 Profile Can give a try for PHP kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10880, 10481, 59, 4, 0, 'Have Exp in PHP,5050 for us can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10881, 10481, 59, 4, 0, 'Have Exp in PHP,5050 for us can give a try kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10882, 10469, 53, 7, 0, 'selected for b2b. pls cnfrm the salary and DOJ', 59, '2022-10-06 03:56:18', 1),
(10883, 10470, 27, 1, 0, NULL, 59, '2022-10-06 04:04:18', 1),
(10884, 10472, 27, 1, 0, NULL, 59, '2022-10-06 04:17:26', 1),
(10885, 10481, 27, 1, 0, NULL, 59, '2022-10-06 04:18:09', 1),
(10886, 10469, 59, 3, 0, 'Selected for B2B - Consultant Role\nCommunication Ok Have Exp In Calling But Not A Relevant One Can Give A Try ', 53, '2022-10-06 04:20:35', 1),
(10887, 10487, 59, 5, 0, 'No basic knowledge in skills from perambur need to train a lot no ideas in PHP/CRUD Will not sustain ', 60, '0000-00-00 00:00:00', 1),
(10888, 10485, 59, 4, 0, 'Communication ok fresher, can be trained kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10889, 10485, 11, 1, 0, NULL, 59, '2022-10-07 10:53:49', 1),
(10890, 10489, 59, 3, 0, 'Selected for B2B in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(10891, 10489, 53, 7, 0, 'selected for B2B. pls cnfrm the salary and DOJ', 59, '2022-10-07 11:06:27', 1),
(10892, 10493, 59, 5, 0, 'Communication ok fresher for recruitment Salary Exp is very high not open for TxxampC will not sustain ', 60, '0000-00-00 00:00:00', 1),
(10893, 10495, 59, 5, 0, 'Need to open Seems to be slow in learning No basic Skills knowledge have Internship Exp in Ingenuine but not answering not suitable', 60, '0000-00-00 00:00:00', 1),
(10894, 10496, 59, 5, 0, 'No basic ideas in skills,will not sustain in our roles and not suitable', 60, '0000-00-00 00:00:00', 1),
(10895, 10497, 14, 7, 0, 'Salary 10-10.5k . Need to confirm joining date', 85, '0000-00-00 00:00:00', 1),
(10896, 10497, 59, 3, 0, 'Selected for Arumbakkam,Fresher Can give a try Consultant Role', 14, '2022-10-07 12:09:29', 1),
(10897, 10502, 59, 5, 0, 'Not open for Stipend fresher for React,have internship in Sales force  min Exp being a fresher is  15K not ready to come down Will not sustain', 60, '0000-00-00 00:00:00', 1),
(10898, 10500, 59, 5, 0, 'Not open for Sales Calling and looking for support roles checked for Technical support but left without attending the 2nd level Current Salary is 30K\n', 60, '0000-00-00 00:00:00', 1),
(10899, 10499, 59, 5, 0, 'Looking for Non Voice No Communication', 60, '0000-00-00 00:00:00', 1),
(10900, 10475, 59, 5, 0, 'Fresher 5050 not much ok with the Skills Can give a try Discussed with Gokul on the same and dropped the profile,if he comes back after few more interviews let us decide this profile', 60, '0000-00-00 00:00:00', 1),
(10901, 10486, 59, 5, 0, 'Fresher have learnt skills from ingenuine,need to travel from tambaram,not much comfort with the TxxampC Need time to check  with her family and confirm if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10902, 10498, 59, 5, 0, 'Very fresher just learn basics in ingenuine,not much comfort with the fresher salary need time to check and confirm with her parents if she comes back let us try\n', 60, '0000-00-00 00:00:00', 1),
(10903, 10494, 59, 5, 0, 'Too long distance 1.30 min travel,no basic ideas in the skills not open for TxxampC not suitable', 60, '0000-00-00 00:00:00', 1),
(10904, 10489, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2022-10-07 02:48:16', 1),
(10905, 10504, 59, 4, 0, 'Have 3 months Agent Exp in Insurance, no fixed pay only commission based,Holds an IRDA Code,Need to inactive the same,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10906, 10504, 57, 1, 0, NULL, 59, '2022-10-07 03:05:10', 1),
(10907, 10501, 24, 5, 0, 'She is scared for Target so rejected', 85, '0000-00-00 00:00:00', 1),
(10908, 10521, 59, 2, 0, 'Only basic knowledge in the Designing skills need to train in Development, Given task if he completes and get back let us try,Long run with txxampC doubts a lot  ', 60, '0000-00-00 00:00:00', 1),
(10909, 10523, 59, 5, 0, 'Preferred to go in Java Openings since getting delay in getting ready to go for PHP,not much open with TxxampC,long run doubts he has plan to go with  own business too,will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(10910, 10533, 59, 5, 0, 'Looking for Non Voice Process no Communication', 60, '0000-00-00 00:00:00', 1),
(10911, 10526, 59, 5, 0, 'Have internship Exp in Java,his sister is also in Frontend earning around 45K in 1.5 yrs He need time to check with his family and confirm, but sustainability doubts a lot', 60, '0000-00-00 00:00:00', 1),
(10912, 10527, 59, 5, 0, 'Fresher did some projects in React,Had a course from GUVI spent around 60K and the salary Exp is min 20-25K not much comfort with TxxampC based on the salary if he comes back can give a try with our TxxampC', 60, '0000-00-00 00:00:00', 1),
(10913, 10531, 59, 5, 0, 'Not open for Sales Calls just looking for inbound and non voice Process,will not sustain and handle our pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(10914, 10468, 59, 5, 0, 'Fresher not much strong in the basic skills,Not answering much checked for technical round with Manikandan and got rejected ', 85, '0000-00-00 00:00:00', 1),
(10915, 10535, 14, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(10916, 10536, 59, 3, 0, '	Have Calling Exp In Sales Need To Check His Previous Exp Documents,5050 Profile Sustainability Doubts On This Profile,Need To Groom Them A Lot  Staff Role', 60, '0000-00-00 00:00:00', 1),
(10917, 10537, 59, 3, 0, 'selected for Thiyagu,internal reference,lond back candidate attended here and hot rejected by banu,we have processed again need to analyse and confirm in 7 days training alos the re was no proper documents of his previous Exp holds an IRDA certificate need to provide NOC or should close the certificate', 60, '0000-00-00 00:00:00', 1),
(10918, 10536, 16, 7, 0, 'Shortlisted for joining ', 59, '2022-10-08 01:33:33', 1),
(10919, 10537, 16, 4, 0, 'Shortlisted For Joining', 59, '2022-10-08 01:34:17', 1),
(10920, 10539, 59, 4, 0, 'Fresher, Too long Distance,Need to be trained a lot,internal reference do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10921, 10539, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-10-08 03:13:04', 1),
(10922, 10553, 59, 4, 0, 'Have Exp in Telecalling Worked in Justdial for 7 months,reasons for relieving was not clear,can give a try 5050 kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10923, 10552, 59, 4, 0, 'Communication ok have exp in Justdial for 7 months Can be trained in our domain, kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10924, 10452, 59, 3, 0, '8K Stipend,based on performance will get revised 3yrs SA,Need to analyse the candidate in 7 Days,Final round interviewed by Gokul and Selected', 60, '0000-00-00 00:00:00', 1),
(10925, 10550, 59, 3, 0, '5K Stipend,3yrs SA,10-12K post internship,2nd round interviewed by Gokul, Need to be finalised for React or Node', 60, '0000-00-00 00:00:00', 1),
(10926, 9589, 59, 5, 0, 'Left without attending the interview\n', 60, '0000-00-00 00:00:00', 1),
(10927, 10559, 59, 5, 0, 'Fresher for IT have exp as process Associate in HP his current salary is 25K Need time to give his confirmation on the TxxampC and the stipend if he comes back let us try.', 60, '0000-00-00 00:00:00', 1),
(10928, 10557, 59, 2, 0, 'Fresher have 3 months Exp in PHP,Need to be trained a lot Need time to confirm his opportunity in our PHP,will check with Sathish and confirm his employment later', 60, '0000-00-00 00:00:00', 1),
(10929, 10558, 14, 7, 0, 'salary 10k freasher kindly confirmed joining date', 60, '0000-00-00 00:00:00', 1),
(10930, 10488, 24, 4, 0, 'Candidate selected for next round.. Exp sal 10k to 12k', 60, '0000-00-00 00:00:00', 1),
(10931, 10552, 31, 4, 4, 'worked 7 months with Justdial', 59, '2022-10-10 03:29:03', 1),
(10932, 10553, 53, 1, 0, NULL, 59, '2022-10-10 03:38:17', 1),
(10933, 10488, 88, 7, 0, 'Selected for RE', 24, '2022-10-10 06:15:40', 1),
(10934, 10488, 59, 3, 0, 'Selected for Suthagar Team - Staff Role', 88, '2022-10-10 09:24:54', 1),
(10935, 10574, 59, 3, 0, '	Have Exp In B2b Sales Communication Is Ok Fresh For Our Sales Can Be Trained Kindly Check And Let Me Know Your Inputs Sir - Selected for GK sir Team  - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10936, 10552, 29, 1, 0, NULL, 31, '2022-10-11 02:51:39', 1),
(10937, 10580, 59, 4, 0, 'have Exp in Calling Can be trained ,open for B2B kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10938, 10578, 59, 3, 0, '	Have Exp In Calling Fresher For Our Domain,Can Give A Try Kindly Check And Let Me Know Your Inputs - selected for Syed Team in Staff ROle', 85, '0000-00-00 00:00:00', 1),
(10939, 10577, 59, 2, 0, 'Have Exp In Telecalling Asked Them To Wait For 2nd Round With Banu But Left Without Attending ', 85, '0000-00-00 00:00:00', 1),
(10940, 10576, 59, 2, 0, 'Have Exp in Telecalling Asked them to wait for 2nd round with banu but left without attending ', 85, '0000-00-00 00:00:00', 1),
(10941, 10575, 59, 4, 0, 'Have 1 yr Exp in PHP Can be analysed by giving a task open for 2 yrs SA kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10942, 10573, 59, 5, 0, 'Have 1 yrs Exp in React Exp Min 25K Not open to work on Saturday have other commitments  Will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(10943, 10567, 59, 5, 0, 'Fresher ,Looking for High Salary and tier level companies have a plan to go abroad,got opportunity with high salary but not joined as he felt that as a less pay will not sustain', 85, '0000-00-00 00:00:00', 1),
(10944, 10570, 59, 5, 0, 'No basic Skills not open for txxampC will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(10945, 10572, 59, 2, 0, 'Fresher have exp in Credit Card Sales now looking for opportunites in IT Need to be trained if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10946, 10580, 53, 1, 0, NULL, 59, '2022-10-11 04:13:47', 1),
(10947, 10575, 27, 5, 0, 'Using the existing code to do the task.', 59, '2022-10-11 04:15:00', 1),
(10948, 10566, 59, 2, 0, 'Have Exp as PC Builder,not much comfort in TxxampC need to learn a lot in basics of JS,if he comes back we can give a try ', 60, '0000-00-00 00:00:00', 1),
(10949, 10574, 29, 7, 3, 'gk team as RM', 59, '2022-10-11 04:20:07', 1),
(10950, 10549, 56, 5, 0, 'He is looking inside sales job salary expectaion 30k in hand he looking cab specility also', 85, '0000-00-00 00:00:00', 1),
(10951, 10578, 57, 4, 0, 'candidate is ok , already he have 1year Experience for voice process,So kinldy Confirm the joining date ', 59, '2022-10-11 04:48:33', 1),
(10952, 10536, 88, 7, 0, 'Selected for RE', 16, '2022-10-11 05:10:26', 1),
(10953, 10537, 88, 7, 0, 'Selected for RE', 16, '2022-10-11 05:11:18', 1),
(10954, 10578, 88, 7, 0, 'Selected for RE', 57, '2022-10-11 05:53:18', 1),
(10955, 10558, 59, 5, 0, 'Discussed with the candidate not ok with salary also not open for Field calls but salary Exp is high and pressure handling doubts', 14, '2022-10-11 06:37:52', 1),
(10956, 10578, 59, 3, 0, '	Have Exp In Calling Fresher For Our Domain,Can Give A Try Kindly Check And Let Me Know Your Inputs - selected for Syed Team in Staff ROle', 88, '2022-10-12 08:41:44', 1),
(10957, 10594, 59, 5, 0, 'up and down 40 kms,,Fresher have only Internship but in different skills not open for SA,Not suitable will not sustain in our role for a long', 85, '0000-00-00 00:00:00', 1),
(10958, 10592, 59, 5, 0, 'Have Exp In React Support Exp 6 Months Left Due To Overtime Work Not Open For SA, Not Open For Our Salary Too', 85, '0000-00-00 00:00:00', 1),
(10959, 10591, 59, 5, 0, 'Have Exp in react support Exp 6 months left due to overtime work not open for SA, Not open for our Salary too,got another opportunity but didnt join due to SA', 85, '0000-00-00 00:00:00', 1),
(10960, 10588, 59, 5, 0, 'No communication ,Average only,Focus only on the salary growth,will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(10961, 10590, 59, 2, 0, 'Fresher for IT have Exp in Sales,have a basic knowledge in JS,Need to train a lot if available can have a final round on saturday with gokul and check', 85, '0000-00-00 00:00:00', 1),
(10962, 10586, 59, 5, 0, 'No basic skills in Javascript,Looking much for Java openings not open for TxxampC will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(10963, 10585, 59, 5, 0, 'fresher ,Need to train a lot only basic knowledge in Figma,XD.Not much comfort in TxxampC need to travel for along not able to relocate', 85, '0000-00-00 00:00:00', 1),
(10964, 10574, 59, 3, 0, '	Have Exp In B2b Sales Communication Is Ok Fresh For Our Sales Can Be Trained Kindly Check And Let Me Know Your Inputs Sir - Selected for GK sir Team  - Staff Role', 29, '2022-10-12 02:48:35', 1),
(10965, 10597, 59, 3, 0, 'Selected for B2B Consultant Role', 60, '0000-00-00 00:00:00', 1),
(10966, 10545, 59, 5, 0, 'No communication, Notice Period is 90 days,no sustainability in his previous exp looking for change only for the salary growth will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(10967, 10597, 53, 7, 0, 'selected for b2b. kindly cnfrm the salary and DOJ', 59, '2022-10-12 03:30:42', 1),
(10968, 10503, 14, 7, 0, 'Fresher, Salary 10k, Kindly confirm joining date', 60, '0000-00-00 00:00:00', 1),
(10969, 10503, 59, 3, 0, 'Selected for Arumbakkam - Consultant role', 14, '2022-10-12 04:39:16', 1),
(10970, 10598, 59, 3, 0, 'Selected for B2B staff Role', 60, '0000-00-00 00:00:00', 1),
(10971, 10598, 53, 7, 0, 'Selected for B2B. pls cnfrm the salary and DOJ', 59, '2022-10-13 11:45:08', 1),
(10972, 10602, 59, 5, 0, 'Fresher for our Sales,Salary exp is very high and the distance is too long will not sustain in our roles not suitable', 60, '0000-00-00 00:00:00', 1),
(10973, 10603, 59, 4, 0, 'communication is Good Have Exp in Telecalling But too long Distance open to travel kindly check for ESalea and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10974, 10536, 59, 3, 0, '	Have Calling Exp In Sales Need To Check His Previous Exp Documents,5050 Profile Sustainability Doubts On This Profile,Need To Groom Them A Lot  Staff Role', 88, '2022-10-13 01:18:47', 1),
(10975, 10537, 59, 3, 0, 'selected for Thiyagu,internal reference,lond back candidate attended here and hot rejected by banu,we have processed again need to analyse and confirm in 7 days training alos the re was no proper documents of his previous Exp holds an IRDA certificate need to provide NOC or should close the certificate', 88, '2022-10-13 01:19:09', 1),
(10976, 7557, 14, 5, 0, 'Not suitable for this profile', 14, '2022-10-13 03:17:26', 1),
(10977, 10598, 59, 3, 0, 'Selected for B2B staff Role', 53, '2022-10-13 05:16:08', 1),
(10978, 10603, 29, 1, 0, NULL, 59, '2022-10-13 05:48:12', 1),
(10979, 10604, 14, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(10980, 10607, 59, 5, 0, 'Need to open a lot Career Gap too long and need to relocate husband in HDB financial,will not handle the pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(10981, 10605, 59, 5, 0, 'No basic skills too long distance not much active will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(10982, 10608, 59, 4, 0, '5050 Profile Have only retail sales Exp too long distance ready to relocate somewhere near by,no exp in calling kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10983, 10609, 59, 4, 0, 'Have Exp in HDB Recovery, Need to see the distance but she worked somewhere near our location ready to travel 5050 sustainability kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10984, 10610, 59, 4, 0, 'Have Exp In HDB Recovery, Need To See The Distance But She Worked Somewhere Near Our Location Ready To Travel 5050 Sustainability Kindly Check And Let Me Know Your Interest', 60, '0000-00-00 00:00:00', 1),
(10985, 10608, 86, 5, 0, 'Not Satisfied', 59, '2022-10-14 04:49:20', 1),
(10986, 10609, 53, 1, 0, NULL, 59, '2022-10-14 04:51:16', 1),
(10987, 10610, 53, 1, 0, NULL, 59, '2022-10-14 04:52:24', 1),
(10988, 10611, 59, 3, 0, 'Selected for Karthika Team - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10989, 10601, 59, 5, 0, 'Not ready to speak need to open a lot will not sustain and handle the work pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(10990, 10613, 59, 5, 0, 'Fresher for IT ,no strong in the skills not much comfort in TxxampC will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(10991, 10615, 59, 5, 0, 'Earlier attended and not joined due to salary,now again looking for the salary hike in an year not much comfort in TxxampC not suitable', 60, '0000-00-00 00:00:00', 1),
(10992, 10614, 59, 5, 0, 'No basic ideas in PHP,only into support and earning 15K Now ,looking for more salary and not open for TxxampC will not sustain', 60, '0000-00-00 00:00:00', 1),
(10993, 10616, 59, 5, 0, 'Have Exp in React for 6 months Intern Stipend is 15K  she may get the offer in the same company for 3.5 LPA,Just Looking fr a change,no much strong in skills married will not sustain and not open for TxxampC', 60, '0000-00-00 00:00:00', 1),
(10994, 10617, 59, 4, 0, '5050 Have exp in B2B Retail seems to be talkative kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10995, 10611, 29, 7, 2, 'Esales RM', 59, '2022-10-15 01:25:50', 1),
(10996, 10617, 51, 4, 0, 'ok', 59, '2022-10-15 01:27:34', 1),
(10997, 10621, 59, 3, 0, 'Selected for Sarath Team - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10998, 10625, 59, 4, 0, 'Communicaiton is Good Fresher for MIS,Sustainability doubts in our role kindly check and let me know your interest,i have spoken for both MIS xxamp Technical Support', 60, '0000-00-00 00:00:00', 1),
(10999, 10624, 59, 5, 0, 'No Communication no sustainability in the previous exp not open for TxxampC Not suitable ', 60, '0000-00-00 00:00:00', 1),
(11000, 10622, 59, 5, 0, 'No Communication too long distance  not open for Sales profile no ideas in MIS not suitable', 60, '0000-00-00 00:00:00', 1),
(11001, 10621, 51, 4, 0, 'selected', 59, '2022-10-17 05:15:05', 1),
(11002, 10625, 98, 1, 0, NULL, 59, '2022-10-17 05:16:18', 1),
(11003, 10611, 59, 3, 0, 'Selected for Karthika Team - Staff Role', 29, '2022-10-18 10:52:12', 1),
(11004, 10627, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', 60, '0000-00-00 00:00:00', 1),
(11005, 10632, 59, 5, 0, 'No Communication Working in HDB Sales but not interested towards the same, not suitable', 60, '0000-00-00 00:00:00', 1),
(11006, 10633, 59, 5, 0, 'Not interested in Sales and Recovery process too already he has exp in receovery but not open to go in the same will not sustain', 60, '0000-00-00 00:00:00', 1),
(11007, 10634, 59, 2, 0, 'have 11 yrs exp in ERP Sales new to our domain,need to check with gokul and decide the profile', 60, '0000-00-00 00:00:00', 1),
(11008, 10623, 59, 2, 0, 'Having basic skills not much ok with Stipend pay exp some thing more 2nd Interviewed by manikandan xxamp 3rd round by Kavya,given time to her if she is ok with the TxxampC will come for final round on Saturday', 60, '0000-00-00 00:00:00', 1),
(11009, 10631, 59, 3, 0, 'Selected for Syed Team in staff Role', 60, '0000-00-00 00:00:00', 1),
(11010, 10631, 57, 4, 0, 'kindly confirm the joining date and salary thank u  ', 59, '2022-10-18 12:40:59', 1),
(11011, 10635, 59, 5, 0, 'Candidate didnt come back with his confirmation', 60, '0000-00-00 00:00:00', 1),
(11012, 10635, 53, 7, 0, 'shortlisted for arumbakkam team, have little doubt ask to take another round of interview in arumbakkam branch', 59, '2022-10-18 01:01:01', 1),
(11013, 10630, 59, 3, 0, 'Selected for MAnikandan team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(11014, 10630, 86, 4, 0, 'Selected For Next Round', 59, '2022-10-18 03:44:36', 1),
(11015, 10636, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 60, '0000-00-00 00:00:00', 1),
(11016, 10463, 60, 1, 0, NULL, 27, '2022-10-19 10:01:02', 1),
(11017, 10630, 18, 7, 3, 'Selected for mani team. Expected 15k In hand. Ready to Join next monday', 86, '2022-10-19 11:05:26', 1),
(11018, 10643, 59, 5, 0, '12th Dropout long career gap last month attended and got rejected,she got opportunity in Mount road and left due to timing and distance not suitable will not sustain', 60, '0000-00-00 00:00:00', 1),
(11019, 10637, 59, 4, 0, 'Have Exp in Telecalling and retail sales in GRT 5050 profile Salary exp was high, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11020, 10641, 59, 5, 0, 'too long Distance 74kms up and down will not sustain and not suitable ', 60, '0000-00-00 00:00:00', 1),
(11021, 10642, 59, 5, 0, 'Not comfort to get back into sales calls,looking much for non  voice for time being looking for Voice will not sustian and she is very clear that she will move to non voice if she get any', 60, '0000-00-00 00:00:00', 1),
(11022, 10637, 53, 1, 0, NULL, 59, '2022-10-19 01:19:56', 1),
(11023, 10644, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(11024, 10646, 24, 5, 0, 'not suitable for us', 85, '0000-00-00 00:00:00', 1),
(11025, 10631, 88, 7, 0, 'Selected for RE', 57, '2022-10-19 05:20:25', 1),
(11026, 10652, 74, 5, 0, 'not profiled and not fit for telesales', 85, '0000-00-00 00:00:00', 1),
(11027, 10653, 74, 5, 0, 'sustainability issue and 10years not working out of the field not fit for team', 85, '0000-00-00 00:00:00', 1),
(11028, 10654, 74, 7, 0, 'good voice flow and fresher also fit for team and poor background .......adaptive and talk active highly job need ......expected 10k and have laptop....kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(11029, 10655, 74, 5, 0, 'candidate have some speaking issue voice not that much flow and not fit', 85, '0000-00-00 00:00:00', 1),
(11030, 10656, 74, 5, 0, 'candidate not fit for tele sales and not profiled', 85, '0000-00-00 00:00:00', 1),
(11031, 10654, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-10-20 02:45:37', 1),
(11032, 10651, 97, 2, 0, 'good communication.. have 3m of intern exp in sales non it.. txxampc want to confirm with his parents if he come back let us try ...', 85, '0000-00-00 00:00:00', 1),
(11033, 10597, 59, 3, 0, 'Selected for B2B Consultant Role', 53, '2022-10-21 02:29:24', 1),
(11034, 10661, 59, 3, 0, 'Selected for Syed Team in staff Role,based on the managers Suggestions we proceed with the high salary', 60, '0000-00-00 00:00:00', 1),
(11035, 10659, 59, 5, 0, 'Have a basic skills knowledge holding an offer for 15K,Fresher not much comfort in TxxampC Will not sustain ', 60, '0000-00-00 00:00:00', 1),
(11036, 10660, 59, 5, 0, 'Have 6 months intern Exp distance too long and he is not much comfort in this distance and his min exp is 15K already holds an offer for 10K', 60, '0000-00-00 00:00:00', 1),
(11037, 10666, 59, 5, 0, 'No Communication have exp in collections,age around 26 yrs and sustainability doubts as she will get marry in 1yr,not much convincing will not sustain and handle our pressure', 60, '0000-00-00 00:00:00', 1),
(11038, 10661, 57, 7, 0, 'Candidate is ok , he already have a 3yr Experience for sales , direct sale, salary exp 20k take home , Skill wise good ', 59, '2022-10-21 02:51:39', 1),
(11039, 10662, 74, 5, 0, 'rejected not fit for telesales voice not clear', 85, '0000-00-00 00:00:00', 1),
(11040, 10663, 74, 5, 0, 'not fit for team and telesales ', 85, '0000-00-00 00:00:00', 1),
(11041, 10664, 74, 7, 0, 'completed bca and fit for telesales voice is clear and active candidate highly job need father farmer expected salary take home 10k and have laptop kindly confirm once for joining', 85, '0000-00-00 00:00:00', 1),
(11042, 10665, 74, 5, 0, 'not profiled and not fit for team', 85, '0000-00-00 00:00:00', 1),
(11043, 10664, 59, 3, 0, 'Selected for Thanjavur  - Consultant Role', 74, '2022-10-21 03:55:48', 1),
(11044, 10648, 97, 5, 0, 'not suit for mIS', 85, '0000-00-00 00:00:00', 1),
(11045, 10667, 97, 4, 0, 'good communication..Has 9m of exp  as A app promoter sustainbility doubts...salary exp is high.. check and confirm your feedback\n', 85, '0000-00-00 00:00:00', 1),
(11046, 10669, 97, 5, 0, 'married ..sal expt high .. average in convincing.. not suit for our role', 85, '0000-00-00 00:00:00', 1),
(11047, 10667, 86, 5, 0, 'Not Willing to Out side source.', 97, '2022-10-21 06:39:44', 1),
(11048, 10631, 59, 3, 0, 'Selected for Syed Team in staff Role', 88, '2022-10-22 11:14:18', 1),
(11049, 10661, 88, 7, 0, 'Selected for RE 19K if proper docs are provided to us ', 57, '2022-10-22 11:16:53', 1),
(11050, 10661, 59, 3, 0, 'Selected for Syed Team in staff Role,based on the managers Suggestions we proceed with the high salary', 88, '2022-10-22 12:14:25', 1),
(11051, 10670, 24, 5, 0, 'Not fit for us', 85, '0000-00-00 00:00:00', 1),
(11052, 10673, 59, 5, 0, 'Have basic skills but not much strong,Saalry Exp is very high holding several offers will not sustain ,explained him about the TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(11053, 10675, 59, 5, 0, 'Fresher for Telesales,have 3 months showroom sales Salary Exp is min 25K not ready to negotiate will not sustain', 60, '0000-00-00 00:00:00', 1),
(11054, 10621, 29, 7, 3, 'selected for PM profile - Sarath team', 51, '2022-10-26 10:25:02', 1),
(11055, 10617, 29, 1, 0, NULL, 51, '2022-10-26 10:25:35', 1),
(11056, 10680, 74, 7, 0, 'she is well active and voice is very clear ...fit for telesales....and have own laptop...good exposure and talk active girl ....completed pg also and immediate joining ...expected 12 k will speak and finalise.', 85, '0000-00-00 00:00:00', 1),
(11057, 10681, 74, 7, 0, 'voice is very clear and from poor background highly job need and have laptop and immediate joining and expected 12k...experienced in help desk and telecalling also...highly job need kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(11058, 10682, 74, 7, 0, 'fit for telesales and job need expected 10k and job need also .....sister work in appolo hospital chennai......kindly check once about pressure handling have laptop ad high job need ....and immediate joining', 85, '0000-00-00 00:00:00', 1),
(11059, 10683, 74, 5, 0, 'voice not that much clear andnot fit for team', 85, '0000-00-00 00:00:00', 1),
(11060, 10684, 74, 5, 0, 'voice clarity is not good and not fit for team', 85, '0000-00-00 00:00:00', 1),
(11061, 10621, 59, 3, 0, 'Selected for Sarath Team - Staff Role', 29, '2022-10-26 03:17:35', 1),
(11062, 10680, 59, 3, 0, 'Selected for Consultant - Thanjavur\n', 74, '2022-10-26 03:37:20', 1),
(11063, 10681, 59, 5, 0, 'Candidate not interested in the profile', 74, '2022-10-26 03:39:31', 1),
(11064, 10682, 59, 3, 0, 'Selected for Consultant Thanjavur ', 74, '2022-10-26 03:42:56', 1),
(11065, 10677, 59, 2, 0, 'Communication Ok Can give a try for MIS/Renewals Sustainability Doubts as he has plan to move IT after an year,2nd round interviewed by gokul and on hold candidate need to give his confirmation if he comes back let us try,15K TH plus TDS', 60, '0000-00-00 00:00:00', 1),
(11066, 10676, 59, 5, 0, 'Attitude, Left his previous job due to work pressure,2yrs in Muthoot finance, No Communication,will not sustain not suitable ', 60, '0000-00-00 00:00:00', 1),
(11067, 10679, 59, 2, 0, 'Communication Average Have Exp but no sustaianability 2nd interviewed by gokul and shortlisted for 13K TH plus TDS Candidate need time to give his confirmation on the joining\n', 60, '0000-00-00 00:00:00', 1),
(11068, 10679, 59, 2, 0, 'Communication Average Have Exp but no sustaianability 2nd interviewed by gokul and shortlisted for 13K TH plus TDS Candidate need time to give his confirmation on the joining\n', 60, '0000-00-00 00:00:00', 1),
(11069, 10685, 59, 4, 0, '5050 Profile have exp in backend can give a try he is open much for appointment fixing seems not much ok with Sales kindly check and let me know  your inputs', 60, '0000-00-00 00:00:00', 1),
(11070, 10685, 53, 1, 0, NULL, 59, '2022-10-26 07:56:15', 1),
(11071, 10691, 74, 2, 0, 'due to candidate not confirmed joining will try next month', 85, '0000-00-00 00:00:00', 1),
(11072, 10692, 74, 7, 0, 'fit for team and tele sales also highly job need also expected 11k......qualified candidate have laptop father doing business and poor background only..immediate joining kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(11073, 10693, 74, 5, 0, 'voice is not clear and not fit for team', 85, '0000-00-00 00:00:00', 1),
(11074, 10694, 74, 5, 0, 'not fit for team and no exposure no voice fluency', 85, '0000-00-00 00:00:00', 1),
(11075, 10695, 74, 5, 0, 'over attitude and expected high and not fit for telesales', 85, '0000-00-00 00:00:00', 1),
(11076, 10696, 74, 5, 0, 'not fit for team and telesales also', 85, '0000-00-00 00:00:00', 1),
(11077, 10692, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-10-27 03:23:15', 1),
(11078, 10686, 97, 5, 0, 'good communication .. no sustainbility.. attitude issue.. not suit for our role.. sal expt high..', 85, '0000-00-00 00:00:00', 1),
(11079, 10688, 59, 3, 0, 'Selected for Renewals/MIS Role 2nd round interviewed by Gokul have exp in Renewal for 1 yr in Vizza Insurance Can give a try 2yrs SA', 85, '0000-00-00 00:00:00', 1),
(11080, 10689, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11081, 10690, 93, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11082, 10697, 59, 5, 0, 'No basic skills he was into core for 3 yrs and looking much on the salary explained on the TxxampC he needs time to give his confirmation', 60, '0000-00-00 00:00:00', 1),
(11083, 10703, 59, 5, 0, 'Fresher for our MIS roles,Career Gap have exp as a quality analyst,married and 2yrs kid,Travelling is bit difficult will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(11084, 10715, 59, 5, 0, 'Have Exp in telecalling ,understandin poor will not sustain and handle our pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(11085, 10714, 59, 5, 0, 'No basic skills age around 29 have 6 months exp in front end, need to learn a lot  will not sustain for a long married sustainability doubts in a long run', 60, '0000-00-00 00:00:00', 1),
(11086, 10706, 59, 5, 0, 'Have Retail sales exp but no sustainability,Clarity on communication is poor will not sustain also not comfort to go into insurance domain', 60, '0000-00-00 00:00:00', 1),
(11087, 10717, 59, 4, 0, 'Communication ok sounding low in voice,Family need is there can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11088, 10716, 59, 3, 0, 'Selected for Santhosh Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(11089, 10718, 59, 4, 0, 'Communication Good,Have Exp in different domain,but into sales,Salary Exp is high,can give a try kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11090, 10717, 53, 1, 0, NULL, 59, '2022-10-28 03:56:06', 1),
(11091, 10718, 31, 5, 0, 'high salary expectation', 59, '2022-10-28 03:57:38', 1),
(11092, 10716, 18, 7, 0, 'Old Employee. Can Give 4.2L CTC ready to Join on 1st', 59, '2022-10-28 04:00:44', 1),
(11093, 10716, 60, 1, 0, NULL, 18, '2022-10-29 12:21:34', 1),
(11094, 10731, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(11095, 10732, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(11096, 10721, 59, 2, 0, 'Fita Academy Profile interviewed by Gokul  Kaviya Need to finalise the Profile ', 60, '0000-00-00 00:00:00', 1),
(11097, 10722, 59, 5, 0, 'Fita Profile Seems to be very SLow Group Interview done by Gokul ', 60, '0000-00-00 00:00:00', 1),
(11098, 10723, 59, 5, 0, 'Fita Profile Group Interview done by Gokul Not much strong with the skills ', 60, '0000-00-00 00:00:00', 1),
(11099, 10724, 59, 5, 0, 'FITA Profile Seems to be slow Group interviewed by Gokul ', 60, '0000-00-00 00:00:00', 1),
(11100, 10725, 59, 5, 0, 'No Communication no understanding Very Poor in the Skills not suitable will not sustain', 60, '0000-00-00 00:00:00', 1),
(11101, 10726, 59, 5, 0, 'Basic Skills Holding an offer for 25K have 1 yr exp in UX Focus on the salary much,Asked him to wait for the task but he left without attending', 60, '0000-00-00 00:00:00', 1),
(11102, 10727, 59, 2, 0, 'Interviewed by Viswa Candidate is having 1 month course pending asked him to come back after the completion of course', 60, '0000-00-00 00:00:00', 1),
(11103, 10728, 59, 5, 0, 'no Communication travel distance is high will not handle our work pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(11104, 10730, 59, 2, 0, 'Fita Profile have basic skills,need to give her confirmation on the txxampC if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(11105, 10735, 59, 4, 0, 'Fresher for our Domain have Exp in Sales Can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11106, 10735, 31, 7, 4, 'candidate okay.  sent for salary negotiation and verify his prevous payslip', 59, '2022-10-29 07:15:37', 1),
(11107, 10736, 59, 3, 0, 'Selected for Manikandan Team with Pf/PT', 60, '0000-00-00 00:00:00', 1),
(11108, 10736, 86, 4, 0, 'Selected For Next Round', 59, '2022-10-29 07:22:17', 1),
(11109, 10736, 18, 7, 3, 'Selected for Money team. Spoken his Last company CTC aroung 23K in Hand- Kindly confrirm the amount and pay the same. Ready to join around 15th Nov.', 86, '2022-10-31 10:12:53', 1),
(11110, 10635, 59, 5, 0, 'Candidate didnt come back with his confirmation', 53, '2022-10-31 10:55:28', 1),
(11111, 10757, 59, 4, 0, 'Syed Team Reference,No Communication Need to open a lot not suitable much being internal reference kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(11112, 10719, 59, 5, 0, 'very Basic Skills Not Much Comfort With The TxxampC Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11113, 10720, 59, 5, 0, 'Basic Skills Sustainability Doubts Need time to confirm with her parents if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11114, 10733, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 85, '0000-00-00 00:00:00', 1),
(11115, 10739, 59, 5, 0, 'Communication Average Not much Good in the Skills Will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11116, 10741, 59, 5, 0, 'Basic Skills  Need to learn a lot not much ok with TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11117, 10742, 59, 5, 0, 'Not open for Taking Sales alls', 85, '0000-00-00 00:00:00', 1),
(11118, 10743, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', 85, '0000-00-00 00:00:00', 1),
(11119, 10744, 59, 3, 0, 'Selected for Renewals With PF/ESI/PT', 85, '0000-00-00 00:00:00', 1),
(11120, 10745, 59, 5, 0, 'Basic Skills Sustainability Doubts Need Time To Confirm With Her Parents If She Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(11121, 10746, 59, 5, 0, 'Looking For Java Openings', 85, '0000-00-00 00:00:00', 1),
(11122, 10747, 59, 5, 0, 'Looking for Java Openings', 85, '0000-00-00 00:00:00', 1),
(11123, 10748, 59, 5, 0, 'Only Basic Skills Not Much Comfort With The TxxampC Will Not Sustain ,If he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11124, 10749, 59, 5, 0, 'No Basic Skills not much comfort with the TxxampC Will not sustain ', 85, '0000-00-00 00:00:00', 1),
(11125, 10751, 59, 5, 0, 'Looking much for Java openings Poor Understanding will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11126, 10752, 59, 5, 0, 'Have Exp but Many job changes not open for Field but Exp min 23K', 85, '0000-00-00 00:00:00', 1),
(11127, 10754, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 85, '0000-00-00 00:00:00', 1),
(11128, 10755, 59, 3, 0, 'Selected for Technical Support with Insurance SAles Communication is Good Can be trained Final round interviewed by Gokul', 85, '0000-00-00 00:00:00', 1),
(11129, 10756, 59, 5, 0, 'Very High CTC Expectation Will not sustain for a long', 85, '0000-00-00 00:00:00', 1),
(11130, 10754, 29, 7, 3, 'sarath team', 59, '2022-10-31 07:40:05', 1),
(11131, 10733, 51, 4, 0, 'ok', 59, '2022-10-31 07:44:02', 1),
(11132, 10757, 88, 1, 0, NULL, 59, '2022-10-31 07:50:04', 1),
(11133, 10763, 24, 5, 0, 'Sal expect high 20k and field work not interested', 85, '0000-00-00 00:00:00', 1),
(11134, 10761, 97, 5, 0, 'not suit for our roles.. long distance too', 85, '0000-00-00 00:00:00', 1),
(11135, 10772, 97, 5, 0, 'has 7m of exp in MIS .. Sal expt High...', 85, '0000-00-00 00:00:00', 1),
(11136, 10773, 59, 5, 0, ' Will Not Sustain Not Much Comfort With TxxampC if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11137, 10774, 97, 5, 0, 'Has 3mexp in sales ... simultaneously changing job ..sustainbility doubts.. newly married .. sal exp high', 85, '0000-00-00 00:00:00', 1),
(11138, 10734, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', 85, '0000-00-00 00:00:00', 1),
(11139, 10736, 60, 1, 0, NULL, 18, '2022-11-01 06:32:24', 1),
(11140, 10787, 59, 5, 0, 'Communication Average, have Exp in MIS for 4+ yrs ,Recently married and sustainability Doubts a lot Exp min  20K TH,Handling Work Pressure and Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(11141, 10783, 59, 5, 0, 'No basic skills no ideas in JS, Not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(11142, 10782, 59, 3, 0, '3 months intern with  7.5K Need to train from basic ,after intern 1.8 LPA if he join let us proceed', 85, '0000-00-00 00:00:00', 1),
(11143, 10780, 59, 3, 0, 'Selected for Elite Arumbakkam,Should analyse in 7 days,Communication Ok ,Fresher For Telecaller Not A Graduate Have 6 Yrs Exp In Mobile Showroom Sales Can Be Trained', 85, '0000-00-00 00:00:00', 1),
(11144, 10762, 59, 2, 0, 'Communication ok Have internship Exp in DM,given her task to analyse the writing skills need to give her feedback,should go for Internship cum employment', 85, '0000-00-00 00:00:00', 1),
(11145, 10788, 59, 5, 0, 'communication Ok Need to open up in sales a lot also she is very clear that will not join if her friend who came along for the interview  isrejected', 85, '0000-00-00 00:00:00', 1),
(11146, 10789, 59, 5, 0, 'Communication No Need To Open Up In Sales A Lot Also She Is Very Clear That Will Not Join If Her Friend Who Came Along For The Interview  Is rejected will not sustain and handle our sales pressure', 85, '0000-00-00 00:00:00', 1),
(11147, 10780, 100, 7, 0, 'candidate okay to join tomorrow, salary 12000, fresher, kindly confirm to join tomorrow', 59, '2022-11-02 03:44:44', 1),
(11148, 10733, 29, 7, 3, 'sarath team RM', 51, '2022-11-02 05:00:25', 1),
(11149, 10780, 59, 3, 0, 'Selected for Elite Arumbakkam,Should analyse in 7 days,Communication Ok ,Fresher For Telecaller Not A Graduate Have 6 Yrs Exp In Mobile Showroom Sales Can Be Trained', 100, '2022-11-02 05:04:01', 1),
(11150, 10754, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 29, '2022-11-02 05:45:32', 1),
(11151, 10826, 74, 7, 0, 'she is ok with the profile talk active and fit for team ....father passsed highly job need and dont have laptop .......expected 10k and ready to join imeediately............ready to arrange laptop..........check once and confirm', 85, '0000-00-00 00:00:00', 1),
(11152, 10824, 74, 7, 0, 'she is ok with the profile matured and good skills in language ready to join immediately.................have no laptop need to ready in training period ........father passed expected 10k kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(11153, 10800, 24, 4, 0, 'candidate okay,  expect salary 15k take home.', 85, '0000-00-00 00:00:00', 1),
(11154, 10804, 59, 3, 0, 'Selected for Front End Fresher need to be trained ,final round interviewed by Gokul an dgot selected Internship for 5 months 5K then 10-12K  3yrs SA', 85, '0000-00-00 00:00:00', 1),
(11155, 10786, 59, 5, 0, 'Communication Average, will not handle our work pressure  no ideas in Excel not suitable', 85, '0000-00-00 00:00:00', 1),
(11156, 10832, 59, 5, 0, 'Not open for Sales and looking for IT but inJava', 85, '0000-00-00 00:00:00', 1),
(11157, 10822, 59, 4, 0, 'Internal Reference,Fresher need to open up a lot,kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11158, 10820, 59, 4, 0, 'Communication Ok Can be trained fresher need to open up can give a try he is from vadapalani,kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11159, 10778, 59, 5, 0, 'Have Exp in Collections can be trained but her salary Exp is high long run doubts if she come back for same salary we can', 85, '0000-00-00 00:00:00', 1),
(11160, 10834, 59, 5, 0, 'No basic skills need to learn a lot not much enthu will not sustain ', 85, '0000-00-00 00:00:00', 1),
(11161, 10809, 59, 3, 0, 'Selected for PHP, need to be trained a lot final round interviewed by gokul 7 days analysis then 5 months intern 5K,then 10-12K 3yrs SA', 85, '0000-00-00 00:00:00', 1),
(11162, 10831, 59, 5, 0, 'Not open for Sales Calling not interested\n', 85, '0000-00-00 00:00:00', 1),
(11163, 10827, 59, 3, 0, 'Selected for GK sir Team with PF/ESI', 85, '0000-00-00 00:00:00', 1),
(11164, 10820, 53, 1, 0, NULL, 59, '2022-11-03 06:03:30', 1),
(11165, 10827, 31, 4, 4, 'candidate okay send for 2nd round', 59, '2022-11-03 06:06:39', 1),
(11166, 10822, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-11-03 06:11:01', 1),
(11167, 10733, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 29, '2022-11-03 06:50:14', 1),
(11168, 10800, 88, 7, 0, 'Selected for RE for 14.5K  Net per month', 24, '2022-11-04 12:40:34', 1),
(11169, 10800, 59, 3, 0, 'Selected for Erode Location,Consultant Role,Husband looking for opportunities if he get any in chennai may relocate sustainability need to check and analyse in 7 days training have a 9 month old baby', 88, '2022-11-04 12:52:00', 1),
(11170, 10824, 59, 3, 0, 'Selected for Sithy - Thanjavur Team - consultant Role', 74, '2022-11-04 03:03:33', 1),
(11171, 10826, 59, 3, 0, 'Selected for Consultant Role - Thanjavur', 74, '2022-11-04 03:51:42', 1),
(11172, 10796, 59, 5, 0, 'No basic skills much open for Java only', 85, '0000-00-00 00:00:00', 1),
(11173, 10839, 59, 5, 0, 'Fresher Salary Exp is high Will not sustain for a long not much strong in basics', 85, '0000-00-00 00:00:00', 1),
(11174, 10842, 59, 5, 0, 'Very High CTC exp Crampete Student Not open for Term Will not sustain', 85, '0000-00-00 00:00:00', 1),
(11175, 10846, 59, 2, 0, 'Experienced HR profile,Interviewed by Gokul  and on hold', 85, '0000-00-00 00:00:00', 1),
(11176, 10843, 59, 5, 0, 'Not open for TxxampC Crampete Student Exp around 20-25 not ready to come down', 60, '0000-00-00 00:00:00', 1),
(11177, 10844, 59, 5, 0, 'Crampete No basic Skills not suitable will not sustain interviewed by Bharath', 60, '0000-00-00 00:00:00', 1),
(11178, 10827, 29, 7, 2, 'GK team', 31, '2022-11-04 09:07:18', 1),
(11179, 10735, 60, 1, 0, NULL, 31, '2022-11-04 09:13:22', 1),
(11180, 10849, 24, 5, 0, 'sales not interested', 99, '0000-00-00 00:00:00', 1),
(11181, 10827, 59, 3, 0, 'Selected for GK sir Team with PF/ESI', 29, '2022-11-05 11:55:45', 1),
(11182, 10795, 59, 2, 0, 'Fresher Need to be trained a lot he need time to confirm with his family on the Terms and conditons if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11183, 10837, 59, 5, 0, 'No basic skills Career Gap Will not sustain in our roles not suitable', 99, '0000-00-00 00:00:00', 1),
(11184, 10853, 59, 5, 0, 'No Basic Skills Not open for TxxampC Will Not Sustain In Our Roles Not Suitable', 99, '0000-00-00 00:00:00', 1),
(11185, 10848, 24, 4, 0, 'next round selected, but ramesh sir told low confident so we hold this profile.', 99, '0000-00-00 00:00:00', 1),
(11186, 10850, 24, 7, 0, 'candidate selected, expext salary 13k,', 99, '0000-00-00 00:00:00', 1),
(11187, 10856, 59, 4, 0, 'Communication Ok Have Exp in NOn Voice Data Entry not much comfort in Target Internal Reference Kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11188, 10855, 59, 2, 0, 'Very High CTC Min Exp is 5.4 LPA Jagadeesh REference\n', 60, '0000-00-00 00:00:00', 1),
(11189, 10852, 59, 4, 0, 'Have Exp in Collections No Exp in Calling Internal ReferenceKindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11190, 10852, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-11-05 07:50:05', 1),
(11191, 10856, 53, 1, 0, NULL, 59, '2022-11-05 07:50:55', 1),
(11192, 10870, 59, 4, 0, '5050 Profile he is having Exp in IT and for time being looking for opportunities in other domain Sustainability Doubts,Internal Reference kindly  check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11193, 10864, 59, 5, 0, 'Fresher  basic skills all 3 sisters are in IT and have a lot of reference not much open with TxxampC will not sustain in a long run not suitable', 85, '0000-00-00 00:00:00', 1),
(11194, 10858, 59, 4, 0, '5050 Profile need to open a lot Have Exp in Telecalling sustainability and handle our pressure is doubt,kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11195, 10859, 59, 5, 0, 'Not much active Few months as telecaller nght shift will not sustain and handle our pressure', 85, '0000-00-00 00:00:00', 1),
(11196, 10862, 24, 5, 0, 'Not suitable for this role', 85, '0000-00-00 00:00:00', 1),
(11197, 10867, 59, 5, 0, 'Looking for Java openings not suitable', 85, '0000-00-00 00:00:00', 1),
(11198, 10850, 88, 7, 0, 'Selected for RE', 24, '2022-11-07 04:16:11', 1),
(11199, 10848, 88, 1, 0, NULL, 24, '2022-11-07 04:17:24', 1),
(11200, 10858, 89, 1, 0, NULL, 59, '2022-11-07 04:45:33', 1),
(11201, 10850, 59, 3, 0, 'Selected for Suthagar Team with TDS 5% ', 88, '2022-11-07 04:46:47', 1),
(11202, 10870, 16, 7, 0, 'Selected for next round', 59, '2022-11-07 04:48:19', 1),
(11203, 10891, 59, 5, 0, 'Communication No,Have 8+ yrs Exp Writting Skills not upto the mark not suitable will not sustain Have 7 month old baby', 99, '0000-00-00 00:00:00', 1),
(11204, 10894, 59, 5, 0, 'No Communication not suitable for our Sales /operation Roles', 99, '0000-00-00 00:00:00', 1),
(11205, 10897, 59, 4, 0, 'Fresher for Sales need to train a lot Can give a try Kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11206, 10907, 59, 2, 0, 'Communication ok Have Exp in MIS ,can be trained 2nd round interviewed by Gokul need to go with the same pay if she is ok for 19K includes PF/ESI/PT we can proceed', 99, '0000-00-00 00:00:00', 1),
(11207, 10630, 60, 1, 0, NULL, 18, '2022-11-08 03:06:56', 1),
(11208, 10886, 59, 5, 0, 'Not suitable he is focusing on CMA preparing for that.Time being he is looking for Accounts will not sustain for a long', 85, '0000-00-00 00:00:00', 1),
(11209, 10896, 59, 5, 0, 'Not suitable no communication no basic ideas in the accounts will not sustain', 85, '0000-00-00 00:00:00', 1),
(11210, 10898, 59, 3, 0, 'Selected for MIS Role,Communication ok can be trained Gokul interviewed the final round', 85, '0000-00-00 00:00:00', 1),
(11211, 10913, 59, 2, 0, 'Communication Ok Have Exp 2nd round interiewed by GK sir as Shanmugam is not available in office will come for final round tomorrow', 85, '0000-00-00 00:00:00', 1),
(11212, 10914, 59, 5, 0, 'No Communication not open for Sales', 85, '0000-00-00 00:00:00', 1),
(11213, 10915, 59, 2, 0, 'Have Exp in Telecalling 5050 Profile Can give a try Will come for 2nd round tomorrow', 85, '0000-00-00 00:00:00', 1),
(11214, 10882, 59, 5, 0, 'Looking for Java openings not suitable', 85, '0000-00-00 00:00:00', 1),
(11215, 10897, 51, 5, 0, 'rejected', 59, '2022-11-08 07:22:09', 1),
(11216, 10902, 59, 2, 0, 'Have Exp in Calling Communication Ok ,but sustainability doubts 2.5 yrs 4 companies changed and even gap is there initiated SA need to check with her family and confirm', 85, '0000-00-00 00:00:00', 1),
(11217, 10920, 59, 2, 0, 'he is in internship till Nov end can give a try if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11218, 10933, 59, 4, 0, 'Fresher for our Sales not much open for Sales calls your own direct reference do check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11219, 10940, 59, 3, 0, 'Selected for Manikandan Team with PF/ESI', 85, '0000-00-00 00:00:00', 1),
(11220, 10922, 59, 3, 0, 'Seleted for Manikandan Team with Pf/ESI/PT', 85, '0000-00-00 00:00:00', 1),
(11221, 10923, 24, 5, 0, 'not suitable for this profile', 85, '0000-00-00 00:00:00', 1),
(11222, 10924, 59, 5, 0, 'Communication ok need to travel from ambattur ,have a trainee exp,checked for other profiles but not open for those', 85, '0000-00-00 00:00:00', 1),
(11223, 10931, 24, 5, 0, 'not suitable for our job', 85, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(11224, 10932, 59, 5, 0, 'No basic ideas in Account Skills too long distance will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(11225, 10937, 74, 7, 0, 'she talkactive and very active girl ,..............but bit attitude behavior but good knowledge and fit for sales and completed mba finance and have laptop expected 12k but ok with 10k.....and join after 18 th course completed kindly chek once and confirm.....father govt employeee TNSC SERVICE ............................', 85, '0000-00-00 00:00:00', 1),
(11226, 10936, 74, 5, 0, 'she not fit for telesales and voice is not clear and not much profile', 85, '0000-00-00 00:00:00', 1),
(11227, 10935, 74, 7, 0, 'she is ok with the profile have learning capasity and adaptive highly job need .......completed bba...father farmer have laptop and ready to join immediately expected 10k kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(11228, 10938, 74, 7, 0, 'she is fit for telesales and team also voice very clear adaptive to sales field......father ongc laber expected 10k and have laptop...ready to join immediated kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(11229, 10939, 74, 7, 0, 'she is ok with profile voice very clear and professional too have laptop and expected 10k.........father is a painter but course completed nov 18 after only join kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(11230, 10935, 59, 3, 0, 'selected for  Thanjavur Consultant Role', 74, '2022-11-09 05:44:00', 1),
(11231, 10938, 59, 3, 0, 'Selected for Thanjavur - 5050 Communication Need to open a lot ', 74, '2022-11-09 05:46:41', 1),
(11232, 10939, 59, 3, 0, 'selected for consultant role thanjavur', 74, '2022-11-09 05:48:22', 1),
(11233, 10937, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-11-09 05:50:52', 1),
(11234, 10940, 86, 4, 0, 'Selected For Next Round', 59, '2022-11-09 07:56:33', 1),
(11235, 10933, 88, 1, 0, NULL, 59, '2022-11-09 07:58:31', 1),
(11236, 10929, 59, 5, 0, 'NO ideas in Accounts too long distance  will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(11237, 10922, 86, 4, 0, 'Selected For Next Round', 59, '2022-11-09 08:11:43', 1),
(11238, 10870, 60, 1, 0, NULL, 16, '2022-11-10 11:33:04', 1),
(11239, 10951, 74, 5, 0, 'not fit for telesales and voice not clear and not fit for telesales', 85, '0000-00-00 00:00:00', 1),
(11240, 10950, 74, 7, 0, 'she is ok with the profile good voice and talkactive girl and fit for our team ...have laptop expected 10k and joining after 18 kindly confirm once ', 85, '0000-00-00 00:00:00', 1),
(11241, 10952, 74, 5, 0, 'very poor and less knownedlege not fit for team and tele sales', 85, '0000-00-00 00:00:00', 1),
(11242, 10953, 74, 5, 0, 'no exposure and dont have clear voice clarity for telesales not suite for team', 85, '0000-00-00 00:00:00', 1),
(11243, 10949, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11244, 10948, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11245, 10927, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11246, 10942, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11247, 10926, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11248, 10950, 59, 3, 0, 'Selected for Thanjavur Consultant Role 5050 Profile sustainability doubts', 74, '2022-11-10 03:19:16', 1),
(11249, 10940, 18, 7, 0, 'Selected for Mani team. Today Joining... Salary as discussed..', 86, '2022-11-10 03:30:54', 1),
(11250, 10922, 18, 7, 4, 'Fresher and ready to Join Immed.  Can give 15 or 16 in Hand +PF. For Mani Team', 86, '2022-11-10 03:31:32', 1),
(11251, 10954, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11252, 10973, 97, 4, 0, 'from hotel industry .. fresher to our process.. have some customer queries exp.. average in convincing.. can be trained .. let you check and update ..', 85, '0000-00-00 00:00:00', 1),
(11253, 10973, 16, 5, 0, 'Sales Sustainability Doubts', 97, '2022-11-12 03:05:28', 1),
(11254, 10965, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11255, 10958, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11256, 10940, 60, 1, 0, NULL, 18, '2022-11-14 10:06:17', 1),
(11257, 11042, 59, 5, 0, ' Will Not Sustain Not Much Comfort With TxxampC  Not open for freelance for full time salary Exp is high', 85, '0000-00-00 00:00:00', 1),
(11258, 10872, 59, 5, 0, 'Communication for Sales is not ok Attitude, Not suitable for our insurance Sales ', 85, '0000-00-00 00:00:00', 1),
(11259, 10978, 59, 3, 0, 'Selected for Thiyagu Team with PF/ESI/PT', 85, '0000-00-00 00:00:00', 1),
(11260, 10978, 16, 7, 0, 'Selected', 59, '2022-11-14 03:43:43', 1),
(11261, 10968, 42, 4, 4, 'Selected for next round ', 60, '0000-00-00 00:00:00', 1),
(11262, 10968, 30, 4, 3, 'HE WILL JOIN WIYHIN THREE DAYS SO CONFIRM CTC AND JOINING DATE , SUGGESTED SALARY IN HAND 17.5 TO 18K', 42, '2022-11-14 06:27:57', 1),
(11263, 10970, 59, 5, 0, '1 round Question task completed and technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11264, 10976, 59, 2, 0, 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation after 20 Days', 85, '0000-00-00 00:00:00', 1),
(11265, 10977, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11266, 10980, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11267, 10982, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11268, 10985, 59, 2, 0, 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation after 2 days', 85, '0000-00-00 00:00:00', 1),
(11269, 10987, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11270, 11009, 59, 2, 0, 'Based On The Task Interviewed By Gokul, Candidate Need To Come Back With The Confirmation after 20 days', 85, '0000-00-00 00:00:00', 1),
(11271, 11011, 59, 2, 0, 'Based on the task interviewed by Gokul,Candidate need to come back with the confirmation', 85, '0000-00-00 00:00:00', 1),
(11272, 11019, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11273, 11030, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11274, 11031, 59, 2, 0, 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation', 85, '0000-00-00 00:00:00', 1),
(11275, 11032, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11276, 11033, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11277, 11034, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11278, 11035, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11279, 11036, 59, 2, 0, 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation after 2 days', 85, '0000-00-00 00:00:00', 1),
(11280, 11039, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11281, 11040, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11282, 11048, 59, 4, 0, 'Have Exp in Sales but a long career Gap Due to family situation he is into Zomato,Internal Team GK Sir reference,kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11283, 10978, 88, 7, 0, 'selected for RE', 16, '2022-11-14 08:29:55', 1),
(11284, 10968, 60, 1, 0, NULL, 30, '2022-11-15 10:43:55', 1),
(11285, 11074, 59, 3, 0, 'Selected for Thiyagu Team with PF/ESI/PT,	Communication Ok Fresher Need To Train A Lot Can Give A Try Kindly Check And Let Me Know Your Inputs Have 3 Months Tecalling Exp With 9k Th', 60, '0000-00-00 00:00:00', 1),
(11286, 11074, 16, 7, 0, 'selected', 59, '2022-11-15 02:53:57', 1),
(11287, 11048, 29, 1, 0, NULL, 59, '2022-11-15 03:06:10', 1),
(11288, 10967, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 60, '0000-00-00 00:00:00', 1),
(11289, 11007, 59, 2, 0, 'Candidate need to come back with his confirmation on TxxampC Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11290, 11078, 59, 5, 0, 'Technical Round Reject(Written Test) - Besant ', 85, '0000-00-00 00:00:00', 1),
(11291, 11079, 59, 5, 0, 'Technical Round Reject(written Test) - Besant ', 85, '0000-00-00 00:00:00', 1),
(11292, 11072, 59, 5, 0, 'Technical Round Reject(written Test)', 85, '0000-00-00 00:00:00', 1),
(11293, 11054, 59, 5, 0, 'Technical Round Reject(Written Test) - Besant  Not ok with  TxxampC', 85, '0000-00-00 00:00:00', 1),
(11294, 11068, 59, 5, 0, 'Technical Round Reject(Written Test) - Besant ', 85, '0000-00-00 00:00:00', 1),
(11295, 11069, 59, 2, 0, 'Communication is Good,Sustainability Doubts frequent job changes and giving lot of reasons Exp around 20K if she comes back let us try\n', 85, '0000-00-00 00:00:00', 1),
(11296, 11081, 59, 5, 0, 'Communication Average no basic knowledge in Recruitment Not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(11297, 11082, 59, 5, 0, 'Communication is Good High CTC Exp Min 5 LPA,4 yrs of Exp in Recruitment will not sustain ', 85, '0000-00-00 00:00:00', 1),
(11298, 11074, 88, 7, 0, 'Selected for RE', 16, '2022-11-15 06:01:41', 1),
(11299, 9480, 59, 5, 0, 'Technical Round Reject(Written Test) - Besant ', 85, '0000-00-00 00:00:00', 1),
(11300, 10771, 59, 5, 0, 'Have Exp in CAMS Communication ok just 10 months in cAMS looking for Salary growth also she is in checkup recently married will not sustain for a long she is clear with that', 85, '0000-00-00 00:00:00', 1),
(11301, 10990, 59, 2, 0, 'Fresher need to train a lot candidate need time to give his conformation on TxxampC if he comes back let us try\n', 85, '0000-00-00 00:00:00', 1),
(11302, 11074, 59, 3, 0, 'Selected for Thiyagu Team with PF/ESI/PT,	Communication Ok Fresher Need To Train A Lot Can Give A Try Kindly Check And Let Me Know Your Inputs Have 3 Months Tecalling Exp With 9k Th', 88, '2022-11-15 06:21:06', 1),
(11303, 10978, 59, 3, 0, 'Selected for Thiyagu Team with PF/ESI/PT', 88, '2022-11-15 06:22:30', 1),
(11304, 11100, 59, 3, 0, 'Selected for GK Sir with PF/ESI/PT', 85, '0000-00-00 00:00:00', 1),
(11305, 11098, 59, 5, 0, 'Fresher for our Sales Long Career Have some Psychological Problems he was into treatment earlier he will not be able to handle the pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11306, 10916, 59, 2, 0, 'Too long Distance Fresher need to train a lot,ready to relocate need time to confirm the TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11307, 11095, 59, 5, 0, 'Fresher for Accounts Preparing for CA inter,time being he is looking for job will not sustain in a long', 85, '0000-00-00 00:00:00', 1),
(11308, 11100, 29, 7, 3, 'ok for RM, Gkji team, need to increase if ach 2.5 lac in 2 months - 1 lac nov 22, 1.5 lac dec 22', 59, '2022-11-16 06:18:29', 1),
(11309, 10944, 59, 5, 0, 'Attitude issue,will not sustain and handle our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(11310, 11028, 59, 5, 0, 'Technical Round Reject - Written Task -  Besant ', 85, '0000-00-00 00:00:00', 1),
(11311, 11056, 59, 5, 0, 'Technical Round Reject - Besant Technologies', 85, '0000-00-00 00:00:00', 1),
(11312, 11086, 59, 5, 0, 'Technical Round Reject - Besant Profile', 85, '0000-00-00 00:00:00', 1),
(11313, 11093, 24, 5, 0, '29yrs old.. not speaking well.. ', 85, '0000-00-00 00:00:00', 1),
(11314, 11089, 59, 5, 0, 'Technical Round Reject - Written Task -  Besant ', 85, '0000-00-00 00:00:00', 1),
(11315, 11094, 59, 2, 0, 'Technical task cleared,Candiddate need to give his confirmation for the TxxampC,if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11316, 11096, 59, 5, 0, 'Technical Round Reject - Written Task -  Besant ', 85, '0000-00-00 00:00:00', 1),
(11317, 10922, 60, 1, 0, NULL, 18, '2022-11-17 09:55:27', 1),
(11318, 11076, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(11319, 11100, 59, 3, 0, 'Selected for GK Sir with PF/ESI/PT', 29, '2022-11-17 05:27:27', 1),
(11320, 11110, 59, 5, 0, 'Technical Round Reject', 85, '0000-00-00 00:00:00', 1),
(11321, 11059, 59, 2, 0, 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(11322, 11052, 59, 2, 0, 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(11323, 11050, 59, 2, 0, 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(11324, 11105, 24, 2, 0, 'candidate okay for 2nd round.. but she need time 15days.. she is already taken star policy', 85, '0000-00-00 00:00:00', 1),
(11325, 11109, 59, 2, 0, 'Good in Communication have Exp in Recruitment,looking for Same but we tried for Tech Support Mutual fund he needs to come back with his confirmation', 85, '0000-00-00 00:00:00', 1),
(11326, 11115, 59, 2, 0, 'Have Basic Skills Exp Need to come back with his confirmation on TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11327, 11116, 59, 2, 0, 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(11328, 11114, 59, 3, 0, 'Selected for Thiyagu Team Staff Role', 60, '0000-00-00 00:00:00', 1),
(11329, 11113, 59, 3, 0, 'Selected for thiyagarajan Staff Role', 60, '0000-00-00 00:00:00', 1),
(11330, 11117, 59, 3, 0, 'Selected for Thiyagu Team - Staff role', 60, '0000-00-00 00:00:00', 1),
(11331, 11114, 16, 7, 0, 'Good Candidate She Is Fit For This Profile Exp Also', 59, '2022-11-17 05:41:27', 1),
(11332, 11113, 16, 7, 0, 'Good Candidate She Is Fit For This Profile', 59, '2022-11-17 05:42:12', 1),
(11333, 11117, 16, 7, 0, 'Good Candidate She Is Fit For This Profile Exp Also', 59, '2022-11-17 05:42:31', 1),
(11334, 11113, 88, 7, 0, 'Selected for RE', 16, '2022-11-17 06:27:51', 1),
(11335, 11114, 88, 7, 0, 'Selected for RE', 16, '2022-11-17 06:28:30', 1),
(11336, 11117, 88, 7, 0, 'Selected for RE', 16, '2022-11-17 06:28:59', 1),
(11337, 11113, 59, 3, 0, 'Selected for thiyagarajan Staff Role', 88, '2022-11-17 08:12:04', 1),
(11338, 11114, 59, 3, 0, 'Selected for Thiyagu Team Staff Role', 88, '2022-11-17 08:12:42', 1),
(11339, 11117, 59, 3, 0, 'Selected for Thiyagu Team - Staff role', 88, '2022-11-17 08:13:10', 1),
(11340, 11137, 97, 4, 0, 'fresher  can be trained.... kindly check and update your feedback..', 85, '0000-00-00 00:00:00', 1),
(11341, 11129, 59, 2, 0, 'Have Exp in CAMS need to train a lot Communication Average,she will come for final round', 85, '0000-00-00 00:00:00', 1),
(11342, 11137, 53, 7, 0, 'selected for b2b. Fresher, pls cnfrm the salary and DOJ', 97, '2022-11-18 02:49:48', 1),
(11343, 11118, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11344, 11137, 59, 3, 0, 'Selected for B2B - T.Nagar Staff Role however will confirm again the role', 53, '2022-11-18 05:33:58', 1),
(11345, 11119, 97, 5, 0, 'has basic knowledege in php... sustainbility doubts .. sal exp too high..', 85, '0000-00-00 00:00:00', 1),
(11346, 11107, 42, 4, 4, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(11347, 11141, 97, 5, 0, 'sustainbility  doubts.... not ok with txxampc ', 99, '0000-00-00 00:00:00', 1),
(11348, 11140, 97, 5, 0, 'have basic knowledge ..sustainbility doubts.. he want to check his family..if he come back.. let us try', 99, '0000-00-00 00:00:00', 1),
(11349, 11142, 24, 5, 0, 'rejected - logout time not comfortable', 99, '0000-00-00 00:00:00', 1),
(11350, 11139, 24, 5, 0, 'logout time not comfortable so rejectedd', 99, '0000-00-00 00:00:00', 1),
(11351, 10877, 97, 5, 0, 'looking for multiple profile ... seems like no job need .. not suit for our roles..', 99, '0000-00-00 00:00:00', 1),
(11352, 11108, 97, 5, 0, 'rejected in aptitude round', 99, '0000-00-00 00:00:00', 1),
(11353, 11123, 97, 5, 0, 'no idea about digital marketing .. communication ok.. but dont have idea about content ,sEOxxamp SEM.. SAL Ext high expt min.. ', 99, '0000-00-00 00:00:00', 1),
(11354, 11126, 97, 5, 0, 'Rejected In Aptitude Round', 99, '0000-00-00 00:00:00', 1),
(11355, 11130, 97, 5, 0, 'long distance.. dont have idea about excel .. no communication... not suit our process', 99, '0000-00-00 00:00:00', 1),
(11356, 11149, 97, 5, 0, 'from avadi not ready to relocate... no idea about ui/ux .. sal expt high', 99, '0000-00-00 00:00:00', 1),
(11357, 11152, 97, 5, 0, 'Rejected In Aptitude Round', 99, '0000-00-00 00:00:00', 1),
(11358, 11153, 97, 5, 0, 'Long distance.. need to learn lot... ongoing classes..and thinking about txxampc too ..once he complete the course will check again..', 99, '0000-00-00 00:00:00', 1),
(11359, 11156, 97, 5, 0, 'Rejected In Aptitude Round', 99, '0000-00-00 00:00:00', 1),
(11360, 11158, 97, 5, 0, 'attitude issue .. sal expt too high.. long distance too..', 99, '0000-00-00 00:00:00', 1),
(11361, 11163, 97, 5, 0, '2yrs of exp  as a acc ass..but not relavant  to our role... sal exp high ', 99, '0000-00-00 00:00:00', 1),
(11362, 11166, 97, 5, 0, 'Rejected In Aptitude Round', 99, '0000-00-00 00:00:00', 1),
(11363, 11167, 97, 5, 0, 'Rejected In Aptitude Round', 99, '0000-00-00 00:00:00', 1),
(11364, 11168, 97, 5, 0, 'not much active.. has exp in acc from cAMS.. Not much good in acc ...', 99, '0000-00-00 00:00:00', 1),
(11365, 11169, 97, 5, 0, 'no communication .. prefer to talk in tamil.. no idea about recruitment', 99, '0000-00-00 00:00:00', 1),
(11366, 11165, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11367, 11154, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11368, 11053, 97, 5, 0, 'has basic knowledege in html,xxampcss.. sustainbility doubts.. and trying govt  job..sal expt high', 85, '0000-00-00 00:00:00', 1),
(11369, 11111, 59, 5, 0, '5050 Profile Fresher For Sales Can Train And Give A Try For Our Role Kindly Check And Let Me Know Your Inputs - Dropped Candidate Salary Expectation is very high being fresher also he is in need of Leave on Saturday sunday will  not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(11370, 11111, 86, 4, 0, 'Selected For Next Round', 59, '2022-11-22 09:54:31', 1),
(11371, 11148, 97, 2, 0, 'From chengalpatu ready to relocate near by..has idea about ui/ux designer.... sustainbility doubts.. if he come back let us try ', 99, '0000-00-00 00:00:00', 1),
(11372, 11111, 18, 7, 0, 'Selected for Mani Team. Can negotiate and give decent Package. Immed Joiner.', 86, '2022-11-22 11:43:59', 1),
(11373, 11111, 60, 1, 0, NULL, 18, '2022-11-22 11:48:54', 1),
(11374, 11150, 59, 5, 0, 'No basic ideas inMF No communication not open for Sales positions too not suitable', 99, '0000-00-00 00:00:00', 1),
(11375, 11171, 59, 5, 0, 'Bit Attitude,not much open for TxxampC Long run doubts have some references too not suitable', 99, '0000-00-00 00:00:00', 1),
(11376, 11173, 59, 5, 0, 'Fresher have basic knowledge long run doubts candidate need time to give his confirmation', 99, '0000-00-00 00:00:00', 1),
(11377, 11174, 59, 3, 0, '5 month intern with 5K stipend then 10-12K 3 yrs SA Initially Dropped due to TxxampC as he confirmed we processed', 99, '0000-00-00 00:00:00', 1),
(11378, 11175, 59, 5, 0, 'Too long Distance Looking much for non voice no communication no suitable', 99, '0000-00-00 00:00:00', 1),
(11379, 11107, 30, 4, 3, 'Confirm joining date and CTC suggested ctc 2.4lac', 42, '2022-11-22 03:39:09', 1),
(11380, 11107, 60, 1, 0, NULL, 30, '2022-11-22 03:44:15', 1),
(11381, 9761, 59, 4, 0, 'Communication ok have exp in backend but can give a try for B2B,only thing she is not much ok with Spencer  kindly check and let   us know your inputs', 99, '0000-00-00 00:00:00', 1),
(11382, 9761, 53, 1, 0, NULL, 59, '2022-11-22 08:07:04', 1),
(11383, 11145, 97, 5, 0, 'has 6yrs of sales exp .. sal exp high .. not much good in convincing..', 85, '0000-00-00 00:00:00', 1),
(11384, 11146, 97, 5, 0, 'from electrical background.. fresher to our domain.. no convincing skill.. ', 85, '0000-00-00 00:00:00', 1),
(11385, 11177, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11386, 11182, 59, 3, 0, 'Selected for Banu team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(11387, 11151, 59, 5, 0, 'No basic Skills Not much comfort in TxxampC Need to train a lot if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(11388, 11176, 59, 5, 0, 'No Communication Understanding is Poor Will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(11389, 11181, 59, 2, 0, 'Candidate need to learn a lot if he comes back let us try after 10-15 days', 60, '0000-00-00 00:00:00', 1),
(11390, 11184, 59, 2, 0, 'Appeared for IT but too long distance he is open for sales but need time to give his confirmation if he comes back for sales we can give a try', 60, '0000-00-00 00:00:00', 1),
(11391, 11182, 53, 7, 0, 'selected for b2B. Pls cnfrm the salary and DOJ. Will increase her salary in next 6 months depends on her performance. ', 59, '2022-11-23 07:06:16', 1),
(11392, 11195, 59, 5, 0, 'No Communication Have Exp in Sales but not open for that,Need to open up a lot will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(11393, 11196, 59, 5, 0, 'Communication Average,Having plan to travel abroad  and  plan to do safety engineer Course will not sustain  in our roles', 85, '0000-00-00 00:00:00', 1),
(11394, 11197, 59, 5, 0, 'No basic skills knowledge worked and left the company in 3 months due to less pay of 5K not much comfort in TxxampC ', 85, '0000-00-00 00:00:00', 1),
(11395, 11198, 59, 2, 0, 'Selected For Tech Support Need To Be Trained Final Round With Gokul Selected For 132000 With PT Deduction', 85, '0000-00-00 00:00:00', 1),
(11396, 11199, 59, 2, 0, 'Selected for Tech Support Need to be trained Final round with Gokul selected for 132000 with PT deduction', 85, '0000-00-00 00:00:00', 1),
(11397, 11201, 59, 5, 0, 'Communication Average have few months exp in recruitment will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(11398, 11202, 59, 5, 0, 'No Communication,not open for Telesales too,not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(11399, 11203, 59, 5, 0, 'No Communication have Exp in Accounts and much prefer for the same, Long back attended and got rejected for the same.Not suitable', 85, '0000-00-00 00:00:00', 1),
(11400, 11190, 59, 5, 0, 'No Communication Frequent Job Changes Not much strong with the skills not suitable', 85, '0000-00-00 00:00:00', 1),
(11401, 11193, 59, 2, 0, 'Given task for UI UX need to analyse and based on the output will check\n', 85, '0000-00-00 00:00:00', 1),
(11402, 11187, 42, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11403, 11182, 59, 3, 0, 'Selected for Banu team in Consultant Role', 53, '2022-11-25 05:30:56', 1),
(11404, 11214, 53, 7, 0, 'selected for b2b. pls cnfrm the salary and DOJ', 85, '0000-00-00 00:00:00', 1),
(11405, 11215, 53, 7, 0, 'Selected for b2B. Pls cnfrm the salary and DOJ', 85, '0000-00-00 00:00:00', 1),
(11406, 11214, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2022-11-25 05:56:45', 1),
(11407, 11215, 59, 3, 0, 'Selected for B2B Consultant Role', 53, '2022-11-25 05:57:20', 1),
(11408, 11206, 97, 5, 0, 'low confidence..not fit for our process', 85, '0000-00-00 00:00:00', 1),
(11409, 11212, 97, 5, 0, 'zero understanding.. not suit for our roles..', 85, '0000-00-00 00:00:00', 1),
(11410, 11208, 24, 5, 0, 'rejected', 85, '0000-00-00 00:00:00', 1),
(11411, 11209, 97, 5, 0, 'from aynavaram but from candiadate side not ok with our location..  in 1yr worked 2compaines.. focusing on sal .. ', 85, '0000-00-00 00:00:00', 1),
(11412, 11210, 97, 2, 0, 'from guvi ins.. has basic knowledege in front end.. he need to check  TxxampC with his family .. If he come back  will check again', 85, '0000-00-00 00:00:00', 1),
(11413, 11222, 74, 7, 0, 'she is ok with the profile and fit for team also ...completed mba and first working in quality process chennai and mobile manufacturing company also ....expected 12k ......highly job need voice active and ready to adapt in the process have no laptop she is ok to ready also....2 rounds completed second round by ramesh sir also kindly check once and confirm.', 85, '0000-00-00 00:00:00', 1),
(11414, 11227, 59, 5, 0, 'No Communication not suitable for MIS and not open for telecaller ', 85, '0000-00-00 00:00:00', 1),
(11415, 11240, 59, 5, 0, 'No Flow of Communication Much comfort in non voice he is not much open with target not suitable', 85, '0000-00-00 00:00:00', 1),
(11416, 11241, 59, 5, 0, 'Not suit for MIS checked for Telecaller and asked her to come for 2nd round but she didnt appear', 85, '0000-00-00 00:00:00', 1),
(11417, 11243, 59, 2, 0, 'Fresher for Product No Local Communication 2nd round with Gokul need to confirm the candidate later', 85, '0000-00-00 00:00:00', 1),
(11418, 11239, 59, 5, 0, 'Not suitable for Voice Process will not handle pressure', 85, '0000-00-00 00:00:00', 1),
(11419, 11238, 59, 5, 0, 'No Communication Not suitable for our MF Roles not open for telesales', 85, '0000-00-00 00:00:00', 1),
(11420, 11237, 59, 5, 0, 'Looking for Non Voice no communication not suitable for our  roles', 85, '0000-00-00 00:00:00', 1),
(11421, 11231, 59, 5, 0, 'Communication ok very high exp will take several leaves and will not sustain in a long on our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(11422, 11232, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(11423, 11224, 59, 5, 0, 'Communication  no Checked for Sales Not open for that too', 85, '0000-00-00 00:00:00', 1),
(11424, 11229, 59, 4, 0, 'Communication ok Have 6 months Exp but seems to be slow kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11425, 11226, 59, 2, 0, 'Have basic knowledge can be trained need time to check with parents and confirm the TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(11426, 11225, 59, 3, 0, 'Selected for Thiyagu Team in Staff Role', 60, '0000-00-00 00:00:00', 1),
(11427, 11225, 16, 7, 0, 'Selected', 59, '2022-11-28 06:45:35', 1),
(11428, 11233, 59, 5, 0, 'Looking for non voice no communication', 60, '0000-00-00 00:00:00', 1),
(11429, 11223, 59, 2, 0, 'Have Internship Exp Certificate is on hold with Agaram infotech,He need time to confirm the TxxampC if he comes back with his confirmation let us try', 60, '0000-00-00 00:00:00', 1),
(11430, 11242, 59, 5, 0, 'Communication Average and not much comfort in written communication Exp is min 25-20K Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(11431, 11232, 53, 7, 0, 'Selected for B2B. Pls cnfrm the DOJ', 59, '2022-11-28 07:02:30', 1),
(11432, 11229, 53, 1, 0, NULL, 59, '2022-11-28 07:03:49', 1),
(11433, 11232, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2022-11-29 10:28:19', 1),
(11434, 11253, 59, 5, 0, 'Not suitable need to open a lot will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(11435, 11251, 59, 5, 0, 'Very fresher no basic knowledge in  skills need time to confirm his interest,long run need to check if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(11436, 11259, 59, 3, 0, 'Selected for Consultant Role B2B', 85, '0000-00-00 00:00:00', 1),
(11437, 11257, 59, 2, 0, 'Communication ok have exp in recruitment but no sustainability need to check ', 85, '0000-00-00 00:00:00', 1),
(11438, 11256, 59, 3, 0, 'Selected for Consultant Role B2B', 85, '0000-00-00 00:00:00', 1),
(11439, 11255, 59, 5, 0, 'No basic skills need to learn a lot let him learn and come', 85, '0000-00-00 00:00:00', 1),
(11440, 11234, 24, 5, 0, 'sustainability doubt and also she  is not hold the pressure', 85, '0000-00-00 00:00:00', 1),
(11441, 11245, 24, 4, 0, 'Selected for 2nd round .. Salary 16k', 85, '0000-00-00 00:00:00', 1),
(11442, 11247, 24, 5, 0, 'rejected with ramesh sir,  he told not suitable for sales', 85, '0000-00-00 00:00:00', 1),
(11443, 11252, 59, 3, 0, 'Selected for Banu Team need to confirm the Role', 85, '0000-00-00 00:00:00', 1),
(11444, 11254, 59, 5, 0, 'Need to open a lot Communication not upto the mark for  Telecaller will not sustain and handle our Pressure', 85, '0000-00-00 00:00:00', 1),
(11445, 11261, 59, 2, 0, 'Came forJob Fair no basic ideas in Javascript,need to learn only SQL knowledge if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11446, 11252, 53, 7, 0, 'Selected for b2B. pls cnfrm the salary and DOJ', 59, '2022-11-29 05:39:31', 1),
(11447, 11259, 53, 7, 0, 'Selected For B2B. Pls Cnfrm The Salary And DOJ', 59, '2022-11-29 05:40:23', 1),
(11448, 11256, 53, 7, 0, 'Selected For B2B. Pls Cnfrm The Salary And DOJ', 59, '2022-11-29 05:41:02', 1),
(11449, 11252, 59, 3, 0, 'Selected for Banu Team need to confirm the Role', 53, '2022-11-29 05:46:13', 1),
(11450, 11256, 59, 3, 0, 'Selected for Consultant Role B2B', 53, '2022-11-29 05:46:30', 1),
(11451, 11259, 59, 3, 0, 'Selected for Consultant Role B2B', 53, '2022-11-29 05:46:46', 1),
(11452, 11245, 88, 7, 0, 'Selected for RE at 16k  pM ', 24, '2022-11-29 07:43:55', 1),
(11453, 11225, 88, 7, 0, 'Selected for RE', 16, '2022-11-30 10:03:22', 1),
(11454, 11245, 59, 3, 0, 'Selected for Suthagar Team in Consultant Role', 88, '2022-11-30 10:29:18', 1),
(11455, 11225, 59, 3, 0, 'Selected for Thiyagu Team in Staff Role', 88, '2022-11-30 10:29:49', 1),
(11456, 11258, 59, 5, 0, 'Communicaiton Average no written skills   not open for telecaller profile too', 85, '0000-00-00 00:00:00', 1),
(11457, 11263, 59, 5, 0, 'Looking for non  voice not suitable', 85, '0000-00-00 00:00:00', 1),
(11458, 11272, 59, 5, 0, 'Not open for Calling Will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11459, 11277, 59, 4, 0, 'Have Exp in calling but not much comfort in distance Sustainability doubts check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11460, 11281, 59, 3, 0, 'Selected for Banu in Staff Role', 85, '0000-00-00 00:00:00', 1),
(11461, 11280, 59, 4, 0, 'Internal reference from Bhavani Arumbakkam Fresher need to open a lot 5050 Check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11462, 11282, 59, 4, 0, '5050 Profile have Exp in calling but much preferred for Non Voice Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11463, 11269, 59, 5, 0, 'No Communication not suitable for MIS not open for telecaller profile too', 85, '0000-00-00 00:00:00', 1),
(11464, 11205, 24, 5, 0, 'not suitable for telecalling sales', 85, '0000-00-00 00:00:00', 1),
(11465, 11278, 24, 5, 0, 'not suitable for telecalling', 85, '0000-00-00 00:00:00', 1),
(11466, 11273, 59, 5, 0, 'Need to open up a lot not suitable', 85, '0000-00-00 00:00:00', 1),
(11467, 11271, 59, 3, 0, 'Selected for MF 3 months intern 8K Stipend then 12-14K 1.5-2yrs SA', 60, '0000-00-00 00:00:00', 1),
(11468, 11280, 88, 5, 0, 'Rejected', 59, '2022-11-30 08:34:24', 1),
(11469, 11277, 53, 1, 0, NULL, 59, '2022-11-30 08:35:32', 1),
(11470, 11281, 53, 7, 0, 'selected for b2b, cnfrm the salary and DOJ', 59, '2022-11-30 08:39:28', 1),
(11471, 11282, 53, 1, 0, NULL, 59, '2022-11-30 08:40:13', 1),
(11472, 11295, 59, 5, 0, 'He is looking for finance and also very clear that he will not sustain in Telecaller for a long not suitable', 85, '0000-00-00 00:00:00', 1),
(11473, 11294, 59, 5, 0, 'Need to open a lot will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11474, 11292, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(11475, 11291, 59, 4, 0, '5050 much prefered for nonvoice have exp in calling kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11476, 11290, 59, 5, 0, 'No Communicaiton not suitable', 85, '0000-00-00 00:00:00', 1),
(11477, 11288, 59, 5, 0, 'Much focused in nonvoice will not sustain and not suitable for telecaller', 85, '0000-00-00 00:00:00', 1),
(11478, 11262, 59, 5, 0, 'Very fresher no basic skills need time to learn later after a month if he come let us try', 85, '0000-00-00 00:00:00', 1),
(11479, 11283, 59, 3, 0, 'Seleceyd for Banu in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(11480, 11297, 59, 5, 0, 'Career Gap have exp in Post office no sustainability in the previous roles no telecalling Exp will not sustain', 85, '0000-00-00 00:00:00', 1),
(11481, 11298, 97, 5, 0, 'From guduvanchery...\nprefer to talk in tamil.. not suit for our MF .. Not  Ok with sales process.. ', 85, '0000-00-00 00:00:00', 1),
(11482, 11283, 53, 7, 0, 'selected for b2b, kindly cnfrm the salary and DOJ', 59, '2022-12-01 08:05:47', 1),
(11483, 11292, 53, 7, 0, 'selected for B2B. kindly cnfrm the salary and DOJ', 59, '2022-12-01 08:07:30', 1),
(11484, 11291, 53, 5, 0, 'looking non voice, she cant handle pressure', 59, '2022-12-01 08:10:47', 1),
(11485, 11292, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2022-12-02 11:01:45', 1),
(11486, 11279, 74, 5, 0, 'due to low confidence in job ready to move any time native karur', 85, '0000-00-00 00:00:00', 1),
(11487, 11283, 59, 3, 0, 'Seleceyd for Banu in Consultant Role', 53, '2022-12-02 11:02:26', 1),
(11488, 11275, 74, 5, 0, 'not intrested in job sustainablity issue', 85, '0000-00-00 00:00:00', 1),
(11489, 11276, 74, 5, 0, 'he is not talkactive and not fit for team also ', 85, '0000-00-00 00:00:00', 1),
(11490, 11281, 59, 3, 0, 'Selected for Banu in Staff Role', 53, '2022-12-02 11:03:12', 1),
(11491, 11270, 74, 5, 0, 'looking for non voice process only', 85, '0000-00-00 00:00:00', 1),
(11492, 11222, 59, 3, 0, 'Selected for Sithyvinayagam team  in Consultant Role', 74, '2022-12-02 02:45:56', 1),
(11493, 11318, 59, 4, 0, 'Communication Ok have 3 months exp in Byjuxquots 5050 Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11494, 11317, 59, 5, 0, 'No sustainability Looking only for salary increase will not sustain', 85, '0000-00-00 00:00:00', 1),
(11495, 11316, 59, 5, 0, 'No Communication not suitable will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(11496, 11312, 59, 5, 0, 'Communication just Managable No written Skills will not sustain notice 45 days not suitable', 85, '0000-00-00 00:00:00', 1),
(11497, 11309, 59, 5, 0, 'Yet to complete his graduation Average Communication Will not sustain for a long not suitable', 85, '0000-00-00 00:00:00', 1),
(11498, 11308, 59, 5, 0, 'Communication Good,Pressure Handling Doubt,Fresher Looking for CTC growth Will not run in a long', 85, '0000-00-00 00:00:00', 1),
(11499, 11300, 59, 5, 0, 'Have teaching exp and much focus for Java Django Career Gap will not sustain and not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(11500, 11296, 59, 5, 0, 'No basic Skills 2nd round interviewed by manikandan and rejected', 85, '0000-00-00 00:00:00', 1),
(11501, 11303, 59, 3, 0, 'Selected for GK sir Team ', 60, '0000-00-00 00:00:00', 1),
(11502, 11303, 31, 4, 4, 'candidate okay.  ', 59, '2022-12-02 03:41:53', 1),
(11503, 11313, 59, 5, 0, 'No Communication Looking only for Salary increase Fresher for Telecaller will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(11504, 11286, 59, 5, 0, 'Looking for nonvoice no communication not suitable', 60, '0000-00-00 00:00:00', 1),
(11505, 11314, 59, 4, 0, 'Internal Reference No relevant Exp 5050 Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11506, 11303, 29, 7, 3, 'Gk team, 2.98 lacs ctc', 31, '2022-12-02 04:01:55', 1),
(11507, 11274, 93, 4, 0, 'Shortlisted need to move to branch manager good candidate communication also good ', 60, '0000-00-00 00:00:00', 1),
(11508, 11318, 31, 5, 0, 'not suitable candidate', 59, '2022-12-02 07:38:46', 1),
(11509, 11314, 31, 5, 0, 'Not suitable candidate', 59, '2022-12-02 07:46:15', 1),
(11510, 11274, 60, 1, 0, NULL, 93, '2022-12-03 10:05:57', 1),
(11511, 11326, 59, 3, 0, 'Have basic knowledge in JS and React Can be trained no local Language  only english and hindi 3-5 months Intern with Stipend 5K then Employment overall 3yrs SA salary start 10-12K', 85, '0000-00-00 00:00:00', 1),
(11512, 11325, 59, 5, 0, 'Have 8 months Exp in Just Dial Calling Too long distance ,of  Career Gap  Wil not sustain he is into bike racing will not run in a long', 85, '0000-00-00 00:00:00', 1),
(11513, 11319, 59, 5, 0, 'Communication Average,have  6  month internship exp in backend no basics in Accounts too long distance will not sustain and handle our pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11514, 11320, 59, 5, 0, 'Communication Average,will travel to singapore in 1 yr will not sustain in a long lot of personal issues going on will take lot of leaves not suitable', 85, '0000-00-00 00:00:00', 1),
(11515, 11323, 59, 4, 0, 'Communication ok Have Telecalling Exp but in different domain can give a try for our sales kindly check and confirm', 85, '0000-00-00 00:00:00', 1),
(11516, 11324, 59, 5, 0, 'Not suitable for Sales Calls will not sustain', 85, '0000-00-00 00:00:00', 1),
(11517, 11301, 59, 4, 0, 'Communication ok,Have Exp in Content Writing  But sustainability doubt in our role kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11518, 7916, 59, 5, 0, 'No basic  skills just looking for Salary growth will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11519, 11274, 60, 1, 0, NULL, 30, '2022-12-03 04:25:27', 1),
(11520, 11301, 69, 1, 0, NULL, 59, '2022-12-03 05:47:20', 1),
(11521, 11323, 53, 1, 0, NULL, 59, '2022-12-03 05:48:38', 1),
(11522, 11303, 59, 3, 0, 'Selected for GK sir Team ', 29, '2022-12-03 09:11:59', 1),
(11523, 11334, 59, 4, 0, 'Long Career Gap No highest Graduation fresher for Telecalling need to train a lot kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11524, 11337, 59, 5, 0, 'Fresher Career Gap Seems much preferred with non voice process not suitable for calling will not sustain', 85, '0000-00-00 00:00:00', 1),
(11525, 11339, 59, 5, 0, 'No Clear Communication not suitable for our customer communication  will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11526, 11340, 59, 5, 0, 'No Communication not open for Target based positions not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(11527, 11341, 59, 5, 0, 'No communication no written skills not suitable for MIS roles will not sustain', 85, '0000-00-00 00:00:00', 1),
(11528, 11343, 74, 7, 0, 'he is fit for telesales and good for team....father chicken sales sister working in medical shop one brother .....poor family only one year experience in honda sales and accounts and 8 months experience in reliance CSA sales .....have laptop and 2 km to office sales pitching and job also highly need...expected 12 k and he is ok for 12k.....ramesh sir conducted second round and gave positive review kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(11529, 11322, 74, 5, 0, 'not intrested in sales field and telecalling', 85, '0000-00-00 00:00:00', 1),
(11530, 11192, 59, 4, 0, 'Communication Ok have exp in core Mechanical domain fresher for our roles 5050 kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11531, 11342, 59, 2, 0, 'Fresher no basic knowledge in IT Skills Given a month time to learn if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11532, 11338, 59, 4, 0, '5050 Too long Distance Fresher for roles Have interest to work in voice process kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11533, 11344, 59, 3, 0, 'Selected for B2B in staff Role', 85, '0000-00-00 00:00:00', 1),
(11534, 11344, 53, 7, 0, 'Selected for b2b. pls cnfrm the salary and DOJ', 59, '2022-12-05 04:39:05', 1),
(11535, 11338, 53, 1, 0, NULL, 59, '2022-12-05 04:40:10', 1),
(11536, 11192, 53, 1, 0, NULL, 59, '2022-12-05 04:47:44', 1),
(11537, 11334, 53, 1, 0, NULL, 59, '2022-12-05 04:48:43', 1),
(11538, 11335, 59, 5, 0, 'Fresher for IT domain,Currently working as Document specialist 45 days notice not much strong in basics given him time to learn sustainabilty doubts', 60, '0000-00-00 00:00:00', 1),
(11539, 11343, 59, 5, 0, 'Asked for a time to join due to exams but not responding the calls later\n', 74, '2022-12-05 05:04:51', 1),
(11540, 11352, 74, 5, 0, 'he is not ok with the profile and have sustainability issue', 85, '0000-00-00 00:00:00', 1),
(11541, 11307, 59, 5, 0, 'Technical Round reject by Manikandan not much comfort in TxxampC will not sustain, need to learn a lot', 60, '0000-00-00 00:00:00', 1),
(11542, 11356, 59, 5, 0, 'His preferred skill is dotnet Give him time for Learning  if he comes back after a month can check', 60, '0000-00-00 00:00:00', 1),
(11543, 11355, 59, 2, 0, 'Have basic knowledge in Node, Seems to be playful technical round with Viswa Should schedule the next round with Gokul based on his availability ', 60, '0000-00-00 00:00:00', 1),
(11544, 11350, 59, 5, 0, 'Need to open a lot will not handle our Sales calls not suitable', 60, '0000-00-00 00:00:00', 1),
(11545, 11351, 59, 5, 0, 'Have Exp in Recruitment but not much strong with that lot of job changes also did some certification in bridal make up her focus is towards that sustainability doubts in our profile', 60, '0000-00-00 00:00:00', 1),
(11546, 11357, 59, 5, 0, 'Not Much active will not sustain and handle our pressure Not suitable', 99, '0000-00-00 00:00:00', 1),
(11547, 11358, 59, 5, 0, 'too long distance up and down 54kms not open for relocation will not sustain', 99, '0000-00-00 00:00:00', 1),
(11548, 11359, 59, 5, 0, 'Fresher for our sales no sustainability in his previous exp,Pressure handling doubt,asked him to wait for the 2nd round but left without attending', 99, '0000-00-00 00:00:00', 1),
(11549, 11361, 74, 5, 0, 'he not fit for telesales tounge slip problem ', 99, '0000-00-00 00:00:00', 1),
(11550, 11360, 59, 5, 0, 'Just 7 months exp in recruitment with the high Pay and looking for more and the same, location need to check,Long run doubts in our roles', 99, '0000-00-00 00:00:00', 1),
(11551, 11362, 59, 5, 0, 'Have a solid exp in backend but no communication not much suitable for sales will not sustain in our Sales ', 99, '0000-00-00 00:00:00', 1),
(11552, 11365, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 99, '0000-00-00 00:00:00', 1),
(11553, 11366, 59, 5, 0, 'Not open for Sales,', 99, '0000-00-00 00:00:00', 1),
(11554, 11368, 59, 5, 0, 'Technical Round reject by Manikandan,Fresher for Javascript have exp in dotnet Sustainability doubts as he was around 8K earlier and looking for more', 99, '0000-00-00 00:00:00', 1),
(11555, 11369, 59, 5, 0, 'Fresher for IT ,Have 1,5 yrs desktop Support exp not much strong with the basic skills need to train a lot he need time to confirm the TxxampC if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11556, 11370, 59, 5, 0, 'Have Exp in IT Recruitment and 7  months exp with 2.6 LPA Communicaiton Average Handling our sales hiring pressure doubts not suitable', 99, '0000-00-00 00:00:00', 1),
(11557, 11330, 59, 4, 0, '5050 profile Fresher for our Sales ,Need to train a lot kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11558, 11363, 59, 5, 0, 'Internal team Reference,Long Career Gap he is into sports No sustainability in the previous exp checked with sales Manager sarath and rejecetd the profile', 99, '0000-00-00 00:00:00', 1),
(11559, 11367, 59, 5, 0, 'Final Round reject, Only 3 months exp in Byjuxquots No Sales Exp rejected in the final round', 99, '0000-00-00 00:00:00', 1),
(11560, 11365, 53, 7, 0, 'selected for b2B. pls cnfrm the DOJ and salary.', 59, '2022-12-07 03:47:54', 1),
(11561, 11330, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-12-07 03:49:42', 1),
(11562, 11365, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2022-12-07 04:00:39', 1),
(11563, 11377, 59, 3, 0, 'Selected for B2B in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(11564, 11344, 59, 3, 0, 'Selected for B2B in staff Role', 53, '2022-12-08 03:48:54', 1),
(11565, 11377, 53, 7, 0, 'selected for b2b, pls cnfrm the salary and DOJ', 59, '2022-12-08 03:49:29', 1),
(11566, 11376, 59, 5, 0, 'Fresher no basics in JS,Need time to confirm on the TxxampC Sustainability doubts with us if he comes back let us try for technical', 99, '0000-00-00 00:00:00', 1),
(11567, 11374, 59, 5, 0, 'Too long Distance around 54kms up and down not much comfort in taking 150 Calls will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11568, 11375, 59, 5, 0, 'No basics in accounts No Communication will not sustain', 99, '0000-00-00 00:00:00', 1),
(11569, 11378, 59, 2, 0, 'Appeared for IT but no skills in Javascript Have Exp in Mutual funds backend for 2.5 yrs,open for MF role but communication Average can give a try for MF Coordinator need to check with Gokul and confirm', 99, '0000-00-00 00:00:00', 1),
(11570, 11379, 59, 5, 0, 'Looking for non voice not suitable no communication', 99, '0000-00-00 00:00:00', 1),
(11571, 11380, 59, 4, 0, '5050 profile have 4 months exp in collection calling ,sounds to be low kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11572, 11377, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2022-12-08 03:58:06', 1),
(11573, 11380, 53, 1, 0, NULL, 59, '2022-12-08 04:47:53', 1),
(11574, 11381, 59, 2, 0, 'communication Ok Have exp in B2B,not open for Sales again he is looking for Recruitment but will not sustain much in that will schedule him for MIS Need to check and final with Gokul', 85, '0000-00-00 00:00:00', 1),
(11575, 11387, 74, 5, 0, 'profile not fit for sales have no exposure and knowledge for telesales', 85, '0000-00-00 00:00:00', 1),
(11576, 11388, 59, 5, 0, 'Too long distance looking for non voice\n', 85, '0000-00-00 00:00:00', 1),
(11577, 11390, 59, 3, 0, 'Selected for  Babu Team for staff Role', 85, '0000-00-00 00:00:00', 1),
(11578, 11390, 89, 7, 0, 'Selected ', 59, '2022-12-09 06:03:32', 1),
(11579, 11395, 59, 5, 0, 'Comfort to work in non voice process,not open for targets will not sustain', 85, '0000-00-00 00:00:00', 1),
(11580, 11397, 59, 5, 0, 'Looking for non voice not suitable no Communication', 85, '0000-00-00 00:00:00', 1),
(11581, 11398, 59, 5, 0, 'No sustainability Career Gap not showing self interest on the job,Not much open with TxxampC too not suitable', 85, '0000-00-00 00:00:00', 1),
(11582, 11329, 59, 5, 0, 'Have 6 months in React have a huge expectation with the salary will not sustain in a long Final round reject by Gokul', 60, '0000-00-00 00:00:00', 1),
(11583, 11393, 59, 4, 0, 'Fresher for Sales he was into core for 2.5 yrs 5050 can give a try kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11584, 11394, 59, 5, 0, 'Too long Distance no Graduation  Long Career Gap Not much suitable for Sales Calls will not sustain ', 60, '0000-00-00 00:00:00', 1),
(11585, 11396, 24, 5, 0, 'he is looking non voice', 99, '0000-00-00 00:00:00', 1),
(11586, 11393, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-12-10 03:10:20', 1),
(11587, 11390, 88, 7, 0, 'Selected for RE', 89, '2022-12-10 04:16:03', 1),
(11588, 11401, 59, 4, 0, '1st level interview by thiyagu in job fair and asked him to come for a direct interview,Fresher  need to train him from the scratch ,kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11589, 11399, 59, 5, 0, 'Have Exp in Telecalling but not open for Telecalling agaiin and for MIS No Communication not suitable', 99, '0000-00-00 00:00:00', 1),
(11590, 11390, 59, 3, 0, 'Selected for  Babu Team for staff Role', 88, '2022-12-10 06:20:03', 1),
(11591, 11406, 59, 5, 0, 'No basic skills in JS  Have  lookin for testing  and Java profile', 99, '0000-00-00 00:00:00', 1),
(11592, 11407, 59, 5, 0, 'No Basic Skills In JS  Have  Looking  For Testing  And Java Profile.If he is coming back after learning  will give a try', 99, '0000-00-00 00:00:00', 1),
(11593, 11400, 59, 5, 0, 'Looking for Testing Profile', 99, '0000-00-00 00:00:00', 1),
(11594, 11412, 59, 5, 0, 'No Communication for MIS not open for sales Calls too not suitable', 99, '0000-00-00 00:00:00', 1),
(11595, 11415, 59, 5, 0, 'Too long Distance  Will not sustain in our roles fresher not ssuitale', 99, '0000-00-00 00:00:00', 1),
(11596, 11402, 59, 2, 0, 'Communication Good both orally and written,Distane need to see 40kms up and down he need time to confirm ', 85, '0000-00-00 00:00:00', 1),
(11597, 11410, 59, 3, 0, 'Selected for B2B - Banu Team in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(11598, 11411, 59, 4, 0, 'Profile not much good internal reference need to open a lot kindly check and let me know inout', 60, '0000-00-00 00:00:00', 1),
(11599, 11410, 53, 7, 0, 'Selected for b2B. Pls cnfrm the salary and DOJ.', 59, '2022-12-12 06:17:36', 1),
(11600, 11411, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-12-12 06:33:08', 1),
(11601, 11413, 59, 4, 0, 'Have few months exp in Star Health Career Gap is there he is focusing  much on the distance to be travelled', 60, '0000-00-00 00:00:00', 1),
(11602, 11413, 53, 1, 0, NULL, 59, '2022-12-12 06:34:57', 1),
(11603, 11401, 88, 5, 0, 'rejected', 59, '2022-12-12 06:39:24', 1),
(11604, 11410, 59, 3, 0, 'Selected for B2B - Banu Team in Consultant Role', 53, '2022-12-13 10:48:11', 1),
(11605, 11429, 59, 5, 0, 'No Communication Seems to be very slow not active will not sustain in our roles and handle our pressure', 99, '0000-00-00 00:00:00', 1),
(11606, 11424, 59, 5, 0, 'Looking for core Data scientist profile,will not sustain in our roles', 99, '0000-00-00 00:00:00', 1),
(11607, 11428, 59, 4, 0, 'Have Exp in Insurance Domain but focusing much in Renewals Collections,Have exp in sales calling too Salary is high than our budget Multi Language Kindly check and let  me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11608, 11385, 59, 5, 0, 'Have Exp in other domain and looking for Javascript Salary Exp is high too long distance will not sustain in our roles not suitable', 99, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(11609, 11419, 59, 5, 0, 'Not open for Target based roles will not sustain in other roles too not suitable', 85, '0000-00-00 00:00:00', 1),
(11610, 11414, 59, 5, 0, '5050 Profile,fresher career gap need to be trained a lot kindly check and let meknow your inputs', 85, '0000-00-00 00:00:00', 1),
(11611, 11409, 59, 5, 0, 'Looking for Testing or Java openings\n', 60, '0000-00-00 00:00:00', 1),
(11612, 11423, 59, 5, 0, 'No Communication too long distance too not suitable', 60, '0000-00-00 00:00:00', 1),
(11613, 11426, 59, 5, 0, 'No Communication looking for Salary growth only have exp in MIS long run doubts', 60, '0000-00-00 00:00:00', 1),
(11614, 11425, 59, 5, 0, 'No Communication Looking For Salary Growth Only Have Exp In MIS Long Run Doubts', 60, '0000-00-00 00:00:00', 1),
(11615, 11428, 53, 1, 0, NULL, 59, '2022-12-13 07:04:25', 1),
(11616, 11437, 59, 5, 0, 'Location constraint Processed for CRM but she is looking for Sales ,scheduled her for 2nd round but left without attending the next round and later understood that she is not ok with Target', 99, '0000-00-00 00:00:00', 1),
(11617, 11438, 59, 5, 0, 'Location Constraint Processed For CRM But She Is Looking For Sales ,Scheduled Her For 2nd Round But Left Without Attending The Next Round And Later Understood That She Is Not Ok With Target', 99, '0000-00-00 00:00:00', 1),
(11618, 11436, 59, 5, 0, 'Already attended and got rejected in Technical written task,Not open for TxxampC Need time to confirm need to train a lot if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11619, 11435, 59, 5, 0, 'Not open for telecaller Sales profile looking much for non voice and inbound callings\n', 99, '0000-00-00 00:00:00', 1),
(11620, 11432, 59, 2, 0, 'Communication is Good Have 8 months Exp in Recruitment but only IT exp Need to train a lot in non IT,long run doubts will confirm the profile later', 99, '0000-00-00 00:00:00', 1),
(11621, 11408, 59, 4, 0, '5050 Long career Gap seems to be over confident  need to train a lot kindly check and let me know your inputs\n', 85, '0000-00-00 00:00:00', 1),
(11622, 11408, 53, 1, 0, NULL, 59, '2022-12-14 05:26:05', 1),
(11623, 11456, 59, 4, 0, '5050 Profile Sustainability Doubts family need is there,No highest graduation only 10th  have 8 months exp in telecalling kindly check and let me jknow your inputs', 99, '0000-00-00 00:00:00', 1),
(11624, 11420, 59, 5, 0, 'Too long Distance ,no communication,not suitable for our roles', 99, '0000-00-00 00:00:00', 1),
(11625, 11457, 59, 4, 0, 'Fresher communication Ok Need to train a lot can give a try kindly check and let me know your interest.', 99, '0000-00-00 00:00:00', 1),
(11626, 11328, 59, 5, 0, 'Very Slow,Long Career Gap not much strong in basics of  JS  will not adapt to our working conditions not suitable', 99, '0000-00-00 00:00:00', 1),
(11627, 11459, 59, 5, 0, 'Looking for non voice process, have a long career gap not open for Sales Calls will not run in a long\n', 99, '0000-00-00 00:00:00', 1),
(11628, 11452, 59, 5, 0, 'Fresher  Looking for Java as a prior position,not much  comfort with Stipend her expectation is minimum 2.5LPA will not sustain in a long run', 99, '0000-00-00 00:00:00', 1),
(11629, 11460, 59, 5, 0, 'Not open up not suitable for telesales will not handle our Sales pressure', 60, '0000-00-00 00:00:00', 1),
(11630, 11456, 53, 1, 0, NULL, 59, '2022-12-15 04:48:59', 1),
(11631, 11457, 53, 1, 0, NULL, 59, '2022-12-15 04:49:56', 1),
(11632, 11453, 59, 5, 0, 'No basics in Javascript Ned to train a lot asked the candidate to wait for 2nd level to check with Gokul but he left without informing', 99, '0000-00-00 00:00:00', 1),
(11633, 11458, 59, 5, 0, 'No Communication no basics in the acounts not suitable for our roles', 99, '0000-00-00 00:00:00', 1),
(11634, 11463, 59, 4, 0, '5050 profile fresher for Telesales have Exp in backend kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11635, 11468, 59, 4, 0, 'Fresher Can give a try for B2B Calling need to be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(11636, 11469, 59, 5, 0, 'His Focus is into Non voice process and not much ideas into voice process Long distance and asked him to wait for 2nd level but left without attending the round', 99, '0000-00-00 00:00:00', 1),
(11637, 11466, 59, 4, 0, 'Had a telephonic discussion with the candidate fresher can be trained Ready to relocate chennai can give a try kindly have a virtual round and let me know your inputs\n', 60, '0000-00-00 00:00:00', 1),
(11638, 11475, 59, 3, 0, 'Selected for Mani Team    Staff Role \n                 Communication Ok Have Exp As Medical Rep For An Year,Need To Be Trained In Our Domain Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(11639, 11466, 53, 1, 0, NULL, 59, '2022-12-16 06:00:42', 1),
(11640, 11465, 59, 2, 0, '5050 1 yr gap 3 months exp in IT with 16K had some certification course in Front end have basics in javascript open for internship and employment  but need some  time to  confirm his next schedule will check once and confirm ', 99, '0000-00-00 00:00:00', 1),
(11641, 11467, 59, 2, 0, 'He was outside should call later\n', 99, '0000-00-00 00:00:00', 1),
(11642, 11467, 59, 2, 0, 'He was outside should call later\n', 99, '0000-00-00 00:00:00', 1),
(11643, 11475, 86, 4, 0, 'Selected For Next Round', 59, '2022-12-16 06:18:47', 1),
(11644, 11463, 89, 1, 0, NULL, 59, '2022-12-16 06:20:02', 1),
(11645, 11468, 53, 1, 0, NULL, 59, '2022-12-16 06:25:04', 1),
(11646, 11475, 18, 7, 3, 'Selected for Mani Team Immed Joiner. Negotiate the salary', 86, '2022-12-17 10:58:15', 1),
(11647, 11480, 59, 5, 0, 'Having medical issue a lot will not suit in telecalling voice not clear not suitable', 99, '0000-00-00 00:00:00', 1),
(11648, 11479, 59, 5, 0, 'Fresher no basics in  Javascript too long distance but can relocate and stay in aunt home near by  need to learn a lot let him come back after learning', 99, '0000-00-00 00:00:00', 1),
(11649, 11473, 59, 5, 0, 'Communication orally managable no relevant Exp have exp in sales but not interested towards that.she is into medical treatment will not sustain in a long ', 99, '0000-00-00 00:00:00', 1),
(11650, 11384, 59, 5, 0, 'Looking for Java openings no basic knowledge in Javascript', 99, '0000-00-00 00:00:00', 1),
(11651, 11481, 59, 5, 0, 'Need to open a lot will not sustain and handle the sales pressure not suitable', 99, '0000-00-00 00:00:00', 1),
(11652, 11486, 74, 1, 0, NULL, 99, '0000-00-00 00:00:00', 1),
(11653, 11491, 59, 5, 0, 'Just 3 months Exp in IT recrutiment(2018) 2 yrs in Bank Clerical Profile 2 yrs gap due to marriage now looking for recruitment very high Salary Exp not ready to come down.Communication Average no basics in the recruitment Need to train from Scratch Will not handle our work pressure', 99, '0000-00-00 00:00:00', 1),
(11654, 11478, 59, 2, 0, 'Not much strong in Basic Skills can be trained a lot not much open with TxxampC if he comes back let us try ', 99, '0000-00-00 00:00:00', 1),
(11655, 11493, 59, 5, 0, 'No basic ideas in the accounts average communicaiton no Bike Looking only for salary hike in 6 months looking for opportunity only for salary not suitable', 99, '0000-00-00 00:00:00', 1),
(11656, 10760, 59, 5, 0, 'Preparing for Govt Exams full focus into exams and for time being looking for opportunities, he is very clear that he will sustain in a long in  IT', 99, '0000-00-00 00:00:00', 1),
(11657, 11482, 59, 5, 0, 'Have a long Exp in Customer Support mostly inbound Fresh to insurance Domain Local Language Just Manageable Current Salary is very high 4.84 LPA,Will not sustain and handle our Sales not suitable', 99, '0000-00-00 00:00:00', 1),
(11658, 11447, 59, 5, 0, 'too long Distance up and down 46kms also holding an offer for 20K in Testing  Role will not join us not suitable', 99, '0000-00-00 00:00:00', 1),
(11659, 11501, 59, 5, 0, 'Fresher for IT Need time  to confirm the TxxampC no basics  Family settled willl not sustain in our roles not suitable', 99, '0000-00-00 00:00:00', 1),
(11660, 11461, 59, 5, 0, 'No communication, but speaking sounds good,too long distance up and down 50 kms,No Wrtten Skills have exp in telecalling but not open for the same again and looking for recruiter role.Will not sustain in our Roles not suitable', 99, '0000-00-00 00:00:00', 1),
(11661, 11483, 59, 5, 0, 'Too long Distance  up and down 60 kms a month back he joined a company and looking for change with the salary hike', 99, '0000-00-00 00:00:00', 1),
(11662, 11515, 59, 5, 0, 'Too long Distance up and down 50kms Have Exp in Sales but not open for same and looking for MIS Average Communication will not sustain', 99, '0000-00-00 00:00:00', 1),
(11663, 11522, 59, 5, 0, 'Too Long Distance not much comfortable with the distance will not sustain ', 99, '0000-00-00 00:00:00', 1),
(11664, 11520, 59, 5, 0, 'Have 6 months Exp in Collection Calls but not much flow with the communication will not sustain and handle our pressure', 85, '0000-00-00 00:00:00', 1),
(11665, 11516, 59, 4, 0, 'Have 6 months Exp in Telecalling Collection Can be trained for our role,Can give a try  kindly check and let  me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11666, 11525, 59, 5, 0, '6 months back we offered and she didnt respond the calls later  now she appeared for the role and asking for huge salary hike  earlier we offered 2.04 LPA', 99, '0000-00-00 00:00:00', 1),
(11667, 11505, 59, 2, 0, 'Have Exp in Sales but not a longer one.Worked in 3 companies 3 different domain and have a health issue he is into treatment for Rheumatoid arthritis. He left bajaj due to work pressure. Kindly hold this profile, will confirm the status. Salary Exp is more than his expeirence', 99, '0000-00-00 00:00:00', 1),
(11668, 11511, 59, 2, 0, 'Fresher have a knowledge in React Can be trained 2nd round interviewed by manikandan,he was ok with TxxampC but need to confirm once, Need to schedule him for final round with Gokul', 99, '0000-00-00 00:00:00', 1),
(11669, 11514, 59, 2, 0, 'Have Basic Skills in React Can be trained but he need time to confirm on the TxxampC if he comes back let us try\n', 99, '0000-00-00 00:00:00', 1),
(11670, 11518, 59, 3, 0, 'Selected for Syed Team in Staff Role          \n       Have Exp In Insurance Sales Can Be Trained For Our Profile Kindly Check And Let Me Know Your Inputs', 99, '0000-00-00 00:00:00', 1),
(11671, 11523, 74, 5, 0, 'She is not ok with the profile and not fit for team', 99, '0000-00-00 00:00:00', 1),
(11672, 11517, 24, 5, 0, '1st round selected but 2nd round abscond , number RNR', 85, '0000-00-00 00:00:00', 1),
(11673, 11498, 24, 5, 0, 'not suitable for sales', 85, '0000-00-00 00:00:00', 1),
(11674, 11504, 59, 2, 0, 'Fresher Have basic skills in JS,Need to check for his sustainability his sister is in Accenture Need time to confirm on the TxxampC if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11675, 11518, 57, 4, 0, 'Candiate is ok, already he have Experience with Same process,Communication also good ', 59, '2022-12-20 04:18:26', 1),
(11676, 11516, 53, 1, 0, NULL, 59, '2022-12-20 04:40:45', 1),
(11677, 8457, 59, 5, 0, 'Communication Is Good, Fresher For Recruitment, Have 3 Months Internship Exp In SAP Profiles Only. Looking Much For IT Recruitment Positions Only, Not Sure To Handle The Other Domains. Salary Exp In Very High Min 15K Being A Fresher. Sustainability Doubts A Lot, Let Us Hold And Decide Later.', 59, '2022-12-20 06:49:10', 1),
(11678, 8509, 59, 5, 0, 'Have Few Months Exp In Recruitment,Career Gap Is There,Long Run Doubt With This Profile,Can Hold This Profile And Let Us Try Later', 59, '2022-12-20 06:49:28', 1),
(11679, 8518, 59, 5, 0, 'Candidate Didnt Turn with her confirmation', 59, '2022-12-20 06:50:31', 1),
(11680, 8545, 59, 5, 0, 'Not suitable', 59, '2022-12-20 06:50:54', 1),
(11681, 8570, 59, 5, 0, 'Communication Average,Have Exp For A Year But Need To Check Clearly,Not Much Exposure To The Recruitment,Long Run DoubtsCommunication Average,Have Exp For A Year But Need To Check Clearly,Not Much Exposure To The Recruitment,Long Run Doubts', 59, '2022-12-20 06:51:16', 1),
(11682, 8574, 59, 5, 0, 'Communication Is Good, Have Basic Exp In HR, But Not In Recruitment, Her Current Pay Is Very High Also Her Expectation Is Also High, No Exp In Sourcing Screening,', 59, '2022-12-20 06:51:55', 1),
(11683, 8646, 59, 5, 0, 'Communication Ok, Have Only 6 Months Exp In Recruitment, Need To Relocate From Madurai But Her Salary Expect Is Around 18K.His Current Salary Is 10K.Her Sustainability Doubts In The Long Run Comparing Her Salary Expectation.', 59, '2022-12-20 06:52:18', 1),
(11684, 8696, 59, 5, 0, 'Communication Ok,Have Exp In Telecalling And 3 Months In Recruitment,Need To Be Trained,5050 Profile,Not Comfirtable With TxxampC', 59, '2022-12-20 06:52:40', 1),
(11685, 8815, 59, 5, 0, 'Not suitable', 59, '2022-12-20 06:53:08', 1),
(11686, 8820, 59, 5, 0, 'Didnt Turn with her confirmation', 59, '2022-12-20 06:53:35', 1),
(11687, 8827, 59, 5, 0, 'Communication Is Good, Have Exp As A Research Executive In Native, Ready To Relocate And Can Give A Try For The MIS Role, Need Some Time To Confirm This Profile, Will Check Again For The Sustainability And Let You Know.Lets Hold This Profile', 59, '2022-12-20 06:54:09', 1),
(11688, 8872, 59, 5, 0, 'didnt Turn back with her confirmation\n', 59, '2022-12-20 06:54:34', 1),
(11689, 8883, 59, 5, 0, 'will not sustain not suitable', 59, '2022-12-20 06:55:49', 1),
(11690, 8934, 59, 5, 0, 'Communication Ok,Fresher For Recruitment,Can Give A Try  But Her Min Is Very High And Not Ready To Come  Down, Given Her Time If She Comes Back Lets See', 59, '2022-12-20 06:56:56', 1),
(11691, 11502, 59, 5, 0, 'Will not sustain holding 3 offers in hand with min 2.2 LPA to 4.5 LPA Looking for CMMI Level companies will not join and sustain', 99, '0000-00-00 00:00:00', 1),
(11692, 11513, 59, 5, 0, 'Need to open a lot no basics in skills will not handle our work pressure and not suitable for our position', 99, '0000-00-00 00:00:00', 1),
(11693, 11532, 59, 3, 0, 'Selected for B2B Consultant Role', 60, '0000-00-00 00:00:00', 1),
(11694, 11503, 59, 5, 0, 'Fresher No basics in JS,Stammering a lot will not sustain and handle our work  not suitable not much comfort in TxxampC', 60, '0000-00-00 00:00:00', 1),
(11695, 11532, 53, 7, 0, 'selected for b2 . pls cnfrm the salary and DOJ', 59, '2022-12-21 04:19:00', 1),
(11696, 11518, 88, 7, 0, 'Candidate is experience xxamp we can provided him a take home 15.5per month', 57, '2022-12-22 12:06:18', 1),
(11697, 11475, 60, 1, 0, NULL, 18, '2022-12-22 11:19:50', 1),
(11698, 11518, 59, 3, 0, 'Selected for Syed Team in Staff Role          \n       Have Exp In Insurance Sales Can Be Trained For Our Profile Kindly Check And Let Me Know Your Inputs', 88, '2022-12-22 12:01:13', 1),
(11699, 11495, 59, 4, 0, 'Have Calling Exp with several companies can be trained in our roles,Distance need to focus,kindly check and let me know you interest', 85, '0000-00-00 00:00:00', 1),
(11700, 11543, 59, 5, 0, 'Preferably  looking for non voice Process no communication as per the expectation for the sales not suitable', 85, '0000-00-00 00:00:00', 1),
(11701, 11547, 59, 4, 0, 'Have Calling Exp With Several Companies Can Be Trained In Our Roles,Distance Need To Focus,Kindly Check And Let Me Know You Interest', 85, '0000-00-00 00:00:00', 1),
(11702, 11548, 59, 2, 0, 'Gppd Communication having multi language skills Have exp in Collections Renewals Calling and open for Sales Calling too but his current salary is too high for Renewals 25K and Exp is min 4.2 LPA  30 days notice period Left  without attending  the 2nd level due to emergency if he comes back let us try in our roles', 85, '0000-00-00 00:00:00', 1),
(11703, 11538, 97, 5, 0, 'he  already Attends interview 2m back. has exp in react js.  Sustainability doubts. ', 85, '0000-00-00 00:00:00', 1),
(11704, 11550, 97, 5, 0, 'Continuously change his job  yearly once.  no Sustainability. has some career gap...', 85, '0000-00-00 00:00:00', 1),
(11705, 11528, 59, 5, 0, 'Not open for Sales Calling,holding 2 offers in hand no sustainability in the previous Exp Salary Exp is high than his experience', 60, '0000-00-00 00:00:00', 1),
(11706, 11545, 59, 5, 0, 'Have Basic knowledge,having a plan to go for higher studies full time and looking for opportunities in time being not open for TxxampC ,his siblings both in CTS amazon will not run in a long not suitable', 60, '0000-00-00 00:00:00', 1),
(11707, 11544, 59, 5, 0, 'Not clear with th skills he want to work, not much active no focus  Long career Gap he got terminated during the training period due to poor performance not suitable for us will not sustain ', 60, '0000-00-00 00:00:00', 1),
(11708, 11495, 53, 1, 0, NULL, 59, '2022-12-22 04:52:13', 1),
(11709, 11547, 53, 1, 0, NULL, 59, '2022-12-22 04:52:42', 1),
(11710, 11556, 59, 3, 0, 'Selected for  Sarath Team in staff Role', 99, '0000-00-00 00:00:00', 1),
(11711, 11559, 59, 3, 0, 'Selecetd for Node in internship for  5 months with 5K with 3yrs SA 10-12K', 99, '0000-00-00 00:00:00', 1),
(11712, 11560, 59, 5, 0, 'No basic skills in JS not much active will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11713, 11532, 59, 3, 0, 'Selected for B2B Consultant Role', 53, '2022-12-23 04:18:03', 1),
(11714, 11484, 97, 5, 0, 'married xxamp have 1yr kid not much strong in html xxamp CSS.', 99, '0000-00-00 00:00:00', 1),
(11715, 11571, 59, 2, 0, 'Fresher Self learn in MERN can give a try for NodeJs Candidate need to come back with his confirmation on TxxampC if he comes let us try', 99, '0000-00-00 00:00:00', 1),
(11716, 11565, 24, 5, 0, 'he is not interested in sales', 85, '0000-00-00 00:00:00', 1),
(11717, 11577, 59, 4, 0, 'Communication Ok Bit Attitude No relevant Exp in Sales 5050 Can give a try kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11718, 11577, 11, 1, 0, NULL, 59, '2022-12-26 06:41:29', 1),
(11719, 11556, 51, 7, 0, 'ok and also informed Sir about this candidate ', 59, '2022-12-27 09:58:18', 1),
(11720, 11580, 59, 5, 0, 'No basics in Javascript holding an offer for 12.5K but not yet released looking for some more and open for learning if he comes back later will check his profile for next level', 99, '0000-00-00 00:00:00', 1),
(11721, 11570, 59, 5, 0, 'Will not sustain have exp in MIS in  TCS current Pay is 2.8 LPA looking for change due to the need in salary hike Service notice 14 Feb 2023 is LWD will not sustain and not suitable in our roles', 99, '0000-00-00 00:00:00', 1),
(11722, 11590, 24, 5, 0, 'expext salary high 25k, so rejecte with ramesh sir', 99, '0000-00-00 00:00:00', 1),
(11723, 11551, 59, 5, 0, 'not much strong with basics,Need to learn have some basics is Figma Need time to confirm the TxxampC if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11724, 11558, 59, 5, 0, 'No basics in JS,Need to open a lot not much comfort in TxxampC Need to train him from scratch if he comes back let us try\n', 99, '0000-00-00 00:00:00', 1),
(11725, 11587, 59, 3, 0, 'Selected for Thiyagarajan Team in Staff Role', 60, '0000-00-00 00:00:00', 1),
(11726, 11589, 59, 5, 0, 'Average Communication not  open for sales calls checked her for Operations written skills not upto the mark she has some interest in Tailoring and doing a part time work too will not sustain and not suitable in our roles', 60, '0000-00-00 00:00:00', 1),
(11727, 11572, 59, 2, 0, 'Have basics skills in JS know basics in PHP Python too have 8 months internship Exp Min exp is 10K in the beginning can give a try for our roles need to schedule him for the virtual based on Gokulxquots Availability', 60, '0000-00-00 00:00:00', 1),
(11728, 11587, 16, 4, 0, 'Shortlisted', 59, '2022-12-27 05:26:24', 1),
(11729, 11587, 88, 7, 0, 'Selected for RE', 16, '2022-12-27 05:32:30', 1),
(11730, 11592, 59, 2, 0, 'Fresher have basic knowledge in JS Can be trained 2nd interview by Kavya final round pending with Gokul open for TxxampC', 99, '0000-00-00 00:00:00', 1),
(11731, 11597, 59, 2, 0, 'already attended a month back 5050 gave him a joining but he didnxquott not he is looking again and seems doubtful Lets hold and try need to check with Gokul', 99, '0000-00-00 00:00:00', 1),
(11732, 11575, 59, 5, 0, 'Communication Very Average Too long distance just a month back joined a company and looking for Salary Growthif he relocate and open for the same CTC we can try', 99, '0000-00-00 00:00:00', 1),
(11733, 11608, 59, 2, 0, 'Having basis knowledge in JS Can be trained candidate need time to give his confirmation on the TxxampC if he comes back let us try ', 99, '0000-00-00 00:00:00', 1),
(11734, 11605, 59, 5, 0, 'Fresher Career Gap Having Medical Issue Spinal Problem preparing for bank exams will not sustain in a long for Sales Even she got some offer in telecalling and not joined   due to health scenario', 99, '0000-00-00 00:00:00', 1),
(11735, 11610, 59, 5, 0, 'No Communication only back end Exp will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11736, 11611, 59, 2, 0, 'Looking for internship  cum Employment  or Project in Java Python They are in final semester yet to complete the graduation Need to  confirm the profile', 99, '0000-00-00 00:00:00', 1),
(11737, 11612, 59, 2, 0, 'Looking For Internship  Cum Employment  Or Project In Java Python They Are In Final Semester Yet To Complete The Graduation Need To  Confirm The Profile', 99, '0000-00-00 00:00:00', 1),
(11738, 11614, 59, 2, 0, 'Looking For Internship  Cum Employment  Or Project In Java Python They Are In Final Semester Yet To Complete The Graduation Need To  Confirm The Profile', 99, '0000-00-00 00:00:00', 1),
(11739, 11615, 59, 2, 0, 'Looking For Internship  Cum Employment  Or Project In Java Python They Are In Final Semester Yet To Complete The Graduation Need To  Confirm The Profile', 99, '0000-00-00 00:00:00', 1),
(11740, 11615, 59, 2, 0, 'Looking For Internship  Cum Employment  Or Project In Node They Are In Final Semester Yet To Complete The Graduation Need To  Confirm The Profile', 59, '2022-12-29 07:20:42', 1),
(11741, 11614, 59, 2, 0, 'Looking For Internship  Cum Employment  Or Project In MERN They Are In Final Semester Yet To Complete The Graduation Need To  Confirm The Profile', 59, '2022-12-29 07:21:06', 1),
(11742, 11598, 74, 7, 0, 'she is ok with the profile professionality, highly job need talk active and fit for team, sister working in govt oriented job,,,father in foreign and she is intrested in job also have laptop expected 10 to 11k kindly check once and confirm. immediate joining', 85, '0000-00-00 00:00:00', 1),
(11743, 11584, 59, 5, 0, 'Have basic knowledge in React their expectations are very high they have commitment of 3L payment to the institute post joining the job will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11744, 11609, 59, 5, 0, 'Have Basic Knowledge In React Their Expectations Are Very High They Have Commitment Of 3L Payment To The Institute Post Joining The Job Will Not Sustain And Not Suitable', 99, '0000-00-00 00:00:00', 1),
(11745, 11617, 59, 5, 0, 'Not open for TxxampC Sustainabilty Doubts on the profile', 99, '0000-00-00 00:00:00', 1),
(11746, 11619, 59, 2, 0, 'Having basic skills knowledge need to train a lot 36kms up and down need time to confirm with his parents if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11747, 11105, 24, 5, 0, 'rejected', 24, '2022-12-30 10:51:58', 1),
(11748, 11618, 59, 5, 0, 'Fresher just started learning python and the distance is too long need time to confirm on the TxxampC if he comes back let us check', 99, '0000-00-00 00:00:00', 1),
(11749, 11598, 59, 5, 0, 'Area Manager Round Reject', 74, '2022-12-30 05:20:34', 1),
(11750, 11626, 97, 5, 0, 'Has exp in direct sales .. no calling exp .. no understanding skills.  and 1hr travel to our place', 99, '0000-00-00 00:00:00', 1),
(11751, 11620, 97, 5, 0, 'has yr of exp in mern. not much good xxamp sal expt too high... Sustainability doubts..', 99, '0000-00-00 00:00:00', 1),
(11752, 11633, 97, 5, 0, 'long distance 1hr travel .... no communication not suit for MIS ', 99, '0000-00-00 00:00:00', 1),
(11753, 11635, 59, 5, 0, 'Not much strong with basics too long distance and ready to relocate but  his exp is high and will not sustain in our roles.long run doubts ', 99, '0000-00-00 00:00:00', 1),
(11754, 11639, 59, 5, 0, 'Looking for MIS Fresher Too long Distance Attitude issues  salary exp is min 3.5 LPA not suitable ', 99, '0000-00-00 00:00:00', 1),
(11755, 11637, 59, 4, 0, 'Communication Ok 5050 Profile Have Field Sales Exp in Airtel Need to be trained a lot kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11756, 11632, 59, 3, 0, 'Selected for Sarath Team in Staff Role', 99, '0000-00-00 00:00:00', 1),
(11757, 11636, 59, 5, 0, 'Fresher MSc graduate and his min Exp is 25K and not ready to come down will not sustain in our roles', 99, '0000-00-00 00:00:00', 1),
(11758, 11604, 59, 5, 0, 'Fresher for IT Domain and his last drawn MCTC was 38K He is not ok with the pay like internship and Employment Salary also he will not  sustain and will not join', 99, '0000-00-00 00:00:00', 1),
(11759, 11632, 51, 4, 0, 'ok with him', 59, '2023-01-02 03:18:00', 1),
(11760, 11646, 59, 5, 0, 'Not much strong with Basics Sustainability doubts in this profile not suitable', 99, '0000-00-00 00:00:00', 1),
(11761, 11587, 59, 3, 0, 'Selected for Thiyagarajan Team in Staff Role', 88, '2023-01-02 07:00:08', 1),
(11762, 11637, 44, 5, 0, 'NOt fit for sales', 59, '2023-01-02 07:29:14', 1),
(11763, 11581, 59, 2, 0, 'Have basic knowledge in  the skills can be trained need to give his confirmation on the TxxampC if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11764, 11632, 29, 7, 2, 'sarath team, sal 17k net, after 3 months 5 lac biz increase to 21k net salary', 51, '2023-01-03 11:14:49', 1),
(11765, 11651, 59, 5, 0, 'No Communication not open for telesales too appeared for MF but no basic ideas will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11766, 11650, 59, 5, 0, 'No communication need to open a lot no basic ideas in MIS and not suitable for other openings too ', 99, '0000-00-00 00:00:00', 1),
(11767, 11648, 59, 5, 0, 'No basic ideas in the skills will not sustain and handle our work not suitable', 99, '0000-00-00 00:00:00', 1),
(11768, 11647, 59, 5, 0, 'No basic ideas in Skills too long Distance not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(11769, 11652, 59, 5, 0, 'Not much strong with the basics in python Came along with the Friends sustainability doubts on the profile Not much comfort with TxxampC', 85, '0000-00-00 00:00:00', 1),
(11770, 11653, 59, 5, 0, 'Not Much Strong With The Basics In Python Came Along With The Friends Sustainability Doubts On The Profile Not Much Comfort With TxxampC', 85, '0000-00-00 00:00:00', 1),
(11771, 11654, 59, 5, 0, 'Not Much Strong With The Basics In Python Came Along With The Friends Sustainability Doubts On The Profile Not Much Comfort With TxxampC', 85, '0000-00-00 00:00:00', 1),
(11772, 11632, 59, 3, 0, 'Selected for Sarath Team in Staff Role', 29, '2023-01-04 10:20:03', 1),
(11773, 11660, 59, 5, 0, 'Not open up No basic Skills also will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11774, 11642, 59, 5, 0, 'Fresher for IT Long Career Gap had his own business for 1.5 yrs  not much strong with the basics Salary Exp is very high not suitable', 99, '0000-00-00 00:00:00', 1),
(11775, 11661, 59, 5, 0, 'Handicapped and Frequent Job Changes Handling our work and long run will not be. not suitable', 99, '0000-00-00 00:00:00', 1),
(11776, 11613, 59, 5, 0, 'Fresher for IT, Family need is there  but not much comfortable in TxxampC  sustainability Doubts on this Profile', 99, '0000-00-00 00:00:00', 1),
(11777, 11658, 59, 5, 0, 'Very high Salary Exp Fresher for our Sales Calls will not sustain in our roles and handle our pressure Communication is Good checked for operations too but Salary Exp is very high', 99, '0000-00-00 00:00:00', 1),
(11778, 11666, 59, 3, 0, 'Selected for Bhavani Team - Consultant  Role', 85, '0000-00-00 00:00:00', 1),
(11779, 11664, 59, 4, 0, 'Have 1 yr exp in Angular have basic knowledge in PHP Last drwan salary was 15K Need to negotiate and confirm before that need to analyse by giving him a task', 85, '0000-00-00 00:00:00', 1),
(11780, 11663, 59, 5, 0, 'Long Career Gap No Relevant Exp Will not sustain and handle Calls not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(11781, 11662, 59, 5, 0, 'Fresher no relevant Exp he was into QC Have a lot of personal Family issue will not have a focus into work will not sustain in long  not suitable', 85, '0000-00-00 00:00:00', 1),
(11782, 11556, 29, 1, 0, NULL, 51, '2023-01-04 03:54:45', 1),
(11783, 11666, 100, 7, 0, 'communication ok,  having sales experience also, candidate ok for our role. kindly check .', 59, '2023-01-04 05:09:02', 1),
(11784, 11664, 27, 5, 0, 'Not Complete the task', 59, '2023-01-04 05:35:06', 1),
(11785, 11627, 59, 5, 0, 'Very high Salary Package with 50K and not open to come down', 99, '0000-00-00 00:00:00', 1),
(11786, 11665, 59, 5, 0, 'Have Exp in Operations Calling Bit of Attitude final round reject by gokul.Doubtful Profile', 99, '0000-00-00 00:00:00', 1),
(11787, 11670, 59, 5, 0, 'Fresher not much strong in basics need to be trained a lot  not much comfort in TxxampC Need time to confirm from his side if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11788, 11674, 59, 2, 0, 'Fresher for our sales not suitable for B2B can give a try in PC need to be trained  salart exp is high candidate need time to give his confirmation on the profile if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11789, 11668, 74, 7, 0, 'she is ok  with the profile completed BE civil and prepared for 2 years tnpsc and clared priliminary also and joined in ifb as a front desk after one year she releived due to tnpsc exam and not cleared ...6 month experience in byjuss as a telecaller in aakash institute 6 month bond basis completed bond on sep 2022 getting 10k last salary......voice claealy profiled set for my team expected 12.5k ---12k ok with the profile have laptop and joining monday is possible.....father department store shop in thanjavur and sister completed bE average family and good exposure have laptop kindly check and confirm once. completed 2 nd round and AM confirmed for on board', 85, '0000-00-00 00:00:00', 1),
(11790, 11600, 59, 3, 0, 'Selected for Manikandan team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(11791, 11676, 59, 5, 0, 'No basics will not sustain in our roles for a long not suitable', 99, '0000-00-00 00:00:00', 1),
(11792, 11668, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2023-01-05 12:48:31', 1),
(11793, 11675, 59, 3, 0, 'Selected for Sarath Team  - PF PT', 85, '0000-00-00 00:00:00', 1),
(11794, 11666, 60, 1, 0, NULL, 100, '2023-01-05 05:15:23', 1),
(11795, 11600, 86, 4, 0, 'Selected for next Round', 59, '2023-01-05 05:56:13', 1),
(11796, 11675, 51, 4, 0, 'ok', 59, '2023-01-05 05:58:04', 1),
(11797, 11600, 18, 7, 4, 'Selected For Mani Team. Ready To Join On Monday Or Post Pongal. Salary Is 20k Net Take Home+ PF. ', 86, '2023-01-05 07:19:57', 1),
(11798, 11677, 59, 2, 0, 'Have a basic Python skills can be trained open for TxxampC need to schedule for final round with Gokul based on his availability', 99, '0000-00-00 00:00:00', 1),
(11799, 11678, 59, 5, 0, 'Have a knowledge in Oracle and focusing much in that for time being he is looking  in react and no basic skills will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11800, 11692, 59, 5, 0, 'Not much open for Telecaller Sales looking for inbound calls will not handle the work pressure', 99, '0000-00-00 00:00:00', 1),
(11801, 11691, 59, 2, 0, 'appeared for React have exp in sales checked with 2nd round in IT manikandan but not suitable pushed him for sales too.he needs to come back with his confirmation', 99, '0000-00-00 00:00:00', 1),
(11802, 11600, 60, 1, 0, NULL, 18, '2023-01-06 10:59:37', 1),
(11803, 11693, 59, 5, 0, 'Fresher ,Preferred Java and salary Exp is very high not ready to come down not open for TxxampC not suitable', 99, '0000-00-00 00:00:00', 1),
(11804, 11695, 59, 5, 0, 'Not much good with the basics will not run in a  long not suitable', 99, '0000-00-00 00:00:00', 1),
(11805, 11696, 59, 5, 0, 'Not suitable not open up will not sustain in our roles ', 99, '0000-00-00 00:00:00', 1),
(11806, 11697, 59, 5, 0, 'No Communication Career Gap not open up will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11807, 11694, 59, 5, 0, 'Not much strong with the basics getting married in a year 2 EB are working in IT  sustainability doubts in this profile   not suitable', 99, '0000-00-00 00:00:00', 1),
(11808, 11606, 59, 2, 0, 'Fresher have 6 months internship Exp Having basic knowledge can give a try for our React open for TxxampC Based on Gokulxquots availability need to schedule him for the interview', 99, '0000-00-00 00:00:00', 1),
(11809, 11688, 97, 5, 0, 'Has Exp  in sales  ..1yr two companines .. no stability .. will not sustain in our roles\n', 99, '0000-00-00 00:00:00', 1),
(11810, 11690, 59, 5, 0, 'no basics in the skills will not get adapt with our work  and not suitable', 85, '0000-00-00 00:00:00', 1),
(11811, 11698, 97, 5, 0, 'no communication .. for renewals .. she ok with sales again has exp too.. average convincing skills.. not suit for roles..', 85, '0000-00-00 00:00:00', 1),
(11812, 11701, 59, 4, 0, 'have a 3months internship know basics can analyse the candidate in Task kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11813, 11704, 59, 2, 0, 'Have basic skills in React having freelance exp open for TxxampC need to check with Gokul based on his availability', 60, '0000-00-00 00:00:00', 1),
(11814, 11701, 27, 1, 0, NULL, 59, '2023-01-06 04:59:02', 1),
(11815, 11675, 29, 7, 2, 'sarath team, ref resume for salary and increment', 51, '2023-01-06 06:11:13', 1),
(11816, 11706, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11817, 11709, 59, 5, 0, 'Fresher not strong with the basics, not much comfort with the TxxampC Long run doubts if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11818, 11710, 59, 5, 0, 'Not open for TxxampC No basic skills nothing learnt in the lst 2 months gap not suitable', 85, '0000-00-00 00:00:00', 1),
(11819, 11683, 59, 5, 0, 'Not answering any thing no basics skills too not suitable will not handle our work pressure', 99, '0000-00-00 00:00:00', 1),
(11820, 11593, 24, 4, 0, 'Select for next round 15k expected.. but fresher only.. worth for 13k..', 99, '0000-00-00 00:00:00', 1),
(11821, 11708, 59, 5, 0, 'Fresher  Need to train a lot he was interested in several domain earlier worked in Cine Field Sustainability doubts  Need time to confirm his profile,Bit Attitude not ready to accept seems to have a head weight', 99, '0000-00-00 00:00:00', 1),
(11822, 11593, 88, 7, 0, 'Selected for RE', 24, '2023-01-07 01:00:31', 1),
(11823, 11711, 59, 5, 0, 'Fresher have a basic  knowledge in Java only,Tried for training but technical round reject by Gokul', 85, '0000-00-00 00:00:00', 1),
(11824, 11712, 59, 5, 0, 'Discussed and suggested the salary breakup and they were not ready alos looking for high salary', 85, '0000-00-00 00:00:00', 1),
(11825, 11713, 59, 4, 0, 'Fresher Communication Average Internal Team reference 5050 Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11826, 11714, 59, 3, 0, 'HRMS Issue Testing', 85, '0000-00-00 00:00:00', 1),
(11827, 11715, 59, 3, 0, 'Selected for Shanmugam Team in PF PT', 99, '0000-00-00 00:00:00', 1),
(11828, 11705, 59, 2, 0, 'Fresher need to train alot too long distance ready to relocate but not much comfort in TxxampC if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11829, 11688, 88, 7, 0, 'Selected for RE(16K take home)', 89, '2023-01-07 03:47:15', 1),
(11830, 11593, 59, 3, 0, 'Selected for Suthagar Team in Staff Role', 88, '2023-01-07 03:48:54', 1),
(11831, 11688, 59, 3, 0, 'Selected for Babu Team in PF/ESI/PT', 88, '2023-01-07 03:50:55', 1),
(11832, 11712, 57, 4, 1, 'candidate is ok he have 1yr experience bajaj finz , language and sales skills ok ,pls negotiate the salary and joining date', 59, '2023-01-07 04:06:21', 1),
(11833, 11714, 57, 4, 0, 'candidate is ok , kindly confirm the joining data and salary', 59, '2023-01-07 04:07:26', 1),
(11834, 11713, 57, 5, 0, 'fresher language and skills problem', 59, '2023-01-07 04:08:05', 1),
(11835, 11715, 29, 7, 3, 'shanmugam team, ref resume for salary and increment', 59, '2023-01-07 04:09:44', 1),
(11836, 11718, 59, 2, 0, 'Final Round Completed with Gokul Have Exp but not a relevant one Salary Exp is very high we have commited her 17K if she comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11837, 11719, 59, 5, 0, 'Fresher for IT not much strong with the basics in Python salary exp is high and not open for TxxampC', 99, '0000-00-00 00:00:00', 1),
(11838, 11684, 59, 5, 0, 'Not Active Seems to be slow in the pace have basic knowledge in python but suitability doubts on the profile', 99, '0000-00-00 00:00:00', 1),
(11839, 11722, 59, 5, 0, 'Fresher need to open a lot will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11840, 11723, 59, 5, 0, 'Too Long Distance looking for Core Java she is from Manali Married will not sustain', 85, '0000-00-00 00:00:00', 1),
(11841, 11724, 59, 5, 0, 'looking for Java and no basics in Javascript will not sustain not much comfort in TxxampC Family well settled Govt staff vAO', 85, '0000-00-00 00:00:00', 1),
(11842, 11726, 59, 5, 0, 'Have Telecalling Exp but in different domain and his current pay is 4 LPA for just 4 months exp not ready to come down will not join us', 85, '0000-00-00 00:00:00', 1),
(11843, 11720, 59, 5, 0, 'Attitude Not suitable for sales Telesales will not sustain and handle our pressure', 85, '0000-00-00 00:00:00', 1),
(11844, 11725, 59, 5, 0, 'Left without attending the interview\n', 85, '0000-00-00 00:00:00', 1),
(11845, 11454, 59, 5, 0, 'Not open up no communication will not handle our sales calls', 99, '0000-00-00 00:00:00', 1),
(11846, 11675, 59, 3, 0, 'Selected for Sarath Team  - PF PT', 29, '2023-01-09 06:11:24', 1),
(11847, 11715, 59, 3, 0, 'Selected for Shanmugam Team in PF PT', 29, '2023-01-09 06:13:26', 1),
(11848, 11592, 59, 3, 0, '5M Intern 5 K then overall 3 yr SA 10   12K', 59, '2023-01-09 06:37:09', 1),
(11849, 11728, 59, 5, 0, 'Not Much comfort in TxxampC,sustaianability  doubts  not much strong with the basics too', 99, '0000-00-00 00:00:00', 1),
(11850, 11731, 59, 4, 0, 'Have Exp in Telecalling,5050 Can give a try in our RM Roles kindly check and let me know your  interst', 99, '0000-00-00 00:00:00', 1),
(11851, 11735, 59, 5, 0, 'have exp xxamp  interest in non voice process,will not sustain in Telecaller roles', 99, '0000-00-00 00:00:00', 1),
(11852, 11732, 59, 5, 0, 'have Solid Exp in sales but no open again looking for IT React JS ,sustainability doubts and his last drawn also high. Technical Round reject by Kaviya', 99, '0000-00-00 00:00:00', 1),
(11853, 11736, 59, 5, 0, 'No Sustainability in the previous Exp, not open up will not sustain and handle our work pressure', 99, '0000-00-00 00:00:00', 1),
(11854, 11737, 59, 2, 0, 'Candidate no basic skills knowledge but interested to learn can give a try  Need time to confirm on the TxxampC if he comes bacnk let is try', 85, '0000-00-00 00:00:00', 1),
(11855, 11734, 24, 4, 0, 'Candidate selected for next round 13k salary..', 60, '0000-00-00 00:00:00', 1),
(11856, 11730, 59, 4, 0, 'Fresher  not strong with PHP but have a 3 months internship earlier Ready to learn kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11857, 11734, 88, 7, 0, 'Selected for RE', 24, '2023-01-10 02:37:01', 1),
(11858, 11738, 59, 5, 0, 'Have Exp in Telesales but in different Domain and also looking much for Non voice Process, Not suitablle for other openings\n', 60, '0000-00-00 00:00:00', 1),
(11859, 11730, 27, 1, 0, NULL, 59, '2023-01-10 03:14:24', 1),
(11860, 11731, 31, 5, 0, 'not suitable candidate', 59, '2023-01-10 03:55:36', 1),
(11861, 11739, 24, 4, 0, 'selected for next round, expect salary 13k', 85, '0000-00-00 00:00:00', 1),
(11862, 11741, 24, 2, 0, 'she is okay but she will discuss with family and update tomorrow', 99, '0000-00-00 00:00:00', 1),
(11863, 11739, 88, 7, 0, 'Selected for RE', 24, '2023-01-11 12:00:23', 1),
(11864, 11739, 59, 3, 0, 'Selected for Staff RoleErode Laocation RE', 88, '2023-01-11 12:11:36', 1),
(11865, 11734, 59, 3, 0, 'Selected fir Staff Role - Erode', 88, '2023-01-11 12:11:57', 1),
(11866, 11748, 59, 4, 0, 'Have telecalling Exp but will not sustain more than a year Engaged,Can give a try for your roles kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11867, 11747, 59, 5, 0, 'Too long distance  huge career Gap Married and family commitments will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(11868, 11746, 59, 5, 0, 'Fresher For IT  No Basic Skills Knowledge  Not Much Comfort In TxxampC Will Not Sustain too long Distance ', 85, '0000-00-00 00:00:00', 1),
(11869, 11745, 59, 5, 0, 'Fresher For IT  having Basic Skills Knowledge  Not Much Comfort In TxxampC Will Not Sustain Too Long Distance ', 85, '0000-00-00 00:00:00', 1),
(11870, 11744, 59, 5, 0, 'Fresher for IT have Exp in Production no basic skills knowledge  not much comfort in TxxampC will not sustain', 85, '0000-00-00 00:00:00', 1),
(11871, 11743, 59, 5, 0, 'Fresher For IT  No Basic Skills Knowledge  Not Much Comfort In TxxampC Will Not Sustain', 85, '0000-00-00 00:00:00', 1),
(11872, 11716, 59, 2, 0, 'Have Exp in Telecalling Can give a try for our sales but candidate need a time to confirm family need is there', 85, '0000-00-00 00:00:00', 1),
(11873, 11748, 11, 1, 0, NULL, 59, '2023-01-11 06:48:35', 1),
(11874, 11756, 59, 5, 0, 'Not open for Voice Process looking for non voice Process not suitable and no communication for non voice ', 99, '0000-00-00 00:00:00', 1),
(11875, 11750, 59, 5, 0, 'Fresher have basic knowledge in skills but the salary exp is very high need time to check with his family and confirm the terms if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11876, 11754, 59, 5, 0, 'Family need is there he is currently earning 18K in home tution career Gap not much strong with the basics he will not able to join on our TxxampC ', 99, '0000-00-00 00:00:00', 1),
(11877, 11749, 59, 5, 0, 'Fresher need to train a lot not open for TxxampC will not sustain and not open for our roles', 99, '0000-00-00 00:00:00', 1),
(11878, 11755, 59, 5, 0, 'Have 6 months Exp in React But not much strong  based on the 2nd round interview his focus is only on the salary and he is looking for change only for the salary growth will not sustain', 99, '0000-00-00 00:00:00', 1),
(11879, 11751, 59, 5, 0, 'Fresher no basics however we tried by giving for 2nd round on analysing  the training required but got rejected in 2nd round with kavya', 85, '0000-00-00 00:00:00', 1),
(11880, 11758, 59, 5, 0, 'No Communication Need time to give her confirmation for the voice process if she comes should give a try', 60, '0000-00-00 00:00:00', 1),
(11881, 11759, 59, 4, 0, 'Having basic knowledge in PHP skills Sustainability need to check open  for TxxampC but seems to be doubtful with his futuristic plans', 60, '0000-00-00 00:00:00', 1),
(11882, 11759, 27, 1, 0, NULL, 59, '2023-01-12 05:09:02', 1),
(11883, 11763, 97, 5, 0, 'No Communicaton... not suit for our role', 99, '0000-00-00 00:00:00', 1),
(11884, 11764, 97, 5, 0, 'fresher to or role .. too much attitude.. sal exp high .. not suitable for our  profile...', 99, '0000-00-00 00:00:00', 1),
(11885, 11760, 97, 2, 0, '50-50 profile Has 3m of calling exp ..fresher to our role... communication ok.. have to give some training..  ', 99, '0000-00-00 00:00:00', 1),
(11886, 11765, 59, 5, 0, 'Left without attending the next level and i have given him a task to check his writing skills but left without any information\n', 99, '0000-00-00 00:00:00', 1),
(11887, 11714, 88, 7, 0, 'Selected for RE', 57, '2023-01-14 12:48:16', 1),
(11888, 11767, 59, 5, 0, 'Having internship Exp but not much strong with the basics not open for TxxampC will not  sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(11889, 11769, 59, 5, 0, 'Almost7.8 yrs Exp in different domian totally fresher to the IT,Need to train a lot ,will not sustain due to lot of commitments Married and joining in the role of internship Employment for 3yrs will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11890, 11712, 88, 7, 0, 'Selected for RE', 57, '2023-01-16 01:06:36', 1),
(11891, 11714, 59, 3, 0, 'HRMS Issue Testing', 88, '2023-01-16 04:28:50', 1),
(11892, 11773, 59, 5, 0, 'Too long Distance Fresher for Python have Exp in PHP but not open for the same,Attitude Salary exp is high 60 Days notice not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(11893, 11712, 59, 5, 0, 'Discussed and suggested the salary breakup and they were not ready alos looking for high salary', 88, '2023-01-17 11:09:44', 1),
(11894, 11774, 59, 5, 0, 'Fresher for IT have Exp in teaching field long Career Gap due to marriage,no basics need to train from the beginning,Husband is into IT  and high earnings will not sustain and not suitable\n', 85, '0000-00-00 00:00:00', 1),
(11895, 11775, 59, 2, 0, 'Fresher for IT have Exp in core Not much open for TxxampC if he comes back let us try ', 85, '0000-00-00 00:00:00', 1),
(11896, 11780, 59, 5, 0, 'No Sustainability 4 months 2 companies travelled this is the 3rd one salary Exp is very high than her exp will not sustain and not suitable\n', 85, '0000-00-00 00:00:00', 1),
(11897, 11777, 97, 4, 0, '50-50 Profile ...internal  ref.. has some exp in collection .. long distance..  can be trained.. have sustainability doubts.. let you check and update your inputs..', 85, '0000-00-00 00:00:00', 1),
(11898, 11717, 59, 5, 0, 'No Communication Long Career Gap not suitable for Digital Marketing Checked for Telecalling but not open for that', 85, '0000-00-00 00:00:00', 1),
(11899, 11781, 59, 5, 0, 'Fresher for our Domain have 6 months Exp as ground staff,looking for IT but no basic skill knowledge checked for Telecalling but not open for that Salary Exp is very high for all the profiles will not sustain', 85, '0000-00-00 00:00:00', 1),
(11900, 11777, 57, 1, 0, NULL, 97, '2023-01-18 04:59:28', 1),
(11901, 11783, 59, 5, 0, 'Not open for TxxampC,Fresher for IT Min Salary Exp is very high as his freinds are into same React with pay around 20K will not sustain in our roles\n', 60, '0000-00-00 00:00:00', 1),
(11902, 11784, 59, 5, 0, 'Communication Average Have Exp in Calling for Loan Collections 5050 Can give a try for our sales but left without Attending the interview 2nd round\n', 60, '0000-00-00 00:00:00', 1),
(11903, 11786, 74, 5, 0, 'not fit for team non profile domin also not suite mechanical field only expected field', 60, '0000-00-00 00:00:00', 1),
(11904, 11788, 59, 3, 0, '7 days analysis then 5 month 5K and 3yrs 10-12K SA final round interviewed by Gokul', 85, '0000-00-00 00:00:00', 1),
(11905, 11800, 57, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11906, 11798, 57, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11907, 11802, 59, 4, 0, '5050 Profile have a very few months Calling Exp Sustainability doubts a lot kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11908, 11797, 59, 5, 0, 'Have 6 months Exp in Angular not much comfort in TxxampC seems to be slow Sustainability doubts not suitable \n', 85, '0000-00-00 00:00:00', 1),
(11909, 11802, 44, 5, 0, 'Not fit for sales', 59, '2023-01-23 07:01:41', 1),
(11910, 11806, 59, 5, 0, 'No ideas in the recruitment but worked for 6 months in recruitment,not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(11911, 11803, 59, 5, 0, 'no basics looking only for the salary growth will not sustain in a long run not much comfort in TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(11912, 11805, 59, 5, 0, 'No communication Sustainability and pressure handling doubts in our roles Not suitable\n', 85, '0000-00-00 00:00:00', 1),
(11913, 10409, 59, 5, 0, 'Fresher for our Domain looking for Recruiter role and not much comfort in sales and Salary Exp is very high already holds an offer for 40K', 85, '0000-00-00 00:00:00', 1),
(11914, 11813, 59, 5, 0, 'No Basic Skills Seems to be slow and will handle our work pressure not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(11915, 11814, 59, 5, 0, 'Fresher not open for TxxampC No basics Focusing only on the salary not suitable', 85, '0000-00-00 00:00:00', 1),
(11916, 11815, 59, 5, 0, 'No Communication Frequent job changes aged not suitable for our roles will not sustain and handle our work roles', 85, '0000-00-00 00:00:00', 1),
(11917, 11808, 24, 5, 0, 'Rejected', 85, '0000-00-00 00:00:00', 1),
(11918, 11809, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 85, '0000-00-00 00:00:00', 1),
(11919, 11809, 74, 7, 0, 'she is suite for team and telecallng completing bca and father doing business have laptop and ready to join bit expected salary only expected 12k....fresher only kindly confirm once', 59, '2023-01-27 10:26:59', 1),
(11920, 11817, 59, 3, 0, 'Selected for Thanjavur Consultant role', 85, '0000-00-00 00:00:00', 1),
(11921, 11818, 59, 2, 0, 'Have Exp in Customer Support Backend Can be trained for our roles,need to conduct the final round with Gokul ', 85, '0000-00-00 00:00:00', 1),
(11922, 11819, 57, 5, 0, 'FIELD NOT INTERESTED', 85, '0000-00-00 00:00:00', 1),
(11923, 11820, 57, 5, 0, 'already have offer another company , fresher exp 16k', 85, '0000-00-00 00:00:00', 1),
(11924, 11817, 74, 7, 0, 'he is ok with the profile suite for telecalling and team also...completing bcom and part time 2 years experience in marketing....have laptop expected 11 to 12 k  kindly confirm once from your side ', 59, '2023-01-27 05:05:25', 1),
(11925, 11817, 88, 7, 0, 'Selected For RE', 74, '2023-01-27 05:26:16', 1),
(11926, 11809, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2023-01-27 05:27:55', 1),
(11927, 11809, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 88, '2023-01-27 06:17:44', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(11928, 11817, 59, 3, 0, 'Selected for Thanjavur Consultant role', 88, '2023-01-27 06:18:14', 1),
(11929, 11823, 59, 4, 0, 'Fresher for our roles sustainability doubts in a long Communication ok 5050 Kindly check and let me know your ijnputs', 85, '0000-00-00 00:00:00', 1),
(11930, 11824, 59, 5, 0, 'Fresher for IT,Lot of Previous Exp in Calling but no sustainability,Looking out for bangalore will not sustain for a long in Chennai Not suitable', 85, '0000-00-00 00:00:00', 1),
(11931, 11822, 59, 5, 0, 'Discussed And Suggested The Salary Breakup And he  Not Ready and  Looking For High Salary', 85, '0000-00-00 00:00:00', 1),
(11932, 11828, 59, 5, 0, 'Need to complete her graduation final semester Holding several offers with good pay will not sustain and not suitable for our positions', 85, '0000-00-00 00:00:00', 1),
(11933, 11829, 59, 4, 0, 'Have a few months exp in calling sustainability doubts on the profile family need is there Can give a try kindly check and let me know your inputs\n', 85, '0000-00-00 00:00:00', 1),
(11934, 11829, 53, 1, 0, NULL, 59, '2023-01-30 03:09:32', 1),
(11935, 11822, 89, 7, 0, 'Selected ', 59, '2023-01-30 03:10:55', 1),
(11936, 11830, 51, 4, 0, 'completed', 85, '0000-00-00 00:00:00', 1),
(11937, 11823, 74, 1, 0, NULL, 59, '2023-01-30 03:45:30', 1),
(11938, 11833, 59, 3, 0, 'Selected for MIS Role by Gokul final round have 8 months exp in customer support then career Gap Salary Exp is min 15-16K TH,candidate didnt give his confirmation for joining', 85, '0000-00-00 00:00:00', 1),
(11939, 11834, 59, 2, 0, 'Have a long career Gap 5050 Interviewed by Banu in 2nd round  Need to check for MF B2B too\n', 85, '0000-00-00 00:00:00', 1),
(11940, 11832, 59, 5, 0, 'Technical Round Rejected by Kaviya Fresher seems to be slow not suitable\n', 85, '0000-00-00 00:00:00', 1),
(11941, 11830, 29, 7, 3, 'sarath team,  Refer salary detail in resume currently 25k net, from april 27k net if completed 2 lac in Feb and 2 lac in march.', 51, '2023-01-31 02:48:23', 1),
(11942, 11830, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 29, '2023-01-31 03:44:06', 1),
(11943, 10229, 59, 3, 0, 'Selected for Shanmugam sir Team with PF/PT', 29, '2023-01-31 04:40:20', 1),
(11944, 11822, 88, 7, 0, 'Selected for RE', 89, '2023-01-31 05:06:39', 1),
(11945, 11831, 59, 5, 0, 'Have 10 months Exp in IT Recruitment and looking for 23K CTC holding an offer for 20K,looking for a salary hike will not join and not suitable', 85, '0000-00-00 00:00:00', 1),
(11946, 11607, 59, 5, 0, 'Preparing for Polica exams and time being looking for a job will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11947, 11835, 24, 5, 0, 'Rejected', 85, '0000-00-00 00:00:00', 1),
(11948, 11836, 74, 7, 0, 'she is ok with the profile have 1 and half year experience in tellecalling field hdfc loan process and stocks in good well marketing ...so fit for team and job also...father passed away brother working in marketing field ......have laptop and travel time half hour...expected salary 12 to 13k...kindly confirm once immediate joining...', 85, '0000-00-00 00:00:00', 1),
(11949, 11837, 59, 5, 0, 'Preparing For Polica Exams And Time Being Looking For A Job Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(11950, 11838, 59, 5, 0, 'Preparing For Polica Exams And Time Being Looking For A Job Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(11951, 11840, 59, 2, 0, 'Selected for MIS interviewed by Arun Herash and based onthe approval from Gokul Processed for joining Candidate yet to give his confirmation on the salary', 85, '0000-00-00 00:00:00', 1),
(11952, 11841, 59, 5, 0, 'Average Communication Lack of interest towards the work Long Career gap focus only on the salary will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11953, 11842, 59, 5, 0, 'Communication was not clear Long Career Gap not much active will not sustain and handle our pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11954, 11843, 59, 5, 0, 'Have 6 months Exp in PHP but not much comfort in TxxampC Asked for a time to confirm but left without informing will not sustain', 85, '0000-00-00 00:00:00', 1),
(11955, 11844, 59, 2, 0, 'Have Exp in Star Health but too long distance need to have a background verification Caniddate need to come back wiht her confirmation', 85, '0000-00-00 00:00:00', 1),
(11956, 11845, 59, 2, 0, 'Have Exp in Calling Too long Distance need to check her previous exp Candidate need to come back with her confirmation', 85, '0000-00-00 00:00:00', 1),
(11957, 11846, 74, 5, 0, 'she is not ok with the profile not suit for team and sustainability issue also', 85, '0000-00-00 00:00:00', 1),
(11958, 11848, 59, 2, 0, 'Have Telecalling Exp In Collection Process Scheduled Them For F2F In Tnagar But They Didnt Turn Need To Check And Confirm Once.', 85, '0000-00-00 00:00:00', 1),
(11959, 11847, 59, 2, 0, 'Have telecalling Exp in Collection process Scheduled them for F2F in Tnagar but they didnt turn Need to check and confirm once.', 85, '0000-00-00 00:00:00', 1),
(11960, 11822, 59, 5, 0, 'Discussed And Suggested The Salary Breakup And he  Not Ready and  Looking For High Salary', 88, '2023-02-01 06:07:54', 1),
(11961, 11836, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2023-02-01 06:46:48', 1),
(11962, 11850, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11963, 11851, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11964, 11852, 59, 5, 0, 'have 1 yr exp in telecalling but nor open for Targets much thinking a lot on the same will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11965, 11857, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11966, 11858, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11967, 11859, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11968, 11860, 59, 4, 0, 'Fresher need to train a lot can give a try for our Roles 5050 kindly check and let me know  your inputs', 85, '0000-00-00 00:00:00', 1),
(11969, 11853, 59, 5, 0, 'Have basic knowledge in skills bu not much open for TxxampC Career Gap his BIL is into IT sustainability doubts a lot', 85, '0000-00-00 00:00:00', 1),
(11970, 11854, 59, 5, 0, 'Have Basic knowledge not much open with TxxampC Need time to give his confirmation if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11971, 11855, 59, 5, 0, 'Distance he feels to be long not much strong with the skills will not sustain in a long ', 85, '0000-00-00 00:00:00', 1),
(11972, 11856, 59, 2, 0, 'Need to check with gokul 2nd round interviewed by Manikandan not much strong in basics can be analysed in 7 days', 85, '0000-00-00 00:00:00', 1),
(11973, 11860, 57, 1, 0, NULL, 59, '2023-02-03 07:31:36', 1),
(11974, 11862, 59, 4, 0, '5050Profile have Exp in Insurance Domain age around 34 years no bike and laptop Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11975, 11861, 24, 5, 0, 'She was too scared for the target', 85, '0000-00-00 00:00:00', 1),
(11976, 11839, 59, 2, 0, 'Need to schedule for a virtual round have exp in telecalling credit card Sales Need to check with Karthika for ESales 30 days notice', 85, '0000-00-00 00:00:00', 1),
(11977, 11863, 59, 5, 0, 'Discussed And Suggested The Salary Breakup And They Were Not Ready Alos Looking For High Salary', 85, '0000-00-00 00:00:00', 1),
(11978, 11864, 59, 5, 0, 'Fresher for IT have 1 yr in Digital Marketing but the role played was not exactly into that lookin for IT but not open for Terms Need time to confirm with Parents if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11979, 11865, 88, 7, 0, 'Selected for RE ', 85, '0000-00-00 00:00:00', 1),
(11980, 11863, 88, 7, 0, 'Selected for RE', 59, '2023-02-04 07:05:59', 1),
(11981, 11862, 71, 5, 0, 'rejected', 59, '2023-02-04 07:08:10', 1),
(11982, 11865, 59, 3, 0, 'Selected for Kannan Team in Staff Role', 88, '2023-02-04 07:15:06', 1),
(11983, 11863, 59, 5, 0, 'Discussed And Suggested The Salary Breakup And They Were Not Ready Alos Looking For High Salary', 88, '2023-02-04 07:17:26', 1),
(11984, 11868, 89, 7, 0, 'Selected ', 85, '0000-00-00 00:00:00', 1),
(11985, 11869, 59, 5, 0, 'No understanding no communication not open at all will not handle our pressure', 85, '0000-00-00 00:00:00', 1),
(11986, 11871, 89, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11987, 11872, 59, 5, 0, 'Too long Distance have communication but no sustainability in her prebvious Exp will not sustain not able to relocate', 85, '0000-00-00 00:00:00', 1),
(11988, 11873, 59, 5, 0, 'No sustainability Local Language Average Not open for Terms and conditions will not sustain in a long', 85, '0000-00-00 00:00:00', 1),
(11989, 11874, 59, 5, 0, 'No basic ideas in recruitment, no understanding and not open for terms will not sustain in our roles already we offered and he declined the same', 85, '0000-00-00 00:00:00', 1),
(11990, 11868, 88, 7, 0, 'Selected for RE ,Pancard details will be provided before salary credit', 89, '2023-02-07 05:47:36', 1),
(11991, 11840, 59, 3, 0, 'Selected for MIS Life Renewal in Staff Role', 59, '2023-02-08 12:38:07', 1),
(11992, 11870, 24, 4, 0, 'selected for next round expt salary 15k but not worth for 15k, 13k is okay for him and also need of analysis in 7 days', 85, '0000-00-00 00:00:00', 1),
(11993, 11878, 59, 2, 0, '5050 Need to groom a lot not sure with his sustainability but can give a try If candidate come back let us try', 85, '0000-00-00 00:00:00', 1),
(11994, 11879, 59, 5, 0, 'Focusing much on Data science will not sustain in a long in our roles will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11995, 11870, 88, 1, 0, NULL, 24, '2023-02-08 04:52:01', 1),
(11996, 11741, 24, 5, 0, 'Not fit for our role', 24, '2023-02-08 04:52:28', 1),
(11997, 11868, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 88, '2023-02-09 11:40:51', 1),
(11998, 11883, 24, 5, 0, 'Rejected ', 85, '0000-00-00 00:00:00', 1),
(11999, 11885, 59, 4, 0, 'Have Exp in credit card sales 5050 for our roles can give a try kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(12000, 11886, 59, 3, 0, 'We Offered Him In The Month Of November But Candidate  Not Joined. Later In The Month Of Feb 2023  He Saw Our Job Post And Messaged Us .He Appeared Again And Got Selected For The Same Team  - GK Sir', 60, '0000-00-00 00:00:00', 1),
(12001, 11885, 11, 1, 0, NULL, 59, '2023-02-10 11:07:04', 1),
(12002, 11890, 59, 4, 0, '5050 Profile Have basic calling exp seems to be doubtful kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12003, 11889, 59, 5, 0, 'No basic ideas in recruitment no communication will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(12004, 11891, 59, 5, 0, 'No Communication not open for Telecalling looking for non voice process only', 85, '0000-00-00 00:00:00', 1),
(12005, 11899, 59, 3, 0, 'Selected for Shanmugam Team with PF/PT', 85, '0000-00-00 00:00:00', 1),
(12006, 11898, 59, 5, 0, 'No basic skills looking for salary growth Long Career Gap will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(12007, 11897, 59, 2, 0, 'Need to check for telephonic again no graduation long career gap 7yrs sustainability doubts ', 85, '0000-00-00 00:00:00', 1),
(12008, 11893, 59, 5, 0, 'No Communication no basic ideas in recruitment not open for Terms will not handle and sustainability doubts', 85, '0000-00-00 00:00:00', 1),
(12009, 11899, 29, 7, 3, 'shanmugam team, sal 20k TH, can increase if 1.5 lac done in Feb, from march can increase 1500', 59, '2023-02-10 05:57:57', 1),
(12010, 11890, 57, 1, 0, NULL, 59, '2023-02-10 06:20:59', 1),
(12011, 11899, 59, 3, 0, 'Selected for Shanmugam Team with PF/PT', 29, '2023-02-11 12:01:48', 1),
(12012, 11906, 59, 3, 0, 'Communication Is Good Having Good Exp In Sales Souding Good For Our Profile But Fresher For Insurance Can Give A Try Looking For Lead Role Kindly Check And Let Me Know Your Interest Sir\n\nSelected for  Manikandan Team with PF PT', 85, '0000-00-00 00:00:00', 1),
(12013, 11906, 18, 7, 0, 'Selected For Mani Team. 5L CTC and Immed Joiner', 59, '2023-02-15 10:44:04', 1),
(12014, 11906, 60, 1, 0, NULL, 18, '2023-02-15 10:46:39', 1),
(12015, 11910, 74, 7, 0, 'candidate suite for telecalling and job need also good comunicative skills....and ready to join immediately....have no laptop and ready arrange in future...expected 11 to 12 k kindly check and confirm once....already worked as a communicative teacher due to covid situation releived the job and two years unemplyoed only.....willing to work as a RJ but no opportunity in thanjavur not ready to go other cities...so kindly check once', 85, '0000-00-00 00:00:00', 1),
(12016, 11905, 59, 4, 0, 'Have Exp in Sales but not a relevant one  Can be trained in our position kindly check and give your confirmation', 85, '0000-00-00 00:00:00', 1),
(12017, 11768, 59, 5, 0, 'Not much strong with the basics need time to give his confirmation on the TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12018, 11907, 59, 5, 0, 'Have Good Exp in Insurance but frequent job changes  and now he is looking for loan or credit sales not much comfort to go again in insurance domain', 85, '0000-00-00 00:00:00', 1),
(12019, 11905, 71, 4, 0, 'selected', 59, '2023-02-15 05:22:34', 1),
(12020, 11260, 59, 5, 0, 'No Communication Have Non voice Exp Will not handle our work pressure and sustainability doubts not suitable', 85, '0000-00-00 00:00:00', 1),
(12021, 11912, 59, 5, 0, 'Have Basic Skills Family need is no Sustainability doubts not open for TxxampC Need time to check with family and confirm if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12022, 11913, 59, 3, 0, 'Selected for Santhosh Team with PF/PT', 85, '0000-00-00 00:00:00', 1),
(12023, 11914, 59, 5, 0, 'Have 3 months Exp in recruitment  and his salary exp is very high.Not much strong with the recruitment Skills SustainabilityDoubts and he need time to confirm on the txxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12024, 11913, 71, 4, 0, 'selected', 59, '2023-02-16 05:24:13', 1),
(12025, 11915, 59, 5, 0, 'Not ready to join post selection for the profile ', 85, '0000-00-00 00:00:00', 1),
(12026, 11915, 53, 7, 0, 'having experience but looking childish, self reference only so need to check in training period. 50 50', 59, '2023-02-16 06:34:40', 1),
(12027, 11911, 59, 5, 0, 'Fresher for Python Not open for TxxampC Looking for Salary only already got offered with 18K 3yrs SA but not joined he is not open in Internship role also', 85, '0000-00-00 00:00:00', 1),
(12028, 11916, 59, 5, 0, 'Communication ok  witten skills ok but not open for 2yrs SA and the timing also prefer 10 in the morning and 6 in the evening from porur Sustainability doubts if she come back let us try', 85, '0000-00-00 00:00:00', 1),
(12029, 11913, 18, 7, 0, 'Selected for Santosh Team. 3.5CTC. Immediate joiner. Vijayaraghavan Reference.', 71, '2023-02-17 05:44:25', 1),
(12030, 11905, 18, 8, 0, 'Saw his Resume and Rejected with arun', 71, '2023-02-17 05:46:47', 1),
(12031, 11910, 88, 7, 0, 'Selected for RE', 74, '2023-02-17 05:58:08', 1),
(12032, 11917, 97, 2, 0, 'Basic Knowledge In Html ,Css xxamp Js .. He Want To Discuss With His Parents about txxampc .. If He Come Let Us Try ', 85, '0000-00-00 00:00:00', 1),
(12033, 11921, 97, 4, 0, ' has 4m of exp in  apartment sales. Fresher To Our Process. He can be trained. kindly update your feedback.', 85, '0000-00-00 00:00:00', 1),
(12034, 11922, 97, 5, 0, 'no commuication .. not suit for our role.', 85, '0000-00-00 00:00:00', 1),
(12035, 11923, 97, 5, 0, 'Has Various Job Experience .. Not Suit For Our Process.', 85, '0000-00-00 00:00:00', 1),
(12036, 11924, 11, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12037, 11921, 88, 7, 0, 'Select for RE. Have to validate during training period. ', 97, '2023-02-18 03:03:13', 1),
(12038, 11910, 59, 3, 0, 'Selected fr Thanjavur Consultant Role', 88, '2023-02-18 03:12:05', 1),
(12039, 11913, 60, 1, 0, NULL, 18, '2023-02-20 10:40:16', 1),
(12040, 11918, 59, 5, 0, 'Not Comfortable with the distance average Communication will not sustain and handle our work pressure', 85, '0000-00-00 00:00:00', 1),
(12041, 11926, 74, 5, 0, 'she is not fit for team and not suite for telecalling choosing only data entry like that job', 85, '0000-00-00 00:00:00', 1),
(12042, 11925, 74, 7, 0, 'she is ok with the profile and fit for team also...ready to join immediately..have laptop and expected 11 to 12 k......father passed away one elder brother unemployed ...have 2 rental house for the montly expenses.......4 month work in a data entry...and releived......have no pan card but ready apply immediately...kindly check once and confirm sir', 85, '0000-00-00 00:00:00', 1),
(12043, 11927, 74, 5, 0, 'she is not fit for team not active and ready to move any city any time so sustainability issue also', 85, '0000-00-00 00:00:00', 1),
(12044, 11929, 59, 3, 0, 'Selected for B2B Need to analyse in 7 days in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12045, 11930, 59, 5, 0, 'Not showing interest in the job  will not sustain and handle the pressure', 85, '0000-00-00 00:00:00', 1),
(12046, 11925, 88, 7, 0, 'Selected For RE, Doesnxquott Have Aspiration For Money Earning More.Have To Check On Training Session.', 74, '2023-02-20 04:07:13', 1),
(12047, 11932, 59, 2, 0, 'Final round interviewed by gokul and the profile is on hold Pressure handling and not seems to be fast will check after a week her friend got seleceted ', 85, '0000-00-00 00:00:00', 1),
(12048, 11931, 59, 3, 0, 'Selected for Recruiter role final round interviewed by gokul communication is good can be trained  for Recruitment 3months intern 7.5K stipend then 13-15 overall 2yrs SA No certificate', 85, '0000-00-00 00:00:00', 1),
(12049, 11929, 53, 7, 0, 'having experience will suit for b2b, but coming from long distance 50 50, will check and decide n training period.', 59, '2023-02-20 07:15:36', 1),
(12050, 11925, 59, 3, 0, 'Selected for Thanjavur Role - Consultant ', 88, '2023-02-20 07:24:20', 1),
(12051, 11901, 59, 3, 0, 'Selected for Backend  Health Renewal need to analyse in 7 days', 85, '0000-00-00 00:00:00', 1),
(12052, 11921, 59, 3, 0, 'Selected for Suthagar Team Spencer in Consultant Role', 88, '2023-02-20 07:32:58', 1),
(12053, 11933, 59, 5, 0, 'No Communication no basics will not handle the pressure', 85, '0000-00-00 00:00:00', 1),
(12054, 11935, 59, 4, 0, 'Long Career Gap Team Apna Data reference sustainability and pressure handling doubts kindly check and let meknow your inputs', 85, '0000-00-00 00:00:00', 1),
(12055, 11936, 59, 5, 0, 'No proper response discussed on the salary and she requested time to confirm with parents but didnt turn and not responding the calls too', 85, '0000-00-00 00:00:00', 1),
(12056, 11937, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12057, 11938, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12058, 11939, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12059, 11940, 59, 5, 0, 'Not suitable will not travel will not handle the pressure ', 85, '0000-00-00 00:00:00', 1),
(12060, 11942, 59, 3, 0, 'Selected for B2B in Consultant Role Need to Analyse in 7 days training', 85, '0000-00-00 00:00:00', 1),
(12061, 11943, 59, 4, 0, 'have exp in inbound for an year but no sure with outbound sustainability doubts kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(12062, 11944, 59, 5, 0, 'not open for our sales, 10yrs exp in other domain not suitable', 85, '0000-00-00 00:00:00', 1),
(12063, 11942, 53, 7, 0, 'selected for b2b. pls cnfrm the sal and DOJ', 59, '2023-02-21 06:42:00', 1),
(12064, 11943, 53, 1, 0, NULL, 59, '2023-02-21 06:42:52', 1),
(12065, 11936, 88, 7, 0, 'Need to check on Pressure handling, Selected for RE', 59, '2023-02-21 06:48:17', 1),
(12066, 11935, 88, 1, 0, NULL, 59, '2023-02-21 06:49:25', 1),
(12067, 11936, 59, 5, 0, 'No proper response discussed on the salary and she requested time to confirm with parents but didnt turn and not responding the calls too', 88, '2023-02-22 01:39:43', 1),
(12068, 11902, 59, 5, 0, 'Not open  for Field Visit,have exp in KYC verification will not sustain and handle our sales pressure not suitabl', 60, '0000-00-00 00:00:00', 1),
(12069, 11946, 59, 3, 0, 'Selected for Babu Team in Staff Role', 60, '0000-00-00 00:00:00', 1),
(12070, 11948, 59, 5, 0, 'Looking for IT recruitment only and the current Salary is 3.5 LPA not suitable', 60, '0000-00-00 00:00:00', 1),
(12071, 11947, 59, 5, 0, 'Not open for Field Sales Telecalling will not sustain no sustainability in the previous exp Not suitable', 60, '0000-00-00 00:00:00', 1),
(12072, 11949, 59, 5, 0, 'No Communication Not open for Sales Calling Not suitable for our MIS operations roles', 60, '0000-00-00 00:00:00', 1),
(12073, 11946, 89, 7, 0, 'Selected ', 59, '2023-02-22 03:15:19', 1),
(12074, 11942, 59, 3, 0, 'Selected for B2B in Consultant Role Need to Analyse in 7 days training', 53, '2023-02-22 03:25:04', 1),
(12075, 11929, 59, 3, 0, 'Selected for B2B Need to analyse in 7 days in Consultant Role', 53, '2023-02-22 03:26:37', 1),
(12076, 11915, 59, 5, 0, 'Not ready to join post selection for the profile ', 53, '2023-02-22 03:29:05', 1),
(12077, 11953, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(12078, 11953, 57, 4, 0, 'Candidate is ok , already she is have 3years exp for telecalling, ', 59, '2023-02-22 07:09:40', 1),
(12079, 11951, 59, 2, 0, 'Not much knowledge in Recruitment need to be trained a lot distance need to focus need confirmation from candidate on TxxampC 2nd round interviewed by gokul', 85, '0000-00-00 00:00:00', 1),
(12080, 11952, 59, 2, 0, 'Came for Voice Process suthagar reference but not open for sales voice have exp in non voice and much focus on that Salary need to think and bit attitude Gokul need to have the final round', 85, '0000-00-00 00:00:00', 1),
(12081, 11955, 59, 5, 0, '8 yrs admin exp communication not clear having health issue will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12082, 11956, 59, 3, 0, 'Selected for Suthagar Team', 85, '0000-00-00 00:00:00', 1),
(12083, 11956, 88, 7, 0, 'Selected for RE based on the  experience', 59, '2023-02-23 07:09:30', 1),
(12084, 11946, 88, 7, 0, 'Based on Core Experience , Selected for RE...', 89, '2023-02-24 11:13:44', 1),
(12085, 11957, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12086, 11958, 59, 5, 0, 'Yet To Complete Their Graduation Still 4 Months To Go', 85, '0000-00-00 00:00:00', 1),
(12087, 11959, 59, 5, 0, 'Yet To Complete Their Graduation Still 4 Months To Go', 85, '0000-00-00 00:00:00', 1),
(12088, 11960, 59, 3, 0, 'Selected for GK sir Tem with Commtment 2L in 1 month', 85, '0000-00-00 00:00:00', 1),
(12089, 11961, 59, 5, 0, 'Too long Distance no basic skills will not sustain', 85, '0000-00-00 00:00:00', 1),
(12090, 11953, 88, 7, 0, 'Selected for RE based on Communication  xxamp obeservation Skill', 57, '2023-02-24 02:55:06', 1),
(12091, 11962, 42, 4, 0, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(12092, 11962, 30, 4, 0, 'Cross check previous company CTC and he is ok with previous CTC and confirm the joining', 42, '2023-02-24 03:21:21', 1),
(12093, 11962, 59, 5, 0, 'HR Round Reject Had a initial discussion but there is no response later ', 30, '2023-02-24 03:27:27', 1),
(12094, 11956, 59, 3, 0, 'Selected for Suthagar Team', 88, '2023-02-24 03:44:06', 1),
(12095, 11957, 53, 7, 0, 'shortlisted for B2B', 59, '2023-02-24 07:48:48', 1),
(12096, 11960, 31, 7, 4, 'candidate okay ', 59, '2023-02-24 07:55:52', 1),
(12097, 11964, 59, 5, 0, 'Long back 1 yr Exp  career Gp in between looking for IT openings but will not sustain not more than a year', 85, '0000-00-00 00:00:00', 1),
(12098, 11960, 29, 7, 2, 'gk team', 31, '2023-02-25 07:01:20', 1),
(12099, 11963, 74, 7, 0, 'HAVE PAN CARD - he is ok with the profile.....speaked well...and need a job in high priority...father passed ....now in mid of thanjavur 30 mins travel....and mother work in school as sathunavu amaipalar.....recover critical ilness ...now she in home only.......so candidate job need and permorming good also..fresher....expected 11 to 12k...and have laptop immediate joining...', 85, '0000-00-00 00:00:00', 1),
(12100, 11965, 74, 5, 0, 'not fit for team voice not have the flow .....struggle to speak fluently...', 85, '0000-00-00 00:00:00', 1),
(12101, 11968, 59, 4, 0, 'Communicaiton Ok have Exp in Tracttor Sales can give a try for our roles kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(12102, 11976, 59, 3, 0, 'Selected for Suthagar Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12103, 11975, 59, 5, 0, 'Too long Distance no basics in Web development not suitable looking for Testing only', 85, '0000-00-00 00:00:00', 1),
(12104, 11974, 59, 5, 0, 'Too Long Distance No Basics In Web Development Not Suitable Looking For Testing Only', 85, '0000-00-00 00:00:00', 1),
(12105, 11963, 88, 7, 0, 'Candidate seems to be confident,Selected for RE', 74, '2023-02-27 12:33:52', 1),
(12106, 11977, 59, 2, 0, 'Need to come back with her confrmation 2nd round interviewed by sathish IT and was on hold candidate looking for Telesales Profile too', 85, '0000-00-00 00:00:00', 1),
(12107, 11980, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12108, 11973, 59, 4, 0, '5050 Profile have exp in pharma sales kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12109, 11978, 59, 3, 0, 'Selected for Santhosh Team with PF/PT', 85, '0000-00-00 00:00:00', 1),
(12110, 11972, 59, 5, 0, 'Not open for Target not suitable', 85, '0000-00-00 00:00:00', 1),
(12111, 11957, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-02-27 04:24:07', 1),
(12112, 11979, 59, 2, 0, 'Have basic knowledge in NodeJS need time to confirm the TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12113, 11969, 59, 5, 0, 'Too long Distance 11 yrs in manufacturing sales not suitable will not take calls', 85, '0000-00-00 00:00:00', 1),
(12114, 11960, 59, 3, 0, 'Selected for GK sir Tem with Commtment 2L in 1 month', 29, '2023-02-27 06:15:15', 1),
(12115, 11968, 44, 1, 0, NULL, 59, '2023-02-27 07:08:22', 1),
(12116, 11978, 71, 4, 0, 'selected for next round ', 59, '2023-02-27 07:33:34', 1),
(12117, 11976, 88, 7, 0, 'Based on Core Exp, Selected for RE level', 59, '2023-02-27 07:34:11', 1),
(12118, 11973, 51, 5, 0, 'not ok with sales', 59, '2023-02-27 07:35:14', 1),
(12119, 11963, 59, 3, 0, 'Selected for Thanjavur  - Consultant ', 88, '2023-02-27 07:36:31', 1),
(12120, 11976, 59, 3, 0, 'Selected for Suthagar Team in Consultant Role', 88, '2023-02-27 07:37:45', 1),
(12121, 11983, 59, 3, 0, 'Selected for ESales in Consultant ROle', 85, '0000-00-00 00:00:00', 1),
(12122, 11990, 59, 5, 0, 'Fresher having lot of reference outside will not run in a long self learned not much comfort with TxxampC', 85, '0000-00-00 00:00:00', 1),
(12123, 11989, 59, 4, 0, 'Have Exp in Calling 5050 Profile seems to be attitude kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12124, 11988, 59, 4, 0, 'Fresher for IT, Need to be trained 5050 kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12125, 11987, 59, 5, 0, 'Attitude will not sustain in our roles and handle not suitable', 85, '0000-00-00 00:00:00', 1),
(12126, 11985, 59, 4, 0, 'Fresher for Telecalling Sales interested to Learn but sustainability Pressure handling doubts kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12127, 11986, 59, 5, 0, 'Communicaiton Ok fresher for our roles left with out attending the 2nd level interview', 85, '0000-00-00 00:00:00', 1),
(12128, 11984, 59, 5, 0, 'Already attended and not open for TxxampC No basic knowledge too', 85, '0000-00-00 00:00:00', 1),
(12129, 11945, 59, 5, 0, 'Left without attending the interview', 85, '0000-00-00 00:00:00', 1),
(12130, 11992, 59, 4, 0, 'Have Exp in Non voice Open for Telecalling sALES 5050 profile kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12131, 11953, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 88, '2023-02-28 04:22:42', 1),
(12132, 11978, 18, 7, 3, 'Selected for Santosh Team. Give 10% Hike from Current Salary. Joining date on 9th April', 71, '2023-02-28 05:25:32', 1),
(12133, 11983, 11, 7, 0, 'she is ok for E sales \njoining date 1st april', 59, '2023-02-28 07:18:44', 1),
(12134, 11988, 27, 1, 0, NULL, 59, '2023-02-28 07:22:58', 1),
(12135, 11989, 24, 5, 0, 'rejected, not suitable for our role', 59, '2023-02-28 07:25:05', 1),
(12136, 11992, 11, 1, 0, NULL, 59, '2023-02-28 07:28:16', 1),
(12137, 11985, 24, 5, 0, 'Rejected', 59, '2023-02-28 07:29:44', 1),
(12138, 11995, 74, 7, 0, 'she is ok with the profile flunecy in telecalling is good because of 1 year experience in royal enfiend queries handling ....and 2 years she is unemployed and past 3 month work in honda.....due to timing issue late night logout she releived the job...father farmer...4 girl child in home very poor family...and have laptop and ready to join immediately.....expected 12k...kindly check and confirm once....complted b tech in anna university and not intrested in IT field.....', 85, '0000-00-00 00:00:00', 1),
(12139, 11993, 59, 3, 0, 'Selected for Sarath Team PF/PT with Commitment  2L in march then 2K increment in April 2023', 85, '0000-00-00 00:00:00', 1),
(12140, 11966, 52, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12141, 11997, 59, 4, 0, 'Fresher Yet to complete her graduation have basic knowledge kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12142, 11995, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2023-03-01 05:57:35', 1),
(12143, 11997, 27, 1, 0, NULL, 59, '2023-03-02 12:15:57', 1),
(12144, 11993, 51, 4, 0, 'ok', 59, '2023-03-02 12:17:11', 1),
(12145, 11996, 59, 5, 0, 'No basics in Accounts looking only for the salary growth will not sustain and handle pressure if he comes back let us try later', 85, '0000-00-00 00:00:00', 1),
(12146, 11998, 59, 5, 0, 'Communication Average,no basics in reruitment will not handle our profiles not suitable', 85, '0000-00-00 00:00:00', 1),
(12147, 12000, 59, 4, 0, 'Fresher for IT have other Exp interested to learn open for TxxampC can be trained kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12148, 11946, 59, 3, 0, 'Selected for Babu Team in Staff Role', 88, '2023-03-02 02:56:25', 1),
(12149, 11995, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 88, '2023-03-02 02:57:48', 1),
(12150, 12001, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12151, 12002, 59, 3, 0, 'Selected for Banu Team  yet to confirm the role Staff or Consultant', 85, '0000-00-00 00:00:00', 1),
(12152, 12003, 59, 5, 0, 'Fresher for IT Long career gap No basic skills knowledge her sister in IT not  open for TxxampC will not sustain', 85, '0000-00-00 00:00:00', 1),
(12153, 11993, 29, 7, 3, 'Sarath Team, Ref resume for sal xxamp changes in april', 51, '2023-03-02 06:33:30', 1),
(12154, 11993, 59, 3, 0, 'Selected for Sarath Team PF/PT with Commitment  2L in march then 2K increment in April 2023', 29, '2023-03-02 07:05:11', 1),
(12155, 12000, 27, 1, 0, NULL, 59, '2023-03-02 07:07:14', 1),
(12156, 12001, 53, 7, 0, 'Fresher but good communication and confidence speech. but she compelted IT course and searching it related job, due to her family situation she s joining telecalling. Will try 50 50. we can give 12k as TH', 59, '2023-03-02 07:08:48', 1),
(12157, 12002, 53, 7, 0, 'having 1.5yrs experience, ok for b2b, last salary 15k TH, we can provide 16k as TH', 59, '2023-03-02 07:09:41', 1),
(12158, 12002, 59, 3, 0, 'Selected for Banu Team  yet to confirm the role Staff or Consultant', 53, '2023-03-03 12:33:24', 1),
(12159, 12001, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-03-03 12:36:24', 1),
(12160, 12004, 59, 5, 0, 'Holding an offer for 4LPA with Mphasis,since its taking time to join looking for someother opportunities with 3-3.5 LPA Fresher candidate too', 85, '0000-00-00 00:00:00', 1),
(12161, 12009, 59, 4, 0, 'Communication Average not seems to be suitable no sustainability in his previous exp own reference do check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12162, 12008, 59, 3, 0, 'Selected for  Consultant Role  in B2B', 85, '0000-00-00 00:00:00', 1),
(12163, 12005, 59, 5, 0, 'fresher need to train a lot Not open for TxxampC already rejected other offer due to SA', 85, '0000-00-00 00:00:00', 1),
(12164, 11983, 29, 7, 3, 'esales RM karthika team, joining april 1st week', 11, '2023-03-04 06:46:59', 1),
(12165, 12008, 53, 7, 0, 'Selected for b2b', 59, '2023-03-04 06:55:15', 1),
(12166, 12009, 53, 1, 0, NULL, 59, '2023-03-04 06:56:24', 1),
(12167, 12008, 59, 3, 0, 'Selected for  Consultant Role  in B2B', 53, '2023-03-06 03:12:02', 1),
(12168, 12007, 59, 5, 0, 'Fresher no basics in PHP need to train a lot not open for TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(12169, 12013, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12170, 12013, 53, 7, 0, 'selected for b2b.', 59, '2023-03-06 07:05:24', 1),
(12171, 12014, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12172, 12011, 59, 5, 0, 'have 6 months exp in recruitment already holds an offer with several companies min exp 20K will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12173, 12015, 59, 2, 0, 'Fresher for Recruitment need to train alot can give a try for recruitment if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12174, 12012, 59, 5, 0, 'Have 6 Months Exp In Recruitment Already Holds An Offer With Several Companies Min Exp 20K Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12175, 12016, 59, 2, 0, 'Fresher not much strong with the basics need to train a lot  if he come back with the confirmation for TxxampC let us try', 85, '0000-00-00 00:00:00', 1),
(12176, 12017, 59, 2, 0, 'Fresher  education yet to complete he is into final sem open for TxxampC but seems doubtful cam e along with friends sustaianability doubts if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12177, 12018, 59, 5, 0, 'have exp HDB looking for IT positions too not open for TxxampC Left without attending the 2nd level B2B interview', 85, '0000-00-00 00:00:00', 1),
(12178, 12019, 59, 5, 0, 'Attitude No graduation have Content writing Exp checked with Reyaz 2nd round and got rejected will not sustain in our other roles', 85, '0000-00-00 00:00:00', 1),
(12179, 12020, 59, 5, 0, 'No Basics skills just 3 months with 20K seems to be doubtful  and will not sustain in our roles not suitable ', 85, '0000-00-00 00:00:00', 1),
(12180, 12021, 59, 2, 0, 'Fresher No basic skills ideas Can be trained candidate need time to check with his family and confirm Father in Egmore Head Constable Family in Chengalpet need to confirm if he comes back let us try\n', 85, '0000-00-00 00:00:00', 1),
(12181, 12022, 59, 4, 0, 'Communication Ok fresher for Digital marketing Content Writing having exposure is customer support inside sales but not interested to get back into the same,Can give a try for our Content Writer Profile kindly check and let me know your inputs ', 85, '0000-00-00 00:00:00', 1),
(12182, 12023, 97, 2, 0, 'average communication.. fresher to our role can be trained ..let us try ..', 85, '0000-00-00 00:00:00', 1),
(12183, 12024, 97, 5, 0, 'no clarity while talking ...not suit for our process..', 85, '0000-00-00 00:00:00', 1),
(12184, 12025, 97, 5, 0, 'married xxamp not much comfortable with our txxampc.. ', 85, '0000-00-00 00:00:00', 1),
(12185, 12022, 69, 1, 0, NULL, 59, '2023-03-09 06:50:42', 1),
(12186, 11983, 59, 3, 0, 'Selected for ESales in Consultant ROle', 29, '2023-03-09 06:51:34', 1),
(12187, 12023, 98, 1, 0, NULL, 97, '2023-03-09 07:49:40', 1),
(12188, 12023, 97, 4, 0, 'Average Communication.. Fresher To Our Role Can Be Trained ..Let Us Try ..', 97, '2023-03-09 07:49:40', 1),
(12189, 12027, 59, 5, 0, 'Fresher for IT have worked in Bahrain in different domain min  exp in IT 10-15K and not much comfort in TxxampC', 85, '0000-00-00 00:00:00', 1),
(12190, 12028, 59, 5, 0, 'Not suitable and no communication ', 85, '0000-00-00 00:00:00', 1),
(12191, 12029, 59, 5, 0, 'Fresher for IT have exposure in other domain not much comfirt in TxxampC  if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12192, 12030, 59, 4, 0, 'Have PHP skills 6 yrs exp kindly give a task and check ', 85, '0000-00-00 00:00:00', 1),
(12193, 12031, 59, 2, 0, 'Communication is so good have few months expin recruitment non IT can be trained for our roles and his exp is min16K  attended lot of interview and waiting for the feedback if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12194, 12030, 27, 1, 0, NULL, 59, '2023-03-10 06:57:10', 1),
(12195, 12026, 59, 5, 0, 'Fresher not much strong in basics he himself telling that he is good in practical knowledge 2nd round interviewed by Manikandan and was not comfortable in our profile will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(12196, 12033, 59, 4, 0, 'Fresher have exp in his core domain have basic knowledge in SQL can give a try for PHP kindly check  and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(12197, 12034, 59, 2, 0, 'Fresher have exp in his core domain have a basic knowledge in Javascript an keen to learn both father and mum is govt teacher family need is not much sustainability in long run doubts manikandan interviewed and gave a positive feedback on the same', 60, '0000-00-00 00:00:00', 1),
(12198, 12035, 59, 2, 0, 'Fresher have knowledge in SQl Java and open for PHP learning but need time to check and confirm the TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(12199, 12013, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-03-11 04:52:37', 1),
(12200, 12033, 27, 1, 0, NULL, 59, '2023-03-11 05:30:53', 1),
(12201, 12036, 59, 4, 0, 'Communication ok fresher for Digital MArketing can be trained kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12202, 12037, 59, 5, 0, 'Not open for TxxampC Not suitable', 85, '0000-00-00 00:00:00', 1),
(12203, 12038, 59, 2, 0, 'Selected for MIS Gokul final round age around 44 yrs but seems to good to handle the position Need to negotiate on the salary and to proceed with th final move', 85, '0000-00-00 00:00:00', 1),
(12204, 12040, 59, 5, 0, 'Too Long Distance he is in final year college will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12205, 12041, 59, 5, 0, 'Too Long distance not interested to go in the Javascript not much comfort in TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(12206, 12042, 59, 5, 0, 'long career Gap not showing much interest on the job long back attended and got rejected on the same will not sustain and handle our pressure', 85, '0000-00-00 00:00:00', 1),
(12207, 11978, 60, 1, 0, NULL, 18, '2023-03-13 06:54:28', 1),
(12208, 12036, 69, 1, 0, NULL, 59, '2023-03-13 07:13:45', 1),
(12209, 12043, 59, 3, 0, 'Selected for GK Sir team in consultant Role', 85, '0000-00-00 00:00:00', 1),
(12210, 12044, 59, 5, 0, 'We Offered Him The Package But Candidate Didnt Turn With His Confirmation Asked him to submit the previous exp documents but nothing he has and also he is our exp employee   Earlier feedback was not much good This is Banu reference', 85, '0000-00-00 00:00:00', 1),
(12211, 12045, 59, 5, 0, 'We offered him the package but candidate didnt turn with his confirmation not responded the calls too Banu Reference through Ex employee who appeared again', 85, '0000-00-00 00:00:00', 1),
(12212, 12051, 97, 4, 0, 'internal ref..50-50 Profile ..has 2yrs of exp in poorvika  as a sales  executive.. fresher to our process .kindly check and update your inputs', 85, '0000-00-00 00:00:00', 1),
(12213, 12048, 97, 5, 0, 'has 5m of exp in sales  average in convincing .. ', 85, '0000-00-00 00:00:00', 1),
(12214, 12046, 59, 4, 0, '5050 Profile just 6 months calling Exp but not seems to be ok for our position reference profile kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12215, 12047, 59, 5, 0, 'We Offered Him The Package But Candidate Didnt Turn With His Confirmation Not Responded The Calls Too Banu Reference Through Ex Employee Who Appeared Again', 85, '0000-00-00 00:00:00', 1),
(12216, 12049, 59, 2, 0, 'Fresher looking for recruitment can be trained in our roles Need time to give her confirmation on TxxampC if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12217, 12051, 71, 5, 0, 'rejected', 97, '2023-03-14 06:52:23', 1),
(12218, 12043, 31, 4, 4, 'candidate okay forwarded for next round', 59, '2023-03-14 07:07:41', 1),
(12219, 12044, 53, 7, 0, 'selected for b2b', 59, '2023-03-14 07:13:35', 1),
(12220, 12045, 53, 7, 0, 'selected for b2b', 59, '2023-03-14 07:17:17', 1),
(12221, 12047, 53, 7, 0, 'selected for b2b', 59, '2023-03-14 07:19:01', 1),
(12222, 12046, 53, 5, 0, 'HAving 6 months experience, pronounciation problem', 59, '2023-03-14 07:20:08', 1),
(12223, 11877, 59, 3, 0, '3 months 6K then 3 months 8K then 10-15K 3yrs SA', 85, '0000-00-00 00:00:00', 1),
(12224, 12052, 59, 5, 0, 'Fresher Long Career Gap Salary Exp is high looking much for banking exams will not sustain and handle our work pressure', 85, '0000-00-00 00:00:00', 1),
(12225, 12053, 59, 4, 0, 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(12226, 12054, 59, 4, 0, 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(12227, 12055, 59, 4, 0, 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(12228, 12056, 59, 4, 0, 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(12229, 12044, 59, 5, 0, 'We Offered Him The Package But Candidate Didnt Turn With His Confirmation Asked him to submit the previous exp documents but nothing he has and also he is our exp employee   Earlier feedback was not much good This is Banu reference', 53, '2023-03-15 02:38:59', 1),
(12230, 12045, 59, 5, 0, 'We offered him the package but candidate didnt turn with his confirmation not responded the calls too Banu Reference through Ex employee who appeared again', 53, '2023-03-15 02:39:23', 1),
(12231, 12047, 59, 5, 0, 'We Offered Him The Package But Candidate Didnt Turn With His Confirmation Not Responded The Calls Too Banu Reference Through Ex Employee Who Appeared Again', 53, '2023-03-15 02:39:43', 1),
(12232, 12057, 59, 5, 0, 'No Communication seems not much active will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(12233, 12058, 59, 5, 0, 'Too Long Distance Fresher for Telesales only field exp will not sustain', 85, '0000-00-00 00:00:00', 1),
(12234, 12059, 59, 5, 0, '	Too Long Distance Fresher For Telesales Only Field Exp Will Not Sustain', 85, '0000-00-00 00:00:00', 1),
(12235, 12060, 59, 4, 0, 'Communication too long distance salary pack is high no calling Exp kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12236, 11877, 27, 7, 0, 'Selected For HRMS Team. 6k For First 3 Months And 8k For 4 To 6 Months. 3 Years Service Agreement.', 59, '2023-03-15 08:43:58', 1),
(12237, 12053, 27, 1, 0, NULL, 59, '2023-03-15 08:44:37', 1),
(12238, 12055, 27, 1, 0, NULL, 59, '2023-03-15 08:44:52', 1),
(12239, 12054, 27, 1, 0, NULL, 59, '2023-03-15 08:45:11', 1),
(12240, 12056, 27, 1, 0, NULL, 59, '2023-03-15 08:45:25', 1),
(12241, 12060, 31, 5, 0, 'okay candidate.  But dont have relevant industry experience and also expecting higher package.', 59, '2023-03-15 08:56:17', 1),
(12242, 12031, 59, 3, 0, 'Selected for Recruitment with PT only', 59, '2023-03-16 05:23:23', 1),
(12243, 12043, 29, 7, 2, 'PC - Gkji Team RM', 31, '2023-03-16 06:28:27', 1),
(12244, 12061, 59, 5, 0, 'Yet to complete her graduation no basics in PHP need to train if she come back with TxxampC will check India First Veeramani reference\n', 60, '0000-00-00 00:00:00', 1),
(12245, 12062, 59, 4, 0, 'Have Exp in Calling CARE Health insurance but seems to be slow pressure handling doubts a lot kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(12246, 12062, 53, 1, 0, NULL, 59, '2023-03-16 06:56:01', 1),
(12247, 12064, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12248, 12065, 59, 5, 0, 'Fresher no t much strong with the basics not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(12249, 12066, 59, 5, 0, 'Fresher Not Much Strong With The Basics Not Open For TxxampC Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12250, 12068, 59, 5, 0, 'No Communication will not sustain and handle our work pressure not suitable ', 85, '0000-00-00 00:00:00', 1),
(12251, 12071, 59, 5, 0, 'Looking for Recruiter role no local language and the salary exp is very high will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(12252, 12079, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12253, 12078, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12254, 12069, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12255, 12067, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12256, 12072, 27, 7, 0, 'Selected for HRMS team. 6k for first 3 months and 8k for 4 to 6 months. 3 Years service agreement.', 85, '0000-00-00 00:00:00', 1),
(12257, 12074, 59, 3, 0, 'Selected for Reruitment interviewed by Gokul with the commitment for 6 months 1.2 LPA then based on performance 1.8 to 2 LPA', 85, '0000-00-00 00:00:00', 1),
(12258, 12043, 59, 3, 0, 'Selected for GK Sir team in consultant Role', 29, '2023-03-20 11:41:52', 1),
(12259, 12082, 59, 5, 0, 'Communication Average looking for recruitment but not much suits for the role will not handle our work pressure', 85, '0000-00-00 00:00:00', 1),
(12260, 12095, 97, 5, 0, 'fresher to our role sal expt high', 85, '0000-00-00 00:00:00', 1),
(12261, 12098, 59, 4, 0, '5050 Profile muh focused for non voice internal team reference open for Calling too kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12262, 12084, 59, 3, 0, 'Selected for B2B Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12263, 12085, 59, 3, 0, 'Selected for B2B Consultant Role ', 85, '0000-00-00 00:00:00', 1),
(12264, 12086, 97, 5, 0, 'has 8m of exp in Recruitment..communication good.. sustainbility doubts.. holding one offer and sal expt high.', 85, '0000-00-00 00:00:00', 1),
(12265, 12087, 97, 5, 0, 'has 1y3m of exp as a hR Executive . fresher to our role..sal expt high and he not ok with our txxampc... ', 85, '0000-00-00 00:00:00', 1),
(12266, 12089, 59, 5, 0, 'Not open for Calling not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(12267, 12083, 97, 4, 0, 'fresher .. average in convincing skills, need to be trained .. 50-50profile.. sustainbillity xxamp Pressure handling doubts..', 85, '0000-00-00 00:00:00', 1),
(12268, 12097, 97, 4, 0, 'has 3m of exp in renewals.. good in convincing skills.. sustainbility doubts .. need to check .. kindly review and update your inputs.', 85, '0000-00-00 00:00:00', 1),
(12269, 12093, 59, 5, 0, 'Need to open a lot sounding low for the profile will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12270, 12088, 59, 5, 0, 'Looking for backend but no communication will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(12271, 12096, 59, 4, 0, '5050 profile sounding low for our roles internal reference kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12272, 12083, 53, 7, 0, 'selected fr b2b', 97, '2023-03-20 05:56:17', 1),
(12273, 12097, 88, 1, 0, NULL, 97, '2023-03-20 06:00:36', 1),
(12274, 12099, 59, 5, 0, 'Attended Job Fair and much focused with Teaching domain will not sustain more than a month just for office exposure he is looking but a good and neat candidate', 85, '0000-00-00 00:00:00', 1),
(12275, 12100, 59, 5, 0, 'Fresher Career Gap not much strong with the basics will not sustain and not open for Terms and conditions', 85, '0000-00-00 00:00:00', 1),
(12276, 12101, 59, 3, 0, '3 months 6K then 3 months 8K then 10-15K 3yrs SA', 85, '0000-00-00 00:00:00', 1),
(12277, 12102, 59, 4, 0, 'Fresher 5050 profile have basic knowledge can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12278, 12103, 59, 4, 0, 'Fresher have basic knowledge in MySQL 5050 profile for us kindly check and let me know your inputs on the same ', 85, '0000-00-00 00:00:00', 1),
(12279, 12104, 59, 5, 0, 'Fresher Not Much Strong With The Basics Not Open For TxxampC Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12280, 12105, 59, 5, 0, 'Communication very average not much good with MIS but the salary Pack and expectation is high will not sustain and not suitable ', 85, '0000-00-00 00:00:00', 1),
(12281, 12106, 53, 5, 0, 'not suit for telecalling', 85, '0000-00-00 00:00:00', 1),
(12282, 12107, 59, 5, 0, 'Fresher for IT Career Gap have a reference in Tier level companies will not sustain in a long family is looking for marriage proposals have intern exposure in Python for 8 months 8K stipend', 85, '0000-00-00 00:00:00', 1),
(12283, 12108, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12284, 12109, 59, 5, 0, 'Fresher not much strong with the basics not open for TxxampC will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12285, 12110, 59, 5, 0, 'Have Basic Skills not much active seems to be slow will not handle our work pressure not suitable\n', 85, '0000-00-00 00:00:00', 1),
(12286, 12111, 59, 5, 0, 'Not Strong with Basics already attended ang got rejected not open for TxxampC Not suitable', 85, '0000-00-00 00:00:00', 1),
(12287, 12112, 59, 3, 0, 'Selected for Mern need to confirm for React orNode after 7 days 2nd round with Kavya and final round with Gokul Min Stipend 8K ', 85, '0000-00-00 00:00:00', 1),
(12288, 12113, 59, 2, 0, 'Interestedto learn Python open for TxxampC will check with gokul and confirm', 85, '0000-00-00 00:00:00', 1),
(12289, 12101, 27, 7, 0, 'Selected For HRMS Team. 6k For First 3 Months And 8k For 4 To 6 Months. 3 Years Service Agreement.', 59, '2023-03-21 02:51:12', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(12290, 12103, 27, 1, 0, NULL, 59, '2023-03-21 03:55:24', 1),
(12291, 12102, 27, 1, 0, NULL, 59, '2023-03-21 03:59:17', 1),
(12292, 12085, 53, 7, 0, 'selected fr b2b', 59, '2023-03-21 04:04:22', 1),
(12293, 12084, 53, 7, 0, 'selected fr b2b', 59, '2023-03-21 04:05:39', 1),
(12294, 12096, 88, 1, 0, NULL, 59, '2023-03-21 04:36:30', 1),
(12295, 12098, 88, 1, 0, NULL, 59, '2023-03-21 04:37:40', 1),
(12296, 12083, 59, 3, 0, 'Selected for Banu Team', 53, '2023-03-21 05:29:30', 1),
(12297, 12084, 59, 3, 0, 'Selected for B2B Consultant Role', 53, '2023-03-21 05:29:54', 1),
(12298, 12085, 59, 3, 0, 'Selected for B2B Consultant Role ', 53, '2023-03-21 05:30:42', 1),
(12299, 12114, 59, 5, 0, 'Long Career Gap Father is Sub Inspector and not much comfort with TxxampC if she come back let us try and sustainability doubts', 85, '0000-00-00 00:00:00', 1),
(12300, 12116, 59, 5, 0, 'Not open for TxxampC Fresher Not Much strong with the basics much comfort to work in Java', 85, '0000-00-00 00:00:00', 1),
(12301, 12122, 59, 5, 0, 'No Skills Career Gap No local language difficult to understand will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12302, 12126, 59, 5, 0, 'Have Exp but not a relevant Too long Distance will not handle our pressure left without attending the 2nd level inteview', 85, '0000-00-00 00:00:00', 1),
(12303, 12123, 59, 5, 0, 'No Skills Career Gap No Local Language Difficult To Understand Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12304, 12125, 59, 5, 0, 'Too long distance for sales sounding low wil not run in along pressure handling doubts', 85, '0000-00-00 00:00:00', 1),
(12305, 11971, 97, 5, 0, 'not suit for our process ... long run doubts', 85, '0000-00-00 00:00:00', 1),
(12306, 12115, 97, 4, 0, 'From tambaram ready to relocate..has 6m of direct sales exp.. good in convicing skills .. long run doubts..can give a try  ..check and update your inputs', 85, '0000-00-00 00:00:00', 1),
(12307, 12140, 59, 5, 0, 'Fresher not open for TxxampC Min Salary Exp is 25K have a reference in Zoho and continously looking for Zoho will not sustain', 85, '0000-00-00 00:00:00', 1),
(12308, 12138, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12309, 12137, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12310, 12136, 97, 5, 0, 'have basic skills html ,cssxxamp js..not ok with our txxampc.. ', 85, '0000-00-00 00:00:00', 1),
(12311, 12133, 97, 5, 0, 'he is intersted in buss. sustainbility doubts.', 85, '0000-00-00 00:00:00', 1),
(12312, 12132, 59, 5, 0, 'Not Strong with the basic skills have exp in UI for 10 months not much comfort in TxxampC Will  not sustain and handle work pressure no not suitable', 85, '0000-00-00 00:00:00', 1),
(12313, 12131, 59, 5, 0, 'No basic skills knowledge will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(12314, 12130, 97, 5, 0, 'have basic skills in prog.lau .. he want to discuss with his family .. if he come back.. let us try', 85, '0000-00-00 00:00:00', 1),
(12315, 12119, 59, 5, 0, 'Fresher Need to train alot Not much strong in the basics Came as a group not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(12316, 12120, 59, 5, 0, 'Fresher Need To Train Alot Not Much Strong In The Basics Came As A Group Not Open For TxxampC', 85, '0000-00-00 00:00:00', 1),
(12317, 12121, 59, 5, 0, 'Fresher Need To Train Alot Not Much Strong In The Basics Came As A Group Not Open For TxxampC', 85, '0000-00-00 00:00:00', 1),
(12318, 12124, 59, 5, 0, 'Fresher Need To Train Alot Not Much Strong In The Basics Came As A Group Not Open For TxxampC', 85, '0000-00-00 00:00:00', 1),
(12319, 12134, 97, 5, 0, 'intersted in Front- end dev ..  but not ok with our txxampc ..focusing on sal..', 85, '0000-00-00 00:00:00', 1),
(12320, 12115, 24, 5, 0, 'select for next round to Ramesh sir, but candidate absent for interview', 97, '2023-03-23 06:23:54', 1),
(12321, 12141, 59, 5, 0, 'no Basic skills looking for Devops and not much comfort in TxxampC', 85, '0000-00-00 00:00:00', 1),
(12322, 12142, 59, 5, 0, 'Holding an offer for PHP with 15K after 3months intern just looking for some more opportunities will not join anf not suitable', 85, '0000-00-00 00:00:00', 1),
(12323, 12143, 59, 5, 0, '2nd round reject by manikandan no skills knowledge not suitable ', 85, '0000-00-00 00:00:00', 1),
(12324, 12144, 59, 5, 0, 'No Basic skills but the salary exp is high and not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(12325, 12146, 59, 5, 0, '2nd time appearing for the interview remains the same no basic skills knowledge not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(12326, 12148, 59, 5, 0, 'No basic ideas in JS will not sustain with us and not suitable ', 85, '0000-00-00 00:00:00', 1),
(12327, 12149, 59, 5, 0, 'Communication Average too long distance yet to complete his graduation not suitable\n', 85, '0000-00-00 00:00:00', 1),
(12328, 12151, 59, 2, 0, 'Eager to learn requested time to learn and come back in JS,if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12329, 12145, 59, 5, 0, 'Not open for TxxampC no basic knowledge will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12330, 12157, 59, 2, 0, 'Communicaiton Average Have Exp for 2yrs Final Sala Exp is 20K Need to come back with her confirmation', 85, '0000-00-00 00:00:00', 1),
(12331, 12158, 59, 5, 0, 'Communication Good Have Several Offers In Hand Sustainability Doubts With Us', 85, '0000-00-00 00:00:00', 1),
(12332, 12154, 59, 4, 0, 'Have Exp in teaching family need is there but 5050 internal reference kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12333, 12155, 59, 5, 0, 'Too long Distance no basic skills will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(12334, 12156, 59, 5, 0, 'Fresher need to train a lot souding low if come back with confirmation on TxxampC let us check', 85, '0000-00-00 00:00:00', 1),
(12335, 12159, 59, 2, 0, 'Communication Good Salary Exp is min 20K just 3 months Exp if he comes back let us try Sustainability Doubts With Us', 85, '0000-00-00 00:00:00', 1),
(12336, 12117, 59, 3, 0, 'Selected for Suthagar Team 5050profile need to confirm Staff or consultant', 85, '0000-00-00 00:00:00', 1),
(12337, 12117, 24, 4, 0, 'select for next round.. 13k expected', 59, '2023-03-25 06:46:02', 1),
(12338, 12117, 88, 7, 0, 'Based on Candidate economic profile , selected for RE', 24, '2023-03-25 06:55:06', 1),
(12339, 12117, 59, 3, 0, 'Selected for Suthagar Team 5050profile need to confirm Staff or consultant', 88, '2023-03-25 07:02:14', 1),
(12340, 12154, 11, 1, 0, NULL, 59, '2023-03-25 07:03:09', 1),
(12341, 12147, 59, 2, 0, 'Selected for MIS Candidate yet to give his confirmation appeared fr HR then converted to MIS final round with Gokul', 85, '0000-00-00 00:00:00', 1),
(12342, 12152, 97, 5, 0, 'Not much strong in prog.skills ok with txxampc .sNR Rejected by kaviya ', 85, '0000-00-00 00:00:00', 1),
(12343, 12160, 97, 4, 0, 'has 4yrs 6m of exp in ins. sector.\nsal expt high .. kindly  check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(12344, 12161, 97, 5, 0, 'long distance .. 1yr exp as a full stack developer with 2.9lpa .. because of sal ..looking for job change expt min 6lpa.', 85, '0000-00-00 00:00:00', 1),
(12345, 12162, 59, 3, 0, 'Fresher interviewed by Gokul in the final round Career Gap can be trained in our roles', 85, '0000-00-00 00:00:00', 1),
(12346, 12163, 97, 5, 0, 'he much intersted in buss ... Not Ok With TxxampC ..not suit for role', 85, '0000-00-00 00:00:00', 1),
(12347, 12164, 97, 5, 0, 'long distance.. she not ok with our txxampc ..', 85, '0000-00-00 00:00:00', 1),
(12348, 12165, 97, 5, 0, 'attitude issue .. not suit for role', 85, '0000-00-00 00:00:00', 1),
(12349, 12166, 59, 3, 0, 'Selected for Flutter with 2 months 5K then 8K then overll 3yrs SA', 85, '0000-00-00 00:00:00', 1),
(12350, 12167, 59, 5, 0, 'Final Round hold by Gokul not strong with the basic ideas pressure handling doubts in our role', 85, '0000-00-00 00:00:00', 1),
(12351, 12168, 59, 5, 0, 'No Basic Skills too long career Gap not suitableb Will Not Sustain In Our Roles', 85, '0000-00-00 00:00:00', 1),
(12352, 12169, 59, 5, 0, 'Long Career Gap 29yrs will get marry next year will not sustain', 85, '0000-00-00 00:00:00', 1),
(12353, 12170, 97, 5, 0, 'long distance .. not much good in skills and yet not complete his cls ..Not Ok With TxxampC ..', 85, '0000-00-00 00:00:00', 1),
(12354, 12171, 59, 5, 0, 'Not open for TxxampC have a basic skills but not much comfort', 85, '0000-00-00 00:00:00', 1),
(12355, 12172, 59, 3, 0, '3M 5K then 8K then overall 3yrs SA 2nd round interviewed by Tamilmani', 85, '0000-00-00 00:00:00', 1),
(12356, 12173, 59, 5, 0, 'No basic Skills will not sustain not suitable long run doubts with us', 85, '0000-00-00 00:00:00', 1),
(12357, 12174, 59, 5, 0, 'Have Basic skilss not much comfort in TxxampC will not sustain', 85, '0000-00-00 00:00:00', 1),
(12358, 12175, 59, 5, 0, 'Yet to complete his graduation will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(12359, 12176, 59, 5, 0, 'Yet To Complete His Graduation Will Not Sustain In Our Roles', 85, '0000-00-00 00:00:00', 1),
(12360, 12177, 59, 5, 0, 'Yet To Complete His Graduation Will Not Sustain In Our Roles', 85, '0000-00-00 00:00:00', 1),
(12361, 12178, 97, 5, 0, 'Long Distance..looking for backend ..no communication... not suit our roles.. ', 85, '0000-00-00 00:00:00', 1),
(12362, 12180, 97, 5, 0, 'long distance.. focusing on sal.. long run doubts. ', 85, '0000-00-00 00:00:00', 1),
(12363, 12181, 97, 2, 0, 'good in skills ..from erode ready to relocate.. snr interviewed by vishwa have to confirm with gokul  for final round', 85, '0000-00-00 00:00:00', 1),
(12364, 12182, 97, 5, 0, 'looking for java developer....', 85, '0000-00-00 00:00:00', 1),
(12365, 12183, 59, 5, 0, 'Fresher have exp in core not much comfort in TxxampC need tme to confirm his interest if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12366, 12184, 59, 5, 0, 'Preferred to work in Java only not suitable', 85, '0000-00-00 00:00:00', 1),
(12367, 12185, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12368, 12186, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12369, 12187, 59, 3, 0, '1 month unpaid intern then 5months 6+8K Stipend then overall 3yrs SA Fresher no basic skills but can be trained', 85, '0000-00-00 00:00:00', 1),
(12370, 12188, 59, 5, 0, 'No basic skills need time to give his confirmation on TxxampC\n', 85, '0000-00-00 00:00:00', 1),
(12371, 12189, 59, 5, 0, 'Looking for Testing Profiles only ', 85, '0000-00-00 00:00:00', 1),
(12372, 12190, 59, 5, 0, 'Came for Job Fair and 2nd round interviewed by Manikandan not much skilled will not sustain need to get trained a lot ', 85, '0000-00-00 00:00:00', 1),
(12373, 12191, 59, 5, 0, 'Have Basic  knowledge in the skills not much comfort with the TxxampC Sustainability Doubts on the profile', 85, '0000-00-00 00:00:00', 1),
(12374, 12192, 59, 5, 0, 'He is into treatment no Basic skills wil not sustain for a long with us  not suitable', 85, '0000-00-00 00:00:00', 1),
(12375, 12193, 59, 5, 0, 'Have exp in different domain fresher for IT Have basic knowledge in Node but the expectations is high and not open for TxxampC and Internship', 85, '0000-00-00 00:00:00', 1),
(12376, 12160, 29, 1, 0, NULL, 97, '2023-03-28 06:58:14', 1),
(12377, 12201, 97, 5, 0, 'not suit for our roles xxamp long distance..', 85, '0000-00-00 00:00:00', 1),
(12378, 12206, 97, 5, 0, 'no communication xxamp long distance', 85, '0000-00-00 00:00:00', 1),
(12379, 12196, 59, 5, 0, 'Too long distance not comfort with the timing not suitable', 85, '0000-00-00 00:00:00', 1),
(12380, 12202, 97, 5, 0, 'long distance... focusing on sal ... long run doubts', 85, '0000-00-00 00:00:00', 1),
(12381, 12204, 97, 5, 0, 'not much good in prog.lau .. not ok with our txxampc', 85, '0000-00-00 00:00:00', 1),
(12382, 12205, 97, 5, 0, 'have to learn more .. long distance ', 85, '0000-00-00 00:00:00', 1),
(12383, 12199, 97, 5, 0, 'doing his course in accord one month more.. hv basic knowledge .. not ok with our txxampc..', 85, '0000-00-00 00:00:00', 1),
(12384, 12197, 97, 5, 0, 'Not Suit For Our Roles xxamp Long Distance..', 85, '0000-00-00 00:00:00', 1),
(12385, 12198, 59, 5, 0, 'Fresher not much strong with the basic skills need to train a lot if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12386, 12195, 59, 5, 0, 'Attended Job Fair looking much for Java Positions and no basic in Javascript  candidate need to come back  with his confirmation', 85, '0000-00-00 00:00:00', 1),
(12387, 12127, 59, 5, 0, 'communication Average no basic knowledge in MIS Preferred to be in non voice not suitable in our roles', 85, '0000-00-00 00:00:00', 1),
(12388, 12207, 74, 7, 0, 'suite for team already working in a telecalling field expected around 13k have laptop....due to father health issue cant move to outside and not intrested.....completed bE and ready to join immediately .......brother studies schooling only ....completed second round also kindly check once', 85, '0000-00-00 00:00:00', 1),
(12389, 12208, 97, 5, 0, 'long distance no communication\nnot suit for our roles', 85, '0000-00-00 00:00:00', 1),
(12390, 12209, 59, 5, 0, 'Not Strong with the basics poor understanding sustainability doubts in our role not suitable', 85, '0000-00-00 00:00:00', 1),
(12391, 12216, 97, 5, 0, 'looking for java dev.. ', 85, '0000-00-00 00:00:00', 1),
(12392, 12217, 97, 5, 0, 'not much good in skills xxamp not ok with our txxampc .. ', 85, '0000-00-00 00:00:00', 1),
(12393, 12218, 97, 2, 0, 'have knowledge in reactjs xxamp nodejs.. he want to confirm with his parents txxampc.. ', 85, '0000-00-00 00:00:00', 1),
(12394, 12213, 97, 4, 0, 'has health care exp ... tamil pronunciation is not gd. focusing on sal .. long run doubts...', 85, '0000-00-00 00:00:00', 1),
(12395, 12211, 59, 5, 0, 'Fresher for our domain SAlary exp is high will not sustain', 85, '0000-00-00 00:00:00', 1),
(12396, 12210, 59, 5, 0, 'too long Distance Not much comfort in TxxampC No basic skills not suitable', 85, '0000-00-00 00:00:00', 1),
(12397, 12212, 59, 5, 0, 'No Basic Skill Will not handle our work Pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(12398, 12214, 59, 5, 0, 'Too long Distance not much comfrt in TxxampC ', 85, '0000-00-00 00:00:00', 1),
(12399, 12215, 59, 5, 0, 'Not much comfrt in TxxampC previous exp Terminated for continous leaves', 85, '0000-00-00 00:00:00', 1),
(12400, 12219, 59, 5, 0, 'Communication No Not strong witg Accounts 5050 if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12401, 12221, 59, 3, 0, 'Selected for Mutual fund candidate communication is good final round interviewed by gokul candidate need to give her confirmation on Salary', 85, '0000-00-00 00:00:00', 1),
(12402, 12222, 59, 5, 0, 'Need time to check with family and confirm on TxxampC Sustainability doubts Salary exp high', 85, '0000-00-00 00:00:00', 1),
(12403, 12220, 59, 5, 0, 'Too long Distance Not open for TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(12404, 12207, 88, 7, 0, 'Based on Telecalling Experiences, selected for RE role', 74, '2023-03-30 06:25:31', 1),
(12405, 12072, 60, 1, 0, NULL, 27, '2023-03-31 12:17:01', 1),
(12406, 12101, 60, 1, 0, NULL, 27, '2023-03-31 12:17:23', 1),
(12407, 11877, 60, 1, 0, NULL, 27, '2023-03-31 12:18:33', 1),
(12408, 12213, 24, 5, 0, 'Expection highe no experience is sales', 97, '2023-03-31 06:46:55', 1),
(12409, 9060, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12410, 12229, 59, 3, 0, 'Selected for Node/React,final round interviewed by gokuland selected Family need is there 3months 5K then 8K then Overall SA Node', 85, '0000-00-00 00:00:00', 1),
(12411, 12231, 59, 3, 0, 'Selected For FLutter,Final Round Interviewed By Gokul and Selected Need Is There 3months 5K Then 8K Then Overall SA ', 85, '0000-00-00 00:00:00', 1),
(12412, 12238, 59, 5, 0, 'No basic skills knowledge not suitable for our roles ', 85, '0000-00-00 00:00:00', 1),
(12413, 12224, 97, 5, 0, 'has 9m of exp in recruitment..sal  expt too high', 85, '0000-00-00 00:00:00', 1),
(12414, 12228, 97, 5, 0, 'no job need ...sal expt high', 85, '0000-00-00 00:00:00', 1),
(12415, 12230, 97, 5, 0, 'long distance...has 3m of exp.. long run doubts', 85, '0000-00-00 00:00:00', 1),
(12416, 12232, 97, 5, 0, '. fresher to our role.. no communication.. sal expt high', 85, '0000-00-00 00:00:00', 1),
(12417, 12233, 97, 5, 0, 'looking for java', 85, '0000-00-00 00:00:00', 1),
(12418, 12234, 97, 5, 0, 'no job need ... intersted in java...', 85, '0000-00-00 00:00:00', 1),
(12419, 12235, 97, 5, 0, 'not much good in skills.. ', 85, '0000-00-00 00:00:00', 1),
(12420, 12236, 97, 5, 0, 'no communication ... not  suit for our process', 85, '0000-00-00 00:00:00', 1),
(12421, 12207, 59, 3, 0, 'Selected for Thanjavur Team in Consultant Role', 88, '2023-04-01 02:53:40', 1),
(12422, 12243, 97, 5, 0, 'not much good in prog . lau... not comfort with our txxampc', 85, '0000-00-00 00:00:00', 1),
(12423, 12244, 97, 5, 0, 'no communication .. not suit for our roles', 85, '0000-00-00 00:00:00', 1),
(12424, 12245, 59, 3, 0, 'Selectd for MIS Renewals joining doubts as the candidate exp is very high have 1 yr exp in Non voice process but not a relevant one', 85, '0000-00-00 00:00:00', 1),
(12425, 12246, 59, 3, 0, 'Selected for Recruiter Role final round with Gokul candidate need to confirm her role Staff Consultant', 85, '0000-00-00 00:00:00', 1),
(12426, 12255, 59, 5, 0, 'Fresher Saalry Exp is very high Settled will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(12427, 12240, 59, 5, 0, 'Communication Average sustainability doubts in our role Salary exp is very high being a fresher', 85, '0000-00-00 00:00:00', 1),
(12428, 12275, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12429, 12267, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12430, 12266, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12431, 12268, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12432, 12270, 59, 5, 0, 'No Communication not open for our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(12433, 12263, 59, 5, 0, 'Need to come back with his confirmation too long distance need to relocate will not sustain and handle our pressure', 85, '0000-00-00 00:00:00', 1),
(12434, 12269, 97, 5, 0, '1yr3m  of exp good communication sal expt high', 85, '0000-00-00 00:00:00', 1),
(12435, 12277, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12436, 12227, 59, 5, 0, 'Too long Distance not much strong in the basics not suitable', 85, '0000-00-00 00:00:00', 1),
(12437, 12251, 59, 5, 0, 'Long Career Gap Married and lot of personal issue will not sustain and handle our work roles not suitable', 85, '0000-00-00 00:00:00', 1),
(12438, 12253, 59, 5, 0, 'Not open for TxxampC Need to learn a lot  will not sustain and handle our workroles not suitable', 85, '0000-00-00 00:00:00', 1),
(12439, 12262, 59, 5, 0, 'not strong wiht the basics not suitable will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(12440, 12259, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12441, 12256, 59, 5, 0, 'Need To Learn A Lot  Will Not Sustain And Handle Our Work roles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12442, 12258, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12443, 12248, 97, 5, 0, 'not suit for our role.. ', 85, '0000-00-00 00:00:00', 1),
(12444, 12252, 59, 3, 0, 'Seleted for HR recruiter Fresher too long distance ready to relocate can give a try for our role final round interviewed by gokul', 85, '0000-00-00 00:00:00', 1),
(12445, 12278, 59, 4, 0, 'Have 3 months Exp in IT with high Salary 5L but layoff from the company and now looking for oppourtnities and ready to come down with the stipend kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(12446, 12272, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12447, 12279, 27, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12448, 12280, 97, 4, 0, 'Fresher for our role... can be trained Check and update your inputs..', 85, '0000-00-00 00:00:00', 1),
(12449, 12281, 97, 5, 0, 'Not Much Strong in  HTMLxxampCSS, JS... ', 85, '0000-00-00 00:00:00', 1),
(12450, 12282, 97, 5, 0, 'not much good in prog lau. snr rejected by manikandan frontend', 85, '0000-00-00 00:00:00', 1),
(12451, 12283, 97, 5, 0, 'focusing on salary ...long run doubts', 85, '0000-00-00 00:00:00', 1),
(12452, 12284, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12453, 12290, 97, 5, 0, 'no communication not suit for roles', 85, '0000-00-00 00:00:00', 1),
(12454, 12289, 97, 5, 0, 'No Communication Not Suit For Roles', 85, '0000-00-00 00:00:00', 1),
(12455, 12288, 97, 5, 0, 'have financial problems... he is not ok with  our txxampc', 85, '0000-00-00 00:00:00', 1),
(12456, 12278, 27, 1, 0, NULL, 59, '2023-04-05 07:20:26', 1),
(12457, 12280, 86, 5, 0, 'Not Satisfied', 97, '2023-04-05 07:44:33', 1),
(12458, 12292, 97, 5, 0, 'not suit for our role....', 85, '0000-00-00 00:00:00', 1),
(12459, 12293, 97, 5, 0, 'from guvi ..have basic knowledge...sal expt high long run doubts', 85, '0000-00-00 00:00:00', 1),
(12460, 12294, 97, 5, 0, 'have basic knowledge.. focusing on sal not ok with our txxampc', 85, '0000-00-00 00:00:00', 1),
(12461, 12295, 97, 5, 0, 'not much good in lau... not ok with txxampc', 85, '0000-00-00 00:00:00', 1),
(12462, 12297, 97, 4, 0, 'Fresher ... good Convincing skills.. job need .. have to check sustainability ...kindly check and update your feedback..', 85, '0000-00-00 00:00:00', 1),
(12463, 12298, 97, 4, 0, 'not open up ... have to train a lot... check and update your inputs', 85, '0000-00-00 00:00:00', 1),
(12464, 12301, 97, 4, 0, 'Has 2yrs.5m of exp in ins.Sales Good In Convincing.. Kindly Check And Update Your Feedback..', 85, '0000-00-00 00:00:00', 1),
(12465, 12299, 97, 5, 0, 'holding offer for 15k  but not joined because of sal .. long run doubts..', 85, '0000-00-00 00:00:00', 1),
(12466, 12300, 97, 4, 0, 'has exp in sales good in convincing.. kindly check and update your inputs..', 85, '0000-00-00 00:00:00', 1),
(12467, 12300, 89, 7, 0, 'Selected ', 97, '2023-04-08 10:17:02', 1),
(12468, 12301, 24, 4, 0, 'selected expct salary 20k', 97, '2023-04-08 10:18:26', 1),
(12469, 12298, 16, 5, 0, 'not fit for sales', 97, '2023-04-08 10:20:27', 1),
(12470, 12297, 16, 7, 0, 'Good candidate ', 97, '2023-04-08 10:28:42', 1),
(12471, 12286, 93, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12472, 12287, 42, 5, 0, 'Non performing in interview ', 85, '0000-00-00 00:00:00', 1),
(12473, 12301, 88, 7, 0, 'Based on the core Experience , selected for RE ', 24, '2023-04-08 01:29:45', 1),
(12474, 12309, 59, 5, 0, 'Not open for Sales no Communication not open for other Profiles too', 85, '0000-00-00 00:00:00', 1),
(12475, 12296, 59, 5, 0, '2nd round technical reject not suitable manikandan interviewed', 85, '0000-00-00 00:00:00', 1),
(12476, 12319, 59, 5, 0, 'Too long Distance not open fr TxxampC', 85, '0000-00-00 00:00:00', 1),
(12477, 12318, 59, 2, 0, 'should come for F2f if ok with TxxampC ', 85, '0000-00-00 00:00:00', 1),
(12478, 12317, 59, 4, 0, '5050 Profile have exp in sales but in credit card kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12479, 12305, 59, 5, 0, 'Not suitable for Recruitment Checked for MIS too but not much suitable', 85, '0000-00-00 00:00:00', 1),
(12480, 12312, 59, 5, 0, 'came along with his brother fresher need to learn a lot not much comfort in TxxampC', 85, '0000-00-00 00:00:00', 1),
(12481, 12313, 59, 5, 0, 'Not open for TxxampC looking much in bangalore location will not sustain in our roeles', 85, '0000-00-00 00:00:00', 1),
(12482, 12303, 59, 5, 0, 'Not open for TxxampC Not ready to relocate will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(12483, 12311, 59, 5, 0, 'Need to learn a lot need to check with family on TxxampC ', 85, '0000-00-00 00:00:00', 1),
(12484, 12316, 59, 5, 0, 'Technical Round reject by herash not suitable', 85, '0000-00-00 00:00:00', 1),
(12485, 12310, 59, 5, 0, 'No basic ideas in recruitment No Communicaiton not suitable\n', 85, '0000-00-00 00:00:00', 1),
(12486, 12307, 59, 3, 0, 'selected for HR profile need to come back wiht her confirmation 15 days notice', 85, '0000-00-00 00:00:00', 1),
(12487, 12315, 97, 5, 0, 'interviewed by priyatharisini..\nfeedback: sal expt 5lpa .. long run doubts', 85, '0000-00-00 00:00:00', 1),
(12488, 12302, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12489, 12314, 59, 2, 0, 'Fresher need to come back with the confirmation on TxxampC can be trained in our MIS Herash 2nd interview done', 85, '0000-00-00 00:00:00', 1),
(12490, 12324, 59, 5, 0, 'Fresher have basic skills in UIUX not open for TxxampC if he comes back let us try his brother in flutter working', 85, '0000-00-00 00:00:00', 1),
(12491, 12325, 59, 5, 0, 'Yet to complete her graduation looking for Python will not sustain and she is an athlete', 85, '0000-00-00 00:00:00', 1),
(12492, 12326, 59, 3, 0, 'Selected for Santhosh Team in Staff Role, Not interviewed by Sriram as he was on a long leave but discussed and given him joining', 85, '0000-00-00 00:00:00', 1),
(12493, 12327, 59, 5, 0, 'No Communication not suitable for our other roles too', 85, '0000-00-00 00:00:00', 1),
(12494, 12328, 59, 4, 0, '5050 Profile have 3 months exp in calling but have sales exp in other domain kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12495, 12300, 88, 7, 0, 'Selected for RE', 89, '2023-04-08 04:16:01', 1),
(12496, 12300, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 88, '2023-04-08 05:20:11', 1),
(12497, 12301, 59, 3, 0, 'Selected for Suthagar Team in Consultant Role', 88, '2023-04-08 05:20:52', 1),
(12498, 12326, 71, 4, 0, 'selected', 59, '2023-04-08 05:31:55', 1),
(12499, 12328, 51, 5, 0, 'rejected', 59, '2023-04-08 06:24:58', 1),
(12500, 12317, 44, 1, 0, NULL, 59, '2023-04-08 06:36:45', 1),
(12501, 12326, 59, 3, 0, 'Selected for Santhosh Team in Staff Role, Not interviewed by Sriram as he was on a long leave but discussed and given him joining', 71, '2023-04-10 04:01:01', 1),
(12502, 12331, 59, 5, 0, 'Not open for Sales Callings looking much for inbound calling process no Pronunciation   not suitable', 85, '0000-00-00 00:00:00', 1),
(12503, 12334, 59, 5, 0, 'Looking for Non Voice Process No Communication long career gap he was without work for 3+ yrs will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12504, 12332, 59, 5, 0, 'Yet to complete her graduation candidate is in final semester Pressure handling doubts will not sustain for long not suitable', 85, '0000-00-00 00:00:00', 1),
(12505, 12339, 59, 3, 0, 'Selected for Node Tamilmani Team with Stipend 3 months 6K then 2months 8K then overall 3yrs SA ', 85, '0000-00-00 00:00:00', 1),
(12506, 12341, 59, 3, 0, 'Selected for GK sir Team', 85, '0000-00-00 00:00:00', 1),
(12507, 12343, 59, 4, 0, '5050 Profile Have Exp In Byjus Communication Ok Internal Reference Salary Exp Is High Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(12508, 12336, 59, 5, 0, 'Fresher Too long Distance Already referred in HP and the process is going on  No ideas in JS will not sustain and not suitable\n', 85, '0000-00-00 00:00:00', 1),
(12509, 12341, 31, 4, 4, 'candidate okay forwarded to next level ', 59, '2023-04-10 05:37:17', 1),
(12510, 12343, 31, 5, 0, 'not interest to sell insurance ', 59, '2023-04-10 05:37:31', 1),
(12511, 12297, 88, 7, 0, 'Need to train xxamp selected for RE', 16, '2023-04-11 10:37:08', 1),
(12512, 12297, 59, 3, 0, 'Selected for Charles Team in Staff Role', 88, '2023-04-11 11:33:57', 1),
(12513, 12357, 59, 3, 0, 'Selected for GK sir team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(12514, 12356, 59, 5, 0, 'Not much with the Skills not much comfort inTxxampC will not sustain and handle our work Pressure', 85, '0000-00-00 00:00:00', 1),
(12515, 12355, 59, 2, 0, 'Need time to check with her family and confirm not much strong with the basics interested to learn can give a try', 85, '0000-00-00 00:00:00', 1),
(12516, 12329, 59, 5, 0, 'Not open for Saturday no basic ideas in the recruitment high Salary Exp', 85, '0000-00-00 00:00:00', 1),
(12517, 12350, 59, 5, 0, 'Not open for Sales Looking for Recruitment but no skills in recruitment long career Gap  will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(12518, 12349, 59, 2, 0, '5050 Profile Interviewed by Gokul in  the Final round not much suits but if he is ok for 1.8 LPA may try need to check for other Profiles later we can decide', 85, '0000-00-00 00:00:00', 1),
(12519, 12341, 29, 7, 2, 'Gkji team, i have given target / task for increase in salary after 2 months, once completing target, refer resume ', 31, '2023-04-11 05:53:31', 1),
(12520, 12363, 59, 3, 0, 'Selected for Manikandan Team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(12521, 12354, 59, 5, 0, 'No Basics Will not handle our work Pressure not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(12522, 12353, 59, 5, 0, 'Have Designing Skills  seems to be settled family not much importance he too having a business mindset will not sustain in a long with us not suitable', 85, '0000-00-00 00:00:00', 1),
(12523, 12352, 59, 5, 0, 'Not much family need Salary Exp is high Will not sustain ', 85, '0000-00-00 00:00:00', 1),
(12524, 12344, 59, 5, 0, 'No ideas in JS Not much comfort in TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(12525, 12337, 59, 5, 0, '4+yrs Exp in Client Coordination with tier level companies not sure on sustainability in our roles salary exp is very high  should have a hold min Exp is 4.2 LPA', 85, '0000-00-00 00:00:00', 1),
(12526, 12357, 31, 4, 4, 'candidate okay ', 59, '2023-04-11 06:26:58', 1),
(12527, 12363, 86, 7, 0, 'Sriram sir interviewed via Google meet. He said Ok For Rm profile.', 59, '2023-04-11 06:50:45', 1),
(12528, 12365, 59, 4, 0, 'Have Basic knowledge in PHP ready to learn kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12529, 12340, 59, 5, 0, 'No basic knowledge in MF,Too long distance will not handle our roles 30 days notice', 101, '0000-00-00 00:00:00', 1),
(12530, 12347, 97, 5, 0, 'no communication xxamp understanding ..long distance', 101, '0000-00-00 00:00:00', 1),
(12531, 12362, 97, 4, 0, 'Has calling exp. 50 - 50profile. can be trained.  kindly check and update your inputs', 101, '0000-00-00 00:00:00', 1),
(12532, 12374, 97, 4, 0, 'fresher to our role.. have to train a lot.. kindly check and update your inputs.', 85, '0000-00-00 00:00:00', 1),
(12533, 12372, 59, 5, 0, 'Too long Distance not ready to relocate too long career Gap will not sustain and  not suitable', 85, '0000-00-00 00:00:00', 1),
(12534, 12361, 59, 5, 0, 'Not suitable for HR profile have exp in sales and haing an final round interview with Skilllync tomorrow mostly he preferred to go for that.will not sustain', 85, '0000-00-00 00:00:00', 1),
(12535, 12358, 59, 3, 0, 'Selected for Karthika Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12536, 12348, 97, 5, 0, 'not suit for roles..', 85, '0000-00-00 00:00:00', 1),
(12537, 12364, 97, 4, 0, 'Fresher job need. can give a try.\nhave to train ..kindly check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(12538, 12367, 59, 4, 0, '5050 Profile have Exp in credit card sales kindly check andlet me know your inputs for DM team', 85, '0000-00-00 00:00:00', 1),
(12539, 12368, 59, 2, 0, 'Have Exp in Backend  Colections asked her to wait for 2nd llevel but left without attending need to check and schedule again', 85, '0000-00-00 00:00:00', 1),
(12540, 12369, 59, 5, 0, 'Need to open a lot will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(12541, 12370, 59, 4, 0, 'Communication Ok have exp in Accounts fresher for telecalling can give a try kindly check and let me lknow your inputs', 85, '0000-00-00 00:00:00', 1),
(12542, 12371, 59, 3, 0, 'Seleted for Node JS Viswa Team internship stpnd 6K 3months then 8K 2 months then overall 3yrs SA', 85, '0000-00-00 00:00:00', 1),
(12543, 12373, 59, 2, 0, 'Selected for Support/MIS interviewed by gokul candidate need to come back wiht his confirmation on the salary ', 85, '0000-00-00 00:00:00', 1),
(12544, 12358, 11, 4, 0, 'selected for E sales ', 59, '2023-04-12 06:33:11', 1),
(12545, 12370, 53, 1, 0, NULL, 59, '2023-04-12 06:34:12', 1),
(12546, 12367, 88, 1, 0, NULL, 59, '2023-04-12 06:35:48', 1),
(12547, 12362, 88, 1, 0, NULL, 97, '2023-04-12 07:18:06', 1),
(12548, 12374, 53, 1, 0, NULL, 97, '2023-04-12 07:19:34', 1),
(12549, 12364, 53, 1, 0, NULL, 97, '2023-04-12 07:23:44', 1),
(12550, 12363, 60, 1, 0, NULL, 86, '2023-04-13 11:06:58', 1),
(12551, 12341, 59, 3, 0, 'Selected for GK sir Team', 29, '2023-04-13 12:01:03', 1),
(12552, 12365, 27, 1, 0, NULL, 59, '2023-04-13 03:06:16', 1),
(12553, 12375, 97, 4, 0, 'fresher need to open a lot...can be trained... let me know your inputs.', 85, '0000-00-00 00:00:00', 1),
(12554, 12376, 97, 4, 0, 'Fresher can give a try. kindly check and update your inputs', 85, '0000-00-00 00:00:00', 1),
(12555, 12381, 59, 5, 0, 'He holds several offers and looking for some more he can join only based on the other offer conslusions not suitable', 85, '0000-00-00 00:00:00', 1),
(12556, 12379, 59, 5, 0, 'Need to complete his graduation Salary exp is high being a fresher and not much comfort in travel\n', 85, '0000-00-00 00:00:00', 1),
(12557, 12383, 59, 5, 0, 'Not open for Field travel no Communication Pressure handling no not suitable', 85, '0000-00-00 00:00:00', 1),
(12558, 12385, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12559, 12386, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12560, 12386, 97, 5, 0, 'not much good in prog. lau. SNR rejected by kavya', 85, '0000-00-00 00:00:00', 1),
(12561, 12387, 97, 4, 0, 'not open up ...need to train a lot,', 85, '0000-00-00 00:00:00', 1),
(12562, 12388, 59, 3, 0, 'Selected for GK Sir Team', 85, '0000-00-00 00:00:00', 1),
(12563, 12385, 53, 7, 0, 'Selectd for B2B Candidate Exp is min 19K TH Need to analyse in 7 days', 59, '2023-04-13 05:43:08', 1),
(12564, 12376, 53, 7, 0, 'Selected for B2B 11K TH', 97, '2023-04-13 05:48:51', 1),
(12565, 12388, 31, 4, 4, 'candidate okay.  but he need time till next month', 59, '2023-04-13 05:49:51', 1),
(12566, 12375, 53, 1, 0, NULL, 97, '2023-04-13 05:52:08', 1),
(12567, 12387, 86, 5, 0, 'Not Satisfied', 97, '2023-04-13 06:01:24', 1),
(12568, 12395, 59, 5, 0, 'No basic knowledge and understanding skills is poor will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12569, 12396, 59, 5, 0, '6 months Ep in flutter and the curent Salary and the exp is very high will not sustain and much focus in the salary only not suitable', 85, '0000-00-00 00:00:00', 1),
(12570, 12397, 59, 5, 0, 'Not much strong in the skills Sustainability and work pressure handling doubtful Salary Exp is high not suitable', 85, '0000-00-00 00:00:00', 1),
(12571, 12398, 59, 4, 0, '5050 Profile have Exp in Showroom Sales and Home Loan Sales Sustainability doubts kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12572, 12389, 59, 2, 0, 'communication average have internship Exp in Recruitment 5050 can give a try Need to check in the final round ', 101, '0000-00-00 00:00:00', 1),
(12573, 12399, 59, 2, 0, 'Need to come for Technical Round interested to learn PHP Have basic knowledge in SQL open for TxxampC will come for final round and we need decide\n', 85, '0000-00-00 00:00:00', 1),
(12574, 12392, 97, 2, 0, 'communication ok... need to check sustainbility..have to come  final round on monday..', 101, '0000-00-00 00:00:00', 1),
(12575, 12376, 59, 3, 0, 'Sleected for B2b In consultant role', 53, '2023-04-15 03:15:14', 1),
(12576, 12385, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-04-15 03:16:07', 1),
(12577, 12398, 44, 1, 0, NULL, 59, '2023-04-15 03:52:43', 1),
(12578, 12357, 29, 7, 3, 'Gkji team, check resume for salary details\n', 31, '2023-04-15 06:05:54', 1),
(12579, 12388, 29, 7, 3, 'RM Gkji team, refer Resume for salary', 31, '2023-04-15 06:09:13', 1),
(12580, 12388, 59, 3, 0, 'Selected for GK Sir Team', 29, '2023-04-15 06:13:17', 1),
(12581, 12357, 59, 3, 0, 'Selected for GK sir team in Staff Role', 29, '2023-04-15 06:39:24', 1),
(12582, 12390, 97, 4, 0, 'fresher  communication good .good in convincing kindly check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(12583, 12417, 97, 5, 0, 'not suit for roles', 85, '0000-00-00 00:00:00', 1),
(12584, 12419, 59, 5, 0, 'Not open for Sales sustainability doubts will not handle our pressure', 85, '0000-00-00 00:00:00', 1),
(12585, 12405, 97, 5, 0, 'fresher to our role.. sal expt high ...  ', 101, '0000-00-00 00:00:00', 1),
(12586, 12423, 97, 5, 0, 'has exp in Customer queries...looking for same..long distance too', 85, '0000-00-00 00:00:00', 1),
(12587, 12416, 97, 5, 0, 'has exp in dm..with 4lpa..now looking for developer.. ', 85, '0000-00-00 00:00:00', 1),
(12588, 12420, 59, 5, 0, 'Much focused for Java Openings only', 85, '0000-00-00 00:00:00', 1),
(12589, 12421, 59, 5, 0, 'final round reject interviewed by gokul for Digital Marketing sustainability doubts and salary exp is high', 85, '0000-00-00 00:00:00', 1),
(12590, 12414, 97, 5, 0, 'trying for govt exam..not much good in prog.lau. long run doubts', 85, '0000-00-00 00:00:00', 1),
(12591, 12390, 11, 4, 0, 'selected', 97, '2023-04-17 08:08:35', 1),
(12592, 12402, 59, 5, 0, 'No Communication seems to be slow will not sustain adn not suitable', 85, '0000-00-00 00:00:00', 1),
(12593, 12428, 97, 4, 0, 'has calling exp..good convincing skill.. can give a try..kindly check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(12594, 12435, 59, 5, 0, 'Looking for Salary only will not sustain and handle our work pressure', 85, '0000-00-00 00:00:00', 1),
(12595, 12406, 59, 2, 0, 'Have Exp in Recruitment Can be trained in our roles will come back for the final round', 85, '0000-00-00 00:00:00', 1),
(12596, 12430, 97, 5, 0, 'not much Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', 85, '0000-00-00 00:00:00', 1),
(12597, 12429, 97, 5, 0, 'Have basic knowledge in prog.lau... not ok with txxampc', 85, '0000-00-00 00:00:00', 1),
(12598, 12411, 59, 5, 0, 'Need to come back with his confirmation on txxampC Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(12599, 12436, 59, 5, 0, 'Too Long Distance not much strong with the basics having some references too', 85, '0000-00-00 00:00:00', 1),
(12600, 12437, 59, 5, 0, 'No Communication not open for Work Pressure will not sustain', 85, '0000-00-00 00:00:00', 1),
(12601, 12409, 59, 4, 0, '5050 Interested to learn have basic but not able to explain kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(12602, 12438, 42, 4, 5, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(12603, 12432, 42, 4, 5, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(12604, 12440, 97, 5, 0, 'not suit for roles', 85, '0000-00-00 00:00:00', 1),
(12605, 12441, 97, 5, 0, 'Not Suit For  our Roles', 85, '0000-00-00 00:00:00', 1),
(12606, 12442, 97, 5, 0, 'Not Suit For Role', 85, '0000-00-00 00:00:00', 1),
(12607, 12433, 97, 5, 0, 'married fresher ..long run doubts', 85, '0000-00-00 00:00:00', 1),
(12608, 12425, 97, 5, 0, 'has exp as a process ass. sal expt high ..', 85, '0000-00-00 00:00:00', 1),
(12609, 12426, 97, 5, 0, 'currently doi her masterxquots  final yr... holding 3 offer but not joined .. because of sal ... expt high', 85, '0000-00-00 00:00:00', 1),
(12610, 12427, 97, 5, 0, '3 mon of exp in rec..long distance sustainbility doubts..sal expt high', 85, '0000-00-00 00:00:00', 1),
(12611, 12424, 97, 5, 0, 'no communication... not suit for our role. ', 85, '0000-00-00 00:00:00', 1),
(12612, 12358, 59, 3, 0, 'Selected for Karthika Team in Consultant Role', 11, '2023-04-19 11:39:20', 1),
(12613, 8438, 60, 1, 0, NULL, 11, '2023-04-19 11:39:54', 1),
(12614, 12432, 30, 7, 3, 'CTC suggested 30k take home.confirm joining date cross verify the previous company details\n', 42, '2023-04-19 12:20:19', 1),
(12615, 12438, 30, 7, 4, 'CTC suggested 15k take home. Confirm the joining date', 42, '2023-04-19 12:22:39', 1),
(12616, 12431, 42, 4, 5, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(12617, 12432, 60, 1, 0, NULL, 30, '2023-04-19 12:29:17', 1),
(12618, 12438, 60, 1, 0, NULL, 30, '2023-04-19 12:32:10', 1),
(12619, 12431, 30, 7, 4, 'Suggested CTC 40k per month. Cross check previous salary and confirm the joining date ', 42, '2023-04-19 02:50:15', 1),
(12620, 12449, 97, 5, 0, 'good in prog.lau... he need to check with his parents about txxampc', 85, '0000-00-00 00:00:00', 1),
(12621, 12448, 97, 5, 0, 'not much good in skills..he want to check with his parents abt txxampc', 85, '0000-00-00 00:00:00', 1),
(12622, 12447, 97, 5, 0, ' Good In Skills..He Want To Check With His Parents Abt TxxampC', 85, '0000-00-00 00:00:00', 1),
(12623, 12446, 97, 5, 0, ' Good In Skills..long run doubts...He Want To Check With His Parents Abt TxxampC', 85, '0000-00-00 00:00:00', 1),
(12624, 12443, 97, 5, 0, 'no communication .. long run doubts sal expt high..', 85, '0000-00-00 00:00:00', 1),
(12625, 12391, 97, 5, 0, '3 Mon Of Exp In Rec..Long Distance Sustainbility Doubts..Sal Expt High', 85, '0000-00-00 00:00:00', 1),
(12626, 12345, 59, 5, 0, 'Not open for Sales Calling and Cant handle the work pressure will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12627, 12428, 53, 1, 0, NULL, 97, '2023-04-19 07:16:56', 1),
(12628, 12409, 27, 1, 0, NULL, 59, '2023-04-20 06:54:12', 1),
(12629, 12450, 97, 5, 0, 'not much Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12630, 12413, 59, 3, 0, 'Selected for HR Team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(12631, 12451, 59, 5, 0, 'Not much suitable for our roles Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(12632, 12452, 97, 5, 0, ' fresher to our role... not much good in prog lau  xxamp Not Ok With Our TxxampC', 101, '0000-00-00 00:00:00', 1),
(12633, 12453, 97, 5, 0, ' Fresher To Our Role... Not Much Good In Prog Lau  xxamp Not Ok With Our TxxampC', 101, '0000-00-00 00:00:00', 1),
(12634, 12454, 97, 5, 0, 'not yet complete his clg xxamp  not suit for our role .. focusing on sal', 101, '0000-00-00 00:00:00', 1),
(12635, 12456, 59, 5, 0, 'Rejected not suitable for our roles', 101, '0000-00-00 00:00:00', 1),
(12636, 12457, 97, 5, 0, 'fresher to our role... not ok with our txxampc', 101, '0000-00-00 00:00:00', 1),
(12637, 12458, 97, 5, 0, 'pursuing her Guvi online course  balance 3m more..she not ok with our txxampc', 101, '0000-00-00 00:00:00', 1),
(12638, 12431, 60, 1, 0, NULL, 30, '2023-04-21 10:37:13', 1),
(12639, 12467, 97, 5, 0, 'not much Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12640, 12466, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12641, 12465, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12642, 12461, 97, 5, 0, 'average communication long run doubts.. looking for it recruitment', 101, '0000-00-00 00:00:00', 1),
(12643, 12462, 97, 5, 0, 'pursuing his final yr...focusing on sal long run doubts', 101, '0000-00-00 00:00:00', 1),
(12644, 12463, 97, 5, 0, 'Good In Prog.Lau... She Need Time To Check With  His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12645, 12390, 60, 1, 0, NULL, 11, '2023-04-21 05:10:27', 1),
(12646, 12358, 59, 3, 0, 'Selected for Karthika Team in Consultant Role', 29, '2023-04-21 05:19:56', 1),
(12647, 12390, 59, 3, 0, 'Selected for Karthika Team in Consultant role', 29, '2023-04-21 05:26:32', 1),
(12648, 12468, 97, 5, 0, 'Good In Prog.Lau... she Need Time To Check With  His Parents..About TxxampC', 85, '0000-00-00 00:00:00', 1),
(12649, 12470, 59, 3, 0, 'Selectd for Recruitment in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(12650, 12471, 59, 3, 0, 'Selectde for HR Recruiter', 101, '0000-00-00 00:00:00', 1),
(12651, 12473, 97, 4, 0, 'Has exp in sales .. kindly check and update your feedback', 101, '0000-00-00 00:00:00', 1),
(12652, 12473, 53, 7, 0, 'selected for b2b', 97, '2023-04-22 07:26:56', 1),
(12653, 12242, 59, 2, 0, 'Need to complete her exams salary exp is high if she comes back will negotiate and try ', 101, '0000-00-00 00:00:00', 1),
(12654, 12479, 59, 2, 0, 'Need to open a lot Prsssure handling doubts Final Round interviewed by Gokul 5050 can be hired as intern then employment if she agrees with document submission', 101, '0000-00-00 00:00:00', 1),
(12655, 12480, 59, 3, 0, 'Selected for Digital Marketing with 1.8LPA but for 3 months will pay 10K and based on performance she will get the rest of salary for 3 months along with the pay in 4th month salary', 101, '0000-00-00 00:00:00', 1),
(12656, 12482, 59, 5, 0, 'No Basics skills need to learn a lot not open for TxxampC if he comes back let us try', 101, '0000-00-00 00:00:00', 1),
(12657, 12483, 59, 5, 0, 'Fresher Need to open a lot Pressure handling doubt will not sustain not suitable', 101, '0000-00-00 00:00:00', 1),
(12658, 12484, 59, 5, 0, 'Not open with TxxampC Need time to confirm with family Will not sustain and handle our pressure', 101, '0000-00-00 00:00:00', 1),
(12659, 12485, 59, 5, 0, 'Left without attending the interview', 101, '0000-00-00 00:00:00', 1),
(12660, 12489, 59, 5, 0, 'Not open for TxxampC N basics Skills will not sustain', 101, '0000-00-00 00:00:00', 1),
(12661, 12486, 59, 5, 0, 'Came for UI UX 42yrs Current CTC 85K onlydesigning skills Exp monthly 1L', 101, '0000-00-00 00:00:00', 1),
(12662, 12490, 59, 4, 0, '5050 Profile internal reference for Charles team Frequent Job Changes Kindly check for Charles team and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12663, 12493, 59, 4, 0, '5050 Profile have exp in Field sales and installation internal reference sustainability doubts kindly check and let me know', 101, '0000-00-00 00:00:00', 1),
(12664, 12491, 59, 4, 0, '5050 Profile Internal Reference For Charles Team Frequent Job Changes Kindly Check For Charles Team And Let Me Know Your Inputs', 101, '0000-00-00 00:00:00', 1),
(12665, 12490, 24, 5, 0, 'sustainability doubt so rejected', 59, '2023-04-24 07:49:26', 1),
(12666, 12491, 24, 5, 0, 'charles team, sustainability doubt', 59, '2023-04-24 07:49:46', 1),
(12667, 12493, 88, 1, 0, NULL, 59, '2023-04-24 08:04:35', 1),
(12668, 12487, 59, 5, 0, 'SAlary  high Exp30 days notice Will not sustain in a long', 101, '0000-00-00 00:00:00', 1),
(12669, 12494, 59, 5, 0, 'Left without attending the inteerview', 101, '0000-00-00 00:00:00', 1),
(12670, 12499, 59, 5, 0, 'No Communication not suitable for our roles', 101, '0000-00-00 00:00:00', 1),
(12671, 12504, 59, 5, 0, 'Not Much Comfort With TxxampC Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(12672, 12505, 59, 5, 0, 'Not Much Comfort With TxxampC Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(12673, 12507, 59, 4, 0, 'Fresher Not much importance on the job can give a try kindly check andlet me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12674, 12506, 59, 5, 0, 'Not Much Comfort With TxxampC Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(12675, 12500, 59, 5, 0, 'Not much comfort with TxxampC Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(12676, 12501, 59, 5, 0, 'Not Much Comfort With TxxampC Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(12677, 11991, 97, 5, 0, 'few months ago  attend the interview in our company for sales..  now came for mis no communication xxamp not suit for our role', 101, '0000-00-00 00:00:00', 1),
(12678, 12495, 97, 2, 0, 'good communication..has intern exp in recruitment. sal expt high. let us try.', 101, '0000-00-00 00:00:00', 1),
(12679, 12496, 97, 5, 0, 'good communication has intern exp , sal expt too high ..min 4.5lpa.. seems like no job need', 101, '0000-00-00 00:00:00', 1),
(12680, 12512, 53, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(12681, 12513, 97, 5, 0, 'good in prog. lau.. He  Wants  To Check His Parents About TxxampC ..', 101, '0000-00-00 00:00:00', 1),
(12682, 12514, 97, 5, 0, 'pursuing his course...he  wants to check his parents about txxampc ..', 101, '0000-00-00 00:00:00', 1),
(12683, 12515, 97, 5, 0, 'came for developer seems like intersted in testing ..', 101, '0000-00-00 00:00:00', 1),
(12684, 12516, 97, 5, 0, 'has exp in 4.2yrs  ui/ux.. simultaneously changing his job every yr because of hike.. long run doubts', 101, '0000-00-00 00:00:00', 1),
(12685, 12518, 97, 4, 0, 'has exp in ins.sales  has some career gap ..can be try .kindly  check and update your inputs', 101, '0000-00-00 00:00:00', 1),
(12686, 12519, 53, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(12687, 12520, 97, 5, 0, 'has 3m exp  as a developer with 5k  beause of package he left the job..sustainbility doubts ...he wants to check with his parents', 101, '0000-00-00 00:00:00', 1),
(12688, 12517, 59, 2, 0, 'Yet to confirm the Profile for Joining', 101, '0000-00-00 00:00:00', 1),
(12689, 12522, 97, 5, 0, 'average communication... long run doubts..seems like no job need..', 85, '0000-00-00 00:00:00', 1),
(12690, 12518, 51, 7, 0, 'Shortlisted by guarav sir ', 97, '2023-04-26 07:36:14', 1),
(12691, 12537, 97, 5, 0, 'good in skills planning for higher studies in canada in next 2yrs.. long run doubts', 101, '0000-00-00 00:00:00', 1),
(12692, 12544, 97, 4, 0, 'has sales exp...   good communication.let us try. kindly check and update your feedback', 101, '0000-00-00 00:00:00', 1),
(12693, 12551, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(12694, 12546, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(12695, 12545, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12696, 12552, 97, 5, 0, 'Good In Prog.Lau... she Need Time To Check With  His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12697, 12544, 31, 4, 4, 'Candidate okay and ready for immediate joining forwarded to next round ', 97, '2023-04-28 06:57:48', 1),
(12698, 12534, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12699, 12539, 97, 5, 0, 'seems like not intersted in IT ... ', 101, '0000-00-00 00:00:00', 1),
(12700, 12532, 97, 5, 0, 'Good In Prog.Lau... sHe Need Time To Check With  His Parent ....About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12701, 12521, 97, 5, 0, 'Good In Prog.Lau (fita)... He Need Time To Check With  His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12702, 12533, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12703, 12525, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12704, 12529, 59, 3, 0, 'Selected for Operations team in consultant Role', 60, '0000-00-00 00:00:00', 1),
(12705, 12577, 59, 5, 0, 'Selected for Suthagar Team but later he didnt respond the calls ', 85, '0000-00-00 00:00:00', 1),
(12706, 12576, 97, 4, 0, 'has calling exp ..fresher to our role ...can be trained kindly check and update your inputs..', 85, '0000-00-00 00:00:00', 1),
(12707, 12575, 97, 5, 0, 'good in prog.lau... he need time to check with  his parents..about txxampc', 85, '0000-00-00 00:00:00', 1),
(12708, 12574, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', 85, '0000-00-00 00:00:00', 1),
(12709, 12573, 97, 4, 0, 'has calling exp need to open a lot can be trained...kindly check and update your inputs', 85, '0000-00-00 00:00:00', 1),
(12710, 12572, 97, 4, 0, 'not open up ..kindly check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(12711, 12567, 59, 5, 0, 'Communication Ok But Final Round Reject Gokul Salary High Exp ', 85, '0000-00-00 00:00:00', 1),
(12712, 12541, 97, 5, 0, 'Has sales exp sal exp high sustainbility doubts', 85, '0000-00-00 00:00:00', 1),
(12713, 12550, 97, 5, 0, 'has 6m internship exp in bang..now currently doi his internship with 15k ..sal exp 3.5lpa  above..long run doubts', 85, '0000-00-00 00:00:00', 1),
(12714, 12565, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', 85, '0000-00-00 00:00:00', 1),
(12715, 12572, 24, 5, 1, 'Rejected, not suitable for our role', 97, '2023-04-29 05:33:33', 1),
(12716, 12573, 102, 4, 0, 'candidate shortlist expect salary 18k he is already take home 14.5k ', 97, '2023-04-29 06:02:24', 1),
(12717, 12576, 24, 4, 0, 'selected for RE, expect salary 25k..', 97, '2023-04-29 06:11:16', 1),
(12718, 12577, 24, 4, 0, 'Selected, expected salary 18k', 59, '2023-04-29 06:35:51', 1),
(12719, 12518, 60, 1, 0, NULL, 51, '2023-04-29 06:36:42', 1),
(12720, 12507, 57, 1, 0, NULL, 59, '2023-04-29 06:38:20', 1),
(12721, 12544, 29, 7, 2, 'Gk team', 31, '2023-05-01 11:35:39', 1),
(12722, 12576, 88, 7, 0, 'Communication skill is better,Based on working exposure, shortlisted for 18k take home', 24, '2023-05-02 10:08:12', 1),
(12723, 12577, 88, 7, 0, 'Determination xxamp energy level, shortlisted for 15k take home', 24, '2023-05-02 10:09:35', 1),
(12724, 12523, 59, 5, 0, 'Fresher Not ,much comfort with the TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(12725, 12576, 59, 3, 0, 'Selected for Consultant Role Suthagar Team', 88, '2023-05-02 01:33:01', 1),
(12726, 12577, 59, 5, 0, 'Selected for Suthagar Team but later he didnt respond the calls ', 88, '2023-05-02 01:35:17', 1),
(12727, 12464, 59, 3, 0, 'Selected for Recruitment team in consultant Role', 60, '0000-00-00 00:00:00', 1),
(12728, 12600, 59, 5, 0, 'No Communication not suitable for Sales calling and not suits for backend operations role too', 101, '0000-00-00 00:00:00', 1),
(12729, 12531, 59, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(12730, 12581, 59, 5, 0, 'Yet to complete his graduation 5 more months to go will not handle our work pressure', 85, '0000-00-00 00:00:00', 1),
(12731, 12595, 59, 5, 0, 'Have Networking and system admin exp will not handle the work pressure will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(12732, 12601, 59, 5, 0, 'No Local language have exp in calling but no sustainability in the previous exp Pressure handling doubts not suitable', 85, '0000-00-00 00:00:00', 1),
(12733, 12585, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12734, 12596, 59, 5, 0, 'Fresher not much strong with basics need to learn a lot not open for TxxampC will not sustain if comes back with comfort on TxxampC let us try', 85, '0000-00-00 00:00:00', 1),
(12735, 12598, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12736, 12592, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12737, 12591, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12738, 12586, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12739, 12587, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12740, 12590, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12741, 12589, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain not open for timings', 85, '0000-00-00 00:00:00', 1),
(12742, 12588, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain Not interested', 85, '0000-00-00 00:00:00', 1),
(12743, 12588, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain Not interested', 85, '0000-00-00 00:00:00', 1),
(12744, 12582, 59, 5, 0, 'Left Without Attending', 85, '0000-00-00 00:00:00', 1),
(12745, 12583, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12746, 12597, 59, 5, 0, 'Left without attending', 85, '0000-00-00 00:00:00', 1),
(12747, 12584, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12748, 12594, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12749, 12593, 59, 2, 0, 'Have basic knowledge can be trained need to come with his confirmation on TxxampC if he comes back let us try\n', 85, '0000-00-00 00:00:00', 1),
(12750, 12555, 59, 5, 0, 'Fresher have basic knowledge but not much family need is there settled focusing much on the salary only will not sustain and not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(12751, 12569, 97, 4, 0, 'fresher to our role..can be trained kindly check and update your feedback..', 85, '0000-00-00 00:00:00', 1),
(12752, 12569, 24, 4, 0, 'selected for next round.. salary expected 15k.', 97, '2023-05-03 10:06:20', 1),
(12753, 12569, 88, 7, 0, 'Selected for RE for 13k take home', 24, '2023-05-03 10:26:08', 1),
(12754, 12544, 59, 3, 0, 'Selected for GK sir Team with commitment min 1.5L business in May 2023 then 4.2 L from June2023 onwards\n', 29, '2023-05-03 11:12:14', 1),
(12755, 12569, 59, 3, 0, 'Selected for Suthagar Team in Staff Role ', 88, '2023-05-03 12:50:06', 1),
(12756, 12605, 74, 7, 0, 'She is completed msc and fresher ony, father auto driver brother completing msc and sister doing bsc...so income source is very poor so highly job need.......have laptop....completed two rounds and shortlisted by ramesh sir also, expected 12 to 15k ......kindly check and confirm once with AM for salary negotiation....immediate joining..', 101, '0000-00-00 00:00:00', 1),
(12757, 12605, 59, 3, 0, 'Selected for Thanjavur Team in Consultant role', 74, '2023-05-03 01:10:59', 1),
(12758, 12606, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort In TxxampC Need To Come Back With Her ConfirmationNo understanding', 85, '0000-00-00 00:00:00', 1),
(12759, 12619, 59, 5, 0, 'Fresher No basics in Javascript Need to  train a lot Not much comfort in TxxampC Need to come back with her confirmation', 85, '0000-00-00 00:00:00', 1),
(12760, 12616, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12761, 12615, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort In TxxampC Need To Come Back With Her Confirmation', 85, '0000-00-00 00:00:00', 1),
(12762, 12613, 59, 5, 0, 'Fresher Basics In Javascript Not Much Comfort In TxxampC Need To Come Back With Her Confirmation Salary exp is high and looking for Campus opportunities', 85, '0000-00-00 00:00:00', 1),
(12763, 12612, 59, 5, 0, 'Left without attending', 85, '0000-00-00 00:00:00', 1),
(12764, 12610, 59, 5, 0, 'Fresher  have 6 months Fluter Not Much Comfort In TxxampC Need To Come Back With Her Confirmation Left with out attending the next round', 85, '0000-00-00 00:00:00', 1),
(12765, 12609, 59, 5, 0, 'Aged Canddiate Very High CTC 13.85 LPA', 85, '0000-00-00 00:00:00', 1),
(12766, 12608, 59, 5, 0, 'Fresher No Basics In PHP Javascript Not Much Comfort In TxxampC Need To Come Back With Her Confirmation', 85, '0000-00-00 00:00:00', 1),
(12767, 12607, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort In TxxampC Need To Come Back With Her Confirmation', 85, '0000-00-00 00:00:00', 1),
(12768, 12605, 59, 3, 0, 'Selected for Thanjavur Team in Consultant role', 88, '2023-05-03 05:09:51', 1),
(12769, 12580, 59, 4, 0, 'Communication Ok Fresher have basics in Digital Marketing can be trained kindly check and let meknow your inputs', 85, '0000-00-00 00:00:00', 1),
(12770, 12580, 69, 1, 0, NULL, 59, '2023-05-03 07:52:52', 1),
(12771, 12616, 53, 7, 0, 'selected for b2b.', 59, '2023-05-03 07:54:54', 1),
(12772, 12635, 59, 5, 0, 'Dropped Final HR Round not responding the calls sent her message and there was no revert till date', 60, '0000-00-00 00:00:00', 1),
(12773, 12635, 53, 7, 0, '50 / 50. Will try for b2b', 59, '2023-05-04 04:12:08', 1),
(12774, 12579, 59, 4, 0, 'Communicaiton Average Have basic knowledge kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12775, 12617, 59, 5, 0, 'Communciaiton Average Not much comfort in Semivoice need to come back with his confiormaiton', 85, '0000-00-00 00:00:00', 1),
(12776, 12620, 59, 5, 0, 'Very High CTC Exp Holding Several Offers Have 2 yrs Exp sustainability Doubts need to check  via task', 85, '0000-00-00 00:00:00', 1),
(12777, 12624, 59, 5, 0, 'Looking for Non Voice No Communication willl not sustain and not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(12778, 12639, 59, 5, 0, 'Fresher Need to learn a lot in basics not much comfort in TxxampC need time to check and confirm if coming back let us try', 85, '0000-00-00 00:00:00', 1),
(12779, 12637, 59, 5, 0, 'Fresher Need To Learn A Lot In Basics Not Much Comfort In TxxampC Need Time To Check And Confirm Will not sustain ', 85, '0000-00-00 00:00:00', 1),
(12780, 12636, 59, 5, 0, 'Fresher Need To Learn A Lot In Basics Not Much Comfort In TxxampC Need Time To Check And Confirm If Coming Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12781, 12634, 59, 5, 0, 'Fresher Need To Learn A Lot In Basics Not Much Comfort In TxxampC Need Time To Check And Confirm If Coming Back Let Us Try Manikandan 2nd round interviewed\n', 85, '0000-00-00 00:00:00', 1),
(12782, 12631, 59, 5, 0, 'Looking For Java Profile Not Open For TxxampC Will Not Sustaina', 85, '0000-00-00 00:00:00', 1),
(12783, 12628, 59, 5, 0, 'Looking for Java Profile not open for TxxampC will not sustaina', 85, '0000-00-00 00:00:00', 1),
(12784, 12629, 59, 5, 0, 'Looking For Java Profile Not Open For TxxampC Will Not Sustaina', 85, '0000-00-00 00:00:00', 1),
(12785, 12627, 59, 5, 0, 'Looking For Java Profile Not Open For TxxampC Will Not Sustaina', 85, '0000-00-00 00:00:00', 1),
(12786, 12626, 59, 2, 0, 'Fresher not much strong with basics  need to come bac with his confirmation', 85, '0000-00-00 00:00:00', 1),
(12787, 12635, 59, 5, 0, 'Dropped Final HR Round not responding the calls sent her message and there was no revert till date', 53, '2023-05-04 05:53:00', 1),
(12788, 12616, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-05-04 05:56:38', 1),
(12789, 12579, 69, 1, 0, NULL, 59, '2023-05-04 07:46:11', 1),
(12790, 12645, 59, 5, 0, 'Processeed for 2nd level Operation but left without attending the interview', 101, '0000-00-00 00:00:00', 1),
(12791, 12573, 88, 1, 0, NULL, 102, '2023-05-05 03:54:55', 1),
(12792, 12638, 59, 5, 0, 'Communication will not sustain with us no sustainability', 85, '0000-00-00 00:00:00', 1),
(12793, 12625, 59, 5, 0, 'No Communication not suitable for Operations not open for Sales too', 85, '0000-00-00 00:00:00', 1),
(12794, 12646, 59, 5, 0, 'Fresher Not ,Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12795, 12648, 59, 5, 0, 'Fresher Not ,Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12796, 12657, 59, 4, 0, 'Communication is good have exp in Digital  Can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12797, 12653, 59, 3, 0, 'Selected for Charles Team DM in Staff Role', 85, '0000-00-00 00:00:00', 1),
(12798, 12651, 59, 5, 0, 'Have Long EXp Holding several IRDA certi Holding an offer with Bajaj for 5.5 will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(12799, 12649, 59, 5, 0, 'No Communication no open for Sales too will not sustain', 85, '0000-00-00 00:00:00', 1),
(12800, 12652, 59, 5, 0, 'Fresher Not ,Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12801, 12655, 59, 3, 0, 'Selected for B2B in consultant Role', 101, '0000-00-00 00:00:00', 1),
(12802, 12663, 59, 4, 0, 'bit nervous fresher can be trained kindly check and confirm the profile', 101, '0000-00-00 00:00:00', 1),
(12803, 12664, 59, 5, 0, 'Fresher will not sustain need to checj with familt and confirm', 101, '0000-00-00 00:00:00', 1),
(12804, 12660, 59, 5, 0, 'Sal exp is high not much strong with the basics', 60, '0000-00-00 00:00:00', 1),
(12805, 12665, 59, 4, 0, '5050 Profile can be trained kindly check and let meknow your interest', 60, '0000-00-00 00:00:00', 1),
(12806, 12656, 59, 3, 0, 'Selected for backend operations have 10+ yrs exp worked in Satr heakth can be trained', 60, '0000-00-00 00:00:00', 1),
(12807, 12642, 59, 3, 0, 'Selected for Karthika Team in ESales', 60, '0000-00-00 00:00:00', 1),
(12808, 12675, 59, 3, 0, 'Selected for Backend node with stipend Viswa', 60, '0000-00-00 00:00:00', 1),
(12809, 12672, 59, 5, 0, 'Left without attending', 60, '0000-00-00 00:00:00', 1),
(12810, 12667, 59, 5, 0, 'Not Opend For TxxampC Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(12811, 12670, 59, 5, 0, 'Not Opend For TxxampC Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(12812, 12669, 59, 5, 0, 'Not Opend For TxxampC Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(12813, 12668, 59, 5, 0, 'Too long Distance Looking for non voice will  not sustain', 60, '0000-00-00 00:00:00', 1),
(12814, 12676, 59, 5, 0, 'Not opend for TxxampC will not sustain', 60, '0000-00-00 00:00:00', 1),
(12815, 12642, 29, 7, 3, 'esales', 59, '2023-05-06 09:01:11', 1),
(12816, 12655, 53, 7, 0, 'selected for b2b', 59, '2023-05-06 09:01:45', 1),
(12817, 12663, 53, 1, 0, NULL, 59, '2023-05-06 09:03:32', 1),
(12818, 12665, 102, 5, 0, 'Not suitable sale ', 59, '2023-05-06 09:07:26', 1),
(12819, 12541, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 51, '2023-05-08 09:42:33', 1),
(12820, 12680, 59, 4, 0, 'Have Exp in Sales but not much in telecalling can give a try kindly check andlet me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12821, 12688, 59, 4, 0, '5050 Profile have Exp in Telecalling but seems to be slow not much active kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12822, 12653, 102, 4, 0, 'candidate selected nxt round and he already take home 14.5k expected 18k ', 59, '2023-05-08 03:12:46', 1),
(12823, 12653, 88, 7, 0, 'Selected for RE for 15k take home .', 102, '2023-05-08 03:29:34', 1),
(12824, 12691, 59, 4, 0, '5050 Profile have exp in telecalling but no sustainability kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12825, 12653, 59, 3, 0, 'Selected for Charles Team DM in Staff Role', 88, '2023-05-08 06:43:53', 1),
(12826, 12682, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12827, 12690, 59, 5, 0, 'Have 1 yr Exp but fresher for react and not ope for TxxampC open only for 1-2 yrs', 101, '0000-00-00 00:00:00', 1),
(12828, 12695, 59, 5, 0, 'Fresher  Not Open For TxxampC Will Not Sustain Not Suitable', 101, '0000-00-00 00:00:00', 1),
(12829, 12696, 59, 5, 0, 'Fresher  not open for TxxampC will not sustain not suitable', 101, '0000-00-00 00:00:00', 1),
(12830, 12694, 59, 5, 0, 'Not open for TxxampC will not sustain', 101, '0000-00-00 00:00:00', 1),
(12831, 12692, 59, 5, 0, 'Yet to complete the graduation  not open for TxxampC will not sustain\n', 101, '0000-00-00 00:00:00', 1),
(12832, 12683, 59, 3, 0, 'Selected for B2B in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(12833, 12686, 59, 5, 0, 'Not open for TxxampxxampC', 101, '0000-00-00 00:00:00', 1),
(12834, 12685, 59, 5, 0, 'No Communication no local language only hindi and  marathi', 101, '0000-00-00 00:00:00', 1),
(12835, 12693, 59, 3, 0, 'Selected for GK Sir Team with Gaurav Sir Commitment 2L biz in May June will increse the pay', 101, '0000-00-00 00:00:00', 1),
(12836, 12688, 31, 5, 2, 'earlier profile also not in proper sales ', 59, '2023-05-08 08:46:12', 1),
(12837, 12680, 24, 8, 0, '2nd round Abscond', 59, '2023-05-08 09:18:45', 1),
(12838, 12691, 51, 5, 0, 'Rejected', 59, '2023-05-08 09:19:33', 1),
(12839, 12693, 31, 4, 4, 'candidate okay and forwarded for next round', 59, '2023-05-08 09:20:29', 1),
(12840, 12683, 53, 7, 0, 'selected for b2b', 59, '2023-05-08 09:21:16', 1),
(12841, 12682, 53, 7, 0, 'selected for b2b', 59, '2023-05-08 09:21:26', 1),
(12842, 12657, 69, 1, 0, NULL, 59, '2023-05-08 09:23:33', 1),
(12843, 12699, 59, 3, 0, 'Selected for B2B in consultant Role', 103, '0000-00-00 00:00:00', 1),
(12844, 12702, 59, 4, 0, 'Very talkative sustainability no 5050 can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12845, 12714, 59, 5, 0, 'Looking for Flutter fresher interviewed by bharath and checked for node for training but candidate not interested', 101, '0000-00-00 00:00:00', 1),
(12846, 12704, 59, 5, 0, 'Average Communication No sustainability too long career gap not suitble', 101, '0000-00-00 00:00:00', 1),
(12847, 12705, 59, 5, 0, 'No Communication not open for Sales calls veryhigh CTC Exp Not suitable will not sustain', 101, '0000-00-00 00:00:00', 1),
(12848, 12712, 59, 5, 0, 'Will not handle the work pressure long career gap will not sustain an not suitable\n', 101, '0000-00-00 00:00:00', 1),
(12849, 12719, 59, 4, 0, 'Have Exp in DM Communication Good Kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12850, 12717, 59, 5, 0, 'Average Communicaiton no basic ideas in Digital and not open for Sales too', 101, '0000-00-00 00:00:00', 1),
(12851, 12709, 59, 5, 0, 'Open For TxxampC Fresher Much Focused On Java  Need To Check Via Task', 101, '0000-00-00 00:00:00', 1),
(12852, 12710, 59, 5, 0, 'Not open for TxxampC will not sustain not suitable', 101, '0000-00-00 00:00:00', 1),
(12853, 12720, 59, 5, 0, 'fresher comunicaiton Ok Not open for Sales Calls open for Operations but the salary exp is very high', 103, '0000-00-00 00:00:00', 1),
(12854, 12711, 59, 5, 0, 'open for TxxampC Fresher much focused on Java  need to check via task', 101, '0000-00-00 00:00:00', 1),
(12855, 12716, 59, 5, 0, 'Looking for non voice process no Communication will not sustain', 101, '0000-00-00 00:00:00', 1),
(12856, 12715, 59, 5, 0, 'Too long Distance not open for TxxampC will not sustain', 101, '0000-00-00 00:00:00', 1),
(12857, 12722, 59, 4, 0, 'Fresher for our domain can be trained kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12858, 12706, 59, 4, 0, 'Fresher for Our sales have exp in store Sales interested to learn can be trained kindly check andlet me know your interest', 101, '0000-00-00 00:00:00', 1),
(12859, 12713, 59, 5, 0, 'No Local communication 12th will not handle our work pressure not suitable', 103, '0000-00-00 00:00:00', 1),
(12860, 12723, 59, 4, 0, 'No relevant Exp in Sales can be trained in our roles 5050 profile kindly check and let meknow your inputs', 103, '0000-00-00 00:00:00', 1),
(12861, 12642, 59, 3, 0, 'Selected for Karthika Team in ESales', 29, '2023-05-09 07:02:50', 1),
(12862, 12693, 29, 7, 3, 'gk team', 31, '2023-05-09 07:26:29', 1),
(12863, 12693, 59, 3, 0, 'Selected for GK Sir Team with Gaurav Sir Commitment 2L biz in May June will increse the pay', 29, '2023-05-09 08:08:17', 1),
(12864, 12699, 53, 7, 0, 'fresher.  shortlisted for b2b', 59, '2023-05-09 08:15:32', 1),
(12865, 12723, 31, 5, 0, 'Expecting higher package\n', 59, '2023-05-09 08:16:56', 1),
(12866, 12719, 69, 1, 0, NULL, 59, '2023-05-09 08:18:00', 1),
(12867, 12706, 86, 4, 0, 'Selected for next Round', 59, '2023-05-09 08:56:59', 1),
(12868, 12722, 51, 5, 0, 'Rejected', 59, '2023-05-09 09:00:58', 1),
(12869, 12702, 86, 5, 0, 'Not Satisfied', 59, '2023-05-09 09:07:50', 1),
(12870, 12681, 59, 5, 0, 'Looking for non voice only Communication will not be proper stamerring\n', 101, '0000-00-00 00:00:00', 1),
(12871, 12707, 59, 4, 0, '5050 Profile have exp for 2 months kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12872, 12727, 59, 5, 0, 'Disability cant communicate bit difficult to work not suitable', 101, '0000-00-00 00:00:00', 1),
(12873, 12733, 59, 3, 0, 'Selected For B2B In Consultant Role', 101, '0000-00-00 00:00:00', 1),
(12874, 12726, 59, 5, 0, 'Too long Distance Will not sustain communication Average will not handle the work pressure', 101, '0000-00-00 00:00:00', 1),
(12875, 12699, 59, 3, 0, 'Selected for B2B in consultant Role', 53, '2023-05-10 01:30:45', 1),
(12876, 12682, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-05-10 01:31:27', 1),
(12877, 12683, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-05-10 01:32:02', 1),
(12878, 12655, 59, 3, 0, 'Selected for B2B in consultant Role', 53, '2023-05-10 03:12:43', 1),
(12879, 12729, 59, 4, 0, '5050 just 1 month Sales Exp Sustainability doubt kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12880, 12738, 59, 5, 0, 'Fresher not open for TxxampC much preferred for Java only will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(12881, 12732, 59, 5, 0, 'Fresher Not Open For TxxampC Much Too long Distance not suitable', 101, '0000-00-00 00:00:00', 1),
(12882, 12730, 59, 2, 0, 'Need to come back with her confirmation if she comes let us try', 101, '0000-00-00 00:00:00', 1),
(12883, 12731, 59, 5, 0, 'Fresher Not Open For TxxampC Much Preferred For Java Only Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(12884, 12734, 59, 5, 0, 'Fresher Not Open For TxxampC Much Preferred For flutter Only Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(12885, 12736, 59, 5, 0, 'Fresher Not Open For TxxampC Much Preferred For Java Only Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(12886, 12735, 59, 2, 0, 'Have Exp in PHP but no sustainability need to check via task and check', 101, '0000-00-00 00:00:00', 1),
(12887, 12739, 59, 5, 0, 'Fresher Not Open For TxxampC Much Preferred For Java Only Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(12888, 12741, 59, 5, 0, 'Fresher Not Open For TxxampC Much Preferred For Node Only Will Not Sustain  father is in HCL US citizen Have a plan to travel abroad', 101, '0000-00-00 00:00:00', 1),
(12889, 12733, 53, 7, 0, 'selected for b2b. ', 59, '2023-05-10 08:48:34', 1),
(12890, 12729, 19, 5, 1, 'NOT FIT', 59, '2023-05-10 09:01:18', 1),
(12891, 12707, 53, 1, 0, NULL, 59, '2023-05-10 09:02:04', 1),
(12892, 12761, 24, 5, 0, 'He is looking for non voice . not suitable for our profile', 85, '0000-00-00 00:00:00', 1),
(12893, 12760, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12894, 12757, 59, 2, 0, 'Need to come back with his confirmation on the TxxampC interviewed by Gokul', 85, '0000-00-00 00:00:00', 1),
(12895, 12759, 59, 5, 0, 'Fresher not open for TxxampC have basic knowledge will not sustain not more than a year', 85, '0000-00-00 00:00:00', 1),
(12896, 12755, 59, 2, 0, 'Need To Come Back With His Confirmation On The TxxampC Interviewed By Gokul', 85, '0000-00-00 00:00:00', 1),
(12897, 12754, 59, 5, 0, 'No Technical not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(12898, 12753, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12899, 12751, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12900, 12744, 59, 4, 0, 'Have Exp in Calling can be trained in our roles kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12901, 12747, 59, 5, 0, 'Exams yet to complete not much comfort in Telecalling not suitable', 85, '0000-00-00 00:00:00', 1),
(12902, 12749, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12903, 12750, 59, 3, 0, 'Selected for Babu Team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(12904, 12745, 59, 4, 0, 'Fresher can be trained in our roles kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12905, 12753, 53, 7, 0, 'selected for b2b', 59, '2023-05-11 08:15:53', 1),
(12906, 12751, 53, 7, 0, 'selected for b2b', 59, '2023-05-11 08:16:07', 1),
(12907, 12752, 59, 5, 0, 'Have 6 months Exp but not into projevct in Bench not open for TxxampC ', 85, '0000-00-00 00:00:00', 1),
(12908, 12750, 89, 7, 0, 'Selected', 59, '2023-05-11 08:19:26', 1),
(12909, 12744, 24, 8, 0, '2nd Round Abscond', 59, '2023-05-11 08:21:50', 1),
(12910, 12745, 24, 8, 0, '2nd Round Abscond', 59, '2023-05-11 08:22:24', 1),
(12911, 12733, 59, 3, 0, 'Selected For B2B In Consultant Role', 53, '2023-05-12 10:17:21', 1),
(12912, 12753, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-05-12 10:18:44', 1),
(12913, 12751, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-05-12 10:19:44', 1),
(12914, 12706, 18, 4, 0, 'Tried Couple of times not able to reach him. Please refix', 86, '2023-05-12 11:11:02', 1),
(12915, 12768, 42, 4, 4, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(12916, 12776, 59, 3, 0, 'Selected for Suthagar Team in staff Role', 85, '0000-00-00 00:00:00', 1),
(12917, 12750, 88, 7, 0, 'Selected for RE based on observation skills ', 89, '2023-05-12 03:29:32', 1),
(12918, 12750, 59, 3, 0, 'Selected for Babu Team in Staff Role', 88, '2023-05-12 03:48:14', 1),
(12919, 12473, 59, 3, 0, 'Selecetd for B2B Staff Role', 53, '2023-05-12 05:02:57', 1),
(12920, 12781, 59, 5, 0, 'Fresher Not Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12921, 12780, 59, 7, 0, 'Fresher Open For TxxampC Need To Join On Monday 15May Can Be Trained In Node', 85, '0000-00-00 00:00:00', 1),
(12922, 12779, 59, 5, 0, 'Fresher Not Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12923, 12778, 59, 7, 0, 'Fresher Open For TxxampC Need To Join On Monday 15May Can Be Trained In Node', 85, '0000-00-00 00:00:00', 1),
(12924, 12777, 59, 7, 0, 'Fresher open for TxxampC need to join on monday 15May Can be trained in Node', 85, '0000-00-00 00:00:00', 1),
(12925, 12775, 59, 5, 0, 'Too long Distance need to open a lot will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12926, 12774, 59, 5, 0, 'Have Exp in React 1yr and the min Exo in25K not much comfort in TxxampC', 85, '0000-00-00 00:00:00', 1),
(12927, 12773, 59, 5, 0, 'Fresher not much comfort with the TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(12928, 12772, 59, 2, 0, 'Selected for operations backend if she come back should give a try for it salary yet to finalise', 85, '0000-00-00 00:00:00', 1),
(12929, 12771, 42, 4, 4, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(12930, 12762, 59, 5, 0, 'Fresher Not Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12931, 12766, 59, 5, 0, 'Fresher Not Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12932, 12767, 59, 5, 0, 'Fresher Not Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12933, 12769, 59, 7, 0, 'Selected for React Profile Should join on Monday 15 May long career Gap 4yrs tnpsc ', 85, '0000-00-00 00:00:00', 1),
(12934, 12770, 59, 5, 0, 'Fresher and the Exp is high need to come back with the confirmation on TxxampC Good Candidate if he comes back can give a try', 85, '0000-00-00 00:00:00', 1),
(12935, 12769, 60, 1, 0, NULL, 59, '2023-05-12 08:37:31', 1),
(12936, 12776, 24, 7, 0, 'Selected, ramesh sir also interviewed ', 59, '2023-05-12 08:38:05', 1),
(12937, 12777, 60, 1, 0, NULL, 59, '2023-05-12 08:38:44', 1),
(12938, 12778, 60, 1, 0, NULL, 59, '2023-05-12 08:38:57', 1),
(12939, 12780, 60, 1, 0, NULL, 59, '2023-05-12 08:39:11', 1),
(12940, 12768, 30, 7, 4, 'CONFIRM CTC AND JOINING DATE', 42, '2023-05-13 02:23:03', 1),
(12941, 12771, 30, 7, 4, 'CONFIRM JOINING AND CTC', 42, '2023-05-13 02:24:27', 1),
(12942, 12768, 60, 1, 0, NULL, 30, '2023-05-13 05:41:08', 1),
(12943, 12771, 60, 1, 0, NULL, 30, '2023-05-13 05:42:29', 1),
(12944, 12776, 59, 3, 0, 'Selected for Suthagar Team in staff Role', 24, '2023-05-13 06:14:19', 1),
(12945, 12764, 59, 5, 0, 'Have exp in sales but not open for the same  for non voice no communication', 101, '0000-00-00 00:00:00', 1),
(12946, 12787, 59, 3, 0, 'Selected for Santhosh Team Staff Role', 101, '0000-00-00 00:00:00', 1),
(12947, 12784, 59, 5, 0, 'Not open for Field will not sustain in our roles focusin in boxing will not run  in along', 101, '0000-00-00 00:00:00', 1),
(12948, 12763, 59, 4, 0, '5050 Profile Have 6 months Exp can give a try kindly checj and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12949, 12786, 59, 4, 0, '5050 Profile Have 6 Months Exp Can Give A Try Kindly Checj And Let Me Know Your Inputs', 101, '0000-00-00 00:00:00', 1),
(12950, 12783, 59, 5, 0, 'not open for txxampC min Exp is 15K fresher in IT', 101, '0000-00-00 00:00:00', 1),
(12951, 12763, 53, 1, 0, NULL, 59, '2023-05-13 08:55:25', 1),
(12952, 12786, 53, 1, 0, NULL, 59, '2023-05-13 08:57:29', 1),
(12953, 12787, 71, 4, 0, 'Selected for next round', 59, '2023-05-13 08:58:49', 1),
(12954, 12803, 74, 7, 0, 'he is fit for profile ...completed bca and worked as a office assistant in a sastra university...and releived during covid...and preparing for PC two times but failed in exam so due to family situation searching for job.father worked in a barber shop and mother doing tailoring...have laptop and expected 13k salary kindly check and confirm once ready to join on 22nd may monday due to grandma ill health ....kindly check and confirm once...', 101, '0000-00-00 00:00:00', 1),
(12955, 12803, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2023-05-15 02:38:02', 1),
(12956, 12789, 59, 4, 0, '5050 Profile Fresher for our sales can give atry kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12957, 12792, 59, 5, 0, 'Fresher for our sales not open up will not sustain and handle our work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(12958, 12795, 59, 5, 0, 'Not Active will not handle our work Not suitable for our roles', 101, '0000-00-00 00:00:00', 1),
(12959, 12803, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 88, '2023-05-15 02:51:13', 1),
(12960, 12793, 59, 4, 0, 'Have Exp in Telecalling But not a relevant one can be trained in our roles kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12961, 12797, 59, 4, 0, 'Fresher 5050 profile can give a try in our roles kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12962, 12802, 59, 5, 0, 'Have Exp in Sales can be trained but left without attending the interview 2nd level', 85, '0000-00-00 00:00:00', 1),
(12963, 12804, 59, 5, 0, 'Communication No Will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(12964, 12799, 59, 5, 0, 'Fresher for IT Not much strong with the basics need to come back with his confirmation on TxxampC', 85, '0000-00-00 00:00:00', 1),
(12965, 12796, 59, 5, 0, 'Fresher not much strong in the skills final round reject by Gokul', 85, '0000-00-00 00:00:00', 1),
(12966, 12794, 42, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12967, 12782, 59, 3, 0, 'Selected for Shanmugam Team with Gaurav Final round Commitment May 50K June 1.5 Then 35K Net But the candidate is joining on 02 June only', 85, '0000-00-00 00:00:00', 1),
(12968, 12787, 18, 7, 4, 'Selected for Santosh Team. Ready to join next Wed. Expected salary is 25k Take home. can give 3.5L CTC xxamp candidate reffered by jagadeesh', 71, '2023-05-16 10:11:49', 1),
(12969, 12782, 44, 7, 4, 'Candidate selected by Gaurav ,please complete the further process', 59, '2023-05-16 10:15:20', 1),
(12970, 12793, 29, 1, 0, NULL, 59, '2023-05-16 10:17:09', 1),
(12971, 12801, 59, 2, 0, 'Have Exp in flutter can be trained gave her a task need to come back with that based on that we can decide', 60, '0000-00-00 00:00:00', 1),
(12972, 12789, 19, 5, 1, 'NO', 59, '2023-05-16 10:41:00', 1),
(12973, 12797, 19, 5, 1, 'NOT FIT', 59, '2023-05-16 10:45:51', 1),
(12974, 12810, 42, 4, 5, 'Selected for next round ', 104, '0000-00-00 00:00:00', 1),
(12975, 12798, 59, 5, 0, 'No basics skills will not sustain in a long and not showing much interest in the Profile', 85, '0000-00-00 00:00:00', 1),
(12976, 12815, 42, 5, 3, 'Not suit for our profile ', 104, '0000-00-00 00:00:00', 1),
(12977, 12816, 42, 4, 4, 'Selected for next round ', 104, '0000-00-00 00:00:00', 1),
(12978, 12807, 59, 5, 0, 'Aged candidate long career gap not suitable will not sustain and need to travel a long', 101, '0000-00-00 00:00:00', 1),
(12979, 12813, 59, 5, 0, 'No basic skills technical round reject by tamilmani', 101, '0000-00-00 00:00:00', 1),
(12980, 12818, 59, 5, 0, 'Not much open to handle the target long back she sttended and got rejected', 101, '0000-00-00 00:00:00', 1),
(12981, 12811, 74, 5, 0, 'not fit for team ...very lazy and not that much profile he not fit for sales', 101, '0000-00-00 00:00:00', 1),
(12982, 12817, 42, 4, 4, 'Selected for next round ', 104, '0000-00-00 00:00:00', 1),
(12983, 12810, 30, 7, 4, 'candidate expectation on ctc 5lac but suggested 4lac immediate joining', 42, '2023-05-16 03:36:31', 1),
(12984, 12816, 30, 7, 4, 'discuss salary part and he will join nxt week middle', 42, '2023-05-16 03:40:49', 1),
(12985, 12817, 30, 7, 4, 'immediate  joining discuss salary part suggested 30 k', 42, '2023-05-16 03:42:13', 1),
(12986, 12810, 60, 1, 0, NULL, 30, '2023-05-16 03:49:44', 1),
(12987, 12816, 60, 1, 0, NULL, 30, '2023-05-16 03:52:14', 1),
(12988, 12817, 60, 1, 0, NULL, 30, '2023-05-16 03:53:43', 1),
(12989, 12819, 59, 4, 0, 'Have Exp in Credit card Sales can be trained in our roles but the salary exp is very high kindly check and let meknow your inputs', 85, '0000-00-00 00:00:00', 1),
(12990, 12819, 71, 5, 0, 'Not fit for sales ', 59, '2023-05-16 07:32:17', 1),
(12991, 12822, 42, 5, 3, 'He is lying that he worked in icici', 104, '0000-00-00 00:00:00', 1),
(12992, 12821, 42, 5, 3, 'Not good in English ', 104, '0000-00-00 00:00:00', 1),
(12993, 12787, 60, 1, 0, NULL, 18, '2023-05-17 01:54:52', 1),
(12994, 12825, 59, 5, 0, 'Not open for TxxampC not ready to relocate will not sustain and too long distance\n', 101, '0000-00-00 00:00:00', 1),
(12995, 12830, 59, 3, 0, 'Selected for Syed Team in staff Role', 101, '0000-00-00 00:00:00', 1),
(12996, 12827, 59, 3, 0, 'Selected for Mutual Fund Role Fresher need to be trained have exp in different domain final round interviewed by Gokul ', 101, '0000-00-00 00:00:00', 1),
(12997, 12824, 59, 5, 0, 'Have 3 months Exp but min exp is 20K and not less than that but a good candidate ', 101, '0000-00-00 00:00:00', 1),
(12998, 12820, 59, 5, 0, 'Too long Distance Have Exp in Life insurance Sales looking for change only because of his distance he is currently working in TNagar also very high CTC exp will not sustain', 101, '0000-00-00 00:00:00', 1),
(12999, 12823, 59, 3, 0, 'Selected for GK sir team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(13000, 12673, 59, 5, 0, 'Fresher no JS basics came as a group and will not join if others are not joining Sustainability doubts not suitable', 101, '0000-00-00 00:00:00', 1),
(13001, 12830, 57, 4, 0, 'Candidate is ok', 59, '2023-05-17 05:42:35', 1),
(13002, 12823, 29, 7, 2, 'gk team, rm profile, 18k net salary, refer resume for incremental hike based on performance in may xxamp june 2 lac then 22k', 59, '2023-05-17 05:45:00', 1),
(13003, 12830, 59, 3, 0, 'Selected for Syed Team in staff Role', 57, '2023-05-18 11:27:46', 1),
(13004, 12832, 42, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13005, 12836, 42, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13006, 12837, 59, 4, 0, 'Communication Have Exp in calling career gap can give a try for our roles kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13007, 12840, 59, 5, 0, 'Not much comfort with TxxampC  fresher salary exp is more kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13008, 12834, 59, 3, 0, 'Selected for Charles Team in consultant ROle', 101, '0000-00-00 00:00:00', 1),
(13009, 12833, 59, 3, 0, 'Selected for Node Profile with stipend 6-8 then 3yrs overall 3.5 yrs SA', 101, '0000-00-00 00:00:00', 1),
(13010, 12837, 53, 1, 0, NULL, 59, '2023-05-18 08:29:32', 1),
(13011, 12835, 59, 4, 0, 'Not open up Not much suits for the role internal reference kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(13012, 12834, 102, 7, 0, 'shortlist for team jun 1st joining ', 59, '2023-05-18 08:33:00', 1),
(13013, 12835, 102, 5, 0, 'Not suitable sales', 59, '2023-05-18 08:33:38', 1),
(13014, 12823, 59, 3, 0, 'Selected for GK sir team in Staff Role', 29, '2023-05-19 09:53:32', 1),
(13015, 12843, 74, 7, 0, 'he is already experience in jio direct marketing and airtel direct marketing for 10 month and salary getting 15k .....fit for team and good exposure in sales field so he is ok with the team .....expected 16k salary kindly check once and confirm with the salary but he is good in sales....father plumbbing worker....no laptop ....expected to join monday kindly check and confirm once..', 85, '0000-00-00 00:00:00', 1),
(13016, 12846, 74, 5, 0, 'she is not fit for sales....expected HR profile due to family situation she is choosing  as a tellecaller so sustainability issue.....newly married, love marriage so regularity issues also there.......no laptop, expected salary high as a fresher15k ...very long gap she came for a job', 85, '0000-00-00 00:00:00', 1),
(13017, 12841, 59, 5, 0, 'Not suitable for our sales calling will not sustain and handle our pressure', 101, '0000-00-00 00:00:00', 1),
(13018, 12842, 59, 4, 0, '5050 Profile have exp in calling byjus need to be trained a lot kindly check and let me know yourinpuyts', 101, '0000-00-00 00:00:00', 1),
(13019, 12847, 59, 4, 0, '5050 Profiles have exp in housing  finance sustainability doubts kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13020, 12848, 59, 5, 0, 'Fresher salary exp is very high will not run in a long not suitable', 101, '0000-00-00 00:00:00', 1),
(13021, 12844, 59, 5, 0, 'Have exp in Dot net not open for TxxampC will not sustain for a lonfg', 101, '0000-00-00 00:00:00', 1),
(13022, 12843, 59, 3, 0, 'Selected for Thanjavur Consultant ROle', 74, '2023-05-19 04:40:35', 1),
(13023, 12842, 44, 1, 0, NULL, 59, '2023-05-19 07:17:04', 1),
(13024, 12847, 29, 1, 0, NULL, 59, '2023-05-19 07:19:54', 1),
(13025, 12850, 59, 2, 0, '5050 Profile fresher need to check his sustainability salary exp is high being a fresher\n', 101, '0000-00-00 00:00:00', 1),
(13026, 12849, 59, 5, 0, 'Poor Communication and understanding is poor will not sustain and handle our roles', 101, '0000-00-00 00:00:00', 1),
(13027, 12853, 59, 5, 0, 'Fresher no basics need time to confirm the TxxampC will not sustain', 101, '0000-00-00 00:00:00', 1),
(13028, 12856, 59, 3, 0, 'Selected for ESales Karthika Team', 101, '0000-00-00 00:00:00', 1),
(13029, 12854, 59, 5, 0, 'Fresher No Basics Need Time To Confirm The TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13030, 12852, 59, 3, 0, 'Selected for Consultant role ESales Team ', 101, '0000-00-00 00:00:00', 1),
(13031, 12855, 59, 5, 0, 'No Communication not suitable for our roles will not sustain', 101, '0000-00-00 00:00:00', 1),
(13032, 12852, 29, 7, 3, 'esales karthika team', 59, '2023-05-20 08:17:28', 1),
(13033, 12856, 29, 7, 3, 'esales ', 59, '2023-05-20 08:18:10', 1),
(13034, 12877, 59, 5, 0, 'No basics and not open with the txxampC will not sustain', 85, '0000-00-00 00:00:00', 1),
(13035, 12875, 59, 5, 0, 'Too long Distance Looking much for non voice process not open for sales callings', 85, '0000-00-00 00:00:00', 1),
(13036, 12873, 59, 4, 0, '5050 Profile no sustainability in the previous exp kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13037, 12874, 59, 5, 0, 'Looking for Testing profile only', 85, '0000-00-00 00:00:00', 1),
(13038, 12868, 59, 5, 0, 'Not comfort in the target based profile will not sustain and handle the work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(13039, 12870, 59, 5, 0, 'Fresher not much comfort in TxxampC not much strong with the basics', 85, '0000-00-00 00:00:00', 1),
(13040, 12871, 59, 5, 0, 'Fresher not open for TxxampC not much god with the basic skills too', 85, '0000-00-00 00:00:00', 1),
(13041, 12865, 59, 3, 0, 'Selected for PHP Have a good skills knowledge in PHP Can be trained open for TxxampC ', 85, '0000-00-00 00:00:00', 1),
(13042, 12706, 60, 1, 0, NULL, 18, '2023-05-23 09:49:22', 1),
(13043, 12867, 59, 5, 0, 'No Basic Skills Have Exp In Different Domain Will Not Sustain And Not Open For TxxampC', 60, '0000-00-00 00:00:00', 1),
(13044, 12894, 59, 5, 0, 'Not open for sales and appointment calling will not sustain', 85, '0000-00-00 00:00:00', 1),
(13045, 12895, 59, 5, 0, 'No Basics In JS/PHP Not Much Comfort In TxxampC Will Not Sustain In A Long Run have exp in Desktop Support', 85, '0000-00-00 00:00:00', 1),
(13046, 12896, 59, 5, 0, 'No basics in JS/PHP not much comfort in TxxampC will not sustain in a long run', 85, '0000-00-00 00:00:00', 1),
(13047, 12873, 102, 5, 0, 'Not suitable sales ', 59, '2023-05-23 07:13:05', 1),
(13048, 12886, 93, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13049, 12889, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13050, 12878, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13051, 12880, 59, 5, 0, 'Not open for target based profile and too long distance ', 85, '0000-00-00 00:00:00', 1),
(13052, 12869, 59, 5, 0, 'Not open up Will not handle the work pressure not suitable ', 85, '0000-00-00 00:00:00', 1),
(13053, 12891, 59, 5, 0, 'No basics long Career Gap will not sustain in our roles not much comfrt in TxxampC', 85, '0000-00-00 00:00:00', 1),
(13054, 12890, 59, 5, 0, 'No basics looking for Govt Exams parents into govt will not sustain in a long not much comfort in TxxampC', 85, '0000-00-00 00:00:00', 1),
(13055, 12893, 59, 5, 0, 'Left without attending the interview', 85, '0000-00-00 00:00:00', 1),
(13056, 12892, 59, 5, 0, 'Left without attending the interview', 85, '0000-00-00 00:00:00', 1),
(13057, 12852, 59, 3, 0, 'Selected for Consultant role ESales Team ', 29, '2023-05-23 08:08:25', 1),
(13058, 12856, 59, 3, 0, 'Selected for ESales Karthika Team', 29, '2023-05-23 08:10:38', 1),
(13059, 12904, 59, 3, 0, 'Selected for Intern with 3.5yrs SA MERN', 101, '0000-00-00 00:00:00', 1),
(13060, 12903, 59, 5, 0, 'Salary Exp is high 1yr Exp but not good with the skills 2nd round reject Tamilmani', 101, '0000-00-00 00:00:00', 1),
(13061, 12907, 59, 2, 0, 'Task has been assigned for UI UX based on the task we can decide', 101, '0000-00-00 00:00:00', 1),
(13062, 12906, 59, 5, 0, 'No basics in Javascript Not much comfort in TxxampC will not sustain', 101, '0000-00-00 00:00:00', 1),
(13063, 12905, 59, 5, 0, 'No Basics In Javascript Not Much Comfort In TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13064, 12883, 59, 5, 0, 'Left with out attending the 2nd level interview Fresher for our sales can give  atry', 101, '0000-00-00 00:00:00', 1),
(13065, 12902, 59, 5, 0, 'Have 1 yr Exp in Calling Salary high Exp much preferred is non voice will not sustain', 101, '0000-00-00 00:00:00', 1),
(13066, 12908, 59, 2, 0, 'Wealthy Family will not handle the role for a long will not sustain', 101, '0000-00-00 00:00:00', 1),
(13067, 12910, 59, 5, 0, 'No basics inJS came as a group and looking for job as a group will not run in a long not suitable', 101, '0000-00-00 00:00:00', 1),
(13068, 12912, 59, 5, 0, 'No Basics InJS Came As A Group And Looking For Job As A Group Will Not Run In A Long Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13069, 12911, 59, 5, 0, 'No Basics InJS Came As A Group And Looking For Job As A Group Will Not Run In A Long Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13070, 12909, 59, 5, 0, 'No Basics InJS Came As A Group And Looking For Job As A Group Will Not Run In A Long Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13071, 12914, 59, 5, 0, 'No basics will not handle our work pressure not much comfort in TxxampC not suitable', 101, '0000-00-00 00:00:00', 1),
(13072, 12913, 59, 5, 0, 'No Basics Will Not Handle Our Work Pressure Not Much Comfort In TxxampC Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13073, 12915, 59, 5, 0, 'No Basics Will Not Handle Our Work Pressure Not Much Comfort In TxxampC Not Suitable married ', 101, '0000-00-00 00:00:00', 1),
(13074, 12916, 59, 5, 0, 'No Basics Will Not Handle Our Work Pressure Not Much Comfort In TxxampC Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13075, 12901, 59, 4, 0, 'have exp in calling but sal exp seems to be high 5050 profile can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13076, 12901, 53, 1, 0, NULL, 59, '2023-05-24 07:29:51', 1),
(13077, 12897, 59, 5, 0, 'Long Career Gap not much comfort in taking calls and handling the work pressure', 101, '0000-00-00 00:00:00', 1),
(13078, 12920, 59, 5, 0, 'Fresher For Our Role Not Much Comfort With The TxxampC  Need To Train A Lot', 101, '0000-00-00 00:00:00', 1),
(13079, 12921, 59, 5, 0, 'Fresher for our role not much comfort with the TxxampC  need to train a lot', 101, '0000-00-00 00:00:00', 1),
(13080, 12922, 59, 5, 0, 'Fresher For Our Role Not Much Comfort With The TxxampC  Looking for Java', 101, '0000-00-00 00:00:00', 1),
(13081, 12925, 59, 5, 0, 'Too long distance Fresher For Our Role Not Much Comfort With The TxxampC  Need To Train A Lot', 101, '0000-00-00 00:00:00', 1),
(13082, 12924, 59, 5, 0, 'Fresher For Our Role Not Much Comfort With The TxxampC  ', 101, '0000-00-00 00:00:00', 1),
(13083, 12935, 59, 5, 0, 'Looking for Java profile only', 101, '0000-00-00 00:00:00', 1),
(13084, 12930, 59, 5, 0, 'Fresher For Our Role Not Much Comfort With The TxxampC  No basics will not sustain', 101, '0000-00-00 00:00:00', 1),
(13085, 12923, 59, 5, 0, 'Fresher For Our Role Not Much Comfort With The TxxampC  Looking fir Java Profile', 101, '0000-00-00 00:00:00', 1),
(13086, 12928, 59, 5, 0, 'Looking for High Salary fresher have an offer for 3.5 LPA in testing role fresher for Development looking for high pay', 101, '0000-00-00 00:00:00', 1),
(13087, 12940, 74, 7, 0, 'she is ok with the profile....already worked in yamaha showroom tele calling for 1 year salary 12k, due to very long disance 3hours of travel quit the job .......father farmer and 4 siblings highly job need and expected 14k....ready to join..have no laptop kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(13088, 12919, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13089, 12941, 59, 3, 0, 'Selected for Kannan Team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(13090, 12926, 59, 5, 0, 'Not open  up will not sustain in our roles not suitable', 101, '0000-00-00 00:00:00', 1),
(13091, 12940, 59, 5, 0, 'Going to proceed with the higher studies as her E.Sister got opportuity in core', 74, '2023-05-26 04:28:33', 1),
(13092, 12948, 74, 7, 0, 'he is ok with the profile,,,, expected to learn and easyily adaptive and talk active person....intrested in sales and ready to join in cafs due to exam time he is not sufficient to join so candidate came office today and discuss about joining....next month 4t after ready to join and have laptop expected 11 to 12k kindly check and confirm once', 101, '0000-00-00 00:00:00', 1),
(13093, 12952, 97, 5, 0, 'average in js can be trained ..she needs to confirm with her parents if she come back let us try', 85, '0000-00-00 00:00:00', 1),
(13094, 12953, 97, 5, 0, 'Not much good lau.. ', 85, '0000-00-00 00:00:00', 1),
(13095, 12934, 93, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13096, 12927, 59, 5, 0, 'Not Open  Up Will Not Sustain In Our Roles Not Suitable', 85, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(13097, 12931, 59, 4, 0, '5050 Profile fresher need to open up a lot but canbe trained in our roles kindly check and let me know you r inputs', 85, '0000-00-00 00:00:00', 1),
(13098, 12932, 59, 4, 0, '5050 Profile  Nepali but Tamil managable Fresher Need To Open Up A Lot But Canbe Trained In Our Roles Kindly Check And Let Me Know You R Inputs', 85, '0000-00-00 00:00:00', 1),
(13099, 12946, 97, 5, 0, 'good in prog. lau.. he need to confirm with his parents about txxampc... ', 101, '0000-00-00 00:00:00', 1),
(13100, 12947, 97, 5, 0, 'only knowledge in html .. need to learn a lot..', 101, '0000-00-00 00:00:00', 1),
(13101, 12945, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts long Career Gap Salary Exp is high', 101, '0000-00-00 00:00:00', 1),
(13102, 12944, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13103, 12942, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13104, 12950, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13105, 12949, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13106, 12956, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13107, 12955, 97, 4, 0, 'Fresher 50-50 Profile... average in convincing skill ..need to train a lot.. kindly check and update your feed back', 101, '0000-00-00 00:00:00', 1),
(13108, 12959, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13109, 12958, 59, 3, 0, 'Selected for B2B team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13110, 12969, 74, 7, 0, 'he is ok with the profile completed mba and looking for finance related job due to opening of hr in very less in thanjavur....already working in muthoot finance 3 months and releived due to health issue .....and expected 13k take home and father is farmer and have laptop and expected to join immediately....kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(13111, 12970, 59, 4, 0, 'Have Exp in sales but different domain 5050 profile can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13112, 12983, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13113, 12984, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts too long Distane\n', 101, '0000-00-00 00:00:00', 1),
(13114, 12989, 59, 2, 0, 'Have Basic skills sustainability doubts if he comes back let us try', 101, '0000-00-00 00:00:00', 1),
(13115, 12969, 59, 1, 0, NULL, 74, '2023-05-29 04:42:27', 1),
(13116, 12972, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13117, 12971, 59, 5, 0, 'Fresher No Basic Skills knowledge need to train a lot but not open for TxxampC Need time to think and confirm from the candidate end Sustainability doubts', 101, '0000-00-00 00:00:00', 1),
(13118, 12968, 59, 5, 0, 'Not open up will not suit our roles ', 101, '0000-00-00 00:00:00', 1),
(13119, 12973, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts she appeared for IT openings', 101, '0000-00-00 00:00:00', 1),
(13120, 12975, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts Salary High Exp', 101, '0000-00-00 00:00:00', 1),
(13121, 12974, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13122, 12978, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13123, 12966, 59, 4, 0, 'Too long Distance Can relocate Career gap shewas into her own business now lookin for a job can give atry\n', 101, '0000-00-00 00:00:00', 1),
(13124, 12976, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13125, 12977, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13126, 12980, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts too long Distance\n', 101, '0000-00-00 00:00:00', 1),
(13127, 12982, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts too long distance', 101, '0000-00-00 00:00:00', 1),
(13128, 12981, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13129, 12986, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13130, 12990, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13131, 12985, 59, 5, 0, 'Fresher for REact No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13132, 12992, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13133, 12966, 53, 1, 0, NULL, 59, '2023-05-30 09:57:12', 1),
(13134, 12970, 71, 5, 0, 'Not fit for sales', 59, '2023-05-30 10:07:07', 1),
(13135, 12958, 53, 7, 0, 'Selected for b2b. Shortlisted from presidency colleage job fair, gud in communication, fresher, very bold. she will suit for b2b.', 59, '2023-05-30 10:11:14', 1),
(13136, 12959, 53, 7, 0, 'selected from presidency college job fair, gud communication, very bold, will suit for b2b', 59, '2023-05-30 10:11:25', 1),
(13137, 12931, 53, 1, 0, NULL, 59, '2023-05-30 10:13:12', 1),
(13138, 12932, 53, 1, 0, NULL, 59, '2023-05-30 10:13:38', 1),
(13139, 12941, 19, 7, 4, 'sELECTED', 59, '2023-05-30 10:16:08', 1),
(13140, 12954, 59, 5, 0, 'Not suitable for our roles', 101, '0000-00-00 00:00:00', 1),
(13141, 13016, 59, 5, 0, 'Not suitable for our sales roles will not handle the work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(13142, 13015, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC  Will Not Sustain rejected in 2nd round Gokul', 101, '0000-00-00 00:00:00', 1),
(13143, 13012, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13144, 13002, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13145, 13008, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13146, 13004, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13147, 12999, 59, 3, 0, 'Selecetd for Kannan team in consutlant Role', 101, '0000-00-00 00:00:00', 1),
(13148, 13003, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13149, 12967, 59, 5, 0, 'Not suitable for our sales profile will not handle our work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(13150, 12998, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13151, 13001, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13152, 13000, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13153, 13010, 59, 2, 0, 'Fresher for UI/UX he has exp in Graphic Design and looking for UI UX Salary Exp min 30K 2nd Hold need to give him the confirmation based on other profiles\n', 101, '0000-00-00 00:00:00', 1),
(13154, 12997, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13155, 2446, 97, 4, 0, 'Fresher...Good in convincing Skills... Can be trained..Kindly check and update your inputs', 85, '0000-00-00 00:00:00', 1),
(13156, 12858, 59, 3, 0, 'Selected for Consultant Role for Kannan Team', 101, '0000-00-00 00:00:00', 1),
(13157, 13013, 59, 5, 0, 'Not open for calling activities no sustainability will not work in a company more than 6 months', 101, '0000-00-00 00:00:00', 1),
(13158, 13018, 59, 4, 0, 'Have Exp in Credit Card SalesCan be trained in our roles kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13159, 2446, 105, 5, 0, 'NOT RESPONSE, ALSO LOOKING HIGN SALARY PACKAGE', 97, '2023-05-31 04:10:48', 1),
(13160, 12941, 59, 3, 0, 'Selected for Kannan Team in Staff Role', 19, '2023-05-31 05:00:34', 1),
(13161, 13030, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13162, 13031, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13163, 13025, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13164, 13024, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13165, 13023, 59, 5, 0, 'Fresher No basic skills in JS Not much comfort with the TxxampC if he comes back let  us try', 101, '0000-00-00 00:00:00', 1),
(13166, 13022, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will not sustain', 101, '0000-00-00 00:00:00', 1),
(13167, 13034, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13168, 13035, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13169, 13033, 59, 2, 0, 'Need to schedule the cndidate for the final round with Gokul have basic knowledge 2nd round interviewed by Tamilmani\n', 101, '0000-00-00 00:00:00', 1),
(13170, 13019, 59, 3, 0, 'Selected for Banu in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13171, 12782, 60, 1, 0, NULL, 44, '2023-05-31 06:38:07', 1),
(13172, 12834, 59, 3, 0, 'Selected for Charles Team in consultant ROle', 102, '2023-05-31 07:00:04', 1),
(13173, 13018, 18, 8, 0, 'Not Attended', 59, '2023-05-31 07:01:40', 1),
(13174, 13019, 53, 7, 0, 'gud communication, convincing tone, having clarity in speech. Selected for b2b', 59, '2023-06-01 09:53:48', 1),
(13175, 12858, 19, 7, 4, 'Slected', 59, '2023-06-01 09:55:17', 1),
(13176, 12999, 19, 7, 5, 'Selected', 59, '2023-06-01 09:56:38', 1),
(13177, 12788, 60, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13178, 12958, 59, 3, 0, 'Selected for B2B team in Consultant Role', 53, '2023-06-01 12:39:14', 1),
(13179, 12959, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-06-01 12:42:19', 1),
(13180, 13019, 59, 3, 0, 'Selected for Banu in Consultant Role', 53, '2023-06-01 12:44:42', 1),
(13181, 13038, 59, 5, 0, 'No basic Skills not open for TxxampC will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13182, 13037, 59, 5, 0, 'No Basic Skills Not Open For TxxampC Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13183, 13039, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13184, 13042, 97, 2, 0, 'not much good in prog lau... SNR interviewd By kaviya ...candidate need to learn 1week.. if he come back let us try.', 101, '0000-00-00 00:00:00', 1),
(13185, 13046, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13186, 13041, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13187, 13040, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13188, 13043, 97, 4, 0, 'has exp in loan sales... good in convincing let us try..check and update your inputs..', 101, '0000-00-00 00:00:00', 1),
(13189, 13047, 59, 5, 0, 'Looking for Collection kyc document colection roles not open for sales call not suitable', 101, '0000-00-00 00:00:00', 1),
(13190, 13048, 59, 4, 0, 'CommunicationOk can be trained but sustainability doubts as he is looking for core opportunities too Job fair follow up kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13191, 12858, 59, 3, 0, 'Selected for Consultant Role for Kannan Team', 19, '2023-06-02 01:18:24', 1),
(13192, 12999, 59, 3, 0, 'Selecetd for Kannan team in consutlant Role', 19, '2023-06-02 01:19:05', 1),
(13193, 13036, 97, 4, 0, '6m of exp in byjus.. good communication skill.. sustainbility doubts.. kindly check xxamp update your inputs', 101, '0000-00-00 00:00:00', 1),
(13194, 13050, 97, 5, 0, 'fresher 5yrs gap.. not suit for our process', 101, '0000-00-00 00:00:00', 1),
(13195, 13055, 97, 4, 0, 'Fresher...pressure handling doubts.good in convincing skill...let us try...', 101, '0000-00-00 00:00:00', 1),
(13196, 13053, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13197, 13054, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13198, 13059, 59, 4, 0, 'Internal Reference not much suits to our roles kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13199, 13074, 74, 7, 0, 'he is already worked in field sales executive in just dial and rbl...for 2 years and due to shift over thanjavur releive tha job notice period 30 days in rbl credit card....expected salary 17k take home.........good comunication in sales and fit for team....need to confirm the joining date completed bsc.....from poor background kindly check and confirm once for joining', 85, '0000-00-00 00:00:00', 1),
(13200, 13074, 59, 3, 0, 'Selected for Sithy Team in Consultant Role\n', 74, '2023-06-05 03:14:35', 1),
(13201, 13080, 74, 7, 0, 'she is ok with the team and sales already worked in sim card sales for 2 years ...expected salary 15k and ready to join imeeditaely.....due to field exective tranfer in airtel so releived the job....travel time 1 hour but she is ok with the profile...kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(13202, 13080, 59, 5, 0, '60kms 1 hr travel,Previous Exp in Vodafone in native itself,For 1 day interview travel itself she got tired and she need time to give her confirmation\n\nParents are not ok with the distance', 74, '2023-06-05 03:21:14', 1),
(13203, 13055, 53, 1, 0, NULL, 97, '2023-06-05 04:38:45', 1),
(13204, 13036, 29, 1, 0, NULL, 97, '2023-06-05 04:41:39', 1),
(13205, 12955, 53, 1, 0, NULL, 97, '2023-06-05 04:43:55', 1),
(13206, 13043, 19, 7, 4, 'Selected', 97, '2023-06-05 05:08:51', 1),
(13207, 13051, 59, 5, 0, 'Left Without Attending The Interview', 85, '0000-00-00 00:00:00', 1),
(13208, 13066, 59, 5, 0, 'Have exp in Store Sales will not take calls and handle our workpressure not suitable', 85, '0000-00-00 00:00:00', 1),
(13209, 13068, 59, 5, 0, 'He is a NISM certified being a fresher salary exp is very high holding several offers and looking for additional will not sustain', 85, '0000-00-00 00:00:00', 1),
(13210, 13069, 59, 5, 0, 'Fresher for Sales Not ready to go with Target will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(13211, 13070, 59, 5, 0, 'Fresher 2nd round rejected by syed not much good candidate 5050 will not sustain', 85, '0000-00-00 00:00:00', 1),
(13212, 13071, 59, 5, 0, 'Left Without Attending The Interview', 85, '0000-00-00 00:00:00', 1),
(13213, 13076, 59, 5, 0, 'Left Without attending the interview', 85, '0000-00-00 00:00:00', 1),
(13214, 13077, 59, 8, 0, 'Left without attending the interview', 85, '0000-00-00 00:00:00', 1),
(13215, 13094, 59, 4, 0, '5050 Profile fresher Commmunication Ok Can give a try  kindly check and let meknow your inputs', 85, '0000-00-00 00:00:00', 1),
(13216, 13087, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13217, 13088, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13218, 13082, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13219, 13078, 102, 7, 0, 'Shortlist for team', 85, '0000-00-00 00:00:00', 1),
(13220, 13079, 102, 5, 0, 'Not Suitable Sales ', 85, '0000-00-00 00:00:00', 1),
(13221, 13083, 59, 3, 0, 'Communication Ok can be trained in our HR profile and also can be trained in accounts need to come back with her confirmation on the DOJ', 85, '0000-00-00 00:00:00', 1),
(13222, 13043, 59, 3, 0, 'Selected for Kannan Team in Staff Role', 19, '2023-06-05 07:21:36', 1),
(13223, 13072, 59, 5, 0, 'Looking for non voice process no communication not suitable', 104, '0000-00-00 00:00:00', 1),
(13224, 13090, 59, 5, 0, 'Too long Distance not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(13225, 13075, 59, 3, 0, 'Selected for Node Js Tamilmani in internship employment conditions ', 104, '0000-00-00 00:00:00', 1),
(13226, 13081, 102, 7, 0, 'Shortlist for team ', 104, '0000-00-00 00:00:00', 1),
(13227, 13086, 59, 3, 0, 'Selected for PHP Role with Stipend and employment', 104, '0000-00-00 00:00:00', 1),
(13228, 13085, 57, 4, 0, 'Candidate is ok pls confirm the salary and joining date thanks ', 104, '0000-00-00 00:00:00', 1),
(13229, 13089, 59, 5, 0, 'too long Distance will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(13230, 13092, 59, 2, 0, 'Need to come with the knowledge 5050 profile if he comes back let us try ', 104, '0000-00-00 00:00:00', 1),
(13231, 13097, 59, 5, 0, 'Left without attending the interview', 104, '0000-00-00 00:00:00', 1),
(13232, 13094, 86, 5, 0, 'Not satisfied', 59, '2023-06-05 08:51:18', 1),
(13233, 13093, 74, 7, 0, 'She is ok with the profile ..already worked in assistant for registering process and getting 8k + regular 3 k incentives new to sales field but ready to learn and she performed good in interview expect 12k and she ready to join immediately....have no laptop.... kindly check and confirm once ', 85, '0000-00-00 00:00:00', 1),
(13234, 13093, 59, 1, 0, NULL, 74, '2023-06-06 03:52:01', 1),
(13235, 13073, 59, 3, 0, 'Selected for Syed Team in Consultant Role \n	Communication Ok Have Parttime Exp He Is Into Marshial Atrs Timing Much Focused 5050 Kindly Check And Let Me Know You Inputs', 85, '0000-00-00 00:00:00', 1),
(13236, 13085, 59, 3, 0, 'Selected for Syed Team in Staff Role', 57, '2023-06-06 05:58:12', 1),
(13237, 13122, 59, 5, 0, 'No basics skills not much comfort in TxxampC looking for salary growth will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(13238, 13120, 59, 4, 0, 'Communication Ok have attitude will not sustain for a long in our roles internal reference kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13239, 13115, 97, 5, 0, 'Interviewed xxamp Rejected By Manikandan', 85, '0000-00-00 00:00:00', 1),
(13240, 13107, 97, 5, 0, 'Interviewed xxamp Rejected By  Kavya', 85, '0000-00-00 00:00:00', 1),
(13241, 13098, 59, 3, 0, 'Selected for Kannan TEam in Staff Role\n', 85, '0000-00-00 00:00:00', 1),
(13242, 13116, 59, 4, 0, 'Communicaiton Ok Not relevant Exp but in sales 5050 Profile can be trained kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13243, 13103, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13244, 13105, 59, 5, 0, 'Fresher have basic skills in designing but ready to go with that and looking for Digital marketing and not open for TxxampC being a fresher', 85, '0000-00-00 00:00:00', 1),
(13245, 13104, 59, 5, 0, 'Fresher for Digital Marketing no ideas in DM but the salary exp is min 25K and not ready to come down', 85, '0000-00-00 00:00:00', 1),
(13246, 13106, 57, 4, 0, 'Candidate is ok pls confirm the joining date and salary. thanks', 85, '0000-00-00 00:00:00', 1),
(13247, 13119, 59, 5, 0, 'Not a relevant Profile will not handle our sales roles and not suitable', 85, '0000-00-00 00:00:00', 1),
(13248, 13114, 97, 5, 0, 'Interviewed xxamp Rejected By  Bharath', 85, '0000-00-00 00:00:00', 1),
(13249, 13113, 97, 5, 0, 'Interviewed xxamp Rejected By  Bharath', 85, '0000-00-00 00:00:00', 1),
(13250, 13101, 27, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13251, 13102, 27, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13252, 13014, 56, 4, 0, 'Selected', 85, '0000-00-00 00:00:00', 1),
(13253, 13116, 29, 1, 0, NULL, 59, '2023-06-06 07:47:39', 1),
(13254, 13120, 19, 5, 1, 'rEJECTED', 59, '2023-06-06 07:55:34', 1),
(13255, 13098, 19, 7, 0, 'SELECTED', 59, '2023-06-06 08:00:29', 1),
(13256, 13048, 53, 1, 0, NULL, 59, '2023-06-06 08:13:17', 1),
(13257, 13073, 57, 4, 0, 'Candidate is ok please confirm the joining date and salary.', 59, '2023-06-06 08:16:22', 1),
(13258, 12801, 59, 3, 0, 'Selected for Flutter Profile in employment role for 2yrs SA', 59, '2023-06-07 10:15:47', 1),
(13259, 13128, 74, 5, 0, 'sustainability issue no job need', 85, '0000-00-00 00:00:00', 1),
(13260, 13081, 59, 3, 0, 'Selected for Charles TEam in Consultant Role', 102, '2023-06-07 05:08:32', 1),
(13261, 13078, 59, 3, 0, 'Selected for Charles Team in stff role', 102, '2023-06-07 05:08:57', 1),
(13262, 12996, 59, 5, 0, 'Open for Accounts profile have exp in accounts but not more than a year she will work preparing  for Govt exams too will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(13263, 13123, 59, 4, 0, '5050 Profile Passed 12th std and looking for job as her family need is there kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13264, 13129, 59, 3, 0, 'Selected for B2b Consultant Role', 85, '0000-00-00 00:00:00', 1),
(13265, 13130, 59, 5, 0, 'Fresher not much strong with the basics sustainability doubts not  ok with the TxxampC', 85, '0000-00-00 00:00:00', 1),
(13266, 13131, 59, 3, 0, '	5050 Profile Have Exp In Insurance For Around 2 Yrs Sustainability Doubts Have Exposure In Different Domain Kindly Check And Let Me Know Your Inputs Sir Selected for Shanmugam team based on Gaurav sir inputs', 85, '0000-00-00 00:00:00', 1),
(13267, 13127, 59, 5, 0, 'Not suitable for our roles ', 85, '0000-00-00 00:00:00', 1),
(13268, 13133, 59, 5, 0, '5050 Profile fresher asked him to come for 2nd level post lunch but didnt appear', 85, '0000-00-00 00:00:00', 1),
(13269, 13125, 59, 5, 0, 'Fresher Not Much Strong With The Basics Sustainability Doubts Not  Ok With The TxxampC', 85, '0000-00-00 00:00:00', 1),
(13270, 13126, 59, 5, 0, 'Fresher Not Much Strong With The Basics Sustainability Doubts Not  Ok With The TxxampC', 85, '0000-00-00 00:00:00', 1),
(13271, 12948, 59, 3, 0, 'Selected for Thanjavur in Consutlant Role', 74, '2023-06-07 05:37:19', 1),
(13272, 13014, 30, 7, 4, 'Confirm his joining CTC finalized 5lac', 56, '2023-06-07 06:24:32', 1),
(13273, 13123, 53, 1, 0, NULL, 59, '2023-06-07 07:45:29', 1),
(13274, 13129, 53, 7, 0, 'selected', 59, '2023-06-07 07:46:12', 1),
(13275, 13131, 29, 7, 2, 'shanmugam team, ', 59, '2023-06-07 07:47:23', 1),
(13276, 13129, 59, 3, 0, 'Selected for B2b Consultant Role', 53, '2023-06-08 10:01:15', 1),
(13277, 13131, 59, 3, 0, '	5050 Profile Have Exp In Insurance For Around 2 Yrs Sustainability Doubts Have Exposure In Different Domain Kindly Check And Let Me Know Your Inputs Sir Selected for Shanmugam team based on Gaurav sir inputs', 29, '2023-06-08 10:08:33', 1),
(13278, 13073, 59, 3, 0, 'Selected for Syed Team in Consultant Role \n	Communication Ok Have Parttime Exp He Is Into Marshial Atrs Timing Much Focused 5050 Kindly Check And Let Me Know You Inputs', 57, '2023-06-08 10:17:49', 1),
(13279, 13134, 59, 5, 0, 'Looking for High CTC Fresher will not sustain no basics skills not suitable', 85, '0000-00-00 00:00:00', 1),
(13280, 13135, 59, 5, 0, 'Fresher 5050 Technical reject by manikandan not suitable', 85, '0000-00-00 00:00:00', 1),
(13281, 13137, 59, 5, 0, 'No Clear Communication no sustainability not suitable will not handle our presssure', 85, '0000-00-00 00:00:00', 1),
(13282, 13138, 59, 3, 0, 'Selected for Operation Renewals will give an option to get trained in Digital Marketing later Good Profile Fresher Can be trained in our roles final round by gokul', 85, '0000-00-00 00:00:00', 1),
(13283, 13139, 59, 5, 0, 'Fresher for our Insurance Sales have exp in credit card sales communicative asked him to come for final round post lunch but didnt appear ', 85, '0000-00-00 00:00:00', 1),
(13284, 13140, 59, 3, 0, 'Selected for Banu Team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(13285, 13141, 59, 3, 0, 'Selected for Banuteam in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(13286, 13142, 59, 5, 0, 'Fresher Looking for IT and not open for TxxampC salary exp is min 3LPA will not sustain not suitable\n', 85, '0000-00-00 00:00:00', 1),
(13287, 13136, 59, 5, 0, 'No basics Very SLow will not handle our work sustainability doubts not suitable', 85, '0000-00-00 00:00:00', 1),
(13288, 13140, 53, 7, 0, 'have part time job experience in matrimony and tutuion institute. Convincing and very clarity voice. Selected for b2b. Sal 12 - 13k', 59, '2023-06-08 05:51:22', 1),
(13289, 13141, 53, 7, 0, 'have part time exp  in matrimony, 50 50, will try. Suggested  sal 11 - 12k', 59, '2023-06-08 05:51:52', 1),
(13290, 13140, 59, 3, 0, 'Selected for Banu Team in Staff Role', 53, '2023-06-09 10:02:37', 1),
(13291, 13141, 59, 3, 0, 'Selected for Banuteam in Consultant Role', 53, '2023-06-09 10:03:42', 1),
(13292, 13098, 59, 3, 0, 'Selected for Kannan TEam in Staff Role\n', 19, '2023-06-09 12:02:42', 1),
(13293, 13144, 59, 5, 0, 'Fresher Average Communication 5050 Profile asked the candidate to come for the interview post lunch  but didnt appear', 85, '0000-00-00 00:00:00', 1),
(13294, 13145, 59, 3, 0, 'Selected for Charles Team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(13295, 13146, 59, 5, 0, 'Kannan Rejected ', 85, '0000-00-00 00:00:00', 1),
(13296, 13150, 59, 4, 0, 'have exp in Sales relevant Domain Can give a try for our roles kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13297, 13151, 59, 5, 0, 'Holding 2 offers with 8K and 10K and looking for more will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(13298, 13152, 59, 5, 0, 'Fresher not much good in basics will not sustain and handle our roles not open for TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(13299, 13149, 59, 4, 0, '5050 Profile no sustainability in the previous exp B2B relevancy no kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13300, 13147, 59, 5, 0, 'Fresher Not Much Good In Basics Will Not Sustain And Handle Our Roles If she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(13301, 13154, 59, 5, 0, 'Fresher no basics skills in PHP seems to be slow will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(13302, 13149, 53, 1, 0, NULL, 59, '2023-06-09 06:54:24', 1),
(13303, 13146, 19, 7, 1, 'NOT FIT', 59, '2023-06-09 06:56:35', 1),
(13304, 13145, 102, 7, 0, 'Shortlist for team ', 59, '2023-06-09 06:59:40', 1),
(13305, 13150, 51, 5, 0, 'Rejected', 59, '2023-06-09 07:08:23', 1),
(13306, 13153, 97, 4, 0, 'Has exp in star Health.. job need...sustainability  xxamp pressure handling doubts..kindly  check and update your feed back', 104, '0000-00-00 00:00:00', 1),
(13307, 13145, 59, 3, 0, 'Selected for Charles Team in Staff Role', 102, '2023-06-10 06:35:34', 1),
(13308, 13014, 60, 1, 0, NULL, 30, '2023-06-12 10:34:41', 1),
(13309, 13185, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13310, 13184, 97, 5, 0, 'Rejected In The Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13311, 13180, 97, 5, 0, 'rejected in the aptitude round', 104, '0000-00-00 00:00:00', 1),
(13312, 13193, 97, 5, 0, 'Rejected In The Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13313, 13182, 97, 5, 0, 'Rejected In The Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13314, 13203, 97, 5, 0, 'Rejected In The Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13315, 13198, 97, 5, 0, 'rejected by vishwa', 104, '0000-00-00 00:00:00', 1),
(13316, 13202, 97, 5, 0, 'Rejected In The Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13317, 13199, 59, 5, 0, 'Aptitude Cleared Profile But No Ok With The TxxampC', 104, '0000-00-00 00:00:00', 1),
(13318, 13173, 59, 5, 0, 'Aptitude Cleared Profile But Not Ok With The TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(13319, 13186, 59, 2, 0, 'Fresher 2nd Round interviewed by manikandan can be trained in our profile need to confirm his presence for the final round', 104, '0000-00-00 00:00:00', 1),
(13320, 13187, 59, 5, 0, 'First Round with Sathish but left without attending the 2nd roudn', 104, '0000-00-00 00:00:00', 1),
(13321, 13176, 59, 2, 0, 'Freshr need to come back with his confirmation for the TxxampC', 104, '0000-00-00 00:00:00', 1),
(13322, 13178, 59, 5, 0, 'Fresher No Basics And Not Open For TxxampC Not Suitable', 104, '0000-00-00 00:00:00', 1),
(13323, 13192, 59, 5, 0, 'Fresher No Basics And Not Open For TxxampC Not Suitable', 104, '0000-00-00 00:00:00', 1),
(13324, 13172, 59, 5, 0, 'Not Ok With The TxxampC Fresher If he come back let us try', 104, '0000-00-00 00:00:00', 1),
(13325, 13195, 59, 5, 0, 'Fresher Not Ok With The TxxampC', 85, '0000-00-00 00:00:00', 1),
(13326, 13188, 59, 5, 0, 'Fresher Have Basics but Not Open For TxxampC Not Suitable', 104, '0000-00-00 00:00:00', 1),
(13327, 13167, 59, 5, 0, 'Communicaiton not clear will not handle our work roles not suitable', 104, '0000-00-00 00:00:00', 1),
(13328, 13183, 59, 5, 0, 'Fresher No Ok With The TxxampC', 85, '0000-00-00 00:00:00', 1),
(13329, 13181, 59, 5, 0, ' Not Ok With The TxxampC too long distance\n', 85, '0000-00-00 00:00:00', 1),
(13330, 13189, 59, 5, 0, 'Aptitude Cleared Profile But No Ok With The TxxampC', 85, '0000-00-00 00:00:00', 1),
(13331, 13205, 59, 5, 0, 'Aptitude Cleared Profile But No Ok With The TxxampC', 85, '0000-00-00 00:00:00', 1),
(13332, 13170, 59, 5, 0, 'Left without attending the 2nd level interview salary eXp is high\n', 85, '0000-00-00 00:00:00', 1),
(13333, 13197, 97, 5, 0, 'Rejected  by bharath', 85, '0000-00-00 00:00:00', 1),
(13334, 13191, 27, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13335, 13200, 59, 5, 0, 'Left Without Attending', 85, '0000-00-00 00:00:00', 1),
(13336, 13174, 59, 5, 0, 'Fresher No Basics And Not Open For TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(13337, 13177, 59, 5, 0, 'Aptitude Cleared Profile but no ok with the TxxampC', 85, '0000-00-00 00:00:00', 1),
(13338, 13171, 59, 5, 0, 'Fresher no basics and not open for TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(13339, 13206, 59, 3, 0, 'Selected for Kannan Teammin Staff Role ', 85, '0000-00-00 00:00:00', 1),
(13340, 13207, 59, 2, 0, '2nd round interviewed by kavya candidate need to come back after learning will check ', 85, '0000-00-00 00:00:00', 1),
(13341, 13194, 27, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13342, 13179, 59, 3, 0, 'Selected for Banu Team in Consultant Role Fresher', 85, '0000-00-00 00:00:00', 1),
(13343, 13168, 59, 5, 0, 'Not ready to join for the voice process', 85, '0000-00-00 00:00:00', 1),
(13344, 13132, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(13345, 13132, 53, 7, 0, 'Selected For B2b, Sal 13k, Pls Cnfrm The DOJ', 59, '2023-06-12 07:37:44', 1),
(13346, 13179, 53, 7, 0, 'Selected For B2b, Sal 13k, Pls Cnfrm The DOJ', 59, '2023-06-12 07:38:13', 1),
(13347, 13169, 59, 3, 0, 'Selected for Banu Team in Consultnt ROle', 85, '0000-00-00 00:00:00', 1),
(13348, 13168, 19, 7, 4, 'SELECTED', 59, '2023-06-12 07:40:06', 1),
(13349, 13206, 19, 7, 4, 'SELECTED', 59, '2023-06-12 07:40:50', 1),
(13350, 13190, 59, 3, 0, 'Selected for Banu Team 3months Exp', 85, '0000-00-00 00:00:00', 1),
(13351, 13169, 53, 7, 0, 'Selected For B2b, Sal 13k, Pls Cnfrm The DOJ', 59, '2023-06-12 07:53:57', 1),
(13352, 13190, 53, 7, 0, 'selected for b2b, sal 13k, pls cnfrm the DOJ', 59, '2023-06-12 07:55:11', 1),
(13353, 13168, 59, 5, 0, 'Not ready to join for the voice process', 19, '2023-06-13 10:14:47', 1),
(13354, 13206, 59, 3, 0, 'Selected for Kannan Teammin Staff Role ', 19, '2023-06-13 10:15:36', 1),
(13355, 13146, 59, 5, 0, 'Kannan Rejected ', 19, '2023-06-13 10:16:49', 1),
(13356, 13157, 74, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13357, 13190, 59, 3, 0, 'Selected for Banu Team 3months Exp', 53, '2023-06-13 11:48:23', 1),
(13358, 13179, 59, 3, 0, 'Selected for Banu Team in Consultant Role Fresher', 53, '2023-06-13 11:48:41', 1),
(13359, 13169, 59, 3, 0, 'Selected for Banu Team in Consultnt ROle', 53, '2023-06-13 11:49:09', 1),
(13360, 13132, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-06-13 11:49:28', 1),
(13361, 13209, 42, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13362, 13210, 42, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13363, 13225, 59, 3, 0, 'Selected for Manikandan Team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(13364, 13226, 59, 3, 0, 'Communicaiton Ok Have Exp In Sales Seems To Be A Good Profile Kindly Check And Let Me Knwo Your Inputs\nSelected for Manikandan Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13365, 13234, 59, 5, 0, 'Technical round reject by Gkul', 101, '0000-00-00 00:00:00', 1),
(13366, 13231, 59, 5, 0, 'Not suitable no basics will not sustain', 101, '0000-00-00 00:00:00', 1),
(13367, 13235, 59, 2, 0, 'Need to come back after learning\n', 101, '0000-00-00 00:00:00', 1),
(13368, 13223, 59, 2, 0, 'Need to come back after learning', 101, '0000-00-00 00:00:00', 1),
(13369, 13215, 59, 5, 0, 'Looking for Accounts but no basics in Accounts not open for Calling Profile', 101, '0000-00-00 00:00:00', 1),
(13370, 13212, 59, 5, 0, 'Looking for Account profile Fresher no basics in Tally not open for telecalling too', 101, '0000-00-00 00:00:00', 1),
(13371, 13213, 59, 2, 0, 'Need to come back with his confirmation on the TxxampC', 101, '0000-00-00 00:00:00', 1),
(13372, 13211, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort With The TxxampC Willnot Sustain Long Distancce', 101, '0000-00-00 00:00:00', 1),
(13373, 13216, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort With The TxxampC Willnot Sustain', 101, '0000-00-00 00:00:00', 1),
(13374, 13214, 59, 5, 0, 'No Sustainability in previous Exp looking only for salary growth no strong knowledge not suitable', 101, '0000-00-00 00:00:00', 1),
(13375, 13218, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort With The TxxampC Willnot Sustain looking muchfir a  java', 101, '0000-00-00 00:00:00', 1),
(13376, 13217, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort With The TxxampC Will not Sustain  Looking much for Java', 101, '0000-00-00 00:00:00', 1),
(13377, 13220, 59, 5, 0, 'Fresher mentioned Basics In Javascript but not answering  Not Much Comfort With The TxxampC Willnot Sustain', 101, '0000-00-00 00:00:00', 1),
(13378, 13222, 59, 5, 0, 'Fresher no Basics in Javascript not much comfort with the TxxampC Willnot sustain', 101, '0000-00-00 00:00:00', 1),
(13379, 13221, 59, 5, 0, 'Left Without Attending The Interview', 101, '0000-00-00 00:00:00', 1),
(13380, 13232, 59, 5, 0, 'Left Without Attending The Interview', 101, '0000-00-00 00:00:00', 1),
(13381, 13230, 59, 5, 0, 'Left without attending the interview', 101, '0000-00-00 00:00:00', 1),
(13382, 13224, 59, 5, 0, 'Left Without Attending The Interview', 101, '0000-00-00 00:00:00', 1),
(13383, 13219, 59, 3, 0, 'Selected for Shanmugam team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(13384, 13238, 59, 5, 0, 'Frequent Job Changes will not sustain and not suitable ', 101, '0000-00-00 00:00:00', 1),
(13385, 13225, 86, 4, 0, 'Selected for next round', 59, '2023-06-13 07:32:01', 1),
(13386, 13226, 86, 7, 0, 'Sriram Sir Finalized the candidate Ctc-2.25 Lakhs.', 59, '2023-06-13 07:32:26', 1),
(13387, 13219, 44, 4, 4, 'Candidate ok for me need your Opinion ', 59, '2023-06-13 07:54:57', 1),
(13388, 13241, 59, 5, 0, 'Fresher not open for TxxampC no basic ideas in JS will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13389, 13159, 42, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13390, 13160, 97, 5, 0, 'good communication skill... has exp in collection .. holding many offer expt high from that. will not sustain in our roles', 104, '0000-00-00 00:00:00', 1),
(13391, 13161, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13392, 13163, 97, 4, 0, 'has exp in sales.. good communication xxamp convincing skill. check and update your inputs..', 104, '0000-00-00 00:00:00', 1),
(13393, 13164, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13394, 13165, 97, 4, 0, 'good communication .. good in convincing skill... kindly check and update your inputs..', 104, '0000-00-00 00:00:00', 1),
(13395, 13166, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13396, 13165, 29, 7, 3, 'sarath team, task given for salary increase from aug 2023, check resume for reference', 97, '2023-06-14 10:23:48', 1),
(13397, 13163, 51, 4, 0, 'selected', 97, '2023-06-14 10:28:02', 1),
(13398, 13153, 19, 7, 4, 'Good', 97, '2023-06-14 10:44:26', 1),
(13399, 13236, 74, 7, 0, 'she is ok with the profile and intrested in banking process,, already done in hdfc but not getting confirmation intrested in sales process...expected 13k and have laptop,,,,expected to join monday itsef....completed mphil and not intrested in teaching profile...father farmer and have one brother work in chennai...industry....not ready to marriage so no issues...kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(13400, 13249, 59, 5, 0, 'Aged Have huge Exp in Core and will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(13401, 13248, 59, 5, 0, 'Not Suitable will not handle our roles', 85, '0000-00-00 00:00:00', 1),
(13402, 13243, 59, 5, 0, 'Fresher Not Open For TxxampC No Basic Ideas In JS Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(13403, 13246, 59, 5, 0, 'Not suitable for our roles long distance', 85, '0000-00-00 00:00:00', 1),
(13404, 13240, 59, 5, 0, 'Very high CTC exp not a relevant profile will not handle our sales', 85, '0000-00-00 00:00:00', 1),
(13405, 13239, 59, 5, 0, 'No Communicaiton no understanding not suitable', 85, '0000-00-00 00:00:00', 1),
(13406, 13236, 59, 3, 0, 'Seleted for Thanjavur consultant Role', 74, '2023-06-14 11:47:15', 1),
(13407, 13158, 97, 7, 0, 'fresher to our role...has knowledge in prog.lau..Second round interviewed by kavya..Final round interviewedxxampSelected by gokul', 85, '0000-00-00 00:00:00', 1),
(13408, 13158, 59, 1, 0, NULL, 97, '2023-06-14 12:19:35', 1),
(13409, 13254, 59, 5, 0, 'Fresher Not Open For TxxampC No Basic Ideas In JS Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(13410, 13255, 59, 5, 0, 'Fresher Not Open For TxxampC No Basic Ideas In JS Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(13411, 13252, 59, 5, 0, 'Not suitable for our sales calling ', 85, '0000-00-00 00:00:00', 1),
(13412, 13253, 59, 5, 0, 'Fresher Not Open For TxxampC No Basic Ideas In JS Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(13413, 13256, 59, 5, 0, 'Not suitable not open for sales calling', 85, '0000-00-00 00:00:00', 1),
(13414, 13258, 59, 4, 0, 'Have Exp Can Be Trained In Our Roles Kindly Check And Let Me Know Your Inputs ', 101, '0000-00-00 00:00:00', 1),
(13415, 13257, 59, 3, 0, 'Selected for Staff Role Manikandan Team', 101, '0000-00-00 00:00:00', 1),
(13416, 13251, 59, 5, 0, 'No Communication to long distance will not sustain in our roles not suitable', 101, '0000-00-00 00:00:00', 1),
(13417, 13225, 18, 7, 0, 'Shortlisted For Mani Team. Today Joinint Remaining as orally discussed', 86, '2023-06-14 03:07:08', 1),
(13418, 13226, 18, 1, 0, NULL, 86, '2023-06-14 04:21:09', 1),
(13419, 13259, 53, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13420, 13260, 59, 5, 0, 'Frequent Job Changes not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(13421, 13237, 56, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13422, 13257, 86, 4, 0, 'Selected for next round', 59, '2023-06-14 08:13:39', 1),
(13423, 13258, 86, 5, 0, 'Not satisfied', 59, '2023-06-14 08:13:50', 1),
(13424, 13163, 29, 7, 2, 'sarath team, task given for salary increase from aug 2023', 51, '2023-06-15 10:16:37', 1),
(13425, 13163, 59, 3, 0, 'Selected for Sarath Team Commitment by Gaurav June July overall 1.5 L then Aug 22K Net Take Home', 29, '2023-06-15 10:36:47', 1),
(13426, 13165, 59, 3, 0, 'Selected for Sarath Team in Staff Role', 29, '2023-06-15 10:40:58', 1),
(13427, 13219, 29, 7, 2, 'shanmugam', 44, '2023-06-15 10:56:16', 1),
(13428, 13261, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13429, 13257, 18, 7, 0, 'Selected For mani team. Today joining. Other details as discussed', 86, '2023-06-15 12:21:34', 1),
(13430, 13274, 59, 5, 0, 'Fresher For Digital Marketing No Basics Ideas Need To Learn A Lot Will Not Run In A Long ', 85, '0000-00-00 00:00:00', 1),
(13431, 13273, 59, 5, 0, 'Fresher for Digital Marketing no basics ideas need to learn a lot will not run in a long ', 85, '0000-00-00 00:00:00', 1),
(13432, 13271, 59, 2, 0, 'Have Exp in Digital Marketing but sustainability doubts a lot 5050 Profile need to analyse ', 85, '0000-00-00 00:00:00', 1),
(13433, 13280, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(13434, 13278, 59, 5, 0, 'Not suitable for Telecalling Sales too long Distance', 85, '0000-00-00 00:00:00', 1),
(13435, 13283, 59, 5, 0, 'Not suitable for Sales calls left without attending the 2nd level', 85, '0000-00-00 00:00:00', 1),
(13436, 13284, 59, 5, 0, 'Fresher no basics in Javascript Need to train a lot if she come back after confirmation on TxxampC let us try', 85, '0000-00-00 00:00:00', 1),
(13437, 13268, 59, 4, 0, '5050 Profiel too long distance sustainability doubts fresher can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13438, 13279, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(13439, 13153, 59, 1, 0, NULL, 19, '2023-06-15 04:12:05', 1),
(13440, 13285, 59, 4, 0, '5050 Profile need to open a lot internal reference kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13441, 13286, 59, 5, 0, 'Not Suitable low Profile will not take and convert calls', 85, '0000-00-00 00:00:00', 1),
(13442, 13270, 59, 5, 0, 'Not suitable Profile will not handle our sales calls not suitable', 104, '0000-00-00 00:00:00', 1),
(13443, 13266, 59, 2, 0, 'Need to come back with his confirmation on TxxampC fresher need to trained a lot', 104, '0000-00-00 00:00:00', 1),
(13444, 13245, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13445, 13269, 59, 5, 0, 'TEchnical Round Reject', 104, '0000-00-00 00:00:00', 1),
(13446, 13276, 59, 5, 0, 'Technical Round Reject', 104, '0000-00-00 00:00:00', 1),
(13447, 13264, 97, 5, 0, 'Rejected In Aptitude Test', 104, '0000-00-00 00:00:00', 1),
(13448, 13280, 105, 7, 0, 'HER COMMUNICATION IS LITTLE BIT SOME WORDS ISSUE ,BUT  IF WE TRAIN HER , WILL TRY TO MAKE SUSTAIN HERE', 59, '2023-06-15 08:03:04', 1),
(13449, 13279, 105, 7, 0, 'HER COMMUNICATION IS GOOD , IF WE TRAIN HER , WILL TRY TO MAKE SUSTAIN HERE', 59, '2023-06-15 08:03:17', 1),
(13450, 13285, 19, 5, 1, 'Not Fit for Sales', 59, '2023-06-15 08:05:23', 1),
(13451, 13268, 57, 4, 0, 'Candiate is ok, Kindly confirm the joining date ', 59, '2023-06-15 08:10:34', 1),
(13452, 13042, 59, 3, 0, 'Selected for IT Team in Internship ', 97, '2023-06-16 10:22:29', 1),
(13453, 13042, 97, 7, 0, 'Selected', 97, '2023-06-16 10:22:29', 1),
(13454, 13262, 56, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13455, 13289, 59, 5, 0, 'Not suitable Rejected profile in Job Fair', 85, '0000-00-00 00:00:00', 1),
(13456, 13290, 59, 2, 0, 'Need to come back after learning', 85, '0000-00-00 00:00:00', 1),
(13457, 13291, 59, 5, 0, 'No basics in JS much preferrd Java PRofile need to learn and come', 85, '0000-00-00 00:00:00', 1),
(13458, 13292, 59, 5, 0, 'Too long Distance not ope n for TxxampC will not sustain', 85, '0000-00-00 00:00:00', 1),
(13459, 13293, 59, 5, 0, 'Fresher Sales manager round reject just a try being a fresher not suitable', 85, '0000-00-00 00:00:00', 1),
(13460, 13294, 59, 5, 0, 'Fresher andhra native communication barrier Need to train a lot not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(13461, 13268, 59, 1, 0, NULL, 57, '2023-06-16 06:07:48', 1),
(13462, 13296, 107, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13463, 13299, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13464, 13300, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13465, 13301, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13466, 13303, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13467, 13305, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13468, 13307, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13469, 13308, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13470, 13281, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(13471, 13307, 105, 7, 0, 'SHE SAID TO JOIN ON JULY 1ST , AND SHE IS IS EXPECTING 20K, BUT WE WILL PROVIDE 16.5 TO 17K IN TDS FROMATE', 107, '2023-06-17 07:27:22', 1),
(13472, 13257, 60, 1, 0, NULL, 18, '2023-06-19 10:38:50', 1),
(13473, 13219, 59, 3, 0, 'Selected for Shanmugam team in Staff Role', 29, '2023-06-19 11:08:39', 1),
(13474, 13309, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13475, 13329, 59, 4, 0, 'Fresher 5050 Profle Can Be Trained Kindly Chekc And Let Me Know Your Inputs', 104, '0000-00-00 00:00:00', 1),
(13476, 13330, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13477, 13323, 59, 3, 0, 'Selected for Syed Team Hired from Jo Fair Can give a try in our roles Need to analyse in 7 days', 104, '0000-00-00 00:00:00', 1),
(13478, 13317, 59, 5, 0, 'Communication Ok Left with out attending the 2nd level salary exp is high', 104, '0000-00-00 00:00:00', 1),
(13479, 13328, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13480, 13326, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13481, 13327, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13482, 13325, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13483, 13324, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13484, 13322, 59, 5, 0, 'Looking for Accounts Role fresher doing CMA will not sustain', 104, '0000-00-00 00:00:00', 1),
(13485, 13321, 74, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13486, 13320, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13487, 13318, 59, 5, 0, 'Fresher no basics in the Javascript Need to train a lot not much open for TxxampC if they come back in future let us try based on their skills at the time', 104, '0000-00-00 00:00:00', 1),
(13488, 13319, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13489, 13310, 59, 2, 0, 'Need to come back with his conirmation on the profile if he comes back can give try fir sales', 104, '0000-00-00 00:00:00', 1),
(13490, 13311, 59, 5, 0, 'Not open up not suitable for our roles ', 104, '0000-00-00 00:00:00', 1),
(13491, 13316, 59, 5, 0, 'Fresher Sal Exp is high will not join less than 20K ', 104, '0000-00-00 00:00:00', 1),
(13492, 13313, 59, 5, 0, 'Looking for Profile out of Sales ', 104, '0000-00-00 00:00:00', 1),
(13493, 13315, 59, 5, 0, 'Looking for non Voice', 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(13494, 13331, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13495, 13279, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 105, '2023-06-19 06:11:24', 1),
(13496, 13280, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 105, '2023-06-19 06:12:58', 1),
(13497, 13323, 57, 4, 0, 'he is interested  in acc job. he ok with conv sales just try. thanks \n', 59, '2023-06-19 07:42:21', 1),
(13498, 13329, 57, 4, 0, 'Candidate is ok . pls confirm the joining data and salary', 59, '2023-06-19 07:42:34', 1),
(13499, 13281, 53, 7, 0, 'selected for b2b. Good in pronounciation , have 2 yrs ecp. ', 59, '2023-06-20 09:58:19', 1),
(13500, 13281, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-06-20 10:06:55', 1),
(13501, 13225, 60, 1, 0, NULL, 18, '2023-06-20 10:14:25', 1),
(13502, 13300, 29, 1, 0, NULL, 107, '2023-06-20 10:22:45', 1),
(13503, 13298, 59, 4, 0, '5050 Profile Fresher can be trained in our roles kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13504, 13334, 59, 5, 0, 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13505, 13333, 59, 5, 0, 'Fresher no basics skills knowledge not open with the TxxampC will not sustain', 101, '0000-00-00 00:00:00', 1),
(13506, 13336, 59, 4, 0, 'Not open up but have exp in HDB kindly chekc and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13507, 13335, 59, 5, 0, 'No Communicaiton not suitble for our roles\n', 101, '0000-00-00 00:00:00', 1),
(13508, 13337, 59, 5, 0, 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13509, 13332, 59, 5, 0, 'No Communicaiton not suitable for our roles', 101, '0000-00-00 00:00:00', 1),
(13510, 13329, 60, 1, 0, NULL, 57, '2023-06-20 03:48:39', 1),
(13511, 13323, 60, 1, 0, NULL, 57, '2023-06-20 03:49:30', 1),
(13512, 13355, 107, 5, 0, 'Rejected In Aptitude', 101, '0000-00-00 00:00:00', 1),
(13513, 13348, 107, 5, 0, 'Rejected in Aptitude', 101, '0000-00-00 00:00:00', 1),
(13514, 13350, 107, 5, 0, 'Rejected In Aptitude', 101, '0000-00-00 00:00:00', 1),
(13515, 13349, 107, 5, 0, 'Rejected In Aptitude', 101, '0000-00-00 00:00:00', 1),
(13516, 13351, 59, 5, 0, 'Have Exp in TCS will not sustain in our roles not suitable', 101, '0000-00-00 00:00:00', 1),
(13517, 13346, 59, 5, 0, 'Need to open a lot will not sustain\n', 101, '0000-00-00 00:00:00', 1),
(13518, 13345, 59, 5, 0, 'No Communication not suitable for our roles will not sustain', 101, '0000-00-00 00:00:00', 1),
(13519, 13356, 59, 4, 0, 'internal reference have exp in calling but not ready to go in the same hihg sal exp internal referene kindly have a interview', 101, '0000-00-00 00:00:00', 1),
(13520, 13353, 59, 5, 0, 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13521, 13357, 59, 5, 0, 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13522, 13344, 59, 5, 0, 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13523, 13354, 59, 5, 0, 'Not open up will not sustain in our roles', 101, '0000-00-00 00:00:00', 1),
(13524, 13341, 59, 5, 0, 'Not open for Calling not suitable for our roels', 101, '0000-00-00 00:00:00', 1),
(13525, 13343, 107, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13526, 13352, 107, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13527, 13338, 107, 5, 0, 'Needs time to learn...Let us try if he comes back', 101, '0000-00-00 00:00:00', 1),
(13528, 13347, 107, 5, 0, 'looking for testing...not suitable for our roles...', 101, '0000-00-00 00:00:00', 1),
(13529, 13342, 107, 5, 0, 'Needs time to learn...Let us try if he comes back...', 101, '0000-00-00 00:00:00', 1),
(13530, 13298, 57, 4, 0, 'Candidate is ok pls confirm  the joining date Thanks\n', 59, '2023-06-20 08:10:13', 1),
(13531, 13336, 86, 5, 0, 'Not Satisfied', 59, '2023-06-20 08:11:57', 1),
(13532, 13356, 102, 5, 0, 'Not Suitable Sales ', 59, '2023-06-20 08:13:34', 1),
(13533, 13296, 29, 7, 2, 'PC Sarath Team for RM', 59, '2023-06-21 09:54:55', 1),
(13534, 13296, 59, 3, 0, 'Selected for Sarath Team in Consultant Role', 29, '2023-06-21 10:05:56', 1),
(13535, 13307, 59, 1, 0, NULL, 105, '2023-06-21 10:54:50', 1),
(13536, 13298, 59, 1, 0, NULL, 57, '2023-06-21 12:19:10', 1),
(13537, 13360, 59, 4, 0, 'Fresher can be trained in our roles kindly check and let me know your inputs too long distance ', 101, '0000-00-00 00:00:00', 1),
(13538, 13361, 59, 5, 0, 'No Communication not much suits for our roles', 101, '0000-00-00 00:00:00', 1),
(13539, 13362, 59, 3, 0, 'Selected for Staff Role Syed Team', 101, '0000-00-00 00:00:00', 1),
(13540, 13365, 74, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13541, 13366, 56, 4, 0, 'Selected for e-sales but joining after three months kindly release the confirmation mail', 101, '0000-00-00 00:00:00', 1),
(13542, 13360, 53, 1, 0, NULL, 59, '2023-06-21 07:45:31', 1),
(13543, 13362, 57, 4, 0, 'Candiate is ok, Good Communication skills Fresher. \nPls Confirm the salary and date ', 59, '2023-06-21 07:46:25', 1),
(13544, 13387, 107, 5, 0, 'left without attending', 101, '0000-00-00 00:00:00', 1),
(13545, 13383, 107, 5, 0, 'left without attending', 101, '0000-00-00 00:00:00', 1),
(13546, 13381, 107, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13547, 13384, 59, 5, 0, 'No Communication not suitable for our roles will not sustain', 101, '0000-00-00 00:00:00', 1),
(13548, 13375, 59, 2, 0, 'Given Task for the design based on that we can decide fresher', 101, '0000-00-00 00:00:00', 1),
(13549, 13382, 59, 5, 0, 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13550, 13370, 59, 5, 0, 'Fresher no basic JS skills not suitable will not sustain in our Roles', 101, '0000-00-00 00:00:00', 1),
(13551, 13371, 59, 5, 0, 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13552, 13373, 59, 5, 0, 'Will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13553, 13372, 59, 5, 0, 'No Communication Not Suitable For Our Roles Will Not Sustain stammering a lot ', 101, '0000-00-00 00:00:00', 1),
(13554, 13374, 59, 5, 0, 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13555, 13377, 59, 5, 0, 'No Communication Not Suitable For Our Roles Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13556, 13364, 59, 5, 0, 'Frequent Job chnages Will not handle our work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(13557, 13376, 59, 5, 0, 'No Communication Not Suitable For Our Roles Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13558, 13378, 59, 5, 0, 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13559, 13379, 59, 5, 0, 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13560, 13380, 59, 5, 0, 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13561, 13386, 107, 5, 0, 'Looking for java', 101, '0000-00-00 00:00:00', 1),
(13562, 13385, 59, 5, 0, 'No Communication Not Suitable For Our Roles Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13563, 10335, 59, 4, 0, '5050 Profile have exp in calling kindly check and let meknow your inputs', 101, '0000-00-00 00:00:00', 1),
(13564, 13368, 56, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13565, 13362, 59, 3, 0, 'Selected for Staff Role Syed Team', 57, '2023-06-22 03:42:22', 1),
(13566, 10335, 53, 1, 0, NULL, 59, '2023-06-22 07:47:44', 1),
(13567, 13411, 59, 5, 0, 'Looking for non Voice', 101, '0000-00-00 00:00:00', 1),
(13568, 13399, 59, 5, 0, 'Not open for Calling profile Holding an offer for 2.5LPA will not sustain ', 101, '0000-00-00 00:00:00', 1),
(13569, 13398, 59, 5, 0, 'Too long Distance not much open up will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13570, 13400, 59, 2, 0, 'Need to come back with his confirmation on TxxampC', 101, '0000-00-00 00:00:00', 1),
(13571, 13401, 59, 5, 0, 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13572, 13395, 59, 5, 0, 'No Ideas In Digital Marketing Not Open For Telecalling ', 101, '0000-00-00 00:00:00', 1),
(13573, 13389, 59, 4, 0, '5050 Profile Fresher can give a try in our roles kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13574, 13397, 59, 5, 0, 'too long Distance no basic skills not suitable', 101, '0000-00-00 00:00:00', 1),
(13575, 13396, 59, 5, 0, 'No ideas in digital marketing not open for telecalling ', 101, '0000-00-00 00:00:00', 1),
(13576, 13392, 59, 5, 0, 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13577, 13388, 59, 5, 0, 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13578, 13391, 59, 5, 0, 'Not much open for TxxampC if he comes back let us try fresher no basics', 101, '0000-00-00 00:00:00', 1),
(13579, 13394, 59, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13580, 13409, 59, 5, 0, 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13581, 13408, 59, 5, 0, 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13582, 13410, 59, 5, 0, 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13583, 13405, 59, 5, 0, 'No basic Skills if he comes after learning we can give a try', 101, '0000-00-00 00:00:00', 1),
(13584, 13402, 59, 2, 0, 'Need to come back with his confirmation on TxxampC', 101, '0000-00-00 00:00:00', 1),
(13585, 13393, 107, 5, 0, 'left without attending', 101, '0000-00-00 00:00:00', 1),
(13586, 13390, 107, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13587, 13404, 59, 5, 0, 'Too long Distance not open for telecalling Sales not suitable', 101, '0000-00-00 00:00:00', 1),
(13588, 13407, 30, 7, 4, 'July 3rd joining ', 101, '0000-00-00 00:00:00', 1),
(13589, 13389, 86, 5, 0, 'Not Satisfied', 59, '2023-06-23 07:43:45', 1),
(13590, 13106, 59, 1, 0, NULL, 57, '2023-06-24 12:38:07', 1),
(13591, 13425, 59, 5, 0, 'Not much good with the communication too long distance not suitable for our roles', 101, '0000-00-00 00:00:00', 1),
(13592, 13424, 59, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13593, 13415, 59, 3, 0, 'Selected for Banu Team in Consultant Role Too long Distance If he joins let us try', 101, '0000-00-00 00:00:00', 1),
(13594, 13414, 59, 4, 0, 'Communicaiton Ok fresher for our roles can give a try kindly check and let me know you inputs', 101, '0000-00-00 00:00:00', 1),
(13595, 13420, 59, 5, 0, 'have internship exp and not much comfort with 3yrs SA If she comeback let us try', 101, '0000-00-00 00:00:00', 1),
(13596, 13416, 59, 5, 0, 'Not open for Calling activities Fresher in accounts not much strong with the basics communication Average', 101, '0000-00-00 00:00:00', 1),
(13597, 13417, 59, 2, 0, 'Need to come back wiht his confirmation on the TxxampC', 101, '0000-00-00 00:00:00', 1),
(13598, 13423, 59, 5, 0, 'No Pronunciation no clarity in speech will not sustain', 101, '0000-00-00 00:00:00', 1),
(13599, 13413, 59, 5, 0, 'Not suitable for our roles ', 101, '0000-00-00 00:00:00', 1),
(13600, 13422, 59, 5, 0, 'No Communication not suitable for voice processwill not sustain', 101, '0000-00-00 00:00:00', 1),
(13601, 13438, 59, 3, 0, 'Selected for Syed Team Staff Role', 104, '0000-00-00 00:00:00', 1),
(13602, 13440, 59, 3, 0, 'Slected for Banu Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(13603, 13433, 59, 2, 0, 'Should come after a month post learning if he comes let us try', 101, '0000-00-00 00:00:00', 1),
(13604, 13435, 59, 5, 0, 'Left wothout attending the interview', 101, '0000-00-00 00:00:00', 1),
(13605, 13436, 59, 5, 0, 'Looking for non voice only', 101, '0000-00-00 00:00:00', 1),
(13606, 13428, 59, 5, 0, 'Looking for Java Only', 101, '0000-00-00 00:00:00', 1),
(13607, 13427, 59, 5, 0, 'Not interested in Insurance Domain ', 101, '0000-00-00 00:00:00', 1),
(13608, 13429, 59, 5, 0, 'Need to learn a lot not much comfort in TxxampC will not sustain and language barrier', 101, '0000-00-00 00:00:00', 1),
(13609, 13431, 107, 5, 0, 'rejected in aptitude', 101, '0000-00-00 00:00:00', 1),
(13610, 13430, 107, 5, 0, 'Rejected in aptitude', 101, '0000-00-00 00:00:00', 1),
(13611, 13434, 107, 5, 0, 'rejected in aptitude', 101, '0000-00-00 00:00:00', 1),
(13612, 13432, 107, 5, 0, 'rejected in aptitude', 101, '0000-00-00 00:00:00', 1),
(13613, 13426, 59, 3, 0, 'SElected for Syed Team in Staff Role\n', 101, '0000-00-00 00:00:00', 1),
(13614, 13437, 59, 4, 0, 'Communication Good Have 1 yrs Exp sales but not a relevant one Salary eXp is high but can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13615, 13414, 105, 5, 0, 'Candidate Doubt To Join', 59, '2023-06-27 09:56:11', 1),
(13616, 13440, 53, 7, 0, '50 50. Will check 7 days training ', 59, '2023-06-27 10:08:50', 1),
(13617, 13438, 57, 4, 0, 'Pls confirm the joining date', 59, '2023-06-27 10:10:33', 1),
(13618, 13426, 57, 4, 0, 'Candidate is ok, Pls confirm the joining date and salary', 59, '2023-06-27 10:11:47', 1),
(13619, 13415, 53, 7, 0, 'selected for b2b', 59, '2023-06-27 10:14:20', 1),
(13620, 13437, 51, 5, 0, 'Rejected', 59, '2023-06-27 10:16:45', 1),
(13621, 13059, 19, 5, 1, 'NOT FIT', 59, '2023-06-27 10:44:43', 1),
(13622, 13407, 60, 1, 0, NULL, 30, '2023-06-27 12:30:40', 1),
(13623, 13444, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13624, 13454, 59, 2, 0, 'Have Exp in CASA grande sales salry is very high exp is also high of she comes back let us try for B2B', 101, '0000-00-00 00:00:00', 1),
(13625, 13441, 59, 5, 0, 'No Sustainability will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13626, 13449, 59, 5, 0, '5050 not much open in sales looking for salary growht will not handle our work pressire', 101, '0000-00-00 00:00:00', 1),
(13627, 13443, 59, 5, 0, 'Nt openf for SAles callings', 101, '0000-00-00 00:00:00', 1),
(13628, 13450, 59, 5, 0, 'Looking for Java openings only', 101, '0000-00-00 00:00:00', 1),
(13629, 13448, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13630, 13452, 59, 3, 0, 'Selected for Staff Role Syed Team', 101, '0000-00-00 00:00:00', 1),
(13631, 13444, 57, 4, 0, 'Fresher candidate is ok, pls provide the basic fresher salary', 59, '2023-06-27 07:55:33', 1),
(13632, 13448, 57, 4, 0, 'Experience candidate, Pls Confirm the joining date', 59, '2023-06-27 07:56:09', 1),
(13633, 13452, 57, 4, 0, 'Fresher 50/50 will try ', 59, '2023-06-27 07:56:44', 1),
(13634, 13445, 74, 7, 0, 'he is ok with the profile and easily attached charcter and adaptive to telecalling...expected 15k...completed mba and have 6 months experience in tlecalling and business field as exective and basic team lead.....have laptop ....father farmer and have onw sister studying..kindly check once and confirm joining monday', 104, '0000-00-00 00:00:00', 1),
(13635, 13446, 59, 3, 0, 'Selected for Manikandan Team in staff Role', 101, '0000-00-00 00:00:00', 1),
(13636, 13445, 59, 3, 0, 'Selected for Consultant role in Thanjavur', 74, '2023-06-28 12:28:33', 1),
(13637, 13426, 59, 3, 0, 'SElected for Syed Team in Staff Role\n', 57, '2023-06-28 04:04:52', 1),
(13638, 13438, 59, 3, 0, 'Selected for Syed Team Staff Role', 57, '2023-06-28 04:05:21', 1),
(13639, 13444, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 57, '2023-06-28 04:06:01', 1),
(13640, 13448, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 57, '2023-06-28 04:06:55', 1),
(13641, 13452, 59, 3, 0, 'Selected for Staff Role Syed Team', 57, '2023-06-28 04:07:21', 1),
(13642, 13462, 59, 2, 0, 'Fresher Holding several offers very talkative if she come back let us try', 101, '0000-00-00 00:00:00', 1),
(13643, 13460, 59, 5, 0, 'Not much job importance Salary Exp is very high not much quality for RM level will not handle the pressure', 101, '0000-00-00 00:00:00', 1),
(13644, 13455, 59, 5, 0, 'Too long Distance up and down 50kms will not sustain in our roles fresher', 101, '0000-00-00 00:00:00', 1),
(13645, 13458, 59, 5, 0, 'Looking for Multipleoffer holding an interview with byjus will not sustain in our roles for a long', 101, '0000-00-00 00:00:00', 1),
(13646, 13461, 59, 5, 0, 'No ideas in JS need time to learn', 101, '0000-00-00 00:00:00', 1),
(13647, 13457, 59, 5, 0, 'Final Round Reject by Gopi mistkely moved as a shortlisted', 101, '0000-00-00 00:00:00', 1),
(13648, 13453, 59, 3, 0, 'Selected for Syed Team in staff Role', 101, '0000-00-00 00:00:00', 1),
(13649, 13463, 59, 4, 0, 'Low Profile internal refernece fr Kannan Team kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13650, 13464, 59, 4, 0, 'Communicaiton Ok Profile for Kannan Team internal Team reference due to his absence kindly check can be trained in our roles', 101, '0000-00-00 00:00:00', 1),
(13651, 13446, 86, 7, 0, 'sHORTLISTED', 59, '2023-06-28 07:31:38', 1),
(13652, 13453, 57, 4, 0, 'Candiate ok pls move to next', 59, '2023-06-28 07:32:17', 1),
(13653, 13464, 57, 4, 0, 'candidate ok , pls move', 59, '2023-06-28 07:49:51', 1),
(13654, 13457, 105, 7, 0, 'MONDAY JOINING', 59, '2023-06-28 07:50:23', 1),
(13655, 13463, 57, 1, 0, NULL, 59, '2023-06-28 07:51:09', 1),
(13656, 13470, 74, 7, 0, 'he is ok with the profile intrested in business prefered as a finacial advisory...and completed mba and have no opportunity in hr side so need to be financial advisory ....mother only father passed away single child and have no income in family expected above 13 range and have laptop monday joining is prefereable ..........near by home only 10 km kindly check and confirm once', 101, '0000-00-00 00:00:00', 1),
(13657, 13470, 59, 3, 0, 'Selected for Sithy Team Thanjavur Consultant Role', 74, '2023-06-29 10:55:31', 1),
(13658, 13468, 59, 5, 0, 'Not suitable for our roles will not sustain not suitable', 108, '0000-00-00 00:00:00', 1),
(13659, 13472, 59, 3, 0, 'Seleceted for Gopinath Team in Consultant TRole', 101, '0000-00-00 00:00:00', 1),
(13660, 13471, 59, 5, 0, 'Not open for Calling Looking for Accounts Payable roles', 104, '0000-00-00 00:00:00', 1),
(13661, 13366, 59, 1, 0, NULL, 56, '2023-06-29 03:51:06', 1),
(13662, 13473, 59, 2, 0, 'too long distance have exp in calling but not in sales 5050 if she comes back let us try', 101, '0000-00-00 00:00:00', 1),
(13663, 13476, 59, 5, 0, 'Not open for TxxampC fresher not much knowledge in basics', 101, '0000-00-00 00:00:00', 1),
(13664, 13474, 59, 5, 0, 'Fresher not open for target based openings will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13665, 13475, 59, 5, 0, 'Not Open For TxxampC Fresher Not Much Knowledge In Basics', 101, '0000-00-00 00:00:00', 1),
(13666, 13453, 59, 3, 0, 'Selected for Syed Team in staff Role', 57, '2023-06-29 05:39:20', 1),
(13667, 13367, 56, 7, 0, 'Selected for RM ', 104, '0000-00-00 00:00:00', 1),
(13668, 13472, 105, 7, 0, 'MONDAY JOINING', 59, '2023-06-29 07:03:39', 1),
(13669, 13367, 59, 1, 0, NULL, 56, '2023-06-30 10:20:03', 1),
(13670, 13440, 59, 3, 0, 'Slected for Banu Team in Consultant Role', 53, '2023-06-30 12:26:35', 1),
(13671, 13415, 59, 3, 0, 'Selected for Banu Team in Consultant Role Too long Distance If he joins let us try', 53, '2023-06-30 12:30:06', 1),
(13672, 13457, 59, 5, 0, 'Final Round Reject by Gopi mistkely moved as a shortlisted', 105, '2023-06-30 12:32:22', 1),
(13673, 13472, 59, 3, 0, 'Seleceted for Gopinath Team in Consultant TRole', 105, '2023-06-30 12:32:44', 1),
(13674, 13484, 59, 3, 0, 'Selected for Syed TEam in Staff ROles\n', 108, '0000-00-00 00:00:00', 1),
(13675, 13478, 59, 2, 0, 'Need to come back with her confirmation salary exp is very high if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(13676, 13482, 59, 5, 0, 'Looking for Non Voice No Communication not much suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(13677, 13467, 59, 3, 0, 'Selected for Gopi team in consultant Role', 101, '0000-00-00 00:00:00', 1),
(13678, 13485, 59, 4, 0, 'Internal Reference Have Exp in calling kindly check and let me know your inputs Can be trained in our positions', 101, '0000-00-00 00:00:00', 1),
(13679, 13481, 59, 5, 0, 'Looking for Non Voice process no communication', 101, '0000-00-00 00:00:00', 1),
(13680, 13486, 59, 5, 0, 'Looking for Java opening only', 101, '0000-00-00 00:00:00', 1),
(13681, 13483, 59, 5, 0, 'Need to learn a lot no basics not comfirt in TxxampC', 101, '0000-00-00 00:00:00', 1),
(13682, 13464, 59, 1, 0, NULL, 57, '2023-06-30 06:57:18', 1),
(13683, 13467, 105, 7, 0, 'Well She is ok With That in Communication And Interview Attend Process, Also She is Join On Monday', 59, '2023-06-30 07:24:00', 1),
(13684, 13484, 57, 4, 0, 'Done ', 59, '2023-06-30 07:37:08', 1),
(13685, 13485, 53, 1, 0, NULL, 59, '2023-06-30 07:40:17', 1),
(13686, 13493, 59, 5, 0, 'Not Suitable Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13687, 13467, 59, 3, 0, 'Selected for Gopi team in consultant Role', 105, '2023-07-01 12:32:08', 1),
(13688, 13446, 60, 1, 0, NULL, 86, '2023-07-01 04:11:02', 1),
(13689, 13495, 59, 3, 0, 'Selected for Syed Team ', 60, '0000-00-00 00:00:00', 1),
(13690, 13495, 57, 4, 0, 'Candidate is ok ,pls confirm ', 59, '2023-07-03 09:51:32', 1),
(13691, 13495, 59, 3, 0, 'Selected for Syed Team ', 57, '2023-07-03 10:00:39', 1),
(13692, 13484, 59, 3, 0, 'Selected for Syed TEam in Staff ROles\n', 57, '2023-07-03 10:19:25', 1),
(13693, 13502, 74, 7, 0, 'he is fit for team completed btech in mgr university and willing to join in telecalling family situation is very poor and highly job need father unemployed and ready to join immediately ...have laptop and expected 12k fresher travel time 12km and have bike kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(13694, 13490, 59, 3, 0, 'Selected for Gopinath Team', 101, '0000-00-00 00:00:00', 1),
(13695, 13499, 59, 5, 0, 'Fresher open fr TxxampC attended 2nd level interview didnt come for final round ', 101, '0000-00-00 00:00:00', 1),
(13696, 13497, 59, 3, 0, 'Selected for Gopinath Team ', 101, '0000-00-00 00:00:00', 1),
(13697, 13498, 59, 5, 0, 'Fresher need to come back with his confirmation if he comes back let us tryu', 101, '0000-00-00 00:00:00', 1),
(13698, 13500, 59, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13699, 13505, 59, 5, 0, 'Communication barrier Will not sustain and handle our work pressure in IT ', 101, '0000-00-00 00:00:00', 1),
(13700, 13504, 59, 5, 0, 'Technical Round reject by Tamilmani Sustainability doubts', 101, '0000-00-00 00:00:00', 1),
(13701, 13490, 105, 7, 0, 'GOOD COMMUNICATION SKILL,SHE JOIN ON NEXT WEEK 12TH', 59, '2023-07-03 07:29:46', 1),
(13702, 13497, 105, 7, 0, 'Candidate Communication is ok , will train her', 59, '2023-07-03 07:30:33', 1),
(13703, 13514, 59, 5, 0, 'Syed interviewed and got rejeccted in the 1st round', 108, '0000-00-00 00:00:00', 1),
(13704, 13518, 59, 3, 0, 'Selected for Manikandan team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(13705, 13511, 59, 4, 0, 'Communication Ok have exp in Jio Can be trained in our roles kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(13706, 13515, 27, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13707, 13513, 27, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13708, 13512, 27, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13709, 13516, 27, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13710, 13507, 59, 5, 0, 'Fresher need to see his distance not open for field visit will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13711, 13508, 59, 5, 0, 'Too long distance Focusing only on the salary exp more than 22K 1yr exp but not sure on previous exp not open for field visit too', 101, '0000-00-00 00:00:00', 1),
(13712, 13509, 59, 5, 0, 'Preferred to work in non voice will not handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13713, 13480, 59, 5, 0, 'Need to open a lot will not handle our work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(13714, 13510, 74, 7, 0, 'she is ok with the profile and profiled too have experience in casa grand with 1 year of experience getting 18k of salary due to family issue she is releived and expected 15k of salary kindly cross check once father farmer and have no laptop she is ready to arrange and immediate joining kindly check once and confirm.', 101, '0000-00-00 00:00:00', 1),
(13715, 13520, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13716, 13521, 59, 4, 0, 'Fresher for our Domain 5050 profile kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13717, 13520, 19, 7, 4, 'Selected', 59, '2023-07-04 07:20:56', 1),
(13718, 13521, 19, 5, 1, 'Not Fit for Sales', 59, '2023-07-04 07:21:42', 1),
(13719, 13518, 18, 7, 4, 'Selected For Mani Team. Ready to Join on Monday Spoken Package with arun', 59, '2023-07-04 07:23:48', 1),
(13720, 13511, 86, 1, 0, NULL, 59, '2023-07-04 07:26:43', 1),
(13721, 13520, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2023-07-04 07:28:12', 1),
(13722, 13497, 59, 3, 0, 'Selected for Gopinath Team ', 105, '2023-07-05 10:54:53', 1),
(13723, 13529, 59, 4, 0, '5050 Profile fresher for sales clling have exp in backend and the salary exp is min 25K kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(13724, 13530, 59, 4, 0, 'Communication Ok have exp in sales calling can be trained kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(13725, 13533, 59, 5, 0, 'Fresher have exp is studio process need to open a lot pressure handling doubt willl not sustain in our roles', 101, '0000-00-00 00:00:00', 1),
(13726, 13531, 59, 5, 0, 'Internal reference communication average pressure handling doubts will not sustain ', 101, '0000-00-00 00:00:00', 1),
(13727, 13525, 59, 4, 0, '5050 Profile no exp in calling have exp in store sales pressure handling doubts kindly check once and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13728, 13456, 59, 5, 0, 'Will not suitable for our voice process have exp in non voice and he can handle only that will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13729, 13528, 59, 5, 0, 'Fresher no basic skills knowledge first interview need to explore a lot ', 101, '0000-00-00 00:00:00', 1),
(13730, 13523, 59, 5, 0, 'Looking for IT testing profile', 101, '0000-00-00 00:00:00', 1),
(13731, 13524, 74, 5, 0, 'she is not ok with the profile and not fit for team, non profile', 101, '0000-00-00 00:00:00', 1),
(13732, 13532, 59, 4, 0, 'Fresher not showing much towards the job earlier 5050 profile internal reference kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13733, 13510, 59, 3, 0, 'Selected for Sithy Team in Consultant Role Can be trained in  our roles have 1 yr exp in Casa Grande 20K was last MCTC\n', 74, '2023-07-05 05:16:49', 1),
(13734, 13502, 59, 3, 0, 'Selected for Sithy Team with TDS consultant Role', 74, '2023-07-05 05:19:21', 1),
(13735, 13532, 57, 5, 0, 'Communication not well', 59, '2023-07-05 05:59:03', 1),
(13736, 13529, 51, 5, 0, 'Rejected', 59, '2023-07-05 06:03:13', 1),
(13737, 13530, 105, 7, 0, 'HAVE GOOD SKILL AND EXPERIANCE ,BUT JOINING DATE IS TOO LONG', 59, '2023-07-05 06:03:55', 1),
(13738, 13525, 57, 1, 0, NULL, 59, '2023-07-05 06:04:51', 1),
(13739, 13518, 60, 1, 0, NULL, 18, '2023-07-06 10:11:44', 1),
(13740, 13534, 59, 4, 0, 'Have Exp in Calling Can be trained kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(13741, 13539, 59, 3, 0, 'Selected for Syed Team in Staff Role Have Exp in HDB Financial direct payroll for 1,5 yrs', 108, '0000-00-00 00:00:00', 1),
(13742, 13538, 59, 5, 0, 'No Basics Skills In IT Need to come back after learning', 101, '0000-00-00 00:00:00', 1),
(13743, 13537, 59, 5, 0, 'No basics skills in IT will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13744, 13548, 97, 4, 0, 'Good Communication xxamp convincing skill will suit for our process check and update your inputs.', 104, '0000-00-00 00:00:00', 1),
(13745, 13547, 97, 4, 0, 'Good Communication xxamp Convincing Skill Will Suit For Our Process Check And Update Your Inputs.', 104, '0000-00-00 00:00:00', 1),
(13746, 13549, 97, 4, 0, 'Good Communication xxamp Convincing Skill Will Suit For Our Process Check And Update Your Inputs.', 104, '0000-00-00 00:00:00', 1),
(13747, 13540, 97, 5, 0, 'Not openup  not suit for our process', 104, '0000-00-00 00:00:00', 1),
(13748, 13543, 97, 5, 0, 'Looking  For Accounts', 104, '0000-00-00 00:00:00', 1),
(13749, 13542, 97, 5, 0, 'looking  for accounts', 104, '0000-00-00 00:00:00', 1),
(13750, 13534, 19, 7, 4, 'SELECTED', 59, '2023-07-06 07:49:37', 1),
(13751, 13539, 57, 4, 0, 'Candiate is ok kindly move ', 59, '2023-07-06 07:50:56', 1),
(13752, 13539, 59, 3, 0, 'Selected for Syed Team in Staff Role Have Exp in HDB Financial direct payroll for 1,5 yrs', 57, '2023-07-07 10:00:34', 1),
(13753, 13550, 30, 7, 3, 'Confirm joining date and ctc', 108, '0000-00-00 00:00:00', 1),
(13754, 13556, 59, 5, 0, 'Communication ok have exp in backend operation not much in sales will not sustain and not suitable for Trainer profile', 101, '0000-00-00 00:00:00', 1),
(13755, 13544, 59, 3, 0, 'SElected for Kanna Team in Staff Role    5050 Profile Long Career Gap Mentioned Exp But No Sustainability Have Worked With Care Health Insurance Kindly Check And Let Me Know Your Inputs Need To Initiate Agreement For Sustainability', 101, '0000-00-00 00:00:00', 1),
(13756, 13555, 59, 2, 0, 'Communication Ok have 1 yr exp in recruitment but the salary exp is high and not much comfort to come down with the package', 101, '0000-00-00 00:00:00', 1),
(13757, 13557, 59, 5, 0, 'Fresher not open for TxxampC', 101, '0000-00-00 00:00:00', 1),
(13758, 13554, 59, 5, 0, 'Too fresher no basics in skills will not sustain and not suitable ', 101, '0000-00-00 00:00:00', 1),
(13759, 13553, 59, 5, 0, 'Fresher Good enthu but not much comfort in TxxampC if she comes back let us try', 101, '0000-00-00 00:00:00', 1),
(13760, 13552, 59, 5, 0, 'Too long Distance up and down 70 kms will not sustain', 101, '0000-00-00 00:00:00', 1),
(13761, 13551, 59, 4, 0, 'Fresher 5050 Profile Need to train a lot from scratch kindly check and let me know your interest', 101, '0000-00-00 00:00:00', 1),
(13762, 13559, 59, 3, 0, 'Selected for Gaurav Sir team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(13763, 13560, 59, 3, 0, 'Selected for Gaurav Sir team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(13764, 13551, 19, 5, 1, 'NOT FIT', 59, '2023-07-08 10:03:43', 1),
(13765, 13544, 19, 7, 4, 'SELECTED', 59, '2023-07-08 10:08:58', 1),
(13766, 13559, 29, 7, 3, 'PC, Need Aggressive training and motivate on incentive', 59, '2023-07-08 10:15:55', 1),
(13767, 13560, 29, 7, 3, 'PC, Need Aggressive training,', 59, '2023-07-08 10:16:21', 1),
(13768, 13571, 59, 5, 0, 'Have Sales exp with Bankbazaar Long career Gap recently joined YEs bank and now he is lookin for change in 3 months  again for the salary growth asked him to wait for second level but left wothout attending ', 108, '0000-00-00 00:00:00', 1),
(13769, 13548, 89, 7, 0, 'Selected ', 97, '2023-07-08 03:10:12', 1),
(13770, 13549, 105, 7, 0, 'GOOD COMMUNICATION, BETTER TO TRAIN HER', 97, '2023-07-08 03:12:18', 1),
(13771, 13547, 102, 4, 0, 'Selected for team ', 97, '2023-07-08 03:13:11', 1),
(13772, 13564, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13773, 13565, 59, 4, 0, '5050 Profile Fresher need to train a lot much preferred non voice but internal reference shortlisted for your team kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13774, 13561, 59, 4, 0, 'Have Exp in Telecalling Collections HDB financial but not open up a lot 5050 profile since having exp kindly check and let meknow your inputs', 101, '0000-00-00 00:00:00', 1),
(13775, 13566, 59, 5, 0, 'Communication Average No much good in Digital MArketing Have Exp for few months  and she is into sales but not interested to get into sales again.Written communicaiton Poor will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13776, 13563, 59, 5, 0, 'Fresher no basics Need to learn a lot need time to give his confiramtion on TxxampC if he comes back let us try', 101, '0000-00-00 00:00:00', 1),
(13777, 13573, 59, 5, 0, 'Too long Distance Looking for Non voice process will not sustain and handle our work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(13778, 13574, 59, 5, 0, 'Not Suitable Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13779, 13562, 59, 5, 0, 'Not much good in communication no wriiten communication salary exp is high not much good in skills also will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13780, 13568, 59, 5, 0, 'Looking for non voice process only not open to handle the pressure will not sustain', 101, '0000-00-00 00:00:00', 1),
(13781, 13558, 74, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13782, 13548, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 89, '2023-07-08 04:29:58', 1),
(13783, 13561, 19, 5, 1, 'NOT FIT', 59, '2023-07-08 04:33:10', 1),
(13784, 13565, 105, 5, 0, 'COMMUNICATION IS NOT GOOD , ALSO pronunciation IS WORST ', 59, '2023-07-08 04:35:20', 1),
(13785, 13564, 105, 7, 0, 'GOOD COMMUNICATION,WILL TRY TO TRAIN HER', 59, '2023-07-08 04:35:48', 1),
(13786, 13544, 59, 3, 0, 'SElected for Kanna Team in Staff Role    5050 Profile Long Career Gap Mentioned Exp But No Sustainability Have Worked With Care Health Insurance Kindly Check And Let Me Know Your Inputs Need To Initiate Agreement For Sustainability', 19, '2023-07-08 04:47:44', 1),
(13787, 13534, 59, 1, 0, NULL, 19, '2023-07-08 04:53:00', 1),
(13788, 13490, 59, 3, 0, 'Selected for Gopinath Team', 105, '2023-07-08 05:26:03', 1),
(13789, 13564, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 105, '2023-07-08 05:29:08', 1),
(13790, 13549, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 105, '2023-07-08 05:31:58', 1),
(13791, 13530, 59, 1, 0, NULL, 105, '2023-07-08 05:36:16', 1),
(13792, 13547, 60, 1, 0, NULL, 102, '2023-07-08 05:47:37', 1),
(13793, 13559, 59, 3, 0, 'Selected for Gaurav Sir team in Staff Role', 29, '2023-07-10 10:08:02', 1),
(13794, 13560, 59, 3, 0, 'Selected for Gaurav Sir team in Staff Role', 29, '2023-07-10 10:10:19', 1),
(13795, 13584, 59, 3, 0, 'Selected for Kannan Team in Staff role', 101, '0000-00-00 00:00:00', 1),
(13796, 13580, 59, 5, 0, 'No basic Skills knowledge Preferred JAVA and will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13797, 13579, 59, 5, 0, 'Fresher Not Much comfort in office timing got another offer and not joined due to timing local tamil language she is having issues', 101, '0000-00-00 00:00:00', 1),
(13798, 13581, 59, 5, 0, 'Fresher no basic skills knowledge preferred to strat his career in Java', 101, '0000-00-00 00:00:00', 1),
(13799, 13583, 59, 5, 0, 'Will not sustain in our roles over confidence Communication Good she will not sustain in a company previous exp lot of issue with the management', 101, '0000-00-00 00:00:00', 1),
(13800, 13585, 59, 4, 0, 'Fresher 12th graduate need to train a lot candidate need to open a lot internal team reference kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13801, 13575, 59, 4, 0, 'Have Exp in Calling for hathway process 5050 profile 12th graduate kindly check and let me know your interest', 101, '0000-00-00 00:00:00', 1),
(13802, 13576, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13803, 13586, 59, 2, 0, 'Very fresher written communication Average need to train from the scratch post hiring of exp can give a try', 101, '0000-00-00 00:00:00', 1),
(13804, 13575, 53, 5, 0, 'she is not opening her mouth, ', 59, '2023-07-10 04:58:56', 1),
(13805, 13576, 53, 7, 0, 'will try 50-50', 59, '2023-07-10 05:03:01', 1),
(13806, 13585, 57, 1, 0, NULL, 59, '2023-07-10 05:05:38', 1),
(13807, 13584, 19, 7, 4, 'Selected', 59, '2023-07-10 05:13:02', 1),
(13808, 13582, 74, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13809, 13576, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-07-10 05:43:22', 1),
(13810, 13604, 59, 5, 0, '5050 Need to open a lot but have 1 yyr customer support roles kindly check and let mekow your interest', 108, '0000-00-00 00:00:00', 1),
(13811, 13601, 59, 4, 0, '5050 Profile Can ba trained kindly check and let me know your interest', 108, '0000-00-00 00:00:00', 1),
(13812, 13596, 59, 4, 0, '5050 Profile internal reference need to open a lot kindly check andlet meknow your interest', 101, '0000-00-00 00:00:00', 1),
(13813, 13594, 59, 4, 0, '5050 Profile have exp in muthoot finance for a year kindly check and let me know your interest', 101, '0000-00-00 00:00:00', 1),
(13814, 13608, 59, 5, 0, 'No Communication will not sustain and no basics ', 101, '0000-00-00 00:00:00', 1),
(13815, 13609, 59, 5, 0, 'Communication Average not much suitable in our roles will not sustain', 101, '0000-00-00 00:00:00', 1),
(13816, 13607, 59, 5, 0, 'Too Long Distance Up And Down 90 Kms Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13817, 13603, 59, 5, 0, 'Looking for Account Financial Analyst role only CMA Inter', 101, '0000-00-00 00:00:00', 1),
(13818, 13606, 59, 5, 0, 'Too long Distance up and down 90 kms not suitable', 101, '0000-00-00 00:00:00', 1),
(13819, 13589, 59, 5, 0, 'Looking for nonvoice process', 101, '0000-00-00 00:00:00', 1),
(13820, 13600, 59, 5, 0, 'Not strong with UI basics not open for TxxampC', 101, '0000-00-00 00:00:00', 1),
(13821, 13587, 59, 5, 0, 'No Scope in work will not handle the work pressure', 101, '0000-00-00 00:00:00', 1),
(13822, 13578, 59, 5, 0, 'Looking for non voice will not sustain', 101, '0000-00-00 00:00:00', 1),
(13823, 13595, 59, 5, 0, 'No Basics Communication Barrier not sutiable', 101, '0000-00-00 00:00:00', 1),
(13824, 13590, 59, 5, 0, 'No Basic Skills not suitable not open for TxxampC', 101, '0000-00-00 00:00:00', 1),
(13825, 13597, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13826, 13610, 59, 5, 0, 'Technical Round Reject - Tamilmani', 101, '0000-00-00 00:00:00', 1),
(13827, 13611, 59, 5, 0, 'Long Career Gap No sustainability Not suitable', 101, '0000-00-00 00:00:00', 1),
(13828, 13602, 59, 5, 0, 'Left wothout attending', 108, '0000-00-00 00:00:00', 1),
(13829, 13605, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(13830, 13594, 51, 5, 0, 'Rejected', 59, '2023-07-11 07:44:52', 1),
(13831, 13596, 19, 5, 1, 'NOT SELECTED', 59, '2023-07-11 07:46:17', 1),
(13832, 13597, 19, 7, 4, 'She Performed Well in Interview and her family situation ,am recommend 15k per Month Salary', 59, '2023-07-11 07:47:03', 1),
(13833, 13601, 19, 5, 1, 'Rejected', 59, '2023-07-11 07:48:28', 1),
(13834, 13584, 59, 3, 0, 'Selected for Kannan Team in Staff role', 19, '2023-07-12 10:17:37', 1),
(13835, 13618, 59, 4, 0, 'Communication Ok Have Exp in Calling Can give atry kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(13836, 13598, 59, 4, 0, '5050 Profile Can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13837, 13616, 59, 3, 0, 'Selected for Charles Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13838, 13615, 59, 3, 0, 'Selected for Charles TEam in consultant Role', 101, '0000-00-00 00:00:00', 1),
(13839, 5548, 59, 5, 0, 'Fresher not open or TxxampC if he comes back after learning let us try', 101, '0000-00-00 00:00:00', 1),
(13840, 13620, 59, 5, 0, 'Not open for Voice Process Much', 101, '0000-00-00 00:00:00', 1),
(13841, 13619, 59, 5, 0, 'Fresher Not Open Or TxxampC If He Comes Back After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13842, 13617, 59, 5, 0, '2nd Round Reject in MIS Sustainability will not n', 101, '0000-00-00 00:00:00', 1),
(13843, 13614, 59, 3, 0, 'Selected for Intern React', 101, '0000-00-00 00:00:00', 1),
(13844, 13597, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2023-07-12 06:04:10', 1),
(13845, 13598, 19, 5, 1, 'Rejected', 59, '2023-07-12 07:58:03', 1),
(13846, 13615, 102, 7, 0, 'Shortlist for team', 59, '2023-07-12 07:59:02', 1),
(13847, 13616, 102, 7, 0, 'Shortlist For Team', 59, '2023-07-12 07:59:31', 1),
(13848, 13618, 57, 7, 0, 'Candidate is ok pls check with Pay slip and offer letter. pls confirm the joining date', 59, '2023-07-12 08:01:25', 1),
(13849, 13615, 59, 3, 0, 'Selected for Charles TEam in consultant Role', 102, '2023-07-13 10:49:59', 1),
(13850, 13616, 59, 3, 0, 'Selected for Charles Team in Consultant Role', 102, '2023-07-13 10:50:16', 1),
(13851, 13637, 59, 5, 0, 'Not good with Communicaiton and will not sustain and handle our pressure', 108, '0000-00-00 00:00:00', 1),
(13852, 13629, 59, 3, 0, 'Selected for MIS Renewal 2yrs NDA Communication Good Final Round Gokul', 101, '0000-00-00 00:00:00', 1),
(13853, 13628, 59, 3, 0, 'Selected for Kannan Team in Consultant role', 101, '0000-00-00 00:00:00', 1),
(13854, 13627, 59, 3, 0, 'Selected for Kannan Team in consultant role', 101, '0000-00-00 00:00:00', 1),
(13855, 13633, 59, 5, 0, '2nd round hold and reject not much comfort in calling', 101, '0000-00-00 00:00:00', 1),
(13856, 13632, 59, 5, 0, 'No Basics Knowledge Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13857, 13635, 59, 5, 0, 'have 1 yr exp min exp 7 LPA will not sustain', 101, '0000-00-00 00:00:00', 1),
(13858, 13625, 59, 5, 0, 'Long Career Gap no basics knowledge will not sustain in our roles', 101, '0000-00-00 00:00:00', 1),
(13859, 13626, 59, 5, 0, 'should come after learning\n', 101, '0000-00-00 00:00:00', 1),
(13860, 13623, 59, 4, 0, 'Fresher Communication Ok can be trained kindly check and let me know your interest', 101, '0000-00-00 00:00:00', 1),
(13861, 13634, 59, 5, 0, 'Left Without Attending The Interview', 101, '0000-00-00 00:00:00', 1),
(13862, 13631, 59, 5, 0, 'Left Without Attending The Interview', 101, '0000-00-00 00:00:00', 1),
(13863, 13630, 59, 5, 0, 'Left without attending the interview', 101, '0000-00-00 00:00:00', 1),
(13864, 13624, 74, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13865, 13623, 19, 5, 1, 'Rejected', 59, '2023-07-13 07:16:44', 1),
(13866, 13627, 19, 7, 4, 'Selected', 59, '2023-07-13 07:17:12', 1),
(13867, 13628, 19, 7, 4, 'Selected', 59, '2023-07-13 07:17:58', 1),
(13868, 13627, 59, 3, 0, 'Selected for Kannan Team in consultant role', 19, '2023-07-14 10:05:19', 1),
(13869, 13628, 59, 3, 0, 'Selected for Kannan Team in Consultant role', 19, '2023-07-14 11:01:15', 1),
(13870, 13618, 59, 1, 0, NULL, 57, '2023-07-14 11:55:02', 1),
(13871, 13639, 59, 2, 0, 'Have Exp in operations but not much suitable with the work pressure will not sustain and handle the pressure', 108, '0000-00-00 00:00:00', 1),
(13872, 13640, 59, 5, 0, 'Left with out attending', 101, '0000-00-00 00:00:00', 1),
(13873, 13641, 59, 4, 0, 'Have 1 month Exp Communication Average kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13874, 13650, 59, 5, 0, 'Have Exp but not much ideas in Javascript will not sustain and handle our work roles need to train a lot', 101, '0000-00-00 00:00:00', 1),
(13875, 13642, 59, 5, 0, 'Have 1 yr exp in web developer bubt the salary exp is very high and not ready to come down', 101, '0000-00-00 00:00:00', 1),
(13876, 13645, 59, 5, 0, 'No basics knowledge will not sustain in our roles not suitable', 101, '0000-00-00 00:00:00', 1),
(13877, 13638, 59, 5, 0, 'Long Career Gap Ditance he is not comfortable new for Insurance Sales will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13878, 13652, 59, 5, 0, 'No sustainability 1.7 yrs 3 companies no communication no clarity inher previous emp will not sustain', 101, '0000-00-00 00:00:00', 1),
(13879, 13641, 105, 5, 0, 'COMMUNICATION ERROR ITS VERY HARD TO TRAIN HER', 59, '2023-07-14 07:33:33', 1),
(13880, 13648, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(13881, 13657, 59, 4, 0, 'Have Exp in Calling can be trained in our roles kindly check anc let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(13882, 13658, 59, 3, 0, 'Selected for Syed Team', 108, '0000-00-00 00:00:00', 1),
(13883, 13659, 59, 7, 0, 'Selected for Operations team Gokul final round selected', 108, '0000-00-00 00:00:00', 1),
(13884, 13651, 59, 4, 0, '5050 Profile Have Exp in Sales Calling but he seems to have some medical issues kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(13885, 13660, 59, 5, 0, 'Holding an offer for 6 LPA', 101, '0000-00-00 00:00:00', 1),
(13886, 13661, 59, 5, 0, 'Need to learn Looking for Java profile if he comes back let  us try', 101, '0000-00-00 00:00:00', 1),
(13887, 13656, 59, 5, 0, 'Pronunciation Poor will not handle the ork pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(13888, 13654, 59, 4, 0, 'Fresher for our domain have exp in B2B Calling kindly check an dlet me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13889, 13665, 59, 5, 0, 'Looking for non voice process only not suitable', 101, '0000-00-00 00:00:00', 1),
(13890, 13664, 59, 5, 0, 'Not suitable for Sales will not sustain ', 101, '0000-00-00 00:00:00', 1),
(13891, 13666, 59, 5, 0, 'Will not sustain Holding an offer with CTS ', 101, '0000-00-00 00:00:00', 1),
(13892, 13653, 59, 4, 0, '5050 profile Communication Ok Fresher distance need to see kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13893, 13663, 59, 5, 0, 'Too long Distance Have high Exp age around 40 Not suitable', 101, '0000-00-00 00:00:00', 1),
(13894, 13651, 19, 5, 1, 'Rejected', 59, '2023-07-15 07:27:52', 1),
(13895, 13653, 19, 5, 1, 'Rejected', 59, '2023-07-15 07:30:18', 1),
(13896, 13657, 53, 1, 0, NULL, 59, '2023-07-15 07:33:48', 1),
(13897, 13654, 53, 1, 0, NULL, 59, '2023-07-15 07:34:22', 1),
(13898, 13658, 57, 7, 0, 'Pls check With Candidate joining date, Ctc ', 59, '2023-07-15 07:37:35', 1),
(13899, 13659, 60, 1, 0, NULL, 59, '2023-07-15 07:38:33', 1),
(13900, 13550, 60, 1, 0, NULL, 30, '2023-07-17 08:21:42', 1),
(13901, 13535, 59, 4, 0, 'Fresher 5050 Try Need to be trained kindly check and let me know your input', 101, '0000-00-00 00:00:00', 1),
(13902, 13655, 59, 4, 0, 'Fresher 5050 Try Need To Be Trained Kindly Check And Let Me Know Your Input', 101, '0000-00-00 00:00:00', 1),
(13903, 13668, 59, 5, 0, 'Poor Proninciation will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13904, 13671, 59, 5, 0, 'Looking for non Voice Process no Communicaiton', 101, '0000-00-00 00:00:00', 1),
(13905, 13622, 59, 4, 0, 'Fresher Over confidence 5050 Can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13906, 13669, 59, 5, 0, 'have exp in semivoce and holding an offer for 18K and lookin for same semivoice', 101, '0000-00-00 00:00:00', 1),
(13907, 13672, 59, 5, 0, 'HOlding SP code with SBI and not ready to cancel the same not suitable', 101, '0000-00-00 00:00:00', 1),
(13908, 13673, 59, 5, 0, 'HOlding SP Code With SBI And Not Ready To Cancel The Same Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13909, 13636, 59, 4, 0, 'Too long Distance have exp in calling 5050 kindly check and let me knwo your inputs', 101, '0000-00-00 00:00:00', 1),
(13910, 13658, 59, 3, 0, 'Selected for Syed Team', 57, '2023-07-17 03:55:23', 1),
(13911, 13535, 19, 5, 1, 'Reject', 59, '2023-07-17 07:16:19', 1),
(13912, 13655, 102, 5, 0, 'Not Suitable Sales ', 59, '2023-07-17 07:16:42', 1),
(13913, 13622, 19, 5, 1, 'Rejected', 59, '2023-07-17 07:18:40', 1),
(13914, 13636, 86, 5, 0, 'Not Satisfied', 59, '2023-07-17 07:19:42', 1),
(13915, 13675, 59, 4, 0, 'have exp in Sales but his communication not seems to that 5050 kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13916, 13676, 59, 3, 0, 'Selected for Sarath Team ', 108, '0000-00-00 00:00:00', 1),
(13917, 13679, 59, 5, 0, 'No Communication not open fir Telecalling will not sustain not suitable', 108, '0000-00-00 00:00:00', 1),
(13918, 13667, 59, 5, 0, 'No Sustainbility will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(13919, 13678, 59, 3, 0, 'Selecetd for Kannan Team Consutlant Role', 108, '0000-00-00 00:00:00', 1),
(13920, 13681, 59, 4, 0, '5050 Profile Fresher Need To Train A Lot Kindly Check And Let Me Knwo Your Inputs', 101, '0000-00-00 00:00:00', 1),
(13921, 13674, 59, 5, 0, 'Have Shoulder injury communication Ok asked him to come post lunch but he didmt', 101, '0000-00-00 00:00:00', 1),
(13922, 13683, 59, 2, 0, 'Need to come back after learning if he comes back let us try', 101, '0000-00-00 00:00:00', 1),
(13923, 13680, 59, 4, 0, '5050 Profile Fresher need to train a lot kindly check and let me knwo your inputs', 101, '0000-00-00 00:00:00', 1),
(13924, 13684, 59, 5, 0, 'Not open for Telecalling', 101, '0000-00-00 00:00:00', 1),
(13925, 13680, 19, 5, 1, 'Reject', 59, '2023-07-18 07:21:25', 1),
(13926, 13681, 89, 1, 0, NULL, 59, '2023-07-18 07:21:43', 1),
(13927, 13678, 19, 7, 4, 'Selected', 59, '2023-07-18 07:23:17', 1),
(13928, 13675, 86, 5, 0, 'Not satisfied', 59, '2023-07-18 07:26:28', 1),
(13929, 13676, 51, 1, 0, NULL, 59, '2023-07-18 07:27:40', 1),
(13930, 13689, 74, 7, 0, 'she is ok with the profile.....completed bcom and expected banking related job they choose insurance so intrested candidate and good exposure...expected 12k ...father auto driver and mother house wife and have one sister ........so shee need to improve the status highly job preffered ...no laptop ready to arrange kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(13931, 13670, 97, 4, 0, 'communication ok. good in convincing . let us try kindly check and update your feedback.', 85, '0000-00-00 00:00:00', 1),
(13932, 13685, 97, 5, 0, 'looking job  into IT ..long run doubts.. ', 85, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(13933, 13687, 97, 5, 0, 'Has exp in sales. long run doubts xxamp Not suit for our process.', 85, '0000-00-00 00:00:00', 1),
(13934, 13690, 97, 5, 0, 'not suit for our process', 85, '0000-00-00 00:00:00', 1),
(13935, 13689, 59, 3, 0, 'Selected for Sithy Team Consultant Role', 74, '2023-07-19 04:28:17', 1),
(13936, 13676, 59, 3, 0, 'Selected for Sarath Team ', 29, '2023-07-20 10:05:53', 1),
(13937, 13686, 97, 7, 0, 'Communication ok. has  some  exp in sales xxamp Renewals. final round interviewed by gokul  xxamp Selected for Renewals.', 85, '0000-00-00 00:00:00', 1),
(13938, 13686, 59, 1, 0, NULL, 97, '2023-07-20 10:27:09', 1),
(13939, 13670, 19, 7, 4, 'Selected', 97, '2023-07-20 10:30:48', 1),
(13940, 13691, 59, 5, 0, 'Not Suitable Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13941, 13695, 59, 5, 0, 'Not Suitable Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13942, 13694, 59, 5, 0, 'Not suitable will not sustain', 101, '0000-00-00 00:00:00', 1),
(13943, 13696, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13944, 13697, 59, 5, 0, 'Not open for telecalling not much suits to our roles will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13945, 13692, 59, 5, 0, 'No Basic Skills not much comfort in TxxampC if she comes after learning let us try', 101, '0000-00-00 00:00:00', 1),
(13946, 13699, 59, 5, 0, 'Looking for non voice only', 101, '0000-00-00 00:00:00', 1),
(13947, 13700, 59, 5, 0, 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13948, 13710, 59, 5, 0, 'Looking for non voice and not open for Calling profile not suitble', 101, '0000-00-00 00:00:00', 1),
(13949, 13708, 59, 4, 0, 'Fresher for our sales very 5050 profile kindly check andlet me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13950, 13705, 59, 5, 0, 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13951, 13706, 59, 5, 0, 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13952, 13704, 59, 5, 0, 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13953, 13702, 59, 5, 0, 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13954, 13698, 59, 5, 0, 'Fresher no basics in Javascript need to come back with his confirmation on TxxampC if he comes back after learning let us try', 101, '0000-00-00 00:00:00', 1),
(13955, 13678, 59, 3, 0, 'Selecetd for Kannan Team Consutlant Role', 19, '2023-07-21 06:38:23', 1),
(13956, 13670, 59, 3, 0, 'Selected for KAnnan Tema in staff Role', 19, '2023-07-21 06:39:02', 1),
(13957, 13708, 19, 5, 1, 'Rejected', 59, '2023-07-21 07:26:56', 1),
(13958, 13717, 74, 7, 0, 'she is highly expected for sales only...so easily adaptive and ...already worked in just dial...so have knowledge in sales also....father farmer only and ready to arrange laptop currently working in school and releived in aug only so kindly check once and confirm expected 15k ...kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(13959, 13707, 97, 4, 0, 'Fresher  need to train .convincing ok.. let us try', 104, '0000-00-00 00:00:00', 1),
(13960, 13738, 97, 5, 0, 'not suit for our process ...sustainbility doubts', 108, '0000-00-00 00:00:00', 1),
(13961, 13712, 59, 2, 0, 'Discussed with the candidate and she is not much comfort also family is not much comfort with the distance\n', 104, '0000-00-00 00:00:00', 1),
(13962, 13715, 97, 4, 0, 'exp in sales xxamp Recovery good communication skill.. kindly check and update your inputs...', 104, '0000-00-00 00:00:00', 1),
(13963, 13736, 97, 5, 0, 'Not Suit For Our Process.', 104, '0000-00-00 00:00:00', 1),
(13964, 13725, 97, 5, 0, 'not suit for our process.', 104, '0000-00-00 00:00:00', 1),
(13965, 13732, 97, 5, 0, 'Not much good in prog lau . xxamp Not ok with txxampc', 104, '0000-00-00 00:00:00', 1),
(13966, 13750, 97, 5, 0, 'low confidence .. not suit for our roles sal expt high', 104, '0000-00-00 00:00:00', 1),
(13967, 13747, 97, 5, 0, '50-50 profile  average convinving skills..let us try ... left without attending next round', 104, '0000-00-00 00:00:00', 1),
(13968, 13756, 97, 4, 0, '50-50 PROFILE sustainbility doubts..check and update your feedbacks', 104, '0000-00-00 00:00:00', 1),
(13969, 13761, 97, 5, 0, 'not suit for our roles', 104, '0000-00-00 00:00:00', 1),
(13970, 13769, 97, 5, 0, 'Exp profile.. sal expt too high for renewals.', 104, '0000-00-00 00:00:00', 1),
(13971, 13768, 59, 5, 0, 'Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(13972, 13772, 97, 5, 0, 'Rejected In aptitude round', 104, '0000-00-00 00:00:00', 1),
(13973, 13755, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13974, 13766, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13975, 13753, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13976, 13751, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13977, 13762, 97, 5, 0, 'Rejected in appitutude round', 104, '0000-00-00 00:00:00', 1),
(13978, 13773, 85, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13979, 13776, 59, 4, 0, '5050 Profile can give a try kindly check and let me knwo your inputs', 104, '0000-00-00 00:00:00', 1),
(13980, 13757, 97, 4, 0, '50-50 profile convincing skill average. sustainbility doubts. let us try.. kindly check and update your feed back', 108, '0000-00-00 00:00:00', 1),
(13981, 13729, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13982, 13739, 59, 5, 0, 'TEchnical Round Reject', 104, '0000-00-00 00:00:00', 1),
(13983, 13749, 97, 4, 0, 'Has exp in sales .. convincing skills Good..kindly check and update your feed back', 104, '0000-00-00 00:00:00', 1),
(13984, 13742, 59, 3, 0, 'Selected for Manikandan Team in Staff Role', 104, '0000-00-00 00:00:00', 1),
(13985, 13744, 59, 5, 0, 'Looking For Non Voice Only', 104, '0000-00-00 00:00:00', 1),
(13986, 13734, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13987, 13741, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13988, 13733, 59, 5, 0, 'Rejected by Gk Sir 2nd round', 104, '0000-00-00 00:00:00', 1),
(13989, 13740, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13990, 13731, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13991, 13727, 59, 5, 0, 'Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(13992, 13737, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13993, 13730, 59, 5, 0, 'Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13994, 13728, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13995, 13758, 59, 5, 0, 'Looking for non voice only', 104, '0000-00-00 00:00:00', 1),
(13996, 13771, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13997, 13759, 59, 5, 0, 'Looking For Non Voice Only', 104, '0000-00-00 00:00:00', 1),
(13998, 13775, 59, 2, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13999, 13760, 59, 5, 0, 'Looking For Non Voice Only', 104, '0000-00-00 00:00:00', 1),
(14000, 13748, 59, 5, 0, 'Fresher for Digital Marketing high salary exp', 104, '0000-00-00 00:00:00', 1),
(14001, 13752, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14002, 13770, 59, 4, 0, 'Have Exp in Insurance Domain but no sustainability Can give a try kindly check and let me know your inouts', 104, '0000-00-00 00:00:00', 1),
(14003, 13754, 59, 4, 0, '5050 Profile can give a try kindly check and let me know your inpust', 104, '0000-00-00 00:00:00', 1),
(14004, 13763, 97, 5, 0, 'not suit for our process', 104, '0000-00-00 00:00:00', 1),
(14005, 13714, 97, 4, 0, 'Fresher Good in convincing skill...kindly check and update your feed back', 104, '0000-00-00 00:00:00', 1),
(14006, 13707, 53, 7, 0, 'Selected', 97, '2023-07-25 04:02:37', 1),
(14007, 13714, 53, 7, 0, 'Selected', 97, '2023-07-25 04:09:04', 1),
(14008, 13715, 86, 4, 0, 'Selected for next round ', 97, '2023-07-25 05:44:50', 1),
(14009, 13707, 59, 3, 0, 'Selected for Banu Teaam Consultant Tole', 53, '2023-07-25 06:02:51', 1),
(14010, 13714, 59, 3, 0, 'Selelcted fpr Banu Team Consultant Role', 53, '2023-07-25 06:03:16', 1),
(14011, 13749, 31, 7, 4, 'Candidate okay', 97, '2023-07-25 06:04:36', 1),
(14012, 13797, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14013, 13798, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14014, 13796, 59, 5, 0, 'Will not sustain not suitable', 101, '0000-00-00 00:00:00', 1),
(14015, 13789, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14016, 13780, 59, 5, 0, 'Sounding Vey Low will not handle the work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(14017, 13781, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try too long distance too', 101, '0000-00-00 00:00:00', 1),
(14018, 13782, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14019, 13778, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14020, 13765, 59, 4, 0, 'Fresher can be trained kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(14021, 13785, 59, 5, 0, 'time being looking for opportunities', 101, '0000-00-00 00:00:00', 1),
(14022, 13783, 59, 5, 0, 'For Dot net only', 101, '0000-00-00 00:00:00', 1),
(14023, 13784, 59, 5, 0, 'Looking for Java only', 101, '0000-00-00 00:00:00', 1),
(14024, 13786, 59, 5, 0, 'Not suitable and will not sustain', 101, '0000-00-00 00:00:00', 1),
(14025, 13787, 59, 5, 0, 'NotMcuh open up not suitable for our Roles', 101, '0000-00-00 00:00:00', 1),
(14026, 13788, 59, 5, 0, 'Not suitable for our roles will not sustain ', 101, '0000-00-00 00:00:00', 1),
(14027, 13792, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14028, 13793, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14029, 13794, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If the candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14030, 13790, 59, 4, 0, '5050 Low Quality Internal reference kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(14031, 13791, 59, 5, 0, 'No sustainability will not sustain not suitable', 101, '0000-00-00 00:00:00', 1),
(14032, 13834, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14033, 13835, 109, 4, 0, 'Selected for apptitude', 104, '0000-00-00 00:00:00', 1),
(14034, 13814, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14035, 13820, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14036, 13813, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14037, 13830, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14038, 13829, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14039, 13822, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14040, 13848, 109, 4, 0, 'selected for apptitude test', 104, '0000-00-00 00:00:00', 1),
(14041, 13839, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14042, 13836, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14043, 13815, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14044, 13851, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14045, 13804, 109, 5, 0, 'not ok with Technical round', 104, '0000-00-00 00:00:00', 1),
(14046, 13846, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14047, 13845, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14048, 13852, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14049, 13837, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14050, 13840, 59, 5, 0, 'Min Exp 4.5 LPA exp 1yr', 101, '0000-00-00 00:00:00', 1),
(14051, 13823, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14052, 13828, 59, 5, 0, 'Too long distance will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(14053, 13819, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14054, 13824, 109, 4, 0, 'Selected for apptitude test', 104, '0000-00-00 00:00:00', 1),
(14055, 13831, 59, 5, 0, 'very Slow not open up', 101, '0000-00-00 00:00:00', 1),
(14056, 13827, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14057, 13807, 109, 5, 0, 'Not ok with technical round', 104, '0000-00-00 00:00:00', 1),
(14058, 13853, 59, 5, 0, 'Looking for non voice in accounts only tally but sustainability doubt', 101, '0000-00-00 00:00:00', 1),
(14059, 13812, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14060, 13854, 59, 2, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14061, 13857, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14062, 13817, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14063, 13847, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14064, 13825, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14065, 13806, 59, 2, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14066, 13842, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14067, 13844, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14068, 13838, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14069, 13832, 59, 5, 0, 'Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try Min Exp is 20-25K', 101, '0000-00-00 00:00:00', 1),
(14070, 13818, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14071, 13833, 109, 4, 0, 'Selected for apptitude test', 104, '0000-00-00 00:00:00', 1),
(14072, 13856, 97, 5, 0, 'Not Suit For Our Process.', 101, '0000-00-00 00:00:00', 1),
(14073, 13855, 97, 5, 0, 'Not Suit For Our Process.', 101, '0000-00-00 00:00:00', 1),
(14074, 13799, 59, 4, 0, 'Have Exp in Telecalling can give  a try kindy check and le tme know your inputs', 101, '0000-00-00 00:00:00', 1),
(14075, 13800, 59, 4, 0, '5050 Profile fresher for our roles can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(14076, 13808, 53, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(14077, 13821, 53, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(14078, 13849, 59, 3, 0, 'Selected for Operation Team Final Round interviewed by gokul and selected', 101, '0000-00-00 00:00:00', 1),
(14079, 13868, 109, 2, 0, 'Yet To Be Correct Apptitude', 101, '0000-00-00 00:00:00', 1),
(14080, 13869, 109, 2, 0, 'Yet To Be Correct Apptitude', 101, '0000-00-00 00:00:00', 1),
(14081, 13800, 19, 5, 1, 'not fir for sales', 59, '2023-07-27 05:36:21', 1),
(14082, 13790, 19, 5, 1, 'Reject', 59, '2023-07-27 05:40:20', 1),
(14083, 13799, 51, 5, 0, 'Rejected', 59, '2023-07-27 05:46:34', 1),
(14084, 13742, 86, 4, 0, 'Selected for next round ', 59, '2023-07-27 05:47:32', 1),
(14085, 13770, 31, 1, 0, NULL, 59, '2023-07-27 05:48:31', 1),
(14086, 13765, 19, 5, 1, 'not fit for sales', 59, '2023-07-27 05:54:52', 1),
(14087, 13776, 89, 1, 0, NULL, 59, '2023-07-27 05:58:16', 1),
(14088, 13876, 59, 2, 0, 'Sounding Low written communicaiton Ok can give a try', 101, '0000-00-00 00:00:00', 1),
(14089, 13887, 59, 5, 0, 'Looking for Java only', 101, '0000-00-00 00:00:00', 1),
(14090, 13890, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14091, 13871, 59, 5, 0, ' Not Suitable For Our Roles Will Not Sustain And Handle The Work Pressure', 101, '0000-00-00 00:00:00', 1),
(14092, 13881, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14093, 13870, 59, 5, 0, ' Not suitable for our roles will not sustain and handle the work pressure', 101, '0000-00-00 00:00:00', 1),
(14094, 13880, 59, 5, 0, '8610762', 101, '0000-00-00 00:00:00', 1),
(14095, 13872, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14096, 13884, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14097, 13883, 59, 5, 0, 'Very Slow not open up will not sustain', 101, '0000-00-00 00:00:00', 1),
(14098, 13866, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14099, 13879, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14100, 13878, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14101, 13874, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14102, 13873, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14103, 13889, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14104, 13888, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14105, 13861, 59, 4, 0, 'Communication Ok Can be trained in our roles kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(14106, 13754, 19, 5, 1, 'Not Fit For Sales', 59, '2023-07-27 07:32:31', 1),
(14107, 13862, 109, 2, 0, 'Yet To Be Correct Apptitude', 101, '0000-00-00 00:00:00', 1),
(14108, 13877, 59, 3, 0, 'Selected for GK Sir Team consultant Role', 101, '0000-00-00 00:00:00', 1),
(14109, 13882, 59, 5, 0, 'Looking for Java only', 101, '0000-00-00 00:00:00', 1),
(14110, 13863, 109, 2, 0, 'Yet To Be Correct Apptitude', 101, '0000-00-00 00:00:00', 1),
(14111, 13865, 109, 2, 0, 'Yet To Be Correct Apptitude', 101, '0000-00-00 00:00:00', 1),
(14112, 13861, 57, 1, 0, NULL, 59, '2023-07-27 07:36:24', 1),
(14113, 13877, 31, 7, 4, 'Candidate selected for next round', 59, '2023-07-27 07:37:13', 1),
(14114, 13824, 59, 1, 0, NULL, 109, '2023-07-28 11:35:39', 1),
(14115, 13833, 59, 1, 0, NULL, 109, '2023-07-28 11:38:18', 1),
(14116, 13835, 59, 1, 0, NULL, 109, '2023-07-28 11:39:17', 1),
(14117, 13848, 59, 1, 0, NULL, 109, '2023-07-28 11:42:12', 1),
(14118, 13757, 19, 5, 1, 'Not Fit for sales', 97, '2023-07-28 11:50:36', 1),
(14119, 13905, 97, 4, 0, 'Has 6m of exp in sales.. good convincing skill.. kindly check and update your feed back', 108, '0000-00-00 00:00:00', 1),
(14120, 13891, 97, 5, 0, 'Long distance.. candidate not interested in sales...', 104, '0000-00-00 00:00:00', 1),
(14121, 13894, 97, 4, 0, 'long distance ready to relocate.... good in convincing skill.. let us try', 104, '0000-00-00 00:00:00', 1),
(14122, 13859, 97, 4, 0, '50-50 profile.... Fresher need to open a lot .. kindly  check ', 101, '0000-00-00 00:00:00', 1),
(14123, 13811, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(14124, 13885, 59, 5, 0, 'Not open for TxxampC', 104, '0000-00-00 00:00:00', 1),
(14125, 13895, 109, 2, 0, 'yest to be correct apptitude.', 104, '0000-00-00 00:00:00', 1),
(14126, 13896, 109, 2, 0, 'yet to be correct apptitude', 104, '0000-00-00 00:00:00', 1),
(14127, 13902, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14128, 13904, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14129, 13906, 74, 7, 0, 'he is ok with the profile father doing work labour in market rental house have one brother studying college .....have good in fluency speech and high aim of thoughts related to job college topper ...expected  14k due to family issue kindly check and confirm once from your side ...have no laptop ready  to manage ', 85, '0000-00-00 00:00:00', 1),
(14130, 13901, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14131, 13900, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14132, 13810, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(14133, 13908, 59, 5, 0, 'Too long Distance not much comfort in TxxampC too ', 104, '0000-00-00 00:00:00', 1),
(14134, 13907, 59, 5, 0, 'Yet to complete her graduation post completion if she comes let us try', 104, '0000-00-00 00:00:00', 1),
(14135, 13809, 74, 7, 0, 'she is ok with the profile father daily wages .....but she is active and good profile so fit for team also....have laptop refered by new candidate vaishnavi and ready to join is not finanalised because he is joining in tailoring class so kindly check once and confirm...expected 12k', 108, '0000-00-00 00:00:00', 1),
(14136, 13897, 59, 3, 0, 'Selected for Operations  staff role', 104, '0000-00-00 00:00:00', 1),
(14137, 13899, 59, 5, 0, 'too long Distance up and down 50kms will not sustain', 104, '0000-00-00 00:00:00', 1),
(14138, 13903, 59, 5, 0, 'No basics not suitable not open for TxxampC', 104, '0000-00-00 00:00:00', 1),
(14139, 13898, 59, 5, 0, 'Not open with the TxxampC fresher looking only on the salary\n', 104, '0000-00-00 00:00:00', 1),
(14140, 13921, 59, 4, 0, '5050 Profile fresher for our sales sustainability doubts kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14141, 13919, 97, 4, 0, 'Has exp in sales... good convincing skill. let us try..Check xxampupdate your inputs', 104, '0000-00-00 00:00:00', 1),
(14142, 13915, 85, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14143, 13906, 59, 1, 0, NULL, 74, '2023-07-28 05:54:34', 1),
(14144, 13809, 59, 1, 0, NULL, 74, '2023-07-28 05:57:39', 1),
(14145, 13717, 59, 3, 0, 'Selected for Sithy Team Consultant Role', 74, '2023-07-28 06:03:37', 1),
(14146, 13905, 89, 7, 0, 'Selected ', 97, '2023-07-29 10:30:09', 1),
(14147, 13919, 89, 7, 0, 'Selected ', 97, '2023-07-29 10:31:42', 1),
(14148, 13894, 89, 7, 0, 'Selected', 97, '2023-07-29 10:43:04', 1),
(14149, 13859, 89, 1, 0, NULL, 97, '2023-07-29 10:45:27', 1),
(14150, 13892, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(14151, 13894, 59, 3, 0, 'Selected for Babu Team Consultant Role', 89, '2023-07-29 11:08:09', 1),
(14152, 13905, 59, 3, 0, 'Selected for Babu Team', 89, '2023-07-29 11:08:32', 1),
(14153, 13919, 59, 3, 0, 'Selected for Babu Team Consultant role', 89, '2023-07-29 11:09:02', 1),
(14154, 13929, 59, 2, 0, 'Good Communication No local communication only english and hindi can give a try for other roles if he is ok \n', 108, '0000-00-00 00:00:00', 1),
(14155, 13756, 89, 1, 0, NULL, 97, '2023-07-29 05:37:33', 1),
(14156, 13715, 18, 7, 0, 'Offer 2.7L CTC Ready to Join on 2nd Aug for Mani team', 86, '2023-07-29 05:50:04', 1),
(14157, 13742, 18, 7, 0, 'Shortlisted for Mani team. Expected 35K Last drawn CTC 28K Ask Arun to negotiate the salary but decent candidate xxamp Immed Joiner', 86, '2023-07-29 05:50:38', 1),
(14158, 13922, 59, 5, 0, 'Not suitable for our roles every 6 months jumped companies not in sales too ', 104, '0000-00-00 00:00:00', 1),
(14159, 13923, 59, 5, 0, 'No basics No communication only speaks malayalam not suitable', 104, '0000-00-00 00:00:00', 1),
(14160, 13924, 59, 2, 0, 'Have basic skills but not comfort in TxxampC if he comes back let  us try', 104, '0000-00-00 00:00:00', 1),
(14161, 13925, 59, 2, 0, 'Need to come back with his confirmation already working and time being he is just looking for his safe employment', 104, '0000-00-00 00:00:00', 1),
(14162, 13928, 59, 5, 0, 'not much comfort in TxxampC fresher if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14163, 13749, 29, 7, 2, 'gkji,', 31, '2023-07-31 10:02:37', 1),
(14164, 13877, 29, 7, 2, 'gk team, need to check in 7 days training, ', 31, '2023-07-31 10:03:46', 1),
(14165, 13934, 74, 7, 0, 'she is ok with the profile have sales knowledge and intrested candidate travel time 1 hour kindly check once completed mba and expected 12k salary have laptop kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(14166, 13935, 74, 7, 0, 'she is ok with the profile have sales knowledge... mba finance and marketing have laptop and expected in sales related job only....salary 12k take home...have laptop kindly confirm once for joining', 85, '0000-00-00 00:00:00', 1),
(14167, 13936, 59, 3, 0, 'Selected for B2Bconsultant Role', 101, '0000-00-00 00:00:00', 1),
(14168, 13940, 59, 3, 0, 'Selected for Operations Renewal final round by gokul ', 101, '0000-00-00 00:00:00', 1),
(14169, 13877, 59, 3, 0, 'Selected for GK Sir Team consultant Role', 29, '2023-07-31 04:52:58', 1),
(14170, 13749, 59, 3, 0, 'Selected for GK sir Team in Staff Role', 29, '2023-07-31 04:54:51', 1),
(14171, 13932, 59, 4, 0, 'communication Ok but attitude he has doubts on the sustainability in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14172, 13951, 59, 5, 0, 'Not much interested in calling much focus in Accounts but no ideas in that too long distance sustainability doubts', 104, '0000-00-00 00:00:00', 1),
(14173, 13715, 59, 3, 0, 'Selected for Manikandan Team in Staff Role', 18, '2023-07-31 05:11:26', 1),
(14174, 13950, 59, 5, 0, 'Duplicated Profile', 104, '0000-00-00 00:00:00', 1),
(14175, 13742, 60, 1, 0, NULL, 18, '2023-07-31 05:12:01', 1),
(14176, 13945, 59, 5, 0, 'No Clarity in his communication Salary exp is high his current is 25K TH will not sustain and handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14177, 13944, 59, 5, 0, 'Over confidence Will not sustain and handle our work pressure this attitude will not work it out in our roles', 104, '0000-00-00 00:00:00', 1),
(14178, 13939, 59, 3, 0, 'Selected for B2B Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14179, 13938, 59, 4, 0, 'Speaking but seems to be 5050 kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14180, 13937, 59, 4, 0, '5050 Need to open up a lot kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14181, 13961, 59, 5, 0, 'Have 6 months intern exp but not open for TxxampC more than 1 yr not much good with basics too', 104, '0000-00-00 00:00:00', 1),
(14182, 13942, 59, 5, 0, 'Left With Out Attending The Interview', 104, '0000-00-00 00:00:00', 1),
(14183, 13946, 59, 5, 0, 'Left with out attending the interview', 104, '0000-00-00 00:00:00', 1),
(14184, 13952, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14185, 13955, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14186, 13956, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(14187, 13954, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14188, 13943, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14189, 13958, 97, 5, 0, 'Not Much Good In Prog.Laug....xxampNot Ok With Our TxxampC', 104, '0000-00-00 00:00:00', 1),
(14190, 13949, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14191, 13948, 109, 2, 0, 'Yet to be correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14192, 13743, 59, 5, 0, 'Too long Distance no basics in JS will not sustain in our roles', 104, '0000-00-00 00:00:00', 1),
(14193, 13937, 53, 1, 0, NULL, 59, '2023-07-31 05:45:45', 1),
(14194, 13938, 53, 1, 0, NULL, 59, '2023-07-31 05:46:31', 1),
(14195, 13932, 19, 5, 1, 'Not Fit', 59, '2023-07-31 05:54:50', 1),
(14196, 13936, 53, 7, 0, 'fresher, having telecalling experience, bold and having convincng skill, will try for b2b.', 59, '2023-07-31 05:55:39', 1),
(14197, 13939, 53, 7, 0, 'fresher, having intern experience, very bold, will try for telecalling', 59, '2023-07-31 05:55:54', 1),
(14198, 13935, 59, 3, 0, '\nselected for Sithy Team Consultant Role', 74, '2023-07-31 06:32:22', 1),
(14199, 13934, 59, 3, 0, 'Selected for Sithy Team Consultant ', 74, '2023-07-31 06:38:19', 1),
(14200, 13921, 89, 1, 0, NULL, 59, '2023-07-31 06:52:18', 1),
(14201, 13939, 59, 3, 0, 'Selected for B2B Consultant Role', 53, '2023-08-01 09:38:18', 1),
(14202, 13936, 59, 3, 0, 'Selected for B2Bconsultant Role', 53, '2023-08-01 09:39:37', 1),
(14203, 13967, 59, 5, 0, 'Too long distance will not handle our work roles not suitable updown 80kms', 104, '0000-00-00 00:00:00', 1),
(14204, 13971, 59, 4, 0, '5050 profile career Gap sustainability doubts kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14205, 13933, 59, 2, 0, 'Left with out attending the final round due to emergeny if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14206, 13970, 59, 4, 0, 'have exp in sales calling but no documents for her exp 5050 kindly check and let me knwo your inputs', 104, '0000-00-00 00:00:00', 1),
(14207, 13969, 59, 5, 0, 'No basic skills knowledge need to opena lot', 104, '0000-00-00 00:00:00', 1),
(14208, 13978, 59, 5, 0, 'Career Gap not much good with basics will not sustain if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14209, 13972, 59, 5, 0, 'very slow candidate have system admin exp will not sustain in our roles', 104, '0000-00-00 00:00:00', 1),
(14210, 13971, 19, 5, 1, 'No Need for job', 59, '2023-08-01 07:14:45', 1),
(14211, 13970, 19, 5, 1, 'Reject', 59, '2023-08-01 07:17:38', 1),
(14212, 13933, 59, 2, 0, 'Left With Out Attending The Final Round Due To Emergeny If She Comes Back Let Us Try For Operations', 59, '2023-08-01 07:18:39', 1),
(14213, 13979, 59, 5, 0, 'Need to open a lot will not handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(14214, 13981, 59, 4, 0, 'Have Exp in calling but not a relevant one can give a try for our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14215, 13982, 59, 4, 0, 'Fresher for Calling Internal Team Reference Babu Team Kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14216, 13983, 59, 5, 0, 'Notopen for TxxampC No basics Skills too need to learn a lot', 104, '0000-00-00 00:00:00', 1),
(14217, 13984, 59, 5, 0, 'Searching for Java Opening only not open for other proifles', 104, '0000-00-00 00:00:00', 1),
(14218, 13985, 59, 5, 0, 'No Skills No understanding not suitable for our roles ', 104, '0000-00-00 00:00:00', 1),
(14219, 13986, 59, 5, 0, 'Attitude Issue not open for taking target and also not comfortable in field too not suitable', 104, '0000-00-00 00:00:00', 1),
(14220, 13987, 59, 3, 0, 'Selected for Staff Role GK SIR Team with Cmmitment - In aug 1.5L Life plus 10 MF then Sept onwards 21K Net Salary', 104, '0000-00-00 00:00:00', 1),
(14221, 13988, 59, 4, 0, 'Have Calling Exp Can be trained in our roles Kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14222, 13987, 31, 7, 4, 'Candidate ok please do the further process', 59, '2023-08-03 10:09:07', 1),
(14223, 13982, 19, 5, 1, 'Reject', 59, '2023-08-03 10:15:02', 1),
(14224, 13988, 57, 1, 0, NULL, 59, '2023-08-03 10:16:47', 1),
(14225, 13981, 51, 5, 0, 'Rejected', 59, '2023-08-03 10:18:09', 1),
(14226, 13990, 59, 5, 0, 'Final Round Reject Salary Exp is high being a fresher for our Operations Role will not sustain andhandle our pressure', 104, '0000-00-00 00:00:00', 1),
(14227, 13989, 59, 3, 0, 'Selected for Syed Team in Staff role', 104, '0000-00-00 00:00:00', 1),
(14228, 13991, 59, 5, 0, 'Checked for MIS Roles Written Communication not upto the expectations and sustainability no will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(14229, 13992, 59, 5, 0, 'Not open for Calling uch and not ready to go for field too will not sustain and not suitable no Communication too ', 108, '0000-00-00 00:00:00', 1),
(14230, 13989, 57, 7, 0, 'Selected', 59, '2023-08-03 01:24:55', 1),
(14231, 14000, 97, 5, 0, 'has exp in telecalling ... but sustainbility doubts', 108, '0000-00-00 00:00:00', 1),
(14232, 13997, 97, 5, 0, 'has exp in telecalling... sustainbility doubts....', 108, '0000-00-00 00:00:00', 1),
(14233, 14001, 97, 5, 0, 'need to open a lot ... ', 108, '0000-00-00 00:00:00', 1),
(14234, 13993, 59, 3, 0, 'Selected for IT intern Employment 5 months 6-8K then emplpyment 10-14k 10% increment every year', 104, '0000-00-00 00:00:00', 1),
(14235, 13994, 59, 5, 0, 'Fresher not much comfortable with the TxxampC will not sustain', 104, '0000-00-00 00:00:00', 1),
(14236, 13995, 59, 5, 0, 'Fresher Not Much Comfortable With The TxxampC Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(14237, 13996, 59, 5, 0, 'Fresher Not Much Comfortable With The TxxampC Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(14238, 13999, 97, 7, 0, 'has some exp xxamp knowledge about our products.. communication ok.. Final round interviewed by gokul and selected for Renewals.', 104, '0000-00-00 00:00:00', 1),
(14239, 13998, 59, 5, 0, ' Not Much Comfortable With The TxxampC Will Not Sustain Exp high Salary too', 104, '0000-00-00 00:00:00', 1),
(14240, 14002, 59, 3, 0, '5months intern then 3 yrs employment', 104, '0000-00-00 00:00:00', 1),
(14241, 14003, 97, 4, 0, 'fresher need to train a lot ...kindly check and update your feedback.', 104, '0000-00-00 00:00:00', 1),
(14242, 14004, 97, 4, 0, 'has exp in telecalling .. convincing skill ok ..kindly check and update your feed back..', 104, '0000-00-00 00:00:00', 1),
(14243, 14005, 97, 4, 0, 'Communication ok .... let us try  check and update your feed backs..', 104, '0000-00-00 00:00:00', 1),
(14244, 14006, 97, 5, 0, 'sal expt high...not suit for our role', 104, '0000-00-00 00:00:00', 1),
(14245, 14007, 97, 5, 0, 'Not Much Good In Prog.Laug....xxampNot Ok With Our TxxampC', 104, '0000-00-00 00:00:00', 1),
(14246, 14008, 97, 5, 0, 'Not Much Good In Prog.Laug....xxampNot Ok With Our TxxampC', 104, '0000-00-00 00:00:00', 1),
(14247, 13869, 59, 1, 0, NULL, 109, '2023-08-04 06:23:02', 1),
(14248, 13869, 109, 4, 0, 'Selected in apptitude test', 109, '2023-08-04 06:23:02', 1),
(14249, 13874, 59, 1, 0, NULL, 109, '2023-08-04 06:23:31', 1),
(14250, 13874, 109, 4, 0, 'selected for apptitude test', 109, '2023-08-04 06:23:31', 1),
(14251, 13862, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:24:08', 1),
(14252, 13863, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:24:20', 1),
(14253, 13865, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:24:27', 1),
(14254, 13866, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:24:39', 1),
(14255, 13868, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:24:46', 1),
(14256, 13873, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:24:58', 1),
(14257, 13878, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:25:06', 1),
(14258, 13879, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:25:19', 1),
(14259, 14005, 98, 7, 0, 'RENEWALS OK .KINDLY CHECK THE SUSTAINABLILITY  .OK WILL TRY', 97, '2023-08-05 03:45:17', 1),
(14260, 14003, 89, 1, 0, NULL, 97, '2023-08-05 03:50:05', 1),
(14261, 14018, 97, 4, 0, 'has exp in calling ..let us try kindly check and update  your inputs..', 104, '0000-00-00 00:00:00', 1),
(14262, 14005, 59, 1, 0, NULL, 98, '2023-08-05 04:00:10', 1),
(14263, 14009, 97, 4, 0, 'has 4yrs 6m of exp in telecalling  in part time 50-50 profile ...she plan to do her higher studies too ..kindly check and update your feedback.', 104, '0000-00-00 00:00:00', 1),
(14264, 14010, 97, 5, 0, 'for a time being... looking for job', 104, '0000-00-00 00:00:00', 1),
(14265, 14012, 97, 5, 0, '50 -50 profile . little attitude.. sustainbility doubts..', 104, '0000-00-00 00:00:00', 1),
(14266, 14013, 97, 5, 0, 'She is From Thanjavur...For a time being looking for job  in chennai.', 104, '0000-00-00 00:00:00', 1),
(14267, 14014, 97, 7, 0, 'Has some knowledge in our proudcts... let us try for our role Final round interviewed by gokul and selected for Renewals.', 104, '0000-00-00 00:00:00', 1),
(14268, 14016, 97, 5, 0, 'not much good in prog .lau.. he wants to discuss with his parent ..if he come back let us try', 104, '0000-00-00 00:00:00', 1),
(14269, 14017, 97, 7, 0, 'Has knowledge in prog lau. SNR interviewd by tamilmani and final round interview by gokul ', 104, '0000-00-00 00:00:00', 1),
(14270, 14019, 97, 5, 0, 'not much good in prog.laug....xxampnot ok with our txxampc', 104, '0000-00-00 00:00:00', 1),
(14271, 14020, 97, 4, 0, 'Has 6m of exp in sales.. job need ... kindly check her sustainbility.. xxamp update your inputs...', 104, '0000-00-00 00:00:00', 1),
(14272, 14021, 97, 5, 0, 'not suit for our roles... ', 104, '0000-00-00 00:00:00', 1),
(14273, 14022, 97, 5, 0, 'not open for sales', 104, '0000-00-00 00:00:00', 1),
(14274, 14015, 97, 5, 0, 'purely fresher .. need to train a lot .. Voice is too low .. Job need .. Final round interviewed  xxamp Rejected by gokul ', 104, '0000-00-00 00:00:00', 1),
(14275, 13989, 59, 3, 0, 'Selected for Syed Team in Staff role', 57, '2023-08-07 10:33:11', 1),
(14276, 14025, 59, 5, 0, 'Communication Good Too lon Distance not  open for target based job', 104, '0000-00-00 00:00:00', 1),
(14277, 14026, 59, 5, 0, '5050 Profile for sales left without attending the 2nd level interview', 104, '0000-00-00 00:00:00', 1),
(14278, 14018, 51, 4, 0, 'selected for nxt round', 97, '2023-08-08 07:25:58', 1),
(14279, 14009, 71, 5, 0, 'Not Fit For Sales', 97, '2023-08-08 07:34:55', 1),
(14280, 13999, 59, 1, 0, NULL, 97, '2023-08-08 07:42:48', 1),
(14281, 14017, 59, 1, 0, NULL, 97, '2023-08-08 10:25:04', 1),
(14282, 14044, 59, 2, 0, 'Appeared for Sales but open for IT Given time for learning if he comes back lt us try', 108, '0000-00-00 00:00:00', 1),
(14283, 14014, 59, 1, 0, NULL, 97, '2023-08-08 10:28:42', 1),
(14284, 14004, 19, 5, 1, 'rejected', 97, '2023-08-08 10:55:46', 1),
(14285, 14037, 59, 5, 0, 'Not suitable for our roles will not sustain', 104, '0000-00-00 00:00:00', 1),
(14286, 14036, 59, 3, 0, 'Selected for Operations Team Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14287, 14035, 59, 4, 0, '5050 profile fresher for our sales kindly chekc and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14288, 14030, 59, 4, 0, '5050 Profile have exp in calling but not in relevant one can give a try kindly check and let me kow your inputs', 104, '0000-00-00 00:00:00', 1),
(14289, 14032, 59, 3, 0, 'Interviewed by Gokul final round and selected for React with Intern Emplyment conditions direct reporting to Udhay\n', 104, '0000-00-00 00:00:00', 1),
(14290, 14033, 59, 3, 0, '5months intern then 3 yrs employment - React Profile', 104, '0000-00-00 00:00:00', 1),
(14291, 14034, 59, 5, 0, 'Looking only for Tier level companies with high pay', 104, '0000-00-00 00:00:00', 1),
(14292, 14029, 59, 2, 0, 'Need to come back after learning if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14293, 14027, 59, 4, 0, 'Have Exp in sales but not a relevant one can give a try kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14294, 14038, 59, 5, 0, 'looking for non voice', 104, '0000-00-00 00:00:00', 1),
(14295, 14039, 59, 5, 0, 'Candidate need time to confirm on TxxampC', 104, '0000-00-00 00:00:00', 1),
(14296, 14046, 59, 4, 0, '5050 Profile sounding need to check kindly check and let me kow your inputs', 85, '0000-00-00 00:00:00', 1),
(14297, 14040, 59, 4, 0, 'internal Reference not suitable for our roles kindly check once and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14298, 14041, 74, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14299, 14042, 74, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14300, 14043, 74, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14301, 14020, 102, 7, 0, 'Shortlist for team ', 97, '2023-08-08 11:20:04', 1),
(14302, 14045, 59, 5, 0, 'Looking only for the salary not much comfort in Sales calling Holding Offer with 2 companies and looking for something more will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14303, 14048, 59, 5, 0, 'Preferred to work in non voice but no communication not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(14304, 14049, 59, 5, 0, 'Too long Distance Looking only for Senior level Profile no Relevant Exp will not sustain in our sales not suitable', 104, '0000-00-00 00:00:00', 1),
(14305, 14050, 59, 5, 0, 'for time being looking for Job Not much importance towards the jobs planning to go with own venture will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14306, 14051, 59, 5, 0, 'Not open for TxxampC No proper focus in the Career will not sustain and not suitbale', 104, '0000-00-00 00:00:00', 1),
(14307, 14052, 59, 4, 0, '5050 Profile have interest towards IT but not on coding open for other positions too kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14308, 14047, 59, 2, 0, 'Selected for Mutual fund Interviewed by Gokul and max we can offer till 2.3 LPA', 104, '0000-00-00 00:00:00', 1),
(14309, 14052, 98, 1, 0, NULL, 59, '2023-08-08 06:48:36', 1),
(14310, 14027, 31, 1, 0, NULL, 59, '2023-08-08 06:50:42', 1),
(14311, 14033, 59, 3, 0, '5months intern then 3 yrs employment - React Profile', 59, '2023-08-08 06:52:12', 1),
(14312, 14020, 60, 1, 0, NULL, 102, '2023-08-08 07:08:33', 1),
(14313, 14046, 105, 5, 0, 'DUE TO SHExquotS  NOT PROPERLY ANSWERED ALSO VOICE IS VERY LOW', 59, '2023-08-08 07:09:07', 1),
(14314, 14030, 44, 1, 0, NULL, 59, '2023-08-08 07:10:33', 1),
(14315, 14035, 102, 5, 0, 'Not Suitable Sales ', 59, '2023-08-08 07:17:01', 1),
(14316, 14040, 51, 5, 0, 'Rejected', 59, '2023-08-08 07:19:48', 1),
(14317, 14018, 29, 7, 2, 'sarath team, 20k net, in aug complet 1 lac and 5k sip increase to 22k from sept 23', 51, '2023-08-09 10:01:23', 1),
(14318, 14018, 59, 3, 0, 'Selected for Sarath Team with Commitment given by Gaurav sir', 29, '2023-08-09 10:24:11', 1),
(14319, 14056, 59, 5, 0, 'No sustainability will not handle the work pressure seems to give false information not suitable', 108, '0000-00-00 00:00:00', 1),
(14320, 14060, 59, 5, 0, 'Looking for non voice not interested on the jobs will not sustain', 108, '0000-00-00 00:00:00', 1),
(14321, 14059, 59, 5, 0, 'Looking For Accounts but no basics skills in that  Not Interested On The Jobs Will Not Sustain', 108, '0000-00-00 00:00:00', 1),
(14322, 14057, 59, 3, 0, 'Selected for Charles Team Consultant Role', 108, '0000-00-00 00:00:00', 1),
(14323, 14063, 59, 5, 0, 'Left without attending the interview', 108, '0000-00-00 00:00:00', 1),
(14324, 14053, 59, 5, 0, 'Looking only for Java', 108, '0000-00-00 00:00:00', 1),
(14325, 14054, 59, 2, 0, 'Need Time to Learn if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(14326, 14055, 59, 5, 0, 'No basics not much ok with TxxampC if he comes back let us try family settled in Saudi\n', 108, '0000-00-00 00:00:00', 1),
(14327, 14065, 59, 5, 0, 'Looking for high CTC already holding several offers for 4LPA 3LPA', 108, '0000-00-00 00:00:00', 1),
(14328, 14064, 59, 2, 0, 'Need time to confirm his availability may relocate to avadi', 108, '0000-00-00 00:00:00', 1),
(14329, 14066, 59, 5, 0, 'Too long Disance will not relocate sustainability dounts', 108, '0000-00-00 00:00:00', 1),
(14330, 14067, 59, 5, 0, 'to long Distance Sister in node will not relocate not comfrt in TxxampC', 108, '0000-00-00 00:00:00', 1),
(14331, 14058, 59, 5, 0, 'Will not sustain marriage fixed will not run in a long', 108, '0000-00-00 00:00:00', 1),
(14332, 14057, 102, 7, 0, 'Shortlist for team ', 59, '2023-08-09 07:23:00', 1),
(14333, 14057, 59, 3, 0, 'Selected for Charles Team Consultant Role', 102, '2023-08-10 11:15:56', 1),
(14334, 14080, 59, 5, 0, 'Not open for TxxampC', 104, '0000-00-00 00:00:00', 1),
(14335, 14071, 59, 5, 0, 'Left without attending', 104, '0000-00-00 00:00:00', 1),
(14336, 14079, 59, 5, 0, 'Attitude will not sustain not suitbale', 104, '0000-00-00 00:00:00', 1),
(14337, 14077, 59, 5, 0, 'he is medically unstable will not sustain', 104, '0000-00-00 00:00:00', 1),
(14338, 14076, 59, 5, 0, 'Need tp come after learning', 104, '0000-00-00 00:00:00', 1),
(14339, 14074, 59, 5, 0, 'Looking for non voice only', 104, '0000-00-00 00:00:00', 1),
(14340, 13974, 59, 5, 0, 'Need time to confirm on TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14341, 14072, 59, 5, 0, 'Salary Exp is very high will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14342, 13973, 59, 5, 0, 'Not much comfort in Bond', 104, '0000-00-00 00:00:00', 1),
(14343, 14069, 59, 4, 0, 'Much Preferred non voice but internal reference kindly check', 104, '0000-00-00 00:00:00', 1),
(14344, 14070, 59, 5, 0, 'Looking for Accounts and for Voice not mcuh comfort', 104, '0000-00-00 00:00:00', 1),
(14345, 14078, 59, 4, 0, '5050 Profile have exp in calling internal team reference kindly chek and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14346, 14069, 53, 1, 0, NULL, 59, '2023-08-10 07:36:29', 1),
(14347, 14078, 29, 1, 0, NULL, 59, '2023-08-10 07:42:20', 1),
(14348, 14091, 59, 5, 0, 'No basic skills will not sustain in our roles not much comfrt in TxxampC', 108, '0000-00-00 00:00:00', 1),
(14349, 14095, 59, 5, 0, 'Communication Good Have Expin Backend operations but the sustainability doubts checked with Gokul sir and rejected the profile', 108, '0000-00-00 00:00:00', 1),
(14350, 14092, 59, 5, 0, 'Too long Distance  not open to relocate will not sustain', 108, '0000-00-00 00:00:00', 1),
(14351, 14093, 59, 5, 0, 'Not open for TxxampC will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(14352, 14088, 59, 5, 0, 'Fresher for our domain have exp in core but the salary exp is very high min 3LPA', 108, '0000-00-00 00:00:00', 1),
(14353, 14090, 59, 4, 0, 'Fresher communication Ok Sustainability doubts she was into  Dance and wall painting need to check her sustainability kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14354, 14094, 59, 5, 0, 'Looking only for Java Developer Role', 108, '0000-00-00 00:00:00', 1),
(14355, 14089, 59, 4, 0, '5050 Profile Have a week exp in  calling kindly check and  let us know ', 108, '0000-00-00 00:00:00', 1),
(14356, 14086, 59, 4, 0, '5050 Profile Have A Week Exp In  Calling Kindly Check And  Let Us Know ', 108, '0000-00-00 00:00:00', 1),
(14357, 14085, 59, 3, 0, 'Selected for shanmugam sir Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(14358, 14084, 59, 5, 0, 'No ideas in skills not open up will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(14359, 14083, 59, 5, 0, 'No ideas in Javascript need time to learn if she comes back after learning need to check', 108, '0000-00-00 00:00:00', 1),
(14360, 14087, 59, 5, 0, 'Married Long career Gap will not sustain and handle the work pressure ', 108, '0000-00-00 00:00:00', 1),
(14361, 14097, 107, 7, 0, 'Good communication...Fit for our role..final round interviewed by gokul...selected for hR internship', 108, '0000-00-00 00:00:00', 1),
(14362, 14098, 107, 5, 0, 'Not knowing Basics....Will not sustain', 108, '0000-00-00 00:00:00', 1),
(14363, 14099, 107, 5, 0, 'fresher..Not opening up...poor communication skills', 108, '0000-00-00 00:00:00', 1),
(14364, 14100, 107, 4, 0, 'good communication...Good convincing skills...Not relevant experience', 108, '0000-00-00 00:00:00', 1),
(14365, 14102, 107, 5, 0, 'Not active...Career gap...Not suitable for our role ', 108, '0000-00-00 00:00:00', 1),
(14366, 14101, 107, 5, 0, 'good communication...career gap of 6 years...will not sustain in the long run', 108, '0000-00-00 00:00:00', 1),
(14367, 14090, 53, 1, 0, NULL, 59, '2023-08-12 05:01:20', 1),
(14368, 14089, 53, 1, 0, NULL, 59, '2023-08-12 05:13:59', 1),
(14369, 14086, 53, 1, 0, NULL, 59, '2023-08-12 05:14:22', 1),
(14370, 14085, 44, 7, 4, 'Candidate ok please do the further process', 59, '2023-08-12 05:32:31', 1),
(14371, 14103, 97, 5, 0, 'over attitude.. holding offer 3lpa', 108, '0000-00-00 00:00:00', 1),
(14372, 14104, 97, 5, 0, 'verbal comm..good... has exp in freelancing...written ok ...', 108, '0000-00-00 00:00:00', 1),
(14373, 14100, 44, 1, 0, NULL, 107, '2023-08-12 06:14:55', 1),
(14374, 14097, 59, 3, 0, 'Selected for Recruitment intern 1st month free then based onthe performance will pay and we may onboard after 3 months', 107, '2023-08-12 06:25:39', 1),
(14375, 14110, 59, 5, 0, 'Not Good with the JS basics not much comfort in TxxampC  Came as a group and sustainability doubts', 85, '0000-00-00 00:00:00', 1),
(14376, 14111, 59, 5, 0, 'Not Good With The JS Basics Not Much Comfort In TxxampC  Came As A Group And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(14377, 14108, 59, 5, 0, 'Not Good With The JS Basics Not Much Comfort In TxxampC  Came As A Group And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(14378, 14107, 59, 5, 0, 'Not Good With The JS Basics Not Much Comfort In TxxampC  Came As A Group And Sustainability Doubts looking  much for AWS', 85, '0000-00-00 00:00:00', 1),
(14379, 14109, 59, 5, 0, 'Left without attending', 85, '0000-00-00 00:00:00', 1),
(14380, 14106, 59, 5, 0, 'Not Good With The JS Basics Not Much Comfort In TxxampC  Came As A Group And Sustainability Doubts if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(14381, 14085, 60, 1, 0, NULL, 44, '2023-08-16 10:23:44', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(14382, 13987, 60, 1, 0, NULL, 31, '2023-08-16 10:26:32', 1),
(14383, 14124, 74, 5, 0, 'expected high and not profile not fit for sales', 108, '0000-00-00 00:00:00', 1),
(14384, 14122, 74, 5, 0, 'not fit for telesales', 108, '0000-00-00 00:00:00', 1),
(14385, 14114, 74, 5, 0, 'to long gap and not fit for team and sales', 108, '0000-00-00 00:00:00', 1),
(14386, 14126, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(14387, 14125, 59, 5, 0, 'Too long Distance Very slow will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14388, 14127, 59, 5, 0, 'No Sustainability looking only for Salary will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14389, 14119, 59, 4, 0, 'Not much good profile internal team reference kindly check and let me knwo your inputs', 104, '0000-00-00 00:00:00', 1),
(14390, 14118, 59, 5, 0, 'Not so good wiht the basics in Digital MArketing  not open for long Run and focus only in the salary', 104, '0000-00-00 00:00:00', 1),
(14391, 14117, 59, 5, 0, 'Communication Ok Can be trained in our roles but too long distance up and down 80kms will not sustain', 104, '0000-00-00 00:00:00', 1),
(14392, 14126, 57, 7, 0, 'Ok for DM profile Can give a try', 59, '2023-08-16 07:18:16', 1),
(14393, 14119, 57, 1, 0, NULL, 59, '2023-08-16 07:25:29', 1),
(14394, 14126, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 57, '2023-08-17 10:04:15', 1),
(14395, 14135, 59, 5, 0, 'Left Without Attending The Interview', 108, '0000-00-00 00:00:00', 1),
(14396, 14151, 59, 5, 0, 'Left without attending the interview', 108, '0000-00-00 00:00:00', 1),
(14397, 14145, 59, 5, 0, 'Looking for Testing Role only slight ok for sales if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14398, 14152, 59, 5, 0, 'Left Without Attending The Interview', 108, '0000-00-00 00:00:00', 1),
(14399, 14147, 59, 2, 0, 'Communication Ok Have Exp in Sales bit Attitude Sustainability doubts in our roles need to check based on the manager availability', 108, '0000-00-00 00:00:00', 1),
(14400, 14143, 59, 5, 0, 'Left Without Attending The Interview', 104, '0000-00-00 00:00:00', 1),
(14401, 14134, 59, 5, 0, 'very slow no sustainability in his previous exp will not handle the pressure', 104, '0000-00-00 00:00:00', 1),
(14402, 14142, 59, 5, 0, 'Have Exp in calling Communication Ok can be trained in our roles asked her to come after lunch but she didnt', 108, '0000-00-00 00:00:00', 1),
(14403, 14141, 59, 5, 0, 'Looking only for Python and not open fr TxxampC settled family and not much importance on the job', 104, '0000-00-00 00:00:00', 1),
(14404, 14128, 59, 4, 0, '5050 Profile Seems not much active but have 2 yrs exp in calling kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14405, 14136, 59, 5, 0, 'Lookin for non voice need to open a lot will not sustain', 104, '0000-00-00 00:00:00', 1),
(14406, 14139, 59, 2, 0, 'communication Ok But need to check for Operations will check with Gokul and confirm the profiles', 108, '0000-00-00 00:00:00', 1),
(14407, 14132, 59, 5, 0, 'Not Open For TxxampC Too Long Distance Will Not Sustain Came Along Wiht The Friends Not Good In Basics', 104, '0000-00-00 00:00:00', 1),
(14408, 14133, 59, 5, 0, 'Not Open For TxxampC Too Long Distance Will Not Sustain Came Along Wiht The Friends Not Good In Basics', 104, '0000-00-00 00:00:00', 1),
(14409, 14130, 59, 5, 0, 'Not open for TxxampC too long Distance will not sustain came along wiht the friends not good in basics', 104, '0000-00-00 00:00:00', 1),
(14410, 14140, 59, 5, 0, 'Communication Sounding is not good will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14411, 14149, 59, 5, 0, 'Much focus on non voice internal reference from Banu team not suitable for our roles ', 104, '0000-00-00 00:00:00', 1),
(14412, 14148, 59, 5, 0, 'Very high Exp he had an offer with Honeywell for 8.4LPA due to recession it was dropped and he was expecting something similar\n', 104, '0000-00-00 00:00:00', 1),
(14413, 14138, 109, 5, 0, 'Failed in Aptitude', 104, '0000-00-00 00:00:00', 1),
(14414, 14137, 109, 5, 0, 'Failed in Apptitude', 104, '0000-00-00 00:00:00', 1),
(14415, 14150, 59, 5, 0, 'Sounding Low too long Distance Need to come back with his confirmation on TxxampC', 104, '0000-00-00 00:00:00', 1),
(14416, 14128, 44, 1, 0, NULL, 59, '2023-08-17 07:15:14', 1),
(14417, 14160, 59, 5, 0, 'Fresher no basics skills will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14418, 14163, 59, 5, 0, 'Fresher not much comfrt in TxxampC will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14419, 14157, 59, 5, 0, 'Hearning issue understanding pooor will not sustain and not suitable ', 104, '0000-00-00 00:00:00', 1),
(14420, 14164, 59, 2, 0, 'Need To Come Back With His Confirmation Open For Non IT Positions Discussed For Our Operations Need To Come Back With Her Confirmation ', 104, '0000-00-00 00:00:00', 1),
(14421, 14162, 59, 5, 0, 'No local language only telugu Fresher need to learn a lot need confirmation on TxxampC if he come back let us try', 104, '0000-00-00 00:00:00', 1),
(14422, 14165, 59, 2, 0, 'Need to come back with his confirmation open for non IT positions discussed for our operations need to come back with her confirmation ', 104, '0000-00-00 00:00:00', 1),
(14423, 14161, 59, 4, 0, 'Have basics skill in MySQL open for PHP learning open for TxxampC kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14424, 14167, 59, 5, 0, 'Too long Distance Will relocate to mylapre after 3 months if he comes at that time let us check last year 2022 alos he attended', 104, '0000-00-00 00:00:00', 1),
(14425, 14166, 59, 2, 0, 'Given Task for UI UX long back attended interview fresher at the time now exp in front end with the pay 25K', 104, '0000-00-00 00:00:00', 1),
(14426, 14161, 27, 1, 0, NULL, 59, '2023-08-18 07:05:57', 1),
(14427, 14154, 59, 5, 0, 'Left without attending\n', 85, '0000-00-00 00:00:00', 1),
(14428, 14171, 59, 4, 0, '5050 Profile LLB graduate not  intetsted in that sustainanbility doubts kindly check and let me know your interst', 108, '0000-00-00 00:00:00', 1),
(14429, 14188, 59, 5, 0, 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14430, 14187, 59, 5, 0, 'too long Distance will not sustain and not suitabe', 104, '0000-00-00 00:00:00', 1),
(14431, 14185, 59, 5, 0, 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14432, 14183, 59, 5, 0, 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14433, 14184, 59, 5, 0, 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14434, 14180, 59, 3, 0, 'Selected for Charles Team Staff Role', 104, '0000-00-00 00:00:00', 1),
(14435, 14182, 59, 5, 0, 'Not open for target based job', 104, '0000-00-00 00:00:00', 1),
(14436, 14181, 59, 5, 0, 'Communication Good age 33yrs Pressure handling doubts will not sustain', 104, '0000-00-00 00:00:00', 1),
(14437, 14179, 59, 2, 0, 'HR Intern Exp Stipend pay one year class to go', 104, '0000-00-00 00:00:00', 1),
(14438, 14177, 59, 5, 0, 'Much preferred for Non Voice will not sustain his friends got selected in DM roles', 104, '0000-00-00 00:00:00', 1),
(14439, 14176, 59, 5, 0, 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14440, 14175, 59, 5, 0, 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14441, 14174, 59, 5, 0, 'need time to confirm on the TxxampC not much strong in basics if he comes back after learning let us try', 104, '0000-00-00 00:00:00', 1),
(14442, 14173, 59, 5, 0, 'Have Exposure in data analysis and sustainability doubts in our roles His Exp is high\n', 104, '0000-00-00 00:00:00', 1),
(14443, 14178, 59, 3, 0, 'Selected for Charles tEam Staff Role', 104, '0000-00-00 00:00:00', 1),
(14444, 14158, 59, 3, 0, 'Selected for Syed Team in Staff ROle', 104, '0000-00-00 00:00:00', 1),
(14445, 14158, 57, 4, 0, 'Candidate is ok, Please confirm the joing', 59, '2023-08-19 05:35:32', 1),
(14446, 14178, 102, 7, 0, 'Shortlist for team ', 59, '2023-08-19 05:37:24', 1),
(14447, 14180, 102, 7, 0, 'Shortlist For Team ', 59, '2023-08-19 05:38:43', 1),
(14448, 14171, 19, 5, 1, 'not intrest in sales', 59, '2023-08-19 05:41:39', 1),
(14449, 14178, 60, 1, 0, NULL, 102, '2023-08-19 05:41:52', 1),
(14450, 14180, 60, 1, 0, NULL, 102, '2023-08-19 05:42:06', 1),
(14451, 14208, 59, 5, 0, 'Duplicate Profile', 108, '0000-00-00 00:00:00', 1),
(14452, 14186, 59, 5, 0, 'Mentioned Exp having attitude too scheduled him for the 2nd level but left without attending', 108, '0000-00-00 00:00:00', 1),
(14453, 14155, 59, 5, 0, 'Not suitable for Callings will not sustain and handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14454, 14156, 59, 5, 0, 'Looking only for Operations 6 months Exp in  Kotak with 4LPA not open much to come down will not sustain', 104, '0000-00-00 00:00:00', 1),
(14455, 14198, 59, 5, 0, 'Checked for Mutual Fund Final Round with Sarath and based on his input got rejected', 104, '0000-00-00 00:00:00', 1),
(14456, 14200, 59, 3, 0, 'Selected for Kannan Team in Staff Role\n', 104, '0000-00-00 00:00:00', 1),
(14457, 14192, 59, 3, 0, 'Selected for Renewals have exp in collections calling and a career Gap she has good in communication.Need to share her exp documents', 104, '0000-00-00 00:00:00', 1),
(14458, 14191, 59, 4, 0, '5050 Profile have Calling Exp but in native open to relocate can give a try kindly check and let me know your inputs sir check for shanmugam sir as he is not available', 104, '0000-00-00 00:00:00', 1),
(14459, 14199, 59, 5, 0, 'Attitude Candidate Too long Distance having lot of personal issue will not focus in the work and also sustainability doubts asked him to come for 2nnd round post lunch but he left', 104, '0000-00-00 00:00:00', 1),
(14460, 14189, 59, 5, 0, 'Moved for 2nd level with Kannan,but left wothout attending the interview ', 104, '0000-00-00 00:00:00', 1),
(14461, 14212, 59, 5, 0, 'Attitude candidate mentioned exp relevant to us but no documents and the information what he give is not getting matched with the resume seems to be fake not suitable for our process and will not sustain', 104, '0000-00-00 00:00:00', 1),
(14462, 14205, 59, 5, 0, 'Not much confort in TxxampC Need to learn a lot if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14463, 14206, 59, 5, 0, 'evry 6 months Job changes will not sustain and will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14464, 14201, 59, 4, 0, 'Internal Reference Long career Gap fresher not much suitable 2nd round interviewed by santhosh in your absence kindly check', 104, '0000-00-00 00:00:00', 1),
(14465, 14196, 59, 5, 0, 'Not open for Field Sales Checked for Backend operations but not a quality for that and salary also high for backend', 104, '0000-00-00 00:00:00', 1),
(14466, 14207, 59, 5, 0, 'Will not sustain Frequent job changes will not sustain not a good quality profile', 104, '0000-00-00 00:00:00', 1),
(14467, 14158, 59, 3, 0, 'Selected for Syed Team in Staff ROle', 57, '2023-08-21 05:18:12', 1),
(14468, 14131, 56, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14469, 14203, 59, 5, 0, 'Left Without Attending', 104, '0000-00-00 00:00:00', 1),
(14470, 14194, 59, 5, 0, 'Left without attending', 104, '0000-00-00 00:00:00', 1),
(14471, 14201, 86, 5, 0, 'Not Satisfied', 59, '2023-08-22 10:03:33', 1),
(14472, 14200, 19, 7, 5, 'Good confidence Level', 59, '2023-08-22 10:19:20', 1),
(14473, 14191, 31, 1, 0, NULL, 59, '2023-08-22 10:22:13', 1),
(14474, 14200, 59, 3, 0, 'Selected for Kannan Team in Staff Role\n', 19, '2023-08-22 01:09:38', 1),
(14475, 14234, 59, 5, 0, 'Looking For Non Voice', 104, '0000-00-00 00:00:00', 1),
(14476, 14215, 59, 5, 0, 'Not open for Field Communication no not suitable', 104, '0000-00-00 00:00:00', 1),
(14477, 14230, 59, 5, 0, 'Looking For Non Voice', 104, '0000-00-00 00:00:00', 1),
(14478, 14219, 59, 5, 0, 'Will not sustain not suitable up and down 40kms', 104, '0000-00-00 00:00:00', 1),
(14479, 14222, 59, 5, 0, 'Looking for non voice', 104, '0000-00-00 00:00:00', 1),
(14480, 14226, 59, 5, 0, 'Looking for non voice process ', 104, '0000-00-00 00:00:00', 1),
(14481, 14220, 59, 5, 0, 'Too long Distance will not sustain\n', 104, '0000-00-00 00:00:00', 1),
(14482, 14195, 59, 3, 0, 'Selected for Gopi Team in Consultant role', 104, '0000-00-00 00:00:00', 1),
(14483, 14221, 59, 3, 0, 'SElected for Kannan Team Stff Role', 104, '0000-00-00 00:00:00', 1),
(14484, 14225, 59, 4, 0, 'Fresher for our roles can be trained in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14485, 14214, 59, 2, 0, 'Selected for Operations team  for 1.8LPA', 104, '0000-00-00 00:00:00', 1),
(14486, 14204, 59, 3, 0, 'Selected for GK Sir Team\nin consultant Role', 104, '0000-00-00 00:00:00', 1),
(14487, 14217, 59, 3, 0, 'Selected for Shanmugam Team in ConsultantRole', 104, '0000-00-00 00:00:00', 1),
(14488, 14223, 59, 5, 0, 'Will Not Sustain And Not Suitable For Our Roles', 104, '0000-00-00 00:00:00', 1),
(14489, 14224, 59, 5, 0, 'Will not sustain and not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(14490, 14209, 59, 5, 0, 'Left without attending', 104, '0000-00-00 00:00:00', 1),
(14491, 14229, 59, 5, 0, 'Left without attending', 104, '0000-00-00 00:00:00', 1),
(14492, 14213, 59, 5, 0, 'Not Open For TxxampC No Basic Skills\n', 104, '0000-00-00 00:00:00', 1),
(14493, 14218, 59, 5, 0, 'Not open for TxxampC no basic skills\n', 104, '0000-00-00 00:00:00', 1),
(14494, 14231, 59, 5, 0, 'Not Open For TxxampC No Basic Skills\n', 104, '0000-00-00 00:00:00', 1),
(14495, 14204, 29, 7, 3, 'gk team, have approved 15k salary, in 90 days , if completed 3 lac life ( 1 Lac Ave ) xxamp 25 appts we can increase salary to 20k net post confirmation ', 59, '2023-08-22 07:49:08', 1),
(14496, 14195, 105, 7, 0, 'Selected for my team', 59, '2023-08-22 07:50:30', 1),
(14497, 14225, 19, 5, 1, 'low', 59, '2023-08-22 07:54:56', 1),
(14498, 14217, 29, 7, 3, 'shanmugam Team, Have Approved 15k Salary, In 90 Days , If Completed 3 Lac Life ( 1 Lac Ave ) xxamp 25 Appts We Can Increase Salary To 20k Net Post Confirmation ', 59, '2023-08-22 07:55:37', 1),
(14499, 14221, 19, 7, 4, 'Selected', 59, '2023-08-22 08:05:29', 1),
(14500, 14238, 59, 3, 0, 'Selected for Syed Team Consultant tole', 101, '0000-00-00 00:00:00', 1),
(14501, 14237, 59, 5, 0, 'Fresher for our roles will not handle our work roles not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(14502, 14251, 59, 5, 0, 'Not Open For Sales Much Will Not Sustain Not Suitable', 108, '0000-00-00 00:00:00', 1),
(14503, 14247, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14504, 14248, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14505, 14253, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14506, 14228, 59, 5, 0, 'Very High CTC Holding Several offers will not sustain in our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(14507, 14239, 59, 5, 0, 'Looking only for AR caller based profiles', 108, '0000-00-00 00:00:00', 1),
(14508, 14240, 59, 5, 0, 'Looking for non voice only not suitable', 108, '0000-00-00 00:00:00', 1),
(14509, 14246, 59, 5, 0, 'Looking For Non Voice Only Not Suitable', 108, '0000-00-00 00:00:00', 1),
(14510, 14241, 59, 5, 0, 'Not open for Sales much will not sustain not suitable', 108, '0000-00-00 00:00:00', 1),
(14511, 14245, 59, 5, 0, 'Not Open For Sales Much Will Not Sustain Not Suitable', 108, '0000-00-00 00:00:00', 1),
(14512, 14243, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14513, 14242, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14514, 14244, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14515, 14233, 59, 5, 0, 'Not much preferred to work in target will not sustain and handle our work pressure ', 108, '0000-00-00 00:00:00', 1),
(14516, 14249, 59, 3, 0, 'Selected for Staff Role Santhosh Team', 108, '0000-00-00 00:00:00', 1),
(14517, 14252, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14518, 14204, 59, 3, 0, 'Selected for GK Sir Team\nin consultant Role', 29, '2023-08-23 05:20:40', 1),
(14519, 14217, 59, 3, 0, 'Selected for Shanmugam Team in ConsultantRole', 29, '2023-08-23 05:21:30', 1),
(14520, 14195, 59, 3, 0, 'Selected for Gopi Team in Consultant role', 105, '2023-08-24 10:11:59', 1),
(14521, 14255, 59, 4, 0, 'Fresher can be trained kindly chekc and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(14522, 14261, 59, 4, 0, '5050 Profile Sustainability doubt but half mind on this profile kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(14523, 14260, 59, 5, 0, 'Will not sustain fresher for our roles not suitable', 104, '0000-00-00 00:00:00', 1),
(14524, 14256, 59, 5, 0, 'Looking for non voice process', 104, '0000-00-00 00:00:00', 1),
(14525, 14258, 59, 5, 0, 'No basics not open for TxxampC will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14526, 14259, 59, 5, 0, 'Not much Quality will not  sustain in our role not suitable', 104, '0000-00-00 00:00:00', 1),
(14527, 14250, 59, 5, 0, 'Not suitable for our roles will not sustain and handle our pressure', 104, '0000-00-00 00:00:00', 1),
(14528, 14262, 59, 3, 0, 'Selected for Charles Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14529, 14267, 59, 5, 0, 'Fresher for our roles have exp in non voice night shift and salary exp is min27 and not ready to come down', 104, '0000-00-00 00:00:00', 1),
(14530, 14257, 59, 5, 0, 'Looking for non voice only\n', 104, '0000-00-00 00:00:00', 1),
(14531, 14255, 53, 1, 0, NULL, 59, '2023-08-24 08:43:00', 1),
(14532, 14261, 105, 5, 0, 'Rejected Due To Pronunsation Issue', 59, '2023-08-25 01:52:54', 1),
(14533, 14263, 97, 5, 0, 'Worked As A HR Executive Past Few Months ... Ready To Work As Telecaller But Long Run Doubts', 104, '0000-00-00 00:00:00', 1),
(14534, 14264, 97, 5, 0, 'Focusing on python developer ...for a time being looking job ', 104, '0000-00-00 00:00:00', 1),
(14535, 14265, 97, 5, 0, 'For a time being looking job in nON-IT... ', 104, '0000-00-00 00:00:00', 1),
(14536, 14273, 97, 5, 0, 'Holding offer 33k in non -it... but looking for IT not much good in prog.lau.... will not sustain in our role', 104, '0000-00-00 00:00:00', 1),
(14537, 14266, 97, 5, 0, 'Worked as a HR Executive past few months ... ready to work as telecaller but long run doubts', 104, '0000-00-00 00:00:00', 1),
(14538, 14272, 97, 5, 0, 'focusing on IT... For a time being looking for job ', 104, '0000-00-00 00:00:00', 1),
(14539, 14271, 97, 5, 0, 'childish behavior... voice too low...', 104, '0000-00-00 00:00:00', 1),
(14540, 14270, 97, 5, 0, 'No stability ... sustainbilityxxamp Pressure handling \n doubts', 104, '0000-00-00 00:00:00', 1),
(14541, 14269, 97, 5, 0, 'Seems like no job need...Not suit for role sustainbility  xxamp pressure handling Doubts..  ', 104, '0000-00-00 00:00:00', 1),
(14542, 14268, 97, 4, 0, '50-50 profile has calling xxamp Field exp one yr ... pronunciation problem kindly check and update your feedback', 104, '0000-00-00 00:00:00', 1),
(14543, 14274, 97, 5, 0, 'commu . good ..... pressure handling doubts...not openUP for sales', 104, '0000-00-00 00:00:00', 1),
(14544, 14275, 97, 5, 0, 'not much Knowledege in MF ...', 104, '0000-00-00 00:00:00', 1),
(14545, 14276, 97, 5, 0, 'Frequent job changes xxamp sal expt high', 104, '0000-00-00 00:00:00', 1),
(14546, 14268, 105, 5, 0, 'Pronunciation issue also health issue sustain problem', 97, '2023-08-25 06:17:43', 1),
(14547, 14172, 97, 5, 0, 'Frequent job changes...will not suit for our roles', 108, '0000-00-00 00:00:00', 1),
(14548, 14282, 59, 5, 0, 'Not open for TxxampC if he come back after learning let us try', 108, '0000-00-00 00:00:00', 1),
(14549, 14285, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14550, 14286, 59, 3, 0, 'Selected for Intern Employment Node Uday Team', 108, '0000-00-00 00:00:00', 1),
(14551, 14289, 97, 5, 0, 'not suit for our role', 108, '0000-00-00 00:00:00', 1),
(14552, 14291, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14553, 14292, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14554, 14293, 59, 5, 0, 'Not open for TxxampC holding several offers will not sustain', 108, '0000-00-00 00:00:00', 1),
(14555, 14294, 97, 5, 0, 'Sustainability doubts .', 108, '0000-00-00 00:00:00', 1),
(14556, 14295, 97, 5, 0, 'Attitude issue.. will not suit for our role..', 108, '0000-00-00 00:00:00', 1),
(14557, 14262, 60, 1, 0, NULL, 102, '2023-08-26 05:40:47', 1),
(14558, 14221, 59, 3, 0, 'SElected for Kannan Team Stff Role', 19, '2023-08-26 05:58:15', 1),
(14559, 14238, 57, 7, 0, 'Quality wise good,communication and product ok ', 59, '2023-08-28 09:55:07', 1),
(14560, 14238, 59, 3, 0, 'Selected for Syed Team Consultant tole', 57, '2023-08-28 10:01:23', 1),
(14561, 14300, 59, 4, 0, '5050 profile Sustainability seems to be doubt in our roles need to check from your end kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14562, 14297, 59, 2, 0, 'Communication Ok But need to be trained in our roles fresher 5050 need to check with Gokul for operations', 101, '0000-00-00 00:00:00', 1),
(14563, 14301, 59, 5, 0, 'Attitude Will not sustain in our roles not suitable holding an offer for 5.8 LPA', 104, '0000-00-00 00:00:00', 1),
(14564, 14302, 59, 3, 0, 'Selected for Manikandan Team in Staff ROle   Good In Communication Can Be Trained In Our Roles Have Exp In Calling Kindly Check Andlet Me Know Your Inputs', 104, '0000-00-00 00:00:00', 1),
(14565, 14300, 44, 1, 0, NULL, 59, '2023-08-28 07:38:06', 1),
(14566, 14302, 18, 7, 0, 'Asking 4.8L CTC Can give as Mani RM count is less and the candidate quality is good and his overall interview perfomance was good and immed Joiner', 59, '2023-08-28 07:39:48', 1),
(14567, 14249, 18, 7, 0, 'Need to Negotiate Salary Selected for Santosh team and need to filter in 1st week', 59, '2023-08-29 10:12:57', 1),
(14568, 14309, 74, 5, 0, 'not fit for team and no exposure and no pressure handling', 85, '0000-00-00 00:00:00', 1),
(14569, 14308, 59, 2, 0, 'Communicaiton Average Sustainability Ok Should check with Gokul and confirm for operations\n', 108, '0000-00-00 00:00:00', 1),
(14570, 14307, 59, 5, 0, 'should come after learning', 104, '0000-00-00 00:00:00', 1),
(14571, 14306, 59, 3, 0, 'Selected for Kannan Team in Staff role', 104, '0000-00-00 00:00:00', 1),
(14572, 14310, 59, 2, 0, 'Shouldcome for Operations Thurday have exp in operation can be trained in our roles ', 104, '0000-00-00 00:00:00', 1),
(14573, 14311, 59, 5, 0, 'Need to come back woth his confirmation if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14574, 14169, 59, 5, 0, 'Open for operation Last drwan CTC 3.7LPA just 11 months exp not ready to come down the package', 85, '0000-00-00 00:00:00', 1),
(14575, 14306, 19, 7, 4, 'Selected', 59, '2023-08-29 07:15:52', 1),
(14576, 14303, 59, 2, 0, 'Should come for F2F thursay with Gokul for Operation role can be trained in our roles', 85, '0000-00-00 00:00:00', 1),
(14577, 14304, 59, 4, 0, '5050 Prfle have exp in calling kindly chekc an delt meknow your inputs', 85, '0000-00-00 00:00:00', 1),
(14578, 14304, 19, 5, 1, 'Not fit for sales', 59, '2023-08-29 07:19:37', 1),
(14579, 14306, 59, 3, 0, 'Selected for Kannan Team in Staff role', 19, '2023-08-30 10:52:53', 1),
(14580, 14316, 74, 7, 0, 'he is ok with the profile ready to join immediately....already worked in byjus as a educational counsellor in training.....expected 15k and negotiated to 12k ...yuvarani and banumam referance ....have laptop ....father is a driver and ready to join..kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(14581, 14305, 74, 5, 0, 'expectaion is high and not fit for team....purely expected accounts department sales is partially for just looking for a office environment ', 85, '0000-00-00 00:00:00', 1),
(14582, 14316, 59, 3, 0, 'Selected for Sithy Team Consultant Role', 74, '2023-08-30 01:19:41', 1),
(14583, 14313, 59, 3, 0, 'Selected for Syed Team in consultant role', 108, '0000-00-00 00:00:00', 1),
(14584, 14318, 59, 5, 0, 'Frehsr need ti open a lot will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14585, 14317, 59, 5, 0, 'Attitude will not sustain in our roles not open for TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14586, 14314, 59, 5, 0, 'Frequet job changes will not sustain in our roles not suitable', 104, '0000-00-00 00:00:00', 1),
(14587, 14320, 30, 7, 3, 'Confirm CTC and joining ', 104, '0000-00-00 00:00:00', 1),
(14588, 14278, 59, 4, 0, 'Not a relevant Profile internal reference cum recruiter schedule have exp in different domain kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14589, 14278, 71, 5, 0, 'Not Fit For Sales', 59, '2023-08-30 07:38:54', 1),
(14590, 14313, 57, 7, 0, 'candidate is ok pls move', 59, '2023-08-30 07:39:52', 1),
(14591, 14327, 59, 5, 0, 'No basics Need to learn a lot if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(14592, 14328, 59, 5, 0, 'Not Suitable for Renewals calls not open for Sales too ', 108, '0000-00-00 00:00:00', 1),
(14593, 14322, 59, 5, 0, 'Not suitbable for our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(14594, 14323, 59, 5, 0, 'Not suitable for our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(14595, 14326, 59, 5, 0, ' no understanding will not sustain in our roles Career Gap not suitable', 108, '0000-00-00 00:00:00', 1),
(14596, 14321, 59, 5, 0, 'Fresher for MIS Renewals not open for Sales Salary exp is high in Renewals mis will not sutain and handle the work pressure', 108, '0000-00-00 00:00:00', 1),
(14597, 14324, 59, 5, 0, ' Need To Learn A Lot If He Comes Back Let Us Try Not much comfort in TxxampC', 108, '0000-00-00 00:00:00', 1),
(14598, 14319, 59, 5, 0, 'Need to open a lot will not sustain and handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(14599, 14320, 60, 1, 0, NULL, 30, '2023-08-31 06:45:08', 1),
(14600, 14330, 59, 3, 0, 'Selected for Gopinath team in Staff Role', 104, '0000-00-00 00:00:00', 1),
(14601, 14332, 59, 4, 0, 'Have Exp in calling but sustainability doubts as she is getting married  in few more months 5050 kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14602, 14333, 59, 2, 0, '5050 profile need to come back for the final round with Sales manager and the ARea Manager', 104, '0000-00-00 00:00:00', 1),
(14603, 14330, 105, 7, 0, 'CANDIATE IS OK ALSO PRONUNCATION IS WELL BUT NEED TO TRAIN FROM SCRATCH', 59, '2023-09-01 03:48:41', 1),
(14604, 14332, 105, 5, 0, 'Excepted High Salary', 59, '2023-09-01 03:59:03', 1),
(14605, 14334, 59, 5, 0, 'Not Open For Sales Much Will Not Sustain not open to take work pressure Not Suitable', 104, '0000-00-00 00:00:00', 1),
(14606, 14338, 74, 5, 0, 'NOT FIT FOR TELESALES AND AVE NO DISCIPLINE', 85, '0000-00-00 00:00:00', 1),
(14607, 14339, 74, 7, 0, 'REFERRED BY : BALA SUNDAR,\nalready worked in MLM based company two years experince and team lead, 6 months field sales medical rep...completed be and good communication skills ,, ready to join monday...expected 18k and have laptop kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(14608, 14339, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2023-09-02 01:31:52', 1),
(14609, 14330, 59, 3, 0, 'Selected for Gopinath team in Staff Role', 105, '2023-09-02 02:50:06', 1),
(14610, 14310, 59, 3, 0, 'Selected for Operations Renewals Staff Role\n', 59, '2023-09-02 04:32:47', 1),
(14611, 14337, 59, 3, 0, 'Selected for Syed Team Staff Role', 85, '0000-00-00 00:00:00', 1),
(14612, 14341, 59, 3, 0, 'Selected for renewals in Staff role final round interviewed by Gokul 12th High Graduation long career Gap ', 85, '0000-00-00 00:00:00', 1),
(14613, 14313, 59, 3, 0, 'Selected for Syed Team in consultant role', 57, '2023-09-02 05:18:15', 1),
(14614, 14337, 57, 7, 0, 'Candidate is ok pls Confirm the Joining date', 59, '2023-09-02 06:42:32', 1),
(14615, 14249, 60, 1, 0, NULL, 18, '2023-09-04 04:11:25', 1),
(14616, 14302, 60, 1, 0, NULL, 18, '2023-09-04 04:12:47', 1),
(14617, 14331, 59, 4, 0, 'Have Exp in Bank Bazaar Bihari Candidate Tamil is Ok Can be trained in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14618, 14342, 59, 4, 0, '5050 Profile Distance need to check can give a try kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14619, 14346, 59, 4, 0, 'Mentioned 2 months Exp in Calling but abscond not much  suitability internal team reference Pressure hanlding doubts kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14620, 14345, 59, 5, 0, 'Fresher long career gap no basics in JS Need to learn a lot if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14621, 14347, 59, 4, 0, 'Mentioned 2 Months Exp In Calling But Abscond Not Much  Suitability Internal Team Reference Pressure Hanlding Doubts Kindly Check And Let Me Know Your Inputs', 104, '0000-00-00 00:00:00', 1),
(14622, 14348, 59, 2, 0, 'Candidate need to give his confirmation not much comfort in field sales having health issue s a lot sustainability doubts', 104, '0000-00-00 00:00:00', 1),
(14623, 14343, 59, 5, 0, 'Not suitable for MIS Final Round Gokul Reject', 104, '0000-00-00 00:00:00', 1),
(14624, 14344, 59, 5, 0, 'Fresher Pressure Handling Doubts Will not sustain and handle our work not suitable', 104, '0000-00-00 00:00:00', 1),
(14625, 14331, 44, 1, 0, NULL, 59, '2023-09-04 07:20:39', 1),
(14626, 14342, 19, 5, 1, 'Reject', 59, '2023-09-04 07:22:27', 1),
(14627, 14346, 102, 5, 0, 'Not Suitable Sales ', 59, '2023-09-04 07:27:51', 1),
(14628, 14347, 102, 5, 0, 'Not Suitable Sales ', 59, '2023-09-04 07:28:04', 1),
(14629, 12431, 60, 1, 0, NULL, 86, '2023-09-05 10:38:28', 1),
(14630, 14354, 59, 3, 0, 'Selected for Babu Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(14631, 14360, 59, 4, 0, 'Have months exp in calling 5050 distance need to focus kindly chekc an dlet me knwo your inputs', 104, '0000-00-00 00:00:00', 1),
(14632, 14352, 59, 5, 0, 'Frequent Job Changes will not sustain and handle our work pressure not suitable', 104, '0000-00-00 00:00:00', 1),
(14633, 14351, 59, 5, 0, 'No Clarity in her exp Will Not Sustain And Handle Our Work Pressure Not Suitable', 104, '0000-00-00 00:00:00', 1),
(14634, 14288, 59, 4, 0, '5050 Profile Have Exp in Insurance Domain but sustainability doubts married kindly check and let me kbow your inputs', 104, '0000-00-00 00:00:00', 1),
(14635, 14287, 59, 5, 0, 'Will Not Sustain And Handle Our Work Pressure Not Suitable Getting married next week', 104, '0000-00-00 00:00:00', 1),
(14636, 14355, 59, 5, 0, 'Career Gap  Will Not Sustain And Handle Our Work Pressure Not Suitable no clarity', 104, '0000-00-00 00:00:00', 1),
(14637, 14359, 59, 5, 0, 'Fresher need to open up a lot Will Not Sustain And Handle Our Work Pressure Not Suitable', 104, '0000-00-00 00:00:00', 1),
(14638, 14357, 59, 3, 0, 'Selected for Babu Team in Staff Role', 104, '0000-00-00 00:00:00', 1),
(14639, 14356, 59, 3, 0, 'Selected for Operationsin Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14640, 14358, 59, 3, 0, 'Selected for Syed Team in staff Role', 104, '0000-00-00 00:00:00', 1),
(14641, 14354, 89, 7, 0, 'Selected ', 59, '2023-09-05 07:42:16', 1),
(14642, 14357, 89, 7, 0, 'Selected ', 59, '2023-09-05 07:43:12', 1),
(14643, 14358, 57, 7, 0, 'Candidate is ok', 59, '2023-09-05 07:43:52', 1),
(14644, 14360, 105, 5, 0, 'HIS GOAL IS DIFFERENT , SUSTAINABLE DOUUBT', 59, '2023-09-05 07:45:35', 1),
(14645, 14288, 86, 5, 0, 'Not Satisfied.', 59, '2023-09-05 07:47:40', 1),
(14646, 14354, 59, 3, 0, 'Selected for Babu Team in Staff Role', 89, '2023-09-06 02:56:26', 1),
(14647, 14357, 59, 3, 0, 'Selected for Babu Team in Staff Role', 89, '2023-09-06 02:57:07', 1),
(14648, 14370, 59, 5, 0, 'Not Suitable For Our Roles Communication No Will Not Sustain', 108, '0000-00-00 00:00:00', 1),
(14649, 14371, 59, 2, 0, 'Need to come for Final Round with Gokul but location need to check for HR profile', 104, '0000-00-00 00:00:00', 1),
(14650, 14362, 59, 5, 0, ' Communication Ok Will Not Sustain to long distance ', 104, '0000-00-00 00:00:00', 1),
(14651, 14373, 59, 5, 0, 'Not Suitable For Our Roles Communication average Will Not Sustain in our roles  health issue he has ', 104, '0000-00-00 00:00:00', 1),
(14652, 14372, 59, 5, 0, 'Not Suitable For Our Roles No basic skills  Will Not Sustain not much cofmrt in TxxampC', 104, '0000-00-00 00:00:00', 1),
(14653, 14366, 59, 5, 0, 'Not Suitable For Our Roles No basics Skills age 28 Long career gap Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(14654, 14364, 59, 2, 0, 'Selected for Recruiter Role 15K overall Need to check the documents and confirm seems to be doubtful final round by gokul', 104, '0000-00-00 00:00:00', 1),
(14655, 14369, 59, 5, 0, 'Not Suitable For Our Roles Communication No Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(14656, 14367, 59, 5, 0, 'Not suitable for our roles Communication No will not sustain', 104, '0000-00-00 00:00:00', 1),
(14657, 14368, 59, 5, 0, 'Not Suitable For Our Roles Communication No Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(14658, 14376, 59, 3, 0, 'Selected for GK Sir team Staff Role', 108, '0000-00-00 00:00:00', 1),
(14659, 14383, 59, 4, 0, 'Communication Good Can be trained in our roles have exp in  calling for few months kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14660, 14378, 59, 4, 0, 'Fresher internal team reference sustainability doubts will not handle our pressure', 108, '0000-00-00 00:00:00', 1),
(14661, 14377, 59, 5, 0, 'Have Exp in calling but no locl tamil language for operation high cTC exp will not sustain and handle our workroles', 108, '0000-00-00 00:00:00', 1),
(14662, 14381, 59, 5, 0, 'Will not sustain for a long have a plan to go with higher studies in canada will not sustain', 108, '0000-00-00 00:00:00', 1),
(14663, 14380, 59, 5, 0, 'Not suitable for our recruitment role no communication', 108, '0000-00-00 00:00:00', 1),
(14664, 14374, 59, 3, 0, 'Selected for Banu Team Consultant Role', 108, '0000-00-00 00:00:00', 1),
(14665, 14379, 59, 3, 0, 'Selected for Sarath Team in Staff Role with the oral approval from Gaurav Sir', 108, '0000-00-00 00:00:00', 1),
(14666, 14361, 59, 3, 0, 'Selected for Kannan Team', 108, '0000-00-00 00:00:00', 1),
(14667, 14384, 59, 2, 0, 'Need to come back with his confirmation on Intern cum employment if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14668, 14361, 19, 7, 5, 'Selected', 59, '2023-09-07 06:50:04', 1),
(14669, 14374, 53, 7, 0, 'Shortlisted for b2b', 59, '2023-09-07 06:51:05', 1),
(14670, 12618, 59, 5, 0, 'Attitude Have Exp in calling scheduled with Shanmugam sir for 2nd level but left without attending', 104, '0000-00-00 00:00:00', 1),
(14671, 14376, 31, 4, 4, 'candidate okay, already worked in credit card sales and new for insurance sector', 59, '2023-09-07 06:53:33', 1),
(14672, 14379, 51, 4, 0, 'selcted', 59, '2023-09-07 06:54:15', 1),
(14673, 14378, 53, 1, 0, NULL, 59, '2023-09-07 06:56:50', 1),
(14674, 14383, 51, 5, 0, 'Rejected', 59, '2023-09-07 07:00:33', 1),
(14675, 14385, 74, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14676, 14399, 97, 5, 0, 'Good communication skill.. but she already holding with 12k ... sal exp high', 104, '0000-00-00 00:00:00', 1),
(14677, 14393, 97, 4, 0, '50-50 profile long distance .. average convincing skills... will try for our role .. check and update your inputs..', 104, '0000-00-00 00:00:00', 1),
(14678, 14391, 97, 7, 0, 'Good communication skill has exp in cc .. will try for our role..', 104, '0000-00-00 00:00:00', 1),
(14679, 14398, 97, 5, 0, 'Good exp xxamp comm..sal expt high ...', 104, '0000-00-00 00:00:00', 1),
(14680, 14397, 97, 5, 0, 'physically she have some problem... not suit for our roles', 104, '0000-00-00 00:00:00', 1),
(14681, 14395, 97, 5, 0, 'Not suit for Recruitment', 104, '0000-00-00 00:00:00', 1),
(14682, 14396, 97, 5, 0, 'Not Suit For Recruitment', 104, '0000-00-00 00:00:00', 1),
(14683, 14389, 97, 5, 0, 'has  min knowledge in sql .. need to learn a lot', 104, '0000-00-00 00:00:00', 1),
(14684, 14390, 97, 5, 0, 'Not suit for our roles', 104, '0000-00-00 00:00:00', 1),
(14685, 14392, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14686, 14394, 30, 7, 3, 'Proceed the joining formalities ', 104, '0000-00-00 00:00:00', 1),
(14687, 14391, 59, 3, 0, 'Selected for Renewals  Consultant Role', 97, '2023-09-08 06:57:54', 1),
(14688, 14393, 105, 5, 0, 'OBSCONT AFTER INTERVIEW COMPLETED ALSO LONG DISTANCE', 97, '2023-09-08 07:08:00', 1),
(14689, 14337, 59, 3, 0, 'Selected for Syed Team Staff Role', 57, '2023-09-09 03:33:18', 1),
(14690, 14358, 59, 3, 0, 'Selected for Syed Team in staff Role', 57, '2023-09-09 03:33:37', 1),
(14691, 14361, 59, 3, 0, 'Selected for Kannan Team', 19, '2023-09-09 03:42:40', 1),
(14692, 14374, 59, 3, 0, 'Selected for Banu Team Consultant Role', 53, '2023-09-09 04:12:08', 1),
(14693, 14400, 59, 4, 0, 'Communication ok fresher for our roles can be trained have exp in salary account opening kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14694, 14402, 59, 5, 0, 'Need to open up a lot in sales focus in the salary only Pressure handling doubts', 104, '0000-00-00 00:00:00', 1),
(14695, 14401, 59, 5, 0, 'Have Exp in OLA bike sales for 1 yr after that there is a gap for 1yr salary exp is high being a fresher for our roles if he comes back with negotiation can give  a try', 104, '0000-00-00 00:00:00', 1),
(14696, 14406, 59, 5, 0, 'Will not sustain and handle our work pressure frequent job changes not suitable', 104, '0000-00-00 00:00:00', 1),
(14697, 14407, 59, 5, 0, 'Have 3 Months Exp In Recruitment And The Salary Exp Is High More Than 18K His Current Is 18K Will Not Handle Our Work Pressure Too', 104, '0000-00-00 00:00:00', 1),
(14698, 14408, 59, 5, 0, 'Have 3 months exp in recruitment and the salary exp is high more than 18K her current is 18K will not handle our work pressure too', 104, '0000-00-00 00:00:00', 1),
(14699, 14404, 59, 5, 0, 'Fresher not more than an year will not sustain in our roles need time to consider for our roles', 104, '0000-00-00 00:00:00', 1),
(14700, 14405, 59, 4, 0, '5050 profile communication Ok sustainability doubts looking for salary much kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14701, 14400, 44, 1, 0, NULL, 59, '2023-09-09 04:25:33', 1),
(14702, 14405, 53, 1, 0, NULL, 59, '2023-09-09 04:27:39', 1),
(14703, 14379, 60, 1, 0, NULL, 51, '2023-09-09 06:15:21', 1),
(14704, 14376, 29, 7, 2, 'gk team PC RM', 31, '2023-09-09 06:46:08', 1),
(14705, 14403, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14706, 14409, 59, 4, 0, 'Communication Ok can be trained in our roles have exp in Bank Bazaar Need to improve his sound can be trained kindly check', 104, '0000-00-00 00:00:00', 1),
(14707, 14411, 59, 4, 0, '5050 Profile much preferred for IT but open for Sales calling too focusing much in the salary kindly check and let me know your inputs internal reference\n', 104, '0000-00-00 00:00:00', 1),
(14708, 14413, 59, 5, 0, '5050 Profile Have 6 Months Exp Incalling But Doubts On Sustainability Kindly Check And Let Me Know Your Inputs', 104, '0000-00-00 00:00:00', 1),
(14709, 14410, 59, 4, 0, '5050 profile for our sales have exp in calling Airtel kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14710, 14414, 59, 4, 0, '5050 Profile have 6 months exp incalling but doubts on sustainability kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14711, 14415, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14712, 14417, 59, 4, 0, 'Low Quality candidate internal reference will not sustain in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14713, 14411, 13, 5, 0, 'ok than but call panrenu sollitu ipo vara entha pathilum illa so set agathu', 59, '2023-09-11 07:22:48', 1),
(14714, 14409, 86, 1, 0, NULL, 59, '2023-09-11 07:24:03', 1),
(14715, 14415, 19, 7, 4, 'Selected', 59, '2023-09-11 07:24:54', 1),
(14716, 14417, 57, 5, 0, 'Not good', 59, '2023-09-11 07:25:49', 1),
(14717, 14414, 53, 1, 0, NULL, 59, '2023-09-11 07:26:47', 1),
(14718, 14410, 44, 1, 0, NULL, 59, '2023-09-11 07:29:37', 1),
(14719, 14418, 59, 4, 0, '5050 profile for our roles have 8 months exp in calling kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14720, 14419, 59, 5, 0, 'Already attended and got rejected not much comfort in TxxampC will not sustain and not suitable final round reject by Gokul', 104, '0000-00-00 00:00:00', 1),
(14721, 14420, 59, 4, 0, 'Fresher for our Roles need to be trained a lot kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14722, 14423, 59, 4, 0, '5050 Profile have exp not much in calling sustainability doubts kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14723, 14424, 59, 5, 0, 'Looking for Non Voice Process not much comfort in telecalling will not sustain not suitable', 104, '0000-00-00 00:00:00', 1),
(14724, 14426, 59, 5, 0, 'Communication No will not sustain and handle our work pressure not suitable', 104, '0000-00-00 00:00:00', 1),
(14725, 14420, 27, 1, 0, NULL, 59, '2023-09-12 07:11:17', 1),
(14726, 14418, 31, 1, 0, NULL, 59, '2023-09-12 07:19:32', 1),
(14727, 14423, 19, 5, 1, 'Rejected', 59, '2023-09-12 07:20:41', 1),
(14728, 14429, 59, 5, 0, 'Communication Ok but no exp in voice process she need time to confirm her interest if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14729, 14421, 59, 5, 0, 'Looking for non voice process will not handle our sales calling and not suitable for  our operations too', 104, '0000-00-00 00:00:00', 1),
(14730, 14430, 59, 5, 0, 'No communication Mentioned Exp but the way speaks not clear with the roles will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14731, 14044, 59, 3, 0, 'Selected for Intern with Employment Direct reporting to  Uday Node', 59, '2023-09-14 09:49:13', 1),
(14732, 14376, 59, 3, 0, 'Selected for GK Sir team Staff Role', 29, '2023-09-14 11:18:52', 1),
(14733, 14440, 59, 5, 0, 'Have Exp in Televerification not much comfort in Sales calling will not sustain not suitable', 104, '0000-00-00 00:00:00', 1),
(14734, 14439, 59, 2, 0, 'Need to learn and come back if he comes let su try for Javascript', 104, '0000-00-00 00:00:00', 1),
(14735, 14438, 59, 5, 0, 'Communication Good Have a plan to travel abroad for higher studies MBA preparing for the exams time being looking for opportunities will not sustain', 104, '0000-00-00 00:00:00', 1),
(14736, 14436, 59, 5, 0, 'No VOice Claroty Not open for Targets will not sustain not suitable', 104, '0000-00-00 00:00:00', 1),
(14737, 14441, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14738, 14444, 59, 3, 0, 'Selected for Syed Team Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14739, 14442, 59, 2, 0, 'Need to check for 2nd level with Gokul sustainability doubts in our roles need to check and confirm', 104, '0000-00-00 00:00:00', 1),
(14740, 14443, 59, 4, 0, 'Have Exp in SAles Can be trained in  our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14741, 14431, 59, 4, 0, '5050 profile have exp but doubts a lot kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14742, 14444, 57, 7, 0, 'CANDIDATE IS OK ALREADY SHE WAS SAME PROCESS KINDLY CHECK WITH PACKAGE AND JOINING DATE THANKS', 59, '2023-09-14 06:20:51', 1),
(14743, 14443, 51, 4, 0, 'selected', 59, '2023-09-14 06:21:34', 1),
(14744, 14431, 13, 5, 0, 'she is not suitable  for  this sales', 59, '2023-09-14 06:27:54', 1),
(14745, 14441, 13, 7, 0, 'ok  voice clarity and confident level is good kindly confirm joining date', 59, '2023-09-14 06:28:35', 1),
(14746, 14444, 59, 3, 0, 'Selected for Syed Team Consultant Role', 57, '2023-09-14 06:40:11', 1),
(14747, 14441, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2023-09-14 06:50:47', 1),
(14748, 14448, 59, 3, 0, 'Selected fr Muthu Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14749, 14449, 59, 5, 0, 'He is into graduation yet to complete his education bit attitude will not sustain for a long not suitable', 108, '0000-00-00 00:00:00', 1),
(14750, 14450, 59, 5, 0, 'Aged Career Gap much looking for non voice not suitable', 104, '0000-00-00 00:00:00', 1),
(14751, 14428, 59, 4, 0, 'Have Exp in sales can be trained in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14752, 14451, 59, 5, 0, 'Have basic knowledge can be trained in our skills but not ok with TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14753, 14428, 44, 1, 0, NULL, 59, '2023-09-15 05:55:27', 1),
(14754, 14448, 13, 7, 0, 'ok Good Communication and Convincing skills,Sep 19th Joining ', 59, '2023-09-15 05:56:19', 1),
(14755, 14415, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2023-09-15 07:14:39', 1),
(14756, 14447, 59, 3, 0, 'Selected for Shanmugam Team with Staff Role  1 month 1.5L Business then 25K Net take Home', 104, '0000-00-00 00:00:00', 1),
(14757, 14454, 59, 3, 0, 'selected for Gopinath team in Staff ROle', 104, '0000-00-00 00:00:00', 1),
(14758, 14455, 59, 5, 0, 'Not open for TxxampC fresher will not sustain', 104, '0000-00-00 00:00:00', 1),
(14759, 14460, 59, 5, 0, 'Attitude Long Career in Admin Roles 33 yrs will not sustain and not suits for TxxampC not suitable', 104, '0000-00-00 00:00:00', 1),
(14760, 14448, 59, 3, 0, 'Selected fr Muthu Team in Consultant Role', 13, '2023-09-16 04:30:19', 1),
(14761, 14447, 44, 1, 0, NULL, 59, '2023-09-16 04:31:33', 1),
(14762, 14454, 105, 7, 0, 'Candidate Performed Well in Interview , He Will Join on Wednesday', 59, '2023-09-16 04:32:18', 1),
(14763, 14447, 59, 3, 0, 'Selected for Shanmugam Team with Staff Role  1 month 1.5L Business then 25K Net take Home', 29, '2023-09-19 10:23:47', 1),
(14764, 14443, 29, 1, 0, NULL, 51, '2023-09-19 12:30:06', 1),
(14765, 14457, 59, 5, 0, 'Too Long Distance Not Much Suitable For Our Voice Process Will Not Sustain And Handle Our Work Pressure', 104, '0000-00-00 00:00:00', 1),
(14766, 14462, 59, 4, 0, '5050 Profile Need to open up a lot Have Exp in backoffice Kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14767, 14456, 59, 5, 0, 'Too long distance not much suitable for our voice process will not sustain and handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14768, 14458, 59, 5, 0, 'Too Long Distance Not Much Suitable For Our Voice Process Will Not Sustain And Handle Our Work Pressure', 104, '0000-00-00 00:00:00', 1),
(14769, 14461, 59, 5, 0, 'Left without attending', 104, '0000-00-00 00:00:00', 1),
(14770, 14463, 59, 5, 0, 'No basic skills need to come back after learning of he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14771, 14464, 59, 5, 0, 'Too Long Distance Not Much Suitable For Our Voice Process Will Not Sustain And Handle Our Work Pressure', 104, '0000-00-00 00:00:00', 1),
(14772, 14454, 59, 3, 0, 'selected for Gopinath team in Staff ROle', 105, '2023-09-19 02:58:43', 1),
(14773, 14462, 13, 5, 0, 'She is Not fit for Tele sales', 59, '2023-09-19 07:04:39', 1),
(14774, 14467, 59, 5, 0, 'Average Communication Have Exp in MIS but not much relevant sustainability doubts and high salary Exp', 104, '0000-00-00 00:00:00', 1),
(14775, 14476, 59, 5, 0, 'Too long Distance not open for Voice process much looking for non voice', 104, '0000-00-00 00:00:00', 1),
(14776, 14477, 59, 5, 0, 'Too Long Distance Not Open For Voice Process Much Looking For Non Voice', 104, '0000-00-00 00:00:00', 1),
(14777, 14480, 59, 5, 0, 'Looking for non voice only', 104, '0000-00-00 00:00:00', 1),
(14778, 14466, 59, 5, 0, 'Not active No Communication will nothandle our work roles not suitable', 104, '0000-00-00 00:00:00', 1),
(14779, 14481, 59, 5, 0, 'No Sustainability too long distance will not handle our work roles not suitable', 104, '0000-00-00 00:00:00', 1),
(14780, 14482, 59, 5, 0, 'Yet to Complete Graduation Question Task Rejected', 104, '0000-00-00 00:00:00', 1),
(14781, 14483, 59, 5, 0, 'Yet To Complete Graduation Question Task Rejected', 104, '0000-00-00 00:00:00', 1),
(14782, 14484, 59, 5, 0, 'Yet To Complete Graduation Question Task Rejected', 104, '0000-00-00 00:00:00', 1),
(14783, 14485, 59, 5, 0, 'Yet To Complete Graduation Question Task Rejected', 104, '0000-00-00 00:00:00', 1),
(14784, 14486, 59, 5, 0, 'Yet To Complete Graduation Question Task Rejected', 104, '0000-00-00 00:00:00', 1),
(14785, 14472, 97, 2, 0, 'Aptitude clear can try for next round of interview but candiate yet to complete his college will hold Now .if he come back let us check.', 104, '0000-00-00 00:00:00', 1),
(14786, 14470, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(14787, 14468, 59, 2, 0, 'Need to complete his graducation', 104, '0000-00-00 00:00:00', 1),
(14788, 14469, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(14789, 14474, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(14790, 14479, 97, 5, 0, 'Rejected in Aptitude', 104, '0000-00-00 00:00:00', 1),
(14791, 14471, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(14792, 14475, 97, 5, 0, 'Rejected In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14793, 14473, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(14794, 14478, 74, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14795, 14499, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 108, '0000-00-00 00:00:00', 1),
(14796, 14494, 59, 5, 0, 'Have Exp in Calling but very Less and the salary exp is high if she comes back let us try ', 104, '0000-00-00 00:00:00', 1),
(14797, 14501, 59, 5, 0, 'Need to come back with his confirmation on the TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14798, 14503, 59, 5, 0, 'No Communication Looking only for the salary growth will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14799, 14497, 109, 5, 0, 'Not Selected For Apttitude Test.', 104, '0000-00-00 00:00:00', 1),
(14800, 14498, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14801, 14492, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14802, 14489, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14803, 14493, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14804, 14490, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14805, 14495, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14806, 14488, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14807, 14496, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14808, 14491, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14809, 14510, 59, 4, 0, '5050 Profile have exp in motor Insurance kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14810, 14511, 59, 4, 0, '5050 Communication Understanding Poor Pressure handling doubt internal reference kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14811, 14508, 59, 3, 0, 'Selected For Internship Stipend Payout For 3 Months ', 104, '0000-00-00 00:00:00', 1),
(14812, 14507, 59, 3, 0, 'Selected for Internship Stipend Payout for 3 months ', 104, '0000-00-00 00:00:00', 1),
(14813, 14516, 59, 5, 0, 'Not open for Sales and communication no will not Sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14814, 14512, 59, 5, 0, 'Holding an offer from CTS will not sustain not much comfrt in location too if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14815, 14509, 59, 5, 0, 'Too long Distance not much comfort in  TxxampC will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14816, 14515, 97, 5, 0, 'below average communication. has exp in renewals in star health looking for MIS.. will not suit for MIS', 104, '0000-00-00 00:00:00', 1),
(14817, 14517, 97, 2, 0, 'good communication.. suit for Recruitment .. has intern exp .. will try ', 104, '0000-00-00 00:00:00', 1),
(14818, 14502, 59, 3, 0, 'Selected for shanmugam Sir Team in Staff Role Gaurav Sir Commitment 1.5L + 5mf then 23K th from Nov 2023', 85, '0000-00-00 00:00:00', 1),
(14819, 14502, 59, 3, 0, 'Selected for shanmugam Sir Team in Staff Role Gaurav Sir Commitment 1.5L + 5mf then 23K th from Nov 2023', 85, '0000-00-00 00:00:00', 1),
(14820, 14499, 13, 7, 0, 'ok good communication skills,Salary and joining confirm pannanum', 59, '2023-09-22 07:05:10', 1),
(14821, 14510, 19, 5, 1, 'Not fit for sales', 59, '2023-09-22 07:07:00', 1),
(14822, 14506, 71, 5, 0, 'Not Fit For Sales', 85, '0000-00-00 00:00:00', 1),
(14823, 14504, 59, 5, 0, 'Need time to confirm with her family for the salary Exp is high Sustainability no in the previous if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(14824, 14511, 102, 5, 0, 'Not Suitable Sales ', 59, '2023-09-22 07:26:47', 1),
(14825, 14502, 44, 7, 4, 'Candidate ok please complete the future process ', 59, '2023-09-22 07:36:37', 1),
(14826, 14499, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2023-09-23 11:07:04', 1),
(14827, 14518, 59, 5, 0, 'Salary exp is high have aplan to go with higher studies will not sustain for a long', 85, '0000-00-00 00:00:00', 1),
(14828, 14520, 59, 4, 0, '5050 Profile Need to train a lot kindly check and let  mw know your inputs', 108, '0000-00-00 00:00:00', 1),
(14829, 14522, 59, 5, 0, 'No Sustainability will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(14830, 14521, 59, 5, 0, 'Too long Days Not open for Sales Calling will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(14831, 14500, 59, 5, 0, 'Not Active  very slow will not sustain will not handle our pressure', 108, '0000-00-00 00:00:00', 1),
(14832, 14502, 59, 3, 0, 'Selected for shanmugam Sir Team in Staff Role Gaurav Sir Commitment 1.5L + 5mf then 23K th from Nov 2023', 44, '2023-09-25 03:30:45', 1),
(14833, 14530, 97, 4, 0, 'Fresher Can Be Train Let Us Try.. Kindly Check And Update Your Feedback', 104, '0000-00-00 00:00:00', 1),
(14834, 14532, 97, 4, 0, 'Fresher can be train let us try.. kindly check and update your feedback', 104, '0000-00-00 00:00:00', 1),
(14835, 14528, 59, 5, 0, 'Expis high will not sustain and handle our work roles ', 104, '0000-00-00 00:00:00', 1),
(14836, 14527, 59, 2, 0, 'Salary Projected for MIS Role Shortlistde by Gokul Candidate yet to give his confirmation', 104, '0000-00-00 00:00:00', 1),
(14837, 14524, 97, 5, 0, 'Communication average . will not handle our pressure. sal expt high..', 104, '0000-00-00 00:00:00', 1),
(14838, 14526, 97, 5, 0, 'he looking for Data analyst role.. for a time being looking for job not suit for in our roles...', 104, '0000-00-00 00:00:00', 1),
(14839, 14525, 97, 4, 0, '50-50 profile. need to train a lot.. kindly check and update your inputs.', 104, '0000-00-00 00:00:00', 1),
(14840, 14529, 97, 4, 0, 'Fresher.. good communication xxamp convincing skill.. let us try ..', 104, '0000-00-00 00:00:00', 1),
(14841, 14531, 97, 5, 0, 'Has exp in web dev. but not suit for our timing xxamp role. ', 104, '0000-00-00 00:00:00', 1),
(14842, 14534, 59, 4, 0, 'Communicaiton Ok Have Exp in Sales can be trained kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14843, 14533, 59, 4, 0, '5050 Have Exp but sustainability doubts can give a try in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14844, 14525, 13, 5, 0, 'voice not bold and communication skill poor so he is not fit for tele sales', 97, '2023-09-26 06:54:36', 1),
(14845, 14529, 59, 1, 0, NULL, 97, '2023-09-26 07:03:18', 1),
(14846, 14535, 59, 4, 0, 'Communication Ok Can be trained in our roles Attitude 5050 kindly check an dlet me knwo your inputs', 104, '0000-00-00 00:00:00', 1),
(14847, 14538, 97, 5, 0, 'much interested in IT side.. for a time being looking for Data analyst', 104, '0000-00-00 00:00:00', 1),
(14848, 14540, 97, 5, 0, 'Has 11yrs of exp in acc .. long distance ..not suit for our role', 104, '0000-00-00 00:00:00', 1),
(14849, 14539, 97, 5, 0, 'Not suit for our role exp in us acc .. ', 104, '0000-00-00 00:00:00', 1),
(14850, 14541, 97, 5, 0, 'Has exp in web development.. not suit for our role..sal expt high', 104, '0000-00-00 00:00:00', 1),
(14851, 14543, 97, 5, 0, 'has some knowledge in Tally but no communication ', 104, '0000-00-00 00:00:00', 1),
(14852, 14544, 97, 5, 0, 'Has exp in acc but need learn tally gST .. ', 104, '0000-00-00 00:00:00', 1),
(14853, 14546, 97, 5, 0, 'No knowledge \nIn Tally xxamp No Communication ', 104, '0000-00-00 00:00:00', 1),
(14854, 14547, 97, 5, 0, 'Has exp in acc tax aud.. sal expt high .. no job need ', 104, '0000-00-00 00:00:00', 1),
(14855, 14548, 97, 5, 0, 'Has medical Billing exp new to our role and not suit for process', 104, '0000-00-00 00:00:00', 1),
(14856, 14536, 97, 5, 0, 'Long distance xxamp Not suit for our process', 104, '0000-00-00 00:00:00', 1),
(14857, 14537, 97, 5, 0, 'No Knowledege in Tally xxamp no communication ', 104, '0000-00-00 00:00:00', 1),
(14858, 14545, 97, 5, 0, '50-50 profile Sustainability doubts.. kindly check and update your inputs..', 104, '0000-00-00 00:00:00', 1),
(14859, 14542, 59, 2, 0, 'Need to come back with his confirmation  Fresher for our roles need to be trained a lot', 104, '0000-00-00 00:00:00', 1),
(14860, 14549, 59, 5, 0, 'Have Exp but seems to be not genuine asked for the documents if he comes back let  us try', 104, '0000-00-00 00:00:00', 1),
(14861, 14532, 13, 7, 0, 'ok good communication skill and voice clarity good 29th sep joining', 97, '2023-09-27 07:28:54', 1),
(14862, 14530, 13, 7, 0, 'ok,29th sep joining', 97, '2023-09-27 07:29:10', 1),
(14863, 14535, 44, 1, 0, NULL, 59, '2023-09-27 08:13:18', 1),
(14864, 14520, 44, 1, 0, NULL, 59, '2023-09-27 08:14:12', 1),
(14865, 14534, 31, 1, 0, NULL, 59, '2023-09-27 08:16:38', 1),
(14866, 14533, 44, 1, 0, NULL, 59, '2023-09-27 08:20:21', 1),
(14867, 14530, 59, 3, 0, 'Selected for Muthu Team in Staff Role', 13, '2023-09-28 11:27:56', 1),
(14868, 14532, 59, 3, 0, 'Selected for Muthu Team in staff Role', 13, '2023-09-28 11:32:42', 1),
(14869, 14553, 59, 4, 0, '5050 have calling exp can be trained kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14870, 14551, 59, 2, 0, 'Selected for Acounts Team and projected the salary till 2.4LPA But he is not ready to accept it\n', 104, '0000-00-00 00:00:00', 1),
(14871, 14552, 59, 2, 0, 'Sustinability doubts need to look for other profiles and later willdecide n the profile', 104, '0000-00-00 00:00:00', 1),
(14872, 14550, 59, 4, 0, '5050 Profile hav a career gap have exp in calling kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14873, 14559, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14874, 14569, 59, 5, 0, 'No Communication no ideas will not handle our work roles not suitable', 104, '0000-00-00 00:00:00', 1),
(14875, 14564, 59, 5, 0, 'No Ideas in MIS No parents He is alone not muchactive will not handle our work pressure not suitable', 104, '0000-00-00 00:00:00', 1),
(14876, 14556, 59, 5, 0, 'Not much comfort in TxxampC Fresher need to train a lot if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14877, 14567, 59, 5, 0, 'Left Without Attending', 104, '0000-00-00 00:00:00', 1),
(14878, 14562, 59, 5, 0, 'Lookin g for Accounts profile have exp in renewals salary exp is high Average Communication', 104, '0000-00-00 00:00:00', 1),
(14879, 14565, 59, 5, 0, 'Not Much Comfort In TxxampC Fresher for Web Development have Exp in other profile  Need To Train A Lot If she Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14880, 14554, 59, 5, 0, 'Not Much Comfort In TxxampC Fresher Need To Train A Lot If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14881, 14570, 59, 2, 0, 'Have Exp in MIS Current CTC 3.5 LPA Exp is min 4LPA Need to confirm the profile', 104, '0000-00-00 00:00:00', 1),
(14882, 14571, 59, 5, 0, 'have exp  CMA Inter Saalry Exp in high too long Distance will not sustain in a long', 104, '0000-00-00 00:00:00', 1),
(14883, 14568, 59, 5, 0, 'Too long Distance No Sustainability in the previous Exp in Star Health for few months will not handle the pressure in our roles location constraint', 108, '0000-00-00 00:00:00', 1),
(14884, 11246, 59, 4, 0, '5050 profile have exp in sales but sustainability doubts in our profile kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14885, 14560, 59, 4, 0, '5050 profile Fresher for our roles need to be trained a lot kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14886, 14561, 59, 4, 0, '5050 Profile have exp in retail sales sustainability doubts kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14887, 11018, 59, 5, 0, 'Not Much Comfort In TxxampC Fresher Need To Train A Lot If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14888, 14563, 59, 5, 0, 'No basics in Accounts 2yrs Gap  Will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14889, 14557, 59, 5, 0, 'Not open for TxxampC He is a musician will not much comfort to work on Saturday sustainability doubts', 104, '0000-00-00 00:00:00', 1),
(14890, 14579, 59, 5, 0, 'No communication Aged Very slow will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(14891, 14573, 59, 5, 0, 'Fresher Long Career Gap Not much comfort in TxxampC if she comes back let us try', 108, '0000-00-00 00:00:00', 1),
(14892, 14575, 59, 2, 0, 'Fresher for Accounts Can be trained not open for other roles need to confirm later', 108, '0000-00-00 00:00:00', 1),
(14893, 14576, 59, 5, 0, 'Need to be active Just Tally entry exp pressure hanlding doubt will not sustain in our presuure', 108, '0000-00-00 00:00:00', 1),
(14894, 14572, 59, 5, 0, 'Too long Distance max 1yr she wlill work and move to higher studies will not sustain', 108, '0000-00-00 00:00:00', 1),
(14895, 14577, 59, 5, 0, 'Communication Average Telling as Exp but seems to be doubtfull and lot of false information in his family Will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(14896, 11246, 31, 1, 0, NULL, 59, '2023-09-30 05:25:43', 1),
(14897, 14560, 13, 5, 0, 'he is not fit for tele sales and not pressure handling', 59, '2023-09-30 05:36:06', 1),
(14898, 14561, 19, 5, 1, 'Rejected', 59, '2023-09-30 05:36:58', 1),
(14899, 14550, 31, 1, 0, NULL, 59, '2023-09-30 06:48:01', 1),
(14900, 14553, 44, 1, 0, NULL, 59, '2023-09-30 07:59:10', 1),
(14901, 14580, 59, 5, 0, 'Frequent Job Changes Long Distance not sure on relocation will not sustain and handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(14902, 14586, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 108, '0000-00-00 00:00:00', 1),
(14903, 14587, 59, 5, 0, 'Looking for SAP FICO profile will not sustain in our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(14904, 14591, 59, 5, 0, 'Will not sustain 10 diploma had own business wealth family will not sustain and handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(14905, 14595, 59, 4, 0, 'Have Exp in Insurance Broca Sales Can be trained kindly check andlet me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14906, 14585, 59, 2, 0, 'Need to confirm after reveiewing other profiles need time to confirm', 108, '0000-00-00 00:00:00', 1),
(14907, 14594, 59, 5, 0, 'No ideas in MIS looking for Hardware sort of profiles', 108, '0000-00-00 00:00:00', 1),
(14908, 14582, 59, 2, 0, 'Have Exp in Accounts Need to confirm post screening of other profiles ', 108, '0000-00-00 00:00:00', 1),
(14909, 14593, 59, 2, 0, '5050 profile Have health disability Left hand Candidate Leg issue Can be trained need time to confirm', 108, '0000-00-00 00:00:00', 1),
(14910, 14603, 59, 5, 0, 'No basic skills will not sustain not open for TxxampC not suitable', 108, '0000-00-00 00:00:00', 1),
(14911, 14595, 44, 1, 0, NULL, 59, '2023-10-03 07:17:09', 1),
(14912, 14586, 13, 7, 0, 'job Need irukku ok than joining date confirm pannanum', 59, '2023-10-03 07:24:28', 1),
(14913, 14583, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14914, 14586, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2023-10-04 10:41:05', 1),
(14915, 14611, 59, 5, 0, 'Candidate is in Dilemma Will not sustain and handle our work Pressure Final round Reject by Gokul', 108, '0000-00-00 00:00:00', 1),
(14916, 14610, 59, 5, 0, 'Fresher for Our roles Will not sustain and handle our pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(14917, 14598, 59, 5, 0, 'Fresher Focusing much for IT opening but no basic skills Will not handle our work pressure in Sales Calling Not suitable', 108, '0000-00-00 00:00:00', 1),
(14918, 14597, 59, 5, 0, 'Need Time to Give his confirmation Already had an offer with Wipro for 3.5 LPA not yet onboarded Will not sustain in a long Run', 108, '0000-00-00 00:00:00', 1),
(14919, 14596, 59, 5, 0, 'Too Long Distance Seems to be good Candidate Already into Intern with 12K exp min 10K stipend here but 3yrs doubts if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(14920, 14614, 59, 5, 0, 'too long Distance Fresher Salary Exp is high not joined a company earlier as the salary offered was low and it was around 13K TH\n', 108, '0000-00-00 00:00:00', 1),
(14921, 14616, 59, 5, 0, 'No Basic skills need to open a lot will not handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(14922, 14612, 59, 5, 0, 'Fresher for MIS Not much family need settled Too long Distance Will not sustain in a long', 108, '0000-00-00 00:00:00', 1),
(14923, 14606, 59, 2, 0, 'Seems to be slow 5050 Virtual with Manikandan Auditor Final round Hold by Gokul not much active pressure handling doubts', 108, '0000-00-00 00:00:00', 1),
(14924, 14607, 59, 2, 0, 'Fresher for Accounts Virtual With Mani Auditor Left without attending the final round with Gokul', 108, '0000-00-00 00:00:00', 1),
(14925, 14566, 59, 2, 0, 'Not Much Active Have Exp as process Associate Can be trained Final Interview by Gokul and was on hold', 108, '0000-00-00 00:00:00', 1),
(14926, 14609, 59, 5, 0, 'Fresher for Our Roles Attitude Issue  Final round rejected by gokul', 108, '0000-00-00 00:00:00', 1),
(14927, 14608, 59, 4, 0, 'Internal Team Reference looking for IT much Will not sustain Being Team reference kindly check once', 108, '0000-00-00 00:00:00', 1),
(14928, 14613, 59, 4, 0, '5050 Profile internal Team Reference Not open for Telesales looking for Admin Roles kindly check', 85, '0000-00-00 00:00:00', 1),
(14929, 14613, 19, 5, 2, 'Rejected', 59, '2023-10-04 06:38:13', 1),
(14930, 14608, 13, 5, 0, 'he is not sustain long term ', 59, '2023-10-04 06:39:30', 1),
(14931, 14629, 59, 5, 0, 'Not open for our Roles ', 108, '0000-00-00 00:00:00', 1),
(14932, 14627, 59, 2, 0, 'Good in Communication Recently Married Sustainability Good in previous emp long run doubts in our roles', 108, '0000-00-00 00:00:00', 1),
(14933, 14624, 59, 2, 0, 'Communication OK Have Exp in CAMS Interested to learn in MF but exp ESI benefits checked for B2B she need to confirm her interest', 108, '0000-00-00 00:00:00', 1),
(14934, 14626, 59, 5, 0, 'Need to open up a lot will not handle the pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(14935, 14623, 59, 3, 0, 'Selected for MIS role in Consultant Role Have Exp in MIS Good Sustainability Communication Good Final Round with GOkul', 108, '0000-00-00 00:00:00', 1),
(14936, 14617, 59, 5, 0, 'Not open for TxxampC Father has his own web development PHP business will not sustain', 108, '0000-00-00 00:00:00', 1),
(14937, 14625, 59, 5, 0, 'Have Exp in Backend Much she is into treatment for pregnancy will not sustain for a long ', 108, '0000-00-00 00:00:00', 1),
(14938, 14620, 59, 2, 0, 'Need To Give His Confirmation on the Salary 2.2 LPA max offer Final Round with Gokul for Renewal/operations have exp in star health for 2 yrs', 108, '0000-00-00 00:00:00', 1),
(14939, 14602, 59, 3, 0, 'Selected for IT 5months Intern 3yrs emp conditions', 85, '0000-00-00 00:00:00', 1),
(14940, 14630, 59, 5, 0, 'Too long Distance Will not sustain and not much open with the TxxampC', 108, '0000-00-00 00:00:00', 1),
(14941, 14641, 59, 5, 0, 'Looking for Non voice will not sustain in our roles not suitable\n', 108, '0000-00-00 00:00:00', 1),
(14942, 14599, 59, 2, 0, 'Have knowledge in PHP Can give a try Need to check Sathish IT availability and schedule', 108, '0000-00-00 00:00:00', 1),
(14943, 14638, 59, 5, 0, 'Not open for Calling Roles will not sustain need to open up a lot', 108, '0000-00-00 00:00:00', 1),
(14944, 14637, 59, 5, 0, 'Looking for Core Data Analyst Role Will not sustain', 108, '0000-00-00 00:00:00', 1),
(14945, 14636, 59, 5, 0, 'Have Exp in non voice process Looking almost for the same roles will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(14946, 14635, 59, 5, 0, 'To long Distance up and down 52kms no basic knowledge in the JS skills if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(14947, 14634, 59, 5, 0, 'Need to come back after learning can give a try if he comes back ', 108, '0000-00-00 00:00:00', 1),
(14948, 14633, 59, 5, 0, 'Career Gap Not explaining properly will not sustain Not suitable', 108, '0000-00-00 00:00:00', 1),
(14949, 14632, 59, 5, 0, 'holding an offer with the intern company and looking for something more on that', 108, '0000-00-00 00:00:00', 1),
(14950, 14621, 59, 5, 0, 'Too long Distance Up and down 60kms will not sustain\n', 108, '0000-00-00 00:00:00', 1),
(14951, 14647, 59, 4, 0, '5050 Profile Have Exp in Calling but not a relevant one Can give a try Kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14952, 14645, 59, 5, 0, 'No Sustainability in her previous exp will not handle our work pressure Looking only for the salary growth', 108, '0000-00-00 00:00:00', 1),
(14953, 14649, 59, 5, 0, 'Too long Distance Technically Sounds Ok not comfort with the TxxampC not suitable', 108, '0000-00-00 00:00:00', 1),
(14954, 14651, 59, 5, 0, 'Too long Distance will not sustain 66kms up and down', 108, '0000-00-00 00:00:00', 1),
(14955, 14648, 59, 5, 0, 'Attitude will not handle our work Roles Salary exp is very high not suitable', 108, '0000-00-00 00:00:00', 1),
(14956, 14653, 59, 5, 0, 'No Sales Exp Will not sustain and handle our calls not suitable', 108, '0000-00-00 00:00:00', 1),
(14957, 14650, 59, 5, 0, 'Left without attending', 108, '0000-00-00 00:00:00', 1),
(14958, 14643, 59, 3, 0, 'Selected for Muthu team in consultant Role', 108, '0000-00-00 00:00:00', 1),
(14959, 14643, 13, 7, 0, 'communication skill good ok kindly confirm joinig', 59, '2023-10-07 04:49:15', 1),
(14960, 14647, 19, 5, 1, 'Rejected', 59, '2023-10-07 04:50:43', 1),
(14961, 14643, 59, 3, 0, 'Selected for Muthu team in consultant Role', 13, '2023-10-07 05:34:43', 1),
(14962, 14665, 97, 4, 0, 'Good covincing skill. sustainbility doubts ..let us try ..Checkxxampupdate your inputs', 104, '0000-00-00 00:00:00', 1),
(14963, 14666, 97, 2, 0, 'Has knowledge in prog.lau...she needs time to discuss with her parents  abt txxampc..', 104, '0000-00-00 00:00:00', 1),
(14964, 14662, 97, 5, 0, 'No communication.. has exp in MIS.', 104, '0000-00-00 00:00:00', 1),
(14965, 14667, 97, 5, 0, 'he much prefered logistic feild .. not suit for roles', 104, '0000-00-00 00:00:00', 1),
(14966, 14664, 97, 5, 0, 'Good communication.... has exp in acc but  fresher to our industry.. has  knowledege in tally gst tax.. sal expt high', 104, '0000-00-00 00:00:00', 1),
(14967, 14654, 59, 4, 0, 'Have Exp in Sales Calling Can be trained in our roles relevant Exp too kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14968, 14665, 89, 7, 0, 'Selected ', 97, '2023-10-09 06:19:47', 1),
(14969, 14661, 59, 5, 0, 'Fresher Need To Learn A Lot Not Much Comfort In TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14970, 14619, 59, 5, 0, 'No Communication No understanding poor Communication not suitable', 104, '0000-00-00 00:00:00', 1),
(14971, 14658, 59, 5, 0, 'Fresher Need To Learn A Lot Not Much Comfort In TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14972, 14656, 59, 5, 0, 'No basics Skills checked for Backend operations but not ok with that', 104, '0000-00-00 00:00:00', 1),
(14973, 14655, 59, 5, 0, 'Fresher need to learn a lot not much comfort in TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14974, 14670, 59, 5, 0, 'No communication understanding poor will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14975, 14663, 59, 5, 0, 'No Communication No understanding waste profile', 104, '0000-00-00 00:00:00', 1),
(14976, 14121, 59, 3, 0, 'Selected for Kannan Team opted Consultant Role\n', 104, '0000-00-00 00:00:00', 1),
(14977, 14672, 59, 3, 0, 'Selected for Santhosh Team in Staff Role', 60, '0000-00-00 00:00:00', 1),
(14978, 14672, 18, 7, 4, 'Reference Candidate selected for Santosh Team Immed Joiner and Package shall be discussed by arun', 59, '2023-10-09 07:40:05', 1),
(14979, 14654, 13, 7, 0, 'Good communication skill and Product knowledge kindly confirm joining date', 59, '2023-10-09 07:41:13', 1),
(14980, 14121, 19, 7, 5, 'Selected', 59, '2023-10-09 07:41:56', 1),
(14981, 14654, 59, 1, 0, NULL, 13, '2023-10-10 10:04:15', 1),
(14982, 14672, 60, 1, 0, NULL, 18, '2023-10-10 10:23:29', 1),
(14983, 14657, 74, 5, 0, 'not fit for telesales', 108, '0000-00-00 00:00:00', 1),
(14984, 14677, 74, 7, 0, 'She is a fresher , completed accounts currently, mother working as a house keeping in singapore, father tailor, over all income for family 40k , sister marrier 2 years back so facing financial struggle,, rental house in kumbakonam, native thanjavur , father work in thanjavur, and stay in grandma house , brother studied in kumbakonam and lavanaya also stay in kumbakonam in a rental house, have laptop and ready to join immedietly, , mentally unstable didnt make a right decision , voice active and job need higly , have laptop, kindly check and confirm your side 12k salary ', 108, '0000-00-00 00:00:00', 1),
(14985, 14688, 59, 5, 0, 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14986, 14689, 59, 5, 0, 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14987, 14678, 59, 3, 0, 'Selected for Shanmugam team in Staff Role', 104, '0000-00-00 00:00:00', 1),
(14988, 14687, 59, 5, 0, 'Too long Distance no sustainability not suitable', 104, '0000-00-00 00:00:00', 1),
(14989, 14675, 59, 5, 0, 'Too long Distance 60kms up down will not sustain', 104, '0000-00-00 00:00:00', 1),
(14990, 14684, 59, 5, 0, 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14991, 14683, 59, 5, 0, 'Not Suitable No professional Candidate not suitable', 104, '0000-00-00 00:00:00', 1),
(14992, 14680, 59, 5, 0, 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14993, 14674, 59, 4, 0, 'Fresher need to train a lot only thing is her physique need to check kindly look into the profile and let us know', 104, '0000-00-00 00:00:00', 1),
(14994, 14673, 59, 5, 0, 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14995, 14679, 59, 5, 0, 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14996, 14681, 59, 5, 0, 'Fresher Need to train a lot in JS Not Much ok with TxxampC If he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14997, 14685, 59, 4, 0, '5050 Profile fresher Need to train a lot referring your name do check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14998, 14682, 59, 3, 0, 'Selected for Mani Team Staff Role', 104, '0000-00-00 00:00:00', 1),
(14999, 14685, 53, 1, 0, NULL, 59, '2023-10-10 07:27:37', 1),
(15000, 14678, 44, 7, 4, 'Candidate ok for me please do the Further process  ', 59, '2023-10-10 07:34:19', 1),
(15001, 14682, 86, 7, 0, 'Shortlisted For My team', 59, '2023-10-10 07:34:57', 1),
(15002, 14674, 53, 1, 0, NULL, 59, '2023-10-10 07:35:55', 1),
(15003, 14677, 59, 3, 0, 'Selected for Consultant Sustainability Doubts need to analyse in 7 days and confirm', 74, '2023-10-11 10:10:54', 1),
(15004, 14682, 60, 1, 0, NULL, 86, '2023-10-11 10:41:19', 1),
(15005, 14709, 59, 5, 0, 'No suitable  for our role Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15006, 14708, 59, 5, 0, 'Malpracticed in her previous Work will not sustain in our roles not suitabel', 104, '0000-00-00 00:00:00', 1),
(15007, 14705, 59, 5, 0, 'Average Communication left without attending the 2nd level', 104, '0000-00-00 00:00:00', 1),
(15008, 14706, 59, 5, 0, 'Not suitabke no sustainability ', 104, '0000-00-00 00:00:00', 1),
(15009, 14704, 59, 4, 0, 'Terminated Ex Emp since not getting jobs due to eduction drop looking for opportunities', 104, '0000-00-00 00:00:00', 1),
(15010, 14702, 59, 4, 0, 'Have Exp in sales Location only constraint can be trained exp high kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(15011, 14695, 59, 5, 0, 'No basics Sales Skills no Communication not suitable', 104, '0000-00-00 00:00:00', 1),
(15012, 14697, 59, 3, 0, 'Seleted for Mani team in  staff role fresh for our domain', 104, '0000-00-00 00:00:00', 1),
(15013, 14703, 59, 5, 0, 'Too Long Distance Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15014, 14701, 59, 5, 0, 'No Communication Fresher for our Roles holding an offer for 15K Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15015, 14700, 59, 5, 0, 'Too Long Distance Will Not Sustain No Communication not suitable', 104, '0000-00-00 00:00:00', 1),
(15016, 14699, 59, 5, 0, 'Too Long Distance Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15017, 14698, 59, 5, 0, 'Too long Distance will not sustain', 104, '0000-00-00 00:00:00', 1),
(15018, 14696, 59, 4, 0, '5050 Fresher for our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(15019, 14665, 59, 3, 0, 'Selected for Babu Team Consultant Role', 89, '2023-10-11 06:13:24', 1),
(15020, 14702, 13, 7, 0, 'she is already experience in star ok but salary Exp is High kindly check ', 59, '2023-10-11 07:43:51', 1),
(15021, 14704, 29, 1, 0, NULL, 59, '2023-10-11 07:46:58', 1),
(15022, 14696, 13, 5, 0, 'she is not fit for tele sales, voice is very low and communication skill not well', 59, '2023-10-11 07:49:49', 1),
(15023, 14697, 86, 4, 0, 'Selected for next Round', 59, '2023-10-11 07:50:33', 1),
(15024, 14697, 18, 7, 0, 'Immed joiner for mani team. Asked Arun to negotiate the salary. Reference candidate but need to filter in the 1st week...', 86, '2023-10-12 09:51:41', 1),
(15025, 14697, 60, 1, 0, NULL, 18, '2023-10-12 09:56:57', 1),
(15026, 14678, 60, 1, 0, NULL, 44, '2023-10-12 10:01:27', 1),
(15027, 14692, 74, 7, 0, 'she is ok with the profile , clear and active mindset, completed b.ed in thiruchengodu....i thnajvur getting 7k for teaching profile so decide to join in cafs....father farmer mother house wife and heart patient, chiristina also have heart problem, but in basic stage getting tablets only, open minded , have laptop and joining on monday, expected 12k and have one younger sister , studied 12th, near by house only 10 mins to reach office, kindly check once and confirm,', 108, '0000-00-00 00:00:00', 1),
(15028, 14692, 59, 3, 0, 'Selected for Thanjavur consultant Role Need to analyse in 7days Teacher profile focused candidate', 74, '2023-10-12 01:03:43', 1),
(15029, 14728, 59, 4, 0, 'Have 7 months Exp in calling 5050 can be trained kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15030, 14712, 59, 5, 0, 'Left Without attending', 108, '0000-00-00 00:00:00', 1),
(15031, 14732, 59, 5, 0, 'No basic ideas in Accounts skills not suitable', 108, '0000-00-00 00:00:00', 1),
(15032, 14735, 59, 5, 0, 'Communication Average will not handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(15033, 14729, 59, 5, 0, 'Will not sustain and handle our work pressure Not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(15034, 14721, 59, 4, 0, '5050 profile Previous sustainability no Sounding Good kindly check and let me know yourinputs', 108, '0000-00-00 00:00:00', 1),
(15035, 14731, 59, 5, 0, 'Not suitable for our roles have super market exp will not sustain and handle our pressure', 108, '0000-00-00 00:00:00', 1),
(15036, 14710, 59, 5, 0, 'Fresher not open for TxxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15037, 14711, 59, 5, 0, 'Fresher Not Open For TxxampC If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15038, 14725, 59, 5, 0, 'Have Exp but not much strong min exp is 30K', 108, '0000-00-00 00:00:00', 1),
(15039, 14727, 59, 5, 0, 'Too age for our roles 47yrs not suitable', 108, '0000-00-00 00:00:00', 1),
(15040, 14707, 59, 5, 0, 'Fresher Not  muchOpen For TxxampC If He Comes Back Let Us Try too long distance', 108, '0000-00-00 00:00:00', 1),
(15041, 14726, 59, 5, 0, 'Fresher for our roles have admin exp will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(15042, 14718, 59, 5, 0, 'Frequent job changes career gap not much importance for the job not suitbale', 108, '0000-00-00 00:00:00', 1),
(15043, 14717, 59, 5, 0, 'No voice Clarity Pronunciation poor not suitable', 108, '0000-00-00 00:00:00', 1),
(15044, 14686, 59, 5, 0, 'Fresher Not Open For TxxampC If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15045, 14720, 59, 5, 0, '\nfor time being looking for the job will not sustain not suitbale', 108, '0000-00-00 00:00:00', 1),
(15046, 14723, 59, 4, 0, 'Fresher for our role can give a try  kindly check  and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15047, 14671, 59, 4, 0, 'Fresher Sounding soft can be trained kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15048, 14734, 59, 5, 0, 'Not suitable age around 42 yrs communication average his current earning 50K', 108, '0000-00-00 00:00:00', 1),
(15049, 14671, 53, 1, 0, NULL, 59, '2023-10-12 07:06:18', 1),
(15050, 14721, 51, 5, 0, 'Rejected', 59, '2023-10-12 07:13:46', 1),
(15051, 14723, 53, 1, 0, NULL, 59, '2023-10-12 07:23:29', 1),
(15052, 14728, 13, 7, 0, 'She is 7 Months Exp In Tele Calling, voice is bold and communication skill ok will be Trained our role so kindly confirm joining Date', 59, '2023-10-12 07:25:31', 1),
(15053, 14121, 59, 3, 0, 'Selected for Kannan Team opted Consultant Role\n', 19, '2023-10-13 10:10:05', 1),
(15054, 14702, 59, 1, 0, NULL, 13, '2023-10-13 11:48:30', 1),
(15055, 14728, 59, 1, 0, NULL, 13, '2023-10-13 12:07:57', 1),
(15056, 14756, 59, 5, 0, 'No basic Skills in IT/Lookin for oracle SQL', 108, '0000-00-00 00:00:00', 1),
(15057, 14754, 59, 5, 0, 'Souding low No Confidene Will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15058, 14755, 59, 5, 0, 'No Understanding Will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15059, 14745, 59, 5, 0, 'Have some medical Issue Earlier Not much Relevant our roles will not handle', 108, '0000-00-00 00:00:00', 1),
(15060, 14746, 59, 5, 0, 'Have Exp in Accounts No Bike Need time to confirm if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15061, 14748, 59, 5, 0, 'Will not Sustain not much comfort in TxxampC Flutter Fresher have reference in IT', 108, '0000-00-00 00:00:00', 1),
(15062, 14747, 59, 5, 0, 'Not open for TxxampC Will not sustain looking for salary only', 108, '0000-00-00 00:00:00', 1),
(15063, 14722, 59, 5, 0, 'Need to learn and come back Sustainability Doubts if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15064, 14744, 59, 5, 0, 'Fresher need to train from scratch Salary Exp min 20K Will not sustain', 108, '0000-00-00 00:00:00', 1),
(15065, 14737, 59, 5, 0, 'Need to learn and come not much comffort in TxxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15066, 14740, 59, 4, 0, 'Have Exp in Calling for 3months 5050 Sustainability doubts kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15067, 14741, 59, 4, 0, 'Have Exp in calling and different exposure 5050 for our sales roles kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15068, 14749, 59, 4, 0, '5050 profile Sustainability doubts check for mani team and let me know your status', 108, '0000-00-00 00:00:00', 1),
(15069, 14769, 59, 5, 0, 'Too long Distance only to relocate to native looking for opportunities will not sustain', 104, '0000-00-00 00:00:00', 1),
(15070, 14768, 59, 5, 0, 'Too Long Distance Will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(15071, 14766, 59, 5, 0, 'Location constraint he is from Kanchipuram Not much comfort in Relocation will not sustain and over confidence', 104, '0000-00-00 00:00:00', 1),
(15072, 14765, 59, 5, 0, 'Flutter Exp for 8 months Salary Exp is very high min 25K Will not sustain and focus much for salary only', 104, '0000-00-00 00:00:00', 1),
(15073, 14761, 59, 5, 0, 'Not much in basics Need to learn a lot if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15074, 14757, 59, 5, 0, 'Not Mcuh Good in Basics Need to come back with his confirmation if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15075, 14743, 59, 5, 0, 'Looking for Salary Only Will not sustain in our roles Reference he has with other companies too', 104, '0000-00-00 00:00:00', 1),
(15076, 14764, 59, 3, 0, 'Selected for Mutual Fund Fresher in Staff no Stat Role need to train from Scratch', 104, '0000-00-00 00:00:00', 1),
(15077, 14749, 71, 5, 0, 'Not Fit For Sales', 59, '2023-10-14 05:18:04', 1),
(15078, 14740, 57, 1, 0, NULL, 59, '2023-10-14 05:20:16', 1),
(15079, 14741, 19, 5, 1, 'not fit for sales', 59, '2023-10-14 05:21:00', 1),
(15080, 14813, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15081, 14798, 59, 5, 0, 'Left With Out Attending', 108, '0000-00-00 00:00:00', 1),
(15082, 14819, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15083, 14784, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15084, 14808, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15085, 14802, 59, 5, 0, 'Not suitable for our roles will not sustain and handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15086, 14812, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15087, 14806, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15088, 14805, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15089, 14782, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15090, 14818, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15091, 14803, 59, 5, 0, 'Left With Out Attending', 108, '0000-00-00 00:00:00', 1),
(15092, 14786, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15093, 14785, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15094, 14783, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15095, 14788, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15096, 14796, 59, 3, 0, 'Node -6k-8k then 10-15K 3.5 yrs SA', 104, '0000-00-00 00:00:00', 1),
(15097, 14814, 59, 2, 0, 'Need to come back after her confirmation from parents on TxxampC', 108, '0000-00-00 00:00:00', 1),
(15098, 14781, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15099, 14780, 59, 5, 0, 'Need to come back with his confirmation on TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15100, 14800, 59, 5, 0, 'Not Active Profile will not sustain not suitable', 104, '0000-00-00 00:00:00', 1),
(15101, 14790, 59, 5, 0, 'Need to confirm his acceptance on the TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15102, 14811, 59, 2, 0, 'Need to come back with his confirmation on TxxampC\n', 108, '0000-00-00 00:00:00', 1),
(15103, 14801, 59, 5, 0, 'Looking for non Voice process only', 104, '0000-00-00 00:00:00', 1),
(15104, 14817, 59, 5, 0, 'Left With Out Attending', 108, '0000-00-00 00:00:00', 1),
(15105, 14774, 59, 4, 0, 'Have Exp in Sales but not a relevant one Sounding Good Can be trained in our roles sir kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(15106, 14816, 59, 5, 0, 'Left With Out Attending', 108, '0000-00-00 00:00:00', 1),
(15107, 14804, 59, 5, 0, 'Not suitable Low Quality Candidate will not sustain and handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(15108, 14815, 59, 5, 0, 'Left with out attending', 108, '0000-00-00 00:00:00', 1),
(15109, 14807, 59, 2, 0, 'Need to come with his confirmation and yet to get his Github link for project access\n', 104, '0000-00-00 00:00:00', 1),
(15110, 14777, 59, 5, 0, 'Too long Distance no bike Sustainability issue Not much strong with Accounts Skills', 108, '0000-00-00 00:00:00', 1),
(15111, 14763, 59, 5, 0, 'Sounding Low and no confidence will not sustain not suitable', 108, '0000-00-00 00:00:00', 1),
(15112, 14760, 59, 5, 0, 'Have exp as process Asso Recently married and sustainability doubts if she comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15113, 14792, 59, 5, 0, 'Will not Run in a long Mentioned Exp and the salary exp is high will not sustain', 108, '0000-00-00 00:00:00', 1),
(15114, 14793, 59, 5, 0, 'Too long Distance Will not sustain need to learn a lot ', 108, '0000-00-00 00:00:00', 1),
(15115, 14794, 59, 5, 0, 'Not much comfort in TxxampC if he comes back let us try need to learn and come', 108, '0000-00-00 00:00:00', 1),
(15116, 14795, 59, 5, 0, 'Not open for TxxampC Need Time to think and confirm if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15117, 14797, 59, 5, 0, 'Mentioned Exp in relevant Attitude candidate frequent job changes will not suits for our role', 108, '0000-00-00 00:00:00', 1),
(15118, 14767, 59, 5, 0, 'VEry Slow Candidate not Aggressive will not sustain and handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15119, 14791, 74, 7, 0, 'he is ok with the profile father telling farmer but refered by bala he i telling father in foreign only, 3 acres land having for farming, have laptop , completed mba hr and fresher also expected 12k, and ready to join , kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(15120, 14791, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2023-10-16 06:53:20', 1),
(15121, 14774, 31, 1, 0, NULL, 59, '2023-10-16 06:57:14', 1),
(15122, 14809, 59, 2, 0, 'Will come for final round with Gokul 2nd Round sathish ok with the profile for backend node', 104, '0000-00-00 00:00:00', 1),
(15123, 14779, 74, 7, 0, 'he is ok with the profile father passed away 20 years back, now staying in uncles home in orathanadu, 1 hour travel, brother working in construction company earning 15k, mother cancer patient, highly job need and have rsponspility to take care of him, completed BE automobile and have little experience in automobile industry ....expected  15 to 18k, ready to join after pooja holidays,have laptop kindly confirm once not concluded about salary so cross check once, but candidate in good quaity fit for team and sales', 108, '0000-00-00 00:00:00', 1),
(15124, 14827, 59, 2, 0, 'Final Round Pending 2nd round with Sathish', 104, '0000-00-00 00:00:00', 1),
(15125, 14843, 59, 5, 0, 'Seems to be not genuine with his exp will not sustain in our roles', 104, '0000-00-00 00:00:00', 1),
(15126, 14820, 59, 5, 0, 'No Sustainability in her previous exp will not sustain in our roles not suitable', 104, '0000-00-00 00:00:00', 1),
(15127, 14840, 59, 5, 0, 'Looking for non Voice Process only', 104, '0000-00-00 00:00:00', 1),
(15128, 14828, 59, 5, 0, 'Too long Distance Will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(15129, 14835, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15130, 14829, 59, 5, 0, 'Not open for TxxampC Will notSustain  not suitbale', 104, '0000-00-00 00:00:00', 1),
(15131, 14825, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15132, 14824, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15133, 14823, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain if he comes back let us try in our roles', 104, '0000-00-00 00:00:00', 1),
(15134, 14822, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15135, 14821, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15136, 14831, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15137, 14841, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15138, 14833, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15139, 14837, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15140, 14836, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15141, 14838, 59, 5, 0, 'Not open for Terms and conditions fresher for our roles not suitable will not sustain', 104, '0000-00-00 00:00:00', 1),
(15142, 14834, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15143, 14830, 59, 5, 0, 'Technical Round Reject by Kavya', 104, '0000-00-00 00:00:00', 1),
(15144, 14779, 59, 1, 0, NULL, 74, '2023-10-17 04:40:47', 1),
(15145, 14853, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15146, 14861, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15147, 14852, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15148, 14851, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15149, 14863, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15150, 14850, 59, 4, 0, '5050 Profile open fr TxxampC Kindly chek an dlet me knwo your inputs', 108, '0000-00-00 00:00:00', 1),
(15151, 14846, 59, 5, 0, 'Not suitable will not handle our work pressure profile will not sustain', 108, '0000-00-00 00:00:00', 1),
(15152, 14848, 59, 5, 0, 'Looking only for Salary Growth No ideas in MIS No Communication not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(15153, 14845, 59, 2, 0, 'Need to check with Gokul for MIS Have Exp but need to finalise based on the final round Will confirm later', 108, '0000-00-00 00:00:00', 1),
(15154, 14864, 59, 2, 0, 'Should check for other profile if he comes back', 108, '0000-00-00 00:00:00', 1),
(15155, 14854, 59, 5, 0, 'Not suitable fr our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(15156, 14847, 59, 5, 0, 'Need time to confirm the TxxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15157, 14856, 59, 5, 0, 'No Sustainability frequent Job Changes not suitable', 108, '0000-00-00 00:00:00', 1),
(15158, 14770, 59, 5, 0, 'Not open for TxxampC', 108, '0000-00-00 00:00:00', 1),
(15159, 14868, 59, 5, 0, 'Too long Distance Looking for non voice', 108, '0000-00-00 00:00:00', 1),
(15160, 14866, 59, 5, 0, 'Fresher For Our Sales Need To Be Trained Kindly Check For Muthu Team And Let Me Know The Status', 108, '0000-00-00 00:00:00', 1),
(15161, 14865, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 108, '0000-00-00 00:00:00', 1),
(15162, 14862, 59, 5, 0, 'Will not sustain up and down 50kms not in a stable mind will not sustain', 108, '0000-00-00 00:00:00', 1),
(15163, 14844, 59, 3, 0, 'Selected for GK Sir Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(15164, 14867, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 108, '0000-00-00 00:00:00', 1),
(15165, 14859, 59, 5, 0, 'Not openf or TxxampC', 108, '0000-00-00 00:00:00', 1),
(15166, 14860, 59, 5, 0, 'Not open for TxxampC', 108, '0000-00-00 00:00:00', 1),
(15167, 14857, 108, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15168, 14849, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15169, 14855, 108, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15170, 14858, 108, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15171, 14844, 31, 4, 4, 'Candidate okay forwarded to next round', 59, '2023-10-18 07:24:51', 1),
(15172, 14865, 13, 7, 0, 'voice clarity and confident level is ok ,will be Trained kindly confirm joining date', 59, '2023-10-18 07:26:52', 1),
(15173, 14850, 27, 1, 0, NULL, 59, '2023-10-18 07:33:07', 1),
(15174, 14867, 89, 7, 0, 'Selected ', 59, '2023-10-18 07:40:54', 1),
(15175, 14789, 59, 3, 0, 'SElected for ITintern 5m plus 3 yrs emp ', 60, '0000-00-00 00:00:00', 1),
(15176, 14869, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15177, 14893, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15178, 14886, 59, 4, 0, 'Have Exp in Sales Calling Can be trained in our roles kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15179, 14894, 59, 5, 0, 'Not Much active Very slow will not handle our roles', 108, '0000-00-00 00:00:00', 1),
(15180, 14890, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15181, 14892, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15182, 14885, 59, 5, 0, 'Not open for Customer Support Salary exp is high will not sustain', 108, '0000-00-00 00:00:00', 1),
(15183, 14880, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15184, 14882, 59, 5, 0, 'Fresher for Roles need to open a lot will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(15185, 14884, 59, 5, 0, 'Not suitable need to open a lot will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15186, 14870, 59, 5, 0, 'Career Gap not much interest with the jobs will not sustain and handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15187, 14867, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 89, '2023-10-19 06:17:19', 1),
(15188, 14881, 59, 5, 0, 'Not much active iwll not handle need to open up', 108, '0000-00-00 00:00:00', 1),
(15189, 14877, 59, 4, 0, '5050 Profile have exp in same but sustainability doubts considering her marriage proposals kindly check and let me know you inputs', 108, '0000-00-00 00:00:00', 1),
(15190, 14871, 59, 5, 0, 'Not suitable profile will not handle our roles', 108, '0000-00-00 00:00:00', 1),
(15191, 14773, 59, 5, 0, 'Fresher for our roles Not open for TxxampC Need to learn a lot if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15192, 14878, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15193, 14879, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15194, 14883, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15195, 14873, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15196, 14875, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(15197, 14874, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15198, 14886, 31, 1, 0, NULL, 59, '2023-10-19 07:15:53', 1),
(15199, 14877, 13, 7, 0, 'star la 2yrs experience irukku but basic terms kooda clear ah terila but communication skill ok   joining  Date confirm pannaum', 59, '2023-10-19 07:19:57', 1),
(15200, 14877, 59, 1, 0, NULL, 13, '2023-10-20 10:04:59', 1),
(15201, 14909, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15202, 14916, 59, 3, 0, 'Selected for Intern with TxxampC', 108, '0000-00-00 00:00:00', 1),
(15203, 14915, 59, 2, 0, 'Need to come back with his confirmation on the TxxampC if he comes back let us try Final round with Gokul Done he is almost ok with the candidate', 108, '0000-00-00 00:00:00', 1),
(15204, 14912, 59, 5, 0, 'No Local Language Gujarati Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15205, 14901, 59, 5, 0, 'Looking for Home healthcare based profile not suitable for us will not sustain in our roles', 108, '0000-00-00 00:00:00', 1),
(15206, 14776, 59, 5, 0, 'Looking for salary rise only 9 months exp and min 18K Exp not relevant exp too not much comfort in Telesales', 108, '0000-00-00 00:00:00', 1),
(15207, 14905, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15208, 14908, 59, 5, 0, 'Lookin for AR Analyst Role not suitable', 108, '0000-00-00 00:00:00', 1),
(15209, 14876, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15210, 14903, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15211, 14872, 59, 5, 0, 'Not open for TxxampC Need to learn a lot Fresher if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15212, 14906, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15213, 14913, 59, 5, 0, 'Left wothout attending', 108, '0000-00-00 00:00:00', 1),
(15214, 14895, 59, 2, 0, 'Round with Manikandan Auditor Hold not much good with basics', 108, '0000-00-00 00:00:00', 1),
(15215, 14910, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15216, 14902, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15217, 14898, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15218, 14899, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15219, 14897, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15220, 14907, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15221, 14904, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15222, 14891, 59, 4, 0, 'have Exp in Calling Sustainability Ok with previous exp Salary exp is min 35K Kindly check and let me know your inputs sir', 108, '0000-00-00 00:00:00', 1),
(15223, 14900, 59, 5, 0, 'Not suitable for our roles ', 108, '0000-00-00 00:00:00', 1),
(15224, 14917, 59, 5, 0, 'Too long Distance will not sustain and not suitbale', 108, '0000-00-00 00:00:00', 1),
(15225, 14891, 18, 8, 0, 'Not Attended', 59, '2023-10-20 07:39:22', 1),
(15226, 14922, 59, 2, 0, 'Need to come for final round fresher can give a try for MIS need to check with Gokul', 104, '0000-00-00 00:00:00', 1),
(15227, 14923, 59, 5, 0, 'Not open for TxxampC He needs time to confirm if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15228, 14924, 59, 5, 0, 'No Sustainability need to open up alot will not sustain and not suitbale', 104, '0000-00-00 00:00:00', 1),
(15229, 14921, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(15230, 14921, 13, 7, 0, 'communication skill and Confident level is ok kindly konfirm joining date', 59, '2023-10-21 06:54:42', 1),
(15231, 14921, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2023-10-24 11:13:02', 1),
(15232, 14896, 59, 5, 0, 'Not Much ok with the TxxampC  Will not sustain Fresher ', 104, '0000-00-00 00:00:00', 1),
(15233, 13488, 59, 5, 0, 'Not Sutible for our roles will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(15234, 14932, 59, 5, 0, 'Not Much Ok With The TxxampC  Will Not Sustain Fresher ', 104, '0000-00-00 00:00:00', 1),
(15235, 14933, 59, 5, 0, 'Not Much Ok With The TxxampC  Will Not Sustain Fresher ', 104, '0000-00-00 00:00:00', 1),
(15236, 14942, 59, 5, 0, 'Not Much Ok With The TxxampC  Will Not Sustain Fresher ', 104, '0000-00-00 00:00:00', 1),
(15237, 14940, 59, 5, 0, 'Not Suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(15238, 14937, 59, 5, 0, 'Looking for non voice Process ', 104, '0000-00-00 00:00:00', 1),
(15239, 14919, 59, 5, 0, 'Left Without attending the 2nd level interview with Muthu', 104, '0000-00-00 00:00:00', 1),
(15240, 14934, 59, 5, 0, 'Left Without Attending The 2nd Level Interview With Muthu', 104, '0000-00-00 00:00:00', 1),
(15241, 14935, 59, 5, 0, 'Left Without Attending The 2nd Level Interview With Muthu', 104, '0000-00-00 00:00:00', 1),
(15242, 14944, 59, 5, 0, 'Not suitable for ourroles will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(15243, 14936, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(15244, 14927, 59, 2, 0, 'Ok with TxxampC Shortlisted by Gokul yet to confirm the DOJ', 85, '0000-00-00 00:00:00', 1),
(15245, 14929, 59, 3, 0, 'Selected for IT intern Employment', 85, '0000-00-00 00:00:00', 1),
(15246, 14941, 59, 2, 0, '5050 Profile have a atttitude need time to confirm by Gokul', 85, '0000-00-00 00:00:00', 1),
(15247, 14943, 59, 4, 0, 'Team Reference not open for Telesales kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(15248, 14943, 57, 5, 0, 'Not good', 59, '2023-10-24 07:41:28', 1),
(15249, 14936, 57, 7, 0, 'Candidate is ok he have 6 month lil Experience same domain \n\nOk confirm salary and joining date', 59, '2023-10-24 07:45:34', 1),
(15250, 14936, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 57, '2023-10-24 09:26:40', 1),
(15251, 14844, 29, 7, 3, 'gk team', 31, '2023-10-25 07:02:20', 1),
(15252, 14844, 59, 3, 0, 'Selected for GK Sir Team in Staff Role', 29, '2023-10-26 10:24:19', 1),
(15253, 14931, 59, 5, 0, 'Not suitable for our roles not open for target based will not sustain', 104, '0000-00-00 00:00:00', 1),
(15254, 14969, 59, 2, 0, 'Candidate need to confirm her joining', 108, '0000-00-00 00:00:00', 1),
(15255, 14953, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15256, 14939, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15257, 14947, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15258, 14946, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15259, 14938, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15260, 14945, 59, 2, 0, 'Need to schedule virtual Round for the accounts salary Exp is high', 104, '0000-00-00 00:00:00', 1),
(15261, 14968, 59, 5, 0, 'Fresher not suitable for Roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(15262, 14948, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 104, '0000-00-00 00:00:00', 1),
(15263, 14600, 59, 5, 0, 'Candidate Not much open with the TxxampC Need to check with family and come back if comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15264, 14950, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15265, 14965, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15266, 14959, 59, 5, 0, 'Too lon Distance will not sustain in our roles not suitable ', 108, '0000-00-00 00:00:00', 1),
(15267, 14977, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15268, 14972, 59, 5, 0, 'Mentally he is not stable not suitable will not sustain', 108, '0000-00-00 00:00:00', 1),
(15269, 14958, 59, 3, 0, 'Selected for MIS role Final Round Shortlisted by Gokul Candidate need to give his confirmation on Roles\n', 108, '0000-00-00 00:00:00', 1),
(15270, 14973, 59, 5, 0, 'Over Confidence Communication Ok but wuill not sustain and handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15271, 14962, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15272, 14954, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15273, 14956, 59, 5, 0, ' too long Distance will not sustain in our roles pressure handling Doubts not suitable', 108, '0000-00-00 00:00:00', 1),
(15274, 14964, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15275, 14963, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15276, 15021, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15277, 15020, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15278, 15019, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15279, 15004, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15280, 15016, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15281, 15015, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15282, 15005, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15283, 15003, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15284, 15014, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15285, 15002, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15286, 15013, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15287, 15011, 59, 5, 0, 'Will not sustain in our roles not suitable pressure handling doubts', 108, '0000-00-00 00:00:00', 1),
(15288, 15012, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15289, 14928, 59, 2, 0, 'Virtual should be arranged Need to check for accounts', 108, '0000-00-00 00:00:00', 1),
(15290, 15007, 59, 4, 0, '5050 Profile have exp but need to check for roles kindly check ans let us know your inputs', 108, '0000-00-00 00:00:00', 1),
(15291, 15010, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15292, 15022, 30, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15293, 14952, 59, 3, 0, 'Selected for Mutual Fund Role in Staff No Stat fnal round with Gokul and got selecetd', 60, '0000-00-00 00:00:00', 1),
(15294, 15024, 59, 2, 0, 'Need to check for Virtual Accounts Profile', 108, '0000-00-00 00:00:00', 1),
(15295, 15037, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15296, 15023, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15297, 15036, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15298, 15032, 59, 2, 0, 'Need to confirm the DOj for MIS Final Roudn with Gokul if he comes abck let us try', 108, '0000-00-00 00:00:00', 1),
(15299, 15031, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15300, 15035, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15301, 15034, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15302, 15028, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15303, 15018, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15304, 15027, 59, 5, 0, 'Appeared for Accounts Profile Not Much quality on the profile will not sustain and handle the pressure', 108, '0000-00-00 00:00:00', 1),
(15305, 15038, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15306, 15063, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15307, 15055, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15308, 15061, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15309, 15054, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15310, 15041, 59, 5, 0, 'Not suitable for our roles will not sustain in our profile ', 104, '0000-00-00 00:00:00', 1),
(15311, 15053, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15312, 15047, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15313, 15044, 59, 5, 0, 'Much focusin non voice process Will not run in a long', 104, '0000-00-00 00:00:00', 1),
(15314, 15050, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15315, 15052, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15316, 15051, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15317, 15029, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15318, 15049, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15319, 15048, 59, 5, 0, 'Looking for non voice process only not suitable for our other roles too', 108, '0000-00-00 00:00:00', 1),
(15320, 15062, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15321, 15059, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15322, 15057, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15323, 15060, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15324, 15056, 59, 5, 0, 'Have Exp but not much suits for our sales call,will not take call not suitable', 104, '0000-00-00 00:00:00', 1),
(15325, 15075, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15326, 15081, 53, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15327, 15085, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15328, 15083, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15329, 15079, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15330, 15080, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15331, 15065, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15332, 15066, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15333, 15077, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15334, 15074, 97, 5, 0, 'looking for inside sales sal expt high', 108, '0000-00-00 00:00:00', 1),
(15335, 15067, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15336, 15073, 97, 7, 0, 'Candidate from qspider interviewed xxamp Selected by gokul.', 108, '0000-00-00 00:00:00', 1),
(15337, 15069, 97, 7, 0, 'Candidate from Q-spider.. Interviewed xxamp Selected By gokul.', 108, '0000-00-00 00:00:00', 1),
(15338, 15078, 97, 7, 0, 'Has knowledge in HTML,CSSxxampJS..SNR technical Interviewed by lokesh . xxamp Final Round interviewed xxamp Selected by Gokul ', 108, '0000-00-00 00:00:00', 1),
(15339, 15076, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15340, 15073, 59, 3, 0, 'Selected for IT intern and employment', 97, '2023-11-02 10:01:38', 1),
(15341, 15069, 59, 3, 0, 'Intern with 5month 5K Stipend then 10-12K Salary ', 97, '2023-11-02 05:44:00', 1),
(15342, 15078, 59, 1, 0, NULL, 97, '2023-11-02 05:52:30', 1),
(15343, 15104, 59, 5, 0, 'Not suitable No sustainability Communication Average will not handle our roles', 108, '0000-00-00 00:00:00', 1),
(15344, 14733, 59, 3, 0, 'Intern With Employment 5months6K then 3yrs 10-14K', 60, '0000-00-00 00:00:00', 1),
(15345, 15097, 59, 2, 0, 'Hold by Gokul Direct Meet with Gokul and the Profile on Hold if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15346, 15105, 59, 2, 0, 'Have Exp fresher for our Roles Good Communication Final round with Gokul if he os ok for 1.8LPA for 3 month then 2.4 we can proceed', 104, '0000-00-00 00:00:00', 1),
(15347, 15106, 59, 5, 0, 'Not attended', 104, '0000-00-00 00:00:00', 1),
(15348, 15107, 59, 5, 0, 'Final Round Reject by Gokull Will not sustain have Exp in BGV process Not suitable', 104, '0000-00-00 00:00:00', 1),
(15349, 15110, 59, 5, 0, 'Final Round Reject by Gokul Fresher will not sustain in our roles', 104, '0000-00-00 00:00:00', 1),
(15350, 15112, 59, 2, 0, 'Good Candidate have Exp in MIS Final Round with Gokul Candidate need to give his confirmation on the salary if he is ok for 3LPa we can proceed', 104, '0000-00-00 00:00:00', 1),
(15351, 15114, 59, 4, 0, '5050 Profile have few months exp sustainability doubts kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(15352, 15113, 59, 5, 0, 'Technical Team reject with Sathish group meet with sathish', 104, '0000-00-00 00:00:00', 1),
(15353, 15115, 59, 3, 0, 'React-6k-8k then 10-15K', 104, '0000-00-00 00:00:00', 1),
(15354, 15116, 59, 2, 0, 'Final Round with Gokul and selected for MIS 30% Hike approved by Gokul notice he need to serve and confirm the Date', 104, '0000-00-00 00:00:00', 1),
(15355, 15117, 59, 5, 0, 'Technical round rejct with Sathish Group Meet with Sathish', 104, '0000-00-00 00:00:00', 1),
(15356, 15118, 59, 5, 0, 'Technical Round Reject with Sathish Group Meet with Sathish', 104, '0000-00-00 00:00:00', 1),
(15357, 15120, 59, 5, 0, 'Communication Ok but the salary exp is high and sustainability doubts  A LOT', 104, '0000-00-00 00:00:00', 1),
(15358, 15123, 59, 5, 0, 'No Basic Skills in recruitment Have 6 months Exp and looking only for the salary growth', 104, '0000-00-00 00:00:00', 1),
(15359, 15124, 59, 5, 0, 'Fresher Pressure handling No wll not sustain and handle our roles not suitable', 104, '0000-00-00 00:00:00', 1),
(15360, 15127, 74, 7, 0, 'she is ok with the profile already worked in us voice process in a health care centre and releived due night shift , expected 15k worked 1 year and now brother stomach operation now he wants to join with family and work in thanjavur only required , family dicussed about maried after one year, have laptop and kindly check once for joining and cross check once sir', 108, '0000-00-00 00:00:00', 1),
(15361, 15114, 13, 5, 0, 'she is not fit for tele sales and voice is very low', 59, '2023-11-04 03:24:20', 1),
(15362, 15007, 44, 1, 0, NULL, 59, '2023-11-04 03:45:54', 1),
(15363, 15103, 59, 5, 0, 'Not suitable for our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(15364, 15102, 54, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15365, 15100, 54, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15366, 15099, 54, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15367, 15089, 59, 5, 0, 'No basic skillls will not sustain in our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(15368, 15141, 59, 5, 0, 'Left without attending', 108, '0000-00-00 00:00:00', 1),
(15369, 15134, 59, 3, 0, 'Selecetd for Recruiter need to give her confirmation on Roles', 108, '0000-00-00 00:00:00', 1),
(15370, 15144, 59, 4, 0, 'Have Exp in calling need to check her sustainability ', 108, '0000-00-00 00:00:00', 1),
(15371, 15139, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15372, 15138, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15373, 15135, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15374, 15137, 59, 5, 0, 'No confidence need to open a lot not suitable', 108, '0000-00-00 00:00:00', 1),
(15375, 15133, 59, 5, 0, 'Need to open up a lot pressure handling doubt not suitable', 108, '0000-00-00 00:00:00', 1),
(15376, 15121, 59, 5, 0, 'Not open for timing between 09-07 Will not sustain', 108, '0000-00-00 00:00:00', 1),
(15377, 15132, 59, 5, 0, 'Need to open up Pronunciation not much ok not suitbale', 108, '0000-00-00 00:00:00', 1),
(15378, 15131, 59, 5, 0, 'Long Career Gap medicall issue sustainability doubts a lot not suitable', 108, '0000-00-00 00:00:00', 1),
(15379, 15143, 59, 5, 0, 'Attitude Issue not suitable will not handle the work pressure ', 108, '0000-00-00 00:00:00', 1),
(15380, 15142, 59, 2, 0, 'Need to check for Testing Role in IT final round pending with Gokul', 108, '0000-00-00 00:00:00', 1),
(15381, 15140, 59, 5, 0, 'Too long Distance Career Gap will not run in our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(15382, 15136, 59, 5, 0, 'No Education only 10th long Career Gap 10 yrs blank no ideas in calling not suitable', 108, '0000-00-00 00:00:00', 1),
(15383, 15147, 59, 3, 0, 'Selected for MIS Role need to confirm his Role Staff or Consultant', 85, '0000-00-00 00:00:00', 1),
(15384, 15144, 19, 5, 1, 'Reject', 59, '2023-11-04 06:11:29', 1),
(15385, 15145, 59, 2, 0, 'Have Exp in Renewal Can give a try for our roles need to come for final round tomorrow with Gokul', 85, '0000-00-00 00:00:00', 1),
(15386, 15150, 59, 5, 0, 'Fresher for our roles home nursing Exp Retail sales exp will not comfort in taking calls not suitable', 85, '0000-00-00 00:00:00', 1),
(15387, 15151, 59, 5, 0, 'Lookingonky for Salary have 18 months exp in ajman dubai have a plan to travel back if he is not getting suitable profile here will not sustain in our roles', 108, '0000-00-00 00:00:00', 1),
(15388, 15152, 74, 7, 0, 'She is ok with the profile completed tamil litreature, travel time 1 and half hour and have no laptop ready to arrange and ready to re locate,  also expected 13k and rady to join after diwali, father farmer and elder sister married and younger sister studied nursing.... long distance kindly check once and confirmed sir', 108, '0000-00-00 00:00:00', 1),
(15389, 15109, 74, 5, 0, 'NOT FIT FOR TEAM', 108, '0000-00-00 00:00:00', 1),
(15390, 15152, 59, 3, 0, 'Selected for Sithy Tema in Consltant Role', 74, '2023-11-06 04:49:24', 1),
(15391, 15127, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2023-11-06 04:57:17', 1),
(15392, 15156, 59, 4, 0, 'Communication Ok Have 2 months exp in Byjus Can be trained in our roles kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15393, 15154, 59, 5, 0, 'Not Comfort with the timings and 6 days work she need time to give her confirmation have exp in operations role', 108, '0000-00-00 00:00:00', 1),
(15394, 15159, 59, 5, 0, 'Not suitable for our roles Notmuch serious with the jobs will not sustain', 108, '0000-00-00 00:00:00', 1),
(15395, 15153, 59, 4, 0, '5050 Profile have exp but not seems to be need to open up a lot kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15396, 15174, 59, 2, 0, 'Need to come for next round with Babu if he is not ok for that can try for Accounts', 108, '0000-00-00 00:00:00', 1),
(15397, 15163, 59, 5, 0, 'Looking for Dot Net Profile Not much comfort in TxxampC', 108, '0000-00-00 00:00:00', 1),
(15398, 15169, 59, 5, 0, 'Not suitable long career gap seems not much active', 108, '0000-00-00 00:00:00', 1),
(15399, 15157, 59, 5, 0, 'Fresher for our roles have 25 days exp in calling and exp salary more will not sustain not suitable', 108, '0000-00-00 00:00:00', 1),
(15400, 15160, 59, 3, 0, 'Selected for Kannan \nTeam Consultant Role', 108, '0000-00-00 00:00:00', 1),
(15401, 15167, 59, 2, 0, 'Need to come with his confirmation on TxxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15402, 15155, 59, 4, 0, '5050 Profile Have Exp But Not Seems To Be Need To Open Up A Lot Kindly Check And Let Me Know Your Inputs', 108, '0000-00-00 00:00:00', 1),
(15403, 15161, 59, 4, 0, 'Have Exp ion calling for 10 months can be trained but the salary exp is high for our roles', 108, '0000-00-00 00:00:00', 1),
(15404, 15162, 59, 5, 0, 'Left without attending', 108, '0000-00-00 00:00:00', 1),
(15405, 15166, 59, 5, 0, 'Left Without Attending', 108, '0000-00-00 00:00:00', 1),
(15406, 15156, 53, 1, 0, NULL, 59, '2023-11-06 07:14:02', 1),
(15407, 15160, 19, 7, 4, 'Kani Reference', 59, '2023-11-06 07:22:05', 1),
(15408, 15153, 13, 5, 0, 'Voice Clarity and Confident level is very low', 59, '2023-11-06 07:23:35', 1),
(15409, 15155, 13, 5, 0, 'Voice and confident level is very low ', 59, '2023-11-06 07:23:52', 1),
(15410, 15161, 19, 5, 1, 'Rejected', 59, '2023-11-06 07:27:18', 1),
(15411, 15088, 109, 8, 0, 'Left without atten the interview', 104, '0000-00-00 00:00:00', 1),
(15412, 15178, 59, 5, 0, 'Fresjer for our roles came along with her freind will not sustain with out freind', 108, '0000-00-00 00:00:00', 1),
(15413, 15177, 59, 4, 0, '5050 Profile fresher sustainability need to check a  lot kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15414, 15111, 59, 4, 0, '5050 Profile have exp in calling but doubts for our role kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15415, 15181, 59, 3, 0, 'Selected for Shanmugam Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(15416, 15179, 59, 5, 0, 'Communicaiton OK Fresher for our roles Exp is more left without attending the 2nd level', 108, '0000-00-00 00:00:00', 1),
(15417, 15175, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15418, 15177, 13, 5, 0, 'She is not fit for Tele sales and not sustainability', 59, '2023-11-07 07:40:02', 1),
(15419, 15111, 44, 1, 0, NULL, 59, '2023-11-07 07:40:47', 1),
(15420, 15181, 44, 4, 4, 'Candidate ok for me need your Opinion', 59, '2023-11-07 07:41:34', 1),
(15421, 15180, 30, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15422, 15189, 59, 5, 0, 'Looking for accounts role but focus in salary already working for 15k and exp more will notsustain', 108, '0000-00-00 00:00:00', 1),
(15423, 15183, 59, 2, 0, 'Final Round with Gokul hold for sometime if he comeback let us try exp min 15K TH', 108, '0000-00-00 00:00:00', 1),
(15424, 15186, 59, 5, 0, 'Not open up will nt sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(15425, 15188, 59, 5, 0, 'Not open for Field Sales No Communication will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(15426, 15185, 59, 4, 0, '5050 Profile have exp in calling can give a try kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15427, 15184, 59, 5, 0, 'fresher min salary exp is 20K not open to negotiate will not sustain attitude already rejecctd several offers only for salary', 108, '0000-00-00 00:00:00', 1),
(15428, 15191, 59, 4, 0, 'Have Exp in Calling but frequent changes having health issues can be trained in our role too long distance check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15429, 15145, 59, 3, 0, 'Selected for MIS Role Role yet to confirm', 59, '2023-11-08 07:18:04', 1),
(15430, 15191, 44, 1, 0, NULL, 59, '2023-11-08 07:29:52', 1),
(15431, 15185, 31, 1, 0, NULL, 59, '2023-11-08 07:34:17', 1),
(15432, 15192, 74, 7, 0, 'She is ok with our profile , already worked as a ar called and move on to wipro as a software developer, for 3 months training period and releived , due to mothers health issue ( jandis)  she relocate to thanjavur, sister currently relocate to russia from ukerian due to war studied mbbs, facing loss in the family due to war for sister studies, father govt job now in chennai for training 6 months, so no one is care for mothers health so she is in thanjavur and searching for job, expected 13 to 14k , not intrested to move on in IT  so kindly check once for sustainability', 108, '0000-00-00 00:00:00', 1),
(15433, 15197, 59, 3, 0, 'Selected for MF role in Staff No Stat Role Fresher need to be trained', 108, '0000-00-00 00:00:00', 1),
(15434, 15203, 59, 4, 0, '5050 Profile check for Muthu Team only 3 months exp in imarque sustainability doubts kindly check for muthu team and let us know', 108, '0000-00-00 00:00:00', 1),
(15435, 15196, 59, 5, 0, 'Looking for Accounts profile only fresher no basics in accounting skills not suitable', 108, '0000-00-00 00:00:00', 1),
(15436, 15199, 59, 5, 0, 'Too Long Distance almost in the final round with ICICI willnot run in a long need to check later if he comes back', 108, '0000-00-00 00:00:00', 1),
(15437, 15193, 59, 5, 0, 'Looking only for non voice not open for customer Interactions will not sustain', 108, '0000-00-00 00:00:00', 1),
(15438, 15204, 59, 5, 0, 'Fresher need to train from scratch not much comfort in TxxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15439, 15202, 59, 5, 0, 'Fresher not much Comfort in TxxampC will not sustain and not suitable for our roles too ', 108, '0000-00-00 00:00:00', 1),
(15440, 15195, 59, 2, 0, 'Final Round with Gokul Profile is on Hold need to give confirmation based on the manager input candidate is in dilemma', 108, '0000-00-00 00:00:00', 1),
(15441, 15200, 59, 4, 0, '5050 Profile Have exp in collections calling but Sustainability doubts in our role kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15442, 15194, 59, 5, 0, 'Not open up will not handle the work pressure will not sustain in our roles', 108, '0000-00-00 00:00:00', 1),
(15443, 15206, 59, 5, 0, 'Not clear in the communication Mentioned 2 months exp in Hathway sustainability doubts in  our role will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15444, 15209, 59, 5, 0, 'Fresher need to train from scratch not much comfort in  TxxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15445, 15208, 59, 5, 0, 'Fresher Career Gap 1yr Not much comfort in TxxampC if he comes back let us try\n', 108, '0000-00-00 00:00:00', 1),
(15446, 15207, 30, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15447, 15203, 57, 1, 0, NULL, 59, '2023-11-10 03:43:26', 1),
(15448, 15200, 13, 5, 0, 'Sustainability is very less', 59, '2023-11-10 03:52:59', 1),
(15449, 15192, 59, 3, 0, '\nselected for Sithy Team Consultant Tole', 74, '2023-11-10 06:28:24', 1),
(15450, 15212, 59, 5, 0, 'Communication Average year back he appeared for IT and now for MIS Written Skills no will  not sustain and handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(15451, 15187, 30, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15452, 15160, 59, 3, 0, 'Selected for Kannan \nTeam Consultant Role', 19, '2023-11-11 05:28:53', 1),
(15453, 15205, 59, 3, 0, 'Selected for Santhosh Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(15454, 15211, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15455, 15213, 59, 5, 0, 'Notice 60 days looking for salary growth will not sustain in a long pressure handling in our roles doubts', 108, '0000-00-00 00:00:00', 1),
(15456, 15214, 59, 3, 0, 'Selected for Sarath Team Staff Roles', 85, '0000-00-00 00:00:00', 1),
(15457, 15210, 59, 5, 0, 'No Communication written skills poor will not sustain and not suitabel', 85, '0000-00-00 00:00:00', 1),
(15458, 15215, 59, 5, 0, 'Long Career Gap will not sustain in our roles and not suitable', 85, '0000-00-00 00:00:00', 1),
(15459, 15205, 71, 4, 0, 'ok', 59, '2023-11-13 05:47:27', 1),
(15460, 14394, 60, 1, 0, NULL, 30, '2023-11-14 09:49:57', 1),
(15461, 15181, 29, 7, 2, 'have to train Aggressively and check in 7 days and confirm, shanumugam  team', 44, '2023-11-14 05:43:17', 1),
(15462, 15217, 59, 4, 0, '5050 Profile Communication Ok have 5 months justdial exp kindly check andlet me knwo your inputs', 108, '0000-00-00 00:00:00', 1),
(15463, 15218, 59, 5, 0, 'Fresher not much comfort in txxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15464, 15219, 59, 5, 0, 'Fresher not much comfort with the terms and conditions if the candidate comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15465, 15220, 59, 5, 0, 'Communication Poor no sustainability will not sustain for a long not suitable', 108, '0000-00-00 00:00:00', 1),
(15466, 15217, 53, 1, 0, NULL, 59, '2023-11-14 07:31:30', 1),
(15467, 15214, 51, 4, 0, 'ok', 59, '2023-11-14 07:33:52', 1),
(15468, 15205, 18, 7, 4, 'Selected for santosh team with 20% Hike. Need 15 days notice to Join', 71, '2023-11-15 12:19:48', 1),
(15469, 15227, 74, 7, 0, 'she is ok with the profile, completed bA history, and now studied part time mba distance education, at present, 10 month experience in data entry thanjavur, and sdk software trainee for 6 months, father retired police officer, brother in militry, she is talk active and good learning skills have better exposure, expected 14k and have laptop imeediate joning kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(15470, 15223, 59, 3, 0, 'Selected for Muthu Team in Consultant role\n', 108, '0000-00-00 00:00:00', 1),
(15471, 15224, 59, 5, 0, 'Not much comfort in Timings too long Distance will not sustain', 108, '0000-00-00 00:00:00', 1),
(15472, 15225, 74, 5, 0, 'not fit for team', 108, '0000-00-00 00:00:00', 1),
(15473, 15228, 59, 4, 0, 'have Exp but not much in sales salary is high sustainability internal referencekindly check and let me knowyour inputs', 108, '0000-00-00 00:00:00', 1),
(15474, 15230, 59, 5, 0, 'communication Average MIS role Settled family sustainability doubts a lot  not much comfort in TxxampC', 108, '0000-00-00 00:00:00', 1),
(15475, 15229, 59, 2, 0, 'Left without attending', 108, '0000-00-00 00:00:00', 1),
(15476, 15231, 59, 5, 0, 'Sounding low will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(15477, 15232, 59, 5, 0, 'Looking for Bio Tech Opportunities will not sustain in our roles he is very clear to proceed  with that only', 108, '0000-00-00 00:00:00', 1),
(15478, 15233, 59, 4, 0, 'fresher souding high can give a try kindly check andlet me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15479, 15234, 59, 5, 0, 'Left Without attending', 108, '0000-00-00 00:00:00', 1),
(15480, 15235, 59, 5, 0, 'Left Without Attending', 108, '0000-00-00 00:00:00', 1),
(15481, 15236, 59, 5, 0, 'Have Only B2B exp will not take calls and sustain our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(15482, 15237, 59, 5, 0, 'Average Profile Scheduled for next round with Shanmugam but left without attending the interview', 108, '0000-00-00 00:00:00', 1),
(15483, 15222, 59, 3, 0, 'Seleyed for Kannan Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(15484, 15227, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2023-11-15 06:26:56', 1),
(15485, 15222, 19, 7, 4, 'CTC - 15K Per Month and She need PF', 59, '2023-11-15 07:06:16', 1),
(15486, 15223, 13, 7, 0, 'sales knowledge ,voice clarity  ok  and job need  so Sustainability  is ok and salary 17k fixed', 59, '2023-11-15 07:07:20', 1),
(15487, 15233, 53, 1, 0, NULL, 59, '2023-11-15 07:16:09', 1),
(15488, 15228, 89, 1, 0, NULL, 59, '2023-11-15 07:20:06', 1),
(15489, 15223, 59, 3, 0, 'Selected for Muthu Team in Consultant role\n', 13, '2023-11-16 09:57:21', 1),
(15490, 14865, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2023-11-16 10:16:49', 1),
(15491, 15205, 60, 1, 0, NULL, 18, '2023-11-16 05:34:42', 1),
(15492, 15238, 59, 4, 0, '5050 sustainability Doubts not a graduate long run doubts kindly check andlet me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15493, 15240, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15494, 15239, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15495, 15243, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(15496, 15245, 59, 4, 0, '5050 Profile Not much active pressure handling doubts in our role kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(15497, 15246, 59, 5, 0, 'Not open for Voice process Attitude got several offers and declined due to insurance sales will not sustain', 104, '0000-00-00 00:00:00', 1),
(15498, 15247, 59, 2, 0, 'Have Exp in Calling Can give a try she need to come with her confirmation if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15499, 15245, 57, 1, 0, NULL, 59, '2023-11-16 07:50:15', 1),
(15500, 15243, 19, 7, 4, 'Job Need Person', 59, '2023-11-16 07:51:23', 1),
(15501, 15238, 105, 5, 0, 'Sustain Problem, As Well as Slow Learning , Pitching Issue', 59, '2023-11-16 07:55:43', 1),
(15502, 15214, 29, 7, 3, 'Sarath Team', 51, '2023-11-17 12:59:20', 1),
(15503, 15222, 59, 3, 0, 'Seleyed for Kannan Team in Staff Role', 19, '2023-11-17 01:09:30', 1),
(15504, 15243, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2023-11-17 01:14:41', 1),
(15505, 15257, 30, 4, 3, 'Discuss about salary part max 24k ', 60, '0000-00-00 00:00:00', 1),
(15506, 15250, 30, 7, 3, 'Confirm the joining process ', 60, '0000-00-00 00:00:00', 1),
(15507, 15251, 30, 7, 3, 'Confirm the joining process ', 60, '0000-00-00 00:00:00', 1),
(15508, 15250, 60, 1, 0, NULL, 30, '2023-11-17 06:03:18', 1),
(15509, 15251, 60, 1, 0, NULL, 30, '2023-11-17 06:05:06', 1),
(15510, 15257, 60, 1, 0, NULL, 30, '2023-11-17 06:06:56', 1),
(15511, 15256, 59, 4, 0, '5050 Profile have exp in calling age around 37 yrs relevant exp need to check his sustainability kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15512, 15252, 59, 5, 0, 'too long Distance not sure on the relocation Sustainability Doubts need to open up  a lot not suitable', 108, '0000-00-00 00:00:00', 1),
(15513, 15253, 59, 4, 0, '5050 Profile No Sustainability with the previous roles kindly check andlet me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15514, 15248, 59, 5, 0, 'Communication very Average and writing skills poor will not sustain and handling doubts a lot not suitable', 108, '0000-00-00 00:00:00', 1),
(15515, 15249, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15516, 15254, 59, 2, 0, 'Final Round with Gokul Need to confirm the salary max we can go upto 1.9\n', 108, '0000-00-00 00:00:00', 1),
(15517, 15253, 105, 5, 0, 'Candidate Shortlisted But Not Joining', 59, '2023-11-17 06:21:59', 1),
(15518, 15256, 31, 1, 0, NULL, 59, '2023-11-17 06:31:02', 1),
(15519, 15258, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15520, 15214, 59, 3, 0, 'Selected for Sarath Team Staff Roles', 29, '2023-11-20 10:00:16', 1),
(15521, 15181, 59, 3, 0, 'Selected for Shanmugam Team in Staff Role', 29, '2023-11-20 10:12:23', 1),
(15522, 15286, 59, 5, 0, 'Have few months exp in insurance sales but left due to Continuous calls in Star health married and 2 kids sustainability in our domain doubts', 108, '0000-00-00 00:00:00', 1),
(15523, 15287, 59, 5, 0, 'Not open for Field much Attitude will not sustain in our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(15524, 15273, 59, 2, 0, 'Communication Ok but regular MBA going on Interested in IT opening sustainability doubts if she comes back let us try Left without attending the 2nd level', 108, '0000-00-00 00:00:00', 1),
(15525, 15285, 59, 2, 0, 'Fresher preparing for CA long run doubts  if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15526, 15283, 59, 5, 0, 'Not much active will not handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(15527, 15274, 59, 5, 0, 'sounding low Sustainability Doubt Pressure handling doubt left without attending the 2nd lvel with Gopinath', 108, '0000-00-00 00:00:00', 1),
(15528, 15278, 59, 5, 0, 'Have  6 months ongoing exp in Accounts with the pay of 18K looking for change as he is not comfort with the current Salary will not sustain', 108, '0000-00-00 00:00:00', 1),
(15529, 15288, 59, 4, 0, '5050 Profile have exp in calling muthoot finance had some gap due to accident kindly check and let me know sir\n', 108, '0000-00-00 00:00:00', 1),
(15530, 15277, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15531, 15275, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15532, 15272, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 108, '0000-00-00 00:00:00', 1),
(15533, 15282, 59, 2, 0, 'Fresher for our roles can give a try need to check with 2nd level but left without attending need to come for final round', 108, '0000-00-00 00:00:00', 1),
(15534, 15259, 59, 5, 0, 'Not suitable for insurance sales roles will not sustain and handle pressure', 85, '0000-00-00 00:00:00', 1),
(15535, 15262, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15536, 15272, 19, 7, 4, 'Job needed person', 59, '2023-11-20 07:18:47', 1),
(15537, 15271, 59, 5, 0, 'Interview For Full Stack And The Candidate Is Not Much Comfort With The TxxampC If He Comes Back Let Su Try.', 85, '0000-00-00 00:00:00', 1),
(15538, 15264, 59, 2, 0, 'Need to come for final round with Gokul if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(15539, 15263, 59, 5, 0, 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', 85, '0000-00-00 00:00:00', 1),
(15540, 15288, 18, 8, 0, 'Not Attended', 59, '2023-11-20 07:39:03', 1),
(15541, 15272, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2023-11-20 08:01:21', 1),
(15542, 15291, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15543, 15294, 59, 5, 0, 'Looking for non voice process only  will not sustain and not suitbale', 108, '0000-00-00 00:00:00', 1),
(15544, 15296, 59, 4, 0, '5050 Profile have exp in calling can give a try kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15545, 15295, 59, 2, 0, 'communication average 2yrs exp in MIS and exp more in salary if she comes back shall go upto 17-18K overall', 108, '0000-00-00 00:00:00', 1),
(15546, 15297, 59, 5, 0, 'Not comfort to work in saturyday and timings not suitable', 108, '0000-00-00 00:00:00', 1),
(15547, 15298, 59, 4, 0, '5050 Profile have calling exp but not a relevant one kindly check and let me know your inouts', 108, '0000-00-00 00:00:00', 1),
(15548, 15299, 59, 5, 0, 'Have Exp in Calling for 6 months and not comfort in handling target not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(15549, 15301, 59, 5, 0, 'Have Exp In Calling For 6 Months And Not Comfort In Handling Target Not Suitable For Our Roles', 108, '0000-00-00 00:00:00', 1),
(15550, 15302, 59, 5, 0, 'Looking for Govt exams fresher long career gap pronunciation difficult will not sustain not suitable', 108, '0000-00-00 00:00:00', 1),
(15551, 15303, 59, 3, 0, 'Selected for MIS Role in PT only', 108, '0000-00-00 00:00:00', 1),
(15552, 15304, 59, 5, 0, 'Communication No will not sustain and handle our work roles not suitable', 108, '0000-00-00 00:00:00', 1),
(15553, 15296, 86, 5, 0, 'No satisfied', 59, '2023-11-21 07:37:03', 1),
(15554, 15298, 44, 1, 0, NULL, 59, '2023-11-21 07:43:07', 1),
(15555, 15315, 59, 5, 0, 'Not open with the txxampCand also no basic skills in JS if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15556, 15306, 59, 5, 0, 'Too long Distance communication not much will not sustain ', 108, '0000-00-00 00:00:00', 1),
(15557, 15309, 59, 5, 0, 'No basic skills in MF and the salary exp is very high will not sustain in a long may get marry early and leave', 108, '0000-00-00 00:00:00', 1),
(15558, 15305, 59, 5, 0, 'Looking for Data science sort of role only will not sustain on our profile for a long not suitbale', 108, '0000-00-00 00:00:00', 1),
(15559, 15307, 59, 5, 0, 'Looking for System based work no communication pressure handling doubts in our roles', 108, '0000-00-00 00:00:00', 1),
(15560, 15312, 59, 2, 0, 'Have Exp in MIS Shoudl come for 2nd level can give a try if he comes let us try', 108, '0000-00-00 00:00:00', 1),
(15561, 15308, 59, 5, 0, 'Left without attending the interview', 108, '0000-00-00 00:00:00', 1),
(15562, 15311, 59, 4, 0, '5050 Profile fresher for our roles internal reference kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15563, 15310, 59, 5, 0, 'Communication Ok but the location constraint almost 50 kms up and down not suitable', 108, '0000-00-00 00:00:00', 1),
(15564, 15314, 74, 5, 0, 'not fit\n', 108, '0000-00-00 00:00:00', 1),
(15565, 15316, 59, 5, 0, 'Looking for Team lead only and the salary min Exp is 40K interviewed by Gaurav sir and got rejected', 108, '0000-00-00 00:00:00', 1),
(15566, 15311, 19, 5, 1, 'Rejected', 59, '2023-11-22 07:43:12', 1),
(15567, 15325, 59, 5, 0, 'No Communication Will not sustain and handle our work pressure not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(15568, 15324, 59, 5, 0, 'Average Communication Will Not Sustain And Handle Our Work Pressure Not Suitable For Our Roles', 108, '0000-00-00 00:00:00', 1),
(15569, 13591, 59, 4, 0, 'Have a solid exp in renewal and looking for the same internal reference and not open for sales too kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15570, 15321, 59, 2, 0, 'Need to come for Salary discussion with Gokul for Accounts', 108, '0000-00-00 00:00:00', 1),
(15571, 15328, 59, 3, 0, 'Selected for MIS role PT only', 108, '0000-00-00 00:00:00', 1),
(15572, 15322, 59, 2, 0, 'Have Exp but not much good with that salary exp is min 18 Interviewed by Gokul Profile on Hold we can offer max on 16K', 108, '0000-00-00 00:00:00', 1),
(15573, 15326, 59, 5, 0, 'Not suitable for our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(15574, 15327, 59, 4, 0, '5050 Profile Sounds Low but open for Telecalling Kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15575, 15317, 59, 5, 0, 'Fresher for our roles Salary Exo is high being a fresher and pressure handling doubts not more than 1 yr he will looking for core data science', 108, '0000-00-00 00:00:00', 1),
(15576, 15319, 59, 5, 0, 'Frequent job changes every 6 months changed and looking for very high salary not suitable', 108, '0000-00-00 00:00:00', 1),
(15577, 15320, 59, 5, 0, 'Preparing Govt Exams and for time being looking for Opportunities will not run in along more than 1 yr parents both are Govt teachers', 108, '0000-00-00 00:00:00', 1),
(15578, 15329, 59, 5, 0, 'Communication Average Current Salary is 30K and exp more on that not suits with our role package', 108, '0000-00-00 00:00:00', 1),
(15579, 15330, 59, 3, 0, 'Selected for Shamugam Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(15580, 15323, 59, 5, 0, 'No Basic Skills knowledge for MIS role and will not sustain and handle our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(15581, 14960, 59, 5, 0, 'Not even opening the mouth will not sustain and not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(15582, 13591, 19, 5, 1, 'Rejected', 59, '2023-11-23 07:26:38', 1),
(15583, 15330, 29, 7, 3, 'reference - Gayatri, have to train Aggressively, ', 59, '2023-11-23 07:41:53', 1),
(15584, 15327, 53, 1, 0, NULL, 59, '2023-11-23 07:45:04', 1),
(15585, 15331, 59, 5, 0, 'Have 6months exp and looking for salary growth only will not sustain in a long ', 108, '0000-00-00 00:00:00', 1),
(15586, 15340, 59, 5, 0, 'Too long Distance Career Gap lookin much for nearby location will not sustain', 108, '0000-00-00 00:00:00', 1),
(15587, 15338, 59, 2, 0, 'Final Round with Gokul for MF Good Candidate but the salary exp is very high need to negotiate and close', 108, '0000-00-00 00:00:00', 1),
(15588, 15333, 59, 2, 0, 'Interviewed by Gokul final Round average candidate need to confirm his joining post 29 Nov only', 108, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(15589, 15337, 59, 5, 0, 'No basic Skills Will not handle our work pressure not much suitable', 108, '0000-00-00 00:00:00', 1),
(15590, 15334, 59, 5, 0, 'having his own business and looking for additional one focus will not be much more in this', 108, '0000-00-00 00:00:00', 1),
(15591, 15335, 59, 5, 0, 'No Bike Fresher looking much for SAP Fico', 108, '0000-00-00 00:00:00', 1),
(15592, 15339, 59, 5, 0, 'NOt open for TxxampC no basics in Javascript', 108, '0000-00-00 00:00:00', 1),
(15593, 15332, 59, 5, 0, 'Need to train a lot long run doubt if he comes back let  us try', 108, '0000-00-00 00:00:00', 1),
(15594, 15336, 59, 5, 0, 'Very SilentNEed to open up a lot not open for voice process not much suits for our operations role', 108, '0000-00-00 00:00:00', 1),
(15595, 15351, 59, 5, 0, 'Not suitable for our sales need to open up alot ', 108, '0000-00-00 00:00:00', 1),
(15596, 15352, 59, 4, 0, '5050 Profile have exp in  calling but salary exp is high Kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15597, 15362, 59, 5, 0, 'Looking for IT positions and not open for TxxampC Sustainability Doubts if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15598, 15348, 59, 5, 0, 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15599, 15347, 59, 5, 0, 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try already holds several offer', 108, '0000-00-00 00:00:00', 1),
(15600, 15346, 59, 5, 0, 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15601, 15354, 59, 5, 0, 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15602, 15345, 59, 5, 0, 'Not suitable for our sales profile if hecomes for IT learning can try', 108, '0000-00-00 00:00:00', 1),
(15603, 15361, 59, 5, 0, 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15604, 15366, 59, 5, 0, 'Have 11months exp Career Gap and min Exp 25+ his current 23300 Will not sustain in our roles', 108, '0000-00-00 00:00:00', 1),
(15605, 15360, 59, 5, 0, 'Too long Distance up and down 44kms not much suits for our roles will not sustain min Exp is 27K', 108, '0000-00-00 00:00:00', 1),
(15606, 15355, 59, 5, 0, 'Attitude Not ready to come down with salary frequent job changes every 1 yr min exp 28K', 108, '0000-00-00 00:00:00', 1),
(15607, 15356, 59, 5, 0, 'Recently married and her current salary 4LPA will not sustain in along', 108, '0000-00-00 00:00:00', 1),
(15608, 15343, 59, 5, 0, 'Preparing for CA exams and long run doubts in our roles ', 108, '0000-00-00 00:00:00', 1),
(15609, 15349, 59, 5, 0, 'Long Career gap stating marriage reently married sustainability doubts in our roles min exp 28K and not ready to come down', 108, '0000-00-00 00:00:00', 1),
(15610, 15350, 59, 2, 0, 'Hve Exp in MIS but need to train a lot in our roles need time to confirm her for our roles', 108, '0000-00-00 00:00:00', 1),
(15611, 15357, 59, 5, 0, 'Fresher for MIS Roles too long Distance not open to relocate ', 108, '0000-00-00 00:00:00', 1),
(15612, 15358, 59, 5, 0, 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15613, 15280, 30, 7, 3, 'Confirm ctc and joining', 60, '0000-00-00 00:00:00', 1),
(15614, 15352, 105, 7, 0, 'Candidate Shortlisted But Not Joining', 59, '2023-11-25 08:04:58', 1),
(15615, 15280, 60, 1, 0, NULL, 30, '2023-11-27 11:38:23', 1),
(15616, 15371, 59, 5, 0, 'Interviewed for Full Stack not much comfort with the TxxampC if the candidate comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15617, 15374, 97, 5, 0, 'sal expt high xxamp He planing to move abroad in future.. not ok with our txxampC too', 108, '0000-00-00 00:00:00', 1),
(15618, 15381, 97, 5, 0, 'Yet Not Complete His Course.. Have Some Family Issues. Long Run Doubts.', 108, '0000-00-00 00:00:00', 1),
(15619, 15378, 97, 5, 0, 'yet not complete his course 1m more ...he need to check with parents..', 108, '0000-00-00 00:00:00', 1),
(15620, 15379, 97, 5, 0, ' Attitude.. not suit for our roles', 108, '0000-00-00 00:00:00', 1),
(15621, 15373, 59, 5, 0, 'Not suitable for our roles will not sustain ', 108, '0000-00-00 00:00:00', 1),
(15622, 15367, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15623, 15359, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15624, 15386, 97, 5, 0, 'frequent job changes...not suit for our role.', 108, '0000-00-00 00:00:00', 1),
(15625, 15383, 97, 5, 0, 'frequent job changes..communication good sustainbility doubts.', 108, '0000-00-00 00:00:00', 1),
(15626, 15363, 97, 5, 0, 'low voice ... too slow not suit our roles.', 108, '0000-00-00 00:00:00', 1),
(15627, 15370, 97, 5, 0, 'not suit for our roles', 108, '0000-00-00 00:00:00', 1),
(15628, 15375, 97, 5, 0, 'yet not complete his course.. have some family issues. long run doubts.', 108, '0000-00-00 00:00:00', 1),
(15629, 15376, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15630, 15368, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15631, 15380, 59, 4, 0, '5050Profile seems to give a lot of story sustainability doubts kindly check andlet me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15632, 15330, 59, 3, 0, 'Selected for Shamugam Team in Staff Role', 29, '2023-11-28 10:29:10', 1),
(15633, 15400, 74, 7, 0, 'He Is Completed Mba Hr, Fresher Only, Father Conductor In Local Bus , Brother Completed Mba And Home Near By 5km From  Office..Expected 13 To 15k And Have Laptop And Ready To Joined Immediately Refered By Saravanan Friends Of Friends, Kindly Check Once And Confirm', 108, '0000-00-00 00:00:00', 1),
(15634, 15397, 74, 5, 0, 'not fit for team', 108, '0000-00-00 00:00:00', 1),
(15635, 15399, 74, 2, 0, 'kindly wait once confirm', 108, '0000-00-00 00:00:00', 1),
(15636, 15400, 59, 3, 0, 'Selected for Sithy Team in Consultant role', 74, '2023-11-28 05:52:06', 1),
(15637, 15405, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15638, 10547, 59, 5, 0, 'Not suitable for our roles holding several offers and looking for more', 108, '0000-00-00 00:00:00', 1),
(15639, 15404, 59, 5, 0, 'Not suitable for ourrole no understanding no communication', 108, '0000-00-00 00:00:00', 1),
(15640, 15403, 59, 5, 0, 'Too long Distance Salary Exp is very high than our budget', 108, '0000-00-00 00:00:00', 1),
(15641, 15401, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15642, 15398, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15643, 14810, 59, 5, 0, 'Interview for Full Stack and the candidate is not much comfort with the txxampC if he comes back let su try.', 108, '0000-00-00 00:00:00', 1),
(15644, 15387, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15645, 15395, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15646, 15385, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 108, '0000-00-00 00:00:00', 1),
(15647, 15396, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15648, 15394, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15649, 15392, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15650, 15393, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15651, 15391, 59, 5, 0, 'Bike no Have exp in Accounts not much of relevant skills will not sustain', 108, '0000-00-00 00:00:00', 1),
(15652, 15389, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15653, 15390, 59, 5, 0, 'Too long Distance not open to relocate', 108, '0000-00-00 00:00:00', 1),
(15654, 15407, 59, 5, 0, 'Not suitable for our roles very high CTC Exp will not run in a long', 108, '0000-00-00 00:00:00', 1),
(15655, 15434, 59, 3, 0, 'Selected for Gopi Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(15656, 15420, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15657, 15428, 59, 3, 0, '3months 5K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K', 108, '0000-00-00 00:00:00', 1),
(15658, 15433, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15659, 15432, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15660, 15431, 59, 5, 0, 'too long Distance no clarity in his previous work exp not suitable', 108, '0000-00-00 00:00:00', 1),
(15661, 15421, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15662, 15414, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15663, 15413, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15664, 15412, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15665, 15426, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15666, 15427, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15667, 15423, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15668, 15429, 59, 5, 0, 'Not suitable no sustainability only for salary he is focusing', 108, '0000-00-00 00:00:00', 1),
(15669, 15418, 59, 5, 0, 'Good Communication sustainability doubts getting marriage at earliest have a plan to go with PHD', 108, '0000-00-00 00:00:00', 1),
(15670, 15419, 59, 5, 0, 'Not suitable will not sustian in our roles not suitbale', 108, '0000-00-00 00:00:00', 1),
(15671, 15415, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15672, 15344, 97, 5, 0, 'sustainbility doubts not suit for our roles', 108, '0000-00-00 00:00:00', 1),
(15673, 15384, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15674, 15402, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15675, 15416, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15676, 15408, 59, 5, 0, 'Too long distance not open to relocate will not ssstain and exp os alos high', 108, '0000-00-00 00:00:00', 1),
(15677, 15417, 59, 5, 0, 'Not open for Telecalling and sales profile not suitable', 108, '0000-00-00 00:00:00', 1),
(15678, 15409, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15679, 15434, 105, 7, 0, 'Star product Knowledge is a Little bit Good , Will Try For the Training Period', 59, '2023-11-29 07:54:18', 1),
(15680, 15434, 59, 3, 0, 'Selected for Gopi Team in Consultant Role', 105, '2023-11-30 10:34:58', 1),
(15681, 15435, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15682, 15439, 59, 3, 0, 'Selected for Renewals Executive Role', 60, '0000-00-00 00:00:00', 1),
(15683, 15503, 13, 7, 0, 'voice clarity and confident level is good  reshma reference train pannina ready pannalam ', 60, '0000-00-00 00:00:00', 1),
(15684, 15451, 59, 3, 0, 'Selected for MIS Role Need to confirm the Roles', 85, '0000-00-00 00:00:00', 1),
(15685, 15504, 89, 7, 0, 'Selected for my team Team Reference', 108, '0000-00-00 00:00:00', 1),
(15686, 15511, 53, 7, 0, 'shortlisted for b2b', 108, '0000-00-00 00:00:00', 1),
(15687, 15455, 53, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15688, 15498, 53, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15689, 15500, 59, 5, 0, 'Communication is Good have exp in accounts but sustainability in our accoutns roles doubts if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15690, 15502, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15691, 15514, 59, 5, 0, 'Not suitable for our roles will not sustain long career gap ', 108, '0000-00-00 00:00:00', 1),
(15692, 15513, 105, 5, 0, 'Poor Quality', 108, '0000-00-00 00:00:00', 1),
(15693, 15523, 30, 5, 0, 'due to communication skill', 104, '0000-00-00 00:00:00', 1),
(15694, 15520, 74, 7, 0, 'he is ok with the profile, completed diploma and already 3 years experience in various field, telecalling, industial sector, medical rep , have sustainability issue , --- two sisters one sister married,, father painter, home from office near by 15km.. have bike and laptop,,, have some experience ....kindly check once expected 15k ...', 104, '0000-00-00 00:00:00', 1),
(15695, 15504, 59, 3, 0, 'Selected for Babu Team in Staff Role', 89, '2023-12-06 11:21:28', 1),
(15696, 15516, 59, 5, 0, 'Not suitable for our roles will not sustain ', 104, '0000-00-00 00:00:00', 1),
(15697, 15318, 59, 5, 0, 'Looking for MIS only but not suit for that checked for Renewal and got rejected due to pressure handling cross checked with Banupriya', 104, '0000-00-00 00:00:00', 1),
(15698, 15503, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2023-12-07 10:10:44', 1),
(15699, 15474, 59, 5, 0, 'No basics not open for TxxampC not suitable', 104, '0000-00-00 00:00:00', 1),
(15700, 15520, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2023-12-07 04:20:06', 1),
(15701, 15515, 86, 4, 0, 'Selected for next round', 108, '0000-00-00 00:00:00', 1),
(15702, 15519, 59, 2, 0, 'Not much strong with the basics need to consider later based on the other profiles and the schedules', 108, '0000-00-00 00:00:00', 1),
(15703, 15526, 59, 4, 0, 'Have Exp in Sales Good in Communication can be trained in our roles Candidate is from Shree Consultant Kindly check and let me know your interest', 108, '0000-00-00 00:00:00', 1),
(15704, 15533, 89, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15705, 15532, 59, 5, 0, 'Communication Average Have exp but career gap too Existing company is offereing 22K just 11 months exp will  not sustain not suitbale', 108, '0000-00-00 00:00:00', 1),
(15706, 15529, 59, 5, 0, 'Low Quality for our roles not suitable will not run in a long', 108, '0000-00-00 00:00:00', 1),
(15707, 15528, 59, 5, 0, 'No basics Skills in MF and will not handle our work pressure not suitbale', 108, '0000-00-00 00:00:00', 1),
(15708, 15525, 59, 5, 0, 'No ideas and no basicsFrequent job changes not suitable for our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(15709, 15524, 59, 2, 0, 'Communication Ok Can give a try  in our role but left without attending the final round with Manikandan BDM\nif he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15710, 15457, 59, 5, 0, 'Not much good in analytical need to come  with the confirmation on the TxxampC', 108, '0000-00-00 00:00:00', 1),
(15711, 15456, 59, 2, 0, 'Need to come wiht the confirmation on the TxxampC Fresher 2023 passed out', 108, '0000-00-00 00:00:00', 1),
(15712, 15527, 59, 5, 0, 'Not Strong with the basics analytical no not joined the company offered for 10K will not sustain in a long run', 108, '0000-00-00 00:00:00', 1),
(15713, 15530, 89, 7, 0, 'I have got approval to pay 14 salary to this candidate.', 108, '0000-00-00 00:00:00', 1),
(15714, 15526, 18, 8, 0, 'Not Attended', 59, '2023-12-07 07:47:16', 1),
(15715, 15511, 59, 3, 0, 'Selected for B2B in consultant Role', 53, '2023-12-08 09:57:17', 1),
(15716, 15543, 89, 7, 0, 'Selected', 85, '0000-00-00 00:00:00', 1),
(15717, 15534, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15718, 15541, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15719, 15542, 59, 3, 0, 'Selected for IT team with txxampC', 104, '0000-00-00 00:00:00', 1),
(15720, 15531, 59, 3, 0, 'Selected for Operations Team Need to confirm the role', 104, '0000-00-00 00:00:00', 1),
(15721, 15545, 59, 5, 0, 'Too long Distance Long Career Gap Sustainability doubts a lot if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15722, 15538, 59, 2, 0, 'Interview Done with Gokul Will go through the Payslips and confirm the Joining procedures', 104, '0000-00-00 00:00:00', 1),
(15723, 15539, 59, 2, 0, 'Fresher for IT Career Gap Maths knowledge Average  if he comes back after confirmationfor TxxampC will check', 104, '0000-00-00 00:00:00', 1),
(15724, 15540, 59, 5, 0, 'Long Career Gap not good with maths need time to learn the skills if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15725, 15546, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15726, 15544, 59, 5, 0, 'too long Distance worked in Telesales but not comfortable with that Poor Communication not suitable', 104, '0000-00-00 00:00:00', 1),
(15727, 15385, 19, 7, 4, 'Selected', 59, '2023-12-10 02:13:28', 1),
(15728, 15550, 30, 5, 0, 'already father lic agent and mf pms doing', 104, '0000-00-00 00:00:00', 1),
(15729, 15557, 59, 5, 0, 'No Communication Have Exp in MIS but pressure handling doubts a lot will not sustain', 104, '0000-00-00 00:00:00', 1),
(15730, 15555, 30, 5, 0, 'not interested in sales', 104, '0000-00-00 00:00:00', 1),
(15731, 15558, 59, 5, 0, 'Too long Distance Salary exp is high not comfort with NDA will not sustain', 104, '0000-00-00 00:00:00', 1),
(15732, 15551, 30, 7, 4, 'salary expected 25k from candidate but we can  proceed upto 23k ctc ', 104, '0000-00-00 00:00:00', 1),
(15733, 15548, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15734, 15559, 59, 4, 0, 'have exp in calling can be trained in our roles kindly check an dlet me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15735, 15560, 53, 7, 0, 'fresher. She has good communication, worked 6months in receptionist and completed aari work training. Shortlisted for b2b', 108, '0000-00-00 00:00:00', 1),
(15736, 15552, 59, 5, 0, 'Not Selected by Gokul', 108, '0000-00-00 00:00:00', 1),
(15737, 15553, 59, 2, 0, 'Round with Gokul and Profile on Hold Need tolook after considering the other profiles too', 108, '0000-00-00 00:00:00', 1),
(15738, 15543, 59, 3, 0, 'Selected for Babu Team in Consultant Role sir\n', 89, '2023-12-10 07:49:14', 1),
(15739, 15530, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 89, '2023-12-10 07:57:42', 1),
(15740, 15560, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-12-10 11:21:56', 1),
(15741, 15380, 53, 1, 0, NULL, 59, '2023-12-10 05:33:55', 1),
(15742, 15559, 57, 1, 0, NULL, 59, '2023-12-10 06:14:28', 1),
(15743, 15587, 30, 7, 3, 'suggested ctc upto 23k', 104, '0000-00-00 00:00:00', 1),
(15744, 15570, 30, 7, 0, 'upto 5.3lac suggested ctc ', 104, '0000-00-00 00:00:00', 1),
(15745, 15575, 30, 7, 3, 'selected for E sale profile ctc as per company norms for fresher', 104, '0000-00-00 00:00:00', 1),
(15746, 15589, 59, 4, 0, '5050 profile fresher for our roles need to open up a lot and need to train a lot kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(15747, 15563, 53, 7, 0, 'selected for b2b', 104, '0000-00-00 00:00:00', 1),
(15748, 15564, 59, 2, 0, '5050 profile applied for MIS but have interest to move IT Sustainability doubts ', 104, '0000-00-00 00:00:00', 1),
(15749, 15565, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(15750, 15579, 59, 5, 0, 'Checked with Banu 2nd round interview too long distance  and not much comfort in calling activities', 104, '0000-00-00 00:00:00', 1),
(15751, 15582, 53, 7, 0, 'shortlisted for b2b\n', 104, '0000-00-00 00:00:00', 1),
(15752, 15591, 105, 7, 0, 'She Performed Well And Also She is Experienced in ICICI Lombard, Will Go For An Other Process', 104, '0000-00-00 00:00:00', 1),
(15753, 15591, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 105, '2023-12-12 09:55:10', 1),
(15754, 15596, 59, 3, 0, 'Selected for Mani Team in staff Role Communication Good Have Exp In Calling Can Be Trained In Our Roles ', 108, '0000-00-00 00:00:00', 1),
(15755, 15385, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2023-12-12 04:09:02', 1),
(15756, 15563, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-12-12 04:29:34', 1),
(15757, 15582, 59, 3, 0, 'Selectedforbanuteam', 53, '2023-12-12 04:30:28', 1),
(15758, 13536, 29, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15759, 15617, 102, 5, 0, 'Not Suitable Sales ', 104, '0000-00-00 00:00:00', 1),
(15760, 15604, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15761, 15603, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15762, 15599, 59, 5, 0, 'Too long Distance no Communication not open to relocate will not sustain', 104, '0000-00-00 00:00:00', 1),
(15763, 15608, 59, 5, 0, 'Communication Average not much suits for our roles 5050 asked the candidate to come for the interview post lunch but he left', 104, '0000-00-00 00:00:00', 1),
(15764, 15602, 59, 5, 0, 'No Sustainability in previous exp no Communication not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(15765, 15611, 59, 5, 0, 'Attitude Candidate have Exp in CAMS have an offer for 23K will not sustain in our roles', 104, '0000-00-00 00:00:00', 1),
(15766, 15598, 59, 5, 0, 'No Communication no confidence inthe profile not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(15767, 15605, 30, 7, 4, 'confirm ctc and joining datewe can go with precious ctc', 104, '0000-00-00 00:00:00', 1),
(15768, 15616, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15769, 15610, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15770, 15601, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15771, 15593, 30, 5, 0, 'due to communication skill', 104, '0000-00-00 00:00:00', 1),
(15772, 15594, 30, 7, 4, 'fresher as per company ctc ', 104, '0000-00-00 00:00:00', 1),
(15773, 15606, 30, 7, 3, 'suggested ctc upto 25k', 104, '0000-00-00 00:00:00', 1),
(15774, 15596, 86, 4, 0, 'Selected for next round', 59, '2023-12-12 05:49:57', 1),
(15775, 15596, 18, 7, 4, 'Selected for Mani Team. Immedeate Joiner. Can give 3.5L CTC', 86, '2023-12-12 06:06:11', 1),
(15776, 15589, 105, 5, 0, 'Looking For High Package, He is Not Willing To Join', 59, '2023-12-12 06:12:45', 1),
(15777, 15596, 60, 1, 0, NULL, 18, '2023-12-12 07:25:07', 1),
(15778, 15551, 60, 1, 0, NULL, 30, '2023-12-13 12:19:52', 1),
(15779, 15570, 59, 3, 0, 'Selected for Sathish Team Bangalore Location in Staff Role', 30, '2023-12-13 12:20:32', 1),
(15780, 15575, 59, 1, 0, NULL, 30, '2023-12-13 12:22:46', 1),
(15781, 15587, 59, 1, 0, NULL, 30, '2023-12-13 12:23:48', 1),
(15782, 15594, 59, 3, 0, 'Selected for Madiwaala in Consultant Role', 30, '2023-12-13 12:28:10', 1),
(15783, 15605, 59, 3, 0, 'selected for Madiwaal Staff ROle', 30, '2023-12-13 12:30:18', 1),
(15784, 15606, 59, 3, 0, 'Selected for Madiwaal Staff Role', 30, '2023-12-13 12:31:08', 1),
(15785, 15618, 53, 7, 0, 'shortlisted for b2b', 104, '0000-00-00 00:00:00', 1),
(15786, 15634, 59, 5, 0, 'Very High CTC Exp fresher for our Sales have Exp in Inside sales IT products', 104, '0000-00-00 00:00:00', 1),
(15787, 15636, 59, 5, 0, 'Not suitable for our roles will not sustain', 104, '0000-00-00 00:00:00', 1),
(15788, 15626, 59, 5, 0, 'Communication Ok but not open to relocate', 104, '0000-00-00 00:00:00', 1),
(15789, 15489, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15790, 15637, 102, 5, 0, 'Not Suitable Sales ', 104, '0000-00-00 00:00:00', 1),
(15791, 15561, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15792, 15625, 59, 3, 0, 'Selected for Renewals in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(15793, 2269, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15794, 15630, 89, 7, 0, 'Selected...  I will check and tell you during the training period', 104, '0000-00-00 00:00:00', 1),
(15795, 15641, 97, 5, 0, 'not suit for recruitment..', 104, '0000-00-00 00:00:00', 1),
(15796, 15642, 19, 5, 1, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(15797, 15645, 97, 5, 0, 'not suit for accounts', 104, '0000-00-00 00:00:00', 1),
(15798, 15646, 97, 5, 0, 'sal exp high has exp in other role... ', 104, '0000-00-00 00:00:00', 1),
(15799, 15653, 74, 7, 0, 'she is ok with the profile...already working in chennai mobile manufacturing company, no experience in sales and telecalling, expected 12k ....45min travel to office, father farmer and have laptop, immediate joining, expected 12k talk active and easily adaptive candidate kindly check and confirm once', 108, '0000-00-00 00:00:00', 1),
(15800, 15659, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15801, 15661, 102, 7, 0, 'Shortlist for team ', 85, '0000-00-00 00:00:00', 1),
(15802, 15660, 57, 7, 0, 'Candidate is ok,pls confirm the joining date', 85, '0000-00-00 00:00:00', 1),
(15803, 15661, 60, 1, 0, NULL, 102, '2023-12-15 04:46:56', 1),
(15804, 15673, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15805, 15682, 97, 5, 0, 'pursing her masterxquots  long distance and from advocate background not suit', 104, '0000-00-00 00:00:00', 1),
(15806, 15689, 97, 5, 0, 'long distance pursuing candidate looking for intern come employment. long run doubts.\n', 104, '0000-00-00 00:00:00', 1),
(15807, 15678, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15808, 15463, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 104, '0000-00-00 00:00:00', 1),
(15809, 15683, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15810, 15685, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15811, 15687, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15812, 15686, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15813, 15691, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15814, 15690, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15815, 15693, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15816, 15677, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15817, 15674, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15818, 15692, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15819, 15676, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15820, 15680, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15821, 15681, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15822, 15672, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15823, 15684, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15824, 15669, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15825, 15710, 74, 5, 0, 'not fit\n', 108, '0000-00-00 00:00:00', 1),
(15826, 15720, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15827, 15700, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15828, 15663, 19, 7, 4, 'i hope he is job needed person', 85, '0000-00-00 00:00:00', 1),
(15829, 15662, 19, 5, 1, 'Rejected', 85, '0000-00-00 00:00:00', 1),
(15830, 15666, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 85, '0000-00-00 00:00:00', 1),
(15831, 15663, 59, 3, 0, 'Selected for Kannan Team', 19, '2023-12-16 06:24:01', 1),
(15832, 9579, 59, 3, 0, 'Flutter / 3months 10K Trainee Developer if cleared then 15K and further increments overall 2.7 yrs', 60, '0000-00-00 00:00:00', 1),
(15833, 15630, 59, 1, 0, NULL, 89, '2023-12-16 06:30:40', 1),
(15834, 15665, 97, 5, 0, 'not suit for roles ', 85, '0000-00-00 00:00:00', 1),
(15835, 15654, 74, 5, 0, 'not fit', 85, '0000-00-00 00:00:00', 1),
(15836, 15698, 59, 5, 0, 'Looking for Recruitment Role Need  to train a lot in our sales hiring much comfort to IT hiring Not much comfort in NDA and sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15837, 15679, 59, 5, 0, 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', 85, '0000-00-00 00:00:00', 1),
(15838, 15667, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15839, 15726, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(15840, 15723, 19, 5, 1, 'Rejected', 108, '0000-00-00 00:00:00', 1),
(15841, 15722, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15842, 15721, 71, 7, 0, 'Selected ', 108, '0000-00-00 00:00:00', 1),
(15843, 15719, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15844, 15714, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 108, '0000-00-00 00:00:00', 1),
(15845, 15705, 97, 5, 0, 'Rejected In Aptitude Round', 108, '0000-00-00 00:00:00', 1),
(15846, 15713, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15847, 15715, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15848, 15716, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15849, 15717, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15850, 15718, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15851, 15712, 97, 5, 0, 'rejected in Aptitude round', 108, '0000-00-00 00:00:00', 1),
(15852, 15711, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15853, 15708, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15854, 15707, 89, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15855, 1247, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15856, 15476, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15857, 15488, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15858, 15702, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(15859, 15703, 97, 5, 0, 'Rejected In Aptitude Round', 108, '0000-00-00 00:00:00', 1),
(15860, 15704, 97, 5, 0, 'Rejected In Aptitude Round', 108, '0000-00-00 00:00:00', 1),
(15861, 15706, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(15862, 15724, 59, 5, 0, 'Not Suitable For Our Roles Will Not Sustain', 108, '0000-00-00 00:00:00', 1),
(15863, 15660, 59, 3, 0, 'Selected for Syed team in Consultant Role', 57, '2023-12-16 07:35:39', 1),
(15864, 15688, 59, 3, 0, 'Selected for MIS in Staff Role', 104, '0000-00-00 00:00:00', 1),
(15865, 15742, 19, 7, 4, 'Single Parent job needed person', 85, '0000-00-00 00:00:00', 1),
(15866, 15709, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15867, 15739, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15868, 15740, 52, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15869, 15746, 102, 5, 0, 'Not Suitable Sales ', 85, '0000-00-00 00:00:00', 1),
(15870, 15751, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15871, 15753, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15872, 15653, 59, 1, 0, NULL, 74, '2023-12-18 02:42:23', 1),
(15873, 15762, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15874, 15758, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15875, 15750, 19, 5, 1, 'Rejected', 85, '0000-00-00 00:00:00', 1),
(15876, 15749, 19, 5, 1, 'Rejected', 85, '0000-00-00 00:00:00', 1),
(15877, 15732, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15878, 15737, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15879, 15736, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15880, 15741, 59, 3, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 85, '0000-00-00 00:00:00', 1),
(15881, 15742, 59, 3, 0, 'Selected for Kannan Team in Consultant Role Long Career Gap 12th graduate manager recommended 16K salary(Appro 15K tH)', 19, '2023-12-18 06:43:08', 1),
(15882, 15759, 59, 5, 0, 'Not Suitable For Our Roles Will Not Sustain', 85, '0000-00-00 00:00:00', 1),
(15883, 15779, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15884, 15778, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15885, 15772, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15886, 15784, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15887, 15783, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15888, 15769, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15889, 15771, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15890, 15790, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15891, 15793, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15892, 15792, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15893, 15792, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15894, 15788, 53, 7, 0, 'Selected for my team,referring same package as Nisha', 85, '0000-00-00 00:00:00', 1),
(15895, 15789, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15896, 15767, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15897, 15788, 59, 3, 0, 'Selected for Banu Team in consultant Role', 53, '2023-12-20 09:58:05', 1),
(15898, 15791, 59, 3, 0, 'Selected for Accounts Team in Staff Role  Gokul shortlisted the profile', 60, '0000-00-00 00:00:00', 1),
(15899, 15794, 71, 5, 0, 'Not Fit For Sales', 85, '0000-00-00 00:00:00', 1),
(15900, 15729, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15901, 15728, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15902, 15806, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15903, 15796, 51, 5, 0, 'Rejected', 85, '0000-00-00 00:00:00', 1),
(15904, 15821, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15905, 15828, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15906, 15797, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15907, 15808, 59, 3, 0, 'Selected for HR profile in Staff Role', 104, '0000-00-00 00:00:00', 1),
(15908, 15823, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15909, 15813, 31, 5, 3, 'she dont have direct calling or sales experience.  ', 104, '0000-00-00 00:00:00', 1),
(15910, 15819, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15911, 15814, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15912, 15815, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15913, 15798, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15914, 15799, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15915, 15800, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15916, 15801, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15917, 15802, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15918, 15804, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15919, 15807, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15920, 15810, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15921, 15618, 59, 3, 0, 'Selecetd fir B2B ', 53, '2023-12-21 12:20:19', 1),
(15922, 15795, 105, 5, 0, '5050 Sustain Problem', 85, '0000-00-00 00:00:00', 1),
(15923, 15831, 102, 5, 0, 'Not Suitable Sales ', 85, '0000-00-00 00:00:00', 1),
(15924, 15846, 102, 5, 0, 'Not Suitable Sales ', 85, '0000-00-00 00:00:00', 1),
(15925, 15860, 97, 5, 0, 'no tamil .. from raipur... long run doubts', 85, '0000-00-00 00:00:00', 1),
(15926, 15858, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15927, 15857, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15928, 15856, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15929, 15854, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15930, 15853, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15931, 15852, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15932, 15851, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15933, 15848, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15934, 15845, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15935, 15824, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15936, 15837, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15937, 15836, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15938, 15832, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15939, 15833, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15940, 15834, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15941, 15855, 59, 5, 0, 'Not Suitable For Our Roles Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15942, 15850, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15943, 15835, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15944, 15849, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15945, 15760, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15946, 15864, 74, 7, 0, 'she is ok with the profile father passed away 1 year back. brother working in the same jewellery shop sales, he is worked as multiple company and have good insurance knowledge 3 years experience in insurance field expected 15 to 18k kindly check once and have laptop and ready to join 26 dec kindly check once ', 108, '0000-00-00 00:00:00', 1),
(15947, 15862, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15948, 15830, 74, 7, 0, 'He is fit for sales , completed diploma , worked as a senior sales executive 1 year experience and worked as a sales officer in idfc first bank.. ready to join immediately and expected 15k above..have laptop..and ready to join immediately kindy check and confirm once', 108, '0000-00-00 00:00:00', 1),
(15949, 15668, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15950, 15875, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15951, 14981, 59, 3, 0, 'Selected for IT Team 3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 60, '0000-00-00 00:00:00', 1),
(15952, 15830, 59, 1, 0, NULL, 74, '2023-12-22 05:53:07', 1),
(15953, 15864, 59, 3, 0, 'Selected for Sithy team in Consultant Role', 74, '2023-12-22 06:04:09', 1),
(15954, 15880, 53, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15955, 15879, 53, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15956, 15884, 59, 5, 0, 'Not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(15957, 15885, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15958, 15888, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15959, 15881, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15960, 15890, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15961, 15886, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15962, 15896, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15963, 15895, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15964, 15921, 74, 7, 0, 'she is ok with the profile completed bca in thanjavur- father auto driver - stay in pudhukottai travel time 1 hour..expected 12k to 13k fresher and ready to join immeditaely....laptop arranged kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(15965, 15950, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15966, 15949, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15967, 15946, 59, 5, 0, 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', 104, '0000-00-00 00:00:00', 1),
(15968, 15933, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15969, 15934, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15970, 15929, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15971, 15926, 109, 5, 0, 'Interview taken by palani sir\nWill not suitable for our role', 104, '0000-00-00 00:00:00', 1),
(15972, 15942, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15973, 15931, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15974, 15937, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15975, 15965, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15976, 15977, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15977, 15962, 53, 7, 0, 'selected fr b2b', 104, '0000-00-00 00:00:00', 1),
(15978, 15960, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15979, 15971, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15980, 15955, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15981, 15957, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15982, 15980, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15983, 15978, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15984, 15979, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15985, 15976, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15986, 15959, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15987, 15973, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15988, 15963, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15989, 15961, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15990, 15952, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15991, 15966, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15992, 15974, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15993, 15968, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15994, 15964, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15995, 15953, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15996, 15954, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15997, 15967, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15998, 15969, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15999, 15970, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(16000, 15958, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(16001, 15972, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(16002, 15956, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(16003, 15975, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(16004, 15951, 105, 5, 0, 'Sustaining Problem Also Looking For Non Voice Process', 104, '0000-00-00 00:00:00', 1),
(16005, 15938, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(16006, 15863, 59, 3, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 60, '0000-00-00 00:00:00', 1),
(16007, 15983, 19, 7, 4, 'She asked 25k ctc but i did not accept that her last salary was 23k ctc if she submit last job pay slip means we will provide same salary of 23k after 7 days training only i will confirm her job', 108, '0000-00-00 00:00:00', 1),
(16008, 15984, 13, 7, 0, 'ok  but salary expectation is high so kindly check and confirm ', 108, '0000-00-00 00:00:00', 1),
(16009, 15473, 57, 7, 0, 'Candidate is ok experience \n', 104, '0000-00-00 00:00:00', 1),
(16010, 15981, 59, 3, 0, '2months Intern 10K then salary will be fixed 3yrs NDA', 104, '0000-00-00 00:00:00', 1),
(16011, 15982, 109, 5, 0, 'Interview Taken By Palani , He Rejects This Profile', 104, '0000-00-00 00:00:00', 1),
(16012, 15985, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16013, 15986, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(16014, 15987, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(16015, 15992, 109, 5, 0, 'Interview Taken By Palani , He Rejects This Profile', 104, '0000-00-00 00:00:00', 1),
(16016, 15993, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(16017, 15991, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(16018, 15988, 109, 5, 0, 'Interview Taken By Palani , He Rejects This Profile', 104, '0000-00-00 00:00:00', 1),
(16019, 15989, 109, 5, 0, 'Interview Taken By Palani , He Rejects This Profile', 104, '0000-00-00 00:00:00', 1),
(16020, 15983, 59, 1, 0, NULL, 19, '2023-12-29 11:14:29', 1),
(16021, 15962, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-12-30 03:34:48', 1),
(16022, 15721, 59, 3, 0, 'Selected for Santhosh Team in Staff role', 71, '2023-12-30 09:28:04', 1),
(16023, 15473, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 57, '2024-01-02 10:29:43', 1),
(16024, 15998, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16025, 15999, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16026, 16001, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16027, 15995, 59, 5, 0, 'Not Suitable For Our Roles Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(16028, 15996, 59, 5, 0, 'Not Suitable For Our Roles Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(16029, 16000, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16030, 16008, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 104, '0000-00-00 00:00:00', 1),
(16031, 16015, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16032, 16016, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16033, 16013, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16034, 16014, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16035, 16017, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16036, 16020, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16037, 16022, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16038, 16026, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16039, 16027, 59, 5, 0, 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', 104, '0000-00-00 00:00:00', 1),
(16040, 16028, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16041, 16030, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(16042, 16019, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 104, '0000-00-00 00:00:00', 1),
(16043, 16023, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 104, '0000-00-00 00:00:00', 1),
(16044, 16024, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(16045, 15921, 59, 1, 0, NULL, 74, '2024-01-04 06:23:07', 1),
(16046, 16031, 59, 5, 0, 'Not open for NDA in MIS Will not sustain and pressure handling in our roles doubtfull not suitable', 104, '0000-00-00 00:00:00', 1),
(16047, 16032, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(16048, 16033, 44, 7, 4, 'Candidate ok and complete the further process', 104, '0000-00-00 00:00:00', 1),
(16049, 16034, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16050, 16036, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16051, 16044, 89, 7, 0, 'Selected ', 104, '0000-00-00 00:00:00', 1),
(16052, 16046, 105, 5, 0, 'Voice is Very Low And Appearance is Not Good', 104, '0000-00-00 00:00:00', 1),
(16053, 16048, 59, 5, 0, 'No Sustainability Salary exp is very high 4.2 LPA current CTC just 1 yrs Exp in accounts', 104, '0000-00-00 00:00:00', 1),
(16054, 16050, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16055, 16049, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16056, 16051, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16057, 16055, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16058, 16056, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16059, 16057, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16060, 16054, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16061, 16053, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16062, 16052, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16063, 16047, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16064, 11681, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16065, 16058, 59, 5, 0, 'Communication Ok not mcuh comfort in NDA Sustainability Doubts if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(16066, 16063, 44, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16067, 16066, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(16068, 16064, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(16069, 16060, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16070, 16044, 59, 3, 0, 'Selected for Babu  Team ', 89, '2024-01-06 04:36:00', 1),
(16071, 16068, 59, 5, 0, 'Left without attending the 2nd level interview \n', 104, '0000-00-00 00:00:00', 1),
(16072, 16077, 30, 7, 4, 'confirm ctc and joining date', 104, '0000-00-00 00:00:00', 1),
(16073, 16071, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(16074, 16073, 59, 5, 0, 'Not suitable for our roles will not sustain\n', 104, '0000-00-00 00:00:00', 1),
(16075, 16074, 31, 5, 3, 'Expecting huge package which will not match for his experience and skills', 104, '0000-00-00 00:00:00', 1),
(16076, 16078, 44, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16077, 16069, 59, 5, 0, 'Not open for Timings not open for NDA will not sustain and handle our role not suitable', 104, '0000-00-00 00:00:00', 1),
(16078, 16080, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16079, 16081, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16080, 16082, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16081, 16037, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16082, 16038, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16083, 16040, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16084, 16041, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16085, 16039, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16086, 16042, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16087, 16021, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16088, 16025, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16089, 16009, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16090, 16012, 109, 5, 0, 'interview taken by palani , he rejects this profile', 104, '0000-00-00 00:00:00', 1),
(16091, 16010, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16092, 16019, 60, 1, 0, NULL, 59, '2024-01-06 07:14:30', 1),
(16093, 16023, 60, 1, 0, NULL, 59, '2024-01-06 07:14:41', 1),
(16094, 16008, 60, 1, 0, NULL, 59, '2024-01-06 07:19:06', 1),
(16095, 15463, 60, 1, 0, NULL, 59, '2024-01-06 07:19:28', 1),
(16096, 15666, 60, 1, 0, NULL, 59, '2024-01-06 07:19:39', 1),
(16097, 16024, 60, 1, 0, NULL, 59, '2024-01-06 07:19:57', 1),
(16098, 15714, 60, 1, 0, NULL, 59, '2024-01-06 07:20:11', 1),
(16099, 16033, 60, 1, 0, NULL, 44, '2024-01-08 10:05:11', 1),
(16100, 16059, 89, 7, 0, 'Selected.. ', 104, '0000-00-00 00:00:00', 1),
(16101, 16086, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16102, 16043, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16103, 16070, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16104, 16076, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16105, 16083, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16106, 16085, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16107, 16087, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16108, 16088, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16109, 16090, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16110, 16091, 59, 3, 0, '3months 6K if Through 3 yrs employ ', 104, '0000-00-00 00:00:00', 1),
(16111, 16092, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16112, 16093, 19, 5, 1, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(16113, 16098, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16114, 16089, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16115, 15984, 59, 1, 0, NULL, 13, '2024-01-09 02:44:26', 1),
(16116, 16099, 57, 7, 0, 'candidate is ok, he  have 1 years exp in different domain and 6 month worked cc sales.Kindly cross check with previous company salary xxamp confirm the joining date. ', 104, '0000-00-00 00:00:00', 1),
(16117, 16102, 19, 7, 4, 'Selected', 104, '0000-00-00 00:00:00', 1),
(16118, 16099, 59, 3, 0, 'Selected for Syed team in consultant  Role', 57, '2024-01-09 03:18:34', 1),
(16119, 16100, 59, 7, 0, 'SElected for HR profile', 104, '0000-00-00 00:00:00', 1),
(16120, 16104, 13, 7, 0, 'salary expectations is high. She is already worked in multiple company in short time, so sustainability is not sure. So kindly check and confirm.', 108, '0000-00-00 00:00:00', 1),
(16121, 16101, 59, 7, 0, 'SElected For HR Profile', 108, '0000-00-00 00:00:00', 1),
(16122, 16102, 59, 3, 0, 'Selected for Kannan Team in Consultant Tole', 19, '2024-01-09 04:12:09', 1),
(16123, 15352, 59, 1, 0, NULL, 105, '2024-01-09 04:12:12', 1),
(16124, 16104, 59, 3, 0, 'selected for Muthu Team in Consultant Role', 13, '2024-01-09 05:42:40', 1),
(16125, 16107, 29, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16126, 16109, 59, 5, 0, 'Not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(16127, 16100, 60, 1, 0, NULL, 59, '2024-01-09 07:41:50', 1),
(16128, 16101, 60, 1, 0, NULL, 59, '2024-01-09 07:42:02', 1),
(16129, 16105, 59, 2, 0, 'Selected for IT if he comes let us try', 104, '0000-00-00 00:00:00', 1),
(16130, 16113, 59, 5, 0, 'Not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(16131, 16115, 59, 5, 0, 'Looking only for IT recruitment', 104, '0000-00-00 00:00:00', 1),
(16132, 16116, 59, 2, 0, '5050 profile for recruitment interviewed by Gokul', 104, '0000-00-00 00:00:00', 1),
(16133, 16117, 59, 2, 0, '5050 Profile for Recruitment', 104, '0000-00-00 00:00:00', 1),
(16134, 16121, 27, 5, 0, 'Not Good in technical', 104, '0000-00-00 00:00:00', 1),
(16135, 16122, 27, 5, 0, 'Not Good In Technical', 104, '0000-00-00 00:00:00', 1),
(16136, 16123, 27, 5, 0, 'Not Good In Technical', 104, '0000-00-00 00:00:00', 1),
(16137, 16124, 27, 2, 0, 'technical wise ok. She has to discuss and confirm the terms.', 104, '0000-00-00 00:00:00', 1),
(16138, 16118, 59, 5, 0, 'Not suitable for our Recruitment Still in Regular Studies will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(16139, 16059, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 89, '2024-01-10 07:17:54', 1),
(16140, 16126, 74, 5, 0, 'not fit for team not completed degree...and having high gap between each and every job dont have sustainabulity too...kindly avoid', 108, '0000-00-00 00:00:00', 1),
(16141, 16128, 74, 7, 0, 'she is ok with the profile..complete bba in 2021- facing accident so 1 year break after joined in a bajaj finserv loan section have pay slip and releiving letter due to health issue...have good exposure and well convenised skills fit for tele sales and expected 13 to 15k...immediate joining ...dont have laptop kindly confirm ready to arrange...father unemployee....highly job need', 108, '0000-00-00 00:00:00', 1),
(16142, 16133, 74, 7, 0, 'she is ok with the profile ..completed msc in 2022 and joined in bajaj finserv loan section ....talk active and professional ..to easy to handle customer...due to kindney stone removal releived from tha job...only 10 month experience .....after 4 month came to cafs...fit for team...father tailor...expected 12 to 13k....imeediate joining ....have no laptop ready to arrange kindly check once annd confirm', 108, '0000-00-00 00:00:00', 1),
(16143, 16136, 31, 4, 4, 'new for financial instrument but calling experience with just dial.  ', 108, '0000-00-00 00:00:00', 1),
(16144, 16136, 29, 1, 0, NULL, 31, '2024-01-11 04:32:12', 1),
(16145, 16134, 59, 2, 0, 'interviewed by Gokul and on Hold', 108, '0000-00-00 00:00:00', 1),
(16146, 16127, 105, 5, 0, 'Slow Learning, Also Sustain Problem', 108, '0000-00-00 00:00:00', 1),
(16147, 16128, 59, 3, 0, 'Selected for Thanjavur in consultant Role', 74, '2024-01-11 06:40:43', 1),
(16148, 16133, 59, 3, 0, 'Selected For Thanjavur In Consultant Role', 74, '2024-01-11 06:44:15', 1),
(16149, 16129, 109, 5, 0, 'High expectation, not worth it', 104, '0000-00-00 00:00:00', 1),
(16150, 16138, 59, 5, 0, 'Settled Family Attitude issue sustainability doubt in our roles', 104, '0000-00-00 00:00:00', 1),
(16151, 16139, 59, 5, 0, 'Salary Exp is high only US IT 1 yr exp min 3 LPA exp', 104, '0000-00-00 00:00:00', 1),
(16152, 16140, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16153, 16141, 59, 5, 0, 'Not suitable for our roles salary exp is high will not sustain', 104, '0000-00-00 00:00:00', 1),
(16154, 16135, 59, 5, 0, 'Not suitable for our roles will not sustain', 104, '0000-00-00 00:00:00', 1),
(16155, 16077, 60, 1, 0, NULL, 30, '2024-01-12 10:22:13', 1),
(16156, 16125, 59, 3, 0, 'Selected for Recruitment Profile', 104, '0000-00-00 00:00:00', 1),
(16157, 16146, 13, 7, 0, 'Candidate Quality And Voice Clarity Ok, But He Is sports Person So Sustainability Is Low, But Job is Need So Move To Joining Process,we Will Check And Confirm in Training Period.', 108, '0000-00-00 00:00:00', 1),
(16158, 16150, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16159, 16152, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16160, 16151, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16161, 16145, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(16162, 16148, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(16163, 16153, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(16164, 16154, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts if the candidate is coming back let us try', 108, '0000-00-00 00:00:00', 1),
(16165, 16156, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(16166, 16162, 74, 5, 0, 'not fit for team... indiscipilanary actives facing....high attitude', 108, '0000-00-00 00:00:00', 1),
(16167, 16164, 74, 5, 0, 'sustainability issue facing....no trust regarding this candidate', 108, '0000-00-00 00:00:00', 1),
(16168, 16163, 53, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16169, 16159, 59, 2, 0, 'She need to confirm her intersest wiht the package\n', 110, '0000-00-00 00:00:00', 1),
(16170, 16160, 59, 3, 0, 'SElected for MIS Role ', 108, '0000-00-00 00:00:00', 1),
(16171, 16161, 59, 5, 0, 'Interview Reject by Gokul', 108, '0000-00-00 00:00:00', 1),
(16172, 16165, 59, 5, 0, 'Not suitable for roles too long distance will not sustain', 108, '0000-00-00 00:00:00', 1),
(16173, 16167, 59, 5, 0, 'Holding offer for 11LPA and Expecting more with 2yrs exp not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(16174, 16166, 59, 5, 0, 'Too long Distance Salary Exp is high and sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(16175, 16146, 59, 1, 0, NULL, 13, '2024-01-16 10:39:12', 1),
(16176, 15569, 59, 3, 0, 'Selected for Intern with Employment conditions', 60, '0000-00-00 00:00:00', 1),
(16177, 16178, 53, 7, 0, 'having 1.5yrs experience, good in Convincing, frinday joing, pls cnfrm the salary', 108, '0000-00-00 00:00:00', 1),
(16178, 16180, 59, 5, 0, 'Left without attending', 108, '0000-00-00 00:00:00', 1),
(16179, 16175, 59, 5, 0, 'Left without attending', 108, '0000-00-00 00:00:00', 1),
(16180, 16177, 59, 5, 0, 'Not Open With The TxxampC Need Time To Check With Family And Confirm If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(16181, 16174, 59, 5, 0, 'Looking much for IT recruitment Min exp is 4 LPA\n', 108, '0000-00-00 00:00:00', 1),
(16182, 16172, 59, 5, 0, 'Not Open With The TxxampC Need Time To Check With Family And Confirm If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(16183, 16170, 59, 5, 0, 'Not open with the TxxampC Need time to check with family and confirm if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(16184, 16176, 59, 4, 0, '5050 profile open for TxxampC seems to be slow kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(16185, 16179, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16186, 16176, 27, 1, 0, NULL, 59, '2024-01-17 07:06:24', 1),
(16187, 16173, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16188, 16171, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16189, 16182, 59, 5, 0, 'Not suitable for our roles rejected by Gokul', 108, '0000-00-00 00:00:00', 1),
(16190, 16183, 59, 5, 0, 'Not Suitable For Our Roles Rejected By Gokul', 108, '0000-00-00 00:00:00', 1),
(16191, 16187, 59, 2, 0, 'Checked for Renewal Support Salary Exp is more need to check and confirm later', 110, '0000-00-00 00:00:00', 1),
(16192, 16184, 60, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16193, 16186, 59, 5, 0, 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', 110, '0000-00-00 00:00:00', 1),
(16194, 16190, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16195, 16191, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16196, 16192, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16197, 16188, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16198, 16189, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16199, 16193, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16200, 16194, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16201, 16197, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16202, 16196, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16203, 16195, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16204, 16199, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16205, 16202, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16206, 16203, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16207, 16200, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16208, 16204, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16209, 16207, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16210, 16206, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16211, 16205, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16212, 16178, 59, 3, 0, 'Selected for Consultant Role Banu Team', 53, '2024-01-19 09:54:40', 1),
(16213, 16212, 86, 7, 0, 'Shortlisted for my team. Ctc-3.6 lakhs.', 110, '0000-00-00 00:00:00', 1),
(16214, 16213, 59, 5, 0, 'Not Comfortable with the distance not suitable', 110, '0000-00-00 00:00:00', 1),
(16215, 16212, 60, 1, 0, NULL, 86, '2024-01-19 11:49:16', 1),
(16216, 16208, 59, 5, 0, 'Technical round Reject', 110, '0000-00-00 00:00:00', 1),
(16217, 16209, 59, 2, 0, 'He is ok with txxampC if he reaches jothiga and giving confirmation let us consider', 110, '0000-00-00 00:00:00', 1),
(16218, 16215, 59, 3, 0, 'Initial 3 months 18K then 21K can be provided 3 yrs NDA', 110, '0000-00-00 00:00:00', 1),
(16219, 16217, 59, 2, 0, 'Communication Ok 1.3 yrs exp current 21K but exp around 25+ and getting married in 1 yr long run doubts a lot', 110, '0000-00-00 00:00:00', 1),
(16220, 8732, 59, 5, 0, 'No sustainability not open to handle the work pressure', 110, '0000-00-00 00:00:00', 1),
(16221, 16221, 59, 5, 0, 'No Communication Min exp is 28K but not much strong with the basics pressure handling doubts', 110, '0000-00-00 00:00:00', 1),
(16222, 16214, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16223, 16220, 53, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16224, 16210, 59, 5, 0, 'Technical Round Reject', 110, '0000-00-00 00:00:00', 1),
(16225, 16224, 59, 5, 0, 'Not uitable for our roles age around 34 fresher for HR and Salary exp is min 25K', 110, '0000-00-00 00:00:00', 1),
(16226, 16211, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16227, 16216, 59, 2, 0, 'Will come for Next round on 20 Jan 2024 between 04.30 to 05.30', 110, '0000-00-00 00:00:00', 1),
(16228, 16223, 59, 5, 0, 'Not suitable for our roles will not sustain and handle pressure ', 110, '0000-00-00 00:00:00', 1),
(16229, 16218, 59, 2, 0, 'If terms ok we can consider her profile for IT', 60, '0000-00-00 00:00:00', 1),
(16230, 16222, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16231, 16236, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16232, 16229, 59, 3, 0, 'Selected fr Accounts Team', 110, '0000-00-00 00:00:00', 1),
(16233, 16238, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16234, 16232, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16235, 16228, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16236, 16239, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16237, 16234, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16238, 16230, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16239, 16240, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16240, 16245, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16241, 16246, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16242, 16243, 59, 5, 0, 'Bihari candidate will not sustain in our roles', 110, '0000-00-00 00:00:00', 1),
(16243, 16237, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16244, 16247, 31, 5, 3, 'not actually intended to attend interview, just seen our board near lift and came to attend what kind of compnany it is.  ', 110, '0000-00-00 00:00:00', 1),
(16245, 16226, 44, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16246, 16244, 30, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16247, 16233, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16248, 16235, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16249, 16227, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16250, 16258, 59, 2, 0, 'Need to check and confirm later ', 110, '0000-00-00 00:00:00', 1),
(16251, 16254, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16252, 16259, 86, 4, 0, 'Selected For next round', 110, '0000-00-00 00:00:00', 1),
(16253, 16263, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16254, 16270, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16255, 16269, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16256, 16268, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16257, 16267, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16258, 16266, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16259, 16265, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16260, 16264, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16261, 16261, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16262, 16257, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16263, 16256, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16264, 16255, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16265, 16262, 57, 7, 0, 'He have 6 month experience Sales,pls confirm the joining date xxamp Salary ', 110, '0000-00-00 00:00:00', 1),
(16266, 16273, 53, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16267, 16281, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16268, 16278, 105, 7, 0, 'Have Work Experiance in other Domain, But Sustain is Doubt, Will Try To Analyis in the traing period. Also His salary excepation is to high, but not for the quality in our domain ,Will provide fresher salary or 16k to 17k .', 104, '0000-00-00 00:00:00', 1),
(16269, 16285, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16270, 16275, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16271, 16272, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16272, 16271, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16273, 16288, 53, 7, 0, 'experienced. Selected for b2b', 110, '0000-00-00 00:00:00', 1),
(16274, 16283, 53, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16275, 16287, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16276, 16286, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16277, 16284, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16278, 16282, 53, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16279, 16260, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16280, 16253, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16281, 16289, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16282, 16292, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16283, 16280, 105, 5, 0, 'Could Not understand The Quetions , Also Communication Problem , Did Not Spoke Properly, Also Overall Performance is Not Good.', 108, '0000-00-00 00:00:00', 1),
(16284, 16294, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16285, 16293, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16286, 16291, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16287, 16296, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16288, 16297, 57, 4, 0, 'Candidate is ok, rajasekar Reference, Fresher  ', 110, '0000-00-00 00:00:00', 1),
(16289, 16298, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16290, 16305, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16291, 16278, 59, 1, 0, NULL, 105, '2024-01-23 12:27:29', 1),
(16292, 16297, 19, 7, 4, 'Selected ', 57, '2024-01-23 12:31:56', 1),
(16293, 16307, 51, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(16294, 16309, 89, 7, 0, 'Already telle calling experience.. selected ', 104, '0000-00-00 00:00:00', 1),
(16295, 16312, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring', 110, '0000-00-00 00:00:00', 1),
(16296, 16301, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16297, 16306, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16298, 16262, 59, 3, 0, 'Selected for Syed Team ', 57, '2024-01-23 04:12:33', 1),
(16299, 16319, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16300, 16318, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16301, 16317, 59, 5, 0, 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16302, 16315, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 110, '0000-00-00 00:00:00', 1),
(16303, 16311, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16304, 16313, 19, 7, 4, 'Selected ', 104, '0000-00-00 00:00:00', 1),
(16305, 16309, 59, 3, 0, 'Selected for Ba bu Team in Consultant Role', 89, '2024-01-23 06:24:33', 1),
(16306, 16297, 59, 3, 0, 'Ok Profile 5050 Need to analyse in 7 days Pressure handling doubt provided 16K based on managers recommendation', 19, '2024-01-23 10:35:24', 1),
(16307, 16313, 59, 3, 0, 'Selected for Kannan Team ', 19, '2024-01-23 10:37:01', 1),
(16308, 16324, 59, 5, 0, 'Not suitable for our recruitment Role not much comfort in telesales too', 110, '0000-00-00 00:00:00', 1),
(16309, 16322, 74, 5, 0, 'not fit for team have no exposure and sales not suitable married also facing family issues also', 108, '0000-00-00 00:00:00', 1),
(16310, 16327, 31, 4, 4, 'candidate okay and send for next round with Gaurav', 110, '0000-00-00 00:00:00', 1),
(16311, 16325, 53, 7, 0, 'Selected for b2b.  Fresher will try', 110, '0000-00-00 00:00:00', 1),
(16312, 16326, 59, 5, 0, 'Looking only for the IT recruitment role and exp around 22-23K\n', 110, '0000-00-00 00:00:00', 1),
(16313, 16328, 105, 7, 0, 'Communication is Good,Will Go For Further Process.', 104, '0000-00-00 00:00:00', 1),
(16314, 16329, 102, 4, 0, '1yrs exp other domain, Good Communication,Pls confirm the joining date xxamp Salary', 104, '0000-00-00 00:00:00', 1),
(16315, 16331, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16316, 16338, 19, 5, 1, 'Reject', 110, '0000-00-00 00:00:00', 1),
(16317, 16338, 19, 5, 1, 'Reject', 110, '0000-00-00 00:00:00', 1),
(16318, 16335, 59, 5, 0, 'Not Suitable for our roles will not sustain', 110, '0000-00-00 00:00:00', 1),
(16319, 16334, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16320, 16336, 59, 5, 0, 'Not suitable for our sales roles will not sustain', 110, '0000-00-00 00:00:00', 1),
(16321, 16337, 57, 4, 0, 'Candidate is ok , 1year exp shreeram life insurance trisha ref.', 110, '0000-00-00 00:00:00', 1),
(16322, 16339, 59, 5, 0, 'Not suitable for our roles will not sustain and handle our work pressure', 110, '0000-00-00 00:00:00', 1),
(16323, 16340, 89, 7, 0, 'Selected..But the salary expectations are high for him. I have said that we cannot give that much salary increase..', 110, '0000-00-00 00:00:00', 1),
(16324, 16341, 57, 7, 0, '1.5yrs exp (per day 150 calls allocate driver xxamp Some fixing ass)\npls let me know the salary xxamp joining date', 110, '0000-00-00 00:00:00', 1),
(16325, 16323, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16326, 16343, 19, 5, 1, 'He asked only about Salary', 110, '0000-00-00 00:00:00', 1),
(16327, 16342, 44, 7, 3, 'Candidate ok for me do the Further process', 104, '0000-00-00 00:00:00', 1),
(16328, 16342, 60, 1, 0, NULL, 44, '2024-01-25 05:51:16', 1),
(16329, 16340, 59, 3, 0, 'Selected for Babu Team in consultant Role', 89, '2024-01-27 11:49:07', 1),
(16330, 16337, 102, 7, 0, 'Candidate is ok, already 1exp in shreeram life insurance , internal Ref - trisha. \nPls let me know the joining date xxamp Salary', 57, '2024-01-27 03:24:47', 1),
(16331, 16356, 19, 5, 1, 'Rejected', 108, '0000-00-00 00:00:00', 1),
(16332, 16354, 57, 7, 0, 'Candidate is ok, pls confirm the joining date xxamp Salary, 1.5yrs exp porter (driver handling fixing  Appointments)', 108, '0000-00-00 00:00:00', 1),
(16333, 16357, 19, 5, 0, 'Rejected', 108, '0000-00-00 00:00:00', 1),
(16334, 16358, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16335, 16354, 59, 3, 0, 'Selected for Syed Team', 57, '2024-01-27 05:17:16', 1),
(16336, 16325, 59, 1, 0, NULL, 53, '2024-01-27 06:08:57', 1),
(16337, 16288, 59, 1, 0, NULL, 53, '2024-01-27 06:11:16', 1),
(16338, 16315, 19, 7, 4, 'Selected', 59, '2024-01-27 06:34:15', 1),
(16339, 16341, 59, 3, 0, 'Selecetd for Syed Team ', 57, '2024-01-27 06:45:32', 1),
(16340, 16351, 86, 4, 0, 'Selected for next round', 108, '0000-00-00 00:00:00', 1),
(16341, 16350, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16342, 16359, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16343, 16337, 59, 3, 0, 'selected for Charles Team ', 102, '2024-01-27 07:21:32', 1),
(16344, 16329, 59, 3, 0, 'Selected for Charles Team in consultant Role', 102, '2024-01-27 07:22:30', 1),
(16345, 16351, 18, 7, 0, 'Selected for ManinTeam. Referred by gnanashekar. Please negotiate the salary accordingly and Able to Join in Mid of Feb', 86, '2024-01-29 10:18:43', 1),
(16346, 15515, 18, 8, 0, 'Not Attended', 86, '2024-01-29 10:19:20', 1),
(16347, 16328, 59, 3, 0, 'Selected for Gopinath Team in Consultant ', 105, '2024-01-29 10:21:10', 1),
(16348, 16353, 86, 4, 0, 'Selected for next round', 60, '0000-00-00 00:00:00', 1),
(16349, 16315, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2024-01-29 10:32:28', 1),
(16350, 16360, 59, 5, 0, 'Suggested sales profile by Gokul but not interested in that', 110, '0000-00-00 00:00:00', 1),
(16351, 16361, 59, 2, 0, 'Interviewed by Gokul and selected for intern', 110, '0000-00-00 00:00:00', 1),
(16352, 16370, 59, 5, 0, 'Interviewed by Gokul CTC will not match but ok proifle', 110, '0000-00-00 00:00:00', 1),
(16353, 16369, 59, 2, 0, 'Interviewed by gokul have generalist exp need to confirm his joining', 110, '0000-00-00 00:00:00', 1),
(16354, 16362, 59, 2, 0, 'Interviewed by Gokul and shortlisted for Intern', 110, '0000-00-00 00:00:00', 1),
(16355, 16364, 59, 2, 0, 'Interviewed by Gokul and processed for MF', 110, '0000-00-00 00:00:00', 1),
(16356, 16365, 59, 2, 0, 'Intern with employment interview by Gokul Family well settled', 110, '0000-00-00 00:00:00', 1),
(16357, 16366, 59, 5, 0, 'Interview Reject by Gokul', 110, '0000-00-00 00:00:00', 1),
(16358, 16367, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16359, 16368, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16360, 16371, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16361, 16373, 59, 5, 0, 'Good Package Little high interviewed by Gokul not much releavnt exp', 110, '0000-00-00 00:00:00', 1),
(16362, 16374, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16363, 16375, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16364, 16376, 59, 5, 0, 'Will not sustain and settled family if he comes for freelance let us try', 110, '0000-00-00 00:00:00', 1),
(16365, 16377, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16366, 16353, 18, 7, 0, 'Selected for Mani Team. Package  discussed is 2.98LCTC includung PF. Joining on 1st Feb', 86, '2024-01-29 01:12:51', 1),
(16367, 16351, 60, 1, 0, NULL, 18, '2024-01-29 02:45:05', 1),
(16368, 16353, 60, 1, 0, NULL, 18, '2024-01-29 02:46:33', 1),
(16369, 16372, 19, 5, 1, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16370, 16379, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16371, 16378, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16372, 16380, 59, 2, 0, 'Not much good profile will hold and consider later', 110, '0000-00-00 00:00:00', 1),
(16373, 16381, 31, 5, 4, 'she is expecting inbound kind of sales not much exposure in cold calling and lead generation', 110, '0000-00-00 00:00:00', 1),
(16374, 16363, 74, 5, 0, 'not fit for tele sales , have no job need , sustainability issue', 108, '0000-00-00 00:00:00', 1),
(16375, 16382, 59, 5, 0, 'Will not sustain in our role 3yrs 3 different domain ', 110, '0000-00-00 00:00:00', 1),
(16376, 16383, 59, 5, 0, 'very slow and silent will not handle our work pressure', 110, '0000-00-00 00:00:00', 1),
(16377, 16369, 59, 2, 0, 'We will consider if he is ok with 1.98 LPA Gokul Interviewed', 59, '2024-01-29 07:37:08', 1),
(16378, 16392, 74, 5, 0, 'not fit for telecalling...and long distance high expecttion', 108, '0000-00-00 00:00:00', 1),
(16379, 9910, 71, 4, 0, 'Selected', 108, '0000-00-00 00:00:00', 1),
(16380, 16399, 59, 5, 0, 'Interview Reject by Gokul not suitable for our roles', 110, '0000-00-00 00:00:00', 1),
(16381, 16401, 59, 2, 0, 'For HR profile 4 months intern 8K then 12K interviewed by Gokul need to confirm the DOJ\n', 110, '0000-00-00 00:00:00', 1),
(16382, 16404, 59, 5, 0, 'Not Suitable For Our Roles Salary Exp Is High', 110, '0000-00-00 00:00:00', 1),
(16383, 16403, 59, 5, 0, 'Not suitable for our roles salary exp is high', 110, '0000-00-00 00:00:00', 1),
(16384, 16388, 59, 3, 0, 'Selected for Intern  with 3 months 6K then 2months 8K then employment with 3yrs', 110, '0000-00-00 00:00:00', 1),
(16385, 16387, 53, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16386, 16408, 57, 7, 0, 'he have 3yrs exp insurance field like Health xxamp Life. Team reference. Salary as we discussed 19k so pls confirm.Thanks', 110, '0000-00-00 00:00:00', 1),
(16387, 16398, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16388, 16402, 59, 5, 0, 'Not Suitable For Our Roles Salary Exp Is High', 110, '0000-00-00 00:00:00', 1),
(16389, 16400, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16390, 16400, 57, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16391, 16407, 59, 5, 0, 'Not Suitable For Our Roles ', 110, '0000-00-00 00:00:00', 1),
(16392, 16406, 59, 5, 0, 'Not suitable for our roles ', 110, '0000-00-00 00:00:00', 1),
(16393, 9910, 18, 7, 4, 'Selected for Santhosh Team. Nice Candidate. Can give the salary which she asked and need notoce period to Join', 71, '2024-01-30 01:26:04', 1),
(16394, 16396, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16395, 16397, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16396, 16389, 51, 4, 0, 'Nxt round ', 110, '0000-00-00 00:00:00', 1),
(16397, 16410, 59, 5, 0, 'Frequent Job changes will not sustain and handle our roles ', 110, '0000-00-00 00:00:00', 1),
(16398, 16412, 59, 5, 0, '2 months exp in recruiter and expecting a lot will not sustain for a long', 110, '0000-00-00 00:00:00', 1),
(16399, 16391, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16400, 16394, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16401, 16405, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16402, 16409, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16403, 16411, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16404, 16413, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16405, 16414, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16406, 16094, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16407, 16415, 59, 5, 0, 'Very slow will not sustain and handle our work pressure', 110, '0000-00-00 00:00:00', 1),
(16408, 16417, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16409, 16418, 59, 5, 0, 'open for Web development and HR need to come withhis confirmation if he comes back let us try', 110, '0000-00-00 00:00:00', 1),
(16410, 16439, 59, 5, 0, 'Not suitabl for our roles will not sustain no basics', 110, '0000-00-00 00:00:00', 1),
(16411, 16426, 59, 5, 0, 'Not Cleared The Technical Round', 110, '0000-00-00 00:00:00', 1),
(16412, 16441, 89, 7, 0, 'Selected.. ', 110, '0000-00-00 00:00:00', 1),
(16413, 16437, 31, 4, 4, 'has experience in credit card sales but new to investments and insurance sales', 110, '0000-00-00 00:00:00', 1),
(16414, 16445, 105, 5, 0, 'Communication And Dressing Sense is Very Bad,Also Not Wear Shoe and Activity is also bad. sustainity problem.', 110, '0000-00-00 00:00:00', 1),
(16415, 16428, 59, 2, 0, 'Selected for MF with 15K need to get confirmaiton from candidate', 110, '0000-00-00 00:00:00', 1),
(16416, 16427, 19, 5, 1, 'Rejected', 108, '0000-00-00 00:00:00', 1),
(16417, 16448, 59, 5, 0, 'Have exp in MIS but not ope n for that fresher for Recruiter min exp is 20K will not sustain', 110, '0000-00-00 00:00:00', 1),
(16418, 16449, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16419, 16444, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16420, 16442, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16421, 16446, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16422, 16419, 59, 5, 0, 'Not cleared the technical round', 110, '0000-00-00 00:00:00', 1),
(16423, 16420, 59, 5, 0, 'Not Cleared The Technical Round', 110, '0000-00-00 00:00:00', 1),
(16424, 16421, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16425, 16425, 19, 7, 4, 'He Is Working In Hotel I Think Is Fit For The Job And Same He Need Job.After 7 days only i will decide', 110, '0000-00-00 00:00:00', 1),
(16426, 16424, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16427, 16423, 59, 3, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 110, '0000-00-00 00:00:00', 1),
(16428, 16429, 59, 5, 0, 'Not Cleared The Technical Round', 110, '0000-00-00 00:00:00', 1),
(16429, 16447, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16430, 16438, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16431, 16436, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16432, 16435, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16433, 16433, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16434, 16434, 102, 7, 0, 'Already part time working for real estate sales , then convincing skills is better so, shortlist for team \n', 110, '0000-00-00 00:00:00', 1),
(16435, 16432, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16436, 16431, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16437, 16408, 59, 3, 0, 'Selected for Syed Team ', 57, '2024-02-01 10:06:06', 1),
(16438, 16450, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16439, 16457, 59, 2, 0, 'Psychoogy candidate need toconfirm her interets', 110, '0000-00-00 00:00:00', 1),
(16440, 16456, 59, 2, 0, 'intern with Empl 5month then empl8-10 ', 110, '0000-00-00 00:00:00', 1),
(16441, 16453, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16442, 16452, 89, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16443, 16474, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16444, 16473, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16445, 16437, 29, 7, 3, 'gk team, given task to increase salary, refer resume', 31, '2024-02-01 04:46:50', 1),
(16446, 16441, 59, 3, 0, 'selected for Babu Team', 89, '2024-02-01 05:13:39', 1),
(16447, 16476, 57, 7, 0, 'Candidate is ok, kindly confirm the salary xxamp joining date. fresher', 104, '0000-00-00 00:00:00', 1),
(16448, 16454, 31, 4, 4, '1 year experience.  Talkative guy.  ', 110, '0000-00-00 00:00:00', 1),
(16449, 16459, 89, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16450, 16458, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16451, 16460, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16452, 16461, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16453, 16462, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16454, 16463, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16455, 16464, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16456, 16465, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16457, 16466, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16458, 16467, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16459, 16468, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16460, 16469, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16461, 16471, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16462, 16470, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16463, 16479, 89, 7, 0, 'Selected.. I got to check on him during the first night of practice', 110, '0000-00-00 00:00:00', 1),
(16464, 16478, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16465, 16475, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16466, 16472, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16467, 16327, 29, 7, 2, 'gk team', 31, '2024-02-01 06:40:27', 1),
(16468, 16454, 29, 7, 3, 'Gk team, task given for salary increase in april', 31, '2024-02-01 06:42:24', 1),
(16469, 16425, 59, 3, 0, 'Selected for Kannan Team ', 19, '2024-02-01 06:59:15', 1),
(16470, 16476, 59, 3, 0, 'Selected for Syed Team in Consultant role', 57, '2024-02-01 07:03:23', 1),
(16471, 16437, 59, 3, 0, '25K Net + PF 3L Buz 10MF then 28K Net from april GK Sir Team Reference', 29, '2024-02-01 07:09:46', 1),
(16472, 16454, 59, 3, 0, 'Selected fpr GK sir team in Staff Role', 29, '2024-02-01 07:10:46', 1),
(16473, 16327, 59, 3, 0, 'Selected for GK sir Team in staff role', 29, '2024-02-01 07:13:52', 1),
(16474, 16454, 31, 1, 0, NULL, 59, '2024-02-01 07:52:00', 1),
(16475, 16434, 59, 3, 0, 'Selected For Charles Team in Consultant Role', 102, '2024-02-02 09:45:47', 1),
(16476, 16482, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16477, 16490, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16478, 16455, 19, 7, 4, 'Job Needed person already he is working exp and reliving in proper way,i hope he is job needed person', 110, '0000-00-00 00:00:00', 1),
(16479, 16483, 59, 4, 0, 'Good Communication Have exp in calling can be trained in our roles kindly check and let me know your inputs', 110, '0000-00-00 00:00:00', 1),
(16480, 16485, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16481, 16484, 59, 4, 0, 'Good Communication Have Exp In Calling Can Be Trained In Our Roles Kindly Check And Let Me Know Your Inputs', 110, '0000-00-00 00:00:00', 1),
(16482, 16497, 89, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16483, 16498, 89, 7, 0, 'Selected ', 110, '0000-00-00 00:00:00', 1),
(16484, 16487, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16485, 16488, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16486, 16505, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16487, 16504, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16488, 16502, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16489, 16501, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16490, 16500, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16491, 16493, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16492, 16489, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16493, 16491, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16494, 16492, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16495, 16495, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16496, 16499, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16497, 16506, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16498, 16507, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16499, 16496, 59, 5, 0, 'Not suitable for our roles no basic skills need to travel A LONGwill not sustain', 110, '0000-00-00 00:00:00', 1),
(16500, 16494, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16501, 16483, 71, 4, 0, 'selected', 59, '2024-02-02 07:40:39', 1),
(16502, 16484, 86, 4, 0, 'Selected for next round', 59, '2024-02-02 07:40:50', 1),
(16503, 16511, 57, 7, 0, 'Jfw Charles team candidate', 110, '0000-00-00 00:00:00', 1),
(16504, 16498, 59, 3, 0, 'Selecetd for Babu Team ', 89, '2024-02-03 12:48:33', 1),
(16505, 16479, 59, 1, 0, NULL, 89, '2024-02-03 12:50:24', 1),
(16506, 16509, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16507, 16512, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16508, 16513, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16509, 16455, 59, 3, 0, 'Selected for Kannan Team ', 19, '2024-02-03 05:28:09', 1),
(16510, 16456, 59, 3, 0, 'Intern With Empl 5month Then Empl8-10 ', 59, '2024-02-05 09:56:46', 1),
(16511, 16484, 18, 7, 0, 'Selected For Mani Team. Need 1 Month Notice To Join. Give 2k to 3K  extra take home from Last Salary or negiotiate the same', 86, '2024-02-05 12:16:18', 1),
(16512, 16259, 18, 7, 0, 'Selected for Mani team. Can Join in a week. you can negotiate salary and can give 10 to 15% or 20% hike from last Salary', 86, '2024-02-05 12:23:00', 1),
(16513, 16259, 60, 1, 0, NULL, 18, '2024-02-05 01:03:04', 1),
(16514, 16484, 60, 1, 0, NULL, 18, '2024-02-05 01:07:53', 1),
(16515, 16483, 18, 7, 4, 'Selected For Santhosh Team. Need 1 Month Notice. Can give her the expected and good Candidate', 71, '2024-02-05 01:12:53', 1),
(16516, 9910, 60, 1, 0, NULL, 18, '2024-02-05 01:16:09', 1),
(16517, 16483, 60, 1, 0, NULL, 18, '2024-02-05 01:19:01', 1),
(16518, 16572, 71, 5, 0, 'Not Fit For Sales', 110, '0000-00-00 00:00:00', 1),
(16519, 16520, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16520, 16524, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16521, 16526, 31, 5, 0, 'candidate for shanmugam.  but candidate expectation is huge for this profile ', 110, '0000-00-00 00:00:00', 1),
(16522, 16527, 31, 5, 0, 'Expecting huge package, which will not suite for RM profile and not interested in cold calling', 110, '0000-00-00 00:00:00', 1),
(16523, 16532, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16524, 16594, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16525, 16545, 59, 3, 0, 'Selected for MF Role in Staff Role PT only', 110, '0000-00-00 00:00:00', 1),
(16526, 16562, 89, 7, 0, 'Alredy experience tata health insurance 5 month.. ', 110, '0000-00-00 00:00:00', 1),
(16527, 16583, 89, 7, 0, 'Selected..', 110, '0000-00-00 00:00:00', 1),
(16528, 16584, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16529, 16550, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16530, 16535, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16531, 16538, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16532, 16554, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16533, 16556, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16534, 16571, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16535, 16553, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16536, 16560, 27, 5, 0, 'rejected\n', 110, '0000-00-00 00:00:00', 1),
(16537, 16568, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16538, 16546, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16539, 16551, 27, 5, 0, 'rejected\n', 110, '0000-00-00 00:00:00', 1),
(16540, 16552, 27, 5, 0, 'rejected\n', 110, '0000-00-00 00:00:00', 1),
(16541, 16525, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16542, 16528, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16543, 16523, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16544, 16519, 89, 5, 0, 'No basic skill ', 104, '0000-00-00 00:00:00', 1),
(16545, 16598, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16546, 16515, 19, 7, 4, 'Totelly Fresher job Needed Guy but after training period only we have to decide ', 108, '0000-00-00 00:00:00', 1),
(16547, 16591, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16548, 16580, 102, 7, 0, 'Short list for team ', 110, '0000-00-00 00:00:00', 1),
(16549, 16549, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16550, 16558, 54, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16551, 16575, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16552, 16534, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16553, 16516, 51, 4, 0, 'selected for nxt round', 108, '0000-00-00 00:00:00', 1),
(16554, 16599, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16555, 16563, 27, 5, 0, 'REJECTED', 110, '0000-00-00 00:00:00', 1),
(16556, 16595, 27, 5, 0, 'REJECTED', 110, '0000-00-00 00:00:00', 1),
(16557, 16578, 27, 5, 0, 'REJECTED', 110, '0000-00-00 00:00:00', 1),
(16558, 16597, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16559, 16585, 59, 3, 0, 'Selected for Node JS interviewed by Sathish and Gokul and finalised', 110, '0000-00-00 00:00:00', 1),
(16560, 16596, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16561, 16530, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16562, 16579, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16563, 16522, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16564, 16569, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16565, 16521, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16566, 16590, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16567, 16581, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16568, 16531, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16569, 16557, 59, 3, 0, 'Selected for IT Backend / PHP MySQl', 110, '0000-00-00 00:00:00', 1),
(16570, 16529, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16571, 16562, 59, 3, 0, 'Selected for Babu Team in Consultant  Role', 89, '2024-02-05 06:28:23', 1),
(16572, 16583, 59, 3, 0, 'Selected fr Babu Team in Staff Role', 89, '2024-02-05 06:29:48', 1),
(16573, 16547, 57, 4, 0, 'Candidate is ok, team Reference just6 month Experience, Communication ok.kindly confirm the joining date xxamp salary ', 60, '0000-00-00 00:00:00', 1),
(16574, 16547, 59, 3, 0, 'Selected for Syed Team ', 57, '2024-02-05 06:38:03', 1),
(16575, 16389, 29, 7, 3, 'sarath', 51, '2024-02-06 11:53:14', 1),
(16576, 16516, 29, 1, 0, NULL, 51, '2024-02-06 11:53:39', 1),
(16577, 16533, 57, 5, 0, 'She is not interested for voice process and distance issues', 104, '0000-00-00 00:00:00', 1),
(16578, 16536, 19, 5, 1, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(16579, 16609, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16580, 16602, 59, 2, 0, 'Looking For Internship Yet To Complete Her Exams If She Comes Back  Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16581, 16601, 59, 2, 0, 'Looking for internship yet to complete her exams if she comes back  let us try', 110, '0000-00-00 00:00:00', 1),
(16582, 16646, 59, 2, 0, 'Looking For Internship Yet To Complete Her Exams If She Comes Back  Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16583, 16691, 59, 5, 0, 'Not suitable for our roles age around 44 yrs', 110, '0000-00-00 00:00:00', 1),
(16584, 16652, 59, 2, 0, 'should come for next round for Technical\n', 110, '0000-00-00 00:00:00', 1),
(16585, 16645, 59, 5, 0, 'Not Cleared With The Eligibility Criteria', 110, '0000-00-00 00:00:00', 1),
(16586, 16647, 59, 5, 0, 'Not Cleared With The Eligibility Criteria', 110, '0000-00-00 00:00:00', 1),
(16587, 16643, 59, 5, 0, 'Not Cleared With The Eligibility Criteria', 110, '0000-00-00 00:00:00', 1),
(16588, 16644, 59, 5, 0, 'Not Cleared With The Eligibility Criteria', 110, '0000-00-00 00:00:00', 1),
(16589, 16653, 59, 5, 0, 'Not Cleared With The Eligibility Criteria', 110, '0000-00-00 00:00:00', 1),
(16590, 16642, 59, 5, 0, 'Not cleared with the Eligibility criteria', 110, '0000-00-00 00:00:00', 1),
(16591, 16729, 31, 4, 4, 'candidate okay send him for next round', 110, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(16592, 16730, 31, 5, 2, 'Not fit for our lead generation profile', 110, '0000-00-00 00:00:00', 1),
(16593, 16759, 109, 5, 0, 'Less Experience, More expectation.', 104, '0000-00-00 00:00:00', 1),
(16594, 16702, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16595, 16755, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16596, 16741, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16597, 16706, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16598, 16712, 89, 7, 0, 'Selected, salary discussion only ', 110, '0000-00-00 00:00:00', 1),
(16599, 16745, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16600, 16696, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16601, 16389, 59, 3, 0, 'Selected for Sarath Team in staff Role', 29, '2024-02-08 10:09:43', 1),
(16602, 16756, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16603, 16773, 19, 7, 4, 'Already She Working In Just Dail For Voice Process ,She Speak Well And She Has A Pay Slip  So We Decide Go With Their Last Salary ', 108, '0000-00-00 00:00:00', 1),
(16604, 16763, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16605, 16770, 27, 5, 0, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16606, 16772, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16607, 16791, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16608, 16818, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16609, 16819, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16610, 16785, 105, 7, 0, 'Communication Is Well,But Dress Coding Is Not Proper.Will Check In The Training Period For His Performance', 108, '0000-00-00 00:00:00', 1),
(16611, 16836, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(16612, 16850, 74, 5, 0, 'not fit for sales, ', 108, '0000-00-00 00:00:00', 1),
(16613, 16773, 59, 1, 0, NULL, 19, '2024-02-09 02:04:43', 1),
(16614, 16515, 59, 1, 0, NULL, 19, '2024-02-09 02:05:43', 1),
(16615, 16904, 74, 5, 0, 'dont have clear voice...sustainability issue', 108, '0000-00-00 00:00:00', 1),
(16616, 16785, 59, 1, 0, NULL, 105, '2024-02-09 03:10:24', 1),
(16617, 16838, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16618, 16840, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16619, 16841, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16620, 16839, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16621, 16842, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16622, 16859, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16623, 16861, 105, 7, 0, 'She has good communication skill and well performed in one to one discussion.previous salary 21k she earned but now she is expecting 25K,but we will provide 18k to her.', 110, '0000-00-00 00:00:00', 1),
(16624, 16922, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16625, 16847, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16626, 16695, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16627, 16909, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16628, 16846, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16629, 16873, 31, 4, 4, 'candidate okay selected for next round', 110, '0000-00-00 00:00:00', 1),
(16630, 16976, 105, 5, 0, 'she need to improver her communication', 110, '0000-00-00 00:00:00', 1),
(16631, 16975, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16632, 16974, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16633, 16973, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16634, 16925, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16635, 16939, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16636, 16992, 71, 5, 0, 'Not Fit For Sales', 110, '0000-00-00 00:00:00', 1),
(16637, 16990, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16638, 16989, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16639, 16729, 29, 1, 0, NULL, 31, '2024-02-12 04:35:35', 1),
(16640, 16873, 29, 1, 0, NULL, 31, '2024-02-12 04:39:53', 1),
(16641, 16983, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16642, 16986, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16643, 16980, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16644, 16712, 59, 1, 0, NULL, 89, '2024-02-12 07:26:12', 1),
(16645, 16998, 74, 5, 0, 'SUSTAINABILITY ISSUE NOT INTRESTED IN JOB', 108, '0000-00-00 00:00:00', 1),
(16646, 16979, 105, 5, 0, 'Candidate Apperiance and Perfomance is Not good. also he need to improve his skill', 108, '0000-00-00 00:00:00', 1),
(16647, 16999, 44, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16648, 17006, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16649, 17004, 57, 5, 0, 'JFW Charles candidate, She is not fit for tamil voice process', 110, '0000-00-00 00:00:00', 1),
(16650, 17003, 71, 5, 0, 'Not Fit For Sales', 110, '0000-00-00 00:00:00', 1),
(16651, 17007, 19, 5, 1, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16652, 16878, 59, 3, 0, 'Selected for Driver - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(16653, 17008, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16654, 17010, 59, 3, 0, 'Selected for MF in Staff Role', 110, '0000-00-00 00:00:00', 1),
(16655, 17009, 105, 5, 0, 'Candiate Salary excectation is to high, also sustain problem', 110, '0000-00-00 00:00:00', 1),
(16656, 17000, 71, 4, 0, 'Selected ', 110, '0000-00-00 00:00:00', 1),
(16657, 17002, 19, 7, 4, 'fresher After 7 days only we have to confirm', 110, '0000-00-00 00:00:00', 1),
(16658, 17001, 57, 5, 0, 'interested for Cinema industry', 110, '0000-00-00 00:00:00', 1),
(16659, 17000, 18, 7, 0, 'Selected for Santosh team Today Joining. CTC 3.85 Overall with hike based on on performane in the intial 3 to 6 months. Immed Joinet', 71, '2024-02-13 06:43:16', 1),
(16660, 17021, 105, 5, 0, 'Sustain Problem Also Communication issue', 110, '0000-00-00 00:00:00', 1),
(16661, 17019, 57, 5, 0, 'Sustainability issues', 110, '0000-00-00 00:00:00', 1),
(16662, 17016, 89, 7, 0, 'Selected.. I will recommended 14500 salary ', 110, '0000-00-00 00:00:00', 1),
(16663, 17023, 71, 4, 0, 'selected', 110, '0000-00-00 00:00:00', 1),
(16664, 16861, 59, 1, 0, NULL, 105, '2024-02-14 04:03:48', 1),
(16665, 17014, 44, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16666, 17011, 19, 7, 4, 'job needed person and he speaks well so lets we select and try them', 108, '0000-00-00 00:00:00', 1),
(16667, 17022, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16668, 17027, 74, 5, 0, 'UNFIT FOR TELE SALES AND NOT SUIT FOR SALES', 108, '0000-00-00 00:00:00', 1),
(16669, 17002, 59, 1, 0, NULL, 19, '2024-02-15 04:15:04', 1),
(16670, 17011, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2024-02-15 04:16:07', 1),
(16671, 17036, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16672, 17025, 71, 5, 0, 'Not Fit For Sales', 110, '0000-00-00 00:00:00', 1),
(16673, 17034, 102, 5, 0, 'Not Suitable Sales ', 108, '0000-00-00 00:00:00', 1),
(16674, 17029, 86, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16675, 17041, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16676, 17024, 105, 5, 0, 'Her Communication is Not good also sher is not truthable', 110, '0000-00-00 00:00:00', 1),
(16677, 17016, 59, 3, 0, 'Selected for Babu Team 5050 profile internal reference need to analyse in 7 days training', 89, '2024-02-15 05:00:41', 1),
(16678, 17049, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16679, 17048, 57, 5, 0, 'Candidate is ok but he mentally unfit', 104, '0000-00-00 00:00:00', 1),
(16680, 17047, 71, 4, 0, 'Selected ', 104, '0000-00-00 00:00:00', 1),
(16681, 17046, 89, 7, 0, 'This candidate is fresher . already working in a medical shop. He has the knowledge to talk to the customer. Now he is in where he definitely wants a job. He has some sales garden knowledge', 60, '0000-00-00 00:00:00', 1),
(16682, 17046, 59, 3, 0, 'Selected for Babu Team', 89, '2024-02-17 05:20:41', 1),
(16683, 17046, 59, 3, 0, 'Selected for Babu Team', 89, '2024-02-17 05:35:22', 1),
(16684, 17023, 60, 1, 0, NULL, 71, '2024-02-17 06:18:31', 1),
(16685, 17060, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16686, 17058, 19, 5, 1, 'Not fit for sales', 108, '0000-00-00 00:00:00', 1),
(16687, 17059, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16688, 17054, 31, 4, 4, 'Seems to be an active person also having relevant experience.  Job less now and ready for immediate joining', 108, '0000-00-00 00:00:00', 1),
(16689, 17055, 29, 7, 3, 'sarath team - This Candidate is selected', 108, '0000-00-00 00:00:00', 1),
(16690, 17000, 60, 1, 0, NULL, 18, '2024-02-19 10:18:29', 1),
(16691, 17038, 59, 5, 0, 'She is not comfortable with the target and the pressure will not sustain  in our roles and handle our work pressure', 110, '0000-00-00 00:00:00', 1),
(16692, 17066, 29, 7, 3, 'sarath team', 110, '0000-00-00 00:00:00', 1),
(16693, 17069, 105, 7, 0, 'his conversation and communication is ok but 50/50.We will go for an other process and check with the traning period', 110, '0000-00-00 00:00:00', 1),
(16694, 17065, 74, 5, 0, 'not fit for telesales', 108, '0000-00-00 00:00:00', 1),
(16695, 17068, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(16696, 17070, 57, 7, 0, 'Candidate is ok,pls negotiate the salary and confirm your end joining date', 110, '0000-00-00 00:00:00', 1),
(16697, 17054, 29, 7, 3, 'gk team', 31, '2024-02-19 04:23:09', 1),
(16698, 17071, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16699, 17067, 105, 5, 0, 'Communication is Not good , Also Voice is Very Lower And Apperiance is Also No Good', 108, '0000-00-00 00:00:00', 1),
(16700, 17064, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16701, 17063, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16702, 17056, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16703, 17075, 86, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16704, 17047, 59, 3, 0, 'Selected for Santhosh Team in Staff role Direct selection by Santhosh in the absence of Sriram Sir Need to analyse in 7 Days', 71, '2024-02-20 10:22:08', 1),
(16705, 17070, 59, 1, 0, NULL, 57, '2024-02-20 10:55:34', 1),
(16706, 16511, 59, 1, 0, NULL, 57, '2024-02-20 10:59:36', 1),
(16707, 17080, 71, 5, 0, 'Not Fit For Sales', 110, '0000-00-00 00:00:00', 1),
(16708, 17084, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16709, 17088, 89, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16710, 17086, 59, 5, 0, 'He is into core for many years and fresh to this domain Pressure handling in sales calls seems to be doubt As a fresher he will sustain for a long in this roles', 110, '0000-00-00 00:00:00', 1),
(16711, 17099, 102, 9, 0, 'He is not fit for sales , he is already worked on back end process or renewal collection department ', 110, '0000-00-00 00:00:00', 1),
(16712, 17089, 19, 5, 1, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16713, 17087, 19, 5, 1, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16714, 17090, 59, 4, 0, '5050 Profile fresher for our roles can give a try kindly check and let me know your inputs', 110, '0000-00-00 00:00:00', 1),
(16715, 17101, 53, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16716, 17069, 59, 3, 0, 'Selected for DM Team Relationship Executive Role 5050 Need to analyse in 7 days training', 105, '2024-02-20 01:37:17', 1),
(16717, 17099, 59, 1, 0, NULL, 102, '2024-02-20 04:08:54', 1),
(16718, 17054, 59, 3, 0, '3.5 L  30 days 2 L buiness then 3.75 LPA Commitment from Gaurav Sir and the profile got selected for GK Sir Team', 29, '2024-02-20 05:07:49', 1),
(16719, 17094, 59, 5, 0, 'Not suitable for our roles will nt sustain ', 110, '0000-00-00 00:00:00', 1),
(16720, 17106, 19, 5, 1, 'Not fir for salary', 110, '0000-00-00 00:00:00', 1),
(16721, 17102, 59, 5, 0, 'No Sustainability will not handle the work pressure not much comfort in calling too', 110, '0000-00-00 00:00:00', 1),
(16722, 17097, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16723, 17091, 102, 7, 0, 'Shortlist for team ', 108, '0000-00-00 00:00:00', 1),
(16724, 17092, 59, 2, 0, 'Need to confirm the salary for Operation max 16K overall should check with Gokul and confirm', 110, '0000-00-00 00:00:00', 1),
(16725, 17098, 59, 5, 0, 'Not suitable for our roles will not handle our pressure ', 110, '0000-00-00 00:00:00', 1),
(16726, 17096, 31, 5, 0, 'he will not fit for our lead generation and sales fprofile', 110, '0000-00-00 00:00:00', 1),
(16727, 17077, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16728, 17066, 59, 2, 0, 'Got rejected by the Sales Manager but by mistake he mentioned selected as he got other profile on the same name Evangelin,however we can give a try later with the profile for another manager too.Will confirm the DOI at the earliest', 29, '2024-02-20 06:03:15', 1),
(16729, 17055, 59, 3, 0, '30 Days 1.5L business then 3.2LPA Commitment by Gaurav Sir', 29, '2024-02-20 06:17:02', 1),
(16730, 17090, 19, 5, 1, 'Rejected', 59, '2024-02-20 07:54:40', 1),
(16731, 17107, 19, 5, 1, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16732, 17123, 57, 5, 0, 'he is interested for IT\n', 110, '0000-00-00 00:00:00', 1),
(16733, 17112, 105, 5, 0, 'Communication is Not good', 110, '0000-00-00 00:00:00', 1),
(16734, 17122, 105, 7, 0, 'Candidate Performed ok xxamp Communication is Also little bit okey,will check in the training period', 110, '0000-00-00 00:00:00', 1),
(16735, 17120, 19, 7, 4, 'Selected', 110, '0000-00-00 00:00:00', 1),
(16736, 17121, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16737, 17105, 59, 5, 0, 'Location Constraint Fresher for our roles Daily travel is doubt and have a kid aged 1.5yrs long run doubts in this profile not suitable', 110, '0000-00-00 00:00:00', 1),
(16738, 17114, 59, 5, 0, 'Not suitable for our roles frequent job changes and getting married in next few months too long distance will not sustain', 110, '0000-00-00 00:00:00', 1),
(16739, 17137, 59, 2, 0, 'Holding an offer for 26K TH in Aditya Seems to doubt in our roles if she comes back let us try', 110, '0000-00-00 00:00:00', 1),
(16740, 17120, 59, 3, 0, 'Selected for DM Team in Relationship Executive Role Need to have a analyse in 7 days training', 19, '2024-02-21 03:55:39', 1),
(16741, 17138, 105, 5, 0, 'Candidate Perfomance is not good also expetation is to high', 108, '0000-00-00 00:00:00', 1),
(16742, 17136, 59, 5, 0, 'Not suitable for our roles looking only for salary for time being not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(16743, 17140, 86, 4, 0, 'selected For next round', 110, '0000-00-00 00:00:00', 1),
(16744, 17130, 89, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16745, 17127, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16746, 17128, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16747, 17129, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16748, 17131, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16749, 17122, 59, 3, 0, 'Can be trained in our roles selected for Relationship Executive DM Team will try in this role', 105, '2024-02-21 04:39:36', 1),
(16750, 17146, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16751, 17152, 59, 5, 0, 'Looking for Desktop Support Engineer Role only not suitable for our roles', 110, '0000-00-00 00:00:00', 1),
(16752, 17155, 59, 3, 0, 'Selected for Operations Role Need to confirm from candidate side ', 110, '0000-00-00 00:00:00', 1),
(16753, 17143, 89, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16754, 17139, 105, 7, 0, 'Candidate Performance is Not too Good ,as well as expectation is high Also sustainity issue,But Will Check in the training period', 110, '0000-00-00 00:00:00', 1),
(16755, 17154, 59, 5, 0, 'Looking for Technical Support Role only', 110, '0000-00-00 00:00:00', 1),
(16756, 17162, 31, 5, 3, 'Expecting high salary and also tring to get govt jobs eagerly ', 110, '0000-00-00 00:00:00', 1),
(16757, 17165, 105, 5, 0, 'Candidate performance is very poor and he is not fit for our job ,also expected 18k but he is not worth for that', 110, '0000-00-00 00:00:00', 1),
(16758, 17139, 59, 1, 0, NULL, 105, '2024-02-22 03:36:49', 1),
(16759, 11967, 59, 4, 0, '5050 profile sustainability Doubts need to check  his product knowledge kindly check and let me know your inputs', 110, '0000-00-00 00:00:00', 1),
(16760, 17167, 59, 3, 0, 'Selected for Relation Executive Role in Renewal Callling', 110, '0000-00-00 00:00:00', 1),
(16761, 17159, 59, 5, 0, 'Looking for Testing profile only', 110, '0000-00-00 00:00:00', 1),
(16762, 17161, 59, 3, 0, 'Selected for Operation Renewals Role', 110, '0000-00-00 00:00:00', 1),
(16763, 17150, 59, 5, 0, 'Will not handle the work pressure need to open up a lot', 110, '0000-00-00 00:00:00', 1),
(16764, 17145, 59, 2, 0, 'Salary Exp is high Sustainability doubts in a long run need to hold and check', 110, '0000-00-00 00:00:00', 1),
(16765, 17153, 19, 5, 1, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16766, 17166, 19, 5, 1, 'Not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16767, 17164, 19, 7, 4, 'Job Needed Person Father And Mother Late So He Fit For The Job ', 110, '0000-00-00 00:00:00', 1),
(16768, 11967, 51, 5, 0, 'rejected', 59, '2024-02-22 07:28:41', 1),
(16769, 17186, 74, 5, 0, 'susatainablity issue', 110, '0000-00-00 00:00:00', 1),
(16770, 17168, 19, 5, 1, 'Not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16771, 17185, 74, 5, 0, 'not fit for sales', 108, '0000-00-00 00:00:00', 1),
(16772, 17174, 19, 5, 1, 'not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16773, 17183, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16774, 17188, 59, 5, 0, 'Not open for Field Appointments looking only for office Work and too long distance', 110, '0000-00-00 00:00:00', 1),
(16775, 17181, 19, 5, 1, 'not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16776, 17184, 31, 5, 4, 'not involved in direct sales or lead generation and expectation also high', 110, '0000-00-00 00:00:00', 1),
(16777, 17178, 59, 5, 0, 'Not much Suitable for the Insurance Sales Will not handle our work Pressure Long run Doubts ', 110, '0000-00-00 00:00:00', 1),
(16778, 17179, 19, 7, 4, 'She is working in General Insurance and also tele calling exp she speaks good and i think she is fit for our job and checking her family back ground She needs 16k to 17k salary i think am ok with that but we have to decide March 2nd and Kindly give joining on 4th of march', 110, '0000-00-00 00:00:00', 1),
(16779, 17175, 19, 5, 1, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16780, 17187, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16781, 17189, 89, 5, 0, 'Not fit for the job', 110, '0000-00-00 00:00:00', 1),
(16782, 17180, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16783, 17176, 59, 3, 0, 'Selected for Renewal Relationship Executive Role  but candidate seems doubtful for the long Run Family Situations Just a try profile', 110, '0000-00-00 00:00:00', 1),
(16784, 17190, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16785, 17177, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16786, 17214, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16787, 17207, 19, 5, 0, 'not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16788, 17198, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16789, 17205, 74, 7, 0, 'she is ok with the profile completed bsc and pursing mba final year.....have some sales knowledge and skills expected 12k have laptop father carpenter and poor side...ready to join kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(16790, 17202, 74, 7, 0, 'he is ok with the profile.....speak fluently and completed msc and prepare for govt job and highly job need have laptop and expected 12k...father running a business kindly check and confirm once', 108, '0000-00-00 00:00:00', 1),
(16791, 17206, 74, 5, 0, 'not fit for telesales', 108, '0000-00-00 00:00:00', 1),
(16792, 17091, 59, 3, 0, 'Selected for Charles Team Should analyse in 7days training', 102, '2024-02-24 04:10:20', 1),
(16793, 17223, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16794, 17212, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16795, 17202, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2024-02-24 06:24:36', 1),
(16796, 17205, 59, 3, 0, 'Selected for Sithy Team  in consultant role', 74, '2024-02-24 06:40:17', 1),
(16797, 17092, 59, 3, 0, 'Selected for Renewal Team ', 59, '2024-02-24 06:42:31', 1),
(16798, 17194, 51, 5, 0, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16799, 17201, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16800, 17164, 59, 3, 0, 'Selected for Kanna n Team ', 19, '2024-02-26 10:24:40', 1),
(16801, 17196, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16802, 17179, 59, 1, 0, NULL, 19, '2024-02-26 11:36:12', 1),
(16803, 17225, 19, 5, 1, 'not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16804, 17244, 59, 2, 0, 'Communication Ok Looking Much For Target Free Profile Much Comfort To Work On Monday To Friday However She Is Fine With Our Conditions Monday To Saturday Left Without Attending The 2nd Round', 110, '0000-00-00 00:00:00', 1),
(16805, 17233, 59, 5, 0, 'No Relevant Exp age around 30 and taking calls and handling our work roles is not possible will not sustain', 110, '0000-00-00 00:00:00', 1),
(16806, 17232, 31, 5, 2, 'Suggested to check for accountant profile', 110, '0000-00-00 00:00:00', 1),
(16807, 17237, 19, 5, 1, 'Not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16808, 17241, 89, 5, 0, 'Long distance ', 110, '0000-00-00 00:00:00', 1),
(16809, 17246, 19, 5, 1, 'not fit for sales', 108, '0000-00-00 00:00:00', 1),
(16810, 17242, 89, 5, 0, 'Worst ', 110, '0000-00-00 00:00:00', 1),
(16811, 17243, 89, 7, 0, 'Alredy work medical field .  Selected ', 110, '0000-00-00 00:00:00', 1),
(16812, 17222, 19, 5, 1, 'not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16813, 17224, 102, 7, 0, 'Shortlist for team ', 110, '0000-00-00 00:00:00', 1),
(16814, 17231, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16815, 17236, 89, 5, 0, 'No skill ', 110, '0000-00-00 00:00:00', 1),
(16816, 17235, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16817, 17240, 59, 2, 0, 'Communication Ok looking much for target free profile much comfort to work on Monday to friday however she is fine with our conditions Monday to Saturday left Without attending the 2nd round', 110, '0000-00-00 00:00:00', 1),
(16818, 17238, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16819, 17227, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16820, 17251, 74, 5, 0, 'not fit for telecalling', 110, '0000-00-00 00:00:00', 1),
(16821, 17249, 19, 5, 1, 'not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16822, 17256, 19, 5, 1, 'Not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16823, 17264, 19, 5, 0, 'rejected', 108, '0000-00-00 00:00:00', 1),
(16824, 17250, 105, 5, 0, 'Candidate Sustainity Issue , Also Communication is Low', 104, '0000-00-00 00:00:00', 1),
(16825, 17260, 19, 5, 0, 'communication is not good', 104, '0000-00-00 00:00:00', 1),
(16826, 17270, 105, 5, 0, 'Candidate Weared Chappal Also Not Suitable For Our Domain And he need to improve his communication skills.', 104, '0000-00-00 00:00:00', 1),
(16827, 17243, 59, 1, 0, NULL, 89, '2024-02-28 10:27:08', 1),
(16828, 17291, 74, 5, 0, 'NOT FIT FOR SALES', 108, '0000-00-00 00:00:00', 1),
(16829, 17293, 74, 7, 0, 'she is ok with the profile completed bcom in bon secures, 1years working in auditing office and 2 years experience in school.. due to b.ed not completion releived from the job,,,have aggresive voice and overcome speaking capacity....highly focused in competative exam ...in tnpsc.....expected 12 to 13k....have laptop...father unemployed..mother house wife....brother worked in battery shop..highly job need..kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(16830, 17286, 19, 5, 0, 'Rejected', 108, '0000-00-00 00:00:00', 1),
(16831, 17266, 102, 5, 0, 'Not Suitable Sales ', 104, '0000-00-00 00:00:00', 1),
(16832, 17293, 59, 3, 0, 'Selected for sithy team', 74, '2024-02-28 06:21:29', 1),
(16833, 17265, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16834, 17269, 105, 7, 0, 'Candidate Performed well and her Communication is good ,But we prefered for 15k salary. kindly follow-up her.', 112, '0000-00-00 00:00:00', 1),
(16835, 17271, 105, 5, 0, 'Candidate Requried High Package ', 112, '0000-00-00 00:00:00', 1),
(16836, 17281, 59, 5, 0, 'No Tamil Communication will not handle our sales process not suitable', 112, '0000-00-00 00:00:00', 1),
(16837, 17296, 19, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(16838, 17307, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16839, 17284, 59, 4, 0, 'Communication ok Can be trained in our roles kindly check Sustainability doubts a lot  check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(16840, 17292, 59, 5, 0, 'Not suitable for our sales roles will not sustain and handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(16841, 17033, 19, 5, 1, 'rejected', 104, '0000-00-00 00:00:00', 1),
(16842, 17317, 102, 5, 0, 'Not Suitable For Sales ', 104, '0000-00-00 00:00:00', 1),
(16843, 17304, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16844, 17318, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16845, 17316, 19, 7, 0, 'She had a exp in tpa insurance and also doing claim she work in a corporate health insurance she speaks good her last salary 15k take home so i decide she has 18K INHAND SALARY  ', 108, '0000-00-00 00:00:00', 1),
(16846, 17316, 59, 1, 0, NULL, 19, '2024-02-29 03:31:49', 1),
(16847, 17311, 59, 4, 0, '5050 profile communication Ok basic insurance knowledge he has kindly check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(16848, 17312, 105, 7, 0, 'Candidate Performance and comminucation is good.she is expecting is 19k,but she is not have any experiance.kindly coordianate and provide 15k tc', 112, '0000-00-00 00:00:00', 1),
(16849, 17311, 86, 1, 0, NULL, 59, '2024-02-29 06:58:08', 1),
(16850, 17284, 51, 5, 0, 'Rejected', 59, '2024-02-29 07:17:05', 1),
(16851, 17269, 59, 3, 0, 'Selected for Gopinath Team', 105, '2024-03-02 12:59:49', 1),
(16852, 17312, 59, 1, 0, NULL, 105, '2024-03-02 01:02:38', 1),
(16853, 17330, 89, 5, 0, 'Not selected ', 112, '0000-00-00 00:00:00', 1),
(16854, 17329, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16855, 17305, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16856, 17334, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16857, 17335, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16858, 17309, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16859, 17310, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16860, 17332, 102, 7, 0, 'Shortlisted for Team ', 112, '0000-00-00 00:00:00', 1),
(16861, 17319, 105, 5, 0, 'Candidate Communication And Apperance is not good,his sustain is  Doubt.', 112, '0000-00-00 00:00:00', 1),
(16862, 17322, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16863, 17327, 59, 3, 0, 'Selected for Operation Renewal Team', 112, '0000-00-00 00:00:00', 1),
(16864, 17347, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16865, 17337, 19, 7, 4, 'Fresher only and she speaks good so we will try 7 days salary freshers salary', 104, '0000-00-00 00:00:00', 1),
(16866, 17337, 59, 3, 0, 'Selected for Kannan Tem', 19, '2024-03-04 04:05:08', 1),
(16867, 17224, 59, 3, 0, 'Selected for Charles Team\n', 102, '2024-03-04 05:37:56', 1),
(16868, 17339, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16869, 17326, 105, 7, 0, 'candidate communication and performance is good ,but little bit doubt in her sustainty,will check her in the training period', 104, '0000-00-00 00:00:00', 1),
(16870, 17349, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16871, 17343, 105, 5, 0, 'candidate performance and apperance is too bad,not fit for our job', 108, '0000-00-00 00:00:00', 1),
(16872, 17350, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16873, 17351, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16874, 17345, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16875, 17370, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16876, 17369, 59, 3, 0, 'Selected for Kannan Team in consultant Role  Relationship Executive', 112, '0000-00-00 00:00:00', 1),
(16877, 17368, 59, 5, 0, 'Looking for Intern HR but no Communication  Have some references too will not sustain', 112, '0000-00-00 00:00:00', 1),
(16878, 17365, 59, 3, 0, 'intern for Mutual fund Unpaid intern  based on his performance should consider for Job', 112, '0000-00-00 00:00:00', 1),
(16879, 17364, 59, 5, 0, 'Fresher for our roles career Gap Language barrier Malayalam native will not sustain and handle our work pressure', 112, '0000-00-00 00:00:00', 1),
(16880, 17362, 105, 7, 0, 'candidate performed well also she have good communication and her confidence level also nice. she is expecting 15k to 18k inhand but she is pure fresher will provide fresher cost only', 112, '0000-00-00 00:00:00', 1),
(16881, 17357, 89, 5, 0, 'No basic skills ', 112, '0000-00-00 00:00:00', 1),
(16882, 17360, 102, 5, 0, 'Not Suitable For Sales ', 112, '0000-00-00 00:00:00', 1),
(16883, 17366, 89, 5, 0, 'No basic skills ', 112, '0000-00-00 00:00:00', 1),
(16884, 17358, 53, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16885, 17355, 59, 3, 0, 'Selected for Mutual Fund Profile Relationship Executive Can be trained in our roles Communication Good ', 112, '0000-00-00 00:00:00', 1),
(16886, 17359, 59, 5, 0, 'Not suitable for our roles', 112, '0000-00-00 00:00:00', 1),
(16887, 17326, 59, 3, 0, 'Selected fpr Gopi Team', 105, '2024-03-05 06:17:48', 1),
(16888, 17362, 59, 1, 0, NULL, 105, '2024-03-05 06:23:24', 1),
(16889, 17374, 59, 4, 0, '5050 profile have telecalling exp in Visa process kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(16890, 17376, 59, 5, 0, 'Looking for Non-Voice process Career Gap will not sustain in our roles not suitable for our roles ', 104, '0000-00-00 00:00:00', 1),
(16891, 17378, 59, 4, 0, '5050 profile have exp but not a relevant one kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(16892, 17379, 102, 5, 0, 'Not Suitable For Sales ', 104, '0000-00-00 00:00:00', 1),
(16893, 17380, 59, 4, 0, 'Communication Good Having telecalling Exp can be trained in our roles kindly check and let me kow your inputs', 104, '0000-00-00 00:00:00', 1),
(16894, 17385, 86, 4, 0, 'Selected for Next round', 104, '0000-00-00 00:00:00', 1),
(16895, 17374, 105, 5, 0, 'Candidate Performance And Communication is Not Good ', 59, '2024-03-06 04:03:19', 1),
(16896, 17380, 71, 4, 0, 'Selected', 59, '2024-03-06 04:06:20', 1),
(16897, 17378, 19, 5, 0, 'rejected', 59, '2024-03-06 04:07:10', 1),
(16898, 17369, 19, 7, 4, 'Selected ', 59, '2024-03-06 04:16:14', 1),
(16899, 17398, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(16900, 17397, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(16901, 17375, 102, 5, 0, 'Not Suitable For Sales ', 112, '0000-00-00 00:00:00', 1),
(16902, 17394, 59, 4, 0, '5050 profile can give a try in our roles but  expecting early leaving on fridays kindly check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(16903, 17393, 59, 4, 0, 'Communication Good Can give a try in our roles but sustainability need to look kindly check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(16904, 17396, 59, 2, 0, 'Intern for HR 3 months unpaid', 112, '0000-00-00 00:00:00', 1),
(16905, 17407, 59, 5, 0, 'Have Exp in Customer Support but sustainability Issue will not handle our sales calls', 112, '0000-00-00 00:00:00', 1),
(16906, 17393, 19, 7, 4, 'Selected ', 59, '2024-03-07 08:05:53', 1),
(16907, 17394, 19, 5, 0, 'Rejected', 59, '2024-03-07 08:06:57', 1),
(16908, 17410, 59, 5, 0, 'Not suitable for our sales Roles Communication Gap will not sustain and handle our work pressure', 112, '0000-00-00 00:00:00', 1),
(16909, 17422, 105, 5, 0, 'Candidate Apperrance And Performance is Not Good', 112, '0000-00-00 00:00:00', 1),
(16910, 17429, 51, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(16911, 17409, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16912, 17415, 51, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(16913, 17426, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16914, 17428, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16915, 17425, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(16916, 17423, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16917, 17420, 102, 5, 0, 'Not Suitable For Sales ', 104, '0000-00-00 00:00:00', 1),
(16918, 17419, 105, 5, 0, 'Candidate is Comminication Good But Voice is Too Low Also Sustainity Problem', 104, '0000-00-00 00:00:00', 1),
(16919, 17427, 51, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(16920, 17446, 105, 5, 0, 'Candidate Apperance is Good But Performance is Poor , Also his talk is not properly', 108, '0000-00-00 00:00:00', 1),
(16921, 17385, 18, 8, 0, 'Not Attended', 86, '2024-03-09 02:45:45', 1),
(16922, 17140, 18, 8, 0, 'Not Attended', 86, '2024-03-09 02:46:56', 1),
(16923, 17450, 19, 5, 0, 'rejected', 108, '0000-00-00 00:00:00', 1),
(16924, 17447, 102, 7, 0, 'shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(16925, 17435, 57, 7, 0, 'candidate is ok, kindly confirm the joining xxamp Salary', 112, '0000-00-00 00:00:00', 1),
(16926, 17440, 89, 7, 0, 'Selected . But However, during the training period, a conclusion can be arrived at by assessing his performance', 112, '0000-00-00 00:00:00', 1),
(16927, 17369, 59, 3, 0, 'Selected for Kannan Team in consultant Role  Relationship Executive', 19, '2024-03-09 07:09:26', 1),
(16928, 17393, 59, 1, 0, NULL, 19, '2024-03-09 07:10:04', 1),
(16929, 17435, 59, 3, 0, 'Selected for Relationship Executive Role in Staff Role', 57, '2024-03-09 07:38:17', 1),
(16930, 17440, 59, 3, 0, 'Selected for Babu Team Relationship Executive', 89, '2024-03-09 08:41:08', 1),
(16931, 17447, 59, 3, 0, 'Selected for Charles Team Relationship Executive Role Direct Marketing ', 102, '2024-03-11 11:48:29', 1),
(16932, 17493, 59, 5, 0, 'Communication Average Will not sustain in our roles not suitable', 104, '0000-00-00 00:00:00', 1),
(16933, 17495, 102, 7, 0, 'Shortlisted for team ', 112, '0000-00-00 00:00:00', 1),
(16934, 17498, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(16935, 17468, 57, 5, 0, 'Exp high ', 112, '0000-00-00 00:00:00', 1),
(16936, 17472, 89, 7, 0, 'Selected . But He asked for a higher salary.I have told him that the office will not pay the salary he is asking for', 112, '0000-00-00 00:00:00', 1),
(16937, 17488, 102, 5, 0, 'not suitable sales ', 112, '0000-00-00 00:00:00', 1),
(16938, 17497, 59, 5, 0, 'Intern looking Need to open up a lot not suitable in our work roles', 112, '0000-00-00 00:00:00', 1),
(16939, 17491, 105, 7, 0, 'candidate communication and performance is good , but need to confrim her in the training period', 112, '0000-00-00 00:00:00', 1),
(16940, 17499, 105, 7, 0, 'Candidate Comminication And Performance Is Good ,But Her Expectation Is Too High,Consider For Fresher Salary ,If She Not Ok With That Kindly omit her', 112, '0000-00-00 00:00:00', 1),
(16941, 17461, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16942, 17505, 109, 5, 0, 'interview taken by banu mam, she rejects the profile', 104, '0000-00-00 00:00:00', 1),
(16943, 17504, 109, 5, 0, 'interview taken by banu mam, she rejects this profile', 104, '0000-00-00 00:00:00', 1),
(16944, 17503, 109, 5, 0, 'interview taken by banu mam, she rejects this profile', 104, '0000-00-00 00:00:00', 1),
(16945, 17506, 59, 5, 0, 'Communication OK But Pressure handling in sales and Sustainability Doubts in our role let her check and confirm ', 112, '0000-00-00 00:00:00', 1),
(16946, 17332, 59, 3, 0, 'Selected for Charles Team\n', 102, '2024-03-12 10:39:55', 1),
(16947, 17495, 59, 3, 0, 'Selected for Charles Team ', 102, '2024-03-12 11:48:45', 1),
(16948, 17472, 59, 1, 0, NULL, 89, '2024-03-12 12:09:57', 1),
(16949, 17517, 19, 7, 4, 'Already He Knowns MF And He Speaks Good So I Dont Want To Train Him In Sales And MF,CTC 17k ', 108, '0000-00-00 00:00:00', 1),
(16950, 17521, 59, 5, 0, 'Not suitable for our sales roles will not sustain and handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(16951, 17513, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16952, 17463, 105, 5, 0, 'her Salary Expectation is to high also she is worked in star as back end process.', 112, '0000-00-00 00:00:00', 1),
(16953, 17510, 19, 5, 1, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(16954, 17526, 53, 7, 0, 'Vaishnavi ref. having telecalling exp for 2 yrs, good candidate. pls cnfrm the joining and salary', 112, '0000-00-00 00:00:00', 1),
(16955, 17532, 19, 7, 4, 'Job needed Person recently married so we have to try in 7 days training and Freshers salary', 112, '0000-00-00 00:00:00', 1),
(16956, 17512, 59, 5, 0, 'Will not sustain and handle our work pressure no sustainability in her previous exp', 112, '0000-00-00 00:00:00', 1),
(16957, 17518, 102, 5, 0, 'Not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(16958, 17514, 59, 5, 0, 'Looking for non voice process only', 112, '0000-00-00 00:00:00', 1),
(16959, 17517, 59, 3, 0, 'SEleccted for Kannan Tean', 19, '2024-03-12 03:44:09', 1),
(16960, 17532, 59, 3, 0, 'Selected for Kannan Team ', 19, '2024-03-12 05:07:53', 1),
(16961, 17499, 59, 1, 0, NULL, 105, '2024-03-12 05:13:52', 1),
(16962, 17491, 59, 3, 0, 'Selected for Gopinath Team Sustainability should focus need to analyse in 7 days', 105, '2024-03-12 05:18:20', 1),
(16963, 17431, 102, 5, 0, 'Not suitable Sales ', 112, '0000-00-00 00:00:00', 1),
(16964, 17520, 59, 5, 0, 'Not suitable due to work pressure she left also the salary exp is high not suitable', 112, '0000-00-00 00:00:00', 1),
(16965, 17543, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16966, 17555, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16967, 17566, 102, 5, 0, 'Not Suitable For Sales ', 112, '0000-00-00 00:00:00', 1),
(16968, 17553, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(16969, 17556, 59, 3, 0, 'Selected for santhosh Team', 112, '0000-00-00 00:00:00', 1),
(16970, 17530, 59, 5, 0, 'Not suitable for our roles Will not sustain and handle our work pressure', 112, '0000-00-00 00:00:00', 1),
(16971, 17542, 59, 2, 0, 'Selected for MF role 5050 in MF Sales xxamp Support Need to confirm the DOJ', 112, '0000-00-00 00:00:00', 1),
(16972, 17547, 57, 7, 0, 'Candidate is ok pls confirm the joining date xxamp Salary .', 112, '0000-00-00 00:00:00', 1),
(16973, 17547, 59, 1, 0, NULL, 57, '2024-03-14 02:40:34', 1),
(16974, 16385, 19, 5, 1, 'Not fit for sales and he is nott tried to speak', 112, '0000-00-00 00:00:00', 1),
(16975, 17545, 57, 7, 0, 'Candidate is ok pls confirm the joining date xxamp Salary ', 112, '0000-00-00 00:00:00', 1),
(16976, 17574, 105, 5, 0, 'candidate performance and communication is not good , also he is not able to go for outside calls ', 112, '0000-00-00 00:00:00', 1),
(16977, 17525, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(16978, 17560, 102, 5, 0, 'not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(16979, 17567, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(16980, 17570, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(16981, 17561, 105, 5, 0, 'candidate commnunication is good , but her sustatinity is doubt', 112, '0000-00-00 00:00:00', 1),
(16982, 17568, 59, 5, 0, 'No sustainability Communication No will not sustain in our roles not suitable', 112, '0000-00-00 00:00:00', 1),
(16983, 17572, 89, 7, 0, 'Selected. But I Have To Analyze Him During The Seven-Day Training Period', 112, '0000-00-00 00:00:00', 1),
(16984, 17571, 71, 5, 0, 'No skills in sales industry ', 108, '0000-00-00 00:00:00', 1),
(16985, 17575, 59, 5, 0, 'Not suitable for our roles no communication Stamerring a lot ', 112, '0000-00-00 00:00:00', 1),
(16986, 17573, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16987, 17545, 59, 1, 0, NULL, 57, '2024-03-14 07:24:36', 1),
(16988, 17572, 59, 3, 0, 'Selected for Babu Team Much preferred to work in Non voice process Sustainability need to check', 89, '2024-03-14 07:28:00', 1),
(16989, 17556, 71, 4, 0, 'Selected', 59, '2024-03-14 08:05:15', 1),
(16990, 17535, 19, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(16991, 17581, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16992, 17582, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(16993, 17583, 102, 5, 0, 'Not Suitable For Sales ', 112, '0000-00-00 00:00:00', 1),
(16994, 17587, 19, 7, 4, 'Selected ', 112, '0000-00-00 00:00:00', 1),
(16995, 17589, 71, 4, 0, 'Selected ', 112, '0000-00-00 00:00:00', 1),
(16996, 17590, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16997, 17594, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16998, 17591, 57, 5, 0, 'Sales not interested', 112, '0000-00-00 00:00:00', 1),
(16999, 17579, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(17000, 17599, 102, 5, 0, 'Not suitable for sales ', 108, '0000-00-00 00:00:00', 1),
(17001, 17601, 74, 7, 0, 'he is ok with the profile complete bsc cS...and course completed in chennai IT course...due to financial issue not completed msc....job need and fresher expected 12k...father farmer and have laptop...travel time half hour ...kindly check about sustainability and confirm ..imeediate joining.', 108, '0000-00-00 00:00:00', 1),
(17002, 17603, 59, 5, 0, 'Not suitable for our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(17003, 17602, 59, 4, 0, '5050 profile have exp in calling can give a try kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(17004, 17601, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2024-03-16 04:52:02', 1),
(17005, 17602, 71, 5, 0, 'Not Fit For Sales', 59, '2024-03-16 07:36:14', 1),
(17006, 15509, 59, 3, 0, 'Selecetd for Node MySQL intern with Employment ', 60, '0000-00-00 00:00:00', 1),
(17007, 17526, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2024-03-18 05:57:08', 1),
(17008, 17612, 109, 4, 0, 'interview taken by banu mam she moved this profile for second round', 104, '0000-00-00 00:00:00', 1),
(17009, 17607, 105, 5, 0, 'Candidate Communication is Not too good also her sis ter is working in same hDB finance . Sustanity doubt', 104, '0000-00-00 00:00:00', 1),
(17010, 17605, 74, 7, 0, 'He is ok with the profile completed MSC ...maths ,,,candiddate intrested in telecalling...already selected in hdfc credit card section but due to distance he is not join in the company....poor family only ...highly job need...intrested in IT ....kindly chck once have laptop ...expected 12k..immediate joining..father own van driver..', 104, '0000-00-00 00:00:00', 1),
(17011, 17587, 60, 1, 0, NULL, 19, '2024-03-18 07:03:58', 1),
(17012, 17611, 59, 3, 0, 'Selected for Charles TEam\n', 102, '2024-03-18 07:46:01', 1),
(17013, 17589, 60, 1, 0, NULL, 71, '2024-03-18 08:01:16', 1),
(17014, 17380, 18, 7, 0, 'Selected for Santhosh Team. Package to be decided by the HR as discused and Immed Joiner', 71, '2024-03-18 08:03:07', 1),
(17015, 17556, 60, 1, 0, NULL, 71, '2024-03-19 10:15:13', 1),
(17016, 17605, 59, 3, 0, 'Selected for Sithy Team', 74, '2024-03-19 11:51:15', 1),
(17017, 17614, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17018, 17616, 59, 4, 0, '5050 profile have exp in calling but sustainability doubts a lot kindly check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(17019, 17613, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17020, 17615, 59, 4, 0, 'Communication Ok Have Exp in callling can be trained in our roles kindly check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(17021, 15537, 59, 5, 0, 'No Local Language not suitable for our roles will not sustain and high salaryexp', 112, '0000-00-00 00:00:00', 1),
(17022, 17617, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17023, 17615, 51, 5, 0, 'Rejected', 59, '2024-03-19 07:52:32', 1),
(17024, 17616, 105, 5, 0, 'Candidate Communication And Performance is Not Good,Also Her Experiance Quality Also Low', 59, '2024-03-19 07:53:24', 1),
(17025, 17631, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17026, 17632, 31, 5, 4, 'he very much interested in his own business and not relevant experience like sales or lead generation', 112, '0000-00-00 00:00:00', 1),
(17027, 17380, 60, 1, 0, NULL, 18, '2024-03-20 03:35:33', 1),
(17028, 17629, 51, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17029, 17641, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17030, 17643, 105, 5, 0, 'Candidate Communication And Performance is Not Good,Also His  Attire is poor in interview', 104, '0000-00-00 00:00:00', 1),
(17031, 17650, 109, 5, 0, 'interview taken by banu mam, she rejects this profile', 108, '0000-00-00 00:00:00', 1),
(17032, 17645, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17033, 17644, 57, 7, 0, 'Candidate is ok,kindly confirm the salary and joining date\n', 112, '0000-00-00 00:00:00', 1),
(17034, 17665, 57, 5, 0, 'Communication not good', 112, '0000-00-00 00:00:00', 1),
(17035, 17288, 57, 5, 0, 'candidate is not ok for sales job.she int for makeartist', 112, '0000-00-00 00:00:00', 1),
(17036, 17715, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17037, 17690, 59, 2, 0, 'Have Exp in Testing for 8 years Good Candidate open for new domain and interested to learn we can proceed for MF Roles', 112, '0000-00-00 00:00:00', 1),
(17038, 17646, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17039, 17713, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17040, 17627, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17041, 17749, 74, 5, 0, 'not fit for telesales', 108, '0000-00-00 00:00:00', 1),
(17042, 17728, 59, 2, 0, '5050 profile Career Gap Insurance Sales handling doubts not much open for Target need to come with his confirmation', 112, '0000-00-00 00:00:00', 1),
(17043, 17788, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17044, 17762, 89, 5, 0, 'No skill.. health problems ', 112, '0000-00-00 00:00:00', 1),
(17045, 17791, 59, 4, 0, 'Communication Good Have exp in Sales Life insurance Can be trained in our roles kindly check for Sarath Team Sir', 112, '0000-00-00 00:00:00', 1),
(17046, 17719, 57, 7, 0, 'Candidate is ok,sounds good pls confirm the salary xxamp joining date', 112, '0000-00-00 00:00:00', 1),
(17047, 17730, 89, 7, 0, 'Selected.. ', 112, '0000-00-00 00:00:00', 1),
(17048, 17724, 57, 7, 0, '50/50 Distance xxamp Sustainability', 112, '0000-00-00 00:00:00', 1),
(17049, 17737, 57, 8, 0, 'Not yet seen the  candidate', 112, '0000-00-00 00:00:00', 1),
(17050, 17793, 109, 5, 0, 'Virtual interview taken by me, not much clear with his communication. he will not suitable for our role.', 104, '0000-00-00 00:00:00', 1),
(17051, 17792, 109, 4, 0, 'Good with his communication and experience in sales.', 104, '0000-00-00 00:00:00', 1),
(17052, 17776, 59, 5, 0, '5050 profile too long distance  will not sustain and handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(17053, 17725, 57, 7, 0, '50/50 ', 112, '0000-00-00 00:00:00', 1),
(17054, 17791, 29, 1, 0, NULL, 59, '2024-03-22 07:12:34', 1),
(17055, 17644, 59, 1, 0, NULL, 57, '2024-03-23 11:10:19', 1),
(17056, 17815, 74, 7, 0, 'she is ok with the profile completed bsc and worked in equitas small finance bank 2 years and releived joined in jiogeet mutual fund back end process with 15k salary due to covid releived from the job ..married past three years unemployed ...spouse finace collection process....home to office travel time half hour have no laptop expected 15k....april 1 joining ...kindly check once and confirm...speaked well and professional too', 108, '0000-00-00 00:00:00', 1),
(17057, 17730, 59, 3, 0, 'Selected for Babu Team', 89, '2024-03-23 12:41:56', 1),
(17058, 17724, 59, 1, 0, NULL, 57, '2024-03-23 01:33:12', 1),
(17059, 17725, 59, 3, 0, 'SElected for Syed Team in Consultant Role - Relationship Executive need to analyse and confirm the position in 7 days sustainability Doubts', 57, '2024-03-23 01:34:38', 1),
(17060, 17719, 59, 3, 0, 'Selected for Syed Team ', 57, '2024-03-23 01:37:38', 1),
(17061, 17847, 59, 3, 0, 'Selected for HR profile Banaglore Location in Staff /Role', 60, '0000-00-00 00:00:00', 1),
(17062, 17806, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17063, 17849, 105, 5, 0, 'Candidate Performance And Communication Is poor,as well as his attire is not good ', 112, '0000-00-00 00:00:00', 1),
(17064, 17849, 105, 5, 0, 'Candidate Performance And Communication Is poor,as well as his attire is not good ', 112, '0000-00-00 00:00:00', 1),
(17065, 17818, 57, 5, 0, '50/50 she is interested for sales xxamp iT', 112, '0000-00-00 00:00:00', 1),
(17066, 17819, 57, 5, 0, 'Not suitable for salae', 112, '0000-00-00 00:00:00', 1),
(17067, 17839, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17068, 17821, 19, 7, 4, 'job needed person and he fit for sales lets try after 7 days only we have to confirm', 112, '0000-00-00 00:00:00', 1),
(17069, 17815, 59, 3, 0, 'Selected for Sithy Team in Consultant Career Gap need to anallyse in 7 days', 74, '2024-03-23 05:36:31', 1),
(17070, 17835, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17071, 17833, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17072, 17836, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(17073, 17881, 59, 3, 0, 'Selected for Employment 16K initial for 3 months then 18K', 60, '0000-00-00 00:00:00', 1),
(17074, 17879, 57, 5, 0, 'Salary exp High xxamp Outside field not int', 112, '0000-00-00 00:00:00', 1),
(17075, 17853, 57, 5, 0, 'language issue, he comfortable with Telugu ', 112, '0000-00-00 00:00:00', 1),
(17076, 17922, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17077, 17898, 57, 5, 0, 'He is looking inside sales', 112, '0000-00-00 00:00:00', 1),
(17078, 17913, 86, 7, 0, 'Shortlisted for my team. Ctc 3.1 Lakhs. Joining at April 1st.', 112, '0000-00-00 00:00:00', 1),
(17079, 17939, 105, 5, 0, 'Candidate performance and communication is good ,but she is expecting high salary package also she is very attitude', 112, '0000-00-00 00:00:00', 1),
(17080, 17855, 59, 5, 0, 'Not suitable for Sales having exp in Inbound and backend operation Holding another offer too will not sustain ', 112, '0000-00-00 00:00:00', 1),
(17081, 17925, 19, 7, 4, 'Fresher ,i hope she fit for sales', 112, '0000-00-00 00:00:00', 1),
(17082, 17930, 59, 2, 0, 'Can give a try need to check with the team and confirm', 112, '0000-00-00 00:00:00', 1),
(17083, 18000, 74, 5, 0, 'not fit for team', 108, '0000-00-00 00:00:00', 1),
(17084, 17964, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17085, 17963, 74, 7, 0, 'he is ok with the profile completed bca in krishna college coimbaore....father passed....mother worked goverment daily attender daily wages....grandfather take over the family by realestate business.....degree completed 2020....6 months in acess health care chennai and releived due to covid...and unemployed for 1 and half years...and worked in a tractor marketing field...sales 6 month and releived....speaked well and have good exposure...have laptop...expected 12 to 15k....salary....imeediate joinig kindly check once ', 108, '0000-00-00 00:00:00', 1),
(17086, 18020, 74, 5, 0, 'not fit for sales', 108, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(17087, 18109, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17088, 18076, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17089, 18110, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17090, 18108, 105, 5, 0, 'Candidate Performance And Communication Is Not Good, Candidate Brother working in tata aig', 112, '0000-00-00 00:00:00', 1),
(17091, 17952, 57, 5, 0, 'Candidate over all 3yrs exp, Sal exp 25k to 28k. 50/50 ', 112, '0000-00-00 00:00:00', 1),
(17092, 17979, 57, 2, 0, 'candidate is ok,i have given 2days of time, he donxquott know the sales process and basic', 112, '0000-00-00 00:00:00', 1),
(17093, 18083, 59, 5, 0, 'Not suitable for our roles will not sustain', 112, '0000-00-00 00:00:00', 1),
(17094, 17957, 57, 5, 0, 'he is mother tongue hindi, He try to manage tamil,Language issues and he is not for sales job and field work.pls check with properly over the call.', 112, '0000-00-00 00:00:00', 1),
(17095, 17651, 105, 5, 0, 'Candidate Performance and communication is not good,attire also very poor', 112, '0000-00-00 00:00:00', 1),
(17096, 17977, 57, 5, 0, 'fresher exp 18k. Sustainability issues ', 112, '0000-00-00 00:00:00', 1),
(17097, 18136, 31, 5, 3, 'referred by RM Ganesh but candidate is seems to be aggressive ', 112, '0000-00-00 00:00:00', 1),
(17098, 17805, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17099, 18118, 57, 4, 0, 'Candidate is ok, Communication Good ', 112, '0000-00-00 00:00:00', 1),
(17100, 17913, 60, 1, 0, NULL, 86, '2024-03-27 01:01:24', 1),
(17101, 18129, 86, 4, 0, 'Selected for next round', 112, '0000-00-00 00:00:00', 1),
(17102, 18123, 71, 5, 0, 'Not Fit For Sales', 112, '0000-00-00 00:00:00', 1),
(17103, 18116, 105, 5, 0, 'Candidate Performance And Communication Is Not Good,also expecting high salary package', 112, '0000-00-00 00:00:00', 1),
(17104, 18138, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17105, 17927, 59, 4, 0, 'Have Exp in calling but not a relevant one can be trained in our roles kindly check and let me  know your inputs', 112, '0000-00-00 00:00:00', 1),
(17106, 18130, 31, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17107, 18137, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17108, 18125, 31, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(17109, 17925, 59, 3, 0, 'Selected for Kannan Team\n', 19, '2024-03-27 06:04:53', 1),
(17110, 17821, 59, 1, 0, NULL, 19, '2024-03-27 06:06:49', 1),
(17111, 17792, 30, 1, 0, NULL, 109, '2024-03-27 06:43:44', 1),
(17112, 17612, 30, 7, 3, 'In hand suggested 19k max', 109, '2024-03-27 06:46:44', 1),
(17113, 13890, 109, 5, 0, 'Not selected for apttitude test.', 109, '2024-03-27 07:03:26', 1),
(17114, 13889, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:03:34', 1),
(17115, 13888, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:03:40', 1),
(17116, 13904, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:03:47', 1),
(17117, 13902, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:03:53', 1),
(17118, 13901, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:03:59', 1),
(17119, 13900, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:04:08', 1),
(17120, 13896, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:04:14', 1),
(17121, 13949, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:04:32', 1),
(17122, 13895, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:04:39', 1),
(17123, 13948, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:05:10', 1),
(17124, 18118, 59, 3, 0, 'Selected for Syed Team ', 57, '2024-03-28 09:41:25', 1),
(17125, 18155, 59, 3, 0, 'Selected for Syed Team in Consultant Role Need to analyse in 7 days ', 112, '0000-00-00 00:00:00', 1),
(17126, 18129, 59, 3, 0, 'Selected for Manikandan Team in staff Role', 86, '2024-03-28 03:19:59', 1),
(17127, 18160, 19, 7, 4, 'Selected ', 112, '0000-00-00 00:00:00', 1),
(17128, 18161, 19, 5, 0, 'not willing to work on sunday', 112, '0000-00-00 00:00:00', 1),
(17129, 18151, 31, 5, 1, 'already worked as accountant and most of his experience in the same field', 112, '0000-00-00 00:00:00', 1),
(17130, 18152, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17131, 18163, 52, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17132, 18162, 52, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17133, 18158, 52, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17134, 18142, 59, 5, 0, 'Looking for Non Voice Process only not suitable', 112, '0000-00-00 00:00:00', 1),
(17135, 18149, 59, 2, 0, 'Have Exp as lead and checked for Sr profile 2nd round interviewed by Gaurav and received positive responses, need to check with director and confirm', 112, '0000-00-00 00:00:00', 1),
(17136, 18148, 59, 4, 0, '5050 profile explained in detail about the roles, sustainability Doubts a lot kindly check once and let me know', 112, '0000-00-00 00:00:00', 1),
(17137, 18155, 57, 4, 0, 'Candidate is ok,pls confirm the joining date xxamp Salary', 59, '2024-03-28 05:46:58', 1),
(17138, 18156, 109, 4, 0, 'candidate is ok, can proceed with next level interview', 104, '0000-00-00 00:00:00', 1),
(17139, 18126, 109, 5, 0, 'He was looking for finance related role, not suitable for sales', 104, '0000-00-00 00:00:00', 1),
(17140, 18155, 59, 3, 0, 'Selected for Syed Team in Consultant Role Need to analyse in 7 days ', 57, '2024-03-28 06:46:15', 1),
(17141, 18127, 109, 4, 0, 'candidate in ok, can proceed with second level face to face interview', 104, '0000-00-00 00:00:00', 1),
(17142, 18132, 109, 5, 0, 'Looking for non voice', 104, '0000-00-00 00:00:00', 1),
(17143, 18154, 109, 5, 0, 'Not Interested in sales', 104, '0000-00-00 00:00:00', 1),
(17144, 18165, 109, 2, 0, 'had experience with different domain, but interested in sales, high expectation.', 104, '0000-00-00 00:00:00', 1),
(17145, 18127, 30, 1, 0, NULL, 109, '2024-03-28 07:05:34', 1),
(17146, 18156, 30, 1, 0, NULL, 109, '2024-03-28 07:06:42', 1),
(17147, 18167, 105, 7, 0, 'Candidate communication and performance is good , will check with him in the training period ', 112, '0000-00-00 00:00:00', 1),
(17148, 17963, 59, 3, 0, 'Selected for Sithy Team', 74, '2024-03-29 11:28:36', 1),
(17149, 18169, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17150, 18190, 86, 7, 0, 'Shortlisted for my team.  Ctc \n2.9 Lakhs. ', 112, '0000-00-00 00:00:00', 1),
(17151, 18185, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17152, 18181, 105, 5, 0, 'Candidate Communication And Performance is Not Good ,Voice is Also Not Clear', 112, '0000-00-00 00:00:00', 1),
(17153, 18183, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17154, 18176, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17155, 18184, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17156, 18174, 52, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17157, 18175, 105, 5, 0, 'Candidate Communication ANd Performance is Not Good Also His Attire is Very Poor', 112, '0000-00-00 00:00:00', 1),
(17158, 18177, 105, 5, 0, 'Candidate Communication And Performance Is Not Good', 112, '0000-00-00 00:00:00', 1),
(17159, 18191, 57, 5, 0, 'Over all 5yr exp,50/50 ', 112, '0000-00-00 00:00:00', 1),
(17160, 18180, 102, 7, 0, 'shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17161, 18182, 102, 5, 0, 'below 18age and not suitable for sales \n', 112, '0000-00-00 00:00:00', 1),
(17162, 18196, 19, 5, 0, 'too high salary but not fitfor that', 112, '0000-00-00 00:00:00', 1),
(17163, 18171, 109, 4, 0, 'Good communication, interested in sales can proceed with direct walkin.', 112, '0000-00-00 00:00:00', 1),
(17164, 18190, 60, 1, 0, NULL, 86, '2024-03-29 04:52:41', 1),
(17165, 18179, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17166, 18198, 52, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17167, 18201, 57, 5, 0, 'He is not suitable for sales xxamp Voice process', 112, '0000-00-00 00:00:00', 1),
(17168, 18203, 86, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17169, 18202, 102, 7, 0, 'Shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17170, 17979, 59, 3, 0, 'Selected for Syed Team Fresher need to train from the Scratch', 57, '2024-03-30 01:12:16', 1),
(17171, 17979, 57, 4, 0, 'Candidate is ok,Kindly move', 57, '2024-03-30 01:12:16', 1),
(17172, 18200, 59, 5, 0, 'Not Suitable for our roles not open to work in Target Will not sustain', 112, '0000-00-00 00:00:00', 1),
(17173, 18204, 59, 2, 0, 'Communication Ok can be trained in our MF Roles if he comes back for next round will check', 112, '0000-00-00 00:00:00', 1),
(17174, 18207, 59, 5, 0, 'Communication very low will not sustain and handle our work roles also he is full of IT Team', 112, '0000-00-00 00:00:00', 1),
(17175, 18209, 59, 5, 0, 'Having hearning issue will not handle our calling Activities not suitable', 112, '0000-00-00 00:00:00', 1),
(17176, 18202, 59, 3, 0, 'Selected for Charles Team ', 102, '2024-03-30 05:31:28', 1),
(17177, 18180, 60, 1, 0, NULL, 102, '2024-03-30 05:32:02', 1),
(17178, 18167, 59, 3, 0, 'Selected for Gopi Team', 105, '2024-03-30 07:12:59', 1),
(17179, 18148, 86, 1, 0, NULL, 59, '2024-04-01 11:18:43', 1),
(17180, 17927, 71, 4, 0, 'Good communication, 1.5 Years Gap in career, We will train and analyse for 7 days and then will move. ', 59, '2024-04-01 11:21:21', 1),
(17181, 18223, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17182, 18225, 53, 5, 0, 'Sustainability Concern', 112, '0000-00-00 00:00:00', 1),
(17183, 18197, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17184, 18212, 57, 7, 0, 'Candidate is ok, Fresher \n50/50 kindly confirm the joining date and salary', 112, '0000-00-00 00:00:00', 1),
(17185, 18228, 53, 5, 0, 'Not suit fr telecalling', 112, '0000-00-00 00:00:00', 1),
(17186, 18224, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17187, 18219, 74, 5, 0, 'unfit', 108, '0000-00-00 00:00:00', 1),
(17188, 18220, 74, 5, 0, 'not fit for sales', 108, '0000-00-00 00:00:00', 1),
(17189, 18214, 74, 7, 0, 'he is ok with the profile, completed bca in coimbatore...after 2 month worked as a telecaller, and going to dubai..after 6 month came to india due to emergency father facing accident and doing photography in part time, mother also health issue...last 8 months worked in a matrimony and releived....last salary 17k ....father water cane business....brother in abroad.....travel time 30km have bike...ready to arrange laptop...kindly check once', 108, '0000-00-00 00:00:00', 1),
(17190, 18215, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17191, 17564, 59, 3, 0, 'Selected for Team Lead Role in Direct Marketing', 60, '0000-00-00 00:00:00', 1),
(17192, 17564, 18, 7, 0, 'Selected as BDM for Health Team. Salary and Joining as discussed', 59, '2024-04-02 10:11:16', 1),
(17193, 18212, 59, 3, 0, 'Selected for Syed Team', 57, '2024-04-02 10:53:40', 1),
(17194, 18238, 53, 7, 0, 'Selected. Pls cnfrm the salary and DOJ', 127, '0000-00-00 00:00:00', 1),
(17195, 17564, 60, 1, 0, NULL, 18, '2024-04-02 01:33:13', 1),
(17196, 18234, 105, 5, 0, 'Candidate Communication ANd Performance Is Not Good Also His Attire Is Very Poor,Sustainity Problem is Doubt', 126, '0000-00-00 00:00:00', 1),
(17197, 18251, 53, 7, 0, 'Selected for b2b.  Appointment fixing channel, pls cnfrm the sal and DOJ', 112, '0000-00-00 00:00:00', 1),
(17198, 18249, 105, 5, 0, 'Candidate Performance is Low', 112, '0000-00-00 00:00:00', 1),
(17199, 18259, 53, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17200, 18258, 53, 7, 0, 'selected. Pls cnfrm the salary and DOJ', 112, '0000-00-00 00:00:00', 1),
(17201, 18242, 53, 7, 0, 'Selected. Pls cnfrm the sal and DOJ', 112, '0000-00-00 00:00:00', 1),
(17202, 18241, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17203, 18237, 53, 7, 0, 'He Is Capable Of Convincing People, Yet He Has A Slight Fear Of Closing Sales. Need To Double-Check. Please Confirm The Salary And DOJ If He Is Okay With Sales.', 112, '0000-00-00 00:00:00', 1),
(17204, 18171, 131, 1, 0, NULL, 109, '2024-04-02 04:44:25', 1),
(17205, 18240, 53, 5, 0, 'She is not fluent in Tamil, and she is also planned for IT.', 112, '0000-00-00 00:00:00', 1),
(17206, 18233, 59, 5, 0, 'Not suitable for our sales roles looking much of HR roles only will not sustain and handle our sales roles', 112, '0000-00-00 00:00:00', 1),
(17207, 18262, 59, 5, 0, 'Not suitable for our roles will not sustain and no communication', 112, '0000-00-00 00:00:00', 1),
(17208, 18232, 53, 7, 0, 'Long distance must first verify the distance before providing joing. Just a 50/50 profile', 112, '0000-00-00 00:00:00', 1),
(17209, 18247, 29, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17210, 17598, 59, 1, 0, NULL, 19, '2024-04-03 09:57:12', 1),
(17211, 18160, 59, 3, 0, 'Selected for Kannan Team in Staff Role', 19, '2024-04-03 10:21:43', 1),
(17212, 18281, 74, 5, 0, 'unfit for telesales', 108, '0000-00-00 00:00:00', 1),
(17213, 18236, 131, 4, 0, 'Good communication, interested in sales ', 126, '0000-00-00 00:00:00', 1),
(17214, 18236, 30, 7, 3, 'in hand 20k will fianlize and immediate joining', 131, '2024-04-03 03:23:05', 1),
(17215, 18237, 59, 1, 0, NULL, 53, '2024-04-03 03:37:21', 1),
(17216, 18256, 131, 5, 0, 'Lack of communication and no knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17217, 18218, 131, 4, 0, 'Good communication, have knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17218, 18218, 30, 7, 4, 'need to discuss about ctc and joining date', 131, '2024-04-03 04:06:14', 1),
(17219, 18283, 57, 5, 0, 'sal exp high and distance too long', 112, '0000-00-00 00:00:00', 1),
(17220, 18263, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17221, 18274, 31, 5, 4, 'she didnt know that came for sales profile earlier she worked with data entry.  just for the consultancy call she came for the interview', 112, '0000-00-00 00:00:00', 1),
(17222, 18271, 86, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17223, 18266, 102, 5, 0, 'not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(17224, 18279, 19, 5, 0, 'not intrested in sales', 112, '0000-00-00 00:00:00', 1),
(17225, 18277, 86, 7, 0, 'Selected for my team ', 112, '0000-00-00 00:00:00', 1),
(17226, 18276, 19, 5, 0, 'distance issue i think he is not cont the job long', 112, '0000-00-00 00:00:00', 1),
(17227, 18278, 105, 5, 0, 'Candidate Communication is Good , Bust She Expected high Salary Also Some Attitude', 112, '0000-00-00 00:00:00', 1),
(17228, 18284, 53, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17229, 18282, 31, 5, 0, 'Not suitable for our role', 112, '0000-00-00 00:00:00', 1),
(17230, 18269, 105, 5, 0, 'Candidate Communication Is Good But Expected High Salary', 112, '0000-00-00 00:00:00', 1),
(17231, 18273, 102, 7, 0, 'shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17232, 18218, 60, 1, 0, NULL, 30, '2024-04-03 08:34:04', 1),
(17233, 18236, 60, 1, 0, NULL, 30, '2024-04-03 08:35:33', 1),
(17234, 18293, 53, 5, 0, 'inadequate communication skills and a preference for nonvoice processes', 112, '0000-00-00 00:00:00', 1),
(17235, 18246, 74, 5, 0, 'unfit for team', 108, '0000-00-00 00:00:00', 1),
(17236, 18294, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17237, 18251, 59, 3, 0, 'selected for Banu Team Relationship Executive', 53, '2024-04-04 12:23:47', 1),
(17238, 18238, 59, 3, 0, 'Selected for Banu DM Team Relationship Executive Can give a try in 7 days and check', 53, '2024-04-04 12:24:36', 1),
(17239, 18232, 59, 3, 0, 'Selected for Banu Team Relationship Executive Role Need to analyse in 7 days and confirm too long distance sustainability Doubts a lot', 53, '2024-04-04 12:28:07', 1),
(17240, 18258, 59, 1, 0, NULL, 53, '2024-04-04 12:28:55', 1),
(17241, 18242, 59, 3, 0, 'Selected for Banu Team Relationship Executive Role', 53, '2024-04-04 12:29:44', 1),
(17242, 18305, 102, 5, 0, 'not suitable for sales and he said not interested  for field work ', 112, '0000-00-00 00:00:00', 1),
(17243, 18300, 57, 7, 0, 'Candidate is 50/50 Need to check with Training Period', 112, '0000-00-00 00:00:00', 1),
(17244, 18299, 57, 5, 0, 'Communication not good,unfit for sales', 112, '0000-00-00 00:00:00', 1),
(17245, 18291, 131, 5, 0, 'Lack of knowledge in sales field and issue with field work', 126, '0000-00-00 00:00:00', 1),
(17246, 18302, 131, 4, 0, 'Good Communication and basic knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17247, 18302, 30, 7, 4, 'cross verify previous ctc and immediate joining', 131, '2024-04-04 02:08:55', 1),
(17248, 18214, 59, 1, 0, NULL, 74, '2024-04-04 02:36:40', 1),
(17249, 18303, 19, 5, 0, 'expecting too high salary', 112, '0000-00-00 00:00:00', 1),
(17250, 18295, 105, 5, 0, 'Candidate Communication is Good But her Expectation is too high', 112, '0000-00-00 00:00:00', 1),
(17251, 18307, 105, 5, 0, 'Candidate Communication And Attore is Not Good ', 112, '0000-00-00 00:00:00', 1),
(17252, 18298, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17253, 18301, 105, 5, 0, 'Candidate Performance and communication is not good', 112, '0000-00-00 00:00:00', 1),
(17254, 18306, 126, 1, 0, NULL, 127, '0000-00-00 00:00:00', 1),
(17255, 18306, 30, 1, 0, NULL, 131, '2024-04-04 03:41:44', 1),
(17256, 18302, 60, 1, 0, NULL, 30, '2024-04-04 04:28:04', 1),
(17257, 18286, 131, 4, 0, 'Confident, have some knowledge about sales', 127, '0000-00-00 00:00:00', 1),
(17258, 18316, 74, 5, 0, 'not fit for team', 108, '0000-00-00 00:00:00', 1),
(17259, 18286, 53, 7, 0, 'Shortlisted. Pls cnfrm the salary and DOJ', 131, '2024-04-05 10:50:53', 1),
(17260, 18126, 60, 1, 0, NULL, 30, '2024-04-05 11:40:58', 1),
(17261, 17612, 60, 1, 0, NULL, 30, '2024-04-05 11:42:54', 1),
(17262, 18313, 131, 5, 0, 'Lack of communication,  No proper response, for every question Answers are blank ', 126, '0000-00-00 00:00:00', 1),
(17263, 18330, 131, 5, 0, 'Looking in HR field lack of knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17264, 18331, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(17265, 18317, 53, 7, 0, 'Selected. Pls cnfrm the salary and DOJ', 112, '0000-00-00 00:00:00', 1),
(17266, 18319, 53, 5, 0, 'Doing full stack developer course, looking IT', 112, '0000-00-00 00:00:00', 1),
(17267, 18315, 53, 5, 0, 'Poor communication, no clarity', 112, '0000-00-00 00:00:00', 1),
(17268, 18325, 53, 5, 0, 'She is searching for non-violent process. Not intrested in telecalling.', 112, '0000-00-00 00:00:00', 1),
(17269, 18336, 53, 7, 0, '50-50, fresher need to check sustainability', 112, '0000-00-00 00:00:00', 1),
(17270, 18329, 53, 5, 0, 'He canxquott take pressure; he left his previous job under pressure, even though it was a non-voice process.', 112, '0000-00-00 00:00:00', 1),
(17271, 18328, 102, 7, 0, 'Shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17272, 18321, 31, 5, 0, 'new to sales not willing  to go to field', 112, '0000-00-00 00:00:00', 1),
(17273, 18320, 31, 5, 2, 'Not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17274, 18326, 31, 4, 4, 'candidate has telecalling and lead geneation experience', 112, '0000-00-00 00:00:00', 1),
(17275, 18332, 89, 7, 0, 'Selected.. ', 112, '0000-00-00 00:00:00', 1),
(17276, 18327, 102, 5, 0, 'Not suitable for sales existing he is working operation team so, i rejected the profile ', 112, '0000-00-00 00:00:00', 1),
(17277, 18337, 131, 5, 0, 'Lack of communication, lack of Knowledge ', 126, '0000-00-00 00:00:00', 1),
(17278, 18317, 59, 1, 0, NULL, 53, '2024-04-05 03:39:00', 1),
(17279, 18336, 59, 3, 0, 'Selected for Banu Team Relationship Executive ', 53, '2024-04-05 03:39:57', 1),
(17280, 17926, 19, 5, 0, 'Not ready to go  appt', 112, '0000-00-00 00:00:00', 1),
(17281, 18340, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17282, 18338, 31, 5, 1, 'Not interested in sales due to his age they assigned me', 112, '0000-00-00 00:00:00', 1),
(17283, 18335, 31, 5, 2, 'due to no BDMs available they assigned him to me', 112, '0000-00-00 00:00:00', 1),
(17284, 18333, 31, 5, 0, 'Not suitable for our role', 112, '0000-00-00 00:00:00', 1),
(17285, 18310, 89, 7, 0, 'Fresher.. selected ', 112, '0000-00-00 00:00:00', 1),
(17286, 18318, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17287, 18345, 53, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17288, 18323, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17289, 18334, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17290, 18297, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17291, 18346, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17292, 18339, 131, 2, 0, 'Lack of Knowledge about sales ', 126, '0000-00-00 00:00:00', 1),
(17293, 18364, 131, 4, 0, 'Good Communication, can process for next round', 126, '0000-00-00 00:00:00', 1),
(17294, 18364, 53, 7, 0, 'Shortlisted. Pls cnfrm the salary and DOJ', 131, '2024-04-06 12:06:18', 1),
(17295, 18367, 131, 4, 0, 'Good communication, can process for next round', 126, '0000-00-00 00:00:00', 1),
(17296, 18367, 53, 1, 0, NULL, 131, '2024-04-06 12:52:32', 1),
(17297, 18353, 19, 5, 0, 'well settled family so not fit for the job', 112, '0000-00-00 00:00:00', 1),
(17298, 18360, 105, 5, 0, 'Inteviewed By Kanna,As Per His Conversation Candidate Perfomance and communication is not good', 112, '0000-00-00 00:00:00', 1),
(17299, 18354, 105, 5, 0, 'Inteviewed By Kanna,As Per his Conversation Candidate Profile is Not Good', 112, '0000-00-00 00:00:00', 1),
(17300, 18358, 105, 5, 0, 'Inteviewed By Kanna,As Per His Conversation Candidate Communication is very low', 112, '0000-00-00 00:00:00', 1),
(17301, 18342, 102, 5, 0, 'Not suit for tele sales', 112, '0000-00-00 00:00:00', 1),
(17302, 18362, 105, 5, 0, 'Inteviewed By Kanna,As Per His Conversation Candidate Performance is Poor', 112, '0000-00-00 00:00:00', 1),
(17303, 18363, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17304, 18359, 105, 7, 0, 'Shortlisted By Kannan,As Per Our Conversation Profile 50/50 Ratio Will Try In The Training Period', 112, '0000-00-00 00:00:00', 1),
(17305, 18373, 131, 5, 0, 'Looking in some other process, salary Exception is high', 126, '0000-00-00 00:00:00', 1),
(17306, 18369, 89, 7, 0, 'Alredy experience 2 years star health ', 112, '0000-00-00 00:00:00', 1),
(17307, 18372, 89, 7, 0, 'Alredy experience 3 month star health ', 112, '0000-00-00 00:00:00', 1),
(17308, 18368, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17309, 18359, 59, 3, 0, 'Selected for Relationship Executive Role Need to Analyse in 7 Days', 105, '2024-04-08 10:25:05', 1),
(17310, 18260, 131, 4, 0, 'Good Communication, carry  sales experience can process for next round', 127, '0000-00-00 00:00:00', 1),
(17311, 18377, 74, 5, 0, 'not fit for team', 108, '0000-00-00 00:00:00', 1),
(17312, 18372, 59, 3, 0, 'Selected for Giri Team Relationship executive Need to analyse in 7 days', 89, '2024-04-08 11:42:50', 1),
(17313, 18369, 59, 3, 0, 'SElected for RElationship Executive Role Babu Team Need to analyse in 7 days', 89, '2024-04-08 11:43:21', 1),
(17314, 18328, 59, 3, 0, 'Selected for Charles Team in Relationship Executive Need to analyse in 7 days', 102, '2024-04-08 11:52:05', 1),
(17315, 18300, 59, 3, 0, 'Selected for Relationship executive Roles Syed Team Need to analyse and confirm in 7 days', 57, '2024-04-08 12:16:02', 1),
(17316, 18380, 131, 4, 0, 'Good communication can process for further round', 126, '0000-00-00 00:00:00', 1),
(17317, 18380, 53, 1, 0, NULL, 131, '2024-04-08 01:15:12', 1),
(17318, 18379, 57, 5, 0, 'Candidate is unfit for sales profile', 112, '0000-00-00 00:00:00', 1),
(17319, 18375, 89, 7, 0, 'Selected.. giri team', 112, '0000-00-00 00:00:00', 1),
(17320, 18378, 105, 5, 0, 'Inteviewed By Kanna,As Per His Conversation Candidate Performance and communication is not well', 112, '0000-00-00 00:00:00', 1),
(17321, 18376, 19, 5, 0, 'Excepting high salary', 112, '0000-00-00 00:00:00', 1),
(17322, 18386, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17323, 18385, 57, 5, 0, 'Candidate is over 2 to 3yrs exp,\nSal exp 20k pls try with pc side', 112, '0000-00-00 00:00:00', 1),
(17324, 18384, 57, 9, 0, 'Candidate is ok, over all 4yrs exp,pls try mf or renewal ', 112, '0000-00-00 00:00:00', 1),
(17325, 18383, 19, 5, 0, 'rejected (dress code)', 112, '0000-00-00 00:00:00', 1),
(17326, 18344, 131, 5, 0, 'Lack of Knowledge about sales process and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(17327, 18389, 131, 5, 0, 'Salary expectation is high, lack of knowledge about process', 126, '0000-00-00 00:00:00', 1),
(17328, 18324, 131, 5, 0, 'Lack of knowledge about sales and high salary expectation', 126, '0000-00-00 00:00:00', 1),
(17329, 18384, 59, 1, 0, NULL, 57, '2024-04-08 04:11:42', 1),
(17330, 18326, 29, 1, 0, NULL, 31, '2024-04-08 04:23:03', 1),
(17331, 18260, 30, 7, 3, 'confirm joining and ctc', 131, '2024-04-08 04:40:24', 1),
(17332, 18260, 60, 1, 0, NULL, 30, '2024-04-08 05:14:40', 1),
(17333, 18310, 59, 3, 0, 'Selected for babu Team Relationship Executive Role Fresher need to analyse and confirm in 7 days training\n', 89, '2024-04-08 05:42:03', 1),
(17334, 18332, 59, 1, 0, NULL, 89, '2024-04-08 05:43:21', 1),
(17335, 18395, 102, 5, 0, 'he is not accept field work ', 112, '0000-00-00 00:00:00', 1),
(17336, 18273, 59, 1, 0, NULL, 102, '2024-04-08 06:23:46', 1),
(17337, 18397, 71, 5, 0, 'Not Fit For Sales', 112, '0000-00-00 00:00:00', 1),
(17338, 18413, 89, 7, 0, 'Already 3 month experience at star health. But salary expectation is high.. ', 112, '0000-00-00 00:00:00', 1),
(17339, 18409, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17340, 18408, 105, 5, 0, 'She is Intrested in Non Voice Process Only', 112, '0000-00-00 00:00:00', 1),
(17341, 18407, 102, 7, 0, 'shortlist for team  fresher good convincing skill and she little bit  know health insurance ', 112, '0000-00-00 00:00:00', 1),
(17342, 18399, 105, 7, 0, 'Candidate Performance And Communication is good,Will Check With Her in the training period', 112, '0000-00-00 00:00:00', 1),
(17343, 18410, 102, 5, 0, '6 Month experience for hDFC credit card operation  team he get a salary 12k but high expectation 20k abve and he is not interested sales ', 112, '0000-00-00 00:00:00', 1),
(17344, 18421, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17345, 18420, 57, 5, 0, 'Unfit for sales xxamp Field Work', 112, '0000-00-00 00:00:00', 1),
(17346, 18419, 86, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17347, 18416, 19, 7, 4, 'Job needed person so will try 7 Days ', 112, '0000-00-00 00:00:00', 1),
(17348, 18415, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17349, 18407, 59, 1, 0, NULL, 102, '2024-04-09 04:16:22', 1),
(17350, 18428, 105, 5, 0, 'Candidate Communication And Performance Is Not Good. Also expected high package', 112, '0000-00-00 00:00:00', 1),
(17351, 18427, 105, 5, 0, 'Candidate Communication And Performance is Not Good.', 112, '0000-00-00 00:00:00', 1),
(17352, 18413, 59, 1, 0, NULL, 89, '2024-04-09 04:50:47', 1),
(17353, 18277, 60, 1, 0, NULL, 86, '2024-04-09 05:11:32', 1),
(17354, 18399, 59, 3, 0, 'Selected for Backend Operation Attended for sales and got shortlisted for Gopi team too but candidate is much interested in Operations', 105, '2024-04-09 05:38:41', 1),
(17355, 18423, 57, 5, 0, 'Field work not int and communication not good', 112, '0000-00-00 00:00:00', 1),
(17356, 17927, 60, 1, 0, NULL, 71, '2024-04-10 10:23:50', 1),
(17357, 18404, 74, 5, 0, 'expected non voice', 108, '0000-00-00 00:00:00', 1),
(17358, 18405, 19, 5, 0, 'canxquott handle the pressure', 108, '0000-00-00 00:00:00', 1),
(17359, 18462, 131, 5, 0, 'Lack of communication.', 126, '0000-00-00 00:00:00', 1),
(17360, 18439, 89, 5, 0, 'No skill ', 112, '0000-00-00 00:00:00', 1),
(17361, 18442, 53, 5, 0, 'Looking Non voice', 112, '0000-00-00 00:00:00', 1),
(17362, 18451, 105, 5, 0, 'Candidate Communication And Performance Is Not Good. Also not in the formal then his expectation is also high', 112, '0000-00-00 00:00:00', 1),
(17363, 18448, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17364, 18454, 105, 5, 0, 'Candidate Communication And Performance is Low , Also Some Attitude Type', 112, '0000-00-00 00:00:00', 1),
(17365, 18437, 19, 5, 0, 'not a matured guy', 112, '0000-00-00 00:00:00', 1),
(17366, 18422, 105, 5, 0, 'She Is Intrested In Non Voice Process Only', 112, '0000-00-00 00:00:00', 1),
(17367, 18458, 89, 7, 0, 'Selected.. ', 112, '0000-00-00 00:00:00', 1),
(17368, 18459, 89, 7, 0, 'Selected.. salary expectation is high. Giri raj team', 112, '0000-00-00 00:00:00', 1),
(17369, 18457, 89, 7, 0, 'Selected.. salary expectation is high.. giri raj team', 112, '0000-00-00 00:00:00', 1),
(17370, 18453, 19, 7, 4, 'He obser what we speak so will try 7days', 112, '0000-00-00 00:00:00', 1),
(17371, 18441, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17372, 18432, 105, 5, 0, 'She is Intrested In Non Voice Process Only', 112, '0000-00-00 00:00:00', 1),
(17373, 18443, 53, 7, 0, 'selected for my team', 112, '0000-00-00 00:00:00', 1),
(17374, 18450, 59, 5, 0, 'Will not sustain in our role too long distance pressure handling doubts in our role ', 112, '0000-00-00 00:00:00', 1),
(17375, 18438, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17376, 10115, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17377, 18456, 71, 5, 0, 'Not Fit For Sales', 112, '0000-00-00 00:00:00', 1),
(17378, 18411, 53, 5, 0, 'Inconsistent work history', 112, '0000-00-00 00:00:00', 1),
(17379, 18463, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17380, 18455, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17381, 18445, 74, 5, 0, 'unfit\n', 108, '0000-00-00 00:00:00', 1),
(17382, 18471, 112, 1, 0, NULL, 127, '0000-00-00 00:00:00', 1),
(17383, 18469, 102, 5, 0, 'she is already worked in vizza health insurance back end team but not suitable for sales ', 104, '0000-00-00 00:00:00', 1),
(17384, 18452, 57, 2, 0, 'Candidate is ok ,1.10 Years experience collection xxamp Telecalling,Now he is in notice period,Notice 90 days, so we need to confirm@June 1st week thanks', 104, '0000-00-00 00:00:00', 1),
(17385, 18461, 71, 4, 0, 'Selected, Candidate was working in sales field, Good sales skill, Good communication and will finalize the pacakage 24.5k TH', 104, '0000-00-00 00:00:00', 1),
(17386, 18401, 105, 5, 0, 'She is Intrested in Non Voice Process Only', 112, '0000-00-00 00:00:00', 1),
(17387, 18479, 53, 2, 0, 'Shortlisted for sales process, he needs one week time to decide.', 112, '0000-00-00 00:00:00', 1),
(17388, 18477, 105, 5, 0, 'Candidate communication is not good ', 112, '0000-00-00 00:00:00', 1),
(17389, 18480, 53, 5, 0, 'Looking non voice process', 112, '0000-00-00 00:00:00', 1),
(17390, 18473, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17391, 18481, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17392, 18483, 29, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17393, 18474, 29, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17394, 18433, 51, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17395, 18488, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17396, 18500, 89, 5, 0, 'Not fit the profile ', 112, '0000-00-00 00:00:00', 1),
(17397, 18482, 74, 5, 0, 'not suite for tele calling', 108, '0000-00-00 00:00:00', 1),
(17398, 18414, 74, 5, 0, 'not fit for sales', 108, '0000-00-00 00:00:00', 1),
(17399, 18498, 74, 5, 0, 'not fit for tele calling', 108, '0000-00-00 00:00:00', 1),
(17400, 18493, 53, 2, 0, 'long distance', 112, '0000-00-00 00:00:00', 1),
(17401, 18497, 89, 5, 0, 'No skill ', 112, '0000-00-00 00:00:00', 1),
(17402, 18501, 19, 5, 0, 'doubt in sustainability', 112, '0000-00-00 00:00:00', 1),
(17403, 18502, 102, 5, 0, 'Not suitable for sales he is interested in HR department more then company attend the hr department but still not get offer so, right now choose sales  ', 112, '0000-00-00 00:00:00', 1),
(17404, 18505, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17405, 18506, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17406, 18523, 102, 5, 0, 'interested in it related job right now not completed it related course so, need money for course so, right now looking for any job', 130, '0000-00-00 00:00:00', 1),
(17407, 18515, 57, 1, 0, NULL, 130, '0000-00-00 00:00:00', 1),
(17408, 18524, 102, 5, 0, '2023 past out , she is last 6month worked MLM company so, she is said sales is difficult right now looking for non voice process ', 130, '0000-00-00 00:00:00', 1),
(17409, 18521, 19, 5, 0, 'expecting high salary', 130, '0000-00-00 00:00:00', 1),
(17410, 18525, 102, 5, 0, 'interested in video maker not completed the course right now need money for course completion any time  quick the job ', 108, '0000-00-00 00:00:00', 1),
(17411, 18522, 19, 5, 0, 'NOT TRY TO CONVINCING ME IN SALES', 108, '0000-00-00 00:00:00', 1),
(17412, 18514, 57, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(17413, 18512, 105, 5, 0, 'Candidate Expected High Salary', 108, '0000-00-00 00:00:00', 1),
(17414, 18513, 105, 5, 0, 'Candidate Communication And Performance is not good', 108, '0000-00-00 00:00:00', 1),
(17415, 18529, 19, 5, 0, 'sustainability is doubt ', 108, '0000-00-00 00:00:00', 1),
(17416, 18507, 102, 7, 0, 'Shortlist for team fresher she is doing intership 6month for\n sales (insurance ,credit , loan ) good communication skill then right now going exam so, check and update joining date !! \n\nthank you', 108, '0000-00-00 00:00:00', 1),
(17417, 18531, 57, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(17418, 18528, 74, 7, 0, 'he is ok with the profile completed be in trichy and worked in tata sky for 7k salary sister home in bangalore...due to covid releived and done mba in US sister home in US and due to financial issued discontined mba and came to native ....two years experience in honda sales...getting slary 12k ..and releived due to no slary ...attend interview in hdfc but due to lag of ecperience in insurance he is rejected,,,,father doing studio business...have laptop and ready to joined immediately...expected 15k.....kindly check once', 108, '0000-00-00 00:00:00', 1),
(17419, 18489, 105, 7, 0, 'CANDIADTE COMMUNICATION AND PERFORMANCE IS GOOD .WILL CHECK WITH HER IN THE TRAINING PERIOD ', 108, '0000-00-00 00:00:00', 1),
(17420, 18507, 59, 1, 0, NULL, 102, '2024-04-13 04:18:06', 1),
(17421, 18532, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(17422, 18510, 102, 7, 0, 'shortlist for team ', 108, '0000-00-00 00:00:00', 1),
(17423, 18510, 59, 3, 0, 'Selected for Charles Team Need to analyse in 7 days\n', 102, '2024-04-13 04:51:34', 1),
(17424, 18528, 59, 3, 0, 'Selected for Sithy Team ', 74, '2024-04-13 04:52:49', 1),
(17425, 18457, 59, 3, 0, 'Selected for Relationship Executive Role will not sustain just looking for salary will not handle pressure Need to analyse in 7 days', 89, '2024-04-15 10:04:27', 1),
(17426, 18459, 59, 3, 0, 'Selected for Relationship Executive Role Need to analyse in 7 days training', 89, '2024-04-15 10:05:05', 1),
(17427, 18458, 59, 3, 0, 'Selected for Relationship Executive Role NEed to analyse and finalise the profile in 7 days', 89, '2024-04-15 10:05:41', 1),
(17428, 18416, 59, 1, 0, NULL, 19, '2024-04-15 10:06:59', 1),
(17429, 18443, 59, 3, 0, 'Selected for Banu Team DM Role', 53, '2024-04-15 10:07:58', 1),
(17430, 18453, 59, 3, 0, 'Selected for Kannan Team ', 19, '2024-04-15 10:08:43', 1),
(17431, 18375, 59, 3, 0, 'Selected for Babu Team ', 89, '2024-04-15 10:25:41', 1),
(17432, 18461, 60, 1, 0, NULL, 71, '2024-04-15 10:34:45', 1),
(17433, 18489, 59, 3, 0, 'Selected for Gopi Team Good Communication Can give a try Need to analyse in 7 days', 105, '2024-04-15 10:34:52', 1),
(17434, 18364, 59, 3, 0, 'Selected for Bangalore - Relationship Executive Role', 53, '2024-04-15 12:52:06', 1),
(17435, 18286, 59, 3, 0, 'Selected for Bangalore Relationship Executive Role ', 53, '2024-04-15 12:54:27', 1),
(17436, 18475, 131, 4, 0, 'Good communication, basic knowledge about sales and insurance and can process with next round', 126, '0000-00-00 00:00:00', 1),
(17437, 18475, 53, 1, 0, NULL, 131, '2024-04-15 02:57:12', 1),
(17438, 18540, 74, 7, 0, 'she is ok with the profile completed bsc fashion technology , family not support to continue in the fashion field and have no oportunity in thanjavur,,,,,so ready to join imeediately, already selected in tech mahindra and hexaware due to low salary not willing to join.imeediately...expected 12 to 13k and have laptop ...father worked hdfc loan process, kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(17439, 18539, 74, 5, 0, 'not fit for team', 108, '0000-00-00 00:00:00', 1),
(17440, 18540, 59, 3, 0, 'Selecetd for Sithy Team Can give a try 5050 sustainability much preferred for Non Voice', 74, '2024-04-15 04:04:53', 1),
(17441, 18547, 89, 5, 0, 'No skill for sales jop', 112, '0000-00-00 00:00:00', 1),
(17442, 18545, 89, 7, 0, 'Candidate is selected and salary is 15k and I will train for 7 days and final the candidate ', 108, '0000-00-00 00:00:00', 1),
(17443, 18552, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17444, 18542, 89, 5, 0, 'No skill ', 112, '0000-00-00 00:00:00', 1),
(17445, 18551, 19, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17446, 18556, 19, 5, 0, 'he did not observe what we saying', 112, '0000-00-00 00:00:00', 1),
(17447, 18545, 59, 3, 0, 'Selected fr Giri Team Relationship Executive Role Need to analyse in 7 days', 89, '2024-04-15 06:30:27', 1),
(17448, 18582, 131, 5, 0, 'Not interested in field work', 126, '0000-00-00 00:00:00', 1),
(17449, 18566, 74, 5, 0, 'not fit for telecalling', 108, '0000-00-00 00:00:00', 1),
(17450, 18567, 74, 5, 0, 'not fit for sales', 108, '0000-00-00 00:00:00', 1),
(17451, 18568, 74, 5, 0, 'not suit for process', 108, '0000-00-00 00:00:00', 1),
(17452, 18565, 131, 5, 0, 'Interested in IT process', 126, '0000-00-00 00:00:00', 1),
(17453, 18576, 71, 5, 0, 'Not Fit For Sales', 112, '0000-00-00 00:00:00', 1),
(17454, 18562, 71, 4, 0, 'Selected to next round ', 112, '0000-00-00 00:00:00', 1),
(17455, 18569, 71, 4, 0, 'Selected to second round ', 112, '0000-00-00 00:00:00', 1),
(17456, 18560, 102, 5, 0, 'not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(17457, 18578, 19, 7, 4, 'Job Needed Person Letxquots try 7 Days Trial ', 112, '0000-00-00 00:00:00', 1),
(17458, 18579, 105, 5, 0, 'Candidate Voice is Not Clear,Also Communication And Performance is Not Good', 112, '0000-00-00 00:00:00', 1),
(17459, 18561, 131, 4, 0, 'Good communication and have basic knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17460, 18561, 30, 1, 0, NULL, 131, '2024-04-16 12:51:22', 1),
(17461, 18580, 71, 5, 0, 'Not Fit For Sales', 112, '0000-00-00 00:00:00', 1),
(17462, 18575, 131, 4, 0, 'Good communication and carried Experience in sales', 126, '0000-00-00 00:00:00', 1),
(17463, 18575, 30, 7, 4, 'immediate joining selected for DM channel previous in hand 23k suggested 24k ', 131, '2024-04-16 12:57:13', 1),
(17464, 18573, 131, 4, 0, 'Good communication and basic knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17465, 18487, 131, 4, 0, 'Good communication and carries basic Knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17466, 18573, 30, 7, 4, 'confirmed for dm cross check previous ctc suggested 15k', 131, '2024-04-16 02:26:16', 1),
(17467, 18487, 30, 7, 3, 'ok for Dm channel max in hand 22k cross check previous ctc', 131, '2024-04-16 02:27:22', 1),
(17468, 18577, 131, 5, 0, 'Lack of confident and communication', 126, '0000-00-00 00:00:00', 1),
(17469, 18590, 131, 5, 0, 'lack of  knowledge about sales and not interested in field work', 126, '0000-00-00 00:00:00', 1),
(17470, 18592, 131, 5, 0, 'Lack of communication and confident', 126, '0000-00-00 00:00:00', 1),
(17471, 18591, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(17472, 18589, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17473, 18584, 131, 5, 0, 'Father is working in same insurance field ', 126, '0000-00-00 00:00:00', 1),
(17474, 18546, 131, 4, 0, 'Good communication, have experience in sales', 127, '0000-00-00 00:00:00', 1),
(17475, 18546, 30, 7, 3, 'cross check the previous ctc .he expecting 30k take home try to 27k immediate joining', 131, '2024-04-16 04:50:08', 1),
(17476, 18546, 60, 1, 0, NULL, 30, '2024-04-16 04:52:53', 1),
(17477, 18487, 60, 1, 0, NULL, 30, '2024-04-16 05:02:09', 1),
(17478, 18593, 131, 5, 0, 'Lack of communication and knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17479, 18578, 59, 1, 0, NULL, 19, '2024-04-16 06:52:57', 1),
(17480, 18562, 18, 7, 4, 'Selected for Santhosh Team. Ready to Join in a weeks time. Current CTC is 4.5L and asking 10% hike. Please negotitate the salary with him.', 71, '2024-04-16 07:54:55', 1),
(17481, 18569, 18, 7, 4, 'Selected for Santhosh Team. immedeate Joiner. Offered 3.85L CTC', 71, '2024-04-16 07:55:33', 1),
(17482, 18541, 131, 8, 0, 'Not attended the interview', 127, '0000-00-00 00:00:00', 1),
(17483, 18569, 60, 1, 0, NULL, 18, '2024-04-17 10:18:14', 1),
(17484, 18562, 60, 1, 0, NULL, 18, '2024-04-17 10:20:01', 1),
(17485, 18606, 51, 7, 0, 'shortlisted', 112, '0000-00-00 00:00:00', 1),
(17486, 18596, 19, 5, 1, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17487, 18598, 105, 5, 0, 'Her Communication Good ,But She is Not Suitable For Sales', 112, '0000-00-00 00:00:00', 1),
(17488, 18600, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17489, 18603, 102, 4, 0, 'he is expected 19k salary , already have net 16.5k so, review and check and update ', 112, '0000-00-00 00:00:00', 1),
(17490, 18597, 74, 2, 0, 'doubtful for sales and pressure handling', 108, '0000-00-00 00:00:00', 1),
(17491, 18599, 74, 7, 0, 'she is ok with the profile fresher and ready to join imeediately....have laptop ....have good exposure hand every situation......highly job need and past 1 year seeking for job...kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(17492, 18599, 59, 1, 0, NULL, 74, '2024-04-17 04:24:06', 1),
(17493, 18611, 131, 4, 0, 'Confident and have knowledge about the sales and insurance process', 126, '0000-00-00 00:00:00', 1),
(17494, 18611, 30, 7, 4, 'suggested ctc upto 20k but he will join on may 1st', 131, '2024-04-17 04:42:40', 1),
(17495, 18573, 60, 1, 0, NULL, 30, '2024-04-17 05:07:19', 1),
(17496, 18609, 131, 4, 0, 'Good communication ', 126, '0000-00-00 00:00:00', 1),
(17497, 18609, 30, 7, 4, 'suggested ctc 15k immediate joining ', 131, '2024-04-17 05:08:56', 1),
(17498, 18611, 60, 1, 0, NULL, 30, '2024-04-17 05:09:58', 1),
(17499, 18609, 60, 1, 0, NULL, 30, '2024-04-17 05:11:34', 1),
(17500, 18603, 59, 1, 0, NULL, 102, '2024-04-17 06:25:28', 1),
(17501, 18639, 131, 4, 0, 'Good communication and basic knowledge about sales and insurance can process for next round', 126, '0000-00-00 00:00:00', 1),
(17502, 18639, 30, 7, 3, 'fresher as per company ctc suggested immediate joining Selected for dm', 131, '2024-04-18 04:04:26', 1),
(17503, 18617, 137, 7, 0, 'Better skill and insurance experience ', 104, '0000-00-00 00:00:00', 1),
(17504, 18631, 102, 5, 0, 'Experience but not suitable for insurance sales ', 112, '0000-00-00 00:00:00', 1),
(17505, 18629, 137, 5, 0, 'Over Attitude, no skill and fake information ', 112, '0000-00-00 00:00:00', 1),
(17506, 18625, 53, 7, 0, 'Selected for DM. Pls cnfrm the salary and DOJ', 112, '0000-00-00 00:00:00', 1),
(17507, 18583, 19, 5, 1, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(17508, 18632, 139, 4, 0, 'Have Exp in Bank Bazaar Telecalling can be trained in our roles Need to analyse in 7 days of training', 112, '0000-00-00 00:00:00', 1),
(17509, 18616, 140, 4, 0, 'Selected for next round', 112, '0000-00-00 00:00:00', 1),
(17510, 18617, 59, 3, 0, 'Selected for Giri Team in Relationship Executive Role need to analyse in 7 days and confirm', 137, '2024-04-18 04:29:07', 1),
(17511, 18637, 131, 4, 0, 'Good communication and carried Experience in sales can process for next round', 126, '0000-00-00 00:00:00', 1),
(17512, 18637, 30, 7, 3, 'suggested ctc 20 to 22k max\nimmediate joining', 131, '2024-04-18 04:39:54', 1),
(17513, 18575, 60, 1, 0, NULL, 30, '2024-04-18 04:42:09', 1),
(17514, 18637, 60, 1, 0, NULL, 30, '2024-04-18 04:43:23', 1),
(17515, 18639, 60, 1, 0, NULL, 30, '2024-04-18 04:44:38', 1),
(17516, 18601, 131, 5, 0, 'Unable to relocate to bangalore', 127, '0000-00-00 00:00:00', 1),
(17517, 18630, 131, 5, 0, 'Lack of communication', 127, '0000-00-00 00:00:00', 1),
(17518, 18633, 138, 4, 0, 'Communication skills medium good then well prepared and organized then finally Positive attitude and team player', 112, '0000-00-00 00:00:00', 1),
(17519, 18623, 74, 5, 0, 'not fit', 112, '0000-00-00 00:00:00', 1),
(17520, 18625, 59, 3, 0, 'Selected for DM Banu Team Relationship Executive Role Need to analyse in 7 days and confirm', 53, '2024-04-18 05:58:02', 1),
(17521, 18616, 29, 7, 3, 'Sarath Team, Has given task to increase salary from june, ref resume', 140, '2024-04-18 06:00:03', 1),
(17522, 18634, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(17523, 18632, 18, 7, 4, 'Selected for Gnanashekar Team. Offered 3.5L CTC. Ready to Join on 24th of April.', 139, '2024-04-20 10:59:04', 1),
(17524, 18650, 102, 5, 0, 'Not fit sales field ', 112, '0000-00-00 00:00:00', 1),
(17525, 18649, 102, 7, 0, 'Shortlist for team fresher ', 112, '0000-00-00 00:00:00', 1),
(17526, 18651, 137, 5, 0, 'low voice and no skill ', 112, '0000-00-00 00:00:00', 1),
(17527, 18654, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17528, 18655, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17529, 18652, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17530, 18632, 60, 1, 0, NULL, 18, '2024-04-20 01:11:32', 1),
(17531, 18496, 131, 5, 0, 'Lack of communication and lack of Knowledge About sales and insurance', 126, '0000-00-00 00:00:00', 1),
(17532, 18648, 141, 4, 0, 'Has Good communication and very bold', 112, '0000-00-00 00:00:00', 1),
(17533, 18649, 59, 3, 0, 'Selected for Charles Team RElationship Executive Role Need to analyse in 7 days and confirm', 102, '2024-04-20 05:34:46', 1),
(17534, 0, 59, 1, 0, NULL, 140, '2024-04-20 05:59:58', 1),
(17535, 18633, 18, 8, 0, 'Not Attended', 138, '2024-04-20 07:48:33', 1),
(17536, 18616, 59, 3, 0, 'Selected for Porrselvan Team Relationship Manager Role Need to analyse in 7 days', 29, '2024-04-22 10:01:56', 1),
(17537, 18606, 29, 7, 3, 'sarath,', 51, '2024-04-22 10:28:54', 1),
(17538, 18606, 59, 3, 0, 'Selected for Sarath Team with Condition given by gaurav sir', 29, '2024-04-22 10:41:24', 1),
(17539, 18339, 131, 5, 0, 'Lack of knowledge about the process', 131, '2024-04-22 12:58:01', 1),
(17540, 18662, 51, 2, 0, 'hold this candidate for 3 days', 112, '0000-00-00 00:00:00', 1),
(17541, 18665, 53, 5, 0, 'Long distance and having exp in backend process.', 112, '0000-00-00 00:00:00', 1),
(17542, 18664, 137, 5, 0, 'low voice  and very lasy', 112, '0000-00-00 00:00:00', 1),
(17543, 18663, 137, 7, 0, 'better voice and interested for sales', 112, '0000-00-00 00:00:00', 1),
(17544, 18660, 53, 7, 0, 'shortlisted 50-50 pls check once and cnfrm the ', 112, '0000-00-00 00:00:00', 1),
(17545, 18643, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17546, 18643, 30, 7, 3, 'Suggested ctc  upto 20k immediate joining for Rm', 131, '2024-04-22 02:20:57', 1),
(17547, 18670, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17548, 18670, 30, 7, 3, 'cross check his sustainability bcoz his Background business suggested ctc upto 20k for rm ', 131, '2024-04-22 02:55:43', 1),
(17549, 18669, 131, 4, 0, 'Good communication and carry experience in sales can process for next round', 126, '0000-00-00 00:00:00', 1),
(17550, 18669, 30, 7, 4, 'good communication and confidence level but expecting high ctc upto 4.8lac he already having 3 offer .he is ok for Rm', 131, '2024-04-22 02:58:34', 1),
(17551, 18668, 57, 5, 0, '1yrs experience diff domain,previous company salary 10.5k now expectation 18k, candidate worth for 15k to 16k maximum,pls confirm and do the needful', 112, '0000-00-00 00:00:00', 1),
(17552, 18671, 51, 7, 0, 'for porrselvan team', 112, '0000-00-00 00:00:00', 1),
(17553, 18264, 102, 7, 0, 'Shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17554, 18643, 60, 1, 0, NULL, 30, '2024-04-22 03:44:53', 1),
(17555, 18669, 60, 1, 0, NULL, 30, '2024-04-22 03:47:12', 1),
(17556, 18670, 60, 1, 0, NULL, 30, '2024-04-22 03:48:47', 1),
(17557, 18559, 19, 7, 1, 'His Distance Is Too Long And Also He Is Not Willing To Travel That Much Of Distance ', 112, '0000-00-00 00:00:00', 1),
(17558, 18663, 59, 1, 0, NULL, 137, '2024-04-22 05:15:54', 1),
(17559, 18660, 59, 1, 0, NULL, 53, '2024-04-22 05:52:34', 1),
(17560, 18264, 59, 3, 0, 'selected for Charles Team need to analyse in 7 days the previous exp is not get matched with the exp mentioned in the resume', 102, '2024-04-22 05:57:36', 1),
(17561, 18559, 59, 1, 0, NULL, 19, '2024-04-22 06:30:56', 1),
(17562, 18672, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17563, 18661, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17564, 18642, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17565, 18671, 29, 5, 0, 'check', 51, '2024-04-22 08:18:23', 1),
(17566, 18675, 105, 5, 0, 'Candidate Performance And Communication is Not Good Also His Expectation is Too high', 112, '0000-00-00 00:00:00', 1),
(17567, 18679, 131, 8, 0, 'Without informing candidate walk out from office', 126, '0000-00-00 00:00:00', 1),
(17568, 18612, 131, 5, 0, 'Interested in coding Field Meanwhile candidate will work here  ', 126, '0000-00-00 00:00:00', 1),
(17569, 18676, 19, 5, 1, 'no communication and he is not try to convince me when he speak about sales', 112, '0000-00-00 00:00:00', 1),
(17570, 18682, 105, 5, 0, 'Candidate Communication Performance And Communication is not good', 112, '0000-00-00 00:00:00', 1),
(17571, 18681, 19, 7, 4, 'he is fresher lets try 7 days then only we will confirm', 112, '0000-00-00 00:00:00', 1),
(17572, 18680, 137, 7, 0, 'very professional talk and  financial field is very interested', 112, '0000-00-00 00:00:00', 1),
(17573, 18678, 86, 5, 0, 'Not sustain ability.  ', 112, '0000-00-00 00:00:00', 1),
(17574, 18681, 59, 3, 0, 'Selected for Kanna Team Relationship Executive Need to analyse in 7 days and confirm', 19, '2024-04-23 02:44:14', 1),
(17575, 18680, 59, 3, 0, 'Selected for Giri Team Relationship Executive Role need to analyse in 7 days and confirm', 137, '2024-04-23 02:45:23', 1),
(17576, 18686, 139, 4, 0, 'Selected for RM\nPrevious Package 2.5 Lakhs\nNow Conform 2.82 laks\nImmediate join for 24/04/2024', 112, '0000-00-00 00:00:00', 1),
(17577, 18685, 53, 7, 0, '50 50.  pls check once', 112, '0000-00-00 00:00:00', 1),
(17578, 18677, 74, 5, 0, 'unfit', 108, '0000-00-00 00:00:00', 1),
(17579, 18686, 18, 7, 0, 'Selected for Gnanashekar Team. Immedeate Joiner. Offered 2.86L CTC overall. Release offer and share the documents as we have a training batch tomorrow.', 139, '2024-04-23 02:56:10', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(17580, 18686, 60, 1, 0, NULL, 18, '2024-04-23 02:58:08', 1),
(17581, 18690, 57, 5, 0, 'Candidate unfit for sales,Communication not well', 112, '0000-00-00 00:00:00', 1),
(17582, 18687, 140, 5, 0, 'Rejected by gaurav sir', 112, '0000-00-00 00:00:00', 1),
(17583, 18648, 59, 3, 0, 'Selected for Kannan Team Actually Pradeepan Took the interview and shorltisdetd kannan had a virtaul round and sortlisted', 141, '2024-04-23 04:39:03', 1),
(17584, 18691, 137, 5, 0, 'no skill  and low voice ', 112, '0000-00-00 00:00:00', 1),
(17585, 18685, 59, 1, 0, NULL, 53, '2024-04-23 04:50:05', 1),
(17586, 18698, 74, 5, 0, 'not fit for telesales', 108, '0000-00-00 00:00:00', 1),
(17587, 18697, 19, 7, 4, 'he is Short Term Sales Experiance so i tried fresher salary lets try 7 days after that i will confirm', 112, '0000-00-00 00:00:00', 1),
(17588, 18683, 57, 5, 0, '1yrs exp loan dept ,saly exp high\nprevious salary 10.5k now exp 18k take home.communication not well', 112, '0000-00-00 00:00:00', 1),
(17589, 18701, 57, 5, 0, 'Candidate is not ok, he is unfit for the sales profile.', 112, '0000-00-00 00:00:00', 1),
(17590, 18699, 137, 7, 0, 'good communication skill , and voice  experience', 112, '0000-00-00 00:00:00', 1),
(17591, 18703, 131, 4, 0, 'Good Communication can process for next Round', 126, '0000-00-00 00:00:00', 1),
(17592, 18703, 30, 7, 4, 'suggested ctc 20k will join on monday', 131, '2024-04-24 01:07:20', 1),
(17593, 18699, 59, 1, 0, NULL, 137, '2024-04-24 02:49:10', 1),
(17594, 18706, 137, 7, 0, 'good experience for marketing field but salery expection is veryhighso i wll check with  7 days training', 112, '0000-00-00 00:00:00', 1),
(17595, 18708, 137, 7, 0, 'previous experience for voice process and good speaking skill . so i will check 7dasy training', 112, '0000-00-00 00:00:00', 1),
(17596, 18707, 102, 5, 0, 'Not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(17597, 18708, 59, 1, 0, NULL, 137, '2024-04-24 03:34:01', 1),
(17598, 18706, 59, 1, 0, NULL, 137, '2024-04-24 03:35:44', 1),
(17599, 18710, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(17600, 18696, 131, 5, 0, 'Lack of knowledge', 126, '0000-00-00 00:00:00', 1),
(17601, 18702, 53, 4, 0, '50 - 50. Check from your end', 112, '0000-00-00 00:00:00', 1),
(17602, 18705, 86, 5, 0, 'Sriram sir Rejected this candidate', 112, '0000-00-00 00:00:00', 1),
(17603, 18713, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17604, 18702, 59, 1, 0, NULL, 53, '2024-04-24 04:21:31', 1),
(17605, 18700, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17606, 18644, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17607, 18694, 71, 4, 0, 'Secected', 112, '0000-00-00 00:00:00', 1),
(17608, 18703, 60, 1, 0, NULL, 30, '2024-04-24 05:17:18', 1),
(17609, 18697, 59, 5, 0, 'Discussed with the Candidate ,he is not interested in the job profile.Rejected', 19, '2024-04-24 07:04:36', 1),
(17610, 18732, 131, 5, 0, 'Lack of communication and interested in IT department', 126, '0000-00-00 00:00:00', 1),
(17611, 18736, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(17612, 18719, 57, 7, 0, 'Candidate is ok, 1yr experience loan dept telecalling xxamp field work, previous salary 17k, now exp 17k to 18k,pls cross check payslip xxamp Resigning letter and confirm the joining date ', 108, '0000-00-00 00:00:00', 1),
(17613, 18724, 19, 5, 1, 'Already He Is Working Reliance Life For 6 Month And He Is Not Fit For Sales', 108, '0000-00-00 00:00:00', 1),
(17614, 18735, 105, 5, 0, 'Candidate Communication And Performance is Not Good .also his voice is very low and not performed like experianced person', 112, '0000-00-00 00:00:00', 1),
(17615, 18254, 140, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17616, 18734, 140, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17617, 18723, 137, 7, 0, 'candidate previos expreience accounts, but high salary need to change the job . but good skil so i will check 7 days training', 112, '0000-00-00 00:00:00', 1),
(17618, 18723, 59, 1, 0, NULL, 137, '2024-04-25 05:07:42', 1),
(17619, 18610, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17620, 18719, 59, 1, 0, NULL, 57, '2024-04-26 11:22:17', 1),
(17621, 18741, 57, 5, 0, 'Fresher communication not good,unfit', 112, '0000-00-00 00:00:00', 1),
(17622, 18740, 19, 5, 1, 'She is expecting high salary but is not fit for that', 112, '0000-00-00 00:00:00', 1),
(17623, 18744, 51, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17624, 16225, 31, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17625, 18758, 131, 5, 0, 'Lack of communication and Looking for NON voice process', 126, '0000-00-00 00:00:00', 1),
(17626, 18762, 53, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17627, 18763, 105, 5, 0, 'Candidate Performance And Communication Is not Good also expectation is high', 112, '0000-00-00 00:00:00', 1),
(17628, 18764, 19, 5, 1, 'She has no degree, she is expecting high salary and so she is not fit for that salary', 112, '0000-00-00 00:00:00', 1),
(17629, 18759, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17630, 18759, 30, 7, 3, 'confirm joining and ctc', 131, '2024-04-29 01:29:14', 1),
(17631, 18610, 30, 7, 3, 'confirm the joining and ctc for RM', 131, '2024-04-29 01:31:23', 1),
(17632, 18773, 131, 5, 0, 'Lack of Knowledge about the process and no response ', 126, '0000-00-00 00:00:00', 1),
(17633, 18770, 140, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17634, 18715, 140, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17635, 18771, 105, 7, 0, 'Candidate Communication And Performance is Good , but little bit doubt in his sustain problem will try to check him in the training period ', 112, '0000-00-00 00:00:00', 1),
(17636, 18772, 19, 7, 4, 'Pitching was good and he is fit for the direct appt so lets 7 days and we will finalize', 112, '0000-00-00 00:00:00', 1),
(17637, 18768, 137, 7, 0, 'voice is ok and good communication skill. so i will check 7 days training', 112, '0000-00-00 00:00:00', 1),
(17638, 18564, 137, 7, 0, '50 % ok , so i will check 7 days training , candidate only need tele caller work only. not interested for field work', 112, '0000-00-00 00:00:00', 1),
(17639, 18781, 71, 5, 0, 'Not Fit For Sales ', 112, '0000-00-00 00:00:00', 1),
(17640, 18786, 86, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17641, 18768, 59, 3, 0, 'consultant role 14 ctc 13300 th', 137, '2024-04-29 04:02:43', 1),
(17642, 18564, 59, 1, 0, NULL, 137, '2024-04-29 04:04:50', 1),
(17643, 18784, 131, 5, 0, 'lack of communication and Salary Exception is high', 126, '0000-00-00 00:00:00', 1),
(17644, 18751, 131, 5, 0, 'Lack of knowledge and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(17645, 18765, 131, 5, 0, 'Looking in some other field not in sales', 126, '0000-00-00 00:00:00', 1),
(17646, 18777, 131, 4, 0, 'Good communication can process for the next round', 126, '0000-00-00 00:00:00', 1),
(17647, 18777, 30, 7, 3, 'selected for DM channel ctc suggested 18k', 131, '2024-04-29 05:41:08', 1),
(17648, 18783, 131, 4, 0, 'Good communication and can process for the next round', 126, '0000-00-00 00:00:00', 1),
(17649, 18783, 30, 7, 3, 'fresher as per company norms ctc', 131, '2024-04-29 05:44:58', 1),
(17650, 18775, 131, 5, 0, 'Lack of knowledge and Looking in inside sales process ', 126, '0000-00-00 00:00:00', 1),
(17651, 18782, 131, 4, 0, 'Good communication and can process for next round', 126, '0000-00-00 00:00:00', 1),
(17652, 18782, 30, 7, 3, 'selected for dm salary as per company fresher', 131, '2024-04-29 07:07:36', 1),
(17653, 18777, 60, 1, 0, NULL, 30, '2024-04-29 08:03:07', 1),
(17654, 18782, 60, 1, 0, NULL, 30, '2024-04-29 08:04:06', 1),
(17655, 18783, 60, 1, 0, NULL, 30, '2024-04-29 08:04:53', 1),
(17656, 18771, 59, 3, 0, 'Selected for Gopi tEam need to analyse in 7 days relationship executive Role', 105, '2024-04-29 11:06:29', 1),
(17657, 18801, 137, 5, 0, 'candidate is over attitude and low skill and voice is very low ', 112, '0000-00-00 00:00:00', 1),
(17658, 18797, 102, 5, 0, 'Not suitable sales  field ', 112, '0000-00-00 00:00:00', 1),
(17659, 18793, 89, 5, 0, 'No skill ', 112, '0000-00-00 00:00:00', 1),
(17660, 18804, 19, 7, 4, 'Already he has a sales exp and same he has convince Skill little bit so we try 7 days ,ctc 17k and in hand 16k ', 112, '0000-00-00 00:00:00', 1),
(17661, 18802, 138, 5, 0, 'not selected', 112, '0000-00-00 00:00:00', 1),
(17662, 18816, 131, 5, 0, 'Lack of knowledge and salary Exception is high', 126, '0000-00-00 00:00:00', 1),
(17663, 18785, 131, 5, 0, 'lack of communication and knowledge', 126, '0000-00-00 00:00:00', 1),
(17664, 18767, 131, 4, 0, 'Good communication and confident level can process for for next round', 126, '0000-00-00 00:00:00', 1),
(17665, 18767, 30, 7, 3, 'confirm the joining and ctc , he dont have any salary proof he will get salary in hand previous company cross check ', 131, '2024-04-30 03:10:06', 1),
(17666, 18818, 89, 5, 0, 'Long distance and not skills ', 112, '0000-00-00 00:00:00', 1),
(17667, 18819, 137, 7, 0, 'good skill , so i will final to 7 days training', 112, '0000-00-00 00:00:00', 1),
(17668, 18811, 19, 5, 1, 'well Settled family', 112, '0000-00-00 00:00:00', 1),
(17669, 18813, 105, 5, 0, 'Candidate performance is good but her tamil pronunsation is not good also her sustainity is doubt', 112, '0000-00-00 00:00:00', 1),
(17670, 18804, 59, 1, 0, NULL, 19, '2024-04-30 03:49:53', 1),
(17671, 18809, 139, 7, 0, 'Shortlisted for immediate joining \nprevious exp Donxquott have in sales\nconsider as fresher ', 112, '0000-00-00 00:00:00', 1),
(17672, 18806, 137, 5, 0, 'no dress code  and voice is very local and over attitude candidate need only offie work ', 112, '0000-00-00 00:00:00', 1),
(17673, 18812, 53, 5, 0, 'not suit for telecalling', 112, '0000-00-00 00:00:00', 1),
(17674, 18772, 59, 3, 0, 'Selected for Kannan Team  Need to analyse in 7 days training', 19, '2024-04-30 06:05:31', 1),
(17675, 18819, 59, 3, 0, 'ctc 15000', 137, '2024-04-30 06:13:37', 1),
(17676, 18814, 137, 5, 0, 'Good Comminication Skill , But Not Fit For Sales Job', 112, '0000-00-00 00:00:00', 1),
(17677, 18809, 18, 1, 0, NULL, 139, '2024-04-30 06:44:23', 1),
(17678, 18829, 131, 5, 0, 'Lack of Communication', 126, '0000-00-00 00:00:00', 1),
(17679, 18846, 131, 5, 0, 'Looking for non voice process', 126, '0000-00-00 00:00:00', 1),
(17680, 18847, 131, 5, 0, 'Looking for non voice process', 126, '0000-00-00 00:00:00', 1),
(17681, 18854, 105, 5, 0, 'Candiate communication and apperance is not good .then his voice is low', 112, '0000-00-00 00:00:00', 1),
(17682, 18842, 53, 4, 0, 'ok for sales profile. ', 112, '0000-00-00 00:00:00', 1),
(17683, 18862, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(17684, 18859, 137, 5, 0, 'voice not clear and low skill', 112, '0000-00-00 00:00:00', 1),
(17685, 18865, 53, 4, 0, '50 -50', 112, '0000-00-00 00:00:00', 1),
(17686, 18861, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17687, 18860, 19, 7, 4, 'she is job needed person and she speaks good lets try 7 days then only we will finalize,Salary in hand 13k', 112, '0000-00-00 00:00:00', 1),
(17688, 18867, 89, 5, 0, 'Not fit this profile ', 112, '0000-00-00 00:00:00', 1),
(17689, 6086, 105, 7, 0, 'Candidate Communication And Performance is good but she is expected high salary kindly contact the candidate and approach 15k to 16k as her take Home', 112, '0000-00-00 00:00:00', 1),
(17690, 18855, 53, 5, 0, 'Expected 30k, He dnt know to drive also, not suit for any profile. ', 112, '0000-00-00 00:00:00', 1),
(17691, 18871, 102, 7, 0, 'Shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17692, 18865, 59, 1, 0, NULL, 53, '2024-05-03 06:11:00', 1),
(17693, 18842, 139, 4, 0, 'Shortlisted for next round\nexp sal 25k \n1.4 month exp in telesales in casagrand', 53, '2024-05-03 06:11:41', 1),
(17694, 18868, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17695, 18871, 60, 1, 0, NULL, 102, '2024-05-03 06:39:59', 1),
(17696, 18860, 59, 1, 0, NULL, 19, '2024-05-03 06:40:23', 1),
(17697, 18861, 30, 5, 0, 'not upto the mark preparing for central govt jobs', 131, '2024-05-03 06:41:08', 1),
(17698, 18868, 30, 5, 0, 'communication not upto the mark', 131, '2024-05-03 06:41:41', 1),
(17699, 6086, 59, 5, 0, 'Proposed a salary but her exp is very for DM channel', 105, '2024-05-03 06:47:29', 1),
(17700, 18882, 19, 5, 0, 'he is not handling the pressure', 112, '0000-00-00 00:00:00', 1),
(17701, 18882, 19, 5, 0, 'he is not handling the pressure', 112, '0000-00-00 00:00:00', 1),
(17702, 18789, 19, 5, 1, 'Expected too much of salary but she is fresher', 112, '0000-00-00 00:00:00', 1),
(17703, 18888, 105, 5, 0, 'Candidate Performance is Good ,But She Planned To Put M.Com In Next Month Also She Asked Partime Only', 112, '0000-00-00 00:00:00', 1),
(17704, 18856, 137, 7, 0, 'GOOD SKILL AND PREVIOUS LOAN EXPREIENCE FOR 7 MONTHS , PREVIOUS 14K CTC , I PREFERED 17K CTC', 112, '0000-00-00 00:00:00', 1),
(17705, 18889, 105, 7, 0, 'Candidate Communication And Performance Is Good ,Also Her Pronunciation is Well.Will Go For An Training Period ', 112, '0000-00-00 00:00:00', 1),
(17706, 18884, 102, 5, 0, 'Not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(17707, 18895, 53, 5, 0, 'not suit for telecalling\n', 112, '0000-00-00 00:00:00', 1),
(17708, 18896, 51, 5, 0, 'rejectd', 112, '0000-00-00 00:00:00', 1),
(17709, 18896, 51, 5, 0, 'rejectd', 112, '0000-00-00 00:00:00', 1),
(17710, 18897, 19, 5, 1, 'Expected too much of salary', 112, '0000-00-00 00:00:00', 1),
(17711, 18856, 59, 3, 0, 'Selected for DM Relationship Executive Role Need to analyse in 7 dyas training', 137, '2024-05-04 06:09:16', 1),
(17712, 18889, 59, 3, 0, '14ctc and 13300 th consultant', 105, '2024-05-04 07:08:33', 1),
(17713, 18767, 60, 1, 0, NULL, 30, '2024-05-06 10:26:08', 1),
(17714, 18759, 60, 1, 0, NULL, 30, '2024-05-06 10:28:17', 1),
(17715, 18610, 60, 1, 0, NULL, 30, '2024-05-06 10:33:14', 1),
(17716, 18887, 30, 7, 4, 'confirm joining and exp ctc 4l suggested upto 3,75l cross check previous  one', 104, '0000-00-00 00:00:00', 1),
(17717, 18875, 74, 5, 0, 'not fit', 127, '0000-00-00 00:00:00', 1),
(17718, 18694, 18, 7, 4, 'Ramakrishnan Selected for Santhosh team with 15 to 20% hike based on negotiation.... Joining on 7th May', 71, '2024-05-06 03:35:13', 1),
(17719, 18887, 60, 1, 0, NULL, 30, '2024-05-06 03:35:38', 1),
(17720, 18902, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(17721, 18922, 139, 5, 0, 'Donxquott have Relevant exp in sales and knowledge about sales ', 104, '0000-00-00 00:00:00', 1),
(17722, 18901, 105, 5, 0, 'Candidate performed well and good,but she is expecting high salary packge', 104, '0000-00-00 00:00:00', 1),
(17723, 18936, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(17724, 18931, 57, 7, 0, 'candidate is ok,confirm the salary like 15k to 16k maximum, pls cross check with payslips xxamp resignation letter.confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(17725, 18931, 59, 1, 0, NULL, 57, '2024-05-06 07:26:18', 1),
(17726, 18694, 60, 1, 0, NULL, 18, '2024-05-07 10:03:33', 1),
(17727, 18966, 105, 5, 0, 'Candidate Communication And Performance is Very Low,Also Her Voice Very Lazy ', 112, '0000-00-00 00:00:00', 1),
(17728, 18394, 137, 5, 0, 'Candidate need IT job so not fit for sales job', 112, '0000-00-00 00:00:00', 1),
(17729, 18958, 53, 5, 0, 'Not even opening her mouth. Low voice and unclear speech', 112, '0000-00-00 00:00:00', 1),
(17730, 18957, 53, 5, 0, 'Sustainability issue.', 112, '0000-00-00 00:00:00', 1),
(17731, 18957, 53, 5, 0, 'Sustainability issue.', 112, '0000-00-00 00:00:00', 1),
(17732, 18975, 19, 5, 1, 'She Is Not Fit For Sales', 112, '0000-00-00 00:00:00', 1),
(17733, 18968, 137, 5, 0, 'no skill and not fit for sales and voice process', 112, '0000-00-00 00:00:00', 1),
(17734, 18950, 102, 5, 0, 'Not suitable sales', 112, '0000-00-00 00:00:00', 1),
(17735, 18951, 102, 5, 0, 'Not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(17736, 18979, 139, 5, 0, 'Not fit for Sales', 112, '0000-00-00 00:00:00', 1),
(17737, 18977, 138, 7, 0, 'selected', 112, '0000-00-00 00:00:00', 1),
(17738, 18978, 71, 4, 0, 'Move to next round ', 112, '0000-00-00 00:00:00', 1),
(17739, 18986, 51, 4, 0, 'selected', 112, '0000-00-00 00:00:00', 1),
(17740, 18842, 18, 7, 0, 'Selected for Gnanashaekar Team and Package discussed by Gnanashekar. Joining on Monday 13th', 139, '2024-05-07 04:45:42', 1),
(17741, 18954, 30, 5, 0, 'not upto the mark', 112, '0000-00-00 00:00:00', 1),
(17742, 18953, 30, 5, 0, 'not upto the mark', 112, '0000-00-00 00:00:00', 1),
(17743, 18987, 30, 7, 4, 'suggested ctc 19k confirm joining', 112, '0000-00-00 00:00:00', 1),
(17744, 18980, 30, 7, 3, 'selected for dm ctc asper company', 104, '0000-00-00 00:00:00', 1),
(17745, 18978, 60, 1, 0, NULL, 71, '2024-05-07 07:01:31', 1),
(17746, 18977, 18, 7, 0, 'Selected Need to negotiate salary. Joining on 1st June for Jagadeesh Team', 138, '2024-05-08 11:10:16', 1),
(17747, 19014, 137, 7, 0, 'better voice and quick understanding, so i prefered ctc is 15k', 112, '0000-00-00 00:00:00', 1),
(17748, 19014, 137, 7, 0, 'better voice and quick understanding, so i prefered ctc is 15k', 112, '0000-00-00 00:00:00', 1),
(17749, 19017, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17750, 19021, 53, 5, 0, 'looking Nonvoice process', 112, '0000-00-00 00:00:00', 1),
(17751, 18995, 138, 4, 0, 'selected', 112, '0000-00-00 00:00:00', 1),
(17752, 18821, 140, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17753, 18977, 60, 1, 0, NULL, 18, '2024-05-08 01:27:21', 1),
(17754, 18995, 18, 8, 0, 'Please refix', 138, '2024-05-08 02:40:20', 1),
(17755, 18980, 60, 1, 0, NULL, 30, '2024-05-08 02:57:34', 1),
(17756, 18987, 60, 1, 0, NULL, 30, '2024-05-08 02:58:47', 1),
(17757, 19014, 59, 3, 0, 'Selected for Giri Raj Team in Consultant Role Sustainability doubts married Need to analyse in 7 days', 137, '2024-05-08 03:13:16', 1),
(17758, 18994, 102, 5, 0, 'not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(17759, 18984, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17760, 18905, 140, 4, 0, 'Good candidate', 60, '0000-00-00 00:00:00', 1),
(17761, 18905, 29, 8, 0, 'didnxquott respond to arun', 140, '2024-05-09 11:22:25', 1),
(17762, 19047, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17763, 19047, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17764, 19029, 30, 7, 0, 'suggested ctc 18k experince in star health last 7months', 127, '0000-00-00 00:00:00', 1),
(17765, 18990, 30, 5, 0, 'She expecting high ctc donxquott have any sales experience', 127, '0000-00-00 00:00:00', 1),
(17766, 18930, 30, 5, 0, 'grand parents denied for joining', 127, '0000-00-00 00:00:00', 1),
(17767, 18838, 30, 5, 0, 'She will no sustain', 127, '0000-00-00 00:00:00', 1),
(17768, 19029, 60, 1, 0, NULL, 30, '2024-05-09 03:00:39', 1),
(17769, 19063, 140, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17770, 19032, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17771, 19088, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17772, 19060, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17773, 19060, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17774, 19041, 74, 5, 0, 'NOT FIT', 127, '0000-00-00 00:00:00', 1),
(17775, 19089, 137, 7, 0, 'previous exp is call process but not sales , but good communication skill, previous  ctc is 18k but not proper reliving and no profe so exp ctc is 18k', 127, '0000-00-00 00:00:00', 1),
(17776, 16168, 137, 7, 0, 'good sales skill ad good sales pich , ctc exp is 22k ', 127, '0000-00-00 00:00:00', 1),
(17777, 19094, 138, 4, 0, '2 years experience in Telesales in HDB loan and insurance and salary expected 2.5 LPA speaks bold and observe quality good so i waiting sriram sir confirmation', 112, '0000-00-00 00:00:00', 1),
(17778, 19101, 138, 4, 0, 'medium communication skills and limited technical expertise and experienced only Field sales in Equitas micro finance so fit to sales but need to train properly to tele sale so waiting for sriram sir feedback', 108, '0000-00-00 00:00:00', 1),
(17779, 19000, 131, 4, 0, 'Good Communication can process for the round', 126, '0000-00-00 00:00:00', 1),
(17780, 19000, 30, 7, 3, 'confirm the joining and ctc', 131, '2024-05-10 02:50:07', 1),
(17781, 19094, 18, 8, 0, 'Not Attended', 138, '2024-05-10 02:50:28', 1),
(17782, 19111, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17783, 19101, 18, 7, 0, 'Sivaraj E Selected for Jagadeesh Team with Current CTC of the last company. Immed Joiner', 138, '2024-05-10 02:57:11', 1),
(17784, 19075, 57, 5, 0, 'not interested for sales xxamp voice process job,she looking for non voice process  like data entry.. ', 112, '0000-00-00 00:00:00', 1),
(17785, 19000, 60, 1, 0, NULL, 30, '2024-05-10 04:24:34', 1),
(17786, 16168, 59, 1, 0, NULL, 137, '2024-05-10 04:34:58', 1),
(17787, 19089, 59, 1, 0, NULL, 137, '2024-05-10 04:39:17', 1),
(17788, 19127, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17789, 19093, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17790, 19092, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17791, 18921, 131, 4, 0, 'Good communication can  process for next round', 126, '0000-00-00 00:00:00', 1),
(17792, 18921, 30, 7, 3, 'confirm joining and as per company ctc DM', 131, '2024-05-11 10:25:08', 1),
(17793, 19144, 139, 4, 0, 'Selected for next round, good communication skill, having exp in inbound and outbound calls ', 112, '0000-00-00 00:00:00', 1),
(17794, 18934, 131, 5, 0, 'Salary expectation is high ', 126, '0000-00-00 00:00:00', 1),
(17795, 19185, 131, 4, 0, 'Good communication can Process for next round', 126, '0000-00-00 00:00:00', 1),
(17796, 19185, 30, 7, 3, 'upto 20k ctc suggested ', 131, '2024-05-11 01:10:36', 1),
(17797, 19172, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17798, 19171, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17799, 19178, 137, 7, 0, 'candidate voice and skill is ok , past 6 monh work with back end staff work , so prefered ctc is 14.5 k take home .', 112, '0000-00-00 00:00:00', 1),
(17800, 19154, 57, 7, 0, 'candidate is ok.check with payslip,\n\nnegotiate the salary and confirm the  joining date', 112, '0000-00-00 00:00:00', 1),
(17801, 18842, 60, 1, 0, NULL, 18, '2024-05-11 04:14:34', 1),
(17802, 19101, 60, 1, 0, NULL, 18, '2024-05-11 04:15:03', 1),
(17803, 19154, 59, 1, 0, NULL, 57, '2024-05-11 04:31:15', 1),
(17804, 19178, 59, 1, 0, NULL, 137, '2024-05-11 05:55:37', 1),
(17805, 19197, 138, 5, 0, ' Lack of Problem Solving Abilities:', 112, '0000-00-00 00:00:00', 1),
(17806, 19205, 57, 7, 0, 'Candidate is 50/50. fresher expected Salary 18k ,negotiate  the salary. 15k to 16k maximum,distance too long..', 112, '0000-00-00 00:00:00', 1),
(17807, 19207, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17808, 19207, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17809, 19200, 105, 7, 0, 'Candidate Communication and performance Is good.Will Try in the training period', 112, '0000-00-00 00:00:00', 1),
(17810, 19198, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17811, 19205, 59, 3, 0, 'Selected for Syed Team Need ot analyse in 7 days too long distance family background is Navy', 57, '2024-05-13 12:50:38', 1),
(17812, 19203, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17813, 19203, 30, 7, 3, 'ctc suggested 20k confirm the joining', 131, '2024-05-13 01:18:20', 1),
(17814, 19200, 59, 1, 0, NULL, 105, '2024-05-13 02:36:02', 1),
(17815, 19202, 131, 5, 0, 'Not interested with this job role', 126, '0000-00-00 00:00:00', 1),
(17816, 19208, 131, 4, 0, 'Good Communication and knowledge can process for the next round ', 126, '0000-00-00 00:00:00', 1),
(17817, 19208, 30, 7, 4, 'ctc suggested 20k and confirm the joining', 131, '2024-05-13 03:29:04', 1),
(17818, 19209, 137, 7, 0, 'candidate voice and appearance is ok and past expreience  4 companys in 3 years, last packege is 14k take home so ctc i 16k provide and distance is very long. so check the past payslip', 108, '0000-00-00 00:00:00', 1),
(17819, 19209, 59, 1, 0, NULL, 137, '2024-05-13 05:06:25', 1),
(17820, 19212, 105, 5, 0, 'Candidate Performance is Not Good ,also he is more interested in game designer', 112, '0000-00-00 00:00:00', 1),
(17821, 18921, 60, 1, 0, NULL, 30, '2024-05-13 06:21:36', 1),
(17822, 19185, 60, 1, 0, NULL, 30, '2024-05-13 06:23:28', 1),
(17823, 19203, 60, 1, 0, NULL, 30, '2024-05-13 06:24:18', 1),
(17824, 19208, 60, 1, 0, NULL, 30, '2024-05-13 06:25:03', 1),
(17825, 19220, 138, 4, 0, '1 year experience in SCB credit card sales and loans and good communication then impressive Problem Solving Abilities but Need to negotiate salary', 108, '0000-00-00 00:00:00', 1),
(17826, 19220, 18, 5, 0, 'High Expectations', 138, '2024-05-14 12:07:23', 1),
(17827, 19216, 102, 5, 0, 'He is interested in IT profile , after 3month later he go to study MCA So, he is not continue the Job  ', 112, '0000-00-00 00:00:00', 1),
(17828, 19217, 137, 5, 0, 'candidate all ok but after3 month he will quit the job and joining for mastre degree, so he not fit for job, he looking for short time income only', 112, '0000-00-00 00:00:00', 1),
(17829, 19219, 138, 5, 0, 'less knowledge not fit for tele sales', 112, '0000-00-00 00:00:00', 1),
(17830, 19227, 74, 5, 0, 'NOT FIT', 108, '0000-00-00 00:00:00', 1),
(17831, 19224, 74, 5, 0, 'NOT FIT', 108, '0000-00-00 00:00:00', 1),
(17832, 19218, 131, 4, 0, 'Good communication can process for the next round', 126, '0000-00-00 00:00:00', 1),
(17833, 19218, 30, 4, 2, 'Confirm sustainability if ok we can proceed ', 131, '2024-05-14 03:25:04', 1),
(17834, 19222, 131, 4, 0, 'Good communication can Process For the next round ', 126, '0000-00-00 00:00:00', 1),
(17835, 19222, 30, 7, 4, 'Suggested 16k in hand confirm the joining ', 131, '2024-05-14 03:28:58', 1),
(17836, 19228, 105, 5, 0, 'Candidate performance is little bit well ,but he is not suitable for sales , Because he intrested in sofware developer also he asked if there is any vacancy ongoing for fresher , so candidate is more doubt in his sustanity', 108, '0000-00-00 00:00:00', 1),
(17837, 19226, 131, 5, 0, 'salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(17838, 19225, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(17839, 19229, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(17840, 19221, 131, 5, 0, 'Doubt with Sustainability without any valid reason he left many company ', 126, '0000-00-00 00:00:00', 1),
(17841, 19230, 139, 5, 0, 'rejected for our process ', 112, '0000-00-00 00:00:00', 1),
(17842, 19218, 60, 1, 0, NULL, 30, '2024-05-14 08:08:13', 1),
(17843, 19222, 60, 1, 0, NULL, 30, '2024-05-14 08:09:22', 1),
(17844, 18960, 131, 5, 0, 'Lack of confident', 126, '0000-00-00 00:00:00', 1),
(17845, 18961, 131, 5, 0, 'she will not sustain and lagging with communication', 126, '0000-00-00 00:00:00', 1),
(17846, 19236, 102, 5, 0, 'She is fresher , first interview communication skills low level and not handling pressure ', 108, '0000-00-00 00:00:00', 1),
(17847, 18898, 131, 5, 0, 'Doubt with Sustain and lack of knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17848, 18969, 131, 5, 0, 'Lack of knowledge about the sales doubt with Sustainability', 126, '0000-00-00 00:00:00', 1),
(17849, 7928, 139, 5, 0, 'Dont have sales skill, and communication\n', 112, '0000-00-00 00:00:00', 1),
(17850, 19237, 137, 5, 0, 'no skill , and not interested to feld work  so not fit for the job', 112, '0000-00-00 00:00:00', 1),
(17851, 19231, 105, 5, 0, 'candidate communication and performance is not good also his voice is very low ,he need to improve more', 112, '0000-00-00 00:00:00', 1),
(17852, 19028, 131, 5, 0, 'Lagging with communication and confident', 126, '0000-00-00 00:00:00', 1),
(17853, 19240, 57, 2, 0, 'candidate is ok. language issues she speak very well for english xxamp  Hindi, but tamil communication not good. just try 50/50. ', 112, '0000-00-00 00:00:00', 1),
(17854, 19243, 131, 5, 0, 'Not interested into sales field', 126, '0000-00-00 00:00:00', 1),
(17855, 19246, 102, 5, 0, 'Not suitable sales ', 112, '0000-00-00 00:00:00', 1),
(17856, 19248, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17857, 19247, 19, 5, 1, 'Not fir for sales and he is not completed his Diplamo too', 112, '0000-00-00 00:00:00', 1),
(17858, 19245, 19, 5, 1, 'Dress Code was too bad when he attend the Interview', 112, '0000-00-00 00:00:00', 1),
(17859, 19245, 19, 5, 1, 'Dress Code was too bad when he attend the Interview', 112, '0000-00-00 00:00:00', 1),
(17860, 19241, 105, 7, 0, 'Candidate communication And performance is good, will go for an training period .her joining will be on friday but she asked on monday ', 112, '0000-00-00 00:00:00', 1),
(17861, 19232, 109, 4, 0, '5050 profile his expectation 18k ', 112, '0000-00-00 00:00:00', 1),
(17862, 19232, 59, 1, 0, NULL, 109, '2024-05-15 04:45:50', 1),
(17863, 19238, 139, 4, 0, 'selected for next round, having exp in star health Insurance, and Indusland bank  ', 108, '0000-00-00 00:00:00', 1),
(17864, 19253, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17865, 19251, 137, 5, 0, 'candidate revious expreiece is only dominios expected ctc is 35k but he wll not go for out side call and voice also not clear', 112, '0000-00-00 00:00:00', 1),
(17866, 19250, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17867, 19254, 131, 5, 0, 'Lack of knowledge about the product and doubt with Sustainability', 126, '0000-00-00 00:00:00', 1),
(17868, 19213, 131, 5, 0, 'Lack of knowledge about the sales and insurance moreover the Salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(17869, 19257, 131, 5, 0, 'Doubt with Sustainability left many companies with any valid reason ', 126, '0000-00-00 00:00:00', 1),
(17870, 19255, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17871, 19256, 137, 5, 0, 'not proper work experience and not fit for voice process', 112, '0000-00-00 00:00:00', 1),
(17872, 19260, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17873, 19261, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17874, 19266, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17875, 19269, 140, 5, 0, 'Over expectation on salary', 112, '0000-00-00 00:00:00', 1),
(17876, 19264, 131, 5, 0, 'Interested in accounting field', 126, '0000-00-00 00:00:00', 1),
(17877, 19241, 59, 3, 0, 'Selecetd for Gopi Team Relationship Executive role Sustainability doubts a lot looking much of non voice and salary exp is high need to analyse in 7days training only', 105, '2024-05-17 03:00:08', 1),
(17878, 19275, 131, 4, 0, 'good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17879, 19275, 30, 1, 0, NULL, 131, '2024-05-17 03:25:54', 1),
(17880, 19026, 131, 4, 0, 'Good Communication and confident can process for next round', 126, '0000-00-00 00:00:00', 1),
(17881, 19278, 131, 5, 0, 'Lack of communication', 112, '0000-00-00 00:00:00', 1),
(17882, 19265, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17883, 19026, 30, 7, 3, 'Confirm the CTC. Cross verift pevious CTC. Suggested CTC upto 28k. For RM', 131, '2024-05-17 04:20:27', 1),
(17884, 19274, 131, 4, 0, 'Good Communication and knowledge about the insurance can process for the next round', 126, '0000-00-00 00:00:00', 1),
(17885, 19274, 30, 1, 0, NULL, 131, '2024-05-17 05:02:00', 1),
(17886, 19270, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17887, 19144, 18, 7, 0, 'Shortlisted for Gnanashekar team. Negotiate salary and give 10% to 20% hike based on negotiation. Expected 25k take home. Can Join next month 1st week', 139, '2024-05-17 07:12:02', 1),
(17888, 19238, 18, 7, 0, 'Selected for Gnanashekar Team for 3.46L CTC. Immedeate Joiner', 139, '2024-05-17 07:15:32', 1),
(17889, 19284, 19, 7, 4, 'Good at Convincing and attitude too', 112, '0000-00-00 00:00:00', 1),
(17890, 19287, 105, 5, 0, 'Candidate Communication And pronunciation issue', 112, '0000-00-00 00:00:00', 1),
(17891, 19288, 19, 5, 1, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17892, 19289, 89, 7, 0, 'Selected.. 7 days training will analyse ', 112, '0000-00-00 00:00:00', 1),
(17893, 19290, 102, 7, 0, ' shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17894, 19026, 60, 1, 0, NULL, 30, '2024-05-18 12:28:05', 1),
(17895, 19285, 74, 5, 0, 'past two years prepare for govt job..next month also exam ...so choosing job in a parttime way..not fit', 108, '0000-00-00 00:00:00', 1),
(17896, 19286, 74, 5, 0, 'mcom and CA preparation in a parttime intrested in tally only..not fit', 108, '0000-00-00 00:00:00', 1),
(17897, 19283, 74, 5, 0, 'not fit...expected high currently in a 25k salary package', 108, '0000-00-00 00:00:00', 1),
(17898, 19238, 60, 1, 0, NULL, 18, '2024-05-18 04:09:49', 1),
(17899, 19144, 60, 1, 0, NULL, 18, '2024-05-18 04:12:32', 1),
(17900, 19289, 59, 1, 0, NULL, 89, '2024-05-20 10:23:48', 1),
(17901, 19295, 53, 7, 0, 'selected for DM. Fresher we can try. 50 50', 112, '0000-00-00 00:00:00', 1),
(17902, 19294, 137, 5, 0, 'candidate just looking for job but no need . she informed only working 3 month or 6 months only so she not fit or job', 112, '0000-00-00 00:00:00', 1),
(17903, 19297, 137, 5, 0, 'distace is very long and she need work from home ', 112, '0000-00-00 00:00:00', 1),
(17904, 19296, 138, 7, 0, 'Selected', 112, '0000-00-00 00:00:00', 1),
(17905, 19292, 109, 5, 0, 'will not sustain and high expectation holding offer with esaf small finance.', 112, '0000-00-00 00:00:00', 1),
(17906, 19292, 109, 5, 0, 'will not sustain and high expectation holding offer with esaf small finance.', 112, '0000-00-00 00:00:00', 1),
(17907, 19290, 59, 1, 0, NULL, 102, '2024-05-20 11:49:27', 1),
(17908, 19271, 102, 5, 0, 'not interested in sales field work he is interested in collection work !!', 112, '0000-00-00 00:00:00', 1),
(17909, 19301, 105, 5, 0, 'Candidate Salary Expectatiojn is to high', 112, '0000-00-00 00:00:00', 1),
(17910, 19301, 105, 5, 0, 'Candidate Salary Expectatiojn is to high', 112, '0000-00-00 00:00:00', 1),
(17911, 19298, 74, 7, 0, 'she is ok with the profile completed bsc and msc and worked as a software trainer and telecalling for institute joining process.....5 month worked and due to family issue releived, travel to office 1 hour and father farmer and have no laptop, ready to join, expected 13 to 14k kindly check once and confirm', 112, '0000-00-00 00:00:00', 1),
(17912, 19302, 137, 5, 0, 'short timely changed and company  and voice not clear', 112, '0000-00-00 00:00:00', 1),
(17913, 19296, 18, 7, 4, 'Kishore Selected for Jagadeesh Team. Can give 4L CTC but give 4L if if Current CTC is 3.5L... Can in couple of Days...', 138, '2024-05-20 06:28:27', 1),
(17914, 19296, 60, 1, 0, NULL, 18, '2024-05-20 07:36:00', 1),
(17915, 19284, 59, 3, 0, 'Selected for Kannan Team Consultant Role Need to analyse in 7 days', 19, '2024-05-21 10:19:57', 1),
(17916, 19303, 89, 7, 0, 'Selected.. fresher I see during the 7 days of training', 112, '0000-00-00 00:00:00', 1),
(17917, 19303, 59, 3, 0, 'Selected for Relationship Executive Role Need to analyse in 7days  and confirm ', 89, '2024-05-21 10:34:20', 1),
(17918, 19309, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17919, 19308, 52, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17920, 19308, 53, 7, 0, 'selected for DM. Sal 13k TH', 112, '0000-00-00 00:00:00', 1),
(17921, 19316, 109, 5, 0, 'Had hearing issue will not suitable for this position. Location also far distance.', 112, '0000-00-00 00:00:00', 1),
(17922, 19315, 140, 4, 0, 'Selected for next round', 112, '0000-00-00 00:00:00', 1),
(17923, 19304, 19, 5, 1, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17924, 19298, 59, 1, 0, NULL, 74, '2024-05-21 06:29:27', 1),
(17925, 19295, 59, 3, 0, 'Seleceted fro relationship executive role banu team need to analyse in 7 days and confirm,', 53, '2024-05-21 06:48:13', 1),
(17926, 19308, 59, 3, 0, 'Selected for Banu Team Long Distance but the candidate is good and she is open to travel can give a try', 53, '2024-05-21 06:49:01', 1),
(17927, 19310, 131, 5, 0, 'Lack of communication ', 112, '0000-00-00 00:00:00', 1),
(17928, 19323, 131, 5, 0, 'Doubt in sustain  interested in fashion designing field', 126, '0000-00-00 00:00:00', 1),
(17929, 19324, 19, 7, 4, 'Already Having Exp In Sales For 2 Years so we decide 18k in hand salary', 112, '0000-00-00 00:00:00', 1),
(17930, 19325, 57, 7, 0, 'candidate is ok,team Reference.\nfresher communication ok. provide fresher salary and pls confirm the joining date ', 112, '0000-00-00 00:00:00', 1),
(17931, 19326, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17932, 19322, 105, 5, 0, 'Candidate Performance,Communication As Well As Voice Very Low And More Doubt in His Sustainable', 112, '0000-00-00 00:00:00', 1),
(17933, 19327, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17934, 19315, 29, 7, 3, 'porrselvan team, ', 140, '2024-05-22 12:27:15', 1),
(17935, 19315, 59, 3, 0, 'Selected for Porrselvan Team in Coimmitment of 2L Biz in May june then 3.8 L from July', 29, '2024-05-22 12:49:07', 1),
(17936, 19313, 137, 5, 0, 'candidate slow listening and voice also very low', 112, '0000-00-00 00:00:00', 1),
(17937, 19320, 109, 5, 0, 'Not clear with her communication and  not active person', 112, '0000-00-00 00:00:00', 1),
(17938, 19334, 53, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17939, 19333, 19, 5, 0, 'Childish behaviour not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17940, 19332, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17941, 19331, 137, 7, 0, 'candidate skill  and voice is ok  i will try 7dasy training', 112, '0000-00-00 00:00:00', 1),
(17942, 19330, 19, 5, 1, 'Expecting high salary', 112, '0000-00-00 00:00:00', 1),
(17943, 19329, 102, 5, 0, 'Not knowledge for insurance and he is already working other domain ( field ) not suitable for sales profile ', 112, '0000-00-00 00:00:00', 1),
(17944, 19336, 57, 7, 0, 'Candidate is 50/50, 2yrs experience. provide 15k to 16k salary, thanks', 112, '0000-00-00 00:00:00', 1),
(17945, 19325, 59, 1, 0, NULL, 57, '2024-05-22 03:23:33', 1),
(17946, 19321, 138, 7, 0, 'selected', 112, '0000-00-00 00:00:00', 1),
(17947, 19331, 59, 1, 0, NULL, 137, '2024-05-22 05:45:32', 1),
(17948, 19343, 109, 5, 0, 'Not much knowledge about HR domain and will not sustain longer', 112, '0000-00-00 00:00:00', 1),
(17949, 19338, 109, 2, 0, 'Good  communication and knowledge and also looking \n for IT recruitment Need to confirm by her side', 112, '0000-00-00 00:00:00', 1),
(17950, 19339, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17951, 19340, 53, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17952, 19345, 138, 7, 0, 'selected but need to negotiate salary package', 112, '0000-00-00 00:00:00', 1),
(17953, 19349, 59, 5, 0, 'False Commitment her husband attended interview and shortlisted identified his experience and every data seems to be fake', 108, '0000-00-00 00:00:00', 1),
(17954, 19344, 105, 5, 0, 'Candidate Communcation is Not Good Also Voice is Not Suitable', 108, '0000-00-00 00:00:00', 1),
(17955, 19318, 140, 5, 0, 'no convincing skills and sales knowledge', 112, '0000-00-00 00:00:00', 1),
(17956, 19348, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17957, 19350, 57, 7, 0, 'over all 1.5yrs experience, pls check with sustainability. negotiate the salary and confirm the joining date. ', 112, '0000-00-00 00:00:00', 1),
(17958, 19306, 109, 5, 0, 'Will not suitable for the role looking for ID domain', 112, '0000-00-00 00:00:00', 1),
(17959, 19345, 18, 7, 0, 'Selected for Jagadeesh team... Joining on Monday 3rd June. Please negotiate the salary.', 138, '2024-05-23 04:58:33', 1),
(17960, 19347, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17961, 19347, 30, 7, 4, 'immediate joining suggested upto 20k ctc for Dm', 131, '2024-05-23 05:00:56', 1),
(17962, 19341, 131, 4, 0, 'Good Communication can process For next round', 126, '0000-00-00 00:00:00', 1),
(17963, 19341, 30, 7, 3, 'suggested ctc upto 20k for rm immediate joining', 131, '2024-05-23 05:04:57', 1),
(17964, 19346, 131, 5, 0, 'Lack of Communication and knowledge', 126, '0000-00-00 00:00:00', 1),
(17965, 19342, 131, 5, 0, 'Lack of communication and high salary expectation', 126, '0000-00-00 00:00:00', 1),
(17966, 19350, 59, 1, 0, NULL, 57, '2024-05-23 05:58:38', 1),
(17967, 19353, 74, 7, 0, 'she is a fresher , completed bba in sastra university kumbakonam, father realestate not much income, brother in tcs 18k salary, native in kumbakonam, ,, she is positive talk active, have carrier plan,,,, no laptop immediate joining, expected 13k......the only  query travel issue kindly check once and confirm ', 112, '0000-00-00 00:00:00', 1),
(17968, 19360, 51, 4, 0, 'selected ', 112, '0000-00-00 00:00:00', 1),
(17969, 19358, 57, 5, 0, 'He is unfit for the job. Communication not good.', 112, '0000-00-00 00:00:00', 1),
(17970, 19319, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17971, 19347, 60, 1, 0, NULL, 30, '2024-05-24 01:45:35', 1),
(17972, 19341, 60, 1, 0, NULL, 30, '2024-05-24 01:46:23', 1),
(17973, 19319, 30, 1, 0, NULL, 131, '2024-05-24 01:50:26', 1),
(17974, 19324, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2024-05-24 03:50:06', 1),
(17975, 19355, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17976, 19354, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17977, 19356, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17978, 19359, 59, 2, 0, 'Communication Ok Fresher for our role Career gap need to come for final round if he comes back let us try', 112, '0000-00-00 00:00:00', 1),
(17979, 19353, 59, 3, 0, 'Selected for Thanjavur Location Need to analyse in 7 days training\n', 74, '2024-05-24 04:49:19', 1),
(17980, 19299, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17981, 19366, 74, 5, 0, 'NOT FIT', 108, '0000-00-00 00:00:00', 1),
(17982, 19360, 29, 7, 3, 'refer resume for any task and increment details ( if Any ) RM PC', 51, '2024-05-25 02:15:27', 1),
(17983, 18986, 29, 7, 0, 'sarath team', 51, '2024-05-25 02:15:52', 1),
(17984, 19361, 109, 2, 0, 'Had good knowledge and communication about hR domain but had some health issue  need to check about the issue.', 112, '0000-00-00 00:00:00', 1),
(17985, 19362, 59, 5, 0, 'Not suitable for our roles ', 112, '0000-00-00 00:00:00', 1),
(17986, 19375, 109, 5, 0, 'Will npt suitable not clear with his communication. high expectations', 112, '0000-00-00 00:00:00', 1),
(17987, 19373, 71, 4, 0, 'Next round', 112, '0000-00-00 00:00:00', 1),
(17988, 19368, 140, 5, 0, 'No exp in sales and not interested', 112, '0000-00-00 00:00:00', 1),
(17989, 19369, 140, 4, 0, 'Having convincing skills', 112, '0000-00-00 00:00:00', 1),
(17990, 19364, 31, 4, 4, 'candidate has 3 yrs experinece in telecalling as well credit card and loans at hdfc', 112, '0000-00-00 00:00:00', 1),
(17991, 19380, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17992, 19380, 30, 7, 3, 'suggested ctc upto 20k immediate joining for rm', 131, '2024-05-25 05:33:42', 1),
(17993, 19380, 60, 1, 0, NULL, 30, '2024-05-25 05:40:38', 1),
(17994, 19360, 59, 3, 0, 'Selected for RM Role Sarath Team Need to analyse in 7 days - Commitment - 2L biz in May june MF 10K SIP then23K Net TH', 29, '2024-05-25 06:32:53', 1),
(17995, 18986, 59, 3, 0, 'Selected by Gaurav Sir for Rejoining with the mentioned CTC also he has committed 25K as a con sultant pay before joining if tehre was a a 4L business', 29, '2024-05-25 06:33:26', 1),
(17996, 19369, 29, 7, 3, 'Porrselvam, for details pls refer resume', 140, '2024-05-27 10:03:54', 1),
(17997, 19369, 59, 3, 0, 'Commitment - 1.5L biz in Jun july MF 10K SIP then 3.10 LPA', 29, '2024-05-27 10:09:09', 1),
(17998, 19364, 29, 7, 3, 'refer resume on other details on salary xxamp increments', 31, '2024-05-27 10:23:40', 1),
(17999, 19384, 74, 7, 0, 'he is ok  with the profile ..completed ma tamil....two due college drop due to accident fracture......father auto driver and sister studying, have laptop expected..12 to 15k..imediate joining ....kindly check once', 108, '0000-00-00 00:00:00', 1),
(18000, 19381, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(18001, 19395, 89, 5, 0, 'No basic skills ', 130, '0000-00-00 00:00:00', 1),
(18002, 19387, 57, 5, 0, 'She have 9m experience in star health ins, But Product knowledge worst and communication not good.', 130, '0000-00-00 00:00:00', 1),
(18003, 19388, 19, 5, 0, 'fresher - expecting salary', 130, '0000-00-00 00:00:00', 1),
(18004, 19396, 131, 4, 0, 'Good Communication Has Some Knowledge About Sales And Insurance And Can Process For Next Round', 126, '0000-00-00 00:00:00', 1),
(18005, 19396, 30, 7, 4, 'Immediate joining ctc suggested 3.75 lac cross check ', 131, '2024-05-27 03:45:03', 1),
(18006, 19390, 140, 5, 0, 'no convincing skills', 108, '0000-00-00 00:00:00', 1),
(18007, 19392, 86, 4, 0, 'Selected For Next Round', 108, '0000-00-00 00:00:00', 1),
(18008, 19389, 59, 5, 0, 'Salary exp is high Career Gap Preparing for UPSC exams settled family married husband came for an interview not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(18009, 19392, 18, 7, 0, 'Shalini Selected for 3.10 CTC and ready to Join after 15 days notice and selected for Mani Team...', 86, '2024-05-27 04:56:30', 1),
(18010, 19393, 18, 7, 0, 'Vijay Chidambaram Selected for 4.2L CTC for Jagadeesh Team. He can Join on 3rd or 4th.', 108, '0000-00-00 00:00:00', 1),
(18011, 19385, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(18012, 19386, 105, 7, 0, 'candidate 50/50,will check in the training period', 108, '0000-00-00 00:00:00', 1),
(18013, 19384, 59, 3, 0, 'Selected for Thanjavur Location Need to analyse in 7 days', 74, '2024-05-27 05:41:24', 1),
(18014, 19391, 71, 4, 0, 'selected ', 108, '0000-00-00 00:00:00', 1),
(18015, 19392, 60, 1, 0, NULL, 18, '2024-05-27 07:02:18', 1),
(18016, 19403, 102, 5, 0, 'Fresher no idea sales ', 108, '0000-00-00 00:00:00', 1),
(18017, 19405, 102, 5, 0, 'Fresher no idea insurance and sales ', 108, '0000-00-00 00:00:00', 1),
(18018, 19406, 89, 7, 0, 'Selected But I Need To See More During The Training Period ', 108, '0000-00-00 00:00:00', 1),
(18019, 19244, 139, 4, 0, 'Selected for Next round  \nhaving exp in telesales and previously working in bajaj finance ', 104, '0000-00-00 00:00:00', 1),
(18020, 19386, 59, 1, 0, NULL, 105, '2024-05-28 04:02:54', 1),
(18021, 19373, 60, 1, 0, NULL, 71, '2024-05-28 04:45:01', 1),
(18022, 19391, 60, 1, 0, NULL, 71, '2024-05-28 04:46:17', 1),
(18023, 19396, 60, 1, 0, NULL, 30, '2024-05-28 05:48:12', 1),
(18024, 19408, 59, 5, 0, 'Looking much for non voice communication Good Not much open for target will not sustain for a long', 108, '0000-00-00 00:00:00', 1),
(18025, 19404, 140, 4, 0, 'Reference from aravindh', 108, '0000-00-00 00:00:00', 1),
(18026, 19244, 18, 7, 0, 'Selected for Gnanashekar team. Ready to join on Monday. Please negotiate the salary ', 139, '2024-05-29 12:17:26', 1),
(18027, 19321, 18, 8, 0, 'Kindly reschedule', 138, '2024-05-29 12:52:20', 1),
(18028, 19402, 19, 5, 0, 'Too much of Attitude Even He Donxquott know about the question ', 104, '0000-00-00 00:00:00', 1),
(18029, 19410, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(18030, 19423, 137, 5, 0, 'candidate is only looking for temporary job , after 6 month she wil go for acconts related compan so sh not fit for sales', 108, '0000-00-00 00:00:00', 1),
(18031, 19422, 89, 5, 0, 'No skill ', 108, '0000-00-00 00:00:00', 1),
(18032, 19417, 57, 5, 0, 'Communication good,distance too long and sustainability problem. kindly reject', 108, '0000-00-00 00:00:00', 1),
(18033, 19414, 138, 7, 0, 'selected', 108, '0000-00-00 00:00:00', 1),
(18034, 19415, 140, 4, 0, 'Selected for sarath team', 108, '0000-00-00 00:00:00', 1),
(18035, 19419, 102, 5, 0, 'Interested in IT role she is know c++ java etc , not suitable sales ', 108, '0000-00-00 00:00:00', 1),
(18036, 19421, 102, 5, 0, 'She is interested in back end support team sale is not idea just atten the interview ', 108, '0000-00-00 00:00:00', 1),
(18037, 19416, 139, 4, 0, 'Selected for next round, having exp but not in sales, have skills interest to work in sales ', 108, '0000-00-00 00:00:00', 1),
(18038, 19412, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(18039, 19409, 57, 7, 0, 'candidate is ok,cross check with payslip, resignation letter.\n\npls check she have some health issues.salary exp 18k to 19k. \n\nkindly check sustainability.', 108, '0000-00-00 00:00:00', 1),
(18040, 19406, 59, 1, 0, NULL, 89, '2024-05-29 03:58:51', 1),
(18041, 19409, 60, 1, 0, NULL, 57, '2024-05-29 04:36:38', 1),
(18042, 19414, 18, 7, 3, 'Selected for Jagadeesh Team. Can offer 3L package... Ready to join after 15 days notice. Need to check stability in 1st week and have laptop ', 138, '2024-05-29 04:37:05', 1),
(18043, 19416, 18, 7, 0, 'Selected for Gnanashekar team and ready to Join on Monday.  Can give 25k CTC', 139, '2024-05-29 04:44:49', 1),
(18044, 19415, 29, 7, 3, 'Refer Resume On Other Details On Salary xxamp Increments', 140, '2024-05-29 05:02:42', 1),
(18045, 19404, 29, 7, 3, 'Refer Resume On Other Details On Salary xxamp Increments', 140, '2024-05-29 05:04:15', 1),
(18046, 19416, 60, 1, 0, NULL, 18, '2024-05-30 12:40:25', 1),
(18047, 19432, 74, 5, 0, 'not fit', 112, '0000-00-00 00:00:00', 1),
(18048, 19433, 105, 5, 0, 'Candidate Communication and Performance is not good Also His Attire is not good', 112, '0000-00-00 00:00:00', 1),
(18049, 19433, 105, 5, 0, 'Candidate Communication and Performance is not good Also His Attire is not good', 112, '0000-00-00 00:00:00', 1),
(18050, 19430, 19, 7, 1, 'Job needed Person,lets we try in 7 days', 112, '0000-00-00 00:00:00', 1),
(18051, 19429, 138, 7, 0, 'Selected', 112, '0000-00-00 00:00:00', 1),
(18052, 19428, 89, 5, 0, 'No skill ', 112, '0000-00-00 00:00:00', 1),
(18053, 19426, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18054, 19424, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18055, 18776, 86, 5, 0, 'Sriram sir rejected this candidate, Not satisfied', 112, '0000-00-00 00:00:00', 1),
(18056, 19397, 102, 5, 0, 'he is 6 month working credit card sales and take home salary 17k but right now his expectation 22k to 26k so, not suitable DM ', 112, '0000-00-00 00:00:00', 1),
(18057, 19337, 57, 7, 0, 'candidate is ok,cross check payslip xxamp Statement too. negotiate the salary. 17k maximum.confirm the joining date.', 112, '0000-00-00 00:00:00', 1),
(18058, 19337, 57, 7, 0, 'candidate is ok,cross check payslip xxamp Statement too. negotiate the salary. 17k maximum.confirm the joining date.', 112, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(18059, 19430, 59, 3, 0, 'Selected for Kannan Team in Consultant Role Need to Analyse in 7 days', 19, '2024-05-30 02:39:02', 1),
(18060, 19337, 59, 3, 0, 'Selected for Syed Team Need to analyse 7 days can be trained ', 57, '2024-05-30 02:47:05', 1),
(18061, 19434, 89, 5, 0, 'Not fit for the job', 108, '0000-00-00 00:00:00', 1),
(18062, 16580, 59, 3, 0, 'Selected for RE Role Need to Analyse in 7 days training and confirm', 102, '2024-05-30 03:26:44', 1),
(18063, 19244, 60, 1, 0, NULL, 18, '2024-05-30 05:43:51', 1),
(18064, 19393, 60, 1, 0, NULL, 18, '2024-05-30 06:35:41', 1),
(18065, 19429, 18, 7, 0, 'Mohammed Saddam Selected for Jagadeesh team. Ready to Join on Monday. Need to negotiate salary. Need to Verify the current CTC and can give upto 4.5L CTC as he has mentioned that his current CTC sir 34800 PM.', 138, '2024-05-30 07:02:41', 1),
(18066, 19418, 105, 5, 0, 'candidate peroformance and communication is good but her voice is very low', 112, '0000-00-00 00:00:00', 1),
(18067, 19442, 57, 7, 0, 'candidate is ok, confirm the joining date xxamp Salary thanks.\n', 112, '0000-00-00 00:00:00', 1),
(18068, 19442, 57, 7, 0, 'candidate is ok, confirm the joining date xxamp Salary thanks.\n', 112, '0000-00-00 00:00:00', 1),
(18069, 19440, 102, 5, 0, 'Not suitable sales and not knowledge insurance ', 112, '0000-00-00 00:00:00', 1),
(18070, 19442, 59, 3, 0, 'Selected for Syed Team need to analyse in 7 days good communication can give a try', 57, '2024-05-31 12:08:34', 1),
(18071, 19445, 19, 7, 0, 'Job needed person and we fix CTC 16k she has a 6 month exp in Max Life health insurance ', 112, '0000-00-00 00:00:00', 1),
(18072, 19441, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18073, 19439, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18074, 19439, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18075, 19443, 140, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(18076, 19444, 137, 5, 0, 'low voice and slow understanding', 112, '0000-00-00 00:00:00', 1),
(18077, 19447, 140, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(18078, 19446, 137, 7, 0, 'better voice skill and good communication but distance is long so try for 7 days training period', 112, '0000-00-00 00:00:00', 1),
(18079, 19438, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18080, 19435, 131, 5, 0, 'Lack of communication and High salary expectation ', 126, '0000-00-00 00:00:00', 1),
(18081, 19293, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(18082, 19436, 131, 5, 0, 'Lack of Communication ', 126, '0000-00-00 00:00:00', 1),
(18083, 19446, 59, 1, 0, NULL, 137, '2024-05-31 04:42:44', 1),
(18084, 19336, 59, 3, 0, 'Selected for Syed Team 5050 profile Sustainability doubts a lot need to analyse in 7 days ', 57, '2024-06-01 11:42:11', 1),
(18085, 19345, 60, 1, 0, NULL, 18, '2024-06-01 01:42:12', 1),
(18086, 19452, 74, 7, 0, 'he is ok with the profile, completed bca in 2022-- 6 months experience in home loan manapuram finance---father farmer poor background---higly job need---expected 15k,,,have laptop,,,immediate joining ,,,15 km from home ...kindly check once and confirm', 112, '0000-00-00 00:00:00', 1),
(18087, 19452, 74, 7, 0, 'he is ok with the profile, completed bca in 2022-- 6 months experience in home loan manapuram finance---father farmer poor background---higly job need---expected 15k,,,have laptop,,,immediate joining ,,,15 km from home ...kindly check once and confirm', 112, '0000-00-00 00:00:00', 1),
(18088, 19452, 74, 7, 0, 'he is ok with the profile, completed bca in 2022-- 6 months experience in home loan manapuram finance---father farmer poor background---higly job need---expected 15k,,,have laptop,,,immediate joining ,,,15 km from home ...kindly check once and confirm', 112, '0000-00-00 00:00:00', 1),
(18089, 19452, 59, 3, 0, 'Selected for Thanjavur Location 5050 profile sustainability doubts', 74, '2024-06-01 02:57:44', 1),
(18090, 19450, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18091, 19454, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18092, 19458, 105, 5, 0, 'candidate not performed good in the interview process,also she is not most interested in this job', 112, '0000-00-00 00:00:00', 1),
(18093, 19459, 102, 5, 0, 'Fresher not knowledge insurance not fit tele calling ', 112, '0000-00-00 00:00:00', 1),
(18094, 19456, 89, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(18095, 19455, 53, 5, 0, 'Fresher, Expecting high salary and poor communication skill', 112, '0000-00-00 00:00:00', 1),
(18096, 19364, 59, 3, 0, 'Selecetd for GK sir Team with Commitments - 3.10 LPA Commitment - 2L biz in Jun july MF 10K SIP then 3.30 LPA', 29, '2024-06-01 06:47:58', 1),
(18097, 19404, 59, 1, 0, NULL, 29, '2024-06-01 06:48:50', 1),
(18098, 19415, 59, 1, 0, NULL, 29, '2024-06-01 06:49:34', 1),
(18099, 19445, 59, 1, 0, NULL, 19, '2024-06-03 10:27:38', 1),
(18100, 19465, 53, 5, 0, 'intrested i accounts', 112, '0000-00-00 00:00:00', 1),
(18101, 19462, 109, 5, 0, 'Will not suitable for our MF process, work experience with CAMS', 112, '0000-00-00 00:00:00', 1),
(18102, 19464, 102, 5, 0, 'right now looking for job and 3month later he is apply for master degree ', 112, '0000-00-00 00:00:00', 1),
(18103, 19466, 89, 5, 0, 'not intersted the job', 112, '0000-00-00 00:00:00', 1),
(18104, 19474, 89, 5, 0, 'not fit for the job. he has come due to compulsion to attaent the interview', 112, '0000-00-00 00:00:00', 1),
(18105, 19477, 138, 7, 0, 'english communication : Medium \nTechnical Skills : 2/5\nSalary assigned : 2.5 lakhs\nResult : Selected', 112, '0000-00-00 00:00:00', 1),
(18106, 19471, 102, 5, 0, 'Right Now Looking For Job And 3month Later He Is Apply For Master Degree ', 112, '0000-00-00 00:00:00', 1),
(18107, 19473, 57, 5, 0, 'Candidate is not ok. team reference. ', 112, '0000-00-00 00:00:00', 1),
(18108, 19472, 140, 5, 0, 'Rejected, not convincing', 112, '0000-00-00 00:00:00', 1),
(18109, 19470, 57, 7, 0, 'candidate is ok, experienced icici bank  xxamp Shriram life . pls check payslip.confirm the joining date. ', 112, '0000-00-00 00:00:00', 1),
(18110, 19469, 57, 5, 0, '50/50 salary expectation high, cross check payslip. negotiate the salary maximum 18k. may be try pc side but distance too long.', 112, '0000-00-00 00:00:00', 1),
(18111, 19468, 89, 5, 0, 'no skill', 112, '0000-00-00 00:00:00', 1),
(18112, 19467, 53, 5, 0, 'Low voice and no clarity on speech', 112, '0000-00-00 00:00:00', 1),
(18113, 19463, 109, 5, 0, 'Not clear with his communication.', 112, '0000-00-00 00:00:00', 1),
(18114, 19460, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18115, 19460, 30, 7, 3, 'confirm the ctc and joining date for rm suggested ctc upto 24k', 131, '2024-06-03 03:54:18', 1),
(18116, 19470, 59, 5, 0, 'Shared the documents and after that there is no response came with Sandhiya T B hope through thirisha they got backed', 57, '2024-06-03 04:19:16', 1),
(18117, 18852, 59, 3, 0, 'Selected for 5months intern with employment conditions for flutter developer 1st level interview by Sathish xxamp 2nd round by gokulraj Sankar\n', 60, '0000-00-00 00:00:00', 1),
(18118, 17637, 59, 3, 0, 'Selected For 5months Intern With Employment Conditions For Flutter Developer 1st Level Interview By Sathish xxamp 2nd Round By Gokulraj Sankar', 60, '0000-00-00 00:00:00', 1),
(18119, 19478, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18120, 19478, 30, 7, 3, 'suggested ctc  20k immediate joining for DM', 131, '2024-06-03 05:13:21', 1),
(18121, 19489, 53, 5, 0, 'Low voice and looking accounts related job', 112, '0000-00-00 00:00:00', 1),
(18122, 19429, 60, 1, 0, NULL, 18, '2024-06-04 10:49:27', 1),
(18123, 19477, 18, 7, 3, 'Mukesh Selected for Jagadeesh Team. Ready to Join on Monday 10 June 2024. Need HR to negotiate the salary and can give 10 to 15% hike from current CTC.  Also check wheter the employer PF is seperate else need to add the same. Not having Laptop.', 138, '2024-06-04 10:53:07', 1),
(18124, 19490, 137, 7, 0, 'bold and atractive voice , so try to 7 days trainning', 112, '0000-00-00 00:00:00', 1),
(18125, 19493, 57, 5, 0, 'unfit for the sales job. communication not well and field work not interest.', 112, '0000-00-00 00:00:00', 1),
(18126, 19494, 105, 7, 0, 'Candidate Performed 50/50 ,will try in the training period', 130, '0000-00-00 00:00:00', 1),
(18127, 19460, 60, 1, 0, NULL, 30, '2024-06-04 02:53:49', 1),
(18128, 19478, 60, 1, 0, NULL, 30, '2024-06-04 02:54:41', 1),
(18129, 19499, 137, 7, 0, 'candidate  voice is average but family backround is very low  so job is very needed  so try for 7days training', 112, '0000-00-00 00:00:00', 1),
(18130, 19497, 109, 5, 0, 'She was not fit for sales , sustainability doubt and also from long distance.', 112, '0000-00-00 00:00:00', 1),
(18131, 19501, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(18132, 19490, 59, 3, 0, 'Selected for Giri Team Need to analyse in 7 days and check', 137, '2024-06-04 04:13:10', 1),
(18133, 19500, 105, 5, 0, 'Candidate Not Performed Well in The Process Also his attire is very poor', 112, '0000-00-00 00:00:00', 1),
(18134, 19414, 60, 1, 0, NULL, 18, '2024-06-04 04:20:05', 1),
(18135, 19499, 59, 1, 0, NULL, 137, '2024-06-04 04:21:41', 1),
(18136, 19498, 131, 5, 0, 'Lack of communication and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(18137, 19496, 131, 4, 0, 'Good Communication can process for next Round', 126, '0000-00-00 00:00:00', 1),
(18138, 19496, 30, 7, 3, 'Suggested CTC upto 22k he I k for rm', 131, '2024-06-05 10:11:54', 1),
(18139, 19503, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(18140, 19411, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(18141, 19519, 57, 7, 0, 'Candidate is ok,communication good, Fresher, confirm the joining date. give me a fresher salary.', 112, '0000-00-00 00:00:00', 1),
(18142, 19520, 74, 5, 0, 'not fit', 112, '0000-00-00 00:00:00', 1),
(18143, 19518, 71, 5, 0, 'Not fit for sales ', 112, '0000-00-00 00:00:00', 1),
(18144, 19413, 71, 5, 0, 'Not Fit For Sales ', 112, '0000-00-00 00:00:00', 1),
(18145, 19507, 102, 9, 0, 'Already working another domain interested in sales but field work no interested so, may be will try operation team ', 112, '0000-00-00 00:00:00', 1),
(18146, 19508, 102, 7, 0, 'she is working real estate sales last 6 Month , Good communication Skills Salary expt 17k Plz cross check payslip and give 16.5K and join date ( immediate joining )', 112, '0000-00-00 00:00:00', 1),
(18147, 19509, 105, 5, 0, 'Candidate have Gap Speaking Problem So he is very tough to addmier here also not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18148, 19510, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18149, 19511, 53, 5, 0, 'her first preference is non voice process', 112, '0000-00-00 00:00:00', 1),
(18150, 19507, 59, 1, 0, NULL, 102, '2024-06-05 01:24:50', 1),
(18151, 19508, 59, 3, 0, 'Selected for Relationship Executive Role Need to analyse in 7 days', 102, '2024-06-05 01:28:00', 1),
(18152, 19502, 19, 7, 0, 'i think he is fit for tele calling ,CTC 16K', 112, '0000-00-00 00:00:00', 1),
(18153, 19522, 105, 7, 0, 'Candiate Performed 50/50,also she have 2 yrs experiance in credicard sales will try in the training period', 112, '0000-00-00 00:00:00', 1),
(18154, 19479, 89, 5, 0, 'No skil', 112, '0000-00-00 00:00:00', 1),
(18155, 19523, 102, 5, 0, 'He is not came Formal wear and fresher fst interview and communication level low', 112, '0000-00-00 00:00:00', 1),
(18156, 19480, 137, 7, 0, 'candidate is very good skill , and better voice , fresher , so try to 7 days training period', 112, '0000-00-00 00:00:00', 1),
(18157, 19519, 59, 5, 0, 'Need time to check with her family too long distance later there was no update from her', 57, '2024-06-05 04:39:51', 1),
(18158, 19477, 60, 1, 0, NULL, 18, '2024-06-05 05:03:35', 1),
(18159, 19502, 59, 3, 0, '5050 profile for RE role Can try Need to analyse in 7 days', 19, '2024-06-05 05:54:23', 1),
(18160, 19494, 59, 3, 0, 'Selected for RE role,Consultant Role for Gopinath Team his brother is in same domain,need to have a eye on the data secure', 105, '2024-06-05 05:59:04', 1),
(18161, 19480, 59, 1, 0, NULL, 137, '2024-06-06 10:15:47', 1),
(18162, 19522, 59, 3, 0, 'Shared the breakup but seems to be doubtful and exp is high ', 105, '2024-06-06 01:02:54', 1),
(18163, 19531, 53, 5, 0, 'Interested in accounts', 112, '0000-00-00 00:00:00', 1),
(18164, 19529, 105, 7, 0, 'Her Performance And Communication is Little Bit Good ,But 5050 Will Try In The Training Period ', 112, '0000-00-00 00:00:00', 1),
(18165, 19528, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18166, 19535, 89, 5, 0, 'Not fit for the job', 112, '0000-00-00 00:00:00', 1),
(18167, 19536, 102, 5, 0, 'he is not handling pressure doubt for sustainability ', 112, '0000-00-00 00:00:00', 1),
(18168, 19537, 53, 5, 0, 'long distance', 112, '0000-00-00 00:00:00', 1),
(18169, 19548, 137, 5, 0, 'candidate is only lookingfrd compan job and she just attend the interview so rejcted', 112, '0000-00-00 00:00:00', 1),
(18170, 19545, 137, 5, 0, 'candidate looking for telecalling only ,not interested for  out side call so not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18171, 19538, 57, 2, 0, 'candidate is ok, pls confirm joining or not bcz of language issues.', 112, '0000-00-00 00:00:00', 1),
(18172, 19526, 59, 3, 0, 'Selecetd for Mutual Fund Role 2yrs NDA for this role can be trained have basic knowledge in MF have exp in BGV process', 112, '0000-00-00 00:00:00', 1),
(18173, 19532, 59, 3, 0, 'SElected for RE MF role Need to analyse in 7 days Sustainability doubts', 112, '0000-00-00 00:00:00', 1),
(18174, 19540, 51, 9, 0, 'int only in health', 112, '0000-00-00 00:00:00', 1),
(18175, 19543, 86, 8, 0, 'Degree Not completed. Need to meet Arun.', 112, '0000-00-00 00:00:00', 1),
(18176, 19550, 131, 5, 0, 'Doubt with Sustain, salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(18177, 19549, 131, 5, 0, 'Lack of confident lagging with communication', 126, '0000-00-00 00:00:00', 1),
(18178, 19551, 89, 7, 0, 'Selected.. fresher ', 104, '0000-00-00 00:00:00', 1),
(18179, 19540, 57, 5, 0, 'Appearance not good. salary expectation high. reject the profile. thanks', 51, '2024-06-07 12:21:44', 1),
(18180, 19555, 137, 7, 0, 'candidate is ok and voice also good ,  low backround so try for 7 days training period', 112, '0000-00-00 00:00:00', 1),
(18181, 19553, 102, 5, 0, 'he is interested in IT right now looking for sales , sustainability doubt ', 112, '0000-00-00 00:00:00', 1),
(18182, 19556, 105, 5, 0, 'Her Communication And Performance Is To Low', 112, '0000-00-00 00:00:00', 1),
(18183, 19557, 53, 4, 0, 'Will try 50/50', 112, '0000-00-00 00:00:00', 1),
(18184, 19561, 19, 5, 0, 'his voice and slang is not good', 112, '0000-00-00 00:00:00', 1),
(18185, 19562, 19, 5, 0, 'INTRESTED IN HR', 112, '0000-00-00 00:00:00', 1),
(18186, 19565, 102, 5, 0, 'interested in Accounts related job recently finished uG when get a result going accounts field ', 112, '0000-00-00 00:00:00', 1),
(18187, 19566, 137, 5, 0, 'candidate voice is not ok and not speaking well , so not fit for sales and she joining frd aslo including ', 112, '0000-00-00 00:00:00', 1),
(18188, 19491, 59, 1, 0, NULL, 130, '0000-00-00 00:00:00', 1),
(18189, 19557, 59, 5, 0, 'Not open for telecalling much showing interest in non voice', 53, '2024-06-07 06:23:47', 1),
(18190, 19551, 59, 3, 0, 'Selected for Relationship Executive Role Need to analyse in 7 days training and finalise', 89, '2024-06-07 06:54:36', 1),
(18191, 19581, 53, 4, 0, '50/50, needs to check', 112, '0000-00-00 00:00:00', 1),
(18192, 19579, 102, 5, 0, 'voice tone is low and friends are another non voice so, sustainability Doubt ', 112, '0000-00-00 00:00:00', 1),
(18193, 19576, 19, 5, 0, 'not intrest in sales', 112, '0000-00-00 00:00:00', 1),
(18194, 19575, 57, 5, 0, 'Candidate not interested for field work, may be try with other channel.thanks\n', 112, '0000-00-00 00:00:00', 1),
(18195, 19555, 59, 3, 0, 'Selected for Relationship Executive Role Giri Team Need to analyse in 7 days training and confirm', 137, '2024-06-08 12:59:33', 1),
(18196, 19583, 19, 7, 0, 'Selected Lets Try 7 days ', 112, '0000-00-00 00:00:00', 1),
(18197, 19582, 89, 7, 0, 'Selected.. already experienced telecalling ', 112, '0000-00-00 00:00:00', 1),
(18198, 19585, 137, 5, 0, 'candidate need temporvery job only, after6 month apply for master degree , so not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18199, 19569, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(18200, 19577, 131, 5, 0, 'lack of knowledge about the sales and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(18201, 19580, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18202, 19582, 59, 3, 0, 'Selected for Relationship Executive Role  need to analyse in 7 days training period  and confirm', 89, '2024-06-08 04:08:57', 1),
(18203, 19583, 59, 3, 0, 'Selected for Kannan Team Sustainability doubts a lot married fresher for sales need to check', 19, '2024-06-08 04:31:17', 1),
(18204, 19569, 30, 7, 3, 'She is expecting 28k but we can go upto 25k she donxquott have any experience in our field but have communication skills and confidence,she is k for rm if she accepted 25k means k or else drop', 131, '2024-06-08 04:32:31', 1),
(18205, 19578, 131, 5, 0, 'Lack Of Knowledge About The Sales And Salary Expectation Is High', 126, '0000-00-00 00:00:00', 1),
(18206, 19580, 30, 7, 4, 'Confirm the joining and CTC suggested upto 20k', 131, '2024-06-08 04:54:42', 1),
(18207, 19581, 59, 3, 0, 'Selected for Banu Team ,Need to analyse in 7 days and confirm', 53, '2024-06-08 06:20:47', 1),
(18208, 19569, 60, 1, 0, NULL, 30, '2024-06-10 09:16:09', 1),
(18209, 19580, 60, 1, 0, NULL, 30, '2024-06-10 09:16:55', 1),
(18210, 19496, 60, 1, 0, NULL, 30, '2024-06-10 09:18:20', 1),
(18211, 19592, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18212, 19592, 30, 7, 3, 'suggested ctc upto 17k selected for dm', 131, '2024-06-10 12:44:20', 1),
(18213, 19584, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18214, 19602, 53, 5, 0, 'looking accounts field', 112, '0000-00-00 00:00:00', 1),
(18215, 19594, 102, 5, 0, 'Fresher interested in Accounts not interested in sales just try Sustainability Doubt ', 112, '0000-00-00 00:00:00', 1),
(18216, 19594, 102, 5, 0, 'Fresher interested in Accounts not interested in sales just try Sustainability Doubt ', 112, '0000-00-00 00:00:00', 1),
(18217, 19593, 53, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(18218, 19591, 57, 5, 0, 'Candidate is unfit for the telesales xxamp Field work. he is interested iT Domain.', 112, '0000-00-00 00:00:00', 1),
(18219, 19590, 105, 7, 0, 'Candidate Performance And Communication is Good ,Will Try In The training period ', 112, '0000-00-00 00:00:00', 1),
(18220, 19588, 19, 7, 0, 'Syed Selected the profile lets try 7 days and decide', 112, '0000-00-00 00:00:00', 1),
(18221, 19586, 137, 7, 0, 'candidate voice is very bold and good communication  so i will try for 7 days training period', 112, '0000-00-00 00:00:00', 1),
(18222, 19599, 137, 7, 0, 'candidate expreience is it adn other job but sales interest and communication  is also good so try for 7 days training', 112, '0000-00-00 00:00:00', 1),
(18223, 19604, 57, 7, 0, 'candidate is ok,communication good,pls confirm the joining date.', 112, '0000-00-00 00:00:00', 1),
(18224, 19603, 102, 7, 0, 'He is communication and skill good but once confirm in sales becuz already 2yrs  working for Another domain ( back end team )', 112, '0000-00-00 00:00:00', 1),
(18225, 19601, 131, 4, 0, 'Good Communication can process for next round ', 126, '0000-00-00 00:00:00', 1),
(18226, 19605, 131, 4, 0, 'Good Communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(18227, 19605, 30, 7, 3, 'Suggested CTC upto 24k for rm', 131, '2024-06-10 05:56:18', 1),
(18228, 19601, 30, 7, 3, 'Selected for dm suggested CTC 18k', 131, '2024-06-10 05:57:00', 1),
(18229, 19604, 59, 3, 0, 'Selected for RE Role Can give a try in our roles need to check in 7days', 57, '2024-06-10 06:09:26', 1),
(18230, 19603, 59, 5, 0, 'Not interested in telesales', 102, '2024-06-10 06:57:30', 1),
(18231, 19529, 59, 3, 0, 'Fresher for Sales have 6 months ops exp can give a try need to analyse in 7 days', 105, '2024-06-10 07:10:34', 1),
(18232, 19590, 59, 3, 0, 'communication OK Can give  a try in our roles but sustainability doubts in our sales roles', 105, '2024-06-10 07:11:54', 1),
(18233, 19588, 59, 3, 0, 'Selected for RE Role Kannan Team Need to check in 7 days training', 19, '2024-06-10 07:17:45', 1),
(18234, 19586, 59, 3, 0, 'Selected for RE role Can give a try Need to train in 7 days and analyse', 137, '2024-06-11 10:08:41', 1),
(18235, 19599, 59, 3, 0, 'Selected for Giri Team Relationship Executive Role need to analyse in 7 days training\n', 137, '2024-06-11 10:10:03', 1),
(18236, 19611, 74, 5, 0, 'Not fit', 112, '0000-00-00 00:00:00', 1),
(18237, 19610, 74, 5, 0, 'Not fit', 112, '0000-00-00 00:00:00', 1),
(18238, 19612, 105, 5, 0, 'Her Communication ,Slang And Pronuncation is Not Good', 112, '0000-00-00 00:00:00', 1),
(18239, 19608, 89, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(18240, 19613, 53, 5, 0, 'Very low voice, not suit for telecalling', 112, '0000-00-00 00:00:00', 1),
(18241, 19614, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18242, 19607, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(18243, 19607, 30, 7, 4, 'Suggested ctc25k confirm the joining for rm', 131, '2024-06-11 05:04:11', 1),
(18244, 19615, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18245, 19607, 60, 1, 0, NULL, 30, '2024-06-11 05:56:07', 1),
(18246, 19605, 60, 1, 0, NULL, 30, '2024-06-11 05:57:14', 1),
(18247, 19615, 30, 7, 3, 'Suggested ctc18k selected for dm', 131, '2024-06-11 05:57:48', 1),
(18248, 19601, 60, 1, 0, NULL, 30, '2024-06-11 05:57:57', 1),
(18249, 19615, 60, 1, 0, NULL, 30, '2024-06-11 05:58:52', 1),
(18250, 19616, 109, 5, 0, 'had a different kind of experience. not much knowledge about recruitment', 130, '0000-00-00 00:00:00', 1),
(18251, 19626, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18252, 19617, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18253, 19617, 30, 7, 4, 'basic salary 15k suggested immediate joining for dm', 131, '2024-06-12 01:37:28', 1),
(18254, 19626, 30, 7, 3, 'immediate joining suggested ctc upto 17k for dm', 131, '2024-06-12 01:37:58', 1),
(18255, 19592, 60, 1, 0, NULL, 30, '2024-06-12 03:36:58', 1),
(18256, 19617, 60, 1, 0, NULL, 30, '2024-06-12 03:37:56', 1),
(18257, 19626, 60, 1, 0, NULL, 30, '2024-06-12 03:38:42', 1),
(18258, 19652, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18259, 19630, 59, 3, 0, 'Selected for Accounts Internship for 3 months with 10K stipend then 1.8 LPA overall 2yrs NDA', 112, '0000-00-00 00:00:00', 1),
(18260, 19636, 137, 7, 0, 'Good communication skills and bold voice but distance is very long other wise good so try for 7 days training period ', 112, '0000-00-00 00:00:00', 1),
(18261, 19640, 105, 7, 0, 'Her communication and performance is good will go for under training period', 112, '0000-00-00 00:00:00', 1),
(18262, 19650, 53, 4, 0, 'He is Interested in field sales and looking voice process, but going coaching for TNPSC exam and basketball player. Need to check sustainability, if he is ok for all term select this candidate', 112, '0000-00-00 00:00:00', 1),
(18263, 19629, 19, 7, 0, 'communication was good,So lets try 7 days ctc 16k', 112, '0000-00-00 00:00:00', 1),
(18264, 19643, 19, 7, 0, 'syed selected,so lets try 7 days ctc 16k, she has existing work exp', 112, '0000-00-00 00:00:00', 1),
(18265, 19641, 89, 5, 0, 'no skil', 112, '0000-00-00 00:00:00', 1),
(18266, 19644, 102, 5, 0, 'Already working 4th month back end team he is not suitable sales ', 112, '0000-00-00 00:00:00', 1),
(18267, 19637, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(18268, 19654, 138, 7, 0, 'Selected for 3L CTC. Immediate Joiner and has Laptop. Need to close soon.', 112, '0000-00-00 00:00:00', 1),
(18269, 19654, 18, 7, 3, 'Kavi Kumar Selected for Jagadeesh team for 3L CTC. Immediate Joiner and has Laptop. Need to close soon.', 138, '2024-06-13 04:45:08', 1),
(18270, 19646, 57, 5, 0, 'he not suitable for voice process xxamp Sales profile. field work not interest', 112, '0000-00-00 00:00:00', 1),
(18271, 19654, 60, 1, 0, NULL, 18, '2024-06-13 05:05:51', 1),
(18272, 18662, 51, 5, 0, 'Rejected', 51, '2024-06-13 07:43:27', 1),
(18273, 19640, 59, 3, 0, 'Selected for Gopinath Team Relationship Executive Role Need to analyze in 7 days seems to be doubt in handling the working pressure', 105, '2024-06-14 10:00:15', 1),
(18274, 19642, 105, 5, 0, 'candiate attend by charless , her Comminucation and performance is little bit only good,but sustainity problem.', 112, '0000-00-00 00:00:00', 1),
(18275, 19669, 140, 5, 0, 'No prior sales experience, not able convince for sales also', 112, '0000-00-00 00:00:00', 1),
(18276, 19665, 102, 5, 0, 'fresher not interested in sales ', 112, '0000-00-00 00:00:00', 1),
(18277, 19674, 140, 4, 0, 'can give 17k net salary now, june and july month target 2 lakhs, if achieved salary can be increased to 20k net', 112, '0000-00-00 00:00:00', 1),
(18278, 19629, 59, 5, 0, 'Not interested to go in telesales looking for the core job', 19, '2024-06-14 12:12:00', 1),
(18279, 19643, 59, 1, 0, NULL, 19, '2024-06-14 12:14:30', 1),
(18280, 19680, 138, 7, 0, 'Candidate have Life insurance experience in 2 years and Good Communcation skills and over all financial Knowledge is avaerage and Telesales is basic expereince but We need to Negotiate the salary 4LPA he Expected 4.5LPA ', 112, '0000-00-00 00:00:00', 1),
(18281, 19674, 29, 7, 2, 'Porrselvan team, refer detail in resume ', 140, '2024-06-14 02:43:23', 1),
(18282, 19680, 18, 8, 0, 'Kindly Reschedule', 138, '2024-06-14 02:44:19', 1),
(18283, 19677, 19, 7, 0, 'Job needed person ,ctc 15k,lets try 7 days and confirm', 112, '0000-00-00 00:00:00', 1),
(18284, 19678, 57, 7, 0, 'give me a fresher salary,confirm the joining date.thanks', 112, '0000-00-00 00:00:00', 1),
(18285, 19681, 137, 7, 0, '6months experience for renivales an d8 months experience for tele sales for starhealth nsurance so try for 7 days training and ctc net 16k', 112, '0000-00-00 00:00:00', 1),
(18286, 19682, 137, 5, 0, 'fake commitment and voice also not good , not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18287, 19677, 59, 3, 0, 'Fresher for Telecalling roles can be trained group of friends got selected in DM team Need to have a detailed analyse in their work', 19, '2024-06-14 03:38:48', 1),
(18288, 19683, 102, 5, 0, 'not suitable sales ', 112, '0000-00-00 00:00:00', 1),
(18289, 19684, 89, 5, 0, 'not fit for the job', 112, '0000-00-00 00:00:00', 1),
(18290, 19681, 59, 1, 0, NULL, 137, '2024-06-14 04:41:18', 1),
(18291, 19686, 57, 5, 0, 'Candidate is not suitable for sales profile. bcz of timing and leaves. ', 112, '0000-00-00 00:00:00', 1),
(18292, 19678, 59, 3, 0, 'Selected for Syed Team Need to analyse in 7 days training and confirm', 57, '2024-06-14 06:15:34', 1),
(18293, 19685, 74, 5, 0, 'not fit', 112, '0000-00-00 00:00:00', 1),
(18294, 19691, 139, 4, 0, 'selected for next round\nexp sal 20k pm\ndont have exp in sales', 112, '0000-00-00 00:00:00', 1),
(18295, 19699, 57, 5, 0, 'he interested it domain, already he attend 3 interviews iT related only, now also looking IT Jobs. Unfit for sales', 112, '0000-00-00 00:00:00', 1),
(18296, 19693, 89, 5, 0, 'not Interested Tell calling job ', 112, '0000-00-00 00:00:00', 1),
(18297, 19701, 137, 5, 0, 'candidate just fwe months working for job that money to study for it course, afterhe will join for it company so ot fit for sales', 112, '0000-00-00 00:00:00', 1),
(18298, 19698, 53, 7, 0, 'selected. Pls cnfrm the DOJ', 112, '0000-00-00 00:00:00', 1),
(18299, 19707, 102, 7, 0, 'Shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(18300, 19650, 59, 3, 0, 'Communication Ok Can be trained but will not sustain for a long looking for forensic opportunities parttime basket ball coach ', 53, '2024-06-15 11:45:15', 1),
(18301, 19636, 59, 3, 0, 'Selected for Giri Team Relationship Executive Role Need to analyse in 7 days and confirm', 137, '2024-06-15 12:42:03', 1),
(18302, 19700, 53, 5, 0, 'Sustainability issue', 112, '0000-00-00 00:00:00', 1),
(18303, 19705, 89, 5, 0, 'over thinking', 112, '0000-00-00 00:00:00', 1),
(18304, 19709, 57, 2, 0, 'Candidate is 50/50 overall 3years experience. pls cross check sustainability.', 112, '0000-00-00 00:00:00', 1),
(18305, 19713, 137, 5, 0, 'slurred speech and low voice so not fit for sales and out side call also', 112, '0000-00-00 00:00:00', 1),
(18306, 19715, 137, 5, 0, 'low voice , no skill, high expectation\nso, not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18307, 19714, 137, 7, 0, 'candidate is good communication skill adn bold voice , expreience for realestate 1 year expt ctc 18k , so try for 7 days training', 112, '0000-00-00 00:00:00', 1),
(18308, 19716, 105, 5, 0, 'Candidate Preformance And Communication is little bit only good, but his voice is very low pitch', 112, '0000-00-00 00:00:00', 1),
(18309, 19712, 51, 5, 0, 'not ok', 112, '0000-00-00 00:00:00', 1),
(18310, 19717, 71, 4, 0, 'Selected next round ', 112, '0000-00-00 00:00:00', 1),
(18311, 19717, 18, 7, 0, 'Puntiha Selected for Santhosh Team. Immediate Joiner and ready to Join on Monday 17 June. Can give offer of 3.25L PA including PF. Donxquott have laptop and she does not have any experience certificate but can recruit her.', 71, '2024-06-15 04:20:22', 1),
(18312, 19714, 59, 3, 0, 'Selected for RE Role Focusing for IT positions Sustainability doubts in our role let us try\n', 137, '2024-06-15 05:40:14', 1),
(18313, 19691, 18, 8, 0, 'Not attended please refix', 139, '2024-06-15 05:47:06', 1),
(18314, 19718, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(18315, 19697, 31, 5, 0, 'worked 1 year with ipru bank channel but expecting huge CTC.  No experience in lead generation by his own ', 112, '0000-00-00 00:00:00', 1),
(18316, 19707, 59, 3, 0, 'Selected for RE Role Need to analyse and confirm in 7 days training can give a try for our roles', 102, '2024-06-15 06:25:56', 1),
(18317, 19722, 138, 7, 0, 'Communication Skills is good and new field for sales already experience in Tele calling for customer services but then overall attitude and perfomance is good but Mathematic calculation understanding is below average so need to train and negotiate the salary', 112, '0000-00-00 00:00:00', 1),
(18318, 19721, 57, 7, 0, 'Candidate is ok, confirm the joining xxamp salary ', 112, '0000-00-00 00:00:00', 1),
(18319, 19723, 19, 5, 0, 'Banu Mam Rejected', 112, '0000-00-00 00:00:00', 1),
(18320, 19719, 59, 3, 0, 'Selected for MF in staff non stat role final round interviewed by Gokul', 112, '0000-00-00 00:00:00', 1),
(18321, 19728, 53, 4, 0, '50 50 hold for next two days, than will decide', 112, '0000-00-00 00:00:00', 1),
(18322, 19727, 105, 5, 0, 'candiate performance is little bit not good also her communicating slang is like little bit locally', 112, '0000-00-00 00:00:00', 1),
(18323, 19726, 53, 5, 0, 'Very low voice and low confidence level.', 112, '0000-00-00 00:00:00', 1),
(18324, 19730, 137, 5, 0, 'candidate only looking near by office , previous office distance reason to relaving the job , that company near by cafs , so she will not work for this company, so not fit foe this comapny and voice also not good ', 112, '0000-00-00 00:00:00', 1),
(18325, 19717, 60, 1, 0, NULL, 18, '2024-06-17 12:23:52', 1),
(18326, 19725, 19, 5, 0, 'She is not willing to work after 6', 112, '0000-00-00 00:00:00', 1),
(18327, 19732, 89, 7, 0, 'Selected.. CTC 16 k . She has good communication skill', 112, '0000-00-00 00:00:00', 1),
(18328, 19720, 86, 4, 0, 'Selected for next round. ', 112, '0000-00-00 00:00:00', 1),
(18329, 19720, 18, 8, 0, 'Kindly Reschedule', 86, '2024-06-17 03:42:50', 1),
(18330, 19734, 105, 7, 0, 'Candidate performance is ok but 50/50 profile need to check in the training period', 112, '0000-00-00 00:00:00', 1),
(18331, 19734, 59, 1, 0, NULL, 105, '2024-06-17 04:20:25', 1),
(18332, 19722, 18, 7, 2, 'Selected for Jagadeesh team. Ready to Join on Monday. Expected take home is 22k Excluding PF but negotiate the salary .', 138, '2024-06-17 04:55:13', 1),
(18333, 19732, 59, 1, 0, NULL, 89, '2024-06-17 05:02:11', 1),
(18334, 19728, 59, 5, 0, 'Communication No Very slow will not handle our work pressure not suitable for our roles will not sustain', 53, '2024-06-17 05:04:06', 1),
(18335, 19721, 59, 3, 0, 'Selected forRE role Fresher have 3 months AR caller Exp Can give a try  need to analyse in 7 days', 57, '2024-06-17 05:14:30', 1),
(18336, 19736, 19, 7, 0, 'She speaks well ctc - Kindly refer to babu team sandhiya shree salary ', 112, '0000-00-00 00:00:00', 1),
(18337, 19742, 105, 5, 0, 'Candidate Performance is not like good ', 112, '0000-00-00 00:00:00', 1),
(18338, 19674, 59, 1, 0, NULL, 29, '2024-06-18 12:21:49', 1),
(18339, 19759, 137, 5, 0, 'candidate is previous exp is partime  work for gaming tracking candidate is very long distance a dno bike also , and not go for out side call ', 112, '0000-00-00 00:00:00', 1),
(18340, 19740, 137, 5, 0, 'candidate voice  is not good and very indifference so  not fit or sales', 112, '0000-00-00 00:00:00', 1),
(18341, 19756, 86, 7, 0, 'Sriram Sir shortlisted the Candidate.Can give 10% hike from current salary and which is amounting to 3.85L CTC. Ready to Join from Monday(24 June)', 112, '0000-00-00 00:00:00', 1),
(18342, 19739, 19, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(18343, 19747, 53, 5, 0, 'not even opening her mouth', 112, '0000-00-00 00:00:00', 1),
(18344, 19750, 19, 7, 0, 'babu ref,she speaks bold and well so iets try 7 days and confirm ,ctc 15k', 112, '0000-00-00 00:00:00', 1),
(18345, 19760, 137, 5, 0, 'candidate just looking for jo mainly looking fr it and pervious exp is study time work for gaming tracking and voice also very local voice and dress cod also so not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18346, 19741, 19, 5, 0, 'Rejected excepted high salary ', 112, '0000-00-00 00:00:00', 1),
(18347, 19758, 19, 5, 0, 'rejected not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18348, 19749, 105, 5, 0, 'Candidate communication is ok but  her slag is Not legit', 112, '0000-00-00 00:00:00', 1),
(18349, 19755, 89, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(18350, 19744, 89, 5, 0, 'no skill', 112, '0000-00-00 00:00:00', 1),
(18351, 19744, 89, 5, 0, 'no skill', 112, '0000-00-00 00:00:00', 1),
(18352, 19757, 102, 5, 0, 'not suitable sales', 112, '0000-00-00 00:00:00', 1),
(18353, 19746, 105, 5, 0, 'Interviewed by banu Mam, As per her information candidate communication adn performance is not good', 112, '0000-00-00 00:00:00', 1),
(18354, 19751, 57, 5, 0, 'Communication not good.unfit for sales ', 112, '0000-00-00 00:00:00', 1),
(18355, 19743, 57, 5, 0, 'waste of time', 112, '0000-00-00 00:00:00', 1),
(18356, 19737, 140, 4, 0, 'Selected', 112, '0000-00-00 00:00:00', 1),
(18357, 19738, 102, 5, 0, 'not suitable sales ', 112, '0000-00-00 00:00:00', 1),
(18358, 19745, 53, 5, 0, 'Looking accounts field\n', 112, '0000-00-00 00:00:00', 1),
(18359, 19750, 59, 3, 0, 'Selected for RE role 5050 Can give a try need to analyse in 7 days', 19, '2024-06-18 04:23:58', 1),
(18360, 19762, 102, 5, 0, 'not interested sales job', 112, '0000-00-00 00:00:00', 1),
(18361, 19756, 60, 1, 0, NULL, 86, '2024-06-18 04:24:44', 1),
(18362, 19736, 59, 3, 0, 'Selected for RE Role Team reference Fresher IT Background education open for telesales Need to analyse in 7 days', 19, '2024-06-18 04:25:17', 1),
(18363, 19761, 53, 5, 0, 'Long distance. ', 112, '0000-00-00 00:00:00', 1),
(18364, 19698, 59, 3, 0, 'Selected for RE Role have 7 months telecalling exp can be trained in our roles need to analyse in 7 days', 53, '2024-06-18 05:15:44', 1),
(18365, 19709, 59, 3, 0, 'Selected for RE Role Need to analyse and confirm in the training period', 57, '2024-06-18 06:12:55', 1),
(18366, 19709, 57, 7, 0, 'Candidate is ok confirm the joining date xxamp Salary thanks\n', 57, '2024-06-18 06:12:55', 1),
(18367, 19737, 29, 7, 0, 'didnxquott join', 140, '2024-06-18 07:15:54', 1),
(18368, 18165, 109, 5, 0, 'He was looking for finnance', 109, '2024-06-19 11:36:32', 1),
(18369, 19338, 109, 5, 0, 'She was looking for IT Recruitment, she need to Confirm about interested in NON IT', 109, '2024-06-19 11:37:22', 1),
(18370, 19771, 53, 5, 0, 'No proper communication', 112, '0000-00-00 00:00:00', 1),
(18371, 19769, 105, 7, 0, 'Her Communication And Performance is Good , Will Go For An Training Period', 112, '0000-00-00 00:00:00', 1),
(18372, 19767, 57, 5, 0, 'Communication good and everythink is fine.she recently married but she before that said unmarried.reject the profile, sustainability issues', 112, '0000-00-00 00:00:00', 1),
(18373, 19776, 137, 7, 0, 'candidate voice is good and good sales knowledge , but alread selacted for just dial compay package for 14k takehome 13k monday joining so just try ', 112, '0000-00-00 00:00:00', 1),
(18374, 19768, 57, 7, 0, 'Candidate is ok, Fresher communication good, pls cross check sustainability. confirm the joining date xxamp Salary', 112, '0000-00-00 00:00:00', 1),
(18375, 19779, 89, 5, 0, 'no basic skill', 112, '0000-00-00 00:00:00', 1),
(18376, 19773, 137, 5, 0, 'candidat mainly looking for iT job only just money need to search for sales job but after6 months he wlll go for iT only so not selected', 112, '0000-00-00 00:00:00', 1),
(18377, 19777, 105, 8, 0, 'Not Attended', 112, '0000-00-00 00:00:00', 1),
(18378, 19774, 102, 5, 0, 'just looking for job and it interested ', 112, '0000-00-00 00:00:00', 1),
(18379, 19770, 89, 7, 0, 'Freshers salary provide,,,  7 days training will analysis ', 112, '0000-00-00 00:00:00', 1),
(18380, 19769, 59, 3, 0, 'Fresher Taking tutions and she needs 2 days time to confirm  sustainability doubts need to check in 7 days analysis', 105, '2024-06-19 12:39:40', 1),
(18381, 19768, 59, 3, 0, 'selected for RE role Need to analyse in 7 days can be trained internal team reference', 57, '2024-06-19 01:04:46', 1),
(18382, 19776, 59, 3, 0, 'Sustainability doubts a lot much interesed in non voice need to analyse in 7 days', 137, '2024-06-19 01:12:43', 1),
(18383, 19787, 102, 5, 0, 'salary expectation high and not interested field work ', 104, '0000-00-00 00:00:00', 1),
(18384, 19786, 140, 5, 0, 'No sales knowledge and lying about her prior experince', 104, '0000-00-00 00:00:00', 1),
(18385, 19790, 71, 9, 0, 'move to dm', 104, '0000-00-00 00:00:00', 1),
(18386, 19765, 140, 5, 0, 'Not having convincing skill, not having proper experience also worked in 2 companies just for 6 months', 104, '0000-00-00 00:00:00', 1),
(18387, 19763, 138, 7, 0, 'Fresher candidate and New to start tele sales and direct sales so communication skills medium and Techinical skills average so she selected but need to negotiate salary and waiting for Sriram confirmation', 104, '0000-00-00 00:00:00', 1),
(18388, 19791, 139, 5, 0, 'Not fit RM profile \ndont have communication skils', 104, '0000-00-00 00:00:00', 1),
(18389, 19789, 51, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(18390, 19785, 137, 5, 0, 'candidate not interest for firld work and voice is not ok slowely speaking so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18391, 19784, 19, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(18392, 19783, 53, 5, 0, 'Very slow', 104, '0000-00-00 00:00:00', 1),
(18393, 19781, 51, 5, 0, 'rejected\n', 104, '0000-00-00 00:00:00', 1),
(18394, 19775, 105, 5, 0, 'Candidate Performance is little bit Only good but his voice is very low', 104, '0000-00-00 00:00:00', 1),
(18395, 19782, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18396, 19764, 131, 4, 0, 'Good  communication and  confident level can process for next', 126, '0000-00-00 00:00:00', 1),
(18397, 19277, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18398, 19764, 30, 7, 4, 'Selected for rm suggested 3lac', 131, '2024-06-19 06:15:19', 1),
(18399, 19277, 30, 7, 3, 'SELECTED FOR RM SUGGESTED  25K SALARY', 131, '2024-06-19 06:16:21', 1),
(18400, 19688, 131, 5, 0, 'Salary expectation is high ', 126, '0000-00-00 00:00:00', 1),
(18401, 19733, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18402, 19729, 131, 5, 0, 'Lack of knowledge and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(18403, 19667, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18404, 19770, 59, 1, 0, NULL, 89, '2024-06-20 11:07:14', 1),
(18405, 19796, 53, 4, 0, 'selected, now staying in singaperumal kovil, she is ready to relocate kindly check for relocate then confirm the joining. ', 104, '0000-00-00 00:00:00', 1),
(18406, 19797, 53, 5, 0, 'Very slow', 104, '0000-00-00 00:00:00', 1),
(18407, 19798, 19, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(18408, 19799, 137, 7, 0, 'candidate very interest to sales and voice process , voice also good and communication is good , now stay on  singaperumalkovil , confirm the job after re locate to near by office , so try for 7 days trainning  period', 104, '0000-00-00 00:00:00', 1),
(18409, 19800, 102, 7, 0, 'Shortlist for team  check and confirm DOJ', 104, '0000-00-00 00:00:00', 1),
(18410, 19802, 140, 4, 0, 'Selected for next round', 104, '0000-00-00 00:00:00', 1),
(18411, 19803, 51, 4, 0, 'selected', 104, '0000-00-00 00:00:00', 1),
(18412, 19804, 102, 5, 0, 'slow and sustainability doubt \n', 104, '0000-00-00 00:00:00', 1),
(18413, 19618, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(18414, 19805, 102, 5, 0, 'looking for non voice process ', 104, '0000-00-00 00:00:00', 1),
(18415, 19763, 18, 7, 2, 'Selected for Jagadeesh Team. Ready to Join from Next Month. Can give offer of 2.25L and she does not have Laptop.', 138, '2024-06-20 12:59:48', 1),
(18416, 19796, 59, 3, 0, 'Selected for RE Role  Ready to relocate can give  a try in our role Need to analyse in 7 days training', 53, '2024-06-20 01:05:23', 1),
(18417, 19808, 138, 7, 0, 'Sales experience and Communication skills good and Tele sales pitching also good need to negotiate salary', 104, '0000-00-00 00:00:00', 1),
(18418, 19812, 139, 5, 0, 'Dont have sales exp \nnot fit for RM role', 104, '0000-00-00 00:00:00', 1),
(18419, 19811, 86, 7, 0, 'Sriram sir shortlisted the candidate.Asking 20K Take home. Can Join after Notice period with Tony xxamp Guy', 104, '0000-00-00 00:00:00', 1),
(18420, 19802, 29, 7, 2, 'porrselvan team', 140, '2024-06-20 03:20:35', 1),
(18421, 19809, 19, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(18422, 19799, 59, 3, 0, 'Fresher open to learn can give a try need to analyse in 7days and confirm', 137, '2024-06-20 03:31:59', 1),
(18423, 19802, 59, 3, 0, 'Fresher Can be trained in our roles having a offer in core mech but not open for it.Can give a try and check in 7 days training', 29, '2024-06-20 03:40:59', 1),
(18424, 19722, 50, 1, 0, NULL, 18, '2024-06-20 03:50:06', 1),
(18425, 19813, 138, 7, 0, 'Good Communication skills and Over all Technical skills medium and Need to train financial things and Need to negotiate salary package', 104, '0000-00-00 00:00:00', 1),
(18426, 19808, 18, 7, 0, 'Jaya Selected For Jagadeesh Team. Given CTC is 3L PA and Ready to Join from Monday', 138, '2024-06-20 04:48:03', 1),
(18427, 19813, 18, 4, 0, 'Hr and ABM saw the candidate ', 138, '2024-06-20 04:49:54', 1),
(18428, 19790, 60, 1, 0, NULL, 71, '2024-06-20 05:31:11', 1),
(18429, 19811, 60, 1, 0, NULL, 86, '2024-06-20 05:41:54', 1),
(18430, 19808, 60, 1, 0, NULL, 18, '2024-06-21 10:52:16', 1),
(18431, 19817, 105, 5, 0, 'Candidate performance is little bit only good ,also very lazy', 112, '0000-00-00 00:00:00', 1),
(18432, 19818, 53, 5, 0, 'Internal Reference, Actually She Is Looking Job With Her Friend Oly, Already They Joined Star Health And Attend Training Session But They Are Not Intrested .', 112, '0000-00-00 00:00:00', 1),
(18433, 19819, 53, 5, 0, 'Internal reference, Actually she is looking job with her friend oly, already they joined star health and attend training session but they are not intrested .', 112, '0000-00-00 00:00:00', 1),
(18434, 19821, 89, 5, 0, 'if they get better job they will go to another job', 112, '0000-00-00 00:00:00', 1),
(18435, 19820, 102, 7, 0, 'Shortlist for team check and confirm DOJ', 112, '0000-00-00 00:00:00', 1),
(18436, 19822, 19, 7, 0, 'Selected ', 112, '0000-00-00 00:00:00', 1),
(18437, 19823, 53, 5, 0, 'Basically he is from fitness backgound, intrested in gym training due to health issue he is changing the profession, he wont sustain', 112, '0000-00-00 00:00:00', 1),
(18438, 19825, 137, 5, 0, 'candidate next study for master degree in office near by collage so thatreason to looking for job  and dress code is also very worst, voice is not good so not fit for my team ', 112, '0000-00-00 00:00:00', 1),
(18439, 19826, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18440, 19827, 137, 5, 0, 'candidate after6 month go for it job and  interest also that field, so just voice expreience to looking for job so not set for my team', 112, '0000-00-00 00:00:00', 1),
(18441, 19829, 105, 5, 0, 'Candidate communication and  performance is not like good, also little bit like a childish behaviour', 112, '0000-00-00 00:00:00', 1),
(18442, 19830, 53, 5, 0, 'She is going web designing class, so she need logout early around 6pm. ', 112, '0000-00-00 00:00:00', 1),
(18443, 19803, 29, 7, 2, 'selected, he didnt join', 51, '2024-06-21 04:52:58', 1),
(18444, 19764, 60, 1, 0, NULL, 30, '2024-06-21 05:00:58', 1),
(18445, 19277, 60, 1, 0, NULL, 30, '2024-06-22 11:11:56', 1),
(18446, 19820, 60, 1, 0, NULL, 102, '2024-06-22 11:12:32', 1),
(18447, 19800, 60, 1, 0, NULL, 102, '2024-06-22 11:22:39', 1),
(18448, 19788, 57, 5, 0, 'Candidate is unfit for sales. communication not well. ', 104, '0000-00-00 00:00:00', 1),
(18449, 19834, 139, 5, 0, 'Not fit for sales profile\nhe looking for operation \n', 104, '0000-00-00 00:00:00', 1),
(18450, 19835, 102, 5, 0, 'he is complete web development for IT And right now  looking  for sales or it interested in IT ', 104, '0000-00-00 00:00:00', 1),
(18451, 19836, 140, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(18452, 19837, 105, 5, 0, 'Intrevied by charless xxamp banu mam, as per his suggestion Candidate Communication And Performance Is Good,She is still woking partime in liabrary aslo her sustain is doubt', 104, '0000-00-00 00:00:00', 1),
(18453, 19838, 53, 5, 0, 'I asked him to wait for second round but he left', 104, '0000-00-00 00:00:00', 1),
(18454, 19839, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18455, 19813, 138, 7, 0, 'Good Communication skills and Over all Technical skills medium and Need to train financial things and Need to negotiate salary package', 18, '2024-06-22 07:06:19', 1),
(18456, 19822, 59, 3, 0, 'Selected for RE roles Dm, team need to check in 7 dyas training and confirm', 19, '2024-06-24 10:09:15', 1),
(18457, 19846, 137, 7, 0, 'candidate past 8 years work other field , some personal reason to relave the company but voice is very good and approach also good exp takehome 15k so try for 7 days training', 112, '0000-00-00 00:00:00', 1),
(18458, 19845, 89, 5, 0, 'he remained silent interview', 112, '0000-00-00 00:00:00', 1),
(18459, 19848, 105, 7, 0, 'Her Communication And Performance Is Good.Will Check With Her In The Training Period ', 112, '0000-00-00 00:00:00', 1),
(18460, 19850, 137, 7, 0, 'candidate past work 6 months tata dish company , telecallig work , communication is very good and past ctc is 13k to exp ctc 15k , payslip also inhand so i will check 7days training period', 112, '0000-00-00 00:00:00', 1),
(18461, 19856, 86, 4, 0, 'Selected for next round, Fresher, Good communication, Interested in marketing, Expected salary 20k take home.', 112, '0000-00-00 00:00:00', 1),
(18462, 19858, 71, 5, 0, 'Not fit for sales ', 112, '0000-00-00 00:00:00', 1),
(18463, 19855, 89, 5, 0, 'over thinking', 112, '0000-00-00 00:00:00', 1),
(18464, 19849, 57, 5, 0, 'Communication not good and she not interested for sales `\n', 112, '0000-00-00 00:00:00', 1),
(18465, 19854, 102, 5, 0, 'not interested in sales ', 112, '0000-00-00 00:00:00', 1),
(18466, 19859, 105, 5, 0, 'Candidate Communication And Pronunciation is Not Good', 112, '0000-00-00 00:00:00', 1),
(18467, 19842, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18468, 19847, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18469, 19844, 53, 5, 0, 'very slow, no bike', 112, '0000-00-00 00:00:00', 1),
(18470, 19853, 53, 7, 0, '50 50. She is Interested in voice process, having 1yr experience in part time job, But she is coming from long distance. Needs to check her distance', 112, '0000-00-00 00:00:00', 1),
(18471, 19860, 102, 5, 0, 'interested in non voice ', 112, '0000-00-00 00:00:00', 1),
(18472, 19856, 18, 7, 0, 'Met by Santosh and Manikandan. they agreed to give 20k take home net and I have spoken in call and confirmed it. Immedeate joine', 86, '2024-06-24 05:50:47', 1),
(18473, 19853, 59, 3, 0, 'Communication Ok have Intern Exp in calling MCom graduate open to travel 19kms down Can give a try kindly check and confirm the candidate in 7 days training', 53, '2024-06-24 06:20:07', 1),
(18474, 19848, 59, 3, 0, 'Selected for RE Role Need to train from the scratch fresher can give a try need to check in 7 days training\n', 105, '2024-06-24 06:54:58', 1),
(18475, 19846, 59, 1, 0, NULL, 137, '2024-06-25 10:15:51', 1),
(18476, 19850, 59, 3, 0, 'Communication Ok Can be trained in our roles career Gap due to accident need to analyse in 7 days and confirm', 137, '2024-06-25 10:20:40', 1),
(18477, 19833, 139, 4, 0, 'Selected for RM\nhaving exp in sales and collection\nimmediate joiner ', 112, '0000-00-00 00:00:00', 1),
(18478, 19862, 57, 5, 0, 'Candidate is not ok, unfit for sales,sustainability issue and distance long', 112, '0000-00-00 00:00:00', 1),
(18479, 19867, 139, 5, 0, 'Not fit for Sales', 112, '0000-00-00 00:00:00', 1),
(18480, 19875, 51, 4, 0, 'transferred this profile to porrselvan', 112, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(18481, 19865, 89, 5, 0, 'not fit for the job', 112, '0000-00-00 00:00:00', 1),
(18482, 19869, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18483, 19870, 137, 5, 0, 'candidate is coming  very long  and vry high expection , voice also not good so not fit for my team', 112, '0000-00-00 00:00:00', 1),
(18484, 19871, 86, 4, 0, 'Selected For next round\n', 112, '0000-00-00 00:00:00', 1),
(18485, 19874, 102, 5, 0, 'not suitable sales , interested in Non voice ', 112, '0000-00-00 00:00:00', 1),
(18486, 19876, 105, 5, 0, 'Candidate Intrested in Non voice process', 112, '0000-00-00 00:00:00', 1),
(18487, 19866, 105, 5, 0, 'Candidate Communication And Performance not like good , Also her voice is not legit', 112, '0000-00-00 00:00:00', 1),
(18488, 19813, 18, 1, 0, NULL, 138, '2024-06-25 02:38:48', 1),
(18489, 19833, 18, 7, 3, 'Selected for Gnanashekar Team, Immedeate Joiner. immedeate Joiner and dont have Laptop', 139, '2024-06-25 03:13:17', 1),
(18490, 19833, 60, 1, 0, NULL, 18, '2024-06-25 03:15:10', 1),
(18491, 19881, 102, 5, 0, 'fresher  interested in sales but sustainability doubt ', 112, '0000-00-00 00:00:00', 1),
(18492, 19879, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18493, 19880, 137, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18494, 19878, 89, 5, 0, 'no skill', 112, '0000-00-00 00:00:00', 1),
(18495, 19875, 140, 5, 0, 'No basic skills in sales ', 51, '2024-06-25 06:46:47', 1),
(18496, 19871, 18, 8, 0, 'Kindly Reschedule', 86, '2024-06-25 06:53:47', 1),
(18497, 19892, 137, 2, 0, 'candidate  isok but go for other interview so hold the candidate', 112, '0000-00-00 00:00:00', 1),
(18498, 19891, 140, 5, 0, 'no Experience in sales', 112, '0000-00-00 00:00:00', 1),
(18499, 19888, 109, 5, 0, 'she was looking into stock broking vacancy and holding another offer, Sustainability doubt.', 112, '0000-00-00 00:00:00', 1),
(18500, 19897, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18501, 19889, 138, 7, 0, 'fresher Candidate 2024 passed out\nCommunication skills Below Average\nMathematics Skills  Below Average \nTecinancal Skills Average\nSalary expected 15K\nFinally need to train Properly and candidate status selected', 112, '0000-00-00 00:00:00', 1),
(18502, 19889, 18, 5, 0, 'Not fit for Sales', 138, '2024-06-26 11:32:48', 1),
(18503, 19893, 105, 5, 0, 'Candidate Communication And Performance Is Good,But Her Sustainity Is Very Doubt Due To She Is Planning For MBA In Current Year', 112, '0000-00-00 00:00:00', 1),
(18504, 19895, 19, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(18505, 19899, 102, 7, 0, 'shortlist for team once check and update DOJ', 112, '0000-00-00 00:00:00', 1),
(18506, 19901, 89, 5, 0, 'he has come here because he did not get the job. but not intersted this job', 112, '0000-00-00 00:00:00', 1),
(18507, 19894, 89, 5, 0, 'over thinking', 112, '0000-00-00 00:00:00', 1),
(18508, 19902, 57, 5, 0, 'Candidate Is Unfit For Sales, Communication Not Good', 112, '0000-00-00 00:00:00', 1),
(18509, 19904, 137, 7, 0, 'candidate voice good and communication also good very blod voice and interest to sales and voice process so i will tr to 7 days trainning period', 112, '0000-00-00 00:00:00', 1),
(18510, 19900, 57, 5, 0, 'candidate is unfit for sales, communication not good', 112, '0000-00-00 00:00:00', 1),
(18511, 19906, 51, 4, 0, 'ok', 112, '0000-00-00 00:00:00', 1),
(18512, 19903, 53, 5, 0, 'Not intrested to go outside', 112, '0000-00-00 00:00:00', 1),
(18513, 19905, 140, 4, 0, 'Was on hold, now pushing for second round', 112, '0000-00-00 00:00:00', 1),
(18514, 19912, 105, 5, 0, 'Candidate Intrested in non-voice process also he is not Rare To Adapt for sales', 112, '0000-00-00 00:00:00', 1),
(18515, 19908, 19, 2, 0, 'remain me on 1st july', 112, '0000-00-00 00:00:00', 1),
(18516, 19913, 89, 5, 0, 'not fit for the job', 112, '0000-00-00 00:00:00', 1),
(18517, 19906, 29, 7, 3, 'Sarath Team', 51, '2024-06-26 06:02:46', 1),
(18518, 19763, 60, 1, 0, NULL, 18, '2024-06-26 07:16:15', 1),
(18519, 19899, 60, 1, 0, NULL, 102, '2024-06-27 11:07:09', 1),
(18520, 19918, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18521, 19887, 53, 5, 0, 'No bike not Interested in Field sales ', 112, '0000-00-00 00:00:00', 1),
(18522, 19922, 74, 5, 0, 'not fit', 112, '0000-00-00 00:00:00', 1),
(18523, 19923, 105, 5, 0, 'Candidate Communication and performance is not like good, his attire is also not good, other than candidate said his minus is never attach any one , so he never addaptable for sales', 112, '0000-00-00 00:00:00', 1),
(18524, 19919, 137, 5, 0, 'candidate just few months only working after that go for other copany and voice also not good so not fit for my team ', 112, '0000-00-00 00:00:00', 1),
(18525, 19924, 138, 5, 0, 'Not Fit to sales and Communication skills very worst and he expect salary 25K so thats why reject this candidate', 112, '0000-00-00 00:00:00', 1),
(18526, 19927, 102, 5, 0, 'interested in it related ', 112, '0000-00-00 00:00:00', 1),
(18527, 19925, 102, 5, 0, 'interested non voice ', 112, '0000-00-00 00:00:00', 1),
(18528, 19926, 57, 5, 0, 'Over all 3yrs Experience, Sustainability issues, appearance not good', 112, '0000-00-00 00:00:00', 1),
(18529, 19928, 137, 5, 0, 'candidate is so fear and trembling voice and and very long distance so not fit for my team', 112, '0000-00-00 00:00:00', 1),
(18530, 19929, 89, 5, 0, 'no skill', 112, '0000-00-00 00:00:00', 1),
(18531, 19930, 89, 5, 0, 'he has a lot of Interest in the it field. ', 112, '0000-00-00 00:00:00', 1),
(18532, 19932, 71, 5, 0, 'He is not fit for sales ', 112, '0000-00-00 00:00:00', 1),
(18533, 19934, 51, 5, 0, 'IT candidate', 112, '0000-00-00 00:00:00', 1),
(18534, 19935, 31, 5, 3, 'worked in inbound calls area, very low voice and no confident on her voice.  ', 112, '0000-00-00 00:00:00', 1),
(18535, 19904, 59, 3, 0, 'Selected for Giri Team Interviewed in job fair Can be trained in our roles kindly analyse the candidate in 7 days and confirm', 137, '2024-06-27 05:16:49', 1),
(18536, 19937, 86, 4, 0, 'Selected for next round.', 112, '0000-00-00 00:00:00', 1),
(18537, 19936, 57, 5, 0, 'cANDIDATE IS OK BUT SALARY EXPECTATION HIGH, 6M ONLY EXPERIENCE. REJECT', 112, '0000-00-00 00:00:00', 1),
(18538, 19937, 29, 7, 3, 'Selected for mani team, reference candi.. check resume for performance hike', 86, '2024-06-28 12:05:57', 1),
(18539, 19943, 89, 5, 0, 'more playfulness ', 112, '0000-00-00 00:00:00', 1),
(18540, 19944, 89, 5, 0, 'no basic knowledge', 112, '0000-00-00 00:00:00', 1),
(18541, 19941, 139, 4, 0, 'Fresher\nselected for next round\nGood communication skill', 112, '0000-00-00 00:00:00', 1),
(18542, 19945, 19, 5, 0, 'location too long so not fit for the job', 112, '0000-00-00 00:00:00', 1),
(18543, 19941, 18, 7, 0, 'Fresher candidate with immed Joining for gnanashekar team. Please negitiate the salary', 139, '2024-06-28 05:15:32', 1),
(18544, 19941, 60, 1, 0, NULL, 18, '2024-06-28 05:19:01', 1),
(18545, 19951, 89, 5, 0, 'In the interview he remained silent', 104, '0000-00-00 00:00:00', 1),
(18546, 19952, 105, 5, 0, 'Interviewed by banu mam ,as discussion with banu mam, her  sugesstion  is candidate comes from thirunindravur ,Also candidate not performed well in the interview', 104, '0000-00-00 00:00:00', 1),
(18547, 19953, 31, 4, 4, 'Candidate worked with kannada and telugu customer base.  Since he met with an accident he wont drive', 104, '0000-00-00 00:00:00', 1),
(18548, 19954, 19, 5, 0, 'expect high salary', 104, '0000-00-00 00:00:00', 1),
(18549, 19956, 109, 5, 0, 'Communication is not ok, sustainability doubt.', 104, '0000-00-00 00:00:00', 1),
(18550, 19906, 59, 3, 0, 'Selected foir Sarath Team RM Role Need to analyse and confirm in the 7 days training', 29, '2024-07-01 10:41:12', 1),
(18551, 19957, 19, 7, 0, 'Reference by Madhu and She is working in Hdfc Loan Process ', 104, '0000-00-00 00:00:00', 1),
(18552, 19961, 139, 4, 0, 'Selected for RM\nFresher \nwill try for RM profile ', 104, '0000-00-00 00:00:00', 1),
(18553, 19962, 105, 7, 0, 'Candidate performance and communication is good ,but long distance will check with her in the training period', 104, '0000-00-00 00:00:00', 1),
(18554, 19963, 19, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(18555, 19964, 102, 5, 0, 'Already part time working in Customer support so, interested in non voice ', 104, '0000-00-00 00:00:00', 1),
(18556, 19965, 53, 5, 0, 'No Confidence on speech ', 104, '0000-00-00 00:00:00', 1),
(18557, 19970, 57, 7, 0, 'Candidats is ok.communication good .pls confirm the joining date xxamp Salary.', 104, '0000-00-00 00:00:00', 1),
(18558, 19980, 137, 5, 0, 'candidate previously work some years but not vocie process ad voice also not good and very long distance so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(18559, 19976, 19, 2, 0, 'kindly hold', 104, '0000-00-00 00:00:00', 1),
(18560, 19973, 57, 5, 0, 'Communication Not well and he looking iT jobs , Team Reference ', 104, '0000-00-00 00:00:00', 1),
(18561, 19978, 105, 5, 0, 'candidate performance is not good ,Then his communication little bit slowly and voice is not good.candidate more intrested in iT Job', 104, '0000-00-00 00:00:00', 1),
(18562, 19968, 137, 2, 0, 'candidate voice and communication is ok but distance is long so she will relocate on near by afte i will move to hr round', 104, '0000-00-00 00:00:00', 1),
(18563, 19969, 89, 5, 0, '50% ok. but Doubt', 104, '0000-00-00 00:00:00', 1),
(18564, 19977, 102, 5, 0, 'Performance good but communication level and voice is low ', 104, '0000-00-00 00:00:00', 1),
(18565, 19970, 59, 3, 0, 'Communication Ok fresher seems not much comfort with the timings Need to analyse and confirm in 7 days training', 57, '2024-07-01 02:34:00', 1),
(18566, 19974, 140, 5, 0, 'Rejected due to   no convincing skills', 104, '0000-00-00 00:00:00', 1),
(18567, 19986, 19, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(18568, 19959, 53, 7, 0, '50/50, have part time experience but dnt have proof for his salry, exp 18k we can provide max 16k, Will try', 104, '0000-00-00 00:00:00', 1),
(18569, 19975, 51, 5, 0, 'not ok', 104, '0000-00-00 00:00:00', 1),
(18570, 19979, 138, 7, 0, 'Sales Experience in Bajaj DL 2 years and HDB Finance 1 month and Mathematics Skills good... English Communication Medium and Technical Skills Average and Negotiated Salary 18K Gross and Need to discuss only sriram sir', 104, '0000-00-00 00:00:00', 1),
(18571, 19981, 89, 5, 0, 'he could not even give a self intro', 104, '0000-00-00 00:00:00', 1),
(18572, 19982, 137, 5, 0, 'no skill , no communication skill , and she only just attend  the interview , not interest to working so notfit for my team', 104, '0000-00-00 00:00:00', 1),
(18573, 19983, 137, 5, 0, 'candidate only looking for nonvoice process only and high expection so  not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18574, 19985, 57, 5, 0, 'candidate communication not good. unfit for sales.', 104, '0000-00-00 00:00:00', 1),
(18575, 19984, 53, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(18576, 19959, 59, 1, 0, NULL, 53, '2024-07-01 05:54:37', 1),
(18577, 19962, 59, 3, 0, 'Communication Ok Fresher but too long distance sustainability doubts a lot need to check in 7days and confirm Open for travel', 105, '2024-07-01 06:38:30', 1),
(18578, 19957, 59, 1, 0, NULL, 19, '2024-07-01 08:00:58', 1),
(18579, 19961, 18, 5, 0, 'Rejected as low interaction skill and sales is not suitable for him', 139, '2024-07-02 10:03:01', 1),
(18580, 19979, 18, 7, 0, 'Selected for Jagadeesh Team.  Ready to Join on 7th . 2.2CTC given', 138, '2024-07-02 11:26:57', 1),
(18581, 19989, 105, 5, 0, 'Candidate Communication is Little Bit Only Good .but she Performed very slowly ', 104, '0000-00-00 00:00:00', 1),
(18582, 19990, 19, 2, 0, 'Kindly hold will update shortly', 104, '0000-00-00 00:00:00', 1),
(18583, 20001, 139, 4, 0, 'Selected for Next round\ngood sales and communication skill, \nself motivated person\nSelected for RM role', 104, '0000-00-00 00:00:00', 1),
(18584, 20001, 18, 7, 3, 'Shortlisted for Gnanashekar team. Immedeate Joiner . Offered 2.6L CTC', 139, '2024-07-02 03:02:29', 1),
(18585, 20001, 60, 1, 0, NULL, 18, '2024-07-02 04:38:47', 1),
(18586, 19995, 137, 5, 0, 'candidate not dress code and only looking for telecalling wor only no go for out side call so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18587, 19999, 89, 5, 0, 'spoken words are not clear', 104, '0000-00-00 00:00:00', 1),
(18588, 20009, 57, 5, 0, 'candidats is not ok for sales profile, 2 years She have some health issues.over all 1month only she doing int. ', 104, '0000-00-00 00:00:00', 1),
(18589, 19979, 60, 1, 0, NULL, 18, '2024-07-03 12:52:06', 1),
(18590, 20010, 31, 4, 4, 'candidate searching job after 4 yrs gap to support family.  okay with her calling flow.  ', 104, '0000-00-00 00:00:00', 1),
(18591, 19908, 19, 2, 0, 'Kindly hold', 19, '2024-07-03 01:10:31', 1),
(18592, 20014, 19, 7, 0, 'learn quickly and she speaks good', 104, '0000-00-00 00:00:00', 1),
(18593, 19908, 19, 5, 0, 'she is not working more then 6 month', 19, '2024-07-03 01:26:24', 1),
(18594, 20008, 53, 7, 0, 'Selected. Fresher, Good in Convincing , very bold. Please cnfrm the DOJ ', 104, '0000-00-00 00:00:00', 1),
(18595, 20008, 59, 3, 0, 'Communication Ok Fresher 2yrs gap can be trained in our roles need to analyse in 7 days training', 53, '2024-07-03 02:41:59', 1),
(18596, 20011, 71, 4, 0, 'he is Having experienced direct sales marketing in car showroom,  convenience skills expected salary 22000 take home ', 104, '0000-00-00 00:00:00', 1),
(18597, 20015, 137, 5, 0, 'CANDIDATE ONLY INTEREST FOR IT ONLY AND NEED NON VOICE PROCES WORK FOR SHORT TIME , SO NOT FIT FOR MY TEAM ', 104, '0000-00-00 00:00:00', 1),
(18598, 20006, 138, 7, 0, 'Fresher Candidate but 1 month experience in HDB CD loan tele sales Process and Communication Skills average and Technical skills medium and Good Mathematic skills like good attitude so CTC disclosed Around  2 lakhs so finally candidate status is Selected and also discussed with Sriram sir so he approved that as well as', 104, '0000-00-00 00:00:00', 1),
(18599, 20014, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in 7 days internal team reference', 19, '2024-07-03 03:00:50', 1),
(18600, 19990, 19, 5, 0, 'look like introvert ,learn slowly', 19, '2024-07-03 03:01:42', 1),
(18601, 19235, 19, 7, 0, 'fresher she speaks well so lets try 7 days and ctc 14k or in hand 13k', 104, '0000-00-00 00:00:00', 1),
(18602, 20010, 29, 8, 0, 'didnt meet for 2nd round', 31, '2024-07-03 03:09:57', 1),
(18603, 20016, 105, 7, 0, 'candidate performed well in the interview ,Also communication is good.will check with her performance in the training period.', 104, '0000-00-00 00:00:00', 1),
(18604, 20011, 18, 7, 3, 'Suriyaprakash Selected for Santhosh Team. Ready to Join Next Monday (8 July 2024) Offered CTC is 2.65L.', 71, '2024-07-03 03:12:53', 1),
(18605, 19953, 29, 7, 2, 'GK team, Can build him, given task for 1.50 lac 10k mf within July for 3.2 lac to 3.5 lac ctc', 31, '2024-07-03 03:17:19', 1),
(18606, 20006, 60, 1, 0, NULL, 138, '2024-07-03 03:18:57', 1),
(18607, 19235, 59, 3, 0, 'Communication Ok  can be trained in our role Open for telesales but she may switch later need to analyse in 7 days training', 19, '2024-07-03 03:35:45', 1),
(18608, 20016, 59, 3, 0, 'Communication Ok have exp in Telecalling matrimony exp 6 months need to train a lot in our domain can give a try', 105, '2024-07-03 03:45:37', 1),
(18609, 20011, 60, 1, 0, NULL, 18, '2024-07-03 03:52:08', 1),
(18610, 19892, 59, 1, 0, NULL, 137, '2024-07-03 05:16:02', 1),
(18611, 19892, 137, 7, 0, 'candidate voice , communiation all good sir , candidate go for other interview so thatreason to hold the candidate  , so i will try to 7 days training period', 137, '2024-07-03 05:16:02', 1),
(18612, 20020, 138, 7, 0, 'Already experience in 8 years at Ashok leyland Customer support and relieved from company 2024 jan then Communication above average and Technical Skills Average and Purely Good attitude and finally Candidate status is selected ', 104, '0000-00-00 00:00:00', 1),
(18613, 20020, 18, 7, 0, 'Jagadeesh met this candidate. Offered 3.6L CTC and ready to join on 8th Monday.', 138, '2024-07-04 11:23:41', 1),
(18614, 20019, 140, 4, 0, 'Good communication skill, looks neat, have to train and see his work progress.', 104, '0000-00-00 00:00:00', 1),
(18615, 20021, 102, 5, 0, 'he is interested in sales but voice process not suitable becuz voice and convincing level low\n', 104, '0000-00-00 00:00:00', 1),
(18616, 20022, 57, 7, 0, 'candidate is ok . communication xxamp Convincing skills good.provide 15k salary. i have promised 6month after performance based hike.confirm the joining date.do the needful', 104, '0000-00-00 00:00:00', 1),
(18617, 20019, 29, 7, 3, 'Selected for Porrselvan team, Reference Candidate, We have to train and mold the candidate, check his skills and interest level in 7 days and confirm.', 140, '2024-07-04 02:59:12', 1),
(18618, 20026, 140, 4, 0, 'very bold and clarity in his words, having little experince in sales, can train and make him fit for RM role.', 104, '0000-00-00 00:00:00', 1),
(18619, 20017, 74, 5, 0, 'expected too high, over attitude, dont have maturity, irdai exam completed', 104, '0000-00-00 00:00:00', 1),
(18620, 20022, 59, 3, 0, 'Communication Ok fresher his interest is in finance (accounts ) sustainability need to check focusing much on his take home salary too need to check in 7 days and confirm', 57, '2024-07-04 03:54:09', 1),
(18621, 20020, 60, 1, 0, NULL, 18, '2024-07-04 03:54:54', 1),
(18622, 20026, 29, 7, 3, 'Selected for Porrselvan, is under notice period till 2nd week Aug, Can offer him and follow.. Given a task for 2 lac life and 10k MF within 40 days of joining - then can increase 20k net sal to 24k net sal.', 140, '2024-07-04 05:20:03', 1),
(18623, 20019, 59, 3, 0, 'For porrselvam RM Role Communication Ok BCA graduate Fresher for Sales Long run doubts Need to analyse in 7 days and confirm he may switch if he is getting opportunity in IT', 29, '2024-07-04 07:55:32', 1),
(18624, 20026, 59, 1, 0, NULL, 29, '2024-07-04 07:59:59', 1),
(18625, 19953, 59, 3, 0, 'Communication Good Can be trained in our insurance role Previous exp no sustainability but has reasons can give a try and analyse in training', 29, '2024-07-04 08:07:26', 1),
(18626, 19856, 59, 3, 0, 'Selected for Ops Renewal Role Need to analyse in 7 days and confirm', 18, '2024-07-05 03:57:25', 1),
(18627, 20028, 139, 5, 0, 'Rejected, \ndue to fake updates given\nnot fit for sales', 104, '0000-00-00 00:00:00', 1),
(18628, 20029, 139, 4, 0, 'Selected for next round, Rm profile, \ngood communication skills, and sales knowledge, \nbased upon interview will try for Rm ', 104, '0000-00-00 00:00:00', 1),
(18629, 20030, 139, 4, 0, 'Selected for next round Rm profile, relevant filed exp, already worked in Shriram life insurance, having good sales skill, ', 104, '0000-00-00 00:00:00', 1),
(18630, 20034, 53, 7, 0, 'Selected. Gud in communication have convincing skill. She is ready to join on 15th july .', 104, '0000-00-00 00:00:00', 1),
(18631, 20032, 137, 7, 0, 'candidate voice and communication is good , after joint for mba in corase, so just try for 7 days trainning', 104, '0000-00-00 00:00:00', 1),
(18632, 20035, 51, 5, 0, 'Not interested in field work . looking for system based work', 104, '0000-00-00 00:00:00', 1),
(18633, 20058, 31, 4, 4, 'Candidate had some sales experience in product sales as well campaign marketing.  forward to 2nd round with Gaurav', 104, '0000-00-00 00:00:00', 1),
(18634, 20057, 138, 5, 0, 'Not convinced candidate due to Working time period below 6 month for 2 companies one is 5 month another one is 3 month but she looking Salary hike only not sales interest and also she experienced Teaching job so not fit this candidate for sales ', 104, '0000-00-00 00:00:00', 1),
(18635, 20054, 138, 5, 0, 'Previously 1 year Experience in ICICI Lambord and then Communication and Technical Skills are below average and Work time also not convinced so not preferable this candidate in our system', 104, '0000-00-00 00:00:00', 1),
(18636, 20053, 139, 4, 0, 'Selected for Rm profile,\nHaving relevant filed exp, \nworked in ICICI Lambord, \nHaving sales skills\nwill try for Rm Profile ', 104, '0000-00-00 00:00:00', 1),
(18637, 20050, 51, 5, 0, 'Not Interested In Field Work . Looking For System Based Work', 104, '0000-00-00 00:00:00', 1),
(18638, 20043, 102, 7, 0, 'good communication level and Convincing Skills better will try 7days training ', 104, '0000-00-00 00:00:00', 1),
(18639, 20047, 137, 5, 0, 'candidate only 1 year working and after try for marriage  , and voice and communication is not good , mainly  both of joint in the company or else notjoint s not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18640, 20046, 19, 5, 0, 'not fit for tele sales,she is not ready to speak', 104, '0000-00-00 00:00:00', 1),
(18641, 20045, 89, 5, 0, 'he Donxquott even know how to speak basic indro ', 104, '0000-00-00 00:00:00', 1),
(18642, 20044, 140, 5, 0, 'Not attended second round, went from office without any information', 104, '0000-00-00 00:00:00', 1),
(18643, 20040, 53, 5, 0, 'Long distance, Completed eng and his experience related is to that field, Fresher for telecalling, but he wont suit for telecalling and field process', 104, '0000-00-00 00:00:00', 1),
(18644, 20038, 140, 5, 0, 'Not attended second round, left from office without prior information', 104, '0000-00-00 00:00:00', 1),
(18645, 20036, 138, 7, 0, 'Fresher Candidate fit to sales job , good Communication Skills and Techincal skills also good  finally status is selected but need to negotiate CTC with Sriram Sir', 104, '0000-00-00 00:00:00', 1),
(18646, 20033, 57, 7, 0, 'Candidate is ok. communication good and convincing skill good.confirm the joining xxamp Salary', 104, '0000-00-00 00:00:00', 1),
(18647, 20036, 18, 7, 3, 'Perikson Albin Jose Selected for Jagadeesh Team. Fresher and Immediate Joiner with good sales skills. Offered 2.53L as CTC.', 138, '2024-07-05 05:34:49', 1),
(18648, 20036, 60, 1, 0, NULL, 18, '2024-07-05 05:40:10', 1),
(18649, 20029, 18, 7, 3, 'Sonali Selected for Gnanashekar team with 2.9L CTC. Able to Join next Tuesday. She does not have account proof for exisitng Salary', 139, '2024-07-05 05:45:03', 1),
(18650, 20030, 18, 7, 0, 'Subbalakshmi Selected for Gnanashekar team with 3.25 CTC. Able to Join Immediately and has Laptop. Reference Candidate and need to filter her in 1st week', 139, '2024-07-05 05:46:00', 1),
(18651, 20033, 59, 3, 0, 'Communication Ok she is ok for telesales in half mind Focus in non voice process Can give a try  sustainability need to look', 57, '2024-07-05 05:46:44', 1),
(18652, 20053, 18, 7, 0, 'Vijayabharathi Selected for Gnanashekar team with 18k Take home. Has Insurnacne experience and ready to join on Modnay', 139, '2024-07-05 05:48:54', 1),
(18653, 20039, 89, 5, 0, 'not fit for the job', 104, '0000-00-00 00:00:00', 1),
(18654, 20032, 59, 3, 0, 'Communication Ok fresher for our roles can give a try need to check in 7 days training', 137, '2024-07-05 06:05:49', 1),
(18655, 20029, 60, 1, 0, NULL, 18, '2024-07-05 06:06:55', 1),
(18656, 20030, 60, 1, 0, NULL, 18, '2024-07-05 06:07:39', 1),
(18657, 20059, 19, 5, 0, 'well settled person,father working in dubai', 104, '0000-00-00 00:00:00', 1),
(18658, 20034, 59, 3, 0, 'Communication Can be trained in our roles Fresher ', 53, '2024-07-05 06:26:03', 1),
(18659, 20058, 29, 7, 3, 'GK team, ', 31, '2024-07-05 07:09:32', 1),
(18660, 20043, 59, 3, 0, 'Selected for RE role,can be trained in our roles fresher need to analyse and confirm in the training period', 102, '2024-07-06 11:41:23', 1),
(18661, 20063, 71, 4, 0, 'Having exp 2.5 years in sales. Sales skills also good move to next round ', 104, '0000-00-00 00:00:00', 1),
(18662, 20064, 140, 4, 0, 'good work experience and telecalling experince, can hire and train in insurance feild', 104, '0000-00-00 00:00:00', 1),
(18663, 20061, 139, 4, 0, 'Selected for Next round RM Profile\nDont have sales exp\nbut good communication skill\nwill try for rm profile ', 104, '0000-00-00 00:00:00', 1),
(18664, 20066, 89, 5, 0, 'not Interested this job ', 104, '0000-00-00 00:00:00', 1),
(18665, 20067, 102, 5, 0, 'field not interested ', 104, '0000-00-00 00:00:00', 1),
(18666, 20065, 19, 5, 0, 'not intrested in sales', 104, '0000-00-00 00:00:00', 1),
(18667, 20068, 140, 4, 0, 'good sales knowledge and looking to earn higher incentive', 104, '0000-00-00 00:00:00', 1),
(18668, 20069, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(18669, 20071, 102, 5, 0, 'low communication level and convincing skill is low then right now looking for one job ', 104, '0000-00-00 00:00:00', 1),
(18670, 20070, 137, 5, 0, 'candidatepreviously work for non voice but interest to voice process but voice and comuncatio is very low so not fot for my team ', 104, '0000-00-00 00:00:00', 1),
(18671, 20053, 60, 1, 0, NULL, 18, '2024-07-06 04:32:04', 1),
(18672, 20097, 86, 4, 0, 'Good communication, And already experienced in Sales. Selected for next round\n', 104, '0000-00-00 00:00:00', 1),
(18673, 20087, 105, 5, 0, 'Candidate performance is good .but her communication and reply is very slow', 104, '0000-00-00 00:00:00', 1),
(18674, 20097, 18, 7, 3, 'Ashok Ashwin Kumar Selected for Manikandan Team. Ready to Join on Thursday. Offers 3.25L as CTC and has Laptop.', 86, '2024-07-08 02:15:21', 1),
(18675, 20089, 57, 5, 0, 'Candidate is unfit for sales process, communication not Good,\nExpectation 18k ', 104, '0000-00-00 00:00:00', 1),
(18676, 20097, 60, 1, 0, NULL, 18, '2024-07-08 03:59:27', 1),
(18677, 20079, 138, 5, 0, 'Communication skills is poor and Technical skills also same so candidate not fit for sales field so status is rejected ', 104, '0000-00-00 00:00:00', 1),
(18678, 20083, 105, 5, 0, 'candidate performance and communication is not good.also his voice xxamp pronunciation is very poor', 104, '0000-00-00 00:00:00', 1),
(18679, 20084, 137, 5, 0, 'candidate very long distance and communication also not good after try for non voice process also so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18680, 20091, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18681, 20101, 140, 5, 0, 'No sales knowledge and skills', 104, '0000-00-00 00:00:00', 1),
(18682, 20088, 74, 5, 0, 'expected high', 104, '0000-00-00 00:00:00', 1),
(18683, 19567, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18684, 20063, 18, 7, 0, 'Sewtha Selected for Santhosh team. reaqdy to Join on Friday. Asking 30k take home but please negotiate for a lesser amount', 71, '2024-07-09 12:39:06', 1),
(18685, 20105, 89, 7, 0, 'Seleted. He can be  analysed during the seven-day training period. ', 104, '0000-00-00 00:00:00', 1),
(18686, 20109, 57, 7, 0, 'candidate is 50/50 he have exp 6m Golden enterprise star health. roll - Qc \npls check suite or not \nconfirm the joining date', 104, '0000-00-00 00:00:00', 1),
(18687, 20106, 105, 5, 0, 'candidate communication slang and performance is not good , also his attire is very poor (weared jeen pant and casule shirt)', 104, '0000-00-00 00:00:00', 1),
(18688, 20108, 19, 5, 0, 'Intrested and work experience in mechanical field,not fit for sales And his Convenience skill is low', 104, '0000-00-00 00:00:00', 1),
(18689, 20110, 137, 5, 0, 'candidate all ok but ery long distance and need to log out for 6.30 for every day so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18690, 20111, 105, 5, 0, 'candidate doesxquott not performed well in the interaction .also she is little bit  childish behaviour then candidate told she have lazy behaviour character', 104, '0000-00-00 00:00:00', 1),
(18691, 20112, 102, 5, 0, 'interview performance level is good but sustainability doubt buz last 3month working tele calling he is abscond and salary exception so high ', 104, '0000-00-00 00:00:00', 1),
(18692, 20064, 29, 7, 3, 'Porrselvan team, per hike - 1 lac life and 10k SIP in july, once done can increase to 3.6 lac from aug', 140, '2024-07-09 01:34:05', 1),
(18693, 20068, 29, 7, 3, 'Porrselvan Team, Salary 18k Net suggested and approved,,, Performance Hike - 2 Lac and 15k SIP before Aug 24, can hike 3k ( 21K) salary,', 140, '2024-07-09 01:34:40', 1),
(18694, 20115, 138, 7, 0, 'Communication Skills and Mathematic Skills are Good... Personal attutide also fine finally skills also good but we need to Negotiate only salary... so move to Sriram sir and Decide', 104, '0000-00-00 00:00:00', 1),
(18695, 20114, 139, 4, 0, 'Selected for Rm profile\nhaving sales exp 7 month in product selling \nhaving Convensing skills,\nwill try for rm profile\nsalary part need to negotiate ', 104, '0000-00-00 00:00:00', 1),
(18696, 19627, 71, 5, 0, 'NOT FIT FOR THE ROLE', 104, '0000-00-00 00:00:00', 1),
(18697, 20061, 18, 5, 0, 'Ok Candidate and new for sales and having doubt whether our concpet shall be sutiable for him', 139, '2024-07-09 03:19:25', 1),
(18698, 20116, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18699, 20117, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18700, 20118, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18701, 20105, 59, 3, 0, 'Selected for RE Babu Team Communication Ok fresher for telesales not interested in core IT Can give a try and check', 89, '2024-07-09 05:38:41', 1),
(18702, 20113, 109, 5, 0, 'She Was Not Comfortable With Tamil', 104, '0000-00-00 00:00:00', 1),
(18703, 20114, 18, 7, 0, 'Selected for Gananshekar Team. Immedeate Joiner. Offered 3.5L CTC ', 139, '2024-07-10 11:55:39', 1),
(18704, 19937, 59, 1, 0, NULL, 29, '2024-07-10 12:41:46', 1),
(18705, 20064, 59, 3, 0, 'Selected for Porrselvan Team Verified the documents Previous exp JD seems to be doubted Even discussed with Gaurav Sir and based on the approval proceeding with the employment', 29, '2024-07-10 12:43:40', 1),
(18706, 20058, 59, 1, 0, NULL, 29, '2024-07-10 12:46:07', 1),
(18707, 20122, 19, 7, 0, 'sELECTED JOB NEEDED PERSON SO LETS TRY 7 DAYS TRAINING SESSION', 104, '0000-00-00 00:00:00', 1),
(18708, 20125, 138, 7, 0, 'Experienced in Sales Department around 2 to 3 years Excellent Communication skills and Mathematics skills are average and Overall Attitude also good so finally need to negotiate with sriram sir for salary package', 104, '0000-00-00 00:00:00', 1),
(18709, 20126, 140, 4, 0, 'Can train him and see his capability in sales', 104, '0000-00-00 00:00:00', 1),
(18710, 20129, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18711, 20130, 102, 5, 0, 'interview performance level average and looking for customer support team not interested sales ', 104, '0000-00-00 00:00:00', 1),
(18712, 20115, 18, 5, 0, 'The candidate is not suitable for insurnacne sales', 138, '2024-07-10 02:35:59', 1),
(18713, 20132, 51, 5, 0, 'She didnxquott came for 2nd round\n', 104, '0000-00-00 00:00:00', 1),
(18714, 20125, 18, 7, 3, 'Selected for Jagadeesh team. Ready to Join next monday. But her current CTC is 4.2L and expected 4.7. Told that shall give the same cTC and set a target for 3 months and 6 months and commited to revise over accomplishment based on her perfomace', 138, '2024-07-10 02:50:50', 1),
(18715, 20137, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18716, 20122, 59, 3, 0, 'Communication Ok Fresher for our roles Need to train a lot from scratch should check and confirm in 7 days', 19, '2024-07-10 03:09:24', 1),
(18717, 20142, 140, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18718, 20142, 139, 4, 0, 'Selected for next round\nrm profile\nhaving 2.5 yr exp in telesales\ngood communication skill\nexp sal 33 k need to negotiate \nimmediate joiner ', 104, '0000-00-00 00:00:00', 1),
(18719, 20141, 138, 5, 0, 'Rejected\n', 104, '0000-00-00 00:00:00', 1),
(18720, 20140, 140, 4, 0, 'Already Experienced and performed well in interview', 104, '0000-00-00 00:00:00', 1),
(18721, 20133, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(18722, 20063, 60, 1, 0, NULL, 18, '2024-07-10 03:51:12', 1),
(18723, 20125, 60, 1, 0, NULL, 18, '2024-07-10 03:56:15', 1),
(18724, 20121, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18725, 20142, 18, 9, 0, 'Refix and confrim', 139, '2024-07-10 04:23:44', 1),
(18726, 20068, 59, 3, 0, 'For RM role Have 4 months Exp in Axis Can give a try in our roles need to check and confirm in 7 days', 29, '2024-07-10 04:32:42', 1),
(18727, 20114, 60, 1, 0, NULL, 18, '2024-07-10 04:46:42', 1),
(18728, 20138, 131, 4, 0, 'Good communication and confident level can process for next', 126, '0000-00-00 00:00:00', 1),
(18729, 20126, 29, 7, 3, 'Porrselvan Team, Sal 20k, task - 2 lac life and 15k MF before 31st Aug, incre to 23k Net in Sept', 140, '2024-07-10 05:30:03', 1),
(18730, 20140, 29, 7, 3, 'Porrselvan team, 3.8 lac ctc, ( Exp 2.5 years in for 5.8 lac in bijus )', 140, '2024-07-10 05:30:54', 1),
(18731, 20138, 30, 7, 4, 'confident level its good previous experience in inside salaes but she will ok field also suggested ctc 4.5lac immediate joining', 131, '2024-07-10 05:30:59', 1),
(18732, 20139, 131, 4, 0, 'Good Communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(18733, 20121, 147, 7, 0, 'Good Communication and confident level', 131, '2024-07-10 06:17:52', 1),
(18734, 20139, 147, 7, 0, 'Good communication and confident level can process for further', 131, '2024-07-10 06:18:47', 1),
(18735, 15818, 109, 5, 0, 'Not cleared apptitude', 104, '0000-00-00 00:00:00', 1),
(18736, 20121, 59, 3, 0, 'Communication Ok Fresher Need to train alot in our roles Can give a try and analyse in 7 days training', 147, '2024-07-10 06:32:03', 1),
(18737, 20139, 59, 1, 0, NULL, 147, '2024-07-10 06:33:52', 1),
(18738, 20134, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18739, 20135, 131, 5, 0, 'Lack of communication and confident', 126, '0000-00-00 00:00:00', 1),
(18740, 20136, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18741, 20144, 19, 5, 0, 'not try to speak about the sales and basic sales', 104, '0000-00-00 00:00:00', 1),
(18742, 20138, 60, 1, 0, NULL, 30, '2024-07-11 11:51:13', 1),
(18743, 20145, 89, 5, 0, 'he Doesnxquott work here for long days ', 104, '0000-00-00 00:00:00', 1),
(18744, 20146, 102, 5, 0, 'already father and sister working in sales field but not interested in sales interested in non voice ', 104, '0000-00-00 00:00:00', 1),
(18745, 20149, 137, 5, 0, 'candidate voice and commuication is ok but distance is very long and exp is only 16k above past 15 company interview attend but rejected  all  company reason salary package only  so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18746, 20109, 59, 1, 0, NULL, 57, '2024-07-11 12:33:17', 1),
(18747, 20152, 102, 5, 0, 'he is professional dance not suit sales field ', 104, '0000-00-00 00:00:00', 1),
(18748, 20153, 137, 5, 0, 'candiate juslooking temporvery job only after that go for it realted job  so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18749, 20154, 57, 7, 0, 'Candidate is ok. he have 8m part exp instamart clg time. provide 15k salary and confirm the joining date.', 104, '0000-00-00 00:00:00', 1),
(18750, 20155, 51, 4, 0, 'Selected kindly check and let me know sir', 104, '0000-00-00 00:00:00', 1),
(18751, 20154, 59, 3, 0, 'Selected for RE role Fresher Need to train and analyse Can give a try Communication ok ', 57, '2024-07-11 01:10:13', 1),
(18752, 20148, 74, 5, 0, 'she is not fit for sales, have no clarity in voice ', 104, '0000-00-00 00:00:00', 1),
(18753, 20160, 59, 3, 0, 'Selected for OPS team RE role Need to analyse and confirm in 7 days training', 104, '0000-00-00 00:00:00', 1),
(18754, 20156, 74, 5, 0, 'she is preparing tnpsc..looking for job  temperory only', 104, '0000-00-00 00:00:00', 1),
(18755, 20158, 19, 5, 0, 'not fit for sales look like very slow', 104, '0000-00-00 00:00:00', 1),
(18756, 20164, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18757, 20165, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18758, 20159, 89, 5, 0, 'over Attitude and no basic skill ', 104, '0000-00-00 00:00:00', 1),
(18759, 20176, 105, 5, 0, 'candidate attire is good but his performance is not good ,also his voice and prononunciation is quality is poor', 104, '0000-00-00 00:00:00', 1),
(18760, 20191, 109, 5, 0, 'Over talkative, Not fit for us', 104, '0000-00-00 00:00:00', 1),
(18761, 20190, 109, 5, 0, 'she didnxquott talk in the interview', 104, '0000-00-00 00:00:00', 1),
(18762, 20186, 138, 5, 0, 'Good Attitude but Technical skills and Communication Skills are Below Average and No sales experiences so Status is rejected', 104, '0000-00-00 00:00:00', 1),
(18763, 20185, 109, 7, 0, 'Selected by Gokul sir had good communication and she was egar to lean more things', 104, '0000-00-00 00:00:00', 1),
(18764, 20180, 105, 7, 0, 'Candidate communication and performance is good ,also she already have experiance in tele sales.will check with her performance in the training period', 104, '0000-00-00 00:00:00', 1),
(18765, 20175, 139, 4, 0, 'Selected for Next Round, \nFresher, have good communication skill\nwill try for rm role', 104, '0000-00-00 00:00:00', 1),
(18766, 20178, 140, 5, 0, 'Not interested for sales', 104, '0000-00-00 00:00:00', 1),
(18767, 20181, 102, 5, 0, 'Low voice and right now looking for one job not suitable sales ', 104, '0000-00-00 00:00:00', 1),
(18768, 20183, 109, 5, 0, 'Fresher, had lag with her communication. ', 104, '0000-00-00 00:00:00', 1),
(18769, 20187, 109, 7, 0, 'Pursuing college, had good communication and fit for the role', 104, '0000-00-00 00:00:00', 1),
(18770, 20188, 109, 7, 0, 'had shCommunicationarp mind, clear with his cummunication.', 104, '0000-00-00 00:00:00', 1),
(18771, 20175, 18, 7, 3, 'Sriram R Selected for Ganashekar team. Offered 2.75L CTC and ready to Join next Thursday. candidate is a fresher', 139, '2024-07-12 03:25:45', 1),
(18772, 20189, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18773, 20174, 131, 2, 0, 'Good Communication but lacking in confident', 126, '0000-00-00 00:00:00', 1),
(18774, 20179, 19, 7, 0, 'SELECTED - JOB NEEDED PERSON PARENTS ARE DAILY WORKERS SO I THINK SHE NEED JOB AND WORK TOO CTC 15K DOUBLE DEGREE HOLDER', 104, '0000-00-00 00:00:00', 1),
(18775, 20175, 60, 1, 0, NULL, 18, '2024-07-12 04:08:10', 1),
(18776, 20179, 59, 1, 0, NULL, 19, '2024-07-12 05:23:37', 1),
(18777, 20141, 18, 9, 0, 'Refix and confrim', 138, '2024-07-12 05:37:06', 1),
(18778, 20196, 137, 7, 0, 'candidate voice and communication also good , candidate location is arumbakkam and bike also i hand , fresher so try for 7 days training  period', 104, '0000-00-00 00:00:00', 1),
(18779, 20193, 89, 5, 0, 'hold', 104, '0000-00-00 00:00:00', 1),
(18780, 20197, 57, 7, 0, 'Candidate is ok. provide 15k salary. pls check sustainability and confirm the joining date.thanks', 104, '0000-00-00 00:00:00', 1),
(18781, 20198, 105, 2, 0, 'interview taken by banu mam , as discussed with banu mam candidate performance and communication is good , i called and verified the candidate she performed good in the call but her distance is too long ,so sustainable issue will hold the candidate for one week', 104, '0000-00-00 00:00:00', 1),
(18782, 20201, 140, 5, 0, 'not having proper knowledge even after working for more than 1 year in reliance nippon life insurance, not knowing difference between term and Traditional policies', 104, '0000-00-00 00:00:00', 1),
(18783, 20200, 109, 5, 0, 'He doesnxquott have knowlege about this domain. communication not ok', 104, '0000-00-00 00:00:00', 1),
(18784, 20203, 105, 7, 0, 'interview taken by banu mam, As discussed with banu mam candidate communication and perofirmance is good.also i called and verified the candidate he ok.will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(18785, 20197, 59, 3, 0, 'Selected for RE Role Need to analyse in 7 days Fresher Communication Ok Can give a try ', 57, '2024-07-13 12:20:46', 1),
(18786, 20207, 89, 7, 0, 'Selected . i will analysis 7 days training', 104, '0000-00-00 00:00:00', 1),
(18787, 20206, 109, 5, 0, 'had a bachelorxquots degree with b.com and had an internship. she was not clear with her internship ', 104, '0000-00-00 00:00:00', 1),
(18788, 20205, 109, 5, 0, 'communication was not OK. had a Bachelorxquots degree In computer science. but looking for hr', 104, '0000-00-00 00:00:00', 1),
(18789, 20202, 57, 7, 0, 'Candidate is ok. 4m exp hdb finance. pls cross check  distance too. provide 15k salary. joining august 1st week thanks', 104, '0000-00-00 00:00:00', 1),
(18790, 20199, 19, 7, 0, 'Selected ,Job Needed Person Letxquots Try 7 Days,then we will finalize ', 104, '0000-00-00 00:00:00', 1),
(18791, 20204, 102, 5, 0, 'interested in sales but previous experience IT so, sustainability doubt', 104, '0000-00-00 00:00:00', 1),
(18792, 20180, 59, 3, 0, 'Selected for RE Role Have exp in Credit card sales but no relevant documents based on the verbal commitment moving forward', 105, '2024-07-13 03:19:40', 1),
(18793, 20196, 59, 3, 0, 'Communication OK fresher can give a try Need to analyse and confirm in the 7 days training', 137, '2024-07-13 03:21:37', 1),
(18794, 20208, 139, 4, 0, 'Selected for next round\nhaving 1 .6 yr exp in sales\ngood communication skill \nwill try for RM profile \nshe Interest to work in field also \n', 104, '0000-00-00 00:00:00', 1),
(18795, 20192, 102, 7, 0, 'Communication and convincing skill is good already working in Digital marketing shortlist for team kindly confirmed joining date ', 104, '0000-00-00 00:00:00', 1),
(18796, 20207, 59, 3, 0, 'Selected fr RE Role Need to analyse in 7 days and confirm ', 89, '2024-07-13 04:32:03', 1),
(18797, 20208, 18, 7, 0, 'Selected for Gnanashaker Team. Immedeate Joiner and has Laptop. Can Offer 2.75L CTC...', 139, '2024-07-13 04:42:30', 1),
(18798, 20185, 59, 1, 0, NULL, 109, '2024-07-13 05:06:31', 1),
(18799, 20187, 59, 1, 0, NULL, 109, '2024-07-13 05:07:10', 1),
(18800, 20188, 59, 1, 0, NULL, 109, '2024-07-13 05:07:49', 1),
(18801, 20202, 59, 1, 0, NULL, 57, '2024-07-13 05:30:31', 1),
(18802, 20203, 59, 3, 0, 'Communication Ok Can give a try Fresher Need to analyse in 7 days and confirm', 105, '2024-07-13 06:31:21', 1),
(18803, 20199, 59, 1, 0, NULL, 19, '2024-07-14 05:38:21', 1),
(18804, 20192, 59, 1, 0, NULL, 102, '2024-07-15 11:33:45', 1),
(18805, 20209, 105, 7, 0, 'candidate communication and performance is good ,his attire also is good ,but long distance ,so cross check the candidate once, before joining', 104, '0000-00-00 00:00:00', 1),
(18806, 20209, 59, 3, 0, 'Fresher Need to relocate Sustainability need to check need to analyse in 7 days and confirm', 105, '2024-07-15 12:00:28', 1),
(18807, 19793, 59, 3, 0, 'Selected for IT tem interviewed and confirmed by sathish and gokul 3.5yrs agreement', 60, '0000-00-00 00:00:00', 1),
(18808, 20213, 19, 5, 0, 'Even not try to speak and slow ', 104, '0000-00-00 00:00:00', 1),
(18809, 20247, 140, 4, 0, 'Having some clarity with his way of talking and approach, but salary Expectations is very high.', 104, '0000-00-00 00:00:00', 1),
(18810, 20248, 51, 5, 0, 'Not suitable for our sales roles will not handle our sales pressure', 104, '0000-00-00 00:00:00', 1),
(18811, 20248, 51, 5, 0, 'Not suitable for our sales roles will not handle our sales pressure', 104, '0000-00-00 00:00:00', 1),
(18812, 20237, 137, 7, 0, 'candidate communication is  very good ,  pre exp is 6 month work for insurance field  life and basic health spoaked so salary exp is high , so i will try for 7 days training period ', 104, '0000-00-00 00:00:00', 1),
(18813, 20236, 139, 4, 0, 'Selected For next round\nFresher \nhaving good communication skill\nwill try for rm profile ', 104, '0000-00-00 00:00:00', 1),
(18814, 20234, 140, 4, 0, 'Selected', 104, '0000-00-00 00:00:00', 1),
(18815, 20233, 19, 7, 0, 'Selected,Well Speaked ', 104, '0000-00-00 00:00:00', 1),
(18816, 20230, 102, 5, 0, 'communication and convincing skill ratio is low so, i reject the person \n', 104, '0000-00-00 00:00:00', 1),
(18817, 20229, 71, 4, 0, 'Over all 3 yrs exp in sales and  best sles pitch. moved to second round', 104, '0000-00-00 00:00:00', 1),
(18818, 20228, 137, 7, 0, 'candidate voice and communication  also very good , pre exp is non voice process 2 years  for health insurance clime , so i will try for 7 days training', 104, '0000-00-00 00:00:00', 1),
(18819, 20220, 140, 5, 0, 'Not fit for sales,  fresher and not bold enough to answer ', 104, '0000-00-00 00:00:00', 1),
(18820, 20217, 137, 5, 0, 'candidate only interest for it only , after6 months go for core related job so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18821, 20221, 105, 5, 0, 'Candidate Performance is Little bit Slowly Also her Communication Level is Low and her voice is also very low', 104, '0000-00-00 00:00:00', 1),
(18822, 20231, 102, 5, 0, 'willing do the non voice process ', 104, '0000-00-00 00:00:00', 1),
(18823, 20236, 18, 7, 0, 'Rajalakshmi Selected for Gnanashekar Team. Offered 2,52,500 as CTC. Immediate Joiner and having Laptop. Fresher but a good candidate.', 139, '2024-07-15 05:38:34', 1),
(18824, 20233, 59, 3, 0, 'Communication Good Not open for Core opportunities can be trained in  our roles open for telecalling can give a try', 19, '2024-07-15 06:32:48', 1),
(18825, 20246, 138, 5, 0, 'After Passedout she not went for job around 4 years after she worked mobile engineering process with 1 year experience and No proper communications kills and Mathematical skills so finally Not fit for sales this candidate', 104, '0000-00-00 00:00:00', 1),
(18826, 20229, 18, 7, 0, 'Fathima Selected for Santosh team. Given CTC is 2.65L Pa. She shall confirm the Joining date with the HR within a da and expected to Join within a week.', 71, '2024-07-15 08:07:37', 1),
(18827, 20244, 131, 4, 0, 'Good Communication and he has Experience  into sales can process for next round', 126, '0000-00-00 00:00:00', 1),
(18828, 20244, 30, 7, 3, 'already profile got rejected by virtual interview by banu before three months , but now k for rm will try max 20k take home salary suggested', 131, '2024-07-16 10:46:10', 1),
(18829, 20247, 29, 8, 0, 'didnxquott respond to arun', 140, '2024-07-16 12:00:42', 1),
(18830, 20215, 131, 5, 0, 'Salary expectation is high ', 126, '0000-00-00 00:00:00', 1),
(18831, 20242, 86, 4, 0, 'Selected for next round, Good communication xxamp having sales experience.', 104, '0000-00-00 00:00:00', 1),
(18832, 20249, 140, 5, 0, 'Not Interested For Sales, looking for non pressure job', 104, '0000-00-00 00:00:00', 1),
(18833, 20260, 140, 5, 0, 'rejected by guarav sir, hestitated for sales', 104, '0000-00-00 00:00:00', 1),
(18834, 20262, 138, 5, 0, 'She is srilankan citizen she came only Medical visa not a working visa also not have any proper documents so this candidate not eligible for our organiztion', 104, '0000-00-00 00:00:00', 1),
(18835, 20228, 59, 3, 0, 'Communication Ok Can be trained in our Voice process Need to analyse in 7 days training ', 137, '2024-07-16 03:04:16', 1),
(18836, 20237, 59, 3, 0, 'Communication Ok have 6 months Exp in insurance calling can be trained in our role need to check and analyse in 7 days training\n', 137, '2024-07-16 03:09:19', 1),
(18837, 20268, 57, 7, 0, 'candidate is ok. confident level good\nsal exp high 18k.fresher provide maximum 15k .if ok with the salary confirm the joining.', 104, '0000-00-00 00:00:00', 1),
(18838, 20259, 137, 5, 0, 'candidate only looking for non voice process only , voice process just try  so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(18839, 20283, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18840, 20257, 109, 5, 0, 'She was not fit for sales, had lower voice and will not sustain longer', 104, '0000-00-00 00:00:00', 1),
(18841, 20280, 89, 5, 0, 'not Interested sales , ', 104, '0000-00-00 00:00:00', 1),
(18842, 20282, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18843, 20279, 86, 5, 0, 'Low observation skill, Not aware the previous experience product.', 104, '0000-00-00 00:00:00', 1),
(18844, 20276, 109, 5, 0, 'Not fit for sales she was not talking much had limited conversation', 104, '0000-00-00 00:00:00', 1),
(18845, 20269, 109, 5, 0, 'Not even talk ,  not fit hor sales', 104, '0000-00-00 00:00:00', 1),
(18846, 20270, 109, 5, 0, 'Doesnxquott anwer any questions,  not even open her mouth to talk', 104, '0000-00-00 00:00:00', 1),
(18847, 20275, 57, 5, 0, 'candidate is unfit for sales. communication not well.not suitable for telecalling process', 104, '0000-00-00 00:00:00', 1),
(18848, 20281, 109, 5, 0, 'Not interested in sales, not fit for sales also', 104, '0000-00-00 00:00:00', 1),
(18849, 20273, 89, 7, 0, 'Fresher salary will provide', 104, '0000-00-00 00:00:00', 1),
(18850, 20272, 19, 7, 0, 'Syed Selected,she speaks good i hope she fit for sales lets try 7 days', 104, '0000-00-00 00:00:00', 1),
(18851, 20256, 109, 5, 0, 'Rejected by gokul sir', 104, '0000-00-00 00:00:00', 1),
(18852, 20264, 109, 7, 0, 'Selected by Gokul sir for internship', 104, '0000-00-00 00:00:00', 1),
(18853, 20263, 109, 5, 0, 'Rejected By Gokul Sir', 104, '0000-00-00 00:00:00', 1),
(18854, 20261, 19, 7, 0, 'Selected ,ctc 16k,he speaks good i hope he fit for the sales', 104, '0000-00-00 00:00:00', 1),
(18855, 20258, 109, 5, 0, 'Rejected By Gokul Sir', 104, '0000-00-00 00:00:00', 1),
(18856, 20243, 109, 5, 0, 'Had lagging with his communication not fit for sales', 104, '0000-00-00 00:00:00', 1),
(18857, 20268, 59, 3, 0, 'Communication Ok IT background she may switch if she is getting an opportunity her focus is only on the salary sustainability doubts can give a try and analyse in 7 days training', 57, '2024-07-16 05:23:21', 1),
(18858, 20208, 60, 1, 0, NULL, 18, '2024-07-16 05:53:27', 1),
(18859, 20229, 60, 1, 0, NULL, 18, '2024-07-16 05:54:09', 1),
(18860, 20236, 60, 1, 0, NULL, 18, '2024-07-16 05:54:38', 1),
(18861, 20212, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18862, 20212, 30, 7, 3, 'suggested ctc  upto 18k for dm', 131, '2024-07-16 06:19:41', 1),
(18863, 17396, 59, 3, 0, 'Completed the internship and hired for the employment', 59, '2024-07-16 07:05:28', 1),
(18864, 20242, 18, 7, 0, 'Swathi Selected for Mani Team. Offered 3.35L CTC and Immediate Joiner.', 86, '2024-07-17 09:58:58', 1),
(18865, 20244, 60, 1, 0, NULL, 30, '2024-07-17 11:25:51', 1),
(18866, 20212, 60, 1, 0, NULL, 30, '2024-07-17 11:29:01', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(18867, 20126, 59, 3, 0, 'Selected for RM Role Internal reference 8 months account exp 11 months Telecalling exp No Exp documents in the previous one Can give a try and check in the 7 days training analysis', 29, '2024-07-17 11:34:30', 1),
(18868, 20140, 59, 3, 0, 'Selected for RM Role reference ProfileHave Exp in Byjus and for the previous exp there was no proof Can be trained in our roles  Need to analyse in 7 days training and confirm', 29, '2024-07-17 11:45:39', 1),
(18869, 20300, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18870, 20289, 19, 7, 0, 'Appearance was good i hope he fit for sales lets try 7 days and confirm ctc 16k', 104, '0000-00-00 00:00:00', 1),
(18871, 20292, 102, 5, 0, 'Not To  come formal wear in interview and not willing to work on weekend ', 104, '0000-00-00 00:00:00', 1),
(18872, 20297, 102, 7, 0, 'interview performance its okay will try to 7days training and once confirm DOJ', 112, '0000-00-00 00:00:00', 1),
(18873, 20291, 105, 5, 0, 'candidate communication and performance is very slow ,also he weared jean pant', 104, '0000-00-00 00:00:00', 1),
(18874, 20290, 137, 5, 0, 'candidate is very local voice and not well communication and dress code , past 2 years work for our father shop and just try for other work but not stable for work , so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18875, 20301, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18876, 20261, 59, 3, 0, 'Communication Ok Fresher for Our role Candidate much focus is on non voice Open for Telesales Can give a try Need to analyse in 7 days training', 19, '2024-07-17 12:40:07', 1),
(18877, 20272, 59, 3, 0, 'Communication Ok can be trained in our roles need to focus on  sustainability due to her travel distance', 19, '2024-07-17 12:40:52', 1),
(18878, 20264, 59, 3, 0, 'Selected for Recruitment profile with Staff role after internship for 3 months,Good Candidate have interest to work in the profile', 109, '2024-07-17 12:53:07', 1),
(18879, 20289, 59, 3, 0, 'Communication Ok Fresher for our roles Need to train from Scratch Should analyse in training and confirm', 19, '2024-07-17 12:53:46', 1),
(18880, 19990, 19, 5, 0, 'sustainability was doubt', 19, '2024-07-17 12:54:27', 1),
(18881, 19976, 19, 5, 0, 'Distance  long and sustainability was doubt', 19, '2024-07-17 12:55:10', 1),
(18882, 20296, 105, 5, 0, 'candidate communication and performance is very nice xxampgood ,but her distance is too long ,  also her mother is under medical treatment,So Sustainability Is Very Doubt.', 104, '0000-00-00 00:00:00', 1),
(18883, 20297, 59, 3, 0, 'Communication Ok 1yr gap location is too far but open for the work location can give a try need to analyse in 7 days training', 102, '2024-07-17 03:10:20', 1),
(18884, 20310, 57, 7, 0, 'candidate is ok , fresher provide 14.5k take home. confirm the joining date. ', 104, '0000-00-00 00:00:00', 1),
(18885, 20311, 86, 5, 0, 'low observation and no experience . Not satisfying ', 104, '0000-00-00 00:00:00', 1),
(18886, 20310, 59, 3, 0, 'Selected for RE Role Communication PG Graduate Can be trained in our roles need to analyse in the training period', 57, '2024-07-17 04:33:05', 1),
(18887, 20242, 60, 1, 0, NULL, 18, '2024-07-17 05:16:10', 1),
(18888, 20273, 59, 3, 0, 'Fresher Need to train a lot Pressure handling need to check can give atry and analyse in 7 days', 89, '2024-07-17 05:24:06', 1),
(18889, 20318, 71, 4, 0, 'Having exp over 7 years in Integerated company sales field ', 130, '0000-00-00 00:00:00', 1),
(18890, 20308, 59, 1, 0, NULL, 130, '0000-00-00 00:00:00', 1),
(18891, 20305, 57, 7, 0, 'candidate is ok, pls check distance and sustainability. provide freshers salary and confirm the joining date', 60, '0000-00-00 00:00:00', 1),
(18892, 20305, 59, 3, 0, 'Selected for RE Role Too long distance She is ok to travel Can give a try in our roles Need to check in 7 days of training', 57, '2024-07-18 12:06:14', 1),
(18893, 20338, 105, 5, 0, 'candidate performance and communication is not good ,also she mentioned her  experiance is more differnece ,while Discussing in interview.sustaiable doubt', 104, '0000-00-00 00:00:00', 1),
(18894, 20322, 89, 7, 0, 'Selected. will suggest freshers salary', 104, '0000-00-00 00:00:00', 1),
(18895, 20328, 57, 7, 0, 'candidate is ok, communication good. she have 10m exp cc sales but she donxquott have any pay slip exp letter offer letter.salary exp 18k. pls negotiate the salary 15.5k to 16k maximum. pls confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(18896, 20325, 102, 5, 0, 'not interested in field work interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(18897, 20334, 137, 5, 0, 'Candidate very local voice and not understand my words . So not fit. For my team', 104, '0000-00-00 00:00:00', 1),
(18898, 20340, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18899, 20332, 137, 7, 0, 'Candidate Good Voice And Good Communication Skills But After Joining The Work Donfit Mphil In Charas So I Will Try For 7 Days Training Period ', 104, '0000-00-00 00:00:00', 1),
(18900, 20336, 139, 4, 0, 'Selected for Next round \nDont have exp in sales\nbut he ready to work in sales and field work, will try for rm profile ', 104, '0000-00-00 00:00:00', 1),
(18901, 20324, 19, 5, 0, 'communication was not good so she is not fit for insurance sales', 104, '0000-00-00 00:00:00', 1),
(18902, 20328, 59, 3, 0, 'Communication Good Reveiwed her bank statements can be trained in our roles Need to analyse in 7 days training', 57, '2024-07-18 03:01:27', 1),
(18903, 20333, 131, 4, 0, 'Fresher, Communication is OK and can process for next round', 126, '0000-00-00 00:00:00', 1),
(18904, 20333, 30, 7, 3, 'SUGGESTED CTC 14K FOR DM', 131, '2024-07-18 03:12:34', 1),
(18905, 20346, 102, 7, 0, 'Communication and convincing skills is good will try to 7days training once confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(18906, 20346, 59, 3, 0, 'Selected for RE Role Communication Ok Fresher Family need is there Can be trained in our roles need to analyse in 7 days training', 102, '2024-07-18 03:27:26', 1),
(18907, 20306, 86, 5, 0, 'Sriram sir rejected this candidate, due to management not approved the non degree holder.', 104, '0000-00-00 00:00:00', 1),
(18908, 20335, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18909, 20326, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18910, 19905, 29, 7, 2, 'porrselvan team, salary check resume..', 140, '2024-07-19 11:15:32', 1),
(18911, 20348, 102, 7, 0, 'Shortlist for team ', 130, '0000-00-00 00:00:00', 1),
(18912, 20318, 18, 7, 3, 'Kalaivani Selected for Santhosh Team Expected upto 4.5L but can negotiate and immediate Joiner.', 71, '2024-07-19 11:27:29', 1),
(18913, 20353, 102, 7, 0, 'Shortlist for team ', 104, '0000-00-00 00:00:00', 1),
(18914, 20352, 19, 5, 0, 'Too slow', 104, '0000-00-00 00:00:00', 1),
(18915, 20364, 57, 7, 0, 'candidate is ok. pls confirm the joining date and salary. job fair candidate', 104, '0000-00-00 00:00:00', 1),
(18916, 20350, 57, 7, 0, 'Candidate is ok, pls confirm the joining date xxamp Salary.', 104, '0000-00-00 00:00:00', 1),
(18917, 20356, 105, 5, 0, 'candidate performance and comunication is not good.also providing information is mismatch with her resume', 104, '0000-00-00 00:00:00', 1),
(18918, 20336, 18, 7, 0, 'Pradeep Selected for Ganashekar Team.Can Give offer of 3L as CTC. Immediate Joiner.', 139, '2024-07-19 02:34:19', 1),
(18919, 20371, 105, 5, 0, 'candidate performance and communication is not good.also his voice is not clear', 104, '0000-00-00 00:00:00', 1),
(18920, 20359, 140, 4, 0, 'Selected for sarath team', 104, '0000-00-00 00:00:00', 1),
(18921, 20155, 29, 7, 3, 'Sarath Team,  Salary 21k Gross, task given july and aug 2 lac life and 15k mF if achieved, can increase to 24k gross. ', 51, '2024-07-19 03:58:08', 1),
(18922, 20358, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18923, 20357, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18924, 20360, 131, 2, 0, 'Good communication but have some health issue need some time to join', 126, '0000-00-00 00:00:00', 1),
(18925, 19905, 59, 3, 0, 'communication Have 1yr telecalling Exp  6 months BPO exp have exp documents Can be trained in our roles need to analyse in 7 days training hired based on the employee recommendation on his earlier performance', 29, '2024-07-19 07:47:21', 1),
(18926, 20155, 59, 1, 0, NULL, 29, '2024-07-19 07:54:19', 1),
(18927, 20332, 59, 3, 0, 'Selected for RE Role Fersher MA graduate Can be trained in our roles need to check and confirm in the 7 days of training', 137, '2024-07-20 10:51:17', 1),
(18928, 20333, 60, 1, 0, NULL, 30, '2024-07-20 11:42:48', 1),
(18929, 20350, 59, 3, 0, 'Communication Ok Fresher Can give a try exp salary much can be trained need to analyse in 7 days and confirm ', 57, '2024-07-20 11:57:21', 1),
(18930, 20364, 59, 3, 0, 'Communication OK fresher for our roles,have exp in Medplus sales for 2yrs Can be trained in our roles ', 57, '2024-07-20 12:11:29', 1),
(18931, 20383, 102, 5, 0, 'Interested in Non voice process ', 104, '0000-00-00 00:00:00', 1),
(18932, 20388, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18933, 20378, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18934, 20390, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18935, 20375, 89, 7, 0, 'Selected but salary expect 20 k.. i will suggestion 15 to 16 k ', 104, '0000-00-00 00:00:00', 1),
(18936, 20387, 57, 5, 0, 'candidate is not ok. she looking for system work,', 104, '0000-00-00 00:00:00', 1),
(18937, 20375, 59, 3, 0, 'Communication Ok Have part time exp can be trained in our roles should check in 7 days and confirm', 89, '2024-07-20 03:29:00', 1),
(18938, 20322, 59, 5, 0, 'Looking for non voice process only', 89, '2024-07-20 04:18:52', 1),
(18939, 20318, 60, 1, 0, NULL, 18, '2024-07-22 11:17:30', 1),
(18940, 20198, 105, 5, 0, 'candidate communication and performance is good but her  distance is long ,sustainable doubt', 105, '2024-07-22 11:18:15', 1),
(18941, 20348, 59, 3, 0, 'Communication Have yrs exp in Semi voice can be trained in our roles need to analyse in 7 days training', 102, '2024-07-22 12:04:50', 1),
(18942, 20353, 59, 3, 0, 'communication Ok fresher need to train from scratch can give a try in 7 days and confirm', 102, '2024-07-22 12:05:10', 1),
(18943, 20382, 149, 7, 0, 'SELECTED JOINING ON 24TH JULY', 104, '0000-00-00 00:00:00', 1),
(18944, 20370, 149, 2, 0, 'HOLDED', 104, '0000-00-00 00:00:00', 1),
(18945, 20399, 140, 5, 0, 'No Sustainability in any company', 104, '0000-00-00 00:00:00', 1),
(18946, 20400, 89, 5, 0, 'not fit for the job', 104, '0000-00-00 00:00:00', 1),
(18947, 20401, 137, 7, 0, 'candidate voice and communication very good ad past 1 and half years exp for sales field so i will try for  7 days training period ad exp ctc is 16k ', 104, '0000-00-00 00:00:00', 1),
(18948, 20402, 19, 5, 0, 'not fit for sales and not try to speak', 104, '0000-00-00 00:00:00', 1),
(18949, 20411, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(18950, 20405, 131, 4, 0, 'Fresher, communication is  OK can process for next round', 126, '0000-00-00 00:00:00', 1),
(18951, 20397, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(18952, 20397, 30, 7, 3, 'SUGGESTED 20K CTC FOR DM', 131, '2024-07-22 04:42:20', 1),
(18953, 20405, 30, 7, 2, 'SUGGESTED 13K CTC', 131, '2024-07-22 04:47:08', 1),
(18954, 20411, 30, 7, 4, '21K SUGGESTED FOR RM', 131, '2024-07-22 04:47:57', 1),
(18955, 20382, 102, 7, 0, 'Shortlist for team once confirm DOJ', 149, '2024-07-22 06:49:32', 1),
(18956, 20397, 60, 1, 0, NULL, 30, '2024-07-23 11:09:14', 1),
(18957, 20405, 60, 1, 0, NULL, 30, '2024-07-23 11:11:46', 1),
(18958, 20411, 60, 1, 0, NULL, 30, '2024-07-23 11:12:37', 1),
(18959, 20382, 59, 1, 0, NULL, 102, '2024-07-23 11:40:12', 1),
(18960, 20336, 60, 1, 0, NULL, 18, '2024-07-23 12:03:09', 1),
(18961, 20425, 19, 9, 0, 'salary high so change to PC  dept', 104, '0000-00-00 00:00:00', 1),
(18962, 20418, 140, 4, 0, 'Selected, bold and confident with his replies', 104, '0000-00-00 00:00:00', 1),
(18963, 20419, 57, 5, 0, 'candidate is not ok. communication not good. confident very low. reject the candidate', 104, '0000-00-00 00:00:00', 1),
(18964, 20416, 19, 2, 0, 'hold', 104, '0000-00-00 00:00:00', 1),
(18965, 20420, 86, 4, 0, 'Selected for Next Round', 104, '0000-00-00 00:00:00', 1),
(18966, 20422, 102, 5, 0, 'Communication is good Candidate learn for Coding once complete going to it and not willing to work week end days ', 104, '0000-00-00 00:00:00', 1),
(18967, 20420, 18, 7, 0, 'Lokesh Selected for Manikandan Team. Offered 3L CTC and has Laptop and Immediate Joiner.', 86, '2024-07-23 02:29:54', 1),
(18968, 20432, 19, 5, 0, 'too slow and not fir for sales,dress code also wrong', 104, '0000-00-00 00:00:00', 1),
(18969, 20413, 105, 5, 0, 'interviewed by charless ,as discussednwith charless, candidate performance and communication is very low,also slow listerner', 104, '0000-00-00 00:00:00', 1),
(18970, 20426, 89, 5, 0, 'time pass', 104, '0000-00-00 00:00:00', 1),
(18971, 20425, 138, 7, 0, 'Selected for self team due to sriram sir interviewed and confimed this candidate so kindly Negotiate the CTC and Confirm it', 19, '2024-07-23 05:12:05', 1),
(18972, 20430, 131, 2, 0, 'fresher, Communication is OK have doubt with the salary part need to discussed', 126, '0000-00-00 00:00:00', 1),
(18973, 20398, 137, 5, 0, 'candidate interest to it job only just free time time to  chose sales job so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18974, 20425, 18, 7, 3, 'Selected for Jagadeesh Team. Can give 4.5L if he negotiate can give 4.6 and Immedeate Joiner. Experience candidate and plaease take approval for salary', 138, '2024-07-23 07:54:53', 1),
(18975, 20420, 60, 1, 0, NULL, 18, '2024-07-24 10:27:49', 1),
(18976, 20359, 29, 7, 0, 'Selected, ', 140, '2024-07-24 10:43:29', 1),
(18977, 20418, 29, 7, 3, 'Sal - 20k Net, task - 1.5 lac + 10 MF, once completed increase to 22k net from sept24', 140, '2024-07-24 10:46:07', 1),
(18978, 20401, 59, 1, 0, NULL, 137, '2024-07-24 10:53:59', 1),
(18979, 20442, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18980, 20421, 109, 5, 0, 'Not Suitable for sales. lagging in comminication', 104, '0000-00-00 00:00:00', 1),
(18981, 20428, 105, 5, 0, 'candidate performance and communiation is little bit good,but long distance sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(18982, 20431, 19, 7, 0, 'Speaks Well Lets try 7 days and confirmed ,CTC 16K, Immediate joining', 104, '0000-00-00 00:00:00', 1),
(18983, 20435, 140, 4, 0, 'fresher, very eager for work, confident in his way of speaking, selected for next round', 104, '0000-00-00 00:00:00', 1),
(18984, 20435, 140, 4, 0, 'fresher, very eager for work, confident in his way of speaking, selected for next round', 104, '0000-00-00 00:00:00', 1),
(18985, 20436, 102, 7, 0, 'Communication and convincing skill and know insurance knowledge also, is good will try 7 days training and once confirmed DOJ ', 104, '0000-00-00 00:00:00', 1),
(18986, 20438, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(18987, 20439, 29, 7, 3, 'Esales - 3.75 Lac CTC, Joining in Aug, in Aug if completed 2 lac + 10k SIP we can increase to 4 lac in sept 24', 104, '0000-00-00 00:00:00', 1),
(18988, 20226, 29, 7, 3, 'sarath team, ', 104, '0000-00-00 00:00:00', 1),
(18989, 20223, 140, 4, 0, 'Selected for next round, having basic knowledge in insurance and mutual funds', 104, '0000-00-00 00:00:00', 1),
(18990, 20431, 59, 3, 0, 'Communication Ok Fresher for our role not much job needed person family has own business for initial period he is open to work Sport player \nNeed to analyse in 7 days training and confirm', 19, '2024-07-24 03:18:48', 1),
(18991, 20443, 102, 5, 0, 'Already working in DTH Customer support not come formal wear communication and convincing wise low ', 104, '0000-00-00 00:00:00', 1),
(18992, 20445, 137, 5, 0, 'candidate only looking for voice process only not interest for field work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18993, 20416, 59, 1, 0, NULL, 19, '2024-07-24 03:27:21', 1),
(18994, 20416, 19, 7, 0, 'dress cide and attitude was good but slang has to be change so lets try 7 days and we will confirm      CTC 16K Immediate joining', 19, '2024-07-24 03:27:21', 1),
(18995, 20436, 59, 3, 0, 'Communication Ok Fresher have worked in a company for a month madurai not much comfrt in the location and transport 5050 need to check in 7 days and confirm', 102, '2024-07-24 04:27:44', 1),
(18996, 20223, 29, 7, 3, 'Porrselvan Team,  18k Net Salary, In Aug - 1.5 lac + 10k SIP, then 21k Net salary', 140, '2024-07-24 05:47:19', 1),
(18997, 20435, 29, 7, 2, 'Porrselvan Team, 18k Net salary, However if he performance well in Aug and Sept we can average salary to 21k Net from Oct 24', 140, '2024-07-24 05:48:32', 1),
(18998, 20450, 105, 5, 0, 'candidate performed well and good,her communication flow is good,but she is more intrested in non-voice process also long distance sustainable doubt.', 104, '0000-00-00 00:00:00', 1),
(18999, 20452, 149, 5, 0, 'not so good at communication', 104, '0000-00-00 00:00:00', 1),
(19000, 20453, 138, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19001, 20454, 137, 7, 0, 'candidate past 6 months work for sales and field work  , communication and voice also ok so try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(19002, 20455, 149, 5, 0, 'having thought for another job', 104, '0000-00-00 00:00:00', 1),
(19003, 20458, 19, 2, 0, 'Will Clear 27th july', 104, '0000-00-00 00:00:00', 1),
(19004, 20447, 131, 5, 0, 'Need travelling expenses  and lack of interest', 126, '0000-00-00 00:00:00', 1),
(19005, 20451, 131, 5, 0, 'Salary Expectation is high', 126, '0000-00-00 00:00:00', 1),
(19006, 20459, 102, 7, 0, 'Communication and convincing skill is good will try 7 days training xxamp once confirmed the DOJ', 104, '0000-00-00 00:00:00', 1),
(19007, 20460, 140, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19008, 20457, 140, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19009, 20223, 59, 1, 0, NULL, 29, '2024-07-25 04:30:17', 1),
(19010, 20435, 59, 3, 0, 'Fresher Have an interest to start his own business in future he is open to learn the sales can be trained in our roles need ot check and confirm in 7 daysw training', 29, '2024-07-25 04:32:58', 1),
(19011, 20439, 59, 3, 0, 'Selected for E Sales Good communication Can give a try in our Esales Based on the commitment we have given her the opportunity can give a try in our role', 29, '2024-07-25 05:09:03', 1),
(19012, 20370, 19, 7, 0, 'Selecteed for raja sekar,lets try 7 days and we will confirm CTC 16K', 149, '2024-07-26 11:03:34', 1),
(19013, 20370, 149, 7, 0, 'selected', 149, '2024-07-26 11:03:34', 1),
(19014, 20459, 59, 3, 0, 'Communication Ok Distance should check Can give a try and analyse in 7 days and confirm', 102, '2024-07-26 11:54:17', 1),
(19015, 20454, 59, 1, 0, NULL, 137, '2024-07-26 01:01:40', 1),
(19016, 20468, 137, 5, 0, 'candidate very low voice and not understand my words so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(19017, 20471, 105, 5, 0, 'candidate comminucation and performance is not like good.also his mother working in renault car. inurance company.then his voice level is low', 104, '0000-00-00 00:00:00', 1),
(19018, 20472, 89, 5, 0, 'not fit for the job', 104, '0000-00-00 00:00:00', 1),
(19019, 20473, 102, 5, 0, 'communication and convincing ratio is low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19020, 20475, 102, 5, 0, 'communication and convincing ratio is low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19021, 20370, 59, 1, 0, NULL, 19, '2024-07-26 01:39:37', 1),
(19022, 20462, 74, 5, 0, 'unfit for telesales', 104, '0000-00-00 00:00:00', 1),
(19023, 20469, 74, 5, 0, 'not handling pressure', 104, '0000-00-00 00:00:00', 1),
(19024, 20465, 74, 7, 0, 'he is already work in friend shopping mall as cashier, 12k salary, now he is not continue, mother govt teacher, father work in steel company 15k salary, brother work in omega 20k slary, brother studied diploma, he is a football player part time, clearly explained about pressure target, he is ok with the profile expected 12 to 13k, no laptop ready to arrange, imeediate joining, , home 5 km from office, kindly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(19025, 20463, 74, 5, 0, 'unfit fortelesales', 104, '0000-00-00 00:00:00', 1),
(19026, 20482, 57, 7, 0, 'candidate is not good, communication not well, team ref', 104, '0000-00-00 00:00:00', 1),
(19027, 20483, 57, 7, 0, 'candidate is not good, communication not well, team ref', 104, '0000-00-00 00:00:00', 1),
(19028, 20467, 109, 5, 0, 'Communication is not good. will not sustain longer', 104, '0000-00-00 00:00:00', 1),
(19029, 20466, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19030, 20474, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19031, 20476, 19, 5, 0, 'sustainability was doubt', 104, '0000-00-00 00:00:00', 1),
(19032, 20482, 59, 1, 0, NULL, 57, '2024-07-26 04:58:06', 1),
(19033, 20483, 59, 1, 0, NULL, 57, '2024-07-26 04:58:17', 1),
(19034, 20481, 57, 5, 0, 'Candidate is unfit for sales profile\nAppearance Not good,field work not interested', 104, '0000-00-00 00:00:00', 1),
(19035, 20479, 149, 5, 0, 'candidate was not ok with time flexibility', 104, '0000-00-00 00:00:00', 1),
(19036, 20470, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19037, 20477, 102, 7, 0, 'communication and convincing is good will try 7days training plz confirm DOJ', 104, '0000-00-00 00:00:00', 1),
(19038, 20478, 137, 7, 0, 'candiate communication also ok and basic sales knowledge so i will try for 7 days training periods', 104, '0000-00-00 00:00:00', 1),
(19039, 20465, 59, 3, 0, 'Fresher for our roles have 1 yr exp in Cashier role Can be trained in our roles need to analyse in 7 days training', 74, '2024-07-26 06:14:44', 1),
(19040, 20464, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(19041, 20485, 29, 7, 2, 'fresher, have to train and build, salary details refer resume', 104, '0000-00-00 00:00:00', 1),
(19042, 20488, 51, 4, 0, 'moved', 104, '0000-00-00 00:00:00', 1),
(19043, 20489, 105, 5, 0, 'Candidate Communication And performance is not good ,also long distance sustainable doubt ', 104, '0000-00-00 00:00:00', 1),
(19044, 20491, 59, 3, 0, 'Ok for REcruitment have internship exp first interview with Gokul and got shortlisted can give a try in our roles', 104, '0000-00-00 00:00:00', 1),
(19045, 20492, 137, 5, 0, 'candidate very low voice and not well communication and distanc is very long so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19046, 20497, 74, 7, 0, 'she is ok for telecalling, completed bsc and msc, fresher ,,,,studiying for govt job past two years, now searching for job, father labour work, own house, office to home 3 km only,,,,,have laptop, expected 12 to 13 ,,, imediate joining...anand reference', 104, '0000-00-00 00:00:00', 1),
(19047, 20493, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19048, 20495, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19049, 20496, 102, 5, 0, 'communication and convincing ratio is low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19050, 20498, 19, 5, 0, 'other language', 104, '0000-00-00 00:00:00', 1),
(19051, 20501, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19052, 20497, 59, 3, 0, 'Selected for Thanjavur RE Can be trained in our roles 2yrs gap need to analyse in 7days training and confirm', 74, '2024-07-27 01:09:42', 1),
(19053, 20505, 131, 4, 0, 'good knowledge about health insurance and communication is OK can process for next round', 126, '0000-00-00 00:00:00', 1),
(19054, 20504, 57, 7, 0, 'candidate is ok, pls confirm the joining date. give freshers salary. teammate rekha reference', 104, '0000-00-00 00:00:00', 1),
(19055, 20503, 57, 7, 0, 'candidate is not suitable for sales job. communication not well. reject the profile.(chalres)', 104, '0000-00-00 00:00:00', 1),
(19056, 20502, 149, 7, 0, 'selected  and salary 16k', 104, '0000-00-00 00:00:00', 1),
(19057, 20505, 147, 7, 0, 'Good communication and have Experience into insurance field ', 131, '2024-07-27 04:35:24', 1),
(19058, 20502, 60, 1, 0, NULL, 149, '2024-07-27 07:00:33', 1),
(19059, 20504, 59, 1, 0, NULL, 57, '2024-07-29 11:19:13', 1),
(19060, 20513, 105, 5, 0, 'Candidate communication and performance is not good.his voice is Also very low ,then long distance (semancheri) Sustainable doubt.he is planning for it related job', 104, '0000-00-00 00:00:00', 1),
(19061, 20503, 59, 1, 0, NULL, 57, '2024-07-29 12:01:30', 1),
(19062, 20515, 57, 5, 0, 'Candidate is not pk. he looking for accounting job.communication mistake Thatxquots why came interview.\nteam reference.reject the profile thanks', 104, '0000-00-00 00:00:00', 1),
(19063, 20514, 140, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19064, 20499, 19, 5, 0, 'Apperance is not good and look like low profile', 104, '0000-00-00 00:00:00', 1),
(19065, 20519, 74, 7, 0, 'she is ok with the profile, came from aranthangi,  4hours travel, ,,, already worked in a agency channel life insurance 2 years experience 19-21,,,,and releived due to over time,,,,, and worked as a agent in tnagar hdfc...1 year and came to native 6 months work from home vodofone process,,, and process closed she releived,,, not she is ready to move to thanjavur,,have laptop expected 15 to 16k,,,,,father farmer ,,,sisters married kindly cross check once ,,,completeg irdai exam...kindly check once she is suitable or not', 104, '0000-00-00 00:00:00', 1),
(19066, 20518, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19067, 20520, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19068, 20521, 138, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19069, 20522, 138, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19070, 20523, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19071, 20519, 59, 1, 0, NULL, 74, '2024-07-29 06:16:30', 1),
(19072, 20531, 74, 5, 0, 'expected it not sales', 104, '0000-00-00 00:00:00', 1),
(19073, 20529, 137, 5, 0, 'candidate only interst for it related field and non vocie process so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19074, 20517, 131, 4, 0, 'communication is ok , can process for next round', 126, '0000-00-00 00:00:00', 1),
(19075, 20517, 147, 7, 0, 'fresher into sales communication is OK ', 131, '2024-07-30 11:10:50', 1),
(19076, 20505, 59, 1, 0, NULL, 147, '2024-07-30 11:17:21', 1),
(19077, 20517, 59, 3, 0, 'Communication Ok Just 6 months Exp but not a relevant one can give a try and check in 7 days', 147, '2024-07-30 11:19:02', 1),
(19078, 20285, 149, 7, 0, 'selected -ctc 16k', 104, '0000-00-00 00:00:00', 1),
(19079, 20477, 59, 1, 0, NULL, 102, '2024-07-30 12:45:30', 1),
(19080, 20458, 19, 2, 0, 'Will confirm', 19, '2024-07-30 12:57:25', 1),
(19081, 20525, 19, 5, 0, 'she is not even try to speak properly', 104, '0000-00-00 00:00:00', 1),
(19082, 20526, 71, 4, 0, 'Having sales skills but new in insurance field ', 104, '0000-00-00 00:00:00', 1),
(19083, 20532, 89, 5, 0, 'tele calling not intersted', 104, '0000-00-00 00:00:00', 1),
(19084, 20533, 138, 7, 0, 'Experienced in Other department but not in sales but Communication Skills and Mathematic Skills are Good... Personal attutide also fine finally salary Fixed 18K in hand but sriram sir fix the salary ', 104, '0000-00-00 00:00:00', 1),
(19085, 20537, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19086, 20539, 19, 5, 0, 'he is not ready to go outside for appointment', 104, '0000-00-00 00:00:00', 1),
(19087, 20538, 86, 4, 0, 'Selected for next round.', 104, '0000-00-00 00:00:00', 1),
(19088, 20536, 105, 5, 0, 'candidate communication problem also his voice is very low and sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(19089, 20540, 139, 5, 0, 'Not fit for Rm profile \ndont have sales skills ', 104, '0000-00-00 00:00:00', 1),
(19090, 20535, 102, 5, 0, 'Communication is good but candidate interested in Non voice process ', 104, '0000-00-00 00:00:00', 1),
(19091, 20534, 51, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19092, 20538, 18, 7, 0, 'Harinath Selected for Mani Team. Offered 2.9LC CTC and Immediate Joiner.', 86, '2024-07-30 03:29:14', 1),
(19093, 20545, 105, 5, 0, 'candidate communication is not like good ,also pronuncication and slang issue.sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(19094, 20285, 60, 1, 0, NULL, 149, '2024-07-30 05:21:05', 1),
(19095, 20528, 131, 4, 0, 'Good Communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19096, 20528, 147, 7, 0, 'Good communication and confident level has Experience into  sales', 131, '2024-07-30 06:55:39', 1),
(19097, 20554, 139, 4, 0, 'Selected for Rm profile \nhaving good communication skill \n7 month exp in bank bazar and one month in edlewise insurance sales \nwill try for rm Role ', 104, '0000-00-00 00:00:00', 1),
(19098, 20552, 137, 5, 0, 'candidate mainly interest for  non voice and  next course for SAP in accounting thatreason to joining he work after completed the course he will relaving the job', 104, '0000-00-00 00:00:00', 1),
(19099, 20552, 137, 5, 0, 'candidate mainly interest for  non voice and  next course for SAP in accounting thatreason to joining he work after completed the course he will relaving the job', 104, '0000-00-00 00:00:00', 1),
(19100, 20538, 60, 1, 0, NULL, 18, '2024-07-31 11:04:16', 1),
(19101, 13359, 102, 5, 0, 'Oral communication good but convincing ratio low and previous experience customer support salary expt high ', 104, '0000-00-00 00:00:00', 1),
(19102, 20554, 18, 7, 0, 'logiya Selected for Gnanashekar Team. Ready to Join on Monday and Immediate Joiner. Please negotiate the salary and she is expecting 23k Take home but can negotiate', 139, '2024-07-31 11:46:05', 1),
(19103, 20174, 30, 5, 0, 'high expectation', 131, '2024-07-31 12:16:07', 1),
(19104, 20174, 131, 4, 0, 'Good communication and confident level can process for next round', 131, '2024-07-31 12:16:07', 1),
(19105, 20560, 105, 5, 0, 'candidate communication and performance is not good ,also he is not talk more and his slang is very poor', 104, '0000-00-00 00:00:00', 1),
(19106, 20360, 30, 7, 4, 'confirm the joining and ctc suggested 25k', 131, '2024-07-31 12:17:32', 1),
(19107, 20360, 131, 4, 0, 'Good communication and confident level can process for next round', 131, '2024-07-31 12:17:32', 1),
(19108, 20559, 19, 7, 0, 'fit for sales ,lets try 7 days and we will confirm', 104, '0000-00-00 00:00:00', 1),
(19109, 20543, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19110, 20543, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19111, 20551, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(19112, 20555, 74, 5, 0, 'not fit for telesales', 104, '0000-00-00 00:00:00', 1),
(19113, 20533, 18, 7, 0, 'Selected for Jagadeesh Team. Immedeate Joiner please ask the CTC which i offered to the RM and release the offer', 138, '2024-07-31 02:24:42', 1),
(19114, 20558, 149, 5, 0, 'looking for another job ', 104, '0000-00-00 00:00:00', 1),
(19115, 20550, 102, 5, 0, 'Communication is good but candidate interested in Non voice process ', 104, '0000-00-00 00:00:00', 1),
(19116, 20565, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19117, 20564, 137, 5, 0, 'candidate voice is not good and not understand what im telling so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19118, 20553, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19119, 20559, 59, 1, 0, NULL, 19, '2024-07-31 06:00:15', 1),
(19120, 20528, 59, 5, 0, 'Dropped She request a time to join and later she is not open to join due to other offer in hand', 147, '2024-08-01 10:17:58', 1),
(19121, 20485, 59, 3, 0, 'Communication Ok Focus on salary much Long Run doubts Can give a try and check in 7 days Holding offer with Shree consultant too', 29, '2024-08-01 10:31:44', 1),
(19122, 20226, 59, 1, 0, NULL, 29, '2024-08-01 10:33:21', 1),
(19123, 19803, 59, 1, 0, NULL, 29, '2024-08-01 10:35:30', 1),
(19124, 20568, 89, 5, 0, 'no basic skli', 104, '0000-00-00 00:00:00', 1),
(19125, 20570, 102, 5, 0, 'Communication and convincing skills is low and interested in Customer support ', 104, '0000-00-00 00:00:00', 1),
(19126, 20570, 102, 5, 0, 'Communication and convincing skills is low and interested in Customer support ', 104, '0000-00-00 00:00:00', 1),
(19127, 20530, 140, 5, 0, 'Not fit for sales, only Experienced in Documentation', 104, '0000-00-00 00:00:00', 1),
(19128, 19737, 59, 1, 0, NULL, 29, '2024-08-01 11:25:52', 1),
(19129, 20478, 59, 3, 0, 'Communication Ok Fresher need to analyse and confirmi in 7days training', 137, '2024-08-01 12:06:54', 1),
(19130, 20576, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19131, 20418, 59, 3, 0, 'Communication Ok Earlier attended the interview on April 2024 and got selected  for RE but not joined at the time ', 29, '2024-08-01 01:39:09', 1),
(19132, 20577, 149, 5, 0, 'not so good at speaking', 104, '0000-00-00 00:00:00', 1),
(19133, 20584, 19, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19134, 20359, 59, 1, 0, NULL, 29, '2024-08-01 02:39:48', 1),
(19135, 20572, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19136, 20583, 102, 5, 0, 'Communication and convincing skills is low and interested in Customer support ', 104, '0000-00-00 00:00:00', 1),
(19137, 20582, 19, 7, 0, 'job needed person and he speaks good', 104, '0000-00-00 00:00:00', 1),
(19138, 20573, 105, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19139, 20582, 59, 3, 0, 'Communication ok can give a try in our roles fresher need to analyse in 7 days training', 19, '2024-08-01 03:42:32', 1),
(19140, 20585, 149, 7, 0, 'selected ctc 18k', 104, '0000-00-00 00:00:00', 1),
(19141, 20360, 60, 1, 0, NULL, 30, '2024-08-01 04:29:42', 1),
(19142, 20585, 60, 1, 0, NULL, 149, '2024-08-01 04:56:15', 1),
(19143, 20506, 131, 5, 0, 'Communication is not up to the mark and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(19144, 20574, 131, 5, 0, 'lagging with communication', 126, '0000-00-00 00:00:00', 1),
(19145, 20571, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19146, 20580, 131, 5, 0, 'Salary Expectation is high', 126, '0000-00-00 00:00:00', 1),
(19147, 20571, 30, 7, 3, 'Selected for RM suggested 22k  take home immediate joining ', 131, '2024-08-01 05:55:24', 1),
(19148, 20586, 59, 3, 0, 'Rejoining post maternity leave', 60, '0000-00-00 00:00:00', 1),
(19149, 20571, 60, 1, 0, NULL, 30, '2024-08-02 10:01:11', 1),
(19150, 20587, 57, 7, 0, 'candidate is ok. 8m exp Vehicle insurance. 2yrs admin xxamp Ope exp. confirm the joining date thanks', 104, '0000-00-00 00:00:00', 1),
(19151, 20594, 105, 7, 0, 'candidate communication and perfomance is good.then he performed well in the interview ,also his attier is good ,will check in the training period', 104, '0000-00-00 00:00:00', 1),
(19152, 20592, 89, 5, 0, 'over Attitude and no money need ', 104, '0000-00-00 00:00:00', 1),
(19153, 20598, 89, 7, 0, 'Already Experience  8 month casa grande Executive . Previous salary 23 k but my Suggestion \n18 k . ', 104, '0000-00-00 00:00:00', 1),
(19154, 20598, 89, 7, 0, 'Already Experience  8 month casa grande Executive . Previous salary 23 k but my Suggestion \n18 k . ', 104, '0000-00-00 00:00:00', 1),
(19155, 20556, 138, 7, 0, 'Experienced in Sales Department around 2 to 3 years Excellent Communication skills and Mathematics skills are average and Overall Attitude also good so finally need to negotiate with sriram sir for salary package', 104, '0000-00-00 00:00:00', 1),
(19156, 20601, 105, 5, 0, 'candidate communication  little bit only good ,ther her voice is not clear also sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(19157, 20596, 19, 5, 0, 'he is not much intrested in sales', 104, '0000-00-00 00:00:00', 1),
(19158, 20594, 59, 3, 0, 'Communication complete IT profile But open for Sales Calling Can give a try and check in 7 days training', 105, '2024-08-02 01:12:36', 1),
(19159, 20599, 149, 5, 0, 'NOT  so good at speaking', 104, '0000-00-00 00:00:00', 1),
(19160, 20598, 59, 3, 0, 'Selected for RE role Can give a try and check in 7 days training ', 89, '2024-08-02 01:27:59', 1),
(19161, 20600, 102, 5, 0, 'Communication and convincing skills is low and interested in Customer support ', 104, '0000-00-00 00:00:00', 1),
(19162, 12995, 149, 7, 0, 'selected  - 15k                                                                                                                                                                                                                                                                                            ', 104, '0000-00-00 00:00:00', 1),
(19163, 20587, 59, 3, 0, 'Selected for DM Role Can give a try and analyse in 7 days training', 57, '2024-08-02 03:22:48', 1),
(19164, 20557, 131, 4, 0, 'Communication is ok and good confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19165, 20557, 147, 7, 0, 'Have Experience into sales field, good confident level and Communication is ok ok', 131, '2024-08-02 04:34:00', 1),
(19166, 20590, 29, 5, 0, 'not fit for sales process', 104, '0000-00-00 00:00:00', 1),
(19167, 12995, 60, 1, 0, NULL, 149, '2024-08-02 04:41:02', 1),
(19168, 20557, 59, 1, 0, NULL, 147, '2024-08-02 04:51:48', 1),
(19169, 20526, 18, 7, 0, 'Shortlisted by Santhosh. Please negotiate the salary and immediate joiner...', 71, '2024-08-02 06:00:19', 1),
(19170, 20609, 137, 5, 0, 'candidate mainly interest for abroad work ust communication imporvement to looking or telecalling work so notfit for my team', 104, '0000-00-00 00:00:00', 1),
(19171, 20608, 140, 4, 0, 'Selected', 104, '0000-00-00 00:00:00', 1),
(19172, 20610, 19, 5, 0, 'too long from his location,look wise not good and intrested in cine field', 104, '0000-00-00 00:00:00', 1),
(19173, 20612, 105, 5, 0, 'candidate communication is littlr bit only good but his performance is not good also he is more intrested in media industry,so sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(19174, 20613, 71, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(19175, 20556, 18, 8, 0, 'Tried connecting with her but she has not joined the meeting', 138, '2024-08-03 07:54:05', 1),
(19176, 20618, 74, 7, 0, 'she is ok with the profile, fresher, bsc and msc maths, ,,,,,,,father electrician, sister worked in CTS and currently releved due to marriage next month 8th,,,,,from kumbakonam,,, but ready to relocate to tnj........have no laptop ,,,,expected 12 to 13k....ready to join kindly check once', 104, '0000-00-00 00:00:00', 1),
(19177, 20616, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19178, 20593, 105, 5, 0, 'candidate communication and performance is not good', 104, '0000-00-00 00:00:00', 1),
(19179, 20619, 89, 7, 0, 'Selected, will  analyse 7 days training ', 104, '0000-00-00 00:00:00', 1),
(19180, 20620, 137, 5, 0, 'candidate is very long distance and  communication also not well . so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(19181, 20623, 19, 7, 0, 'Speaks Well ,I hope he fit for sales letxquots try 7 Days ', 104, '0000-00-00 00:00:00', 1),
(19182, 20627, 139, 5, 0, 'Not fit for sales profession', 104, '0000-00-00 00:00:00', 1),
(19183, 20626, 137, 7, 0, 'candidate is fresher but past1 years searching for it job but not selected , candidate voic and communication also good , so try for 7 days training ', 104, '0000-00-00 00:00:00', 1),
(19184, 20628, 51, 4, 0, 'moved for final round', 104, '0000-00-00 00:00:00', 1),
(19185, 20591, 149, 7, 0, 'selected', 104, '0000-00-00 00:00:00', 1),
(19186, 20554, 60, 1, 0, NULL, 18, '2024-08-05 04:01:25', 1),
(19187, 20533, 60, 1, 0, NULL, 18, '2024-08-05 04:03:09', 1),
(19188, 20630, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19189, 20629, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19190, 20425, 138, 7, 0, 'Selected for self team due to sriram sir interviewed and confimed this candidate so kindly Negotiate the CTC and Confirm it', 18, '2024-08-05 04:14:14', 1),
(19191, 20623, 59, 3, 0, 'Communication Ok have exp in calling Have prv exp documents can give a try in our role and analyse in 7 days training', 19, '2024-08-05 05:25:03', 1),
(19192, 20619, 59, 3, 0, 'Communication Ok fresher have a plan to go with MBA Corres Can give a try and analyse in 7 days training', 89, '2024-08-05 05:27:06', 1),
(19193, 20626, 59, 5, 0, 'not interested in telesales', 137, '2024-08-05 05:48:53', 1),
(19194, 19968, 137, 5, 0, 'candidate not move on near by office so not selected ', 137, '2024-08-05 05:49:30', 1),
(19195, 20511, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19196, 20510, 131, 4, 0, 'Good communication can process for next  round', 126, '0000-00-00 00:00:00', 1),
(19197, 20510, 147, 7, 0, 'Fresher, communication is OK, ', 131, '2024-08-05 06:05:41', 1),
(19198, 20511, 147, 7, 0, 'Good communication and Good confident level', 131, '2024-08-05 06:07:38', 1),
(19199, 20494, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19200, 20494, 30, 7, 3, '20k suggested salary selected for rm we can try', 131, '2024-08-05 06:15:13', 1),
(19201, 20618, 59, 1, 0, NULL, 74, '2024-08-05 06:17:23', 1),
(19202, 20608, 51, 4, 0, 'moved to final round', 140, '2024-08-05 06:30:47', 1),
(19203, 20234, 51, 4, 0, 'moved ', 140, '2024-08-05 06:31:10', 1),
(19204, 20510, 59, 3, 0, 'Communication ok fresher came along with friend long run doubts can give a try anc check', 147, '2024-08-05 06:32:30', 1),
(19205, 20511, 59, 3, 0, 'Communication Ok Fresher for our roles Can give a try and check in 7 days', 147, '2024-08-05 06:37:53', 1),
(19206, 20591, 60, 1, 0, NULL, 149, '2024-08-05 07:15:35', 1),
(19207, 20637, 138, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19208, 20638, 19, 5, 0, 'not fit for sales and tele calling too', 104, '0000-00-00 00:00:00', 1),
(19209, 20641, 105, 5, 0, 'candidate communication and performance is not good also like little bit attitude charater,then sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(19210, 20639, 51, 5, 0, 'i have moved this profile to karthika and she as rejected', 104, '0000-00-00 00:00:00', 1),
(19211, 20494, 60, 1, 0, NULL, 30, '2024-08-06 11:31:52', 1),
(19212, 20640, 137, 5, 0, 'candidate only interest on it related work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19213, 20640, 137, 5, 0, 'candidate only interest on it related work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19214, 20635, 149, 5, 0, 'not suitable for sales', 104, '0000-00-00 00:00:00', 1),
(19215, 20368, 57, 5, 0, 'candidate not suitable for sales profile , communication not good field work not interest', 104, '0000-00-00 00:00:00', 1),
(19216, 20646, 139, 7, 0, 'Selected for Rm profile \nhaving some exp in sales\nwill try for rm profile \nsal exp 20k above \nimmediate joiner ', 104, '0000-00-00 00:00:00', 1),
(19217, 20645, 89, 7, 0, 'Selected , 14.5 k salary my suggestion ', 104, '0000-00-00 00:00:00', 1),
(19218, 20643, 105, 7, 0, 'candidate communication and performance is good ,also She Performed Well In The INterview process,will check with her in the training period', 104, '0000-00-00 00:00:00', 1),
(19219, 20644, 137, 7, 0, 'candidate voice and communication is ok and she past work 6 month work for hdfc  credit card and insurance also  so i will try for 7 days trainng period ', 104, '0000-00-00 00:00:00', 1),
(19220, 20597, 139, 5, 0, 'Dont have communication skill and basic knowledge ', 104, '0000-00-00 00:00:00', 1),
(19221, 20652, 57, 5, 0, 'candidate not suitable for sales profile , communication not good field work not interest', 104, '0000-00-00 00:00:00', 1),
(19222, 20653, 57, 5, 0, 'candidate not suitable for sales profile , communication not good field work not interest', 104, '0000-00-00 00:00:00', 1),
(19223, 20647, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19224, 20648, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19225, 20645, 59, 3, 0, 'Fresher for our role Need to analyse in 7 days training  and confirm', 89, '2024-08-06 04:22:23', 1),
(19226, 20642, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19227, 20643, 59, 5, 0, 'Not open with the Distance too long she is from kattangulathur Father not ok wiht this', 105, '2024-08-06 04:57:51', 1),
(19228, 20644, 59, 3, 0, '6 months Exp in Calling have the documents 5050 sustainability need to analyse in 7 days', 137, '2024-08-06 05:29:11', 1),
(19229, 20646, 18, 7, 2, 'Selected for Gnanashekar Team. ImmedeateJoiner. Need to check his last salary and Expected Take home is 22k pm but can negotiate and do the needful.', 139, '2024-08-06 06:08:04', 1),
(19230, 20646, 60, 1, 0, NULL, 18, '2024-08-06 07:12:47', 1),
(19231, 20425, 60, 1, 0, NULL, 138, '2024-08-07 11:39:03', 1),
(19232, 20637, 60, 1, 0, NULL, 138, '2024-08-07 11:43:24', 1),
(19233, 20667, 19, 5, 0, 'not willing to work in saturday and sunday', 104, '0000-00-00 00:00:00', 1),
(19234, 20655, 105, 5, 0, 'candidate communication is not good ,also she have pronunciation issue and voice is very low.', 104, '0000-00-00 00:00:00', 1),
(19235, 20669, 57, 5, 0, 'candidate not suitable for sales profile , communication not good field work not interest', 104, '0000-00-00 00:00:00', 1),
(19236, 20658, 89, 7, 0, 'Hi suggest fresher salary', 104, '0000-00-00 00:00:00', 1),
(19237, 20670, 102, 5, 0, 'Candidate looking for customer support job ', 104, '0000-00-00 00:00:00', 1),
(19238, 20650, 131, 4, 0, 'Good communication and confident level have Experience in sales can process for next round', 126, '0000-00-00 00:00:00', 1),
(19239, 20650, 30, 7, 4, 'suggested upto 5lac ctc selected for rm', 131, '2024-08-07 01:04:41', 1),
(19240, 20628, 29, 7, 3, 'Sarath Team, will join in sept after notice period, salary 3.6 lac ( if completed 2 lac life and 10 MF in sept 30 day from joining can increase to 4 lac ctc', 51, '2024-08-07 01:07:30', 1),
(19241, 20608, 29, 7, 3, 'Sarath Team, 21k Net Salary, ', 51, '2024-08-07 01:12:03', 1),
(19242, 20234, 29, 7, 2, 'Sarath team, 26k Gross salary, has to do 1.5 lac life and 10k mf before sept then can increase to 28k gross', 51, '2024-08-07 01:19:20', 1),
(19243, 20488, 29, 5, 1, 'cannot trust, false information, not fit', 51, '2024-08-07 01:20:16', 1),
(19244, 20665, 74, 5, 0, 'LONG DISTANCE EXPECTED HIGH', 104, '0000-00-00 00:00:00', 1),
(19245, 20631, 74, 5, 0, 'NOT FIT FOR SALES ', 104, '0000-00-00 00:00:00', 1),
(19246, 20663, 131, 4, 0, 'Communication Is OK and Have Experience in sales can process for next Round', 126, '0000-00-00 00:00:00', 1),
(19247, 20663, 147, 7, 0, 'Communication is Ok ok, he has Experience in health insurance ', 131, '2024-08-07 02:10:10', 1),
(19248, 20672, 137, 5, 0, 'candidate mainly focus on our father business , just part time looking for the job so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(19249, 20659, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19250, 20664, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19251, 20666, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19252, 20668, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19253, 20675, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19254, 20674, 131, 2, 0, 'fresher, communication is OK, zero knowledge about sales ', 126, '0000-00-00 00:00:00', 1),
(19255, 20673, 131, 2, 0, 'Fresher, Communication Is OK, Zero Knowledge About Sales ', 126, '0000-00-00 00:00:00', 1),
(19256, 20663, 59, 3, 0, 'Communication but no sustainability in his previous exp can give a try and check need to analyse in 7 days training ', 147, '2024-08-07 06:56:15', 1),
(19257, 20678, 105, 5, 0, 'candidate communication and pereformance is low and his slang is different.then his voice is very low', 104, '0000-00-00 00:00:00', 1),
(19258, 20677, 149, 7, 0, 'selected', 104, '0000-00-00 00:00:00', 1),
(19259, 20608, 59, 1, 0, NULL, 29, '2024-08-08 12:01:12', 1),
(19260, 20628, 59, 3, 0, 'communication Ok have relevant Exp can give a try in our role Gaurav Sir Commitment 2L Life plus 10MF  in Oct then 40K increment in Annual', 29, '2024-08-08 12:03:52', 1),
(19261, 20681, 86, 5, 0, 'Ask 80% hike from previous CTC', 104, '0000-00-00 00:00:00', 1),
(19262, 20234, 59, 3, 0, 'Communication Ok can give a try in our roles and check Gaurav Sir Commitment 1.5 L Life plus 10MF then 2K increase in MCTC', 29, '2024-08-08 12:09:54', 1),
(19263, 20679, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19264, 20680, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19265, 20650, 60, 1, 0, NULL, 30, '2024-08-08 01:08:41', 1),
(19266, 20683, 19, 2, 0, 'Hold', 104, '0000-00-00 00:00:00', 1),
(19267, 20677, 60, 1, 0, NULL, 149, '2024-08-08 01:35:25', 1),
(19268, 20685, 51, 4, 0, 'Moved for second round', 104, '0000-00-00 00:00:00', 1),
(19269, 20425, 18, 7, 3, 'Selected for Jagadeesh Team. Can give 4.5L if he negotiate can give 4.6 and Immedeate Joiner. Experience candidate and plaease take approval for salary', 59, '2024-08-08 04:57:09', 1),
(19270, 20589, 131, 4, 0, 'Good communication and confident level can Process for next round', 126, '0000-00-00 00:00:00', 1),
(19271, 20589, 30, 7, 2, 'selected for rm suggested ctc 23 to 25k', 131, '2024-08-08 05:17:31', 1),
(19272, 20658, 59, 1, 0, NULL, 89, '2024-08-08 06:08:36', 1),
(19273, 20676, 11, 5, 0, 'rejected', 60, '0000-00-00 00:00:00', 1),
(19274, 20685, 29, 7, 2, 'Sarath, 21k net salary', 51, '2024-08-08 07:00:13', 1),
(19275, 20688, 137, 7, 0, 'candidate pastexp is starhealth telecalling 6 months  and previos tele sales exp also but not proper relaving , but voice and communication also ok , but exp is 20k pre month , so  will check 7 days training ', 104, '0000-00-00 00:00:00', 1),
(19276, 20689, 102, 5, 0, 'Candidate interested in iT Field ', 104, '0000-00-00 00:00:00', 1),
(19277, 20693, 19, 5, 0, 'expect high salary', 104, '0000-00-00 00:00:00', 1),
(19278, 20692, 105, 5, 0, 'candidate communication and performance is not good,also pronunciation is not good', 104, '0000-00-00 00:00:00', 1),
(19279, 20698, 131, 5, 0, 'Lack of Communication', 126, '0000-00-00 00:00:00', 1),
(19280, 20687, 149, 7, 0, 'selected - try for training period', 104, '0000-00-00 00:00:00', 1),
(19281, 20701, 51, 4, 0, 'moved to second round ', 104, '0000-00-00 00:00:00', 1),
(19282, 20671, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(19283, 20695, 19, 7, 0, 'selected ctc 16k and kindly check her exisiting work exp then proceed joining process', 104, '0000-00-00 00:00:00', 1),
(19284, 20700, 89, 7, 0, 'Selected already experience person my suggestion 16 k', 104, '0000-00-00 00:00:00', 1),
(19285, 20697, 105, 5, 0, 'candidate communication and slang is not good .also she did not performed well in the interview', 104, '0000-00-00 00:00:00', 1),
(19286, 20701, 29, 5, 0, 'Not Fit', 51, '2024-08-09 12:55:02', 1),
(19287, 20700, 59, 1, 0, NULL, 89, '2024-08-09 01:40:05', 1),
(19288, 20688, 59, 1, 0, NULL, 137, '2024-08-09 02:58:42', 1),
(19289, 20682, 102, 7, 0, 'Communication and convincing skill better will try training period once confirmed DOJ ', 104, '0000-00-00 00:00:00', 1),
(19290, 20695, 59, 1, 0, NULL, 19, '2024-08-09 04:14:11', 1),
(19291, 20682, 59, 5, 0, 'Not interested in the job roles travelled back to native not open to join', 102, '2024-08-09 04:39:42', 1),
(19292, 20589, 60, 1, 0, NULL, 30, '2024-08-09 06:43:21', 1),
(19293, 20707, 149, 7, 0, 'selected based on work interest,let try for 7 days', 104, '0000-00-00 00:00:00', 1),
(19294, 20713, 105, 5, 0, 'candidate communication and performance is not good .also he did not spoke much more in the interview then his voice is very low', 104, '0000-00-00 00:00:00', 1),
(19295, 20712, 19, 7, 0, 'job needed person lets try 7 days and confirm', 104, '0000-00-00 00:00:00', 1),
(19296, 20710, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19297, 20696, 89, 7, 0, 'Experienced. my suggestion 18 k ', 104, '0000-00-00 00:00:00', 1),
(19298, 20707, 59, 1, 0, NULL, 149, '2024-08-10 12:00:54', 1),
(19299, 20711, 138, 4, 0, 'Experienced in Life insurance industry around 2 to 3 years then Communication skills good and Attitude is fine then Mathematic skills medium so overall candidate status is selected but waiting for 2nd round result ', 104, '0000-00-00 00:00:00', 1),
(19300, 20712, 59, 5, 0, 'Too long distance - not much comfort with the timings', 19, '2024-08-10 12:22:11', 1),
(19301, 20716, 74, 5, 0, 'expected high', 104, '0000-00-00 00:00:00', 1),
(19302, 20714, 102, 5, 0, 'Communication and convincing skills is low and interested in Customer support ', 104, '0000-00-00 00:00:00', 1),
(19303, 20717, 149, 7, 0, 'selected - well do  at interview ', 104, '0000-00-00 00:00:00', 1),
(19304, 20704, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19305, 20708, 131, 5, 0, 'Fresher, Lack of Communication And Location Issue ', 126, '0000-00-00 00:00:00', 1),
(19306, 20705, 131, 5, 0, 'Fresher, Lagging in communication and Location Issue ', 126, '0000-00-00 00:00:00', 1),
(19307, 20704, 147, 7, 0, 'Fresher, good Communication skill and basic knowledge about insurance', 131, '2024-08-10 01:13:13', 1),
(19308, 20699, 51, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19309, 20696, 59, 3, 0, 'Communication Ok have exp but not relevant one 5050 Can give a try and check', 89, '2024-08-10 03:14:37', 1),
(19310, 20706, 131, 4, 0, 'Good communication and confident level can process for next', 126, '0000-00-00 00:00:00', 1),
(19311, 20706, 30, 7, 0, 'Communication Is Ok, Have In Sales Experience Suggested 22k Ctc Selected For Rm We Can Try', 131, '2024-08-10 03:31:02', 1),
(19312, 20704, 59, 1, 0, NULL, 147, '2024-08-10 06:02:00', 1),
(19313, 20722, 89, 5, 0, 'no basic skil', 104, '0000-00-00 00:00:00', 1),
(19314, 20719, 105, 5, 0, 'candidate communication and performance is low ,also voice is low and long distance sustainable is doubt', 104, '0000-00-00 00:00:00', 1),
(19315, 20725, 51, 8, 0, 'on attended for interview', 104, '0000-00-00 00:00:00', 1),
(19316, 20724, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19317, 20726, 11, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(19318, 20723, 74, 7, 0, 'He is ok with the profile completed BE mechanical- worked in a industial sector for two years, after came and join in thanjavur excela technologies uS shift 3 years experience, due to father health issue releived the job, speak well and have exposure....fit for team,,,, but already marriage fixed...after 3 month going to married ,,,salary expected 15k have laptop...kindly cross check once before joining...about sustainability', 104, '0000-00-00 00:00:00', 1),
(19319, 20727, 74, 5, 0, 'SUSTAINABILITY ISSUE', 104, '0000-00-00 00:00:00', 1),
(19320, 20728, 74, 5, 0, 'NOT FIT FOR TEAM', 104, '0000-00-00 00:00:00', 1),
(19321, 20730, 149, 5, 0, 'not  suitable for sales ', 104, '0000-00-00 00:00:00', 1),
(19322, 20729, 137, 7, 0, 'candidate voice and communication good , he past 6 months  work  from  garments agent, so try or 7 days training period and exp is 16k', 104, '0000-00-00 00:00:00', 1),
(19323, 20649, 105, 5, 0, 'candidate performance and communication little bit Only good ,but sutainable doubt also expected high package', 104, '0000-00-00 00:00:00', 1),
(19324, 20634, 131, 5, 0, 'Lack of communication and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(19325, 20736, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19326, 20737, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19327, 20738, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19328, 20732, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19329, 20733, 74, 5, 0, 'NOT SUITE FOR TELESALES', 104, '0000-00-00 00:00:00', 1),
(19330, 20734, 74, 5, 0, 'UNFIT FOR TELESALES', 104, '0000-00-00 00:00:00', 1),
(19331, 20735, 11, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19332, 20711, 18, 7, 0, 'Selected for Jagadeesh Team and Expected CTC Is 25k In hand. Please speak and confirmand immed joiner with insurance experience', 138, '2024-08-12 02:52:40', 1),
(19333, 20729, 59, 5, 0, 'communication Ok Have exp as a supervisor in the mechanical domain career gap due to father health issue looking for Inbound calls only and not open for Sales calls and not open to handle the pressure also doing IT course simultaneously', 137, '2024-08-12 03:12:58', 1),
(19334, 20711, 60, 1, 0, NULL, 18, '2024-08-12 04:39:08', 1),
(19335, 20723, 59, 3, 0, 'Communication Ok fresher for our roles have exp in other domain seems to be confident but long run doubts a lot Can give a try and check', 74, '2024-08-12 05:27:49', 1),
(19336, 20742, 19, 5, 0, 'salary expectation was too high and he is not fit for that', 104, '0000-00-00 00:00:00', 1),
(19337, 20743, 149, 5, 0, 'candidate was not okay with work timing and salary', 104, '0000-00-00 00:00:00', 1),
(19338, 20740, 57, 5, 0, 'Candidate is unfit for sales. Voice not good and communication not well', 104, '0000-00-00 00:00:00', 1),
(19339, 20746, 137, 5, 0, 'candidate mainly looking for non voice process and not interest to field work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19340, 20748, 71, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(19341, 20747, 86, 5, 0, 'Not satisfied. Ask 80% hike from previous ctc.', 104, '0000-00-00 00:00:00', 1),
(19342, 20749, 102, 7, 0, 'he is already doing own business but currently quick , financial issue orel communication and convincing skills is good then once confirm dOJ ', 104, '0000-00-00 00:00:00', 1),
(19343, 20752, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(19344, 20753, 105, 5, 0, 'Candidate communication and  performance is very low,also voice is low and lazy type ', 104, '0000-00-00 00:00:00', 1),
(19345, 20754, 140, 5, 0, 'No proper experince and no sales skills', 104, '0000-00-00 00:00:00', 1),
(19346, 20749, 59, 3, 0, 'Communication Ok Can give a try and check in  the 7 days training need to be trained a lot', 102, '2024-08-13 03:21:29', 1),
(19347, 20758, 9, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19348, 20757, 74, 5, 0, 'not fit for telesales', 104, '0000-00-00 00:00:00', 1),
(19349, 20762, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(19350, 20651, 89, 5, 0, 'silent person and not fit for the job', 104, '0000-00-00 00:00:00', 1),
(19351, 20764, 86, 5, 0, 'Behalf of me Gnanasekar looking this candidate, he rejected the candidate due to non performing well. ', 104, '0000-00-00 00:00:00', 1),
(19352, 20765, 139, 5, 0, 'Rejected he looking for operation jobs ', 104, '0000-00-00 00:00:00', 1),
(19353, 20633, 105, 7, 0, 'candidate communication and performance is good ,will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(19354, 20766, 11, 7, 0, 'shortliseted \nexpected salary 18k to 20k \nneed to surve notice period ', 104, '0000-00-00 00:00:00', 1),
(19355, 20633, 59, 3, 0, 'Communication Ok Have Exp in paisa bazarr for an year in business loan can give a try and check in 7 days training for your roles', 105, '2024-08-16 04:33:51', 1),
(19356, 20774, 149, 7, 0, 'selected -interested in working for sales', 104, '0000-00-00 00:00:00', 1),
(19357, 20775, 137, 5, 0, 'candidate very long distance and communication also very low so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19358, 20776, 19, 7, 0, 'syed Select the candidate lets try 7 days then we will confirm  ', 104, '0000-00-00 00:00:00', 1),
(19359, 20770, 89, 5, 0, 'no  basic skill. ', 104, '0000-00-00 00:00:00', 1),
(19360, 20777, 89, 5, 0, 'Average  skill person but not fit for the job . ', 104, '0000-00-00 00:00:00', 1),
(19361, 20779, 71, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(19362, 20773, 140, 5, 0, 'no sales skills', 104, '0000-00-00 00:00:00', 1),
(19363, 20774, 59, 5, 0, 'not comfort to work in telecalling  role looking for customer support role only focus for inbound calls only and not open for target not much comfort in timing as well', 149, '2024-08-17 12:29:54', 1),
(19364, 20687, 59, 1, 0, NULL, 149, '2024-08-17 12:43:18', 1),
(19365, 20717, 59, 5, 0, 'Not comfort to work in Sales Calling  not interested\n', 149, '2024-08-17 12:44:47', 1),
(19366, 20781, 86, 5, 0, 'Sriram sir rejected this candidate due to high salary package.', 104, '0000-00-00 00:00:00', 1),
(19367, 20788, 105, 5, 0, 'candidate communication is little bit good, but his performance in the interview is low', 104, '0000-00-00 00:00:00', 1),
(19368, 20794, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19369, 20797, 71, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(19370, 20800, 139, 5, 0, 'Not fit for RM profile \ndont have communication skill', 104, '0000-00-00 00:00:00', 1),
(19371, 20425, 60, 1, 0, NULL, 18, '2024-08-19 12:23:15', 1),
(19372, 20806, 51, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19373, 20802, 140, 4, 0, 'Good communication skills and confident with her answers, but expecting higher salary', 104, '0000-00-00 00:00:00', 1),
(19374, 10374, 138, 5, 0, 'he candidate struggled to effectively convey their thoughts and ideas during the interview and candidatexquots technical knowledge fell short of the requirements for the position so i decided final status is rejected', 104, '0000-00-00 00:00:00', 1),
(19375, 20790, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19376, 20798, 74, 5, 0, 'unfit for telesales', 104, '0000-00-00 00:00:00', 1),
(19377, 20791, 74, 7, 0, 'he is suite for telecalling, worked 1 month in quality control, father painter, brother doing BA english,, he is completed bsc chemistry,,,and applied for msc part time,,,have laptop expected 12 to 13k immeediate joining,,,kindly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(19378, 20799, 74, 7, 0, 'she is ok with the profile will to learn and perform, have exposure about the process,,,father driver earn 30k,,,,brother work in IT eran 25k...rental house only,,,,have laptop,,,,expected 10 to 15k,,,,,imeediate joining,,,,kindly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(19379, 20804, 89, 7, 0, 'Fresher, correct basic skill . Expected salary 16 k. As for the training period, it remains to be seen', 104, '0000-00-00 00:00:00', 1),
(19380, 20801, 137, 7, 0, 'candidate communication and vocie also good , completed course in sales and marketing , so try for 7days training period', 104, '0000-00-00 00:00:00', 1),
(19381, 20808, 86, 4, 0, 'Good communication. Selected for next round', 104, '0000-00-00 00:00:00', 1),
(19382, 20809, 19, 2, 0, 'Kindly hold the candidate', 104, '0000-00-00 00:00:00', 1),
(19383, 20786, 57, 7, 0, 'candidate is ok ,provide freshers salary. pls check he interested IT also pls check and give the joining date thanks', 104, '0000-00-00 00:00:00', 1),
(19384, 20810, 149, 5, 0, 'not  s0 good at speaking', 104, '0000-00-00 00:00:00', 1),
(19385, 20791, 59, 3, 0, 'Communication Ok Fresher can give a try and check in 7 days and confirm', 74, '2024-08-19 03:43:48', 1),
(19386, 20799, 59, 3, 0, 'Communication Ok Fresher Can give a try check neeed to analyse and confirm in 7 days training', 74, '2024-08-19 03:45:53', 1),
(19387, 20706, 59, 3, 0, 'Communication Ok fresher for our roles have exp in Admin Need to train and analyse in 7 days training ', 30, '2024-08-19 03:58:26', 1),
(19388, 20776, 59, 1, 0, NULL, 19, '2024-08-19 04:35:50', 1),
(19389, 20458, 19, 5, 0, 'not fit for sales and not fit field work', 19, '2024-08-19 04:37:22', 1),
(19390, 20807, 71, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(19391, 20683, 19, 5, 0, 'long distance and not much look was good(because he need to go field work)', 19, '2024-08-19 04:42:47', 1),
(19392, 20804, 59, 3, 0, 'Communication Ok Fresher Can be trained in our roles have basic knowledge can be analysed in 7 days training', 89, '2024-08-19 05:05:31', 1),
(19393, 20786, 59, 5, 0, 'Had a detailed discussion he much comfort to work in non voice process simultaneously looking for IT positions,if in between he gets an opportunity in that then he will move on', 57, '2024-08-19 05:06:00', 1),
(19394, 20808, 18, 7, 3, 'Mythiriyan Selected for Mani team. Current CTC is 3.84 and expected the same but can negotiate at 3.5L and can give a target for 4 months for 50k hike. Immediate Joiner.', 86, '2024-08-19 06:11:45', 1),
(19395, 20801, 59, 3, 0, 'Communication Ok Fresher Profile Can give a try and check in 7 days training Can be trained ', 137, '2024-08-20 09:51:40', 1),
(19396, 20818, 11, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19397, 20820, 89, 5, 0, 'He left the job because there was too much pressure in the place where he had already worked. So not fit for this job', 104, '0000-00-00 00:00:00', 1),
(19398, 20821, 19, 7, 0, 'She speaks well and comunication also good so lets try 7 days ctc 16k,join immediately', 104, '0000-00-00 00:00:00', 1),
(19399, 20690, 149, 5, 0, 'not have stability', 104, '0000-00-00 00:00:00', 1),
(19400, 20819, 71, 4, 0, 'Selected ', 104, '0000-00-00 00:00:00', 1),
(19401, 20822, 89, 7, 0, 'Selected. Already working at HDFC Bank back and team 2 month only.  Will analyse the training period', 104, '0000-00-00 00:00:00', 1),
(19402, 20823, 74, 7, 0, 'she is ok with the profile...worked 5 months in bajaj loan section telecalling, due to health condition not continue in chennai..,,father farmer two brothers studied in college, ,,,, from home 37 km around 50mins travel ....she is already travel in college time also in out bus....she is ok with that kindly cross check in that area only.....laptop ready to arranged required 1 month time due to financial condition,,,,,immediate joining,,,,expected 12 to 15k......have exposure and adaptive type..kindly check once', 104, '0000-00-00 00:00:00', 1),
(19403, 20822, 59, 3, 0, 'Communication Ok Need to check and confirm in the 7 days training ', 89, '2024-08-20 12:50:20', 1),
(19404, 20828, 57, 5, 0, 'Candidate is not ok, unfit for the sales. communication not good', 104, '0000-00-00 00:00:00', 1),
(19405, 20808, 60, 1, 0, NULL, 18, '2024-08-20 01:17:33', 1),
(19406, 20829, 137, 5, 0, 'candidate communicaioa and  voice not clear so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19407, 20796, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19408, 20831, 105, 5, 0, 'candidate voice is low also his communication and performance is is not good ,then sustainabil doubt', 104, '0000-00-00 00:00:00', 1),
(19409, 20812, 19, 5, 0, 'not fit for sales and not speak well', 104, '0000-00-00 00:00:00', 1),
(19410, 20830, 138, 4, 0, 'Experienced in Bank bazzar and good Communication Skills and Mathematic Skills medium... Personal attitude also fine finally overall skills also good but we need to Negotiate only salary... so move to Sriram sir and Decide', 104, '0000-00-00 00:00:00', 1),
(19411, 20789, 140, 4, 0, 'Selected for next round, good communication skills', 104, '0000-00-00 00:00:00', 1),
(19412, 20815, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(19413, 20814, 131, 5, 0, 'Sustainability Doubt lack of knowledge about the insurance', 126, '0000-00-00 00:00:00', 1),
(19414, 20819, 60, 1, 0, NULL, 71, '2024-08-20 03:21:51', 1),
(19415, 20821, 59, 1, 0, NULL, 19, '2024-08-20 03:38:22', 1),
(19416, 20823, 59, 3, 0, 'Communication Ok have 6 months PL exp can be trained in our roles too long distance she is open to travel can give a try and check ', 74, '2024-08-20 03:43:54', 1),
(19417, 20826, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19418, 20835, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19419, 20825, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19420, 20824, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19421, 20830, 18, 7, 0, 'Arish Selected for Jagadeesh Team. Can offer 3.5L as ctc and Immediate joiner.', 138, '2024-08-20 05:50:20', 1),
(19422, 20830, 60, 1, 0, NULL, 18, '2024-08-20 06:03:31', 1),
(19423, 20789, 29, 7, 3, 'Esales - Check on CTC and confirm with candidate for joining, ', 140, '2024-08-20 06:06:20', 1),
(19424, 20802, 29, 7, 3, 'Porrselvan team,', 140, '2024-08-20 06:07:28', 1),
(19425, 20842, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19426, 20840, 149, 5, 0, 'having interest in banking jobs ', 104, '0000-00-00 00:00:00', 1),
(19427, 20843, 57, 5, 0, 'cANDIDATE NOT SUITABLE FOR SALES PROFILE, SUSTAINABILITY', 104, '0000-00-00 00:00:00', 1),
(19428, 20846, 140, 5, 0, 'Rejected due to concincing skills', 104, '0000-00-00 00:00:00', 1),
(19429, 20847, 19, 5, 0, 'Telugu Girl and not Speak tamil well and not try to speak also ,slang also not good', 104, '0000-00-00 00:00:00', 1),
(19430, 20848, 102, 5, 0, 'candidate already working in bill counter so, right now looking just one job but , communication skill is lower and not fit in sales ', 104, '0000-00-00 00:00:00', 1),
(19431, 20853, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19432, 20832, 71, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(19433, 20852, 139, 5, 0, 'Not fit for sales profession', 104, '0000-00-00 00:00:00', 1),
(19434, 20857, 89, 7, 0, '1 year experience from cams .  Previous salary 16 k. So I analyse 7 days training.', 104, '0000-00-00 00:00:00', 1),
(19435, 20860, 19, 5, 0, 'not try to speak ,i gave time to prepare but she not come again', 104, '0000-00-00 00:00:00', 1),
(19436, 20865, 149, 7, 0, 'selected having interest in sales lets try and see at  training period', 104, '0000-00-00 00:00:00', 1),
(19437, 20864, 137, 5, 0, 'candidate future plan is SAP studing , so that reason to searching for work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19438, 20526, 60, 1, 0, NULL, 18, '2024-08-21 03:50:44', 1),
(19439, 20857, 59, 1, 0, NULL, 89, '2024-08-21 04:03:01', 1),
(19440, 20863, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19441, 20861, 140, 5, 0, 'Not good for saes job, no prior experience also', 104, '0000-00-00 00:00:00', 1),
(19442, 20865, 59, 3, 0, 'Fresher Can be trained in our roles Communication Ok  Need to analyse in 7 days training', 149, '2024-08-21 04:57:15', 1),
(19443, 20802, 59, 3, 0, 'Communication Ok can give a try and check with the training Supposed to join  on 06 sept but got extended due to her personal issued', 29, '2024-08-21 05:20:44', 1),
(19444, 20789, 59, 3, 0, 'Communication verified the  documents not clear with the documents recent hike and she left the previous one', 29, '2024-08-21 05:22:39', 1),
(19445, 20773, 59, 3, 0, 'Communication Ok  documents not clear with the exp mentioned in the profile based on the manager approval provided with the joining need to check in 7 days and confirm', 29, '2024-08-21 05:23:55', 1),
(19446, 20805, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19447, 20873, 19, 5, 0, 'not willing to work 20% field work', 104, '0000-00-00 00:00:00', 1),
(19448, 20875, 102, 7, 0, 'candidate communication and convincing is good will training period and once confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(19449, 20866, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19450, 20870, 149, 7, 0, 'selected having interest and experience in sales and 16000 ctc', 104, '0000-00-00 00:00:00', 1),
(19451, 20869, 137, 7, 0, 'candidate communication and voice also good , fresher, he come from moolakadi location traviling bus only , so try for 7 days trining and exp salary is 15k ', 104, '0000-00-00 00:00:00', 1),
(19452, 20876, 11, 5, 0, 'low sales skills \n2nd round interviewed by gaurav sir ', 104, '0000-00-00 00:00:00', 1),
(19453, 20877, 105, 5, 0, 'Candidate Communication and performance is good but he is preparing for TNPSC exam also he said he nee job for temporarly.so sutain is dount', 104, '0000-00-00 00:00:00', 1),
(19454, 20870, 59, 3, 0, 'Communication Ok fresher for roles have other exp can be trained in our role need to check and analyse in 7 days training', 149, '2024-08-22 11:59:01', 1),
(19455, 20694, 131, 4, 0, 'Good communication and confident level can process for next', 126, '0000-00-00 00:00:00', 1),
(19456, 20772, 131, 4, 0, 'Good Communication And Confident Level Can Process For Next', 126, '0000-00-00 00:00:00', 1),
(19457, 20694, 30, 7, 4, 'suggested ctc upto 30k cross check sustainability good communication skill ', 131, '2024-08-22 12:02:48', 1),
(19458, 20772, 30, 7, 4, 'suggested in hand 24k cross check previous pay immediate joining for rm', 131, '2024-08-22 12:03:18', 1),
(19459, 20880, 89, 5, 0, 'Experienced but not fit for this job', 104, '0000-00-00 00:00:00', 1),
(19460, 20871, 139, 4, 0, 'Selected for rm profile \nhaving voice process exp\ndont have exp in slaes\nwe can try for rm profile ', 104, '0000-00-00 00:00:00', 1),
(19461, 20872, 86, 5, 0, 'No proper appearance. Low convincing skill.', 104, '0000-00-00 00:00:00', 1),
(19462, 20882, 71, 4, 0, 'Selected for next round ', 104, '0000-00-00 00:00:00', 1),
(19463, 20879, 138, 5, 0, 'he candidate struggled to effectively convey their thoughts and ideas during the interview and candidatexquots technical knowledge fell short of the requirements for the position so i decided final status is rejected', 104, '0000-00-00 00:00:00', 1),
(19464, 20884, 138, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19465, 20869, 59, 3, 0, 'Communication Ok Fresher for Sales Roles have Accounts intern exp Mum is an LIC agent need to have the data secrecy', 137, '2024-08-22 04:00:16', 1),
(19466, 20886, 11, 5, 0, 'not interested in sales ', 104, '0000-00-00 00:00:00', 1),
(19467, 20766, 60, 1, 0, NULL, 11, '2024-08-22 04:54:06', 1),
(19468, 20875, 59, 3, 0, 'Communication OK Can give a try in our roles have part time store exp can be trained', 102, '2024-08-22 05:10:04', 1),
(19469, 20882, 18, 7, 0, 'Pavithra Selected for Santhosh team and Offered 3.5L CTC. Immediate Joiner.', 71, '2024-08-22 05:12:21', 1),
(19470, 20874, 74, 7, 0, 'she is ok with the profile ,,father left ,,,,already worked 1 and half year in us base excella technologies..facing accident and 6 months gap...after he joined swiggy customer care 6 month due to timing issue she releived,,,,,have laptop,,,1 hour travel from home immediate joining,,,12 to 13k expected kindly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(19471, 20827, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19472, 20868, 131, 4, 0, 'Fresher, Communication is OK can process for next', 126, '0000-00-00 00:00:00', 1),
(19473, 20827, 147, 7, 0, 'Good communication and confident, she is fresher we can process ', 131, '2024-08-22 06:43:57', 1),
(19474, 20868, 147, 7, 0, 'communication is ok, fresher, we can give a try ', 131, '2024-08-22 06:44:39', 1),
(19475, 20827, 59, 1, 0, NULL, 147, '2024-08-22 06:50:20', 1),
(19476, 20868, 59, 1, 0, NULL, 147, '2024-08-22 06:53:08', 1),
(19477, 20896, 89, 5, 0, 'no  basic skill', 104, '0000-00-00 00:00:00', 1),
(19478, 20882, 60, 1, 0, NULL, 18, '2024-08-23 10:17:51', 1),
(19479, 20898, 86, 5, 0, 'No laptop and No Pressure handling skill. ', 104, '0000-00-00 00:00:00', 1),
(19480, 20694, 60, 1, 0, NULL, 30, '2024-08-23 11:11:31', 1),
(19481, 20772, 60, 1, 0, NULL, 30, '2024-08-23 11:12:48', 1),
(19482, 20897, 138, 5, 0, 'Poor Communication Skills and  Limited Technical Expertise...Lack of Problem-Solving Abilities and finally Unprepared and Disorganized so not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19483, 20899, 11, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19484, 20809, 19, 2, 0, 'Hold', 19, '2024-08-23 11:40:47', 1),
(19485, 20903, 19, 7, 0, 'Selected job needed person ctc 16k', 104, '0000-00-00 00:00:00', 1),
(19486, 20895, 11, 7, 0, 'kindly follow the gaurav sir feedback ', 104, '0000-00-00 00:00:00', 1),
(19487, 20890, 149, 5, 0, 'rejected -not so interested', 104, '0000-00-00 00:00:00', 1),
(19488, 20903, 59, 1, 0, NULL, 19, '2024-08-23 12:42:14', 1),
(19489, 20871, 18, 1, 0, NULL, 139, '2024-08-23 12:45:43', 1),
(19490, 20904, 139, 5, 0, 'not fit for rm\nfresher', 104, '0000-00-00 00:00:00', 1),
(19491, 20905, 105, 7, 0, 'candidate communication is good ,but her performanc is little bit good ', 104, '0000-00-00 00:00:00', 1),
(19492, 20906, 89, 7, 0, 'good basic skill. freshers salary i Suggest. but long distance poonamalle', 104, '0000-00-00 00:00:00', 1),
(19493, 20906, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days', 89, '2024-08-23 02:59:56', 1),
(19494, 20909, 140, 5, 0, 'no convincing skills, no looking profiled also', 104, '0000-00-00 00:00:00', 1),
(19495, 20907, 139, 5, 0, 'dont have exp in sales\ndont have communication skills', 104, '0000-00-00 00:00:00', 1),
(19496, 20854, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19497, 20901, 89, 7, 0, 'already Experience at care health insurance 2023 to 24 .Because health Issues.   Suggestion 17 k salary', 104, '0000-00-00 00:00:00', 1),
(19498, 20902, 89, 7, 0, 'already Experience at care health insurance 2023 to2024. Because of father health issue. i Suggestion 17 k salary', 104, '0000-00-00 00:00:00', 1),
(19499, 20908, 19, 7, 0, 'Speaks well already having working exp ctc 16k ', 104, '0000-00-00 00:00:00', 1),
(19500, 20915, 149, 7, 0, 'selected -interested in sales  ', 104, '0000-00-00 00:00:00', 1),
(19501, 20908, 59, 3, 0, 'Communication Ok fresher for our roles can be trained need to analyse and confirm in 7 days', 19, '2024-08-24 11:01:09', 1),
(19502, 20911, 102, 5, 0, 'communication and convincing skill is low not fit sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19503, 20910, 11, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19504, 20918, 139, 5, 0, 'not fit for sales industry\ndont have communication skill', 104, '0000-00-00 00:00:00', 1),
(19505, 20921, 57, 5, 0, 'candidate is fresher, she married.distance too long. husband working same domain. unfit for voice process.reject the profile', 104, '0000-00-00 00:00:00', 1),
(19506, 20915, 59, 1, 0, NULL, 149, '2024-08-24 11:43:48', 1),
(19507, 20920, 102, 5, 0, 'communication and convincing skill is low not fit sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19508, 20919, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19509, 20922, 140, 4, 0, 'Selected for karthika team', 104, '0000-00-00 00:00:00', 1),
(19510, 20917, 86, 5, 0, 'No proper communication. Missing the communication flow', 104, '0000-00-00 00:00:00', 1),
(19511, 20914, 149, 5, 0, 'not suitable for team', 104, '0000-00-00 00:00:00', 1),
(19512, 20924, 11, 7, 0, 'Ok for E sales', 104, '0000-00-00 00:00:00', 1),
(19513, 20916, 74, 7, 0, 'she is ok with the profile, father passed away ....so father job given to mother job archelogy department work in chennai 35k,,,package,,,,,she is worked in IT in chennai,,due to health issue she releived currently looking in thanjavur,,,,intrsted in telecalling,,have laptop,,expectd 13 to 15k.....immediate joining..', 104, '0000-00-00 00:00:00', 1),
(19514, 20889, 74, 5, 0, 'unfit for telesales', 104, '0000-00-00 00:00:00', 1),
(19515, 20902, 59, 1, 0, NULL, 89, '2024-08-24 03:30:34', 1),
(19516, 20901, 59, 1, 0, NULL, 89, '2024-08-24 03:31:44', 1),
(19517, 20685, 59, 3, 0, 'Communicaiton Ok Have Expin calling relevant domain but no documents can give a try and check based on gaurav sir commitment offered', 29, '2024-08-24 04:06:27', 1),
(19518, 20916, 59, 3, 0, 'Communication Fresher core IT candidate due to family situation open for Telecalling need to analyse in 7 days and check', 74, '2024-08-24 05:00:27', 1),
(19519, 20874, 59, 3, 0, 'Communication Ok Haev exp in calling but not a relevant one can give a try and check ', 74, '2024-08-24 05:06:42', 1),
(19520, 20855, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19521, 20905, 59, 3, 0, 'Communication Average Can give a try and check 3months calling exp in HDB but no documents for that need to analyse in 7 days', 105, '2024-08-26 08:02:03', 1),
(19522, 20937, 11, 5, 0, 'Rejected ', 104, '0000-00-00 00:00:00', 1),
(19523, 20941, 137, 5, 0, 'candidate is very local voice and not good communication and dress code is not proper so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19524, 20940, 19, 7, 0, 'her exisiting work exp  was good but she jumped every 3 month but i speak with her clearly so she will work and she speaks good ctc 16k', 104, '0000-00-00 00:00:00', 1),
(19525, 20939, 19, 2, 0, 'hold', 104, '0000-00-00 00:00:00', 1),
(19526, 20841, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19527, 20938, 19, 5, 0, 'not fit for sales and he did not speak properly', 104, '0000-00-00 00:00:00', 1),
(19528, 20942, 149, 7, 0, 'selected - she has having interest and done good but having some thoughts so lets try for 7 days training time', 104, '0000-00-00 00:00:00', 1),
(19529, 20948, 102, 5, 0, 'communication and convincing skill is low not fit sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19530, 20936, 89, 7, 0, 'Current now Working Credit card sales . good skill and good customer handling skills. expect salary 19 to 20 k. Previous salary 18 k proof available', 104, '0000-00-00 00:00:00', 1),
(19531, 20944, 11, 7, 0, 'ok for e sales \nkindly confirm the CTC', 104, '0000-00-00 00:00:00', 1),
(19532, 20949, 140, 5, 0, 'Not having convincing skills', 104, '0000-00-00 00:00:00', 1),
(19533, 20952, 105, 5, 0, 'candidate communication and performance is Poor,  also he did not spoke much more in the interview,this his voice is very low', 104, '0000-00-00 00:00:00', 1),
(19534, 20953, 140, 5, 0, 'No sales skills', 104, '0000-00-00 00:00:00', 1),
(19535, 20936, 59, 3, 0, 'Can give a try and check 5050 sustainability doubts ', 89, '2024-08-26 03:57:26', 1),
(19536, 20940, 59, 3, 0, 'Communication Ok 1.5yrs 4 companies not a relevant exp too 5050 profile reference profile with managers recommendation processing with the joining', 19, '2024-08-26 04:01:20', 1),
(19537, 20809, 19, 2, 0, 'hold', 19, '2024-08-26 04:08:26', 1),
(19538, 20946, 74, 7, 0, 'He is ok with the profile completed bE in parisutham college tnj....father doing business retail shop,,,,mother home maker,,,brother studied in srm chennai,,,,worked in swiggy telecalling 6 month due to iregular timing not continue in job getting 9k slary....and worked in a loan section trichy as WFH.....sales process and getting 7k salary.....required a good process in telecalling...expected 12 to 13k have laptop...immediate joining....have good communication kingly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(19539, 20946, 59, 3, 0, 'Communication OK have few months exp in calling PL BL HL Can give a try in our roles\n', 74, '2024-08-26 04:33:17', 1),
(19540, 20942, 59, 3, 0, 'Ok 5050 profile Can give a a try recently married sustainability not sure need to check in 7days and confirm', 149, '2024-08-26 05:23:33', 1),
(19541, 20960, 19, 7, 0, 'settled person but he said i will work and his exisiting work too loaded so i hope he wroks here well lets try 7 days and i will confirm ctc 16k\n', 104, '0000-00-00 00:00:00', 1),
(19542, 20963, 139, 4, 0, 'Selected for rm role\nhaving good communication skill ', 104, '0000-00-00 00:00:00', 1),
(19543, 20959, 105, 5, 0, 'candidate  Performance is good but Communication and pronuncication is not good  also he is pursuving for MBA Finance and his past working experiance is 4 -4 months only,so sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(19544, 20962, 89, 7, 0, 'current now working at Credit card sales.2 years Experience for two Companyxquots  expect 19 k', 104, '0000-00-00 00:00:00', 1),
(19545, 20961, 140, 4, 0, 'selected for next round', 104, '0000-00-00 00:00:00', 1),
(19546, 20958, 139, 5, 0, 'Rejected dont have communication skills ', 104, '0000-00-00 00:00:00', 1),
(19547, 20967, 89, 5, 0, 'silent person and no insurance  Knowledge  ', 104, '0000-00-00 00:00:00', 1),
(19548, 20960, 59, 3, 0, 'Communication Average need to open up a lot 5050 sustainability doubt need to analyse in 7 days and confirm', 19, '2024-08-27 12:05:03', 1),
(19549, 20809, 59, 5, 0, 'Not comfort to work in telecalling process', 19, '2024-08-27 12:16:41', 1),
(19550, 20809, 19, 7, 0, 'she speaks well and check with distance and she joined sep 2nd ifshe not joined means kindly reject her', 19, '2024-08-27 12:16:41', 1),
(19551, 20969, 89, 5, 0, 'NO BASIC SKILLS', 104, '0000-00-00 00:00:00', 1),
(19552, 20970, 57, 5, 0, 'Candidate is not ok.he unfit for sales profile. sustainability issue, 2yrs not worked.', 104, '0000-00-00 00:00:00', 1),
(19553, 20963, 18, 7, 3, 'Selected for Gnanashekar Team. Ready to Join from 1st. Current CTC is  3.5 and Expected 4L but can close at 3.85.', 139, '2024-08-27 01:07:04', 1),
(19554, 20968, 138, 4, 0, 'overall 1.6 years in sales and telecalling experience... little bit some gap in unemployed at 2022-2023 and mathematic skills and personal attitude skills are good so selected for next round and need to negotiate the salary and confirm from sriram', 104, '0000-00-00 00:00:00', 1),
(19555, 20974, 71, 4, 0, 'Move to next round ', 104, '0000-00-00 00:00:00', 1),
(19556, 20968, 18, 7, 3, 'Selected for Jagadeesh Team.Offered 3L CTC.Immedeate Joiner', 138, '2024-08-27 03:24:44', 1),
(19557, 20975, 149, 5, 0, 'no stability in old jobs', 104, '0000-00-00 00:00:00', 1),
(19558, 20971, 138, 4, 0, 'Communication Skills and Mathematic Skills are Good... Personal attutide also fine finally skills also good but we need to Negotiate only salary... so move to Sriram sir and Decide', 104, '0000-00-00 00:00:00', 1),
(19559, 20976, 102, 5, 0, 'communication and convincing skill is low not fit sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19560, 20962, 59, 3, 0, '5050 profile sustainability doubts in this profile came along with her friend', 89, '2024-08-27 04:24:58', 1),
(19561, 20971, 18, 7, 3, 'Monika Selected for jagadeesh Team. Ready to Join on 5th Current CTC is 24 and Expected 28 Can easily negotiate with 10 t0 15% hike from Last CTC...', 138, '2024-08-27 05:20:16', 1),
(19562, 20971, 60, 1, 0, NULL, 18, '2024-08-27 05:30:43', 1),
(19563, 20974, 18, 7, 0, 'Shakira Selected for Santhosh Team. Offered 28k Net Take Home + PF. Ready to Join from 1st with 4.5 Years Experiecen', 71, '2024-08-27 05:44:01', 1),
(19564, 20884, 18, 9, 0, 'Refix and confrim', 138, '2024-08-27 05:45:39', 1),
(19565, 20963, 60, 1, 0, NULL, 18, '2024-08-27 06:30:46', 1),
(19566, 20974, 60, 1, 0, NULL, 18, '2024-08-27 07:52:18', 1),
(19567, 20986, 11, 5, 1, 'switched many companys in short perioid ', 104, '0000-00-00 00:00:00', 1),
(19568, 20944, 60, 1, 0, NULL, 11, '2024-08-28 11:01:32', 1),
(19569, 20895, 60, 1, 0, NULL, 11, '2024-08-28 11:02:25', 1),
(19570, 20924, 60, 1, 0, NULL, 11, '2024-08-28 11:02:56', 1),
(19571, 20983, 74, 7, 0, 'she is ok with the profile fresher and completed mba ...father retail shop,,,,have bike and immediate joining expected 15k,,,,speaked well and convinced,,,job need,,,immediate joining,,,,,suspected hamsavrdhini classmate kindly cross check once..', 104, '0000-00-00 00:00:00', 1),
(19572, 20985, 89, 5, 0, 'mo basic skill', 104, '0000-00-00 00:00:00', 1),
(19573, 20988, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19574, 20987, 102, 5, 0, 'communication and convincing skill is low not fit sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19575, 20956, 139, 7, 0, 'Selected for Rm role \nhaving exp in sales\nwill try for rm profile \nhaving good communication skills ', 104, '0000-00-00 00:00:00', 1),
(19576, 20984, 140, 4, 0, 'Selected, Looks like hard working can train  and see', 104, '0000-00-00 00:00:00', 1),
(19577, 20922, 29, 7, 3, 'karhtika team, 21k net salary', 140, '2024-08-28 12:38:25', 1),
(19578, 20992, 149, 5, 0, 'not int ', 104, '0000-00-00 00:00:00', 1),
(19579, 20981, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19580, 20989, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19581, 20997, 105, 7, 0, 'Candidate performance and communication is good ,but distance is too long ,will check with him in the traning period', 104, '0000-00-00 00:00:00', 1),
(19582, 20990, 19, 7, 0, 'kindly check with his exisiting exp and salary if all are correct means process 19k ctc immediate joining ', 104, '0000-00-00 00:00:00', 1),
(19583, 20993, 102, 5, 0, 'communication and convincing skill is low not fit sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19584, 20994, 19, 5, 0, 'he said he work visa for 45 days and do calling but he did not tell the product name itself', 104, '0000-00-00 00:00:00', 1),
(19585, 20922, 59, 5, 0, 'Drop - Due to her pregnancy confirmed not in a situation to continue', 29, '2024-08-28 01:38:39', 1),
(19586, 20961, 29, 7, 3, 'Karthika Team', 140, '2024-08-28 01:40:24', 1),
(19587, 20956, 18, 7, 3, 'Helmaltha Selected for Gananshekar team. Current CTC is 23k PM but expected 32k Per month. Can Join on Sep 15th. Quality candidate can give upto 3.5L. Please negotiate and release the offer...', 139, '2024-08-28 02:21:54', 1),
(19588, 20990, 59, 3, 0, 'Communication ok have exp in calling just dial document verified can be train and check in 7 days', 19, '2024-08-28 02:51:10', 1),
(19589, 20991, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19590, 20995, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19591, 21001, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19592, 21000, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19593, 20998, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(19594, 20961, 59, 1, 0, NULL, 29, '2024-08-28 07:59:08', 1),
(19595, 21009, 67, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19596, 21011, 19, 5, 0, 'she intrested in microbiology', 104, '0000-00-00 00:00:00', 1),
(19597, 21012, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19598, 21016, 149, 5, 0, 'timing not suited  for her so rejected', 104, '0000-00-00 00:00:00', 1),
(19599, 21013, 139, 5, 0, 'not interested work in sales ', 104, '0000-00-00 00:00:00', 1),
(19600, 21002, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19601, 21015, 105, 5, 0, 'candiate communcation and performance is not good ,also her voice is very low,then her sustain is doubt', 104, '0000-00-00 00:00:00', 1),
(19602, 21023, 105, 7, 0, 'candidate communication and peeformance is good ,will Check With hert in the traning period', 104, '0000-00-00 00:00:00', 1),
(19603, 21018, 149, 5, 0, 'office timing was not ok with her ', 104, '0000-00-00 00:00:00', 1),
(19604, 21019, 11, 5, 0, 'have experience in customer suppot\nnot on sales .wont suitable ', 104, '0000-00-00 00:00:00', 1),
(19605, 21024, 89, 7, 0, 'good skill and job needed person. Selected. fresher Exception 15 k  ', 104, '0000-00-00 00:00:00', 1),
(19606, 21023, 59, 1, 0, NULL, 105, '2024-08-29 12:49:09', 1),
(19607, 21029, 19, 5, 0, 'Not fit for sales ', 104, '0000-00-00 00:00:00', 1),
(19608, 20997, 59, 1, 0, NULL, 105, '2024-08-29 01:22:30', 1),
(19609, 21027, 11, 7, 0, 'gaurav sir met.current CTC 3.3L\nso same 3,3L is finalized.based on performance after 2 months 3.6 can be given ', 104, '0000-00-00 00:00:00', 1),
(19610, 21025, 11, 5, 1, 'expected salary is high.also sustainbility problem ', 104, '0000-00-00 00:00:00', 1),
(19611, 21014, 102, 7, 0, 'communication and convincing skill is good will try training period then confirm at DOJ ', 104, '0000-00-00 00:00:00', 1),
(19612, 21030, 102, 5, 0, 'Basic communication is low and he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19613, 21022, 131, 4, 0, 'Good Communication Can Process For Next Round', 126, '0000-00-00 00:00:00', 1),
(19614, 21021, 131, 4, 0, 'Fresher, Communication Is Ok Can Process For Next Round', 126, '0000-00-00 00:00:00', 1),
(19615, 21020, 131, 4, 0, 'Fresher, Communication is ok can process for next round', 126, '0000-00-00 00:00:00', 1),
(19616, 21020, 147, 7, 0, 'ok ok communication, fresher,  can give a try ', 131, '2024-08-29 03:27:03', 1),
(19617, 21021, 147, 7, 0, 'Fresher, communication is ok have some Confident we can give a try', 131, '2024-08-29 03:27:36', 1),
(19618, 21022, 147, 7, 0, 'communication is good have Experience and good confident  ', 131, '2024-08-29 03:28:25', 1),
(19619, 21020, 59, 3, 0, 'Communication Ok Fresher for Scratch need to train and check in 7days analysis', 147, '2024-08-29 03:34:03', 1),
(19620, 21021, 59, 3, 0, 'Communication Ok fresher in our roles career gap need to analyse in 7 days and confirm', 147, '2024-08-29 03:35:03', 1),
(19621, 21022, 59, 3, 0, 'Communication Ok No sustainabiloity in her previous exp can give a try and check in 7 days training', 147, '2024-08-29 03:36:06', 1),
(19622, 21035, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19623, 21024, 59, 3, 0, 'Communication Ok Fresher for Job Can give a try and check in 7 days', 89, '2024-08-29 05:06:28', 1),
(19624, 21008, 74, 7, 0, 'she is ok with the profile, father farmer, sister prepared for rRB, another sister worked in drivng school salary 15k,,,kanmani worked in annai car care accesories sale in offline and telecalling,,,salary 16k and incentives,,,speaked well and have the fluence,,,,,but expected 16 to 17k salary,,,have laptop,,,travel only in train not possible in bus train time 7:30 ...kindly cross check....timing...', 104, '0000-00-00 00:00:00', 1),
(19625, 21027, 60, 1, 0, NULL, 11, '2024-08-30 09:53:13', 1),
(19626, 21040, 19, 5, 0, 'not even try to speak', 104, '0000-00-00 00:00:00', 1),
(19627, 21017, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19628, 21039, 149, 5, 0, 'CANDIDATE WAS LOOKING FOR ANOTHER ROLE HR NOT INTERESTED IN SALES', 104, '0000-00-00 00:00:00', 1),
(19629, 20984, 29, 7, 2, 'porrselvan', 140, '2024-08-30 10:32:16', 1),
(19630, 21043, 102, 5, 0, 'Voice is low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19631, 21045, 74, 5, 0, 'expected high and not fit', 104, '0000-00-00 00:00:00', 1),
(19632, 21046, 57, 7, 0, 'candidate is 50/50. he interested in sales profile but distance too long. he  thinking about sunday appointments so kindly cross check sunday workings xxamp sustainability.', 104, '0000-00-00 00:00:00', 1),
(19633, 21047, 57, 5, 0, 'candidate is not suitable for sales profile, observation skills low, communication not good', 104, '0000-00-00 00:00:00', 1),
(19634, 21014, 59, 3, 0, 'Communication Ok Fresher for our roles current part time Rapido and zomato can give a try and train him', 102, '2024-08-30 12:33:51', 1),
(19635, 21048, 89, 7, 0, 'Good skill. And alredy experience school related. Expected 17 k.. will analyse 7 days training ', 104, '0000-00-00 00:00:00', 1),
(19636, 21041, 89, 5, 0, 'there is no need for this job. just time pass', 104, '0000-00-00 00:00:00', 1),
(19637, 21042, 19, 5, 0, 'Not fit for his excepting salary ', 104, '0000-00-00 00:00:00', 1),
(19638, 20984, 59, 3, 0, 'Fresher for our sales have exp in data entry and Quality work need to train from scratch and analyse in 7 days seems he is not much comfort with salary committed', 29, '2024-08-30 01:34:54', 1),
(19639, 21054, 105, 5, 0, 'candidate performance and communication is not good also she is not answered much more in the Basic interview Quetions', 104, '0000-00-00 00:00:00', 1),
(19640, 21055, 149, 5, 0, 'candidate  done interview with lack of communication ', 104, '0000-00-00 00:00:00', 1),
(19641, 21052, 102, 5, 0, 'convincing skill and communication is low and she is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19642, 21051, 19, 5, 0, 'She asking other department job', 104, '0000-00-00 00:00:00', 1),
(19643, 21049, 131, 4, 0, 'Fresher, communication is OK can process for next round', 126, '0000-00-00 00:00:00', 1),
(19644, 21050, 131, 4, 0, 'Good Communication can process fro next round', 126, '0000-00-00 00:00:00', 1),
(19645, 21049, 147, 7, 0, 'Communication is ok , fresher we can try ', 131, '2024-08-30 03:25:09', 1),
(19646, 21050, 147, 7, 0, 'Good communication and confident, fresher, salary expectation  18k to 20k', 131, '2024-08-30 03:25:51', 1),
(19647, 21049, 59, 3, 0, 'Fresher Communication Ok Can give a try and check recently married long run doubts check in 7 days training', 147, '2024-08-30 03:32:47', 1),
(19648, 21050, 59, 2, 0, 'Not much comfort in sales,she is holding an other offer in HR role she prefers that,the same day she attended 3 interviews and got selected in that - She needs time to confirm', 147, '2024-08-30 03:34:21', 1),
(19649, 21046, 59, 5, 0, 'Not comfort with the distance and  not interested to continue in this', 57, '2024-08-30 03:52:59', 1),
(19650, 21058, 131, 4, 0, 'Good communication and confident level have Experience into same field can process for next round ', 126, '0000-00-00 00:00:00', 1),
(19651, 21058, 30, 7, 4, 'suggested ctc 3.6lac currently active employee with Policy Bazzar cross check the joining date', 131, '2024-08-30 05:34:39', 1),
(19652, 21048, 59, 3, 0, 'have exp in calling for few mnths but not a relevant one can give a try and check ', 89, '2024-08-30 07:03:11', 1),
(19653, 21062, 74, 5, 0, 'NOT FIT', 104, '0000-00-00 00:00:00', 1),
(19654, 21008, 59, 3, 0, 'Communicaiton Ok have 1 yr exp but no documents can give a try and check in training period', 74, '2024-08-31 12:43:43', 1),
(19655, 20983, 59, 1, 0, NULL, 74, '2024-08-31 12:52:13', 1),
(19656, 21069, 131, 4, 0, 'Communication is OK, can process for next round', 126, '0000-00-00 00:00:00', 1),
(19657, 21069, 147, 7, 0, 'Communication is good, fresher in sales 6 months Experience in data entry ', 131, '2024-08-31 03:08:14', 1),
(19658, 21064, 131, 5, 0, 'Lagging with communication', 126, '0000-00-00 00:00:00', 1),
(19659, 21069, 59, 1, 0, NULL, 147, '2024-08-31 03:20:09', 1),
(19660, 21057, 149, 5, 0, 'communication was not good', 104, '0000-00-00 00:00:00', 1),
(19661, 21053, 89, 7, 0, 'fresher, good skill but will Analyst 7 days training', 104, '0000-00-00 00:00:00', 1),
(19662, 21075, 89, 5, 0, 'no bASIC SKILL', 104, '0000-00-00 00:00:00', 1),
(19663, 21083, 149, 7, 0, 'selected have communication and known about telesales', 104, '0000-00-00 00:00:00', 1),
(19664, 21078, 57, 5, 0, 'candidate is unfit for field sales. previously he working in collection company 2yrs and he daddy also working same company too 15yrs well settled. sal exp 25k he not interested for sales ', 104, '0000-00-00 00:00:00', 1),
(19665, 21072, 57, 5, 0, 'candidate is communication  good but distance too long. 2yrs experience but she totally forget the previous company process, so reject the profile', 104, '0000-00-00 00:00:00', 1),
(19666, 21089, 19, 5, 0, 'Not fit for sales ', 104, '0000-00-00 00:00:00', 1),
(19667, 21086, 149, 5, 0, 'rejected having interested in other jobs ', 104, '0000-00-00 00:00:00', 1),
(19668, 21096, 57, 7, 0, 'Candidate is ok, 1yrs exp manpower agency company like arrange the car drivers. nit shift. 15k to 16k salary exp. pls negotiate the salary and ask payslip or offer letter. confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(19669, 21095, 137, 5, 0, 'candidate is very lacey and very local voice  , and commuication also not well so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19670, 21074, 138, 5, 0, 'Poor Communication Skills and  Limited Technical Expertise...Lack of Problem-Solving Abilities and finally Unprepared and Disorganized so not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19671, 21073, 11, 5, 0, 'wont have sales skills ', 104, '0000-00-00 00:00:00', 1),
(19672, 21103, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19673, 21084, 137, 5, 0, 'candidate just looking for job ater6 month try or own busines for our father support  , so he so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19674, 21077, 105, 7, 0, 'candidate couunication and performance is good ,but her distance is long (ennore), candidate told me she will relocate after getting job.other than her performace and voice is good .kindly verify her relocate process only', 104, '0000-00-00 00:00:00', 1),
(19675, 21079, 105, 5, 0, 'candidate communication ok but his perfomance is not good , his sister working in HDFC Telesales Process as a assistant manager,also little bit attitude type', 104, '0000-00-00 00:00:00', 1),
(19676, 21081, 89, 7, 0, 'money needed person. Average skills . but i wil analyst  7 days training', 104, '0000-00-00 00:00:00', 1),
(19677, 21092, 89, 5, 0, 'lang distance and Average skill . so not fit for the job', 104, '0000-00-00 00:00:00', 1),
(19678, 21101, 105, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19679, 20968, 60, 1, 0, NULL, 18, '2024-09-02 03:58:32', 1),
(19680, 21105, 89, 5, 0, 'no basic skill and Expectation high ', 104, '0000-00-00 00:00:00', 1),
(19681, 21096, 59, 1, 0, NULL, 57, '2024-09-02 05:03:55', 1),
(19682, 21106, 139, 5, 0, 'not suit for field sales \nhe looking for operation', 104, '0000-00-00 00:00:00', 1),
(19683, 21077, 59, 3, 0, 'Communication Ok Fresher Candidate Can give a try and check in 7 days training', 105, '2024-09-02 05:15:35', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(19684, 21080, 105, 5, 0, 'candidate performance and communication is not good, also she is not Answer much more in the interview quetions and basic quetions', 104, '0000-00-00 00:00:00', 1),
(19685, 21083, 59, 1, 0, NULL, 149, '2024-09-02 06:07:54', 1),
(19686, 21053, 59, 3, 0, 'Communication Ok Fresher MCom looking for Core opening too travel time 45 min Need to check in 7 days training and confirm', 89, '2024-09-02 06:09:51', 1),
(19687, 21081, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 89, '2024-09-02 06:11:17', 1),
(19688, 21093, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19689, 21090, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19690, 21100, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19691, 21099, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19692, 21102, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19693, 21063, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19694, 21115, 149, 5, 0, 'rejected  having double minded for it jobs and sales', 104, '0000-00-00 00:00:00', 1),
(19695, 21118, 139, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19696, 21114, 19, 2, 0, 'hold', 104, '0000-00-00 00:00:00', 1),
(19697, 21122, 19, 7, 0, 'speaks well and having work exp not in our dept so lets 7 days and confirm.Ref Manikandan salary ctc 19k and check his last company salary experance', 104, '0000-00-00 00:00:00', 1),
(19698, 21123, 57, 5, 0, 'candidate is unfit for the sales profile, communication not good.reject the profile', 104, '0000-00-00 00:00:00', 1),
(19699, 21125, 137, 5, 0, 'candidate very low voice and not understanding my words so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19700, 21127, 105, 7, 0, 'candidate communication and performance is good ,will check with her in the training and we can go for other process', 104, '0000-00-00 00:00:00', 1),
(19701, 21129, 57, 5, 0, 'candidate is unfit for the sales profile, communication not good.reject the profile', 104, '0000-00-00 00:00:00', 1),
(19702, 21128, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19703, 21112, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19704, 21127, 59, 1, 0, NULL, 105, '2024-09-03 01:13:31', 1),
(19705, 21133, 139, 4, 0, 'Selected for next round\nhaving exp in sales  but not relevant  \nwill try for rm profile ', 104, '0000-00-00 00:00:00', 1),
(19706, 21140, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19707, 21141, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19708, 21142, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19709, 21117, 89, 5, 0, 'no basic dressing , and no skill', 104, '0000-00-00 00:00:00', 1),
(19710, 21126, 74, 5, 0, 'NOT FIT', 104, '0000-00-00 00:00:00', 1),
(19711, 21126, 74, 5, 0, 'NOT FIT', 104, '0000-00-00 00:00:00', 1),
(19712, 21122, 59, 1, 0, NULL, 19, '2024-09-03 05:14:14', 1),
(19713, 20956, 60, 1, 0, NULL, 18, '2024-09-03 06:30:03', 1),
(19714, 21114, 59, 3, 0, 'Communication Ok can give a try and check based on manager approval proceed with the committed CTC', 19, '2024-09-03 07:37:58', 1),
(19715, 21114, 19, 7, 0, 'job needed person i hope he do well lets 7 days and we will confirm', 19, '2024-09-03 07:37:58', 1),
(19716, 21150, 105, 5, 0, 'candidate communcation and performance is not fair.sustanable is doubt', 104, '0000-00-00 00:00:00', 1),
(19717, 21149, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19718, 21162, 105, 5, 0, 'Candidate Performance and communication is not good ,also like have some attitude person', 104, '0000-00-00 00:00:00', 1),
(19719, 21132, 102, 5, 0, 'Communication and convincing skill is low and not suitable in sales ', 104, '0000-00-00 00:00:00', 1),
(19720, 21161, 138, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19721, 21154, 11, 5, 0, 'wontb suitable for sales ', 104, '0000-00-00 00:00:00', 1),
(19722, 21151, 139, 2, 0, 'Selected for Next round \nhold for some time due to pc manpower stopped', 104, '0000-00-00 00:00:00', 1),
(19723, 21163, 19, 7, 0, 'already working tele caller in hdfc for 6 month and her voice was good so we will try ctc 16k', 104, '0000-00-00 00:00:00', 1),
(19724, 21159, 137, 7, 0, 'candidate voice and communication  aslo good , past work exp for star health insurance in 2 month work salary issue to relaving the job, so try for 7 days training periods', 104, '0000-00-00 00:00:00', 1),
(19725, 21146, 19, 5, 0, 'not fit for insurance sales', 104, '0000-00-00 00:00:00', 1),
(19726, 21161, 18, 9, 0, 'Refix and confrim', 138, '2024-09-04 02:52:52', 1),
(19727, 21163, 59, 3, 0, 'Communication OK have 4 months calling exp but no documents can give a try and check in 7 days', 19, '2024-09-04 03:03:26', 1),
(19728, 21173, 57, 5, 0, 'candidate is unfit for the sales profile, communication not good.reject the profile', 104, '0000-00-00 00:00:00', 1),
(19729, 21159, 59, 3, 0, 'Fresher Need to train a lot should analyse in 7 days and confirm Core IT profile sustainability doubts', 137, '2024-09-04 03:43:09', 1),
(19730, 21164, 86, 5, 0, 'No proper communication,Low observation skill. Rejected the  candiadte.', 104, '0000-00-00 00:00:00', 1),
(19731, 21168, 139, 5, 0, 'dont have exp in sales\nnot fit for rm ', 104, '0000-00-00 00:00:00', 1),
(19732, 21151, 18, 9, 0, 'Refix and confrim', 139, '2024-09-04 03:52:54', 1),
(19733, 21133, 29, 7, 3, 'gnanasekhar team, ref resume for salary details.', 139, '2024-09-04 03:56:59', 1),
(19734, 21156, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19735, 21156, 147, 7, 0, 'Good communication and  one year Experience in sales salary expectation is 18k to 20k shortlisted', 131, '2024-09-04 07:07:20', 1),
(19736, 21155, 109, 5, 0, 'sustainability issue', 104, '0000-00-00 00:00:00', 1),
(19737, 21148, 109, 5, 0, 'communication not good. will not suitable for us', 104, '0000-00-00 00:00:00', 1),
(19738, 20023, 109, 5, 0, 'Communication is not good.\nShe will not continue longer', 104, '0000-00-00 00:00:00', 1),
(19739, 11700, 139, 5, 0, 'not interested work in sales ', 104, '0000-00-00 00:00:00', 1),
(19740, 21182, 102, 5, 0, 'Communication and convincing skill is low and not interested in field work ', 104, '0000-00-00 00:00:00', 1),
(19741, 21166, 137, 7, 0, 'candidate is ok and communication also good  and past 3 month work from bpo in vi sim center incentive probem to relaving the company all profe in hand ', 104, '0000-00-00 00:00:00', 1),
(19742, 21177, 19, 5, 0, 'not much aware in sales and basic information', 104, '0000-00-00 00:00:00', 1),
(19743, 21187, 19, 5, 0, 'too much of attitude and worth for that salary', 104, '0000-00-00 00:00:00', 1),
(19744, 20977, 11, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19745, 21184, 89, 5, 0, 'no  basic skill', 104, '0000-00-00 00:00:00', 1),
(19746, 21183, 89, 5, 0, 'very silent person', 104, '0000-00-00 00:00:00', 1),
(19747, 21179, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19748, 21190, 139, 4, 0, 'Selected for next round\nhaving good communication skills and basic sales knowledge \nwill try for rm profile ', 104, '0000-00-00 00:00:00', 1),
(19749, 21192, 19, 7, 0, 'job needed person lets try 7 days and confirm ctc 16k', 104, '0000-00-00 00:00:00', 1),
(19750, 21166, 59, 3, 0, 'Communication Ok 2months exp can give a try and check', 137, '2024-09-05 04:05:34', 1),
(19751, 21192, 59, 1, 0, NULL, 19, '2024-09-05 04:46:16', 1),
(19752, 21194, 19, 5, 0, 'Apperance was not good and his slang ', 104, '0000-00-00 00:00:00', 1),
(19753, 21190, 18, 7, 0, 'Monisha Selected for Gnanashekar team. Ready to Join from Monday. Expected Salary is 30k Take home but can negotiate 27k Take home + PF. Do not having Laptop but check the whether last take home is 27k.', 139, '2024-09-05 05:19:26', 1),
(19754, 21108, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19755, 21108, 147, 7, 0, 'good communication skill and good confident level expectation is 20k we can give a try', 131, '2024-09-05 06:29:51', 1),
(19756, 21181, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19757, 21181, 147, 7, 0, 'Good Communication have skills in sales salary Expectation is 18k to 20k, shortlisted ', 131, '2024-09-05 06:44:48', 1),
(19758, 21131, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19759, 21131, 147, 7, 0, 'Good communication and good at sales shortlisted', 131, '2024-09-05 06:50:28', 1),
(19760, 21108, 59, 1, 0, NULL, 147, '2024-09-05 06:53:13', 1),
(19761, 21181, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training and confirm sustainability doubts a lot', 147, '2024-09-05 06:56:58', 1),
(19762, 21156, 59, 3, 0, 'Communicaiton Ok have 4 months exp with 22K fresher for our roles can be trained need to analyse in 7 days training', 147, '2024-09-05 06:59:02', 1),
(19763, 21131, 59, 4, 0, 'Communication Ok Her Exp is high reviewing her profile can be checked for RM role too kindly check and let me know your inputs\n', 147, '2024-09-05 07:01:21', 1),
(19764, 21190, 60, 1, 0, NULL, 18, '2024-09-05 07:09:34', 1),
(19765, 21200, 19, 5, 0, 'not fit for sales too slow', 104, '0000-00-00 00:00:00', 1),
(19766, 21201, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19767, 21172, 57, 7, 0, 'candidate is ok, pls check with sustainability bcz previously she salary 16k some thing but now am offering 14k to 15k but she said ok. pls check and confirm the joining too.thanks', 104, '0000-00-00 00:00:00', 1),
(19768, 21196, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19769, 21204, 149, 5, 0, 'rejected - not have interest in sales', 104, '0000-00-00 00:00:00', 1),
(19770, 21204, 149, 5, 0, 'rejected - not have interest in sales', 104, '0000-00-00 00:00:00', 1),
(19771, 21203, 137, 5, 0, 'candidate is very long distance but communication and voice also good , but distance is not ok so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19772, 21197, 11, 4, 0, 'she is ok e sales .ctc 2.75L required \nneed to confirm that', 104, '0000-00-00 00:00:00', 1),
(19773, 21202, 86, 4, 0, 'Selected for next round. Good communication skills ', 104, '0000-00-00 00:00:00', 1),
(19774, 21185, 105, 5, 0, 'candidate performance is not good also his communication level is low and he did not spoked much more in interview', 104, '0000-00-00 00:00:00', 1),
(19775, 21172, 59, 1, 0, NULL, 57, '2024-09-06 12:02:11', 1),
(19776, 21205, 19, 7, 0, 'job needed person and she speaks well ctc 16k, she prefer immediate joining ,so kindly do the process', 104, '0000-00-00 00:00:00', 1),
(19777, 21195, 19, 5, 0, 'she is not intrested in insurance sales job', 104, '0000-00-00 00:00:00', 1),
(19778, 21199, 19, 5, 0, 'well settled family and she is not handle the pressure,not even try to speak', 104, '0000-00-00 00:00:00', 1),
(19779, 21207, 102, 7, 0, 'Communication and convincing skills is good will try training period kindly confirm DOJ', 104, '0000-00-00 00:00:00', 1),
(19780, 21211, 138, 5, 0, 'Struggling with tamil language so not fit for our sales ', 104, '0000-00-00 00:00:00', 1),
(19781, 21208, 86, 5, 0, 'Low convenience skill.expecting more salary', 104, '0000-00-00 00:00:00', 1),
(19782, 21214, 19, 2, 0, 'Referred by  Babu ', 104, '0000-00-00 00:00:00', 1),
(19783, 21216, 11, 5, 0, 'sustainability problem .\nchanged the companys frequently .\nwont suitable for calling', 104, '0000-00-00 00:00:00', 1),
(19784, 21205, 59, 3, 0, 'Communication Ok can give a try and check based on the managers approval provided CTC', 19, '2024-09-06 03:11:59', 1),
(19785, 21160, 137, 5, 0, 'candidate communication and voice not good and dress code also not well so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19786, 21158, 102, 5, 0, 'Candidate interested in voice process but communication and appearance level is low ', 104, '0000-00-00 00:00:00', 1),
(19787, 21157, 149, 5, 0, 'rejected - not so good at  interview', 104, '0000-00-00 00:00:00', 1),
(19788, 21217, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19789, 21207, 59, 3, 0, 'Communication Ok can give a try and check in 7 days 3 months exp in telesales can be trained ', 102, '2024-09-06 04:16:34', 1),
(19790, 21104, 57, 5, 0, 'candidate communication not well. unfit for the sales. reject the candidate', 104, '0000-00-00 00:00:00', 1),
(19791, 21215, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19792, 21133, 59, 3, 0, 'Communication Ok Have Exp in collection only Can give a try and check in 7 days', 29, '2024-09-09 12:35:39', 1),
(19793, 21230, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19794, 21235, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19795, 21229, 149, 7, 0, 'SELECTED -lets try for 7 days training ', 104, '0000-00-00 00:00:00', 1),
(19796, 21219, 19, 5, 0, 'Not fit for sales ', 104, '0000-00-00 00:00:00', 1),
(19797, 21218, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19798, 21228, 102, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19799, 21180, 105, 7, 0, 'Candidate performance xxamp communication is good,Also Have experiance in Other sales industry.Will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(19800, 21180, 59, 1, 0, NULL, 105, '2024-09-09 01:45:38', 1),
(19801, 21229, 59, 1, 0, NULL, 149, '2024-09-09 02:28:13', 1),
(19802, 21220, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19803, 21239, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19804, 21223, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19805, 21220, 30, 7, 3, 'k for dm suggested ctc upto 18k but try for 17k arun', 131, '2024-09-09 02:45:48', 1),
(19806, 21223, 30, 7, 3, 'considering fresher 20k suggested ctc for rm channel', 131, '2024-09-09 02:46:26', 1),
(19807, 21206, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19808, 21206, 147, 7, 0, 'Good communication and confident  fresher into sales process, shortlisted', 131, '2024-09-09 02:52:36', 1),
(19809, 21206, 59, 5, 0, 'Communication Good ,should check for RM role Final round Reject', 147, '2024-09-09 04:19:47', 1),
(19810, 21234, 131, 5, 0, 'Lack of confident', 126, '0000-00-00 00:00:00', 1),
(19811, 21259, 105, 7, 0, 'candidate communcation and performance is good,also he have experiance in telesales process.will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(19812, 21244, 19, 5, 0, 'not fit for sales and his voice is not clear', 104, '0000-00-00 00:00:00', 1),
(19813, 21266, 89, 5, 0, 'no need the job', 104, '0000-00-00 00:00:00', 1),
(19814, 21262, 149, 5, 0, 'rejected -having interest in other field', 104, '0000-00-00 00:00:00', 1),
(19815, 21222, 102, 5, 0, 'candidate communication is good but she is interested in customer support  ', 104, '0000-00-00 00:00:00', 1),
(19816, 21258, 11, 5, 0, 'met by kannan', 104, '0000-00-00 00:00:00', 1),
(19817, 21033, 19, 7, 0, 'Speaks Well lets try 7 days and we will confirm ,in hand salary 14k Immediate Joining', 104, '0000-00-00 00:00:00', 1),
(19818, 21269, 137, 5, 0, 'candidate communication ok but futur plan is own business so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19819, 21279, 57, 7, 0, 'Candidate is ok, pls confirm the joining date xxamp Salary.', 104, '0000-00-00 00:00:00', 1),
(19820, 21259, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training ', 105, '2024-09-10 12:40:34', 1),
(19821, 21253, 57, 7, 0, 'Candidate is ok,Communication good, Observation skills good.confirm the joining date .provide 13k to 13.5k,Thanks', 104, '0000-00-00 00:00:00', 1),
(19822, 21271, 139, 4, 0, 'Selected for Rm profile \nhaving 4 yr exp \nwill try for Rm  role \nhaving good communication skills', 104, '0000-00-00 00:00:00', 1),
(19823, 21275, 137, 5, 0, 'candidate communication and voice not good and future plan is own business , so not it for my team', 104, '0000-00-00 00:00:00', 1),
(19824, 21253, 59, 3, 0, 'Fresher Can give a try Can be trained interested to learn and executive check in 7 days training', 57, '2024-09-10 01:13:37', 1),
(19825, 21260, 19, 2, 0, 'Hold ', 104, '0000-00-00 00:00:00', 1),
(19826, 21033, 59, 1, 0, NULL, 19, '2024-09-10 01:41:45', 1),
(19827, 20939, 19, 5, 0, ' not fit for sales', 19, '2024-09-10 01:43:44', 1),
(19828, 21270, 57, 7, 0, 'Candidate is ok.pls confirm the joining date xxamp Salary.Thanks', 104, '0000-00-00 00:00:00', 1),
(19829, 21282, 149, 5, 0, 'rejected -communication was\nnot good', 104, '0000-00-00 00:00:00', 1),
(19830, 21284, 138, 4, 0, 'Experienced in telecalling department 1 year and Excellent Communication skills and Mathematics skills are average and Overall Attitude good so finally need to confirm with sriram sir and finalyse', 104, '0000-00-00 00:00:00', 1),
(19831, 21271, 18, 7, 0, 'Selected For Gnanshekar Team. Immedeate Joiner Please negotiate ctc.', 139, '2024-09-10 03:56:45', 1),
(19832, 21271, 60, 1, 0, NULL, 18, '2024-09-10 04:43:28', 1),
(19833, 21284, 18, 7, 0, 'Selcted for Gnanashekar Team. Can offer 25k CTC Ready to Join from Monday. ', 138, '2024-09-10 04:59:34', 1),
(19834, 21285, 137, 7, 0, 'candidate past exp for visa insurance in 1 year for team handeling , good communication and voice also good , better team handeing so try for 7 days training period , exp ctc is 18k to 20 k', 104, '0000-00-00 00:00:00', 1),
(19835, 21290, 102, 5, 0, 'Candidate communication and convincing skill is low but she is interested in IT ', 104, '0000-00-00 00:00:00', 1),
(19836, 21297, 89, 5, 0, 'no skill', 104, '0000-00-00 00:00:00', 1),
(19837, 21296, 137, 5, 0, 'candidate voice and commuication alo ok but a/c not accept  for our body condicion  so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(19838, 21299, 19, 7, 0, 'job needed person and he has tele calling exp kindly his exisiting pay slip and provide same ctc to him ctc 17k', 104, '0000-00-00 00:00:00', 1),
(19839, 21305, 57, 7, 0, 'candidate is ok. 1.3 yrs exp  5 month cc xxamp 8 month loan process both company she was abscond, pls cross check sustainability . provide 14k and confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(19840, 21302, 149, 5, 0, 'REJECTED- NOT HAVE CLARIFICATION ON STABILITY', 104, '0000-00-00 00:00:00', 1),
(19841, 21251, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(19842, 21298, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(19843, 21308, 105, 7, 0, 'CANDIDATE COMMUNICATION AND PERFORMANCE IS GOOD.WILL CHECK WITH HER IN THE TRAINING PERIOD', 104, '0000-00-00 00:00:00', 1),
(19844, 21309, 137, 5, 0, 'candidate very long distance and communication is not well so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19845, 21323, 89, 5, 0, 'NO BASIC SKILL', 104, '0000-00-00 00:00:00', 1),
(19846, 21304, 57, 7, 0, 'candidate is ok. babu attend the candidate, i was struck with another call, she working paisa bazaar.confirm the joinig date', 104, '0000-00-00 00:00:00', 1),
(19847, 21299, 59, 1, 0, NULL, 19, '2024-09-11 02:54:03', 1),
(19848, 21307, 19, 7, 0, 'job needed person and lets try 7 days then we will fix ', 104, '0000-00-00 00:00:00', 1),
(19849, 21314, 102, 5, 0, 'Candidate  communication and convincing is good but he is not interested in field work  ', 104, '0000-00-00 00:00:00', 1),
(19850, 21320, 149, 5, 0, 'REJECTED -NOT OK WITH FIELD WORK', 104, '0000-00-00 00:00:00', 1),
(19851, 21318, 105, 7, 0, 'CANDIDATE COMMUNICATION AND PERFORMANCE IS GOOD. hAVE 2 MONTHS EXPERIANCE IN POLICY BAZZAR ,WILL CHECK WITH HER IN THE TRAINING PERIOD', 104, '0000-00-00 00:00:00', 1),
(19852, 21307, 59, 3, 0, 'Communication Ok Fresher 20yrs job need is there can give a try and check in 7 days analysis', 19, '2024-09-11 04:03:22', 1),
(19853, 21322, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19854, 21325, 105, 5, 0, 'candidate communication is slighlty okey but his performance is not good also his voice and body language is not good', 104, '0000-00-00 00:00:00', 1),
(19855, 21324, 102, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19856, 21305, 59, 1, 0, NULL, 57, '2024-09-11 05:02:32', 1),
(19857, 21304, 59, 3, 0, 'Have exp in paisa bazaar for few months  joining doubts she is focusing on her friend job  also if she joins need to analyse in 7 days training', 57, '2024-09-11 05:03:40', 1),
(19858, 21308, 59, 3, 0, 'Communication Ok Can give a try in our roles need to analyse in 7 days training', 105, '2024-09-11 06:21:06', 1),
(19859, 21318, 59, 3, 0, 'Communication Ok Can ba trained in our roles verified the earlier document can give a try ', 105, '2024-09-11 06:22:04', 1),
(19860, 21354, 74, 7, 0, 'he is good for process...clear explanation and approch....completed BE in chennai and schooling also....cricket player and came to tnj due to father passed away and family situation...1 and half year experience in sales in eductaion loan in hdfc...for major abroad studies,,,,have good comincation...mother worked temporary in pwd ....sister doing BA.....own house have bike and with 15 mins to office...so we can go for this candidate...expected 15 to 20k imeediate joining ...searching for job past 6 month kindly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(19861, 21279, 59, 1, 0, NULL, 57, '2024-09-12 10:52:18', 1),
(19862, 21270, 59, 3, 0, 'Communication Ok Fresher for our roles  can give a try and check in 7 day analysis', 57, '2024-09-12 10:52:59', 1),
(19863, 21349, 57, 5, 0, 'Candidate not fit for the sales.Communication not well.', 104, '0000-00-00 00:00:00', 1),
(19864, 21355, 105, 7, 0, 'Candidate communication and performance  is good.will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(19865, 21363, 137, 7, 0, 'candidate communication and voice is good , candidate corona period work for real estate telecalling work , so i will try for 7 days training periods exp ctc is 15k ', 104, '0000-00-00 00:00:00', 1),
(19866, 21376, 19, 7, 0, 'She speaks well and 4 month exp in bajaj Finserv and she knows health and life product,her expectation 20k but in our side ctc would be 16k to 17k,kindly check her existing documents.', 104, '0000-00-00 00:00:00', 1),
(19867, 21186, 89, 5, 0, 'silent person and no basic skill', 104, '0000-00-00 00:00:00', 1),
(19868, 21357, 139, 5, 0, 'Rejected dont have communication skill and sales skills', 104, '0000-00-00 00:00:00', 1),
(19869, 21369, 105, 7, 0, 'candidate communication and performance is good ,also she have 3 month experiance in policy bazzar,will check with her in the training period', 104, '0000-00-00 00:00:00', 1),
(19870, 21329, 19, 7, 0, 'Speaks well job needed person in hand 13k salary', 104, '0000-00-00 00:00:00', 1),
(19871, 21376, 59, 1, 0, NULL, 19, '2024-09-12 03:05:20', 1),
(19872, 9690, 139, 2, 0, 'Selected for Next Round, \nDue to PC manpower hold \nwe can hold for some time ', 104, '0000-00-00 00:00:00', 1),
(19873, 21385, 139, 2, 0, 'Selected for Next round \nhold for some time due to pc manpower stopped', 104, '0000-00-00 00:00:00', 1),
(19874, 21329, 59, 3, 0, 'Communication Ok fresher for our roles can give a try and check in 7 days training', 19, '2024-09-12 03:20:55', 1),
(19875, 21386, 137, 5, 0, 'candiate full fales commitment and communication also not good , and very long disance so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19876, 21373, 57, 7, 0, 'Candidate is ok. 8 Month exp, pls check sustainability, pls confirm the joining date xxamp Salary', 104, '0000-00-00 00:00:00', 1),
(19877, 21388, 149, 5, 0, 'rejected - not having interest in sales looking for better option', 104, '0000-00-00 00:00:00', 1),
(19878, 21368, 149, 5, 0, 'REJECTED - not having patience ', 104, '0000-00-00 00:00:00', 1),
(19879, 21373, 59, 3, 0, 'Communicaiton Ok Have Exp in Altruist 8m process closed after 7days in vizza 4 in profin but didnt sustain with the companies Giving multiple reasons sustainability doubts in our profile too', 57, '2024-09-12 05:36:52', 1),
(19880, 21354, 59, 1, 0, NULL, 74, '2024-09-12 05:38:00', 1),
(19881, 21355, 59, 1, 0, NULL, 105, '2024-09-12 06:40:05', 1),
(19882, 21369, 59, 1, 0, NULL, 105, '2024-09-12 06:41:06', 1),
(19883, 21344, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19884, 21344, 30, 7, 3, 'sugessted ctc 17k to 18k fro dm', 131, '2024-09-12 06:47:44', 1),
(19885, 21223, 60, 1, 0, NULL, 30, '2024-09-13 09:37:32', 1),
(19886, 21058, 60, 1, 0, NULL, 30, '2024-09-13 09:39:39', 1),
(19887, 21285, 59, 1, 0, NULL, 137, '2024-09-13 10:37:20', 1),
(19888, 21363, 59, 3, 0, 'Communication Ok Fresher for our roles Can give a try and check kindly check in 7 days', 137, '2024-09-13 10:43:45', 1),
(19889, 21220, 60, 1, 0, NULL, 30, '2024-09-13 11:06:33', 1),
(19890, 21394, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19891, 21384, 57, 5, 0, 'Candidate is not fit for the sales, communication not good,sustainability issues. she int with bank jobs. distance too long', 104, '0000-00-00 00:00:00', 1),
(19892, 21415, 149, 5, 0, 'not having patience and not interested', 104, '0000-00-00 00:00:00', 1),
(19893, 21409, 137, 7, 0, 'candidate communication and voice ok , married women , work need and money need person , locatio also near by an dpast 1 year exp for phone sales  in oppo past 3 years back so try for 7 days training periods', 104, '0000-00-00 00:00:00', 1),
(19894, 21401, 131, 4, 0, 'Good communication  can process for next round', 126, '0000-00-00 00:00:00', 1),
(19895, 21401, 147, 7, 0, 'Good communication and good confident salary Expectation is 16k to 17k shortlisted', 131, '2024-09-13 02:00:39', 1),
(19896, 21401, 59, 3, 0, 'Communication Ok Can give a try and  check in 7 days training  and confirm', 147, '2024-09-13 02:04:07', 1),
(19897, 21392, 19, 5, 0, 'Not Fit for Sales and his existing was not good ', 104, '0000-00-00 00:00:00', 1),
(19898, 21412, 57, 7, 0, 'candidate is ok, paytm 6month experience field sales he get 18k. then he worked 2yrs health care 18k salary acc team,yesterday resigned, salary exp 19k to 20k . Communication ok.pls cross check with sustainability and distance too long tiruvallur, but they said move to koyambedu relatives home there.so pls check and  confirm the joining  date xxamp salary', 104, '0000-00-00 00:00:00', 1),
(19899, 21408, 89, 5, 0, 'NO BASIC SKILL', 104, '0000-00-00 00:00:00', 1),
(19900, 21407, 137, 5, 0, 'candidate future plan is own business  and commuication also not good so ot fit for my team\n', 104, '0000-00-00 00:00:00', 1),
(19901, 21406, 19, 5, 0, 'Not fit for sales ', 104, '0000-00-00 00:00:00', 1),
(19902, 21413, 149, 7, 0, 'selected -having good communication skills lets try for training period', 104, '0000-00-00 00:00:00', 1),
(19903, 20141, 138, 5, 0, 'Rejected\n', 18, '2024-09-13 04:38:54', 1),
(19904, 20142, 139, 1, 0, NULL, 18, '2024-09-13 04:39:29', 1),
(19905, 20637, 138, 5, 0, 'Rejected', 18, '2024-09-13 04:39:59', 1),
(19906, 20884, 138, 5, 0, 'Rejected', 18, '2024-09-13 04:40:41', 1),
(19907, 21151, 139, 2, 0, 'Selected for Next round \nhold for some time due to pc manpower stopped', 18, '2024-09-13 04:41:00', 1),
(19908, 21161, 138, 5, 0, 'Rejected', 18, '2024-09-13 04:41:18', 1),
(19909, 21284, 60, 1, 0, NULL, 18, '2024-09-13 04:43:32', 1),
(19910, 21197, 60, 1, 0, NULL, 11, '2024-09-13 04:46:09', 1),
(19911, 21412, 59, 1, 0, NULL, 57, '2024-09-13 04:46:20', 1),
(19912, 21286, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19913, 21286, 147, 7, 0, 'Good communication and confident is good shortlisted', 131, '2024-09-13 04:50:50', 1),
(19914, 21286, 59, 3, 0, 'Communication Ok have exp in receovery but not in sales  no document proof can betrained in our roles need to analyse in 7 days\n', 147, '2024-09-13 04:53:23', 1),
(19915, 21214, 19, 5, 0, 'Not fit for sales ', 19, '2024-09-13 04:58:36', 1),
(19916, 21409, 59, 3, 0, 'Communication Ok Previous exp as teacher Diploma in teaching no clarity on the tenure she worked as teacher worked in Oppo mobile showroom fresher for our role can give a try and check', 137, '2024-09-13 05:28:33', 1),
(19917, 21131, 30, 1, 0, NULL, 59, '2024-09-13 05:49:34', 1),
(19918, 21413, 59, 1, 0, NULL, 149, '2024-09-14 10:16:07', 1),
(19919, 21427, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19920, 21426, 139, 5, 0, 'Rejected \ndont have communication not fit for sales ', 104, '0000-00-00 00:00:00', 1),
(19921, 21430, 139, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19922, 21418, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19923, 21339, 149, 5, 0, 'rejected - not ok with working time hrs', 104, '0000-00-00 00:00:00', 1),
(19924, 21437, 139, 5, 0, 'rejected \ndont have communication skill\n', 104, '0000-00-00 00:00:00', 1),
(19925, 21431, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19926, 21202, 18, 8, 0, 'Hold beacuse of our Internal Issues', 86, '2024-09-14 01:26:24', 1),
(19927, 21330, 74, 7, 0, 'she is ok with the profile expected 10 to 12k.......already working in suryodhay finance loan collection timing mrng 8 to 7pm,,,,so ready to travel and aggressive type ....so try to fit for our process...have laptop...past salary 12k...have bike....have laptop...immediate joining...father carpenter,,,,from kumbakonam..kindly check once', 104, '0000-00-00 00:00:00', 1),
(19928, 21428, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19929, 21434, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19930, 21448, 57, 7, 0, 'candidate is ok, Communication good and convincing skills also good. pls cross check sustainability. exp 20k above but i have explained maximum 14k to 15k so pls confirm joining date thanks', 104, '0000-00-00 00:00:00', 1),
(19931, 21287, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19932, 21449, 139, 2, 0, 'Selected for Next round\nhold for some time \ndue to pc manpower holding ', 104, '0000-00-00 00:00:00', 1),
(19933, 21330, 59, 3, 0, 'Communication Ok open to travel from her native can give a try and check in 7 days training', 74, '2024-09-14 05:05:23', 1),
(19934, 21448, 59, 1, 0, NULL, 57, '2024-09-14 05:41:05', 1),
(19935, 21315, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19936, 21287, 147, 7, 0, 'Good communication, have Experience in sales process shortlisted', 131, '2024-09-14 06:42:04', 1),
(19937, 21315, 147, 7, 0, 'Good Communication, Have Experience In Sales Process Shortlisted', 131, '2024-09-14 06:43:06', 1),
(19938, 21287, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days has exp in lead generation Edelweisis life', 147, '2024-09-14 06:46:05', 1),
(19939, 21315, 59, 3, 0, 'Communication Ok Can be trained and check in 7 days analysis ', 147, '2024-09-14 06:46:33', 1),
(19940, 21433, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19941, 21433, 30, 7, 3, 'consider a fresher will pay 16k for dm', 131, '2024-09-14 06:50:26', 1),
(19942, 21458, 19, 5, 0, 'not even try to speak', 104, '0000-00-00 00:00:00', 1),
(19943, 21457, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19944, 21465, 57, 5, 0, 'candidate unfit for the sales, 29yrs old 2yr exp but no payslip no offer letter, communication not good,reject the profile', 104, '0000-00-00 00:00:00', 1),
(19945, 21469, 11, 5, 0, 'dont have sales experience. telecalling also wont suitable ', 104, '0000-00-00 00:00:00', 1),
(19946, 21455, 105, 5, 0, 'Candidate performance and communication is very low,also his voice and pronunciation is not clear', 104, '0000-00-00 00:00:00', 1),
(19947, 21472, 139, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19948, 21451, 137, 5, 0, 'candidate future plan is only own business and it related job only , after on month joning for it course so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19949, 21470, 149, 5, 0, 'rejected - having interest in it field', 104, '0000-00-00 00:00:00', 1),
(19950, 21464, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19951, 21482, 140, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19952, 21476, 137, 5, 0, 'previous exp is loan deparment , but currently chage sales , but she dontno for  sales , and very lacey person , so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19953, 21485, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19954, 21478, 149, 5, 0, 'REJECTED -  NOT OKAY WITH SALARY', 104, '0000-00-00 00:00:00', 1),
(19955, 21487, 149, 5, 0, 'REJECTED- NOT  HAVING COMMUNICATION SKILLS ', 104, '0000-00-00 00:00:00', 1),
(19956, 12378, 71, 4, 0, 'She is working in ABSLI now, Good communication and Sales skills, Good Product knowledge in Insurance basics, ', 104, '0000-00-00 00:00:00', 1),
(19957, 21498, 149, 7, 0, 'selected - done interview good ,having good communication skill in english and also have bike xxamp laptop and ready for field calls also so we can provide 16k as salary', 104, '0000-00-00 00:00:00', 1),
(19958, 12378, 18, 8, 0, 'Hold beacuse of our Internal Issues', 71, '2024-09-17 11:26:37', 1),
(19959, 21498, 59, 3, 0, 'Communication Ok Fresher for our roles have 6 months calling exp communication good can give a try and check', 149, '2024-09-17 12:04:42', 1),
(19960, 21463, 137, 5, 0, 'candidate coming is  very long distance  and and voce is also not clear , future plan is take care of our fatgre business , so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(19961, 21501, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19962, 21175, 29, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19963, 21433, 60, 1, 0, NULL, 30, '2024-09-17 05:47:05', 1),
(19964, 21344, 60, 1, 0, NULL, 30, '2024-09-17 05:48:08', 1),
(19965, 21506, 131, 4, 0, 'Fresher, Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19966, 21503, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19967, 21506, 147, 7, 0, 'Good Communication Skill and confident, Fresher, Shortlisted, Salary Discussed 16k', 131, '2024-09-17 06:44:45', 1),
(19968, 21503, 147, 7, 0, 'Good communication skill, fresher, shortlisted salary discussed 16k', 131, '2024-09-17 06:46:11', 1),
(19969, 21503, 59, 3, 0, 'Communication Ok 2 months exp in calling  Reason for exit seems not a valid one can give a try and check in 7 days ', 147, '2024-09-17 06:59:31', 1),
(19970, 21506, 59, 3, 0, 'Career Gap Family own business not much pressure to go wth job 5050 sustainability can check and confirm in 7days\n', 147, '2024-09-17 07:00:16', 1),
(19971, 21509, 19, 7, 0, 'Selected ctc 16k immediate joining', 104, '0000-00-00 00:00:00', 1),
(19972, 21525, 149, 7, 0, 'selected  -good at communication and done  better at  interview we can give 14 k as salary', 104, '0000-00-00 00:00:00', 1),
(19973, 21514, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19974, 21522, 102, 5, 0, 'communication  xxamp convincing  skill is lower and not interested in sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19975, 21536, 137, 5, 0, 'candidate future plan is it and own business plan , so just temporveryley surch for the job , so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19976, 21532, 19, 5, 0, 'not fit for tele calling ', 104, '0000-00-00 00:00:00', 1),
(19977, 21534, 89, 5, 0, 'silent person and basic skill very low', 104, '0000-00-00 00:00:00', 1),
(19978, 21492, 149, 5, 0, 'rejected - not so good at communicating and doing baed corres so unable to concentrate on this', 104, '0000-00-00 00:00:00', 1),
(19979, 21509, 59, 3, 0, 'Communication Ok fresher eager to learn can be trained in our roles need to check and confirm in 7days training', 19, '2024-09-18 12:08:51', 1),
(19980, 21542, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(19981, 21549, 131, 5, 0, 'lack of confident interested in IT field', 126, '0000-00-00 00:00:00', 1),
(19982, 21452, 131, 1, 0, NULL, 126, '0000-00-00 00:00:00', 1),
(19983, 21544, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19984, 21528, 19, 7, 0, 'she speaks well and job needed person ctc 15k, have tele exp', 104, '0000-00-00 00:00:00', 1),
(19985, 21525, 59, 3, 0, 'Communication Ok Have Exp in non voice more than 1yr can give a try and check in 7 days Open for telecalling ', 149, '2024-09-18 02:45:28', 1),
(19986, 21528, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 19, '2024-09-18 02:51:14', 1),
(19987, 21260, 19, 5, 0, 'not fit for sales', 19, '2024-09-18 02:57:37', 1),
(19988, 21550, 19, 7, 0, 'job needed person  and she working in health insurance for 6 month ctc 14 to 15k', 104, '0000-00-00 00:00:00', 1),
(19989, 21550, 59, 5, 0, 'Looking for Core IT vacancies just for time being  she is open to work but focusing IT only will not sustain', 19, '2024-09-18 03:00:26', 1),
(19990, 21547, 152, 4, 0, 'Moved for gnanasekar', 104, '0000-00-00 00:00:00', 1),
(19991, 21471, 102, 5, 0, 'communication  xxamp convincing  skill is lower and not interested in sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19992, 21561, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19993, 21551, 137, 5, 0, 'candidate very low voice and communication also not well so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19994, 21558, 149, 5, 0, 'not having  communication skills and english knowledge so basic no suitable', 104, '0000-00-00 00:00:00', 1),
(19995, 21548, 149, 7, 0, 'selected - good at communication ,english skills and confident approach we shall provide 14k salary', 104, '0000-00-00 00:00:00', 1),
(19996, 21557, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19997, 21543, 19, 5, 0, 'NOT FIT FOR SALES', 104, '0000-00-00 00:00:00', 1),
(19998, 21546, 19, 7, 0, 'job needed person and age 26 so lets we try with 15 to 16k ctc and voice good ,3 years gap and 1 exp in iT,PREFER IMMEDIATE JOINING', 104, '0000-00-00 00:00:00', 1),
(19999, 21295, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(20000, 21295, 147, 7, 0, 'communication skill is good she has confident shortlisted salary suggested 18k', 131, '2024-09-18 06:46:10', 1),
(20001, 21295, 59, 3, 0, 'Communication Ok Can be trained in our roles  need to analyse in 7 days training', 147, '2024-09-18 06:53:52', 1),
(20002, 21483, 74, 5, 0, 'not suite for profile', 104, '0000-00-00 00:00:00', 1),
(20003, 21479, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20004, 21548, 59, 3, 0, 'Communication OK Fresher Career Gap Need to check in 7 days training and confirm', 149, '2024-09-19 10:50:56', 1),
(20005, 21568, 74, 7, 0, 'she is ok with the profile, father farmer, 2 brother and 1 sister, 1 st brother studiying data science, 2nd brother worked in cycle manufaturing design 18k salary, sister worked in kalaimagal school physics teacher 12k salary.....completed bca in srm trichy....she intrested in telecalling bcoz she beleive in she  is strogn in voice skill....good in comunication and have strong capacity to adapt...have laptop....coming monday joining...expected 13 to 14k kindly check once and confirm.', 104, '0000-00-00 00:00:00', 1),
(20006, 20674, 131, 5, 0, 'No response from him', 131, '2024-09-19 11:12:47', 1),
(20007, 20673, 131, 5, 0, 'No response from the candidate for further process', 131, '2024-09-19 11:13:44', 1),
(20008, 21574, 74, 5, 0, 'not fit for profile', 104, '0000-00-00 00:00:00', 1),
(20009, 21578, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20010, 21587, 149, 5, 0, 'not able to explain about their old \noffice process', 104, '0000-00-00 00:00:00', 1),
(20011, 21573, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20012, 21571, 74, 5, 0, 'sustainability issue', 104, '0000-00-00 00:00:00', 1),
(20013, 21589, 102, 5, 0, 'communication skill is lower and not interested in sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20014, 21583, 74, 5, 0, 'not suite', 104, '0000-00-00 00:00:00', 1),
(20015, 21582, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20016, 21565, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20017, 21563, 137, 5, 0, 'candiate very slow voice and not understanding for my word so rejected', 104, '0000-00-00 00:00:00', 1),
(20018, 21562, 19, 5, 0, ' not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20019, 21590, 105, 5, 0, 'Candidate communication and performance is not good,also he not active', 104, '0000-00-00 00:00:00', 1),
(20020, 21593, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20021, 21568, 59, 3, 0, 'Communication Ok Salary Exp is there 5050 sustainability core IT but now for telecalling need to check in 7 days and confirm', 74, '2024-09-19 02:36:31', 1),
(20022, 21602, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20023, 21584, 149, 5, 0, 'not having good communication skills', 104, '0000-00-00 00:00:00', 1),
(20024, 21592, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20025, 21588, 131, 5, 0, 'Doubt with sustain lagged with knowledge', 126, '0000-00-00 00:00:00', 1),
(20026, 21579, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20027, 21610, 74, 7, 0, 'she is ok with the profile completed BE and last one year studied tnpsc and group 2 ...she has no idea to clear kindly cross check once....travel time also issue ...but she is good in all parameter....expected 13 to 14....arrange laptop...kindly check once...immediate joinig', 104, '0000-00-00 00:00:00', 1),
(20028, 21616, 19, 2, 0, 'he is asking 1 week time for relative marriage ,after 1 week we will discuss and finalize the joining ', 104, '0000-00-00 00:00:00', 1),
(20029, 21621, 137, 5, 0, 'candidate future pan is flim makerand ow business on native place , so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20030, 21624, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20031, 21604, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20032, 21576, 19, 7, 0, 'in hand salary 13k,job needed person and lets try 7 days and we will confirm', 104, '0000-00-00 00:00:00', 1),
(20033, 21612, 57, 5, 0, 'Candidate is not ok,communication not well. distance too long avadi.reject the profile', 104, '0000-00-00 00:00:00', 1),
(20034, 21627, 89, 5, 0, 'no basic skkill', 104, '0000-00-00 00:00:00', 1),
(20035, 21541, 105, 5, 0, 'candidate communication is not good and performance is low', 104, '0000-00-00 00:00:00', 1),
(20036, 21623, 19, 5, 0, 'not fir for sales and apperance was not good ', 104, '0000-00-00 00:00:00', 1),
(20037, 21626, 74, 7, 0, 'he is ok with the profile completed bba ...and course studied SAP and have no idea to join sap related job....expected 13 to 14k kindly check once house near by 1km....father bus driver ...have no laptop ready to arrange,,,immediate joining kindly check once', 104, '0000-00-00 00:00:00', 1),
(20038, 21575, 102, 7, 0, 'communication and convincing skill is good will try training period kindly confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(20039, 21632, 105, 5, 0, 'Candidate communication and performance is not good,also he not active and expected high package', 104, '0000-00-00 00:00:00', 1),
(20040, 21628, 149, 5, 0, 'not ok with  working time', 104, '0000-00-00 00:00:00', 1),
(20041, 21625, 149, 5, 0, 'communication was not so good and  not ok with salary', 104, '0000-00-00 00:00:00', 1),
(20042, 21617, 102, 5, 0, 'Already working in icici 5month but interested in it field ', 104, '0000-00-00 00:00:00', 1),
(20043, 21631, 89, 5, 0, 'silent person and very slow', 104, '0000-00-00 00:00:00', 1),
(20044, 21576, 59, 3, 0, 'Communication Ok Fresher for Telecalling Family need is there can give a try and check in 7 days training', 19, '2024-09-20 01:03:15', 1),
(20045, 21567, 137, 5, 0, 'candidate very slow process and very low understanding , cus also need non voice process , because past exp is also non voice process', 104, '0000-00-00 00:00:00', 1),
(20046, 20935, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20047, 21643, 149, 5, 0, 'rejected - not having interested in sales', 104, '0000-00-00 00:00:00', 1),
(20048, 21626, 59, 1, 0, NULL, 74, '2024-09-20 04:36:29', 1),
(20049, 21603, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20050, 21610, 59, 3, 0, 'Communication Ok can give a try and check only thing is the distance need to see ', 74, '2024-09-20 04:41:00', 1),
(20051, 21575, 59, 3, 0, 'Communication Fresher need to train from scratch can give a try and check in 7 days', 102, '2024-09-20 06:56:52', 1),
(20052, 21645, 149, 5, 0, 'rejected - not good at interview', 104, '0000-00-00 00:00:00', 1),
(20053, 21650, 19, 7, 0, 'fresher 13k in hand salary  speaks well lets try 7 days and we will confirm', 104, '0000-00-00 00:00:00', 1),
(20054, 21655, 137, 5, 0, 'candidate very attitude person and dress also not perfect , and candidate voice also not good so notfit for my team', 104, '0000-00-00 00:00:00', 1),
(20055, 21651, 102, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20056, 21649, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20057, 21646, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20058, 21650, 59, 1, 0, NULL, 19, '2024-09-21 11:44:21', 1),
(20059, 21664, 19, 7, 0, 'he speaks well kindly check his exisiting pay slip,on that salary we will add 2k to him and he has 1.5 years exp in credit card sales', 104, '0000-00-00 00:00:00', 1),
(20060, 21674, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20061, 21675, 19, 5, 0, 'not fit for her salary', 104, '0000-00-00 00:00:00', 1),
(20062, 21664, 59, 1, 0, NULL, 19, '2024-09-21 02:49:23', 1),
(20063, 21673, 149, 5, 0, 'rejected- not having better communication', 104, '0000-00-00 00:00:00', 1),
(20064, 21682, 102, 5, 0, 'Communication skill is very low and interested in customer support also, not interested in field work ', 104, '0000-00-00 00:00:00', 1),
(20065, 21691, 74, 7, 0, 'she is ok with  the profile ,,already worked in hdbfc finance 1 and half year, and releived due to timing issue...and joined icici credit sales6 month experience and releived...expected 15k and have laptop kindly check once....due to field work not joined in hdfc life', 104, '0000-00-00 00:00:00', 1),
(20066, 21694, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20067, 21695, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20068, 21704, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20069, 21687, 137, 5, 0, 'candidate voice is ok but communication is very low  and candidate not interest to go for out side call so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20070, 21711, 149, 5, 0, 'rejected - not having stability in his past companies', 104, '0000-00-00 00:00:00', 1),
(20071, 21715, 102, 5, 0, 'Communication skill is very low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20072, 21685, 149, 5, 0, 'rejected - absconded from last company ,not okay with communication', 104, '0000-00-00 00:00:00', 1),
(20073, 21707, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20074, 21714, 105, 7, 0, 'CANDIDATE PERFORMANCE AND COMMUNICATION IS GOOD ,WILL CHECK WITH HER IN THE TRAINING PERIOD', 104, '0000-00-00 00:00:00', 1),
(20075, 21680, 102, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20076, 21686, 149, 5, 0, 'rejected - interested in other jobs', 104, '0000-00-00 00:00:00', 1),
(20077, 21490, 105, 5, 0, 'candidate performance is not good ,also his communication is not Legit', 104, '0000-00-00 00:00:00', 1),
(20078, 21709, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20079, 21689, 19, 7, 0, 'exp person but fresher salary immediate joining', 104, '0000-00-00 00:00:00', 1),
(20080, 21723, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20081, 21725, 137, 5, 0, 'candidate voice and communication is good but after 1 year try for master degree in regular so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20082, 21696, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20083, 21693, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20084, 21706, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20085, 21708, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20086, 21691, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 74, '2024-09-23 07:00:57', 1),
(20087, 21739, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20088, 21736, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20089, 21741, 105, 7, 0, 'candidate communication and performance is good ,also hve 2 yrs and 5 Months experiance in telicalling field.will check with her in the training period', 104, '0000-00-00 00:00:00', 1),
(20090, 21746, 102, 5, 0, 'Communication skill is very low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20091, 21732, 149, 7, 0, 'having experience about sales and good at communication we will provide 16k as salary and also need immediate jioning', 104, '0000-00-00 00:00:00', 1),
(20092, 21743, 137, 5, 0, 'candidate commuication and voice also very low  and he not understanding my qustions , ans after 3 month try for it  related job so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20093, 21742, 19, 7, 0, 'job needed person ctc 16k fresher joining at 27th sep', 104, '0000-00-00 00:00:00', 1),
(20094, 21690, 149, 5, 0, 'not good at talking lacking of confidence', 104, '0000-00-00 00:00:00', 1),
(20095, 21756, 57, 7, 0, 'candidate is ok, fresher communication ok, cross check sustainability.provide the freshers salary and confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(20096, 21744, 57, 7, 0, 'Candidate is ok, previously she worked hr Req process, communication good, she interested with sales coz of she need money.well settled family. negotiate the salary and confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(20097, 21747, 137, 5, 0, 'candidate future plan govtwor and takecare of our father work so just looking for wok and voice also not well so not fit or my team', 104, '0000-00-00 00:00:00', 1),
(20098, 21730, 19, 5, 0, 'not much knowledge in health but working almost 6 month in health and abscond in previous company', 104, '0000-00-00 00:00:00', 1),
(20099, 21748, 105, 5, 0, 'candidate communication is good but her performance and voice is very low as well as slow', 104, '0000-00-00 00:00:00', 1),
(20100, 21744, 59, 3, 0, 'Communication Good have exp but not sales can give a try and check in 7 days', 57, '2024-09-24 01:19:31', 1),
(20101, 21756, 59, 1, 0, NULL, 57, '2024-09-24 01:20:37', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(20102, 21705, 59, 3, 0, 'Communication Average for MIS role Can be trained have a bit of exp need to check and confirm', 104, '0000-00-00 00:00:00', 1),
(20103, 21754, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20104, 21733, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20105, 21741, 59, 1, 0, NULL, 105, '2024-09-24 01:48:13', 1),
(20106, 21732, 59, 1, 0, NULL, 149, '2024-09-24 02:51:57', 1),
(20107, 21761, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20108, 21760, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20109, 21726, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20110, 21288, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(20111, 21742, 59, 1, 0, NULL, 19, '2024-09-25 10:15:50', 1),
(20112, 21689, 59, 1, 0, NULL, 19, '2024-09-25 10:17:06', 1),
(20113, 21676, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20114, 21778, 102, 7, 0, 'Communication and convincing skills good and he is also in interested in sales will try training period kindly confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(20115, 21780, 105, 5, 0, 'Candidate communication and performance is not good', 104, '0000-00-00 00:00:00', 1),
(20116, 21724, 149, 7, 0, 'SELECTED - HAVING  GOOD COMMUNICATION SKILL AND CONFIDENCE ALSO LOOK FOR IMMEDIATE JOINING  WILL  GIVE 14000  ', 104, '0000-00-00 00:00:00', 1),
(20117, 21779, 19, 7, 0, 'job needed person and aged too ,so lets we try with 15k to 16k salary 1 exp in iT voice was good', 104, '0000-00-00 00:00:00', 1),
(20118, 21721, 149, 5, 0, 'REJECTED - COMMUNICATION SKILL WAS NOT GOOD', 104, '0000-00-00 00:00:00', 1),
(20119, 21782, 137, 5, 0, 'candidate very attitude and very worst behaviour , voice also very low so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20120, 21784, 105, 5, 0, 'candidate performance is ok ,but his communication is not good', 104, '0000-00-00 00:00:00', 1),
(20121, 21785, 19, 5, 0, 'not fit for Any job', 104, '0000-00-00 00:00:00', 1),
(20122, 21546, 59, 1, 0, NULL, 19, '2024-09-25 12:13:44', 1),
(20123, 21616, 19, 5, 0, 'not fit for sales', 19, '2024-09-25 12:16:23', 1),
(20124, 21779, 59, 1, 0, NULL, 19, '2024-09-25 12:19:04', 1),
(20125, 21757, 137, 7, 0, 'candidate commuication and vocie well good , candidate completed in bBA so interest to sales field but location is avadi , have a own bike , so try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(20126, 21786, 102, 5, 0, 'Communication skill is very low and interested in customer support also, not interested in field work ', 104, '0000-00-00 00:00:00', 1),
(20127, 21768, 89, 5, 0, 'not fit for the job', 104, '0000-00-00 00:00:00', 1),
(20128, 21772, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20129, 21776, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20130, 21789, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20131, 21790, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20132, 21792, 105, 7, 0, 'candidate communication  and performance is good ,will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(20133, 21791, 137, 7, 0, 'candidate communication and voice also good , candidate very interest to sales work location also near by , so i will try to 7 days training periods ', 104, '0000-00-00 00:00:00', 1),
(20134, 21794, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20135, 21796, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20136, 21797, 102, 5, 0, 'Communication skill is very low and interested in customer support married person she is have a 4month baby', 104, '0000-00-00 00:00:00', 1),
(20137, 21630, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20138, 21724, 59, 1, 0, NULL, 149, '2024-09-25 06:41:31', 1),
(20139, 21288, 147, 7, 0, 'Fresher communication skill is good shortlisted ', 131, '2024-09-25 06:53:43', 1),
(20140, 21288, 59, 3, 0, 'Communication Ok Can give a try and check her friend also working  here Need to analyse in 7 days training', 147, '2024-09-25 06:56:22', 1),
(20141, 21807, 149, 5, 0, 'rejected - not ok with salary package and timing', 104, '0000-00-00 00:00:00', 1),
(20142, 21791, 59, 3, 0, 'Fresher Career Gap Can give a try and check in 7 days training ', 137, '2024-09-26 10:16:11', 1),
(20143, 21806, 19, 7, 0, 'speaks well ctc 14 to 15k  lets try 7 days and confirm immediate joining', 104, '0000-00-00 00:00:00', 1),
(20144, 21757, 59, 1, 0, NULL, 137, '2024-09-26 10:18:47', 1),
(20145, 21810, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20146, 21811, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20147, 21812, 74, 5, 0, 'not fit for team', 104, '0000-00-00 00:00:00', 1),
(20148, 21804, 137, 7, 0, 'candidate very bold and communication also good , location near by 30 min travel , and previousaly work  sales in frds company , so try for 7 days training periods ', 104, '0000-00-00 00:00:00', 1),
(20149, 21820, 102, 5, 0, 'Communication skill is very low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20150, 21821, 149, 5, 0, 'rejected - she will join only after completing her notice period', 104, '0000-00-00 00:00:00', 1),
(20151, 21778, 59, 1, 0, NULL, 102, '2024-09-26 11:45:27', 1),
(20152, 21819, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20153, 21765, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20154, 21767, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20155, 21830, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20156, 21801, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20157, 21793, 149, 7, 0, 'selected -having communication skill lets try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(20158, 21836, 105, 5, 0, 'Candidate performacne and communication not good ', 104, '0000-00-00 00:00:00', 1),
(20159, 21806, 59, 3, 0, 'Communication Ok fresher for our roles can give a tray and check in 7 days training\n', 19, '2024-09-26 03:56:55', 1),
(20160, 21834, 131, 5, 0, 'Lack of communication and knowledge', 126, '0000-00-00 00:00:00', 1),
(20161, 21823, 131, 5, 0, 'Lack of communication and knowledge', 126, '0000-00-00 00:00:00', 1),
(20162, 21805, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20163, 21841, 19, 5, 0, 'sustainability was doubt', 104, '0000-00-00 00:00:00', 1),
(20164, 21845, 137, 5, 0, 'candidate very low voice and voice also not good , so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(20165, 21848, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20166, 21835, 19, 7, 0, 'Selected CTC 16k Check her Last company pay slip ', 104, '0000-00-00 00:00:00', 1),
(20167, 21838, 19, 7, 0, 'Selected CTC 16K Check her Last Company Pay Slip ', 104, '0000-00-00 00:00:00', 1),
(20168, 21849, 149, 5, 0, 'rejected- not having communication skills', 104, '0000-00-00 00:00:00', 1),
(20169, 21804, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training family need is there', 137, '2024-09-27 12:05:28', 1),
(20170, 21854, 149, 5, 0, 'rejected - no good at interview having doubts in timing', 104, '0000-00-00 00:00:00', 1),
(20171, 21859, 57, 7, 0, 'Candidate is ok, pls cross check the quality, am not seen the candidate so kindly filter the candidate Fully, Confirm the joining date and salary', 104, '0000-00-00 00:00:00', 1),
(20172, 21839, 137, 5, 0, 'candidate only need non oice process and very long distance so not fit my team', 104, '0000-00-00 00:00:00', 1),
(20173, 21855, 57, 7, 0, 'Candidate is ok, pls cross check the quality, am not seen the candidate so kindly filter the candidate Fully, Confirm the joining date and salary', 104, '0000-00-00 00:00:00', 1),
(20174, 21856, 57, 5, 0, 'Candidate unfit for the sales, team  Reference. Communication not Good, Reject the profile', 104, '0000-00-00 00:00:00', 1),
(20175, 21714, 59, 1, 0, NULL, 105, '2024-09-27 01:10:13', 1),
(20176, 21863, 102, 5, 0, 'Communication skill is very low and interested in customer support not suitable sales ', 104, '0000-00-00 00:00:00', 1),
(20177, 21684, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20178, 21852, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20179, 21860, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20180, 21864, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20181, 21818, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20182, 21865, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20183, 21838, 59, 3, 0, 'Communication Ok Have exp in calling but not a relevant domain Her friend also selected for the role can check in 7 days and confirm', 19, '2024-09-28 10:18:22', 1),
(20184, 21835, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training have exp in calling for 1 yr course in fashion too need to check in 7 days training', 19, '2024-09-28 10:19:01', 1),
(20185, 21866, 149, 5, 0, 'rejected - lacking communication skills and no interest', 104, '0000-00-00 00:00:00', 1),
(20186, 21566, 19, 7, 0, 'fresher job needed person in hand 13k salary lets try 7 days and we will finalize', 104, '0000-00-00 00:00:00', 1),
(20187, 21887, 102, 7, 0, 'candidate communication and convincing skill is good and will try training days kindly confirm DOJ', 104, '0000-00-00 00:00:00', 1),
(20188, 21887, 59, 3, 0, 'Communication Good Can be trained in our roled need to check in  7 days training sustainability doubts in telesales', 102, '2024-09-28 12:45:07', 1),
(20189, 21889, 105, 7, 0, 'candidate communication and performacne is good Will Check With him in the training period', 104, '0000-00-00 00:00:00', 1),
(20190, 21891, 19, 7, 0, 'Selected already having 2 month work exp in visa and she pitched star product well,ctc 16k monday joining', 104, '0000-00-00 00:00:00', 1),
(20191, 21882, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20192, 21891, 59, 1, 0, NULL, 19, '2024-09-28 01:26:56', 1),
(20193, 21566, 59, 1, 0, NULL, 19, '2024-09-28 01:27:56', 1),
(20194, 21892, 11, 7, 0, 'she is selected for e sales \nimmediate joining\nneed to confirm on salary', 104, '0000-00-00 00:00:00', 1),
(20195, 21793, 59, 1, 0, NULL, 149, '2024-09-28 02:29:43', 1),
(20196, 21855, 59, 3, 0, 'Communication Ok Can be trained in our roles Need to analyse in 7days training\n', 57, '2024-09-28 03:52:36', 1),
(20197, 21859, 59, 3, 0, 'Communication sound good Have exp in calling but not a relevant one can give a try and check in 7 days training\n', 57, '2024-09-28 03:52:55', 1),
(20198, 21893, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20199, 21892, 60, 1, 0, NULL, 11, '2024-09-28 05:48:14', 1),
(20200, 21889, 59, 3, 0, 'Communication Ok Can be trained in our roles ', 105, '2024-09-28 07:16:35', 1),
(20201, 21792, 59, 1, 0, NULL, 105, '2024-09-29 07:22:33', 1),
(20202, 21919, 137, 5, 0, 'candidate all ok but distance is very long and a/c not accept for our body condision so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20203, 21921, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20204, 21920, 149, 7, 0, 'SELECTED - HAVING INTEREST IN SALES AND LETS TRY FOR 7 DAYS TRAINING PERIOD', 104, '0000-00-00 00:00:00', 1),
(20205, 21922, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20206, 21925, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20207, 21924, 149, 2, 0, 'hold - candidate having doubts with office timing', 104, '0000-00-00 00:00:00', 1),
(20208, 21929, 19, 2, 0, 'hold', 104, '0000-00-00 00:00:00', 1),
(20209, 21842, 105, 5, 0, 'candiate performance and communication is not good,also not interested in Voice', 104, '0000-00-00 00:00:00', 1),
(20210, 21927, 102, 5, 0, 'Convincing and Communication skills is low he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20211, 21916, 137, 5, 0, 'candidate future plan is it only after 1 3 months start for it course , fees reason to joining he work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20212, 21910, 105, 5, 0, 'candiate performance and communication is not good', 104, '0000-00-00 00:00:00', 1),
(20213, 21934, 19, 7, 0, 'fresher, 13k in hand salary and lets try 7 days then we will confirm', 104, '0000-00-00 00:00:00', 1),
(20214, 21932, 89, 5, 0, 'very silent person. and not fit for the job', 104, '0000-00-00 00:00:00', 1),
(20215, 21934, 59, 3, 0, 'Communication Fresher Distance need to focus Need to analyse in 7 days training', 19, '2024-09-30 01:18:29', 1),
(20216, 21920, 59, 3, 0, 'Communication Ok Can be trained 6 days working seems to be doubtful', 149, '2024-09-30 01:25:49', 1),
(20217, 21940, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20218, 21946, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20219, 21948, 149, 5, 0, 'rejected - interest in other field', 104, '0000-00-00 00:00:00', 1),
(20220, 21947, 149, 7, 0, 'SELECTED - already have experienced about health insurance, we shall provide 15k', 104, '0000-00-00 00:00:00', 1),
(20221, 21945, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20222, 21944, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20223, 21931, 109, 5, 0, 'lagging in communication and expectation high', 104, '0000-00-00 00:00:00', 1),
(20224, 21918, 109, 5, 0, 'not good communication and had no knowledge about hr. sustainability issue', 104, '0000-00-00 00:00:00', 1),
(20225, 21947, 59, 1, 0, NULL, 149, '2024-09-30 05:04:59', 1),
(20226, 21961, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20227, 21960, 149, 7, 0, 'selected - having experience and good communication skills we shall provide 16k take home', 104, '0000-00-00 00:00:00', 1),
(20228, 21962, 102, 5, 0, 'Convincing and Communication skills is low he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20229, 21943, 105, 5, 0, 'candiate performance and communication is not good,also looking for temporary job only', 104, '0000-00-00 00:00:00', 1),
(20230, 21967, 19, 5, 0, 'she doing iT course  so she cant work here ', 104, '0000-00-00 00:00:00', 1),
(20231, 21972, 11, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(20232, 21956, 149, 7, 0, 'rejected- having interest in IT field', 104, '0000-00-00 00:00:00', 1),
(20233, 21974, 105, 5, 0, 'candiate performance and communication is not good.also have some attitude and expected high package', 104, '0000-00-00 00:00:00', 1),
(20234, 21973, 19, 7, 0, 'she speaks four lang and she speaks good ,she has tele calling exp 1.5 years so lets try 7 days and we will confirm ctc 19k to 20k', 104, '0000-00-00 00:00:00', 1),
(20235, 21982, 102, 5, 0, 'Convincing and Communication skills is low he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20236, 21955, 149, 5, 0, 'rejected - not having communication skills', 104, '0000-00-00 00:00:00', 1),
(20237, 21980, 57, 5, 0, 'candidate is unfit for the sales profile, 3 m over all Experience, she looking customer support work.reject the profile thanks', 104, '0000-00-00 00:00:00', 1),
(20238, 21960, 59, 1, 0, NULL, 149, '2024-10-01 04:54:18', 1),
(20239, 21973, 59, 1, 0, NULL, 19, '2024-10-01 04:55:54', 1),
(20240, 21956, 59, 1, 0, NULL, 149, '2024-10-01 05:01:34', 1),
(20241, 21994, 74, 5, 0, 'not suite', 104, '0000-00-00 00:00:00', 1),
(20242, 21993, 137, 5, 0, 'candidate communication ok butvery lacey and not understand what im telling and notfit for sales field so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20243, 22000, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20244, 21998, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20245, 21996, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20246, 21909, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20247, 21908, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20248, 21995, 149, 5, 0, 'not having communication skills and not ok with salary', 104, '0000-00-00 00:00:00', 1),
(20249, 21997, 19, 5, 0, 'aged not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20250, 22003, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20251, 22002, 102, 5, 0, 'Convincing and Communication skills is low he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20252, 22001, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20253, 22007, 89, 7, 0, 'good skill tamil and english and hindixquot Selected', 104, '0000-00-00 00:00:00', 1),
(20254, 22004, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20255, 20003, 149, 5, 0, 'having interest in different profession ', 104, '0000-00-00 00:00:00', 1),
(20256, 22005, 57, 7, 0, 'Candidate is ok,2yrs work experience for admin xxamp operation previous company salary 20k now he exp 15k to 16k.cross check payslip xxamp Offer letter, and confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(20257, 22010, 149, 5, 0, 'not okay with salary and office timing', 104, '0000-00-00 00:00:00', 1),
(20258, 22012, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20259, 22011, 137, 2, 0, 'candidate commuication and voice also ok ut next month 19th marriage and relocate on t nagar, so joining for dec 1 week so try for nov month past past exp for sales one company 8 months and another compant 3 months exp salary 15k so try for nov month ', 104, '0000-00-00 00:00:00', 1),
(20260, 22013, 102, 7, 0, 'Communication and convincing skill good will try training period kindly confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(20261, 22015, 109, 2, 0, 'Looking for internship in december', 104, '0000-00-00 00:00:00', 1),
(20262, 22007, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 89, '2024-10-04 10:58:54', 1),
(20263, 22017, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20264, 22016, 149, 5, 0, 'having interest in other profession', 104, '0000-00-00 00:00:00', 1),
(20265, 22005, 59, 1, 0, NULL, 57, '2024-10-04 12:01:45', 1),
(20266, 22018, 105, 7, 0, 'Interviewed By Charles As Per His Conversation Candidate Performance And Communication is good.Will Check With him in the training Period ', 104, '0000-00-00 00:00:00', 1),
(20267, 22021, 89, 5, 0, 'no basic skilll', 104, '0000-00-00 00:00:00', 1),
(20268, 22023, 89, 7, 0, 'good skill. i Analyst 7 days training days', 104, '0000-00-00 00:00:00', 1),
(20269, 22024, 149, 7, 0, 'selected -having good  communication skill and fluency we shall give 15k as salary ', 104, '0000-00-00 00:00:00', 1),
(20270, 22026, 137, 7, 0, 'candidate communcation and voice also good , past exp for sales related work exp salary 18k , so try for 7 days training periods  and joining for tuesday ', 104, '0000-00-00 00:00:00', 1),
(20271, 22025, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20272, 22027, 149, 5, 0, 'rejected - not having  proper dress code and resume mismatched  not good at communication', 104, '0000-00-00 00:00:00', 1),
(20273, 21929, 19, 5, 0, 'aged', 19, '2024-10-04 03:41:40', 1),
(20274, 22028, 149, 7, 0, 'having interest and showing confident but married lets try for 7 days', 104, '0000-00-00 00:00:00', 1),
(20275, 22030, 102, 5, 0, 'Convincing and Communication skills is low he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20276, 22029, 102, 7, 0, 'Communication and convincing skill good will try training period kindly confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(20277, 22022, 152, 5, 0, 'Did not showed for second round', 104, '0000-00-00 00:00:00', 1),
(20278, 22031, 109, 5, 0, 'looking for customer support or non voice', 104, '0000-00-00 00:00:00', 1),
(20279, 22024, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 149, '2024-10-04 06:53:23', 1),
(20280, 22028, 59, 1, 0, NULL, 149, '2024-10-04 06:56:32', 1),
(20281, 22026, 59, 1, 0, NULL, 137, '2024-10-05 10:31:25', 1),
(20282, 22065, 149, 7, 0, 'SELECTED -HAVING GOOD COMMUNICATION AND FLUENCY , WE SHALL GIVE 16K AS SALARY  IMMEDIATE JOINING OK ', 104, '0000-00-00 00:00:00', 1),
(20283, 22065, 59, 3, 0, 'Communication Good Salary exp is high 5050 sustainability doubts need to check in 7 days trainin\n', 149, '2024-10-05 12:29:25', 1),
(20284, 22064, 102, 7, 0, 'Communication and convincing skill good will try training period kindly confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(20285, 22064, 59, 3, 0, 'Communication Ok Fresher for sales Roles can give a try and check', 102, '2024-10-05 04:23:03', 1),
(20286, 22013, 59, 3, 0, 'Fresher Need to check in 7days and confirm the profile', 102, '2024-10-05 04:23:22', 1),
(20287, 22029, 59, 3, 0, 'Communication Ok Fresher for our roles can be trained and check in 7 days training ', 102, '2024-10-05 04:24:16', 1),
(20288, 22023, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days ', 89, '2024-10-05 05:06:05', 1),
(20289, 22054, 131, 5, 0, 'Lack of communication and Confident', 126, '0000-00-00 00:00:00', 1),
(20290, 22055, 131, 5, 0, 'Lack of communication and interest ', 126, '0000-00-00 00:00:00', 1),
(20291, 22102, 74, 7, 0, 'he is ok with the profile completed btech .....father hotel business...sister doing college...he is fresher and intrested in job expected 12k and imeediate joining...know about the profile and have laptop...20mins travel from office.kindlycheck once', 104, '0000-00-00 00:00:00', 1),
(20292, 22099, 149, 7, 0, 'selected- interested  in sales ,but only able to join after 15 th due to personal reasons ', 104, '0000-00-00 00:00:00', 1),
(20293, 22098, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20294, 21867, 19, 7, 0, 'in hand 14k ,she already working in 4 month tele calling exp last in hand  13.5k so we will go 14k in hand salary ', 104, '0000-00-00 00:00:00', 1),
(20295, 22096, 109, 5, 0, 'communication not good. sustainablity issue', 104, '0000-00-00 00:00:00', 1),
(20296, 22100, 149, 7, 0, 'selected -having interest in sales and done interview good and having bike .', 104, '0000-00-00 00:00:00', 1),
(20297, 22111, 19, 5, 0, 'not fit for sales and not worth of his asking salary', 104, '0000-00-00 00:00:00', 1),
(20298, 21088, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20299, 21867, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 19, '2024-10-07 12:24:00', 1),
(20300, 22106, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20301, 22112, 149, 5, 0, 'rejected - having some issues in communication and also interested in other jobs', 104, '0000-00-00 00:00:00', 1),
(20302, 22114, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20303, 22113, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20304, 22119, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20305, 22120, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20306, 22123, 149, 5, 0, 'not having confidence and lack of communication skills', 104, '0000-00-00 00:00:00', 1),
(20307, 22124, 19, 7, 0, 'she speaks well i hope she doing well in  our company 1.10 years tele calling exp, ctc 20k lets try 7 days and we will confirm', 104, '0000-00-00 00:00:00', 1),
(20308, 22128, 149, 7, 0, 'selected - interested  in sales having good communication ,immediate joining', 104, '0000-00-00 00:00:00', 1),
(20309, 22130, 11, 7, 0, 'selected for E sales .Gaurav sir met ', 104, '0000-00-00 00:00:00', 1),
(20310, 22126, 137, 5, 0, 'candidate very interest for it job only just looking for sales  so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20311, 22125, 137, 7, 0, 'candidate communication and voice also good , past 4 month exp for cctv company tele calling for sales pack is 14k , long distance to relaving the company , exp salary is 15 to 16k , so try for 7 days training periods , joining for wendesday ', 104, '0000-00-00 00:00:00', 1),
(20312, 22129, 109, 5, 0, 'she was looking for sales and HR role had diff expeirence sutainability issue', 104, '0000-00-00 00:00:00', 1),
(20313, 22121, 74, 7, 0, 'she is ok with the profile, completed bcom and not getting admission for mcom,so he ready to work currently...father farmer and ready ,,,,she is from mannargudi...ready to relocate from mannargudi after 1 month...ready to join immediately..have laptop...brother work in airport ....kindly check once and will see in training.', 104, '0000-00-00 00:00:00', 1),
(20314, 22102, 59, 3, 0, 'Communication Ok Fresher for our roles can give a try and check in 7 days training', 74, '2024-10-07 04:51:02', 1),
(20315, 22121, 59, 1, 0, NULL, 74, '2024-10-07 04:54:14', 1),
(20316, 22124, 59, 1, 0, NULL, 19, '2024-10-07 05:03:36', 1),
(20317, 22131, 109, 5, 0, 'experience in diff domain currently pursuing Human resource management. Had no knowledge about hr', 104, '0000-00-00 00:00:00', 1),
(20318, 22100, 59, 3, 0, 'Communication Ok Fresher Need to train and check in 7 days training ', 149, '2024-10-07 05:42:37', 1),
(20319, 22117, 131, 4, 0, 'Good communication have Experience in sales can process for next round', 126, '0000-00-00 00:00:00', 1),
(20320, 22118, 131, 5, 0, 'Lack of knowledge about the sales', 126, '0000-00-00 00:00:00', 1),
(20321, 22117, 147, 7, 0, 'Good Communication And Confident Have Experience In Star Health Insurance  Salary Expectation In Hand 19k Shortlisted', 131, '2024-10-07 05:53:04', 1),
(20322, 22128, 59, 3, 0, 'communication ok can be trained in our roles need to check in 7 days training', 149, '2024-10-07 06:00:35', 1),
(20323, 22117, 59, 3, 0, 'Communication Ok Can give a try in 7 days and train her ', 147, '2024-10-07 06:28:31', 1),
(20324, 22099, 59, 3, 0, 'Communication OK Can give a try in our role and confirm her in 7 days training', 149, '2024-10-07 06:47:12', 1),
(20325, 21924, 59, 1, 0, NULL, 149, '2024-10-07 07:17:05', 1),
(20326, 21924, 149, 7, 0, 'selected - interested but lets try for 7 working days', 149, '2024-10-07 07:17:05', 1),
(20327, 22018, 59, 1, 0, NULL, 105, '2024-10-07 07:31:37', 1),
(20328, 22125, 59, 3, 0, 'Communication Ok Have 3 months exp in sales calling can give a try and check in 7 days training', 137, '2024-10-07 07:49:27', 1),
(20329, 22133, 74, 5, 0, 'Nit fit', 104, '0000-00-00 00:00:00', 1),
(20330, 22122, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20331, 22135, 19, 5, 0, 'not worth of his asking salary', 104, '0000-00-00 00:00:00', 1),
(20332, 22137, 137, 7, 0, 'candiate communication and voice is good , very low family backround , past exp for insurance and loans , exp is 15 to 16 k salary  so try for 7 days training periods  ', 104, '0000-00-00 00:00:00', 1),
(20333, 22138, 19, 7, 0, 'she speaks well  and she has 1 year sales exp ctc 16k immediate joining', 104, '0000-00-00 00:00:00', 1),
(20334, 22138, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in 7 days training', 19, '2024-10-08 11:43:37', 1),
(20335, 22145, 149, 7, 0, 'selected -already  have experience in vizza  and explained about plans ,also having bike and interested  in immediate joining  and we shall provide  16k as salary', 104, '0000-00-00 00:00:00', 1),
(20336, 22146, 149, 5, 0, 'not sitable for  ,lacking communication skills and interested in other jobs', 104, '0000-00-00 00:00:00', 1),
(20337, 22105, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20338, 22150, 105, 5, 0, 'Candidate Communication And performance is not good also his voice is low ,then recently recovered from accident, So Sustainable Is doubt ', 104, '0000-00-00 00:00:00', 1),
(20339, 22153, 19, 7, 0, 'fresher, in hand 13k immediate joining', 104, '0000-00-00 00:00:00', 1),
(20340, 22145, 59, 1, 0, NULL, 149, '2024-10-08 04:17:08', 1),
(20341, 22139, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20342, 22163, 149, 5, 0, 'rejected - not having interest in sales, just atteneded the interview', 104, '0000-00-00 00:00:00', 1),
(20343, 22164, 19, 7, 0, 'communication was good so in hand salary 14k and she has some work exp so lets we try 7 days and confirm', 104, '0000-00-00 00:00:00', 1),
(20344, 22166, 149, 5, 0, 'not interested in sales and looking for another job', 104, '0000-00-00 00:00:00', 1),
(20345, 22151, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20346, 22169, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20347, 22171, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20348, 22170, 149, 5, 0, 'rejected -not having interest in sales and having low communication skill', 104, '0000-00-00 00:00:00', 1),
(20349, 22161, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20350, 22172, 105, 7, 0, 'Candidate Communication and performance is good ,his attire is also good but candidate little bit nervous and his voice is like middle pitch will check with him in the training Period ', 104, '0000-00-00 00:00:00', 1),
(20351, 22164, 59, 3, 0, 'Communication Good Have several health issues she was into psychatric treatment short temper over thinker need to scrutinize in 7 days and confirm', 19, '2024-10-09 12:42:57', 1),
(20352, 22175, 149, 5, 0, 'rejected - not ok with salary of ours and timing', 104, '0000-00-00 00:00:00', 1),
(20353, 22172, 59, 3, 0, 'Communication Ok candidate not much comfort in telecalling 5050 as he is ok with the profile we are proceeding', 105, '2024-10-09 01:12:33', 1),
(20354, 22178, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20355, 22173, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(20356, 22173, 30, 7, 3, 'candidate 2month only have experience in policy bazzar and previous one year own business he is expecting 3.8lac but suggested 3.2lac max and immediate joining', 131, '2024-10-09 01:18:14', 1),
(20357, 22179, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20358, 22180, 19, 2, 0, 'Hold', 104, '0000-00-00 00:00:00', 1),
(20359, 22176, 139, 4, 0, 'Rejoining candidate for RM role \nHave to meet sriram sir for final round ', 104, '0000-00-00 00:00:00', 1),
(20360, 22183, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20361, 22182, 102, 7, 0, 'Candidate communication and convincing skill is good will try training period once confirm dOJ ', 104, '0000-00-00 00:00:00', 1),
(20362, 22181, 102, 5, 0, 'Candidate communication skills is good but , he is still studied higher degree sustainability doubt ', 104, '0000-00-00 00:00:00', 1),
(20363, 22168, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20364, 22176, 18, 7, 0, 'Selected to Gananshekar team. Can give 20k Take home+PF. She is an X CAFS Employee and Immedeate joiner', 139, '2024-10-09 03:38:28', 1),
(20365, 22173, 60, 1, 0, NULL, 30, '2024-10-09 06:23:00', 1),
(20366, 22191, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20367, 22193, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20368, 22194, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20369, 22192, 149, 5, 0, 'not good at communication', 104, '0000-00-00 00:00:00', 1),
(20370, 22137, 59, 1, 0, NULL, 137, '2024-10-10 11:21:52', 1),
(20371, 22196, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20372, 22197, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20373, 22198, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20374, 22204, 105, 7, 0, 'Candidate Communication And performance is good.then His attire and way of speech is good.will check with him in the training Period ', 104, '0000-00-00 00:00:00', 1),
(20375, 22206, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20376, 22205, 149, 5, 0, 'rejected - not ok with salary  and company timing', 104, '0000-00-00 00:00:00', 1),
(20377, 22208, 102, 7, 0, 'Candidate communication and convincing skill is good and will try training period kindly Update DOJ', 104, '0000-00-00 00:00:00', 1),
(20378, 22212, 149, 5, 0, 'rejected-  not having better communication skills and lesser confidence', 104, '0000-00-00 00:00:00', 1),
(20379, 22182, 59, 3, 0, 'communication Ok Long Career Gap Can give a try and check in 7 days training', 102, '2024-10-10 12:46:56', 1),
(20380, 22204, 59, 3, 0, 'Communication Ok Fresher for our roles can give a try and train them\n', 105, '2024-10-10 12:52:02', 1),
(20381, 22215, 57, 5, 0, 'Candidate is unfit for sales,married 1yr kid have.time issues. reject the profile', 104, '0000-00-00 00:00:00', 1),
(20382, 22214, 89, 7, 0, 'good skill and basic insurance Knowledge. Selected ', 104, '0000-00-00 00:00:00', 1),
(20383, 22207, 131, 4, 0, 'Good Communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(20384, 22207, 30, 7, 3, 'suggested ctc for rm 21k', 131, '2024-10-10 01:27:06', 1),
(20385, 22214, 59, 3, 0, 'Communication OK Can give a try and check in 7 days training', 89, '2024-10-10 02:37:27', 1),
(20386, 22201, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20387, 22189, 105, 5, 0, 'Candidate Communication And performance is not good also his voice is low and sustainable is doubt ', 104, '0000-00-00 00:00:00', 1),
(20388, 22203, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20389, 22188, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20390, 22200, 137, 5, 0, 'candiate need very hig salary and comuication aslo no wel so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20391, 22199, 137, 5, 0, 'candiate very long distance to come so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20392, 22208, 59, 1, 0, NULL, 102, '2024-10-10 03:46:37', 1),
(20393, 22220, 149, 5, 0, 'rejected - not ok with the job and\nsalary ', 104, '0000-00-00 00:00:00', 1),
(20394, 22223, 149, 7, 0, 'selected - having experience in voice process and interested in sales  and asking time to join after 23 ', 104, '0000-00-00 00:00:00', 1),
(20395, 22224, 102, 5, 0, 'Communication and convincing skill is low and then he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20396, 22211, 137, 5, 0, 'candidate future plan is it only and not interedt for sales field work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20397, 22223, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training  have exp in calling ', 149, '2024-10-12 01:28:32', 1),
(20398, 22226, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20399, 22228, 74, 7, 0, 'she is ok with the profile...completed bsc in 2021...after 3 month working in chennai and 6months completed course in bfsi....and using the centre joined in hdfc.....loan insurance and CC cross selling...1 year experience and have propoer document....now home from office 38km,,,,,1 and half hour travel...she wants to relocate,,,,husband also sales field...expected 15 to 18....and have laptop and imeediate joining kindly cross check will try in training', 104, '0000-00-00 00:00:00', 1),
(20400, 21981, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(20401, 22221, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20402, 21979, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(20403, 21968, 131, 5, 0, 'lack of communication', 126, '0000-00-00 00:00:00', 1),
(20404, 21986, 131, 5, 0, 'lack of confident', 126, '0000-00-00 00:00:00', 1),
(20405, 22228, 59, 1, 0, NULL, 74, '2024-10-12 04:53:43', 1),
(20406, 22130, 60, 1, 0, NULL, 11, '2024-10-14 09:38:43', 1),
(20407, 22176, 60, 1, 0, NULL, 18, '2024-10-14 10:40:54', 1),
(20408, 22235, 149, 5, 0, 'rejected- communication skills not good ,low confidence and out of station', 104, '0000-00-00 00:00:00', 1),
(20409, 22231, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20410, 22222, 19, 5, 0, 'too slow', 104, '0000-00-00 00:00:00', 1),
(20411, 22245, 74, 7, 0, 'she is ok with the profile completed bcom ...father farmer...fresher,,,,family in very poor ..highly job need...very active and intrested candidate ....expected 12k and have laptop...imeediate joining', 104, '0000-00-00 00:00:00', 1),
(20412, 22153, 59, 1, 0, NULL, 19, '2024-10-14 11:35:07', 1),
(20413, 22152, 137, 5, 0, 'candidate voice and communication not good and not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20414, 22243, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20415, 22218, 105, 5, 0, 'Candidate Performance Is Not Good ,But His Communication is Ok.Candidate Injured Via Accident,Also Have Spinal Issue, Sustainable is Doubt ', 104, '0000-00-00 00:00:00', 1),
(20416, 22177, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20417, 22256, 74, 7, 0, 'she is ok with the profile..completed bsc chemistry.....already worked 6 months in credit card sales chennai.....fin - icon.....sales....ready to join imeediately....expected 13k....father farmer..have laptop ready to join imeediately', 104, '0000-00-00 00:00:00', 1),
(20418, 22249, 149, 5, 0, 'rejected- not interest in the sales having interest in sales', 104, '0000-00-00 00:00:00', 1),
(20419, 22246, 89, 7, 0, 'GOOD SKILL , FRESHER', 104, '0000-00-00 00:00:00', 1),
(20420, 22248, 19, 7, 0, 'selected fresher so lets try 7 days we will confirm ctc 16k', 104, '0000-00-00 00:00:00', 1),
(20421, 22250, 149, 7, 0, 'selected- having good communication skill and interest but asking time to joining', 104, '0000-00-00 00:00:00', 1),
(20422, 22259, 149, 5, 0, 'rejected - not having confidence and  interested in other job', 104, '0000-00-00 00:00:00', 1),
(20423, 22247, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20424, 22265, 137, 5, 0, 'candidate past 4 months work for axis home loan  , not comfortable to relave the job , only looking for entertimant propose only so nit for my team', 104, '0000-00-00 00:00:00', 1),
(20425, 22253, 19, 7, 0, 'selected ctc 14k speaks well', 104, '0000-00-00 00:00:00', 1),
(20426, 22255, 149, 5, 0, 'rejected - not at all speaking ,low interest', 104, '0000-00-00 00:00:00', 1),
(20427, 22272, 152, 5, 0, 'Interested in Operations but expecting higher package', 104, '0000-00-00 00:00:00', 1),
(20428, 22207, 60, 1, 0, NULL, 30, '2024-10-14 03:52:59', 1),
(20429, 22253, 59, 1, 0, NULL, 19, '2024-10-14 04:01:05', 1),
(20430, 22269, 19, 7, 0, 'speaks well and bold voice exp person in tele calling in hand 18k salary', 104, '0000-00-00 00:00:00', 1),
(20431, 22271, 149, 5, 0, 'not  having  the way of  prounciation and less confidence', 104, '0000-00-00 00:00:00', 1),
(20432, 22273, 105, 7, 0, 'Candidate Communication and Performance is good,also she have 3-Months experience in Tele calling Field but her distance is long ,will check with her in the training Period.', 104, '0000-00-00 00:00:00', 1),
(20433, 22276, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20434, 22248, 59, 3, 0, 'Fresher need to train and check in 7 days training', 19, '2024-10-14 04:44:37', 1),
(20435, 22246, 59, 1, 0, NULL, 89, '2024-10-14 04:44:41', 1),
(20436, 22275, 137, 5, 0, 'candidate communication not good and ery long distance so  not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20437, 22269, 59, 3, 0, 'Communication ok Have exp but not relevant one 5050 sustainability need to see', 19, '2024-10-14 04:45:29', 1),
(20438, 22245, 59, 3, 0, 'Communication Ok Fresher for our roles need to check in 7 days training', 74, '2024-10-14 04:49:58', 1),
(20439, 22256, 59, 3, 0, 'communication Ok Fresher for our roles can give a try and check in 7 days training', 74, '2024-10-14 04:51:56', 1),
(20440, 22273, 59, 1, 0, NULL, 105, '2024-10-14 04:53:57', 1),
(20441, 22250, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training\n', 149, '2024-10-14 05:57:16', 1),
(20442, 22281, 74, 7, 0, 'he is ok with the profile , completed bcom computer application, father farmer single child, take active and have good exposure ,, already selected in zoho and tcs ,, due to long distance not joined ...expected to work in local due to parents, ready to move on to thanjavur,,have laptop...native thiruvarur 2 hours travel so need some time to relocate,,,expected 15k to 18k but have quality to gave kindly cross check in this parameter', 104, '0000-00-00 00:00:00', 1),
(20443, 22283, 149, 7, 0, 'selected - have confidence and communication was good but  he will join after 23rd', 104, '0000-00-00 00:00:00', 1),
(20444, 22280, 19, 7, 0, 'fresher selected ctc 14k', 104, '0000-00-00 00:00:00', 1),
(20445, 22279, 152, 5, 0, 'Higher for RE but not qualified for RM', 104, '0000-00-00 00:00:00', 1),
(20446, 22281, 59, 1, 0, NULL, 74, '2024-10-15 02:39:44', 1),
(20447, 22283, 59, 3, 0, 'Fresher Can give a try in our role and check in 7 days training', 149, '2024-10-15 04:30:24', 1),
(20448, 22289, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20449, 22290, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20450, 22291, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20451, 22292, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20452, 22296, 149, 5, 0, 'rejected - not having confidence and  will not suitable for sales', 104, '0000-00-00 00:00:00', 1),
(20453, 22294, 57, 5, 0, 'Candidate is 50/50. she said 1.5 yrs experience but she donxquott the payslip xxamp Offer letter, Relieving letter. already she getting 20k salary, now exp also 20k. communication not good. reject the profile', 104, '0000-00-00 00:00:00', 1),
(20454, 22299, 105, 5, 0, 'candidate communication and performance is good ,but expected hign packge', 104, '0000-00-00 00:00:00', 1),
(20455, 22301, 19, 5, 0, 'too slow', 104, '0000-00-00 00:00:00', 1),
(20456, 22280, 59, 1, 0, NULL, 19, '2024-10-17 12:50:27', 1),
(20457, 22303, 105, 5, 0, 'candidate com munication and performance is not good.also slightly pronunciation issue', 104, '0000-00-00 00:00:00', 1),
(20458, 22180, 59, 1, 0, NULL, 19, '2024-10-17 12:53:00', 1),
(20459, 22180, 19, 7, 0, 'lets try 7 days then we will confirm ,ctc 16k', 19, '2024-10-17 12:53:00', 1),
(20460, 22309, 102, 5, 0, 'interested in sales but previous company 3 and 4month working this candidate sustainability doubt ', 104, '0000-00-00 00:00:00', 1),
(20461, 22305, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20462, 22310, 19, 5, 0, 'aged and not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20463, 22307, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20464, 22308, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20465, 22313, 105, 5, 0, 'candidate communicatuon  and perfomance is not good.the his voice is low also long distance sustainable is doubt', 104, '0000-00-00 00:00:00', 1),
(20466, 22312, 137, 5, 0, 'candidate only interest i non voice only so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20467, 22306, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20468, 22327, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20469, 22333, 149, 7, 0, 'SELECTED - GOOD COMMUNICATION AND KNOWN ABOUT  SALES WILL GIVE 15 K TAKE HOME', 104, '0000-00-00 00:00:00', 1),
(20470, 22335, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20471, 22336, 19, 5, 0, 'he Interested in Non-Voice process', 104, '0000-00-00 00:00:00', 1),
(20472, 22311, 102, 5, 0, 'Candidate already working in customer support and interested in field work ', 104, '0000-00-00 00:00:00', 1),
(20473, 22334, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20474, 22338, 19, 5, 0, 'he cant able to speak well and walk too, he did not get any job so he came for interview here and he smelled so Weird ,he not look like  a normal person', 104, '0000-00-00 00:00:00', 1),
(20475, 22317, 137, 5, 0, 'candiate comunication ok but not interest for field work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20476, 22329, 11, 5, 0, 'worked in customer support only \nwill not work on sales ', 104, '0000-00-00 00:00:00', 1),
(20477, 22328, 11, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20478, 22339, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20479, 22340, 19, 7, 0, 'fresher ctc 14k', 104, '0000-00-00 00:00:00', 1),
(20480, 22337, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20481, 22342, 149, 5, 0, 'NOT  OKAY WITH TIMING AND JOB', 104, '0000-00-00 00:00:00', 1),
(20482, 22341, 149, 5, 0, 'NOT OKAY WITH OUR SALARY AND TIMING', 104, '0000-00-00 00:00:00', 1),
(20483, 22325, 11, 7, 0, 'Selected for e sales', 104, '0000-00-00 00:00:00', 1),
(20484, 22340, 59, 1, 0, NULL, 19, '2024-10-18 01:23:37', 1),
(20485, 22343, 149, 5, 0, 'NOT GOOD WITH COMMUNICATION AND DISTANCE WAS LONG', 104, '0000-00-00 00:00:00', 1),
(20486, 22320, 19, 2, 0, 'hold', 104, '0000-00-00 00:00:00', 1),
(20487, 22322, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20488, 22319, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20489, 22130, 59, 1, 0, NULL, 29, '2024-10-18 03:39:52', 1),
(20490, 21449, 152, 4, 0, 'Selected for next round ', 139, '2024-10-18 03:42:07', 1),
(20491, 21449, 139, 4, 0, 'Selected for Rm rold \nMoved to abdul team', 139, '2024-10-18 03:42:07', 1),
(20492, 21385, 152, 4, 0, 'Moved For next round', 139, '2024-10-18 03:42:41', 1),
(20493, 21385, 139, 4, 0, 'Selected for Rm Role\nMove to Abdul', 139, '2024-10-18 03:42:41', 1),
(20494, 22353, 105, 5, 0, 'Candidate Not Interested in Voice Process,Also Have Sustainable Issue', 104, '0000-00-00 00:00:00', 1),
(20495, 22354, 19, 7, 0, 'kindly check with her existing salary if she takes in hand 18k then will proceed ctc 18k otherwise we will move ctc 16k', 104, '0000-00-00 00:00:00', 1),
(20496, 22331, 152, 2, 0, 'On hold will update', 104, '0000-00-00 00:00:00', 1),
(20497, 22356, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20498, 22355, 137, 5, 0, 'candidate commuication and voice is average , and very long distance so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20499, 22357, 137, 5, 0, 'candidate all good but she is not work  proper for all compays and not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20500, 22354, 59, 1, 0, NULL, 19, '2024-10-18 05:11:17', 1),
(20501, 22333, 59, 1, 0, NULL, 149, '2024-10-18 05:20:06', 1),
(20502, 22326, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20503, 22304, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20504, 22288, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20505, 22362, 74, 5, 0, 'NOT SUITE FOR TELE CALLING', 104, '0000-00-00 00:00:00', 1),
(20506, 22363, 74, 5, 0, 'NOT FIT', 104, '0000-00-00 00:00:00', 1),
(20507, 22369, 149, 5, 0, 'REJECTED-  she was not fit for our process as she was lack of confidence', 104, '0000-00-00 00:00:00', 1),
(20508, 22368, 19, 5, 0, 'she exp high salary and not worth of it because she does Not have insurance sales exp', 104, '0000-00-00 00:00:00', 1),
(20509, 21385, 18, 7, 0, 'Ready to Join from November 1st Week. Selected for Abdul Team. Immedeate Joiner', 152, '2024-10-19 12:06:07', 1),
(20510, 21449, 18, 7, 0, 'Selected for Abdul Team. Having Laptop and Immedeate Joiner. Please negotiate package', 152, '2024-10-19 12:06:31', 1),
(20511, 21547, 139, 4, 0, 'Selected for RM role\nhaving experience  in sales \nhave to negotiate the package ', 152, '2024-10-19 12:07:32', 1),
(20512, 22373, 149, 7, 0, 'SELECTED- HAVE GOOD COMMUNICATION ,EXP IN HANDLING CUSTOMERS WILL GIVE CTC 18K WILL JOIN ON MON', 104, '0000-00-00 00:00:00', 1),
(20513, 22370, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20514, 22367, 59, 3, 0, 'Selected for Mf role final round interviewed by gokul and shortlisted', 104, '0000-00-00 00:00:00', 1),
(20515, 22374, 19, 5, 0, 'he Interested in biz not sales ', 104, '0000-00-00 00:00:00', 1),
(20516, 22376, 19, 5, 0, 'not worth of her asking salary and product view also she is down', 104, '0000-00-00 00:00:00', 1),
(20517, 22375, 105, 5, 0, 'Candidate Communication And performance is not good, Also his attitude and voice is low', 104, '0000-00-00 00:00:00', 1),
(20518, 22373, 59, 1, 0, NULL, 149, '2024-10-19 04:01:59', 1),
(20519, 22325, 60, 1, 0, NULL, 11, '2024-10-19 06:20:24', 1),
(20520, 22381, 109, 5, 0, 'Looking for december month internship she was in 3rd sem', 104, '0000-00-00 00:00:00', 1),
(20521, 22388, 74, 5, 0, 'NOT FIT FOR TEESALES', 104, '0000-00-00 00:00:00', 1),
(20522, 22390, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20523, 22385, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20524, 22404, 149, 5, 0, 'rejected - not good at communication', 104, '0000-00-00 00:00:00', 1),
(20525, 22406, 19, 5, 0, 'not fit for out side calling work', 104, '0000-00-00 00:00:00', 1),
(20526, 22360, 105, 5, 0, 'Candidate Communication And Performance is Not Good also his voice is very low', 104, '0000-00-00 00:00:00', 1),
(20527, 22382, 149, 7, 0, 'selected - having experience in achieving targets and good at interview ,also seeking requirement for a job will provide 14-15 take home', 104, '0000-00-00 00:00:00', 1),
(20528, 22412, 19, 7, 0, 'selected ctc 16k', 104, '0000-00-00 00:00:00', 1),
(20529, 22411, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20530, 22332, 149, 7, 0, 'selected - having good communication in english and interest shall provide salary upto 14-15 k  willing for immediate join', 104, '0000-00-00 00:00:00', 1),
(20531, 22382, 59, 1, 0, NULL, 149, '2024-10-21 02:36:57', 1),
(20532, 22332, 59, 3, 0, 'Communication Ok fresher can give a try and check in 7 days training', 149, '2024-10-21 03:06:06', 1),
(20533, 22384, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20534, 22424, 152, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(20535, 22397, 152, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(20536, 22422, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20537, 22400, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20538, 21385, 60, 1, 0, NULL, 18, '2024-10-22 10:18:29', 1),
(20539, 21449, 60, 1, 0, NULL, 18, '2024-10-22 10:19:09', 1),
(20540, 22432, 19, 5, 0, 'too slow', 104, '0000-00-00 00:00:00', 1),
(20541, 22435, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20542, 22426, 57, 5, 0, 'Candidate is not ok for sales process, 2yrs exp sbi bankend process, 6m home loan process, communication not good.current salary 13.5k th , now ex th 20k. ', 104, '0000-00-00 00:00:00', 1),
(20543, 22446, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20544, 22443, 105, 5, 0, 'candidate communication and performance is ok but his voice is not clear and pronujnciation issue.sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(20545, 22452, 19, 5, 0, 'Not Fit for Sales ', 104, '0000-00-00 00:00:00', 1),
(20546, 22451, 11, 5, 0, 'Expected salary high\nWorked in lead model\nWonxquott suitable for cold calling', 104, '0000-00-00 00:00:00', 1),
(20547, 22454, 102, 7, 0, 'Convincing and communication is better and then interested in sales once confirm DOJ', 104, '0000-00-00 00:00:00', 1),
(20548, 22461, 19, 5, 0, 'Not Fit for the Sales ', 104, '0000-00-00 00:00:00', 1),
(20549, 22437, 74, 5, 0, 'NOT FIT FOR TELESALES', 104, '0000-00-00 00:00:00', 1),
(20550, 22436, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20551, 22459, 149, 7, 0, 'selected - having good communication skill and english fluence good and will give 15k ', 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(20552, 22460, 149, 5, 0, 'rejected - not ok about the communication and confidence', 104, '0000-00-00 00:00:00', 1),
(20553, 22445, 109, 5, 0, 'communication is not good', 104, '0000-00-00 00:00:00', 1),
(20554, 22459, 59, 1, 0, NULL, 149, '2024-10-23 10:15:27', 1),
(20555, 22474, 74, 5, 0, 'other domain not fit', 104, '0000-00-00 00:00:00', 1),
(20556, 22477, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20557, 22479, 152, 7, 0, 'Selected for RE Profile immediate joining 15k take home salary negotiated Complete ASAP', 104, '0000-00-00 00:00:00', 1),
(20558, 22401, 152, 7, 0, 'Selected for RM Profile shall proceed with salary negotiation expected joining by november 1st', 104, '0000-00-00 00:00:00', 1),
(20559, 22483, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20560, 22484, 149, 5, 0, 'rejected - not ok with timing and having interest in other profession', 104, '0000-00-00 00:00:00', 1),
(20561, 22488, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20562, 22485, 137, 5, 0, 'communication not well and only looking for telecalling work not interest to out side call so nt fit for my team', 104, '0000-00-00 00:00:00', 1),
(20563, 22487, 19, 7, 0, 'CTC 15K FRESHER WORKIN IN MEDICAL BILLING FOR 3 MONTH LETS TRY 7 DAYS AND WE WILL CONFIRM', 104, '0000-00-00 00:00:00', 1),
(20564, 22470, 57, 5, 0, 'candidate is not fit for sales,. communication good but she interested in IT domain, sustainability issue', 104, '0000-00-00 00:00:00', 1),
(20565, 22491, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20566, 22500, 149, 5, 0, 'rejected -having interest in it and also having  plans to switch over in future', 104, '0000-00-00 00:00:00', 1),
(20567, 22490, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20568, 22487, 59, 5, 0, 'She is a complete IT graduate also she is not comfort with the distance', 19, '2024-10-23 02:54:37', 1),
(20569, 22503, 152, 5, 0, 'Req for customer support', 104, '0000-00-00 00:00:00', 1),
(20570, 22504, 152, 7, 0, 'Selected for RE Profile salary to be negotiated', 104, '0000-00-00 00:00:00', 1),
(20571, 22504, 59, 1, 0, NULL, 152, '2024-10-23 08:33:22', 1),
(20572, 22479, 59, 3, 0, 'Selected for RE Role Communication Ok Fresher Need to train from Scratch Give a try and check in 7 days training\n', 152, '2024-10-23 08:34:18', 1),
(20573, 22401, 59, 1, 0, NULL, 152, '2024-10-23 08:35:11', 1),
(20574, 22512, 149, 5, 0, 'candidate have interested in it and also not have clear idea about longitivity in this company', 104, '0000-00-00 00:00:00', 1),
(20575, 22473, 19, 5, 0, 'Not Fit for Sales ', 104, '0000-00-00 00:00:00', 1),
(20576, 22519, 105, 7, 0, 'Candidate communication and performance is good.aslo his voice and attire is nice ,will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(20577, 22520, 137, 7, 0, 'candidate communication and voice is good , have a own bike and lap , interest to out side call , exp salary is 15to 16k ,  try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(20578, 22519, 59, 3, 0, 'Fresher need to check and confirm in the training period', 105, '2024-10-24 11:19:27', 1),
(20579, 22524, 105, 7, 0, 'candidate performacne and communication is good.his attire and voice is also good.will check with him in the training period sugessted cTC as 15k per Month and candidate accepted it that.', 104, '0000-00-00 00:00:00', 1),
(20580, 22525, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20581, 22509, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20582, 22471, 152, 7, 0, 'Already selected candidate kindly proceed for joining', 104, '0000-00-00 00:00:00', 1),
(20583, 22524, 59, 1, 0, NULL, 105, '2024-10-24 01:25:16', 1),
(20584, 22533, 19, 5, 0, 'not worth of her asking salary', 104, '0000-00-00 00:00:00', 1),
(20585, 22530, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20586, 22538, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20587, 22536, 57, 7, 0, 'candidate is ok 50/50 fresher. she donxquott know about the sales process. but she interested just try. provide freshers salary\nthanks', 104, '0000-00-00 00:00:00', 1),
(20588, 22539, 11, 5, 0, 'Not suitable for sales ', 104, '0000-00-00 00:00:00', 1),
(20589, 22486, 27, 4, 0, 'Selected. Need to Monitor 1st 15 Days.', 104, '0000-00-00 00:00:00', 1),
(20590, 22541, 19, 5, 0, 'He is intrested in full stock so not fit for insurance sales', 104, '0000-00-00 00:00:00', 1),
(20591, 22412, 59, 1, 0, NULL, 19, '2024-10-25 11:28:34', 1),
(20592, 22562, 152, 4, 0, 'Selected for RE profile', 104, '0000-00-00 00:00:00', 1),
(20593, 22561, 152, 7, 0, 'Selected for RE Role, salary negotiation pending candidate ready for immediate joining', 104, '0000-00-00 00:00:00', 1),
(20594, 22542, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20595, 22567, 19, 7, 0, 'selected job needed person ctc 14k ', 104, '0000-00-00 00:00:00', 1),
(20596, 22543, 19, 7, 0, 'job needed person,ctc 16k', 104, '0000-00-00 00:00:00', 1),
(20597, 22536, 59, 3, 0, 'Communication Ok fresher much preferred non voice can give a try and check', 57, '2024-10-25 12:12:46', 1),
(20598, 22570, 19, 5, 0, 'not completed  degree and low profile also', 104, '0000-00-00 00:00:00', 1),
(20599, 22576, 152, 2, 0, 'Hold for one week\n', 104, '0000-00-00 00:00:00', 1),
(20600, 22567, 59, 1, 0, NULL, 19, '2024-10-25 01:24:21', 1),
(20601, 22543, 59, 1, 0, NULL, 19, '2024-10-25 01:30:42', 1),
(20602, 22575, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20603, 22569, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20604, 22587, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20605, 22602, 102, 5, 0, 'Communication and convincing skill is low and then he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20606, 22603, 105, 7, 0, 'Candidate communication and performance is good.also he have experiance in other sales domain but no in the telicalling field.as Finalized His as CTC 15k to 16K Per Month.', 104, '0000-00-00 00:00:00', 1),
(20607, 22600, 74, 7, 0, 'he is ok with the profile attend interview 2 years back...rejected...after he is worked in excela technology claim based uS process night shift...18k salary....need to change the process and studied phython and joined in a pix monks company as a data base engineer and due to father health issue releived from the job.....getting 18k salary.....father heart patient....so he is not ready to work in other cities.....we try this candidate will see in training......have no laptop ready to arrange...ready to join next month...kindly check once and confirm.', 104, '0000-00-00 00:00:00', 1),
(20608, 22600, 59, 1, 0, NULL, 74, '2024-10-26 01:38:45', 1),
(20609, 22331, 18, 7, 3, 'Selected for Abdul Team. Can Join by Wednesday. Package Expectation is high but can give a decent hike as per our standard from the last CTC. She is having a laptop and please release the offer', 152, '2024-10-26 02:57:09', 1),
(20610, 22331, 152, 4, 0, 'Selected for next round waiting for sriram sir interview', 152, '2024-10-26 02:57:09', 1),
(20611, 22561, 59, 1, 0, NULL, 152, '2024-10-26 03:00:02', 1),
(20612, 22471, 18, 7, 3, 'Visweshwaran Selected For Abdul Team. Ready to Join Next Week post Diwali Offered 3.3L CTC', 152, '2024-10-26 03:09:41', 1),
(20613, 22562, 59, 1, 0, NULL, 152, '2024-10-26 03:10:23', 1),
(20614, 22603, 59, 3, 0, 'Communication Ok Can be trained in our roles and check in 7 days training', 105, '2024-10-26 05:08:16', 1),
(20615, 22520, 59, 3, 0, 'Communication Average Fresher Pressure handling doubts long run doubts 5050 check in 7 days and confirm', 137, '2024-10-28 09:56:36', 1),
(20616, 22611, 19, 7, 0, 'selected ,speaks well ctc 18k so lets try after 7 days joining after diwali', 104, '0000-00-00 00:00:00', 1),
(20617, 20303, 59, 3, 0, 'Communication ok hired him as an intern for 3 months in our roles and we have given him the opportunity', 60, '0000-00-00 00:00:00', 1),
(20618, 22471, 60, 1, 0, NULL, 18, '2024-10-28 11:23:58', 1),
(20619, 22401, 60, 1, 0, NULL, 18, '2024-10-28 11:26:24', 1),
(20620, 22611, 59, 1, 0, NULL, 19, '2024-10-28 11:34:15', 1),
(20621, 22606, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20622, 22612, 149, 5, 0, 'NOT GOOD AT COMMUNICATION AND NOT HAVING BIKE OR LAPTOP AND FROM TAMBARAM', 104, '0000-00-00 00:00:00', 1),
(20623, 22614, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20624, 22613, 74, 5, 0, 'NOT SUITE', 104, '0000-00-00 00:00:00', 1),
(20625, 22615, 19, 5, 0, 'Expected Salary was High ', 104, '0000-00-00 00:00:00', 1),
(20626, 22620, 137, 7, 0, 'candidate communicatio and voice ok , futer plan is own business for after 5 yeras , native , coimbature noe eakkatuthaingal location , fresher , try for 7 days trainig period', 104, '0000-00-00 00:00:00', 1),
(20627, 21913, 57, 7, 0, 'candidate is ok, convincing skills good. communication ok. but he exp 16k to 18k . but i have informed freshers salary only negotiate the salary and confirm the joining', 104, '0000-00-00 00:00:00', 1),
(20628, 22621, 149, 5, 0, 'candidate was interested in other profession did not have experience in sales but looking for 20 ctc', 104, '0000-00-00 00:00:00', 1),
(20629, 22608, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20630, 22620, 59, 1, 0, NULL, 137, '2024-10-28 03:05:32', 1),
(20631, 21913, 59, 3, 0, 'Communication Ok Have Salary Exp need to check and confirm in 7 days training', 57, '2024-10-28 07:02:10', 1),
(20632, 22629, 105, 7, 0, 'candidate communication and performance is ok,but tamil pronunciation is little bit problem 5050 profile will check with him in the training period.finalized CTC 14k to 15k Per month.Check with him and provide the discussed cTC', 104, '0000-00-00 00:00:00', 1),
(20633, 22633, 11, 7, 0, 'Selected .confirm on salary', 104, '0000-00-00 00:00:00', 1),
(20634, 22628, 11, 7, 0, 'Selected \nNeed to confirm on salary', 104, '0000-00-00 00:00:00', 1),
(20635, 22629, 59, 3, 0, 'Communication Ok Fresher sustainability and pressure handling doubts give a try and check in  7 days training', 105, '2024-10-29 11:44:29', 1),
(20636, 17576, 102, 5, 0, 'Communication and convincing skill is low and then he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20637, 22634, 89, 7, 0, 'good skill , fresher', 104, '0000-00-00 00:00:00', 1),
(20638, 22632, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20639, 22626, 149, 7, 0, 'SELECTED - INTERESTED IN SALES HAVE CONFIDENT .', 104, '0000-00-00 00:00:00', 1),
(20640, 22639, 149, 5, 0, 'NOT SUITABLE FOR SALES OR VOICE PROCESS', 104, '0000-00-00 00:00:00', 1),
(20641, 22636, 149, 7, 0, 'SELECTED - HAVING INTEREST IN SALES AND READY TO WORK WITH TIME AND ALL ALSO HAVE BIKE', 104, '0000-00-00 00:00:00', 1),
(20642, 22635, 149, 5, 0, 'REJECTED  NOT SUITABLE VERY SHY TYPE AND  NOT OK  WITH COMMUNICATION', 104, '0000-00-00 00:00:00', 1),
(20643, 22640, 105, 7, 0, 'candidate communication and performance is ok 5050 ,willcheck eith her in the training period.discussed cTC as 13k to 14k per month.check with her and finalize the discussed CTC.', 104, '0000-00-00 00:00:00', 1),
(20644, 22642, 57, 5, 0, 'candidate is 50/50, she exp salary 20k.\nconvincing skills not good. lack of communications,reject the profile', 104, '0000-00-00 00:00:00', 1),
(20645, 22626, 59, 3, 0, 'Communication Ok 5050 Sustainability  looking for comfort with her friend opportunity too long run doubts a lot give a try and check in 7 days training', 149, '2024-10-29 04:07:28', 1),
(20646, 22636, 59, 2, 0, 'Too long Distance he is looking for opportunity near by also came along with his friend and looking for the comfortness for both to have the opportunity Will not sustain in a long run', 149, '2024-10-29 04:14:51', 1),
(20647, 22643, 149, 5, 0, 'REJECTED - NOT SUITABLE FOR SALES ,NOT AT ALL TALKING,SLOW RESPONSE', 104, '0000-00-00 00:00:00', 1),
(20648, 22638, 131, 4, 0, 'Good communication and confident level have Experience in sales can Process for next round', 126, '0000-00-00 00:00:00', 1),
(20649, 22638, 30, 7, 4, 'Immediate joining expect CTC 5.2 but will try to 4.5 to 4.75 for rm', 131, '2024-10-29 05:13:19', 1),
(20650, 22640, 59, 3, 0, 'Fresher Mentioned 2yrs exp in insurance but no documents pertaining this. Married and separated ,2yrs kid is with Husband and she ensures there wont be any issues regarding this 5050 Sustainability need to check', 105, '2024-10-29 07:18:50', 1),
(20651, 22634, 59, 5, 0, 'Got another Opportunity with 2.04 LPA not interested\n', 89, '2024-10-30 10:45:56', 1),
(20652, 22633, 60, 1, 0, NULL, 11, '2024-11-01 11:46:26', 1),
(20653, 22628, 60, 1, 0, NULL, 11, '2024-11-01 11:49:52', 1),
(20654, 22646, 152, 5, 0, 'Not fit for sales, can try for Customer support but package is high for the same ', 104, '0000-00-00 00:00:00', 1),
(20655, 22647, 57, 5, 0, 'Candidate is unfit for the sales profile, she interested in IT,reject the profile', 104, '0000-00-00 00:00:00', 1),
(20656, 22649, 57, 5, 0, 'candidate is unfit for sales. communication not good. married. she expected leaves and freedoms like early logouts. and sat off. reject the profile', 104, '0000-00-00 00:00:00', 1),
(20657, 22652, 149, 2, 0, 'candidate was interested and needed job before he was taken care of father biz and also want immediate join have bike.', 104, '0000-00-00 00:00:00', 1),
(20658, 22331, 60, 1, 0, NULL, 18, '2024-11-02 12:26:04', 1),
(20659, 22654, 74, 7, 0, 'she is ok with the profile, completed ug and 1 year gap and joined in asconn finance...star tat and care tie uped company worked in 3 months due to kidney stone she is releived....speaked good and have product knowledge ,,,no laptop ready to arrange ...expected 13 to 15k ...mother worked in garments in chennai...15k salary..brother  worked in engine manufacturing 15k salary....1 hour travel from home..kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(20660, 22653, 74, 7, 0, 'he is ok with the profile ....already worked in training only star health vadapalani branch...due to health issue releived and joined in asconn tech.....due to father heart problem relieved from the job...expected 13 to 15k...have bike travel time half hour...ready to join immediately...have laptop....mba last semester not completed due to financial issue..kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(20661, 22655, 149, 7, 0, 'selected - having interest in sales and incentives already have sales experience  and will give 15k and ok  for monday joining ', 104, '0000-00-00 00:00:00', 1),
(20662, 22655, 59, 5, 0, 'Continuous Line Busy no call bacl also shows her non interest', 149, '2024-11-02 02:43:21', 1),
(20663, 22320, 19, 5, 0, 'Not Fit for Sales ', 19, '2024-11-02 04:17:44', 1),
(20664, 22454, 59, 1, 0, NULL, 102, '2024-11-02 04:19:54', 1),
(20665, 22648, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20666, 22660, 105, 7, 0, 'candidate commnication and performance is good,his voice is also good ,ctc finalized 14k to 15k only .will check with him in the trfaining period', 104, '0000-00-00 00:00:00', 1),
(20667, 22659, 105, 5, 0, 'candidate communication is ok,but his performance is little bit only good.also her voice is low and she expected higher package', 104, '0000-00-00 00:00:00', 1),
(20668, 22661, 149, 7, 0, 'selected -  interested in sales and confident also have bike ,looking for immediate joining', 104, '0000-00-00 00:00:00', 1),
(20669, 22663, 149, 5, 0, 'rejected - having less confident and long distance from office', 104, '0000-00-00 00:00:00', 1),
(20670, 22669, 57, 7, 0, 'candidate is ok, observation skills good. she interest marketing field. pls check location she said sholinganallur.pls provide freshers salary and confirm the joining date.', 104, '0000-00-00 00:00:00', 1),
(20671, 22670, 137, 5, 0, 'candidate voice ok but communication is very low and low understanding  and candidate say its long distance so no it for my team', 104, '0000-00-00 00:00:00', 1),
(20672, 22668, 149, 7, 0, 'selected - interested in sales ,ok with timing lets try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(20673, 22667, 149, 7, 0, '\nselected - interested in sales and communication ok ,known additional language but she and her was from same area and want to confirm their stability lets try for training days', 104, '0000-00-00 00:00:00', 1),
(20674, 22667, 149, 7, 0, '\nselected - interested in sales and communication ok ,known additional language but she and her was from same area and want to confirm their stability lets try for training days', 104, '0000-00-00 00:00:00', 1),
(20675, 22661, 59, 2, 0, 'Discussed - need time to join- he is busy with boxign match', 149, '2024-11-04 11:54:13', 1),
(20676, 22638, 60, 1, 0, NULL, 30, '2024-11-04 11:57:12', 1),
(20677, 22666, 137, 5, 0, 'candidate communication and body language is very different , sales exp for 1 year, not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20678, 22650, 109, 2, 0, 'High expectation. she needs to confirm good communication and attitude', 104, '0000-00-00 00:00:00', 1),
(20679, 22664, 102, 5, 0, 'Communication and convincing skill is low and then interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20680, 22665, 102, 5, 0, 'Communication and convincing skill is low and then interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20681, 22669, 59, 2, 0, 'Hold - She need time to confirm have exams too ', 57, '2024-11-04 12:41:09', 1),
(20682, 22667, 59, 3, 0, 'Communication Ok fresher need to train and check in 7 days training', 149, '2024-11-04 12:45:04', 1),
(20683, 22668, 59, 3, 0, 'Communication Ok Fresher need to train and check in 7 days Her friend also got selected for the role', 149, '2024-11-04 12:47:00', 1),
(20684, 22672, 57, 5, 0, 'candidate not suit for sales profile. he work in aditya birla just 3month only. now he exp 15k take home, sustainability issue,he met accident 1yr back, my thought driving also tough.reject the profile', 104, '0000-00-00 00:00:00', 1),
(20685, 22673, 102, 5, 0, 'Communication and convincing skill is low and then interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20686, 22675, 11, 5, 0, 'will not sustain in sales ', 104, '0000-00-00 00:00:00', 1),
(20687, 22676, 149, 5, 0, 'good at communication but long distance asking time to settle in chennai', 104, '0000-00-00 00:00:00', 1),
(20688, 22680, 149, 5, 0, 'rejected- having interest in other profession looking for temporary option now', 104, '0000-00-00 00:00:00', 1),
(20689, 22679, 137, 5, 0, 'candidate commuication ok but voice not good and very long distance so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20690, 22678, 102, 5, 0, 'Communication and convincing skill is low and then interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20691, 22677, 105, 5, 0, 'candidate communication and performance is low and his voice is also very low.sustainable is doubt', 104, '0000-00-00 00:00:00', 1),
(20692, 22660, 59, 3, 0, 'Need to check and confirm in the training ', 105, '2024-11-04 03:24:00', 1),
(20693, 22687, 149, 5, 0, 'rejected - not having interest in sales and not ok with ofz time', 104, '0000-00-00 00:00:00', 1),
(20694, 22688, 137, 5, 0, 'candidate all ok but very long distance and she need to logout the office everyday on 6 to 6.30  so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20695, 22689, 19, 7, 0, 'Selected CTC 16k ', 104, '0000-00-00 00:00:00', 1),
(20696, 22690, 149, 5, 0, 'rejected - having interest in own buisness and not good at communication', 104, '0000-00-00 00:00:00', 1),
(20697, 22691, 102, 7, 0, 'Communication and convincing skill is  good and interested in telesales will try training period ( once confirm DOJ and salary package )\n', 104, '0000-00-00 00:00:00', 1),
(20698, 22693, 105, 5, 0, 'canidate communication and performance is not good ,also sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(20699, 22694, 19, 5, 0, 'Not Fit for Sales ', 104, '0000-00-00 00:00:00', 1),
(20700, 22695, 19, 5, 0, 'Not Fit for Sales ', 104, '0000-00-00 00:00:00', 1),
(20701, 22700, 102, 5, 0, 'Communication and convincing skill is low and then interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20702, 22698, 102, 5, 0, 'Communication and convincing skill is low and then interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20703, 22657, 57, 5, 0, 'candidate communication good. but salary exp high 20k.fresher.Well Settled,entire family doing  own business like textiles shop. .unfit for for the sales profile', 104, '0000-00-00 00:00:00', 1),
(20704, 22702, 149, 5, 0, 'reject - communication was not good and  also interested in other profession', 104, '0000-00-00 00:00:00', 1),
(20705, 22701, 149, 5, 0, 'rejected - not ok with way of communication and interested in other profession', 104, '0000-00-00 00:00:00', 1),
(20706, 22654, 59, 3, 0, 'Communication Ok 5050 Showing 3 months exp no proper records and seems to be doubfull give a try and check in training', 74, '2024-11-05 12:16:36', 1),
(20707, 22653, 59, 3, 0, '7months 3 companies no document proof sustainability doubts a lot 40kms up and down need to check in training period', 74, '2024-11-05 12:19:07', 1),
(20708, 22703, 137, 5, 0, 'candidate not proper dress code and not under standing my words so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(20709, 22707, 152, 5, 0, 'No clarity in his answers about his personal life as well as professional approach was good but nothing else was. ', 104, '0000-00-00 00:00:00', 1),
(20710, 22706, 19, 5, 0, 'Not Fit for Sales ', 104, '0000-00-00 00:00:00', 1),
(20711, 22708, 19, 5, 0, 'Not Fit for Sales ', 104, '0000-00-00 00:00:00', 1),
(20712, 22674, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20713, 22691, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check and confirm in training ', 102, '2024-11-05 06:07:58', 1),
(20714, 22716, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20715, 22689, 59, 3, 0, 'Communication Ok 3 months exp in calling but no documents can give a try and check in 7 days\n', 19, '2024-11-06 10:32:34', 1),
(20716, 22719, 149, 5, 0, 'rejected - not ok with salary and doubleminded about  job', 104, '0000-00-00 00:00:00', 1),
(20717, 22725, 74, 7, 0, 'she is ok with the profile, already worked in telecalling and data entry,,,,,speaked well and high job need ,,,,expected 15k have no laptop ready to arrange,,,,monday joining kindly check once and confirm...mahalakshmi class mate', 153, '0000-00-00 00:00:00', 1),
(20718, 22722, 19, 7, 0, 'Selected CTC 16k', 104, '0000-00-00 00:00:00', 1),
(20719, 22727, 19, 5, 0, 'Not Fit for his asking salary ', 104, '0000-00-00 00:00:00', 1),
(20720, 22729, 149, 5, 0, 'rejected - not ok with salary level of our compny\n', 104, '0000-00-00 00:00:00', 1),
(20721, 22728, 19, 5, 0, 'Sustainability was doubt ', 104, '0000-00-00 00:00:00', 1),
(20722, 22731, 105, 5, 0, 'Candidate Communication and performance is not good.also her voice is not bold and clear.then distance is long sustainable doubt ', 104, '0000-00-00 00:00:00', 1),
(20723, 22734, 137, 5, 0, 'candidate just 6 months only looking or job after course completed try for it and maily interest for it only , and very long distance so no fit for my team', 104, '0000-00-00 00:00:00', 1),
(20724, 22735, 102, 5, 0, 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', 104, '0000-00-00 00:00:00', 1),
(20725, 22736, 102, 5, 0, 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', 104, '0000-00-00 00:00:00', 1),
(20726, 22722, 59, 3, 0, 'Communication Ok fresher for our roles can be trained check and confirm in 7 days training\n', 19, '2024-11-06 03:31:58', 1),
(20727, 22737, 149, 2, 0, 'candidate was having interest but having some doubts with salary and so let try for 7days training', 104, '0000-00-00 00:00:00', 1),
(20728, 22725, 59, 3, 0, 'Communication Ok Can be trained in our roles and check in 7 days training', 74, '2024-11-06 03:59:18', 1),
(20729, 22744, 149, 5, 0, 'rejected - not  suitable for our working and not have confidence about stability', 104, '0000-00-00 00:00:00', 1),
(20730, 22742, 137, 7, 0, 'candidate communication and voice ok , fresher , native location , confirm the work after relocate to chennai , ex salary 15k , try for 7 days training  periods', 104, '0000-00-00 00:00:00', 1),
(20731, 14197, 152, 4, 0, 'Selected for next round', 104, '0000-00-00 00:00:00', 1),
(20732, 22746, 11, 5, 0, 'worked in IT profile .will not suitable forsales ', 104, '0000-00-00 00:00:00', 1),
(20733, 22758, 149, 5, 0, 'rejected - not good at prounciation and communication and long distance', 104, '0000-00-00 00:00:00', 1),
(20734, 22753, 149, 5, 0, 'rejected - not good at communication and less confidence ,long distance', 104, '0000-00-00 00:00:00', 1),
(20735, 22759, 137, 7, 0, 'candidate communication and voice also good , past 6 month work from back end team for  bike insurance , exp salary for 15k so try for 7 days training  periods ', 104, '0000-00-00 00:00:00', 1),
(20736, 22745, 105, 7, 0, 'candidate performance and attention is good ,but slightly voice pronunciation correlation issue,will check with her in the training period 5050 profile', 104, '0000-00-00 00:00:00', 1),
(20737, 22745, 105, 7, 0, 'candidate performance and attention is good ,but slightly voice pronunciation correlation issue,will check with her in the training period 5050 profile', 104, '0000-00-00 00:00:00', 1),
(20738, 22760, 102, 5, 0, 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', 104, '0000-00-00 00:00:00', 1),
(20739, 22745, 59, 3, 0, 'Communication Ok Have parttime calling exp can give a try and check in training ', 105, '2024-11-07 12:24:54', 1),
(20740, 22764, 149, 5, 0, 'rejected - not good at communication and not ok with salary', 104, '0000-00-00 00:00:00', 1),
(20741, 22763, 102, 5, 0, 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', 104, '0000-00-00 00:00:00', 1),
(20742, 22723, 105, 5, 0, 'Candidate Communication And performance is Ok,But Her Distance is To long sustainable is more Doubt,', 104, '0000-00-00 00:00:00', 1),
(20743, 22762, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20744, 22759, 59, 5, 0, 'Dropped - requested Previous exp documents but she not shared any', 137, '2024-11-07 02:36:29', 1),
(20745, 22742, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training ', 137, '2024-11-07 02:40:31', 1),
(20746, 22765, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20747, 22751, 74, 5, 0, 'UNFIT', 153, '0000-00-00 00:00:00', 1),
(20748, 14197, 18, 7, 2, 'Selected for Abdul Team. Negotiate the salary with 10 to 15% hike from the previous Salary. Immedeate Joiner and he has laptop and Twowheeler', 152, '2024-11-07 04:22:56', 1),
(20749, 22576, 152, 5, 0, 'Too highly qualified', 152, '2024-11-07 06:04:51', 1),
(20750, 14197, 59, 3, 0, 'Communication Ok have exp in sales calling give a try and check in training period ', 18, '2024-11-07 06:11:25', 1),
(20751, 22770, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(20752, 22781, 149, 5, 0, 'rejected - candidate was already looked for other profession and long distance', 153, '0000-00-00 00:00:00', 1),
(20753, 22775, 137, 5, 0, 'candidate already selected for govt job in tamilnad barder policy waiting for the resultaftre 4 months join the work just4 months serch the work so not fot for my team', 153, '0000-00-00 00:00:00', 1),
(20754, 22617, 102, 5, 0, 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', 153, '0000-00-00 00:00:00', 1),
(20755, 22711, 149, 5, 0, 'reject- she was not ok with salary and also not good at communication', 153, '0000-00-00 00:00:00', 1),
(20756, 22784, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(20757, 22785, 102, 5, 0, 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', 153, '0000-00-00 00:00:00', 1),
(20758, 22766, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(20759, 22789, 105, 7, 0, 'candidate communication and performance is little bit ok.5050 Profile will try to check in the training period.Discussed CTC 15K Per month', 153, '0000-00-00 00:00:00', 1),
(20760, 22789, 59, 5, 0, 'Discussed and asked her to share the previous exp documents but no responses later', 105, '2024-11-08 03:55:33', 1),
(20761, 22797, 137, 7, 0, 'candidate communication and voce good , interest to sales , he is already studing for ias exam also , so try for 7 days trainng  periods', 153, '0000-00-00 00:00:00', 1),
(20762, 22786, 149, 7, 0, 'candidate was interested in sales and good at communication also ready for immediate joining will give 16k as salary', 153, '0000-00-00 00:00:00', 1),
(20763, 22786, 59, 2, 0, 'Shared breakup - He need time to confirm have typing class after 7 PM - Discussed shared breakup he need to confirm', 149, '2024-11-09 12:34:22', 1),
(20764, 22796, 57, 5, 0, 'Candidate unfit for sales, he interested  iT domain.reject the profile.team referrence', 153, '0000-00-00 00:00:00', 1),
(20765, 22791, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(20766, 22800, 152, 7, 4, 'Selected for next round, candidate has bike xxamp Laptop. expected 3.5L least, last income 3L. ', 153, '0000-00-00 00:00:00', 1),
(20767, 22800, 18, 7, 3, 'Selected for Abdul team. Immedeate Joiner and can offer 3.5L CTC. ', 152, '2024-11-09 02:41:59', 1),
(20768, 22801, 152, 4, 0, 'Good intention towards sales and communication is fine selected for next round', 153, '0000-00-00 00:00:00', 1),
(20769, 22797, 59, 3, 0, 'Communication Ok 5050 on sustainability issues Prepared UPSC /business plans etc long run doubts also pressure handling will look', 137, '2024-11-09 03:20:23', 1),
(20770, 22733, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20771, 22812, 74, 5, 0, 'unfit', 153, '0000-00-00 00:00:00', 1),
(20772, 22715, 149, 5, 0, 'rejected - candidate was not at all speaking and not suitable for sales', 153, '0000-00-00 00:00:00', 1),
(20773, 22801, 18, 5, 0, 'He got Other offers and intersted to Join in another company', 152, '2024-11-11 12:33:46', 1),
(20774, 22813, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(20775, 22816, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(20776, 22824, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20777, 22808, 137, 5, 0, 'candidate just like that looking for job , not very much interest and not fit for sales and my team , not interest also out side call ', 154, '0000-00-00 00:00:00', 1),
(20778, 22830, 149, 7, 0, 'selected - having interest in sales and communication ok lets try for 7days training period', 154, '0000-00-00 00:00:00', 1),
(20779, 22831, 149, 5, 0, 'rejected - communication was not clear and  not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20780, 22835, 149, 7, 0, 'selected - candidate was good at communication and have experience ready for immediate joining we will give 15k take home', 154, '0000-00-00 00:00:00', 1),
(20781, 6954, 74, 5, 0, 'not fit', 74, '2024-11-13 10:33:37', 1),
(20782, 10691, 74, 5, 0, 'unfit', 74, '2024-11-13 10:35:47', 1),
(20783, 22836, 105, 7, 0, 'candidate communication and performance is good.his voice and approach is also good,but candidate done surgery on last year he said bike travel is not Suitable.cTC discussed as 1.8/LPA.as discussed after 6 based On performance hike will provide.', 154, '0000-00-00 00:00:00', 1),
(20784, 22829, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20785, 22835, 59, 2, 0, 'Continous RNR', 149, '2024-11-13 11:08:39', 1),
(20786, 22846, 149, 5, 0, 'not good at communication and not have stability in previous companies', 154, '0000-00-00 00:00:00', 1),
(20787, 22845, 149, 5, 0, 'communication was not so good and long distance having idea for own business', 154, '0000-00-00 00:00:00', 1),
(20788, 22853, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(20789, 22852, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20790, 18597, 74, 5, 0, 'not fit', 74, '2024-11-13 03:39:05', 1),
(20791, 22851, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20792, 22851, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20793, 22843, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20794, 22836, 59, 3, 0, 'Communication Ok fresher can give a try and check in training period', 105, '2024-11-13 03:47:52', 1),
(20795, 22830, 59, 3, 0, 'Communication Ok need to check in training and confirm', 149, '2024-11-13 06:25:12', 1),
(20796, 22858, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20797, 22848, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20798, 22800, 59, 3, 0, 'Communication Ok based on the salary commitment by area manager proceeded with the same his exp is some what more Need to check in training', 18, '2024-11-14 11:04:45', 1),
(20799, 22855, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20800, 22863, 102, 5, 0, 'candidate communication and convincing is good but interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(20801, 22864, 19, 5, 0, 'not even  try to speak', 154, '0000-00-00 00:00:00', 1),
(20802, 22862, 149, 5, 0, 'rejected - candidate was not good at communication and she was having plans for other profession also', 154, '0000-00-00 00:00:00', 1),
(20803, 22857, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20804, 22849, 149, 5, 0, 'rejected - candidate was bad at communication ,long  distance and  not interested in sales', 154, '0000-00-00 00:00:00', 1),
(20805, 22868, 137, 7, 0, 'candidate prevosl work from dmat account open telecalling work exp for 3 month , that company recentl closed , so that reason to search the other company but candidate communication and voice also good past salary 15k payslip also in hand so exp salary is 16 to 18k so try for 7 days training periods ', 154, '0000-00-00 00:00:00', 1),
(20806, 22869, 19, 5, 0, 'she asked 1 day leave for every week', 154, '0000-00-00 00:00:00', 1),
(20807, 22871, 149, 7, 0, 'candidate was good at communication ,bold and prounciation ,also interested in sales ,kannan sir also checked her we shall provided salary 15k-16k ', 154, '0000-00-00 00:00:00', 1),
(20808, 22872, 109, 5, 0, 'High expectation', 154, '0000-00-00 00:00:00', 1),
(20809, 22875, 102, 5, 0, 'candidate communication and convincing is good but interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(20810, 22876, 105, 5, 0, 'candidate communication and performance is good.he is looking for non-voice and also he clearly mentioned for customer support in the quetionary sheet', 154, '0000-00-00 00:00:00', 1),
(20811, 22877, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20812, 22871, 59, 3, 0, 'Communication Ok Can be trained in our roles kindly check in 7 days training', 149, '2024-11-14 04:00:52', 1),
(20813, 22889, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20814, 22832, 74, 5, 0, 'unfit', 153, '0000-00-00 00:00:00', 1),
(20815, 22887, 19, 7, 0, 'in hand 14k job needed person lets we confirm 7 days ,This month 18th joining(monday)', 154, '0000-00-00 00:00:00', 1),
(20816, 22865, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20817, 22874, 149, 5, 0, 'rejected - candidate was not good at communication ,having interest in it profession ,did not have sustainablity in old companies', 154, '0000-00-00 00:00:00', 1),
(20818, 22888, 102, 5, 0, 'candidate communication and convincing is good but interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(20819, 22822, 59, 3, 0, 'Communication Ok Need to open up a lot have exp in customer support can give a try and train in Renewals will check in training final round by Gokul and selected\n', 154, '0000-00-00 00:00:00', 1),
(20820, 22883, 59, 3, 0, 'Communication Ok Fresher 1yr gap hired for renewal need to check in the training and confirm gokul final round selected', 154, '0000-00-00 00:00:00', 1),
(20821, 22887, 59, 5, 0, 'Discussed but not interested to join this sales roles', 19, '2024-11-15 12:06:02', 1),
(20822, 22882, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20823, 22893, 19, 5, 0, 'not speak well and not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20824, 22893, 19, 5, 0, 'not speak well and not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20825, 22892, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20826, 22892, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20827, 22868, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training', 137, '2024-11-16 10:08:30', 1),
(20828, 22902, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20829, 22906, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20830, 22908, 152, 4, 0, 'Selected for next round', 154, '0000-00-00 00:00:00', 1),
(20831, 22904, 102, 5, 0, 'candidate communication and convincing is good but interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(20832, 22901, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20833, 22905, 105, 5, 0, 'Candidate Communication And performance is Ok But Her voice is low and expected higher package also sustainable is doubt ', 154, '0000-00-00 00:00:00', 1),
(20834, 22907, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20835, 22911, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20836, 22891, 89, 5, 0, 'not fit for the job', 154, '0000-00-00 00:00:00', 1),
(20837, 22910, 149, 5, 0, 'rejected - candidate was not ok with salary  and not interested in sales', 154, '0000-00-00 00:00:00', 1),
(20838, 22912, 109, 5, 0, 'Sustainability doubt', 154, '0000-00-00 00:00:00', 1),
(20839, 22918, 74, 5, 0, 'not suite for telesales', 153, '0000-00-00 00:00:00', 1),
(20840, 22919, 137, 5, 0, 'candidate voice and communication ok but past1 month work in kotak bank field work, not interest to quit the job , so he only looking for non voice process only so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(20841, 22921, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20842, 22922, 102, 5, 0, 'candidate communication and convincing is good but interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(20843, 22917, 89, 5, 0, 'silent person and no basic skill', 154, '0000-00-00 00:00:00', 1),
(20844, 22913, 149, 5, 0, 'not so good at communication and shy type and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20845, 22924, 137, 5, 0, 'candidate vocie and commuication  not good and  he past 3 years work from other domine, and he ery interst to medical coding , so not fit for my team ', 154, '0000-00-00 00:00:00', 1),
(20846, 22933, 149, 5, 0, 'candidate was not good at communication and  not have confidence and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20847, 22932, 149, 5, 0, 'rejected-candidate was  not even wear a proper outfit communication was not good not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20848, 22925, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20849, 22934, 57, 5, 0, 'Candidate is unfit for sales profile,1yr experience collection, 6m working in tamil matrimony. 6m he take over for father work. communication not well.', 154, '0000-00-00 00:00:00', 1),
(20850, 22914, 137, 7, 0, 'candidate communication and voice good , previous exp for sales for life insurance in 6 months  medical reason to quite the job , exp ctc is 16k to 18 k , very long distance so try for 7 days training periods', 154, '0000-00-00 00:00:00', 1),
(20851, 22939, 105, 5, 0, 'candidate communication and performance is not good ,also long disteance and expected higher package .then sustainable doubt', 154, '0000-00-00 00:00:00', 1),
(20852, 22938, 11, 5, 0, 'sustainability problem\nabsconded in previous company', 154, '0000-00-00 00:00:00', 1),
(20853, 22940, 89, 5, 0, 'time pass', 154, '0000-00-00 00:00:00', 1),
(20854, 22940, 89, 5, 0, 'time pass', 154, '0000-00-00 00:00:00', 1),
(20855, 22943, 57, 4, 0, 'Candidate is ok. 5m exp samsung service centre. pls provide 13k to 14k .Confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(20856, 22944, 149, 7, 0, 'selected - good communication and have confidence and interested in sales ,syed sir also checked and suggested to give 14k-15k salary for him', 154, '0000-00-00 00:00:00', 1),
(20857, 22943, 59, 3, 0, 'Communication Good Open to sales profile can be trained in our roles should check in training', 57, '2024-11-19 03:57:16', 1),
(20858, 22914, 59, 3, 0, 'Fresher fr our roles pressure handling not sure if he join let us try in training and confirm', 137, '2024-11-19 04:08:50', 1),
(20859, 22944, 59, 3, 0, 'Communication Good Open to sales profile can be trained in our roles should check in training', 149, '2024-11-19 04:17:52', 1),
(20860, 22949, 137, 5, 0, 'candidate mainly looking for banking for and govt work only just temporvery looking for job and not fit for sales , because vocie is very low and very silent  type  , so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(20861, 22953, 105, 5, 0, 'candidate communication and performance is not good ,also his attire is not good then sustainable doubt', 154, '0000-00-00 00:00:00', 1),
(20862, 22951, 149, 5, 0, 'rejected - candidate was not talkative not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20863, 22951, 149, 5, 0, 'rejected - candidate was not talkative not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20864, 22952, 89, 7, 0, 'good skill but i will Analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(20865, 22952, 89, 7, 0, 'good skill but i will Analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(20866, 22954, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20867, 22947, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20868, 22956, 59, 3, 0, 'Rejoining Candidate after 2yrs Reviewed by Gokul Commitment Given 10 days - 1NOP / m1-30K / m2 - 50K / M3 - 80K and M0-10K SIP / M1 - 30K SIP / m2 - 40K sIP / M3 - 50K SIP', 154, '0000-00-00 00:00:00', 1),
(20869, 22957, 149, 5, 0, 'rejected -customer was  good at communication but not trustable in stability and already  got rejected by our company', 154, '0000-00-00 00:00:00', 1),
(20870, 22961, 105, 5, 0, 'candidate communication and performance is ok ,But she is intrested in non-voice process,also she is sensitive type,sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(20871, 22962, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20872, 22963, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20873, 22915, 149, 7, 0, 'selected - good at communication ,having interest in sales  and ready to work for incentives and kannan sir also suggested for 14-15k as salary', 154, '0000-00-00 00:00:00', 1),
(20874, 22916, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20875, 22916, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20876, 22915, 59, 3, 0, 'Communication Ok Can give a try and check in  7 days training based on manager decision proceeded with the cost', 149, '2024-11-20 06:23:33', 1),
(20877, 22908, 18, 8, 0, 'Need to reschedule', 152, '2024-11-21 10:13:39', 1),
(20878, 22966, 19, 5, 0, 'Not fit foe sales,she is not intrest in calling', 154, '0000-00-00 00:00:00', 1),
(20879, 22965, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20880, 22965, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20881, 22970, 102, 5, 0, 'candidate already working another domain salary take home 28k to 30k and high salary expectation ', 154, '0000-00-00 00:00:00', 1),
(20882, 22972, 57, 7, 0, 'Candidate is 50/50.kindly cross check previous job status. 2yr exp saravana textiles , 6m some think working same domain  other company. 2yr carrier gap, pls check she mentally depressed. so cross check and confirm\nthanks', 153, '0000-00-00 00:00:00', 1),
(20883, 22964, 137, 7, 0, 'Candidate communication and voice ok previous work experience. He will join the work on dec 1 Week, so try for 7 days training periods ', 154, '0000-00-00 00:00:00', 1),
(20884, 22955, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20885, 22974, 74, 7, 0, 'she is ok with the profile ...after college first 6 months not working after joined in textile shop 1 year 7k salary,,,after releived due to timing issue. she releived. 1 year gap due to father health issue and 24 march joined in tvs customer care and getting 12k,,,releievd....she is studying NEET OVER PAST 4 YEARS.....expected 12 to 13k joining monday////check once and confirm...', 153, '0000-00-00 00:00:00', 1),
(20886, 22952, 59, 3, 0, 'Communication Ok mentioned 2 months loan sales but no documents need to check in 7 days training', 89, '2024-11-21 12:27:42', 1),
(20887, 22972, 59, 3, 0, 'Fresher for our role can be trained age around 27 yrs Have exp in Matured character personally depressed after her fathers death should check in 7 days training and confirm long run need to check', 57, '2024-11-21 12:28:07', 1),
(20888, 22976, 19, 7, 0, 'selected ,work exp 1.5 years in chola so we will go 16k in hand salary', 154, '0000-00-00 00:00:00', 1),
(20889, 22967, 11, 7, 0, 'she is ok for E sales ', 154, '0000-00-00 00:00:00', 1),
(20890, 22975, 149, 5, 0, 'REJECTED -candidate was not suitable for sales not at all speaking', 154, '0000-00-00 00:00:00', 1),
(20891, 22977, 105, 5, 0, 'Candidate Communication And Performance Is Ok,also like slow Person and sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(20892, 22974, 59, 3, 0, 'Communication Ok Can be trained in our roles and check', 74, '2024-11-21 03:16:43', 1),
(20893, 22978, 149, 7, 0, 'selected - candiate was ok with communication and have interested in sales also kannan sir suggested to provide 13 k to 15k salary ', 154, '0000-00-00 00:00:00', 1),
(20894, 22978, 149, 7, 0, 'selected - candiate was ok with communication and have interested in sales also kannan sir suggested to provide 13 k to 15k salary ', 154, '0000-00-00 00:00:00', 1),
(20895, 22976, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training', 19, '2024-11-21 03:54:03', 1),
(20896, 15399, 74, 5, 0, 'not fit', 74, '2024-11-21 05:16:12', 1),
(20897, 22978, 59, 3, 0, '5050-Seems not much interest to work,sustainability doubts / Shared breakup', 149, '2024-11-21 07:43:28', 1),
(20898, 22980, 11, 7, 4, 'candidate ok for E sales \n', 154, '0000-00-00 00:00:00', 1),
(20899, 22988, 149, 7, 0, 'selected- candidate was already 4 months experienced in star ,she explained plan well and will start calling from day 1 and kannan sir also suugested for 16k salary and she also ready for immediate joining', 154, '0000-00-00 00:00:00', 1),
(20900, 22990, 19, 7, 0, 'already worked 1.6Years so we will try 7 days ,job needed person ctc 15k ', 154, '0000-00-00 00:00:00', 1),
(20901, 22979, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20902, 22991, 19, 7, 0, 'fresher job needed person ctc 16k', 154, '0000-00-00 00:00:00', 1),
(20903, 22990, 59, 3, 0, 'Communication Ok Can give a try and check in 7days training', 19, '2024-11-22 12:26:08', 1),
(20904, 22994, 57, 7, 0, 'candidate is ok,salary exp high,\n1yrs exp star health insurance. settled. pls cross check Sustainability . confirm salary xxamp joining date', 154, '0000-00-00 00:00:00', 1),
(20905, 22991, 59, 3, 0, 'Fresher for our role need to check in training and confirm', 19, '2024-11-22 12:45:03', 1),
(20906, 22993, 102, 5, 0, 'Candidate communication is good but he is not interested in sales his  interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(20907, 22988, 59, 3, 0, 'Communication Ok Can be trained in ou roles and check', 149, '2024-11-22 12:51:32', 1),
(20908, 22997, 102, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20909, 22998, 102, 7, 0, 'candidate communication and convincing is good and will try training period once confirm the DOJ', 154, '0000-00-00 00:00:00', 1),
(20910, 22995, 149, 5, 0, 'reject - candidate was not ok with communication and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20911, 22996, 19, 7, 0, 'selected job needed person lets try 7 days,ctc 14k joining at Dec 1', 154, '0000-00-00 00:00:00', 1),
(20912, 22996, 59, 2, 0, 'She need time to confirm due to rain issues her home is not in good conditions', 19, '2024-11-22 02:49:53', 1),
(20913, 22980, 60, 1, 0, NULL, 11, '2024-11-22 02:55:39', 1),
(20914, 22967, 60, 1, 0, NULL, 11, '2024-11-22 02:57:44', 1),
(20915, 23004, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20916, 23000, 137, 7, 0, 'candidate communication and voice good and past 3 month work from visa insurance , branch change that reason to relave the job , past salary 14k now exp is 15 to 16k so try for 7 days training ', 154, '0000-00-00 00:00:00', 1),
(20917, 22999, 137, 5, 0, 'candidate communication not good and not fit for my team , ', 154, '0000-00-00 00:00:00', 1),
(20918, 22999, 137, 5, 0, 'candidate communication not good and not fit for my team , ', 154, '0000-00-00 00:00:00', 1),
(20919, 22998, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training', 102, '2024-11-22 04:03:43', 1),
(20920, 23000, 59, 3, 0, 'Have 2 months exp in Vizza can give a try and check in 7 days training', 137, '2024-11-22 04:10:10', 1),
(20921, 7725, 74, 5, 0, 'unfit', 74, '2024-11-23 09:57:57', 1),
(20922, 7907, 74, 5, 0, 'not fit', 74, '2024-11-23 12:54:45', 1),
(20923, 23010, 19, 7, 0, 'job needed person,in hand 14k salary,immediate joining', 154, '0000-00-00 00:00:00', 1),
(20924, 23011, 149, 5, 0, 'REJECTED- CANDIDATE WAS NOT GOOD AT COMMUNICATION ,LONG  DISTANCE ASKING MORE SALARY', 154, '0000-00-00 00:00:00', 1),
(20925, 23008, 149, 7, 0, 'selected -having experience in voice process ,interested in sales also ,ready for immediate joining ', 154, '0000-00-00 00:00:00', 1),
(20926, 23010, 59, 3, 0, 'Communication Ok fresher Candidate can give a try and check n training', 19, '2024-11-23 04:42:04', 1),
(20927, 23008, 59, 1, 0, NULL, 149, '2024-11-23 05:02:18', 1),
(20928, 22964, 59, 3, 0, 'Communication Ok Fresher for Sales calling focusing much for logistics sustainabilitydoubts if he join let us try', 137, '2024-11-24 10:23:04', 1),
(20929, 23014, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(20930, 23015, 149, 5, 0, 'rejected-not even speaking at all nervous ,not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20931, 23017, 19, 5, 0, 'rejected not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20932, 23012, 137, 5, 0, 'candidate only looking for telecaling only , not go for out side call so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(20933, 23005, 105, 5, 0, 'candidated communication and performance is not good ,also he is very slow and he is not interested in out sourcing call', 154, '0000-00-00 00:00:00', 1),
(20934, 23018, 89, 5, 0, 'silent person skills Average', 154, '0000-00-00 00:00:00', 1),
(20935, 23024, 149, 5, 0, 'rejected- not having proper communication , not interested in sales', 154, '0000-00-00 00:00:00', 1),
(20936, 23027, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20937, 23025, 149, 5, 0, 'rejected - candidate was not ok with communication , notinterested in sales', 154, '0000-00-00 00:00:00', 1),
(20938, 23029, 137, 5, 0, 'candidate communication an voice ok but she interested in international voice process , and loking for customer service , and after4 months join the mba so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(20939, 23028, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20940, 23030, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20941, 23031, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20942, 22486, 60, 1, 0, NULL, 27, '2024-11-26 09:59:37', 1),
(20943, 23036, 19, 7, 0, 'job needed person lets try 7 days then we will confirm ctc 16k fresher', 154, '0000-00-00 00:00:00', 1),
(20944, 23036, 59, 3, 0, 'Communication Ok fresher 2 yrs gap need to train a lot and check in 7 days training', 19, '2024-11-26 12:01:19', 1),
(20945, 23035, 149, 5, 0, 'recejected - having less confidence in speech ,not suitable for sales                                                                                                                                        ', 154, '0000-00-00 00:00:00', 1),
(20946, 23038, 19, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20947, 23040, 149, 5, 0, 'rejected - candidate was slow at speaking not active and long distance', 154, '0000-00-00 00:00:00', 1),
(20948, 23039, 105, 7, 0, 'Candidate communication and performacne is good.she is little bit attitude but will check with her in the training period.salary discussed 14k to 15k ,but she previously earned 9k .so finalize her salary below 14k.', 154, '0000-00-00 00:00:00', 1),
(20949, 23041, 137, 7, 0, 'candidate communication  and voice good , past 3 mont blinket work from rider , and currelty mba  studing, exp salary 16 to 18k , so try for 7 days trainig periods and immediate joining', 154, '0000-00-00 00:00:00', 1),
(20950, 23041, 137, 7, 0, 'candidate communication  and voice good , past 3 mont blinket work from rider , and currelty mba  studing, exp salary 16 to 18k , so try for 7 days trainig periods and immediate joining', 154, '0000-00-00 00:00:00', 1),
(20951, 22011, 137, 2, 0, 'ncd change', 137, '2024-11-27 10:41:12', 1),
(20952, 23033, 149, 7, 0, 'selected -candidate was interested in sales ,confidence  in speech also ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(20953, 23044, 102, 5, 0, 'Candidate communication and convincing skills is low and interested in Customer support ', 154, '0000-00-00 00:00:00', 1),
(20954, 23043, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20955, 23046, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20956, 22717, 19, 5, 0, 'expected high salary, not worth of it', 154, '0000-00-00 00:00:00', 1),
(20957, 23047, 149, 7, 0, 'SELECTED - candidate have already experienced in sales ,having good communication and confidence and also syed sir suggested to hire at 14k as salary ', 154, '0000-00-00 00:00:00', 1),
(20958, 23033, 59, 1, 0, NULL, 149, '2024-11-27 01:06:23', 1),
(20959, 23048, 57, 7, 0, 'Candidate is not suitable for sales profile,communication not good, 6m exp. product not knowledge also not good, pre work exp.', 154, '0000-00-00 00:00:00', 1),
(20960, 23048, 59, 1, 0, NULL, 57, '2024-11-27 01:29:20', 1),
(20961, 22994, 59, 2, 0, 'Have exp in calling salary exp is high he need time to confirm', 57, '2024-11-27 01:33:15', 1),
(20962, 23051, 19, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20963, 23050, 19, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20964, 23041, 59, 3, 0, 'Fresher open for Sales Can be trained in our roles need to check in training and confirm', 137, '2024-11-27 05:23:42', 1),
(20965, 23047, 60, 1, 0, NULL, 149, '2024-11-27 05:30:49', 1),
(20966, 23054, 89, 7, 0, 'good skill. let see her 7 days training time ', 154, '0000-00-00 00:00:00', 1),
(20967, 23055, 137, 5, 0, 'communication not good and just ne month looking for job after 1 month go for native place and try for it related job so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(20968, 23056, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20969, 23059, 149, 5, 0, 'rejected - candidate was not fluency in  interview ,long distance  not sure about stability', 154, '0000-00-00 00:00:00', 1),
(20970, 23058, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20971, 22371, 102, 5, 0, 'Candidate communication and convincing skills is low and interested in Customer support ', 154, '0000-00-00 00:00:00', 1),
(20972, 22371, 102, 5, 0, 'Candidate communication and convincing skills is low and interested in Customer support ', 154, '0000-00-00 00:00:00', 1),
(20973, 23053, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20974, 23062, 137, 5, 0, 'communication not good and she not handle presure so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(20975, 23054, 59, 3, 0, 'Fresher Employee need to train a lot will check and confirm in the training', 89, '2024-11-28 01:27:53', 1),
(20976, 23039, 59, 3, 0, 'Communication ok Can be trained in our roles need to check in training', 105, '2024-11-28 04:09:13', 1),
(20977, 23066, 109, 5, 0, 'Mainly focusing on stipend', 104, '0000-00-00 00:00:00', 1),
(20978, 23070, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20979, 9242, 105, 7, 0, 'Candidate Communication And performance is good,she have 2 years experience in Bharat matrimony.will check with her in the training Period and CTC discussed as 1.8 LPA she is ok with this .joining on 2nd of Dec she conveyed ', 104, '0000-00-00 00:00:00', 1),
(20980, 23072, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20981, 9242, 59, 1, 0, NULL, 105, '2024-11-29 01:11:45', 1),
(20982, 23069, 149, 7, 0, 'selected - good at communication  ,having interest lets try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(20983, 23075, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20984, 23069, 59, 3, 0, 'communication Ok Fresher for our roles can give a try ancd check\n', 149, '2024-11-29 04:48:31', 1),
(20985, 23079, 152, 4, 0, 'Selected for next round\n', 104, '0000-00-00 00:00:00', 1),
(20986, 23078, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20987, 23079, 18, 7, 2, 'Shorlisted for Abdul team. Immedeate Joiner. Having bike and Laptop. Expected 26k in hand but please negotiate with him and do the needful', 152, '2024-11-30 12:36:45', 1),
(20988, 23081, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20989, 23090, 149, 7, 0, 'selected - candidate was ok with communication and have confidence but have to check with first 7days training time because of friends reference  already in team', 153, '0000-00-00 00:00:00', 1),
(20990, 23091, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(20991, 23089, 57, 7, 0, 'candidate is 50/50 pls cross check 1yrs experience but he worked 3 companies with in  a year, pls check Sustainability.exp 20k but he worth 15k  to 16k so pls check and confirm thanks', 153, '0000-00-00 00:00:00', 1),
(20992, 23092, 89, 7, 0, 'good skill. Already Experience loan telle calling 6 month. ', 153, '0000-00-00 00:00:00', 1),
(20993, 23088, 105, 7, 0, 'Candidate Communication And performance is Good Will Check With her in the training Period,as discussed CTC 1.8 LPA.Also Performance based hike will provide after 6 month I told her', 153, '0000-00-00 00:00:00', 1),
(20994, 23096, 137, 5, 0, 'candidaet mainly interest in HR only so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(20995, 23093, 11, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(20996, 23095, 57, 5, 0, 'candidate is not ok sales profile, communication not good, lack of mindset', 153, '0000-00-00 00:00:00', 1),
(20997, 23099, 149, 5, 0, 'rejected - candidate was have communication but not ok with salary as he was not having any experience certificates', 153, '0000-00-00 00:00:00', 1),
(20998, 23089, 59, 3, 0, 'Have exp but no sustainability 1yr 3 companies processed as fresher need to check in 7 days training', 57, '2024-12-02 01:19:25', 1),
(20999, 23094, 89, 5, 0, 'no basic skill', 153, '0000-00-00 00:00:00', 1),
(21000, 23080, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21001, 23088, 59, 5, 0, 'for time being looking for opportunities 6 months - She is planning to go with MCom full time course and for short note she is looking for opportunities also not much to go with sales calling ', 105, '2024-12-02 01:36:33', 1),
(21002, 23100, 102, 7, 0, 'Candidate communication and convincing skill is good will try to training period confirm DOJ ', 153, '0000-00-00 00:00:00', 1),
(21003, 23098, 109, 5, 0, 'Rejected, sal expectation high', 153, '0000-00-00 00:00:00', 1),
(21004, 23097, 57, 5, 0, 'candidate is 50/50, over all 1yr exp. but salary exp 25k take home. character issue, unfit for field sales. because of His body language totally different.reject the profile', 153, '0000-00-00 00:00:00', 1),
(21005, 23092, 59, 3, 0, 'Communication Ok just 6 months exp in paisa bazaar salary is high but nor sure on her sustainability and joining let us try', 89, '2024-12-03 10:02:49', 1),
(21006, 23105, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(21007, 23106, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(21008, 23110, 74, 5, 0, 'sustainability issue', 104, '0000-00-00 00:00:00', 1),
(21009, 23104, 149, 7, 0, 'selected- candidate was good at communication ,and also interested in sales also ok for immediate joining', 104, '0000-00-00 00:00:00', 1),
(21010, 23103, 137, 7, 0, 'candidate communication and vocie good , she come from anna nagar east , she is fresher so exp salary is 14 to 15k  so try for 7 days training periods  ', 104, '0000-00-00 00:00:00', 1),
(21011, 23112, 74, 7, 0, 'he is ok with the profile native pattukottai....travel time 1 hour....studied in thanjavur.....prist university....worked in spare parts shop..for accounting...telecalling and financial management...getting 10k...due to salary issue releived from the job...expected 14k ...kindly check and confirm...imeediate joining ..have no laptop ready to arrange..', 104, '0000-00-00 00:00:00', 1),
(21012, 23111, 102, 5, 0, 'Candidate convincing and communication is low and not interested in sales interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(21013, 23113, 89, 5, 0, 'long distance . Average skill . not fit for the job', 104, '0000-00-00 00:00:00', 1),
(21014, 23114, 57, 5, 0, 'candidate is unfit for the sales. communication not good.sal exp 16 tk home, sustainability issues.', 104, '0000-00-00 00:00:00', 1),
(21015, 23118, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(21016, 23117, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(21017, 23119, 105, 5, 0, 'Candidate Communication is ok but his performance and attitude is not good, sustainable doubt also expected higher package ', 104, '0000-00-00 00:00:00', 1),
(21018, 23115, 57, 5, 0, 'candidate is unfit for the sales. communication not good.sal exp 16 tk home, sustainability issues.friends suriya so not suitable ', 104, '0000-00-00 00:00:00', 1),
(21019, 23116, 149, 5, 0, 'rejected - candidate was not good at communication and not interested in sales', 104, '0000-00-00 00:00:00', 1),
(21020, 23102, 89, 5, 0, 'health issues person so not fit for the job', 104, '0000-00-00 00:00:00', 1),
(21021, 23112, 59, 3, 0, 'Too long distance and the salary exp is high being a fresher for this roles 5050 If he joins let us try', 74, '2024-12-03 02:24:05', 1),
(21022, 23122, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21023, 23104, 59, 3, 0, 'Communication Ok Fresher for our roles can give a try and check in our profiles need to check in training period', 149, '2024-12-03 04:10:40', 1),
(21024, 23100, 59, 3, 0, 'communication Ok have exp in semivoice but not a relevant domain can be trained Need to check in training and confirm', 102, '2024-12-03 04:11:35', 1),
(21025, 23103, 59, 5, 0, 'Not intersted as she got another offer with 25K in recruitment but not sure she seems to be doubt will not sustain too', 137, '2024-12-03 07:06:23', 1),
(21026, 23126, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21027, 23090, 59, 5, 0, 'Discussed - Too long distance Seems not much comfort in Sales Calling ', 149, '2024-12-04 01:04:05', 1),
(21028, 23128, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21029, 23129, 149, 5, 0, 'rejected -candidate was interested in iT field  and looking for interviews in that field', 154, '0000-00-00 00:00:00', 1),
(21030, 22936, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(21031, 22936, 147, 7, 0, 'Fresher, Communication and confident  is good  17k expectation, shortlisted', 131, '2024-12-04 06:25:15', 1),
(21032, 22936, 59, 3, 0, 'Communication Good Fresher open for telecalling can give a try and check in 7 days training', 147, '2024-12-04 06:31:31', 1),
(21033, 23132, 137, 5, 0, 'candidate communication not good and voice also not well , so not fit for my team , but money need person ', 154, '0000-00-00 00:00:00', 1),
(21034, 23133, 74, 5, 0, 'SUSTAINABILITY ISSUE NOT FIT', 153, '0000-00-00 00:00:00', 1),
(21035, 23137, 89, 5, 0, 'No basic skills ', 154, '0000-00-00 00:00:00', 1),
(21036, 23134, 149, 2, 0, 'candidate was ok with communication but have to confirm work time and salary with his parents ', 154, '0000-00-00 00:00:00', 1),
(21037, 23138, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21038, 23138, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21039, 23140, 19, 7, 0, 'Selected ctc 16k', 154, '0000-00-00 00:00:00', 1),
(21040, 23139, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21041, 23139, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21042, 23135, 149, 5, 0, 'REJECTED- candidate was not have stability in work and communication was not so good', 154, '0000-00-00 00:00:00', 1),
(21043, 23136, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21044, 23144, 57, 7, 0, 'Candidate is ok, 1years Experience same domain Already he getting 14.5k now  he expectation 20k, kindly Negotiate the Salary and confirm the joining Date', 154, '0000-00-00 00:00:00', 1),
(21045, 23144, 57, 7, 0, 'Candidate is ok, 1years Experience same domain Already he getting 14.5k now  he expectation 20k, kindly Negotiate the Salary and confirm the joining Date', 154, '0000-00-00 00:00:00', 1),
(21046, 23141, 102, 5, 0, 'Candidate fresher and already working part time supermarket then not interested in sales interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21047, 23145, 137, 5, 0, 'candidate communication ok but she mainly looking presure free job  and she need 6.30 logout  so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21048, 23146, 89, 5, 0, 'No basic skills ', 154, '0000-00-00 00:00:00', 1),
(21049, 23146, 89, 5, 0, 'No basic skills ', 154, '0000-00-00 00:00:00', 1),
(21050, 23147, 19, 2, 0, 'hold', 154, '0000-00-00 00:00:00', 1),
(21051, 23140, 59, 3, 0, 'Communication for Sales ok Can give a try and check in 7 days training ', 19, '2024-12-05 02:24:43', 1),
(21052, 23149, 89, 7, 0, 'Good skill and 1 year experience from loans.  ', 154, '0000-00-00 00:00:00', 1),
(21053, 23144, 59, 1, 0, NULL, 57, '2024-12-05 06:03:05', 1),
(21054, 23149, 59, 1, 0, NULL, 89, '2024-12-05 06:31:57', 1),
(21055, 23154, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21056, 23155, 137, 5, 0, 'candidate communication not well and very long distance , candidate after 4 month join new course , so money ned to join the work after 4 months relave the work so not fit for my team ', 154, '0000-00-00 00:00:00', 1),
(21057, 23156, 19, 5, 0, 'not fit for sales and he is not fit for direct appointment', 154, '0000-00-00 00:00:00', 1),
(21058, 23159, 149, 7, 0, 'selected - candidate was having good communication ,interested in sales ,kannan sir also checked and will provide 16k as salary as he have work experience in sales also', 154, '0000-00-00 00:00:00', 1),
(21059, 23153, 59, 5, 0, 'Looking for Back office working only will not sustain and handle the sales pressure', 154, '0000-00-00 00:00:00', 1),
(21060, 23160, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21061, 23161, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21062, 23159, 59, 3, 0, 'Communication Ok Fresher Need to train a lot need to check in training and confirm\n', 149, '2024-12-06 07:29:03', 1),
(21063, 23165, 57, 7, 0, 'Candidate is 70/30 , almost 2 years experience .abscond, communication ok,just try. previous he getting 14k now exp 20.kindly negotiate the salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(21064, 23169, 74, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21065, 23165, 59, 3, 0, 'Communication Ok Have exp in calling but not a relevant one need to train and check in 7 days training', 57, '2024-12-07 11:56:15', 1),
(21066, 23171, 74, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21067, 23168, 89, 7, 0, 'good skill. but i will see during the 7 days training days. fresher', 154, '0000-00-00 00:00:00', 1),
(21068, 23168, 89, 7, 0, 'good skill. but i will see during the 7 days training days. fresher', 154, '0000-00-00 00:00:00', 1),
(21069, 23164, 105, 7, 0, 'Candidate communication and performance is good.she have  3 year experience in sales BPO process.will check with her in the training Period.as discussed CTC 1.8 LPA.', 154, '0000-00-00 00:00:00', 1),
(21070, 23164, 59, 3, 0, 'Communication Good Have exp  in calling can be trained in our roles ', 105, '2024-12-07 01:18:37', 1),
(21071, 23177, 109, 5, 0, 'Expectation  high', 154, '0000-00-00 00:00:00', 1),
(21072, 23176, 149, 5, 0, 'candidate was not confident and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(21073, 23176, 149, 5, 0, 'candidate was not confident and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(21074, 23168, 59, 3, 0, 'Fresher for our roles can be trained and need to check in 7 days ', 89, '2024-12-07 04:53:17', 1),
(21075, 23184, 74, 5, 0, 'long distance travel issue and not much profile...not to fit for telesales', 153, '0000-00-00 00:00:00', 1),
(21076, 23183, 149, 5, 0, 'Candidate was have experienced in other but not looking interested and Less active , not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(21077, 23185, 74, 5, 0, 'high expectation and not fit for our domain', 153, '0000-00-00 00:00:00', 1),
(21078, 23179, 19, 7, 0, 'he speaks but some attitude so let try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21079, 23178, 137, 7, 0, 'candidate communication and voice ok , no bike and lap , he interest to sales work and after joining the work join the course and sunday only class , so try for 7 days taining period, exp salary for  20k , i will inform 14 to 15k only ', 154, '0000-00-00 00:00:00', 1),
(21080, 23186, 74, 5, 0, '1 and half years searching for job , telling interview issue, or referance , issue link that, have no disciple and not fit for telecalling', 153, '0000-00-00 00:00:00', 1),
(21081, 23182, 89, 5, 0, 'no basic skill. and Health issues', 154, '0000-00-00 00:00:00', 1),
(21082, 23182, 89, 5, 0, 'no basic skill. and Health issues', 154, '0000-00-00 00:00:00', 1),
(21083, 23188, 102, 5, 0, 'candidate communication and convincing skill is low then Sustainability doubt ', 154, '0000-00-00 00:00:00', 1),
(21084, 23187, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21085, 23189, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21086, 23180, 137, 7, 0, 'candidate communication and voice ok , interest to  calling work , so try for 7 days training period , and exp salary is  15 to 16 k', 154, '0000-00-00 00:00:00', 1),
(21087, 23191, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21088, 23190, 137, 5, 0, 'candidate communication and voice not well , he not understanding what im saying   and not fit for out side call so not fit for my team ', 154, '0000-00-00 00:00:00', 1),
(21089, 23193, 19, 7, 0, 'job needed person but not having degree i hope he works well so lets try and confirm after 7 days', 154, '0000-00-00 00:00:00', 1),
(21090, 23192, 149, 7, 0, 'Candidate was ok with communication , interested in sales and ok for immediate joining will give 15k also checked by kannan sir', 154, '0000-00-00 00:00:00', 1),
(21091, 23194, 149, 7, 0, 'Candidate was interested in sales, communication was good having requirement for a job letxquots try for 7 days training period will give 15k ', 154, '0000-00-00 00:00:00', 1),
(21092, 23196, 89, 7, 0, 'good skill , let will see 7 days training Period', 154, '0000-00-00 00:00:00', 1),
(21093, 23195, 89, 7, 0, 'good skill. already Experience at Tell calling .  ', 154, '0000-00-00 00:00:00', 1),
(21094, 23179, 59, 1, 0, NULL, 19, '2024-12-09 03:54:07', 1),
(21095, 23193, 59, 3, 0, 'Good Candidate No UG only 12th Career Gap due to family and father health conditions Can be trained in our roles and check in training', 19, '2024-12-09 03:55:39', 1),
(21096, 23178, 59, 3, 0, 'Communication Ok Fresher for our roles need to check in training and confirm', 137, '2024-12-09 04:09:11', 1),
(21097, 23192, 59, 3, 0, 'Communication Ok Have Career Gap Fresher for Sales Can give a try and check in 7 days training', 149, '2024-12-09 07:15:16', 1),
(21098, 23194, 59, 3, 0, 'Reference Profile Fresher 5050 Sustainability need to see can give a try and check in training', 149, '2024-12-09 07:17:27', 1),
(21099, 23202, 74, 5, 0, 'She very low profile ...have now clear knowledge about job and not Fit for job', 154, '0000-00-00 00:00:00', 1),
(21100, 23204, 137, 7, 0, 'candidate communication and voice ok , past 9 month work from star health insurace and may comapny also work currently work in flipcart delivary so try for 7 days training period and bike and lap also availabe , exp salary 16k take home , ', 154, '0000-00-00 00:00:00', 1),
(21101, 23205, 89, 7, 0, 'good skill. Experienced at Business Management 6 month. due to father health issues so quit the job. expected 17 k', 154, '0000-00-00 00:00:00', 1),
(21102, 23147, 19, 5, 0, 'Except high salary', 19, '2024-12-10 11:46:41', 1),
(21103, 23195, 59, 3, 0, 'Communication Ok Have exp in sales but not a relevant open for telecalling Can give a try and train ', 89, '2024-12-10 11:50:33', 1),
(21104, 23196, 59, 1, 0, NULL, 89, '2024-12-10 11:55:59', 1),
(21105, 23205, 59, 3, 0, 'Fresher Need to train  alot will check in training and confirm his profile', 89, '2024-12-10 12:18:37', 1),
(21106, 23206, 19, 7, 0, 'check his exisiting salary slip if she get 16k salary in hand means kindly proceed with same  ', 154, '0000-00-00 00:00:00', 1),
(21107, 23208, 109, 5, 0, 'Rejected, high expectation', 154, '0000-00-00 00:00:00', 1),
(21108, 23212, 102, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21109, 23212, 102, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21110, 23207, 131, 5, 0, 'Lack of knowledge and confident', 126, '0000-00-00 00:00:00', 1),
(21111, 23211, 131, 5, 0, 'education background is Completely different doubt with Sustainability', 126, '0000-00-00 00:00:00', 1),
(21112, 23213, 149, 7, 0, 'candidate was ok with communication and interested in sales and also ok for immediate joining ', 154, '0000-00-00 00:00:00', 1),
(21113, 23214, 137, 7, 0, 'candidate communication and voice ok past 9 month work from dth customer service , sales  is fresher , exp salary  16k s try for first 7 days training , 70/30. ', 154, '0000-00-00 00:00:00', 1),
(21114, 23214, 137, 7, 0, 'candidate communication and voice ok past 9 month work from dth customer service , sales  is fresher , exp salary  16k s try for first 7 days training , 70/30. ', 154, '0000-00-00 00:00:00', 1),
(21115, 23199, 19, 7, 0, 'job needed person ctc 16k while joining he has to come with full formals kindly inform to the candidate', 154, '0000-00-00 00:00:00', 1),
(21116, 23215, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21117, 23216, 102, 5, 0, 'Candidate communication and convincing skill is low then interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21118, 23200, 102, 7, 0, 'candidate communication and convincing skill is good once will try training period and once confirm DOJ ', 154, '0000-00-00 00:00:00', 1),
(21119, 23206, 59, 1, 0, NULL, 19, '2024-12-10 04:01:24', 1),
(21120, 23199, 59, 3, 0, 'Communication Ok Fresher for our roles Need to check in training and confirm', 19, '2024-12-10 04:02:23', 1),
(21121, 23200, 59, 1, 0, NULL, 102, '2024-12-10 05:05:43', 1),
(21122, 23214, 59, 3, 0, 'Communication OK Fresher for our roles  Need to check in 7 days training\n', 137, '2024-12-10 06:46:03', 1),
(21123, 23204, 59, 3, 0, 'Communication OK 5050 Profile Career Gap few months exp in Star Health Documents verified Can check in training and confirm', 137, '2024-12-10 06:52:05', 1),
(21124, 23225, 74, 5, 0, 'he is not fit,,, concentrated in govt job only', 153, '0000-00-00 00:00:00', 1),
(21125, 23213, 59, 3, 0, 'Communication Ok Fresher for Sales Can give a try and check Internal Reference\n', 149, '2024-12-11 04:36:40', 1),
(21126, 23231, 74, 5, 0, 'not fit for sales , sustainability issue intrsted in foreign only', 153, '0000-00-00 00:00:00', 1),
(21127, 23233, 102, 7, 0, 'he is past working for financial insurance service Candidate communication and convincing skills is good then will try training period and once confirm DOJ ', 154, '0000-00-00 00:00:00', 1),
(21128, 23228, 102, 5, 0, 'candidate communication and convincing skill low and he is interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21129, 23236, 74, 7, 0, 'she is ok with the profile, completed bcom fresher, ,,father electrician brother worked in eb and married joint family,,,,,house 5km only,,,have laptop,,,imeediate joining,,,expected 13k ...kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(21130, 23235, 102, 5, 0, 'candidate communication and convincing skill low and he is interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21131, 23236, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 74, '2024-12-12 04:02:47', 1),
(21132, 23239, 74, 7, 0, 'he is ok with the profile, completed bca ,,,and worked in 1 yr chennai uncle shop, and came to native...7 months working in equitas ,,,,due to health issue he is releived ,,,,but i have doubt in this point,,,,and joined in tata capital....by MANAGER referance in equitas ,,,both home loan.....with daily 20 client visting regarding sales,,,,,,getting 16 k no petrol allowance.....have laptop,,,,1 km from home to office...expected 15k around kindly check and confirm ', 154, '0000-00-00 00:00:00', 1),
(21133, 23240, 149, 5, 0, 'candidate was not having confidence and not ok with timing', 154, '0000-00-00 00:00:00', 1),
(21134, 23172, 74, 7, 0, 'she is ok with the profile completed bE CS....6 month experience in front end developer without salary.. she tried in various IT SECTOR but have no chance,,,so she is joined in swiggy process in thanjavur reimen solution,,,,,,expected 13k..have laptop....father farmer and business,,,,immediate joining..kindly check once', 153, '0000-00-00 00:00:00', 1),
(21135, 22769, 74, 5, 0, 'not fit...married and have no chance to perform as a telecaller', 153, '0000-00-00 00:00:00', 1),
(21136, 23241, 89, 5, 0, 'Interested IT related', 154, '0000-00-00 00:00:00', 1),
(21137, 23242, 137, 5, 0, 'candidate communication  and voice ok but salary exp is more high and aftre 4 month join for police course , so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21138, 23243, 74, 5, 0, 'not suite for tele calling,,,,have no option to select ', 153, '0000-00-00 00:00:00', 1),
(21139, 23239, 59, 3, 0, 'Communicaiton Ok Have Exp but not a relevant one can give a try and check in training', 74, '2024-12-13 03:37:20', 1),
(21140, 23172, 59, 1, 0, NULL, 74, '2024-12-13 06:43:42', 1),
(21141, 23245, 89, 7, 0, 'good skill. let see 7 days training days. fresher candidate', 153, '0000-00-00 00:00:00', 1),
(21142, 23244, 57, 7, 0, 'Candidate is ok, Communication Good, Pls check Sustainability. Kindly confirm the salary and joining date', 153, '0000-00-00 00:00:00', 1),
(21143, 23249, 19, 7, 0, 'Job needed person but 50 50 only lets try 7 days and we will confirm ctc 16k', 153, '0000-00-00 00:00:00', 1),
(21144, 23248, 149, 5, 0, 'candidate was ok with communication but  not  ok with salary with our standards', 153, '0000-00-00 00:00:00', 1),
(21145, 23246, 137, 5, 0, 'candidate communication  ok but voice not good and very low voice , aslo  very long distance so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21146, 23245, 59, 3, 0, 'Communication Ok Fresher Can be trained in our roles need to check and confirm in training', 89, '2024-12-14 11:34:23', 1),
(21147, 23247, 89, 5, 0, 'no basic skill', 153, '0000-00-00 00:00:00', 1),
(21148, 23250, 137, 5, 0, 'candidate communication and vocie not ok and past 2 month work from starhealth insurance , after family issue relave the job , after not try any job future plan is business so not fit for my team ', 153, '0000-00-00 00:00:00', 1),
(21149, 23251, 19, 7, 0, 'already working in star ,he knows the script so we will go with ctc 16k', 153, '0000-00-00 00:00:00', 1),
(21150, 23251, 59, 3, 0, 'Communication Ok Can give a try in training and confirm them', 19, '2024-12-14 12:41:02', 1),
(21151, 23254, 89, 5, 0, 'no basic skill and long distance', 153, '0000-00-00 00:00:00', 1),
(21152, 23249, 59, 3, 0, '9 months Exp in Telecollection Fresher for Sales need to check in training and confirm', 19, '2024-12-14 01:07:09', 1),
(21153, 23233, 59, 3, 0, 'Communication Ok Have exp in Telesales Relevant Exp can be trained need to check in training and confirm', 102, '2024-12-14 04:39:14', 1),
(21154, 23244, 59, 1, 0, NULL, 57, '2024-12-14 04:40:11', 1),
(21155, 23266, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21156, 23264, 19, 5, 0, 'not fit for sales and her was not enough to pitch sales', 154, '0000-00-00 00:00:00', 1),
(21157, 23261, 137, 7, 0, 'candidate communication and voice is good , money need person , low family backround, and koimbadu market sales and account exp for partime , exp salary for 15 to 16k  so try for 7 days training period , no bike and laptop', 154, '0000-00-00 00:00:00', 1),
(21158, 23265, 102, 5, 0, 'candidate convincing skill and communication is low and interested in Customer support ', 154, '0000-00-00 00:00:00', 1),
(21159, 23267, 89, 7, 0, 'will Analysis 7 days training time. ', 154, '0000-00-00 00:00:00', 1),
(21160, 23268, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21161, 23272, 149, 5, 0, 'candidate was not at all communicating and not so interested in sales', 154, '0000-00-00 00:00:00', 1),
(21162, 23263, 19, 5, 0, 'not fit for sales and his dress code was not good', 154, '0000-00-00 00:00:00', 1),
(21163, 23274, 137, 5, 0, 'candidate only interest in accounts only and communication also not well , so  not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21164, 23275, 102, 7, 0, 'Candidate communication and convincing skill is good and then will try training period once confirm DOJ ', 154, '0000-00-00 00:00:00', 1),
(21165, 23255, 149, 7, 0, 'candidate was good at communication and interested in sales and have experience in vizza for 5months kannan sir also checked we shall provide 16k', 154, '0000-00-00 00:00:00', 1),
(21166, 23260, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21167, 23261, 59, 3, 0, 'Freseher Communication Ok Can be trained in our roles need to check in training and confirm', 137, '2024-12-16 01:35:31', 1),
(21168, 23270, 19, 7, 0, 'Selected,She speaks well so letxquots we try 7 days and then we will confirm CTC as per company rules ', 154, '0000-00-00 00:00:00', 1),
(21169, 23283, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21170, 23267, 59, 3, 0, 'Communication Ok can be trained in our roles and check in training', 89, '2024-12-16 03:39:18', 1),
(21171, 23288, 149, 5, 0, 'candidate was not suitable for sales as  he was having idea for other for other jobs .', 154, '0000-00-00 00:00:00', 1),
(21172, 23259, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21173, 23270, 59, 3, 0, 'Fresher Communication Ok Can be trained in our roles and check in the training period', 19, '2024-12-16 07:12:24', 1),
(21174, 23275, 59, 3, 0, 'Communication Ok Fresher for our roles  Need to train in training period and check in 7 days training', 102, '2024-12-16 07:29:17', 1),
(21175, 23255, 59, 1, 0, NULL, 149, '2024-12-16 08:07:21', 1),
(21176, 23290, 137, 5, 0, 'candidate communication and voice ok but candidate ned high package so not fit for my package , so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21177, 23296, 102, 5, 0, 'candidate convincing skill and communication is low and interested in Customer support ', 154, '0000-00-00 00:00:00', 1),
(21178, 23297, 149, 5, 0, 'candidate was having idea with other other professions and not ok with salary', 154, '0000-00-00 00:00:00', 1),
(21179, 23297, 149, 5, 0, 'candidate was having idea with other other professions and not ok with salary', 154, '0000-00-00 00:00:00', 1),
(21180, 23293, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21181, 23273, 57, 7, 0, 'candidate is 50/50 fresher, communication good. pls check with sustainability, provide fresher salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(21182, 23271, 89, 7, 0, 'fresher. good skill. will Analysis 7 days training days', 154, '0000-00-00 00:00:00', 1),
(21183, 23294, 19, 5, 0, 'not fit for sales and his attitude was not good', 154, '0000-00-00 00:00:00', 1),
(21184, 13369, 11, 7, 0, 'ok for E sales \nneed to fix the salary ', 154, '0000-00-00 00:00:00', 1),
(21185, 23300, 19, 5, 0, 'long distance and not fit for sales also', 154, '0000-00-00 00:00:00', 1),
(21186, 23299, 74, 5, 0, 'she is not fit for our team,,,expected temporary job,currently in job data entry and not releived , ,,,expected singapore father work in tie up singapore company so need to go only', 154, '0000-00-00 00:00:00', 1),
(21187, 23301, 74, 5, 0, 'worked in hr and data entry,,,,have no job need and age high due to marriage...not performed well in interview', 154, '0000-00-00 00:00:00', 1),
(21188, 23273, 59, 3, 0, 'Communication Ok Need to check in training and confirm', 57, '2024-12-17 03:03:05', 1),
(21189, 23079, 60, 1, 0, NULL, 18, '2024-12-17 04:43:13', 1),
(21190, 13369, 60, 1, 0, NULL, 11, '2024-12-17 06:56:10', 1),
(21191, 23262, 147, 5, 0, 'looking for high package', 154, '0000-00-00 00:00:00', 1),
(21192, 23311, 74, 5, 0, 'not suite for team and telesales, have no sales pitch...not explaining answers better, 1 and half year in mechanical labour so not fit', 153, '0000-00-00 00:00:00', 1),
(21193, 23314, 74, 7, 0, 'she is ok with the profile, completed bE CS,,,already worked in swiggy process... due to process closed...so releived and not intrested to continue.....father daily wages,,,rental house...travel 20mins only....fresher,,,,immediate joining...speaked well and future expecation studied ME....due to family poor high job needed...have laptop...kindly check once and confirm..expected 13k', 153, '0000-00-00 00:00:00', 1),
(21194, 23317, 74, 5, 0, 'he is ok speak well and have a try to work,,,,but very long distance and focus on business is high priority....travel issue not fit', 153, '0000-00-00 00:00:00', 1),
(21195, 23277, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21196, 23271, 59, 3, 0, 'Communication Ok Fresher Need to check in training and confirm', 89, '2024-12-18 10:42:28', 1),
(21197, 23315, 74, 7, 0, 'he is ok with the profile,,,completed bsc biotech ,,,,in chennai mohamed satak college,,,,,native thanjavur,,,,due to college family shift to chennai....sollinganallur...sister worked in IT...in kerala,,,,he studied govt job for two yers,,,PC-SI--GROUP 4 - TWO times...and failed,,,so he looking for job now......sister engaged and marriage fixed on july so expected 1 month leave and january he expected leave for 1 week,,,,due to house shifting...father passed away,,,,have one house in thanjavur near by.....have laptop,,,expected 15k kindly check once and confirm...immediate joining', 153, '0000-00-00 00:00:00', 1),
(21198, 23316, 74, 5, 0, 'not performing well in interview, not answering any question unfit for telesales', 153, '0000-00-00 00:00:00', 1),
(21199, 7874, 19, 5, 0, 'not fit fot sales and not worth of  his asking salary,he will join only in the mind of jan', 154, '0000-00-00 00:00:00', 1),
(21200, 23313, 102, 5, 0, 'Communication and convincing skill low and then not interested in sales interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21201, 23298, 74, 7, 0, 'She is ok with the profile , completed eCE in loyola -20. chennai...and joined in quality control....for 1 year due to covid she releived...and studied govt exam,,,for past 2 and half year and not cleared...so he need a job ,,,,,father sathunavu amaipalar for past 20 years salary 25k....mother govt hostel cook 7 years salary 20k,,,own house and 3 sisters ,,,1 sis ---prepare govt exam,,,,3rd sister engg studied...4 th sister 12th.....have laptop...travel time 40mins.....imeediate joining...expected 13k to 14k....kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(21202, 23319, 137, 5, 0, 'candidate mainly looking for it related job and currently fullstock job on going , and very low voice , not presure handiling so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21203, 23320, 149, 5, 0, 'candidate was not confident and not ok with timing and salary', 154, '0000-00-00 00:00:00', 1),
(21204, 23304, 57, 7, 0, 'Candidate is ok,1.5 yrs experience. sales field totally fresher sal exp 18k but candidate worth 15k to 16k kindly negotiate the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(21205, 23282, 102, 5, 0, 'Communication and convincing skill low and then not interested in sales interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21206, 23306, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21207, 22011, 137, 5, 0, 'not fit for my team', 137, '2024-12-18 12:07:42', 1),
(21208, 23325, 19, 7, 0, 'job needed person new joinee so lets try 7 days ctc 16k', 154, '0000-00-00 00:00:00', 1),
(21209, 23304, 59, 1, 0, NULL, 57, '2024-12-18 12:17:09', 1),
(21210, 23322, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21211, 23323, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21212, 23321, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21213, 23314, 59, 3, 0, 'Communication Ok  Have Calling exp for 4 months Can be trained in our roles need to check in training and confirm', 74, '2024-12-18 03:34:09', 1),
(21214, 23315, 59, 3, 0, 'Communication Ok 5050 profile need to check in training and confirm', 74, '2024-12-18 03:44:41', 1),
(21215, 22850, 149, 7, 0, 'candidate was confident and ok with  communication but expecting more salary will give 15k lets try for 7days training period', 154, '0000-00-00 00:00:00', 1),
(21216, 23298, 59, 1, 0, NULL, 74, '2024-12-18 04:03:12', 1),
(21217, 23335, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21218, 22850, 59, 1, 0, NULL, 149, '2024-12-19 11:32:01', 1),
(21219, 23198, 74, 5, 0, 'not suite for team not fit for telesales', 153, '0000-00-00 00:00:00', 1),
(21220, 21391, 57, 7, 0, 'candidate is ok, 1.5 yrs exp sales executive and 1.5yrs team leader. communication good. previously she is getting 20k, now she expectation 20k above. convincing skill good and field work also interested. kindly negotiate the salary and let me know the status', 154, '0000-00-00 00:00:00', 1),
(21221, 23337, 149, 5, 0, 'candidate was not good at communication and not ok with salary', 154, '0000-00-00 00:00:00', 1),
(21222, 23341, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21223, 23342, 89, 5, 0, 'No basic skills ', 154, '0000-00-00 00:00:00', 1),
(21224, 23343, 137, 5, 0, 'candidate all ok but  not interest to out side call and only work n office work so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21225, 23326, 57, 5, 0, 'candidate is unfit for sales profile, then he previously working in home Appliance, observation skills low. communication not good, ', 154, '0000-00-00 00:00:00', 1),
(21226, 21391, 59, 1, 0, NULL, 57, '2024-12-19 03:01:45', 1),
(21227, 23351, 19, 7, 0, 'job needed person ,in hand salary 14k she speaks good so lets we try 7 days then we will confirm ', 154, '0000-00-00 00:00:00', 1),
(21228, 23351, 59, 3, 0, 'Communication Ok have Pharma Exp Family need is there can give a try and check in training', 19, '2024-12-19 04:48:42', 1),
(21229, 19996, 74, 5, 0, 'not suite for team,,, behaviour issue and not perform well', 153, '0000-00-00 00:00:00', 1),
(21230, 23359, 74, 5, 0, 'choosing data entry only..not handled pressure and target,,,,', 153, '0000-00-00 00:00:00', 1),
(21231, 23358, 74, 5, 0, 'not suite for telesales choosing data entry only....and have no skills for sales', 153, '0000-00-00 00:00:00', 1),
(21232, 23357, 74, 7, 0, 'she is ok with the profile...completed bA and worked as a telecaller in digihotels website creating sales...due to brother marriage releived from job......and salary issue in previous company...mother work in mill,,,,3 elder brother and 1 brother getting marriger another one work in chennai as aiyer and another 1 studied...half hour travel from office..monday joining...have laptop...expected 14k kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(21233, 23361, 19, 5, 0, 'she is not interest in tele sales', 154, '0000-00-00 00:00:00', 1),
(21234, 23344, 102, 5, 0, 'Communication and convincing skill low and then not interested in sales interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21235, 23357, 59, 1, 0, NULL, 74, '2024-12-20 01:20:29', 1),
(21236, 23364, 19, 7, 0, 'she speaks well ,job needed person in hand salary 14k  so lets try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21237, 23364, 59, 3, 0, 'Communication Ok focus on Digital marketing Much 5050 sustainability open to learn need to check in training and confirm', 19, '2024-12-20 03:17:07', 1),
(21238, 23325, 59, 1, 0, NULL, 19, '2024-12-20 03:18:47', 1),
(21239, 23373, 137, 5, 0, 'candidate communication ok but candidate not interst to out sid call so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21240, 23374, 149, 5, 0, 'CANDIDATE WAS NOT OK WITH COMMUNICATION AND NOT AT HAVING CONFIDENCE', 153, '0000-00-00 00:00:00', 1),
(21241, 23376, 57, 7, 0, 'Candidate is 50/50,\nPls check sustainability, 1.9 years Experience collection domain already he getting 16k salary in hand cash, he donxquott have pay slip xxamp Bank Statement pls check,Pls negotiate the salary and  confirm the joining date', 153, '0000-00-00 00:00:00', 1),
(21242, 23376, 60, 1, 0, NULL, 57, '2024-12-21 01:35:09', 1),
(21243, 23375, 19, 7, 0, 'Salary 13k to 14k,dont have degree lets try 7 days then we will confirm,before that confirm with the employee then we will decide', 153, '0000-00-00 00:00:00', 1),
(21244, 23375, 59, 5, 0, 'Not intersted with the timings looking for 5 days work only\n', 19, '2024-12-21 03:21:57', 1),
(21245, 22810, 59, 3, 0, 'stipend of Rs.8000 PM (1st 2months) based on the performance review with the continuation of the employment in which the remuneration may vary between 12,000 – 15000 per month post-completion of the 2-5 months internship and performance analysis. - Final Round with Gokul Sir', 60, '0000-00-00 00:00:00', 1),
(21246, 23386, 19, 7, 0, 'job needed person but 6 years gap so lets try in training ctc 13k to 14k in hand salary', 154, '0000-00-00 00:00:00', 1),
(21247, 23385, 74, 5, 0, 'not professionally behave in a interview...not fit for team , and telesales', 153, '0000-00-00 00:00:00', 1),
(21248, 23389, 89, 7, 0, 'GOOD SKILL. 9 MONTH EXPERIENCE at bajaj loan telle calling 2023 to 2024 feb. ', 154, '0000-00-00 00:00:00', 1),
(21249, 23386, 59, 3, 0, 'Fresher Career Gap Can give a try and check in 7 days training', 19, '2024-12-23 12:26:28', 1),
(21250, 22467, 137, 5, 0, 'candidate communication and voice not good and not interst for calls field so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21251, 23390, 149, 7, 0, 'candidate was  good at communication ,also confident and also ready for immediate joining and kannan sir also checked and will give 14-15 k', 154, '0000-00-00 00:00:00', 1),
(21252, 23389, 59, 3, 0, 'Communication Ok 5050 Sustainability doubts in this profile need to check in training', 89, '2024-12-23 12:59:40', 1),
(21253, 23393, 102, 5, 0, 'Communication and convincing skill low and then not interested in sales interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21254, 23392, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21255, 23392, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21256, 23400, 19, 5, 0, 'not fit for sales \n', 154, '0000-00-00 00:00:00', 1),
(21257, 23399, 149, 5, 0, 'Candidate was not from chennai ,married couple looking for job  and not  sure about stablity', 154, '0000-00-00 00:00:00', 1),
(21258, 23399, 149, 5, 0, 'Candidate was not from chennai ,married couple looking for job  and not  sure about stablity', 154, '0000-00-00 00:00:00', 1),
(21259, 23390, 59, 1, 0, NULL, 149, '2024-12-23 08:32:09', 1),
(21260, 23383, 74, 7, 0, 'she is ok with the profile,,,,completed mca..23....and two months worked in night shift due to health issue releived from job,,,,and trying join in kvb with recomendation as a sales exective but no vacancy not joined,,,,father ambulance driver,,,, sister bcom,,,,,own house....office travel time 15 mins have bike....tried IT company in thanjavur but bond basis not accepted,,,,have good sales skills,,,,,but expected system related job......kindly cross check once surely.......expected 12 to 15k,,,,no laptop ready to arrange imeedaiate joining....tried in training and confirm', 153, '0000-00-00 00:00:00', 1),
(21261, 23398, 74, 7, 0, 'she is ok with the profile,,completed mcom 24 passed,, single child father passed,,,mother only doing tailoring,,,,next street to office ,,,,own house with grand father and mother,,,,,already attend two interview due to night shift family not accepted,,,,have intrested in sales ...expected 12 to 15k,,,,,have laptop,,,,immediate joining,,,kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(21262, 23401, 11, 7, 0, 'she is ok for E sales \ngaurav sir also checked ', 154, '0000-00-00 00:00:00', 1),
(21263, 23407, 19, 7, 0, '\nJob Needed person ,Exp but dont have any Documents so Salary will be try 14k to 15k in hand salary ', 154, '0000-00-00 00:00:00', 1),
(21264, 23406, 149, 5, 0, 'candidate was not good at communication and not ok for sales', 154, '0000-00-00 00:00:00', 1),
(21265, 23398, 59, 1, 0, NULL, 74, '2024-12-24 11:37:57', 1),
(21266, 23383, 59, 1, 0, NULL, 74, '2024-12-24 11:42:57', 1),
(21267, 23404, 89, 5, 0, 'NO BASIC SKILL', 154, '0000-00-00 00:00:00', 1),
(21268, 23405, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21269, 22604, 59, 3, 0, 'a stipend of Rs.6000 PM (1st 3 months) xxamp Rs.8000 PM (next 2 months) based on the performance review, with the continuation of the employment in which the remuneration may vary post-completion of the 3 - 5 months internship and performance analysis. ', 60, '0000-00-00 00:00:00', 1),
(21270, 23408, 57, 5, 0, 'Candidate is not Suitable for sales profile, communication not good. field work not interested, reject the profile', 154, '0000-00-00 00:00:00', 1),
(21271, 23413, 89, 5, 0, 'NO BASIC SKILL', 154, '0000-00-00 00:00:00', 1),
(21272, 23414, 149, 5, 0, 'communication was not good and  also looking for other profession .', 154, '0000-00-00 00:00:00', 1),
(21273, 23417, 137, 5, 0, 'candidate communication not good and very long distance also so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21274, 23416, 89, 5, 0, 'No basic skill', 154, '0000-00-00 00:00:00', 1),
(21275, 23419, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21276, 23401, 60, 1, 0, NULL, 11, '2024-12-26 01:09:55', 1),
(21277, 23424, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21278, 23407, 59, 1, 0, NULL, 19, '2024-12-27 11:15:34', 1),
(21279, 23430, 102, 7, 0, 'Candidate communication and convincing skill is good past 0ne year worked back end team salary taken salary  13k without pf and tDS   now expt ( 15 to 16 k)` once confirm DOJ ', 154, '0000-00-00 00:00:00', 1),
(21280, 23428, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21281, 23432, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21282, 23429, 149, 7, 0, 'candidate was confident at communication and also have experience and syed sir also checked and will give 14k as salary', 154, '0000-00-00 00:00:00', 1),
(21283, 23430, 59, 3, 0, 'Communication ok have exp in calling but in support can give a try and check in training', 102, '2024-12-27 02:42:33', 1),
(21284, 23439, 89, 5, 0, 'attitude and married so not fit for the job', 154, '0000-00-00 00:00:00', 1),
(21285, 23441, 19, 5, 0, 'not fit for sales and she intrested in non voice', 154, '0000-00-00 00:00:00', 1),
(21286, 23442, 149, 5, 0, 'candidate was not looking confident and not at all speaking a lot and not have experience in sales', 154, '0000-00-00 00:00:00', 1),
(21287, 23442, 149, 5, 0, 'candidate was not looking confident and not at all speaking a lot and not have experience in sales', 154, '0000-00-00 00:00:00', 1),
(21288, 23378, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(21289, 23379, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21290, 23387, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21291, 23388, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21292, 23410, 131, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21293, 23429, 59, 1, 0, NULL, 149, '2024-12-28 03:24:11', 1),
(21294, 22652, 149, 5, 0, 'candidate was not having confidence and not responding', 149, '2024-12-28 03:27:12', 1),
(21295, 22737, 149, 5, 0, 'candidate  was ok with communication but not having confidence', 149, '2024-12-28 03:30:55', 1),
(21296, 23443, 74, 5, 0, 'not performing well in interview...not fit', 104, '0000-00-00 00:00:00', 1),
(21297, 23445, 74, 5, 0, 'sustainability issue and not suite for team', 104, '0000-00-00 00:00:00', 1),
(21298, 23452, 74, 5, 0, 'not fit for telecalling......low profile', 104, '0000-00-00 00:00:00', 1),
(21299, 23449, 19, 5, 0, 'not intrest in tell calling', 104, '0000-00-00 00:00:00', 1),
(21300, 23438, 59, 3, 0, 'Communication Good  Not open for Sales but open for Renewal Support Backend roles as discusssed processing for the same ', 104, '0000-00-00 00:00:00', 1),
(21301, 23446, 59, 5, 0, 'Not open for Telecalling looking only for Non voice process', 104, '0000-00-00 00:00:00', 1),
(21302, 23447, 137, 7, 0, 'candidate communication and vocie ok , past 1 year exp for dmate account opn for telecalling after  2 years abroad supermarket work , so try for 7 days trining period and exp salary for 16 to 17k ', 104, '0000-00-00 00:00:00', 1),
(21303, 23448, 149, 7, 0, 'candidate was good at communication and also interested in sales will provide 14k as salary and also ok for immediate joining', 104, '0000-00-00 00:00:00', 1),
(21304, 23450, 89, 5, 0, 'nno basic skill', 104, '0000-00-00 00:00:00', 1),
(21305, 21813, 102, 5, 0, 'Candidate communication and convincing skill low then he is not interested in field work ', 104, '0000-00-00 00:00:00', 1),
(21306, 23453, 102, 7, 0, 'Candidate communication and sales skills is good then will try training period once confirm DOJ', 104, '0000-00-00 00:00:00', 1),
(21307, 23453, 59, 3, 0, 'Fresher for our roles need to train and confirm', 102, '2024-12-30 01:05:13', 1),
(21308, 23456, 30, 7, 3, 'fresher suggested ctc 14k', 104, '0000-00-00 00:00:00', 1),
(21309, 23457, 30, 5, 0, 'she will not sustain his back round it and his aim also need to work in it middle if she got a job she will left', 104, '0000-00-00 00:00:00', 1),
(21310, 23447, 59, 3, 0, 'Communication Ok Can be trained in our role and check in training ', 137, '2024-12-31 09:48:40', 1),
(21311, 23434, 149, 5, 0, 'candidate was not so good at communication and preferring another field and not having confidence', 154, '0000-00-00 00:00:00', 1),
(21312, 23459, 74, 5, 0, 'looking for partime and sustainability issue .......', 154, '0000-00-00 00:00:00', 1),
(21313, 23460, 102, 5, 0, 'Candidate communication and convincing skill low then interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21314, 23462, 105, 5, 0, 'candidate communication and operformance is good ,but expected Higher package', 154, '0000-00-00 00:00:00', 1),
(21315, 23461, 105, 5, 0, 'candidate communication and performnce is ok.but sustainable doubt also expected higher packge', 154, '0000-00-00 00:00:00', 1),
(21316, 23463, 89, 7, 0, 'good skill. 1 yr Experience at loan side. will Analysis 7 days training.  i suggest 16 k.', 154, '0000-00-00 00:00:00', 1),
(21317, 23448, 59, 5, 0, 'Not interested in Sales Looking for HR role only always focus for friend opportunity also will not sustain and  not suitable', 149, '2024-12-31 12:59:52', 1),
(21318, 23134, 149, 5, 0, 'candidate was ok with communication but not ok with salary and so having ideas for other options also', 149, '2024-12-31 01:10:12', 1),
(21319, 23463, 59, 3, 0, 'Communicaiton Ok Have Exp in Loan sales 1yrs proper document she has need to check in training period\n', 89, '2024-12-31 03:53:55', 1),
(21320, 23470, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(21321, 23476, 149, 5, 0, 'candidate was not waited till interview ,he tells that he was having another interview', 154, '0000-00-00 00:00:00', 1),
(21322, 23475, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21323, 23474, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21324, 23479, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21325, 23472, 149, 5, 0, 'candidate was not having good communication and  did not have any work experience not suitable for sales ', 154, '0000-00-00 00:00:00', 1),
(21326, 23465, 30, 7, 3, 'fresher suggested ctc 14k', 154, '0000-00-00 00:00:00', 1),
(21327, 23466, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21328, 23481, 137, 5, 0, 'candiate communication ok but she not work properly in previous company so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21329, 23487, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21330, 23471, 102, 5, 0, 'Candidate communication and sales convincing skill better but long distance and sustainability is doubt ', 154, '0000-00-00 00:00:00', 1),
(21331, 23488, 149, 5, 0, 'candidate was  slow at responding  have ideas for other jobs also  and not  at all speaking', 154, '0000-00-00 00:00:00', 1),
(21332, 23492, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21333, 23489, 149, 5, 0, 'candidate was not so good at communication looking for higher ctc and also not interested in field calls', 154, '0000-00-00 00:00:00', 1),
(21334, 23491, 57, 5, 0, 'candidate is 50/50, Exp 3 month Real-estate reason for resigned salary low like 15, now she exp 17k above, candidate not worth for the Salary, Sustainability issues', 154, '0000-00-00 00:00:00', 1),
(21335, 23490, 102, 5, 0, 'Communication and convincing skill is low and then long distance , he is interested in customer support', 154, '0000-00-00 00:00:00', 1),
(21336, 23482, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21337, 23483, 137, 7, 0, 'candidate communication and voice good , past exp is amazan sales packing for 3 months , try for 7 days training period  , and salary exp is 15 to 16k', 154, '0000-00-00 00:00:00', 1),
(21338, 23484, 149, 7, 0, 'candidate was good at communication and interested  in sales have bike and laptop  we shall provide 15k as salary', 154, '0000-00-00 00:00:00', 1),
(21339, 23180, 59, 3, 0, 'Fresher Communication Ok Open for Telecalling can give a try and check in training and confirm', 137, '2025-01-03 02:48:00', 1),
(21340, 23484, 59, 3, 0, 'Communication Ok Fresher for our roles need to check in training and confirm', 149, '2025-01-03 02:50:14', 1),
(21341, 23498, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21342, 23497, 89, 7, 0, 'good skill. 6 month experience at lic 2023. will Analyst 7 days training', 154, '0000-00-00 00:00:00', 1),
(21343, 23497, 59, 1, 0, NULL, 89, '2025-01-03 04:46:30', 1),
(21344, 23503, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21345, 23505, 74, 7, 0, 'he ok with the profile..father in foreign labour 25k salary,,he is not intrested in foreign....poor family..mother house wife have brother.....know target and pressure in sales,,,fresher only..travel time half hour....will try in training...have laptop...expected 12k kindly check once and confirm...imeediate joining', 153, '0000-00-00 00:00:00', 1),
(21346, 23501, 74, 5, 0, 'not fit ........no job need...two years looking in father business,,,,,choosing data entry,,', 153, '0000-00-00 00:00:00', 1),
(21347, 23483, 59, 3, 0, 'Communication Ok Fresher for Our Roles need to check in training and confirm\n', 137, '2025-01-04 11:41:05', 1),
(21348, 23465, 60, 1, 0, NULL, 30, '2025-01-04 12:24:19', 1),
(21349, 23456, 59, 3, 0, 'Communication Ok Fresher need to check in the training and confirm Long Run Doubts in this profile\n', 30, '2025-01-04 12:26:39', 1),
(21350, 23506, 11, 5, 0, 'not selected for E sales ', 154, '0000-00-00 00:00:00', 1),
(21351, 23505, 59, 3, 0, 'Communication Ok Fresher for our roles need to train from scratch can check in training\n', 74, '2025-01-04 05:14:15', 1),
(21352, 23510, 74, 7, 0, 'he is ok with the profile...completed be and oracle data base developer and due to company closed releived from tthe job....expected 14 to 15,,,,,,,have laptop father passed.....30 mins travel...imeediate joining....have good comunicaion...kindly chekc once and confirm', 153, '0000-00-00 00:00:00', 1),
(21353, 23513, 74, 7, 0, 'she is ok with the profile...completed MBA in hr and worked in sharekhan,,,,as a customer executive for MF AND SHARES....father passed...mother home maker....grandfather only care taking but recently passed away,,,rental house only.....near by house....brother worked in coimbatore...as it recriter...25k salary..have no laptop...wednesday joining.....expected 13k', 153, '0000-00-00 00:00:00', 1),
(21354, 23511, 137, 5, 0, 'candiate commuication not good and very long distance so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21355, 23515, 74, 5, 0, 'no fit...expected high....long distance ..', 153, '0000-00-00 00:00:00', 1),
(21356, 23517, 19, 5, 0, 'not fit for sales and distance also long', 154, '0000-00-00 00:00:00', 1),
(21357, 23516, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21358, 23518, 102, 8, 0, 'Not attend interview ', 154, '0000-00-00 00:00:00', 1),
(21359, 23520, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21360, 23521, 57, 7, 0, 'Candidate is ok, communication good, 1 yrs exp only, Quality and observation skills good, she exp salary 20k negotiate the salary 15k to 17k maximum, confirm the joining thanks', 154, '0000-00-00 00:00:00', 1),
(21361, 23525, 57, 5, 0, 'candidate is unfit for sales profile, communication not good, reject the profile', 154, '0000-00-00 00:00:00', 1),
(21362, 23522, 105, 5, 0, 'Candidate Communication Little Bit Only Good ,Also Her Performance Is Not Good And Then Sustainable Is Doubt', 154, '0000-00-00 00:00:00', 1),
(21363, 23523, 19, 7, 0, 'Fresher salary as per the company rules lets try 7 days ', 154, '0000-00-00 00:00:00', 1),
(21364, 23521, 59, 3, 0, 'Communication Ok 5050 on sustainability need to review and check in training phone she need to arrange', 57, '2025-01-06 02:55:17', 1),
(21365, 23523, 59, 5, 0, 'Not much comfort to work in target looking for non voice also her friend got rejected in the interview she will not sustain', 19, '2025-01-06 03:02:37', 1),
(21366, 23526, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21367, 23526, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21368, 23513, 59, 1, 0, NULL, 74, '2025-01-06 06:59:02', 1),
(21369, 23510, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training', 74, '2025-01-06 07:01:16', 1),
(21370, 23530, 74, 7, 0, 'He is ok with the profile ...completed diploma in Nagapattinam....and studied BE in madurai...expected high exposure.....and studied 6 month course in Palanasam.....mother passed last year....father centring work daily wages......not interested in IT current....he is interested in Tele calling...bcoz of he is speaking well......expected 13 to 14k.....have laptop....only issue distance.....100km...Aliyur....near Nagapattinam....ready to relocate to thanjavur hostel...so kindly check and confirm...apart from distance all good', 153, '0000-00-00 00:00:00', 1),
(21371, 23507, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21372, 23531, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21373, 23534, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21374, 23533, 57, 7, 0, 'Candidate is ok , 1yr medical field experience but abscond, communication is ok, sal exp 18k to 21k negotiate the salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(21375, 23536, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21376, 23535, 149, 5, 0, 'candidate was not suitable for sales and not have any ideas about the field', 154, '0000-00-00 00:00:00', 1),
(21377, 23533, 59, 3, 0, 'Communication ok can give a try and check in training period ', 57, '2025-01-07 12:37:22', 1),
(21378, 23411, 89, 7, 0, 'good Skill. already 1 yr Experience at bank Bazar and 6 month visa star Health.  expect 18.5 k. my Suggest 17.5 k ', 154, '0000-00-00 00:00:00', 1),
(21379, 23540, 74, 7, 0, 'He is ok with the profile...completed BE In park college....CS.....working in us based company in chennai...and night shift health issue....and no OT charges....so he releived from job....and already selected in IT company...but due to uncle death he releived....so high expenses in chennai....so ready to settle in thanjavur......father driver in foreign....and brother going to higher studies in London this month....have KTM bike.....not interested to work in foreign....so mother passed away....kindly check and confirm...salary 13 to 14k....immediate joining', 154, '0000-00-00 00:00:00', 1),
(21380, 23524, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21381, 23530, 59, 1, 0, NULL, 74, '2025-01-07 01:21:17', 1),
(21382, 23540, 59, 1, 0, NULL, 74, '2025-01-07 01:27:08', 1),
(21383, 23411, 59, 3, 0, 'Communication Ok Have exp but not in relevant one can give a try and check in training', 89, '2025-01-07 02:40:52', 1),
(21384, 23543, 149, 5, 0, 'candidate was not at all good at communication and not having confidence not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(21385, 23544, 74, 5, 0, 'not fit for tele calling kindly  avoid', 104, '0000-00-00 00:00:00', 1),
(21386, 23548, 74, 5, 0, 'have no clarity about job not fit for team', 104, '0000-00-00 00:00:00', 1),
(21387, 23542, 149, 5, 0, 'candidate was not so good at communication and he was having interest in other fields', 104, '0000-00-00 00:00:00', 1),
(21388, 23560, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(21389, 23559, 19, 5, 0, 'She is intrested in Bike health Insurance job', 104, '0000-00-00 00:00:00', 1),
(21390, 23552, 19, 2, 0, 'Kindly check he will able to join feb 1 only,if he joined immedit means we will proceed otherwise reject this person', 104, '0000-00-00 00:00:00', 1),
(21391, 23557, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21392, 23477, 105, 7, 0, 'Candidate Communication And Performance Is good ,will check with her in the training Period.as discussed CTC 1.80/LPA.', 104, '0000-00-00 00:00:00', 1),
(21393, 23546, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21394, 23477, 59, 1, 0, NULL, 105, '2025-01-08 01:08:25', 1),
(21395, 23558, 74, 5, 0, 'high attitude and have no disipline', 104, '0000-00-00 00:00:00', 1),
(21396, 23551, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21397, 23555, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21398, 23554, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21399, 23547, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21400, 23553, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21401, 23549, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21402, 23571, 89, 5, 0, 'silent person. and voice Stuck ', 154, '0000-00-00 00:00:00', 1),
(21403, 23573, 19, 7, 0, 'lets try 7 days then we will confirm salary basic freshers salary', 154, '0000-00-00 00:00:00', 1),
(21404, 23455, 57, 7, 0, 'Candidate is ok, 2yrs exp shriram sales xxamp Collection, communication is ok, sal exp 20k above, negotiate the salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(21405, 23581, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21406, 23580, 137, 5, 0, 'candidate not interest on telecalling work and  mainly lookig for non voice process an dsalart exp for very high so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21407, 23562, 30, 7, 3, 'suggested ctc 16k confirm the joining', 154, '0000-00-00 00:00:00', 1),
(21408, 23455, 59, 1, 0, NULL, 57, '2025-01-09 02:48:19', 1),
(21409, 23566, 147, 7, 0, 'selected good communication skills 15k salary', 154, '0000-00-00 00:00:00', 1),
(21410, 23577, 30, 7, 3, 'suggested 18k  ctc confirm the joining', 154, '0000-00-00 00:00:00', 1),
(21411, 23579, 30, 7, 3, 'Suggested ctc 18k for dm', 154, '0000-00-00 00:00:00', 1),
(21412, 23589, 74, 7, 0, 'She is ok with the profile...completed MSc ..age 29....2017 passed out...3 yrs Studied tnpsc exam...after she married...and last 6 month work in WFH....vehicle insurance sales and renewal....expected 13k ...have no laptop...travel time 20mins...husband work in petrol bunk..have 2 Yr child...ready to join after Pongal...family support for job kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(21413, 23590, 74, 5, 0, 'Have no knowledge about job ...unfit for sales', 153, '0000-00-00 00:00:00', 1),
(21414, 23585, 74, 5, 0, 'Not Fit for telecalling, unfit', 153, '0000-00-00 00:00:00', 1),
(21415, 23591, 105, 5, 0, 'candidate  Performance is ok ,but voice communication is very low Then Her Sustainable is doubt.Also she told,she is more sensitive Type', 153, '0000-00-00 00:00:00', 1),
(21416, 23592, 74, 7, 0, 'He is ok with the profile...completed BE ece in thanjavur.....Father worked in motor company...25k salaary.....he Is completed 24 only...2 months worked in manufacturing company...and 1 month worked in farque team...In sales care and star health....due to arrer releived from the job...m4 arrer exam in 22 Jan...after he Joined....Ready To arrange laptop...expected 14k....content creater and poster creator in insta and face book ....kindly cross. Check once and confirm.', 154, '0000-00-00 00:00:00', 1),
(21417, 16112, 109, 5, 0, 'Communication not good not suit for Recruiter', 154, '0000-00-00 00:00:00', 1),
(21418, 23584, 137, 7, 0, 'candidate communication and voice good , litebit get stuck , past exp for other work  and currently work on delivery boy , this month end he will join the work so try for 7 days training periods , exp salary on 16 to 17k', 153, '0000-00-00 00:00:00', 1),
(21419, 23076, 57, 7, 0, 'Candidate is ok, communication good, sal expectation 18k, 10 month experience Altruist loan collection, negotiate the salary and confirm the joining date', 153, '0000-00-00 00:00:00', 1),
(21420, 23076, 59, 3, 0, 'Communicaiton Ok 5050 Sustainability doubts need to checjk in training', 57, '2025-01-10 12:46:59', 1),
(21421, 23598, 109, 5, 0, 'Rejected', 153, '0000-00-00 00:00:00', 1),
(21422, 23597, 109, 5, 0, 'Looking for marketing', 153, '0000-00-00 00:00:00', 1),
(21423, 23578, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21424, 23584, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 137, '2025-01-10 01:12:16', 1),
(21425, 23599, 149, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21426, 23576, 102, 7, 0, 'Candidate communication and convincing skill is good he is interested sales he is experience but another domain expect salary expect 15 to 16k Once confirm DOJ', 153, '0000-00-00 00:00:00', 1),
(21427, 23582, 30, 5, 0, 'looking for non voice process', 154, '0000-00-00 00:00:00', 1),
(21428, 23583, 30, 5, 0, 'not looking for voice process', 154, '0000-00-00 00:00:00', 1),
(21429, 23596, 30, 7, 3, 'suggested ctc 16k confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(21430, 23589, 59, 3, 0, 'Communication Ok Age Can give a try and check in training', 74, '2025-01-10 03:52:47', 1),
(21431, 23592, 59, 3, 0, 'Communication Ok Can be trained in our roles and check during the training period', 74, '2025-01-10 04:12:31', 1),
(21432, 23576, 59, 3, 0, 'Communication OK Need to check and confirm in the training period', 102, '2025-01-10 04:32:08', 1),
(21433, 23573, 59, 1, 0, NULL, 19, '2025-01-10 05:05:38', 1),
(21434, 23601, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21435, 23537, 147, 5, 0, 'looking for non voice', 154, '0000-00-00 00:00:00', 1),
(21436, 23538, 147, 5, 0, 'candidate not intrested', 154, '0000-00-00 00:00:00', 1),
(21437, 23602, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21438, 23603, 105, 5, 0, 'Candidate Not Communicating Much More also her performance is very slow and low, Sustainability is doubt ', 154, '0000-00-00 00:00:00', 1),
(21439, 23604, 89, 7, 0, 'good skill. consider Fresher', 154, '0000-00-00 00:00:00', 1),
(21440, 23606, 74, 5, 0, 'not fit for telecalling choosing data entry and not intrested in job,,,,expected accounts related jon only so only atten interivew for financial company..current he want pay a fees for mba so only looking for job', 153, '0000-00-00 00:00:00', 1),
(21441, 23607, 74, 7, 0, 'she is ok with the profile, completed bsc biotech, 24 passedout,,,,father welder own in house 20k monthly earning,,,two elder sister first sister married work in infoysys 50k earning but not support to family,,,another sister work in omega 15k earning,,,,she tried many place like omega , and other healthcare solutions but rejected,,,,have good cominication and confident regarding job.....highly job need fresher..expected 12k and ready to arrange laptop,,,,and joined monday ,,,,23k from office to home 45mins travel..future plan govt job...kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(21442, 23596, 60, 1, 0, NULL, 30, '2025-01-11 11:34:43', 1),
(21443, 23577, 60, 1, 0, NULL, 30, '2025-01-11 11:35:44', 1),
(21444, 23562, 60, 1, 0, NULL, 30, '2025-01-11 11:37:07', 1),
(21445, 23593, 147, 5, 0, 'not intrested for voice', 154, '0000-00-00 00:00:00', 1),
(21446, 23607, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training 30 min travel distance', 74, '2025-01-11 01:24:53', 1),
(21447, 23566, 59, 3, 0, 'Fresher need to check in 7 daya trsaniin', 147, '2025-01-11 01:30:17', 1),
(21448, 23605, 147, 5, 0, 'not intrested in voice process', 154, '0000-00-00 00:00:00', 1),
(21449, 23611, 147, 7, 0, 'Experience candidate good Communication need to  discuss  CTC', 154, '0000-00-00 00:00:00', 1),
(21450, 23611, 60, 1, 0, NULL, 147, '2025-01-11 03:07:25', 1),
(21451, 23613, 89, 5, 0, 'not Interested voice process', 154, '0000-00-00 00:00:00', 1),
(21452, 23612, 149, 7, 0, 'candidate was good at communication also interested in sales and ready for immediate joining ,we shall provide 15k as salary ,syed sir also checked the candidate', 153, '0000-00-00 00:00:00', 1),
(21453, 23618, 57, 7, 0, 'Candidate is ok, 2 yr exp mobile showroom but no payslip xxamp  proof, 5 month exp futurez staff loan dep, communication is ok, sal exp 20k, kindly negotiate the salary and confirm the joining date', 153, '0000-00-00 00:00:00', 1),
(21454, 23619, 137, 7, 0, 'candidate communication and voice ok , past 4 years sales exu for mobie sales an d6 month team leader , very long distance  and no bike , but try for 7 days training , exp salary is 18 to 20k ', 153, '0000-00-00 00:00:00', 1),
(21455, 23620, 89, 5, 0, 'very silent person and no basic skil', 153, '0000-00-00 00:00:00', 1),
(21456, 23612, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training ', 149, '2025-01-13 12:33:18', 1),
(21457, 23621, 105, 7, 0, 'Candidate Communication and performance is ok. but 50/50 will check with her in the training period', 153, '0000-00-00 00:00:00', 1),
(21458, 23619, 59, 3, 0, 'Communication Ok Fresher for our roles have 4 yrs exp in store sales can give a try and train need to analyse and  confirm in the training period', 137, '2025-01-13 12:44:29', 1),
(21459, 23618, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 57, '2025-01-13 12:48:39', 1),
(21460, 23391, 137, 5, 0, 'candidate dress code and communication not good and he not fit for calling work so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21461, 23622, 102, 5, 0, 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', 153, '0000-00-00 00:00:00', 1),
(21462, 23617, 147, 7, 0, 'Good Communication Previous Work Experience Out Of India Check Once Will He Work  Long Time', 153, '0000-00-00 00:00:00', 1),
(21463, 23626, 147, 5, 0, 'lack of communication', 153, '0000-00-00 00:00:00', 1),
(21464, 23625, 147, 5, 0, 'Communication is not good no  Confidence', 153, '0000-00-00 00:00:00', 1),
(21465, 23621, 59, 1, 0, NULL, 105, '2025-01-16 09:31:57', 1),
(21466, 23630, 149, 7, 0, 'candidate was good at communication also have work experience and interested in sales ,we shall give 14k as take home and  also ok with immediate joining even by tomorrow itself', 154, '0000-00-00 00:00:00', 1),
(21467, 23631, 149, 7, 0, 'Good At Communication ,Also Interested  In Sales We Shall Provide 13-14k As Take Home And Syed Sir Also Checked With Candidate.', 154, '0000-00-00 00:00:00', 1),
(21468, 23629, 89, 5, 0, 'not fit for the job , no basic skill and 3 company chang last 6 month', 154, '0000-00-00 00:00:00', 1),
(21469, 23632, 74, 5, 0, 'not fit for telecalling, intrested in govt job', 154, '0000-00-00 00:00:00', 1),
(21470, 23632, 74, 5, 0, 'not fit for telecalling, intrested in govt job', 154, '0000-00-00 00:00:00', 1),
(21471, 23630, 59, 3, 0, 'Communication Ok have few months exp can be trained give a try and check in training', 149, '2025-01-16 01:29:10', 1),
(21472, 23635, 89, 7, 0, 'good skill. already Experience at non voice. i suggest 17.5 k ', 154, '0000-00-00 00:00:00', 1),
(21473, 23636, 57, 5, 0, 'Candidate is not  Fit For sales profiles, bcz of she was looking backend process like data entry, she resigned previous job heavy work target based, she unfit ', 154, '0000-00-00 00:00:00', 1),
(21474, 23627, 57, 5, 0, 'candidate is not ok, Observation skills low, Reject the profile \nthanks', 154, '0000-00-00 00:00:00', 1),
(21475, 23631, 59, 3, 0, 'Communication Ok fresher for our role 3 months exp but no documents need to check in training', 149, '2025-01-16 03:00:28', 1),
(21476, 23635, 59, 1, 0, NULL, 89, '2025-01-16 03:26:35', 1),
(21477, 23604, 59, 1, 0, NULL, 89, '2025-01-16 03:28:35', 1),
(21478, 23638, 57, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21479, 23639, 89, 5, 0, 'no basic skill. and long distance ', 153, '0000-00-00 00:00:00', 1),
(21480, 23645, 74, 7, 0, 'he is ok with the profile completed mca in pushpam college,,,,1 year working in service and sales oil lubrication industry....uncle manager so refer to that company....salary 16k petrol all over 22k......facing accident so releived from the job...not possible in IT so try in sales telecalling....house next street from ofice...father painter in a own partnership company...rental house 5k rent..brother studied in bba....expected 12 to 15k have laptop....english pronuncation low but try in training...join immediately', 154, '0000-00-00 00:00:00', 1),
(21481, 23617, 59, 3, 0, 'Fresher Communicaiton Ok Can give a try and check in training', 147, '2025-01-17 10:49:08', 1),
(21482, 23643, 149, 7, 0, 'candidate was interested in sales and good at communication ,also ready to joining by any time kannan also checked with candidate', 154, '0000-00-00 00:00:00', 1),
(21483, 23642, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21484, 23640, 19, 7, 0, 'job needed person already having 3 years in tele calling in hand salary 17k lets try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21485, 23641, 105, 5, 0, 'Candidate communication and performance is ok .but he is interested in non voice ,', 154, '0000-00-00 00:00:00', 1),
(21486, 23646, 57, 7, 0, 'Candidate is ok,', 154, '0000-00-00 00:00:00', 1),
(21487, 23640, 59, 3, 0, 'Communication ok have exp in loan collection and sales can give a try and check in training\n', 19, '2025-01-17 12:40:13', 1),
(21488, 23646, 59, 1, 0, NULL, 57, '2025-01-17 12:45:45', 1),
(21489, 23647, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21490, 23634, 30, 5, 0, 'due to communication skill', 154, '0000-00-00 00:00:00', 1),
(21491, 23645, 59, 3, 0, 'Communication Average 5050 for your profile can give try and check in training period', 74, '2025-01-17 03:38:05', 1),
(21492, 23649, 30, 5, 0, 'communication not upto the mark', 154, '0000-00-00 00:00:00', 1),
(21493, 23655, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(21494, 23657, 89, 7, 0, 'good skill. but Previous job non voice. once will consider 7 days training', 154, '0000-00-00 00:00:00', 1),
(21495, 23654, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21496, 23659, 109, 5, 0, 'Above 30 age she will not be suitable for our sales', 154, '0000-00-00 00:00:00', 1),
(21497, 23660, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21498, 23663, 11, 7, 0, 'gaurav sir met \nshe is ok for E sales ', 153, '0000-00-00 00:00:00', 1),
(21499, 23657, 59, 3, 0, 'Communication Ok  5months back she attended interview for HR Profile through Indeed now for Sales 5050 On sustainability need to check in training and confirm', 89, '2025-01-18 03:18:45', 1),
(21500, 23670, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21501, 23671, 74, 5, 0, 'not fit for tele sales ,,,not facing pressure', 153, '0000-00-00 00:00:00', 1),
(21502, 23666, 74, 7, 0, 'she is ok with the profile..fresher..complted ba english in bon secures college.....native 25 km from ofice..father retired govt staff...aged person both so she is helpless and need job .....speak well ready to work in any environment and salary not expected basic 12k only have laptop and joining imeediately....kindly check once and cofirm', 153, '0000-00-00 00:00:00', 1),
(21503, 23669, 59, 3, 0, 'communication Ok Rejoining candidate Babu Own reference and acceptance ', 60, '0000-00-00 00:00:00', 1),
(21504, 23674, 109, 5, 0, 'Shorlisted but she not joined for intern', 154, '0000-00-00 00:00:00', 1),
(21505, 23667, 105, 7, 0, 'CandIdate communication and performance is good,Joining On 23rd Of This Month.As Discussed CTC 1.8LPA.Kindly Check With Him ', 154, '0000-00-00 00:00:00', 1),
(21506, 23673, 74, 5, 0, 'completly looking for IT ONLY NOT FIT FOR SALES', 154, '0000-00-00 00:00:00', 1),
(21507, 23672, 149, 7, 0, 'candidate was good at communication also fluency in english and interested in sales and ready to join ,we shall give 15k as salary .', 154, '0000-00-00 00:00:00', 1),
(21508, 23677, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21509, 23676, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21510, 23676, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21511, 23679, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21512, 23643, 59, 1, 0, NULL, 149, '2025-01-20 12:19:17', 1),
(21513, 23672, 59, 1, 0, NULL, 149, '2025-01-20 12:36:05', 1),
(21514, 23683, 19, 7, 0, 'selected ctc 16k lets try 7 days we will confirm', 154, '0000-00-00 00:00:00', 1),
(21515, 23682, 89, 5, 0, 'silent person. not fit for the job', 154, '0000-00-00 00:00:00', 1),
(21516, 23552, 19, 5, 0, 'he asking too much time to join', 19, '2025-01-20 01:30:14', 1),
(21517, 23664, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21518, 23685, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21519, 23686, 19, 5, 0, 'except high salary not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21520, 23686, 19, 5, 0, 'except high salary not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21521, 23667, 59, 3, 0, 'Communication Ok  can give a try and check in training  sustainability 5050', 105, '2025-01-20 04:40:24', 1),
(21522, 23683, 59, 1, 0, NULL, 19, '2025-01-20 04:45:31', 1),
(21523, 23368, 59, 3, 0, 'IT intern with TxxampC accepted for Sathish Team Interview Round s with Sathish Gokul Arun', 60, '0000-00-00 00:00:00', 1),
(21524, 23692, 74, 5, 0, 'not fit for telesales, choosing data entry', 153, '0000-00-00 00:00:00', 1),
(21525, 23690, 57, 7, 0, 'Candidate is ok, communication is ok, pls cross check settled family, father medical business mother beautician, distance too long avadi, pls Filter. Confirm the joining date..\nThanks', 154, '0000-00-00 00:00:00', 1),
(21526, 23689, 89, 5, 0, 'no basic skill . and long distance', 154, '0000-00-00 00:00:00', 1),
(21527, 23694, 19, 5, 0, 'not wearing proper formal and he is not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21528, 23694, 19, 5, 0, 'not wearing proper formal and he is not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21529, 23696, 105, 7, 0, 'candidate communication and performance is Good.Will Check With her in thetraining period.as discussed cTC 1.68LPA Check With her', 154, '0000-00-00 00:00:00', 1),
(21530, 23699, 89, 7, 0, 'good skill. married woman Experience 1 yr at insurance filed. but will analysis 7 days training. ', 154, '0000-00-00 00:00:00', 1),
(21531, 23695, 19, 7, 0, 'job needed person salary in hand 14k lets try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21532, 23695, 19, 7, 0, 'job needed person salary in hand 14k lets try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21533, 23700, 105, 5, 0, 'candidate performance And communication is  Low.also his voice is low pitch.then sustainable doubt.', 154, '0000-00-00 00:00:00', 1),
(21534, 23700, 105, 5, 0, 'candidate performance And communication is  Low.also his voice is low pitch.then sustainable doubt.', 154, '0000-00-00 00:00:00', 1),
(21535, 23695, 59, 1, 0, NULL, 19, '2025-01-21 12:10:46', 1),
(21536, 23663, 60, 1, 0, NULL, 11, '2025-01-21 12:14:19', 1),
(21537, 23690, 59, 1, 0, NULL, 57, '2025-01-21 12:29:24', 1),
(21538, 23701, 149, 5, 0, 'candidate was not good  at communication and not so confident at the job', 154, '0000-00-00 00:00:00', 1),
(21539, 23702, 57, 5, 0, 'Candidate is not suitable for sales profile, communication not good,Appt not interested,reject the profile', 154, '0000-00-00 00:00:00', 1),
(21540, 23565, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21541, 23661, 19, 5, 0, 'not fit for sales and he intrested in iT', 154, '0000-00-00 00:00:00', 1),
(21542, 23706, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21543, 23699, 59, 1, 0, NULL, 89, '2025-01-21 01:31:32', 1),
(21544, 23665, 30, 7, 4, 'upto 20k suggested canditate worth', 154, '0000-00-00 00:00:00', 1),
(21545, 23709, 30, 7, 3, 'suggested 14 to 15k ctc, English managable but kannanda and tamil k', 154, '0000-00-00 00:00:00', 1),
(21546, 23668, 30, 7, 3, 'suggested ctc 18 to 20k cross check previous data and immediate joining', 154, '0000-00-00 00:00:00', 1),
(21547, 23712, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21548, 23709, 60, 1, 0, NULL, 30, '2025-01-21 06:52:04', 1),
(21549, 23668, 60, 1, 0, NULL, 30, '2025-01-21 06:54:19', 1),
(21550, 23665, 60, 1, 0, NULL, 30, '2025-01-21 06:55:31', 1),
(21551, 23666, 59, 1, 0, NULL, 74, '2025-01-21 06:58:00', 1),
(21552, 23696, 59, 5, 0, 'Not interested in this profile', 105, '2025-01-21 10:14:25', 1),
(21553, 23717, 137, 5, 0, 'candidate salary exp its very high and only looking for backend wok not inerst in voice process, so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21554, 23721, 149, 7, 0, 'candidate was good at communication ,interested in sales have bike and also  kannan sir checked him we shall provide 15k as salary', 154, '0000-00-00 00:00:00', 1),
(21555, 23714, 19, 5, 0, 'not fit for sales and iTI Degree only so already i have in that list of some person in my team', 154, '0000-00-00 00:00:00', 1),
(21556, 23719, 74, 7, 0, 'he is ok with the profile completed bcom in pushpam college....and immediately join in tata backend process tower issue solving 6 months due to food room and night shift releived from job and 8 month unemployed and joined in amararaja tower backend issue solving company store keeper....and same room food and expenses releived from the job....father driver tata ace owner and self driver..mother small scale mess like hotel...brother doing hse.....he is ok bit low profile but adaptive and talkactive will train....expected 13 to 14k....ready to arrange laptop...joining monday...have bike 15km from home 20mins travel kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(21557, 23722, 137, 5, 0, 'candidate communication ok but not iterested i filed work so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21558, 23721, 59, 3, 0, 'Communication Ok can be trained in our roles and check in training period', 149, '2025-01-22 12:03:36', 1),
(21559, 23724, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21560, 23725, 109, 5, 0, 'Worked for 2 weeks but quit at the time of internship', 154, '0000-00-00 00:00:00', 1),
(21561, 23726, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21562, 23697, 74, 5, 0, 'not fit for telesaes and telecalling', 153, '0000-00-00 00:00:00', 1),
(21563, 23719, 59, 3, 0, 'Communication Ok 5050 sustainability doubts not sure delayed joining several times and even shown no interest in voice inbetween he followed and pushed for joining let us try', 74, '2025-01-22 01:00:54', 1),
(21564, 23678, 89, 7, 0, 'good skill. fresher \nbut long distance , \n', 154, '0000-00-00 00:00:00', 1),
(21565, 20433, 89, 5, 0, 'silent person. not fit for the job', 154, '0000-00-00 00:00:00', 1),
(21566, 23730, 105, 7, 0, 'Candidate Communication And performance is Good.This Her Voice is Bold Her Confident Level is also good.bu5 will Check With her in the training Period.as discussed CTC 1.68LPA', 154, '0000-00-00 00:00:00', 1),
(21567, 23730, 59, 1, 0, NULL, 105, '2025-01-22 03:41:33', 1),
(21568, 23731, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21569, 23728, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21570, 23734, 140, 4, 0, 'have to  go for gaurav sir approval', 154, '0000-00-00 00:00:00', 1),
(21571, 23733, 74, 7, 0, 'he is ok with the profile completed bca and worked as sales person in furniture shop at college time and full time after college few months and getting 10k.......and worked as a ar caller in medical coding in chennai due to father health issue he releived,,,father passed away..brother studied in college he is the only hope now for job and family expenses....expected 13 to 15k ...have laptop and join immeedaiately kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(21572, 23718, 149, 5, 0, ' candidate was not ok with communication and no idea about sales job and interested in other professions', 154, '0000-00-00 00:00:00', 1),
(21573, 23737, 137, 5, 0, 'candidate communication skill and voice good , but he need weekly 2 days leave for studys so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21574, 23739, 74, 5, 0, 'not fit have no clear voice and not suite for team and telesales', 154, '0000-00-00 00:00:00', 1),
(21575, 23740, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21576, 23744, 109, 2, 0, 'Currently doing internship', 154, '0000-00-00 00:00:00', 1),
(21577, 23742, 19, 7, 0, 'Job needed person freshers salary in hand 14k lets try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21578, 23745, 19, 5, 0, 'she wants 6PM Log Out not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21579, 23678, 59, 5, 0, 'Not interested to join as the distance is too long to travel not open to releocate too', 89, '2025-01-23 12:15:10', 1),
(21580, 23742, 59, 3, 0, 'Communication Ok Can be trained in our roles and need to check in training period', 19, '2025-01-23 12:41:24', 1),
(21581, 23509, 105, 5, 0, 'candidate communication and peformacne is little bit not good,also long distance sustsainable is doubt', 154, '0000-00-00 00:00:00', 1),
(21582, 23748, 74, 5, 0, 'unfit for telesales and telecalling,looking for temporary job only', 154, '0000-00-00 00:00:00', 1),
(21583, 23713, 89, 5, 0, 'he si not intersted telecalling', 154, '0000-00-00 00:00:00', 1),
(21584, 23733, 59, 3, 0, 'Communication Ok Can give a try and check in training let us try', 74, '2025-01-23 01:06:26', 1),
(21585, 23747, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21586, 23747, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21587, 23749, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21588, 23750, 57, 7, 0, 'candidate unfit for sales, field work not interested,reject the profile', 154, '0000-00-00 00:00:00', 1),
(21589, 23750, 59, 1, 0, NULL, 57, '2025-01-23 04:24:37', 1),
(21590, 23754, 149, 5, 0, 'candidate was not good at communication and he was already had interest in other  prossions', 104, '0000-00-00 00:00:00', 1),
(21591, 23757, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21592, 23755, 19, 7, 0, 'job needed person fresher salary 16k ctc lets try 7 days then we will confirm', 104, '0000-00-00 00:00:00', 1),
(21593, 23760, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21594, 23763, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21595, 23756, 105, 5, 0, 'Candidate coomunication is well But performance is not good ,also there is gap between continous  answering.not handle pressure', 153, '0000-00-00 00:00:00', 1),
(21596, 23755, 59, 3, 0, 'Communication Ok Fresher can be trained in our roles need to check in training', 19, '2025-01-24 03:15:43', 1),
(21597, 23759, 109, 5, 0, 'Shortlisted but not joined', 154, '0000-00-00 00:00:00', 1),
(21598, 23769, 149, 5, 0, 'candidate was not active and he was not shown any interest regarding  to this profession', 154, '0000-00-00 00:00:00', 1),
(21599, 23770, 19, 5, 0, 'not fit for sales Attitude was not good', 154, '0000-00-00 00:00:00', 1),
(21600, 23768, 19, 7, 0, 'job needed person almost 4 years exp in sales so lets try 7 dasy in hand salary 19k', 154, '0000-00-00 00:00:00', 1),
(21601, 23771, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21602, 23767, 105, 5, 0, 'CANDIDATE COMMUNICATION AND PERFORMACNE IS NOT GOOD ALSO SUSTAINABLE IS DOUBT', 154, '0000-00-00 00:00:00', 1),
(21603, 23768, 59, 3, 0, 'Communication Ok 5050 Candidate Sustainability doubts in this profile fresher to insurance domain need to check in 7 days training', 19, '2025-01-25 12:41:00', 1),
(21604, 23734, 29, 7, 2, 'selected for esales, accept for 20,000 salary only', 140, '2025-01-25 01:25:19', 1),
(21605, 23765, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21606, 23772, 149, 5, 0, 'candidate communication was not  clear and not sure about his job stability and not ok with salary\ngood and ', 154, '0000-00-00 00:00:00', 1),
(21607, 23777, 149, 7, 0, 'candidate was good at communication and also interested and have bike we shall provide 15-16k as salary', 153, '0000-00-00 00:00:00', 1),
(21608, 23775, 74, 7, 0, 'he is ok with the profile completed m.com,,,already worked in wholesale home needs delivery to retail shop with sales,,,,first company 3 month salary issue and next company field issue releived.....father tailor,,mother work in home cleaning....brother iti....have sales pitch and exposure we try in training....expected 15k joining feb..have laptop kindlycheck once and confirm', 153, '0000-00-00 00:00:00', 1),
(21609, 23687, 137, 7, 0, 'candidate commuication ok and interest to calling work  , but vocie is very low so tryfor 7 days training periods , bike and lap in hand , exp salary is 15 to 16k ', 153, '0000-00-00 00:00:00', 1),
(21610, 23803, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21611, 23804, 11, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21612, 23807, 89, 5, 0, 'no basic skill', 153, '0000-00-00 00:00:00', 1),
(21613, 23687, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check and confirm ', 137, '2025-01-27 01:19:20', 1),
(21614, 23806, 57, 5, 0, 'Candidate is unfit for the job,communication not good, reject the profile', 153, '0000-00-00 00:00:00', 1),
(21615, 23805, 137, 5, 0, 'candaiate all details ok , communication good , but exp salary is 25k above so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21616, 23810, 105, 5, 0, 'candidate communication and performacne os not good .also she is slow  then sustainable is doubt', 153, '0000-00-00 00:00:00', 1),
(21617, 23796, 109, 5, 0, 'Communication too low', 153, '0000-00-00 00:00:00', 1),
(21618, 23789, 109, 5, 0, 'Will not be suitable for sales', 153, '0000-00-00 00:00:00', 1),
(21619, 23788, 109, 5, 0, 'Tottaly fresher will not sustain for sales', 153, '0000-00-00 00:00:00', 1),
(21620, 23790, 109, 2, 0, 'Currently pursuing degree will check if comes back', 153, '0000-00-00 00:00:00', 1),
(21621, 23819, 109, 8, 0, 'Not Came after exams', 153, '0000-00-00 00:00:00', 1),
(21622, 23791, 109, 5, 0, 'Wiull not be suitable for sales', 153, '0000-00-00 00:00:00', 1),
(21623, 23816, 109, 8, 0, 'Not Came after exams', 153, '0000-00-00 00:00:00', 1),
(21624, 23793, 89, 5, 0, 'noon voice needed', 153, '0000-00-00 00:00:00', 1),
(21625, 23779, 109, 2, 0, 'They pursuing degreee currently', 153, '0000-00-00 00:00:00', 1),
(21626, 23780, 156, 7, 0, 'Candidate is ok , communication good provide the fresher salary . kindly confirm the joining date ', 153, '0000-00-00 00:00:00', 1),
(21627, 23781, 109, 2, 0, 'Pursuing currently', 153, '0000-00-00 00:00:00', 1),
(21628, 23782, 109, 2, 0, 'Currently pursuing degree will check if comes back', 153, '0000-00-00 00:00:00', 1),
(21629, 23783, 109, 5, 0, 'Wil not be suitable', 153, '0000-00-00 00:00:00', 1),
(21630, 23785, 109, 5, 0, 'Gommunication not good', 153, '0000-00-00 00:00:00', 1),
(21631, 23786, 109, 5, 0, 'Not sustain in our company', 153, '0000-00-00 00:00:00', 1),
(21632, 23795, 109, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21633, 23815, 109, 8, 0, 'Not Came after exams', 153, '0000-00-00 00:00:00', 1),
(21634, 23814, 109, 8, 0, 'Not Came after exams', 153, '0000-00-00 00:00:00', 1),
(21635, 23809, 109, 5, 0, 'She will not be suitable for sales and jut looking for time being', 153, '0000-00-00 00:00:00', 1),
(21636, 23801, 109, 2, 0, 'Currently pursuing degree', 153, '0000-00-00 00:00:00', 1),
(21637, 23800, 109, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21638, 23777, 59, 1, 0, NULL, 149, '2025-01-27 05:37:21', 1),
(21639, 23734, 59, 3, 0, 'Communication Ok Earlier attended and not joined appeared again after years and selectetd let us try through training', 29, '2025-01-27 06:05:12', 1),
(21640, 23820, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21641, 23824, 74, 5, 0, 'not fit for telesales intrested in foreign only', 153, '0000-00-00 00:00:00', 1),
(21642, 23830, 74, 5, 0, 'not fit for tele calling looking for part time only', 153, '0000-00-00 00:00:00', 1),
(21643, 23828, 89, 5, 0, 'silent person. not fit for the job', 154, '0000-00-00 00:00:00', 1),
(21644, 23792, 74, 5, 0, 'not suite for team...choosing data entry', 153, '0000-00-00 00:00:00', 1),
(21645, 23834, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(21646, 23833, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(21647, 23832, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(21648, 23835, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21649, 23831, 109, 5, 0, 'Did internship 2 weeks and quit', 154, '0000-00-00 00:00:00', 1),
(21650, 23837, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21651, 23841, 140, 4, 0, 'Selected', 154, '0000-00-00 00:00:00', 1),
(21652, 23723, 30, 5, 0, 'communication not that much expectation salary to high', 154, '0000-00-00 00:00:00', 1),
(21653, 23775, 59, 3, 0, 'Communication Ok  Can give a try and check in training period', 74, '2025-01-28 06:17:44', 1),
(21654, 23838, 149, 5, 0, 'candidate was interested in hr profession and not interested in sales and not ok with salary also', 154, '0000-00-00 00:00:00', 1),
(21655, 23844, 74, 7, 0, 'he is ok with the profile  completed bba in AVC college mayiladudrai...and join in desicrew wfh for 2 years with 10k salary and won top performer award...and releived due to 10k salary and joined hdfc loan section and telecalling and no incentives so releived from the job ,,,,ready to arrange laptop and join next month ,,,father milk business sister married ,,,relocate in gramother home 15km from office...kindly check once will check in training', 153, '0000-00-00 00:00:00', 1),
(21656, 23850, 137, 5, 0, 'candidate all ok but after 6 month start for business and mba also so not fit for my team\n', 154, '0000-00-00 00:00:00', 1),
(21657, 23850, 137, 5, 0, 'candidate all ok but after 6 month start for business and mba also so not fit for my team\n', 154, '0000-00-00 00:00:00', 1),
(21658, 23480, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21659, 23841, 29, 7, 3, 'ok, have to train and check ', 140, '2025-01-29 10:38:18', 1),
(21660, 23852, 19, 5, 0, 'Distance Issue', 154, '0000-00-00 00:00:00', 1),
(21661, 23851, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21662, 23854, 57, 7, 0, 'Candidate is ok, communication ok\npls cross check sustainability,confirm the salary and joining Thanks', 154, '0000-00-00 00:00:00', 1),
(21663, 23844, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check and confirm in the training', 74, '2025-01-29 11:38:19', 1),
(21664, 23839, 147, 7, 0, 'Good  Communication selected salary 16k having 6 months Experience has tele caller', 154, '0000-00-00 00:00:00', 1),
(21665, 23856, 147, 5, 0, 'only knowing telugu  language', 154, '0000-00-00 00:00:00', 1),
(21666, 23836, 105, 5, 0, 'Candidate Communication And performance is not good,also she is not spoken much more then his voice is very low ', 154, '0000-00-00 00:00:00', 1),
(21667, 23727, 105, 7, 0, 'Candidate Communication And performance is good.but little bit voice correlation problem 5050 will check with him in the training Period.as discussed CTC 1.68LAP.Kindly check with him ', 154, '0000-00-00 00:00:00', 1),
(21668, 23858, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21669, 23860, 149, 7, 0, 'candidate was better at communication and having interested  in sales and having confidence  about the job ,we shall provide 14k as salary', 154, '0000-00-00 00:00:00', 1),
(21670, 23862, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21671, 23861, 137, 5, 0, 'candidate only interested in bank work and not fit for voce process , comuncation good but voice not clear', 154, '0000-00-00 00:00:00', 1),
(21672, 23859, 105, 7, 0, 'Candidate Communication And performance is ok.also her voice is bold.as discussed CTC 1.56LPA.Kindly Check With her ', 154, '0000-00-00 00:00:00', 1),
(21673, 23863, 74, 5, 0, 'unfit for telecalling and telesales', 154, '0000-00-00 00:00:00', 1),
(21674, 23727, 60, 1, 0, NULL, 105, '2025-01-29 01:59:58', 1),
(21675, 23859, 59, 1, 0, NULL, 105, '2025-01-29 02:02:13', 1),
(21676, 23865, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21677, 23855, 19, 5, 0, 'not worth of his asking salary', 154, '0000-00-00 00:00:00', 1),
(21678, 23867, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21679, 23868, 57, 7, 0, 'candidate is ok, babu seen the candidate. communication is ok,\npls check  sustainability. confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(21680, 23854, 59, 1, 0, NULL, 57, '2025-01-29 06:13:50', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(21681, 23868, 59, 3, 0, 'Communication Ok Have Exp in calling but not in relevant domain can be trained in our roles need to check and confirm', 57, '2025-01-29 06:15:14', 1),
(21682, 23839, 59, 1, 0, NULL, 147, '2025-01-29 07:06:36', 1),
(21683, 23871, 105, 2, 0, 'candidate communication and performance is good.but his attire is very poor,so resheduled on saturday will check it and finalize.', 154, '0000-00-00 00:00:00', 1),
(21684, 23873, 149, 5, 0, 'CANDIDATE WAS NOT GOOD AT COMMUNICATION NOT AT ALL SPEAKING AND NOT HAVING ANY IDEAS ABOUT SALES AND JOB', 154, '0000-00-00 00:00:00', 1),
(21685, 23872, 137, 7, 0, 'candidate communication and voice good , past 7 month iT requirement work on night shift , that reason to relave  past salary 20k i will inform  16k to 17k , so tr for 7 days training period', 154, '0000-00-00 00:00:00', 1),
(21686, 23874, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21687, 23875, 19, 7, 0, 'job needed person ctc 16k fresher salary lets try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21688, 23878, 57, 5, 0, 'candidate not suitable for sales xxamp Field work, communication not good, reject the profile', 153, '0000-00-00 00:00:00', 1),
(21689, 23860, 59, 1, 0, NULL, 149, '2025-01-30 12:09:23', 1),
(21690, 23877, 149, 7, 0, 'candidate was good at communication and  have experience in telecalling and we can provide 14-15k as salary and  kannan sir  also suggested and he was ready for immediate joining', 154, '0000-00-00 00:00:00', 1),
(21691, 23877, 149, 7, 0, 'candidate was good at communication and  have experience in telecalling and we can provide 14-15k as salary and  kannan sir  also suggested and he was ready for immediate joining', 154, '0000-00-00 00:00:00', 1),
(21692, 23880, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(21693, 23882, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(21694, 23881, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(21695, 23876, 89, 7, 0, 'fresher . good skill', 154, '0000-00-00 00:00:00', 1),
(21696, 23872, 59, 1, 0, NULL, 137, '2025-01-30 12:40:30', 1),
(21697, 23883, 149, 5, 0, 'candidate was not at all speaking and interested in other profession and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(21698, 23884, 19, 5, 0, 'Expecting high salary', 154, '0000-00-00 00:00:00', 1),
(21699, 23885, 105, 5, 0, 'candidate communication and performance is not good.Then she is not performed well in the interview, also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(21700, 23890, 109, 2, 0, 'Currently doing internship', 154, '0000-00-00 00:00:00', 1),
(21701, 23889, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(21702, 23876, 59, 1, 0, NULL, 89, '2025-01-30 04:33:27', 1),
(21703, 23813, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary . kindly confirm the joining date ', 153, '0000-00-00 00:00:00', 1),
(21704, 23875, 59, 1, 0, NULL, 19, '2025-01-30 04:48:16', 1),
(21705, 23894, 74, 7, 0, 'Completed bcom computer application fresher father driver....10k salary...sister MBA only mother home maker have own laptop rrb exam preparation 12 to 15k expected...have clear speech and job need ....srinivasapuram have bike....15 mins travel..joining immediately kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(21706, 23879, 19, 5, 0, 'not worth of his asking salary', 154, '0000-00-00 00:00:00', 1),
(21707, 23894, 59, 3, 0, 'Fresher need to train from Scratch can give a try and check in training and confirm', 74, '2025-01-31 11:21:07', 1),
(21708, 23896, 138, 5, 0, 'not fit with sales industry coz 6 years experience in operation team but obersvation ability is very poor even sales knowledge also not good and attitude level like fresher category so reject this candidate as well ', 153, '0000-00-00 00:00:00', 1),
(21709, 23892, 137, 5, 0, 'candidate not interest in out side call and no bike also , he need 6.45 logout so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21710, 23898, 109, 5, 0, 'Lagging in communication', 154, '0000-00-00 00:00:00', 1),
(21711, 23897, 109, 5, 0, 'Not suitable ', 154, '0000-00-00 00:00:00', 1),
(21712, 23900, 105, 5, 0, 'candidate communication and performance is not good.Long Distance Slang Might be very low .also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(21713, 23905, 57, 5, 0, 'Candidate unfit for sales, communication not good, lack of confident. reject the profile', 154, '0000-00-00 00:00:00', 1),
(21714, 23907, 149, 7, 0, 'candidate have better communication and interested and also ok for immediate joining we shall provide 14k as salary kannan sir also checked this candidate', 154, '0000-00-00 00:00:00', 1),
(21715, 23899, 138, 5, 0, 'Good Communication skills and Limited Technical Expertise then lack of problem solving abilities so  finally we rejected this candidate', 154, '0000-00-00 00:00:00', 1),
(21716, 23887, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21717, 23904, 149, 5, 0, 'candidate was ok with communication but married and mother so canxquott be sure about her stability and time management ', 154, '0000-00-00 00:00:00', 1),
(21718, 23918, 74, 5, 0, 'not fit for telesales choosing data entry', 153, '0000-00-00 00:00:00', 1),
(21719, 23911, 149, 7, 0, 'candidate was good at communication and had experience related to sales and interested we shall provide 14-15k as salary ', 154, '0000-00-00 00:00:00', 1),
(21720, 23922, 74, 5, 0, 'not fit looking for temporary job...studied banking job and choosing data entry', 154, '0000-00-00 00:00:00', 1),
(21721, 23921, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21722, 23911, 59, 3, 0, 'Communication Ok Can give a try and check in training period and confirm', 149, '2025-02-01 01:00:50', 1),
(21723, 23907, 59, 1, 0, NULL, 149, '2025-02-01 01:02:26', 1),
(21724, 23877, 59, 3, 0, '\nCommunication Ok fresher for our roles need to check in training and confirm let us try', 149, '2025-02-01 01:06:04', 1),
(21725, 23901, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(21726, 23930, 137, 7, 0, 'candidate  communication and voice good , past 3 months exp for telecalling and under presure , current location guindy  , bike also have , so try for 7 days training period , exp salary is 16 to 17k', 154, '0000-00-00 00:00:00', 1),
(21727, 23924, 11, 5, 0, 'wont suitable for sales ', 154, '0000-00-00 00:00:00', 1),
(21728, 23931, 11, 7, 0, 'selected for E sales \ngaurav sir also met \nhave to confirm joining date ', 154, '0000-00-00 00:00:00', 1),
(21729, 23930, 59, 3, 0, 'Communication Ok Fresher for our roles can give a try and check in training', 137, '2025-02-01 04:02:39', 1),
(21730, 23917, 30, 7, 3, 'suggested ctc 18k if she k then finalize', 153, '0000-00-00 00:00:00', 1),
(21731, 23934, 149, 5, 0, 'candidate was not good at communication and also expecting high salary ', 154, '0000-00-00 00:00:00', 1),
(21732, 23934, 149, 5, 0, 'candidate was not good at communication and also expecting high salary ', 154, '0000-00-00 00:00:00', 1),
(21733, 23940, 137, 5, 0, 'candidate only interest in international voice process only and only need calling work , not interest in field work so , not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21734, 23940, 137, 5, 0, 'candidate only interest in international voice process only and only need calling work , not interest in field work so , not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21735, 23942, 105, 7, 0, 'candidate communication and performance is good,but 5050 need to check eith him in the training period.', 154, '0000-00-00 00:00:00', 1),
(21736, 23937, 89, 7, 0, 'candidate ok. good skill. previous work from home IT realated . fresher for sales filed. ', 154, '0000-00-00 00:00:00', 1),
(21737, 23926, 57, 7, 0, 'Candidate is ok , communication good, pls cross check sustainability, sal exp 15k to 18k , fresher negotiate the salary and confirm the joining.thanks', 154, '0000-00-00 00:00:00', 1),
(21738, 23941, 19, 5, 0, 'not willing to work after 6.30PM', 154, '0000-00-00 00:00:00', 1),
(21739, 23938, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21740, 23938, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21741, 23939, 105, 5, 0, 'candidate communication and performance is not good also he not spoken and answered much more in the interview process', 154, '0000-00-00 00:00:00', 1),
(21742, 23774, 137, 7, 0, 'candidate communication and vocie skill good , past exp icici credit card sales , very long distance to quit the job exp salary is 16k so try for 7 days training period ', 154, '0000-00-00 00:00:00', 1),
(21743, 23943, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21744, 23936, 11, 5, 0, 'she wont be suitable for sales ', 154, '0000-00-00 00:00:00', 1),
(21745, 23926, 59, 3, 0, 'Fresher for our roles Communication Ok Can give a try and check in training  period', 57, '2025-02-03 12:46:20', 1),
(21746, 23871, 105, 5, 0, 'candidate not respond', 105, '2025-02-03 12:46:53', 1),
(21747, 23942, 59, 3, 0, 'Communication Ok 5050 Sustainability came along with the friends joining itself doubts if joins let us try in training', 105, '2025-02-03 12:48:02', 1),
(21748, 23919, 147, 5, 0, 'looking for non voice', 154, '0000-00-00 00:00:00', 1),
(21749, 23920, 147, 5, 0, 'not intrested for voice process', 154, '0000-00-00 00:00:00', 1),
(21750, 23932, 147, 5, 0, 'lack of communication', 154, '0000-00-00 00:00:00', 1),
(21751, 23951, 89, 5, 0, 'no basiic skill. and long distance', 154, '0000-00-00 00:00:00', 1),
(21752, 23951, 89, 5, 0, 'no basiic skill. and long distance', 154, '0000-00-00 00:00:00', 1),
(21753, 23741, 137, 5, 0, 'candidate commuication not good and most fales commitment , so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21754, 23948, 149, 5, 0, 'Candidate was basic at communication but cant able to explain her old job process properly and  long distance expecting salary more for fresher', 154, '0000-00-00 00:00:00', 1),
(21755, 23950, 19, 5, 0, 'not even try to speak in interview', 154, '0000-00-00 00:00:00', 1),
(21756, 23949, 149, 5, 0, 'candidate was not so good at communication and also not at all interested and have less confidence', 154, '0000-00-00 00:00:00', 1),
(21757, 23949, 149, 5, 0, 'candidate was not so good at communication and also not at all interested and have less confidence', 154, '0000-00-00 00:00:00', 1),
(21758, 23956, 57, 7, 0, 'candidate is ok, experience sriram life 1.5ys , product is ok, field work also interested.Salary expectation 20k above, negotiate the salary and confirm the joining date, team Reference (madhan)', 154, '0000-00-00 00:00:00', 1),
(21759, 23935, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21760, 23931, 60, 1, 0, NULL, 11, '2025-02-04 12:45:06', 1),
(21761, 23841, 59, 3, 0, 'Communication Ok Can give a try and checkn in our process previously attended candidate offered last time but not joined let us try this time', 29, '2025-02-04 01:17:08', 1),
(21762, 23956, 59, 3, 0, 'Communication Ok Can be trained in our roles internal reference Need to check and confirm', 57, '2025-02-04 04:14:50', 1),
(21763, 23961, 137, 7, 0, 'andidate communication and voice good , currently work EB customer cupport night shift , that reason to relave , exp salary is 15 to 16 k , near by location , so try for 7 days training period', 137, '2025-02-04 04:37:56', 1),
(21764, 23954, 147, 7, 0, 'good communication and totaly fresher salary 15k', 154, '0000-00-00 00:00:00', 1),
(21765, 23959, 147, 5, 0, 'looking for short term work and waiting for UPSC ', 154, '0000-00-00 00:00:00', 1),
(21766, 23929, 147, 5, 0, 'lack of communication', 154, '0000-00-00 00:00:00', 1),
(21767, 23954, 59, 3, 0, 'Communication Ok 5050 for our roles sustainability doubts preparing IT course internal team reference let us see in training', 147, '2025-02-04 06:20:23', 1),
(21768, 23961, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 137, '2025-02-04 07:38:13', 1),
(21769, 23917, 60, 1, 0, NULL, 30, '2025-02-05 10:00:34', 1),
(21770, 23965, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21771, 23964, 102, 5, 0, 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', 153, '0000-00-00 00:00:00', 1),
(21772, 23963, 102, 5, 0, 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', 153, '0000-00-00 00:00:00', 1),
(21773, 23960, 137, 5, 0, 'candidate communication not well , stammering to while speak , and very lacey , not welling to out side call so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21774, 23960, 137, 5, 0, 'candidate communication not well , stammering to while speak , and very lacey , not welling to out side call so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21775, 23966, 102, 5, 0, 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', 153, '0000-00-00 00:00:00', 1),
(21776, 23967, 102, 5, 0, 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', 153, '0000-00-00 00:00:00', 1),
(21777, 23774, 59, 3, 0, 'Communication Ok Fresher for our roles Can give a try and check in training period', 137, '2025-02-05 01:27:30', 1),
(21778, 23968, 149, 5, 0, 'candidate was not  good with communication and also not known about job and  not have confidence', 153, '0000-00-00 00:00:00', 1),
(21779, 23972, 89, 5, 0, 'not intersted telle calling', 153, '0000-00-00 00:00:00', 1),
(21780, 23971, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21781, 23973, 19, 5, 0, 'too Long distance so its not work out and she need early log out', 153, '0000-00-00 00:00:00', 1),
(21782, 23975, 30, 7, 3, 'This candidate already in the month of aug done interview due to personal things again we have shortlisted suggestions 3.6lac try to convince 3.4l', 104, '0000-00-00 00:00:00', 1),
(21783, 23981, 74, 7, 0, 'she is ok with the profile completed bca in 2017 and worked in a data entry and releived married 2021 and have 2 yrs baby....motherlaw take care of his child so no issues.. house near by only husband worked in finance 25k salary..rental house bt provided by company...speak well and check clearly intrested in job...expected 12k.....have laptop...imeediate joining...kindly check once and confirm..will try in training', 154, '0000-00-00 00:00:00', 1),
(21784, 23985, 149, 5, 0, 'candidate was not ok with communication and not having interest at sales ', 153, '0000-00-00 00:00:00', 1),
(21785, 23989, 11, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21786, 23990, 11, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21787, 23977, 149, 5, 0, 'CANDIDATE WAS OK WITH COMMUNICATION BUT NOT OK WITH SALARY AND SHE WAS NOT INTERESTED', 153, '0000-00-00 00:00:00', 1),
(21788, 23992, 74, 7, 0, 'he is ok with the profile father auto driver...he is completed diploma and worked as a medical rep for 3 years 15k salary....due to salary issue releived from the job ....and worked few month in mobile shop and joined in muthood telecalling loan section 4 month taking two day leave company absconded.....have laptop expected 15k..imeediate joining...kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(21789, 23980, 57, 7, 0, 'Candidate is ok, product knowledge good.1yr experience vizza insurance, salary expectation high like 25k something .pls negotiate the salary and confirm the joining date thanks', 154, '0000-00-00 00:00:00', 1),
(21790, 23992, 59, 1, 0, NULL, 74, '2025-02-06 01:50:57', 1),
(21791, 23981, 59, 3, 0, 'Communication OK fresher for our role career gap married 2yrs kid 5050 sustainability doubts let us try and check', 74, '2025-02-06 01:54:33', 1),
(21792, 23982, 19, 5, 0, 'not intrested in sales and not fit for sales also', 153, '0000-00-00 00:00:00', 1),
(21793, 23980, 59, 1, 0, NULL, 57, '2025-02-06 02:58:33', 1),
(21794, 23969, 30, 5, 0, 'high expectation', 154, '0000-00-00 00:00:00', 1),
(21795, 23970, 147, 5, 0, 'language known only telugu', 154, '0000-00-00 00:00:00', 1),
(21796, 23984, 147, 7, 0, 'communication is good  and confident', 154, '0000-00-00 00:00:00', 1),
(21797, 23983, 147, 5, 0, 'communication problem', 154, '0000-00-00 00:00:00', 1),
(21798, 23987, 30, 7, 2, 'Suggested ctc 14 to 15k', 154, '0000-00-00 00:00:00', 1),
(21799, 23991, 30, 5, 0, 'expectation its high', 154, '0000-00-00 00:00:00', 1),
(21800, 23994, 30, 5, 0, 'expectation its very high', 154, '0000-00-00 00:00:00', 1),
(21801, 24004, 89, 5, 0, 'not fit for the job. very silent person and no other skills', 153, '0000-00-00 00:00:00', 1),
(21802, 24005, 102, 5, 0, 'Candidate communication is good but existing working customer support so, his look like same customer support ', 153, '0000-00-00 00:00:00', 1),
(21803, 24003, 109, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21804, 24006, 109, 5, 0, 'Not suitable for sales team', 153, '0000-00-00 00:00:00', 1),
(21805, 24008, 74, 5, 0, 'not suite for team', 153, '0000-00-00 00:00:00', 1),
(21806, 24010, 74, 5, 0, 'not suite for telecalling..have no hope in telecalling', 153, '0000-00-00 00:00:00', 1),
(21807, 23995, 102, 5, 0, 'Candidate communication is good but location in periyapaniyur its long distance so, sustainability doubt and then her is interested in IT ', 153, '0000-00-00 00:00:00', 1),
(21808, 23984, 59, 1, 0, NULL, 147, '2025-02-07 12:38:03', 1),
(21809, 24011, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21810, 24012, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21811, 24013, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21812, 24014, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21813, 24015, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21814, 24016, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21815, 24017, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21816, 24018, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21817, 24028, 147, 5, 0, 'lack of communication', 154, '0000-00-00 00:00:00', 1),
(21818, 23975, 60, 1, 0, NULL, 30, '2025-02-08 07:10:15', 1),
(21819, 23579, 60, 1, 0, NULL, 30, '2025-02-08 07:12:04', 1),
(21820, 23987, 60, 1, 0, NULL, 30, '2025-02-08 07:13:28', 1),
(21821, 24032, 74, 5, 0, 'Not Fit for telecalling ', 153, '0000-00-00 00:00:00', 1),
(21822, 24034, 57, 5, 0, 'Candidate is unfit for sales profile, communication not good, Appearance not good, reject the profile', 153, '0000-00-00 00:00:00', 1),
(21823, 24037, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21824, 24033, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21825, 24033, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21826, 23993, 19, 5, 0, 'not fit for sales and he is not willing in out side work', 153, '0000-00-00 00:00:00', 1),
(21827, 24039, 19, 7, 0, 'Already having exp arun kindly speak with employee then wee will confirm', 153, '0000-00-00 00:00:00', 1),
(21828, 24023, 149, 7, 0, 'CANDIDATE COMMUNICATION WAS GOOD AND ALSO INTERESTED IN SALES  AND OK FOR IMMEDIATE JOINING WE SHALL PROVIDE 15K AS SALARY', 153, '0000-00-00 00:00:00', 1),
(21829, 24023, 149, 7, 0, 'CANDIDATE COMMUNICATION WAS GOOD AND ALSO INTERESTED IN SALES  AND OK FOR IMMEDIATE JOINING WE SHALL PROVIDE 15K AS SALARY', 153, '0000-00-00 00:00:00', 1),
(21830, 24045, 74, 5, 0, 'Not performing well....expected high in fresher....have no clarity in voice and preferred data entry...', 153, '0000-00-00 00:00:00', 1),
(21831, 24044, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21832, 24043, 138, 4, 0, 'Good Communication skills , hardworker , accountability , sales skills are good and attitude is fine finally he is fit to sales ', 153, '0000-00-00 00:00:00', 1),
(21833, 24042, 19, 7, 0, 'Lets try 7 days then we will confirm fresher salary', 153, '0000-00-00 00:00:00', 1),
(21834, 24042, 19, 7, 0, 'Lets try 7 days then we will confirm fresher salary', 153, '0000-00-00 00:00:00', 1),
(21835, 24048, 138, 5, 0, 'Good English communication skills but attitude and maturity not good he needs so much experience sales so not convinced this profile', 153, '0000-00-00 00:00:00', 1),
(21836, 11638, 19, 5, 0, 'not worth of his asking salary', 153, '0000-00-00 00:00:00', 1),
(21837, 11638, 19, 5, 0, 'not worth of his asking salary', 153, '0000-00-00 00:00:00', 1),
(21838, 23913, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21839, 23913, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21840, 23913, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21841, 24041, 137, 7, 0, 'candidate communication and voice good but he only 12th pass and past 6 month work from bpo for sharemarket work only in intership, currently palavaram , exp salary is 15k , so try for 7 days training period', 153, '0000-00-00 00:00:00', 1),
(21842, 24041, 59, 3, 0, 'communication Ok fresher for our roles 12th graduate can give a try and check in training period\n', 137, '2025-02-10 05:41:23', 1),
(21843, 24051, 147, 5, 0, 'communication problem', 154, '0000-00-00 00:00:00', 1),
(21844, 24053, 147, 5, 0, 'communication problem', 154, '0000-00-00 00:00:00', 1),
(21845, 24052, 147, 5, 0, 'kannada not known', 154, '0000-00-00 00:00:00', 1),
(21846, 24057, 140, 4, 0, 'Gaurav sir has to finalise', 154, '0000-00-00 00:00:00', 1),
(21847, 24042, 59, 1, 0, NULL, 19, '2025-02-11 12:02:53', 1),
(21848, 24058, 57, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21849, 24058, 57, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21850, 24059, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21851, 24062, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21852, 23937, 59, 1, 0, NULL, 89, '2025-02-11 01:15:03', 1),
(21853, 24031, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21854, 24031, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21855, 24039, 59, 1, 0, NULL, 19, '2025-02-11 04:34:43', 1),
(21856, 24064, 74, 5, 0, 'not fit for telesales and team', 153, '0000-00-00 00:00:00', 1),
(21857, 24074, 149, 5, 0, 'candidate was not good at communication and also less in interested in sales', 154, '0000-00-00 00:00:00', 1),
(21858, 24072, 74, 7, 0, 'he is ok with the profile completed bE and worked in excela tech for past 2 and half years....due to salary issue releived from the job currently expecting sales profile...speaked well and have some knowledge about job...father saree sales....mother home maker...brother worked in industry sector,,,,expected 15k have laptop and imeediate joining.....kindly check once and confirm ', 154, '0000-00-00 00:00:00', 1),
(21859, 24047, 105, 7, 0, 'Candidate Communication And performance is good,also have some experience in tele calling,but expected CTC As 2.04LPA.', 154, '0000-00-00 00:00:00', 1),
(21860, 24047, 59, 3, 0, 'Communication Ok Need to be trained in our roles check in training and confirm', 105, '2025-02-12 12:19:12', 1),
(21861, 24054, 147, 5, 0, 'looking for IT', 154, '0000-00-00 00:00:00', 1),
(21862, 24072, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 74, '2025-02-12 12:25:29', 1),
(21863, 24023, 59, 1, 0, NULL, 149, '2025-02-12 12:33:14', 1),
(21864, 24066, 57, 7, 0, 'Candidate is ok, fresher interested in sales, pls check sustainability and confirm the joining', 153, '0000-00-00 00:00:00', 1),
(21865, 24066, 57, 7, 0, 'Candidate is ok, fresher interested in sales, pls check sustainability and confirm the joining', 153, '0000-00-00 00:00:00', 1),
(21866, 23600, 30, 7, 3, 'confirm the joining cross check the previous pays', 154, '0000-00-00 00:00:00', 1),
(21867, 24066, 59, 3, 0, 'Communication Ok Can give a try and check in training fresher for our roles', 57, '2025-02-12 04:06:57', 1),
(21868, 24078, 109, 5, 0, 'Communication not good', 153, '0000-00-00 00:00:00', 1),
(21869, 24078, 109, 5, 0, 'Communication not good', 153, '0000-00-00 00:00:00', 1),
(21870, 24086, 74, 7, 0, 'she is ok with the profile completed mba in marketing in trichy....father farmer ,,,having rental house and rental shop, monthly 60 to 70k income,,,,sister studied.....join family...home near by 1 km,,,,,,have bike....speaked well and have exposure in job,,,,have laptop ...expected 13k to 15k...join monday...kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(21871, 24076, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21872, 24089, 74, 5, 0, 'not fit for job intrested in business only', 153, '0000-00-00 00:00:00', 1),
(21873, 24087, 149, 5, 0, 'candidate was ok with communication but long distance and will join at month end and so not sure about his job need', 153, '0000-00-00 00:00:00', 1),
(21874, 24090, 74, 5, 0, 'not performing well and not fit', 153, '0000-00-00 00:00:00', 1),
(21875, 24091, 11, 4, 0, 'kannan team', 154, '0000-00-00 00:00:00', 1),
(21876, 24093, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21877, 24093, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21878, 24088, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(21879, 24094, 109, 5, 0, 'Not suitable for our team', 153, '0000-00-00 00:00:00', 1),
(21880, 24094, 109, 5, 0, 'Not suitable for our team', 153, '0000-00-00 00:00:00', 1),
(21881, 24095, 109, 5, 0, 'Not suitbale', 153, '0000-00-00 00:00:00', 1),
(21882, 24095, 109, 5, 0, 'Not suitbale', 153, '0000-00-00 00:00:00', 1),
(21883, 24095, 109, 5, 0, 'Not suitbale', 153, '0000-00-00 00:00:00', 1),
(21884, 24097, 109, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21885, 24098, 138, 4, 0, 'Good Communication skills and Sales knowledge is fine and Good attitude but facing the objection is little bit struggle so ok to sales profile but need to negotiate the salary', 153, '0000-00-00 00:00:00', 1),
(21886, 24043, 18, 4, 0, 'Put Remarks', 138, '2025-02-13 12:17:18', 1),
(21887, 24086, 59, 3, 0, 'Communication Ok  fresher for our insurance sales need to check in training and confirm', 74, '2025-02-13 12:32:48', 1),
(21888, 24098, 18, 7, 0, 'Selected for Jagadeesh Team. Immedeate Joiner Expected Salary is 30K but can negotiate her last CTC 24k as she is having a gap', 138, '2025-02-13 12:47:18', 1),
(21889, 24100, 105, 7, 0, 'Candidate Communication And performance is good,then she have 1 and Half yrs experience in telesales process.Also her Distance is long.she expected 1.82 LPA.but ixquotll conveyed 15k to 16k', 153, '0000-00-00 00:00:00', 1),
(21890, 24100, 59, 3, 0, 'Communication Ok have exp in calling can give a try and check in training ', 105, '2025-02-13 03:04:33', 1),
(21891, 24103, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21892, 24104, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21893, 24102, 109, 2, 0, 'Currently doing internship', 153, '0000-00-00 00:00:00', 1),
(21894, 14336, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21895, 24057, 29, 1, 0, NULL, 140, '2025-02-13 04:03:00', 1),
(21896, 24091, 19, 7, 0, 'lets try 7 days ctc as per office rules\n', 11, '2025-02-13 06:18:06', 1),
(21897, 24085, 30, 5, 0, 'hidg expectation salary', 154, '0000-00-00 00:00:00', 1),
(21898, 23600, 60, 1, 0, NULL, 30, '2025-02-14 10:18:33', 1),
(21899, 24107, 137, 7, 0, 'candidate communication and vocie good , past exp for other work so try for 7 days training period exp salary 15 to 16k ', 153, '0000-00-00 00:00:00', 1),
(21900, 24112, 19, 5, 0, 'not fit for sales and dress was not good', 104, '0000-00-00 00:00:00', 1),
(21901, 24111, 105, 5, 0, 'Candidate Communication And Performance not much more,then she is very slow,also she need customer support process only ', 153, '0000-00-00 00:00:00', 1),
(21902, 24109, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21903, 24113, 89, 5, 0, 'previous loan collection job. not fit for the job . health issues', 153, '0000-00-00 00:00:00', 1),
(21904, 24114, 89, 5, 0, 'previuos loan collection job work. no basic skill . ', 153, '0000-00-00 00:00:00', 1),
(21905, 24118, 74, 5, 0, 'no fit for telesales', 104, '0000-00-00 00:00:00', 1),
(21906, 24119, 137, 5, 0, 'candidate commuication is very low and very soft and sencitive type so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(21907, 24117, 140, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21908, 24107, 59, 3, 0, 'Communication ok fresher for our roles but exp in different companies reference try in training', 137, '2025-02-15 12:32:46', 1),
(21909, 24116, 105, 7, 0, 'Candidate Communication And performance is little bit good.5050 profile as discussed CTC As 14k pm', 153, '0000-00-00 00:00:00', 1),
(21910, 24116, 105, 7, 0, 'Candidate Communication And performance is little bit good.5050 profile as discussed CTC As 14k pm', 153, '0000-00-00 00:00:00', 1),
(21911, 24121, 74, 7, 0, 'he is ok with the profile completed mca ...in uG doing 1 years studio job,,,,and doing pg....and worked in local finance job collection.....father passed....mother doing farming...5 children ...first one driver second one in thirupur...third one in IT JOB salary 60k.....2 sisters married....wanted banking related office job....expected 15k....1 hr travel from office to home...orathanadu native have bike...and laptop....he wants to discusss with IT brother and confirm joiningg....kindly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(21912, 24121, 59, 1, 0, NULL, 74, '2025-02-15 02:33:28', 1),
(21913, 24125, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21914, 24091, 59, 3, 0, 'Communication Ok  have exp in customer support and inbound calls can give a try and check in training', 19, '2025-02-15 05:38:00', 1),
(21915, 24098, 60, 1, 0, NULL, 18, '2025-02-15 06:30:18', 1),
(21916, 24043, 152, 7, 3, 'Selected for jagadeesh team, candidate okay for immediate joining with 2.5lac CTC\n', 18, '2025-02-15 06:31:02', 1),
(21917, 24043, 59, 3, 0, 'Communication Good Can be trained in our role have exp documents verified need to check and confirm in training', 152, '2025-02-15 07:48:28', 1),
(21918, 24128, 59, 3, 0, 'Rejoining  Our Old employees in Operation good Profile', 60, '0000-00-00 00:00:00', 1),
(21919, 24133, 149, 5, 0, 'candidate was not good at communication and he was interested in IT and not sure about is stability', 104, '0000-00-00 00:00:00', 1),
(21920, 24137, 74, 5, 0, 'not suite for sales', 154, '0000-00-00 00:00:00', 1),
(21921, 24135, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 104, '0000-00-00 00:00:00', 1),
(21922, 24135, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 104, '0000-00-00 00:00:00', 1),
(21923, 24138, 74, 5, 0, 'not fit for telesales', 154, '0000-00-00 00:00:00', 1),
(21924, 24140, 109, 5, 0, 'Not suitable', 153, '0000-00-00 00:00:00', 1),
(21925, 24141, 109, 5, 0, 'not suitable', 153, '0000-00-00 00:00:00', 1),
(21926, 24142, 109, 5, 0, 'Not suitable', 153, '0000-00-00 00:00:00', 1),
(21927, 24143, 109, 5, 0, 'Not suitable', 153, '0000-00-00 00:00:00', 1),
(21928, 24136, 105, 7, 0, 'Candidate Communication And performance is good . little bit attitude will check with him in the training Period', 153, '0000-00-00 00:00:00', 1),
(21929, 24152, 89, 5, 0, 'no basic skill, alredy atan 5 interviews', 153, '0000-00-00 00:00:00', 1),
(21930, 24115, 147, 7, 0, 'good communication  salary expectation 16k', 154, '0000-00-00 00:00:00', 1),
(21931, 24148, 147, 7, 0, 'experience in axis  credit card\nas a telle caller salary 17k', 154, '0000-00-00 00:00:00', 1),
(21932, 24151, 30, 7, 3, 'Confirm the joining and suggested ctc 20k', 154, '0000-00-00 00:00:00', 1),
(21933, 24115, 59, 1, 0, NULL, 147, '2025-02-17 06:15:02', 1),
(21934, 24148, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 147, '2025-02-17 06:19:06', 1),
(21935, 24131, 138, 5, 0, 'Limited Technical Expertise and Lack of Problem Solving Abilities then candidate lacked knowledge about the company and role Negative Attitude so not to fit sales department', 154, '0000-00-00 00:00:00', 1),
(21936, 24147, 138, 4, 0, 'Good English communication ,Attitude good but Sales knowledge is average otherswise everything is fine so selected next round', 153, '0000-00-00 00:00:00', 1),
(21937, 24147, 18, 7, 3, 'Selected for Self team. Ready to Join next week monday. Asking 27k Per Month as take home. Can give as he is a good candidade and try to negotiate', 138, '2025-02-18 11:29:55', 1),
(21938, 24159, 149, 7, 0, 'candidate was having good communication and also interested in sales and ok for immediate joining ', 153, '0000-00-00 00:00:00', 1),
(21939, 24146, 89, 5, 0, 'not intersted voice process', 153, '0000-00-00 00:00:00', 1),
(21940, 24162, 105, 7, 0, 'Candidate Communication And Performance little bit good but 5050 profile will check with her in the training Period ', 153, '0000-00-00 00:00:00', 1),
(21941, 24116, 59, 3, 0, 'Communication Ok State Kabadi player max 1yr will travel Previous 6 months exp documents verified need to check in training and confirm', 105, '2025-02-18 01:07:25', 1),
(21942, 24136, 59, 1, 0, NULL, 105, '2025-02-18 01:09:25', 1),
(21943, 24156, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21944, 24127, 19, 7, 0, 'ctc 16k Once he came for joining he should maintain dress code and hair style ', 153, '0000-00-00 00:00:00', 1),
(21945, 24159, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm Seems to learn in this profile', 149, '2025-02-18 01:31:45', 1),
(21946, 24147, 60, 1, 0, NULL, 18, '2025-02-18 01:44:37', 1),
(21947, 24154, 19, 7, 0, 'job needed person lets try 7 days then we will confirm ', 153, '0000-00-00 00:00:00', 1),
(21948, 24164, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21949, 24158, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21950, 24163, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21951, 24160, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21952, 24127, 59, 3, 0, 'Communication Ok Have few months exp in calling fresher for our roles need to check in training', 19, '2025-02-18 03:03:51', 1),
(21953, 24154, 59, 3, 0, 'Fresher Last 2022 he appeared and got rejected Now Can give a try and check in training ', 19, '2025-02-18 03:04:33', 1),
(21954, 24065, 74, 5, 0, 'Not Fit For telesales', 104, '0000-00-00 00:00:00', 1),
(21955, 24179, 74, 5, 0, 'Not suite for team', 104, '0000-00-00 00:00:00', 1),
(21956, 24183, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(21957, 24182, 149, 7, 0, 'candidate was having good communication and interested in sales and also ok for immediate joining', 153, '0000-00-00 00:00:00', 1),
(21958, 24186, 109, 5, 0, 'Not suitable for sales team', 153, '0000-00-00 00:00:00', 1),
(21959, 24168, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21960, 24178, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21961, 24188, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21962, 24151, 60, 1, 0, NULL, 30, '2025-02-19 03:35:21', 1),
(21963, 24162, 59, 3, 0, 'Communication Ok have calling exp can give and try in our training period', 105, '2025-02-19 07:16:35', 1),
(21964, 24184, 30, 7, 3, 'ex employee of cafs in E sales team cross check with sustainity suggested ctc 17k for dm', 154, '0000-00-00 00:00:00', 1),
(21965, 24185, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21966, 24195, 57, 7, 0, 'candidate is ok, communication good, he interested. date of exp may end, bcz examination,thanks', 154, '0000-00-00 00:00:00', 1),
(21967, 24201, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21968, 24192, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21969, 24196, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21970, 24200, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21971, 24202, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21972, 23575, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21973, 24205, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21974, 24203, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21975, 24206, 57, 7, 0, 'Candidate is ok, communication good, fresher. confirm the salary and joining too', 154, '0000-00-00 00:00:00', 1),
(21976, 24195, 59, 1, 0, NULL, 57, '2025-02-20 03:07:45', 1),
(21977, 24206, 59, 3, 0, 'Communication Ok Fresher seems to be doubtful in a long run can give a try and check  in training ', 57, '2025-02-20 03:10:19', 1),
(21978, 24212, 57, 7, 0, 'Candidate is ok, communication average, over all 2 yrs experience, last company 5 month abscond bcz salary issues ,exp 19k , already she have 2 offers yet to confirmation, pls cross check and confirm the salary and joining too', 154, '0000-00-00 00:00:00', 1),
(21979, 24212, 59, 3, 0, 'Communication Ok Sustainability doubts a lot in this profile need to check in training and confirm', 57, '2025-02-20 05:02:37', 1),
(21980, 24216, 74, 5, 0, 'not suite for team', 104, '0000-00-00 00:00:00', 1),
(21981, 24213, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21982, 24214, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(21983, 24215, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21984, 24219, 149, 7, 0, 'candidate was having good communication and interested in sales and ok with immediate joining', 104, '0000-00-00 00:00:00', 1),
(21985, 24211, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21986, 24217, 30, 7, 4, 'cOMMUNICATION GOOD , SELECTED FOR DM SUGGESTED CTC 15K IMMEDIATE JOINING', 154, '0000-00-00 00:00:00', 1),
(21987, 24222, 89, 7, 0, 'already experience at health insurance . good skill . i suggest 17 k ', 153, '0000-00-00 00:00:00', 1),
(21988, 24221, 89, 5, 0, 'long ditance and no basic skill', 153, '0000-00-00 00:00:00', 1),
(21989, 24220, 105, 2, 0, 'candidate communication and performance is ok ,but he said he will join after college completion 5050.', 153, '0000-00-00 00:00:00', 1),
(21990, 24222, 59, 3, 0, 'Communication Ok have calling exp can give and check in training period ', 89, '2025-02-21 02:54:24', 1),
(21991, 24224, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21992, 24226, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21993, 24229, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21994, 24235, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21995, 24236, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21996, 24240, 74, 7, 0, 'she is ok with the propfile completed mba.......father paintting conract....pattukottai native ....renal house...brother work in gem hospial cashier...she is already worked in store keeper aravind hospial chennai....1 yr race preparation....curently work in hero store keeper...9k salary...join imeediately...expected 13k ready to arrange laptop...kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(21997, 24240, 59, 3, 0, 'Communication ok can be trained in our roles and need to check and confirm', 74, '2025-02-22 12:23:35', 1),
(21998, 24239, 140, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21999, 24238, 57, 7, 0, 'Candidate is ok, communication is average , 1yr experience csc field.settled family, just she came for chennai explore with friends, just try 7days training process, confirm the joining date and salary', 104, '0000-00-00 00:00:00', 1),
(22000, 24237, 149, 7, 0, 'candidate was good at communication and also interested in sales ,she will join after wed have experience related to sales                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ', 104, '0000-00-00 00:00:00', 1),
(22001, 24242, 57, 7, 0, 'candidate is ok, communication good, she exp salary above 18k but she is fresher, so kindly confirm the salary xxamp joining date, kindly cross check she interested in AI HTML ', 104, '0000-00-00 00:00:00', 1),
(22002, 24241, 147, 4, 0, 'communication is very good and did 2 internships  salary expectation 17k ', 154, '0000-00-00 00:00:00', 1),
(22003, 24231, 140, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(22004, 24243, 147, 4, 0, 'experienced in collection department has a bike with him salary expectation 16k', 154, '0000-00-00 00:00:00', 1),
(22005, 24241, 59, 1, 0, NULL, 147, '2025-02-22 01:31:09', 1),
(22006, 24243, 59, 3, 0, 'Fresher for our role can be trained need to check in training and confirm', 147, '2025-02-22 01:32:32', 1),
(22007, 24244, 140, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22008, 24245, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22009, 24238, 59, 1, 0, NULL, 57, '2025-02-22 03:06:02', 1),
(22010, 24242, 59, 1, 0, NULL, 57, '2025-02-22 03:07:21', 1),
(22011, 24237, 59, 1, 0, NULL, 149, '2025-02-22 06:15:18', 1),
(22012, 24249, 74, 5, 0, 'not fit for team and sales', 154, '0000-00-00 00:00:00', 1),
(22013, 24253, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22014, 24254, 109, 5, 0, 'Already attend interview and joined he left at the joining date, while working in previous company he gave this try', 154, '0000-00-00 00:00:00', 1),
(22015, 24250, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22016, 24258, 149, 7, 0, 'communication was good and interest in sales and we shall try for 7 days training period', 153, '0000-00-00 00:00:00', 1),
(22017, 24252, 109, 5, 0, 'Not suitable', 154, '0000-00-00 00:00:00', 1),
(22018, 24232, 105, 7, 0, 'candidate communication and performacne is good,but long distance ,will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(22019, 24259, 89, 5, 0, 'long distance', 154, '0000-00-00 00:00:00', 1),
(22020, 24070, 105, 7, 0, 'candidate communication and performacne is good,but 5050 doubt ,will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(22021, 24264, 109, 5, 0, 'Not suitable for sales team', 153, '0000-00-00 00:00:00', 1),
(22022, 24262, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22023, 24126, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22024, 24261, 89, 5, 0, 'no basic skill', 153, '0000-00-00 00:00:00', 1),
(22025, 24263, 109, 5, 0, 'Not suitable for sales team', 153, '0000-00-00 00:00:00', 1),
(22026, 24232, 59, 3, 0, 'Communication Ok Fresher for our roles need to train from sctrach can give a try and check in training', 105, '2025-02-24 03:11:45', 1),
(22027, 24070, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 105, '2025-02-24 03:12:56', 1),
(22028, 24266, 109, 5, 0, 'Not suitable for sales team', 104, '0000-00-00 00:00:00', 1),
(22029, 24267, 140, 4, 0, 'Gaurav has to decide', 154, '0000-00-00 00:00:00', 1),
(22030, 24267, 29, 7, 3, 'porrselvan team, have given incre if completed the said number, refer resume, or arun pls update in system', 140, '2025-02-24 05:34:28', 1),
(22031, 24275, 74, 5, 0, 'not suite for team', 104, '0000-00-00 00:00:00', 1),
(22032, 24268, 149, 7, 0, 'candidate was good at communication and he  was interested in sales and will join by next month start ', 153, '0000-00-00 00:00:00', 1),
(22033, 24272, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22034, 24272, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22035, 24270, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22036, 24260, 149, 7, 0, 'CANDIDATE WAS GOOD AT COMMUNICATION AND INTERESTED IN SALES HAVE WORK EXPERIENCE AND ALSO HAVE BIKE HE TOLD HE WILL JOIN BY NXT MONTH START  WILL PROVIDE  17K AS SALARY', 153, '0000-00-00 00:00:00', 1),
(22037, 24273, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22038, 24279, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22039, 24274, 109, 5, 0, 'He was thinking about the sales pressure', 153, '0000-00-00 00:00:00', 1),
(22040, 24281, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22041, 24283, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22042, 24271, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22043, 24260, 59, 3, 0, 'Communication Ok Can give a try and check in training period ', 149, '2025-02-25 03:23:02', 1),
(22044, 24268, 59, 3, 0, 'Communication Ok Career Gap need to train from scratch can give a try and check in training', 149, '2025-02-25 03:27:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(22045, 24284, 138, 4, 0, 'Experience in sales and good communicatin skills and calm attitude mathematics skills fine over all hardworker so selected next round', 154, '0000-00-00 00:00:00', 1),
(22046, 24284, 18, 8, 0, 'reschedule', 138, '2025-02-25 05:07:25', 1),
(22047, 24285, 57, 7, 0, 'candidate is ok, 1.5yrs exp, communication is ok, pls cross check, kindly confirm the joining date xxamp salary', 153, '0000-00-00 00:00:00', 1),
(22048, 24289, 109, 5, 0, 'He will not suitable for sales, he pursuing IT course', 153, '0000-00-00 00:00:00', 1),
(22049, 24290, 109, 5, 0, 'He will not suitable for sales, he pursuing IT course', 153, '0000-00-00 00:00:00', 1),
(22050, 24293, 105, 5, 0, 'candidate communication and performance is little bit good.but he very slow and voice is very  low.sustainable is doubt', 153, '0000-00-00 00:00:00', 1),
(22051, 24294, 149, 5, 0, 'CANDIDATE WAS NOT CONFIDENT IN COMMUNICATION AND STABILITY WAS NOT SURE', 153, '0000-00-00 00:00:00', 1),
(22052, 24301, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22053, 24300, 137, 7, 0, 'candidate communication and vocie good , past mobile insurance workin, timing reason to relaving so try for 7 days training period, and exp salary for 15 to 16k', 153, '0000-00-00 00:00:00', 1),
(22054, 24295, 109, 5, 0, 'He wil not willing to take calls in own mobile', 153, '0000-00-00 00:00:00', 1),
(22055, 24292, 138, 5, 0, 'The candidate struggled to effectively convey their thoughts and ideas during the interview and candidatexquots technical knowledge fell short of the requirements for the position so i decided final status is rejected', 153, '0000-00-00 00:00:00', 1),
(22056, 22015, 109, 5, 0, 'Had Good Communication but  due to college timings and project date she canxquott join', 109, '2025-02-26 03:45:16', 1),
(22057, 22650, 109, 5, 0, 'will not suit for Recruiter communication is not good', 109, '2025-02-26 03:45:42', 1),
(22058, 24296, 147, 4, 0, 'very  good communication , currently serving notice period of 30 days  and salary in hand 17k', 104, '0000-00-00 00:00:00', 1),
(22059, 24285, 59, 3, 0, 'Communication Ok 5050 profile career gap due to accident can be trained in our roles and check in training', 57, '2025-02-26 04:14:49', 1),
(22060, 24267, 59, 3, 0, 'Communication Ok Previous attended and hold due to position hold now we have processed to the Porrselvam team', 29, '2025-02-26 06:02:21', 1),
(22061, 24296, 59, 3, 0, 'Communication Ok fresher for our roles  can be trained in our roles need to check and confirm\n', 147, '2025-02-26 08:27:25', 1),
(22062, 24182, 59, 1, 0, NULL, 149, '2025-02-27 11:57:27', 1),
(22063, 24308, 149, 5, 0, 'cANDIDATE  WAS NOT GOOD AT COMMUNICATION AND NOT ABLE TO EXPLAIN THEIR EXISTING WORK PROCESS AND PLAN NOT SUITABLE', 153, '0000-00-00 00:00:00', 1),
(22064, 24307, 149, 5, 0, 'candidate communication was  not good and not even know their company process and work properly and not sure about stability', 153, '0000-00-00 00:00:00', 1),
(22065, 24280, 147, 5, 0, 'communication problem fresher 23k', 154, '0000-00-00 00:00:00', 1),
(22066, 24282, 147, 5, 0, 'communication problem', 154, '0000-00-00 00:00:00', 1),
(22067, 24297, 147, 5, 0, 'kannada not known', 154, '0000-00-00 00:00:00', 1),
(22068, 24310, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22069, 24311, 89, 7, 0, 'Average skill . if trained, she will improve. freshers salary i suggest.', 153, '0000-00-00 00:00:00', 1),
(22070, 24304, 138, 5, 0, 'Poor Communication Skills and  Limited Technical Expertise...Lack of Problem-Solving Abilities and finally Unprepared and Disorganized so not fit for sales', 153, '0000-00-00 00:00:00', 1),
(22071, 24312, 105, 7, 0, 'candidate communication and performance is good ,but her distance is long will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(22072, 24299, 57, 7, 0, 'Candidate is unfit for sales profile, she looking banking process related, reject the profile', 154, '0000-00-00 00:00:00', 1),
(22073, 24302, 149, 7, 0, 'communication was good and have interest in sales and also ok for immediate joining we shall give 15-16k as salary', 154, '0000-00-00 00:00:00', 1),
(22074, 24299, 59, 1, 0, NULL, 57, '2025-02-27 04:40:14', 1),
(22075, 24306, 147, 5, 0, 'salary expectation 17k  in hand and  do not have previous company payslips or relevant documents', 154, '0000-00-00 00:00:00', 1),
(22076, 24305, 147, 5, 0, 'communication problem', 154, '0000-00-00 00:00:00', 1),
(22077, 24321, 74, 5, 0, 'not suite for team', 154, '0000-00-00 00:00:00', 1),
(22078, 24322, 74, 5, 0, 'unfit for team', 154, '0000-00-00 00:00:00', 1),
(22079, 24314, 57, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22080, 24313, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22081, 24320, 109, 5, 0, 'Not suitable for sales team', 153, '0000-00-00 00:00:00', 1),
(22082, 23746, 140, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22083, 24309, 109, 5, 0, 'Not suitable for sales team', 153, '0000-00-00 00:00:00', 1),
(22084, 24324, 30, 5, 1, 'dUE TO COMMUNICATION AND SKILLS', 104, '0000-00-00 00:00:00', 1),
(22085, 24217, 60, 1, 0, NULL, 30, '2025-02-28 01:00:14', 1),
(22086, 24330, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22087, 24318, 149, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22088, 24332, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22089, 24333, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22090, 24302, 59, 1, 0, NULL, 149, '2025-02-28 06:16:03', 1),
(22091, 24258, 59, 1, 0, NULL, 149, '2025-02-28 06:18:10', 1),
(22092, 24312, 59, 3, 0, 'Communication Ok Fresher for our roles career gap due to personal family issues need to check in training and confirm', 105, '2025-02-28 06:25:21', 1),
(22093, 24311, 59, 3, 0, 'Communication Ok Can be trained in our roles fresher should check in training and confirm', 89, '2025-02-28 06:37:13', 1),
(22094, 24339, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22095, 24338, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22096, 24343, 19, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22097, 24336, 149, 5, 0, 'candidate was not good at interview and not interested in sales   and  not suitable for our work', 154, '0000-00-00 00:00:00', 1),
(22098, 24349, 59, 3, 0, 'Rejoining Candidate Proper Relieving and joining again due to course delay ', 60, '0000-00-00 00:00:00', 1),
(22099, 24300, 59, 1, 0, NULL, 137, '2025-03-03 10:34:02', 1),
(22100, 24340, 57, 5, 0, 'Candidate is not suitable for sales profile, Lazy character, communication not good, reject the profile', 153, '0000-00-00 00:00:00', 1),
(22101, 24352, 57, 7, 0, 'Candidate is  ok, communication good, 3 yrs experience, confirm joining date thanks', 153, '0000-00-00 00:00:00', 1),
(22102, 24353, 140, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22103, 24337, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22104, 24352, 59, 3, 0, 'Communication Ok Have exp in calling but not a sustainable one need to check in the training period and confirm', 57, '2025-03-03 03:22:52', 1),
(22105, 24355, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22106, 24357, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22107, 24341, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22108, 24354, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22109, 24365, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(22110, 24351, 30, 7, 3, 'selected for rm immediate joining ctc suggested 23k', 104, '0000-00-00 00:00:00', 1),
(22111, 24364, 140, 4, 0, 'Selected', 153, '0000-00-00 00:00:00', 1),
(22112, 24359, 140, 4, 0, 'Selected', 153, '0000-00-00 00:00:00', 1),
(22113, 24368, 105, 5, 0, 'candidate communication is little bit ok but his performance is not good also he have some health problem,then is is not ready to go outside calls', 153, '0000-00-00 00:00:00', 1),
(22114, 24369, 89, 5, 0, 'no basic skills', 153, '0000-00-00 00:00:00', 1),
(22115, 24351, 59, 3, 0, 'Communication Ok have exp in calling bbut nt insurance domain can be trained in ourrole and check', 30, '2025-03-04 12:39:29', 1),
(22116, 24184, 59, 1, 0, NULL, 30, '2025-03-04 12:41:11', 1),
(22117, 23082, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22118, 24372, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22119, 24367, 30, 7, 3, 'SELECTED FOR MUTUAL FUND RE SUGGESTED 23K \n', 154, '0000-00-00 00:00:00', 1),
(22120, 24345, 147, 5, 0, 'rejected low communication and no confidence', 154, '0000-00-00 00:00:00', 1),
(22121, 24344, 147, 5, 0, 'communication problem', 154, '0000-00-00 00:00:00', 1),
(22122, 24361, 105, 5, 0, 'CANDIDATE COMMUNICATION AND PERFORMANCE IS NOT GOOD ALSO HER SUSTIANABLE IS DOUBT AND HER VOICE IS VERY LOW', 154, '0000-00-00 00:00:00', 1),
(22123, 24382, 139, 5, 0, 'Not fit for RM role\nand FSC ', 153, '0000-00-00 00:00:00', 1),
(22124, 24377, 74, 7, 0, 'he is ok with the profile completed bsc maths and joined in a manufacturing company with 3 months experience and ready to join mba due to scholarship issue not joined and came to native work in a trust with 8k salary due to slary issue joined in allcec with 13k salary...now he is preparing sbi clearical post....and attend exam,,,,currently expected job in native...1 and have hour travel in train....expected 14k...imeedaite joining..have laptop kindly check and confirm', 153, '0000-00-00 00:00:00', 1),
(22125, 24384, 57, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22126, 24383, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22127, 24381, 74, 5, 0, 'not fit for telecalling', 154, '0000-00-00 00:00:00', 1),
(22128, 24387, 149, 5, 0, 'candidate was not good at communication and did not know about plan details and not sure about her stability', 153, '0000-00-00 00:00:00', 1),
(22129, 24386, 149, 5, 0, 'candidate was experienced but did not know about the product and have doubt about stability', 153, '0000-00-00 00:00:00', 1),
(22130, 24390, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22131, 24392, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22132, 24389, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22133, 24395, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22134, 24403, 59, 5, 0, 'Given several false reasons for the gap not much serious to the job however thought of giving a try in the next round but he left without attending', 153, '0000-00-00 00:00:00', 1),
(22135, 24377, 59, 3, 0, 'Communication Ok Fresher for our roles have exp but not a sustainable can give a try and check in trainig\n\n', 74, '2025-03-07 03:39:51', 1),
(22136, 24219, 59, 1, 0, NULL, 149, '2025-03-07 06:35:50', 1),
(22137, 24407, 89, 7, 0, 'good skill. will analyis training days', 154, '0000-00-00 00:00:00', 1),
(22138, 24407, 89, 7, 0, 'good skill. will analyis training days', 154, '0000-00-00 00:00:00', 1),
(22139, 24406, 11, 4, 0, 'committed 24K gross\n20k Net ...gaurav sir decided ', 154, '0000-00-00 00:00:00', 1),
(22140, 24385, 149, 7, 0, 'candidate was ok with communication and interested in sales  ', 154, '0000-00-00 00:00:00', 1),
(22141, 24409, 57, 4, 0, 'candidate is ok, fresher communication is ok , confirm the joining date xxamp Salary', 154, '0000-00-00 00:00:00', 1),
(22142, 24408, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22143, 24405, 147, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22144, 24410, 57, 7, 0, 'Candidate is ok, 8 month sales experience and 1.5yrs  non voice, communication is good, kindly confirm the joining date xxamp Salary', 154, '0000-00-00 00:00:00', 1),
(22145, 24410, 59, 3, 0, 'Communication Ok have exp in calling  can be trained in our domain have both voice and non voice exp', 57, '2025-03-08 02:03:12', 1),
(22146, 24409, 59, 3, 0, 'Communication Ok fresher for job need to train from scratch can give a try and check ', 57, '2025-03-08 02:04:09', 1),
(22147, 24407, 59, 3, 0, 'Communication ok fresher for our roles need to check in training and confirm ', 89, '2025-03-08 04:37:13', 1),
(22148, 24414, 59, 5, 0, 'Communication Average Sutaibility for our roles is less pressure handling doubts not suitable', 154, '0000-00-00 00:00:00', 1),
(22149, 24415, 155, 5, 0, 'giving only one word answer. having medical concerns and expecting high salary.', 154, '0000-00-00 00:00:00', 1),
(22150, 24421, 74, 5, 0, 'not fit for team,, all the confirmation depends on parents only..', 154, '0000-00-00 00:00:00', 1),
(22151, 24422, 74, 5, 0, 'not fit....have no maturity', 154, '0000-00-00 00:00:00', 1),
(22152, 24417, 57, 7, 0, 'Candidate is ok , communication good , pls check sustainability. confirm the joining date xxamp salary', 154, '0000-00-00 00:00:00', 1),
(22153, 24418, 59, 5, 0, 'Communication no suitable for our roles will not sustain and handle pressure', 153, '0000-00-00 00:00:00', 1),
(22154, 24419, 59, 5, 0, 'Communication no suitable for our roles will not sustain and handle pressure need to open up a lot', 153, '0000-00-00 00:00:00', 1),
(22155, 24423, 89, 7, 0, 'selected. good skill. training days willl analysis . but joining april', 153, '0000-00-00 00:00:00', 1),
(22156, 24424, 149, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22157, 24424, 149, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22158, 24420, 147, 5, 0, 'salary expectation 25k fresher and communication problem', 154, '0000-00-00 00:00:00', 1),
(22159, 24427, 57, 7, 0, 'Candidate is ok, communication average, pls cross check Sustainability pls confirm salary and joining date', 154, '0000-00-00 00:00:00', 1),
(22160, 24417, 59, 3, 0, 'Communication Ok have exp but no documents can be trained in our roles need to check and confirm in the training', 57, '2025-03-11 04:59:03', 1),
(22161, 24423, 59, 1, 0, NULL, 89, '2025-03-12 11:51:40', 1),
(22162, 24436, 89, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22163, 24446, 59, 5, 0, 'Projecting himself a over active not clear with the communication voice clarity poor too long distance not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(22164, 24447, 59, 5, 0, 'Full of stories School drop and not even clear with his education completed no sustainability with his previous exp not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(22165, 24425, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22166, 24451, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22167, 24367, 60, 1, 0, NULL, 30, '2025-03-12 05:08:46', 1),
(22168, 24449, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22169, 24406, 59, 3, 0, 'Communication Ok Have exp in calling can be trained have all the previous exp documents\n', 11, '2025-03-12 06:27:22', 1),
(22170, 24456, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22171, 24464, 147, 5, 0, 'communication is not good and salary expectation is high fresher', 154, '0000-00-00 00:00:00', 1),
(22172, 24461, 140, 4, 0, 'Having Field Experience', 153, '0000-00-00 00:00:00', 1),
(22173, 24234, 57, 4, 0, 'Candidate is ok Overall 2.6 yrs exp 1.5 yrs golden Enterprises, 8m vizza, absconded, pls check sustainability. confirm the joining date xxamp Salary', 153, '0000-00-00 00:00:00', 1),
(22174, 24465, 149, 7, 0, 'candidate was ok with communication ,interested and   experienced in sales but asking higher salary which was not ok as his standard so i suggest 17-18k as salary ', 153, '0000-00-00 00:00:00', 1),
(22175, 24234, 59, 3, 0, 'Communication Ok Have exp in calling relevant one can give a try and check in training', 57, '2025-03-13 12:13:56', 1),
(22176, 24463, 152, 5, 0, 'Asking for customer support role', 153, '0000-00-00 00:00:00', 1),
(22177, 24452, 152, 7, 0, 'Can through for MF Telecaller,  ', 154, '0000-00-00 00:00:00', 1),
(22178, 24454, 105, 7, 0, 'candidate communication and performance is good 5050 profle but will check with him in the training period', 153, '0000-00-00 00:00:00', 1),
(22179, 24458, 57, 7, 0, 'Candidate is ok, communication tamil good, 6m bajaj loan, confirm the joining xxamp Salary,Thanks', 154, '0000-00-00 00:00:00', 1),
(22180, 24457, 89, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22181, 24359, 29, 1, 0, NULL, 140, '2025-03-13 03:47:44', 1),
(22182, 24364, 29, 1, 0, NULL, 140, '2025-03-13 03:48:06', 1),
(22183, 24466, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22184, 24458, 59, 1, 0, NULL, 57, '2025-03-13 04:31:56', 1),
(22185, 24461, 29, 7, 3, 'porrselvan', 140, '2025-03-13 05:46:13', 1),
(22186, 24465, 59, 3, 0, 'Communication Ok have exp for few months but not a relevant one can give a try and check in training ', 149, '2025-03-13 08:13:51', 1),
(22187, 24473, 57, 5, 0, 'Candidate is ok, communication not good, reject the profile', 153, '0000-00-00 00:00:00', 1),
(22188, 24472, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22189, 24470, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22190, 24427, 59, 3, 0, 'Communication ok  can give a try and check in training', 57, '2025-03-14 07:36:17', 1),
(22191, 24385, 59, 1, 0, NULL, 149, '2025-03-15 02:54:35', 1),
(22192, 24478, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22193, 24454, 59, 3, 0, 'Communication Ok 2 months expin calling 5050 profile sustainability doubts a lot caN Give a try and check in training\n', 105, '2025-03-15 05:56:55', 1),
(22194, 24461, 59, 3, 0, 'Have exp can give a try with the commitment target 2L Life 10SIP 2Knet increase apr', 29, '2025-03-15 06:32:26', 1),
(22195, 24480, 57, 7, 0, 'Candidate is ok, communication good,  1yr exp in voice process, confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(22196, 24482, 89, 7, 0, 'already experince at loan tele calling at 6 month. good skill , will analiys 7 days training', 153, '0000-00-00 00:00:00', 1),
(22197, 24481, 149, 5, 0, 'candidate was ok with communication but expectation of salary was more compare to her experience and not having existing company experience letter', 153, '0000-00-00 00:00:00', 1),
(22198, 24480, 59, 3, 0, 'Communciation Ok Good in projecting Very active candidate can be trained in our roles\n', 57, '2025-03-17 01:06:11', 1),
(22199, 24489, 105, 5, 0, 'candidate communication and performance is not good .aslo sustainable is doubt', 153, '0000-00-00 00:00:00', 1),
(22200, 24489, 105, 5, 0, 'candidate communication and performance is not good .aslo sustainable is doubt', 153, '0000-00-00 00:00:00', 1),
(22201, 24487, 139, 4, 0, 'Selected for next round \nHaving good communication skils\nWill try for RM profile ', 154, '0000-00-00 00:00:00', 1),
(22202, 24483, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22203, 24482, 59, 1, 0, NULL, 89, '2025-03-17 05:35:48', 1),
(22204, 24491, 74, 5, 0, 'not suite for team', 154, '0000-00-00 00:00:00', 1),
(22205, 24494, 57, 7, 0, 'Candidate is ok ,communication good, over all 2.5 yrs Exp, but 5m only sales, so pls cross check sustainability and Pls confirm the joining  date xxamp Salary', 153, '0000-00-00 00:00:00', 1),
(22206, 24490, 152, 2, 0, 'RNR', 153, '0000-00-00 00:00:00', 1),
(22207, 24494, 59, 1, 0, NULL, 57, '2025-03-18 12:54:12', 1),
(22208, 24499, 155, 5, 0, 'Looking for IT', 154, '0000-00-00 00:00:00', 1),
(22209, 24500, 155, 5, 0, 'previously worked in uS chat process for 1yr... giving only one word answer xxamp not comfortable working with targets', 154, '0000-00-00 00:00:00', 1),
(22210, 24496, 139, 5, 0, 'Dont have communication skill and fluent ', 154, '0000-00-00 00:00:00', 1),
(22211, 24498, 139, 4, 0, 'Selected for next round, could not able to reach her, fix time for final round to sriram sir ', 154, '0000-00-00 00:00:00', 1),
(22212, 24502, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22213, 24503, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22214, 24374, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22215, 24329, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22216, 24428, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22217, 24507, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22218, 24508, 57, 7, 0, 'Candidate is ok , freshers, negotiate the salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(22219, 24509, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22220, 24510, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22221, 24497, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22222, 24508, 59, 3, 0, 'Communication Ok Fresher 5050 Sustainability doubt need to check in training and confirm', 57, '2025-03-19 04:02:26', 1),
(22223, 24498, 155, 5, 0, 'not comfort with the timing and long distance', 139, '2025-03-20 11:32:50', 1),
(22224, 24519, 57, 7, 0, 'Candidate is ok, Freshers, communication good, pls cross check sustainability, confirm the joining date and salary', 154, '0000-00-00 00:00:00', 1),
(22225, 24517, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22226, 24521, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22227, 24524, 109, 5, 0, 'Not suitable for our recruitment team', 154, '0000-00-00 00:00:00', 1),
(22228, 24514, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22229, 24516, 155, 5, 0, 'Communication not good ', 154, '0000-00-00 00:00:00', 1),
(22230, 24523, 155, 5, 0, 'voice too low... and looking for IT Also', 154, '0000-00-00 00:00:00', 1),
(22231, 24519, 59, 3, 0, 'Communication Good Can be trained in our roles will take a leave for exam inbetween can give a try and check', 57, '2025-03-20 02:44:12', 1),
(22232, 24527, 139, 5, 0, 'Not fit for FSC \nDont have communication skils ', 154, '0000-00-00 00:00:00', 1),
(22233, 24526, 30, 7, 3, 'immediate joining ctc as per company norms', 154, '0000-00-00 00:00:00', 1),
(22234, 24525, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22235, 24530, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22236, 24536, 109, 5, 0, 'Not suitable for our recruitment team', 154, '0000-00-00 00:00:00', 1),
(22237, 24533, 147, 5, 0, 'looking for it job', 154, '0000-00-00 00:00:00', 1),
(22238, 24531, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22239, 24532, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22240, 24534, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22241, 24535, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22242, 24528, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22243, 24537, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22244, 24526, 60, 1, 0, NULL, 30, '2025-03-21 04:56:04', 1),
(22245, 24544, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22246, 24541, 109, 5, 0, 'Not suitable for our recruitment team', 104, '0000-00-00 00:00:00', 1),
(22247, 24543, 89, 7, 0, 'Communication Ok Process for 16.5K need to check in training', 154, '0000-00-00 00:00:00', 1),
(22248, 24543, 59, 3, 0, 'Communication Ok Fresher for our roles have few months exp but no relevant documents can check in training and confirm', 89, '2025-03-24 10:25:35', 1),
(22249, 24540, 109, 5, 0, 'Not suitable for our recruitment team', 154, '0000-00-00 00:00:00', 1),
(22250, 24548, 105, 5, 0, 'Candidate Communication And Performance is little bit ok.but his sustainable is doubt also distance is long', 154, '0000-00-00 00:00:00', 1),
(22251, 24546, 149, 7, 0, 'candidate was good at communication and also experienced in sales and interested in earnings and will provide salary 14-15k and she will join by april start', 154, '0000-00-00 00:00:00', 1),
(22252, 24550, 29, 7, 3, 'porrselvan team, has given task for sal hike in 30 days if complted the task, ref resume for details', 154, '0000-00-00 00:00:00', 1),
(22253, 24547, 139, 5, 0, 'Dont have good communication skills \nNot fit for rm Profile ', 154, '0000-00-00 00:00:00', 1),
(22254, 24552, 74, 5, 0, 'NOT FIT FOR TEAM', 154, '0000-00-00 00:00:00', 1),
(22255, 24556, 155, 5, 0, 'looking for designing field only, not suit for sales and expecting high salary', 154, '0000-00-00 00:00:00', 1),
(22256, 24558, 155, 5, 0, 'communication not good and mainly looking job in  designing field only and doing bsc comp in correspondence so plan for IT courses also.', 154, '0000-00-00 00:00:00', 1),
(22257, 24562, 74, 5, 0, 'NOT FIT FOR TELECALLING', 154, '0000-00-00 00:00:00', 1),
(22258, 24564, 57, 7, 0, 'Candidate is ok, communication xxamp product knowledge also good, over all 3yrs exp, FS Insurance, salary exp 20k above, but she was abscond, so negotiate the salary. field work also willing,kindly confirm the salary and joining date too. team reference', 154, '0000-00-00 00:00:00', 1),
(22259, 24561, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22260, 24563, 137, 7, 0, 'candidate communication and skill is good , past exp also vocie processing , money needed person , so try for 7 days training period', 154, '0000-00-00 00:00:00', 1),
(22261, 24564, 59, 3, 0, 'communication Ok have exp in relevant sales can give a try and check in training', 57, '2025-03-25 12:26:00', 1),
(22262, 24555, 152, 7, 0, 'Selected for tele caller', 154, '0000-00-00 00:00:00', 1),
(22263, 24563, 59, 3, 0, 'Communication Ok Can be trained in our roles  need to check in training', 137, '2025-03-25 12:55:08', 1),
(22264, 24566, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22265, 24568, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22266, 24567, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22267, 24554, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22268, 24570, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22269, 24546, 59, 1, 0, NULL, 149, '2025-03-25 07:00:26', 1),
(22270, 24560, 147, 5, 0, 'communication problem ', 154, '0000-00-00 00:00:00', 1),
(22271, 24559, 147, 7, 0, 'good communication skill fresher 14k in hand ', 154, '0000-00-00 00:00:00', 1),
(22272, 24565, 147, 5, 0, 'looking for 23k salary not looking for rm ', 154, '0000-00-00 00:00:00', 1),
(22273, 24571, 74, 7, 0, 'he is ok with the profile completed BE in madurai....doing part time maths tution in madurai....while studying....after college completion joining hexa ware 10 months experience.....( due to partiality in ABM promotion with TL ) quit the job...........father worked in chennai govt driver 20k only salary.....brother 10th std only.... home 1 km from office....studying revenue and group 2 govt exam......have no laptop ready to arranged.....expected 20k....past company 17.5 k....take home...imeediate joining......next month sister marriage need 10days leave.....kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22274, 24572, 137, 7, 0, 'candidate communication and skill good , just 2 month exp for star health tele sales in 2021 and after see our own business, so try for 7 days training period , exp salary is 15 to 16k ', 154, '0000-00-00 00:00:00', 1),
(22275, 24571, 59, 1, 0, NULL, 74, '2025-03-26 11:15:59', 1),
(22276, 24557, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22277, 24573, 139, 5, 0, 'Not fit for RM profile ', 154, '0000-00-00 00:00:00', 1),
(22278, 24487, 18, 8, 0, 'reschedule', 139, '2025-03-26 02:42:56', 1),
(22279, 24574, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22280, 24575, 139, 4, 0, 'SELECTED FOR CALLER \nHaving good communication skill and convincing skill\nwill try for caller ', 154, '0000-00-00 00:00:00', 1),
(22281, 24572, 59, 3, 0, 'Communication Ok Can be trained in our roles Need to check in training and confirm', 137, '2025-03-27 11:20:18', 1),
(22282, 24579, 149, 7, 0, 'candidate was having good communication and interested in sales and experience and we shall provide 16k as salary and joining april starting', 154, '0000-00-00 00:00:00', 1),
(22283, 24577, 147, 5, 0, 'looking for temporary time period', 154, '0000-00-00 00:00:00', 1),
(22284, 24581, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22285, 24578, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22286, 24452, 59, 3, 0, '5050 Try for FSC need to train from scratch check and confirm in training', 152, '2025-03-27 03:27:34', 1),
(22287, 24555, 59, 3, 0, 'Communication Ok fresher for our roles career gap can be trained in our roles hired for FSC', 152, '2025-03-27 03:27:57', 1),
(22288, 24575, 18, 7, 0, 'Shorlisted as FSE for Gnanshekar team. Please negotiate the salary and can join on 10th April', 139, '2025-03-27 07:51:50', 1),
(22289, 24582, 155, 5, 0, 'Looking for tam lead position.. salary exp high... sustainability issue....', 154, '0000-00-00 00:00:00', 1),
(22290, 24575, 60, 1, 0, NULL, 18, '2025-03-29 12:14:36', 1),
(22291, 24584, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22292, 24586, 152, 7, 0, 'Shortlisted for FSC', 154, '0000-00-00 00:00:00', 1),
(22293, 24587, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22294, 24588, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22295, 24585, 59, 3, 0, 'First 1 month intern with 5K stipend and based on performance will go for employment', 154, '0000-00-00 00:00:00', 1),
(22296, 24589, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22297, 24590, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22298, 24591, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22299, 24579, 59, 3, 0, 'Communication Ok no sustainability in his previous can be trained and check in training ', 149, '2025-03-29 04:14:38', 1),
(22300, 24595, 137, 7, 0, 'candidate communication and vocie is good , money needed person , so try for 7 days training and exp salary for 14 to 16 k', 154, '0000-00-00 00:00:00', 1),
(22301, 24600, 149, 5, 0, 'candidate was ok with communication but with his expectation of salary was more and not sure about his stability', 154, '0000-00-00 00:00:00', 1),
(22302, 24596, 139, 7, 0, 'Selected for RM \nHaving good communication skill, and confident proceed further for joining ', 154, '0000-00-00 00:00:00', 1),
(22303, 24594, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22304, 24597, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22305, 24601, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22306, 24599, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22307, 24602, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22308, 24608, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22309, 24609, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22310, 24607, 149, 7, 0, 'candidate was good at communication and also interested in sales and have experience in terms of sales  we shall provide 15-16k as salary but he will join by next month due to he was in notice period kindly check with joining ', 154, '0000-00-00 00:00:00', 1),
(22311, 24610, 57, 7, 0, 'Candidate is ok, confident level, Married women, 3yrs exp overall. 2kids there pls check Sustainability. pls confirm the joining date xxamp Salary ', 154, '0000-00-00 00:00:00', 1),
(22312, 24611, 57, 5, 0, 'candidate is unfit for the sales profile. very slow. reject the profile', 154, '0000-00-00 00:00:00', 1),
(22313, 24610, 59, 3, 0, 'Communication Ok fresher for our sales need to train from scractch can give a try and check', 57, '2025-04-01 01:13:16', 1),
(22314, 24613, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22315, 24617, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22316, 24615, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22317, 24614, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22318, 24616, 57, 5, 0, 'candidate is not suitable for sales profile. communication not good, not interested Appointmentxquots outside.reject the profile', 154, '0000-00-00 00:00:00', 1),
(22319, 24618, 105, 5, 0, 'Candidate performance and communication is little bit not good.also his voice I low and not talk much more. She will not handle pressure', 154, '0000-00-00 00:00:00', 1),
(22320, 24612, 105, 7, 0, 'Candidate Communication And performance is good.Will Check With Him inthe training Period ', 154, '0000-00-00 00:00:00', 1),
(22321, 24612, 60, 1, 0, NULL, 105, '2025-04-01 01:47:24', 1),
(22322, 24619, 57, 7, 0, 'Candidate is ok, fresher 50/50 will try to understand 7 days of Training period. give me a fresher salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(22323, 24620, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22324, 24621, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22325, 24625, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22326, 24627, 105, 7, 0, 'candidate communication and performance is ok.but 5050 will checkwith him in the training period', 154, '0000-00-00 00:00:00', 1),
(22327, 24629, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22328, 24628, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22329, 24604, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22330, 24632, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22331, 24631, 57, 7, 0, 'candidate is ok, 3yrs experience in voice process, sales profile fresher, communication and confident level good, confirm the joining date xxamp salary', 154, '0000-00-00 00:00:00', 1),
(22332, 24619, 59, 1, 0, NULL, 57, '2025-04-02 02:51:02', 1),
(22333, 24631, 59, 1, 0, NULL, 57, '2025-04-02 02:55:09', 1),
(22334, 24633, 59, 2, 0, 'Need time to confirm 5050 profile long constraint if he finds a room can give a try  sustainability questions\n', 154, '0000-00-00 00:00:00', 1),
(22335, 24623, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22336, 24624, 59, 5, 0, 'Career Gap seems to confident and asked her to come for 2nd round post lunch but she didnt come', 154, '0000-00-00 00:00:00', 1),
(22337, 24626, 147, 5, 0, 'salary expectation 25k fresher', 154, '0000-00-00 00:00:00', 1),
(22338, 24636, 59, 5, 0, 'Long Distance Not clear with the communication will not sustain and handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(22339, 24635, 59, 5, 0, 'No Communication Career Gap not suitable for our roles will not sustain', 154, '0000-00-00 00:00:00', 1),
(22340, 19653, 59, 2, 0, 'Very active but childish long distance not open to relocate she is from maraimalai nagar 5050 try', 154, '0000-00-00 00:00:00', 1),
(22341, 24640, 74, 5, 0, 'not fit for telesales , have baby 1 year', 154, '0000-00-00 00:00:00', 1),
(22342, 24630, 74, 5, 0, 'intested in digital marketing only not suite', 154, '0000-00-00 00:00:00', 1),
(22343, 24642, 74, 7, 0, 'she is ok with the profile already worked in muthalagu gold loan 6 months due to salary issue and msc irregular she releived ....currently completed msc and expecting sales and finance only...not intrested in teaching...completed bsc and msc...studied banking also.....previous company 9 to 10k only slary.....father conductor...govt salary 50k....2 elder sister 1 sister married another sister currently engaged....immediate joining office 3km only ...expected 13 to 15k...have laptop...kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22344, 24431, 59, 3, 0, 'Intern with employment 3.5yrs agreement agreed terms and conditions', 60, '0000-00-00 00:00:00', 1),
(22345, 24642, 59, 3, 0, 'Communication Ok have few months exp in calling can give a try and check in training ', 74, '2025-04-03 11:42:52', 1),
(22346, 24643, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22347, 24641, 155, 5, 0, 'already worked in core for 2 years.. Location far around 23 kms from office... communication average and salary expectation is high', 154, '0000-00-00 00:00:00', 1),
(22348, 24638, 155, 5, 0, 'already worked 3 years in non voice and chat process.. Looking for non voice process.. communication not good and very slow', 154, '0000-00-00 00:00:00', 1),
(22349, 24637, 59, 5, 0, 'Have exp in collections but have sustainability with her previous exp only 1 company solid exp she has recently married need to hold sfor some time and based on other profile can try', 154, '0000-00-00 00:00:00', 1),
(22350, 24639, 59, 2, 0, 'have exp in pharma only but communication Ok highest graducation is 10th only can give a try and check', 154, '0000-00-00 00:00:00', 1),
(22351, 24645, 59, 2, 0, '5050 profile fresher need to train from scratch getting married at the earliest currrent distance so long', 154, '0000-00-00 00:00:00', 1),
(22352, 24646, 59, 5, 0, 'Freshr for Telesales thinking a lot about the target will not sustain and handle our work roles\n', 154, '0000-00-00 00:00:00', 1),
(22353, 24647, 59, 5, 0, 'Not suitable for our sales roles ', 154, '0000-00-00 00:00:00', 1),
(22354, 24506, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22355, 24650, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22356, 24648, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22357, 24653, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22358, 24654, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22359, 24657, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22360, 24595, 59, 3, 0, 'Communication Ok Can be trained in our roles yet to complete her college can check in training', 137, '2025-04-07 10:07:46', 1),
(22361, 24550, 59, 3, 0, 'Communication Ok Can be trained in our roles commitment by gaurav sir - 2L plus 10K sip ok 3K', 29, '2025-04-07 10:18:10', 1),
(22362, 24596, 59, 3, 0, 'Communication Ok an be trained in our roles and check in training', 139, '2025-04-07 10:22:07', 1),
(22363, 24644, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22364, 24659, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22365, 24661, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22366, 24665, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22367, 24669, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22368, 24674, 149, 7, 0, 'candidate was good at communication and interested in sales ,she was in need of job and we shall provide 15-16k as salary and will join by next week', 154, '0000-00-00 00:00:00', 1),
(22369, 24675, 155, 5, 0, 'COMMUNICATION NOT GOOD. GIVING ONLY ONE WORD ANSWER', 154, '0000-00-00 00:00:00', 1),
(22370, 24673, 155, 5, 0, 'COMMUNICATION NOT GOOD. GIVING ONLY ONE WORD ANSWER', 154, '0000-00-00 00:00:00', 1),
(22371, 24672, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22372, 24627, 59, 3, 0, 'Communication Ok fresher for our roles need to train from scratch can give a try and check', 105, '2025-04-08 11:34:05', 1),
(22373, 24671, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22374, 24677, 30, 7, 3, 'Suggested ctc 14k immediate joining', 154, '0000-00-00 00:00:00', 1),
(22375, 24677, 60, 1, 0, NULL, 30, '2025-04-08 12:15:35', 1),
(22376, 24622, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22377, 24559, 60, 1, 0, NULL, 147, '2025-04-08 12:50:00', 1),
(22378, 24684, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22379, 24687, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22380, 24685, 57, 7, 0, 'Candidate is ok, communication average, 2.5 yrs exp. 2 yrs In Field sales. confirm the salary and joining thanks', 154, '0000-00-00 00:00:00', 1),
(22381, 24682, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22382, 24683, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22383, 24685, 59, 3, 0, 'Communication Ok fresher for our insurance sales have exp in real estate domain can give a try and check', 57, '2025-04-08 05:27:44', 1),
(22384, 24674, 59, 1, 0, NULL, 149, '2025-04-08 06:43:06', 1),
(22385, 24691, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22386, 24693, 57, 7, 0, 'Candidate is ok, communication good, 7month personal loan Experience, Pls check distance. Confirm the joining and salary', 154, '0000-00-00 00:00:00', 1),
(22387, 24694, 152, 7, 0, 'shortlisted for FSC immediate joining', 154, '0000-00-00 00:00:00', 1),
(22388, 24656, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22389, 24693, 59, 1, 0, NULL, 57, '2025-04-09 05:28:14', 1),
(22390, 24586, 59, 3, 0, 'Communication Ok have exp for few months in Shriram can give a try and check', 152, '2025-04-09 06:25:33', 1),
(22391, 24607, 59, 1, 0, NULL, 149, '2025-04-09 06:43:14', 1),
(22392, 24694, 59, 3, 0, 'Communication Ok Can be trained in our roles have exp in bank bazaar need to check in our process', 152, '2025-04-09 06:48:50', 1),
(22393, 24703, 139, 7, 0, 'Shortlisted for FSC\nimmediate joining \n', 154, '0000-00-00 00:00:00', 1),
(22394, 24702, 149, 7, 0, 'candidate was ok with communication and also interested and experienced in sales and she was also ok for immediate joining and we shall provide 16-17k as salary ', 154, '0000-00-00 00:00:00', 1),
(22395, 24701, 74, 7, 0, 'she is ok with the profile completed bE...and worked in school based back end job with 12k salary for 2yr..now the process shift to trichy so not able to move on....father sales man in dhatri solution 30k salary...rental house ...intrested in sales job...friends working in chennai kasa grand ....so she is intrested...family not allowed to chennai...know every thing target based and sales knowledge ...expected 15k have laptop...monday joining..kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22396, 24703, 60, 1, 0, NULL, 139, '2025-04-10 05:11:20', 1),
(22397, 24714, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22398, 24713, 57, 7, 0, 'Candidate is ok, communication good, pls check sustainability, freshers. confirm the salary and joining date thanks', 154, '0000-00-00 00:00:00', 1),
(22399, 24717, 152, 7, 0, 'Shortlisted for Caller', 154, '0000-00-00 00:00:00', 1),
(22400, 24713, 59, 3, 0, 'Communication Ok seems to be slow but can be trained in our roles and try', 57, '2025-04-11 01:11:04', 1),
(22401, 24702, 59, 1, 0, NULL, 149, '2025-04-12 11:05:21', 1),
(22402, 24720, 149, 7, 0, 'candidate was good at communication and have experience at sales and we shall provide at 15-16k as salary and also ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(22403, 24718, 155, 5, 0, 'giving only one word answer and communicatio not good', 154, '0000-00-00 00:00:00', 1),
(22404, 24709, 139, 5, 0, 'Not fit for FSC rold \n', 154, '0000-00-00 00:00:00', 1),
(22405, 24721, 57, 7, 0, 'Candidate is ok communication good, exp candidate \nConfirm the joining date xxamp Salary', 154, '0000-00-00 00:00:00', 1),
(22406, 24723, 155, 5, 0, 'having exp of 1 year in teleperformance in  sales bangalore. not comfortable with tamil speaking, Born and bought up bvangalore for father buisness come to chennai.. expecting kannada, hindi voice process.', 154, '0000-00-00 00:00:00', 1),
(22407, 24722, 155, 5, 0, 'communication not good, Looking for IT', 154, '0000-00-00 00:00:00', 1),
(22408, 24725, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22409, 24721, 59, 1, 0, NULL, 57, '2025-04-15 10:55:16', 1),
(22410, 24728, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22411, 24729, 59, 3, 0, 'Communication Ok have exp in happy calling can give a try and check in training final round gokul sir', 104, '0000-00-00 00:00:00', 1),
(22412, 24730, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22413, 24733, 74, 7, 0, 'she is ok with the profile completed BCOM-- first 6 month work in nalam agency in thanjavur brother business for 6  month..company will shift to kumbakonam so left the job and joined in mallika furniture for 1 year,,,due to timing issured need to releived the job...father passed out...mother oly ....suganthi is the only care taker in family...expected 15k...have laptop and imeediate joining kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22414, 24735, 74, 7, 0, 'she is ok with the profile completed BA- MA - BED- currently passed out..ma and bed in partime....working in a sales executive 6 month in calliber sbi consultant 15k salary-- and joined in sbi as same role 12k salary due to salary issued relived in over all 9 month and joined in spandana sphoorty finanace 15k salary...worked in 8 month ...and releived due to bed training....intrested in govt exam  and prepared...father farmer and sister work in chennai 16k salary and brother studied bA......travel time 1 and half hour from kumbakonam expected 15k have laptop imeediate joining...timing issue so doubt on this profile regarding sustainability kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22415, 24734, 74, 5, 0, 'not suite for team', 154, '0000-00-00 00:00:00', 1),
(22416, 24731, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22417, 24720, 59, 1, 0, NULL, 149, '2025-04-16 01:05:33', 1),
(22418, 24739, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22419, 24736, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22420, 24738, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22421, 24732, 152, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(22422, 24740, 89, 7, 0, 'Average skill. We can try the sales field. Freshers salary I suggest ', 154, '0000-00-00 00:00:00', 1),
(22423, 24735, 59, 3, 0, 'Communication Ok have exp in calling not relevant one can give a try and check', 74, '2025-04-16 05:20:34', 1),
(22424, 24733, 59, 1, 0, NULL, 74, '2025-04-16 05:50:12', 1),
(22425, 24746, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22426, 24749, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22427, 24751, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22428, 24748, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22429, 24753, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22430, 24752, 149, 5, 0, 'candidate was ok with communication but not ok with stability and she attend the interview in her existing company break hrs and will  not sure about her stabiilty\n', 154, '0000-00-00 00:00:00', 1),
(22431, 24761, 74, 7, 0, 'she is ok with the profile completed mba in 2023- and joined as a hr in foxconn for 6 months and getting 15k salary due to travel to hostel and food releived from the job 6 months experience..and joined in a dream work finance solutions ...hdfc life sales have basic knowledge about insurance speak well  1 year experience releived in feb,,,sister marriage about to fix so she is ready to settle in thanjavur....home near by 1 km...from office...father sthabathi ...sister worked in kumaran hospital anasthesia expert 18k salary.....have own house and have two rental house over all 6 k from rental....ready to join on tuesday..have laptop...expected 15k...kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22432, 24756, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22433, 24765, 74, 5, 0, 'unfit for telesales not performing well', 154, '0000-00-00 00:00:00', 1),
(22434, 24763, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(22435, 24759, 156, 7, 0, 'canditate is ok communication good fresher ... kindly confirm the salary and joining date ', 154, '0000-00-00 00:00:00', 1),
(22436, 24758, 89, 7, 0, 'good skill. will analiys 7 days training .  \ni suggest freshers salary', 154, '0000-00-00 00:00:00', 1),
(22437, 24764, 74, 5, 0, 'not suite unfit for telesales', 154, '0000-00-00 00:00:00', 1),
(22438, 24755, 140, 7, 0, 'selected, refer to the resume for commitments.', 154, '0000-00-00 00:00:00', 1),
(22439, 24761, 59, 3, 0, 'Communication Ok Can be trained in our roles and check in training ', 74, '2025-04-18 12:38:32', 1),
(22440, 24701, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check and confirm', 74, '2025-04-18 12:43:10', 1),
(22441, 24747, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22442, 24766, 105, 7, 0, 'Candidate Communication And performance is good,but 5050 will check with him in the training Period ', 154, '0000-00-00 00:00:00', 1),
(22443, 24758, 59, 1, 0, NULL, 89, '2025-04-18 02:30:52', 1),
(22444, 24768, 155, 5, 0, 'Communication not good. very slow. Not fit for sales', 154, '0000-00-00 00:00:00', 1),
(22445, 24767, 155, 5, 0, 'Communication not good. Giving only one word answer. Not fir for sales', 154, '0000-00-00 00:00:00', 1),
(22446, 24755, 60, 1, 0, NULL, 140, '2025-04-19 11:39:43', 1),
(22447, 24759, 59, 1, 0, NULL, 156, '2025-04-19 11:41:55', 1),
(22448, 24772, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22449, 24775, 156, 7, 0, 'Candidate is ok, Communication average, 1.5 yrs experience loan tele sales. 2month working vizza insurance, pls cross check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(22450, 24771, 156, 7, 0, 'Candidate is ok, Communication average, exp in loan department. pls confim the salary and joining date.', 154, '0000-00-00 00:00:00', 1),
(22451, 24773, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22452, 24776, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22453, 24774, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22454, 24777, 149, 7, 0, 'candidate was ok with communication have interested in sales and job needed person we shall provide 15-16k as salary and ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(22455, 24780, 89, 7, 0, 'good skill. alredy axis bank loan experince 6 month. will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(22456, 24777, 59, 3, 0, 'Communication ok have exp for few months in calling can give a try and check in training', 149, '2025-04-19 02:39:29', 1),
(22457, 24779, 105, 7, 0, 'Candidate Communication And performance is Good Will check with her in the training Period ', 154, '0000-00-00 00:00:00', 1),
(22458, 24778, 89, 5, 0, 'no basic skill. and silent person . ', 154, '0000-00-00 00:00:00', 1),
(22459, 24771, 59, 3, 0, 'Communication Ok fresher for insurance sales have exp in loan sales can be trained in our roles', 156, '2025-04-19 03:36:21', 1),
(22460, 24775, 59, 1, 0, NULL, 156, '2025-04-19 03:37:31', 1),
(22461, 24780, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training', 89, '2025-04-19 03:45:08', 1),
(22462, 24784, 89, 7, 0, 'good cus handling skill  . but salary expection  high. my suggestion 18.5 k only', 154, '0000-00-00 00:00:00', 1),
(22463, 24781, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22464, 24784, 59, 1, 0, NULL, 89, '2025-04-19 05:36:21', 1),
(22465, 24754, 59, 3, 0, 'Communication Ok can be trained in our HR Roles Can give a try', 60, '0000-00-00 00:00:00', 1),
(22466, 24754, 59, 3, 0, 'Communication Ok can be trained in our HR Roles Can give a try', 154, '0000-00-00 00:00:00', 1),
(22467, 24779, 59, 3, 0, 'Communication Ok have exp in calling can be trained in our roles need to check in training and confirm', 105, '2025-04-19 07:44:00', 1),
(22468, 24766, 59, 1, 0, NULL, 105, '2025-04-19 07:44:56', 1),
(22469, 24785, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22470, 24790, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22471, 24740, 59, 3, 0, 'communication ok can be trained in our roles need to check in training and confirm', 89, '2025-04-21 10:43:55', 1),
(22472, 24717, 59, 3, 0, 'Communication Ok Need to train from Scratch have exp in teaching ', 152, '2025-04-21 11:04:16', 1),
(22473, 24788, 137, 5, 0, 'not proper communication skill ', 154, '0000-00-00 00:00:00', 1),
(22474, 24787, 57, 7, 0, 'Candidate is ok, communication good, Pls cross check sustainability because he Interested in movie direction and writing. kindly confirm the joining date xxamp Salary,.', 154, '0000-00-00 00:00:00', 1),
(22475, 24796, 156, 7, 0, 'Candidate is ok, communication average. 3m tele sales. 6m medical billing. pls check sustainability, confirm joining date and do the needful', 154, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(22476, 24795, 156, 7, 0, 'Candidate is ok, communication average. provide the fresher salary. kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(22477, 24797, 149, 7, 0, 'candidate was ok with communication and have experience in telecalling  and interested in our profile and ok for  immediate joining, we shall provide 16k as salary', 154, '0000-00-00 00:00:00', 1),
(22478, 24793, 140, 5, 0, 'No convincing skills xxamp higher expectation...\n', 154, '0000-00-00 00:00:00', 1),
(22479, 24794, 140, 7, 0, 'Shortlisted by gaurav, without any commitment', 154, '0000-00-00 00:00:00', 1),
(22480, 24798, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22481, 24798, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22482, 24795, 59, 3, 0, 'Communication Ok Fresher for our sales profiles job fair employee need to train a lot Should check in training and confirm', 156, '2025-04-21 02:56:12', 1),
(22483, 24796, 59, 3, 0, 'Communication Ok Fresher for our roles can be trained will check in training and confirm', 156, '2025-04-21 02:58:46', 1),
(22484, 24782, 59, 2, 0, 'Looking only for queries handling not open for upsales and calling will not sustain and handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(22485, 24786, 59, 4, 0, '5050 profile communication average have exp in home loan HDFC but exp seems to be more look and let me know your interest', 154, '0000-00-00 00:00:00', 1),
(22486, 24792, 59, 5, 0, 'Communication Low long gap in speaking will not sustain and not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(22487, 24787, 59, 3, 0, 'Communication Ok fresher for our roles can be trained in our roles and check in training', 57, '2025-04-21 04:11:18', 1),
(22488, 24797, 59, 3, 0, 'Communication ok have exp in calling can be trained in our roles came for chennai and selected for rajasekar but moved to thanjavur', 149, '2025-04-21 04:43:53', 1),
(22489, 24783, 140, 7, 0, 'Shortlisted by gaurav, without any commitment', 154, '0000-00-00 00:00:00', 1),
(22490, 24794, 60, 1, 0, NULL, 140, '2025-04-22 09:55:16', 1),
(22491, 24783, 60, 1, 0, NULL, 140, '2025-04-22 09:56:05', 1),
(22492, 24803, 59, 5, 0, 'Not suits for our role will not handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(22493, 24812, 74, 5, 0, 'NOT FIT FOR SALES', 154, '0000-00-00 00:00:00', 1),
(22494, 24804, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22495, 24811, 57, 5, 0, 'candidate is not suitable sales field. Sounds not good, reject the profile,, Salary high expectations, thanks', 154, '0000-00-00 00:00:00', 1),
(22496, 24806, 59, 5, 0, 'communication average need to open up a lot Will not sustain in our profile', 154, '0000-00-00 00:00:00', 1),
(22497, 24819, 74, 7, 0, 'he is ok with the profile , completed diploma in nagapattinam...father passed...worked in oppo sales promoter 1 yr experience due salary issue releived to samsung as a sales promoter 4 months ....due to family issue move to thirupur and woked as a accounts admin , now he wants to settle in tanjavur...sister settle in thanjavur...so ready to move on....2 years after marriage....age 22 .....expected 15 to 18k have laptop,,,joining next week,,,kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22498, 24809, 74, 5, 0, 'Not suite for team, unfi for sales', 154, '0000-00-00 00:00:00', 1),
(22499, 24818, 149, 2, 0, 'candidate was  ok with communication and interested in sales and incentives but not sure about stability and would like to confirm again', 154, '0000-00-00 00:00:00', 1),
(22500, 24816, 149, 5, 0, 'candidate was not good at communication not having any experiences and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(22501, 24814, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22502, 24815, 149, 7, 0, 'candidate was good at communication interested in sales and  ok for immediate joining and we shall provide 16k as salary  ', 154, '0000-00-00 00:00:00', 1),
(22503, 24786, 139, 5, 0, 'Not interested work in MF team \nhe willing to work in Health biz', 59, '2025-04-22 04:56:26', 1),
(22504, 24819, 59, 3, 0, 'Need to check and confirm after training period.', 74, '2025-04-22 06:50:11', 1),
(22505, 24815, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 149, '2025-04-22 06:56:53', 1),
(22506, 24824, 74, 7, 0, 'he is ok with the profile..completed diploma and worked as a business development executive in selfmade ecom for 1 year 15k salary...and worked in a b2b process in coimbatore 1 year experience .....due to family mother health issue looking for job in thanjavur....speak little much kindly cross check .....have no laptop ready to arrange expected 18 to 20k...', 154, '0000-00-00 00:00:00', 1),
(22507, 24828, 74, 7, 0, 'he is ok with the profile completed bsc visual comunication and doing marriage photography...2 years and doing water cane business 1 year...and joined in l and t solution for 1 year..due to accident not performing well and releived ....father in foreign earned 15k only brother work in petrol bunk....expected 15k and have laptop immedaite joining kindly cross check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22508, 24827, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22509, 24829, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22510, 24830, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22511, 24813, 109, 5, 0, 'Not suitable for our recruitment team', 154, '0000-00-00 00:00:00', 1),
(22512, 24831, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22513, 24823, 155, 5, 0, 'not fit for sales, Looking for IT', 154, '0000-00-00 00:00:00', 1),
(22514, 24832, 89, 7, 0, 'Good skill.  already 4 month experince loan . existing there is an  ernia problem . but currnt now good health so check', 154, '0000-00-00 00:00:00', 1),
(22515, 24826, 156, 7, 0, 'Candidate is ok, communication average.  1 year vizza health insurance and 3 months JSJ groups of life insurance company. pls check sustainability, kindly confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(22516, 24833, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22517, 24832, 59, 3, 0, 'Communication Ok have 6 months exp in sales calling can be trained in our roles will check intraining and confirm', 89, '2025-04-23 03:14:10', 1),
(22518, 24826, 59, 3, 0, '`Have Exp in Vizzza for an year next company only for 3 months Communication Ok can give a try and check in training', 156, '2025-04-23 04:13:45', 1),
(22519, 24840, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22520, 24791, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22521, 24824, 59, 3, 0, 'Communication ok need to check in training and confirm sustainability doubts over confidence let us try ', 74, '2025-04-23 06:15:24', 1),
(22522, 24828, 59, 3, 0, 'Communication Ok have exp in loan calls can be trained and check in training period', 74, '2025-04-23 06:17:56', 1),
(22523, 24842, 74, 5, 0, 'NOT SUITE', 154, '0000-00-00 00:00:00', 1),
(22524, 24820, 74, 7, 0, 'he is ok with the profile...completed bca,,,,,,,fresher,,,,,,,father passed 8 yr back..........two sisters studied ...rental house ....he is doing ekart and zomato delivery for family crises...expected 15k..ready to arrange laptop..home 3km only....joining exam may 10...need to shift home so not confirmed kindly cross check', 154, '0000-00-00 00:00:00', 1),
(22525, 24841, 59, 2, 0, '5050 Long distance need to open up a lot given time to decide on this job if she comes back should try and confirm', 154, '0000-00-00 00:00:00', 1),
(22526, 24846, 74, 5, 0, 'not suite for team', 154, '0000-00-00 00:00:00', 1),
(22527, 24843, 59, 5, 0, 'Long Career Gap in between age around 29 years have exp in calling but not in relevant sales profile pressure handling in our insurance roles is tough ', 154, '0000-00-00 00:00:00', 1),
(22528, 24845, 59, 5, 0, 'Not open for voice much looking for non voice process need to open up a lot will not sustain in our roles', 154, '0000-00-00 00:00:00', 1),
(22529, 24844, 149, 7, 0, 'Candidate Was Ok With Communication And Have Experience In Vizza And Interested In Sales And We Shall Provide 14-15k As Salary And She Was Ok For Immediate Joining', 154, '0000-00-00 00:00:00', 1),
(22530, 24847, 74, 5, 0, 'not fit for job', 154, '0000-00-00 00:00:00', 1),
(22531, 24820, 59, 3, 0, 'communication Ok Can be trained in our roles and check in training', 74, '2025-04-24 03:10:09', 1),
(22532, 24844, 59, 1, 0, NULL, 149, '2025-04-24 07:07:11', 1),
(22533, 24852, 74, 7, 0, 'She is ok with the profile, completed bcom,,father passed, mother doing batter business...stay in uncle house..elder sister doing BE and brother doing BE,,fresher,,,expected 15k ..ready to arrange laptop...monday joining kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22534, 24853, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22535, 24852, 59, 2, 0, 'She need time to confirm not much open to go with the targets ', 74, '2025-04-25 06:22:50', 1),
(22536, 24850, 158, 5, 0, 'Communication is not good rejected by satish sir', 104, '0000-00-00 00:00:00', 1),
(22537, 24856, 74, 7, 0, 'she is ok with the profile completed bca 2025 fresher..father farmer brother worked in IT 15k salary....she expected 12 to 13k...from orathanadu half hour travel...have laptop imediate ....may 10 exam completed after joining', 154, '0000-00-00 00:00:00', 1),
(22538, 24744, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22539, 24855, 30, 7, 3, 'Arun cross check previous ctc with the documents based on we can decide for Dm or FSC ', 104, '0000-00-00 00:00:00', 1),
(22540, 24855, 60, 1, 0, NULL, 30, '2025-04-26 12:14:55', 1),
(22541, 24858, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22542, 24857, 57, 7, 0, 'Candidate is ok, communication good, Observation skills good, pls provide Freshers Salary and Confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(22543, 24810, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22544, 24857, 59, 3, 0, 'Communication Good Fresher for our roles future FIL in star Health insurance Need to focus on data need to check in training and confirm', 57, '2025-04-26 01:26:29', 1),
(22545, 24856, 59, 3, 0, 'Communication Ok Fresher need ta train from scratch and confirm in training', 74, '2025-04-26 04:28:59', 1),
(22546, 24861, 156, 7, 0, 'candidate is ok , communication average , 1 year experience Poorvika Mobiles Customer Care pls check sustainability , kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22547, 24861, 59, 3, 0, 'Communication Ok  can be trained in our roles need to check and confirm', 156, '2025-04-28 11:01:07', 1),
(22548, 24859, 139, 5, 0, 'Not fit for FSC role\n ', 154, '0000-00-00 00:00:00', 1),
(22549, 24867, 149, 7, 0, 'candidate was good at communication and experienced in sales and also ok for immediate joining and we shall give 17k as salary', 154, '0000-00-00 00:00:00', 1),
(22550, 24864, 59, 5, 0, 'Communication Ok but slang not much comfort also no convincing understanding is not much good will not hnadle our work pressure he is completely into field ', 154, '0000-00-00 00:00:00', 1),
(22551, 24865, 59, 5, 0, 'Communication No not suitable for sales calling he much open for non voice only', 154, '0000-00-00 00:00:00', 1),
(22552, 24849, 59, 5, 0, 'Communication not clear have exp in non voice no graduation pressure handling doubts in our roles not suitable', 154, '0000-00-00 00:00:00', 1),
(22553, 24866, 59, 5, 0, 'Too long Distance up down 72 kms 2026 passing graduate will not sustain in our role also timing is not much comfort for him', 154, '0000-00-00 00:00:00', 1),
(22554, 24868, 59, 5, 0, 'Communication Average Left the initial job only due to pressure and target also not much comfort in sales time being he is trying in this profile', 154, '0000-00-00 00:00:00', 1),
(22555, 24869, 59, 2, 0, 'Communication Avearge need to check for Thanjavur location let us interview and confirm', 154, '0000-00-00 00:00:00', 1),
(22556, 24862, 109, 5, 0, 'Not suitable for our recruitment team', 154, '0000-00-00 00:00:00', 1),
(22557, 19843, 152, 2, 0, 'On hold ', 154, '0000-00-00 00:00:00', 1),
(22558, 24872, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22559, 24867, 59, 3, 0, 'Communication Ok Hav exp in Vizza fr 10 months can be trained in our roles already friend is working in syed team from same company Let us try in  training an confirm', 149, '2025-04-28 07:31:51', 1),
(22560, 24879, 74, 7, 0, 'she is ok with the profile completed bE....Have basic experience in telecalling 2 months bright solutions for google web site sales...father farmer ..travel time half hour..salary 12to 15k kindly check once and confirm imeediate joining', 154, '0000-00-00 00:00:00', 1),
(22561, 24863, 139, 5, 0, 'Not fit for FSC \n', 154, '0000-00-00 00:00:00', 1),
(22562, 24877, 139, 7, 0, 'Shortlisted for FSC\nHaving good communication skill and sales skills as well\nPackage need to be discuss\nWill give 18k Take home ', 154, '0000-00-00 00:00:00', 1),
(22563, 24880, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22564, 24881, 149, 5, 0, 'candidate was not good at communication and  not even trying to talk and will not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(22565, 24878, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22566, 24870, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22567, 24877, 60, 1, 0, NULL, 139, '2025-04-29 01:02:58', 1),
(22568, 24883, 105, 7, 0, 'candidate communication and performance is ok.but 5050 profile voice little but low.will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(22569, 24887, 158, 5, 0, 'No proper Communication', 104, '0000-00-00 00:00:00', 1),
(22570, 24883, 59, 3, 0, 'Communication Ok Can be trained in our roles and check in training ', 105, '2025-04-29 02:09:29', 1),
(22571, 24891, 74, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(22572, 24889, 89, 7, 0, 'average skill. but speake boldly. will analysis 7 days training days.', 154, '0000-00-00 00:00:00', 1),
(22573, 24879, 59, 3, 0, 'Communication fresher for our sales calling need to check in training and confirm', 74, '2025-04-29 06:57:41', 1),
(22574, 24874, 74, 5, 0, 'Not suite for team', 154, '0000-00-00 00:00:00', 1),
(22575, 24894, 158, 4, 0, 'Candidate needs time ', 157, '0000-00-00 00:00:00', 1),
(22576, 24894, 157, 1, 0, NULL, 158, '2025-04-30 12:11:09', 1),
(22577, 24895, 155, 2, 0, 'need time to discuss with parents, Communication average, exp 19k, no proofs of working with  previous company', 154, '0000-00-00 00:00:00', 1),
(22578, 24896, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22579, 24897, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22580, 24898, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22581, 24884, 156, 7, 0, 'Candidate is ok, communication good, confirm the joining date xxamp salary', 154, '0000-00-00 00:00:00', 1),
(22582, 24899, 149, 5, 0, 'candidate was not ok  with communication and not sure about stability ', 154, '0000-00-00 00:00:00', 1),
(22583, 24900, 155, 5, 0, 'not fit for our roles\n', 154, '0000-00-00 00:00:00', 1),
(22584, 24901, 155, 5, 0, 'not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(22585, 24902, 155, 5, 0, 'not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(22586, 24890, 149, 7, 0, 'candidate was having good communication and interested in sales and also ok for immediate joining  and we shall try her in training days', 154, '0000-00-00 00:00:00', 1),
(22587, 24889, 59, 3, 0, 'Fresher Communication Ok Need to check in traiing and confirm ', 89, '2025-04-30 04:33:37', 1),
(22588, 24852, 59, 3, 0, 'Communication Ok Fresher sustainability doubts seems to much focus in non voice let us try in training', 59, '2025-04-30 07:22:36', 1),
(22589, 24890, 59, 3, 0, 'Selected for rajasekar team. ', 149, '2025-05-02 10:51:28', 1),
(22590, 24884, 59, 1, 0, NULL, 156, '2025-05-02 11:02:38', 1),
(22591, 24908, 74, 5, 0, 'NOT SUITE FOR TELESALES', 154, '0000-00-00 00:00:00', 1),
(22592, 24918, 74, 7, 0, 'she is ok with the profile completed bsc physics...6 month exerience in telecalling in college leave time and online....father catering business 20k earning...sister married and doing job in engg college recepetionist,,,,may 10 th semester completed have laptop.....home 45 mins travel....expected 15k kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22593, 24914, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22594, 24918, 59, 3, 0, 'Communication Ok Fresher for our roles can be trained in our process and check in training', 74, '2025-05-02 04:43:07', 1),
(22595, 24905, 149, 7, 0, 'candidate was bold and good at communication and also  job needed and ok for immediate joining', 104, '0000-00-00 00:00:00', 1),
(22596, 24915, 149, 7, 0, 'candidate was good at communication , interested in sales  and incentives we shall provide 16 k as salary and ok for immediate joining', 104, '0000-00-00 00:00:00', 1),
(22597, 24903, 139, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22598, 24904, 109, 5, 0, 'Not suitable for sales team', 104, '0000-00-00 00:00:00', 1),
(22599, 24916, 57, 7, 0, 'Candidate is ok , communication ok, fresher for sales profile, confirm the salary and joining date', 104, '0000-00-00 00:00:00', 1),
(22600, 24917, 109, 5, 0, 'Not suitable for our recruitment team', 104, '0000-00-00 00:00:00', 1),
(22601, 24919, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22602, 24916, 59, 3, 0, 'Communication Ok Energetic and talkative but not sure on our process should check in training and confirm\n', 57, '2025-05-03 11:38:08', 1),
(22603, 24915, 59, 3, 0, 'Communication Ok   can be trained in our roles need to check in training and confirm', 149, '2025-05-03 04:04:06', 1),
(22604, 24905, 59, 1, 0, NULL, 149, '2025-05-03 04:10:25', 1),
(22605, 24922, 109, 5, 0, 'Not suitable for our recruitment team', 104, '0000-00-00 00:00:00', 1),
(22606, 24925, 74, 7, 0, 'She is ok with the profile completed bca final exam completed 10th may....father farmer 5 acre...sister work in bajjaj sales girl...orathanadu travel time 45 mins...friend also shortlisted already....expected 12 to 14k...ready to arrange laptop...may after 10th joining......expected to do mca in part time kindly check and confirm', 154, '0000-00-00 00:00:00', 1),
(22607, 24924, 139, 5, 0, 'Not fit for FSC', 104, '0000-00-00 00:00:00', 1),
(22608, 24928, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22609, 24931, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22610, 24925, 59, 3, 0, 'Communication Ok Fresher need to check in training and confirm', 74, '2025-05-05 07:05:51', 1),
(22611, 24927, 89, 7, 0, 'GOOD SKILL. but not fit sales filed.  will analysis 7 days training days', 154, '0000-00-00 00:00:00', 1),
(22612, 24930, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22613, 24933, 149, 5, 0, 'Candidate was  not at all good at communication and also not sure about his stability', 154, '0000-00-00 00:00:00', 1),
(22614, 24937, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22615, 24939, 74, 5, 0, 'unfit', 154, '0000-00-00 00:00:00', 1),
(22616, 24940, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(22617, 24932, 74, 5, 0, 'NOT FIT FOR TELESALES', 154, '0000-00-00 00:00:00', 1),
(22618, 24938, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22619, 24936, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22620, 24941, 89, 7, 0, 'good skill. experince at another filed. ', 154, '0000-00-00 00:00:00', 1),
(22621, 24935, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22622, 24942, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22623, 24943, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22624, 24945, 149, 7, 0, 'candidate was  ok with communication and having interest in sales and incentive we shall give 15k as salary ', 154, '0000-00-00 00:00:00', 1),
(22625, 24946, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(22626, 24927, 59, 1, 0, NULL, 89, '2025-05-06 06:22:46', 1),
(22627, 24941, 59, 1, 0, NULL, 89, '2025-05-06 06:23:38', 1),
(22628, 24947, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22629, 24929, 149, 5, 0, 'candidate was ok with communication but not at all good for sales and responding slowly like less intersted and also had ideas in sports related profession', 154, '0000-00-00 00:00:00', 1),
(22630, 24948, 89, 5, 0, 'long distance and no basic skills', 154, '0000-00-00 00:00:00', 1),
(22631, 24921, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22632, 24949, 104, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22633, 24951, 59, 5, 0, 'No clarity in work he is disabled and will suffer a lot to handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(22634, 24950, 140, 4, 0, 'Selected for next round', 154, '0000-00-00 00:00:00', 1),
(22635, 24945, 59, 3, 0, 'Communication Ok Fresher need to check in training and confirm', 149, '2025-05-07 07:20:47', 1),
(22636, 24952, 74, 7, 0, 'he is ok with the profile completed btech...electrical auditing company in trycae industrial pvt...6 months 14k salary....and joined in pztmo electrical engineer posting with 14k salary....due to project closure releived and joined in byjus......bcoz of sister dead releived from the job...curently working in mobile sales ...and last 6 years worked in partime sales only....he required good job in sales only...father farmer..rental house only 8km travel from home....kindly cross check with partime job.....expected 15 to 16k...imeediate joining', 154, '0000-00-00 00:00:00', 1),
(22637, 24956, 74, 5, 0, 'NOT FIT FOR TEAM', 154, '0000-00-00 00:00:00', 1),
(22638, 24954, 74, 5, 0, 'NOT SUITE FOR TEAM AND EXPECTED HIGH', 154, '0000-00-00 00:00:00', 1),
(22639, 24953, 57, 5, 0, 'candidate is unfit for sales profile, lack of confidence, reject the profile', 154, '0000-00-00 00:00:00', 1),
(22640, 23780, 59, 3, 0, 'Communication Ok Need to check in training and confirm let us try', 156, '2025-05-08 12:45:12', 1),
(22641, 24944, 149, 5, 0, 'candidate was not so good at communication and also quite not interested in job and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(22642, 24958, 140, 5, 0, 'nOT BOLD AND DOESNT FIT FOR SALES', 154, '0000-00-00 00:00:00', 1),
(22643, 24959, 149, 5, 0, 'candidate was not so good at communication ,slowly responding  and also interested in other profession ', 154, '0000-00-00 00:00:00', 1),
(22644, 24957, 140, 4, 0, 'sELECTED BY GAURAV SIR ALSO', 154, '0000-00-00 00:00:00', 1),
(22645, 24957, 140, 4, 0, 'sELECTED BY GAURAV SIR ALSO', 154, '0000-00-00 00:00:00', 1),
(22646, 24952, 59, 3, 0, 'Communication Ok interested to learn in sales can give a try and check in training', 74, '2025-05-08 03:03:53', 1),
(22647, 24957, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 140, '2025-05-08 04:11:35', 1),
(22648, 24963, 74, 7, 0, 'He Is Ok With The Profile....fresher...completed MBA...Marketing...Father Farmer...doing partime job in gaming centre...interested in sales only....Travel time 8km...have laptop and immediate Joining...kindly cross check once confirm', 154, '0000-00-00 00:00:00', 1),
(22649, 24965, 59, 5, 0, 'Looking much for non voice process  xxamp Accounts', 154, '0000-00-00 00:00:00', 1),
(22650, 24966, 74, 5, 0, 'Not fit', 154, '0000-00-00 00:00:00', 1),
(22651, 24963, 59, 1, 0, NULL, 74, '2025-05-09 12:15:40', 1),
(22652, 24964, 89, 7, 0, 'she is fresher . will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(22653, 24964, 59, 3, 0, 'Communication Ok Fresher let us train and check in the training period', 89, '2025-05-09 12:36:59', 1),
(22654, 24969, 59, 5, 0, 'worked in Retail sales no proper communication very lag will  not sustain and not suitable', 154, '0000-00-00 00:00:00', 1),
(22655, 24970, 59, 5, 0, 'Attitude issues no sustainability in previous exp will not handle the pressure in our sales ', 154, '0000-00-00 00:00:00', 1),
(22656, 24972, 59, 5, 0, 'Looking for non voice process only', 154, '0000-00-00 00:00:00', 1),
(22657, 24967, 57, 5, 0, 'Candidate is not suitable for sales profile, Communication average, reject the profile...', 154, '0000-00-00 00:00:00', 1),
(22658, 24955, 140, 4, 0, 'Selcted for FSC', 154, '0000-00-00 00:00:00', 1),
(22659, 24961, 59, 3, 0, 'Fresher Communication Good Energetic let us try for Renewals 2yrs NDA', 154, '0000-00-00 00:00:00', 1),
(22660, 24971, 59, 5, 0, 'not open for Target much no clarity with her interest', 154, '0000-00-00 00:00:00', 1),
(22661, 23813, 59, 1, 0, NULL, 156, '2025-05-09 03:45:17', 1),
(22662, 24968, 11, 7, 0, 'she is selected for fse ..expected 14 to 16k', 154, '0000-00-00 00:00:00', 1),
(22663, 24975, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22664, 24980, 74, 5, 0, 'not fit for team,', 154, '0000-00-00 00:00:00', 1),
(22665, 23825, 74, 7, 0, 'she is ok with the profile..completed bsc in nagarkovil...due to family issue sell all the property and settle in thanjavur last one year...father fisherman in abroad....brother studied in sathyabama in chennai...plan to study in msc in hindustan coimbatore...1 sem completed due to family issue quit form studies and come to thanjavur....last 6 months work in tution centre for supoortive purpose only...currently expected job with 12 to 13k salary have laptop...immediate joining....5 km from home', 154, '0000-00-00 00:00:00', 1),
(22666, 24987, 105, 5, 0, 'candidate communication and performance is not good ,also her tamil lang is slightly problem.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(22667, 24982, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22668, 24986, 156, 7, 0, 'Candidate is ok, communication average.. Fresher, kindly confirm the salary xxamp Joining date', 154, '0000-00-00 00:00:00', 1),
(22669, 24981, 59, 5, 0, 'Communication Ok But sounds low pressure handling doubts a lot ', 154, '0000-00-00 00:00:00', 1),
(22670, 24989, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(22671, 24988, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(22672, 24985, 74, 5, 0, 'sustainability issue', 154, '0000-00-00 00:00:00', 1),
(22673, 24984, 74, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(22674, 24976, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(22675, 24955, 60, 1, 0, NULL, 140, '2025-05-12 10:02:09', 1),
(22676, 24996, 74, 5, 0, 'not fit for telesales', 154, '0000-00-00 00:00:00', 1),
(22677, 24950, 60, 1, 0, NULL, 140, '2025-05-12 10:02:38', 1),
(22678, 24997, 74, 7, 0, 'she is ok with the profile completed - 25....native 10km from office mba in part time only....2023...joined in a vmr construction company telecalling 10k salary in trichy...due to salary issue relieved....and joined in vision properties sales ....in trichy..15k salary....and releived 6 month and joined in java python course in chennai for 6 months..due to mother health issue and finacial situtaion try to work in native....brother currently joined in engg in salem,,,,father driver and farmer..own house...have laptop...expected 14 to 15...immediate joining..kindly chek once and confirm', 154, '0000-00-00 00:00:00', 1),
(22679, 24978, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22680, 24998, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22681, 25002, 156, 5, 0, 'Candidate is not suitable for sales profile, lack of confidence, reject the profile', 154, '0000-00-00 00:00:00', 1),
(22682, 25000, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22683, 24992, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22684, 24994, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22685, 24953, 60, 1, 0, NULL, 139, '2025-05-12 03:02:58', 1),
(22686, 24953, 60, 1, 0, NULL, 139, '2025-05-12 03:09:40', 1),
(22687, 25006, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22688, 25008, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22689, 25007, 156, 7, 0, 'Candidate is ok, communication Is ok.. Fresher, kindly confirm the salary xxamp Joining date', 154, '0000-00-00 00:00:00', 1),
(22690, 25004, 149, 7, 0, 'candidate was good at communication and bold  ,interested in sales and  lets try her in first 7days of training period and we shall provide 13-14k as salary', 154, '0000-00-00 00:00:00', 1),
(22691, 24999, 74, 5, 0, 'not suite for sales', 154, '0000-00-00 00:00:00', 1),
(22692, 25009, 89, 5, 0, 'silent person ', 154, '0000-00-00 00:00:00', 1),
(22693, 24997, 59, 1, 0, NULL, 74, '2025-05-12 05:26:38', 1),
(22694, 23825, 59, 3, 0, 'Communication Ok Fresher for our roles need to train from scratch check in training and confirm', 74, '2025-05-12 05:34:29', 1),
(22695, 24986, 59, 3, 0, 'Communication Ok Can give a try and check in training ', 156, '2025-05-12 06:41:08', 1),
(22696, 25007, 59, 3, 0, 'Communication Ok fresher need to train from scratch willl check in training and confirm', 156, '2025-05-12 06:41:43', 1),
(22697, 24968, 60, 1, 0, NULL, 11, '2025-05-12 07:01:26', 1),
(22698, 25001, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22699, 25012, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22700, 25013, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22701, 25004, 59, 1, 0, NULL, 149, '2025-05-13 03:02:54', 1),
(22702, 25016, 156, 7, 0, 'candidate is ok, communication average. 9 months tele sales pls check sustainability . kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22703, 25019, 156, 7, 0, 'candidate is ok , communication average . 1 years 6 months tele sales . pls check sustainability , and confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22704, 25017, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22705, 25015, 11, 7, 0, 'candidate OK for FSC', 154, '0000-00-00 00:00:00', 1),
(22706, 25020, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(22707, 25020, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(22708, 25022, 149, 7, 0, 'candidate was ok with communication and having interest in sales and requirement and we shall provide 14k as salary and lets try in 7 days training', 154, '0000-00-00 00:00:00', 1),
(22709, 25027, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(22710, 25026, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(22711, 25021, 156, 7, 0, 'candidate is ok , communication average . provide the fresher salary . kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22712, 25010, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22713, 25023, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22714, 25018, 30, 7, 3, 'CONFIRM THE JOINING AND SUGGESTED CTC 18K FOR DM', 154, '0000-00-00 00:00:00', 1),
(22715, 25021, 59, 3, 0, 'Communication Ok fresher will check in training and confirm long run doubts in this profile', 156, '2025-05-13 06:37:04', 1),
(22716, 25022, 60, 1, 0, NULL, 149, '2025-05-13 07:36:21', 1),
(22717, 25018, 59, 1, 0, NULL, 30, '2025-05-14 12:25:18', 1),
(22718, 25032, 30, 7, 2, 'confirm the joining and suggested ctc 16k for dm', 154, '0000-00-00 00:00:00', 1),
(22719, 25031, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22720, 25034, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22721, 25033, 11, 7, 0, 'candidate selected for FSE', 154, '0000-00-00 00:00:00', 1),
(22722, 25030, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22723, 25033, 60, 1, 0, NULL, 11, '2025-05-14 04:13:10', 1),
(22724, 25015, 59, 3, 0, 'Selected for FSC Karthiks team, will check in Training period', 11, '2025-05-14 05:37:50', 1),
(22725, 25016, 59, 3, 0, 'Selected fror deshwaran team', 156, '2025-05-14 06:57:25', 1),
(22726, 25019, 59, 3, 0, 'Selected for deshwaran team. ', 156, '2025-05-14 06:59:46', 1),
(22727, 25035, 137, 7, 0, 'candiate communication and voice skill is very good , poor family background money needed person , after 2 years try for govt job , so try for 7 days training  period , exp salary is 14 to 16 k ', 154, '0000-00-00 00:00:00', 1),
(22728, 25035, 59, 3, 0, 'Communication Ok Can be trained in our roles will check in training and confirm', 137, '2025-05-15 12:12:05', 1),
(22729, 25036, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22730, 25032, 60, 1, 0, NULL, 30, '2025-05-15 02:55:57', 1),
(22731, 25037, 156, 7, 0, 'candidate is ok. communication average , provide the fresher salary . kindly confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(22732, 25038, 89, 5, 0, 'not intersted this filed', 154, '0000-00-00 00:00:00', 1),
(22733, 25039, 149, 7, 0, 'CANDIDATE WAS CONFIDENT AND GOOD AT COMMUNCATION AND ALSO INTERESTED IN SALES WE SHALL PROVIDE SALARY 14-15K AND WILL JOIN AFTER 25TH OF THIS MONTH', 154, '0000-00-00 00:00:00', 1),
(22734, 25044, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22735, 25045, 156, 7, 0, 'candidate is ok, communication is good , 1 year 4 months raaj khosla co pvt ltd Process Executive. pls check the sustainability, kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22736, 25039, 60, 1, 0, NULL, 149, '2025-05-16 01:26:12', 1),
(22737, 25049, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22738, 25051, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22739, 25047, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22740, 25047, 156, 7, 0, 'Candidate is ok, Communication average. 1 years 11 months Sriram life insurance. Pls check sustainability, Kindly Confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(22741, 25042, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22742, 25048, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22743, 25037, 59, 3, 0, 'Communication Ok need to check in training and confirm', 156, '2025-05-17 11:58:15', 1),
(22744, 25054, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22745, 25055, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22746, 25056, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22747, 25057, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22748, 25058, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22749, 25059, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22750, 18195, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22751, 25061, 149, 7, 0, 'candidate was ok with communication in need of job and also interested in sales and suggested about 14k as salary and willing to join immediately', 154, '0000-00-00 00:00:00', 1),
(22752, 25062, 156, 7, 0, 'candidate is ok , communication average . Provide the fresher salary. and kindly confirm the joining date .', 154, '0000-00-00 00:00:00', 1),
(22753, 25061, 60, 1, 0, NULL, 149, '2025-05-20 11:13:41', 1),
(22754, 25060, 156, 7, 0, 'candidate is ok , communication average . Provide the fresher salary. and kindly confirm the joining date .', 154, '0000-00-00 00:00:00', 1),
(22755, 25064, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(22756, 25066, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22757, 25063, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22758, 25067, 109, 5, 0, 'Rejected for the reason too low communication.', 154, '0000-00-00 00:00:00', 1),
(22759, 25068, 109, 5, 0, 'Will not sustain for our role', 154, '0000-00-00 00:00:00', 1),
(22760, 25060, 59, 3, 0, 'Communication Ok can be trained in our roles need to check and confirm', 156, '2025-05-20 04:25:40', 1),
(22761, 25062, 59, 3, 0, 'Communication Ok fresher for our roles need to check in training and confirm', 156, '2025-05-20 04:26:21', 1),
(22762, 25075, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22763, 25041, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22764, 25080, 30, 7, 3, 'complete fresher suggested ctc 17k selected for FSC joining 1st of june', 104, '0000-00-00 00:00:00', 1),
(22765, 25070, 30, 7, 4, 'he will join monday or tuesday suggested ctc for 10 to 15% from the previous ctc selected for rm', 104, '0000-00-00 00:00:00', 1),
(22766, 25071, 105, 5, 0, 'candidate performance is little bit ok.but his communication is not good.also pronunciation of words is very low.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(22767, 25082, 156, 7, 0, 'Candidate is ok, communication good , 11 months experience Landmark insurance broker pls cross check the sustainability , and confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22768, 25080, 60, 1, 0, NULL, 30, '2025-05-22 10:42:38', 1),
(22769, 24750, 59, 5, 0, 'Average Communication Sales Pressue handling doubts Very high salary exp already got multiple offers and drop only for the salary ', 154, '0000-00-00 00:00:00', 1),
(22770, 25085, 156, 7, 0, 'candidate is ok, communication average , provide the fresher salary. kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22771, 25085, 156, 7, 0, 'candidate is ok, communication average , provide the fresher salary. kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22772, 25092, 59, 5, 0, 'Need to open up a lot  will not sustain in our profile', 154, '0000-00-00 00:00:00', 1),
(22773, 25084, 59, 5, 0, 'Communication slow not much serious with the job roles not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(22774, 25087, 59, 5, 0, 'Communication Ok Much focus for IT seems to give some stories sustainability doubts', 154, '0000-00-00 00:00:00', 1),
(22775, 25093, 149, 7, 0, 'candidate was ok with communiction and in need of job but not sure about stability and need to verify about joining and shall provide 14k as salary', 154, '0000-00-00 00:00:00', 1),
(22776, 25094, 149, 5, 0, 'candidate was not at speaking and not so good at communication and not sure about stability', 154, '0000-00-00 00:00:00', 1),
(22777, 25090, 59, 2, 0, 'Look for renewal only communication Average long rn doubts no parents ', 154, '0000-00-00 00:00:00', 1),
(22778, 25088, 59, 5, 0, 'Too long distance focus in non voice', 154, '0000-00-00 00:00:00', 1),
(22779, 25096, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(22780, 25082, 59, 1, 0, NULL, 156, '2025-05-22 07:19:10', 1),
(22781, 25085, 59, 3, 0, 'Fresher 5050 Profile seems to project himself not sure on sustainability let us try and check', 156, '2025-05-22 07:22:24', 1),
(22782, 25086, 156, 7, 0, 'candidate is ok, communication average , 1 year  v care bpo role, pls check the sustainability. and confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22783, 25097, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22784, 25105, 149, 7, 0, 'candidate was ok with communication ,no idea about sales interested in working lets try in 7days training time', 154, '0000-00-00 00:00:00', 1),
(22785, 25107, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22786, 25106, 18, 7, 0, 'Sathish Selected for Abdul Team. Immediate Joiner and can give 27k as take home…', 154, '0000-00-00 00:00:00', 1),
(22787, 25108, 18, 7, 0, 'Lakshmi Selected as FSE for Abdul Team... Immediate Joiner and can give 20k as take home…', 154, '0000-00-00 00:00:00', 1),
(22788, 25109, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22789, 25102, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22790, 25086, 59, 3, 0, 'Communication Ok fresher for our roles have exp in customer support need to check in training', 156, '2025-05-23 02:23:58', 1),
(22791, 25111, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22792, 25113, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22793, 25070, 60, 1, 0, NULL, 30, '2025-05-23 04:27:03', 1),
(22794, 25093, 60, 1, 0, NULL, 149, '2025-05-23 07:10:17', 1),
(22795, 25103, 105, 7, 0, 'candidate communication and performance is good.but her distance is long will check with her in the traing period.', 154, '0000-00-00 00:00:00', 1),
(22796, 25103, 59, 3, 0, 'Communication Good Fresher can be trained need to check in training and confirm', 105, '2025-05-24 12:05:37', 1),
(22797, 25116, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22798, 25117, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22799, 25083, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22800, 25119, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22801, 25118, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22802, 25110, 152, 4, 3, 'Selected for next round\n', 154, '0000-00-00 00:00:00', 1),
(22803, 25120, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22804, 25106, 60, 1, 0, NULL, 18, '2025-05-26 09:53:06', 1),
(22805, 25108, 60, 1, 0, NULL, 18, '2025-05-26 09:53:31', 1),
(22806, 25045, 59, 3, 0, 'Communication Ok Have exp Can give a try and check distance need to check and Long run too doubts in this profile', 156, '2025-05-26 10:22:35', 1),
(22807, 25105, 60, 1, 0, NULL, 149, '2025-05-26 10:58:11', 1),
(22808, 25123, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22809, 25124, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22810, 25125, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22811, 25126, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22812, 25127, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22813, 25110, 18, 7, 3, 'Rathish Selected for 3L CTC… Need to release the offer and he shall confirm the Joining date after checking with his current firm…', 152, '2025-05-26 12:17:42', 1),
(22814, 25130, 155, 5, 0, 'voice to low and comuunication not good... last company got abscond due to target and pressure in sales from Justdial..  not giving proper reasons... ', 154, '0000-00-00 00:00:00', 1),
(22815, 25128, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22816, 25129, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22817, 25078, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22818, 25134, 155, 5, 0, 'Job needed person, degree discontinued due to financial issue, 3 years did some local works did not go for any proper job, last worked in unique Business solution due to salary issue relieved....  Voice not clear and pronouncation not clear so not fit for sales and looking for data entry also', 154, '0000-00-00 00:00:00', 1),
(22819, 22946, 30, 7, 3, 'She will join june 2nd for dm suggested 21k in hand', 154, '0000-00-00 00:00:00', 1),
(22820, 25136, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22821, 25121, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22822, 25139, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(22823, 25140, 105, 5, 0, 'Candidate expected higher package', 154, '0000-00-00 00:00:00', 1),
(22824, 22946, 60, 1, 0, NULL, 30, '2025-05-28 10:15:30', 1),
(22825, 25137, 89, 7, 0, 'good skill. experince person other sector. will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(22826, 25146, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22827, 25145, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22828, 25143, 105, 7, 0, 'candidate communication and performance is Good.already have 1 yr star Health experiance .his product explaination is also good.will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(22829, 25143, 59, 1, 0, NULL, 105, '2025-05-28 01:43:37', 1),
(22830, 25149, 89, 7, 0, 'avarege skill. tele calling experince before 2 years. but still fresher.  ', 154, '0000-00-00 00:00:00', 1),
(22831, 25144, 30, 7, 4, 'sHE WILL JOIN JUNE 2ND FOR DM SUGGESTED CTC 17 TO 18K , SKILLS GOOD', 104, '0000-00-00 00:00:00', 1),
(22832, 25151, 30, 7, 4, 'already he getting ctc 37k per month expectation 44 try to close 38 to 39 k for the rm profile and cross check previous history salary', 104, '0000-00-00 00:00:00', 1),
(22833, 25137, 59, 3, 0, 'Communication Ok Can be trained in our roles have exp in sales need to check in traninig and confirm', 89, '2025-05-28 03:35:51', 1),
(22834, 25144, 59, 3, 0, 'Communication gfood can be trained in our roles and check', 30, '2025-05-28 06:47:20', 1),
(22835, 25151, 60, 1, 0, NULL, 30, '2025-05-28 06:49:08', 1),
(22836, 25149, 59, 1, 0, NULL, 89, '2025-05-28 06:55:52', 1),
(22837, 25157, 149, 7, 0, 'candidate was having good communication interested in sales and incentives and we shall provide 14 - 15k as salary and she was ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(22838, 25159, 30, 7, 3, 'selected for rm expectation is high try to close 33 to 35k', 154, '0000-00-00 00:00:00', 1),
(22839, 25156, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22840, 24993, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22841, 25157, 60, 1, 0, NULL, 149, '2025-05-29 01:20:55', 1),
(22842, 25158, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22843, 25155, 57, 4, 0, 'Candidate is ok, communication average. telesales exp have, pls confirm the joining date xxamp salary thanks', 154, '0000-00-00 00:00:00', 1),
(22844, 25164, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22845, 25163, 30, 7, 3, 'selected for rm he is expecting 30 but will try to close 25 to 26k', 154, '0000-00-00 00:00:00', 1),
(22846, 25047, 59, 3, 0, 'Communication Good have exp in shriram finance open for health issurance Over projecting himself can give a try and check in training', 156, '2025-05-30 09:42:47', 1),
(22847, 25110, 60, 1, 0, NULL, 18, '2025-05-30 10:31:50', 1),
(22848, 25169, 105, 7, 0, 'candidate communication and performance is ok also he have 5 months star health insurance experiance.but 5050 will check with him in the training Period.but he is expecting higher packge.as i convied for fresher package only', 154, '0000-00-00 00:00:00', 1),
(22849, 25167, 149, 7, 0, 'candidate was having good communication and already have experience in sales ,interested in sales and syed sir also checked with her based on his suggestion we shall provide 16-16.5k as take home including pf and kindly check with candidate and she was ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(22850, 25170, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22851, 25155, 59, 3, 0, 'Communication k can give a try and check in training', 57, '2025-05-30 04:00:27', 1),
(22852, 25159, 60, 1, 0, NULL, 30, '2025-05-30 05:20:09', 1),
(22853, 25163, 60, 1, 0, NULL, 30, '2025-05-30 05:21:23', 1),
(22854, 25166, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22855, 25167, 60, 1, 0, NULL, 149, '2025-05-30 06:44:06', 1),
(22856, 25169, 59, 3, 0, 'Communication Ok  can be trained in our roles have exp in calling but no documents pertaining to that let us try and check', 105, '2025-05-30 07:16:44', 1),
(22857, 25115, 30, 7, 3, 'she will join on 9th of june selected for dm suggested ctc 16k', 104, '0000-00-00 00:00:00', 1),
(22858, 25173, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22859, 25172, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22860, 25152, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22861, 25115, 60, 1, 0, NULL, 30, '2025-05-31 06:03:31', 1),
(22862, 25178, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22863, 25181, 57, 5, 0, 'reject the profile, he totally  unfit for the sales job, fully wrong information', 154, '0000-00-00 00:00:00', 1),
(22864, 25179, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22865, 25186, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(22866, 25187, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(22867, 25188, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22868, 25189, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22869, 25191, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22870, 25192, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22871, 25194, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22872, 25199, 59, 5, 0, 'to long distance and not suitable for our sales too', 154, '0000-00-00 00:00:00', 1),
(22873, 25180, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22874, 25193, 105, 5, 0, 'candidate communication  and Performance is not well.also he did not communicate more.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(22875, 25197, 105, 7, 0, 'candidate communication and performance is good.as discussed with her travel timing is 1 hour. will check with her in the training period. ', 154, '0000-00-00 00:00:00', 1),
(22876, 25195, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22877, 25196, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(22878, 25198, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22879, 25200, 59, 5, 0, 'Too long distance will not sustain in our roles for a long', 154, '0000-00-00 00:00:00', 1),
(22880, 25202, 57, 7, 0, 'Candidate is ok, communication average, confirm the joining date xxamp salary,, thanks', 154, '0000-00-00 00:00:00', 1),
(22881, 25203, 109, 5, 0, 'selected for MF intern But not joined. due to her frined joined as a intern in this company already', 154, '0000-00-00 00:00:00', 1),
(22882, 25197, 59, 3, 0, 'Communication Good Fresher Job failr committed salary can be trained in our roles and check', 105, '2025-06-02 07:01:55', 1),
(22883, 25204, 59, 5, 0, 'communication Ok for telesales but to long distance up and down 64 Kms will not sustain for a long have few months calling exp in collections and later into cashier exp\n', 154, '0000-00-00 00:00:00', 1),
(22884, 25206, 109, 5, 0, 'Looking for IT more than telesales', 154, '0000-00-00 00:00:00', 1),
(22885, 25201, 59, 5, 0, 'Have Exp in B2B sales for 3 yrs saalry exp is very high got offer from Axis for 3.5 LPA not joined due to salary expectation for B2C fresher and sustainability doubts in our profile', 154, '0000-00-00 00:00:00', 1),
(22886, 25208, 89, 7, 0, 'Selected. Fresher candidate. ', 154, '0000-00-00 00:00:00', 1),
(22887, 25210, 109, 5, 0, 'not suitable', 154, '0000-00-00 00:00:00', 1),
(22888, 25209, 59, 5, 0, 'Long Career Gap earlier and even in exp 2.5 yrs 3 companies travelled age 30 yrs working in different domains  not much suitable for our roles\n', 154, '0000-00-00 00:00:00', 1),
(22889, 25218, 105, 7, 0, 'candidate communication and performance is good.but distance is too long need to check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(22890, 25215, 105, 7, 0, 'candidate communication is good.but her performance is slightly slow will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(22891, 25217, 105, 7, 0, 'candidate communication and performance is good.also he is little aggressive but will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(22892, 25212, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(22893, 25219, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22894, 25216, 105, 5, 0, 'candidate performance  is ok but her communication And actiness is low.sustainable is doubt ', 154, '0000-00-00 00:00:00', 1),
(22895, 25214, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22896, 25207, 30, 7, 3, 'Suggested ctc 16 k for dm immediate joining ', 154, '0000-00-00 00:00:00', 1),
(22897, 25190, 105, 7, 0, 'candidate communication and performance is ok but 5050.will check with her in the training period', 154, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(22898, 25213, 74, 7, 0, 'she is ok with the profile completed mba past two years back she is shortlisted but due to higher studies she is not joined ...worked in kamatchi hospital night shift only in telecalling and communication department.....father pased away...mother house wife...brother worked in bajaj collection person....highly job need....travel time 1 km only...have laptop..imeediate joining...expected 14 to 15k...kindly cross check once confirm', 154, '0000-00-00 00:00:00', 1),
(22899, 25211, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(22900, 25202, 59, 3, 0, 'Communication Ok can be trained in our roles reference profile will check in training and confirm', 57, '2025-06-03 06:41:44', 1),
(22901, 25213, 59, 3, 0, 'Fresher for our roles have exp in customer support Hospital long back attended for our roles can  be trained and check in training', 74, '2025-06-03 06:58:16', 1),
(22902, 25190, 59, 3, 0, 'Communication Ok Fresher for our Sales roles need to train from scratch will check in traninig', 105, '2025-06-04 10:47:47', 1),
(22903, 25217, 59, 3, 0, 'Fresher communication good can be trained in our roles and check in training', 105, '2025-06-04 10:48:56', 1),
(22904, 25218, 59, 3, 0, 'Fresher job fair candidate can be trained in our roles need to check and confirm in training', 105, '2025-06-04 10:52:36', 1),
(22905, 25215, 59, 1, 0, NULL, 105, '2025-06-04 10:54:29', 1),
(22906, 25222, 59, 5, 0, 'Worked in multiple companies and frequent job changes will not handle our work roles not suitable', 154, '0000-00-00 00:00:00', 1),
(22907, 25225, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22908, 25226, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22909, 25229, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22910, 25224, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22911, 25227, 59, 5, 0, 'no responsibility just cam along wiht the friend and attended 6months working and just looking for a change\nnot suitable', 154, '0000-00-00 00:00:00', 1),
(22912, 25228, 59, 5, 0, 'Careeg Gap not much seriousness on the job political background not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(22913, 25231, 59, 5, 0, 'Not suitable for our roles will not handle our work pressure Not even opening the mouth no idea for what he applied', 154, '0000-00-00 00:00:00', 1),
(22914, 25176, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22915, 25233, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22916, 25208, 59, 3, 0, 'Fresher for sales communication Ok sustainability not sure will check in training and confirm', 89, '2025-06-04 07:14:01', 1),
(22917, 25205, 89, 7, 0, 'already experinced at loan and matrimony side tele calling. basic finance knowdge skil person. ', 154, '0000-00-00 00:00:00', 1),
(22918, 25205, 59, 3, 0, 'Communication Ok can give a try in our roles have exp in sales seems to be good in sales can give a try and check', 89, '2025-06-05 12:24:11', 1),
(22919, 25238, 89, 7, 0, 'good skill. brfore two years working at star health 2 month only. will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(22920, 25238, 59, 5, 0, 'Offered but she not joined just 2 months exp in health insurance in 2023 and after that she is into education fresher now we offered her 1.74 LPA', 89, '2025-06-05 12:33:46', 1),
(22921, 25239, 105, 5, 0, 'candidate communication and performance is not good.sustianable is doubt', 154, '0000-00-00 00:00:00', 1),
(22922, 25241, 59, 5, 0, 'sounds and pronouncing issues need to explore a lot not much suits for our roles', 154, '0000-00-00 00:00:00', 1),
(22923, 25242, 105, 5, 0, 'candidate communication and performance is not good.she is intersted for non voice. sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(22924, 25240, 105, 5, 0, 'candidate communication and performance is not good.Voice is Very Low also sustianable is doubt', 154, '0000-00-00 00:00:00', 1),
(22925, 25247, 89, 7, 0, 'good skil. already experinced at other filed', 104, '0000-00-00 00:00:00', 1),
(22926, 25247, 59, 5, 0, 'Dropped not ok with the salary Max uptp 19K for DM roles have exp in Matrimony but long back and career gap was there and worked with another company and left in short note', 89, '2025-06-05 04:18:11', 1),
(22927, 25244, 30, 7, 3, 'suggested ctc 23k for dm', 104, '0000-00-00 00:00:00', 1),
(22928, 25245, 30, 7, 3, 'Selected for dm suggested ctc 23k ', 104, '0000-00-00 00:00:00', 1),
(22929, 25248, 59, 2, 0, 'Need to come back with confirmation from the college on the internship in same company,also candidate is not much aggresive', 154, '0000-00-00 00:00:00', 1),
(22930, 25249, 59, 2, 0, 'Need to come back with confirmation from the college on the internship in same company,also candidate is not much open up ', 154, '0000-00-00 00:00:00', 1),
(22931, 25250, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22932, 25252, 105, 5, 0, 'candidate communication and performance is not good.also sustianable is doubt', 154, '0000-00-00 00:00:00', 1),
(22933, 25253, 59, 5, 0, 'No confident need to open up a lot will not handle the work pressure', 154, '0000-00-00 00:00:00', 1),
(22934, 25254, 59, 5, 0, 'Not suitable for our roles fresher will not handle the pressure and friends gang ', 154, '0000-00-00 00:00:00', 1),
(22935, 25255, 59, 5, 0, 'No Communication very slow will not handle our work pressure and sustain', 154, '0000-00-00 00:00:00', 1),
(22936, 25256, 59, 5, 0, 'Need to open up not much comfort with the target and pressure', 154, '0000-00-00 00:00:00', 1),
(22937, 25251, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22938, 25259, 59, 5, 0, 'No seriousness in the job too long distance will not sustain and very lethurgic not suitable for our roles\n', 154, '0000-00-00 00:00:00', 1),
(22939, 25260, 59, 5, 0, '5050 profile prepared for police exams and due to health issues unable to proceed further Fresher for Sales pressure handling doubts a lot this is the first interview let him explore the opportunities and if he come back let us try', 154, '0000-00-00 00:00:00', 1),
(22940, 25261, 59, 5, 0, 'Open for Non voice profile no clarity with the job he needs to go let him explore the job opportunites he will not sustain in our sales roles\n', 154, '0000-00-00 00:00:00', 1),
(22941, 25262, 59, 2, 0, 'Communication Ok have exp in calling and direct sales 2.5yrs 3 companies worked too long distance not sure with his sustainability let us hold and try his profile', 154, '0000-00-00 00:00:00', 1),
(22942, 25264, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22943, 25265, 59, 5, 0, 'Not Much comfort with Tele and partially field expecting a lot as he comparing his earnings with his friends looking much for the salary pressure handling doubts a lot', 154, '0000-00-00 00:00:00', 1),
(22944, 25267, 59, 5, 0, 'Communication Ok but lot of stammerring he not seems to be normal will not sustain in our roles and not suitable much with our openings', 154, '0000-00-00 00:00:00', 1),
(22945, 25270, 89, 7, 0, 'good skill , fresher, will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(22946, 25274, 149, 7, 0, 'candidate was ok with communication and interested in sales and we can try for 7days training period and we shall provide 14k-15k as salary ', 154, '0000-00-00 00:00:00', 1),
(22947, 25274, 149, 7, 0, 'candidate was ok with communication and interested in sales and we can try for 7days training period and we shall provide 14k-15k as salary ', 154, '0000-00-00 00:00:00', 1),
(22948, 25272, 149, 7, 0, 'candidate was good at communication and also interested in sales and incentives and she was coming from perungaluthur but she was saying it was not an issue and also experienced in sales we shall provide 15-16k as take home and also ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(22949, 25271, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22950, 25273, 149, 7, 0, 'candidate was ok with communication and also have knowledge  and interest at digital marketing and ready to work for sales but not sure about stability letxquots try for training ', 154, '0000-00-00 00:00:00', 1),
(22951, 25276, 59, 5, 0, 'Fresher communication Ok not much clear to our sales roles Pressure handling and sustainability doubts in this roles', 154, '0000-00-00 00:00:00', 1),
(22952, 25280, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22953, 25281, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22954, 25279, 149, 5, 0, 'candidate communication was not at all good and she was not suitable for sales and stability', 154, '0000-00-00 00:00:00', 1),
(22955, 25277, 156, 7, 0, 'candidate is ok , communication average . provide the fresher salary. kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(22956, 25278, 59, 2, 0, 'Need to open up a lot interested to learn but 5050 in our roles if she is getting back will try for our roles', 154, '0000-00-00 00:00:00', 1),
(22957, 25283, 59, 5, 0, 'Too long distance 1.5 yrs 2 companies very high salary exp holding multiple offers will not join us just he will trade with this not suitable', 154, '0000-00-00 00:00:00', 1),
(22958, 25270, 59, 1, 0, NULL, 89, '2025-06-10 06:35:00', 1),
(22959, 25277, 59, 1, 0, NULL, 156, '2025-06-11 10:23:08', 1),
(22960, 25274, 60, 1, 0, NULL, 149, '2025-06-11 11:40:19', 1),
(22961, 25272, 60, 1, 0, NULL, 149, '2025-06-11 11:45:06', 1),
(22962, 25273, 60, 1, 0, NULL, 149, '2025-06-11 12:10:43', 1),
(22963, 25207, 59, 3, 0, 'Communication Ok fresher for our sales roles can give a try in training and confirm ', 30, '2025-06-11 01:43:34', 1),
(22964, 25285, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22965, 25291, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22966, 25301, 59, 3, 0, 'Communication Ok have career gap need to train from scratch can give a try in Renewals', 154, '0000-00-00 00:00:00', 1),
(22967, 25299, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(22968, 25303, 57, 5, 0, 'candidate is not ok, way of approach and body language, communication not good ', 154, '0000-00-00 00:00:00', 1),
(22969, 25304, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22970, 25305, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22971, 25315, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22972, 25316, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22973, 25310, 11, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(22974, 25293, 89, 7, 0, 'will analysis 7 days training', 104, '0000-00-00 00:00:00', 1),
(22975, 25320, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22976, 25317, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22977, 25314, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22978, 25313, 147, 5, 0, 'REJECTED', 154, '0000-00-00 00:00:00', 1),
(22979, 25244, 60, 1, 0, NULL, 30, '2025-06-13 09:54:11', 1),
(22980, 25245, 59, 1, 0, NULL, 30, '2025-06-13 09:55:28', 1),
(22981, 25329, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22982, 25293, 59, 3, 0, 'Communication Ok can give a try and check in training 5050 for our profile', 89, '2025-06-13 11:33:56', 1),
(22983, 25335, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22984, 25332, 89, 7, 0, 'alredy experince person at another sector. wiill analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(22985, 25331, 89, 7, 0, 'fresher. good skill will try 7 days training', 154, '0000-00-00 00:00:00', 1),
(22986, 25330, 89, 5, 0, 'no basick skill and not intersted voice', 154, '0000-00-00 00:00:00', 1),
(22987, 25337, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22988, 25339, 139, 5, 0, 'Not fit for Rm role \n', 154, '0000-00-00 00:00:00', 1),
(22989, 25341, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22990, 25344, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22991, 25322, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22992, 25332, 59, 3, 0, 'Communication Ok Can be trained in our roles will check in training', 89, '2025-06-13 07:41:48', 1),
(22993, 25331, 59, 3, 0, 'Communication Ok can be trained in our roles will check in training and confirm', 89, '2025-06-13 07:42:23', 1),
(22994, 25345, 30, 7, 3, 'suggested ctc 17k for dm monday joining', 154, '0000-00-00 00:00:00', 1),
(22995, 25348, 30, 5, 0, 'She has expecting high ctc she doesnxquott have  core related experience and sustainability its very doubt', 154, '0000-00-00 00:00:00', 1),
(22996, 25352, 89, 7, 0, 'average skills, silent person, job needed person . lets try and see 7 days training days. will allocated raja sekar team', 104, '0000-00-00 00:00:00', 1),
(22997, 25345, 60, 1, 0, NULL, 30, '2025-06-14 05:17:05', 1),
(22998, 25342, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22999, 25358, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23000, 25352, 59, 3, 0, 'Communication Ok career gap doing B.ED 5050 for our roles will check and confirm', 89, '2025-06-14 05:48:17', 1),
(23001, 25362, 105, 7, 0, 'candidate communication and performance is good.also he attend 3- training in FS Insurance.will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(23002, 25364, 105, 5, 0, 'candidate communication and performance is not good also he is not interacting much more in the interview process', 154, '0000-00-00 00:00:00', 1),
(23003, 25309, 155, 5, 0, 'Candidate is not clear about what next... he has mutiple thinking about his career want to become police preparing for that...  so not fit for sales', 154, '0000-00-00 00:00:00', 1),
(23004, 25351, 155, 5, 0, 'voice too low... Not opening up a lot.. not fit for sales', 154, '0000-00-00 00:00:00', 1),
(23005, 25369, 30, 7, 3, 'suggested ctc 22k friday joining for dm', 154, '0000-00-00 00:00:00', 1),
(23006, 25361, 155, 5, 0, 'candidate voice is not proper and looking for customer support max... thinking a lot for target and pressure.. will not sustain in our roles', 154, '0000-00-00 00:00:00', 1),
(23007, 25370, 155, 5, 0, 'worked in capital honda for 5 months. Got relieved last year june month after that not even try any job... candidate looks very childish will not sustain our roles', 154, '0000-00-00 00:00:00', 1),
(23008, 25338, 105, 5, 0, 'candidate communication and performance is not good also he is not interacting much more in the interview process.then he is shot temper', 154, '0000-00-00 00:00:00', 1),
(23009, 25371, 105, 5, 0, 'candidate communication and performance is not good also she is not interacting much more in the interview process.', 154, '0000-00-00 00:00:00', 1),
(23010, 25372, 105, 5, 0, 'candidate communication and performance is Little bit Good.Pressure not handle little bit sensitive type.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23011, 25114, 105, 7, 0, 'candidate communication is well.also his continuous peformance is good.will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(23012, 25362, 59, 3, 0, 'Communication Ok Can be trained in our roles will check in training and confirm', 105, '2025-06-16 04:54:23', 1),
(23013, 25343, 105, 5, 0, 'candidate communication and perfomance is good.but she is married also she is expecting less schedule time.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23014, 25114, 59, 3, 0, 'Fresher for our role will check abd confirm', 105, '2025-06-16 04:56:25', 1),
(23015, 25368, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23016, 25369, 60, 1, 0, NULL, 30, '2025-06-16 07:23:12', 1),
(23017, 25367, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23018, 25383, 105, 5, 0, 'candidate communication and performance is little bit ok.but activeness is very less.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23019, 25381, 105, 5, 0, 'candidate communication and performance is not good.also in her profile she mentioned experiance in SBI Life but she does not pitch in her old process.sustsainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23020, 25384, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23021, 25380, 89, 7, 0, 'Good skill. alredy experince at airtel. expet ctc  high. ', 154, '0000-00-00 00:00:00', 1),
(23022, 25379, 105, 7, 0, 'candidate communication and performacne is good.aslo He Performed well in the interview.but expected high salary.kindkly check it that once again.will check with him the training period', 154, '0000-00-00 00:00:00', 1),
(23023, 25380, 59, 3, 0, 'Communication Ok have exp in calling but not in sales location too long will check in training and confirm', 89, '2025-06-17 03:13:35', 1),
(23024, 25385, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23025, 25402, 89, 7, 0, 'Average skill. Need to understand 7 days of  training period . Provide Fresher salary', 154, '0000-00-00 00:00:00', 1),
(23026, 25399, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23027, 25398, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23028, 25391, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23029, 25407, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23030, 25407, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23031, 25406, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23032, 25405, 105, 5, 0, 'candidate communication and performance is not good.also her voice is loe and she is not performed in the one to one interview Process interaction', 154, '0000-00-00 00:00:00', 1),
(23033, 25404, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23034, 25403, 59, 5, 0, 'Pronunciation issues will not sustain in our roles not suitable', 154, '0000-00-00 00:00:00', 1),
(23035, 25379, 59, 3, 0, 'Have exp in calling but not in sales Can be trained in our roles and check\n', 105, '2025-06-18 03:32:47', 1),
(23036, 25401, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23037, 25402, 59, 3, 0, 'Communication Ok have exp in calling part time loan profile  can give a try and check in training', 89, '2025-06-18 06:17:10', 1),
(23038, 25396, 139, 5, 0, 'Not fit for RM role', 154, '0000-00-00 00:00:00', 1),
(23039, 25418, 105, 7, 0, 'candidate communication and performance is good.also her sales pitch is good.but will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(23040, 25415, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23041, 25419, 105, 5, 0, 'candidate communication and performance is good.but he not comfort for timing and out side appointment not suitable.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23042, 25423, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23043, 25422, 30, 5, 0, 'Its about yuvaraj shetty reference, same scenerio lack of communications and knowledge about sales . mathematical calculations.', 154, '0000-00-00 00:00:00', 1),
(23044, 25421, 30, 5, 0, 'No proper communication,lack of knowledge and experience.Sutainability issues . For our profile not suits. ', 154, '0000-00-00 00:00:00', 1),
(23045, 25418, 59, 3, 0, 'Communication ok can check in training ', 105, '2025-06-20 12:34:45', 1),
(23046, 25429, 105, 5, 0, 'candidate communication and performance is not good.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23047, 25432, 105, 5, 0, 'candidate communication and performance is not good.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23048, 25436, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23049, 25437, 155, 5, 0, 'candidate have experience of about 7 months in customer care executive but dont have any documents seems to be abscond..... have no clarity of exp... after that worked in steven holidays for 5 months and no documents for that also... seems to be doubt... sustainability doubts so not fit for our role', 154, '0000-00-00 00:00:00', 1),
(23050, 25438, 155, 5, 0, 'have exp in vizza for 4 months.... candidate is ok but currently doing dental treatment... he was not able to speak constantly for some time have some difficulty in speaking and have idea for digital marketing and IT full stack also ', 154, '0000-00-00 00:00:00', 1),
(23051, 25440, 105, 7, 0, 'candidate communication and performance is ok.but 5050 profile.nned to check in the training period', 154, '0000-00-00 00:00:00', 1),
(23052, 25442, 155, 5, 0, 'need to open a lot.... voice too low... so not fit for this profile', 154, '0000-00-00 00:00:00', 1),
(23053, 25446, 59, 5, 0, 'No basic ideas to profle she prefer too long distance not suitable for our roles', 159, '0000-00-00 00:00:00', 1),
(23054, 25441, 149, 7, 0, 'candidate was ok with communication and  interested in sales but look like slow learner  will try for 7days training', 154, '0000-00-00 00:00:00', 1),
(23055, 25441, 60, 1, 0, NULL, 149, '2025-06-20 05:02:06', 1),
(23056, 25426, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23057, 25425, 59, 5, 0, 'Need to open up a lot not suitable for our roles\n', 154, '0000-00-00 00:00:00', 1),
(23058, 25433, 59, 5, 0, 'No sustainability fresher for our roles ager around 28 have exp in customer support for an year Multiple career gap no clarity with the job profile he wants to enter.not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(23059, 25447, 59, 5, 0, 'Not a suitable profile too long distance no basic ideas in the profile', 154, '0000-00-00 00:00:00', 1),
(23060, 25448, 59, 5, 0, 'Not suitable for our roles no basic ideas of the profile she prefer to go not suitable', 154, '0000-00-00 00:00:00', 1),
(23061, 25449, 59, 5, 0, 'No qulaity profile too long distance not suitable for our roles\n', 154, '0000-00-00 00:00:00', 1),
(23062, 25454, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23063, 25444, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23064, 25455, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23065, 25453, 89, 7, 0, 'experince other filed. good skill. move to rajasekar team', 154, '0000-00-00 00:00:00', 1),
(23066, 25457, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23067, 25453, 59, 1, 0, NULL, 89, '2025-06-23 10:53:12', 1),
(23068, 25440, 59, 1, 0, NULL, 105, '2025-06-23 01:06:14', 1),
(23069, 25462, 57, 7, 0, 'Candidate is ok, 7m exp telecalling, pls cross check candidate family background, confirm the joining date xxamp Salary..', 154, '0000-00-00 00:00:00', 1),
(23070, 25466, 89, 7, 0, 'Already experienced at health insurance filed. But before 1 yr..  selected will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(23071, 25469, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23072, 25468, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23073, 25467, 139, 4, 0, 'SELECTED FOR NEXT ROUND FSC \nHaving 1.5 yr exp in loan sales \nwill try for FSC role', 154, '0000-00-00 00:00:00', 1),
(23074, 25470, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23075, 25463, 57, 5, 0, 'Candidate communication not good, distance long,,,salary exp high, reject the profile\n', 154, '0000-00-00 00:00:00', 1),
(23076, 25462, 59, 3, 0, 'Communication Ok have exp but not a relevant one can giev atry and check in traning', 57, '2025-06-23 04:58:35', 1),
(23077, 25465, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23078, 25473, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23079, 25466, 59, 3, 0, 'Communication Ok have exp in calling but gap is there can give a try and check n training', 89, '2025-06-23 06:06:45', 1),
(23080, 25475, 59, 3, 0, 'Suresh sir reference joining for VP role', 60, '0000-00-00 00:00:00', 1),
(23081, 25484, 89, 7, 0, 'alredy experince last yr 6 month at health insurance. good skill. ', 154, '0000-00-00 00:00:00', 1),
(23082, 25467, 18, 7, 3, 'Selected for Gnanshekar team as FSC. Can give 2ok as CTC and ready to join from monday 30 Jun', 139, '2025-06-24 01:07:21', 1),
(23083, 25486, 155, 5, 0, 'worked in textiles sales of about 5 years since college... worked for bajaj finance of almost 2 months in sales... looking for non voice more and doubts for sustainbility', 154, '0000-00-00 00:00:00', 1),
(23084, 25485, 89, 7, 0, 'already experinced at star health 6 month and bajaj finance loan . good skill . ', 154, '0000-00-00 00:00:00', 1),
(23085, 25477, 155, 5, 0, 'looking for non voice more... comuunication is good but thinking a lot for target and pressure.... sustainability doubts... so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23086, 25483, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23087, 25485, 59, 3, 0, 'Communication Ok have exp in calling but different domain verified the documents can give a try in outr roles and check', 89, '2025-06-24 02:00:55', 1),
(23088, 25484, 59, 3, 0, 'Communication Ok can be trained in our roles and check in traning have 6 months exp in same domain', 89, '2025-06-24 02:01:49', 1),
(23089, 25488, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23090, 25487, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23091, 25479, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23092, 25491, 105, 5, 0, 'candidate communication and performance is ok,but he said ,He is very emotional type,Sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23093, 25476, 155, 5, 0, 'lot of job changes in short period... having 1 yr kid  and expecting holidays in saturday.... sustainability doubts so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23094, 25490, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23095, 25492, 105, 5, 0, 'candidate communication and performance is ok,but he have some health issue Wheezing problem.so sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23096, 25493, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23097, 25505, 155, 5, 0, 'having must interest in photoshop and digital marketing... going classes and aking coaching for that also.... thinking a lot for target and pressure... sustainability doubts', 154, '0000-00-00 00:00:00', 1),
(23098, 25504, 155, 5, 0, 'voice too low.... Going for IT classes also and trying for jobs... very reserved need to open up a lot', 154, '0000-00-00 00:00:00', 1),
(23099, 25509, 155, 5, 0, 'thinking of distance a lot.... voice too low... very reserved....', 154, '0000-00-00 00:00:00', 1),
(23100, 25507, 155, 5, 0, 'voice too low and very soft voice.... distance also too long ', 154, '0000-00-00 00:00:00', 1),
(23101, 25511, 155, 5, 0, 'not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23102, 25506, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23103, 25501, 105, 5, 0, 'candidate communication and performance is ok.but his voice is low also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23104, 25495, 105, 5, 0, 'candidate communication is ok.but her performance is low bcos she have exp in star health ,but she doesxquott have product knowledge.aslo expected high salary', 154, '0000-00-00 00:00:00', 1),
(23105, 25478, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23106, 25515, 155, 5, 0, 'long gap in career due to family issue.... communication average but very childish... not fit in our roles', 154, '0000-00-00 00:00:00', 1),
(23107, 25516, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23108, 25513, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23109, 25512, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23110, 25518, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23111, 25514, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23112, 25503, 30, 7, 3, 'Suggeted 21k for dm ', 154, '0000-00-00 00:00:00', 1),
(23113, 25503, 60, 1, 0, NULL, 30, '2025-06-26 10:26:58', 1),
(23114, 25523, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23115, 25494, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23116, 25526, 59, 5, 0, 'Looking for non voice process ', 154, '0000-00-00 00:00:00', 1),
(23117, 25525, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23118, 25522, 105, 7, 0, 'Candidate Communication And Performance is good.but 5050 Profile ,little bit doubt in her pressure handling.will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(23119, 22656, 155, 5, 0, '2 years gap... trying for police exams and other govt jobs for past 2 yrs... now due to financial situation trying for job....  part time worked in lenovo show room sales... communication and slang not good... trying for IT jobs also....', 154, '0000-00-00 00:00:00', 1),
(23120, 24895, 155, 8, 0, 'did not turn up for further rounds', 155, '2025-06-26 06:22:08', 1),
(23121, 25522, 59, 3, 0, 'Communication Ok fresher for our roles holding IRDA number from Reliance need to get NOC on the same check in training', 105, '2025-06-27 11:04:00', 1),
(23122, 25546, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23123, 25542, 155, 5, 0, 'his tamil slang is kind of urdu mixed... mother tongue urdu.. very shy... need to open up a lot.. so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23124, 25539, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23125, 25554, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23126, 25557, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23127, 25534, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23128, 25558, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23129, 25540, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23130, 25560, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23131, 25530, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23132, 25552, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23133, 25552, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23134, 25528, 155, 5, 0, 'looking max for customer support... not open for sales thinking a lot... more interested in bike related things... did bike second hand buisness for about 1 year...', 154, '0000-00-00 00:00:00', 1),
(23135, 25538, 155, 5, 0, 'need to open up a lot.... very reserved not speaking that much... so not fit for sales', 154, '0000-00-00 00:00:00', 1),
(23136, 25467, 60, 1, 0, NULL, 18, '2025-06-27 05:08:15', 1),
(23137, 25570, 149, 5, 0, 'candidate was not ok with communication ,will not suitable for sales as he is not ready to speak and looking very slow', 154, '0000-00-00 00:00:00', 1),
(23138, 25569, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23139, 25574, 89, 7, 0, 'Over confidence person. Avarage skill . Will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(23140, 25573, 149, 7, 0, 'candidate was ok with communication and  interested in sales and incentives but not have any sales related experience and will check at 7days training period ', 154, '0000-00-00 00:00:00', 1),
(23141, 25553, 11, 4, 0, 'selected by gaurav sir ', 154, '0000-00-00 00:00:00', 1),
(23142, 25573, 60, 1, 0, NULL, 149, '2025-06-28 01:31:05', 1),
(23143, 25567, 149, 7, 0, 'CANDIDATE WAS GOOD AT COMMUNICATION INTERESTED IN SALES AND INCENTIVES AND ACTIVE LETS TRY FOR 7DAYS TRAINING PERIOD ', 154, '0000-00-00 00:00:00', 1),
(23144, 25582, 89, 7, 0, 'Avarage skill. Fresher. But intersted person. So 7 days training will update ', 154, '0000-00-00 00:00:00', 1),
(23145, 25577, 89, 7, 0, 'Alredy Experienced another field tele calling. Will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(23146, 25572, 155, 5, 0, 'have a career gap... was doing finance buisness with his father... now stopped due to father health issue.. now looking for job... need to open up a lot... giving only one word answer... not fit for sales', 154, '0000-00-00 00:00:00', 1),
(23147, 25574, 59, 3, 0, 'communication Ok fresher for our roles over confidence will check intraining and confirm', 89, '2025-06-28 03:54:38', 1),
(23148, 25577, 59, 3, 0, 'Communication ok have few months exp 5050 for our roles need to check in training and confirm', 89, '2025-06-28 03:56:16', 1),
(23149, 25582, 60, 1, 0, NULL, 89, '2025-06-28 03:57:19', 1),
(23150, 25576, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23151, 25583, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23152, 25580, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23153, 25602, 156, 7, 0, 'candidate ok , communication average. provide the fresher salary. kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(23154, 25599, 89, 7, 0, 'good skill. experince at tele calling . expection high .', 154, '0000-00-00 00:00:00', 1),
(23155, 25588, 149, 7, 0, 'candidate was good at communication and also \ninterested in sales and  incentives have laptop we shall provide 16k as salary and ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(23156, 25579, 149, 7, 0, 'candidate was good at communication and also have basic experience in sales showing interest in sales need of a job lets try  it for  7 days training period ', 154, '0000-00-00 00:00:00', 1),
(23157, 25592, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23158, 25604, 140, 4, 0, 'sELECTED, FRESHER, HAVE TO TRAIN AND SEE', 154, '0000-00-00 00:00:00', 1),
(23159, 25591, 105, 5, 0, 'candidate communication and performance is ok.but his voice is low also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23160, 25590, 57, 7, 0, 'Candidate is ok, communication average , exp 1yr. confirm the  salary xxamp joining date', 154, '0000-00-00 00:00:00', 1),
(23161, 25605, 155, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23162, 25541, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23163, 25599, 59, 1, 0, NULL, 89, '2025-06-30 03:27:18', 1),
(23164, 25593, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23165, 25612, 59, 5, 0, 'Not suitable for oour roles', 154, '0000-00-00 00:00:00', 1),
(23166, 25613, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23167, 25611, 59, 5, 0, 'Looking for core IT profile not suitable', 154, '0000-00-00 00:00:00', 1),
(23168, 25600, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23169, 25579, 60, 1, 0, NULL, 149, '2025-06-30 07:01:35', 1),
(23170, 25588, 60, 1, 0, NULL, 149, '2025-06-30 07:23:38', 1),
(23171, 25567, 60, 1, 0, NULL, 149, '2025-07-01 10:24:48', 1),
(23172, 25630, 57, 7, 0, 'Candidate is ok, fresher communication average, pls provide fresher salary.. confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23173, 25628, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23174, 25633, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23175, 25555, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23176, 25621, 30, 7, 3, 'She is expecting high salary but suggested 22 to 23k for dm', 104, '0000-00-00 00:00:00', 1),
(23177, 25625, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23178, 25627, 30, 5, 0, 'Not suit for our job', 104, '0000-00-00 00:00:00', 1),
(23179, 25621, 60, 1, 0, NULL, 30, '2025-07-01 02:54:28', 1),
(23180, 25617, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23181, 25598, 30, 5, 0, 'Not suit for our job', 154, '0000-00-00 00:00:00', 1),
(23182, 25608, 30, 5, 0, 'Not suit for our job', 154, '0000-00-00 00:00:00', 1),
(23183, 25606, 30, 5, 0, 'Not suit for our job', 154, '0000-00-00 00:00:00', 1),
(23184, 25635, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23185, 25630, 59, 3, 0, 'communication Ok Fresher for our sales roles can give a try and check in training ', 57, '2025-07-01 03:50:07', 1),
(23186, 25631, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23187, 25634, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23188, 25619, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23189, 25602, 59, 3, 0, 'Communication Ok 5050 profile for our roles need to check in training and confirm', 156, '2025-07-01 04:28:42', 1),
(23190, 25653, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23191, 25655, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23192, 25654, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23193, 25658, 149, 7, 0, 'candidate  was  good at communication and also have experience in sales and interested in incentives and we shall provide salary as hr team suggested and also ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(23194, 25662, 59, 5, 0, 'Core IT profile and for time being looking into this will not sustain', 154, '0000-00-00 00:00:00', 1),
(23195, 25656, 59, 5, 0, 'open for non voice only not for sales calling', 154, '0000-00-00 00:00:00', 1),
(23196, 25657, 59, 5, 0, 'looking for non voice process only', 154, '0000-00-00 00:00:00', 1),
(23197, 25660, 154, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23198, 25661, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23199, 25648, 156, 7, 0, 'candidate is ok , communication average. provide the fresher salary.kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23200, 25624, 57, 7, 0, 'Candidate is ok, communication average,pls cross check candidate sustainability. pls  confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23201, 25624, 59, 3, 0, 'Communication Ok have exp but not in relevant seems to be fit for our roles let us try and confirm in training', 57, '2025-07-02 01:23:54', 1),
(23202, 25649, 139, 4, 0, 'selected for RM role ', 154, '0000-00-00 00:00:00', 1),
(23203, 24220, 105, 5, 0, 'candidate communication and performance is ok.but his voice is low also sustainable is doubt', 105, '2025-07-02 02:59:35', 1),
(23204, 25604, 29, 7, 3, 'selected for porrselvan team', 140, '2025-07-02 03:18:51', 1),
(23205, 25607, 149, 7, 0, 'candidate  was good at communication and also looking interest in sales and  incentives also have laptop  and ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(23206, 25545, 105, 5, 0, 'candidate communication and performance is not good.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23207, 25663, 105, 5, 0, 'Candidate communication is little bit ok and performance is not good.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23208, 25648, 59, 3, 0, 'Communication Ok let us check in training and confirm ', 156, '2025-07-02 03:47:01', 1),
(23209, 25590, 59, 3, 0, 'Communication Ok 5050 First day dropped by Gopi and reschedule with Syed and got selected for his team let us try and confirm in training', 57, '2025-07-02 05:22:58', 1),
(23210, 25658, 60, 1, 0, NULL, 149, '2025-07-02 06:17:01', 1),
(23211, 25604, 59, 3, 0, 'Communication Ok Have exp but not in relevant one need to train and open to learn can give a try and check', 29, '2025-07-02 06:31:29', 1),
(23212, 25553, 59, 3, 0, 'Communication Ok have exp in calling but not a relevant one need to check n training and confirm', 11, '2025-07-02 06:31:53', 1),
(23213, 25644, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23214, 25670, 156, 7, 0, 'candidate is ok, communication average. 2 years experience for medical clinic. pls cross check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23215, 25668, 105, 5, 0, 'candidate communication and performance is not well.also he couldxquott interact well.sustainable is doubt...', 154, '0000-00-00 00:00:00', 1),
(23216, 25671, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23217, 25674, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23218, 25636, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23219, 25670, 59, 3, 0, 'Communication Ok Need to check in training and confirm long career gap', 156, '2025-07-03 03:55:23', 1),
(23220, 25680, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23221, 25679, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23222, 25672, 59, 5, 0, 'Communcation Good But too long distance daily travel not possible will not sustain', 154, '0000-00-00 00:00:00', 1),
(23223, 25664, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23224, 25677, 149, 7, 0, 'candidate was ok with communication and also interested in sales and incentives she was fresher and but she was trying to speak at the time of  interview and also ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(23225, 25673, 139, 4, 0, 'Selected for RM role ', 154, '0000-00-00 00:00:00', 1),
(23226, 25684, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23227, 25675, 57, 7, 0, 'Candidate is ok, communication good, Kindly cross check, confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(23228, 25689, 105, 7, 0, 'Candidate communication and performance is good.But 5050 will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(23229, 25637, 149, 7, 0, 'candidate was good at communication  and intersted in sales also have experience in sales related as part time ,distance only the issue but candidate was not having any issues in that ,she was also ok for immediate joining ', 154, '0000-00-00 00:00:00', 1),
(23230, 25693, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23231, 25691, 89, 7, 0, 'alredy experience at non voice. good skill.  ', 154, '0000-00-00 00:00:00', 1),
(23232, 25688, 149, 5, 0, 'CANDIDATE WAS NOT AT SPEAKING SO RESERVED  EVEN I TRIED TO LET HER SPEAK AND  SO  SHE WILL NOT BE SUITABLE FOR SALES', 154, '0000-00-00 00:00:00', 1),
(23233, 25637, 60, 1, 0, NULL, 149, '2025-07-04 02:38:00', 1),
(23234, 25677, 60, 1, 0, NULL, 149, '2025-07-04 02:55:34', 1),
(23235, 25632, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23236, 25686, 139, 4, 0, 'Selected next round \nWill try for FSC', 104, '0000-00-00 00:00:00', 1),
(23237, 25675, 59, 3, 0, 'Communication Good seems to put effort in learning can give a try and check in training', 57, '2025-07-04 05:01:18', 1),
(23238, 25691, 59, 3, 0, 'Communication Ok have exp in non voice only based on the manager commitment proceeded with 1.92 LPA can give a try and check', 89, '2025-07-04 05:04:05', 1),
(23239, 25607, 60, 1, 0, NULL, 149, '2025-07-05 11:28:47', 1),
(23240, 25689, 59, 3, 0, 'Communication Ok Reference profile can give a try and check in training', 105, '2025-07-05 12:09:19', 1),
(23241, 25683, 149, 7, 0, 'CANDIDATE WAS GOOD AT COMMUNICATION AND BOLD ALSO HAVE INTERESTED IN SALES  AND  HE ASLO HAVE LAPTOP AND OK FOR IMMEDIATE JOINING', 154, '0000-00-00 00:00:00', 1),
(23242, 25694, 149, 7, 0, 'candidate was ok with communication but not so good at basic english ,job needed and interested  lets try for 7days  training', 154, '0000-00-00 00:00:00', 1),
(23243, 25708, 156, 7, 0, 'candidate is ok, communication average. 1.6 years experionce IT.  5months working tele marketing, please cross check sustainability and kindly confirm joining date.', 154, '0000-00-00 00:00:00', 1),
(23244, 25683, 60, 1, 0, NULL, 149, '2025-07-05 01:20:18', 1),
(23245, 25694, 60, 1, 0, NULL, 149, '2025-07-05 01:24:53', 1),
(23246, 25709, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23247, 25711, 29, 7, 3, 'Porrselvan Team, Sal 20K, can incres 2k if completed 2 lac biz in July 2025.', 154, '0000-00-00 00:00:00', 1),
(23248, 25712, 29, 7, 3, 'Karthika Team', 154, '0000-00-00 00:00:00', 1),
(23249, 25713, 59, 5, 0, 'Not open to speak will not sustain and not suitable', 154, '0000-00-00 00:00:00', 1),
(23250, 25643, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23251, 25665, 59, 5, 0, 'Not suitable for our roles m,uch interested to work in designing based roles only\n', 104, '0000-00-00 00:00:00', 1),
(23252, 25707, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23253, 25710, 105, 5, 0, 'candidate communication and performance is not good.also she was not active.then sustainable is doubt...', 104, '0000-00-00 00:00:00', 1),
(23254, 25714, 59, 5, 0, 'No confident to speak not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(23255, 25715, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23256, 25717, 57, 7, 0, 'candidate is ok , communication average 2.5 yrs exp. same telecalling . confirm the joining date and salary..', 104, '0000-00-00 00:00:00', 1),
(23257, 25711, 59, 3, 0, 'Communication Ok Have exp in Shriram and vizza can give a try and check in training', 29, '2025-07-05 06:31:21', 1),
(23258, 25718, 57, 5, 0, 'candidate is not ok for sales profile.. communication average. reject the profile..', 104, '0000-00-00 00:00:00', 1),
(23259, 25717, 59, 3, 0, 'Communication Ok have exp in calling for more than 2 yrs but in our roles pressure handling need to check will check in training', 57, '2025-07-05 06:52:38', 1),
(23260, 25712, 59, 3, 0, 'Communication Ok have exp in renewal lots of job switches will check in training and confirm', 29, '2025-07-05 06:56:02', 1),
(23261, 25722, 57, 7, 0, 'Candidate is ok, 1 yr experience Star Health insurance .product knowledge good, confirm the joining date xxamp Salary..(Sathya)', 154, '0000-00-00 00:00:00', 1),
(23262, 25703, 57, 7, 0, 'candidate is ok . communication average, just try 7 days of training periond. confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23263, 25725, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23264, 25728, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23265, 25616, 59, 5, 0, 'Not suitable for our roles career gap he was into own business  time being he s looking for as he is getting married asap\n', 154, '0000-00-00 00:00:00', 1),
(23266, 25708, 59, 1, 0, NULL, 156, '2025-07-07 01:10:55', 1),
(23267, 25731, 59, 5, 0, 'he is openly interested to work in non voice process only', 154, '0000-00-00 00:00:00', 1),
(23268, 25729, 59, 5, 0, 'Looking for non voice process only ', 154, '0000-00-00 00:00:00', 1),
(23269, 25730, 140, 4, 0, 'Selected for next round, selected by gaurav sir also\n', 154, '0000-00-00 00:00:00', 1),
(23270, 25727, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23271, 25724, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23272, 25732, 155, 5, 0, 'worked in  field sales for 1 year due to jaundice got relieved... and then worked in muthoot for 7 months in sales and operations relieved due to same reaosn... i suspect the reason is not true.. and more looking for operations only.. so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23273, 25726, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23274, 25721, 57, 7, 0, 'candidate is ok, fresher but way of approach Good, product explain all r good.provide 15k salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23275, 25716, 59, 5, 0, 'he is not open for sales calling looking for HR profile only but not suitable for us\n', 154, '0000-00-00 00:00:00', 1),
(23276, 25722, 59, 3, 0, 'Communication Ok have exp but no documents for that need to check the BGV His friend Pooja also selected seems to check indepth', 57, '2025-07-07 04:41:59', 1),
(23277, 25721, 59, 1, 0, NULL, 57, '2025-07-07 04:43:18', 1),
(23278, 25703, 59, 3, 0, 'Communication Ok fresher GYM work part time let us try in training anf confirm', 57, '2025-07-07 04:44:18', 1),
(23279, 25739, 155, 5, 0, 'Looking for IT xxamp not much comfortable in working with sales and targets so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23280, 25740, 155, 5, 0, 'Looking for IT max. Need to open up a lot. Giving only one word answer', 154, '0000-00-00 00:00:00', 1),
(23281, 25706, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23282, 25706, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23283, 25741, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23284, 25742, 59, 5, 0, 'Not much aggressive to the sales need to explore a lot will not handle pressure', 154, '0000-00-00 00:00:00', 1),
(23285, 25743, 59, 5, 0, 'preferred for non voice process only', 154, '0000-00-00 00:00:00', 1),
(23286, 25744, 59, 5, 0, 'not suitable for our role just for sake he is looking a job totally a waste profile', 154, '0000-00-00 00:00:00', 1),
(23287, 25745, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23288, 25746, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23289, 25682, 59, 5, 0, 'Have exp in sales but he got terminated in his previous for mislead and unproefssional business ', 154, '0000-00-00 00:00:00', 1),
(23290, 25685, 57, 5, 0, 'candidate not suitable for voice process, communication not good, active level low,, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23291, 25736, 156, 7, 0, 'candidate is ok , communication average. provide the fresher salary. kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23292, 25730, 60, 1, 0, NULL, 140, '2025-07-08 07:15:30', 1),
(23293, 25686, 18, 7, 3, 'Selected for Gnanashekar Team. Ready to Join on monday. Expected 20k Take home and can provide ', 139, '2025-07-09 11:01:41', 1),
(23294, 25673, 18, 5, 0, 'Not fit for sales', 139, '2025-07-09 11:02:05', 1),
(23295, 25649, 18, 7, 3, 'Selected for Gnanashekar Team. Ready to Join next week. Ask him the specifc date preferably by monday. Also please negotiate the salary as per your observation', 139, '2025-07-09 11:41:04', 1),
(23296, 25752, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23297, 25623, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23298, 25754, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23299, 25755, 57, 5, 0, 'candidate is unfit for sales. communication not good, distance too long, reject', 154, '0000-00-00 00:00:00', 1),
(23300, 25763, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23301, 25749, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23302, 25761, 59, 5, 0, 'Not suitable for our sales roles will not handle our work pressure in sales much prefer to go with non voice\n', 154, '0000-00-00 00:00:00', 1),
(23303, 25762, 59, 5, 0, 'Fresher and much preferred to work in non voice will not handle our sales task', 154, '0000-00-00 00:00:00', 1),
(23304, 25758, 59, 5, 0, 'Communication Ok but not to open without friends sustainability doubts in this profile', 154, '0000-00-00 00:00:00', 1),
(23305, 25760, 156, 7, 0, 'candidate is ok, communication average. 9months experience for Kotak Mahindra Bank. please cross check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23306, 25753, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23307, 25753, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23308, 25686, 60, 1, 0, NULL, 18, '2025-07-10 11:01:53', 1),
(23309, 25649, 60, 1, 0, NULL, 18, '2025-07-10 11:37:30', 1),
(23310, 25767, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23311, 25769, 156, 7, 0, 'candidate is ok, communication good. provide the fresher salary, kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23312, 25772, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23313, 25771, 57, 7, 0, 'Candidate is ok, 10m experience insurance, product knowledge ok , communication good, pls cross check characterwise like way of talk xxamp Approach. confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(23314, 25768, 57, 7, 0, 'candidate is ok, communication good, bolt character, provide 15k Salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23315, 25773, 59, 5, 0, 'Looking for IT openings not suitable for us', 154, '0000-00-00 00:00:00', 1),
(23316, 25768, 59, 3, 0, 'Communication Ok fresher for our roles sounds good can be trained in our roles', 57, '2025-07-10 03:33:58', 1),
(23317, 25771, 59, 3, 0, 'Communication Ok have exp in star health sales in autobobile can give a try and check in training last year also attended ', 57, '2025-07-10 03:35:48', 1),
(23318, 25769, 59, 3, 0, 'Communication Ok fresher for our roles sounds good can be trained in our roles', 156, '2025-07-11 09:56:14', 1),
(23319, 25736, 59, 1, 0, NULL, 156, '2025-07-11 09:57:54', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(23320, 25784, 30, 5, 0, 'Not suit for our job', 154, '0000-00-00 00:00:00', 1),
(23321, 25785, 30, 5, 0, 'sustainability language issues', 154, '0000-00-00 00:00:00', 1),
(23322, 25735, 30, 7, 3, 'Selected for rm immediate joining expected 27k but suggested 25k due to 1year gap ', 154, '0000-00-00 00:00:00', 1),
(23323, 25786, 59, 5, 0, 'Not suitable for our roles will not sustain', 154, '0000-00-00 00:00:00', 1),
(23324, 25787, 59, 5, 0, 'Not suitable for our roles will not sustain', 154, '0000-00-00 00:00:00', 1),
(23325, 25789, 59, 5, 0, 'Not open for sales calls he s into model profile and just for sake he attended the interview', 154, '0000-00-00 00:00:00', 1),
(23326, 25783, 57, 7, 0, 'Candidate unfit for sales profile, communication not good, lack of confident , reject the profile', 154, '0000-00-00 00:00:00', 1),
(23327, 25778, 105, 5, 0, 'candidate communication and performamce is not good.his voice is low nad he is not intereacting much more in the one to one process.Sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23328, 25779, 105, 5, 0, 'candidate communication and performamce is ok.but hi active is less also long distance.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23329, 25788, 57, 5, 0, 'Candidate unfit for sales profile, communication not good, lack of confident , reject the profile', 154, '0000-00-00 00:00:00', 1),
(23330, 25791, 57, 5, 0, 'Candidate unfit for sales profile, communication not good, lack of confident ,she having Wheezing problem xxamp Thyroid,some health issues, reject the profile...', 154, '0000-00-00 00:00:00', 1),
(23331, 25792, 57, 5, 0, 'Candidate unfit for sales profile, communication not good, lack of confident ,she having bp xxamp Some health issues, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23332, 25782, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23333, 25774, 105, 5, 0, 'candidate communication is ok but her performance is not good.also sustainable is doubt...', 154, '0000-00-00 00:00:00', 1),
(23334, 25747, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23335, 25781, 155, 5, 0, 'communication average. Looking more for MLT.. more dependent on parents will not sustain for our roles', 154, '0000-00-00 00:00:00', 1),
(23336, 25799, 155, 5, 0, 'pronouncation of words is not accurate and not much interested in insurance sales.. so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23337, 25808, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23338, 25801, 59, 5, 0, 'Not a relevant profile will fit for office assistant roles only', 154, '0000-00-00 00:00:00', 1),
(23339, 25790, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23340, 25794, 59, 5, 0, 'Need to open up a lot will not handle our work roles', 154, '0000-00-00 00:00:00', 1),
(23341, 25793, 59, 5, 0, 'Not suitable for our roles Long gap in communicating will not fit for our roles ', 154, '0000-00-00 00:00:00', 1),
(23342, 25800, 59, 5, 0, 'Need to open up a lot will not handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(23343, 25810, 156, 7, 0, 'candidate is ok, communication average. 1 year experionce for sales executive. please cross check sustainability and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23344, 25798, 57, 7, 0, 'Candidate is ok, 3 years Experience kazeem seen the Candidate, Product Knowledge and Communication good, confirm the joining and  salary ', 154, '0000-00-00 00:00:00', 1),
(23345, 25735, 60, 1, 0, NULL, 30, '2025-07-11 06:32:16', 1),
(23346, 25813, 59, 5, 0, 'have exp in non voice xxamp teaching fresher for sales exp salary alos pressure handling doubts in this role', 154, '0000-00-00 00:00:00', 1),
(23347, 25783, 59, 1, 0, NULL, 57, '2025-07-12 12:06:26', 1),
(23348, 25812, 30, 7, 3, 'selected for dm suggested ctc 16k for the fresher', 154, '0000-00-00 00:00:00', 1),
(23349, 25814, 156, 7, 0, 'candidate is ok , communication good. 11 months experience Telesales. please cross check sustainability and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23350, 25816, 59, 5, 0, 'Communication Average not suitablr for sales calling will not sustain', 154, '0000-00-00 00:00:00', 1),
(23351, 25814, 59, 3, 0, 'Communication Ok have exp in sales calling can be trained in our roles and check', 156, '2025-07-12 05:35:32', 1),
(23352, 25810, 59, 3, 0, 'Communication Ok Career Gap he had recently completed graducation and lookin for job will check in training have exp in Jio fiber calls ', 156, '2025-07-12 05:40:33', 1),
(23353, 25798, 59, 3, 0, 'Selecetd for RE Role Health Have exp in same for 3yrs can be trained to our process let us try', 57, '2025-07-12 05:47:40', 1),
(23354, 25815, 57, 5, 0, 'candidate is not ok for sales , over performance , sustainability issues, reject the profile...', 154, '0000-00-00 00:00:00', 1),
(23355, 25817, 59, 5, 0, 'pronunciation no clear sustinability doubts\n', 154, '0000-00-00 00:00:00', 1),
(23356, 25821, 57, 5, 0, 'candidate is unfit for sales, communication not good, Lack of confidents, pressure handling, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23357, 25828, 57, 5, 0, 'candidate is unfit for sales, communication not good, Lack of confidents, pressure handling, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23358, 25805, 57, 7, 0, 'candidate is ok, lets try 7 days of training period , sathya ', 154, '0000-00-00 00:00:00', 1),
(23359, 25765, 59, 5, 0, 'communication Ok but not much comfort with the salary her exp is high', 154, '0000-00-00 00:00:00', 1),
(23360, 25836, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23361, 25820, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23362, 25805, 59, 3, 0, 'Communication Ok Fresher for our roles can give a try and check in training', 57, '2025-07-14 01:36:01', 1),
(23363, 25842, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23364, 25841, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23365, 25843, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23366, 25840, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23367, 25844, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23368, 25812, 60, 1, 0, NULL, 30, '2025-07-14 03:00:26', 1),
(23369, 25848, 155, 5, 0, 'looking for IT.... Not at all interested in sales... ', 154, '0000-00-00 00:00:00', 1),
(23370, 25849, 155, 5, 0, 'communication not good, not interested in sales looking for non voice, customer support and IT job', 154, '0000-00-00 00:00:00', 1),
(23371, 25835, 59, 5, 0, 'Need to open up a lot pressure handling doubts will not sustain for a long', 154, '0000-00-00 00:00:00', 1),
(23372, 25839, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary. kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23373, 25838, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23374, 25850, 30, 7, 3, 'selected for rm he will join august 1st suggested ctc 25k', 154, '0000-00-00 00:00:00', 1),
(23375, 25826, 30, 5, 0, 'Communication issues and also he worked previously in driving field. he will not sustain also our profile.', 154, '0000-00-00 00:00:00', 1),
(23376, 25829, 59, 5, 0, 'Too long distance Pressure handling doubts ', 154, '0000-00-00 00:00:00', 1),
(23377, 25830, 59, 5, 0, 'too long distance open for non voice much', 154, '0000-00-00 00:00:00', 1),
(23378, 25831, 59, 5, 0, 'Not suitable fr our roles\n', 154, '0000-00-00 00:00:00', 1),
(23379, 25832, 59, 5, 0, 'Not open up no confidence seems to be very lag', 154, '0000-00-00 00:00:00', 1),
(23380, 25846, 59, 5, 0, 'Attitude very casual too long distance will not sustain', 154, '0000-00-00 00:00:00', 1),
(23381, 25839, 59, 3, 0, 'Communication Ok 5050 Can be trained and check in our roles check in training', 156, '2025-07-14 05:13:32', 1),
(23382, 25760, 59, 1, 0, NULL, 156, '2025-07-14 05:16:12', 1),
(23383, 25851, 30, 5, 0, 'Lack of communication in english he will not sustain, he will be strong on tamil only', 104, '0000-00-00 00:00:00', 1),
(23384, 25850, 60, 1, 0, NULL, 30, '2025-07-14 06:26:09', 1),
(23385, 25859, 59, 5, 0, 'Too long distance also he needs to open up a lot ', 154, '0000-00-00 00:00:00', 1),
(23386, 25858, 59, 5, 0, 'She need to open up a lot given some time too but she didnt', 154, '0000-00-00 00:00:00', 1),
(23387, 25860, 59, 5, 0, 'he needs to open up a lot will not handle our sales pressure', 154, '0000-00-00 00:00:00', 1),
(23388, 25863, 59, 5, 0, 'Open for non voice process only', 154, '0000-00-00 00:00:00', 1),
(23389, 25862, 59, 5, 0, 'Looking for non voice process\n', 154, '0000-00-00 00:00:00', 1),
(23390, 25861, 57, 7, 0, 'candidate is ok, communication good. confirm the joining date xxamp salary', 154, '0000-00-00 00:00:00', 1),
(23391, 25864, 59, 5, 0, 'Comfort to work in  non voice and data entry profiles only', 154, '0000-00-00 00:00:00', 1),
(23392, 25865, 59, 5, 0, 'he is open for non voice only', 154, '0000-00-00 00:00:00', 1),
(23393, 25867, 59, 5, 0, 'Not open for field visit seems not much comfort to worj in this domain', 154, '0000-00-00 00:00:00', 1),
(23394, 25866, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23395, 25856, 149, 7, 0, 'candidate was ok with the communication,have some idea about insurance but fresher so lets try for 7days training period and ok for immediate  joining', 154, '0000-00-00 00:00:00', 1),
(23396, 25868, 59, 5, 0, 'Too long distance and not much comfort with field sales', 154, '0000-00-00 00:00:00', 1),
(23397, 25871, 59, 5, 0, 'Too long distane not suitable for our roles too will not sustain and handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(23398, 25764, 59, 5, 0, 'Fresher for Sales he is much for marketing but not open to call the customers continously also his salary exp is very high will not sustain and handle', 154, '0000-00-00 00:00:00', 1),
(23399, 25873, 57, 7, 0, 'candidate is ok, communication good, 10m experience, policy bazaar , pls confirm the joining date, deshwaran team.', 154, '0000-00-00 00:00:00', 1),
(23400, 25883, 59, 5, 0, 'Communication not clear just a push from consultancy', 154, '0000-00-00 00:00:00', 1),
(23401, 25869, 59, 5, 0, 'Still into Studies he will not handle our work pressure not much suits for our roles frequent leaves will be availed ', 154, '0000-00-00 00:00:00', 1),
(23402, 25884, 105, 7, 0, 'candidate communication and performance is good.will check eith him in the training period', 154, '0000-00-00 00:00:00', 1),
(23403, 25887, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23404, 25847, 59, 5, 0, 'Location traevl doubts focus much for IT will not sustain and handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(23405, 25861, 59, 3, 0, 'Fresher Communication Ok Can be trained in our roles and check', 57, '2025-07-16 12:37:34', 1),
(23406, 25873, 59, 3, 0, 'Communication Ok have 10 months exp in policy bazaar can be trained and check in training', 57, '2025-07-16 12:38:28', 1),
(23407, 25856, 60, 1, 0, NULL, 149, '2025-07-16 12:57:20', 1),
(23408, 25893, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23409, 25894, 59, 5, 0, 'Focus for IT vacancies not suitable for our roles\n', 154, '0000-00-00 00:00:00', 1),
(23410, 25895, 59, 5, 0, 'Much suits for non voice process only \n', 154, '0000-00-00 00:00:00', 1),
(23411, 25890, 30, 7, 3, 'Selected for dm reference from suraj suggested 3.2lac ctc cross check previous one monday will join', 154, '0000-00-00 00:00:00', 1),
(23412, 25880, 30, 5, 0, 'Lack of communication and experience', 154, '0000-00-00 00:00:00', 1),
(23413, 25896, 30, 5, 0, 'lack of communication and sustainability issues', 154, '0000-00-00 00:00:00', 1),
(23414, 25890, 60, 1, 0, NULL, 30, '2025-07-16 04:45:13', 1),
(23415, 25899, 59, 5, 0, 'No clarity with the exp mentioned seems to give stories a lot will not sustain', 154, '0000-00-00 00:00:00', 1),
(23416, 25904, 59, 5, 0, 'Not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(23417, 25901, 57, 5, 0, 'candidate is ok, but she having some personal issues there, mentally she affected, so unfit for sales profile', 154, '0000-00-00 00:00:00', 1),
(23418, 25884, 59, 3, 0, 'Communication Ok Fresher open to learn can give a try and check in training', 105, '2025-07-16 05:45:11', 1),
(23419, 25885, 59, 5, 0, 'Long career Gap fresher already holding an offer for 2.4 with IDBI just for addtional opportunities she is looking will not join us not much suitable too', 154, '0000-00-00 00:00:00', 1),
(23420, 25911, 57, 5, 0, 'candidate is unfit for sales,, communication not good, lack of confident, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23421, 25900, 105, 7, 0, 'CANDIDATE COMMUNICATION AND PERFORMANCE IS OK.5050 PROFILE WILL CHECK WITH HER IN THE TRAINING PERIOD.BUT DISTANCE IS LONG LITTLE BIT SUSTAINABLE DOUBT', 154, '0000-00-00 00:00:00', 1),
(23422, 25912, 59, 5, 0, 'Complete airtel customer support exp as team leader much comfort to work in that domain only she will not sustain more than a year in back office too if she comes back for sales let us try', 154, '0000-00-00 00:00:00', 1),
(23423, 25913, 59, 5, 0, 'He is open for B2B process only and holding an offer with Justdial not open for direct sales', 154, '0000-00-00 00:00:00', 1),
(23424, 25900, 59, 3, 0, 'Fresher Communication Ok location long need to check in training and confirm', 105, '2025-07-17 02:53:04', 1),
(23425, 25915, 59, 5, 0, 'complete non voice exp Pressure handling doubts in this profile long run doubts ', 154, '0000-00-00 00:00:00', 1),
(23426, 25914, 59, 5, 0, 'Not suitable for our sales communication pronunciation not much clear', 154, '0000-00-00 00:00:00', 1),
(23427, 25888, 30, 7, 4, 'Selected for dm suggested ctc upto 20k monday joining ', 104, '0000-00-00 00:00:00', 1),
(23428, 25888, 60, 1, 0, NULL, 30, '2025-07-17 07:06:08', 1),
(23429, 25916, 59, 5, 0, 'Not suitable for our roles already joined FS insurance and absconded in 2 days as she is not comfort to work in this domain\n', 154, '0000-00-00 00:00:00', 1),
(23430, 25920, 59, 5, 0, 'Much suits for non voice only\n', 154, '0000-00-00 00:00:00', 1),
(23431, 25872, 59, 3, 0, 'Communication Ok have exp in Policy Bazaar hired for RM role syed team need to check  in trainign', 57, '2025-07-19 12:40:28', 1),
(23432, 25934, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23433, 25930, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23434, 23848, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23435, 25935, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23436, 25926, 59, 5, 0, 'Communication Average reviewed using the content writing but not upto the expectation for our support roles ', 154, '0000-00-00 00:00:00', 1),
(23437, 25927, 59, 5, 0, 'Much focus for Customer support roles but will not sustain for a long in our profile not suitable', 154, '0000-00-00 00:00:00', 1),
(23438, 25933, 59, 5, 0, 'Looking for customer care not open for target ', 154, '0000-00-00 00:00:00', 1),
(23439, 25928, 59, 5, 0, 'will suitable for non voice only', 154, '0000-00-00 00:00:00', 1),
(23440, 25947, 59, 5, 0, 'Looking for non voice process much will not sustain in our roles', 154, '0000-00-00 00:00:00', 1),
(23441, 25937, 59, 5, 0, 'Not suitable for our roles ', 154, '0000-00-00 00:00:00', 1),
(23442, 25929, 59, 5, 0, 'Fro time being he is looking into this much looking for UI/UX', 154, '0000-00-00 00:00:00', 1),
(23443, 25958, 59, 5, 0, 'Completely looking for non voice process not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(23444, 25957, 105, 5, 0, 'candidate communication and performacne is not good.aslo she is not Interesact More.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23445, 25955, 105, 5, 0, 'candidate communication and performacne is not good.aslo she is not activeness.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23446, 25964, 149, 5, 0, 'ok with communication but not sure about her stability because she was interested it jobs also', 154, '0000-00-00 00:00:00', 1),
(23447, 25962, 109, 5, 0, 'not fit for our team', 154, '0000-00-00 00:00:00', 1),
(23448, 25959, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23449, 25965, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23450, 25966, 155, 5, 0, 'communication not good', 154, '0000-00-00 00:00:00', 1),
(23451, 25963, 105, 5, 0, 'candidate communication and performacne is not good.aslo He is lethagicaly Answered And  sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23452, 25971, 57, 5, 0, 'candidate is ok, but he doing own photography business, so need leaves bcz of met appt, so not suitable for our field,..', 154, '0000-00-00 00:00:00', 1),
(23453, 25949, 149, 7, 0, 'good at communication ,in english and having interest in sales  not sure about stability lets try for training  period', 154, '0000-00-00 00:00:00', 1),
(23454, 25931, 155, 5, 0, 'candidate communication is ok but seems to be telling lie... two year went to UK for studies but due to health issue dropped college , worked their for part time clear debts.... have exp for 2 months in hdb before ...  ', 154, '0000-00-00 00:00:00', 1),
(23455, 25974, 59, 5, 0, 'Communication average he is open much for admin / non voice not suitable for your roles', 154, '0000-00-00 00:00:00', 1),
(23456, 25298, 59, 5, 0, 'Solid exp in  non voice process communication Average will not handle our sales calls not suitable', 154, '0000-00-00 00:00:00', 1),
(23457, 25972, 59, 5, 0, 'Communication Ok fresher but much focused to work in non voice  sales convincing no pressure handling doubts\n', 154, '0000-00-00 00:00:00', 1),
(23458, 25975, 59, 5, 0, 'Communication Ok 5050 Long run doubts he is planning to go with MBA also have some business plan completed Digital marketing Pressure handling in our roles doubtfull', 154, '0000-00-00 00:00:00', 1),
(23459, 25953, 105, 5, 0, 'canidate communcation and performance is not good .also Voice correlation Problem.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23460, 25978, 149, 7, 0, 'candidate was good at communication and having confidence but distance was issue he was telling that he will relocate and ok for joining in this week', 154, '0000-00-00 00:00:00', 1),
(23461, 25956, 57, 7, 0, 'Candidate is ok, fresher, communication ok. confirm the joining date xxamp Salary thanks', 154, '0000-00-00 00:00:00', 1),
(23462, 25977, 57, 5, 0, 'candidate is not ok , communication not good, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23463, 25950, 59, 5, 0, 'not open for Insurance domain as she used to practice the religious norms\n ', 154, '0000-00-00 00:00:00', 1),
(23464, 25948, 59, 5, 0, 'too long distance not open for sales too he is looking for insurance coordination and much of non voice ', 154, '0000-00-00 00:00:00', 1),
(23465, 25982, 105, 7, 0, 'candidate communication and performance is ok.but 5050 profile.will check with her in the trainig period', 154, '0000-00-00 00:00:00', 1),
(23466, 25982, 59, 5, 0, 'Manager shortlisted the profile initially later after the detailed discsussion not much comfort to proceed further based on the candidate input on appointments and the meetings', 105, '2025-07-22 04:22:05', 1),
(23467, 25978, 60, 1, 0, NULL, 149, '2025-07-22 07:51:43', 1),
(23468, 25949, 60, 1, 0, NULL, 149, '2025-07-22 07:55:30', 1),
(23469, 25989, 105, 5, 0, 'candidate communication and performacne is not good.aslo she is sensitive type.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23470, 25984, 59, 5, 0, 'Not much aggresive in communication for sales open much for non voice only\n', 154, '0000-00-00 00:00:00', 1),
(23471, 25988, 59, 2, 0, 'Need to check the documents and confirm', 154, '0000-00-00 00:00:00', 1),
(23472, 25997, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary. kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23473, 25992, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23474, 25994, 57, 5, 0, 'candidate  not suitable for sales profile. distance, interested non voice,reject the profile', 154, '0000-00-00 00:00:00', 1),
(23475, 25967, 105, 5, 0, 'candidate communication and peerformance is not well.sustainable doubt.expected higher package', 154, '0000-00-00 00:00:00', 1),
(23476, 25997, 59, 3, 0, 'Communication Ok Can give a try and check in training', 156, '2025-07-23 02:45:26', 1),
(23477, 25968, 105, 5, 0, 'candidate communication and performace is not good.aslo sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23478, 26002, 57, 7, 0, 'Candidate is ok , 50/50 will try for 7 days of training period. 11m exp telecalling, assign to sathya', 154, '0000-00-00 00:00:00', 1),
(23479, 25986, 57, 5, 0, 'candidate is not ok for sales profile, communication not good, reject', 154, '0000-00-00 00:00:00', 1),
(23480, 26002, 59, 3, 0, 'Fresher for our sales 5050 sustainability doubts will check in training and confirm', 57, '2025-07-23 03:10:00', 1),
(23481, 25956, 59, 3, 0, 'Communication Ok 5050 for our roles  can be trained in our roles and check in training ', 57, '2025-07-23 03:11:49', 1),
(23482, 26014, 59, 5, 0, 'Looking for non voice ', 154, '0000-00-00 00:00:00', 1),
(23483, 26006, 59, 5, 0, 'Not much serious with the job profiles will not handle our sales roles', 154, '0000-00-00 00:00:00', 1),
(23484, 26005, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23485, 25976, 57, 7, 0, 'Candidate is ok, will try 7 days of training period, confirm the joining date xxamp Salary', 154, '0000-00-00 00:00:00', 1),
(23486, 26011, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23487, 26013, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23488, 26001, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23489, 25998, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23490, 25999, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23491, 25993, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23492, 26026, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23493, 26022, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23494, 26024, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23495, 26023, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23496, 26028, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23497, 26029, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23498, 26027, 59, 5, 0, 'too long Distance not a relevant profile for sales too will not handle our sales', 154, '0000-00-00 00:00:00', 1),
(23499, 26000, 59, 5, 0, 'communication not clear multiple breaks in between also has exp in nonvoice and retail only', 154, '0000-00-00 00:00:00', 1),
(23500, 25976, 59, 3, 0, 'Communication ok long career gap for 4 yrs exam preparations 5050 for our roles let us try and confirm', 57, '2025-07-23 05:10:16', 1),
(23501, 25996, 59, 5, 0, 'he suits for non voice process only will nt sustain in sales\n', 154, '0000-00-00 00:00:00', 1),
(23502, 25995, 59, 5, 0, 'Not suitable for our role have exp for 6 months casa grand later he is not open to sales and attended only for non voice ', 154, '0000-00-00 00:00:00', 1),
(23503, 26015, 59, 5, 0, '5050 she need time to decide have a plan to go with own business will not handle our sales profiles will not sustain ', 154, '0000-00-00 00:00:00', 1),
(23504, 26017, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23505, 26033, 59, 5, 0, 'Exp in 3d/graphic designer today attended interview in Shree consultancy much comfort to go with that only', 154, '0000-00-00 00:00:00', 1),
(23506, 26009, 59, 5, 0, 'Career gap Not strong to handle the pressue will not sustain', 154, '0000-00-00 00:00:00', 1),
(23507, 26003, 29, 7, 3, 'porrselvan team, \n21k net salary, incre 2k in sept 25 if completed 1.5 lac life and 10K SIP in Aug 2025.', 154, '0000-00-00 00:00:00', 1),
(23508, 26003, 59, 3, 0, 'Communication Good seems to aggresive in speaking have exp in collections only but can give a try and check in training ', 29, '2025-07-24 10:00:22', 1),
(23509, 26039, 57, 5, 0, 'Candidate is not suitable for salees profile, sounds not good, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23510, 26032, 59, 5, 0, 'too long distance from ponneri have exp but not convincing in his profile not suitable', 154, '0000-00-00 00:00:00', 1),
(23511, 26046, 137, 7, 0, 'candiate communication skill ok and 2 month work with credit card sales , family backround also low . so try for 7 days training period, exp salary is 14 to 15 k', 154, '0000-00-00 00:00:00', 1),
(23512, 26046, 59, 3, 0, 'Communication Ok have exp in part time credit card joined hospittal as front office for 2 days and left due to mother health and dress code need to check in training and confirm', 137, '2025-07-24 01:33:14', 1),
(23513, 26045, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23514, 26044, 139, 5, 0, 'Not fit for Rm role', 154, '0000-00-00 00:00:00', 1),
(23515, 26047, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23516, 26048, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23517, 26050, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23518, 26049, 59, 5, 0, 'Communication No not suitable profile will not sustain in work roles ', 154, '0000-00-00 00:00:00', 1),
(23519, 25983, 59, 5, 0, 'Fresher Communication Ok but not clear with the domain to work looking for non voice too joined MBA in PULC will not run in a long with us', 154, '0000-00-00 00:00:00', 1),
(23520, 25987, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23521, 26043, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23522, 26035, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23523, 26038, 147, 7, 0, 'good communication with experience and salary part need to confirm expecting 22 t0 23k', 104, '0000-00-00 00:00:00', 1),
(23524, 25990, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23525, 26060, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23526, 26061, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23527, 26062, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23528, 26064, 156, 7, 0, 'Candidate is ok, communication average. 1 year exp for Customer support executive. please check sustainability and kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23529, 26074, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23530, 26065, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23531, 26059, 147, 7, 0, 'Totally Fresher good communication she is bold and traveling distance is bit for 20km confirm on that already i confirmed with her she is ok to come', 104, '0000-00-00 00:00:00', 1),
(23532, 26066, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23533, 26069, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23534, 26067, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23535, 26073, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23536, 26051, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23537, 26076, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23538, 26079, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23539, 26068, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23540, 26059, 59, 1, 0, NULL, 147, '2025-07-26 11:23:31', 1),
(23541, 26038, 59, 3, 0, 'Communicaiton Have exp in lead generation can give a try and check', 147, '2025-07-26 11:23:49', 1),
(23542, 26085, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23543, 26093, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23544, 26092, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23545, 26091, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23546, 26090, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23547, 26103, 57, 5, 0, 'candidate is unfit for sales, communication not good, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23548, 26102, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23549, 26104, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23550, 26111, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23551, 26099, 57, 7, 0, 'Candidate is ok , communication good, confirm the joining date and salary', 154, '0000-00-00 00:00:00', 1),
(23552, 26105, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23553, 26110, 57, 7, 0, 'Candidate is ok , communication good, confirm the joining date and salary', 154, '0000-00-00 00:00:00', 1),
(23554, 26114, 57, 7, 0, 'Candidate is ok , communication good,1yrs exp same domain and collection experience \nconfirm the joining date and salary', 154, '0000-00-00 00:00:00', 1),
(23555, 26108, 59, 5, 0, 'No convincing not much shown interest on job attended around 15 interviews IT without knowing the skills required just for sake and family push he is looking for job will not handle our sales pressure', 154, '0000-00-00 00:00:00', 1),
(23556, 26088, 59, 5, 0, 'Currently pursuuing also having a career gap not much suitable for our sales roles will not sustain ', 154, '0000-00-00 00:00:00', 1),
(23557, 26107, 59, 5, 0, 'Not open for Targets will not handle our sales pressure not suitable', 154, '0000-00-00 00:00:00', 1),
(23558, 26109, 59, 5, 0, 'Complete UI UX profile have exp n collection only sustainability doubts in sales profile pressure handling too doubts not suitable', 154, '0000-00-00 00:00:00', 1),
(23559, 26054, 59, 5, 0, 'Complete IT graduate just for exp he attended the interview location too long salary exp is also high', 154, '0000-00-00 00:00:00', 1),
(23560, 26057, 59, 5, 0, 'Location Too long much open for IT profile sustainability doubts in our roles ', 154, '0000-00-00 00:00:00', 1),
(23561, 26095, 59, 5, 0, 'Have exp as purchase executive also looking for same domain for time being she s looking for this also she has some health issues long run doubts in our roles', 154, '0000-00-00 00:00:00', 1),
(23562, 26101, 147, 7, 0, 'good experience good skills salary 20k  ', 154, '0000-00-00 00:00:00', 1),
(23563, 26121, 59, 5, 0, 'Fresher not much communicative for sales need to open up a lot  will not sustain', 154, '0000-00-00 00:00:00', 1),
(23564, 26126, 59, 5, 0, 'Aged 32 complete exp in operation current CTC 4.2 LPA open for ops only', 154, '0000-00-00 00:00:00', 1),
(23565, 26123, 59, 5, 0, 'Fresher not much communicative for sales need to open up a lot also he need to explore the opportunities will not sustain', 154, '0000-00-00 00:00:00', 1),
(23566, 26119, 59, 5, 0, 'Fresher not much communicative for sales need to open up a lot also he need to explore the opportunities will not sustain', 154, '0000-00-00 00:00:00', 1),
(23567, 26064, 59, 3, 0, 'Communication Ok fresher for our roles have exp not a relevant one need to check in training and confirm', 156, '2025-07-29 12:49:09', 1),
(23568, 26112, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23569, 26118, 147, 7, 0, 'She is having good experience  and communication  skills knowing languages Telugu  and English  only she is ok', 154, '0000-00-00 00:00:00', 1),
(23570, 26129, 147, 5, 0, 'No communication looking for time been looking for better opportunity', 154, '0000-00-00 00:00:00', 1),
(23571, 26132, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23572, 26140, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(23573, 26141, 59, 5, 0, 'Fresher have a plan to go with CA and also not much communicative to handle our work roles', 154, '0000-00-00 00:00:00', 1),
(23574, 26142, 59, 5, 0, 'Much open to work in non voice process only', 154, '0000-00-00 00:00:00', 1),
(23575, 25651, 57, 7, 0, 'candidate is ok , communication good, 1yr exp telecalling, pls check suistainability...confirm the joining data and salary..', 154, '0000-00-00 00:00:00', 1),
(23576, 26143, 59, 5, 0, 'Long back we have selected and give her joining earlier she appeared again tody not clear with the ideas to get into particular profiles if we give a chance again will have the sustainability issues\n', 154, '0000-00-00 00:00:00', 1),
(23577, 26139, 59, 5, 0, 'fersher not much comfort to target also much comfort to work in non voice process ', 154, '0000-00-00 00:00:00', 1),
(23578, 26144, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23579, 26136, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary, kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23580, 26124, 109, 5, 0, 'Multiple job swtich nort sustain', 154, '0000-00-00 00:00:00', 1),
(23581, 26127, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23582, 26138, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23583, 25651, 59, 3, 0, 'Communication Ok have exp in calling sales HDFC/Sundaram Finance have gap too can be trained in our roles and check in training', 57, '2025-07-30 06:01:17', 1),
(23584, 26099, 59, 1, 0, NULL, 57, '2025-07-30 06:44:43', 1),
(23585, 26110, 59, 3, 0, 'Fresher communication ok tried for teaching and now not comfort to continue with that let us try and confirm', 57, '2025-07-30 06:45:05', 1),
(23586, 26114, 59, 3, 0, 'have exp in calling but no sustainability and have career gap too can give a try and check in training', 57, '2025-07-30 06:45:47', 1),
(23587, 26136, 59, 1, 0, NULL, 156, '2025-07-30 07:23:50', 1),
(23588, 26155, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23589, 26117, 59, 5, 0, 'Communication Ok Fresher for roles but open for other roles too  sustainability doubts in this profile', 154, '0000-00-00 00:00:00', 1),
(23590, 26153, 137, 7, 0, 'candidate communication and vocie aslo good , he need work and looking also voice process so try for 7 days training period, exp salary is 16 to 18k salary ', 154, '0000-00-00 00:00:00', 1),
(23591, 26154, 89, 7, 0, 'Fresher.. ', 154, '0000-00-00 00:00:00', 1),
(23592, 26157, 59, 5, 0, 'Location too long alos he is open only for telecalling not for field sales will not sustain', 154, '0000-00-00 00:00:00', 1),
(23593, 25952, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23594, 26152, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23595, 26158, 59, 5, 0, 'Not suitable for our sales profile he too prefer to go with the non voice will not sustain in a long', 154, '0000-00-00 00:00:00', 1),
(23596, 26159, 59, 5, 0, 'not suitable for our roles complete non voice interested candidate', 154, '0000-00-00 00:00:00', 1),
(23597, 26146, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23598, 25585, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23599, 26161, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23600, 26169, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23601, 26170, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23602, 26164, 105, 5, 0, 'candidate communication and performance is not good.also sustainable is doubt.', 154, '0000-00-00 00:00:00', 1),
(23603, 26162, 59, 3, 0, 'Communication Tamil ok have exp in branch handling anna nagar cycle internal team charles reference need to check in 7 days training for renewal and confirm', 154, '0000-00-00 00:00:00', 1),
(23604, 26166, 59, 5, 0, 'communication slang issue had his own business not much convinced for our sales too will not sustain', 154, '0000-00-00 00:00:00', 1),
(23605, 26154, 59, 3, 0, 'Communication Ok fresher seems to be in dilemma can give  try and check in training', 89, '2025-08-01 10:23:02', 1),
(23606, 26177, 74, 7, 0, 'he is ok with the profile completed bba in mayiladudurai 2021--- and selected as a us shift as IT support in bangalore 25k salary 1year due to family issue releived....and worked in a honda showroom 16k salary and i marque solutions tvs credit loan for 3 months....try in abroad 6months for job and return...currently preparing group 4 exam.....so have sustainability issue and travel time is high......expected 17 to 18k..and imeediatee joining ...have no laptop...father auto driver..kindly cross check once and confirm', 154, '0000-00-00 00:00:00', 1),
(23607, 26172, 59, 5, 0, 'Not much comfort in sales target/discussed for renewal too but not much ok to go with this not suitable', 154, '0000-00-00 00:00:00', 1),
(23608, 26037, 57, 7, 0, 'Selected fr Sahtya Team can give a try and check in training\n', 154, '0000-00-00 00:00:00', 1),
(23609, 26176, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23610, 26171, 105, 5, 0, 'candidate performance and communication little bit not good.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23611, 26179, 59, 5, 0, 'Attitude candidate not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(23612, 26180, 59, 5, 0, 'Too long distance will not handle our sales pressure not suitable', 154, '0000-00-00 00:00:00', 1),
(23613, 26181, 59, 5, 0, 'Communication ok not much comfort with the sales calling sustainability doubts in this profile', 154, '0000-00-00 00:00:00', 1),
(23614, 26177, 59, 3, 0, 'Communication Ok already attended a few years back via virtual in between worled with multiple companies and gained exp can give a try and check', 74, '2025-08-01 01:11:14', 1),
(23615, 26184, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23616, 26167, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23617, 26118, 59, 1, 0, NULL, 147, '2025-08-01 01:42:58', 1),
(23618, 26189, 59, 5, 0, 'Not much seriousness to the profile will not sustaina nd not suitable', 154, '0000-00-00 00:00:00', 1),
(23619, 26187, 59, 5, 0, 'not much serious with the job roles worked in customer support and other domain but no sustainabilyt', 154, '0000-00-00 00:00:00', 1),
(23620, 26186, 59, 5, 0, 'she asked time to confirm her interest in this job role if she comes back let us try', 154, '0000-00-00 00:00:00', 1),
(23621, 26195, 154, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23622, 26207, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23623, 26208, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23624, 26151, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23625, 26201, 11, 7, 0, 'selected as  E sales RM.\nGaurav sir  also met him', 154, '0000-00-00 00:00:00', 1),
(23626, 26190, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(23627, 26178, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23628, 26218, 59, 3, 0, 'Communication Good Fresher can be trained in our HR roles in banagalore 2yrs NDA will be initiated cna check and confirm', 104, '0000-00-00 00:00:00', 1),
(23629, 26037, 59, 3, 0, 'Communication Ok fresher job need is there 5050 on our roles need to check in training and confirm', 57, '2025-08-04 10:02:57', 1),
(23630, 26153, 59, 1, 0, NULL, 137, '2025-08-04 10:28:26', 1),
(23631, 25645, 59, 3, 0, 'agreed as per company norms, proceeding with Internship and employement', 60, '0000-00-00 00:00:00', 1),
(23632, 26217, 137, 7, 0, 'candidate communication and voice good , she need work because she is not completed the degree, and some medical issue and long ditance also , exp salary is 15 to 16k , will try for7 days training period.', 154, '0000-00-00 00:00:00', 1),
(23633, 26221, 155, 5, 0, 'candidate is not clear what domain too choose... worked for 5 months and did chartered accounts course for a year... and now also looking for the same field.. sustainability and pressure handling high doubts', 154, '0000-00-00 00:00:00', 1),
(23634, 26227, 155, 5, 0, 'looking for accounts max... ', 154, '0000-00-00 00:00:00', 1),
(23635, 26228, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23636, 26217, 59, 3, 0, 'Communication of fresher need to check in training and confirm let us try', 137, '2025-08-04 04:20:11', 1),
(23637, 26212, 57, 7, 0, 'Candidate is ok , communication average, pls check distance too long. pls confirm the joining date and salary,.', 154, '0000-00-00 00:00:00', 1),
(23638, 26220, 59, 5, 0, 'much focused for data entry only', 154, '0000-00-00 00:00:00', 1),
(23639, 26232, 59, 5, 0, 'not suitable for our roles he is much comfort to handle the cashier roles only', 154, '0000-00-00 00:00:00', 1),
(23640, 26212, 59, 3, 0, 'Communication ok Fresher for our sales can give a try and check in training', 57, '2025-08-05 11:54:50', 1),
(23641, 26237, 59, 5, 0, 'Communication sounds Ok but not much clarity on his exp pertaining to the investment domain he worked not much suitable for our roles career gap he voluntarily didnt attend the interview just through reference and relative companies he worked', 154, '0000-00-00 00:00:00', 1),
(23642, 26238, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23643, 26247, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23644, 26216, 149, 7, 0, 'CANDIDATE WAS GOOD AT COMMUNICATION  AND  HAVE CONFIDENCE  AND INTERESTED IN SALES LETS TRY  AT TRAINING TIME ', 154, '0000-00-00 00:00:00', 1),
(23645, 26182, 149, 5, 0, 'CANDIDATE COMMUNICATION WAS NOT SO GOOD  AND HAVE SOME PROUNCIATION  ISSUES WILL NOT SUITABLE FOR SALES', 154, '0000-00-00 00:00:00', 1),
(23646, 26253, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23647, 26250, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23648, 26244, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23649, 26254, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23650, 26255, 59, 5, 0, 'Communication Average need to open up a lot sounds low voice will not handle our work roles will not sustain', 154, '0000-00-00 00:00:00', 1),
(23651, 26246, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23652, 26249, 149, 5, 0, 'CANDIDATE  COMMUNICATION WAS  OK BUT NOT HAVING CONFIDENT AND INTERESTED IN IT NOT SURE ABOUT SUSTAINABILITY ', 154, '0000-00-00 00:00:00', 1),
(23653, 26248, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23654, 26242, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23655, 26216, 60, 1, 0, NULL, 149, '2025-08-05 04:22:09', 1),
(23656, 26258, 105, 5, 0, 'candidate performance is ok,but communication little bit not good.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23657, 26239, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23658, 26240, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23659, 26259, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23660, 26261, 147, 7, 0, 'she is good in sales and x employee 8 months work experience ', 60, '0000-00-00 00:00:00', 1),
(23661, 26261, 59, 3, 0, 'Have exp in CAFS for 8 months no proper resignation termination mail given to the candidate,As referred again by the manager for the same role we have hired her for the position with no change in the salary part', 147, '2025-08-05 06:41:32', 1),
(23662, 26236, 109, 5, 0, 'not Even opened his mouth for a single conversation initially, but later tried to interact with others, but no sales skills and  GD done by Jothiga.', 154, '0000-00-00 00:00:00', 1),
(23663, 26197, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23664, 26265, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23665, 26204, 109, 5, 0, 'not Even opened his mouth for a single conversation, GD done by Jothiga.', 154, '0000-00-00 00:00:00', 1),
(23666, 26272, 109, 5, 0, 'Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23667, 26225, 109, 5, 0, 'He speaks well 2021 passed out and prepared for Goverment exams, now trying for job came along with his friend, I rejected his friend but can try this profile, but he went. GD done by Jothiga', 154, '0000-00-00 00:00:00', 1),
(23668, 21831, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23669, 26271, 59, 2, 0, 'Communication Ok 5050 for renewals Indiafirst Wasim/Vikram reference fresher for our roles need to train from scratch', 154, '0000-00-00 00:00:00', 1),
(23670, 26264, 57, 5, 0, 'candidate is ok, but not suitable for sales profile, some health issues there, reject the profile\n', 154, '0000-00-00 00:00:00', 1),
(23671, 26262, 30, 5, 0, 'Due to lack of  speech and communication so he is not selected', 104, '0000-00-00 00:00:00', 1),
(23672, 26270, 57, 7, 0, 'Candidate is ok, communication good, 1yrs exp abroad, pls cross check sustainability, confirm the joining date and salary', 154, '0000-00-00 00:00:00', 1),
(23673, 26278, 109, 5, 0, 'Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23674, 26276, 109, 5, 0, 'Had only minimum yrs of expereience high expectation, not suitable for insurance slaes', 154, '0000-00-00 00:00:00', 1),
(23675, 26277, 147, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23676, 26274, 57, 7, 0, 'Candidate is ok ,communication Average, experience in same domain, confirm the joining date xxamp salary', 154, '0000-00-00 00:00:00', 1),
(23677, 26277, 60, 1, 0, NULL, 30, '2025-08-06 04:31:26', 1),
(23678, 26101, 59, 3, 0, 'Communication Ok Have exp in backend process can give a try for our sales process and check in training', 147, '2025-08-06 04:33:26', 1),
(23679, 26201, 60, 1, 0, NULL, 11, '2025-08-06 06:38:50', 1),
(23680, 26274, 59, 1, 0, NULL, 57, '2025-08-06 06:58:06', 1),
(23681, 26270, 59, 1, 0, NULL, 57, '2025-08-06 06:58:53', 1),
(23682, 26279, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23683, 26291, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23684, 26290, 155, 5, 0, 'not fit for telecalling. communication and slang not proper. need to open up a lot', 154, '0000-00-00 00:00:00', 1),
(23685, 26280, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23686, 20739, 59, 5, 0, 'Communication ok having several health issues mental disorder openly stated still he is into medication for that not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(23687, 26288, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23688, 26293, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23689, 26292, 155, 5, 0, 'voice too low, need to open up a lot.. pressure handling doubts', 154, '0000-00-00 00:00:00', 1),
(23690, 25973, 155, 5, 0, 'not having seriousness to look for job, one year career gap, looking for IT also, pressure handling doubts', 154, '0000-00-00 00:00:00', 1),
(23691, 26234, 155, 5, 0, 'communication not good, need to open up a lot pressure handling doubts', 154, '0000-00-00 00:00:00', 1),
(23692, 26297, 155, 5, 0, 'not serious about going to job. major looking for IT only', 154, '0000-00-00 00:00:00', 1),
(23693, 26298, 155, 5, 0, 'not fit for our roles. voice too low and looking for IT only', 154, '0000-00-00 00:00:00', 1),
(23694, 26296, 155, 5, 0, 'having exp in only Field sales as a free lancer and phonepe. not fit for telecalling', 154, '0000-00-00 00:00:00', 1),
(23695, 26309, 109, 5, 0, 'Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23696, 26307, 89, 7, 0, 'Good skill.. working time issues. So Once you talk, decide.', 154, '0000-00-00 00:00:00', 1),
(23697, 26310, 109, 5, 0, 'Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23698, 26308, 30, 7, 3, 'Suggested ctc 22k selected for ashfaq team monday joining', 154, '0000-00-00 00:00:00', 1),
(23699, 26286, 147, 5, 0, 'looking high salary ', 154, '0000-00-00 00:00:00', 1),
(23700, 26308, 60, 1, 0, NULL, 30, '2025-08-08 04:01:47', 1),
(23701, 26287, 147, 5, 0, 'lack of communication no English  ', 154, '0000-00-00 00:00:00', 1),
(23702, 26089, 147, 5, 0, 'rejected', 154, '0000-00-00 00:00:00', 1),
(23703, 26295, 147, 5, 0, 'High salary looking 40k ', 154, '0000-00-00 00:00:00', 1),
(23704, 26305, 149, 7, 0, 'candidate was ok with communication no parents have timing issue at timing lets try for initial 7 days', 154, '0000-00-00 00:00:00', 1),
(23705, 26084, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23706, 26283, 109, 5, 0, 'Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23707, 26302, 105, 5, 0, 'candidate communication and performance is not good.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23708, 26313, 89, 7, 0, 'Good skill. This  girl is getting married on September 4th.   Once you talk, decide.', 154, '0000-00-00 00:00:00', 1),
(23709, 26314, 57, 5, 0, 'candidate is unfit for sales profile, sustainability issues, already he selected  4 companies but worked 3 to 4 days only,,,reject ', 154, '0000-00-00 00:00:00', 1),
(23710, 26303, 59, 5, 0, 'need to open up a lot seems very reserved much focus into non voice process', 154, '0000-00-00 00:00:00', 1),
(23711, 26322, 11, 7, 0, 'selected by Gaurav sir with the commitment of PF inclusion after 3 months based on performance', 104, '0000-00-00 00:00:00', 1),
(23712, 26323, 59, 5, 0, 'not open for sales communication average', 154, '0000-00-00 00:00:00', 1),
(23713, 26324, 105, 7, 0, 'Candidate Communication and performance is good.5050 profile will check with her in the training period ', 60, '0000-00-00 00:00:00', 1),
(23714, 26320, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary. kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23715, 26305, 60, 1, 0, NULL, 149, '2025-08-09 03:53:41', 1),
(23716, 26320, 59, 3, 0, 'Communication Ok fresher open to learn insurance domain can give a try and check\n', 156, '2025-08-09 04:04:14', 1),
(23717, 26313, 59, 2, 0, 'getting married on 4Sept have exp but will have a  leave issues.once done with all her personal works let us try', 89, '2025-08-09 05:20:49', 1),
(23718, 26307, 59, 3, 0, 'Communication Ok fresher she is into sports weight lifting also doing MBA full time due to sports only for exmas she can appear can give a try and check', 89, '2025-08-09 05:23:29', 1),
(23719, 26324, 60, 1, 0, NULL, 105, '2025-08-11 10:52:56', 1),
(23720, 26333, 57, 7, 0, 'Candidate is ok 50/50 just try for 7 days of training period, communication is ok..', 154, '0000-00-00 00:00:00', 1),
(23721, 25881, 105, 5, 0, 'candidate communication and performance is little ok.but her voice is low also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23722, 26341, 57, 7, 0, 'Candidate is ok, communication good, pls check sustainability bcz of little smart xxamp Attitude. Confirm the joining date xxamp salary.. for mine', 154, '0000-00-00 00:00:00', 1),
(23723, 26331, 59, 5, 0, 'Pronunciation issues group discussion rejected candidate\n', 154, '0000-00-00 00:00:00', 1),
(23724, 26339, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23725, 26340, 59, 5, 0, 'Not suitable for our roles need to open up seems to be reserved very much will not sustain and handle our pressure', 154, '0000-00-00 00:00:00', 1),
(23726, 26329, 105, 5, 0, 'candidate communication and performance is not good.also his voice is scrolled , then sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23727, 26328, 105, 5, 0, 'candidate communication and performance is not good.then his sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23728, 26342, 57, 7, 0, 'Candidate is Good. pls check distance too long. otherwise ok all confirm the joining date xxamp Salary Sathya team', 154, '0000-00-00 00:00:00', 1),
(23729, 26333, 59, 3, 0, 'Communication Ok fresher need to train from sctrch open for learning can give a try for our roles', 57, '2025-08-11 05:43:22', 1),
(23730, 26341, 59, 3, 0, 'Communication Ok fresher Can be trained in our roles and check in training', 57, '2025-08-11 05:44:33', 1),
(23731, 26342, 59, 3, 0, 'Communication Good very confident only thing is the distance can give a try and check for our roles\n', 57, '2025-08-11 05:45:53', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(23732, 26322, 59, 3, 0, 'Communication Ok have exp in telesales can give a try and check in our roles gaurav sir committed to go woth PF after 3 months based on performance', 11, '2025-08-11 07:38:02', 1),
(23733, 26349, 59, 2, 0, 'Communication Ok 5050 for our roles can give a try and check in training but not sure as he cam along with his friends', 60, '0000-00-00 00:00:00', 1),
(23734, 26351, 59, 5, 0, 'Will not sustain in our roles just worked for 3 months in the Collection but not mcuh comfort with that roles not suitable', 60, '0000-00-00 00:00:00', 1),
(23735, 26353, 59, 5, 0, 'Final roudn rejected by gokul have exp in MF but multiple switches also career gap', 60, '0000-00-00 00:00:00', 1),
(23736, 26359, 156, 7, 0, 'candidate is ok, communication average. kindly provide the fresher salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23737, 26363, 105, 5, 0, 'candidate communicationa and performance is ok.aslo his core in iT ,but sustainable in sale is doubt', 154, '0000-00-00 00:00:00', 1),
(23738, 26369, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23739, 26370, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23740, 26373, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23741, 26374, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23742, 26375, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23743, 25443, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23744, 26368, 147, 7, 0, 'good communication And good knowledge In Sales 20k Salary ', 154, '0000-00-00 00:00:00', 1),
(23745, 26376, 59, 5, 0, 'Not suitable for our roles will not handle our work pressure ', 154, '0000-00-00 00:00:00', 1),
(23746, 26359, 59, 3, 0, 'Communication Ok fresher for our sales roles can give a try and check in training', 156, '2025-08-14 03:55:44', 1),
(23747, 26378, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23748, 26386, 74, 7, 0, 'she is ok with the profile completed mba currently and worked as a office staff telecalling for past 4 month earning 10k and incentives,,,,father fishers department and retired pension 26k ...single child....pattukottai 49k...travel time 1 hour...expected 15k ,,,have laptop and....need to confirm joining bcoz in old company still have 15 days for salary but she is ok for immediate joining to kindly confirm', 154, '0000-00-00 00:00:00', 1),
(23749, 26368, 59, 3, 0, 'Communication Ok fresher for our sales roles 5050 can give a try and check in training', 147, '2025-08-16 12:06:48', 1),
(23750, 15276, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23751, 26385, 59, 5, 0, 'have exp in same domain but no sustainability and not much communicative for our roles too sustainability doubts recently married and have some personal issues pertaining to this also salary exp is very high', 154, '0000-00-00 00:00:00', 1),
(23752, 26388, 105, 5, 0, 'candidate communication and performance is little bit ok.but she is intrested in customer support', 154, '0000-00-00 00:00:00', 1),
(23753, 26391, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23754, 26390, 105, 5, 0, 'candidate communication and performance is not good.also she did not perform well in the interview.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23755, 26392, 105, 5, 0, 'candidate communication and performance is not good.voice is very low and sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23756, 26386, 59, 3, 0, 'Communication Ok fresher for our roles can give a try and check in training ', 74, '2025-08-16 05:04:03', 1),
(23757, 26400, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(23758, 26402, 74, 7, 0, 'he is ok with the profile ...completed bcom in 2023...and joined in a med plus for 3 month and releived...and joined in a arun icecream,,and releived...and finally worked as a marketing officer in sriram chits...for 9 months ...11k salary with allowance....due to transfer releived from job have proper documents,,,father carpenter...rental house...expected 15k salary...currently studying mba 3 semester....3 km travel only..have no laptop..tuff to arrange...so kindly cross check and confirm', 154, '0000-00-00 00:00:00', 1),
(23759, 26401, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23760, 26411, 74, 7, 0, 'she is ok with the profile..completed mba finance...native muthupet...1 and half hour travel....fresher...father work in marketing 10k salary...elder sister teacher 10k salary...mom running a small petti shop..5k income....she is completed mba in thanjavur....speaked well and performing well...have laptop...expected 15k...and ready to move to hostel....so travel issue...incase not ready to move not fit for profile....uncle house near 3km..so have possiblity...so kindly cross check once', 154, '0000-00-00 00:00:00', 1),
(23761, 26404, 57, 5, 0, 'candidate is not ok for sales field. he interested in cini field so not suitable for sales ', 154, '0000-00-00 00:00:00', 1),
(23762, 26377, 109, 5, 0, 'Sustainability doubt will go for IT role', 154, '0000-00-00 00:00:00', 1),
(23763, 26399, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23764, 26402, 59, 3, 0, 'communication Ok Have exp in Shirram for few months 5050 for our role can give atry and check', 74, '2025-08-18 02:33:11', 1),
(23765, 26411, 59, 3, 0, 'Communication Ok fresher for our telesales open to relocate too long distance need to check in training', 74, '2025-08-18 02:36:03', 1),
(23766, 26412, 109, 5, 0, 'Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23767, 26406, 109, 5, 0, 'Communication too low Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23768, 26398, 109, 5, 0, 'Childish Girl wil not suitable for us', 154, '0000-00-00 00:00:00', 1),
(23769, 26408, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23770, 26409, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23771, 26348, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23772, 16693, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23773, 26414, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23774, 26382, 89, 7, 0, 'Avarage skill.  Once re locate confirm then joining it. Fresher. Will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(23775, 26416, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23776, 26417, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23777, 26271, 59, 3, 0, 'Communication ok fresher for job have career gap need to train and check in 7days if ok then will continue with the job if not drop after 7 days', 59, '2025-08-19 10:00:06', 1),
(23778, 26431, 74, 2, 0, 'she is ok with the profile completed mba...fresher father farmer joined family...30km travel from home....she ok with every thing and highly job need...expected 13 to 15k...have laptop...imeediate joining.....but have no maturity...speaked will dont have understanding in the interview....two times cried bcoz of family pressure....family expected to go to job.....need to speak arun sir and need a feedback', 154, '0000-00-00 00:00:00', 1),
(23779, 26415, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23780, 21547, 18, 7, 3, 'Shortlisted for Gnanashekar Team. Shall Join by tomorrow.  Please negotiate the salary as per your observation', 139, '2025-08-19 11:59:38', 1),
(23781, 21547, 60, 1, 0, NULL, 18, '2025-08-19 12:02:42', 1),
(23782, 26438, 139, 4, 0, 'Selected for RM rold\nHaving exp in Sales\nwill try for RM\nhave to negotiate the package ', 104, '0000-00-00 00:00:00', 1),
(23783, 26438, 18, 7, 3, 'Selected for Gnanashekar team. Immedeate Joiner and negotiate salary based on your observation', 139, '2025-08-19 01:05:31', 1),
(23784, 26427, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23785, 26397, 156, 7, 0, 'candidate is ok, communication average. pls provide the fresher salary and kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23786, 26433, 57, 5, 0, 'Candidate is not ok for sales profile, communication not good, lack of confident reject the profile', 154, '0000-00-00 00:00:00', 1),
(23787, 26428, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23788, 26434, 57, 7, 0, 'Candidate is ok  communication good, pls check sustainability and confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(23789, 26423, 149, 7, 0, 'candidate was good at communication and have some work experinences and so lets try for 7 days training because of long distance she was ok with timing but have some doubts in that ,and lets   try at training  period', 154, '0000-00-00 00:00:00', 1),
(23790, 26422, 149, 7, 0, 'candidate was good at communication and also looking confident and interested in sales and also ok for immediate joining ', 154, '0000-00-00 00:00:00', 1),
(23791, 26405, 105, 7, 0, 'candidate communication and performance is good.aslo her voice is bold and she told, she worked in star 3 months.but she dont know about the product.will check with her in the training perion.', 154, '0000-00-00 00:00:00', 1),
(23792, 26439, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23793, 26422, 60, 1, 0, NULL, 149, '2025-08-19 02:52:06', 1),
(23794, 26423, 60, 1, 0, NULL, 149, '2025-08-19 02:56:26', 1),
(23795, 26381, 57, 5, 0, 'Candidate is ok , communication average, distance too long .,reject the profile', 154, '0000-00-00 00:00:00', 1),
(23796, 26382, 59, 1, 0, NULL, 89, '2025-08-19 03:33:26', 1),
(23797, 26436, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23798, 26437, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23799, 26440, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23800, 26429, 57, 5, 0, 'Candidate is not ok for sales field. exp but communication not good, product knowledge not good reject', 154, '0000-00-00 00:00:00', 1),
(23801, 26434, 59, 3, 0, 'Communication Ok Fresher for our sales roles will check in training', 57, '2025-08-19 05:22:49', 1),
(23802, 26452, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(23803, 26397, 59, 3, 0, 'Communication Ok fresher for telesales need to check in training and confirm', 156, '2025-08-20 10:06:17', 1),
(23804, 26438, 60, 1, 0, NULL, 18, '2025-08-20 11:25:45', 1),
(23805, 26424, 89, 7, 0, 'good skill. out of chennai re locat once confirmed your side then joining  ', 154, '0000-00-00 00:00:00', 1),
(23806, 26445, 89, 7, 0, 'Good skill. alredy part time cridit card sale experince 5 month. will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(23807, 26442, 161, 5, 0, 'Communication slang is different and interested in IT also and have experience in vizza for 7 days only and relieved due to some reasons. Sustainability doubt', 154, '0000-00-00 00:00:00', 1),
(23808, 26445, 59, 3, 0, 'Communication Ok have exp in credit card for 3 months very long back can check in training and confirm open to learn will check and confirm in trainig', 89, '2025-08-20 01:09:16', 1),
(23809, 26424, 59, 3, 0, 'Communication ok fresher fr telesales need to relocate from vellore need to check in training and confirm', 89, '2025-08-20 01:12:21', 1),
(23810, 26453, 155, 5, 0, 'will not suit for our roles... very attitude... sustainability doubts', 154, '0000-00-00 00:00:00', 1),
(23811, 26405, 59, 3, 0, 'Communication Ok fresher for our roles need to check in training and confirm', 105, '2025-08-20 03:24:15', 1),
(23812, 26468, 74, 7, 0, 'she is ok with the profile fresher..completed bsc...5km travel from home...father oil sales for boat,, mother work in tailoring...two younger sister brother rental house...highly job need speaked better will try...expected 13k...kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(23813, 26464, 57, 5, 0, 'Candidate not suitable for sales, 2yrs carrier gab, communication not good, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23814, 26468, 59, 3, 0, 'Communication Ok fresher for telesales need to chec k in training and confirm', 74, '2025-08-21 12:18:05', 1),
(23815, 26458, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23816, 26467, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23817, 26461, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23818, 26463, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23819, 23779, 109, 5, 0, 'Not suitable', 109, '2025-08-21 03:07:14', 1),
(23820, 23801, 109, 5, 0, 'Gommunication not good', 109, '2025-08-21 03:08:28', 1),
(23821, 23781, 109, 5, 0, 'Will not be suitable for sales', 109, '2025-08-21 03:08:51', 1),
(23822, 26473, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23823, 26481, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23824, 26486, 57, 7, 0, 'Candidate is ok ,Communication average, just try for Training Period, Sathya Team,', 154, '0000-00-00 00:00:00', 1),
(23825, 26480, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23826, 26489, 57, 7, 0, 'Candidate is ok, communication Average, 50/50, Pls confirm the salary and joining date,', 154, '0000-00-00 00:00:00', 1),
(23827, 26487, 156, 7, 0, 'candidate is ok, communication good. 2 years experience for teacher and 2 months experions for star health insurance. kindly check  sustainability and kindly  confirm the joinig date.', 154, '0000-00-00 00:00:00', 1),
(23828, 26487, 156, 7, 0, 'candidate is ok, communication good. 2 years experience for teacher and 2 months experions for star health insurance. kindly check  sustainability and kindly  confirm the joinig date.', 154, '0000-00-00 00:00:00', 1),
(23829, 26472, 105, 7, 0, 'candidate communication and performance is good.505 profile will check with her in the training period.also she is married xxamp have 2-year kid ', 154, '0000-00-00 00:00:00', 1),
(23830, 26488, 139, 4, 0, 'Selected for RM role\nhaving 1.5 yr exp\nLanguage known \ntamil,Telugu, canadam,hindi\nhave to finalize the package \nimmediate joiner ', 154, '0000-00-00 00:00:00', 1),
(23831, 26488, 139, 4, 0, 'Selected for RM role\nhaving 1.5 yr exp\nLanguage known \ntamil,Telugu, canadam,hindi\nhave to finalize the package \nimmediate joiner ', 154, '0000-00-00 00:00:00', 1),
(23832, 26482, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23833, 26488, 18, 7, 0, 'Selected for Gnanashekar Team. Expected 22k in Hand + PF and other benefits. Shall join on monday', 139, '2025-08-22 04:33:47', 1),
(23834, 26486, 59, 3, 0, 'Communication Ok 5050 for our roles 3 months with friend in star health stated food poison as reasons and sustainability too doubts a lot let us check in training and confirm', 57, '2025-08-22 06:46:11', 1),
(23835, 26489, 59, 1, 0, NULL, 57, '2025-08-22 06:47:03', 1),
(23836, 26487, 59, 3, 0, 'Communication Ok sounds good but sustainability doubts previous exp teaching and 3 months star health reasons for leaving not seems to be correct need to check in training and confirm doubtful in sustainability in our roles', 156, '2025-08-22 06:57:38', 1),
(23837, 26498, 74, 7, 0, 'he is ok with the profile ...completed bcom 24 passed out...fresher....daily new paper and milk distribution 4k monthly earnings..thnajavur cricket association ground mainatance part time....father driver lorry 10k earning.....own house travel time 5km....expected 12 to 13k...imeediate joining', 104, '0000-00-00 00:00:00', 1),
(23838, 26472, 59, 3, 0, 'Communication good fresher but married divorced having kid family need is there open to learn but not sure on sustainability in consideration to her commitments', 105, '2025-08-23 11:50:31', 1),
(23839, 26493, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23840, 26488, 60, 1, 0, NULL, 18, '2025-08-23 12:49:26', 1),
(23841, 26497, 149, 7, 0, 'CANDIDATE WAS GOOD AT COMMUNICATION AND INTERESTED IN SALES AND ALSO IN NEED OF JOB AND THE ONLY ISSUE WAS NEWLY MARRIED BUT SHE TOLD IT WAS NOT AN ISSUE FOR NEXT 3YRS AND SHE WAS READY FOR IMMEDIATE JOINING ALSO .LETS TRY FOR 7DAYS TRAINING', 154, '0000-00-00 00:00:00', 1),
(23842, 26485, 57, 7, 0, 'Candidate is ok, communication Good, pls cross check once again family background. Pls confirm the joining date xxamp Salary...', 154, '0000-00-00 00:00:00', 1),
(23843, 26483, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23844, 26479, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(23845, 26498, 59, 3, 0, 'Communication Ok fresher for telesales tried multiple and got oppor but he didnt prefer that due to salary and field having family commitments can give a try and check in training', 74, '2025-08-23 03:43:48', 1),
(23846, 26485, 59, 3, 0, 'Communication Good have few months exp in hathway huge personal issues out of family staying with friend need to check n training should not come with personal issues to the working environment let us check and  confirm', 57, '2025-08-23 04:47:43', 1),
(23847, 26497, 60, 1, 0, NULL, 149, '2025-08-23 05:36:25', 1),
(23848, 26508, 74, 7, 0, 'She is ok with the profile completed BCA ...and joined in a yamaha backed process 2 years experience facing a acciednt releived from the job...earning 17k salary...father doing hotel biz..30k earning..mother goverment palvadi food maker 8k earning sister and brother studied....30km travel..managebale only...expected 15k salary...own house imediate joining...have laptop...kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(23849, 26509, 57, 7, 0, 'Candidate is ok , communication Good. 3 years experience, pls confirm the salary and date', 154, '0000-00-00 00:00:00', 1),
(23850, 26509, 57, 7, 0, 'Candidate is ok , communication Good. 3 years experience, pls confirm the salary and date', 154, '0000-00-00 00:00:00', 1),
(23851, 26508, 59, 3, 0, 'Communication Ok Fresher for our roles have exp in telecaling can give a try and check in our roles', 74, '2025-08-25 02:46:32', 1),
(23852, 26475, 30, 7, 3, 'Selected for ashfaq team dm suggested ctc upto 23k ', 162, '0000-00-00 00:00:00', 1),
(23853, 26494, 30, 7, 3, 'Selected for dm ashfaq team dm suggested ctc upto 23k', 162, '0000-00-00 00:00:00', 1),
(23854, 26500, 163, 5, 0, 'Lack of communication, will not suitable for sales.', 162, '0000-00-00 00:00:00', 1),
(23855, 26506, 163, 5, 0, 'Lack of consistency . not suitable for the organisation', 162, '0000-00-00 00:00:00', 1),
(23856, 26469, 163, 5, 0, 'lack of knowledge and communication . not  suitable for sales job', 162, '0000-00-00 00:00:00', 1),
(23857, 26509, 59, 3, 0, 'Communication Good Can be trained in our roles and check in training ', 57, '2025-08-25 07:40:30', 1),
(23858, 26517, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23859, 26518, 105, 7, 0, 'candidate communication and performance is good.also she have 6 month exp in viza xxamp 6 month exp in star.will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(23860, 26521, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23861, 26518, 59, 3, 0, 'Communication ok have exp in telecalling same domain sustainability doubts giving reason for every chnages klet us try and check in training', 105, '2025-08-26 02:34:31', 1),
(23862, 26524, 57, 5, 0, 'candidate is ok, not suitable for voice process, reject the profile, previous show exp only', 154, '0000-00-00 00:00:00', 1),
(23863, 26529, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23864, 26532, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23865, 26533, 29, 7, 3, 'Esales RM', 154, '0000-00-00 00:00:00', 1),
(23866, 26535, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23867, 26475, 60, 1, 0, NULL, 30, '2025-08-28 04:42:21', 1),
(23868, 26494, 60, 1, 0, NULL, 30, '2025-08-28 04:43:24', 1),
(23869, 26507, 147, 7, 0, 'having two company experience  and good communication skills  ', 162, '0000-00-00 00:00:00', 1),
(23870, 26478, 30, 7, 3, 'sELECTED FOR DM ASHFAQ TEAM SUGGESTED CTC 22K', 154, '0000-00-00 00:00:00', 1),
(23871, 26507, 59, 3, 0, 'Communication Ok Fresher for our roles have exp in other domain can give a try and check in training', 147, '2025-08-29 10:16:21', 1),
(23872, 26537, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(23873, 26478, 60, 1, 0, NULL, 30, '2025-08-29 11:36:26', 1),
(23874, 26541, 30, 7, 4, '16k suggested ctc  selected for dm ashfaq team', 154, '0000-00-00 00:00:00', 1),
(23875, 26542, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23876, 26536, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23877, 26520, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23878, 26540, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23879, 26539, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23880, 26549, 74, 5, 0, 'not suite for team', 154, '0000-00-00 00:00:00', 1),
(23881, 26538, 163, 5, 0, 'Lack of consistency and communication .', 162, '0000-00-00 00:00:00', 1),
(23882, 26538, 163, 5, 0, 'Lack of consistency and communication .', 162, '0000-00-00 00:00:00', 1),
(23883, 26551, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23884, 26550, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23885, 26546, 57, 7, 0, 'Candidate is ok , commmunication averager , will check with 7 days of training Period, confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(23886, 26544, 57, 7, 0, 'Candidate is ok, fresher  just 50/50 profile, will look 7 days of training period Sathya team', 154, '0000-00-00 00:00:00', 1),
(23887, 26543, 89, 7, 0, 'Good skill. fresher . already part time working sales filed . ', 154, '0000-00-00 00:00:00', 1),
(23888, 26544, 59, 3, 0, 'Communication Ok fresher seems to ok for our role can be trained need to check in training', 57, '2025-08-30 01:32:48', 1),
(23889, 26546, 59, 1, 0, NULL, 57, '2025-08-30 01:33:42', 1),
(23890, 26543, 59, 3, 0, 'Communication ok fresher for our roles can give a try and check in training', 89, '2025-08-30 03:26:14', 1),
(23891, 26533, 59, 3, 0, 'Communication Good have exp in sales can give a try and check in our roles candidate is confident and open to learn let us try', 29, '2025-08-30 07:31:35', 1),
(23892, 26289, 59, 3, 0, 'Selected for IT employement Contractual terms and conditions approved Node + Mysql', 60, '0000-00-00 00:00:00', 1),
(23893, 26559, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23894, 26557, 161, 5, 0, 'poor communication', 154, '0000-00-00 00:00:00', 1),
(23895, 26558, 161, 5, 0, 'not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(23896, 26561, 161, 5, 0, 'very reserved and quiet in the interview', 154, '0000-00-00 00:00:00', 1),
(23897, 26555, 57, 5, 0, 'candidate is not suitable for sales profile, communication not Good.reject the profile..', 154, '0000-00-00 00:00:00', 1),
(23898, 26571, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(23899, 26572, 74, 5, 0, 'not suite for team', 154, '0000-00-00 00:00:00', 1),
(23900, 26565, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23901, 26576, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23902, 26575, 89, 7, 0, 'good skill. will Analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(23903, 26575, 89, 7, 0, 'good skill. will Analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(23904, 26569, 89, 7, 0, 'average skill but if trained he will do it right. fresher', 154, '0000-00-00 00:00:00', 1),
(23905, 26577, 105, 5, 0, 'candidate communication and performance is not good aslo very slow And Lazy.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23906, 25985, 105, 5, 0, 'candidate communication and performance is not good aslo very slow.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23907, 26581, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23908, 26569, 59, 3, 0, 'Communication Ok have exp in other domain open for our roles need to check in training and confirm', 89, '2025-09-03 03:01:47', 1),
(23909, 26575, 59, 3, 0, 'Communication Ok fresher for our roles need to check in training and confirm', 89, '2025-09-03 03:02:47', 1),
(23910, 26573, 139, 4, 0, 'Selected for RM role \nhaving good communication skill\nwill try for rm \nhave to negociate Package ', 154, '0000-00-00 00:00:00', 1),
(23911, 26566, 105, 5, 0, 'candidate communication little ok,but her performance is not good.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23912, 26586, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23913, 26585, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23914, 26573, 18, 7, 3, 'Shortlisted for Gnanashekar team. Ready to Join on Friday and please discsuss the package', 139, '2025-09-03 03:26:59', 1),
(23915, 26583, 163, 5, 0, 'Lack of consistency , doubt arises if  he will stay for 2 years .', 162, '0000-00-00 00:00:00', 1),
(23916, 26541, 60, 1, 0, NULL, 30, '2025-09-03 05:42:19', 1),
(23917, 26573, 60, 1, 0, NULL, 18, '2025-09-03 05:47:41', 1),
(23918, 26592, 149, 7, 0, 'candidate was good at communication and  interested in sales and incentives and also having confidence  and he will at monday ', 154, '0000-00-00 00:00:00', 1),
(23919, 26587, 89, 7, 0, 'good skill. already Experienced at loan collection . ', 154, '0000-00-00 00:00:00', 1),
(23920, 26590, 137, 7, 0, 'candidate communication and vocie is good , she last company distance reason to relaving , timing not issue , so try for 7 days training period and salary exp 16k to 18k , past company salary is 18k ', 154, '0000-00-00 00:00:00', 1),
(23921, 26590, 59, 3, 0, 'Communication Ok have exp in Manapurram customer handling can give a try and check for our roles ', 137, '2025-09-04 01:28:37', 1),
(23922, 26599, 30, 7, 3, 'selected for rm suggested ctc 22k max', 162, '0000-00-00 00:00:00', 1),
(23923, 26592, 60, 1, 0, NULL, 149, '2025-09-04 04:43:37', 1),
(23924, 26591, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23925, 26595, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23926, 26596, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23927, 26606, 74, 5, 0, 'NOT SUITE FOR TEAM', 154, '0000-00-00 00:00:00', 1),
(23928, 26608, 105, 7, 0, 'candidate communication and performance is ok.5050 profile, will check with her in the traiining period', 154, '0000-00-00 00:00:00', 1),
(23929, 26609, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23930, 26612, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23931, 26611, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23932, 26604, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23933, 26587, 59, 3, 0, 'Communication Ok have exp in collections recently married fresher for insurance sales can give a try and check in training', 89, '2025-09-05 04:06:10', 1),
(23934, 26615, 74, 7, 0, 'she is ok with the profile completed bcom in sastra university..23 completed...8 month cub processing time so she not working and then joined in cub 1 and half year experience like operation and sales...21k salary no increment...work in medavakkam...father messon and brother studied college 5km travel from home to office..expected 18k..have laptop and bike immediate joining kindly check and confirm once', 154, '0000-00-00 00:00:00', 1),
(23935, 26563, 163, 5, 0, 'LACK OF COMMUNICATION AND KNOWLEDGE ', 154, '0000-00-00 00:00:00', 1),
(23936, 26562, 30, 7, 3, 'selected for dm vasu team suggested ctc upto 20k', 154, '0000-00-00 00:00:00', 1),
(23937, 26610, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23938, 26602, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23939, 26615, 59, 3, 0, 'Communication Ok have exp in same domain for 1.5 yrs can be trained in our roles worked in City union bank chennai will check in training and confirm\n', 74, '2025-09-06 12:09:12', 1),
(23940, 26619, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23941, 26620, 105, 5, 0, 'candidate communication and performance is not good.also have star agent person is frnd. sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23942, 26621, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23943, 26608, 59, 3, 0, 'selected for gopinath team. have experience in justdial. lets check in training and confirm', 105, '2025-09-06 02:53:03', 1),
(23944, 26599, 60, 1, 0, NULL, 30, '2025-09-06 03:20:54', 1),
(23945, 26631, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(23946, 26632, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(23947, 26634, 74, 7, 0, 'he is ok with the profile completed bba ..fresher...25 passed...father driver...2 brother....parttime...in roadside shop.....work...location 10km.....ready to ARRANGE LAPTOP........salary 12k expected..imeediate joining...', 154, '0000-00-00 00:00:00', 1),
(23948, 26633, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23949, 18243, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23950, 26635, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23951, 26629, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23952, 26639, 74, 5, 0, 'not suite', 154, '0000-00-00 00:00:00', 1),
(23953, 26636, 137, 7, 0, 'Candidate communication and voice very good and very interested in sales and voice process, so try for 7 days training period of exp salary is 16k ', 154, '0000-00-00 00:00:00', 1),
(23954, 26630, 74, 7, 0, 'He is ok with profile completed bsc mohammed sathak chennai - 22,,,1 and half year prepared for govt exam....muthhod finance 7 month intenship...like telecalling..in thanjavur....cafs interview attend and got selected not joined...last year end...father passed...mother sister worked in it bangalore....expected 12 to 13...have laptop...immedaite joining....5 km travel only kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(23955, 26638, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23956, 26640, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23957, 26641, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23958, 26627, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23959, 26628, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23960, 26630, 59, 3, 0, 'communication ok have exp in Muthoot for 7 months previously we have given offer earlier and not joined now rehire can give a try and check', 74, '2025-09-08 05:52:15', 1),
(23961, 26634, 59, 1, 0, NULL, 74, '2025-09-08 05:55:00', 1),
(23962, 26642, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23963, 26646, 57, 5, 0, 'candidate is not suitable for sales profile, sounds not good, interested in Agent feild, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23964, 26649, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23965, 26626, 105, 5, 0, 'candidate communication and perfomance is ok.but sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23966, 26648, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23967, 26679, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23968, 26680, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23969, 26651, 147, 7, 0, 'Fresher good confident English manageable good in Kannada and Telugu salary what company decide', 162, '0000-00-00 00:00:00', 1),
(23970, 26677, 30, 7, 4, 'Suggested ctc upto 23k selected for rm friday or monday he will join', 162, '0000-00-00 00:00:00', 1),
(23971, 26650, 74, 7, 0, 'she is ok with the profile completed mcom in parttime 23 completed...and worked in a auditing office 1 year --12k salary ...father worked as a cashier 18k salary..rental house and worked in karur backend work 15k salary in a textile industry..due to health issue releived...speaked well....join imeediately..expected 12 to 15k..have laptop..immediate joining..kindly check and confirm', 154, '0000-00-00 00:00:00', 1),
(23972, 26650, 59, 3, 0, 'Communication Ok career gap for 2yrs internal team reference sounds confident let us try in training', 74, '2025-09-09 03:36:24', 1),
(23973, 26644, 30, 7, 3, 'Suggested ctc upto 22k max selected for dm immediate joining', 162, '0000-00-00 00:00:00', 1),
(23974, 26677, 60, 1, 0, NULL, 30, '2025-09-09 05:37:38', 1),
(23975, 26644, 60, 1, 0, NULL, 30, '2025-09-09 05:38:57', 1),
(23976, 26643, 30, 7, 3, 'Selected for rm suggested ctc upto 23k max immediate joining', 154, '0000-00-00 00:00:00', 1),
(23977, 26643, 60, 1, 0, NULL, 30, '2025-09-10 11:00:41', 1),
(23978, 26580, 30, 7, 0, 'For BDM profile suggested ctc 7lac confirm from your end for the mail confirmation  for the offer so the he will drop the mail for resignation to star healt', 60, '0000-00-00 00:00:00', 1),
(23979, 26651, 59, 3, 0, 'Communication Average career gap can give atry and check in our training ', 147, '2025-09-10 11:59:27', 1),
(23980, 26746, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23981, 26700, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23982, 26731, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23983, 26739, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23984, 26752, 29, 7, 2, 'Frequent Change in job, have to check, Karthika team 22k salary, 2 lac and 10 SIP, Sept and oct, then 25k from Nov.', 154, '0000-00-00 00:00:00', 1),
(23985, 26747, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23986, 26741, 137, 5, 0, 'She not fit for my team ', 154, '0000-00-00 00:00:00', 1),
(23987, 26740, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23988, 26753, 30, 7, 3, 'Selected for dm suggested ctc max 21k', 162, '0000-00-00 00:00:00', 1),
(23989, 26722, 163, 5, 0, 'Lack of consistency and attending interview for parents force .', 162, '0000-00-00 00:00:00', 1),
(23990, 26753, 60, 1, 0, NULL, 30, '2025-09-10 06:36:29', 1),
(23991, 26636, 59, 3, 0, 'Communication ok fresher open for sales profiles need to check in training', 137, '2025-09-10 06:51:27', 1),
(23992, 26752, 59, 3, 0, 'Communication Ok have exp but no sustainability with multiple reasons can give a try and check sep oct 2L life plus 10K sip then 25K net take home', 29, '2025-09-10 07:07:37', 1),
(23993, 26763, 57, 7, 0, 'candidate is ok, 50/50 profile, will understand 7 days of training period, provide Freshers Salary, thanks', 154, '0000-00-00 00:00:00', 1),
(23994, 26760, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23995, 26764, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23996, 26766, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23997, 26762, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23998, 26765, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23999, 26768, 57, 7, 0, 'candidate is ok. communication average. totally 2yrs + Experience, pls cofirm the joining date xxamp Salary', 154, '0000-00-00 00:00:00', 1),
(24000, 26767, 163, 8, 0, 'DID NOT attend the interview', 162, '0000-00-00 00:00:00', 1),
(24001, 26761, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24002, 26768, 59, 3, 0, 'Communication ok previously attended long back and gave offer but not joined  this is 2nd chance 5050 sustainability let us try', 57, '2025-09-12 11:24:42', 1),
(24003, 26763, 59, 3, 0, 'Communication ok fresher need to check in training', 57, '2025-09-12 11:25:54', 1),
(24004, 26774, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24005, 26580, 60, 1, 0, NULL, 30, '2025-09-12 01:03:45', 1),
(24006, 26771, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24007, 26793, 155, 5, 0, 'expecting non voice and early logout', 154, '0000-00-00 00:00:00', 1),
(24008, 26783, 155, 5, 0, 'expecting non voice', 154, '0000-00-00 00:00:00', 1),
(24009, 26769, 155, 5, 0, 'high non voice preferred... sistainability doubts', 154, '0000-00-00 00:00:00', 1),
(24010, 26817, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24011, 26816, 57, 7, 0, 'Candidate is ok,will check with 7 days of training period. confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(24012, 26823, 105, 5, 0, 'candidate communication iand performance is ok.but little attitude also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24013, 26819, 105, 5, 0, 'candiate communication and performance is not Good.Also Sustainable Is doubt', 154, '0000-00-00 00:00:00', 1),
(24014, 26819, 105, 5, 0, 'candiate communication and performance is not Good.Also Sustainable Is doubt', 154, '0000-00-00 00:00:00', 1),
(24015, 26730, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24016, 26729, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24017, 26727, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24018, 26726, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24019, 26826, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24020, 26825, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24021, 26825, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24022, 26851, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24023, 26821, 57, 5, 0, 'Candidate is not ok, sounds not good, confident level very low, reject the profile', 154, '0000-00-00 00:00:00', 1),
(24024, 26852, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24025, 26853, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24026, 26855, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24027, 26854, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24028, 26856, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24029, 26816, 59, 3, 0, 'Communication Ok have exp but not exactly in insurance sales can be trained in our roles and check', 57, '2025-09-15 06:54:44', 1),
(24030, 26858, 57, 5, 0, 'candidate suitable for collection work, he not interested appt, Sounds not good.', 154, '0000-00-00 00:00:00', 1),
(24031, 26862, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24032, 26863, 57, 5, 0, 'candidate is not suitable for sales profile, communication not good, low confident level, reject', 154, '0000-00-00 00:00:00', 1),
(24033, 26867, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24034, 26861, 30, 7, 3, 'suggested ctc 25k for rm ', 162, '0000-00-00 00:00:00', 1),
(24035, 26865, 105, 7, 0, 'candidate communication and performance is good.5050 profile will check with her in the training period.also currently she in urapakkam distance is long,but she told to relocate after a month.', 154, '0000-00-00 00:00:00', 1),
(24036, 26865, 59, 3, 0, 'Communication OK fresher  our insurance sales cam along with friends only she got selected fr this role family need is there can be trained in our roles', 105, '2025-09-16 03:24:14', 1),
(24037, 26871, 105, 5, 0, 'candidate communication and performance is not good.also his understanding knowledge is very poor.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24038, 26872, 105, 5, 0, 'candidate communication and performance is not good.also he performed very lazy amnd drowsy .then he is dilemma person,so sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24039, 26848, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24040, 26873, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24041, 26866, 140, 4, 0, 'Having sales skills', 154, '0000-00-00 00:00:00', 1),
(24042, 26875, 30, 7, 3, 'Selected for vasu team dm suggested upto 18k ctc', 162, '0000-00-00 00:00:00', 1),
(24043, 26876, 163, 5, 0, 'LACK OF INTEREST AND COMMUNICATION ', 162, '0000-00-00 00:00:00', 1),
(24044, 26562, 60, 1, 0, NULL, 30, '2025-09-17 05:19:31', 1),
(24045, 26875, 60, 1, 0, NULL, 30, '2025-09-17 05:20:17', 1),
(24046, 26861, 60, 1, 0, NULL, 30, '2025-09-17 05:21:13', 1),
(24047, 26888, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24048, 26890, 57, 7, 0, 'Candidate is ok, communication is good, 1yr exp lenskart sales executive, but salary expectation High 22k +, confirm the salary and joining date.. 70/30 profile Not worth for 20k + salary, pls crossc check once again, Thanks', 154, '0000-00-00 00:00:00', 1),
(24049, 26889, 59, 5, 0, 'Looking for Teaching profile till Nov  she is looking for job already she applied multiple schools and colleges and awaiting for the results', 154, '0000-00-00 00:00:00', 1),
(24050, 26890, 59, 3, 0, 'Communication Ok have exp can give a try in our roles ', 57, '2025-09-18 04:06:27', 1),
(24051, 26884, 74, 7, 0, 'She is ok with the profile fresher completed bcom and diploma in co operative society management.. father farmer, mother worked in loan process in goverment rural officer salary 15k....brother worked in a mothilal loan 15k salary...have laptop expected 15k..kindly check once and confirm..speaked well and know about the job clearly so we try...immediate joining...travel time 20mins only.', 154, '0000-00-00 00:00:00', 1),
(24052, 26904, 59, 5, 0, 'Seems to be slow and not aggressive for sales alos preferred to go with non voice family need is there', 154, '0000-00-00 00:00:00', 1),
(24053, 26874, 105, 7, 0, 'candidate communication and Performance is ok.3-months experiance in care health.will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(24054, 26891, 105, 5, 0, 'candidate communication is good,but performance is little poor.also he is confusing in the term of process.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24055, 26894, 140, 5, 0, 'Not enough sales skills, Over confident', 154, '0000-00-00 00:00:00', 1),
(24056, 26907, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24057, 26910, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24058, 26901, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24059, 26913, 59, 5, 0, 'Communication Ok for sales fresher have exp in retention but not suits with our budget CTC exp is 3LPA communicative but doubts in handling our sales pressure 2nd round GK sir reject', 154, '0000-00-00 00:00:00', 1),
(24060, 26915, 105, 7, 0, 'candidate communication and performance is little ok but 5050 profile .also he previously attened in our company past 6-month ago.now his communication is ok.will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(24061, 26918, 57, 7, 0, 'Candidate is ok , 3yr expe different domain communicatiom average, but pls confirm the salary\nThanks ', 154, '0000-00-00 00:00:00', 1),
(24062, 26081, 105, 5, 0, 'canidate communication and performance is ok.but she is much more intrested in his core iT.Presure handling and sustainable is doubt ', 154, '0000-00-00 00:00:00', 1),
(24063, 26874, 59, 3, 0, 'Communication Ok 3 months exp in care Health  family need is there 5050 need to check in training ', 105, '2025-09-19 04:41:26', 1),
(24064, 26915, 59, 3, 0, 'Previously attended with us and got rejected later got some exp and tried again 5050 check in training', 105, '2025-09-19 04:43:26', 1),
(24065, 26906, 59, 5, 0, 'Good in Communication Too long Distance also he is open for IT Vacancies for time being he is looking into this ', 154, '0000-00-00 00:00:00', 1),
(24066, 26895, 59, 5, 0, 'she need time to decide focusing only on the salary and much comfort to work in non voice much', 154, '0000-00-00 00:00:00', 1),
(24067, 26909, 59, 5, 0, 'No sustainability 1.8 yrs 3 companies comparitively he is ok with non voice only for sales not suitable', 154, '0000-00-00 00:00:00', 1),
(24068, 26916, 59, 5, 0, 'open for non voice completely will not sustain in our sales profile', 154, '0000-00-00 00:00:00', 1),
(24069, 26914, 59, 5, 0, 'mentioned exp as same for 6 months but voice no clarity and not suits for our roles will not handle our pressure', 154, '0000-00-00 00:00:00', 1),
(24070, 26884, 59, 3, 0, 'Communication Ok fresher open for insurance sales can be trained and check ', 74, '2025-09-20 10:44:34', 1),
(24071, 26911, 59, 3, 0, 'Have exp in digital marketing and a gap too need to train for our roles 2yrs NDA for Digital Marketing', 154, '0000-00-00 00:00:00', 1),
(24072, 26935, 156, 7, 0, 'candidate is ok, communication good. 9months exp in Hdb financial services cross check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(24073, 26934, 57, 7, 0, 'Candidate is ok. 9 m exp com good. ', 154, '0000-00-00 00:00:00', 1),
(24074, 26866, 29, 7, 3, 'Porrselvan team,', 140, '2025-09-20 06:49:14', 1),
(24075, 26866, 59, 3, 0, 'Communicaton Ok have exp in sales yes bacnk can be trained in our roles based on gaurav sir feedback proceeded withthis salary', 29, '2025-09-20 06:52:00', 1),
(24076, 26934, 59, 1, 0, NULL, 57, '2025-09-22 10:06:39', 1),
(24077, 26930, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24078, 26929, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24079, 26912, 155, 5, 0, 'candidate is very slow. will not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(24080, 26935, 59, 1, 0, NULL, 156, '2025-09-22 10:20:54', 1),
(24081, 26880, 30, 7, 2, 'Suggested ctc 20k for vasu team dm', 162, '0000-00-00 00:00:00', 1),
(24082, 26951, 11, 7, 0, 'Selected forbE sales', 154, '0000-00-00 00:00:00', 1),
(24083, 26956, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24084, 26956, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24085, 26899, 59, 5, 0, 'Communication Ok Fresher much focus to go with Cyber security Role not much comfort with voice as of now if he didnt get any opportunities if he comes in future let us try', 154, '0000-00-00 00:00:00', 1),
(24086, 26886, 155, 5, 0, 'not responding for anything in the interview and very slow so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(24087, 26886, 155, 5, 0, 'not responding for anything in the interview and very slow so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(24088, 26919, 155, 5, 0, 'looking for IT max', 154, '0000-00-00 00:00:00', 1),
(24089, 26922, 155, 5, 0, 'communication ok, but mostly looking for IT, sustainability in our role is doubtful', 154, '0000-00-00 00:00:00', 1),
(24090, 26920, 155, 5, 0, 'looking for IT max. sustainability for our roles is doubtful', 154, '0000-00-00 00:00:00', 1),
(24091, 26955, 139, 4, 0, 'Selected for RM role \ndont have exp in sales \nwe can try for RM ', 154, '0000-00-00 00:00:00', 1),
(24092, 26957, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24093, 26957, 139, 4, 0, 'Selected for RM role \nhaving good communication skill \n1 yr exp in insurance sales \nbasic knowledge about health \n', 154, '0000-00-00 00:00:00', 1),
(24094, 26958, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(24095, 26960, 59, 5, 0, 'Looking for complete non voice process will not sustain and sometimes seems to have stammering too', 154, '0000-00-00 00:00:00', 1),
(24096, 26953, 59, 5, 0, 'Not serious with the jobs long career gap and no job turnouts attended multiple/joined and left but not opening on these details much seems to give lot of stories', 154, '0000-00-00 00:00:00', 1),
(24097, 26954, 59, 5, 0, 'He is looking for customer support roles only and not much open for sales roles 5050 will not sustain and handle pressure in our roles', 154, '0000-00-00 00:00:00', 1),
(24098, 26952, 59, 5, 0, 'Fresher need to open up a lot seems to be much reserved will not sustain and handle our pressure not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(24099, 26952, 59, 5, 0, 'Fresher need to open up a lot seems to be much reserved will not sustain and handle our pressure not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(24100, 26961, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(24101, 26961, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(24102, 26944, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24103, 26918, 59, 3, 0, 'Communication Ok have complete exp in pharma sales Open for insurance and fresher to learn internal team madhan reference closed friend of Madhan itseems.Let us try', 57, '2025-09-23 08:41:24', 1),
(24104, 26880, 60, 1, 0, NULL, 30, '2025-09-23 10:26:10', 1),
(24105, 26962, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24106, 26957, 18, 7, 3, 'Selected for Gnanashekar team. Shall join on 6 Oct. Please negotiate the salary as per your observation and release the offer', 139, '2025-09-23 12:02:30', 1),
(24107, 26955, 18, 7, 3, 'Shortlisted for Gnanashekar team. Offer 27k Net in Hand excluding PF and he is ready  to join on 6 Oct. ', 139, '2025-09-23 12:03:17', 1),
(24108, 26965, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24109, 26893, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24110, 26893, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24111, 26969, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24112, 26968, 29, 7, 2, 'pay fixed exc PF for first 3 month, based on perfo can add PF, min 2L*2 months req and 10K SIP*3 Months', 154, '0000-00-00 00:00:00', 1),
(24113, 26964, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24114, 26957, 60, 1, 0, NULL, 18, '2025-09-24 12:18:19', 1),
(24115, 26955, 60, 1, 0, NULL, 18, '2025-09-24 12:19:43', 1),
(24116, 26985, 105, 7, 0, 'Candidate Interviewed By Syed. as discussed with them candidate communication and performance is ok. She have 1 year experience in ar tellicalling. But her distance is to long.will check With her in the training period. ', 154, '0000-00-00 00:00:00', 1),
(24117, 26974, 137, 7, 0, 'candidate communication skill and vocie its average , but work needed person , exp salary its 16k to 18k , so try for 7 days training period ', 154, '0000-00-00 00:00:00', 1),
(24118, 26977, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24119, 26980, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24120, 26986, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24121, 26982, 152, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24122, 26981, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24123, 26978, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24124, 26968, 59, 3, 0, 'Communication Ok have exp in Byjus and software producct sales can be trained in our roles committed to give PF Pt after 3 months ', 29, '2025-09-24 07:03:04', 1),
(24125, 26985, 59, 1, 0, NULL, 105, '2025-09-24 11:03:44', 1),
(24126, 26974, 59, 3, 0, 'Communication Ok fresher career gap of 2yrs need to check in training and confirm', 137, '2025-09-25 10:11:04', 1),
(24127, 26983, 155, 5, 0, 'no having clear idea about going to sales or IT. his core interest is towards IT job only, sustainability doubts. he wil jump if he gets IT Job', 154, '0000-00-00 00:00:00', 1),
(24128, 26995, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24129, 26994, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24130, 26975, 30, 7, 3, 'selected for vasu team dm suggested ctc 23k', 154, '0000-00-00 00:00:00', 1),
(24131, 26987, 59, 5, 0, 'Have exp in customer handling but not open for renewal and sales calling salary exp is very high current exp is with Star health recently got increment and left looking for the salary much', 154, '0000-00-00 00:00:00', 1),
(24132, 26989, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24133, 26989, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24134, 27002, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24135, 27003, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24136, 27010, 156, 7, 0, 'candidate is ok, communication average. 5 months exp for al arab arafa manpower consultancy. pls cross check sustainabiltiy and confirm the joining date.', 104, '0000-00-00 00:00:00', 1),
(24137, 27014, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24138, 26998, 109, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24139, 27010, 59, 3, 0, 'Communication Ok have exp but not exactly in our domain can be trained need to check in training', 156, '2025-09-26 05:16:43', 1),
(24140, 27012, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(24141, 27000, 105, 5, 0, 'candidate communication and performance is not good.aslo she mention in her profile have experiance in telecalling.but she is not communicating much more', 154, '0000-00-00 00:00:00', 1),
(24142, 27013, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24143, 27021, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24144, 26759, 105, 5, 0, 'candidate communication and performance is not good also he core is difffrent.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24145, 26759, 105, 5, 0, 'candidate communication and performance is not good also he core is difffrent.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24146, 27023, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24147, 27024, 30, 7, 3, 'Selected for Dm Ashfaq team suggested ctc 22k immediate joining', 162, '0000-00-00 00:00:00', 1),
(24148, 27024, 60, 1, 0, NULL, 30, '2025-09-27 06:30:59', 1),
(24149, 26975, 60, 1, 0, NULL, 30, '2025-09-27 06:32:30', 1),
(24150, 27044, 30, 7, 3, 'Selected for rm suggested ctc 25k', 162, '0000-00-00 00:00:00', 1),
(24151, 27041, 30, 7, 3, 'suggested ctc 26k for rm', 162, '0000-00-00 00:00:00', 1),
(24152, 27030, 11, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24153, 27029, 105, 5, 0, 'candidate communicartion and performance is not good.aslo he is drowsy and sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(24154, 27040, 59, 5, 0, 'careergap  also not serious with the job necessity just shifted companies to companies with no valid reasons also not showing much interest with the job roles will not sustain', 159, '0000-00-00 00:00:00', 1),
(24155, 27043, 59, 5, 0, 'looking for non voice process and not comfort with the targets', 159, '0000-00-00 00:00:00', 1),
(24156, 27042, 59, 5, 0, 'Not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(24157, 27025, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary. kindly confirm the joining date.', 159, '0000-00-00 00:00:00', 1),
(24158, 27051, 30, 7, 3, 'Selected for rm suggested ctc  upto 4 to 4.3lacs', 162, '0000-00-00 00:00:00', 1),
(24159, 27039, 30, 7, 3, 'ctc 25k if k means will go for rm profile', 162, '0000-00-00 00:00:00', 1),
(24160, 27049, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24161, 27049, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24162, 27050, 105, 5, 0, 'candidate communication and perfromance is not good.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24163, 27025, 59, 3, 0, 'Communication Ok fresher for our roles 5050 need to check in training anfd confirm\n', 156, '2025-09-30 06:48:31', 1),
(24164, 27051, 60, 1, 0, NULL, 30, '2025-10-03 01:29:52', 1),
(24165, 27055, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24166, 27054, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24167, 27052, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24168, 27052, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24169, 27059, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24170, 27044, 60, 1, 0, NULL, 30, '2025-10-03 06:06:38', 1),
(24171, 27041, 60, 1, 0, NULL, 30, '2025-10-03 06:07:30', 1),
(24172, 27039, 60, 1, 0, NULL, 30, '2025-10-03 06:08:27', 1),
(24173, 27058, 59, 5, 0, 'Looking for non voice roles only', 154, '0000-00-00 00:00:00', 1),
(24174, 27065, 163, 5, 0, 'lack of communication and knowledge', 162, '0000-00-00 00:00:00', 1),
(24175, 27064, 161, 2, 0, 'his location is in vandalur. communication is okay I moved this to charles and gokul sir for next level they are okay with the profile but the candidate is thinking about distance and salary package. He is not interested in sales too', 154, '0000-00-00 00:00:00', 1),
(24176, 27019, 89, 7, 0, 'Average skill. already 3 month working at visa tele calling. will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(24177, 27068, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24178, 27068, 155, 2, 0, 'communication ok, 50-50 for our role, but not comfort with going to direct meetings, need time to think', 154, '0000-00-00 00:00:00', 1),
(24179, 27078, 155, 5, 0, 'communication slang and pronouncation of speaking is not good and prefers HR Role', 154, '0000-00-00 00:00:00', 1),
(24180, 27061, 155, 5, 0, 'communication and slang of speaking is not good, so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(24181, 27079, 155, 5, 0, 'communication average, but need to open up a lot and not seem to be much comfort and searching for IT also so sustainability doubts', 154, '0000-00-00 00:00:00', 1),
(24182, 27075, 155, 5, 0, 'sustainability issues, 10 months 2 companies and salary exp also high', 154, '0000-00-00 00:00:00', 1),
(24183, 27073, 155, 5, 0, 'sustainability issues, 10 months 2 companies and salary exp also high', 154, '0000-00-00 00:00:00', 1),
(24184, 27080, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24185, 27074, 59, 2, 0, 'Communication Good have exp in front office for a long much focused on hr roles now need to hold and check later ', 154, '0000-00-00 00:00:00', 1),
(24186, 27072, 59, 5, 0, 'Distance too long also stammering issues he has will have difficulties in handling our roles not suitable', 154, '0000-00-00 00:00:00', 1),
(24187, 27076, 59, 5, 0, 'much focused on data entry and not much interested to go with sales callings', 154, '0000-00-00 00:00:00', 1),
(24188, 27063, 163, 5, 0, 'Lack of communication and confidence ', 162, '0000-00-00 00:00:00', 1),
(24189, 27057, 105, 5, 0, 'candidate communication and performance is not good.also he is drowsy and very low.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24190, 27066, 59, 5, 0, 'Not much necessity withh the jobs just for time being he is looking fr the jobs', 154, '0000-00-00 00:00:00', 1),
(24191, 27077, 59, 5, 0, 'Communication was good and had previous exp in ICICI life 5050 try so asked him to come back after luch for 2nd round but he didnt turned up', 154, '0000-00-00 00:00:00', 1),
(24192, 27062, 30, 7, 3, 'Selected for Dm he is totally fresher suggested ctc upto 18k But good communication skill', 154, '0000-00-00 00:00:00', 1),
(24193, 27062, 30, 7, 3, 'Selected for Dm he is totally fresher suggested ctc upto 18k But good communication skill', 154, '0000-00-00 00:00:00', 1),
(24194, 27019, 59, 3, 0, 'Communication just 2 months exp in Vizza verified the documents considerin a sfresher we processed', 89, '2025-10-07 10:36:11', 1),
(24195, 27088, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24196, 27087, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24197, 27089, 59, 5, 0, 'Not suitable for our roles no clarity with her previous work will not handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(24198, 27092, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24199, 27090, 11, 7, 0, 'Selected for E sales ', 154, '0000-00-00 00:00:00', 1),
(24200, 27086, 163, 5, 0, 'Left without informing after 1st round (Hr round)', 162, '0000-00-00 00:00:00', 1),
(24201, 27062, 60, 1, 0, NULL, 30, '2025-10-07 06:01:11', 1),
(24202, 27098, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24203, 27099, 59, 5, 0, 'Not suitable for our roles will not sustain and handle our roles', 154, '0000-00-00 00:00:00', 1),
(24204, 27060, 57, 7, 0, 'Candidate is ok, 1.5 yrs exp. confirm the joining date xxamp salary,', 154, '0000-00-00 00:00:00', 1),
(24205, 27105, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24206, 27106, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24207, 27102, 59, 2, 0, 'Communication Ok but seems not much profiled to our roles even she has multiple exp in telecalling salary is very high she left without attending the final round of discussion assigned to gnanasekar(Abdul on behalf)', 154, '0000-00-00 00:00:00', 1),
(24208, 27109, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24209, 27108, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24210, 27113, 59, 5, 0, 'Not suitable digital marketing roles fresher no basic ideas', 154, '0000-00-00 00:00:00', 1),
(24211, 27114, 105, 5, 0, 'candidate communication and performance is not good.also he is drowsy and very low understadning.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24212, 27081, 59, 5, 0, 'no basic knowledge not suitable for our roles will not handle the sales callings', 154, '0000-00-00 00:00:00', 1),
(24213, 25568, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24214, 25568, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24215, 27118, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24216, 27124, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24217, 27060, 59, 1, 0, NULL, 57, '2025-10-10 06:07:10', 1),
(24218, 26993, 59, 5, 0, 'looking for non voice not open for targets in sales', 104, '0000-00-00 00:00:00', 1),
(24219, 27123, 59, 5, 0, 'not  much aggressive to our sales will not handle our work roles not suitable', 104, '0000-00-00 00:00:00', 1),
(24220, 27128, 11, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24221, 27122, 59, 2, 0, 'rebar referrence not ok woth the terms and conditions for IT positions', 104, '0000-00-00 00:00:00', 1),
(24222, 27100, 163, 5, 0, 'LACK OF HONESTY', 162, '0000-00-00 00:00:00', 1),
(24223, 27116, 163, 5, 0, 'LACK OF OFFICE MANNERS , COMMUNICATION AND KNOWLEDGE', 162, '0000-00-00 00:00:00', 1),
(24224, 27125, 163, 5, 0, 'ATTENDED 2 ROUNDS , WENT FOR LUNCH AND NEVER SHOWED UP FOR THIRD ROUND', 162, '0000-00-00 00:00:00', 1),
(24225, 27132, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24226, 27136, 59, 5, 0, 'Not much suitable for our roles will not handle our work pressurenot suits for sales', 154, '0000-00-00 00:00:00', 1),
(24227, 27140, 155, 5, 0, 'not much active and will not handle pressure for sales and sustainability doubts', 154, '0000-00-00 00:00:00', 1),
(24228, 27139, 155, 5, 0, 'will not sustain in working with targets. sustainability doubts', 154, '0000-00-00 00:00:00', 1),
(24229, 27137, 105, 5, 0, 'candidate communication and performance is not good.also attire is very poor sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24230, 27142, 59, 5, 0, 'worked in different domain for a long and 6 months in calling,pressure handling and sustainability doubts as she is not much comfort withe sales callings', 154, '0000-00-00 00:00:00', 1),
(24231, 27141, 59, 5, 0, 'not open for sales calling looking for support roles only', 154, '0000-00-00 00:00:00', 1),
(24232, 27152, 59, 5, 0, 'she is looking for core accounts profile only not open for sales', 154, '0000-00-00 00:00:00', 1),
(24233, 27153, 59, 5, 0, 'Complete medical billing exp fr more than 5yrs since he is not getting any relevant now he is looking for these sort of roles also he is keen lookin for the same profile will not sustain in our roles for a long', 154, '0000-00-00 00:00:00', 1),
(24234, 27154, 59, 5, 0, 'Not suitable for our roles long career gap and no clarity to go with the particular roles ', 154, '0000-00-00 00:00:00', 1),
(24235, 27155, 59, 5, 0, 'Looking only for customer support roles and not open for sales callings\n', 154, '0000-00-00 00:00:00', 1),
(24236, 27157, 59, 5, 0, 'MSC graducate and looking for coreIT vacancy for time being he is looking into this fresher', 154, '0000-00-00 00:00:00', 1),
(24237, 27151, 105, 5, 0, 'candidate communication and performace is not good.also attitude charater and attire is not good.sustainablke is doubt', 154, '0000-00-00 00:00:00', 1),
(24238, 27150, 105, 5, 0, 'candidate communication and performance is little not good.also long distance.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24239, 27149, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24240, 27149, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24241, 27130, 59, 5, 0, 'Not completely open for sales having a kind of attitude and being a fresher his salary expectation is very highWill not sustain  in our roles ', 154, '0000-00-00 00:00:00', 1),
(24242, 27164, 89, 7, 0, 'good skill.  she has basic knowledge from sales marketing. money needed person . will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(24243, 27161, 89, 5, 0, 'NO BASIC SKILL', 154, '0000-00-00 00:00:00', 1),
(24244, 27163, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24245, 27160, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24246, 27165, 59, 5, 0, 'sustainability issues In1.3yrs travelled with 3 companies and this is 4th also there is no proper explanation for the exit from the previous stated some issues related to posh and alos the previous reason also not seems to be valid', 154, '0000-00-00 00:00:00', 1),
(24247, 27164, 59, 3, 0, 'Communication Ok fresher need to check in training and confirm based on manager approval we have given him the joining', 89, '2025-10-13 05:06:27', 1),
(24248, 26990, 59, 5, 0, 'not suits for our roles', 60, '0000-00-00 00:00:00', 1),
(24249, 27162, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24250, 27177, 105, 5, 0, 'candidate communication and performance is good.but she is preparing for some gov exams.but sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24251, 27169, 105, 5, 0, 'Candidate communication and perfomance is not good.Sensitive type she does not handle the pressure.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24252, 27169, 105, 5, 0, 'Candidate communication and perfomance is not good.Sensitive type she does not handle the pressure.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24253, 27156, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24254, 27172, 163, 5, 0, 'dOES NOT KNOW KANNADA AND NO PROPER COMMUNICATION IN ENGLISH', 162, '0000-00-00 00:00:00', 1),
(24255, 27178, 30, 7, 3, 'sugegsted ctc 20k for dm vasu team nov 1st week joining', 162, '0000-00-00 00:00:00', 1),
(24256, 27175, 105, 7, 0, 'candidate communication and performance is ok.but 5050 profile,will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(24257, 27174, 105, 5, 0, 'Candidate communication and perfomance is not good.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24258, 27173, 105, 5, 0, 'Candidate communication and perfomance is not good.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24259, 27182, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24260, 27133, 57, 4, 0, 'Candidate is ok , communication Average, kindly confirm the joining date xxamp Salary, ', 154, '0000-00-00 00:00:00', 1),
(24261, 27181, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24262, 27175, 59, 1, 0, NULL, 105, '2025-10-15 12:38:03', 1),
(24263, 27187, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24264, 27187, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24265, 27184, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24266, 27186, 105, 2, 0, 'candidate communication and performance is good.aslo he have 1.09 yrs exp in just dail. expected TH as 24k per month but i convinced for 20k ctc per month.he is reliving on next month 5th kindly follow with him and procced joining for after 5th of nov 2025.', 154, '0000-00-00 00:00:00', 1),
(24267, 27186, 105, 2, 0, 'candidate communication and performance is good.aslo he have 1.09 yrs exp in just dail. expected TH as 24k per month but i convinced for 20k ctc per month.he is reliving on next month 5th kindly follow with him and procced joining for after 5th of nov 2025.', 154, '0000-00-00 00:00:00', 1),
(24268, 27190, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24269, 27195, 105, 5, 0, 'candidate communication and performance is ok.but she is intrested in Non voice process also she said she is sensitive type sos sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24270, 27191, 59, 2, 0, 'He is looking for UI UX  givn him the complete info about the profile and the terms need to check if he comes back let us hold and confirm', 154, '0000-00-00 00:00:00', 1),
(24271, 27196, 59, 2, 0, 'Communication Average for Digital marketing just SEM Exp Open to learn Written content is not upto the expectation need to check via meet and confirm later', 154, '0000-00-00 00:00:00', 1),
(24272, 27185, 59, 5, 0, 'Not open for sales calling looking for non voice only', 154, '0000-00-00 00:00:00', 1),
(24273, 27188, 139, 7, 0, 'Shortlisted for RM role\nhaving good communication skills\nhaving relevant  exp in sales \npackage have to negociate ', 154, '0000-00-00 00:00:00', 1),
(24274, 27197, 59, 2, 0, 'Not much suits for our roles but need to check after few days complete fresher let him look multiple interviews and check not much good with the sales pitch', 154, '0000-00-00 00:00:00', 1),
(24275, 27188, 60, 1, 0, NULL, 139, '2025-10-16 06:31:52', 1),
(24276, 27204, 163, 5, 0, 'INTERESTED ONLY IN NON VOICE PROCESS', 162, '0000-00-00 00:00:00', 1),
(24277, 27208, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24278, 27212, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24279, 27198, 155, 5, 0, 'prefers non voice and admin roles. not willing to work with sales and targets', 154, '0000-00-00 00:00:00', 1),
(24280, 27220, 139, 7, 0, 'Shortlisted for RM role, \nsriram sir also complete the final round, Having good communication skills, Package have to negociate ', 154, '0000-00-00 00:00:00', 1),
(24281, 27194, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24282, 27226, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24283, 27201, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24284, 27224, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24285, 27230, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24286, 27231, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24287, 27084, 59, 3, 0, 'Anudip Foundation Profile Direct interview in Foundation and cleared further rounds in office Processed with 3.5 yrs Agreement but no cheque for him in future may collect from salary Account Cheque', 60, '0000-00-00 00:00:00', 1),
(24288, 27239, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24289, 27236, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24290, 27218, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24291, 27240, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24292, 27250, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24293, 27242, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24294, 26814, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24295, 27247, 30, 7, 3, 'suggested ctc upto 23k for dm ashfaq team immediate joining', 162, '0000-00-00 00:00:00', 1),
(24296, 27247, 60, 1, 0, NULL, 30, '2025-10-24 03:30:34', 1),
(24297, 27178, 60, 1, 0, NULL, 30, '2025-10-24 03:31:39', 1),
(24298, 27262, 59, 3, 0, 'Communication Ok fresher for our roles have customer support exp in KPN farm fresh need to check in 7 days training', 154, '0000-00-00 00:00:00', 1),
(24299, 27262, 59, 3, 0, 'Communication Ok fresher for our roles have customer support exp in KPN farm fresh need to check in 7 days training', 154, '0000-00-00 00:00:00', 1),
(24300, 27252, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24301, 27272, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24302, 27274, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24303, 27260, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24304, 27270, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24305, 27268, 59, 3, 0, 'Slecetd for UI/UX based on the task completion Have exp in React Too based on the manager decision need to proceed further Agreed with the TxxampC cheque will be submitted after 5 months self cheque salary account', 159, '0000-00-00 00:00:00', 1),
(24306, 27275, 89, 7, 0, 'Alredy 6 month experience at star health. Will analysis training days.. expectation 17 k', 154, '0000-00-00 00:00:00', 1),
(24307, 27275, 59, 3, 0, 'Communication Ok seems to average need to check in training and confirm have 2 months exp in Vizza will check and confirm', 89, '2025-10-25 05:57:07', 1),
(24308, 27290, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24309, 27291, 57, 7, 0, 'Candidate is 50/50 profile, pls check once again communication,  sathya team `\nFresher...', 154, '0000-00-00 00:00:00', 1),
(24310, 27281, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24311, 27291, 59, 3, 0, 'Communication Ok Fresher for our roles need to check in training and confirm', 57, '2025-10-27 04:46:46', 1),
(24312, 27295, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24313, 27309, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24314, 27299, 163, 5, 0, 'DOES NOT KNOW KANNADA AND ENGLISH', 162, '0000-00-00 00:00:00', 1),
(24315, 27298, 163, 5, 0, 'DOES NOT KNOW KANNADA AND ENGLISH', 162, '0000-00-00 00:00:00', 1),
(24316, 27292, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24317, 27320, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24318, 27322, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24319, 27303, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24320, 27316, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24321, 27329, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24322, 27302, 59, 3, 0, 'Communication Good Fresher for Telecalling RE profile for Renew can give a try and check in training', 159, '0000-00-00 00:00:00', 1),
(24323, 27144, 89, 7, 0, 'Average skill , fresher but will Analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(24324, 27133, 59, 3, 0, 'Communication Ok have exp in Vizza for almost 2years later gap for 2years due to marriage need to check and confirm', 57, '2025-11-01 04:06:08', 1),
(24325, 27144, 59, 3, 0, 'Communication Ok seems to be 5050 for our roles can give a try and check in training', 89, '2025-11-01 04:48:33', 1),
(24326, 27067, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24327, 27352, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24328, 27349, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24329, 27351, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24330, 27348, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24331, 27347, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24332, 26767, 60, 1, 0, NULL, 30, '2025-11-04 03:24:48', 1),
(24333, 26951, 60, 1, 0, NULL, 11, '2025-11-05 09:33:21', 1),
(24334, 27090, 60, 1, 0, NULL, 11, '2025-11-05 09:33:57', 1),
(24335, 27366, 57, 7, 0, 'Candidate is ok, communication Average, check distance long, confirm the joining date xxamp salary, Self team', 154, '0000-00-00 00:00:00', 1),
(24336, 27365, 57, 7, 0, 'Candidate is ok, communication good, Convincing xxamp Product Skill good, Check once distance too long, pls confirm the joining date xxamp Salary( Sathya Team)', 154, '0000-00-00 00:00:00', 1),
(24337, 27070, 156, 7, 0, 'candidate is ok, communication average. kindly provide the fresher salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(24338, 27365, 59, 1, 0, NULL, 57, '2025-11-05 03:29:36', 1),
(24339, 27366, 59, 1, 0, NULL, 57, '2025-11-05 03:30:36', 1),
(24340, 27360, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24341, 27070, 59, 1, 0, NULL, 156, '2025-11-05 03:39:34', 1),
(24342, 27368, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24343, 27379, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24344, 27378, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24345, 27376, 30, 7, 3, 'fresher selected for vasu team suggested ctc 17k', 162, '0000-00-00 00:00:00', 1),
(24346, 27377, 30, 7, 3, 'fresher suggested ctc 17k for ashfaq team', 162, '0000-00-00 00:00:00', 1),
(24347, 27306, 30, 7, 3, 'selected for dm ashfaq team suggested ctc 20k', 162, '0000-00-00 00:00:00', 1),
(24348, 27384, 74, 7, 0, 'She is ok with the profile completed bsc computer science,,,,father passed away...elder sister work in salem IT...25k salary in relative house ...she is in mannargudi...worked in finance company for gold loan....with 15k salary and releived due to mother health issue.....have laptop imeediate joining......need to cross check cleary for travel only thanjavur to mannargudi have bus facility frequently...but mannargudi to home 10km have no frequent bus...thats the issue in night time..but she is ok with that but our side need to cross check...and she is the only care taker for mother', 154, '0000-00-00 00:00:00', 1),
(24349, 27382, 156, 7, 0, 'candidate is ok, communication average. kindly provide the fresher salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(24350, 27384, 59, 1, 0, NULL, 74, '2025-11-07 12:03:00', 1),
(24351, 27382, 59, 3, 0, 'Based on the interview from HR Team Sridhar and the Manager syed update we have processed the profile for Deshwaran Team let us check in training and confirm\n', 156, '2025-11-07 12:06:41', 1),
(24352, 27306, 60, 1, 0, NULL, 30, '2025-11-07 12:25:02', 1),
(24353, 27376, 60, 1, 0, NULL, 30, '2025-11-07 12:27:50', 1),
(24354, 27377, 60, 1, 0, NULL, 30, '2025-11-07 12:28:35', 1),
(24355, 27386, 30, 7, 3, 'suggested ctc 17k ctc selected for vasu team dm', 162, '0000-00-00 00:00:00', 1),
(24356, 27385, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24357, 27383, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24358, 27390, 74, 7, 0, 'she is ok with the profile...3 yrs worked as a sofware develper 30k salary....native mannargudi..spoouse worked as in family 25k salary...travel time 45 mins in office bus stop it will be available..no baby plan currently...have laptop expected 15 to 17..immediate joining kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(24359, 27391, 74, 7, 0, 'she is ok with the profile completed MCA in anjalai ammal engg clg....native thanjavur ..married in pudukottai...husband in singapore return 2027....1 child 2 years caring by mother single parent....she is worked in calibehr business support in chennai and after 8 month promoted as team lead..2019-2023.....taken 22k salary...have laptop....expected 15 to 17k kindly check and confirm', 154, '0000-00-00 00:00:00', 1),
(24360, 27393, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24361, 27392, 74, 5, 0, 'not suite for team.', 154, '0000-00-00 00:00:00', 1),
(24362, 27391, 59, 1, 0, NULL, 74, '2025-11-10 02:35:06', 1),
(24363, 27381, 57, 4, 0, 'Candiate is ok, communication average, 9m exp. pls check sustainability, pls confirm the salary and joining date,.', 154, '0000-00-00 00:00:00', 1),
(24364, 27388, 152, 4, 0, 'CTC To be discussed by HR Team', 154, '0000-00-00 00:00:00', 1),
(24365, 27390, 59, 3, 0, 'Communication Ok fresher for insurance sales earlier worked in IT recently married need to check her sustainability', 74, '2025-11-10 06:02:30', 1),
(24366, 27399, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24367, 27401, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24368, 27220, 60, 1, 0, NULL, 139, '2025-11-11 01:25:56', 1),
(24369, 27386, 60, 1, 0, NULL, 30, '2025-11-11 01:29:51', 1),
(24370, 27403, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24371, 27398, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24372, 27400, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24373, 27381, 59, 3, 0, 'Communication Ok Fresher need to train and check in the training process let us consider ifor training and cehck', 57, '2025-11-11 03:25:27', 1),
(24374, 27406, 109, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24375, 27404, 105, 5, 0, 'candidate communication and performance is not good.also she is not talk about genral topic and her voice is low.sustainable is doubt.', 159, '0000-00-00 00:00:00', 1),
(24376, 27407, 105, 7, 0, 'canidate communication and performance is little ok.5050 profile will check with him in the training period', 159, '0000-00-00 00:00:00', 1),
(24377, 27407, 59, 3, 0, 'Communication Ok but not sure on his sustainability no valid reasons for his previous relieving and not much serious with the job abd his career gap let us check in training and confirm', 105, '2025-11-12 04:15:02', 1),
(24378, 27408, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24379, 27410, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24380, 27411, 137, 7, 0, 'candidate communication skill and language ok , already exp 1 year with mobile insurance , so try for 7 days training period', 154, '0000-00-00 00:00:00', 1),
(24381, 27413, 152, 4, 3, 'Selected for next round', 154, '0000-00-00 00:00:00', 1),
(24382, 27388, 18, 7, 0, 'Seleted for Abdul team. Will Join after his notice period. Please negotiate the salary as per your choice and confrim the joining date. He is a good young candidate', 152, '2025-11-13 02:39:37', 1),
(24383, 27413, 18, 1, 0, NULL, 152, '2025-11-13 02:45:35', 1),
(24384, 27412, 30, 7, 4, 'sELECTED FOR RM MAX SUGGESTED CTC UPTO 5LAC', 162, '0000-00-00 00:00:00', 1),
(24385, 27412, 60, 1, 0, NULL, 30, '2025-11-13 06:34:59', 1),
(24386, 27414, 74, 7, 0, 'she is ok with the profile completed bcom in bon securs college 24...and joined in swiggy process 1.2 yr experience in night shift 18k salary...due to salary issue releived from job and currently financial issue not willing to seek job in coimbatore....father hotel manager mother doing catering work order basis...brother worked in IT coimbatore 15k salary....expected 15k,,,,,travel time 5km from office...monday joining....no laptop....kindly cross check any intrested to seek job again in coimbatore...and intrested in telesales too', 154, '0000-00-00 00:00:00', 1),
(24387, 27427, 18, 7, 3, 'Shortlisted for Self team under Ramar.  Negotiate the salary and immedeate jointer.', 154, '0000-00-00 00:00:00', 1),
(24388, 27424, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24389, 27417, 18, 5, 0, 'Not Fit for Sales', 154, '0000-00-00 00:00:00', 1),
(24390, 27414, 59, 1, 0, NULL, 74, '2025-11-14 06:07:58', 1),
(24391, 27430, 74, 5, 0, 'Not fit', 154, '0000-00-00 00:00:00', 1),
(24392, 27430, 74, 5, 0, 'Not fit', 154, '0000-00-00 00:00:00', 1),
(24393, 27428, 29, 7, 3, 'for Sivakumar Team, Given - 2.10 CTC, in Nov and Dec 25 if complted 3 lac Life and 10K SIP can incre sal to 2.5 ctc ', 154, '0000-00-00 00:00:00', 1),
(24394, 27439, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24395, 27411, 59, 3, 0, 'Communication Ok have exp in consumer loan process fresher for insurance can give a try and check ', 137, '2025-11-15 03:14:47', 1),
(24396, 27436, 147, 4, 0, 'He worked in cognizant good communication good confident but no  Kannada\n  language last take home is 22000 expected 23 to 24k u can finalize for vasu team ', 162, '0000-00-00 00:00:00', 1),
(24397, 27438, 163, 5, 0, 'Looking for non voice process only.', 162, '0000-00-00 00:00:00', 1),
(24398, 27437, 163, 5, 0, 'Lack of communication And is not consistent.', 162, '0000-00-00 00:00:00', 1),
(24399, 27423, 30, 7, 3, 'Selected for dm ashfaq team suggested ctc 25k max', 162, '0000-00-00 00:00:00', 1),
(24400, 27423, 60, 1, 0, NULL, 30, '2025-11-15 04:12:28', 1),
(24401, 27428, 59, 3, 0, 'Communication Good Have exp in sales based on the discussion with gaurav and the clarity given we have processed with the payout mentioned as sir mentioned 19 K net in the resume', 29, '2025-11-15 04:57:31', 1),
(24402, 27436, 60, 1, 0, NULL, 147, '2025-11-15 05:26:08', 1),
(24403, 27443, 74, 7, 0, 'she is ok with the profile completed b-lit 2022 passed...worked in foxxconn 3 yr and due to family issue releived and worked for 3 month in loan section trichy father facing 2nd attack in brain stroke she releived...from bhudular 8 30 by train daily station walkable both office and home...have laptop..highly exposive type...if in case father is cured she moved on to any place like hyderabad banglore she is ready...cross check in this part...expected 13k to 14k...immedaite joining', 154, '0000-00-00 00:00:00', 1),
(24404, 27443, 59, 3, 0, 'Communication Ok have exp in quality testing seems to be communicative over the call can give a try and check in training', 74, '2025-11-17 11:47:44', 1),
(24405, 27445, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24406, 27449, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24407, 27448, 57, 7, 0, 'candidate is ok, communication average, pls check sustainability and confirm the salary', 154, '0000-00-00 00:00:00', 1),
(24408, 27441, 139, 4, 0, 'Selected for Rm role\nhaving 2 yr exp in Creditcard sales in Bankbazar, wil try for RM role ', 154, '0000-00-00 00:00:00', 1),
(24409, 27441, 18, 7, 3, 'Shortlisted for Gnanshekar team. Can Join in another 10 Days. Can offer 3.5L CTC  as he is a decent resource', 139, '2025-11-17 05:08:00', 1),
(24410, 27441, 60, 1, 0, NULL, 18, '2025-11-17 05:34:18', 1),
(24411, 27388, 60, 1, 0, NULL, 18, '2025-11-17 06:16:49', 1),
(24412, 27454, 74, 5, 0, 'not suite', 154, '0000-00-00 00:00:00', 1),
(24413, 27453, 105, 7, 0, 'Candidate communication and performance is ok.but he is 5050 profile,will check with him in the training period ', 154, '0000-00-00 00:00:00', 1),
(24414, 27455, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24415, 27453, 59, 3, 0, 'Communication Ok fresher for our sales have appeared earlier for IT in sunday drive now open for sales need to check in training and confirm\n', 105, '2025-11-18 12:36:12', 1),
(24416, 27427, 60, 1, 0, NULL, 18, '2025-11-18 05:51:47', 1),
(24417, 26421, 163, 5, 0, 'Lack of communication ', 162, '0000-00-00 00:00:00', 1),
(24418, 27457, 163, 8, 0, 'Looking for non voice process only .', 162, '0000-00-00 00:00:00', 1),
(24419, 27456, 163, 8, 0, 'Looking for non voice process,', 162, '0000-00-00 00:00:00', 1),
(24420, 27461, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24421, 27459, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24422, 27462, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24423, 27448, 59, 3, 0, 'Communication ok open to learn insurance can give a try and check in training', 57, '2025-11-19 02:47:03', 1),
(24424, 27463, 147, 4, 0, 'He is good in sales good communication and confident  in all languages he expected salary 23000 can push', 162, '0000-00-00 00:00:00', 1),
(24425, 27463, 60, 1, 0, NULL, 147, '2025-11-19 06:58:50', 1),
(24426, 27468, 74, 5, 0, 'NOT SUITE', 154, '0000-00-00 00:00:00', 1),
(24427, 27464, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24428, 27469, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24429, 27470, 74, 7, 0, 'she is ok with the profile completed mba finance due to salary issue and no oportunity in thanjavur...choosing finance and telecalling....father container lorry driver salary 60k brother in singapore 60k salary...own house so job need bcoz of finace is low...but mother and own intreste to work for career....kindly cross check have no laptop ready to arrange salary expected 12 to 14k....5km travel for home..have bike and imeediate joining', 154, '0000-00-00 00:00:00', 1),
(24430, 27470, 59, 3, 0, 'Communication Good Completed MBA HR focusing much on that only  need to check in training and confirm', 74, '2025-11-21 11:29:39', 1),
(24431, 27472, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24432, 26365, 139, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24433, 27478, 29, 7, 2, 'nirmal, ref resume for increase in sal if completed the task', 154, '0000-00-00 00:00:00', 1),
(24434, 27488, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24435, 27489, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24436, 27482, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24437, 27477, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24438, 27491, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24439, 27493, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24440, 27487, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24441, 27492, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24442, 27496, 155, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24443, 27497, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24444, 27500, 155, 5, 0, 'have exp in comsumer durable loan sales for 6 months.  But will not sustain for our roles', 159, '0000-00-00 00:00:00', 1),
(24445, 27501, 155, 5, 0, 'no professional approach in the interview and communication slang not good', 159, '0000-00-00 00:00:00', 1),
(24446, 27505, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24447, 27506, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24448, 27475, 163, 5, 0, 'Lack of communication and seems to be inconsistent . Has arrears will switch after clearing .', 162, '0000-00-00 00:00:00', 1),
(24449, 27495, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24450, 27512, 74, 7, 0, 'he is ok with the profile, completed diploma mech in sastra and completed BE in anjalai ammal engg..2020....after digital marketing frelance with friends due to income issue..joined fire safety course and selected in delhi but parents not allowed and joined in auto cad free lancing and due to orders issue releived and joined in vizza for 10 months and releived due to family father health issue...and mother health issue.....brother in ashok leyland 25k earning...father farmer and real estate and not that much income...sister married another sister pg studies....have bike ..own house travel time 15mins...have laptop....DEC 1 JOINING...kindly check once sustainability', 154, '0000-00-00 00:00:00', 1),
(24451, 27513, 155, 5, 0, 'prefers non voice and not performed well in the interview', 154, '0000-00-00 00:00:00', 1),
(24452, 27512, 59, 3, 0, 'Communication Ok have 10 months exp in vizza chennai no valid documents given need to check in training', 74, '2025-11-28 12:18:47', 1),
(24453, 27478, 59, 3, 0, 'Communication Ok have exp in bank bazaar for 2yrs credit card can be trained in our roles need to check in training', 29, '2025-11-29 10:56:51', 1),
(24454, 27524, 30, 7, 3, 'Selected for rm suggested ctc 3.6lac max try to Convenience less than also within a week he will join ', 162, '0000-00-00 00:00:00', 1),
(24455, 27531, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24456, 27530, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24457, 27522, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24458, 27528, 30, 7, 0, 'Selected for Branch manager for DM channel already inhand salary 55k gross 60k cross check the documents and one more round will be conducted by kazeem by virtual today post that you can connect for the salary discussion', 162, '0000-00-00 00:00:00', 1),
(24459, 27529, 30, 7, 4, 'Selected for new branch manager team suggested ctc 22k for dm', 162, '0000-00-00 00:00:00', 1),
(24460, 27524, 60, 1, 0, NULL, 30, '2025-12-02 11:56:16', 1),
(24461, 27528, 60, 1, 0, NULL, 30, '2025-12-02 11:58:01', 1),
(24462, 27529, 60, 1, 0, NULL, 30, '2025-12-02 11:59:47', 1),
(24463, 27546, 74, 5, 0, 'Not fit', 154, '0000-00-00 00:00:00', 1),
(24464, 27545, 74, 5, 0, 'Not suite', 154, '0000-00-00 00:00:00', 1),
(24465, 27540, 30, 7, 3, 'Suggest ctc 2.7laca annum selected for dm ashfaq team', 162, '0000-00-00 00:00:00', 1),
(24466, 27541, 18, 7, 3, 'Shall Join in Couple of Days. Selected for Nisha team under my direct mapping. Can give 2.85L CTC ', 154, '0000-00-00 00:00:00', 1),
(24467, 27538, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24468, 27535, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24469, 27541, 60, 1, 0, NULL, 18, '2025-12-02 04:26:54', 1),
(24470, 27547, 164, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24471, 27555, 74, 7, 0, 'she is ok with the profile completed bCA fresher father farmer..21km from home...highly job need take active and have exposure... no laptop......join imeediately...expected 12 to 13k salary for anand team.', 154, '0000-00-00 00:00:00', 1),
(24472, 27554, 74, 7, 0, 'she is ok with the profile completed bcom in 24...and worked in real estate for 1 year mother health issue she releived from job in chennai...have elder sister 2 and elder brother 1 she is 4th one in family sister and brother already married...highly job need already earned 17k......and father farmer ready to join imeediately...travel time 45mins to ammapettai and another travel to home 5km..so little doubt regarding this travel...have no laptop..expected 15 to 16k....speaked over active but managable....cross check once', 154, '0000-00-00 00:00:00', 1),
(24473, 27560, 156, 7, 0, 'candidate ok, communication average kindly provide fresher salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(24474, 27559, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24475, 27551, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24476, 27556, 155, 5, 0, 'already have 2 month exp creditmantri for hindi voice process but not comfortable with hindi voice process so got relived but now he is the confused state to go with IT or sales so sustainability doubts', 159, '0000-00-00 00:00:00', 1),
(24477, 27557, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24478, 27563, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24479, 27562, 18, 7, 0, 'Selected for Abdul team. Immedeate joinder and please negotiate the salary. Fresher but need moulding', 154, '0000-00-00 00:00:00', 1),
(24480, 27566, 163, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(24481, 27560, 59, 3, 0, 'Communication Ok have exp in other domain fresher for telesales need to check in person and confirm', 156, '2025-12-03 03:21:00', 1),
(24482, 27555, 59, 3, 0, 'Communication Ok fresher for job can be trained in our roles and check open to learn let us check', 74, '2025-12-03 03:22:46', 1),
(24483, 27554, 59, 3, 0, 'Communication Ok have exp in calling different domain can give a try in our roles', 74, '2025-12-03 03:27:23', 1),
(24484, 27564, 89, 7, 0, 'Avarage skill but alredy telegram calling experience at health insurance. Will analysis 7 days training ', 159, '0000-00-00 00:00:00', 1),
(24485, 27536, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24486, 27550, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24487, 27564, 59, 3, 0, 'Communication Ok 6 months exp in sales calling but seems to be 5050 in sustainability need to check', 89, '2025-12-03 05:27:08', 1),
(24488, 27580, 74, 5, 0, 'Candidate not Fit for profile ', 154, '0000-00-00 00:00:00', 1),
(24489, 27583, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24490, 27584, 18, 7, 0, 'Candidate Feedback – Aravindan\nAravindan has been selected for the Gnanasekhar team. Though assessed as a BDM-level candidate, he will initially work as a Relationship Manager for 2–3 months to understand our processes and work culture. Based on performance, he will be promoted with applicable arrear salary as discussed at the time of joining.\nHe brings ~7 years of relevant experience in the domestic insurance industry and has been selected for a Relationship Manager role with a higher package. He owns a bike and is currently in need of financial stability.\nWith minor improvements in attitude and communication, he can be effectively fine-tuned into a strong managerial resource.', 154, '0000-00-00 00:00:00', 1),
(24491, 27581, 59, 3, 0, 'Communication Good Fresher for renewal  can be trained in our roles need to check in training', 154, '0000-00-00 00:00:00', 1),
(24492, 27575, 161, 5, 0, 'english communication is average and salary expectation seems to be high', 154, '0000-00-00 00:00:00', 1),
(24493, 27574, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24494, 27509, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24495, 27576, 161, 5, 0, 'Not even speaking lot of fear and planning for next level as professor', 154, '0000-00-00 00:00:00', 1),
(24496, 27540, 60, 1, 0, NULL, 30, '2025-12-04 06:42:20', 1),
(24497, 27595, 74, 7, 0, 'he is ok with the profile ...completed bCA in periyar institute...25 passed out fresher....and already worked in bakery cashier with 13k salary...father farmer...brother worked in chemical company pondicherry 15k salary....NCC higher rank holder in college..try to complete police exam also..disciplined canidate and intrested in job...20km travel to home have bike...speaked well....expected 13 to 14k take home...he is ok with that salary for my team..no laptop..immediate joining kindly check and confirm...kindly try to gave 13 500 as take home as possible.', 154, '0000-00-00 00:00:00', 1),
(24498, 27594, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24499, 27596, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24500, 27597, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24501, 27598, 29, 7, 3, 'Sivakumar Team RM', 159, '0000-00-00 00:00:00', 1),
(24502, 27595, 59, 3, 0, 'Communication Ok fresher for our roles need to train from scratch can give a trya', 74, '2025-12-05 04:13:20', 1),
(24503, 27558, 30, 7, 3, 'Selected for rm suggested ctc upto 4lac but his Expectation 5lac but 4lac its final he dont have any core related experience but he have knowledge ', 162, '0000-00-00 00:00:00', 1),
(24504, 27544, 30, 7, 3, 'suggested ctc 17k selected for ashfaq team', 162, '0000-00-00 00:00:00', 1),
(24505, 27603, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24506, 27558, 60, 1, 0, NULL, 30, '2025-12-06 11:03:33', 1),
(24507, 27544, 60, 1, 0, NULL, 30, '2025-12-06 11:04:13', 1),
(24508, 27600, 155, 5, 0, 'not comfortable with insurance sales and more interested towards his core only', 154, '0000-00-00 00:00:00', 1),
(24509, 27607, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24510, 27606, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24511, 27609, 109, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24512, 27598, 59, 3, 0, 'Communication Ok have exp in sales but different domain can give a try', 29, '2025-12-08 10:08:54', 1),
(24513, 27562, 60, 1, 0, NULL, 18, '2025-12-08 10:52:21', 1),
(24514, 27617, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24515, 27579, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24516, 27621, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24517, 27543, 147, 5, 0, 'rejected', 162, '0000-00-00 00:00:00', 1),
(24518, 27625, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24519, 27624, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24520, 27622, 18, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24521, 27543, 147, 5, 0, 'rejected', 147, '2025-12-08 06:45:05', 1),
(24522, 27639, 74, 7, 0, 'she is ok with the profile completed bsc in periyar institue....3 months work in real estate job in trichy travel issue releived....1 km travel only home....highly exposive and very talk active...father medical rep...30k earnings....in rental house sister studing degree.....passionate in advocate so she is speaked very aggressive ....kindly cross check adaptability....expected 15k...immediate joining', 159, '0000-00-00 00:00:00', 1),
(24523, 27634, 30, 7, 4, 'Selected for priya team suggested ctc 21k immediate joining', 162, '0000-00-00 00:00:00', 1),
(24524, 27634, 60, 1, 0, NULL, 30, '2025-12-09 12:31:42', 1),
(24525, 27635, 30, 7, 3, 'selected for priya team suggested ctc 21 to 22k immediate joining', 162, '0000-00-00 00:00:00', 1),
(24526, 27636, 30, 7, 3, 'selected for priya team suggested ctc 22 to 23k thursday joining', 162, '0000-00-00 00:00:00', 1),
(24527, 27641, 163, 5, 0, 'Lack of communication , ', 162, '0000-00-00 00:00:00', 1),
(24528, 27636, 60, 1, 0, NULL, 30, '2025-12-09 01:18:40', 1),
(24529, 27629, 59, 5, 0, 'Processed for GI profile based on Motor Exp in vizza he is a complete backend support no telecall exp rejected by Gokul', 159, '0000-00-00 00:00:00', 1),
(24530, 27635, 60, 1, 0, NULL, 30, '2025-12-09 01:20:22', 1),
(24531, 27632, 161, 3, 0, 'communication good', 159, '0000-00-00 00:00:00', 1),
(24532, 27633, 59, 5, 0, 'Not much aggressive to the profile need to learn a lot not much suits for our role', 159, '0000-00-00 00:00:00', 1),
(24533, 27637, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24534, 27631, 152, 4, 0, 'Selected ', 159, '0000-00-00 00:00:00', 1),
(24535, 27631, 18, 7, 3, 'Selected for Abdul team. Expected 30% hike from current CTC but can offer upto 3.5L Can join by next week. Do not have laptop', 152, '2025-12-09 02:57:28', 1),
(24536, 27630, 161, 5, 0, 'relieved the previous company because felt the retention process as tough. so not suitable for our profile', 159, '0000-00-00 00:00:00', 1),
(24537, 27639, 59, 3, 0, 'communication ok fresher need to check in training', 74, '2025-12-09 05:15:52', 1),
(24538, 27645, 156, 7, 0, 'candidate is ok, communication average. kindly provide the fresher salary and confirm the joining date.', 159, '0000-00-00 00:00:00', 1),
(24539, 27644, 164, 7, 0, 'cANDIDATE OK COMMUNICATION GOOD CONFIRM THE SALARY xxamp JOINING DATE ', 159, '0000-00-00 00:00:00', 1),
(24540, 27649, 59, 3, 0, 'Communication Good for renewal have exp but not the same open to learn married need to check her sustainability 2yrs NDA', 154, '0000-00-00 00:00:00', 1),
(24541, 27654, 152, 7, 0, 'Selected for my team, salary discussion to be made', 159, '0000-00-00 00:00:00', 1),
(24542, 27646, 105, 7, 0, 'CANDIDATE COMMUNICATION AND PERFORMANCE IS OK.BUT 5050 PROFILE WILL CHECK WITH HER IN THE TRAINING PERIOD. SLIGHTLY SUSTAINABLE IS DOUBT.', 159, '0000-00-00 00:00:00', 1),
(24543, 27650, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24544, 27642, 59, 2, 0, 'Accounts profile have basic exp but not much strong to it let us hold and see later', 159, '0000-00-00 00:00:00', 1),
(24545, 27655, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24546, 27656, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24547, 27657, 155, 5, 0, 'have telecalling customer support exp, will not handle our sales target pressure, sustainability doubts', 159, '0000-00-00 00:00:00', 1),
(24548, 27658, 155, 5, 0, 'more intereted towards non voice only and sustainability also doubts', 159, '0000-00-00 00:00:00', 1),
(24549, 27626, 30, 7, 3, 'Selected for dm  vasu team  suggested ctc 21k', 162, '0000-00-00 00:00:00', 1),
(24550, 27647, 161, 3, 0, 'Good communication', 159, '0000-00-00 00:00:00', 1),
(24551, 27645, 59, 3, 0, 'Communication Ok 5050 need to check in training have 6 months exp in other domain let us try', 156, '2025-12-11 10:44:39', 1),
(24552, 27662, 155, 2, 0, 'candidate communication is good and more interested towards HR roles and activities, will hold this profile and check', 159, '0000-00-00 00:00:00', 1),
(24553, 27661, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24554, 27665, 74, 7, 0, 'she is ok with the profile completed bcom in 2014 and married 2013 boy kid in 2014 and after 2017 husband passed because of accident and another baby in 2017...and 3 years unemployed and due to family issue joined in vinothagan hospital near our office 2 years cashier and 3 year health insurance customer handling backend process and claim service over all 5 years experience....and getting 20k with PF and take home 17k around.....due to claim issue daily she releived so have exposure and talk active and know process....travel time halfhour...vyshali busmate and referance...immediate joining...have no laptop ready to arrange...age 30 but being young only....so we try...but the only issue planned to work 1 and half years....family expected to second marriage with cousine ..he worked in chennai groww...so kindly cross check in this part we already dicsussed with kasim sir toooo......salary 16 to 17k she expected...kindly cross check', 154, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(24555, 27652, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24556, 27664, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24557, 27631, 60, 1, 0, NULL, 18, '2025-12-11 12:19:48', 1),
(24558, 27666, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24559, 27669, 152, 7, 0, 'Selected for my team, salary can discussed by hr team\n', 159, '0000-00-00 00:00:00', 1),
(24560, 27677, 161, 5, 0, 'Communication is average only and not suitable for sales', 159, '0000-00-00 00:00:00', 1),
(24561, 27665, 59, 3, 0, 'Communication Ok have exp in insurance coordinator profile in hospital open for telecalling may get married in 2026 2nd marriage due to death of her husband need to check in training', 74, '2025-12-11 04:31:21', 1),
(24562, 27676, 161, 5, 0, 'previous experience in data entry only and seems to be reserved and not open up to the level we expected', 159, '0000-00-00 00:00:00', 1),
(24563, 27675, 161, 5, 0, 'Already worked in vizza and relieved due to pressure only so this profile wont be suitable', 159, '0000-00-00 00:00:00', 1),
(24564, 27663, 59, 2, 0, 'Account profile not much strong but let hold and look into it later', 159, '0000-00-00 00:00:00', 1),
(24565, 27667, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24566, 27668, 161, 5, 0, 'Interviewed by nisha', 159, '0000-00-00 00:00:00', 1),
(24567, 27678, 105, 5, 0, 'CANDIDATE COMMUNICATION AND PERFORMANCE IS NOT GOOD.ALSO SUSTAINABLE IS DOUBT', 154, '0000-00-00 00:00:00', 1),
(24568, 27646, 59, 3, 0, 'Communication Average family need is there training exp as part time need to check in training and confirm 5050', 105, '2025-12-11 05:23:10', 1),
(24569, 27626, 60, 1, 0, NULL, 30, '2025-12-11 06:59:18', 1),
(24570, 27686, 155, 5, 0, 'need to open up a lot...  she is so reserved amd her idea is to go for HR side since there is no oppurtunity in HR side looking for telecalling... ', 154, '0000-00-00 00:00:00', 1),
(24571, 27669, 59, 3, 0, 'Communication Ok have exp in HDB financial family need is there he is open fr telesales need to check in training', 152, '2025-12-12 02:39:10', 1),
(24572, 27654, 59, 1, 0, NULL, 152, '2025-12-12 02:39:53', 1),
(24573, 27644, 59, 3, 0, 'Communication ok fresher for our roles have exp for 6 months in other domain 5050 check in training', 164, '2025-12-12 03:07:28', 1),
(24574, 27693, 164, 7, 0, 'cANDIDATE OK COMMUNICATION IS GOOD CONFIRM THE SALARY xxamp JOINING DATE', 104, '0000-00-00 00:00:00', 1),
(24575, 27693, 59, 3, 0, 'Communication Ok have exp but not a relevant one need to check in training ', 164, '2025-12-12 03:22:59', 1),
(24576, 27674, 59, 5, 0, 'Open for non voice networking based job roles not suitable', 104, '0000-00-00 00:00:00', 1),
(24577, 27690, 105, 7, 0, 'Candidate communication and performance is ok. Will check with him in the training period. ', 104, '0000-00-00 00:00:00', 1),
(24578, 27691, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24579, 27682, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24580, 27688, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24581, 27690, 59, 3, 0, 'Communication Ok fresher for our roles need to check in training and  confirm ', 105, '2025-12-13 03:17:05', 1),
(24582, 27692, 89, 7, 0, 'Fresher, good knowledge.. will analysis 7 days training days', 104, '0000-00-00 00:00:00', 1),
(24583, 27689, 161, 5, 0, 'not okay with targets ,distance and communication  is average only', 104, '0000-00-00 00:00:00', 1),
(24584, 27716, 59, 3, 0, 'Hired for team lead sort of profile renewal/GI profile can go max upto 23 also given joining on  19 Dec but delayed from candidate end', 104, '0000-00-00 00:00:00', 1),
(24585, 27695, 161, 5, 0, 'Multiple job switches and having ENT issues so wont be suitable for tellecalling', 104, '0000-00-00 00:00:00', 1),
(24586, 27698, 139, 5, 0, 'Not fit for rm role', 104, '0000-00-00 00:00:00', 1),
(24587, 27709, 59, 2, 0, '2nd round interviewed by Manikumar and rejected not strong with the basics', 104, '0000-00-00 00:00:00', 1),
(24588, 27711, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24589, 27715, 164, 7, 0, 'CANDIDATE OK.COMMUNICATION IS GOOD. KINDLY CONFIRM THE SALARY xxamp DATE OF JOINING', 104, '0000-00-00 00:00:00', 1),
(24590, 27584, 60, 1, 0, NULL, 18, '2025-12-13 05:42:36', 1),
(24591, 27715, 59, 3, 0, 'Communication ok fresher just 15 days exp can be trained need to check in training', 164, '2025-12-13 06:25:08', 1),
(24592, 27692, 59, 3, 0, 'Communication Ok fresher open to learn need to train from sctrach will check in training', 89, '2025-12-15 02:29:45', 1),
(24593, 27723, 161, 5, 0, 'Voice is very low and sustainability doubts', 159, '0000-00-00 00:00:00', 1),
(24594, 27726, 161, 5, 0, 'Not suitbale', 159, '0000-00-00 00:00:00', 1),
(24595, 27683, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24596, 27727, 59, 5, 0, 'Not suitable poor quality profile', 159, '0000-00-00 00:00:00', 1),
(24597, 27729, 139, 7, 0, 'Selected for RM role\nfresher having 6 month exp in Insurance sales\nbut consider as fresher will try', 159, '0000-00-00 00:00:00', 1),
(24598, 27732, 59, 2, 0, 'Can be considered for Renewal/MF intern based employment initial 3 months with stipend upto 7K then employment', 159, '0000-00-00 00:00:00', 1),
(24599, 27724, 59, 5, 0, 'Not much confident on the job telesales have exp in accountant but not strong with that too', 159, '0000-00-00 00:00:00', 1),
(24600, 27738, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24601, 27721, 164, 7, 0, 'cANDIDATE OK.COMMUNICATION IS GOOD,KINDLY CONFIRM SALARY xxamp JOINING DATE', 159, '0000-00-00 00:00:00', 1),
(24602, 27735, 11, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24603, 27737, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24604, 27719, 139, 5, 0, 'Not fit for rm role', 159, '0000-00-00 00:00:00', 1),
(24605, 27743, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24606, 27731, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24607, 27747, 161, 5, 0, 'Too long and different domain experience', 154, '0000-00-00 00:00:00', 1),
(24608, 27680, 147, 7, 0, 'she is good in Commutation having 2 years Experience in lic has a tele caller knowing 4 languages salary 20 to 21 k expected     ', 162, '0000-00-00 00:00:00', 1),
(24609, 27739, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24610, 27754, 59, 5, 0, 'very low basics not suitable for our any roles', 159, '0000-00-00 00:00:00', 1),
(24611, 27741, 59, 5, 0, 'Looking for Core IT profile only', 159, '0000-00-00 00:00:00', 1),
(24612, 27758, 59, 5, 0, 'Not suitable for our roles will not sustain', 159, '0000-00-00 00:00:00', 1),
(24613, 27755, 152, 8, 0, 'Did not attended next round\n', 159, '0000-00-00 00:00:00', 1),
(24614, 27756, 152, 4, 0, 'Selected for next round, good communication, sales skill and need for work\n', 159, '0000-00-00 00:00:00', 1),
(24615, 27764, 59, 5, 0, 'Not suitable for our roleshave exp in non voice andmuch preferred for the same\n', 159, '0000-00-00 00:00:00', 1),
(24616, 27680, 60, 1, 0, NULL, 147, '2025-12-17 07:18:15', 1),
(24617, 27774, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24618, 27750, 139, 4, 0, 'Selected for Next Round\nhaving good communication skills, will try for rm role ', 159, '0000-00-00 00:00:00', 1),
(24619, 27744, 57, 7, 0, 'Candidate is ok, communication Good, pls confirm the joining date, provide freshers salary,', 159, '0000-00-00 00:00:00', 1),
(24620, 27771, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24621, 27744, 59, 3, 0, 'Communication ok fresher for sales profile can be trained in our roles need to check in training', 57, '2025-12-18 04:55:04', 1),
(24622, 27750, 18, 1, 0, NULL, 139, '2025-12-18 04:55:42', 1),
(24623, 27729, 60, 1, 0, NULL, 139, '2025-12-18 07:06:07', 1),
(24624, 27766, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24625, 27618, 59, 5, 0, 'Not suitable for our telesales profile', 154, '0000-00-00 00:00:00', 1),
(24626, 27803, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24627, 27779, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24628, 27786, 59, 5, 0, 'not open up fresher much focus on accounts but not m,uch strong with that too', 159, '0000-00-00 00:00:00', 1),
(24629, 27767, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24630, 27785, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(24631, 27784, 59, 5, 0, 'Not much aggresive final year graduate need to open up a lot not suits for our roles', 159, '0000-00-00 00:00:00', 1),
(24632, 27805, 155, 5, 0, 'candidate performance in the interview was not good, looking for non voice only', 159, '0000-00-00 00:00:00', 1),
(24633, 27806, 139, 5, 0, 'Not fit for Our RM role \nexp  package also very high ', 154, '0000-00-00 00:00:00', 1),
(24634, 27782, 59, 5, 0, 'Mentioned exp in resume but no basic clarity in her previous exp too long distance will not sustain and not suitable for our roles', 159, '0000-00-00 00:00:00', 1),
(24635, 27808, 137, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24636, 27725, 147, 7, 0, 'He is Fresher having good skills and aggressive we can Mold Him...', 162, '0000-00-00 00:00:00', 1),
(24637, 27817, 57, 5, 0, 'candiate is not ok, but 50/50 Profile\nSustainability issues, ', 154, '0000-00-00 00:00:00', 1),
(24638, 27818, 57, 5, 0, 'candidate is not ok, sounds not good, sustainability issues', 154, '0000-00-00 00:00:00', 1),
(24639, 27811, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24640, 27813, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24641, 27812, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24642, 27721, 59, 3, 0, 'Communication Average 5050 Family need is high required can give a try in training and confirm', 164, '2025-12-20 06:49:25', 1),
(24643, 27819, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24644, 27833, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24645, 27834, 57, 7, 0, 'Candidate is ok , overall 2 years experience, sounds good, but salary expectation very hight, negotiate the salary and confirm the joining date', 159, '0000-00-00 00:00:00', 1),
(24646, 27828, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24647, 27830, 139, 5, 0, 'Not fit for RM', 154, '0000-00-00 00:00:00', 1),
(24648, 27822, 154, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24649, 27839, 164, 7, 0, 'CANDIDATE OK.COMMUNICATION IS GOOD.kINDLY CONFIRM THE JOINING DATE xxamp SALARY', 159, '0000-00-00 00:00:00', 1),
(24650, 27839, 59, 3, 0, 'Communication Ok have exp can be trained in our roles need to check in training', 164, '2025-12-22 06:55:42', 1),
(24651, 27824, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24652, 27825, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24653, 27848, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24654, 27834, 59, 3, 0, 'Communication Good have exp in calling but not a relevant one  sound confident can check ', 57, '2025-12-23 12:24:54', 1),
(24655, 27838, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24656, 27847, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24657, 27725, 60, 1, 0, NULL, 147, '2025-12-23 01:03:56', 1),
(24658, 27854, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24659, 21729, 57, 7, 0, 'Candidate is ok ,communication good, confirm the salary and joining date', 159, '0000-00-00 00:00:00', 1),
(24660, 27841, 57, 5, 0, 'candidate is ok, communication average only, product knowledge not good, salary expectation high, reject the profile', 159, '0000-00-00 00:00:00', 1),
(24661, 27851, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24662, 27850, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24663, 27849, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24664, 27827, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24665, 27856, 57, 7, 0, 'Candidate is ok , communication average, sounds good, pls confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(24666, 21729, 59, 3, 0, 'Communication Good Have exp in sales calling worked in Indian Bank through techmahindra open to travel from Ambattur earlier worked in early morning shift traveled from ambattur @03.00 a.M', 57, '2025-12-23 05:24:52', 1),
(24667, 27856, 59, 3, 0, 'Communication Ok fresher for insurance sales sounds ok for our roles talkative need to check in person and see', 57, '2025-12-23 05:26:15', 1),
(24668, 27859, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24669, 27862, 57, 5, 0, 'Candidate is not ok, sustainability issues, sounds not Good', 154, '0000-00-00 00:00:00', 1),
(24670, 27857, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24671, 27865, 18, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24672, 27866, 109, 5, 0, 'He had experience with customer service related sales like holidays travels only onbound calls interested people will  call they will confirm the travels booking. so not suitable for our sales, also salary package high expecataion not suitable for that much.', 154, '0000-00-00 00:00:00', 1),
(24673, 27878, 109, 5, 0, 'communication is good. Currently pursuing CMA intermediate 2 attempt and if we ask any basic things any idea about our company accounts she said no idea simply.  if anything i asked she said no. also she got engaged can work only 1 year no practical experience in accounts. not suitable for our team', 154, '0000-00-00 00:00:00', 1),
(24674, 27874, 109, 5, 0, 'Communication not good, he just sitting simly and  asked for demo sales nothing he speaks he just sitting simply with closed mouth. not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(24675, 27879, 109, 5, 0, 'Communication is okay, but she is getting very nervous. but she had some basic knowledge about accounts theoretically.  Even voice is too low', 159, '0000-00-00 00:00:00', 1),
(24676, 27872, 109, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24677, 27885, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24678, 27888, 147, 7, 0, 'she is fresher good in communication salary expected 18 to 20k ', 162, '0000-00-00 00:00:00', 1),
(24679, 27898, 147, 7, 0, 'good communication and Confidence Level.. having Experience in Convincing the client in Previous job need to have salary discussion ', 162, '0000-00-00 00:00:00', 1),
(24680, 27913, 59, 3, 0, 'As discussed proceeding for the joining process', 104, '0000-00-00 00:00:00', 1),
(24681, 27888, 59, 3, 0, 'Communication Ok fresher seems not much aggressive with the call need to check in training and see', 147, '2025-12-29 12:32:48', 1),
(24682, 27898, 59, 1, 0, NULL, 147, '2025-12-29 12:39:04', 1),
(24683, 27910, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24684, 27909, 89, 7, 0, 'Good skill. Consider fresher. Will analysis 7 days training ', 159, '0000-00-00 00:00:00', 1),
(24685, 27911, 29, 7, 3, 'Karthika team', 159, '0000-00-00 00:00:00', 1),
(24686, 27889, 30, 7, 3, 'Selected for vasu team suggested ctc 23k', 162, '0000-00-00 00:00:00', 1),
(24687, 27909, 59, 3, 0, 'Communication Ok fresher for telecalling 3 monhts exp in another profile career gap due to family sister marriage need to check in training and see', 89, '2025-12-29 02:46:56', 1),
(24688, 27906, 57, 7, 0, 'Candidate is ok , communication Good, Pls confirm the salary and joining date', 159, '0000-00-00 00:00:00', 1),
(24689, 27891, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24690, 27889, 60, 1, 0, NULL, 30, '2025-12-29 04:43:03', 1),
(24691, 27906, 59, 3, 0, 'Communication Ok Fresher for our insurance Sales need to check in training and confirm', 57, '2025-12-30 11:01:44', 1),
(24692, 27928, 167, 7, 0, 'Good Communication and 2 years experience in LIC, good knowledge in sales', 162, '0000-00-00 00:00:00', 1),
(24693, 27921, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24694, 27918, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24695, 27927, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24696, 27186, 105, 5, 0, 'Expected Higher Pacakge', 105, '2025-12-30 03:00:43', 1),
(24697, 27928, 60, 1, 0, NULL, 167, '2025-12-31 09:47:44', 1),
(24698, 27932, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24699, 27945, 168, 7, 4, 'Shortlisted and available for immediate joining', 154, '0000-00-00 00:00:00', 1),
(24700, 27945, 59, 3, 0, 'Communication Ok have exp in other domain process need to check in training and confirm', 168, '2026-01-02 10:07:47', 1),
(24701, 27911, 59, 3, 0, 'Communication Good have exp in sales calling fresher for insurance domain need to check in training and see', 29, '2026-01-02 11:02:05', 1),
(24702, 27931, 155, 5, 0, 'candidate is 5050 and voice is too low, and have idea of going to higher studies for MSC and PHD', 154, '0000-00-00 00:00:00', 1),
(24703, 27947, 155, 5, 0, 'no sustainability in previous work exp, telling stories for getting relieved', 154, '0000-00-00 00:00:00', 1),
(24704, 27937, 164, 5, 0, 'Candidate was rejected ', 154, '0000-00-00 00:00:00', 1),
(24705, 27943, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24706, 27942, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24707, 27893, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24708, 27959, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24709, 27956, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24710, 27978, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24711, 27958, 164, 7, 0, 'CANDIDATE IS OK.COMMUNICATION IS GOOD.KINDLY CONFIRM THE SALARY xxamp JOINING DATE ', 159, '0000-00-00 00:00:00', 1),
(24712, 27958, 59, 3, 0, 'Communication good have exp in imarque for BL/PL sales fresher for insurance can give a try in our roles need to check in training', 164, '2026-01-03 01:32:59', 1),
(24713, 27944, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24714, 27941, 30, 7, 3, 'selected for rm his expectation 30k same salary from current company but try to pitch 27 k arun', 162, '0000-00-00 00:00:00', 1),
(24715, 27964, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24716, 27973, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24717, 27979, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24718, 27970, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24719, 27972, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24720, 27997, 168, 7, 0, 'Have a work experience with sales knowledge suitable for the team.', 154, '0000-00-00 00:00:00', 1),
(24721, 27990, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24722, 27988, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24723, 27985, 164, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24724, 27997, 59, 3, 0, 'Communication Ok fresher for our insurance roles but previously worked in other domain can give a try and check in training', 168, '2026-01-05 04:43:41', 1),
(24725, 27993, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24726, 28001, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24727, 28007, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24728, 28002, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24729, 28012, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24730, 27998, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24731, 28011, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24732, 28016, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24733, 28013, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24734, 28006, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24735, 28019, 161, 5, 0, 'Communication is too low voice and she is too much depression and not stable wont fit here', 154, '0000-00-00 00:00:00', 1),
(24736, 28014, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24737, 27963, 149, 7, 0, 'CANDIDATE WAS OK WITH COMMUNICATION AND QUITE CONFIDENT ALSO INTERESTED AND TOLD THAT SHE  WILL JOIN BY THURSDAY  AND LOC ENNORE SO HAVE A LITTLE DOUBT ABOUT IT ALSO', 154, '0000-00-00 00:00:00', 1),
(24738, 27994, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24739, 28024, 164, 5, 0, 'REJECT', 154, '0000-00-00 00:00:00', 1),
(24740, 27929, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24741, 27999, 59, 5, 0, 'Not much strong with the basics in the accounts 2nd round reject by Manikumar and team\n', 154, '0000-00-00 00:00:00', 1),
(24742, 28017, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24743, 27989, 161, 5, 0, 'Dont know tamil even', 154, '0000-00-00 00:00:00', 1),
(24744, 27963, 60, 1, 0, NULL, 149, '2026-01-06 05:25:28', 1),
(24745, 27936, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24746, 28021, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24747, 28030, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24748, 27986, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24749, 28035, 29, 7, 3, 'porrselvan team', 159, '0000-00-00 00:00:00', 1),
(24750, 28033, 59, 3, 0, 'Communication Ok have 10 months exp in accounts career gap due to liver Transplant intern with employment stipend 10K for a month if he need to improve will have an additional 1 more month of intern if not he will be into employment', 154, '0000-00-00 00:00:00', 1),
(24751, 28029, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24752, 27941, 60, 1, 0, NULL, 30, '2026-01-07 05:14:43', 1),
(24753, 27896, 149, 7, 0, 'GOOD WITH COMMUNICATION AND HAVE CONFIDENCE IN NEED OF JOB REQUIREMENT AND OK FOR IMMEDIATE JOINING', 159, '0000-00-00 00:00:00', 1),
(24754, 28043, 109, 2, 0, 'SHe is working as a HR Intern', 154, '0000-00-00 00:00:00', 1),
(24755, 28020, 164, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24756, 28039, 57, 7, 0, 'Candidate is ok , communication good, exp already, conform the joining xxamp salary', 159, '0000-00-00 00:00:00', 1),
(24757, 28048, 161, 2, 0, 'need to discuss with family', 159, '0000-00-00 00:00:00', 1),
(24758, 28036, 161, 5, 0, 'Not to aggressive Customer support exp and not suitable for sales', 159, '0000-00-00 00:00:00', 1),
(24759, 28040, 155, 5, 0, 'candidate is very reserved.. need to open up more so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(24760, 28046, 155, 5, 0, 'candidate is purely into operations side in matrimony, and she is not much aggressive and active so will not fit for sales and working with targets\n', 154, '0000-00-00 00:00:00', 1),
(24761, 28042, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24762, 28045, 155, 5, 0, 'complete IT profile, and he did not perform well in the interview also', 154, '0000-00-00 00:00:00', 1),
(24763, 28050, 155, 5, 0, 'candidate mainly looking for non voice so will not sustain in sales', 154, '0000-00-00 00:00:00', 1),
(24764, 28051, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24765, 27995, 109, 5, 0, 'she doesnxquott have any relevent experience but expecting high salary. also asked for demo sales  she is not getting what i aksed also she was thinking about the sales \n', 154, '0000-00-00 00:00:00', 1),
(24766, 28053, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24767, 28041, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24768, 28052, 109, 5, 0, 'I asked to sale for a demo he simply sitting no even try to sales any product', 154, '0000-00-00 00:00:00', 1),
(24769, 28054, 30, 7, 4, 'selected for priya team experience candidate suggested ctc 20k', 162, '0000-00-00 00:00:00', 1),
(24770, 28055, 30, 7, 4, 'selected for priya team fresher suggested ctc 17 to 18k', 162, '0000-00-00 00:00:00', 1),
(24771, 28054, 60, 1, 0, NULL, 30, '2026-01-09 09:47:42', 1),
(24772, 28055, 60, 1, 0, NULL, 30, '2026-01-09 09:48:44', 1),
(24773, 28060, 161, 5, 0, 'Felt as pressure in previous company within 4 months', 159, '0000-00-00 00:00:00', 1),
(24774, 28061, 161, 5, 0, 'Looking for job change within 4 months for no reason sustainability issue', 159, '0000-00-00 00:00:00', 1),
(24775, 28071, 30, 7, 4, 'Suggested th 23k but try 22k th salary for priya team immediate joining', 162, '0000-00-00 00:00:00', 1),
(24776, 28039, 59, 1, 0, NULL, 57, '2026-01-09 11:27:15', 1),
(24777, 28076, 155, 5, 0, 'already have exp for 5 months in sriram for 5 months due to continous field sales he got relieved, and having more gaps between and after work and have done python course  also having idea for going to IT also so sustainability doubts xxamp communication slang also not that good', 154, '0000-00-00 00:00:00', 1),
(24778, 28070, 109, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24779, 28005, 30, 7, 3, 'Selected for rm wednesday joining ctc 23k suggested', 60, '0000-00-00 00:00:00', 1),
(24780, 28071, 60, 1, 0, NULL, 30, '2026-01-10 10:13:07', 1),
(24781, 28005, 60, 1, 0, NULL, 30, '2026-01-10 10:14:50', 1),
(24782, 28066, 139, 5, 0, 'Not fit for RM role', 154, '0000-00-00 00:00:00', 1),
(24783, 28079, 164, 7, 0, 'CANDIDATE IS OK.COMMUNICATION IS GOOD.cONFIRM THE SALARY xxamp JOINING dATE', 154, '0000-00-00 00:00:00', 1),
(24784, 27896, 60, 1, 0, NULL, 149, '2026-01-10 11:39:24', 1),
(24785, 28072, 156, 7, 0, 'candidate is ok, communication good. provide the fresher salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(24786, 28081, 105, 5, 0, 'candidate communication and performance is little ok.but she is expecting customer support.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24787, 28068, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24788, 28083, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24789, 28078, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24790, 28077, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24791, 28065, 161, 5, 0, 'No sustainability and health issues and Lots of gap between each switches wont suitable for this profile', 154, '0000-00-00 00:00:00', 1),
(24792, 28079, 59, 1, 0, NULL, 164, '2026-01-10 06:10:01', 1),
(24793, 28035, 59, 3, 0, 'Communication Ok have exp in telecalling and exp as TL profile fresher for our insurance sales complete exp in Home loan Home first company need to check in training ', 29, '2026-01-12 09:50:58', 1),
(24794, 28072, 59, 1, 0, NULL, 156, '2026-01-12 11:50:46', 1),
(24795, 27933, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24796, 28058, 161, 5, 0, 'Relieved due to pressure and worked for 6 months only ', 154, '0000-00-00 00:00:00', 1),
(24797, 28064, 161, 5, 0, 'Experience in Customer support only and relieved  due to time constraints and target only worked in sales profile for 2 months ', 154, '0000-00-00 00:00:00', 1),
(24798, 28091, 161, 5, 0, 'Not fit for our role', 154, '0000-00-00 00:00:00', 1),
(24799, 28086, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24800, 28092, 161, 5, 0, 'Complete exp in non voice and looking for same too not suitable', 154, '0000-00-00 00:00:00', 1),
(24801, 28106, 164, 7, 0, 'CANDIDATE IS OK.COMMUNICATION IS GOOD. CONFIRM THE SALARY xxamp JOINING DATE.', 154, '0000-00-00 00:00:00', 1),
(24802, 28109, 152, 5, 0, 'Shall try again after  a month or 2 \n', 154, '0000-00-00 00:00:00', 1),
(24803, 28106, 59, 1, 0, NULL, 164, '2026-01-13 12:45:38', 1),
(24804, 28084, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24805, 28110, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24806, 28101, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24807, 28112, 57, 7, 0, 'Candidate is ok communication good \n', 154, '0000-00-00 00:00:00', 1),
(24808, 28098, 18, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24809, 28116, 155, 2, 0, 'candidate is  ok, communication is 50-50, but mainly focusing on banking exams, family need is also there so will hold the profile and try', 154, '0000-00-00 00:00:00', 1),
(24810, 28117, 155, 5, 0, 'candidate is mostly looking for admin, operations side, he is itself more confused about what domain to choose, more career gaps and not much interested in sales also so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(24811, 28085, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24812, 28107, 155, 5, 0, 'his communication and slang is not good', 154, '0000-00-00 00:00:00', 1),
(24813, 28105, 155, 5, 0, 'he is not at all serious about his career, more gaps in between the education simply telling reasons for the gaps. will not suit for our roles', 154, '0000-00-00 00:00:00', 1),
(24814, 28118, 155, 5, 0, 'he is mostly looking for backoffice roles as he is having some health issues', 154, '0000-00-00 00:00:00', 1),
(24815, 28108, 139, 7, 0, 'Offer 2.8 Laks CTC\nImmediate Joiner on Friday \nSrirram sir also completed 2nd round interview ', 154, '0000-00-00 00:00:00', 1),
(24816, 28108, 60, 1, 0, NULL, 139, '2026-01-14 02:28:46', 1),
(24817, 28120, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24818, 28121, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24819, 28123, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24820, 28126, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24821, 28127, 168, 7, 0, 'he is ok with the profile completed MBA - 1 year in indian oil field supervisor - 1 year in finance loan process due to management issue he is reelieved - father auto driver native thiruvarur rental house sister bsc and brother bba- candidate good only but the only issue travel 3hr...up and down..expected 15 above have laptop immediate joining kindly check and confirm', 154, '0000-00-00 00:00:00', 1),
(24822, 28137, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24823, 28127, 59, 3, 0, 'Communication Ok have exp in collection and indian oil field fresher for insurance sales but can be trained need to travel a certain distance let us check \n', 168, '2026-01-19 11:30:12', 1),
(24824, 28136, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24825, 28132, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24826, 28130, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24827, 28140, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24828, 28134, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24829, 28143, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24830, 28142, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24831, 28133, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24832, 28153, 18, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24833, 28145, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24834, 28155, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24835, 28147, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24836, 28148, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24837, 28097, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24838, 28099, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24839, 28150, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24840, 28154, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24841, 28157, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24842, 28159, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24843, 28160, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24844, 28162, 152, 4, 0, 'Selected for next round 50-50', 154, '0000-00-00 00:00:00', 1),
(24845, 28112, 59, 3, 0, 'Communication Ok have exp but sustainability doubts a lot 2nd cahnce in cafs this time let us check in training and confirm', 57, '2026-01-21 09:52:35', 1),
(24846, 28164, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24847, 28165, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24848, 27578, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24849, 28158, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24850, 28175, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24851, 28177, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24852, 28166, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24853, 28167, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24854, 28185, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24855, 28162, 18, 7, 0, 'Shortlisted for Abdul Team. Immed Joiner. Shall join this week. Dont have laptop with old health sales experience', 152, '2026-01-22 11:58:29', 1),
(24856, 27756, 18, 5, 0, 'Not fit for Sales', 152, '2026-01-22 11:59:04', 1),
(24857, 28183, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24858, 28168, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24859, 28181, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24860, 28190, 137, 7, 0, 'candidate communication skill ad speaking skill all ok , very poor family backround , very work need person , so try for 7 days training period , exp salary is 17 to 18 k ', 154, '0000-00-00 00:00:00', 1),
(24861, 28184, 57, 7, 0, 'Candidate is ok, communication Good, Confirm the joining date xxamp Salary, (Kazeem)', 154, '0000-00-00 00:00:00', 1),
(24862, 28190, 59, 1, 0, NULL, 137, '2026-01-22 01:34:14', 1),
(24863, 28189, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24864, 28184, 59, 3, 0, 'Communicaiton Ok have exp but no a relevant one final round interview by Kazeem sir need to check in training', 57, '2026-01-22 02:41:47', 1),
(24865, 28206, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24866, 28207, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24867, 28205, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24868, 28208, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24869, 28200, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24870, 28180, 149, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24871, 28209, 167, 7, 0, 'Good Communication with sales Skills and salary expectation 20k', 162, '0000-00-00 00:00:00', 1),
(24872, 28209, 60, 1, 0, NULL, 167, '2026-01-23 04:59:29', 1),
(24873, 28201, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24874, 28215, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24875, 27232, 59, 3, 0, 'Communication Ok have exp in renewal process need to check in training and confirm', 60, '0000-00-00 00:00:00', 1),
(24876, 28245, 30, 7, 0, 'good communication , suggested ctc 22k for priya team ', 162, '0000-00-00 00:00:00', 1),
(24877, 28229, 161, 5, 0, 'Communication is poor and no idea about which role to choose and not opening up', 154, '0000-00-00 00:00:00', 1),
(24878, 28235, 168, 7, 0, 'she is suitable for profile completed nursing in thanjavur and worked in a front office executive in coimbatore for 2 years and relieved joined in a delta super e commerce site company, so company shutdown so she relieved with 10 months experience father civil service with 25k salary, sister studying, elder sister next month marriage, so kindly cross check in this parameter for leave extention. expected salary 13k have laptop. 5km travel from home. kindly cross check once and confirm', 154, '0000-00-00 00:00:00', 1),
(24879, 28231, 168, 7, 0, 'Suitable for a profile. completed b.E ECE. worked part time in a pharmacy for past 6 months, father passed around 10 years back single parent native in koradacheri Tiruvarur, nearly 48kms travel by train only expected salary 16 - 18k, he is expecting because of travel cost. he has good communication skill and objection handling also good  may be   1 year after going to abroad because of fam situation if possible. currently have 1 arrear, have no laptop feb 1st joining date. kindly cross check once', 154, '0000-00-00 00:00:00', 1),
(24880, 28221, 168, 7, 0, 'She is suitable for the profile native gandarvakottai around 25 km travel by bus. worked as a accountant in trichy for 1 year due to travel issue relieved from job and joined in varanda race for banking exam for 3 months and pursuing government exam for past 10 months, father farmer, brother xxamp sister are studying . expected 15k salary, have laptop immediate joining. kindly cross check  once and confirm', 154, '0000-00-00 00:00:00', 1),
(24881, 28219, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24882, 28237, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24883, 28239, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24884, 28220, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24885, 28216, 161, 5, 0, 'need only non voice', 154, '0000-00-00 00:00:00', 1),
(24886, 28151, 161, 5, 0, 'Communication slang is totally native slang and did only complete field sales or microfinance and group loans and no exp in voice process not suitable and package is 22k expected is more than this', 154, '0000-00-00 00:00:00', 1),
(24887, 28240, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24888, 28227, 105, 5, 0, 'candidate communicationa and performance is not good also she is married and have 7 month baby.Sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24889, 28162, 60, 1, 0, NULL, 18, '2026-01-27 04:40:08', 1),
(24890, 28231, 59, 3, 0, 'Communication Ok fresher for telecalling sales insurance need to travel for more than an hour let us check', 168, '2026-01-27 06:49:20', 1),
(24891, 28221, 59, 1, 0, NULL, 168, '2026-01-27 06:54:28', 1),
(24892, 28235, 59, 1, 0, NULL, 168, '2026-01-27 06:57:44', 1),
(24893, 28255, 74, 5, 0, 'NOT FIT FOR TEAM', 154, '0000-00-00 00:00:00', 1),
(24894, 28251, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24895, 28253, 168, 7, 0, 'He is suitable for the profile having good communication with objection handling skills, father farmer monthly 25k income brother studying, having 3 months experience in scrum water tech as a publisher for 3 months relieved due to long travel. having laptop nearby 5km from home, expecting salary 12 - 13k ,willing to join on feb 1st, 1 year after may be go to foreign due to fam situation. kindly cross check and verify. ', 154, '0000-00-00 00:00:00', 1),
(24896, 28217, 149, 7, 0, 'candidate was ok with communication and also interested in sales and need of job so lets try her \n', 154, '0000-00-00 00:00:00', 1),
(24897, 28253, 59, 1, 0, NULL, 168, '2026-01-28 02:38:03', 1),
(24898, 28259, 30, 7, 4, 'Selected for priya team suggested ctc 20k immediate joining', 154, '0000-00-00 00:00:00', 1),
(24899, 28244, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24900, 28263, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24901, 28214, 149, 7, 0, 'candidate was good at communication very confident and have prior work experience in voice process and interested in sales for salary we can suggest 17k-18k will join by feb 1st week', 159, '0000-00-00 00:00:00', 1),
(24902, 28266, 152, 5, 0, 'Rejected by sriram sir', 154, '0000-00-00 00:00:00', 1),
(24903, 28259, 60, 1, 0, NULL, 30, '2026-01-28 04:49:47', 1),
(24904, 28264, 105, 5, 0, 'candidate communication and performance i slittle ok.but she is very slow also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24905, 28273, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24906, 28217, 60, 1, 0, NULL, 149, '2026-01-28 06:56:39', 1),
(24907, 28214, 60, 1, 0, NULL, 149, '2026-01-28 07:00:11', 1),
(24908, 28283, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24909, 28284, 74, 7, 0, 'she is ok with the profile completed be mech in 2022 ....and 1 year worked in honda as sales and backend process and telecalling...with 8 k salary and releived from job...joined in idfc first bank in sales and field work getting 15k salary...and releived from job going to dubai as a sales process in bank...due to health issue releived from the job and joined in smart credit company with 17k salary...due to mother health issue she releived from the job.. father passed and brother passed recently .....expected 17k ready to join feb 1 and ready to arrange laptop', 154, '0000-00-00 00:00:00', 1),
(24910, 28258, 74, 7, 0, 'she is ok with the profile completed msc in 2025 in coimbatore..joined in first source night shift 20k salary work from home, currently project closed so she layed off...and change other process with same salary she is not willing to continue and looking for job in local...mature and talk active and professional to have laptop....father carpenter ...sister software developer with 15k salary....the only issue travel from dharasuram kumbakonam...kindly cross check in this parameter....and have  previous company procedures so need 2 week to join....expected 15 to 20k...', 154, '0000-00-00 00:00:00', 1),
(24911, 28282, 105, 7, 0, 'candidate communication and performance is ok.but little slow wiull check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(24912, 28285, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24913, 28258, 59, 1, 0, NULL, 74, '2026-01-29 12:59:33', 1),
(24914, 28284, 59, 3, 0, 'Communication Good Have exp in IDFC process for an year inbetween gap due to opportunities in abroad can be trained in our roles ', 74, '2026-01-29 01:07:05', 1),
(24915, 28276, 105, 5, 0, 'candidate communication and peerformance little ok.but she is very luxary.let her not handle pressure ,so sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24916, 28274, 105, 7, 0, 'candidate communication and performance is ok.will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(24917, 28270, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24918, 28287, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24919, 27064, 161, 5, 0, 'Not interested to join', 161, '2026-01-29 02:45:24', 1),
(24920, 28048, 161, 5, 0, 'High salary expectations', 161, '2026-01-29 02:45:41', 1),
(24921, 28274, 59, 1, 0, NULL, 105, '2026-01-29 04:34:41', 1),
(24922, 28282, 59, 3, 0, 'Communication Ok fresher for our roles internal team reference need to check in training only\n', 105, '2026-01-29 04:35:40', 1),
(24923, 28290, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24924, 28292, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24925, 28279, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24926, 28300, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24927, 28289, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24928, 28302, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24929, 28301, 149, 7, 0, 'candidate was ok with communication and have in need of job and looking confident we can try her', 154, '0000-00-00 00:00:00', 1),
(24930, 28303, 59, 3, 0, 'Communication Ok fresher need to train from scratch Feb xxamp Mar 12K then 15K from march onwards', 154, '0000-00-00 00:00:00', 1),
(24931, 28281, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24932, 28313, 140, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24933, 28314, 139, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24934, 28294, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24935, 28318, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24936, 28317, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24937, 28299, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24938, 28321, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24939, 28324, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24940, 28326, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24941, 28323, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24942, 28323, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24943, 28301, 60, 1, 0, NULL, 149, '2026-02-02 10:39:38', 1),
(24944, 28341, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24945, 28342, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24946, 28335, 164, 7, 0, 'CANDIDATE IS OK.COMMUNICATION OK.kINDLY CONFIRM THE SALARY', 154, '0000-00-00 00:00:00', 1),
(24947, 28340, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24948, 28343, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24949, 28335, 59, 1, 0, NULL, 164, '2026-02-02 01:19:35', 1),
(24950, 28344, 29, 7, 2, 'porrselvan team', 154, '0000-00-00 00:00:00', 1),
(24951, 28332, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24952, 28347, 139, 5, 0, 'not fit for rm role', 159, '0000-00-00 00:00:00', 1),
(24953, 28305, 30, 7, 3, 'Suggested ctc 19 to 20k max priya team', 60, '0000-00-00 00:00:00', 1),
(24954, 28346, 30, 4, 3, 'selected for pc but suggested ctc 3.5lac max if its k will try', 154, '0000-00-00 00:00:00', 1),
(24955, 28352, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24956, 28345, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24957, 28354, 139, 5, 0, 'Not fit for rm role', 159, '0000-00-00 00:00:00', 1),
(24958, 28350, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24959, 28368, 11, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24960, 28371, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24961, 28327, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24962, 28348, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24963, 28309, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24964, 28344, 59, 3, 0, 'Communication Good Have exp in shriram for 6 months recently married openf or insurance again let us check in training', 29, '2026-02-03 05:54:11', 1),
(24965, 28383, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24966, 28381, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24967, 28388, 168, 5, 0, 'Having communication skill but sustainability doubt wishing for accountant job doing Mba finance this month exam so will take long days and if needed means march after only able to join.', 154, '0000-00-00 00:00:00', 1),
(24968, 28387, 168, 5, 0, 'Already attended 2 years back. having no proper communication skill having experience in telecaller for loan recovery in startup but relieved due to family situation and having no experience certificate not profiled one sustainability issue', 154, '0000-00-00 00:00:00', 1),
(24969, 28386, 168, 5, 0, 'Just looking for a salary only wished for accountant job not sustain for longer doing Mba finance having a exam this month so long leave required .', 154, '0000-00-00 00:00:00', 1),
(24970, 28385, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24971, 28379, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24972, 28337, 59, 3, 0, 'For 2 months intern stipend of 12K then 15K salary HR recruitment', 159, '0000-00-00 00:00:00', 1),
(24973, 28141, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24974, 28399, 59, 5, 0, 'Worst profile for our roles not suitable for any roles in our company', 159, '0000-00-00 00:00:00', 1),
(24975, 28390, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24976, 28400, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24977, 28305, 60, 1, 0, NULL, 30, '2026-02-04 05:37:54', 1),
(24978, 28346, 60, 1, 0, NULL, 30, '2026-02-04 05:39:11', 1),
(24979, 28401, 137, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24980, 28376, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24981, 28378, 59, 3, 0, 'Communication Ok fresher for our roles need to train and check let us try for Ops', 159, '0000-00-00 00:00:00', 1),
(24982, 28406, 168, 7, 0, 'She is suitable for the profile, having good communication and convincing skills, have a 6 months experience in tele calling for digital marketing due to late salary relieved, father farmer monthly fam income 20k, nearby 45 mins travel  currently no commitment will work for 2 more years,, have a laptop, expected salary 12 - 13k, joining by monday.', 154, '0000-00-00 00:00:00', 1),
(24983, 28394, 168, 7, 0, 'She is suitable for the profile, having good communication and convincing skills, have a 6 months experience in tele calling for digital marketing due to late salary relieved, father farmer 1st brother searching job 2nd brother in foreign, monthly fam income 20k, currently no commitment will work for 2 more years,, have a laptop, expected salary 12 - 13k, joining by monday.', 154, '0000-00-00 00:00:00', 1),
(24984, 28357, 149, 7, 0, 'CANDIDATE COMMUNICATION WAS OK LOOKING CONFIDENT AND IN NEED OF JOB AND HAVE NO PRIOR JOB EXPERIENCE AND WE SHALL PROCEED FURTHER', 154, '0000-00-00 00:00:00', 1),
(24985, 28404, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24986, 28380, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24987, 28402, 149, 7, 0, 'COMMUNICATION WAS GOOD AND HAVE WORK EXPERIENCE RELATED TO SALES AND IN NEEDED OF JOB ALSO WILL OK FOR IMMEDIATE JOINING', 159, '0000-00-00 00:00:00', 1),
(24988, 28394, 59, 3, 0, 'Communication Ok fresher for our roles need to check in training and see  for our sales callings', 168, '2026-02-05 04:05:58', 1),
(24989, 28406, 59, 3, 0, 'Communication ok fresher for our sales roles need to check in training amd confirm', 168, '2026-02-05 04:08:28', 1),
(24990, 28357, 60, 1, 0, NULL, 149, '2026-02-05 04:42:11', 1),
(24991, 28402, 60, 1, 0, NULL, 149, '2026-02-05 04:50:14', 1),
(24992, 23623, 59, 3, 0, 'Communication ok fresher for our renewal roles need to check in training and see let us try', 159, '0000-00-00 00:00:00', 1),
(24993, 28418, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24994, 28421, 74, 5, 0, 'not fit\n', 154, '0000-00-00 00:00:00', 1),
(24995, 28407, 30, 7, 0, 'good communiocation , has good experience suggested CTC 4LPA', 154, '0000-00-00 00:00:00', 1),
(24996, 28408, 30, 5, 0, 'Has experience But seems like will not get used to insurance domain .', 154, '0000-00-00 00:00:00', 1),
(24997, 28411, 30, 5, 0, 'Does not seem to be consistent in any of the previous companies . Did not sustain in previous jobs for more than 1 TO 3 months.', 154, '0000-00-00 00:00:00', 1),
(24998, 28416, 59, 5, 0, 'Communication not much sounds good fresher not much suits for our backend roles', 154, '0000-00-00 00:00:00', 1),
(24999, 28422, 59, 5, 0, 'Preparing for Police exams time being he is looking for opportunities\n', 154, '0000-00-00 00:00:00', 1),
(25000, 28420, 57, 5, 0, 'Candidate is not suitable for sales, 3 years exp in Gold field, pressure Handling low,', 154, '0000-00-00 00:00:00', 1),
(25001, 28403, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25002, 28423, 168, 7, 0, 'He is suitable for profile, have a good communication and convincing skills, fresher, father working in pipe shop, brother in marketing, overall family income 30k,10 mins travel from home to office having bike, no laptop, expected salary 13 - 14k, but expected joining on march due to personal religious thing kindly cross check and verify', 154, '0000-00-00 00:00:00', 1),
(25003, 28423, 59, 3, 0, 'Communication Ok fresher for employment need to check in training ', 168, '2026-02-07 12:13:59', 1),
(25004, 28430, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25005, 28431, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25006, 28425, 89, 7, 0, 'Good skill person. 6 month experience health insurance.  Expectations very high so Find out her previous salary details and then proceed.', 154, '0000-00-00 00:00:00', 1),
(25007, 28429, 57, 5, 0, 'Candidate is ok, but salary expectation very high, communication Not Good, observation skills very low..', 154, '0000-00-00 00:00:00', 1),
(25008, 28374, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25009, 28437, 152, 4, 0, 'Selected for next round', 154, '0000-00-00 00:00:00', 1),
(25010, 28425, 59, 1, 0, NULL, 89, '2026-02-07 05:33:49', 1),
(25011, 28407, 60, 1, 0, NULL, 30, '2026-02-09 12:06:09', 1),
(25012, 28245, 60, 1, 0, NULL, 30, '2026-02-09 12:07:14', 1),
(25013, 28446, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25014, 28432, 105, 5, 0, 'Candidate communication and performance is not good.his Only vioce is ok , Also Pressure Handle iAnd  sustainable is  doubt.Excepted High salary', 154, '0000-00-00 00:00:00', 1),
(25015, 28445, 105, 5, 0, 'Candidate communication and performance is not good.Also Sustainble is doubt', 154, '0000-00-00 00:00:00', 1),
(25016, 28433, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25017, 28436, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25018, 28186, 59, 3, 0, 'Freshr for OT Temrs ad conditions applies', 60, '0000-00-00 00:00:00', 1),
(25019, 28451, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25020, 28464, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(25021, 28440, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25022, 28456, 139, 4, 0, 'Selected for Rm \nhaving good communication skill and sales skill we can try exp ctc 3.5 laks \nImmediate join on monday ', 154, '0000-00-00 00:00:00', 1),
(25023, 28457, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25024, 28456, 18, 7, 3, 'Kaveeya Selected for Gnanashekar Team. Good candidate and Expected is 3.5L with low experience but though she is a fresher she is 28 and decently matured and can give that income. Ready to Join on Monday (16 Feb 2025).', 139, '2026-02-10 03:49:35', 1),
(25025, 28456, 60, 1, 0, NULL, 18, '2026-02-10 04:46:57', 1),
(25026, 28477, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25027, 28470, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25028, 28472, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25029, 28455, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25030, 28478, 152, 5, 0, 'Rejected by sriram sir', 154, '0000-00-00 00:00:00', 1),
(25031, 28468, 59, 3, 0, 'Rejoining candidate after a coule of years direct reporting to gaurav sir based on the confirmation from Gaurav sir we are proceeding', 60, '0000-00-00 00:00:00', 1),
(25032, 28482, 74, 7, 0, 'she is ok with the profile completed bsc 2023 passed..father passed mother worked in school organiser 10k salary...fresher imeediate joining...expected basic salary...have bike kiindly cross check and confirm', 154, '0000-00-00 00:00:00', 1),
(25033, 28481, 168, 7, 0, 'She is suitable for the profile. having good communication skills and convincing skills, have a 9 months experience in dhuruva finance karur, father farmer monthly 20k she is elder child, as of now no commitment for marriage, job requirement, have laptop, around 30 mins travel from home to office by bus or train. expected salary 12 -13k. immediate joining.kindly cross check and verify.', 154, '0000-00-00 00:00:00', 1),
(25034, 28483, 74, 5, 0, 'not suite', 154, '0000-00-00 00:00:00', 1),
(25035, 28481, 59, 3, 0, 'Communication fresher for our roles coming along with freind 9 months exp need to travel for almost 30kms need to check in traininf and check', 168, '2026-02-11 12:59:45', 1),
(25036, 28487, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25037, 28018, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25038, 28482, 59, 3, 0, 'Communication fresher for our roles coming along with freind 9 months exp need to travel for almost 30kms need to check in traininf and check', 74, '2026-02-11 02:48:26', 1),
(25039, 28485, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25040, 28486, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25041, 28488, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25042, 22718, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25043, 28489, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25044, 28480, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25045, 28490, 57, 7, 0, 'Candidate is ok, communication Good, observation skills also good, Pls check sustainability, confirm the salary and joining date', 159, '0000-00-00 00:00:00', 1),
(25046, 28490, 59, 3, 0, 'Communication Ok fresher for telesales need to check in training only', 57, '2026-02-12 12:13:33', 1),
(25047, 28492, 105, 5, 0, 'Candidate Communication', 154, '0000-00-00 00:00:00', 1),
(25048, 28491, 105, 5, 0, 'candidate communication and performance is not good.also have experiance but expected Higher package', 154, '0000-00-00 00:00:00', 1),
(25049, 28509, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25050, 28508, 27, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25051, 28476, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25052, 28512, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25053, 28513, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25054, 28501, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25055, 28515, 74, 7, 0, 'he is ok with the profile completed diploma and one year gap due to covid and 3 years be in CS department....and prepared for gate 1 year and 6 month python class....tried IT but still unemployed due to lack of skills....father active driver and finance in local...brother in foreign 35k salary.....own house ....travel time half hour...have laptop...and monday joining....14k expected...kindly cross check in sustainability', 154, '0000-00-00 00:00:00', 1),
(25056, 28496, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25057, 28437, 18, 7, 3, 'Bharathraj Selected for Abdul team. Shall join on Monday and can release 3.25L CTC. He is having laptop and shall arrange bike shortly…', 152, '2026-02-13 01:01:45', 1),
(25058, 28437, 60, 1, 0, NULL, 18, '2026-02-13 01:03:44', 1),
(25059, 28519, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25060, 28503, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25061, 28465, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25062, 28522, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25063, 28530, 105, 7, 0, 'Candidate communication and performance is ok. also she have Experience. Will Check With her in the training period', 154, '0000-00-00 00:00:00', 1),
(25064, 28530, 105, 7, 0, 'Candidate communication and performance is ok. also she have Experience. Will Check With her in the training period', 159, '0000-00-00 00:00:00', 1),
(25065, 28515, 59, 3, 0, 'Communciation Ok fresher for our roles need to check in training and see', 74, '2026-02-13 02:59:57', 1),
(25066, 28523, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25067, 28510, 139, 4, 0, 'Selected for Rm profile\nhaving exp in sales and good communication skill and sales skill\nwe can try for rm\nhave to negociate the package ', 154, '0000-00-00 00:00:00', 1),
(25068, 28545, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25069, 28542, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25070, 28543, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25071, 28546, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25072, 28541, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25073, 28536, 139, 4, 0, 'selected for rm role \nhaving 2 yr exp in credit card sales\nwe can try for rm ', 154, '0000-00-00 00:00:00', 1),
(25074, 28532, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25075, 28510, 18, 5, 0, 'Interested in Operations only', 139, '2026-02-14 06:44:26', 1),
(25076, 28536, 18, 7, 3, 'Selected for Gnanashekar team She will Join in 1st march and can give 25k Net + PF', 139, '2026-02-14 06:46:12', 1),
(25077, 28530, 59, 1, 0, NULL, 105, '2026-02-16 11:27:14', 1),
(25078, 28564, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25079, 28556, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25080, 28562, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25081, 28563, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25082, 28553, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25083, 28557, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25084, 28558, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25085, 28544, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25086, 28569, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25087, 28578, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25088, 28502, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25089, 28581, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25090, 28572, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25091, 28566, 74, 7, 0, 'she is ok with the profile completed bsc in bon secures college2022 passed out....2022 to 2024 worked in excela technology us based shift 23k,,,due to project closure and joined in malabar gold backend process and  releived ...father assistant to doctor native kerala ....settled in thanjavur..rental house local only expected 17k..kindly cross check and confirm...immediate joining', 154, '0000-00-00 00:00:00', 1),
(25092, 28574, 74, 5, 0, 'long distance', 154, '0000-00-00 00:00:00', 1),
(25093, 28583, 74, 7, 0, 'she is ok with the profile completed diploma...and worked in part time jobs and married in 2023...in thanjavur ...native chennai...husband worked as supervisor in thanjuavur..with inlaws....talk active and mature girl...worked in part time wfh and applied for releiving and mostly joined next month expected 17k...kindly cross check', 154, '0000-00-00 00:00:00', 1),
(25094, 28579, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25095, 28584, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25096, 28585, 139, 4, 0, 'Selected for Rm profile\ndont have exp in sales\nbut we can try for rm role ', 154, '0000-00-00 00:00:00', 1),
(25097, 28566, 59, 1, 0, NULL, 74, '2026-02-17 06:18:08', 1),
(25098, 28583, 59, 3, 0, 'Communication Ok have exp but not in relevant one can give a try and check in training', 74, '2026-02-17 06:22:59', 1),
(25099, 28573, 59, 3, 0, 'Reference Profile Suresh Sir (Lingam Reference) profile for Branch Manager Role', 60, '0000-00-00 00:00:00', 1),
(25100, 28589, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25101, 28590, 89, 7, 0, 'Good skill. Fresher. Will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(25102, 28586, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25103, 22709, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25104, 28596, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25105, 28594, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25106, 28592, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25107, 28571, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25108, 28600, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25109, 28593, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25110, 28598, 167, 7, 0, 'Good Communication,\nGood Skills,\nExpecting Salary 22k', 162, '0000-00-00 00:00:00', 1),
(25111, 28599, 167, 7, 0, 'Good Communication,\nGood Knowledge In Sales\nExpecting 23k', 162, '0000-00-00 00:00:00', 1),
(25112, 28598, 60, 1, 0, NULL, 167, '2026-02-18 06:07:02', 1),
(25113, 28599, 60, 1, 0, NULL, 167, '2026-02-18 06:07:49', 1),
(25114, 28590, 59, 1, 0, NULL, 89, '2026-02-19 11:01:44', 1),
(25115, 28603, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25116, 28615, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25117, 28602, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25118, 28601, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25119, 28611, 105, 7, 0, 'Candidate communication and performance is little good. Will check with her in The training period. ', 159, '0000-00-00 00:00:00', 1),
(25120, 28612, 147, 7, 0, 'she is Experience candidate in the Tele colling good in kannada Convincing english ok need to speak Regarding Salary', 162, '0000-00-00 00:00:00', 1),
(25121, 28612, 60, 1, 0, NULL, 147, '2026-02-19 05:59:22', 1),
(25122, 28636, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25123, 28631, 29, 7, 3, 'Esales, karthika', 159, '0000-00-00 00:00:00', 1),
(25124, 28632, 149, 7, 0, 'candidate was good at communication ,in need of job and interested also ready  for immediate joining and confident', 159, '0000-00-00 00:00:00', 1),
(25125, 28635, 57, 7, 0, 'Candidate is ok, communication average, confirm the joining date(Team Reference)', 159, '0000-00-00 00:00:00', 1),
(25126, 28635, 59, 3, 0, 'Have exp in multiple companies but no sustainability last company shree consultant for 5 months internal team reference based on the manager input proceeded with this CTC', 57, '2026-02-20 04:36:33', 1),
(25127, 28628, 168, 5, 0, 'Have a communication skills, but looking for a iT related job also, doing a mSC on april sem starts will  get a long leave, will not sustain for long period', 154, '0000-00-00 00:00:00', 1),
(25128, 28632, 60, 1, 0, NULL, 149, '2026-02-20 07:23:21', 1),
(25129, 28641, 149, 7, 0, 'Candidate was good at communication and confident also and have wrk experience in sales and needed job and she will join by next week wed .', 154, '0000-00-00 00:00:00', 1),
(25130, 28643, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25131, 28644, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25132, 28536, 60, 1, 0, NULL, 18, '2026-02-21 02:38:09', 1),
(25133, 28641, 60, 1, 0, NULL, 149, '2026-02-21 04:49:08', 1),
(25134, 28675, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25135, 28647, 139, 4, 0, 'Selected for next round\nhaving good communication skill \n2 yr exp in credit card sales\n', 154, '0000-00-00 00:00:00', 1),
(25136, 28653, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25137, 28611, 59, 3, 0, 'Communication Ok fresher for our roles need to train and check in training only let us try', 105, '2026-02-23 01:48:31', 1),
(25138, 28672, 105, 7, 0, 'candidate communication and performance is good.will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(25139, 28626, 105, 5, 0, 'candidate communication and performance is Not Good.Also Her Voice is velry low .Sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25140, 28669, 105, 5, 0, 'candidate communication and performance is Not Good.Also He Could not interact much more in interview Process', 154, '0000-00-00 00:00:00', 1),
(25141, 28647, 18, 7, 3, 'Manikandan R Selected For Gnanashekar Team. Current CTC is 2.75 but expected 4L as he did not receive any Hike in the last 2 Years. Can offer 3.6L and can give target for the next 3 or 6 months and can give 50k Hike which should be communicated and can Join within 3 Days.\n', 139, '2026-02-23 02:34:30', 1),
(25142, 28683, 74, 7, 0, 'he is ok with the profile completed bsc in 2020...and joined excela tech 2 years in us shift and releived and joined same as process in hamly solution 4 years experience us insurance backend handling for 4 years and releived due to project closed...age 26..local 4km only travel...father medical illness no source of income highly job need meet in bon secures campus meet...today came direct office...kindly cross check expected 17k immediate joining', 154, '0000-00-00 00:00:00', 1),
(25143, 28677, 74, 7, 0, 'she is ok with the profile compledted msc cs in mannargudi....and joined as a primary teacher for 3 years and releived due to accident need 6  months leave....and joined in nxt wave tele sales...education with 30k package ....company need to shift to chennai so releived from job current job need have exposure and good skills....expected 17 to 18k ,,,march joining...father passed sister worked as teacher and unmarried ...main in mannargudi 45 mins travel cross check in this portion.', 154, '0000-00-00 00:00:00', 1),
(25144, 28679, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25145, 28607, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25146, 28685, 137, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25147, 28677, 59, 1, 0, NULL, 74, '2026-02-23 05:32:20', 1),
(25148, 28683, 59, 3, 0, 'Communication Ok have exp in medical billing process fresher for insurance sales but open to learn earlier CTC was round 22K now we offer this', 74, '2026-02-23 05:37:10', 1),
(25149, 28668, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25150, 28647, 60, 1, 0, NULL, 18, '2026-02-23 06:42:50', 1),
(25151, 28698, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25152, 28686, 74, 7, 0, 'he is ok with the profile completed bcom in sastra university....joined in uber 9 business process like gst filling with clients...2 months in chennai 2 months in thanjavur and 2 month in wfh ....due to competative exam he releived from the job bcoz of not providing 1 week leave kindly cross check in this parameter apart from this..good profile job need good comunication...father passed in 2016 in trichy and shift to mother native aiyampettai 30 mins travel....brother worked in tv channel 15k salary.......currently prakash in native with mother only...so looking for job in thanjavur....past salary 15k....main focus rrb and ssc exams only future plan everything.....but we try apart...expected 17k....immediate joining.', 154, '0000-00-00 00:00:00', 1),
(25153, 28694, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25154, 28686, 59, 3, 0, 'Communication Ok have exp in  calling activities in Vakuil search fresher for our roles need to check in training only', 74, '2026-02-24 12:09:29', 1),
(25155, 28687, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25156, 28699, 137, 7, 0, 'candidate comunication skill and voice good , past 6 month exp for loan company , some internal reason to quite the job , so try for 7 days training period and exp salary for 18to 19k salary', 159, '0000-00-00 00:00:00', 1),
(25157, 28684, 137, 2, 0, 'hold the candidate', 159, '0000-00-00 00:00:00', 1),
(25158, 28701, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25159, 28680, 57, 5, 0, 'Candidate is not suitable for sales profile, communication Not Good, Field work not interest, reject the profile', 154, '0000-00-00 00:00:00', 1),
(25160, 28690, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25161, 28699, 59, 1, 0, NULL, 137, '2026-02-24 01:19:25', 1),
(25162, 28702, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25163, 28650, 74, 5, 0, 'NOT FIT', 154, '0000-00-00 00:00:00', 1),
(25164, 28688, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(25165, 28672, 59, 1, 0, NULL, 105, '2026-02-24 05:42:36', 1),
(25166, 28724, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25167, 28540, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25168, 28665, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(25169, 28721, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25170, 28720, 137, 5, 0, '.', 154, '0000-00-00 00:00:00', 1),
(25171, 28726, 137, 7, 0, 'candidate communication skill and vocie is good , past 8 month work with real estate company appartment sales , some money issue to quit the job , now in notice period , next month 6th its will over , candidate exp salary is 18k , ', 154, '0000-00-00 00:00:00', 1),
(25172, 28716, 167, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25173, 28631, 59, 3, 0, 'Communication Good have exp in calling but not in insurance bank bazaar exp only need to check in training only', 29, '2026-02-25 07:37:50', 1),
(25174, 28726, 59, 3, 0, 'Communication Ok fresher for our roles just 6 months exp in real estate based on manager push we have gone with this salary package', 137, '2026-02-26 10:13:43', 1),
(25175, 28753, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25176, 28749, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25177, 28755, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25178, 28734, 149, 5, 0, 'not good at communication and not at all open to a conversation will not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(25179, 28761, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25180, 28760, 161, 5, 0, 'Communication average only and he itself openly admitting he came just for his brother and totally food industry experience and at his initial stage of career itself he dont have interest in BPO', 159, '0000-00-00 00:00:00', 1),
(25181, 28747, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25182, 28764, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25183, 28757, 74, 7, 0, 'he is ok with the profile completed BE  2025 passed out .....single child father passed 10 years back and doing tea shop business....mother passed away this year doing parlour business......he is single independant....have own shops in rental and doing mother finance business...monthly take home around 30k....so kindly cross check in this parameter....have one grandma 65+ so he have the responsibilites to take care so only he is not choosing other cities and not try to join in IT....so i have a doubt regarding the monly revenue 30k...so how he gave the importatnt for the job....but have good manners and atitude to handle cross check in this parameter...joining after 10 days because of grandma cataract operation.', 154, '0000-00-00 00:00:00', 1),
(25184, 28758, 74, 5, 0, 'not suite for team...over matured and long travel with future mindset depends upon business only so not suite for team', 154, '0000-00-00 00:00:00', 1),
(25185, 28719, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(25186, 28736, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(25187, 28752, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(25188, 28757, 59, 1, 0, NULL, 74, '2026-02-26 02:17:46', 1),
(25189, 28619, 30, 7, 0, 'suggested upto 3.5lpa selected for RM', 162, '0000-00-00 00:00:00', 1),
(25190, 28766, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25191, 28769, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25192, 28783, 29, 7, 3, 'porrselvan team, 3.6 lac ctc', 154, '0000-00-00 00:00:00', 1),
(25193, 28737, 89, 7, 0, 'Alredy experience at Tele calling multiple companies. Salary expectation High But good skill. Will analysis 7 days training ', 159, '0000-00-00 00:00:00', 1),
(25194, 28780, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25195, 28784, 152, 4, 0, 'Selected for next round', 154, '0000-00-00 00:00:00', 1),
(25196, 28787, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25197, 28770, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25198, 28786, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25199, 28785, 109, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25200, 28649, 137, 7, 0, 'candidate  commuincation skill and convresation skill is very good , pasy 3 years work with insurance broking company , low salary to quit the job , i suggest 18k salary for her. ', 154, '0000-00-00 00:00:00', 1),
(25201, 28649, 59, 3, 0, 'Communication Ok have exp in insurance for 3 yrs can be trained in ourroles will check in traning', 137, '2026-02-27 02:55:37', 1),
(25202, 28737, 59, 3, 0, 'Communication ok have exp in calling process need to check in training  for our roles ', 89, '2026-02-27 02:56:56', 1),
(25203, 28767, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25204, 28783, 59, 3, 0, 'Communication Ok have exp in multiple domain as matrimony fresher  for our insurance sales can give a try', 29, '2026-02-27 04:49:01', 1),
(25205, 28773, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25206, 28788, 149, 7, 0, 'ok with communication and interested in sales and had a requirement of job and will join in next month', 159, '0000-00-00 00:00:00', 1),
(25207, 28776, 167, 7, 0, 'good communication , good skills expected 25k try to convince for 22k or 23k', 162, '0000-00-00 00:00:00', 1),
(25208, 28796, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25209, 28788, 60, 1, 0, NULL, 149, '2026-02-28 11:58:48', 1),
(25210, 28790, 105, 5, 0, 'candidate communication and performance is not good.also sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(25211, 28803, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25212, 28795, 59, 3, 0, '3 months intern with 10K stipend then 16K  salary with 2yrs NDA in employment', 159, '0000-00-00 00:00:00', 1),
(25213, 28774, 105, 5, 0, 'candidate communication and performance is not good.also sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(25214, 28797, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25215, 28806, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25216, 28793, 105, 5, 0, 'candidate communication and performance is not good. also sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(25217, 28776, 60, 1, 0, NULL, 167, '2026-02-28 06:01:22', 1),
(25218, 28619, 60, 1, 0, NULL, 30, '2026-02-28 06:03:46', 1),
(25219, 28784, 18, 7, 3, 'Suriya Saravanan Selected for Abdul Team. Ready to Join on 2nd Mar. Expected Salary is 3.6 Can give but negotiable. Having Laptop and please discuss the package and release the Offer.', 152, '2026-02-28 06:59:06', 1),
(25220, 28784, 60, 1, 0, NULL, 18, '2026-02-28 07:00:52', 1),
(25221, 28821, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25222, 28828, 59, 3, 0, 'Communication Good Worked in Vizza as recruiter internal team Priya reference can give a try and check in training', 162, '0000-00-00 00:00:00', 1),
(25223, 28831, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25224, 28833, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25225, 28794, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25226, 28825, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25227, 28830, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25228, 28832, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25229, 28241, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25230, 28842, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25231, 28840, 156, 7, 0, 'candidate is ok, communication average. 1 year 11months exp for IDFC First Bharat Private limited. please check sustainability and confirm the joining date.', 159, '0000-00-00 00:00:00', 1),
(25232, 28850, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25233, 28846, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25234, 28841, 89, 7, 0, 'Fresher, avarage skill but will analysis 7 days training days', 159, '0000-00-00 00:00:00', 1),
(25235, 28845, 168, 5, 0, 'Already attended candidate at the time he was pursuing for government exam so not joined. now again tried here but focusing for digital marketing segment so not sustain for more that 3 months and brother working in digital marketing in chennai so able to change there.', 154, '0000-00-00 00:00:00', 1),
(25236, 28840, 59, 1, 0, NULL, 156, '2026-03-03 03:00:22', 1),
(25237, 28860, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25238, 28779, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25239, 28863, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25240, 28841, 59, 3, 0, 'Communication Seems to average for our sales roles previously attended and rejected due to non voice exp now also same exp she has but can give a try and check', 89, '2026-03-03 05:33:20', 1),
(25241, 28878, 57, 5, 0, 'Candidate is not ok for sales, salary expectation very high, sustainability issue,', 159, '0000-00-00 00:00:00', 1),
(25242, 28880, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25243, 28866, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25244, 28881, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25245, 28861, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25246, 28888, 139, 5, 0, 'not fit for rm role', 159, '0000-00-00 00:00:00', 1),
(25247, 28884, 57, 7, 0, 'Candidate is ok, communication Good, Confirm the joining Date xxamp Salary (Sathay Team)', 159, '0000-00-00 00:00:00', 1),
(25248, 28867, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25249, 28887, 105, 7, 0, 'candidate communication and performance is ok. will check with him in the training period', 159, '0000-00-00 00:00:00', 1),
(25250, 28879, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25251, 28891, 105, 5, 0, 'Candidate communication and performance is Poor. Also sustainable is doubt ', 159, '0000-00-00 00:00:00', 1),
(25252, 28884, 59, 3, 0, 'Communication ok have exp in justdial process fresher for insurance domain can givea  try and check in training', 57, '2026-03-04 03:48:30', 1),
(25253, 28887, 59, 1, 0, NULL, 105, '2026-03-04 04:10:42', 1),
(25254, 28893, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25255, 28889, 152, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25256, 28903, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25257, 28871, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25258, 28856, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25259, 28869, 147, 7, 0, 'he is good in Communication having confident  fluent in english 6 month Experience in sales expected salary 22k can give ', 162, '0000-00-00 00:00:00', 1),
(25260, 28902, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25261, 28870, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25262, 28905, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25263, 28909, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25264, 28908, 105, 5, 0, 'candidate communication and performance is not good. also he is over Exposer .sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(25265, 28869, 60, 1, 0, NULL, 147, '2026-03-06 10:30:30', 1),
(25266, 28921, 74, 7, 0, 'he is ok with the profile completed msc cs in annai velankanni 2025 passed out due to hernia completed operation and 6 months rest...currently fit...father carpenter 5km travel from home...fresher ok will try good communication monday joining..job need expected 14k..kindly cross check ', 154, '0000-00-00 00:00:00', 1),
(25267, 28912, 74, 5, 0, 'not fit not performing well', 154, '0000-00-00 00:00:00', 1),
(25268, 28915, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25269, 28926, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25270, 28921, 59, 3, 0, 'Communication ok fresher for insurance sales in our process need to check in training and confirm', 74, '2026-03-06 01:04:41', 1),
(25271, 28759, 105, 7, 0, 'candidate communication and performance is little ok. also Done Internship In National insurance And She have 6 month Experience in insurance domain but product not know. long distance 5050 profile will check with her in the training period.', 154, '0000-00-00 00:00:00', 1),
(25272, 28759, 59, 3, 0, 'Communication Ok 6 months worked in insurance based company based on the commission salary open to explore and learn need to check in training', 105, '2026-03-06 04:02:45', 1),
(25273, 28937, 139, 5, 0, 'Not fit for Rm role', 154, '0000-00-00 00:00:00', 1),
(25274, 28934, 74, 7, 0, 'He is ok with the profile completed bcom with commerce and it integrated coursre..completed 24..in srm university..and in year gap in 20 to 21 due to covid.....local travel 3km only.....and completed accounts course also.....not willing to work in chennai....due to father separated....he live with mother and sister ...sister studied in sastra 1yr.....mother govt job 25k salary.......no other incom...attend interview in equitas.cub,axis,rocket seller,,,not joined..expected 13 to 15k...immediate joining.....good skills like leam co ordination class rep,,,and welfare leader like have skills kindly cross check.', 154, '0000-00-00 00:00:00', 1),
(25275, 28934, 59, 3, 0, 'Communication Good seems to be clear candidate can give a try and check in our training', 74, '2026-03-07 12:30:23', 1),
(25276, 28932, 161, 4, 0, 'selected by gokul sir', 154, '0000-00-00 00:00:00', 1),
(25277, 28932, 59, 1, 0, NULL, 161, '2026-03-07 03:37:57', 1),
(25278, 28929, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25279, 28945, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25280, 28935, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25281, 28950, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25282, 28951, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25283, 28961, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25284, 28964, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25285, 28964, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25286, 28965, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25287, 28967, 152, 4, 0, 'Selected for next round', 159, '0000-00-00 00:00:00', 1),
(25288, 28969, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25289, 28969, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25290, 28976, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25291, 28949, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25292, 28988, 74, 7, 0, 'he is ok with the profile expected 16 to 18k...immediate joining...father foreign return..brother in foreign....kindly cross check in adaptability with team and manager only', 154, '0000-00-00 00:00:00', 1),
(25293, 28977, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25294, 28981, 139, 4, 0, 'Selected for Next round\nhaving good communitcation skill \nwill try for RM role ', 159, '0000-00-00 00:00:00', 1),
(25295, 28982, 105, 7, 0, 'candidate communication and performance is Good. Also she have 1.5yrs Experience .will Check with her in the training period.', 159, '0000-00-00 00:00:00', 1),
(25296, 28995, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25297, 28974, 105, 7, 0, 'candidate communication and performance is little  ok. 5050 profile also  pronunciation  need to correct .will Check with him in the training period.', 159, '0000-00-00 00:00:00', 1),
(25298, 28993, 57, 7, 0, 'Candidate is ok, communication average,pls confirm the joining date xxamp Salary(Deshwaran Team) ', 159, '0000-00-00 00:00:00', 1),
(25299, 28992, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25300, 28994, 105, 7, 0, 'candidate communication and performance is Good. Also she have 1yrs Experience .but Distance is long will Check with her in the training period.', 159, '0000-00-00 00:00:00', 1),
(25301, 28996, 149, 7, 0, 'candidate was ok with communication and had need for job have work experience so we can try and also ok for immediate joining', 159, '0000-00-00 00:00:00', 1),
(25302, 28998, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25303, 29001, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25304, 29000, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25305, 28999, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25306, 28991, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25307, 28982, 59, 3, 0, 'Communication Ok have exp in Shree Mutual funds Kannan Team Banu AM just for 6 months previously worked with Star through Manpower need to check in training', 105, '2026-03-11 04:36:15', 1),
(25308, 28994, 59, 3, 0, 'Communication and confident is good too long distance but open to travel 1yr imarque exp open for insurance sales need to check in training', 105, '2026-03-11 04:37:19', 1),
(25309, 28974, 59, 3, 0, 'Communication Ok fresher need to train a lot  5050 for our roles pronunciation need to train will check', 105, '2026-03-11 04:39:00', 1),
(25310, 28993, 59, 3, 0, 'Communication Ok sustainability issues she has Last year attended and go rejected in our roles 5050 need to check in training and see', 57, '2026-03-11 06:51:08', 1),
(25311, 28988, 59, 1, 0, NULL, 74, '2026-03-11 07:18:44', 1),
(25312, 29019, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25313, 29002, 89, 7, 0, 'Good skill. But will analysis 7 days training ', 159, '0000-00-00 00:00:00', 1),
(25314, 29022, 89, 7, 0, 'Alredy working loan department. Salary expectation High. But will analysis 7 days training ', 159, '0000-00-00 00:00:00', 1),
(25315, 29021, 105, 5, 0, 'candidate communication and performance is not Good. Sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25316, 29021, 105, 5, 0, 'candidate communication and performance is not Good. Sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(25317, 28958, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25318, 29002, 59, 3, 0, 'Communication ok fresher for our insurance sales need to check in training and confirm let us try', 89, '2026-03-12 01:16:26', 1),
(25319, 29022, 59, 1, 0, NULL, 89, '2026-03-12 01:17:05', 1),
(25320, 29029, 164, 7, 0, 'CANDIDATE OK.COMMUNICATION IS GOOD.KINDLY CONFIRM THE SALARY AND JOINING DATE', 154, '0000-00-00 00:00:00', 1),
(25321, 29005, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25322, 28996, 60, 1, 0, NULL, 149, '2026-03-13 10:14:31', 1),
(25323, 29033, 74, 5, 0, 'not fit high expectation and purely IT domain and mother health issue also', 154, '0000-00-00 00:00:00', 1),
(25324, 29031, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25325, 29038, 149, 7, 0, 'CLIENT WAS OK WITH COMMUNICATION AND IN NEED OF JOB AND WILL JOIN BY MONDAY', 159, '0000-00-00 00:00:00', 1),
(25326, 29039, 149, 5, 0, 'NOT OK WITH COMMUNICATION AND ALSO VERY SLOW IN RESPONSE AND LOOKING NOT OK FOR OUR PROFILE AND NOT SURE ABOUT PRESSURE HANDLING', 159, '0000-00-00 00:00:00', 1),
(25327, 28981, 18, 7, 3, 'Selected for Gnanashekar team Immed Joiner. Ask her to Join on Monday- 15 Mar. Also negotiate the salary', 139, '2026-03-13 01:21:28', 1),
(25328, 29038, 60, 1, 0, NULL, 149, '2026-03-13 02:22:07', 1),
(25329, 28585, 18, 1, 0, NULL, 139, '2026-03-13 02:42:04', 1),
(25330, 29042, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25331, 28967, 18, 7, 0, 'Selected for Abdul team. Ready to Join on monday 15 mar. Please negotiate the salary', 152, '2026-03-13 05:37:01', 1),
(25332, 28981, 60, 1, 0, NULL, 18, '2026-03-13 05:37:18', 1),
(25333, 28967, 60, 1, 0, NULL, 18, '2026-03-13 05:38:01', 1),
(25334, 29044, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25335, 29046, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(25336, 29048, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(25337, 29050, 89, 7, 0, 'Avarage skill fresher.. will analysis 7 days training ', 104, '0000-00-00 00:00:00', 1),
(25338, 29051, 105, 7, 0, 'candidate communication and Performance is Good. Will check with him in the training period ', 104, '0000-00-00 00:00:00', 1),
(25339, 29050, 59, 3, 0, 'Communication Ok fresher need to train from scratch Joining Seems to be doubtful as her friend has been rejected if she joins need to check  in training and see', 89, '2026-03-14 03:24:59', 1),
(25340, 29029, 60, 1, 0, NULL, 164, '2026-03-14 03:55:09', 1),
(25341, 29051, 59, 3, 0, 'Communication Ok Fresher for our roles need to check in training and confirm', 105, '2026-03-16 10:53:45', 1),
(25342, 26128, 59, 3, 0, 'IT Profile Terms and conditions accepted React Profile for Monesh Apti/Progr/System/ cleared', 60, '0000-00-00 00:00:00', 1),
(25343, 29060, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25344, 29061, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25345, 29065, 139, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25346, 29068, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25347, 29047, 163, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25348, 29062, 147, 7, 0, 'she is ok in english and telugu good confident in sales need to discuss about salary', 162, '0000-00-00 00:00:00', 1),
(25349, 29063, 147, 7, 0, 'very active guy good in english and telugu he is fresher expected salary 22k we informed 20k is max ', 162, '0000-00-00 00:00:00', 1),
(25350, 29064, 147, 7, 0, 'she fresher only english and telugu done 3month calling in sales need discussed about salary', 162, '0000-00-00 00:00:00', 1),
(25351, 29066, 147, 7, 0, 'she is fresher have done 3month Internship in sales good confident need to speak about salary', 162, '0000-00-00 00:00:00', 1),
(25352, 29067, 147, 7, 0, 'she is fresher having done 3 months Internship  in sales with good communication very Energetic candidate need to discuss about salary ', 162, '0000-00-00 00:00:00', 1),
(25353, 29069, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25354, 29067, 59, 1, 0, NULL, 147, '2026-03-16 06:14:17', 1),
(25355, 29064, 59, 1, 0, NULL, 147, '2026-03-16 07:21:49', 1),
(25356, 29063, 59, 1, 0, NULL, 147, '2026-03-16 07:24:10', 1),
(25357, 29062, 59, 1, 0, NULL, 147, '2026-03-16 07:26:29', 1),
(25358, 29066, 59, 1, 0, NULL, 147, '2026-03-16 07:28:35', 1),
(25359, 29071, 74, 7, 0, 'she is ok with the profile completed mba finance ...and worked in meenakshi hospital as office admin in 1 and half year...with 11500 salary ....1 hr travel from home...she is ok with the profile and know about the process...will try expected 14k.....monday joining....father farmer....brother doing bE...kindly cross check about sales and target...', 154, '0000-00-00 00:00:00', 1),
(25360, 28275, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25361, 29071, 59, 1, 0, NULL, 74, '2026-03-17 01:21:08', 1),
(25362, 29087, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25363, 29086, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25364, 29095, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25365, 29098, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25366, 29126, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25367, 29124, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25368, 29112, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25369, 29111, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25370, 29070, 167, 7, 0, 'Good Communications and Knowledge on Sales, Having a Experience Of 1 Year . Expected Salary 20K  ', 162, '0000-00-00 00:00:00', 1),
(25371, 29125, 167, 7, 0, 'Good Communication and Sales Experience Of 6 Months in Policy Bazaar Expected salary 18k ', 159, '0000-00-00 00:00:00', 1),
(25372, 29127, 74, 7, 0, 'she is ok with the profile completed bcom , fresher,,,,karthik both friends...father carpenter mother cook,,, she is ready to work in sales environment and finace expected 15k....next month joining...kindly cross check...', 154, '0000-00-00 00:00:00', 1),
(25373, 29097, 74, 7, 0, 'she is ok with the profile completed mca ....1 year experience in wwd tech telecalling rotaional shift...and 6 month experience in data entry...both company will dicontinue the process so she releived...father farmer...native thiruvaiyaru..1 hr travel...expected 12 to 15k...kindly cross check next month joining', 154, '0000-00-00 00:00:00', 1),
(25374, 29129, 168, 7, 0, 'Candidate has been shortlisted having good communication skills fresher but have a knowledge of sales and convincing skills, father working as catering services mother housewife, single child, work required have a laptop nearby 4km from home to office travel by bus, expected salary 20k negotiated to 12 - 13k, currently doing part time job in stationary shop on evening, joining on monday kindly cross check and verify.', 154, '0000-00-00 00:00:00', 1),
(25375, 29127, 59, 3, 0, 'Communication Ok fresher for our roles need to check in training and confirm', 74, '2026-03-19 12:23:16', 1),
(25376, 29097, 59, 3, 0, 'Communication Ok fresher for our insurance sales need to check in training and see let us try', 74, '2026-03-19 12:30:37', 1),
(25377, 29144, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25378, 29129, 59, 3, 0, 'Communication Ok fersher for our insurance sales need to check in training only already worked in retail sales ', 168, '2026-03-19 12:41:14', 1),
(25379, 29092, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25380, 29141, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25381, 29154, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25382, 29094, 59, 3, 0, 'Intern 8-9K for 2 months then 15-16K  - Mutual funds he is open to learn can give a try', 154, '0000-00-00 00:00:00', 1),
(25383, 29155, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25384, 29070, 60, 1, 0, NULL, 167, '2026-03-20 10:47:59', 1),
(25385, 29125, 60, 1, 0, NULL, 167, '2026-03-20 10:54:58', 1),
(25386, 29162, 74, 5, 0, 'not fit', 159, '0000-00-00 00:00:00', 1),
(25387, 29090, 89, 7, 0, 'Alredy working 10 month from telecalling insurance filed.\nGood skill person.  Money needed person.  Good product knowledge. I suggest 17.5 k take home salary. ', 159, '0000-00-00 00:00:00', 1),
(25388, 29090, 59, 3, 0, 'Communication Ok have exp in sales calling same domain worked only for few months need to check in training and see', 89, '2026-03-20 12:07:36', 1),
(25389, 29163, 173, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25390, 29093, 156, 7, 0, 'candidate is ok, communication average, 1.3 years exp for Customer Service Executive please check sustainability and confirm the joining date.', 159, '0000-00-00 00:00:00', 1),
(25391, 29157, 74, 7, 0, 'she is ok with the profile expected 13 to 14k', 159, '0000-00-00 00:00:00', 1),
(25392, 29130, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25393, 29159, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25394, 29158, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25395, 29157, 59, 3, 0, 'communication Ok have a gap due to marriage and now divorced have a kid at the age of 7 open for insurance sales open to learn but sustainability not sure let us try', 74, '2026-03-20 04:13:23', 1),
(25396, 29089, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25397, 29169, 173, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25398, 29172, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25399, 29173, 167, 7, 0, 'Good Communications with confidence Skills , fresher Excpected 17k ', 162, '0000-00-00 00:00:00', 1),
(25400, 29174, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25401, 29173, 60, 1, 0, NULL, 167, '2026-03-21 04:25:07', 1),
(25402, 29175, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25403, 29184, 74, 5, 0, 'long gap not highly job need and not performing well ', 154, '0000-00-00 00:00:00', 1),
(25404, 29190, 168, 5, 0, 'Not sustain for Long period no proper communication skill expecting high salary', 154, '0000-00-00 00:00:00', 1),
(25405, 29194, 168, 5, 0, 'Not sustain for long term expecting high salary', 154, '0000-00-00 00:00:00', 1),
(25406, 29192, 168, 5, 0, 'not sustain for long term expecting high salary ', 154, '0000-00-00 00:00:00', 1),
(25407, 29191, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(25408, 29189, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25409, 29188, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(25410, 29187, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25411, 29177, 105, 7, 0, 'Candidate Communication and performance is good, Will check with him in the training period ', 159, '0000-00-00 00:00:00', 1),
(25412, 29171, 105, 7, 0, 'Candidate Communication and performance is little good, 5050 profile , little voice low will check with her in the training period ', 159, '0000-00-00 00:00:00', 1),
(25413, 29186, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25414, 29180, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25415, 29177, 59, 1, 0, NULL, 105, '2026-03-23 03:26:28', 1),
(25416, 29185, 149, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25417, 29171, 59, 1, 0, NULL, 105, '2026-03-23 03:27:23', 1),
(25418, 29156, 105, 5, 0, 'candidate communication and performance is not good.also his voice is low .sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(25419, 29196, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25420, 29093, 59, 1, 0, NULL, 156, '2026-03-24 10:12:46', 1),
(25421, 29209, 156, 7, 0, 'candidate is ok, communication average, 1 year exp for axis bank kindly check sustainability. and confirm the joining date.', 159, '0000-00-00 00:00:00', 1),
(25422, 29183, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25423, 29205, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25424, 29210, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25425, 29209, 59, 3, 0, 'Communication Ok have exp in calling but not in the same profile need to check in training  and see', 156, '2026-03-24 01:02:55', 1),
(25426, 29201, 89, 7, 0, 'Good skill. But fresher candidate.. will analysis 7 days training ', 159, '0000-00-00 00:00:00', 1),
(25427, 29201, 59, 3, 0, 'Fresher communication Ok sustainability doubts a lot recently married and not much necessity with the Job too  let us check in training and check', 89, '2026-03-24 04:50:59', 1),
(25428, 29214, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25429, 29219, 74, 5, 0, 'NOT FIT', 154, '0000-00-00 00:00:00', 1),
(25430, 29221, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25431, 29222, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25432, 29085, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25433, 29207, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25434, 29224, 30, 7, 3, 'selected for dm vasu team suggested ctc 17k joining april 6th', 162, '0000-00-00 00:00:00', 1),
(25435, 29217, 105, 5, 0, 'candidate communcation and performance is not good.also he is very slow and low voice .sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25436, 29218, 147, 7, 0, 'is  a civil Engineer now he is a fresher for sale field ,good  Communication  he said he will work for one year please Confirm  with him and need to discuss about salary ', 162, '0000-00-00 00:00:00', 1),
(25437, 29225, 174, 7, 0, 'Please proceed for 18,000/- salary', 60, '0000-00-00 00:00:00', 1),
(25438, 29225, 59, 3, 0, 'Communication Ok have exp in telecalling for Airtel 1yr no proper documents yet only relieving letter has been submitted not sure with the tenure he worked as there is no offer letter submitted let us check in training and confirm', 174, '2026-03-25 04:22:31', 1),
(25439, 29224, 60, 1, 0, NULL, 30, '2026-03-26 10:44:17', 1),
(25440, 29218, 59, 3, 0, 'Communication Ok have exp in other domain fresher for our roles need to check in training and confirm', 147, '2026-03-26 10:51:35', 1),
(25441, 29235, 149, 7, 0, 'candidate was ok with communication and have work experience in telesales and also speaks hindi and ok  for immediate joining', 154, '0000-00-00 00:00:00', 1),
(25442, 29239, 155, 5, 0, 'looking for Non - Voice', 154, '0000-00-00 00:00:00', 1),
(25443, 29236, 147, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25444, 29237, 172, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25445, 26976, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25446, 29259, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25447, 29261, 156, 7, 0, 'candidate is ok, communication average. 1.4 years exp for Bluechip corporate Telecalling work, kindly check sustainability and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(25448, 29267, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25449, 29254, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25450, 29266, 147, 7, 0, 'he is fresher knowing english and Telegu with good skills can offer basic salary', 162, '0000-00-00 00:00:00', 1),
(25451, 29263, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25452, 29268, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25453, 29265, 147, 7, 0, 'Having in Experience in sales  good Commutation   need to speak about salary ', 162, '0000-00-00 00:00:00', 1),
(25454, 29264, 147, 7, 0, 'he is fresher good confident can go with basic salary ', 162, '0000-00-00 00:00:00', 1),
(25455, 29265, 59, 1, 0, NULL, 147, '2026-03-27 03:23:39', 1),
(25456, 29261, 59, 3, 0, 'Communication Ok have exp in bluechip almost in life insurance process only can give a try andd check in training ', 156, '2026-03-27 03:28:32', 1),
(25457, 29266, 59, 1, 0, NULL, 147, '2026-03-27 03:28:47', 1),
(25458, 29264, 59, 1, 0, NULL, 147, '2026-03-27 03:30:43', 1),
(25459, 29271, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25460, 29272, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25461, 29253, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25462, 29270, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25463, 29269, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25464, 29274, 59, 3, 0, 'Communication Ok have exp in recruitment Creative hands need to check in training and see', 154, '0000-00-00 00:00:00', 1),
(25465, 29235, 60, 1, 0, NULL, 149, '2026-03-27 07:33:52', 1),
(25466, 29281, 155, 5, 0, 'did not perform well ', 154, '0000-00-00 00:00:00', 1),
(25467, 29280, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25468, 29277, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25469, 29282, 168, 7, 0, 'Having good communication skill, have a experience in bpo semi voice process for 8 months, nearby 3 km from home to office, father have textile shop mother housewife, no further commitment for marriage or higher studies, expected salary 13k have laptop, own vehicle, immediate joining.', 154, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(25470, 29282, 59, 3, 0, 'Communication Ok fresher for inrsurance sales need to check in training and confirm', 168, '2026-03-28 12:39:58', 1),
(25471, 29286, 167, 7, 0, 'good communication with good skills \n20k salary with having 8 months experience in life Insurance policy ', 162, '0000-00-00 00:00:00', 1),
(25472, 29285, 167, 5, 0, 'Rejected No Communication \nExpecting High Salary \nNo Sustainibility and intrested In IT Background', 162, '0000-00-00 00:00:00', 1),
(25473, 29288, 167, 7, 0, 'good communication and Knowledge \nSustainability Doubt But speak with candidate and filter it  ', 162, '0000-00-00 00:00:00', 1),
(25474, 29288, 60, 1, 0, NULL, 167, '2026-03-28 05:38:30', 1),
(25475, 29286, 60, 1, 0, NULL, 167, '2026-03-28 05:40:04', 1),
(25476, 29275, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25477, 29294, 164, 7, 0, 'cOMMUNICATION IS OK.CONFIRM THE SALARY  xxamp JOINING DATE ', 154, '0000-00-00 00:00:00', 1),
(25478, 29292, 164, 7, 0, 'CANDIDATE OK.COMMUNICATION IS GOOD. CONFIRM THE SALARY xxamp JOINING DATE', 159, '0000-00-00 00:00:00', 1),
(25479, 29295, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25480, 29293, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25481, 29300, 155, 5, 0, 'did not perform well in interview xxamp Complete IT profile, will not handle target xxamp pressure for sales', 159, '0000-00-00 00:00:00', 1),
(25482, 29284, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25483, 29299, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25484, 29292, 60, 1, 0, NULL, 164, '2026-03-30 05:28:01', 1),
(25485, 29294, 60, 1, 0, NULL, 164, '2026-03-30 05:28:56', 1),
(25486, 29298, 167, 7, 0, 'experience candidate in wipro kYC Process expecting 23k good knowledge in insurance and good communication skills', 162, '0000-00-00 00:00:00', 1),
(25487, 29291, 147, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25488, 29283, 18, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25489, 29309, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25490, 29250, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25491, 29314, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25492, 29311, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25493, 29317, 149, 7, 0, 'candidate communication was ok and not so confident ,in need of job and let try for a week .', 154, '0000-00-00 00:00:00', 1),
(25494, 29308, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25495, 29312, 167, 7, 0, 'Good Communications and basic knowledge in insurance ', 162, '0000-00-00 00:00:00', 1),
(25496, 29289, 156, 7, 0, 'candidate is ok, communication average. 1 year exp for star health insurance And 2 months exp for Galaxy health insurance pls check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(25497, 29331, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25498, 29289, 59, 1, 0, NULL, 156, '2026-04-01 12:16:43', 1),
(25499, 29324, 59, 3, 0, 'Communication Ok have exp in HR profile for 4yrs need to check in training and confirm for our roles', 154, '0000-00-00 00:00:00', 1),
(25500, 29332, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25501, 29322, 105, 7, 0, 'Candidate Communication and performance is good. Also she have 1 yrs experience in star . Will check with her in the training period ', 154, '0000-00-00 00:00:00', 1),
(25502, 29323, 105, 5, 0, 'Candidate not performed well in the interview. Also she is not spoke much more ', 154, '0000-00-00 00:00:00', 1),
(25503, 29325, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25504, 29333, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25505, 19394, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25506, 29341, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25507, 29342, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25508, 29322, 59, 1, 0, NULL, 105, '2026-04-01 04:36:57', 1),
(25509, 29317, 60, 1, 0, NULL, 149, '2026-04-02 10:21:45', 1),
(25510, 29365, 156, 7, 0, 'candidate is ok, communication average, 1 year exp for Health insurance company, kindly check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(25511, 29361, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25512, 29365, 59, 3, 0, 'Communication Ok have exp in same domain can give a try and check in our process worked in Vizza xxamp star Let us check', 156, '2026-04-02 02:22:59', 1),
(25513, 29354, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25514, 29360, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25515, 29364, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25516, 29304, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25517, 29358, 11, 7, 0, 'Communication Ok selected for my Team Gaurav sir Shortlisted', 154, '0000-00-00 00:00:00', 1),
(25518, 29374, 149, 7, 0, 'candidate was better in communication and have confidence and in need job and so we will try further.', 154, '0000-00-00 00:00:00', 1),
(25519, 29377, 149, 5, 0, 'candidate communication was not so good and she also lacking confidence so rejected\n', 154, '0000-00-00 00:00:00', 1),
(25520, 29375, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25521, 29383, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25522, 29359, 74, 7, 0, 'she is ok with the profile currently doing mba final sem she is in leave exam only pending ...expected exam permission...father catering monthly 35k ....in rental house .....brother studying final year....next street house have bike....have good exposure we try expected 14 to 15k...next week joining,,,kindly cross check', 154, '0000-00-00 00:00:00', 1),
(25523, 29318, 168, 5, 0, 'Not performed well lag in communication', 154, '0000-00-00 00:00:00', 1),
(25524, 29386, 57, 7, 0, 'Candidate is ok, communication Good, 1.5 yrs tele sales exp, pls confirm the salary and joining date,', 154, '0000-00-00 00:00:00', 1),
(25525, 29387, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25526, 29380, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25527, 29386, 59, 1, 0, NULL, 57, '2026-04-06 04:02:10', 1),
(25528, 29376, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25529, 29374, 60, 1, 0, NULL, 149, '2026-04-06 05:33:51', 1),
(25530, 29390, 147, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25531, 29358, 59, 3, 0, 'Communication Ok have exp and a gap in her career  same calling exp but not in Insurance Can give a try and check in training', 11, '2026-04-07 09:46:42', 1),
(25532, 29312, 60, 1, 0, NULL, 167, '2026-04-07 10:21:40', 1),
(25533, 29298, 60, 1, 0, NULL, 167, '2026-04-07 10:23:35', 1),
(25534, 29359, 59, 3, 0, 'Communication Ok fresher will take leave for exams inbetween can give a try and check', 74, '2026-04-07 10:56:25', 1),
(25535, 29393, 147, 5, 0, 'Not interested in sales', 162, '0000-00-00 00:00:00', 1),
(25536, 29394, 152, 7, 0, 'Selected for my team, ', 154, '0000-00-00 00:00:00', 1),
(25537, 29397, 147, 7, 0, 'he is having 6 month Experience in bajaj  personal loan good  communication need to discuss regarding salary  ', 162, '0000-00-00 00:00:00', 1),
(25538, 29384, 164, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25539, 29398, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25540, 29402, 105, 5, 0, 'candidate communication and perfoirmance is little ok.but she is sensitive and have 4 year kids .sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25541, 29397, 59, 3, 0, 'Communication ok fresher for our roles career gap need to check in training and confirm let us check', 147, '2026-04-08 12:46:22', 1),
(25542, 29401, 174, 4, 4, 'Good kannada and english communication  good skill fresher procced with 18,000 salary cTC', 162, '0000-00-00 00:00:00', 1),
(25543, 29412, 149, 7, 0, 'Candidate was better at communication and also know Hindi and in requirement of job and will join by monday', 154, '0000-00-00 00:00:00', 1),
(25544, 29411, 149, 7, 0, 'Communication was good and in need of job but future goal was iT and location not sure letxquots try for 7days training period ', 154, '0000-00-00 00:00:00', 1),
(25545, 29401, 60, 1, 0, NULL, 174, '2026-04-08 04:00:52', 1),
(25546, 29420, 168, 5, 0, 'High profile not adapt to team , expected salary high', 159, '0000-00-00 00:00:00', 1),
(25547, 29429, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25548, 29432, 11, 4, 0, 'met by gaurav sir and selected for E sales ', 154, '0000-00-00 00:00:00', 1),
(25549, 29430, 147, 4, 0, '3 Experience in Bop  with good in english ,kannada communication and active guy regarding salary need to speak 22k 23k ', 162, '0000-00-00 00:00:00', 1),
(25550, 29414, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25551, 29423, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25552, 29433, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25553, 29394, 59, 3, 0, 'Communication ok fresher for our insurance sales have 3yrs exp in customer handling and entire branch handling  seems to be ok in communication let us check in training and confirm', 152, '2026-04-10 10:30:33', 1),
(25554, 29445, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25555, 29438, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25556, 29439, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25557, 29411, 59, 3, 0, 'Communication Ok fresher for our insurance sales need to check in training and confirm', 149, '2026-04-10 02:51:38', 1),
(25558, 29412, 59, 3, 0, 'Communication Ok fresher for our insurance sales need to check in training and confirm', 149, '2026-04-10 02:53:08', 1),
(25559, 29458, 140, 4, 0, 'Selected', 154, '0000-00-00 00:00:00', 1),
(25560, 29455, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25561, 29459, 11, 7, 0, 'she is ok for E sales ', 154, '0000-00-00 00:00:00', 1),
(25562, 29456, 105, 5, 0, 'candidate comunication and performance is little ok.5050 profile ,but expected higher package .sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25563, 29430, 59, 3, 0, 'Communication Ok have exp but not exactly in uinsurance sales need to check in training and confirm', 147, '2026-04-11 10:20:09', 1),
(25564, 29487, 74, 5, 0, 'not fit\n', 159, '0000-00-00 00:00:00', 1),
(25565, 29474, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25566, 29485, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25567, 29475, 167, 5, 0, 'No Communications And Expecting high salary', 162, '0000-00-00 00:00:00', 1),
(25568, 29479, 167, 7, 0, 'Good Communications and good skills having In health Insurance \n20-22K Salary ', 162, '0000-00-00 00:00:00', 1),
(25569, 29494, 105, 7, 0, 'Candidate communication and performance is good also she have 4 years experience in telecaling domain will check with in the training period little her salary expectation is used kindly check your End', 154, '0000-00-00 00:00:00', 1),
(25570, 29486, 105, 7, 0, 'Candidate communication and performance is good also she is experienced in star Health Insurance product knowledge is also little okay will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(25571, 29481, 164, 5, 0, 'Communication Not Well', 154, '0000-00-00 00:00:00', 1),
(25572, 29493, 149, 7, 0, 'candidate was already have sales experience and in need for job and already worked in our company  and we shall provide 16k - 17k as salary and she will join by 26th of this month ', 154, '0000-00-00 00:00:00', 1),
(25573, 29493, 59, 1, 0, NULL, 149, '2026-04-13 05:28:16', 1),
(25574, 29486, 59, 3, 0, 'Need to check in training only', 105, '2026-04-13 05:53:36', 1),
(25575, 29494, 59, 1, 0, NULL, 105, '2026-04-13 05:54:51', 1),
(25576, 29503, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25577, 29498, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25578, 29507, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25579, 29471, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25580, 29508, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25581, 29510, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25582, 14842, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25583, 29516, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25584, 29522, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25585, 29514, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25586, 29479, 60, 1, 0, NULL, 167, '2026-04-15 06:07:46', 1),
(25587, 29468, 147, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25588, 29525, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25589, 29528, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25590, 29504, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25591, 29538, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25592, 29542, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25593, 29546, 57, 5, 0, 'candidate is not ok for sales, communication not good, sustainability issues', 154, '0000-00-00 00:00:00', 1),
(25594, 29545, 57, 5, 0, 'candidate is not ok for sales, communication not good, sustainability issues', 154, '0000-00-00 00:00:00', 1),
(25595, 29544, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25596, 29458, 59, 3, 0, 'Communication Ok have exp in matrmimony for fe months given the same CTC need to check in training and confirm', 140, '2026-04-17 09:41:24', 1),
(25597, 29459, 60, 1, 0, NULL, 11, '2026-04-17 10:29:15', 1),
(25598, 29556, 74, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25599, 29557, 74, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25600, 29583, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25601, 29584, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25602, 29579, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25603, 29533, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25604, 29558, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25605, 29560, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25606, 29566, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25607, 29605, 173, 1, 0, NULL, 172, '0000-00-00 00:00:00', 1),
(25608, 29563, 30, 7, 3, 'ctc suggested 25k max if k we can hire or else drop for pc', 172, '0000-00-00 00:00:00', 1),
(25609, 29604, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25610, 29603, 30, 7, 4, 'selected for pc suggested ctc 23k', 172, '0000-00-00 00:00:00', 1),
(25611, 29582, 105, 7, 0, 'candidate communication and performance is. little ok.5050 profile will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(25612, 29569, 105, 7, 0, 'candidate communication and performance is. little ok.5050 profile will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(25613, 29610, 167, 7, 0, 'Good Communication Skills Fresher ', 172, '0000-00-00 00:00:00', 1),
(25614, 29569, 59, 1, 0, NULL, 105, '2026-04-18 02:54:55', 1),
(25615, 29582, 60, 1, 0, NULL, 105, '2026-04-18 02:55:17', 1),
(25616, 29567, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25617, 29591, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25618, 29594, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25619, 29597, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25620, 29599, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25621, 29607, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25622, 29612, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25623, 29601, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25624, 29596, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25625, 29432, 59, 3, 0, 'need to review in training', 11, '2026-04-20 09:49:27', 1),
(25626, 29432, 60, 1, 0, NULL, 59, '2026-04-20 09:56:32', 1),
(25627, 29623, 167, 7, 0, 'Good Communication with Good Sales Skills', 172, '0000-00-00 00:00:00', 1),
(25628, 29632, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25629, 29620, 105, 7, 0, 'Candidate Communication little ok 5050 profile will Check with her in the training period ', 154, '0000-00-00 00:00:00', 1),
(25630, 29563, 60, 1, 0, NULL, 30, '2026-04-20 05:22:56', 1),
(25631, 29603, 60, 1, 0, NULL, 30, '2026-04-20 05:23:41', 1),
(25632, 29517, 105, 7, 0, 'Candidate Communication only little ok 5050 profile will check with her in the training period ', 154, '0000-00-00 00:00:00', 1),
(25633, 29642, 30, 7, 3, 'selected for priya team dm suggested ctc 18k may month 4th joining', 172, '0000-00-00 00:00:00', 1),
(25634, 29664, 139, 7, 0, 'Selected for RM role\nsriram selected this candidate\nhaving good communication skill\n4 yr exp in Ar calling \nwilling to work in sales\npackage have to negociate ', 154, '0000-00-00 00:00:00', 1),
(25635, 29650, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25636, 29636, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25637, 29652, 155, 5, 0, 'not so active xxamp have exp in SEO analyst for 1.2 years, will not handle targets and pressure and he may go to his domain itself if he gets.', 154, '0000-00-00 00:00:00', 1),
(25638, 29615, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25639, 29616, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25640, 29638, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25641, 29640, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25642, 29641, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25643, 29649, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25644, 29620, 59, 1, 0, NULL, 105, '2026-04-21 05:38:56', 1),
(25645, 29517, 59, 1, 0, NULL, 105, '2026-04-21 05:41:24', 1),
(25646, 29623, 30, 7, 4, 'Selected for pc immediate joining suggested ctc 27 to 28k ', 167, '2026-04-22 10:15:54', 1),
(25647, 29610, 60, 1, 0, NULL, 167, '2026-04-22 10:16:40', 1),
(25648, 29623, 60, 1, 0, NULL, 30, '2026-04-22 10:58:08', 1),
(25649, 29642, 60, 1, 0, NULL, 30, '2026-04-22 10:59:24', 1),
(25650, 29675, 168, 5, 0, 'Not Performed well have high expectation', 154, '0000-00-00 00:00:00', 1),
(25651, 29680, 156, 7, 0, 'candidate is ok, communication average. 7 months exp for vizza insurance. kindly check sustainability, and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(25652, 29677, 156, 7, 0, 'candidate is ok, communication good. 11 monthxquots exp for vizza insurance. kindly check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(25653, 29661, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25654, 29678, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25655, 29682, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25656, 29670, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25657, 29687, 74, 7, 0, 'she is ok with the profile completed bca and doing 3 month type writing and seeking job and joined in reimens solution loan collection 6 months experience....have no growth in the process so she ready to releived,,,currently in notice period...last salary 9.5k only...father passed..sister worked in manufacturing company 14k salary...poor family brother 7th standard....mother doing farming.....,.expected 12 to 14k we can try......have sustainability...pervious telecalling basic experience...kindly cross check joining date...', 154, '0000-00-00 00:00:00', 1),
(25658, 29686, 149, 5, 0, 'candidate was from tiruvallur and he was looking for higher ctc for a fresher and so he was also having other options ', 154, '0000-00-00 00:00:00', 1),
(25659, 29696, 164, 7, 0, 'CANDIDATE IS OK.COMMUNICATION IS GOOD.CONFIRM THE SALARY xxamp JOINING DATE', 154, '0000-00-00 00:00:00', 1),
(25660, 29687, 59, 1, 0, NULL, 74, '2026-04-24 01:35:16', 1),
(25661, 29696, 60, 1, 0, NULL, 164, '2026-04-24 02:18:12', 1),
(25662, 29698, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25663, 29697, 156, 7, 0, 'candidate is ok, communication good, already 1 year 3 months exp for finance and services pvt ltd. kindly check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(25664, 29677, 59, 3, 0, 'Communication Ok have exp in calling and worked in vizza for few months can give a try and check', 156, '2026-04-24 03:09:39', 1),
(25665, 29680, 59, 3, 0, 'Communication Ok have 9 monhts exp in vizza can give a try and check in training', 156, '2026-04-24 03:12:05', 1),
(25666, 29697, 59, 3, 0, 'Communication Ok have exp in different process fresher for our insurance sales can give a try and check in training', 156, '2026-04-24 03:15:04', 1),
(25667, 29606, 174, 4, 0, 'Have good communication skill and offred 18k salary', 172, '0000-00-00 00:00:00', 1),
(25668, 29648, 174, 4, 0, 'have good communication skill offred 20k', 172, '0000-00-00 00:00:00', 1),
(25669, 29606, 60, 1, 0, NULL, 174, '2026-04-24 05:21:17', 1),
(25670, 29648, 60, 1, 0, NULL, 174, '2026-04-24 05:31:55', 1),
(25671, 29690, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25672, 29694, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25673, 29702, 168, 7, 0, 'Shortlisted have a good communication and convincing skills, bold and adaptable for team, have a laptop, expected salary 13k, father farmer, mother housewife, brother studying, have a 1 year experience in Orienshift private limited, and 6 months experience in reimen solutions, currently on notice period will join by may 15th, for next 3 years no marriage commitment. kindly cross check and verify', 154, '0000-00-00 00:00:00', 1),
(25674, 29717, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25675, 29702, 59, 1, 0, NULL, 168, '2026-04-25 02:33:36', 1),
(25676, 29715, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25677, 29720, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25678, 29704, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25679, 29664, 60, 1, 0, NULL, 139, '2026-04-25 04:29:56', 1),
(25680, 29727, 105, 5, 0, 'Candidate communication and permission is not good . Also she mentioned experience but she does not have product knowledge properly. Sustainable is doubt ', 154, '0000-00-00 00:00:00', 1),
(25681, 29732, 57, 5, 0, 'candidate is not ok for sales, communication not good, sustainability issues, salary expectation high', 154, '0000-00-00 00:00:00', 1),
(25682, 29726, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25683, 29731, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25684, 29734, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25685, 29733, 105, 5, 0, 'candidate communication and performance is not good.also her statement is wrong.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25686, 29723, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25687, 27319, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25688, 29749, 29, 7, 3, 'Sivakumar Team - RM', 154, '0000-00-00 00:00:00', 1),
(25689, 29718, 74, 7, 0, 'she is ok with the profile completed bcom in 2025...in final year she married relative and both worked in chennai....husband worked in ambattur in steel company...she is worked in yella insurance broking company....6 to 8 months experience and releived due to husband shift to dubai....husband 1L salary....father and motherinlaw both in thanjavur near...thenangudi......expected salary 13 to 15k...have insurance experience ...currently not having baby plan....kindly cross check sustainability', 154, '0000-00-00 00:00:00', 1),
(25690, 29718, 59, 1, 0, NULL, 74, '2026-04-28 01:19:44', 1),
(25691, 29745, 105, 5, 0, 'candidate performancel ittle ok.but his communication slightly correlation Also he did not put releived his previous company and he told he will join on after 45 days.he is aking offer letter immediatly , joining Is Doubt', 154, '0000-00-00 00:00:00', 1),
(25692, 29754, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25693, 29753, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25694, 29742, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25695, 29740, 105, 5, 0, 'candidate communication and performance is ok.but he not will appointment.so he said not interested....', 154, '0000-00-00 00:00:00', 1),
(25696, 29760, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25697, 29598, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25698, 29736, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25699, 29758, 105, 5, 0, 'Candidate Communication and performance is Not Good, she have 4 year kid , sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25700, 29573, 59, 3, 0, 'IT Profile Fresher Over 5months plus 31 months then 4months notice agrred with the TxxampC let us check', 60, '0000-00-00 00:00:00', 1),
(25701, 29735, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25702, 29749, 59, 3, 0, 'Communication Ok internal team reference need to check in training and confirm', 29, '2026-04-29 03:25:59', 1),
(25703, 29768, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25704, 29769, 59, 3, 0, 'Old employee rejoining based on manager confirmation', 60, '0000-00-00 00:00:00', 1),
(25705, 29771, 29, 7, 3, 'sivakumar', 154, '0000-00-00 00:00:00', 1),
(25706, 29777, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25707, 29776, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25708, 29790, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25709, 29796, 11, 7, 0, 'selected for e sales', 154, '0000-00-00 00:00:00', 1),
(25710, 29803, 105, 7, 0, 'Candidate Communication and performance is Good. She have Little experience ,Will Check With her in the training period ', 159, '0000-00-00 00:00:00', 1),
(25711, 29803, 59, 1, 0, NULL, 105, '2026-05-04 12:40:23', 1),
(25712, 29814, 57, 5, 0, 'candidate is not suitable sales profile, communication not good, salary expectation high, reject the profile..', 154, '0000-00-00 00:00:00', 1),
(25713, 29806, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25714, 29824, 147, 1, 0, NULL, 172, '0000-00-00 00:00:00', 1),
(25715, 29810, 167, 5, 0, 'Rejected \nNo Communications,\nSustainability Doubt ', 172, '0000-00-00 00:00:00', 1),
(25716, 29816, 57, 5, 0, 'Candiadate is ok, but salary exepectation very high, even we r picth life pc models also but he canxquott accept, looking only health domain, team referrence , reject the profile', 154, '0000-00-00 00:00:00', 1),
(25717, 29804, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25718, 29809, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25719, 29409, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25720, 29813, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25721, 29833, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(25722, 29834, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25723, 29837, 147, 7, 0, 'She is good in Commutation skill bold and confident Employee having family Commitment need to speak about salary   once', 172, '0000-00-00 00:00:00', 1),
(25724, 29839, 105, 7, 0, 'candidate communication and performance is ok.2yrs experiance In FS Insurance .expected 23k ,but 20k CTC is Only Ok .will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(25725, 29836, 18, 7, 3, 'Selected for Nisha Team. Need to Check her exact and give 5%  to 10% hike but can restrict at 4.5L post negotiation as we pay high incentives. Immedeate Joiner', 154, '0000-00-00 00:00:00', 1),
(25726, 29835, 105, 7, 0, 'candidate communication and performance is ok.have some experiance .expected 18k as ctc .will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(25727, 29857, 105, 7, 0, 'candidate communication and performance is ok.have some 9 month experiance in loan preocess Little voice is low 5050 .will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(25728, 29835, 59, 3, 0, 'Communication Ok have part time retail sales exp fresher for telecalling can give a try and check in training', 105, '2026-05-05 03:54:35', 1),
(25729, 29839, 59, 3, 0, 'communcation ok fresher for our roles  need to check in training and confirm', 105, '2026-05-05 03:56:57', 1),
(25730, 29857, 59, 3, 0, 'Communication Ok fresher for telecalling insurance Need to check in training and soncirm', 105, '2026-05-05 04:00:20', 1),
(25731, 29836, 60, 1, 0, NULL, 18, '2026-05-05 04:26:36', 1),
(25732, 29845, 89, 7, 0, 'Fresher candidate. Avarage skill but will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(25733, 29859, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25734, 29858, 155, 2, 0, 'candidate communication is average, explained the roles as he need time to discuss with parents. So if he comes for the further round let us try and see', 154, '0000-00-00 00:00:00', 1),
(25735, 29838, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25736, 29771, 59, 3, 0, 'Communication Ok have exp in india mart fresher for our insurance sales need to check in training and confirm', 29, '2026-05-05 06:02:50', 1),
(25737, 29844, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25738, 29850, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25739, 29843, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25740, 29840, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25741, 29841, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25742, 29846, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25743, 29852, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25744, 29851, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25745, 29845, 59, 3, 0, 'Communication Average 5050 sustainability doubts a lot need to check in training only\n', 89, '2026-05-06 10:02:56', 1),
(25746, 29820, 57, 7, 0, 'Candidate is ok, communication good, 2yrs exp, please confirm the joining date xxamp Salary', 154, '0000-00-00 00:00:00', 1),
(25747, 29820, 59, 1, 0, NULL, 57, '2026-05-06 12:35:04', 1),
(25748, 29872, 105, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25749, 29871, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25750, 29875, 105, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25751, 29876, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25752, 29817, 176, 7, 0, 'candidate select ok with voice ', 154, '0000-00-00 00:00:00', 1),
(25753, 29868, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25754, 29874, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25755, 29877, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25756, 29869, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25757, 29867, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25758, 29865, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25759, 29900, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25760, 29884, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25761, 29637, 89, 7, 0, 'good skill. already experience night shift health care. she has health peoblem . so completely check and then join', 154, '0000-00-00 00:00:00', 1),
(25762, 29885, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25763, 29883, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25764, 29888, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25765, 29897, 176, 7, 0, 'candidate select already experience in credit card sale ', 154, '0000-00-00 00:00:00', 1),
(25766, 29902, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25767, 29899, 137, 7, 0, 'candidate communication skill and vocie good , she already one year work with ice cream shop for sales work but some personal reason to quit the job , she interest in tele calling work so try for 7 days training period , exp salary is 16 to 17k .', 154, '0000-00-00 00:00:00', 1),
(25768, 29908, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25769, 29907, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25770, 29894, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25771, 29903, 57, 7, 0, 'Candidate is ok, 50/50 Profile , just try 7days training period, confirm the joining date xxamp Salary, Arulmani team', 159, '0000-00-00 00:00:00', 1),
(25772, 29893, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25773, 29898, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25774, 29637, 59, 3, 0, 'Communication ok fresher for our insurance sales can give a try and check in training', 89, '2026-05-07 05:08:55', 1),
(25775, 29903, 59, 3, 0, 'Communication ok fresher for our insurance sales need to check in training ', 57, '2026-05-07 06:40:29', 1),
(25776, 29837, 60, 1, 0, NULL, 147, '2026-05-07 06:52:45', 1),
(25777, 29759, 59, 3, 0, 'Open with term for Sathish IT 5 months plus 3 yrs only Document no cheque\n', 60, '0000-00-00 00:00:00', 1),
(25778, 29922, 89, 7, 0, 'Selected..  Syed attended this interview.  Avarage skill but candidate joing expect jun . And Letxquots try this candidate.  This syed feedback. Will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(25779, 29926, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25780, 29921, 149, 7, 0, 'candidate was better at communication and active and job needed currently also ok for immediate joining  .', 154, '0000-00-00 00:00:00', 1),
(25781, 29923, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25782, 29912, 137, 7, 0, 'candidate communication skill and voice is ok , money need person , and past exp is not related to sales , but interested in sales , so try for 7 days training period, past salary is 16 k so he need 17k salary , this candidate is dhanush team', 154, '0000-00-00 00:00:00', 1),
(25783, 29916, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25784, 7745, 137, 5, 0, 'SALERY EXP IS VERY HIGH SO NOT FIT FOR MY TEAM', 154, '0000-00-00 00:00:00', 1),
(25785, 29890, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25786, 29914, 164, 7, 0, 'CANDIDATE IS OK COMMUNICATION IS GOOD .KINDLY CONFIRM THE SALARY AND JOINING DATE \n', 154, '0000-00-00 00:00:00', 1),
(25787, 29915, 57, 7, 0, 'Candidate is ok, fresher pls check sustainability. pls confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(25788, 29924, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25789, 29928, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25790, 29927, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25791, 29913, 149, 7, 0, 'candidate was ok with communication and also have some experience regarding vice process so we try for initial 7days ', 154, '0000-00-00 00:00:00', 1),
(25792, 29918, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25793, 29878, 164, 7, 0, 'CANDIDATE OK.COMMUNICATION OK.kINDLY CONFIRM THE SALARY AND JOINING DATE ', 154, '0000-00-00 00:00:00', 1),
(25794, 29912, 59, 1, 0, NULL, 137, '2026-05-08 05:20:38', 1),
(25795, 29899, 59, 1, 0, NULL, 137, '2026-05-08 05:23:47', 1),
(25796, 28684, 137, 5, 0, '.', 137, '2026-05-08 05:24:31', 1),
(25797, 29913, 59, 1, 0, NULL, 149, '2026-05-08 07:05:33', 1),
(25798, 29833, 59, 1, 0, NULL, 156, '2026-05-08 07:07:02', 1),
(25799, 29922, 59, 1, 0, NULL, 89, '2026-05-08 07:09:42', 1),
(25800, 29921, 59, 3, 0, 'Communication Ok fresher for our insurance sales need to check in training ', 149, '2026-05-08 07:10:28', 1),
(25801, 29878, 60, 1, 0, NULL, 164, '2026-05-08 07:11:25', 1),
(25802, 29914, 60, 1, 0, NULL, 164, '2026-05-08 07:12:07', 1),
(25803, 29915, 59, 1, 0, NULL, 57, '2026-05-08 07:41:22', 1),
(25804, 29817, 59, 3, 0, 'Communication Ok have exp in teaching profile can give a try and check in training', 176, '2026-05-09 12:18:08', 1),
(25805, 29897, 59, 3, 0, 'Communication Ok fresher for insurance sales can give a try and  check in training', 176, '2026-05-09 12:22:37', 1),
(25806, 29939, 149, 7, 0, 'candidate was ok with communication and in need of job and also ok for immediate joining and lets try for 7 days training', 154, '0000-00-00 00:00:00', 1),
(25807, 29937, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25808, 29938, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25809, 29940, 155, 5, 0, 'his voice pronouncation is not proper so will not suit for our roles.', 154, '0000-00-00 00:00:00', 1),
(25810, 29941, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25811, 29942, 176, 5, 0, 'rejected ', 154, '0000-00-00 00:00:00', 1),
(25812, 29939, 59, 3, 0, 'Communication Ok fresher for insurance sales calling can give a try and check in training', 149, '2026-05-09 03:12:03', 1),
(25813, 29943, 164, 7, 0, 'CANDIDATE OK.COMMUNICATION IS GOOD.kINDLY CONFIRM THE SALARY AND JOINING DATE', 154, '0000-00-00 00:00:00', 1),
(25814, 29943, 60, 1, 0, NULL, 164, '2026-05-09 03:53:19', 1),
(25815, 29796, 60, 1, 0, NULL, 11, '2026-05-09 05:40:31', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_blood_group`
--

CREATE TABLE `cw_blood_group` (
  `prime_blood_group_id` int NOT NULL,
  `blood_group` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_blood_group`
--

INSERT INTO `cw_blood_group` (`prime_blood_group_id`, `blood_group`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'A+', 1, '2020-02-06 10:42:13', 1, '2023-10-26 03:44:11', 0, NULL, 1),
(2, 'A-', 1, '2020-02-06 10:42:18', 0, NULL, 0, NULL, 1),
(3, 'B+', 1, '2020-02-06 10:42:28', 0, NULL, 0, NULL, 1),
(4, 'B-', 1, '2020-02-06 10:42:32', 0, NULL, 0, NULL, 1),
(5, 'AB+', 1, '2020-02-06 10:42:48', 0, NULL, 0, NULL, 1),
(6, 'AB-', 1, '2020-02-06 10:42:54', 0, NULL, 0, NULL, 1),
(7, 'O+', 1, '2020-02-06 10:43:02', 0, NULL, 0, NULL, 1),
(8, 'O-', 1, '2020-02-06 10:43:06', 0, NULL, 0, NULL, 1),
(9, 'Nil', 4, '2020-02-24 07:37:07', 1, '2020-02-25 08:47:37', 0, NULL, 1),
(10, 'A1+', 1, '2020-02-25 08:47:46', 0, NULL, 0, NULL, 1),
(11, 'A1B+', 1, '2020-02-25 08:47:55', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_branch`
--

CREATE TABLE `cw_branch` (
  `prime_branch_id` int NOT NULL,
  `branch` varchar(100) DEFAULT '',
  `location` varchar(100) DEFAULT '0',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_branch`
--

INSERT INTO `cw_branch` (`prime_branch_id`, `branch`, `location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'T Nagar', '1', 1, '2020-09-12 10:58:23', 1, '2020-12-15 01:38:29', 0, NULL, 1),
(2, 'Madiwala', '2', 1, '2020-10-06 04:26:01', 1, '2020-12-15 01:38:33', 0, NULL, 1),
(3, 'Arumbakkam', '1', 1, '2020-10-06 04:26:14', 1, '2020-12-15 01:38:38', 0, NULL, 1),
(4, 'Jubilee Hills', '3', 60, '2021-05-06 09:45:53', 0, NULL, 0, NULL, 1),
(5, 'Thanjavur', '4', 60, '2021-05-20 01:53:46', 0, NULL, 0, NULL, 1),
(6, 'Tiruvallur', '4', 60, '2021-05-20 02:04:37', 0, NULL, 0, NULL, 1),
(7, 'Erode', '4', 60, '2022-03-23 11:13:04', 0, NULL, 0, NULL, 1),
(8, 'Spencer Plaza', '1', 60, '2023-01-24 11:25:08', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_candidate_status`
--

CREATE TABLE `cw_candidate_status` (
  `candidate_status_id` int NOT NULL,
  `candidate_status` varchar(100) DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_candidate_status`
--

INSERT INTO `cw_candidate_status` (`candidate_status_id`, `candidate_status`, `trans_status`) VALUES
(1, 'Assigned', 1),
(2, 'Hold', 1),
(3, 'Selected', 1),
(4, 'Selected For Next Round', 1),
(5, 'Rejected', 1),
(6, 'Yet to Assign', 1),
(7, 'Shortlisted', 1),
(8, 'Not Attended', 1),
(9, 'Dep. Change', 1),
(10, 'Reached Office', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_candidate_tracker`
--

CREATE TABLE `cw_candidate_tracker` (
  `prime_candidate_tracker_id` int NOT NULL,
  `candidate_name` varchar(100) DEFAULT '',
  `post_applied_for` varchar(100) DEFAULT '0',
  `mobile_number` varchar(10) DEFAULT NULL,
  `alternate_number` varchar(10) DEFAULT NULL,
  `email_id` varchar(100) DEFAULT NULL,
  `date_of_birth` date DEFAULT NULL,
  `age` int DEFAULT '0',
  `applied_by` varchar(100) DEFAULT '0',
  `marital_status` varchar(100) DEFAULT '0',
  `father_or_husband_name` varchar(100) DEFAULT '',
  `occupation` varchar(50) DEFAULT '',
  `income` decimal(15,2) DEFAULT '0.00',
  `no_of_siblings` int DEFAULT '0',
  `current_salary` decimal(15,2) DEFAULT '0.00',
  `expected_salary` decimal(15,2) DEFAULT '0.00',
  `permanent_location` varchar(50) DEFAULT '',
  `current_location` varchar(50) DEFAULT '',
  `candidate_code` varchar(50) DEFAULT '',
  `consultancy` varchar(100) DEFAULT '0',
  `employee_type` varchar(100) DEFAULT '0',
  `sts_resume` text,
  `interview_date` datetime DEFAULT NULL,
  `interview_type` varchar(100) DEFAULT '0',
  `date_of_available` date DEFAULT NULL,
  `notice_period` int DEFAULT '0',
  `employee_code` varchar(50) DEFAULT '',
  `candidate_status` varchar(100) DEFAULT '6',
  `interviewer` varchar(100) DEFAULT '0',
  `date_of_joining` date DEFAULT NULL,
  `salary_commited` decimal(15,2) DEFAULT '0.00',
  `interview_time` varchar(50) DEFAULT '',
  `selected_status` varchar(100) DEFAULT '0',
  `abs_or_ter_date` date DEFAULT NULL,
  `bike` varchar(100) DEFAULT '1',
  `interviewer_remarks` text,
  `department` varchar(100) DEFAULT '0',
  `dob_exist` varchar(100) DEFAULT '2',
  `company` varchar(100) DEFAULT '0',
  `company_location` varchar(100) DEFAULT '0',
  `company_branch` varchar(100) DEFAULT '0',
  `resend_mail` varchar(100) DEFAULT '0',
  `inc` varchar(100) DEFAULT '1',
  `ncd` date DEFAULT NULL,
  `interview_slot` varchar(100) DEFAULT '0',
  `channel_name` varchar(100) DEFAULT '0',
  `hr_remark` text,
  `recruiter_remark` text,
  `recruiter` varchar(100) DEFAULT '0',
  `enroll_reason` varchar(100) DEFAULT '0',
  `level_1` varchar(100) DEFAULT '0',
  `level_2` varchar(100) DEFAULT '0',
  `exp_doj` date DEFAULT NULL,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_candidate_tracker`
--

INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'roohe banu s', '4', '9384704932', '8124991474', 'roohebanu@gmail.com', '2000-09-26', 19, '2', '2', 'late shahul hameed', 'nil', 30000.00, 1, 11900.00, 13000.00, 'perambur venus', 'Perambur Venus', '2009030001', '2', '2', 'upload_files/candidate_tracker/29340796694_roohebanu.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '11', NULL, 0.00, '12:05 PM', '', '1970-01-01', '2', 'will not sustain', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:40:48', 50, '2020-09-10 02:35:46', 0, NULL, 1),
(2, '', '0', '7358021287', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:42:14', 0, NULL, 0, NULL, 1),
(3, 'V.s.roshini', '4', '9566115557', '7010199159', 'roshinivs200020@gmail.com', '2000-03-20', 20, '2', '2', 'R.v.balasubramaniam', 'Advocate', 410000.00, 1, 0.00, 10000.00, 'No 10 kannadasan st, Ambal nagar, chennai 600089', 'Chennai, valaswawakkam', '2009030003', '2', '1', 'upload_files/candidate_tracker/72432275517_Resume.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '10:48 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:42:48', 50, '2020-09-22 12:09:01', 0, NULL, 1),
(4, 'Kamali', '4', '7338792328', '7358684466', 'kamalij19@gmail.com', '2005-09-03', 21, '2', '2', 'M jagadeesan', 'Auto driver', 20000.00, 1, 12000.00, 13000.00, 'manali new town', 'Chennai', '2009030004', '2', '2', 'upload_files/candidate_tracker/54990234462_1591085905270Resume_kamali new.docx', NULL, NULL, '2020-09-03', 0, '', '5', '11', '1970-01-01', 0.00, '10:50 AM', '', '1970-01-01', '2', 'not suitable for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:42:55', 50, '2020-09-22 12:09:13', 0, NULL, 1),
(5, 'Asha A', '6', '7904752902', '8939382193', 'asharethi2410@gmail.com', '2005-09-03', 23, '1', '2', 'Father', 'Farmer', 4000.00, 2, 15000.00, 17000.00, 'Chengalpattu', 'Velachery', '2009030005', '', '2', 'upload_files/candidate_tracker/35753369477_ASHA Resume(2).pdf', NULL, NULL, '2020-09-03', 0, 'Thinkfinity', '5', '8', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'has exp only in semi voice  ane exp salary is 17K', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:46:16', 50, '2020-09-22 12:09:23', 0, NULL, 1),
(6, 'Sornamugi. N', '6', '9087039602', '8754461032', 'Sornaishu@gmail.com', '1997-08-22', 23, '1', '2', 'Natarajan. M', 'Driver', 4000.00, 2, 14000.00, 16000.00, 'Cuddalour', 'Velachery', '2009030006', '', '2', 'upload_files/candidate_tracker/66447799289_sorna', NULL, NULL, '2020-09-03', 0, 'Thinkfinity', '5', '8', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'asked Time To Think About The Salary Exp In Kalyan Matrimony. Exp Is 13k+', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:46:21', 50, '2020-09-22 12:09:33', 0, NULL, 1),
(7, 'Niveadha R', '6', '8428282090', '9789544463', 'niveadharaj@gmail.com', '2005-09-03', 22, '2', '2', 'Rajendiran C', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Chennai', '2009030007', '1', '1', 'upload_files/candidate_tracker/93821910016_NIVEADHA R resume.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '26', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'she dont know the basics of c and c++', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-09-03 10:46:44', 50, '2020-12-17 05:42:59', 0, NULL, 1),
(8, 'Ashok Kumar S', '4', '6385880834', '9791620823', 'Ashoksri340@gmail.com', '2000-05-31', 20, '2', '2', 'Srinivasa babu', 'Taxi driver', 10000.00, 1, 0.00, 15000.00, 'No.10,Gayathri garden, dinnur,hosur', '2577,Nehru Nagar,TNHB Avadi,near Croma,Chennai', '2009030008', '1', '1', 'upload_files/candidate_tracker/96206386559_myresume2.doc', NULL, NULL, '2020-09-03', 0, '', '5', '8', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not suite for cRM', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 10:47:48', 50, '2020-09-10 02:37:06', 0, NULL, 1),
(9, 'K.Raghul', '4', '9600024682', '7358404907', 'raghulilanos@gmail.com', '2005-09-03', 22, '2', '2', 'A.Kumar', 'Bussiness', 20000.00, 1, 0.00, 15000.00, 'Tondiarpet', 'Tondiarpet', '2009030009', '1', '1', 'upload_files/candidate_tracker/99510466817_final resume...docx', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '10:58 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 10:53:30', 50, '2020-09-22 12:09:59', 0, NULL, 1),
(10, '', '0', '8428979726', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:53:46', 0, NULL, 0, NULL, 1),
(11, 'nirmal kumar', '5', '9094721760', '2134567890', 'nirmalkumar@cafs.com', '1995-03-01', 25, '2', '2', 'gunachandran', 'cycle shop', 20000.00, 1, 20000.00, 25000.00, 'vadapalani', 'Vadapalani', '2009030011', '1', '2', '0', NULL, NULL, '2020-09-03', 15, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:59:41', 1, '2020-09-03 11:04:10', 1, '2020-09-03 11:23:55', 0),
(12, 'Syed imran basha.a', '3', '7550228460', '6380032297', 'irfanbasha2234@gmail.com', '1999-07-05', 21, '1', '2', 'Anwar basha.s', 'Daily wager', 20000.00, 1, 0.00, 12000.00, '3/516,2nd street,ambedkarnagar,nandhambakkam', 'Kundrathur', '2009030012', '', '1', '0', NULL, NULL, '2020-09-03', 0, 'nA', '3', '16', '2020-09-07', 13000.00, '11:21 AM', '5', '1970-01-01', '1', '', '2', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:16:43', 7, '2020-10-01 12:59:37', 0, NULL, 1),
(13, 'M Ganesh Kumar', '4', '9003034271', '9841806308', 'dgvcganeshkumar@gmail.com', '1997-01-15', 23, '2', '2', 'V Murugan', 'Labour', 10000.00, 1, 13045.00, 18000.00, 'Porur', 'Vadapalni', '2009030013', '1', '2', 'upload_files/candidate_tracker/50430216509_GANESH RESUME-converted.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '09:50 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 11:27:07', 50, '2020-09-22 12:10:49', 0, NULL, 1),
(14, 'Tamilelakkiya', '4', '8122282818', '8122282818', 'elakkiya18dec@gmail.com', '2005-09-03', 21, '2', '2', 'K.senthillumar', 'Driver', 6000.00, 2, 8000.00, 10000.00, 'K.k.nagar', 'K.K. Nagar', '2009030014', '1', '2', 'upload_files/candidate_tracker/3735324361_S.Tamilelakkiya RESUME.docx', NULL, NULL, '2020-09-03', 8, '', '5', '8', '1970-01-01', 0.00, '11:38 AM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 11:27:29', 50, '2020-09-22 12:10:58', 0, NULL, 1),
(15, 'Pavithra', '4', '7958021287', '9361372703', 'Pavithratha.bidurai@gmail.com', '2005-09-03', 23, '2', '2', 'Thanbidurai', '..', 0.00, 1, 12000.00, 13000.00, 'Tondaipet', 'Tondaipet', '2009030015', '2', '2', 'upload_files/candidate_tracker/41551956718_0_1591085905270Resume pavi.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '11:36 AM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:28:57', 50, '2020-09-22 12:11:06', 0, NULL, 1),
(16, 'Jayasree.m', '4', '9884331232', '8056201945', 'Jayasreemuru.2@gmail.com', '1999-07-02', 21, '1', '2', 'D.murugesan', 'Sun control lims(sticker shop)', 30000.00, 2, 0.00, 10000.00, '28/3 ammaiyappan street,old washermenpet', '28/3 ammaiyappan street,old washermenpet', '2009030016', '', '1', 'upload_files/candidate_tracker/87721059016_CV_2020-08-12-110629.pdf', NULL, NULL, '2020-09-03', 0, 'NA', '5', '8', '1970-01-01', 0.00, '12:05 PM', '', '1970-01-01', '1', 'holded for telephonic and no Response from her. will not suite for CAFS', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:29:02', 50, '2020-09-22 12:11:20', 0, NULL, 1),
(17, 'Pradeep raj k', '6', '6381105054', '9445787558', 'Kpradeepraj7@gmail.com', '1993-04-05', 27, '2', '2', 'Karthikeyan d', 'Southern railway', 15000.00, 0, 9800.00, 10500.00, 'Chennai99', 'Chennai99', '2009030017', '1', '2', 'upload_files/candidate_tracker/60913468388_Resume', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '09:50 AM', '', '1970-01-01', '1', 'will not suite for this profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 11:29:41', 50, '2020-09-22 12:11:32', 0, NULL, 1),
(18, 'Jothiraj', '5', '9710102174', '', 'Jothijothiraj66@gmail.com', '2005-09-03', 27, '2', '2', 'Muralikrishnan', 'Electrcian', 20000.00, 2, 12500.00, 16000.00, 'Chennai', 'Taramani, chennai', '2009030018', '1', '2', 'upload_files/candidate_tracker/60579062711_jothi raj.2.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '11:33 AM', '', '1970-01-01', '1', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 11:30:36', 50, '2020-09-22 12:11:43', 0, NULL, 1),
(19, 'Rizwana fathima', '4', '9361789259', '9940223080', 'reshmareshu0709@gmail.com', '1996-12-07', 23, '1', '2', 'Rajan', 'Driver', 45000.00, 1, 26000.00, 20000.00, '5/52,seven well Street, St Thomas Mount, ch 16', 'Chennai', '2009030019', '', '2', 'upload_files/candidate_tracker/11127321724_Reshma resume.docx', NULL, NULL, '2020-09-03', 0, 'NA', '5', '8', '1970-01-01', 0.00, '11:43 AM', '', '1970-01-01', '2', 'will not suite for cRM', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:30:49', 50, '2020-09-22 12:11:56', 0, NULL, 1),
(20, 'Sokkanathan C', '6', '9003240542', '9003240542', 'sokkanathanc0101@gmail.com', '1996-09-26', 23, '1', '2', 'Chandrasekar', 'Tailor', 15000.00, 1, 18000.00, 20.00, 'Mr Nagar kondugaiyur Chennai 600118', 'Mr Nagar kondugaiyur Chennai 600118', '2009030020', '', '2', 'upload_files/candidate_tracker/89038402930_Sokkanathan C new1.pdf', NULL, NULL, '2020-09-03', 1, 'Prinyaka', '5', '11', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:33:59', 50, '2020-09-22 12:12:08', 0, NULL, 1),
(21, '', '0', '9003599224', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:34:41', 0, NULL, 0, NULL, 1),
(22, 'Syed Mohammed', '6', '9790828983', '7299857325', 'syed.mohammed805@gmail.com', '1988-04-08', 32, '1', '1', 'Meeran', 'Taylor', 10000.00, 2, 23000.00, 23000.00, 'Chennai', 'Chennai', '2009030022', '', '2', 'upload_files/candidate_tracker/67229170230_current update cv.docx', NULL, NULL, '2020-09-03', 7, 'Priyanka', '5', '25', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not fit for this profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:34:55', 52, '2020-11-05 10:10:16', 0, NULL, 1),
(23, 'K. Akash', '6', '9176168811', '', 'Akashraja845@gmail.com', '1998-02-08', 22, '1', '2', 'D. Kadhir', 'Painter', 15000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2009030023', '', '2', 'upload_files/candidate_tracker/49498776872_Aaksh Resume.pdf', NULL, NULL, '2020-09-03', 1, 'Priyanka', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:37:32', 50, '2020-09-22 12:12:30', 0, NULL, 1),
(24, 'Dinesh kumar', '6', '6380506933', '9566242716', 'dineshkumarjio98@gmail.com', '2005-09-03', 22, '1', '2', 'Baskar. K', 'Tailor', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Villivakkam', '2009030024', '', '1', 'upload_files/candidate_tracker/60409465007_DINESH KUMAR.pdf', NULL, NULL, '2020-09-03', 0, 'NA', '5', '16', '1970-01-01', 0.00, '11:41 AM', '', '1970-01-01', '1', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:38:04', 50, '2020-09-22 12:12:45', 0, NULL, 1),
(25, 'a.vinoth', '6', '8248560418', '9962620926', 'danacvino@gmail.com', '1998-09-18', 21, '1', '2', 'n.andrews', 'private company', 20000.00, 2, 0.00, 15000.00, 'chennai', 'purasaiwalkam', '2009030025', '', '1', 'upload_files/candidate_tracker/26365490620_NEW VINO RESUME.pdf', NULL, NULL, '2020-09-03', 0, 'NA', '5', '13', '1970-01-01', 0.00, '12:38 PM', '', '1970-01-01', '2', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:38:20', 50, '2020-09-22 12:12:58', 0, NULL, 1),
(26, 'T. G. Ajithkumar', '4', '8248768961', '9176201133', 'ajithkumar1133x@gmail.com', '2005-09-03', 21, '1', '2', 'T.D.GOPAL', 'Own business', 12000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2009030026', '', '1', 'upload_files/candidate_tracker/77659109042_178290', NULL, NULL, '2020-09-03', 0, 'NA', '5', '21', '1970-01-01', 0.00, '11:52 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:45:08', 50, '2020-09-22 12:13:12', 0, NULL, 1),
(27, 'G.sathes karthick', '5', '8778338934', '7092977842', 'Sathes2karthick@gmailcom', '2005-09-03', 39, '2', '1', 'A.k.gopalan', 'Retaired', 45000.00, 3, 57000.00, 75000.00, 'Dindigul', 'Chennau', '2009030027', '1', '2', 'upload_files/candidate_tracker/15182263178_SATHES KARTHICK cv.pdf', NULL, NULL, '2020-09-03', 1, '', '5', '8', '1970-01-01', 0.00, '12:33 PM', '', '1970-01-01', '2', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 12:02:16', 50, '2020-09-22 12:13:28', 0, NULL, 1),
(28, '', '0', '7092409722', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 12:11:38', 0, NULL, 0, NULL, 1),
(29, 'gokulraj sankar', '3', '8608706134', '', '', '1991-08-28', 29, '2', '2', '-', '-', 10000.00, 1, 10000.00, 100000.00, 'chennai', 'chennai', '2009030029', '1', '2', 'upload_files/candidate_tracker/47468210321_Development Platforms HMS and HRMS (1).pdf', NULL, NULL, '2020-09-05', 30, '', '3', '26', '2020-09-05', 40000.00, '01:24 PM', '', '1970-01-01', '1', 'good in tech and atitude', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 12:12:12', 1, '2020-09-05 01:28:15', 1, '2020-09-05 03:45:35', 0),
(30, 'NANCY A', '4', '6383386366', '6374819345', 'nannimhn@gmail.com', '1998-09-25', 21, '2', '2', 'I.ANBU RAJ', 'MTC Bus driver', 25000.00, 1, 0.00, 12000.00, 'Chennai', 'Mylapore', '2009030030', '1', '1', 'upload_files/candidate_tracker/46403756789_1594704765161Resume_Nancy.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '12:22 PM', '', '1970-01-01', '1', 'rejected in telephonic ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 12:12:41', 50, '2020-09-22 12:13:38', 0, NULL, 1),
(31, '', '0', '7299757677', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 01:04:09', 0, NULL, 0, NULL, 1),
(32, 'P kavitha', '4', '7550107391', '7806850981', 'kavithaperumal0101@gmail.com', '1999-01-01', 21, '2', '2', 'S Perumal', 'Sales executive', 20000.00, 1, 25000.00, 15000.00, 'No.11/5 Periyar Nagar 5 th street,chrompet', 'CHENNAI', '2009030032', '1', '2', 'upload_files/candidate_tracker/95833108791_kavitha resume CORRECT.doc', NULL, NULL, '2020-09-03', 0, '', '5', '8', NULL, 0.00, '02:19 PM', '', '1970-01-01', '1', 'will not suite for crm', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 01:49:21', 50, '2020-09-10 02:43:34', 0, NULL, 1),
(33, 'Rohith Thangaraj', '5', '9952058868', '4448515804', 'rohiththangaraj26@gmail.com', '1997-12-04', 22, '2', '2', 'Suresh Kumar', 'Business', 50000.00, 3, 330000.00, 400000.00, 'Chennai', 'Chennai', '2009030033', '1', '2', 'upload_files/candidate_tracker/68564339739_Rohith_cv (1).pdf', NULL, NULL, '2020-09-03', 1, '', '6', '', '1970-01-01', 0.00, '02:10 PM', '', '1970-01-01', '1', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 01:59:09', 50, '2020-09-22 12:13:55', 0, NULL, 1),
(34, '', '0', '9952058868', NULL, NULL, NULL, 0, '2', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030034', '1', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 02:01:09', 0, NULL, 0, NULL, 1),
(35, '', '0', '9952058868', NULL, NULL, NULL, 0, '2', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030035', '1', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 02:03:30', 0, NULL, 0, NULL, 1),
(36, '', '0', '7092326323', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 03:31:15', 0, NULL, 0, NULL, 1),
(37, '', '0', '9884444659', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030037', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 03:50:15', 0, NULL, 0, NULL, 1),
(38, '', '0', '7358542395', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030038', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 08:44:11', 0, NULL, 0, NULL, 1),
(39, 'gokulraj sankar', '2', '8608706341', '', 'gs@cafsinfotech.com', '1991-08-28', 29, '2', '2', 'sankar', 'farmer', 1000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2009030039', '1', '1', 'upload_files/candidate_tracker/1767043563_Smart HRMS Architecture.pdf', NULL, NULL, '2020-09-15', 0, '', '3', '8', '2020-09-15', 11000.00, '02:33 PM', '2', '2020-09-15', '1', 'nill', '2', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:07:20', 7, '2020-10-01 01:02:04', 7, '2020-10-07 04:58:19', 0),
(40, 'Sathish', '2', '9715880780', '', '', '1994-05-04', 26, '3', '2', 'balu', 'acc', 20000.00, 0, 0.00, 20000.00, 'erd', 'chennai', '2009030040', '', '1', 'upload_files/candidate_tracker/6354244440_96902746244_Candidate Onepage Chennai.docx', NULL, NULL, '2020-09-04', 0, '', '3', '26', '2020-09-04', 10000.00, '12:05 PM', '0', NULL, '1', 'selected', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:48:26', 1, '2020-09-04 12:06:28', 1, '2020-09-04 10:24:06', 0),
(41, '', '0', '7904064243', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 09:55:11', 0, NULL, 0, NULL, 1),
(42, 'S sandhiya', '4', '9600486957', '7845903682', 'sandhiyasankarbcom@gmail.com', '1999-06-18', 21, '2', '2', 'N.sankar', 'Ex-Army', 200000.00, 2, 0.00, 10000.00, 'Vellor', 'Chennai (Shenoy Nagar)', '2009040002', '2', '1', 'upload_files/candidate_tracker/58386469374_IMG-20200904-WA0002.jpg', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'looking for admin related job. will not sustain and Struggling to speak.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 10:04:31', 1, '2020-09-04 10:19:18', 0, NULL, 1),
(43, '', '0', '8680910453', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 10:21:37', 0, NULL, 0, NULL, 1),
(44, 'Ganesh Kumar', '4', '8148018635', '9551887709', 'spyganeshkumar007@gmail.com', '1998-10-29', 21, '2', '2', 'Arul', 'Electrician', 120000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2009040004', '4', '1', 'upload_files/candidate_tracker/54165077985_Ganesh Kumar.doc', NULL, NULL, '2020-09-04', 0, '', '3', '11', '2020-09-07', 11.00, '10:35 AM', '5', '1970-01-01', '1', 'salary decided 11k', '1', '2', '1', '2', '1', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 10:21:47', 1, '2020-09-12 11:36:52', 0, NULL, 1),
(45, 'Prakash', '4', '8680910452', '8124560714', 'Spyanbuprakash007@gmail.com', '1997-02-12', 23, '2', '2', 'Anbazhagan', 'Builders', 120000.00, 2, 0.00, 150000.00, 'Chennai', 'Chennai', '2009040005', '1', '1', 'upload_files/candidate_tracker/73805366136_0_prakash resume.doc', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '10:44 AM', '', '1970-01-01', '1', 'Language is not good', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 10:24:30', 8, '2020-09-04 11:19:30', 0, NULL, 1),
(46, 'Padmapriya', '13', '9840821892', '6380190906', 'Padmapriya.2128@gmail.com', '1992-01-21', 28, '1', '1', 'Dineshkumar', 'Process accosiate', 4.00, 1, 2.60, 3.50, 'Chennai', 'Chennai', '2009040006', '', '2', 'upload_files/candidate_tracker/57813454113_padmapriya.docx', NULL, NULL, '2020-09-04', 0, 'Priyanka', '5', '26', NULL, 0.00, '11:09 AM', '0', NULL, '2', 'Her Years Of Experience, She Is Not Good At Technical.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 10:41:26', 1, '2020-09-04 11:14:52', 0, NULL, 1),
(47, '', '0', '9025932689', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:04:58', 0, NULL, 0, NULL, 1),
(48, 'rekha', '4', '6385128637', '9380983104', 'rekhamonisha05@gmail.com', '1997-05-20', 23, '2', '2', 'krishna moorthy', 'bussin', 30000.00, 1, 13.00, 15.00, 'perambur chennai', 'perambur chennai', '2009040008', '4', '2', '0', NULL, NULL, '2020-09-04', 0, '', '3', '11', '2020-09-10', 12.00, '11:07 AM', '1', '1970-01-01', '2', 'candidate ok', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:05:07', 7, '2020-09-30 07:12:16', 0, NULL, 1),
(49, 'ABDUL KHALID S', '4', '7395903509', '9789822718', 'abdulkhalid0105@gmail.com', '1999-05-01', 21, '1', '2', 'SADIQ BASHA H', 'SECURITY', 9000.00, 1, 0.00, 15000.00, 'No.21/10 DBK Street, Old Washermenpet,Chennai - 21', 'No.21/10 DBK Street, Old Washermenpet,Chennai - 21', '2009040009', '', '1', 'upload_files/candidate_tracker/8841692497_KHALID RESUME.docx', NULL, NULL, '2020-09-04', 0, 'THINKFINITY', '5', '8', NULL, 0.00, '11:22 AM', '0', NULL, '1', 'language is not good. Pronunciation is not good.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:10:44', 1, '2020-09-04 11:26:46', 0, NULL, 1),
(50, 'Suganya', '4', '9150720027', '', 'suganyacseb@gmail.com', '1993-05-19', 27, '2', '1', 'Vimal', 'Report preparation', 20000.00, 1, 15.00, 15.00, 'Chennai', 'Chennai', '2009040010', '2', '2', 'upload_files/candidate_tracker/2007192352_1599194919857_0_suganya (1).doc', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not suite for CRM. Not speaking up. will not handle pressure and Sustain.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:10:49', 8, '2020-09-04 11:49:49', 0, NULL, 1),
(51, '', '0', '9962412726', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:18:00', 0, NULL, 0, NULL, 1),
(52, 'R.srividhya', '4', '7904654635', '7904654635', 'Srividhyaradks123@gmail.com', '1999-05-12', 21, '1', '2', 'E.Ravi', 'Driver', 8000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2009040012', '', '1', 'upload_files/candidate_tracker/9773729661_Share \'resume.docx\'', NULL, NULL, '2020-09-04', 0, 'No', '5', '11', NULL, 0.00, '11:57 AM', '0', NULL, '1', 'not suitable for sales &telecalling', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:18:59', 1, '2020-09-04 12:01:38', 0, NULL, 1),
(53, 'Saravanan', '6', '8946062851', '7358538001', 'sdsaravanan3@gmail.com', '1993-07-03', 27, '2', '2', 'Sekar', 'Supervisior', 15000.00, 1, 10500.00, 12000.00, 'Chennai', 'Chennai', '2009040013', '4', '2', 'upload_files/candidate_tracker/86619477867_resum20201.pdf', NULL, NULL, '2020-09-04', 1, '', '5', '17', NULL, 0.00, '11:30 AM', '0', NULL, '1', 'He will not sustain for sales ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:21:32', 1, '2020-09-04 11:35:47', 0, NULL, 1),
(54, 'Vishal.S.Davey', '11', '9600543077', '6369938156', 'vishal.s.dave@gmail.com', '1998-12-04', 21, '2', '2', 'Sanjay D Davey', '-', 25000.00, 1, 0.00, 1.25, 'Chennai', 'Chennai', '2009040014', '1', '1', 'upload_files/candidate_tracker/93639359697_vishal.pdf', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '11:27 AM', '', '1970-01-01', '1', 'looking for non voice and will not sustain.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 11:21:50', 50, '2020-09-10 02:38:00', 0, NULL, 1),
(55, '', '0', '9941549962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:22:20', 0, NULL, 0, NULL, 1),
(56, 'Adarsh', '11', '9962657453', '9790702749', 'mr.hangover19@gmail.com', '2000-01-29', 20, '2', '2', 'deva dass', 'business', 20000.00, 1, 0.00, 175000.00, 'Chennai', 'Chennai', '2009040016', '1', '1', 'upload_files/candidate_tracker/33282101052_adarsh.pdf', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '11:29 AM', '', '1970-01-01', '1', '2months in voice process, absconded from the company because of pressure. prefers non voice', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 11:22:55', 50, '2020-09-10 02:38:11', 0, NULL, 1),
(57, 'Dhayakar M P', '16', '7904387821', '', '', '1993-06-29', 27, '2', '2', 'Penchilaiah', 'Government employee', 18000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2009040017', '1', '2', 'upload_files/candidate_tracker/38924149485_Resume-Dhaya.pdf', NULL, NULL, '2020-09-04', 0, '', '5', '25', NULL, 0.00, '11:31 AM', '', '1970-01-01', '1', 'technical round - rejected', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 11:26:13', 7, '2020-09-04 04:20:52', 0, NULL, 1),
(58, 'Sudha', '16', '9841321653', '8610952604', 'su_aarthichennai@yahoo.co.in', '1987-02-15', 33, '2', '2', 'Panneerselvam G', 'Not Alive', 40000.00, 2, 15000.00, 18000.00, 'Mylapore', 'Mylpore', '2009040018', '1', '2', 'upload_files/candidate_tracker/5757665022_ResumeSudha .pdf', NULL, NULL, '2020-09-21', 0, '', '5', '53', '1970-01-01', 0.00, '11:42 AM', '', '1970-01-01', '1', 'Dont have much experience in Excel nd dont know abt spreadsheet', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 11:26:50', 50, '2020-09-21 11:17:27', 0, NULL, 1),
(59, '', '0', '7604957663', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:28:25', 0, NULL, 0, NULL, 1),
(60, 'J.vedhanayaki', '4', '9962412727', '9962412726', 'vedha47341@gmail.com', '1999-01-17', 21, '1', '1', 'S.ranjith', 'Automobile\'s', 12000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2009040020', '', '1', 'upload_files/candidate_tracker/20219456052_Resume.pdf', NULL, NULL, '2020-09-04', 0, 'No', '5', '8', NULL, 0.00, '11:32 AM', '0', NULL, '2', 'very childish will not suite for CRM', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:29:10', 1, '2020-09-04 11:34:46', 0, NULL, 1),
(61, 'Anu', '5', '9444507785', '8122598393', 'Anu.rameshviji@gmail.com', '1996-02-04', 24, '1', '2', 'G ramesh', 'Security', 50000.00, 1, 20000.00, 25000.00, 'Greams road', 'Greams road', '2009040021', '', '2', '0', NULL, NULL, '2020-09-04', 0, '5174', '3', '18', '2020-09-09', 25000.00, '12:02 PM', '5', '1970-01-01', '2', 'Good candidate and has relevant experience', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:57:16', 7, '2020-10-07 05:13:22', 0, NULL, 1),
(62, 'PREMKUMAR', '4', '9500948808', '9444797926', 'Premkumar660.cp@gmail.com', '1996-11-13', 23, '1', '2', 'Chandru', 'Full time employee', 30000.00, 2, 14000.00, 16000.00, 'Mayiladuthurai', 'Chennai, Ramapuram', '2009040022', '', '2', 'upload_files/candidate_tracker/59069075234_resume.prem.docx', NULL, NULL, '2020-09-04', 1, '5581', '3', '17', '2020-09-07', 13000.00, '12:10 PM', '5', '1970-01-01', '1', 'after 6 month based on Performance will Increase the salary   \nsalary will', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 12:06:39', 7, '2020-10-07 05:21:04', 0, NULL, 1),
(63, 'S. Indhumathi', '4', '7358128257', '7358128287', 'mathi061194@gmail.com', '1994-11-06', 25, '1', '2', 'R. Sivakumar', 'Coolie', 8000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2009040023', '', '1', 'upload_files/candidate_tracker/51433102590_Indhumathi RESUME.docx', NULL, NULL, '2020-09-04', 0, 'No', '5', '8', NULL, 0.00, '12:35 PM', '0', NULL, '1', 'too long,  not speaking up will  not suite for CRM', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 12:24:31', 1, '2020-09-04 12:40:46', 0, NULL, 1),
(64, 'Karthick kamaraj', '5', '9025330850', '9344525980', 'Karthi.civil.skp@gmail.com', '1993-04-28', 27, '2', '1', 'Kamaraj', 'Chennai', 150000.00, 3, 21000.00, 23000.00, 'Uthangarai krishnagiri', 'Chennai', '2009040024', '1', '2', 'upload_files/candidate_tracker/27113694988_Karthick Kamaraj.pdf new', NULL, NULL, '2020-09-04', 1, '', '5', '40', NULL, 0.00, '12:43 PM', '', '1970-01-01', '1', 'Not willing to work in sales and interested in telecalling and he is asking 21k in telemarketing', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 12:33:36', 40, '2020-09-04 02:05:35', 0, NULL, 1),
(65, 'Prasanth G', '5', '9587669637', '9840584598', 'Prasanth.gemidi6@gmail.com', '1994-10-06', 25, '2', '2', 'Venkata Rathinam G', 'Cini Field', 20000.00, 1, 20000.00, 26000.00, 'Chennai', 'Chennai', '2009040025', '4', '2', 'upload_files/candidate_tracker/84623187104_Prasanth Resume New- 17th Aug.pdf', NULL, NULL, '2020-09-04', 0, '', '3', '18', '2020-09-05', 23000.00, '01:17 PM', '5', '1970-01-01', '1', 'Ok Candidate Need To  Call Him In This Number 9840584598', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 12:53:08', 7, '2020-10-07 05:21:24', 0, NULL, 1),
(66, 'Prakash', '11', '8148450403', '9710866552', 'Ashprakash545@gmail.com', '1996-01-11', 24, '2', '2', 'Rajendran', 'Police officer', 24000.00, 2, 12500.00, 15000.00, 'Teynampet', 'Teynampet', '2009040026', '1', '2', 'upload_files/candidate_tracker/77542519212_update Resume_Prakash.pdf', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '01:16 PM', '0', NULL, '1', 'no response from her end. hold for recruiter.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 01:11:27', 1, '2020-09-04 01:24:31', 0, NULL, 1),
(67, 'Manikandan', '11', '8778994454', '8190092688', 'mani70503@gmail.com', '1997-10-20', 22, '1', '2', 'Selvam', 'Supervisor', 21000.00, 1, 12500.00, 16000.00, 'Mylapore', 'Mylapore', '2009040027', '', '2', 'upload_files/candidate_tracker/966133336_manikandan Resume.doc', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '01:15 PM', '0', NULL, '1', 'Pronunciation is not good and  lack in communication ', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 01:11:37', 1, '2020-09-04 01:33:06', 0, NULL, 1),
(68, 'test data', '4', '9999999999', '', '', '1996-09-04', 24, '5', '2', 'test', 'Test', 20000.00, 0, 0.00, 20000.00, 'Test', 'Test', '2009040028', '', '1', 'upload_files/candidate_tracker/12306426823_96902746244_Candidate Onepage Chennai.docx', NULL, NULL, '2020-09-04', 0, '', '5', '11', NULL, 0.00, '01:13 PM', '0', NULL, '1', 'testing purpose updated by sathish IT', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 01:12:10', 1, '2020-09-04 01:13:47', 1, '2020-09-04 02:03:58', 0),
(69, '', '0', '7358576478', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 01:22:31', 0, NULL, 0, NULL, 1),
(70, '', '0', '6282553283', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 01:36:51', 0, NULL, 0, NULL, 1),
(71, 'Sathish Kumar', '5', '9551603065', '', 'ask11591@gmail.com', '1991-05-11', 29, '2', '2', 'Arumugam', 'Chennai Corporation', 68000.00, 5, 380000.00, 450000.00, 'Chennai', 'Chennai', '2009040031', '3', '2', 'upload_files/candidate_tracker/64528186398_resume_1596529475012.pdf', NULL, NULL, '2020-09-04', 0, '', '5', '29', NULL, 0.00, '01:44 PM', '0', NULL, '2', 'not fit', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 01:40:56', 1, '2020-09-04 02:00:05', 0, NULL, 1),
(72, '', '0', '8248281099', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 02:32:38', 0, NULL, 0, NULL, 1),
(73, '', '0', '9025287385', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 02:32:40', 0, NULL, 0, NULL, 1),
(74, 'test candidate', '13', '9999999998', '', '', '1994-09-04', 26, '3', '2', 'test', 'Test', 20000.00, 0, 0.00, 20000.00, 'Test', 'Test', '2009040034', '', '1', 'upload_files/candidate_tracker/74892196694_96902746244_Candidate Onepage Chennai (2).docx', NULL, NULL, '2020-09-04', 0, '', '5', '27', NULL, 0.00, '03:15 PM', '0', NULL, '1', 'nill ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 03:13:14', 1, '2020-09-04 03:15:51', 1, '2020-09-04 03:26:39', 0),
(75, 'Aswini', '4', '6383854155', '', 'ashwinisundaram107@gmail.com', '1998-10-12', 21, '2', '2', 'Suntharam', 'Security', 35000.00, 2, 14000.00, 15000.00, 'Chennai', 'Abiramapuram Chennai', '2009040035', '4', '2', 'upload_files/candidate_tracker/43233966155_ASWINI.pdf', NULL, NULL, '2020-09-04', 1, '', '5', '8', NULL, 0.00, '02:41 PM', '0', NULL, '2', 'not Picking Up the call hope not Interested in the profile', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 03:33:17', 1, '2020-09-04 03:43:55', 0, NULL, 1),
(76, '', '0', '9025287285', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 03:57:48', 0, NULL, 0, NULL, 1),
(77, 'Noorjahan', '1', '8056216473', '9884827836', 'farinoor1991@gmail.com', '1991-06-03', 29, '1', '1', 'Waseem', 'Doctor', 70000.00, 4, 45000.00, 45000.00, 'Selaiyur', 'Selaiyur', '2009040037', '', '2', 'upload_files/candidate_tracker/44160858651_NOOR Resume.docx', NULL, NULL, '2020-09-04', 8, '', '6', '0', NULL, 0.00, '05:22 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 05:19:59', 1, '2020-09-04 05:31:09', 0, NULL, 1),
(78, '', '0', '8698706134', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040038', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 05:46:29', 0, NULL, 0, NULL, 1),
(79, 'Kully', '4', '9884255350', '', '', '1983-07-19', 37, '1', '1', 'Ponnurangam', 'chef', 24456.00, 40, 18888.00, 240000.00, 'Avadi', 'Mathur', '2009040039', '', '2', 'upload_files/candidate_tracker/84497454409_0_Resume jb.job.pdf', NULL, NULL, '2020-09-11', 30, '9997', '6', '0', NULL, 0.00, '10:40 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 08:41:31', 1, '2020-11-17 02:18:39', 0, NULL, 1),
(80, 'p.thiyagarajan', '4', '9962303801', '', '', '1983-07-19', 37, '2', '1', 'ponnurnangam', 'admin', 70000422.00, 0, 18000.00, 20000.00, 'avadi', 'mathur', '2009050001', '1', '2', 'upload_files/candidate_tracker/37676665340_dummy resume.docx', NULL, NULL, '2020-09-09', 30, '', '6', '0', NULL, 0.00, '11:20 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 01:06:55', 1, '2020-09-08 04:39:37', 50, '2020-09-08 04:58:13', 0),
(81, 'Yuvaraj P', '4', '8270727873', '9585269547', 'yuva6121@gmail.com', '2000-07-25', 20, '2', '2', 'Pattabi M', 'Former', 20000.00, 1, 0.00, 15000.00, 'Guruvoyal', 'Redhills', '2009050002', '1', '1', 'upload_files/candidate_tracker/87068869444_yuvaraj.docx', NULL, NULL, '2020-09-05', 0, '', '3', '8', '2020-09-10', 9000.00, '09:34 AM', '3', '2020-09-14', '1', '9K for priyanka team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-05 09:30:32', 7, '2020-10-07 05:24:21', 0, NULL, 1),
(82, 'Vidhya.T', '6', '6382781845', '6382781845', 'vithumegha@gmail.com', '1999-04-19', 21, '1', '2', 'Thirunavukarasu', 'Driver', 20000.00, 2, 16000.00, 220000.00, 'Egmore', 'Pudupet', '2009050003', '', '2', 'upload_files/candidate_tracker/22544386761_Adobe Scan Sep 05, 2020.pdf', NULL, NULL, '2020-09-18', 0, '00000', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 10:48:51', 1, '2020-09-07 02:08:37', 0, NULL, 1),
(83, 'Sandhiya.s', '6', '8056225907', '9884199603', '805622Sandhiyasandy@gmail.com', '1999-05-03', 21, '2', '2', 'santha kumar', 'Credit card sales', 16500.00, 2, 17000.00, 18000.00, 'Egmore', 'Egmore', '2009050004', '3', '2', 'upload_files/candidate_tracker/94632675814_1599236003046_SOA_T08350160819063851.pdf', NULL, NULL, '2020-09-07', 1, '', '5', '19', NULL, 0.00, '12:57 PM', '0', NULL, '1', 'no sustainability', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 10:52:19', 1, '2020-09-07 01:17:03', 0, NULL, 1),
(84, '', '0', '9710408657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009050005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 10:59:42', 0, NULL, 0, NULL, 1),
(85, 'Dilipkumar.AM', '4', '9941531135', '9710408657', 'Dilip1997kumarr@gmail.com', '1997-06-26', 23, '1', '2', 'Arumugam.M', '66673', 15000.00, 2, 0.00, 15000.00, '10/10 Somasundarm street, sevenwells chennai', '10/10 somasundarak street ,Sevenwells chennai', '2009050006', '', '1', 'upload_files/candidate_tracker/51624039624_1583907096625Resume_Dilip.docx', NULL, NULL, '2020-09-05', 0, '5152', '3', '8', '2020-09-07', 0.00, '11:07 AM', '6', '2020-12-31', '1', 'for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 10:59:54', 52, '2020-09-30 04:59:20', 0, NULL, 1),
(86, 'VIGNESH M', '5', '6382876625', '', 'msvicky0607@gmail.com', '1991-07-06', 29, '2', '2', 'MARIMUTHU.K', 'Former', 15000.00, 3, 0.00, 30000.00, 'Melmaruvathur', 'Nanganallur', '2009050007', '1', '1', 'upload_files/candidate_tracker/71287199082_15992853855386736517625475159140.jpg', NULL, NULL, '2020-09-05', 0, '', '3', '18', '2020-09-07', 28000.00, '11:15 AM', '2', '1970-01-01', '1', 'Refereal candidate we can try to mould', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-05 11:18:00', 7, '2020-10-07 05:24:46', 0, NULL, 1),
(87, 'Gokul', '13', '8608706135', '8608706134', '', '1991-08-28', 29, '2', '2', 'Sankar', 'Farmer', 100000.00, 1, 0.00, 1000000.00, 'Chennai', 'Chennai', '2009050008', '1', '1', 'upload_files/candidate_tracker/96159682289_735341479723FA193A94F7FCFA818735341479190119173122729_.pdf', NULL, NULL, '2020-09-05', 0, '', '6', '0', NULL, 0.00, '11:54 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 11:26:04', 1, '2020-09-05 12:23:38', 1, '2020-09-05 03:45:35', 0),
(89, 'sample', '3', '8608706139', '', '', '1991-01-22', 29, '2', '2', 'sample', 'sample', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2009050010', '1', '1', 'upload_files/candidate_tracker/69219456685_SFC-AMC Invoice 2020-2021.pdf', NULL, NULL, '2020-09-05', 0, '', '6', '0', NULL, 0.00, '12:16 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 12:01:11', 1, '2020-09-05 01:20:39', 1, '2020-09-05 03:45:35', 0),
(90, 'Sathish testing', '13', '9715880782', '', '', '2005-09-04', 15, '3', '1', 'Balu', 'Acc', 20000.00, 1, 10000.00, 20000.00, 'Erd', 'Chennai', '2009050011', '', '2', 'upload_files/candidate_tracker/11192978437_IM023.pdf', NULL, NULL, '2020-09-05', 0, '', '6', '', NULL, 0.00, '12:09 PM', '', '1970-01-01', '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 12:06:32', 1, '2020-09-05 01:17:38', 1, '2020-09-05 03:45:35', 0),
(91, 'sathish', '9', '9884302817', '', 'sathishkumar@gmail.com', '2005-09-05', 15, '2', '1', 'ravi', '-', 10000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2009050012', '1', '1', 'upload_files/candidate_tracker/44461994815_SFC-AMC Invoice 2020-2021.pdf', NULL, NULL, '2020-09-07', 0, '', '6', '0', NULL, 0.00, '12:12 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 12:08:53', 1, '2020-09-05 12:25:25', 1, '2020-09-05 03:44:54', 0),
(92, '', '0', '7358739223', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009050013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 12:15:51', 0, NULL, 0, NULL, 1),
(93, '9445732341', '2', '9445732341', '', '', '2005-09-05', 15, '2', '2', 'test', 'tesrt', 10000.00, 1, 0.00, 100001.00, 'dlsjf', 'ladjl', '2009050014', '1', '1', 'upload_files/candidate_tracker/53812892947_SFC-AMC Invoice 2020-2021.pdf', NULL, NULL, '2020-09-05', 0, '', '6', '', NULL, 0.00, '12:26 PM', '', '1970-01-01', '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 12:25:37', 1, '2020-09-05 01:17:08', 1, '2020-09-05 03:45:35', 0),
(94, 'narayanan', '4', '6380893626', '8807505962', 'nvelumalai@gmail.com', '2000-04-21', 20, '1', '2', 'Elumalai', 'Driver', 16000.00, 2, 0.00, 12000.00, 'J.J.Nagar korukkupet washermenpet', 'J.j.Nagar korukkupet washermenpet', '2009050015', '', '1', 'upload_files/candidate_tracker/66407261391_CV_2020-09-05-102600.pdf', NULL, NULL, '2020-09-05', 0, '', '8', '8', NULL, 0.00, '12:49 PM', '0', NULL, '1', 'not turned up for 2nd round', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 12:29:46', 1, '2020-09-05 02:10:52', 0, NULL, 1),
(95, 'Sathish test', '2', '9715880770', '', '', '1994-05-04', 26, '4', '1', 'balu', 'acc', 0.00, 0, 0.00, 0.00, 'erd', 'ch', '2009050016', '', '1', 'upload_files/candidate_tracker/33327445838_FandF.pdf', NULL, NULL, '2020-09-05', 0, '', '6', '0', NULL, 0.00, '04:18 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 03:59:36', 1, '2020-09-05 04:19:25', 1, '2020-09-05 05:41:38', 0),
(96, 'Keerthana', '11', '9150663596', '8124195315', 'rameshram00243@gmail.com', '1997-08-27', 23, '2', '1', 'Ramesh', 'Fresher', 12000.00, 1, 0.00, 15000.00, 'Chromepet', 'Madipakkam', '2009050017', '1', '1', 'upload_files/candidate_tracker/68005617323_keeres.pdf', NULL, NULL, '2020-09-07', 0, '', '5', '8', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'no confidence and will not suite for HR and  voice is very low', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-05 04:03:26', 1, '2020-09-05 04:22:43', 0, NULL, 1),
(97, '', '0', '8825990817', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009050018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 04:56:58', 0, NULL, 0, NULL, 1),
(98, 'Sathish testing', '2', '9715880771', '', '', '1994-05-04', 26, '5', '1', 'balu', 'acc', 0.00, 0, 0.00, 0.00, 'erd', 'ch', '2009050019', '', '1', 'upload_files/candidate_tracker/13470065665_FandF.pdf', NULL, NULL, '2020-09-05', 0, '', '6', '0', NULL, 0.00, '05:06 PM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 05:05:32', 1, '2020-09-05 05:06:33', 1, '2020-09-05 05:41:38', 0);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(99, '', '0', '9962742162', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009050020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 05:53:07', 0, NULL, 0, NULL, 1),
(100, 'n.c.sathya narayanan', '4', '7401182115', '', 'sathyadev29@gmail.com', '1996-06-29', 24, '1', '2', 'n.j.chandra sekarababu', 'crm', 400000.00, 0, 10000.00, 12000.00, 'chennai', 'Chennai', '2009050021', '', '2', 'upload_files/candidate_tracker/36703414961_Scan Sep 5, 2020.pdf', NULL, NULL, '2020-09-05', 10, 'zdafafaf', '6', '0', NULL, 0.00, '11:32 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 06:14:53', 1, '2020-09-17 01:35:19', 0, NULL, 1),
(101, 'Syed suhail', '6', '8190029025', '9962377827', 'Syedsuhail147@gmail.com', '1994-11-12', 25, '2', '2', 'Syed hayath', 'Business', 75000.00, 1, 22000.00, 22000.00, 'Old washermenpet', 'Old washermenpet', '2009050022', '1', '2', 'upload_files/candidate_tracker/43648766549_1597833323650_syed suhail ahamed resume.docx', NULL, NULL, '2020-09-11', 25, '', '6', '', NULL, 0.00, '02:55 PM', '', '1970-01-01', '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-05 06:16:55', 50, '2020-09-10 02:15:40', 0, NULL, 1),
(102, '', '0', '7358128287', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009050023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 06:27:03', 0, NULL, 0, NULL, 1),
(103, '', '0', '9043789765', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009050024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 06:31:00', 0, NULL, 0, NULL, 1),
(104, 'jeeva g', '6', '8939429138', '', 'jeevagb150@gmail.com', '1998-03-23', 22, '2', '2', 'ganapathi r', 'printing and binding', 15000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2009050025', '1', '1', 'upload_files/candidate_tracker/83401994992_Resume Jeeva.docx', NULL, NULL, '2020-09-07', 0, '', '5', '15', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', 'mBA student ,salary expectation high', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-05 09:08:05', 50, '2020-09-07 09:42:46', 0, NULL, 1),
(105, 'ramkumar', '2', '9999999121', '', '', '1991-08-28', 29, '1', '2', 'sankar', 'farmer', 10000.00, 1, 0.00, 5000000.00, 'chennai', 'chennai', '2009060001', '', '1', 'upload_files/candidate_tracker/89102660617_SFC-AMC Invoice 2020-2021 (1).pdf', NULL, NULL, '2020-09-07', 0, '66661', '3', '26', '2020-09-10', 0.00, '11:19 AM', '0', NULL, '1', 'Good', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-06 11:12:49', 1, '2020-09-06 11:19:50', 1, '2020-09-07 11:00:10', 0),
(106, 'M SIDDAIAH', '13', '8056191009', '9940439454', 'Siddhunaveen209@gmail.com', '1997-07-30', 23, '2', '2', 'M SIDDAIAH', 'COOLI', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2009060002', '1', '1', 'upload_files/candidate_tracker/30839623821_3824.docx', NULL, NULL, '2020-09-07', 0, '', '5', '26', NULL, 0.00, '11:00 PM', '', '1970-01-01', '1', 'Fresher, No idea about basics and not interested in our terms.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-06 07:05:30', 50, '2020-09-07 09:41:45', 0, NULL, 1),
(107, 'Kamesh', '4', '6381401176', '9444004619', 'kameshmurugan885@gmail.com', '1998-11-07', 21, '2', '2', 'Gowthaman M G', 'Accountant', 30000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2009060003', '1', '2', 'upload_files/candidate_tracker/53637954720_kamesh G-1.pdf', NULL, NULL, '2020-09-07', 1, '', '6', '', NULL, 0.00, '10:30 AM', '', '1970-01-01', '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-06 07:43:18', 50, '2020-09-07 09:41:27', 0, NULL, 1),
(108, 'Amarnath', '6', '8056822725', '9751008533', 'amarnath30199@gmail.com', '1995-03-22', 25, '2', '2', 'Murugesan', 'Former', 8000.00, 1, 15000.00, 18000.00, 'Namakkal', 'Tambaram', '2009070001', '4', '2', 'upload_files/candidate_tracker/67995518085_Amar.doc', NULL, NULL, '2020-09-07', 15, '', '8', '8', NULL, 0.00, '11:13 AM', '0', NULL, '1', 'left before Interview.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 10:15:22', 1, '2020-09-07 11:13:24', 0, NULL, 1),
(109, 'Aravind', '4', '6374365949', '9629096650', 'aravindgee68@gmail.com', '1998-07-17', 22, '2', '1', 'Chandrasekar', 'Framer', 10000.00, 1, 0.00, 15000.00, 'Vandhavasi', 'Chennai', '2009070002', '2', '1', 'upload_files/candidate_tracker/3030683940_ARAVIND resume.doc', NULL, NULL, '2020-09-07', 0, '', '5', '8', NULL, 0.00, '10:31 AM', '', '1970-01-01', '1', 'looking for nonvoice. basics in excel.  will not suite for  crm.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 10:23:46', 50, '2020-09-10 02:38:55', 0, NULL, 1),
(110, 'viran kumar', '6', '9551389074', '9884110728', 'ragaviragavi27121994@gmail.com', '1993-03-02', 27, '2', '2', 'late prakasha rao', 'nil', 20000.00, 2, 15000.00, 10000.00, 'royapettah', 'royapettah', '2009070003', '3', '2', 'upload_files/candidate_tracker/84651972508_VIREN 11111-1 (1).docx', NULL, NULL, '2020-09-07', 0, '', '5', '19', NULL, 0.00, '10:34 AM', '0', NULL, '1', 'NO COMMUNICATION IN BOTH(ENGLISH & tAMIL)', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 10:31:33', 1, '2020-09-07 10:42:28', 0, NULL, 1),
(111, 'NAVANEETHA KRISHNAN M', '5', '9941881079', '9940047738', 'navaneethaeee2011@gmail.com', '1989-04-19', 31, '1', '1', 'MURALIDHARAN K', 'Insurance', 35000.00, 1, 320000.00, 370000.00, 'Chennai', 'Chennai', '2009070004', '', '2', 'upload_files/candidate_tracker/76124342624_Naveen Insurance Resume.pdf', NULL, NULL, '2020-09-07', 15, '5177', '5', '18', NULL, 0.00, '11:08 AM', '0', NULL, '1', 'Not fit for sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 10:52:21', 1, '2020-09-07 11:18:06', 0, NULL, 1),
(112, 'Sathish Kumar', '2', '9786252624', '', 'sakthivel9393@gmail.com', '1996-07-16', 24, '2', '2', 'Sermadhurai P', 'Driver', 12000.00, 4, 15000.00, 30000.00, '1/174 north Street , pazhaiyakayal, tuticorin', 'Madhuravoyal, chennai', '2009070005', '4', '2', 'upload_files/candidate_tracker/23226700037_sathish kumar - resume.pdf', NULL, NULL, '2020-09-07', 30, '', '5', '27', '1970-01-01', 0.00, '10:55 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-09-07 10:52:27', 50, '2021-02-06 11:55:25', 0, NULL, 1),
(113, 'nandha kumar', '7', '7358405765', '', 'nandhubrad@gmail.com', '1997-10-06', 22, '2', '2', 'hari das', 'un employed', 20000.00, 2, 15000.00, 15000.00, 'virugambakkam', 'virugambakkam', '2009070006', '1', '2', 'upload_files/candidate_tracker/44742387564_Nandha Kumar.docx', NULL, NULL, '2020-09-08', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 11:09:09', 50, '2020-11-06 12:00:18', 0, NULL, 1),
(114, 'GOKULRAJ.K', '4', '8122132669', '9940433988', 'k.gokulraj2396@gmail.com', '1996-01-23', 24, '1', '2', 'KALIYAMOORTHI.M', 'Loadman', 20000.00, 2, 16500.00, 20000.00, 'Villupuram', 'Choolaimedu-chennai', '2009070007', '', '2', 'upload_files/candidate_tracker/35429721191_Gokul resume (6).pdf', NULL, NULL, '2020-09-07', 0, 'Ravi.M', '5', '8', NULL, 0.00, '11:38 AM', '0', NULL, '1', 'Last week  Attended interview and rejected by suthagar and srikanth.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 11:11:39', 1, '2020-09-07 11:42:39', 0, NULL, 1),
(115, 'Tayab khan.k', '4', '9514834177', '8778900291', 'ktayab792@gmail.com', '1996-02-19', 24, '1', '2', 'Kushnaseeb khan', 'Carpet', 25000.00, 5, 150000.00, 17000.00, 'Perambur', 'Perambur', '2009070008', '', '2', 'upload_files/candidate_tracker/81060128622_0_CV_2020-03-06-112156.pdf', NULL, NULL, '2020-09-07', 1, 'Binothini HR', '5', '8', NULL, 0.00, '12:00 PM', '0', NULL, '2', 'will not suite for CRM', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 11:19:50', 1, '2020-09-07 11:41:04', 0, NULL, 1),
(116, 'Sagilakshmi T', '4', '9500471450', '', 'Sagilakshmi206@gmail.com', '1998-06-02', 22, '2', '2', 'Thanigaivel', 'BCA', 30000.00, 4, 13500.00, 17000.00, '2/138pillaiyar kovil Street arni', 'Porur', '2009070009', '1', '2', 'upload_files/candidate_tracker/82513322805_sagi_new_resume_updated_08_08_2020.pdf', NULL, NULL, '2020-09-07', 10, '', '5', '12', '1970-01-01', 0.00, '11:32 AM', '', '1970-01-01', '2', 'kindly confirm salary on call.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 11:24:09', 7, '2020-10-02 11:14:58', 0, NULL, 1),
(117, 'KARTHIK.K', '6', '8825840656', '7418617696', 'joshankarthik0@gmail.com', '1993-03-01', 27, '1', '2', 'KESAVEL', 'AutoDriver', 15000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2009070010', '', '2', 'upload_files/candidate_tracker/13140720787_Document (1).pdf', NULL, '1', '2020-09-07', 0, 'Ravi.M', '6', '20', '1970-01-01', 0.00, '11:54 AM', '', '1970-01-01', '1', 'no sales exp', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2020-09-07 11:32:38', 60, '2021-09-22 12:47:58', 0, NULL, 1),
(118, 'LOGESH V', '5', '9600013159', '9600013159', 'cvlogeshkumar@gmail.com', '1993-09-07', 27, '2', '1', 'VENKATESAN', 'RETIRED', 26000.00, 0, 26000.00, 28000.00, 'New Washermenpet, Chennai - 600081', 'New Washermenpet, Chennai - 600081', '2009070011', '3', '2', 'upload_files/candidate_tracker/88557114154_Logesh update resume.pdf', NULL, NULL, '2020-09-07', 60, '', '5', '33', NULL, 0.00, '11:37 AM', '0', NULL, '1', 'Candidate are not fit for rm category and drops convincing skills Not worthy for expected salary 26000\n', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 11:32:38', 1, '2020-09-07 11:40:33', 0, NULL, 1),
(119, 'M. Dhanasekaran', '6', '7401798601', '', 'dhana.Exe@gmail.com', '1997-07-18', 23, '2', '2', 'N. muthukumar', 'Business', 10000.00, 1, 12000.00, 14000.00, 'Royapuram', 'Royapuram', '2009070012', '2', '2', 'upload_files/candidate_tracker/21538753694_DhanaNew_Resume.docx', NULL, NULL, '2020-09-07', 6, '', '5', '24', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'Past Job.. 2month Abscond And 6month Abscond', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 01:13:57', 1, '2020-09-07 01:25:33', 0, NULL, 1),
(120, 'Prasanth.N', '6', '9600175188', '7092229999', 'Prasanthjoeal@gmail.com', '1996-05-27', 24, '2', '2', 'Narayanan', 'Seniour excutive Xpressbees E. Com', 18000.00, 1, 18000.00, 20000.00, 'Chennai', 'Nanganallur', '2009070013', '1', '2', 'upload_files/candidate_tracker/19516389721_new one chalu.docx', NULL, NULL, '2020-09-07', 1, '', '7', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'GIven to GK', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 01:14:18', 7, '2020-10-08 06:19:18', 0, NULL, 1),
(121, 'SRINIVASAN.V', '6', '9710125349', '9941487760', 'srinivasan8202@gmail.com', '1993-09-18', 26, '1', '2', 'VENKATESAN', 'Building works', 20000.00, 3, 17000.00, 20.00, 'CHENNAI', 'CHENNAI', '2009070014', '', '2', 'upload_files/candidate_tracker/3758762826_SRINIVASAN.pdf', NULL, NULL, '2020-09-07', 0, 'GOKUL RAJ', '5', '24', NULL, 0.00, '01:24 PM', '0', NULL, '1', 'NOT SUITABLE FOR OUR PROFILE AND EXPECTING MORE SALARY.... ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 01:17:52', 1, '2020-09-07 01:34:36', 0, NULL, 1),
(122, 'M.gokulraj', '6', '7418960380', '7418960380', 'gokulraj0533@gmail.com', '1995-08-24', 25, '2', '2', 'G.masilamani', 'Furniture fittings work', 22000.00, 2, 16000.00, 20000.00, 'Chennai kodungaiyur', 'Chennai kodungaiyur', '2009070015', '1', '2', 'upload_files/candidate_tracker/22183205989_GOKULRAJ NEW RESUME FORMAT-converted.pdf', NULL, NULL, '2020-09-07', 0, '', '5', '8', NULL, 0.00, '01:39 PM', '', '1970-01-01', '1', 'Already attend interview and rejected by suthagar and srikanth', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 01:18:17', 50, '2020-09-07 02:07:43', 0, NULL, 1),
(123, 'S Rajkumar', '5', '7904350682', '', 'Raj_chn86@yahoo.in', '1986-06-18', 34, '1', '1', 'N Sundaresan', 'Business', 30000.00, 1, 40000.00, 450000.00, 'Chennai', 'Chennai', '2009070016', '', '2', 'upload_files/candidate_tracker/1223246345_S Rajkumar Resume updated.docx', NULL, NULL, '2020-09-07', 0, '5118', '5', '18', NULL, 0.00, '01:27 PM', '0', NULL, '1', 'Average guy', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 01:24:37', 1, '2020-09-07 01:29:44', 0, NULL, 1),
(124, 'Rasikirupa k', '4', '9791244167', '8428185488', 'Revarasi21@gmail.com', '1995-03-08', 25, '2', '2', 'kannusamy', 'filder', 80000.00, 2, 15000.00, 16000.00, 'chennai mmda colony arumbakkam chennai-106', 'chennai mmda colony arumbakkam chennai-106', '2009070017', '1', '2', 'upload_files/candidate_tracker/51339356806_bio_2.pdf', NULL, NULL, '2020-09-08', 7, '', '6', '', NULL, 0.00, '03:50 PM', '', '1970-01-01', '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 01:44:00', 50, '2020-09-07 04:28:11', 0, NULL, 1),
(125, 'Saravanan. C', '1', '9789879516', '7299802901', 'Sara.saravanan94@gmail.com', '1994-06-04', 26, '5', '2', 'Chandran c', 'Laber', 5.00, 2, 175000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2009070018', '', '2', 'upload_files/candidate_tracker/25221457468_Letter.pdf', NULL, NULL, '2020-09-09', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 02:04:01', 1, '2020-09-07 05:11:56', 50, '2020-09-10 02:16:12', 0),
(126, '', '0', '8610842587', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009070019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 02:40:17', 0, NULL, 50, '2020-09-07 03:55:17', 0),
(127, 'Karan', '6', '9087447866', '9087447866', 'karanmuthu12@gmail.com', '1997-11-17', 22, '2', '2', 'Father : paramasivam', 'Labour', 15000.00, 1, 15000.00, 15000.00, 'Ayapakkam housing board', 'Ayapakkam Housing Board', '2009070020', '1', '2', 'upload_files/candidate_tracker/34214825732_karan updated resume 2020.pdf', NULL, NULL, '2020-09-08', 1, '', '3', '8', '2020-09-10', 0.00, '11:00 AM', '2', '1970-01-01', '1', 'last take was 15k and he is okay with inc.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 03:17:48', 7, '2020-10-07 05:24:56', 0, NULL, 1),
(128, 'Rupesh Kumar. N', '4', '8072963913', '9600186488', 'rk8072963913@gmail.com', '1998-05-09', 22, '2', '2', 'narendar. B', 'Salesman', 20000.00, 1, 0.00, 15000.00, 'Chennai villivakam', 'Villivakam', '2009070021', '1', '1', 'upload_files/candidate_tracker/82362683721_Rupesh.docx', NULL, NULL, '2020-09-08', 0, '', '3', '8', '2020-09-10', 0.00, '11:00 AM', '2', '1970-01-01', '2', 'For dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 03:28:38', 7, '2020-10-07 05:30:14', 0, NULL, 1),
(129, 'mohammed', '6', '9952041154', '', '', '1999-03-12', 21, '2', '2', 'abdul', 'business', 30000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2009070022', '1', '1', 'upload_files/candidate_tracker/21949888906_real.pdf.pdf', NULL, NULL, '2020-09-08', 0, '', '3', '36', '2020-09-10', 0.00, '11:00 AM', '2', '1970-01-01', '1', 'okay for rm.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 03:30:46', 7, '2020-10-07 05:30:32', 0, NULL, 1),
(130, 'Sarathy', '11', '8939102401', '8667413359', 'sarathymalar15@gmail.com', '1999-04-13', 21, '5', '2', 'Ramakrishna', 'Madras High court', 20000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2009070023', '', '2', 'upload_files/candidate_tracker/17194338287_sarathy resume pds.docx', NULL, NULL, '2020-09-08', 25, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 03:38:24', 1, '2020-09-07 03:42:35', 50, '2020-09-10 02:16:20', 0),
(131, 'Sham Sahabdeen', '5', '8122169303', '', 'Shamsahabdeen45@gmail.com', '1993-08-11', 27, '2', '1', 'Abul Hasan', 'Shop', 10000.00, 3, 80000.00, 35000.00, 'Chennai', 'Chennai', '2009070024', '1', '2', 'upload_files/candidate_tracker/82077479597_SHAM SAHABDEEN.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '31', NULL, 0.00, '10:00 AM', '', '1970-01-01', '1', 'Expecting 45k .  ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 03:42:22', 50, '2020-09-08 11:06:46', 0, NULL, 1),
(132, 'Nepolean', '6', '9442871184', '7010535334', 'nepdoms13@gmail.com', '1997-06-13', 23, '2', '2', 'A.Dominic savio', '60000', 80000.00, 2, 0.00, 20000.00, 'Kallakurichi', 'Chennai', '2009070025', '1', '1', 'upload_files/candidate_tracker/43762446409_my resume.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '18', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not fit for RM Profile', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 03:46:12', 50, '2020-09-08 11:06:33', 0, NULL, 1),
(133, '', '0', '9789089139', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009070026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 04:31:50', 0, NULL, 0, NULL, 1),
(134, 'Mohammad jahubar A', '13', '7299685995', '9962170763', 'jahubar5995@gmail.com', '1997-12-10', 22, '2', '2', 'M.assanar', 'Salesman', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2009070027', '1', '1', 'upload_files/candidate_tracker/3793231278_resume_jahu.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '27', NULL, 0.00, '11:00 AM', '0', NULL, '1', '', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 04:41:43', 1, '2020-09-07 05:05:23', 0, NULL, 1),
(135, 'Dhanalakshmi', '4', '7373641281', '7373641281', 'dhanaspoorthi31@gmail.com', '1996-01-31', 24, '2', '2', 'Sankaran', 'Famer', 10000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2009070028', '1', '2', 'upload_files/candidate_tracker/60889447102_Resume_Dhanalakshmi-converted.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '11', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', 'previous salary 15k(semi voice) .currently expecting 15k above...so rejected...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 04:43:07', 50, '2020-09-08 11:06:17', 0, NULL, 1),
(136, 'Loganathan', '4', '9585847746', '9663638230', 'saranlogu1833@gmail.com', '1993-04-23', 27, '2', '2', 'Saravanan', 'Farmer', 20000.00, 5, 18000.00, 21000.00, 'Tamilnadu', 'Bangalore', '2009070029', '1', '2', 'upload_files/candidate_tracker/22740070647_Loganathan New.pdf', NULL, NULL, '2020-09-14', 15, '', '6', '', NULL, 0.00, '12:00 PM', '', '1970-01-01', '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 04:47:42', 50, '2020-09-10 06:07:56', 50, '2020-09-14 12:55:28', 0),
(137, 'Dinakaran', '4', '7358234694', '9840311640', 'dinakaran774@gmail.com', '2000-06-23', 20, '1', '2', 'DhanrajG', 'Painter', 12000.00, 1, 0.00, 25000.00, 'Kolathur', 'Chennai', '2009070030', '', '1', 'upload_files/candidate_tracker/68248672288_Dina resume 1.pdf', NULL, NULL, '2020-09-08', 0, 'Rupesh', '3', '8', '2020-09-10', 0.00, '11:00 AM', '2', '1970-01-01', '2', 'for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 04:50:08', 7, '2020-10-07 05:31:37', 0, NULL, 1),
(138, 'Palanivel E', '7', '9659723316', '7871931781', 'Pazhanivel7hills@gmail.com', '1992-11-05', 27, '5', '2', 'Elumalai N', 'Daily wage earner', 15000.00, 2, 15500.00, 18000.00, 'Chennai', 'Chennai', '2009070031', '', '2', 'upload_files/candidate_tracker/46909949840_Palanivel Curriculam vitae.doc', NULL, NULL, '2020-09-08', 30, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '1', NULL, '7', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 04:57:16', 1, '2020-09-07 05:12:11', 50, '2020-09-10 02:16:43', 0),
(139, 'R.Sundar kumar', '13', '9003183765', '9444703715', 'sundarkumar0797@gmail.com', '1997-11-07', 22, '2', '2', 'M.J.Rajasekar', 'Bank Employee', 25000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2009070032', '1', '1', 'upload_files/candidate_tracker/75818907176_resume_1579700962229.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '26', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'he dont know the basics of PHP. not sure he cant learn things quickly.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 05:02:32', 1, '2020-09-07 05:17:22', 0, NULL, 1),
(140, 'Archana', '14', '8754403515', '', 'jeniyagel@gmail.com', '1991-03-18', 29, '2', '2', 'Anthony', 'He is physical Challenged now.', 20000.00, 2, 180000.00, 240000.00, '#31 k. P Garden thapalpetty madhavaram Chennai 60', '#31 k. P Garden thapalpetty madhavaram Chennai 60', '2009070033', '1', '2', 'upload_files/candidate_tracker/5555742619_Archana-18.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '27', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', 'She is not Completed. We gave more than three days time to complete the Task. Still it is Incomplete only.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 05:18:42', 50, '2020-09-08 01:30:27', 0, NULL, 1),
(141, 'Vijay. M', '5', '8056140729', '', 'vijaymarimuthu90@gmail.com', '1990-09-20', 29, '2', '1', 'Marimuthu', 'Sales', 30000.00, 1, 16000.00, 19000.00, 'Chennai', 'Chennai', '2009070034', '1', '2', 'upload_files/candidate_tracker/99161806078_0_0_vijay cur resume 1.pdf', NULL, NULL, '2020-09-08', 30, '', '5', '44', NULL, 0.00, '10:30 AM', '', '1970-01-01', '1', 'He is looking for Loan sales and not intrested in Insurance job', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 05:29:05', 50, '2020-09-08 11:31:56', 0, NULL, 1),
(142, 'Kowsalya', '4', '9524430705', '7010293170', 'arungthm25@gmail.com', '1998-07-13', 22, '2', '2', 'Senthil', 'Kuli ( cooking)', 15000.00, 2, 0.00, 12000.00, 'T.nagar , chennai', 'T.nagar , chennai', '2009070035', '1', '1', 'upload_files/candidate_tracker/88905408483_RESUME-edit.docx', NULL, NULL, '2020-09-08', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'not fit for sales ,', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 05:54:36', 1, '2020-09-07 08:45:45', 0, NULL, 1),
(143, 'Lalitha ambigai', '4', '7448711595', '7448711595', 'lalithavijayakumar3108@gmail.com', '1999-08-31', 21, '5', '2', 'Vijayakumar father', 'No', 20000.00, 1, 0.00, 12000.00, 'No:40/50thillai nagar 4th st korattur chennai 80', 'No:40/50thillai Nagar 4th St Korattur Chennai 80', '2009070036', '', '1', 'upload_files/candidate_tracker/99779041212_resume_1582808500620.pdf', NULL, NULL, '2020-09-07', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 06:09:51', 1, '2020-09-07 06:18:00', 50, '2020-09-10 02:16:54', 0),
(144, 'M.Karthick', '6', '6381234399', '9092446401', 'karthickmani563@gmail.com', '1999-06-05', 21, '2', '2', 'S.Mani', 'Daily wages', 12000.00, 1, 13000.00, 16000.00, 'No.9,Anna nagar 1st Street, Nandiambakkam.', 'No.19, Appu Street, Vyasarpadi, Chennai-600039', '2009070037', '1', '2', 'upload_files/candidate_tracker/4293906906_CV_2020-08-17-020259.pdf', NULL, NULL, '2020-09-11', 0, '', '6', '', NULL, 0.00, '10:00 AM', '', '1970-01-01', '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 06:17:47', 50, '2020-09-10 02:40:54', 0, NULL, 1),
(145, 'UDHAYAKUMAR K', '5', '9952948765', '9677173514', 'Chellaudai23@gmail.com', '1989-10-26', 30, '1', '2', 'K. M. KUMAR', 'CATERING', 35000.00, 4, 18000.00, 24000.00, 'Old perungulathur', 'Old Perungulathur', '2009070038', '', '2', 'upload_files/candidate_tracker/59213509529_UDAI RESUME 2020.pdf', NULL, NULL, '2020-09-08', 0, 'Vijay', '4', '29', NULL, 0.00, '10:30 AM', '', '1970-01-01', '1', 'jobless now.  forward to next round', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 06:29:24', 31, '2020-09-08 12:32:33', 29, '2020-09-16 04:17:06', 0),
(146, 'Jayasudha', '4', '9677094377', '', 'jayasudha0692@yahoo.com', '1992-10-06', 27, '5', '2', 'Nethaji', 'Retired', 15000.00, 2, 18500.00, 21000.00, 'Chennai', 'Chennai', '2009070039', '', '2', 'upload_files/candidate_tracker/46096951015_jaya new job-1 (2)-3.pdf', NULL, NULL, '2020-09-19', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 06:41:55', 1, '2020-09-07 06:53:01', 50, '2020-09-10 02:17:02', 0),
(147, '', '0', '9176201133', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009070040', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 07:00:06', 0, NULL, 0, NULL, 1),
(148, 'NAVEENKUMAR R', '6', '8608536646', '6380147367', 'naveen.raja2496@gmail.com', '1996-06-10', 24, '2', '2', 'Raja', 'Labour', 50000.00, 3, 11000.00, 17000.00, 'Vellore', 'Old washermenpet,Chennai', '2009070041', '1', '2', 'upload_files/candidate_tracker/60299360179_naveeen1.docx', NULL, NULL, '2020-09-08', 30, '', '5', '14', NULL, 0.00, '12:00 PM', '', '1970-01-01', '1', 'previous company salary less but he expecting high . ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 07:04:16', 50, '2020-09-08 11:15:34', 0, NULL, 1),
(149, 'YogeshS', '4', '7358703907', '9941180815', 'yogeshsrinivasan3@gmail.com', '2000-07-13', 20, '1', '2', 'Srinivasan', 'Building contractor', 13000.00, 1, 0.00, 16000.00, 'Kolathur', 'Chennai', '2009080001', '', '1', 'upload_files/candidate_tracker/3452191682_1592752736472Resume_Yogesh.pdf', NULL, NULL, '2020-09-08', 0, 'Rupesh', '3', '8', '2020-09-10', 0.00, '11:00 AM', '2', '1970-01-01', '2', 'for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 09:10:37', 7, '2020-10-07 05:32:07', 0, NULL, 1),
(150, 'MOHAMED ALTHAAF.M', '4', '9677545147', '9677545147', 'Www.mohamedalthu@gmail.com', '1995-08-24', 25, '1', '2', 'MOHAMED MUBARAK.AR', 'Bussiness', 30000.00, 2, 13000.00, 14000.00, 'Karapakkam', 'Karapakkam', '2009080002', '', '2', 'upload_files/candidate_tracker/79889359046_Althaaf new Resume-converted.pdf', NULL, NULL, '2020-09-09', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 09:18:13', 1, '2020-09-08 09:31:03', 0, NULL, 1),
(151, '', '0', '9176094611', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009080003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 10:02:21', 0, NULL, 0, NULL, 1),
(152, '', '0', '9962848831', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009080004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 10:13:58', 0, NULL, 0, NULL, 1),
(153, '', '0', '8667512415', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009080005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 10:21:09', 0, NULL, 0, NULL, 1),
(154, '', '0', '9360973779', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009080006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 10:35:15', 0, NULL, 0, NULL, 1),
(155, 'Anith.K', '6', '8124985361', '6374511239', 'anith448@gmail.com', '1997-10-10', 22, '2', '2', 'Kannan.K', 'Business', 20000.00, 1, 0.00, 300000.00, 'Pallavaram', 'Pallavaram', '2009080007', '1', '1', 'upload_files/candidate_tracker/36348738721_anith new resume (1)-1.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '19', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', 'not opening his mouth', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 11:07:34', 19, '2020-09-08 12:05:04', 0, NULL, 1),
(156, 'Gowtham R', '6', '9941978141', '9941031422', 'gowtham1998r@gmail.com', '1998-06-03', 22, '2', '2', 'Ranganathan', 'Business', 25000.00, 2, 0.00, 300000.00, 'Tambaram', 'Tambaram', '2009080008', '1', '1', 'upload_files/candidate_tracker/45850235498_Gowtham Resume New.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '19', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'not fit for sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 11:08:23', 1, '2020-09-08 11:19:04', 0, NULL, 1),
(157, 'M PRIYA', '4', '9677231716', '9344491979', 'Priyadoss02@gmail.com', '1997-10-12', 22, '2', '2', 'T murugadoss', 'Auto driver', 30000.00, 2, 14500.00, 16000.00, 'No 46 Dr Ambedkar colony k k nagar chennai 78', 'No 46 Dr Ambedkar colony k k nagar chennai 78', '2009080009', '2', '2', 'upload_files/candidate_tracker/61059022956_priya.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '11', NULL, 0.00, '11:22 AM', '0', NULL, '1', 'expected salary is high  15 k above.so rejected ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 11:15:16', 1, '2020-09-08 11:23:18', 0, NULL, 1),
(158, 'Mohammad Afzal', '5', '8428179921', '9140537745', 'afzal.mohammad215@gmail.com', '1990-06-21', 30, '2', '2', 'Mohammad Yahiya', 'Saree Dyeing', 30000.00, 4, 25000.00, 30000.00, 'Varanasi', 'Chennai', '2009080010', '1', '2', 'upload_files/candidate_tracker/57856116296_Resume.pdf', NULL, NULL, '2020-09-10', 0, '', '5', '31', NULL, 0.00, '11:24 AM', '', '1970-01-01', '2', 'previous experience with stores.  not fit for direct sales.  not convincing', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 12:20:25', 50, '2020-09-10 02:39:29', 0, NULL, 1),
(159, 'S.Meharunnisha', '4', '8610404623', '9380147984', 'nishameharun25@gmail.com', '1997-03-11', 23, '2', '2', 'B.Samsudeen', 'driver', 10000.00, 1, 0.00, 15000.00, 'purasaiwalkam chennai', 'purasaiwalkam chennai', '2009080011', '1', '1', 'upload_files/candidate_tracker/8238897624_Meharunnisha Resume.pdf', NULL, NULL, '2020-09-10', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 12:25:22', 50, '2020-09-10 10:44:58', 0, NULL, 1),
(160, 'Ezhil Maran', '4', '9361409053', '', 'evignesh420@gmail.com', '1999-05-04', 21, '2', '2', 'S elango', 'Business', 20000.00, 1, 11000.00, 17000.00, 'West Mambalam, Chennai-33', 'West Mambalam, Chennai', '2009080012', '1', '2', 'upload_files/candidate_tracker/82586463354_Ezhil new.pdf', NULL, NULL, '2020-09-09', 6, '', '5', '8', NULL, 0.00, '11:30 AM', '', '1970-01-01', '1', 'absconded', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 02:36:21', 50, '2020-09-09 11:17:29', 0, NULL, 1),
(161, 'PRAVEEN AJAY R', '4', '7358868819', '', 'Ajaysharmi1504@gmail.com', '1998-06-04', 22, '2', '2', 'Rayappan', 'Farmer', 150000.00, 1, 17500.00, 20000.00, 'Tindivanam', 'Anna nagar', '2009080013', '1', '2', 'upload_files/candidate_tracker/21737417366_Pravven Ajay-RESUME.docx', NULL, NULL, '2020-09-09', 2, '', '3', '14', '2020-09-14', 0.00, '02:55 PM', '', '1970-01-01', '1', '14.09.2020 joining ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 02:48:21', 1, '2020-09-09 03:33:43', 0, NULL, 1),
(162, 'pandiyarajan', '6', '7358630780', '', 'pandiyan.r.020292@gmail.com', '1992-02-02', 28, '2', '1', 'ramamoorthy', 'business', 50000.00, 2, 20000.00, 26000.00, 'chennai', 'chennai', '2009080014', '1', '2', 'upload_files/candidate_tracker/54548736661_PANDIYARAJAN_R_Resume (3).pdf', NULL, NULL, '2020-09-10', 15, '', '6', '', NULL, 0.00, '12:00 PM', '', '1970-01-01', '2', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 02:57:24', 50, '2020-09-10 02:17:41', 0, NULL, 1),
(163, 'Pon abirami', '4', '7305913758', '9941580044', 'abihoney2723@gmail.com', '1999-03-27', 21, '2', '2', 'E govindaraj', 'Plumber', 12000.00, 0, 12000.00, 15000.00, 'Chennai', 'Chennai', '2009080015', '1', '2', 'upload_files/candidate_tracker/38431874422_res Abiramigovind New.doc', NULL, NULL, '2020-09-09', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '', '1970-01-01', '2', 'just assigned to check. for testing process.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 04:02:28', 50, '2020-09-10 02:17:57', 0, NULL, 1),
(164, 'Rethinasamy.R', '6', '8667469619', '', 'ragul007ragul@gmail.com', '1997-06-26', 23, '2', '2', 'Ramachandran', 'Sales executive', 0.00, 1, 0.00, 30000.00, 'Trichy', 'Kundrathur, Chennai', '2009080016', '1', '2', 'upload_files/candidate_tracker/74171418076_RATHINA SWAMY(new).docx', NULL, NULL, '2020-09-10', 0, '', '5', '44', NULL, 0.00, '11:30 AM', '', '1970-01-01', '1', '', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 04:36:02', 50, '2020-09-10 11:54:09', 0, NULL, 1),
(165, 'JAYABASKAR.C', '6', '7401506514', '', 'jayabaskar291998@gmail.com', '1998-09-02', 22, '2', '2', 'D.CHANDRASEKARAN(LATE)', 'Nil', 10000.00, 1, 10000.00, 12000.00, 'CHENNAI', 'CHENNAI', '2009080017', '1', '2', 'upload_files/candidate_tracker/49413118712_JAYABASKAR_7401506514 RESUME 1.docx', NULL, NULL, '2020-09-09', 1, '', '5', '24', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', 'Candidate Should Not Sustain .. He Is Looking Government Job... 6 Month Period Only  He Looking Job... join interview with kannan', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 05:22:27', 7, '2020-09-09 03:39:54', 0, NULL, 1),
(166, 'm.mageshwari', '4', '9150992745', '9962818926', 'magirao97@gmail.com', '1997-01-26', 23, '2', '2', 'm.narasinga rao', 'self employed', 15000.00, 1, 13000.00, 15000.00, 'thiruvottiyur', 'Thiruvottiyur', '2009080018', '1', '2', 'upload_files/candidate_tracker/31011390254_CURRICULUM VITAE-pages-deleted.pdf', NULL, NULL, '2020-09-09', 2, '', '3', '11', '2020-09-14', 0.00, '11:00 AM', '5', '1970-01-01', '2', 'salary take home 11k.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 05:49:23', 7, '2020-10-07 05:38:36', 0, NULL, 1),
(167, 'R.lalitha', '5', '9791199132', '9092020240', 'lalithasudharson@gamil.com', '1993-06-25', 27, '1', '1', 'R.sudharson', 'Payroll manager', 40000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2009080019', '', '2', 'upload_files/candidate_tracker/96561630034_1597144038062_Lalitha_Resume_updated (1).pdf', NULL, NULL, '2020-09-09', 0, 'Sarath vimal', '5', '22', NULL, 0.00, '11:00 AM', '0', NULL, '2', '', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 05:52:58', 1, '2020-09-08 06:04:40', 0, NULL, 1),
(168, 'banu', '4', '1234567890', '', '', '2005-10-13', 15, '1', '2', 'sddssd', 'sdsdsd', 34343443.00, 0, 0.00, 33344.00, 'xccvcvcv', 'ffffggf', '2009080020', '', '1', 'upload_files/candidate_tracker/25036163221_2 (1).pdf', NULL, NULL, '2020-10-14', 0, '5152', '8', '', '1970-01-01', 0.00, '03:29 PM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 05:55:03', 7, '2020-10-14 05:09:15', 0, NULL, 1),
(169, 'S.kala', '4', '9500248361', '7358521122', 'kalarubini843@gmail.com', '1996-08-16', 24, '2', '2', 'C.shokkalingam', 'Own business', 20000.00, 1, 13500.00, 15000.00, 'Kodambakkam', 'Kodambakkam', '2009080021', '1', '2', 'upload_files/candidate_tracker/61042658460_kala resume.docx', NULL, NULL, '2020-09-09', 2, '', '5', '11', NULL, 0.00, '10:00 AM', '', '1970-01-01', '2', 'she is looking for only non voice or semi voice process.so rejected', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 06:06:15', 50, '2020-09-09 11:43:06', 0, NULL, 1),
(170, 'Krishna kumar', '4', '7904169928', '8608648606', 'krishnamr87@gmail.com', '1999-09-21', 20, '2', '2', 'Rajendren', 'Constructor', 8000.00, 1, 0.00, 12000.00, 'No 57,85th Street,Sivalingapuram,Kknagar,Ch-78', 'No 57,85th Street,Sivalingapuram,Kknagar,Ch-78', '2009080022', '1', '1', 'upload_files/candidate_tracker/27987153574_krishna resume.docx', NULL, NULL, '2020-09-09', 0, '', '5', '8', NULL, 0.00, '11:30 AM', '', '1970-01-01', '1', 'not Speaking up and will not uite for CRM', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 06:56:46', 50, '2020-09-09 11:16:15', 0, NULL, 1),
(171, 'B.abishek', '4', '8838493340', '8838493340', 'dreammakers.abi23@gmail.com', '1999-06-23', 21, '2', '2', 'K balan', 'Civil engineer', 17000.00, 1, 0.00, 12000.00, 'No-12 Rams flat 18th Avenue ashok nagar ch-83', 'No-12 Rams Flat 18th Avenue Ashok Nagar Ch-83', '2009080023', '1', '1', 'upload_files/candidate_tracker/72393511693_RESUME(1)(1).pdf', NULL, NULL, '2020-09-09', 0, '', '5', '8', NULL, 0.00, '11:30 AM', '', '1970-01-01', '2', 'he wanna to do designing course so he is looking for job. will not sustain for us.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 07:32:30', 50, '2020-09-09 11:24:19', 0, NULL, 1),
(172, 'Madhivathani R', '16', '8667887422', '', 'Madhivathanir23@gmail.com', '1997-09-02', 23, '5', '2', 'Rajamanickam(late)', '-', 20000.00, 2, 0.00, 12000.00, 'Mylapore, Chennai', 'Mylapore, Chennai', '2009080024', '', '1', 'upload_files/candidate_tracker/75980920123_madhiresume.pdf', NULL, NULL, '2020-09-09', 0, '', '6', '0', NULL, 0.00, '01:30 PM', '0', NULL, '2', NULL, '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 08:52:14', 1, '2020-09-08 09:00:30', 50, '2020-09-09 10:34:18', 0),
(173, 'Jayavel', '13', '6379081671', '', 'jve8246@gmail.com', '1997-12-05', 22, '5', '2', 'Gunasekaran', 'Sales6', 20000.00, 1, 0.00, 15000.00, 'Chintadripet', 'Chintadripet', '2009080025', '', '2', 'upload_files/candidate_tracker/88471893053_1597497390949Resume_G.docx', NULL, NULL, '2020-09-12', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 10:40:14', 1, '2020-09-08 10:48:40', 0, NULL, 1),
(174, 'Praveen Raj S', '14', '7010154366', '9789022473', 'Praveenjoboy147@gmail.com', '1998-04-17', 22, '2', '2', 'Srinivasan R', 'Government servant', 30000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2009090001', '1', '1', 'upload_files/candidate_tracker/63215146132_1598875739717Resume_Praveen.pdf', NULL, NULL, '2020-09-11', 0, '', '6', '', NULL, 0.00, '11:16 AM', '', '1970-01-01', '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 12:13:03', 50, '2020-09-10 06:09:30', 0, NULL, 1),
(175, 'B Sidhartha babu', '5', '9600029782', '8148728784', 'Sidharthababu16@gmail.com', '1994-04-17', 26, '1', '1', 'K Babu', 'auto', 600000.00, 1, 22000.00, 25000.00, 'Thiruverkadu', 'thiruverkadu', '2009090002', '', '2', 'upload_files/candidate_tracker/89858597083_Sidhartha.docx', NULL, NULL, '2020-09-09', 0, '5177', '5', '34', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'Not a Sustain-er and seems like a non-productive worker ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:01:47', 1, '2020-09-09 10:11:03', 0, NULL, 1),
(176, '', '0', '9360518533', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:12:55', 0, NULL, 0, NULL, 1),
(177, 'shalima', '7', '9789177230', '9789177230', 'shalimasha1997@gmail.com', '1997-05-10', 23, '2', '2', 'abdul', 'job', 20.00, 1, 15000.00, 15000.00, 'guindy', 'guindy', '2009090004', '1', '2', 'upload_files/candidate_tracker/12496336270_SHALIMA RESUME.pdf', NULL, NULL, '2020-09-11', 2, '', '3', '8', '2020-09-14', 13500.00, '11:00 AM', '5', '1970-01-01', '2', 'for MF operation', '7', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 10:28:27', 7, '2020-10-07 05:38:59', 0, NULL, 1),
(178, 'A.vigneshwaran', '4', '7708497729', '', 'stylevicky55@gmail.com', '1999-06-08', 21, '2', '2', 'D.Arumugam', 'Farmers', 20000.00, 1, 12000.00, 20000.00, 'Anna Nagar', 'Anna nagar', '2009090005', '1', '2', 'upload_files/candidate_tracker/76168961080_vicky resume-.docx', NULL, NULL, '2020-09-09', 12, '', '5', '8', NULL, 0.00, '10:36 AM', '', '1970-01-01', '1', 'not speaking up. will not suite for CRM.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 10:30:39', 50, '2020-09-09 11:48:40', 0, NULL, 1),
(179, 'Arun kumar. P', '4', '7010638607', '7010638607', 'Arunankr3110@gmail.com', '1997-10-31', 22, '2', '2', 'R. Perumal', 'Nothing', 35000.00, 2, 10500.00, 12000.00, 'Teynamprt', 'Teynampet', '2009090006', '2', '2', 'upload_files/candidate_tracker/32339522570_Arun Kumar P (1).pdf', NULL, NULL, '2020-09-09', 1, '', '5', '21', NULL, 0.00, '10:40 AM', '', '1970-01-01', '2', 'pre  exp in data entry ,not suit for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:34:14', 21, '2020-09-09 02:39:36', 0, NULL, 1),
(180, 'yogeshwaran d', '4', '9080056936', '7448482195', 'yogeshwaran9121999@gmail.com', '1999-12-09', 20, '2', '2', 'dhanasekaran c', 'business', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2009090007', '2', '1', 'upload_files/candidate_tracker/3439914512_Yogeshwaran resume.pdf', NULL, NULL, '2020-09-09', 0, '', '3', '8', '2020-09-14', 0.00, '10:30 AM', '2', '1970-01-01', '1', 'for muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:35:09', 7, '2020-10-07 05:40:06', 0, NULL, 1),
(181, 'Muralisai', '4', '9952327141', '6382469569', 'Muralisai367@gmail.com', '1999-07-21', 21, '2', '2', 'Sureshrao', 'Tailor', 8000.00, 1, 10000.00, 12000.00, 'Kumbakonam', 'Saidhpet', '2009090008', '2', '2', 'upload_files/candidate_tracker/37968744218_sai resume.pdf', NULL, NULL, '2020-09-09', 0, 'Thinkfinity', '3', '8', '2020-09-14', 0.00, '10:53 AM', '', '2020-09-15', '1', '11K for muthu team', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:41:14', 50, '2020-09-09 11:47:35', 0, NULL, 1),
(182, 'Dinesh', '4', '7550148148', '', 'yuvandinesh1898@gmail.com', '1998-08-01', 22, '1', '2', 'Selvavinayagam', 'Car driver', 20000.00, 1, 10000.00, 13000.00, 'Chennai', 'Chennai', '2009090009', '', '2', 'upload_files/candidate_tracker/67741226143_Resume.pdf', NULL, NULL, '2020-09-09', 0, '5451', '5', '8', NULL, 0.00, '10:57 AM', '', '1970-01-01', '1', 'will not suite for CRM and RE', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:44:25', 50, '2020-09-09 11:50:03', 0, NULL, 1),
(183, 'Sofiya Banu', '4', '9677072349', '9677072349', 'sofeyabanu5@gmail.com', '1999-11-15', 20, '2', '2', 'Father', 'Business', 20000.00, 2, 0.00, 120000.00, 'Karambakkam porur Chennai', 'Karambakkam porur Chennai', '2009090010', '1', '1', 'upload_files/candidate_tracker/53188164794_SOFIYA BANU RESUME.pdf', NULL, NULL, '2020-09-09', 0, '', '3', '8', '2020-09-28', 10000.00, '10:50 AM', '4', '2020-11-24', '2', 'yet to Complete her exams and will confirm once after her exams.(oct)', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 10:44:27', 52, '2020-09-30 01:18:39', 0, NULL, 1),
(184, 'Vajulla', '6', '9710036682', '', 'mohamedvaju5@gmail.com', '1997-06-25', 23, '2', '2', 'Shahul hammed', 'Department stores', 18000.00, 2, 0.00, 12000.00, 'Avadi', 'Avadi', '2009090011', '1', '1', 'upload_files/candidate_tracker/74216847456_aas.docx', NULL, NULL, '2020-09-10', 0, '', '5', '17', NULL, 0.00, '10:30 AM', '', '1970-01-01', '1', 'He did  not camed again', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 10:50:22', 7, '2020-09-10 11:56:43', 0, NULL, 1),
(185, 'dhanalakshmi.', '4', '9150862794', '8925017248', 'dhanamlakshmi22122000@gamil.com', '2000-12-22', 19, '1', '2', 'munusami.p', 'yes', 20.00, 2, 15000.00, 15000.00, 'maduravayal chenni -', 'maduravayal chenni', '2009090012', '', '2', 'upload_files/candidate_tracker/68952956346_Document-WPS Office.pdf', NULL, NULL, '2020-09-09', 1, '', '6', '0', NULL, 0.00, '11:49 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:56:15', 1, '2020-09-09 12:48:16', 0, NULL, 1),
(186, '', '0', '9538894771', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:56:41', 0, NULL, 0, NULL, 1),
(187, 'JAYASWETHA S', '4', '8056039731', '9840565483', 'jayasrinivasan1626@gmail.com', '1998-06-13', 22, '2', '2', 'SRINIVASAN', 'No work', 10000.00, 1, 15000.00, 12000.00, 'ROYAPURAM', 'ROYAPURAM', '2009090014', '2', '2', 'upload_files/candidate_tracker/87006550727_RESUME NEW JAYASWETHA.doc', NULL, NULL, '2020-09-09', 0, '', '3', '8', '2020-09-14', 0.00, '10:53 AM', '', '1970-01-01', '2', '12K for dhivya team', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 11:04:26', 50, '2020-09-09 11:24:01', 0, NULL, 1),
(188, 'Mohanakrishnan', '4', '9790700728', '', 'Mohanakrishnan.7296@gmail.com', '1996-02-07', 24, '2', '2', 'Durai', 'Shop keeper', 25000.00, 2, 13000.00, 13000.00, 'T.nagar', 'T.nagar', '2009090015', '2', '2', 'upload_files/candidate_tracker/40345212075_RESUME IT.docx', NULL, NULL, '2020-09-09', 1, '', '5', '14', NULL, 0.00, '12:09 PM', '0', NULL, '1', 'he is not fit for long term sustainability .. confident level very less .', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 11:06:23', 1, '2020-09-09 12:09:27', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(189, 'Kabilan S', '4', '7708954472', '7708954472', 'kabilhhh99@gmail.com', '1999-03-29', 21, '2', '2', 'G.Sankar', 'Farmer', 5000.00, 1, 0.00, 13.00, 'Krishnagiri', 'Pallavaram, Chennai', '2009090016', '2', '1', 'upload_files/candidate_tracker/40153017632_Kabilan_1583224420980.pdf', NULL, NULL, '2020-09-09', 0, '', '3', '13', '2020-09-14', 0.00, '11:22 AM', '', '1970-01-01', '1', 'ok ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 11:19:41', 50, '2020-09-09 11:47:24', 0, NULL, 1),
(190, '', '0', '7358521122', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 12:04:14', 0, NULL, 0, NULL, 1),
(191, 'r.yokavickneswaran', '13', '9677177430', '7449003949', 'Yogavignesh3344@gmail.com', '1997-03-03', 23, '2', '2', 'k.r.ravindaran', 'mechanical engineer', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'chennai', '2009090018', '1', '1', 'upload_files/candidate_tracker/97434650421_Yokavickneswaran.pdf', NULL, NULL, '2020-09-10', 0, '', '5', '26', NULL, 0.00, '11:30 AM', '', '1970-01-01', '1', '', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 12:22:40', 50, '2020-09-09 02:44:41', 0, NULL, 1),
(192, 'Dharani Kumar. S', '6', '8754075996', '', 'sdharani1998@gmail.com', '1998-12-15', 21, '2', '2', 'Sivakumar. R', 'Sales and admin manager', 10000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2009090019', '1', '2', 'upload_files/candidate_tracker/8552784976_file1.docx', NULL, NULL, '2020-09-10', 0, '', '5', '19', NULL, 0.00, '11:30 AM', '', '1970-01-01', '1', '', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 12:29:25', 1, '2020-09-09 02:56:02', 0, NULL, 1),
(193, 'pradeep a', '4', '9094772313', '', 'pradeepswetha0518@gmail.com', '1997-11-05', 22, '2', '2', 'anbarasan a', 'supervisior', 14000.00, 1, 9600.00, 13000.00, 'Perambur', 'Perambur', '2009090020', '1', '2', 'upload_files/candidate_tracker/64430859965_Pradeep Resume 2020.doc', NULL, NULL, '2020-09-11', 15, '', '5', '21', NULL, 0.00, '10:00 AM', '', '1970-01-01', '1', 'not bold ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 12:37:33', 8, '2020-09-11 10:33:21', 0, NULL, 1),
(194, 'Vikash S', '6', '9840665681', '9788886055', 'vikashmohana2@gmail.com', '1998-09-19', 21, '2', '2', 'Sathyan K', 'Business', 200000.00, 1, 0.00, 15000.00, 'No 20, Krishna nagar, Chromepret', 'Chennai', '2009090021', '1', '1', 'upload_files/candidate_tracker/31458885795_Vikash1.pdf', NULL, NULL, '2020-09-10', 0, '', '3', '8', '2020-09-14', 14000.00, '11:00 AM', '', '1970-01-01', '1', 'for kannan team', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 12:51:44', 50, '2020-09-09 02:45:32', 0, NULL, 1),
(195, 'Narayanamoorthy', '5', '9884039003', '9360169347', 'Msnmoorthy06@gmail.com', '1990-06-02', 30, '2', '2', 'Madhavan', 'Proprietary', 700000.00, 3, 3.60, 4.20, 'Porur', 'Porur', '2009090022', '3', '2', 'upload_files/candidate_tracker/74155134214_0_msn cvv.pdf', NULL, NULL, '2020-09-09', 30, '', '3', '18', '2020-10-01', 0.00, '02:11 PM', '2', '1970-01-01', '1', 'Experienced xxamp good candidate', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 02:08:41', 7, '2020-10-07 05:41:09', 0, NULL, 1),
(196, 'Rijo jacob', '6', '7448384243', '', 'Rijojo2610@gmail.com', '1997-10-26', 22, '1', '2', 'Raju', 'TV mechanic', 25000.00, 1, 15000.00, 18000.00, 'Chennai', 'Ayanavaram', '2009090023', '', '2', 'upload_files/candidate_tracker/38143967604_rijo.pdf', NULL, NULL, '2020-09-09', 0, 'Ravi', '5', '22', NULL, 0.00, '02:18 PM', '', '1970-01-01', '1', 'candidate  did not came for second round', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 02:13:39', 50, '2020-09-09 02:29:10', 0, NULL, 1),
(197, '', '0', '7654328971', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 03:08:31', 0, NULL, 0, NULL, 1),
(198, '', '0', '8883684154', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 03:36:41', 0, NULL, 0, NULL, 1),
(199, 'A. HUSNA', '1', '7358211086', '9962711427', 'noumaan0007@GMAIL.COM', '1992-07-29', 28, '2', '1', 'A. Naveedkhan', 'Interior designer', 50000.00, 1, 0.00, 28000.00, 'Royapettah', 'Royapettah', '2009090026', '1', '2', 'upload_files/candidate_tracker/77900378519_Bio - Data(1)-converted.docx', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '01:00 PM', '0', '1970-01-01', '2', NULL, '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 04:08:01', 50, '2020-09-14 03:17:39', 0, NULL, 1),
(200, 'Jaisurya.k', '6', '9080727572', '', 'kjaisurya1999@gmail.com', '1999-09-20', 20, '2', '2', 'Karthikeyan', 'Security manager', 50000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2009090027', '1', '2', 'upload_files/candidate_tracker/84481828748_my resume .pdf', NULL, NULL, '2020-09-10', 10, '', '5', '24', NULL, 0.00, '12:30 PM', '', '1970-01-01', '1', '', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 04:22:23', 50, '2020-09-09 05:28:38', 0, NULL, 1),
(201, 'Karthick', '4', '9176244574', '', 'Karthickravi16@gmail.con', '1993-09-01', 27, '2', '2', 'Karthick', 'Not working', 500.00, 0, 16200.00, 23000.00, 'Aynavaram', 'Ayanavaram', '2009090028', '4', '2', 'upload_files/candidate_tracker/15550707160_karthick Resume August 2020.pdf', NULL, NULL, '2020-09-10', 1, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 04:59:26', 1, '2020-09-16 10:56:36', 0, NULL, 1),
(202, '', '0', '9962909306', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 05:01:54', 0, NULL, 0, NULL, 1),
(203, 'Samuel k', '4', '7904495212', '9094368112', 'samuel.kathir.03@gmail.com', '1996-03-20', 24, '2', '2', 'Kathiresan R', 'BPO industry', 30000.00, 1, 0.00, 12000.00, 'Thrivottiyur', 'Chennai', '2009090030', '1', '1', 'upload_files/candidate_tracker/75006979181_Sam Resume 001.docx', NULL, NULL, '2020-09-10', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 05:06:43', 50, '2020-09-09 05:26:04', 0, NULL, 1),
(204, '', '0', '8754585364', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 05:10:55', 0, NULL, 0, NULL, 1),
(205, 'Samuel k', '4', '9094368112', '7904495212', 'samuel.kathir.03@gmail.com', '1996-03-20', 24, '2', '2', 'Kathiresan R', 'BPO industry', 30000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009090032', '1', '1', 'upload_files/candidate_tracker/95346054166_Sam Resume 001.docx', NULL, NULL, '2020-09-10', 0, '', '6', '', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 05:18:10', 50, '2020-09-09 05:25:14', 50, '2020-09-09 05:25:40', 0),
(206, '', '0', '7904780057', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 05:28:44', 0, NULL, 0, NULL, 1),
(207, '', '0', '9840627374', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090034', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 05:58:52', 0, NULL, 0, NULL, 1),
(208, 'Pradeep', '4', '8220557479', '9360147081', 'pradeepadhi34@gmail.com', '1996-05-18', 24, '1', '2', 'Adhimoolam', 'Farmer', 10000.00, 1, 16600.00, 20000.00, 'Dharmapuri', 'Chennai', '2009090035', '', '2', 'upload_files/candidate_tracker/66927950248_pradeep A.docx', NULL, NULL, '2020-09-10', 0, 'NA', '8', '', '1970-01-01', 0.00, '10:00 AM', '0', '1970-01-01', '2', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 06:00:56', 50, '2020-09-16 02:48:37', 0, NULL, 1),
(209, '', '0', '8056187575', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 06:09:00', 0, NULL, 0, NULL, 1),
(210, '', '0', '8778280822', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090037', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 06:43:50', 0, NULL, 0, NULL, 1),
(211, 'Kesavan S', '14', '7338916823', '9789965034', 'madhanrio10@gmail.com', '1999-01-04', 21, '2', '2', 'Shankar R', 'Private employee', 10000.00, 0, 0.00, 2.50, 'No 51 eswarinager,mainroad, pallavaram,chennai43', 'Chennai', '2009090038', '1', '1', 'upload_files/candidate_tracker/67271461291_Kesavan s(1).pdf', NULL, NULL, '2020-09-15', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '0', '1970-01-01', '2', NULL, '2', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 06:47:07', 50, '2020-09-15 01:45:20', 0, NULL, 1),
(212, 'Adithya Paul williams', '1', '7395961943', '', 'adithyapaul4@gmail.com', '1994-10-14', 25, '2', '1', 'W.Peter sagayanathan', 'Customer relationship manager', 35000.00, 1, 35000.00, 30000.00, 'Chennai', 'Chennai', '2009090039', '1', '2', 'upload_files/candidate_tracker/48512593746_resume_1595655049467.pdf', NULL, NULL, '2020-09-14', 15, '', '8', '', '1970-01-01', 0.00, '01:00 PM', '0', '1970-01-01', '1', NULL, '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 06:54:45', 50, '2020-09-14 03:18:15', 0, NULL, 1),
(213, 'Balu bro', '4', '7904179104', '9600232672', 'shewagbalu123@gmail.com', '1996-05-17', 24, '2', '2', 'Vijayraj', 'Driver', 150000.00, 1, 0.00, 0.00, 'Ambattur', 'Chennai', '2009090040', '1', '1', 'upload_files/candidate_tracker/68840632539_My resume(1).pdf', NULL, NULL, '2020-09-12', 0, '', '6', '', NULL, 0.00, '12:00 PM', '', '1970-01-01', '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 07:06:29', 50, '2020-09-11 06:09:03', 0, NULL, 1),
(214, 'Amirtha A', '4', '8248023530', '', 'amirthasuryaprakash06@gmail.com', '1997-12-21', 22, '2', '2', 'V.Ashokkumar', 'Business', 30000.00, 1, 0.00, 12000.00, 'Tambaram west', 'Tambaram west', '2009090041', '1', '1', 'upload_files/candidate_tracker/35015567267_Updated Resume .pdf', NULL, NULL, '2020-09-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '0', '1970-01-01', '2', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 07:30:46', 50, '2020-09-16 03:53:47', 0, NULL, 1),
(215, 'S.Nataraja Pandian', '4', '8903694012', '', 'natarajapandians@gmail.com', '1997-02-02', 23, '2', '2', 'K.Selvaraj', 'Police', 20000.00, 2, 0.00, 15000.00, 'Virudhunagar', 'Chennai', '2009090042', '1', '1', 'upload_files/candidate_tracker/33865256253_S NATARAJA PANDIAN RESUME.docx', NULL, NULL, '2020-09-10', 0, '', '6', '0', NULL, 0.00, '01:00 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 07:47:21', 1, '2020-09-09 07:55:21', 0, NULL, 1),
(216, '', '0', '9514814257', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090043', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 08:06:10', 0, NULL, 0, NULL, 1),
(217, 'A.S.Kalpana', '16', '9884667757', '9884667753', 'kalpanaarunbabu1299@gmail.com', '1999-07-12', 21, '2', '2', 'K.B.Arun babu', 'Driver', 13000.00, 1, 0.00, 13000.00, 'Mugappair', 'Mugappair', '2009090044', '1', '1', 'upload_files/candidate_tracker/50330486927_kalpana arun babu.docx', NULL, NULL, '2020-09-16', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', NULL, '3', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 09:01:27', 50, '2020-09-16 03:54:01', 0, NULL, 1),
(218, '', '0', '9715880781', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090045', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 09:29:02', 0, NULL, 0, NULL, 1),
(219, 'sathish testing', '13', '9999999888', '', '', '1994-09-10', 26, '3', '2', 'hnfdjgdj', 'dfnsdfnsdf', 20000.00, 0, 0.00, 20000.00, 'erd', 'ch', '2009100001', '', '1', 'upload_files/candidate_tracker/7496541023_My_Resume.pdf', NULL, NULL, '2020-09-10', 0, '', '3', '41', '2020-09-11', 0.00, '09:49 AM', '0', NULL, '2', '', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 09:48:50', 1, '2020-09-10 09:49:55', 50, '2020-09-10 12:17:59', 0),
(220, 'test', '3', '9999998888', '', '', '1994-09-10', 26, '3', '2', 'ghhh', 'egvevg', 20000.00, 0, 10000.00, 20000.00, 'erd', 'ch', '2009100002', '', '2', 'upload_files/candidate_tracker/96272206951_My_Resume.pdf', NULL, NULL, '2020-09-10', 0, '', '3', '41', '2020-09-12', 20000.00, '10:07 AM', '', '1970-01-01', '2', '', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:06:35', 1, '2020-09-10 10:34:29', 50, '2020-09-10 12:17:59', 0),
(221, 'Nandha kumar K', '7', '9940051433', '9710050419', 'nandha645@gmail.com', '1997-05-28', 23, '1', '2', 'Kubeanthiran M', 'Printing press', 20000.00, 1, 200000.00, 300000.00, 'Teynampet', 'Teynampet', '2009100003', '', '2', 'upload_files/candidate_tracker/21765810379_NANDHA RESUME - New 2.docx', NULL, NULL, '2020-09-10', 0, '5156', '5', '35', NULL, 0.00, '10:00 AM', '', '1970-01-01', '1', '', '7', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:22:41', 50, '2020-09-10 10:49:44', 0, NULL, 1),
(222, 'Mohamed Hisham', '4', '9944810967', '9445225282', 'mohamedhissam930@gmail.com', '1999-06-11', 21, '1', '2', 'Mohamed asiq', 'Bussiness', 30000.00, 4, 10000.00, 15000.00, '2A, Shaik madar street, ilayangudi, Sivaganga', 'Prasanthi men\'s hostel, alandur', '2009100004', '', '2', 'upload_files/candidate_tracker/53208518318_Mohamed Hisham Resume(1).pdf', NULL, NULL, '2020-09-10', 0, 'Thinkfinity', '5', '21', NULL, 0.00, '10:43 AM', '0', NULL, '1', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:34:37', 1, '2020-09-10 10:43:50', 0, NULL, 1),
(223, 'Mani v', '4', '8939348242', '', 'vmani1401@gmail.com', '1999-01-14', 21, '1', '2', 'Vijayakumar', 'Welder', 15000.00, 1, 17000.00, 15000.00, 'Chengalpet', 'Saidapet', '2009100005', '', '2', 'upload_files/candidate_tracker/59484976276_mani resume - Copy.docx', NULL, NULL, '2020-09-10', 7, '5494', '3', '8', '2020-09-14', 10500.00, '11:10 AM', '0', NULL, '2', 'For muthu team', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:45:47', 1, '2020-09-10 11:03:25', 0, NULL, 1),
(224, 'H.Naresh kumar yadav', '4', '8189965112', '', 'hnareshkumar17@gmail.com', '1998-12-17', 21, '1', '2', 'E. Harikrishnan', 'Driver', 15000.00, 1, 17000.00, 18000.00, 'Madipakkam', 'Madipakkam', '2009100006', '', '2', 'upload_files/candidate_tracker/12633538493_Naresh biodata.docx', NULL, NULL, '2020-09-10', 3, '5520', '5', '14', NULL, 0.00, '11:30 AM', '0', NULL, '1', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:46:19', 1, '2020-09-10 10:57:04', 0, NULL, 1),
(225, 'R. Dinesh Kumar', '4', '7708764193', '', 'Dineshammu1177@gmali.com', '1997-06-11', 23, '1', '2', 'E. Ramu', 'Farmer', 15000.00, 1, 0.00, 17000.00, 'Madipkkam', 'Madipakkam', '2009100007', '', '1', 'upload_files/candidate_tracker/83617211397_DINESH BIO DATA.docx', NULL, NULL, '2020-09-10', 0, '5494', '5', '14', NULL, 0.00, '11:30 AM', '0', NULL, '1', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:46:31', 1, '2020-09-10 10:57:12', 0, NULL, 1),
(226, 'Bharathi', '4', '7695907802', '9094473816', 'bharathishanil@gmail.com', '1996-02-08', 24, '2', '2', 'Nantha Bhagathur', 'Nil', 10000.00, 1, 12000.00, 13000.00, 'No 3 Sarathi Nagar 2nd Street Velachery', 'Chennai', '2009100008', '2', '2', 'upload_files/candidate_tracker/90277890407_Bharathi.docx', NULL, NULL, '2020-09-10', 0, '', '5', '11', NULL, 0.00, '10:55 AM', '0', NULL, '2', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:52:09', 1, '2020-09-10 10:56:52', 0, NULL, 1),
(227, '', '0', '9150520031', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:08:23', 0, NULL, 0, NULL, 1),
(228, '', '0', '8056298344', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:18:54', 0, NULL, 0, NULL, 1),
(229, '', '0', '9551654137', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:19:09', 0, NULL, 0, NULL, 1),
(230, '', '0', '9677292177', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:45:45', 0, NULL, 0, NULL, 1),
(231, 'B. Premkumar', '4', '9500608032', '6374448557', '29prem.b@gmail.com', '1997-04-29', 23, '2', '2', 'K. Balu', 'Electrician', 75000.00, 0, 0.00, 14000.00, 'Pondycherry', 'CMBT', '2009100013', '2', '1', 'upload_files/candidate_tracker/21110355216_PREM 2.docx', NULL, NULL, '2020-09-10', 0, '', '5', '21', NULL, 0.00, '12:51 PM', '', '1970-01-01', '2', 'not attended , 2 nd time entry', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:49:24', 50, '2020-09-10 02:12:52', 0, NULL, 1),
(232, '', '0', '9176792342', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:57:36', 0, NULL, 0, NULL, 1),
(233, 'binothini', '4', '7092002457', '', 'binothini24@gmail.com', '1992-06-08', 28, '2', '1', 'devasigamani', 'welder', 10000.00, 1, 10000.00, 15000.00, 'chennai', 'chennai', '2009100015', '2', '2', 'upload_files/candidate_tracker/14848448346_17208 _Aug 2020 (1).pdf', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '03:51 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 12:27:00', 1, '2020-10-07 03:49:42', 0, NULL, 1),
(234, '', '0', '8884195274', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 12:41:49', 0, NULL, 0, NULL, 1),
(235, '', '0', '8525032699', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 12:44:32', 0, NULL, 0, NULL, 1),
(236, 'deepak balakrishnan', '6', '9025946143', '', '', '1992-05-18', 28, '2', '2', 'balakrishnan', 'Senior Phone Banking Representative', 28000.00, 1, 22000.00, 28000.00, 'chennai', 'chennai', '2009100018', '1', '2', 'upload_files/candidate_tracker/44099154899_Resume 2020.docx', NULL, NULL, '2020-09-11', 0, '', '5', '22', NULL, 0.00, '12:00 PM', '', '1970-01-01', '1', 'Bond Not Interested..  sustainability doubt', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 12:55:32', 50, '2020-09-10 02:52:06', 0, NULL, 1),
(237, 'sneghamathi g', '4', '9597128226', '9025379670', 'sineghamathi@gmail.com', '1998-06-02', 22, '2', '2', 'gnanamani p', 'business', 40000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2009100019', '1', '1', 'upload_files/candidate_tracker/6384478573_SINEGHAMATHI.pdf', NULL, NULL, '2020-09-11', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', 'not sustain long term', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 12:58:29', 50, '2020-09-11 11:02:52', 0, NULL, 1),
(238, 'E. Rajaazhahi', '4', '9025948920', '7358189786', '', '1997-07-13', 23, '2', '2', 'R. Elangovan', 'Family situation', 30000.00, 1, 0.00, 17000.00, 'Saithapet', '1000lights', '2009100020', '1', '1', 'upload_files/candidate_tracker/12331281703_Interview.pdf', NULL, NULL, '2020-09-11', 0, '', '6', '', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 01:15:48', 50, '2020-09-10 04:37:13', 0, NULL, 1),
(239, 'jeyasudhan', '13', '9597854760', '', 'jsudhan63@gmail.com', '1998-03-30', 22, '2', '2', 'kumanan', 'Asphalt plant incharge -abroad', 50000.00, 0, 0.00, 15000.00, 'medavakkam chennai', 'medavakkam chennai', '2009100021', '1', '1', 'upload_files/candidate_tracker/35041968667_20200303_022259.pdf.pdf', NULL, NULL, '2020-09-11', 0, '', '5', '26', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', 'He Is Looking For The Job Because He Completed CSE, Importance Of Job Zero. He  Bought Final Year Project From Company And Submitted In College,  Dont Know What Is The Project He Done.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 01:16:16', 50, '2020-09-10 04:22:57', 0, NULL, 1),
(240, 'B. Premkumar', '4', '6374448557', '9500608032', '29prem.b@gmail.com', '1997-04-29', 23, '2', '2', 'K. Balu', 'Electrician', 15000.00, 0, 0.00, 14000.00, 'Villupuram', 'CMBT', '2009100022', '1', '1', 'upload_files/candidate_tracker/70619488596_PREM 2.docx', NULL, NULL, '2020-09-10', 0, '', '5', '21', NULL, 0.00, '01:38 PM', '', '1970-01-01', '2', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 01:36:30', 50, '2020-09-10 02:20:55', 0, NULL, 1),
(241, 'Sathish kumar s', '4', '8148851793', '8754481440', 'Sakthivel10893@gmail.com', '1993-08-10', 27, '2', '2', 'Sangaiyya p', 'Food stall', 20000.00, 2, 12500.00, 16000.00, '45, nerkundram pathai, vadapalani, chennai', '45, Nerkundram Pathai, Vadapalani, Chennai', '2009100023', '1', '2', 'upload_files/candidate_tracker/72545766722_SATHISH KUMAR.pdf', NULL, NULL, '2020-09-11', 1, '', '5', '21', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', 'expected high salary ,not sustain long term', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 01:43:04', 50, '2020-09-11 11:44:19', 0, NULL, 1),
(242, '', '0', '8056272170', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 01:59:18', 0, NULL, 0, NULL, 1),
(243, 'Syed Mansoor Habeeb', '5', '8072223273', '', 'janemansoor@gmail.com', '1985-01-11', 35, '2', '1', 'Syed kareemullah', 'Passed away', 21000.00, 3, 21000.00, 25000.00, 'Triplicane Chennai', 'Triplicane', '2009100025', '2', '2', 'upload_files/candidate_tracker/30025195695_Updated Mansoor CV.pdf', NULL, NULL, '2020-09-11', 1, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'No degree will not suite for Amgr.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 02:04:56', 1, '2020-09-10 04:01:53', 0, NULL, 1),
(244, 'S.jaya chitra', '4', '6383747149', '', 'chitraadithi53767@gmail.com', '1999-03-05', 21, '2', '2', 'K .sekar', 'Police constable', 40000.00, 1, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2009100026', '1', '1', 'upload_files/candidate_tracker/31248021689_1599485069868_Resume.pdf', NULL, NULL, '2020-09-11', 0, '', '3', '8', '2020-10-01', 9500.00, '11:00 AM', '6', '2020-12-19', '1', 'for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 02:13:52', 7, '2020-10-06 12:49:58', 0, NULL, 1),
(245, 'L.aswin Raja', '4', '7339448848', '8148350387', 'aswinraja017@gmail.com', '1998-01-23', 22, '2', '2', 'Lazer.T', 'Driving', 15000.00, 2, 0.00, 12000.00, 'Perungudi, Chennai', 'Perungudi', '2009100027', '1', '1', 'upload_files/candidate_tracker/63594067128_RESUME ASWIN .docx', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '0', '1970-01-01', '1', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 02:38:26', 50, '2020-09-14 03:17:58', 0, NULL, 1),
(246, '', '0', '6380981640', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 03:06:07', 0, NULL, 0, NULL, 1),
(247, 'PRAKASH. S', '5', '9790972766', '7092367201', 'Prakashsiva038@gmail.com', '1998-09-09', 22, '2', '2', 'SAKTHI. S', 'TANSI labour', 25000.00, 1, 15000.00, 17000.00, '6/813, mugappair west, chennai-37', '6/813, mugappair west, chennai-37', '2009100029', '4', '2', 'upload_files/candidate_tracker/52219184075_resume prakash.docx', NULL, NULL, '2020-09-11', 1, '', '5', '31', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'unable to understand english.  not wiling to make calls on regular basis', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 03:28:07', 1, '2020-09-11 09:52:45', 0, NULL, 1),
(248, 'A Kannan', '6', '7010371896', '8122278805', 'Ashokkannan10294@gmail.com', '1994-02-10', 26, '2', '2', 'Ashok', 'Labour', 25000.00, 1, 25000.00, 30000.00, 'kK nagar, Chennai.', 'KK Nagar, Chennai.', '2009100030', '1', '2', 'upload_files/candidate_tracker/33577762073_UPDATED RESUME_KANNAN A.pdf', NULL, NULL, '2020-09-11', 0, '', '3', '8', '2020-10-05', 29000.00, '11:30 AM', '6', '2021-03-25', '1', '29K. for Guru team shortlisted by sriram.', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 03:32:25', 7, '2020-10-22 05:12:25', 0, NULL, 1),
(249, 'Joshua Samuel A', '4', '9789968918', '9123557413', 'joshuasam025@gmail.com', '1997-05-25', 23, '2', '2', 'Anandharaj R(late)', 'Business', 15000.00, 1, 13000.00, 17000.00, 'Pallikaranai,Chennai', 'Pallikaranai, chennai', '2009100031', '1', '2', 'upload_files/candidate_tracker/97677281163_JOSHUA RESUME1-compressed.pdf', NULL, NULL, '2020-09-11', 0, '', '5', '41', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'Not attended the interview.Got job offer from another company', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 03:41:01', 1, '2020-09-10 04:01:36', 0, NULL, 1),
(250, 'test', '3', '8888888888', '', 'kayal.abelia@yahoo.com', '1994-05-04', 26, '3', '2', 'balu', 'acc', 20000.00, 0, 0.00, 20000.00, 'Kallakurichi', 'ch', '2009100032', '', '1', 'upload_files/candidate_tracker/72054471769_My_Resume.pdf', NULL, NULL, '2020-09-10', 0, '', '3', '41', '2020-09-12', 10000.00, '04:32 PM', '5', '1970-01-01', '2', 'nill', '2', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 04:30:46', 1, '2020-12-07 06:05:55', 0, NULL, 1),
(251, 'S. Saravanan', '4', '9551496957', '8838538323', 'Sarava07nan@gmail.com', '1995-07-24', 25, '2', '2', 'G. Sigamani', 'Coolie', 10000.00, 1, 12500.00, 15000.00, 'Adambakkam, chennai', 'Adambakkam, chennai', '2009100033', '1', '2', 'upload_files/candidate_tracker/16628649512_Resume.pdf', NULL, NULL, '2020-09-11', 1, '', '5', '8', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', 'rejected in telephonic.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 06:55:31', 50, '2020-09-11 11:06:18', 0, NULL, 1),
(252, 'R. Sandhiya', '4', '7200527139', '6382163849', 'sandhiyaramachandran97@gmail.com', '1997-10-14', 22, '2', '2', 'K. Ramachandran', 'Retired from office', 10000.00, 1, 12000.00, 16000.00, 'Chennai', 'Chennai', '2009100034', '1', '2', 'upload_files/candidate_tracker/89834212617_R Sandhiya Resume.docx', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '0', '1970-01-01', '2', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 07:17:36', 50, '2020-09-14 06:06:56', 0, NULL, 1),
(253, 'D. Hems', '7', '9791054843', '8072814884', 'hema.deva@ymail.com', '1989-06-08', 31, '2', '1', 'S. DEVARAJ', 'Asstiant Manager', 40000.00, 1, 2.50, 3.00, 'Chennai -kodambakkam', 'Chennai -kodambakkam', '2009100035', '1', '2', 'upload_files/candidate_tracker/23605777988_hema 1.pdf', NULL, NULL, '2020-09-12', 0, '', '5', '8', NULL, 0.00, '11:30 AM', '', '1970-01-01', '2', 'Salary exp is high. got hike in previous company 16500 and server 2 months and looking for job after covid19 and exp is 18+', '7', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 07:22:53', 50, '2020-09-11 03:05:48', 0, NULL, 1),
(254, '', '0', '9876543210', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 09:12:27', 0, NULL, 0, NULL, 1),
(255, 'A sivakumar', '5', '9884208290', '9087557769', 'Cocshiva2@gmail.com', '1996-09-05', 24, '2', '2', 'S.ashokan', 'Daily workers', 20000.00, 2, 20000.00, 15000.00, 'Perambur', 'Perambur', '2009100037', '2', '1', 'upload_files/candidate_tracker/45266932995_Resume (2).docx', NULL, NULL, '2020-09-11', 2, '', '3', '8', '2020-09-14', 18000.00, '10:30 AM', '5', '1970-01-01', '1', 'For GK team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:11:45', 7, '2020-10-07 05:42:44', 0, NULL, 1),
(256, 'Kowsalya', '4', '8220132838', '7305296486', 'kowsalyakumaresan286@gmail.com', '1998-06-28', 22, '1', '2', 'Kumaresan', 'Painting Workshop', 8000.00, 2, 0.00, 13000.00, 'Trichy', 'Arumbakam', '2009100038', '', '1', 'upload_files/candidate_tracker/17021285697_kowsalya.pdf', NULL, NULL, '2020-09-11', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'will not suite for CRM. will not join without her friend.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:39:35', 1, '2020-09-11 11:28:24', 0, NULL, 1),
(257, 'M Hemamalini', '4', '9443202748', '8122147532', 'Hemamalinim.10@gmail.com', '1992-04-10', 28, '2', '1', 'Gopinath R', 'Government Employee', 30000.00, 2, 0.00, 15000.00, 'Vellore', 'Chennai', '2009110001', '2', '1', 'upload_files/candidate_tracker/76396136338_Resume software.docx', NULL, NULL, '2020-09-11', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'not turned back after her exams.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 09:05:05', 1, '2020-09-11 09:10:45', 0, NULL, 1),
(258, 'Ramu C', '5', '9791061889', '', 'cramuece11793@gmail.com', '1993-06-15', 27, '2', '2', 'Cittarasan', 'Former', 60000.00, 2, 17000.00, 24000.00, 'Nagapattinam', 'Vadapalani', '2009110002', '1', '2', 'upload_files/candidate_tracker/69459540623_RESUME RAMU (2) (1).docx', NULL, NULL, '2020-09-11', 0, '', '5', '40', NULL, 0.00, '10:30 AM', '', '1970-01-01', '1', 'Not fit for job', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-11 09:40:06', 50, '2020-09-11 10:13:50', 0, NULL, 1),
(259, 'Manikandan R', '4', '7358420732', '', 'manikandanmk.2024@gmail.com', '1994-05-20', 27, '2', '2', 'Ramu E', 'Security supervisor', 17000.00, 0, 15000.00, 15000.00, '157/40 srinivasapuram Pattnabakkam', 'Chennai', '2009110003', '1', '2', 'upload_files/candidate_tracker/28531144810_MANI RESUME.pdf', NULL, '1', '2022-03-01', 6, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'will not suite for our profile', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '3', 'already attended interview in 2020\nhas exp in semi voice and kyc. prefers non voice process. will not sustain here.', '', 'H1010', '', NULL, NULL, NULL, 1, '2020-09-11 10:25:46', 85, '2022-03-01 06:58:03', 0, NULL, 1),
(260, 'Kiruba devi', '4', '8667604418', '9551807253', 'Kirubathanigaivel@gmail.com', '1998-11-24', 21, '2', '2', 'Thanigaivel.R', 'Attender in st.thomas college of arts and science', 30000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2009110004', '4', '2', 'upload_files/candidate_tracker/85128070828_kiruba Resume Mps.docx', NULL, NULL, '2020-09-11', 30, '', '3', '8', '2020-09-24', 11000.00, '10:00 AM', '2', '1970-01-01', '2', 'for muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 10:40:47', 7, '2020-10-07 05:42:58', 0, NULL, 1),
(261, 'Hemamalini', '4', '8122147532', '9443202748', 'HemaMALINI.10@gmail.com', '1992-04-10', 28, '2', '1', 'Gopinath R', 'M.Sc(IT)', 35000.00, 2, 0.00, 15000.00, 'Vellore', 'Chennai', '2009110005', '2', '1', 'upload_files/candidate_tracker/37107368160_Resume software.docx', NULL, NULL, '2020-09-11', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 10:57:48', 1, '2020-09-11 11:00:44', 0, NULL, 1),
(262, 'Lizha s', '4', '7540019737', '8489166896', 'Leezaraizz@gmail.com', '1997-08-31', 23, '1', '2', 'Soosai dhas s', 'Building worker', 10000.00, 2, 10.50, 12.00, '4/96A,midalakkadu,kanyakumari 629159', '16/2Cemetry road,Old Washermanpet, Chennai 21', '2009110006', '', '2', 'upload_files/candidate_tracker/33515876349_Lizha_Resume.pdf', NULL, NULL, '2020-09-11', 1, '', '5', '8', NULL, 0.00, '11:08 AM', '0', NULL, '2', 'will not Sustain and will not join Without her friend.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 10:59:26', 1, '2020-09-11 11:17:33', 0, NULL, 1),
(263, '', '0', '8807193619', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009110007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 11:01:08', 0, NULL, 0, NULL, 1),
(264, 'Iyyappan', '6', '7401455585', '9176924960', 'iyyappaammu38@gmail.com', '1999-06-28', 21, '1', '2', 'A.v.rajendran', 'Dead', 12000.00, 2, 12000.00, 15000.00, 'No.6 raja St Devaraj Nagar saligramam Chennai-93', 'No.6 raja St Devaraj Nagar saligramam Chennai -93', '2009110008', '', '2', 'upload_files/candidate_tracker/72300119707_Iyyappa CV-2.docx', NULL, NULL, '2020-09-11', 5, 'Mohan Raj', '5', '19', NULL, 0.00, '11:46 AM', '', '1970-01-01', '1', 'not fit for sales job', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 11:40:36', 50, '2020-09-11 01:22:02', 0, NULL, 1),
(265, 'Indirabai Saravanasingh', '5', '9600844295', '8148128913', 'indirasaravanan5@gmail.com', '1995-10-28', 24, '1', '2', 'Saravanasingh', '-', 40000.00, 2, 18000.00, 23000.00, '14/1, janappa street, krishnapuram, ambur-635802', '7, lakshmi nagar, guduvanchery-603202', '2009110009', '', '2', 'upload_files/candidate_tracker/20719286186_indra saravanan.pdf', NULL, NULL, '2020-09-11', 0, '5500', '3', '8', '2020-09-14', 18000.00, '12:21 PM', '2', '1970-01-01', '2', 'Agreed with 18K+inc. as she is fresher for RM profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 12:16:39', 7, '2020-10-07 05:43:17', 0, NULL, 1),
(266, 'Hariharan', '6', '9941596497', '', 'hariharan500@rocketmail.com', '1989-06-13', 31, '2', '2', 'Sukumaran', 'Retired railway employee', 15000.00, 2, 14090.00, 18000.00, 'Chennai', 'Chennai', '2009110010', '1', '2', 'upload_files/candidate_tracker/81545735088_ece-time-table-1.pdf', NULL, NULL, '2020-09-11', 0, '', '5', '19', NULL, 0.00, '12:43 PM', '0', NULL, '1', 'not fit for sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-11 12:27:28', 1, '2020-09-11 12:48:29', 0, NULL, 1),
(267, 'i john peter', '6', '9941379163', '8608844167', 'john.july22@gmail.com', '1989-07-22', 31, '2', '1', 'irudhayaraj', 'retired', 20000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2009110011', '1', '1', 'upload_files/candidate_tracker/84718555553_CV_2020-09-04-040235.pdf', NULL, NULL, '2020-09-12', 0, '', '5', '16', NULL, 0.00, '12:00 PM', '', '1970-01-01', '1', 'He Is Working  Past Company 2 Yrs ,Currently Close That Company ,But He Go Out Or Left Any Time Sustain Doubt', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-11 12:38:44', 50, '2020-09-11 12:58:52', 0, NULL, 1),
(268, '', '0', '9600488301', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009110012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 01:01:23', 0, NULL, 0, NULL, 1),
(269, 'SURENDHAR M', '5', '9080483964', '', 'mssurendhar123@gmail.com', '1995-12-03', 24, '2', '2', 'Maheswaran r', 'Ex army', 95000.00, 1, 14000.00, 15000.00, 'kanchipuram', 'kanchipuram', '2009110013', '1', '2', 'upload_files/candidate_tracker/85504037169_resume .docx', NULL, NULL, '2020-09-12', 1, '', '5', '29', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Doesnxquott suit for any profile', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-11 01:13:34', 7, '2020-09-15 06:13:22', 0, NULL, 1),
(270, 'MN VINOTH', '6', '8939900103', '8939900105', 'vinothmn89@gmail.com', '1989-11-11', 30, '2', '1', 'M Nithyanandan', 'Diploma in automobile engineering', 35000.00, 0, 35500.00, 41000.00, 'Chennai', 'Chennai', '2009110014', '1', '2', 'upload_files/candidate_tracker/6249649565_Vinoth Resume.pdf', NULL, NULL, '2020-09-14', 1, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-11 01:58:16', 1, '2020-09-11 05:44:07', 0, NULL, 1),
(271, 'dhivya s r', '13', '8754059573', '9952427685', 'dhivyarajagopal90@gmail.com', '1990-02-24', 30, '1', '1', 'mukesh v', 'hr', 85000.00, 0, 700000.00, 100000.00, 'chengalpattu', 'chennai', '2009110015', '', '2', 'upload_files/candidate_tracker/94245926809_Dhivya Resume.docx', NULL, NULL, '2020-09-11', 30, 'subu', '5', '26', NULL, 0.00, '02:34 PM', '0', NULL, '1', 'her expected salary 74 k, According to us she is not matching with our spec and Excepted salary also high.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 02:23:14', 1, '2020-09-11 02:35:31', 0, NULL, 1),
(272, '', '0', '8825708819', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009110016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 09:04:24', 0, NULL, 0, NULL, 1),
(273, '', '0', '7890654321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009110017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 10:24:18', 0, NULL, 0, NULL, 1),
(274, '', '0', '9121906605', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 10:13:02', 0, NULL, 0, NULL, 1),
(275, 'V. Saktheeswari', '4', '8124280809', '9514084844', 'Sakthisri2018@gmail.com', '1998-04-25', 22, '2', '2', 'E. Venkatesan', 'Cooli', 15000.00, 2, 12000.00, 15000.00, 'triplicane', 'Sanatorium', '2009120002', '1', '2', 'upload_files/candidate_tracker/7822506684_Resume-24-Mar-2019.pdf', NULL, NULL, '2020-09-15', 15, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '0', '1970-01-01', '2', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 10:14:15', 50, '2020-09-15 09:35:09', 0, NULL, 1),
(276, 'Shahul hameed imran', '5', '8838475783', '9940614966', 'imransahar1989@gmail.com', '1985-12-01', 34, '2', '1', 'Rajeeruddin ansari', 'Nil', 25000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2009120003', '3', '2', 'upload_files/candidate_tracker/4474530393_imran resume.doc', NULL, NULL, '2020-10-01', 1, '', '3', '8', '2020-11-05', 252000.00, '11:41 AM', '2', '1970-01-01', '1', '21K for rajkumar team', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 10:27:04', 7, '2020-10-31 03:06:25', 0, NULL, 1),
(277, '', '0', '9789489528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 10:34:21', 0, NULL, 0, NULL, 1),
(278, 'T. Sharmila', '4', '9080479601', '9710468360', 'sharmilatamil87@gmail.com', '2000-07-08', 20, '5', '2', 'P. Tamilarasu', 'Ration shop', 12000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2009120005', '', '1', 'upload_files/candidate_tracker/10250424109_new Sharmila .docx', NULL, NULL, '2020-09-14', 0, '', '8', '8', NULL, 0.00, '03:00 PM', '0', NULL, '2', 'assigned to test. ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 10:49:40', 1, '2020-09-12 11:24:51', 0, NULL, 1),
(279, '', '0', '9025622653', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 10:59:35', 0, NULL, 0, NULL, 1),
(280, '', '0', '9384424525', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 11:07:48', 0, NULL, 0, NULL, 1),
(281, '', '0', '9884509418', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 11:09:40', 0, NULL, 0, NULL, 1),
(282, '', '0', '9962030090', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 11:14:32', 0, NULL, 0, NULL, 1),
(283, 'Mary Lavanya .U', '4', '9677179289', '8754426278', 'lavanyamary21@gmail.com', '1996-04-21', 24, '2', '2', 'Uthiriyadass. A', 'Ironing', 10000.00, 0, 10500.00, 11000.00, 'St.Thomas mount', 'St.Thomas mount', '2009120010', '4', '2', 'upload_files/candidate_tracker/12552403650_Lavanya Resume.docx', NULL, NULL, '2020-09-14', 0, '', '3', '8', '2020-09-17', 10500.00, '10:00 AM', '2', '1970-01-01', '2', 'for priyanka jenit team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 11:21:35', 7, '2020-10-07 05:44:03', 0, NULL, 1),
(284, '', '0', '8056071104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 11:24:56', 0, NULL, 0, NULL, 1),
(285, 'Test Jaffer', '13', '9840349400', '', 'moonsat08@gmail.com', '1985-09-12', 35, '2', '2', 'anwar', 'Former', 5000.00, 2, 15000.00, 20000.00, 'Tuticorin', 'chennai', '2009120012', '1', '2', 'upload_files/candidate_tracker/82613173816_dummy.pdf', NULL, NULL, '2020-09-12', 30, '', '3', '41', '2020-09-12', 20000.00, '11:44 AM', '2', '1970-01-01', '2', 'nill', '2', '2', '1', '1', '1', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 11:42:34', 1, '2020-09-12 02:58:47', 48, '2020-09-23 03:20:44', 0),
(286, 'Franka I', '4', '9080540255', '9092383964', 'frankpinky81143@gmail.com', '1997-11-08', 22, '2', '2', 'Uruguayan C R', 'Ironing', 10000.00, 1, 10000.00, 10500.00, 'St.Thomas mount', 'St.Thomas mount', '2009120013', '4', '2', 'upload_files/candidate_tracker/16652769448_attachment.docx', NULL, NULL, '2020-09-14', 0, '', '5', '13', '1970-01-01', 0.00, '10:00 AM', '0', '1970-01-01', '2', 'expected salary high', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 11:53:31', 50, '2020-09-14 12:17:28', 0, NULL, 1),
(287, '', '0', '9626206362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 12:15:32', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(288, 'Saravanan.P', '4', '9150277375', '9176472146', 'Josaravana1998@gmail.com', '1998-03-14', 22, '1', '2', 'Paramasivam', 'cooli', 15000.00, 5, 0.00, 11000.00, 'Chennai', 'chennai', '2009120015', '', '1', 'upload_files/candidate_tracker/82170162957_resume pdf.pdf', NULL, NULL, '2020-09-12', 0, '', '5', '21', NULL, 0.00, '12:36 PM', '0', NULL, '1', 'fake  details', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 12:25:58', 1, '2020-09-12 12:54:09', 0, NULL, 1),
(289, 'Bharat Singh', '6', '8056330474', '9443345103', 'bss17051995@gmail.com', '1995-05-17', 25, '2', '2', 'Bhagwan singh.K', 'Service', 65000.00, 1, 22500.00, 25000.00, '33, sai krupa nagar,janapachatram junction, ch-67', '33, Sai Krupa Nagar,Janapachatram Junction, Ch-67', '2009120016', '1', '2', 'upload_files/candidate_tracker/37687911240_1592844385784Resume_Bharat.pdf', NULL, NULL, '2020-09-14', 0, '', '3', '8', '2020-09-17', 20000.00, '11:00 AM', '2', '1970-01-01', '1', 'for Gaurav team', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 01:00:06', 7, '2020-10-07 05:46:27', 0, NULL, 1),
(290, 'Rajesh karthik s', '5', '9500301220', '6384884106', 'karthikhira@gmail.com', '1988-11-20', 31, '2', '2', 'Sri ranganathan', 'A E.O', 30000.00, 0, 18000.00, 25000.00, 'Poonamalle', 'Poonamalle', '2009120017', '1', '2', 'upload_files/candidate_tracker/40802224142_karthik new res.docx', NULL, NULL, '2020-09-15', 26, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '0', '1970-01-01', '1', NULL, '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 02:16:13', 50, '2020-09-15 01:45:11', 0, NULL, 1),
(291, 'Kaviarasu', '6', '9629032759', '9629032759', 'Krishkavi.km@gmail.com', '1996-05-24', 24, '5', '2', 'Kalimuthu(late)', '-', 200000.00, 1, 0.00, 18000.00, 'Tenkasi', 'Chennai', '2009120018', '', '1', 'upload_files/candidate_tracker/26112903909_kavi resume perf.docx', NULL, NULL, '2020-09-12', 0, '', '6', '0', NULL, 0.00, '02:40 PM', '0', NULL, '2', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 02:37:28', 1, '2020-09-12 02:40:53', 0, NULL, 1),
(292, '', '0', '9600695071', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 03:13:19', 0, NULL, 0, NULL, 1),
(293, 'Devapriya M', '4', '7358751730', '9087835851', 'devasmile30aug@gmail.com', '1998-06-30', 22, '1', '2', 'Marimuthu K', 'Car driver', 20000.00, 2, 17000.00, 20000.00, 'No.10/4, Mosque Colony 17th St. Guindy, ch -32.', 'No 10/4, Mosque Colony 17th St. Guindy, Ch -32', '2009120020', '', '2', 'upload_files/candidate_tracker/23487968994_DEVAPRIYA M_RESUME.pdf', NULL, NULL, '2020-09-15', 15, 'sarathvimal', '5', '21', '1970-01-01', 0.00, '11:00 AM', '0', '1970-01-01', '1', 'expected 18 k salary for crm', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 03:16:55', 50, '2020-09-15 11:15:29', 0, NULL, 1),
(294, 'Bharath R', '4', '7708446118', '', 'bharathtsr1498@gmail.com', '1998-02-14', 22, '2', '2', 'Rajan S', 'Kooli', 12000.00, 1, 0.00, 10000.00, 'Pammal', 'Pammal', '2009120021', '1', '1', 'upload_files/candidate_tracker/47261694392_Bharath R_Resume@Vels.docx', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '0', '1970-01-01', '2', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 03:30:13', 50, '2020-09-14 09:22:02', 0, NULL, 1),
(295, '', '0', '8072730713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 04:44:07', 0, NULL, 0, NULL, 1),
(296, 'abinaya p', '4', '8248722493', '', 'abinayasri626@gmail.com', '1997-10-04', 22, '2', '2', 'pandian m', 'driver', 30000.00, 1, 23500.00, 25000.00, 'chennai', 'chennai', '2009120023', '4', '2', 'upload_files/candidate_tracker/30245307306_Abi Resume.pdf', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '0', '1970-01-01', '2', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 05:16:01', 50, '2020-09-14 06:18:16', 0, NULL, 1),
(297, 'Priyadharshini', '9', '9677299143', '9940696477', 'priya1728ramesh@gmail.com', '1999-10-17', 20, '2', '2', 'Sivakumar', 'Press', 12000.00, 1, 0.00, 15000.00, 'Purasaiwalkam', 'Purasaiwalkam', '2009120024', '1', '1', 'upload_files/candidate_tracker/27202464249_priyadharshini.s.docx', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 05:36:30', 50, '2020-10-06 09:42:08', 0, NULL, 1),
(298, 'priyanka', '4', '1234567891', '', '', '2000-09-12', 20, '2', '2', 'rajagopal', 'hr recruiter', 20000.00, 1, 0.00, 25000.00, 'chrompet', 'chrompet', '2009120025', '1', '1', 'upload_files/candidate_tracker/41959273079_dummy resume.docx', NULL, NULL, '2020-09-14', 0, '', '6', '0', NULL, 0.00, '09:40 AM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 06:31:57', 1, '2020-09-12 06:34:21', 0, NULL, 1),
(299, 'Karthika.R', '4', '9629701199', '9629701199', 'karthikar211198@gmail.com', '1998-11-02', 21, '2', '2', 'M.Ramesh', 'BE(Current)', 60000.00, 2, 0.00, 15000.00, 'Guindy,chennai', 'Guindy,chennai', '2009120026', '1', '1', 'upload_files/candidate_tracker/89477364171_Karthika[2].pdf', NULL, NULL, '2020-09-14', 0, '', '3', '8', '1970-01-01', 10000.00, '11:00 AM', '2', '1970-01-01', '2', '10K for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 06:33:48', 7, '2020-10-06 01:09:32', 0, NULL, 1),
(300, 'banu', '4', '1234567892', '', '', '2005-09-12', 15, '1', '1', 'aaaaa', 'md', 70000.00, 1, 0.00, 25000.00, 'avadi', 'mathur', '2009120027', '', '1', 'upload_files/candidate_tracker/52705073060_dummy resume.docx', NULL, NULL, '2020-09-14', 0, 'ca', '6', '0', NULL, 0.00, '11:20 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 06:35:49', 1, '2020-09-12 06:37:31', 50, '2020-09-14 10:22:49', 0),
(301, 'qqqqqq', '4', '1234567893', '', '', '2005-09-12', 15, '2', '2', 'rajagopal', 'hr recruiter', 20000.00, 1, 0.00, 25000.00, 'chrompet', 'chrompet', '2009120028', '1', '1', 'upload_files/candidate_tracker/75374220061_dummy resume.docx', NULL, NULL, '2020-09-14', 0, '', '6', '0', NULL, 0.00, '11:20 AM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 06:44:41', 1, '2020-09-12 06:45:48', 0, NULL, 1),
(302, 'test sathish', '3', '9715880777', '', 'sathish@cafsinfotech.in', '1994-05-04', 26, '1', '2', 'sesb', 'sedbbs', 20000.00, 0, 0.00, 20000.00, 'd bsdd', 'svvsdv', '2009120029', '', '1', 'upload_files/candidate_tracker/67265589950_My_Resume.pdf', NULL, NULL, '2020-09-12', 0, '1234', '3', '41', '2020-09-12', 10000.00, '04:21 PM', '7', '2020-09-15', '2', 'nill', '2', '2', '1', '1', '1', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 07:20:33', 1, '2020-09-12 07:43:32', 0, NULL, 1),
(303, 'Karthika.R', '4', '9345273192', '9629701199', 'karthikar211198@gmail.com', '1998-11-02', 21, '4', '2', 'M.Ramesh', 'B.E(Current)', 4000.00, 2, 0.00, 15000.00, 'Guindy,chennai', 'Guindy,chennai', '2009120030', '', '1', 'upload_files/candidate_tracker/95732842980_Karthika[2].pdf', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '0', '1970-01-01', '2', NULL, '1', '1', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 08:28:18', 50, '2020-09-14 06:17:46', 7, '2020-10-06 12:51:08', 0),
(304, 'Swathy anandan', '4', '7092218387', '9843145452', 'Swathylsanandan@gmail.com', '1997-05-20', 23, '2', '2', 'G.Anandan', 'driver', 10000.00, 1, 11000.00, 17000.00, 'Chennai', 'chennai', '2009130001', '1', '2', 'upload_files/candidate_tracker/82058233910_Resume.pdf', NULL, NULL, '2020-09-23', 15, '', '6', '0', NULL, 0.00, '02:35 PM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-13 02:31:13', 1, '2020-09-13 02:41:45', 0, NULL, 1),
(305, 'Abishek Prasanth', '4', '6361562996', '9742671857', 'abishekprasa@gmail.com', '1995-10-05', 24, '2', '2', 'Narasimhappa', 'employed', 10000.00, 1, 0.00, 14000.00, 'peenya', 'peenya', '2009130002', '7', '1', 'upload_files/candidate_tracker/21327383964_Abhishek_Telecaller_CAFS.docx', NULL, NULL, '2020-09-14', 0, '', '5', '38', '1970-01-01', 0.00, '11:30 AM', '0', '1970-01-01', '2', 'bad outlook xxamp he will not suit for our field ', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-13 03:04:03', 38, '2020-09-14 03:51:12', 0, NULL, 1),
(306, '', '0', '9148935943', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009130003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-13 03:57:55', 0, NULL, 0, NULL, 1),
(307, 'Anil kumar. V', '4', '9731289194', '', 'anil67312@gmail.com', '1993-03-19', 27, '2', '2', 'Venkatesh', 'labour', 12000.00, 1, 17000.00, 19000.00, 'kurubahalli', 'Venkatesh', '2009130004', '7', '2', 'upload_files/candidate_tracker/20276141678_Anil_Telecaller_CAFS.docx', NULL, NULL, '2020-09-14', 0, '', '5', '38', NULL, 0.00, '11:30 AM', '0', NULL, '1', 'he dont know how to behave in office....', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-13 08:07:30', 1, '2020-09-13 08:28:25', 0, NULL, 1),
(308, 'GIRISH GOWDA. V', '4', '8105046024', '8217309183', 'Girishgowds567@email.com', '1998-05-19', 22, '2', '2', 'VENUGOPAL. R', 'Agriculture', 20000.00, 1, 18000.00, 20000.00, 'Kunchigarapalya tharlu post Bangalore 560082', 'Kaggalipura', '2009130005', '7', '2', 'upload_files/candidate_tracker/5333414275_Girish Gowda_Telecaller_CAFS.docx', NULL, NULL, '2020-09-14', 1, '', '5', '38', '1970-01-01', 0.00, '12:00 PM', '0', '1970-01-01', '1', 'will not sustain xxamp not good in communication', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-13 08:40:36', 50, '2020-09-14 11:51:42', 0, NULL, 1),
(309, '', '0', '7092028489', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009140001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 09:38:55', 0, NULL, 0, NULL, 1),
(310, 'Merlin Rajkumar', '4', '7904617195', '8148705568', 'merlinrajkumar@gmail.com', '1993-08-19', 27, '2', '2', 'Christopher.d', 'Civil Engineer', 20000.00, 0, 18000.00, 18000.00, 'CHENNAI', 'CHENNAI', '2009140002', '1', '2', 'upload_files/candidate_tracker/32136278453_Merlin Rajkumar resume.pdf.pdf', NULL, NULL, '2020-09-15', 0, '', '5', '21', '1970-01-01', 0.00, '11:30 AM', '0', '1970-01-01', '1', 'expecting 16 k for crm', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 10:08:59', 21, '2020-09-15 12:44:14', 0, NULL, 1),
(311, 'b dharani', '4', '8056211236', '9840801849', 'dhaaranibabu143@gmail.com', '1998-02-22', 22, '2', '2', 'v badbanaban', 'late', 20000.00, 2, 11000.00, 15000.00, 'westmambalam', 'westmambalam', '2009140003', '2', '2', 'upload_files/candidate_tracker/33489354666_BDharani.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '21', NULL, 0.00, '11:31 AM', '0', NULL, '1', 'not sustain long term,low voice ,', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 10:11:41', 1, '2020-09-16 12:25:01', 0, NULL, 1),
(312, 'Ms J Rupah', '7', '9962354195', '', 'Jayaramanbhavani20@gmail.com', '1996-09-16', 23, '1', '2', 'Mr N Jeyaraman', 'Prohit', 30000.00, 0, 12000.00, 18000.00, 'Chennai', 'Chennai', '2009140004', '', '2', 'upload_files/candidate_tracker/291550419_Rupah96.pdf', NULL, NULL, '2020-09-14', 1, '5177', '5', '35', NULL, 0.00, '10:23 AM', '0', NULL, '2', 'Communication Not Well, no about her Previous Company, ', '7', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 10:17:24', 1, '2020-09-14 10:26:08', 0, NULL, 1),
(313, '', '0', '9080716503', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009140005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 10:22:49', 0, NULL, 0, NULL, 1),
(314, '', '0', '9843796615', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009140006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 10:25:07', 0, NULL, 0, NULL, 1),
(315, 'Mathan S', '4', '8883832062', '8925328145', 'mathan.s011994@gmail.com', '1994-01-10', 26, '2', '2', 'Subramanian M', 'Farmer', 30000.00, 4, 0.00, 15000.00, 'Thiruvarur', 'Chennai', '2009140007', '1', '1', 'upload_files/candidate_tracker/73794269390_Madhvan Rsm.docx', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '02:00 PM', '0', '1970-01-01', '1', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 10:43:47', 50, '2020-09-14 06:17:31', 0, NULL, 1),
(316, 'M.Karthik', '4', '8296128505', '8296128505', 'kachurao@gmail.com', '1989-10-25', 30, '2', '2', 'M.Mohanrao', 'eeo', 30000.00, 2, 14000.00, 16000.00, 'vidyaranipura', 'Vidyaranipura', '2009140008', '7', '2', 'upload_files/candidate_tracker/82077449999_Karthik_Telecaller_CAFS.doc', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '0', '1970-01-01', '1', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 10:57:35', 50, '2020-09-14 06:17:03', 0, NULL, 1),
(317, 'Khan Mohamed', '4', '6382063054', '9710116743', 'khan.km478@gmail.comkh', '1996-06-20', 24, '2', '2', 'Saluga banu', 'Nil', 15000.00, 1, 12500.00, 12500.00, 'Chrompet', 'Chrompet', '2009140009', '1', '2', 'upload_files/candidate_tracker/60930794905_Resume.pdf', NULL, NULL, '2020-09-14', 1, '', '5', '21', '1970-01-01', 0.00, '11:10 AM', '0', '1970-01-01', '2', 'low confidence,not bold', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 11:02:20', 21, '2020-09-14 02:31:55', 0, NULL, 1),
(318, 'Ramesh pillar', '4', '8056286705', '7904878211', 'r.rameshpillar@gmail.com', '1996-10-05', 23, '2', '2', 'RAJANGAM', 'Nil', 15000.00, 1, 15000.00, 12500.00, 'Chromepet', 'Chromepet', '2009140010', '10', '2', 'upload_files/candidate_tracker/94169394046_Ramesh resume 7-2020.pdf', NULL, NULL, '2020-09-14', 1, '', '5', '14', '1970-01-01', 0.00, '11:26 AM', '0', '1970-01-01', '1', 'not fit for this profile', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:03:33', 50, '2020-09-14 12:00:11', 0, NULL, 1),
(319, 'Akash A', '6', '9941106942', '9551636412', 'akashkavi1911@gmail.com', '1996-11-18', 23, '2', '2', 'Anbu V', 'Fisherman', 15000.00, 2, 0.00, 15000.00, 'Ennore', 'Ennore', '2009140011', '8', '1', 'upload_files/candidate_tracker/94320843575_CV_2020-09-13-014133.pdf', NULL, NULL, '2020-09-14', 0, '', '5', '15', '1970-01-01', 0.00, '11:17 AM', '0', '1970-01-01', '1', 'no sustainability need 18k salary', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:05:07', 15, '2020-09-14 02:43:26', 0, NULL, 1),
(320, '', '0', '9964255237', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009140012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:06:17', 0, NULL, 0, NULL, 1),
(321, 'Kaleeshwari.k', '4', '8925128023', '8925128023', 'Mallikakaleeshwari@gmail.com', '1999-06-11', 21, '2', '2', 'T.Kalidas', 'Coole', 4000.00, 1, 0.00, 15000.00, 'Thirisulam', 'Thirisulam', '2009140013', '1', '1', 'upload_files/candidate_tracker/25211795906_Kaleeshwari Resume.doc', NULL, NULL, '2020-09-14', 0, '', '5', '21', '1970-01-01', 0.00, '11:18 AM', '0', '1970-01-01', '2', 'not sustain long term', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 11:14:07', 50, '2020-09-14 11:41:06', 0, NULL, 1),
(322, 'Arun Kumar. B', '5', '9840400525', '', 'Arunneverlies@gmail.com', '1987-07-31', 33, '2', '2', 'Bhaskar', 'Driver', 20000.00, 0, 18000.00, 20000.00, 'Chennai', 'Nandanam', '2009140014', '8', '2', 'upload_files/candidate_tracker/37675245427_arun Pdf_14Sep20_6.pdf', NULL, NULL, '2020-09-14', 0, '', '3', '8', '2020-09-17', 21000.00, '11:44 AM', '6', '1970-01-01', '1', '21K. for Guru team', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:19:45', 7, '2020-10-07 05:43:42', 0, NULL, 1),
(323, 'SILAMBARSAN M', '6', '9940587882', '9962101148', 'simbujothy@gmail.com', '1999-05-01', 21, '1', '2', 'MURUGAN', 'Daily wages', 15000.00, 1, 15000.00, 17000.00, 'TIRUVANNAMALAI', 'CHENNAI', '2009140015', '', '2', 'upload_files/candidate_tracker/30142023375_Sim.pdf', NULL, NULL, '2020-09-14', 0, '5616', '5', '24', '1970-01-01', 0.00, '11:33 AM', '0', '1970-01-01', '1', 'slary expc high', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:23:55', 50, '2020-09-14 12:34:29', 0, NULL, 1),
(324, 'KARTHICK A', '4', '9597988652', '9345769686', 'karthick7798@gmail.com', '1999-01-26', 21, '1', '2', 'APPAVU', 'DAILY wages', 15000.00, 2, 0.00, 18000.00, 'thiruvannmmalai', 'Chennai', '2009140016', '', '1', 'upload_files/candidate_tracker/5047512985_1599288746447_1599288746250_KARTHICK RESUME.pdf', NULL, NULL, '2020-09-14', 0, '5716', '8', '14', '1970-01-01', 0.00, '11:35 AM', '0', '1970-01-01', '2', 'Not attend the interview', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:24:09', 7, '2020-09-14 02:49:26', 0, NULL, 1),
(325, 'Srija T S', '5', '8637652750', '9176006594', 'Srijavaradha03@gmail.com', '1998-08-07', 22, '2', '2', 'Murali T S', 'Prohit', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2009140017', '8', '1', 'upload_files/candidate_tracker/92816085060_SRIJA TS RESUME.pdf', NULL, NULL, '2020-09-14', 0, '', '5', '18', '1970-01-01', 0.00, '11:55 AM', '0', '1970-01-01', '1', 'Not interested in sales', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:28:19', 8, '2020-09-14 01:13:17', 0, NULL, 1),
(326, 'G.jasminegracy', '4', '7397259019', '9841334119', 'jasminegracy000@gmail.com', '1998-04-11', 22, '2', '2', 'George.R', 'Lic (substaff)', 15000.00, 1, 0.00, 10000.00, 'No:14/8 18th st ashok ng ch-83', 'No:14/8 18th st Ashok ng ch-83', '2009140018', '2', '1', 'upload_files/candidate_tracker/38122707097_resume.docx', NULL, NULL, '2020-09-14', 0, '', '3', '8', '2020-09-17', 10000.00, '11:50 AM', '3', '2020-09-19', '2', 'for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:41:32', 7, '2020-10-07 05:45:03', 0, NULL, 1),
(327, 'ravi d c', '5', '7975697686', '', 'rtavidc35@gmail.com', '1992-05-19', 28, '2', '1', 'channachari', 'business', 25000.00, 1, 18000.00, 18000.00, 'yelanka', 'yelanka', '2009140019', '7', '2', 'upload_files/candidate_tracker/47064371888_Ravi D S_Telecaller_CAFS.docx', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '0', '1970-01-01', '1', NULL, '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:45:25', 50, '2020-09-14 06:16:50', 0, NULL, 1),
(328, 'Lakshmanan.T', '5', '7395984216', '9500195829', 'rainalux94@gmail.com', '1994-07-31', 26, '2', '2', 'Thanikachalam.R', 'Auto driver', 10000.00, 2, 3.00, 3.80, 'Chennai', 'Chennai', '2009140020', '3', '2', 'upload_files/candidate_tracker/54473771069_Update Resume31.pdf', NULL, NULL, '2020-09-14', 7, '', '5', '31', '1970-01-01', 0.00, '12:17 PM', '0', '1970-01-01', '1', 'will not fit for our profile', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 12:09:17', 31, '2020-09-15 01:01:32', 0, NULL, 1),
(329, 'G. Dinakaran', '6', '8939244366', '8939011708', 'allendina6295@gmail.com', '1997-01-13', 23, '1', '2', 'M. Govintharaj', 'Business', 15000.00, 1, 0.00, 16000.00, '9/A T. H Road 4th Lane Tondiarpet Chennai', '9/A T. H Road 4th Lane Tondiarpet Chennai', '2009140021', '', '1', 'upload_files/candidate_tracker/25166983055_bala frnd resume.pdf', NULL, NULL, '2020-09-14', 0, '5581', '3', '8', '2020-09-17', 13000.00, '12:51 PM', '5', '1970-01-01', '1', 'For ramesh team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 12:41:52', 7, '2020-10-07 05:45:32', 0, NULL, 1),
(330, 'Kuruba harish', '10', '9490684530', '', 'harikuruba44@gmail.com', '1996-04-10', 24, '1', '2', 'mallappa', 'agri', 40000.00, 1, 0.00, 16000.00, 'kandukuripallii roddam', 'kodhihalli bangalo', '2009140022', '', '1', 'upload_files/candidate_tracker/44859291744_new doc 2020-09-14 13:16:12.pdf', NULL, NULL, '2020-09-14', 0, '5490', '8', '', '1970-01-01', 0.00, '01:00 PM', '0', '1970-01-01', '1', NULL, '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 12:54:11', 50, '2020-09-14 06:16:41', 0, NULL, 1),
(331, 'guna sekar', '6', '9566242302', '', 'gunasekar1010@gmail.com', '1994-05-31', 26, '2', '2', 'jayapal', 'business', 25000.00, 2, 0.00, 16000.00, 'chennai', 'chennai', '2009140023', '1', '1', 'upload_files/candidate_tracker/95496975214_resume (2).pdf', NULL, NULL, '2020-09-15', 0, '', '5', '24', '1970-01-01', 0.00, '03:00 PM', '0', '1970-01-01', '1', 'voice of clarity is low average  .. implement is poor for existing job ', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 01:23:49', 50, '2020-09-15 09:50:20', 0, NULL, 1),
(332, 'Sathish. S', '5', '9688729797', '8667889625', 'sathishastro57@gmail.com', '1993-05-20', 27, '1', '2', 'Sekar. A', 'Late', 15000.00, 2, 362000.00, 400000.00, 'Ariyalur', 'Chennai', '2009140024', '', '2', 'upload_files/candidate_tracker/44888984452_sathish.pdf', NULL, NULL, '2020-09-14', 7, '5570', '3', '8', '2020-09-28', 30000.00, '02:13 PM', '2', '1970-01-01', '1', '30K for Lokesh team', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 01:45:51', 7, '2020-10-07 05:45:45', 0, NULL, 1),
(333, 'M.Rajeswari', '4', '7358228517', '9345785043', 'mraji1678@gmail.com', '1999-05-26', 21, '2', '2', 'P.Manoharan', 'Nil', 25000.00, 2, 12000.00, 18000.00, 'Chennai', 'Chennai', '2009140025', '1', '2', 'upload_files/candidate_tracker/57017036402_Resume.pdf', NULL, NULL, '2020-09-15', 26, '', '3', '8', '2020-09-17', 11500.00, '11:00 AM', '2', '1970-01-01', '2', 'for Dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 02:00:23', 7, '2020-10-07 05:47:26', 0, NULL, 1),
(334, 'Anusha T', '4', '9345785043', '7358228517', 'Anusha28.k.chn@gmail.com', '1996-08-28', 24, '2', '2', 'D.Thangapandian', 'Retired contractor', 25000.00, 1, 12500.00, 16000.00, 'Perambur', 'Chennai', '2009140026', '1', '2', 'upload_files/candidate_tracker/63211240783_Anusha T Resume.doc', NULL, NULL, '2020-09-15', 26, '', '8', '8', '1970-01-01', 0.00, '11:00 AM', '0', '1970-01-01', '2', 'left before interview', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 02:00:47', 50, '2020-09-14 04:04:43', 0, NULL, 1),
(335, 'A Jayanthi', '4', '9962683370', '7358562200', 'jayanthianand11@gmail.com', '1992-09-11', 28, '2', '2', 'R anandhan', 'Driver', 15000.00, 1, 16500.00, 21500.00, '36/5 puthirankanni amma koil st, TVMR, Che-41', '36/5 Puthirankanni Amma Koil St, TVMR, Che-41', '2009140027', '1', '2', 'upload_files/candidate_tracker/71535997075_jai.docx', NULL, NULL, '2020-09-15', 30, '', '5', '21', '1970-01-01', 0.00, '11:22 AM', '0', '1970-01-01', '2', 'cand gone before interview ', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 02:10:22', 50, '2020-09-14 04:04:53', 0, NULL, 1),
(336, 'Subash raj. G', '4', '9445146999', '6381341515', 'subashsubash1748@gmail.com', '1998-10-27', 21, '2', '2', 'Gopal. S', 'Real estate broker', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009140028', '2', '1', 'upload_files/candidate_tracker/3942067618_Subashraj.doc', NULL, NULL, '2020-09-15', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 02:11:09', 1, '2020-09-14 02:14:37', 0, NULL, 1),
(337, 'S Mohammed Jailani', '6', '9840951025', '9361230804', 'mjmohammedjailani@gmail.com', '1988-12-08', 31, '2', '2', 'k.s. shahul Hammed', 'business man', 35000.00, 1, 0.00, 25000.00, 'parrys', 'parrys', '2009140029', '1', '1', 'upload_files/candidate_tracker/44101676665_Jailani Resume .docx', NULL, NULL, '2020-09-15', 0, '', '8', '', '1970-01-01', 0.00, '11:08 AM', '0', '1970-01-01', '1', NULL, '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 03:03:31', 50, '2020-09-15 01:44:17', 0, NULL, 1),
(338, 'Subash Chandra bose', '4', '6380945472', '', 'subashranganathan1997@gmail.com', '1997-03-30', 23, '2', '2', 'Ranganathan.k', 'Farmer', 200000.00, 1, 0.00, 18.00, 'Chrompet', 'Chrompet', '2009140030', '1', '1', 'upload_files/candidate_tracker/32700368955_subash resume.docx', NULL, NULL, '2020-09-15', 0, '', '5', '8', '1970-01-01', 0.00, '03:00 PM', '0', '1970-01-01', '1', 'not speaking up will not suite for CRM.', '1', '1', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 04:02:24', 50, '2020-09-15 12:29:28', 0, NULL, 1),
(339, 'jaffer test', '2', '9840349412', '', 'moonsat08@gmail.com', '1986-09-14', 34, '2', '2', 'Sathik', 'Former', 5000.00, 2, 15000.00, 20000.00, 'Tuticorin', 'chennai', '2009140031', '1', '2', 'upload_files/candidate_tracker/10664110131_dummy.pdf', NULL, NULL, '2020-09-14', 0, '', '3', '41', '2020-09-14', 20000.00, '04:05 PM', '3', '2020-09-15', '2', NULL, '2', '2', '1', '1', '1', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 04:03:37', 1, '2020-09-14 04:11:24', 7, '2020-10-07 05:49:25', 0),
(340, 'Salman khan', '17', '8870595468', '', 'khansalman9697@gmail.com', '1996-06-01', 24, '2', '2', 'Rafi', 'Own business', 12000.00, 2, 400000.00, 470000.00, 'Chennai', 'Chennai', '2009140032', '1', '2', 'upload_files/candidate_tracker/36027484934_Salman khan.pdf', NULL, NULL, '2020-09-15', 15, '', '5', '29', NULL, 0.00, '01:00 PM', '0', NULL, '1', 'iS ON HIGHER CTC xxamp DOENxquotT HAVE CONVINCING SKILL, EXPERIENCE,WILL NOT BE SUITABLE FOR SALES', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 05:49:45', 1, '2020-09-14 06:05:42', 0, NULL, 1),
(341, '', '0', '3456789012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009140033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 05:55:17', 0, NULL, 0, NULL, 1),
(342, 'Prasannavenkatesh G', '4', '6374414841', '7358851331', 'vprasanna979@gmail.com', '1998-03-13', 22, '2', '2', 'Gunasekaran', 'Gunasekaran', 8500.00, 1, 10000.00, 11000.00, 'Erode', 'Thirumullaivoyal ,chennai', '2009150001', '2', '1', 'upload_files/candidate_tracker/79281482182_Resume 2.docx', NULL, NULL, '2020-09-15', 1, '', '3', '8', '2020-09-17', 11000.00, '11:00 AM', '3', '2020-09-30', '2', 'For Dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 08:48:33', 7, '2020-10-07 05:48:12', 0, NULL, 1),
(343, 'p.mohan', '6', '9597746988', '8754882524', 'mohanstr90@gmail.com', '1990-06-28', 30, '2', '2', 'g.parthasarathy', 'business', 25000.00, 1, 16000.00, 23000.00, 'thirukovilur', 'thiruvanmiyur', '2009150002', '3', '2', 'upload_files/candidate_tracker/67313812573_Resume Mohan.pdf', NULL, NULL, '2020-09-15', 0, '', '5', '16', '1970-01-01', 0.00, '11:34 AM', '0', '1970-01-01', '1', 'reason for Above age ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 10:17:11', 7, '2020-09-29 12:55:41', 0, NULL, 1),
(344, '', '0', '0000000000', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 10:20:03', 0, NULL, 0, NULL, 1),
(345, '', '0', '9941362805', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 10:38:37', 0, NULL, 0, NULL, 1),
(346, 'dinesh', '5', '9962745084', '', 'vm.dinesh@yahoo.com', '1988-01-23', 32, '2', '1', 'manoharan', 'ashok lyelanad', 25000.00, 3, 19500.00, 25000.00, 'manali new town', 'manali new town', '2009150005', '3', '2', 'upload_files/candidate_tracker/20345180716_Dinesh MBA update.docx', NULL, NULL, '2020-09-15', 0, '', '5', '29', '1970-01-01', 0.00, '11:20 AM', '0', '1970-01-01', '1', 'Not fir for sales', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 11:12:49', 29, '2020-09-15 01:04:57', 0, NULL, 1),
(347, 'abishek g', '6', '7397495823', '', 'daniel9791652840@gmail.com', '2000-02-20', 20, '2', '2', 'george s', 'maintenance managaer at apartments', 20000.00, 1, 0.00, 12000.00, 'moolakadai', 'moolakadai', '2009150006', '1', '1', 'upload_files/candidate_tracker/77950737258_Abishek Resume.docx', NULL, NULL, '2020-11-03', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not fit for RE', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-09-15 11:54:08', 58, '2020-12-29 09:49:19', 0, NULL, 1),
(348, '', '0', '8610676854', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 11:56:18', 0, NULL, 0, NULL, 1),
(349, '', '0', '9025010476', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 12:39:42', 0, NULL, 0, NULL, 1),
(350, 'Sanjay Kumar R', '13', '9941585743', '7904484611', 'sanjaykumarr06@gmail.com', '1997-06-14', 23, '2', '2', 'Renu Kumar', 'Late', 100000.00, 1, 0.00, 12000.00, '90/61 Kamarajapuram 3rd st Nungambakkam Chennai 34', '90/61 Kamarajapuram 3rd st Nungambakkam Chennai 34', '2009150009', '1', '1', 'upload_files/candidate_tracker/721930673_1579779571106Resume_sanjay.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '26', '1970-01-01', 0.00, '12:00 PM', '0', '1970-01-01', '1', 'he dont know the basic concepts in php', '2', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-15 12:59:11', 50, '2020-09-15 02:46:44', 0, NULL, 1),
(351, 'SATHISH KUMAR V', '13', '8072095029', '7401071774', 'Sathishcooll03@gmail.com', '1998-11-03', 21, '2', '2', 'VENKATESH BABU PM', 'Hp gas verification', 12000.00, 0, 0.00, 10000.00, 'Nungambakkam', 'Nungambakkam', '2009150010', '1', '1', 'upload_files/candidate_tracker/92883283935_Resume _Resume_Format5.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '26', '1970-01-01', 0.00, '11:24 AM', '0', '1970-01-01', '1', 'he dont know the Basics of c and c++, oops concepts ', '2', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-15 01:19:32', 50, '2020-09-15 02:46:54', 0, NULL, 1),
(352, '', '0', '9176323086', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 01:32:43', 0, NULL, 0, NULL, 1),
(353, 'SURESHKUMAR M', '1', '9789918267', '', 'suresh0288@rediffmail.com', '1990-08-31', 30, '2', '1', 'MAHALINGAM N', 'B.com', 28000.00, 1, 29400.00, 45000.00, 'Ennore', 'Ennore', '2009150012', '1', '2', 'upload_files/candidate_tracker/2367992661_CV.pdf', NULL, NULL, '2020-09-15', 15, '', '8', '41', '1970-01-01', 0.00, '11:37 AM', '0', '1970-01-01', '1', 'Quarantined for 21 days ', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-15 02:14:26', 50, '2020-09-15 06:51:16', 0, NULL, 1),
(354, 'S. Pooja preetha', '4', '7305209926', '7358524318', 'poojapreetha2697@gmail.com', '1997-07-26', 23, '2', '2', 'Sundar.m', 'Carpenter', 15000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2009150013', '2', '2', 'upload_files/candidate_tracker/19943342403_RESUME.docx', NULL, NULL, '2020-09-15', 1, '', '3', '8', '2020-09-17', 12000.00, '03:00 PM', '1', '1970-01-01', '2', '12K for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 02:26:11', 1, '2020-09-23 11:54:16', 0, NULL, 1),
(355, 'Akash', '4', '8838784176', '9789625131', 'ak.cena55@gmail.com', '1998-06-01', 22, '2', '2', 'Amalraj', 'Business', 20000.00, 1, 0.00, 160000.00, 'No.10, balaji Nagar, Saligramam, Chennai - 93', 'Same as above', '2009150014', '1', '1', 'upload_files/candidate_tracker/43818782209_1599648943571_updated akash.docx', NULL, NULL, '2020-09-16', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '0', '1970-01-01', '1', 'will not suite for this profile.', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-15 02:48:58', 50, '2020-09-16 11:11:29', 0, NULL, 1),
(356, 'Nirmal raj', '4', '7010513263', '8489363713', 'Nirmalmaya@gmail.com', '1996-12-14', 23, '2', '2', 'Anthoniraj', 'Not working', 25000.00, 1, 0.00, 12000.00, 'Thiruvallur', 'adayar', '2009150015', '2', '1', 'upload_files/candidate_tracker/40099839574_1600233414422_NIRMALRAJ.docx', NULL, NULL, '2020-09-16', 0, '', '5', '21', '1970-01-01', 0.00, '10:55 AM', '', '1970-01-01', '1', 'not bold, very low voice , expecting high salary ....', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 05:21:29', 50, '2020-09-16 11:07:32', 0, NULL, 1),
(357, 'Daniel Raj A', '4', '7358716581', '9176971608', 'Danieldan.220898@gmail.com', '1998-08-22', 22, '2', '1', 'Antony Arokia Raj', 'Senior assistant (MTC)', 70000.00, 1, 0.00, 16000.00, 'NO:14/33 balaji nagar 2nd st,royapettah,chennai-14', 'NO:14/33 Balaji Nagar 2nd St,Royapettah,Chennai-14', '2009150016', '1', '1', 'upload_files/candidate_tracker/67207108196_daniel resume new.pdf', NULL, NULL, '2020-09-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-15 06:06:49', 50, '2020-09-16 01:54:36', 0, NULL, 1),
(358, '', '0', '9003142676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 06:12:59', 0, NULL, 0, NULL, 1),
(359, 'Mohamed Sahul Hameed', '4', '9385754893', '9176118385', 'Sahulhr99@gmail.com', '1993-11-25', 26, '2', '2', 'Haroon Rasheed', 'Fresh', 25000.00, 4, 0.00, 15000.00, 'Ramanathapuram', 'Mannady chennai', '2009150018', '1', '1', 'upload_files/candidate_tracker/23309694591_future 1.docx', NULL, NULL, '2020-09-16', 0, '', '5', '8', '1970-01-01', 0.00, '11:23 AM', '', '1970-01-01', '1', 'language is not good and will not suite for CAFS', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-15 06:20:25', 50, '2020-09-16 11:24:12', 0, NULL, 1),
(360, 'rubiya h', '11', '8939191081', '', 'RubiyaFathima62@gmail.com', '1999-05-30', 21, '2', '2', 'haamid sheriff a', 'computer service man', 10000.00, 2, 0.00, 12000.00, 'kodungaiyur chennai', 'kodungaiyur chennai', '2009150019', '1', '1', 'upload_files/candidate_tracker/27740132957_resume rubiya.docx', NULL, NULL, '2020-11-03', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'long distance', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-09-15 06:39:12', 58, '2020-12-23 12:18:39', 0, NULL, 1),
(361, 'Salome Jayaseeli', '4', '8124268044', '', 'chrisalo1620@gmail.com', '1996-12-16', 23, '2', '2', 'Vincent Christopher (late)', 'Exporter', 10000.00, 0, 0.00, 15000.00, 'No:29 A block MSNagar chetpet Chennai 31', 'No:29 A block MSNagar chetpet Chennai 31', '2009150020', '2', '1', 'upload_files/candidate_tracker/11492318391_sj res(1).pdf', NULL, NULL, '2020-09-16', 0, '', '5', '8', NULL, 0.00, '11:45 AM', '0', NULL, '2', 'Will Not Suite For Our Process. No Fluency While Speaking.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 06:44:54', 1, '2020-09-15 07:49:13', 0, NULL, 1),
(362, '', '0', '8839430916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 06:45:54', 0, NULL, 0, NULL, 1),
(363, 'jaffer test', '13', '9840349499', '', 'jagufersathik@cafsinfotech.in', '1986-09-15', 34, '3', '2', 'Sathik', 'Former', 5000.00, 2, 10000.00, 20000.00, 'Tuticorin', 'chennai', '2009150022', '', '2', 'upload_files/candidate_tracker/50169324191_dummy.docx', NULL, NULL, '2020-09-15', 0, '', '3', '41', '2020-09-15', 15000.00, '11:13 AM', '5', '2020-09-15', '2', NULL, '2', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 07:18:05', 1, '2020-09-17 03:21:42', 7, '2020-10-07 05:49:25', 0),
(364, 's.keerthiga', '4', '8939430916', '9585403583', 'keerthi19798@gmail.com', '1998-07-19', 22, '2', '2', 'subramani', 'bsnl', 20000.00, 1, 10000.00, 15000.00, 'chetpet chennai', 'chetpet', '2009150023', '2', '1', 'upload_files/candidate_tracker/47917812234_keerthi edited resume.pdf', NULL, NULL, '2020-09-16', 0, '', '3', '8', '2020-09-17', 11000.00, '11:30 AM', '', '2020-09-18', '2', 'for Dhivya team', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 07:23:40', 1, '2020-09-16 07:59:37', 0, NULL, 1),
(365, 'SNEHA.B.S', '4', '9844706225', '', 'Snehasanny32@gmail.com', '1989-11-06', 30, '2', '1', 'suni kumar', 'advocate', 10000.00, 0, 9000.00, 15000.00, 'Vijayanagar', 'Vijayanagar', '2009150024', '7', '2', 'upload_files/candidate_tracker/60061465986_Sneha_Telecaller_CAFS.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '38', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'risk to hire her...why because shexquots spouse is a star health agent xxamp  lawyer too', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 07:51:55', 1, '2020-09-16 12:32:00', 0, NULL, 1),
(366, 'Prabhakar j', '4', '8123000464', '9620956513', 'prabhakarprabu27@gmail.com', '1997-04-27', 23, '2', '2', 'John', 'Security', 10000.00, 4, 15000.00, 20000.00, 'Chandralayout', 'Chandralayout', '2009160001', '7', '2', 'upload_files/candidate_tracker/33210494119_Doc Sep 16 2020.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '38', NULL, 0.00, '01:00 PM', '0', NULL, '1', 'not good in communication', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 09:46:03', 1, '2020-09-16 11:51:03', 0, NULL, 1),
(367, 'saravanan', '13', '8248009219', '8248009219', 'saravanan.crokzz12@gmail.com', '1999-07-12', 21, '2', '2', 'sundar', 'realestate', 40000.00, 1, 0.00, 15000.00, 'old no 236 new no 80/1Rkmutt road mylapore Chennai', '20/14 venkatasamy street santhome chennai', '2009160002', '4', '1', 'upload_files/candidate_tracker/21875842319_CV of saravanan2.docx', NULL, NULL, '2020-09-16', 0, '', '5', '26', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'He Did A 6-Month Course In PHP Spent 25,000,  But He Is Not Good At Even The Basics Of PHP.', '2', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 10:03:25', 50, '2020-09-16 10:25:39', 0, NULL, 1),
(368, 'Manda venkatasudheer Kumar', '13', '8688088368', '8688088368', 'venkatasudheermanda@gmail.com', '1995-07-01', 25, '2', '2', 'M Ravi', 'Business', 30000.00, 1, 190000.00, 300000.00, 'Gudivada', 'chennai', '2009160003', '4', '2', 'upload_files/candidate_tracker/18666595739_Resume-Manda-Venkatasudheerkumar.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '26', NULL, 0.00, '10:15 AM', '0', NULL, '2', 'He Is Having One Year 6 Months Of Experience But He Dont Know Basic Jquery Ajax Syntax And Basic MySQL Queries. have sent Assessment sheet to HR to check with consultancy.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 10:11:17', 1, '2020-09-16 10:15:24', 0, NULL, 1),
(369, 'S Mohammed Ali', '4', '9087069157', '9176365345', 'aliboysmd6@gmail.com', '1998-06-01', 22, '2', '2', 'A Sathik Ali', 'Daily wages', 17000.00, 2, 12500.00, 15000.00, 'Kovur', 'Kovur', '2009160004', '2', '2', 'upload_files/candidate_tracker/88220607447_1598983905648Resume_mohammed.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'worst attitude , no voice clarity language is not good , not sustain long term, also expecting high salary', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 10:51:20', 50, '2020-09-16 11:10:52', 0, NULL, 1),
(370, '', '0', '7299607980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 10:55:24', 0, NULL, 0, NULL, 1),
(371, 'Regina Mary l', '4', '9940236506', '8681938711', 'Reginamary110498@gmail.com', '1998-04-11', 22, '2', '2', 'Lawrence. G', 'Working', 15000.00, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2009160006', '3', '2', 'upload_files/candidate_tracker/58184581773_RESUME.docx', NULL, NULL, '2020-09-16', 0, '', '5', '13', '1970-01-01', 0.00, '11:14 AM', '', '1970-01-01', '2', 'Not fit for tele filed', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 11:05:23', 50, '2020-09-16 01:45:55', 0, NULL, 1),
(372, 'irshad pasha', '4', '8088044581', '', 'irshadpashats007@gmail.com', '1997-04-10', 23, '2', '2', 'sardar pasha', 'Business', 20000.00, 4, 0.00, 12000.00, 'vijayanagar', 'vijayanagar', '2009160007', '7', '1', 'upload_files/candidate_tracker/36849565935_Irashad Pasha_Telecaller_CAFS.docx', NULL, NULL, '2020-09-16', 0, '', '5', '38', NULL, 0.00, '03:04 PM', '0', NULL, '1', 'zero english communication', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 11:05:35', 1, '2020-09-16 12:04:37', 0, NULL, 1),
(373, '', '0', '8056211239', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 11:10:28', 0, NULL, 0, NULL, 1),
(374, 'rvn krishnan', '1', '8939398888', '9962997736', 'krishnanrvn@gmail.com', '1986-02-20', 34, '2', '1', 'r rajamani', 'salaried', 35000.00, 1, 35000.00, 38000.00, 'madipakkam', 'madipakkam', '2009160009', '1', '2', 'upload_files/candidate_tracker/95062718214_krishnan rvn resume 1.pdf', NULL, NULL, '2020-09-17', 15, '', '5', '8', '1970-01-01', 0.00, '09:43 AM', '', '1970-01-01', '1', 'exp  CTC is 5.5L will not suite for AM.', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 11:18:27', 1, '2020-09-16 12:05:41', 0, NULL, 1),
(375, 'Tameem. S', '4', '6379603502', '', 'ansaritameem232@gmai.com', '1998-03-08', 22, '2', '2', 'Shabeer', 'Leather worker', 13000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2009160010', '1', '2', 'upload_files/candidate_tracker/19992724305_Resume(5).pdf', NULL, NULL, '2020-09-17', 1, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'will not handle pressure and not speaking up too.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 11:19:41', 50, '2020-09-17 09:24:24', 0, NULL, 1),
(376, 'Gowtham. V', '4', '6381453151', '9566110186', 'Gowthamvelayudham@gmail.com', '1999-01-07', 21, '2', '2', 'Velayudham', 'Driver', 15000.00, 1, 0.00, 10000.00, 'Chennai st.thomas mount', 'Chennai', '2009160011', '1', '1', 'upload_files/candidate_tracker/74891684232_V GOWTHAM(1)(1).docx', NULL, NULL, '2020-09-17', 0, '', '8', '', '1970-01-01', 0.00, '11:31 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 11:35:49', 50, '2020-09-17 05:30:38', 0, NULL, 1),
(377, '', '0', '9080759528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 11:40:02', 0, NULL, 0, NULL, 1),
(378, 'lakshmi narayanan', '4', '9087002390', '8754519940', 'lakshminarayanan839@gmail.com', '1995-10-15', 24, '2', '2', 'kannan', 'flower merchant', 35000.00, 0, 0.00, 14000.00, 'chennai', 'chennai', '2009160013', '3', '', 'upload_files/candidate_tracker/21590337797_vishnu .pdf', NULL, NULL, '2020-09-16', 0, '', '5', '21', NULL, 0.00, '12:41 PM', '0', NULL, '2', 'not fit for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 11:46:15', 1, '2020-09-16 12:54:11', 0, NULL, 1),
(379, '', '0', '9677206032', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 11:57:57', 0, NULL, 0, NULL, 1),
(380, 'Yamuna.S', '4', '9176453036', '8825939795', 'yamunasri9176@gmail.com', '1998-09-27', 21, '1', '2', 'Srinivasan.R', 'Bussiness', 20000.00, 1, 10000.00, 11000.00, 'No:102 Jothi ammal ng saidapet', 'No:102 Jothi ammal ng saidapet', '2009160015', '', '2', 'upload_files/candidate_tracker/67103643464_yamuna.docx', NULL, NULL, '2020-09-16', 0, '5162', '3', '8', '2020-09-17', 11000.00, '12:12 PM', '3', '2020-09-18', '2', 'for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 12:08:57', 7, '2020-10-07 05:50:18', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(381, 'Swetha.s', '4', '9345260226', '9345260226', 'Kaviswetha304@gmail.com', '1998-12-27', 21, '2', '2', 'Shankar.p', 'wielding', 20000.00, 1, 12000.00, 13000.00, 'nandanam', 'nandanam', '2009160016', '2', '2', 'upload_files/candidate_tracker/86246650397_swe resume.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '13', NULL, 0.00, '02:00 PM', '0', NULL, '1', 'Not Suitable For Pressure Handling', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 12:13:58', 1, '2020-09-16 01:39:01', 0, NULL, 1),
(382, 'M ramya', '4', '9514083740', '7299509845', 'evanjilin2830@gmail.com', '1997-08-30', 23, '2', '2', 'V Munusamy', 'Cooli', 15000.00, 1, 10000.00, 13000.00, '10/4 sudalai muthu street, new washermenpet, ch-81', '10/4 sudalai muthu street, new Washermenpt, Ch-81', '2009160017', '2', '2', 'upload_files/candidate_tracker/84391190435_ramya resume pdf.pdf', NULL, NULL, '2020-09-16', 0, '', '3', '8', '2020-09-17', 11000.00, '01:15 PM', '2', '1970-01-01', '2', 'for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 12:15:32', 7, '2020-10-07 05:51:12', 0, NULL, 1),
(383, 'Aravinth P', '4', '8667433285', '8754740381', 'aravinthpandiyan27@gmail.com', '1995-05-27', 25, '2', '2', 'A.pandiyan', 'glass cutter', 17000.00, 1, 11500.00, 12000.00, '3/4 shanmuga Purm extrn 3rd street ,thiruvottiyur', '3/4 Shanmuga Purm Extrn 3rd Street ,Thiruvottiyur', '2009160018', '2', '2', 'upload_files/candidate_tracker/20090286898_aravinth pandiyan resume.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '21', NULL, 0.00, '01:15 PM', '0', NULL, '1', 'low voice ,not bold, ,low confidence, ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 12:15:35', 1, '2020-09-16 01:04:16', 0, NULL, 1),
(384, 'test', '2', '9999998887', '', '', '1994-08-25', 26, '3', '2', 'hnfdjgdj', 'dfnsdfnsdf', 20000.00, 0, 0.00, 20000.00, 'fdrn', 'fd n f n', '2009160019', '', '1', 'upload_files/candidate_tracker/21577452384_12345.pdf', NULL, NULL, '2020-09-22', 0, '', '6', '0', NULL, 0.00, '02:03 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 12:42:07', 1, '2020-09-22 03:16:10', 0, NULL, 1),
(385, 'G. Monish kumar', '4', '9942221738', '7358517360', 'Monishkumargs1999@gmail.com', '1999-03-30', 21, '2', '2', 'M d gandhi', 'Car driver', 30000.00, 2, 0.00, 15000.00, 'Vandavasi', 'Jaffarkhanpet Chennai', '2009160020', '1', '1', 'upload_files/candidate_tracker/47410775071_1571465203888Resume_G.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not fit for voice process ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 12:42:18', 50, '2020-09-17 12:55:49', 0, NULL, 1),
(386, 'Praneesh P', '4', '9840424221', '', 'ppr.praneesh@gmail.com', '1997-07-24', 23, '2', '2', 'M Prem Kumar', 'Business', 15000.00, 0, 14000.00, 16000.00, 'Perungudi,Chennai', 'Perungudi,chennai', '2009160021', '1', '2', 'upload_files/candidate_tracker/3398420174_1592287159416Resume_Praneesh.pdf', NULL, NULL, '2020-09-17', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 01:16:40', 50, '2020-09-17 05:30:53', 0, NULL, 1),
(387, '', '0', '8754487564', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 01:33:01', 0, NULL, 0, NULL, 1),
(388, 'Pankajam', '13', '9345231069', '7868097027', 'pankajam.ml@gmail.com', '1996-03-27', 24, '2', '2', 'Muthamperumalpillai', 'Store manager', 21000.00, 1, 18000.00, 20000.00, 'Chennai', 'Triplicane', '2009160023', '4', '2', 'upload_files/candidate_tracker/72268240748_Pankajam may2020 resume updated (2).docx', NULL, NULL, '2020-09-16', 0, '', '5', '26', NULL, 0.00, '02:00 PM', '0', NULL, '2', 'She Is Having  2.5 Years but Dont Know The Basic (Array  Concepts And Database Queries) . ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 01:44:18', 1, '2020-09-16 01:48:31', 0, NULL, 1),
(389, 'udhayakumar', '2', '9445732341', '', 'udhaya@cafsinfotech.in', '1991-09-16', 29, '3', '1', 'anandan', 'bussiness', 20000.00, 2, 20000.00, 30000.00, 'krishnagiri', 'chennai', '2009160024', '', '2', 'upload_files/candidate_tracker/48984376749_My_Resume.pdf', NULL, NULL, '2020-09-16', 0, '', '3', '41', '2020-09-17', 20000.00, '01:56 PM', '3', '2020-09-16', '1', 'nill', '2', '2', '1', '1', '1', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 01:50:33', 1, '2020-09-16 02:20:59', 7, '2020-10-07 05:49:25', 0),
(390, 'gokulraj sankar', '2', '8608706154', '', 'sureshkumar@cafs.co.in', '2005-09-16', 15, '2', '2', 'sankar', 'farmer', 1000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2009160025', '1', '1', 'upload_files/candidate_tracker/26687610427_SFC-AMC Invoice 2020-2021.pdf', NULL, NULL, '2020-09-16', 0, '', '3', '8', '2020-09-16', 1000000.00, '03:49 PM', '7', '1970-01-01', '1', 'Informed all terms and condition', '2', '2', '1', '1', '1', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 03:48:51', 7, '2020-09-16 04:19:29', 7, '2020-10-07 05:49:25', 0),
(391, '', '0', '9290274533', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 03:57:59', 0, NULL, 0, NULL, 1),
(392, 'Vinitha', '4', '9025876510', '9025876510', 'Vinithadu19@gamil.com', '1996-06-07', 24, '2', '1', 'Dharuman', 'Former', 10000.00, 3, 15000.00, 14000.00, 'Voolur', 'Kolathur', '2009160027', '2', '2', 'upload_files/candidate_tracker/79969975963_vinitha-19.docx', NULL, NULL, '2020-09-17', 1, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 04:07:35', 1, '2020-09-16 04:22:01', 0, NULL, 1),
(393, 'R JANAKIRAMN', '6', '9962459556', '8680859184', 'jaani.3888@gmail.com', '1988-08-03', 32, '2', '2', 'RADHAKRISHNAN S', 'SALES', 21000.00, 2, 21000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2009160028', '1', '2', 'upload_files/candidate_tracker/50556536103_Janakiraman.pdf', NULL, NULL, '2020-09-17', 15, '', '5', '8', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', 'will not suite for RM and will not Sustain. got update from GK ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 04:19:00', 50, '2020-09-17 09:26:02', 0, NULL, 1),
(394, 'Priyanka R', '4', '7401825381', '', 'rajasekaranpriyanka125@gmail.com', '1996-10-10', 23, '2', '2', 'Rajasekaran', 'Electrician', 19000.00, 2, 15000.00, 15000.00, 'Chennai', 'Chennai', '2009160029', '2', '2', 'upload_files/candidate_tracker/69752299146_0_RESUME Priyanka.docx', NULL, NULL, '2020-09-17', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 04:32:18', 1, '2020-09-16 04:36:47', 0, NULL, 1),
(395, '', '0', '8297063000', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 04:48:14', 0, NULL, 0, NULL, 1),
(396, '', '0', '9952056721', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 05:03:05', 0, NULL, 0, NULL, 1),
(397, 'Vivekraj', '11', '8939333163', '', 'Vivekraj88@gmail.com', '1988-07-10', 32, '2', '1', 'V devaraj', 'Auditor', 15000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2009160032', '1', '2', 'upload_files/candidate_tracker/61915277273_D.VivekRaj HR Recruiter.doc', NULL, NULL, '2020-09-17', 15, '', '5', '53', '1970-01-01', 0.00, '11:19 AM', '', '1970-01-01', '2', 'Pronounciation is nt good.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 05:16:29', 50, '2020-09-17 09:24:01', 0, NULL, 1),
(398, 'Vincy J', '11', '8939801069', '9444775368', 'Vincyj94@gmail.com', '1994-03-18', 26, '2', '1', 'Ugin M', 'Technical assistant', 30000.00, 1, 18000.00, 25000.00, 'Ambattur chennai', 'Ambattur chennai', '2009160033', '1', '2', 'upload_files/candidate_tracker/46333008253_vincy resume.docx', NULL, NULL, '2020-09-17', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'From Ambattur And Has 1yr Kid Will Not Sustain 2 Years Gap And Exp Is 20+ As Take Home.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 05:16:52', 8, '2020-09-17 02:59:13', 0, NULL, 1),
(399, 'Nethaji', '5', '7358524224', '9962074796', 'rakki222nethaji@gmail.com', '1992-10-01', 27, '2', '2', 'G.Balasubramani', 'Southern Railway (retired)', 20000.00, 2, 22000.00, 30000.00, 'kolathur', 'kolathur', '2009160034', '1', '2', 'upload_files/candidate_tracker/33656683629_B.Nethaji Resumae.pdf', NULL, NULL, '2020-09-17', 0, '', '3', '8', '2020-09-18', 23000.00, '11:00 AM', '3', '2020-09-21', '1', '23K for veben team', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 05:29:49', 7, '2020-10-07 05:51:35', 0, NULL, 1),
(400, '', '0', '8939510190', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160035', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 05:29:58', 0, NULL, 0, NULL, 1),
(401, 'K.soundriya', '4', '9094585141', '', 'ksoundriya@gmail.com', '1996-10-23', 23, '2', '2', 'S.kamaraj', 'Auto driver', 21000.00, 2, 15000.00, 15000.00, 'Kodungaiyur Chennai-600118', 'Kodungaiyur chennai-600118', '2009160036', '2', '2', 'upload_files/candidate_tracker/28541230453_Soundriya Resume.pdf', NULL, NULL, '2020-09-17', 0, '', '5', '21', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'Not Sustain Long Term , 45 Mins To 1 Hour Travel,,Expected 15 K Salary, She  Not Have Voice Exp Also', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 05:54:03', 1, '2020-09-16 06:30:08', 0, NULL, 1),
(402, 'test', '13', '9840349411', '', 'jagufersathik@cafsinfotech.in', '1986-09-16', 34, '3', '2', 'test', 'Former', 5000.00, 2, 0.00, 20000.00, 'chennai', 'tuticorin', '2009160037', '', '1', 'upload_files/candidate_tracker/6833547381_dummy.pdf', NULL, NULL, '2020-09-16', 0, '', '3', '41', '2020-09-17', 20000.00, '04:16 PM', '7', '1970-01-01', '2', NULL, '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 06:15:01', 1, '2020-09-17 11:25:09', 7, '2020-10-01 12:58:39', 0),
(403, 'saqlain akir', '4', '7892346480', '', 'saqlainzakir7786@gmail.com', '1998-10-10', 21, '2', '2', 'ZAKIR BASHA', 'merchant', 20000.00, 1, 0.00, 15000.00, 'sivajnagar', 'sivajinagar', '2009160038', '7', '1', 'upload_files/candidate_tracker/29674973960_Saqlain Zakir_Telecaller_CAFS.docx', NULL, NULL, '2020-09-17', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 06:57:57', 50, '2020-09-17 05:31:11', 0, NULL, 1),
(404, 'adul', '5', '8073883515', '', 'shaikabul134@gmail.com', '2000-02-07', 20, '2', '2', 'fayaz ahmed', 'business man', 20000.00, 8, 18000.00, 20000.00, 'pnt cross', 'pnt cross', '2009160039', '7', '2', 'upload_files/candidate_tracker/46666552238_Abul_RM_CAFS.pdf', NULL, NULL, '2020-09-17', 0, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 07:17:08', 1, '2020-09-16 07:25:45', 0, NULL, 1),
(405, 'Sundar', '4', '7299818675', '7010973109', 'sivasundar71@gmail.com', '1998-04-23', 22, '2', '2', 'Murugan', 'ITI', 20000.00, 1, 15000.00, 16000.00, 'Vadapalani', 'Vadapalani', '2009170001', '4', '2', 'upload_files/candidate_tracker/36775837711_SUNDAR RESUME-converted(1).docx', NULL, NULL, '2020-09-17', 0, '', '5', '11', NULL, 0.00, '10:21 AM', '0', NULL, '1', 'candidate is not interested in sales.he is not willing to work in pressure ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 05:41:52', 1, '2020-09-17 10:22:18', 0, NULL, 1),
(406, 'Eswaran G', '13', '9789590350', '', 'geswaran1041@gmail.com', '1996-06-02', 24, '2', '2', 'Ganesan A', 'Supervisor', 20000.00, 1, 0.00, 25000.00, 'Srivilliputtur', 'Vadapalani', '2009170002', '1', '1', 'upload_files/candidate_tracker/28936205020_Resume.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '26', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'he dont know the basic of c and c++', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 09:57:40', 50, '2020-09-17 12:55:13', 0, NULL, 1),
(407, 'Sabari Manikandan', '13', '9677047166', '', 'sabarivijay281099@gmail.com', '1999-10-28', 20, '2', '2', 'Maalaiammal', 'Baby sitter', 9000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2009170003', '4', '1', 'upload_files/candidate_tracker/26934769786_1600172776482Resume_Sabari.pdf', NULL, NULL, '2020-09-17', 0, '', '5', '27', NULL, 0.00, '10:03 AM', '0', NULL, '2', 'Task Incomplete. Gave 3 days time and given 2 time excuses. but he could not complete.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 09:59:43', 1, '2020-09-17 10:08:19', 0, NULL, 1),
(408, 'D Sumathy', '4', '8248368792', '', '', '1999-02-16', 21, '2', '2', 'K Dhamotharan', 'Driver', 60000.00, 2, 0.00, 12000.00, 'No 3 Sait Mohanlal Street choolai Chennai 600112', 'No 3 Sait Mohanlal Street Choolai Chennai 600112', '2009170004', '1', '1', 'upload_files/candidate_tracker/41846434013_sumo resume.docx', NULL, NULL, '2020-09-18', 0, '', '5', '8', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'will not handle Pressure, and target', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 10:15:10', 1, '2020-09-17 12:34:30', 0, NULL, 1),
(409, '', '0', '9962605641', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 10:19:31', 0, NULL, 0, NULL, 1),
(410, 'Deepak M', '4', '9043134006', '9043134002', 'deepakmsd5798@gmail.com', '1998-07-05', 22, '2', '2', 'Muthukrishnan S', 'Sign board Business', 25000.00, 1, 0.00, 12000.00, 'No:28 indhra Gandhi salai old perungalatgur', 'No:28 Indhra Gandhi Salai Old Perungalatgur', '2009170006', '1', '1', 'upload_files/candidate_tracker/74947950293_Resume1.pdf', NULL, NULL, '2020-09-18', 0, '', '8', '', '1970-01-01', 0.00, '11:45 AM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 10:33:28', 50, '2020-09-18 04:01:18', 0, NULL, 1),
(411, 'V.shanmugam', '17', '9840387643', '8608427329', 'Shanmugam1711@gmail.com', '1987-11-17', 32, '2', '1', 'VEERARAGAVAN', 'NO MORE', 40000.00, 3, 25000.00, 30000.00, 'Chennai', 'Chennai', '2009170007', '8', '2', 'upload_files/candidate_tracker/50176442821_karthi.docx', NULL, NULL, '2020-09-17', 0, '', '3', '8', '2020-10-05', 276000.00, '11:40 AM', '6', '2021-03-26', '1', '23K by Gaurav. as sourcing BDM', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 10:48:01', 7, '2020-10-22 05:24:59', 0, NULL, 1),
(412, 'Nandhini.p', '11', '8248371995', '9944804548', 'Nandhu14892@gmail.com', '1992-08-14', 28, '2', '2', 'Pari.M', 'Farmer', 35000.00, 2, 17000.00, 19000.00, 'Villupuram', 'Pallikarani', '2009170008', '2', '2', 'upload_files/candidate_tracker/14837435721_Nandhini Resume.pdf', NULL, NULL, '2020-09-18', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 10:54:30', 1, '2020-09-17 11:26:53', 0, NULL, 1),
(413, 'Mohan Raj', '16', '9080815635', '', 'mohanmis1996@gmail.com', '1996-10-10', 23, '2', '2', 'Dhanapal', 'Tailor', 15000.00, 0, 15000.00, 17000.00, 'Chennai', 'Chennai', '2009170009', '8', '2', 'upload_files/candidate_tracker/7327555640_Mohan Raj Resume MIS.doc', NULL, NULL, '2020-09-17', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not much experience in MIS. expected high sal abv 15k', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 11:00:37', 50, '2020-09-17 01:10:46', 0, NULL, 1),
(414, '', '0', '9962657330', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 11:05:00', 0, NULL, 0, NULL, 1),
(415, 'Santhosh', '6', '9941174362', '9941927243', 'Sandysanthosh19021995@gmail.com', '1995-02-19', 25, '2', '2', 'Govindhan', 'Real estate', 15000.00, 2, 16000.00, 18000.00, 'Chennai', 'Choolai', '2009170011', '8', '2', 'upload_files/candidate_tracker/61922770704_Resume - 2020.docx', NULL, NULL, '2020-09-17', 1, '', '5', '22', NULL, 0.00, '11:18 AM', '0', NULL, '1', 'candidate did not came for second round', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 11:11:34', 1, '2020-09-17 11:37:36', 0, NULL, 1),
(416, '', '0', '8524011463', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 11:14:59', 0, NULL, 0, NULL, 1),
(417, 'Aravind B', '16', '8122720456', '', 'aravindlmj14@gmail.com', '1995-09-14', 25, '2', '2', 'Bhaskar', 'Business', 30000.00, 1, 15000.00, 17000.00, 'Royapuram', 'Royapuram', '2009170013', '8', '2', 'upload_files/candidate_tracker/84003109066_ARAVIND_RESUME_WORD.docx...doc', NULL, NULL, '2020-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '01:38 PM', '', '1970-01-01', '1', 'will not suite for MIS very lazy and will not suite for any profile.', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 11:36:33', 7, '2020-09-18 01:51:40', 0, NULL, 1),
(418, '', '0', '9618563417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 12:17:32', 0, NULL, 0, NULL, 1),
(419, 'A SURIYAN', '4', '6381565781', '9585690847', 'Srisuri17@gmail.com', '1994-06-17', 26, '2', '2', 'M Ashokan', 'Cooly', 7800.00, 1, 0.00, 15000.00, 'Pallipat', 'Chrnnai', '2009170015', '2', '1', 'upload_files/candidate_tracker/50207911093_RESUM-suriyan000.docx', NULL, NULL, '2020-09-17', 0, '', '5', '13', '1970-01-01', 0.00, '12:38 AM', '', '1970-01-01', '1', 'expecting high salary and not suitable for sales profile . ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 12:27:05', 50, '2020-09-17 01:50:29', 0, NULL, 1),
(420, '', '0', '7094319006', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 12:39:05', 0, NULL, 0, NULL, 1),
(421, 'AMALA GRACY.A', '4', '8428455263', '9952947119', 'amalagracyjw@gmail.com', '1997-08-18', 23, '2', '2', 'Sagayamary.A', 'House keeping', 120000.00, 1, 0.00, 12000.00, 'Pallikaranai', 'Pallikaranai', '2009170017', '1', '1', 'upload_files/candidate_tracker/65808187156_Amala Resume.pdf', NULL, NULL, '2020-09-18', 0, '', '3', '8', '2020-09-21', 10000.00, '11:00 AM', '5', '1970-01-01', '2', '10K for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 12:52:36', 7, '2020-10-07 05:53:52', 0, NULL, 1),
(422, 'Gayathri R', '4', '8610789852', '9600172116', 'gayathrii2112@gmail.com', '1990-12-21', 29, '2', '1', 'Kamalesh', 'Private concern', 19000.00, 1, 11500.00, 13000.00, 'No.28/3 NANDHI LOOP STREET WEST CIT NAGAR', '600035', '2009170018', '1', '2', 'upload_files/candidate_tracker/16687939188_R.G-8.doc', NULL, NULL, '2020-09-17', 0, '', '8', '8', '1970-01-01', 0.00, '03:13 PM', '', '1970-01-01', '2', 'not attended', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 12:53:27', 50, '2020-09-17 03:19:22', 0, NULL, 1),
(423, '', '0', '9597498788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 12:54:16', 0, NULL, 0, NULL, 1),
(424, 'Shobana', '4', '9159975916', '9751658528', 'Shobanabca99@gmail.com', '1999-03-05', 21, '2', '2', 'Selvam', 'Telemarketing', 3000.00, 3, 12500.00, 12000.00, 'Thiruvannamalai', 'Amijikarai', '2009170020', '1', '2', 'upload_files/candidate_tracker/83285192601_shobi.docx', NULL, NULL, '2020-09-18', 0, '', '3', '8', '2020-09-21', 11000.00, '11:00 AM', '3', '2020-09-23', '2', 'for Dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 01:08:01', 7, '2020-10-07 05:56:27', 0, NULL, 1),
(425, '', '0', '7449276525', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:10:45', 0, NULL, 0, NULL, 1),
(426, 'suma c', '4', '9108554512', '8867122700', 'sannidhichinnu74364@gmail.com', '1999-08-04', 21, '2', '2', 'chinna', 'non', 30000.00, 1, 18000.00, 20000.00, 'hal', 'madiwala', '2009170022', '7', '2', 'upload_files/candidate_tracker/96086759038_SUMA_CRM_CAFS.pdf', NULL, NULL, '2020-09-17', 0, '', '3', '8', '2020-09-21', 20000.00, '03:30 PM', '5', '1970-01-01', '2', '20K as sourcing TL for Gowshick team', '1', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:19:30', 7, '2020-10-07 05:57:07', 0, NULL, 1),
(427, 'Varnambika S', '11', '9442429137', '', 'varnambika@gmail.com', '1996-10-27', 23, '2', '2', 'Senthilvel Sadasivam', 'Agent', 40000.00, 1, 2.16, 2.50, 'Erode', 'Chennai', '2009170023', '2', '2', 'upload_files/candidate_tracker/77875511696_Varnambika CV(2020).pdf', NULL, NULL, '2020-09-18', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'no  relevant exp. rejected in telephonic. fake information.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:24:49', 1, '2020-09-18 10:11:22', 0, NULL, 1),
(428, 'dummy three', '16', '6600660066', '', 'aa@gmail.com', '1997-01-29', 23, '3', '2', 'aa', 'biz', 600000.00, 2, 0.00, 11111.00, 'aa', 'aaa', '2009170024', '', '1', 'upload_files/candidate_tracker/89190143426_Super-Surplus-Brochure.pdf', NULL, NULL, '2020-09-17', 0, '', '5', '32', '1970-01-01', 0.00, '02:37 PM', '', '1970-01-01', '1', 'Not Opted for CRM', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:28:32', 7, '2020-09-17 04:13:02', 52, '2020-11-04 03:12:38', 0),
(429, 'Aravinth', '8', '8939772024', '', 'aravinth2402@gmail.com', '1999-02-24', 21, '2', '2', 'S.palanisamy', 'Salesman', 8000.00, 0, 0.00, 18000.00, 'Royapuram', 'Royapuram', '2009170025', '8', '1', 'upload_files/candidate_tracker/30833907917_as resume.pdf', NULL, NULL, '2020-09-17', 0, '', '8', '35', NULL, 0.00, '11:45 AM', '0', NULL, '1', 'Candidate Not Available We Try To Reach But Hexquots Disconnecting The Call', '7', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:30:41', 1, '2020-09-17 01:34:32', 0, NULL, 1),
(430, 'dummy nine', '4', '8876665465', '', '', '1990-07-10', 30, '2', '2', 'baren', 'work', 40000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2009170026', '2', '1', 'upload_files/candidate_tracker/61427394590_CLAIMFORM.pdf', NULL, NULL, '2020-09-18', 0, '', '6', '0', NULL, 0.00, '01:33 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:32:16', 1, '2020-09-17 02:33:08', 52, '2020-11-04 03:12:38', 0),
(431, 'dummy five', '16', '7358742599', '', 'suren.cafs@gmail.com', '1991-09-20', 28, '1', '2', 'andrew', 'sales exicutive', 400000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2009170027', '', '1', 'upload_files/candidate_tracker/55967159801_PORTOBLITY.pdf', NULL, NULL, '2020-09-18', 0, 'sam007', '3', '8', '2020-09-17', 18000.00, '01:37 PM', '7', '1970-01-01', '1', 'for dummy surender', '3', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:36:00', 7, '2020-09-17 05:26:05', 7, '2020-10-07 05:59:02', 0),
(432, 'dummy six', '2', '8610233675', '', 'kayal.abelia@yahoo.com', '1995-04-06', 25, '1', '2', 'jhonson', 'sales exicutive', 500000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2009170028', '', '1', 'upload_files/candidate_tracker/94130180445_Medi-Classic-Individual-Brochure-v2 new.pdf', NULL, NULL, '2020-09-18', 0, 'don', '3', '8', '2020-09-21', 10000.00, '01:40 PM', '7', '1970-01-01', '1', 'for banu team', '2', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:39:09', 7, '2020-09-17 05:55:36', 7, '2020-10-07 05:59:02', 0),
(433, '', '0', '9095011289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:43:10', 0, NULL, 0, NULL, 1),
(434, 'M.Ranjithkumar', '4', '9841428710', '', 'ranjithpavi98414@', '1996-05-18', 24, '2', '2', 'Pushpa', 'Home maker', 13000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2009170030', '4', '2', 'upload_files/candidate_tracker/6444830850_Ranjith Kumar.M11.docx', NULL, NULL, '2020-09-17', 0, '', '5', '13', '1970-01-01', 0.00, '01:53 PM', '', '1970-01-01', '2', 'not fit for this telecalling profile . expected salary high ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:44:58', 50, '2020-09-17 02:13:13', 0, NULL, 1),
(435, '', '0', '9150747136', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:49:13', 0, NULL, 0, NULL, 1),
(436, 'R.Dinesh Kumar', '4', '9841311418', '9941794702', 'r.dinesh2811', '1997-11-28', 22, '1', '2', 'T.Ravikumar', 'Tailor', 20000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2009170032', '', '2', 'upload_files/candidate_tracker/84535174895_Dinesh.27...pdf.pdf', NULL, NULL, '2020-09-17', 0, '5156', '5', '8', NULL, 0.00, '02:02 PM', '0', NULL, '2', 'not speaking up and no relevant exp. exp is 15K', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:49:57', 1, '2020-09-17 02:04:47', 0, NULL, 1),
(437, 'C saran', '4', '7358181190', '8072386608', 'saransekar786@gmail.com', '1998-07-22', 22, '1', '2', 'Chandrasekaran.u', 'Govt staff', 18000.00, 2, 13500.00, 16000.00, 'Chennai', 'Chennai', '2009170033', '', '2', 'upload_files/candidate_tracker/11103884571_SARAN.docx', NULL, NULL, '2020-09-17', 1, '5156', '5', '8', NULL, 0.00, '02:03 PM', '0', NULL, '2', 'will not suit for CRM. no relevant exp. and exp is 15K', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:51:22', 1, '2020-09-17 02:07:49', 0, NULL, 1),
(438, 'S.balaji', '4', '6383768215', '9790923653', 'Balaji214702@gmail.com', '1997-03-26', 23, '1', '2', 'P.sathiyanarayanan', 'driver', 20000.00, 2, 14000.00, 15000.00, 'Chennai', 'Pozhichalur', '2009170034', '', '2', 'upload_files/candidate_tracker/81546065826_Balaji_Professional Resume – 01(1)(1).docx', NULL, NULL, '2020-09-17', 2, 'Ravi m', '5', '21', NULL, 0.00, '02:02 PM', '0', NULL, '2', 'fake resume', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:56:00', 1, '2020-09-17 02:07:08', 0, NULL, 1),
(439, 'vignesh.r', '6', '9962908495', '', 'vicvicky715@gmail.com', '1997-07-02', 23, '2', '2', 'rajkumar', 'business', 12000.00, 3, 0.00, 12000.00, 'nerkundram', 'nerkundram', '2009170035', '1', '1', 'upload_files/candidate_tracker/76349545264_vicky resume.docx', NULL, NULL, '2020-09-18', 0, '', '5', '19', '1970-01-01', 0.00, '02:17 PM', '', '1970-01-01', '1', 'no working exp nd sustanbility ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 02:02:49', 8, '2020-09-18 11:35:37', 0, NULL, 1),
(440, 'Anusuya k', '4', '7448437912', '7448903840', 'anusuyakarthikeyan18@gmail.com', '1997-05-18', 23, '2', '2', 'Karthikeyan', 'Cooly', 20000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2009170036', '1', '2', 'upload_files/candidate_tracker/90455790312_1599384924205_ANUSUYA.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 02:08:17', 50, '2020-09-17 03:23:51', 0, NULL, 1),
(441, '', '0', '8867122700', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170037', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:23:36', 0, NULL, 0, NULL, 1),
(442, 'dummy ten', '11', '7644540012', '', '', '1988-05-10', 32, '2', '2', 'john', 'work', 40000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2009170038', '3', '1', 'upload_files/candidate_tracker/38772955330_CLAIMFORM.pdf', NULL, NULL, '2020-09-18', 0, '', '6', '0', NULL, 0.00, '02:35 PM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:33:40', 1, '2020-09-17 02:36:49', 52, '2020-11-04 03:12:38', 0),
(443, 'dummy one', '16', '7373454565', '8989898989', 'kath@gmail.com', '1997-11-03', 22, '3', '2', 'nijam', 'auto driver', 15000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2009170039', '', '1', 'upload_files/candidate_tracker/56968901525_EAadhaar_xxxxxxxx42421355_16092020160131_267771.pdf', NULL, NULL, '2020-09-17', 0, '', '2', '32', '1970-01-01', 0.00, '02:36 PM', '', '1970-01-01', '1', 'Candidate hold', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:34:08', 7, '2020-09-17 04:07:14', 52, '2020-11-04 03:12:38', 0),
(444, 'dummy two', '4', '7904493378', '8080809999', 'smart@com', '1997-11-10', 22, '3', '2', 'aaa', 'auto driver', 15000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2009170040', '', '1', 'upload_files/candidate_tracker/85983422599_EAadhaar_xxxxxxxx42421355_16092020160131_267771.pdf', NULL, NULL, '2020-09-17', 0, '', '8', '8', NULL, 0.00, '02:38 PM', '0', NULL, '1', 'left before interview', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:37:37', 1, '2020-09-17 02:39:03', 8, '2020-10-13 11:45:55', 0),
(445, 'dummy four', '5', '7700770077', '', 'banupriya101290@gmail.com', '2000-02-07', 20, '2', '2', 'aa', 'biee', 11111.00, 0, 12000.00, 13000.00, 'aa', 'aaa', '2009170041', '3', '2', 'upload_files/candidate_tracker/65303633559_Star-Super-Surplus-Floater-Brochure.pdf', NULL, NULL, '2020-09-17', 11, '', '3', '8', '2020-09-17', 18000.00, '02:50 PM', '7', '1970-01-01', '1', 'for gokul team', '5', '1', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:39:32', 7, '2020-09-17 05:08:18', 7, '2020-10-07 05:59:02', 0),
(446, '', '0', '9150995677', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170042', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:45:06', 0, NULL, 0, NULL, 1),
(447, 'Deekshita', '4', '8072904858', '', 'banu.cafs@gmail.com', '1994-07-05', 26, '2', '1', 'nikitha', 'nil', 30000.00, 0, 18000.00, 23000.00, 'Chennai', 'Chennai', '2009170043', '1', '2', 'upload_files/candidate_tracker/68391595294_Medi-Classic-Individual-Brochure-v2.pdf', NULL, NULL, '2020-09-26', 15, '', '3', '8', '2020-09-30', 15000.00, '10:30 AM', '1', '1970-01-01', '1', 'for Banu team', '1', '2', '1', '2', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:51:51', 52, '2020-09-26 03:21:44', 7, '2020-10-07 05:59:02', 0),
(448, 'dummy eight', '13', '9962869361', '', 'srini.yyy@gmail.com', '1990-01-08', 30, '4', '2', 'karthich', 'bank manager', 75000.00, 1, 25000.00, 35000.00, 'Chennai', 'Chennai', '2009170044', '', '2', 'upload_files/candidate_tracker/34496386051_CHI Revised 2019 One Pager 2019 - SP (1).pdf', NULL, NULL, '2020-09-24', 30, '', '6', '0', NULL, 0.00, '11:03 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:59:23', 1, '2020-09-17 03:03:30', 7, '2020-09-24 01:55:54', 0),
(449, '', '0', '9940561292', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170045', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 03:00:57', 0, NULL, 0, NULL, 1),
(450, 'gokulraj sankar', '2', '8608706342', '', '', '2005-09-17', 15, '2', '2', 'sankar', 'farmer', 1000.00, 1, 0.00, 1000.00, 'chennao', 'chemnmnap', '2009170046', '1', '1', 'upload_files/candidate_tracker/57518129350_Resume (1).pdf', NULL, NULL, '2020-09-17', 0, '', '6', '0', NULL, 0.00, '03:18 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 03:17:45', 1, '2020-09-17 03:18:54', 0, NULL, 1),
(451, '', '0', '9514317395', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170047', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 03:18:03', 0, NULL, 0, NULL, 1),
(452, 'Jaffer sathik', '13', '9840349491', '', '', '1980-09-17', 40, '3', '2', 'Sathik', 'Former', 5000.00, 2, 0.00, 20000.00, 'chennnai', 'Chennnai', '2009170048', '', '1', 'upload_files/candidate_tracker/42476977667_dummy.pdf', NULL, NULL, '2020-09-17', 0, '', '5', '41', '1970-01-01', 0.00, '03:39 PM', '', '1970-01-01', '2', NULL, '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 03:37:34', 1, '2020-09-17 05:28:49', 0, NULL, 1),
(453, 'vinoth', '11', '9994562302', '9655217492', 'mathivino@gmail.com', '1985-06-01', 35, '1', '1', 'mathivanan', 'govertment employee', 40.00, 1, 4.50, 5.00, 'chennai', 'chennai', '2009170049', '', '2', 'upload_files/candidate_tracker/10924622016_Vinoth Updated Resume.docx', NULL, NULL, '2020-09-21', 0, '5152', '5', '8', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'will not sustain. will move  if get better offer. has exp only in sourcing and rec.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 03:48:47', 1, '2020-09-19 11:26:16', 0, NULL, 1),
(454, 'Deepa.E', '4', '7305143383', '', 'dd22deepa@gmail.com', '1998-10-22', 21, '2', '2', 'Elumalai.M', 'Bus driver', 120000.00, 1, 0.00, 10000.00, 'Chengalpattu', 'Chennai', '2009170050', '1', '1', 'upload_files/candidate_tracker/92606956622_resume 2020-03-02 11.36.20.pdf', NULL, NULL, '2020-09-18', 0, '', '6', '', '1970-01-01', 0.00, '04:09 PM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 03:58:00', 50, '2020-09-17 04:46:37', 0, NULL, 1),
(455, 'Aishwarya R', '4', '8637461669', '7358700681', 'aishwarya210799@gmail.com', '1999-07-21', 21, '2', '2', 'Mother-Hema', 'Working', 25000.00, 0, 0.00, 10000.00, 'Madipakkam', 'Madipakkam', '2009170051', '1', '1', 'upload_files/candidate_tracker/28558318149_R Aishwarya _Color Format – 04.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'she is not sustain  long term , interested in viscom field .... no job need for family ...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 04:03:54', 50, '2020-09-17 04:17:59', 0, NULL, 1),
(456, 'Aishwarya', '4', '7358343932', '', 'aishuanal1812@gmail.com', '1997-02-18', 23, '2', '2', 'Kumaresan', 'Tailor', 20000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2009170052', '1', '2', 'upload_files/candidate_tracker/833819364_Resume-converted.pdf', NULL, NULL, '2020-09-22', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'She said donxquott want voice process looking for non voice ..and not suitable for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 04:18:12', 50, '2020-09-22 11:40:35', 0, NULL, 1),
(457, 'MD OSMAN SHARIFF', '4', '6360188380', '', 'mohammedusmanshariff98@gmail.com', '1998-02-07', 22, '2', '2', 'MD AKBAR SHARIFF', 'self employee', 40000.00, 1, 15000.00, 15000.00, 'sivajinagar', 'sivajinagar', '2009170053', '7', '2', 'upload_files/candidate_tracker/73274886211_osman_CRM_CAFS.docx', NULL, NULL, '2020-09-18', 0, '', '6', '0', NULL, 0.00, '03:00 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 05:11:10', 1, '2020-09-17 05:16:15', 0, NULL, 1),
(458, 'm.reshma', '4', '9677037229', '8610530775', 'reshusulthana1999@gmail.com', '1999-12-01', 20, '2', '2', 'maa basha.k', 'nil', 9000.00, 2, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2009170054', '1', '1', 'upload_files/candidate_tracker/76941960470_reshu .m resume.docx', NULL, NULL, '2020-09-18', 0, '', '3', '8', '2020-09-28', 10000.00, '11:00 AM', '3', '2020-09-19', '2', '10K for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 05:11:21', 7, '2020-10-07 05:57:53', 0, NULL, 1),
(459, 'Victoriya.N', '11', '9791199698', '9791526505', 'Victsteve@gmail.com', '1997-05-25', 23, '2', '1', 'Stephen', 'Sales', 30000.00, 0, 10000.00, 15000.00, 'Chennai', 'Chennai', '2009170055', '1', '2', 'upload_files/candidate_tracker/94043385078_1599290194329_RESUME.pdf', NULL, NULL, '2020-09-18', 0, '', '8', '41', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Long distance not interested', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 05:52:47', 50, '2020-09-17 06:20:17', 0, NULL, 1),
(460, 'Ram Mithran', '4', '9884492952', '', 'rammithran95@gmail.com', '1999-05-08', 21, '2', '2', 'Rajavel R', 'Business', 25000.00, 0, 0.00, 12000.00, '32/1, Ragava street, choolai, Chennai-600112', '32/1, Ragava Street, Choolai, Chennai-600112', '2009170056', '4', '1', 'upload_files/candidate_tracker/56821817684_Resume_Ram Mithran R_Format4(2).pdf', NULL, NULL, '2020-09-18', 0, '', '3', '8', '2020-09-21', 10000.00, '10:00 AM', '6', '2021-05-03', '1', 'for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 05:55:52', 7, '2020-10-06 12:49:34', 0, NULL, 1),
(461, 'dhanasekar', '13', '8608259038', '9884916446', 'jebaraj1040@gmail.com', '1995-05-13', 25, '2', '2', 'shanmugam', 'former', 30000.00, 0, 200000.00, 250000.00, 'chennai', 'chennai', '2009170057', '1', '2', 'upload_files/candidate_tracker/32522495011_dhanasekar-resume.doc', NULL, NULL, '2020-09-18', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 06:22:34', 1, '2020-09-17 06:30:17', 0, NULL, 1),
(462, 'pavithra k', '11', '8667801503', '9003245684', 'pavisusi123@gmail.com', '1995-03-24', 25, '2', '1', 'karthikeyan', 'testing engineer', 30000.00, 1, 13000.00, 20000.00, 'Mogappair', 'Mogappair', '2009170058', '1', '2', 'upload_files/candidate_tracker/7250825016_pavithra_cv.pdf', NULL, NULL, '2020-09-19', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Will Not Sustain And She Is Looking For HR Generalist And Doesnt Have Relevant Exp.  She Was Getting 13K And Exp 20 A Salary Hike.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 07:00:30', 8, '2020-09-19 12:11:35', 0, NULL, 1),
(463, 'Manimaran. B', '4', '9942067447', '8667270649', '006maranmani@gmail.com', '1996-04-05', 24, '2', '2', 'Boomibalan. C', 'Farmer', 150000.00, 2, 0.00, 12000.00, 'Panruti', 'Poonamale', '2009180001', '1', '1', 'upload_files/candidate_tracker/19392710305_Resume_2020-09-03-17-06-51.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '10:56 AM', '', '1970-01-01', '2', 'not speaking up will not suite for calling and not int in sales.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 09:40:14', 50, '2020-09-18 11:42:37', 0, NULL, 1),
(464, 'Priyalakshmi', '4', '9344399447', '9445164238', 'Priyadayalan97@gmail.com', '1997-03-24', 23, '1', '2', 'C. Deenadayalan', 'Bsnl', 18000.00, 0, 0.00, 15000.00, 'Kodambakkam', 'Kodambakkam', '2009180002', '', '2', 'upload_files/candidate_tracker/57122711192_RESUME - Priya Lakshmi.pdf', NULL, NULL, '2020-09-18', 0, '5156', '3', '8', '2020-09-21', 10500.00, '10:00 AM', '5', '1970-01-01', '1', 'for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 10:04:31', 7, '2020-10-07 05:58:19', 0, NULL, 1),
(465, 'B.NITHYANANTHAM', '5', '8124332223', '', 'nithya.anand0209@gmail.com', '1984-09-02', 36, '2', '1', 'Sangamithra', 'Salaried', 25000.00, 0, 300000.00, 420000.00, 'Chennai', 'Chennai', '2009180003', '3', '2', 'upload_files/candidate_tracker/93859511592_UPADATED CV JULY20.docx', NULL, NULL, '2020-09-18', 0, '', '5', '31', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'Dont have direct sales experience and his  expectation salary is high', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 10:15:33', 1, '2020-09-18 10:39:33', 0, NULL, 1),
(466, 'komal kumari', '13', '8418865802', '', 'komalsinghaugust@gmail.com', '1995-10-04', 24, '2', '2', 'mr. narendra singh', 'farmer', 30000.00, 4, 2.50, 3.50, 'sasaram bihar', 'jafferkhanpet chennai', '2009180004', '4', '2', 'upload_files/candidate_tracker/5405091666_Resume.docx', NULL, NULL, '2020-09-18', 10, '', '5', '26', NULL, 0.00, '10:06 AM', '0', NULL, '2', 'she is having 10 month of Experience but she dont know the  Basis of ajax ,scripts .', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 10:55:17', 1, '2020-09-18 11:33:21', 0, NULL, 1),
(467, '', '0', '7538867308', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009180005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 11:06:00', 0, NULL, 0, NULL, 1),
(468, 'Aravind B', '28', '9789892200', '', 'aravindlmj14@gmail.com', '1995-09-14', 25, '2', '2', 'Bhasker', 'Business', 30000.00, 1, 16000.00, 18000.00, 'Chennai City North', 'Chennai City North', '2009180006', '1', '2', 'upload_files/candidate_tracker/23856472174_ARAVIND RESUME WORD.docx', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude, Just for time being looking for a job, Will not sustain ', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-09-18 11:14:41', 1, '2021-04-20 11:34:55', 0, NULL, 1),
(469, 'Mahamad Zameer Ahamad', '4', '8310358318', '8970071232', 'Zameerzams3@gmail. Com', '1992-12-22', 27, '2', '2', 'Abdul Rasool', 'Farmer', 20000.00, 1, 15000.00, 18000.00, 'E/2/3/75 Sarojina Area Deodurga karnataka 584111', '# muthaiya Kengutte Mallathalli Bangalore 560056', '2009180007', '7', '2', 'upload_files/candidate_tracker/32519083107_Resume.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '38', NULL, 0.00, '11:46 AM', '0', NULL, '1', 'will not suit for our field', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 11:18:31', 1, '2020-09-18 12:37:35', 0, NULL, 1),
(470, 'Karthik E', '13', '9500624852', '', 'karthikms567@gmail.com', '1996-05-30', 24, '2', '2', 'Egambaram B', 'Farmer', 10000.00, 1, 2.40, 3.50, 'No. 4/30, Angasalai Street,Arcot', 'D-124, Santhosh colony,k.k Nagr, Chennai', '2009180008', '4', '2', 'upload_files/candidate_tracker/66876169950_karthik.docx', NULL, NULL, '2020-09-18', 15, '', '5', '26', NULL, 0.00, '11:27 AM', '0', NULL, '1', 'he is having more then 2  years of Experience but not good in mysql concepts.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 11:22:45', 1, '2020-09-18 11:28:21', 0, NULL, 1),
(471, 'Thangavel', '5', '9092826400', '', 'goldenanba@gmail.com', '1997-04-10', 23, '2', '2', 'T.Anna packiam', 'NIC agent', 15000.00, 1, 24300.00, 30000.00, 'Trichy', 'Trichy', '2009180009', '3', '2', 'upload_files/candidate_tracker/32241590337_Thangavel 2010.pdf', NULL, NULL, '2020-09-18', 0, '', '3', '8', '2020-10-05', 324000.00, '11:35 AM', '6', '2022-11-30', '1', '27K. for  manivel team', '5', '2', '4', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 11:32:46', 7, '2020-10-22 05:23:43', 0, NULL, 1),
(472, 'Surendar Kumar S', '4', '8524053975', '9095462529', 'Surenkumar177@gmail.com', '1996-10-31', 24, '3', '2', 'Sugumar M', 'Security', 8000.00, 4, 10000.00, 14000.00, 'No:117 Pillaiyar kovil Street vadapathi mamandur', 'No:131 Dr.giriyappa salai street Teynampet', '2009180010', '', '2', 'upload_files/candidate_tracker/27173578630_Surendarkumar123.pdf', NULL, NULL, '2021-01-25', 2, '', '6', '0', NULL, 0.00, '12:10 PM', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-09-18 11:39:27', 1, '2021-01-25 12:49:02', 0, NULL, 1),
(473, '', '0', '7550164906', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009180011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 12:08:14', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(474, 'RESHMA. Y', '4', '8608530578', '8925647936', 'yyreshma@gmail.com', '1997-06-30', 23, '2', '2', 'I.S. YUSUF', 'Security', 5000.00, 1, 0.00, 11000.00, '5/44, P.P.D.Road,3rd Street, Thangal ,Thiruvottiy', '5/44 ,p P.D.Road,3rd Street, Thangal Thiruvottiyur', '2009180012', '1', '1', 'upload_files/candidate_tracker/13209325790_Resume.doc', NULL, NULL, '2020-09-21', 0, '', '5', '13', '1970-01-01', 0.00, '11:11 AM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 12:15:11', 50, '2020-09-21 10:01:23', 0, NULL, 1),
(475, 'i.anu saranya mary', '4', '9080645094', '', 'anusaranyamary@gmail.com', '1996-11-24', 23, '1', '2', 't.iruthaya raj', 'late', 200000.00, 3, 0.00, 15000.00, 'chennai', 'ambattur', '2009180013', '', '1', 'upload_files/candidate_tracker/52145476559_Anu Resume.docx', NULL, NULL, '2020-09-18', 0, '5174', '5', '14', NULL, 0.00, '12:37 PM', '0', NULL, '2', 'long distance . not suitable for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 12:23:46', 1, '2020-09-18 12:44:58', 0, NULL, 1),
(476, 'Shankareswaran Ulagasundaram', '11', '9962429542', '9940209002', 'waresh91@gmail.com', '1991-09-04', 29, '2', '2', 'Ulagasundaram', 'lic', 20000.00, 1, 26400.00, 28000.00, 'chennai', 'chennai', '2009180014', '2', '2', 'upload_files/candidate_tracker/76415496547_shankareswaran CV-converted-converted.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '53', '1970-01-01', 0.00, '03:46 PM', '', '1970-01-01', '1', 'He dont hve patience and lessoning capacity. He wont suit for HR', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 12:43:32', 50, '2020-09-18 03:42:51', 0, NULL, 1),
(477, 'Swati Mishra', '13', '8260030388', '', 'mishraswati.ms@gmail.com', '1987-09-29', 32, '2', '1', 'Suvendu Mishra', 'Software Engineer', 700000.00, 1, 252000.00, 420000.00, 'Bhubaneswar', 'Chennai', '2009180015', '11', '2', 'upload_files/candidate_tracker/27249175825_SwatiMishra__Resume.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '27', NULL, 0.00, '01:00 PM', '0', NULL, '2', 'Task Not Completed and no reply from her.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 12:54:14', 1, '2020-09-18 01:20:28', 0, NULL, 1),
(478, 'Ragul', '6', '6383013369', '', '', '1998-04-27', 22, '2', '2', 'Balasubramani', 'Masation', 15000.00, 1, 0.00, 15000.00, 'Karur', 'Tambaram, Chennai.', '2009180016', '1', '1', 'upload_files/candidate_tracker/21694620358_Ragul Resume.pdf', NULL, NULL, '2020-09-22', 0, '', '5', '19', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'sustainability doubt', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 12:56:19', 8, '2020-09-22 02:59:52', 0, NULL, 1),
(479, 'S. RAJKUMAR', '4', '7010553013', '9962769911', '', '1994-06-27', 26, '2', '2', 'K. SOUNDARAJAN', 'WORKING', 250000.00, 1, 0.00, 16000.00, 'Ambattur, chennai', 'Ambattur', '2009180017', '1', '1', 'upload_files/candidate_tracker/9605125860_rajj RES con.docx', NULL, NULL, '2020-09-19', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 01:07:21', 50, '2020-09-19 02:27:46', 0, NULL, 1),
(480, 'Manjula.v', '4', '6361820543', '9900087680', 'manjulavemulapalli27@mail.com', '1990-06-20', 30, '2', '2', 'Venkateshwaralu.v', 'Business', 6000000.00, 1, 15000.00, 18000.00, 'Hebbal', 'Hebbal', '2009180018', '7', '2', 'upload_files/candidate_tracker/15207341358_JD for CS Team.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '38', NULL, 0.00, '01:13 PM', '0', NULL, '2', 'zero in communication xxamp attitude', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 01:07:41', 1, '2020-09-18 01:53:30', 0, NULL, 1),
(481, 'J. Jenifer', '4', '8124488718', '7397429288', 'Jeniferjio111@gmail.com', '1999-12-03', 20, '2', '2', 'P. Jayaraman', 'Painter', 3000.00, 0, 13000.00, 14000.00, 'Athhipet', 'Atthipet', '2009180019', '1', '2', 'upload_files/candidate_tracker/63104156649_1600415774285_J.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '01:44 PM', '', '1970-01-01', '2', '1:30 mins traveling aprox. and will not suite for our process.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 01:22:33', 50, '2020-09-18 01:53:58', 0, NULL, 1),
(482, 'Mohana Devan R', '11', '8940090413', '', 'devan4097@gmail.com', '1996-07-15', 24, '2', '2', 'Radha Krishnan C', 'Farmer', 200000.00, 3, 0.00, 216000.00, 'Chennai', 'Gerugambakkam Porur', '2009180020', '1', '1', 'upload_files/candidate_tracker/91721058606_Mohana Devan R Resume Mba.doc', NULL, NULL, '2020-09-23', 0, '', '8', '41', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 01:42:32', 50, '2020-09-23 04:47:27', 0, NULL, 1),
(483, 'nagarajan s', '4', '8939140596', '9790564188', 'naanhbk8@gmail.com', '1997-09-11', 23, '2', '2', 'swamynadar t', 'cooli', 30000.00, 0, 9500.00, 12000.00, 'tamparam', 'tamparam', '2009180021', '1', '2', 'upload_files/candidate_tracker/18596915315_naga new resume.copy.pdf', NULL, NULL, '2020-09-19', 0, '', '5', '21', NULL, 0.00, '12:20 PM', '0', NULL, '2', 'already he worked non voice process, he is not sustain long term', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 02:02:35', 1, '2020-09-19 12:23:52', 0, NULL, 1),
(484, 'Aravindan S', '5', '9042379501', '9884135110', 'aravindan1911@gmail.com', '1995-11-19', 24, '2', '2', 'Singaram R', 'cook', 250000.00, 1, 20000.00, 22000.00, 'Perambur', 'Perambur', '2009180022', '1', '2', 'upload_files/candidate_tracker/1991472625_ARAVINDAN RESUME (3).pdf', NULL, NULL, '2020-09-19', 0, '', '5', '51', '1970-01-01', 0.00, '11:33 AM', '', '1970-01-01', '1', 'he cant work on leave ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 02:05:37', 8, '2020-09-19 12:38:09', 0, NULL, 1),
(485, 'Soniya', '4', '7397358651', '', 'soniyadeven98@gmail.com', '0998-01-23', 1022, '2', '2', 'A. Devendran', 'Gardner', 15000.00, 1, 12000.00, 15000.00, 'Perungudi, chennai', 'Perungudi Chennai', '2009180023', '1', '2', 'upload_files/candidate_tracker/91980667206_1585540353439Resume_D.pdf', NULL, NULL, '2020-09-19', 0, '', '8', '', '1970-01-01', 0.00, '03:25 PM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 02:11:03', 50, '2020-09-19 04:08:37', 0, NULL, 1),
(486, 'Satheesh S', '4', '7550209510', '', 'satheeshanand1729@gmail.com', '2000-03-08', 20, '2', '2', 'Selvaraj M', 'MTC Bus Conductor', 50000.00, 1, 0.00, 13000.00, 'Plot number 50A, PTC Quarters, Chennai-600097', 'Plot Number 50A, PTC Quarters, Chennai-600097', '2009180024', '1', '1', 'upload_files/candidate_tracker/93586059268_applicant resume.docx', NULL, NULL, '2020-09-19', 0, '', '5', '8', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'Pronunciation Is Not Good', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 02:15:18', 50, '2020-09-18 04:07:24', 0, NULL, 1),
(487, '', '0', '8148631239', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009180025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 02:16:47', 0, NULL, 0, NULL, 1),
(488, 'ABUL HASAN. A', '6', '9843121177', '9843321177', 'hasanalmuharib@gmail.com', '1994-05-18', 26, '2', '1', 'ABUKKALAM. A', 'BUSINESS', 115000.00, 1, 100000.00, 25000.00, 'MADURAI', 'CHENNAI', '2009180026', '1', '2', 'upload_files/candidate_tracker/95169684176_RESUME - Abul.pdf', NULL, NULL, '2020-09-19', 0, '', '5', '16', '1970-01-01', 0.00, '02:15 PM', '', '1970-01-01', '1', 'he is expect more salary and sustain doubt', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 02:42:03', 50, '2020-09-19 02:49:24', 0, NULL, 1),
(489, '', '0', '9551748737', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009180027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 03:53:59', 0, NULL, 0, NULL, 1),
(490, 'Jeyasakthi', '4', '9500715138', '6381645193', 'jeyasakthi461@gmail.com', '1999-04-24', 21, '2', '2', 'Kannan', 'Farmer', 5000.00, 1, 0.00, 20000.00, 'Madurai', 'Tambaram', '2009180028', '1', '1', 'upload_files/candidate_tracker/11553581667_Jeyasakthi.docx', NULL, NULL, '2020-09-19', 0, '', '5', '8', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'will not sustain. doing his degree and looking for part time job.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 04:33:18', 50, '2020-09-19 09:30:01', 0, NULL, 1),
(491, 'AKASH K', '5', '7358597379', '9344044766', 'akashakee1199@gmail.com', '1999-03-01', 21, '2', '2', 'Karnan M', 'Driver', 16.00, 1, 15.00, 15.00, 'No 124 Rottary Nagar 11th Street Triplicane ch-5', 'No 124 Rottary Nagar 11th Street Triplicane Ch-5', '2009180029', '1', '2', 'upload_files/candidate_tracker/91081351705_akash resume(1).pdf', NULL, NULL, '2020-09-19', 0, '', '5', '51', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'product knowldege is poor', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 04:33:49', 8, '2020-09-19 12:24:46', 0, NULL, 1),
(492, '', '0', '0000000021', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009180030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 04:53:26', 0, NULL, 0, NULL, 1),
(493, 'Janani', '11', '7358233067', '', 'Jananij587@gmail.com', '1997-12-31', 22, '1', '2', 'Sivakumar', 'Sales Executive', 25000.00, 1, 14000.00, 14000.00, 'Ashok nagar', 'Ashok Nagar', '2009180031', '', '2', 'upload_files/candidate_tracker/10556500542_Janani S_Exp 0.8 months_HR Recruiter_Chennai. (1).pdf', NULL, NULL, '2020-09-19', 10, '5152', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'selected, but not joined. and no response', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 05:12:31', 8, '2020-09-19 01:08:56', 0, NULL, 1),
(494, 'Santhosh', '11', '9003322471', '9361600495', 'Santhoshprofessionals@gmail.com', '1994-08-21', 26, '2', '2', 'Dhanasekar', 'Own business', 2.00, 2, 2.55, 3.50, 'Vellore', 'Chennai', '2009180032', '1', '2', 'upload_files/candidate_tracker/80549521481_HR Professional.docx', NULL, NULL, '2020-09-21', 0, '', '6', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', NULL, '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 05:41:55', 50, '2020-09-19 02:54:30', 0, NULL, 1),
(495, '', '0', '8608539578', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009180033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 11:25:51', 0, NULL, 0, NULL, 1),
(496, '', '0', '8124582804', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 12:14:31', 0, NULL, 0, NULL, 1),
(497, '', '0', '9600932072', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 10:03:08', 0, NULL, 0, NULL, 1),
(498, 'S DIVAKAR', '16', '9551943368', '9080261467', 'divakarsekar2@gmail.com', '1991-10-19', 28, '2', '2', 'M.D.SEKAR', 'Tailor', 15000.00, 1, 29000.00, 15000.00, 'Chennai', 'Chennai', '2009190003', '1', '2', 'upload_files/candidate_tracker/89146688219_DIVAKAR RESUME MBA', NULL, NULL, '2021-03-10', 0, '', '5', '53', '1970-01-01', 0.00, '10:39 AM', '', '1970-01-01', '2', 'hvng little knowledge in MIS, he dont know Macro and spreadsheet.  Wont sustain also.', '3', '2', '', '', '', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-09-19 10:21:30', 7, '2021-03-10 12:26:27', 0, NULL, 1),
(499, 'vigneshwaran', '1', '8489386970', '', '', '1996-02-03', 24, '2', '2', 'kumar', 'supervisor', 35000.00, 1, 20000.00, 25000.00, 'ponneri', 't nagar', '2009190004', '1', '2', 'upload_files/candidate_tracker/4934189650_Vigneshnew updated.docx', NULL, NULL, '2020-09-21', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 10:38:25', 50, '2020-09-21 11:53:11', 0, NULL, 1),
(500, 'nisha', '6', '7358897610', '9489364600', 'nisha2nibu@gmail.com', '1995-05-15', 25, '2', '1', 'murugesan', 'driver', 15000.00, 0, 0.00, 16000.00, '8 kanyakumari', '69 ambathkar nagar kolathur', '2009190005', '1', '1', 'upload_files/candidate_tracker/96413051034_1600237248986_M Nisha Resume.pdf', NULL, NULL, '2020-09-21', 0, '', '5', '8', '1970-01-01', 0.00, '12:05 PM', '', '1970-01-01', '1', 'will not sustain.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 10:43:53', 52, '2020-09-21 10:27:53', 0, NULL, 1),
(501, 'Vijayalakashmi P', '4', '8220947768', '', 'Viji154086@gmail.com', '1998-06-10', 22, '2', '2', 'Palanisamy', 'Driver', 10000.00, 1, 13500.00, 16000.00, 'Rajapalayam', 'Tnagar', '2009190006', '1', '2', '', NULL, NULL, '2020-09-19', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Sustainability	less', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 10:56:58', 13, '2020-10-06 03:31:58', 0, NULL, 1),
(502, 'johndavid', '4', '9489364600', '7092298200', 'johndavidjo9865@zohomail.in', '1992-04-29', 28, '2', '1', 'George', 'farmer', 1500.00, 3, 0.00, 16000.00, '16 old bhuvanagiri road chidambaram', '36 ambathkar nagar 1st cross street kolathur', '2009190007', '1', '1', 'upload_files/candidate_tracker/46937103824_john new resume.docx', NULL, NULL, '2020-09-25', 0, '', '6', '0', NULL, 0.00, '11:15 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 11:10:51', 1, '2020-09-19 11:15:37', 0, NULL, 1),
(503, '', '0', '8489386979', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 11:22:39', 0, NULL, 0, NULL, 1),
(504, 'N.kumari', '4', '9003231892', '9884757699', 'nkumari38931@gmail.com', '1999-09-24', 20, '2', '2', 'M.nandha kumar', 'Coolie', 15000.00, 1, 0.00, 11000.00, 'Velachery', 'Velachery', '2009190009', '2', '1', 'upload_files/candidate_tracker/23693842237_imgtopdf_generated_1709201624009.pdf', NULL, NULL, '2020-09-19', 0, '', '3', '8', '2020-09-28', 10000.00, '11:57 AM', '6', '2021-03-26', '2', 'she can join oct. selected for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 11:53:53', 52, '2020-09-30 12:38:01', 0, NULL, 1),
(505, 'R.naren Kumar', '4', '7871705887', '8940177881', 'Narenrobert1998@gmail.com', '1999-05-16', 21, '2', '2', 'N.ramu (died)', '10th', 5000.00, 0, 0.00, 10000.00, 'Ayanavaram', 'Ayanavaram', '2009190010', '1', '1', 'upload_files/candidate_tracker/58869496354_resume-1.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '13', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'he is intersted on only non-voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 11:56:20', 50, '2020-10-09 11:30:39', 0, NULL, 1),
(506, 'Shanthini Priya', '4', '6380039702', '7639442902', 'shaanthini03@gmail.com', '1998-05-30', 22, '2', '2', 'Yesu patham', 'Cooli', 20000.00, 2, 0.00, 12000.00, 'Vettavalam, Tiruvannamalai dt', 'Teynampet', '2009190011', '1', '1', 'upload_files/candidate_tracker/11319812703_03shaayah.docx.pdf', NULL, NULL, '2020-09-21', 0, '', '6', '', '1970-01-01', 0.00, '12:33 PM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 12:29:49', 50, '2020-09-19 04:44:41', 0, NULL, 1),
(507, 'Ramkumar', '4', '9047135404', '8667406709', 'ramramble007@gmail.com', '1996-04-26', 24, '2', '2', 'Sekar', 'Farmer', 10000.00, 2, 10.80, 15.00, 'Kallakurichi', 'VELACHERRY', '2009190012', '1', '2', 'upload_files/candidate_tracker/19502986828_CV ram-2.pdf', NULL, NULL, '2020-09-21', 0, '', '6', '', '1970-01-01', 0.00, '10:51 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 12:47:37', 50, '2020-09-19 04:27:05', 0, NULL, 1),
(508, 'nivetha', '11', '9791216260', '', 'niveraj99@gmail.com', '1994-03-25', 26, '1', '2', 'raja.o', 'sub inspector', 100000.00, 1, 10000.00, 20000.00, 'Madurai', 'Madurai', '2009190013', '', '2', 'upload_files/candidate_tracker/65860358978_Nivetha 4years HR Experience Resume.pdf', NULL, NULL, '2020-09-19', 0, '55566', '5', '8', NULL, 0.00, '03:00 PM', '0', NULL, '2', 'hold for telephonic but she is not Responding.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 12:49:17', 1, '2020-09-19 01:10:14', 0, NULL, 1),
(509, '', '0', '8695121023', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 01:04:05', 0, NULL, 0, NULL, 1),
(510, 'k.Sivaramakrishnan', '13', '7397410306', '8681930259', 'sivasiva10236@gmail.com', '1995-03-26', 25, '1', '2', 'm.karuppasamy', 'weaver', 18000.00, 1, 12000.00, 20000.00, 'theni', 'chennai', '2009190015', '', '2', 'upload_files/candidate_tracker/46619616470_SIVARAMAKRISHNAN.pdf', NULL, NULL, '2020-09-21', 10, '55566', '3', '8', '2020-10-05', 14200.00, '10:30 AM', '2', '1970-01-01', '2', 'For PHP developer.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 01:11:56', 7, '2020-10-07 06:00:45', 0, NULL, 1),
(511, 'manikandan', '11', '6385153710', '', 'maniluu.lsd@gmail.com', '1992-05-22', 28, '1', '2', 'thulasibai', 'home maker', 50000.00, 3, 300000.00, 400000.00, 'peramber', 'perambur', '2009190016', '', '2', 'upload_files/candidate_tracker/77772939237_Manikandan Resume - pdf.pdf', NULL, NULL, '2020-09-21', 0, '55566', '5', '54', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'He will not sustain, because his brother running own consultancy. he worked few months and due to personal Reason he left the company.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 01:17:14', 1, '2020-09-19 04:26:04', 0, NULL, 1),
(512, 'tilsy esther', '11', '9789697933', '', '', '1993-03-08', 27, '1', '2', 'k k durai', 'sales manager', 600000.00, 2, 3.32, 4.00, 'chennai', 'chennai', '2009190017', '', '2', 'upload_files/candidate_tracker/5659048056_Tilsy Esther - 2019.pdf', NULL, NULL, '2020-09-21', 15, '55566', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'Well settled, there is no need for job.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 01:38:14', 1, '2020-09-19 01:42:34', 0, NULL, 1),
(513, 'Usha p', '11', '7397449955', '', '', '1995-04-10', 25, '2', '2', 'Palani', 'Business', 30000.00, 1, 10.00, 22000.00, 'Virugambakkkam', 'Virugambakkkam', '2009190018', '1', '2', 'upload_files/candidate_tracker/89591738511_0_1575708207262Resume_Usha.pdf', NULL, NULL, '2020-09-21', 0, '', '5', '53', NULL, 0.00, '11:56 AM', '0', NULL, '1', 'exp high sal, thinking reg bond', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 01:55:46', 1, '2020-09-21 11:56:28', 0, NULL, 1),
(514, '', '0', '9941949711', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 02:50:37', 0, NULL, 0, NULL, 1),
(515, 'Priya', '4', '9025790981', '', 'Shawnpriya1907@gmail.com', '1998-12-19', 21, '2', '2', 'G. Ganeshan', 'Welder', 12000.00, 1, 12000.00, 15000.00, 'Avadi, Chennai -600071', 'Avadi, Chennai -600071', '2009190020', '1', '2', 'upload_files/candidate_tracker/92693381359_Priya resume .docx', NULL, NULL, '2020-09-21', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 03:12:10', 50, '2020-09-19 04:54:29', 0, NULL, 1),
(516, 'Selvi.s', '4', '9629889009', '', 'selvihania@gmail.com', '1993-06-05', 27, '2', '1', 'Nandakumar.m', 'Service engineer', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2009190021', '1', '1', 'upload_files/candidate_tracker/5074805500_selvi shankar.docx', NULL, NULL, '2020-09-21', 0, '', '5', '14', '1970-01-01', 0.00, '12:43 PM', '', '1970-01-01', '2', 'not suitable for tele calling..communication not good ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 03:23:58', 50, '2020-09-21 12:57:32', 0, NULL, 1),
(517, '', '0', '8122257485', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 03:27:25', 0, NULL, 0, NULL, 1),
(518, '', '0', '7338770122', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 03:33:31', 0, NULL, 0, NULL, 1),
(519, 'Gulbanu', '4', '9500185212', '9500185186', 'Gulbanuali@gmail.com', '1983-02-05', 37, '3', '1', 'Md hussain', 'Nil', 1000.00, 1, 18000.00, 20000.00, 'Royapettah', 'Royapettah', '2009190024', '', '2', 'upload_files/candidate_tracker/79651456438_gulbanu resume-2.doc', NULL, NULL, '2020-09-19', 0, '', '10', '0', NULL, 0.00, '04:47 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 04:05:10', 1, '2020-09-19 07:52:50', 50, '2020-12-21 11:39:30', 0),
(520, 'Simon Samson raj b', '4', '8838465447', '9043289521', 'simonsamsonraj621@gmail.com', '1995-05-17', 25, '2', '2', 'Babu', 'Research analyst', 60000.00, 4, 16000.00, 20000.00, 'Thiruninravur', 'Thiruninravur', '2009190025', '1', '2', 'upload_files/candidate_tracker/3267244376_1599750484201_1599464529328_Simon Samson Raj B(603270).pdf', NULL, NULL, '2020-09-21', 15, '', '6', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 04:07:26', 50, '2020-09-19 04:23:59', 0, NULL, 1),
(521, 'V.bhuvaneswar', '4', '9566270547', '', 'Bhuvi.v1999@gmail.com', '1999-07-26', 21, '2', '2', 'T.vijay ramgalima', 'Chennai', 35000.00, 1, 0.00, 15000.00, 'Chennai vadapalani', 'Chennai vadapalani', '2009190026', '4', '1', 'upload_files/candidate_tracker/64534668375_NEW resume (1).pdf', NULL, NULL, '2020-09-21', 0, '', '5', '21', '1970-01-01', 0.00, '11:07 AM', '', '1970-01-01', '1', 'words pronuncation problem ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 04:13:04', 50, '2020-09-21 11:44:36', 0, NULL, 1),
(522, 'Dinesh.K', '4', '9791012713', '', 'dineshk19979@gmail.com', '1996-09-26', 23, '2', '2', 'Kumar', 'Cable operator', 20000.00, 0, 0.00, 15000.00, 'West tambaram', 'West tambaram', '2009190027', '1', '1', 'upload_files/candidate_tracker/98275335170_resume_1594906460420.pdf', NULL, NULL, '2020-09-21', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 04:24:41', 50, '2020-09-19 04:41:16', 0, NULL, 1),
(523, '', '0', '7550124052', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 05:11:22', 0, NULL, 0, NULL, 1),
(524, 'Jothilakshmi.s', '11', '9345490182', '9944008615', 'Jothijoe1095@gmail.com', '1995-07-10', 25, '2', '2', 'Samikannu.E', 'Driver', 20000.00, 2, 13700.00, 20000.00, 'Chennai', 'Chennai', '2009190029', '1', '2', 'upload_files/candidate_tracker/69373440171_Jothi Recruiter _2 6Yes_live Connections_Chennai.doc', NULL, NULL, '2020-09-21', 10, '', '5', '54', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'she will not sustain and dont have a patince.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 05:24:32', 50, '2020-09-21 11:09:29', 0, NULL, 1),
(525, '', '0', '9629771366', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 06:41:45', 0, NULL, 0, NULL, 1),
(526, 'sandhya shree.s', '11', '9962842737', '9092448466', 'sandhya93.shree@gmail.com', '1993-07-08', 27, '1', '2', 'srinivasan', 'CARPENTER', 30000.00, 2, 4500000.00, 550000.00, 'chennai', 'chennai', '2009190031', '', '2', 'upload_files/candidate_tracker/49051696620_Resume_Sandhya-14 sep.docx', NULL, NULL, '2020-09-21', 0, '55566', '5', '53', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'Not suit for CAFS, switching the jo frequently, she s not like to work cycling process, wants to explore her knowledge thts y switching the job countineously', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 07:03:01', 1, '2020-09-19 07:41:54', 0, NULL, 1),
(527, 'Nandhini Gs', '11', '9962282424', '', 'nandhini.aries@gmail.com', '1991-08-30', 29, '2', '1', 'jagadish pranav', 'sr. immigration consultant', 30000.00, 1, 0.00, 325000.00, 'chennai', 'mogapp West', '2009190032', '1', '1', 'upload_files/candidate_tracker/64229084831_Nandhini 26 Aug.docx', NULL, NULL, '2020-09-19', 0, '', '3', '54', '2020-09-28', 22000.00, '10:00 AM', '5', '1970-01-01', '1', 'Selected, he is having good exprience in screening and calling.', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 07:07:48', 7, '2020-10-07 06:01:16', 0, NULL, 1),
(528, 'neela t', '11', '9345269621', '8220640079', 'neelathiru13@gmail.com', '1996-07-13', 24, '2', '2', 'thirugnanam', 'teacher', 40000.00, 2, 0.00, 25000.00, 'VILLUPURAM', 'VILLUPURAM', '2009190033', '1', '1', 'upload_files/candidate_tracker/52316285020_Neela Resume - HR 001.pdf', NULL, NULL, '2020-09-21', 0, '', '3', '54', '2020-09-28', 11000.00, '12:30 PM', '2', '1970-01-01', '2', 'having good attitude, but we must train sometime.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 07:38:31', 7, '2020-10-07 06:01:30', 0, NULL, 1),
(529, 'haritha', '11', '8056064950', '', 'itsmeharithah@gmail.com', '1993-05-28', 27, '1', '2', 'harinarayanan', 'cini field', 50000.00, 1, 30000.00, 36000.00, 'chennai', 'chennai', '2009190034', '', '2', 'upload_files/candidate_tracker/74801221925_Resume.pdf', NULL, NULL, '2020-09-21', 0, '55566', '5', '53', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'Exp high salary, dnt hve relevant exp in Hr. he s oly handling manifacture nd bubai candidates', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 08:25:26', 1, '2020-09-20 03:23:27', 0, NULL, 1),
(530, 'Murugesan', '5', '8344717574', '8148431106', 'murugeshamr777@gmail.com', '1995-06-10', 25, '2', '2', 'Muthu raj', 'Retired government servant', 30000.00, 2, 22000.00, 25000.00, 'Vembakottai', 'Vembakottai', '2009200001', '3', '2', 'upload_files/candidate_tracker/95303379702_Resume .pdf', NULL, NULL, '2020-09-22', 0, '', '5', '33', NULL, 0.00, '02:23 PM', '0', NULL, '1', 'HE IS NOT GOOD PROFILE FOR RM CATEGORY', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-20 11:17:56', 1, '2020-09-22 02:57:01', 0, NULL, 1),
(531, 'E Akash', '3', '7358384090', '9176584664', 'akashashh602@gmail.com', '2000-10-20', 19, '1', '2', 'S Elumalai', 'Buisness', 15000.00, 1, 0.00, 12000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2009200002', '', '1', 'upload_files/candidate_tracker/35357344062_BO- UNIT 3.docx', NULL, NULL, '2020-09-21', 0, 'Akash', '6', '', '1970-01-01', 0.00, '02:30 PM', '', '1970-01-01', '2', NULL, '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-20 02:26:40', 1, '2020-09-26 05:48:50', 0, NULL, 1),
(532, '', '0', '6383887198', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009200003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-20 09:36:10', 0, NULL, 0, NULL, 1),
(533, 'venugopal.p', '13', '9840445295', '', 'venugopalpadmanabhan68@gmail.com', '1996-07-13', 24, '2', '2', 'padmanabhan.v', 'salesman', 30000.00, 0, 17000.00, 24000.00, 'vadapalani', 'vadapalani', '2009210001', '1', '2', 'upload_files/candidate_tracker/17085322304_venugopal resume.pdf', NULL, NULL, '2020-09-22', 30, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'This Candidate donxquott know the things what exactly we expected. He knows only wordpress development.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 10:09:20', 50, '2020-09-22 09:43:53', 0, NULL, 1),
(534, 's vinodh kumar', '5', '9940079652', '', 's.vinodhkumar89@gmail.com', '1989-06-12', 31, '2', '1', 's sethu', 'cook', 40000.00, 1, 33000.00, 36000.00, 'teynampet chennai', 'teynampet chennai', '2009210002', '3', '2', 'upload_files/candidate_tracker/91419445628_1572593969328_Vinodh12 Resume.docx', NULL, NULL, '2020-09-21', 0, '', '3', '8', '2020-09-28', 27000.00, '11:01 AM', '5', '1970-01-01', '1', '27K for GK team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 10:24:56', 7, '2020-10-07 06:03:29', 0, NULL, 1),
(535, 'dhanu david d', '11', '9566742178', '9176854354', 'dhanudavids@gmail.com', '1994-08-10', 26, '2', '2', 'david p', 'famer', 30000.00, 2, 21000.00, 27000.00, 'iyyapanthangal', 'chennai', '2009210003', '2', '2', 'upload_files/candidate_tracker/44045839235_Dhanu David Resume.pdf', NULL, NULL, '2020-09-21', 0, '', '5', '8', NULL, 0.00, '02:00 PM', '0', NULL, '1', 'will not sustain and his pronunciation and language is not good.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 10:40:19', 1, '2020-09-21 11:26:51', 0, NULL, 1),
(536, 'Logu m', '5', '8438322603', '9962776615', 'logum2019@gmail.com', '1992-06-26', 28, '2', '2', 'Construction', 'Mation', 40000.00, 1, 15000.00, 20000.00, 'No: 7, kakkanji st,Perungudi, chennai - 600096', 'Perungudi,omr', '2009210004', '8', '2', 'upload_files/candidate_tracker/63233717379_15-10-2018.pdf', NULL, NULL, '2020-09-21', 1, '', '5', '33', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'candidate facing stammering problem he is not fit for sales ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 10:40:30', 1, '2020-09-21 10:49:50', 0, NULL, 1),
(537, 'karthick', '6', '7395919074', '', 'Karthishine932@gmail.com', '1995-10-14', 25, '2', '2', 'sathayanarayanan', 'optician', 20000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2009210005', '2', '1', 'upload_files/candidate_tracker/96808820817_karthi.pdf', NULL, '2', '2021-06-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'already Attended interview and rejected on 2020 oct', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-09-21 11:02:44', 1, '2021-06-21 06:08:35', 0, NULL, 1),
(538, 'Archana N', '11', '9994840230', '', '', '1996-09-11', 24, '2', '2', 'Narayanan R', 'Sales consultant', 50000.00, 1, 16000.00, 18000.00, 'Triplicane', 'Triplicane', '2009210006', '8', '2', 'upload_files/candidate_tracker/48338646013_Final Resume.pdf', NULL, NULL, '2020-09-21', 0, '', '5', '53', NULL, 0.00, '11:15 AM', '0', NULL, '2', 'low voice nt suit fr hr profile', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 11:22:47', 1, '2020-09-21 11:31:12', 0, NULL, 1),
(539, 'g ramkumar', '5', '9677211434', '9566419625', 'agramkumar14@gmail.com', '1996-05-14', 24, '2', '2', 'n gajendrababu', 'real estate', 50000.00, 2, 28000.00, 32000.00, 'vadapalani', 'vadapalani', '2009210007', '3', '2', 'upload_files/candidate_tracker/92443442304_RAM KUMAR NEW.pdf', NULL, NULL, '2020-09-21', 0, '', '3', '8', '2020-09-28', 264000.00, '11:45 AM', '4', '2020-11-23', '1', '22K for Shanmugam Team', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 11:27:32', 7, '2020-10-22 05:14:44', 0, NULL, 1),
(540, 'samala balaji', '5', '7331101632', '9703737196', 'balaji1992samala@gmail.com', '1993-06-05', 27, '1', '2', 's venkatesh', 'weaver', 15000.00, 2, 3.50, 4.00, 'kadapa ap', 'marathahalli bangalore', '2009210008', '', '2', 'upload_files/candidate_tracker/43922914551_1597667604100_balaji samala.docx', NULL, NULL, '2020-09-21', 0, '5490', '3', '8', '2020-09-28', 25000.00, '12:00 PM', '6', '2021-08-11', '1', '25K for  Manivel Team', '5', '2', '4', '2', '2', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 11:33:13', 7, '2020-10-22 05:11:56', 0, NULL, 1),
(541, 'VISAGAN M', '11', '8248381260', '9442883174', 'visaganmanoharan96@gmail.com', '1996-06-11', 24, '2', '2', 'MANOHARAN K', 'Central govt staff (NLC INDIA LIMITED)', 600000.00, 1, 0.00, 18000.00, 'Neyveli', 'Chennai', '2009210009', '1', '1', 'upload_files/candidate_tracker/23927133817_Visagan resume DM.pdf', NULL, NULL, '2020-09-21', 0, '', '5', '8', '1970-01-01', 0.00, '11:44 AM', '', '1970-01-01', '1', 'Got offer ', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 11:35:40', 7, '2020-09-21 03:01:47', 0, NULL, 1),
(542, 'MURALIDHARAN.A', '4', '7904993611', '9176157332', 'dmurali196@gmail.com', '1999-03-30', 21, '2', '2', 'ARUMUGAM.A.P', 'Land agent', 20000.00, 1, 0.00, 14000.00, '11/37,3rd Street,tSM.nagar,T.V.T,CH-19', 'NO:11/37,3rd Street,TSM.Nagar,T.V.T,CH-19', '2009210010', '1', '1', 'upload_files/candidate_tracker/74830161860_murali resume.doc', NULL, NULL, '2020-09-28', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 11:42:33', 50, '2020-09-29 04:37:06', 0, NULL, 1),
(543, 'A. Matilda Mercy Suvitha', '5', '6369273699', '9962819065', 'matildajoel05@gmail.com', '1981-12-16', 38, '2', '1', 'S.Jayaraj', 'Civil engineer', 35000.00, 2, 425000.00, 450000.00, 'Chennai', 'Chennai', '2009210011', '3', '2', 'upload_files/candidate_tracker/230195917_30th Jan 2020.docx', NULL, NULL, '2020-09-21', 0, '', '5', '8', NULL, 0.00, '12:00 PM', '0', NULL, '1', 'no sales exp. exp salary is 4L and will not suite for calling too.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 11:57:44', 1, '2020-09-21 12:19:55', 0, NULL, 1),
(544, 'Geetha.N', '4', '9655308366', '', 'geethadharshu23@gmail.com', '1994-05-12', 26, '2', '2', 'A. Nagarajan', 'Fresher', 20000.00, 3, 0.00, 10000.00, 'Kovilpatti', 'Urapakkam', '2009210012', '1', '1', 'upload_files/candidate_tracker/51456160238_resume amazon-converted-converted-converted (2).pdf', NULL, NULL, '2020-09-22', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 12:03:37', 50, '2020-09-22 09:44:01', 0, NULL, 1),
(545, 'sarathkumar.r', '4', '9025154625', '8056242043', 'sarathrose2211@gmail.com', '1998-04-22', 22, '2', '2', 'rajendran.m', 'mason', 30000.00, 2, 0.00, 15000.00, 'manali chennai', 'manali chennai', '2009210013', '1', '1', 'upload_files/candidate_tracker/86144905293_Sarath_Resume_Format2 (1).pdf', NULL, NULL, '2020-09-21', 0, '', '5', '14', NULL, 0.00, '12:29 PM', '0', NULL, '2', 'want to continue the higher studies . so he is not able to sustain', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 12:24:11', 1, '2020-09-21 12:49:13', 0, NULL, 1),
(546, 'Akash.R', '4', '8778332729', '', 'Akashwillow26@gmail.com', '2000-03-26', 20, '2', '2', 'Ramesh.V', 'Carpenter', 27000.00, 0, 0.00, 15000.00, 'Vyasarpadi,Chennai-39', 'Chennai-39', '2009210014', '1', '1', 'upload_files/candidate_tracker/69691202327_Akash_Resume_Format2.pdf', NULL, NULL, '2020-09-21', 0, '', '5', '14', NULL, 0.00, '12:40 PM', '0', NULL, '1', 'not suitable for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 12:33:52', 1, '2020-09-21 12:50:11', 0, NULL, 1),
(547, 'naveenkumar r', '6', '8122266622', '8122238306', 'naveenraja1494@gmail.com', '1994-04-01', 26, '2', '2', 'rajan b', 'farmer', 10000.00, 1, 18000.00, 20000.00, 'kalamanagar kutta karai uthiramerur kanchipuram', 'kvn puram Kilpauk chennai', '2009210015', '1', '2', 'upload_files/candidate_tracker/89829038085_Naveen Resume-converted to PDF.pdf', NULL, NULL, '2020-09-22', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'he is not willing to  field work. salary expectation also 20k.. so not suitable for CRM', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 12:44:33', 50, '2020-09-22 09:44:29', 0, NULL, 1),
(548, '', '0', '9025432266', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009210016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 12:54:54', 0, NULL, 0, NULL, 1),
(549, 'S.VIJAYA RANI', '4', '9629904403', '', 'Nitheeshk8922@gmail.com', '1998-02-06', 22, '2', '2', 'V.Subiramaniyan', 'Farmer', 4000.00, 2, 11000.00, 15000.00, 'Ramanathapuram', 'Thamparam camproad chennai', '2009210017', '1', '2', 'upload_files/candidate_tracker/78557168790_ammu nehish).pdf', NULL, NULL, '2020-09-22', 0, '', '6', '', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 12:55:51', 50, '2020-09-22 06:06:29', 0, NULL, 1),
(550, 'Indumathi', '4', '9360572368', '7845935745', 'indushankar509@gmail.com', '1994-05-15', 26, '2', '2', 'Father', 'Driver', 10000.00, 2, 13500.00, 15000.00, 'Chennai', 'Chennai', '2009210018', '1', '2', 'upload_files/candidate_tracker/38054401559_Resume (2) (1) (2).pdf', NULL, NULL, '2020-09-22', 0, '', '5', '21', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', 'long distance 1; 30 hrs travel , expected 15 k for crm', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 01:26:18', 50, '2020-09-22 11:30:51', 0, NULL, 1),
(551, 'Ganesh', '4', '9361857713', '8778699268', 'Ganesh8595@gmail.com', '1995-05-08', 25, '2', '1', 'Anbalagan', 'Karate master', 15000.00, 0, 12500.00, 15000.00, 'Gkm colony perambur chennai', 'Chennai', '2009210019', '1', '2', 'upload_files/candidate_tracker/18867229178_New ganesh 2020.docx', NULL, NULL, '2020-09-22', 1, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 01:31:53', 50, '2020-09-22 05:25:36', 0, NULL, 1),
(552, '', '0', '6374523712', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009210020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 02:02:18', 0, NULL, 0, NULL, 1),
(553, '', '0', '9345499614', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009210021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 02:18:15', 0, NULL, 0, NULL, 1),
(554, 'M.Nishanthi', '4', '7358553524', '9710488726', 'nishanthi.m735855@gmail.com', '1999-08-20', 21, '2', '2', 'V.Mani vannan', 'Auto driver', 10000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2009210022', '4', '1', 'upload_files/candidate_tracker/637973924_new resume.docx', NULL, '1', '2020-09-21', 0, '', '5', '8', '2020-09-28', 10000.00, '03:47 PM', '2', '1970-01-01', '2', 'Offered in the month of Sept,but she didnxquott joined and appeared again for the interview on 5-July-2021,Got selected for Suriya Elite Team.Will join on 8-July-2021 offered her in the cash mode', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-09-21 03:38:18', 8, '2021-08-19 05:45:09', 0, NULL, 1),
(555, 'YAMUNA.M', '4', '8056284873', '9789960058', 'yamunashan229@gmail.com', '2000-04-22', 20, '2', '2', 'MICHAEL.K', 'No', 8000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2009210023', '4', '1', 'upload_files/candidate_tracker/44446056902_CamScanner 09-21-2020 15.51.25.pdf', NULL, NULL, '2020-09-21', 0, '', '3', '8', '2020-09-28', 10000.00, '03:47 PM', '3', '2020-09-29', '2', '10K for priyanka team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 03:42:43', 7, '2020-10-07 06:11:00', 0, NULL, 1),
(556, 'gowsalya m', '4', '9025151571', '', '', '2000-01-04', 20, '4', '2', 'marimuthu', 'chief', 4000.00, 1, 11000.00, 15000.00, '7/205c, East mangaleshwari nagar, Mayakulam.', 'YRN LADIES HOSTEL AND PG Camp road, selaiur', '2009210024', '', '2', 'upload_files/candidate_tracker/42203035147_Gowsalya Resume.pdf', NULL, NULL, '2020-09-22', 0, '', '6', '0', NULL, 0.00, '12:30 PM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 06:06:44', 1, '2020-09-22 12:02:51', 50, '2020-09-22 12:30:23', 0),
(557, 'A.Muthu vijaya rani', '4', '6385711241', '', 'Vijirani39@Gmail.com', '1999-04-28', 21, '2', '2', 'A.ayyakkannu', 'Farmer', 4000.00, 2, 11000.00, 15000.00, 'Ramanathapuram', 'Thamparam camproad chennai', '2009210025', '1', '2', 'upload_files/candidate_tracker/68613331753_muthuvijayarani.pdf', NULL, NULL, '2020-09-22', 0, '', '6', '', '1970-01-01', 0.00, '11:32 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 06:43:53', 50, '2020-09-22 06:06:44', 0, NULL, 1),
(558, '', '0', '6381118536', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009210026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 07:51:05', 0, NULL, 0, NULL, 1),
(559, '', '0', '9629904493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009210027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 08:00:48', 0, NULL, 0, NULL, 1),
(560, '', '0', '9791335176', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009210028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 08:05:29', 0, NULL, 0, NULL, 1),
(561, 'gowsalya m', '6', '9025521615', '', '', '2000-01-04', 20, '2', '2', 'marimuthu', 'chief', 4000.00, 1, 11000.00, 15000.00, '7/205c, East mangaleshwari nagar, Mayakulam', 'YRN LADIES HOSTEL AND PG Camp road, selaiur', '2009210029', '2', '2', 'upload_files/candidate_tracker/1074291318_Gowsalya Resume.pdf', NULL, NULL, '2020-09-22', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 08:20:31', 50, '2020-09-22 12:30:37', 0, NULL, 1),
(562, 'Santhoshkumar G', '4', '6374930274', '7358208212', 'santosmuray@gmail.com', '1996-06-06', 24, '2', '2', 'Gunasekaran S', 'Fishing', 12000.00, 1, 14000.00, 15000.00, 'No;3/142, bajanai koil Street.kovalam,603112', 'No;3/142, Bajanai Koil Street.Kovalam,603112', '2009210030', '2', '2', 'upload_files/candidate_tracker/54556595830_New Doc 2020-01-10 15.44.05.pdf', NULL, NULL, '2020-09-22', 0, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 11:44:36', 1, '2020-09-21 11:58:27', 0, NULL, 1),
(563, 'Ashwini D L', '11', '8870371028', '', 'dlashwini28@gmail.com', '1995-05-28', 25, '2', '2', 'Lakshmi Narayanan M D', 'Rice merchant', 120000.00, 1, 15000.00, 18000.00, 'No.25, Muthumani street, kodambakkam', 'Kodambakkam, chennai', '2009220001', '2', '2', 'upload_files/candidate_tracker/23065732932_ASHWINI D L.docx', NULL, NULL, '2020-09-22', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'will not suite for our process. already we hold 3.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 12:36:20', 1, '2020-09-22 12:40:07', 0, NULL, 1),
(564, '', '0', '9952947119', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009220002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 07:42:16', 0, NULL, 0, NULL, 1),
(565, 'SOMA SUNDARAM R', '5', '8940379238', '8939721640', 'somursv@gmail.com', '1993-01-02', 27, '2', '2', 'Ramsamy m', 'Farmer', 20000.00, 1, 29867.00, 30.00, 'Vellore', 'Saidepet', '2009220003', '3', '2', 'upload_files/candidate_tracker/35479481055_Resume-1.pdf', NULL, NULL, '2020-09-22', 0, '', '5', '33', NULL, 0.00, '10:08 AM', '0', NULL, '1', 'Not qualified for sales ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 10:04:43', 1, '2020-09-22 10:09:34', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(566, 'Mohammed Nabi', '5', '9176780835', '', 'rafiq14332@gmail.com', '1988-04-03', 32, '2', '1', 'Kajamaideen', 'Hotiler', 480000.00, 2, 50000.00, 20000.00, 'Avadi', 'Avadi', '2009220004', '8', '2', 'upload_files/candidate_tracker/98740373632_Mohammed Nabi.docx', NULL, NULL, '2020-09-22', 0, '', '3', '8', '2020-09-24', 240000.00, '10:12 AM', '6', '2021-09-27', '1', '20K for sarath team', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 10:08:10', 7, '2020-10-22 05:59:13', 0, NULL, 1),
(567, 'J.Amirtharaj Praveen', '6', '8754335990', '9443106249', 'jamirth03@gmail.com', '1990-08-13', 30, '1', '2', 'S.John', 'Politician', 25000.00, 1, 13000.00, 15000.00, 'kumbakonam', 'Chennai', '2009220005', '', '2', 'upload_files/candidate_tracker/95696915282_resume.docx', NULL, NULL, '2020-09-22', 0, '5581', '3', '8', '2020-09-24', 13500.00, '10:17 AM', '5', '1970-01-01', '1', '13.5K for Ramesh team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 10:10:37', 7, '2020-10-07 06:11:43', 0, NULL, 1),
(568, 'G. Kumaresan', '5', '6380770648', '8825734109', 'gkumaresan19@gmail.com', '1983-04-08', 37, '2', '1', 'Aarthi.cl', 'Home maker', 25000.00, 2, 25000.00, 30000.00, 'T. Nagar', 'T. Nagar', '2009220006', '3', '2', 'upload_files/candidate_tracker/13301660512_resume.docx', NULL, NULL, '2020-09-22', 0, '', '5', '44', NULL, 0.00, '10:48 AM', '0', NULL, '2', 'Not fit for sales and He is having Lic agent code', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 10:33:49', 1, '2020-09-22 10:49:21', 0, NULL, 1),
(569, 'Vishal V', '1', '9952939905', '', 'Vishalvenkataperumal@gmail.com', '1994-01-23', 26, '2', '2', 'Venkataperumal V', 'Agriculture', 200000.00, 1, 216000.00, 300000.00, 'Chennai', 'Chennai', '2009220007', '1', '2', 'upload_files/candidate_tracker/44123168847_Vishal V - Resumee.docx', NULL, NULL, '2020-09-23', 45, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'he asked time time to think and not turned up', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 10:39:34', 8, '2020-09-23 12:31:53', 0, NULL, 1),
(570, 'Amudha.a', '4', '8015219296', '8667660108', 'amudha.neela2014@gmail.com', '1996-02-27', 24, '2', '2', 'Anbazhagan.c', 'Building work', 25000.00, 1, 12000.00, 12000.00, 'Madambakkam', 'Madambakkam', '2009220008', '1', '2', 'upload_files/candidate_tracker/4595269916_amudha resume.docx', NULL, NULL, '2020-09-23', 0, '', '6', '0', NULL, 0.00, '11:27 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 11:19:30', 1, '2020-09-22 11:30:47', 0, NULL, 1),
(571, 'E.nirmala', '4', '7358690112', '7445820902', 'Nirmalaammu277@gmail.com', '1999-07-27', 21, '2', '2', 'Elayamurugan', 'Watchman', 15000.00, 1, 0.00, 15000.00, '5/440 Mariyamman kovil 8th St. s.kolathur', '5/440 Mariyamman kovil 8th St. s.kolathur', '2009220009', '1', '1', 'upload_files/candidate_tracker/25006523186_Nirmala resume b.com.pdf', NULL, NULL, '2020-09-23', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 11:24:32', 50, '2020-09-23 09:52:35', 0, NULL, 1),
(572, 'Danny john', '8', '9884559879', '', 'dannydj7777@gmail.com', '1995-07-20', 25, '2', '2', 'John F', 'Building contractor', 40000.00, 1, 14000.00, 21000.00, 'Chennai', 'Chennai', '2009220010', '1', '2', 'upload_files/candidate_tracker/90700657761_DANNY J.pdf', NULL, NULL, '2020-09-23', 0, '', '5', '35', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'we given a time for 2nd Round Candidate Not Responding so that am Rejecting. ', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 11:57:41', 50, '2020-09-23 11:14:12', 0, NULL, 1),
(573, 'gokulraj sankar', '2', '8608706348', '', '', '2005-09-22', 15, '1', '2', 'sankar', 'farmer', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2009220011', '', '1', 'upload_files/candidate_tracker/9309256964_Ramya-HR-resume.pdf', NULL, NULL, '2020-09-22', 0, '55566', '5', '27', '1970-01-01', 0.00, '12:28 PM', '', '1970-01-01', '1', 'nil', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 12:26:30', 1, '2020-09-22 12:54:44', 0, NULL, 1),
(574, 'L Thomas', '6', '9677221090', '8681921794', 'tomthomas657@gmail.com', '1996-03-03', 24, '2', '2', 'S. Lawrence', 'Manager', 25000.00, 2, 21000.00, 23000.00, 'Chennai', 'Chennai', '2009220012', '1', '2', 'upload_files/candidate_tracker/93812693800_Tom resume.docx', NULL, NULL, '2020-09-23', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 12:34:51', 50, '2020-09-23 04:47:13', 0, NULL, 1),
(575, 'ANBARASAN P', '4', '7448329246', '8939745844', 'anbu04061999@gmail.com', '1999-07-19', 21, '2', '2', 'Perumal', 'Wages', 15000.00, 1, 0.00, 20000.00, 'Madipakkam', 'Madipakkam', '2009220013', '1', '1', 'upload_files/candidate_tracker/30746370609_ANBU.pdf', NULL, NULL, '2020-09-23', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 12:48:39', 50, '2020-09-23 09:53:00', 0, NULL, 1),
(576, 'abelia', '8', '8220508781', '', '', '1987-12-09', 32, '2', '2', 'Sambantham', 'Farmer', 10000.00, 1, 0.00, 30000.00, 'Egmore', 'KK nagar', '2009220014', '1', '1', 'upload_files/candidate_tracker/10005098587_32700368955_subash resume.docx', NULL, NULL, '2020-09-22', 0, '', '6', '0', NULL, 0.00, '01:49 PM', '0', NULL, '1', NULL, '7', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 01:46:44', 1, '2020-09-25 04:26:07', 0, NULL, 1),
(577, 'Masood Ahmed', '4', '7530098631', '8122460626', 'masoodahmedbilali@gmail.com', '1996-06-08', 24, '2', '2', 'Mohammed Ismail', '-', 60000.00, 0, 0.00, 12000.00, 'Vellore', 'Chennai', '2009220015', '2', '1', 'upload_files/candidate_tracker/53419278309_RESUME.pdf', NULL, NULL, '2020-09-23', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 03:07:49', 1, '2020-09-22 03:17:55', 0, NULL, 1),
(578, 'Subha', '4', '7358212166', '7092524698', 'subhasoundharajan@gmail.com', '1996-11-19', 23, '2', '2', 'Soundharajan', 'Book binder', 8000.00, 1, 13.00, 15.00, 'urappakkam, pin code:603202', 'Urappakkam', '2009220016', '1', '2', 'upload_files/candidate_tracker/46273081784_1600678877122Resume_Subha.docx', NULL, NULL, '2020-09-23', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 03:31:13', 50, '2020-09-23 04:47:43', 0, NULL, 1),
(579, 'J rajaram', '4', '8754681936', '8270408938', 'rajaram9750@gmail.com', '1994-09-17', 26, '2', '2', 'N.Jayakumar', 'Working in a private agri shop', 10000.00, 1, 0.00, 11000.00, 'melathukurich,kumbakonam , Thanjavur 612501', 'Keelkattalai', '2009220017', '1', '1', 'upload_files/candidate_tracker/9398997319_1600772040928_ram resume.pdf', NULL, NULL, '2020-09-24', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 04:05:20', 7, '2020-09-24 07:24:57', 0, NULL, 1),
(580, '', '0', '9789075210', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009220018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 04:13:15', 0, NULL, 0, NULL, 1),
(581, '', '0', '9514517926', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009220019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 09:26:00', 0, NULL, 0, NULL, 1),
(582, 'Sudarshan K', '4', '9611810764', '9945103889', 'sudarshan2524@gmail.com', '1994-09-22', 26, '2', '2', 'Kandhan M', 'Own business', 30000.00, 1, 23000.00, 24000.00, 'Btm 2nd stage 7th main', 'Btm 2nd stage', '2009220020', '7', '2', 'upload_files/candidate_tracker/21643272867_SUDARSHAN CV edited .docx', NULL, NULL, '2020-09-23', 0, '', '5', '38', NULL, 0.00, '12:07 PM', '0', NULL, '1', 'he is looking high package xxamp he will not ready to go out  for Appointment', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 09:56:42', 1, '2020-09-23 12:05:55', 0, NULL, 1),
(583, 'Bala Venkat bhargav P', '5', '6382448242', '9790747257', 'balabhargav220@gmail.com', '1996-09-20', 24, '2', '2', 'Subramaniyam', 'Fabrics design', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2009230001', '8', '1', 'upload_files/candidate_tracker/66712447054_BALA BB EXP RESUME.docx', NULL, NULL, '2020-09-23', 0, '', '3', '8', '2020-09-28', 216000.00, '10:10 AM', '4', '2020-12-16', '1', '18K for guru team.', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 10:08:24', 7, '2020-10-22 05:35:57', 0, NULL, 1),
(584, 'preethi', '4', '7305830603', '9840521110', 'patumapreethi30@gmail.com', '1997-08-30', 23, '2', '2', 'saravanan', 'carpenter', 120000.00, 1, 20000.00, 22000.00, 'chennnai', 'chennai', '2009230002', '3', '2', 'upload_files/candidate_tracker/33155600708_resume_preethi f.pdf', NULL, NULL, '2020-09-23', 1, '', '5', '8', '1970-01-01', 0.00, '10:21 AM', '', '1970-01-01', '1', 'was rejected by Kannan and srikanth. no sales pitch but good communication', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 10:16:56', 8, '2020-09-24 06:20:08', 0, NULL, 1),
(585, '', '0', '9894127280', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009230003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 11:01:47', 0, NULL, 0, NULL, 1),
(586, '', '0', '7010381390', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009230004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 11:02:51', 0, NULL, 0, NULL, 1),
(587, 'brindha chandran', '4', '6382016354', '9788726914', 'brindhabindhu63@gmail.com', '1997-12-01', 22, '2', '2', 'm.chandran', 'mechanic', 40000.00, 1, 0.00, 15000.00, 'virudhunagar', 't.nagar chennai', '2009230005', '1', '1', 'upload_files/candidate_tracker/87686383232_Bhuvanasundari Resume (1).pdf', NULL, NULL, '2020-09-23', 0, '', '6', '0', NULL, 0.00, '11:42 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-23 11:10:15', 1, '2020-09-23 12:09:06', 0, NULL, 1),
(588, '', '0', '7010780977', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009230006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 11:35:37', 0, NULL, 0, NULL, 1),
(589, 'Shashi Sagar', '4', '9964876192', '', '', '1994-09-25', 25, '2', '2', '(late) Nagaraj', 'Forest department', 30000.00, 0, 20000.00, 23000.00, 'Kodichikkanahalli', 'Kodichikkanahalli', '2009230007', '7', '2', 'upload_files/candidate_tracker/78436125227_Resume shashi.docx', NULL, NULL, '2020-09-23', 0, '', '5', '38', NULL, 0.00, '12:15 PM', '0', NULL, '1', 'I Ask To Wait For Next Round But Is Not Available.......Worst In Patience ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 12:10:52', 1, '2020-09-23 12:15:44', 0, NULL, 1),
(590, 'Amudha', '4', '9677081821', '7904596595', 'amudhadevaraj05@gmail.com', '1999-10-05', 20, '2', '2', 'Devaraj', 'Daily wages', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009230008', '1', '1', 'upload_files/candidate_tracker/29101921493_Resume-converted.pdf', NULL, NULL, '2020-09-24', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'pronouncation problem', '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-23 12:22:07', 1, '2020-09-23 02:00:40', 0, NULL, 1),
(591, 'govarthanam', '5', '9566752210', '', 'govaa08@gmail.com', '1989-09-29', 30, '2', '1', 'veerasamy', 'post master', 40000.00, 0, 35000.00, 45000.00, 'tiruttani', 'chennai', '2009230009', '3', '2', 'upload_files/candidate_tracker/19777035278_Gova Resume Feb_2020.pdf', NULL, NULL, '2020-09-23', 1, '', '3', '8', '2020-09-28', 33000.00, '12:37 PM', '6', '2022-01-03', '1', '33K for lokesh team, shortlisted by Sriram.', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 12:33:08', 7, '2020-10-22 05:11:27', 0, NULL, 1),
(592, 'Pushpalatha M', '4', '8618930698', '', 'pushpamanims@gmail.com', '1995-11-13', 24, '2', '2', 'Mani', 'No', 20000.00, 2, 12000.00, 18000.00, '#88 1st main road LR Nagar bangalore-47', '#5/2,7th cross rose garden, Bangalore-47', '2009230010', '7', '2', 'upload_files/candidate_tracker/95312445412_pushpa reume experience.docx', NULL, NULL, '2020-09-23', 0, '', '3', '8', '2020-09-28', 14000.00, '01:05 PM', '0', NULL, '2', '14K for Gowshick team.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 12:58:20', 1, '2020-09-23 01:29:39', 0, NULL, 1),
(593, '', '0', '9080039656', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009230011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 01:04:51', 0, NULL, 0, NULL, 1),
(594, 'Reshma C R', '4', '9902478181', '9880920952', 'reshmacrmay191998@gmail.com', '1998-05-19', 22, '2', '2', 'Ravindran C V', 'Driver', 200000.00, 1, 16000.00, 13000.00, 'BENGALURU', 'BENGALURU', '2009230012', '1', '2', 'upload_files/candidate_tracker/96611039589_CURRICULUM VITAE final.pdf', NULL, NULL, '2020-09-24', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-23 01:12:44', 7, '2020-09-24 07:25:18', 0, NULL, 1),
(595, 'HABEEBULLAH SHERIF S', '4', '9840341968', '9566097531', 'habeebsherif98@gmail.com', '1997-09-21', 23, '2', '2', 'Shafiullah sheriff', 'Auto driver', 35000.00, 4, 0.00, 20000.00, 'Perambur', 'Chennai Perambur', '2009230013', '1', '1', 'upload_files/candidate_tracker/6158741992_CV_2020-09-23-015226.pdf', NULL, NULL, '2020-09-23', 0, '', '6', '', '1970-01-01', 0.00, '02:50 PM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-23 01:41:07', 7, '2020-09-23 06:07:44', 0, NULL, 1),
(596, 'Deepa S', '4', '9148314138', '', 'adhideepapuvideepa@gmail.com', '1994-05-27', 26, '2', '2', 'Suse', 'No', 15000.00, 0, 15000.00, 18000.00, 'Narayanappa garden kodihalli KGA road', 'Narayanappa garden kodihalli KGA Road', '2009230014', '7', '2', 'upload_files/candidate_tracker/14410603066_deepa s.p.docx', NULL, NULL, '2020-09-23', 0, '', '5', '38', NULL, 0.00, '02:06 PM', '0', NULL, '2', 'will not suit for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 01:50:32', 1, '2020-09-23 02:09:26', 0, NULL, 1),
(597, '', '0', '8056210640', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009230015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 01:55:43', 0, NULL, 0, NULL, 1),
(598, 'Dhanalakshmi', '4', '9360277532', '9780331601', 'imaha5714@gmail.com', '2000-05-10', 20, '2', '2', 'Arumugam', 'Daily wages', 12000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009230016', '1', '1', 'upload_files/candidate_tracker/59326030765_Untitled document.pdf', NULL, NULL, '2020-09-24', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'double minded ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-23 02:25:46', 1, '2020-09-23 03:04:03', 0, NULL, 1),
(599, '', '0', '7397243413', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009230017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 03:44:48', 0, NULL, 0, NULL, 1),
(600, 'dhinakaran.d', '4', '9962303801', '8796856453', 'nandhini1526@gmail.com', '1991-03-27', 30, '1', '1', 'ravikumar t', 'house wife', 25000.00, 0, 0.00, 30000.00, 'coimbatore', 'thiruvottiyur', '2009230018', '', '2', 'upload_files/candidate_tracker/58813222256_tamil.docx.pdf', NULL, NULL, '2021-03-30', 7, 'jobs', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-09-23 03:52:34', 1, '2021-03-29 02:48:21', 0, NULL, 1),
(601, 'Jaffer', '13', '9840349492', '', 'moonsat08@gmail.com', '1987-09-23', 33, '3', '2', 'Sathik', 'Former', 5000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2009230019', '', '1', 'upload_files/candidate_tracker/60829185595_dummy.pdf', NULL, NULL, '2020-09-23', 0, '', '3', '41', '2020-09-23', 15000.00, '03:30 PM', '7', '1970-01-01', '2', '', '2', '2', '1', '1', '1', '2', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 07:29:48', 1, '2020-09-23 07:37:25', 7, '2020-10-07 06:08:57', 0),
(602, 'test sathish', '2', '9715880880', '', 'sathish@cafsinfotech.in', '2005-09-22', 15, '3', '2', 'srbsf', 'ss', 20000.00, 0, 0.00, 20000.00, 'ch', 'fdff', '2009230020', '', '1', 'upload_files/candidate_tracker/92900631949_12579932.sat.pdf', NULL, NULL, '2020-09-23', 0, '', '3', '41', '2020-09-23', 20000.00, '01:36 PM', '7', '1970-01-01', '2', 'nill', '2', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 07:34:02', 1, '2020-09-23 07:44:13', 7, '2020-10-07 06:08:57', 0),
(603, 'Gayathri', '4', '7904862175', '8870701224', 'Gayupmu336@gmail.com', '2000-08-18', 20, '2', '2', 'Tamilvanan', 'farmer', 20000.00, 1, 0.00, 20000.00, 'chennai', 'thanjavur', '2009240001', '1', '1', 'upload_files/candidate_tracker/9859870198_gayupallavi123.docx', NULL, NULL, '2020-09-24', 0, '', '5', '54', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'she dont know the basics of c and C++', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-24 08:34:16', 1, '2020-09-24 08:49:53', 0, NULL, 1),
(604, 'MANIKANDAN P', '4', '9843776728', '8489517549', 'manikandan4993@gmail.com', '1993-06-28', 27, '1', '2', 'Palani ammal', 'Match works industry, sivakasi', 5000.00, 0, 17000.00, 18000.00, 'Virudhunagar', 'Saidapet', '2009240002', '', '2', 'upload_files/candidate_tracker/14775713560_resume 2020.docx', NULL, NULL, '2020-09-24', 0, 'Jobs', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'no voice exp, exp high salary , not sustain long  term', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 10:42:01', 7, '2020-09-24 12:45:18', 0, NULL, 1),
(605, 'Satish. S', '1', '9884801139', '8939098872', 'satsub1980@gmail.com', '1980-06-08', 40, '2', '1', 'K. Subramanian', 'Regional business head', 100000.00, 1, 14.50, 16.00, 'Chennai', 'Chennai', '2009240003', '1', '2', 'upload_files/candidate_tracker/76295089830_satish resume updated.docx', NULL, NULL, '2020-09-24', 0, '', '5', '8', NULL, 0.00, '11:15 AM', '0', NULL, '1', 'for testing', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-24 11:00:07', 1, '2020-09-24 11:05:00', 0, NULL, 1),
(606, 'Nivedha', '4', '6381048346', '9384612443', 'Nive1999bala@gmail.com', '1999-01-14', 21, '1', '2', 'Balaraman', '10th', 150000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009240004', '', '1', 'upload_files/candidate_tracker/96273196467_1560322744852Resume_Nivedha(1).pdf', NULL, NULL, '2020-09-24', 0, 'Jobs', '3', '8', '2020-10-05', 11000.00, '11:00 AM', '6', '2021-03-26', '2', 'for Srikath team. 11K.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 11:02:17', 7, '2020-10-06 12:41:32', 0, NULL, 1),
(607, '', '0', '7708048335', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009240005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 11:14:51', 0, NULL, 0, NULL, 1),
(608, 'V.purushothaman', '6', '7397388661', '9840832409', 'Purushothvj03@gmail.com', '1998-04-18', 22, '2', '2', 'E.venkatesan', 'Painter', 12000.00, 1, 0.00, 12000.00, 'Velachery', 'Velachery', '2009240006', '1', '2', 'upload_files/candidate_tracker/56928325913_purusho.PDF', NULL, NULL, '2020-09-24', 0, '', '3', '8', '2020-10-05', 168000.00, '11:33 AM', '2', '2020-10-26', '1', '14K for kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-24 11:19:32', 7, '2020-10-06 12:48:14', 0, NULL, 1),
(609, '', '0', '9840507721', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009240007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 11:42:07', 0, NULL, 0, NULL, 1),
(610, 'Elakkiya M', '11', '7639350060', '9361259692', 'sweetyelakiya@gmail.com', '1994-06-16', 26, '2', '2', 'Maniyarasan', 'Farmer', 7000.00, 1, 25000.00, 20000.00, 'Cuddalore', 'Chennai', '2009240008', '2', '2', 'upload_files/candidate_tracker/87233165252_Elakkiya HR Recruiter.pdf', NULL, NULL, '2020-09-25', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'poor communication and no HR skills, and no portal knowledge.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 11:50:43', 1, '2020-09-24 12:16:04', 0, NULL, 1),
(611, '', '0', '7305406084', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009240009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 12:18:29', 0, NULL, 0, NULL, 1),
(612, 'Manugandhi', '5', '9150934540', '9087960005', 'manugandhijegan@gmail.com', '1984-08-27', 36, '2', '1', 'Jegan', 'Executive', 25000.00, 1, 18000.00, 25000.00, 'Ashoknagar', 'Ashoknagar', '2009240010', '3', '2', 'upload_files/candidate_tracker/4600687493_0_Resume...JManugandhi.docx', NULL, NULL, '2020-09-24', 0, '', '5', '51', NULL, 0.00, '01:00 PM', '0', NULL, '1', 'she is not willing to travel long distance to meet the clients ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 12:24:07', 1, '2020-09-24 01:45:40', 0, NULL, 1),
(613, 'M.ARUNKUMAR', '11', '9786776490', '', 'arunkumar925292@gmail.com', '1992-02-05', 28, '2', '1', 'K mathiyazhagan', 'business', 30000.00, 2, 25000.00, 25000.00, 'No 22 Marai Malainagar velrampet Pondicherry', 'Chennai kodambakkam', '2009240011', '2', '2', 'upload_files/candidate_tracker/63232875587_0_Arun resume 10(2).docx', NULL, NULL, '2020-09-24', 0, '', '5', '53', NULL, 0.00, '12:27 PM', '0', NULL, '1', 'He is having oly co ordinating exp in HR nd also expecting high salry, and suggested for RM but he s nt intrested in field work.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 12:24:31', 1, '2020-09-24 12:27:52', 0, NULL, 1),
(614, 'Nidhin Mohan', '4', '9633544146', '8086681850', 'nidhinmohan999@gmail.com', '1992-11-29', 27, '2', '1', 'mohanan', 'acrylic designing', 100000.00, 1, 20000.00, 22000.00, 'Chennai', 'chrompet', '2009240012', '2', '2', 'upload_files/candidate_tracker/30968369527_NIDHIN MOHAN CV.doc', NULL, NULL, '2020-09-25', 0, '', '5', '21', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'he dont know tamil.....', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 12:52:35', 1, '2020-09-24 01:10:04', 0, NULL, 1),
(615, 'Selva Raj.j', '4', '7708582420', '8124043006', 'Bellay20488@gamil.com', '1988-04-20', 32, '1', '2', 'Jaganathan.', 'Bussiness', 500000.00, 2, 23000.00, 30000.00, '8A sanjeeva chetty street ,bargur,', '2/342 Veera sivaji street ,,mugallivakkam', '2009240013', '', '2', 'upload_files/candidate_tracker/57445210363_selvaraj ........j.pdf', NULL, NULL, '2020-09-24', 1, 'Ehr008', '5', '14', NULL, 0.00, '01:11 PM', '0', NULL, '1', 'Expecting high salary not suitable for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 12:59:45', 1, '2020-09-24 01:22:48', 0, NULL, 1),
(616, 'Naveen Kumar S', '4', '9962422332', '9442310799', 'snkumar6391@gmail.com', '1991-03-06', 29, '2', '2', 'P C Selvan', 'Retired State Government employee', 50000.00, 2, 15000.00, 15000.00, 'Kovilambakkam', 'Kovilambakkam', '2009240014', '1', '2', 'upload_files/candidate_tracker/13511395644_Naveen_Resume chennai.docx', NULL, NULL, '2020-09-24', 0, '', '5', '14', NULL, 0.00, '01:23 PM', '0', NULL, '2', 'not suitable for telecalling', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-24 01:15:50', 1, '2020-09-24 01:23:50', 0, NULL, 1),
(617, 'Nishanth', '11', '7010854624', '9750041481', 'nishanth28feb@gmail.com', '1990-06-05', 30, '2', '2', 'Mother-Shanthi', 'Neyveli', 100000.00, 0, 12000.00, 15000.00, 'Velachearry Chennai', 'Velachearry Chennai', '2009240015', '2', '2', 'upload_files/candidate_tracker/48094689469_1600914212661Resume_Nishanth.pdf', NULL, NULL, '2020-09-25', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'Not active, Switched  company ever 3 months will not sustain.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 05:22:49', 1, '2020-09-24 05:34:36', 0, NULL, 1),
(618, '', '0', '9678563417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009240016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 05:39:41', 0, NULL, 0, NULL, 1),
(619, 'k.k.imthiaz banu', '4', '9840480408', '', 'imthu.chill2998@gmail.com', '1998-09-29', 21, '2', '2', 'k.a.khader meeran', 'sofa liner', 9000.00, 2, 9000.00, 14000.00, 'Chennai', 'Chennai', '2009240017', '1', '2', 'upload_files/candidate_tracker/31249843106_imthiaz banu.k.k.resume NEW.docx', NULL, NULL, '2020-09-25', 3, '', '3', '8', '2020-09-28', 10500.00, '10:00 AM', '3', '2020-09-29', '2', '10.5K Fro Dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-24 06:40:56', 7, '2020-10-07 06:13:49', 0, NULL, 1),
(620, 'S logeshwari', '4', '7708118128', '7538889541', 'Logeshwari.s29@gmail.com', '1999-09-29', 20, '1', '2', 'Shanmugam', 'Daily wage', 10000.00, 1, 0.00, 20000.00, 'Vandavasi', 'Vandabasi', '2009250001', '', '1', 'upload_files/candidate_tracker/20637669101_chaaru.docx', NULL, NULL, '2020-09-25', 0, '0229', '8', '', '1970-01-01', 0.00, '10:45 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 10:36:21', 50, '2020-09-25 11:00:28', 0, NULL, 1),
(621, 'christy christudas', '4', '8891175680', '8086003710', 'christyg68@gmail.com', '1994-02-23', 26, '2', '2', 'christudas', 'farmer', 20000.00, 2, 18000.00, 20000.00, 'trivandrum', 'madiwala', '2009250002', '7', '2', 'upload_files/candidate_tracker/42490311251_CV_20-07-20- updated .pdf', NULL, NULL, '2020-09-25', 0, '', '5', '38', NULL, 0.00, '10:40 AM', '0', NULL, '2', 'will not suit for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 10:37:00', 1, '2020-09-25 10:44:49', 0, NULL, 1),
(622, '', '0', '7095153666', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009250003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 10:37:13', 0, NULL, 0, NULL, 1),
(623, 'Balaji', '4', '8667347989', '', 't.s.g.bala@gmail.com', '1989-05-08', 31, '2', '2', 'Gunasekaran', 'Massion labour', 10000.00, 2, 17000.00, 17000.00, 'Arumuganeri', 'Choolaimedu', '2009250004', '1', '2', 'upload_files/candidate_tracker/47692047321_Resume.doc', NULL, NULL, '2020-09-25', 7, '', '5', '8', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '1', 'will not suite for MIS', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 10:44:26', 50, '2020-09-25 11:57:13', 0, NULL, 1),
(624, '', '0', '6381433264', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009250005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 10:45:03', 0, NULL, 0, NULL, 1),
(625, 'SOUNDAR K', '4', '9159915329', '9159916329', 'soundarksr765@gmail.com', '1994-06-13', 26, '2', '2', 'kumar', 'farmer', 80000.00, 2, 400000.00, 400000.00, 'chennai', 'chennai', '2009250006', '1', '2', 'upload_files/candidate_tracker/21349615303_Soundar .Naukri.docx', NULL, NULL, '2020-09-26', 0, '', '8', '14', '1970-01-01', 0.00, '10:55 AM', '', '1970-01-01', '2', 'candidate not attended the interview', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 10:52:10', 50, '2020-09-26 09:12:55', 0, NULL, 1),
(626, 'Ramya.B', '20', '9790810308', '8939481359', 'ramyabalu1321@gmail.com', '1998-06-13', 22, '2', '2', 'Balu .S', 'Cooli', 10000.00, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2009250007', '1', '2', 'upload_files/candidate_tracker/24441741446_Ramya Resume.docx', NULL, NULL, '2020-09-26', 0, '', '5', '24', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'SHE IS LOOKING FOR 6MONTH OR 1YRS JOB ONLY.. NEXT SHE WILL STUDY UPSC EXAM.. SO SUSTAINABILITY IS DOUBT', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 11:31:15', 50, '2020-09-26 11:38:17', 0, NULL, 1),
(627, 'Sabarinathan', '4', '8015066176', '', 'sabarish0993@gmail.com', '1993-07-22', 27, '2', '1', 'Malini', 'Team Leader', 17000.00, 1, 17000.00, 2000.00, 'Uthangarai,, Krishnagiri', 'Guindy,chennai', '2009250008', '1', '2', 'upload_files/candidate_tracker/12038739009_CV_2020-07-19-125446.pdf', NULL, NULL, '2020-09-26', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 11:38:12', 50, '2020-09-26 04:58:31', 0, NULL, 1),
(628, 'SOORAJ.P', '4', '8123262559', '9964578492', 'sooraj_p35@yahoo.com', '1977-01-06', 43, '2', '1', 'K.C.R. Nambiar', 'retair it employee', 17000.00, 2, 16000.00, 17000.00, 'Ramamurthy Nagar', 'Ramamurthy Nagar', '2009250009', '7', '2', 'upload_files/candidate_tracker/43724507928_Sooraj_Telecaller_CAFS.docx', NULL, NULL, '2020-09-25', 0, '', '5', '38', NULL, 0.00, '12:30 PM', '0', NULL, '1', 'i trIed for RM But he is having health issue xxamp he is looking for office work', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 11:54:58', 1, '2020-09-25 12:58:11', 0, NULL, 1),
(629, 'Surya. M', '20', '7871638730', '', 'suryamadhavi3005@gmail.com', '1999-05-30', 21, '2', '2', 'K. Mayakannan', 'Farming', 5000.00, 1, 0.00, 16000.00, 'Cuddalore', 'T. Nagar', '2009250010', '1', '1', 'upload_files/candidate_tracker/83517001154_M.S.Surya CV.doc', NULL, NULL, '2020-09-26', 0, '', '3', '8', '2020-09-29', 132000.00, '11:00 AM', '6', '2021-03-26', '2', '11K for Srikanth Team', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 12:08:24', 7, '2020-10-09 02:54:22', 0, NULL, 1),
(630, '', '0', '9840872845', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009250011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 12:10:15', 0, NULL, 0, NULL, 1),
(631, 'Thinakaran', '4', '7708426479', '9087189893', 'Thinakaran024@gmail.com', '1997-11-01', 22, '2', '2', 'Kulanthai vel', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2009250012', '1', '1', 'upload_files/candidate_tracker/50288605302_Thinakaran Resume.docx', NULL, NULL, '2020-09-26', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 12:14:05', 50, '2020-09-26 04:58:42', 0, NULL, 1),
(632, 'Ezhilarasu', '5', '9500305600', '9790794100', 'ezhilleaf@gmail.com', '1989-04-10', 31, '1', '2', 'Madhu', 'Farmer', 10000.00, 2, 400000.00, 500000.00, 'Salem', 'Chennai', '2009250013', '', '2', 'upload_files/candidate_tracker/57066469560_1601018391502_Resume.docx', NULL, NULL, '2020-09-25', 0, '5266', '5', '51', '1970-01-01', 0.00, '01:40 PM', '', '1970-01-01', '1', 'looking for more salary', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 12:45:25', 1, '2020-09-25 01:15:51', 0, NULL, 1),
(633, 'Akila.M', '4', '9176369544', '8939064274', 'akilamurugesan2804@gmail.com', '1998-04-28', 22, '2', '2', 'Murugesan.s', 'Nil', 8000.00, 1, 0.00, 11000.00, 'New perungalthur', 'New perungalathur', '2009250014', '1', '1', 'upload_files/candidate_tracker/64199678857_Akila.M.docx', NULL, NULL, '2020-09-26', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Sustain Long Term , She I Il Come Only With Friends....', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 01:08:11', 50, '2020-09-26 09:13:34', 0, NULL, 1),
(634, 'J sivaramachandran', '4', '9884676927', '9840336094', 'sivaram10JR96@gmail.com', '1996-09-10', 24, '2', '2', 'R Jayasankar', 'auto driver', 15000.00, 1, 0.00, 15000.00, 'Chennai, New perungalathur', 'new perungalathur', '2009250015', '1', '1', 'upload_files/candidate_tracker/90303459949_sivaramachandran.J.doc', NULL, NULL, '2020-09-26', 0, '', '5', '14', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'not good in communication not suitable for voice ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 01:16:21', 1, '2020-09-25 01:47:20', 0, NULL, 1),
(635, '', '0', '9003037459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009250016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 01:40:17', 0, NULL, 0, NULL, 1),
(636, 'Durgadevi', '4', '9042246263', '9566146956', 'hashiniramesh96@gmail.com', '1996-06-07', 24, '2', '2', 'Ramesh', 'Coolie', 15000.00, 1, 0.00, 11000.00, 'Chennai', 'West mambalam Chennai', '2009250017', '1', '1', 'upload_files/candidate_tracker/52934897344_resume.docx', NULL, NULL, '2020-09-26', 0, '', '5', '13', '1970-01-01', 0.00, '11:03 AM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 01:44:55', 50, '2020-09-26 05:03:07', 0, NULL, 1),
(637, 'M sarath kumar', '4', '9940201156', '7904694351', 'Spreak1910@gmail.com', '1991-10-19', 28, '4', '2', 'Mohan', 'L.i.c retierd', 40000.00, 0, 12500.00, 13000.00, 'Broadway', 'Broadway', '2009250018', '', '2', 'upload_files/candidate_tracker/29966673434_Resume_2020aug.pdf', NULL, NULL, '2020-09-28', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 01:46:05', 1, '2020-09-28 09:06:07', 50, '2020-09-29 04:33:06', 0),
(638, 'harikaran.b', '4', '9940538154', '', 'b.harikarann@gmail.com', '1996-02-03', 24, '2', '2', 'a. barani', 'senior attender in crescent university', 25000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2009250019', '1', '2', 'upload_files/candidate_tracker/98474854513_DOC-20190516-WA0001.docx', NULL, NULL, '2020-09-26', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'expecting high salary 15 k above', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 02:08:50', 50, '2020-09-26 09:26:59', 0, NULL, 1),
(639, '', '0', '9003386360', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009250020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 02:22:59', 0, NULL, 0, NULL, 1),
(640, 'Sathya R', '4', '9789747438', '9940518054', 'sathyasamu1998@gmail.com', '1997-06-07', 23, '2', '2', 'Raja.P', 'Farmer', 150000.00, 2, 18000.00, 20000.00, 'No.68 T.M road,Desur, Vandhavasi.', 'No.2/7, Venkateswara Nagar, Ramapuram, Chennai.', '2009250021', '1', '2', 'upload_files/candidate_tracker/3925892168_sathya resume new2.docx', NULL, NULL, '2020-09-26', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'expected salary high', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-09-25 02:39:40', 58, '2020-12-23 12:13:49', 0, NULL, 1),
(641, 'sathya karthik', '4', '7904742040', '9600320328', 'jagsathyakarthik@gmail.com', '1991-02-16', 29, '2', '1', 'karthik jaganathan', 'Costumer validation analyst', 12000.00, 0, 12000.00, 15000.00, 'CHENNAI', 'CHENNAI', '2009250022', '1', '2', 'upload_files/candidate_tracker/98647457248_SATHYA RESUME 2020.docx', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '2', 'Not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 02:44:40', 50, '2020-09-26 09:47:36', 0, NULL, 1),
(642, 'KAARTHIC T', '4', '8428765860', '8610199193', 'tkaarthic5@gmail.com', '1999-09-05', 21, '2', '2', 'THANU P', 'Supervisor', 17000.00, 1, 0.00, 12000.00, 'No 20,maraimalai adigal street Chitlapakkam', 'Chennai', '2009250023', '1', '1', 'upload_files/candidate_tracker/94129346237_kaarthic resume pdf corrected.pdf', NULL, NULL, '2020-09-26', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 02:48:22', 50, '2020-09-26 04:58:52', 0, NULL, 1),
(643, 'TharakRaman', '4', '9952949368', '6379739627', 'tharakraman96@gmail.com', '1997-11-10', 23, '2', '2', 'Ethiraj', 'Driver', 50000.00, 0, 13000.00, 13000.00, 'Kovilambakkam', 'Kovilambakkam', '2009250024', '1', '2', 'upload_files/candidate_tracker/28263576709_Lockdown Conformed.pdf', NULL, NULL, '2021-04-30', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'left before interview', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 03:04:29', 50, '2021-04-30 11:26:39', 0, NULL, 1),
(644, 'Praveena', '20', '6374915175', '9176124216', 'praveenasweety1996@gmail.com', '1997-06-08', 23, '2', '2', 'Poopathi', 'Farmer', 50000.00, 2, 0.00, 180000.00, 'Chennai', 'Anna Nagar', '2009250025', '1', '1', 'upload_files/candidate_tracker/66570787043_pravs new resume-1.docx', NULL, NULL, '2020-09-26', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'LOW VOICE .. NOT SUITABLE FOR TELECALLING JOB', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 03:27:20', 7, '2020-09-26 11:03:09', 0, NULL, 1),
(645, 'arokyamerlin j', '4', '6369882795', '', 'arokyamerlin29@gmail.com', '2000-02-29', 20, '2', '2', 'john peter', 'watchman', 10000.00, 1, 0.00, 12000.00, 'ambattur', 'ambattur', '2009250026', '1', '1', 'upload_files/candidate_tracker/83204713250_RESUME .pdf', NULL, NULL, '2020-09-26', 0, '', '5', '14', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'long distance and not suitable for voice', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 04:24:35', 50, '2020-09-26 09:14:20', 0, NULL, 1),
(646, 'R.Ramya', '4', '8680031185', '9841359758', 'ramyapappa2718@gmail.com', '1999-05-27', 21, '2', '2', 'Father - v.Ramesh', 'Loading', 15000.00, 1, 0.00, 15000.00, 'No .1 logaiya naidu street mannurpet chennai 50', 'Chennai , Ambattur industrial estate', '2009250027', '1', '1', 'upload_files/candidate_tracker/6673149055_1597723178800_0_1595232899406Resume_Ramya.pdf', NULL, NULL, '2020-09-26', 0, '', '8', '', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 04:59:56', 50, '2020-09-29 04:37:32', 0, NULL, 1),
(647, 'N.karthika', '4', '6379771987', '7448306653', 'Karthikakkr16@gmail.com', '2000-04-16', 20, '2', '2', 'R.Nagaraj', 'Self employee', 42000.00, 5, 0.00, 10000.00, 'T.Nagar', 'T.Nagar', '2009250028', '1', '1', 'upload_files/candidate_tracker/93732260130_karthima resume.pdf', NULL, NULL, '2020-09-26', 0, '', '5', '21', NULL, 0.00, '11:54 AM', '0', NULL, '2', 'Not Sustain Long Term  Becz She Ill Come With Friends Only', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 05:31:55', 1, '2020-09-26 11:57:31', 0, NULL, 1),
(648, 'Hajara Banu.M', '4', '9150103267', '7200303650', 'hajara.banum2000@gmail.com', '2000-03-20', 20, '2', '2', 'Mohammed Farook.M', 'Self employee', 8000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2009250029', '1', '1', 'upload_files/candidate_tracker/37570869824_resume.pdf', NULL, NULL, '2020-09-26', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not suitable for telecalling ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 05:45:20', 1, '2020-09-26 11:09:31', 0, NULL, 1),
(649, '', '0', '7397033874', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009260001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 09:25:00', 0, NULL, 0, NULL, 1),
(650, 'sathya', '4', '9962364488', '', 'banupriya101290@gmail.com', '1990-12-10', 29, '1', '1', 'banupriya', 'salaried', 50000.00, 1, 75000.00, 100000.00, 'mugappair west', 'mugappair west', '2009260002', '', '2', 'upload_files/candidate_tracker/12947844057_Updated Resume - banu priya.docx', NULL, NULL, '2020-09-26', 30, '5152', '3', '8', '2020-09-30', 14000.00, '11:30 AM', '4', '2020-09-26', '1', 'For CRM 14K', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 10:20:23', 7, '2020-09-26 10:44:09', 0, NULL, 1),
(651, 'kayalabelia', '8', '9500357788', '', 'kayal.abelia@yahoo.com', '1987-12-09', 32, '3', '1', 'Sambantham', 'Farmer', 25000.00, 0, 0.00, 25000.00, 'Perambur', 'Pudupet', '2009260003', '', '1', 'upload_files/candidate_tracker/95715326946_32700368955_subash resume (1).docx', NULL, NULL, '2020-09-26', 0, '', '3', '8', '2020-09-30', 18000.00, '10:27 AM', '5', '1970-01-01', '1', '18K for TL', '7', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 10:20:31', 7, '2020-09-26 10:44:29', 50, '2020-09-29 04:37:55', 0),
(652, 'Anitha.S', '4', '8428291408', '7200303650', 'Anitha1498ani@gmai.com', '1998-08-14', 22, '2', '2', 'Susai Raj.K', 'Self employee', 8000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2009260004', '1', '1', 'upload_files/candidate_tracker/92714635168_Anu anitha.pdf', NULL, NULL, '2020-09-26', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'Long Distance (Perungaluthur)', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-26 10:37:44', 1, '2020-09-26 12:29:31', 0, NULL, 1),
(653, 'Chandru D', '1', '9677061399', '', '', '1981-05-08', 39, '2', '1', 'K Durai', 'Retired', 38000.00, 1, 600000.00, 650000.00, 'Chennai', 'Chennai', '2009260005', '1', '2', 'upload_files/candidate_tracker/79880360965_Chandru CV- 2020.pdf', NULL, NULL, '2020-09-26', 7, '', '5', '8', '1970-01-01', 0.00, '11:20 AM', '', '1970-01-01', '1', 'not Interested in insurance. looking for job in health  care', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-26 11:15:41', 50, '2020-09-29 04:38:12', 0, NULL, 1),
(654, 'IYER RAMACHANDRAN B', '4', '8754616875', '8754616874', 'radhakannan555@gmail.com', '1996-04-05', 24, '2', '2', 'Radha balasubramanian', 'Catering', 18000.00, 2, 8500.00, 9000.00, 'Chennai', 'Chennai', '2009260006', '1', '2', 'upload_files/candidate_tracker/75586512755_Ram.docx', NULL, NULL, '2020-09-26', 0, '', '5', '14', '1970-01-01', 0.00, '11:41 AM', '', '1970-01-01', '1', 'not suitable for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-26 11:33:17', 50, '2020-09-29 04:38:21', 0, NULL, 1),
(655, 'Mageshwari.V', '4', '9677230766', '', 'Mahi22599@gmail.com', '1999-05-22', 21, '1', '1', 'Rajasekaran', '-', 175000.00, 0, 15000.00, 18000.00, 'thiruverkadu,CHENNAI,77', 'Thiruverkadu', '2009260007', '', '2', 'upload_files/candidate_tracker/57172979270_resume_1588865954409.pdf', NULL, NULL, '2020-09-26', 0, '01', '6', '0', NULL, 0.00, '11:56 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 11:38:23', 1, '2020-09-26 11:59:25', 0, NULL, 1),
(656, '', '0', '9952955231', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009260008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 11:52:46', 0, NULL, 0, NULL, 1),
(657, '', '0', '6379053092', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009260009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 11:54:39', 0, NULL, 0, NULL, 1),
(658, '', '0', '6380165257', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009260010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 02:12:41', 0, NULL, 0, NULL, 1),
(659, 'Safrin Abisha.V', '4', '8903540574', '9942806955', 'safrinabisha@gmail.com', '1997-07-12', 23, '2', '2', 'C.varuvel raj', 'Daily wages', 10000.00, 2, 10000.00, 12000.00, 'Kanyakumari district', 'Guindy', '2009260011', '1', '2', 'upload_files/candidate_tracker/15422369340_resume.pdf', NULL, NULL, '2020-09-29', 15, '', '5', '13', '1970-01-01', 0.00, '11:57 AM', '', '1970-01-01', '2', 'person not attend the call  ringing only ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-26 02:27:42', 50, '2020-09-29 04:29:59', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(660, 'G Eswari', '4', '9940905165', '9176379100', 'gmageswari15@gmail.com', '1998-12-15', 21, '2', '2', 'G', 'R. Gopi', 20000.00, 4, 15000.00, 16000.00, 'No 1 Pillaiyar Kovi St, Kanagan,Taramani,Ch - 113', 'No 1 Pillaiyar Kovi St, Kanagan,Taramani,Ch - 113', '2009260012', '1', '2', 'upload_files/candidate_tracker/52813306719_Eswari Resume.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '13', '1970-01-01', 0.00, '02:16 PM', '', '1970-01-01', '2', 'Communication  skills poor so not fit for this profile', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-26 04:38:29', 50, '2020-10-03 03:17:18', 0, NULL, 1),
(661, '', '0', '9361657707', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009270001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-27 03:34:34', 0, NULL, 0, NULL, 1),
(662, 'S.kowsalya', '4', '6380618685', '8883319616', 'sivinkowsalya@gmail.com', '1998-01-05', 22, '2', '2', 'C.sesuraj', 'Farmer', 60000.00, 1, 0.00, 15000.00, 'Kollukkadu', 'Valasaravakkam chennai', '2009280001', '1', '1', 'upload_files/candidate_tracker/25588586178_1599984033446Resume_Kowsalya.docx', NULL, NULL, '2020-10-21', 0, '', '3', '8', '2020-10-22', 120000.00, '01:00 PM', '3', '2020-11-10', '2', '10K For dhivya team. Already Attended interview for HR and rejected.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 08:46:29', 7, '2020-10-21 06:13:21', 0, NULL, 1),
(663, 'sharmila banu.m', '4', '9080606898', '7397421003', 'sharmilab031@gmail.com', '1998-11-04', 21, '2', '2', 'sheriff', 'driver', 14000.00, 1, 0.00, 12000.00, 'thiruvottriyur', 'thiruvottriyur', '2009280002', '1', '1', 'upload_files/candidate_tracker/44320399349_sharmi Resume.pdf', NULL, NULL, '2020-09-28', 0, '', '3', '8', '2020-10-05', 10000.00, '10:25 AM', '2', '1970-01-01', '2', '10K for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 09:50:55', 7, '2020-10-07 06:09:59', 0, NULL, 1),
(664, 'S.swetha', '4', '9884772380', '', 'Swethasuresh136@gmail.com', '2000-06-13', 20, '2', '2', 'T.suresh', 'Sales executive', 30000.00, 1, 0.00, 20000.00, 'Triplicane', 'Triplicane', '2009280003', '1', '1', 'upload_files/candidate_tracker/93203182782_RESUME SWETHA.docx', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '11:07 AM', '', '1970-01-01', '1', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 10:52:22', 50, '2020-09-29 04:33:24', 0, NULL, 1),
(665, 'M C utherkumar', '4', '9677240234', '6238510574', 'ukutherkumar70@gmail.com', '1988-06-04', 32, '2', '2', 'K M chinnathambi', 'Business', 2000.00, 2, 13500.00, 18000.00, 'Narippayur', 'Velachery', '2009280004', '1', '2', 'upload_files/candidate_tracker/689536153_UTHERKUMAR_Resume.docx', NULL, NULL, '2020-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '11:21 AM', '', '1970-01-01', '2', 'will not suite for CRM.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:12:19', 50, '2020-09-29 04:33:30', 0, NULL, 1),
(666, 'Daras sharmila', '5', '8939845300', '', 'Sharmiladaras@gmail.com', '1989-04-26', 31, '1', '1', 'Sathish raj', 'It', 40000.00, 2, 35000.00, 35000.00, 'Chennai', 'Chennai', '2009280005', '', '2', 'upload_files/candidate_tracker/18975154243_daras sharmi resume new.pdf', NULL, NULL, '2020-09-28', 0, '5401', '3', '8', '2020-10-05', 372000.00, '11:17 AM', '6', '2020-12-10', '1', '31K. for veben team', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 11:13:25', 7, '2020-10-22 05:13:20', 0, NULL, 1),
(667, 'Sarath Kumar.M', '4', '7401777405', '9941680737', 'sarathkumarbcom30@gmail.com', '1997-05-30', 23, '2', '2', 'Krishna Kumar.M', 'Tea shop', 15000.00, 2, 14000.00, 17000.00, 'Tondairpet', 'Tondairpet', '2009280006', '1', '2', 'upload_files/candidate_tracker/75144925801_Sarath Kumar Resume(1)(1).pdf', NULL, NULL, '2020-09-28', 0, '', '3', '8', '2020-10-05', 10500.00, '11:24 AM', '2', '1970-01-01', '2', '10.5K for Muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:17:00', 7, '2020-10-07 06:14:24', 0, NULL, 1),
(668, 'Logeshwari R', '4', '8056182652', '', 'logeshwariraja1497@gmail.com', '1997-06-14', 23, '2', '2', 'S. Raja', 'Farmar', 20.00, 2, 0.00, 12000.00, 'No.1/12, Manthoppu street velam, Vellore district.', 'No.36/61Thangal erikarai street Virugambakkam.', '2009280007', '1', '1', 'upload_files/candidate_tracker/50243805291_0_LOGESHWARI R(1).pdf', NULL, NULL, '2020-09-28', 0, '', '5', '21', '1970-01-01', 0.00, '11:24 AM', '', '1970-01-01', '2', 'not bold,no confidence', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:17:42', 50, '2020-09-29 04:33:47', 0, NULL, 1),
(669, 'K JEBADURAI', '4', '8056252058', '9080180536', 'jebadurai2196bcom@gmail.com', '1996-09-21', 24, '1', '2', 'J KOILRAJ', 'Provision Shop', 10000.00, 1, 14000.00, 17000.00, 'Chennai', 'Chennai', '2009280008', '', '2', 'upload_files/candidate_tracker/5012718756_Jeba CV.pdf', NULL, NULL, '2020-09-28', 0, 'Cafs', '5', '21', NULL, 0.00, '11:36 AM', '0', NULL, '1', 'not sustain long term, salary exp 17 k above for crm, already have offer in 2comp', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 11:19:38', 1, '2020-09-28 11:39:05', 0, NULL, 1),
(670, 'Balaji.s', '6', '9566207832', '', '', '1993-11-18', 26, '2', '1', 'V selvam', 'Not working', 200000.00, 0, 15000.00, 15000.00, 'TIRUVALLUR', 'TIRUVALLUR', '2009280009', '3', '2', 'upload_files/candidate_tracker/31706013022_balaji (2) resume jjjj.docx', NULL, NULL, '2020-09-28', 0, '', '5', '19', NULL, 0.00, '11:33 AM', '0', NULL, '1', 'dress ccode not good nd lookwise also not good', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 11:29:23', 1, '2020-09-28 11:33:26', 0, NULL, 1),
(671, 'Yuvaraj B', '4', '9790602623', '', '143yuvayuvi@gmail.com', '2000-07-13', 20, '2', '2', 'Babu', 'Office Assistant', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009280010', '2', '1', 'upload_files/candidate_tracker/31096239489_Yuvaraj.docx', NULL, NULL, '2020-09-29', 0, '', '5', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 11:30:39', 50, '2020-09-29 03:59:12', 0, NULL, 1),
(672, 'Dilliraj.S', '4', '9566136194', '7358754332', 'vijaydilliraj@gmail.com', '1997-08-31', 23, '2', '2', 'Suresh. B', 'Driver', 16000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2009280011', '1', '2', 'upload_files/candidate_tracker/41222231512_resume krish.doc', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '11:48 AM', '', '1970-01-01', '1', 'not sustain long time', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:43:37', 50, '2020-09-29 04:33:57', 0, NULL, 1),
(673, 'Muthu siva . M', '4', '8189840852', '', 'muthusiva0604@gmail.com', '1998-04-06', 22, '2', '2', 'Muthukaruppan . R', 'Cooldrinks shop', 14000.00, 1, 14000.00, 16000.00, 'Chennai', 'Chennai', '2009280012', '1', '2', 'upload_files/candidate_tracker/1104469542_SIVE.doc', NULL, NULL, '2020-09-28', 0, '', '5', '21', '1970-01-01', 0.00, '11:55 AM', '', '1970-01-01', '1', 'he dont have voice exp, also not sustain long term', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:43:47', 50, '2020-09-29 04:36:34', 0, NULL, 1),
(674, 'Sathish', '6', '9566245935', '', 'Ssathish232@gmail.com', '1993-05-24', 27, '1', '2', 'Selvam', 'Oriental Insurance', 45000.00, 1, 16000.00, 16000.00, 'Sri Kandaswamy kovil street Mata Chennai -12', 'Sri Kandaswamy Kovil Street Mata Chennai', '2009280013', '', '2', 'upload_files/candidate_tracker/36016332902_1600937327844_Income tax law and practice II(1).pdf', NULL, NULL, '2020-09-28', 0, '5626', '5', '19', NULL, 0.00, '11:53 AM', '0', NULL, '1', 'dress code not good nd no sustainability', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 11:44:56', 1, '2020-09-28 12:23:10', 0, NULL, 1),
(675, 'Vijay Kumar p. S', '6', '8681844146', '7397411355', 'Vijaykumarps512@gmail.com', '1996-12-23', 23, '1', '2', 'P. L. Srinivasalu', 'Hvf tank factory (retired)', 45000.00, 4, 14000.00, 16000.00, 'No:30,dasari street mettupalayam perambur ch 12', 'No:30,Dasari Street Mettupalayam Perambur Ch 12', '2009280014', '', '2', 'upload_files/candidate_tracker/44277256520_convert-jpg-to-pdf.net_2020-09-28_09-08-06 (2).pdf', NULL, NULL, '2020-09-28', 0, '5626', '5', '20', NULL, 0.00, '12:39 PM', '0', NULL, '1', 'communication not good and no convincing skills.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 11:46:08', 1, '2020-09-28 12:51:29', 0, NULL, 1),
(676, 'D. saranya', '4', '9094751791', '7397654245', 'saramanjal@gmail.com', '1996-12-19', 23, '2', '2', 'Dass', 'Security', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2009280015', '1', '1', 'upload_files/candidate_tracker/27739443563_SARANYA RESUME.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '21', '1970-01-01', 0.00, '11:51 AM', '', '1970-01-01', '2', 'not sustain long term xxamp also long distance 1.5 hrs travel', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:49:01', 50, '2020-09-29 04:34:12', 0, NULL, 1),
(677, 'Stephy princyR', '4', '9677531873', '', 'steffiprinzr2@gmail.com', '1993-11-26', 26, '2', '2', 'RubanJ', 'Retried', 20000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2009280016', '1', '1', 'upload_files/candidate_tracker/72443944142_stef webdeveloper.docx', NULL, NULL, '2020-09-28', 0, '', '5', '21', '1970-01-01', 0.00, '12:07 PM', '', '1970-01-01', '2', 'Not Bold ,Cant Sustain Long Term', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:53:30', 50, '2020-09-29 04:36:43', 0, NULL, 1),
(678, 'Mohammed Meeran', '6', '7904780799', '9884283813', 'smilewithmomeeran@gmail.com', '1990-12-28', 29, '2', '2', 'Shagul ameed', 'Finace', 5000.00, 2, 18000.00, 20000.00, 'No 894 s.a colony 9th street sarmanagar Chennai', 'No 894 S.A Colony 9th Street Sarmanagar Chennai', '2009280017', '3', '2', 'upload_files/candidate_tracker/32329531705_MEERAN.docx', NULL, NULL, '2020-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '12:29 PM', '', '1970-01-01', '1', 'no sales exp, gave negative feedback about insurance. will not suite for RM profile. No degree to.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 12:02:58', 50, '2020-09-28 01:28:55', 0, NULL, 1),
(679, 'Yogeshwari k', '4', '8072266916', '7904922151', 'ammu922016@gmail.com', '1998-10-27', 21, '1', '2', 'Kannan', 'Document executive', 15000.00, 1, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2009280018', '', '1', 'upload_files/candidate_tracker/85306822665_Resume_Yogeshwari_Format6(1).pdf', NULL, NULL, '2020-09-28', 0, '5445', '3', '8', '2020-10-01', 120000.00, '12:09 PM', '6', '2020-12-02', '2', '10K for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 12:04:55', 7, '2020-10-06 03:58:32', 0, NULL, 1),
(680, 'Vajakath Ali', '4', '9042198904', '9840658509', 'Vajamech@gmail.com', '1994-12-19', 25, '2', '2', 'A.Abdul kadher', 'Tailor', 16000.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2009280019', '1', '1', 'upload_files/candidate_tracker/34202673494_A.Vajakath_Ali_CV (13).pdf', NULL, NULL, '2020-09-28', 0, '', '3', '8', '2020-10-05', 11000.00, '12:12 PM', '2', '1970-01-01', '1', '11K for Muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 12:07:51', 7, '2020-10-07 05:58:43', 0, NULL, 1),
(681, 'venugopal k', '4', '9094455617', '9551277985', 'venu33977@gamil.com', '1997-10-31', 22, '2', '2', 'kesavan', 'cooli', 20000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2009280020', '1', '1', 'upload_files/candidate_tracker/68846501849_Venu gopal_Resume_Format1.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '12:20 PM', '', '1970-01-01', '1', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 12:09:11', 50, '2020-09-29 04:34:30', 0, NULL, 1),
(682, 'J santhoshkumar', '4', '9962303391', '6369555281', 'santhoshjayakumar12@gmail.com', '1998-12-29', 21, '2', '2', 'G jayakumar', 'Cooli', 17000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2009280021', '1', '1', 'upload_files/candidate_tracker/67964718783_santh.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '12:19 PM', '', '1970-01-01', '2', 'will not suite for CRM.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 12:10:14', 50, '2020-09-29 04:34:38', 0, NULL, 1),
(683, 'Ashok Kumar', '4', '7092947309', '', '', '1997-06-07', 23, '2', '2', 'Ayyasamy', 'Building contractor', 20000.00, 2, 12000.00, 15000.00, 'No.1851, Dr.Ambedkar Nager, Adambakkam, Chennai-88', 'No.1851, Dr.Ambedkar Nager, Adambakkam, Chennai-88', '2009280022', '1', '2', 'upload_files/candidate_tracker/999486755_Ashok kumar - Resume.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '12:22 PM', '', '1970-01-01', '2', 'will not handle pressure.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 12:13:49', 50, '2020-09-29 04:34:45', 0, NULL, 1),
(684, 'M.R.Dhinesh', '4', '9940693595', '8072553148', 'dhinedhjeyam1996@gmail.com', '1996-11-20', 23, '2', '2', 'M.Ravi', '+2', 20000.00, 1, 12500.00, 15000.00, 'Madipakkam', 'Madipakkam', '2009280023', '1', '2', 'upload_files/candidate_tracker/7699340918_dinesh resume.docx', NULL, NULL, '2020-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '12:23 PM', '', '1970-01-01', '2', 'will not sustain', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 12:18:56', 50, '2020-09-29 04:34:53', 0, NULL, 1),
(685, 'Gayathri', '4', '7904922151', '8148567103', 'gayathripinky16@gmail.com', '2000-04-10', 20, '1', '2', 'Suresh', 'Catering service', 15000.00, 0, 0.00, 14000.00, 'Chennai', 'Porur', '2009280024', '', '1', 'upload_files/candidate_tracker/71902121619_gayathri resume.docx', NULL, NULL, '2020-09-28', 0, '5562', '5', '8', '1970-01-01', 0.00, '12:37 PM', '', '1970-01-01', '2', 'not selected in telephonic interview', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 12:24:02', 50, '2020-09-28 12:50:29', 0, NULL, 1),
(686, 'Felicia reni.M', '4', '9384615575', '9094749918', 'feliciareni836@gmail.com', '2000-10-09', 19, '2', '2', 'Maria Michael.V', 'Cool', 10000.00, 1, 0.00, 11000.00, 'Chennai', 'Sholinganallur', '2009280025', '1', '1', 'upload_files/candidate_tracker/16072083592_RESUME_Reni - Revised.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '01:02 PM', '', '1970-01-01', '2', 'not speaking up', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 12:39:43', 50, '2020-09-29 04:35:00', 0, NULL, 1),
(687, 'Keerthana.N', '13', '9976596449', '9443571514', 'nskeerthana27@gmail.com', '1997-12-30', 22, '2', '2', 'C. Namburajan', 'BSNL employee', 35000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2009280026', '1', '1', 'upload_files/candidate_tracker/47135186094_mine2.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '26', '1970-01-01', 0.00, '01:08 PM', '', '1970-01-01', '2', 'she dont know basics', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 01:04:36', 50, '2020-09-29 04:35:08', 0, NULL, 1),
(688, 'M.Ajay', '4', '7867981574', '8903540574', 'ajaym06021999@gmail.com', '1999-02-06', 21, '2', '2', 'Murugesan', 'Daily wages', 10000.00, 1, 0.00, 10000.00, 'Kanyakumari district', 'Velachery', '2009280027', '1', '1', 'upload_files/candidate_tracker/65428852759_1601284894341_resume.pdf', NULL, NULL, '2020-09-29', 0, '', '5', '13', '1970-01-01', 0.00, '02:09 PM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 01:06:59', 50, '2020-09-29 04:30:08', 0, NULL, 1),
(689, 'Mahalakshmi.S', '13', '7305121567', '9976596449', 'Smahalakshmi197@gmail.com', '1997-11-22', 22, '2', '2', 'Subramaniyan.k', 'Driver', 20000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2009280028', '1', '1', 'upload_files/candidate_tracker/96198658021_RESUME....docx', NULL, NULL, '2020-09-28', 0, '', '5', '26', '1970-01-01', 0.00, '01:20 PM', '', '1970-01-01', '2', 'She dont know basics of c and c++', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 01:12:17', 50, '2020-09-29 04:35:17', 0, NULL, 1),
(690, 'Pradeep R', '4', '9043503055', '7904787212', 'Pradeepstr6@gmail.com', '1992-12-22', 27, '2', '2', 'RadhaKrishnan', 'late', 10000.00, 2, 14500.00, 18000.00, '19 B Lakshmane servai lane thirupparankundram', 'No 80 kattabomman street taramani chennai', '2009280029', '1', '2', 'upload_files/candidate_tracker/28236685953_1_1600611956963_CURRICULAM VITAE2.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '01:27 PM', '', '1970-01-01', '1', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 01:24:02', 50, '2020-09-29 04:35:25', 0, NULL, 1),
(691, 'aravindan', '4', '8124281808', '8610050632', 'aravindan8124@gmail.com', '1995-09-20', 25, '2', '2', 'balamurugan', 'vegetable shop', 18000.00, 1, 12000.00, 14000.00, 'no: 80 kattapoman street , Tharamani, chennai', 'no:80 kattapoman street, Tharamani', '2009280030', '1', '2', 'upload_files/candidate_tracker/27702836591_1_my resume 2 (1).pdf', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '01:45 PM', '', '1970-01-01', '1', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 01:24:19', 50, '2020-09-29 04:35:35', 0, NULL, 1),
(692, 'Ayyasamy .R', '4', '9025337729', '7200605980', 'ayyasamy1999@gmail.com', '1999-08-20', 21, '2', '2', 'Ramasamy', 'Farmer', 10000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2009280031', '1', '1', 'upload_files/candidate_tracker/26602688197_Ayyasamy.R.docx', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '03:15 PM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 02:18:34', 50, '2020-09-29 04:35:42', 0, NULL, 1),
(693, 'P saranraj', '7', '9789910809', '8248987071', 'Vjsaran0110@gmail.com', '1993-10-01', 26, '2', '2', 'N panner selvam', 'Auto driver', 10000.00, 1, 16000.00, 20000.00, 'No2006 3rd Street Anna nagar ch-40', 'No2006 3rd Street Anna nagar ch-40', '2009280032', '1', '2', 'upload_files/candidate_tracker/50196861696_0_1584617347592_RESUME HD1.2 - Copy.docx', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '02:41 PM', '', '1970-01-01', '1', 'already Attended interview on sep 2020, no knowledge in MF, poor eng. comm. will not suite for our process.', '7', '2', '', '', '', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 02:19:24', 7, '2021-03-31 11:48:42', 0, NULL, 1),
(694, 'Shivasundar', '4', '8825926214', '', 'shivasundar315@gmail.com', '1999-06-03', 21, '2', '2', 'Rajendran', 'Business executive', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2009280033', '1', '1', 'upload_files/candidate_tracker/9534390510_Shivasundar Copy Copy_Resume_Format4.pdf', NULL, NULL, '2020-09-28', 0, '', '3', '8', '2020-10-05', 10500.00, '02:26 PM', '2', '1970-01-01', '1', '10.5K for Muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 02:23:20', 7, '2020-10-07 06:15:38', 0, NULL, 1),
(695, 'Deva chanthru A', '4', '9025008462', '9092155756', 'devachanthru8555@gmail.com', '1999-04-16', 21, '2', '2', 'Ayyanar', 'Farmer', 10000.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2009280034', '1', '1', 'upload_files/candidate_tracker/13660381875_deva.docx', NULL, NULL, '2020-09-28', 0, '', '3', '8', '2020-10-05', 10000.00, '03:00 PM', '2', '1970-01-01', '1', '10K for health team.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 02:29:48', 7, '2020-10-07 06:15:58', 0, NULL, 1),
(696, 'Ramya K', '4', '7538857724', '', 'ramyamswhr2019@gmail.com', '1998-06-11', 22, '2', '2', 'Kalaivanan A', 'Car Servicer', 20000.00, 1, 9000.00, 12000.00, 'Ramanathapuram', 'Chennai', '2009280035', '1', '2', 'upload_files/candidate_tracker/81744466568_Ramya Resume.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '21', '1970-01-01', 0.00, '02:40 PM', '', '1970-01-01', '2', 'she is interested in hr traniee, also not sustain long term', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 02:34:59', 50, '2020-09-29 04:36:12', 0, NULL, 1),
(697, '', '0', '7022330009', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009280036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 03:05:35', 0, NULL, 0, NULL, 1),
(698, 'Indhumathi', '4', '9629647066', '8072673087', 'indhumurugesan1004@gmail.com', '1997-04-10', 23, '2', '2', 'Murugesan', 'Farmer', 6000.00, 1, 0.00, 15000.00, 'Erode', 'Arumbakkam', '2009280037', '1', '2', 'upload_files/candidate_tracker/12722679920_Indhumathi Resume (R).pdf', NULL, NULL, '2020-09-28', 0, '', '5', '21', '1970-01-01', 0.00, '03:17 PM', '', '1970-01-01', '2', 'She Is Searching Mail Process xxamp Also Expected 14 K Above For Crm', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 03:14:34', 50, '2020-09-29 04:36:22', 0, NULL, 1),
(699, 'Nandha kumar', '4', '9176120578', '', 'nandhatamil1234@gmail.com', '1998-06-10', 22, '2', '2', 'Srinivasan', 'Farmer', 8000.00, 3, 13000.00, 15000.00, 'Chennai', 'Chennai', '2009280038', '1', '2', 'upload_files/candidate_tracker/10594318077_NANDHA KUMAR resume.docx', NULL, NULL, '2020-09-28', 0, '', '3', '8', '2020-10-05', 10500.00, '04:17 PM', '2', '1970-01-01', '2', '10.5K for Muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 03:35:32', 7, '2020-10-07 06:16:12', 0, NULL, 1),
(700, 'E.BAlakumar', '6', '9962204014', '', 'Prakashdhanush1997@gmail.com', '1997-01-28', 23, '1', '2', 'S.Elumalai', 'Vegetable merchant', 10000.00, 1, 13000.00, 16000.00, 'Chennai', 'Chennai', '2009290001', '', '2', 'upload_files/candidate_tracker/33182296468_BALAKUMAR (2)-converted.docx', NULL, NULL, '2020-09-29', 0, '5625', '5', '24', NULL, 0.00, '10:55 AM', '0', NULL, '1', 'Sustainability Is Doubt', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 10:51:50', 1, '2020-09-29 10:58:30', 0, NULL, 1),
(701, 'arun kumar', '5', '9597408729', '9003152857', 'arunkumarmanoharan1992@gmail.com', '1992-06-14', 28, '2', '2', 'manoharan', 'farmer', 9000.00, 0, 19500.00, 23000.00, 'theni', 'chennai', '2009290002', '1', '2', 'upload_files/candidate_tracker/49003535757_coolpad.pdf', NULL, NULL, '2020-09-29', 0, '', '3', '8', '2020-10-05', 276000.00, '11:45 AM', '6', '2021-03-26', '1', '23K, fro RM.  shortlisted by sriram', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 10:52:13', 7, '2020-10-22 05:14:11', 0, NULL, 1),
(702, 'Swetha', '4', '9940168581', '', 'Swetha.viswanathan1995@gmail.com', '1995-04-01', 25, '2', '1', 'Durgai selvan', 'Special assistant in UCO bank', 32000.00, 0, 15000.00, 20000.00, 'Tnagar', 'Tnagar', '2009290003', '1', '2', 'upload_files/candidate_tracker/81405249137_swetha resume updated 1.docx', NULL, NULL, '2020-09-29', 0, '', '5', '13', '1970-01-01', 0.00, '12:05 PM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 10:57:21', 50, '2020-09-29 04:30:36', 0, NULL, 1),
(703, 'Durgadevi.R', '4', '9943071429', '9025872050', 'durgadd1429@gmail.com', '1999-08-29', 21, '2', '2', 'Ramesh', 'Late', 20000.00, 1, 13800.00, 16000.00, 'Chennai', 'Chennai', '2009290004', '1', '2', 'upload_files/candidate_tracker/82618125565_DURGA DEVI R.docx', NULL, NULL, '2020-09-29', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not sustain long term xxamp also expecting high  salary 18k for crm', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 11:02:46', 50, '2020-09-29 04:30:44', 0, NULL, 1),
(704, 'Indhumathi N', '4', '8098902977', '9626930291', 'mathi25indhu@gmail.com', '1999-04-18', 21, '2', '2', 'Nagarajan S G', 'Late', 13800.00, 2, 13800.00, 16000.00, 'Chennai', 'Chennai', '2009290005', '1', '2', 'upload_files/candidate_tracker/12533595446_resume new 2020-converted (1).pdf', NULL, NULL, '2020-09-29', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not sustain long term, xxamp also expecting high salry for crm above 18k ...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 11:04:30', 50, '2020-09-29 04:30:52', 0, NULL, 1),
(705, 'Dharani v', '13', '8610986251', '6381776855', 'Veeradharani98@gmail.com', '1998-01-21', 22, '2', '2', 'Veeramani G', 'Government job', 18000.00, 1, 0.00, 20000.00, '2/35,West St,kattakudi,thiruvarur(dt)', 'Near by j j police station', '2009290006', '1', '1', 'upload_files/candidate_tracker/65554290840_dharanisailesh.pdf', NULL, NULL, '2020-09-29', 0, '', '5', '27', '1970-01-01', 0.00, '11:18 AM', '', '1970-01-01', '2', 'not interested for bond.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 11:09:55', 50, '2020-09-29 04:40:23', 0, NULL, 1),
(706, '', '0', '9514482681', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 11:11:59', 0, NULL, 0, NULL, 1),
(707, 'Arunkumar', '4', '8668141853', '', 'Arunzpulsar@gmail.com', '1997-05-12', 23, '2', '2', 'P nanda gopal', 'Tnsc bank manager', 60000.00, 1, 0.00, 11000.00, 'Chennai', 'Chennai', '2009290008', '1', '1', 'upload_files/candidate_tracker/73109711893_Arun resume (1).docx', NULL, NULL, '2020-09-29', 0, '', '5', '13', '1970-01-01', 0.00, '11:45 AM', '', '1970-01-01', '2', 'NOT SUITABLE FOR PRESSURE HANDLING', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 11:42:03', 50, '2020-09-29 04:31:09', 0, NULL, 1),
(708, 'Sangavi', '4', '9962663838', '9500075354', 'san95.sangavi@gmail.com', '1995-08-15', 25, '2', '2', 'Mohan', 'Chennai port trust', 900000.00, 1, 13500.00, 16000.00, 'No TV/8,Chennai port trust Villa quaters', 'No TV 8 Chennai port trust Villa quaters', '2009290009', '1', '2', 'upload_files/candidate_tracker/26989007885_sangavi updated cv-1.pdf', NULL, NULL, '2020-09-29', 6, '', '5', '13', '1970-01-01', 0.00, '12:07 PM', '', '1970-01-01', '2', 'not fit for tele sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:02:07', 50, '2020-09-29 04:31:17', 0, NULL, 1),
(709, '', '0', '7358057407', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 12:05:44', 0, NULL, 0, NULL, 1),
(710, 'Hari priya J', '4', '7871566007', '9551483592', 'priya81405.j@gmail.com', '1998-04-06', 22, '2', '2', 'B Jagadeeswaran', 'Engineer', 10000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2009290011', '1', '1', 'upload_files/candidate_tracker/13743688426_imagepdf-1-1.pdf', NULL, NULL, '2020-09-29', 0, '', '3', '8', '2020-10-05', 10000.00, '12:24 PM', '2', '1970-01-01', '2', '10K for Muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:21:16', 7, '2020-10-07 06:16:59', 0, NULL, 1),
(711, 'Sandhiya V', '4', '6374865070', '8678991095', 'sandhiyavijayakumar29@gmail.com', '1999-10-29', 20, '2', '2', 'Vijayakumar', 'Driver', 15000.00, 1, 0.00, 14000.00, 'Mylapore', 'Mylapore', '2009290012', '1', '1', 'upload_files/candidate_tracker/54881652651_9_Sandhiya resume.pdf', NULL, NULL, '2020-09-29', 0, '', '3', '8', '2020-10-05', 10000.00, '12:25 PM', '2', '1970-01-01', '2', '10K for Muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:23:13', 7, '2020-10-07 06:17:31', 0, NULL, 1),
(712, 'Harini', '4', '6374757321', '8056106626', 'Sathishharini36@gmail.com', '1997-10-20', 22, '2', '1', 'S. Sathish Kumar', 'Zonal principal', 25000.00, 1, 0.00, 13000.00, 'Manali new town', 'Parry\'s', '2009290013', '1', '1', 'upload_files/candidate_tracker/60589017254_CURRICULUM VITAE HARINI - Google Docs.pdf', NULL, NULL, '2020-09-29', 0, '', '6', '0', NULL, 0.00, '01:13 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:30:27', 1, '2020-09-29 01:19:24', 0, NULL, 1),
(713, 'Gomathi.M', '4', '9884876850', '7448553304', 'mohangomathi97@gmail.com', '1997-10-22', 22, '2', '2', 'M.sumathi', 'Coppular', 20000.00, 2, 0.00, 10000.00, 'CHENNAI', 'CHENNAI', '2009290014', '1', '1', 'upload_files/candidate_tracker/74231767126_Gomathi.docx', NULL, NULL, '2020-09-29', 0, '', '5', '13', '1970-01-01', 0.00, '12:40 PM', '', '1970-01-01', '2', 'she is not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:35:22', 50, '2020-09-29 04:31:45', 0, NULL, 1),
(714, 'VIDHYA VANMATHY S', '4', '9080295232', '', '', '2000-02-14', 20, '2', '2', 'Saravanan (late) mother-malathi', 'Labour', 7000.00, 1, 0.00, 12000.00, 'Chennai', 'No.6/13 Tondiar Nagar,Tondiar Pet , Chennai-600081', '2009290015', '1', '1', 'upload_files/candidate_tracker/30879708532_VIDHYA VANMATHY Resume.docx', NULL, NULL, '2020-09-30', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not  suitable for tele sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:49:29', 50, '2020-09-30 01:22:43', 0, NULL, 1),
(715, 'Anitha .E', '4', '8870062486', '9962703557', 'anitharajan91128@gmail.com', '1997-12-12', 22, '2', '2', 'A.s.Emarajan', 'Own business', 35000.00, 2, 0.00, 11000.00, 'Kodugaiyur', 'Kodugaiyur', '2009290016', '1', '1', 'upload_files/candidate_tracker/47551112581_E.ANITHA.doc', NULL, NULL, '2020-09-29', 0, '', '6', '0', NULL, 0.00, '01:06 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:51:31', 1, '2020-09-29 01:18:18', 0, NULL, 1),
(716, 'arivuselvan gnanaprakasam', '4', '7397068159', '8098212166', 'arivurahi12@gmail.com', '1999-06-03', 21, '2', '2', 's gnanprakasam', 'cooli', 15000.00, 1, 0.00, 12000.00, 'vadapalani', 'vadapalani', '2009290017', '1', '1', 'upload_files/candidate_tracker/24772690291_ARIVU RESUME.docx', NULL, NULL, '2020-09-30', 0, '', '5', '14', '1970-01-01', 0.00, '01:13 PM', '', '1970-01-01', '2', 'looking for non voice process ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:52:39', 50, '2020-09-30 01:24:33', 0, NULL, 1),
(717, 'M. Jothika', '4', '9710551757', '', 'jothikamani112@gmail.com', '2000-06-12', 20, '2', '2', 'R. Mani', 'Security', 8000.00, 3, 0.00, 11000.00, 'Chennai', 'Chennai', '2009290018', '1', '1', 'upload_files/candidate_tracker/86896547704_resume.j.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '41', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Will not sustain long travel distance,dependent on her friend', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 01:20:46', 50, '2020-09-30 09:33:45', 0, NULL, 1),
(718, 'Mohanapriya G', '4', '9551364039', '9345363759', 'mohanapriyas2703@gmail.com', '2002-03-27', 18, '2', '2', 'Sabarinathan G', 'Painter', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chrompet', '2009290019', '1', '1', 'upload_files/candidate_tracker/40835893711_IMG-20200901-WA0003.pdf', NULL, NULL, '2020-09-30', 0, '', '3', '8', '2020-10-05', 10500.00, '11:00 AM', '3', '2021-02-02', '2', '10.5K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 01:24:27', 7, '2020-10-06 12:43:36', 0, NULL, 1),
(719, 'BARATH.K', '5', '9080605104', '7824042335', 'sasibarath12@gmail.com', '1995-02-24', 25, '2', '2', 'Kothandaraman', 'Business', 15000.00, 0, 12900.00, 20000.00, '11/306 j.j nagar mogappair east', '11/306 j.j nagar mogappair east', '2009290020', '3', '2', 'upload_files/candidate_tracker/62408858657_Barath -3.pdf', NULL, NULL, '2020-09-29', 1, '', '3', '18', '2020-10-12', 18000.00, '01:41 PM', '', '1970-01-01', '1', 'check for RM', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 01:35:28', 7, '2020-10-12 04:31:15', 0, NULL, 1),
(720, '', '0', '9791026569', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 01:38:02', 0, NULL, 0, NULL, 1),
(721, 'Ramachandran . S', '4', '8056218721', '9514956425', 'ajithram415@gmail.com', '1998-01-18', 22, '2', '2', 'Valli', 'House wife', 75000.00, 0, 11000.00, 11000.00, 'Chennai', 'Chennai kilpauk', '2009290022', '1', '2', 'upload_files/candidate_tracker/54423311229_0_Raam(2).pdf', NULL, NULL, '2020-09-30', 15, '', '5', '41', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'will  not sustain', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 01:47:47', 50, '2020-09-30 12:06:10', 0, NULL, 1),
(722, 'Roshini', '11', '7397264176', '9789090715', 'roshinik444@gmail.com', '1997-11-27', 22, '2', '2', 'kumar', 'general manager', 120000.00, 1, 1.40, 2.20, 'chennai', 'chennai', '2009290023', '1', '2', 'upload_files/candidate_tracker/47635634390_1594360230738Resume_Roshini.docx', NULL, NULL, '2020-10-03', 20, '', '5', '8', NULL, 0.00, '03:00 PM', '0', NULL, '1', '20 days notice yet to put paper and will nit sustain. exp 50% hike + inc.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 02:51:01', 1, '2020-09-29 04:09:12', 0, NULL, 1),
(723, 'J Divyalakshmi', '4', '9003203742', '', 'j.divyalakshmi221@gmail.com', '2000-01-22', 20, '2', '2', 'Jaisankar', 'Security', 75000.00, 1, 0.00, 11000.00, 'Chennai', 'Chennai', '2009290024', '1', '1', 'upload_files/candidate_tracker/46068976315_divyanewprint.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '41', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not sustain,will not handle pressure,will not sustain', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 02:51:14', 50, '2020-09-30 09:33:55', 0, NULL, 1),
(724, 'K.m.Priyanka', '11', '9841246723', '9677174457', 'priyankam429@gmail.com', '1985-11-30', 34, '2', '2', 'K.Muthuramalingam (Late)', 'Advocate', 30000.00, 0, 360000.00, 468000.00, 'Chennai', 'Chennai', '2009290025', '1', '2', 'upload_files/candidate_tracker/99682650430_Priyanka CV - Updated.doc', NULL, NULL, '2020-10-03', 7, '', '5', '8', NULL, 0.00, '02:30 PM', '0', NULL, '2', 'she will not suite for us and will not suatain.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 03:18:15', 1, '2020-09-29 03:59:38', 0, NULL, 1),
(725, '', '0', '9940370307', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 03:24:59', 0, NULL, 0, NULL, 1),
(726, 'Venkattgiri.v', '4', '8344413493', '', 'venkattagiri181@gmail.com', '1996-08-13', 24, '2', '2', 'Vedharaman.v', 'he was bulding contractor', 40000.00, 0, 0.00, 13000.00, '24/9kuayaver street nagore', 'k.k.nagar', '2009290027', '1', '1', 'upload_files/candidate_tracker/25675161812_1576740820076_0_venkattagiri Resume.docx', NULL, NULL, '2020-09-30', 0, '', '3', '8', '1970-01-01', 10500.00, '01:40 PM', '2', '1970-01-01', '1', '10.5K for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 03:45:33', 7, '2020-10-06 12:44:16', 0, NULL, 1),
(727, 'Srinivasan', '5', '9941982651', '6381431834', 'Shanthiaravindh499@gmail.com', '1994-07-26', 26, '2', '2', 'Ravikumar', 'Business', 15000.00, 0, 13500.00, 18000.00, '32/52 mufti Amerulla Street Triplicane Chennai', '32/52 Mufti Amerulla Street Triplicane Chennai', '2009290028', '8', '2', 'upload_files/candidate_tracker/27436993593_1590157344492_1590157080305_1583832873280_1583832862531_1583832855592_1583832845215_1583832841649_today update srinivasan.docx', NULL, NULL, '2020-10-05', 0, '', '5', '36', NULL, 0.00, '10:48 AM', '0', NULL, '1', 'Not fit for RM', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 03:57:16', 1, '2020-10-05 10:50:28', 0, NULL, 1),
(728, 'Abdul Gaffoor J', '11', '7010229252', '9791755837', 'abdul.gaffoor8@gmail.com', '1990-05-23', 30, '2', '1', 'Fathima Akthar', 'Business Analyst', 40000.00, 1, 317000.00, 325000.00, 'Chennai', 'Trichy', '2009290029', '1', '2', 'upload_files/candidate_tracker/97493392723_Abdul Gaffoor J - Updated - Profile.doc', NULL, NULL, '2020-09-30', 13, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 04:05:41', 50, '2020-09-30 04:49:21', 0, NULL, 1),
(729, 'mohamed abdullah shariff s', '11', '7200751775', '', 'abdulshariff95@gmail.com', '1995-09-24', 25, '2', '2', 'mohamed saifullah shariff a', 'security', 30000.00, 1, 0.00, 28000.00, 'ayanavaram', 'ayanavaram', '2009290030', '1', '1', 'upload_files/candidate_tracker/39601181185_Abdul Resume 1.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '53', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'He dont have experience n Hr profile, hvng experience n NV oly. Moreover he will not suit for RE nd CRM also.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 04:46:48', 50, '2020-10-01 10:53:27', 0, NULL, 1),
(730, 'K. Keerthana', '4', '7550263720', '9445057562', 'Keerthana12kumar@gmail.com', '1997-10-12', 22, '2', '2', 'R. J Kumar', 'Driver', 80000.00, 1, 8000.00, 10000.00, 'Rampuram', 'Rampuram', '2009290031', '2', '2', 'upload_files/candidate_tracker/51507537394_CV Keerthana (2).pdf', NULL, NULL, '2020-09-30', 0, '', '5', '41', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', '2022 graduate correspondence,will not sustain,can not handle pressure,not convincing and not a good listener', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 05:09:55', 50, '2020-09-30 11:36:02', 0, NULL, 1),
(731, 'M Sarath Kumar', '4', '9940201156', '7904694351', 'Spreak1910@gmail.com', '1991-10-19', 28, '2', '2', 'Mohan G', 'L.I.C Retried', 40000.00, 3, 12000.00, 13000.00, 'chennai broadway', 'chennai broadway', '2009290032', '1', '2', 'upload_files/candidate_tracker/29987997505_Resume_2020aug.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '14', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'expecting high salary he is not even to sustain . not suitable for voice', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 05:11:17', 50, '2020-09-30 09:35:12', 0, NULL, 1),
(732, '', '0', '6381060390', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 05:17:20', 0, NULL, 0, NULL, 1),
(733, '', '0', '8825941332', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290034', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 05:28:10', 0, NULL, 0, NULL, 1),
(734, 'balaji v m', '11', '7200080255', '', 'balajimaikadasivam@gmail.com', '1987-08-10', 33, '2', '2', 'maikandasivam v s', 'nil', 25000.00, 0, 250000.00, 300000.00, 'chennai', 'chennai', '2009290035', '1', '2', 'upload_files/candidate_tracker/11395264698_Balaji V M.doc', NULL, NULL, '2020-10-01', 0, '', '5', '54', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'He is doing freelance,he is looking for a job because of his marriage and will not sustain.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 05:47:53', 1, '2020-09-29 05:52:13', 0, NULL, 1),
(735, 'Dinesh kumar', '4', '6379432022', '9176167304', 'Velmurugandinesh47@gmail.com', '1999-08-18', 21, '2', '2', 'Velmurugan.S', 'Tea stall', 10000.00, 1, 0.00, 15000.00, 'Ullagaram, madippakkam', 'Ullagaram, madippakkam', '2009290036', '1', '1', 'upload_files/candidate_tracker/31729227637_Dinesh - Resume-1.doc', NULL, NULL, '2020-10-01', 0, '', '3', '8', '2020-10-08', 120000.00, '11:00 AM', '6', '2020-11-30', '1', '10K. for priyanka  team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 05:52:54', 7, '2020-10-08 03:12:53', 0, NULL, 1),
(736, 'raghavi.r', '11', '7092362904', '', 'raghavir176@gmail.com', '1997-10-03', 22, '2', '2', 'ravichandran.m', 'fitter', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2009290037', '1', '1', 'upload_files/candidate_tracker/35251302015_resumess 1.docx', NULL, NULL, '2020-10-05', 0, '', '5', '41', NULL, 0.00, '03:00 PM', '0', NULL, '1', 'Pursuing MBA Corres Saturday and Sunday classes', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 06:02:34', 1, '2020-09-30 01:18:06', 0, NULL, 1),
(737, 'A. Nisha', '11', '6381497745', '9884643037', 'angelnisha1272000@gmail.com', '2000-07-12', 20, '2', '2', 'D. Andrews', 'Driver', 15000.00, 1, 0.00, 15000.00, 'No:15/8 Murugesan street Shenoy nagar Chennai -30', 'No:15/8 Murugesan street Shenoy nagar Chennai -30', '2009290038', '1', '1', 'upload_files/candidate_tracker/6304404997_Nisha Andrews resume (1).docx', NULL, NULL, '2020-10-03', 0, '', '5', '54', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'communication not good.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 06:13:34', 1, '2020-09-29 06:30:41', 0, NULL, 1),
(738, 'selva jayanthi t', '11', '8667757559', '', 'jayanthiselva97@gmail.com', '1997-09-21', 23, '2', '2', 'thangavel c', 'sales agent', 15000.00, 1, 0.00, 20000.00, 'kolathur', 'kolathur', '2009290039', '1', '1', 'upload_files/candidate_tracker/99025834565_common resume(3).pdf', NULL, NULL, '2020-10-03', 0, '', '5', '8', '1970-01-01', 0.00, '11:51 AM', '', '1970-01-01', '1', 'hold for intern but not turned up', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 06:24:47', 50, '2020-10-03 11:59:02', 0, NULL, 1),
(739, 'Chandru', '11', '9442954699', '', 'chandru24sss@gmail.com', '1988-10-24', 31, '2', '2', 'Perumalsamy', 'He is past', 22000.00, 1, 264000.00, 320000.00, 'Chennai', 'Chennai', '2009290040', '1', '2', 'upload_files/candidate_tracker/70437288120_Chandru Resume.docx', NULL, NULL, '2020-10-01', 3, '', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'Long distance, nt suit fr HR rec, dnt hve portal knowledge also', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 06:47:21', 1, '2020-09-29 10:42:24', 0, NULL, 1),
(740, '', '0', '6383180233', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290041', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 07:10:59', 0, NULL, 0, NULL, 1),
(741, '', '0', '8667388737', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290042', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 08:54:37', 0, NULL, 0, NULL, 1),
(742, 'r prem kumar', '20', '9840877352', '', 'ramesh.premkumar@gmail.com', '1988-11-29', 31, '2', '1', 'v annapurarni', 'executive', 50000.00, 1, 35000.00, 35000.00, 'chennai', 'chennai', '2009290043', '1', '2', 'upload_files/candidate_tracker/33537152788_Prem Kumar Resume-02.08.2020.pdf', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '10:01 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 09:16:51', 50, '2020-10-03 05:35:34', 0, NULL, 1),
(743, 'Prathiksha', '4', '8883013491', '6385845925', 'prathikshapreethi40@gmail.com', '1999-04-14', 21, '2', '2', 'Sivanantham', 'Former', 10000.00, 0, 0.00, 11000.00, '147, East st, kothattai, cuddalor', '7, thukkaram st, t.nagar', '2009300001', '1', '1', 'upload_files/candidate_tracker/56222419640_Preethi Resume.docx', NULL, NULL, '2020-09-30', 0, '', '3', '8', '1970-01-01', 10500.00, '12:37 PM', '2', '1970-01-01', '2', '10.5K for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 08:50:06', 7, '2020-10-06 12:44:52', 0, NULL, 1),
(744, 'Vignesh Franklin c', '20', '7305575853', '7502620533', 'vicam101012@gmail.com', '1997-01-10', 23, '2', '2', 'Chinnaparaj', 'Cooli', 48000.00, 2, 0.00, 13000.00, 'Cuddalore District', 'Cuddalore District', '2009300002', '1', '1', 'upload_files/candidate_tracker/10839538576_15UCO54.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '14', '1970-01-01', 0.00, '11:48 AM', '', '1970-01-01', '2', 'looking for data entry ..not fit for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 10:44:42', 50, '2020-09-30 01:34:12', 0, NULL, 1),
(745, 'F.UMAR FAROOK', '4', '9087468459', '', 'Farooku05@gmail.com', '2000-03-12', 20, '1', '2', 'FAIZAL RAHMAN K', 'Business', 15000.00, 1, 0.00, 10000.00, 'No-9 d-block ice house', 'Triplicane, chennai', '2009300003', '', '1', 'upload_files/candidate_tracker/52711045092_umar new resume.pdf', NULL, NULL, '2020-09-30', 0, '5618', '3', '8', '1970-01-01', 10000.00, '11:08 AM', '2', '2020-10-06', '1', '10K for Priyanka jenit', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 10:59:45', 7, '2020-10-06 01:10:43', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(746, 'Thameem Ansari', '6', '9080766240', '9941255270', 'ansarithameem004@gmail.com', '1999-04-03', 21, '1', '2', 'Rahim', 'Police', 30000.00, 2, 0.00, 10000.00, 'D-9 ice house Police quarters,Dr.besant road', 'D-9 ice house Police quarters,Dr.besant road', '2009300004', '', '1', 'upload_files/candidate_tracker/19153111082_THAMEEM new resume.pdf', NULL, NULL, '2020-09-30', 0, '5618', '5', '15', '1970-01-01', 0.00, '11:07 AM', '', '1970-01-01', '1', 'he will not sustain', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 10:59:49', 8, '2020-09-30 12:31:31', 0, NULL, 1),
(747, 'dhilip anand', '11', '9790782841', '8610755794', 'dhilip.kkb@gmail.com', '1987-10-24', 32, '2', '1', 'k k baratharajan', 'business', 1500000.00, 1, 750000.00, 1000000.00, 'chennai', 'chennai', '2009300005', '1', '2', 'upload_files/candidate_tracker/49046420116_CV-Dhilip Payroll Lead.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '53', NULL, 0.00, '02:33 PM', '0', NULL, '1', 'Good n communication, hvng knowledge in all fields, he s suitable for hr but expected high salary around 60k', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 11:29:29', 1, '2020-09-30 11:34:07', 0, NULL, 1),
(748, 'Bharathi', '4', '7299002052', '9840883075', 'bharathis.dec06@gmail.com', '1994-12-06', 25, '2', '2', 'Shankar', 'Cooli', 12000.00, 2, 15200.00, 18000.00, 'Kattupakkam, poonamalle', 'Kattupakkamm , poonamalle', '2009300006', '1', '2', 'upload_files/candidate_tracker/75329249991_Bharathi Resume final 4.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '14', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'Expecting high salary and long distance ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 11:33:39', 50, '2020-10-03 10:32:25', 0, NULL, 1),
(749, 'Nirmala devi', '4', '8870059808', '8428877753', 'Sainimi1711@gmail.com', '1994-09-11', 26, '2', '2', 'Srinivasan', 'Driver', 15000.00, 1, 15100.00, 18000.00, 'Urapakkam , chennai', 'Urapakkam , chennai', '2009300007', '1', '2', 'upload_files/candidate_tracker/53215037779_45056.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'ok but expected salary high', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 11:33:52', 50, '2020-10-03 10:32:35', 0, NULL, 1),
(750, '', '0', '8344413494', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 11:41:18', 0, NULL, 0, NULL, 1),
(751, 'Praveen S', '6', '8825979893', '', 'praveensebastin16@gmail.com', '1999-09-16', 21, '2', '2', 'Sebastian Raj S', 'Business', 40000.00, 1, 0.00, 2.40, 'No:771,15th Street,sastri nagar, Chennai-39', 'No:771,15th Street,Sastri Nagar, Chennai-39', '2009300009', '1', '1', 'upload_files/candidate_tracker/24291036473_praveen resume updated-converted.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '19', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'sustainability zero', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 11:45:13', 8, '2020-09-30 01:41:35', 0, NULL, 1),
(752, 'K.Anusuya', '4', '7358672990', '8925601614', 'Anusuyakarnan99@gmail.com', '1999-08-15', 21, '2', '2', 'S.Karnan', 'Collie', 75000.00, 1, 0.00, 12000.00, 'Chennai', 'Saidapet', '2009300010', '1', '1', 'upload_files/candidate_tracker/25816666757_1596100948108Resume_Anusuya.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '13', '1970-01-01', 0.00, '12:24 PM', '', '1970-01-01', '2', 'not suitable for tele sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:05:36', 50, '2020-09-30 01:09:00', 0, NULL, 1),
(753, 'Ranjitha.V', '4', '7305341149', '7338916381', 'Vranjitha96@gmail.com', '1996-05-30', 24, '2', '2', 'Veeramani.S', 'Driver', 15000.00, 2, 0.00, 11000.00, 'Velachery', 'Velachery', '2009300011', '1', '1', 'upload_files/candidate_tracker/39008928671_RANJITHA RESUME.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '13', '1970-01-01', 0.00, '12:29 PM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:06:31', 50, '2020-09-30 12:40:03', 0, NULL, 1),
(754, '', '0', '9025245364', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 12:13:05', 0, NULL, 0, NULL, 1),
(755, 'M. Bhavani', '4', '6382032241', '8056250225', 'bm1861688@gmail.com', '1999-10-19', 20, '2', '2', 'Murugan', 'No', 8000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai saidapet', '2009300013', '1', '1', 'upload_files/candidate_tracker/69585679903_new resume.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '14', '1970-01-01', 0.00, '12:25 PM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:19:19', 8, '2020-09-30 01:07:01', 0, NULL, 1),
(756, 'Geetha.s', '11', '9942106253', '9566538085', 'sgeethanpr95@gmail.com', '1995-08-02', 25, '2', '1', 'Sasikumar', 'Software engineer', 41000.00, 1, 14000.00, 20000.00, 'Chennai', 'Chennai', '2009300014', '1', '2', 'upload_files/candidate_tracker/70855947328_Geetha_Resume.docx', NULL, NULL, '2020-10-02', 30, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:22:10', 1, '2020-09-30 12:38:27', 0, NULL, 1),
(757, 'Devi prasanna P', '11', '8056167952', '9677285235', 'devigreen55@yahoo.com', '1983-07-05', 37, '2', '1', 'Prabaharan', 'Civil engineer', 20000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2009300015', '1', '2', 'upload_files/candidate_tracker/37717515176_DEVIPRASANNA....laks.doc', NULL, NULL, '2020-10-01', 20, '', '5', '8', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '2', 'will not suite for this profile', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:29:32', 52, '2020-12-14 10:34:30', 0, NULL, 1),
(758, 'Banu priya', '4', '9092948974', '8681874325', 'Priyavanam22@gmail.com', '1994-11-22', 25, '2', '2', 'Karuppiah', 'Own business', 25000.00, 2, 15100.00, 18000.00, 'Maduravoyal, chennai', 'Maduravoyal ,chennai', '2009300016', '1', '2', 'upload_files/candidate_tracker/66283084432_2020 banu.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '14', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'expecting high salary 18k to 20k not fit for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:40:30', 50, '2020-10-03 10:32:41', 0, NULL, 1),
(759, 'Nithishkumar S', '4', '9940681514', '', '', '2000-05-18', 20, '2', '2', 'Selvaraj P', 'Business', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009300017', '1', '1', 'upload_files/candidate_tracker/46690243292_snkumar resume.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'NOT SUITABLE FOR TELESALES', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:54:09', 50, '2020-10-01 09:31:54', 0, NULL, 1),
(760, 'Supraja MC', '11', '9742221931', '9900414944', 'supraja.eh@gmail.com', '1990-08-02', 30, '2', '1', 'Aravindhan R', 'Housewife', 50000.00, 1, 0.00, 4.00, 'Bangalore', 'Bangalore', '2009300018', '1', '1', 'upload_files/candidate_tracker/14755468526_IT Project Coordinator.pdf', NULL, NULL, '2020-10-01', 0, '', '6', '0', NULL, 0.00, '12:04 PM', '0', NULL, '1', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 01:02:22', 1, '2020-09-30 01:04:48', 0, NULL, 1),
(761, 'Renukadevi Muthukumar', '6', '9710966064', '7397386286', 'renukadevimsa@gmail.com', '1998-10-21', 21, '2', '2', 'Muthukumar', 'Chennai', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2009300019', '1', '1', 'upload_files/candidate_tracker/84132036484_Renukadevi.M RESUME.pdf', NULL, NULL, '2020-10-31', 0, '', '8', '', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 01:13:04', 7, '2020-10-31 04:11:44', 0, NULL, 1),
(762, '', '0', '6385845925', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 01:15:19', 0, NULL, 0, NULL, 1),
(763, 'Ishwarya Rajan', '11', '7708893583', '9791190065', 'Ishwaryarajan412@gmail.com', '1996-12-04', 23, '2', '2', 'Soundarajan (late)', 'Police', 20000.00, 1, 0.00, 20000.00, 'Tambaram', 'Tambaram', '2009300021', '1', '1', 'upload_files/candidate_tracker/79028649192_ISHWARYA S NEW CV-converted.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '8', NULL, 0.00, '02:30 PM', '0', NULL, '2', 'fresher exp is 18-20K. Avg communication, will not sustain.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 01:16:33', 1, '2020-09-30 01:28:48', 0, NULL, 1),
(764, 't dinesh', '4', '7305350515', '', '', '1985-10-16', 34, '2', '2', 'a thirumalai samy', 'death', 10000.00, 0, 10000.00, 12000.00, 'mylapore', 'mylapore', '2009300022', '1', '2', 'upload_files/candidate_tracker/19781591461_Dinesh SVM (1) (1).doc', NULL, NULL, '2020-09-30', 0, '', '5', '41', NULL, 0.00, '02:57 PM', '0', NULL, '2', 'Memory loss patient,We can not handle, 1985 born,But High job need', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 01:18:23', 1, '2020-09-30 01:58:06', 0, NULL, 1),
(765, 'ignacius nilofer', '11', '8056339519', '9952407696', 'j.ignacius95@gmail.com', '1995-04-19', 25, '2', '2', 'john ravi', 'business man', 200000.00, 2, 26808.00, 35000.00, 'chennai', 'madurai', '2009300023', '1', '2', 'upload_files/candidate_tracker/79893771373_J. IGNACIUS NILOFER.pdf', NULL, NULL, '2020-10-03', 30, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 01:49:42', 50, '2020-10-03 05:35:44', 0, NULL, 1),
(766, 'Vidhyalakshmi', '4', '9087709320', '', 'vlakshmivbca@gmail.com', '1996-01-03', 24, '2', '2', 'Vishnu', 'Tailor', 9000.00, 1, 0.00, 10000.00, 'Avadi', 'Avadi', '2009300024', '1', '1', 'upload_files/candidate_tracker/56744341205_Carreer Objective.docx', NULL, NULL, '2020-10-01', 0, '', '3', '8', '1970-01-01', 10000.00, '03:10 PM', '2', '1970-01-01', '2', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 02:09:01', 7, '2020-10-09 07:02:21', 0, NULL, 1),
(767, '', '0', '9940205169', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 02:32:28', 0, NULL, 0, NULL, 1),
(768, 'chandramouleeswaran', '4', '8248791352', '8939311318', 'srigupta12592@gmail.com', '1992-05-12', 28, '2', '2', 'kunjaram', '-', 15000.00, 1, 0.00, 10000.00, 'kodambakkam chennai', 'chennai', '2009300026', '1', '1', 'upload_files/candidate_tracker/17818239863_New Resume-1.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '41', '1970-01-01', 0.00, '02:49 PM', '', '1970-01-01', '2', 'will not sustain,will not suite for any profile with CAFS', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 02:45:00', 50, '2020-09-30 03:08:21', 0, NULL, 1),
(769, 'kiruthika j', '11', '8248376466', '7639657768', 'mcckirthika@gmail.com', '1996-03-16', 24, '2', '2', 'jayathevan sv', 'technicion', 50000.00, 1, 0.00, 15000.00, 'chennai', 'tambaram', '2009300027', '1', '1', 'upload_files/candidate_tracker/14059622882_kiruthika(W) resume PDF.pdf', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 02:55:15', 50, '2020-10-03 05:33:50', 0, NULL, 1),
(770, 'Manju Matha', '11', '8939292465', '', 'mmanjumatha@gmail.com', '1997-10-16', 22, '2', '2', 'Jaga Jothi', 'Driver', 20000.00, 1, 10000.00, 16000.00, 'Chennai', 'Chennai', '2009300028', '1', '2', 'upload_files/candidate_tracker/14971135185_Manju_Resume .pdf', NULL, NULL, '2020-10-03', 15, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 03:54:59', 50, '2020-10-03 05:33:59', 0, NULL, 1),
(771, '', '0', '9566078571', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 04:31:50', 0, NULL, 0, NULL, 1),
(772, 'Sushmitha subramani', '11', '9003216409', '9047415119', 'sushmisubramani@gmail.com', '1994-10-13', 25, '2', '2', 'Subramani', 'No more', 15000.00, 2, 30600.00, 32000.00, 'Chennai', 'Chennai', '2009300030', '1', '2', 'upload_files/candidate_tracker/66197568773_1601465850210_sumi resume.docx', NULL, NULL, '2020-10-05', 0, '', '5', '54', '1970-01-01', 0.00, '01:20 PM', '', '1970-01-01', '2', 'she is not Interested\n', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 05:03:06', 50, '2020-10-20 06:36:10', 0, NULL, 1),
(773, 'Sivaranjani Arumugam', '4', '9790148923', '6382063226', 'sivaranjanibeece987@gmail.com', '1995-04-27', 25, '2', '2', 'Anjalidevi', '-', 50000.00, 0, 17000.00, 18000.00, 'Thanjavur', 'saidapet', '2009300031', '1', '2', 'upload_files/candidate_tracker/72952571874_Sivaranjini resume.pdf', NULL, NULL, '2020-10-01', 0, '', '3', '8', '2020-10-08', 12000.00, '11:36 AM', '', '1970-01-01', '2', '12K fro muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 05:06:51', 7, '2020-10-07 06:19:20', 0, NULL, 1),
(774, '', '0', '8668142180', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 05:22:56', 0, NULL, 0, NULL, 1),
(775, '', '0', '8825708631', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 05:35:30', 0, NULL, 0, NULL, 1),
(776, 'mohamed mubarak', '11', '8220106069', '', 'mubarakhr96@yahoo.com', '1996-04-29', 24, '2', '1', 'peer mohamed', 'warden manager', 40000.00, 1, 24000.00, 29000.00, 'tirunelveli', 'triplicane chennai', '2009300034', '1', '2', 'upload_files/candidate_tracker/59864105506_Mohmed Mubarak HR resume.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '8', NULL, 0.00, '11:30 AM', '0', NULL, '1', 'Will Not Suite For Our Process. Will Not Sustain. Exp Sal Is 25K', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 05:44:37', 1, '2020-09-30 06:56:06', 0, NULL, 1),
(777, 'Ramkumar A', '11', '9566018029', '', 'ramashok2996@gmail.com', '1996-05-29', 24, '1', '2', 'Ashokkumaran R', 'Private Company employee', 40000.00, 0, 220000.00, 325000.00, 'Chennai', 'Chennai', '2009300035', '', '2', 'upload_files/candidate_tracker/70608586461_RAM ASHOK 1.pdf', NULL, NULL, '2020-10-03', 0, 'Cafs', '8', '', '1970-01-01', 0.00, '03:30 PM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 05:50:52', 50, '2020-10-03 05:34:10', 0, NULL, 1),
(778, 'meenakshi .d', '11', '8428647828', '9841248653', 'meenakshikrishna6598@gmail.com', '1998-05-06', 22, '2', '2', 'k. Devaraju', 'highways department', 96000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2009300036', '1', '1', 'upload_files/candidate_tracker/42420523042_meenakshi resume 2020.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '53', NULL, 0.00, '12:00 PM', '0', NULL, '2', 'gud communication, but hvng kid nd sick mother, she wants to go home early. ', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 05:52:34', 1, '2020-09-30 06:01:03', 0, NULL, 1),
(779, 'Anith.M', '11', '9942843958', '', 'anithgleaming23@gmail.com', '1996-03-23', 24, '2', '2', 'Marappan', 'Business', 50000.00, 1, 0.00, 200000.00, 'Namakkal', 'Namakkal', '2009300037', '1', '1', 'upload_files/candidate_tracker/32223305794_Resu.pdf', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 06:07:23', 50, '2020-10-03 05:34:21', 0, NULL, 1),
(780, '', '0', '9003253724', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300038', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 06:09:27', 0, NULL, 0, NULL, 1),
(781, 'Philomena Princy E', '11', '9566043413', '8438882799', 'phil.princy95@gmail.com', '1995-10-21', 24, '2', '2', 'Ebenezer Selvaraj P', 'Business', 60000.00, 1, 0.00, 18000.00, 'Maraimalai nagar', 'Maraimalai nagar', '2009300039', '1', '1', 'upload_files/candidate_tracker/79418736272_Resume - Philomena PrincyE.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '8', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'she will not join bcoz of salary split up', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 06:10:51', 1, '2020-09-30 06:18:42', 0, NULL, 1),
(782, 'Preethi J', '11', '8870529197', '9566362532', 'preethi.jsreddy@Gmail.com', '1997-11-25', 22, '1', '2', 'Jaishankar P', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2009300040', '', '1', 'upload_files/candidate_tracker/20478479578_Preethi JS - Resume.pdf', NULL, NULL, '2020-10-03', 0, 'CAFS', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 06:23:57', 50, '2020-10-03 05:34:32', 0, NULL, 1),
(783, 'Ajay avinash .G', '4', '8825804447', '8883168967', 'Ajayavinash9944@gmail.com', '1999-06-02', 21, '2', '2', 'Ganapathy .k', 'business', 50000.00, 0, 0.00, 15000.00, 'gokela hall street sivagangai', 'Srinivasan st.poonamali', '2009300041', '1', '1', 'upload_files/candidate_tracker/34502683418_Ajay resume.doc', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '12:59 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 06:54:41', 1, '2020-10-01 02:19:02', 0, NULL, 1),
(784, 'pappitha', '4', '9047988628', '', 'pappirj28@gmail.com', '1998-09-28', 23, '2', '1', 'murugan', 'cooli', 15000.00, 0, 12000.00, 13000.00, 'chennai', 'chennai', '2009300042', '2', '2', 'upload_files/candidate_tracker/61332728579_PAPPITHA CV RESUME_pappitha.docx', NULL, '1', '2022-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-09-30 09:55:43', 1, '2022-03-22 05:17:37', 0, NULL, 1),
(785, 'Meenushri', '11', '9566115762', '', '', '1994-10-26', 25, '2', '2', 'P.G Pani Shanlar', 'business', 3000000.00, 1, 233000.00, 290000.00, 'Chennai', 'chennai', '2010010001', '1', '2', 'upload_files/candidate_tracker/25565392000_Meenushri - Junior Hr Executive.pdf', NULL, NULL, '2020-10-05', 0, '', '5', '53', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '1', 'she s not for HR rec, exp high salary', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 12:17:55', 50, '2020-10-05 12:43:29', 0, NULL, 1),
(786, 'Thangarasu', '4', '9940814547', '', 'thangaraj12gt@gmail.com', '1998-05-17', 22, '2', '2', 'Elumalai', 'Porur', 8000.00, 1, 17000.00, 24000.00, 'Tiruvannamalai', 'Porur', '2010010002', '1', '2', 'upload_files/candidate_tracker/17596724557_MY RESUME.pdf', NULL, NULL, '2020-10-01', 15, '', '5', '14', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'not suitable for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 09:02:38', 50, '2020-10-01 10:47:28', 0, NULL, 1),
(787, 'SATISH KUMAR .p', '6', '9176141294', '9176412125', 'sathishsmarter0105@gmail.com', '2000-10-01', 20, '1', '2', 'PRABAKARAN TS', 'DRIVER', 20000.00, 1, 0.00, 15000.00, 'Kundrathur', 'Kundrathur', '2010010003', '', '1', 'upload_files/candidate_tracker/29109433357_SATZ (1).pdf', NULL, NULL, '2020-10-01', 0, '5174', '3', '8', '2020-10-05', 13000.00, '10:30 AM', '6', '2021-03-26', '1', '13K for Thiyagu team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 09:53:10', 7, '2020-10-06 12:46:05', 0, NULL, 1),
(788, 'Jaculinjesika', '5', '8124650029', '8681052529', 'jesi1994lingaa@gmail.com', '1994-10-09', 25, '2', '2', 'Sivalingam', 'expired', 10000.00, 1, 23000.00, 25000.00, 'No 415 a adhiyaman street, Cheyyar', 'no 1 jasper apartment Gayathri nagar Sembakkam', '2010010004', '3', '2', 'upload_files/candidate_tracker/82853311924_JaculinJesika_Six_Years_Experience _Resume.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '44', NULL, 0.00, '10:23 AM', '0', NULL, '2', 'She is not fit for our company', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:16:42', 1, '2020-10-01 10:28:50', 0, NULL, 1),
(789, 'S.shyamala', '4', '6374505041', '7604829354', 'keerthiselv898@gmail.com', '2000-07-02', 20, '2', '2', 'M. Shanmugam', 'Painter', 15000.00, 1, 0.00, 10000.00, 'T.nagar', 'T.nagar', '2010010005', '2', '1', 'upload_files/candidate_tracker/13528352028_resume shyamala new format.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '13', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'Communication skills  ok but  Sustainability	is low', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:22:43', 1, '2020-10-01 10:48:25', 0, NULL, 1),
(790, 'JR. PREMALATHA', '4', '9551678069', '9908428661', 'Premlatha1309@gmail.com', '1999-09-13', 21, '2', '2', 'J. RAJAIAH', 'Handicapped', 8000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2010010006', '1', '1', 'upload_files/candidate_tracker/39505873772_Resume(2020) .docx', NULL, NULL, '2020-10-01', 0, '', '5', '13', '1970-01-01', 0.00, '10:37 AM', '', '1970-01-01', '2', 'Confidence Level	very low so not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 10:29:29', 50, '2020-10-01 10:51:37', 0, NULL, 1),
(791, 'S. MANICKAM', '4', '7904493035', '', 'manickam02072000@gmail.com', '1999-10-06', 20, '2', '2', 'MCR SAKTHIVELUH', 'Light Man', 1.00, 2, 0.00, 12000.00, 'No 86, SEERANI PURAM, KODAMBAKKAM HIGH ROAD,', 'No 86, SEERANI PURAM, KODAMBAKKAM HIGH ROAD', '2010010007', '2', '1', 'upload_files/candidate_tracker/34328810539_Manickam Resume.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '14', NULL, 0.00, '11:30 AM', '0', NULL, '1', 'not fit for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:30:28', 1, '2020-10-01 10:49:54', 0, NULL, 1),
(792, '', '0', '9176141394', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:31:17', 0, NULL, 0, NULL, 1),
(793, 'SUDHAKAR S', '4', '9080348076', '7339200338', 'viratsudha3@gmail.com', '2000-09-26', 20, '1', '2', 'SELVARAJ S', 'Farmer', 15000.00, 2, 0.00, 12000.00, 'Senthamiz Nagar,5th Street,Kottaimedu, Tindivanam', 'Senthamiz Nagar,5th Street Kottaimedu, Tindivanam', '2010010009', '', '1', 'upload_files/candidate_tracker/41602687495_dresume.doc', NULL, NULL, '2020-10-01', 0, 'Ajay', '5', '14', '1970-01-01', 0.00, '10:50 AM', '', '1970-01-01', '1', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:32:28', 50, '2020-10-01 11:35:50', 0, NULL, 1),
(794, 'Uthayakumar.s', '4', '7904467115', '8870609351', 'Uthayakohli18@gmail.com', '2000-01-05', 20, '1', '2', 'Sekar.p', 'Farmar', 12000.00, 2, 0.00, 15000.00, '434,palla street,kottikuppam', '434,Palla Street,Kottikuppam', '2010010010', '', '1', 'upload_files/candidate_tracker/85244261069_UGGG Resume.pdf', NULL, NULL, '2020-10-01', 0, 'Ajay', '5', '13', NULL, 0.00, '11:38 AM', '0', NULL, '1', 'Convincing Skills	very poor so not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:34:03', 1, '2020-10-01 11:38:55', 0, NULL, 1),
(795, 'Thiruselvi', '4', '6382759347', '', 'Thiruselvip3@gmail.com', '1995-04-19', 25, '2', '2', 'Paulmurugan. P', 'Conductor', 25000.00, 0, 0.00, 14000.00, 'Madurai', 'Poonthamalle', '2010010011', '1', '1', 'upload_files/candidate_tracker/14229551560_RESUME THIRUSELVI 5.docx', NULL, NULL, '2020-10-07', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 10:34:10', 50, '2020-10-07 06:37:48', 0, NULL, 1),
(796, 'n.buvanesree', '4', '7401350406', '9551001569', 'buvanesree@gmail.com', '2000-01-26', 20, '2', '2', 'm.nandakumar', 'owns shop', 10000.00, 1, 0.00, 15000.00, 'visaga thottam west saidapet', 'Visaga Thottam West Saidapet', '2010010012', '1', '1', 'upload_files/candidate_tracker/57404829172_resume.pdf.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '14', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'looking for data entry', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 10:36:30', 50, '2020-10-03 11:28:58', 0, NULL, 1),
(797, 'A.veeramuthu', '4', '8220105314', '9025514660', 'hardikveera07@gmail.com', '2000-08-23', 20, '1', '2', 'G.Ayyanar', 'Farmar', 15000.00, 2, 0.00, 12000.00, '156 nelliyamman Kovil street T.nallalam', '156 nelliyamman Kovil street T.nallalam', '2010010013', '', '1', 'upload_files/candidate_tracker/2988261640_Veeramutuh Resume.docx', NULL, NULL, '2020-10-01', 0, 'Ajay', '5', '13', NULL, 0.00, '11:03 AM', '0', NULL, '1', 'Communication  xxamp Confidence Level	 Very Low So Not Suitable For This Field', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:39:05', 1, '2020-10-01 11:03:54', 0, NULL, 1),
(798, 'VIGNESH.E', '4', '6380099684', '7010988599', 'vignesh.ealumalai307@gmail.com', '1999-04-14', 21, '1', '2', 'ELUMALAI.G', 'FARMER', 15000.00, 1, 0.00, 12000.00, '230/4,mettu Street,Vadanerkunam Post,marakkanam tk', '230/4,Mettu Street,Vadanerkunam Post,Marakkanam Tk', '2010010014', '', '1', 'upload_files/candidate_tracker/55212933026_VICKY RESUME.......docx', NULL, NULL, '2020-10-01', 0, 'Ajay', '5', '14', '1970-01-01', 0.00, '10:50 AM', '', '1970-01-01', '1', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:39:10', 50, '2020-10-01 11:11:36', 0, NULL, 1),
(799, 'Tamil selvan', '4', '9360676849', '9943634355', 'Tamilafro8@gmail.com', '1995-02-21', 25, '2', '2', '21 021995', 'Driver', 300000.00, 2, 0.00, 15000.00, 'Coimbatore', 'Tambaram', '2010010015', '1', '1', 'upload_files/candidate_tracker/57819867845_CV_2020-09-30-115509.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Communication xxamp Observation Skills	very poor so nalesot suitable for this telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 10:45:06', 50, '2020-10-01 03:19:19', 0, NULL, 1),
(800, 'Demetrius Abu', '11', '7868877453', '', 'dtsabu@gmail.com', '1990-11-06', 29, '2', '1', 'vetrivel', 'business', 50.00, 0, 4.20, 5.50, 'rajapalayam', 'chennai', '2010010016', '1', '2', 'upload_files/candidate_tracker/72181754660_Demetrius Profile!.docx', NULL, NULL, '2020-10-03', 20, '', '5', '54', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'He Dont know about HRMS and will not Listen. keep on telling same. will not Sustain longtime. ', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 10:52:23', 1, '2020-10-01 11:18:04', 0, NULL, 1),
(801, 'Imran', '4', '8015432874', '', 'jimran77777@gmail.com', '1992-06-19', 28, '2', '2', 'M.jalal', 'Retd central government employee', 16000.00, 1, 15000.00, 16000.00, 'Dharmapuri', 'T.nagar', '2010010017', '1', '2', 'upload_files/candidate_tracker/13931817571_Document (1).docx', NULL, NULL, '2020-10-01', 0, '', '5', '14', '1970-01-01', 0.00, '10:55 AM', '', '1970-01-01', '2', 'not  interested to this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 10:52:59', 50, '2020-10-01 12:37:11', 0, NULL, 1),
(802, 'D. Shobana', '4', '7010398095', '7010623238', 'shobanarukmani65@gmail.com', '1999-08-28', 21, '2', '2', 'R dhananchezyan', 'Tailor', 80000.00, 2, 0.00, 14000.00, 'No4 Roja street kilambakkam vandalur', 'Vandalur', '2010010018', '1', '1', 'upload_files/candidate_tracker/93456041179_shobana resume 08.docx', NULL, NULL, '2020-10-03', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 11:03:14', 50, '2020-10-03 11:07:21', 0, NULL, 1),
(803, 'Jayabharath', '5', '9940530059', '6380226627', 'jayabharath.k555@gmail.com', '1983-07-03', 37, '2', '1', 'Arshiya', 'Nil', 25000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2010010019', '3', '2', 'upload_files/candidate_tracker/962031503_Resume jayabharath-1.docx', NULL, NULL, '2020-10-01', 0, '', '6', '0', NULL, 0.00, '11:31 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 11:05:16', 1, '2020-10-01 11:35:27', 0, NULL, 1),
(804, '', '0', '8248651691', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 12:13:05', 0, NULL, 0, NULL, 1),
(805, 'ARUN PANDIYAN R', '4', '8489990813', '8110880082', 'arunkrish811088@gmail.com', '1997-01-01', 23, '2', '2', 'RAVICHANDRAN R', 'DRIVER', 18000.00, 1, 0.00, 15000.00, 'COLONY STREET,THIRUMALNATHAM,MADURAI.', ',SRINIVASAN NAGAR,POONAMALLEE.', '2010010021', '1', '1', 'upload_files/candidate_tracker/39081637152_Arunpandiyan-Resume.docx', NULL, NULL, '2020-10-01', 0, '', '5', '14', '1970-01-01', 0.00, '01:09 PM', '', '1970-01-01', '2', 'not fit for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 12:23:48', 50, '2020-10-01 01:27:24', 0, NULL, 1),
(806, 'Monisha. B', '4', '8610935045', '9840443838', 'monishaboddapati17@gmail.com', '1999-07-17', 21, '2', '2', 'Suneel. b', 'Accountant', 25000.00, 1, 0.00, 15000.00, 'Mylapore', 'Mylapore', '2010010022', '1', '1', 'upload_files/candidate_tracker/53057399362_Monisha.B resume.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '14', '1970-01-01', 0.00, '01:30 PM', '', '1970-01-01', '2', 'not interested to this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 12:40:05', 50, '2020-10-01 12:56:36', 0, NULL, 1),
(807, '', '0', '9611288227', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 12:40:25', 0, NULL, 0, NULL, 1),
(808, 'Shivani Upadhyay', '11', '9644870811', '', '', '1994-12-04', 25, '2', '2', 'S.c. Upadhyay', 'Govt.job', 90000.00, 1, 22000.00, 28000.00, 'Gwalior', 'Gwalior', '2010010024', '1', '2', 'upload_files/candidate_tracker/2351614100_shivani+resume.doc', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '02:07 PM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 01:05:06', 50, '2020-10-03 05:34:52', 0, NULL, 1),
(809, '', '0', '9884267828', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 01:11:13', 0, NULL, 0, NULL, 1),
(810, 'Arun Kumar b', '5', '9176040420', '9789027620', 'arunlesnar@gmail.com', '1991-05-30', 29, '2', '2', 'Balaraman', 'Banking sales', 85000.00, 2, 70000.00, 40000.00, 'Chennai', 'Chennai', '2010010026', '3', '2', 'upload_files/candidate_tracker/45580437178_0_Arun uae resume (1).pdf', NULL, NULL, '2020-10-01', 0, '', '5', '33', NULL, 0.00, '02:30 PM', '0', NULL, '1', 'not fit for rm and sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 01:25:38', 1, '2020-10-01 01:36:32', 0, NULL, 1),
(811, 'Gayathri.M', '4', '9941858260', '9500094612', 'gayathri081197@gmail.com', '1997-11-08', 22, '1', '2', 'Meiyazhagan.G', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010010027', '', '1', 'upload_files/candidate_tracker/9286550981_Gayu resume.docx', NULL, NULL, '2020-10-01', 0, 'stage vu', '5', '41', '1970-01-01', 0.00, '01:36 PM', '', '1970-01-01', '2', 'Will Not Sustain Looking For Job To Pay Her Govt Exam Coaching Fee', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 01:31:06', 50, '2020-10-01 03:19:40', 0, NULL, 1),
(812, 'Bhuvaneswari B', '4', '9445819480', '9087289318', 'bhuvaneswari991105@gmail.com', '1999-11-05', 20, '1', '2', 'Babu R', 'Driver', 15000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2010010028', '', '1', 'upload_files/candidate_tracker/99545892083_BHUVANA RESUME.docx', NULL, NULL, '2020-10-01', 0, 'stage vu', '5', '41', '1970-01-01', 0.00, '01:35 PM', '', '1970-01-01', '2', 'Will not sustain,Preparing for Govt job to pay for the coaching center looking for job', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 01:31:27', 50, '2020-10-01 02:52:28', 0, NULL, 1),
(813, '', '0', '9176873101', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 01:36:58', 0, NULL, 0, NULL, 1),
(814, 'G. Pooja', '4', '9080824006', '', '', '1999-11-10', 20, '2', '2', 'P. Gopi', 'Archakar', 90000.00, 1, 0.00, 10000.00, 'Teynampet', 'Teynampet', '2010010030', '2', '1', 'upload_files/candidate_tracker/24649216677_80338468996_Resume_.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'Pressure Handling low so not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 01:37:46', 1, '2020-10-03 08:22:37', 0, NULL, 1),
(815, 'D ABISHEK EZEKIAL RAJ', '4', '9150148608', '', 'dabishek2000@gmail.com', '2000-05-28', 20, '2', '2', 'DAVID RAJ M', 'Auto driver', 20000.00, 1, 0.00, 15000.00, 'Anna nagar', 'Anna nagar', '2010010031', '1', '1', 'upload_files/candidate_tracker/45500258692_Abishek resume.pdf', NULL, NULL, '2020-10-01', 0, '', '3', '8', '2020-10-08', 10500.00, '01:51 PM', '', '1970-01-01', '1', '10.5K for priyanka team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 01:46:52', 50, '2020-10-01 03:19:50', 0, NULL, 1),
(816, 'Daisy Rani', '4', '9952911743', '', 'daisypeter12@gmail.com', '1996-09-12', 24, '2', '2', 'Peter lawrance', 'Tailor', 10000.00, 1, 16000.00, 18000.00, 'No.405/B,7th street, sastri nagar, perambur', 'No.405/B,7th Street, Sastri Nagar, Perambur', '2010010032', '1', '2', 'upload_files/candidate_tracker/21934968778_2020 daisy', NULL, NULL, '2020-10-03', 15, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 01:51:22', 50, '2020-10-03 05:35:01', 0, NULL, 1),
(817, '', '0', '8110880082', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 02:01:56', 0, NULL, 0, NULL, 1),
(818, 'Deepak kumar', '4', '6382155310', '9710042707', 'deepu42707@gmail.com', '2000-01-02', 20, '2', '2', 'K.Gopu rao', 'Tailor', 10000.00, 0, 0.00, 13000.00, 'Villivakkam', 'Villivakkam', '2010010034', '1', '1', 'upload_files/candidate_tracker/99084331788_Deepak resume new.docx', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 02:11:05', 50, '2020-10-03 05:35:11', 0, NULL, 1),
(819, 'ramya s', '4', '7871209948', '', 'karisbanu19@gmail.com', '1998-10-19', 21, '2', '2', 'shanmugam k', 'electrician', 10000.00, 2, 0.00, 12000.00, 'selaiyur e tambaram', 'selaiyur e tambaram', '2010010035', '1', '1', 'upload_files/candidate_tracker/59974476417_S.docx', NULL, NULL, '2020-10-03', 0, '', '5', '13', '1970-01-01', 0.00, '11:40 AM', '', '1970-01-01', '2', 'Sustainability	low so not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 02:16:00', 50, '2020-10-03 11:46:28', 0, NULL, 1),
(820, 'SELLAPPA', '4', '9791775201', '8248963282', 'Sellappas01@gmail.com', '1994-07-28', 26, '2', '2', 'SUPPAIYAN', 'Farmers', 15000.00, 1, 15000.00, 15000.00, 'Kumbakonam', 'Chennai', '2010010036', '1', '2', 'upload_files/candidate_tracker/88697887617_new resume_01-Nov-18_23-09-11.docx', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 02:35:46', 50, '2020-10-03 04:23:27', 0, NULL, 1),
(821, 'Suganya', '11', '9566434878', '9884109392', 'rocking.sugan@gmail.com', '1992-03-08', 28, '2', '1', 'Ashwath Kumar', 'Salaried', 1000000.00, 0, 240000.00, 350000.00, 'Chennai', 'Chennai', '2010010037', '1', '2', 'upload_files/candidate_tracker/9063526455_SUGANYA S-1.pdf', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '10:15 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 03:01:06', 50, '2020-10-06 09:42:28', 0, NULL, 1),
(822, 'c.manikandan', '17', '9789957092', '', 'manichandru24@gmail.com', '1990-03-07', 30, '2', '1', 'n.chandran', 'auto driver', 432000.00, 2, 36000.00, 40000.00, 'chennai', 'chennai', '2010010038', '12', '2', 'upload_files/candidate_tracker/45390819371_manichandru24.docx', NULL, NULL, '2020-10-01', 0, '', '5', '36', '1970-01-01', 0.00, '03:24 PM', '', '1970-01-01', '1', 'Not fit for rM', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 03:18:28', 7, '2020-10-06 12:08:23', 0, NULL, 1),
(823, '', '0', '9108937310', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010039', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 04:20:49', 0, NULL, 0, NULL, 1),
(824, 'Ravichandran. P', '4', '9344586716', '9688403138', 'Mgravichandran. 2033@gmail.com', '1990-02-15', 30, '2', '2', 'Palanivel. S', 'Coolie', 50000.00, 0, 0.00, 20000.00, 'Poonamalle', 'Poonamalle', '2010010040', '1', '1', 'upload_files/candidate_tracker/25479560879_Ravichandran.docx', NULL, NULL, '2020-10-05', 0, '', '5', '21', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'not sustain long , 2015 passed out he dont have exper in voice @ other field also ... not fit for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 04:43:56', 50, '2020-10-05 09:52:30', 0, NULL, 1),
(825, 'likitha mungara', '11', '9381588195', '', 'likitha.likkhi@gmail.com', '1996-01-28', 24, '1', '2', 'bhaskar rao', 'business', 50000.00, 1, 0.00, 17000.00, 'Chennai', 'chennai', '2010010041', '', '2', 'upload_files/candidate_tracker/95337018595_Mungara Likitha.docx', NULL, NULL, '2020-10-03', 0, '174', '5', '8', NULL, 0.00, '12:10 PM', '0', NULL, '2', 'will  not Sustain native is AP. salary exp is high. ', '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 06:23:19', 1, '2020-10-03 12:14:39', 0, NULL, 1),
(826, '', '0', '8939124265', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010042', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:46:33', 0, NULL, 0, NULL, 1),
(827, 'Vidhyabharathi .K', '11', '9952925559', '9840872946', 'Vidhyabharathik1995@gmail.com', '1995-08-19', 25, '2', '2', 'Kumar .T', 'Teacher', 25000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2010020001', '1', '2', 'upload_files/candidate_tracker/92501915251_VIDHU.docx', NULL, NULL, '2020-10-05', 0, '', '5', '53', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'Exp high sal, dnt knw use portal also', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 08:52:03', 1, '2020-10-05 12:26:54', 0, NULL, 1),
(828, 'Ranjitha j', '5', '8015414984', '7448574243', 'ranjithajayavel4@gmail.com', '1998-08-27', 22, '2', '2', 'Jayavel L', 'Carpenter', 25000.00, 2, 18000.00, 20000.00, 'Tambaram sanatorium', 'Tambaram sanatorium', '2010020002', '3', '2', 'upload_files/candidate_tracker/71146215663_Ranjitha Resume 1.pdf', NULL, NULL, '2020-10-02', 0, '', '5', '8', NULL, 0.00, '12:25 PM', '0', NULL, '1', 'will not suite for sales and calling to. her voice is not bold and she will not sustain and her exp sal is 18+.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-02 11:54:26', 1, '2020-10-02 12:25:29', 0, NULL, 1),
(829, 'Balaji. P', '13', '8248261931', '9524297012', 'balajipugazhendhi7@gmail.com', '1998-06-16', 22, '2', '2', 'V. Pugazhendhi', 'Business', 30000.00, 1, 10000.00, 15000.00, 'Madhuranthakam', 'Chennai', '2010020003', '1', '2', 'upload_files/candidate_tracker/27989956602_updated resume aug21.docx', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 01:08:04', 50, '2020-10-06 09:42:37', 0, NULL, 1),
(830, 'Hari Sankar K', '13', '7200575573', '6374042070', 'harisankar1028krish@gmail.com', '1999-12-10', 20, '2', '2', 'Krishnan s', 'Late', 3500.00, 0, 0.00, 20000.00, 'Tenkasi', 'Tenkasi', '2010020004', '1', '1', 'upload_files/candidate_tracker/22538977531_Hari.pdf', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 01:36:52', 50, '2020-10-06 09:42:47', 0, NULL, 1),
(831, 'venkateswaran', '11', '9750949777', '9750331563', 'venkates1929@gmail.com', '1989-06-19', 31, '2', '2', 'Arumugam', 'retired employee', 25000.00, 1, 30000.00, 35000.00, 'tenkasi', 'maduravoyal', '2010020005', '4', '2', 'upload_files/candidate_tracker/55948449510_Venkat updated.docx', NULL, NULL, '2020-10-02', 20, '', '5', '53', NULL, 0.00, '02:40 PM', '0', NULL, '2', 'dnt hve relevant exp', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-02 01:39:11', 1, '2020-10-02 01:45:39', 0, NULL, 1),
(832, '', '0', '9629223676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010020006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-02 01:39:52', 0, NULL, 0, NULL, 1),
(833, 'muppudathi', '11', '9629443676', '8124999309', 'sureshaadhi1@gmail.com', '1990-05-20', 30, '2', '2', 'veeraputhiran', 'farmer', 20000.00, 1, 20000.00, 25000.00, 'tenkasi', 'chennai', '2010020007', '4', '2', 'upload_files/candidate_tracker/19437270499_1.2.19.docx', NULL, NULL, '2020-10-02', 15, '', '5', '53', NULL, 0.00, '02:45 PM', '0', NULL, '1', 'dnt hve exp in ths field. exp high sal', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-02 02:10:06', 1, '2020-10-02 02:12:48', 0, NULL, 1),
(834, '', '0', '9791190065', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010020008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-02 02:23:18', 0, NULL, 0, NULL, 1),
(835, 'Kushagra Ankit', '13', '9798894705', '', 'kushagraankit05@gmail.com', '1997-11-30', 22, '2', '2', 'Amit Verma', 'Government service', 50000.00, 0, 0.00, 6.00, 'patna', 'patna', '2010020009', '1', '1', 'upload_files/candidate_tracker/23260297698_Kushagra Ankit - Resume (2).pdf', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 03:27:37', 50, '2020-10-03 05:35:24', 0, NULL, 1),
(836, 'JAYAPRAKASH K', '13', '9524233880', '', 'prakashjayajp08@gmail.com', '1998-04-06', 22, '2', '2', 'Kesavan M G', 'Weaver', 25000.00, 1, 0.00, 3.50, 'Tiruvannamalai', 'Tiruvannamalai', '2010020010', '1', '1', 'upload_files/candidate_tracker/843193315_My - Resume.docx', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '02:30 PM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 04:23:28', 50, '2020-10-06 09:42:55', 0, NULL, 1),
(837, 'Premkumar R', '13', '9789405520', '', '', '1998-02-14', 22, '2', '2', 'Rajendran D', 'Security', 150000.00, 1, 0.00, 15000.00, 'Vellore', 'Vellore', '2010020011', '1', '1', 'upload_files/candidate_tracker/26209993891_PREMKUMAR.pdf', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 06:31:41', 50, '2020-10-06 09:43:04', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(838, 'Sai Vignesh M', '13', '8072787387', '', 'sai3125.be@gmail.com', '1999-01-31', 21, '2', '2', 'Gowri Ambigai M', 'Agriculture', 200000.00, 2, 0.00, 18000.00, 'Chengalpattu', 'Chengalpattu', '2010020012', '1', '1', 'upload_files/candidate_tracker/82693037695_Sai Resume.pdf', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 07:58:29', 50, '2020-10-06 05:20:42', 0, NULL, 1),
(839, 'LOKESH B', '13', '8072234957', '7094680466', 'lokeshyadav28998@gmail.com', '1998-07-01', 22, '2', '2', 'Balaji k', 'Daily wages', 10000.00, 1, 0.00, 240000.00, 'Vellore', 'Vellore', '2010020013', '1', '1', 'upload_files/candidate_tracker/7820268780_LOKESHB (1).pdf', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 08:49:36', 50, '2020-10-06 09:43:13', 0, NULL, 1),
(840, 'G. Kavitha', '4', '9789939683', '7397462191', 'kavithasarvesh709@gmail.com', '1994-06-06', 26, '2', '2', 'G. Nagaiah', 'Security', 15000.00, 4, 16000.00, 16000.00, 'Saidapet', 'Saidapet', '2010020014', '2', '2', 'upload_files/candidate_tracker/44103660616_New Doc 2018-11-09 16.08.26.pdf', NULL, NULL, '2020-10-03', 2, '', '5', '13', NULL, 0.00, '01:05 PM', '0', NULL, '2', 'Confidence Level	 very low so not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-02 10:29:19', 1, '2020-10-03 01:26:54', 0, NULL, 1),
(841, '', '0', '8610433289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 12:07:42', 0, NULL, 0, NULL, 1),
(842, 'Sathesh Kumar', '13', '8190878480', '', 'unleashsathesh@gmail.com', '1990-05-20', 30, '2', '1', 'Jeevarekha', 'Working', 300000.00, 1, 0.00, 300000.00, 'Chennai', 'Dindigul', '2010030002', '1', '2', 'upload_files/candidate_tracker/52994286439_1600684929578_Sathesh (1).doc', NULL, NULL, '2020-11-02', 0, '', '8', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He is not attend the interview.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 07:06:01', 50, '2020-11-02 12:29:55', 0, NULL, 1),
(843, 'raj kumar', '6', '9043579764', '9176535424', 'rk.111.rk.007@gmail.com', '1997-05-02', 23, '2', '2', 'krishna moorthy', 'binder', 20000.00, 0, 0.00, 22000.00, 'chennai', 'Chennai', '2010030003', '3', '2', 'upload_files/candidate_tracker/84007929984_rajkumar 2.pdf', NULL, NULL, '2020-10-03', 0, '', '8', '8', NULL, 0.00, '11:20 AM', '0', NULL, '1', 'not attended', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 10:11:14', 1, '2020-10-03 11:25:39', 0, NULL, 1),
(844, 'm.dhinesh kannan', '6', '9787503214', '', 'dhineshkannan69329@gmail.com', '1998-04-12', 22, '1', '2', 'mangalasamy', 'farmer', 15000.00, 1, 12000.00, 15000.00, 'ramanathapuram', 'vadapalani', '2010030004', '', '2', 'upload_files/candidate_tracker/29800448126_DEENESH-1.doc', NULL, NULL, '2020-10-03', 1, '5581', '5', '24', '1970-01-01', 0.00, '11:05 AM', '', '1970-01-01', '1', 'not suitable for our profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 10:48:12', 50, '2020-10-03 12:09:58', 0, NULL, 1),
(845, 'Naresh kumar', '5', '9849566144', '', 'Naresh.eee11@gmail.com', '1989-07-14', 31, '2', '2', 'Baskarreddy', 'Worker', 700000.00, 0, 30000.00, 33000.00, 'Chennai', 'Ennore', '2010030005', '3', '2', 'upload_files/candidate_tracker/94149603624_0_NARESH KUMAR REDDY - Copy.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '29', NULL, 0.00, '10:54 AM', '0', NULL, '1', 'not selected', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 10:51:28', 1, '2020-10-03 10:58:51', 0, NULL, 1),
(846, 'ARTHI. V', '4', '9566048769', '7871252047', 'arthi030897@gmail.com', '1997-08-03', 23, '2', '2', 'Malar. V', 'Cooli', 12000.00, 2, 0.00, 12000.00, 'NO-43 Radhakrishna puram, R a puram, chennai-28', 'Adyar', '2010030006', '1', '1', 'upload_files/candidate_tracker/85048823982_IMG_20201003_115945_a.pdf', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 10:58:40', 50, '2020-10-06 09:43:31', 0, NULL, 1),
(847, 'Srinath s', '5', '8056172941', '9600163262', 'srinaths17101994@gmail.com', '1994-10-17', 25, '1', '1', 'Samuel', 'Driver', 35000.00, 1, 20000.00, 24000.00, '32/30 moovendhar 1st Street pallikaranai', '32/30 Moovendhar 1st Street Pallikaranai', '2010030007', '', '2', 'upload_files/candidate_tracker/28027447346_Srinath S Resume.pdf', NULL, NULL, '2020-10-03', 0, '5369', '3', '8', '2020-10-08', 21000.00, '11:01 AM', '', '1970-01-01', '1', '21K for  Sarath team', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 11:01:21', 7, '2020-10-03 06:56:16', 0, NULL, 1),
(848, '', '0', '8985583609', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 11:20:32', 0, NULL, 0, NULL, 1),
(849, '', '0', '9500202035', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 11:25:27', 0, NULL, 0, NULL, 1),
(850, 'Heena.K', '11', '7397408703', '9080269973', 'heenaraheja03@gmail.com', '1998-05-03', 22, '2', '2', 'Kanayala', '12th', 30000.00, 1, 0.00, 18000.00, 'Bhawan Villa No 59/ 25 V.S.V koil Street mylapore', 'Bhawan Villa No 59/ 25 V.S.V Koil Street Mylapore', '2010030010', '1', '1', 'upload_files/candidate_tracker/99295484801_Heena Resume.docx', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 11:28:50', 50, '2020-10-06 05:20:54', 0, NULL, 1),
(851, 'Kanthakumar', '5', '9884448098', '7010248957', 'kantha_kumar2@yahoo.co.in', '1981-01-18', 39, '2', '1', 'Dhanasekaran', 'Operation manager', 700000.00, 1, 60000.00, 1.00, 'Chennai', 'Chennai', '2010030011', '1', '2', 'upload_files/candidate_tracker/88139608047_kanthan resume 1 (1).doc (1) (5) (1) (1).pdf', NULL, NULL, '2020-10-03', 0, '', '5', '8', NULL, 0.00, '11:40 AM', '0', NULL, '1', 'not selected in BAxa', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 11:36:54', 1, '2020-10-03 11:59:14', 0, NULL, 1),
(852, 'EZRAPRAISE T', '6', '8778813556', '9941987058', 'ezrapraise3@gmail.com', '1992-04-14', 28, '2', '2', 'THEOPHILUS', 'Chicken shop', 20000.00, 1, 15000.00, 20000.00, 'Chennai', 'chennai', '2010030012', '1', '2', 'upload_files/candidate_tracker/41876820131_EZRA', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 11:54:49', 50, '2020-10-06 09:43:45', 0, NULL, 1),
(853, 'Priya.s', '4', '9884567100', '7094718129', 'sathishpriya1031@gmail.com', '1990-05-31', 30, '2', '1', 'Sathish Kumar', 'Assistant director', 20000.00, 1, 20000.00, 20000.00, 'Thiruverkadu,Chennai.', 'Thiruverkadu,Chennai.', '2010030013', '2', '2', 'upload_files/candidate_tracker/48450682912_CURRICULUM VITAE.docx', NULL, NULL, '2020-10-03', 0, '', '3', '8', '2020-10-05', 11000.00, '12:20 PM', '2', '1970-01-01', '1', '11K for Muthu team.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 12:05:26', 7, '2020-10-07 06:23:41', 0, NULL, 1),
(854, 'sakthikumaran.v', '4', '9710572426', '8056231300', 'sakthikumaran110@gmail.com', '1995-03-21', 25, '2', '2', 'vetrieswaran', 'security', 13500.00, 0, 14000.00, 18000.00, 'tondiarpet', 'tondiarpet', '2010030014', '2', '2', 'upload_files/candidate_tracker/90065531814_Sakthikumaran CV.docx', NULL, NULL, '2020-10-05', 7, '', '5', '14', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'not suitable for voice xxamp expecting high salary for crm', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 12:05:28', 1, '2020-10-04 12:09:31', 0, NULL, 1),
(855, '', '0', '9790091819', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 12:21:00', 0, NULL, 0, NULL, 1),
(856, '', '0', '7397543636', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 12:57:58', 0, NULL, 0, NULL, 1),
(857, '', '0', '8220828817', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 01:05:00', 0, NULL, 0, NULL, 1),
(858, 'T. Durgadevi', '4', '9094627973', '9940247684', 'durgatamil1998@gmail.com', '1998-10-28', 21, '2', '2', 'R. Tamilarsun', 'Building Contractor', 18000.00, 4, 15000.00, 16000.00, 'No.30 TVK - 1st, Kazhikundram, Taramani,Ch - 113', 'No.30 TVK - 1st, Kazhikundram, Taramani,Ch - 113', '2010030018', '1', '2', 'upload_files/candidate_tracker/92676171290_durga.doc', NULL, NULL, '2020-10-03', 0, '', '5', '14', '1970-01-01', 0.00, '01:38 PM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 01:09:09', 50, '2020-10-03 03:17:31', 0, NULL, 1),
(859, 'Gomathi m', '4', '9092887179', '8220641494', 'gomathim2597@gmail.com', '1997-05-25', 23, '1', '2', 'Mani', 'Society management', 20000.00, 2, 12000.00, 13000.00, 'Adambakkam', 'Adambakkam', '2010030019', '', '2', 'upload_files/candidate_tracker/33484054831_CSE 3 (2).pdf', NULL, NULL, '2020-10-03', 0, '5541', '5', '14', '1970-01-01', 0.00, '01:16 PM', '', '1970-01-01', '2', 'expecting high salary and not suitable for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 01:11:57', 50, '2020-10-03 01:35:07', 0, NULL, 1),
(860, 'Ramesh.R', '4', '6381178977', '7373463164', 'remoramesh558@gmail.com', '1999-11-09', 20, '2', '2', 'Rajendhiran.M', 'Farmer', 20000.00, 2, 10500.00, 12000.00, 'Kallakurichi', 'Chennai', '2010030020', '2', '2', 'upload_files/candidate_tracker/86877036112_rameshhhhh.pdf', NULL, NULL, '2020-10-05', 0, '', '3', '8', '2020-10-08', 10500.00, '10:40 AM', '0', NULL, '1', '10.5K for Muthu team', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 01:16:26', 1, '2020-10-05 12:41:40', 0, NULL, 1),
(861, 'Mamatha Rani', '4', '8095646826', '9066231113', 'mamatharanimamatha7@gmail.com', '1999-05-31', 21, '2', '2', 'Anil kumar', 'Builder', 20.00, 2, 0.00, 15.00, 'Ibbalur Sarjapur road Bangalore 560102', 'Ibbalur', '2010030021', '1', '1', 'upload_files/candidate_tracker/60901761682_mamatha resume.docx', NULL, NULL, '2020-10-03', 0, '', '3', '8', '2020-10-06', 11000.00, '02:30 PM', '3', '2020-10-07', '1', '11K for gowshick team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 01:26:03', 7, '2020-10-07 06:20:28', 0, NULL, 1),
(862, 'Snadhya.M', '4', '9620669757', '', 'sandhya.2016ammu@gmail.com', '1999-12-17', 20, '2', '2', 'Mallikarjun', 'Welder', 10.00, 1, 0.00, 15.00, 'Ibbalur Sarjapur road', 'Ibbalur', '2010030022', '1', '1', 'upload_files/candidate_tracker/74988886322_Sandhya resume.docx', NULL, NULL, '2020-10-03', 0, '', '3', '8', '2020-10-06', 11000.00, '02:30 PM', '3', '2020-10-07', '1', '11K for gowshick team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 01:27:44', 7, '2020-10-07 06:20:43', 0, NULL, 1),
(863, 'Arunkumar', '4', '7373463164', '9095422762', 'arunbca882@gmail.com', '1997-06-06', 23, '2', '2', 'Velumani', 'Farmer', 15000.00, 1, 11000.00, 14000.00, 'Thanjavur', 'Guindy', '2010030023', '2', '2', 'upload_files/candidate_tracker/57995724591_ARUNKUMAR resume-1.pdf', NULL, NULL, '2020-10-05', 1, '', '5', '13', NULL, 0.00, '01:55 PM', '0', NULL, '1', 'Confidence Level	low', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 01:50:28', 1, '2020-10-05 02:26:58', 0, NULL, 1),
(864, 'DANIEL S', '13', '8012254197', '8610147637', 'kewindaniel7@gmail.com', '1997-12-14', 22, '4', '2', 'Samuthira pandi', 'Daily wages', 30000.00, 4, 23000.00, 35000.00, 'Tirunelveli', 'Chennai', '2010030024', '', '2', 'upload_files/candidate_tracker/84628597316_Resume updated.pdf', NULL, NULL, '2020-10-07', 1, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 01:52:36', 50, '2020-10-07 06:37:58', 0, NULL, 1),
(865, 'Vijay.R', '4', '6382633933', '6381178977', 'vijay633933@gmail.com', '2001-08-01', 19, '2', '2', 'Raj.p', 'Farmer', 15000.00, 1, 0.00, 10000.00, 'Kallakurichi', 'Chennai', '2010030025', '2', '1', 'upload_files/candidate_tracker/34307802903_VIJAY RESUME.docx', NULL, NULL, '2020-10-05', 0, '', '5', '13', NULL, 0.00, '10:40 AM', '0', NULL, '2', 'not fit for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 01:53:53', 1, '2020-10-05 12:22:33', 0, NULL, 1),
(866, '', '0', '7358764789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 02:53:37', 0, NULL, 0, NULL, 1),
(867, '', '0', '7397243513', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 03:55:44', 0, NULL, 0, NULL, 1),
(868, '', '0', '9384654505', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 04:06:57', 0, NULL, 0, NULL, 1),
(869, 'srinithi.b', '4', '9514192030', '7810087517', 'nithisribalajie19@gmail.com', '2000-06-19', 20, '2', '2', 's.m balajie', 'student', 30000.00, 1, 0.00, 15000.00, 'chennai', 'nanganallur', '2010030029', '1', '1', 'upload_files/candidate_tracker/37423771237_srinithi resume.docx', NULL, NULL, '2020-10-05', 0, '', '5', '13', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'Communication skills very poor', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 04:22:15', 50, '2020-10-05 01:07:17', 0, NULL, 1),
(870, 'shijin', '13', '8848072457', '9746172208', 'shijinsubramanniam@gmail.com', '1997-07-30', 23, '3', '2', 'subramannian t', 'php developer', 20000.00, 2, 0.00, 15000.00, 'malappuram', 'malappuram', '2010030030', '', '1', 'upload_files/candidate_tracker/64884839071_shijinsubramanniam0 (1) (2).pdf', NULL, NULL, '2020-10-03', 0, '', '6', '0', NULL, 0.00, '05:00 PM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 05:41:59', 1, '2020-10-03 05:55:04', 0, NULL, 1),
(871, '', '0', '9092995515', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 07:12:56', 0, NULL, 0, NULL, 1),
(872, 'Mithun Kumar', '13', '6379978410', '8148539346', 'mithunesh11@gmail.com', '1998-06-01', 22, '3', '2', 'Balakrishnan', '-', 10000.00, 1, 0.00, 15000.00, 'Sivaganga', 'Chennai', '2010030032', '', '1', 'upload_files/candidate_tracker/87759796300_Updated - Resume (2).pdf', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 07:13:53', 50, '2020-10-06 05:28:46', 0, NULL, 1),
(873, 'Mithun Kumar', '13', '8148539346', '6379978410', 'mithunesh9628@gmail.com', '1998-06-01', 22, '4', '2', 'Balakrishnan', '-', 10000.00, 1, 0.00, 15000.00, 'Sivaganga', 'Chennai', '2010030033', '', '1', 'upload_files/candidate_tracker/92433242211_Updated - Resume (2).pdf', NULL, NULL, '2020-10-05', 0, '', '6', '', '1970-01-01', 0.00, '11:01 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 08:22:07', 1, '2020-10-10 01:25:59', 0, NULL, 1),
(874, 'Guru.s', '4', '9360663818', '6381178977', 'guruevr8@gmail.com', '1997-05-26', 23, '2', '2', 'Selvam.s', 'Farmer', 10000.00, 2, 10500.00, 13000.00, 'Mannargudi', 'Chennai', '2010040001', '2', '2', 'upload_files/candidate_tracker/97145681401_guru resume.pdf', NULL, NULL, '2020-10-05', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'Communication poor but expected salary', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-04 09:00:11', 1, '2020-10-05 02:24:44', 0, NULL, 1),
(875, 'naveenkumar a', '13', '8523989616', '', 'naveenarumugam143@gmail.com', '1999-03-07', 21, '3', '2', 'vennila a', 'daily wage worker', 6000.00, 3, 0.00, 15000.00, 'Salem', 'Salem', '2010040002', '', '1', 'upload_files/candidate_tracker/67884230866_Naveenkumar (Php).pdf', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '12:08 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-04 09:02:44', 50, '2020-10-06 05:27:43', 0, NULL, 1),
(876, 'M.Sakthi vel', '6', '8667665627', '8098522047', 'Sakthivel30798@gmail.com', '1998-07-30', 22, '2', '2', 'V.murugaiya', 'Guli', 8000.00, 2, 12000.00, 15000.00, 'Tirunelveli', 'Chennai', '2010040003', '1', '2', 'upload_files/candidate_tracker/91715388588_sakthivel resume (1).pdf', NULL, NULL, '2020-10-06', 0, '', '3', '8', '1970-01-01', 156000.00, '11:30 AM', '2', '1970-01-01', '2', '13K for Syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-04 05:46:33', 7, '2020-10-09 07:07:39', 0, NULL, 1),
(877, 'R. Ramkumar', '4', '9840783118', '9003827034', 'ramkumar.rc99@gmail.com', '1999-09-23', 21, '2', '2', 'J. Radhakrishnan', 'Labour', 8000.00, 1, 0.00, 15000.00, 'Guduvancherry', 'Guduvancherry', '2010050001', '2', '1', 'upload_files/candidate_tracker/78723300521_1601789787193_Resume-converted.docx', NULL, NULL, '2020-10-05', 0, '', '5', '13', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'Communication skills poor so not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 06:17:11', 1, '2020-10-05 06:40:05', 0, NULL, 1),
(878, 'Mohan Raman', '5', '9566238378', '9499929309', 'mraman10595@gmail.com', '1995-05-10', 25, '2', '2', 'Govindaraman V', 'Electrician', 20000.00, 1, 15500.00, 18000.00, 'Chennai', 'Chennai', '2010050002', '1', '2', 'upload_files/candidate_tracker/20420891298_CamScanner 10-05-2020 10.57.39-compressed.pdf', NULL, NULL, '2020-10-05', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not Suitable For  Calling Profile.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 09:37:49', 50, '2020-10-05 12:29:01', 0, NULL, 1),
(879, 'Kiran Kumar .Y', '4', '9962086542', '8248596840', 'kirankumarhmcs@gmail.com', '1993-12-03', 26, '2', '2', 'Venkata Ramana .Y', 'Nill', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010050003', '1', '1', 'upload_files/candidate_tracker/89902817910_kiran Resume.docx', NULL, NULL, '2020-10-05', 0, '', '5', '14', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'Expecting high salary and not fit for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 09:47:40', 50, '2020-10-06 09:45:44', 0, NULL, 1),
(880, 'Radhakrishnan', '13', '7868828611', '7339424731', 'RADHAKRISHNANSEEMAN610@GMAIL', '1998-05-15', 22, '2', '2', 'Seeman', 'Daily wages', 4000.00, 3, 0.00, 12000.00, 'Ariyalur', 'Chennai', '2010050004', '3', '1', 'upload_files/candidate_tracker/217027496_Radhakrishnan_resume(new).doc', NULL, NULL, '2020-10-05', 0, '', '5', '28', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'He Struggle In Basic Frontend Validation Jquery Or Javascript. Not coming next time interview Schedule time', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 09:53:17', 1, '2020-10-05 11:41:36', 0, NULL, 1),
(881, 'Karthick Raja', '5', '8220038934', '9043208118', 'gkr82200@gmail.com', '1994-01-08', 26, '2', '2', 'VASANTHA', 'Formar', 3.50, 0, 16000.00, 20000.00, 'Nilgiris', 'Velachari', '2010050005', '8', '2', 'upload_files/candidate_tracker/85669314071_Karthick raja resume.docx', NULL, NULL, '2020-10-05', 0, '', '5', '44', NULL, 0.00, '10:02 AM', '0', NULL, '1', 'He is not fit for a life sales ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 09:57:43', 1, '2020-10-05 10:03:08', 0, NULL, 1),
(882, 'Abinaya.s', '4', '8248202027', '', 'abinayasudhagar18@gmail.com', '1999-11-18', 20, '2', '2', 'Sudhagar.k', 'Pharmacist', 18000.00, 1, 0.00, 10000.00, 'Triplicane', 'Triplicane', '2010050006', '2', '1', 'upload_files/candidate_tracker/1157043819_resume_1591861589593.pdf', NULL, NULL, '2020-10-06', 0, '', '3', '8', '2020-10-08', 120000.00, '11:00 AM', '3', '2021-01-31', '2', '10K for Dhivya team.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 10:31:44', 7, '2020-10-22 05:50:13', 0, NULL, 1),
(883, 'sivakumar rs', '5', '8072342287', '', 'ksiva8294@gmail.com', '1994-07-10', 26, '2', '2', 'sakthivel r', 'retried', 20000.00, 4, 16130.00, 18000.00, 'avadi', 'avadi', '2010050007', '2', '2', 'upload_files/candidate_tracker/3003685106_CV_SIVAKUMAR RS.pdf', NULL, NULL, '2020-10-05', 0, '', '3', '8', '2020-10-12', 216000.00, '02:30 PM', '0', NULL, '1', '18K for lokesh team', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 10:41:46', 1, '2020-10-05 02:53:08', 0, NULL, 1),
(884, 'suja nanthini p', '4', '9487430544', '8778547987', 'sujananthini21@gmail.com', '1998-07-21', 22, '2', '2', 'panduregan', 'working', 20000.00, 1, 0.00, 11000.00, 'nagapattinam', 'tambaram', '2010050008', '2', '1', 'upload_files/candidate_tracker/35015023838_sujaresumeedited.pdf', NULL, NULL, '2020-10-06', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'Confidence Level	Very Low', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 10:42:27', 1, '2020-10-06 12:59:40', 0, NULL, 1),
(885, 'Prathipa. A', '4', '9841496731', '', 'graceprathipa@gmail.com', '1999-11-11', 20, '2', '2', 'Arul doss. A', 'Daily wages', 11000.00, 1, 0.00, 10000.00, 'Ayyapakkam', 'Ayyapakkam', '2010050009', '1', '1', 'upload_files/candidate_tracker/81988242471_RESUME.docx', NULL, NULL, '2020-10-06', 0, '', '5', '13', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 10:44:09', 50, '2020-10-06 11:46:15', 0, NULL, 1),
(886, 'DURGADEVI', '4', '9361702755', '9385643525', 'durgamurugandd97@gmail.com', '1997-12-19', 22, '2', '2', 'Velmurugan', 'Vandriver', 15000.00, 1, 0.00, 12.00, 'Tirunelveli', 'Tambaram sanitorium,Chennai', '2010050010', '2', '1', 'upload_files/candidate_tracker/48502518884_DD02 RESUME.pdf', NULL, NULL, '2020-10-06', 0, '', '5', '21', '1970-01-01', 0.00, '01:01 PM', '', '1970-01-01', '2', 'not sustain long term ... seeking alliance ..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 10:44:26', 1, '2020-10-06 01:38:23', 0, NULL, 1),
(887, '', '0', '6380719648', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010050011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 11:09:55', 0, NULL, 0, NULL, 1),
(888, 'Varadharajan', '13', '8939101522', '8300661507', 'svrajan222@gmail.com', '1997-03-18', 23, '3', '2', 'Dhavamani', 'Agricultural', 10000.00, 2, 0.00, 120000.00, 'Villupuram', 'Chennai', '2010050012', '', '1', 'upload_files/candidate_tracker/898457106_Resume.pdf', NULL, NULL, '2020-10-05', 0, '', '5', '28', NULL, 0.00, '12:00 PM', '0', NULL, '2', 'basic skill is not enough', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 11:26:30', 1, '2020-10-05 11:29:22', 0, NULL, 1),
(889, 'Rajeshwaran j', '4', '7338991582', '9677214732', 'rajesh86waran@gmail.com', '1985-06-27', 35, '2', '2', 'Jayakumar', 'Retried', 20000.00, 1, 17500.00, 20000.00, 'Chennai', 'Chennai', '2010050013', '3', '2', 'upload_files/candidate_tracker/62223009952_Resume July 2019 RAJESHWARAN (1).pdf', NULL, NULL, '2020-10-05', 5, '', '3', '8', '2020-10-08', 144000.00, '11:42 AM', '4', '2020-11-05', '1', '12K for Muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 11:31:22', 7, '2020-10-08 03:13:28', 0, NULL, 1),
(890, 'Hannah paulin', '4', '6381956772', '7904742670', 'paulinepeace777@gmail.com', '1999-07-09', 21, '2', '2', 'Poulose', 'Business', 13000.00, 1, 0.00, 11000.00, 'No65/77 Bajanaii Koil Street Choolaimedu', 'No65/77 Bajanaii Koil Street Choolaimedu', '2010050014', '1', '1', 'upload_files/candidate_tracker/1807410050_RESUME.docx', NULL, NULL, '2020-10-06', 0, '', '5', '21', '1970-01-01', 0.00, '11:43 AM', '', '1970-01-01', '1', 'She Is Not Work With Pressure', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 11:35:51', 50, '2020-10-06 11:49:52', 0, NULL, 1),
(891, 'Ranjitha M', '4', '8197016033', '', 'ranjitha121999@gmail.com', '1999-09-12', 21, '2', '2', 'Madesh v', 'Graduate', 15000.00, 2, 0.00, 14000.00, 'Chikka begur main road ambedkar nagar Bangalore 68', 'Chikka begur main road ambedkar nagar Bangalore 68', '2010050015', '1', '1', 'upload_files/candidate_tracker/43418935407_RANJITHA M (1).doc', NULL, NULL, '2020-10-05', 0, '', '3', '8', '2020-10-08', 132000.00, '01:01 PM', '', '1970-01-01', '2', '11K for Gowshick team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 11:37:57', 50, '2020-10-06 09:46:12', 0, NULL, 1),
(892, 'Velavan N', '5', '6381953049', '9710469108', 'velasd143@gmail.com', '1989-12-26', 30, '1', '2', 'Navamani', 'Passed away', 35000.00, 1, 20000.00, 25000.00, 'Chennai. Redhills', 'Chennai Redhills', '2010050016', '', '2', 'upload_files/candidate_tracker/14206562462_3068823458D1ECA62339D2AAC9D630688234260320042213827_.pdf', NULL, NULL, '2020-10-05', 30, '5177', '7', '', NULL, 0.00, '12:07 PM', '0', NULL, '1', 'He will join on 1st week of November', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 11:58:49', 1, '2020-10-05 02:53:22', 0, NULL, 1),
(893, 'Sangavi', '4', '9952929740', '9025006311', 'sangavi3237@gmail.com', '1997-11-11', 22, '2', '2', 'Ramesh', 'Security office', 100000.00, 0, 15000.00, 15000.00, '33vannai pandian street Vyasarpadi Chennai 39', '33vannai pandian street Vyasarpadi Chennai 39', '2010050017', '1', '2', 'upload_files/candidate_tracker/67154249154_Rahul-1.docx', NULL, NULL, '2020-10-05', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'no Pressure Handling  xxamp Sustainability low', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 11:59:43', 50, '2020-10-05 01:20:56', 0, NULL, 1),
(894, 'rahul rao', '4', '7010864279', '7200002399', 'rahulddkx1@gmail.com', '1994-11-26', 25, '2', '2', 'Jaya rao', 'Business', 50.00, 1, 11.00, 12.00, 'No 24 sivalingham street nesapakkam ch -78', 'No 24 Sivalingham Street Nesapakkam Ch -78', '2010050018', '1', '2', 'upload_files/candidate_tracker/8401546911_Rahul-1.docx', NULL, NULL, '2020-10-05', 0, '', '5', '13', '1970-01-01', 0.00, '12:19 PM', '', '1970-01-01', '1', 'Attitude poor', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-05 12:16:34', 58, '2020-12-29 10:03:56', 0, NULL, 1),
(895, 'Karthika', '4', '9150461475', '7092731765', 'Karthikachristina241196@gmail.com', '1996-11-24', 23, '2', '2', 'Kumar', 'Parsl office', 100000.00, 0, 13000.00, 14000.00, 'No16 new labour line Kathabada chennai21', 'No16 New Labour Line Kathabada Chennai21', '2010050019', '1', '2', 'upload_files/candidate_tracker/25367858887_karthika.docx', NULL, NULL, '2020-10-05', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Confidence Level	low so not fit for telesales', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 12:34:50', 50, '2020-10-05 02:50:06', 0, NULL, 1),
(896, 'Revathy', '11', '8939173557', '9080869286', 'revaseenu44@gmail.com', '1995-08-31', 25, '2', '1', 'Krishna', 'Team lead', 6.00, 0, 1.50, 18000.00, 'Chennai', 'Chennai', '2010050020', '2', '2', 'upload_files/candidate_tracker/1670864095_Reva resume 2020.docx', NULL, NULL, '2020-10-07', 7, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 12:34:59', 50, '2020-10-07 06:38:09', 50, '2020-10-15 10:30:27', 0),
(897, 'sai shiva sakthi ca', '4', '8778340400', '9080605104', 'saishivasakthi19cs@gmail.com', '1995-12-19', 24, '2', '2', 'Sairam ca', 'retried', 10000.00, 1, 0.00, 20000.00, 'chennai', 'thirumullaivayol', '2010050021', '3', '1', 'upload_files/candidate_tracker/51177958013_i9zus-tsat9.pdf', NULL, NULL, '2020-10-05', 0, '', '5', '13', '1970-01-01', 0.00, '12:51 PM', '', '1970-01-01', '2', 'Communication  low so rejected', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 12:43:06', 50, '2020-10-05 01:39:08', 0, NULL, 1),
(898, 'ebinesh t', '4', '9444405078', '8122615875', 'ebineshebi0708@gmail.com', '1997-08-07', 23, '1', '2', 'thangamani p', 'Accountant', 25000.00, 1, 18000.00, 25000.00, 'avadi chennai', 'Avadi chennai', '2010050022', '', '2', 'upload_files/candidate_tracker/62429291459_resume 2020 ebi.pdf', NULL, NULL, '2020-10-05', 0, '5177', '5', '13', '1970-01-01', 0.00, '12:15 PM', '', '1970-01-01', '1', 'Sustainability	less', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 12:52:02', 50, '2020-10-05 03:19:46', 0, NULL, 1),
(899, 'Aarthi', '11', '9791096681', '', 'aarthiadc.25@gmail.com', '1997-07-25', 23, '2', '2', 'Chenguttuvan', 'Cashuer', 500000.00, 1, 0.00, 14000.00, 'Ayanavaram', 'Ayavanaram', '2010050023', '1', '1', 'upload_files/candidate_tracker/86963987663_RESUME AARTHI.docx', NULL, NULL, '2020-10-07', 0, '', '5', '54', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'She will not sustain, if she got any other better offer she will switch.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 01:04:43', 50, '2020-10-07 03:21:11', 0, NULL, 1),
(900, 'Sam v cherian', '5', '9496998154', '8431385745', 'vcsam034@gmail.com', '1990-10-14', 29, '1', '1', 'V s cherian', 'Social worker', 30000.00, 1, 26000.00, 26000.00, 'Kerala', 'Koramangala 1 st block', '2010050024', '', '2', 'upload_files/candidate_tracker/45991886160_Sam V Cherian New CV(1) (1ka07)-converted (1).pdf', NULL, NULL, '2020-10-05', 0, '5490', '3', '8', '2020-10-07', 330000.00, '01:20 PM', '0', NULL, '1', '27.5K for Sathish  team', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 01:11:12', 1, '2020-10-05 01:22:12', 0, NULL, 1),
(901, 'Shahul Hameed', '5', '9710538785', '8668099950', 'shahul2885@gmail.com', '1992-09-30', 28, '1', '2', 'Rajar ali', 'Own business', 20000.00, 3, 30000.00, 27000.00, 'Chennai', 'Chennai', '2010050025', '', '2', 'upload_files/candidate_tracker/59076079744_Shahul Hameed R.pdf', NULL, NULL, '2020-10-05', 0, '5172', '3', '8', '2020-10-08', 312000.00, '01:40 PM', '6', '2021-07-01', '1', '26K . For rajkumar team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 01:36:30', 7, '2020-10-22 05:26:21', 0, NULL, 1),
(902, 'durga devi v', '4', '9385643525', '', 'durgamurugandd97@gmail.com', '1997-12-19', 22, '2', '2', 'vel murugan', 'van driver', 10000.00, 0, 0.00, 11000.00, 'thirunelveli', 'tambaram sanitorium', '2010050026', '2', '1', 'upload_files/candidate_tracker/95500651823_Durga 19resume.docx', NULL, NULL, '2020-10-06', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 02:43:43', 1, '2020-10-05 02:50:32', 50, '2020-10-06 01:27:20', 0),
(903, 'Pretheesa Nayahi', '4', '7871182092', '8056289618', 'Pretheesha1992@gmail.com', '1992-08-20', 28, '2', '1', 'Sathish', 'Proffesion', 25000.00, 1, 0.00, 15000.00, 'Chennai pallikaranai', 'Chennai pallikaranai', '2010050027', '1', '2', 'upload_files/candidate_tracker/77806608209_Copyofpretheesaresume.docx(3)(1).pdf', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 03:50:28', 50, '2020-10-06 05:28:02', 0, NULL, 1),
(904, 'prathiba', '4', '8608947391', '9941671655', 'prathiba.3997@gmail.com', '1997-09-03', 23, '2', '2', 'parthiban', 'office assisstant', 20000.00, 1, 14000.00, 18000.00, 'Chennai', 'Chennai', '2010050028', '1', '2', 'upload_files/candidate_tracker/63898188722_prathiba CV (1).pdf', NULL, NULL, '2020-10-22', 0, '', '8', '21', '1970-01-01', 0.00, '01:25 PM', '', '1970-01-01', '2', 'candidate gone', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 03:55:06', 50, '2020-10-22 02:28:09', 0, NULL, 1),
(905, 'M. Saroja', '5', '9841208717', '', 'sarojamoses898@gmail.com', '1998-09-16', 22, '2', '2', 'D/O A. Muthu krishnan', 'Auto Drive', 13000.00, 1, 0.00, 15000.00, 'Anna nagar', 'Anna nagar', '2010050029', '1', '1', 'upload_files/candidate_tracker/18804400472_SAROJA RESUME.pdf', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 04:13:12', 50, '2020-10-06 05:28:12', 0, NULL, 1),
(906, '', '0', '7094944434', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010050030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 04:32:27', 0, NULL, 0, NULL, 1),
(907, 'K.saron ruba', '4', '6381151449', '9176534748', 'saronruba771@gmail.com', '1998-07-17', 22, '2', '2', 'Nill', 'Nill', 200000.00, 4, 15000.00, 15000.00, 'Thoothukudi', 'Thambaram sanatorium', '2010060001', '1', '2', 'upload_files/candidate_tracker/36848464606_saron .pdf', NULL, NULL, '2020-10-07', 5, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'rejected ,not sustain long term bcz expecting high salary 15 k above ', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 01:11:45', 50, '2020-10-07 12:19:11', 0, NULL, 1),
(908, 'Murugalakshmi G', '4', '7639221305', '', 'Lakshmirosy18@gmail.com', '1998-05-25', 22, '2', '2', 'Gurusamy', 'Daily wages', 12000.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Chromepet', '2010060002', '1', '1', 'upload_files/candidate_tracker/73163545029_Selvalaxmi resume.pdf', NULL, NULL, '2020-10-07', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Observation Skills low', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 09:55:04', 50, '2020-10-07 01:19:48', 0, NULL, 1),
(909, 'PERUMAL G', '5', '9943827528', '9952920032', 'Perumalg33@gmail.com', '1995-05-12', 25, '2', '2', 'GOVINDHARAJ', 'Sales and marketing', 5000.00, 2, 23000.00, 28000.00, 'Chennai', 'Chennai', '2010060003', '3', '2', 'upload_files/candidate_tracker/55084025550_RESUME_perumal.pdf', NULL, NULL, '2020-10-06', 1, '', '5', '34', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'rejected not sutable for our job', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 09:57:15', 1, '2020-10-06 10:22:01', 0, NULL, 1),
(910, '', '0', '7299250043', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 09:59:55', 0, NULL, 0, NULL, 1),
(911, 'A.jesintha mary', '4', '8754269571', '', 'jesinthamary245@gmail.com', '2000-02-15', 20, '1', '2', 'J. Arokia doss', 'Driver', 72000.00, 1, 0.00, 10000.00, 'Triplicane', 'Ice house', '2010060005', '', '1', 'upload_files/candidate_tracker/40277297480_Adobe Scan Oct 06, 2020.pdf', NULL, NULL, '2020-10-06', 0, '', '5', '13', NULL, 0.00, '10:45 AM', '0', NULL, '1', 'not bold and not Sustain long term', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 10:18:32', 1, '2020-10-06 11:02:12', 0, NULL, 1),
(912, 'Mohammed Ibrahim', '5', '8056680015', '', 'Ibrahimmech.dxb@gmail.com', '1995-05-19', 25, '1', '2', 'Hythar ali', 'Fishing', 200000.00, 1, 18000.00, 21000.00, 'Thanjavur', 'Chennai', '2010060006', '', '2', 'upload_files/candidate_tracker/33792358073_Ibrahim 8056.docx', NULL, NULL, '2020-10-06', 0, '5388', '3', '8', '2020-10-15', 252000.00, '11:31 AM', '2', '1970-01-01', '1', '21K for Veben team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 10:19:10', 7, '2020-10-22 06:08:01', 0, NULL, 1),
(913, 'Jayasri R', '4', '7395967640', '8825440629', 'Jayasriraman1997@gmail.com', '1997-08-05', 23, '2', '2', 'Raman P', 'Sales mentor', 10000.00, 1, 0.00, 10000.00, 'Medavakkam', 'Medavakkam', '2010060007', '1', '1', 'upload_files/candidate_tracker/75837253819_1601820892792_sowmiya resume.pdf', NULL, NULL, '2020-10-06', 0, '', '5', '21', '1970-01-01', 0.00, '10:57 AM', '', '1970-01-01', '2', 'long distance  1 hr travel,Not Sustain Long Term, She Is Intrested In Lecture Job , Tnpsc Exam', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 10:32:12', 50, '2020-10-06 11:01:46', 0, NULL, 1),
(914, 'JONAOF ARC C', '4', '8531025248', '7395967640', 'Jo151197@gmail.com', '1997-11-15', 22, '2', '2', 'CHARLES M', 'Labour', 10000.00, 2, 0.00, 10000.00, 'Villupuram', 'Medavakkam', '2010060008', '1', '1', 'upload_files/candidate_tracker/20053483995_jo pdf 1.pdf', NULL, NULL, '2020-10-06', 0, '', '5', '13', '1970-01-01', 0.00, '10:46 AM', '', '1970-01-01', '2', 'Communication skills not well so rejected', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 10:33:24', 50, '2020-10-06 10:54:30', 0, NULL, 1),
(915, 'Sowmiya. V', '4', '9597690074', '8825440629', 'Vsowmiammu@gmail.com', '1997-10-14', 22, '2', '2', 'Venkateson. M', 'Travells manager', 50000.00, 1, 0.00, 2.00, 'Medavakkam', 'Medavakkam', '2010060009', '1', '1', 'upload_files/candidate_tracker/16272248077_1601820892792_sowmiya resume.pdf', NULL, NULL, '2020-10-06', 0, '', '5', '21', '1970-01-01', 0.00, '10:46 AM', '', '1970-01-01', '2', 'no need for job', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 10:43:21', 50, '2020-10-06 11:09:14', 0, NULL, 1),
(916, 'Balaji M', '5', '9597419319', '', 'balajimurugesanms@gmail.com', '1992-10-31', 27, '1', '2', 'Murugesan L', 'B', 30000.00, 1, 22000.00, 27000.00, 'Coimbatore', 'Coimbatore', '2010060010', '', '2', 'upload_files/candidate_tracker/78383864711_0_Balaji Resume.pdf', NULL, NULL, '2020-10-06', 0, '5361', '3', '8', '2020-10-07', 312000.00, '11:13 AM', '6', '2023-08-19', '1', '26K for Sathish team', '5', '2', '4', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 11:08:13', 7, '2020-10-22 05:25:44', 0, NULL, 1),
(917, 'yuvaraj a c', '13', '7996059084', '', 'yuvarajac9611@gmail.com', '1999-02-11', 21, '2', '2', 'chandrashekar a', 'former', 2000.00, 1, 0.00, 21000.00, 'Shimoga', 'Shimoga', '2010060011', '1', '1', 'upload_files/candidate_tracker/40183565328_yuvaraj_a_c - updated1.pdf', NULL, NULL, '2020-10-07', 0, '', '8', '', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 11:12:23', 50, '2020-10-07 06:38:16', 0, NULL, 1),
(918, 'S.vinetha', '4', '8428657513', '7397334443', 'Esthervinecathy@gmail.com', '1999-08-06', 21, '2', '2', 'C.siva', 'Daily wages', 12000.00, 1, 0.00, 10000.00, 'No:165,m.t.h,road ,villivakkam,chennai-600049', 'No:165,M.T.H,Road ,Villivakkam,Chennai-600049', '2010060012', '1', '1', 'upload_files/candidate_tracker/2913879297_Magal_Resume.docx v.docx', NULL, NULL, '2020-10-06', 0, '', '5', '21', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '2', 'she dont want presure job', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 11:30:48', 50, '2020-10-06 11:40:28', 0, NULL, 1),
(919, 'sakthivel m', '4', '9360826839', '8667665627', 'sakthivel30798@gmail.com', '1998-07-30', 22, '2', '2', 'murgaiya m', 'shop', 10000.00, 0, 12000.00, 13000.00, 'velacherry', 'velacherry', '2010060013', '2', '2', 'upload_files/candidate_tracker/595198086_sakthivel resume (1).pdf', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 11:35:44', 1, '2020-10-06 11:40:27', 7, '2020-10-09 07:07:47', 0),
(920, 'Thoufeek TKS', '5', '8072043742', '', 'johnthofiqcena@gmail.com', '1994-04-05', 26, '2', '1', 'Abubucker siddiq', 'Business', 25000.00, 1, 21000.00, 21000.00, 'Chennai', 'Chennai', '2010060014', '1', '2', 'upload_files/candidate_tracker/37123695809_Resume.docx', NULL, NULL, '2020-10-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'told no int in insurance', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 11:36:49', 50, '2020-10-07 11:03:18', 0, NULL, 1),
(921, 'SUBRAHMANYA C', '4', '9964334791', '6361942379', 'mani.sc527@gmail.com', '1993-12-20', 26, '2', '2', 'H chandraiah', 'retair government', 70000.00, 2, 20000.00, 20000.00, 'tumkur', 'garebavipalya', '2010060015', '7', '2', 'upload_files/candidate_tracker/74980148302_Subrhmanya C_CRM_CAFS.docx', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 11:45:38', 50, '2020-10-06 05:28:35', 0, NULL, 1),
(922, 'SYED AMEER SOHAIL', '13', '9108234874', '9108751334', 'syedameersohail1@gmail.com', '1997-04-24', 23, '2', '2', 'SYED SHOUKATH ALI', 'Self employee', 20000.00, 3, 0.00, 350000.00, 'Workers colony kavalettu kumarpatnum post', 'Workers colony kavalettu kumarpatnum post', '2010060016', '1', '1', 'upload_files/candidate_tracker/25823999927_Syed_Ameer_Sohail final resume.pdf', NULL, NULL, '2020-10-07', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 11:50:01', 50, '2020-10-07 06:38:47', 0, NULL, 1),
(923, 'usha m', '4', '8072145141', '', 'ushachintu@ymail.com', '1991-01-15', 29, '2', '1', 'mohan', 'late', 10000.00, 0, 12000.00, 13000.00, 'neelankari', 'neelankarai', '2010060017', '2', '2', 'upload_files/candidate_tracker/55176787731_usha resume-old-2.docx', NULL, NULL, '2020-10-07', 0, '', '5', '21', NULL, 0.00, '10:45 AM', '0', NULL, '1', 'She Dont Have  Voice Exp , Alreadyhave Exp In Email Chat Process ...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 11:54:30', 1, '2020-10-07 10:27:01', 0, NULL, 1),
(924, 'soma sundaram', '5', '9380735529', '9551626784', 'somusunddar.p@gmail.com', '1987-08-06', 33, '2', '1', 'rubin selvarani', 'house wife', 30000.00, 1, 20000.00, 23000.00, 'Chennai', 'avadi chennai', '2010060018', '8', '2', 'upload_files/candidate_tracker/29347598701_Somasundaram_CV(2).doc', NULL, NULL, '2020-10-06', 0, '', '5', '29', NULL, 0.00, '12:37 PM', '0', NULL, '1', 'not selected', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 12:31:35', 1, '2020-10-06 01:02:03', 0, NULL, 1),
(925, 'Indhumathi.k', '4', '8248022701', '9962902270', 'Indhumathi.19111998@gmail.com', '1998-07-10', 22, '2', '2', 'Kandhasami.P', 'Marketing field', 12000.00, 2, 13000.00, 15000.00, 'Purasaiwakkam', 'Purasaiwakkam', '2010060019', '1', '2', 'upload_files/candidate_tracker/34863621666_INDHU RESUME.pdf', NULL, NULL, '2020-10-07', 0, '', '8', '', '1970-01-01', 0.00, '01:06 PM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 12:48:08', 50, '2020-10-07 06:38:56', 0, NULL, 1),
(926, '', '0', '7810027033', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 12:49:44', 0, NULL, 0, NULL, 1),
(927, 'Priya.v', '4', '9003234982', '7550114530', 'priyavenseslaus2340@gmail.com', '2000-04-23', 20, '2', '2', 'P.venseslaus', 'Driver', 12000.00, 1, 9000.00, 11000.00, 'ayappakkam', 'ayappakkam', '2010060021', '1', '2', 'upload_files/candidate_tracker/88832795107_priyaresume.docx', NULL, NULL, '2020-10-07', 0, '', '3', '8', '1970-01-01', 120000.00, '12:30 PM', '2', '1970-01-01', '2', '10K for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 01:11:22', 7, '2020-10-09 07:05:10', 0, NULL, 1),
(928, '', '0', '9390905933', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 01:22:46', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(929, 'saron ruba k', '4', '9176534748', '', 'saronruba771@gmail.com', '1998-07-17', 22, '2', '2', 'karneson p', 'not working', 10000.00, 1, 12000.00, 13000.00, 'thoothukudi', 'tambaram sanitorium', '2010060023', '2', '2', 'upload_files/candidate_tracker/24298417358_saron ruba.pdf', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 01:25:13', 1, '2020-10-07 12:15:30', 0, NULL, 1),
(930, 'parthiban', '13', '8870901951', '6382025053', 'parthibannatesan2698@gmail.com', '1998-01-26', 22, '2', '1', 'natesan', 'business', 7000.00, 1, 6000.00, 20000.00, 'salem', 'salem', '2010060024', '1', '2', 'upload_files/candidate_tracker/18784539799_PARTHIBAN.pdf', NULL, NULL, '2020-10-07', 2, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 02:41:36', 50, '2020-10-07 06:39:07', 0, NULL, 1),
(931, 'saranaya r', '4', '6374860537', '7299718479', 'wwwsaranya026@gmail.com', '1998-06-17', 22, '2', '2', 'rajasekar p', 'carpenter', 10000.00, 1, 12000.00, 13000.00, 'chennai', 'velacherry', '2010060025', '2', '2', 'upload_files/candidate_tracker/97057771851_saranya r.pdf', NULL, NULL, '2020-10-07', 0, '', '5', '21', NULL, 0.00, '10:31 AM', '0', NULL, '2', 'interested only in cus support', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 03:28:10', 1, '2020-10-07 11:53:51', 0, NULL, 1),
(932, 'Dhanalakshmi K', '13', '9710412381', '9677171871', 'dhana.wpt@gmail.com', '1993-11-17', 26, '2', '1', 'Shanmugam S', 'Admin in indian additives private limoted', 20000.00, 2, 12500.00, 18000.00, 'Kodungaiyur, chennai', 'Kodungaiyur, chennai', '2010060026', '1', '2', 'upload_files/candidate_tracker/24408076200_Dhana_Resume_2_1.doc', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '03:37 PM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 03:29:46', 1, '2020-10-06 03:49:10', 0, NULL, 1),
(933, 'malvitha r', '4', '9176416016', '', 'raveemalv2426@gmail.com', '2000-01-24', 20, '2', '2', 'raveendran s', 'working', 15000.00, 0, 0.00, 11000.00, 'chennai', 'ashok pillar', '2010060027', '2', '1', 'upload_files/candidate_tracker/30339009416_Malvitha R resume.docx', NULL, NULL, '2020-10-07', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 03:53:22', 50, '2020-10-07 06:39:17', 0, NULL, 1),
(934, '', '0', '9344254604', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:00:33', 0, NULL, 0, NULL, 1),
(935, 'tharunika srinivasan', '4', '7904376884', '', 'tharunika.srinivasan@gmail.com', '2000-12-06', 19, '2', '2', 'srinivasan k', 'working', 20000.00, 1, 0.00, 11000.00, 'chennai', 'kodambakkam', '2010060029', '2', '1', 'upload_files/candidate_tracker/68838188359_Tharunika Srinivasan resume.docx', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:00:48', 1, '2020-10-06 04:04:09', 0, NULL, 1),
(936, 'nivash k', '4', '8428615291', '9791797701', 'danialnivash@gmail.com', '1996-11-12', 23, '2', '2', 'kamlanathan b', 'business', 20000.00, 2, 12000.00, 13000.00, 'salem', 'sozhinganallur', '2010060030', '2', '2', 'upload_files/candidate_tracker/80282144746_1600139273443_Nivash RESUME-1824.docx', NULL, NULL, '2020-10-08', 0, '', '5', '21', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'Not  Sustain Long Term xxamp Also  Last Salry 18k ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:09:16', 1, '2020-10-07 04:23:45', 0, NULL, 1),
(937, '', '0', '7449265582', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:16:43', 0, NULL, 0, NULL, 1),
(938, '', '0', '9150718591', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:17:04', 0, NULL, 0, NULL, 1),
(939, 'karthikeyan.', '6', '9123555155', '', 'b.karthickeyancool@ymail.com', '1994-12-20', 25, '2', '2', 'baskar t', 'nill', 325000.00, 2, 26000.00, 27000.00, 'no ten sakthivel nagar seventh street', 'puzhal', '2010060033', '3', '2', 'upload_files/candidate_tracker/97718071972_karthik Resume 2.docx', NULL, NULL, '2020-10-06', 0, '', '5', '18', NULL, 0.00, '04:39 PM', '0', NULL, '2', 'Non degeree holder and an average guy', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:34:52', 1, '2020-10-06 05:11:41', 0, NULL, 1),
(940, 'arun kumar a', '4', '7397433023', '7401812358', 'arunrakesh1997@gmail.com', '1997-08-10', 23, '2', '2', 'ananda jothi r', 'real estate', 35000.00, 2, 0.00, 12000.00, 'poonamalle', 'poonamalle', '2010060034', '2', '1', 'upload_files/candidate_tracker/27624375385_ArunKumar_Resume.docx', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:39:36', 1, '2020-10-06 04:43:55', 0, NULL, 1),
(941, 'aman saxena', '13', '9452665596', '', '', '1996-09-26', 24, '2', '2', 'mr. arvind kumar saxena', 'accounts officer at bsnl', 40000.00, 1, 0.00, 15000.00, 'sharda hills colony antia tal', 'jhansi', '2010060035', '1', '2', 'upload_files/candidate_tracker/70716467835_resume_copy.docx', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 04:43:14', 1, '2020-10-06 07:03:27', 0, NULL, 1),
(942, 'Dineshkumar', '13', '8248031284', '9786613769', 'DhDhinesh805@gmail.com', '1992-07-05', 28, '2', '2', 'Pushparaj', 'Coolie', 16000.00, 1, 0.00, 18000.00, 'Namakkal', 'Gummidipondi', '2010060036', '1', '1', 'upload_files/candidate_tracker/86331126480_DINESH KUMAR P - RESUME.docx', NULL, NULL, '2020-10-07', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'He Is Not Strong In Php Basic . ', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 04:54:29', 50, '2020-10-07 01:24:59', 0, NULL, 1),
(943, 'Subha', '4', '7092524698', '7358212166', 'subhasoundharajan@gmail.com', '1996-11-19', 23, '2', '2', 'Soundharajan', 'Book binder', 9000.00, 1, 13000.00, 14000.00, 'Urappakkam', 'Urappakkam', '2010060037', '1', '2', 'upload_files/candidate_tracker/88702204724_subhasoundharajan.docx', NULL, NULL, '2020-10-07', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'She Is Interested In Customer Support ', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 05:11:46', 50, '2020-10-07 11:17:55', 0, NULL, 1),
(944, 'priya r', '4', '7305327553', '9003032899', 'priyasasi2202@gmail.com', '2000-02-22', 20, '2', '2', 'raja rao b', 'security', 10000.00, 0, 12000.00, 13000.00, 'chennai', 'velacherry', '2010060038', '2', '2', 'upload_files/candidate_tracker/96903106395_rrrrrrr.pdf', NULL, NULL, '2020-10-07', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'intrested only for data entry so not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 05:13:25', 1, '2020-10-07 12:12:51', 0, NULL, 1),
(945, 'venkatesan r', '13', '8903875523', '', 'venkatsaran59@gmail.com', '1994-03-16', 26, '2', '2', 'ramesh r', 'fish sale', 12000.00, 1, 40000.00, 42000.00, 'nagapattinam', 'chennai', '2010060039', '1', '2', 'upload_files/candidate_tracker/98023873902_Venkat Resume.pdf', NULL, NULL, '2020-10-07', 15, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 05:32:27', 50, '2020-10-07 06:39:28', 0, NULL, 1),
(946, 's mohamed shuaeb', '13', '9884732468', '7871442242', 'smdshuaeb96@gmail.com', '1996-12-10', 23, '2', '1', 'p mohamed shamsudeen', 'salesman', 10000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2010060040', '1', '1', 'upload_files/candidate_tracker/48653746978_mdshuaed CV.pdf', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '02:00 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 06:04:28', 1, '2020-10-06 07:26:01', 0, NULL, 1),
(947, 'nancy kavitha s', '4', '8056977173', '9677280595', 'nancclemen31@gmail.com', '1995-05-31', 25, '2', '2', 'shankar', 'not working', 15000.00, 0, 12000.00, 14000.00, 'chennai', 'royapuram', '2010060041', '2', '2', 'upload_files/candidate_tracker/67543447949_CV_2020-09-19-033359.pdf', NULL, NULL, '2020-10-07', 0, '', '3', '8', '2020-10-08', 132000.00, '10:30 AM', '0', NULL, '2', '11K for dhivya team', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 06:18:38', 1, '2020-10-07 01:18:58', 0, NULL, 1),
(948, 'franklin m', '4', '8608095127', '9043213939', 'Candyboi99@gmail.com', '2000-09-17', 20, '2', '2', 'doss m', 'harbour employer', 25000.00, 1, 12000.00, 14000.00, 'chennai', 'thiruvanmiyur', '2010060042', '2', '2', 'upload_files/candidate_tracker/89222085384_resume .pdf', NULL, NULL, '2020-10-07', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'Communication  skills very poor', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 06:25:21', 1, '2020-10-07 11:51:25', 0, NULL, 1),
(949, '', '0', '9884401652', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060043', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 07:33:08', 0, NULL, 0, NULL, 1),
(950, 'shalini', '4', '9940123766', '6382002476', 'Babyshalini22699@gmail.com', '1999-06-22', 21, '2', '1', 'Panner selvam p', 'Tailor', 8000.00, 1, 13000.00, 14000.00, 'chennai', 'porur', '2010060044', '2', '2', 'upload_files/candidate_tracker/53158778499_shalini resume.docx', NULL, NULL, '2020-10-07', 0, '', '5', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 09:00:32', 50, '2020-10-07 03:15:24', 0, NULL, 1),
(951, 'gowri m', '4', '9952007532', '8778661426', 'gowri0120@gmail.com', '1998-10-20', 21, '2', '1', 'murugesan d', 'electrician', 13000.00, 1, 13000.00, 14000.00, 'chennai', 'shenoy nagar', '2010060045', '2', '2', 'upload_files/candidate_tracker/39088258946_GOWRI.M[1]new resume (1).pdf', NULL, NULL, '2020-10-07', 0, '', '3', '8', '2020-10-15', 126000.00, '10:30 AM', '2', '1970-01-01', '2', '10.5K for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 09:13:16', 7, '2020-10-16 11:47:09', 0, NULL, 1),
(952, 'abirami m', '4', '7092497149', '7550182797', 'Suryabi14@gmail.com', '1998-02-21', 22, '2', '1', 'murugasan', 'working', 10000.00, 1, 0.00, 10000.00, 'chennai', 'anna nagar east', '2010060046', '2', '1', 'upload_files/candidate_tracker/65717098395_Resume Format 2 page.pdf', NULL, NULL, '2020-10-07', 0, '', '3', '8', '1970-01-01', 126000.00, '10:30 AM', '2', '1970-01-01', '2', '10.5K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 09:23:49', 7, '2020-10-12 12:39:57', 0, NULL, 1),
(953, 'Sandhiya', '3', '8438010227', '', 'Sandhiyasaranya95@gmail.com', '1997-07-31', 23, '2', '2', 'Sankar', 'self employee', 12000.00, 1, 0.00, 280000.00, 'Chennai', 'chennai', '2010060047', '1', '1', 'upload_files/candidate_tracker/16781047575_Sandhiyaresume-sql.pdf', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 09:37:47', 1, '2020-10-06 09:51:29', 0, NULL, 1),
(954, 'chithra m', '4', '9884696144', '', 'chithra29041999@gmail.com', '1999-04-24', 21, '2', '2', 'muthukumar r s', 'painter', 10000.00, 1, 11000.00, 12000.00, 'chennai', 'mylapore', '2010060048', '2', '2', 'upload_files/candidate_tracker/96564208037_chithra M.docx', NULL, NULL, '2020-10-07', 0, '', '5', '13', '1970-01-01', 0.00, '10:25 AM', '', '1970-01-01', '2', 'Communication  poor', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 11:22:11', 50, '2020-10-07 11:43:58', 0, NULL, 1),
(955, 'Vageesh R g', '4', '9940478904', '6383261687', 'vageeshrg@gmail.com', '2000-02-15', 20, '1', '2', 'Gunasekaran R', 'P.W.D CIVIL', 200000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2010070001', '', '1', 'upload_files/candidate_tracker/93367078825_vageesh resume.pdf', NULL, NULL, '2020-10-07', 0, '5620', '5', '8', '1970-01-01', 0.00, '10:38 AM', '', '1970-01-01', '2', 'will not suite for calling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 10:35:51', 8, '2020-10-07 12:52:42', 0, NULL, 1),
(956, 'Arif Ahamed.A', '4', '9840411627', '9962895377', 'Arifahamed785@gmail.com', '1996-06-20', 24, '2', '2', 'Althaf Ahamed', 'Graphics', 20000.00, 1, 15000.00, 25000.00, 'No:5 old 47/2 3rd street Nsk nagar Arumbakkam', 'No:5 Old No:47/2 3rd Street Nsk Nagar Arumbakkam', '2010070002', '1', '2', 'upload_files/candidate_tracker/55892570324_ARIF_M.A[1].docx', NULL, NULL, '2020-10-08', 0, '', '3', '8', '2020-10-12', 240000.00, '11:30 AM', '', '1970-01-01', '1', '20K for Lokesh team', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 10:39:54', 50, '2020-10-09 04:27:24', 0, NULL, 1),
(957, 'Shenbagavalli M', '4', '8122215622', '9356325064', 'shenbha25021996@gmail.com', '1996-02-25', 24, '1', '2', 'Muppidari G', 'Business', 50000.00, 2, 12000.00, 12000.00, 'Saidpet', 'Saidpet', '2010070003', '', '2', 'upload_files/candidate_tracker/99133381843_doc00351120190516202319.pdf', NULL, NULL, '2020-10-07', 1, '5497', '5', '13', NULL, 0.00, '11:04 AM', '0', NULL, '2', 'Communication skills low', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 10:55:35', 1, '2020-10-07 11:36:52', 0, NULL, 1),
(958, '', '0', '7402589930', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010070004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 11:18:07', 0, NULL, 0, NULL, 1),
(959, 'Swetha.s', '4', '9789887061', '9710817007', 'swethasasikumar27@gmail.com', '2001-07-09', 19, '2', '2', 'Sasi Kumar.r', 'Electrician', 20000.00, 1, 0.00, 10000.00, '6, Rajasekar lane Mylapore Chennai 5', '6,Rajasekar lane Mylapore Chennai 5', '2010070005', '1', '1', 'upload_files/candidate_tracker/88325395277_S Swetha.docx', NULL, NULL, '2020-10-07', 0, '', '5', '21', '1970-01-01', 0.00, '11:59 AM', '', '1970-01-01', '2', 'She Wants 3 Month Only Full Time Job, After  She Went To Colleage ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 11:21:33', 50, '2020-10-07 12:26:31', 0, NULL, 1),
(960, 'KRESAN. R', '4', '7358689024', '9710817007', 'Jackkresan2001@gamil.com', '2001-08-27', 19, '2', '2', 'Vijayalashmi', 'Export tailor', 10000.00, 1, 0.00, 10000.00, 'No.21/thulukkama thoot Thriplicane chennai. 05', 'No. 21/thulukkama thoot Thriplicane Chennai- 05', '2010070006', '1', '1', 'upload_files/candidate_tracker/63509013127_R.Kresan.docx', NULL, NULL, '2020-10-07', 0, '', '5', '13', '1970-01-01', 0.00, '12:12 PM', '', '1970-01-01', '2', 'Confidence Level	Skills low', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 11:26:30', 50, '2020-10-07 12:25:32', 0, NULL, 1),
(961, '', '0', '9626436586', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010070007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 11:31:53', 0, NULL, 0, NULL, 1),
(962, 'pavithra m', '4', '9941677828', '', 'rcmchitra29@gmail.com', '1999-06-03', 21, '2', '2', 'marriyappan', 'not working', 10000.00, 1, 0.00, 12000.00, 'koyembedu', 'koyembedu', '2010070008', '1', '1', 'upload_files/candidate_tracker/96545106138_DocScanner 07-October-2020 12_24_24.pdf', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '12:50 PM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 11:33:16', 1, '2020-10-07 02:59:40', 0, NULL, 1),
(963, 'v.magesh kumar', '5', '7402899330', '', 'magesh.mk24@gmail.com', '1994-01-01', 26, '1', '2', 'k.vilvanathan', 'Investigation officer', 40000.00, 1, 23000.00, 26000.00, 'madurai', 'Bangalore', '2010070009', '', '2', 'upload_files/candidate_tracker/96860087797_Magesh Resume.pdf', NULL, NULL, '2020-10-07', 0, '5361', '3', '8', '2020-10-12', 276000.00, '11:36 AM', NULL, '2025-11-25', '1', '23K  for manivel team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 11:33:26', 7, '2020-10-22 05:27:00', 0, NULL, 1),
(964, 'u.jayapriya', '4', '8122016159', '', 'jayapriyak059@gmail.com', '1999-11-14', 20, '1', '2', 'a udayakumar', 'water business', 10000.00, 0, 0.00, 12000.00, 'mylapore', 'mylapore', '2010070010', '', '1', 'upload_files/candidate_tracker/73715561699_jayapriya.pdf', NULL, NULL, '2020-10-07', 0, '5277', '5', '13', NULL, 0.00, '12:08 PM', '0', NULL, '2', 'Sustainability	less', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 12:01:57', 1, '2020-10-07 12:09:52', 0, NULL, 1),
(965, 'Celine.n', '4', '7305287992', '9087550626', 'celinenavies@gmail.com', '1997-06-03', 23, '2', '2', 'Navis', 'Farmer', 12000.00, 2, 8000.00, 11000.00, 'ayappakkam', 'ayappakkam', '2010070011', '1', '2', 'upload_files/candidate_tracker/34101526228_imgtopdf_generated_0710201223014celin.pdf', NULL, NULL, '2020-10-07', 0, '', '5', '21', '1970-01-01', 0.00, '12:27 PM', '', '1970-01-01', '2', 'Not Sustain Long term  xxamp Also Double Minded ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 12:07:31', 50, '2020-10-07 12:44:49', 0, NULL, 1),
(966, 's.arulmozhi', '4', '7871178200', '', 'arulmozhi0184@gmail.com', '2000-04-18', 20, '1', '2', 's.sathish', 'fisherman', 12000.00, 2, 0.00, 12000.00, 'santhome', 'santhome', '2010070012', '', '1', 'upload_files/candidate_tracker/90326731975_arul.pdf', NULL, NULL, '2020-10-07', 0, '5277', '5', '21', NULL, 0.00, '12:17 PM', '0', NULL, '2', 'Low Voice ,Not Bold ,Not Sus Long Term', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 12:12:23', 1, '2020-10-07 12:18:24', 0, NULL, 1),
(967, 'lokesh kumr c', '5', '9384513563', '9944608692', 'lokshsnazzy96@gmail.com', '1996-07-09', 24, '2', '2', 'b g chennaiyan', 'buisnes', 30000.00, 0, 290000.00, 350000.00, 'bargur', 'madiwala', '2010070013', '3', '2', 'upload_files/candidate_tracker/91555976623_Lokesh resume 2020.pdf', NULL, NULL, '2020-10-07', 0, '', '3', '8', '2020-10-12', 228000.00, '12:48 PM', '4', '2021-01-17', '1', '18050K for Muppudathy team', '5', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 12:16:18', 7, '2020-10-22 06:11:27', 0, NULL, 1),
(968, '', '0', '9789887071', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010070014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 12:27:47', 0, NULL, 0, NULL, 1),
(969, 'SAHAYA SAJEN ABISHEK', '4', '8098394057', '', 'abiabi1419@gmail.com', '1996-08-19', 24, '2', '2', 'DEVA SAHAYAM', 'FISHERMAN', 20000.00, 1, 15000.00, 18000.00, 'NAGERCOIL', 'CHENNAI', '2010070015', '1', '2', 'upload_files/candidate_tracker/33583801312_Abishesk Resume.pdf', NULL, NULL, '2020-10-09', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 12:39:47', 50, '2020-10-09 07:14:54', 0, NULL, 1),
(970, 'Sakthi saravanan', '14', '6379001361', '', '', '2000-07-26', 20, '2', '2', 'Nandhini', 'Professor', 15000.00, 3, 0.00, 15000.00, 'Arni', 'Arni', '2010070016', '1', '1', 'upload_files/candidate_tracker/76972139587_Sakthi saravanan Resume - Copy.docx', NULL, NULL, '2020-10-07', 0, '', '5', '27', NULL, 0.00, '01:21 PM', '0', NULL, '1', 'Task Incomplete', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 01:17:35', 1, '2020-10-07 01:23:42', 0, NULL, 1),
(971, 'Kowsalya', '4', '8760556552', '', '', '1997-12-23', 22, '2', '2', 'Mohan.k', 'Centring Contractor', 20000.00, 1, 14000.00, 15000.00, 'Ariyalur', 'Chennai', '2010070017', '1', '2', 'upload_files/candidate_tracker/35641441187_Kowsalya CV.pdf', NULL, NULL, '2020-10-08', 0, '', '5', '21', '1970-01-01', 0.00, '01:36 PM', '', '1970-01-01', '2', 'Not Sustain Long Term , Bcz  She Have Offer And Expecting High  Salary ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 01:17:55', 50, '2020-10-08 02:57:30', 0, NULL, 1),
(972, '', '0', '6380441472', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010070018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 02:29:57', 0, NULL, 0, NULL, 1),
(973, '', '0', '6383896801', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010070019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 02:37:23', 0, NULL, 0, NULL, 1),
(974, 'Flora priyadharshini', '4', '9043011484', '7358258955', 'Florakuttypriya@gmail.com', '1998-01-10', 22, '2', '2', 'J.Lazar', 'Daily wages', 10000.00, 1, 0.00, 12000.00, 'No:35pushpanagar 2nd street', 'Nungambakkam', '2010070020', '1', '1', 'upload_files/candidate_tracker/75342875089_FloraLazar.pdf', NULL, NULL, '2020-10-07', 0, '', '8', '', '1970-01-01', 0.00, '03:32 PM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 03:24:54', 50, '2020-10-07 06:39:40', 0, NULL, 1),
(975, 'Sangavi.S', '4', '9789809120', '9940392034', 'ammukavi1813@gmail.com', '1997-12-18', 22, '2', '2', 'S.sankar', 'Dailywage', 10000.00, 1, 0.00, 12000.00, 'No:6/4pushanagar 2nd', 'Nungambakkam chennai 34', '2010070021', '1', '1', 'upload_files/candidate_tracker/9401489511_SANGAVI RESUME.pdf', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '03:41 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 03:25:17', 1, '2020-10-07 03:42:49', 0, NULL, 1),
(976, 'Deepalakshmi. m', '20', '7338990475', '', '', '2000-05-28', 20, '2', '2', 'S. Mahalingam', 'Driver', 12000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2010070022', '2', '1', 'upload_files/candidate_tracker/56630039088_Gmail.pdf', NULL, NULL, '2020-10-08', 0, '', '8', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'candidate not attend the interview', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 04:35:32', 1, '2020-10-08 12:04:44', 0, NULL, 1),
(977, 'B.vijayalakshmi', '4', '7010132969', '9841525016', 'Viji1232000@gmail.com', '2000-03-12', 20, '1', '2', 'S.Babu', '266666', 15000.00, 1, 0.00, 12000.00, 'Plot no. 142, EVP Prabu Avehennai 600 122', 'Plot No. 142, EVP Prabu A, Chennai 600 122', '2010070023', '', '1', 'upload_files/candidate_tracker/45499704125_VIJI RESUME-1.docx', NULL, NULL, '2020-10-08', 0, '66673', '3', '8', '1970-01-01', 120000.00, '11:17 AM', '2', '1970-01-01', '2', 'she is from ambatur need to check.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 06:01:48', 7, '2020-10-12 11:57:18', 0, NULL, 1),
(978, 'R.Hemalatha', '4', '8838674347', '9790721087', 'lhema5626@gmail.com', '2000-04-12', 20, '1', '2', 'D.rajendran', 'Water chemical operater', 15000.00, 1, 0.00, 12000.00, 'shi Amman nager, alwarthirunager Chennai_600087', 'man nager Alwarthirunager Chennai _ 600087', '2010070024', '', '1', 'upload_files/candidate_tracker/70143102153_Document-WPS Office.pdf', NULL, NULL, '2020-10-08', 0, '66673', '5', '13', NULL, 0.00, '11:16 AM', '0', NULL, '2', 'Convincing  level poor', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 06:03:09', 1, '2020-10-08 11:37:10', 0, NULL, 1),
(979, 'Sharfunissa begum', '16', '9566096925', '', 'nisharehana9@gmail.com', '1997-01-19', 23, '2', '2', 'Muktheir', 'Auto driver', 30000.00, 0, 15000.00, 30000.00, 'Chennai', 'Chennai', '2010070025', '1', '2', 'upload_files/candidate_tracker/59350649671_1_My resume.docx', NULL, NULL, '2020-10-11', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 10:33:56', 1, '2020-10-08 09:00:17', 0, NULL, 1),
(980, '', '0', '6381452271', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 12:25:25', 0, NULL, 0, NULL, 1),
(981, '', '0', '8438917131', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 01:00:13', 0, NULL, 0, NULL, 1),
(982, '', '0', '8125650029', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 01:22:27', 0, NULL, 0, NULL, 1),
(983, '', '0', '9952941541', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 01:25:21', 0, NULL, 0, NULL, 1),
(984, 'J. HEMANTH KUMAR', '4', '9739318196', '', 'hemanth.jawaji9999@gmail.com', '1993-11-07', 26, '2', '2', 'j. sreenivasulu', 'business', 15.00, 1, 23000.00, 20000.00, 'arekara', 'arekara', '2010080005', '7', '2', 'upload_files/candidate_tracker/32808836010_hemanth jawaji_CRM_CAFS.pdf', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '02:00 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 10:43:45', 1, '2020-10-08 12:08:14', 0, NULL, 1),
(985, 'Saranya.D', '4', '6369608984', '8072266916', 'saara24101999@gmail.com', '1999-10-24', 20, '1', '2', 'Devarajan.D', 'Driver', 25000.00, 1, 0.00, 10000.00, 'Saidapet', 'Saidapet', '2010080006', '', '1', 'upload_files/candidate_tracker/11098326476_66049389053_Final Resume of Saranya (7).docx', NULL, NULL, '2020-10-08', 0, '5419', '3', '8', '2020-10-12', 120000.00, '10:58 AM', '4', '2020-11-21', '2', '10K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 10:50:11', 7, '2020-10-12 01:22:52', 0, NULL, 1),
(986, 'Esakkiyappan Sankar M', '4', '6385114214', '7200504004', 'sankaresk@gmail.com', '1991-07-26', 29, '2', '2', 'Muthiah A', 'Farmar', 30000.00, 1, 8000.00, 15000.00, '21 south st Urkad, Ambasamudram, Tirunelveli', 'Chennai', '2010080007', '1', '2', 'upload_files/candidate_tracker/22127653976_biodata(1).doc', NULL, NULL, '2020-10-08', 0, '', '5', '13', NULL, 0.00, '12:05 PM', '0', NULL, '2', 'he is intrested only nonvoice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 11:08:30', 1, '2020-10-08 01:11:19', 0, NULL, 1),
(987, 'Sathiskumar', '16', '8220928879', '', 'sathiskumar2008@ymail.com', '1989-06-01', 31, '2', '1', 'Dinakaran', 'Sales', 20000.00, 3, 17000.00, 23000.00, 'Chennai', 'Chennai', '2010080008', '1', '2', 'upload_files/candidate_tracker/220973929_Sathis Kumar -bank-1-1.docx', NULL, NULL, '2020-12-10', 30, '', '5', '8', '1970-01-01', 0.00, '11:12 AM', '', '1970-01-01', '1', 'already  Attended interview for MIS. now as RM, will not suite for sales.', '3', '2', '', '', '', '', '2', '1970-01-01', '3', '7', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-08 11:09:12', 58, '2020-12-23 02:50:52', 0, NULL, 1),
(988, 'D.praveen kumar', '5', '9087832300', '9566150845', 'kuttypraveen25@gmail.com', '1992-09-25', 28, '1', '1', 'G.Dayalan', 'Fisher Department', 20000.00, 1, 17000.00, 23000.00, 'Nanganallur', 'Nanganallur', '2010080009', '', '2', 'upload_files/candidate_tracker/40235076340_praveenkumar.2514(2).pdf', NULL, NULL, '2020-10-08', 15, 'Arun Kumar (RM)', '5', '36', NULL, 0.00, '11:36 AM', '0', NULL, '1', 'na', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 11:31:10', 1, '2020-10-08 11:37:17', 0, NULL, 1),
(989, 'M.balamurugan', '5', '9176751179', '9843660268', 'bala14jayam@gmail.com', '1988-10-20', 31, '2', '1', 'Uma maheshwari', 'House wife', 40000.00, 1, 360000.00, 450000.00, 'Chennai', 'Chennai', '2010080010', '3', '2', 'upload_files/candidate_tracker/63566003360_RESUME 2020 MAY.doc', NULL, NULL, '2020-10-08', 0, '', '5', '51', NULL, 0.00, '01:05 PM', '0', NULL, '1', 'given information by him is fake', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 11:31:50', 1, '2020-10-08 11:37:11', 0, NULL, 1),
(990, '', '0', '7204939678', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 11:46:58', 0, NULL, 0, NULL, 1),
(991, '', '0', '9789817259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 11:47:06', 0, NULL, 0, NULL, 1),
(992, '', '0', '8608742453', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 11:47:46', 0, NULL, 0, NULL, 1),
(993, 'M. Aakila banu', '4', '9498350885', '8608248302', 'aakilathuslim@gmail.com', '1999-09-07', 21, '2', '2', 'G. Mohammed Ali', 'Turner', 15000.00, 1, 0.00, 11000.00, 'Surapet', 'Shanmugapuram', '2010080014', '7', '1', 'upload_files/candidate_tracker/60207259782_ aakila aakilathuslim resume.pdf', NULL, NULL, '2020-10-08', 0, '', '5', '8', '1970-01-01', 0.00, '12:13 PM', '', '1970-01-01', '2', 'will not suite for CRM. not speaking up', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 11:48:17', 8, '2020-10-09 11:25:01', 0, NULL, 1),
(994, 'M.priya', '4', '6382171055', '8056010684', 'priyalekha1999@gmail.com', '1999-07-08', 21, '2', '2', 'M.muthu', 'Construction helper', 10000.00, 2, 0.00, 12000.00, 'Ambattur', 'Ambattur', '2010080015', '1', '1', 'upload_files/candidate_tracker/30219492243_Resume-2.pdf', NULL, NULL, '2020-10-08', 0, '', '5', '8', '1970-01-01', 0.00, '11:57 AM', '', '1970-01-01', '2', 'will not suite for CRM, not speaking up', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 11:48:19', 8, '2020-10-09 11:25:47', 0, NULL, 1),
(995, 'M MOHAMMED ALI', '6', '6380714403', '8682869743', 'ucantcme131@gmail.com', '1997-12-13', 22, '1', '2', 'M MOHAMMED YUSUF', 'Biscuit sales', 10000.00, 1, 13000.00, 16000.00, 'No 38 Palani Andavar koil Street Ayanavaram', 'Chennai 600023', '2010080016', '', '2', 'upload_files/candidate_tracker/72221664719_Cv.docx', NULL, NULL, '2020-10-08', 0, '5626', '5', '22', NULL, 0.00, '12:32 PM', '0', NULL, '1', 'appearance and comunication is not good', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 12:15:30', 1, '2020-10-08 12:45:39', 0, NULL, 1),
(996, 'manojkumar r', '14', '9003116732', '9444940994', 'manoj.ravi94@gmail.com', '1994-09-04', 26, '2', '2', 'ravi r', 'mechanic', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'chennai', '2010080017', '1', '1', 'upload_files/candidate_tracker/95340467870_MANOJKUMAR\'s Resume (6).pdf', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '01:45 PM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 01:05:51', 1, '2020-10-08 01:46:05', 0, NULL, 1),
(997, '', '0', '8608742465', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 01:10:11', 0, NULL, 0, NULL, 1),
(998, '', '0', '8838093239', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 01:11:29', 0, NULL, 0, NULL, 1),
(999, 'K. Ramya', '4', '9940254031', '', 'krkramya1998@gmail.com', '1998-04-20', 22, '2', '2', 'E. Kalidasan', 'Aachi ASM', 35000.00, 2, 0.00, 15000.00, 'Tambaram', 'East tambaram', '2010080020', '1', '1', 'upload_files/candidate_tracker/35663320325_RAMYA ECE.docx', NULL, NULL, '2020-10-12', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Convincing Skills	low', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 01:28:22', 50, '2020-10-12 11:51:30', 0, NULL, 1),
(1000, 'VIGNESH SARAVANAN', '13', '9597986596', '9894111580', 'Vigneshvickycse51@gmail.com', '1998-04-02', 22, '2', '2', 'Saravanan', 'Office admin', 20000.00, 1, 0.00, 10000.00, 'Coimbatore', 'Coimbatore', '2010080021', '1', '1', 'upload_files/candidate_tracker/95155520797_101627.pdf', NULL, NULL, '2020-10-10', 0, '', '8', '', '1970-01-01', 0.00, '01:37 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 01:42:14', 50, '2020-10-10 06:21:20', 0, NULL, 1),
(1001, 'Prabu', '16', '6381849520', '8056380307', 'Prabu198@yahoo.co.in', '1984-05-23', 36, '2', '1', 'Angammal', 'Home maker', 25000.00, 3, 25000.00, 20000.00, '29, mariyamman koil st, semmedu, panruti', 'Cruz stays, somasundaram Avenue, porur, chennai', '2010080022', '1', '2', 'upload_files/candidate_tracker/31944381416_Prabu (1).docx', NULL, NULL, '2020-10-09', 0, '', '8', '', '1970-01-01', 0.00, '02:10 PM', '', '1970-01-01', '2', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 02:02:24', 50, '2020-10-09 12:28:45', 0, NULL, 1),
(1002, 'pooja.p', '4', '9902206807', '', 'pooja3151997gmail.com', '1998-05-31', 22, '2', '2', 'puttaraju m', 'civilcontractor', 20000.00, 1, 0.00, 20000.00, 'Bangalore', 'Bangalore', '2010080023', '1', '1', 'upload_files/candidate_tracker/93938292069_POOJA.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '38', NULL, 0.00, '04:28 PM', '0', NULL, '2', 'she will handle pressure and will not suit for our field', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 03:15:25', 1, '2020-10-09 04:30:05', 0, NULL, 1),
(1003, '', '0', '8722747018', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 03:16:25', 0, NULL, 0, NULL, 1),
(1004, 'sabarish kumar k', '6', '9840255796', '', 'skumar18@live.com', '1990-02-18', 30, '2', '2', 'kuppan c', 'other', 43000.00, 1, 23000.00, 30000.00, 'chennai', 'chennai', '2010080025', '1', '2', 'upload_files/candidate_tracker/38838685207_sabari.resume.docx_ live.docx', NULL, NULL, '2020-10-08', 0, '', '5', '15', NULL, 0.00, '03:28 PM', '0', NULL, '2', 'not sustain', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 03:24:47', 1, '2020-10-08 03:44:40', 0, NULL, 1),
(1005, 'varadharajan s', '13', '8300661507', '', '', '1997-03-18', 23, '2', '2', 'saravanan', 'former', 8000.00, 2, 0.00, 13000.00, 'villupuram', 'chennai', '2010080026', '1', '1', 'upload_files/candidate_tracker/97180310827_Resume.pdf', NULL, NULL, '2020-10-10', 0, '', '8', '', '1970-01-01', 0.00, '02:30 PM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 06:17:43', 50, '2020-10-10 06:21:05', 0, NULL, 1),
(1006, 'Geetha', '4', '8526751065', '7397308386', 'Geethaelumalai10@gmail.com', '2000-01-10', 20, '2', '2', 'Elumalai', 'No need', 50000.00, 0, 13000.00, 14000.00, 'Tambaram', 'Tambaram', '2010080027', '1', '2', 'upload_files/candidate_tracker/38283694934_1602218562392_Microsoft Word - geetha.pdf', NULL, NULL, '2020-10-09', 0, '', '3', '8', '1970-01-01', 120000.00, '12:00 PM', '2', '1970-01-01', '2', '10K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 07:59:12', 7, '2020-10-09 07:08:17', 0, NULL, 1),
(1007, '', '0', '8838792188', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 06:15:34', 0, NULL, 0, NULL, 1),
(1008, '', '0', '7975060583', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 06:47:14', 0, NULL, 0, NULL, 1),
(1009, '', '0', '6374563978', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 08:29:14', 0, NULL, 0, NULL, 1),
(1010, '', '0', '9344483625', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 08:50:02', 0, NULL, 0, NULL, 1),
(1011, 'N.SUSILA', '4', '7871181622', '8428643445', 'susila6049@gmail.com', '1998-12-22', 21, '2', '2', 'P.Nallathambi', 'Water can supply', 9000.00, 3, 0.00, 12000.00, 'Camp road', 'Camp road', '2010090005', '1', '1', 'upload_files/candidate_tracker/96681604455_SUSILA N.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '21', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'Not Sustain Long Term  Bcz Of Family Backround', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 09:12:47', 50, '2020-10-12 11:51:40', 0, NULL, 1),
(1012, 'D. Manikandan', '16', '6382576633', '9840969335', 'Manithalarasigan1995@gmail.com', '1995-10-30', 24, '1', '2', 'M. Durairaj', 'Barbur', 30000.00, 0, 12000.00, 15000.00, 'No.164/9 S. Puram foreshore estate Chennai 600028', 'No. 164/9 s. Puram foreshore estate Chennai 600028', '2010090006', '', '2', 'upload_files/candidate_tracker/69717692348_New Doc 2020-10-09 10.34.29.pdf', NULL, NULL, '2020-10-09', 0, '5277', '5', '53', NULL, 0.00, '10:26 AM', '0', NULL, '2', 'he wont suit for any profile in cafs', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 09:58:29', 1, '2020-10-09 12:57:00', 0, NULL, 1),
(1013, 'M. Gopi', '4', '9080465687', '8428988692', 'billagopi17@gmail.com', '1999-08-09', 21, '1', '2', 'E. Maari', 'Driver', 30000.00, 1, 0.00, 15000.00, '144,bojaraja nagar, korukkupet, chennai 600021', 'No1, egappan street, korukkupet, chennai 600021', '2010090007', '', '1', 'upload_files/candidate_tracker/11868721112_default.pdf', NULL, NULL, '2020-10-09', 0, '5551', '3', '8', '2020-10-12', 120000.00, '10:20 AM', '3', '2020-11-02', '1', '10K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 10:13:00', 7, '2020-10-09 07:09:15', 0, NULL, 1),
(1014, '', '0', '8778350186', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 10:24:59', 0, NULL, 0, NULL, 1),
(1015, 'Aswin', '7', '9176468084', '8939622938', 'aswinkumar096@gmail.com', '1997-04-10', 23, '1', '2', 'Vijaya Kumar', 'Watchman', 9000.00, 1, 13000.00, 19500.00, 'Chennai', 'Chennai', '2010090009', '', '2', 'upload_files/candidate_tracker/67822626018_RESUME-V. Aswin_Final_21-Oct-19_11.56.48.docx', NULL, NULL, '2020-10-09', 0, '5277', '5', '35', '1970-01-01', 0.00, '10:20 AM', '', '1970-01-01', '1', 'Candidate Dont Have A Knowledge  About Mutual Fund. And He Looking A Operational Job, Not Okay For Sales.', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 10:25:53', 50, '2020-10-09 10:58:33', 0, NULL, 1),
(1016, 'Suresh', '16', '9600116707', '', 'nagasuresh013@gmail.com', '1991-06-05', 29, '2', '1', 'Nagarajan', 'Farmer', 10000.00, 0, 20000.00, 20000.00, 'Ariyalur', 'Chennai', '2010090010', '1', '2', 'upload_files/candidate_tracker/21569215979_suresh MIS profile .doc', NULL, NULL, '2020-10-09', 0, '', '5', '54', '1970-01-01', 0.00, '11:17 AM', '', '1970-01-01', '1', 'He left office, no information', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 10:39:40', 50, '2020-10-09 11:24:58', 0, NULL, 1),
(1017, 'B.kaladhar vara kumar', '16', '8489875309', '', 'kaladharboppuri@gmail.com', '1996-08-20', 24, '2', '2', 'Shyam', 'Teacher', 20000.00, 2, 17000.00, 22000.00, 'Bestawaripeta Andhra Pradesh', 'Chennai', '2010090011', '1', '2', 'upload_files/candidate_tracker/83407062126_B. KALADHAR CV.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '53', '1970-01-01', 0.00, '10:43 AM', '', '1970-01-01', '2', 'Sustain issue. he s not ok with bonds', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 10:40:34', 50, '2020-10-09 11:14:12', 0, NULL, 1),
(1018, 'Praveen Kumar', '16', '9894129053', '8072441739', 'Pparrikumar@gmail.com', '1994-09-13', 26, '2', '2', 'Mr.a.pasupathi', 'Working in men\'s parlour', 10000.00, 1, 21000.00, 25000.00, 'Chennai', 'Chennai', '2010090012', '1', '2', 'upload_files/candidate_tracker/9537552507_PRAVEEN KUMAR 21.docx', NULL, NULL, '2020-10-09', 0, '', '5', '54', NULL, 0.00, '10:58 AM', '0', NULL, '1', 'Task Incomplete', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 10:53:57', 1, '2020-10-09 11:04:18', 0, NULL, 1),
(1019, 'P uma Maheswari', '4', '9514063597', '7871705887', 'umaboomi06@gmail.com', '2000-02-13', 20, '2', '2', 'Prakasam', 'Cooli', 8000.00, 1, 0.00, 12000.00, 'Chennai', 'Moolakadai', '2010090013', '1', '1', 'upload_files/candidate_tracker/43737362408_Uma.docx', NULL, NULL, '2020-10-09', 0, '', '5', '21', '1970-01-01', 0.00, '11:06 AM', '', '1970-01-01', '2', 'she  is  interested in data entry job ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 11:02:49', 50, '2020-10-09 11:13:51', 0, NULL, 1),
(1020, 'Suseela munusamy', '7', '9710290805', '8939138395', 'Susila871@gmail.com', '1995-03-05', 25, '2', '2', 'Munusamy', 'Carpenter', 35000.00, 1, 17000.00, 20000.00, 'Teynampet', 'Teynanpet', '2010090014', '1', '2', 'upload_files/candidate_tracker/50399725862_Resume-Suseela AML M.docx', NULL, NULL, '2020-10-09', 45, '', '5', '53', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '1', 'She s looking fro mis or any non voice process, but she dont have exp in excel even she dont hve basic knowledge in excel', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 11:12:20', 50, '2020-10-09 11:48:27', 0, NULL, 1),
(1021, 'B.sivapriya', '4', '9791340201', '', 'sivapriyabaskaran98@gmail.com', '1998-10-15', 21, '2', '2', 'Kothai ammal', 'Home maker', 100000.00, 1, 0.00, 10000.00, 'Tindivanam', 'Chennai', '2010090015', '1', '1', 'upload_files/candidate_tracker/75931458763_file1_1602223483507.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '21', NULL, 0.00, '12:00 PM', '0', NULL, '2', 'She Is Not Sustain Long Term Bcz,Already In Accounts Field xxampAlso Expecting Above 12k Salary', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 11:18:50', 1, '2020-10-09 12:21:52', 0, NULL, 1),
(1022, '', '0', '9884968587', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 11:30:49', 0, NULL, 0, NULL, 1),
(1023, 'Deepak. S', '4', '7358646923', '9444346110', 'Saideepaks1996@gmail.com', '1996-02-02', 24, '1', '2', 'K. P. M. Shankar', 'Advocate', 40000.00, 1, 0.00, 25000.00, 'Kodambakkam', 'Choolaimedu', '2010090017', '', '1', 'upload_files/candidate_tracker/10658762677_New Doc 2020-10-09 13.01.38.pdf', NULL, NULL, '2020-10-09', 0, 'Stephenraj', '5', '13', '1970-01-01', 0.00, '01:20 PM', '', '1970-01-01', '1', 'not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 11:42:46', 50, '2020-10-09 01:44:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1024, 'venkatesan.c', '4', '7401520704', '8870704841', 'venkatesan.cka07@gmail.com', '1992-05-04', 28, '1', '2', 'cahkkaravarthi', 'mother', 150000.00, 2, 18000.00, 15000.00, 'chennai', 'chennai', '2010090018', '', '2', 'upload_files/candidate_tracker/46992448441_venkat_resume-converted (1).docx', NULL, NULL, '2020-10-09', 2, 'mbp079', '5', '14', NULL, 0.00, '03:05 PM', '0', NULL, '1', 'not suitable for this profile', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 11:45:20', 1, '2020-10-09 03:18:38', 0, NULL, 1),
(1025, 'Mayadevi.s', '4', '8870748422', '6379293116', 'mayadevi2306@gmail.com', '1995-06-23', 25, '1', '2', 'Sethupathi', 'Driver', 100000.00, 2, 0.00, 12000.00, 'Madurai', 'Chennai', '2010090019', '', '1', 'upload_files/candidate_tracker/67493433145_file1_1602225178508.pdf', NULL, NULL, '2020-10-09', 0, 'Tellecaller', '6', '0', NULL, 0.00, '12:15 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 11:57:06', 1, '2020-10-09 12:16:42', 50, '2020-10-09 07:15:11', 0),
(1026, '', '0', '8939594298', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 12:00:18', 0, NULL, 0, NULL, 1),
(1027, 'Shalini', '4', '6369131450', '8682864681', 'shalnitabi8235@gmail.com', '1999-12-23', 20, '2', '2', 'Thulasingam', 'Driver', 20000.00, 1, 0.00, 10000.00, 'Kundrathur', 'Kundrathur', '2010090021', '1', '1', 'upload_files/candidate_tracker/65190839182_1601901643255Resume_Shalini.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '14', '1970-01-01', 0.00, '12:29 PM', '', '1970-01-01', '1', 'looking for data entry not suitable for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 12:00:44', 50, '2020-10-09 12:34:36', 0, NULL, 1),
(1028, 'Tamilarasi.N', '4', '7358519583', '', 'tamizharasinehru22@gmail.com', '2000-05-22', 20, '2', '2', 'Nehru', 'Ironing shop', 15000.00, 1, 0.00, 10000.00, 'Porur', 'Porur', '2010090022', '1', '1', 'upload_files/candidate_tracker/98913927205_TAMILARASI Resume 3.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '21', '1970-01-01', 0.00, '12:07 PM', '', '1970-01-01', '1', 'Not Bold , Not Fit For Sales..Long Distance', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 12:01:20', 50, '2020-10-09 12:29:37', 0, NULL, 1),
(1029, '', '0', '9884968784', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 12:08:49', 0, NULL, 0, NULL, 1),
(1030, 'Mayadevi.s', '4', '6379293116', '', 'mayadevi2306@gmail.com', '1995-06-23', 25, '2', '2', 'Sethupathy', 'Driver', 100000.00, 2, 0.00, 10000.00, 'Madurai', 'Chennai', '2010090024', '1', '1', 'upload_files/candidate_tracker/29066102801_file1_1602225178508.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '13', NULL, 0.00, '12:00 PM', '0', NULL, '2', 'she is not suitable for pressure handling', '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 12:23:47', 1, '2020-10-09 12:25:31', 0, NULL, 1),
(1031, 'Sandhiya.E', '4', '7305725655', '', 'priyabaskaransakthi@g.mail.com', '1999-11-17', 20, '2', '2', 'Elangovan', 'Driver', 100000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2010090025', '1', '1', 'upload_files/candidate_tracker/44624512459_file1_1602227407077.pdf', NULL, NULL, '2020-10-09', 0, '', '3', '8', '1970-01-01', 120000.00, '12:00 PM', '2', '1970-01-01', '2', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 12:30:30', 7, '2020-10-09 07:09:51', 0, NULL, 1),
(1032, 'adhava raj t', '16', '9080310398', '9962033505', 'adhavraj1992@gmail.com', '1992-09-08', 28, '2', '2', 'thangaraj', 'father', 35000.00, 3, 0.00, 35000.00, 'Chennai', 'chennai', '2010090026', '1', '2', 'upload_files/candidate_tracker/80730698270_1602066417712_Adhava Raj T VBA Resume New.docx', NULL, NULL, '2020-10-09', 0, '', '5', '53', '1970-01-01', 0.00, '01:34 PM', '', '1970-01-01', '2', 'not suit for mis', '3', '2', '', '', '', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-09 01:31:06', 58, '2020-12-29 10:21:26', 0, NULL, 1),
(1033, '', '0', '9080310498', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 01:41:07', 0, NULL, 0, NULL, 1),
(1034, 'mariappan j', '16', '8344718016', '9677747138', 'mariappan8344@gmail.com', '1993-05-25', 27, '2', '2', 'jothimurugan a', 'late', 10000.00, 1, 30000.00, 20000.00, 'virudhunagar', 'potheri', '2010090028', '1', '2', 'upload_files/candidate_tracker/54584071354_Mariappan Resume.docx', NULL, NULL, '2020-10-09', 0, '', '5', '53', '1970-01-01', 0.00, '02:24 PM', '', '1970-01-01', '2', 'dont hve exp in excel\n', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 02:20:59', 50, '2020-10-09 02:53:32', 0, NULL, 1),
(1035, 'sneha rani b s', '4', '6363652537', '', 'snehabs055@gmail.com', '1999-03-16', 21, '2', '2', 'suresh', 'farmer', 11000.00, 0, 0.00, 14000.00, 'tumkur', 'bangalore', '2010090029', '1', '1', 'upload_files/candidate_tracker/48861376471_Sneha Resume.pdf', NULL, NULL, '2020-10-09', 0, '', '3', '8', '2020-10-14', 132000.00, '04:13 PM', '0', NULL, '2', '11K for gowshick team', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 04:10:49', 1, '2020-10-09 04:22:18', 0, NULL, 1),
(1036, '', '0', '7338630714', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 04:13:54', 0, NULL, 0, NULL, 1),
(1037, 'Livingston', '4', '9789891026', '', 'Libingstonliving1999@gmail.com', '1999-07-09', 21, '2', '2', 'Sagayaraj A', 'Driver', 15000.00, 0, 0.00, 13000.00, 'Tambaram', 'Tambaram', '2010090031', '1', '1', 'upload_files/candidate_tracker/1169010645_LIVINGSTON RESUME.pdf', NULL, NULL, '2020-10-10', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not  Sustain Long Term xxamp Also Joining It Course , xxampNow He Want Data Entry Job.. ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 05:26:59', 50, '2020-10-10 11:30:11', 0, NULL, 1),
(1038, 'S.Ruban Raj', '16', '9087845662', '9080315277', 'Ruban5662@gmail.com', '1995-07-17', 25, '2', '2', 'A.Sathya Nathan', 'Electrisian', 20000.00, 1, 14400.00, 15000.00, 'Puliyanthope', 'Puliyanthope', '2010090032', '3', '2', 'upload_files/candidate_tracker/79642187806_RubanResume-2020.docx', NULL, NULL, '2020-10-10', 0, '', '5', '53', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'He dont knw basic functions nd formulas also. he ll not suit fr MIS', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 07:25:08', 1, '2020-10-09 07:39:07', 0, NULL, 1),
(1039, 'Manibharathi', '13', '8973644490', '', 'pmanibharathi1998@gmail.com', '1998-04-07', 22, '2', '2', 'Periyasamy', 'Driver', 45000.00, 1, 0.00, 15000.00, 'Namakkal', 'Chennai', '2010090033', '1', '1', 'upload_files/candidate_tracker/12976171174_MANIBHARATHI.pdf', NULL, NULL, '2020-10-10', 0, '', '8', '54', NULL, 0.00, '11:40 AM', '0', NULL, '2', 'not Attended', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 07:39:35', 1, '2020-10-09 07:43:28', 0, NULL, 1),
(1040, 'R.Ranjith Kumar', '16', '9710040011', '9710040051', 'Ranjithloyola467@gmail.com', '1995-12-31', 24, '2', '2', 'S.Rajendran', 'Carpenter', 20000.00, 2, 14400.00, 15000.00, 'Puliyanthope', 'Puliyanthope', '2010090034', '3', '2', 'upload_files/candidate_tracker/12026685060_RanjithResume-2020.docx', NULL, NULL, '2020-10-10', 0, '', '5', '53', NULL, 0.00, '10:10 AM', '0', NULL, '1', 'dont hve knowledge in excel, even he doesnt knw the functions nd basic formulas.', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 08:14:20', 1, '2020-10-09 08:17:52', 0, NULL, 1),
(1041, 'Jagannathan S', '4', '9677528970', '', 'Srijagan95@gmail.com', '1995-05-06', 25, '2', '2', 'Srinuvasan', 'Painter labour', 6000.00, 1, 18000.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2010090035', '3', '2', 'upload_files/candidate_tracker/61181977664_jagan.docx', NULL, NULL, '2020-10-12', 0, '', '5', '53', NULL, 0.00, '11:34 AM', '0', NULL, '2', 'in excel he dont know the basic formulas also', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 08:35:19', 1, '2020-10-12 11:35:18', 0, NULL, 1),
(1042, 'Rajeshwari P', '4', '9791010287', '9551363609', 'rajeshwarikp2000@gmail.com', '2000-03-28', 20, '2', '2', 'Pakkirisamy K', 'Cooli', 15000.00, 1, 0.00, 13000.00, 'Perungalathur', 'Perungalathur', '2010090036', '1', '1', 'upload_files/candidate_tracker/17955888070_1597286803595_current resume for raji.pdf', NULL, NULL, '2020-10-10', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 08:35:42', 50, '2020-10-10 06:20:56', 0, NULL, 1),
(1043, 'Barkathulla basha s', '4', '9500696511', '', 'barkathulla9500@gmail.com', '1990-09-21', 30, '2', '2', 'S.jameeludin', 'Egg business', 15000.00, 0, 0.00, 15000.00, 'Kanchipuram', 'Kanchipuram', '2010090037', '1', '1', 'upload_files/candidate_tracker/90941718599_barkathulla basha s RESUME.docx', NULL, NULL, '2020-10-10', 0, '', '5', '14', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'not fit for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 09:07:25', 50, '2020-10-10 10:30:22', 0, NULL, 1),
(1044, 'Nedunchezhiyan.s', '5', '9524290069', '9095958165', 'Nedunchezhiyan34@gmail.com', '1996-01-17', 24, '1', '2', 'P.c.selladurai', 'Former', 85000.00, 1, 20000.00, 22000.00, 'Kolli hills Namakkal', 'Alandur Chennai', '2010100001', '', '2', 'upload_files/candidate_tracker/72014799022_Nedu-converted.pdf', NULL, NULL, '2020-10-10', 0, 'G.ramkumar', '3', '8', '2020-10-19', 264000.00, '11:11 AM', '3', '2020-12-01', '1', '22K for  Sarath team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 10:25:48', 7, '2020-10-22 05:27:55', 0, NULL, 1),
(1045, 'K Naresh', '13', '6383241307', '9597884711', 'muralinaresh2000@gmail.com', '2000-01-28', 20, '2', '2', 'K Chandiran', 'Driver', 12000.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2010100002', '1', '1', 'upload_files/candidate_tracker/10841404150_NareshK1.pdf', NULL, NULL, '2020-10-10', 0, '', '8', '54', '1970-01-01', 0.00, '11:18 AM', '', '1970-01-01', '2', 'not Attended\n', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 11:15:44', 50, '2020-10-10 11:30:55', 0, NULL, 1),
(1046, 'Pravin b', '13', '6382575653', '', 'Pravinb274999@gmail.com', '1999-04-27', 21, '2', '2', 'Ayyammal b', 'Business', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2010100003', '1', '1', 'upload_files/candidate_tracker/12674877041_pravin-PDF2020.docx', NULL, NULL, '2020-10-10', 0, '', '8', '54', '1970-01-01', 0.00, '11:26 AM', '', '1970-01-01', '2', 'not attended', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 11:20:27', 50, '2020-10-10 11:31:06', 0, NULL, 1),
(1047, 'Palanivel E', '16', '9659723316', '7871931781', 'Pazhanivel7hills@gmail.com', '1992-11-05', 27, '2', '2', 'Elumalai N', 'Daily wage earner', 16250.00, 2, 18000.00, 23400.00, 'Vilupuram', 'Chennai', '2010100004', '3', '2', 'upload_files/candidate_tracker/59711086630_Palanivel Curriculam vitae.doc', NULL, NULL, '2020-10-10', 30, '', '5', '53', '1970-01-01', 0.00, '11:33 AM', '', '1970-01-01', '1', 'he dont hve much knowledge in excel nd powerpoint presentation. exp abv 20k ', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 11:28:24', 50, '2020-10-10 11:44:44', 0, NULL, 1),
(1048, 'Pavithra.s', '4', '7358725953', '9790960516', 'Pavithrasivabaskar@gmail.com', '1998-01-22', 22, '2', '2', 'Sivabaskar.A', 'Formar', 10000.00, 3, 0.00, 10000.00, 'Iyyapanthagal chennai', '12/1342,Pillaiyar Kovil St,Iyyapanthagal', '2010100005', '1', '1', 'upload_files/candidate_tracker/99353041576_pavit.pdf', NULL, NULL, '2020-10-10', 0, '', '5', '14', '1970-01-01', 0.00, '11:36 AM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 11:36:39', 50, '2020-10-10 01:03:09', 0, NULL, 1),
(1049, 'Ananthanathan N', '4', '9786031363', '', 'ANANTHANATHAN26@GMAIL.COM', '1996-06-02', 24, '2', '2', 'Natarajan', 'Farmer', 15000.00, 2, 0.00, 20000.00, '233,ammankoil Street,Viruthangan&post,Cuddalore DT', 'Chennai,Annanagar', '2010100006', '1', '1', 'upload_files/candidate_tracker/21385432868_ananthanathan 1.pdf', NULL, NULL, '2020-10-10', 0, '', '5', '21', '1970-01-01', 0.00, '12:01 PM', '', '1970-01-01', '1', 'Not Sustain Bcz, He  Have More 10  Yrs Experienced  In Front Office Asst In Hotel xxamp Resorts ...Also Expecting 15 K Above For Crm ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 11:51:45', 50, '2020-10-10 01:01:16', 0, NULL, 1),
(1050, 'seetharaman r', '16', '7598620500', '8220562257', 'seetharamankadayam@gmail.com', '1991-06-01', 29, '2', '2', 'raveendran o', 'tm bsnl retired', 27000.00, 5, 20000.00, 25000.00, 'kadayam tenkasi', 'thirumangalam chennai', '2010100007', '1', '2', 'upload_files/candidate_tracker/54639328021_Resume SeethaRaman.R -10Oct20200954Am.pdf', NULL, NULL, '2020-10-10', 5, '', '5', '53', '1970-01-01', 0.00, '11:55 AM', '', '1970-01-01', '1', 'did system round but sustainability issue.', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 11:54:27', 50, '2020-10-10 12:47:25', 0, NULL, 1),
(1051, 'Mohamed khalid', '4', '9344673548', '9840499721', 'khalidmohamed221@gmail.com', '1999-02-26', 21, '2', '2', 'Mohamed moideen', 'Driver', 15000.00, 2, 21500.00, 25000.00, 'Perambur', 'Perambur', '2010100008', '1', '2', 'upload_files/candidate_tracker/55718532251_20201008_233147-converted.pdf', NULL, NULL, '2020-10-10', 0, '', '5', '13', '1970-01-01', 0.00, '12:11 PM', '', '1970-01-01', '1', 'Sustainability	 less', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 12:07:32', 50, '2020-10-10 12:34:36', 0, NULL, 1),
(1052, 'M suganthi', '16', '7338908983', '9840501466', 'Lakshmansuganthi@gmail.com', '1988-05-25', 32, '2', '1', 'D lakshman', 'Office assistant', 17000.00, 0, 22000.00, 25000.00, 'Taramani', 'IIT adyar chennai', '2010100009', '1', '2', 'upload_files/candidate_tracker/45447735182_Resume.docx', NULL, NULL, '2020-10-12', 0, '', '5', '53', NULL, 0.00, '12:00 PM', '0', NULL, '1', 'she dont know the basic Excel also, hvng 5 yrs exp but not in this field.. ', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 12:33:21', 1, '2020-10-10 02:56:46', 0, NULL, 1),
(1053, 'Manikandan', '5', '9840757153', '', 'manikalappan05@gmail.com', '1994-02-20', 26, '2', '2', 'M kalappan', 'Business', 300000.00, 2, 19000.00, 25000.00, 'Chennai', 'Chennai', '2010100010', '1', '2', 'upload_files/candidate_tracker/95012528219_manikandank05k-1.pdf', NULL, NULL, '2020-10-13', 10, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 12:39:01', 7, '2020-10-14 03:04:30', 0, NULL, 1),
(1054, 'Nandhini.p', '4', '9790960516', '9940452447', 'Nandhininan@gmail.com', '1998-09-26', 22, '2', '2', 'Palani.b', 'Driver', 12000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2010100011', '1', '1', 'upload_files/candidate_tracker/74823638458_nanadhani.pdf', NULL, NULL, '2020-10-10', 0, '', '5', '21', '1970-01-01', 0.00, '11:36 AM', '', '1970-01-01', '2', 'Not Sustain Long Term Becz, She Already Worked Courier Process Related System Work..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 01:02:21', 50, '2020-10-10 01:56:22', 0, NULL, 1),
(1055, 'S. Kavitha', '4', '9629248053', '8270532517', 'Kavithasellapa99@gmail.com', '1999-07-07', 21, '2', '2', 'Sellappa', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Tanjore (DT)', 'Tambaram', '2010100012', '1', '1', 'upload_files/candidate_tracker/19729332133_1596561873674_kavitha sellapa.docx', NULL, NULL, '2020-10-10', 0, '', '5', '14', NULL, 0.00, '01:19 PM', '0', NULL, '2', 'expecting high salary and not suitable for this profile', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 01:14:26', 1, '2020-10-10 01:33:45', 0, NULL, 1),
(1056, 'Vignesh V', '13', '9080424559', '9003113036', 'vickyvaradharajan555@gmail.com', '1999-05-25', 21, '2', '2', 'Varadharajan', 'Driver', 35000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2010100013', '1', '1', 'upload_files/candidate_tracker/81726481962_Resume.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '54', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'He will not sustain, Package is high ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 01:37:26', 1, '2020-10-10 01:42:15', 0, NULL, 1),
(1057, 'Rajesh', '5', '7401399174', '', '', '1998-02-17', 22, '2', '2', 'Murali', 'Metro water Retire man', 14000.00, 0, 12000.00, 140000.00, 'Kilpauk garden road kilpauk', 'Kilpauk garden Rord kilpauk', '2010100014', '1', '2', 'upload_files/candidate_tracker/20220970480_Rajesh resume.docx', NULL, NULL, '2020-10-10', 7, '', '5', '44', NULL, 0.00, '01:52 PM', '0', NULL, '1', 'He looking for data entry Job', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 01:48:48', 1, '2020-10-10 01:54:53', 0, NULL, 1),
(1058, '', '0', '7305174685', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010100015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 02:07:03', 0, NULL, 0, NULL, 1),
(1059, '', '0', '7338909883', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010100016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 02:24:13', 0, NULL, 0, NULL, 1),
(1060, '', '0', '6374641590', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010100017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 02:58:32', 0, NULL, 0, NULL, 1),
(1061, '', '0', '8608049359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010100018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 03:46:16', 0, NULL, 0, NULL, 1),
(1062, 'Ranjith', '13', '9566127215', '9840076368', 'velusamyranjith@gmail.com', '1998-01-20', 22, '2', '2', 'Elango', 'Employee', 800000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2010100019', '1', '1', 'upload_files/candidate_tracker/84620957454_RANJITH', NULL, NULL, '2020-10-12', 0, '', '5', '54', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '1', 'he is Completely Interested in java so he will not sustain', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 05:53:56', 50, '2020-10-12 02:13:48', 0, NULL, 1),
(1063, '', '0', '7092044903', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010100020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 05:57:36', 0, NULL, 0, NULL, 1),
(1064, 'jaffer test', '13', '9840349400', '', 'moonsat08@gmail.com', '1985-10-10', 35, '2', '2', 'Sathik', 'Former', 10000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2010100021', '1', '1', 'upload_files/candidate_tracker/53144078555_dummy.pdf', NULL, NULL, '2020-10-10', 0, '', '3', '28', '2020-10-13', 10000.00, '04:05 PM', '6', '2020-12-24', '1', 'Ok', '2', '2', '4', '1', '1', '2', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 06:20:13', 1, '2020-10-10 06:27:40', 0, NULL, 1),
(1065, 'Sanjana.R', '4', '9344375941', '9840138381', 'sanjanaramalingam1110@gmail.com', '1999-05-10', 21, '2', '2', 'Ramalingam.M(late)', 'No', 8000.00, 1, 0.00, 12000.00, '7/7 South boag road, t.nagar ch-17', 'saradeuz ecstasy nesamani nagar perubakkam, ch-100', '2010100022', '1', '1', 'upload_files/candidate_tracker/85470582538_Profile of Sanjana(1).doc', NULL, NULL, '2020-10-13', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 08:33:04', 7, '2020-10-14 10:23:46', 0, NULL, 1),
(1066, '', '0', '8939781411', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010100023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 09:27:41', 0, NULL, 0, NULL, 1),
(1067, 'K.Charishma', '4', '7989099319', '', 'kcherishma96@gmail.com', '1995-06-01', 25, '2', '2', 'K.Satyanarayana reddy', 'agriculture', 30000.00, 1, 13000.00, 15000.00, 'kadapa', 'silkboard', '2010110001', '7', '2', 'upload_files/candidate_tracker/83420207652_K Charishma_CRM_CAFS.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '38', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'Her Voice Is Too Low and will not suit for our field', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-11 06:13:22', 1, '2020-10-11 06:19:25', 0, NULL, 1),
(1068, 'K.THEJASREE', '4', '9701044987', '', 'thejasree777@gmail.com', '1996-06-10', 24, '2', '2', 'k venkatramana', 'farmer', 15000.00, 1, 16000.00, 15000.00, 'andraha', 'btm', '2010110002', '7', '2', 'upload_files/candidate_tracker/94111990502_K Thejasree_CRM_CAFS.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '38', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'She Is Looking For Non Voice Process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-11 06:24:34', 50, '2020-10-12 10:42:45', 0, NULL, 1),
(1069, '', '0', '8939079246', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010110003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-11 06:26:37', 0, NULL, 0, NULL, 1),
(1070, '', '0', '9941278402', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010110004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-11 06:54:48', 0, NULL, 0, NULL, 1),
(1071, '', '0', '8838577174', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010110005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-11 08:30:47', 0, NULL, 0, NULL, 1),
(1072, '', '0', '7904200402', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010110006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-11 08:47:54', 0, NULL, 0, NULL, 1),
(1073, 's.suji', '4', '9842408576', '9360616466', 'sureshsuji965@gmail.com', '1998-07-12', 22, '2', '2', 'ramadevi', 'house keeping', 20000.00, 2, 12500.00, 15000.00, 'vadapalani', 'vadapalani', '2010120001', '2', '2', 'upload_files/candidate_tracker/71105728113_1573963895791_1573963894788_1573963893553_1573963892544_0_RESUME.docx', NULL, NULL, '2020-10-12', 0, '', '3', '8', '2020-10-15', 132000.00, '10:30 AM', '6', '2021-03-26', '2', '11K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 09:20:07', 7, '2020-10-13 12:56:52', 0, NULL, 1),
(1074, 'L.Mahalakshmi', '4', '9384642611', '9789864722', 'maha0411lakshmi@gmail.com', '1999-11-04', 20, '1', '2', 'G.Loganathana', 'Tailor', 12000.00, 1, 0.00, 10000.00, '9,Agneswaran kovil street ,Moondram kattalai.', '9,Agneswaran kovil street,Moondram katttali.', '2010120002', '', '1', 'upload_files/candidate_tracker/42459890733_Scan Oct 12, 2020.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '8', NULL, 0.00, '10:25 AM', '0', NULL, '2', 'will not join', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 09:57:37', 1, '2020-10-12 10:31:49', 0, NULL, 1),
(1075, 'E.pavithra', '4', '9176204582', '9791187757', 'Pavielumalai29@gmail.com', '2000-05-29', 20, '1', '2', 'D.Elumalai', 'Painting', 13000.00, 0, 0.00, 10000.00, '59.thiruvaluvar ng Vallalar st kundrathur', '59.thiruvaluvar nagar Vallalar street kundrathur', '2010120003', '', '1', 'upload_files/candidate_tracker/93663422079_Adobe Scan Oct 12, 2020.pdf', NULL, NULL, '2020-10-12', 0, 'Jobs', '5', '21', NULL, 0.00, '10:22 AM', '0', NULL, '2', 'long distance 2 hrs travel...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 09:58:29', 1, '2020-10-12 10:23:10', 0, NULL, 1),
(1076, 'Sudhakar. R', '6', '7708325012', '9659491316', 'moonsudha95@gmail.com', '1995-06-06', 25, '1', '2', 'Ranganathan', 'BE. Aeronautical', 13000.00, 1, 0.00, 15000.00, 'Tiruvannamalai', 'Thambaram, chennai', '2010120004', '', '1', 'upload_files/candidate_tracker/60476517347_Sudhakar resume(1).pdf', NULL, NULL, '2020-10-12', 0, '5562', '3', '8', '2020-10-15', 180000.00, '10:30 AM', '4', '2021-01-22', '1', '15K for saravana team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 10:23:33', 7, '2020-10-13 01:51:26', 0, NULL, 1),
(1077, 'Farvin', '4', '9884196804', '', 'fmehboofbasha@gmail.com', '1999-11-24', 20, '1', '2', 'Mehboof basha( late)', 'Late', 10000.00, 0, 0.00, 12000.00, 'No 42 missa Abraham street mgr Nagar Chennai 78', '42 missa Abraham street mgr Nagar Chennai 78', '2010120005', '', '1', 'upload_files/candidate_tracker/95983810353_New Doc 2020-10-12 13.04.00.pdf', NULL, NULL, '2020-10-12', 0, '5174', '5', '14', '1970-01-01', 0.00, '10:31 AM', '', '1970-01-01', '2', 'not fit for this job', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 10:24:15', 50, '2020-10-12 01:45:48', 0, NULL, 1),
(1078, 'C.GOUTHAMI', '4', '8179702726', '', 'cgouthamimahi@gmail.com', '1994-10-24', 25, '2', '1', 'sudershan', 'sales', 16000.00, 2, 16000.00, 18000.00, 'willsongarden', 'willsongarden', '2010120006', '7', '2', 'upload_files/candidate_tracker/42023720349_Gowthami_CRM_CAFS.pdf', NULL, NULL, '2020-10-12', 0, '', '3', '8', '2020-10-14', 180000.00, '10:40 AM', '4', '2020-12-23', '2', '15K for gowshick team', '1', '2', '1', '2', '2', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 10:33:07', 7, '2020-10-13 02:05:35', 0, NULL, 1),
(1079, 'Bhavani.H', '4', '8838252141', '7550245853', 'Bhavanih31@gmail.com', '1998-10-31', 21, '1', '2', 'Hari.G', 'Bpo', 20000.00, 2, 80000.00, 15000.00, 'Patrician clg opp', 'Gandhinagar adyar', '2010120007', '', '2', 'upload_files/candidate_tracker/4421444841_BHAVANI.docx', NULL, NULL, '2020-10-12', 0, '5266', '3', '8', '2020-10-15', 120000.00, '10:52 AM', '', '2023-03-13', '2', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 10:45:38', 7, '2020-10-13 01:35:07', 0, NULL, 1),
(1080, 'Hariharasudhan S', '13', '7339109635', '8838421193', 'harivel1998@gmail.com', '1998-07-23', 22, '2', '2', 'E. Senthilvel', 'Carpenter', 120000.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Chennai', '2010120008', '1', '1', 'upload_files/candidate_tracker/36342860504_Hariharasudhan S-RESUME(1).pdf', NULL, NULL, '2020-10-12', 0, '', '8', '54', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not attended\n', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 10:58:55', 50, '2020-10-12 12:02:33', 0, NULL, 1),
(1081, 'R.Divya', '4', '7092701814', '9551441834', 'divyarajaram6@gmail.com', '1998-06-06', 22, '1', '2', 'J.Rajaram(late)', 'nil', 200000.00, 2, 0.00, 15000.00, 'valasaravakkam', 'chennai', '2010120009', '', '1', 'upload_files/candidate_tracker/59753768188_RESUME without Photo.pdf', NULL, NULL, '2020-10-12', 0, '2010120009', '5', '14', NULL, 0.00, '11:13 AM', '0', NULL, '1', 'not fit for this profile', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:10:00', 1, '2020-10-12 11:32:00', 0, NULL, 1),
(1082, 'R.priya dharshini', '4', '9384621895', '9789877991', 'deepriya09021999@gamil.com', '1999-06-02', 21, '1', '2', 'M.Raja', 'Cooli', 1500.00, 1, 8000.00, 10500.00, 'CHENNAI', 'CHENNAI', '2010120010', '', '2', 'upload_files/candidate_tracker/48602269853_RESUME PRIYADHARSHINI.docx', NULL, NULL, '2020-10-12', 0, 'Priya Lakshmi', '5', '14', '1970-01-01', 0.00, '11:55 AM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:15:25', 50, '2020-10-12 01:25:35', 0, NULL, 1),
(1083, 'S.deepika', '4', '9789877991', '9962143126', 'Deepika0901999gmail.com', '1998-01-09', 22, '1', '2', 'S.samarapuri', '10', 900000.00, 3, 11000.00, 11500.00, 'Chennai', 'Chennai', '2010120011', '', '2', 'upload_files/candidate_tracker/2030391204_RESUME DEEPIKA.pdf', NULL, NULL, '2020-10-12', 0, 'D.priya Lakshmi', '5', '14', '1970-01-01', 0.00, '11:24 AM', '', '1970-01-01', '1', 'not fit for sales ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:18:39', 50, '2020-10-12 12:24:05', 0, NULL, 1),
(1084, 'SATHISH KUMAR M', '4', '9626791968', '', '', '1992-04-14', 28, '1', '2', 'MOORTHY', 'Farmer', 15000.00, 2, 0.00, 20000.00, 'Maduranthakam', 'Maduranthakam', '2010120012', '', '1', 'upload_files/candidate_tracker/62450475347_MS(1) Resume .pdf', NULL, NULL, '2020-10-12', 0, '5388', '5', '21', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '1', 'already he worked in mobile showroom , paintshop , not profiled also expecting 20 k salary ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:19:13', 50, '2020-10-12 01:25:26', 0, NULL, 1),
(1085, 'Keerthivasan', '13', '7548890095', '6379019239', 'keerthivasan.e.1999@gmail.com', '1999-05-09', 21, '2', '2', 'K. Elangovan', 'Business', 40000.00, 1, 0.00, 15000.00, 'No.18/25 vallalar street nilamangai nagar', 'No.18/25 Vallalar Street Nilamangai Nagar', '2010120013', '1', '1', 'upload_files/candidate_tracker/11436894223_keerthivasan resume.pdf', NULL, NULL, '2020-10-12', 0, '', '8', '54', '1970-01-01', 0.00, '11:27 AM', '', '1970-01-01', '1', 'Not attendend', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 11:23:36', 50, '2020-10-12 11:36:59', 0, NULL, 1),
(1086, 'B.Abirami', '13', '7339221198', '7092670953', 'Abisharm2001@gmail.com', '1995-09-20', 25, '2', '2', 'V.Babu', 'Mason', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2010120014', '1', '1', 'upload_files/candidate_tracker/53347710295_Abi resume-converted.pdf', NULL, NULL, '2020-10-12', 0, '', '8', '54', '1970-01-01', 0.00, '12:07 PM', '', '1970-01-01', '2', 'not Attended', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 11:27:03', 50, '2020-10-12 12:31:13', 0, NULL, 1),
(1087, '', '0', '8825913982', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010120015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:28:17', 0, NULL, 0, NULL, 1),
(1088, 'farhana', '4', '8095456325', '', 'farhanas.1992@gmail.com', '1993-01-20', 27, '2', '2', 'syed', 'auto driver', 20000.00, 3, 15000.00, 17000.00, 'hal', 'hal', '2010120016', '7', '2', 'upload_files/candidate_tracker/21870650561_Farhana_CRM_CAFS.docx', NULL, NULL, '2020-10-12', 20, '', '5', '38', NULL, 0.00, '12:15 PM', '0', NULL, '2', 'kannada language problem for her and she will not suit for this kannada calling process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:29:24', 1, '2020-10-12 12:15:26', 0, NULL, 1),
(1089, 'Ramkumar.r', '5', '9940348471', '9841760616', 'blizardramkumar@gmail.com', '1995-02-28', 25, '1', '2', 'Ravi .s', 'Survayor', 15000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2010120017', '', '1', 'upload_files/candidate_tracker/47104552721_Ram resume.2020(1)(1).pdf', NULL, NULL, '2020-10-12', 0, '5388', '5', '44', NULL, 0.00, '11:33 AM', '0', NULL, '1', 'Not fit for life sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:30:16', 1, '2020-10-12 11:33:55', 0, NULL, 1),
(1090, 'Ganeshbabu D', '13', '7708543106', '8778314762', 'ganeshdbabu11@gmail.com', '1994-11-11', 25, '2', '2', 'Dhakshinamoorth', 'lecturare', 10000.00, 1, 0.00, 15000.00, 'Thirukoilur', 'perungalathur', '2010120018', '1', '1', 'upload_files/candidate_tracker/71602352307_New Resume Update.docx', NULL, NULL, '2020-10-13', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He is not strong in php basic', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 11:32:02', 7, '2020-10-14 03:04:10', 0, NULL, 1),
(1091, 'Nirmal', '6', '8428238687', '9884854627', 'nirmalvadivel1998@gmail.com', '1998-06-09', 22, '1', '2', 'D. Vadivel', 'Steel worker', 40000.00, 2, 0.00, 13.00, 'Thiruvottiyur', 'Thiruvottiyur', '2010120019', '', '1', 'upload_files/candidate_tracker/24667053882_Nirmal_pdf.pdf', NULL, NULL, '2020-10-12', 0, '5174', '3', '8', '1970-01-01', 156000.00, '11:50 AM', '2', '1970-01-01', '2', '13K for thiyagu team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:47:12', 7, '2020-10-13 12:59:16', 0, NULL, 1),
(1092, 'Dhivya', '4', '9176293907', '9043202520', 'Dhivyabharathi2271@gamil.com', '1993-05-16', 27, '2', '1', 'Arun kumar', 'Slesa Officer', 18000.00, 1, 18640.00, 20000.00, 'Ooteri street puzhuthivakkam', 'Ooteri street puzhithivakkam', '2010120020', '1', '2', 'upload_files/candidate_tracker/27245425041_dhivya resume.pdf', NULL, NULL, '2020-10-12', 3, '', '6', '', '1970-01-01', 0.00, '11:59 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 11:47:27', 50, '2020-10-12 03:27:13', 0, NULL, 1),
(1093, '', '0', '9840404223', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010120021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:51:18', 0, NULL, 0, NULL, 1),
(1094, 'S.rajadurai', '13', '9087772206', '', 'rajaduraicudd@gmail.com', '1997-11-06', 22, '2', '2', 'K.sivakumar', 'Driver', 7000.00, 1, 0.00, 15000.00, '68, magilamboo street,pennai garden,u.c.chavadi', 'Chennai', '2010120022', '1', '1', 'upload_files/candidate_tracker/18594975632_RAJADURAI.pdf', NULL, NULL, '2020-10-12', 0, '', '8', '54', '1970-01-01', 0.00, '12:10 PM', '', '1970-01-01', '1', 'not attended', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:06:19', 50, '2020-10-12 01:00:31', 0, NULL, 1),
(1095, 'Jyoti yaragatti', '4', '8151038857', '7204439779', 'princessjyoti200@gmail.com', '1998-07-22', 22, '2', '2', 'Nilappa', 'Barber', 8000.00, 5, 0.00, 15000.00, 'Belgaum', 'Belgaum', '2010120023', '1', '1', 'upload_files/candidate_tracker/66977741535_CV Jyo-converted.pdf', NULL, NULL, '2020-10-12', 0, '', '3', '8', '2020-10-14', 132000.00, '12:11 PM', '6', '2020-11-03', '2', '11K for gowshick team', '1', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:06:43', 7, '2020-10-13 03:23:26', 0, NULL, 1),
(1096, 'Abdul Hathi', '13', '6383527549', '9790282277', 'abdulhadhi223@gmail.com', '1999-03-22', 21, '2', '2', 'Jabarulla', 'Labour', 7000.00, 1, 0.00, 12000.00, 'No:117/39,East anna street, villupuram', 'Chennai', '2010120024', '1', '1', 'upload_files/candidate_tracker/75779399963_Abdul.cv.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '54', '1970-01-01', 0.00, '12:11 PM', '', '1970-01-01', '2', 'he is Interested in java', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:07:01', 1, '2020-10-12 01:01:48', 0, NULL, 1),
(1097, 'SARANRAJ K', '6', '9094985317', '8838558208', 'sraj1425@gmail.com', '1998-10-01', 22, '1', '2', 'KUMAR G', 'Driver', 18000.00, 4, 0.00, 15000.00, 'Mylapore', 'Mylapore', '2010120025', '', '1', 'upload_files/candidate_tracker/61790900132_RESUME1.pdf', NULL, NULL, '2020-10-12', 0, '5174', '5', '16', NULL, 0.00, '12:16 PM', '0', NULL, '1', 'NO COMUNICATION SKLIIS, SUSTAIN DOUBT', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 12:12:21', 1, '2020-10-12 12:17:43', 0, NULL, 1),
(1098, 'Priyanga.M', '4', '8778781830', '7401264156', 'priyamurugan2312@gmail.com', '1999-07-25', 21, '1', '2', 'Murugan.k', 'Kooli', 60000.00, 2, 0.00, 12000.00, 'Jafferkhan pet', 'Saidapet', '2010120026', '', '1', 'upload_files/candidate_tracker/13984048033_RESUME-PRIYA 21787.pdf', NULL, NULL, '2020-10-12', 0, '5541', '5', '13', '1970-01-01', 0.00, '12:26 PM', '', '1970-01-01', '2', 'Confidence Level	very low', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 12:21:21', 50, '2020-10-12 12:49:11', 0, NULL, 1),
(1099, 'Praveen kumar', '7', '9994630197', '8610117670', 'apkumar29 @gmail.com', '1989-06-08', 31, '2', '1', 'Rajeshwari', 'Process Associate', 170000.00, 0, 160000.00, 20000.00, 'Vellore', 'Chennai', '2010120027', '1', '2', 'upload_files/candidate_tracker/66058239548_praveen kumar 2020.docx', NULL, NULL, '2020-10-14', 1, '', '5', '53', '1970-01-01', 0.00, '12:38 PM', '', '1970-01-01', '1', 'gvn task, but not truned up.', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:27:53', 50, '2020-10-14 01:59:06', 0, NULL, 1),
(1100, 'Mohamed Riyas', '13', '8754787453', '7708428808', 'mriyasm1997@gmail.com', '1997-02-19', 23, '2', '2', 'Mohaideen Abdul Kader', 'Working Cheppal shop', 1000.00, 2, 6000.00, 12000.00, 'Broadway', 'Broadway', '2010120028', '1', '2', 'upload_files/candidate_tracker/59086323955_Resume-converted.docx', NULL, NULL, '2020-10-12', 30, '', '5', '54', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'he dont Have basic idea in php and he is not active', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:39:37', 50, '2020-10-12 01:23:25', 0, NULL, 1),
(1101, 'Dharani prasanth .s', '4', '7299342756', '', 'dharaniprasanth125@gmail.com', '1997-02-05', 23, '2', '2', 'Santhanlingam.g', 'Teledata admin', 40000.00, 1, 0.00, 14000.00, 'No 6/11 naval hospital road periyameat 6 th lane', 'No 6/11 naval hospital road periyameat 6 th lane', '2010120029', '2', '1', 'upload_files/candidate_tracker/4414886441_resume .pdf', NULL, NULL, '2021-01-13', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Will Not Suite For Sales Calling And Not Interested In Sales. Will Not Sustain.', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-10-12 12:42:39', 8, '2021-01-13 12:00:46', 0, NULL, 1),
(1102, 'Sundharamoorthy R', '13', '9943220357', '6380965757', 'Sundramoorthy5259@gmail.com', '1998-03-25', 22, '2', '2', 'Rajendran', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Perambalur', 'Chennai', '2010120030', '1', '1', 'upload_files/candidate_tracker/60197725765_Moorthy.pdf', NULL, NULL, '2020-10-12', 0, '', '8', '54', '1970-01-01', 0.00, '12:50 PM', '', '1970-01-01', '2', 'not attented', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:46:08', 50, '2020-10-12 01:52:04', 0, NULL, 1),
(1103, 'Keerthivasan', '13', '6379019239', '7548890095', 'keerthivasan.E.1999@gmail.com', '1999-05-09', 21, '2', '2', 'Elangovan', 'Business', 40000.00, 1, 0.00, 15000.00, 'No.18/25 vallalar street nilamangai nagar', 'No.18/25 Vallalar Street Nilamangai Nagar', '2010120031', '1', '1', 'upload_files/candidate_tracker/65260823655_keerthivasan resume.pdf', NULL, NULL, '2020-10-12', 0, '', '6', '', '1970-01-01', 0.00, '11:27 AM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 12:48:58', 50, '2020-10-12 01:02:53', 50, '2020-10-12 01:03:21', 0),
(1104, 'rajeswari kandasamy', '4', '9976788798', '', 'rajeswari96k@gmail.com', '1996-06-03', 24, '2', '2', 'kandasamy', 'farmer', 90000.00, 1, 0.00, 15000.00, 'namakkal', 'pour', '2010120032', '1', '1', 'upload_files/candidate_tracker/14592448015_Rajeswari - Resume(1).pdf', NULL, NULL, '2020-10-12', 0, '', '5', '14', '1970-01-01', 0.00, '12:56 PM', '', '1970-01-01', '2', 'not suitable for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:54:52', 50, '2020-10-12 01:22:28', 0, NULL, 1),
(1105, 'Harini S', '14', '9344827793', '', 'hharini235@gmail.com', '1998-12-06', 21, '2', '2', 'Senthil K', 'Business', 35000.00, 2, 0.00, 15000.00, 'No.276 muthunagar melmanamedu chennai 600124', 'Poonamalle', '2010120033', '1', '1', 'upload_files/candidate_tracker/47190407983_Harini CAFS 2020 resume.docx', NULL, NULL, '2020-10-12', 0, '', '8', '54', NULL, 0.00, '02:24 PM', '0', NULL, '2', 'Not Attended', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 02:18:39', 1, '2020-10-12 02:48:13', 0, NULL, 1),
(1106, 'somasundaram', '2', '9094386564', '9626896032', 'somasundaram l1101@gmail.com', '1997-01-11', 23, '2', '2', 'kesavan r', 'daily wages', 15000.00, 1, 0.00, 18000.00, 'cheyyar', 'chrnnai', '2010120034', '1', '1', 'upload_files/candidate_tracker/22349212743_Somasundaramkesavan.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '54', NULL, 0.00, '02:33 PM', '0', NULL, '1', 'He is looking job in sql. but we are looking php.\nprofile not matched', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 02:28:37', 1, '2020-10-12 02:37:05', 0, NULL, 1),
(1107, 'Kalaiselvi', '11', '9791054214', '', 'n.kalaiselvi7@gmail.com', '1996-07-12', 24, '2', '2', 'Nandagopal', 'Labour', 20000.00, 0, 240000.00, 400000.00, 'Chennai', 'Chenmai', '2010120035', '1', '2', 'upload_files/candidate_tracker/72972951288_Kalaiselvi Nandagopal Resume - ETL Developer.docx', NULL, NULL, '2020-10-12', 40, '', '5', '53', '1970-01-01', 0.00, '03:29 PM', '', '1970-01-01', '1', 'sustainability issue', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 03:24:14', 50, '2020-10-12 03:43:43', 0, NULL, 1),
(1108, 'Guruprasad k G', '4', '9600066365', '7010080397', 'guru1220@gmail.com', '1995-12-20', 24, '2', '2', 'Gurunadham KV', 'Driver', 300000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai à', '2010120036', '2', '1', 'upload_files/candidate_tracker/42382639025_Guru (1).docx', NULL, NULL, '2020-10-13', 0, '', '5', '14', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'not fit for sales he looking for data entry ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 03:41:35', 1, '2020-10-12 03:45:52', 0, NULL, 1),
(1109, 'Mahendran M', '14', '9710244582', '', 'mahendranbtech7@gmail.com', '1999-02-23', 21, '2', '2', 'P.Muthumani', 'Self employee', 15000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2010120037', '1', '1', 'upload_files/candidate_tracker/99860301607_Mahendran M-converted.pdf', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 04:52:09', 50, '2020-10-16 05:16:15', 0, NULL, 1),
(1110, 'E.Dhsnalakshmi', '4', '8189965518', '8608012766', 'dhanaelu123@gmail.com', '1998-11-22', 21, '2', '2', 'R.Elumalai', 'Driver', 19000.00, 1, 0.00, 12000.00, 'Madhavaram', 'Madhavaram', '2010120038', '2', '1', 'upload_files/candidate_tracker/38352814527_dhanaelu123@gmail.com.docx', NULL, NULL, '2020-10-13', 0, '', '3', '8', '1970-01-01', 120000.00, '10:30 AM', '2', '1970-01-01', '2', '10K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 05:26:51', 7, '2020-10-14 05:19:21', 0, NULL, 1),
(1111, 'K.logeshwari', '4', '8190074267', '9940126648', 'logikannan293@gmail.com', '1999-04-17', 21, '2', '2', 'K.kannan', 'Colli', 20000.00, 1, 0.00, 12000.00, 'Koduingaiyur', 'Koduingaiyur', '2010120039', '2', '1', 'upload_files/candidate_tracker/51134488307_LOGESWARI RESUME.pdf', NULL, NULL, '2020-10-13', 0, '', '5', '21', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'she is from kodungaiyur 1;30 hrs above travelxxamp also no maturity', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 05:28:03', 1, '2020-10-12 06:49:38', 0, NULL, 1),
(1112, 'MOHANDOSS E', '4', '9710664504', '8072213886', 'Mohandoss7799@gmail.com', '1993-06-03', 27, '2', '2', 'ELUMALAI S', 'TELEMARKETING', 20000.00, 2, 12000.00, 15000.00, 'THINDIVANAM', 'PALAVANTHANGAL', '2010120040', '2', '2', 'upload_files/candidate_tracker/57716715528_mohan resume.docx', NULL, NULL, '2020-10-13', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'Not Sustain Long Term bcz he exp 15 k above sal ,dont have 2 wheeler , no reliving , payslip also', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 07:18:50', 1, '2020-10-12 07:47:20', 0, NULL, 1),
(1113, '', '0', '8825970508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010120041', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 10:33:35', 0, NULL, 0, NULL, 1),
(1114, '', '0', '8122676255', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010120042', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 10:58:18', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1115, 'S logeshwari', '4', '9566219541', '7708118128', 'Logeshwari.s29@gmail.com', '1999-09-29', 21, '2', '2', 'Shanmugam', 'Daily wage', 36000.00, 1, 0.00, 15000.00, 'Vandavasi', 'Vandabasi', '2010130001', '1', '1', 'upload_files/candidate_tracker/85351813862_chaaru.docx', NULL, NULL, '2020-10-13', 0, '', '5', '8', '1970-01-01', 0.00, '02:35 PM', '', '1970-01-01', '2', 'no response from her', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 09:40:15', 7, '2020-10-16 05:38:30', 0, NULL, 1),
(1116, 'Vishnu Kumar T', '13', '8870963981', '', 'tvishnukumar6@gmail.com', '1995-12-06', 24, '2', '2', 'Thangavel M', 'Cutting Master', 25000.00, 1, 0.00, 25000.00, 'Tirupur', 'Chennai', '2010130002', '1', '1', 'upload_files/candidate_tracker/91533061595_1576147260731Resume_VISHNUKUMAR.docx', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 10:15:09', 7, '2020-10-14 05:04:07', 0, NULL, 1),
(1117, 'Thomas', '11', '9566177821', '7904108260', 'thomas240620@gmail.com', '1990-11-21', 29, '2', '1', 'Stella', 'Working in pharma company', 25000.00, 4, 468000.00, 250000.00, 'Chennai', 'Royapuram', '2010130003', '1', '2', 'upload_files/candidate_tracker/26937722401_Thomas Resume.pdf', NULL, NULL, '2020-10-13', 0, '', '5', '54', '1970-01-01', 0.00, '04:00 PM', '', '1970-01-01', '1', 'Not Attended', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 10:28:28', 50, '2020-10-13 10:38:19', 0, NULL, 1),
(1118, 'Magesh R', '13', '9787272642', '8124188820', 'mageshraja216@gmail.com', '1997-07-31', 23, '2', '2', 'Raja K', 'Conductor', 23000.00, 1, 0.00, 15000.00, 'Gingee, Villupuram', 'Chrompet,chennai', '2010130004', '1', '1', 'upload_files/candidate_tracker/37466554919_MAGESH.docx', NULL, NULL, '2020-10-13', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not ans basic php questions', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 10:46:44', 7, '2020-10-13 11:47:24', 0, NULL, 1),
(1119, 'Thanighai velan E', '13', '8098029544', '', 'karthivelan125@gmail.com', '1998-07-10', 22, '2', '2', 'Ezhil maran D', 'Self employed', 25000.00, 1, 0.00, 15000.00, '1/37 North Street ,Manalapadi -604151,Gingee', 'Tambaram', '2010130005', '1', '1', 'upload_files/candidate_tracker/63721149676_Thanighai', NULL, NULL, '2020-10-13', 0, '', '5', '28', '1970-01-01', 0.00, '10:53 AM', '', '1970-01-01', '1', 'Not ans basic php questions', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 10:48:01', 7, '2020-10-13 11:47:44', 0, NULL, 1),
(1120, 'e.kirthika', '4', '9080307906', '', '', '1998-04-02', 22, '2', '2', 'c.elangovan', 'Formar', 30000.00, 0, 10000.00, 15000.00, 'chennai', 'valechery', '2010130006', '1', '2', 'upload_files/candidate_tracker/54907520280_kirthika.pdf', NULL, NULL, '2020-10-13', 0, '', '5', '21', '1970-01-01', 0.00, '12:57 PM', '', '1970-01-01', '2', 'Not Sustain Long Term Bcz , She Compl B.Ed , Due To Covid Schools  Are Not Opened Now, Once Open She Went', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 10:51:44', 50, '2020-10-13 03:40:31', 0, NULL, 1),
(1121, 'Vishnu', '16', '9566125061', '', 'Vishnuaekullu95@gmail.com', '1995-10-10', 25, '2', '2', 'ramanaiah', 'no business', 30.00, 5, 15000.00, 20000.00, 'chennai', 'Kodungaiyur', '2010130007', '1', '2', 'upload_files/candidate_tracker/35759321179_Vishnu Aekullu4.pdf', NULL, NULL, '2020-10-13', 15, '', '5', '54', '1970-01-01', 0.00, '11:17 AM', '', '1970-01-01', '1', 'not good in technical', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 11:12:31', 50, '2020-10-13 03:40:44', 0, NULL, 1),
(1122, 'Dhivyalakshmi', '16', '8489746546', '7904597985', 'lakshmidivya68@gmail.com', '1992-04-03', 28, '2', '1', 'Alagarsamy', 'Farmer', 5000.00, 1, 6000.00, 16000.00, 'Karaikudi', 'Chennai', '2010130008', '1', '2', 'upload_files/candidate_tracker/78678341051_1587609991650Resume_Dhivya.pdf', NULL, NULL, '2020-10-13', 0, '', '5', '53', '1970-01-01', 0.00, '11:35 AM', '', '1970-01-01', '2', 'she s hvng oly exp in billing. she wont suit for any profile at cafs', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 11:29:30', 50, '2020-10-13 03:40:52', 0, NULL, 1),
(1123, 'Deepika B', '6', '9176265056', '', 'Deepikadeepi2767@gmail.com', '1997-09-27', 23, '1', '2', 'Babu k', 'Chef', 25000.00, 1, 14000.00, 16000.00, '3/59 Muthu Mariamman Kovil street neelangarai', '3/59 Muthu Mariamman Kovil street neelangarai', '2010130009', '', '2', 'upload_files/candidate_tracker/28270417095_deepika b resume.docx', NULL, NULL, '2020-10-13', 0, '5570', '5', '15', NULL, 0.00, '11:47 AM', '0', NULL, '2', 'not sustain', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 11:31:34', 1, '2020-10-13 12:06:50', 0, NULL, 1),
(1124, 'V.suganya', '4', '8144284960', '', 'www.sugasuganya1998@gmail.com', '1998-05-07', 22, '1', '1', 'Vengkat', 'Match move Artest', 25000.00, 4, 0.00, 15000.00, 'Vadapalani', 'Vadapalni', '2010130010', '', '1', 'upload_files/candidate_tracker/50651659588_Suganya_Resume.pdf', NULL, NULL, '2020-10-13', 0, '5174', '5', '13', NULL, 0.00, '11:43 AM', '0', NULL, '1', 'not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 11:38:06', 1, '2020-10-13 12:20:20', 0, NULL, 1),
(1125, '', '0', '8610432337', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 11:38:49', 0, NULL, 0, NULL, 1),
(1126, 'Asmitha T', '11', '9940196090', '', 'asmimithu1998@gmail.com', '1998-07-19', 22, '2', '2', 'Thangaswamy S', 'Sales representative', 22000.00, 0, 0.00, 15000.00, 'No.1Thiruvalluvar street,M.E.Sroad,east tambaram', 'No 1 thiruvalluvar street,M.E.S road,east tambaram', '2010130012', '1', '1', 'upload_files/candidate_tracker/8558865267_ASMITHA RESUME.pdf', NULL, NULL, '2020-10-14', 0, '', '5', '53', '1970-01-01', 0.00, '11:45 AM', '', '1970-01-01', '2', 'fresher, she dnt know anything abt rec, exp min 15k salary', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 11:44:04', 50, '2020-10-14 11:50:36', 0, NULL, 1),
(1127, '', '0', '9080643524', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 11:47:15', 0, NULL, 0, NULL, 1),
(1128, '', '0', '8754103619', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 11:53:49', 0, NULL, 0, NULL, 1),
(1129, 'S.Angelin Sangeetha', '4', '7530031326', '9861095397', 'Sangeethastalin96@gmail.com', '1996-06-01', 24, '2', '2', 'Sahaya stalin', 'Business', 10000.00, 1, 0.00, 15000.00, 'Nagercoil', 'Chennai', '2010130015', '1', '1', 'upload_files/candidate_tracker/70091541019_Angelin Sangeetha .pdf', NULL, NULL, '2020-10-14', 0, '', '5', '13', '1970-01-01', 0.00, '12:55 PM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 11:55:28', 50, '2020-10-14 01:59:14', 0, NULL, 1),
(1130, 'Poovarasan A', '4', '9786089465', '', 'Poovarasann1191@gmail.com', '1999-09-11', 21, '2', '2', 'Arul', 'Agree culture', 10000.00, 0, 0.00, 15000.00, 'T.nagar', 'T.nagar', '2010130016', '1', '1', 'upload_files/candidate_tracker/67821434918_Poovarasan Resume.docx', NULL, NULL, '2020-10-13', 0, '', '5', '14', '1970-01-01', 0.00, '12:11 PM', '', '1970-01-01', '1', 'looking for data entry not interested in sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:00:49', 7, '2020-10-14 11:53:19', 0, NULL, 1),
(1131, 'Yogapriyadharshini N', '11', '9952837946', '', 'yogapriyadharshinin12@gmail.com', '1994-12-24', 25, '2', '1', 'Mr .Varun Priyan. R', 'Societe generale bank', 40000.00, 0, 15.00, 15.00, '5/9secomd St,Vedatham colony, Tambaram sanatorium', '5/9secomd St,Vedatham colony, Tambaram sanatorium', '2010130017', '1', '2', 'upload_files/candidate_tracker/42588271139_cv yogapriya 2020.docx', NULL, NULL, '2020-10-14', 0, '', '5', '53', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'very low voice, not convincing', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:01:42', 50, '2020-10-14 11:50:44', 0, NULL, 1),
(1132, 'Vishali', '11', '9566249083', '', 'vishaliraji0498@gmail.com', '1998-04-01', 22, '2', '2', 'Kuppan', 'Temple Priest', 13000.00, 1, 11250.00, 14000.00, 'Chennai', 'Chennai', '2010130018', '1', '2', 'upload_files/candidate_tracker/78886336369_Vishali-IT resume.pdf', NULL, NULL, '2020-10-14', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'no communication. no previous job analysis and not very clear about her topic.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:02:25', 50, '2020-10-14 11:50:51', 0, NULL, 1),
(1133, 'Jennifer', '11', '9150723319', '9003922492', 'Jenniferted0208@gmail.com', '1994-01-02', 26, '2', '2', 'D. John Bosco', 'Ship repairs', 0.00, 1, 160000.00, 200000.00, 'Royapuram', 'Royapuram', '2010130019', '1', '2', 'upload_files/candidate_tracker/50370461570_Jennifer C.V.docx', NULL, NULL, '2020-10-14', 0, '', '3', '8', '2020-10-19', 163800.00, '11:00 AM', '5', '1970-01-01', '2', '13K as TH', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:10:47', 7, '2020-11-09 12:01:00', 0, NULL, 1),
(1134, 'N J Lokesh Kumar', '4', '6305211063', '9542032584', 'njlokesh143@gmail.com', '2000-06-27', 20, '2', '2', 'N Jagadeesh', 'Farmer', 15000.00, 1, 0.00, 15000.00, '17-90 Vinobanagar(v) Nagalapuram(M)', 'Madhavaram Chennai', '2010130020', '2', '1', 'upload_files/candidate_tracker/17090534700_Surya Resume1.docx', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '10:33 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 12:14:53', 7, '2020-10-14 05:03:57', 0, NULL, 1),
(1135, 'Umamaheswari', '11', '9940138029', '', 'umamahejo@gmail.com', '1989-09-08', 31, '2', '2', 'Govindaraj', 'Store incharge-retired', 18000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2010130021', '1', '2', 'upload_files/candidate_tracker/97610615728_Umamaheswari HR Resume (1).doc', NULL, NULL, '2020-10-14', 0, '', '5', '53', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'not bold, not ok with bond', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:14:59', 50, '2020-10-14 11:51:09', 0, NULL, 1),
(1136, '', '0', '9585901047', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 12:18:04', 0, NULL, 0, NULL, 1),
(1137, 'Kavitha.P', '11', '7845005752', '7092769662', 'Kavithavinopanneer02@gmail.com', '1998-01-02', 22, '2', '2', 'Panneerselvam.G', 'Shop keeper', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2010130023', '1', '1', 'upload_files/candidate_tracker/34895822626_kavitha MBA resume..docx', NULL, NULL, '2020-10-14', 0, '', '5', '8', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '2', 'hold for HR- will not join. long distance.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:25:09', 50, '2020-10-14 02:00:27', 0, NULL, 1),
(1138, 'N. Subashini', '11', '9042708670', '', 'Suba.pavi4@gmail.com', '1994-12-13', 25, '2', '2', 'K. Nagaraju', 'Business', 18000.00, 1, 0.00, 15000.00, 'Old washermen pet Chennai', 'Old washermen pet Chennai', '2010130024', '1', '1', 'upload_files/candidate_tracker/96323237954_Suba N (3).pdf', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:35:33', 7, '2020-10-14 05:03:49', 0, NULL, 1),
(1139, '', '0', '9176718301', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 12:37:35', 0, NULL, 0, NULL, 1),
(1140, 'Vivek Kumar B', '11', '9655152733', '9629243103', 'vivecbala@gmail.com', '1996-01-28', 24, '2', '2', 'Balshanmugam', 'Chef', 30000.00, 2, 20000.00, 26000.00, 'Chennai', 'Chennai', '2010130026', '1', '2', 'upload_files/candidate_tracker/95816450157_VivekB - Updated (2).pdf', NULL, NULL, '2020-10-14', 0, '', '5', '53', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'he is not ok for HR profile, but exp sal is 30k', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:47:38', 7, '2020-10-14 03:09:24', 0, NULL, 1),
(1141, 'Sharmila', '4', '8056103835', '9790984775', 'sharmilakutton50@gmail.com', '1998-01-30', 22, '2', '2', 'Peter', 'Retired EB staf', 15000.00, 2, 0.00, 13000.00, 'Ayanavaram', 'Ayanavaram', '2010130027', '2', '1', 'upload_files/candidate_tracker/1309466560_resume document.pdf', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 01:02:56', 7, '2020-10-14 05:03:11', 0, NULL, 1),
(1142, '', '0', '7824979713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 01:03:05', 0, NULL, 0, NULL, 1),
(1143, 'tajudeen j', '13', '9751708784', '', 'tajudeen2696@gmail.com', '1996-08-26', 24, '2', '2', 'jahir hussain', 'driver', 15000.00, 1, 0.00, 18000.00, 'pudukottai', 'chennai', '2010130029', '1', '1', 'upload_files/candidate_tracker/96742521023_Tajudeen03 (1).pdf', NULL, NULL, '2020-10-14', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'He Struggle In Basic Skill sets. Not Coming Next Time Interview Schedule ', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 01:11:03', 50, '2020-10-14 01:59:50', 0, NULL, 1),
(1144, '', '0', '9551170070', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 01:27:12', 0, NULL, 0, NULL, 1),
(1145, 'Dhamini.S.p', '11', '0789053836', '9789053836', 'Dhaminipremanand@gmail.com', '1998-01-22', 22, '2', '2', 'Prem anand', 'Real estate', 30000.00, 1, 0.00, 15000.00, 'Varadharajan Street, t.nagar, chennai-17', 'T.nagar', '2010130031', '1', '1', 'upload_files/candidate_tracker/47509967962_Resume.doc', NULL, NULL, '2020-10-14', 0, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '1', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 01:52:32', 1, '2020-10-13 02:09:40', 7, '2020-10-14 12:42:36', 0),
(1146, 'Dhamini.S.p', '11', '9789053836', '9962962710', 'Dhaminipremanand@gmail.com', '1998-01-22', 22, '2', '2', 'Prem anand', 'Real estate', 30000.00, 1, 0.00, 15000.00, 'Varadharajan Street, t.nagar, Chennai-17', 'T.nagar', '2010130032', '1', '1', 'upload_files/candidate_tracker/7012096231_Resume.doc', NULL, NULL, '2020-10-14', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'will not suite for HR, no understanding, no listening and avg,. comm. No job need.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 02:15:51', 7, '2020-10-14 12:43:54', 0, NULL, 1),
(1147, 'Naveen kumar k', '14', '7094672543', '8925949496', 'Naveenhitler40@gmail.com', '1998-04-05', 22, '2', '2', 'Karunanithi r', 'ac mechanic', 30.00, 2, 0.00, 25000.00, 'mayiladuthurai', 'Chennai', '2010130033', '1', '1', 'upload_files/candidate_tracker/33879038581_naveen .pdf', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 02:16:08', 7, '2020-10-14 05:02:59', 0, NULL, 1),
(1148, 'suganya s', '16', '9677246597', '8220278385', 'suganyasr97@gmail.com', '1997-02-06', 23, '1', '2', 'j sundar rajan', 'late', 20000.00, 1, 13773.00, 15000.00, 'Chennai', 'Chennai', '2010130034', '', '2', 'upload_files/candidate_tracker/59212908271_1591523087642Resume_SUGANYA.docx', NULL, NULL, '2020-10-14', 0, 'jobs', '5', '53', '1970-01-01', 0.00, '11:46 AM', '', '1970-01-01', '2', 'dnt have knowledge in excel', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 02:20:57', 7, '2020-10-14 05:02:50', 0, NULL, 1),
(1149, 'mohammed rafeek.a', '13', '8838445378', '9524216462', 'mohammedrafeek1768@gmail.com', '1997-04-15', 23, '2', '2', 'abdhul huq.a', 'labour', 15000.00, 1, 0.00, 18000.00, 'thondi', 'chennai', '2010130035', '1', '1', 'upload_files/candidate_tracker/36460561325_rafeek-1.docx', NULL, NULL, '2020-10-14', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'He Struggle In Basic Skill Sets. Not Coming Next Time Interview Schedule ', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 02:24:45', 50, '2020-10-14 02:00:03', 0, NULL, 1),
(1150, 'Sangeetha', '4', '8754826442', '', 'Sangeetharamesh967@gmail.com', '1997-12-16', 22, '2', '2', 'Ramesh', 'Painter', 20000.00, 1, 13000.00, 13000.00, 'Medavakkam', 'Medavakkam', '2010130036', '1', '2', 'upload_files/candidate_tracker/81610596383_sangeetha ramesh.pdf', NULL, NULL, '2020-10-13', 2, '', '5', '21', '1970-01-01', 0.00, '03:15 PM', '', '1970-01-01', '2', 'Rejected Bcz, She Worked In Personal Loan  At Last 6 Months , She Quit Bcz Of Target xxamp Job Pressure , Also Expecting 13 K Salary ..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 03:09:15', 7, '2020-10-14 11:52:49', 0, NULL, 1),
(1151, 'Benita.V', '4', '9094003877', '', 'benitabeni08@gmail.com', '1998-08-01', 22, '2', '2', 'Velan.E', 'Coolie', 15000.00, 2, 13000.00, 13000.00, 'Adambakkam', 'Adambakkam', '2010130037', '1', '2', 'upload_files/candidate_tracker/89736589802_1599370233161Resume_Benita.docx', NULL, NULL, '2020-10-13', 0, '', '5', '13', '1970-01-01', 0.00, '03:15 PM', '', '1970-01-01', '2', '  not suitable for pressure handling so Sustainability	Low', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 03:09:16', 7, '2020-10-14 10:27:50', 0, NULL, 1),
(1152, 'S.Ishwarya', '4', '7092089403', '', 'Ishumilk70@gmail.com', '1999-05-25', 21, '2', '2', 'Sampath', 'Security', 25000.00, 4, 13000.00, 13000.00, 'Sholavaram Redhills', 'Sholavaram Redhills', '2010130038', '1', '2', 'upload_files/candidate_tracker/45634709567_ishu resume.pdf', NULL, NULL, '2020-10-13', 0, '', '5', '14', '1970-01-01', 0.00, '03:22 PM', '', '1970-01-01', '1', 'long distance and not even to handle the pressure', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 03:09:34', 7, '2020-10-14 10:26:05', 0, NULL, 1),
(1153, 'Bhuvaneshwari', '4', '8678976322', '', 'bhuvanabalu1998@gmail.com', '1998-03-23', 22, '2', '2', 'Balakrishnan', 'Coolie', 10000.00, 2, 13000.00, 13000.00, 'Camp road', 'Camp road', '2010130039', '1', '2', 'upload_files/candidate_tracker/753836369_1602583751663_Bhuvana.pdf', NULL, NULL, '2020-10-13', 2, '', '5', '21', '1970-01-01', 0.00, '03:36 PM', '', '1970-01-01', '2', 'Rejected Bcz, She Worked In Personal Loan  At Last 6 Months , She Quit Bcz Of Target xxamp Job Pressure , Also Expecting 13 K Salary ..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 03:09:36', 7, '2020-10-14 10:25:53', 0, NULL, 1),
(1154, 'Safia.m', '11', '9025323887', '9092755054', 'Safia.khan2622@gmail.com', '1996-09-26', 24, '2', '2', 'Muneer basha', 'Tailor', 30000.00, 1, 13000.00, 18000.00, 'bangaru naicker Street, mount road, Chennai-02', 'Bangaru naicker Street, mount road, chennai-02', '2010130040', '1', '2', 'upload_files/candidate_tracker/68933924167_1575296724389_Safia (1).pdf', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 03:12:09', 7, '2020-10-14 05:09:27', 0, NULL, 1),
(1155, 'Dhivya Raghuraman', '11', '8870487196', '', 'dhivyaraghuraman257@gmail.com', '1998-07-25', 22, '2', '2', 'Father - Raghuraman', 'Driver', 11000.00, 1, 180000.00, 280000.00, 'Chennai', 'Chennai', '2010130041', '1', '2', 'upload_files/candidate_tracker/99765620188_CV_2020-10-07-105212.pdf', NULL, NULL, '2020-10-15', 15, '', '5', '8', '1970-01-01', 0.00, '03:30 PM', '', '1970-01-01', '2', 'salary exp is high. 18K and looking  for job change (salary)', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 03:15:52', 50, '2020-10-15 03:27:58', 0, NULL, 1),
(1156, 'Vijayalakshmi r', '4', '9047061772', '', '03vijiravi@gmail.com', '1998-03-03', 22, '2', '2', 'Ravi p', 'Late', 20000.00, 1, 12000.00, 13000.00, 'Trichy', 'T nagar', '2010130042', '2', '2', 'upload_files/candidate_tracker/79027350646_imgtopdf_generated_1310201640017.pdf', NULL, NULL, '2020-10-14', 0, '', '3', '8', '2020-10-15', 144000.00, '10:07 AM', '2', '1970-01-01', '2', '12K for Dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 03:44:30', 7, '2020-10-14 06:27:48', 0, NULL, 1),
(1157, 'R.HARISH', '4', '9003231424', '', 'harishradhakrishnan1995@gmail.com', '1995-12-11', 24, '2', '2', 'C.RADHAKRISHNAN', 'CHECKING INSPECTOR', 25000.00, 1, 12000.00, 15000.00, 'CHENNAI', 'CHENNAI', '2010130043', '2', '2', 'upload_files/candidate_tracker/5288595471_0_harish.resume5.pdf', NULL, NULL, '2020-10-14', 0, '', '5', '21', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'He Is Doing MBA , Week End Class Have ,and also low confidence , not sustain long term also...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 04:42:39', 1, '2020-10-14 11:02:57', 0, NULL, 1),
(1158, 'Narayana kumar p', '4', '7338948261', '', 'Narenbba2401@gmail.com', '1998-01-24', 22, '2', '2', 'Parathasarathy', 'Driver', 15000.00, 2, 12000.00, 12000.00, 'Chennai', 'Porur', '2010130044', '2', '2', 'upload_files/candidate_tracker/42366086497_kumar resume.docx', NULL, NULL, '2020-10-14', 0, '', '8', '14', NULL, 0.00, '01:30 PM', '0', NULL, '2', 'not attend the interview', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 04:50:56', 1, '2020-10-14 01:04:40', 0, NULL, 1),
(1159, 'Sriram.s', '4', '9841018670', '9344872020', 'Eyekiller1207@gmail.com', '2001-07-12', 19, '2', '2', 'Sankar.p', 'Shipping line', 30000.00, 1, 14000.00, 16000.00, 'Old washermenpet', 'Old Washermenpet', '2010130045', '2', '2', 'upload_files/candidate_tracker/52818439920_sri2.pdf', NULL, NULL, '2020-11-20', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 05:07:15', 50, '2020-11-20 06:08:37', 0, NULL, 1),
(1160, 'S.Mageshkumar', '16', '7904390814', '9176095733', 'rajmagesh14@gmail.com', '1995-11-16', 24, '2', '2', 'K.Santhkumar', 'B.com', 12000.00, 0, 14000.00, 19000.00, 'Navalur', 'Navalur', '2010130046', '1', '2', 'upload_files/candidate_tracker/59449900722_MAGESHKUMAR.S Raj1.doc', NULL, NULL, '2020-10-15', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 05:17:23', 1, '2020-10-13 08:46:40', 0, NULL, 1),
(1161, 'Tharani', '4', '8778159758', '9841816149', 'Tharani07032000@gmail.com', '2000-03-07', 20, '2', '2', 'Dhinakar Babu', 'Business', 15000.00, 2, 0.00, 15000.00, 'No. 46 Perumal mudali street', 'Chennai', '2010130047', '1', '1', 'upload_files/candidate_tracker/91505898218_thara.resume.pdf', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 05:21:40', 7, '2020-10-14 05:02:07', 0, NULL, 1),
(1162, '', '0', '9789854795', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130048', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 05:25:10', 0, NULL, 0, NULL, 1),
(1163, 'Sandhya C', '4', '9710937413', '9710416514', 'Sandysandhya85597@gmail.com', '1999-01-06', 21, '2', '2', 'Chandran', 'Electrician', 200000.00, 1, 0.00, 15000.00, '63 pnk garden 5th street mylapore ch-4', '63 pnk garden 5th street mylapore Ch-4', '2010130049', '1', '1', 'upload_files/candidate_tracker/72421185789_RESUME 1.docx', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 05:31:59', 7, '2020-10-14 05:01:57', 0, NULL, 1),
(1164, 'Kerthic vasan', '4', '6374112764', '', 'Bskamalakannan@gmail.com', '2002-06-01', 18, '2', '1', 'Ak pari', 'Farmers', 20000.00, 1, 0.00, 180000.00, 'Arakkkomam', 'Chennai', '2010130050', '1', '1', 'upload_files/candidate_tracker/46605328557_CamScanner 10-19-2020 14.29.46.pdf', NULL, NULL, '2020-10-19', 0, '', '5', '14', '1970-01-01', 0.00, '02:33 PM', '', '1970-01-01', '1', 'not suitable for sales looking for data entry', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 06:04:47', 50, '2020-10-19 02:39:16', 0, NULL, 1),
(1165, '', '0', '7395941646', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130051', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 07:10:26', 0, NULL, 0, NULL, 1),
(1166, '', '0', '9677235826', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130052', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 07:28:32', 0, NULL, 0, NULL, 1),
(1167, 'sonali', '4', '8807371996', '8122628436', 'sonalisona9790@gmail.com', '1999-12-15', 20, '2', '2', 'umapathy', 'southern railway', 35000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2010130053', '1', '1', 'upload_files/candidate_tracker/21962386305_10-13-2020-20.17.36.pdf', NULL, NULL, '2020-10-13', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 07:45:09', 7, '2020-10-14 10:25:33', 0, NULL, 1),
(1168, '', '0', '9884537251', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 10:04:15', 0, NULL, 0, NULL, 1),
(1169, '', '0', '9047275494', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 10:05:18', 0, NULL, 0, NULL, 1),
(1170, 'M P Karthikeyan', '5', '9444212340', '', 'karthikeyanpandiyan668@gmail.com', '1979-06-23', 41, '1', '1', 'M.Pandiyan', 'NA', 50000.00, 1, 650000.00, 600000.00, 'Perambur', 'Chennai', '2010140003', '', '2', 'upload_files/candidate_tracker/13379608169_Karthik_updatednewv1_1_.doc', NULL, NULL, '2020-10-14', 0, 'NA', '5', '8', NULL, 0.00, '10:33 AM', '0', NULL, '1', 'looking for job in Accounts.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 10:27:50', 1, '2020-10-14 10:37:12', 0, NULL, 1),
(1171, 'S. Santhiya', '4', '9790332534', '9047275494', 'Ranisanthiya2000@gmail.com', '2000-08-20', 20, '1', '2', 'E. Samikannu', 'Farmer', 10000.00, 2, 0.00, 12000.00, 'Kalpattu', 'Kodambakkam', '2010140004', '', '1', 'upload_files/candidate_tracker/5086758134_Sandhiya.pdf', NULL, NULL, '2020-10-14', 0, '5474', '5', '13', NULL, 0.00, '10:46 AM', '0', NULL, '2', 'Communication very poor so not fit for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 10:41:40', 1, '2020-10-14 10:55:31', 0, NULL, 1),
(1172, 'V.srija', '4', '8489576831', '6379015034', 'srijajaya45@gmail.com', '1998-06-08', 22, '2', '2', 'K.venkatachalam', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Tiruvannamlai', 'Chennai', '2010140005', '1', '1', 'upload_files/candidate_tracker/95966544102_attachment.docx', NULL, NULL, '2020-10-14', 0, '', '5', '13', '1970-01-01', 0.00, '11:03 AM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 10:44:15', 50, '2020-10-14 01:59:24', 0, NULL, 1),
(1173, 'Ragasudha.M', '4', '7708592266', '7448993149', 'msudha100199@gmail.com', '1998-06-06', 22, '1', '2', 'Muruganantham.G', 'Driver', 15000.00, 3, 0.00, 10000.00, 'Vellore', 'Chennai', '2010140006', '', '1', 'upload_files/candidate_tracker/13951956531_sudha resume.pdf', NULL, NULL, '2020-10-14', 0, '5266', '3', '8', '2020-10-19', 120000.00, '11:05 AM', '6', '2021-02-27', '2', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 11:01:07', 7, '2020-10-14 06:28:14', 0, NULL, 1),
(1174, 'Ajmal khan S', '4', '7395958649', '', 'ajmalshanawaz@gmail.com', '1993-03-08', 27, '2', '2', 'Shanawaz', 'Late', 1.00, 2, 0.00, 13000.00, 'Chennai', 'Kodambakkam', '2010140007', '2', '1', 'upload_files/candidate_tracker/92867323587_ajmal resume.doc', NULL, NULL, '2020-10-16', 0, '', '3', '8', '2020-10-19', 126000.00, '11:10 AM', '6', '2020-12-11', '1', '10.5K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 11:04:58', 7, '2020-10-16 04:46:20', 0, NULL, 1),
(1175, 'Epciba.D', '11', '9940085761', '', 'epsidevanesan1997@gmail.com', '1997-06-20', 23, '2', '2', 'Devanesan', 'Real estate', 300000.00, 2, 0.00, 20000.00, 'Chennai', 'Tamabaram', '2010140008', '1', '1', 'upload_files/candidate_tracker/36038321096_EPCIBA RESUME.docx', NULL, NULL, '2020-10-14', 0, '', '5', '53', '1970-01-01', 0.00, '11:53 AM', '', '1970-01-01', '1', 'not intrested in bond', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 11:43:13', 50, '2020-10-14 01:59:40', 0, NULL, 1),
(1176, 'Jayakodi', '11', '9176803113', '', 'jayakodisomu0@gmail.com', '1995-12-23', 24, '2', '2', 'K.Somu', 'Driver', 20000.00, 1, 0.00, 13000.00, '10/11 pudupet garden lane Royapettah Chennai', 'Chennai', '2010140009', '1', '1', 'upload_files/candidate_tracker/39547851391_JAYAKODI-RESUME.docx', NULL, NULL, '2020-10-15', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not okay with bond and will not suite for our HR process', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 11:57:14', 50, '2020-10-15 11:15:01', 0, NULL, 1),
(1177, 'Ahmed Hussain.k', '4', '6380832773', '7358230213', 'hussainkader2017@gmail.com', '2000-08-10', 20, '2', '2', 'Kader Gani.s', 'Self employee', 20000.00, 1, 0.00, 15000.00, 'Mogappair east', 'No 2/79,TNHB, Metro park,padikuppam', '2010140010', '2', '1', 'upload_files/candidate_tracker/14128349019_AHMED HUSSAIN RESUME (2).docx', NULL, NULL, '2020-10-15', 0, '', '5', '21', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'Not Sustain Bcz , He Is Interested In Customer Support Proces, Dont Want Sales  Profile, Also Interested In IT Prof', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 11:57:57', 1, '2020-10-14 12:01:59', 0, NULL, 1),
(1178, '', '0', '6369366484', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 12:28:47', 0, NULL, 0, NULL, 1),
(1179, 'Siranjeevi', '4', '9789808273', '8072662521', 'sivasiranjeevi123@gmail.com', '1997-05-12', 23, '2', '2', 'Sivanantham', 'Saidapet', 15000.00, 3, 15000.00, 15000.00, 'Saidapet', 'Saidapet', '2010140012', '2', '2', 'upload_files/candidate_tracker/10591605268_siranjeevi.doc', NULL, NULL, '2020-10-14', 0, '', '3', '8', '1970-01-01', 132000.00, '02:00 PM', '2', '1970-01-01', '1', '11K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 12:51:02', 7, '2020-10-16 11:46:31', 0, NULL, 1),
(1180, '', '0', '6383557934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 01:20:09', 0, NULL, 0, NULL, 1),
(1181, 'Jithendra Sainath', '11', '8122087939', '', 'djsainath.sainath@gmail.com', '1994-05-01', 26, '1', '2', 'Narasimha rao', 'Fresher', 40000.00, 2, 0.00, 2.50, 'Chennai', 'Chennai', '2010140014', '', '1', 'upload_files/candidate_tracker/10578368672_djsainath resume(1)(1).pdf', NULL, NULL, '2020-10-14', 0, 'Jobs', '8', '53', NULL, 0.00, '01:29 PM', '0', NULL, '2', 'he left frm office', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 01:26:06', 1, '2020-10-14 01:33:53', 0, NULL, 1),
(1182, 'Vanaja kesavan', '11', '9884764273', '9345085155', 'vanikesavan1630@gmail.com', '1996-10-18', 23, '2', '2', 'E.kesavan', 'Coolie', 15000.00, 2, 17000.00, 20000.00, 'Teynampet, chennai', 'Teynampet, chennai', '2010140015', '1', '2', 'upload_files/candidate_tracker/44441678986_resume_1599057469790.pdf', NULL, NULL, '2020-10-15', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 01:28:42', 50, '2020-10-15 04:53:59', 0, NULL, 1),
(1183, 'Charan raj', '4', '9043680193', '9789808273', 'sivasiranjeevi123@gmail.com', '1997-08-28', 23, '2', '2', 'Dhamodharan', 'Saidapet', 15000.00, 1, 14000.00, 15000.00, 'Saidapet', 'Saidapet', '2010140016', '1', '2', 'upload_files/candidate_tracker/34392749498_charanraj Resumee-1(3).pdf', NULL, NULL, '2020-10-14', 0, '', '5', '21', NULL, 0.00, '02:00 PM', '0', NULL, '1', 'Not Sustain 2 Comp Quit In Last 1 Yr Bec Of Personal Reason , ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 01:38:13', 1, '2020-10-14 01:49:02', 0, NULL, 1),
(1184, '', '0', '9345085155', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 01:47:57', 0, NULL, 0, NULL, 1),
(1185, 'selvaprakash R', '11', '9962307976', '', 'selva.prakash912@gmail.com', '1997-07-30', 23, '2', '2', 'ramar s', 'senior legal Executive', 30000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2010140018', '1', '1', 'upload_files/candidate_tracker/5781825368_selva prakash.R MSW ).pdf', NULL, NULL, '2020-10-15', 0, '', '5', '53', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '1', 'poor communication, he dont hve exp in hr bt looking 15k minimum', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 01:49:15', 50, '2020-10-15 12:35:43', 0, NULL, 1),
(1186, 'Syed Faheem', '11', '9994614088', '', 'faheemsyed89@gmail.com', '1989-11-21', 30, '2', '1', 'Syed Abdullah', 'Nil', 15000.00, 2, 18.00, 22.00, 'Vellore', 'Chennai', '2010140019', '1', '2', 'upload_files/candidate_tracker/99653291809_FAHEEM-1.pdf', NULL, NULL, '2020-10-15', 15, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 01:50:22', 50, '2020-10-15 04:54:16', 0, NULL, 1),
(1187, '', '0', '7358737948', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 02:29:00', 0, NULL, 0, NULL, 1),
(1188, 'Tamil selvi G', '4', '9092734271', '8637636244', 'gunamalar3123@gmail.com', '1998-11-23', 21, '2', '2', 'Guna sekaran K', 'Daily wages', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Perungudi', '2010140021', '1', '1', 'upload_files/candidate_tracker/91517926689_TAMILSELVI.doc', NULL, NULL, '2020-10-15', 0, '', '5', '14', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'looking for data entry not fit for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 02:47:09', 50, '2020-10-15 12:36:35', 0, NULL, 1),
(1189, 'Sunilkumar', '11', '9750726364', '', '', '1994-06-09', 26, '2', '2', 'Shankar', 'Farmer', 5000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2010140022', '1', '2', 'upload_files/candidate_tracker/9124877349_sunil modified resume.doc', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '11:35 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 02:47:48', 7, '2020-10-14 05:01:39', 0, NULL, 1),
(1190, 'Nasreen binti sahul hameed', '11', '9962218913', '7904674975', 'nasreenbinti98@gmail.com', '1998-09-22', 22, '2', '2', 'Sahul hameed', 'Business', 15000.00, 0, 0.00, 20000.00, 'Nungambakkam', 'Nungambakkam', '2010140023', '1', '1', 'upload_files/candidate_tracker/99583105553_Resume_Nasreen.pdf', NULL, NULL, '2020-10-31', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'not okay with our terms and conditions', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 03:04:47', 7, '2020-10-31 02:52:06', 0, NULL, 1),
(1191, 'Suthan P', '13', '9840870631', '9944142890', 'suthan1981996@gmail.com', '1996-08-19', 24, '2', '2', 'M.Petchimuthu', 'labour', 8000.00, 0, 0.00, 7000.00, 'Chennai', 'Chennai', '2010140024', '1', '1', 'upload_files/candidate_tracker/63367924984_SUTHAN Resume.pdf', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 03:08:22', 50, '2020-10-16 05:16:27', 0, NULL, 1),
(1192, '', '0', '8870894220', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 03:16:48', 0, NULL, 0, NULL, 1),
(1193, 'Gayathri S', '11', '7338985183', '', 'gayathriharini4@gmail.com', '1996-07-14', 24, '2', '2', 'N Sampathkumar', 'Retired Govt staff', 60000.00, 0, 170000.00, 250000.00, 'Chennai', 'Chennai', '2010140026', '1', '2', 'upload_files/candidate_tracker/86916801105_1587387750582Resume_Gayathri.pdf', NULL, NULL, '2020-10-15', 0, '', '3', '8', '2020-10-28', 163800.00, '12:30 PM', '', '1970-01-01', '1', '13K  as TH with out det. ', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 03:33:18', 50, '2020-10-15 12:31:30', 0, NULL, 1),
(1194, '', '0', '9790931703', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 03:34:38', 0, NULL, 0, NULL, 1),
(1195, 'Arun Dhanarajan', '11', '9443536302', '9080902529', 'arunderose@gmail.com', '1991-01-25', 29, '2', '2', 'Dhanarajan', 'Business', 40000.00, 1, 26000.00, 26000.00, 'Chennai', 'Chennai', '2010140028', '1', '2', 'upload_files/candidate_tracker/42331114628_Arun Dhanarajan Derose_HR-converted.pdf', NULL, NULL, '2020-10-14', 0, '', '3', '8', '2020-10-19', 337776.00, '04:00 PM', '5', '1970-01-01', '1', 'with Ded. 23211 as take home. for HR-G', '6', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 03:48:06', 7, '2020-10-19 04:16:45', 0, NULL, 1),
(1196, 'BALAJI', '11', '7013711857', '', 'Balajisurya12358@gmail.com', '1995-02-24', 25, '2', '2', 'Ravi', 'Bussiness', 4800000.00, 0, 15000.00, 20000.00, 'Chennai', 'Chennai', '2010140029', '1', '2', 'upload_files/candidate_tracker/1257273_Balaji24.docx', NULL, NULL, '2021-03-29', 25, '', '5', '41', '1970-01-01', 0.00, '09:40 AM', '', '1970-01-01', '2', 'sALARY DEMAND AND WILL NOT SUSTAIN', '6', '1', '', '', '', '', '2', '1970-01-01', '2', '8', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 04:07:18', 50, '2021-03-29 12:31:35', 0, NULL, 1),
(1197, 'gokul', '13', '8667016082', '9025665606', 'gokulnathan4@gmail.com', '1997-04-14', 23, '2', '2', 'ekanathan', 'farmer', 11000.00, 2, 0.00, 12500.00, 'arcot', 'chennai', '2010140030', '1', '1', 'upload_files/candidate_tracker/74996395922_GOKUL.E..pdf', NULL, NULL, '2020-10-15', 0, '', '5', '28', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'He is not strong in basic php', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 05:08:42', 1, '2020-10-14 05:32:36', 0, NULL, 1),
(1198, 'Manikandan. S', '5', '7401451453', '8838846212', 'mani12344.ms@gmail.com', '1996-04-09', 24, '2', '2', 'Srinivasan. T', 'Retail shop', 12000.00, 2, 0.00, 17000.00, 'Chennai', 'Korukkupet', '2010140031', '3', '2', 'upload_files/candidate_tracker/33807999415_Document 2.docx', NULL, NULL, '2020-10-15', 0, '', '5', '36', NULL, 0.00, '11:30 AM', '0', NULL, '1', 'Not fit', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 05:10:35', 1, '2020-10-15 11:32:54', 0, NULL, 1),
(1199, 'Revathy', '11', '9080869286', '9500044555', 'Revakrishna@outlook.com', '1995-08-31', 25, '2', '1', 'Srinivasan', 'Traffic inspector', 6.00, 0, 1.50, 18000.00, 'Chennai', 'Chennai', '2010140032', '4', '2', 'upload_files/candidate_tracker/91478092378_Reva resume 2020.docx', NULL, NULL, '2020-10-15', 0, '', '3', '8', '2020-10-19', 163800.00, '10:30 AM', '', '1970-01-01', '1', '13K as TH.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 05:11:56', 50, '2020-10-15 10:30:34', 0, NULL, 1),
(1200, '', '0', '8608065351', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 06:39:53', 0, NULL, 0, NULL, 1),
(1201, 'Lilly Margreat Mary A', '4', '9344079600', '9840161582', 'lillymargreatmary3@gmail.com', '1997-10-03', 23, '2', '2', 'KR anthonyraj', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Avadi,chennai-71', 'Avadi,chennai-71', '2010140034', '1', '1', 'upload_files/candidate_tracker/75968786174_Lillymargreatmary Resume.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '13', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'Pressure Handling very poor', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 06:45:00', 50, '2020-10-15 12:37:28', 0, NULL, 1),
(1202, 'jayashree', '11', '7338757951', '', '', '1995-10-30', 24, '2', '2', 'maheaswaran', 'land lord', 45000.00, 2, 0.00, 15000.00, 'Chennai', 'chennai', '2010140035', '1', '1', 'upload_files/candidate_tracker/89262008180_resume (2).pdf', NULL, NULL, '2020-10-16', 0, '', '5', '8', '1970-01-01', 0.00, '01:18 PM', '', '1970-01-01', '1', 'not okay with bond. will not join.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 06:47:56', 50, '2020-10-16 02:02:32', 0, NULL, 1),
(1203, '', '0', '9345098317', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 07:03:54', 0, NULL, 0, NULL, 1),
(1204, '', '0', '8122526637', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 12:26:40', 0, NULL, 0, NULL, 1),
(1205, 'yokeshwaran', '11', '8056270523', '', 'yogiwaran11@gmail.com', '1996-12-11', 23, '2', '2', 'manikkam', 'warden', 75000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2010150002', '1', '2', 'upload_files/candidate_tracker/64119585108_CV - YOKESHWARAN.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '53', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'he s thinking to take calls. he wont take 80 calls per day', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 08:17:46', 50, '2020-10-15 11:45:13', 0, NULL, 1),
(1206, 'Srikanth S', '13', '7010925245', '', 'embarsrikanth@gmail.com', '1996-10-07', 24, '2', '2', 'Srinivasan', 'Teacher', 50000.00, 1, 0.00, 20000.00, 'Sirkali', 'Sirkali', '2010150003', '1', '1', 'upload_files/candidate_tracker/36595259244_MyResume2020.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '28', '1970-01-01', 0.00, '09:31 AM', '', '1970-01-01', '1', 'He is not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 09:29:13', 50, '2020-10-15 10:15:37', 0, NULL, 1),
(1207, 'Howsalya', '4', '9489842482', '', 'howsicivil@gmail.com', '1998-05-06', 22, '2', '2', 'Vinayagamoorthy', 'Contractor', 6000.00, 1, 0.00, 10000.00, '415, Perumal Kovil StreetRajapalayam', 'Madhurathagam', '2010150004', '1', '1', 'upload_files/candidate_tracker/39766799566_HOWSI resume-2.pdf', NULL, NULL, '2020-10-15', 0, '', '3', '8', '2020-10-19', 120000.00, '10:05 AM', '3', '2021-01-07', '2', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 09:55:36', 7, '2020-10-15 03:06:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1208, 'Karthikeyan Gopalakrishnan', '13', '8012341435', '9597199509', 'karthikeyang289@gmail.com', '1995-07-28', 25, '2', '2', 'Gopalakrishnan', 'Kooli', 30000.00, 2, 0.00, 15000.00, 'namakkal', 'Alwarpet', '2010150005', '1', '1', 'upload_files/candidate_tracker/8072152163_Resume.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '28', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'He Struggle In Basic Skill Sets. Not Coming Next Time Interview Schedule ', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 09:56:03', 50, '2020-10-15 01:08:46', 0, NULL, 1),
(1209, 'A.kulanthai yesu micheal', '4', '9600981586', '9751386473', '1994micheala@gmail.com', '1994-07-23', 26, '1', '2', 'M.Arokiadass', 'Instrument Technician', 35000.00, 0, 0.00, 15000.00, 'Thiruvannamalai', 'Chennai', '2010150006', '', '1', 'upload_files/candidate_tracker/17921790666_CV 2020.pdf', NULL, NULL, '2020-10-15', 0, '5474', '3', '8', '2020-10-19', 126000.00, '10:08 AM', '6', '2020-11-05', '2', '10.5K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 10:00:54', 7, '2020-10-15 03:07:24', 0, NULL, 1),
(1210, 'Janarthanam', '13', '8838620692', '9790373264', 'jana.mech2018@gmail.com', '1995-12-24', 24, '2', '2', 'R.Alagesan', 'Bus Driver', 120000.00, 1, 0.00, 15000.00, 'Kalpakkam', 'Kalpakkam', '2010150007', '1', '1', 'upload_files/candidate_tracker/73868815794_jana.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '28', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'He Struggle In Basic Skill Sets. Not Coming Next Time Interview Schedule ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 10:01:35', 1, '2020-10-15 10:09:06', 0, NULL, 1),
(1211, 'Jabakumari v', '13', '8870800945', '', 'jabakumarivcse@gmail.com', '1995-12-20', 24, '2', '2', 'Vincent Cross Mani', 'None', 20.00, 2, 0.00, 12000.00, 'Redhills,chennai', 'Redhills,chennai', '2010150008', '1', '1', 'upload_files/candidate_tracker/45862228400_PHP Resume (1).docx', NULL, NULL, '2020-10-15', 0, '', '3', '8', '2020-10-26', 101052.00, '10:10 AM', '5', '1970-01-01', '2', '8421 and IT tean', '2', '2', '2', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 10:07:04', 7, '2020-10-23 05:36:51', 0, NULL, 1),
(1212, 'C.p.THIRUNAVUKARASU', '5', '9840791762', '', 'THIRUNAVUKARASU.c.p@gmail.com', '1992-03-05', 28, '1', '2', 'C.R.PARTHASARATHY', 'Electrician', 20000.00, 0, 30000.00, 30.00, 'Chennai', 'Chennai', '2010150009', '', '2', 'upload_files/candidate_tracker/29980304374_Thirunavukarasu Updated CV (07.05.19).docx', NULL, NULL, '2020-10-15', 0, '5589', '5', '22', NULL, 0.00, '10:27 AM', '0', NULL, '1', 'not satisfied', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 10:22:06', 1, '2020-10-15 10:38:25', 0, NULL, 1),
(1213, 'r. s. padmavathy', '16', '8870219963', '9092443869', 'rsnppb1993@gmail.com', '1993-03-20', 27, '2', '2', 'r.selvaraj', 'cooli', 10000.00, 2, 18500.00, 20000.00, 'porur', 'porur', '2010150010', '1', '2', 'upload_files/candidate_tracker/61760582610_padma.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '54', '1970-01-01', 0.00, '12:15 PM', '', '1970-01-01', '2', 'will not complete the task\n', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 10:35:13', 50, '2020-10-15 01:05:01', 0, NULL, 1),
(1214, 'swamyvel chandar', '4', '7010765389', '9444996379', 'samvelchandarpomaul@51gmail.c', '1998-07-09', 22, '1', '2', 'udayachandran', 'electrition', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'chennai', '2010150011', '', '1', 'upload_files/candidate_tracker/43059832321_RESUME (1).pdf', NULL, NULL, '2020-10-15', 0, 'ram mithran', '5', '13', NULL, 0.00, '12:50 PM', '0', NULL, '1', 'not suitable for tele sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 10:47:41', 1, '2020-10-15 12:56:00', 0, NULL, 1),
(1215, 'm jagatheswaran', '4', '9940326161', '', 'chat2jagan@gmail.com', '1991-08-22', 29, '2', '2', 'y d.manoharan', 'Business', 30000.00, 0, 14000.00, 16000.00, 'Chennai', 'chennai', '2010150012', '1', '2', 'upload_files/candidate_tracker/27690188942_ Resume .docx', NULL, NULL, '2020-10-15', 0, '', '5', '21', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'He Is Interested In Father Buisness, Current Situtation Only Need Job', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 11:02:15', 50, '2020-10-15 11:59:29', 0, NULL, 1),
(1216, '', '0', '9092443869', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 11:07:25', 0, NULL, 0, NULL, 1),
(1217, 'Pavithran', '13', '9043621711', '', 'pavithranajayaj@gmail.com', '1994-05-29', 26, '2', '2', 'Ayyanar', 'Farmer', 20000.00, 0, 15000.00, 15000.00, 'Ramanathapuram district', 'Kannadasan nagar , kodungiyur', '2010150014', '1', '2', 'upload_files/candidate_tracker/79829036411_CV1.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '27', '1970-01-01', 0.00, '11:38 AM', '', '1970-01-01', '2', 'Not Completed the system task. ', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 11:35:52', 50, '2020-10-15 11:43:43', 0, NULL, 1),
(1218, 'riyanka', '11', '9585313697', '8428973369', 'priyankarsp23@gmail.com', '1993-11-18', 26, '2', '2', 'ravichandran', 'supervisor', 25000.00, 1, 0.00, 20000.00, 'bharathidasan street ashok nagar lawspet', 'bhuvaneshwari nagar second main road velacherry', '2010150015', '1', '2', 'upload_files/candidate_tracker/46447913573_PRI Resume.pdf', NULL, NULL, '2020-10-16', 1, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 11:37:55', 50, '2020-10-16 05:16:37', 0, NULL, 1),
(1219, 'Durga', '4', '9514771709', '', 'durgavenkatesan43999@gmail.com', '1999-04-14', 21, '2', '2', 'Arumugam', 'Late', 15000.00, 0, 0.00, 15000.00, '56A subha shree nagar, 4th MR, muglivakkam, ch125', '56Asubha shree nagar, 4th mR ,muglivakkam ,Ch125', '2010150016', '1', '1', 'upload_files/candidate_tracker/402549609_durga resume.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '14', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'not fit for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 11:38:08', 50, '2020-10-15 12:39:54', 0, NULL, 1),
(1220, 'v.rajalakshmi', '4', '8939160551', '7550255234', 'rajalakshmiv35@gmail.com', '1999-09-13', 21, '2', '2', 'M.venketsan', 'Labour', 18000.00, 2, 0.00, 15000.00, '2/568 v.v kovil streets Muglivakkam Chennai', '2/568 v.v kovil streets Muglivakkam Chennai', '2010150017', '1', '1', 'upload_files/candidate_tracker/86964315517_RAJALAKSHMI.docx', NULL, NULL, '2020-10-15', 0, '', '5', '21', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'Not Bold Not Sustain Bcz, 1;30 Hrs Travel', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 11:40:13', 50, '2020-10-15 12:38:34', 0, NULL, 1),
(1221, 'K leela', '5', '6302551085', '', 'Neelusri989@gmail.com', '1992-04-12', 28, '1', '2', 'K sreenivasulu', 'Passed away', 0.00, 2, 3.40, 4.00, 'Hindupur', 'Madivala', '2010150018', '', '2', 'upload_files/candidate_tracker/90825109921_updated resume 2018 october.pdf', NULL, NULL, '2020-10-15', 0, '5535', '3', '8', '2020-10-19', 288000.00, '11:50 AM', '0', NULL, '1', '24k for RM', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 11:45:19', 1, '2020-10-15 11:53:02', 0, NULL, 1),
(1222, 'tejasri', '11', '8682914057', '6374919653', 'tejapraksh@gmail.com', '1997-12-26', 22, '2', '2', 'prakash late', 'clothes wahser mother', 4495.00, 0, 0.00, 10000.00, 'no./ dr.vijaya ragavulu road old washermenpet', 'mint', '2010150019', '1', '1', 'upload_files/candidate_tracker/7593002679_Resume_P.pdf', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 11:47:56', 50, '2020-10-16 05:16:48', 0, NULL, 1),
(1223, '', '0', '8122439112', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 11:59:27', 0, NULL, 0, NULL, 1),
(1224, '', '0', '9344079609', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 12:15:33', 0, NULL, 0, NULL, 1),
(1225, '', '0', '8870800645', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 12:41:32', 0, NULL, 0, NULL, 1),
(1226, 'R.Pooja', '4', '7397484880', '9840843219', 'poojaramachandar2000@gmail.com', '2000-01-20', 20, '1', '2', 'M.Ramachandar', 'Coolie', 20000.00, 2, 0.00, 15000.00, 'Sathyamurthi nagar', 'Sathyamurthi Nagar', '2010150023', '', '1', 'upload_files/candidate_tracker/97963037107_Pooja.R.pdf', NULL, NULL, '2020-10-15', 0, '5264', '3', '8', '1970-01-01', 120000.00, '12:51 PM', '2', '1970-01-01', '2', '10K for Priyanka team', '1', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 12:46:08', 7, '2020-10-15 06:16:13', 0, NULL, 1),
(1227, 'Kumaresan', '5', '8608966358', '9791100211', 'Kumaresankumaresan088@gmail.com', '1996-03-12', 24, '2', '1', 'Balan', 'Coole', 12000.00, 5, 15000.00, 18000.00, 'Thirumullaivoly', 'Thirumullaivoly', '2010150024', '3', '2', 'upload_files/candidate_tracker/7583771871_Dinesh,BCA new.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '8', '1970-01-01', 0.00, '02:34 PM', '', '1970-01-01', '1', 'wrongly updated. candidate is not selected.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 12:49:04', 50, '2020-10-15 01:54:15', 0, NULL, 1),
(1228, 'Muthuramar', '4', '9597287926', '8098935047', 'ram405557@gmail.com', '1997-04-02', 23, '2', '2', 'R.Rayappan', 'Office assistant', 25000.00, 2, 0.00, 20000.00, 'Tenkasi', 'Chennai', '2010150025', '1', '1', 'upload_files/candidate_tracker/20828493366_resume_1600581539713.pdf', NULL, NULL, '2020-10-16', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'he is intrested only non-voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 12:54:43', 50, '2020-10-16 11:03:55', 0, NULL, 1),
(1229, 'Aishwarya Sasikumar', '11', '9445115441', '8124365579', 'aishwaryasasikumark@gmail.com', '1999-11-12', 20, '2', '2', 'K.Sasikumar', 'Corporation of Chennai', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2010150026', '1', '1', 'upload_files/candidate_tracker/33204223492_RESUME Aishwarya.pdf', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 12:58:56', 50, '2020-10-16 05:16:56', 0, NULL, 1),
(1230, 'Haribabu', '11', '8686110787', '', 'tallapaneniharibabu@gmail.com', '1997-06-10', 23, '2', '2', 'Narayana', 'Farmer', 25000.00, 0, 15000.00, 20000.00, 'Andhra Pradesh', 'Tambaram sanatorium', '2010150027', '1', '2', 'upload_files/candidate_tracker/51846314365_HARI updated RESSUME (1)-converted.pdf', NULL, NULL, '2020-10-16', 15, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 01:00:42', 50, '2020-10-16 05:17:05', 0, NULL, 1),
(1231, 'Naveen kumar k', '14', '8925949496', '7094672543', 'Naveenhitler40@gmail.com', '1998-04-05', 22, '2', '2', 'Karunanithi r', 'ac mechanic', 30.00, 2, 0.00, 25000.00, 'mayiladuthurai', 'Chennai', '2010150028', '1', '1', 'upload_files/candidate_tracker/7768610798_naveen .pdf', NULL, NULL, '2020-10-15', 0, '', '5', '28', '1970-01-01', 0.00, '01:20 PM', '', '1970-01-01', '2', 'He is not know android and Php basic', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 01:17:42', 50, '2020-10-15 01:38:40', 0, NULL, 1),
(1232, 'Sarathkumar.A', '4', '9150915350', '9176063215', 'sarathkumar.11sep@gmail.com', '1995-09-11', 25, '1', '2', 'N.Adhikesavan', 'Ro technician', 20000.00, 3, 15000.00, 15000.00, 'Alandur', 'Alandur', '2010150029', '', '2', 'upload_files/candidate_tracker/73621835486_1560764569407_RESUME 22.09.18.doc', NULL, NULL, '2020-10-15', 0, 'Ehrs008', '6', '0', NULL, 0.00, '01:32 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 01:21:26', 1, '2020-10-15 01:39:49', 0, NULL, 1),
(1233, '', '0', '7397420131', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 01:23:10', 0, NULL, 0, NULL, 1),
(1234, 'Kishore kumar', '13', '7397464978', '', '', '1998-07-20', 22, '2', '2', 'Venkat', 'Engineer', 90000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2010150031', '1', '1', 'upload_files/candidate_tracker/11362074327_kishore uodate res.docx', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '01:30 PM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 01:25:02', 50, '2020-10-16 05:17:17', 0, NULL, 1),
(1235, 'Nagajothi j', '11', '8072077180', '9962880258', 'Jothikajagan99@gmail.com', '1999-07-29', 21, '2', '2', 'Jagan N', 'Clerk', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2010150032', '1', '1', 'upload_files/candidate_tracker/50720200418_NAGAJOTHI edit .docx', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 01:30:29', 50, '2020-10-16 05:17:24', 0, NULL, 1),
(1236, '', '0', '7829335436', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 01:34:18', 0, NULL, 0, NULL, 1),
(1237, 'prianka.r', '11', '8220095548', '9445350118', 'priankaramachandran@gmail.com', '1996-11-21', 23, '2', '2', 'ramachandran.m', '-', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2010150034', '1', '1', 'upload_files/candidate_tracker/18377601079_resume online updated.pdf', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not Okay With Our Terms And Conditions.', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2020-10-15 01:36:00', 60, '2020-12-24 10:44:50', 0, NULL, 1),
(1238, 'Sophia T', '11', '7358753645', '', 'Sophiatamizh@gmail.com', '1997-03-15', 23, '2', '2', 'Tamilselvan R', 'Retired S.I', 25000.00, 1, 0.00, 15000.00, 'No, 37 tirunagar 2nd street thiruvottiyur', 'No, 37 tirunagar 2nd street thiruvottiyur', '2010150035', '1', '1', 'upload_files/candidate_tracker/79094947988_UPDATED RESUME.docx', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 02:00:43', 50, '2020-10-16 05:17:32', 0, NULL, 1),
(1239, 'Subin P K', '11', '9003443012', '', 'subinjan@gmail.com', '1993-05-03', 27, '2', '2', 'Mr. S Perumal Pillai', 'Nil', 20000.00, 0, 0.00, 360000.00, 'Thiruvithamcode, Kanyakumari Dist.', 'Jafferkhanpet, Chennai.', '2010150036', '1', '2', 'upload_files/candidate_tracker/88841456801_Subin_Resume.pdf', NULL, NULL, '2020-10-20', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 02:27:04', 50, '2020-10-20 01:24:37', 0, NULL, 1),
(1240, 'Monisha.M', '11', '9566146883', '9444800653', 'mmonisha96monisha@gmail.com', '1996-12-30', 23, '2', '2', 'Madhava murthy.T.K', 'electrical works', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2010150037', '1', '1', 'upload_files/candidate_tracker/14802848464_Monisharesum', NULL, NULL, '2020-10-16', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not Okay With Bond. Will Not Join.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 02:47:17', 50, '2020-10-16 09:47:16', 0, NULL, 1),
(1241, 'Chusma.B', '11', '7092547380', '6383769958', 'chusmaraj112@gmail.com', '1997-10-16', 22, '2', '2', 'Babu Raj.N', 'ICF', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2010150038', '1', '1', 'upload_files/candidate_tracker/63030483492_Resume.pdf', NULL, NULL, '2020-10-16', 0, '', '3', '8', '2020-10-19', 151800.00, '12:00 PM', '', '1970-01-01', '2', '12650 as  CTC', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 03:08:19', 50, '2020-10-16 10:55:05', 0, NULL, 1),
(1242, 'Jagadeesh pandi m', '4', '9384984743', '', 'Jegadeeshpandi99@gmail.com', '1999-04-15', 21, '2', '2', 'Marimuthu C', 'Farmer', 10000.00, 2, 10000.00, 11000.00, 'Virudhunagar', 'Valluvar kottam', '2010150039', '2', '2', 'upload_files/candidate_tracker/6343344863_1602566312683_1602304426394_1602155653830_RESUME 2.docx', NULL, NULL, '2020-10-16', 0, '', '3', '8', '2020-10-23', 120000.00, '10:30 AM', '2', '1970-01-01', '2', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 03:22:55', 7, '2020-10-16 04:46:00', 0, NULL, 1),
(1243, 'Kani Priya', '4', '9677524230', '', 'Bkanipriya2000@gmail.com', '2000-02-06', 20, '2', '2', 'Balaiah k', 'Farmer', 10000.00, 3, 0.00, 10000.00, 'Virudhunagar', 'Valluvar kottam', '2010150040', '2', '1', 'upload_files/candidate_tracker/66065104610_1602156329576_RESUME 2.docx', NULL, NULL, '2020-10-16', 0, '', '5', '21', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'Not Sustain, Low Confidence , Not Bold, Noflow In Words ,Come With Friend Only..', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 03:40:39', 1, '2020-10-15 03:43:04', 0, NULL, 1),
(1244, 'sumathi.r', '11', '8438233296', '9159725249', 'sumathir120@gmail.com', '1994-05-25', 26, '2', '2', 'ramasamy', 'hr', 30000.00, 0, 0.00, 20000.00, 'dindigul', 'west mambalam', '2010150041', '1', '2', 'upload_files/candidate_tracker/89004995155_Sumathi.R - HR Resume-converted.docx', NULL, NULL, '2020-10-15', 0, '', '5', '8', '1970-01-01', 0.00, '04:30 PM', '', '1970-01-01', '2', 'will not suite for rec. not completely in to rec. exp sal is high', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 04:07:41', 50, '2020-10-15 04:42:21', 0, NULL, 1),
(1245, 'Veera raja m', '4', '9080489268', '', 'Veeraraja2030@gmail.com', '1996-07-20', 24, '2', '2', 'Mani', 'Late', 5000.00, 3, 15000.00, 13000.00, 'Pudhukottai', 'Tambaram', '2010150042', '2', '2', 'upload_files/candidate_tracker/29913315342_Raja resume.docx', NULL, NULL, '2020-10-16', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'NOT SUITABLE FOR TELESALES', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 04:20:24', 1, '2020-10-15 04:28:10', 0, NULL, 1),
(1246, 'Balaji j g', '14', '9688776875', '', 'Balajiraoo567@gmail.com', '1993-07-05', 27, '2', '2', 'Govindhan', 'Wewing', 18000.00, 1, 22000.00, 26000.00, 'Paramakudi', 'Kovalam', '2010150043', '2', '2', 'upload_files/candidate_tracker/41071839431_BALAJIJG[2_8].pdf', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 04:56:42', 50, '2020-10-16 05:17:41', 0, NULL, 1),
(1247, 'Lohith. Y', '13', '8838280997', '8056029062', 'Lohithyk@gmail.com', '1999-10-26', 24, '6', '2', 'Krishna murthy', 'Retired clerk', 28000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2010150044', '', '1', 'upload_files/candidate_tracker/69010196565_Resume-4.pdf', NULL, '1', '2023-12-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-10-15 05:22:02', 1, '2023-12-16 07:47:35', 0, NULL, 1),
(1248, 'Deepak R', '13', '9789850490', '', 'deepak8196@gmail.com', '1996-01-08', 24, '2', '2', 'Rajendran', 'Painter', 10000.00, 2, 15000.00, 15000.00, 'Chennai', 'Old washernmpet', '2010150045', '2', '2', 'upload_files/candidate_tracker/90835374841_Deepak nova Resume.pdf', NULL, NULL, '2020-10-16', 0, '', '5', '27', NULL, 0.00, '10:45 AM', '0', NULL, '1', 'Task Not Completed.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 05:43:08', 1, '2020-10-15 05:46:43', 0, NULL, 1),
(1249, 'mowleshwaran. B8', '6', '7358502226', '7358407142', 'mowleshwaran24@gmail.com', '1999-09-09', 21, '2', '2', 'Balamurugan. G', 'business', 18000.00, 1, 0.00, 15000.00, '3/171,Rajalakshmi nagar panguni Street,porur', '1/121,Anna Street,periyapnicheri, porur', '2010150046', '1', '1', 'upload_files/candidate_tracker/10531296019_Mowleshwaran resume 01-1.docx', NULL, NULL, '2020-10-28', 0, '', '5', '20', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'voice and communication not good', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 05:48:09', 8, '2020-10-28 02:36:47', 0, NULL, 1),
(1250, 'V.mageshkumar', '4', '7540069543', '', 'Velayutham30@gmail.com', '2001-06-07', 19, '2', '2', 'S.velayutham', 'Teacher', 10000.00, 1, 0.00, 18000.00, 'Arakkonam', 'Chennai', '2010160001', '1', '1', 'upload_files/candidate_tracker/73523582723_CamScanner 10-19-2020 14.16.40.pdf', NULL, NULL, '2020-10-19', 0, '', '5', '13', '1970-01-01', 0.00, '02:24 PM', '', '1970-01-01', '1', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 08:50:20', 50, '2020-10-19 02:39:23', 0, NULL, 1),
(1251, 'm.naveen kumar', '4', '7358556186', '7358318946', 'smartnaveensargunam@gmail.com', '1998-05-12', 22, '2', '2', 'k.murugan', 'no', 6000.00, 3, 0.00, 13000.00, 'k.k.nagar', 'k.k.nagar', '2010160002', '1', '1', 'upload_files/candidate_tracker/85520683608_naveen.docx', NULL, NULL, '2020-10-16', 0, '', '3', '8', '1970-01-01', 120000.00, '11:22 AM', '2', '1970-01-01', '1', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 10:31:13', 7, '2020-10-16 04:47:02', 0, NULL, 1),
(1252, 'Manikandan M', '13', '9566286996', '7639561591', 'manikandan3706@gmail.com', '1990-05-20', 30, '2', '2', 'Manivannan R', 'Farmer', 15000.00, 2, 0.00, 25000.00, 'Kallakurichi', 'Guindy', '2010160003', '1', '1', 'upload_files/candidate_tracker/20013670069_Resume - Php.docx', NULL, NULL, '2020-10-16', 0, '', '5', '28', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'He is not Know basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 10:45:52', 1, '2020-10-16 11:02:02', 0, NULL, 1),
(1253, 'rishitha', '11', '9059213025', '', 'rishitha981213@gmail.com', '1998-12-13', 21, '2', '2', 'ramakrishna', 'advocate', 70000.00, 1, 0.00, 25000.00, 'tirupati', 'Chennai', '2010160004', '1', '1', 'upload_files/candidate_tracker/62046900278_rishithaa.pdf', NULL, NULL, '2020-10-17', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Pronounced that she will move if she get better offer.  not okay with bond. no knowledge in HR process and time being looking for job.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 10:47:26', 50, '2020-10-17 04:49:16', 0, NULL, 1),
(1254, 'Sandhiya prabha a', '13', '8270160970', '', 'Sandyshai1315@gmail.com', '1998-07-13', 22, '2', '2', 'Arumugam', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Madhurai', 'Kodambakkam', '2010160005', '2', '1', 'upload_files/candidate_tracker/15480936252_sandy-1.docx', NULL, NULL, '2020-10-17', 0, '', '5', '28', '1970-01-01', 0.00, '11:45 AM', '', '1970-01-01', '2', 'She is not Know basic Php skills', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 10:50:24', 50, '2020-10-17 10:52:57', 0, NULL, 1),
(1255, 'V. Madan Kumar', '4', '7200587848', '9444586953', 'madanchella86@gmail.com', '1986-04-01', 34, '2', '1', 'S.M. Veeraraghavan', 'Job search', 20000.00, 1, 0.00, 15000.00, '19,kamarajar salai, teynampet,ch-18.', '68/70,c-15,Adam st, Mylapore,ch_4.', '2010160006', '1', '1', 'upload_files/candidate_tracker/25273546684_file1_1602911431403.pdf', NULL, NULL, '2020-10-17', 0, '', '5', '13', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'communication skill average but expected salary High', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 10:54:48', 58, '2020-12-23 04:54:54', 0, NULL, 1),
(1256, 'Manoj santhanam', '5', '7810095921', '', 'manojsanthanam717@gmail.com', '1995-06-06', 25, '1', '2', 'Santhanam', 'Business', 50000.00, 1, 52000.00, 25000.00, 'Namakkal', 'Bangalore', '2010160007', '', '2', 'upload_files/candidate_tracker/27744398015_CV_2020-10-16-122134.pdf', NULL, NULL, '2020-10-16', 0, '5631', '5', '56', '1970-01-01', 0.00, '11:24 AM', '', '1970-01-01', '1', 'he will not suit for this field', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 11:04:09', 50, '2020-10-16 12:57:59', 0, NULL, 1),
(1257, 'yamini.R', '4', '7092346419', '', 'yamini28200@gmail.com', '2000-02-28', 20, '1', '2', 'ramesh', 'electrician', 120000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2010160008', '', '1', 'upload_files/candidate_tracker/6468511961_RESUME.docx', NULL, NULL, '2020-10-16', 0, '5618', '5', '21', '1970-01-01', 0.00, '11:43 AM', '', '1970-01-01', '1', 'Not Sustain Bez His Brother Also Work In Lic ...,Already Teeth Pain ...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 11:29:25', 50, '2020-10-16 11:47:58', 0, NULL, 1),
(1258, 'thennarasi', '11', '9789809549', '9500013559', 'thennarasi25@gmail.com', '1993-06-25', 27, '2', '2', 'sambasivam', 'late', 500000.00, 1, 0.00, 8000.00, 'velacherry', 'velacherry', '2010160009', '1', '1', 'upload_files/candidate_tracker/12963655723_Thennarasi resume.docx', NULL, NULL, '2020-10-19', 0, '', '5', '53', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '2', 'having just 2 months experience. not suit for  recruiter profile..', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 11:48:57', 50, '2020-10-19 01:29:29', 0, NULL, 1),
(1259, 'M.ANUSHA', '11', '9952004546', '', 'anushajoice607@gmail.com', '1997-09-10', 23, '2', '2', 'M.MANUVEL', 'OFFICE PERSONAL ASSISTANT', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2010160010', '1', '1', 'upload_files/candidate_tracker/39327250335_AnushA Resume_M(FM).docx', NULL, NULL, '2020-10-17', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 11:50:16', 1, '2020-10-16 11:57:15', 0, NULL, 1),
(1260, 'Mahalakshmi ramalingam', '3', '8667364180', '9360798178', 'Maha.shree.ram.r@gmail.com', '1997-08-14', 23, '2', '2', 'Ramalingam', 'Lecture', 30000.00, 1, 0.00, 180000.00, 'Vellore', 'Chennai', '2010160011', '1', '1', 'upload_files/candidate_tracker/37706418474_downloadfile.pdf', NULL, NULL, '2020-10-17', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 12:06:49', 1, '2020-10-16 06:29:23', 0, NULL, 1),
(1261, 'Lokesh babu', '4', '8825557385', '', 'lokeshlee185@gmail.com', '1997-01-17', 23, '2', '2', 'Guna sekar k', 'Driver', 10000.00, 1, 0.00, 11000.00, 'Chennai', 'Sozhinganalur', '2010160012', '2', '1', 'upload_files/candidate_tracker/20646373978_Ss lokesh-resume updated.docx', NULL, NULL, '2020-10-16', 0, '', '5', '21', NULL, 0.00, '01:30 PM', '0', NULL, '1', 'He Is Interested In Customer Care Base Or Cus Support', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 12:20:56', 1, '2020-10-16 12:24:14', 0, NULL, 1),
(1262, 'thomas', '11', '9962215311', '', 'thomas57raj@gmail.com', '1997-04-05', 23, '2', '2', 'selvaraj j', 'electrician', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'chennai', '2010160013', '1', '1', 'upload_files/candidate_tracker/82311632499_1594545990953_Resume.pdf', NULL, NULL, '2020-10-16', 0, '', '5', '8', '1970-01-01', 0.00, '02:15 PM', '', '1970-01-01', '2', 'told him to attend interview and he not turned back', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 02:07:29', 50, '2020-10-16 02:27:03', 0, NULL, 1),
(1263, 'S. SUBBULAKSHMI', '4', '6369027326', '8344252343', 'mssubasakthi57@gmail.com', '1994-11-07', 25, '1', '2', 'M. Subbaiyan', 'Farmer', 18.00, 1, 13.00, 15.00, 'Nagapattinam', 'T. Nagar', '2010160014', '', '2', 'upload_files/candidate_tracker/28301089396_CV_2020-10-04-115831.pdf', NULL, NULL, '2020-10-16', 30, '5419', '5', '13', NULL, 0.00, '02:32 PM', '0', NULL, '2', 'communication low and expected salary High', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 02:26:54', 1, '2020-10-16 03:19:38', 0, NULL, 1),
(1264, '', '0', '9071548320', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010160015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 02:35:52', 0, NULL, 0, NULL, 1),
(1265, '', '0', '8056199613', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010160016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 03:13:21', 0, NULL, 0, NULL, 1),
(1266, '', '0', '8124974345', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010160017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 03:29:39', 0, NULL, 0, NULL, 1),
(1267, 'P.Pon Esakki Muthu', '16', '9500093119', '', 'saastha18@yahoo.co.in', '1985-05-13', 35, '2', '1', 'A.Paramasivan', 'Rtd.,Govt. Employee', 35000.00, 1, 15963.00, 20000.00, 'Maraimalai Nagar, Chengalpattu dist.', 'Maraimalai Nagar, Chengalpattu Dist.', '2010160018', '1', '2', 'upload_files/candidate_tracker/14765046520_Esakki - CV.pdf', NULL, NULL, '2020-10-16', 0, '', '5', '53', '1970-01-01', 0.00, '04:07 PM', '', '1970-01-01', '2', 'completed the mis task for two members comparing to him mohamed hve macros better knowledge and better communication', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 04:00:43', 50, '2020-10-16 05:08:52', 0, NULL, 1),
(1268, 'Snehalatha s', '3', '7358449317', '', 'Snehashalu@gmail.com', '1996-08-13', 24, '2', '2', 'Soundarrajans', 'Leather', 20000.00, 3, 20000.00, 22000.00, 'Chennai', 'Chrompet', '2010160019', '2', '2', 'upload_files/candidate_tracker/89782294168_SnehaLatha.docx', NULL, NULL, '2020-10-17', 10, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 04:14:12', 1, '2020-10-16 04:20:52', 0, NULL, 1),
(1269, 'Vishnu B', '13', '9677113434', '', 'Vishnuftp6@gmail.com', '1996-09-03', 24, '2', '2', 'Ba', 'Electrician', 25000.00, 2, 10000.00, 15000.00, 'Chennai', 'Perungulathur', '2010160020', '2', '2', 'upload_files/candidate_tracker/11839411819_VISHNUB.pdf', NULL, NULL, '2020-10-17', 0, '', '5', '54', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'He will not sustain', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 04:42:19', 1, '2020-10-16 04:45:41', 0, NULL, 1),
(1270, 'Mohammed Azarudeen M', '13', '9123516024', '', 'Azarudeen48@gmail.com', '1997-06-09', 23, '2', '2', 'Mohammed ismail E', 'Tneb', 15000.00, 1, 14000.00, 15000.00, 'Chennai', 'Perambur', '2010160021', '2', '2', 'upload_files/candidate_tracker/21068195994_MOHAMED AZARUDEEN M (1).pdf', NULL, NULL, '2020-10-17', 0, '', '5', '28', NULL, 0.00, '11:10 AM', '0', NULL, '1', 'He is Dont Know Basic skills, PHP, Mysql and JavaScript ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 05:06:37', 1, '2020-10-16 05:09:47', 0, NULL, 1),
(1271, 'Madhumitha C', '13', '7092027853', '', 'Cmadhumithachella26@gmail.com', '1998-10-26', 21, '2', '2', 'Chelladurai', 'Market', 20000.00, 2, 0.00, 14000.00, 'Madhurai', 'Kodambakkam', '2010160022', '2', '1', 'upload_files/candidate_tracker/78270898774_Madhumitha - Resume.pdf', NULL, NULL, '2020-10-17', 0, '', '5', '28', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'She is not Know basic skill in php', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 06:13:38', 1, '2020-10-16 06:16:25', 0, NULL, 1),
(1272, '', '0', '8653278921', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010160023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 10:35:32', 0, NULL, 0, NULL, 1),
(1273, '', '0', '8270852122', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010170001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 09:41:34', 0, NULL, 0, NULL, 1),
(1274, '', '0', '9585520600', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010170002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 10:31:18', 0, NULL, 0, NULL, 1),
(1275, 'V.g.rekha', '5', '9940670144', '9025380338', 'adlynrekha23@gmail.com', '1994-11-05', 25, '1', '1', 'George stevenson', 'Cine actor', 20000.00, 1, 0.00, 13000.00, 'Kodambakkam', 'Kodambakkam', '2010170003', '', '1', 'upload_files/candidate_tracker/36504935169_Resume.docx', NULL, NULL, '2020-10-17', 0, 'Job', '8', '8', '1970-01-01', 0.00, '10:39 AM', '', '1970-01-01', '2', 'check for rm', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 10:35:09', 8, '2020-10-26 04:21:16', 0, NULL, 1),
(1276, 'Sandhiya prabha A', '13', '9025669002', '9943624171', 'sandyshai1315@gmail.com', '1998-07-13', 22, '2', '2', 'Arumugam L', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Madurai', 'Chennai', '2010170004', '2', '1', 'upload_files/candidate_tracker/24956656417_sandy-1.docx', NULL, NULL, '2020-10-17', 0, '', '6', '0', NULL, 0.00, '10:48 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 10:44:59', 1, '2020-10-17 10:52:12', 0, NULL, 1),
(1277, 'DIYA CHANDHOK', '11', '9677039791', '9003286688', 'diyachandhok@gmail.com', '1998-03-21', 22, '2', '2', 'MR.ARUN KUMAR CHANDHOK', 'VICE PRESIDENT MARKETING', 300000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2010170005', '1', '1', 'upload_files/candidate_tracker/52301825988_Resume-Diya Chandhok PDF.pdf', NULL, NULL, '2020-10-17', 0, '', '5', '54', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Se will not Sustain because willing to join indian army.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 10:46:43', 50, '2020-10-17 04:50:01', 0, NULL, 1),
(1278, 'Mohamed Riyas A', '13', '9790071158', '6369160768', 'riyasulfath26212126@gmail.com', '2000-05-26', 20, '2', '2', 'S. M Ahamed kabeer', 'Coolie', 12000.00, 3, 0.00, 10000.00, '189/45 pudhumani 2nt street tenkasi', 'Guindy', '2010170006', '1', '1', 'upload_files/candidate_tracker/22352379365_Riyas.docx', NULL, NULL, '2021-01-27', 0, '', '5', '27', '1970-01-01', 0.00, '12:09 PM', '', '1970-01-01', '2', 'not completed the task', '2', '1', '', '', '', '', '2', '2021-01-27', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-10-17 12:00:52', 7, '2021-01-27 12:49:51', 0, NULL, 1),
(1279, 'Mohamed Musthafa Kamal.S', '13', '9789529348', '9361946149', 'smmusthafakamal@gmail.com', '2000-07-10', 20, '1', '2', 'Syed Sulaiman.M', 'Coolie', 12000.00, 2, 0.00, 10000.00, 'Tenkasi', 'Guindy', '2010170007', '', '1', 'upload_files/candidate_tracker/74521353513_Musthafakamal.docx', NULL, NULL, '2020-10-17', 0, 'Jobs', '5', '28', NULL, 0.00, '12:11 PM', '0', NULL, '2', 'He Is Not Strong Basic Skill Set', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 12:03:03', 1, '2020-10-17 12:15:28', 0, NULL, 1),
(1280, 'Karthickraja', '6', '9790668337', '9176238187', 'karthickrj94@gmail.com', '1994-06-28', 26, '2', '2', 'Dayalan', 'Driver', 20000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2010170008', '1', '2', 'upload_files/candidate_tracker/4090018311_karthickraja Resume PDF.pdf', NULL, NULL, '2020-10-17', 0, '', '5', '16', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '1', 'no comunication skills ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 12:33:00', 50, '2020-10-17 04:50:15', 0, NULL, 1),
(1281, 'J. Ruby', '4', '7550271082', '9080086017', 'rubinaruby5598@gmail.com', '1998-05-05', 22, '1', '2', 'Arokiyamary', 'Tailor', 25000.00, 3, 0.00, 15000.00, 'Villupuram', 'Guindy', '2010170009', '', '1', 'upload_files/candidate_tracker/55093750424_file1_1602920852059.pdf', NULL, NULL, '2020-10-17', 0, '5177', '3', '8', '2020-10-19', 132000.00, '01:41 PM', '3', '2020-11-30', '2', '11K for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 12:46:24', 7, '2020-10-17 04:13:21', 0, NULL, 1),
(1282, 'Umamaheshwari', '4', '9994642924', '9659098979', 'saisriuma68@gmail.com', '1992-06-27', 28, '1', '2', 'Shanthal', 'Farmer', 7000.00, 1, 0.00, 15000.00, 'Erode', 'Guindy', '2010170010', '', '1', 'upload_files/candidate_tracker/18690712195_umaResume.pdf', NULL, NULL, '2020-10-17', 0, '5177', '3', '8', '2020-10-19', 126000.00, '01:01 PM', '2', '1970-01-01', '2', '10.5K for Muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 12:48:36', 7, '2020-10-17 04:13:40', 0, NULL, 1),
(1283, '', '0', '9710374851', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010170011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 01:31:29', 0, NULL, 0, NULL, 1),
(1284, 'masilamani', '4', '8940845954', '', 'mmasila37@gmail.com', '1999-02-13', 21, '2', '2', 'manickam', 'farmer', 10000.00, 2, 0.00, 15000.00, 'pudukottai', 'chennai', '2010170012', '1', '1', 'upload_files/candidate_tracker/73394637907_mass resume.docx', NULL, NULL, '2020-10-17', 0, '', '5', '21', '1970-01-01', 0.00, '01:46 PM', '', '1970-01-01', '2', 'he Is Come With Friend Only xxampalso Not Bold...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 01:43:00', 50, '2020-10-17 01:50:55', 0, NULL, 1),
(1285, 'Abirami', '4', '9791863707', '', 'abirami99balraj@gmail.com', '1999-11-23', 20, '2', '2', 'Balraj', 'Spinning mill supervisor', 12000.00, 2, 0.00, 15000.00, 'Pudukkottai', 'Chennai', '2010170013', '1', '1', 'upload_files/candidate_tracker/93508598376_abi resume.docx', NULL, NULL, '2020-10-17', 0, '', '5', '21', '1970-01-01', 0.00, '01:48 PM', '', '1970-01-01', '2', 'Not Bold ,No Voice Clarity, She Is Come With His Friend ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 01:43:37', 50, '2020-10-17 01:51:02', 0, NULL, 1),
(1286, 'Mohabu Reshma Banu. f', '11', '8610651934', '9514726777', 'Reshmaferoze@gmail', '1996-12-15', 23, '2', '1', 'Imran khan', 'Business', 20000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2010170014', '1', '1', 'upload_files/candidate_tracker/97797640947_Mohabu', NULL, NULL, '2020-10-19', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'no exp in HR and exp is 14-15K as TH. will not suite for REc.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 02:05:38', 50, '2020-10-19 11:19:47', 0, NULL, 1),
(1287, 'priya', '13', '7358200153', '', 'priyammmsp@gmail.com', '1996-01-10', 24, '2', '1', 'subash', 'private job', 30000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2010170015', '1', '1', 'upload_files/candidate_tracker/41090496954_Priya.docx', NULL, NULL, '2020-10-27', 0, '', '5', '28', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '2', 'She is Not Strong In basic Php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 02:09:40', 50, '2020-10-27 11:27:44', 0, NULL, 1),
(1288, 'Fathima', '4', '7397129932', '9739847312', 'fathimad74@gmail.com', '1998-03-04', 22, '2', '2', 'Devasagayam.A', 'Farmer', 20000.00, 2, 18000.00, 18000.00, 'Vellore', 'Thynampet', '2010170016', '1', '2', 'upload_files/candidate_tracker/81743060140_RESUME.pdf', NULL, NULL, '2020-10-17', 1, '', '5', '13', '1970-01-01', 0.00, '02:22 PM', '', '1970-01-01', '2', 'she is looking for the job temporary only', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 02:16:26', 50, '2020-10-17 04:49:44', 0, NULL, 1),
(1289, 'venkatesh. s', '13', '9840508430', '', 'abishekabraham3@gmail.com', '2000-01-18', 20, '2', '2', 'saravanan', 'auto painter', 18000.00, 1, 0.00, 13000.00, 'porur', 'porur', '2010170017', '1', '1', 'upload_files/candidate_tracker/15200828706_VENKATESH RESUME new.docx', NULL, NULL, '2020-10-19', 0, '', '5', '28', NULL, 0.00, '12:30 PM', '0', NULL, '2', 'He is  not strong in basic php', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 02:34:10', 1, '2020-10-19 12:19:42', 0, NULL, 1),
(1290, 'Suresh S', '13', '9962162112', '', 'sureshsivakumar.n@gmail.com', '1998-09-09', 22, '2', '2', 'SIVAKUMAR', 'Film distribution', 18000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2010170018', '1', '1', 'upload_files/candidate_tracker/92109143367_1602174961657_Sureshsivakumar.pdf', NULL, NULL, '2020-10-19', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 02:50:41', 50, '2020-10-19 06:54:27', 0, NULL, 1),
(1291, 'remya', '13', '7339240230', '9361652213', 'ramya08rk@gmail.com', '1995-08-08', 25, '2', '2', 'rajan', 'watchman', 20000.00, 1, 0.00, 15000.00, 'kanya kuamri', 'chennai', '2010170019', '1', '1', 'upload_files/candidate_tracker/8903279914_RESUME PDF 1-1.pdf', NULL, NULL, '2020-10-19', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'She is Not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 03:09:10', 50, '2020-10-19 10:58:14', 0, NULL, 1),
(1292, 'Arunachalam S', '13', '9486604957', '', 'arunindra18@gmail.com', '1998-10-24', 21, '2', '2', 'Sukumar P', 'Senior Draughtsman (Rtd.)', 20000.00, 2, 0.00, 350000.00, 'Tiruvannamalai', 'Chennai', '2010170020', '1', '1', 'upload_files/candidate_tracker/74688624827_RESUME-ARUN.pdf', NULL, NULL, '2020-10-19', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'He is not strong in  php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 03:39:17', 50, '2020-10-19 01:05:58', 0, NULL, 1),
(1293, 'bharathkumar. r', '13', '7401569165', '', 'bharathkumar3929@gmail.com', '1999-09-19', 21, '2', '2', 'ravikumar. r', 'driver', 20000.00, 3, 0.00, 13000.00, 'poonamallee', 'poonamallee', '2010170021', '1', '1', 'upload_files/candidate_tracker/17167773150_BHARATHKUMAR RESUME.docx', NULL, NULL, '2020-10-19', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'He is not strong in basic php and html', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 03:42:11', 50, '2020-10-19 12:05:26', 0, NULL, 1),
(1294, 'Vasanth', '13', '6380282430', '', 'vasanth039998@gmail.com', '1998-09-03', 22, '2', '2', 'Vadivel', 'Wages', 20000.00, 1, 0.00, 13000.00, 'Poonamallee', 'Poonamallee', '2010170022', '1', '1', 'upload_files/candidate_tracker/55165836947_Resume.docx', NULL, NULL, '2020-10-19', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He is not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 03:42:31', 50, '2020-10-19 12:20:42', 0, NULL, 1),
(1295, 'Indumathi J', '4', '8056086752', '', 'indhujai2311@gmail.com', '1994-11-23', 25, '2', '1', 'Jayachandran L', 'Business', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010170023', '3', '1', 'upload_files/candidate_tracker/34459426636_Resume.docx', NULL, NULL, '2020-10-19', 0, '', '5', '53', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'she know oly vlookup.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 05:23:26', 50, '2020-10-19 01:07:37', 0, NULL, 1),
(1296, '', '0', '7548844491', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010170024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 05:28:47', 0, NULL, 0, NULL, 1),
(1297, '', '0', '8056118085', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010170025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 06:43:01', 0, NULL, 0, NULL, 1),
(1298, '', '0', '7639734876', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010180001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-18 07:15:36', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1299, 'Mohankumar k', '4', '9092768591', '6369640128', 'mohankumar1998k@gmail.com', '1998-10-17', 22, '2', '2', 'Kanneeswaran', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Theni', 'Chennai', '2010180002', '2', '1', 'upload_files/candidate_tracker/44715926600_Mohan Kumar new resume.pdf', NULL, NULL, '2020-10-21', 0, '', '3', '8', '2020-10-22', 120000.00, '11:00 AM', '3', '2021-02-02', '2', '10K for Muthu team.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-18 07:51:16', 7, '2020-10-21 06:12:31', 0, NULL, 1),
(1300, 'Yougeshwari', '4', '7397464528', '', '', '1997-12-29', 22, '2', '2', 'Natarajan', 'Travels', 15000.00, 2, 0.00, 12000.00, 'Nedunkundram', 'Nedunkundram', '2010190001', '1', '1', 'upload_files/candidate_tracker/77067060731_Yogi Cv.pdf', NULL, NULL, '2020-10-20', 0, '', '6', '', '1970-01-01', 0.00, '11:05 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 10:42:31', 50, '2020-10-20 01:23:19', 0, NULL, 1),
(1301, 'Suryaprakash', '4', '6385425259', '9500970791', 'Sp5259nb@gmail.com', '1999-08-06', 21, '2', '2', 'Natesan', 'Ex crpf', 15000.00, 1, 0.00, 9000.00, 'Villivakkam', 'Villivakkam', '2010190002', '1', '1', 'upload_files/candidate_tracker/45816600758_SURYA PRAKASH.docx', NULL, NULL, '2020-10-19', 0, '', '3', '8', '2020-10-22', 120000.00, '11:16 AM', '2', '1970-01-01', '1', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 11:07:17', 7, '2020-10-19 04:25:42', 0, NULL, 1),
(1302, 'Eswari', '4', '7401562397', '9940510896', 'Veswari2106@gmail.com', '1998-09-21', 22, '2', '2', 'Venugopal', 'Driver', 15000.00, 2, 0.00, 9000.00, 'Ambattur', 'Ambattur', '2010190003', '1', '1', 'upload_files/candidate_tracker/25793911144_ags 2.pdf', NULL, NULL, '2020-10-19', 0, '', '3', '8', '2020-10-22', 120000.00, '11:30 AM', '5', '1970-01-01', '1', '10K for Dhivya team.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 11:08:12', 7, '2020-10-19 04:26:04', 0, NULL, 1),
(1303, 'Praveen', '13', '9500585175', '', 'praveen.pravin6@gmail.com', '2005-10-19', 15, '2', '2', 'Muralidharan', 'Business', 1.00, 1, 408000.00, 440000.00, 'chennai', 'chennai', '2010190004', '1', '2', 'upload_files/candidate_tracker/93551578655_Final Resume PV.pdf', NULL, NULL, '2020-10-19', 0, '', '5', '27', '1970-01-01', 0.00, '11:36 AM', '', '1970-01-01', '1', 'Task Incompleted and there is no response from him.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 11:33:26', 50, '2020-10-19 12:03:09', 0, NULL, 1),
(1304, 'ramasupramaniyan', '13', '8778214217', '7639712567', 'ramkumardev8778@gmail.com', '1999-06-16', 21, '2', '2', 'kumaresan', 'farmer', 10000.00, 1, 0.00, 12000.00, 'Pudukkottai', 'Pudukkottai', '2010190005', '1', '1', 'upload_files/candidate_tracker/33743422850_Ramasupramaniyan', NULL, NULL, '2020-10-19', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'He is not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 11:42:04', 50, '2020-10-19 12:03:00', 0, NULL, 1),
(1305, 'PRADHAP CHANDAR', '5', '9597418500', '6381918128', 'pradhapchandar@gmail.com', '1986-07-12', 34, '2', '1', 'Mohanasundari P', 'Salaried', 45000.00, 0, 26000.00, 30000.00, 'Pattukkottai', 'Aynavaaram Chennai', '2010190006', '3', '2', 'upload_files/candidate_tracker/76954562357_Pradhap_Resume ).docx', NULL, NULL, '2020-10-19', 1, '', '5', '8', NULL, 0.00, '12:16 PM', '0', NULL, '1', 'no update from his end.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-19 12:07:08', 1, '2020-10-19 12:16:49', 0, NULL, 1),
(1306, 'J .Mageswari', '4', '9841123916', '9941212414', 'magej0601@gmail.com', '1999-01-06', 21, '1', '2', 'Jothi .v', 'Daily wages', 60000.00, 1, 0.00, 11000.00, 'Velachery', 'Velachery', '2010190007', '', '1', 'upload_files/candidate_tracker/12672446848_Mageswari resume.docx', NULL, NULL, '2020-10-19', 0, '5198', '5', '14', '1970-01-01', 0.00, '12:34 PM', '', '1970-01-01', '1', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-19 12:19:29', 50, '2020-10-19 12:48:52', 0, NULL, 1),
(1307, 'Snehalatha.K', '11', '9444038127', '8838036536', 'snehavkannan@gmail.com', '1998-05-06', 22, '2', '2', 'Kannan.A', 'Executive Assistant', 80000.00, 1, 0.00, 23000.00, 'Chennai', 'Chennai', '2010190008', '1', '1', 'upload_files/candidate_tracker/69556662345_Snehalatha Resume.pdf', NULL, NULL, '2020-10-20', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'no job need and will not suite for cafs', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 12:27:18', 50, '2020-10-20 10:14:27', 0, NULL, 1),
(1308, 'Heman B', '4', '9597013827', '', 'heman.hem10@gmail.com', '1999-04-23', 21, '2', '2', 'Bharathi S', 'Business', 50000.00, 1, 0.00, 12000.00, '4/87, Vellalar Street kaattorani ramanathapuram', 'Kalyan Nagar Second Street West Thambaram', '2010190009', '1', '1', 'upload_files/candidate_tracker/41096721805_Heman Resume 1.docx', NULL, NULL, '2020-10-19', 0, '', '5', '13', '1970-01-01', 0.00, '12:35 PM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 12:31:50', 50, '2020-10-19 12:47:12', 0, NULL, 1),
(1309, 'hariharan', '11', '8668005815', '', 'Harihas25@gmail.com', '1990-07-25', 30, '2', '1', 'suhashini', 'homemaker', 25.00, 1, 0.00, 18.00, 'chennai', 'chennai', '2010190010', '1', '1', 'upload_files/candidate_tracker/98910692028_Hariharan G_1598090844.doc', NULL, NULL, '2020-10-21', 0, '', '5', '53', NULL, 0.00, '12:46 PM', '0', NULL, '1', 'nt suit for rec. Asked to go for field but he s not intrested in firls allso, last job he quit due to pressure', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 12:42:57', 1, '2020-10-19 07:28:55', 0, NULL, 1),
(1310, 'G.sindhu', '4', '9360377695', '', 'WWW.karthickrajesh@gmail.com', '2000-07-20', 20, '2', '2', 'A.govindharaj', 'Former', 7000.00, 1, 0.00, 17500.00, 'Thiruttani', 'Chennai', '2010190011', '1', '1', 'upload_files/candidate_tracker/51381250325_CamScanner 10-19-2020 13.45.16.pdf', NULL, NULL, '2020-10-19', 0, '', '5', '21', '1970-01-01', 0.00, '02:11 PM', '', '1970-01-01', '1', 'Not bold, Low Confidence ,She Is Interested In Data entry', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 01:33:54', 50, '2020-10-19 02:26:21', 0, NULL, 1),
(1311, 'Prabu', '5', '9944874844', '7010111521', 'prabuadeva@gmail.com', '1997-05-23', 23, '2', '2', 'Krishnamoorthy', 'Farmer', 10000.00, 1, 0.00, 18000.00, 'TIRUVANNAMALAI', 'Chennai', '2010190012', '1', '1', 'upload_files/candidate_tracker/41995985658_RESUME PRABU K.pdf', NULL, NULL, '2020-10-20', 0, '', '6', '0', NULL, 0.00, '11:36 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 01:39:21', 1, '2020-10-19 01:43:59', 0, NULL, 1),
(1312, '', '0', '9940273322', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010190013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-19 03:48:59', 0, NULL, 0, NULL, 1),
(1313, 'Siva', '11', '8248086468', '9884911564', 'sivarasture@gmail.com', '1996-06-04', 24, '2', '2', 'Selvam', 'Self', 20000.00, 1, 23000.00, 25000.00, 'Chennai', 'Chennai', '2010190014', '1', '2', 'upload_files/candidate_tracker/40120684235_1605959552056_23988.pdf', NULL, NULL, '2020-11-27', 0, '', '6', '0', NULL, 0.00, '12:01 PM', '0', NULL, '1', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 04:40:48', 1, '2020-11-27 09:38:35', 0, NULL, 1),
(1314, 'mary lourdu rebeka l', '4', '8939039431', '9790711815', 'rebekaxavier1503@gmail.com', '1997-03-15', 23, '2', '2', 'lourdu xavier j g s', 'Business', 40000.00, 1, 18000.00, 15000.00, 'No 224/A Kalainar St, Tv Nagar, Ayanavaram, Ch 23', 'No 224/A Kalainar St, Tv Nagar, Ayanavaram, Ch 23', '2010190015', '1', '2', 'upload_files/candidate_tracker/86749360533_Final RESUME rebeka-converted.pdf', NULL, NULL, '2020-10-20', 15, '', '5', '53', '1970-01-01', 0.00, '12:41 PM', '', '1970-01-01', '2', 'not suit fr telecalling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 04:40:50', 50, '2020-10-20 01:22:09', 0, NULL, 1),
(1315, 'S Muthukrishnan', '6', '7010323196', '', 'brendonmuthu3025@gmail.com', '1997-08-25', 23, '2', '2', 'K Subramanian', 'Assistant bank manager', 80000.00, 1, 0.00, 13000.00, 'Palani', 'Palani', '2010190016', '1', '1', 'upload_files/candidate_tracker/74825435216_muthukrishnan.pdf', NULL, NULL, '2020-10-20', 0, '', '5', '24', NULL, 0.00, '11:38 AM', '0', NULL, '2', 'voice not bold.. not convince for sale field.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 04:58:06', 1, '2020-10-20 11:42:22', 0, NULL, 1),
(1316, 'JAFFAR.U', '5', '8124197221', '', 'jaffar2312u2000@gmail.com', '2000-01-09', 20, '2', '2', 'Umayun basha.s', 'Auto driver', 15000.00, 1, 17000.00, 22000.00, 'Chennai , perambur', 'Chennai , perambur', '2010190017', '1', '2', 'upload_files/candidate_tracker/90480027344_Jaffar (resume)new.docx', NULL, NULL, '2020-10-20', 30, '', '5', '31', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'Candidate expecting accountant of finance department. Not interested in sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 04:59:50', 50, '2020-10-20 06:35:26', 0, NULL, 1),
(1317, 'S.rahul', '4', '7358565609', '', 'riskrahul30@gmail.com', '1999-11-04', 20, '2', '2', 'S.sundar', 'Tamil', 8000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2010190018', '1', '1', 'upload_files/candidate_tracker/40621651827_rahul resumes.docx', NULL, NULL, '2020-10-20', 0, '', '5', '21', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'Not Sustain ,He Searched Data  Entry Job ...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 05:13:33', 50, '2020-10-20 01:22:22', 0, NULL, 1),
(1318, 'H. NIVEDHITHA', '4', '9080500687', '', 'nivethakrish712@gmail.com', '1999-12-07', 20, '2', '2', 'S. B. HARI KRISHNAN', 'Business', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Avadi', '2010190019', '1', '1', 'upload_files/candidate_tracker/37429170486_Resume.pdf', NULL, NULL, '2020-10-20', 0, '', '5', '21', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'already she went training in consultancy .. xxamp also  long distance ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 05:14:34', 50, '2020-10-20 01:22:30', 0, NULL, 1),
(1319, 'Anis Fathima', '14', '9943565381', '8870644118', 'anisrahmaniya@gmail.com', '1998-08-17', 22, '3', '2', 'Abdul rahuman', 'Farmer', 25000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2010190020', '', '1', 'upload_files/candidate_tracker/55949517229_Anis[1].pdf', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-19 05:57:24', 7, '2020-10-21 05:54:37', 50, '2020-10-26 02:12:23', 0),
(1320, '', '0', '7358437743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010190021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-19 06:32:03', 0, NULL, 0, NULL, 1),
(1321, 'salabha p s', '11', '8754545661', '9884113272', 'imshalabha.ps@gmail.com', '1994-03-21', 26, '2', '1', 'anand p k', 'it professional', 100000.00, 1, 18000.00, 22000.00, 'chennai', 'chennai', '2010190022', '1', '2', 'upload_files/candidate_tracker/11469474069_Salabha HR Executive.docx', NULL, NULL, '2020-10-20', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'exp sal is 20+ and with one year exp', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 06:41:41', 50, '2020-10-20 10:37:53', 0, NULL, 1),
(1322, 'S. Ramya', '11', '9840441894', '', 'ramyasharmi1997@gmail.com', '1997-08-09', 23, '2', '2', 'E. Sugumaran', 'Productive executive', 20000.00, 1, 0.00, 12000.00, 'Triplicane', 'Triplicane', '2010190023', '1', '1', 'upload_files/candidate_tracker/1139567248_0_Ramya cv.pdf', NULL, NULL, '2020-10-20', 0, '', '8', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'left before interview', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 06:47:18', 50, '2020-10-20 01:23:45', 0, NULL, 1),
(1323, 'p.thilagavathy', '14', '9786602569', '9943565381', 'thilaxraj1108@gmail.com', '1998-08-11', 22, '2', '2', 'p.lakshmi', 'business', 20000.00, 2, 0.00, 15000.00, 'virudhunagar', 'chennai', '2010190024', '1', '1', 'upload_files/candidate_tracker/35702115071_thilax.pdf', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 06:51:54', 7, '2020-10-21 05:54:48', 0, NULL, 1),
(1324, 'Kavya', '4', '8754226652', '', 'Kavya99ravi@gmail.com', '1999-01-21', 21, '2', '2', 'Ravi', 'Kooly', 9500.00, 1, 0.00, 15000.00, 'Aruppukottai', 'Aruppukottai', '2010190025', '1', '1', 'upload_files/candidate_tracker/1384457154_Update resume.pdf', NULL, NULL, '2020-10-27', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 07:14:23', 7, '2020-10-27 04:34:00', 0, NULL, 1),
(1325, 'Kavya', '4', '8753226652', '', 'Kavya99ravi@gmail.com', '1999-01-21', 21, '2', '2', 'Ravi', 'Kooly', 9500.00, 1, 0.00, 15000.00, 'Aruppukottai', 'Chennai', '2010190026', '1', '1', 'upload_files/candidate_tracker/72288701244_KAVYA Resume.docx', NULL, NULL, '2020-10-26', 0, '', '5', '14', '1970-01-01', 0.00, '01:39 PM', '', '1970-01-01', '2', 'not fit for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 07:19:27', 50, '2020-10-26 04:23:00', 0, NULL, 1),
(1326, 'L n meenatchi', '11', '7871366348', '', 'Meenatchi0329@gmail.com', '1997-03-29', 23, '2', '2', 'M lakshmi narayanan', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Vadapalani', 'Vadapalani', '2010190027', '1', '2', 'upload_files/candidate_tracker/67551250269_resume.docx', NULL, NULL, '2020-10-20', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not suite for rec. no knowledge in portal and sal exp is 15K+', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 08:26:45', 50, '2020-10-20 01:24:05', 0, NULL, 1),
(1327, 'Karthic kumar c', '4', '7358811581', '', 'Karthisekar696@gmail.com', '1999-01-06', 21, '2', '2', 'Chandhirasekran k', 'Transport business', 15000.00, 0, 0.00, 12000.00, 'Thoothukudi', 'Perungulathur', '2010200001', '2', '1', 'upload_files/candidate_tracker/32347072796_Resume.docx', NULL, NULL, '2020-10-20', 0, '', '5', '21', '1970-01-01', 0.00, '10:45 AM', '', '1970-01-01', '2', 'he have 18 arrears xxamp also not fit for our process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 08:54:06', 7, '2020-10-20 12:30:21', 0, NULL, 1),
(1328, 'Karan raj selvam a', '4', '9952342579', '', 'Net. Selvam98@gmail.com', '1998-07-10', 22, '2', '2', 'Anbu selvam', 'Farmer', 15000.00, 1, 0.00, 12000.00, 'Nagalapuram', 'Perungulathur', '2010200002', '2', '1', 'upload_files/candidate_tracker/22491358545_karan resume11111 (1).docx', NULL, NULL, '2020-10-20', 0, '', '5', '13', NULL, 0.00, '10:45 AM', '0', NULL, '2', 'not suitable for pressure handling', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 09:37:14', 1, '2020-10-20 09:39:44', 0, NULL, 1),
(1329, 'Dinesh T', '4', '8608894623', '', 'Dineshthiyagu99@gmail.com', '1999-09-13', 21, '2', '2', 'Thiyagarajan v', 'Dailywages', 10000.00, 1, 0.00, 12000.00, 'Sankaralingapuram', 'Perungulathur', '2010200003', '2', '1', 'upload_files/candidate_tracker/52678691531_DINESH.pdf', NULL, NULL, '2020-10-20', 0, '', '5', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 09:41:46', 7, '2020-10-20 11:59:41', 0, NULL, 1),
(1330, 'Nagapandi k', '15', '8825485954', '', 'Pandi14796@gmail.com', '1996-07-11', 24, '2', '2', 'Karunakaran n', 'Farmer', 20000.00, 0, 12000.00, 15000.00, 'Dindugal', 'Nanmangalam', '2010200004', '2', '2', 'upload_files/candidate_tracker/12725576988_Nagapandi Resume.doc', NULL, NULL, '2020-10-24', 0, '', '5', '28', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'He dont Know frame work like wordpress.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 09:48:39', 1, '2020-10-23 12:07:52', 0, NULL, 1),
(1331, 'sudhakar.a', '6', '8610959720', '7092857234', 'sudhakartamil007@gmail.com', '1993-07-19', 27, '1', '2', 'arumugam', 'late', 16000.00, 0, 12000.00, 16000.00, 'vadapalani', 'vadapalani', '2010200005', '', '2', 'upload_files/candidate_tracker/43406142479_Sudhakar Resume 1-1.doc', NULL, NULL, '2020-10-20', 0, '5631', '3', '8', '1970-01-01', 168000.00, '11:29 AM', '2', '1970-01-01', '1', '14K for Syed team', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 10:31:16', 7, '2020-10-21 05:53:54', 0, NULL, 1),
(1332, 'Timothy Andrew Yates', '5', '9962912882', '9962343707', 'Timothyyates5@gmail.com', '1991-05-27', 29, '2', '1', 'Celine Yates', 'Homemaker', 20000.00, 1, 19500.00, 20000.00, 'Chennai', 'Chennai', '2010200006', '1', '2', 'upload_files/candidate_tracker/90434806467_Timothy Resume.docx', NULL, NULL, '2020-10-21', 0, '', '5', '31', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Expecting service based job.  not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 10:37:28', 50, '2020-10-21 12:16:14', 0, NULL, 1),
(1333, 'Sabeha Tasleem . S', '11', '7708604511', '9940854511', 'sabehathasleem@gmail.com', '1997-09-18', 23, '3', '2', 'Shajahan', 'Business', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010200007', '', '1', 'upload_files/candidate_tracker/5839406645_IMG-20200924-WA0041-converted.pdf', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 11:09:52', 7, '2020-10-21 05:55:01', 7, '2020-10-27 11:53:38', 0),
(1334, '', '0', '9884844050', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 11:17:29', 0, NULL, 0, NULL, 1),
(1335, 'Buvaneshwari', '4', '9566000519', '9500338851', 'boovi1996k@gmail.com', '1995-05-24', 25, '2', '2', 'Kaliyamoorthy', 'Former', 500000.00, 2, 2.00, 14.50, 'Kumbakonam', 'Perungalathur', '2010200009', '1', '2', 'upload_files/candidate_tracker/30080551873_Pdf_10Sep20_5.pdf', NULL, NULL, '2020-10-20', 3, '', '5', '21', '1970-01-01', 0.00, '11:39 AM', '', '1970-01-01', '2', 'not fit for our process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 11:18:49', 50, '2020-10-20 01:22:40', 0, NULL, 1),
(1336, 'Saravana kumar s', '4', '8667600579', '', 'Saisaravanakumar123@gmail.com', '1994-09-13', 26, '2', '2', 'Siva kumar g', 'Pertrol bunk cashier', 12000.00, 1, 10500.00, 12500.00, 'Karaikal', 'Sozhinganalur', '2010200010', '2', '2', 'upload_files/candidate_tracker/95043701975_saran_update[1].docx', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 11:24:06', 7, '2020-10-21 05:55:17', 0, NULL, 1),
(1337, '', '0', '8946082712', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 11:28:21', 0, NULL, 0, NULL, 1),
(1338, 'Varun Santhakumar', '6', '9597995913', '', 'varun21496@gmail.com', '1996-04-21', 24, '2', '2', 'Santhakumar', 'agriculture', 20000.00, 0, 0.00, 13000.00, 'chennai', 'chennai', '2010200012', '1', '1', 'upload_files/candidate_tracker/24265590549_FResume.pdf', NULL, NULL, '2020-10-20', 0, '', '5', '57', '1970-01-01', 0.00, '11:36 AM', '', '1970-01-01', '1', 'he is not sales profile .. voice is not clear ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 11:32:28', 7, '2020-10-20 02:33:37', 0, NULL, 1),
(1339, '', '0', '9445750523', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 11:46:06', 0, NULL, 0, NULL, 1),
(1340, 'YUVARAJ J', '6', '8248172989', '9092617705', 'yuviyaathu15@gmail.com', '1998-04-16', 22, '1', '2', 'JAYACHANDRAN K', 'Driver', 10000.00, 1, 0.00, 15000.00, '2419, Kannadasan Street boomadevi nagar', 'T.Nagar', '2010200014', '', '1', 'upload_files/candidate_tracker/9146795212_J YUVARAJ.pdf', NULL, NULL, '2020-10-20', 0, '5172', '5', '19', NULL, 0.00, '12:28 PM', '0', NULL, '1', 'no longer sustain', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 12:25:45', 1, '2020-10-20 12:40:26', 0, NULL, 1),
(1341, 's.mohan raj', '4', '9176788414', '', 'deejaymo29@gmail.com', '1998-06-29', 22, '1', '2', 'm.sugumar', 'leather cooli', 9000.00, 1, 0.00, 15000.00, 'chrompet', 'chrompet', '2010200015', '', '1', 'upload_files/candidate_tracker/98398682795_test.pdf', NULL, NULL, '2020-10-20', 0, '5266', '5', '21', NULL, 0.00, '01:13 PM', '0', NULL, '1', 'kannan  met this candidate, not ok  for crm', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 12:27:31', 1, '2020-10-20 01:24:31', 0, NULL, 1),
(1342, 'Manikandan S', '6', '9952087355', '', 'manikandanshsh@gmail.com', '1993-11-01', 26, '2', '2', 'Shanmugam kS', 'Retired', 30000.00, 3, 17000.00, 19000.00, 'Mogappair west', 'Mogappair west', '2010200016', '1', '2', 'upload_files/candidate_tracker/95973068980_Mani RESUME-converted (1).pdf', NULL, NULL, '2020-10-21', 0, '', '3', '8', '1970-01-01', 192000.00, '11:00 AM', '2', '1970-01-01', '1', '16k for kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 12:32:50', 7, '2020-10-23 05:37:34', 0, NULL, 1),
(1343, 'Nagamuthuraja S', '13', '9600628608', '', 'nagamuthu.unique@gmail.com', '1992-08-06', 28, '2', '2', 'Sanakarapandian G (late)', 'NA', 1.00, 0, 21000.00, 35000.00, 'Chennai', 'Chennai', '2010200017', '1', '2', 'upload_files/candidate_tracker/59339581112_Naga Resume.pdf', NULL, NULL, '2020-10-20', 10, '', '5', '28', '1970-01-01', 0.00, '01:03 PM', '', '1970-01-01', '1', 'He is not  strong in technically and not sustain. Interview Taken by Gokul Sir.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 12:54:28', 50, '2020-10-20 01:24:23', 0, NULL, 1),
(1344, 'Manivannan N', '16', '9566228892', '', '', '1985-09-21', 35, '2', '1', 'Vijayalakshmi M', 'Homemaker', 35000.00, 2, 36000.00, 35000.00, 'Chennai', 'Chennai', '2010200018', '1', '2', 'upload_files/candidate_tracker/34622402931_Curriculum Vitae - Manivannan - MIS.docx', NULL, NULL, '2020-10-21', 0, '', '5', '54', '1970-01-01', 0.00, '12:58 AM', '', '1970-01-01', '1', 'Slow, Task Incomplete.', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 01:06:01', 7, '2020-10-21 12:43:24', 0, NULL, 1),
(1345, 'M kokila', '4', '7092597703', '', 'Kokilakokila528@gmail.com', '2000-07-23', 20, '2', '2', 'K Muniyan', 'Billing work', 15000.00, 2, 0.00, 18000.00, 'Perambur', 'Perambur', '2010200019', '1', '1', 'upload_files/candidate_tracker/4513435584_kokila (resume)(1).docx', NULL, NULL, '2020-10-20', 0, '', '5', '21', '1970-01-01', 0.00, '01:59 PM', '', '1970-01-01', '2', 'she said data entry job only interest', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 01:22:25', 50, '2020-10-20 06:36:55', 0, NULL, 1),
(1346, 'S Muthukumari', '4', '9840620446', '', 'Muthukumarys767@gmail.com', '2000-08-06', 20, '2', '2', 'A Sekar', 'Helth issue', 8000.00, 1, 0.00, 18000.00, 'Perambur', 'Perambut', '2010200020', '1', '1', 'upload_files/candidate_tracker/53842282819_muthu (resume)(1).docx', NULL, NULL, '2020-10-20', 0, '', '5', '21', '1970-01-01', 0.00, '02:56 PM', '', '1970-01-01', '2', 'she is come with friends only....', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 01:24:38', 50, '2020-10-20 06:37:06', 0, NULL, 1),
(1347, 'E kowsalya', '4', '7358211523', '', 'nabikowsalya123@gmail.com', '2000-01-15', 20, '2', '2', 'Elumaliyan', 'Auto driver', 15000.00, 2, 0.00, 18000.00, 'Perambut', 'Perambur', '2010200021', '1', '1', 'upload_files/candidate_tracker/23095402792_kowsi (resume)(1).docx', NULL, NULL, '2020-10-20', 0, '', '5', '21', '1970-01-01', 0.00, '02:31 PM', '', '1970-01-01', '2', 'Not Sustain , She Is Interested In Non Voice Job xxampAlso Come With His Friend Only', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 01:25:20', 50, '2020-10-20 06:37:18', 0, NULL, 1),
(1348, 'Thenmozhi R', '4', '6380837304', '9514922773', 'thenmozhimrt1502@gmail.com', '1998-02-15', 22, '2', '2', 'Rangan', 'Tele caller', 36000.00, 1, 17500.00, 17000.00, '392,L Block, S. V. M. Nagar, otteri, ch-12', '392,L Block, S. V. M. Nagar, Otteri, Ch-12', '2010200022', '1', '2', 'upload_files/candidate_tracker/84312229882_updated resume.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'Need To Check Bcz ,She Already Worked 3  Companies In Last 4 Yrs xxamp Also Expecting High Salary For Crm 18k Above ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 01:26:00', 1, '2020-10-21 11:03:10', 0, NULL, 1),
(1349, 'Vijay vasudevan', '4', '8940819973', '', 'Vijaybcom2011@gmail.com', '1992-03-12', 28, '2', '2', 'Vasudevan t', 'Farmer', 10000.00, 3, 12000.00, 13000.00, 'Mayiladurai', 'Mandavelli', '2010200023', '2', '2', 'upload_files/candidate_tracker/23371236092_VIJAY RESUME-converted.pdf', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 01:36:09', 7, '2020-10-21 05:55:26', 0, NULL, 1),
(1350, 'Akash Anirudh', '4', '8428843461', '9840419651', 'akashanirudhcv98@gmail.com', '1998-10-02', 22, '2', '2', 'C V Murali', 'Temple Management', 13000.00, 1, 0.00, 15000.00, 'Chennai', 'Kolathur,Chennai', '2010200024', '1', '1', 'upload_files/candidate_tracker/48020275033_Akash Anirudh Resume.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 01:45:44', 50, '2020-10-21 10:10:37', 0, NULL, 1),
(1351, 'Kumara guru j', '13', '7448644500', '', 'Gururandy239@gmail.com', '1999-03-25', 21, '2', '2', 'Janakiraman b s', 'Mtc driver', 20000.00, 1, 12000.00, 15000.00, 'Chennai', 'Mogappiar west', '2010200025', '1', '2', 'upload_files/candidate_tracker/55351793685_Kumara guru(2).docx', NULL, NULL, '2021-03-08', 0, '', '5', '27', '1970-01-01', 0.00, '10:45 AM', '', '1970-01-01', '1', 'i am not sure he will sustain. He told salary problem in his company. He got a hike in current month. now he expected more from that. i asked him is it ok if  we offer the same salary. he is not ready to accept.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-10-20 02:04:10', 60, '2021-03-08 05:36:22', 0, NULL, 1),
(1352, 'Monisha R', '5', '9566813108', '', 'Monishavani95@gmail.con', '1995-04-13', 25, '2', '2', 'Ramalingam k', 'Former', 10000.00, 3, 13000.00, 17000.00, 'Sirkali', 'Saidapet', '2010200026', '4', '2', 'upload_files/candidate_tracker/5776795595_Resume.docx', NULL, NULL, '2020-10-20', 0, '', '5', '29', NULL, 0.00, '02:38 PM', '0', NULL, '2', 'Will not sustain for longer term', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 02:35:14', 1, '2020-10-20 02:39:44', 0, NULL, 1),
(1353, 'Gokulnath E', '4', '9551977524', '9080504873', 'Gokulnath2913@gmail.com', '1995-03-29', 25, '2', '2', 'K Elamparithi', 'Fising', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2010200027', '1', '1', 'upload_files/candidate_tracker/38017963843_0_Gokul resume.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '21', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'Already Relived In Credit Card Sales Due To Pressure ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 02:52:52', 50, '2020-10-21 12:20:32', 0, NULL, 1),
(1354, 'Divya', '11', '9500094258', '9150979606', 'divyadharshini310@gmail.com', '1996-03-10', 24, '2', '2', 'J kumar', 'retired', 15000.00, 1, 15000.00, 15000.00, 'Perambur', 'Perambur', '2010200028', '1', '2', 'upload_files/candidate_tracker/57971856262_Divya K Updated Resume.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'will not sustain, left previous 2 org due to Personal issues.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 03:13:44', 50, '2020-10-21 12:20:55', 0, NULL, 1),
(1355, 'Kalaiyarasan r', '4', '6374832128', '8220711976', 'Kalaibca2000@gmail.com', '2000-06-14', 20, '2', '2', 'Rajendran', 'Farmer', 4000.00, 2, 0.00, 10000.00, 'Villupuram', 'Ramapuram', '2010200029', '2', '1', 'upload_files/candidate_tracker/4303155738_kalairesume.docx', NULL, NULL, '2020-10-21', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 04:06:55', 1, '2020-10-20 04:09:39', 0, NULL, 1),
(1356, 'Marimuthu G', '4', '8344883632', '8220711976', 'Marimuthug577@gmail.com', '1998-02-10', 22, '2', '2', 'Gopi', 'Civil worker', 4500.00, 1, 0.00, 10000.00, 'Villupuram', 'Ramapuram', '2010200030', '2', '1', 'upload_files/candidate_tracker/76551531279_marireaume.docx', NULL, NULL, '2020-10-21', 0, '', '5', '13', NULL, 0.00, '10:45 AM', '0', NULL, '1', 'communication skill poor', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 04:23:44', 1, '2020-10-21 11:36:06', 0, NULL, 1),
(1357, '', '0', '9345140665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 04:36:20', 0, NULL, 0, NULL, 1),
(1358, 'Rajasekar', '6', '8754125780', '8248295347', 'rajaskr628@gmail.com', '1993-05-31', 27, '2', '2', 'M.nagappan', 'Driver', 20000.00, 1, 14700.00, 14000.00, 'Thiruverkadu', 'Thiruverkadu', '2010200032', '4', '2', 'upload_files/candidate_tracker/23330701910_Rajsekar Resume.docx', NULL, NULL, '2020-10-21', 0, '', '5', '19', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'will not sustain for long term', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 05:30:05', 1, '2020-10-20 05:37:00', 0, NULL, 1),
(1359, 'N Balaji', '4', '9003232221', '6383605405', 'Balajirahul2707@gmail.com', '1999-07-27', 21, '2', '2', 'D. Nagarajan', 'Business', 10000.00, 1, 0.00, 10000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2010200033', '1', '1', 'upload_files/candidate_tracker/6861866585_balaji resume (1).doc', NULL, NULL, '2020-10-21', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'he is intrested only non-voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 06:11:04', 50, '2020-10-21 05:50:56', 0, NULL, 1),
(1360, 'SYED AKTHAR RUMI A', '4', '8637489010', '8637488010', 'rumilast6@gmail.com', '1999-11-03', 20, '2', '2', 'Ahmed shehinsha', 'Retired', 20000.00, 2, 0.00, 30000.00, 'Chennai-02', 'Pudupet, Chennai-02', '2010200034', '1', '1', 'upload_files/candidate_tracker/52764746346_caf resume.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '21', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'not suit for our process, xxamphe is expecting 20 k for crm (fresher)', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 06:13:58', 1, '2020-10-20 08:18:49', 0, NULL, 1),
(1361, 'Keerthika', '4', '9025282324', '7603899859', 'keerthijothi09021998@gmail.com', '1998-02-09', 22, '2', '2', 'Ravi', 'Tailor', 120000.00, 1, 15.00, 15.00, 'Chennai', 'T.nagar', '2010200035', '1', '2', 'upload_files/candidate_tracker/48963771427_keerthika Resume 1.pdf', NULL, NULL, '2020-10-22', 0, '', '3', '8', '2020-10-26', 126000.00, '11:56 AM', '5', '1970-01-01', '2', '10.5K for Muthu team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-20 06:17:34', 58, '2020-12-23 12:12:31', 0, NULL, 1),
(1362, 'N.R.Ranjith', '5', '9566226784', '', 'ranjith18ramu18@gmail.com', '1996-12-08', 23, '2', '2', 'N. ramu', 'Auto mechanic', 10000.00, 1, 21196.00, 21196.00, 'Kundrathur', 'Kundrathur', '2010200036', '1', '2', 'upload_files/candidate_tracker/83497693672_18Resume (1).pdf', NULL, NULL, '2020-10-21', 0, '', '5', '44', '1970-01-01', 0.00, '11:58 AM', '', '1970-01-01', '1', 'Not fit for life sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 06:20:43', 50, '2020-10-21 12:21:56', 0, NULL, 1),
(1363, 'nandhini', '4', '9361790145', '', 'nandhinisekaar17@gmail.com', '1996-07-17', 24, '2', '2', 'sekar', 'welder', 40000.00, 1, 14000.00, 17000.00, 'chennai', 'chennai', '2010200037', '1', '2', 'upload_files/candidate_tracker/69076062810_RESUME NANDHINI 17.docx', NULL, NULL, '2020-10-21', 0, '', '3', '8', '2020-12-22', 156000.00, '11:00 AM', '2', '1970-01-01', '2', '13K for Dhivya team', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-20 06:21:49', 58, '2020-12-23 12:58:01', 0, NULL, 1),
(1364, 'Ramkumar', '4', '6381648516', '8939709328', 'ramkumar271097@gmail.com', '1998-05-27', 22, '2', '2', 'Udhayakumar', 'Fresher', 25000.00, 1, 0.00, 15000.00, 'PERAMBALUR', 'AMBATTUR', '2010200038', '1', '1', 'upload_files/candidate_tracker/73986140396_resume_1597812218837.pdf', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 06:23:22', 7, '2020-10-21 05:55:36', 0, NULL, 1),
(1365, 'J.Gopinath', '13', '7871665337', '', 'Gopinath123j@gmail.com', '1997-01-16', 23, '2', '2', 'S.jayaraman', 'Walder', 12000.00, 1, 0.00, 10000.00, 'Moulivakkam', 'Moulivakkam', '2010200039', '1', '1', 'upload_files/candidate_tracker/52666195532_GOPINATH.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'He is Not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 06:26:41', 50, '2020-10-21 05:50:34', 0, NULL, 1),
(1366, '', '0', '9176313301', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200040', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 06:34:24', 0, NULL, 0, NULL, 1),
(1367, 'Santhanam s', '4', '8610986902', '9600165861', 'santhanam245@gmail.com', '1991-06-05', 29, '2', '2', 'Sagadevan k', 'Agriculture', 75000.00, 1, 9500.00, 10000.00, 'Thiruvannamalai', 'Alwarthirunagar,chennai', '2010200041', '1', '2', 'upload_files/candidate_tracker/60773622552_SANTHANAM.docx', NULL, NULL, '2020-10-21', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 06:39:28', 8, '2020-10-21 05:50:44', 0, NULL, 1),
(1368, 'Monisha B', '6', '8838289646', '9514436262', 'monishababu1999@gmail.com', '1999-12-01', 20, '2', '2', 'Babu K', 'Clerk', 2500000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2010200042', '1', '1', 'upload_files/candidate_tracker/65931657429_1602837200395_Monisha B (RESUME).pdf', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '5', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 07:52:34', 7, '2020-10-21 05:55:48', 0, NULL, 1),
(1369, '', '0', '8667081174', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200043', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 08:11:03', 0, NULL, 0, NULL, 1),
(1370, 'SYED AKTHAR RUMI A', '4', '8637488010', '9445929189', 'rumilast6@gmail.com', '1999-11-03', 20, '3', '2', 'Ahmed shehinsha', 'Retired', 20000.00, 2, 0.00, 30000.00, 'Chennai-02', 'Pudupet, Chennai-02', '2010200044', '', '1', 'upload_files/candidate_tracker/16836816043_caf resume.pdf', NULL, NULL, '2020-10-21', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 08:20:13', 7, '2020-10-21 01:05:11', 7, '2020-10-21 01:05:21', 0),
(1371, '', '0', '9514436262', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200045', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 08:21:00', 0, NULL, 0, NULL, 1),
(1372, 'Santhosh v', '4', '6385624589', '9597154077', 'Santhosasa984@gmail.com', '1999-06-19', 21, '2', '2', 'Venkatesan', 'Agriculture', 5000.00, 2, 0.00, 10000.00, 'Villupuram', 'Ramapuram', '2010200046', '2', '1', 'upload_files/candidate_tracker/2597002172_santhosh.vm.docx', NULL, NULL, '2020-10-21', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 09:07:12', 1, '2020-10-20 09:12:31', 0, NULL, 1),
(1373, 'Saratha', '4', '9940664985', '9940271535', 'sarathavisu2000@gmail.com', '2000-11-09', 19, '2', '2', 'Viswanathan', 'Office boy', 12000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2010200047', '1', '1', 'upload_files/candidate_tracker/44814230495_Resume.docx', NULL, NULL, '2020-10-21', 0, '', '5', '21', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'she is come with her friend only ,xxamp not bold ...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 09:24:11', 1, '2020-10-21 11:41:01', 0, NULL, 1),
(1374, 'Sindhuja', '4', '9791013668', '8124720567', 'Sindhujak772@gmail.com', '2000-06-26', 20, '2', '2', 'Karuppasamy', 'Loading man', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2010200048', '1', '1', 'upload_files/candidate_tracker/11884712849_SINDHUJA KARUPPASAMY.docx', NULL, NULL, '2020-10-21', 0, '', '5', '21', NULL, 0.00, '11:31 AM', '0', NULL, '2', 'not suit for our process, she is come with her friend only...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 09:35:40', 1, '2020-10-21 11:31:47', 0, NULL, 1),
(1375, '', '0', '9789092917', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 08:33:21', 0, NULL, 0, NULL, 1),
(1376, 'susan sunitha a', '4', '8190949698', '9789052142', 'sunithaandrew54@gmail.com', '1998-03-30', 22, '2', '2', 'andrews j', 'security', 18000.00, 1, 18000.00, 20000.00, 'chennai', 'chennai', '2010210002', '1', '2', 'upload_files/candidate_tracker/77592536727_Susan Sunitha PDF.pdf', NULL, NULL, '2020-10-21', 0, '', '3', '8', '2020-10-22', 189600.00, '11:14 AM', '4', '2022-03-09', '2', '15010 as take home. for renewal', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 08:38:24', 7, '2020-10-21 06:41:11', 0, NULL, 1),
(1377, 'Dineshkumar S', '6', '7550256323', '8667045731', 'dineshkumarsmart59@gmail.com', '1999-01-04', 21, '2', '2', 'Sridhar T', 'Security', 13000.00, 1, 0.00, 15000.00, '8/9 periyar street ramapuram ambattur', 'Chennai', '2010210003', '1', '1', 'upload_files/candidate_tracker/98706735322_dinesh one page resume.pdf', NULL, NULL, '2020-10-21', 0, '', '3', '8', '1970-01-01', 156000.00, '11:00 AM', '2', '1970-01-01', '1', '13k for suthagar team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 08:46:28', 7, '2020-10-23 05:38:12', 0, NULL, 1),
(1378, 'anand', '13', '9940378715', '6380567442', 'anandrago.18r@gmail.com', '1999-11-18', 20, '2', '1', 'ragothaman', 'mason', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010210004', '1', '1', 'upload_files/candidate_tracker/35266461211_Anand Resume.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '27', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '2', 'Task Given for this candidate. Task Incomplete. He did not complete even 50%.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 10:03:59', 7, '2020-10-21 02:41:16', 0, NULL, 1),
(1379, 'Jeevitha', '4', '7397678111', '9042804072', 'jeevaraj8156@gmail.com', '1991-06-15', 29, '2', '2', 'Sekar', 'Farmer', 10000.00, 2, 0.00, 14000.00, 'Thiruthuraipoondi', 'Koyambedu', '2010210005', '1', '1', 'upload_files/candidate_tracker/21590490901_Jeevitha_S_Updated(1)(1)(1).pdf', NULL, NULL, '2020-10-21', 0, '', '5', '21', '1970-01-01', 0.00, '02:15 PM', '', '1970-01-01', '2', 'already worked team leader in non voice process....', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-21 10:24:54', 58, '2020-12-23 12:20:05', 0, NULL, 1),
(1380, 'Sobana V', '4', '8939023718', '7904089235', 'sofibana9192@gmail.com', '1988-06-12', 32, '2', '1', 'Sathish Kumar S', 'Aadhar Opretor', 15000.00, 0, 12000.00, 15000.00, 'Saidapet', 'Saidapet', '2010210006', '1', '2', 'upload_files/candidate_tracker/1785258162_RESUME.docx', NULL, NULL, '2020-10-21', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'she s nt opening her mouth also', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 10:31:58', 50, '2020-10-21 12:17:36', 0, NULL, 1),
(1381, 'Gokul', '4', '8248900745', '', 'gokulkrish410@gmail.com', '1995-12-10', 24, '2', '2', 'Sarachandran', 'Fishing', 18000.00, 1, 0.00, 13000.00, 'Triplicane', 'Triplicane', '2010210007', '1', '1', 'upload_files/candidate_tracker/87232226299_Resume.docx', NULL, NULL, '2020-10-21', 0, '', '5', '21', NULL, 0.00, '11:02 AM', '0', NULL, '1', 'He Already Relived  Credit Card Job Bcz Not Able To Handle Pressure...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 10:59:29', 1, '2020-10-21 11:05:12', 0, NULL, 1),
(1382, 'vijay e', '4', '9003662892', '8248610462', 'vj1997@gmail.com', '1997-06-02', 23, '2', '2', 'elumalai v', 'farmer', 4000.00, 1, 0.00, 10000.00, 'villupuram', 'ramapuram', '2010210008', '2', '1', 'upload_files/candidate_tracker/72364142996_Arun.docx', NULL, NULL, '2020-10-21', 0, '', '5', '13', NULL, 0.00, '11:13 AM', '0', NULL, '1', 'not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 11:08:49', 1, '2020-10-21 11:12:05', 0, NULL, 1),
(1383, 'Jayapriya', '16', '6382647144', '', 'jayapriya57@gmail.com', '1991-07-28', 29, '1', '1', 'Venkatraman', 'Bank car loan manager', 35000.00, 1, 24600.00, 24000.00, 'Ambattur', 'Ambattur', '2010210009', '', '2', 'upload_files/candidate_tracker/47194398308_Resume - Jaya Priya-Fresh (1).pdf', NULL, NULL, '2020-10-21', 15, '5208', '5', '53', NULL, 0.00, '11:12 AM', '0', NULL, '1', 'not suit fr mis', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 11:10:05', 1, '2020-10-21 11:19:37', 0, NULL, 1),
(1384, 'dinesh kumar', '16', '8939678943', '9884398883', 'dhhineshkumar@gmail.com', '1989-07-06', 31, '2', '2', 'dhanasekar d', 'security manager', 50000.00, 1, 18500.00, 25000.00, 'Potheri', 'Potheri', '2010210010', '1', '2', 'upload_files/candidate_tracker/57585287766_D Dinesh kumar 4D.docx', NULL, NULL, '2020-10-22', 15, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'too long  he dnt knw abt PPT', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:10:52', 50, '2020-10-22 11:50:33', 0, NULL, 1),
(1385, '', '0', '8072192693', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 11:15:13', 0, NULL, 0, NULL, 1),
(1386, 'Priyanka. L', '4', '7358275355', '9791161627', 'priyankals142@ gmail.com', '2000-05-14', 20, '1', '2', 'Loganathan. S', 'Driver', 12000.00, 2, 0.00, 13000.00, 'Koyambed, Chennai.', 'Koyambed, Chennai.', '2010210012', '', '1', 'upload_files/candidate_tracker/16921004679_RESUME priya.docx', NULL, NULL, '2020-10-22', 0, '66673', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 11:15:19', 50, '2020-10-22 05:44:35', 0, NULL, 1),
(1387, '', '0', '9884558879', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 11:28:19', 0, NULL, 0, NULL, 1),
(1388, 'malathi', '13', '9003689924', '', 'malathiramasamyp@gmail.com', '1993-03-07', 27, '2', '2', 'ramasamy', 'coolie', 10000.00, 2, 17600.00, 25000.00, 'tenkasi', 'chennai', '2010210014', '1', '2', 'upload_files/candidate_tracker/94383203863_R Malathi_ECE.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '28', '1970-01-01', 0.00, '11:54 AM', '', '1970-01-01', '2', 'She is not answering basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:37:35', 50, '2020-10-21 12:19:10', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1389, 'thalavai subramanian', '4', '7200267164', '', 'thalavaisubramanian@gmail.com', '1997-05-09', 23, '2', '2', 'vannamuthu c', 'postal dept', 25000.00, 1, 12.50, 16000.00, 'tirunelveli', 'guindy', '2010210015', '1', '2', 'upload_files/candidate_tracker/4565295426_Process associate.pdf', NULL, NULL, '2020-10-22', 0, '', '3', '8', '2020-10-26', 132000.00, '11:45 AM', '6', '2021-01-19', '1', '11K  muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:42:53', 7, '2020-10-23 05:38:46', 0, NULL, 1),
(1390, 'mohan v', '4', '9094669791', '8667743646', 'mohanmogi3@gmail.com', '1992-03-19', 28, '2', '2', 'venkatasan', 'labour', 12000.00, 2, 14000.00, 18000.00, 'kovilambakkam', 'kovilambakkam', '2010210016', '1', '2', 'upload_files/candidate_tracker/66469487121_Mohan resume. Bactrak matrix.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '13', '1970-01-01', 0.00, '11:51 AM', '', '1970-01-01', '1', 'communication not well but expected salary very high', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:45:53', 50, '2020-10-21 05:49:14', 0, NULL, 1),
(1391, 'Govindharaj L', '4', '8248825362', '9500013750', 'Govigreen777@gmail.com', '1997-11-29', 22, '2', '2', 'Lakshmanan k', 'cooli', 15000.00, 2, 0.00, 15000.00, 'Sivakasi,virudhunagar', 'ekkatuthangal,Chennai', '2010210017', '1', '1', 'upload_files/candidate_tracker/13846591447_govi.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '13', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'he is intrested only non-voice process so not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:46:02', 50, '2020-10-21 05:48:38', 0, NULL, 1),
(1392, 'Nathiya C', '16', '7550125137', '7358228974', 'Nathinila1995@gmail.com', '1995-05-02', 25, '2', '2', 'Chinnasamy', 'Farmer', 20000.00, 3, 15000.00, 25000.00, 'Krishnagiri', 'Chennai', '2010210018', '1', '2', 'upload_files/candidate_tracker/96156301279_Resume Nathiya.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', ' she knows oly basics, exp 2ok', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:54:33', 50, '2020-10-22 10:59:33', 0, NULL, 1),
(1393, 'vinoth', '11', '9025339323', '', 'vinoth.j.vino@gmail.com', '1989-03-15', 31, '2', '2', 'janardhan', 'business', 20000.00, 1, 21000.00, 25000.00, 'chennai', 'chennai', '2010210019', '1', '2', 'upload_files/candidate_tracker/50811218093_Vinoth Profile.docx', NULL, NULL, '2020-10-22', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'he s not opening his mouth', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:56:11', 50, '2020-10-22 12:04:57', 0, NULL, 1),
(1394, 'R.Aravindhan', '6', '7092732482', '9962165248', 'Aravindhanashwin2000@gmail.com', '2000-07-19', 20, '1', '2', 'A.Ravi', 'Daily wage', 15000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2010210020', '', '1', 'upload_files/candidate_tracker/7507184625_aravindhan resume.pdf', NULL, NULL, '2020-10-21', 0, '5581', '5', '24', NULL, 0.00, '12:33 PM', '0', NULL, '1', 'NOT FIT FOR OUR PROFILE', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 12:20:52', 1, '2020-10-21 12:54:17', 0, NULL, 1),
(1395, 'Meganathan.b', '6', '9962165248', '7092732482', 'meganathanb1629@gmail.com', '1999-11-29', 20, '1', '2', 'Babu.b', 'Auto driver', 12000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2010210021', '', '1', 'upload_files/candidate_tracker/19301266274_MEGANATHAN.docx', NULL, NULL, '2020-10-21', 0, '5581', '3', '8', '2020-10-22', 150000.00, '12:34 PM', '6', '2020-10-30', '1', '12.5K fotr syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 12:23:46', 7, '2020-10-22 12:37:47', 0, NULL, 1),
(1396, 'Ramu v', '4', '9500596253', '', 'Ramuv405@gmail.con', '1999-06-05', 21, '2', '2', 'Vadivelu', 'Contractor', 6000.00, 3, 0.00, 10000.00, 'Villupuram', 'Perungulathur', '2010210022', '2', '1', 'upload_files/candidate_tracker/23032849272_resume.docx', NULL, NULL, '2020-10-22', 0, '', '8', '', '1970-01-01', 0.00, '02:35 PM', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 12:29:37', 50, '2020-10-22 06:16:47', 0, NULL, 1),
(1397, 'Suresh N', '16', '9566295676', '', 'nagasuresh013@gmail.com', '1991-06-05', 29, '2', '1', 'Nagarajan', 'Farmer', 3000.00, 2, 20000.00, 20000.00, 'Ariyalur', 'Virugambakkam', '2010210023', '1', '2', 'upload_files/candidate_tracker/54088197272_suresh MIS profile .doc', NULL, NULL, '2020-10-21', 0, '', '6', '0', NULL, 0.00, '01:53 PM', '0', NULL, '1', NULL, '3', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 12:51:32', 1, '2020-10-21 01:05:52', 0, NULL, 1),
(1398, 'Sathish T', '6', '9047155598', '9176074178', 'sathishhathish@gmail.com', '1986-06-02', 34, '1', '1', 'Thirupathirajan', 'Retired Accountant', 25000.00, 0, 16000.00, 17000.00, 'Nandampakkam, Chennai', 'Nandampakkam, Chennai', '2010210024', '', '2', 'upload_files/candidate_tracker/85811028537_Sat Res CRM(1)(1).pdf', NULL, NULL, '2020-10-21', 30, 'Thiyagu', '5', '24', '1970-01-01', 0.00, '01:15 PM', '', '1970-01-01', '1', 'not fit for our profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 01:05:19', 7, '2020-10-21 01:25:09', 0, NULL, 1),
(1399, 'N GUNA SEELAN', '4', '8190076146', '9941022211', 'gunanandy@gmail.com', '1994-08-04', 26, '2', '2', 'Nandhakumar', 'Business', 90000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2010210025', '1', '2', 'upload_files/candidate_tracker/59838174753_Resume Guna - ME V.docx', NULL, NULL, '2020-10-24', 0, '', '5', '13', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 01:06:38', 50, '2020-10-24 10:09:31', 0, NULL, 1),
(1400, '', '0', '9500597253', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 01:14:09', 0, NULL, 0, NULL, 1),
(1401, '', '0', '8939351805', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 02:03:06', 0, NULL, 0, NULL, 1),
(1402, 'Harini subramani', '4', '9384642859', '', 'hathasa.harini.1998@gmail.com', '1998-06-06', 22, '2', '2', 'G.subramani', 'Private employee', 72000.00, 2, 10000.00, 15000.00, 'Chennai', 'Chennai', '2010210028', '1', '2', 'upload_files/candidate_tracker/49749358933_HARINI SUBRAMANI-RESUME.docx', NULL, NULL, '2020-10-24', 10, '', '5', '13', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'not siutable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 02:11:11', 50, '2020-10-24 12:06:17', 0, NULL, 1),
(1403, 'Venkatraj s', '4', '8754645854', '9787733021', 'Venkat14051997@gmail.com', '1997-05-14', 23, '2', '2', 'Sanskar m', 'Former', 15000.00, 1, 11000.00, 13500.00, 'Siruvangunam village', 'Kandhanchavadi', '2010210029', '1', '2', 'upload_files/candidate_tracker/60943608100_venkat update resume 2.docx', NULL, NULL, '2020-10-21', 0, '', '5', '21', '1970-01-01', 0.00, '02:30 PM', '', '1970-01-01', '2', 'He Is Expected 13 K Above For Crm.....', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 02:26:25', 50, '2020-10-22 10:07:36', 0, NULL, 1),
(1404, 'Ramu v', '4', '7358266610', '', 'Ramuv405@gmail.con', '1999-06-05', 21, '2', '2', 'Vadivelu', 'Contractor', 6000.00, 3, 0.00, 10000.00, 'Villupuram', 'Perungulathur', '2010210030', '2', '1', 'upload_files/candidate_tracker/76977064026_resume-2.docx', NULL, NULL, '2020-10-21', 0, '', '5', '13', '1970-01-01', 0.00, '02:40 PM', '', '1970-01-01', '1', 'not well communication  so not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 02:26:33', 7, '2020-10-21 05:56:11', 0, NULL, 1),
(1405, 'Madhankumar.C', '4', '7010946577', '', 'madhanraina556@gmail.com', '1995-04-11', 25, '2', '2', 'Chandrasekar.K', 'Driver', 150000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2010210031', '1', '2', 'upload_files/candidate_tracker/76199895118_1598960254427Resume_madhankumar.docx', NULL, NULL, '2020-10-24', 10, '', '5', '13', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'he is looking for non-voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 02:40:47', 50, '2020-10-24 10:09:51', 0, NULL, 1),
(1406, '', '0', '7401394211', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 03:36:18', 0, NULL, 0, NULL, 1),
(1407, 'Dhinakaran', '16', '8124648558', '9514526068', 'dhinakarandhina777@gmail.com', '1994-08-14', 26, '2', '2', 'N.Kumar', 'Tiles business', 25000.00, 0, 12000.00, 16000.00, 'Minjur', 'Minjur', '2010210033', '1', '2', 'upload_files/candidate_tracker/77852195018_dhinakaran resume.docx', NULL, NULL, '2020-10-22', 30, '', '5', '53', '1970-01-01', 0.00, '11:48 AM', '', '1970-01-01', '2', 'too long as well as he dnt knw PPT and all', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 03:43:39', 50, '2020-10-22 05:19:30', 0, NULL, 1),
(1408, 'K.vivek', '3', '8610978835', '9380057194', 'viveklakshmi564@gmail.com', '1999-05-17', 21, '2', '2', 'S.karthick', 'Car driving', 14000.00, 1, 0.00, 11000.00, 'Guduvanchery', 'Guduvanchery', '2010210034', '1', '1', 'upload_files/candidate_tracker/40695659072_Vivek resume.pdf', NULL, NULL, '2020-10-23', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 03:52:19', 50, '2020-10-23 06:20:01', 0, NULL, 1),
(1409, '', '0', '9087675445', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210035', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 04:05:12', 0, NULL, 0, NULL, 1),
(1410, 'Usharani', '4', '9486769771', '', 'ushasivashanmugam24@gmail.com', '1994-10-24', 25, '2', '2', 'Sivashanmugam', 'Salesman', 150000.00, 1, 10000.00, 12000.00, 'Rotary nagar, vallampadugai, Chidambaram', '9, shree sai nivas, senthil avenue, ponniammanmedu', '2010210036', '1', '2', 'upload_files/candidate_tracker/10280735269_usharani_resume.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'pronouncation problem, xxamp no flow in words', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 04:19:14', 50, '2020-10-22 11:24:27', 0, NULL, 1),
(1411, 'A Kiruthighaa', '2', '7305633549', '9551178798', 'kiruthighaaanand99@gmail.com', '1999-10-26', 20, '2', '2', 'B anandakumar', 'Company supervisor', 15000.00, 1, 0.00, 15000.00, 'Madipakkam', 'Keelakatalai', '2010210037', '1', '1', 'upload_files/candidate_tracker/71121762683_Kiruthighaa Resume.docx', NULL, NULL, '2020-10-22', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 04:27:32', 50, '2020-10-22 05:28:51', 0, NULL, 1),
(1412, 'D.shalini Deu', '4', '6380919123', '9566206985', 'shalinishalu12241@gmail.com', '1998-12-13', 21, '2', '2', 'C.Dhanasekaran', 'Civil Engineer', 25000.00, 1, 0.00, 10000.00, 'Alandur', 'Alandur', '2010210038', '1', '1', 'upload_files/candidate_tracker/18527730973_SHALINI RESUME (1).pdf', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '18 age  running ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 04:53:01', 50, '2020-10-22 11:42:43', 0, NULL, 1),
(1413, 'Manimaran.m', '4', '9524960067', '8122335499', 'joelsam321@gmail.com', '1996-02-28', 24, '2', '2', 'Murugan', 'Working', 20000.00, 1, 12000.00, 14000.00, 'No-42 bharathidhasan street,kilambakkam,ch-603210', 'Tambaram', '2010210039', '1', '2', 'upload_files/candidate_tracker/66209247610_MANIMARAN resume - updated (2) (1).pdf', NULL, NULL, '2020-10-22', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 05:17:29', 50, '2020-10-22 05:29:07', 0, NULL, 1),
(1414, 'Thenmozhi', '4', '7358446416', '', 'thenu044@gmail.com', '1999-02-04', 21, '2', '2', 'Selvam', 'Provisional store', 40000.00, 1, 10000.00, 12000.00, 'Chennai', 'Chennai', '2010210040', '1', '2', 'upload_files/candidate_tracker/32640204029_thenmozhi update resume.docx', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Non Voice Job In Cognazant, she said data entry ill be ok ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 05:37:26', 50, '2020-10-22 11:04:38', 0, NULL, 1),
(1415, 'Faizan Basha .N', '5', '9677292973', '8553344466', 'faizanbasha77@gmail.com', '1996-06-06', 24, '2', '2', 'Nazeer Basha .H', 'Business', 360000.00, 1, 30000.00, 20000.00, 'Mylapore ,Chennai - 600028', 'Mylapore,Chennai _- 600028', '2010210041', '1', '2', 'upload_files/candidate_tracker/3912768627_FAIZAN CV.pdf', NULL, '1', '2020-10-22', 0, '', '6', '8', '2024-04-04', 204000.00, '11:00 AM', '2', '1970-01-01', '1', '17K for RE suthagar team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2020-10-21 06:01:53', 126, '2024-04-04 12:16:47', 0, NULL, 1),
(1416, 'Balakumar.s', '16', '9176339263', '', 'balakumar.mba@gmail.com', '1987-06-18', 33, '2', '1', 'Sekaran.k', 'Rtd adm in Oriental insurance company', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2010210042', '1', '2', 'upload_files/candidate_tracker/62043549856_recent bala resume (1).docx', NULL, NULL, '2020-10-22', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'exp 25k,  knw hve tht much knowledge', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 06:13:37', 50, '2020-10-22 11:16:39', 0, NULL, 1),
(1417, 'Sathasivam', '4', '9384304371', '', '1511satha@mail.com', '1994-11-15', 25, '2', '2', 'Radhakrishnan', 'Farmer', 6000.00, 1, 0.00, 13000.00, 'Cuddalore', 'Chennai', '2010210043', '1', '1', 'upload_files/candidate_tracker/31818261211_', NULL, NULL, '2020-10-23', 0, '', '5', '13', '1970-01-01', 0.00, '03:05 PM', '', '1970-01-01', '1', 'not suitable for telesales', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-21 06:58:48', 58, '2020-12-23 12:26:52', 0, NULL, 1),
(1418, '', '0', '8220814427', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210044', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 07:56:30', 0, NULL, 0, NULL, 1),
(1419, 'Sowmya', '4', '8838267608', '9176094182', 'sowmyasowmya2912@gmail.com', '1998-12-29', 21, '2', '2', 'M jayaseelan', 'Electriction', 150000.00, 2, 0.00, 10000.00, 'Old washermanpet', 'Old washermanpet', '2010210045', '1', '1', 'upload_files/candidate_tracker/80199707746_sowmya resume.docx', NULL, NULL, '2020-10-23', 0, '', '5', '8', '1970-01-01', 0.00, '11:24 AM', '', '1970-01-01', '2', 'hold for Star and will not suite for CAFS', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 08:13:06', 50, '2020-10-23 02:50:41', 0, NULL, 1),
(1420, 'Heena Mujeeb M', '4', '7904463239', '9677070954', 'heenamujeeb21@gmail.com', '2002-03-21', 18, '2', '2', 'Mujeebudeen.P.U.S', '-', 12000.00, 1, 0.00, 15000.00, 'Avadi, Pattabiram', 'Avadi, pattabiram', '2010210046', '1', '1', 'upload_files/candidate_tracker/50257628847_Resume.docx', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not bold,also interested in data entry...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 10:01:12', 50, '2020-10-22 11:34:36', 0, NULL, 1),
(1421, 'Sylvia', '4', '7299908675', '', 'sylvialazar14@gmail.com', '1998-12-14', 21, '2', '2', 'Lazar', 'Provisional store', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2010210047', '1', '1', 'upload_files/candidate_tracker/27756105394_Sylvia resume.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not Bold xxamp Low Confidence  Last 1 Year She Not Went for Any Job,,,', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-21 10:24:42', 58, '2020-12-23 04:50:50', 0, NULL, 1),
(1422, 'R. Priya', '4', '9940692467', '', 'priyapriya1751998@gmail.com', '1998-05-17', 22, '2', '2', 'M. Ramachandran', 'Cooli', 15000.00, 1, 0.00, 12000.00, 'Guduvancheri', 'Guduvancheri', '2010220001', '6', '1', 'upload_files/candidate_tracker/9069606644_RESUME2(1)(1).pdf', NULL, NULL, '2020-10-22', 0, '', '5', '13', '1970-01-01', 0.00, '10:36 AM', '', '1970-01-01', '2', 'NOT SUITABLE FOR TELESALES', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 09:42:19', 50, '2020-10-22 11:59:51', 0, NULL, 1),
(1423, 'P. Srimathy', '4', '9092646257', '', 'pavisrisucess100@gamil.com', '2000-02-09', 20, '1', '2', 'M. Paranthman', 'Cooli', 20000.00, 1, 0.00, 12000.00, 'Vandular', 'Vandular', '2010220002', '', '1', 'upload_files/candidate_tracker/26181074601_Srimathy Resume-Final.pdf', NULL, NULL, '2020-10-22', 0, 'Job\'s', '5', '13', NULL, 0.00, '10:08 AM', '0', NULL, '2', 'not suitable for pressure handling', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 09:52:15', 1, '2020-10-22 10:42:50', 0, NULL, 1),
(1424, 'VIGNESH M', '13', '6380036837', '', 'vigneshtpt321@gmail.com', '1999-05-09', 21, '2', '2', 'MANI R', 'Coolie', 4500.00, 2, 0.00, 10000.00, 'Tirupattur', 'Tirupattur', '2010220003', '1', '1', 'upload_files/candidate_tracker/6133941789_VIGNESH.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '28', '1970-01-01', 0.00, '10:33 AM', '', '1970-01-01', '2', 'He is not strong in  basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 10:13:32', 50, '2020-10-22 10:58:33', 0, NULL, 1),
(1425, 'Indumathi', '4', '8610394629', '9943970075', 'indimathi1417@gmail.com', '1996-04-15', 24, '2', '2', 'B.Thangavel', 'Clerk', 15000.00, 3, 0.00, 10000.00, 'Pillaiyar kovil st,Periyakalur,Thiruvannamalai.', 'B.s ladies hostal nungampakkam', '2010220004', '1', '1', 'upload_files/candidate_tracker/46627759965_1603343715838_Document (4)(1)(2).pdf', NULL, NULL, '2020-10-22', 0, '', '5', '13', '1970-01-01', 0.00, '11:16 AM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 10:17:48', 50, '2020-10-22 12:29:53', 0, NULL, 1),
(1426, 'Karthick', '6', '8508119812', '', 'karthicksms16@gmail.com', '1993-02-01', 27, '2', '2', 'Alagar', 'Retired person', 500000.00, 1, 300000.00, 350000.00, '85/11 shanmugaNagar periya palam kulithalai 639146', '1406lig1TNHB colony 10 th Street Velachery', '2010220005', '1', '2', 'upload_files/candidate_tracker/39098086186_karthicknewresume.pdf', NULL, NULL, '2020-10-23', 0, '', '8', '', '1970-01-01', 0.00, '10:32 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 10:25:25', 50, '2020-10-23 06:20:13', 0, NULL, 1),
(1427, 'Geetha J', '4', '6379959543', '8939185379', 'geethanj1994@gmail.com', '1994-11-14', 25, '1', '2', 'Jithu', 'Nil', 17000.00, 0, 17500.00, 20000.00, 'Harur, Dharmapuri', '18/26 namashivaya street, old washermenpet,chennai', '2010220006', '', '2', 'upload_files/candidate_tracker/26502751201_Geetha Resume 1-1.doc', NULL, NULL, '2020-10-22', 30, '5172', '5', '53', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'dnt knw basic excel also', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 10:42:14', 1, '2020-10-22 11:01:18', 0, NULL, 1),
(1428, 'Pradeep Kumar A', '20', '8854388269', '8610422779', 'pradeepronny123@gmail.com', '1997-09-26', 23, '1', '2', 'N ARUMUGAM', 'Supervising', 2.50, 2, 15000.00, 18000.00, 'Padi', 'Padi', '2010220007', '', '2', 'upload_files/candidate_tracker/40774207492_pradeep resume updated.doc', NULL, NULL, '2020-10-22', 2, '5153', '5', '15', NULL, 0.00, '12:00 PM', '0', NULL, '1', '...', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 10:44:11', 1, '2020-10-22 10:53:42', 0, NULL, 1),
(1429, 'M.Elavarasan', '20', '9176041218', '', 'Kingelavarasan409@ Gmail.com', '2000-08-23', 20, '1', '2', 'M.murugesan', 'Coconut', 15000.00, 0, 13000.00, 15000.00, 'K.k.Nagar sivalingapuram Chennai', 'K.k.Nagar sivalingapuram Chennai', '2010220008', '', '2', 'upload_files/candidate_tracker/87714529171_Ela_Resume_Format2.pdf', NULL, NULL, '2020-10-22', 0, '5174', '5', '16', '1970-01-01', 0.00, '11:28 AM', '', '1970-01-01', '2', 'NO COMUNICATION SKILLS,LOW PROFILE', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 10:45:41', 50, '2020-10-22 12:11:24', 0, NULL, 1),
(1430, 'Elayabharathi', '6', '9965789115', '9655648858', '0612bharathi@gmail.com', '1998-06-18', 22, '1', '2', 'Elangovan', 'Agriculture', 20000.00, 1, 0.00, 15000.00, 'Mannargudi', 'Mannargudi', '2010220009', '', '1', 'upload_files/candidate_tracker/12136375796_E.Bharathi resume.PDF', NULL, NULL, '2020-10-22', 0, '5266', '3', '8', '2020-10-29', 168000.00, '10:51 AM', '5', '1970-01-01', '1', '14K for kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 10:46:27', 7, '2020-10-28 05:59:55', 0, NULL, 1),
(1431, '', '0', '9940388936', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010220010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 11:14:41', 0, NULL, 0, NULL, 1),
(1432, 'manikandan m', '13', '8973344338', '', 'mailtovivekmani@gmail.com', '1997-12-15', 22, '2', '2', 'murugesan m', 'agriculture', 18500.00, 1, 18500.00, 30000.00, 'Tiruvarur', 'chennai', '2010220011', '1', '2', 'upload_files/candidate_tracker/25550813553_Manikandan_CV.pdf', NULL, NULL, '2020-10-23', 45, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'He is Not strong in basic Php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 11:15:23', 50, '2020-10-23 10:42:32', 0, NULL, 1),
(1433, 'Varsha', '4', '9840130334', '9003466514', 'varsha14696@gmail.com', '1996-06-14', 24, '2', '1', 'M.parthiban', 'Unemployed', 30000.00, 1, 0.00, 8000.00, 'Chennai', 'Chennai', '2010220012', '1', '1', 'upload_files/candidate_tracker/23803115124_Varsha Cv.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '11:20 AM', '', '1970-01-01', '1', 'married she need work from xxamp data entry ill be ok with it..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 11:19:01', 50, '2020-10-22 11:33:47', 0, NULL, 1),
(1434, 'C Sankar', '4', '9942517245', '6382028183', 'Cpsankar1996@gmail.com', '1996-04-13', 24, '2', '2', 'R chelladurai', 'Vegetable sales', 10000.00, 2, 11000.00, 15000.00, 'Perumbakkam', 'Perumbakkam', '2010220013', '1', '2', 'upload_files/candidate_tracker/94554530513_sankar.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '13', '1970-01-01', 0.00, '12:14 PM', '', '1970-01-01', '1', 'he is intrested only non-voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 11:43:38', 50, '2020-10-22 12:23:57', 0, NULL, 1),
(1435, 'Yamini Devi g', '4', '6383174854', '8682904263', 'myaminidevi333@gmail.com', '2000-08-09', 20, '2', '2', 'Gopinath', 'Fresher', 25000.00, 1, 0.00, 12000.00, 'Thandayarpet', 'Thandayarpet', '2010220014', '1', '1', 'upload_files/candidate_tracker/75627122678_Yamini_Resume.doc', NULL, NULL, '2020-10-23', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'NOT SUITABLE FOR VOICE PROCESS', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 12:37:27', 50, '2020-10-23 10:42:18', 0, NULL, 1),
(1436, 'Soundarya', '4', '9551502850', '', 'Soundaryalaxman@gmail.com', '2000-06-09', 20, '2', '2', 'T. Lakshmanan', 'Autodriver', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010220015', '1', '1', 'upload_files/candidate_tracker/83761528523_my resume for account2 new.docx', NULL, NULL, '2020-10-24', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not int to join', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 12:40:51', 50, '2020-10-24 01:10:24', 0, NULL, 1),
(1437, '', '0', '8682904263', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010220016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 12:44:55', 0, NULL, 0, NULL, 1),
(1438, '', '0', '9962661233', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010220017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 01:01:40', 0, NULL, 0, NULL, 1),
(1439, '', '0', '9384013745', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010220018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 01:15:35', 0, NULL, 0, NULL, 1),
(1440, 'G Rakesh', '20', '9941081827', '6382842608', 'thalarakesh57@gmail.com', '2000-07-10', 20, '1', '2', 'G Hajarathiah', 'Sales man', 15.00, 1, 14.00, 16.00, 'No 15/63 nRS road thiryvattiyur Chennai 1o', 'no 15/63 NRS Road Thiryvattiyur Chennai 1o', '2010220019', '', '2', 'upload_files/candidate_tracker/82353894917_Rakesh 2 _resum.doc', NULL, NULL, '2020-10-22', 0, 'Balaji', '5', '19', '1970-01-01', 0.00, '02:30 PM', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 01:50:38', 50, '2020-10-22 02:32:11', 0, NULL, 1),
(1441, 'saroja', '4', '6380818149', '9841208717', 'sarojamoses898@gmail.com', '1998-10-16', 22, '2', '2', 'muthukrishnan', 'driver', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'chennai', '2010220020', '1', '1', 'upload_files/candidate_tracker/58344956608_SAROJA RESUME.pdf', NULL, NULL, '2020-10-22', 0, '', '8', '21', '1970-01-01', 0.00, '02:45 PM', '', '1970-01-01', '2', 'gone', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 01:58:12', 50, '2020-10-22 02:27:18', 0, NULL, 1),
(1442, 'Deepika s', '4', '9789030829', '8056152027', 'deepikasasikumar37@gmail.com', '1999-09-15', 21, '2', '2', 'Jeeva', 'Food organizer', 6500.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010220021', '1', '1', 'upload_files/candidate_tracker/38531675756_Resume_Deepika_Format5.pdf', NULL, NULL, '2020-10-23', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 03:23:16', 1, '2020-10-22 10:53:47', 0, NULL, 1),
(1443, 'Thabrez Ali Rahamani', '16', '8678965072', '', 'thabrezali.rahamani@gmail.com', '1990-05-17', 30, '2', '1', 'Ayaz khader', 'Retired person from private organization', 300000.00, 1, 700000.00, 20.00, 'Avadi, Chennai', 'Avadi, Chennai', '2010220022', '1', '2', 'upload_files/candidate_tracker/4165276128_0_Resume_Quality.pdf', NULL, NULL, '2020-10-23', 1, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 03:26:15', 50, '2020-10-23 06:20:48', 0, NULL, 1),
(1444, '', '0', '7094572650', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010220023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 03:34:26', 0, NULL, 0, NULL, 1),
(1445, 'Kowsalya', '4', '9080767705', '9710652765', 'kowsi.51539@gmail.com', '1998-11-01', 21, '2', '2', 'Ettiyappan', 'Bus driver', 10000.00, 2, 0.00, 10000.00, 'Chennai', 'Arumbakkam', '2010220024', '1', '1', 'upload_files/candidate_tracker/14114444753_My resume.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '04:30 PM', '', '1970-01-01', '2', 'she is come with her friend only..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 03:36:42', 50, '2020-10-22 04:39:48', 0, NULL, 1),
(1446, 'BALAKUMAR', '16', '9597192737', '9655185016', 'Balakumarg4@gmail.com', '1992-01-04', 28, '2', '1', 'Ganapathy', 'Head cook', 10000.00, 1, 19000.00, 23000.00, 'Thiruporur', 'Thiruporur', '2010220025', '1', '2', 'upload_files/candidate_tracker/35744365495_Balakumar banking operations - Resume.docx', NULL, NULL, '2020-10-23', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 04:05:11', 50, '2020-10-23 06:20:58', 0, NULL, 1),
(1447, 'Vindhiya. P', '4', '9444703830', '9123567117', 'Indirapurushothamen0810@gmail.com', '1999-10-27', 20, '2', '2', 'Purushothamen', 'Eb', 25000.00, 1, 0.00, 10000.00, 'Triplicane', 'Thiruvanmyur', '2010220026', '1', '1', 'upload_files/candidate_tracker/69141214358_52959612320_Resume.docx', NULL, NULL, '2020-10-23', 0, '', '5', '8', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'she is Stumbling to speak and her pronunciation is not clear. will not suite for CRM', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-22 04:24:39', 58, '2020-12-23 04:57:43', 0, NULL, 1),
(1448, 'kowsalya', '4', '8056479122', '9600992868', 'kausi1713@gmail.com', '1998-12-19', 21, '2', '2', 's.muthupandiyan', 'cooli', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'chennai', '2010220027', '1', '1', 'upload_files/candidate_tracker/30178554471_kausalya.pdf', NULL, NULL, '2020-10-23', 0, '', '3', '8', '2020-10-26', 120000.00, '11:00 AM', '6', '2020-12-01', '2', '10K for Muthu team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-22 04:45:31', 58, '2020-12-23 12:58:49', 0, NULL, 1),
(1449, 'j.revathi', '4', '9789952298', '8838328178', 'reyrevathi07@g.mail.com', '1995-09-11', 25, '2', '2', 'father jabaraj.m', 'supervisor', 25000.00, 1, 0.00, 25000.00, 'chennai', 'Chennai', '2010220028', '1', '1', 'upload_files/candidate_tracker/48198152902_REVATHI RESUME MAIN.pdf', NULL, NULL, '2020-10-23', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'for cafs hold for star', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 05:33:47', 7, '2020-10-23 11:39:42', 0, NULL, 1),
(1450, '', '0', '9840302635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010220029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 06:23:01', 0, NULL, 0, NULL, 1),
(1451, 'anithalakshmi', '16', '9884269712', '9688714701', 'vardhini92puppy@gmail.com', '1990-02-25', 30, '2', '1', 'radhakrishnan', 'nill', 250000.00, 2, 24000.00, 30000.00, 'maduravoyal', 'maduravoyal', '2010220030', '1', '2', 'upload_files/candidate_tracker/72554378712_Anitha - Resume.docx', NULL, NULL, '2020-10-23', 8, '', '5', '54', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'task not completed', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 08:57:56', 50, '2020-10-23 10:41:42', 0, NULL, 1),
(1452, 'Kavitha.k', '4', '9710164578', '9941630820', 'kamarajkavitha57@gmail.com', '1999-12-06', 20, '2', '2', 'Kamaraj.g', 'Driver', 12000.00, 1, 0.00, 12000.00, 'Tondairpet', 'Tondairpet', '2010230001', '1', '1', 'upload_files/candidate_tracker/34825631956_kavi resume.docx', NULL, NULL, '2020-10-23', 0, '', '3', '8', '2020-10-26', 120000.00, '11:00 AM', '4', '2021-01-08', '2', '10K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 08:15:18', 7, '2020-10-23 05:39:39', 0, NULL, 1),
(1453, 'Manikandan', '4', '9488934218', '8667468879', 'manikandan21635@gmail.com', '1994-05-10', 26, '2', '2', 'SELVARAJ', 'Farmer', 10000.00, 2, 12000.00, 14000.00, 'Perambalur', 'Guindy', '2010230002', '1', '2', 'upload_files/candidate_tracker/95072756678_1601354119118_MANIKANDAN.pdf', NULL, NULL, '2020-10-23', 0, '', '5', '13', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'not  suitable for tele sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 09:59:41', 8, '2020-10-23 02:30:57', 0, NULL, 1),
(1454, '', '0', '9884411889', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 10:21:03', 0, NULL, 0, NULL, 1),
(1455, 'Gopalakrishnan Saravanan', '4', '8148361771', '7397400984', 'Gopalvicky09@gmail.com', '1999-10-21', 21, '2', '2', 'Saravanan', 'Machine operator', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Pammal', '2010230004', '2', '1', 'upload_files/candidate_tracker/48242468967_9A Gopalakrishnan Resume.pdf', NULL, NULL, '2020-10-23', 0, '', '5', '13', NULL, 0.00, '10:45 AM', '0', NULL, '2', 'not suitable for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 10:33:55', 1, '2020-10-23 10:37:44', 0, NULL, 1),
(1456, '', '0', '9123567117', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 11:10:40', 0, NULL, 0, NULL, 1),
(1457, 'Suderson D R', '16', '8056192390', '', 'suderson45@gmail.com', '1994-07-02', 26, '2', '2', 'D S Ramesh babu', 'Electriction', 20000.00, 1, 20000.00, 35000.00, 'Chennai', 'Chennai', '2010230006', '1', '2', 'upload_files/candidate_tracker/67858577056_Suderson_CV_3+ years experience.pdf', NULL, NULL, '2020-10-24', 30, '', '5', '53', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'exp sal 30k min, last package 20k, due to his personal reason  he need tht  much slary, nd more over he cannot join immediately', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 11:16:08', 52, '2020-10-24 11:34:07', 0, NULL, 1),
(1458, 'Manikandan p', '6', '9025043024', '7094583321', 'mani1006kandam@gmail.com', '1999-06-10', 21, '2', '2', 'Palanisamy', 'Catering', 11000.00, 3, 0.00, 13000.00, 'Coimbatore', 'Chennai', '2010230007', '1', '1', 'upload_files/candidate_tracker/57382121999_manikandan.pdf', NULL, NULL, '2020-10-23', 0, '', '5', '20', '1970-01-01', 0.00, '12:05 PM', '', '1970-01-01', '1', 'absconded after 1st round', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 12:01:06', 50, '2020-10-23 02:50:24', 0, NULL, 1),
(1459, 'Santhosh Kumar.G', '6', '8681887058', '9094218285', 'santhoshkumarg710@gmail.com', '1999-10-07', 21, '1', '2', 'Ganesan.P', 'Painter', 15000.00, 4, 0.00, 15000.00, '17, Myilai Sivan Muthu St., MGR Nagar, Chennai-78', '17, Myilai Sivan Muthu St., MGR Nagar, Chennai-78', '2010230008', '', '1', 'upload_files/candidate_tracker/55362388930_Adobe Scan Oct 23, 2020.pdf', NULL, NULL, '2020-10-23', 0, '5174', '5', '16', '1970-01-01', 0.00, '12:46 PM', '', '1970-01-01', '1', 'no comunication skill local slaung', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 12:15:41', 8, '2020-10-23 02:27:48', 0, NULL, 1),
(1460, 'S.dinesh', '4', '8680829572', '9884225447', 'dinubob46@gmail.com', '1999-11-18', 20, '1', '2', 'Sekar.s', 'Painter', 16000.00, 4, 0.00, 13000.00, '17/A Shekkilar 2nd Street mgr nagar chennai-78', '17/A Shekkilar 2nd Street Mgr Nagar Chennai-78', '2010230009', '', '1', 'upload_files/candidate_tracker/24878925023_Adobe Scan Oct 23, 2020 (1).pdf', NULL, NULL, '2020-10-23', 0, '5174', '5', '13', '1970-01-01', 0.00, '12:32 PM', '', '1970-01-01', '1', 'not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 12:15:43', 7, '2020-10-23 01:18:48', 0, NULL, 1),
(1461, 'Nisha r', '4', '9025249272', '', 'nisharamanathan099@gmail.com', '1999-09-16', 21, '2', '1', 'Ramanadhan', 'Medical rep', 20000.00, 1, 7500.00, 12000.00, 'Chennai', 'Valasaravakkam', '2010230010', '2', '2', 'upload_files/candidate_tracker/51177819241_New Document(1).pdf', NULL, NULL, '2020-10-23', 0, '', '5', '13', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', 'not suitable for pressure  handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 12:56:20', 7, '2020-10-23 02:21:55', 0, NULL, 1),
(1462, 'neviya.d', '4', '9444891350', '9840302635', 'neviya12@gmail.com', '1996-12-09', 23, '2', '2', 'dhayalan.cs', 'tea shop', 15000.00, 2, 13000.00, 13000.00, 'icf chennai', 'icf chennai', '2010230011', '1', '2', 'upload_files/candidate_tracker/99482760284_Neviya.pdf', NULL, NULL, '2020-10-23', 0, '', '5', '13', NULL, 0.00, '01:14 PM', '0', NULL, '1', 'not fit for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 01:05:13', 1, '2020-10-23 01:26:47', 0, NULL, 1),
(1463, '', '0', '9962863594', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 01:06:24', 0, NULL, 0, NULL, 1),
(1464, '', '0', '9789951814', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 01:07:57', 0, NULL, 0, NULL, 1),
(1465, 'Sangeetha Elangovan', '16', '6382286772', '6382296771', 'sangeethaelangovan2703@gmail.com', '1997-03-29', 23, '2', '2', 'Elangovan', 'Nil', 25000.00, 1, 27000.00, 30000.00, 'Madhuravoyal', 'Madhuravoyal', '2010230014', '1', '2', 'upload_files/candidate_tracker/54939235444_Resume_Sangeetha-PMO.docx', NULL, NULL, '2020-10-27', 15, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'she know basics oluy', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 01:31:49', 7, '2020-10-27 11:48:11', 0, NULL, 1),
(1466, 'Sangeetha Elangovan', '16', '6382296771', '9092949541', 'sangeethaelangovan2703@gmail.com', '1997-03-29', 23, '2', '2', 'Elangovan', 'Nil', 25000.00, 1, 27000.00, 30000.00, 'Madhuravoyal', 'Madhuravoyal', '2010230015', '1', '2', 'upload_files/candidate_tracker/54115144748_Resume_Sangeetha-PMO.docx', NULL, NULL, '2020-10-24', 15, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '3', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 01:53:50', 50, '2020-10-24 10:11:43', 7, '2020-10-27 11:48:05', 0),
(1467, 'Vinoth kumar N', '16', '7904301443', '9677995266', 'vvino211@gmail.com', '1993-03-12', 27, '2', '2', 'Nithyanandham', 'Driver', 38000.00, 1, 24500.00, 26000.00, 'Tambaram', 'Tambaram', '2010230016', '1', '2', 'upload_files/candidate_tracker/37770901604_Vinoth Kumar Resume New (1).pdf', NULL, NULL, '2020-10-24', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 03:14:52', 50, '2020-10-24 10:11:53', 0, NULL, 1),
(1468, 'Gopinath M', '13', '8807020392', '6383413930', 'gopinath92cs@gmail.com', '1992-04-06', 28, '2', '2', 'Murugan P', 'Farmer', 10000.00, 1, 3.40, 4.70, 'Theni', 'chennai', '2010230017', '1', '2', 'upload_files/candidate_tracker/81446496510_Gopinath_Murugan (1).pdf', NULL, NULL, '2020-10-27', 1, '', '8', '', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 04:22:04', 7, '2020-10-27 04:34:09', 0, NULL, 1),
(1469, 'suganthi', '13', '8825796209', '9444432838', 'suganthikannan536@gmail.com', '2000-05-31', 20, '2', '2', 'kannan', 'painter', 10000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2010230018', '1', '1', 'upload_files/candidate_tracker/63918983872_Resume(1) (1).pdf', NULL, NULL, '2020-10-24', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 04:23:47', 50, '2020-10-24 01:12:17', 0, NULL, 1),
(1470, 'Dinesh .R', '16', '9840595393', '', 'dineshravi385@gmail.com', '1995-06-14', 25, '2', '2', 'B.Ravi', 'Corpender', 35000.00, 2, 14650.00, 20000.00, 'Kelambakkam', 'Kelambakkam', '2010230019', '1', '2', 'upload_files/candidate_tracker/71669242453_Dinesh Resume.docx', NULL, NULL, '2020-10-24', 10, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'stammering. he wont suit fr  mis', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 04:41:07', 50, '2020-10-24 10:12:02', 0, NULL, 1),
(1471, 'Kalaivani S', '16', '8939032754', '', 'kalailatha6@gmail.com', '1995-06-20', 25, '2', '2', 'Sivasami K', 'working at departmental store', 30000.00, 1, 17000.00, 22000.00, 'Porur - Chennai', 'porur - Chennai', '2010230020', '1', '2', 'upload_files/candidate_tracker/81233612653_Kalai CV.pdf', NULL, NULL, '2020-10-24', 0, '', '8', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not attended', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 05:09:05', 50, '2020-10-24 10:12:11', 0, NULL, 1),
(1472, '', '0', '7358302581', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 05:24:04', 0, NULL, 0, NULL, 1),
(1473, 'M.venugopal', '4', '9962381146', '9092462088', 'vgvenu1146@gmail.com', '1999-07-25', 21, '2', '2', 'P.muthuvel', 'Company labour', 15000.00, 650, 0.00, 16000.00, 'Chennai', 'Chennai', '2010230022', '1', '1', 'upload_files/candidate_tracker/75620852560_RESUME - VENUGOPAL.docx', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-23 05:24:36', 58, '2020-12-23 11:02:05', 0, NULL, 1),
(1474, 'Manikandan R', '6', '7708872357', '', 'Manikandan29th@gmail.com', '1998-09-29', 22, '2', '2', 'Rajendran', 'Driver', 20000.00, 2, 0.00, 10500.00, 'Chennai', 'Chennai', '2010230023', '1', '1', 'upload_files/candidate_tracker/5934140600_CV_2020-08-03-073856.pdf', NULL, NULL, '2020-10-24', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not Worth For any profile. not even explaining his graduation', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 05:26:12', 50, '2020-10-24 11:19:51', 0, NULL, 1),
(1475, 'GOWTHAMKUMAR PR', '4', '9698617286', '9080161058', 'prgowthamkumar0@gmail.com', '1994-06-20', 26, '2', '2', 'RAVI SP', 'NO MORE', 9500.00, 1, 12000.00, 14000.00, 'MADURAI', 'CHENNAI', '2010230024', '1', '2', 'upload_files/candidate_tracker/83459062454_gowthamkumar res.pdf', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'looking for data entry non voice process not suitable for voice process', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-23 05:30:08', 58, '2020-12-23 11:05:33', 0, NULL, 1),
(1476, 'Padmavathy. B', '4', '8637615451', '9789823902', 'padma220899@gmail.com', '1999-08-22', 21, '2', '2', 'Baskar. P', 'Painter', 80.00, 1, 0.00, 10.00, 'Chennai', 'Chennai', '2010230025', '1', '1', 'upload_files/candidate_tracker/79588878557_DOC-20200311-WA0000.pdf', NULL, NULL, '2020-10-24', 0, '', '3', '8', '1970-01-01', 120000.00, '11:00 AM', '2', '1970-01-01', '2', '10K  for Muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 05:30:15', 7, '2020-11-07 05:53:45', 0, NULL, 1),
(1477, '', '0', '7989099391', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 06:52:33', 0, NULL, 0, NULL, 1),
(1478, '', '0', '9080656892', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 06:56:20', 0, NULL, 0, NULL, 1),
(1479, 'Prema G', '13', '9710045206', '9710045207', 'prema07181999@gmail.com', '1999-07-18', 21, '2', '2', 'S Guna sekaran', 'Auto driver', 9000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2010240001', '1', '1', 'upload_files/candidate_tracker/28605683498_0_prema new.docx', NULL, NULL, '2020-10-24', 0, '', '5', '28', '1970-01-01', 0.00, '11:10 AM', '', '1970-01-01', '2', 'He is not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 07:09:55', 50, '2020-10-24 10:12:29', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1480, 'Charles', '6', '9500186697', '8523971565', 'charlesece14@gmail.com', '1994-06-12', 26, '1', '2', 'john', 'sub-inspector', 700000.00, 2, 18000.00, 20000.00, '4/70 mela kovil street ,Annamangalam(p.o),', 'H9O ponnambalam colony k.k .nagar', '2010240002', '', '2', 'upload_files/candidate_tracker/40699593130_CHARLES sales.docx', NULL, NULL, '2020-10-24', 0, '5643', '5', '44', NULL, 0.00, '10:40 AM', '0', NULL, '1', 'He is not fit ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 10:35:28', 1, '2020-10-24 10:52:38', 0, NULL, 1),
(1481, 'Sheerin', '5', '7092622936', '', 'banuafsar111197@gmail.com', '1997-06-11', 24, '2', '2', '.Afsar Basha.N', 'not working', 17000.00, 2, 17000.00, 18000.00, 'chennai', 'Chennai', '2010240003', '1', '2', 'upload_files/candidate_tracker/8077225011_Sheerinresume.pdf2.docx', NULL, '2', '2022-02-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2020-10-24 10:48:14', 1, '2022-02-12 04:28:44', 0, NULL, 1),
(1482, 'B.vani sree', '4', '7397452805', '9840123174', 'vanisreeusha@gmail.com', '1998-06-02', 22, '2', '2', 'K.babu', 'Car driver', 45000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2010240004', '1', '1', 'upload_files/candidate_tracker/43531980945_vanisree resume.docx', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '12:35 PM', '', '1970-01-01', '1', 'looking for non voice process not suitable for telecalling', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-24 10:50:40', 58, '2020-12-23 11:02:25', 0, NULL, 1),
(1483, '', '0', '8124264643', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010240005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 11:02:09', 0, NULL, 0, NULL, 1),
(1484, 'Sharmila mary T', '11', '9524737545', '', 'sharmithomas003@gmail.com', '1998-03-14', 22, '2', '2', 'S.selvi', 'Cooli', 7000.00, 3, 0.00, 18000.00, 'Sellampattidai', 'Sunguvarchathram,molachur', '2010240006', '1', '1', 'upload_files/candidate_tracker/77083314636_Sharmi Resume 1.docx', NULL, NULL, '2020-10-24', 0, '', '5', '53', '1970-01-01', 0.00, '11:10 AM', '', '1970-01-01', '2', 'poor communication,  she is thinking for targets, she s not ok with the targets', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 11:02:52', 50, '2020-10-24 12:37:49', 0, NULL, 1),
(1485, 'Anis Fathima', '4', '8870644118', '9943565381', 'anisrahmaniya@gmail.com', '1998-08-17', 22, '2', '2', 'Abdul rahuman', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2010240007', '1', '1', 'upload_files/candidate_tracker/32755430248_Anis[1].pdf', NULL, NULL, '2020-10-26', 0, '', '5', '14', '1970-01-01', 0.00, '11:13 AM', '', '1970-01-01', '2', 'looking for non voice process not suitable for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 11:08:50', 50, '2020-10-26 04:22:53', 0, NULL, 1),
(1486, 'Premkumar.k', '4', '9159891159', '', 'Rajnipremtheboss1998@gmail.com', '1998-07-09', 22, '2', '2', 'Kumarasan. C', 'Fresher', 12.00, 2, 0.00, 12.00, 'Chennai', 'Chennai', '2010240008', '1', '1', 'upload_files/candidate_tracker/1415945064_K.prem kumar.pdf', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '11:14 AM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 11:09:43', 50, '2020-10-24 12:38:30', 0, NULL, 1),
(1487, 'Krithika', '4', '7092656122', '8681843495', 'Krithikanarayanababu@gmail.com', '2000-03-12', 20, '2', '2', 'Narayanababu', 'Student', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2010240009', '1', '1', 'upload_files/candidate_tracker/27504264706_krithika resume updated.docx', NULL, NULL, '2020-10-24', 0, '', '5', '13', '1970-01-01', 0.00, '11:20 AM', '', '1970-01-01', '2', 'she is intrested only non-voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 11:15:00', 50, '2020-10-24 12:38:07', 0, NULL, 1),
(1488, 'Karthika J', '4', '8428874671', '9840146952', 'jkarthika78@gmail.com', '2000-12-09', 19, '2', '2', 'Jayaseelan', 'Carpenter', 10000.00, 1, 0.00, 12000.00, 'Porur', 'Porur', '2010240010', '1', '1', 'upload_files/candidate_tracker/71317565063_karthika.docx', NULL, NULL, '2020-10-24', 0, '', '3', '8', '1970-01-01', 102000.00, '11:41 AM', '2', '1970-01-01', '2', '10k for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 11:17:41', 7, '2020-10-24 05:25:44', 0, NULL, 1),
(1489, 'K.Divya', '4', '9094436033', '9092324476', 'divyadivi1507@gmail.com', '1997-07-15', 23, '2', '2', 'C.karunanithi', 'Tailor', 10000.00, 1, 14000.00, 15000.00, '97,sivan Kovil street, Kodambakkam,chennai-600024', '97,sivan Kovil street, Kodambakkam,chennai-600024', '2010240011', '1', '2', 'upload_files/candidate_tracker/12462730295_resume.pdf', NULL, NULL, '2020-10-24', 8, '', '5', '14', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '2', 'expecting high salary and sustainability less ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 11:26:41', 50, '2020-10-24 11:57:24', 0, NULL, 1),
(1490, 'M.Priyadarshini', '4', '6379996537', '7338900580', 'priyadharshinim707@gmail.com', '2000-07-07', 20, '2', '2', 'B.v.muthukrishnan', 'Security', 8000.00, 0, 0.00, 10000.00, 'Broadway', 'No.18 .venkatesan street, Broadway, chennai-1.', '2010240012', '1', '1', 'upload_files/candidate_tracker/11511279865_1603512497059_priya resume.docx', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '02:23 PM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 01:09:11', 50, '2020-10-24 02:47:30', 0, NULL, 1),
(1491, 'Pavithra. R', '4', '6383094233', '8925624975', 'Ssripavithra@gmail.com', '2000-04-24', 20, '2', '2', 'L. Radha krishnan', 'Salesman', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Korrukupet', '2010240013', '1', '1', 'upload_files/candidate_tracker/73416774979_Resume.docx', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '02:36 PM', '', '1970-01-01', '2', 'not fit for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 01:21:18', 50, '2020-10-24 02:47:37', 0, NULL, 1),
(1492, 'Poornima. E', '4', '9790771496', '9444043201', 'poorni15052000@gmail.com', '2000-05-15', 20, '2', '2', 'A. Eswaran', 'Driver', 20000.00, 1, 0.00, 10000.00, 'Chennai', '427, mint street, Sowcarpet, chennai-01', '2010240014', '1', '1', 'upload_files/candidate_tracker/35458350464_resume.docx', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '02:21 PM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 02:17:47', 50, '2020-10-24 02:47:43', 0, NULL, 1),
(1493, '', '0', '9384638813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010240015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 03:28:34', 0, NULL, 0, NULL, 1),
(1494, '', '0', '9384638796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010240016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 05:42:43', 0, NULL, 0, NULL, 1),
(1495, '', '0', '9841371737', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010240017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 06:27:05', 0, NULL, 0, NULL, 1),
(1496, '', '0', '9962984987', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010240018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 07:41:35', 0, NULL, 0, NULL, 1),
(1497, 'Joseline Sanchana', '4', '7397286239', '9345155873', 'joselinesanchana@gmail.com', '1998-10-05', 22, '2', '2', 'Raveendran', 'Business', 100000.00, 1, 10000.00, 15000.00, 'Chrompet', 'chennai', '2010240019', '1', '2', 'upload_files/candidate_tracker/89006729050_Joseline update(experience).docx', NULL, NULL, '2020-10-27', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 07:44:03', 7, '2020-10-27 04:34:18', 0, NULL, 1),
(1498, '', '0', '9962635328', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010240020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 08:32:34', 0, NULL, 0, NULL, 1),
(1499, 'jaya bharathi', '4', '9790460219', '', 'jayasri.sri27@gmail.com', '1986-08-10', 34, '2', '1', 'mohan', 'retired', 10000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2010250001', '1', '1', 'upload_files/candidate_tracker/51621530612_Jaya Bharathi.docx', NULL, NULL, '2020-10-26', 0, '', '5', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', 'NOT FIT FOR TELESALES', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-25 10:07:59', 58, '2020-12-23 11:12:29', 0, NULL, 1),
(1500, 'subhashini g', '4', '6369182934', '7397349783', 'subhakaviyashree2024@gmail.com', '1999-10-20', 21, '2', '2', 'ganesan', 'a.h.o', 25000.00, 2, 0.00, 15000.00, 'babustreet teynampet chennai', 'chennai', '2010260001', '1', '1', 'upload_files/candidate_tracker/22523812391_subha .pdf', NULL, NULL, '2020-10-26', 0, '', '5', '13', '1970-01-01', 0.00, '11:05 AM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-26 07:45:05', 58, '2020-12-23 11:22:03', 0, NULL, 1),
(1501, 'priya', '4', '7305869430', '9962467034', 'riyapriyanka81@gmail.com', '1998-09-21', 22, '2', '2', 'selvam', 'coolie', 45000.00, 0, 13000.00, 15000.00, 'choolia', 'choolia', '2010260002', '1', '2', 'upload_files/candidate_tracker/96184115405_priya resume (2).pdf', NULL, NULL, '2020-10-26', 0, '', '5', '8', '1970-01-01', 0.00, '12:24 PM', '', '1970-01-01', '2', 'will not sustain', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-26 07:54:51', 58, '2020-12-23 11:07:30', 0, NULL, 1),
(1502, 'vimal raj j', '6', '7092609947', '7010885336', 'jvimalkamal@gmail.com', '1998-07-14', 22, '2', '2', 'john son j', 'tailor', 9000.00, 1, 0.00, 12000.00, 'pallavaram', 'pallavaram', '2010260003', '1', '1', 'upload_files/candidate_tracker/88672405852_Raj J.pdf', NULL, NULL, '2020-10-26', 0, '', '5', '16', '1970-01-01', 0.00, '11:54 AM', '', '1970-01-01', '1', 'No communication ,sustain doubt', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 09:08:30', 8, '2020-10-26 01:02:33', 0, NULL, 1),
(1503, 'Suwetha.s', '4', '9551405022', '7338896644', 'suwethaswea@gmail.com', '1996-06-17', 24, '2', '2', 'Selvaraj.A', 'Coolie', 65000.00, 0, 0.00, 13000.00, 'Pulianthope', 'Pursawalkam', '2010260004', '1', '1', 'upload_files/candidate_tracker/52518349497_suwetha.s resume.pdf', NULL, NULL, '2020-10-26', 0, '', '5', '14', '1970-01-01', 0.00, '11:10 AM', '', '1970-01-01', '2', 'looking for data entry not fit for voice', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 09:31:19', 50, '2020-10-26 02:38:16', 0, NULL, 1),
(1504, 'G vinothini', '4', '9003127642', '8428390928', 'Vinopop1911@gmail.com', '1997-11-20', 22, '2', '2', 'Gajendran', 'Tele caller', 13000.00, 2, 13.50, 15000.00, 'Old Perungalathur', 'Old Perungalathur', '2010260005', '1', '2', 'upload_files/candidate_tracker/6620400042_vinothini 20.docx', NULL, NULL, '2020-10-27', 0, '', '6', '0', NULL, 0.00, '11:35 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 11:01:59', 1, '2020-10-27 11:12:36', 0, NULL, 1),
(1505, 'Mohammedgoushbasha', '16', '7299670174', '8825983852', 'maddybasha46@gmail.com', '1992-06-18', 28, '2', '2', 'Ashwaka', 'Late', 18000.00, 2, 19000.00, 24000.00, 'Chennai', 'Chennai', '2010260006', '1', '2', 'upload_files/candidate_tracker/99947559116_Mohammed goush basha (Resume).docx', NULL, NULL, '2020-10-26', 0, '', '3', '8', '2020-11-02', 258000.00, '02:30 PM', '4', '2021-02-15', '1', '21292 as take home for MIS', '3', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 11:09:38', 7, '2020-10-28 06:00:44', 0, NULL, 1),
(1506, 'vignesh', '4', '8072923397', '', 'pvvigneshraj16@gmail.com', '1993-06-16', 27, '2', '2', 'vinaya babu', 'rest at home', 14000.00, 1, 24355.00, 27800.00, 'chennai', 'chennai', '2010260007', '1', '2', 'upload_files/candidate_tracker/69243486906_Vignesh CV.docx', NULL, NULL, '2020-10-26', 0, '', '3', '8', '2020-11-02', 300000.00, '01:30 PM', '2', '1970-01-01', '1', '25K for Lokesh team', '1', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-26 11:20:29', 58, '2020-12-23 12:11:19', 0, NULL, 1),
(1507, 'muruga pandi k', '13', '8825849165', '7708203445', 'murugapandi6832@gmail.com', '1998-10-13', 22, '2', '2', 'krishna samy.k', 'cooking', 20000.00, 2, 0.00, 12000.00, 'thoothukudi', 'tambaram chennai', '2010260008', '1', '1', 'upload_files/candidate_tracker/65488783156_murugan .pdf', NULL, NULL, '2020-10-26', 0, '', '3', '8', '2020-10-26', 101052.00, '12:28 PM', '', '1970-01-01', '2', '8K take home', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 12:24:52', 50, '2020-10-26 04:23:13', 0, NULL, 1),
(1508, 'sathish kumar.d', '4', '8778396954', '9789919069', 'sathiskumarecmaile98@gmail.com', '1999-07-06', 21, '2', '2', 'n.dhanraj', 'security', 10000.00, 2, 0.00, 15000.00, 'kelambakkam', 'kelambakkam', '2010260009', '1', '1', 'upload_files/candidate_tracker/77954196868_Sathish.doc', NULL, NULL, '2020-10-26', 0, '', '5', '14', '1970-01-01', 0.00, '12:55 PM', '', '1970-01-01', '1', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 12:24:58', 50, '2020-10-26 01:36:15', 0, NULL, 1),
(1509, 'imran khan', '13', '9486819549', '9486782150', 'imrankhanik11111@gmail.com', '1999-02-22', 21, '2', '2', 'syed abuthahir', 'worker', 20000.00, 2, 0.00, 12000.00, 'ammapattinam', 'chennai', '2010260010', '1', '1', 'upload_files/candidate_tracker/10759675544_imranresume.pdf', NULL, NULL, '2020-10-26', 0, '', '3', '8', '2020-10-26', 101052.00, '11:30 AM', '', '1970-01-01', '2', '8K take home', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 12:25:16', 50, '2020-10-26 04:23:21', 0, NULL, 1),
(1510, 'Rajesh das. C', '6', '9003279796', '', 'rajeshdasd3@gmail.com', '2000-05-24', 20, '2', '2', 'Chandu das', 'Gold Smith', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010260011', '1', '1', 'upload_files/candidate_tracker/32753248481_Rajesh Das Resume - 01.10.2020 (1).pdf', NULL, NULL, '2020-10-27', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'he got better offer will not join', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 12:51:37', 7, '2020-10-27 11:27:39', 0, NULL, 1),
(1511, 'A. JAIKARTHICK', '6', '7358345127', '', 'legendjai021@gamil.com', '2000-04-26', 20, '2', '2', 'G. Ashokkumar', 'Tailor', 10000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2010260012', '1', '1', 'upload_files/candidate_tracker/75616958679_JAI KARTHICK - Copy - Copy-converted.pdf', NULL, NULL, '2020-10-27', 0, '', '5', '19', '1970-01-01', 0.00, '11:07 AM', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 01:05:54', 50, '2020-10-27 05:42:43', 0, NULL, 1),
(1512, 'Vishal', '4', '8838461523', '9043565529', 'vishal.m.2016.ece@rajalakshmi.edu.in', '1999-06-02', 21, '2', '2', 'Murali', 'Goldsmith', 15000.00, 0, 0.00, 15000.00, 'Kanchipuram', 'Chennai', '2010260013', '4', '1', 'upload_files/candidate_tracker/53630749207_VISHAL,-converted.pdf', NULL, NULL, '2020-10-26', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 01:19:08', 50, '2020-10-26 05:40:33', 7, '2020-10-27 12:28:08', 0),
(1513, 'Thilagavathi', '4', '9789966208', '9786602569', 'Thilaxraj1108@gmail', '1998-08-11', 22, '2', '2', 'Kesavakumar', 'Working in seimen', 15000.00, 2, 0.00, 15000.00, 'Virudhunagar', 'Chennai', '2010260014', '1', '1', 'upload_files/candidate_tracker/52873268033_thilax.pdf', NULL, NULL, '2020-10-26', 0, '', '5', '14', '1970-01-01', 0.00, '01:37 PM', '', '1970-01-01', '2', 'looking for data entry not suitable for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 01:29:02', 50, '2020-10-26 02:10:54', 0, NULL, 1),
(1514, 'M.Gopal', '6', '7639131709', '9629149533', 'gopal4053639@gmail.com', '1999-01-21', 21, '2', '2', 'S.Muruganandham', 'Weaver', 76000.00, 1, 0.00, 14000.00, 'Kanchipuram', 'Kanchipuram', '2010260015', '4', '1', 'upload_files/candidate_tracker/88053763456_Gopal Resume.pdf', NULL, NULL, '2020-10-27', 0, '', '5', '20', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'not suitable for any voice process.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 01:34:48', 7, '2020-10-27 10:55:09', 0, NULL, 1),
(1515, '', '0', '8667642553', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 01:43:38', 0, NULL, 0, NULL, 1),
(1516, 'Sathish kumar m', '6', '9790727147', '9790731662', 'sathishpja18@gmail.com', '1996-09-25', 24, '2', '2', 'Mohan s', 'Carpenter', 20.00, 1, 12000.00, 20000.00, 'Purasaiwalkkam', 'Purasaiwalkkam', '2010260017', '1', '2', 'upload_files/candidate_tracker/66617775564_sha exp resume.pdf', NULL, NULL, '2020-10-27', 30, '', '5', '57', '1970-01-01', 0.00, '11:37 AM', '', '1970-01-01', '1', 'he is not ok for sales and voice process', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 02:04:10', 50, '2020-10-27 05:42:35', 0, NULL, 1),
(1517, 'Ruben Christy', '6', '8667622962', '9344929926', 'rc7760280@gmail.com', '1999-07-18', 21, '2', '2', 'Martin m', 'Labour', 30000.00, 1, 0.00, 18000.00, 'Gingee', 'Padappai', '2010260018', '1', '1', 'upload_files/candidate_tracker/19138983100_Ruben RESUME.docx', NULL, NULL, '2020-10-28', 0, '', '5', '24', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'no  bike and also long distance so not suitable for CRM and RE', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 03:19:15', 7, '2020-10-28 12:57:23', 0, NULL, 1),
(1518, 'Prakash c', '6', '8754714575', '8778277217', 'prakashcse95@gmail.com', '1995-05-03', 25, '2', '2', 'Chakkaravarthi j', 'Senior citizens', 10000.00, 0, 14000.00, 16000.00, '165,Raganvendhra nagar, Cuddalore dist,vadalur', '87,14th street mahalakshimi nagar, guduvancheery', '2010260019', '4', '2', 'upload_files/candidate_tracker/21323662683_Prakash Resume.pdf', NULL, NULL, '2020-10-27', 0, '', '5', '19', '1970-01-01', 0.00, '04:30 PM', '', '1970-01-01', '1', 'no longer sustain', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 03:26:23', 7, '2020-10-27 10:06:03', 0, NULL, 1),
(1519, '', '0', '7397052054', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 04:13:52', 0, NULL, 0, NULL, 1),
(1520, 'V Jayaraj', '4', '8072111522', '9840141982', 'Jayaraj3993@gmail.com', '1993-03-09', 27, '2', '2', 'S VASUDEVAN', 'Tailor', 15000.00, 2, 0.00, 16000.00, 'kolathur, chennai', 'Chennai', '2010260021', '1', '1', 'upload_files/candidate_tracker/24897188758_jayaraj05 01 2020.docx', NULL, NULL, '2020-10-28', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'he is interested  international voice ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 04:23:54', 1, '2020-10-28 01:18:55', 0, NULL, 1),
(1521, 'T.Devi', '4', '6381968109', '8610394629', 'bthangavel071964@gmail.com', '1997-05-15', 23, '2', '2', 'B.Thangavel', 'Clerk', 15000.00, 3, 0.00, 10000.00, 'Pillaiyar kovil st,Periyakalur,Thiruvannamalai.', 'Nungampakkam', '2010260022', '1', '1', 'upload_files/candidate_tracker/52816289149_New doc Oct 23, 2020 11.41 AM.pdf', NULL, NULL, '2020-10-27', 0, '', '3', '8', '2020-11-02', 120000.00, '11:00 AM', '3', '2020-11-30', '2', '10K for Dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 04:33:51', 7, '2020-10-29 03:02:03', 0, NULL, 1),
(1522, '', '0', '8610557655', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 04:51:29', 0, NULL, 0, NULL, 1),
(1523, 'Gokilan.r', '6', '8248325934', '', 'Gokilan.r007x@Gmail. Com', '1996-07-10', 24, '2', '2', 'Rajendran', 'Driver', 15000.00, 2, 0.00, 16000.00, 'Chennai', 'Kolathur', '2010260024', '1', '1', 'upload_files/candidate_tracker/25280670957_gokilan.r resume-2.docx', NULL, NULL, '2020-10-28', 0, '', '5', '57', '1970-01-01', 0.00, '11:50 AM', '', '1970-01-01', '1', 'communication and sustainability level worst ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 05:01:01', 7, '2020-10-28 12:46:42', 0, NULL, 1),
(1524, '', '0', '7904493386', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 05:11:32', 0, NULL, 0, NULL, 1),
(1525, 'J manikandan', '5', '7010880742', '9092627002', 'manikandanj2222@gmail.com', '1996-12-01', 23, '2', '1', 'Jayakumar', 'Wages', 20000.00, 1, 3.00, 21000.00, 'Chennai', 'Chennai', '2010260026', '3', '2', 'upload_files/candidate_tracker/60663815258_MANI RESUME JAN 2020.pdf', NULL, NULL, '2020-10-28', 30, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 05:21:04', 1, '2020-10-26 05:28:14', 0, NULL, 1),
(1526, '', '0', '8056120496', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 07:01:33', 0, NULL, 0, NULL, 1),
(1527, 'M. Jayashree', '20', '6383419611', '', 'shreej2697@gmail.com', '1997-06-02', 23, '2', '2', 'M. Murugan', 'Provisional store', 15000.00, 2, 0.00, 15000.00, 'Vandalur near by kolapakkam', 'Vandalur near by kolapakkam', '2010260028', '1', '1', 'upload_files/candidate_tracker/67298749591_JAYASHREE M resume.pdf', NULL, NULL, '2020-10-27', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 07:34:53', 1, '2020-10-26 07:47:23', 0, NULL, 1),
(1528, '', '0', '8754419249', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 08:08:14', 0, NULL, 0, NULL, 1),
(1529, '', '0', '8608410178', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 08:22:41', 0, NULL, 0, NULL, 1),
(1530, 'Dinesh R N', '6', '9715919913', '', '', '1990-12-06', 29, '2', '2', 'P Nanda kumaran Nair', 'Ex military', 20000.00, 1, 20000.00, 20000.00, 'Kanyakumari', 'Otteri', '2010260031', '1', '2', 'upload_files/candidate_tracker/85257725840_Resume-2.doc', NULL, NULL, '2020-10-27', 0, '', '6', '0', NULL, 0.00, '12:45 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 08:36:28', 1, '2020-10-26 08:47:32', 0, NULL, 1),
(1531, '', '0', '9600057008', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 11:14:56', 0, NULL, 0, NULL, 1),
(1532, '', '0', '9789824089', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010270001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 09:19:34', 0, NULL, 0, NULL, 1),
(1533, 'V.latha', '4', '7550253271', '7550243005', 'lathavsneha@gmail.com', '1999-08-04', 21, '1', '2', 'T.vijayakumar', 'Car driver', 20000.00, 1, 0.00, 13000.00, 'No.138 7th Cross street t.p.chathiram chennai-10', 'No.138 7th Cross Street T.P.Chathiram Chennai-10', '2010270002', '', '1', 'upload_files/candidate_tracker/41716394264_Latha.pdf', NULL, NULL, '2020-10-27', 0, '5382', '5', '21', '1970-01-01', 0.00, '10:17 AM', '', '1970-01-01', '1', 'She Ill Come With Her Friend Only', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 10:05:35', 7, '2020-10-27 10:33:14', 0, NULL, 1),
(1534, 'Akshaya.R', '4', '8754459187', '7550128313', 'Akshayaravi7500@gmail.com', '2000-02-01', 20, '1', '2', 'Ravi', 'Business', 60000.00, 1, 0.00, 13000.00, 'No.5A,bharathi colony,nesapkkam,chennai', 'No.42/1,rangappa street.ayanavaram.chennai-23', '2010270003', '', '1', 'upload_files/candidate_tracker/38586579334_Akshaya.docx', NULL, NULL, '2020-10-27', 0, '5382', '5', '21', NULL, 0.00, '10:13 AM', '0', NULL, '2', 'Not Sustain Bcz She Need Non Voice  Job..xxamp also come with her friend only', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 10:06:58', 1, '2020-10-27 10:21:04', 0, NULL, 1),
(1535, 'Mohamed ashwaq', '20', '9962725793', '', 'mohamedashwaq5@gmail.com', '1999-06-27', 21, '2', '2', 'Sadiq ahamed', 'Not working', 25000.00, 2, 0.00, 13000.00, 'Cmrl staff Quarters Residency Chennai 600107', 'Cmrl Staff Quarters Residency Chennai 600107', '2010270004', '1', '1', 'upload_files/candidate_tracker/11626822414_mohamed ashwaq resume.docx', NULL, NULL, '2020-10-28', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 10:39:38', 7, '2020-10-28 05:53:21', 0, NULL, 1),
(1536, 'Sabeha Tasleem . S', '11', '9940854511', '7708604511', 'sabehathasleem@gmail.com', '1997-09-18', 23, '2', '2', 'Shajahan', 'Business', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010270005', '1', '1', 'upload_files/candidate_tracker/29340200342_sabeha resume-converted.pdf', NULL, NULL, '2020-10-27', 0, '', '3', '8', '2020-11-09', 151800.00, '10:43 AM', '5', '1970-01-01', '1', '12K  for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 10:41:31', 7, '2020-11-09 12:15:44', 0, NULL, 1),
(1537, 'Sharan Kumar P C', '4', '9900834572', '9108474164', 'sharanpc@hotmail.com', '1979-02-10', 41, '2', '1', 'NA', 'B. com', 22000.00, 2, 0.00, 20000.00, 'JP Nagar 7th phase', 'Indiranagar', '2010270006', '1', '1', 'upload_files/candidate_tracker/5441992686_SHARAN KUMAR - PC (1).docx', NULL, NULL, '2020-10-27', 0, '', '5', '38', '1970-01-01', 0.00, '01:06 PM', '', '1970-01-01', '2', 'he wil not suit for CRM profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 10:58:20', 50, '2020-10-27 02:24:07', 0, NULL, 1),
(1538, 'Ajith Kumar .M', '6', '8754507500', '9445608246', 'ajithkana007@gmail.com', '2000-05-07', 20, '2', '2', 'Ananda kumar .p.v.', 'B.com', 20000.00, 0, 0.00, 15000.00, 'Kodungaiyur', 'Kodungaiyur', '2010270007', '1', '1', 'upload_files/candidate_tracker/65755204706_AJITHCCV2 -converted.pdf', NULL, NULL, '2020-10-27', 0, '', '3', '8', '1970-01-01', 168000.00, '11:04 AM', '2', '1970-01-01', '1', '14K for Kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 11:00:00', 7, '2020-10-28 05:56:09', 0, NULL, 1),
(1539, 'Yogesh. V', '6', '9003214673', '9710468124', 'aswindon15@gmail.com', '2000-06-16', 20, '2', '2', 'T. Venkatesh', 'Photo grapher. Lab technician', 35000.00, 1, 0.00, 15000.00, 'No.84/1 km nagar', 'No. 84 /1 km nagar', '2010270008', '1', '1', 'upload_files/candidate_tracker/24516781351_V. Yogesh 27oct.pdf', NULL, NULL, '2020-10-27', 0, '', '5', '57', '1970-01-01', 0.00, '11:07 AM', '', '1970-01-01', '1', 'sustainability and sales ... not good', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 11:01:18', 50, '2020-10-27 05:42:53', 0, NULL, 1),
(1540, 'Bhuvaneshwari', '4', '9445332415', '9566060630', 'bhuvanaramalingam31299@gmail.com', '1999-12-03', 20, '2', '2', 'K. Ramalingam', 'Carpenter', 12000.00, 1, 0.00, 10000.00, 'Kundrathur', 'Kundrathur', '2010270009', '1', '1', 'upload_files/candidate_tracker/91709326953_My Resume.pdf', NULL, NULL, '2020-10-27', 0, '', '5', '21', '1970-01-01', 0.00, '11:14 AM', '', '1970-01-01', '2', 'long distance ,she is from kundrathur,already worked accountent 3 months ...', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-27 11:09:14', 58, '2020-12-29 09:47:42', 0, NULL, 1),
(1541, 'Deva s', '6', '8682854172', '7401210953', 'deva442000@gmail.com', '2000-04-04', 20, '1', '2', 'K.subramani', 'Corpanter', 25000.00, 1, 0.00, 15000.00, 'Tambram', 'Camp road rajakilpakam', '2010270010', '', '1', 'upload_files/candidate_tracker/84717871975_Deva S Resume-converted.pdf', NULL, NULL, '2020-10-27', 0, '66673', '5', '19', NULL, 0.00, '11:17 AM', '0', NULL, '1', 'ot fit for sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 11:09:22', 1, '2020-10-27 11:20:03', 0, NULL, 1),
(1542, 'Jayachandran', '6', '9840706312', '9500006016', 'kaaaaar007@gmail.com', '1998-10-01', 22, '2', '2', 'T.ramesh', 'Southern railway', 25000.00, 1, 0.00, 13000.00, '18/44,rajeswari street ,metha Nagar, Chennai-29', 'Aminjikarai , Chennai 29', '2010270011', '6', '1', 'upload_files/candidate_tracker/4031580602_resume Jayachandran.pdf', NULL, NULL, '2020-10-27', 0, '', '3', '8', '2020-10-30', 156000.00, '11:27 AM', '2', '1970-01-01', '1', '13K for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 11:24:04', 7, '2020-10-28 05:56:26', 0, NULL, 1),
(1543, 'subash chandira bose', '13', '9944601686', '', 'subashdevaraji87@gmail.com', '1987-05-22', 33, '2', '1', 'priya', 'private job', 30000.00, 0, 30000.00, 40000.00, 'Chennai', 'Chennai', '2010270012', '1', '2', 'upload_files/candidate_tracker/554653073_Subash.doc', NULL, NULL, '2020-10-27', 15, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 11:30:22', 1, '2020-10-27 12:00:36', 0, NULL, 1),
(1544, 'Vishal', '6', '9043565529', '8838461523', 'vishal.m.2016.ece@rajalakshmi.edu.in', '1999-06-02', 21, '2', '2', 'Murali', 'Goldsmith', 15000.00, 0, 0.00, 15000.00, 'Kanchipuram', 'Chennai', '2010270013', '4', '1', 'upload_files/candidate_tracker/14922266786_VISHAL,-converted.pdf', NULL, NULL, '2020-10-27', 0, '', '5', '19', '1970-01-01', 0.00, '11:55 AM', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 11:53:22', 7, '2020-10-27 12:27:32', 0, NULL, 1),
(1545, 'M. Ganesh', '6', '9361635210', '7401177331', 'Ganeshbob2000@gmail.com', '2000-03-26', 20, '1', '2', 'N. Murthy', 'Coolie', 15000.00, 1, 0.00, 12000.00, 'Perungalathur', 'Perungalathur', '2010270014', '', '1', 'upload_files/candidate_tracker/16852974661_gr.pdf', NULL, NULL, '2020-10-28', 0, '66673', '5', '24', '1970-01-01', 0.00, '12:28 PM', '', '1970-01-01', '1', 'Not Fit For Sales Field ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 12:21:28', 7, '2020-10-28 12:54:47', 0, NULL, 1),
(1546, 'K gopinath', '6', '9444857965', '9600942878', 'Kgnipog@gmail', '1987-05-31', 33, '2', '2', 'V krishnan', 'Retd AL', 18000.00, 1, 150000.00, 18000.00, 'No 21 5th cross street Ennore chennai', 'Ennore chennai', '2010270015', '3', '2', 'upload_files/candidate_tracker/29000383168_gopinath Resume.docx', NULL, NULL, '2020-10-27', 0, '', '5', '22', '1970-01-01', 0.00, '12:47 PM', '', '1970-01-01', '1', 'voice bad', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 12:37:27', 8, '2020-11-07 04:31:31', 0, NULL, 1),
(1547, 'Manikandan', '4', '9551645670', '9884952560', 'mani 3330mm@gmail.com', '1993-03-11', 27, '2', '2', 'Munusamy', 'Cooli', 8000.00, 0, 15000.00, 18000.00, 'Madhavaram', 'Madhavaram', '2010270016', '3', '2', 'upload_files/candidate_tracker/98157871764_CamScanner 10-19-2020 13.55.14_1.pdf', NULL, NULL, '2020-10-27', 0, '', '8', '21', NULL, 0.00, '01:20 PM', '0', NULL, '1', 'canditate gone', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 12:38:04', 1, '2020-10-27 02:41:32', 0, NULL, 1),
(1548, 'Boominathan.s', '6', '7358096562', '9840059363', 'boomiremo4647@gmail.com', '1997-04-19', 23, '2', '2', 'Suburamani', 'Leather industry', 15000.00, 5, 0.00, 12000.00, 'Chennai', 'Chrompet', '2010270017', '1', '1', 'upload_files/candidate_tracker/45662795748_1601376548938Resume_Boominathan.pdf', NULL, NULL, '2020-10-28', 0, '', '5', '19', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 01:11:04', 7, '2020-10-28 12:42:13', 0, NULL, 1),
(1549, '', '0', '9790817562', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010270018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 02:35:22', 0, NULL, 0, NULL, 1),
(1550, 'akash kumar r', '11', '9791101848', '', 'akashkumarr@outlook.in', '1998-01-15', 22, '2', '2', 's ravikumar', 'sub - inspector of police tamil nadu', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'chennai', '2010270019', '1', '1', 'upload_files/candidate_tracker/31666778114_Akash Resume.pdf', NULL, NULL, '2020-10-28', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'no response', '6', '2', '', '', '', '', '2', '1970-01-01', '2', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-27 03:20:53', 58, '2020-12-29 10:00:30', 0, NULL, 1),
(1551, 'V. Surya', '11', '6380117708', '', '', '1997-08-22', 23, '2', '2', 'S. Velayutham', 'Mission', 30000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2010270020', '1', '1', 'upload_files/candidate_tracker/94630520696_Surya resume.docx', NULL, NULL, '2020-10-27', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 03:22:45', 1, '2020-10-27 03:43:54', 0, NULL, 1),
(1552, '', '0', '7299751668', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010270021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 03:23:42', 0, NULL, 0, NULL, 1),
(1553, 'Merlin Benjamin', '11', '8754438815', '', '', '1991-09-15', 29, '2', '2', 'Benjamin PK', 'Passed away', 1000000.00, 4, 240000.00, 300000.00, 'Medavakkam', 'Medavakkam', '2010270022', '1', '2', 'upload_files/candidate_tracker/41981088601_Merlin Resume.docx', NULL, NULL, '2020-10-28', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 03:28:47', 1, '2020-10-27 03:32:25', 0, NULL, 1),
(1554, 'sujitha', '11', '6374143383', '', 'sujipuni1512@gmail.com', '1999-12-15', 20, '2', '2', 'ramesh', 'job seeker', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2010270023', '1', '1', 'upload_files/candidate_tracker/2601187778_Sujitha Resume.pdf', NULL, NULL, '2020-10-28', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'fresher bt exp high sal', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 04:04:58', 7, '2020-10-28 12:59:26', 0, NULL, 1),
(1555, 'GOKULAKRISHNAN S', '11', '7358531230', '', 'gokulkrish1711@gmail.com', '1999-11-17', 20, '2', '2', 'SELVAKUMAR R', 'Junior assistant', 21000.00, 1, 0.00, 17999.00, 'Chennai', 'Chennai', '2010270024', '1', '1', 'upload_files/candidate_tracker/90338145875_GOKULAKRISHNAN', NULL, NULL, '2020-10-29', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 04:34:02', 7, '2020-10-29 04:18:53', 0, NULL, 1),
(1556, 'Kalaiselvan M', '11', '9094971689', '9941388657', 'kalaiselvanm890@gmail.com', '1998-03-10', 22, '2', '2', 'Murugaiyan', 'Guest lecturer', 25000.00, 1, 0.00, 20000.00, 'Porur', 'Chennai', '2010270025', '1', '1', 'upload_files/candidate_tracker/26286200888_Kalaiselvan RESUME 2020.pdf', NULL, NULL, '2020-10-28', 0, '', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'nt suit fr hr', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 04:43:15', 1, '2020-10-27 04:55:58', 0, NULL, 1),
(1557, '', '0', '7395953193', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010270026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 04:49:08', 0, NULL, 0, NULL, 1),
(1558, 'santhosh.k', '4', '8682929109', '9884100656', 'santhoshkay1999@gmail.com', '1999-07-05', 21, '2', '2', 'kumar.m.g', '-', 200000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2010270027', '1', '1', 'upload_files/candidate_tracker/14968570698_santhosh.k resume.pdf', NULL, NULL, '2020-10-28', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not interested in field , ok for crm but he is expecting 18 k ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 04:58:42', 7, '2020-10-28 11:39:46', 0, NULL, 1),
(1559, 'Ragesh Bhagavath', '4', '9176662358', '', 'ragesh.bhagavath@gmail.com', '1997-05-16', 23, '2', '2', 'Lakshmanan', 'General Manager', 60000.00, 1, 15000.00, 17000.00, 'South Chennai', 'South Chennai', '2010270028', '1', '2', 'upload_files/candidate_tracker/1687487741_RB Resume.doc', NULL, NULL, '2020-10-28', 2, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'he is interested in customer support process. not for sales ..', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-27 06:01:14', 58, '2020-12-23 12:45:48', 0, NULL, 1),
(1560, 'Vignesh R', '4', '7401246261', '9941460008', 'saranyavignesh82@gmail.com', '1997-06-25', 23, '1', '2', 'Ramesh G', 'Painter', 27000.00, 0, 9500.00, 13500.00, 'No 11587 Kannaginagar thuraipakkam chennai 97', 'No 11587 Kannaginagar thuraipakkam chennai 97', '2010270029', '', '2', 'upload_files/candidate_tracker/49215353327_resume vignesh.docx', NULL, NULL, '2020-10-29', 0, 'Jenifer', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 06:38:09', 7, '2020-10-29 04:18:42', 0, NULL, 1),
(1561, '', '0', '9629777497', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010270030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 06:42:46', 0, NULL, 0, NULL, 1),
(1562, '', '0', '9080320258', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010270031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 06:56:03', 0, NULL, 0, NULL, 1),
(1563, 'Abhishek', '4', '9514403954', '9514403954', 'sabhishek12101@gmail.com', '1999-10-28', 20, '2', '1', 'N.Shanmugam', 'fitter', 9000.00, 1, 0.00, 13000.00, '7/107 ,5th mutumariyman Kovil Street, Perumbakkam', '7/107 ,5th mutumariyaman Kovil street, perumbakkam', '2010270032', '1', '1', 'upload_files/candidate_tracker/87219907168_abhishek.docx', NULL, NULL, '2020-10-28', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 07:15:09', 7, '2020-10-28 05:53:07', 0, NULL, 1),
(1564, 'Rathinavel', '5', '9551430214', '', 'rathinavel.pandian24@gmail.com', '1996-11-24', 23, '2', '2', 'S Ramakrishnan', 'Business', 50000.00, 2, 31000.00, 21000.00, 'Chennai', 'Chennai', '2010270033', '1', '2', 'upload_files/candidate_tracker/18758603463_New Doc 2019-11-24 13.17.23.pdf', NULL, NULL, '2020-10-28', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 08:18:10', 7, '2020-10-28 05:52:56', 0, NULL, 1),
(1565, 'Pugazhendhi', '16', '9344326157', '8754551829', 'thalapathypugalthalapathy@gmail.com', '2000-03-21', 20, '1', '2', 'Srinivasan', 'Van driver', 25000.00, 2, 0.00, 15000.00, 'No.1,3rd Street potroom madhavaram milk colony', 'Potroom madhavaram milk colony', '2010270034', '', '1', 'upload_files/candidate_tracker/67098510711_Resume_Pugazhendhi_Format1.pdf', NULL, NULL, '2020-10-28', 0, '2010270034', '8', '', '1970-01-01', 0.00, '02:18 PM', '', '1970-01-01', '1', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 09:26:08', 7, '2020-10-28 05:52:45', 0, NULL, 1),
(1566, 'sai gayathri m b', '11', '9884571755', '9043871424', 'saigayathri1112@gmail.com', '1998-05-12', 22, '2', '2', 'balaji m v', 'railways', 75000.00, 1, 0.00, 240000.00, 'Chennai', 'chennai', '2010270035', '1', '1', 'upload_files/candidate_tracker/97138392041_SAIGAYATHRI_RESUME.pdf', NULL, NULL, '2020-10-28', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'No response', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 10:44:04', 7, '2020-10-28 11:23:45', 0, NULL, 1),
(1567, '', '0', '8939247391', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 09:42:55', 0, NULL, 0, NULL, 1),
(1568, 'Madhuvanthi B', '4', '7358207635', '6380419545', 'bmadhuvanthi1217@Gmail.com', '1999-08-12', 21, '1', '2', 'GOPALA Krishna Reddy.B', 'Driver', 10000.00, 1, 0.00, 10000.00, 'J4,J5,Shanthi colony,Ring Road,Madhavaram, Ch-60.', 'J4,J5,Shanthi Colony,Ring Road,Madhavaram, Ch-60.', '2010280002', '', '1', 'upload_files/candidate_tracker/53566519267_Copy of Madhuvanthi.docx', NULL, NULL, '2020-10-28', 0, '55600', '5', '21', NULL, 0.00, '11:20 AM', '0', NULL, '1', 'not bold low confidence, no flow in words', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:20:21', 1, '2020-10-28 11:34:40', 0, NULL, 1),
(1569, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:49:47', 0, NULL, 0, NULL, 1),
(1570, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:52:13', 0, NULL, 0, NULL, 1),
(1571, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:54:43', 0, NULL, 0, NULL, 1),
(1572, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:55:46', 0, NULL, 0, NULL, 1),
(1573, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:56:13', 0, NULL, 0, NULL, 1),
(1574, 'J.raghuram', '4', '9445077267', '', 'raghujagan8@gmail.com', '1999-10-10', 21, '1', '2', 'k.jaganathan', 'Transport', 25000.00, 1, 0.00, 12000.00, 'Kilpauk garden', 'Kilpauk garden', '2010280008', '', '1', 'upload_files/candidate_tracker/1018700096_Resume-converted.docx', NULL, NULL, '2020-10-28', 0, '5620', '5', '21', NULL, 0.00, '11:33 AM', '0', NULL, '1', 'he is interested in data entry ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:56:26', 1, '2020-10-28 11:43:54', 0, NULL, 1),
(1575, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:58:24', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1576, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 11:00:18', 0, NULL, 0, NULL, 1),
(1577, 'Jeevitha. R', '4', '9176617482', '9094354921', 'Jeevirajendran1997@gmail.com', '1997-01-09', 23, '1', '2', 'Bhueshwari', 'House keeping', 8000.00, 1, 16000.00, 18000.00, 'Tondiarpet', 'Chennai', '2010280011', '', '2', 'upload_files/candidate_tracker/9900276550_Resume Jeevitha.docx', NULL, NULL, '2020-10-28', 0, 'Jobs', '3', '8', '1970-01-01', 168000.00, '11:19 AM', '2', '1970-01-01', '2', '14K for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 11:05:37', 7, '2020-10-28 06:52:44', 0, NULL, 1),
(1578, 'Y .Maggi manro', '4', '7397496340', '9884049289', 'maggimanro.1234@gmail.com', '2000-06-13', 20, '2', '2', 'V.yesurathinam', 'Daliy wages', 10000.00, 2, 0.00, 15000.00, 'Tharamani', 'Tharmani', '2010280012', '1', '1', 'upload_files/candidate_tracker/22206556657_Maggi manro cv.pdf', NULL, NULL, '2020-10-28', 0, '', '3', '8', '2020-11-02', 120000.00, '11:38 AM', '4', '2020-11-09', '1', '10K for Dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-28 11:09:52', 7, '2020-10-29 03:01:09', 0, NULL, 1),
(1579, '', '0', '9361635210', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 11:11:03', 0, NULL, 0, NULL, 1),
(1580, 'Mohan. G', '4', '9080174247', '8678958331', 'Mohangopal097@gmail.com', '2000-08-02', 20, '1', '2', 'Gopal. K', 'Coolie', 14000.00, 1, 0.00, 12000.00, 'Perungalathur', 'Perungalathur', '2010280014', '', '1', 'upload_files/candidate_tracker/4335570397_1601602636510Resume_Mohan.pdf', NULL, NULL, '2020-10-28', 0, '66673', '5', '21', NULL, 0.00, '11:18 AM', '0', NULL, '1', 'perungaluthur long distance also not suit for our process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 11:11:41', 1, '2020-10-28 11:25:25', 0, NULL, 1),
(1581, 'D. Suriya prakash', '6', '9952078422', '9884978429', 'suriya78422@gmail.com', '1999-11-20', 20, '1', '2', 'S. Devaraj', 'Painter', 15000.00, 2, 0.00, 12000.00, 'Perungalathur', 'Perungalathur', '2010280015', '', '1', 'upload_files/candidate_tracker/42444144543_surya.pdf', NULL, NULL, '2020-10-28', 0, '66673', '5', '20', '1970-01-01', 0.00, '12:22 PM', '', '1970-01-01', '1', 'not fit, doubt in sustainability', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 11:12:39', 7, '2020-10-28 12:44:32', 0, NULL, 1),
(1582, 'R pavithra', '11', '7550278573', '9789912627', 'rpavithra1610@gmail.com', '1999-10-16', 21, '1', '2', 'V ravichandran', 'Tailor', 8000.00, 0, 0.00, 20000.00, '77/45 sowri street alandur chennai 16', '77/45 Sowri Street Alandur Chennai', '2010280016', '', '1', 'upload_files/candidate_tracker/37255058359_Pavithra Resume.pdf', NULL, NULL, '2020-10-28', 0, '2010280016', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'exp high sal', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 11:15:41', 1, '2020-10-28 11:22:42', 0, NULL, 1),
(1583, 'Rajesh', '6', '9551176181', '8610551009', 'marirajesh96@gmail.com', '1996-04-06', 24, '2', '2', 'Ezhumalai', 'Cooli', 13500.00, 4, 14000.00, 15000.00, 'No.437 gothamedu saidapet Chennai 600015', 'No.437 Gothamedu Saidapet Chennai 600015', '2010280017', '1', '2', 'upload_files/candidate_tracker/79409762767_0_raji resume(1).docx', NULL, NULL, '2020-10-30', 1, '', '5', '20', '1970-01-01', 0.00, '12:09 PM', '', '1970-01-01', '1', 'looking for job Temporarily, plans to start own business, also studying graphic designing for carrier option.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-28 12:26:38', 7, '2020-10-30 12:31:56', 0, NULL, 1),
(1584, '', '0', '9841149573', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 12:32:21', 0, NULL, 0, NULL, 1),
(1585, 'Mithun. V', '6', '7358408601', '9841159541', 'Mithunruby45@gmail.com', '2000-03-22', 20, '2', '2', 'Vijayasandhakumar. B', 'Driver', 80000.00, 1, 0.00, 10000.00, 'Chennai', 'medavakkam', '2010280019', '1', '1', 'upload_files/candidate_tracker/11658311775_mithun.pdf', NULL, NULL, '2021-03-15', 0, '', '5', '19', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'NOT FIT FOR SALES', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-28 12:32:47', 7, '2021-03-15 06:02:05', 0, NULL, 1),
(1586, '', '0', '9092467847', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 12:38:06', 0, NULL, 0, NULL, 1),
(1587, '', '0', '9551594732', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 12:57:32', 0, NULL, 0, NULL, 1),
(1588, 'F.Vinnarasi', '4', '8925363808', '', 'stassissifrancis@gmail.com', '1995-08-19', 25, '2', '2', 'Sr.Vimala Thuya Mary', 'Nun', 10000.00, 4, 0.00, 15000.00, 'T.nagar', 'Adyar', '2010280022', '1', '1', 'upload_files/candidate_tracker/49881529286_F.Vinnarasi Resume.pdf', NULL, NULL, '2020-10-29', 0, '', '5', '21', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '1', 'she is not interested in long term ,just time being only ...', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-28 01:07:10', 58, '2020-12-29 09:50:54', 0, NULL, 1),
(1589, '', '0', '7305277070', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 01:33:27', 0, NULL, 0, NULL, 1),
(1590, 'narendrakumar r', '6', '8610551009', '', '', '1996-09-01', 24, '2', '2', 'ravichandran k', 'office assitant', 15000.00, 1, 11500.00, 18000.00, 'chennai', 'thousand lights', '2010280024', '3', '2', 'upload_files/candidate_tracker/71308868893_file_1604043446736.pdf', NULL, NULL, '2020-10-30', 1, '', '5', '20', '1970-01-01', 0.00, '01:13 PM', '', '1970-01-01', '2', 'communication not good enough and doesnxquott know to drive bikes.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 03:12:13', 7, '2020-10-30 02:40:36', 0, NULL, 1),
(1591, 'Subhaanand', '5', '6382132855', '', '', '1976-09-08', 44, '2', '1', 'Sandhya', 'Team leader', 20000.00, 0, 25000.00, 28000.00, 'No.12/27 jeya complex Balaji nagar royapettah', 'No.4 senthil avenue,thiru vi ka nagar', '2010280025', '3', '2', 'upload_files/candidate_tracker/95854017995_subha.pdf', NULL, NULL, '2020-11-02', 15, '', '5', '31', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'dont have sales experience', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 04:46:46', 1, '2020-10-28 04:55:01', 0, NULL, 1),
(1592, 'Bharath B', '6', '9962404169', '7358401517', 'Kumarbk3497@gmail.com', '1997-04-03', 23, '2', '2', 'Baskar R', 'Salaried', 35000.00, 1, 17000.00, 21000.00, 'Chennai', 'Chennai', '2010280026', '1', '2', 'upload_files/candidate_tracker/48160789376_resume.pdf', NULL, NULL, '2020-10-30', 15, '', '3', '8', '2020-11-02', 192000.00, '11:00 AM', '3', '2020-12-02', '1', '16K for Kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-28 06:14:23', 7, '2020-10-30 04:27:16', 0, NULL, 1),
(1593, 'Yasar arafath mustafa', '20', '8778236202', '', '', '1989-02-09', 31, '2', '1', 'Kathija', 'Sales Manager', 55000.00, 2, 35000.00, 40000.00, 'Chennai', 'Chennai', '2010280027', '1', '2', 'upload_files/candidate_tracker/8464852016_CV.pdf.pdf', NULL, NULL, '2020-10-29', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-28 07:04:40', 7, '2020-10-29 04:18:22', 0, NULL, 1),
(1594, '', '0', '9840246396', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010290001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 12:36:54', 0, NULL, 0, NULL, 1),
(1595, 'ARUNKUMAR', '11', '9443205267', '8438000478', 'arunmba9193@gmail.com', '1993-11-20', 26, '2', '2', 'ARUMUGAM', 'No father', 100000.00, 1, 18000.00, 20000.00, 'Dindigul', 'Chennai', '2010290002', '1', '2', 'upload_files/candidate_tracker/60311734824_ARUNKUMAR_A_1601735224312.pdf', NULL, NULL, '2020-10-30', 0, '', '6', '0', NULL, 0.00, '11:10 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-29 11:07:05', 1, '2020-10-29 11:10:47', 0, NULL, 1),
(1596, 'LM Prasanna', '5', '9566112128', '8939482128', 'prasannakviswa@gmail.com', '1986-10-15', 34, '2', '2', 'LVMani', 'Doing pooja in baba temple', 35000.00, 0, 22000.00, 25000.00, 'Chennai', 'chennai', '2010290003', '1', '2', 'upload_files/candidate_tracker/68210463037_28908916283_1577947896841Resume_Prasanna-1 (1).pdf', NULL, NULL, '2020-10-30', 0, '', '8', '29', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'wrongly mapped to me', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-29 12:26:47', 58, '2020-12-29 09:52:55', 0, NULL, 1),
(1597, 'Aishwarya.S', '11', '9176494928', '7010949291', 'aishu6999@gmail.com', '1999-09-06', 21, '2', '2', 'S.Sekarpandian', 'Astrology', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010290004', '1', '1', 'upload_files/candidate_tracker/21294688443_resume.docx', NULL, NULL, '2020-10-29', 0, '', '5', '8', '1970-01-01', 0.00, '02:38 PM', '', '1970-01-01', '2', 'will not suite for rec profile and no comm. and idea about the profile.', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-29 12:28:22', 58, '2020-12-29 09:51:28', 0, NULL, 1),
(1598, 'P subash', '6', '9080155168', '', 'subashperumal74@gmail.com', '1999-09-27', 21, '2', '2', 'G perumal', 'Provision store', 18000.00, 2, 0.00, 12000.00, 'Pallikaranai', 'Pallikaranai', '2010290005', '1', '1', 'upload_files/candidate_tracker/11160105508_Subash27.docx', NULL, NULL, '2021-03-15', 0, '', '5', '19', '1970-01-01', 0.00, '12:56 PM', '', '1970-01-01', '2', 'not fit for sale', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-29 12:48:04', 8, '2021-03-15 06:10:22', 0, NULL, 1),
(1599, 'S.abhishek', '4', '9176435847', '', 'sabhishek12101@gmail.com', '1999-10-27', 21, '1', '2', 'N.shanmugam', 'Fitter', 10000.00, 1, 0.00, 10000.00, 'Perumbakkam', 'Perumbakkam', '2010290006', '', '1', 'upload_files/candidate_tracker/86447506736_abhishek.docx', NULL, NULL, '2020-10-29', 0, 'JOBS', '6', '0', NULL, 0.00, '01:12 PM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 01:10:23', 1, '2020-10-29 01:13:32', 7, '2020-10-29 03:21:50', 0),
(1600, 'kulasekaran.s', '5', '8939728728', '', 'gowthamkulasekaran1212@gmail.com', '1991-12-12', 28, '2', '2', 'gh hospital', 'clark', 30000.00, 2, 285000.00, 300000.00, 'kolathur', 'chennai', '2010290007', '1', '2', 'upload_files/candidate_tracker/38907453025_kulasekaran.s-7 (1).doc', NULL, NULL, '2020-10-29', 0, '', '5', '51', '1970-01-01', 0.00, '01:29 PM', '', '1970-01-01', '1', 'HE IS LOOKING FOR NON SALES JOBS', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-29 01:24:25', 58, '2020-12-29 09:52:06', 0, NULL, 1),
(1601, 'S.abhishek', '6', '9276435847', '', 'sabhishek12101@gmail.com', '1999-10-27', 21, '1', '2', 'N.shanmugam', 'Fitter', 10000.00, 1, 0.00, 10000.00, 'PERUMBAKKAM', 'Perumbakkam', '2010290008', '', '1', 'upload_files/candidate_tracker/58320033430_abhishek.docx', NULL, NULL, '2020-10-29', 0, 'JOBS', '5', '20', '1970-01-01', 0.00, '01:33 PM', '', '1970-01-01', '2', 'did not attend. candidate is missing.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 01:30:35', 7, '2020-10-29 03:21:57', 0, NULL, 1),
(1602, '', '0', '6380733463', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010290009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 01:39:51', 0, NULL, 0, NULL, 1),
(1603, 'Sargin O', '4', '8682954360', '7094867870', 'sarginouseph1993@gmail.com', '1993-02-10', 27, '2', '2', 'Ouseph A', 'Fishing', 12000.00, 5, 0.00, 15000.00, 'Kanniyakumari', 'Madiwala, Bangalore', '2010290010', '1', '1', 'upload_files/candidate_tracker/97697728270_Resume S2.pdf', NULL, NULL, '2020-10-29', 0, '', '5', '38', NULL, 0.00, '02:57 PM', '0', NULL, '2', 'he will not suit for CRM', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-29 02:32:47', 1, '2020-10-29 02:57:29', 0, NULL, 1),
(1604, 'Sujinvictor', '4', '9384783889', '7094867870', 'sujinvictor19@gmail.com', '1995-06-15', 25, '2', '2', 'Johnvictor', 'Fisher man', 10000.00, 3, 0.00, 15000.00, 'Kollemcode,kanyakumari', 'Madivalla bengalore', '2010290011', '1', '1', 'upload_files/candidate_tracker/59041972546_sujin resume.pdf', NULL, NULL, '2020-10-29', 0, '', '5', '38', NULL, 0.00, '02:58 PM', '0', NULL, '2', 'he will not suite for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-29 02:40:24', 1, '2020-10-29 03:02:55', 0, NULL, 1),
(1605, 'YOGALAKSHMI.S.', '4', '8608413419', '9789021235', 'priyakanchana44@gmail.com', '1999-10-15', 21, '2', '2', 'SELVARAJ.V.', 'Tailor', 68.00, 1, 0.00, 12.00, 'Padavettamman kovil street, kaspapuram.', 'Padavettamman kovil street, kaspapuram.', '2010290012', '1', '1', 'upload_files/candidate_tracker/95554969038_YOGALAKSHMI RESUME.pdf', NULL, NULL, '2020-10-30', 0, '', '5', '21', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'long distance 2 hrs travel', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-29 03:27:57', 7, '2020-10-30 11:05:45', 0, NULL, 1),
(1606, '', '0', '7299503481', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010290013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 03:30:23', 0, NULL, 0, NULL, 1),
(1607, 'K.KOWSALYA', '21', '9384610365', '7401650297', 'Kowsalyakowsi613@gmail.com', '2000-03-07', 20, '1', '2', 'O.KARUPPAIYA', 'DRIVER', 13000.00, 0, 0.00, 10000.00, '8/348 INDRA NAGAR MAIN ROAD NANMANGALAM', '8/348 INDRA NAGAR MAIN ROAD NANMANGALAM', '2010290014', '', '1', 'upload_files/candidate_tracker/574005959_KOWSALYA', NULL, NULL, '2020-11-02', 0, 'B.com bank management', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '3', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 03:38:40', 50, '2020-11-02 05:15:36', 0, NULL, 1),
(1608, 'PRIYADHARSHINI', '21', '8838993770', '9940214566', 'Priyaqueen12121998@gmail.com', '1998-12-12', 21, '1', '2', 'Rajendran', 'Painter', 20000.00, 2, 0.00, 10000.00, 'Tharamani', 'Tharamani', '2010290015', '', '1', 'upload_files/candidate_tracker/43201284112_PRIYADHARSHINI. R resume.pdf', NULL, NULL, '2020-11-02', 0, 'B.com bank management', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 03:38:55', 50, '2020-11-02 05:15:45', 0, NULL, 1),
(1609, '', '0', '6382747442', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010290016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 04:17:17', 0, NULL, 0, NULL, 1),
(1610, 'Saran. T', '4', '7904024288', '', 'sarankonvict98@gmail', '1998-04-24', 22, '1', '2', 'Tamilarasan. M', 'Private employee', 8000.00, 1, 0.00, 14000.00, '1st street, VKN Nagar, Ikkadu, Thiruvallure', '1st Street, VKN Nagar, Ikkadu, Thiruvallure', '2010290017', '', '1', 'upload_files/candidate_tracker/66136286758_Saran resume .docx', NULL, NULL, '2020-10-29', 0, 'Jobs', '6', '0', NULL, 0.00, '04:42 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 04:38:16', 1, '2020-10-29 04:43:39', 0, NULL, 1),
(1611, '', '0', '7358695934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010290018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 04:40:12', 0, NULL, 0, NULL, 1),
(1612, '', '0', '7305803771', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010290019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 04:51:32', 0, NULL, 0, NULL, 1),
(1613, 'ZEBA ARJUMAN', '21', '9087591208', '', '', '2001-06-05', 19, '1', '2', 'SALAUDDIN', 'Business', 6000.00, 2, 0.00, 20000.00, 'Redhills', 'Redhills', '2010290020', '', '1', 'upload_files/candidate_tracker/23643625556_ cv.PDF', NULL, NULL, '2020-10-29', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 05:28:51', 1, '2020-10-29 05:42:47', 0, NULL, 1),
(1614, 'Suresh V', '11', '8883739138', '8248085428', 'sureshvenket123@gmail.com', '1997-06-02', 23, '2', '2', 'Venkatesh S', 'Cooli', 100000.00, 3, 0.00, 15000.00, 'Namakkal', 'Chennai Porur', '2010290021', '1', '1', 'upload_files/candidate_tracker/13482397573_Suresh.pdf', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:16 AM', '', '1970-01-01', '1', 'no comm, and not speaking up, will not suite for HR', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-29 06:40:45', 58, '2020-12-23 11:26:17', 0, NULL, 1),
(1615, 'Ganesh S', '6', '8144735852', '', '', '1998-09-03', 22, '2', '2', 'Singaravelan E', 'Daily wages', 16000.00, 2, 13500.00, 17000.00, 'Urappakkam', 'Urappakkam', '2010290022', '1', '2', 'upload_files/candidate_tracker/43576889994_Resume (2).docx', NULL, NULL, '2020-10-30', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not suitable for profile..', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-29 07:38:40', 58, '2020-12-29 09:50:24', 0, NULL, 1),
(1616, 'Martina Madhumitha', '11', '9791178108', '6383771147', 'martinamadhumitha98@gmail.com', '1998-10-08', 22, '2', '2', 'Ravi kumar', 'driver', 144000.00, 1, 0.00, 15000.00, 'porur,chennai', 'porur, chennai', '2010290023', '1', '1', 'upload_files/candidate_tracker/96381884930_20 RESUME.docx', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:45 AM', '', '1970-01-01', '2', 'not speaking up, no Relevant exp and will not suite for HR', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-29 08:36:02', 58, '2020-12-23 12:08:39', 0, NULL, 1),
(1617, 'Shrini G S', '4', '9894477464', '', 'shriniseethaaraaman@gmail.com', '1996-11-19', 23, '2', '2', 'Seethaaraaman G', 'Working in private company', 25000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2010300001', '1', '1', 'upload_files/candidate_tracker/52242126484_my resume.docx', NULL, NULL, '2020-11-02', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '5', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 08:56:42', 50, '2020-11-02 05:15:53', 0, NULL, 1),
(1618, 'DINESHRAJ M', '6', '9080987489', '', 'www.dineshraj10455@gmail.com', '1999-06-07', 21, '1', '2', 'MOORTHY V', 'DRIVER', 15000.00, 1, 0.00, 15000.00, 'KANCHIPURAM', 'MANALI', '2010300002', '', '1', 'upload_files/candidate_tracker/33946928128_ANBU.docx', NULL, NULL, '2020-10-30', 0, 'JOBS', '5', '20', '1970-01-01', 0.00, '10:51 AM', '', '1970-01-01', '2', 'sustainability.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 10:45:21', 7, '2020-10-30 11:08:44', 0, NULL, 1),
(1619, 'Md Shahid Shariff', '16', '7904331463', '8220535239', 'Mdshahidshariff@gmail.com', '1983-06-10', 37, '2', '1', 'Afifa', 'Housewife', 3000.00, 5, 0.00, 15000.00, 'VANIYAMBADI', 'Palavakkam', '2010300003', '3', '1', 'upload_files/candidate_tracker/3498535456_shahidresume1.pdf', NULL, NULL, '2020-10-30', 0, '', '5', '8', NULL, 0.00, '11:00 AM', '0', NULL, '2', '7 yrs exp as accountant exe.  completely i to billing and data enter. profile will not match for MIS exe.No knowledge in Macros and Spreadsheets.', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 10:49:27', 1, '2020-10-30 11:27:13', 0, NULL, 1),
(1620, 'Vasanth Kumar .s', '6', '7904500245', '9176363691', 'vasanthsenthilkumar@gmail.com', '1998-11-23', 21, '1', '2', 'Senthil Kumar.v', 'Car driver', 20000.00, 1, 10000.00, 13000.00, 'Tharamani', 'Tharamani', '2010300004', '', '2', 'upload_files/candidate_tracker/68082319320_S.VASANRH KUMAR RESUME-1.doc', NULL, NULL, '2020-10-30', 0, 'Jobs', '3', '8', '1970-01-01', 156000.00, '11:27 AM', '2', '1970-01-01', '1', '13K for Suthagar team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 11:10:49', 7, '2020-10-30 04:27:34', 0, NULL, 1),
(1621, 'Yuvaraj', '6', '7418077163', '9551176181', 'yuva78537@gail.com', '1996-09-19', 24, '2', '2', 'Nagaraj', 'Cooli', 13500.00, 6, 14000.00, 15000.00, 'B67 idpl colony nandambakkam Chennai', 'B67 Idpl Colony Nandambakkam Chennai', '2010300005', '1', '2', 'upload_files/candidate_tracker/86234670064_yuvaraj resume(1).pdf', NULL, NULL, '2020-10-30', 0, '', '5', '19', '1970-01-01', 0.00, '01:18 PM', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 11:59:08', 7, '2020-10-30 02:39:40', 0, NULL, 1),
(1622, 'Sarath Kumar.m', '6', '8608518083', '7639352004', 'smartsarath1005@gmail.com', '1998-05-10', 22, '1', '2', 'Murugan.S', 'Chef', 20000.00, 2, 11000.00, 13000.00, 'Tharamani law colleage', 'Tharamani law colleage', '2010300006', '', '2', 'upload_files/candidate_tracker/39101442377_M.SARATHKUMAR RESUME-2.doc', NULL, NULL, '2020-10-30', 0, 'Jobs', '5', '16', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'no communication skills ,low profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 11:59:45', 7, '2020-10-30 12:59:18', 0, NULL, 1),
(1623, 'LM Prasanna', '5', '8939482128', '9566112128', 'prasannakviswa@gmail.com', '1986-10-15', 34, '1', '2', 'LV Mani', 'Doing Pooja in Saibaba Temple', 35000.00, 0, 22000.00, 25000.00, 'Chennai', 'Chennai', '2010300007', '', '2', 'upload_files/candidate_tracker/44707404472_28908916283_1577947896841Resume_Prasanna-1 (1).pdf', NULL, NULL, '2020-10-30', 0, 'Jobs', '6', '0', NULL, 0.00, '12:11 PM', '0', NULL, '1', NULL, '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 12:08:06', 1, '2020-10-30 12:12:34', 7, '2020-10-30 12:19:24', 0),
(1624, '', '0', '8939021799', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010300008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 12:08:36', 0, NULL, 0, NULL, 1),
(1625, '', '0', '8939482128', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010300009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 12:20:09', 0, NULL, 0, NULL, 1),
(1626, 'Jeni subin', '4', '6374296414', '7598231392', 'jemosubin1999@gmail.com', '1999-05-10', 21, '1', '2', 'Jeyasingh', 'Abroad', 20000.00, 1, 0.00, 13000.00, 'Velachery', 'Velachery', '2010300010', '', '1', 'upload_files/candidate_tracker/96159147865_CV_2020-09-28-011016.pdf', NULL, NULL, '2020-10-30', 0, 'Jobs', '5', '21', '1970-01-01', 0.00, '03:30 PM', '', '1970-01-01', '1', 'he is interested in data entry xxamp not  interested in pressured  job', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 03:28:33', 7, '2020-10-30 03:38:27', 0, NULL, 1),
(1627, 'Ajith n', '4', '6382159369', '8939164299', 'Ajithooei@gmail.com', '1999-06-22', 21, '1', '2', 'Narayanan', 'Daily wager', 13000.00, 2, 0.00, 13000.00, 'Tharamani', 'Tharamani', '2010300011', '', '1', 'upload_files/candidate_tracker/40544028018_file_1604053733121.pdf', NULL, NULL, '2020-10-30', 0, 'Jobs', '5', '21', '1970-01-01', 0.00, '04:05 PM', '', '1970-01-01', '2', 'he is expecting  20k for crm,also not sustain long term ..not suitable  for our process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 03:41:55', 7, '2020-10-30 04:18:30', 0, NULL, 1),
(1628, '', '0', '7550120399', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010300012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 04:03:14', 0, NULL, 0, NULL, 1),
(1629, 'D.Jeeva Nandhini', '11', '9385845453', '6384588138', 'jeevacrazy97@gmail.com', '1997-09-13', 23, '2', '2', 'V.Durairaj', 'Retired mill worker', 15000.00, 1, 0.00, 15000.00, 'Pondicherry', 'T.nagar', '2010300013', '1', '1', 'upload_files/candidate_tracker/40202122860_jeeva resume-compressed.pdf', NULL, NULL, '2020-10-31', 0, '', '3', '8', '2020-11-09', 151800.00, '11:00 AM', '', '1970-01-01', '1', '12K for REC', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-30 04:19:29', 58, '2020-12-23 12:09:59', 0, NULL, 1),
(1630, 'Sivasanju S', '11', '6383450310', '7871111835', 'Sivasanju08@gmail.com', '1998-03-08', 22, '2', '2', 'Sankararajan S', 'Driver', 18000.00, 1, 0.00, 13000.00, 'No.10,vijayalakshmiflat,Madipakkam, chennai-600091', 'No.10,Vijayalakshmiflat,Madipakkam, Chennai-600091', '2010300014', '1', '1', 'upload_files/candidate_tracker/31226551351_Sivasanju_cv.pdf', NULL, NULL, '2020-10-31', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 04:47:59', 7, '2020-10-31 04:11:35', 0, NULL, 1),
(1631, 'Lakshmi priya', '11', '7010884939', '7868853920', 'Laxme.04795@gmail.com', '1995-07-04', 25, '1', '2', 'Pandiaraj', 'Farmar', 12000.00, 1, 10000.00, 15000.00, 'Sattur, Viruthunagar', 'T nagar', '2010300015', '', '2', 'upload_files/candidate_tracker/26019244530_Lakshmi priya resume.docx', NULL, NULL, '2020-10-31', 0, 'Job', '5', '8', NULL, 0.00, '11:46 AM', '0', NULL, '1', 'From Hectadata, No Comm And Doesnxquott Have Previous Org Analysis. and doesnt know her rxxampR.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 04:58:25', 1, '2020-10-31 11:46:42', 0, NULL, 1),
(1632, 'vinod', '11', '9894109646', '9566505751', 'balavinod03@gmail.com', '1994-06-25', 26, '1', '2', 'thambidurai', 'fresher', 70000.00, 1, 0.00, 30000.00, 'pondicherry', 'Chennai', '2010300016', '', '1', 'upload_files/candidate_tracker/60975304900_vinod resume.pdf', NULL, NULL, '2020-10-31', 0, 'jennifer', '5', '8', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'not speaking up and will not suite for rec profile.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 05:02:08', 1, '2020-10-30 08:06:46', 0, NULL, 1),
(1633, 'Vijayalakshmi.S', '11', '9940580289', '9940247053', 'vijiv012842@gmail.com', '1997-09-23', 23, '2', '2', 'P.siva', 'Flower decorator', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010300017', '1', '1', 'upload_files/candidate_tracker/46666761084_cv viji.docx', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Profile Will Not Match For \nHR,  avg comm. ', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 06:54:54', 50, '2020-11-02 11:10:09', 0, NULL, 1),
(1634, '', '0', '9495787282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010300018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 06:59:20', 0, NULL, 0, NULL, 1),
(1635, '', '0', '9791399503', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010300019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 06:59:33', 0, NULL, 0, NULL, 1),
(1636, 'Nandhini P', '11', '6381946359', '9176744659', '', '1996-08-31', 24, '2', '2', 'Parthiban c', 'Plumber', 18000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2010300020', '1', '1', 'upload_files/candidate_tracker/28504227676_Resume.pdf', NULL, NULL, '2020-10-31', 0, '', '5', '8', '1970-01-01', 0.00, '11:27 AM', '', '1970-01-01', '2', 'not speaking up and poor comm.', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 07:05:49', 60, '2020-12-24 10:44:10', 0, NULL, 1),
(1637, 'Arputhavalli S', '11', '9791498583', '6381234866', 'sjemima007@gmail.com', '1992-06-07', 28, '1', '2', 'Selvaraj', 'Retired', 30000.00, 2, 18000.00, 24000.00, 'Sattur', 'Chennai', '2010300021', '', '2', 'upload_files/candidate_tracker/28183154317_Arputhavalli_ 3.8 Years.docx', NULL, NULL, '2020-10-31', 15, 'Job', '5', '8', NULL, 0.00, '04:37 PM', '0', NULL, '2', 'from hectadata, no comm and Doesnxquott have previous org analysis', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 08:28:41', 1, '2020-10-31 11:23:24', 0, NULL, 1),
(1638, 'Sathish T', '6', '8657853383', '8355953946', 'Satish.viji1996@gmail.com', '1996-08-28', 24, '2', '2', 'Thanikaivel', 'Contractor', 20000.00, 0, 14000.00, 17000.00, 'Purasaivakkam', 'Purasaivakkam', '2010300022', '1', '2', 'upload_files/candidate_tracker/40202274968_1604301441112a6449761_pdf.pdf', NULL, NULL, '2020-11-02', 0, '', '3', '8', '2020-11-04', 180000.00, '12:44 PM', '6', '2021-02-23', '1', '15K for re Srikanth team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 09:24:32', 7, '2020-11-03 05:13:03', 0, NULL, 1),
(1639, 'SUFIYAN', '5', '9080401084', '8122245102', 'sufiji18@gmail.com', '1993-07-18', 27, '2', '2', 'Ameerul haq', 'suitcase business', 25000.00, 2, 22000.00, 25000.00, 'Broadway', 'Broadway', '2010300023', '1', '2', 'upload_files/candidate_tracker/7415866358_Sufiyan Resume.pdf', NULL, NULL, '2020-11-13', 1, '', '5', '31', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not satisfied', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 10:43:18', 7, '2020-11-13 11:51:17', 0, NULL, 1),
(1640, 'Lavanya.M', '11', '7305697376', '', '', '1995-01-11', 25, '3', '2', 'Meganathan.P', 'Leather technichian', 40000.00, 1, 12000.00, 13000.00, 'Chennai', 'Chennai', '2010310001', '', '2', 'upload_files/candidate_tracker/15776530458_Resume.pdf', NULL, NULL, '2020-10-31', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'no response from her end', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-10-31 06:03:25', 60, '2020-12-24 10:43:02', 0, NULL, 1),
(1641, 'Sangeetha.K', '4', '7338914110', '9360710344', 'sangeekumarkumar@gmail.com', '1999-09-27', 21, '1', '2', 'Kumaravel.M', 'Cooli', 13000.00, 1, 8000.00, 11000.00, 'No:8/12 Bharathi Nagar 10 th At, Korukkupet,Ch-21', 'No:8/12 Bharathi Nagar 10 th St, Korukkupet,Ch_21', '2010310002', '', '2', 'upload_files/candidate_tracker/61866740263_sangee resume.pdf', NULL, NULL, '2020-10-31', 0, 'Jobs', '3', '8', '2020-11-03', 120000.00, '11:32 AM', '6', '2020-11-05', '2', '10K for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 10:31:25', 7, '2020-10-31 04:13:22', 0, NULL, 1),
(1642, 'Ruby evanjalin', '11', '8124020425', '7092530425', 'Rhenieva@Gmail.Com', '1995-08-05', 25, '1', '2', 'Poulraj', 'Advocate clerk', 35000.00, 2, 17.00, 22000.00, 'Thuthukudi', 'Thuthukudi', '2010310003', '', '2', 'upload_files/candidate_tracker/83520789948_Ruby Evanjalin P (3).docx', NULL, NULL, '2020-10-31', 5, 'Job', '5', '8', NULL, 0.00, '11:26 AM', '0', NULL, '2', 'Very low voice and salary exo is 20+ ', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 11:22:46', 1, '2020-10-31 11:26:46', 0, NULL, 1),
(1643, '', '0', '7868853920', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010310004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 11:24:14', 0, NULL, 0, NULL, 1),
(1644, 'hari sri sandhya', '20', '8428771228', '7305667316', 'harisrisandhya99@gmail.com', '1999-08-28', 21, '1', '2', 'rajagopal', 'sales manger', 15000.00, 1, 0.00, 15000.00, 'porur', 'porur', '2010310005', '', '1', 'upload_files/candidate_tracker/4979811456_sandhya resume.pdf', NULL, NULL, '2020-10-31', 0, 'p1113', '5', '16', '1970-01-01', 0.00, '11:17 AM', '', '1970-01-01', '2', 'Sustain doubt', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 11:48:28', 7, '2020-10-31 01:38:10', 0, NULL, 1),
(1645, '', '0', '9150272008', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010310006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 12:13:44', 0, NULL, 0, NULL, 1),
(1646, 'Arafath Roja', '13', '8667872198', '9500435175', 'arafathroja7@gmail.com', '1995-08-08', 25, '2', '2', 'Mohammed Magthoom', 'Grocer', 25000.00, 2, 285000.00, 350000.00, 'Chennai', 'Chennai', '2010310007', '1', '2', 'upload_files/candidate_tracker/78156996290_Arafath_Resume.pdf', NULL, NULL, '2020-11-02', 0, '', '5', '28', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'She is not so much skill in php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 12:26:17', 50, '2020-11-02 11:43:31', 0, NULL, 1),
(1647, 'Gokul Raj', '13', '9894380790', '', 'gokulraj.gk95@gmail.com', '1997-11-09', 23, '2', '2', 'Parent', 'Business', 50000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2010310008', '1', '1', 'upload_files/candidate_tracker/48237497235_gokul97 updated.doc', NULL, '2', '2021-05-27', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task not completed.', '2', '1', '', '1', '1', '', '2', '2021-06-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-10-31 12:43:54', 7, '2021-05-27 03:41:55', 0, NULL, 1),
(1648, 'K Dhananjaneyulu', '5', '9398890272', '9052839041', 'kdhana039@gmail.com', '1997-05-09', 23, '1', '2', 'Late k venkataramana', 'Agriculture', 25000.00, 1, 14900.00, 20000.00, 'B. Kotha kota', 'Madiwala', '2010310009', '', '2', 'upload_files/candidate_tracker/4956948746_Dhana new resume-converted (1).pdf', NULL, NULL, '2020-10-31', 0, '5490', '3', '8', '2020-11-05', 17000.00, '12:58 PM', '4', '2021-05-04', '1', '17k for Manivel team', '5', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 12:52:33', 7, '2020-11-04 06:53:02', 0, NULL, 1),
(1649, 'Karthikeyan Selvaraj', '4', '9994535367', '', 'sjkkarthikn@gmail.com', '1996-01-02', 24, '2', '2', 'Selvaraj', 'Formar', 80000.00, 2, 0.00, 24000.00, 'Sunnambukkaran Patti, Trichy', 'Sunnambukkaran Patti, Trichy', '2010310010', '1', '1', 'upload_files/candidate_tracker/745989235_KARTHIK RESUME 2 2020 18.pdf', NULL, NULL, '2020-11-02', 0, '', '8', '', '1970-01-01', 0.00, '11:20 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 01:36:55', 50, '2020-11-02 05:16:01', 0, NULL, 1),
(1650, 'sai vignesh kumar', '11', '8056223249', '', 'Vsai78709@gmail.com', '1997-08-04', 23, '2', '2', 'shanmugam m', 'Sales manager', 30000.00, 1, 0.00, 17000.00, 'No 43 abith nagar choolaimedu chennai 600094', 'No 43 abith nagar choolaimedu chennai 600094', '2010310011', '1', '1', 'upload_files/candidate_tracker/67657705627_RESUME FINAL .pdf', NULL, NULL, '2020-11-02', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 03:50:29', 50, '2020-11-02 05:17:10', 0, NULL, 1),
(1651, 'sathish kumar.', '6', '9597431628', '9629754067', 'sathishsankar@gmail.com', '2000-01-09', 20, '2', '2', 'sankar', 'farmer', 10000.00, 1, 0.00, 15000.00, 'kodur', 'kodur', '2010310012', '1', '1', 'upload_files/candidate_tracker/63455433110_Bharat Scanner3 (1).pdf', NULL, NULL, '2020-11-02', 0, '', '5', '20', '1970-01-01', 0.00, '01:47 PM', '', '1970-01-01', '2', 'not fit,, interview by sudhakar', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 04:10:47', 7, '2020-11-02 06:23:32', 0, NULL, 1),
(1652, 'Sriniketh V', '13', '9004261816', '', 'srinikethvenkatesh@gmail.com', '1997-05-01', 23, '2', '2', 'Venkatesh R', 'Fresher', 100000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2010310013', '1', '1', 'upload_files/candidate_tracker/83995736671_Resume_2020-08-26.pdf', NULL, NULL, '2020-11-02', 0, '', '8', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'left before interview', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 04:34:05', 50, '2020-11-02 12:30:50', 0, NULL, 1),
(1653, '', '0', '9003272607', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010310014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 05:33:22', 0, NULL, 0, NULL, 1),
(1654, '', '0', '9092810343', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010310015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 05:50:47', 0, NULL, 0, NULL, 1),
(1655, 'M.Deepa priya', '11', '9080324060', '7200726711', 'deepapriya2k16@gmail.com', '1996-07-03', 24, '2', '2', 'G.Makunthu', 'MBA', 25000.00, 1, 18000.00, 18000.00, 'Tiruvannamalai', 'Chennai', '2010310016', '1', '2', 'upload_files/candidate_tracker/89608626551_DEEPA_Resume.pdf', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'Not Okay With Our Terms And Conditions', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 06:05:35', 50, '2020-11-02 11:49:39', 0, NULL, 1),
(1656, '', '0', '7092274951', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010310017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 06:06:38', 0, NULL, 0, NULL, 1),
(1657, 'Chandru. P', '11', '8838508437', '6384352633', 'Pmchandru1999@gmail.com', '1999-03-10', 21, '1', '2', 'Palani. K', 'Farmar', 5000.00, 2, 0.00, 15000.00, 'Keezhkothapakkam', 'Keezhkothapakkam', '2010310018', '', '1', 'upload_files/candidate_tracker/80850437604_ file name.PDF', NULL, NULL, '2020-11-02', 0, '6673', '5', '24', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '2', 'not fit for our profile', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 06:26:45', 1, '2020-11-02 01:11:21', 0, NULL, 1),
(1658, 'bala murugan', '3', '8870753937', '9894297367', 'vrbala123@gmail.com', '1989-05-17', 31, '2', '1', 'rajavelu', 'farmer', 30000.00, 1, 25000.00, 27000.00, 'periyakulam', 'velacherrychennai', '2010310019', '1', '2', 'upload_files/candidate_tracker/42110043042_CV.docx', NULL, NULL, '2020-11-02', 20, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 06:26:59', 50, '2020-11-02 05:17:20', 0, NULL, 1),
(1659, 'kanimozhi c', '11', '9789899317', '', 'kani.981213@gmail.com', '1998-12-13', 21, '2', '2', 'chelladurai a', 'business', 20000.00, 4, 0.00, 13000.00, 'tondiarpet', 'tondiarpet', '2010310020', '1', '1', 'upload_files/candidate_tracker/20806535727_kaniresumec.docx', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'fresher and no idea about the profile and no knowledge. ', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 06:27:48', 50, '2020-11-02 11:05:01', 0, NULL, 1),
(1660, 'Sathish kumar', '6', '9507431628', '9629754067', 'Sathishsankar524@gmail.com', '2000-01-09', 20, '2', '2', 'Sankar', 'Farmar', 5000.00, 1, 0.00, 15000.00, 'Kodur', 'Kodir', '2010310021', '1', '1', 'upload_files/candidate_tracker/32190835986_ss.pdf', NULL, NULL, '2020-11-02', 0, '', '6', '', '1970-01-01', 0.00, '12:35 PM', '', '1970-01-01', '2', '', '5', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 06:38:40', 50, '2020-11-02 02:52:02', 50, '2020-11-02 03:05:46', 0),
(1661, 'Nandhini Karthikeyan', '11', '7904181974', '9551513874', 'nandhinikarthikeyan0@gmail.com', '1998-02-20', 22, '2', '2', 'Karthikeyan P', 'Employee', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010310022', '1', '1', 'upload_files/candidate_tracker/96926269927_Nandhu resume.docx', NULL, '1', '2021-12-23', 0, '', '10', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2020-10-31 07:25:16', 64, '2021-12-22 06:17:15', 0, NULL, 1),
(1662, '', '0', '7094701653', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010310023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 08:20:45', 0, NULL, 0, NULL, 1),
(1663, 'Ramesh k', '13', '9080440049', '', 'kramesh101999@gmail.com', '1999-04-10', 21, '1', '2', 'Kandasamy', 'Wage worker', 12000.00, 2, 0.00, 10000.00, '52,EastStreet,Uppidamangalam,(po),Karur-639114', '52,EastStreet,Uppidamangalam,(Po),Karur-639114', '2010310024', '', '1', 'upload_files/candidate_tracker/36127834682_ramesh.pdf', NULL, NULL, '2020-11-05', 0, 'Nandhini', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 10:02:18', 50, '2020-11-05 06:12:42', 0, NULL, 1),
(1664, '', '0', '6382801917', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011010001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-01 11:46:47', 0, NULL, 0, NULL, 1),
(1665, 'aswin balasundaran', '11', '9994574149', '', 'aswindfgg@gmail.com', '1994-01-03', 26, '2', '2', 'balasundaran', 'retired teacher', 600000.00, 1, 0.00, 1.00, 'chennai', 'chennai', '2011020001', '1', '1', 'upload_files/candidate_tracker/56315816715_Aswin-B.pdf', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Profile Will Not Match For \nHR, No Relevant Exp And Exp Sal Is 15K+', '6', '2', '', '', '', '', '2', '1970-01-01', '2', '8', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2020-11-02 07:44:04', 60, '2020-12-24 10:45:39', 0, NULL, 1),
(1666, 'Helka selvam', '11', '9344895425', '9943443855', 'helkaselvi1997@gmail.com', '1997-05-16', 23, '2', '2', 'Selvam K', 'Farmer', 100000.00, 1, 17500.00, 20000.00, 'No.358, Nookambadi, Chennai-606 752.', 'No.2/7, Ramapuram, Chennai-600 086.', '2011020002', '1', '2', 'upload_files/candidate_tracker/87035509786_Helka Resume.docx', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Profile Will Not Match For \nHR, No Relevant Exp And Exp Sal Is 15K+', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-02 09:58:01', 58, '2020-12-23 12:14:38', 0, NULL, 1),
(1667, 'Pavithra k', '4', '9940272961', '9600165399', 'pavithrakumar888@gmail.com', '2000-05-17', 20, '1', '2', 'Kumar k', 'Mechanic', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2011020003', '', '1', 'upload_files/candidate_tracker/38834090516_pavithra resume.docx', NULL, NULL, '2020-11-02', 0, '5621', '3', '8', '2020-11-05', 120000.00, '11:00 AM', '6', '2021-03-26', '2', '10k for Dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 10:00:47', 7, '2020-11-03 05:18:05', 0, NULL, 1),
(1668, 'D. Monisha', '4', '8754559461', '7010986238', 'Monishadandapanimonisha07@gmail.com', '1999-01-07', 21, '1', '2', 'S. Dhandapani', 'Driver', 15000.00, 1, 0.00, 18000.00, 'No16/28, kannanstreet, korukkupet, ch-21', 'No16/28,kannanstreet korukkupet, ch-21', '2011020004', '', '1', 'upload_files/candidate_tracker/90733073687_Monisha Resume..doc', NULL, NULL, '2020-11-02', 0, 'P1092', '5', '8', '1970-01-01', 0.00, '10:31 AM', '', '1970-01-01', '2', 'no response will not join', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 10:18:29', 50, '2020-11-02 10:42:45', 0, NULL, 1),
(1669, 'Chandrasekar', '21', '9940258569', '6382286772', 'ncschandra7797@gmail.com', '1997-07-07', 23, '2', '2', 'Niranjan', 'Security', 10000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2011020005', '1', '2', 'upload_files/candidate_tracker/92289669810_Sekar-Resume Nov2020.docx', NULL, NULL, '2020-11-03', 0, '', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'He know basics but expecting 25k gross', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 10:26:48', 1, '2020-11-02 10:32:02', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1670, 'Dharani M', '4', '7449107439', '9380909462', 'dharums3@gmail.com', '1999-05-05', 21, '2', '2', 'Murali N', 'Self employer', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011020006', '1', '1', 'upload_files/candidate_tracker/63458488028_RESUME_DHARANI M.pdf', NULL, NULL, '2020-11-03', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Sustain Because She Already Have Offer In Tech Mahindra  16 K Salary..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 10:45:07', 50, '2020-11-03 02:02:24', 0, NULL, 1),
(1671, 'JAYAVIGNESH', '6', '9840276258', '8667246446', 'jaivignesh80@gmail.com', '1995-05-20', 25, '1', '2', 'R.VEERAMANI', 'Security', 25000.00, 1, 16000.00, 18000.00, 'Thirunindravur', 'Nungambakkam', '2011020007', '', '2', 'upload_files/candidate_tracker/59677729375_1604295884619_CV-1.doc', NULL, NULL, '2020-11-02', 0, '5523', '3', '8', '2020-11-03', 216000.00, '11:15 AM', '6', '2021-04-01', '1', '18K for Suthagar team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 11:08:28', 7, '2020-11-02 06:08:22', 0, NULL, 1),
(1672, 'seethapathi', '11', '7397418357', '', 'seethapathiselvaraj@gmail.com', '1996-12-07', 23, '2', '2', 'selvaraj', 'driving', 20000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2011020008', '1', '1', 'upload_files/candidate_tracker/73641497661_Sample PDF.pdf', NULL, NULL, '2020-11-07', 0, '', '3', '8', '2020-11-09', 151800.00, '11:22 AM', '5', '1970-01-01', '1', '12K for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 11:15:54', 7, '2020-11-08 01:51:26', 0, NULL, 1),
(1673, 'Jayavarshini Manoharan', '11', '9944705264', '', 'jaya.varshini19@gmail.com', '1994-01-19', 26, '3', '2', 'Homemaker', 'Business', 10000.00, 2, 12000.00, 15000.00, 'Chennai', 'Saligramam', '2011020009', '', '2', 'upload_files/candidate_tracker/880644627_jayresume1020.pdf', NULL, NULL, '2020-11-03', 0, '', '5', '8', '1970-01-01', 0.00, '11:31 AM', '', '1970-01-01', '1', 'will not join', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-02 11:24:07', 60, '2020-12-24 10:46:55', 0, NULL, 1),
(1674, 'Kirthika', '4', '7305450453', '9840351192', 'Kirthikaparthiban05@gmail.com', '1999-05-17', 21, '2', '2', 'Parthiban', 'Fresher', 150000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2011020010', '1', '1', 'upload_files/candidate_tracker/70322928715_kirthika', NULL, NULL, '2020-11-03', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'she already have offer in tech mahindra flipcart process 16 salary..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 11:31:55', 8, '2020-11-03 12:04:39', 0, NULL, 1),
(1675, 'Kannan', '5', '9597111449', '9042194406', 'ckannanias11@gmail.com', '1986-07-30', 34, '1', '2', 'Chandran', 'Passed away', 60000.00, 0, 30000.00, 30000.00, '71 kanniyapurm post natham road Dindgul 624308', '4 labbai street, alandur 16', '2011020011', '', '2', 'upload_files/candidate_tracker/53642356722_kannan resume.idfc(1).docx', NULL, NULL, '2020-11-04', 0, 'Nedunheliyan employee', '5', '51', NULL, 0.00, '03:16 PM', '0', NULL, '1', 'rejected', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 11:32:38', 1, '2020-11-04 01:17:21', 0, NULL, 1),
(1676, 'Sathya R', '11', '8939662382', '9789747438', 'sathyasamu1998@gmail.com', '1997-06-08', 23, '2', '2', 'Raja p', 'Farmer', 100000.00, 2, 18000.00, 20000.00, 'No.68,T.M Road,Desur- 604 501', 'No.2/7, Ramapuram, Chennai-600 086.', '2011020012', '1', '2', 'upload_files/candidate_tracker/49457198204_sathya resume new2.docx', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'profile will not match for \nHR, no relevant exp and exp sal is 15K+', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-02 11:46:24', 58, '2020-12-23 12:14:09', 0, NULL, 1),
(1677, 'R. Jansirani', '4', '7358655468', '8056774748', 'Ravijansiraniruku@gmail.com', '1997-06-23', 23, '2', '2', 'R. Ravi', 'Daily wager', 10000.00, 2, 0.00, 13000.00, 'Perungudi', 'Perungudi', '2011020013', '1', '2', 'upload_files/candidate_tracker/68828864929_1604301859930a47896858_pdf.pdf', NULL, NULL, '2020-11-02', 0, '', '3', '8', '2020-11-05', 132000.00, '01:01 PM', '6', '2020-11-30', '2', '11k for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 12:03:14', 7, '2020-11-03 05:22:30', 0, NULL, 1),
(1678, 'Roshini', '11', '9551449760', '', 'roshiniejothi@gmail.com', '1998-06-07', 22, '1', '2', 'Jothi', 'Driver', 180000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2011020014', '', '1', 'upload_files/candidate_tracker/38588760923_0_Resume.pdf', NULL, NULL, '2020-11-03', 0, 'Jobs', '5', '8', '2020-11-09', 151800.00, '11:04 AM', '2', '1970-01-01', '1', 'not okay with bond', '6', '2', '3', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 12:18:55', 7, '2020-11-09 01:36:33', 0, NULL, 1),
(1679, '', '0', '8355953946', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011020015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 12:29:17', 0, NULL, 0, NULL, 1),
(1680, '', '0', '9677297253', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011020016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 12:34:14', 0, NULL, 0, NULL, 1),
(1681, 'BALAJI P', '11', '7904055148', '9629313750', 'balajisanthoshbabu@gmail.com', '1995-12-23', 24, '2', '2', 'Parthasarathy', 'Business', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2011020017', '1', '1', 'upload_files/candidate_tracker/84617071027_Balaji RESUME.pdf', NULL, NULL, '2020-11-03', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 12:56:31', 7, '2020-11-03 05:12:09', 0, NULL, 1),
(1682, 'Dharani babu L', '5', '7395962774', '', 'dharani4246@gmail.com', '1986-11-15', 34, '1', '1', 'Saranya', 'Salarried', 20000.00, 0, 13000.00, 20000.00, 'Chennai City North', 'Chennai City North', '2011020018', '', '2', 'upload_files/candidate_tracker/22970352814_dharani.pdf', NULL, '1', '2021-11-01', 0, 'Jobs', '3', '59', '2021-12-03', 274000.00, '', '4', '2022-02-11', '1', 'Selected for RM Profile - Shanmugam Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Link sent to upload the documents', '', '', '', NULL, NULL, NULL, 1, '2020-11-02 02:40:06', 60, '2021-11-29 03:19:38', 0, NULL, 1),
(1683, 'Thippu Sulthan', '21', '7502760526', '', 'thippusulthan002@gmail.com', '1995-09-26', 25, '1', '2', 'Mohammad Sickandar', 'Business', 20000.00, 1, 10000.00, 15000.00, 'Tirunelveli', 'Chennai', '2011020019', '', '2', 'upload_files/candidate_tracker/68958481419_Thippu Sulthan 1.pdf', NULL, NULL, '2020-11-03', 0, '1', '5', '53', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', 'he know oly windows but expecting high sal', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 02:56:27', 7, '2020-11-03 12:08:53', 0, NULL, 1),
(1684, 'Velmurugan', '21', '9884955488', '9655931012', 'gvelmurugancs1996@gmail.com', '1996-06-12', 24, '2', '2', 'Govindasamy', 'Formar', 13000.00, 3, 13000.00, 15000.00, 'Ariyalur', 'Chennai, vadapalani', '2011020020', '1', '2', 'upload_files/candidate_tracker/89056216882_CVR.docx', NULL, NULL, '2020-11-04', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '3', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 04:44:10', 1, '2020-11-02 04:50:55', 0, NULL, 1),
(1685, '', '0', '8660523315', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011020021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 05:01:15', 0, NULL, 0, NULL, 1),
(1686, 'Yogapriyadharshini N', '11', '9626645097', '', 'yogapriyadharshinin12@gmail.com', '1994-12-24', 25, '2', '1', 'Mr .Varun Priyan. R', 'Societe generale bank', 40000.00, 0, 15000.00, 15000.00, '5/9secomd St,Vedatham colony, Tambaram sanatorium', '5/9secomd St,Vedatham colony, Tambaram', '2011020022', '1', '2', 'upload_files/candidate_tracker/49049952419_cv yogapriya 2020.docx', NULL, NULL, '2020-11-03', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '6', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 05:06:56', 1, '2020-11-02 05:22:34', 0, NULL, 1),
(1687, 'pavithra', '4', '6363025592', '', 'pavisunil711@gmail.com', '1996-05-11', 24, '2', '1', 'sunil raj', 'delivery executive', 40000.00, 0, 24000.00, 24000.00, 'ulssor', 'ulsoor', '2011020023', '7', '2', 'upload_files/candidate_tracker/9119297341_Pavithra-CRM-CAFS.pdf', NULL, NULL, '2020-11-03', 0, '', '3', '8', '2020-11-09', 264000.00, '03:00 PM', '5', '1970-01-01', '2', '22K for Sathish team', '1', '2', '4', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 05:09:49', 7, '2020-11-07 05:52:03', 0, NULL, 1),
(1688, 'Padmavathy', '11', '7395907691', '7358184727', 'sakshisakshi511@gmail.com', '1996-05-11', 24, '3', '2', 'Sankaran', 'Temple priest', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2011020024', '', '1', 'upload_files/candidate_tracker/69578468628_New updated resume.pdf', NULL, NULL, '2020-11-03', 0, '', '5', '8', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'will not suite for REc, her reason for relieving is not convincing.', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-02 06:03:10', 60, '2020-12-24 10:48:10', 0, NULL, 1),
(1689, 'Ashwini Ravi', '4', '6374089477', '', 'Ashwiniravi1121@gmail.com', '1998-11-29', 21, '1', '2', 'Ravi', 'Interior designer', 40000.00, 1, 13000.00, 18000.00, 'Velachery', 'Velachery', '2011020025', '', '2', 'upload_files/candidate_tracker/74462981803_CV_2020-08-20-124806.pdf', NULL, NULL, '2020-11-03', 0, 'Ehrs008', '5', '21', NULL, 0.00, '11:30 AM', '0', NULL, '2', '18k above sal exp , for crm...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 07:09:58', 1, '2020-11-02 07:23:54', 0, NULL, 1),
(1690, '', '0', '8220306474', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011020026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 07:33:00', 0, NULL, 0, NULL, 1),
(1691, '', '0', '8778909027', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011020027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 07:52:46', 0, NULL, 0, NULL, 1),
(1692, '', '0', '9941165713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011030001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 10:28:25', 0, NULL, 0, NULL, 1),
(1693, 'Balamurugan.s', '6', '9344823465', '9489302011', 'balamuruganrsooo@gmail.com', '2000-02-12', 20, '1', '2', 'Shetu.v', 'Farmer', 30000.00, 1, 0.00, 16000.00, 'Kallakurichi', 'Choolai medu', '2011030002', '', '1', 'upload_files/candidate_tracker/25787921555_bala Resume Final.pdf', NULL, NULL, '2020-11-03', 0, '5451', '5', '19', NULL, 0.00, '11:01 AM', '0', NULL, '1', 'looking for Crm', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 10:52:47', 1, '2020-11-03 11:01:57', 0, NULL, 1),
(1694, 'Latha', '13', '7092286353', '9677289220', 'platha343@gmail.com', '1995-05-07', 25, '2', '2', 'Poovan (late)', 'Late', 12000.00, 2, 8000.00, 16000.00, 'Ramanathapuram', 'Chennai', '2011030003', '1', '2', 'upload_files/candidate_tracker/25365267646_Latha_resume.pdf', NULL, NULL, '2020-11-03', 0, '', '3', '8', '2020-11-27', 168000.00, '11:56 AM', '', '1970-01-01', '2', '14k ctc for it', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-03 11:26:55', 1, '2020-11-27 01:28:00', 0, NULL, 1),
(1695, 'K. Rubalakshmi', '4', '7708575871', '8610941130', 'rubysparkle97@gmail.com', '1997-12-24', 22, '2', '2', 'K. Kannan', 'Tailor', 15000.00, 1, 0.00, 12000.00, 'Triplcane', 'Triplcane', '2011030004', '1', '1', 'upload_files/candidate_tracker/22449531211_updated ruby resume .pdf', NULL, NULL, '2020-11-03', 0, '', '5', '21', '1970-01-01', 0.00, '11:38 AM', '', '1970-01-01', '2', 'pronounciation problem , no flow in words', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-03 11:28:54', 58, '2020-12-29 10:01:08', 0, NULL, 1),
(1696, 'Vignesh', '11', '9952849469', '', 'Viki.key.1997@gmail.com', '1997-09-13', 23, '3', '2', 'Sureshkumar', 'Business', 25000.00, 1, 0.00, 15000.00, 'No:204 Shanthi nagar 4th Street chrompet', 'Chennai', '2011030005', '', '1', 'upload_files/candidate_tracker/70206596472_viki,.docx', NULL, NULL, '2020-11-03', 0, '', '5', '8', '1970-01-01', 0.00, '12:05 PM', '', '1970-01-01', '1', 'his pronunciation is not good and will not suite for rec.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 11:51:42', 7, '2020-11-03 12:19:39', 0, NULL, 1),
(1697, 'PERUMAL R', '21', '9345817880', '', 'perumalrathinavel98@gmail.com', '1997-10-12', 23, '2', '2', 'RATHINAVEL', 'Working in HEF GROUPS', 27000.00, 1, 15000.00, 18000.00, 'maraimalaiNagar, chengalpattu-603209 district', 'alaiNagar, chengalpattu-603209 district', '2011030006', '1', '2', 'upload_files/candidate_tracker/74458249496_PERUMAL.pdf', NULL, NULL, '2020-11-03', 0, '', '5', '8', '1970-01-01', 0.00, '11:59 AM', '', '1970-01-01', '1', 'no update for his profile ', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-03 11:52:26', 7, '2020-11-03 12:50:30', 0, NULL, 1),
(1698, 'Brahadeesh Kumar', '11', '9444213249', '', 'cskcpcl@gmail.com', '1998-05-06', 22, '3', '2', 'Suresh kumar', 'Business', 20000.00, 1, 0.00, 10000.00, 'No. 9 munsamy street chrompet chennai', 'Chennai', '2011030007', '', '1', 'upload_files/candidate_tracker/65446790151_brahadeesh sap certified resume.pdf', NULL, NULL, '2020-11-03', 0, '', '3', '8', '2020-11-09', 1518000.00, '12:10 PM', '5', '1970-01-01', '1', '12K for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 12:07:02', 7, '2020-11-08 01:50:57', 0, NULL, 1),
(1699, 'test', '11', '9080902529', '', '', '1991-01-29', 29, '2', '2', 'test', 'test', 25000.00, 2, 0.00, 20000.00, 'kodambakkam', 'chennai', '2011030008', '1', '2', 'upload_files/candidate_tracker/93610049344_Plain.docx', NULL, NULL, '2020-11-03', 30, '', '6', '0', NULL, 0.00, '03:31 PM', '0', NULL, '1', NULL, '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-03 01:31:19', 1, '2020-11-03 03:13:53', 0, NULL, 1),
(1700, 'Vignesh waran', '13', '8760171335', '', 'Iamvickyveerasoft@gmail.com', '1991-05-20', 29, '2', '2', 'Sellakkannu', 'Driver', 15000.00, 1, 40000.00, 60000.00, 'NAGAPATTINAM', 'Chennai', '2011030009', '1', '2', 'upload_files/candidate_tracker/43026990919_Resume (1).pdf', NULL, NULL, '2020-11-04', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-03 02:57:33', 50, '2020-11-04 06:15:53', 0, NULL, 1),
(1701, 'jeni test', '11', '0123456789', '9876543210', 'jungleted0294', '1998-02-08', 22, '1', '2', 'john', 'teacher', 475000.00, 1, 0.00, 15000.00, 'chennai', 'Chennai', '2011030010', '', '1', 'upload_files/candidate_tracker/51619871014_NAUKRI timing.docx', NULL, NULL, '2020-12-03', 0, 'jennifer', '6', '0', NULL, 0.00, '02:46 PM', '0', NULL, '1', NULL, '6', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 03:10:21', 1, '2020-12-03 02:47:05', 0, NULL, 1),
(1702, '', '0', '9962170422', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011030011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 03:17:52', 0, NULL, 0, NULL, 1),
(1703, '', '0', '7397294569', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011030012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 03:27:37', 0, NULL, 0, NULL, 1),
(1704, 'Asha Devi', '11', '8667374810', '9841567052', 'K.ashadevi1997@gmail.com', '1997-09-21', 23, '2', '2', 'Kamaraj', 'Sales man', 180000.00, 1, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2011030013', '1', '1', 'upload_files/candidate_tracker/73032214832_Asha resume.docx', NULL, NULL, '2020-11-04', 0, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '2', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-03 04:49:20', 50, '2020-11-04 06:23:57', 0, NULL, 1),
(1705, '', '0', '9791105651', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011030014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 05:28:47', 0, NULL, 0, NULL, 1),
(1706, 'Jayashanthi', '5', '9384188127', '9941107705', 'Jayashanthi57@gmail.com', '1998-02-08', 23, '2', '2', 'Gandhimathi', 'Working', 14000.00, 1, 13000.00, 15000.00, 'Kotivakam', 'Kotivakam', '2011030015', '1', '2', 'upload_files/candidate_tracker/64695902528_CV-JAYASHANTHI.pdf', NULL, '1', '2021-07-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-03 06:13:13', 1, '2021-07-13 11:05:49', 0, NULL, 1),
(1707, '', '0', '8072424163', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011030016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 06:15:14', 0, NULL, 0, NULL, 1),
(1708, 'Anuja', '6', '9597637140', '7305690845', 'Anuja.sjm1998@gmail.com', '1998-07-17', 22, '2', '2', 'Pannir selvam M', 'Telecaller', 25000.00, 4, 13000.00, 16000.00, '13 pudhu colony Elavanasurkottai villupuram 607202', '47 ranga street, tambaram sanatorium Chennai 47', '2011030017', '3', '2', 'upload_files/candidate_tracker/78854589527_Anuja .pdf', NULL, NULL, '2020-11-04', 0, '', '5', '19', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'not fit for sale', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 06:47:49', 7, '2020-11-04 11:41:51', 0, NULL, 1),
(1709, 'Suganya s', '11', '9080142448', '7358164548', 'swethadazzling22@gmail.com', '1996-11-22', 23, '3', '2', 'Sankar.s', 'Harbor contractor', 100000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2011030018', '', '2', 'upload_files/candidate_tracker/97311920825_Suganya.docx', NULL, NULL, '2020-11-05', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 08:33:22', 50, '2020-11-05 06:12:50', 0, NULL, 1),
(1710, '', '0', '8925600360', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011030019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 09:08:21', 0, NULL, 0, NULL, 1),
(1711, 'TAMILARASAN', '6', '8072259468', '', 'Mtamilarasan70@gmail.com', '1997-10-13', 23, '1', '2', 'Murugan', 'Daily wages', 9000.00, 2, 13700.00, 18000.00, 'Chengalpet', 'Chengalpet,padalam', '2011040001', '', '2', 'upload_files/candidate_tracker/95718964305_Tamilarasan.pdf', NULL, NULL, '2020-11-04', 0, '2011040001', '6', '0', NULL, 0.00, '03:00 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 08:13:39', 1, '2020-11-04 08:22:58', 0, NULL, 1),
(1712, 'tarwin sa', '21', '9159650110', '', 'tarwin.mani@gmail.com', '1995-05-18', 25, '2', '2', 'allexander s', 'dinamalar - reporter', 30000.00, 1, 0.00, 15000.00, 'vadugarpet - trichy', 'guindy - chennai', '2011040002', '1', '1', 'upload_files/candidate_tracker/62389012683_Resume_tarwin.pdf', NULL, NULL, '2020-11-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 11:18:57', 50, '2020-11-05 05:47:03', 0, NULL, 1),
(1713, 'Ameer Sulthan S', '6', '9791142952', '9710472994', 'ameersulthan3896@gmail.com', '1996-08-07', 24, '2', '2', 'Dilshed bagum D', 'House keeper', 3000.00, 0, 10000.00, 15000.00, 'Chennai', 'Chennai', '2011040003', '1', '2', 'upload_files/candidate_tracker/71781356255_AMEER NEW RESUME UPDATED 21-04-19.docx', NULL, NULL, '2020-11-04', 0, '', '5', '57', '1970-01-01', 0.00, '12:45 PM', '', '1970-01-01', '2', 'he is not good for sales .. voice is not clear ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 11:45:30', 7, '2020-11-04 01:49:02', 0, NULL, 1),
(1714, 'Abdul Rehman', '6', '9092058959', '', 'abdulrehman85509@gmail.com', '1999-07-07', 21, '1', '2', 'Umar Farook', 'Nil', 20000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2011040004', '', '2', 'upload_files/candidate_tracker/33278495342_Document (2).pdf', NULL, NULL, '2020-11-04', 0, '2506', '3', '8', '2020-11-09', 204000.00, '11:56 AM', '3', '2021-01-02', '2', '17K for kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 11:52:56', 7, '2020-11-07 05:51:20', 0, NULL, 1),
(1715, 'Jeevitha', '4', '9944959159', '', 'Kaavijeeva1987@gmail.com', '1992-01-06', 28, '2', '2', 'Sekar v', 'Farmer', 10000.00, 2, 0.00, 10000.00, 'Thiruthuraipoondi', 'Koyambedu', '2011040005', '1', '1', 'upload_files/candidate_tracker/4692813701_Jeevitha_S_Updated(1)(1)(1).pdf', NULL, NULL, '2020-11-04', 0, '', '5', '21', NULL, 0.00, '12:03 PM', '0', NULL, '2', 'already rejected candidate', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 12:00:27', 1, '2020-11-04 12:04:25', 0, NULL, 1),
(1716, 'Annamalai Rupesh Kumar', '5', '8939434609', '', 'tharun12317@gmail.com', '1993-05-19', 27, '2', '2', 'Ramesh kumar', 'Cheif mechanic', 70000.00, 1, 20000.00, 20000.00, 'Chennai', 'Chennai', '2011040006', '1', '2', 'upload_files/candidate_tracker/36127499973_1601651880301_Annamalai', NULL, NULL, '2020-11-04', 0, '', '3', '8', '2020-11-16', 258000.00, '12:21 PM', '5', '1970-01-01', '1', '21.5K for lokesh team', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 12:16:34', 7, '2020-11-12 03:51:51', 0, NULL, 1),
(1717, 'B. abirami', '13', '7092670953', '7339221198', 'abisharm2001@gmail.com', '1995-09-20', 25, '2', '2', 'V. Babu', 'Mason', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2011040007', '1', '1', 'upload_files/candidate_tracker/71822991031_Abi resume-converted.pdf', NULL, NULL, '2020-11-05', 0, '', '5', '27', '1970-01-01', 0.00, '10:31 AM', '', '1970-01-01', '2', 'Task Incompleted.', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 01:05:51', 50, '2020-11-05 10:37:01', 0, NULL, 1),
(1718, 'Praveenraj', '13', '9600666387', '8148615843', 'praveenrajgold96@gmail.com', '1996-05-04', 24, '2', '2', 'Thangaraj', 'Farmer\'s', 10000.00, 1, 0.00, 10000.00, 'Tiruvannamalai', 'Chennai', '2011040008', '1', '1', 'upload_files/candidate_tracker/39842517080_praveenraj php.pdf', NULL, NULL, '2020-11-04', 0, '', '5', '28', NULL, 0.00, '01:22 PM', '0', NULL, '1', 'Not strong in Basic Php skills', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 01:10:28', 1, '2020-11-04 01:16:00', 0, NULL, 1),
(1719, 'Vigneshwari M', '11', '9894581477', '7397458175', 'vigneshwarimani08@gmail.com', '1997-08-23', 23, '2', '2', 'P. K. Mani', 'Farmer', 25000.00, 3, 0.00, 15000.00, 'Pennakonam, Perambalure (D. t)', 'Nagalakshmi Salai, Pallavaram, Chennai', '2011040009', '1', '1', 'upload_files/candidate_tracker/27126759769__Vigneshwari resume07.docx', NULL, NULL, '2020-11-05', 0, '', '5', '8', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'will not join bcoz of bond', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2020-11-04 01:38:53', 60, '2020-12-24 10:49:21', 0, NULL, 1),
(1720, 'Rehan maniyar', '5', '8310281258', '8904401724', 'rehaanmaniyar1234@gmail.com', '1994-07-08', 26, '1', '2', 'Riyaz maniyar', 'Business man', 40000.00, 1, 0.00, 25000.00, 'Sultanpalya main road banglore', 'Sultanpalya main Road banglore', '2011040010', '', '1', 'upload_files/candidate_tracker/18752348439_mba 2019 resume_09-Dec-19_16.27.57.docx', NULL, NULL, '2020-11-04', 0, '5326', '5', '8', NULL, 0.00, '01:30 PM', '0', NULL, '1', 'no response', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 01:52:35', 1, '2020-11-04 02:18:58', 0, NULL, 1),
(1721, 'k.vijaya kumar', '4', '9944022573', '8220297909', 'kv2902@gmail.com', '1996-02-29', 24, '2', '2', 'father kanni kumar', 'cooli', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2011040011', '1', '1', 'upload_files/candidate_tracker/22455459887_update resume K. VIJAYA KUMAR.doc', NULL, NULL, '2020-11-04', 0, '', '5', '21', '1970-01-01', 0.00, '02:01 PM', '', '1970-01-01', '2', 'he worked at hotel industry .. he is not sui ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 01:56:00', 50, '2020-11-04 02:55:04', 0, NULL, 1),
(1722, 'Sriniketh V', '20', '8778374880', '', 'sriniketh.vr@gmail.com', '1997-05-01', 23, '2', '2', 'Venkatesh R', 'Fresher', 100000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2011040012', '1', '1', 'upload_files/candidate_tracker/54403976303_Resume-CV- 2020-11-04.pdf', NULL, NULL, '2020-11-05', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 02:26:23', 50, '2020-11-05 06:12:59', 0, NULL, 1),
(1723, '', '0', '6382760058', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011040013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 03:10:03', 0, NULL, 0, NULL, 1),
(1724, '', '0', '9361453182', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011040014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 04:59:22', 0, NULL, 0, NULL, 1),
(1725, 'rosheni', '11', '9840096863', '9840788248', 'riyarosh04@gmail.com', '1998-07-04', 22, '1', '2', 'venkata subramaniam', 'financial Consultant', 80000.00, 1, 0.00, 20000.00, 'vadapalani', 'Vadapalani', '2011040015', '', '1', 'upload_files/candidate_tracker/96586589074_resume 1-converted.pdf', NULL, NULL, '2020-11-05', 0, 'Levelup STC', '3', '8', '2020-11-09', 151800.00, '11:00 AM', '5', '1970-01-01', '2', '12k for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 05:50:29', 7, '2020-11-09 01:35:43', 0, NULL, 1),
(1726, 'Shipravani RH', '11', '9080468402', '', 'shipravanirh@gmail.com', '1997-10-02', 23, '2', '2', 'Harianandan RK', 'Retired JE', 16000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2011040016', '1', '1', 'upload_files/candidate_tracker/86493201261_Shipravani R H (RESUME).pdf', NULL, NULL, '2020-11-05', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not join long distance.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 06:00:38', 50, '2020-11-05 10:25:50', 0, NULL, 1),
(1727, 'divya arun prabhakaran', '11', '9344264506', '', 'divya.srinivasan1606@gmail.com', '1996-06-16', 24, '3', '1', 'arun prabhakaran', 'senior sales advisor', 25000.00, 1, 0.00, 18000.00, 'tambaram', 'Tambaram', '2011040017', '', '1', 'upload_files/candidate_tracker/56434204962_Divya8.resume(1).pdf', NULL, NULL, '2020-11-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 06:07:31', 50, '2020-11-05 06:13:06', 0, NULL, 1),
(1728, 'Aparnna PR', '5', '9941247307', '9080142358', 'aparnna.pr1@gmail.com', '1985-11-07', 34, '1', '1', 'P Ramachandran', 'Retired', 2000.00, 2, 490000.00, 650000.00, 'Selaiyur', 'Selaiyur', '2011040018', '', '2', 'upload_files/candidate_tracker/85337348834_Aparnna PR - Resume.docx', NULL, NULL, '2020-11-05', 0, 'Jayakumar, levelup consultancy', '8', '', '1970-01-01', 0.00, '11:33 AM', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 06:08:51', 50, '2020-11-05 06:13:16', 0, NULL, 1),
(1729, 'K.Elakya', '11', '9941060620', '8838086990', 'elakyaraj94@gmail.com', '1994-12-03', 25, '1', '2', 'R.Kanagaraj', 'Clearing clerk', 10000.00, 2, 25000.00, 30000.00, 'Tambaram', 'Tambaram', '2011040019', '', '2', 'upload_files/candidate_tracker/69959837587_Elakya Resume.docx', NULL, NULL, '2020-11-05', 0, 'Levelup STC', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'No relevant experience, but expected 30k', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 06:14:27', 50, '2020-11-05 12:33:45', 0, NULL, 1),
(1730, 'Madhan S', '11', '7010541810', '', 'madhankrish48@gmail.com', '1995-10-19', 25, '2', '2', 'Suresh KB', 'clerk', 20000.00, 0, 17500.00, 20000.00, 'Chennai', 'Chennai', '2011040020', '1', '2', 'upload_files/candidate_tracker/52807821988_MadhanS_TalentAcquisitionIT.pdf', NULL, NULL, '2020-11-05', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 06:48:10', 1, '2020-11-04 06:54:27', 0, NULL, 1),
(1731, 'KEERTHANA RAMESH', '11', '6382949037', '6383242188', 'keerthurmsh@gmail.com', '1999-01-24', 21, '2', '2', 'Ramesh', 'Auto driver', 20000.00, 1, 13300.00, 15000.00, 'Chennai', 'Chennai', '2011040021', '1', '2', 'upload_files/candidate_tracker/49033556512_RESUME.pdf', NULL, NULL, '2020-11-05', 3, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2020-11-04 07:02:14', 60, '2020-12-24 10:50:06', 0, NULL, 1),
(1732, 'amana salih navas', '11', '8129579696', '', '', '1997-02-16', 23, '2', '1', 'aboobacker siddique', 'general manager', 50000.00, 2, 0.00, 25000.00, 'chennai', 'chennai', '2011040022', '13', '1', 'upload_files/candidate_tracker/59051501966_160275759505739.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '59', '1970-01-01', 0.00, '01:30 PM', '', '1970-01-01', '2', 'Will not sustain for a long', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 10:47:34', 7, '2020-11-07 03:42:41', 0, NULL, 1),
(1733, 'Nivetha V', '11', '7558158611', '9597239122', 'nivethavjkumar@gmail.com', '1997-09-09', 23, '2', '2', 'Vijayakumar J', 'Building contractor', 30000.00, 1, 18000.00, 20000.00, 'Urapaakam', 'Urapaakam', '2011040023', '1', '2', 'upload_files/candidate_tracker/13958751011_CV.pdf', NULL, '1', '2022-04-29', 0, '', '5', '59', NULL, 0.00, '02:00 PM', '0', NULL, '2', 'Communication ok, Too long Distance she is  from urapakkam around 56 KMS up and down, she left the previous exp due to the long distance(Teynampet),will not sustain for a long,have a plan to go with PHD in abroad', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2020-11-04 11:21:40', 1, '2022-04-28 02:01:41', 0, NULL, 1),
(1734, 'Uma T', '11', '9789960155', '7550135708', 'Uma.thangaiyan@Gmail.Com', '1992-09-15', 28, '2', '1', 'Sathish', 'Accounting and finance', 100000.00, 1, 250000.00, 330000.00, 'Chennai', 'Chennai', '2011040024', '13', '2', 'upload_files/candidate_tracker/53395207807_Uma_Resume-converted.pdf', NULL, NULL, '2020-11-06', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'will not join, exp is 21 TH', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 11:44:15', 50, '2020-11-06 01:03:12', 0, NULL, 1),
(1735, '', '0', '9176244232', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011050001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 12:20:59', 0, NULL, 0, NULL, 1),
(1736, 'Sai rubini', '11', '9677016529', '', 'saisweety1108@gmail.com', '1997-08-11', 23, '2', '2', 'Baskaran s', 'Electrician', 30000.00, 1, 0.00, 15000.00, '11/162L.B.S street, G.K.Mcolony, Chennai-82', 'Chennai', '2011050002', '1', '1', 'upload_files/candidate_tracker/19526817298_sairubini resume.docx', NULL, NULL, '2020-11-06', 0, '', '5', '53', '1970-01-01', 0.00, '12:01 PM', '', '1970-01-01', '1', 'fresher,  not fir for recruiter', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 01:24:28', 50, '2020-11-06 01:28:55', 0, NULL, 1),
(1737, 'Karthick', '11', '8778429892', '7299631422', 'smartkarthick5894@gmail.com', '1994-08-05', 26, '2', '2', 'Nandhakumar.r', 'Police', 45000.00, 3, 0.00, 18000.00, 'Chennai', 'Chennai', '2011050003', '13', '1', 'upload_files/candidate_tracker/60440315174_final resume-converted.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Exp salary is high and already holds 2 offer', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 05:29:03', 50, '2020-11-07 01:24:03', 0, NULL, 1),
(1738, '', '0', '7892897328', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011050004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 09:47:12', 0, NULL, 0, NULL, 1),
(1739, 'Sabasteen kumar', '5', '9884496292', '9962010217', 'Sabasteenhaaj@gmail.com', '1991-08-13', 29, '2', '2', 'Sekar', 'Retired', 26000.00, 1, 300000.00, 400000.00, 'Cuddalore', 'Chennai', '2011050005', '3', '2', 'upload_files/candidate_tracker/88937071724_Resume_Sabasteen-2020.pdf', NULL, NULL, '2020-11-05', 15, '', '8', '44', NULL, 0.00, '11:06 AM', '0', NULL, '1', 'Please check with him', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 10:53:17', 1, '2020-11-05 11:08:35', 0, NULL, 1),
(1740, 'Hariharan C B', '4', '9789831807', '', 'thecbhari@gmail.com', '1997-10-06', 23, '2', '2', 'Bala Subramanian.C.S', 'Business', 20000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2011050006', '1', '1', 'upload_files/candidate_tracker/61430063391_RESUME _cb2020(sept).pdf', NULL, NULL, '2020-11-06', 0, '', '5', '21', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'expecting 18 k for crm', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 10:57:49', 50, '2020-11-06 05:54:39', 0, NULL, 1),
(1741, 'Daniel Sylvester', '11', '6383028204', '7299805329', 'sylvesterdaniel77@gmail.com', '1994-07-01', 26, '2', '1', 'Kezia karolina', 'Teacher', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2011050007', '1', '1', 'upload_files/candidate_tracker/48718267494_Updated Resume new.docx', NULL, NULL, '2020-11-06', 0, '', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'he s thnking for bond', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 11:52:16', 1, '2020-11-05 11:58:31', 0, NULL, 1),
(1742, 'Suganthi', '11', '9791437567', '9080678018', 'blessyspark24@yahoo.com', '1994-06-24', 26, '2', '2', 'MUNUSAMY', 'Driver', 40000.00, 0, 14175.00, 17000.00, 'CHENNAI', 'CHENNAI', '2011050008', '1', '2', 'upload_files/candidate_tracker/1984606009_0_SuganthiM _Recruitment consultant _RESUME.docx', NULL, NULL, '2020-11-06', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 12:05:47', 50, '2020-11-06 06:10:11', 0, NULL, 1),
(1743, 'Ramesh M', '11', '9840974005', '9080787645', 'ramesh98409740@gmail.com', '1998-03-12', 22, '2', '2', 'Mohan k', 'Barbershop', 25000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2011050009', '1', '1', 'upload_files/candidate_tracker/91128191619_my resume-converted.pdf', NULL, NULL, '2020-11-06', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Lake of communication, no confidence on speech', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 12:17:21', 50, '2020-11-06 10:51:40', 0, NULL, 1),
(1744, 'Gokul D', '6', '6381592451', '9445750823', 'gokul08761@gmail.com', '1996-08-13', 24, '2', '2', 'DuraiRaju', 'Icf', 15000.00, 1, 12000.00, 12000.00, 'Kolathur, Chennai', 'Kolathur, Chennai', '2011050010', '1', '2', 'upload_files/candidate_tracker/92531424730_GOKUL.pdf', NULL, NULL, '2020-11-05', 3, '', '5', '20', '1970-01-01', 0.00, '12:38 PM', '', '1970-01-01', '1', 'didnt respond for Telephonic interview', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 12:36:46', 50, '2020-11-05 12:50:45', 0, NULL, 1),
(1745, '', '0', '7708045413', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011050011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 01:04:58', 0, NULL, 0, NULL, 1),
(1746, 'B. Padma', '4', '9940566807', '', 'Pp8880094@Gmail.com', '2000-01-06', 20, '2', '2', 'P. Balaraman', 'Daily wager', 10000.00, 2, 0.00, 13000.00, 'N0.6/7, MGR Nagar Main road, Kovilambakam, Ch-129', 'N0.6/7, MGR Nagar Main Road, Kovilambakam, Ch-129', '2011050012', '1', '1', 'upload_files/candidate_tracker/71487300617_Padhma.pdf', NULL, NULL, '2020-11-05', 0, '', '5', '14', NULL, 0.00, '01:16 PM', '0', NULL, '2', 'not fit for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 01:06:19', 1, '2020-11-05 01:19:58', 0, NULL, 1),
(1747, 'K. Priyadharshni', '11', '8838219018', '8608203234', '', '1999-06-20', 21, '2', '2', 'R.Karthikeyan', 'Office admin', 50000.00, 0, 0.00, 15000.00, 'Ayapakkam', 'Ayapakkam', '2011050013', '1', '1', 'upload_files/candidate_tracker/41571503495_pd resume.docx', NULL, NULL, '2020-11-06', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 01:20:21', 50, '2020-11-06 06:10:23', 0, NULL, 1),
(1748, 'Rohini. P', '4', '6385103789', '', 'Rohinirohini22092@Gmail.com', '2000-04-19', 20, '2', '2', 'Planner Selvam. S', '100000', 10000.00, 2, 0.00, 13000.00, 'Perumbakkam', 'Chrompet', '2011050014', '1', '1', 'upload_files/candidate_tracker/1086383594_Rohi.pdf', NULL, NULL, '2020-11-05', 0, '', '5', '14', NULL, 0.00, '01:31 PM', '0', NULL, '2', 'looking for non voice or data entry .not suitable for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 01:21:57', 1, '2020-11-05 01:36:37', 0, NULL, 1),
(1749, 'Divya', '11', '7092417020', '', '', '1994-04-08', 26, '2', '2', 'Balakrishnan', 'Private gym manager', 40000.00, 1, 15000.00, 15000.00, 'Velachery', 'Madipakkam', '2011050015', '1', '2', 'upload_files/candidate_tracker/12046566046_Divya L B .pdf', NULL, NULL, '2020-11-06', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 02:31:30', 50, '2020-11-06 06:10:32', 0, NULL, 1),
(1750, 'Abdul nizamuddin Thoula', '20', '6383830556', '9500160655', 'mazinaalam@gmail.com', '1985-03-28', 35, '1', '1', 'Meeran mohideen', 'Sales', 40000.00, 0, 30000.00, 30000.00, 'Chennai', 'Chennai', '2011050016', '', '2', 'upload_files/candidate_tracker/38774486990_Nizam 2019 DEC 1.docx', NULL, NULL, '2021-02-11', 3, 'N', '8', '', '1970-01-01', 0.00, '10:33 AM', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-05 03:04:47', 50, '2021-02-11 04:44:47', 0, NULL, 1),
(1751, 'Encilatra Rajesh', '11', '7397458253', '', 'encilatra26@gmail.com', '1999-01-26', 21, '2', '2', 'rajesh', 'business', 30000.00, 1, 12000.00, 15000.00, 'madipakkam', 'madipakkam', '2011050017', '1', '2', 'upload_files/candidate_tracker/85145443061_Updated.pdf', NULL, NULL, '2020-11-06', 0, '', '3', '8', '2020-11-09', 151800.00, '11:00 AM', '5', '1970-01-01', '2', '12K for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 03:35:44', 1, '2020-11-07 06:26:21', 0, NULL, 1),
(1752, 'Sunitha S', '11', '7010537064', '', 'Sunithasuresh41292@gmail.com', '1992-12-04', 27, '2', '1', 'Naveenkumar k', 'Admin Executive', 18000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2011050018', '1', '2', 'upload_files/candidate_tracker/48160766997_sunitha resume.pdf', NULL, NULL, '2020-11-07', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 03:52:33', 50, '2020-11-06 06:08:44', 0, NULL, 1),
(1753, 'Dharanidharan', '11', '6374082715', '9659499878', 'dharaniece097@gmail.com', '1997-02-27', 23, '2', '2', 'Krishnamoorthy', 'Weaver', 40000.00, 1, 12000.00, 15000.00, 'No.2/198, saliyar street, Mokshakulam, Villupuram.', 'Creative homes, mudichur road, Tambaram.', '2011050019', '1', '2', 'upload_files/candidate_tracker/91541400408_dharanresumeupdated2.1.docx', NULL, NULL, '2020-11-06', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 04:14:47', 1, '2020-11-05 04:22:02', 0, NULL, 1),
(1754, '', '0', '9940157642', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011050020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 05:55:55', 0, NULL, 0, NULL, 1),
(1755, 'kishore', '5', '7871747409', '', 'kishore.bking@gmail.com', '1994-03-19', 26, '2', '2', 'Subramanian', 'Factory incharge', 40000.00, 0, 0.00, 27000.00, 'Chennai', 'Chennai', '2011050021', '3', '2', 'upload_files/candidate_tracker/34621841683_My Resume 2020- November .pdf', NULL, NULL, '2020-11-06', 0, '', '8', '29', NULL, 0.00, '12:07 PM', '0', NULL, '1', 'i have not met, dropped candidate ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 11:59:53', 1, '2020-11-06 12:08:31', 0, NULL, 1),
(1756, 'Dhayani', '11', '7338974695', '', 'dhayadevdd@gmail.com', '1996-06-05', 24, '2', '2', 'Devaraj', 'Welder', 30000.00, 1, 20000.00, 23000.00, 'Chennai', 'Chennai', '2011060001', '1', '2', 'upload_files/candidate_tracker/25092403200_dhayani resume pg.docx', NULL, NULL, '2020-11-06', 0, '', '5', '53', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'Not fir for this profile', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 12:33:51', 50, '2020-11-06 01:04:38', 0, NULL, 1),
(1757, 'Deepika harish', '11', '8056090404', '8925290906', 'rathinadeepika89@gmail.com', '1989-05-19', 31, '2', '1', 'harish', 'manager', 35000.00, 1, 216000.00, 312000.00, 'Chennai', 'Chennai', '2011060002', '13', '2', 'upload_files/candidate_tracker/32404444417_H.DEEPIKA.pdf', NULL, NULL, '2020-11-06', 0, '', '5', '53', '1970-01-01', 0.00, '01:30 PM', '', '1970-01-01', '1', 'sustainability issue, 4yrs gap, UG, 21k demanding', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 09:01:12', 50, '2020-11-06 01:04:12', 0, NULL, 1),
(1758, 'N. Blessin Vimala', '11', '9840170590', '', 'Blessinvimala91@gmail.com', '1991-02-20', 29, '2', '1', 'A. Johnson', 'Team monitor-Operations', 20000.00, 0, 19000.00, 21000.00, '61/2 Adam shahib street', 'Chennai', '2011060003', '1', '2', 'upload_files/candidate_tracker/17012209908_Blessin Vimala N--Updated.docx', NULL, NULL, '2020-11-06', 0, '', '5', '53', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'no relevant experience', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 09:15:40', 50, '2020-11-06 01:12:57', 0, NULL, 1),
(1759, 'Vaishali Srinivasan', '11', '9710666955', '', 'vichitrasri1692@gmail.com', '1992-10-16', 28, '2', '1', 'umeshwar', 'cts', 150000.00, 0, 375000.00, 550000.00, 'chennai', 'chennai', '2011060004', '1', '2', 'upload_files/candidate_tracker/61415028051_VAISHALI SRINIVASAN- Resume.docx', NULL, NULL, '2020-11-07', 60, '', '5', '59', NULL, 0.00, '01:52 PM', '0', NULL, '1', 'Not ready for bond. High CTC exp,60 days notice', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 10:00:47', 1, '2020-11-07 01:52:44', 0, NULL, 1),
(1760, '', '0', '8072432063', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011060005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 10:15:05', 0, NULL, 0, NULL, 1),
(1761, 'SELVA GOPAL G', '11', '9840246238', '8248039520', 'selvagopal84@gmail.com', '1984-05-25', 36, '2', '1', 'Gopal G', 'BUSINESS', 45000.00, 3, 45000.00, 50000.00, 'Madurai, Thirumangalam', 'Santhosa Puram , Chennai', '2011060006', '1', '2', 'upload_files/candidate_tracker/23532085208_Resume.docx', NULL, NULL, '2020-11-06', 15, '', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'not suit for our expectation', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 10:50:10', 1, '2020-11-06 11:05:39', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1762, 'pravin kumar', '11', '9840382864', '', 'pravinfreddy94@gmail.com', '1994-05-04', 26, '2', '2', 'mahalingam / late', 'supervisor', 40000.00, 2, 22000.00, 30000.00, 'poonamallee', 'poonamallee', '2011060007', '13', '2', 'upload_files/candidate_tracker/63758742636_Pravin kumar RESUME.docx', NULL, NULL, '2020-11-07', 0, '', '6', '0', NULL, 0.00, '01:30 PM', '0', NULL, '1', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 11:04:50', 1, '2020-11-06 11:11:28', 0, NULL, 1),
(1763, 'Ranjith Kumar B', '11', '9094193102', '', 'ranjithsmartboy2@gmail.com', '1993-12-22', 26, '2', '2', 'Babu', 'Not working', 23200.00, 0, 23200.00, 25500.00, 'CHENNAI', 'CHENNAI', '2011060008', '13', '2', 'upload_files/candidate_tracker/9564389414_RK-HR.docx', NULL, NULL, '2020-11-07', 15, '', '5', '8', NULL, 0.00, '11:30 AM', '0', NULL, '1', 'SAlary exp is high and already holds 2 offer.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 11:27:08', 1, '2020-11-06 11:32:49', 0, NULL, 1),
(1764, 'S Arulraj', '4', '8220695249', '', 'arul1893@gmail.com', '1993-06-30', 27, '1', '2', 'Sekaran', 'Retired person', 15.00, 1, 12.00, 14.00, 'Mannargudi', 'Pallikarunai', '2011060009', '', '2', 'upload_files/candidate_tracker/49380637544_Resume Arul.- SLS.pdf', NULL, NULL, '2020-11-06', 0, '5644', '5', '14', NULL, 0.00, '11:34 AM', '0', NULL, '1', 'Already working in non voice process only and not suitable for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 11:31:08', 1, '2020-11-06 11:38:36', 0, NULL, 1),
(1765, 'Revathi.S', '4', '9787565329', '', 'revathisankar44@gmail.com', '1999-04-04', 21, '2', '2', 'S.umamashewari', 'Housekeeping', 10000.00, 1, 0.00, 15000.00, 'Ammaiyagaram, chinnasalem', 'Alandur, Chennai', '2011060010', '1', '1', 'upload_files/candidate_tracker/51374157330_REVATHI SIVASANKARAN.docx', NULL, NULL, '2020-11-06', 0, '', '3', '8', '1970-01-01', 126000.00, '11:36 AM', '2', '1970-01-01', '2', '10.5K for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 11:32:22', 7, '2020-11-07 05:50:31', 0, NULL, 1),
(1766, 'Gayathri.V', '4', '8778708498', '9941804994', 'gayathrivelu2901@gmai.com', '1999-01-29', 21, '2', '2', 'Velu.C', 'Accountant', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011060011', '1', '1', 'upload_files/candidate_tracker/37931648708_GAYU RESUME-1.pdf', NULL, NULL, '2020-11-06', 0, '', '5', '13', NULL, 0.00, '11:50 AM', '0', NULL, '2', 'ok but long distance', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 11:33:18', 1, '2020-11-06 11:51:29', 0, NULL, 1),
(1767, 'r.bhuvana', '11', '7010881298', '9176697527', 'bhuvanalovely@gmail.com', '1988-03-08', 32, '2', '1', 'c.mohan', 'civil', 50000.00, 0, 30000.00, 30000.00, 'pallavaram', 'pallavaram', '2011060012', '13', '2', 'upload_files/candidate_tracker/70404097846_Bhuvana. R.docx', NULL, NULL, '2020-11-07', 0, '', '5', '59', NULL, 0.00, '12:12 PM', '0', NULL, '1', 'High CTC exp. Hold 1 offer', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 12:01:24', 1, '2020-11-07 12:28:20', 0, NULL, 1),
(1768, 'Sheeba clarin C', '11', '8672432063', '', 'sheebaclarin@gmail.com', '1993-05-18', 27, '2', '2', 'Clarence.M', 'Tailor', 10000.00, 1, 274000.00, 400000.00, 'Chennai', 'Chennai', '2011060013', '13', '2', 'upload_files/candidate_tracker/50474983322_Resume.pdf', NULL, NULL, '2020-11-06', 0, '', '5', '53', NULL, 0.00, '12:08 PM', '0', NULL, '2', 'gud communication, not o wit bond', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 12:03:08', 1, '2020-11-06 12:09:12', 0, NULL, 1),
(1769, 'Vijayalakshmi', '11', '9710672387', '', 'vijayalakshmijayabaland25@gmail.com', '1998-11-25', 21, '2', '2', 'Jayabalan', 'Artist', 20000.00, 2, 10000.00, 10000.00, 'tank Bund Road, Otteri, Chennai-12', 'Chennai', '2011060014', '1', '2', 'upload_files/candidate_tracker/26170606012_My resume-3.docx', NULL, NULL, '2020-11-07', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 12:11:04', 1, '2020-11-06 12:30:01', 0, NULL, 1),
(1770, 'Tamilarasan', '6', '9962928029', '8428308230', 'tamizhmanoj7@gmail.com', '1997-11-24', 22, '2', '2', 'Manoharab', 'own business', 50000.00, 2, 16500.00, 20000.00, 'Chennai', 'Chennai', '2011060015', '1', '2', 'upload_files/candidate_tracker/70732442907_Adobe Scan 06 Nov 2020 (3).pdf', NULL, NULL, '2020-11-06', 0, '', '3', '8', '2020-11-19', 252000.00, '12:39 PM', '5', '1970-01-01', '1', 'with esi and pf for gk team.', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 12:12:46', 7, '2020-11-18 06:09:03', 0, NULL, 1),
(1771, 'p clement prince', '11', '9176272502', '', 'clementprince37@gmail.com', '1998-11-13', 21, '1', '2', 's prabhu', 'icf employee', 700000.00, 0, 0.00, 22000.00, 'chennai', 'chennai', '2011060016', '', '1', 'upload_files/candidate_tracker/83326524573_08AFD418-6D29-4E57-AD17-127CE2729386-converted.pdf', NULL, NULL, '2020-11-07', 0, '66673', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 12:12:57', 1, '2020-11-06 12:26:36', 0, NULL, 1),
(1772, 'nivedha j', '11', '9840515365', '', 'nivedha1597@gmail.com', '1991-09-15', 29, '2', '2', 'joseph s', 'retired police', 500000.00, 1, 25000.00, 28000.00, 'chennai', 'chennai', '2011060017', '1', '2', 'upload_files/candidate_tracker/84188973734_Nivedha (1).doc', NULL, NULL, '2020-11-07', 10, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '1', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 12:18:10', 1, '2020-11-06 03:05:53', 0, NULL, 1),
(1773, '', '0', '7358302027', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011060018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 12:27:12', 0, NULL, 0, NULL, 1),
(1774, 'Alka mary xaxa', '11', '8939659864', '', 'alkamary15@gmail.com', '1993-04-15', 27, '2', '2', 'Robert xaxa', 'Retd. Govt. Servant', 30000.00, 2, 0.00, 30000.00, 'Port blair, A & N Islands', 'Velachery, Chennai', '2011060019', '1', '1', 'upload_files/candidate_tracker/31362957368_UPDATED RESUME.docx', NULL, NULL, '2020-11-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'no local lang and exp salary is 28K. fresher for HR', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 12:31:44', 50, '2020-11-07 10:52:49', 0, NULL, 1),
(1775, 'Saravanan', '11', '7010380249', '9551022748', 'Saravanankanagaraj7@gmail.com', '1997-08-22', 23, '2', '2', 'Kanagaraj', 'Auto Driver', 30000.00, 1, 0.00, 16000.00, 'Anna nagar', 'Anna nagar', '2011060020', '1', '1', 'upload_files/candidate_tracker/89260530623_Resume-converted.docx', NULL, NULL, '2020-11-06', 0, '', '5', '53', '1970-01-01', 0.00, '12:45 PM', '', '1970-01-01', '1', 'sustainability issue', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 12:40:17', 50, '2020-11-06 02:48:31', 0, NULL, 1),
(1776, 'Saidharan', '6', '9398145371', '', 'saisaidharani8@gmail.com', '1998-09-29', 22, '2', '2', 'Radhakrishna', 'late.', 20000.00, 2, 0.00, 15000.00, 'chittoor', 'kodambakam', '2011060021', '2', '1', 'upload_files/candidate_tracker/37635397532_S R SAI DHARANI-1.docx', NULL, NULL, '2020-11-06', 0, '', '5', '19', '1970-01-01', 0.00, '12:55 PM', '', '1970-01-01', '1', 'not even try to convince', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 12:50:12', 50, '2020-11-06 01:05:44', 0, NULL, 1),
(1777, 'Abarna S Nair', '11', '9442593607', '7418638661', 'abarnanair11@gmail.com', '1996-05-13', 24, '2', '1', 'Sabarish', 'Business development Manager', 35000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2011060022', '1', '1', 'upload_files/candidate_tracker/86631965451_Abarna Resume.docx', NULL, NULL, '2020-11-07', 0, '', '3', '8', '2020-11-16', 151800.00, '12:00 PM', '5', '1970-01-01', '1', '12K for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 01:11:56', 7, '2020-11-12 03:45:50', 0, NULL, 1),
(1778, 'Leandan', '11', '6374463651', '', 'ehasleandan1995@gmail.com', '1995-04-03', 25, '2', '2', 'Joseph', 'Farming', 15000.00, 0, 25000.00, 20000.00, 'Coimbatore', 'Chennai', '2011060023', '1', '2', 'upload_files/candidate_tracker/5099953901_J LEANDAN.pdf', NULL, NULL, '2020-11-07', 7, '', '5', '8', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'salary exp is high and will not sustain .', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 01:13:43', 50, '2020-11-07 10:44:21', 0, NULL, 1),
(1779, '', '0', '8428182664', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011060024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 01:32:28', 0, NULL, 0, NULL, 1),
(1780, 'Pradhap', '5', '8610581171', '', 'Pradhapsingh9495@gmail.com', '1995-08-01', 25, '2', '2', 'Palanisamy', 'Sales executive', 25000.00, 0, 0.00, 20000.00, 'Salem', 'Anna nagar Chennai', '2011060025', '1', '1', 'upload_files/candidate_tracker/13081600424_Pradhap_Resume.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '20', '1970-01-01', 0.00, '01:29 PM', '', '1970-01-01', '1', 'doesnt fiit for voice process', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 02:11:31', 50, '2020-11-07 01:46:30', 0, NULL, 1),
(1781, 'Venkatesan s', '11', '9791755163', '', 'Srinivasanvenkatesan96@outlook.com', '1996-10-18', 24, '1', '2', 'Srinivasan', 'Cooli', 10000.00, 2, 0.00, 15000.00, 'Chennai central', 'Chennai central', '2011060026', '', '2', 'upload_files/candidate_tracker/84472231383_venkatesan cv.docx', NULL, NULL, '2020-11-07', 0, 'Jobs', '5', '59', '1970-01-01', 0.00, '02:11 PM', '', '1970-01-01', '1', 'no Communication. No knowledge on the role', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 02:27:34', 7, '2020-11-07 03:43:42', 0, NULL, 1),
(1782, 'Naga Arjun', '11', '9600185880', '', 'nagaarjunan0975@gmail.com', '1996-09-28', 24, '2', '2', 'nagarajan.c', 'Business', 20000.00, 1, 0.00, 15000.00, 'porur', 'porur', '2011060027', '1', '1', 'upload_files/candidate_tracker/17689158762_naga resume 1.docx', NULL, NULL, '2020-11-07', 0, '', '3', '8', '2020-11-09', 163800.00, '11:00 AM', '2', '1970-01-01', '1', '13K for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 02:44:41', 7, '2020-11-08 08:07:18', 0, NULL, 1),
(1783, 'Manoj SanthoshB', '11', '7708339852', '9787392356', 'manojsanthosh82@gmail.com', '1996-10-08', 24, '2', '2', 'Baskaran K', 'supervisor', 10000.00, 0, 10000.00, 15000.00, 'chennai', 'chennai', '2011060028', '1', '2', 'upload_files/candidate_tracker/4287665794_Resume.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '59', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'Will not sustain, not ready for bond No communication', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 02:47:18', 50, '2020-11-07 12:25:54', 0, NULL, 1),
(1784, 'debashree sen', '11', '9176276804', '', 'debsri13@gmail.com', '1983-01-12', 37, '2', '1', 'udayakumar', 'service', 25000.00, 1, 300000.00, 3.20, 'chennai', 'chennai', '2011060029', '1', '2', 'upload_files/candidate_tracker/67246653196_Resume of Debashree Sen.docx', NULL, NULL, '2020-11-07', 0, '', '6', '0', NULL, 0.00, '01:00 PM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 02:57:11', 1, '2020-11-06 03:04:17', 0, NULL, 1),
(1785, 'Rajalakshmi.R', '11', '6369647138', '7448551323', 'rrlakshmi678@gmail.com', '1997-01-09', 23, '2', '2', 'Rajkumar.S', 'Sub Inspector Of Police', 50000.00, 1, 0.00, 15000.00, 'Kilpauk Garden,Chennai', 'Kilpauk Garden,Chennai', '2011060030', '1', '1', 'upload_files/candidate_tracker/42865529624_RESUME -RAJI.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'no response. will not join', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 03:17:22', 50, '2020-11-07 12:58:56', 0, NULL, 1),
(1786, 'jerina taj', '11', '9789839109', '', 'jerina_lal@yahoo.co.in', '1980-04-07', 40, '2', '1', 'nazeerdeen', 'business', 50000.00, 2, 35000.00, 37000.00, 'chennai', 'chennai', '2011060031', '13', '2', 'upload_files/candidate_tracker/34113345022_JT CV.doc', NULL, NULL, '2020-11-07', 0, '', '5', '54', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'She worked end to end hr cycle but incomplete skill all vertical', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 03:20:56', 1, '2020-11-06 03:35:27', 0, NULL, 1),
(1787, '', '0', '6385137018', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011060032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 03:24:22', 0, NULL, 0, NULL, 1),
(1788, 'Sri Hari', '4', '7358321565', '6385137018', 'srhr185@gmail.com', '1996-04-25', 24, '2', '2', 'Murugan', 'Private company', 20000.00, 1, 0.00, 12500.00, 'Peter\'s Colony, Royapettah, Chennai-14', 'Chennai', '2011060033', '1', '2', 'upload_files/candidate_tracker/45046719333_Document.pdf', NULL, NULL, '2020-11-07', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 03:38:14', 1, '2020-11-06 03:58:42', 0, NULL, 1),
(1789, '', '0', '9790911197', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011060034', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 06:09:35', 0, NULL, 0, NULL, 1),
(1790, 'GAYATHRI S', '11', '9551316146', '', 'saragayu1975@gmail.com', '1998-05-17', 22, '2', '2', 'Selvamani M', 'Domestic worker', 6000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2011060035', '1', '1', 'upload_files/candidate_tracker/61943846257_Resume .docx', NULL, NULL, '2020-11-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:29 AM', '', '1970-01-01', '2', 'no response and RNR will not join', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 06:18:30', 50, '2020-11-07 11:43:10', 0, NULL, 1),
(1791, '', '0', '9952636225', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011060036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 06:26:23', 0, NULL, 0, NULL, 1),
(1792, 'Sarath Kumar', '11', '9884787975', '8124507401', 'idofsarath@gmail.com', '1996-08-31', 24, '2', '2', 'Velayutham', 'Police', 26000.00, 1, 18000.00, 23000.00, 'Chennai', 'Chennai', '2011060037', '13', '2', 'upload_files/candidate_tracker/24044885452_Sarath - Resume 2020.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not ok for agreement', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 07:15:42', 50, '2020-11-07 01:14:00', 0, NULL, 1),
(1793, 'Poovarasan', '5', '7339577897', '8667333273', 'Poovapapa1904@gmail.com', '1996-04-30', 25, '2', '2', 'Kanagavalli', 'Cooly', 12000.00, 2, 0.00, 23000.00, 'Chennai', 'Mogappair', '2011060038', '3', '2', 'upload_files/candidate_tracker/38666650572_resume 16.03.doc', NULL, '1', '2021-11-30', 0, '', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'rejected', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-06 07:28:38', 1, '2021-11-30 02:21:10', 0, NULL, 1),
(1794, 'Subha.S', '11', '8939416813', '', '', '1997-08-19', 23, '2', '2', 'd.suriyamoorthy', 'Welding supervisor', 40000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2011070001', '1', '1', 'upload_files/candidate_tracker/90870222615_updated Resume-SUBHA2.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:40 AM', '', '1970-01-01', '2', 'not okay with bond.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 08:38:35', 50, '2020-11-07 11:08:35', 0, NULL, 1),
(1795, 'VISAL C', '5', '9380399084', '', 'Vishaloptimistic6june@gmail.com', '1994-06-06', 26, '2', '2', 'Chinnadurai L', 'Insurance', 40000.00, 3, 33000.00, 37000.00, 'Chennai', 'Thiruvanmiyur', '2011070002', '1', '2', 'upload_files/candidate_tracker/23390476327_VISAL Updated Resume 15_9_20.docx', NULL, NULL, '2020-11-07', 0, '', '5', '44', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'He is Lic Agent and His mother also LIC Agent', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 08:56:19', 50, '2020-11-07 11:45:24', 0, NULL, 1),
(1796, 'Senthilkumar', '4', '8270053846', '9585110414', 'Senthilnallayan@gmail.com', '1999-07-26', 21, '2', '2', 'Mariappan', 'former', 3000.00, 0, 0.00, 13000.00, 'Tenkasi', 'Sriperumpudur', '2011070003', '1', '1', 'upload_files/candidate_tracker/55606019132_RESUME FINAL ATTACHEMENT.docx', NULL, NULL, '2020-11-09', 0, '', '5', '14', '1970-01-01', 0.00, '10:11 AM', '', '1970-01-01', '1', 'long distance 2 hour and not suitable for this profile', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-07 10:04:38', 58, '2020-12-23 11:57:21', 0, NULL, 1),
(1797, 'Akshaya L', '11', '8939351940', '8939351540', 'akshayabritto@gmail.com', '1994-03-06', 26, '2', '2', 'Loganthan M', 'Insurance', 1.50, 2, 0.00, 15000.00, 'PALLIKARANAI', 'Pallikaranai', '2011070004', '1', '1', 'upload_files/candidate_tracker/22232193652_Interview-Letter (1).pdf', NULL, NULL, '2020-11-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:59 AM', '', '1970-01-01', '1', 'not speaking up and said dont know for more than 3 times in interview.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 11:46:03', 1, '2020-11-07 12:19:02', 0, NULL, 1),
(1798, 'Vincy.M', '6', '9976352274', '6382064953', 'vincyfrancis528@gmail.com', '1998-11-05', 22, '2', '2', 'Maria Francis', 'Machine operator', 30000.00, 2, 0.00, 15000.00, 'Jeyankondam', 'Pallikaranai, chennai', '2011070005', '1', '1', 'upload_files/candidate_tracker/54448478070_VINCY RESUME (1) (1) (1).pdf', NULL, NULL, '2020-11-07', 0, '', '5', '16', '1970-01-01', 0.00, '11:56 AM', '', '1970-01-01', '1', 'sustain doubt long distance', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 11:55:09', 8, '2020-11-07 03:46:22', 0, NULL, 1),
(1799, 'Ashik mohammed.A', '6', '6379156560', '9840743772', 'aashiqmohammed2002@gmail.com', '2002-08-01', 18, '1', '2', 'Ajji MOHIDEEN', 'Shop', 70000.00, 1, 0.00, 12000.00, '1/21 Cs,colony 3rd lane indra NagarAdyar ch-20', '1/21 Cs,Colony 3rd Lane Indra NagarAdyar Ch-20', '2011070006', '', '1', 'upload_files/candidate_tracker/87135308552_Ashik Mohammed.pdf', NULL, NULL, '2020-11-07', 0, 'P1114', '5', '57', '1970-01-01', 0.00, '12:39 PM', '', '1970-01-01', '1', 'he is looking for part time job... just  now join for college', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-07 12:13:22', 50, '2020-11-07 12:53:36', 0, NULL, 1),
(1800, 'R.divya', '4', '9840743772', '6379156560', 'divyaram0615@gmail.com', '1998-06-15', 22, '1', '2', 'M.ramachandran', 'Chief', 12000.00, 2, 0.00, 12000.00, '1/15 c.s colony 3rd lane adyar Chennai 20', '1/15 C.S Colony 3rd Lane Adyar Chennai', '2011070007', '', '1', 'upload_files/candidate_tracker/73176066283_divya.pdf', NULL, NULL, '2020-11-07', 0, 'P114', '3', '8', '1970-01-01', 120000.00, '12:21 PM', '2', '1970-01-01', '2', '10K for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-07 12:15:47', 7, '2020-11-10 06:42:28', 0, NULL, 1),
(1801, 'Selvarani. S', '4', '6383574785', '6383473354', 'Selvasofi2606@gmail.com', '1999-06-26', 21, '1', '2', 'Selvaraj. R', 'Security', 12000.00, 3, 0.00, 12000.00, '6/14 Arunachalapuram 2nd Street adyar Ch-20', 'No. 6/14 Arunachalapuram 2nd street adyar Ch-20', '2011070008', '', '1', 'upload_files/candidate_tracker/59256105796_selvarani .docx.resume.pdf', NULL, NULL, '2020-11-07', 0, 'P1114', '5', '14', NULL, 0.00, '12:25 PM', '0', NULL, '2', 'not fit for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-07 12:18:42', 1, '2020-11-07 12:33:42', 0, NULL, 1),
(1802, 'GOPINATH K', '6', '8056682252', '9629615855', 'gopinathcsea@gmail.com', '1992-08-26', 28, '2', '1', 'KESAVAN', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Villupuram', 'Porur', '2011070009', '1', '1', 'upload_files/candidate_tracker/82028135480_GK-Updated Resume.docx', NULL, NULL, '2020-11-07', 0, '', '3', '8', '2020-11-09', 162000.00, '12:28 PM', '', '2023-01-25', '1', '13.5K for thiyagu team', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 12:24:56', 7, '2020-11-09 12:21:23', 0, NULL, 1),
(1803, 'Deepika.M', '4', '7338918224', '8056097753', 'Deepisumideepisumi@gmail.com', '2000-08-18', 20, '2', '2', 'Murugan.V', 'Driver', 30000.00, 1, 0.00, 10000.00, 'North usman road panagal park', 'Murugan idly shop Opposite', '2011070010', '1', '1', 'upload_files/candidate_tracker/76777933626_Deepika.M.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '13', '1970-01-01', 0.00, '01:55 PM', '', '1970-01-01', '2', 'not suitable for this filed', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 01:08:09', 50, '2020-11-07 02:56:02', 0, NULL, 1),
(1804, 'Sumathi.k', '4', '7010651311', '8939696685', 'Sumathisumi2110@gmail.com', '2000-10-21', 20, '2', '2', 'Kannan', 'Painter', 25000.00, 1, 0.00, 10000.00, 'T.nagar north Usman road', 'Murugan idly shop opposite', '2011070011', '1', '1', 'upload_files/candidate_tracker/73870244734_sumathi.k.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '13', '1970-01-01', 0.00, '01:24 PM', '', '1970-01-01', '2', 'Sustainability	 less', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 01:10:10', 50, '2020-11-07 02:55:18', 0, NULL, 1),
(1805, '', '0', '8220674570', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011070012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-07 01:41:05', 0, NULL, 0, NULL, 1),
(1806, 'mohanraj', '21', '9789399659', '', 'mohanrajkceit@gmai.com', '1991-05-05', 29, '2', '2', 'dhanapal', 'passewd away', 500000.00, 2, 18000.00, 25000.00, 'namakkal', 'tambaram', '2011070013', '1', '2', 'upload_files/candidate_tracker/79252248328_Resume_Mohanraj[1].docx', NULL, NULL, '2020-11-09', 7, '', '5', '53', '1970-01-01', 0.00, '03:25 PM', '', '1970-01-01', '2', 'asked to call after 10 days but he didnt call', '3', '2', '', '', '', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-07 02:14:13', 58, '2020-12-23 03:39:34', 0, NULL, 1),
(1807, 'A.arun', '4', '9791327667', '', '', '1993-01-26', 27, '2', '2', 'Arulmozhi', 'Driver', 20000.00, 2, 0.00, 12000.00, 'Karur', 'Teynampet', '2011070014', '1', '1', 'upload_files/candidate_tracker/50497073918_arun resume1.docx', NULL, NULL, '2020-11-09', 0, '', '5', '14', '1970-01-01', 0.00, '11:38 AM', '', '1970-01-01', '1', 'not suitable for voice process', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-07 03:29:39', 58, '2020-12-23 12:59:52', 0, NULL, 1),
(1808, 'Karthikeyan', '11', '9789507341', '6380702997', 'mbskarthik1597@gmail.com', '1997-05-01', 23, '2', '2', 'Balasubramanian', 'Retired bank manager', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011070015', '1', '1', 'upload_files/candidate_tracker/10016367673_Karthik_MBA_Fresher_2020.pdf', NULL, NULL, '2020-11-09', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 05:39:31', 50, '2020-11-09 05:22:20', 0, NULL, 1),
(1809, '', '0', '9876543267', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011080001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-08 08:13:08', 0, NULL, 0, NULL, 1),
(1810, '', '0', '6379348867', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011090001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-09 10:04:51', 0, NULL, 0, NULL, 1),
(1811, 'SANDHIYA.L', '4', '7548824132', '9751115312', 'sandhiyaseetha4@gmail.com', '2000-06-09', 20, '1', '2', 'Lakshmanan', 'Weaver', 60000.00, 1, 10000.00, 13000.00, 'Adayar', 'Adayar', '2011090002', '', '2', 'upload_files/candidate_tracker/38348651572_Resume_SANDHIYA_Format1-1.pdf', NULL, NULL, '2020-11-09', 0, 'Jobs', '5', '13', '1970-01-01', 0.00, '10:27 AM', '', '1970-01-01', '2', 'Communication  poor', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-09 10:23:52', 50, '2020-11-09 11:01:42', 0, NULL, 1),
(1812, 'Srinath.k', '4', '9884393499', '9841321357', 'Srisrinath941@Gmail.com', '1998-04-25', 22, '1', '2', 'Krishnamoorthy.g', 'Business', 30000.00, 1, 10000.00, 15000.00, 'Perambur', 'Perambur', '2011090003', '', '2', 'upload_files/candidate_tracker/57236781656_file1_1604899488864.pdf', NULL, NULL, '2020-11-09', 1, '5630', '5', '21', '1970-01-01', 0.00, '11:16 AM', '', '1970-01-01', '1', 'exp 16 k above for crm', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-09 10:31:45', 8, '2020-11-09 01:01:43', 0, NULL, 1),
(1813, 'Jayalakshmi. B', '20', '7338992204', '9884827666', 'bjayalakshmi923@gmail.com', '2000-09-23', 20, '1', '2', 'Balakrishnan', 'Real estate business', 15000.00, 1, 0.00, 15000.00, 'No. 5/ periyar street, royapettah', 'Royapettah', '2011090004', '', '1', 'upload_files/candidate_tracker/63067878668_RESUME Jaya(1).pdf', NULL, NULL, '2020-11-09', 0, '5174', '5', '16', '1970-01-01', 0.00, '11:09 AM', '', '1970-01-01', '2', 'sustain doubt', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-09 11:00:34', 50, '2020-11-09 11:19:41', 0, NULL, 1),
(1814, 'J.abdul gani', '13', '8300286065', '9486090868', 'abdhulghaani@gmail.com', '1999-07-28', 21, '2', '2', 'Ms Jafar ali', 'Business man', 70000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011090005', '1', '1', 'upload_files/candidate_tracker/77287186975_abdhul Resume.docx', NULL, NULL, '2020-11-09', 0, '', '5', '28', '1970-01-01', 0.00, '11:11 AM', '', '1970-01-01', '2', 'Not Strong In basic Php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 11:07:11', 50, '2020-11-09 01:00:04', 0, NULL, 1),
(1815, 'Sanjay kumar P', '21', '9042351174', '', '', '1998-11-27', 21, '2', '2', 'Panchatcharam R', 'Car mechanic', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2011090006', '1', '1', 'upload_files/candidate_tracker/94578093615_1604926356641_Sanjay Resume.docx', NULL, NULL, '2020-11-10', 0, '', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'not suit for  admin', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 11:21:03', 1, '2020-11-09 10:02:37', 0, NULL, 1),
(1816, 'A. Rajesh', '11', '9941732059', '9444475618', 'A. Rajesh2059@gmail.com', '1987-07-19', 33, '2', '2', 'Arulanandham', 'Retired Govt Staff', 40000.00, 2, 20000.00, 20000.00, 'Chennai', 'Chennai', '2011090007', '1', '2', 'upload_files/candidate_tracker/23181499114_A.Rajesh.docx', NULL, NULL, '2020-11-09', 0, '', '5', '8', '1970-01-01', 0.00, '12:09 PM', '', '1970-01-01', '1', '6+ yr exp in rec. switched more than 6 company and xp is 20K.  in between worked as BDM.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 12:00:47', 50, '2020-11-09 12:57:06', 0, NULL, 1),
(1817, 'yogeshwari', '4', '8925037518', '', 'yogebala2814@gmail.com', '1996-05-06', 24, '2', '2', 'bala', 'cook', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2011090008', '1', '1', 'upload_files/candidate_tracker/76396868159_file1_1604911031639.pdf', NULL, NULL, '2020-11-09', 0, '', '3', '8', '2020-11-12', 144000.00, '03:32 PM', '5', '1970-01-01', '2', 'For Dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 12:21:32', 7, '2020-11-10 06:42:52', 0, NULL, 1),
(1818, 'MOHAMED SALAWATHULLA', '13', '9047055030', '', 'salawathulla.asw@gmail.com', '1995-01-08', 25, '2', '2', 'Sirajudeen', 'Business', 25000.00, 1, 20000.00, 28000.00, 'Thiruvadur', 'Pallavaram', '2011090009', '1', '2', 'upload_files/candidate_tracker/40639083493_MOHAMED_SALAWATHULLA.docx', NULL, NULL, '2020-11-10', 0, '', '5', '54', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'He is not ready to sign a service contract.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 12:44:31', 1, '2020-11-09 01:09:12', 0, NULL, 1),
(1819, 'Karunai Fathima', '5', '8925259449', '7845557772', 'fatima454.basheer@gmail.com', '1991-09-30', 29, '2', '1', 'Sowthri S', 'Sr VFX Artist', 18.00, 1, 0.00, 22.00, 'Ramanathapuram', 'Chennai', '2011090010', '3', '2', 'upload_files/candidate_tracker/97186614692_Resume_2020.pdf', NULL, NULL, '2020-11-10', 0, '', '3', '8', '2020-11-16', 168000.00, '12:00 PM', '4', '2021-03-24', '2', '14K CTC for Kannan team', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-09 01:29:47', 7, '2020-11-16 10:19:57', 0, NULL, 1),
(1820, 'Ashwath kumar.B', '6', '6380627941', '9940503108', 'Ashwath.bkooh@gmail.com', '1994-03-22', 26, '2', '2', 'K.balashanmugam', 'Nil', 30000.00, 0, 20000.00, 30000.00, '69/3,4th street,I.c.f east Colony ,chennai-38', 'Icf', '2011090011', '1', '2', 'upload_files/candidate_tracker/16701669122_Ashwath Resume (2)(2).pdf', NULL, NULL, '2020-11-10', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'he organise part time coaching  class. so  hexquots rejected', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 01:32:08', 7, '2020-11-10 11:39:31', 0, NULL, 1),
(1821, 'Karthikeyan R', '22', '9500908914', '', 'karthikeyank599@gmail.com', '1997-09-15', 23, '2', '2', 'Ramnath', 'Manager', 40000.00, 1, 0.00, 180000.00, 'Chennai', 'Chennai', '2011090012', '1', '1', 'upload_files/candidate_tracker/54351522284_Karthikeyan- Digital Marketing.pdf', NULL, NULL, '2020-11-10', 0, '', '5', '54', NULL, 0.00, '12:00 PM', '0', NULL, '1', 'No replay from the candidate.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 06:24:06', 1, '2020-11-10 11:51:56', 0, NULL, 1),
(1822, 'Vignesh Shankar', '22', '9677052550', '', 'vviku92@gmail.com', '1992-12-02', 27, '2', '2', 'han', 'shankar', 60000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2011090013', '1', '1', 'upload_files/candidate_tracker/14099266449_Vignesh Resume Digital marketing.pdf', NULL, NULL, '2020-11-10', 0, '', '5', '54', NULL, 0.00, '12:00 PM', '0', NULL, '1', 'no replay from the candidate.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 06:24:15', 1, '2020-11-10 11:51:42', 0, NULL, 1),
(1823, '', '0', '9751978210', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011090014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-09 06:27:22', 0, NULL, 0, NULL, 1),
(1824, 'harikrishnan', '3', '9940624449', '', 'arumuha90@gmail.com', '1990-10-11', 30, '2', '2', 'arumugam', 'tailor', 20000.00, 0, 0.00, 18000.00, 'No142, sangodai amman streeUthandi, Chennai-119', 'No142, Sangodai Amman StreeUthandi, Chennai-119', '2011090015', '1', '1', 'upload_files/candidate_tracker/95928475025_Hari resume.doc', NULL, NULL, '2020-11-11', 0, '', '5', '54', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'He is not completed the given task', '2', '2', '', '', '', '', '2', '2020-12-24', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-11-09 07:25:55', 65, '2020-12-24 02:33:52', 0, NULL, 1),
(1825, 'Vignesh N', '5', '9003229033', '9841249777', 'kavi.arasan.ns@gmail.com', '1989-09-22', 31, '1', '1', 'Aswini', 'Journal Adminstrator', 25000.00, 1, 400000.00, 450000.00, 'Chennai', 'Chennai', '2011100001', '', '2', 'upload_files/candidate_tracker/82925505556_Vignesh resume.docx', NULL, NULL, '2020-11-10', 0, '5266', '3', '8', '1970-01-01', 372000.00, '10:34 AM', '2', '1970-01-01', '1', 'for lokesh team as consultant RM', '5', '1', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 10:16:49', 7, '2020-11-12 03:46:59', 0, NULL, 1),
(1826, 'NC RANJITH', '6', '7871119274', '', 'Ranjithrn08@gmail.com', '1999-08-16', 21, '1', '2', 'N CHINNA VENGAIAH', 'Office boy', 30000.00, 1, 0.00, 16000.00, 'Ambattur', 'Ambattur', '2011100002', '', '1', 'upload_files/candidate_tracker/83529990504_Resume.docx', NULL, NULL, '2020-11-10', 0, '55548', '3', '8', '2020-11-12', 151800.00, '11:00 AM', '6', '2021-03-26', '1', '12K For Srikanth team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 10:38:07', 7, '2020-11-10 06:43:26', 0, NULL, 1),
(1827, 'Febin skariah varghese', '6', '8943027570', '9847535245', 'febinzach@gmail.com', '1992-05-09', 28, '1', '2', 'P t varghese', 'Agriculture', 5000.00, 2, 0.00, 15000.00, 'Kerala', 'Avadi', '2011100003', '', '1', 'upload_files/candidate_tracker/77220100497_CV-Febin.pdf', NULL, NULL, '2020-11-10', 0, '5392', '5', '20', '1970-01-01', 0.00, '11:23 AM', '', '1970-01-01', '2', 'doesnxquott know tamil or english', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 11:18:50', 7, '2020-11-10 12:34:25', 0, NULL, 1),
(1828, 'Samuel anselm david .E', '6', '9840633050', '', '', '2000-03-08', 20, '1', '2', 'Er david', 'student', 1.00, 1, 0.00, 15000.00, 'Thiruvatriyur', 'thiruvattriyur', '2011100004', '', '1', 'upload_files/candidate_tracker/12962562446_SAMUEL ANSELM DAVID - RESUME.doc', NULL, NULL, '2020-11-10', 0, 'P1065', '5', '57', '1970-01-01', 0.00, '11:25 AM', '', '1970-01-01', '1', 'voice is not good', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 11:22:55', 7, '2020-11-10 11:36:28', 0, NULL, 1),
(1829, 'Augustin Paul', '13', '9047909568', '', 'augustinpaul1212@gmail.com', '1995-07-11', 25, '1', '2', 'M.Selvaraj', 'Tailor', 13000.00, 2, 25000.00, 30000.00, 'Tirunelveli', 'Poonamallee', '2011100005', '', '2', 'upload_files/candidate_tracker/44606633315_augustin_new_11.docx', NULL, NULL, '2020-11-10', 0, 'Priyanka', '5', '28', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'technically Not strong and Sustainability Issue.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 11:27:26', 1, '2020-11-10 11:44:20', 0, NULL, 1),
(1830, 'Arockiya Vijay.C', '6', '7338956096', '9677180368', 'carockiyavijay@gmail.com', '1992-07-07', 28, '2', '1', 'Cimiyon raj.A', 'Bsc,DCH', 20000.00, 2, 15000.00, 18000.00, 'No: 663.Agineshpuram, koovathur post, Ariyalur dt', '52/25 Anbildharmalingam street, Velachery, Chennai', '2011100006', '1', '2', 'upload_files/candidate_tracker/66136897423_ExportersList.pdf', NULL, NULL, '2020-11-10', 0, '', '5', '24', '1970-01-01', 0.00, '11:42 AM', '', '1970-01-01', '1', 'NOT QUALIFIED FOR TELECALLING', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-10 11:33:46', 50, '2020-11-10 05:57:59', 0, NULL, 1),
(1831, 'Vasudevan', '6', '9994294360', '7092065733', 'Vasuneeha23@gmail.com', '1987-09-03', 33, '1', '1', 'Rajendran', 'Teilcaller', 20000.00, 0, 15000.00, 15000.00, 'Ambattur', 'Ambttur', '2011100007', '', '2', 'upload_files/candidate_tracker/21778633467_083401010000001e02990_ESTATEMENT_092020_083401010000001e-1.pdf', NULL, NULL, '2020-11-10', 0, '5174', '5', '16', '1970-01-01', 0.00, '11:54 AM', '', '1970-01-01', '1', 'low profile,no communication skill', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 11:48:19', 7, '2020-11-10 12:35:35', 0, NULL, 1),
(1832, 'Divya', '4', '8807706292', '9841302741', 'divyarbca18@gmail.com', '1992-02-18', 28, '2', '1', 'Ramu', 'Supervisor', 12000.00, 1, 15000.00, 16000.00, '5/46, krishnappa street west Mambalam Chennai-33', '5/46, krishnappa street west Mambalam Chennai-33', '2011100008', '1', '2', 'upload_files/candidate_tracker/97141276351_Divya Resume mba.pdf', NULL, NULL, '2020-11-10', 0, '', '5', '21', '1970-01-01', 0.00, '12:06 PM', '', '1970-01-01', '1', 'expecting high salary for crm,16000', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-10 11:54:43', 58, '2020-12-29 10:16:22', 0, NULL, 1),
(1833, 'Yuvanesh kumar', '13', '9003033282', '', 'yuvanboyka@gmail.com', '1996-09-19', 24, '3', '2', 'Pushpalingam', 'Tneb', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011100009', '', '1', 'upload_files/candidate_tracker/26311675924_YUVANESH Resume.pdf', NULL, NULL, '2021-05-06', 0, '', '5', '59', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '1', 'Will not sustain 3months before attended and not open for the agreements', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-10 12:03:51', 7, '2021-05-06 10:21:30', 0, NULL, 1),
(1834, '', '0', '7418384842', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011100010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 01:25:54', 0, NULL, 0, NULL, 1),
(1835, 'G. Sheela', '4', '7395867662', '7373656931', 'gsheelasheg@gmail.com', '1996-05-02', 24, '2', '2', 'W. Gnanadoss', 'Trading', 30.00, 4, 15000.00, 15000.00, 'Thiruvika nagar', 'Thiruvika Nagar, Chennai', '2011100011', '1', '2', 'upload_files/candidate_tracker/49545291453_G.SHE DATA.doc', NULL, NULL, '2020-11-10', 0, '', '5', '21', '1970-01-01', 0.00, '02:56 PM', '', '1970-01-01', '2', 'expecting 16 k above for crm', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-10 02:52:00', 58, '2020-12-29 09:54:04', 0, NULL, 1),
(1836, '', '0', '9677180368', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011100012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 03:34:04', 0, NULL, 0, NULL, 1),
(1837, 'Mohammed siddiq ali', '13', '9361613607', '9840559642', 'sa941996@gmail.com', '1996-04-09', 24, '1', '2', 'Mydeen kasim', 'Building demolition', 25000.00, 3, 13000.00, 15000.00, 'Chennai', 'Chennai', '2011100013', '', '2', 'upload_files/candidate_tracker/34549735941_Moha.docx', NULL, NULL, '2020-11-11', 10, 'Priyanka', '5', '54', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He is having skills in Asp.net but not good in php.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 03:49:34', 7, '2020-11-11 01:00:34', 0, NULL, 1),
(1838, 'sujeesh t', '6', '8610918215', '', 'sujesh8608@gmail.com', '1996-11-16', 23, '2', '1', 'thulasidasan k', 'sales man', 15000.00, 1, 16000.00, 18000.00, 'chennai', 'vadapalani', '2011100014', '2', '2', 'upload_files/candidate_tracker/34027734507_SUJESH RESUME 2.docx', NULL, NULL, '2020-11-11', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 04:15:19', 7, '2020-11-11 06:21:49', 0, NULL, 1),
(1839, 'Manjula', '13', '9843882426', '9791107382', 'manjulasathi24@gmail.com', '1996-02-02', 24, '3', '1', 'Sathish', 'Driver', 25000.00, 1, 12000.00, 15000.00, 'Kodambakkam chennai', 'Kodambakam chennai', '2011100015', '', '2', 'upload_files/candidate_tracker/43786670494_todayresume.pdf', NULL, NULL, '2020-11-11', 1, '', '5', '54', '1970-01-01', 0.00, '11:06 AM', '', '1970-01-01', '2', 'System task not completed', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 04:28:47', 7, '2020-11-11 03:12:34', 0, NULL, 1),
(1840, '', '0', '7550138039', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011100016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 05:02:23', 0, NULL, 0, NULL, 1),
(1841, 'Y. Monisha', '4', '9962721773', '9962661017', '125monisha@gmail.com', '2000-05-12', 20, '1', '2', 'S. Yuvaraj', 'Coolie', 7000.00, 1, 0.00, 12000.00, 'Old washermenpet', 'Old washermenpet', '2011110001', '', '1', 'upload_files/candidate_tracker/31030233984_09-23-2020-08.55.59.pdf', NULL, NULL, '2020-11-11', 0, 'P1139', '5', '13', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 08:16:01', 1, '2020-11-11 12:28:51', 0, NULL, 1),
(1842, 'Akash B', '6', '6379502731', '', 'Akashaaki 11021999@gmail.com', '1999-02-11', 21, '1', '2', 'Baskar V', 'Fish export', 25000.00, 1, 0.00, 15000.00, 'No.17 vinayagapuram main street tondaiarpet', 'Chennai', '2011110002', '', '1', 'upload_files/candidate_tracker/4778761030_Akash Resume.pdf', NULL, NULL, '2020-11-11', 0, 'P1065', '5', '57', '1970-01-01', 0.00, '12:02 PM', '', '1970-01-01', '1', 'voice is not good ..', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 08:28:33', 7, '2020-11-11 03:05:48', 0, NULL, 1),
(1843, 'Logesh', '5', '7811833833', '', 'Logeshvp@gmail.com', '1994-09-23', 26, '2', '1', 'Seshamalini', 'Nil', 22000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2011110003', '1', '2', 'upload_files/candidate_tracker/93105976943_Resume-231.docx', NULL, NULL, '2020-11-12', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 10:24:01', 7, '2020-11-12 05:15:03', 0, NULL, 1),
(1844, 'Vinothkumar', '13', '8667200847', '9940361682', 'vinothkumar1682@gmail.com', '1994-12-31', 25, '3', '2', 'Velu D', 'Web developer', 50000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2011110004', '', '2', 'upload_files/candidate_tracker/34560200727_Vinoth_resume.pdf', NULL, NULL, '2020-11-12', 30, '', '5', '54', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'He will not sustain ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 10:48:36', 1, '2020-11-11 10:54:54', 0, NULL, 1),
(1845, 'santhosh', '13', '9865574603', '', 'santhoshandro95@gmail.com', '1995-11-05', 25, '3', '2', 'maheshwaran', 'tailor', 20000.00, 1, 475000.00, 800000.00, 'tirupur', 'chennai', '2011110005', '', '2', 'upload_files/candidate_tracker/95140360424_Santhosh_CV.pdf', NULL, NULL, '2020-12-04', 45, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 11:03:36', 7, '2020-12-04 05:45:40', 0, NULL, 1),
(1846, 'DHANALAKSHMI', '4', '9150603233', '', '', '2000-03-08', 20, '2', '2', 'G.ELAGOVAN', 'Sales man', 10000.00, 1, 0.00, 12000.00, 'old pallavaram', 'Old Pallavaram', '2011110006', '1', '1', 'upload_files/candidate_tracker/56252725996_Dhanalakshmi resume.docx', NULL, NULL, '2020-11-11', 0, '', '5', '21', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'she is interested in data entry job..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 11:32:15', 7, '2020-11-11 11:59:25', 0, NULL, 1),
(1847, 'padmanaban', '6', '7358488332', '8939197866', 'padhu.mani098@gmail.com', '1999-08-23', 21, '2', '2', 'ramesh', 'auto driver', 12000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2011110007', '1', '1', 'upload_files/candidate_tracker/31485207400_resume (2).doc', NULL, NULL, '2020-11-12', 0, '', '5', '24', NULL, 0.00, '12:42 PM', '0', NULL, '1', 'not fil for telecalling', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 11:32:34', 1, '2020-11-12 12:50:59', 0, NULL, 1),
(1848, '', '0', '8939197866', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011110008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 12:07:08', 0, NULL, 0, NULL, 1),
(1849, '', '0', '8248411581', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011110009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 12:08:52', 0, NULL, 0, NULL, 1),
(1850, 'Ajay nair', '6', '9498000913', '8015588779', 'ajayvenugopal13@gmail.com', '1998-10-21', 22, '2', '2', 'P.R.Venugopal', 'Business', 100000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2011110010', '1', '1', 'upload_files/candidate_tracker/26942813636_Ajay', NULL, NULL, '2020-11-12', 0, '', '3', '8', '1970-01-01', 168000.00, '11:00 AM', '2', '1970-01-01', '1', '14K for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 12:11:55', 7, '2020-11-12 03:47:18', 0, NULL, 1),
(1851, 'magesh s', '6', '9710016596', '9551522438', 'mageshirock@gmail.com', '1995-12-28', 24, '2', '2', 'subbarao t', 'chef', 70000.00, 1, 18000.00, 20000.00, 'chennai', 'moolakadai', '2011110011', '2', '2', 'upload_files/candidate_tracker/21761339294_magesh 2020 resume(1).docx', NULL, NULL, '2020-11-11', 0, '', '3', '8', '1970-01-01', 204000.00, '02:30 PM', '2', '1970-01-01', '1', '17K for Syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 12:14:33', 7, '2020-11-11 04:23:02', 0, NULL, 1),
(1852, '', '0', '8883838799', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011110012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 12:29:22', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1853, 'Sathish S', '6', '9176403515', '8248411581', 'Ssathish232@gmail.com', '1993-05-24', 27, '1', '2', 'Selvam M', 'Oriental insurance', 45000.00, 1, 14000.00, 16000.00, 'Sri kandhaswami Koil Street', 'Sri kandhaswami Koil Street', '2011110013', '', '2', 'upload_files/candidate_tracker/89517961150_sathish resume.pdf', NULL, NULL, '2020-11-11', 0, 'P1065', '5', '57', NULL, 0.00, '12:40 PM', '0', NULL, '1', 'voice not good ', '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 12:36:13', 1, '2020-11-11 12:41:23', 0, NULL, 1),
(1854, 'Vijay S', '6', '9444119887', '9606538298', 'vijayias11100@gmail.com', '1997-09-27', 23, '1', '2', 'Settu P', 'Farmer', 13500.00, 1, 0.00, 15000.00, 'DHARMAPURI', 'DHARMAPURI', '2011110014', '', '1', 'upload_files/candidate_tracker/80740821511_RESUME VJ correc.docx', NULL, NULL, '2020-11-11', 0, '5392', '5', '20', '1970-01-01', 0.00, '02:36 PM', '', '1970-01-01', '2', 'not fit for voice process', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 02:30:58', 7, '2020-11-11 03:03:10', 0, NULL, 1),
(1855, 'Rajesh', '6', '8681069881', '9790777819', 'Rajesh02kutty@gmail.com', '1994-03-17', 26, '2', '2', 'Kalidass', 'Bsc', 20000.00, 0, 17000.00, 25000.00, '4/102 ambethkar street,palavakkam', 'Chennai', '2011110015', '1', '2', 'upload_files/candidate_tracker/75220206933_file1_1605509244361.pdf', NULL, NULL, '2020-11-16', 0, '', '5', '20', '1970-01-01', 0.00, '12:10 PM', '', '1970-01-01', '1', '4 years experienced in service. not fit for sales', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-11 02:48:35', 58, '2020-12-23 03:34:56', 0, NULL, 1),
(1856, 'prithiviraj E', '6', '9962848478', '', 'prithivirajelango18@gmail.com', '1999-03-18', 21, '2', '2', 'Elangovan v', 'Driver', 10000.00, 1, 14500.00, 17000.00, 'Puliyanthope', 'Puliyanthope', '2011110016', '1', '2', 'upload_files/candidate_tracker/18920700423_1605089479173Resume_Prithiviraj.pdf', NULL, NULL, '2020-11-13', 0, '', '5', '57', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '2', 'voice is not good .. ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 03:32:34', 50, '2020-11-13 11:26:53', 0, NULL, 1),
(1857, '', '0', '8778205449', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011110017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 04:18:27', 0, NULL, 0, NULL, 1),
(1858, 'Anu krishna', '6', '9962320896', '8667623374', 'anukrishna98@gmail.com', '1997-06-17', 23, '2', '2', 'Siva kumar', 'Business', 120000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2011110018', '1', '2', 'upload_files/candidate_tracker/23702385466_ANU KRISHNA cv-1.pdf', NULL, NULL, '2020-11-12', 0, '', '3', '8', '1970-01-01', 189600.00, '03:27 PM', '2', '1970-01-01', '1', '15K for Kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 05:01:31', 7, '2020-11-12 05:15:35', 0, NULL, 1),
(1859, 'Karthik', '13', '9840040980', '', 'karthickrose1255@gmail.com', '1996-03-25', 24, '2', '2', 'Rose', 'Barber', 400000.00, 1, 350000.00, 500000.00, 'Chennai', 'Chennai', '2011110019', '1', '2', 'upload_files/candidate_tracker/66804679657_Karthik', NULL, NULL, '2020-11-13', 15, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He is strong in .net. But not Know php.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 06:16:17', 50, '2020-11-13 10:24:45', 0, NULL, 1),
(1860, '', '0', '7502363874', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011110020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 06:41:44', 0, NULL, 0, NULL, 1),
(1861, 'Nandhini', '6', '9344487826', '9514552590', 'nandhini199723@gmail.com', '1997-05-23', 23, '2', '2', 'Arjunan', 'Coolie', 20000.00, 2, 0.00, 18000.00, 'Thiruvottiyur', 'Tvt hight road', '2011110021', '1', '2', 'upload_files/candidate_tracker/93831573794_Nandhini cc.doc', NULL, NULL, '2020-11-13', 10, '', '5', '24', '1970-01-01', 0.00, '11:14 AM', '', '1970-01-01', '2', 'rE Profile Not suitable', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 07:46:33', 7, '2020-11-13 11:57:12', 0, NULL, 1),
(1862, 'LA Vijayeshwaran', '6', '8838098020', '', 'eshwaranvijay@gmail.com', '1997-08-18', 23, '2', '2', 'N.loganathan', 'Sales executive', 50000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2011110022', '1', '2', 'upload_files/candidate_tracker/67950386964_CV_2020-09-15-114857.pdf', NULL, NULL, '2020-11-12', 0, '', '3', '8', '1970-01-01', 189600.00, '11:00 AM', '2', '1970-01-01', '1', '15K for Syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 09:03:11', 7, '2020-11-12 05:16:04', 0, NULL, 1),
(1863, 'JABEZSH P', '6', '8248599543', '', 'jabezshj@gmail.com', '1998-02-05', 22, '2', '2', 'A.prem sugumar', 'Driver', 40.00, 0, 17.00, 18.00, '8/1464b poombugar nagar 9th cross street Kolathur', 'Chennai', '2011110023', '1', '2', 'upload_files/candidate_tracker/79541359337_Curriculum Vitae - jabezsh p.docx', NULL, NULL, '2020-11-13', 0, '', '5', '24', '1970-01-01', 0.00, '11:43 AM', '', '1970-01-01', '1', 'candidate not come for 2nd round', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 11:38:21', 52, '2020-11-13 02:17:50', 0, NULL, 1),
(1864, 'shaik mahammed ilyas', '5', '9177386483', '9966934841', 'smdilyas4841@gmail.com', '1993-08-20', 27, '2', '2', 'shaik jamal vali', 'marketing in sales', 30000.00, 5, 18000.00, 20000.00, 'andhara pradesh', 'Bangalore', '2011120001', '3', '2', 'upload_files/candidate_tracker/85668773977_CV 2019.docx', NULL, NULL, '2020-11-17', 7, '', '3', '8', '1970-01-01', 216000.00, '10:30 AM', '2', '1970-01-01', '1', 'CTC-18K/TH - 17100', '5', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-12 10:19:09', 7, '2020-11-21 06:22:57', 0, NULL, 1),
(1865, 'anand', '6', '8825617018', '', 'anandmuthu388@gmail.com', '1999-09-12', 21, '2', '2', 'yagamuthu', 'chef', 15000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2011120002', '1', '1', 'upload_files/candidate_tracker/98731825041_abcd.pdf', NULL, NULL, '2020-11-16', 0, '', '5', '8', '1970-01-01', 0.00, '12:40 PM', '', '1970-01-01', '2', 'will no suite for crm', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 12:03:41', 50, '2020-11-16 01:06:12', 0, NULL, 1),
(1866, 'K.Deepa', '4', '9500537509', '', 'deepakumar231199@gmail.com', '1999-11-23', 20, '2', '2', 'P.Kumar', 'Fruit seller', 8000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2011120003', '1', '1', 'upload_files/candidate_tracker/16894210539_deepa .k.pdf', NULL, NULL, '2020-11-12', 0, '', '5', '13', '1970-01-01', 0.00, '02:31 PM', '', '1970-01-01', '2', 'not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 02:15:31', 7, '2020-11-12 03:43:23', 0, NULL, 1),
(1867, 'S.yamini', '4', '8300109924', '', 'Yammisri99@gmail.com', '1999-01-14', 21, '2', '2', 'N.srinivasan', 'Auto driver', 8000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011120004', '1', '1', 'upload_files/candidate_tracker/92396164800_1604929598328_S YAMINI.docx', NULL, NULL, '2020-11-12', 0, '', '5', '13', '1970-01-01', 0.00, '02:18 PM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 02:15:33', 7, '2020-11-12 03:43:41', 0, NULL, 1),
(1868, 'Meenakshi u', '4', '8754246096', '', 'Meena22111999@gmail.com', '1999-11-22', 20, '2', '2', 'R k umasankar', 'Working in private comapany', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011120005', '1', '1', 'upload_files/candidate_tracker/33109262562_MEENAKSHI.U Resume.docx', NULL, NULL, '2020-11-12', 0, '', '5', '21', NULL, 0.00, '02:42 PM', '0', NULL, '2', 'she is not sustain long term bcz she is with her friend only..', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 02:15:37', 1, '2020-11-12 02:45:49', 0, NULL, 1),
(1869, 'Ganesh Kumar S', '5', '9003770823', '', 'ganesh219023@gmail.com', '1990-10-21', 30, '2', '2', 'NS Prakash', 'Business', 20000.00, 0, 21350.00, 27750.00, 'Chennai', 'Chennai', '2011120006', '1', '2', 'upload_files/candidate_tracker/19248628354_Ganesh_new updated_resume.pdf', NULL, NULL, '2020-11-13', 0, '', '3', '8', '2020-11-16', 312000.00, '11:00 AM', '5', '1970-01-01', '1', 'With ESI an PF. net is 22192 and gross is 26000', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 02:27:10', 7, '2020-11-14 07:50:23', 0, NULL, 1),
(1870, 'V jansi', '4', '8754475657', '', 'Jansivimal0128@gmail.com', '1999-07-28', 21, '2', '2', 'V s vimalanathan', '10', 17000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011120007', '1', '1', 'upload_files/candidate_tracker/91629491415_CV_2020-10-24-083544.pdf', NULL, NULL, '2020-11-12', 0, '', '3', '8', '2020-11-16', 120000.00, '02:34 PM', '2', '1970-01-01', '2', '10K for Dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 02:30:19', 7, '2020-11-14 07:50:55', 0, NULL, 1),
(1871, 'Tamil Selvan', '6', '9066417649', '', 'tamilselvan7649@gmail.com', '1997-10-09', 23, '2', '2', 'Anandan', 'Late Army', 11000.00, 1, 0.00, 20000.00, 'Chikkalasandra', 'Chikkalasandra', '2011120008', '1', '1', 'upload_files/candidate_tracker/45705755194_Resume.docx', NULL, NULL, '2020-11-13', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not join. cant arrange 2 wheeler', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 03:19:46', 50, '2020-11-13 10:24:53', 0, NULL, 1),
(1872, '', '0', '7702414094', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011120009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-12 04:52:17', 0, NULL, 0, NULL, 1),
(1873, 'Mohammed suhail', '6', '9976478628', '7708887987', 'mohammedsuhail.95@gmail.com', '1995-01-18', 25, '2', '2', 'Nazar', 'business', 35000.00, 1, 16000.00, 18000.00, 'Salem', 'Madiwala', '2011120010', '1', '2', 'upload_files/candidate_tracker/33063087335_mohammed suhail.pdf', NULL, NULL, '2020-11-13', 1, '', '5', '39', '1970-01-01', 0.00, '11:10 AM', '', '1970-01-01', '2', 'he will not suit for this field', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 05:55:36', 50, '2020-11-13 10:25:02', 0, NULL, 1),
(1874, '', '0', '9841037338', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011120011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-12 06:14:08', 0, NULL, 0, NULL, 1),
(1875, 'sudalai raman a', '5', '9600589690', '', 'sudalairaman2@gmail.com', '1991-03-29', 29, '2', '1', 'akkinimuthu', 'farmer', 20000.00, 1, 4.20, 5.50, 'chennai', 'chennai', '2011120012', '3', '2', 'upload_files/candidate_tracker/90402637891_Sudalai Raman - Resume 2020.pdf', NULL, NULL, '2020-11-13', 15, '', '5', '31', NULL, 0.00, '11:22 AM', '0', NULL, '1', 'expecting higher package and not match for that level', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-12 06:52:48', 1, '2020-11-13 11:24:34', 0, NULL, 1),
(1876, 'Kartheswari', '13', '9566673188', '9444538626', 'ammukarthisakthi@gmail.com', '1998-11-07', 22, '1', '2', 'Murugesa pandian', 'Shop keeper', 20000.00, 2, 8000.00, 12000.00, 'No.2/14, Gandhiji street, Nazarathpet', 'No.2/14, Gandhiji street, Nazarathpet', '2011130001', '', '2', 'upload_files/candidate_tracker/88439899707_KARTHI RESUME.PDF.docx', NULL, NULL, '2020-11-16', 2, 'Sabera', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not So Much Skill In Basic Php.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-13 11:04:55', 50, '2020-11-16 11:06:55', 0, NULL, 1),
(1877, 'Shaik mohideen', '5', '7401475140', '9962222102', 'shaikmohideen1231@gmail.com', '1996-06-12', 24, '1', '1', 'Tajunnisha', 'Housewife', 50000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2011130002', '', '2', 'upload_files/candidate_tracker/29197371302_Shaik-Mohideen-H (1).pdf', NULL, NULL, '2020-11-13', 28, '5638', '3', '8', '2020-11-26', 276000.00, '11:16 AM', '5', '1970-01-01', '1', '23k as ctc, 208 ded. for lokesh team.', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-13 11:12:44', 7, '2020-11-24 10:20:55', 0, NULL, 1),
(1878, 'Sathishkumar', '6', '6380576491', '8939088310', 'Sakthisathish470@gmail.com', '1997-12-09', 22, '2', '2', 'Dilliraj', 'Buffer', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Thiruvottiyur', '2011130003', '1', '1', 'upload_files/candidate_tracker/52185586490_Document from Sathishkumar 👨🏻‍🎓MBA👨🏻‍🎓.pdf', NULL, NULL, '2020-11-13', 0, '', '5', '20', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not fit.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-13 11:24:53', 7, '2020-11-13 11:46:40', 0, NULL, 1),
(1879, 'gayathri', '4', '6364081916', '', 'gayathrimallesh7@gmail.com', '1997-11-07', 23, '2', '2', 'mallesh', 'farmer', 10000.00, 0, 0.00, 15000.00, 'ballari', 'banglore', '2011130004', '1', '1', 'upload_files/candidate_tracker/86279624936_Gayathri Resume-2 (1).docx', NULL, NULL, '2020-11-19', 0, '', '3', '8', '2020-11-23', 139200.00, '03:50 PM', '3', '2021-02-02', '2', '11020 as tH.For CRM-PC', '1', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-13 11:34:14', 7, '2020-11-19 05:32:43', 0, NULL, 1),
(1880, 'Vadivel', '13', '8668000426', '9791198236', 'vadivelbe94@gmail.com', '1996-04-15', 24, '2', '2', 'Pichandi', 'Labour', 50000.00, 2, 19.00, 25.00, 'Chennai', 'Tiruvanna', '2011130005', '1', '2', 'upload_files/candidate_tracker/55816145286_Vadivel P(Resume).pdf', NULL, NULL, '2020-11-16', 3, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-13 12:03:56', 7, '2020-11-16 06:17:42', 0, NULL, 1),
(1881, '', '0', '7904335872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011130006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-13 12:10:24', 0, NULL, 0, NULL, 1),
(1882, 'DHANDAPANI.k', '6', '8072063634', '', 'dhandapani.k14@gmail.com', '1994-11-14', 25, '2', '2', 'KARUNANITHI .A', 'Railway', 30000.00, 2, 13500.00, 15000.00, 'Chennai', 'Chennai', '2011130007', '1', '2', 'upload_files/candidate_tracker/76072548286_dhandapani.docx', NULL, NULL, '2020-11-13', 0, '', '3', '8', '2020-11-16', 177000.00, '12:17 PM', '2', '1970-01-01', '1', '14K as TH. Thiyagarajan team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-13 12:12:27', 58, '2020-12-29 09:55:17', 0, NULL, 1),
(1883, '', '0', '8825528593', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011130008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-13 12:50:51', 0, NULL, 0, NULL, 1),
(1884, 'Yogalakshmi K', '13', '9655693833', '', '', '1996-09-02', 24, '2', '2', 'Kulasekaran KS', 'Small Grams Merchant business', 6000.00, 2, 0.00, 18000.00, 'Tirupattur', 'Tirupattur', '2011130009', '1', '1', 'upload_files/candidate_tracker/97227793654_0_RESUME - YOGALAKSHMI K.pdf', NULL, NULL, '2020-11-17', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-13 01:31:34', 7, '2020-11-17 05:16:57', 0, NULL, 1),
(1885, 'Vignesh P', '6', '9944707200', '7305508442', 'Vignzvicky46@gmail.com', '1996-12-22', 23, '1', '2', 'M.Padmanaban', 'Vetnary Doctor Asst.', 35000.00, 1, 15000.00, 17000.00, '12/66, Padappai 60301', '12/66 padappai kanchipuram 601301', '2011130010', '', '2', 'upload_files/candidate_tracker/96729182772_Vignz Resume Nov.pdf', NULL, NULL, '2020-11-13', 1, 'Priyanka', '5', '16', NULL, 0.00, '01:20 PM', '0', NULL, '1', 'low profile ,no communication skills', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-13 01:31:36', 1, '2020-11-13 01:41:55', 0, NULL, 1),
(1886, 'yuvaraj b', '13', '7904739974', '', 'yuviyuva3150@gmail.com', '1996-06-02', 24, '2', '2', 'balaji', 'aluminium fabrication', 12000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2011130011', '1', '1', 'upload_files/candidate_tracker/564478955_Yuvaraj RESUME (1).docx', NULL, NULL, '2020-11-16', 0, '', '5', '28', '1970-01-01', 0.00, '05:26 PM', '', '1970-01-01', '1', 'Not Know basic skills.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-13 02:38:32', 7, '2020-11-16 05:40:01', 0, NULL, 1),
(1887, 'A. Nicholas athishta prabhu', '13', '7540020230', '6382030616', 'prabhunicholas79@gmail.com', '1990-12-28', 30, '2', '2', 'antony durairaj', 'Fiaherman', 10.00, 0, 14000.00, 20000.00, '1/13 meenvar colony tharuvaikulam, thoothukudi.', 'Vadapalani', '2011130012', '1', '2', 'upload_files/candidate_tracker/51810271975_updated7-01.pdf', NULL, NULL, '2021-01-09', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'He is not completed the Task and no response from him.', '2', '1', '0', '1', '1', '0', '2', '2021-01-11', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-13 03:47:00', 1, '2021-01-07 01:25:14', 0, NULL, 1),
(1888, 'Mohanbabu', '4', '9944009372', '8778205440', 'Nokia10338241@gmail.com', '1992-06-16', 28, '2', '2', 'Vanmathi', 'Tyler', 5000.00, 0, 12000.00, 15000.00, 'No', 'No', '2011130013', '1', '2', 'upload_files/candidate_tracker/42844691348_Mohan babu.docx', NULL, NULL, '2020-11-16', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'communication skill not well and expected salary high', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-13 04:03:34', 58, '2020-12-23 12:30:11', 0, NULL, 1),
(1889, 'c raghavendra', '13', '9444224492', '9445482010', 'raghavendrasrme@gmail.com', '1994-10-18', 26, '2', '2', 'c venkatesh', 'retired', 20000.00, 1, 300000.00, 300000.00, 'Chennai.', 'Chennai.', '2011130014', '1', '2', 'upload_files/candidate_tracker/54742602511_My New Resume.docx', NULL, NULL, '2020-11-16', 0, '', '5', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Hearing xxamp Speaking disability. Will not sustain for a long', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-13 04:45:57', 64, '2020-12-28 02:54:23', 0, NULL, 1),
(1890, 'Jagan', '21', '9003045051', '', 'Jaganperumal5555@gmail.com', '1998-03-22', 22, '2', '2', 'Perumal', 'Own', 50000.00, 1, 15000.00, 17000.00, 'Ambattur', 'Ambattur', '2011130015', '1', '2', 'upload_files/candidate_tracker/85448621234_jagan resume.pdf', NULL, NULL, '2020-11-17', 1, '', '8', '', '1970-01-01', 0.00, '11:59 AM', '', '1970-01-01', '2', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-13 11:51:02', 7, '2020-11-17 05:16:47', 0, NULL, 1),
(1891, '', '0', '9962019908', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011140001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-14 01:58:12', 0, NULL, 0, NULL, 1),
(1892, 'SALAHUDDIN K', '13', '7904910390', '', 'syedsalahuddin065@gmail.com', '1997-07-10', 23, '2', '2', 'KAMRUDDIN', 'PLASTIC MERCHANT', 22000.00, 3, 22000.00, 25000.00, '39f perambur high road jamalia chennai', '39f Perambur High Road Jamalia Chennai', '2011150001', '1', '2', 'upload_files/candidate_tracker/86543963625_salahuddin_od_resume.pdf', NULL, NULL, '2020-11-16', 0, '', '5', '27', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'Task Incomplete.  He dont know how to handle the errors.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-11-15 07:07:42', 65, '2020-12-24 01:23:30', 0, NULL, 1),
(1893, 'Mahesh v', '13', '9025280137', '', 'mahesh41840@gmail.com', '2000-05-04', 20, '2', '2', 'Venkatesan s', 'Mazoor(ch.p.t)', 200000.00, 1, 0.00, 12000.00, '2/403, muthamizh Nagar, kodungaiyur, che-118', '2/403, Muthamizh Nagar, Kodungaiyur, Che-118', '2011150002', '1', '1', 'upload_files/candidate_tracker/95599115287_1605449729119_Mahesh Resume.docx', NULL, NULL, '2020-11-16', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not strong in basic skill.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-15 07:49:07', 64, '2020-12-23 01:11:29', 0, NULL, 1),
(1894, 'Sanjeev Kannan', '13', '8681892849', '', '', '1995-02-04', 25, '3', '2', 'Venkatachalam', 'Supervisor in hotel', 7000.00, 1, 300000.00, 400000.00, 'Salem', 'Salem', '2011150003', '', '2', 'upload_files/candidate_tracker/1329753006_Sanjeev Resume-converted.pdf', NULL, NULL, '2020-11-16', 90, '', '8', '', '1970-01-01', 0.00, '04:30 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-15 08:38:35', 7, '2020-11-16 06:17:33', 0, NULL, 1),
(1895, 'Jinesh E', '13', '8056036186', '8608268127', 'jine.jinesh23@gmail.com', '1998-03-23', 22, '2', '1', 'Ellaiyan K', 'Fisher Man', 32500.00, 3, 32500.00, 37500.00, 'chennai', 'chennai', '2011150004', '1', '2', 'upload_files/candidate_tracker/86757808854_1603793485955_Jinesh E.pdf', NULL, NULL, '2020-11-16', 15, '', '5', '28', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'Not strong in basic skillset.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-15 09:52:33', 65, '2020-12-24 12:44:04', 0, NULL, 1),
(1896, 'yokesh m', '6', '8838381056', '', 'yokeshkumar907@gmail.com', '1999-09-18', 21, '1', '2', 'moorthy', 'tailor', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2011160001', '', '1', 'upload_files/candidate_tracker/32028106017_pqrs.pdf', NULL, NULL, '2020-11-16', 0, 'jobs', '5', '57', '1970-01-01', 0.00, '12:53 PM', '', '1970-01-01', '2', 'he is looking govt job .. and voice is not good', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 10:50:53', 50, '2020-11-16 01:07:02', 0, NULL, 1),
(1897, 'Harfath', '13', '9597240885', '8838142511', 'Harfath90@gmail.com', '1998-06-22', 22, '3', '2', 'Karimullah', 'Passed away', 12000.00, 1, 13000.00, 15000.00, 'Velacherry', 'Thiruvannamalai', '2011160002', '', '2', 'upload_files/candidate_tracker/41206925397_1598510237373Resume_Harfath.pdf', NULL, NULL, '2020-11-17', 0, '', '8', '', '1970-01-01', 0.00, '03:01 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 11:46:08', 7, '2020-11-17 05:16:39', 0, NULL, 1),
(1898, 'Somasundaram', '5', '9087405390', '7299176163', 'sundaramsoma11@gmail.com', '1991-12-23', 28, '1', '2', 'Veeeiaha', 'Self employed', 10000.00, 0, 21000.00, 23000.00, 'North Chennai', 'North Chennai', '2011160003', '', '2', 'upload_files/candidate_tracker/12226957093_Resume.docx', NULL, NULL, '2020-11-16', 0, '5181', '3', '8', '2020-11-19', 300000.00, '12:06 PM', '5', '1970-01-01', '1', '21192 th and for lokesh team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 12:01:58', 7, '2020-11-17 05:22:22', 0, NULL, 1),
(1899, 'john britto', '6', '9080013278', '', 'johnbrito1806@gmail.com', '2000-06-18', 20, '2', '2', 'johnson', 'attender', 9500.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2011160004', '1', '1', 'upload_files/candidate_tracker/30696189109_efgh.pdf', NULL, NULL, '2020-11-16', 0, '', '3', '8', '1970-01-01', 156000.00, '12:46 PM', '2', '1970-01-01', '2', '13K ctc for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-16 12:17:23', 7, '2020-11-16 06:16:54', 0, NULL, 1),
(1900, 'Naveen Kumar G', '13', '9444900261', '9894527297', 'Konaveenkumar777@gmail.com', '1998-02-19', 22, '2', '2', 'Gopalakrishnan R', 'Self employed', 5000.00, 1, 0.00, 10000.00, 'Arakkonam', 'Arakkonam', '2011160005', '1', '1', 'upload_files/candidate_tracker/59626944250_Naveen_Kumar_G_Resume.docx', NULL, NULL, '2020-11-17', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Know basic skill set.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-16 12:29:15', 64, '2020-12-28 03:05:24', 0, NULL, 1),
(1901, 'Thameem Shahul Hameed', '13', '7904788499', '', 'thameemsha12@gmail.com', '1995-11-21', 24, '3', '2', 'Abdul Rahim', 'Buisness', 15000.00, 1, 0.00, 13000.00, 'Tenkasi', 'Tenkasi', '2011160006', '', '1', 'upload_files/candidate_tracker/81541405226_ThameemCV.pdf', NULL, NULL, '2020-11-21', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 12:39:16', 50, '2020-11-21 06:15:49', 0, NULL, 1),
(1902, 'Kumaravel', '13', '9677783765', '', 'P.kumaravel1990@gmail.com', '1990-02-24', 30, '3', '1', 'Priya', 'Spouse', 22500.00, 1, 0.00, 30000.00, 'A.agaram, Thittakuty (tk), Cuddalore (dt) 606304', 'A.Agaram, Thittakuty (Tk), Cuddalore (Dt) 606304', '2011160007', '', '2', 'upload_files/candidate_tracker/23643934274_kumaravel 2020.pdf', NULL, NULL, '2020-11-17', 0, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 01:13:50', 1, '2020-11-16 01:55:10', 0, NULL, 1),
(1903, 'Anandhan', '5', '9159359630', '', 'videalanand@gmail.com', '1998-07-17', 22, '2', '2', 'Palani', 'Farmer', 5.00, 0, 15.00, 20.00, 'Tiruvannamalai', 'Chennai', '2011160008', '1', '2', 'upload_files/candidate_tracker/2167389355_Anandhan Resume 2.doc', NULL, NULL, '2020-11-17', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '5', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-16 01:15:29', 1, '2020-11-16 01:20:28', 0, NULL, 1),
(1904, 'ajith kumar', '6', '8098662485', '8754963180', 'thalaajith895@gmail.com', '1997-05-09', 23, '2', '2', 'shanmugam', 'farmer', 20000.00, 1, 18000.00, 20000.00, 'thiruvallur', 'vadapalani', '2011160009', '3', '2', 'upload_files/candidate_tracker/48653740559_ajithkumar.pdf', NULL, NULL, '2020-11-16', 0, '', '5', '8', '1970-01-01', 0.00, '02:32 PM', '', '1970-01-01', '1', 'holds offer in JIO, still serving in sbi cards and lic in part time. pronunciation is also not clear.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 01:23:41', 50, '2020-11-16 02:56:02', 0, NULL, 1),
(1905, 'Sandhiya', '13', '9094660315', '7708839012', 'sandhiyaganesh95@gmail.com', '1995-07-01', 25, '3', '2', 'Ganesan', 'Bus conductor', 50000.00, 1, 400000.00, 480000.00, 'Chennai', 'Chennai', '2011160010', '', '2', 'upload_files/candidate_tracker/43519348626_SandhiyaGanesan02112020.pdf', NULL, NULL, '2020-11-16', 2, '', '8', '', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 01:32:09', 7, '2020-11-16 06:17:24', 0, NULL, 1),
(1906, 'Kishore M', '6', '8608703816', '9003041713', 'Kishorekumar071196@gmail.com', '1996-11-07', 24, '1', '2', 'Murugesan', 'Coconut sales in tricycle', 12000.00, 2, 11500.00, 15000.00, 'Kknagar', 'Kknagar', '2011160011', '', '2', 'upload_files/candidate_tracker/31534748976_Resume (1).pdf', NULL, NULL, '2020-11-16', 0, '5741', '5', '16', NULL, 0.00, '03:12 PM', '0', NULL, '1', 'low profile ,no sales knowledge', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 02:47:57', 1, '2020-11-16 03:18:49', 0, NULL, 1),
(1907, 'sivakumar', '13', '6383239466', '7558181337', 'siva1105kumar@gmail.com', '1999-11-05', 21, '2', '2', 'Arumugapandian', 'former', 12000.00, 2, 0.00, 10000.00, 'thoothukudi', 'CHENNAI', '2011160012', '1', '1', 'upload_files/candidate_tracker/53408195189_sivakumar-resume 2.0.PDF.pdf', NULL, NULL, '2020-11-20', 0, '', '3', '8', '2020-12-02', 101400.00, '11:00 AM', '5', '1970-01-01', '2', '8k ctc for it', '2', '2', '2', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-16 03:10:16', 64, '2020-12-23 01:17:56', 0, NULL, 1),
(1908, 'anand kengal', '6', '8867032564', '9986103258', 'anandkengal03@gmail.com', '1998-06-05', 22, '2', '2', 'appanna kengla', 'good communication', 20000.00, 4, 0.00, 20000.00, 'kalaburgi', 'banglore', '2011160013', '1', '1', 'upload_files/candidate_tracker/71146341491_WhatsApp Image 2020-11-17 at 2.55.41 PM-converted.pdf', NULL, NULL, '2020-11-17', 0, '', '5', '30', '1970-01-01', 0.00, '02:59 PM', '', '1970-01-01', '2', 'he will not suit for this field and he donxquott know basic english', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-16 03:33:47', 50, '2020-11-17 03:21:00', 0, NULL, 1),
(1909, 'Ganesh Kumar', '6', '8825694812', '', 'gk676636@gmail.com', '1999-11-16', 21, '2', '2', 'Johnraj', 'Own business', 20000.00, 2, 0.00, 16.00, 'Chennai', 'Chennai', '2011160014', '1', '1', 'upload_files/candidate_tracker/9238979694_RESUME .pdf', NULL, NULL, '2020-11-17', 0, '', '5', '16', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'low profile ,no communication skills', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-16 04:23:52', 50, '2020-11-17 10:34:47', 0, NULL, 1),
(1910, '', '0', '9551505206', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011160015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 04:25:14', 0, NULL, 0, NULL, 1),
(1911, 'sujay simha', '6', '6363587894', '', 'ssimha28@gmail.com', '1996-12-17', 23, '2', '2', 'a. raghavendrachar', 'retired accountant', 9000.00, 0, 0.00, 4.12, 'hospet', 'banglore', '2011160016', '1', '2', 'upload_files/candidate_tracker/8166291295_WhatsApp Image 2020-11-18 at 11.16.56-converted.pdf', NULL, NULL, '2020-11-18', 0, '', '5', '30', '1970-01-01', 0.00, '11:13 AM', '', '1970-01-01', '1', 'he is looking for high package and he will not suite for our process', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-16 05:32:18', 7, '2020-11-18 06:18:54', 0, NULL, 1),
(1912, 'vellaisamy c', '6', '8838321671', '', 'vellaisamy087@gmail.com', '1995-12-28', 24, '2', '2', 'chinnaiya p', 'former', 35000.00, 3, 27000.00, 27000.00, 'trichy', 'chennai', '2011160017', '1', '2', 'upload_files/candidate_tracker/50557184611_resume new.pdf', NULL, NULL, '2020-11-17', 15, '', '5', '36', NULL, 0.00, '11:38 AM', '0', NULL, '1', 'NOT FIT', '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-16 06:33:40', 1, '2020-11-17 12:02:12', 0, NULL, 1),
(1913, 'Vinoth Kumar', '5', '6379660697', '9791293415', 'saivino9110@gmail.com', '1991-09-10', 29, '2', '2', 'Palani.m', 'Expired', 25000.00, 1, 25000.00, 30000.00, 'Tiruvallure', 'Chennai', '2011160018', '3', '2', 'upload_files/candidate_tracker/50731132776_Vinoth Resume.docx', NULL, NULL, '2020-11-17', 15, '', '3', '8', '2020-11-23', 276000.00, '12:00 PM', '6', '2021-03-31', '1', '23K CTC,PT - 208, for GK team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 07:19:14', 7, '2020-11-23 01:02:23', 0, NULL, 1),
(1914, 'swetha', '13', '8778254075', '8144639941', 'swethavelsjz@gmail.com', '1999-05-29', 21, '3', '2', 'jeyarani', 'beedi employee', 18000.00, 2, 15000.00, 25000.00, 'vickramasingapuram', 'coimbatore', '2011160019', '', '2', 'upload_files/candidate_tracker/87928415447_resume2.pdf', NULL, NULL, '2020-11-17', 10, '', '8', '', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 07:53:53', 7, '2020-11-17 05:16:23', 0, NULL, 1),
(1915, 'hreyans', '13', '9962685851', '', 'shs@live.in', '1994-08-30', 26, '2', '2', 'ttam', 'own', 200000.00, 1, 365000.00, 600000.00, 'hennai', 'hennai', '2011170001', '1', '2', 'upload_files/candidate_tracker/24540655704_Camera.pdf', NULL, NULL, '2020-11-18', 0, '', '5', '27', '1970-01-01', 0.00, '11:52 AM', '', '1970-01-01', '2', 'Not Good in Technical.  Already attended before 6 Months.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-17 08:43:21', 64, '2020-12-23 01:13:27', 0, NULL, 1),
(1916, 'harishkumar m.p', '6', '9535352421', '8050705939', 'harishkumarmph69@gmail.com', '1995-11-10', 25, '1', '2', 'purushotham m.s', 'F.D.A', 35000.00, 1, 17000.00, 25000.00, 'K.r.pete', 'mysore', '2011170002', '', '2', 'upload_files/candidate_tracker/66455980821_Harish-converted-1.pdf', NULL, NULL, '2020-11-18', 10, '50016685', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 09:54:40', 1, '2020-11-17 10:05:50', 0, NULL, 1),
(1917, '', '0', '8277418218', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011170003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 10:06:08', 0, NULL, 0, NULL, 1),
(1918, 'santhiyagu haris', '13', '9206307441', '', 'ariscareer@gmail.com', '1995-04-28', 25, '3', '2', 'james', 'farmer', 10000.00, 2, 5.00, 7.00, 'Dindigul', 'Dindigul', '2011170004', '', '2', 'upload_files/candidate_tracker/12042890730_ArisRegan_resume.docx.pdf', NULL, NULL, '2020-11-17', 40, '', '8', '', '1970-01-01', 0.00, '10:37 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 10:10:23', 7, '2020-11-17 05:16:14', 0, NULL, 1),
(1919, '', '0', '8667272116', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011170005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 10:18:29', 0, NULL, 0, NULL, 1),
(1920, 'R.Anandhan', '6', '8778673516', '9176355562', 'ranandhan60@gmail.com', '1997-01-07', 23, '2', '2', 'Ranganathan', 'Labour', 15000.00, 1, 19000.00, 20000.00, 'Chennai', 'Pallavaram', '2011170006', '1', '2', 'upload_files/candidate_tracker/39004225409_2 pages resume 2222222.docx', NULL, NULL, '2020-11-18', 15, '', '5', '57', NULL, 0.00, '02:15 PM', '0', NULL, '1', 'voice is not good ..', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-17 11:52:26', 1, '2020-11-18 02:22:14', 0, NULL, 1),
(1921, 'D. Ajitha', '4', '8838729003', '6381643281', 'ajidevakumar16@gmail.com', '1998-05-16', 22, '1', '2', 'Devakumar', 'Marketing', 16000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011170007', '', '1', 'upload_files/candidate_tracker/60917763308_RESUME Ajitha.docx.pdf', NULL, NULL, '2020-11-17', 0, 'P1122', '3', '8', '1970-01-01', 120000.00, '12:04 PM', '2', '1970-01-01', '2', '10K for Muthu team', '1', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 11:59:10', 7, '2020-11-18 06:24:53', 0, NULL, 1),
(1922, 'rajasekar m', '13', '8807909900', '', 'mymailrajasekar@gmail.com', '1994-02-02', 26, '3', '2', 'madankumar s', 'weaver', 10000.00, 1, 240000.00, 360000.00, 'salem', 'salem', '2011170008', '', '2', 'upload_files/candidate_tracker/30465156066_Rajasekar M RESUME 2020.pdf', NULL, NULL, '2020-11-19', 0, '', '5', '8', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'will not join', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 12:09:25', 1, '2020-11-17 12:27:48', 0, NULL, 1),
(1923, 'Sandhya.a.srinivasan', '5', '9360689741', '9789853364', 'aasandhya2812@gmail.com', '1993-12-28', 26, '3', '2', 'A.srinivasan', 'Insurance Consultant', 100000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2011170009', '', '2', 'upload_files/candidate_tracker/63194749197_Sandhya\'s Resume.pdf', NULL, NULL, '2020-11-17', 0, '', '5', '36', NULL, 0.00, '12:27 PM', '0', NULL, '1', 'Not fit', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 12:23:31', 1, '2020-11-17 12:33:25', 0, NULL, 1),
(1924, '', '0', '6360304073', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011170010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 12:53:18', 0, NULL, 0, NULL, 1),
(1925, 'k. asha', '13', '7598433877', '9442204833', 'ashalaughlin@gmail.com', '1990-10-31', 30, '4', '1', 'c. laughlindhas', 'php developer', 20000.00, 2, 20000.00, 25000.00, 'kanyakumari', 'chennai', '2011170011', '', '2', 'upload_files/candidate_tracker/51581766174_ASHA RESUME.docx', NULL, NULL, '2020-11-19', 0, '', '5', '27', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'Telephonic interview taken. She is not good in technical. ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 12:55:31', 1, '2020-11-17 01:15:25', 0, NULL, 1),
(1926, 'vigneswaran.v', '6', '8608179491', '', 'vickyvignesh8889@gmail.com', '1998-08-23', 22, '2', '2', 'venkatesh.g', 'private employee', 30000.00, 3, 25000.00, 25000.00, 't.nagar', 't.nagar', '2011170012', '3', '2', 'upload_files/candidate_tracker/53561252679_VICKY RESUME.docx', NULL, NULL, '2020-11-17', 15, '', '5', '57', NULL, 0.00, '01:14 PM', '0', NULL, '1', 'voice and appearance very bad.. ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 12:57:21', 1, '2020-11-17 01:49:16', 0, NULL, 1),
(1927, 'akash r', '5', '9360499910', '7358784106', 'akashribaroo@gmail.com', '1998-08-05', 22, '2', '2', 'ravichandhiran k', 'farmer', 45000.00, 4, 25000.00, 30000.00, 'chennai', 'chennai', '2011170013', '3', '2', 'upload_files/candidate_tracker/36043487710_Akash R(2) (1).docx', NULL, NULL, '2020-11-23', 0, '', '3', '8', '2020-12-03', 312000.00, '01:30 PM', '5', '1970-01-01', '1', '26k ctc for lokesh team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 01:31:49', 7, '2020-12-02 04:24:00', 0, NULL, 1),
(1928, 'Sriman', '22', '8526365801', '', '', '1995-07-22', 25, '2', '2', 'Sivanraj', 'Business', 20000.00, 1, 13000.00, 18000.00, 'Tirunelveli', 'Chennai', '2011170014', '1', '2', 'upload_files/candidate_tracker/67205581950_Sriman Resume.docx', NULL, NULL, '2020-11-19', 0, '', '6', '0', NULL, 0.00, '02:23 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-17 02:20:07', 1, '2020-11-17 02:23:44', 0, NULL, 1),
(1929, 'D.Vimal Raj', '5', '9840455175', '9840234178', 'Vimalprop@gmail.com', '1991-01-16', 29, '1', '2', 'Dhivyanathan', 'Business', 300000.00, 1, 25000.00, 28000.00, 'Chennai', 'Chennai', '2011170015', '', '2', 'upload_files/candidate_tracker/42415945482_Vimal_Resume_2020.docx', NULL, NULL, '2020-11-17', 0, '5369', '3', '8', '2020-12-03', 276000.00, '02:38 PM', '3', '2025-02-11', '1', '23k  for sarath team', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 02:30:19', 7, '2020-11-27 02:31:19', 0, NULL, 1),
(1930, 'T. R. Karthick Prasanna', '13', '9629643157', '', 'krishvicky97@gmail.com', '1997-12-07', 22, '2', '2', 'T. R. Ramesh', 'Medical oxygen dealer', 35000.00, 1, 0.00, 15000.00, 'Madurai', 'Madurai', '2011170016', '1', '1', 'upload_files/candidate_tracker/56591084226_kARTHICK RESUME-converted.pdf', NULL, NULL, '2020-11-19', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-17 02:32:36', 1, '2020-11-17 02:35:27', 0, NULL, 1),
(1931, '', '0', '8867032664', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011170017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 02:37:30', 0, NULL, 0, NULL, 1),
(1932, 'Selvam P', '13', '8610740624', '9042543852', 'selva.kec.cse@gmail.com', '1991-04-13', 29, '3', '2', 'Parthiban M', 'Farmer', 25000.00, 1, 240000.00, 360000.00, 'Krishnagiri', 'Krishnagiri', '2011170018', '', '2', 'upload_files/candidate_tracker/62045832065_1605508870340Resume_selvam.docx', NULL, NULL, '2020-11-21', 30, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 02:43:06', 50, '2020-11-21 06:15:58', 0, NULL, 1),
(1933, 'Naveenkumar V', '13', '9442551589', '', 'naveenvelu49@gmail.com', '1995-06-12', 25, '1', '2', 'Velu K', 'Farmer', 20000.00, 2, 21000.00, 30000.00, 'Krishnagiri', 'Chennai', '2011170019', '', '2', 'upload_files/candidate_tracker/58121581240_Naveen resume3.pdf', NULL, NULL, '2020-11-18', 0, '58', '8', '27', NULL, 0.00, '03:33 PM', '0', NULL, '2', 'this candidate wrongly mapped. he is not attended', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 03:30:27', 1, '2020-11-17 03:35:17', 0, NULL, 1),
(1934, 'K.r.arun', '5', '8939495837', '', 'arunrajesh1108@gmail.com', '1998-10-01', 22, '2', '2', 'K.g.ramesh', 'Clerk', 15000.00, 1, 0.00, 17000.00, 'Tiruvootriyur', 'Chennai', '2011170020', '1', '1', 'upload_files/candidate_tracker/64390925395_my resume.doc', NULL, NULL, '2020-11-18', 0, '', '5', '31', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '1', 'Not interested in sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-17 03:49:22', 7, '2020-11-18 11:27:26', 0, NULL, 1),
(1935, 'Aravinthraj', '13', '7502853922', '', 'aravinthrajrpm003@gmail.com', '2001-01-20', 19, '2', '2', 'Ramalingam', 'Farmer', 16000.00, 3, 0.00, 15000.00, 'Sirkazhi', 'Sirkazhi', '2011170021', '1', '1', 'upload_files/candidate_tracker/4873368706_Aravinthraj_resume.pdf', NULL, NULL, '2020-11-20', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not strong in basic skillset.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-17 05:24:55', 64, '2020-12-23 01:24:49', 0, NULL, 1),
(1936, 'shaji m kurup', '5', '9840133908', '9382315268', 'shaji.madhusudana@gmail.com', '1968-05-31', 52, '2', '1', 't k madhusudana kurup', 'farmer', 50000.00, 2, 50000.00, 60000.00, 'chennai', 'chennai', '2011170022', '3', '2', 'upload_files/candidate_tracker/49353345214_SHAJI MADHUSUDANA KURUP 2020(2) (1).docx', NULL, NULL, '2020-11-18', 7, '', '5', '29', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'aged and not fit for our profile', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 05:30:52', 1, '2020-11-17 06:52:35', 0, NULL, 1),
(1937, 'Azarudeen', '5', '9962414617', '8072147278', 'itsmeazar@gmail.com', '1991-07-03', 29, '2', '2', 'Raja Rahim', 'BUSINESS', 30000.00, 2, 300000.00, 375000.00, 'Chennai', 'Chennai', '2011170023', '1', '2', 'upload_files/candidate_tracker/55895134280_1605507748334_current resume.pdf', NULL, NULL, '2020-11-19', 0, '', '5', '36', '1970-01-01', 0.00, '12:20 PM', '', '1970-01-01', '1', 'Not fit', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-17 06:08:37', 58, '2020-12-29 10:17:20', 0, NULL, 1),
(1938, '', '0', '9600353962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011170024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 08:42:15', 0, NULL, 0, NULL, 1),
(1939, '', '0', '7358604677', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 09:38:18', 0, NULL, 0, NULL, 1),
(1940, 'arul prakash g', '5', '9943908728', '9025356371', 'arul2global@gmail.com', '1990-02-09', 30, '2', '2', 'govindasamy m', 'farmer', 10000.00, 2, 3.20, 4.20, 'Krishnagiri', 'CHENNAI', '2011180002', '1', '2', 'upload_files/candidate_tracker/24676810694_UPDATED RESUME.pdf', NULL, NULL, '2020-11-21', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'will not join.', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-18 10:31:50', 58, '2020-12-23 01:36:13', 0, NULL, 1),
(1941, '', '0', '9447608324', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 10:33:29', 0, NULL, 0, NULL, 1),
(1942, 'Akshy ST', '5', '8248841810', '7448322508', 'akshy00000@gmail.com', '2000-07-16', 20, '2', '2', 'Latha', 'Tilor', 9500.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011180004', '8', '1', 'upload_files/candidate_tracker/12825272508_AKSHY RESUME OG.docx', NULL, NULL, '2020-11-18', 0, '', '3', '8', '2020-11-23', 189600.00, '10:54 AM', '6', '2021-03-26', '1', '15800 CTC,15010 TH', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 10:44:57', 7, '2020-11-21 06:20:55', 0, NULL, 1),
(1943, 'Karutha pandian', '5', '7448322508', '8248841810', 'karuthapandian.kp15@gmail.com', '1999-06-15', 21, '2', '2', 'Thanga mari', 'Government employee', 23000.00, 2, 0.00, 15000.00, 'Velachery', 'Velachery', '2011180005', '8', '1', 'upload_files/candidate_tracker/76895640264_R.KARUTHA PANDIAN_RESUME_2-5464.pdf', NULL, NULL, '2020-11-18', 0, '', '3', '8', '2020-11-23', 227400.00, '10:55 AM', '4', '2021-05-06', '1', 'CTC-18950/TH - 18002.50', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 10:45:57', 7, '2020-11-21 06:21:51', 0, NULL, 1),
(1944, 'shanthi', '16', '7305442641', '', 'shanus1964@gmail,com', '1985-01-17', 35, '1', '2', 'ttam', 'na', 200000.00, 2, 365000.00, 380000.00, 'chennai', 'chennai', '2011180006', '', '2', 'upload_files/candidate_tracker/85786757659_Shanthi CV_2020.pdf', NULL, NULL, '2020-11-18', 0, '55600', '5', '8', NULL, 0.00, '11:18 AM', '0', NULL, '2', 'not upto the level for mis', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 11:11:59', 1, '2020-11-18 12:20:47', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1945, 'Velmurugan', '5', '9940305223', '', 'vels83murugan@gamail.com', '1981-07-27', 39, '2', '1', 'Gomathi', 'SENIOR SALES OFFICER', 15000.00, 5, 15000.00, 20000.00, 'Chennai', 'Chennai', '2011180007', '3', '2', 'upload_files/candidate_tracker/85172421554_Central_Employment_Exchange.pdf', NULL, NULL, '2020-11-23', 0, '', '5', '29', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'not selected', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 11:23:22', 50, '2020-11-23 10:54:25', 0, NULL, 1),
(1946, 'g.vinoth kumar', '13', '7338762667', '8883416696', 'gvinoth293@gmail.com', '1995-05-07', 25, '2', '2', 'c.ganesan', 'tailor', 10000.00, 1, 25000.00, 25000.00, 'panruti', 'velachery', '2011180008', '1', '2', 'upload_files/candidate_tracker/70860622168_VinothResnew.pdf', NULL, NULL, '2020-11-20', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Task Incomplete.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-18 12:14:35', 64, '2020-12-23 01:25:48', 0, NULL, 1),
(1947, 'Sankar', '13', '8248600342', '', '', '1995-05-28', 25, '2', '2', 'Uoorkavalaperumal', 'Farmer', 10000.00, 0, 13000.00, 20000.00, 'Tirunelveli', 'Chennai', '2011180009', '1', '2', 'upload_files/candidate_tracker/80817702614_Sankar_Resume.doc', NULL, NULL, '2020-11-20', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'He is Not Good in Technical, Attitude is not good.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-18 12:38:06', 64, '2020-12-23 01:26:56', 0, NULL, 1),
(1948, 'Dhanalakshmi. D', '5', '8015267694', '8682095120', 'dhanadivya1311@gmail.com', '1994-11-13', 26, '2', '2', 'P.Dhamodaran ( late)', 'Nil', 72000.00, 1, 18000.00, 25000.00, '23/11 3rd lane khana baghtriplicane chennai 600005', 'Same as above', '2011180010', '1', '2', 'upload_files/candidate_tracker/61034061103_dhana 2020.pdf', NULL, NULL, '2020-11-19', 30, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-18 01:06:57', 1, '2020-11-18 01:12:44', 0, NULL, 1),
(1949, 'Naveen Kumar.G', '6', '9344882895', '9600847360', 'naveennkas@gmail.com', '1996-06-28', 24, '2', '2', 'P.Govinda samy', 'Auto driver', 15000.00, 1, 10000.00, 10000.00, '29/2 rathasabavathy street oldwashermenpet', '29/2 rathasabavathy street oldwashermenpet', '2011180011', '1', '2', 'upload_files/candidate_tracker/36660798794_naveen resume.docx', NULL, NULL, '2020-11-18', 0, '', '3', '8', '2020-11-20', 156000.00, '01:40 PM', '5', '1970-01-01', '2', '13K for syed  team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-18 01:34:49', 7, '2020-11-19 06:18:41', 0, NULL, 1),
(1950, 'Raja Raja cholan', '13', '8344222832', '', 'vrrcholan@gmail.com', '1997-07-04', 23, '2', '2', 'Venkatesan', 'Advocate', 20000.00, 1, 1.50, 18000.00, 'Chennai', 'Chennai', '2011180012', '1', '2', 'upload_files/candidate_tracker/54800807086_PHP-Developer-Rajarajacholan-2020.docx', NULL, NULL, '2020-11-21', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-18 02:46:30', 50, '2020-11-21 06:16:05', 0, NULL, 1),
(1951, '', '0', '8344892241', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 04:21:55', 0, NULL, 0, NULL, 1),
(1952, 'nirmal', '5', '8148161597', '', 'nimiricky@gmail.com', '1990-05-11', 30, '2', '2', 'natarajan c', 'retried person', 600000.00, 0, 24800.00, 27000.00, 'new washermenpet', 'new washermenpet', '2011180014', '1', '2', 'upload_files/candidate_tracker/75016158534_UpdatedResume.doc', NULL, NULL, '2020-11-20', 30, '', '3', '8', '2020-12-03', 360000.00, '12:30 PM', '5', '1970-01-01', '2', '30k ctc for sarath team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-18 04:22:05', 58, '2020-12-23 01:04:50', 0, NULL, 1),
(1953, 'thangadurai', '13', '9659330778', '', 'beemadurai@gmail.com', '1988-07-19', 32, '2', '1', 'papitha', 'education consultant', 160000.00, 2, 1020000.00, 1600000.00, 'chennai', 'chennai', '2011180015', '1', '2', 'upload_files/candidate_tracker/13548654533_Thangadurai_9yrExp.pdf', NULL, NULL, '2020-11-20', 10, '', '5', '27', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'System Task Not Completed.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-11-18 04:54:46', 65, '2020-12-24 10:07:52', 0, NULL, 1),
(1954, '', '0', '9360506641', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 05:25:32', 0, NULL, 0, NULL, 1),
(1955, '', '0', '8052469502', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 05:31:30', 0, NULL, 0, NULL, 1),
(1956, '', '0', '8710871181', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 05:42:25', 0, NULL, 0, NULL, 1),
(1957, '', '0', '9600102129', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 06:58:25', 0, NULL, 0, NULL, 1),
(1958, '', '0', '9003104475', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 09:31:25', 0, NULL, 0, NULL, 1),
(1959, 'Ponnusamy', '13', '8825808329', '7397598932', 'ponnusamy8798@gmail.com', '1998-07-08', 22, '2', '2', 'Murugesan', 'Chef', 10000.00, 2, 0.00, 10000.00, 'Namakkal', 'Namakkal', '2011180021', '1', '1', 'upload_files/candidate_tracker/20732855874_1_ponnusamy_resume.docx', NULL, NULL, '2020-11-19', 0, '', '3', '8', '2020-11-23', 120000.00, '10:00 AM', '0', NULL, '2', '9.5K for IT team', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-18 10:02:08', 1, '2020-11-18 10:08:53', 0, NULL, 1),
(1960, 'prabakaran', '13', '9003321250', '', 'prabakar.php@gmail.cm', '1991-06-05', 29, '2', '1', 'balasubramanian', 'not working', 100000.00, 1, 5.04, 7.50, 'trichy', 'chennai', '2011190001', '1', '2', 'upload_files/candidate_tracker/33861823223_Prabakaran 5+.docx', NULL, NULL, '2020-11-23', 0, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-19 08:44:36', 65, '2020-12-24 01:08:06', 0, NULL, 1),
(1961, 'Arthy.b', '5', '9790371401', '8489879121', 'Arthibala2013@gmail.com', '1992-06-05', 28, '2', '2', 'Balakrishnan', 'Bala', 50000.00, 2, 300000.00, 400000.00, 'Mannargudi', 'Chennai', '2011190002', '1', '2', 'upload_files/candidate_tracker/56033938345_Art resume.pdf', NULL, NULL, '2020-11-19', 0, '', '5', '29', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'rejected', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-19 10:22:35', 58, '2020-12-29 10:20:11', 0, NULL, 1),
(1962, 'srinivasan k', '6', '9962718831', '', 'smartseenu10@gmail.com', '1998-06-19', 22, '2', '2', 'kuppan', 'book binder', 15000.00, 0, 0.00, 25000.00, 'chennai', 'chennai', '2011190003', '1', '1', 'upload_files/candidate_tracker/3979251282_Seenu(1).docx', NULL, NULL, '2020-11-19', 0, '', '5', '57', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'voice bad', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-19 10:48:44', 7, '2020-11-19 05:08:48', 0, NULL, 1),
(1963, 'Jayanthi p', '13', '9751946371', '', 'Jaikutty1411@gmail.com', '1999-11-14', 21, '2', '2', 'Pachaiappan', 'Electrician', 12000.00, 1, 0.00, 20000.00, 'Kundrathur', 'Kundrathur', '2011190004', '1', '1', 'upload_files/candidate_tracker/85903631209_RESUME-1.docx', NULL, NULL, '2020-11-19', 0, '', '5', '28', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '2', 'She is not strong in basic php.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-19 11:54:36', 64, '2020-12-23 01:23:55', 0, NULL, 1),
(1964, 'Gurunathan', '5', '9345325569', '8754811894', 'guruchinnu28@gmail.com', '1996-11-03', 24, '2', '2', 'Jaganathan', 'Business', 15000.00, 1, 3.70, 3.70, 'RAJAPALAYAM', 'Madipakkam', '2011190005', '1', '2', 'upload_files/candidate_tracker/42416013001_GURU.docx', NULL, NULL, '2020-11-20', 0, '', '5', '51', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'rejected', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-19 11:58:52', 1, '2020-11-19 12:05:36', 0, NULL, 1),
(1965, 'Ajith Kumar M', '6', '9710063579', '7305218724', 'ajithkumar050516@gmail.com', '1997-05-05', 23, '1', '2', 'Manoharan', 'Rickshaw driver', 20000.00, 2, 13000.00, 15000.00, 'Chennai kodungaiyur', 'Chennai kodungaiyur', '2011190006', '', '2', 'upload_files/candidate_tracker/65030361396_1605771050571_1605771050382_M.AJITH KUMAR resume.doc', NULL, NULL, '2020-11-19', 0, 'P1065', '3', '8', '2020-11-23', 182700.00, '01:00 PM', '3', '2021-03-06', '1', '15225 CTC,14500 TH', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-19 12:41:48', 7, '2020-11-21 06:19:15', 0, NULL, 1),
(1966, 'Puneeth M', '6', '9066642981', '9845102572', 'punithmukund007@gmail.com', '1999-06-22', 21, '2', '2', 'Mukundhachar', 'Fresher', 300000.00, 1, 0.00, 300000.00, 'Mandya', 'Kengeri', '2011190007', '1', '1', 'upload_files/candidate_tracker/86997550089_puneethresume.pdf', NULL, NULL, '2020-11-19', 0, '', '8', '38', '1970-01-01', 0.00, '01:50 PM', '', '1970-01-01', '1', 'WORST BEHAVIOUR', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-19 01:48:21', 58, '2020-12-23 01:35:28', 0, NULL, 1),
(1967, 'PraveenRaj B', '6', '9790832930', '9791718473', 'rajpraveen347@gmail.com', '1998-04-12', 22, '1', '2', 'Babu S', 'Welding', 54000.00, 1, 15000.00, 16000.00, 'Tondiarpet', 'Thiruvottiyur', '2011190008', '', '2', 'upload_files/candidate_tracker/69864349848_stc praveen resume.docx', NULL, NULL, '2020-11-19', 0, 'P1065', '3', '8', '2020-11-20', 180000.00, '02:40 PM', '6', '2021-12-31', '1', '15k ctc for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-19 02:35:51', 7, '2020-11-19 06:12:13', 0, NULL, 1),
(1968, '', '0', '9962196312', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011190009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-19 04:23:14', 0, NULL, 0, NULL, 1),
(1969, 'Rameez basheer', '6', '9495506202', '', 'rmz.bshr@gmail.com', '1991-03-23', 29, '2', '1', 'Hamna Shirin T', 'Ayurveda Doctor', 50000.00, 2, 25000.00, 25000.00, 'Kottayam', 'Chennai', '2011190010', '1', '2', 'upload_files/candidate_tracker/6436949470_Rameez Basheer.pdf', NULL, NULL, '2020-11-20', 0, '', '5', '51', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-19 04:37:36', 50, '2020-11-20 11:27:54', 0, NULL, 1),
(1970, 'Sudhakaran V', '6', '9940281280', '8248554228', 'sudhakaranveerappan009@gmail.com', '1996-01-18', 24, '2', '2', 'Veerappan P', 'Accounts officer, IOC', 70000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2011190011', '1', '1', 'upload_files/candidate_tracker/39236549822_sudhakaran resume.docx', NULL, NULL, '2020-11-20', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-19 04:53:20', 50, '2020-11-20 06:09:02', 0, NULL, 1),
(1971, '', '0', '9894302719', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011190012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-19 08:45:17', 0, NULL, 0, NULL, 1),
(1972, '', '0', '9962096311', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011190013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-19 08:59:39', 0, NULL, 0, NULL, 1),
(1973, 'prusthothaman s', '6', '9944436619', '', 'vnbprushoth97@gmail.com', '1997-05-18', 23, '2', '2', 'saravanan s', 'electrical engineer', 10000.00, 1, 0.00, 15000.00, 'chennai', 'cmbt', '2011200001', '2', '1', 'upload_files/candidate_tracker/76702377358_Prushotaman_S_CV.pdf', NULL, NULL, '2020-11-20', 0, '', '5', '19', '1970-01-01', 0.00, '11:08 AM', '', '1970-01-01', '2', 'not fit for sale', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 11:04:21', 50, '2020-11-20 11:14:12', 0, NULL, 1),
(1974, 'Mohamed Ali', '13', '9042725327', '9551313239', 'Mohammedaliece21@gmail.com', '1998-07-31', 22, '1', '2', 'Jabar. S', 'Shop keeper', 30000.00, 4, 0.00, 12000.00, 'Chennai', 'Chennai', '2011200002', '', '1', 'upload_files/candidate_tracker/21428232608_resumemohamed2.docx', NULL, NULL, '2020-11-20', 0, 'P1123', '5', '28', NULL, 0.00, '11:14 AM', '0', NULL, '1', 'He is not good in basic skillset', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 11:10:39', 1, '2020-11-20 11:18:44', 0, NULL, 1),
(1975, '', '0', '8519838840', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011200003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 11:29:12', 0, NULL, 0, NULL, 1),
(1976, 'gokulrajan', '6', '8681034776', '7358336043', 'gokulrajanrajan6957@gmail.com', '1998-05-19', 22, '2', '2', 'thangavel', 'security', 20000.00, 2, 15000.00, 17000.00, 'villupuram', 'kottivakkam chennai', '2011200004', '1', '2', 'upload_files/candidate_tracker/8361273155_T Gokul Rajan New Resume 2020 Word.docx', NULL, NULL, '2020-11-21', 1, '', '3', '8', '2020-11-27', 192000.00, '01:26 PM', '6', '2021-03-26', '1', '16k ctc 12464 TH with esixxampPf', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-20 11:48:05', 7, '2020-11-27 10:17:13', 0, NULL, 1),
(1977, '', '0', '9944582280', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011200005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 11:58:30', 0, NULL, 0, NULL, 1),
(1978, '', '0', '9524415107', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011200006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 12:02:01', 0, NULL, 0, NULL, 1),
(1979, 'c jyothi', '5', '8520049567', '', 'jyothichalamakunta@gmail.com', '1994-06-20', 26, '2', '2', 'c rama mohan reddy', 'farmer', 10000.00, 1, 2.80, 3.70, 'andhra pradesh', 'bangalore', '2011200007', '1', '2', 'upload_files/candidate_tracker/8642781023_JYOTHI C (1) (1).docx', NULL, NULL, '2020-11-21', 0, '', '3', '8', '2020-11-27', 312000.00, '11:00 AM', '6', '2021-11-29', '2', '26k ctc no esi and pf', '5', '2', '4', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-20 01:50:31', 58, '2020-12-23 12:31:19', 0, NULL, 1),
(1980, 'n ganesh', '6', '9581291529', '8519838840', 'nanchariganesh459@gmail.com', '1996-06-10', 24, '2', '2', 'raghu', 'former', 5000.00, 1, 17000.00, 20000.00, 'Chittoor', 'Chittoor', '2011200008', '1', '2', 'upload_files/candidate_tracker/55153173809_Gani2.docx', NULL, NULL, '2020-11-20', 0, '', '5', '39', '1970-01-01', 0.00, '10:57 AM', '', '1970-01-01', '1', 'He is not suitable for our profile. Communication is too bad', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-20 03:17:23', 58, '2020-12-23 01:38:49', 0, NULL, 1),
(1981, 'Deva. K', '13', '8939734013', '9176167013', 'Devasmart000@gmail.com', '1998-05-23', 22, '2', '2', 'Kannan', 'Leather company', 100000.00, 2, 10000.00, 12000.00, 'chennai', 'chennai', '2011200009', '', '2', 'upload_files/candidate_tracker/84527762042_deva_resume.docx', NULL, NULL, '2020-11-24', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 04:00:27', 1, '2020-11-20 04:09:59', 0, NULL, 1),
(1982, 'Pugazh', '13', '9500000159', '', 'pugazhkovan83@gmail.com', '1983-06-08', 37, '2', '1', 'Thamizhazhagan', 'Red teacher', 100000.00, 1, 0.00, 300000.00, 'Washermanpet chennai', 'Washermanpet chennai', '2011200010', '1', '2', 'upload_files/candidate_tracker/11007632203_Resume.doc', NULL, NULL, '2021-02-19', 0, '', '5', '28', '1970-01-01', 0.00, '04:30 PM', '', '1970-01-01', '1', 'He is not strong in technically.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-20 04:56:50', 1, '2021-02-19 05:21:42', 0, NULL, 1),
(1983, 'Mythrayee', '13', '8838564174', '9362828131', 'm.mythrayee@gmail.com', '1990-05-25', 30, '2', '2', 'Murugesan', 'Business', 200000.00, 2, 10000.00, 150000.00, 'Chennai', 'Chennai', '2011200011', '1', '2', 'upload_files/candidate_tracker/19570757890_0_Resume_Mythrayee.docx', NULL, NULL, '2020-11-24', 15, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-20 04:57:22', 1, '2020-11-20 05:02:07', 0, NULL, 1),
(1984, '', '0', '7406909976', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011200012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 07:18:00', 0, NULL, 0, NULL, 1),
(1985, 'siva venkata sai s', '5', '8122840298', '9789976375', 'sgoutham36@gmail.com', '1994-09-03', 26, '2', '1', 'nimisha', 'house wife', 25000.00, 0, 25000.00, 32000.00, 'Chennai', 'Chennai', '2011200013', '1', '2', 'upload_files/candidate_tracker/607087299_SIVA VENKATA SAI. S.docx', NULL, NULL, '2020-11-23', 2, '', '5', '18', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'no response from the candidate.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-20 07:31:31', 50, '2020-11-23 11:41:54', 0, NULL, 1),
(1986, '', '0', '7305578589', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011210001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 02:02:58', 0, NULL, 0, NULL, 1),
(1987, 'ARUMUGASAMY', '5', '9176786223', '7871990930', 'aarumalathi90@gmail.com', '1993-10-18', 27, '2', '2', 'GURUSAMY', 'COOLI', 10000.00, 0, 23500.00, 28000.00, 'Tirunelveli', 'Chennai', '2011210002', '3', '2', 'upload_files/candidate_tracker/45968411211_1605854860958_1605768040704_Aaru2 Resume.docx', NULL, NULL, '2020-11-21', 0, '', '5', '51', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'Convicing Skill Is Poor', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 09:27:13', 1, '2020-11-21 09:54:41', 0, NULL, 1),
(1988, 'Ravikumar Rathinam', '5', '9884087535', '', 'ravikumarrathanam94@gmail.com', '1994-09-20', 26, '2', '2', 'Rathinam k', 'Farmer', 15000.00, 2, 240000.00, 300000.00, 'Dharmapuri', 'Chennai', '2011210003', '1', '2', 'upload_files/candidate_tracker/60582880721_Ravikumar Rathinam resume nov 2020.pdf', NULL, NULL, '2020-11-23', 0, '', '8', '', '1970-01-01', 0.00, '01:30 PM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-21 10:39:36', 7, '2020-11-23 06:18:26', 0, NULL, 1),
(1989, 'Sai siva chandran', '4', '7358535569', '8754144301', 'saisiva115@gmail.com', '1995-04-27', 25, '1', '2', 'N.Pichamani', 'Silver business', 15000.00, 0, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2011210004', '', '2', 'upload_files/candidate_tracker/23891724744_Siva resume.pdf', NULL, NULL, '2020-11-21', 0, '5369', '5', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'Expected Salary High And Long Distance', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 10:57:47', 50, '2020-11-21 11:27:19', 0, NULL, 1),
(1990, 'sathish b', '6', '9080589670', '8682010490', 'sathishkarthick1999@gmail.com', '2000-05-30', 20, '1', '2', 'baskar d', 'molding worker', 18000.00, 1, 0.00, 12000.00, 'kundrathur', 'kundrathur', '2011210005', '', '1', 'upload_files/candidate_tracker/64178714549_sathish.B resume_11.pdf', NULL, NULL, '2020-11-21', 0, 'p1605', '3', '8', '2020-11-23', 156000.00, '11:12 AM', '6', '2020-12-25', '1', '13K cCTC TH-12350 - TEAM SYED  BY arun', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 10:58:36', 7, '2020-11-21 06:23:58', 0, NULL, 1),
(1991, 'B. M. Benya', '13', '9442067639', '9787765795', 'benyabenz1999@gmail.com', '1999-03-17', 21, '2', '2', 'S. Ben Alexander', 'Xerox shop', 6500.00, 2, 0.00, 20000.00, 'Marthandam', 'Marthandam', '2011210006', '14', '1', 'upload_files/candidate_tracker/10617691264_1010.pdf', NULL, NULL, '2020-11-23', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 11:15:25', 7, '2020-11-23 06:18:35', 0, NULL, 1),
(1992, 'Lavanya', '13', '8310977987', '', '', '1997-05-06', 23, '2', '2', 'MS Anand', 'Artist', 60000.00, 1, 0.00, 35000.00, 'Mysore', 'Mysore', '2011210007', '14', '1', 'upload_files/candidate_tracker/77527297896_lavanya_resume.pdf', NULL, NULL, '2020-11-23', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 11:18:49', 7, '2020-11-23 06:18:57', 0, NULL, 1),
(1993, '', '0', '9894914912', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011210008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 11:36:04', 0, NULL, 0, NULL, 1),
(1994, 'mohammed thameem isthiak', '5', '9003102833', '', '', '1993-08-08', 27, '2', '2', 'ahamed ali', 'auto driver', 25000.00, 2, 21000.00, 31000.00, 'chennai', 'chennai', '2011210009', '1', '2', 'upload_files/candidate_tracker/74515225463_Resume Thameem2020.pdf', NULL, NULL, '2020-11-21', 30, '', '5', '8', '1970-01-01', 0.00, '12:42 PM', '', '1970-01-01', '1', 'will not join. exp is 28k and current 21.5k', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-21 11:50:50', 58, '2020-12-23 01:05:43', 0, NULL, 1),
(1995, 'porrselvan', '5', '6380677457', '', 'porrselvant@gmail.com', '1996-02-04', 24, '2', '2', 'thangaraj. c', 'senior engineer', 35000.00, 1, 22000.00, 28000.00, 'kolathur', 'kolathur', '2011210010', '1', '2', 'upload_files/candidate_tracker/69735266165_Resume.pdf', NULL, NULL, '2020-11-23', 0, '', '3', '8', '2020-11-27', 276000.00, '11:00 AM', '6', '2021-03-26', '1', '23K ctc no esi and pf.', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 12:24:12', 7, '2020-11-27 10:19:06', 0, NULL, 1),
(1996, 'umadevi', '13', '7010140801', '9500112217', 'umadevidevi284@gmail.com', '1997-07-09', 23, '2', '2', 'naveenkumar', 'purchase supervisor', 20000.00, 0, 12000.00, 15000.00, 'vandalur.', 'vandalur', '2011210011', '14', '2', 'upload_files/candidate_tracker/71486294724_Resume.docx', NULL, NULL, '2020-11-23', 15, '', '3', '8', '2020-12-02', 192000.00, '11:30 AM', '', '1970-01-01', '2', '16kctc for it team', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 12:29:30', 7, '2020-11-23 06:19:08', 0, NULL, 1),
(1997, 'jayasree.k', '13', '9940661930', '', 'konkkantijayashreesrinivasulu@gmail.com', '2000-03-30', 20, '2', '2', 'srinivasulu.k', 'b.tech', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2011210012', '14', '1', 'upload_files/candidate_tracker/87467792692_JAYASREE_RESUME1.pdf', NULL, NULL, '2020-11-23', 0, '', '5', '28', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'Not strong in basic skills', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 12:42:03', 1, '2020-11-22 07:33:58', 0, NULL, 1),
(1998, 'Jilson', '13', '9042121560', '', 'jilsonjildas@gmail.com', '1997-06-30', 23, '3', '2', 'K.s jipret jildas', 'Fisherman', 8000.00, 2, 180000.00, 240000.00, 'Chennai', 'Vadapalani', '2011210013', '', '2', 'upload_files/candidate_tracker/61059260236_Resume_jilson .pdf', NULL, NULL, '2020-11-21', 2, '', '8', '', '1970-01-01', 0.00, '12:47 PM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 12:43:24', 50, '2020-11-21 06:16:13', 0, NULL, 1),
(1999, 'Sachin Manoj', '13', '7012398799', '7736120684', 'achusachi333@gmail.com', '1997-04-01', 23, '4', '2', 'Manoj', 'Bussines', 10000.00, 1, 0.00, 10000.00, 'Kerala', 'Kerala', '2011210014', '', '1', 'upload_files/candidate_tracker/86169519351_Sachin Manoj_Fresher.pdf', NULL, NULL, '2020-11-27', 0, '', '6', '0', NULL, 0.00, '02:10 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 01:43:11', 1, '2020-11-21 02:11:10', 0, NULL, 1),
(2000, 'Vishnu Kumar G R', '14', '9976633152', '8248594807', 'Vishnugrkumar@gmail.com', '1996-09-13', 24, '4', '2', 'Ravindran G R', 'Business', 30000.00, 1, 300000.00, 400000.00, 'Chennai', 'Chennai', '2011210015', '', '2', 'upload_files/candidate_tracker/27356068864_my resume.pdf', NULL, NULL, '2020-11-23', 25, '', '8', '', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 01:57:08', 7, '2020-11-23 06:19:19', 0, NULL, 1),
(2001, 'Vishnu Kumar G R', '14', '8248594807', '', 'Vishnugrkumar@gmail.com', '1996-09-13', 24, '2', '2', 'G R Ravindran', 'Textile', 30000.00, 1, 300000.00, 400000.00, 'Chennai', 'Chennai', '2011210016', '14', '2', 'upload_files/candidate_tracker/12221020698_my resume.pdf', NULL, NULL, '2020-11-23', 30, '', '8', '', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 02:10:00', 7, '2020-11-23 06:19:41', 0, NULL, 1),
(2002, 'U bhavani', '13', '9476004615', '9679558561', 'bhavaniu487@gmail.com', '1997-01-07', 23, '2', '2', 'U Dinesh Kumar', 'Goverment servent', 30000.00, 1, 0.00, 20000.00, '2nd cross street, Gandhi nagar, kodungaiyur', 'No :5/31, 2nd cross street, Gandhi nagar', '2011210017', '14', '1', 'upload_files/candidate_tracker/33478543152_Bhavani.pdf', NULL, NULL, '2020-11-23', 0, '', '5', '28', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'Not strong in basic skillsets.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 02:57:09', 7, '2020-11-24 02:43:07', 0, NULL, 1),
(2003, '', '0', '9943938012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011210018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 03:11:52', 0, NULL, 0, NULL, 1),
(2004, 'devanathan r', '5', '8870365251', '', 'devanathanr14@gmail.com', '1994-11-15', 26, '2', '2', 'rajamanickam k', 'defence', 30000.00, 1, 16.00, 18.00, 'thiruvallur', 'thiruvallur', '2011210019', '3', '2', 'upload_files/candidate_tracker/85758129356_deva resume (1).docx', NULL, NULL, '2020-11-23', 0, '', '5', '29', '1970-01-01', 0.00, '11:58 AM', '', '1970-01-01', '2', 'rejected', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 05:59:33', 50, '2020-11-23 12:11:45', 0, NULL, 1),
(2005, 'R dinesh prabhu', '5', '8148243010', '8608203010', 'dineshdinu0108@gmail.com', '1994-08-11', 26, '2', '1', 'M Hemamalini', 'House wives', 20000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2011210020', '3', '2', 'upload_files/candidate_tracker/55889922104_DineshPrabhu New(3).pdf', NULL, NULL, '2020-11-23', 0, '', '3', '8', '2020-12-03', 288000.00, '11:30 AM', '5', '1970-01-01', '1', '24K ctc and no esi and pf', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 06:30:05', 7, '2020-11-24 03:19:08', 0, NULL, 1),
(2006, 'Nithya N', '13', '9626713348', '9080654233', 'nithyanatesan@gmail.com', '1984-11-12', 36, '2', '1', 'natesan g', 'developer', 15000.00, 2, 180000.00, 300000.00, 'cuddalore', 'cuddalore', '2011210021', '14', '2', 'upload_files/candidate_tracker/39486139302_nithya new resume.doc', NULL, NULL, '2020-12-10', 5, '', '10', '0', NULL, 0.00, '12:03 PM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 07:01:16', 1, '2020-11-21 07:07:22', 0, NULL, 1),
(2007, 'l baba farook', '5', '8050143398', '9866001566', 'farookbaba23@gmail.com', '1989-07-01', 31, '2', '1', 'l fakruddin', 'teacher', 55000.00, 1, 25000.00, 35000.00, 'pulivendula', 'bangalore', '2011220001', '1', '2', 'upload_files/candidate_tracker/48456832480_RESUME IN PDF.pdf', NULL, NULL, '2020-11-30', 0, '', '3', '8', '2020-12-17', 360000.00, '11:00 AM', '', '1970-01-01', '1', '30k ctc for mani team', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-22 09:41:37', 58, '2020-12-23 01:04:22', 0, NULL, 1),
(2008, 'balaji', '13', '8754430804', '', 'balajibasker0205@gmail.com', '1998-02-22', 22, '2', '2', 'basker c', 'business', 30000.00, 2, 0.00, 15000.00, 'chennai', 'Chennai', '2011220002', '14', '1', 'upload_files/candidate_tracker/65080760011_balaji cv.pdf', NULL, NULL, '2020-11-23', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-22 12:23:22', 7, '2020-11-23 06:19:56', 0, NULL, 1),
(2009, 'Naresh Kumar', '13', '9688551656', '8667750438', 'nareshnirmal27@gmail.com', '1997-04-02', 23, '2', '2', 'Pachaiyappan', 'Farmer', 10000.00, 1, 0.00, 12000.00, 'Tindivanam', 'Pondicherry', '2011220003', '14', '1', 'upload_files/candidate_tracker/51925218110_Resume1.pdf', NULL, NULL, '2020-11-23', 0, '', '5', '28', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', 'Not strong in basic skill set.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-22 12:44:09', 50, '2020-11-23 03:07:45', 0, NULL, 1),
(2010, '', '0', '8072998191', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011220004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-22 01:28:00', 0, NULL, 0, NULL, 1),
(2011, 'Kumaran S', '27', '6381914305', '7845608477', 'tvmalaikumaran15@gmail.com', '1993-07-05', 28, '2', '2', 'Sampath K', 'Farmer', 5000.00, 0, 0.00, 12000.00, 'Tiruvannamalai', 'Velachery', '2011220005', '1', '1', 'upload_files/candidate_tracker/13626597059_new chni pg resume.docx', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Relevant Exp xxamp no knowledge in .NEt C#,not suits for the client openings', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-22 02:22:40', 1, '2021-07-20 10:58:50', 0, NULL, 1),
(2012, '', '0', '9884498673', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011220006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-22 10:25:38', 0, NULL, 0, NULL, 1),
(2013, 'K.w.PAUL SILVESTER', '6', '8056946267', '9150452353', 'kwpaulsilvester@gmail.com', '2000-05-20', 20, '1', '2', 'K.W.WILLIAMS', 'Mechanic', 10000.00, 0, 0.00, 15000.00, '20/23 ezhil Nagar,thoraipakkam Chennai 600097', '20/23 ezhil nagar,thoraipakkalam, Chennai 600097', '2011230001', '', '1', 'upload_files/candidate_tracker/8092383177_Document-WPS Office.pdf', NULL, NULL, '2020-11-23', 0, '5277', '3', '8', '2020-11-26', 156000.00, '10:15 AM', '3', '2021-01-02', '1', '13K CTC FOR THIYAGU TEAM', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 10:19:49', 7, '2020-11-24 10:22:45', 0, NULL, 1),
(2014, 'G.ThangaManoja', '4', '8939636220', '9176500720', 'manoja0812@gmail.com', '1998-12-08', 21, '1', '2', 'R.Gopalakrishnan', 'Driver', 25000.00, 2, 0.00, 12000.00, 'Teynampet', 'Teynampet', '2011230002', '', '1', 'upload_files/candidate_tracker/59651201723_Manoja resume 2.docx', NULL, NULL, '2020-11-23', 0, '5588', '5', '21', NULL, 0.00, '10:38 AM', '0', NULL, '2', 'she is not suitable for our process bcz, no flow in speaking..', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 10:33:32', 1, '2020-11-23 10:55:29', 0, NULL, 1),
(2015, 'Manivannan P', '13', '8015473634', '8124206986', 'manikkr6688@gmail.com', '1997-06-06', 23, '2', '2', 'Parasuraman', 'Weaver', 10000.00, 5, 12000.00, 15000.00, 'Poonamalle', 'Poonamalle', '2011230003', '1', '2', 'upload_files/candidate_tracker/79975272340_Manivannan.pdf', NULL, NULL, '2020-11-27', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Donxquott have a Basic Knowledge. He knows only Wordpress.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-23 10:48:07', 64, '2020-12-23 01:29:37', 0, NULL, 1),
(2016, 'Mohammed Harfan Basha', '13', '8754778475', '6381114682', 'mohammedharfan26@gmail.com', '1998-06-26', 22, '2', '2', 'Chan basha', 'Butcher', 30000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2011230004', '1', '1', 'upload_files/candidate_tracker/92763609036_harfans resume.docx', NULL, NULL, '2020-11-26', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Task not Completed.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-23 01:09:56', 64, '2020-12-28 03:06:09', 0, NULL, 1),
(2017, '', '0', '8922055054', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 02:15:29', 0, NULL, 0, NULL, 1),
(2018, '', '0', '8807380459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 02:39:12', 0, NULL, 0, NULL, 1),
(2019, '', '0', '8939347453', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 02:51:02', 0, NULL, 0, NULL, 1),
(2020, '', '0', '9566232893', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 03:07:51', 0, NULL, 0, NULL, 1),
(2021, '', '0', '9962228829', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 05:42:15', 0, NULL, 0, NULL, 1),
(2022, 'Nancy', '11', '7824026242', '9841982458', 'Jnancy305@Gmail.com', '1999-05-30', 21, '2', '2', 'jeevaraj', 'Business', 10000.00, 0, 0.00, 1.00, 'Chennai', 'Chennai', '2011230010', '15', '1', 'upload_files/candidate_tracker/45137323811__Resume-1.docx', NULL, NULL, '2020-11-30', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'pronunciation is not clear and will not suite for crm', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 05:48:57', 50, '2020-11-30 12:31:29', 0, NULL, 1),
(2023, 'Senthil KUMAR.R', '6', '9025788433', '8939094674', 'Senthilkumar971999@gmail.com', '1999-07-09', 21, '2', '2', 'M.Ramesh', 'Labour', 15000.00, 0, 0.00, 15.00, 'Teynampet', 'Teynampet', '2011230011', '15', '1', 'upload_files/candidate_tracker/20731184650_RESUME senthil 2 _3_ (1).pdf', NULL, NULL, '2020-12-01', 0, '', '5', '59', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'Will not sustain for a long', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 05:57:49', 50, '2020-12-01 03:38:48', 0, NULL, 1),
(2024, 'Lavanya', '11', '7358234387', '8610829950', 'lavanyavinisha@gmail.com', '2000-03-10', 20, '2', '2', 'SELVARAJ', 'Electrician', 24000.00, 2, 0.00, 12000.00, 'No 36, Balaji Nagar mangadu Chennai-122', 'Chennai', '2011230012', '15', '1', 'upload_files/candidate_tracker/73970720787_Lavanya Selvaraj.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '11:10 AM', '', '1970-01-01', '2', 'Not fit. Location Constraint', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:06:03', 50, '2020-11-30 12:32:01', 0, NULL, 1),
(2025, 'S. KAVITHA', '11', '7092745281', '8637660693', 'kavishree202000@gmail.com', '2000-01-20', 20, '2', '2', 'SenthilVelan. S', 'Welder', 35000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011230013', '15', '1', 'upload_files/candidate_tracker/50207627046_Resume.KAVITHA.doc.docx', NULL, NULL, '2020-11-30', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not suite for crm', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:08:49', 50, '2020-11-30 11:02:44', 0, NULL, 1),
(2026, 'Sharmila Lakshmi. V', '20', '8637695197', '9087823697', 'sharmilalakshmi11925@gmail.com', '1999-10-09', 21, '2', '2', 'Vasanth. S', 'Tailor', 80000.00, 1, 16500.00, 17000.00, 'Chennai', 'Chennai', '2011230014', '15', '2', 'upload_files/candidate_tracker/83834743866_imgtopdf_generated_1111201205051.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Location Constraint', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:09:43', 50, '2020-11-30 10:55:45', 0, NULL, 1),
(2027, 'S.Geethanjali', '4', '8072189922', '6380258833', 'geethanjali05101999@gmail.com', '1999-10-05', 21, '2', '2', 'Father', 'Daily labour', 10000.00, 2, 0.00, 15000.00, 'Porur', 'Porur', '2011230015', '15', '1', 'upload_files/candidate_tracker/81931426417_', NULL, NULL, '2020-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Fit. Looking for Non voice', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:24:28', 50, '2020-11-30 11:01:26', 0, NULL, 1),
(2028, '', '0', '9884821361', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:27:56', 0, NULL, 0, NULL, 1),
(2029, '', '0', '7397408060', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:29:02', 0, NULL, 0, NULL, 1),
(2030, '', '0', '9043098658', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:33:47', 0, NULL, 0, NULL, 1),
(2031, '', '0', '7845218885', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:33:54', 0, NULL, 0, NULL, 1),
(2032, '', '0', '9360428761', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:34:00', 0, NULL, 0, NULL, 1),
(2033, '', '0', '8220596972', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:34:25', 0, NULL, 0, NULL, 1),
(2034, '', '0', '', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:35:26', 0, NULL, 0, NULL, 1),
(2035, 'S.SURESH', '6', '7094097698', '', 'benjiaft@gmail.com', '1985-12-21', 34, '1', '1', 'B.Senthamarai', 'Nil', 22000.00, 1, 0.00, 15000.00, 'Vellore', 'Vellore', '2011230023', '', '1', 'upload_files/candidate_tracker/3801492629_BENJI RESUME .pdf', NULL, NULL, '2020-11-30', 0, 'ZENFY', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:42:14', 1, '2020-11-24 06:51:51', 0, NULL, 1),
(2036, '', '0', '9003304053', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:46:45', 0, NULL, 0, NULL, 1),
(2037, 'JEYACHANDRAN L', '4', '7871116248', '8825783488', 'jeyachandran012@gmail.com', '1999-09-11', 21, '2', '2', 'LOGANATHAN K', 'Auto driver', 30000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2011230025', '15', '1', 'upload_files/candidate_tracker/8284922040_Resume.Jeyachandran.docx', NULL, NULL, '2020-11-30', 0, '', '8', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Left without attending', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:47:39', 50, '2020-11-30 12:56:15', 0, NULL, 1),
(2038, '', '0', '9962485535', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:48:33', 0, NULL, 0, NULL, 1),
(2039, 'BABU', '4', '8072086426', '9597046528', 'babu18041996@gmail.com', '1996-04-18', 24, '2', '2', 'CHELLAMUTHU', 'NLCIL Employee', 45000.00, 1, 0.00, 15000.00, 'NEYVELI', 'NEYVELI', '2011230027', '15', '1', 'upload_files/candidate_tracker/87290965631_BABU NEW.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 07:01:07', 1, '2020-11-23 07:09:13', 0, NULL, 1),
(2040, 'Kavitha.M', '4', '7397289715', '7299978070', 'kavithasumathi2000@gmail.com', '2000-02-17', 20, '2', '2', 'S.Muthuvel', 'Building Contractor', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011230028', '15', '1', 'upload_files/candidate_tracker/25743248774_imgtopdf_23112020085818.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '14', NULL, 0.00, '12:20 PM', '0', NULL, '2', 'not suitable for this profile', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 07:22:46', 1, '2020-11-30 11:22:22', 0, NULL, 1),
(2041, 'V.Aswin kumar', '4', '6301840520', '8686014510', 'aswinkumar1278@gmail.com', '1999-03-26', 21, '2', '2', 'M.Venkatesh', 'Late', 10000.00, 1, 0.00, 12000.00, 'Redhills', 'Redhills', '2011230029', '15', '1', 'upload_files/candidate_tracker/89894288810_New doc Nov 23, 2020 7.56 PM.pdf', NULL, NULL, '2020-11-26', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 07:43:02', 1, '2020-11-28 05:52:52', 0, NULL, 1),
(2042, 'Keerthiga', '4', '7448578364', '', 'keerthipandu19@gmail.com', '2000-11-20', 20, '2', '2', 'Pandu Rangan', 'Business', 30000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2011230030', '15', '1', 'upload_files/candidate_tracker/36128227108_keerthiga.P (1).pdf', NULL, NULL, '2020-11-26', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 07:55:25', 1, '2020-11-23 08:03:52', 0, NULL, 1),
(2043, '', '0', '9677421804', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 08:10:17', 0, NULL, 0, NULL, 1),
(2044, 'Aswini .G', '4', '7448550607', '8428724119', 'aswini06071999@gmail.com', '1999-07-09', 21, '2', '2', 'Guna .S', 'Cendring', 70000.00, 1, 0.00, 15000.00, 'Medavakkam ,Chennai', 'Medavakkam, Chennai', '2011230032', '15', '1', 'upload_files/candidate_tracker/92366873954_Pdf_23Nov20_7.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '8', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'language is not good. will not suite for our process.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 08:25:11', 50, '2020-11-30 11:01:33', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2045, '', '0', '9176386783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 09:23:05', 0, NULL, 0, NULL, 1),
(2046, 'M.SARALA', '4', '7397240165', '9514002240', 'saralam1652000@gmail.com', '2000-05-16', 20, '2', '2', 'K.MURUGAN', 'Wages', 20000.00, 1, 0.00, 15000.00, 'Gerugambakkam', 'Gerugambakkam', '2011230034', '15', '1', 'upload_files/candidate_tracker/86001179237_1603247585322_SARALA 2-Resume.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Location Constraint', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 09:32:39', 50, '2020-11-30 02:19:47', 0, NULL, 1),
(2047, 'Sankara Narayanan', '21', '9894883562', '8190021353', 'sankar.mek@gmail.com', '1991-03-30', 29, '2', '1', 'ganesan', 'business', 10000.00, 1, 0.00, 18000.00, 'madurai', 'madurai', '2011230035', '15', '1', 'upload_files/candidate_tracker/52098807969_Sankar', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 10:21:33', 50, '2020-12-04 06:06:07', 0, NULL, 1),
(2048, 'M.SANDHIYA', '6', '9176469889', '9094708896', 'sandym1709@gmail.com', '1999-09-17', 21, '2', '2', 'V.MAGESH', 'Carpenter', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011230036', '1', '1', 'upload_files/candidate_tracker/53259225445_Sandy Resume.pdf', NULL, NULL, '2020-11-25', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '4', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-23 10:27:21', 1, '2020-11-23 11:17:52', 0, NULL, 1),
(2049, 'S.gokul', '6', '7358242429', '9841343888', 'gokulsaravanan619@gmail.com', '1999-11-26', 20, '2', '2', 'D.saravanan', 'Fresher', 18000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2011240001', '15', '1', 'upload_files/candidate_tracker/71420827935_Gokul resume.pdf', NULL, NULL, '2020-11-30', 0, '', '8', '8', '1970-01-01', 0.00, '09:52 AM', '', '1970-01-01', '1', 'left before interview\n', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 06:27:08', 50, '2020-11-30 01:08:28', 0, NULL, 1),
(2050, 'Maheswari', '13', '9597242547', '9345269928', 'Mahebe48@gmail.com', '1991-02-28', 29, '3', '1', 'Jothiram', 'Software Tester', 45000.00, 1, 30000.00, 40000.00, 'Trichy', 'Chennai, pallavaram', '2011240002', '', '2', 'upload_files/candidate_tracker/96334988865_Maheswari M_PHP Developer_4_Yrs_Exp.doc', NULL, NULL, '2020-11-24', 0, '', '5', '27', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'Task Not Completed.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 09:32:46', 1, '2020-11-24 09:37:39', 0, NULL, 1),
(2051, 'Madhusudhan C', '5', '9738113556', '', 'thoreleusis@gmail.com', '1988-09-08', 32, '2', '1', 'B Chandrappa', 'Agriculture', 10000.00, 2, 610000.00, 610000.00, 'Bangalore', 'Bangalore', '2011240003', '1', '2', 'upload_files/candidate_tracker/53335516221_Madhusudhan Resume5.docx', NULL, NULL, '2020-12-01', 0, '', '5', '39', '1970-01-01', 0.00, '11:01 AM', '', '1970-01-01', '1', 'He will not sustain and he will not suit for our Field', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-24 09:58:18', 58, '2020-12-23 03:27:01', 0, NULL, 1),
(2052, 'Jenifer. P', '13', '9361064950', '9514214433', 'Cjenifer. 1995@gmail.com', '1995-04-28', 25, '3', '1', 'Gnana Kirubakaran', 'Electrical engineer', 36000.00, 1, 240000.00, 400000.00, 'Chennai', 'Chennai', '2011240004', '', '2', 'upload_files/candidate_tracker/30619471772_Jenifer_Resume.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 10:35:56', 1, '2020-11-24 10:43:13', 0, NULL, 1),
(2053, '', '0', '7358644012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011240005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 11:12:27', 0, NULL, 0, NULL, 1),
(2054, '', '0', '8072260605', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011240006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 11:36:09', 0, NULL, 0, NULL, 1),
(2055, '', '0', '7305553280', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011240007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 11:45:27', 0, NULL, 0, NULL, 1),
(2056, 'Akashram S', '6', '9944696290', '7010456379', 'akashram597@gmail.com', '1998-03-23', 22, '2', '2', 'R.SIVAKUMAR', 'Head constable', 30000.00, 2, 0.00, 12000.00, 'No.47/ 37th street, GKM colony ,kolathur ,chennai', 'No.47/37th street,GKM colony ,kolathur,Chennai', '2011240008', '1', '1', 'upload_files/candidate_tracker/6026368895_1597990605947Resume_AKASHRAM.doc', NULL, NULL, '2020-11-28', 0, '', '3', '8', '2020-11-30', 156000.00, '11:00 AM', '6', '2021-08-05', '1', '13k for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 11:54:44', 7, '2020-12-01 12:32:07', 0, NULL, 1),
(2057, 'Unni Krishnan. M', '6', '9360382017', '9952938091', 'krishofficial2104@gmail.com', '2001-04-25', 19, '2', '2', 'Mohan. S', 'MTC Senior Driver', 35000.00, 1, 0.00, 15000.00, 'MMDA Colony, Arumbakkam', 'MMDA Colony, Arumbakkam', '2011240009', '1', '1', 'upload_files/candidate_tracker/5877754223_1588063754577Resume_Unni.pdf', NULL, NULL, '2020-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '12:29 PM', '', '1970-01-01', '1', 'Not much communicative, will not be fit', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 02:16:56', 50, '2020-11-29 09:38:15', 0, NULL, 1),
(2058, '', '0', '9786023868', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011240010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 04:48:06', 0, NULL, 0, NULL, 1),
(2059, 'Abdul Kuddus', '14', '8610456088', '9952484686', 'abdulkuddusmca@gmail.com', '1993-08-19', 27, '2', '2', 'Mohammad Salahudeen', 'Mechanic', 250000.00, 1, 250000.00, 350000.00, 'Chennai', 'Coimbatore', '2011240011', '14', '2', 'upload_files/candidate_tracker/64385924444_Abdulkuddus_CV.pdf', NULL, NULL, '2020-11-25', 15, '', '6', '0', NULL, 0.00, '11:15 AM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 08:12:36', 1, '2020-11-24 08:24:53', 0, NULL, 1),
(2060, '', '0', '8925146343', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011240012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 08:31:43', 0, NULL, 0, NULL, 1),
(2061, 'Anush M', '14', '7598866218', '6380364589', 'anushkmd27@gmail.com', '1997-08-27', 23, '2', '2', 'Mohandoss K', 'Agricultrist', 150000.00, 1, 264000.00, 300000.00, 'Mayiladuthurai', 'Chennai', '2011240013', '14', '2', 'upload_files/candidate_tracker/44755292938_ANUSH Resume.doc', NULL, NULL, '2020-11-25', 15, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 09:13:01', 1, '2020-11-24 09:26:25', 0, NULL, 1),
(2062, 'GOWTHAM M', '13', '9087187547', '', 'liogowtham5@gmail.com', '1999-07-14', 21, '3', '2', 'MUNIYAN A', 'Load Man', 15000.00, 1, 0.00, 17000.00, 'No:56 A-Block Dr.Ambethkar Nagar ICF chennai', 'No:56 A-Block Dr.Ambethkar Nagar ICF Chennai', '2011250001', '', '1', 'upload_files/candidate_tracker/46983944347_lio.pdf', NULL, NULL, '2021-01-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-25 10:58:14', 50, '2021-01-07 05:21:51', 0, NULL, 1),
(2063, '', '0', '8124954785', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011250002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-25 11:31:18', 0, NULL, 0, NULL, 1),
(2064, 'Akash. A', '6', '9080527633', '8939212938', 'akashjohn@gmail.com', '1998-06-19', 22, '2', '2', 'Arjunan.k', 'Driver', 8000.00, 1, 0.00, 13000.00, '7/33 neelakadal street uthandi chennai 600119', '7/33 Neelakadal Street Uthandi Chennai 600119', '2011250003', '1', '1', 'upload_files/candidate_tracker/59207683066_Akash.pdf', NULL, NULL, '2020-11-30', 0, '', '3', '8', '1970-01-01', 164400.00, '12:54 PM', '2', '1970-01-01', '1', '13700ctc and net 13k for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-25 02:53:57', 7, '2020-12-02 04:24:47', 0, NULL, 1),
(2065, 'Stalin R', '13', '8870173003', '', 'Stalinprt@gmail.com', '1989-05-08', 31, '3', '1', 'Radhakrishnan P', 'Farmer', 20000.00, 3, 20000.00, 23000.00, 'Cuddalore', 'Ramapuram', '2011260001', '', '2', 'upload_files/candidate_tracker/43320265321_Stalin_Resume (1).docx', NULL, NULL, '2020-11-30', 1, '', '5', '27', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '1', 'Task Not Completed', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-26 08:09:09', 50, '2020-11-30 02:51:47', 0, NULL, 1),
(2066, 'Balamurugan S', '3', '6383331204', '7502445035', 'Mechbala.307@gmail.com', '1990-08-26', 30, '4', '2', 'Alagu S', 'Farmer', 60000.00, 3, 19890.00, 25000.00, 'Madurai', 'Chennai', '2011260002', '', '2', 'upload_files/candidate_tracker/31174920989_Bala- Resume (2).PDF', NULL, NULL, '2020-12-01', 10, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-26 08:19:27', 1, '2020-11-26 11:45:25', 0, NULL, 1),
(2067, 'rameswara rao', '13', '8015655361', '', 'dsurya2198@gmail.com', '1998-10-21', 22, '2', '2', 'srinivasa kumar', 'accountant retired', 200000.00, 2, 0.00, 360000.00, 'chennai', 'chennai', '2011270001', '1', '1', 'upload_files/candidate_tracker/51714090977_Resume.pdf', NULL, NULL, '2020-11-27', 0, '', '5', '27', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '1', 'Looking More Experienced Profile.', '2', '2', '', '', '', '', '2', '2020-12-23', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-27 10:32:54', 64, '2020-12-28 03:11:34', 0, NULL, 1),
(2068, '', '0', '9498315663', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011270002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 10:42:16', 0, NULL, 0, NULL, 1),
(2069, 'M.Karthik raja', '6', '9940535209', '7550228152', 'karthik28primates@gmail.com', '2000-08-04', 20, '1', '2', 'T.Madasamy', 'Wholesale marketing', 20000.00, 1, 0.00, 16000.00, 'Dr.ambedkar nagar,Adambakkam,chennai', 'Dr.ambedkar nagar, Adambakkam,chennai', '2011270003', '', '1', 'upload_files/candidate_tracker/11022840209_CV_2020-09-15-014019.pdf', NULL, NULL, '2020-11-27', 0, 'KARUTHAPANDY', '3', '8', '2020-11-30', 168000.00, '11:26 AM', '3', '2021-02-08', '1', '14k for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 11:19:31', 7, '2020-11-27 04:09:26', 0, NULL, 1),
(2070, 'Mukesh.m', '6', '7550228152', '9940535209', 'mukeshgnc@gmail.com', '2000-06-07', 20, '1', '2', 'Murugan.m', 'Building contractor', 30000.00, 1, 12500.00, 15000.00, 'Chennai', 'Chennai', '2011270004', '', '2', 'upload_files/candidate_tracker/87496131464_resume mukesh (1).docx', NULL, NULL, '2020-11-27', 0, 'KARUTHAPANDY', '3', '8', '2020-11-30', 168000.00, '11:26 AM', '2', '1970-01-01', '1', '14k for Suthagar team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 11:20:53', 7, '2020-11-27 04:10:00', 0, NULL, 1),
(2071, '', '0', '7201990250', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011270005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 11:26:59', 0, NULL, 0, NULL, 1),
(2072, 'M.Iyswariya', '14', '7904130912', '7092614647', 'lakshmiriyaharan@gmail.com', '1999-06-29', 21, '3', '2', 'S.N.Manoharan', 'Passed away', 0.00, 0, 0.00, 200000.00, 'Chennai', 'Saidapet', '2011270006', '', '1', 'upload_files/candidate_tracker/89825902185_Iyswariya.pdf', NULL, NULL, '2020-11-28', 0, '', '5', '28', NULL, 0.00, '12:00 PM', '0', NULL, '2', 'Not strong in basic skillset', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 11:48:51', 1, '2020-11-27 12:00:41', 0, NULL, 1),
(2073, 'manivannan', '7', '9715861220', '', 'manicsecse@gmail.com', '1992-11-11', 28, '2', '1', 'subramaniyan', 'farmer', 1000.00, 4, 350000.00, 500000.00, 'perambalur', 'chennai', '2011270007', '1', '2', 'upload_files/candidate_tracker/87645947145_Manivannan.docx', NULL, NULL, '2020-11-27', 0, '', '5', '59', '1970-01-01', 0.00, '12:04 PM', '', '1970-01-01', '1', 'Not good in communication, High CTC expectations', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 12:02:01', 50, '2020-11-27 12:30:13', 0, NULL, 1),
(2074, '', '0', '8072444574', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011270008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 12:18:19', 0, NULL, 0, NULL, 1),
(2075, 'Ajay M', '6', '9538806242', '8088057020', 'ajaysreddy76342@gmail.com', '1995-07-28', 25, '2', '2', 'Munireddy', 'self employed', 40000.00, 1, 0.00, 20000.00, 'anekal', 'Neralure', '2011270009', '1', '1', 'upload_files/candidate_tracker/82288307130_Ajay Resume-converted.pdf', NULL, NULL, '2020-11-30', 0, '', '3', '8', '2020-12-02', 214800.00, '11:00 AM', '4', '2020-12-25', '1', '17900 ctc and net 17K for gowshick team', '5', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 12:21:47', 7, '2020-12-01 01:37:06', 0, NULL, 1),
(2076, 'jahir hussain', '6', '7530099054', '', 'jahirmunnahussain@gmail.com', '1995-07-11', 25, '2', '2', 'musthafa kamaal', 'expired', 20000.00, 3, 20000.00, 30000.00, 'chidambaram', 'chennai', '2011270010', '1', '2', 'upload_files/candidate_tracker/42337716952_Resume new (3).pdf', NULL, NULL, '2020-11-27', 0, '', '3', '8', '2020-12-02', 252000.00, '12:42 PM', '6', '2021-05-21', '1', '21K ctc  for kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 12:39:47', 7, '2020-12-02 09:51:03', 0, NULL, 1),
(2077, 'Ashic V A', '5', '9567555303', '6238384554', 'ashic654va@gmail.com', '1996-08-29', 24, '2', '2', 'Arjunan', 'Driver', 0.00, 0, 1.30, 2.00, 'Thrissur', 'Bangalore', '2011270011', '1', '2', 'upload_files/candidate_tracker/84392674253_cv word file aaaaa.docx', NULL, NULL, '2020-11-30', 0, '', '5', '38', NULL, 0.00, '11:32 AM', '0', NULL, '1', 'he Quited Previous Job Because Of Roaming Outside, So He Will Not Sustain In Our Field.....', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 01:52:33', 1, '2020-11-30 11:41:52', 0, NULL, 1),
(2078, '', '0', '9482133031', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011270012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 03:54:25', 0, NULL, 0, NULL, 1),
(2079, 'R. Thenmozhi', '4', '9840482636', '8778873055', 'thenmozhirajasekar@yahoo.com', '1984-09-25', 36, '1', '1', 'M. Rajasekar', 'Supervisor', 25000.00, 2, 30000.00, 25000.00, 'Teynampet', 'Teynampet', '2011270013', '', '2', 'upload_files/candidate_tracker/55509990660_Thenmozhi Resume.pdf', NULL, NULL, '2020-12-02', 1, 'P 1029', '3', '8', '2020-12-07', 202200.00, '11:00 AM', '4', '2021-01-26', '1', '16k th and 16850 ctc for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 04:00:00', 7, '2020-12-05 04:33:46', 0, NULL, 1),
(2080, '', '0', '8015469735', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011270014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 04:16:54', 0, NULL, 0, NULL, 1),
(2081, 'rahul', '13', '9840967913', '', 'rahulmks395@gmail.com', '1999-04-29', 21, '3', '2', 'murthy', 'driver', 20000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2011270015', '', '1', 'upload_files/candidate_tracker/29568731135_Resume1.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:15 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 04:17:18', 1, '2020-11-28 11:17:35', 0, NULL, 1),
(2082, 'Michael jerom knight', '4', '9600159657', '', 'Michealjerom1999@gmail.com', '1999-05-21', 21, '2', '2', 'Jeffery antony knight', 'hotel manager', 30000.00, 1, 0.00, 15000.00, 'tambaram', 'Tambaram', '2011270016', '1', '1', 'upload_files/candidate_tracker/10210409962_MICHAEL JEROME KNIGHT.docx', NULL, NULL, '2020-11-28', 0, '', '6', '0', NULL, 0.00, '12:44 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-27 04:50:52', 1, '2020-11-27 05:00:49', 0, NULL, 1),
(2083, 'Nithosh Arokia raj', '5', '7395950204', '8056264266', 'nithoshraj@gmail.com', '1992-07-10', 28, '2', '2', 'Cecili', 'SCM in private company', 30000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2011270017', '1', '1', 'upload_files/candidate_tracker/53507330206_CV NITHOSH UPDATED.DOCX', NULL, NULL, '2020-11-30', 0, '', '3', '8', '2020-12-01', 276000.00, '10:00 AM', '6', '2021-03-26', '1', '23k ctc for veben team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-27 04:57:17', 58, '2020-12-29 10:25:03', 0, NULL, 1),
(2084, '', '0', '9676721964', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011270018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 05:12:24', 0, NULL, 0, NULL, 1),
(2085, 'sunil kumar m.s', '6', '9739647315', '9741377215', 'sunilms61978@gmail.com', '1998-07-01', 22, '2', '2', 'shivareddy', 'accountent', 20.00, 2, 0.00, 15.00, 'SAINAGAR', 'SAINAGAR', '2011270019', '1', '1', 'upload_files/candidate_tracker/42244228164_sunil kumar Resume.docx', NULL, NULL, '2020-11-30', 0, '', '3', '8', '1970-01-01', 189600.00, '12:30 PM', '2', '1970-01-01', '1', '15k th for gowshick team', '5', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 05:19:20', 7, '2020-12-03 05:15:21', 0, NULL, 1),
(2086, 'Kaviya.S', '13', '9787287093', '8682832418', 'kavyakalai2727@gmail.com', '1998-11-07', 22, '1', '2', 'Sivaramalingam.C', 'Farmer', 22000.00, 1, 10000.00, 15000.00, 'Tanjore', 'Chennai', '2011270020', '', '2', 'upload_files/candidate_tracker/7644614860_kaviya sivaramalingam.docx', NULL, NULL, '2020-11-28', 0, 'Seetha', '5', '27', '1970-01-01', 0.00, '11:36 AM', '', '1970-01-01', '1', 'Task Not Completed. Even she is not ready to Complete the Task.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 05:59:06', 7, '2020-11-28 11:59:15', 0, NULL, 1),
(2087, 'R. Dillibabu', '13', '7871070480', '', 'rdillibabu1999@gmail.com', '1999-05-21', 21, '3', '2', 'Ramesh. S', 'Farmer', 20000.00, 0, 0.00, 20000.00, 'Thiruporur, chennai', 'Thiruporur, chennai', '2011270021', '', '1', 'upload_files/candidate_tracker/33209666792_Babu Resume.WORD. new. db. pdf.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 06:03:38', 1, '2020-11-29 05:23:50', 0, NULL, 1),
(2088, 'Arun VS', '13', '6374573062', '9444169123', 'Arunlee852@gmail.com', '1998-10-26', 22, '2', '2', 'V selwyn samuel', 'Teacher', 70000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2011270022', '1', '1', 'upload_files/candidate_tracker/90567131019_arun resume.docx', NULL, NULL, '2020-11-28', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'He is not strong in basic php.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-27 08:35:47', 64, '2020-12-28 03:06:55', 0, NULL, 1),
(2089, 'MURUGAN L', '13', '9444425130', '', 'murugansj95@gmail.com', '1998-05-31', 22, '3', '2', 'LAKSHMANAN', 'Passed away', 10000.00, 0, 0.00, 15000.00, 'Kallkurichi', 'Chennai', '2011270023', '', '1', 'upload_files/candidate_tracker/51034194671_murug.pdf', NULL, NULL, '2020-11-28', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 09:12:39', 1, '2020-11-27 09:17:12', 0, NULL, 1),
(2090, '', '0', '8197663299', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 08:23:38', 0, NULL, 0, NULL, 1),
(2091, 'N.karthikeyan', '6', '9344679823', '7092170452', 'riokarthy07@gmail.com', '1997-04-16', 23, '1', '2', 'S.Nagaraj', 'Electrician', 10000.00, 1, 0.00, 12000.00, 'No:30/15 15th Street Nehru Colony Nanganallur', 'No:30/15 15th Street Nehru colony Nanganallur', '2011280002', '', '1', 'upload_files/candidate_tracker/81511223411_DOC-20190829-WA0003.pdf', NULL, NULL, '2020-11-28', 0, '5392', '3', '7', '2020-12-28', 0.00, '10:15 AM', '6', '2021-03-26', '1', 'Shortlisted For 12650 CTC As RE For Srikanthxquots Team,  Joining By Monday 28th DEC', '5', '2', '1', '1', '1', '2', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-28 09:54:38', 7, '2020-12-26 04:17:56', 0, NULL, 1),
(2092, '', '0', '9529882301', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 10:05:54', 0, NULL, 0, NULL, 1),
(2093, 'Divakar', '13', '9677287596', '', 'divakar227@yahoo.com', '1999-07-22', 21, '2', '2', 'VIJAYALAKSHMI', 'Fresher', 70000.00, 0, 0.00, 23000.00, 'Chennai', 'Chennai', '2011280004', '14', '1', 'upload_files/candidate_tracker/88958438739_divakar_resume.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:15 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 10:38:34', 1, '2020-11-28 10:43:31', 0, NULL, 1),
(2094, 'Paulraj Y', '6', '9087299898', '9360790938', 'ypaulraj21 @gmail. Com', '1997-05-21', 23, '1', '2', 'Yesuraj K', 'Nill', 20.00, 1, 0.00, 15.00, 'Thiruvotiyur', 'Mathur', '2011280005', '', '1', 'upload_files/candidate_tracker/62510620977_paulraj.docx', NULL, NULL, '2020-11-28', 0, '1065', '5', '19', '1970-01-01', 0.00, '12:02 PM', '', '1970-01-01', '1', 'not fit for sale', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 11:43:22', 7, '2020-11-28 12:21:30', 0, NULL, 1),
(2095, '', '0', '9087299808', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 12:05:23', 0, NULL, 0, NULL, 1),
(2096, '', '0', '9150292539', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 03:28:10', 0, NULL, 0, NULL, 1),
(2097, '', '0', '9844009779', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 04:26:27', 0, NULL, 0, NULL, 1),
(2098, 'Ramya', '4', '6380477706', '', 'ramyanagappan0610@gmail.com', '1996-05-29', 24, '2', '2', 'Nagappan', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Sriperumbudur', 'Sriperumbudur', '2011280009', '15', '1', 'upload_files/candidate_tracker/77891493111_ramya.pdf', NULL, NULL, '2020-12-01', 0, '', '5', '8', '1970-01-01', 0.00, '10:45 AM', '', '1970-01-01', '2', 'too long. from sriperambur', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 04:36:55', 8, '2020-12-02 11:14:52', 0, NULL, 1),
(2099, '', '0', '7871768841', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 04:37:30', 0, NULL, 0, NULL, 1),
(2100, 'Sarathkumar s', '6', '9551194284', '9444868223', 'sarath.suresh1106@gmail.com', '1996-06-11', 24, '2', '2', 'Suresh', '-', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2011280011', '15', '2', 'upload_files/candidate_tracker/58809552627_6825_Sarath Kumar.pdf', NULL, NULL, '2020-12-02', 0, '', '5', '8', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'was hold for next round but no response', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 04:38:40', 50, '2020-12-02 11:39:30', 0, NULL, 1),
(2101, '', '0', '9789983268', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 04:57:15', 0, NULL, 0, NULL, 1),
(2102, 'sathiya', '4', '8760211355', '7397557056', 'sathyapandian2404@gmail.com', '1996-04-24', 24, '2', '1', 'pandian', 'driver', 20000.00, 1, 17000.00, 17000.00, 'audipatty theni', 'medavakkam', '2011280013', '15', '2', 'upload_files/candidate_tracker/94327765267_sathya exp resume nov1 (1).pdf', NULL, NULL, '2020-12-02', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 05:05:16', 1, '2020-11-29 02:33:48', 0, NULL, 1),
(2103, '', '0', '8925749534', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 05:32:11', 0, NULL, 0, NULL, 1),
(2104, 'Jayprakash', '13', '9080081455', '9655801909', 'smartjp604@gmail.com', '1998-02-13', 22, '2', '2', 'Kumar', 'Farmer', 60000.00, 1, 0.00, 20000.00, 'Tindivanam', 'Velachery', '2011280015', '1', '1', 'upload_files/candidate_tracker/73496279686_Resume new.docx', NULL, NULL, '2020-11-30', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'He knows only Java. He dont have an idea in PHP Basics.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-28 07:10:43', 64, '2020-12-23 02:36:07', 0, NULL, 1),
(2105, 'M.k.priyadharshini', '13', '9597509971', '9345326934', 'Kpriyaadharshini97@gmail.com', '1997-06-20', 23, '3', '2', 'M.karnan', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Mayiladuthurai', 'Chennai', '2011280016', '', '1', 'upload_files/candidate_tracker/3919083274_Priya.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 07:18:44', 1, '2020-11-28 07:29:39', 0, NULL, 1),
(2106, 'Nivedhitha', '13', '9597353775', '9840940560', 'nivedhitha.srinivas2231@gmail.com', '1998-08-31', 22, '1', '2', 'Srinivasan', 'Military man', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Trichy', '2011280017', '', '1', 'upload_files/candidate_tracker/13827557565_Resume.pdf', NULL, NULL, '2020-11-30', 0, 'HR7M', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 07:53:13', 1, '2020-11-28 08:02:30', 0, NULL, 1),
(2107, '', '0', '9900375158', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 11:37:46', 0, NULL, 0, NULL, 1),
(2108, '', '0', '8610647851', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011290001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 12:07:52', 0, NULL, 0, NULL, 1),
(2109, '', '0', '8610513811', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011290002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 08:28:17', 0, NULL, 0, NULL, 1),
(2110, 'Sriram. P', '20', '9629043386', '9790573386', 'ramsrip19@gmail.com', '1994-06-19', 26, '2', '2', 'Poongavanam(late)', 'Cooli', 15000.00, 2, 15000.00, 15000.00, 'Arakkonam', 'Arakkonam', '2011290003', '15', '2', 'upload_files/candidate_tracker/58404667689_October month resume .pdf', NULL, NULL, '2020-12-03', 0, '', '6', '0', NULL, 0.00, '10:34 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 10:26:57', 1, '2020-11-29 01:24:44', 0, NULL, 1),
(2111, 'yuvaraj B', '13', '9600129626', '', 'yuvarajvignesh55@gmail.com', '1998-03-20', 22, '2', '2', 'bhuvaneswaran', 'driver', 30000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2011290004', '14', '1', 'upload_files/candidate_tracker/15099397861_Yuvaraj resume.pdf', NULL, NULL, '2020-12-01', 0, '', '5', '27', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', 'Donxquott have a basic knowledge in PHP', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 11:27:27', 50, '2020-12-01 11:09:26', 0, NULL, 1),
(2112, 'Elavarasan B', '21', '9840927218', '9789005538', 'elaarajan@gmail.com', '1993-10-14', 27, '2', '2', 'Bojanrajan T', 'Late', 1.60, 1, 14000.00, 23000.00, '20/5 RV Nagar 6th Street Annanagar East Chennai', '20/5 RV Nagar 6th Street Annanagar East Chennai', '2011290005', '14', '2', 'upload_files/candidate_tracker/77065689967_Resume - Elavarasan.pdf', NULL, NULL, '2020-11-30', 1, '', '5', '59', NULL, 0.00, '12:08 PM', '0', NULL, '1', 'Not ok for bond, will  not sustain for a long', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 12:05:04', 1, '2020-11-29 12:09:31', 0, NULL, 1),
(2113, 'Nagenthiran', '21', '6380293487', '', 'nagenthiran916@gmail.com', '1998-02-12', 22, '2', '2', 'Sivakumar', 'Driver', 20000.00, 1, 12000.00, 15000.00, 'Namakkal', 'Perungudi', '2011290006', '14', '2', 'upload_files/candidate_tracker/47582435545_nagenthiran- resume-converted-converted.pdf', NULL, NULL, '2020-11-30', 15, '', '8', '59', NULL, 0.00, '02:01 PM', '0', NULL, '2', 'Left without attending', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 01:23:29', 1, '2020-11-29 01:26:38', 0, NULL, 1),
(2114, '', '0', '9551391991', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011290007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 02:04:37', 0, NULL, 0, NULL, 1),
(2115, 'Mahalakshmi S', '11', '7550021712', '8526193852', 'mahalakshmiselvaraj1712@gmail.com', '1999-12-17', 20, '2', '2', 'Selvaraj P', 'Daily wages', 100000.00, 3, 0.00, 12000.00, '6/67_8 north Silver street ,st Thomas mount ,Ch-16', '6/67_8 North Silver Street ,St Thomas Mount ,Ch-16', '2011290008', '15', '1', 'upload_files/candidate_tracker/56386587192_Document from Maha.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '02:01 PM', '0', NULL, '2', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 02:46:51', 1, '2020-11-30 02:01:45', 0, NULL, 1),
(2116, 'Prasad N', '5', '9986477255', '', 'Prasadnagaraj991@gmail.com', '1991-04-22', 29, '1', '1', 'B R Nagaraj', 'Expired', 30000.00, 2, 0.00, 25000.00, 'Bangalore', 'Bangalore', '2011290009', '', '1', 'upload_files/candidate_tracker/43270609045_prasad resume.pdf', NULL, NULL, '2020-11-30', 0, '0123456', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 03:39:09', 1, '2020-11-29 04:01:20', 0, NULL, 1),
(2117, 'Vignesh', '13', '7358451500', '8122185814', 'vigneshkannadasan77@gmail.com', '1995-07-07', 25, '2', '2', 'Kannadasan', 'Conductor', 25000.00, 1, 0.00, 2.50, 'Medavakkam', 'Medavakkam', '2011290010', '1', '1', 'upload_files/candidate_tracker/62003664466_vignesh web developer resume.pdf', NULL, NULL, '2020-12-01', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Donxquott Have A Basic Knowledge In PHP. But he is ready for 3 Years Bond.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-29 04:05:56', 64, '2020-12-23 02:38:11', 0, NULL, 1),
(2118, 'logesh karthik s', '13', '9551783347', '9003046684', 's.logeshkarthik@gmail.com', '1999-07-08', 21, '2', '2', 'selvaraju v', 'govt employee', 100000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2011290011', '14', '1', 'upload_files/candidate_tracker/31102684321_LOGESH KARTHIK S-resume.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '27', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'He is Looking for an internship. He is not good in technical.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 04:14:09', 50, '2020-11-30 11:41:12', 0, NULL, 1),
(2119, 'Balaji', '6', '6383330451', '7358292493', 'balajiravi0018@gmail.com', '2000-10-01', 20, '2', '2', 'P.Ravi', 'Rmkv sales representive', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011290012', '14', '1', 'upload_files/candidate_tracker/5928235911_BALAJI RESUME.pdf', NULL, NULL, '2020-11-29', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 04:33:27', 1, '2020-11-29 06:27:14', 0, NULL, 1),
(2120, 'masood ahmed a', '2', '6379460938', '9840927404', 'ayishanaznee@gmail.com', '1999-11-15', 21, '2', '2', 'abdul aleem', 'leather business', 0.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2011290013', '14', '1', 'upload_files/candidate_tracker/10443060244_Resume_MasoodAhmed-CSE.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '8', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'internship ', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 05:15:42', 50, '2020-11-30 11:39:32', 0, NULL, 1),
(2121, 'm.maheswari', '13', '9159277057', '9344798064', 'mahimurugan56@gmail.com', '1995-05-22', 25, '3', '1', 'g.murugan', 'farmer', 25000.00, 1, 0.00, 25000.00, 'pudhukkotai', 'nandhampakkam', '2011290014', '', '1', 'upload_files/candidate_tracker/36899311911_mahi (1).docx', NULL, NULL, '2020-11-30', 0, '', '5', '27', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'Dont Know The Basics.  ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 05:17:40', 1, '2020-11-29 05:35:22', 0, NULL, 1),
(2122, 'V.sharon', '4', '9445325057', '9445010911', 'sharongracy07@gmail.com', '1999-08-25', 21, '2', '2', 'M.vetriselvam', 'Private Contract', 20000.00, 1, 0.00, 18000.00, 'No.6/10,aziz mulk 6th street,thousand lights', 'No.6/10,Aziz Mulk 6th Street,Thousand Lights', '2011290015', '14', '1', 'upload_files/candidate_tracker/80989542215_RESUME sharon.docx', NULL, NULL, '2020-11-30', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Sustain Long Term Bcz She Is Planning Mba For Abroad...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 06:13:48', 8, '2020-11-30 05:07:02', 0, NULL, 1),
(2123, '', '0', '9444100528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011290016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 06:20:42', 0, NULL, 0, NULL, 1),
(2124, 'KRIBAKARAN V', '6', '9444100558', '8248907663', 'kripakaran10@yahoo.com', '1998-04-19', 22, '2', '2', 'VETRISELVAM M', 'Contract labour', 20000.00, 1, 0.00, 18000.00, 'NO:-6/10,AZIZ MULK,6TH STREET, THOUSANDLIGHTS,', 'NO:-6/10,AZIZ MULK,6TH STREET, THOUSANDLIGHTS,', '2011290017', '14', '1', 'upload_files/candidate_tracker/16792320569_V.KRIBA\'s Resume.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '59', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'No Bike. Will not sustain', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 06:32:30', 1, '2020-11-29 06:36:15', 0, NULL, 1),
(2125, '', '0', '6374280675', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011290018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 06:45:13', 0, NULL, 0, NULL, 1),
(2126, 'shubham gupta', '5', '8189886009', '9840030816', 'sgpg99@gmail.com', '1999-08-13', 21, '2', '2', 'pravin gupta', 'business', 60000.00, 2, 0.00, 325000.00, 'kilpauk', 'kilpauk', '2011290019', '1', '1', 'upload_files/candidate_tracker/1010512221_Shubham Gupta CV-converted.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-29 07:44:52', 1, '2020-11-29 07:56:59', 0, NULL, 1),
(2127, 'Mani.N.a', '5', '9841315091', '8072175462', 'namani9841@gmail.com', '1995-06-08', 25, '2', '2', 'N.D.anthony', 'Cooli', 10000.00, 7, 180000.00, 250000.00, 'No-3/46 Perumal koil Street chinna Nolambur ch-95', 'No-3/46 Perumal Koil Street Chinna Nolambur Ch-95', '2011290020', '3', '2', 'upload_files/candidate_tracker/41160897960_MANI_RESUME.pdf', NULL, NULL, '2020-12-01', 0, '', '5', '36', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not fit', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 08:09:26', 50, '2020-12-01 12:05:32', 0, NULL, 1),
(2128, 'Sasidhar V J', '13', '9514821001', '', '', '2000-05-01', 20, '2', '2', 'Jayachandran V', 'Business', 30000.00, 1, 0.00, 30000.00, 'Tiruttani', 'Tiruttani', '2011290021', '14', '1', 'upload_files/candidate_tracker/4350437288_2021_PEC_CSE_SASIDHAR.V.J.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '8', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'intership', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 09:23:27', 1, '2020-11-29 09:26:19', 0, NULL, 1),
(2129, 'Ashok thapa', '6', '9094302011', '', 'mashokthapa1@gmail.com', '1998-04-20', 22, '1', '2', 'Man Bahadur Thapa', 'Driver', 17000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2011290022', '', '1', 'upload_files/candidate_tracker/67603417799_ashok3res.pdf', NULL, NULL, '2020-11-29', 0, 'Priyanka -HR', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 09:46:44', 1, '2020-11-29 11:30:10', 0, NULL, 1),
(2130, 'm.preethi', '4', '7358733976', '9677024347', 'harshikaa0528@gmail.com', '1989-04-08', 31, '2', '1', 'e.rajesh kumar', 'diplamo', 30000.00, 1, 0.00, 15000.00, 'ponni amman koil street kottur', 'Chennai', '2011300001', '3', '1', 'upload_files/candidate_tracker/74206678935_RESUME (7).pdf', NULL, NULL, '2020-12-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain and will not suite for sales', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-30 08:04:03', 1, '2020-12-19 12:46:32', 0, NULL, 1),
(2131, 'Kirubakarasi. S', '4', '6383961121', '9840323754', 'Kirubakarasi@gmail.com', '1992-05-19', 28, '2', '2', 'Singarayar', 'Farmer', 15000.00, 2, 20000.00, 25000.00, '68 c annai illam indra nagar ilayankudi road east', 'No 24 thiruvalluvapuram 2nd chookaimedu methanagar', '2011300002', '3', '2', 'upload_files/candidate_tracker/87436190321_1606305060361_1602837770249_Kirubakarasi resume (1).docx', NULL, NULL, '2020-11-30', 0, '', '5', '21', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', '25k Above  Salary Expected ..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 08:56:16', 7, '2020-12-01 10:06:05', 0, NULL, 1),
(2132, 'Amarnath', '6', '8639984711', '9618861649', 'Amarnathgoudsk@gmail.com', '1998-05-06', 22, '2', '2', 'Muddanna', 'Farmer', 15000.00, 2, 0.00, 2.50, 'Andhra Pradesh', 'Madiwala', '2011300003', '1', '1', 'upload_files/candidate_tracker/63882392627_Amar G_Resume_Format1-1.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '38', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', 'he will not suit for our process and not good in communication', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 09:53:03', 50, '2020-11-30 02:41:55', 0, NULL, 1),
(2133, 'LOGANATHAN D', '5', '9941448550', '', 'gokulakannan6090@gmail.com', '1994-12-09', 25, '2', '2', 'Dinakaran B', 'Police', 38000.00, 1, 18500.00, 22000.00, 'TONDAIYARPET CH-81', 'Tondaiyarpet', '2011300004', '1', '2', 'upload_files/candidate_tracker/21021263474_Loganathan Finance.docx', NULL, NULL, '2020-11-30', 0, '', '3', '8', '2020-12-01', 252000.00, '10:30 AM', '2', '1970-01-01', '1', '21k ctc for suthagar team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-30 10:45:22', 7, '2020-12-01 10:02:11', 0, NULL, 1),
(2134, 'M. Santhosh Kumar', '11', '8610021757', '8680919550', 'santhoshsunil148@gmail.com', '1998-02-08', 22, '2', '2', 'C.murali', 'MTC Conductor', 30000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2011300005', '1', '1', 'upload_files/candidate_tracker/25902378963_Santhosh Resume.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '10:59 AM', '0', NULL, '1', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-30 10:51:01', 1, '2020-11-30 11:00:48', 0, NULL, 1),
(2135, 'vasanth kumar', '5', '7401335199', '9025183858', 'itsmeallen5729@gmail.com', '1995-10-01', 25, '2', '2', 'ram kumar', 'travels', 40000.00, 1, 18000.00, 20000.00, 'chennai', 'vadapalani', '2011300006', '14', '2', 'upload_files/candidate_tracker/80983092498_resume_1606109856815.pdf', NULL, NULL, '2020-11-30', 15, '', '6', '0', NULL, 0.00, '02:00 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 11:25:20', 1, '2020-11-30 12:07:22', 0, NULL, 1),
(2136, 'narendaran', '5', '8608749409', '9941810974', 'narenemailid@gmail.com', '1990-12-15', 29, '2', '2', 'shanmugam', 'govt employee', 30000.00, 1, 17000.00, 22000.00, 'tondiarpet', 'tondiarpet', '2011300007', '1', '2', 'upload_files/candidate_tracker/94492268354_narenresume.docx', NULL, NULL, '2020-11-30', 0, '', '5', '8', NULL, 0.00, '12:47 PM', '0', NULL, '1', 'will not suite for sales.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-30 11:28:34', 1, '2020-11-30 12:49:22', 0, NULL, 1),
(2137, 'Giridharan.V', '4', '9080307445', '7092781611', 'giridharan1611@gmail.com', '1999-11-16', 21, '1', '2', 'Vedhachalam.E', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Vanagaram , Chennai - 95', 'Vanagaram , Chennai -95', '2011300008', '', '1', 'upload_files/candidate_tracker/9597474951_garidharan two pages resume 11.12.2019.docx', NULL, NULL, '2020-11-30', 0, 'P1113', '6', '0', NULL, 0.00, '12:30 PM', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:03:08', 1, '2020-11-30 12:11:55', 0, NULL, 1),
(2138, 'M.BAVANESH VISHVA', '6', '8248461995', '', 'mvishva0@gmail.com', '2000-07-16', 20, '1', '2', 'P.muthu kumar', 'Business', 100000.00, 1, 0.00, 15000.00, '2/128 , balamurgan street, SRS nager,kovur, ch', '2/128, balamurgan Street, SRS NAGER, KOVUR,CH', '2011300009', '', '1', 'upload_files/candidate_tracker/91448361897_vishva Resume .pdf', NULL, NULL, '2020-11-30', 0, 'P1113', '6', '', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:04:22', 50, '2020-11-30 12:46:05', 0, NULL, 1),
(2139, 'Md Farhad', '14', '6383162304', '', 'mohdfarhad7755@gmail.com', '1999-04-02', 21, '1', '2', 'Md israil', 'Service', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2011300010', '', '1', 'upload_files/candidate_tracker/13809075894_Md\'s Resume.pdf', NULL, NULL, '2020-11-30', 0, 'P1113', '6', '0', NULL, 0.00, '12:30 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:13:54', 1, '2020-11-30 12:22:34', 0, NULL, 1),
(2140, 'Sabari J', '21', '8056279698', '9840965318', 'sabarijothi2000@gmail.com', '2000-06-16', 20, '1', '2', 'Jothi c', 'late', 15000.00, 2, 0.00, 13000.00, 'porur', 'porur', '2011300011', '', '1', 'upload_files/candidate_tracker/85547260144_CV_2020-11-12-070100.pdf', NULL, NULL, '2020-11-30', 0, 'jobs', '5', '32', '1970-01-01', 0.00, '12:21 PM', '', '1970-01-01', '1', 'Not accepted for Bond', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:17:48', 50, '2020-11-30 01:24:51', 0, NULL, 1),
(2141, '', '0', '9344724710', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:18:18', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2142, 'Sathyaseelan', '2', '7448708780', '', 'Sathyaseelan S', '2000-04-05', 20, '1', '2', 'D subramani', 'Car driver', 18000.00, 1, 0.00, 18000.00, 'chennai', 'Mangadu, Chennai', '2011300013', '', '1', 'upload_files/candidate_tracker/94895972979_resume.docx', NULL, NULL, '2020-11-30', 0, '0', '5', '27', NULL, 0.00, '12:22 PM', '0', NULL, '1', 'Dont know the Basics. he is interested in Python Only.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:18:20', 1, '2020-11-30 12:23:57', 0, NULL, 1),
(2143, 'Prasanna Venkatesh', '13', '8870973340', '9943218200', 'venkateshan3340@gmail.com', '1997-10-27', 23, '2', '2', 'R. Azhagiri', 'Security', 120000.00, 1, 18000.00, 18000.00, 'Trichy', 'Chennai', '2011300014', '1', '2', 'upload_files/candidate_tracker/58738047951_Prasanna_resume.docx', NULL, NULL, '2020-12-14', 15, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Task not Completed.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-30 12:30:47', 50, '2020-12-14 11:48:12', 0, NULL, 1),
(2144, 'MUGESH BASENTRAN', '6', '8015669788', '8939212938', 'jimugesh@gmail.com', '2000-04-09', 20, '2', '2', 'BASENTRAN V', 'DAILY WAGE', 12000.00, 4, 0.00, 14000.00, 'NO: 441/ 196B ANNAITHERES STREET KANNATHUR CHENNAI', 'NO: 441/ 196B ANNAITHERES STREET KANNATHUR CHENNAI', '2011300015', '1', '1', 'upload_files/candidate_tracker/19263158929_1604766946584Resume_MUGESH.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '8', '1970-01-01', 0.00, '12:49 PM', '', '1970-01-01', '1', 'will not sustain. no language and no 2 wheeler', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:41:32', 7, '2020-11-30 05:00:10', 0, NULL, 1),
(2145, '', '0', '9943137216', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:43:17', 0, NULL, 0, NULL, 1),
(2146, '', '0', '9786337898', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 01:01:04', 0, NULL, 0, NULL, 1),
(2147, 'sameer soumya ranjan jena', '13', '7008392889', '7381883483', 'sameerjena5596@gmail.com', '1996-05-05', 24, '2', '2', 'gopal chandra jena', 'teacher', 40000.00, 0, 4.50, 5.50, 'odisha', 'chennai', '2011300018', '1', '2', 'upload_files/candidate_tracker/69916420259_sameer.docx', NULL, NULL, '2020-12-02', 0, '', '5', '27', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '2', 'Got Another Job.', '2', '2', '', '', '', '', '2', '2020-12-24', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-11-30 01:06:16', 65, '2020-12-24 12:01:44', 0, NULL, 1),
(2148, 'Thalabady Kabalane', '17', '9585851979', '9840455175', 'Thala.cs@gmail.com', '1988-01-03', 32, '1', '2', 'Kabalane', 'Government organization', 50000.00, 1, 30000.00, 35000.00, 'No .2,1 st cross , muthamizh nagar, pondicherry', 'No 2/40, kaveri street, iyyapanthangal.', '2011300019', '', '2', 'upload_files/candidate_tracker/59149803257_CV_2020-08-23-101937.pdf', NULL, NULL, '2020-12-01', 5, '5369', '5', '51', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'fake info', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 01:08:06', 1, '2020-11-30 02:07:29', 0, NULL, 1),
(2149, 'lakshmi narayanan s', '13', '9003037274', '9445295208', 'lakshminarayananonly@gmail.com', '1998-03-11', 22, '2', '2', 'shanmugavel m', 'daily wages', 20000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2011300020', '1', '1', 'upload_files/candidate_tracker/22140979526_resume.docx', NULL, NULL, '2020-12-02', 0, '', '3', '8', '2020-12-03', 158400.00, '11:00 AM', '5', '1970-01-01', '1', '12540 th and 13200 ctc for it', '2', '2', '2', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-11-30 01:27:45', 65, '2020-12-24 10:13:14', 0, NULL, 1),
(2150, '', '0', '8778934756', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 01:34:26', 0, NULL, 0, NULL, 1),
(2151, '', '0', '9972028714', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 01:36:26', 0, NULL, 0, NULL, 1),
(2152, 'deepa.k', '4', '9750679884', '', 'deepa91117@gmail.com', '1997-06-13', 23, '2', '2', 'karuppaiyan', 'farmer', 15000.00, 2, 0.00, 15000.00, 'kumbakonam', 'nungabakkam', '2011300023', '1', '1', 'upload_files/candidate_tracker/1891264986_Deepa11111111111111111 resume.docx', NULL, NULL, '2021-02-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain much interested into Non Voice\n', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-30 01:38:06', 50, '2021-02-13 03:31:46', 0, NULL, 1),
(2153, 'samuel ebinezer y', '5', '7299275580', '9080307369', 'samchinne733848@gmail.com', '1996-06-25', 24, '2', '2', 'yosuva g', 'tailor', 20000.00, 1, 22000.00, 26000.00, '27/20 Bhagavathi Ammal street,kolathur,chennai-99', '27/20 Bhagavathi Ammal street,kolathur,chennai-99', '2011300024', '1', '2', 'upload_files/candidate_tracker/43822501251_Sam Resume.pdf', NULL, NULL, '2020-12-03', 0, '', '3', '8', '2020-12-07', 264000.00, '11:00 AM', '6', '2021-03-26', '1', '22k ctc for sarath team no esi/pf', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-30 01:50:25', 58, '2020-12-23 04:18:36', 0, NULL, 1),
(2154, '', '0', '9535508372', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 03:23:05', 0, NULL, 0, NULL, 1),
(2155, 'Akaskar.M', '13', '8525879125', '', '', '1998-12-30', 21, '2', '2', 'Mani Raj.K', 'Farmer', 100000.00, 1, 0.00, 18000.00, 'Alangulam,Tenkasi dist', 'Velachery chennai', '2011300026', '15', '1', 'upload_files/candidate_tracker/22873797305_M.Akaskar 1-converted.pdf', NULL, NULL, '2020-12-01', 0, '', '5', '27', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'not Complete the System Task.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 03:35:58', 50, '2020-12-01 10:32:20', 0, NULL, 1),
(2156, '', '0', '8056627687', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 03:44:51', 0, NULL, 0, NULL, 1),
(2157, 'Tamilmani', '13', '9688668629', '6383243138', 'tamilmani3107@gmail.com', '1998-07-31', 22, '2', '2', 'Murugesan', 'Weaver', 7000.00, 1, 0.00, 14000.00, 'Namakkal', 'Namakkal', '2011300028', '1', '1', 'upload_files/candidate_tracker/79849058129_RESUME(1).pdf', NULL, NULL, '2020-12-02', 0, '', '3', '59', '2021-02-16', 101053.00, '03:00 PM', '5', '1970-01-01', '2', 'CTC 8K TH ,Will be trained in  Mern Stack', '2', '2', '2', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-30 03:53:09', 60, '2021-02-16 10:20:24', 0, NULL, 1),
(2158, 'Ebinesar R', '13', '7825825190', '9790755350', 'ebinesarjohn123@gmail.com', '1995-08-28', 25, '2', '2', 'Robert D', 'Driver', 120000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2011300029', '15', '1', 'upload_files/candidate_tracker/18563077255_EBINESAR R fresher resume(1).pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 04:01:02', 1, '2020-11-30 04:04:10', 0, NULL, 1),
(2159, 'Hemanth sriram', '13', '7299664737', '8939645060', 'Hemanthsriram97@gmail.com', '1997-11-20', 23, '2', '2', 'Vijaya kumar', 'Business', 20000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2011300030', '15', '1', 'upload_files/candidate_tracker/21049170642_Hemanthsriram_resume.pdf', NULL, NULL, '2020-12-02', 0, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 04:01:12', 1, '2020-11-30 04:20:23', 0, NULL, 1),
(2160, 'Prabhakaran', '13', '9150766328', '8940857834', 'prabakaranm8376@gmail.com', '1995-04-27', 25, '2', '2', 'Muruganantham', 'Bussiness', 10000.00, 1, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2011300031', '15', '1', 'upload_files/candidate_tracker/47890017822_my resume.docx', NULL, NULL, '2020-12-01', 0, '', '5', '27', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'Task not Completed.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 04:15:16', 50, '2020-12-01 12:49:12', 0, NULL, 1),
(2161, 'dhivya bharathi', '4', '9566179140', '', 'dhivyaeswaraiah@gmail.com', '1992-01-11', 28, '2', '1', 'vivek krishnan', 'service engineer', 35000.00, 1, 17000.00, 20000.00, 'ambattur', 'ambattur', '2011300032', '15', '2', 'upload_files/candidate_tracker/31569874853_Resume.docx', NULL, NULL, '2020-12-01', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 04:17:27', 1, '2020-11-30 05:01:46', 0, NULL, 1),
(2162, '', '0', '9944392516', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 04:38:11', 0, NULL, 0, NULL, 1),
(2163, 'SIVA RAMA KRISHNAN', '3', '9551977454', '', 'sivakrish3108@gmail.com', '1996-08-31', 24, '2', '2', 'Kannan', 'Late', 8000.00, 2, 8000.00, 12000.00, 'Pallavaram', 'Pallavaram', '2011300034', '1', '2', 'upload_files/candidate_tracker/81978430498_Siva Resume.pdf', NULL, NULL, '2020-12-01', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Couldnxquott meet our expectations.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-30 05:25:03', 64, '2020-12-23 02:40:45', 0, NULL, 1),
(2164, 'Ramkumar', '21', '9787063837', '', 'ramkumargopal10@gmail.com', '1995-11-20', 25, '2', '1', 'Gopal A', 'Retired', 40000.00, 2, 17000.00, 20000.00, 'Namakkal', 'Chennai', '2011300035', '14', '2', 'upload_files/candidate_tracker/55189571566_resume.pdf', NULL, NULL, '2020-12-01', 1, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '1', NULL, '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 05:50:39', 1, '2020-11-30 05:54:58', 0, NULL, 1),
(2165, '', '0', '8939240309', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 05:50:51', 0, NULL, 0, NULL, 1),
(2166, 'Jyothi n', '20', '8296848541', '8431847807', 'jyothiraj956@gmail.com', '1999-04-12', 21, '2', '2', 'Nagarajaih', 'Farmer', 50.00, 1, 12.50, 16.00, 'Haralahalli tarikere', 'Bommasandra', '2011300037', '7', '2', 'upload_files/candidate_tracker/33123786559_Jyothi N.pdf', NULL, NULL, '2020-12-01', 0, '', '3', '8', '2020-12-16', 177000.00, '11:09 AM', '2', '1970-01-01', '2', '14k th for crm sathish team', '5', '2', '4', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 07:35:32', 7, '2020-12-03 05:15:39', 0, NULL, 1),
(2167, 'Sujipriya R', '2', '7868076669', '9989708972', 'sujipriya1997@gmail.com', '1997-01-12', 23, '2', '1', 'Venkatesh N', 'Software engineer', 100000.00, 1, 0.00, 300000.00, 'Tiruvallur', 'Tiruvallur', '2011300038', '1', '1', 'upload_files/candidate_tracker/63090389487_SUJIPRIYA.pdf', NULL, NULL, '2020-12-02', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 10:43:46', 1, '2020-11-30 10:51:41', 0, NULL, 1),
(2168, 'Vivek Sharma', '11', '8248185579', '', '', '1997-08-23', 23, '2', '2', 'Prem Kumar Sharma', 'Brush agent', 30.00, 2, 0.00, 2.40, 'JTN, Thattankulam Road, Madhavaram, Chennai 600060', 'JTN, Thattankulam Road, Madhavaram ch-600060', '2012010001', '1', '1', 'upload_files/candidate_tracker/79596512428_Resume .docx', NULL, NULL, '2020-12-01', 0, '', '6', '0', NULL, 0.00, '11:17 AM', '0', NULL, '1', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-01 05:33:28', 1, '2020-12-01 05:45:06', 0, NULL, 1),
(2169, 'Ranjith', '13', '9940060437', '9791166895', 'ranjithm8687@gmail.com', '1985-06-02', 35, '2', '2', 'Manokaran', 'Farmer', 2000.00, 1, 3.36, 500000.00, 'Namakkal', 'Chennai', '2012010002', '1', '2', 'upload_files/candidate_tracker/99181928593_Resume.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '27', '1970-01-01', 0.00, '10:31 AM', '', '1970-01-01', '2', 'Joined in another Company', '2', '2', '', '', '', '', '2', '2020-12-22', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-01 10:27:00', 64, '2020-12-28 03:17:23', 0, NULL, 1),
(2170, '', '0', '8072469269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 10:27:38', 0, NULL, 0, NULL, 1),
(2171, 'Kishore Kumar', '6', '9710532228', '9094348057', 'kishoresmartgks@gmail.com', '2000-07-28', 20, '2', '2', 'Somu', 'Corporation worker', 11000.00, 1, 0.00, 15000.00, '11/21 hospital road t.nagar Chennai . 17', '11/21 hospital road Chennai .17', '2012010004', '1', '1', 'upload_files/candidate_tracker/48302314513_RESUME kesavan.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '16', '1970-01-01', 0.00, '10:52 AM', '', '1970-01-01', '1', 'low profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 10:44:46', 50, '2020-12-03 11:57:03', 0, NULL, 1),
(2172, 'Pooja', '13', '8189976842', '', 'subramanianpoojas@gmail.com', '1999-10-09', 21, '2', '2', 'D. Subramanian', 'Ironer', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2012010005', '15', '1', 'upload_files/candidate_tracker/50142340652_Pooja Resume.pdf', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 10:50:36', 50, '2020-12-04 06:01:36', 0, NULL, 1),
(2173, '', '0', '9585302349', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 10:50:37', 0, NULL, 0, NULL, 1),
(2174, '', '0', '9042080728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 10:52:28', 0, NULL, 0, NULL, 1),
(2175, '', '0', '8825911714', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 11:00:13', 0, NULL, 0, NULL, 1),
(2176, 'Karthika', '2', '9080811135', '7010978108', 'mkarthika456@gmail.com', '1997-07-07', 23, '2', '2', 'Muthukumar', 'Distributor', 7000.00, 1, 15000.00, 25000.00, 'Dindigul', 'Chennai', '2012010009', '1', '2', 'upload_files/candidate_tracker/58898917847_Karthika UI Resume-1.pdf', NULL, NULL, '2020-12-01', 15, '', '5', '27', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '2', 'Task not up to our level. Even she is not did what am telling', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-01 11:28:15', 64, '2020-12-23 02:42:36', 0, NULL, 1),
(2177, '', '0', '9789589619', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 11:33:56', 0, NULL, 0, NULL, 1),
(2178, 'boobalan', '23', '8940922797', '7904980781', 'boobalan27197@gmail.com', '1999-04-10', 21, '2', '2', 'muthukrishnan', 'salesman', 15000.00, 1, 15000.00, 16000.00, 'tirunelveli', 'velachery', '2012010011', '1', '2', 'upload_files/candidate_tracker/81387301404_Boonewresume.pdf', NULL, NULL, '2020-12-02', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Dont have an experience in UX', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-01 11:50:59', 64, '2020-12-23 02:41:41', 0, NULL, 1),
(2179, '', '0', '9679558561', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 11:58:07', 0, NULL, 0, NULL, 1),
(2180, 'Ashok.A', '13', '9551778959', '9361566364', 'ashok.red007@gmail.com', '1995-10-21', 25, '2', '2', 'Aadhimoolam', 'Security', 7000.00, 1, 0.00, 10000.00, 'Thoraipakkam', 'Thoraipakkam', '2012010013', '1', '1', 'upload_files/candidate_tracker/80128781999_A resume.doc', NULL, NULL, '2020-12-02', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-01 12:21:42', 1, '2020-12-01 12:33:07', 0, NULL, 1),
(2181, 'RANJINI', '5', '7904376439', '8344888115', 'ranjini9132@gmail.com', '1995-08-30', 25, '2', '2', 'SRIDHARAN', 'Salt merchant', 30000.00, 1, 12000.00, 18000.00, '83 Perumal Street, new colony, Thoothukudi', 'No 21 /2 Ponnani puram1st Street, Nungambakkam', '2012010014', '14', '2', 'upload_files/candidate_tracker/64549778635_Ranji resume New 1.docx', NULL, NULL, '2020-12-01', 0, '', '5', '59', NULL, 0.00, '03:00 PM', '0', NULL, '2', 'Not Fit,will not sustain ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 12:25:02', 1, '2020-12-01 12:46:21', 0, NULL, 1),
(2182, 'P.Arunkumar', '4', '6374150223', '9080695599', 'arunk964897@gmail.com', '2000-05-04', 20, '2', '2', 'I.Palpandi', 'None', 96000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2012010015', '1', '1', 'upload_files/candidate_tracker/98462275692_file1.PDF', NULL, NULL, '2020-12-02', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-01 12:25:52', 1, '2020-12-01 12:35:41', 0, NULL, 1),
(2183, 'Surya R', '6', '6369567009', '9787669908', 'Samsurya143r@gmail.com', '1996-12-20', 23, '2', '2', 'Ramadas', 'Farmer', 18000.00, 2, 0.00, 12000.00, 'No. 107 Nehru bazaar uthukottai 602026 thiruvallur', 'No. 14 Nyniappan Street Park Town Chennai 600003', '2012010016', '1', '1', 'upload_files/candidate_tracker/55239583229_Suryacv.pdf', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 12:41:00', 50, '2020-12-04 06:05:04', 0, NULL, 1),
(2184, '', '0', '7904332490', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 12:44:10', 0, NULL, 0, NULL, 1),
(2185, 'mohammed aslam', '13', '9751687874', '8940175919', 'maslamubaid95@gmail.com', '1995-10-08', 25, '2', '2', 'ahamadullah', 'driver', 20000.00, 1, 0.00, 10000.00, 'Pondicherry', 'Pondicherry', '2012010018', '1', '1', 'upload_files/candidate_tracker/33332947646_Aslam cv- Final.pdf', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-01 01:19:27', 50, '2020-12-04 06:05:12', 0, NULL, 1),
(2186, 'Sabari kb', '6', '7401355165', '8939165354', 'anokbrucelee@gmail.com', '1995-07-10', 25, '1', '2', 'Balu k', 'Self employed', 15000.00, 4, 15000.00, 17000.00, '698 j block seniyamman koil st Thondaiyarpet81', '698 J Block Seniyamman Koil Street Thondaiyarpet', '2012010019', '', '2', 'upload_files/candidate_tracker/39950971632_SABARI updated resume-converted.docx', NULL, NULL, '2020-12-01', 15, '5558', '5', '24', '1970-01-01', 0.00, '01:50 PM', '', '1970-01-01', '1', 'not fit our profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 01:39:37', 50, '2020-12-01 03:01:45', 0, NULL, 1),
(2187, '', '0', '9176477549', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 03:17:48', 0, NULL, 0, NULL, 1),
(2188, 'Gopinath M', '13', '9159622523', '8344265792', 'gopinathgopi3421@gmail.com', '1999-04-21', 21, '2', '2', 'Murugesan', 'Farmer', 10000.00, 3, 10000.00, 12000.00, 'Trichy', 'Trichy', '2012010021', '15', '2', 'upload_files/candidate_tracker/74743322381_GOPI _M resume.docx', NULL, NULL, '2020-12-03', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Good in Technical.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 03:19:30', 50, '2020-12-03 10:54:51', 0, NULL, 1),
(2189, 'Abdul hameed A', '23', '8148467324', '', 'Abdulhameed2904@gmail.com', '1998-04-29', 22, '2', '2', 'Asan Gani K S', 'PWD Retired', 100000.00, 1, 0.00, 16000.00, 'No 20 kareem subedhar street Royapettah Chennai-14', 'No 20 Kareem Subedhar Street Royapettah Chennai-14', '2012010022', '1', '1', 'upload_files/candidate_tracker/71265213701_Hammu Resume.docx', NULL, NULL, '2020-12-07', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Dont know the Basics', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-01 03:26:50', 65, '2020-12-24 11:30:21', 0, NULL, 1),
(2190, 'Karthikeyan Umapathy', '5', '9941903803', '8124131049', 'karthikeyanumapathy43@gmail.com', '1999-10-28', 21, '1', '2', 'Umapathy gandhi', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2012010023', '', '1', 'upload_files/candidate_tracker/87340870601_Resume-Karthikeyan Umapathy.docx', NULL, NULL, '2020-12-01', 0, '55598', '3', '8', '2020-12-03', 189600.00, '03:40 PM', '2', '1970-01-01', '1', '15800 ctc and 15th for logesh team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 03:36:16', 7, '2020-12-02 04:25:29', 0, NULL, 1),
(2191, 'Sanjeev keshavrao Joshi', '17', '9480120778', '9844009779', 'sanjeevj22@gmail.com', '1977-07-16', 43, '2', '1', 'Keshavrao', 'RTD', 50000.00, 0, 550000.00, 700000.00, 'Sriram Hanumant nagar attikolla Dharwad', 'T r nagar bengalore', '2012010024', '1', '2', 'upload_files/candidate_tracker/96959114315_SANJEEV JOSHI C V New.pdf', NULL, NULL, '2020-12-01', 30, '', '3', '8', '2020-12-07', 650000.00, '12:44 PM', '6', '2021-04-01', '1', '50359 th and with esi/pf', '5', '2', '4', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-01 03:40:06', 7, '2020-12-03 12:44:43', 0, NULL, 1),
(2192, '', '0', '8056492563', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 03:49:48', 0, NULL, 0, NULL, 1),
(2193, 'Nandhakumar N', '13', '9943169177', '8825911714', 'Nandhusweet1415@gmail.com', '1996-11-10', 24, '2', '2', 'Nagaraj', 'Coolie', 12000.00, 2, 0.00, 10000.00, 'Thiruvarur', 'Thiruvarur', '2012010026', '1', '1', 'upload_files/candidate_tracker/47835865688_nandhamsc.docx', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-01 04:20:48', 50, '2020-12-04 06:05:20', 0, NULL, 1),
(2194, 'Niveatha J', '11', '9080760927', '', 'niveatha1995@gmail.com', '1995-05-15', 25, '2', '2', 'Jayaraj D', 'Retired', 240000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Egmore, chennai', '2012010027', '1', '1', 'upload_files/candidate_tracker/50416111332_NiVi fnlResume 2020.pdf', NULL, NULL, '2020-12-02', 0, '', '5', '59', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'No much ok with agreement, will not sustain for a long', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-01 04:24:25', 58, '2020-12-23 03:21:11', 0, NULL, 1),
(2195, 'Karthik C s', '14', '9940647185', '', 'karthidhoni12@gmail.com', '1997-04-12', 23, '2', '2', 'Srinivasan', 'Fitter', 25000.00, 2, 13800.00, 25000.00, 'Chennai', 'Chennai', '2012010028', '14', '2', 'upload_files/candidate_tracker/80725891433_CSK_Resume.docx', NULL, NULL, '2020-12-03', 15, '', '5', '27', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'He knows only UI. donxquott have an experience in UX.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 08:35:41', 1, '2020-12-01 08:41:07', 0, NULL, 1),
(2196, 'Udayakumar', '5', '6381068576', '9789057190', 'Udkr1995@gmail.com', '1995-09-14', 25, '2', '2', 'A.chellappan', 'tailor (late)', 15000.00, 1, 17000.00, 19000.00, 'Chennai', 'Kaladipet', '2012010029', '3', '2', 'upload_files/candidate_tracker/75168203322_udaya resume new.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '33', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'NOT FIT FOR SALES AND RM', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 09:05:14', 50, '2020-12-03 12:51:19', 0, NULL, 1),
(2197, 'Karthick', '5', '9840751979', '', 'kartzzlak6609@gmail.com', '1990-07-19', 30, '2', '1', 'Chandrasekhar', 'Contract', 25000.00, 1, 23000.00, 30009.00, 'Avad', 'Avadi', '2012010030', '3', '2', 'upload_files/candidate_tracker/34072162159__.CVV (1).pdf', NULL, NULL, '2020-12-02', 30, '', '6', '0', NULL, 0.00, '12:31 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 10:27:48', 1, '2020-12-01 10:34:29', 0, NULL, 1),
(2198, 'Angel Gunaseeli', '20', '8148935331', '9003349097', 'angelgabi0706@gmail.com', '1998-12-16', 21, '2', '2', 'Rajan', 'Nil', 10000.00, 1, 12000.00, 15000.00, 'No.12/13 L.D.G Road Little Mount Saidapet Chennai', 'No.12/13 L.D.G Road Little Mount Saidapet Chennai', '2012020001', '14', '2', 'upload_files/candidate_tracker/43949497883_ANGELGUNASEELI RESUME.docx', NULL, NULL, '2020-12-02', 0, '', '5', '8', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'will not suite for calling and sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 08:11:31', 1, '2020-12-02 08:38:55', 0, NULL, 1),
(2199, 'saranraj b', '20', '8248435656', '9940464168', 'saran.sr365@gmail.com', '1991-04-14', 29, '1', '1', 'baskaran', 'driver', 12000.00, 0, 18000.00, 21000.00, 'ambattur', 'ambattur', '2012020002', '', '2', 'upload_files/candidate_tracker/65734973419_SARAN.Diploma.doc (1).pdf', NULL, NULL, '2020-12-02', 0, '5300', '3', '8', '2020-12-03', 288000.00, '10:23 AM', '4', '2021-05-06', '1', '24k ctc and no esi/pf for logesh team', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 09:52:41', 7, '2020-12-03 10:16:33', 0, NULL, 1),
(2200, '', '0', '8072412550', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 10:19:33', 0, NULL, 0, NULL, 1),
(2201, '', '0', '9176436623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 10:40:34', 0, NULL, 0, NULL, 1),
(2202, '', '0', '9176731795', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 10:41:42', 0, NULL, 0, NULL, 1),
(2203, '', '0', '8072638965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 10:47:13', 0, NULL, 0, NULL, 1),
(2204, 'gunasekaran', '5', '9176221557', '', 'hsh25050@gmail.com', '1996-02-01', 24, '2', '2', 'ilson', 'ailways', 40000.00, 1, 17500.00, 19000.00, 'illivakkam', 'illivakkam', '2012020007', '1', '2', 'upload_files/candidate_tracker/68050710465_GUNA.docx', NULL, NULL, '2020-12-03', 0, '', '5', '51', '1970-01-01', 0.00, '01:30 PM', '', '1970-01-01', '1', 'Low In Pressure Handling', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-02 10:51:47', 58, '2020-12-23 03:18:20', 0, NULL, 1),
(2205, 'praveenkumar s', '13', '9688866967', '8248470072', 'praveenkumarspkms@gmail.com', '1998-05-28', 22, '2', '2', 'selvam k', 'teashop', 10000.00, 2, 0.00, 15000.00, 'aruppukottai', 'kandanchavadi', '2012020008', '15', '1', 'upload_files/candidate_tracker/71737378662_Praveenkumar.S.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '27', '1970-01-01', 0.00, '04:00 PM', '', '1970-01-01', '2', 'he is not coming.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 10:54:02', 50, '2020-12-03 10:35:54', 0, NULL, 1),
(2206, 'Vignesh', '4', '9080920591', '', 'vignesh240893@gmail.com', '1993-08-23', 27, '2', '2', 'Jothikumar', 'Lift operator', 20000.00, 1, 14000.00, 20000.00, 'Morai', 'Morai', '2012020009', '15', '2', 'upload_files/candidate_tracker/40344680957_Vignesh[1].doc', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 11:17:06', 50, '2020-12-04 06:05:33', 0, NULL, 1),
(2207, '', '0', '9500448985', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 11:18:58', 0, NULL, 0, NULL, 1),
(2208, 'Surya v', '22', '8056284566', '9840598901', 'vsurya3933@gmail.com', '1999-11-17', 21, '2', '2', 'Veera chandran.d', 'Accountant', 150000.00, 1, 0.00, 13000.00, 'Perambur, Chennai', 'Perambur, Chennai', '2012020011', '1', '1', 'upload_files/candidate_tracker/56116285354_CV_2020-12-02-114835.pdf', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-02 11:22:45', 50, '2020-12-04 06:06:17', 0, NULL, 1),
(2209, 'Vignesh', '13', '9940655307', '9894336361', 'vikkicharan17@gmail.com', '1995-12-02', 25, '2', '2', 'Govindhasamy', 'Formar', 15.00, 1, 20.00, 28.00, 'Avadi', 'Avadi', '2012020012', '1', '2', 'upload_files/candidate_tracker/46337834219_Vignesh G-Resume.pdf', NULL, NULL, '2020-12-02', 0, '', '5', '27', '1970-01-01', 0.00, '11:42 AM', '', '1970-01-01', '1', 'He already got job.', '2', '2', '', '', '', '', '2', '2020-12-10', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-02 11:37:25', 65, '2020-12-24 10:12:06', 0, NULL, 1),
(2210, '', '0', '9003349097', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 11:44:34', 0, NULL, 0, NULL, 1),
(2211, 'Ragavan', '20', '9940577185', '7305838715', 'sundarragavant@gmail.com', '1986-06-04', 34, '2', '1', 'Sundaramurthy', 'Nil', 3000.00, 2, 70000.00, 60000.00, 'Chennai', 'Chennai', '2012020014', '1', '2', 'upload_files/candidate_tracker/21482498127_Resume - FPS.pdf', NULL, NULL, '2020-12-02', 0, '', '5', '44', NULL, 0.00, '12:03 PM', '0', NULL, '1', 'Not fit for Sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-02 11:52:22', 1, '2020-12-02 12:03:58', 0, NULL, 1),
(2212, '', '0', '7010497421', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 11:54:30', 0, NULL, 0, NULL, 1),
(2213, '', '0', '7005845633', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 12:18:10', 0, NULL, 0, NULL, 1),
(2214, 'Vineeth Gowtham', '23', '9843846647', '8072478836', 'Vineethgowtham123@gmail.com', '1998-03-05', 22, '2', '2', 'Vijayakumar', 'Ex-ServiceMan', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2012020017', '1', '1', 'upload_files/candidate_tracker/22041841138_vineeth ciru.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Task not completed', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-02 12:27:11', 64, '2020-12-23 02:44:41', 0, NULL, 1),
(2215, 'priyadarshini.p', '4', '9742636580', '', '', '1994-09-14', 26, '2', '2', 'pandu', 'plumbler', 8000.00, 2, 0.00, 15000.00, 'bangalore', 'bangalore', '2012020018', '1', '1', 'upload_files/candidate_tracker/83434955830_2020 resume.docx', NULL, NULL, '2020-12-04', 0, '', '8', '', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-02 12:43:11', 7, '2020-12-04 05:45:52', 0, NULL, 1),
(2216, 'Swaraj shekhar', '6', '6383842997', '', 'swarajsekhar1994@gmail.com', '1996-03-22', 24, '2', '2', 'Krushna chandra patajoshi', 'Self employeed', 30000.00, 1, 18000.00, 22000.00, 'No-364,jeypore,koraput,odisha,764002', 'No-5,ground floor,pandiyan street,chennai-600044', '2012020019', '1', '2', 'upload_files/candidate_tracker/94834010484_swaraj pdf cv November-2020 pdf.pdf', NULL, NULL, '2020-12-02', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 01:52:23', 1, '2020-12-02 01:59:32', 0, NULL, 1),
(2217, 'VAISHALI', '4', '9003057397', '9092275345', 'N.vaishu2303@gmail.com', '1999-03-23', 21, '2', '2', 'Narayana moorthy', 'BE ECE', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai, ayanavaram', '2012020020', '14', '1', 'upload_files/candidate_tracker/98601705111_resume vaishali.docx', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 02:05:54', 50, '2020-12-04 06:05:42', 0, NULL, 1),
(2218, 'VENKATESH S', '13', '9597568777', '', 'venkateshmani13@gmail.com', '1998-06-13', 22, '2', '2', 'SUBRAMANI', 'Mason', 16000.00, 2, 0.00, 12000.00, '21/15 Anandeeswaran koil Street Chidambaram-608001', 'Door No. 1 Walmeegi Street Perungalathur-600063', '2012020021', '15', '1', 'upload_files/candidate_tracker/21293044827_S.Venkatesh_resume.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Task not completed.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 02:35:57', 50, '2020-12-03 11:00:18', 0, NULL, 1),
(2219, 'Mohamed Rawan', '23', '9487391727', '9994240203', 'alrawanhope@gmail.com', '1999-03-21', 21, '2', '2', 'Abdul kareem', 'Salesman', 15000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2012020022', '1', '1', 'upload_files/candidate_tracker/49023347778_final45.docx', NULL, NULL, '2020-12-05', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'System Task not Completed.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-02 04:43:09', 65, '2020-12-24 10:20:03', 0, NULL, 1),
(2220, '', '0', '7397241447', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 05:01:01', 0, NULL, 0, NULL, 1),
(2221, 'Aakash R', '21', '9626484361', '', 'rmasaakash12@gmail.com', '1998-12-16', 21, '2', '2', 'Ravi P', 'Daily Wages', 8000.00, 1, 0.00, 12000.00, 'Madurai', 'Chennai', '2012020024', '1', '1', 'upload_files/candidate_tracker/93129020874_Aakash Resume.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '32', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'Not Accepted for Bond', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 05:15:46', 50, '2020-12-03 03:41:44', 0, NULL, 1),
(2222, '', '0', '0981302371', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 05:34:26', 0, NULL, 0, NULL, 1),
(2223, 'Sivapriya', '14', '6374598161', '9598427352', 'sivapriyarajendran1510@gmail.com', '1997-06-01', 23, '2', '2', 'Rajendran', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2012020026', '14', '2', 'upload_files/candidate_tracker/97322879384_CV_2020-11-20-091610.pdf', NULL, NULL, '2020-12-04', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 05:47:35', 7, '2020-12-04 05:46:01', 0, NULL, 1),
(2224, 'Archana', '13', '7708359523', '', 'msarchana1996@gmail.com', '1996-09-22', 24, '2', '2', 'Selvaraj', 'Retair Head master', 60.00, 2, 205000.00, 305000.00, 'Thanjavur', 'Chennai', '2012020027', '1', '2', 'upload_files/candidate_tracker/65821886550_ArchanaResume-converted.pdf', NULL, NULL, '2020-12-05', 30, '', '8', '', '1970-01-01', 0.00, '11:41 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-02 06:36:17', 7, '2020-12-05 04:40:04', 0, NULL, 1),
(2225, 'Akhil Kumar', '23', '6381886243', '9715495642', 'akil9vball@gmail.com', '1997-02-25', 23, '2', '2', 'Santhanam', 'Chef', 30.00, 1, 30.00, 40.00, 'Chennai', 'Chennai', '2012020028', '14', '2', 'upload_files/candidate_tracker/90085175554_AKHIL KUMAR.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '27', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'UI not Satisfied', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 08:29:52', 1, '2020-12-02 08:35:21', 0, NULL, 1),
(2226, 'P M Mohammed Ansari', '23', '7358501151', '', 'Ansarimohamed754@gmail.com', '1998-01-16', 22, '2', '2', 'M Naseera Begum', 'house wife', 50000.00, 1, 0.00, 16000.00, 'No 14, subbaraya street,triplicane,chennai 600 005', 'No 14, subbaraya street,triplicane,chennai 600 005', '2012020029', '1', '1', 'upload_files/candidate_tracker/43455934279_RESUME.docx', NULL, NULL, '2020-12-07', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Dont know the Basics', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 09:40:10', 50, '2020-12-07 11:47:54', 0, NULL, 1),
(2227, '', '0', '7397338544', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 07:34:13', 0, NULL, 0, NULL, 1),
(2228, 'PRASANTH M', '21', '7845588810', '7010959442', 'Prasanthvel77@gmail.com', '1993-12-24', 26, '2', '2', 'MURUGAVEL K', 'POLICE', 30000.00, 0, 22000.00, 20000.00, 'Chennai', 'Chennai', '2012030002', '1', '2', 'upload_files/candidate_tracker/13216520493_interview.pdf', NULL, NULL, '2020-12-04', 0, '', '5', '32', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Expected Salary is High', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-03 10:24:55', 50, '2020-12-04 12:20:04', 0, NULL, 1),
(2229, 'saranya damodaran', '5', '8754190653', '8248066865', 'saranyadamu22@gmail.com', '1996-08-11', 24, '2', '2', 'damodaran', 'business', 20000.00, 1, 0.00, 16000.00, 'chengelpet', 'chengelpet', '2012030003', '1', '1', 'upload_files/candidate_tracker/43220306618_cv (6).pdf', NULL, NULL, '2020-12-05', 0, '', '5', '44', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'She is Looking OPS or HR Job', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-03 11:55:33', 64, '2020-12-23 02:46:26', 0, NULL, 1),
(2230, '', '0', '9597994449', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 12:11:37', 0, NULL, 0, NULL, 1),
(2231, '', '0', '7338756314', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 12:14:46', 0, NULL, 0, NULL, 1),
(2232, 'a naveenkumar', '13', '8524818461', '8523989616', 'naveenarumugam143@gmail.com', '1999-03-07', 21, '2', '2', 'k arumugam', 'daily workers', 6000.00, 3, 0.00, 15000.00, 'salem', 'chennai', '2012030006', '1', '1', 'upload_files/candidate_tracker/83238391126_NK_PHP.pdf', NULL, NULL, '2020-12-05', 0, '', '8', '', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-03 02:12:18', 7, '2020-12-05 04:39:42', 0, NULL, 1),
(2233, 'Shankar anand SM', '5', '9789951857', '9445252597', 'anand7594@gmail.com', '1994-05-07', 26, '2', '1', 'Mani s', 'Retired govt.', 30000.00, 1, 26000.00, 28000.00, 'Avadi', 'Avadi', '2012030007', '1', '2', 'upload_files/candidate_tracker/86352426518_Shankar Resume.docx', NULL, NULL, '2020-12-04', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-03 02:41:49', 58, '2020-12-29 10:19:25', 0, NULL, 1),
(2234, 'ANKIT KUMAR LOHAR', '13', '7727933171', '7014327757', '7727ankit@gmail.com', '1999-04-16', 21, '2', '2', 'DILIP KUMAR', 'Nothing', 50000.00, 3, 0.00, 15000.00, 'Sirohi, rajasthan', 'Chennai', '2012030008', '15', '1', 'upload_files/candidate_tracker/10738246198_ANKIT CV.pdf', NULL, NULL, '2020-12-04', 0, '', '5', '27', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'He dont have a knowledge in PHP.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 02:42:29', 50, '2020-12-04 11:00:08', 0, NULL, 1),
(2235, '', '0', '9884955446', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 02:47:18', 0, NULL, 0, NULL, 1),
(2236, 'rahul', '13', '8870148773', '9025612455', 'rahulm031097@gmail.com', '1997-06-03', 23, '2', '2', 'muniyandi v', 'fisherman', 10000.00, 3, 10000.00, 15000.00, 'ramnathapuram', 'chennai', '2012030010', '1', '2', 'upload_files/candidate_tracker/833593014_resume.pdf', NULL, NULL, '2020-12-04', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Having 5 months experience. last 7 month gap. he dont have a knowledge in PHP.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-03 02:48:48', 64, '2020-12-23 02:47:26', 0, NULL, 1),
(2237, 'SELVARAJ G', '4', '7358083837', '7448668373', 'Selvarajg684@gmail.com', '1997-12-09', 22, '2', '2', 'GOVINDARAJAN V', 'Private employe', 15000.00, 1, 0.00, 15000.00, 'Perambhur, Chennai', 'Perambhur, Chennai', '2012030011', '1', '1', 'upload_files/candidate_tracker/13737482372_resume_1580621923458.pdf', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '04:30 PM', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-03 02:54:54', 50, '2020-12-04 06:05:58', 0, NULL, 1),
(2238, 'wilson raj', '13', '8807621678', '', 'awilsonraj@gmail.com', '1994-06-30', 26, '2', '1', 'alex', 'ex army', 15000.00, 0, 0.00, 15000.00, 'Krishnagiri', 'Krishnagiri', '2012030012', '15', '1', 'upload_files/candidate_tracker/25165884722_wilson', NULL, NULL, '2020-12-04', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 02:59:05', 7, '2020-12-04 05:46:21', 0, NULL, 1),
(2239, 'Manjunath', '6', '7892080788', '9743356195', 'manjapnp11@gmail.com', '1999-09-28', 21, '2', '2', 'Nagendra', 'Own business', 30000.00, 3, 16000.00, 17000.00, 'Mysore Road bangalore', 'Mysore Road bangalore', '2012030013', '1', '2', 'upload_files/candidate_tracker/36515858763_CURICULUM manjunath N.docx', NULL, NULL, '2020-12-04', 15, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-03 03:02:50', 58, '2020-12-23 03:22:21', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2240, 'Mohammed ijaz', '4', '6369211462', '7395935326', 'ijazrockmsn@gmail.com', '1999-08-27', 21, '1', '2', 'Kaja moideen', 'Car driver', 30000.00, 1, 0.00, 18000.00, 'Ambattur', 'Ambattur', '2012030014', '', '1', 'upload_files/candidate_tracker/97016504704_ejaz resume .pdf', NULL, NULL, '2020-12-04', 0, 'Priyanka', '8', '', '1970-01-01', 0.00, '03:07 PM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 03:03:09', 7, '2020-12-04 05:47:06', 0, NULL, 1),
(2241, '', '0', '9080974561', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 04:50:51', 0, NULL, 0, NULL, 1),
(2242, '', '0', '9036888612', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 05:16:24', 0, NULL, 0, NULL, 1),
(2243, 'Balaji A', '6', '8248715073', '9884691213', 'Samuelbalaji98@gmail.com', '1997-12-30', 22, '2', '2', 'ARISTOTLE', 'Business', 45000.00, 1, 0.00, 12000.00, 'No2 gurusamy nagar 1st street anakapthur Chennai70', 'No2 Gurusamy Nagar 1st Street Anakapthur Chennai70', '2012030017', '15', '1', 'upload_files/candidate_tracker/4058016685_balaji resume updated.docx', NULL, NULL, '2020-12-11', 0, '', '3', '8', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', '13k ctc and for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 05:45:50', 7, '2020-12-11 06:10:37', 0, NULL, 1),
(2244, '', '0', '9626489106', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 07:11:33', 0, NULL, 0, NULL, 1),
(2245, 'Malaiyarasi M', '4', '9095181271', '8939114899', 'Malaiarasi136@gmail.com', '1992-04-29', 28, '2', '2', 'Mahalingam E', 'Agriculture And own business', 20000.00, 1, 15000.00, 15000.00, 'Virudhunagar', 'Chennai', '2012030019', '1', '2', 'upload_files/candidate_tracker/30606502666_resume new.docx', NULL, NULL, '2020-12-04', 0, '', '5', '11', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '2', 'communication is poor', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 07:52:47', 50, '2020-12-04 11:33:40', 0, NULL, 1),
(2246, '', '0', '7708122916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 08:10:07', 0, NULL, 0, NULL, 1),
(2247, 'Vinoth kumar.l', '6', '8072443921', '9962101343', 'vinothdce9@gmail.com', '1995-11-09', 25, '1', '2', 'Loganathan.v', 'employee in Hardware Business(s k tools)', 30000.00, 0, 0.00, 15000.00, 'Iyyapanthangal', 'Iyyapanthangal', '2012040001', '', '1', 'upload_files/candidate_tracker/78702809704_RESUME.pdf', NULL, NULL, '2021-01-06', 0, 'Jobs', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' Sustain doubt', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-04 09:16:09', 8, '2021-01-06 03:17:46', 0, NULL, 1),
(2248, 'kishorekumar', '23', '7550226236', '', 'kishorekumarchess81@gmail.com', '1996-06-15', 24, '2', '2', 'sivakuar', 'bussinessman', 40000.00, 0, 0.00, 250000.00, 'chennai', 'chennai', '2012040002', '1', '2', 'upload_files/candidate_tracker/46899370480_Kishore resume.pdf', NULL, NULL, '2020-12-07', 0, '', '5', '27', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'Not Upto the Level', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-04 10:24:17', 64, '2020-12-28 03:07:31', 0, NULL, 1),
(2249, 'M aziz ishrath', '5', '9490197979', '', '', '1995-08-30', 25, '2', '2', 'M noor mohammad', 'Master\'s in management', 50000.00, 0, 0.00, 3.50, 'Anantapur', 'Banglore', '2012040003', '1', '1', 'upload_files/candidate_tracker/10529809977_M AZIZ ISHRATH-1.pdf', NULL, NULL, '2020-12-04', 0, '', '5', '38', NULL, 0.00, '01:00 PM', '0', NULL, '1', 'expecting high package but he is fresher', '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-04 10:36:12', 1, '2020-12-04 10:55:47', 0, NULL, 1),
(2250, 'rajalakshmi t r', '14', '9544973446', '', 'mails2rajalakshmi@gmail.com', '1995-10-30', 25, '2', '2', 'rajan t', 'android developer', 40000.00, 1, 15000.00, 28000.00, 'thrissur kerela', 'kochi kerela', '2012040004', '14', '2', 'upload_files/candidate_tracker/85947197848_rajalakshmi_tr_.pdf', NULL, NULL, '2020-12-05', 15, '', '8', '', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 10:48:11', 7, '2020-12-05 04:39:32', 0, NULL, 1),
(2251, 'probin', '2', '9566209971', '7448613500', 'e.probin49@gmail.com', '1987-04-03', 33, '2', '2', 'elias', 'software engineer', 10000.00, 2, 16000.00, 40000.00, 'kanyakumari tamil nadu', 'chennai', '2012040005', '14', '2', 'upload_files/candidate_tracker/96249874930_Resume.doc', NULL, NULL, '2020-12-04', 27, '', '8', '', '1970-01-01', 0.00, '11:32 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 11:07:27', 7, '2020-12-04 05:46:47', 0, NULL, 1),
(2252, '', '0', '9047303304', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 11:09:21', 0, NULL, 0, NULL, 1),
(2253, 'karthik s', '8', '9526241247', '', 'karthiksaravanan1994@gmail.com', '1994-12-10', 25, '2', '2', 'saravanan r', 'sales man', 500000.00, 0, 3000.00, 300000.00, 'kerala', 'chennai', '2012040007', '1', '2', 'upload_files/candidate_tracker/22659695787_Karthik resume.pdf', NULL, NULL, '2020-12-05', 0, '', '3', '8', '2020-12-08', 216000.00, '10:00 AM', '4', '2021-03-15', '2', '18k ctc for raghu team', '7', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 11:18:08', 7, '2020-12-07 06:46:22', 0, NULL, 1),
(2254, '', '0', '7200486093', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 11:26:47', 0, NULL, 0, NULL, 1),
(2255, 'Sarathkumar B', '14', '7502782895', '8328646240', 'sarathkumardr5@gmail.com', '1993-07-03', 27, '2', '2', 'Baskaran B', 'Business', 15000.00, 2, 725000.00, 850000.00, 'Arani', 'Chennai', '2012040009', '1', '2', 'upload_files/candidate_tracker/27667277768_SarathResume_5.docx', NULL, NULL, '2020-12-05', 30, '', '8', '', '1970-01-01', 0.00, '05:00 PM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-04 11:30:18', 7, '2020-12-05 04:39:21', 0, NULL, 1),
(2256, 'Sathish Kumar', '4', '9514552931', '', 'sathishkumar29213@gmail.com', '1998-06-26', 22, '2', '2', 'Govindhan', 'Daily wages', 25000.00, 3, 15000.00, 17000.00, 'No.10 barracks street sevenwells Chennai', 'Chennai.600001', '2012040010', '1', '2', 'upload_files/candidate_tracker/91497767586_SK 123.docx', NULL, NULL, '2020-12-05', 0, '', '3', '8', '2020-12-16', 202200.00, '11:49 AM', '2', '1970-01-01', '2', '16850 ctc and th 16k.', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 11:46:16', 7, '2020-12-10 03:14:30', 0, NULL, 1),
(2257, 'P.sankaranarayanan', '13', '8778685369', '7397447022', 'sankarparthasarathy19@gmail.com', '1999-06-08', 21, '2', '2', 'R.parthasarathy', 'Mtc', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2012040011', '1', '1', 'upload_files/candidate_tracker/40189454676_SANKAR_Resume - Copy.docx', NULL, NULL, '2020-12-09', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'He donxquott know the Basics', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-04 12:01:58', 64, '2020-12-23 02:48:10', 0, NULL, 1),
(2258, 'Pandiyan', '5', '8700261130', '', 'dpandiyan553@gmail.com', '1988-06-12', 32, '2', '2', 'Deivasigamani', 'Former', 10000.00, 1, 20000.00, 25000.00, 'Ariyalur', 'Chennai thoraipakkam', '2012040012', '14', '2', 'upload_files/candidate_tracker/62876583900_pandi 3.pdf', NULL, NULL, '2020-12-04', 1, '', '8', '', '1970-01-01', 0.00, '03:30 PM', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 12:13:15', 7, '2020-12-04 05:46:56', 0, NULL, 1),
(2259, 'R.VIJAY ADITHYEN', '13', '9790782493', '9094195737', 'r.vijay2799@gmail.com', '1999-01-27', 21, '2', '2', 'S.Rajasekaran', 'Retired', 20000.00, 1, 15000.00, 22000.00, 'Chennai', 'Chennai', '2012040013', '1', '2', 'upload_files/candidate_tracker/83508352388_Vijay-Adithyen-Resume.pdf', NULL, NULL, '2020-12-05', 15, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not Completed Task.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-04 12:20:12', 64, '2020-12-23 02:45:22', 0, NULL, 1),
(2260, 'Saravanan', '6', '9884188478', '9740030218', 'r.sarvan@hotmail.com', '1993-11-19', 27, '2', '2', 'Rajendran', 'Farmer', 25000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2012040014', '14', '2', 'upload_files/candidate_tracker/28389650398_Saravanan resume.docx', NULL, NULL, '2020-12-04', 0, '', '3', '8', '2020-12-07', 300000.00, '03:00 PM', '6', '2021-09-03', '1', '25k ctc for GK team. no esi/pf', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 12:30:46', 7, '2020-12-05 12:29:13', 0, NULL, 1),
(2261, 'Karthikeyan. P', '5', '9094971550', '', 'karthi2628@gmail.com', '1994-07-29', 26, '1', '1', 'KIRTHIKA', 'Teacher', 20000.00, 1, 0.00, 22000.00, 'Royapeattha', 'Royapeattha', '2012040015', '', '1', 'upload_files/candidate_tracker/26622614769_Karthikyan.doc03.doc', NULL, NULL, '2020-12-07', 0, 'Nithosh vebin team', '3', '8', '2020-12-10', 288000.00, '11:00 AM', '2', '1970-01-01', '1', '24k  ctc and no esi/pf, for rajkumar team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 12:55:56', 7, '2020-12-08 11:37:09', 0, NULL, 1),
(2262, '', '0', '0987654321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 01:05:26', 0, NULL, 0, NULL, 1),
(2263, '', '0', '8610808437', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 01:31:19', 0, NULL, 0, NULL, 1),
(2264, 's.vigneshwari', '13', '9080809495', '9715761752', 'vigneshwari1197@gmail.com', '1997-11-05', 23, '2', '2', 'p.shanmugasundaram', 'flower merchant', 150000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2012040018', '1', '1', 'upload_files/candidate_tracker/8262433590_VIGNESHWARI.S_Profile.pdf', NULL, NULL, '2020-12-10', 0, '', '6', '0', NULL, 0.00, '10:01 AM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-04 02:33:07', 1, '2020-12-04 03:04:00', 0, NULL, 1),
(2265, 'Yadavendhiran Oddashetty', '6', '9987829747', '9892662977', 'oddashettyyadu@gmail.com', '2003-01-01', 17, '2', '2', 'Thanigasalam Oddashetty', 'Worker', 10000.00, 1, 0.00, 12000.00, '153,Poonamallee Avadi Main Road, CH-77', '153, Poonamallee Avadi Main Road, CH-77', '2012040019', '14', '1', 'upload_files/candidate_tracker/10560941847_20200718_195451-converted.pdf', NULL, NULL, '2020-12-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 02:35:50', 7, '2020-12-05 04:39:11', 0, NULL, 1),
(2266, '', '0', '8098979841', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 03:02:12', 0, NULL, 0, NULL, 1),
(2267, '', '0', '7871790099', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 03:15:17', 0, NULL, 0, NULL, 1),
(2268, 'Kirthiga.E', '4', '7358289466', '9791084946', 'peacemaker_441@outlook.com', '1992-01-08', 28, '2', '2', 'M.Elanthirayan', 'CSR,Coperative subregister', 70000.00, 1, 0.00, 12000.00, 'No-103,thilkar Avenue,Balaiya garden,Madipakkam', 'No-103,Thilkar Avenue,Balaiya garden,Madipakkam', '2012040022', '1', '1', 'upload_files/candidate_tracker/23501064611_Kirthiga.pdf', NULL, NULL, '2020-12-08', 0, '', '8', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'candidate gone', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-04 03:28:56', 58, '2020-12-29 09:54:41', 0, NULL, 1),
(2269, 'Abinesh S', '26', '8754282394', '', 'abineshmahi7@gmail.com', '1999-03-02', 24, '2', '2', 'Senthilkumar s', 'Late', 20000.00, 2, 19.50, 27000.00, 'THIRUVALLUR DT', 'THIRUVALLUR DT', '2012040023', '1', '2', 'upload_files/candidate_tracker/72863928600_Abi.02.pdf', NULL, '1', '2023-12-14', 30, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2020-12-04 03:34:16', 104, '2023-12-14 01:27:13', 0, NULL, 1),
(2270, 'shameem chittara', '13', '8838452072', '', 'shameemchittara@gmail.com', '1998-05-01', 22, '3', '2', 'shamsudeen', 'daily wages', 5000.00, 2, 0.00, 15000.00, 'trichy', 'Chennai', '2012040024', '', '1', 'upload_files/candidate_tracker/16420988816_shameem resume.docx', NULL, NULL, '2020-12-10', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 04:39:08', 1, '2020-12-04 06:06:52', 0, NULL, 1),
(2271, 'S. Subash', '6', '6380472892', '8056131282', 'zensubash44@gmail.com', '2000-05-03', 20, '2', '2', 'B. Sekar', 'Medical Marketing', 20.00, 1, 0.00, 13.00, 'No. 46 New farrance road, pattalam, chennai 600012', 'No. 44 pachaikal veeraswamy street, Aynavaram ch14', '2012040025', '14', '1', 'upload_files/candidate_tracker/4741300021_Resume.pdf', NULL, NULL, '2020-12-07', 0, '', '3', '8', '1970-01-01', 156000.00, '11:00 AM', '2', '1970-01-01', '1', '13k for Saravana team.', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 05:43:55', 7, '2020-12-09 04:32:19', 0, NULL, 1),
(2272, 'karthikeyan k', '14', '8778339120', '9551411913', 'karthikanniyappan0506@gmail.com', '1999-06-05', 21, '2', '2', 'kanniappan', 'private company supervisor', 500000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2012040026', '1', '1', 'upload_files/candidate_tracker/14185268529_resumeupdated.docx', NULL, NULL, '2020-12-05', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He had an offer in infosys. he will not sustain with us.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-04 06:01:59', 65, '2020-12-24 10:17:24', 0, NULL, 1),
(2273, 'Jaisugan', '13', '8667339950', '', 'sugan2899@gmail.com', '1999-07-28', 21, '2', '2', 'Gunabalan', 'Business', 200000.00, 1, 0.00, 400000.00, 'Tiruchirappalli', 'Chennai', '2012040027', '1', '1', 'upload_files/candidate_tracker/75190617004_Yellow Confetti Teacher Creative Resume (1).pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He dont have a knowledge in which position he applied.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-04 06:46:49', 65, '2020-12-24 11:54:52', 0, NULL, 1),
(2274, 'Priyanka', '23', '8608689950', '8870113566', 'Priyankaharini8@gmail.com', '1998-07-01', 22, '2', '2', 'Ohm prakash', 'Hotel manager', 9000.00, 1, 0.00, 20000.00, 'Villlupuram', 'Chennai', '2012040028', '1', '1', 'upload_files/candidate_tracker/66809562678_PRIYANKA. resume (1)-converted (2).pdf', NULL, NULL, '2020-12-08', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-04 06:53:12', 1, '2020-12-04 06:58:09', 0, NULL, 1),
(2275, '', '0', '7397265626', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 07:41:21', 0, NULL, 0, NULL, 1),
(2276, 'Patric Richard', '5', '8870330109', '9176255464', 'Patricdurairaj@gmail.com', '1991-01-10', 29, '2', '1', 'Anitha', 'Medical billing', 31.00, 1, 19500.00, 21000.00, 'Chennai', 'Chennai', '2012040030', '1', '2', 'upload_files/candidate_tracker/72890548661_PATRIC NEW 001.doc', NULL, NULL, '2020-12-07', 0, '', '8', '', '1970-01-01', 0.00, '10:07 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-04 07:57:49', 7, '2020-12-07 06:28:33', 0, NULL, 1),
(2277, '', '0', '9944932339', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 09:59:00', 0, NULL, 0, NULL, 1),
(2278, 'A.Yuva', '13', '9500134967', '9841409253', 'beanyuva@gmail.com', '1993-07-02', 27, '2', '2', 'R.Arivanandam', 'Hime', 20000.00, 1, 0.00, 8000.00, 'Chennai', 'Adambakkam', '2012050002', '1', '1', 'upload_files/candidate_tracker/84905568167_yuva resume.docx', NULL, NULL, '2020-12-07', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-05 11:06:36', 7, '2020-12-07 06:17:29', 0, NULL, 1),
(2279, 'Jeeva.T', '2', '9176266079', '9789535050', 'jeevat0123@gmail.con', '1999-01-23', 21, '2', '2', 'THANGARAJ.K', 'Senior Assistant & cashier', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2012050003', '1', '1', 'upload_files/candidate_tracker/62640539510_Resume_Jeeva19-nov2020.pdf', NULL, NULL, '2020-12-07', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Dont have a knowledge in PHP', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-05 11:11:18', 64, '2020-12-28 03:08:33', 0, NULL, 1),
(2280, '', '0', '7871167696', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 11:21:02', 0, NULL, 0, NULL, 1),
(2281, 'tamizhselvan g', '6', '7200421296', '7871315210', 'tamizhsmart30@gmail.com', '1997-05-04', 23, '1', '2', 'n. gowdhaman', 'cooly', 6000.00, 10, 12000.00, 15000.00, 'chennai', 'chennai', '2012050005', '', '2', 'upload_files/candidate_tracker/33086811229_Thamizh selvan-4.pdf', NULL, NULL, '2020-12-05', 0, 'jobs', '5', '8', NULL, 0.00, '12:41 PM', '0', NULL, '1', 'will not suite for rE. no communication and not speaking up.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 11:28:30', 1, '2020-12-05 12:46:52', 0, NULL, 1),
(2282, 'Deepika Sri', '13', '6384662049', '8526022049', 'deepu deepi39@gmail.com', '1999-03-27', 21, '2', '2', 'Chandrasekaran', 'Operator', 30000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2012050006', '1', '1', 'upload_files/candidate_tracker/81655318830_Doc 30-11-2020 8.03.28 PM.pdf', NULL, NULL, '2020-12-07', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-05 11:34:56', 7, '2020-12-07 06:28:08', 0, NULL, 1),
(2283, 'Laxmi kumari', '5', '7484919523', '8618268525', 'vyahutluxsah29@gmail.com', '1996-01-01', 24, '2', '2', 'Munna parsad', 'Bussines', 50.00, 2, 16.00, 23.00, 'Madhwapur', 'Bangalore', '2012050007', '1', '2', 'upload_files/candidate_tracker/12362626352_Curriculum Vitae_Laxmi sah-converted.pdf', NULL, NULL, '2020-12-07', 0, '', '5', '8', '1970-01-01', 0.00, '01:10 PM', '', '1970-01-01', '2', 'no response', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-05 11:39:54', 58, '2020-12-23 12:32:49', 0, NULL, 1),
(2284, 'sharmila', '4', '9159713809', '8072344317', 'shakidev1993@gmail.com', '1998-04-06', 22, '2', '2', 'vijayakumar g', 'site supervisor', 15000.00, 4, 11000.00, 15000.00, 'kallakurichi', 'saitapet', '2012050008', '1', '2', 'upload_files/candidate_tracker/20861969482_sharmi resume .pdf', NULL, NULL, '2020-12-05', 0, '', '5', '21', '1970-01-01', 0.00, '01:03 PM', '', '1970-01-01', '2', 'she have experienced in credit card collection process.. she  dont have sales skill . but expecting  18k above xxamp also she is not sustain long term , bcz 6 month only she planned working...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 12:01:42', 50, '2020-12-05 01:30:22', 0, NULL, 1),
(2285, 'Prabakaran R', '5', '9710013610', '', 'prabhakaran2594@gmail.com', '1994-05-25', 26, '1', '2', 'Ravi', 'Nil', 30000.00, 1, 30000.00, 30000.00, 'Korattur, Chennai', 'Kodambakkam, Chennai', '2012050009', '', '2', 'upload_files/candidate_tracker/84578814328_RESUME - Praba(1).pdf', NULL, NULL, '2020-12-05', 0, 'sarth3369', '5', '29', '1970-01-01', 0.00, '12:22 PM', '', '1970-01-01', '1', 'NOT SELECTED', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 12:16:02', 50, '2020-12-05 12:30:38', 0, NULL, 1),
(2286, '', '0', '7871317363', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 12:55:41', 0, NULL, 0, NULL, 1),
(2287, 'Bharath', '5', '7299975992', '9941916943', 'bharathmohanraj92@gmail.com', '1992-07-14', 28, '2', '1', 'Mohanraj', 'Buliding contractors', 1.00, 1, 20000.00, 23000.00, 'Villivakkam', 'Villivakkam', '2012050011', '15', '2', 'upload_files/candidate_tracker/12880110383_1601705323069_Bharath_Latest_Resume.docx', NULL, NULL, '2020-12-07', 0, '', '5', '44', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'He is not fit for life sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 12:58:55', 50, '2020-12-07 03:33:43', 0, NULL, 1),
(2288, 'Sushmitha N', '5', '9790792466', '9080684914', 'sushmi049@gmail.com', '1995-08-10', 25, '2', '1', 'R. Natarajan', 'Business', 60000.00, 2, 27500.00, 30000.00, 'Chennai', 'Chennai', '2012050012', '1', '2', 'upload_files/candidate_tracker/43471920627_N SUSHMITHA RESUME .pdf', NULL, NULL, '2020-12-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not int in field sales. as CRM she is exp 20K.', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-05 01:37:48', 58, '2020-12-23 12:33:26', 0, NULL, 1),
(2289, 'Kavitha', '4', '7397412443', '9360454166', 'kavithnk081801@gmail.com', '1999-07-01', 21, '2', '2', 'Raja', 'Plumber', 24000.00, 2, 0.00, 14000.00, 'Ayanavaram', 'Ayanavaram', '2012050013', '1', '1', 'upload_files/candidate_tracker/37392416931_KAVITHA.R.doc', NULL, NULL, '2020-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not much communicative', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-05 02:44:40', 58, '2020-12-23 12:35:09', 0, NULL, 1),
(2290, 'Tejaswi chavali', '2', '9491647808', '9492689370', 'tejaswichavali9@gmail.com', '1998-04-14', 22, '4', '2', 'Valeswararao', 'Compounder', 25000.00, 1, 15750.00, 28000.00, 'Andhra Pradesh', 'Chennai', '2012050014', '', '2', 'upload_files/candidate_tracker/6676811016_Teja_Resume (1).pdf', NULL, NULL, '2020-12-07', 15, '', '8', '', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 03:37:28', 7, '2020-12-07 06:17:00', 0, NULL, 1),
(2291, 'balaganesh', '6', '9884893368', '7904472720', 'jeffbala27@gmail.com', '1990-06-29', 30, '2', '2', 'nil', 'mba', 300000.00, 0, 18000.00, 18000.00, 'Chennai', 'Chennai', '2012050015', '1', '2', 'upload_files/candidate_tracker/82000667380_RESUME2.docx', NULL, NULL, '2020-12-07', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-05 04:31:38', 7, '2020-12-07 06:17:10', 0, NULL, 1),
(2292, 'VANITHAMANI.S', '13', '8667450755', '7904654825', 'vanithasampath1010@gmail.com', '1988-07-10', 32, '2', '1', 'K.G.Sampathkumar', 'Design engineer', 30000.00, 1, 0.00, 25000.00, 'Tirupur', 'Chennai', '2012050016', '1', '1', 'upload_files/candidate_tracker/91081804332_vanitha resume.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Task Not completed', '2', '2', '', '', '', '', '2', '2020-12-10', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-05 04:40:03', 64, '2020-12-23 02:49:53', 0, NULL, 1),
(2293, '', '0', '9551177020', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 04:40:45', 0, NULL, 0, NULL, 1),
(2294, '', '0', '9566621951', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 05:18:55', 0, NULL, 0, NULL, 1),
(2295, 'vaishnavi kalidhasan', '4', '9087539292', '8939464660', 'vaishadhasan97@gmail.com', '1997-11-18', 23, '2', '2', 'n.kalidhasan', 'mtc', 20000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2012050019', '1', '1', 'upload_files/candidate_tracker/28252769613_1607322757140a84450143_pdf.pdf', NULL, NULL, '2020-12-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'fresher, no job need, time being she is looking for job.', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-05 05:26:08', 58, '2020-12-23 12:36:11', 0, NULL, 1),
(2296, 'Manikandan', '13', '8668187314', '9600437474', 'harit.kriss@gmail.com', '1997-01-24', 23, '2', '2', 'Rajaram', 'realestate', 12000.00, 1, 0.00, 20000.00, 'Dindigul', 'chennai', '2012050020', '1', '1', 'upload_files/candidate_tracker/30932065837_manikandan resume-converted.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'dont know the Basics.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-05 07:20:53', 64, '2020-12-23 02:52:47', 0, NULL, 1),
(2297, '', '0', '7339111433', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 09:15:30', 0, NULL, 0, NULL, 1),
(2298, '', '0', '9789535050', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 11:28:15', 0, NULL, 0, NULL, 1),
(2299, 'A.Yuva', '13', '9841409253', '9884809356', 'beanyuva002@gmail.com', '1993-07-02', 27, '3', '2', 'R.Arivanandam', 'home', 20000.00, 1, 0.00, 8000.00, 'Chennai', 'Adambakkam', '2012060001', '', '1', 'upload_files/candidate_tracker/42360712845_yuva resume.docx', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not good in technical', '2', '1', '', '', '', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 08:42:14', 50, '2020-12-08 10:29:48', 0, NULL, 1),
(2300, '', '0', '7904446517', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012060002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 11:13:26', 0, NULL, 0, NULL, 1),
(2301, 'Tagore', '6', '8593921263', '9645921263', 'tagorerasheed98@gmail.com', '1998-10-30', 22, '2', '2', 'Abdul rasheed', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Gudvanjeri', 'Gudvanjeri', '2012060003', '14', '1', 'upload_files/candidate_tracker/12543305874_CV NEW.pdf', NULL, NULL, '2020-12-07', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 11:50:50', 7, '2020-12-07 06:16:41', 0, NULL, 1),
(2302, 'R.shanmuga priya', '4', '9094730062', '', 'preetharajansp23@gmail.com', '1998-03-25', 22, '2', '2', 'S.rajendran', 'Daily wages', 10000.00, 1, 0.00, 16000.00, 'Chennai', 'No.35/3 Brahmin street korattur Chennai-80', '2012060004', '14', '1', 'upload_files/candidate_tracker/92405966168_RESUME SHNMU.docx', NULL, NULL, '2020-12-07', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'applied for RE. fresher, will not suite for calling and sales profile. no 2 wheeler and too long from paadi.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 12:09:14', 7, '2020-12-07 03:18:38', 0, NULL, 1),
(2303, 'Yuvashree M', '21', '9791176610', '9789247698', 'yuvashreemuthuraman13116@gmail.com', '1996-11-13', 24, '4', '2', 'Muthuraman M', 'Plumber', 30000.00, 1, 0.00, 13000.00, 'Shanmugapuram, Chennai', 'Shanmugapuram, chennai', '2012060005', '', '1', 'upload_files/candidate_tracker/3767700558_yresume.docx', NULL, NULL, '2020-12-07', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', '', '3', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 01:09:39', 7, '2020-12-07 06:16:28', 0, NULL, 1),
(2304, 'Abarna J', '23', '9384471722', '7397440017', 'abarnamaha93@gmail.com', '1993-08-28', 27, '2', '1', 'Krishnamoorthi v', 'Media', 30000.00, 0, 0.00, 20000.00, 'SE1/1,TNPH,Melakottaiyur,Kandigai-600127', 'SE1/1,TNPH,Melakottaiyur,Kandigai-600127', '2012060006', '1', '1', 'upload_files/candidate_tracker/16296890985_Abarna Resume.pdf', NULL, NULL, '2020-12-07', 0, '', '5', '27', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'Design is not good.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-06 06:05:50', 1, '2020-12-06 06:13:03', 0, NULL, 1),
(2305, 'Barani', '6', '8437869925', '6385869772', 'bbaranirangarajan@gmail.com', '1997-03-03', 23, '2', '2', 'Rangarajan', 'Sweet moster', 25.00, 1, 15.00, 15.00, '201 north street tittaggudi', 'Saidapet', '2012060007', '15', '2', 'upload_files/candidate_tracker/26314643380_barani new resume.pdf', NULL, NULL, '2020-12-07', 1, '', '3', '8', '1970-01-01', 228000.00, '10:00 AM', '2', '1970-01-01', '1', '19k ctc for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 06:26:50', 7, '2020-12-09 04:32:42', 0, NULL, 1),
(2306, '', '0', '8610141858', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012060008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 08:09:59', 0, NULL, 0, NULL, 1),
(2307, '', '0', '9551347276', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012060009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 08:40:56', 0, NULL, 0, NULL, 1),
(2308, 'Kansul arif', '13', '8778532677', '9941945020', 'kansularif@gmail.com', '1998-10-29', 22, '2', '2', 'SIKKANTHAR BASHA', 'Shop keeper', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai PERAMBUR', '2012060010', '1', '1', 'upload_files/candidate_tracker/81332354054_0_CV_2020-07-19-124745.pdf', NULL, NULL, '2020-12-07', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-06 09:28:11', 1, '2020-12-06 09:31:40', 0, NULL, 1),
(2309, 'Manikandan M', '13', '9688464327', '', '', '1990-05-15', 30, '2', '2', 'Muthu', 'Tea shop', 15000.00, 1, 0.00, 20000.00, '177, arisipalayam, Salem', 'Velachery, Chennai', '2012070001', '1', '1', 'upload_files/candidate_tracker/40600274700_Manikandan_2k20.pdf', NULL, NULL, '2020-12-07', 0, '', '5', '27', '1970-01-01', 0.00, '11:39 AM', '', '1970-01-01', '2', 'Task not Completed.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-07 10:35:22', 64, '2020-12-28 03:09:09', 0, NULL, 1),
(2310, 'Uma Shankar Gobu', '13', '9791340972', '9176537401', 'umashankargobuins@gmail.com', '1999-09-02', 21, '2', '2', 'Gobu', 'Tv Mechanic', 13000.00, 1, 0.00, 16000.00, 'Mayiladuthurai', 'Chennai', '2012070002', '1', '1', 'upload_files/candidate_tracker/43030526137_RESUME LATEST.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Need much experience on it.', '2', '2', '', '', '', '', '2', '2020-12-10', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-07 11:08:10', 64, '2020-12-23 02:54:08', 0, NULL, 1),
(2311, 'Jeevapriya Vijayakumar', '13', '9176537401', '9597018266', 'jeevathamil11@gmail.com', '1998-07-11', 22, '2', '2', 'Vijayakumar A', 'Medical Representative', 10000.00, 0, 0.00, 16000.00, 'Mayiladuthurai', 'Chennai', '2012070003', '1', '1', 'upload_files/candidate_tracker/81237304946_new jeevapriya 2020 resume.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Good in technical.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-07 11:10:12', 64, '2020-12-23 02:56:05', 0, NULL, 1),
(2312, 'Saravanan V', '5', '7418417347', '8056269626', 'manikanda92@gmail.com', '1992-07-21', 28, '2', '2', 'Late', 'Kerosene supply', 20000.00, 2, 21500.00, 27500.00, 'Kolathur', 'Kolathur', '2012070004', '1', '2', 'upload_files/candidate_tracker/10142198229_saravanan_resume.docx', NULL, NULL, '2020-12-07', 1, '', '5', '8', '1970-01-01', 0.00, '11:35 AM', '', '1970-01-01', '1', 'he is struggling to speak. will not suite for RM.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 11:26:44', 50, '2020-12-07 11:53:22', 0, NULL, 1),
(2313, 'Tharani', '4', '9361011210', '', 'Balatharini2020@gmail.com', '1996-06-02', 24, '2', '2', 'Balasubramaniyan', 'Taxi driver', 15000.00, 0, 16000.00, 20000.00, 'Pudukkottai district', 'Saidapet', '2012070005', '1', '2', 'upload_files/candidate_tracker/41168626977_1607323460342_Tharani.docx', NULL, NULL, '2020-12-08', 0, '', '3', '8', '2020-12-10', 216000.00, '12:00 PM', '2', '1970-01-01', '2', '18k ctc for dhivya team esale', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 11:34:08', 7, '2020-12-09 04:32:59', 0, NULL, 1),
(2314, 'Duraivasanthi', '4', '8838444755', '9789718841', 'duraivasanthi1996@gmail.com', '1996-03-14', 24, '2', '2', 'Inbasekaran', 'No', 14000.00, 1, 12500.00, 15000.00, 'Pudukkottai (dT)', 'Saidapet', '2012070006', '1', '2', 'upload_files/candidate_tracker/65007902102__$sume 2 (1)VASANTHI-1.docx', NULL, NULL, '2020-12-08', 0, '', '5', '21', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'pronounciation problem', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 11:37:24', 50, '2020-12-08 01:16:48', 0, NULL, 1),
(2315, 'RATHIKA . C', '4', '9787047808', '7695978042', 'chandraboseradhika97@gmail.com', '1996-03-11', 24, '2', '2', 'V . Chandrabose', 'Farmer', 15000.00, 1, 12500.00, 15000.00, 'Pudukkottai', 'Saidapet', '2012070007', '1', '2', 'upload_files/candidate_tracker/11908135892_1607324808885_RATHIKA.docx', NULL, NULL, '2020-12-08', 0, '', '5', '8', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '2', 'will not suit for our process. voice is very low and not bold', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 11:41:21', 50, '2020-12-08 12:43:48', 0, NULL, 1),
(2316, 'Sasi kumar', '6', '9080614205', '8015980998', 'sasikumar1882000@gmail.com', '2000-08-18', 20, '1', '2', 'Gopal j', 'Labour', 120000.00, 1, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2012070008', '', '1', 'upload_files/candidate_tracker/97542470689_sasikumar.pdf', NULL, NULL, '2020-12-07', 0, '5392', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'can try for crm', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 11:55:37', 8, '2020-12-07 04:18:21', 0, NULL, 1),
(2317, 'siddharth agarwal', '20', '9012173048', '', 'siddharth.agarwal1327@gmail.com', '1997-10-27', 23, '2', '2', 'anil kumar agarwal', 'businessmen', 300000.00, 2, 300000.00, 350000.00, 'rampur uttar pradesh', 'bangalore', '2012070009', '1', '2', 'upload_files/candidate_tracker/68027033946_SiddharthAgarwal_Resume.pdf', NULL, NULL, '2020-12-11', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he will sustain and bad in communication', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 12:18:43', 50, '2020-12-11 01:00:29', 0, NULL, 1),
(2318, 'Shashi kumar', '5', '9901505443', '', '', '1991-03-08', 29, '2', '2', 'Ramamurthy k', 'Agriculture', 10000.00, 2, 30000.00, 33000.00, 'Chikkaballapura', 'Bangalore', '2012070010', '1', '2', 'upload_files/candidate_tracker/66136206611_Document.docx', NULL, NULL, '2020-12-07', 0, '', '10', '', '1970-01-01', 0.00, '02:30 PM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-07 01:02:44', 58, '2020-12-29 10:18:21', 0, NULL, 1),
(2319, 'Naveen kumar', '6', '9025652558', '9791408052', 'Naveenvj143@gmail.com', '1994-11-25', 26, '2', '2', 'Swaminathan', 'Driver', 15000.00, 1, 12000.00, 15000.00, 'Namakkal', 'Ashok pillar', '2012070011', '1', '2', 'upload_files/candidate_tracker/32156424676_Naveen.docx', NULL, NULL, '2020-12-08', 0, '', '3', '8', '1970-01-01', 192000.00, '', '2', '1970-01-01', '2', '16k ctc for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 01:28:47', 7, '2020-12-09 04:33:19', 0, NULL, 1),
(2320, '', '0', '7358056387', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012070012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 01:49:05', 0, NULL, 0, NULL, 1),
(2321, 'ABUBACKERSIDDIQ', '6', '7401224341', '9566097270', 'Siddiqsantii777@gmail.com', '2000-02-07', 20, '2', '2', 'Working shop', 'Sales', 17000.00, 1, 0.00, 16000.00, 'Saidapet', 'Saidapet', '2012070013', '1', '1', 'upload_files/candidate_tracker/69009645244_Abu Resume.pdf', NULL, NULL, '2020-12-07', 0, '', '3', '8', '1970-01-01', 156000.00, '02:50 PM', '2', '1970-01-01', '1', '13k for saravana team', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 02:46:59', 7, '2020-12-09 04:35:18', 0, NULL, 1),
(2322, 'Ramakrishnan', '13', '7373224112', '', 'rkmuthaiyan1997@gmail.com', '1997-02-11', 23, '2', '2', 'MUTHAIYAN', 'Farmer', 50000.00, 1, 0.00, 12.00, 'ARIYALUR', 'CHENNAI', '2012070014', '1', '1', 'upload_files/candidate_tracker/89379168251_Ramakrishnan RESUME-2.docx', NULL, NULL, '2020-12-09', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-07 02:48:18', 1, '2020-12-07 02:54:27', 0, NULL, 1),
(2323, 'Martin raj', '2', '9543021656', '', 'Asirmart@gmail.com', '1993-03-17', 27, '2', '2', 'Mariammal', 'Beedi cooli', 300000.00, 1, 20000.00, 25000.00, '23/56kannar south st kadayanallur', 'Tiruvanmiyur', '2012070015', '1', '2', 'upload_files/candidate_tracker/47004334083_MARTIN RAJ A.pdf', NULL, NULL, '2020-12-07', 30, '', '5', '27', '1970-01-01', 0.00, '03:55 PM', '', '1970-01-01', '1', 'He knows only Java. dont have a knowledge in PHP.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-07 02:52:44', 65, '2020-12-24 10:18:44', 0, NULL, 1),
(2324, 'Janakiraman. M', '6', '9344618851', '7397331156', 'johnnyraja06@gmail.com', '1991-06-15', 29, '1', '1', 'Omegachristy.E. C', 'Wife', 114000.00, 3, 25000.00, 28000.00, 'Chennai', 'Chennai', '2012070016', '', '2', 'upload_files/candidate_tracker/85698713745_jonhy (1)raj.docx', NULL, NULL, '2020-12-09', 0, 'Priyanka', '6', '0', NULL, 0.00, '10:45 AM', '0', NULL, '1', NULL, '5', '1', '0', '0', '0', '0', '1', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 03:39:38', 1, '2020-12-08 10:34:57', 0, NULL, 1),
(2325, 'Aswin V', '2', '7401636222', '', 'mail.aswin22@gmail.com', '1997-02-22', 23, '2', '2', 'Viswanathan', 'Ex-Accountant', 1.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2012070017', '1', '1', 'upload_files/candidate_tracker/16309508196_AswinIT.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Dont Have a knowledge in PHP Mysql', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-07 04:50:32', 64, '2020-12-23 02:51:43', 0, NULL, 1),
(2326, 'SAMPATH KUMAR K', '6', '9551100727', '9087999665', 'smartsam217.sk@gmail.com', '1996-09-28', 24, '2', '2', 'Kumar', 'Tools maker', 30000.00, 1, 10000.00, 19000.00, 'Chrompet, chennai', 'Chrompet, chennai', '2012070018', '1', '2', 'upload_files/candidate_tracker/36124054641_My resume .doc1.docx', NULL, NULL, '2020-12-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not speaking up. will not suite for calling.', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-07 04:54:37', 50, '2020-12-09 12:25:46', 0, NULL, 1),
(2327, 'Prasanth', '22', '8667259465', '8940548524', 'prashanthsrk77@gmail.com', '1994-07-03', 26, '1', '1', 'C Ravichandran', 'Business', 50000.00, 1, 19860.00, 25000.00, 'No 26 narayana Swamy Avenue near Ac office', 'Thiruvallur', '2012070019', '', '2', 'upload_files/candidate_tracker/9269582941_Prasanth resume 2 (1).pdf', NULL, NULL, '2020-12-08', 0, '000000', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 05:07:28', 1, '2020-12-07 05:16:04', 0, NULL, 1),
(2328, '', '0', '9094651842', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012070020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 05:24:33', 0, NULL, 0, NULL, 1),
(2329, 'Sharmila V', '23', '8189953601', '8124823695', 'vsharmilaui@gmail.com', '1993-10-04', 27, '2', '2', 'Velsami', 'Shopkeeper', 120000.00, 1, 3.50, 6.00, 'Chengalpattu', 'Chengalpattu', '2012070021', '1', '2', 'upload_files/candidate_tracker/67413326144_Sharmila_Resume.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'UI Design Not Good.', '2', '2', '', '', '', '', '2', '2020-12-09', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-07 05:24:46', 65, '2020-12-24 10:06:47', 0, NULL, 1),
(2330, '', '0', '8608587088', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012070022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 05:43:45', 0, NULL, 0, NULL, 1),
(2331, 'karthik raja', '4', '8695492005', '8956007355', 'karthikraja1802@gmail.com', '1999-02-18', 21, '2', '2', 'dassan', 'supervisor', 200000.00, 1, 10000.00, 13000.00, 'CHENNAI', 'CHENNAI', '2012070023', '15', '2', 'upload_files/candidate_tracker/71256728233_karthik resume.docx', NULL, NULL, '2020-12-08', 0, '', '6', '0', NULL, 0.00, '10:53 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 05:48:49', 1, '2020-12-07 05:54:41', 0, NULL, 1),
(2332, '', '0', '8754812934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012070024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 05:59:09', 0, NULL, 0, NULL, 1),
(2333, 'test sathish', '3', '1010101010', '', '', '2005-12-04', 15, '2', '2', 'hnfdjgdj', 'jedjtjtj', 20000.00, 0, 0.00, 20000.00, 'dnfn fd', 'ch', '2012070025', '1', '1', 'upload_files/candidate_tracker/92295841728_E_M_KUMARAN(Resume).pdf', NULL, NULL, '2020-12-08', 0, '', '3', '41', '2020-11-30', 101900.00, '', '0', NULL, '2', 'Test \nDummy entry', '2', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-07 08:09:25', 1, '2020-12-07 08:10:30', 0, NULL, 1),
(2334, 'Ramachandran', '5', '9790806938', '', '', '1995-09-22', 25, '2', '2', 'Duraisamy', 'Catering', 400000.00, 2, 20000.00, 25000.00, 'chennai', 'chennai', '2012070026', '1', '2', 'upload_files/candidate_tracker/36305837500_RAMACHANDRAN EXPERIENCE RESUME.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'conveying most irrelevant things', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 11:40:00', 50, '2020-12-08 11:37:50', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2335, 'Sridhar', '5', '8056492027', '', 'sridharv2027@gmail.com', '1990-11-27', 30, '1', '2', 'Vadivelu', 'Worker', 350000.00, 1, 325000.00, 420000.00, 'Tiruttani, Tamil Nadu', 'T- dasarahalli, Bangalore', '2012080001', '', '2', 'upload_files/candidate_tracker/9921634546_SridharResume.docx', NULL, NULL, '2020-12-08', 0, 'Arun', '3', '8', '2020-12-24', 360000.00, '', '5', '1970-01-01', '1', '26192 th and with pf for sanjeev team', '5', '2', '4', '2', '2', '', '2', '2020-12-10', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-08 07:51:20', 7, '2020-12-23 11:17:24', 0, NULL, 1),
(2336, 'Vinayaka v', '5', '8971971066', '8310088208', 'Vinayakvinay48@gmail.com', '1994-04-27', 26, '1', '2', 'Venkatachala N', 'Retired', 3000.00, 0, 25000.00, 32000.00, 'Keelukote anthargange Road kolar', 'Kr purm', '2012080002', '', '2', 'upload_files/candidate_tracker/70039256984_VINAYAKA RESUME.pdf', NULL, NULL, '2020-12-11', 0, '55564', '3', '8', '2020-12-21', 394000.00, '', '6', '2021-08-09', '1', '29k for Sanjeev team with esi/pf', '5', '2', '4', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-08 08:41:02', 7, '2020-12-16 05:54:27', 0, NULL, 1),
(2337, 'Elakkiya s', '13', '9092457813', '9003121129', 'paulkavikingthrone@gmail.com', '1996-08-16', 24, '2', '2', 'Sivakumar.M', 'Carpenter', 11000.00, 1, 18000.00, 18000.00, 'Chennai', 'Chennai', '2012080003', '1', '2', 'upload_files/candidate_tracker/8643396006_Elakkiya sivakumar-converted.pdf', NULL, NULL, '2020-12-10', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-08 09:19:53', 1, '2020-12-08 10:08:18', 0, NULL, 1),
(2338, 'Dilip kumar m', '6', '7010641989', '', 'reignsdilip77@gmail.com', '1997-10-04', 23, '2', '2', 'Madurai veeran k', 'Security', 30000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2012080004', '1', '1', 'upload_files/candidate_tracker/53932008072_Dilip Resume new.pdf', NULL, NULL, '2020-12-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will  not suite for any profile.  knows nothing.', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-08 10:47:46', 50, '2020-12-09 12:26:59', 0, NULL, 1),
(2339, '', '0', '8838845518', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 10:48:31', 0, NULL, 0, NULL, 1),
(2340, 'G.Veerasanthosh', '4', '9025350075', '9790602736', 'santhoshgv363@gmail.com', '1999-07-15', 21, '2', '2', 'Gurusamy', 'Sales', 15000.00, 1, 10500.00, 16000.00, 'Theni', 'Pallikarnai', '2012080006', '1', '2', 'upload_files/candidate_tracker/8470170124_Veerasanthosh resume-111.docx', NULL, NULL, '2020-12-08', 0, '', '3', '8', '2020-12-14', 156000.00, '', '2', '1970-01-01', '2', '13k for esale dhivya team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 10:58:43', 7, '2020-12-10 03:13:05', 0, NULL, 1),
(2341, 'manimaran k', '6', '8072683685', '8056220036', 'maranmiru06@gmail.com', '1995-07-30', 25, '2', '2', 'kalaiselvan', 'shop', 50000.00, 1, 15000.00, 17000.00, 'thiruvottiyur', 'chennai', '2012080007', '2', '2', 'upload_files/candidate_tracker/13163350448_manoj resume.docx', NULL, NULL, '2020-12-08', 0, '', '3', '8', '2020-12-10', 216000.00, '', '2', '1970-01-01', '1', '18k ctc for suthagar team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:29:47', 7, '2020-12-09 04:36:32', 0, NULL, 1),
(2342, '', '0', '7397357909', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:35:40', 0, NULL, 0, NULL, 1),
(2343, '', '0', '9901505433', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:38:05', 0, NULL, 0, NULL, 1),
(2344, 'ASHWIN KUMAR', '6', '9566252923', '9094340763', 'ashwinkumarperumal@gmail.com', '1999-09-28', 21, '1', '2', 'Perumal', 'Driver', 30000.00, 2, 10000.00, 13000.00, 'Chennai', 'Chennai', '2012080010', '', '2', 'upload_files/candidate_tracker/40877975109_file1_1607411833258.pdf', NULL, NULL, '2020-12-08', 0, '5206', '3', '8', '2020-12-10', 156000.00, '', '3', '2020-12-29', '1', '13k ctc for saravana team', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:38:33', 7, '2020-12-09 04:37:00', 0, NULL, 1),
(2345, 'Rakkesh', '6', '9344471886', '9566377367', 'mailatrakkesh@gmail.com', '2001-07-17', 19, '1', '2', 'Mani', 'Finace', 25000.00, 1, 10000.00, 13000.00, 'Saidapet', 'Saidapet', '2012080011', '', '2', 'upload_files/candidate_tracker/20825971231_RESUME.pdf', NULL, NULL, '2020-12-08', 1, '5206', '3', '8', '2020-12-10', 156000.00, '', '4', '2021-09-16', '1', '13k for ramesh team', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:40:21', 7, '2020-12-09 04:37:19', 0, NULL, 1),
(2346, 'Gopinath.a', '6', '9003831543', '9176680293', 'gnath0734@gmail.com', '1995-11-02', 25, '2', '2', 'Arunachalam.k', 'Own shop', 20000.00, 1, 18000.00, 20000.00, 'VYASARPADI', 'VYASARPADI', '2012080012', '1', '2', 'upload_files/candidate_tracker/24867520402_GOPINATH.pdf', NULL, NULL, '2020-12-08', 0, '', '3', '8', '2020-12-14', 264000.00, '', '2', '1970-01-01', '1', '22k ctc no esi/pf for shanmugam team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:42:22', 7, '2020-12-10 03:35:18', 0, NULL, 1),
(2347, 'Surya b', '4', '8754647558', '7397335664', 'Suryadextor@gmail.com', '1997-06-20', 23, '2', '1', 'BALAJI', 'Died', 30000.00, 0, 13500.00, 17000.00, 'Chennai NUNGAMBAKKAM', 'Chennai NUNGAMBAKKAM', '2012080013', '1', '2', 'upload_files/candidate_tracker/31429080983_B.SURYA RESUME.docx', NULL, NULL, '2020-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:43:27', 1, '2020-12-08 11:46:53', 0, NULL, 1),
(2348, '', '0', '8072267256', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:55:04', 0, NULL, 0, NULL, 1),
(2349, 'STEPHEN RAJ', '6', '9344757922', '9176884222', 'stephennive26@gmail.com', '1993-04-14', 27, '1', '2', 'PAUL RAJ M', 'Business', 30000.00, 1, 15000.00, 16000.00, 'Sivaganga', 'Chennai', '2012080015', '', '2', 'upload_files/candidate_tracker/86844781526_STEPHEN RESUME new.pdf', NULL, NULL, '2020-12-08', 1, '5206', '3', '8', '2020-12-10', 189600.00, '', '3', '2021-02-26', '1', '15k ctc for ramesh team', '5', '2', '1', '1', '3', '', '2', '2020-12-08', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:55:04', 7, '2020-12-09 04:48:53', 0, NULL, 1),
(2350, 'devika', '4', '7200207189', '', 'mailto:devikamuniyasami1999@gmail.com', '1998-05-30', 22, '2', '2', 'muniyasamy', 'cooli', 11000.00, 1, 0.00, 10000.00, 'chennai', 'nadiyambakkam', '2012080016', '2', '1', 'upload_files/candidate_tracker/89859079471_RESUME Devika.docx', NULL, NULL, '2020-12-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, no communication and will not suite for crm/re.', '1', '2', '', '', '', '', '2', '1970-01-01', '3', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 12:31:27', 50, '2020-12-08 12:39:51', 0, NULL, 1),
(2351, 'Santhosh Kumar. P', '6', '7448726934', '', 'christinasandysantho@gmail.com', '1998-05-21', 22, '2', '2', 'Perumal', 'Advocate', 15000.00, 1, 14500.00, 15000.00, 'T. Nagar', 'T. Nagar', '2012080017', '1', '2', 'upload_files/candidate_tracker/10729288391_1605694865856Resume_Santhosh.docx', NULL, NULL, '2020-12-09', 0, '', '3', '8', '2020-12-10', 168000.00, '', '2', '1970-01-01', '1', '14k ctc for srikanth team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 12:32:12', 7, '2020-12-10 10:14:40', 0, NULL, 1),
(2352, 'Naveen kumar', '6', '9791408052', '7845010940', 'naveenvn143@gmail.com', '1994-11-25', 26, '1', '2', 'Kavin kumar', 'Studied', 25000.00, 1, 10000.00, 15000.00, 'Namakkal', 'Jafferkhanpet', '2012080018', '', '2', 'upload_files/candidate_tracker/93810578268_naveen resume.pdf', NULL, '1', '2021-08-11', 15, '5555599', '3', '59', '1970-01-01', 198000.00, '', '2', '1970-01-01', '2', 'Selected for Guru Team with CTC 198000 includes PF/ESI deductions.Guru reference and manager round has been taken by Syed abthali', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2020-12-08 12:32:31', 60, '2021-08-11 11:22:46', 0, NULL, 1),
(2353, '', '0', '9790602736', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 12:48:25', 0, NULL, 0, NULL, 1),
(2354, 'S hajavasim', '6', '7871102681', '7871618176', 'hajavasimsd714383@gmail.com', '1999-10-08', 21, '2', '2', 'B sheik Abdul kather', 'Salesman', 90000.00, 3, 0.00, 15000.00, 'Kulasekaranpatnam', 'Palavakkam, chennai', '2012080020', '1', '1', 'upload_files/candidate_tracker/96395299420_resume_1598162777510.pdf', NULL, NULL, '2020-12-09', 0, '', '8', '20', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'didnt attend', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 01:12:53', 8, '2020-12-09 02:55:26', 0, NULL, 1),
(2355, 'Kesevraj', '2', '8608145404', '', '', '1998-04-19', 22, '2', '2', 'G. Kamal', 'Engineer', 200000.00, 1, 180000.00, 360000.00, 'Chennai', 'Chennai', '2012080021', '1', '2', 'upload_files/candidate_tracker/7550868994_Kesevraj (Front end developer) resume .docx', NULL, NULL, '2020-12-10', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 01:32:39', 1, '2020-12-08 01:36:55', 0, NULL, 1),
(2356, '', '0', '7401141545', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 01:55:49', 0, NULL, 0, NULL, 1),
(2357, 'Sasikala', '5', '9042535349', '', 'sasikalpana12@gmail.com', '1994-07-02', 26, '2', '2', 'Soloman', 'Chennai', 50000.00, 2, 22000.00, 30000.00, 'Chennai', 'Chennai', '2012080023', '1', '2', 'upload_files/candidate_tracker/41703692927_file1_1607418967037 (1).pdf', NULL, NULL, '2020-12-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response from her end.  not interested.', '5', '2', '', '', '', '', '2', '2020-12-14', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-08 02:11:41', 58, '2020-12-23 12:37:11', 0, NULL, 1),
(2358, 'Sasikala', '5', '9042635349', '', 'sasikalpana12@gmail.com', '1994-07-02', 26, '2', '2', 'Soloman', 'Chennai', 60000.00, 2, 22000.00, 30000.00, 'Chennai', 'Chennai', '2012080024', '1', '2', 'upload_files/candidate_tracker/47856952936_sasikala soloman_CCR201011CR948161216.pdf', NULL, NULL, '2020-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '0', '0', '0', '1', NULL, '3', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 02:27:01', 1, '2020-12-08 02:58:36', 0, NULL, 1),
(2359, '', '0', '9642535349', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 02:36:50', 0, NULL, 0, NULL, 1),
(2360, 'Senthil Raj M', '6', '9344475904', '', '', '1988-02-09', 32, '2', '2', 'Mannar Swamy P', 'Retired', 25000.00, 1, 250000.00, 270000.00, 'Chennai', 'Chennai', '2012080026', '1', '2', 'upload_files/candidate_tracker/42356900671_4566_Resume Sep 2020.docx', NULL, NULL, '2020-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-08 02:41:35', 1, '2020-12-08 02:45:08', 0, NULL, 1),
(2361, '', '0', '9171766845', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 03:10:38', 0, NULL, 0, NULL, 1),
(2362, 'chitti babu', '6', '8667744558', '', 'chittirobo1998@gmail.com', '1998-02-11', 22, '1', '2', 'mohan', 'security', 15000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2012080028', '', '1', 'upload_files/candidate_tracker/26410860313_1607421294601_1598247620964_CHITTI[1].docx', NULL, NULL, '2020-12-08', 0, '5276', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'low profile,sustain doubt', '5', '2', '0', '0', '0', '0', '2', NULL, '3', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 03:43:23', 1, '2020-12-08 03:51:13', 0, NULL, 1),
(2363, '', '0', '8015003393', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 03:47:33', 0, NULL, 0, NULL, 1),
(2364, 'test sathish', '3', '9003599224', '', '', '1994-05-04', 26, '2', '1', 'hnfdjgdj', 'dfnsdfnsdf', 20000.00, 1, 0.00, 20000.00, 'dnfn fd', 'ewcvfewrf', '2012080030', '1', '1', 'upload_files/candidate_tracker/36023499786_Hike Module Screen.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dummy\nTest', '2', '1', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-08 03:50:17', 50, '2020-12-14 11:18:44', 0, NULL, 1),
(2365, '', '0', '9360773419', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 04:57:47', 0, NULL, 0, NULL, 1),
(2366, 'Suresh.S', '17', '8124130969', '7299426546', 'S.suresh.1990@gmail.com', '1990-11-02', 30, '2', '2', 'Sekar.R', 'reired', 35000.00, 4, 35000.00, 40000.00, 'Chennai', 'chennai', '2012080032', '1', '2', 'upload_files/candidate_tracker/28576949091_SURESH Resume.doc', NULL, NULL, '2020-12-09', 30, '', '8', '45', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not  Attended', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-08 06:03:02', 58, '2020-12-29 09:48:31', 0, NULL, 1),
(2367, 'jennifer', '6', '1122334455', '1234567890', 'jennifercafsjobs@gmail.com', '1991-03-08', 29, '2', '2', 'john', 'teacher', 10000.00, 0, 0.00, 15000.00, 'chennai', 'Chennai', '2012080033', '1', '1', 'upload_files/candidate_tracker/73753993432_Gopi cv(1).pdf', NULL, NULL, '2021-02-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-08 06:05:03', 1, '2021-02-12 01:05:45', 50, '2021-02-13 05:20:11', 0),
(2368, 'M VELLAIPANDIAN', '4', '8124501605', '', '', '1992-03-05', 28, '2', '1', 'Neela lekshmi', 'House wife', 18500.00, 2, 18500.00, 25000.00, 'Maduravoyal,Chennai', 'Maduravoyal, Chennai', '2012080034', '14', '2', 'upload_files/candidate_tracker/33350414969_CV_2020-09-03-071704.pdf', NULL, NULL, '2020-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 06:34:28', 1, '2020-12-08 06:38:07', 0, NULL, 1),
(2369, 'R.Anish', '4', '9150657886', '', 'Anishrajendran96@gmail.com', '1996-10-28', 24, '2', '2', 'R.Rajendran Father', 'Retired bank staff', 130000.00, 4, 15000.00, 20000.00, 'Nungambakkam', 'Nungambakkam', '2012080035', '1', '2', 'upload_files/candidate_tracker/28876629504_Anish C.V.docx', NULL, NULL, '2020-12-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not Interested in sales', '1', '2', '', '', '', '', '2', '2020-12-10', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 09:10:29', 50, '2020-12-09 11:16:41', 0, NULL, 1),
(2370, '', '0', '9677073269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 10:47:41', 0, NULL, 0, NULL, 1),
(2371, 'Veeramani', '13', '9840398905', '', 'veeramani131197@gmail.com', '1997-11-13', 23, '2', '2', 'Ganesan', 'Business', 25000.00, 2, 0.00, 15000.00, 'Ayanavaram, chennai', 'Ayanavaram, chennai', '2012090002', '1', '1', 'upload_files/candidate_tracker/50470383170_Resume_veera(1).pdf', NULL, NULL, '2020-12-10', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not good in mysql queries.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-09 11:29:24', 64, '2020-12-28 03:09:50', 0, NULL, 1),
(2372, 'Selvabharathi', '4', '9080147748', '', 'selvamechon96@gmail.com', '1996-06-11', 24, '2', '2', 'Nagarajan.V', 'Self-employed', 150000.00, 1, 14000.00, 21000.00, 'Omr-Chennai', 'Omr-Chennai', '2012090003', '1', '2', 'upload_files/candidate_tracker/99214686836_1606988870673.pdf', NULL, NULL, '2020-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He asked for a time to think, but No Response ', '1', '2', '', '', '', '', '2', '2020-12-11', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 11:38:32', 50, '2020-12-10 11:02:19', 0, NULL, 1),
(2373, '', '0', '7871409274', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 11:41:50', 0, NULL, 0, NULL, 1),
(2374, 'Shalini.R', '4', '8056155861', '9042560335', 'shaliniswetha6@gmail.com', '1998-05-08', 22, '1', '2', 'Raja.k', 'Carpenter', 25000.00, 1, 12000.00, 15000.00, 'Avadi', 'Avadi', '2012090005', '', '2', 'upload_files/candidate_tracker/95793849283_shalini resume.docx', NULL, NULL, '2020-12-09', 0, '5162', '3', '8', '1970-01-01', 168000.00, '', '2', '1970-01-01', '2', '14k ctc for dhivya team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 11:59:00', 7, '2020-12-10 03:35:35', 0, NULL, 1),
(2375, 'A.riyaz', '4', '7299291247', '', 'riyazhussain664@gmail.com', '1999-07-30', 21, '2', '2', 'E.akbar', 'Own shop', 90000.00, 1, 0.00, 1400.00, 'Tharamani', 'Tharamai', '2012090006', '1', '1', 'upload_files/candidate_tracker/73115450904_riyaz new resume.docx', NULL, NULL, '2020-12-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 12:26:58', 1, '2020-12-09 01:12:59', 0, NULL, 1),
(2376, 'M. Shyam Kumar', '4', '9150755067', '7092324467', 'shyamstrange656@gmail.com', '1999-12-16', 20, '2', '2', 'K. Manogaran', 'Salesman', 30000.00, 1, 0.00, 10000.00, 'Chennai', '4/1065gandhi st, iyyappanthangal', '2012090007', '1', '1', 'upload_files/candidate_tracker/56703492271_shyam.doc', NULL, NULL, '2020-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-09 12:28:19', 1, '2020-12-09 12:39:56', 0, NULL, 1),
(2377, '', '0', '9551040781', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 12:39:39', 0, NULL, 0, NULL, 1),
(2378, '', '0', '8110929591', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 12:41:13', 0, NULL, 0, NULL, 1),
(2379, '', '0', '7904110159', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 12:46:20', 0, NULL, 0, NULL, 1),
(2380, 'Premalatha k', '13', '9751474931', '9788553320', 'prema.jasmine@gmail.com', '1989-05-03', 31, '2', '1', 'Mahendran A', 'Farmer', 25000.00, 1, 25000.00, 35000.00, 'Udumalpet', 'Udumalpet', '2012090011', '1', '2', 'upload_files/candidate_tracker/19191072882_K.PREMALATHA.doc', NULL, NULL, '2020-12-14', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-09 12:47:21', 1, '2020-12-09 12:52:50', 0, NULL, 1),
(2381, 'Saranya devi', '5', '9710265489', '', 'saran_988@yahoo.co.in', '1988-07-09', 32, '1', '1', 'Gurumoorthy', 'IT', 30000.00, 0, 30000.00, 30000.00, 'Chromepet', 'Thiruninravur', '2012090012', '', '2', 'upload_files/candidate_tracker/57561856179_Saranya updated CV-1.docx', NULL, NULL, '2020-12-09', 0, '55600', '3', '8', '2020-12-21', 360000.00, '', '4', '2021-05-06', '1', '30k ctc and no pf and pt alone', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-09 01:01:43', 7, '2020-12-17 05:34:56', 0, NULL, 1),
(2382, 'Abbas baig A', '5', '7092341194', '7200585058', 'abbasvikram21@gmail.com', '1995-09-21', 25, '2', '2', 'Mumtaj begum', 'Home work', 6000.00, 1, 20000.00, 22000.00, '49,valluvan street,otteri,chennai', 'Chennai', '2012090013', '1', '2', 'upload_files/candidate_tracker/57044240204_ABBAS BAIG resume updated LAST DA.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'salary exceptation too high', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-09 01:02:34', 50, '2020-12-14 10:28:53', 0, NULL, 1),
(2383, '', '0', '9514092500', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 01:07:50', 0, NULL, 0, NULL, 1),
(2384, 'Sindhu', '5', '7397436356', '', 'Sindhudevi098@gmail.com', '1995-02-09', 25, '1', '2', 'Father', 'Eb', 20000.00, 2, 16000.00, 18000.00, 'Thiruninravur', 'Thiruninravur', '2012090015', '', '2', 'upload_files/candidate_tracker/58433666796_cv sind.docx', NULL, NULL, '2020-12-09', 0, '55600', '5', '33', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 01:08:13', 8, '2020-12-09 05:03:33', 0, NULL, 1),
(2385, '', '0', '7200700422', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 01:10:04', 0, NULL, 0, NULL, 1),
(2386, '', '0', '8610258334', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 01:20:49', 0, NULL, 0, NULL, 1),
(2387, 'Vijay.p', '6', '7092088939', '7092341194', 'vijayraina578@gmail.com', '1999-11-24', 21, '2', '2', 'Perumal', 'Driver', 12000.00, 1, 0.00, 13000.00, '38,valluvan street otteri Chennai', '38,valluvan street otteri Chennai', '2012090018', '1', '1', 'upload_files/candidate_tracker/65224346863_resumeimgtopdf_09122020033742.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-09 02:40:13', 50, '2020-12-14 10:24:34', 0, NULL, 1),
(2388, '', '0', '9080911125', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 03:25:24', 0, NULL, 0, NULL, 1),
(2389, 'Dinesh Kanna. p', '4', '8489821322', '9159344695', 'dineshcivil565@gmail.com', '1995-07-20', 25, '2', '2', 'Panchu. K', 'Farmer', 12000.00, 2, 14000.00, 19000.00, 'Ramanathapuram', 'Nandanam', '2012090020', '1', '2', 'upload_files/candidate_tracker/12880745979_resume_1591243456453.pdf', NULL, NULL, '2020-12-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-09 03:49:10', 1, '2020-12-09 03:59:13', 0, NULL, 1),
(2390, 'R. SATHYA PRIYA', '4', '7601070760', '', 'rsathiyapriya012@gmail.com', '2000-02-09', 20, '2', '2', 'VRP. RAYHINASAMY', 'LIC AGENT', 20000.00, 1, 0.00, 13000.00, '10/7 mutual reddy street alandur chennai', 'Chennai', '2012090021', '1', '1', 'upload_files/candidate_tracker/58970016849_R.SATHYA Resume.pdf', NULL, NULL, '2020-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '1', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-09 03:54:41', 1, '2020-12-09 04:05:59', 0, NULL, 1),
(2391, '', '0', '8189881836', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 03:56:20', 0, NULL, 0, NULL, 1),
(2392, 'Harisundar', '13', '6380109782', '9597897388', '', '1998-03-09', 22, '2', '2', 'Kannan', 'Tailor', 9000.00, 1, 0.00, 12000.00, '237,kpks street, RAJAPALAYAM', 'C2,thamarai apartment.medavakam,chennai', '2012090023', '15', '1', 'upload_files/candidate_tracker/2066961606_Sundar-converted.pdf', NULL, NULL, '2020-12-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'He donxquott have a basic knowledge. its a first interview. He didnxquott prepared anything.', '2', '2', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 04:23:08', 1, '2020-12-09 04:27:42', 0, NULL, 1),
(2393, '', '0', '7401188662', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 04:29:18', 0, NULL, 0, NULL, 1),
(2394, '', '0', '9597116508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 04:29:49', 0, NULL, 0, NULL, 1),
(2395, 'ARUN RAJ D', '22', '9176701686', '', 'arundraj31@gmail.com', '1990-08-31', 30, '2', '1', 'Durai Raj', 'TNSTC', 30000.00, 1, 20000.00, 28000.00, 'Sholinganallur, chennai', 'Chennai', '2012090026', '1', '2', 'upload_files/candidate_tracker/56152594661_Resume.doc', NULL, NULL, '2020-12-10', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication not good.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 04:34:12', 50, '2020-12-10 11:20:12', 0, NULL, 1),
(2396, '', '0', '9843664082', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 04:40:32', 0, NULL, 0, NULL, 1),
(2397, '', '0', '9092943593', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 06:09:19', 0, NULL, 0, NULL, 1),
(2398, 'Rakesh C', '2', '9047473912', '', '', '1996-05-30', 24, '2', '1', 'Chandrasekaran R', 'Full Stack Developer', 40000.00, 1, 22000.00, 37000.00, 'Trichy', 'Chennai', '2012090029', '1', '2', 'upload_files/candidate_tracker/87486004908_rakesh_resume.docx', NULL, NULL, '2020-12-13', 45, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '3', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 06:42:12', 1, '2020-12-09 06:46:19', 0, NULL, 1),
(2399, 'Devakumar.N', '11', '8608510403', '6383789524', 'dsdeva0007@gmail.com', '1999-05-01', 21, '2', '1', 'Soniya', 'House wife', 15000.00, 5, 0.00, 20000.00, '345, PILLAIYAR KOVIL STREET PADIYAMPATTU,606803', '2264,TNHB, Ayappakkam Chennai-77', '2012090030', '', '2', 'upload_files/candidate_tracker/97448689786_Resume-1.pdf', NULL, NULL, '2020-12-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 10:11:10', 1, '2020-12-09 10:57:29', 0, NULL, 1),
(2400, '', '0', '9789050876', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 11:10:49', 0, NULL, 0, NULL, 1),
(2401, '', '0', '9176800529', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 11:40:42', 0, NULL, 0, NULL, 1),
(2402, '', '0', '7338788736', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 11:46:03', 0, NULL, 0, NULL, 1),
(2403, '', '0', '9791579552', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 11:55:54', 0, NULL, 0, NULL, 1),
(2404, 'Sakthivel', '6', '7010838723', '9710275647', 'sakthivini1168@gmail.com', '1997-05-11', 23, '2', '2', 'Muralidharan', 'Mechanic (Died)', 15000.00, 1, 16500.00, 20000.00, 'Chennai', 'Chennai', '2012100005', '1', '2', 'upload_files/candidate_tracker/98835735705_Sakthivel Resume.pdf', NULL, NULL, '2020-12-12', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 12:05:18', 1, '2020-12-10 12:21:46', 0, NULL, 1),
(2405, 'Zubairul hassan', '20', '9080485692', '8940047013', '', '1996-03-18', 24, '2', '1', 'Shafiullah', 'Fse', 15000.00, 0, 0.00, 15000.00, 'Urapakkam', 'Urapakkam', '2012100006', '1', '2', 'upload_files/candidate_tracker/51963437190_null.pdf', NULL, NULL, '2020-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for the role', '5', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-10 12:05:52', 1, '2020-12-10 12:39:39', 0, NULL, 1),
(2406, '', '0', '9655812375', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 12:26:33', 0, NULL, 0, NULL, 1),
(2407, 'Jeevanandham T', '6', '7010021138', '8220696869', 'jeevachelam8@gmail.com', '2000-01-08', 20, '1', '2', 'Thulasiraman G', 'Photographer', 12000.00, 1, 2.45, 3.50, 'Arakkonam', 'Chennai', '2012100008', '', '2', 'upload_files/candidate_tracker/13756462067_jeeva resume.pdf', NULL, NULL, '2021-04-07', 7, 'Priyanka', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'ni in sales', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-10 12:29:06', 50, '2021-04-07 11:56:27', 0, NULL, 1),
(2408, 'RAVI A', '21', '9597771616', '', 'ravi.athi91@gmail.com', '1991-07-18', 29, '2', '2', 'ATHITHAKARIKALAN R', 'Business', 20000.00, 1, 18.60, 30000.00, 'Namakkal District', 'Chennai', '2012100009', '1', '2', 'upload_files/candidate_tracker/20228081417_Ravi- Administration - 6.6 yrs exp.docx', NULL, NULL, '2020-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 12:38:55', 1, '2020-12-10 12:43:12', 50, '2020-12-15 04:47:53', 0),
(2409, 'RAVI A', '5', '9629961824', '9597771616', 'ravi.athi91@gmail.com', '1991-07-18', 29, '2', '2', 'ATHITHAKARIKALAN R', 'Business', 38000.00, 1, 18.60, 30000.00, 'Komarapalayam, Namakkal District', 'Ambattur, chennai', '2012100010', '1', '2', 'upload_files/candidate_tracker/47111772065_Ravi- Administration - 6.6 yrs exp.docx', NULL, NULL, '2020-12-15', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not a convincing candidate for sales.  interested in HR', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-10 01:21:25', 58, '2020-12-23 02:45:19', 0, NULL, 1),
(2410, '', '0', '8072156347', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 01:53:04', 0, NULL, 0, NULL, 1),
(2411, '', '0', '8825492383', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 02:01:49', 0, NULL, 0, NULL, 1),
(2412, '', '0', '7338795867', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 02:33:57', 0, NULL, 0, NULL, 1),
(2413, '', '0', '9940434015', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 02:47:10', 0, NULL, 0, NULL, 1),
(2414, '', '0', '8547446341', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 02:50:21', 0, NULL, 0, NULL, 1),
(2415, 'Ashok. T', '13', '9962658051', '8838982884', 'Ashokthirumalai8@gmail.com', '1996-10-23', 24, '2', '2', 'Thirumalai. V', 'Agriculture', 35000.00, 1, 0.00, 15000.00, 'Selaiyur', 'Selaiyur', '2012100016', '15', '1', 'upload_files/candidate_tracker/57117717348_Resume A.doc', NULL, NULL, '2020-12-11', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He donxquott have a basic knowledge. ', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 03:48:18', 8, '2020-12-11 03:16:05', 0, NULL, 1),
(2416, '', '0', '8056606211', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 03:58:04', 0, NULL, 0, NULL, 1),
(2417, '', '0', '1234567123', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 04:29:47', 0, NULL, 0, NULL, 1),
(2418, 'Vigneshwaran s', '6', '8939174006', '', 'Svickywaran30@gmail.com', '1999-09-30', 21, '2', '2', 'Se kar s', 'B. Com genreal', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Ambatur', '2012100019', '15', '1', 'upload_files/candidate_tracker/31353668593_resume vicky.docx', NULL, NULL, '2020-12-14', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not attended to second round', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-10 04:59:58', 50, '2020-12-14 10:41:44', 0, NULL, 1),
(2419, '', '0', '8148267080', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 05:07:51', 0, NULL, 0, NULL, 1),
(2420, 'DINESH S', '6', '9600022516', '', 'dineshkarthick25397@gmail.com', '1997-03-25', 23, '2', '2', 'SEVUGAN U', 'CAR PAINTER', 12000.00, 1, 0.00, 14000.00, 'CHENNAI', 'CHENNAI', '2012100021', '15', '1', 'upload_files/candidate_tracker/56636490915_Resume - DINESH.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR TELECALLING AND RE', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-10 05:17:31', 50, '2020-12-14 10:40:46', 0, NULL, 1),
(2421, '', '0', '9629384462', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 05:17:42', 0, NULL, 0, NULL, 1),
(2422, 'Venkadesh', '13', '9047674161', '', '', '1996-03-22', 24, '2', '2', 'Chinnadurai', 'Farmer', 80000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2012100023', '1', '1', 'upload_files/candidate_tracker/90253330135_venkat resume(2).pdf', NULL, NULL, '2020-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-10 08:51:01', 1, '2020-12-10 08:53:45', 0, NULL, 1),
(2423, '', '0', '7339085938', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 10:39:37', 0, NULL, 0, NULL, 1),
(2424, 'Ahilesh', '4', '9698857250', '8778671886', 'ahilesh1998@gmail.com', '1998-09-19', 22, '1', '2', 'R Thangapaul', 'Lic agent', 16000.00, 1, 0.00, 12000.00, 'Kuzhithurai kanyakumari', 'Minjur chennai', '2012110002', '', '1', 'upload_files/candidate_tracker/95868718158_1595473687789Resume_Ahiles.pdf', NULL, NULL, '2020-12-19', 0, '2012110002', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain, already applied job in UAE and waiting for visa.', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-11 10:53:48', 50, '2020-12-19 12:01:45', 0, NULL, 1),
(2425, 'test sathish', '14', '1313131313', '', 'sat@gmail.com', '1994-08-25', 26, '2', '2', 'Menon', 'dfnsdfnsdf', 20000.00, 0, 0.00, 20000.00, 'dnfn fd', 'Kallakurichi', '2012110003', '1', '1', 'upload_files/candidate_tracker/79094768483_E_M_KUMARAN(Resume).pdf', NULL, NULL, '2020-12-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 11:14:49', 1, '2020-12-14 06:56:19', 0, NULL, 1),
(2426, 'test sathis', '23', '1414141414', '', 'sat@gmail.com', '1994-08-25', 26, '2', '1', 'Menon', 'dfnsdfnsdf', 20000.00, 0, 0.00, 20000.00, 'dnfn fd', 'Kallakurichi', '2012110004', '1', '1', 'upload_files/candidate_tracker/39019097491_E_M_KUMARAN(Resume).pdf', NULL, NULL, '2020-12-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 11:15:53', 1, '2020-12-14 06:59:33', 0, NULL, 1),
(2427, 'abishek', '5', '8754518255', '', 'abishekmurali1994@gmail.com', '1994-11-03', 26, '2', '2', 'murali', 'fresher', 50000.00, 1, 0.00, 25000.00, 'chennai', 'Chennai', '2012110005', '1', '1', 'upload_files/candidate_tracker/28236461851_Abishek Marketing Resume.pdf', NULL, NULL, '2020-12-11', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not fit for life sales', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 11:22:48', 8, '2020-12-11 12:40:26', 0, NULL, 1),
(2428, '', '0', '7401588875', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 11:39:13', 0, NULL, 0, NULL, 1),
(2429, 'S siva surya kumar', '22', '9003214654', '', 'sivasurya0@gmail.com', '1995-05-25', 25, '2', '2', 'A Srinivasan', 'Associate professor', 150000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2012110007', '1', '2', 'upload_files/candidate_tracker/64911445022_Siva Surya Kumar Resume.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good Exp in SEO /SEM, but no content writing', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-11 11:44:11', 64, '2020-12-23 03:00:25', 0, NULL, 1),
(2430, '', '0', '9941357993', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 12:17:11', 0, NULL, 0, NULL, 1),
(2431, '', '0', '9789051783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 12:50:58', 0, NULL, 0, NULL, 1),
(2432, 'Saran Kumar', '21', '9597698075', '9487816279', 'K. Saranku@gmail.com', '1998-07-29', 22, '2', '2', 'Kandasamy', 'Driver', 10000.00, 1, 15000.00, 18000.00, 'Karaikal', 'Chennai', '2012110010', '14', '2', 'upload_files/candidate_tracker/27603104956_1605694298626Resume_K.docx', NULL, NULL, '2020-12-14', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 12:55:02', 1, '2020-12-11 01:40:43', 0, NULL, 1),
(2433, 'banu', '4', '9384338770', '1234567891', 'banukbt1988@gmail.com', '2000-12-11', 20, '2', '2', 'Ghouse basha', 'Nil', 15000.00, 1, 10000.00, 18000.00, 'chennai', 'thiruvallur', '2012110011', '1', '2', 'upload_files/candidate_tracker/25730323733_banu.pdf', NULL, NULL, '2020-12-11', 10, '', '5', '21', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for esales', '1', '2', '', '', '', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-11 01:01:07', 58, '2020-12-23 02:48:25', 0, NULL, 1),
(2434, 'Nukul', '6', '9566219884', '7358460091', 'nukuldon24@gmail.com', '1999-07-24', 21, '2', '2', 'Manak chand', 'Bussiness', 100000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2012110012', '1', '1', 'upload_files/candidate_tracker/6253967180_NUK.docx', NULL, NULL, '2020-12-12', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT FOR TELECALLING AND RE', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-11 01:07:46', 50, '2020-12-12 11:42:12', 0, NULL, 1),
(2435, 'ranjith s', '22', '8973255764', '', 'ranjithranjan1221@gmail.com', '1994-05-04', 26, '2', '2', 'savarakodi p', 'farmer', 15000.00, 2, 300000.00, 400000.00, 'gummidipoondi', 'velacherry', '2012110013', '1', '2', 'upload_files/candidate_tracker/15357402043_Update Resume.pdf', NULL, NULL, '2020-12-11', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No good communication', '2', '2', '', '', '', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-11 01:22:48', 65, '2020-12-24 11:28:30', 0, NULL, 1),
(2436, '', '0', '1234567898', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 01:32:41', 0, NULL, 0, NULL, 1),
(2437, 'E.G.Adithya', '4', '8760037235', '9677155153', 'adithya1181996@gmail.com', '1996-08-11', 24, '2', '2', 'E.R.Gurubalachandran', 'Advacate', 50000.00, 1, 17000.00, 17000.00, 'West mambambalam', 'West mambambalam', '2012110015', '1', '2', 'upload_files/candidate_tracker/24643152106_Adithya CV(1).pdf', NULL, NULL, '2020-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-11 01:37:47', 1, '2020-12-11 01:45:07', 0, NULL, 1),
(2438, 'syed reyaz ahmed', '24', '9884678888', '', 'sreyazahmed@hotmail.com', '1977-04-11', 43, '2', '1', 'sameena m a', 'business analyst', 2000000.00, 5, 1200000.00, 1200000.00, 'chennai', 'chennai', '2012110016', '1', '2', 'upload_files/candidate_tracker/74675095224_SRA_CV (3).doc', NULL, NULL, '2020-12-11', 0, '', '3', '8', '2020-12-16', 1000000.00, '', '6', '2021-03-26', '1', '83333 ctc and 79525 is net.', '8', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-11 02:27:42', 7, '2020-12-11 04:24:07', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2439, 'E.Saravanan', '4', '8778409574', '9940517582', 'saravanavelu121@gmail.com', '1998-08-18', 22, '2', '2', 'G.Ekambaram', 'Plumber', 10000.00, 2, 0.00, 12500.00, '88Veppampattu, thiruvallur district', 'Madhakhovil,5th Street,88veppampattu', '2012110017', '1', '1', 'upload_files/candidate_tracker/70558852178_saravana resume.pdf', NULL, '1', '2021-05-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for crm,  no clarity in speech, not speaking up.', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-11 02:54:39', 50, '2021-05-07 10:50:48', 0, NULL, 1),
(2440, 'Venkatesh', '4', '9047568290', '', 'asalvenkat4213@gmail.com', '1999-02-04', 21, '2', '2', 'Rajpandiyan', 'Business', 25000.00, 2, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2012110018', '15', '1', 'upload_files/candidate_tracker/68939367608_VenkatResume.pdf.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain and will not suite for RE', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 02:55:25', 50, '2020-12-12 10:22:53', 0, NULL, 1),
(2441, '', '0', '6369351623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 03:02:34', 0, NULL, 0, NULL, 1),
(2442, 'Ananth', '14', '9345620716', '', 'ananth09121998@gmail.com', '1998-12-09', 22, '2', '2', 'Rasu', 'Former', 13000.00, 2, 0.00, 7000.00, 'Trichy', 'Chennai', '2012110020', '1', '1', 'upload_files/candidate_tracker/44700977077_pluggins.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'confused in his technology. applied android developer. but he donxquott have a knowledge in this.', '2', '2', '', '', '', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-11 03:28:35', 50, '2020-12-12 02:45:43', 0, NULL, 1),
(2443, '', '0', '6384906541', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 04:04:00', 0, NULL, 0, NULL, 1),
(2444, 'Ganesh kumar', '6', '7449253156', '7010398386', 'Uganesh43@gmail.com', '1999-01-19', 21, '2', '2', 'K. Ulaganathab', 'Housekeeping supervisor', 100000.00, 2, 0.00, 14000.00, '17/9 nakkerran street west mambalam chennai-33', '17/9 Nakkerran Street West Mambalam Chennai-33', '2012110022', '1', '1', 'upload_files/candidate_tracker/5956014576_GANESH KUMAR Resume.docx', NULL, NULL, '2020-12-14', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'HE IS NOT INRESTED FOR SALES', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-11 04:14:16', 50, '2020-12-14 11:50:33', 0, NULL, 1),
(2445, 'Ahamed Meeran', '22', '9952050554', '', 'ahamedmeeran705@gmail.com', '1999-09-04', 21, '2', '2', 'mohamed yusuf', 'imam in mosque', 25000.00, 3, 0.00, 16000.00, 'lakshmi nagar chrompet chennai', 'Lakshmi Nagar Chrompet Chennai', '2012110023', '1', '1', 'upload_files/candidate_tracker/38503985000_Ahamed_Meeran_Resume.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No experience in Digital Marketing', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-11 04:29:38', 64, '2020-12-28 03:10:28', 0, NULL, 1),
(2446, 'Nivedha S V', '6', '8072717648', '', 'madhunivi34449@gmail.com', '1999-01-13', 24, '2', '2', 'Senthamil selvi S', 'Fresher', 75000.00, 0, 0.00, 17000.00, 'Chennai', 'Chennai', '2012110024', '1', '1', 'upload_files/candidate_tracker/3958859213_nivedha new resume.pdf', NULL, '1', '2023-05-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT RESPONSE, ALSO LOOKING HIGN SALARY PACKAGE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2020-12-11 04:29:51', 85, '2023-05-30 05:36:15', 0, NULL, 1),
(2447, 'M.vishwa', '6', '9790470883', '8939708834', 'Vishwadfc22@gmail.com', '1999-02-22', 21, '2', '2', 'R.muthuraman', 'NLC', 25000.00, 1, 0.00, 18000.00, '7/53 6th Street,therkkuvellore,Neyveli 2', 'Vinobaj nagar , Hasthinapuram, chrompet', '2012110025', '1', '1', 'upload_files/candidate_tracker/99751133490_vishwadfc.docx', NULL, NULL, '2020-12-12', 0, '', '3', '8', '2020-12-14', 156000.00, '', '2', '1970-01-01', '2', '13k ctc for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-11 04:50:20', 7, '2020-12-12 04:05:22', 0, NULL, 1),
(2448, 'r.s.hemachandran', '22', '7010307077', '7395944166', 'hemachandran0072737@gmail.com', '1997-07-23', 23, '2', '2', 'ravi', 'digital marketing executive', 200000.00, 1, 25000.00, 30000.00, 'ramapuram', 'ramapuram', '2012110026', '1', '2', 'upload_files/candidate_tracker/28875635253_Hemachandran_Resume.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Content Written is not upto the standard', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-11 05:00:52', 64, '2020-12-23 03:02:26', 0, NULL, 1),
(2449, '', '0', '9566094694', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 05:04:07', 0, NULL, 0, NULL, 1),
(2450, 'SRINIVASAN V', '22', '7299842358', '', 'srisrini52@gmail.com', '1998-01-31', 22, '1', '2', 'VENKATESAN', 'Carpenter', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Thiruvottiyur', '2012110028', '', '1', 'upload_files/candidate_tracker/34567180267_Srini Re.docx', NULL, NULL, '2020-12-14', 0, 'Zenfy consultancy services', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 05:54:42', 1, '2020-12-11 06:00:01', 0, NULL, 1),
(2451, 'Soundarya', '4', '6369352623', '', 'soundaryasoundarrajan4213@gmail.com', '1999-02-13', 21, '2', '2', 'Soundarrajan', 'Painter', 20000.00, 1, 0.00, 15000.00, 'Tanjore', 'Chennai', '2012110029', '15', '1', 'upload_files/candidate_tracker/76471918941_CV_2020-10-13-112108.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, will not suite for our process.', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-11 07:45:55', 50, '2020-12-12 11:20:16', 0, NULL, 1),
(2452, 'Ali Ibrahim B', '22', '9790285583', '', '', '1993-10-18', 27, '2', '1', 'A. Zamira', 'Research analyst in content writing', 35000.00, 1, 0.00, 40000.00, 'Kanchipuram', 'Chennai', '2012110030', '1', '2', 'upload_files/candidate_tracker/96955390860_1604071769701Resume_Ali.pdf', NULL, NULL, '2020-12-14', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Much into content only no exp in SEO/SEM', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-11 08:00:04', 65, '2020-12-24 11:16:50', 0, NULL, 1),
(2453, 'Asif', '8', '7401695979', '', 'arnavasif007@gmail.com', '1996-12-31', 23, '2', '2', 'Amanullah A', 'Own Business', 20000.00, 2, 180000.00, 220000.00, 'Chennai', 'Chennai', '2012110031', '1', '2', 'upload_files/candidate_tracker/44878778740_Asif resume.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not Interested to join', '7', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-11 08:02:34', 8, '2020-12-12 02:30:32', 0, NULL, 1),
(2454, '', '0', '8248558418', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 11:59:28', 0, NULL, 0, NULL, 1),
(2455, 'Y. Rajashekhara', '5', '9705098975', '', 'yellarthyrajashekhara@gmail.com', '1997-07-07', 23, '2', '2', 'Y Narasappa', 'Agriculture', 75000.00, 1, 0.00, 20000.00, 'Yellarthy village', 'Bengalor', '2012120001', '1', '1', 'upload_files/candidate_tracker/64648625729_rajashekhar7s.docx', NULL, NULL, '2020-12-12', 0, '', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'bad in communication and he is expecting high salary', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-12 10:08:36', 58, '2020-12-29 10:20:32', 0, NULL, 1),
(2456, 'Vignesh', '22', '9789592242', '', 'vsvignesh00@gmail.com', '1996-08-24', 24, '2', '2', 'Dinesh Babu', 'Business', 30000.00, 1, 27630.00, 30000.00, 'Chennai', 'Chennai', '2012120002', '1', '2', 'upload_files/candidate_tracker/14177407308_VIGNESH Resume 1 (1).pdf', NULL, NULL, '2020-12-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-12 10:09:48', 65, '2020-12-24 11:25:20', 0, NULL, 1),
(2457, 'l.dhineshraj', '13', '7010037981', '', 'ldhinesehwag44@gmail.com', '1999-01-11', 21, '2', '2', 'a.lakshmanan', 'weaver', 10000.00, 1, 0.00, 12000.00, 'namakkal', 'chennai', '2012120003', '1', '1', 'upload_files/candidate_tracker/64774126259_IT DHINESHRAJ L RESUME.pdf', NULL, NULL, '2020-12-05', 0, '', '3', '8', '2020-12-11', 101400.00, '', '1', '1970-01-01', '2', '8k th for IT', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-12 10:26:41', 64, '2020-12-28 03:12:31', 0, NULL, 1),
(2458, 'Sathish', '6', '8825963613', '7200682888', 'kalasys77@gmail.com', '1995-07-14', 25, '1', '1', 'Logeshwari', 'Logistics executive', 27000.00, 2, 0.00, 18000.00, 'Mandaiveli', 'Mandaiveli', '2012120004', '', '2', 'upload_files/candidate_tracker/75680092044_Resume.docx', NULL, NULL, '2020-12-12', 0, '', '8', '20', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'left before interview', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-12 10:34:58', 50, '2020-12-12 11:21:57', 0, NULL, 1),
(2459, 'vinitha', '22', '7871202264', '6384906541', 'devavinilee265@gmail.com', '1998-05-26', 22, '1', '2', 'deventhiran', 'digital marketing', 10000.00, 2, 0.00, 16000.00, 'ariyalur', 'velacherry', '2012120005', '', '2', 'upload_files/candidate_tracker/11203758599_Viveksundarraj87.docx', NULL, NULL, '2020-12-12', 0, 'jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication xxamp no experience in Digital Marketing', '2', '2', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 11:01:59', 1, '2020-12-12 11:53:33', 0, NULL, 1),
(2460, 'test latha', '13', '6764543567', '9999988888', 'latha@cafsinfotech.in', '2005-08-01', 15, '2', '2', 'Test Latha', 'Test Latha', 12000.00, 2, 0.00, 10000.00, 'Test Latha', 'Test Latha', '2012120006', '1', '1', 'upload_files/candidate_tracker/46695132358_Attendance Register.pdf', NULL, NULL, '2020-12-12', 0, '', '6', '63', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-12 11:02:29', 1, '2020-12-12 12:13:43', 0, NULL, 1),
(2461, 'shankaranarayanan rk.', '6', '5379600006', '', 'shankarstark67@gmail,com', '1997-06-14', 23, '1', '2', 'kamalanathan r', 'school teachere', 10000.00, 0, 20000.00, 20000.00, 'chennai', 'chennai', '2012120007', '', '2', 'upload_files/candidate_tracker/11631013584_shankar R.docx', NULL, NULL, '2020-12-12', 0, '5392', '8', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate left without attending the interview', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-12 11:02:50', 50, '2020-12-12 11:38:46', 0, NULL, 1),
(2462, 'Paramasivam', '6', '7401439676', '8610985182', 'Paramasm1@gmaill.com', '1998-07-05', 22, '4', '2', 'Iyyanar', 'No', 10000.00, 3, 0.00, 18000.00, 'Mylapore Chennai', 'Ramakrishna Puram Street Mylapore Chennai 600004', '2012120008', '', '1', 'upload_files/candidate_tracker/11459802497_PARAMA RESUME NEW.docx', NULL, NULL, '2020-12-12', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-12 11:14:05', 8, '2020-12-12 02:34:06', 0, NULL, 1),
(2463, 'N. Devi', '4', '6379197360', '6379186979', 'Clmdevideviclm@mail.com', '1999-08-31', 21, '2', '1', 'N. Elumalai', 'Daily weges', 15000.00, 3, 0.00, 13000.00, 'Mgr nager, 30th street, kovilambakkkam', 'Mgr nager, 30th street, kovilambakkam', '2012120009', '1', '1', 'upload_files/candidate_tracker/39682115782_Resume.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up will not suite for CRM', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-12 11:29:54', 50, '2020-12-12 12:12:13', 0, NULL, 1),
(2464, '', '0', '9361584550', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 11:31:12', 0, NULL, 0, NULL, 1),
(2465, 'Saravanan Muralidharan', '4', '9360412090', '7299870917', 'saravananmurali70@gmail.com', '1998-09-08', 22, '2', '2', 'S.muralidharan', 'Building contractor', 25000.00, 1, 0.00, 18000.00, 'Vinobaj nagar, hasthinapuram,chrompet', 'Vinobaj nagar , Hasthinapuram, chrompet', '2012120011', '1', '1', 'upload_files/candidate_tracker/79341361828_saran resume.docx', NULL, NULL, '2020-12-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will  not suite for any profile', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-12 11:32:37', 50, '2020-12-12 11:51:10', 0, NULL, 1),
(2466, 'A. Umamageshwari', '4', '9087599851', '9361584550', 'mageshwariuma779@gmail.com', '1999-11-23', 21, '2', '2', 'K. Arumugam', 'Daily weges', 15.00, 2, 10.00, 13.00, 'No 3/67 anna nagar 4 th street echangaduu', 'No 3/67 anna nagar 4th street echangadu', '2012120012', '1', '2', 'upload_files/candidate_tracker/66336764091_PRIYA.docx', NULL, NULL, '2020-12-12', 2, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, will not suite for esale. ', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-12 12:03:36', 50, '2020-12-12 12:31:12', 0, NULL, 1),
(2467, '', '0', '7299870917', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 12:06:32', 0, NULL, 0, NULL, 1),
(2468, '', '0', '4545454321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 12:10:44', 0, NULL, 0, NULL, 1),
(2469, 'kuralarasupm', '20', '7094681616', '6380404372', 'kuralarasupm@gmail.com', '2000-10-17', 20, '2', '2', 'Pandiyan', 'painter', 70000.00, 1, 0.00, 18000.00, 'Chennai', 'mugappair', '2012120015', '1', '2', 'upload_files/candidate_tracker/38064853719_1607432030575.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability doubt, For CRM high CTC expectation', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-12 12:23:31', 50, '2021-02-26 11:09:59', 0, NULL, 1),
(2470, '', '0', '1029384756', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 01:01:27', 0, NULL, 0, NULL, 1),
(2471, '', '0', '8680952956', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 01:05:10', 0, NULL, 0, NULL, 1),
(2472, '', '0', '7890675646', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 01:25:28', 0, NULL, 0, NULL, 1),
(2473, 'aakash', '4', '8838344479', '8838345623', 'aakashgiant25@gmail.com', '2000-06-05', 20, '2', '2', 'vijayakumar', 'private concern', 20000.00, 0, 0.00, 18000.00, 'Chennai', 'madipakkam', '2012120019', '1', '1', 'upload_files/candidate_tracker/7345267031_aakash resume(CV).pdf', NULL, NULL, '2020-12-15', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interested in accounts field ', '1', '2', '', '1', '1', '', '2', '2020-12-16', '3', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-12 01:32:13', 8, '2020-12-15 04:41:23', 0, NULL, 1),
(2474, '', '0', '1597534682', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 01:35:28', 0, NULL, 0, NULL, 1),
(2475, 'parjith', '4', '8939591299', '', 'parjith76145@gmail.com', '1999-12-10', 21, '2', '2', 'narayanan', 'cooly', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2012120021', '1', '1', 'upload_files/candidate_tracker/18388996914_Parjith resume 2.pdf', NULL, NULL, '2020-12-12', 0, '', '3', '8', '1970-01-01', 180000.00, '', '2', '1970-01-01', '2', '15k ctc for Esale', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-12 02:18:56', 7, '2020-12-14 04:49:08', 0, NULL, 1),
(2476, '', '0', '8754849477', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 03:01:44', 0, NULL, 0, NULL, 1),
(2477, '', '0', '9831671488', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 03:21:27', 0, NULL, 0, NULL, 1),
(2478, '', '0', '7358973234', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 03:33:48', 0, NULL, 0, NULL, 1),
(2479, 'Ummesalma', '4', '9445607267', '', 'Aummesalmas@gmail.com', '1997-05-10', 23, '2', '2', 'Arifullah hussaini', 'BBA, BA History', 50000.00, 3, 180000.00, 250000.00, 'No. 1 Ps street tirupattur tamilnadu', '46/1,garvebhavipalya Bengaluru Karnataka - 560068', '2012120025', '1', '2', 'upload_files/candidate_tracker/43595118623_resume experience .pdf', NULL, NULL, '2020-12-18', 1, '', '3', '8', '2020-12-22', 210000.00, '', '6', '2021-03-26', '2', '17500 Ctc and sathish team.', '1', '2', '1', '2', '2', '1', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-12 03:45:15', 58, '2020-12-23 01:22:46', 0, NULL, 1),
(2480, 'SAKTHIVEL A', '4', '8072452646', '8056552621', 'sakthidism77@gmail.com', '1995-05-08', 25, '2', '2', 'Jothi', 'Telecalling Executive', 40000.00, 2, 15000.00, 17000.00, 'No 204b irumathur dharmapuri', 'BlockB no 106 , Pavalam appartment, saidapet', '2012120026', '1', '2', 'upload_files/candidate_tracker/9227308984_CV_2020-12-04-060245.pdf', NULL, NULL, '2020-12-13', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-12 03:48:45', 1, '2020-12-12 03:58:07', 0, NULL, 1),
(2481, 'Prakash', '22', '8939922662', '9080660814', 'prakashravichandran@outlook.com', '1990-10-16', 30, '2', '2', 'ravichandran', 'ex- army man', 60000.00, 1, 35000.00, 45000.00, 'chennai', 'chennai', '2012120027', '1', '2', 'upload_files/candidate_tracker/77822593599_Resume.docx.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Stability issue', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-12 05:04:45', 64, '2020-12-28 03:11:03', 0, NULL, 1),
(2482, 'Praveen Kumar P', '16', '8667407795', '', 'vgpraveen1@gmail.com', '1995-10-22', 25, '2', '2', 'Panneer selvam', 'Business', 100000.00, 1, 180000.00, 250000.00, 'Pallavaram, Chennai', 'Pallavaram, chennai', '2012140001', '1', '2', 'upload_files/candidate_tracker/39619671582_ResumeDocumentupdated.pdf', NULL, NULL, '2020-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-14 09:34:11', 1, '2020-12-14 09:40:40', 0, NULL, 1),
(2483, 'Sarah mercy. H', '11', '7358502184', '7358084816', 'Sarahmercy997@gmail.com', '1997-08-09', 23, '3', '2', 'Henry. A', 'operator', 30000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2012140002', '', '1', 'upload_files/candidate_tracker/13680195365_Sarah resume.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location Constraint', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 10:31:35', 50, '2020-12-14 04:53:59', 0, NULL, 1),
(2484, 'E Sam daniel', '22', '9790863872', '', 'samdani188@gmail.com', '1994-08-30', 26, '2', '2', 'SP ESA selvaraj', 'License inspector', 30000.00, 1, 351000.00, 460000.00, 'Pallavaram', 'chennai', '2012140003', '1', '2', 'upload_files/candidate_tracker/65826711416_Sam Daniel. Resume.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Frequent Job Changes, no content exp', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-14 11:00:21', 64, '2020-12-23 02:59:52', 0, NULL, 1),
(2485, 'Emishper Raj', '21', '7373141425', '', 'Emishperraj@gmail.com', '1992-12-21', 27, '2', '2', 'Geetha', 'System administrator', 20000.00, 2, 20000.00, 20000.00, 'Kanniyakumari', 'Chennai', '2012140004', '14', '2', 'upload_files/candidate_tracker/47805372628_Emishper Raj.pdf', NULL, NULL, '2020-12-16', 0, '', '5', '32', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Expected Salary is High', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-14 11:09:52', 50, '2020-12-16 02:41:33', 0, NULL, 1),
(2486, 'K.Bhakya', '4', '8754421801', '8939211968', 'bhakijashu96@gmail.com', '1996-01-16', 24, '1', '2', 'K.Krishnakumar', 'Security guard', 18000.00, 1, 0.00, 11000.00, 'Vadapalani', 'Vadapalani', '2012140005', '', '1', 'upload_files/candidate_tracker/26454875324_Resume - Bhakya.docx', NULL, NULL, '2020-12-14', 0, '5300', '5', '11', NULL, 0.00, '', '0', NULL, '2', 'she wont suitable for e sales ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 11:12:23', 1, '2020-12-14 11:33:53', 0, NULL, 1),
(2487, 'Kumar', '13', '9500292483', '', 'kumarweb1@gmail.com', '1990-03-05', 30, '2', '1', 'Subbiramaniyan', 'Professionals', 15000.00, 0, 0.00, 27000.00, 'Chennai- T Nagar', 'T Nagar', '2012140006', '14', '2', 'upload_files/candidate_tracker/67130094422_Resume.docx', NULL, NULL, '2020-12-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 11:16:23', 50, '2020-12-15 04:49:11', 0, NULL, 1),
(2488, '', '0', '9176180872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 11:16:33', 0, NULL, 0, NULL, 1),
(2489, 'ganapathy', '4', '7550246528', '8056257165', 'ganapathyganu1998@gmail.com', '1998-05-28', 22, '1', '2', 'sujatha', 'tailor', 12000.00, 0, 0.00, 15000.00, 'Chennai', 'chennai', '2012140008', '', '1', 'upload_files/candidate_tracker/91870853347_Ganapathy_Resume (1).docx', NULL, NULL, '2020-12-14', 0, '5431', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for crm, fresher not int in RE.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 11:34:52', 50, '2020-12-14 12:44:23', 0, NULL, 1),
(2490, 'arul sibi v', '22', '8056147224', '', 'arulsibi89@gmail.com', '1989-03-25', 31, '2', '2', 'vibul anath', 'sbi manager', 180000.00, 1, 300000.00, 35000.00, 'chennai', 'Chennai', '2012140009', '1', '2', 'upload_files/candidate_tracker/66435958632_CamScanner 12-16-2020 11.17.54.pdf', NULL, NULL, '2020-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Exp in PPC, content writing', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-14 11:48:44', 1, '2020-12-16 11:50:46', 0, NULL, 1),
(2491, 'M.narasimman', '4', '8122768385', '7338922334', 'Narasimman1197@gmail.com', '1997-07-30', 23, '2', '2', 'K.madhanagopal', 'No', 18000.00, 1, 18000.00, 23000.00, 'No 66/46 periyanna st seven wells Chennai 600001', 'No 66/46 Periyanna St Seven Wells Chennai 600001', '2012140010', '1', '2', 'upload_files/candidate_tracker/18049343466_Resume 3 docx.docx', NULL, NULL, '2020-12-14', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not join. not okay with the salary package.', '1', '2', '', '1', '1', '', '2', '2021-01-04', '2', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-14 12:06:10', 8, '2020-12-14 03:06:48', 0, NULL, 1),
(2492, '', '0', '8124238469', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 12:36:01', 0, NULL, 0, NULL, 1),
(2493, 'Monica.D', '4', '9094848661', '', 'Kamalmoni031@gmail.com', '1999-03-30', 21, '1', '2', 'R.Durai', 'Carpenter', 25000.00, 1, 12000.00, 13000.00, '9, raja raja cholan street, MGR nagar, Chennai 78', '9,raja raja cholan street, MGR nagar, Chennai 78', '2012140012', '', '2', 'upload_files/candidate_tracker/42448558586_20201115_073308.pdf', NULL, NULL, '2020-12-14', 0, '5558', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, will not suite for calling, no communication.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 12:42:11', 50, '2020-12-14 01:02:46', 0, NULL, 1),
(2494, 'Astalakshmi', '4', '6380394913', '9789918768', 'Lachukathavarayan@gmail.com', '1997-11-05', 23, '1', '2', 'Kathavarayan', 'Milkman', 10000.00, 0, 12000.00, 12000.00, 'Ekkatuthangal', 'Ekkatuthangal', '2012140013', '', '2', 'upload_files/candidate_tracker/28863110712_MEENA.docx', NULL, NULL, '2020-12-14', 0, '5558', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will Not Suite For esale. may be for health.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 12:44:11', 50, '2020-12-14 01:21:26', 0, NULL, 1),
(2495, 'Balaji A', '4', '9080013063', '9551529399', 'bala.am93@gmail.com', '1993-10-27', 27, '2', '2', 'A', 'BPO', 50000.00, 2, 19500.00, 17000.00, 'Medavakkam Chennai', 'Chennai', '2012140014', '15', '2', 'upload_files/candidate_tracker/34728119667_Balaji Resume..docx', NULL, NULL, '2020-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 12:53:46', 1, '2020-12-14 01:02:08', 0, NULL, 1),
(2496, 'Muruganantham.p', '4', '9344328819', '7339289097', 'Sathish1234@gmail.com', '1998-12-08', 22, '2', '2', 'Pannerselvam muruganayaki', 'Mechanical', 15000.00, 1, 0.00, 8000.00, 'Radhanarasimmapuram', 'Radhanarasimmapuram', '2012140015', '1', '1', 'upload_files/candidate_tracker/38290628456_Scanned_20180627-2125.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, will  not suite for calling.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-14 01:27:09', 50, '2020-12-14 02:38:39', 0, NULL, 1),
(2497, 'Imayavarman', '6', '9384339307', '8778814936', 'Imayanseenu@gmail.com', '1996-12-10', 24, '2', '2', 'No', 'No', 18000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2012140016', '1', '1', 'upload_files/candidate_tracker/7955874320_CamScanner 12-14-2020 14.12.28.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking  up and no communication. will not suite for calling. ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-14 02:04:05', 50, '2020-12-14 02:39:47', 0, NULL, 1),
(2498, '', '0', '7305883002', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 03:03:29', 0, NULL, 0, NULL, 1),
(2499, 'Akash.s', '4', '7401725650', '', 'akashak242000@gmail.com', '2000-04-02', 20, '1', '2', 'sekar.c', 'farmer', 20000.00, 1, 0.00, 15000.00, 'kattan kulathur', 'Sholinganallur', '2012140018', '', '1', 'upload_files/candidate_tracker/84051406164_Resume akash.pdf', NULL, NULL, '2020-12-16', 0, '2012140018', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 03:47:23', 50, '2020-12-16 04:57:11', 0, NULL, 1),
(2500, '', '0', '9360472838', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 04:03:23', 0, NULL, 0, NULL, 1),
(2501, 'sathish sampathkumar', '22', '9150928922', '', 'sathish.dropyourmail@gmail.com', '1986-01-04', 34, '2', '1', 'spouce- divya sathish', 'reelancer', 60000.00, 2, 40000.00, 60000.00, 'chennai', 'chennai', '2012140020', '1', '2', 'upload_files/candidate_tracker/38737447864_Sathish- Digital Marketing new (3) (1).docx', NULL, NULL, '2020-12-16', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-14 04:11:34', 50, '2020-12-16 04:57:53', 0, NULL, 1),
(2502, '', '0', '7904735872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 04:13:31', 0, NULL, 0, NULL, 1),
(2503, '', '0', '1212121212', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 06:53:11', 0, NULL, 0, NULL, 1),
(2504, '', '0', '1111111111', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 06:53:39', 0, NULL, 0, NULL, 1),
(2505, 'test', '2', '1515151515', '', '', '1994-08-25', 26, '2', '2', 'test', 'dfnsdfnsdf', 20000.00, 0, 0.00, 20000.00, 'dnfn fd', 'ch', '2012140024', '1', '1', 'upload_files/candidate_tracker/55840616180_sriram_tax.pdf', NULL, NULL, '2020-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-14 07:07:04', 1, '2020-12-28 05:19:55', 0, NULL, 1),
(2506, 'Jayasurya', '14', '9514135767', '', 'jayasurya127@gmail.com', '1998-07-12', 22, '4', '2', 'Srinivasan', 'Van Driver', 25000.00, 1, 0.00, 25000.00, 'No . 2, Lakshmi Ammal Street, Arumbakkam', 'Chennai', '2012140025', '', '1', 'upload_files/candidate_tracker/38424070401_Final+resume+2020+(2)+(2).pdf', NULL, NULL, '2020-12-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 10:29:07', 50, '2020-12-15 04:51:03', 0, NULL, 1),
(2507, 'Sathiyaruphan', '13', '8667755277', '8940166995', 'ramsankarruphan@gmail.com', '1999-06-24', 21, '2', '2', 'Ramsankar', 'TNEB Employe', 40000.00, 0, 0.00, 18000.00, 'Tirukoilur', 'Vadapalani', '2012150001', '15', '1', 'upload_files/candidate_tracker/79961707787_Sathiyaruphan\'s CV.pdf', NULL, NULL, '2020-12-15', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'He donxquott have a basic knowledge.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 10:17:17', 1, '2020-12-15 10:25:51', 0, NULL, 1),
(2508, 'Venkatesh', '13', '9786053737', '', 'asalvenkat4230@gmail.com', '1999-02-04', 21, '2', '2', 'Rajpandiyan', 'Business', 25000.00, 2, 0.00, 16000.00, 'Kallakurichi', 'Chennai', '2012150002', '15', '1', 'upload_files/candidate_tracker/62977104494_VenkatResume.pdf.pdf', NULL, NULL, '2020-12-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 10:28:40', 50, '2020-12-15 04:51:24', 0, NULL, 1),
(2509, '', '0', '8098777516', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 10:30:00', 0, NULL, 0, NULL, 1),
(2510, 'P.H.UPENDRA KUMAR', '6', '8790019010', '', 'Upendra.ph816@gmail.com', '1997-06-04', 23, '2', '2', 'P.H.RENUKA DEVI', 'BEAUTICIAN', 25000.00, 0, 0.00, 4.50, 'Chittoor', 'Boomanhalli', '2012150004', '1', '1', 'upload_files/candidate_tracker/60389788164_Upendra Kumar (Resume).docx', NULL, NULL, '2020-12-16', 0, '', '5', '8', '1970-01-01', 227400.00, '', '2', '1970-01-01', '2', '18k th for RE gowshick team', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-15 10:34:22', 58, '2020-12-29 10:17:54', 0, NULL, 1),
(2511, 'Vignesh. S', '5', '7299094193', '', '', '1997-07-30', 23, '2', '2', 'S. Soundarajan', 'ADDITION TOOLS PVT LTD', 20000.00, 1, 18000.00, 20000.00, '3/13 kattaboman 7th street kodungaiyur', '3/13 Kattaboman 7th Street Kodungaiyur', '2012150005', '8', '2', 'upload_files/candidate_tracker/77662197828_CV_2020-11-25-053034.pdf', NULL, NULL, '2020-12-15', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'his priority in event management. still he is doing this business', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 10:52:18', 50, '2020-12-15 11:20:44', 0, NULL, 1),
(2512, 'Santhosh. K', '4', '6381796645', '9444270723', 'santhoshneymar2@gmail.com', '1999-10-22', 21, '2', '2', 'Kumar', 'Welding', 18000.00, 1, 0.00, 12000.00, 'No. 17,Lalitha Garden, madhavaram, chennai-600060', 'No. 17,Lalitha Garden ,Madhavaram, Chennai-600060', '2012150006', '1', '1', 'upload_files/candidate_tracker/92228381509_Santhosh_RESUME_[1].pdf', NULL, NULL, '2020-12-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-15 11:08:55', 50, '2020-12-16 04:58:20', 0, NULL, 1),
(2513, 'naveen patil', '5', '9845255480', '6360632808', 'np227228@gmail.com', '1997-09-24', 23, '2', '2', 'chandragouda patil', 'diploma', 100000.00, 1, 18000.00, 28000.00, 'degaon', 'bangalore/ ramamurthy nagar', '2012150007', '1', '2', 'upload_files/candidate_tracker/23480056138_NAVEEN RESUME (1).docx', NULL, NULL, '2020-12-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Mismatch in payslip. will not join. salary exp is high', '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-15 11:28:32', 1, '2020-12-15 11:39:01', 0, NULL, 1),
(2514, 'Sahana Shankar Moger', '20', '6360632808', '', 'sahanamoger57@gmail.com', '1998-06-16', 22, '2', '2', 'Anusuya', 'Tailor', 10000.00, 0, 16000.00, 25000.00, 'Siddapura Uttara kannada', 'Shantinagara, bangalore', '2012150008', '1', '2', 'upload_files/candidate_tracker/45280192784_sahana Moger resume.docx', NULL, NULL, '2020-12-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Mismatch In Payslip. Will Not Join. Salary Exp Is High', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-15 11:50:42', 58, '2020-12-23 01:23:35', 0, NULL, 1),
(2515, 'vignesh n', '6', '7449074424', '', 'wanted3014@gmail.com', '1999-07-04', 21, '2', '2', 'nandha gopal', 'lorry driver', 13000.00, 0, 13000.00, 15000.00, 'pallavaram', 'pallavaram', '2012150009', '15', '2', 'upload_files/candidate_tracker/36859068996_Vicky Resume.pdf', NULL, NULL, '2020-12-21', 0, '', '5', '34', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'HE IS LOOKING FOR AN SI POST IN   POLICE ONCE HE CLEARS THE EXAM HE WILL MOVE OUT FROM OUR COMPANY', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 12:09:23', 8, '2020-12-21 05:33:06', 0, NULL, 1),
(2516, 'Syed ali', '13', '8807442225', '', 'Syedmech79@gmail.com', '1991-07-05', 29, '3', '2', 'Abdul jabbar', 'Worker', 25000.00, 1, 18000.00, 25000.00, 'Tenkasi', 'Chennai', '2012150010', '', '2', 'upload_files/candidate_tracker/67386579538_Syed (1).docx', NULL, NULL, '2020-12-15', 10, '', '8', '27', NULL, 0.00, '', '0', NULL, '2', 'he is not attended.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 12:13:04', 1, '2020-12-15 12:18:03', 0, NULL, 1),
(2517, '', '0', '8098732939', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 12:16:27', 0, NULL, 0, NULL, 1),
(2518, 'J Nagoor meeran', '4', '9080862527', '7092156624', 'nagoorstunner70@gmail.com', '1996-08-01', 24, '3', '2', 'Jamaldeen', 'Grocery shop', 20000.00, 1, 10000.00, 12000.00, 'Perambur', 'Chennai', '2012150012', '', '2', 'upload_files/candidate_tracker/36011085577_Resume ccv 2020.doc', NULL, NULL, '2020-12-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for customer support and not interested in sales.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 12:48:42', 1, '2020-12-16 11:57:57', 0, NULL, 1),
(2519, 'Manimekala', '13', '6379242847', '', 'Mekala92@gmail.com', '1992-04-03', 28, '2', '2', 'Perumal', 'Farmer', 15000.00, 1, 445000.00, 550000.00, 'Erode', 'Erode', '2012150013', '14', '2', 'upload_files/candidate_tracker/78913211303_Mekala_Resume_new.pdf', NULL, NULL, '2020-12-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 01:19:29', 50, '2020-12-16 04:59:15', 0, NULL, 1),
(2520, 'Sheema Sultana', '4', '7406712798', '8317373327', 'ruhi56605@gmail.com', '1998-07-08', 22, '2', '1', 'Mohammad istekhar', 'Team Leader at wipro', 25000.00, 2, 17000.00, 20000.00, '# 22 Sophia convent Rose garden Neelasandra', '#22 Sophia convent rose garden Neelasandra', '2012150014', '1', '2', 'upload_files/candidate_tracker/51722218710_Sheema sultana Resume.pdf', NULL, NULL, '2020-12-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-15 01:28:55', 50, '2020-12-15 04:53:42', 0, NULL, 1),
(2521, 'test latha', '13', '8888800000', '9090090090', 'latha@cafsinfotech.in', '2005-11-30', 15, '2', '1', 'Test', 'Test', 12000.00, 0, 0.00, 10000.00, 'Test', 'Test', '2012150015', '2', '1', 'upload_files/candidate_tracker/7404277749_chart.pdf', NULL, NULL, '2020-12-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 01:35:44', 50, '2020-12-15 04:52:12', 0, NULL, 1),
(2522, 'bernotsingh k', '22', '9566155490', '', 'Justinbernod@gmail.com', '1995-07-01', 25, '2', '2', 'kanagaraj', 'having tea shop', 60000.00, 1, 12000.00, 15000.00, 'chennai', 'chennai', '2012150016', '1', '2', 'upload_files/candidate_tracker/97513290745_Resume new.docx', NULL, NULL, '2020-12-18', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much exp in Digital Marketing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-15 02:37:10', 65, '2020-12-24 11:19:25', 0, NULL, 1),
(2523, 'DHARMA RAJ', '6', '7305332903', '', 'dharmaraj.p2013@gmail.com', '2000-03-01', 20, '2', '2', 'T.pondurai', 'Business', 16000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2012150017', '1', '1', 'upload_files/candidate_tracker/92296841562_DHARMARAJ. P Resume .pdf', NULL, NULL, '2021-02-10', 0, '', '8', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Left without attending the interview', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-15 02:54:13', 1, '2021-02-10 01:17:21', 0, NULL, 1),
(2524, '', '0', '4524563453', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 02:59:35', 0, NULL, 0, NULL, 1),
(2525, '', '0', '6380159347', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 03:04:31', 0, NULL, 0, NULL, 1),
(2526, '', '0', '9159534289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 03:45:29', 0, NULL, 0, NULL, 1),
(2527, 'KARTHIKEYAN K', '4', '7339490366', '7339490364', 'karthikeyankbd@gmail.com', '1999-10-11', 21, '2', '2', 'KOLANCHI S', 'SECURITY', 20000.00, 2, 0.00, 12000.00, 'No.9 MAIN ROAD THITTAKUDI CUDDALORE (D.T)', 'URAPAKKAM', '2012150021', '1', '1', 'upload_files/candidate_tracker/73875216749_my resume new.docx', NULL, NULL, '2020-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested for Sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-15 05:05:33', 50, '2020-12-16 09:46:03', 0, NULL, 1),
(2528, '', '0', '6369934684', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 05:07:22', 0, NULL, 0, NULL, 1),
(2529, 'Murali Dharan', '4', '7871632610', '', '', '1999-10-26', 21, '1', '2', 'Jayachanderan', 'farmer', 20000.00, 1, 0.00, 12000.00, 'Chengalpattu', 'sholing', '2012150023', '', '1', 'upload_files/candidate_tracker/75427033457_Resume_murali.docx', NULL, NULL, '2020-12-16', 0, '2012150023', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 05:26:11', 50, '2020-12-16 04:59:50', 0, NULL, 1),
(2530, 'Karthick R', '4', '8072279343', '8939365270', 'karthickramu66@gmail.com', '1998-11-29', 21, '2', '2', 'Ramu', 'Own business', 250000.00, 1, 0.00, 12000.00, 'Velachery', 'Velachery', '2012150024', '15', '1', 'upload_files/candidate_tracker/42415012575_Karthik.pdf', NULL, NULL, '2020-12-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 05:31:23', 50, '2020-12-16 05:01:49', 0, NULL, 1),
(2531, '', '0', '9941311249', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 05:54:04', 0, NULL, 0, NULL, 1),
(2532, 'abinaya', '22', '8148276551', '', 'abinayalakshman23@gmail.com', '1993-04-23', 27, '2', '1', 'vignesh', 'programmer', 18500.00, 1, 3.50, 4.20, 'thanjavur', 'poonamalle', '2012150026', '1', '2', 'upload_files/candidate_tracker/99385610164_Abinaya Resume.pdf', NULL, NULL, '2020-12-16', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-15 05:57:57', 1, '2020-12-15 06:31:21', 0, NULL, 1),
(2533, '', '0', '7358008459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 06:00:01', 0, NULL, 0, NULL, 1),
(2534, '', '0', '9361128747', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 08:48:36', 0, NULL, 0, NULL, 1),
(2535, 'Pavithra R', '22', '7373627685', '9791170164', 'pavikarthi2794@gmail.com', '1994-05-27', 26, '2', '1', 'Mahendran', 'Developer', 30000.00, 1, 23500.00, 25000.00, 'Chennai', 'Chennai', '2012160002', '1', '2', 'upload_files/candidate_tracker/769944496_My CV2020.pdf', NULL, NULL, '2020-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Only SEO Exp, No PPC xxamp Content exp', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-16 10:26:51', 64, '2020-12-23 03:07:23', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2536, '', '0', '9597470686', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 11:22:06', 0, NULL, 0, NULL, 1),
(2537, '', '0', '9380012300', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 11:22:43', 0, NULL, 0, NULL, 1),
(2538, 'P.pradeep', '6', '7338706427', '8608499832', 'pp2535434@gmail.com', '1995-04-14', 25, '1', '2', 'S.palani', 'Chennai', 2400.00, 0, 13000.00, 13000.00, 'Marakkanam', 'Chennai', '2012160005', '', '2', 'upload_files/candidate_tracker/4361405713_CamScanner 12-16-2020 11.43.36.pdf', NULL, NULL, '2020-12-16', 0, 'jobs', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'not fit for telecalling and re profile', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 11:27:39', 1, '2020-12-16 12:18:12', 0, NULL, 1),
(2539, 'KP Abdul Sathar', '5', '7338911172', '8838530021', 'abdulsatr11gmail.Com', '1993-12-15', 27, '2', '2', 'KP Aboobacker', 'Govt servant', 50000.00, 1, 17000.00, 25000.00, 'Port blair, Andaman & nicobar islands', 'Porur, chennai.', '2012160006', '14', '2', 'upload_files/candidate_tracker/64894433391_Sathar CV2.pdf', NULL, NULL, '2020-12-16', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not okay with the salary package', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 11:40:25', 8, '2020-12-16 03:00:53', 0, NULL, 1),
(2540, 'Praveen V', '5', '9786331301', '8248506602', 'Praviin22@yahoo.in', '1989-05-22', 31, '2', '1', 'Sowmiya Natarajan', 'House wife', 30000.00, 0, 280000.00, 300000.00, 'Chennai', 'Chennai', '2012160007', '14', '2', 'upload_files/candidate_tracker/10382435220_updated Resume_Praveen.doc', NULL, NULL, '2020-12-17', 10, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 11:55:11', 50, '2020-12-17 05:13:03', 0, NULL, 1),
(2541, 'Aman Yadav', '17', '7042447852', '9315800376', 'yadavaman808@gmail.com', '1995-09-18', 25, '2', '2', 'Jagbir Singh Yadav', 'Businessman', 80000.00, 2, 0.00, 350000.00, 'Gurgaon', 'Bangalore', '2012160008', '1', '1', 'upload_files/candidate_tracker/85303532714_Aman Yadav Resume.doc', NULL, NULL, '2020-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-16 11:58:17', 1, '2020-12-16 12:27:48', 0, NULL, 1),
(2542, 'Karthika paneer', '22', '7904642454', '', 'Karthika221095@gmail.com', '1995-10-22', 25, '2', '2', 'Paneer selvam', 'Retired', 20000.00, 1, 0.00, 3.70, 'Chennai', 'Chennai', '2012160009', '1', '2', 'upload_files/candidate_tracker/13779519476_Karthika Paneer Resume.pdf', NULL, NULL, '2020-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good in Communication, High CTC expectation', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-16 12:12:28', 65, '2020-12-24 11:21:46', 0, NULL, 1),
(2543, 'Parvez alom', '5', '6364051780', '7892008683', 'parvesbeast@gmail.com', '1998-02-17', 22, '2', '2', 'Abdul anish', 'ELECTRICIAN', 30000.00, 0, 20000.00, 25000.00, 'Bangalore', 'Bangalore', '2012160010', '1', '2', 'upload_files/candidate_tracker/26621708535_null.docx', NULL, NULL, '2020-12-16', 0, '', '5', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he will not suit for our filed and he donxquott have patience ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-16 12:22:28', 50, '2020-12-16 04:28:33', 0, NULL, 1),
(2544, '', '0', '9626860496', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 01:10:10', 0, NULL, 0, NULL, 1),
(2545, '', '0', '8083577303', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 02:00:53', 0, NULL, 0, NULL, 1),
(2546, 'Radhika', '4', '8904341602', '9902792721', 'radhikapmsmgr@gmail.com', '1995-12-06', 25, '2', '2', 'Manjunatha', 'Agriculture', 80000.00, 2, 0.00, 20.00, 'Kolar', 'Nagawara Bangalore', '2012160013', '7', '1', 'upload_files/candidate_tracker/24566406276_radhika resume-2.docx', NULL, NULL, '2020-12-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not  join. salary exp is high.', '1', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 02:13:20', 50, '2020-12-16 02:48:53', 0, NULL, 1),
(2547, '', '0', '7904814911', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 02:57:23', 0, NULL, 0, NULL, 1),
(2548, '', '0', '8828099176', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 04:01:00', 0, NULL, 0, NULL, 1),
(2549, 'Latha test', '13', '1234554321', '', 'Latha@gmail.com', '2005-12-14', 15, '4', '2', 'Latha Test', 'Latha Test', 12000.00, 2, 0.00, 10000.00, 'Latha Test', 'Latha Test', '2012160016', '', '1', 'upload_files/candidate_tracker/54000183245_Latharesume.pdf', NULL, NULL, '2020-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 04:38:44', 1, '2020-12-16 05:55:32', 0, NULL, 1),
(2550, 'latha test', '13', '6789054321', '', 'latha@cafsinfotech.in', '2005-12-16', 15, '2', '1', 'Test', 'Test', 12000.00, 0, 0.00, 10000.00, 'Test Latha', 'Test Latha', '2012160017', '1', '1', 'upload_files/candidate_tracker/11848647702_11761 (1).pdf', NULL, NULL, '2020-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-16 04:45:17', 1, '2020-12-16 04:47:01', 0, NULL, 1),
(2551, '', '0', '1234543215', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 04:48:05', 0, NULL, 0, NULL, 1),
(2552, 'kavitha', '22', '8056175454', '', 'kavishri.mano@gmail.com', '1992-01-06', 28, '2', '1', 'praveen kumar', 'private', 50000.00, 1, 400000.00, 520000.00, 'chennai', 'chennai', '2012160019', '1', '2', 'upload_files/candidate_tracker/65537214167_Kavitha DM_Resume.pdf', NULL, NULL, '2020-12-19', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Stability issues,High CTC exp', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-16 05:14:01', 64, '2020-12-23 03:08:12', 0, NULL, 1),
(2553, 'Imran Ali', '4', '6374417074', '', 'Imranalikingdom@gmail.com', '1997-06-19', 23, '3', '2', 'Mohammed Ali', 'Auto driver', 180000.00, 2, 0.00, 12000.00, 'Pallavaram', 'Pallavaram', '2012160020', '', '1', 'upload_files/candidate_tracker/38597738889_RESUME imran ali(1).pdf', NULL, NULL, '2020-12-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 05:45:02', 50, '2020-12-17 05:13:58', 0, NULL, 1),
(2554, 'test latha', '13', '3456789876', '', 'latha@cafsinfotech.in', '2005-12-16', 15, '2', '2', 'Test', 'Test', 12000.00, 0, 0.00, 10000.00, 'Test', 'Test', '2012160021', '1', '1', 'upload_files/candidate_tracker/96466624419_11761.pdf', NULL, NULL, '2020-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-16 05:50:20', 1, '2020-12-16 05:52:14', 0, NULL, 1),
(2555, 'test latha', '13', '7687890897', '', 'latha@cafsinfotech.in', '2005-12-16', 15, '3', '2', 'Test', 'Test', 12000.00, 0, 0.00, 10000.00, 'Test', 'Test', '2012160022', '', '1', 'upload_files/candidate_tracker/17943951462_11761.pdf', NULL, NULL, '2020-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 05:52:52', 1, '2020-12-16 05:53:56', 0, NULL, 1),
(2556, 'Latha test', '13', '6789034678', '', 'Latha@gmail.com', '2005-12-16', 15, '2', '2', 'Test', 'Test', 12000.00, 0, 0.00, 12000.00, 'Latha Test', 'Test', '2012160023', '1', '1', 'upload_files/candidate_tracker/42286093263_Latharesume.pdf', NULL, NULL, '2020-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-16 05:58:53', 1, '2020-12-16 06:01:06', 0, NULL, 1),
(2557, 'Praveen kumar', '6', '7695912770', '9003714457', 'Praveenvaithi42@gmail.com', '1998-08-21', 22, '2', '2', 'K. Vaithilingam', 'Catering service', 50000.00, 1, 12000.00, 16000.00, 'Panruti', 'Velachery', '2012160024', '1', '2', 'upload_files/candidate_tracker/39512237205_2020.pdf', NULL, NULL, '2020-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-16 06:11:17', 1, '2020-12-16 06:16:01', 0, NULL, 1),
(2558, 'K.divya', '4', '7904319791', '9940243354', 'divyadoll0114@gmail.com', '1997-08-14', 23, '2', '2', 'K.Lalita', 'Ccs', 300000.00, 1, 3.00, 22000.00, 'Vip road agency house Andaman & Nicobar', '109/38, East Vanniyar Street, west k k nagar', '2012160025', '1', '2', 'upload_files/candidate_tracker/86298757592_RESUME(1).docx', NULL, NULL, '2020-12-22', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-16 07:34:46', 1, '2020-12-16 07:42:26', 0, NULL, 1),
(2559, 'subhash', '6', '9361155049', '9444728493', 'SubhashPanchavarnam@gmail.com', '1993-01-03', 27, '2', '2', 'panchavarnam', 'retired', 30000.00, 1, 14500.00, 20000.00, 'chennai', 'chennai', '2012170001', '1', '2', 'upload_files/candidate_tracker/81331727592_Subhash 1512.doc', NULL, NULL, '2020-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-17 12:32:06', 1, '2020-12-17 11:26:03', 0, NULL, 1),
(2560, 'Saranya', '4', '7708664282', '8778166179', 'Saranyasekar2595@gmail.com', '1995-07-25', 25, '1', '1', 'Vijaya kumar', 'Telecom service', 20000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2012170002', '', '2', 'upload_files/candidate_tracker/74993086052_Saranya Resume.docx', NULL, NULL, '2020-12-17', 0, '5300', '5', '21', NULL, 0.00, '', '0', NULL, '2', 'not fit for our process', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-17 11:05:28', 1, '2020-12-17 11:14:15', 0, NULL, 1),
(2561, '', '0', '9591973592', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 11:11:47', 0, NULL, 0, NULL, 1),
(2562, '', '0', '9591517870', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 11:26:11', 0, NULL, 0, NULL, 1),
(2563, 'JEGADESAN', '14', '9080622322', '6384105531', 'jegadesans9@gmail.com', '1999-05-20', 21, '3', '2', 'Sukumar s', 'Auto driver', 10.00, 2, 0.00, 20.00, '106/2 mettucolony, dalapathisamudram, tirunelveli', 'Santhosapuram,vijayanagaram,medavakkam,chennai', '2012170005', '', '1', 'upload_files/candidate_tracker/61910813528_Jegadesan_s_CV.pdf', NULL, NULL, '2020-12-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-17 11:40:43', 50, '2020-12-17 05:13:21', 0, NULL, 1),
(2564, 'SARAN.D', '6', '8220530659', '8667306672', 'danceforlife0907@gmail.com', '1998-02-27', 22, '2', '2', 'DHANASEKAR E', 'Club barrer', 12000.00, 1, 15000.00, 17000.00, 'F 30 S.S.PURAM M.K.RADHA NAGAR TEYNAMPET CH-60006', 'TEYNEMPET', '2012170006', '1', '2', 'upload_files/candidate_tracker/15616345682_1601959673726_SARAN RESUME.docx', NULL, NULL, '2020-12-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales and not interested too', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-17 12:24:12', 1, '2020-12-18 11:48:59', 0, NULL, 1),
(2565, 'Pagadala Meghana', '4', '9866923973', '', '', '1999-07-16', 21, '2', '2', 'Pagadala narasimulu', 'Physical education teacher', 120000.00, 0, 0.00, 30000.00, 'Bangalore', 'Bangalore', '2012170007', '1', '1', 'upload_files/candidate_tracker/10297337366_CV_2020-11-19-115847.pdf', NULL, NULL, '2020-12-19', 0, '', '5', '42', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she willnot suit for crm\nbad communication and she will not sustain', '1', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-17 12:40:19', 50, '2020-12-19 10:10:03', 0, NULL, 1),
(2566, '', '0', '9094110289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 12:58:41', 0, NULL, 0, NULL, 1),
(2567, '', '0', '8778697195', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 03:19:43', 0, NULL, 0, NULL, 1),
(2568, 'saranya damodaran', '4', '8248066865', '8754190653', 'saranyadamu22@gmail.com', '1996-08-11', 24, '2', '2', 'damodaran', 'business', 20000.00, 1, 0.00, 16000.00, 'chennai', 'chengelpet', '2012170010', '1', '1', 'upload_files/candidate_tracker/83113740040_cv (6).pdf', NULL, NULL, '2020-12-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not relocate. will not join.', '1', '1', '', '1', '1', '', '2', '2020-12-18', '1', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-17 04:36:43', 64, '2020-12-23 03:09:58', 0, NULL, 1),
(2569, 'Ramkumar', '25', '8973129470', '', 'Ramkutty8124@gmail.com', '1997-01-24', 23, '2', '2', 'Balakrishnan', 'Business', 35000.00, 1, 0.00, 20000.00, 'Padappai', 'old perungalathur', '2012170011', '1', '1', 'upload_files/candidate_tracker/89734109825_Ramkumar_resume.docx', NULL, NULL, '2020-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Exp and not fit for digital Marketing', '8', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-17 04:38:53', 64, '2020-12-26 10:42:48', 0, NULL, 1),
(2570, '', '0', '9786701289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 04:59:58', 0, NULL, 0, NULL, 1),
(2571, 'Jebaraj Pernatshaw', '13', '9629239295', '', 'bernadshaw1996@outlook.com', '1996-11-22', 24, '2', '2', 'bhavani christy', 'farmer', 28000.00, 1, 15500.00, 25000.00, 'Tirunelveli', 'chennai', '2012170013', '15', '2', 'upload_files/candidate_tracker/27052475663_shaw_phpDeveloper (1).pdf', NULL, NULL, '2020-12-19', 60, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-17 05:05:50', 50, '2020-12-19 04:23:10', 0, NULL, 1),
(2572, 'Jyothi B v', '13', '9840283117', '', 'jyothibv8@gmail.com', '1993-07-07', 27, '3', '2', 'B r venkatesan', 'Php developer', 25000.00, 0, 300000.00, 400000.00, 'Nagari', 'Velacherry', '2012170014', '', '2', 'upload_files/candidate_tracker/26353782152_Updated_Resume.docx', NULL, NULL, '2020-12-19', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'task not Completed.', '2', '2', '0', '1', '1', '0', '2', '2020-12-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-17 05:08:44', 1, '2020-12-17 05:12:22', 0, NULL, 1),
(2573, 'Thamizh vanan', '13', '8940371518', '', 'vananmca22@gmail.com', '1996-06-22', 24, '3', '2', 'Settu', 'Farmer', 10000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2012170015', '', '2', 'upload_files/candidate_tracker/32577500593_Tamilresume.pdf', NULL, NULL, '2020-12-18', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-17 05:24:49', 1, '2020-12-17 05:28:22', 0, NULL, 1),
(2574, '', '0', '3432156789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 05:30:10', 0, NULL, 0, NULL, 1),
(2575, '', '0', '0236987452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 05:50:19', 0, NULL, 0, NULL, 1),
(2576, 'Vajith raguman', '22', '8870786857', '', 'vajithraguman@gmail.com', '1999-03-15', 21, '2', '2', 'I.Mohamed Sulthan', 'Business', 20000.00, 2, 0.00, 10000.00, 'Theni', 'Chennai', '2012170018', '1', '1', 'upload_files/candidate_tracker/46762748583_VRResume.doc', NULL, NULL, '2020-12-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication, no Exp in Digital Marketing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-17 05:56:32', 50, '2020-12-18 10:35:05', 0, NULL, 1),
(2577, 'saikrishna', '13', '7207650532', '8297207843', 'skrishnasaip@gmail.com', '1993-07-15', 27, '2', '1', 'swetha', 'software engineer', 40000.00, 1, 300000.00, 500000.00, 'chennai', 'chennai', '2012170019', '15', '2', 'upload_files/candidate_tracker/1372343792_Sai_Krishna_Profile_3.10.pdf', NULL, NULL, '2020-12-22', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-17 06:21:37', 1, '2020-12-21 11:04:39', 0, NULL, 1),
(2578, 'Vignesh. V', '13', '9698169650', '9786081296', 'vigneshswemig@gmail.com', '1993-01-21', 27, '2', '2', 'Veeramani', 'Former', 20000.00, 1, 18.00, 25.00, 'CHENNAI', 'Chennai', '2012170020', '5', '2', 'upload_files/candidate_tracker/40581546733_php _26-Oct-17_19:19:21.docx', NULL, NULL, '2020-12-18', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-17 07:36:55', 1, '2020-12-18 01:44:23', 0, NULL, 1),
(2579, 'T.Pramodh', '6', '9972988985', '7483509032', 'pramodhkumarpk01@gmail.com', '1998-11-14', 22, '2', '2', 'M.Thyagarajan', 'Business', 20000.00, 1, 0.00, 20000.00, 'No.11, 1st A cross Madiwala', 'No.11, 1st A cross Madiwala', '2012180001', '1', '1', 'upload_files/candidate_tracker/40682275089_Pramodh.docx', NULL, NULL, '2020-12-18', 0, '', '5', '39', NULL, 0.00, '', '0', NULL, '1', 'HE WILL NOT SUSTAIN IN SALES FIELD', '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-18 10:15:48', 1, '2020-12-18 02:53:00', 0, NULL, 1),
(2580, 'Kavitha. R', '4', '9841530297', '9941530297', 'Rajamkavi30@gmail.com', '1994-05-30', 26, '1', '1', 'Spouse', 'Supervisor', 60000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2012180002', '', '2', 'upload_files/candidate_tracker/97977558218_Kavitha.R.doc', NULL, NULL, '2020-12-18', 15, '5300', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected due to long distance', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 11:03:03', 8, '2020-12-18 02:39:05', 0, NULL, 1),
(2581, 'Naveen Shettimani', '17', '8088122200', '8884084560', 'naveenshettimani1008@gmail.com', '1997-08-27', 23, '2', '2', 'Ravindra', 'Fresher', 50000.00, 1, 0.00, 25000.00, 'Sankeshwar, belagavi', 'Kengeri satellite town, Bangalore', '2012180003', '1', '1', 'upload_files/candidate_tracker/89488985524_NAVEEN SHETTIMANI(RESUME)-converted-2.pdf', NULL, NULL, '2020-12-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-18 11:08:41', 1, '2020-12-18 11:38:36', 0, NULL, 1),
(2582, 'Shyamala', '4', '9080835323', '9566252923', 'Shyamubaby28@gmail.com', '1999-10-24', 21, '1', '2', 'Parthiban', 'Driver', 8000.00, 1, 10000.00, 13000.00, 'L.30 pushapangar nungambakkam chennai 600034', 'L.30 pushapangar nungambakkam chennai 600034', '2012180004', '', '2', 'upload_files/candidate_tracker/82842978870_imgtopdf_12122020092743.pdf', NULL, NULL, '2020-12-18', 1, '5153', '3', '8', '2020-12-21', 144000.00, '', '2', '1970-01-01', '2', '12k ctc and for keerthiga team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 11:15:36', 7, '2020-12-19 05:25:33', 0, NULL, 1),
(2583, '', '0', '8220430659', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012180005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-18 11:23:50', 0, NULL, 0, NULL, 1),
(2584, 'J Thiruppathi', '5', '9123518151', '9092288850', 'jthirulakshan18@gmail.com', '1985-04-05', 35, '2', '1', 'Savitri', 'House wife', 40000.00, 5, 32000.00, 40000.00, 'TAMBARAM', 'TAMBARAM', '2012180006', '3', '2', 'upload_files/candidate_tracker/59415666922_THIRUPPATHI thiru.docx', NULL, NULL, '2020-12-18', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile\n', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 11:44:36', 1, '2020-12-18 12:00:02', 0, NULL, 1),
(2585, 'Imran Khan', '5', '9092288850', '7871393398', 'imran.308154@gmail.com', '1992-08-30', 28, '2', '2', 'Mohamad Ismail', 'Labour', 40000.00, 2, 360000.00, 450000.00, 'Aranthangi', 'Adambakkam', '2012180007', '3', '2', 'upload_files/candidate_tracker/50892598295_imran_resume(AP) .pdf', NULL, NULL, '2020-12-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'we offered 26k. no response from his end. will not join.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 11:44:43', 1, '2020-12-18 11:55:35', 0, NULL, 1),
(2586, 'V. Sathiyamoorthy', '6', '7401380477', '8778190205', 'Sathiyuva1997@gmail.com', '1997-11-11', 23, '1', '2', 'Vengadesan', 'Cooli', 120000.00, 2, 0.00, 15000.00, '19/65 pudhumanai Kuppam 5th st royapuram Ch 13', '19/65 pudhumanai Kuppam 5th st royapuram Ch.13', '2012180008', '', '1', 'upload_files/candidate_tracker/72472509313_V.SATHIYAMOORTHY-1.docx', NULL, NULL, '2020-12-18', 0, 'P1065', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not speaking up and will not suite for calling', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 11:45:50', 50, '2020-12-18 12:14:01', 0, NULL, 1),
(2587, '', '0', '8746829623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012180009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-18 11:50:59', 0, NULL, 0, NULL, 1),
(2588, '', '0', '9941530297', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012180010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-18 11:57:28', 0, NULL, 0, NULL, 1),
(2589, 'Mercy', '4', '9940206196', '7358298335', 'Ewangelinmercy@gmAil.com', '2000-06-08', 20, '1', '2', 'A.mohan', 'Traitor', 80000.00, 1, 0.00, 12000.00, '587\'v\'block poondithangammal st new washermenpet', '587\'v\'block poondithangammal st new washermenpet', '2012180011', '', '1', 'upload_files/candidate_tracker/83623807448_My_CV (5)(1).pdf', NULL, NULL, '2020-12-18', 0, 'P1065', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 12:28:35', 1, '2020-12-18 01:36:17', 0, NULL, 1),
(2590, 'Priyadharshini P', '4', '8072782656', '9444231218', 'priyadharshinishaba@gmail.com', '1997-05-17', 23, '3', '2', 'Parthipan', 'Driver', 120000.00, 1, 0.00, 15000.00, 'T.nagar', 'T.nagar', '2012180012', '', '1', 'upload_files/candidate_tracker/53824508738_priya resume1234-1.pdf', NULL, NULL, '2020-12-18', 0, '', '5', '21', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not bold ...', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 12:49:35', 8, '2020-12-18 02:40:28', 0, NULL, 1),
(2591, 'Sarthak p r', '6', '9480219037', '', 'sarthakpr1997@gmail.com', '1997-03-08', 23, '2', '2', 'Rajashekar M E', 'Agriculture', 10000.00, 1, 0.00, 18000.00, 'Bangalore', 'Bangalore', '2012180013', '1', '1', 'upload_files/candidate_tracker/61466454838_Sarthak Resume_05-Dec-20_19.52.14.pdf', NULL, NULL, '2020-12-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-18 01:06:51', 50, '2020-12-19 04:23:37', 0, NULL, 1),
(2592, 'Parthiban', '22', '7358643323', '8754473624', 'talktoparthi@gmail.com', '1990-02-08', 30, '2', '1', 'Paskaran', 'Central Government', 40000.00, 2, 500000.00, 800000.00, 'Chennai', 'Chennai', '2012180014', '1', '2', 'upload_files/candidate_tracker/64897294740_Parthiban resume.docx', NULL, NULL, '2020-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is in Govt employment, looking for freelance High budget exp', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-18 01:43:13', 65, '2020-12-24 11:09:43', 0, NULL, 1),
(2593, 'Mohamed sayeed afrith', '6', '7358729143', '', 'shahithafridi19@gmail.com', '1998-08-06', 22, '2', '2', 'Naina mohamed', 'Sales manager in co operative society', 40000.00, 3, 0.00, 18000.00, 'Tenkasi', 'Guindy', '2012180015', '1', '1', 'upload_files/candidate_tracker/7072246452_Resume_18_12_2020_1_29_505.pdf', NULL, NULL, '2020-12-22', 0, '', '3', '8', '2020-12-28', 151800.00, '', '3', '2021-01-04', '1', '12k th for srikanth team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-18 03:24:13', 7, '2020-12-24 03:54:10', 0, NULL, 1),
(2594, '', '0', '8682872566', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012180016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-18 05:04:02', 0, NULL, 0, NULL, 1),
(2595, 'Rajkumar', '13', '9750826613', '', 'rajkumar.vca30@gmail.com', '1990-04-26', 30, '2', '2', 'Velmurugan', 'Farmer', 10000.00, 1, 3.85, 4.50, 'Virudhachalam', 'Chennai', '2012180017', '15', '2', 'upload_files/candidate_tracker/80753893755_rajkumar_resume.pdf', NULL, NULL, '2020-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-18 05:07:06', 1, '2020-12-18 05:24:03', 0, NULL, 1),
(2596, '', '0', '9791800833', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012180018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-18 05:31:18', 0, NULL, 0, NULL, 1),
(2597, 'b.c.nivethika', '22', '9677170043', '9600102208', 'bcnive@gmail.com', '1986-05-23', 34, '2', '1', 'ashokkumar', 'fit technologist', 40000.00, 1, 20000.00, 25000.00, 'chrompet', 'hastinapuram', '2012180019', '1', '2', 'upload_files/candidate_tracker/31058263550_Nivethika bc -PDF.docx', NULL, NULL, '2020-12-21', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for digital Marketing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-18 05:50:49', 64, '2020-12-23 03:11:45', 0, NULL, 1),
(2598, 'Jeyalaxmi Kathiresan', '22', '8367362110', '9840057357', 'jeyalaxmi7@gmail.com', '1996-11-06', 24, '2', '1', 'Vivek Ramasamy', 'Business', 45000.00, 1, 25000.00, 30000.00, 'Trichirapalli', 'Trichirapalli', '2012180020', '1', '2', 'upload_files/candidate_tracker/69924272002_Resume (JV) (3).pdf', NULL, NULL, '2020-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good Profile, but high Exp xxamp not ok for Agreement', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-18 05:52:58', 64, '2020-12-23 03:09:12', 0, NULL, 1),
(2599, 'ramya', '22', '9003726496', '', 'ramyamurugan98@gmail.com', '1998-07-03', 22, '2', '2', 'murugan', 'senior digital marketer', 100000.00, 2, 20000.00, 25000.00, 'chennai', 'chennai', '2012180021', '1', '2', 'upload_files/candidate_tracker/9837859471_Resume (2).docx', NULL, NULL, '2020-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Freelance only not much exp and very high Package Exp', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-18 06:37:46', 65, '2020-12-24 11:11:07', 0, NULL, 1),
(2600, 'Arun ladu', '22', '9941338737', '', 'arun3737pc@gmail.com', '1991-02-18', 29, '2', '2', 'Paul Sudhakar', 'Retired Businessman', 40000.00, 1, 144000.00, 240000.00, 'Kodambakkam, Chennai', 'Kodambakkam, Chennai', '2012180022', '1', '2', 'upload_files/candidate_tracker/18449377249_Resume 07-11-2020.pdf', NULL, NULL, '2020-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable,less exp high exp', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-18 06:38:55', 64, '2020-12-23 03:01:18', 0, NULL, 1),
(2601, 'Manikandan', '13', '9344591281', '', 'tmanikandan0122@gmail.com', '1989-07-20', 31, '2', '1', 'Nandhini', 'Housewife', 25000.00, 1, 300000.00, 420000.00, 'No 97, South Street, PAGAIVENDRI, Ramanathapuramdt', '12/273,12th Block, Mogappair', '2012190001', '15', '2', 'upload_files/candidate_tracker/87322390548_mani_resume.pdf', NULL, NULL, '2021-01-08', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-19 09:15:32', 60, '2021-01-08 06:54:35', 0, NULL, 1),
(2602, 'Sai Sathvik Pola', '5', '9035976725', '7892572643', 'polasatvik@gmail.com', '1995-09-07', 25, '2', '2', 'Govinda rajulu pola', 'Business', 100000.00, 1, 0.00, 400000.00, 'Bengaluru', 'Bengaluru', '2012190002', '1', '1', 'upload_files/candidate_tracker/71266100933_Sathvik Pola.pdf', NULL, NULL, '2020-12-21', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He Will Not Sustain....He Will Not Handle Sales Pressure', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-19 11:27:27', 50, '2020-12-21 05:35:31', 0, NULL, 1),
(2603, '', '0', '7892572643', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012190003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-19 11:39:57', 0, NULL, 0, NULL, 1),
(2604, 'I Abdul Bari', '25', '8428239473', '', 'abdulbari0072@gmail.com', '1997-03-21', 23, '2', '2', 'J Ibrahim', 'Labor', 20000.00, 1, 0.00, 15000.00, '12b north kadaya st,tenkasi', 'Guindy', '2012190004', '1', '1', 'upload_files/candidate_tracker/60352523623_Abdul Bari resume.pdf', NULL, NULL, '2020-12-21', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up. will not suite for sales', '8', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-19 11:43:10', 64, '2020-12-23 03:12:20', 0, NULL, 1),
(2605, '', '0', '7019466531', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012190005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-19 01:20:16', 0, NULL, 0, NULL, 1),
(2606, 'kishore k', '6', '9791098415', '', 'kishorevelu1999@gmail.com', '1999-07-30', 21, '2', '2', 'kandavelu', 'driver', 30000.00, 1, 13000.00, 18000.00, 'Chennai', 'chenn', '2012190006', '1', '2', 'upload_files/candidate_tracker/75992685978_Kishore new 2.0.docx', NULL, NULL, '2020-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for RE', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-19 01:57:52', 58, '2020-12-23 02:42:30', 0, NULL, 1),
(2607, 'GOPINATH S', '4', '9850209105', '9551688852', 'jerryvelvet0503@gmailcom', '1998-07-13', 22, '1', '2', 'SELVAM', 'Salaried', 60000.00, 1, 20000.00, 20000.00, 'Gopalapuram', 'Gopalapuram', '2012190007', '', '2', 'upload_files/candidate_tracker/45101206197_gopinath resume.docx', NULL, NULL, '2020-12-19', 1, 'Riyaz', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not speaking up and IRDA code active in exide. zero pdt knowledge.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-19 02:42:10', 50, '2020-12-19 03:10:16', 0, NULL, 1),
(2608, '', '0', '8086923961', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012190008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-19 02:50:01', 0, NULL, 0, NULL, 1),
(2609, 'Jagadeesh . S', '4', '7397348848', '6381358266', 'jagadeeshmagician220@gmail.com', '1996-10-19', 24, '1', '1', 'Selvam', 'Business', 60000.00, 1, 20000.00, 250000.00, 'Chennai', 'Chennai', '2012190009', '', '2', 'upload_files/candidate_tracker/95138863261_Jagadeesh resum.pdf', NULL, NULL, '2020-12-19', 1, 'Job', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'IRDA active in exide, wife working in aegon. zero pdt knowledge. exp 25k', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-19 03:21:32', 1, '2020-12-19 03:38:39', 0, NULL, 1),
(2610, 'Mohamed Mansoor', '6', '9600054937', '6380061319', 'mansoormd98474@gmail.com', '1998-04-30', 22, '2', '2', 'Mohammed Hussain', 'Dhobi', 20000.00, 1, 15000.00, 19000.00, 'Chennai', 'Chennai', '2012190010', '1', '2', 'upload_files/candidate_tracker/24087168128__mansoor resume.doc', NULL, NULL, '2020-12-25', 15, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'looking non voice process', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-19 03:42:44', 1, '2020-12-25 11:16:22', 0, NULL, 1),
(2611, 'Nithish', '5', '9500036515', '', 'Nithishwins13@gmail.com', '1999-10-13', 21, '2', '2', 'UDAYA SHANKAR', 'Salesman', 300000.00, 1, 0.00, 16000.00, 'Velachery', 'Velachery', '2012190011', '1', '1', 'upload_files/candidate_tracker/65238329433_CV%2019-10-2019.docx', NULL, NULL, '2020-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-19 03:47:07', 1, '2020-12-19 03:55:18', 0, NULL, 1),
(2612, 'Sameer. S', '6', '9790593213', '', 'Sameershariffjunaidshariff@gmail.com', '2000-03-15', 20, '2', '2', 'Shabeer', 'Labour', 15000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2012190012', '1', '1', 'upload_files/candidate_tracker/37603795560_New%20resume.docx', NULL, NULL, '2020-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-19 04:01:16', 1, '2020-12-19 04:13:10', 0, NULL, 1),
(2613, '', '0', '9962292632', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012190013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-19 04:37:51', 0, NULL, 0, NULL, 1),
(2614, 'Manoj Pandi', '5', '9080350769', '', 'manojmariner999@gmail.com', '1999-06-19', 21, '2', '2', 'Manoj Pandi', 'business devleopment', 30.00, 0, 0.00, 24000.00, 'madurai', 'chennai', '2012190014', '3', '2', 'upload_files/candidate_tracker/98134686726_Manoj 1.pdf', NULL, NULL, '2020-12-21', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for RM. fresher and salary exp is high 25K. no convincing skill.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-19 05:56:19', 8, '2020-12-21 05:44:35', 0, NULL, 1),
(2615, 'Sangeetha.V', '4', '9940149414', '', 'sangeethaviswanathan03@gmail.com', '1998-10-03', 22, '1', '2', 'B.viswanathan', 'Employee', 20000.00, 1, 0.00, 13000.00, 'Thousand lights', 'Thousand lights', '2012190015', '', '1', 'upload_files/candidate_tracker/50771772946_DOS.pdf', NULL, NULL, '2020-12-23', 0, '', '5', '67', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'nOT WILLING TO SIGN AGREEMENT AS HER INTENTION WAS TO STAY FOR LESSER PERIOD OF TIME.', '1', '2', '', '1', '1', '', '2', '2020-12-26', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-19 06:15:32', 8, '2020-12-23 12:23:40', 0, NULL, 1),
(2616, '', '0', '9840209105', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012190016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-19 08:11:48', 0, NULL, 0, NULL, 1),
(2617, 'JEYA KUMAR', '22', '9790067224', '', 'officiallooking@outlook.com', '1991-04-07', 29, '2', '2', 'Paulraj', 'Tailor', 25000.00, 1, 24000.00, 30000.00, 'TIRUPPUR', 'Alandur', '2012190017', '1', '2', 'upload_files/candidate_tracker/60005531957_JEYAKUMAR - RESUME DMC-12.pdf', NULL, NULL, '2020-12-21', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No fluent in english\nNot good in content', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-19 08:20:20', 64, '2020-12-26 11:14:50', 0, NULL, 1),
(2618, 'Antony King Thomson A', '22', '9941858617', '', 'antonykingthomson@gmail.com', '1995-11-07', 25, '3', '2', 'A Antony Selvaraj', 'Rtd. A. E (TNHB)', 100000.00, 4, 25000.00, 40000.00, 'Chennai', 'Chennai', '2012200001', '', '2', 'upload_files/candidate_tracker/2343530609_Thomson Resume 2020.pdf', NULL, NULL, '2020-12-21', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Issue', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-20 08:17:05', 1, '2020-12-20 08:23:58', 0, NULL, 1),
(2619, 'reyaz ahmed', '22', '8939589539', '', 'reyazahm89@gmail.com', '1997-07-21', 23, '2', '2', 'ahmad', 'retired', 600000.00, 1, 0.00, 585000.00, 'chennai', 'chennai', '2012200002', '1', '2', 'upload_files/candidate_tracker/94636458720_Reyaz ahmed.pdf', NULL, NULL, '2020-12-21', 0, '', '3', '8', '2020-12-30', 306000.00, '', '', '1970-01-01', '1', 'for it.  25.5k', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-20 09:00:14', 50, '2020-12-30 04:10:17', 0, NULL, 1),
(2620, 'K. Varshini', '6', '8189914826', '9940382154', 'vsai42106@gmail.com', '2000-03-13', 20, '2', '2', 'Kumar chitra', 'Fresher', 75000.00, 1, 0.00, 12500.00, 'Chennai', 'Virugambakkam', '2012200003', '14', '1', 'upload_files/candidate_tracker/89955534929_Varshini resume.pdf', NULL, NULL, '2020-12-21', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-20 06:50:32', 50, '2020-12-21 05:39:49', 0, NULL, 1),
(2621, 'U Gopal Reddy', '11', '9573789652', '7019466531', 'ugopalreddy1997@gmail.com', '1997-05-12', 23, '2', '2', 'U Hanumantha Reddy', 'Farmer', 10000.00, 0, 0.00, 15.00, 'Anantapur', 'Bangalore', '2012200004', '1', '1', 'upload_files/candidate_tracker/96076087818_Gopal Reddy.docx', NULL, NULL, '2020-12-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-20 10:02:41', 50, '2020-12-24 03:42:46', 0, NULL, 1),
(2622, 'K Imthiyaz', '4', '9952082490', '', 'imthiyasrockzz@gmail.com', '1992-06-18', 28, '2', '1', 'seema', 'housewife', 150000.00, 2, 16500.00, 20000.00, 'andhra pradesh', 'pudupet', '2012210001', '1', '2', 'upload_files/candidate_tracker/535186587_imthiyaz job new copy.docx', NULL, NULL, '2020-12-21', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for  RM. no convincing skill. not active too', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-21 10:04:17', 58, '2020-12-23 01:18:24', 0, NULL, 1),
(2623, 'Deva Prasad M', '6', '8008640554', '9550089232', 'mudhigolamdeva06@gmail.com', '1996-07-22', 24, '2', '2', 'M Bhaskar', 'Agriculture', 10000.00, 1, 0.00, 18000.00, 'Chittoor', 'KR puram', '2012210002', '1', '1', 'upload_files/candidate_tracker/34420974565_1608092636797Resume_Deavaprasad.doc', NULL, NULL, '2020-12-21', 0, '', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'HE WILL NOT SUIT FOR OUR PROFILE xxamp COMMUNICATION IS TOO WORST', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-21 10:45:53', 50, '2020-12-21 11:14:16', 0, NULL, 1),
(2624, 'jakeer hussain', '6', '8309259156', '7288076066', 'jakeerjs43@gmail.com', '1999-06-01', 21, '2', '2', 'meharaj ali', 'farmer', 60000.00, 2, 0.00, 200000.00, 'rayachoty', 'marthalli', '2012210003', '1', '1', 'upload_files/candidate_tracker/62738545063_Jakeer.docx', NULL, NULL, '2020-12-24', 0, '', '5', '38', NULL, 0.00, '', '0', NULL, '2', 'HE DONT HAVE BIKE AND HE CANT ARRANGE SO HE WILL NOT SUIT FOR OUR FIELD', '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-21 10:53:32', 1, '2020-12-24 01:46:43', 0, NULL, 1),
(2625, 'syed ahmed', '13', '9940018065', '9841163787', 'syeda5343@gmail.com', '1993-12-28', 26, '2', '2', 'syed attaur rahman', 'clerk', 40000.00, 1, 250000.00, 200000.00, 'chennai', 'Chennai', '2012210004', '1', '2', 'upload_files/candidate_tracker/44572647287_RESUME.DOCX', NULL, NULL, '2020-12-21', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not completed the Task', '2', '2', '', '1', '1', '', '2', '2020-12-25', '1', '2', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-21 11:11:28', 50, '2020-12-21 11:37:03', 0, NULL, 1),
(2626, 'vigneshwaran n', '6', '9514060289', '', 'vickynagaraj1999@gmail.com', '1999-02-03', 21, '2', '2', 'nagarajan', 'site supervisor', 13000.00, 2, 0.00, 15000.00, 'chromepet', 'chromepet', '2012210005', '15', '1', 'upload_files/candidate_tracker/58556084377_Vigneshwaran.docx', NULL, NULL, '2020-12-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales, looking for admin job. will not sustain.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 11:31:11', 1, '2020-12-21 11:39:53', 0, NULL, 1),
(2627, 'Gulbanu', '4', '9500185186', '9500185212', 'Gulbanuali@gmail.com', '1983-02-05', 37, '2', '1', 'Zeeshaan', 'Businesssman', 14000.00, 1, 16000.00, 20000.00, 'Royapettah', 'Royapettah', '2012210006', '1', '2', 'upload_files/candidate_tracker/87353254949_GLU1.docx', NULL, NULL, '2020-12-21', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not interested in sales ...looking for operations ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-21 11:31:50', 8, '2020-12-21 05:25:22', 0, NULL, 1),
(2628, 'Jamal mohamed shajahan', '20', '9159964371', '8012335454', 'shajahanjamal8@gmail.com', '1983-01-23', 37, '3', '1', 'S. Peer mohamed', 'SRLY Rtd.', 30000.00, 3, 50000.00, 20000.00, 'Tenkasi', 'Mannadi', '2012210007', '', '2', 'upload_files/candidate_tracker/57676464321_1603901182110_CURRICULAUM VITAE.docx', NULL, NULL, '2020-12-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', '37+  will not suite for sales. no sales exp. NRI', '5', '2', '0', '1', '1', '0', '2', '2020-12-23', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 12:13:46', 1, '2020-12-21 12:19:31', 0, NULL, 1),
(2629, 'KUMARAN B', '6', '9710112800', '9840279606', 'kumaran.bst@gmail.com', '1996-11-27', 24, '2', '2', 'M BASKARAN', 'DRIVER', 15000.00, 2, 0.00, 15000.00, 'KODAMBAKKAM', 'KODAMBAKKAM', '2012210008', '1', '1', 'upload_files/candidate_tracker/50398208192_KUMARAN RESUME NEW.docx', NULL, NULL, '2020-12-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling and sales', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-21 12:26:25', 1, '2020-12-22 11:33:13', 0, NULL, 1),
(2630, 'Sharmili', '4', '7339495634', '9003215988', 'sharmilak.9694@gmail.com', '1994-09-20', 26, '2', '2', 'Lakshmanan', 'Security', 10000.00, 0, 20000.00, 20000.00, 'Chennai', 'Chennai', '2012210009', '1', '2', 'upload_files/candidate_tracker/78957208945_1608520458902_SHARMILI RESUME.pdf', NULL, NULL, '2020-12-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response from her end. will not join.\n', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-21 12:36:04', 8, '2020-12-22 01:27:03', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2631, 'N Rajesh', '6', '8978883846', '8978203662', 'rajeshabsr@gmail.com', '1998-05-18', 22, '2', '2', 'N Anandamandadi', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Chittoor, Andhra Pradesh', 'Banashankari, Bangalore', '2012210010', '1', '2', 'upload_files/candidate_tracker/3565861604_Rajesh Post Graduate Resume.pdf', NULL, NULL, '2020-12-23', 0, '', '5', '38', NULL, 0.00, '', '0', NULL, '2', 'no bike....he will not suit for our profile and  ixquotm not satisfied with his communication ', '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-21 12:38:05', 1, '2020-12-21 01:04:45', 0, NULL, 1),
(2632, 'Krishnapuram Rajasekhar reddy', '6', '8096736392', '9390092026', 'krishnapuramrajasekhar350@gmail.com', '1999-04-14', 21, '2', '2', 'K thambi reddy', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Chittoor, Andhrapradesh , 517582', 'Banashankari', '2012210011', '1', '1', 'upload_files/candidate_tracker/11242570533_Raja resume new.pdf', NULL, NULL, '2020-12-23', 0, '', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Bike....He Will Not Suit For Our Profile And  Ixquotm Not Satisfied With His Communication ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-21 12:38:37', 50, '2020-12-23 11:25:02', 0, NULL, 1),
(2633, 'M Antony Pratheep', '5', '9566085147', '9884522889', 'Antonypratheep19@gmail.com', '1991-05-19', 29, '1', '2', 'Micheal Anthony', 'Retired', 20000.00, 1, 20000.00, 25000.00, '#38/18 Antoniyar Koil Street, Chennai 70', '#38/18 Antoniyar Koil Street, Chennai 70', '2012210012', '', '2', 'upload_files/candidate_tracker/89604143665_Ant (1).pdf', NULL, NULL, '2020-12-21', 0, '55616', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned up', '5', '2', '0', '1', '1', '0', '2', '2020-12-23', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 12:51:51', 1, '2020-12-21 12:59:07', 0, NULL, 1),
(2634, 'Raghunath P S', '22', '7299163339', '', 'psraghunath@live.com', '1981-10-12', 39, '2', '2', 'sivasubramaniyan', 'salaried', 40000.00, 0, 40000.00, 55000.00, 'chennai', 'chennai', '2012210013', '1', '2', 'upload_files/candidate_tracker/23927898737_76c221b9-1f0e-478b-a63c-483cb424638a.pdf', NULL, NULL, '2020-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High CTC xxamp Not in content Writing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-21 02:02:50', 64, '2020-12-23 03:19:10', 0, NULL, 1),
(2635, 'Arulmani', '4', '8438356169', '9751705088', 'maniarulmca@GMAIL.COM', '1993-06-30', 27, '2', '2', 'Swetha', 'Home meker', 20000.00, 1, 0.00, 20000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2012210014', '1', '1', 'upload_files/candidate_tracker/72781741578_Resume Arul PDF.pdf', NULL, NULL, '2020-12-21', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain not interested in sales', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-21 02:35:55', 1, '2020-12-21 02:45:03', 0, NULL, 1),
(2636, 'Dinesh. V', '3', '7092720168', '', 'Denadinesh2k@gmail.com', '2000-12-05', 20, '1', '2', 'Durga v', 'Sales', 82000.00, 1, 0.00, 12000.00, 'Porur chennai', 'Porur chennai', '2012210015', '', '1', 'upload_files/candidate_tracker/12069365138_Dinesh-Resume.docx', NULL, NULL, '2020-12-22', 0, '22/12/2020 12pm', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 04:19:22', 1, '2020-12-21 04:24:12', 0, NULL, 1),
(2637, '', '0', '7010773501', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 04:39:36', 0, NULL, 0, NULL, 1),
(2638, 'SURENDHAR.J', '21', '7092695644', '9840090352', 'surendharduke08@gmail.com', '1999-07-08', 21, '2', '2', 'Jagadeesh.k', 'Employee', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2012210017', '1', '1', 'upload_files/candidate_tracker/51297291581_Surendhar_Resume_2020.pdf', NULL, NULL, '2020-12-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '3', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-21 05:01:04', 50, '2020-12-28 05:01:45', 0, NULL, 1),
(2639, 'Pavan Kumar', '7', '9940358602', '', 'pavanragu98@gmail.com', '1998-10-01', 22, '3', '2', 'raghu Ramaiah', 'Housekeeping', 175000.00, 2, 0.00, 100000.00, '1/14 THIRUVALLUVAR STREET AMBAL NAGAR RAMAPURAM', 'Chennai', '2012210018', '', '1', 'upload_files/candidate_tracker/53697849910_pavan kumar-Resume.docx', NULL, NULL, '2020-12-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 05:52:10', 50, '2020-12-24 03:43:00', 0, NULL, 1),
(2640, '', '0', '8220629009', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 06:04:34', 0, NULL, 0, NULL, 1),
(2641, '', '0', '8428701131', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 06:26:16', 0, NULL, 0, NULL, 1),
(2642, 'Naveen.R', '25', '8825553401', '', '', '1999-09-16', 21, '3', '2', 'B.ravi', 'IT', 20000.00, 1, 0.00, 15000.00, '31/40 srinivasa iyengar street west mambalam', '31/40 srinivasa iyengar street west mambalam', '2012210021', '', '1', 'upload_files/candidate_tracker/33052789278_1595924364434_0_naveen Resume (1).pdf', NULL, NULL, '2020-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 06:28:40', 1, '2020-12-21 06:33:41', 0, NULL, 1),
(2643, '', '0', '7305441737', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 06:36:15', 0, NULL, 0, NULL, 1),
(2644, 'Gopinath', '5', '9940542193', '', 'Gopi.july31@gmail.com', '1988-07-31', 32, '2', '2', 'SHANTHI baskaran', 'Home maker', 25000.00, 2, 25000.00, 27000.00, '36 a Brahmin street', 'Korattur', '2012210023', '1', '2', 'upload_files/candidate_tracker/73110399858_resume july 19.pdf', NULL, NULL, '2020-12-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'exp 32k and he will not join.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-21 06:45:24', 8, '2020-12-23 06:52:55', 0, NULL, 1),
(2645, '', '0', '8825984694', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 07:21:26', 0, NULL, 0, NULL, 1),
(2646, 'GB Saravanan', '22', '9952925206', '9840434251', 'gbsaravanan00@gmail.com', '2000-06-17', 20, '1', '2', 'Sasikala B', 'House keeping', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2012210025', '', '1', 'upload_files/candidate_tracker/3069736117_Saravanan_resume_IT_1605511504497.pdf', NULL, NULL, '2020-12-22', 0, 'Jennifer', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 07:46:39', 1, '2020-12-21 08:04:39', 0, NULL, 1),
(2647, 'Kiruthika. G', '7', '7358335076', '8870973582', 'kiruthikakiruthi10847@gmail.com', '1999-12-13', 21, '1', '2', 'Govindharaj. P', 'Cooli', 15000.00, 1, 0.00, 12000.00, 'Velachery', 'Velachery', '2012210026', '', '1', 'upload_files/candidate_tracker/53418056804_Kiruthika Resume new alter.doc', NULL, NULL, '2020-12-24', 0, '2012210026', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 07:51:29', 50, '2020-12-24 03:43:13', 0, NULL, 1),
(2648, '', '0', '9514521463', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 08:10:54', 0, NULL, 0, NULL, 1),
(2649, '', '0', '7824047742', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 09:04:39', 0, NULL, 0, NULL, 1),
(2650, '', '0', '9487658522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 09:40:26', 0, NULL, 0, NULL, 1),
(2651, 'Sandhiya', '7', '9123518082', '9789924205', 'sandydhiya2000@gmail.com', '2000-01-20', 20, '3', '2', 'Yasodha', 'Business', 72000.00, 2, 0.00, 15000.00, 'Adambakkam', 'Adambakkam', '2012210030', '', '1', 'upload_files/candidate_tracker/95801861722_new resume.pdf', NULL, NULL, '2020-12-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 10:00:52', 1, '2020-12-21 10:06:48', 0, NULL, 1),
(2652, 'Vinoth A', '22', '9344775436', '9514614224', 'Vinodambikapathy@gmail.com', '1992-03-24', 28, '2', '2', 'Ambikapathy', 'Farmer', 45000.00, 2, 24000.00, 28000.00, 'Mannargudi', 'Chennai', '2012210031', '1', '2', 'upload_files/candidate_tracker/50256548238_Vinoth New Resume.pdf', NULL, NULL, '2020-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Exp and Sustainability issue', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-21 10:44:27', 64, '2020-12-26 10:42:11', 0, NULL, 1),
(2653, '', '0', '7358444405', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 08:52:39', 0, NULL, 0, NULL, 1),
(2654, 'R Seetha Lakshmi', '22', '7904765373', '', 'rseetha91@gmail.com', '1991-06-18', 29, '2', '1', 'Ramu', 'Turner', 12000.00, 1, 30000.00, 35000.00, 'Chennai', 'Chennai', '2012220002', '1', '2', 'upload_files/candidate_tracker/50625631045_Seetha Resume.docx', NULL, NULL, '2020-12-23', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-22 10:04:04', 1, '2020-12-22 10:47:20', 0, NULL, 1),
(2655, '', '0', '6565656565', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 10:39:11', 0, NULL, 0, NULL, 1),
(2656, 'Sundaramahalingam T', '6', '7845694529', '8248424715', 'sundar15794@gmail.com', '1994-07-15', 26, '4', '1', 'Meena', 'Home maker', 15000.00, 1, 3.25, 4.00, 'CHENNAI', 'CHENNAI', '2012220004', '', '2', 'upload_files/candidate_tracker/163733672_Sundar Sales.pdf', NULL, NULL, '2020-12-22', 15, '', '3', '8', '2021-01-04', 288000.00, '', '6', '2021-01-21', '1', '24ctc for rajkumar team and no pf', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 10:39:56', 7, '2020-12-31 03:43:09', 0, NULL, 1),
(2657, '', '0', '6305050025', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 10:49:37', 0, NULL, 0, NULL, 1),
(2658, '', '0', '9790829654', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 11:04:47', 0, NULL, 0, NULL, 1),
(2659, 'Praveen kumar', '6', '9585965204', '8940066803', 'spraveenkumar04081998@gmail.com', '1998-08-04', 22, '2', '2', 'Shiva Kumar', 'Foot wear shop', 15.00, 1, 0.00, 16.00, 'Ambadhkar nagara near passport office kormangala', 'Near passport office kormangala', '2012220007', '1', '1', 'upload_files/candidate_tracker/66962039571_0_Praveen Kumar_Color Format – 02.pdf', NULL, NULL, '2020-12-22', 0, '', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he will not sustain xxamp he will not suit for our field', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-22 11:18:48', 50, '2020-12-22 02:36:47', 0, NULL, 1),
(2660, 'Patan zubher khan', '5', '7349744048', '8050268662', 'Zubherpatan 1998@gmail.com', '1998-07-05', 22, '2', '2', 'Patan sardhar khan, patan shahnaz', 'Gandhinagar kpr road banglore.', 20.00, 1, 12.00, 15.00, 'Ap', 'Ghandinagar', '2012220008', '1', '2', 'upload_files/candidate_tracker/69088525014_2PAGE.docx', NULL, NULL, '2020-12-25', 1, '', '5', '39', NULL, 0.00, '', '0', NULL, '2', 'he will not suit for our field bcs not good in communication', '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-22 11:24:58', 1, '2020-12-25 01:12:23', 0, NULL, 1),
(2661, '', '0', '7337774999', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 11:48:18', 0, NULL, 0, NULL, 1),
(2662, 'sathish kumar', '6', '7397456144', '', 'edwindu7576@gmail.com', '1995-10-09', 25, '2', '2', 'krishnan', 'building contractor', 20000.00, 0, 13000.00, 15000.00, 'villupuram', 'medavakkam', '2012220010', '2', '2', 'upload_files/candidate_tracker/22933495306_Share sathish Kumar (1).doc', NULL, NULL, '2020-12-22', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate not come for 2nd round so rejected my side..', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 12:01:33', 8, '2020-12-22 01:10:29', 0, NULL, 1),
(2663, 'Nishanth', '4', '9566328911', '9894062247', 'nishanthpriyan@gmail.com', '1994-12-03', 26, '2', '2', 'Murugesh', 'Gold smith', 20000.00, 1, 0.00, 13000.00, 'Vadapalani', 'Vadapalani', '2012220011', '15', '1', 'upload_files/candidate_tracker/27042229135_Resume.docx', NULL, NULL, '2020-12-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 12:49:00', 1, '2020-12-22 01:00:02', 0, NULL, 1),
(2664, 'Shiva', '9', '8940066803', '9585964204', 'sshivaa449@gmail.com', '1998-12-25', 21, '2', '2', 'Madhuu', 'Driver', 15000.00, 1, 0.00, 17.00, 'Ambadhkar nagara near passport office kormangala', 'Near passport office kormangala', '2012220012', '1', '1', 'upload_files/candidate_tracker/55186728336_0_Praveen Kumar_Color Format – 02.pdf', NULL, NULL, '2020-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-22 01:44:48', 1, '2020-12-22 01:52:32', 0, NULL, 1),
(2665, '', '0', '7339442244', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 03:04:35', 0, NULL, 0, NULL, 1),
(2666, '', '0', '9003070530', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 03:54:59', 0, NULL, 0, NULL, 1),
(2667, 'loganathan r', '8', '8754390551', '', 'rloganathan98@gmail.com', '1998-07-25', 22, '2', '2', 'chinnakulanthai', 'housewife', 12000.00, 1, 165000.00, 220000.00, 'tiruvannamalai', 'chennai', '2012220015', '1', '2', 'upload_files/candidate_tracker/68445400768_NEW RESUME l.docx', NULL, NULL, '2020-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-22 03:56:05', 1, '2020-12-22 04:01:58', 0, NULL, 1),
(2668, '', '0', '6363229179', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 04:04:22', 0, NULL, 0, NULL, 1),
(2669, '', '0', '8428777928', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 04:12:26', 0, NULL, 0, NULL, 1),
(2670, 'Vijayalakshmi S', '16', '8778085194', '', 'vijistefi@gmail.com', '1999-12-21', 22, '2', '2', 'Senthil S', 'Driver', 300000.00, 1, 232000.00, 1.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2012220018', '1', '2', 'upload_files/candidate_tracker/93493817045_Vijayalakshmi S New Resume 2022.pdf', NULL, '1', '2022-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Multiple offers with night shift,Good in communication,Salary Exp is high,1,5 yrs 2 companies travelled,Will not sustain in a long', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2020-12-22 04:19:01', 85, '2022-07-23 10:49:37', 0, NULL, 1),
(2671, '', '0', '9677195404', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 04:22:25', 0, NULL, 0, NULL, 1),
(2672, '', '0', '9962804446', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 05:14:23', 0, NULL, 0, NULL, 1),
(2673, 'Mahesh G', '20', '9551558253', '8939701902', 'magidhoni1997@gmail.com', '1997-04-19', 23, '2', '2', 'Ganesh', 'Mazon', 18000.00, 1, 17500.00, 22000.00, 'Alwarthirunagar', 'Chennai', '2012220021', '3', '2', 'upload_files/candidate_tracker/47123899627_Resume 2029.doc', NULL, NULL, '2020-12-23', 20, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 05:15:27', 8, '2020-12-23 06:52:21', 0, NULL, 1),
(2674, 'Vinoth Kumar S', '20', '9551542717', '', 'Vinothkumar.1050@ Gmail.com', '1993-06-16', 27, '2', '2', 'Sampath R', 'Bussiness', 20000.00, 2, 17500.00, 22000.00, 'Manali', 'Chennai', '2012220022', '3', '2', 'upload_files/candidate_tracker/55182226462_VK resume.pdf', NULL, NULL, '2020-12-23', 20, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 05:33:32', 8, '2020-12-23 06:52:10', 0, NULL, 1),
(2675, 'S magimai selvam', '20', '7401364664', '', 'Clinton.magimai.@gamil.com', '1995-02-01', 25, '2', '2', 'L siluvai raj', 'Auto driver', 18000.00, 2, 17500.00, 22000.00, 'Santhome', 'Chennai', '2012220023', '3', '2', 'upload_files/candidate_tracker/5134193164_Magimai_Resume.pdf', NULL, NULL, '2020-12-23', 20, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 05:38:09', 8, '2020-12-23 06:52:00', 0, NULL, 1),
(2676, 'Saisuriya R', '1', '9344910496', '8428777928', 'saisuriya7777@gmail.com', '1999-03-16', 21, '3', '2', 'Raji A', 'Fresher', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2012220024', '', '1', 'upload_files/candidate_tracker/10275518651_Job resume.docx', NULL, NULL, '2020-12-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 05:50:57', 50, '2020-12-24 03:43:34', 0, NULL, 1),
(2677, '', '0', '8754465553', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 06:02:14', 0, NULL, 0, NULL, 1),
(2678, 'Suriya Murali', '5', '9551590512', '9444949767', 'suriyabeivers@gmail.com', '1998-02-02', 22, '2', '2', 'Murali', 'cheif office superiendent', 40000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2012220026', '1', '1', 'upload_files/candidate_tracker/17582131655_SIST-PG-MBA-38410248-     suriya-.docx', NULL, NULL, '2020-12-23', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not selected', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-22 06:44:31', 50, '2020-12-26 01:12:14', 0, NULL, 1),
(2679, '', '0', '9790978823', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 06:44:58', 0, NULL, 0, NULL, 1),
(2680, 'rhaksha h', '22', '9840858813', '8838029224', 'rhaksha13@gmail.com', '1997-05-13', 23, '2', '2', 'sairani', 'housewife', 20000.00, 0, 23000.00, 32000.00, 'chennai korattur', 'chennai', '2012220028', '1', '2', 'upload_files/candidate_tracker/59610522414_Resume Rhaksha.doc', NULL, NULL, '2020-12-23', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much exp in Digital Marketing', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-22 07:03:05', 1, '2020-12-22 07:09:06', 0, NULL, 1),
(2681, 'Shaheen Siddiqa', '22', '9994930716', '', 'shaheensiddiqa98@gmail.com', '1998-03-18', 22, '2', '2', 'Mohamed Siddiq', 'Private service', 40000.00, 1, 300000.00, 350000.00, 'Chennai', 'Chennai', '2012220029', '1', '2', 'upload_files/candidate_tracker/56375979922_Shaheen_updatedresume_page-0001.pdf', NULL, NULL, '2020-12-24', 10, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-22 07:07:04', 50, '2020-12-24 03:43:54', 0, NULL, 1),
(2682, 'S. Monish Raj', '22', '8056030940', '', 'monishraj85@gmail.com', '1995-07-30', 25, '2', '2', 'D. Soundarjan', 'Real Estate', 18000.00, 1, 10000.00, 20000.00, 'No 9, Iyyappan St, venkateshwara Na, Ambattur', 'No 9, Iyyappan St, Venkateshwara Na, Ambattur', '2012220030', '1', '2', 'upload_files/candidate_tracker/71810091353_Monish resume.docx', NULL, NULL, '2020-12-23', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much exp sustainability issue', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-22 09:12:32', 64, '2020-12-26 10:56:04', 0, NULL, 1),
(2683, 'Parthiban.s', '22', '8220101531', '', 'parthiyeshwanth@gmail.com', '1996-01-18', 24, '2', '2', 'K. Shanmungam', 'Driver', 25000.00, 1, 18000.00, 22000.00, '1/84 a post office street thuraipakkm Chennai 97', '1/84 A Post Office Street Thuraipakkm Chennai 97', '2012220031', '1', '2', 'upload_files/candidate_tracker/17465038843_Parthiban Resume.pdf', NULL, NULL, '2020-12-23', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good Profile,only in seo and Exp in more', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-22 11:30:22', 50, '2020-12-23 12:23:59', 0, NULL, 1),
(2684, 'C.gomathi', '4', '9003070266', '', 'sangeethaviswanathan03@gmail.com', '1998-01-30', 22, '1', '2', 'K.chadrasekar', 'Chemical industries', 20000.00, 1, 0.00, 13000.00, 'Thousand lights', 'Thousand lights', '2012230001', '', '1', 'upload_files/candidate_tracker/73718122744_Check out this file: file1_1608703260338.pdf', NULL, NULL, '2020-12-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will  not suit for calling, no convincing skill.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-23 05:10:25', 8, '2020-12-23 05:35:31', 0, NULL, 1),
(2685, '', '0', '9841416121', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012230002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-23 08:33:01', 0, NULL, 0, NULL, 1),
(2686, 'karthika.', '17', '9025357056', '9025618810', 'lkarthika64@gmail.com', '1991-06-01', 29, '3', '1', 'venkatesh', 'salaried', 35000.00, 1, 10000.00, 15000.00, 'CHENNAI', 'CHENNAI', '2012230003', '', '2', 'upload_files/candidate_tracker/71205674159_Updated Resume - karthika (1).docx', NULL, NULL, '2020-12-23', 0, '', '3', '8', '2020-10-26', 300000.00, '', '5', '1970-01-01', '2', '25ctc with pf', '8', '2', '4', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-23 10:26:14', 7, '2020-12-24 12:11:07', 0, NULL, 1),
(2687, '', '0', '7975095883', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012230004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-23 10:49:10', 0, NULL, 0, NULL, 1),
(2688, 'K.Rupamalini', '4', '7358229263', '', 'rupamalini07@gmail.com', '1999-11-07', 21, '3', '2', 'Kathiravan', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2012230005', '', '1', 'upload_files/candidate_tracker/83217772992_K.Rupamalini07 resume 07.docx', NULL, NULL, '2021-01-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '2', '', '1', '1', '', '2', '1970-01-01', '2', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-23 11:02:01', 60, '2021-01-04 10:23:27', 0, NULL, 1),
(2689, '', '0', '9019471969', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012230006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-23 11:54:07', 0, NULL, 0, NULL, 1),
(2690, 'Abid nawaz', '4', '9740895032', '7022403166', '', '1997-02-22', 23, '2', '2', 'Nazim pasha', 'Old scrap moter', 20.00, 3, 15.00, 18.00, '#57,9th main,4th cross, btm layout, Bangalore', '#57,9th main,4th cross,btm layout ,Bangalore', '2012230007', '1', '2', 'upload_files/candidate_tracker/39075001263_single page resume ABID.docx', NULL, NULL, '2020-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-23 11:57:59', 1, '2020-12-23 12:11:26', 0, NULL, 1),
(2691, 'babu', '5', '9159712478', '', 'babu08061994@gmail.com', '1994-06-08', 26, '2', '1', 'shanthini', 'salaried', 20000.00, 1, 22000.00, 26000.00, 'ambattur', 'ambattur', '2012230008', '1', '2', 'upload_files/candidate_tracker/89299849627_BABU U NEW (1).pdf', NULL, NULL, '2020-12-23', 0, '', '5', '36', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit RM\nExpected pay very high so RE also not possible', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-23 01:11:15', 8, '2020-12-23 06:48:55', 0, NULL, 1),
(2692, 'Arul kumar', '11', '9677503411', '7904806441', 'Arulmeena74@gmail.com', '1996-06-12', 24, '3', '2', 'Kothandam', 'Accounts', 20000.00, 2, 20000.00, 23000.00, 'Chengalpattu', 'Chengalpattu', '2012230009', '', '2', 'upload_files/candidate_tracker/51868794517_CV - Resume.pdf', NULL, NULL, '2020-12-28', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-23 01:16:28', 1, '2020-12-23 01:24:49', 0, NULL, 1),
(2693, 'srivatsan', '5', '9884616468', '9789855901', 'masterdirector86@gmail.com', '1986-09-22', 34, '2', '2', 'ngarajan', 'lic agent', 25000.00, 0, 0.00, 27000.00, 'chennai', 'chennai', '2012230010', '1', '2', 'upload_files/candidate_tracker/48178089521_About Srivatsan (1).docx', NULL, NULL, '2020-12-23', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He donxquott want RM profile or sales profile, he wants BPO service', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-23 02:12:51', 8, '2020-12-23 05:36:32', 0, NULL, 1),
(2694, 'Prashanth M', '22', '9677157896', '', 'prashanth27jul@gmail.com', '1992-07-28', 28, '2', '2', 'Murugan', 'Contractor', 30000.00, 2, 23000.00, 28000.00, 'Chennai', 'Chennai', '2012230011', '1', '2', 'upload_files/candidate_tracker/58549836271_Prashanth Update Res.pdf', NULL, NULL, '2020-12-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for digital Marketing,', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-23 02:27:02', 64, '2020-12-26 11:01:33', 0, NULL, 1),
(2695, '', '0', '9962901254', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012230012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-23 02:49:12', 0, NULL, 0, NULL, 1),
(2696, 'sreeraj', '6', '8248126968', '', 'vishnuloofz@gmail.com', '1995-08-14', 25, '1', '2', 'radha krishnan', 'salaried', 20000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2012230013', '', '2', 'upload_files/candidate_tracker/1020449449_IMG_20201223_163020_pdf.pdf', NULL, NULL, '2020-12-23', 0, 'stephen raj', '3', '8', '2020-12-28', 198000.00, '', '3', '2022-05-03', '1', '16500k as ctc for saravana team.', '5', '2', '1', '1', '3', '1', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-23 02:59:36', 7, '2021-01-02 12:35:04', 0, NULL, 1),
(2697, '', '0', '7358521025', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012230014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-23 03:27:14', 0, NULL, 0, NULL, 1),
(2698, 'Selvam', '4', '9976172838', '8667329477', 'selvamtamil1992@gmail.com', '1992-06-19', 28, '2', '2', 'Tamilkovalan', 'Weaver', 40000.00, 2, 18000.00, 20000.00, 'Chennai', 'Chennai', '2012230015', '1', '2', 'upload_files/candidate_tracker/75727970676_1600421266447_SELVAM-converted.pdf', NULL, NULL, '2020-12-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No sales skill , and no relevant exp.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-23 03:52:09', 64, '2020-12-26 11:04:01', 0, NULL, 1),
(2699, 's balasubramaniam', '4', '6383705922', '9994928389', 'bala904321@gmail.com', '1999-02-12', 21, '2', '2', 'r shanmugma', 'rtrd bhel officer', 70000.00, 2, 0.00, 15000.00, 'chennai', 'Chennai', '2012230016', '14', '1', 'upload_files/candidate_tracker/27528411073_Resume.pdf', NULL, NULL, '2020-12-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain and not interested in sales. fresher', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-23 04:02:33', 1, '2020-12-28 12:38:49', 0, NULL, 1),
(2700, 'Rupesh', '4', '8610899310', '8428899636', 'rupeshmsdvenkatesh@gmaHyil.com', '1998-08-27', 22, '2', '2', 'Uma Devi', 'House wife', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2012230017', '1', '1', 'upload_files/candidate_tracker/4431241874_rupesh resume .doc', NULL, NULL, '2020-12-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-23 04:03:17', 50, '2020-12-24 03:44:09', 0, NULL, 1),
(2701, '', '0', '8248128968', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012230018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-23 04:09:34', 0, NULL, 0, NULL, 1),
(2702, 'Thanigaiarasu', '5', '9787367473', '', 'dgthanigai21@gmail.com', '1998-06-10', 22, '2', '2', 'Devaraj', 'Weaving industry', 8000.00, 2, 0.00, 22.00, 'Arakkonam', 'Gundy', '2012240001', '', '2', 'upload_files/candidate_tracker/30112607885_THANIGAIARASU RESUME.docx', NULL, NULL, '2020-12-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability issue', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-24 10:13:52', 50, '2020-12-24 11:20:43', 0, NULL, 1),
(2703, 'Kalluru Haramouli', '5', '7780706060', '', 'kalluruharamouli9@gmail.com', '1996-11-01', 24, '2', '2', 'K moulali', 'Business', 60000.00, 4, 0.00, 20000.00, '29-332-6/d Suddulapeta Nandyal kurnool (Dt) A P', 'Sivabalaji boyspg 1 crosskiadb layout ecity phase2', '2012240002', '1', '1', 'upload_files/candidate_tracker/53967264666_K H M ( new ).pdf', NULL, NULL, '2020-12-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-24 10:56:58', 1, '2020-12-24 11:09:05', 0, NULL, 1),
(2704, '', '0', '9095668389', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012240003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-24 10:58:10', 0, NULL, 0, NULL, 1),
(2705, 'Sankar.S', '6', '8428656275', '9884687015', 'Sankarbala135@gmail.com', '1997-06-03', 23, '2', '2', 'Shanmugam p', 'Working', 23000.00, 2, 0.00, 15000.00, 'Tambaram chennai', 'Tambaram chennai', '2012240004', '15', '1', 'upload_files/candidate_tracker/7741467454_29184.pdf', NULL, NULL, '2020-12-28', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT FOR  RE', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-24 11:06:57', 8, '2020-12-28 12:56:46', 0, NULL, 1),
(2706, '', '0', '7603804715', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012240005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-24 11:30:14', 0, NULL, 0, NULL, 1),
(2707, '', '0', '9025143042', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012240006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-24 11:50:59', 0, NULL, 0, NULL, 1),
(2708, 'Lakshmi narayanan', '21', '9962998393', '', 'lakshfamily75@gmail.com', '1999-11-19', 21, '2', '2', 'Balasubramaniyam', 'Carpentor', 80000.00, 1, 0.00, 15000.00, 'Mangadu,chennai', 'Mangadu,chennai', '2012240007', '15', '1', 'upload_files/candidate_tracker/85570964067_1608793599923_LAKSH (RESUME).doc', NULL, NULL, '2020-12-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-24 12:30:26', 50, '2020-12-28 04:58:20', 0, NULL, 1),
(2709, 'kiran palkuru', '6', '7013276371', '8309259156', 'kirank14514@gmail.com', '1999-07-06', 21, '2', '2', 'ravi', 'farmer', 40000.00, 1, 0.00, 200000.00, 'chittor', 'marthalli', '2012240008', '1', '1', 'upload_files/candidate_tracker/88695391262_5_6310009824927023424.pdf', NULL, NULL, '2020-12-24', 0, '', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he dont have bike, he cant arrange.', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-24 12:57:40', 50, '2020-12-24 01:54:18', 0, NULL, 1),
(2710, '', '0', '8754599369', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012240009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-24 01:28:44', 0, NULL, 0, NULL, 1),
(2711, 'Seenivasan', '6', '9360796874', '', 'S.seenivasanmba5@gmail.com', '1999-06-04', 21, '2', '2', 'M.sankarapandian', 'Autodriver', 15000.00, 3, 0.00, 17000.00, 'Chennai', 'Chennai', '2012240010', '1', '1', 'upload_files/candidate_tracker/4455785856_RESUME (1).pdf', NULL, NULL, '2020-12-25', 0, '', '3', '8', '2021-01-04', 165000.00, '', '5', '1970-01-01', '1', '13750ctc and for kannan team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-24 02:48:10', 7, '2020-12-31 03:43:34', 0, NULL, 1),
(2712, '', '0', '8608805806', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012240011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-24 03:33:45', 0, NULL, 0, NULL, 1),
(2713, 'Ponsiva.m', '22', '7358666206', '', 'Ponsiva97@gmail.com', '2000-04-07', 20, '3', '2', 'Marimuthu', 'Provisional store', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2012240012', '', '1', 'upload_files/candidate_tracker/70501045720_1597313164243Resume_Ponsiva2.docx', NULL, NULL, '2020-12-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for the core openings only', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-24 03:39:30', 50, '2020-12-26 11:02:56', 0, NULL, 1),
(2714, 'vinoth kumar', '5', '9790395815', '', 'raivinoth92@gmail.com', '1992-05-05', 28, '2', '1', 'moorthy', 'driver', 40000.00, 1, 18000.00, 20000.00, 'salem', 'chennai', '2012240013', '1', '2', 'upload_files/candidate_tracker/54147274035_vinoth kumar.doc', NULL, NULL, '2020-12-25', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suit our profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-24 04:22:40', 52, '2020-12-25 01:18:15', 0, NULL, 1),
(2715, 'sundar raj s', '22', '8754873716', '8667505359', 'sundar13raj@gmail.com', '1993-07-13', 27, '2', '2', 'suresh kumar g', 'tneb', 50000.00, 0, 12000.00, 15000.00, 'chennai', 'chennai', '2012240014', '1', '2', 'upload_files/candidate_tracker/56205667873_Sundar', NULL, NULL, '2020-12-28', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much exp in digital Marketing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-24 05:07:47', 65, '2020-12-28 04:38:51', 0, NULL, 1),
(2716, 'Pavithra. S', '25', '7358636190', '9176174965', 'Pavithra. Kingdom 1998@gmail.com', '1998-08-28', 22, '2', '2', 'Sekaran. A', 'Security', 10000.00, 1, 12000.00, 15000.00, 'Chennai', 'Medavakkam', '2012240015', '1', '2', 'upload_files/candidate_tracker/52401945564_pavima(2).docx', NULL, NULL, '2020-12-26', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability Issue,will not fit for esales', '8', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-24 05:47:52', 58, '2020-12-26 02:33:29', 0, NULL, 1),
(2717, '', '0', '8778104122', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012250001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-25 07:09:35', 0, NULL, 0, NULL, 1),
(2718, 'Prathap', '6', '9003441920', '', 'prathapautomobile97@gmail.com', '1997-09-03', 23, '2', '2', 'Cinnu', 'Daily Wages', 30000.00, 1, 0.00, 13000.00, 'Salem', 'Chennai', '2012250002', '1', '1', 'upload_files/candidate_tracker/39060382184_prathap resume.doc', NULL, NULL, '2020-12-25', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresh nd new for chennai, no proper pronounciation nd confidence.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-25 11:59:57', 58, '2020-12-25 12:30:59', 0, NULL, 1),
(2719, 'Balaji.V', '6', '9025379903', '8680079667', 'balajiv1528@gmail.com', '2001-04-15', 19, '2', '2', 'A.Vairavan', 'Book printer', 15000.00, 2, 0.00, 15000.00, 'Subramaniya swamy nagar,valasaravakkam,chennai-87', 'Cafs info', '2012250003', '1', '1', 'upload_files/candidate_tracker/6309296529_RESUME BALAJI.pdf', NULL, NULL, '2020-12-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested in sales. Looking for bank openings ', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-25 12:31:18', 1, '2020-12-26 11:02:46', 0, NULL, 1),
(2720, '', '0', '8217718978', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012250004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-25 01:07:28', 0, NULL, 0, NULL, 1),
(2721, '', '0', '8056058705', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012250005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-25 01:34:23', 0, NULL, 0, NULL, 1),
(2722, 'Sabarigirishan.S', '6', '9176300961', '9382151764', 'Sabarigirishan.S', '2000-04-03', 20, '2', '2', 'M selvaraj', 'Car driver', 15000.00, 2, 0.00, 13000.00, 'Valsarawakkam', 'Valsarawakkam', '2012250006', '1', '1', 'upload_files/candidate_tracker/30295357306_SABARIGIRISHAN Resume.docx', NULL, NULL, '2020-12-26', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Student. he ll complete the course in the month of april only', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-25 02:54:18', 58, '2020-12-26 11:55:54', 0, NULL, 1),
(2723, '', '0', '8608067882', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012250007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-25 03:04:25', 0, NULL, 0, NULL, 1),
(2724, 'G Hari prasanth', '6', '7397463566', '9080106096', 'Harigangadharan1@gmail.com', '2000-11-16', 20, '2', '2', 'A Gangadharan', 'driver', 15000.00, 1, 0.00, 12000.00, 'Velachery', 'Cafs info', '2012250008', '1', '1', 'upload_files/candidate_tracker/58728780430_Hari-Resume.pdf', NULL, NULL, '2020-12-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested for sales, Looking for bank openings only\n', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-25 06:35:42', 50, '2020-12-26 12:45:30', 0, NULL, 1),
(2725, '', '0', '7502363246', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012250009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-25 08:10:25', 0, NULL, 0, NULL, 1),
(2726, 'Mareshwaran M', '6', '8098010354', '', 'Mareshynaz@gmail.com', '1997-06-24', 23, '1', '2', 'Murugappan', 'Mechanic (Two Wheeler)', 15000.00, 1, 0.00, 12000.00, 'Do. No. 1262,8th street, burma colony Karaikudi.', 'Guindy race course 3th street, chennai', '2012260001', '', '1', 'upload_files/candidate_tracker/82546545814_MARESH new design1.pdf', NULL, NULL, '2020-12-26', 0, 'P1141', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Core openings,for time being looking for a job', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-26 09:46:58', 1, '2020-12-26 09:53:40', 0, NULL, 1),
(2727, 'vijayakumar.b', '22', '9952034865', '', 'vijaykumar281996@gmail.com', '1996-05-26', 24, '2', '2', 'balakrishna', 'farmer', 10000.00, 2, 0.00, 15000.00, 'chennai', 'ramapuram', '2012260002', '1', '1', 'upload_files/candidate_tracker/40686274848_Vijayakumar B updated resume.pdf', NULL, NULL, '2020-12-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-26 09:57:57', 50, '2020-12-26 03:30:07', 0, NULL, 1),
(2728, 'krishnamoorthy', '22', '8610599834', '9786485563', 'seooptimizer9786@gmail.com', '1997-04-11', 23, '2', '2', 'killiyazha', 'business', 40000.00, 2, 20000.00, 25000.00, 'chennai', 'chennai', '2012260003', '1', '2', 'upload_files/candidate_tracker/80034167995_Krishna- Resume.docx', NULL, NULL, '2020-12-29', 45, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability Issue and  not fit for DM', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-26 10:03:01', 64, '2020-12-29 06:04:56', 0, NULL, 1),
(2729, 'Irfana fathima', '4', '9600174791', '9551345402', 'Irfanafathima0798@gmail.com', '1998-07-04', 22, '2', '2', 'Ameerun begum', 'Home maker', 400000.00, 2, 15000.00, 30000.00, '37/9,washermen street,Chintadripet ,chennai-2', '37/9,washermen street,chintadripet, chennai-2', '2012260004', '1', '2', 'upload_files/candidate_tracker/50793681441_Irfana fathima.U _Entry Level Resume – 01.pdf', NULL, NULL, '2020-12-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'got offer will not join.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-26 10:25:47', 50, '2020-12-28 10:00:58', 0, NULL, 1),
(2730, '', '0', '8870707900', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012260005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-26 10:33:34', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2731, 'Gokul.s', '4', '6379984168', '9894831559', 'gokulspt9@gmail .com', '2000-07-25', 20, '3', '2', 'Ramya', 'BBA', 10000.00, 2, 0.00, 10000.00, 'Namakkal', 'Theenampet', '2012260006', '', '1', 'upload_files/candidate_tracker/69943111391_S.GOKUL resume.docx', NULL, NULL, '2020-12-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not fit for sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-26 10:36:12', 50, '2020-12-26 11:07:37', 0, NULL, 1),
(2732, 'Akashnithish K M', '5', '9600124782', '', 'sksmakash1000@gmail.com', '1997-09-16', 23, '2', '2', 'Murugan V S', 'Site engineer', 60000.00, 1, 0.00, 15000.00, 'SHOLLINGANALLUR', 'SHOLLINGANALLUR', '2012260007', '1', '1', 'upload_files/candidate_tracker/24096895972_my resume.pdf', NULL, NULL, '2020-12-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-26 10:51:51', 64, '2020-12-26 06:02:00', 0, NULL, 1),
(2733, 'kirupa shankar.a', '4', '7550245130', '7358415129', 'kirupashakar652@gmail.com', '2001-06-12', 19, '2', '2', 'anna durai .r', 'salesman', 20000.00, 1, 0.00, 16000.00, 'chimmaya nagar', 'chimmaya nagar', '2012260008', '1', '1', 'upload_files/candidate_tracker/12842947040_kiruba.pdf', NULL, NULL, '2020-12-26', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Student. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 11:20:24', 50, '2020-12-26 11:53:46', 0, NULL, 1),
(2734, 'D.Niresh', '6', '7871357898', '7871708802', 'saranniresh06@gmail.com', '2000-06-16', 20, '2', '2', 'Dhaveethu.K', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Gandhi street,Chinna Porur,Chennai-600116', 'Cafs info', '2012260009', '1', '1', 'upload_files/candidate_tracker/76357521385_RESUME Niresh.pdf', NULL, NULL, '2020-12-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit for sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 11:26:06', 50, '2020-12-26 12:46:54', 0, NULL, 1),
(2735, 'Subashini', '4', '9080275547', '9566088597', 'Subashini51093@gmail.com', '1993-10-05', 27, '2', '1', 'Prasad', 'Baking', 40000.00, 1, 240000.00, 270000.00, 'Arumbakkam', 'Arumbakkam', '2012260010', '1', '2', 'upload_files/candidate_tracker/66148306597_Suba Resume 1.docx', NULL, NULL, '2020-12-26', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no sales experience. but will try', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 11:36:19', 50, '2020-12-26 12:24:00', 0, NULL, 1),
(2736, 'P. Sivasankar', '6', '9791080194', '9884140194', 'P. Sivasanker2001@gmail.com', '2001-03-14', 19, '2', '2', 'K. Panneer Selvam', 'Rice shop', 15000.00, 1, 0.00, 15000.00, 'Velachery Chennai', 'Cafs info', '2012260011', '1', '1', 'upload_files/candidate_tracker/36634433824_subash1.docx', NULL, NULL, '2020-12-26', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'student', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 11:38:40', 50, '2020-12-26 12:43:56', 0, NULL, 1),
(2737, 'Bharathkumar v', '5', '9150684146', '8668009010', 'bharathkumar6096v@gmail.com', '1995-01-28', 25, '2', '2', 'Rathnakumari v', 'RM', 18000.00, 4, 23000.00, 30000.00, 'St.thomas mount', 'St.thomas mount', '2012260012', '1', '2', 'upload_files/candidate_tracker/37547146895_BHARATH RESUME NEW (1)-converted(1).pdf', NULL, NULL, '2020-12-26', 0, '', '3', '8', '2021-01-04', 258000.00, '', '6', '2021-06-15', '1', '21500 ctc, no pf for Rajkumar team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 12:00:17', 7, '2020-12-31 03:43:49', 0, NULL, 1),
(2738, 'r. varadarajan', '22', '9360703029', '', 'varada3029@gmail.com', '1982-12-28', 37, '2', '1', 'rajendraprasath', 'Retired', 40000.00, 1, 60000.00, 60000.00, 'Tiruchirappalli', 'chennai', '2012260013', '1', '2', 'upload_files/candidate_tracker/76361211941_Varad_DM.docx', NULL, NULL, '2020-12-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability issue, Worked into various positions', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-26 12:09:23', 1, '2020-12-26 12:25:52', 0, NULL, 1),
(2739, 'magesh kumar', '4', '9841174857', '9840209035', 'mageshkumar0112@gmail.com', '1985-12-22', 35, '2', '1', 'mageshwari', 'other', 30000.00, 0, 0.00, 35000.00, 'chennai', 'chennai', '2012260014', '1', '2', 'upload_files/candidate_tracker/40655566203_0_0_0_0_mcn9e-lgn3k.pdf', NULL, NULL, '2020-12-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', '10 years in cs, looking for inside sales. exp sal is 4L. age and salary will not match as CRM/esale', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 12:22:48', 1, '2020-12-28 12:16:52', 0, NULL, 1),
(2740, '', '0', '9790479152', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012260015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-26 12:28:34', 0, NULL, 0, NULL, 1),
(2741, 'Deepak. M', '6', '9176616445', '', 'deepakmee1236@gmail.com', '1997-11-29', 23, '2', '2', 'Murali', 'Painter', 150000.00, 1, 15000.00, 18000.00, 'Thiruverkadu', 'Thiruverkadu', '2012260016', '1', '2', 'upload_files/candidate_tracker/15145241551_deepak resume.docx', NULL, NULL, '2020-12-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not ready to go for field sales', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 12:34:49', 58, '2020-12-26 04:37:23', 0, NULL, 1),
(2742, 'shivaraj n', '5', '8970450876', '9535315024', 'kumarshivaraj676@gmail.com', '1996-09-08', 24, '2', '2', 'nagaraju tk bharathi bp', 'salaried', 10000.00, 1, 23000.00, 25000.00, 'vidyapeeta layout', 'vidyapeeta layout', '2012260017', '1', '2', 'upload_files/candidate_tracker/58435869239_SUNIL.docx', NULL, NULL, '2021-02-26', 15, '', '3', '59', '2021-03-01', 300000.00, '', '5', '1970-01-01', '1', 'Selected for sanjeev - Bangalore team 25000 Gross with PF xxamp PT', '5', '2', '4', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-26 12:42:32', 60, '2021-02-27 02:36:42', 0, NULL, 1),
(2743, 'Saravanan', '5', '9840544143', '9791141285', 'sarandhanush15@gmail.com', '1996-01-15', 24, '1', '2', 'T. Balaraman', 'Corrent Not Working', 18000.00, 1, 0.00, 22000.00, 'No 46 RamNagar 8th Street Triplican ch -05', 'Triplicane', '2012260018', '', '1', 'upload_files/candidate_tracker/79200266394_RESUME Saran.docx', NULL, NULL, '2020-12-26', 0, '55618', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Please reschedule\n', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-26 04:25:06', 1, '2020-12-26 04:38:20', 0, NULL, 1),
(2744, 'Sathish Kumar J', '5', '9941947696', '8428852277', 'sathishjsg26@gmail.com', '1999-06-11', 21, '2', '2', 'K.Jayaraman', 'Taylor', 20000.00, 2, 14000.00, 20000.00, '2/116 Munusamy street Ponmar Chengalpattu district', '2/116 Munusamy street Ponmar Chengalpattu district', '2012260019', '3', '2', 'upload_files/candidate_tracker/72823723634_IMG_20201218_102615.docx', NULL, NULL, '2020-12-28', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR RE', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-26 06:15:23', 50, '2020-12-28 11:22:19', 0, NULL, 1),
(2745, '', '0', '6369464736', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012260020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-26 06:37:35', 0, NULL, 0, NULL, 1),
(2746, 'kayalvizhi m', '22', '9094746596', '', 'connect2kayal@gmail.com', '1989-01-07', 31, '2', '2', 'mathivana g', 'nill', 35000.00, 2, 15500.00, 20000.00, 'chidambaram', 'chennai', '2012260021', '1', '2', 'upload_files/candidate_tracker/36794219617_kayal-resume.doc', NULL, NULL, '2020-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable much into IT positions only few exp in DM', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-26 06:46:54', 64, '2020-12-28 04:46:50', 0, NULL, 1),
(2747, '', '0', '9789821108', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012260022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-26 07:22:30', 0, NULL, 0, NULL, 1),
(2748, '', '0', '7401551966', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012270001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-27 08:10:59', 0, NULL, 0, NULL, 1),
(2749, '', '0', '8428815794', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012270002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-27 10:36:35', 0, NULL, 0, NULL, 1),
(2750, '', '0', '8608501332', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 09:56:03', 0, NULL, 0, NULL, 1),
(2751, 'VASANTH V', '6', '9629147628', '9841611030', 'vstar8878@gmail.com', '1998-06-04', 22, '1', '2', 'VIJAYAKUMAR M', 'former', 10000.00, 1, 0.00, 15000.00, 'Thiruvannmalai', 'Porur,chennai', '2012280002', '', '1', 'upload_files/candidate_tracker/42869466316_TapScanner 12-28-2020-11.52.pdf', NULL, NULL, '2020-12-28', 0, 'Jobs', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR RE PROFILE. LOOK LIKE PULLINGO', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-28 11:15:54', 50, '2020-12-28 12:21:11', 0, NULL, 1),
(2752, 'dinesh babu', '22', '9840259704', '9003026725', 'dineshbabuone366@gmail.com', '2005-12-28', 15, '2', '2', 'k venkatesan', 'seo analyst', 50000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2012280003', '1', '2', 'upload_files/candidate_tracker/54676940663_Dinesh Babu Resume.docx', NULL, NULL, '2020-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much exp in digital Marketing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-28 11:41:29', 7, '2020-12-30 12:02:38', 0, NULL, 1),
(2753, 'D.mohanraj', '4', '9840483880', '6379822565', 'Mohanrajsigamani@gmail.com', '2001-05-30', 19, '1', '2', 'E.deivasigamani', 'Business', 15000.00, 0, 0.00, 15000.00, 'No 5/7 Anjaneyar koil street west saidapet', 'Chennai', '2012280004', '', '1', 'upload_files/candidate_tracker/11287989003_resume.pdf', NULL, NULL, '2020-12-28', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-28 12:22:43', 1, '2020-12-28 12:53:00', 0, NULL, 1),
(2754, 'Akash', '6', '6383099526', '9345465831', 'd.akash2798@gmail', '1998-05-27', 22, '2', '2', 'Durai raj', 'Business', 70000.00, 1, 0.00, 18.00, 'Maduravoyal', 'Maduravoyal', '2012280005', '1', '1', 'upload_files/candidate_tracker/38794250947_d.Akash_resume (2).pdf', NULL, NULL, '2020-12-29', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'left before interview', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-28 12:30:53', 50, '2020-12-29 12:17:05', 0, NULL, 1),
(2755, 'r.manojkumar', '4', '7299151268', '9094971940', 'manoj.mk2312@gmail.com', '1994-12-23', 26, '2', '2', 'jaya', 'housewife', 40000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2012280006', '15', '1', 'upload_files/candidate_tracker/26559749725_manoj resume 2.pdf', NULL, NULL, '2020-12-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain and time being looking for job.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-28 12:57:02', 1, '2020-12-29 01:30:46', 0, NULL, 1),
(2756, '', '0', '9965451878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 01:13:17', 0, NULL, 0, NULL, 1),
(2757, '', '0', '6381327822', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 03:19:14', 0, NULL, 0, NULL, 1),
(2758, '', '0', '8122838385', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 03:27:35', 0, NULL, 0, NULL, 1),
(2759, '', '0', '9940587620', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 04:33:01', 0, NULL, 0, NULL, 1),
(2760, 'sarath surendran', '22', '7904301984', '', 'sarathsurendran642@gmail.com', '1998-02-08', 22, '2', '2', 'surendra kumar', 'freelancing', 30000.00, 1, 15000.00, 20000.00, 'chennai', 'Chennai', '2012280011', '1', '2', 'upload_files/candidate_tracker/37464349601_Sarath resume DM EXP.pdf', NULL, NULL, '2020-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much exp in DM', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-28 05:08:43', 64, '2020-12-29 04:46:58', 0, NULL, 1),
(2761, 'Muhammad Waseem E', '4', '8610380096', '8940148202', 'boomwaseem26@gmail.com', '1998-06-07', 22, '2', '2', 'Ahmed basha', 'Business', 50000.00, 0, 0.00, 12000.00, 'Periyament Chennai', 'Vellore', '2012280012', '1', '1', 'upload_files/candidate_tracker/4565032221_RESUME (3) (1) (1) (1).docx', NULL, NULL, '2020-12-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2020-12-28 05:37:06', 50, '2020-12-30 04:54:31', 0, NULL, 1),
(2762, 'Soundar', '13', '6383552842', '7530061256', 'ragulmca2013@gmail.com', '1991-04-16', 29, '2', '2', 'Santhi', 'Software Developer', 12000.00, 0, 10000.00, 16000.00, 'Namakkal', 'Namakkal', '2012280013', '15', '2', 'upload_files/candidate_tracker/46334172156_SOUNDAR_RESUME.docx', NULL, NULL, '2020-12-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-28 05:41:16', 50, '2020-12-30 04:54:47', 0, NULL, 1),
(2763, 'I Farhath Matheen', '6', '7448377204', '', 'farhathmatheen91@gmail.com', '1991-09-19', 29, '2', '1', 'Syed Iqbal', 'Clerk', 12000.00, 2, 0.00, 15000.00, 'Kodungaiyur', 'Kodungaiyur', '2012280014', '14', '1', 'upload_files/candidate_tracker/14221027353_RESUME.docx', NULL, NULL, '2020-12-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, will not suite for callind, and long distance too. 2hrs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-28 06:31:25', 50, '2020-12-29 12:21:40', 0, NULL, 1),
(2764, '', '0', '9176926258', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 06:35:27', 0, NULL, 0, NULL, 1),
(2765, 's.dilli avinash', '6', '7299707122', '8925434981', 'dilli1999avinash@gmail.com', '1999-12-26', 21, '2', '2', 't.n.sathiyanarayanan', 'supervisor', 13000.00, 1, 0.00, 20000.00, 'Chennai', 'chennai', '2012280016', '1', '1', 'upload_files/candidate_tracker/83537150673_AVINASH RESUME.pdf', NULL, NULL, '2020-12-29', 0, '', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'He is not willing to work weekends including saturday..', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-28 07:13:15', 1, '2020-12-29 11:36:38', 0, NULL, 1),
(2766, '', '0', '8870079302', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 07:59:24', 0, NULL, 0, NULL, 1),
(2767, 'Abdul ravoof', '5', '8870820579', '', 'aravoof208@gmail.com', '1997-02-09', 23, '2', '2', 'Thurapsha', 'Business', 20000.00, 3, 0.00, 18000.00, 'Tenkasi', 'Tenkasi', '2012280018', '1', '1', 'upload_files/candidate_tracker/80333412359_My_Resume 123.docx', NULL, NULL, '2020-12-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, fresher will  not suite for RE.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-28 08:48:12', 1, '2020-12-28 09:07:39', 0, NULL, 1),
(2768, 'prasanth', '6', '9551721233', '', 'kprasanth685@gmail.com', '1999-07-26', 21, '2', '2', 'Krishna', 'Carpenter', 15000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2012290001', '1', '1', 'upload_files/candidate_tracker/92953587525_SamplePDF.pdf', NULL, NULL, '2020-12-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, Will Not Suite For Calling And Sales. Not Speaking Up And Language Is Not Good.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-29 10:11:08', 7, '2020-12-29 02:29:18', 0, NULL, 1),
(2769, 'Manikandan v', '6', '9840514701', '9551721233', 'maniappu786@gmail.com', '1999-11-28', 21, '2', '2', 'Thenmozhi', 'Kotak Mahindra', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2012290002', '1', '1', 'upload_files/candidate_tracker/27291656825_Manikandan resume.docx', NULL, NULL, '2020-12-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up,  will not suite for any profile', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-29 10:15:29', 1, '2020-12-29 10:22:55', 0, NULL, 1),
(2770, 'Sangeetha', '13', '7448354838', '', 'Sangithaselvaraj@gmail.com', '1996-09-06', 24, '3', '2', 'P.selvaraj', 'Helper', 10000.00, 0, 12000.00, 20000.00, 'Trichy', 'Trichy', '2012290003', '', '2', 'upload_files/candidate_tracker/87854023873_Sangeetha _Resume.pdf', NULL, NULL, '2020-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 10:19:16', 1, '2020-12-29 10:23:28', 0, NULL, 1),
(2771, '', '0', '9952977409', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 10:28:46', 0, NULL, 0, NULL, 1),
(2772, '', '0', '7299282616', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 10:33:34', 0, NULL, 0, NULL, 1),
(2773, 's dinesh', '5', '9840807479', '', 'dineshkarthi4618dg@gmail.com', '1994-04-20', 26, '2', '2', 'none', 'none', 23000.00, 0, 23000.00, 25000.00, 'chennai', 'chennai', '2012290006', '3', '2', 'upload_files/candidate_tracker/87324978002_din resume bb.pdf', NULL, NULL, '2021-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 10:35:32', 1, '2021-01-11 09:22:52', 0, NULL, 1),
(2774, 'rajesh r', '5', '8667303913', '9940587620', 'rajeshsai02524@gmail.com', '1997-12-25', 23, '2', '2', 'n ragu', 'security', 10000.00, 1, 0.00, 20000.00, 'k k nagar', 'k k nagar', '2012290007', '1', '1', 'upload_files/candidate_tracker/32344338753_Rajesh Resume.pdf', NULL, NULL, '2020-12-29', 0, '', '9', '7', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate looking for crm or esales kindly check with particular managere thanks ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-29 10:41:01', 8, '2020-12-29 01:43:35', 0, NULL, 1),
(2775, 'maria nayaga thanaraj', '14', '7200030379', '7904298327', 'thanaraj.maria53@gmail.com', '1994-10-23', 26, '2', '2', 'maria sagaya pushparaj', 'teacher', 300000.00, 3, 380000.00, 450000.00, 'gingee', 'gingee', '2012290008', '15', '2', 'upload_files/candidate_tracker/12892560286_MariaUpdateResume(12102020).pdf', NULL, NULL, '2021-01-02', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '2', '2', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 11:49:32', 60, '2021-01-04 10:24:07', 0, NULL, 1),
(2776, 'naveen Kumar', '6', '9566145880', '', 'naveenspeed365@gmail.com', '1998-10-23', 22, '2', '2', 'dhatshana murthy', 'working in a market', 25000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2012290009', '1', '1', 'upload_files/candidate_tracker/70842014671_Copy-naveen.docx', NULL, NULL, '2020-12-29', 0, '', '8', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending the interview', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-29 12:16:03', 50, '2020-12-29 12:47:49', 0, NULL, 1),
(2777, 'Naveen Kumar JP', '5', '9597043251', '8056667513', 'jpnaveen619@gmail.com', '1997-01-06', 23, '2', '2', 'J palani', 'Contract', 900000.00, 1, 400000.00, 400000.00, 'Tiruppur', 'Chennai', '2012290010', '1', '2', 'upload_files/candidate_tracker/26429149295_1609143734491Resume_Naveen.pdf', NULL, NULL, '2020-12-31', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-29 12:18:13', 1, '2020-12-29 12:23:06', 0, NULL, 1),
(2778, '', '0', '8778277408', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 12:55:17', 0, NULL, 0, NULL, 1),
(2779, 'vignesh', '14', '9698885142', '', 'Vigneshusasv@gmail.com', '1996-11-28', 24, '2', '2', 'uthirapathy', 'musician', 420000.00, 2, 420000.00, 550000.00, 'Nagapattinam', 'Nagapattinam', '2012290012', '15', '2', 'upload_files/candidate_tracker/50114948470_vigneshu.pdf', NULL, NULL, '2020-12-31', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 12:55:46', 1, '2020-12-29 12:58:30', 0, NULL, 1),
(2780, '', '0', '7010656525', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 01:06:53', 0, NULL, 0, NULL, 1),
(2781, '', '0', '8508813213', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 01:07:07', 0, NULL, 0, NULL, 1),
(2782, 'Brindha', '14', '8526180339', '7019432750', 'brindhaayyamperumal@gmail.com', '1994-06-01', 26, '2', '1', 'Jayakumar', 'IT', 40000.00, 1, 0.00, 450000.00, 'Chennai', 'Chennai', '2012290015', '15', '2', 'upload_files/candidate_tracker/50902073524_Brindha.A_CV.pdf', NULL, NULL, '2021-01-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 01:17:38', 60, '2021-01-04 10:24:20', 0, NULL, 1),
(2783, 'Gladwin R', '5', '9940673236', '', 'gladwin.sangeetharajan@gmail.com', '1993-06-22', 27, '2', '2', 'rajamani', 'junior engineer - retired', 30000.00, 0, 0.00, 25000.00, 'perungudi', 'chennai', '2012290016', '1', '2', 'upload_files/candidate_tracker/52615261636_GLADWIN.docx', NULL, NULL, '2020-12-30', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not join. hold more than 1month.', '5', '2', '', '1', '1', '', '2', '2021-01-20', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-29 01:29:17', 8, '2020-12-30 04:36:27', 0, NULL, 1),
(2784, 'sam sornaraj n j', '23', '9361748416', '9840354729', 'njsam3010@gmail.com', '1997-10-30', 23, '2', '2', 'n.s.joseph-father', 'driver', 30000.00, 1, 0.00, 264000.00, 'chennai', 'chennai', '2012290017', '15', '2', 'upload_files/candidate_tracker/98763467176_Resume (1).pdf', NULL, NULL, '2021-01-11', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not Completed.', '2', '2', '', '1', '1', '', '2', '2021-01-12', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 02:26:44', 60, '2021-01-11 03:17:27', 0, NULL, 1),
(2785, 'Kiruthika.K', '14', '8220773969', '', 'kiruthikaanu95@gmail.com', '1995-01-04', 25, '2', '2', 'Karunakaran.D', 'VAO(Rtd)', 20000.00, 1, 11000.00, 30000.00, 'Gudiyatham, Vellore district', 'Gudiyatham, Vellore district', '2012290018', '1', '2', 'upload_files/candidate_tracker/89837547586_Kiruthika_Updated_Resume-1.docx', NULL, NULL, '2020-12-30', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-29 02:53:31', 50, '2020-12-30 04:55:22', 0, NULL, 1),
(2786, 'gowtham', '14', '9791373631', '9788940834', 'gwtm.srsh@gmail.com', '1994-04-25', 26, '2', '2', 'sureshkumar', 'android developer', 15000.00, 1, 30000.00, 45000.00, 'chennai', 'chenni', '2012290019', '15', '2', 'upload_files/candidate_tracker/54651401126_Gowtham Resume updated_10-10-20.docx', NULL, NULL, '2020-12-29', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 03:10:17', 1, '2020-12-29 03:14:39', 0, NULL, 1),
(2787, 'Sathya', '3', '8531913058', '', 'sathyasekaran1201@gmail.com', '1994-05-10', 26, '2', '2', 'Sekaran', 'Farmer', 12000.00, 2, 20000.00, 35000.00, 'Ambalavananendal', 'Chennai', '2012290020', '15', '2', 'upload_files/candidate_tracker/25184395755_sathya_Resume.pdf', NULL, NULL, '2020-12-30', 10, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 03:26:01', 50, '2020-12-30 04:55:39', 0, NULL, 1),
(2788, 'Sathish Kumar', '14', '8807311149', '8610737059', 'sathishkumark748@gmail.com', '1994-10-18', 26, '2', '2', 'Kanagaraj', 'Retired', 400000.00, 0, 400000.00, 800000.00, 'Chennai', 'Chennai', '2012290021', '15', '2', 'upload_files/candidate_tracker/36694542316_Sathish Kumar -Android Developer-3.pdf', NULL, NULL, '2020-12-30', 60, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 03:31:56', 50, '2020-12-30 04:55:54', 0, NULL, 1),
(2789, 'saravanan', '14', '9962595450', '', 'samtoupm@gmail.com', '1997-10-29', 23, '2', '2', 'nirmala', 'house wife', 30000.00, 2, 15000.00, 20000.00, 'chennai', 'chennai', '2012290022', '1', '2', 'upload_files/candidate_tracker/10947901340_SARAVANAN R.pdf', NULL, NULL, '2021-01-09', 10, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2020-12-29 03:56:20', 1, '2020-12-29 04:19:41', 0, NULL, 1),
(2790, '', '0', '9742959419', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 04:03:11', 0, NULL, 0, NULL, 1),
(2791, 'Saravanabalan S R', '22', '7904069982', '9043747276', 'saravanakarthi4321@gmail.com', '1999-01-22', 21, '4', '2', 'Ramanathan', 'Daily labour', 15000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2012290024', '', '1', 'upload_files/candidate_tracker/93331129143_saravanacv.pdf', NULL, NULL, '2020-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 04:18:33', 1, '2020-12-29 04:22:59', 0, NULL, 1),
(2792, '', '0', '9944925087', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 05:03:52', 0, NULL, 0, NULL, 1),
(2793, 'ovaiz', '5', '7708301724', '', 'ovaiz786@gmail.com', '1992-12-08', 28, '2', '2', 'zubair', 'retired', 10000.00, 3, 25000.00, 30000.00, 'vellore', 'chennai', '2012290026', '1', '2', 'upload_files/candidate_tracker/79286416692_CV ( Assistant Operation Manager ) (1).pdf', NULL, NULL, '2020-12-30', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suit for our profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-29 05:05:13', 8, '2020-12-30 04:38:10', 0, NULL, 1),
(2794, 'Lokesh.v', '4', '7358420663', '7708975603', 'lokeshleo838@gmail.com', '1998-08-14', 22, '2', '2', 'M.vetrivel', 'Retired Chennai port trust', 12000.00, 1, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2012290027', '1', '1', 'upload_files/candidate_tracker/83073937427_LOKESH RESUME.pdf', NULL, NULL, '2020-12-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'time being looking for job. will join in his father office soon.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-29 07:55:56', 50, '2020-12-31 03:32:03', 0, NULL, 1),
(2795, 'dhanushya s', '6', '8925663970', '', 'dhanu3025@gmail.com', '1999-09-25', 21, '2', '2', 'senthilnathan', 'carpenter', 100000.00, 1, 12000.00, 15000.00, 'kodungaiyur', 'kodungaiyur', '2012290028', '1', '2', 'upload_files/candidate_tracker/74973694416_Dhanu CV.pdf', NULL, NULL, '2021-01-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no sales exp. will not suite for calling. prefers admin job. will not sustain.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-29 10:32:33', 1, '2021-01-04 12:21:24', 0, NULL, 1),
(2796, 'm pavithra', '20', '8939626563', '9159189116', 'pavisha419@gmail.com', '1995-07-04', 25, '2', '1', 'sathish babu', 'supervisor', 22000.00, 0, 0.00, 17000.00, 'ambattur', 'ambattur', '2012300001', '2', '2', 'upload_files/candidate_tracker/24218377649_pavithra resume.pdf', NULL, NULL, '2020-12-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for esale', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-30 08:57:12', 7, '2020-12-30 06:37:13', 0, NULL, 1),
(2797, '', '0', '8328007370', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012300002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-30 11:32:32', 0, NULL, 0, NULL, 1),
(2798, 'Tamil Selvam S', '6', '7358656450', '9710267229', 'tamil8404@gmail.com', '1999-01-11', 21, '1', '2', 'Sekar S', 'Auto driver', 15000.00, 1, 0.00, 15000.00, 'No 52/35 5th Street Ezhil Nagar kodungaiyur', 'No 52/35 5th Street Ezhil Nagar Kodungaiyur', '2012300003', '', '1', 'upload_files/candidate_tracker/35213073636_2 Best Resum format.docx', NULL, NULL, '2020-12-30', 0, 'P1065', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much communicative, will not fit for sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-30 11:42:36', 50, '2020-12-30 04:56:52', 0, NULL, 1),
(2799, 'prashanth c', '5', '8056652364', '6382568640', 'ckprashanth11404@gmail.com', '1996-07-25', 24, '2', '2', 'chandra sekar', 'centring', 25000.00, 0, 12000.00, 18000.00, 'erukkancherry', 'erukkancherry', '2012300004', '1', '2', 'upload_files/candidate_tracker/64899013946_prashanth resume.pdf', NULL, NULL, '2020-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Field Sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-30 02:15:47', 50, '2020-12-30 03:18:12', 0, NULL, 1),
(2800, 'RAJESHKANNAN', '5', '9176160615', '8526784155', 'klu.rajesh90@gmail.com', '1990-03-08', 30, '2', '1', 'Gurusamy', 'Former', 72000.00, 0, 20500.00, 25000.00, 'Medavakkam', 'Medavakkam', '2012300005', '1', '2', 'upload_files/candidate_tracker/10169116944_RAJESHKANNAN_5YEARS_EXP-converted.pdf', NULL, NULL, '2020-12-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for sales, no sales exp too.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-30 02:37:55', 50, '2020-12-31 03:57:42', 0, NULL, 1),
(2801, '', '0', '9092382619', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012300006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-30 02:46:30', 0, NULL, 0, NULL, 1),
(2802, 'Nandhagopal V', '5', '9840571182', '', 'vngnandha03@gmail.com', '1993-08-03', 27, '1', '2', 'Vijayakumar V', 'Operater', 20000.00, 0, 280000.00, 350000.00, 'Chennai Kodungaiyur', 'Chennai Kodungaiyur', '2012300007', '', '2', 'upload_files/candidate_tracker/14392744810_Nandha Resume.doc', NULL, NULL, '2020-12-30', 0, '55593', '3', '8', '2021-01-04', 300000.00, '', '3', '2021-01-31', '1', '25k as ctc and for lokesh team.', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-30 03:55:04', 7, '2021-01-02 05:26:51', 0, NULL, 1),
(2803, 'padma priya', '6', '9500067856', '', 'paviramesh0608@gmail.com', '1998-03-13', 22, '2', '2', 'ramesh', 'business', 20000.00, 1, 15000.00, 18000.00, 'broadway', 'broadway', '2012300008', '1', '2', 'upload_files/candidate_tracker/59713068425_RESUME PAVI2.docx', NULL, NULL, '2021-01-04', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sales Exp. . Prefers Admin Job. Will Not Sustain. quit her job bcoz of shift timing and Long distance. will not adapt  easily and will not work in sales pressure. exp 15k+', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-30 04:28:34', 50, '2021-01-04 12:14:38', 0, NULL, 1),
(2804, 'Sivaraman C', '13', '8754060365', '', 'Shivasiva188@gmail.com', '1995-05-31', 25, '2', '2', 'Chinnadurai', 'Weaver', 25000.00, 2, 15000.00, 18000.00, 'Cuddalore', 'Cuddalore', '2012300009', '1', '2', 'upload_files/candidate_tracker/58858985260_sivaraman_resume.pdf', NULL, NULL, '2021-01-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-30 06:00:39', 1, '2020-12-30 06:50:41', 0, NULL, 1),
(2805, 'Nithiya bharathi R', '13', '8682075534', '9382113156', 'nithyaramesh1997@gmail.com', '1997-07-16', 23, '2', '2', 'Ramesh kumar K', 'Business', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2012300010', '1', '1', 'upload_files/candidate_tracker/24040644345_Nithya Resume.pdf', NULL, NULL, '2021-01-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-30 10:49:06', 7, '2021-01-05 04:38:16', 0, NULL, 1),
(2806, 'sarfraz nawaz', '14', '9962535551', '', 'informsarfu@gmail.com', '1998-09-10', 22, '2', '2', 'shahnawaz', 'business', 200000.00, 3, 0.00, 20000.00, 'chennai', 'chennai', '2012300011', '1', '1', 'upload_files/candidate_tracker/71707185215_updated resume.pdf', NULL, NULL, '2021-01-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-30 11:23:18', 60, '2021-01-04 10:25:09', 0, NULL, 1),
(2807, 'VISHNU S', '6', '9789278711', '', 'vishnuvish1195@gmail.com', '1995-11-11', 25, '1', '2', 'Sivaprakasam B', 'Bussiness', 30000.00, 1, 11000.00, 13.00, 'Vadapalani', 'Vadapalani', '2012310001', '', '2', 'upload_files/candidate_tracker/69569341225_vishnu resume new.doc', NULL, NULL, '2020-12-31', 0, 'P1165', '3', '8', '2021-03-08', 156000.00, '', '4', '2021-04-15', '1', '13k ctc and  for ramesh team. first he was selected for guru team but not joined. Refereed by tamil mani.', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-31 10:59:04', 7, '2021-03-04 03:52:33', 0, NULL, 1),
(2808, 'Tamilmani s', '6', '9095203429', '9092909521', 'Strtamil39@gmail.com', '1994-06-30', 26, '1', '2', 'Tamilarasi s', 'Bussiness', 30000.00, 3, 11000.00, 15000.00, 'Nagapattinam', 'Vadapalani', '2012310002', '', '2', 'upload_files/candidate_tracker/45719522387_tamil (1).doc', NULL, NULL, '2020-12-31', 0, 'P1165', '3', '7', '2021-01-04', 176844.00, '', '4', '2022-07-01', '1', 'CTC - 176844 TH - 14000\nGross-14737', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-31 11:00:29', 7, '2021-01-02 04:51:54', 0, NULL, 1),
(2809, '', '0', '9025199089', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012310003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-31 11:10:12', 0, NULL, 0, NULL, 1),
(2810, '', '0', '9080849637', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012310004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-31 11:32:53', 0, NULL, 0, NULL, 1),
(2811, 'Ruby', '4', '7305751986', '', 'Rubyjanu25@gmail.com', '1996-10-20', 24, '2', '2', 'Mothilal.d', 'Welder', 15000.00, 2, 12000.00, 15000.00, 'Thiruvittiyur', 'Thiruvottiyur', '2012310005', '1', '2', 'upload_files/candidate_tracker/5797249445_Ruby Cv.pdf', NULL, NULL, '2020-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ok for Service Agreement ,will not sustain for a long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-31 11:43:23', 8, '2020-12-31 03:34:17', 0, NULL, 1),
(2812, '', '0', '8883282968', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012310006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-31 11:46:20', 0, NULL, 0, NULL, 1),
(2813, '', '0', '9994650518', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012310007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-31 12:29:18', 0, NULL, 0, NULL, 1),
(2814, 'G.Bharathraj', '6', '9600686729', '9600680096', 'bharathji1999@Gmail.com', '1998-01-10', 22, '2', '2', 'ganesan ramuthaye', 'chennai', 10000.00, 0, 12000.00, 13000.00, 'thirunelveli', 'chromepet', '2012310008', '1', '2', 'upload_files/candidate_tracker/40216236416_bharathrajkdconverted.pdf', NULL, NULL, '2021-01-02', 0, '', '3', '7', '2021-01-04', 146400.00, '', '3', '2021-01-07', '1', 'Shortlisted for Thiyagu Team CTC 146400 , Gross 12200 ,TH 11590', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-31 12:49:24', 50, '2021-01-04 12:34:03', 0, NULL, 1),
(2815, 'ajithkumar', '4', '9600162296', '9940084833', 'ajithkumar.1102995@gmail.com', '1995-09-29', 25, '2', '2', 'd.chithiraipandi', 'nothing', 38000.00, 3, 14000.00, 20000.00, 'ennore', 'ennore', '2012310009', '1', '2', 'upload_files/candidate_tracker/97279092429_0_AJITH RESUME.docx', NULL, NULL, '2021-01-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Insurance Sales\n', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-31 03:37:41', 1, '2020-12-31 04:04:42', 0, NULL, 1),
(2816, 'Ramajeyam', '20', '6383857946', '8012386956', 'rjsmart24@gmail.com', '1998-12-24', 22, '2', '2', 'Chithrai pandi', 'Kooli', 20000.00, 3, 0.00, 14000.00, 'Ennore', 'Ennore', '2012310010', '1', '1', 'upload_files/candidate_tracker/54083594276_CRT RESUME.docx', NULL, NULL, '2021-01-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No fit for Insurance Sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-31 03:38:58', 50, '2021-01-02 10:16:23', 0, NULL, 1),
(2817, '', '0', '9585932305', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012310011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-31 03:40:47', 0, NULL, 0, NULL, 1),
(2818, '', '0', '9952117233', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012310012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-31 08:48:38', 0, NULL, 0, NULL, 1),
(2819, '', '0', '8144663995', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101010001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-01 06:02:26', 0, NULL, 0, NULL, 1),
(2820, '', '0', '9629412398', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101010002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-01 08:08:37', 0, NULL, 0, NULL, 1),
(2821, 'Tamilarasi', '4', '8939019270', '8939146155', 'Adaikkalammagesh950@gmail.com', '1993-10-31', 27, '2', '1', 'Magesh', 'Construction worker', 35000.00, 0, 0.00, 15000.00, 'Chennai', 'Redhills', '2101010003', '14', '1', 'upload_files/candidate_tracker/44969089417_resumeMon-Oct--1-08_34_05-2018.doc', NULL, NULL, '2021-01-02', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Not relevant at all', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-01 09:15:40', 1, '2021-01-02 12:19:30', 0, NULL, 1),
(2822, '', '0', '8056160401', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101020001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-02 09:16:24', 0, NULL, 0, NULL, 1),
(2823, 'veera chinnu', '13', '6383370939', '', 'veerachinnu36@gmail.com', '1988-04-12', 32, '3', '2', 'chinnu', 'former', 20000.00, 2, 0.00, 15000.00, 'madurai', 'kodambakkam', '2101020002', '', '2', 'upload_files/candidate_tracker/10091035189_resume.doc.pdf', NULL, NULL, '2021-01-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-02 09:57:05', 1, '2021-01-02 10:14:51', 0, NULL, 1),
(2824, '', '0', '9886190281', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101020003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-02 10:39:37', 0, NULL, 0, NULL, 1),
(2825, 'Sumaiya.A', '4', '9344687467', '', 'sumaiya10dec1999@gmail.com', '1999-12-10', 21, '2', '2', 'R.m.Abdullah', 'Labour', 10000.00, 1, 0.00, 10000.00, 'Tambaram', 'Tambaram sanitorium', '2101020004', '1', '1', 'upload_files/candidate_tracker/94692959855_Sumaiya.A.pdf', NULL, NULL, '2021-01-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-02 10:43:07', 1, '2021-01-02 10:50:01', 0, NULL, 1),
(2826, 'A.NANCY SWATHY', '13', '8870566923', '', 'nanswathy@gmail.com', '1997-10-10', 23, '2', '2', 'S.ASKAR JEBA KUMAR', 'account', 40000.00, 1, 15000.00, 25000.00, 'chennai', 'chennai', '2101020005', '1', '2', 'upload_files/candidate_tracker/23126176905_NancySwathy.pdf', NULL, NULL, '2021-01-02', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability issue', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-02 11:58:16', 50, '2021-01-02 12:49:51', 0, NULL, 1),
(2827, 'Riyazudeen', '23', '9566136057', '', 'Riyazudeenriyaz@gmail.com', '1994-12-27', 26, '2', '2', 'Mainudeen', 'Office assistent', 15000.00, 1, 12000.00, 15000.00, 'perambur , Chennai', 'Perambur , Chennai', '2101020006', '1', '2', 'upload_files/candidate_tracker/73807186273_resume-updated-web_03-Feb-20_01_35_50.docx', NULL, NULL, '2021-01-06', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Satisfied.', '2', '2', '', '1', '1', '', '2', '2021-01-07', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-02 12:20:56', 50, '2021-01-06 03:13:00', 0, NULL, 1),
(2828, 'M Vignesh Kumar', '5', '9150575211', '9841467243', 'vickymadhi94@gmail.com', '1994-05-16', 26, '2', '2', 'Parents : father name : k Mathiyalagan', 'Posts office retired', 20000.00, 3, 10000.00, 15000.00, 'Chennai', 'Villivakkam', '2101020007', '3', '2', 'upload_files/candidate_tracker/38622993256_CV_2020-12-17-085355.pdf', NULL, NULL, '2021-01-04', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very slow and after his degree 4yr he was Searching job.  will  not  sustain.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-02 02:56:41', 8, '2021-01-04 03:07:07', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2829, '', '0', '7299335571', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101020008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-02 04:08:45', 0, NULL, 0, NULL, 1),
(2830, 'Dilliganesh k', '13', '8825899092', '8148909036', 'dilliganeshk98@gmail.com', '1998-10-14', 22, '2', '2', 'Krishnamoorthy R', 'Labour', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2101020009', '1', '1', 'upload_files/candidate_tracker/45098193309_MY CV-1 new-1.docx', NULL, NULL, '2021-01-07', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'He donxquott know the basics.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-02 05:18:31', 1, '2021-01-02 05:24:57', 0, NULL, 1),
(2831, 'sreeram', '23', '8124407091', '9789294496', 'sreeramdurairajan88@gmail.com', '1995-09-02', 25, '2', '2', 'kavitha d', 'house wife', 10000.00, 1, 0.00, 20000.00, 'thakkolam', 'poonamalle', '2101020010', '1', '1', 'upload_files/candidate_tracker/96810057872_Resume.docx', NULL, NULL, '2021-01-04', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Looking more Experienced.', '2', '2', '0', '1', '1', '0', '2', '2021-01-06', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-02 06:10:38', 1, '2021-01-03 01:06:14', 0, NULL, 1),
(2832, '', '0', '7358268031', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101020011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-02 06:43:45', 0, NULL, 0, NULL, 1),
(2833, '', '0', '9940586897', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101020012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-02 07:01:47', 0, NULL, 0, NULL, 1),
(2834, '', '0', '9360654580', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101020013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-02 10:36:26', 0, NULL, 0, NULL, 1),
(2835, 'S Hussain Meeran', '23', '8148752872', '', 'hussainmeeran05@gmail.com', '1995-02-05', 25, '2', '2', 'S Sulthan Maideen', 'Farmer', 7000.00, 2, 1.80, 3.20, 'Theni', 'Theni', '2101020014', '1', '2', 'upload_files/candidate_tracker/62417533967_Hussain Meeran1.docx', NULL, NULL, '2021-01-04', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much exp in UI UX, only into basics of HTML CSS,No Exp in Adobe tools', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-02 11:03:12', 50, '2021-01-04 12:01:52', 0, NULL, 1),
(2836, 'R. Neethikumar', '5', '7904624501', '9962587555', 'neethikumar38@gmail.com', '1992-07-05', 28, '3', '2', 'R v RAMAKRISHNAN', 'Self employed', 10000.00, 0, 0.00, 30000.00, 'Mogappair East', 'Mogappair East', '2101020015', '', '2', 'upload_files/candidate_tracker/98196350142_Neethi Update Resume 2.docx', NULL, NULL, '2021-01-06', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will  not suite for our profile, will not sustain.  switched company for salary', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-02 11:21:33', 7, '2021-01-06 11:09:46', 0, NULL, 1),
(2837, 'Yogesh', '23', '9182270883', '', 'yogi12560@gmail.com', '1996-10-18', 24, '2', '2', 'Mahalaxmi', 'Housewife', 15000.00, 1, 10000.00, 12000.00, 'Palamaner', 'Chennai', '2101030001', '1', '2', 'upload_files/candidate_tracker/50699122682_yogesh_resume.pdf', NULL, NULL, '2021-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Exp in Adobe Tools, Not much exp into UI UX, will not sustain', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-03 06:57:56', 50, '2021-01-04 10:14:33', 0, NULL, 1),
(2838, 'anusha subramaniam', '23', '7200863546', '', 'anushacreativehi5@gmail.com', '1987-02-05', 33, '2', '2', 'r.subramaniam', 'rtd.gov officer', 40.00, 1, 20.00, 25.00, 'nungambakkam', 'madavakkam', '2101030002', '1', '2', 'upload_files/candidate_tracker/10409428001_Anusha Subramaniam Resume.doc', NULL, NULL, '2021-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-03 11:06:41', 1, '2021-01-03 11:19:40', 0, NULL, 1),
(2839, 'Manju. V', '4', '8667046821', '', 'lamanju282@gmail.com', '2000-03-23', 20, '1', '2', 'Venkatesan, Devi', 'Carpenter', 10000.00, 1, 0.00, 12000.00, '46/2 Ragava street, choolai, chennai-112', '46/2 Ragava street, choolai, chennai-112', '2101040001', '', '1', 'upload_files/candidate_tracker/89727769390_manju new.doc', NULL, NULL, '2021-01-04', 0, 'P1069', '5', '67', NULL, 0.00, '', '0', NULL, '1', 'aS THE CANDIDATE HAS 3 MONTHS EXPERIENCE IN SERVICE RELATED COMPANY. NOT APT FOR TELESALES.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-04 10:09:48', 1, '2021-01-04 10:19:15', 0, NULL, 1),
(2840, 'R Mohanraj', '23', '8056254846', '', 'mohannbtechit12@gmail.com', '1995-07-04', 25, '2', '2', 'R Rajendran', 'Driver', 10000.00, 2, 18000.00, 25000.00, 'Chennai', 'Chennai', '2101040002', '1', '2', 'upload_files/candidate_tracker/46760577171_1608558144417_1601001653977Resume_R.docx', NULL, NULL, '2021-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Exp in UX ', '2', '2', '', '1', '1', '', '2', '2021-01-07', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-04 10:18:55', 50, '2021-01-04 11:23:50', 0, NULL, 1),
(2841, '', '0', '9089861491', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101040003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-04 10:43:51', 0, NULL, 0, NULL, 1),
(2842, '', '0', '9500465161', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101040004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-04 10:51:36', 0, NULL, 0, NULL, 1),
(2843, 'M.priyadharshini', '4', '9080979153', '', 'M.priyadharshini62@gmail.com', '2000-02-06', 20, '1', '2', 'Mohan', 'Retired', 10000.00, 1, 10000.00, 15000.00, 'Chennai', 'T.nagar', '2101040005', '', '2', 'upload_files/candidate_tracker/12870303831_priyam res.docx', NULL, NULL, '2021-01-04', 0, 'Jobs', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for crm profile..sustainability is doubt', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-04 11:01:40', 8, '2021-01-04 03:05:37', 0, NULL, 1),
(2844, 'sharan', '5', '9884318428', '', 'Sharan.garla@gmail.com', '1996-10-04', 24, '2', '2', 'balaji', 'Business', 20000.00, 1, 300000.00, 400000.00, 'chennai', 'chennai', '2101040006', '1', '2', 'upload_files/candidate_tracker/12136463969_sharan cv 2020 edited .pdf', NULL, NULL, '2021-01-05', 0, '', '5', '29', NULL, 0.00, '', '0', NULL, '1', 'will not fit for any profile, has not worked for last 1 year, expecting higher salary, however zero skill ', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-04 11:15:38', 1, '2021-01-05 12:23:07', 0, NULL, 1),
(2845, 'Najeeullah Toufeeq HN', '4', '9080506691', '', 'najeeullahtoufi@gmail.com', '2000-03-19', 20, '2', '2', 'Niyamathullah HG', 'Supervisor', 36000.00, 2, 0.00, 15000.00, 'Vaniyambadi', 'Periamet', '2101040007', '1', '1', 'upload_files/candidate_tracker/74586885486_TOUFI.pdf', NULL, NULL, '2021-01-06', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '2', '', '1', '1', '', '2', '2021-01-09', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-04 11:23:59', 7, '2021-01-06 11:20:34', 0, NULL, 1),
(2846, 'Pradeep Rs', '5', '9176342552', '9841147196', 'msdpradeep608@gmail.com', '1997-06-13', 23, '2', '2', 'Father: R Sridhar, mother: s chandra', 'Contractor', 30000.00, 2, 0.00, 9000.00, 'Ekkattuthangal', 'Ekkattuthangal', '2101040008', '1', '2', 'upload_files/candidate_tracker/26451534802_pradeep(1).docx', NULL, NULL, '2021-01-05', 0, '', '3', '8', '2021-01-07', 114000.00, '', '3', '2021-01-09', '1', '9k ctc for keerthika team.', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-04 11:28:23', 7, '2021-01-07 10:26:04', 0, NULL, 1),
(2847, 'Sudha K', '4', '6364696930', '9241066535', 'sudhachinnu322@gmail.com', '1997-03-30', 23, '2', '1', 'Praveen Kumar S', 'Field executive', 20000.00, 3, 20000.00, 20000.00, 'Adugodi, Mahalingeshwara Layout', 'Adugodi, mahalingeshdwara layout', '2101040009', '7', '2', 'upload_files/candidate_tracker/75255868192_Charniii documents.docx', NULL, NULL, '2021-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-04 11:39:28', 1, '2021-01-04 11:47:32', 0, NULL, 1),
(2848, 'Arunprasad', '2', '8939537568', '', 'arunprasadramasamyy@gmail.com', '1995-10-19', 25, '1', '2', 'Ramasamy', 'Supervisor', 16000.00, 2, 300000.00, 350000.00, 'Chennai', 'Chennai', '2101040010', '', '2', 'upload_files/candidate_tracker/45764715994_Arun_Resume.docx', NULL, NULL, '2021-01-05', 26, 'Seetha', '5', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task incomplete.', '2', '2', '', '1', '1', '', '2', '2021-01-09', '3', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-04 11:50:54', 7, '2021-01-05 06:40:53', 0, NULL, 1),
(2849, '', '0', '9790474911', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101040011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-04 11:52:17', 0, NULL, 0, NULL, 1),
(2850, 'A. Hari Karan', '22', '8667730142', '7092666841', 'hariflicks74@gmail.com', '1999-07-14', 21, '2', '2', 'S. Arasu', 'Driver', 74000.00, 1, 0.00, 250000.00, 'Chennai', 'Villivakkam Chennai', '2101040012', '1', '1', 'upload_files/candidate_tracker/25541395553_(Hari-Resume).pdf', NULL, NULL, '2021-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-04 03:49:38', 1, '2021-01-05 10:11:34', 0, NULL, 1),
(2851, 'Jeevanathan', '13', '7708090147', '', 'g.jeeva95@gmail.com', '1995-01-25', 25, '2', '2', 'Gajendran', 'Agriculture', 50000.00, 1, 300000.00, 450000.00, 'Chennai', 'Chennai', '2101040013', '1', '2', 'upload_files/candidate_tracker/68189600151_Resume_Jeevanathan .pdf', NULL, NULL, '2021-01-06', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-04 04:00:55', 50, '2021-01-06 05:27:27', 0, NULL, 1),
(2852, '', '0', '9566950729', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101040014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-04 04:52:53', 0, NULL, 0, NULL, 1),
(2853, '', '0', '9884492953', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101040015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-04 04:55:53', 0, NULL, 0, NULL, 1),
(2854, '', '0', '8148641771', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101040016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-04 05:44:08', 0, NULL, 0, NULL, 1),
(2855, 'v karthik', '13', '9952836382', '', 'karthiknathanresearch@gmail.com', '1989-12-14', 31, '3', '2', 'g venkatesan', 'sbi retried', 18000.00, 1, 600000.00, 900000.00, 'adambakkam chennai', 'adambakkam chennai', '2101040017', '', '2', 'upload_files/candidate_tracker/22263964946_karthik_resume.pdf', NULL, NULL, '2021-01-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not Upto the Level. He is telling i am not recall the technologies.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-04 06:50:48', 1, '2021-01-05 10:52:16', 0, NULL, 1),
(2856, 'Praveenkumar', '4', '7708384827', '', 'jpraveenkumar263@gmail.com', '1999-07-27', 21, '2', '2', 'Jayapalan', 'Farmer', 125000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2101040018', '1', '1', 'upload_files/candidate_tracker/1780403936_Praveen resume.docx', NULL, NULL, '2021-01-05', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not attended', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-04 06:59:32', 50, '2021-01-05 11:41:40', 0, NULL, 1),
(2857, 'nandhini b', '11', '9962129197', '9043926876', 'sugu1710@gmail.com', '1998-12-17', 22, '3', '2', 'balaji', 'worker', 20000.00, 1, 11000.00, 20000.00, 'mangadu', 'mangadu', '2101050001', '', '2', 'upload_files/candidate_tracker/35171089822_B.Nandhini_Resume.pdf', NULL, NULL, '2021-01-18', 3, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 01:19:04', 7, '2021-01-21 01:44:54', 0, NULL, 1),
(2858, 'subramani .p', '23', '9940585759', '', 'subbu.logic@gmail.com', '1984-10-05', 36, '2', '1', 'pakkiriswamy', 'home', 30000.00, 3, 38000.00, 45000.00, 'Chennai', 'Chennai', '2101050002', '1', '2', 'upload_files/candidate_tracker/27347805892_Subramani UX UI Designer.pdf', NULL, NULL, '2021-01-06', 1, '', '5', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'we picked another candidate', '2', '2', '', '1', '1', '', '2', '2021-01-09', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-05 11:38:14', 50, '2021-01-06 02:33:39', 0, NULL, 1),
(2859, '', '0', '7667076341', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101050003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-05 11:55:24', 0, NULL, 0, NULL, 1),
(2860, 'Zuwairiya', '4', '8939270438', '9840956845', 'Zuwairiya1997@gmail.com', '1997-02-18', 23, '2', '2', 'Abdul huck', 'Self employed', 100000.00, 2, 18000.00, 20000.00, 'Parrys', 'Parrys', '2101050004', '1', '2', 'upload_files/candidate_tracker/4625501001_Zuwairiya Resume.docx', NULL, NULL, '2021-01-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'got offer and updated the same.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-05 12:01:20', 8, '2021-01-05 01:46:05', 0, NULL, 1),
(2861, 'N.SHARUKULLAH', '6', '6369338320', '9498400139', 'sharukss1015@gmail.com', '1999-11-10', 21, '1', '2', 'A.M.Noorullah', 'Driver', 100000.00, 2, 10000.00, 15000.00, 'Thiruvallur', 'Porur', '2101050005', '', '2', 'upload_files/candidate_tracker/29028772382_N.sharuk resume.pdf', NULL, NULL, '2021-01-05', 0, 'Jobs', '3', '8', '2021-01-11', 156000.00, '', '5', '1970-01-01', '1', '13k ctc for syed team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 12:11:49', 7, '2021-01-09 12:55:48', 0, NULL, 1),
(2862, 'jayaprakash', '23', '8825939355', '', 'jpdev0520@gmail.com', '1995-05-20', 25, '2', '2', 'dhamodharan', 'daily base', 30.00, 1, 22.00, 25.00, 'chennai', 'chennai', '2101050006', '1', '2', 'upload_files/candidate_tracker/22802654192_Jayaprakash_Frontend_developer_CV.docx', NULL, NULL, '2021-01-09', 0, '', '3', '60', '2021-01-18', 300000.00, '', '5', '1970-01-01', '1', 'Selected for IT,CTC 25K,No PF only PT', '2', '1', '2', '1', '1', '', '2', '2021-01-11', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-05 12:24:58', 60, '2021-01-19 03:21:09', 0, NULL, 1),
(2863, 'Nithiya bharathi R', '13', '9382113156', '8682075534', 'nithyaramesh1997@gmail.com', '1997-07-16', 23, '2', '2', 'Ramesh kumar K', 'Business', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2101050007', '1', '1', 'upload_files/candidate_tracker/89292805199_Nithya Resume.pdf', NULL, NULL, '2021-01-05', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task not Completed.', '2', '2', '', '1', '1', '', '2', '2021-01-08', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-05 12:44:23', 50, '2021-01-05 12:54:42', 0, NULL, 1),
(2864, 'ambrose kumar a', '6', '9940582603', '7299955757', 'ezhilambrose63@gmail.com', '1996-01-02', 25, '2', '2', 'anthony', 'daily wages', 30000.00, 1, 13500.00, 18000.00, 'chennai', 'chennai', '2101050008', '2', '2', 'upload_files/candidate_tracker/35547697679_Ambroo RES PDF.pdf', NULL, NULL, '2021-01-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 12:59:01', 50, '2021-01-06 05:27:45', 0, NULL, 1),
(2865, 'Ricardo MALCOM CABRAL', '5', '7358651752', '6369424820', 'ricardocabral9495@gmail.com', '1994-11-09', 26, '1', '1', 'Darron', 'Hotelier', 30000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2101050009', '', '2', 'upload_files/candidate_tracker/93646310219_Ricky', NULL, NULL, '2021-01-05', 0, '55615', '3', '8', '2021-01-11', 276000.00, '', '6', '2021-03-26', '1', '23 ctc and hike after 3 month.1.5l target. for shanmugam team', '5', '2', '4', '1', '1', '1', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 01:29:18', 60, '2021-01-09 04:50:25', 0, NULL, 1),
(2866, 'Bala Krishna mani', '23', '9003570339', '', 'balakrishnamani30@gmail.com', '1991-06-24', 29, '2', '2', 'Subbaiah N', 'Farmer', 300000.00, 2, 32700.00, 40000.00, 'Nagercoil', 'Chennai', '2101050010', '1', '2', 'upload_files/candidate_tracker/93740850655_bala-cv.doc', NULL, NULL, '2021-01-07', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'UI not good. Looking Better Design.', '2', '2', '', '1', '1', '', '2', '2021-01-08', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-05 02:41:02', 60, '2021-01-07 02:51:03', 0, NULL, 1),
(2867, '', '0', '9677346359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101050011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-05 02:55:07', 0, NULL, 0, NULL, 1),
(2868, 'Jothi lakshmi', '23', '8122292890', '9500715682', 'Lakshmijo17@gmail.com', '1990-05-17', 30, '2', '2', 'Thirunavukarasu', 'Retired', 80.00, 2, 10000.00, 25000.00, 'Chennai-600006', 'Chennai-600006', '2101050012', '1', '2', 'upload_files/candidate_tracker/96604545012_Jothi_Resume_20210101_010722303.doc', NULL, NULL, '2021-01-08', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-05 03:03:37', 1, '2021-01-05 03:08:32', 0, NULL, 1),
(2869, 'suriya d', '5', '8428182301', '8610106845', 'msdsuriya6@gmail.com', '1997-09-23', 23, '2', '2', 'none', 'none', 30000.00, 0, 16000.00, 20000.00, 'chennai', 'chennai', '2101050013', '3', '2', 'upload_files/candidate_tracker/30085501617_suriya dddd resume (2)5675566.pdf', NULL, NULL, '2021-01-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 03:33:26', 7, '2021-01-11 05:30:10', 0, NULL, 1),
(2870, 'SURIYA D', '6', '8610106845', '8428182301', 'msdsuriya6@gmail.com', '1997-09-23', 23, '4', '2', 'DURAI', 'FARMER', 40000.00, 0, 25000.00, 25000.00, 'No 9 SATHANANTHAL VILLUPURAM DT', 'KOYAMBEDU', '2101050014', '', '2', 'upload_files/candidate_tracker/39657125601_suriya dddd resume (2)5675566.pdf', NULL, NULL, '2021-01-11', 1, '', '8', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Next Round, but not attended ', '5', '1', '', '1', '3', '', '2', '2021-01-12', '2', '4', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 04:08:24', 60, '2021-01-11 06:14:04', 0, NULL, 1),
(2871, '', '0', '9790805934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101050015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-05 04:49:58', 0, NULL, 0, NULL, 1),
(2872, 'LALITHA R', '7', '9626094573', '', 'lalitha1912suriya@gmail.com', '1992-11-09', 28, '4', '2', 'RAMGANATHAN', 'FARMER', 65000.00, 2, 20000.00, 25000.00, 'GINGEE', 'TARAMANI', '2101050016', '', '2', 'upload_files/candidate_tracker/18390607687_1609160388978_LALITHA (1).doc', NULL, NULL, '2021-01-11', 1, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '4', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 04:51:54', 7, '2021-01-11 05:31:00', 0, NULL, 1),
(2873, '', '0', '8917594914', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101050017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-05 04:58:40', 0, NULL, 0, NULL, 1),
(2874, 'shadrach r', '6', '8056260674', '7010407801', 'shadrach3697@gmail.com', '1997-06-03', 23, '2', '2', 'janathul firdaus', 'sole trade business', 20000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2101050018', '2', '2', 'upload_files/candidate_tracker/61976649246_Shadrach resume.docx', NULL, NULL, '2021-01-06', 0, '', '3', '8', '2021-01-11', 180000.00, '', '6', '2022-02-09', '1', '15k ctc for Suthagar team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 05:12:13', 7, '2021-01-09 12:56:08', 0, NULL, 1),
(2875, 'john stenies j', '6', '8807305578', '8825811156', 'johnstenies04@gmail.com', '1998-04-09', 22, '2', '2', 'john peter p', 'business man', 20000.00, 2, 0.00, 14000.00, 'chennai', 'chennai', '2101050019', '2', '1', 'upload_files/candidate_tracker/74323250267_John steni resume 2020.docx', NULL, NULL, '2021-01-06', 0, '', '3', '8', '2021-01-11', 151800.00, '', '3', '2021-01-22', '1', '12k th for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 05:18:40', 7, '2021-01-09 12:56:25', 0, NULL, 1),
(2876, '', '0', '7358096697', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101050020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-05 05:24:31', 0, NULL, 0, NULL, 1),
(2877, '', '0', '9962261013', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101050021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-05 05:33:46', 0, NULL, 0, NULL, 1),
(2878, '', '0', '8063141060', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101060001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-06 10:53:39', 0, NULL, 0, NULL, 1),
(2879, 'nivedha', '4', '7358419048', '8124268064', 'nivedhafernandes8@gmail.com', '1996-09-23', 24, '2', '2', 'babu fernnades', 'church employee', 20000.00, 1, 15000.00, 18000.00, 'Chennai', 'st.thomas mount', '2101060002', '15', '2', 'upload_files/candidate_tracker/75668132491_RESUME (3).doc', NULL, NULL, '2021-01-06', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for esale.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-06 11:06:47', 1, '2021-01-06 11:18:48', 0, NULL, 1),
(2880, '', '0', '7094854698', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101060003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-06 11:26:11', 0, NULL, 0, NULL, 1),
(2881, 'Vinoth kumar.l', '4', '8072443821', '', 'vinothdce9@gmail.com', '1995-11-09', 25, '1', '2', 'Loganathan.v', 'employee in Hardware Business(s k tools)', 30000.00, 1, 1.00, 15000.00, 'Iyyapanthangal', 'Iyyapanthangal', '2101060004', '', '2', 'upload_files/candidate_tracker/93240615606_RESUME.pdf', NULL, NULL, '2021-01-06', 0, 'Jobs', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-06 11:58:24', 50, '2021-01-06 05:28:56', 0, NULL, 1),
(2882, '', '0', '9655138505', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101060005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-06 12:13:22', 0, NULL, 0, NULL, 1),
(2883, 'Ashwini B D', '4', '9566138505', '8838775277', 'bdashwini@gmail.com', '1990-06-01', 30, '1', '1', 'Vijayan M', 'Busness', 20000.00, 1, 11500.00, 18000.00, 'Thiruverkadu', 'Thiruverkadu', '2101060006', '', '2', 'upload_files/candidate_tracker/16914720891_CamScanner 01-06-2021 12.32.42.pdf', NULL, NULL, '2021-01-06', 0, 'Jobs', '3', '8', '2021-01-20', 180000.00, '', '6', '2021-02-02', '2', '15k ctc for karthika team. esale', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-06 12:20:49', 7, '2021-01-12 04:47:33', 0, NULL, 1),
(2884, 'SHAFI B', '5', '9177422530', '7013606318', 'dilshafi1997@gmail.com', '1997-06-20', 23, '1', '2', 'Meruna B', 'Tailor', 12000.00, 1, 0.00, 18000.00, 'Hindupur', 'Bangalore', '2101060007', '', '1', 'upload_files/candidate_tracker/80921250591_Resume 2.pdf', NULL, NULL, '2021-01-06', 0, '55606', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-06 12:38:59', 7, '2021-01-06 01:22:54', 0, NULL, 1),
(2885, 'Manuprasath', '5', '8148345883', '', 'Manuprasathm@gmail.com', '1991-06-04', 29, '2', '2', 'Mohandas', 'Retired', 25000.00, 2, 300000.00, 360000.00, 'Erode', 'Chennai', '2101060008', '1', '2', 'upload_files/candidate_tracker/46253889976_Manu CURRICULUM VITAE.doc', NULL, NULL, '2021-01-06', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not fit for Life sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-06 12:45:22', 50, '2021-01-06 04:16:44', 0, NULL, 1),
(2886, 'Edwin Albert', '5', '9087022265', '', 'albert.edwin22@gmail.com', '1991-10-26', 29, '2', '2', 'Arockiya Mary', 'House wife', 25000.00, 1, 25000.00, 27000.00, 'Chennai', 'Pour', '2101060009', '1', '2', 'upload_files/candidate_tracker/61240000154_Financial CV ED.docx', NULL, NULL, '2021-01-06', 0, '', '3', '8', '2021-01-07', 264000.00, '', '2', '1970-01-01', '1', '22k ctc for shanmugam team. no pf.', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-06 12:47:00', 7, '2021-01-06 07:14:21', 0, NULL, 1),
(2887, 'Soma Sundaram M', '13', '8056705482', '8838423484', 'sureshsoma12351198@gmail.com', '1998-11-05', 22, '2', '2', 'Murugan S', '96000 per annum', 8000.00, 1, 0.00, 150000.00, 'Seydunganallur', 'Chrompet', '2101060010', '1', '1', 'upload_files/candidate_tracker/75411280658_0_RESUME1.pdf', NULL, NULL, '2021-01-06', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not satisfied.', '2', '2', '', '1', '1', '', '2', '2021-01-09', '3', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-06 01:41:59', 50, '2021-01-06 05:30:28', 0, NULL, 1),
(2888, 'Sunder', '5', '6383171196', '', 'sunder4699@gmail.com', '1999-06-04', 21, '2', '2', 'Mohan', 'Student', 25000.00, 0, 0.00, 15000.00, 'Periyapalayam', 'Ambattur', '2101060011', '', '1', 'upload_files/candidate_tracker/61899317298_sundar nov 2020.pdf', NULL, NULL, '2021-01-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-06 02:03:41', 1, '2021-01-06 02:27:57', 0, NULL, 1),
(2889, '', '0', '8939486243', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101060012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-06 03:22:35', 0, NULL, 0, NULL, 1),
(2890, 'Ganesh', '23', '8870987507', '', 'ganesh94ec@gmail.com', '1994-05-02', 26, '2', '2', 'Sekar', 'Building work', 15000.00, 2, 216000.00, 350000.00, '2/120, mandhakarai street, puliyur, Nagapattinam', 'LIG-662 Gr floor , Sholinganallur Chennai-119', '2101060013', '1', '2', 'upload_files/candidate_tracker/56073043542_GaneshResume_2020.pdf', NULL, NULL, '2021-01-08', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'We are Looking more Experienced. He dont have much knowledge in Photoshop.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-06 03:39:06', 1, '2021-01-08 02:42:05', 0, NULL, 1),
(2891, 'Bharathraj A', '13', '8428306120', '9360729608', '22.barathraj@gmail.com', '1998-12-22', 22, '1', '2', 'ANANDRAJ', 'Sales representative', 15000.00, 0, 0.00, 15000.00, 'No 8 1st cross street Gomathipuram thiruninravur', 'No 8 1st Cross Street Gomathipuram Thiruninravur', '2101060014', '', '1', 'upload_files/candidate_tracker/57886992708_barathresume (2).pdf', NULL, NULL, '2021-01-07', 0, 'Job', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-06 04:41:55', 50, '2021-01-07 05:22:11', 0, NULL, 1),
(2892, 'sathya', '23', '7708812086', '', 'sathisub90@gmail.com', '1989-06-25', 31, '2', '1', 'saravanan', 'private', 30000.00, 2, 280000.00, 420000.00, 'chennai', 'chennai', '2101060015', '1', '2', 'upload_files/candidate_tracker/55823881926_Sathya-UIDevelop.doc', NULL, NULL, '2021-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-06 04:50:12', 1, '2021-01-06 04:55:36', 0, NULL, 1),
(2893, 'JANAKIRAMAN.E', '4', '8428366691', '', 'janakiraman.e99@gmail.com', '1999-12-11', 21, '2', '2', 'Elumalai', 'Daily wages', 20000.00, 1, 0.00, 15000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2101060016', '1', '1', 'upload_files/candidate_tracker/51332133570_J resume.pdf', NULL, NULL, '2021-01-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-06 05:02:21', 50, '2021-01-07 05:20:42', 0, NULL, 1),
(2894, 'SARATHKUMAR. D', '4', '8939358278', '9094745321', 'Sarath23.dk@gmail.com', '1999-10-23', 21, '2', '2', 'DILLIBABU', 'Cooli', 13000.00, 1, 0.00, 15000.00, 'THIRUVANMIYUR', 'THIRUVANMIYUR', '2101060017', '1', '1', 'upload_files/candidate_tracker/27888910797_resume_1609933978020.pdf', NULL, NULL, '2021-01-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-06 05:04:36', 50, '2021-01-07 05:20:51', 0, NULL, 1),
(2895, 'Jeevasurya L', '23', '8610559488', '', 'jeevasurya2016@gmail.com', '1996-09-22', 24, '2', '2', 'Lakshmanan c', 'Working in private company', 45000.00, 1, 13000.00, 22000.00, 'Chennai, Thiruvottiyur', 'Chennai, Thiruvottiyur', '2101060018', '1', '2', 'upload_files/candidate_tracker/25540197058_Jeevasurya\'s Resume (3).pdf', NULL, NULL, '2021-01-10', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-06 06:20:03', 1, '2021-01-06 06:42:19', 0, NULL, 1),
(2896, '', '0', '7092352663', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101060019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-06 08:20:33', 0, NULL, 0, NULL, 1),
(2897, 'G madan', '5', '7305022345', '7093031234', 'madan.divi90@gmail.com', '1983-01-02', 38, '2', '1', 'M divyalakshmi', 'Working', 30000.00, 1, 0.00, 40000.00, 'Chennai', 'Chennai', '2101070001', '3', '2', 'upload_files/candidate_tracker/76286347171_Madan Resume-2.doc', NULL, NULL, '2021-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 10:06:22', 1, '2021-01-07 10:09:03', 0, NULL, 1),
(2898, 'Naveeth ahmed', '6', '9751660370', '9629534237', 'rananaveeth3232@gmail', '1998-06-05', 22, '1', '2', 'Wasim', 'Work', 10000.00, 1, 14.00, 15.00, 'Kanadasan nagar', 'Kanadasan nagar', '2101070002', '', '2', 'upload_files/candidate_tracker/80496245854_NAVEETH AHMED.doc', NULL, NULL, '2021-01-07', 1, 'Jobs', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no sales skills', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 11:01:49', 50, '2021-01-07 05:48:57', 0, NULL, 1),
(2899, 'VIGNESH J', '6', '9841163830', '8608091913', 'vicky.jayaraman17@gmail.com', '1998-07-17', 22, '1', '2', 'JAYARAMAN K', 'Plumber', 120000.00, 2, 20000.00, 20000.00, 'Chennai', 'Chennai', '2101070003', '', '2', 'upload_files/candidate_tracker/84608522283_Vignesh_Resume.docx', NULL, NULL, '2021-01-07', 0, 'P1065', '3', '8', '2021-01-11', 216000.00, '', '6', '2022-01-31', '1', '18k ctc for syed team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 11:08:11', 7, '2021-01-09 12:56:41', 0, NULL, 1),
(2900, 'G.. Tamil Mani', '6', '8825737476', '9361042425', 'gowthamsmart32@gmail.com', '1999-07-26', 21, '2', '2', 'Lakshmi', 'House wife', 10000.00, 1, 0.00, 20000.00, 'Saidhapet', 'Saidhapet', '2101070004', '1', '1', 'upload_files/candidate_tracker/15073398535_tamilmani resume.docx', NULL, NULL, '2021-01-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-07 11:52:49', 8, '2021-01-07 05:29:49', 0, NULL, 1),
(2901, 'S Hariharan', '4', '6381122304', '9361042425', 'smarthari1816@gmail.com', '2000-02-18', 20, '2', '2', 'siva', 'painting condrator', 10000.00, 1, 0.00, 15000.00, 'Saidapet', 'saidapet', '2101070005', '1', '1', 'upload_files/candidate_tracker/61781334563_hari resume.docx', NULL, NULL, '2021-01-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much communicative, will not fir for sales', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-07 11:53:03', 1, '2021-01-07 12:01:48', 0, NULL, 1),
(2902, 'Megharaj', '4', '9514291541', '', 'nk9841684492@gmail.com', '1999-12-29', 21, '2', '2', 'Gopi', 'Auto driver', 20000.00, 1, 0.00, 18000.00, '64/74 subramaniya mudalia street', 'Saidapet', '2101070006', '1', '1', 'upload_files/candidate_tracker/86869477384_naveen.pdf', NULL, NULL, '2021-01-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'bad attitude. chewing the chewing gum while interview and very lethargic', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-07 11:53:05', 1, '2021-01-07 11:58:05', 0, NULL, 1),
(2903, 'Kishore.v', '4', '9042383534', '6382163441', 'Kishorekv221299@gmail.com', '1999-12-22', 21, '2', '2', 'K.venkatesan', 'Electrician', 15000.00, 1, 0.00, 15.00, 'Saidapet', 'Saidapet', '2101070007', '1', '1', 'upload_files/candidate_tracker/14326567140_RESUME.pdf', NULL, NULL, '2021-01-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for Sales', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-07 11:53:28', 1, '2021-01-07 11:59:29', 0, NULL, 1),
(2904, 'Praveen kumar', '4', '9940156208', '9361042425', 'praveenjane2000@gmail.com', '2000-01-05', 21, '2', '2', 'Balaji', 'Painter', 15000.00, 1, 0.00, 18000.00, 'No.1, subra maniya swami kovil street', 'Saidapet', '2101070008', '1', '1', 'upload_files/candidate_tracker/55622608568_Praveen Resume.docx', NULL, NULL, '2021-01-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit into sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-07 11:53:34', 50, '2021-01-07 01:09:16', 0, NULL, 1),
(2905, 'Ezhilarasan G', '4', '9361042425', '6381122304', 'ekarasan24@gmail.com', '1996-07-16', 24, '2', '2', 'Gopalakrishnan', 'Driver', 30000.00, 1, 15000.00, 15000.00, 'Saidapet', 'Saidapet', '2101070009', '1', '2', 'upload_files/candidate_tracker/82810381721_RESUME (1).pdf', NULL, NULL, '2021-01-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process looking  for admin job', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-07 11:54:05', 50, '2021-01-07 01:22:11', 0, NULL, 1),
(2906, 'clamanciya', '4', '9789927066', '9790820408', 'clamanciya@gmail.com', '1995-09-04', 25, '3', '2', 'arokiyaraj', 'relationship officer', 15000.00, 7, 17000.00, 25000.00, 'saidapet', 'pallavaram', '2101070010', '', '2', 'upload_files/candidate_tracker/724376644_file1_1610003941274.pdf', NULL, NULL, '2021-01-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustainability Issue 2yrs 3 companies changed', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 12:17:00', 1, '2021-01-07 01:30:36', 0, NULL, 1),
(2907, 'Rajathi N', '4', '7639363312', '8189818664', 'madhurajima1995@gmail.com', '1995-02-20', 25, '3', '1', 'Prem Kumar K', 'Relationship officer', 20000.00, 1, 16500.00, 25000.00, 'Tondiarpet', 'Tondiarpet', '2101070011', '', '2', 'upload_files/candidate_tracker/5292154962_', NULL, NULL, '2021-01-07', 0, '', '5', '67', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She demanded for higher salary. (18K) We offered as per esales norms.  Arun HR spoke to her over phone for her willingness but she refused our offer.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 12:18:29', 8, '2021-01-07 05:28:44', 0, NULL, 1),
(2908, '', '0', '9666496510', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101070012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-07 12:49:08', 0, NULL, 0, NULL, 1),
(2909, 'Logeshwaran R', '5', '7904581435', '8681018402', 'Logeshwaran1294@gmail.com', '1994-12-05', 26, '1', '2', 'Ramadoss p', 'Sales', 10000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2101070013', '', '2', 'upload_files/candidate_tracker/31106386140_Logeshwaran resume.pdf', NULL, NULL, '2021-01-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No relevant Exp,Will not sustain for a long', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 01:16:37', 1, '2021-01-07 01:32:15', 0, NULL, 1),
(2910, 'K.sathish kumar', '4', '8072547966', '', 'Sathishsatzz300@gmail.com', '1999-05-12', 21, '3', '2', 'B.krishna kumar', 'Southern railway', 40000.00, 1, 0.00, 12000.00, 'M.k.b nagar', 'Vyasarpadi', '2101070014', '', '1', 'upload_files/candidate_tracker/30566520727_Sathish Resume.pdf', NULL, NULL, '2021-01-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will  not suite for calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 04:50:55', 50, '2021-01-07 05:04:09', 0, NULL, 1),
(2911, 'A.Syed Mohammed Abbubakar', '4', '6369455614', '7397248967', 'syedabbubakar99@gmail.com', '1999-10-15', 21, '3', '2', 'A.S Abdul Rahim', 'Cooly', 25000.00, 3, 0.00, 12000.00, 'Tondiarpet', 'Tondiarpet', '2101070015', '', '1', 'upload_files/candidate_tracker/59748362229_Resume.syed.docx', NULL, NULL, '2021-01-07', 0, '', '3', '8', '2021-01-18', 126600.00, '', '3', '2021-01-21', '1', '10k th for keerthiga team.', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 04:51:44', 7, '2021-01-15 11:22:31', 0, NULL, 1),
(2912, 'Vignesh prabu', '23', '9043474747', '', 'Vigprabu@gmail.com', '1993-06-07', 27, '2', '2', 'Arumugam', 'Farmer', 20000.00, 1, 100.00, 22000.00, 'kumbakonam', 'aladhur', '2101070016', '1', '2', 'upload_files/candidate_tracker/2808921315_Resume_Vignesh.doc', NULL, NULL, '2021-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-07 06:08:05', 1, '2021-01-07 06:12:35', 0, NULL, 1),
(2913, 'akthivel', '23', '8072024750', '', 'ashvel65@gmail.com', '1993-05-06', 27, '2', '2', 'amulraj', 'daily wager', 9000.00, 1, 255000.00, 420000.00, 'chennai', 'chennai', '2101070017', '1', '2', 'upload_files/candidate_tracker/88183668323_Resume-6.docx', NULL, NULL, '2021-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-07 06:26:13', 1, '2021-01-07 06:31:19', 0, NULL, 1),
(2914, 'vylamgari desappa', '13', '7036671750', '', 'vylamgaridesappa71@gmail.com', '1996-08-06', 24, '2', '2', 'maneiah', 'fisherman', 35000.00, 2, 300000.00, 360000.00, 'Nellore', 'Nellore', '2101070018', '1', '2', 'upload_files/candidate_tracker/13832205432_Resume.pdf', NULL, NULL, '2021-01-08', 30, '', '3', '60', '2021-01-22', 240000.00, '', '5', '1970-01-01', '2', 'Selected. We can offer 20K CTC', '2', '2', '2', '1', '1', '', '2', '2021-01-09', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-07 11:23:45', 60, '2021-01-21 06:40:32', 0, NULL, 1),
(2915, 'Monika', '4', '9894646182', '', 'Monikavasu2931@gmail.com', '1999-06-29', 21, '1', '2', 'Vasu', 'Former', 12000.00, 0, 0.00, 15000.00, 'Minjur', 'T.nagar', '2101080001', '', '1', 'upload_files/candidate_tracker/97886081369_P1090.pdf', NULL, NULL, '2021-01-08', 0, 'Jobs', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '2', '', '1', '1', '', '2', '2021-01-11', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 10:11:02', 50, '2021-01-08 12:04:34', 0, NULL, 1),
(2916, 'M.Ruban Franklin', '4', '9941778248', '7401738881', 'rubanfrank21@gmail.com', '1999-03-21', 21, '1', '2', 'Jothi Kanchana.m', 'Uhn retired', 18000.00, 1, 0.00, 15000.00, 'No.41/73dasspuram KODAMBAKKAM ch-24', 'No.41/73dasspuram KODAMBAKKAM ch-24', '2101080002', '', '1', 'upload_files/candidate_tracker/4790876956_ruban reume.docx', NULL, NULL, '2021-01-08', 0, '5552', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling.  not speaking up.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 10:20:04', 50, '2021-01-08 10:39:34', 0, NULL, 1),
(2917, 'Vinoth Kumar', '6', '9360049832', '9087842121', 'vinothvinoth6795@gmail.com', '1997-09-23', 23, '1', '2', 'Selvi R', 'Work', 20000.00, 0, 0.00, 15000.00, 'No 7 Burma colony 4th Street Ekkattuthangl Ch 89', 'No7 Burma colony 4 th Street ekkattuthangal Ch 89', '2101080003', '', '1', 'upload_files/candidate_tracker/76937925263_VINOTH RESUME 01.pdf', NULL, NULL, '2021-01-08', 0, '31120', '3', '60', '2021-02-15', 156000.00, '', '3', '2021-02-19', '1', '13K CTC 1 year Bond for Suthagar Team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 10:41:11', 60, '2021-02-13 01:16:28', 0, NULL, 1),
(2918, 'manoj kumar k', '5', '9880610646', '7013606618', 'kmanojkumar0071997@gmail.com', '1995-11-06', 25, '1', '2', 'k munirathnam', 'agriculture', 20000.00, 0, 38000.00, 38000.00, 'punganur', 'bangalore', '2101080004', '', '2', 'upload_files/candidate_tracker/15258154020_Manoj Kumar K.docx', NULL, NULL, '2021-01-08', 0, '55606', '3', '8', '2021-01-18', 300000.00, '', '3', '2021-02-11', '1', '25k  ctc and no pf.', '5', '2', '4', '2', '2', '1', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 11:34:49', 60, '2021-01-18 12:26:14', 0, NULL, 1),
(2919, 'Hariharan', '13', '7373361517', '', 'Hariharan.avancer@gmail.com', '1996-05-12', 24, '2', '2', 'Balaiya', 'Farmer', 30000.00, 2, 2.50, 3.50, 'Kumbakonam', 'Guduvanchery', '2101080005', '1', '2', 'upload_files/candidate_tracker/53714267127_HARIHARAN B.docx', NULL, NULL, '2021-01-11', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-08 12:43:11', 7, '2021-01-11 05:32:30', 0, NULL, 1),
(2920, 'Raj kumar T', '4', '7397489035', '9940281154', 'rajrio582@gmail.com', '1999-04-21', 21, '3', '2', 'THANIVEL T', 'Driver', 20000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2101080006', '', '1', 'upload_files/candidate_tracker/85917894134_raj resume.docx', NULL, NULL, '2021-01-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit into sales, Not communicating', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 01:36:50', 1, '2021-01-08 02:49:39', 0, NULL, 1),
(2921, 'Sudharshan v', '5', '8940402020', '9344840410', 'sudharshanv246@gmail.com', '1998-07-11', 22, '1', '2', 'Venkatadurai', 'Business', 20000.00, 1, 0.00, 23000.00, '8/85 mariamman kovil kondayampalli,,salem(dt).', '85 ganga block , Bettadasanapura Bangalore.', '2101080007', '', '1', 'upload_files/candidate_tracker/48229095923_Sudharshan V resume.pdf', NULL, NULL, '2021-01-08', 0, '55599', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 01:46:18', 60, '2021-01-08 06:54:52', 0, NULL, 1),
(2922, 'Raj', '5', '8270965543', '', 'Postbox1507@gmail.com', '1998-01-05', 23, '1', '2', 'Nanjan', 'Former', 20000.00, 2, 15000.00, 23000.00, 'Gandhinagar,thalavadi,erode 638461', '85 ganga block , Bettadasanapura Bangalore.', '2101080008', '', '2', 'upload_files/candidate_tracker/40400414599_Tarkurippu.pdf', NULL, NULL, '2021-01-08', 0, '55599', '3', '8', '2021-01-18', 227400.00, '', '6', '2021-03-26', '1', '18k th  for rm.  while Negotiation candidate is okay 18k bcoz his previous  package was 15k.', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 01:46:27', 7, '2021-01-16 12:43:47', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2923, 'Namdhini', '21', '8778299478', '6384124793', 'nandhini041297@gmail.com', '1997-12-04', 23, '3', '2', 'Thamodharan', 'Cooli', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2101080009', '', '1', 'upload_files/candidate_tracker/72652439937_CV_2020-09-17-030812.pdf', NULL, NULL, '2021-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 01:47:55', 1, '2021-01-08 01:52:53', 0, NULL, 1),
(2924, 'Lakshmi', '16', '7358083710', '9361649459', 'lakshmirebe@gmail.com', '1991-08-15', 29, '3', '2', 'A. Vinayan', 'Nil', 150000.00, 1, 13000.00, 140000.00, 'Chennai', 'Chennai', '2101080010', '', '2', 'upload_files/candidate_tracker/91397505702_Lakshmi Resume PDF Format.pdf', NULL, NULL, '2021-01-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Admin positions, not open for Sales', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 02:23:26', 1, '2021-01-08 02:32:11', 0, NULL, 1),
(2925, 'Mehar Begum .Y', '4', '9941155708', '', 'meharbegum13@gmail.com', '1997-07-13', 23, '2', '2', 'Yousuf ali', 'Ashok Leyland worker', 13000.00, 2, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2101080011', '1', '2', 'upload_files/candidate_tracker/27548766684_Resume.pdf', NULL, NULL, '2021-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will Not sustain in Sales, Focus much into IT positions', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-08 02:24:48', 1, '2021-01-08 02:33:14', 0, NULL, 1),
(2926, 'Priyadharshini', '21', '6383639359', '', 'priyamr223@gmail.com', '1996-06-04', 24, '3', '2', 'Annadurai', 'Farmer', 15000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2101080012', '', '1', 'upload_files/candidate_tracker/7449006719_priya.pdf', NULL, NULL, '2021-01-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Sales, looking for voice process,but not for sales', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 02:31:12', 1, '2021-01-08 02:35:52', 0, NULL, 1),
(2927, '', '0', '9633448780', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101080013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-08 02:53:59', 0, NULL, 0, NULL, 1),
(2928, 'Rajeswari s', '25', '7305546630', '8056153775', 'rajie042018@gmail.com', '1994-06-06', 26, '3', '1', 'Sathyesh', 'Customs office', 70000.00, 1, 21000.00, 25000.00, 'Tiruvottiyur', 'Royal Enfield company', '2101080014', '', '2', 'upload_files/candidate_tracker/86926194074_RAJESWARI RESUME COPY 1.pdf', NULL, NULL, '2021-01-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 03:39:39', 50, '2021-02-02 02:59:04', 0, NULL, 1),
(2929, 'priya r', '4', '6379147744', '7338830392', 'vishwaprintha143@gmail.com', '1994-01-31', 26, '2', '1', 'vishanth m', 'process associate', 30000.00, 1, 10000.00, 15000.00, 'chennai', 'chennai', '2101080015', '3', '2', 'upload_files/candidate_tracker/29805285381_Priya resume.pdf', NULL, NULL, '2021-01-09', 0, '', '5', '21', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She Is Not Able To Sustain Long Term ,Bcz,  She Have Family Problem With Husband.. Not Suit For Our Procees', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 07:00:30', 8, '2021-01-09 12:47:14', 0, NULL, 1),
(2930, 'Kavya', '13', '7639288367', '8754226652', 'Kavya99ravi@gmail.com', '1999-01-21', 21, '3', '2', 'Ravi', 'Kooly', 9000.00, 1, 0.00, 14000.00, 'Aruppukottai', 'Chennai', '2101090001', '', '1', 'upload_files/candidate_tracker/42535056088_1608008817095.pdf', NULL, NULL, '2021-01-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-09 05:40:52', 7, '2021-01-11 05:32:41', 0, NULL, 1),
(2931, '', '0', '8610756918', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101090002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-09 11:00:53', 0, NULL, 0, NULL, 1),
(2932, '', '0', '8438234818', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101090003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-09 11:50:51', 0, NULL, 0, NULL, 1),
(2933, 'a peter', '5', '8754948763', '7010653276', 'rockpeter220@gmail.com', '1993-12-26', 27, '2', '2', 'none', 'none', 30000.00, 1, 20000.00, 21000.00, 'chennai', 'chennai', '2101090004', '3', '2', 'upload_files/candidate_tracker/23435418740_Rock Peter 2020 Dec.pdf', NULL, NULL, '2021-01-11', 0, '', '3', '8', '2021-01-20', 186000.00, '', '6', '2021-05-05', '1', '15.5k ctc and for guru team.', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-09 09:57:44', 7, '2021-01-12 04:47:59', 0, NULL, 1),
(2934, 'Harsh solanki', '5', '9449592379', '', 'harshsolanki301099@gmail.com', '1999-10-30', 21, '2', '2', 'Dinesh kumar jain', 'Business man', 30000.00, 1, 0.00, 20000.00, 'Near minverva circle', 'Minverva circle', '2101100001', '1', '1', 'upload_files/candidate_tracker/37445275012_Resume_Harsh solanki_Format1.pdf', NULL, NULL, '2021-01-11', 0, '', '3', '8', '2021-01-18', 204000.00, '', '6', '2021-01-27', '2', '17k ctc. for RM', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-10 10:34:48', 7, '2021-01-15 11:22:11', 0, NULL, 1),
(2935, 'p chellappan', '5', '9361828318', '9360004922', 'chellappan9bcom@gmail.com', '1988-07-11', 32, '2', '1', 'sangeetha c', 'process associate', 14500.00, 2, 14500.00, 18000.00, 'chennai', 'chennai', '2101100002', '3', '2', 'upload_files/candidate_tracker/11622086122_Resume.pdf', NULL, NULL, '2021-01-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-10 03:50:38', 7, '2021-01-11 05:32:01', 0, NULL, 1),
(2936, 'Micheal rolington.A', '5', '9597741687', '8428759083', 'michealrolington365@gmail.com', '1997-02-23', 23, '2', '2', 'Nivin', 'Client Acquisition Executive', 15000.00, 2, 16000.00, 23000.00, 'Chennai', 'Vadapalani', '2101100003', '3', '2', 'upload_files/candidate_tracker/58491500968_oct 24 resume (1)(1).pdf', NULL, NULL, '2021-01-11', 6, '', '3', '8', '2021-01-18', 192000.00, '', '6', '2021-08-02', '1', '16k ctc for kannan team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-10 06:36:49', 7, '2021-01-18 10:30:25', 0, NULL, 1),
(2937, 'BABU S', '10', '9688751149', '9742306018', 'S.BABU31296@GMAIL.COM', '1996-12-03', 24, '2', '2', 'Selvaraj', 'Sales executive', 40000.00, 2, 11000.00, 20000.00, 'VILUPPURAM', 'AVADI', '2101100004', '1', '2', 'upload_files/candidate_tracker/80434536705_RESUME BABU FINAL.pdf', NULL, NULL, '2021-01-11', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit into Insurance Sales', '5', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-10 09:24:01', 1, '2021-01-10 09:35:59', 0, NULL, 1),
(2938, 'Rishi Maruthi s', '6', '7358746523', '9384690823', 'rishimaruthi0823@gmail.com', '1998-09-23', 22, '2', '1', 'dharani priya', 'textile', 10000.00, 2, 0.00, 14000.00, 'chennai', 'chennai', '2101110001', '2', '1', 'upload_files/candidate_tracker/9316407496_RISHI MARUTHI.docx', NULL, NULL, '2021-01-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 09:37:22', 7, '2021-01-11 05:31:38', 0, NULL, 1),
(2939, '', '0', '9686489297', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101110002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-11 09:57:54', 0, NULL, 0, NULL, 1),
(2940, '', '0', '9677129967', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101110003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-11 10:21:43', 0, NULL, 0, NULL, 1),
(2941, '', '0', '7696608205', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101110004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-11 10:32:54', 0, NULL, 0, NULL, 1),
(2942, '', '0', '7259792379', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101110005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-11 11:00:55', 0, NULL, 0, NULL, 1),
(2943, 'RAMALINGAM D', '5', '9944615476', '8317334663', 'ramasd88@gmail.com', '1988-06-29', 32, '1', '1', 'Pavithra', 'Software Engineer', 40000.00, 1, 25000.00, 30000.00, 'No3673,13th cross,rs palya,Kammanahali,Bangalore33', 'No3673,13thcross,rs palya,Kammanahalli Bangalore33', '2101110006', '', '2', 'upload_files/candidate_tracker/65272765977_Ramalingam_resume.pdf', NULL, NULL, '2021-01-11', 0, '55567', '3', '8', '2021-02-01', 294000.00, '', '2', '1970-01-01', '1', '24.5k ctc and no pf. for sanjeev team', '5', '2', '4', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 11:42:14', 7, '2021-01-16 02:37:13', 0, NULL, 1),
(2944, 'karthikeyan', '6', '7358745293', '8148671668', 'karthiksrinivasan28@gmail.com', '1996-06-06', 24, '2', '2', 'srinivasan', 'pwd', 25000.00, 1, 15000.00, 17000.00, 'Triplicane chennai', 'triplicane chennai', '2101110007', '1', '2', 'upload_files/candidate_tracker/23130185086_Resume_Karthikeyan.pdf', NULL, NULL, '2021-01-11', 0, '', '3', '8', '1970-01-01', 180000.00, '', '2', '1970-01-01', '2', '15k ctc for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-11 11:44:53', 7, '2021-01-12 04:47:14', 0, NULL, 1),
(2945, 'Balaji. D', '17', '9840996940', '', 'balajidivakar90@gmail.com', '1990-11-13', 30, '2', '2', 'Divakar', 'Salaried', 500000.00, 1, 1000000.00, 70000.00, 'Aminjikarai', 'Aminjikarai', '2101110008', '1', '2', 'upload_files/candidate_tracker/5992019791_Balaji_D_2020 April.docx', NULL, NULL, '2021-01-12', 10, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for BDM profile. but no Relevant exp.  and no response too.', '5', '2', '0', '1', '1', '0', '2', '2021-01-15', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-11 12:31:50', 1, '2021-01-11 12:38:17', 0, NULL, 1),
(2946, 'Padmanabhan S', '5', '7358554148', '9962418578', 'padmeshpadhu93@gmail.com', '1993-03-15', 27, '1', '2', 'P Suresh', 'Business', 30000.00, 1, 23000.00, 26000.00, 'Trivandrum', 'Chennai', '2101110009', '', '2', 'upload_files/candidate_tracker/6674024740_PADHU Resume NEW.docx', NULL, NULL, '2021-01-11', 0, '55625', '3', '8', '2021-01-12', 300000.00, '', '2', '1970-01-01', '1', '25k ctc for veben team.', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 01:10:42', 7, '2021-01-11 06:36:21', 0, NULL, 1),
(2947, 'Vinothkumar', '13', '9600233969', '', 'vinothkumar.ad@outlook.com', '1990-11-09', 30, '4', '1', 'Arumugam', 'Carpenter', 25000.00, 1, 2.80, 4.00, 'Villupuram', 'Chennai', '2101110010', '', '2', 'upload_files/candidate_tracker/67354926334_vinothkumar 9600233969.pdf', NULL, NULL, '2021-01-13', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 03:49:08', 1, '2021-01-13 11:11:50', 0, NULL, 1),
(2948, 'balaji v', '23', '7448585608', '', 'balajivenkat639@gmail.com', '1998-09-20', 22, '2', '2', 'venkatesh r', 'digital marketing', 20000.00, 1, 0.00, 17000.00, 'valasarawakkam', 'valasarawakkam', '2101110011', '1', '1', 'upload_files/candidate_tracker/42784327847_bala resume.pdf', NULL, NULL, '2021-01-13', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task Not satisfied.', '2', '2', '0', '1', '1', '0', '2', '2021-01-14', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-11 03:57:03', 1, '2021-01-13 10:44:51', 0, NULL, 1),
(2949, 'Arulazhagan', '13', '9677225958', '', 'sarulazhagan@gmail.com', '1983-06-28', 37, '2', '1', 'Subramaniyan', 'Former', 42000.00, 2, 42000.00, 70000.00, 'Thiruvarur', 'Chennai', '2101110012', '1', '2', 'upload_files/candidate_tracker/22728671487_arulazhagn.doc', NULL, NULL, '2021-01-12', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-11 04:21:51', 1, '2021-01-11 04:34:00', 0, NULL, 1),
(2950, 'v vignesh', '5', '8838640940', '', 'vsvignesh1993@gmail.com', '1993-06-11', 27, '2', '2', 'none', 'none', 22000.00, 1, 22000.00, 25000.00, 'chennai', 'chennai', '2101110013', '3', '2', 'upload_files/candidate_tracker/31019795327_Vignesh Resume.pdf', NULL, NULL, '2021-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 05:39:10', 1, '2021-01-11 05:47:41', 0, NULL, 1),
(2951, 'rishi maruthi s', '6', '9384690823', '7358746523', 'rishimaruthi0823@gmail.com', '1998-09-23', 22, '2', '1', 'dharani priya', 'textile', 10000.00, 2, 12000.00, 14000.00, 'chennai', 'parrys', '2101110014', '2', '2', 'upload_files/candidate_tracker/82585199385_RISHI MARUTHI.docx', NULL, NULL, '2021-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 06:40:06', 1, '2021-01-11 06:42:43', 0, NULL, 1),
(2952, 'balaganesh', '6', '9841525243', '', 'balaganesh302@Gmail.com', '1995-08-21', 25, '2', '2', 'kanagaraj', 'business', 20000.00, 0, 15000.00, 17000.00, 'chennai', 'chennai', '2101110015', '2', '2', 'upload_files/candidate_tracker/42895766478_balaganesh.pdf', NULL, NULL, '2021-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 06:48:33', 1, '2021-01-11 06:50:52', 0, NULL, 1),
(2953, '', '0', '7708374671', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101110016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-11 07:27:27', 0, NULL, 0, NULL, 1),
(2954, 'Aagash', '6', '8610882261', '', 'aagashtamizhan07@gmail.com', '1997-05-07', 23, '2', '2', 'Vivekanandan', 'Business', 30000.00, 1, 12000.00, 15000.00, 'Coimbatore', 'Chennai', '2101120001', '1', '2', 'upload_files/candidate_tracker/38423172270_Resume.pdf', NULL, NULL, '2021-01-13', 0, '', '3', '8', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', '13k ctc for guru team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-12 09:20:54', 7, '2021-01-16 12:47:01', 0, NULL, 1),
(2955, 'arunprasad', '13', '9487835920', '', 'arunsql@yahoo.com', '1974-02-12', 46, '1', '1', 'durairaj', 'software', 50000.00, 1, 500000.00, 600000.00, 'chennai', 'chennai', '2101120002', '', '2', 'upload_files/candidate_tracker/28229657746_Arun.doc', NULL, NULL, '2021-01-12', 15, 'hr', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain and very high CTC ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-12 10:33:45', 1, '2021-01-12 10:37:06', 0, NULL, 1),
(2956, '', '0', '9080660128', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101120003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-12 11:06:41', 0, NULL, 0, NULL, 1),
(2957, 'suraj kumar mandal', '5', '8608675639', '', 'surajkumarmandal781@gmail.com', '1992-07-17', 28, '2', '1', 'manisha evi', 'none', 20000.00, 2, 20000.00, 20000.00, 'chennai', 'chennai', '2101120004', '3', '2', 'upload_files/candidate_tracker/34308704333_IMG-20210112-WA0033.pdf', NULL, NULL, '2021-01-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process. he already Attended interview last year and rejected for the same reason', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-12 11:20:42', 1, '2021-01-12 11:25:39', 0, NULL, 1),
(2958, '', '0', '9003250798', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101120005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-12 12:24:53', 0, NULL, 0, NULL, 1),
(2959, 'Suriya s', '5', '9551484660', '9500161990', 'Suryarap97@gmail.com', '1998-11-26', 22, '2', '2', 'K sundaramoorthy', 'Soil business', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2101120006', '1', '1', 'upload_files/candidate_tracker/40485281363_Surya’s CV.docx', NULL, NULL, '2021-01-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling and not interested in field sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-12 01:49:20', 8, '2021-01-12 04:21:33', 0, NULL, 1),
(2960, 'Vasanth kumar', '5', '9500161990', '9551484660', 'vasanthleo33@gmail.com', '1999-03-03', 21, '2', '2', 'm.kasi', 'Business', 20000.00, 1, 0.00, 15000.00, 'chennai', 'Chennai', '2101120007', '1', '2', 'upload_files/candidate_tracker/72388203545_resume.pdf', NULL, NULL, '2021-01-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for sales and calling.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-12 01:49:24', 8, '2021-01-12 04:20:03', 0, NULL, 1),
(2961, 'paul augustus', '2', '9535223276', '', 'pns.augustus@gmail.com', '1991-09-15', 29, '2', '2', 'richard augustus', 'n/a', 30000.00, 0, 180000.00, 300000.00, 'Chennai', 'Chennai', '2101120008', '1', '2', 'upload_files/candidate_tracker/29075848614_PaulNSA_CV.pdf', NULL, NULL, '2021-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not Fit for Mernstack, Much interest into Aero(drone).Recently started looking for IT openings', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-12 03:12:53', 7, '2021-01-18 05:04:43', 0, NULL, 1),
(2962, '', '0', '7598755215', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101120009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-12 03:25:33', 0, NULL, 0, NULL, 1),
(2963, 'Balaji Vijayakumar', '23', '9940338488', '', 'bvbalajivijay@gmail.com', '1997-06-21', 23, '2', '2', 'Vijayakumar', 'ni job', 16000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2101120010', '1', '1', 'upload_files/candidate_tracker/90958801549_Resume.pdf', NULL, NULL, '2021-01-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-12 03:51:11', 7, '2021-01-21 01:45:31', 0, NULL, 1),
(2964, 'j vikaram', '5', '8838910454', '9566107732', 'vikichamine@gmail.com', '1985-08-03', 35, '2', '1', 'vanitha', 'p', 35000.00, 1, 35000.00, 30000.00, 'chennai', 'chennai', '2101120011', '3', '2', 'upload_files/candidate_tracker/10196599082_Vikram Resume-2.pdf', NULL, NULL, '2021-01-13', 0, '', '8', '44', NULL, 0.00, '', '0', NULL, '1', 'please Reassign to GK Ji ', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-12 04:05:31', 1, '2021-01-12 04:11:29', 0, NULL, 1),
(2965, '', '0', '9976714514', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101120012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-12 05:36:14', 0, NULL, 0, NULL, 1),
(2966, 'shanmugaraj n', '6', '9176380898', '', 'shan1995rajjj@gmail.com', '1995-10-30', 25, '2', '2', 'nelliyappan k', 'machine operator', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2101130001', '2', '2', 'upload_files/candidate_tracker/11133065327_shan raj resume.docx', NULL, NULL, '2021-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 08:54:43', 1, '2021-01-13 08:58:00', 0, NULL, 1),
(2967, 'elango', '6', '8754238842', '', 'kuttyelango02021996@gmail.com', '1996-02-09', 24, '2', '2', 'chinnathambi', 'farmer', 10000.00, 4, 13000.00, 15000.00, 'chennai', 'chennai', '2101130002', '2', '2', 'upload_files/candidate_tracker/92519084179_elango.docx', NULL, NULL, '2021-02-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate will not sustain and looking much for semivoice only', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 09:04:13', 60, '2021-02-11 12:43:34', 0, NULL, 1),
(2968, 'Manikandan M', '13', '7094444337', '', 'manikandan.muthu.mca@gmail.com', '1990-05-15', 30, '4', '2', 'Muthu', 'Carpenter', 15000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2101130003', '', '1', 'upload_files/candidate_tracker/1667439650_Manikandan_2k20.pdf', NULL, NULL, '2021-01-14', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 10:45:45', 7, '2021-01-21 01:47:19', 0, NULL, 1),
(2969, '', '0', '9087678244', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101130004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-13 10:49:03', 0, NULL, 0, NULL, 1),
(2970, 'Deepak H S', '4', '9380034489', '', 'deepakshankar517@gmail.com', '1997-11-01', 23, '2', '2', 'Shankar H B', 'Private sector', 120000.00, 1, 0.00, 15000.00, 'BANGALORE URBAN', 'BANGALORE URBAN', '2101130005', '1', '1', 'upload_files/candidate_tracker/49679022464_0_1609555434350Resume_Deepak.doc', NULL, NULL, '2021-01-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-13 12:13:25', 7, '2021-01-21 01:46:48', 0, NULL, 1),
(2971, 'MD ASIFULLAH R', '6', '9087292010', '7448669526', 'md6677714@gmail.com', '1999-05-07', 21, '1', '2', 'Khatija', 'House wife', 30000.00, 2, 23000.00, 30000.00, 'Puliyanthope', 'Kosapet', '2101130006', '', '2', 'upload_files/candidate_tracker/82394558040_1610447406958_ASIFULLA RESUME.docx', NULL, NULL, '2021-01-13', 0, '55618', '3', '8', '2021-01-18', 253200.00, '', '', '1970-01-01', '1', '20k th for suthagar team. 21100ctc', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 01:35:18', 8, '2021-01-15 03:15:04', 0, NULL, 1),
(2972, '', '0', '8248827451', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101130007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-13 01:47:14', 0, NULL, 0, NULL, 1),
(2973, 'Sanjay', '5', '9176210047', '8667462995', 'sanjayrangarajan13@gmail.com', '1997-03-13', 23, '4', '2', 'Rangarajan TG', 'Retired', 20000.00, 1, 27500.00, 32000.00, 'Valasarvakkam', 'Valasarvakkam', '2101130008', '', '2', 'upload_files/candidate_tracker/71928671899_Sanjay Rangarajan CV.pdf', NULL, NULL, '2021-01-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Fit for Sales, will not sustain', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 01:55:02', 1, '2021-01-13 01:57:56', 0, NULL, 1),
(2974, 'Ranjith', '2', '7845399921', '', 'ranjithe44@gmail.com', '1994-09-08', 26, '2', '2', 'Eswaran', 'Business', 50000.00, 1, 23000.00, 35000.00, 'Salem', 'Chennai', '2101130009', '1', '2', 'upload_files/candidate_tracker/22320510985_Resume.pdf', NULL, NULL, '2021-01-23', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-13 03:48:37', 60, '2021-01-23 05:46:56', 0, NULL, 1),
(2975, 'S. Sam Rajan', '4', '7845138349', '7010043639', 'Samrajansj1999@gmail.com', '1999-02-23', 21, '1', '2', 'Subramanian', 'Business', 25000.00, 1, 0.00, 15000.00, '13/177 ,second street, Ajiees nager, Tondiarpet.', '13/171, Second Street, Ajiees Neger, Tondiarpet,.', '2101130010', '', '1', 'upload_files/candidate_tracker/42692057385_imgtopdf_13012021042056.pdf', NULL, NULL, '2021-01-13', 0, 'P1114', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 03:58:56', 1, '2021-01-13 04:32:46', 0, NULL, 1),
(2976, 'K.mahaganapathy', '4', '8667084752', '9445554848', 'luckyman9445554848@gmail.com', '1999-12-29', 21, '1', '2', 'S.krishnasamy', 'Driver', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2101130011', '', '1', 'upload_files/candidate_tracker/19267618976_RESUME -1.docx', NULL, NULL, '2021-01-13', 0, 'P114', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 04:00:42', 1, '2021-01-13 04:13:40', 0, NULL, 1),
(2977, 'v sai roshan babu', '5', '9962298499', '', 'sai98roshan@gmail.com', '1998-01-06', 15, '2', '2', 'none', 'none', 10000.00, 0, 0.00, 15000.00, 'chennai', 'Chennai', '2101130012', '3', '1', 'upload_files/candidate_tracker/8025165250_Sai Roshan Babu - Bio-data.pdf', NULL, NULL, '2021-01-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 04:57:43', 7, '2021-01-21 01:46:31', 0, NULL, 1),
(2978, 'r raghuveer', '5', '9500106734', '9150148608', 'ckraghu7@gmail.com', '1989-10-01', 31, '2', '1', 'southali', 'none', 38000.00, 0, 38000.00, 38000.00, 'chennai', 'chennai', '2101130013', '3', '2', 'upload_files/candidate_tracker/4572262379_raghu cv 1 oct 20.pdf', NULL, NULL, '2021-01-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Issue,Not much communicative', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 09:01:46', 1, '2021-01-13 09:10:15', 0, NULL, 1),
(2979, 'MOHAMMED SHAIK MOHIDEEN', '13', '7395983727', '9941659690', 'shaikmohideen09@gmail.com', '2000-05-09', 20, '2', '2', 'Habibullah', 'Scrap Business', 85000.00, 2, 0.00, 145000.00, 'Alappakkam MainRoad,Valasaravakkam , Chennai', 'Alappakkam MainRoad,Valasaravakkam , Chennai', '2101130014', '1', '1', 'upload_files/candidate_tracker/1338331333_Resume.docx', NULL, NULL, '2021-01-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Not open for agreement', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-13 09:38:43', 1, '2021-01-13 09:43:34', 0, NULL, 1),
(2980, 'merin das', '2', '9645134252', '7012198349', 'merindas218@gmail.com', '1995-01-21', 25, '2', '2', 'arogyadas', 'farmer', 10000.00, 2, 25000.00, 30000.00, 'idukki', 'chennai', '2101150001', '1', '2', 'upload_files/candidate_tracker/82545593404_MERINDAS.docx', NULL, NULL, '2021-01-21', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'She donxquott have a good knowledge in any technology.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-15 10:26:55', 1, '2021-01-15 10:35:43', 0, NULL, 1),
(2981, 'Barath Kumar S', '6', '7358184519', '', 'barathkumar9600@gmail.com', '2000-06-09', 20, '2', '2', 'Suresh Babu R', 'Retaired', 6000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2101160001', '1', '1', 'upload_files/candidate_tracker/14578213737_Curriculum vitae barath 4.pdf', NULL, NULL, '2021-01-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'looking for backend job. his pronunciation was not clear and good. will not suite for calling.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-16 08:15:04', 7, '2021-01-18 05:06:25', 0, NULL, 1),
(2982, '', '0', '8438311996', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101160002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-16 11:57:39', 0, NULL, 0, NULL, 1),
(2983, '', '0', '7092767448', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101160003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-16 12:09:31', 0, NULL, 0, NULL, 1),
(2984, 'maiyazhagan.l', '6', '8438211996', '7418279917', 'maiydass01@gmail.com', '1996-12-01', 24, '2', '2', 'lakshmanan', 'driver', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2101160004', '1', '1', 'upload_files/candidate_tracker/52128721728_resume -M.pdf', NULL, NULL, '2021-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not ok for Sales, looking much for non voice', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-16 12:12:59', 7, '2021-01-18 05:08:02', 0, NULL, 1),
(2985, 'Mageshwari R', '5', '9884157164', '6385128821', 'mageedeeep21@gmail.com', '1997-03-21', 23, '2', '2', 'Rajkumar & Thriveni', 'Own business', 30000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2101160005', '1', '2', 'upload_files/candidate_tracker/26014694056_Mageshwari 2020 (1).docx', NULL, NULL, '2021-01-19', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not join exp 25k+ and no response from her.', '5', '2', '', '1', '1', '', '2', '2021-01-27', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-16 06:13:27', 60, '2021-01-19 12:48:28', 0, NULL, 1),
(2986, 'goutham', '5', '8610729308', '', 'ayangowtham@gmail.com', '1994-02-07', 26, '2', '1', 'm pavithra', 'none', 15000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2101170001', '3', '2', 'upload_files/candidate_tracker/14669096727_Goutham.docx', NULL, NULL, '2021-01-19', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-17 01:20:42', 7, '2021-01-21 01:43:18', 0, NULL, 1),
(2987, '', '0', '9710444415', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101170002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-17 06:36:28', 0, NULL, 0, NULL, 1),
(2988, 'Nafila', '2', '9597035866', '8825818414', 'nafila@outlook.com', '1998-02-19', 22, '2', '2', 'Jalideen', 'Mernstack Developer', 45000.00, 1, 25000.00, 28000.00, 'Chennai', 'Chennai', '2101170003', '1', '2', 'upload_files/candidate_tracker/46671849785_Resume--Nafi.pdf', NULL, NULL, '2021-01-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude not good. technically not good.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-17 07:59:16', 60, '2021-01-19 12:12:37', 0, NULL, 1),
(2989, 'Kalaivanan', '13', '9944471783', '', 'kvanan2429@gmail.com', '1988-06-15', 32, '2', '1', 'K.nandhini', 'Housemaker', 15000.00, 1, 600000.00, 730000.00, 'Kumbakonam', 'Tambaram', '2101180001', '1', '2', 'upload_files/candidate_tracker/41331192906_1608639432625Resume_kalaivanan.pdf', NULL, NULL, '2021-01-18', 2, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'this candidate Selected for next round. GS seen and Rejected. Donxquott have any experience in new technologies.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-18 10:43:29', 1, '2021-01-18 10:51:40', 0, NULL, 1),
(2990, 'Sandhiya.R', '4', '8870066306', '8438422246', 'sandyravi17.sr@gmail.com', '1999-01-01', 22, '1', '2', 'Ravi.E', 'Nil', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2101180002', '', '1', 'upload_files/candidate_tracker/46387992706_Sandhiya 2.pdf', NULL, NULL, '2021-01-18', 0, 'Tl5553', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'in two months looking for job change bcoz of long distance. current 10k and exp is 15k. not confident  and will not suite for our process.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-18 10:53:19', 7, '2021-01-18 05:03:59', 0, NULL, 1),
(2991, 'Hariprakash', '21', '7448419916', '9176418604', 'hariprakashdude@gmail.com', '1996-10-05', 24, '1', '2', 'Rani', 'System Admin', 45000.00, 4, 13000.00, 15000.00, 'Chennai', 'Vyasarpadi', '2101180003', '', '2', 'upload_files/candidate_tracker/95128711965_hari.pdf', NULL, NULL, '2021-01-18', 30, '5153', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ok for Sys Admin,will not sustain.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-18 11:53:48', 7, '2021-01-18 05:01:59', 0, NULL, 1),
(2992, 'M.siva priya', '4', '6384182073', '7025207253', 'Sp4900672@gmail.coom', '1995-04-11', 25, '1', '2', 'Mr.k.mani kandan', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Idukki kerala', 'Chrompet', '2101180004', '', '1', 'upload_files/candidate_tracker/89694050558_P1090.pdf', NULL, NULL, '2021-01-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, not speaking up and will not suite for Esale/CRM.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-18 01:04:22', 60, '2021-01-19 11:59:04', 0, NULL, 1),
(2993, '', '0', '8838704108', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101180005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-18 03:03:49', 0, NULL, 0, NULL, 1),
(2994, 'raja marshal', '13', '6379149398', '', 'rajamarshal2014@gmail.com', '1990-02-02', 30, '2', '1', 'dhivya', 'bca', 50000.00, 1, 550000.00, 800000.00, 'thoriapakkam', 'thoraipakkam', '2101180006', '1', '2', 'upload_files/candidate_tracker/56175051937_Resume (4).doc', NULL, NULL, '2021-01-20', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'High Exp and High CTC expectation', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-18 06:14:39', 60, '2021-01-20 11:50:47', 0, NULL, 1),
(2995, 'Surya A', '6', '8190057517', '9094779601', 'Suryadazzy@gmail.com', '1998-01-18', 23, '2', '2', 'Mrs.Muthulakshmi', 'Home maker', 20000.00, 1, 0.00, 15000.00, 'Velachery', 'Velachery', '2101180007', '1', '1', 'upload_files/candidate_tracker/50211040431_New Resume.docx', NULL, NULL, '2021-01-19', 0, '', '3', '8', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', '13k ctc for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-18 07:00:31', 7, '2021-01-20 05:54:56', 0, NULL, 1),
(2996, 'Philip Benniz', '5', '9941299618', '', 'philipbenniz2@gmail.com', '1991-08-23', 29, '2', '1', 'Vedha', 'Lab Technology', 90000.00, 1, 350000.00, 350000.00, 'No : 3/7 , 34th vinobaji Street gkm colony chennai', 'Chennai', '2101180008', '14', '2', 'upload_files/candidate_tracker/98653241445_Resume 2.docx', NULL, NULL, '2021-01-20', 5, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response', '5', '2', '', '1', '3', '', '2', '2021-01-26', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-18 07:46:35', 60, '2021-01-20 11:49:20', 0, NULL, 1),
(2997, '', '0', '9483468788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101180009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-18 07:47:55', 0, NULL, 0, NULL, 1),
(2998, '', '0', '8825818414', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101180010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-18 08:03:02', 0, NULL, 0, NULL, 1),
(2999, 'Deepeshsiva M', '6', '8680882934', '6380686476', '1210.deepesh@gmail.com', '1999-10-12', 21, '2', '2', 'Murali k', 'Mtc', 35000.00, 5, 0.00, 12000.00, 'Chennai', 'Chennai', '2101190001', '2', '1', 'upload_files/candidate_tracker/26417296022_M. Deepeshsiva (Resume)....docx', NULL, NULL, '2021-01-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not interested in sales  and will not suite for calling too.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-19 10:07:19', 1, '2021-01-19 10:22:16', 0, NULL, 1),
(3000, 'P. Kanmani', '4', '8056416824', '', 'Kanmanip9@gmail.com', '1999-03-24', 21, '1', '2', 'N. Pandiyan', 'Drive', 20000.00, 2, 0.00, 15000.00, 'Walajabad', 'Walajabad', '2101190002', '', '1', 'upload_files/candidate_tracker/22345882498_Kanmani. resume .pdf', NULL, NULL, '2021-01-19', 0, 'P115', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not join. fresher and exp sal is 12k+', '1', '2', '', '1', '1', '', '2', '2021-01-20', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-19 11:02:14', 8, '2021-01-19 01:40:30', 0, NULL, 1),
(3001, 'P. Manimekalai', '4', '9092414574', '6381890825', 'Manirithika1999@gmail.co', '1999-06-05', 21, '1', '2', 'P. Vijaylakshmi', 'Daily waker', 18000.00, 3, 0.00, 18000.00, 'Thirisulam', 'Thirisulam', '2101190003', '', '1', 'upload_files/candidate_tracker/71380018044_HSCC.pdf', NULL, NULL, '2021-01-19', 0, 'Jobs', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will Not Join. Fresher And Exp Sal Is 12k+', '1', '2', '', '1', '1', '', '2', '2021-01-20', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-19 11:13:20', 8, '2021-01-19 01:40:44', 0, NULL, 1),
(3002, '', '0', '9626104307', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101190004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-19 11:15:12', 0, NULL, 0, NULL, 1),
(3003, '', '0', '6380686476', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101190005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-19 11:26:34', 0, NULL, 0, NULL, 1),
(3004, 'Mohan', '5', '6382182557', '', 'mohanrampriya2000@gmail.com', '2000-06-08', 20, '3', '2', 'Duraibabu.A.K', 'Plumber', 100000.00, 1, 0.00, 18000.00, 'Vadapalani', 'Vadapalani', '2101190006', '', '1', 'upload_files/candidate_tracker/27837200134_MOHAN1-1.docx', NULL, NULL, '2021-01-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-19 11:27:48', 1, '2021-01-19 11:32:49', 0, NULL, 1),
(3005, 'Manoj Kumar v', '2', '8925462614', '', 'manoj501553@gmail.com', '1999-01-05', 22, '2', '2', 'Venkatesh', 'Dtp', 20.00, 1, 0.00, 10000.00, 'Tvk street ,mgr nagar,chennai', 'Tvk Street ,Mgr Nagar,Chennai', '2101190007', '1', '1', 'upload_files/candidate_tracker/64943296569_manojresume.pdf', NULL, NULL, '2021-01-20', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not completed the task.', '2', '2', '0', '1', '1', '0', '2', '2021-01-21', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-19 03:45:11', 1, '2021-01-19 03:50:36', 0, NULL, 1),
(3006, 'Anand E', '2', '8610581328', '9551661256', 'anandaravindh60@gmail.com', '1999-06-30', 21, '2', '2', 'Elumalai R', 'Auto driver', 120000.00, 2, 0.00, 3.50, 'Chennai', 'Chennai', '2101190008', '1', '1', 'upload_files/candidate_tracker/49152314279_resumee.pdf', NULL, NULL, '2021-01-22', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'He is waiting for Wipro. He will not sustain.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-19 06:39:04', 1, '2021-01-19 06:43:04', 0, NULL, 1),
(3007, '', '0', '8015656173', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101190009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-19 08:29:06', 0, NULL, 0, NULL, 1),
(3008, 'Chidambararaja Boominathan', '2', '8682992677', '8657982600', 'chidambararaja97@gmail.com', '1997-08-04', 23, '2', '2', 'Boominathan', '-', 1.00, 0, 350000.00, 450000.00, '-', '-', '2101190010', '1', '2', 'upload_files/candidate_tracker/2483979518_passion.chidambararaja.pdf', NULL, NULL, '2021-01-23', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-19 08:42:57', 1, '2021-01-22 06:41:03', 0, NULL, 1),
(3009, 'Suriya S r', '4', '9629096810', '9566826270', 'suriya10998@gmail.com', '1998-09-10', 22, '1', '2', 'Santhamoorthy J', 'Mechanic', 8000.00, 1, 0.00, 12000.00, 'Gingee', 'Gingee', '2101200001', '', '1', 'upload_files/candidate_tracker/14955589907_suriya Resume.pdf', NULL, NULL, '2021-01-20', 0, 'P1087', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling. not speaking up. will not handle pressure and sustain.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-20 09:53:16', 60, '2021-01-20 10:20:45', 0, NULL, 1),
(3010, 'Devadharshni', '5', '9092870185', '8825436338', 'devadharshnikathirvel@gmail.com', '1999-04-03', 21, '1', '2', 'Kathirvel', 'Farmer', 8000.00, 1, 0.00, 15000.00, 'Villupuram', 'Chennai', '2101200002', '', '1', 'upload_files/candidate_tracker/77069658686_Share KB resume.pdf', NULL, NULL, '2021-01-20', 0, 'P1087', '3', '8', '2021-02-01', 126600.00, '', '5', '1970-01-01', '2', '10k take home for pargavi team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-20 09:55:32', 60, '2021-01-23 12:53:02', 0, NULL, 1),
(3011, 'Vinoth S', '25', '8778390910', '9884495042', 'rockybalbowa.rocky@gmail.com', '1987-08-23', 33, '1', '2', 'J v Sekar rao', 'Business', 30000.00, 1, 35000.00, 40000.00, 'No 406 danubae Flats pallikaranai chennai', 'Same above', '2101200003', '', '2', 'upload_files/candidate_tracker/13740625456_Vinoth_Resume.pdf', NULL, NULL, '2021-01-20', 1, 'HR7M', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for Job', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-20 03:00:35', 8, '2021-01-20 05:13:05', 0, NULL, 1),
(3012, 'Sanjam navis', '25', '8870114896', '8248449839', 'sanjamnavis@gmail.com', '1993-07-25', 27, '1', '2', 'Maria Louis', 'Business', 20000.00, 2, 30000.00, 30000.00, 'No 11/28 sitaraman nagar 2nd street Velachery.', 'Same as above', '2101200004', '', '2', 'upload_files/candidate_tracker/75459567779_SANJAM RESUME.pdf', NULL, NULL, '2021-01-20', 1, 'HRM7', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for RM profile. sal exp is 4L+', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-20 03:19:41', 8, '2021-01-20 05:12:41', 0, NULL, 1),
(3013, 'Kishor Kumar.V', '2', '6380919558', '', 'kishorvel55@gmail.com', '1999-07-12', 21, '2', '2', 'Velmurugan.R', 'Shop keeper', 10000.00, 1, 0.00, 15000.00, 'Vriddhachalam', 'Saidapet,Chennai', '2101200005', '1', '1', 'upload_files/candidate_tracker/38631000528_kishor vel web dev.docx', NULL, NULL, '2021-01-29', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task not completed.', '2', '2', '', '1', '1', '', '2', '2021-01-29', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-20 03:24:06', 60, '2021-01-29 03:02:29', 0, NULL, 1),
(3014, 'akshay s', '2', '9894871449', '', 'akshayus27@gmail.com', '1995-04-27', 25, '2', '2', 'usha k', 'nil', 150000.00, 1, 0.00, 400000.00, 'chennai', 'chennai', '2101200006', '1', '1', 'upload_files/candidate_tracker/11645564365_Akshay_Resume.pdf', NULL, NULL, '2021-01-22', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not ready to join', '2', '2', '', '1', '1', '', '2', '2021-02-02', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-20 03:36:03', 60, '2021-01-22 02:42:03', 0, NULL, 1),
(3015, 'Yogesh R', '2', '7397395479', '', 'yogeshravi241998@gmail.com', '1998-01-24', 22, '2', '2', 'Ravi S', 'Private company', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2101200007', '1', '1', 'upload_files/candidate_tracker/42643520353_Yogesh_Resume.pdf', NULL, NULL, '2021-01-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-20 04:02:53', 60, '2021-01-23 05:47:33', 0, NULL, 1),
(3016, 'kamalesh s', '2', '8778374997', '9962583299', 'kamaleshsaravanan99@gmail.com', '1999-01-28', 21, '2', '2', 'saravananan k', 'bussiness', 40000.00, 1, 0.00, 400000.00, 'chennai', 'chennai', '2101200008', '1', '1', 'upload_files/candidate_tracker/18591358418_kamalesh resume .pdf', NULL, NULL, '2021-01-22', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '1', 'Shortlisted. We can offer 10K.', '2', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-20 06:12:53', 1, '2021-01-20 06:19:20', 0, NULL, 1),
(3017, 'Pandiarajan', '2', '6379456289', '9629522376', 'srdpandi605@gmail.com', '1996-07-03', 24, '2', '2', 'Sadaiyandi', 'Daily wages', 15000.00, 1, 18000.00, 25.00, 'Madurai', 'Chennai', '2101200009', '1', '2', 'upload_files/candidate_tracker/1693611930_Resume06112020.pdf', NULL, NULL, '2021-01-23', 45, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-20 07:03:32', 60, '2021-01-23 05:47:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3018, 'kalaislevan', '2', '8675715184', '7010618078', 'skmkalaiselvan@gmail.com', '1996-06-04', 24, '2', '2', 'sabapathi', 'dailywages', 7500.00, 1, 0.00, 200000.00, 'salem', 'chennai', '2101210001', '1', '1', 'upload_files/candidate_tracker/28022535254_KALAI SE (1).pdf', NULL, NULL, '2021-01-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-21 10:53:03', 60, '2021-01-23 05:48:03', 0, NULL, 1),
(3019, 'Rajesh M R', '5', '9986513288', '', 'rajeshmr347@gmail.com', '1992-02-26', 28, '2', '2', 'Ramesh N', 'Electrician', 40000.00, 0, 30000.00, 35000.00, 'Valepura bangalore', 'Valepura bangalore', '2101210002', '1', '2', 'upload_files/candidate_tracker/12989623014_Resumecv.docx', NULL, NULL, '2021-01-21', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response from his end. not okay with salary.', '5', '2', '0', '2', '2', '0', '2', '2021-01-23', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-21 11:23:35', 1, '2021-01-21 11:31:34', 0, NULL, 1),
(3020, 'S.Divakar', '6', '7401699003', '', 'divakarsekarsekar08@gmail.com', '1997-12-08', 23, '1', '2', 'K.sekar', 'Coolie', 15000.00, 2, 14000.00, 16000.00, 'Tondiarpet', 'Tondiarpet', '2101210003', '', '2', 'upload_files/candidate_tracker/48277180051_RESUME.pdf', NULL, NULL, '2021-01-21', 0, '5266', '3', '8', '2021-01-25', 156000.00, '', '5', '1970-01-01', '1', '13k ctc for srikanth team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-21 11:43:44', 60, '2021-01-27 09:58:08', 0, NULL, 1),
(3021, 'Prasanth', '6', '9551925105', '8056270300', 'Prasanthrv1998@gmail.com', '1998-02-25', 22, '1', '2', 'K.ravi', 'Coolie', 14000.00, 2, 14000.00, 16000.00, 'Tondairpet', 'Tondairpet', '2101210004', '', '2', 'upload_files/candidate_tracker/47303977938_P25.pdf', NULL, NULL, '2021-01-21', 0, '5266', '5', '20', NULL, 0.00, '', '0', NULL, '1', 'Not sustainable', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-21 11:44:16', 1, '2021-01-21 12:49:03', 0, NULL, 1),
(3022, '', '0', '7904342859', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101210005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-21 01:07:28', 0, NULL, 0, NULL, 1),
(3023, 'balasubramaniyan', '13', '9344568096', '8088294651', 'bala3151994@gmail.com', '1994-04-05', 26, '2', '2', 'annadurai', 'former', 20000.00, 3, 10000.00, 15000.00, 'ramanathapuram', 'ramanathapuram', '2101210006', '1', '2', 'upload_files/candidate_tracker/52437187660_balaresume.pdf', NULL, NULL, '2021-01-22', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not completed the system task.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-21 01:09:19', 60, '2021-01-22 11:20:10', 0, NULL, 1),
(3024, 'mahendran', '13', '7200494939', '7904526297', 'mahendrasupramaniyan@gmail.com', '1992-11-07', 28, '2', '1', 'subramaniyan', 'retired revenue department', 20000.00, 2, 458400.00, 650000.00, 'Ramanathapuram', 'chennai', '2101210007', '1', '2', 'upload_files/candidate_tracker/77816630765_Mahendran', NULL, NULL, '2021-01-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-21 03:37:19', 60, '2021-01-25 04:44:36', 0, NULL, 1),
(3025, 'M.ragul', '15', '9677334048', '9080474289', 'Masitamil1901@gmail.com', '1996-06-26', 24, '3', '2', 'M.praveen', 'Developer', 25.00, 1, 15.00, 28.00, 'Chennai', 'Erode', '2101210008', '', '2', 'upload_files/candidate_tracker/30258249612_ragul resume.docx', NULL, NULL, '2021-01-29', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '2', '2', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-21 04:08:51', 60, '2021-01-29 07:25:34', 0, NULL, 1),
(3026, 'wiljan', '15', '8056512411', '', 'slojan07@gmail.com', '1994-07-24', 26, '2', '2', 'siluvainayagam', 'fisherman', 50000.00, 2, 25000.00, 35000.00, 'kanyakumari', 'kanyakumari', '2101210009', '15', '2', 'upload_files/candidate_tracker/73085412300_WILJAN RESUME.pdf', NULL, NULL, '2021-01-25', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-21 08:39:49', 60, '2021-01-25 04:49:36', 0, NULL, 1),
(3027, 'Ashok', '2', '9360351726', '', 'ashok.in62@gmail.com', '1994-02-09', 27, '2', '2', 'Udayakumar', 'Driver', 200000.00, 1, 200000.00, 500000.00, 'Chennai', 'Chennai', '2101220001', '1', '2', 'upload_files/candidate_tracker/91692136008_Ashok-9360351726.docx', NULL, NULL, '2021-02-11', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed.', '2', '2', '0', '1', '1', '0', '2', '2021-02-11', '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-01-22 10:21:41', 1, '2021-02-11 01:16:04', 0, NULL, 1),
(3028, 'navin kumar', '2', '8939347493', '', 'navink2015@gmail.com', '1996-07-26', 24, '2', '2', 'manoharan', 'clerk', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2101220002', '1', '1', 'upload_files/candidate_tracker/46767901102_NAVIN_2.pdf', NULL, NULL, '2021-01-24', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task Incompleted.', '2', '2', '0', '1', '1', '0', '2', '2021-01-27', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-22 11:13:18', 1, '2021-01-22 11:17:56', 0, NULL, 1),
(3029, 'cithravel', '13', '7010702133', '', 'cithravel@gmail.com', '1990-06-02', 30, '2', '1', 'solai', 'formar', 70000.00, 2, 430000.00, 700000.00, 'chennai', 'chennai', '2101220003', '1', '2', 'upload_files/candidate_tracker/63925891191_Cithravel S.pdf', NULL, NULL, '2021-01-23', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Response from him.', '2', '1', '', '1', '1', '', '2', '2021-01-30', '3', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-22 12:53:00', 7, '2021-01-22 05:15:17', 0, NULL, 1),
(3030, 'Seenivasan', '13', '9894411727', '', 'gsiva512@gmail.com', '1992-02-25', 28, '2', '2', 'Muthumariammal', 'Homemaker', 35000.00, 1, 4.20, 4.50, 'Sivakasi', 'Chennai', '2101220004', '1', '2', 'upload_files/candidate_tracker/42219366709_1611310597721_Resume.docx', NULL, NULL, '2021-01-23', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Issue, High CTC Expectation', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-22 03:49:46', 1, '2021-01-22 03:53:40', 0, NULL, 1),
(3031, 'Mohan raj', '13', '8754536151', '', 'mohan.smiles881@gmail.com', '1999-01-05', 22, '2', '2', 'Arumugam', 'Gas mechanic', 30000.00, 1, 15000.00, 25000.00, 'K.k.nagar chennai', 'K.k.nagar chennai', '2101220005', '1', '2', 'upload_files/candidate_tracker/78399595648_A.mohan raj resume.docx', NULL, NULL, '2021-01-23', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task not fully completed. If he is ready to work with same salary we can offer.', '2', '1', '', '1', '1', '', '2', '2021-01-23', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-22 06:39:57', 60, '2021-01-23 10:20:46', 0, NULL, 1),
(3032, 'vigneshwaran a', '5', '9566639365', '', 'vigneshwara5665@gmail.com', '1995-09-12', 25, '2', '1', 'thaju nisha', 'none', 16000.00, 1, 16000.00, 18000.00, 'chennai', 'chennai', '2101220006', '3', '2', 'upload_files/candidate_tracker/77332023350_vicky updated resume.pdf', NULL, NULL, '2021-01-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Insurance based exp, High CTC Exp, Sustainability Issue', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-22 08:03:15', 1, '2021-01-22 08:07:17', 0, NULL, 1),
(3033, 'Lalitha', '4', '9710548336', '8072459442', 'plalitha15061994@gmail.com', '1994-04-15', 26, '2', '1', 'Ramen karki', 'admin', 20000.00, 3, 13000.00, 15000.00, 'No 29 vivekanandar street mgr Nagar chennai', 'mgr nagar', '2101230001', '1', '2', 'upload_files/candidate_tracker/33256659425_New Document 2021-0-23 10.17.41.pdf', NULL, NULL, '2021-01-23', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Relevant Exp will not fit to CRM/Esales', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-23 10:07:44', 1, '2021-01-23 10:24:53', 0, NULL, 1),
(3034, 'Alagu Ayyappan P', '2', '9962445971', '9940321449', 'alaguayyappan8@gmail.com', '1997-08-28', 23, '2', '2', 'K Pasupathi', 'Manager', 70000.00, 0, 20000.00, 30000.00, 'B/2, Radial House, Jafferkhanpet, Chennai-600083', 'B/2, Radial House, Jafferkhanpet, Chennai-600083', '2101230002', '1', '2', 'upload_files/candidate_tracker/95281926063_1611129110270Resume_Alagu.pdf', NULL, NULL, '2021-01-24', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task Incompleted. Getting Many Errors.', '2', '1', '0', '1', '1', '0', '2', '2021-01-25', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-23 11:34:55', 1, '2021-01-23 11:57:34', 0, NULL, 1),
(3035, '', '0', '9003300456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101230003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-23 01:41:09', 0, NULL, 0, NULL, 1),
(3036, 'Priyadharshini N', '2', '8825580189', '', 'Priyanatarajanbe@gmail.com', '1996-03-11', 24, '2', '1', 'Manigandan M', 'Medical coding', 60000.00, 2, 400000.00, 600000.00, 'Chennai', 'Chennai', '2101230004', '1', '2', 'upload_files/candidate_tracker/84566264057_resume_1598855168148.pdf', NULL, NULL, '2021-02-01', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-23 04:13:56', 1, '2021-01-23 04:32:34', 0, NULL, 1),
(3037, 'Manivannan K', '13', '9025594350', '', 'manivannan277@gmail.com', '1996-02-06', 24, '2', '2', 'Kasthuri Kannan', 'Daily Wages', 8000.00, 1, 0.00, 12000.00, 'Dindigul', 'Dindigul', '2101240001', '1', '1', 'upload_files/candidate_tracker/80420875546_My Resume.pdf', NULL, NULL, '2021-01-25', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Dont know the Basics.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-24 06:20:42', 1, '2021-01-24 06:24:27', 0, NULL, 1),
(3038, 'krishna vamsi', '13', '9361729458', '', 'krishdkv@gmail.com', '1998-05-19', 22, '2', '2', 'venkatesh', 'hostel manager', 20000.00, 1, 220000.00, 300000.00, 'chennai', 'royapettah', '2101240002', '1', '2', 'upload_files/candidate_tracker/84383508342_vamsiV7.3.pdf', NULL, NULL, '2021-01-28', 10, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He dont have a good knowledge in Technical', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-24 11:16:41', 60, '2021-01-28 11:59:08', 0, NULL, 1),
(3039, '', '0', '6369160768', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101250001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-25 10:11:41', 0, NULL, 0, NULL, 1),
(3040, 'Rajesh kumar k', '6', '8667879961', '7401553372', 'Krajeshkumar417@gmail.com', '1995-11-20', 25, '3', '2', 'Parents', 'Farmer', 10000.00, 4, 18500.00, 20000.00, 'Tirukkovilur', 'Chennai new Washermanpent', '2101250002', '', '2', 'upload_files/candidate_tracker/37722610029_RAJESH kumar....pdf', NULL, '1', '2021-08-07', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-25 11:42:17', 60, '2021-08-07 03:39:26', 0, NULL, 1),
(3041, 'rajesh kumar', '6', '7401553372', '7358336043', 'krajeshkumar417@gmail.com', '1995-11-20', 25, '1', '2', 'kathirvel', 'farmar', 15000.00, 1, 17000.00, 20000.00, 'villuppuram', 'tondaiyarpet', '2101250003', '', '2', 'upload_files/candidate_tracker/68820250313_TapScanner 01-25-2021-11.46 (1).pdf', NULL, NULL, '2021-01-25', 0, 'p1159', '8', '22', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'kindly allocate for second round ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-25 12:21:58', 60, '2021-01-25 12:44:57', 0, NULL, 1),
(3042, 'rakhesh dhevaraj ps', '2', '9791145114', '8072549729', 'rakheshdhevaraj@gmail.com', '1996-08-21', 24, '2', '2', 'shanmugam', 'railway coupler', 18000.00, 0, 200000.00, 400000.00, 'chennai', 'chennai', '2101250004', '1', '2', 'upload_files/candidate_tracker/51524300203_rakhesh dhevaraj resume.pdf', NULL, NULL, '2021-01-30', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude is not good.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-25 03:07:58', 60, '2021-01-30 10:00:24', 0, NULL, 1),
(3043, 'Kalimani M', '28', '9344551928', '', 'kalimanibbaaj@gmail.com', '1998-05-27', 23, '2', '2', 'Marimuthu', 'Clerk', 10000.00, 2, 0.00, 15000.00, 'Satchiyapuram, Sivakasi', 'Chennai, Tambaram', '2101250005', '1', '1', 'upload_files/candidate_tracker/82933308015_latest resume M. kalimani .pdf', NULL, '3', '2021-10-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-25 03:38:41', 1, '2021-09-30 04:17:13', 0, NULL, 1),
(3044, '', '0', '9097969261', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101250006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-25 04:54:22', 0, NULL, 0, NULL, 1),
(3045, 'Praveen', '3', '6382722665', '', 'praveenraina96@gmail.com', '1996-11-27', 24, '2', '2', 'rajendran', 'business', 10.00, 1, 4.00, 6.00, 'chennai', 'chennai', '2101250007', '1', '2', 'upload_files/candidate_tracker/94198755482_Praveen', NULL, NULL, '2021-01-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-25 07:37:49', 7, '2021-01-30 05:31:04', 0, NULL, 1),
(3046, 'Ashutosh', '2', '9500137193', '', 'awesumashu97@gmail.com', '1997-09-14', 23, '2', '2', 'Ranveer Pratap Singh', 'Production Manager', 8.00, 1, 1.44, 3.50, 'Chennai', 'Chennai', '2101260001', '1', '2', 'upload_files/candidate_tracker/40485314335_ashu_finalresume (1).pdf', NULL, NULL, '2021-01-28', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Donxquott get any response.', '2', '2', '', '2', '2', '', '2', '2021-02-02', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-26 02:05:52', 60, '2021-01-28 12:05:46', 0, NULL, 1),
(3047, 'S.hari krishnan', '23', '7904482403', '', 'Ranjithapr1699@gmail.com', '1999-04-16', 21, '2', '2', 'S.k.subbu raj', 'Former', 12000.00, 0, 0.00, 13000.00, 'Dindigul', 'Dindigul', '2101260002', '1', '1', 'upload_files/candidate_tracker/88319537605_hk resume.docx', NULL, NULL, '2021-01-27', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is Looking for an Internship.Intern for UI/UX not Required.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-26 11:24:54', 60, '2021-01-27 11:27:02', 0, NULL, 1),
(3048, '', '0', '6384601524', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101260003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-26 01:51:13', 0, NULL, 0, NULL, 1),
(3049, 'Kaviraj K', '6', '7397483002', '8124897047', 'kavirajkumarasan@gmail.com', '1986-05-21', 34, '1', '1', 'Thavamani.M', 'Housewife', 15000.00, 3, 24000.00, 27000.00, 'Chennai', 'Chennai', '2101270001', '', '2', 'upload_files/candidate_tracker/21762114621_Kaviraj Resume .doc', NULL, NULL, '2021-01-27', 1, '55616', '5', '29', NULL, 0.00, '', '0', NULL, '1', 'will not suit', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-27 10:58:38', 1, '2021-01-27 11:13:19', 0, NULL, 1),
(3050, 'T.Beema', '4', '8925302953', '9047820877', 'beematamilarasan@gmail.com', '1998-03-26', 22, '1', '2', 'N.Tamilarasan', 'B.Sc.It', 30000.00, 3, 15000.00, 15000.00, 'No:113,mannampadi village,Vilankatur Post.Veppurtk', 'T.Nagar', '2101270002', '', '2', 'upload_files/candidate_tracker/34018530294_bema.pdf', NULL, NULL, '2021-01-27', 0, '5560', '5', '8', NULL, 0.00, '', '4', '2023-02-02', '2', 'not genuine lot of miss communication about her salary. absconded from last company. exp sal is 15k.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-27 11:12:06', 1, '2021-01-27 11:29:51', 0, NULL, 1),
(3051, 'Mahasum rizwan', '5', '8122170192', '8508234249', 'mahasoomrizwan@gmail.com', '1998-01-28', 23, '2', '2', 'Akbar Ali', 'Sales manager', 20000.00, 1, 0.00, 14000.00, 'Thiruvarur', 'Tambaram', '2101270003', '1', '1', 'upload_files/candidate_tracker/18081438894_MAHASUM RIZWAN A.pdf', NULL, NULL, '2021-02-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate didnt turned for the second round of Discussion', '5', '2', '', '1', '1', '', '2', '2021-02-09', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-27 12:31:39', 50, '2021-02-04 12:22:39', 0, NULL, 1),
(3052, 'Kanchana', '4', '7639663340', '9841189380', 'gurusrikanchana@gmail.com', '1990-03-04', 30, '3', '1', 'Kuberan', 'Carpenter', 10000.00, 2, 13000.00, 15000.00, 'Arignar Anna colony, north killambakkam', 'Vandalur zoo- otteri', '2101270004', '', '2', 'upload_files/candidate_tracker/75903162593_63506208869_4ad47b17930a97da1b6dcbb8813f858282b6b365.pdf', NULL, NULL, '2021-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'only non voice exp, Distance issue, will not fit for sales ', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-27 01:10:55', 1, '2021-01-27 01:41:26', 0, NULL, 1),
(3053, 'Mahesh kumar', '5', '9962660319', '7010092715', 'rmahesh6@yahoo.com', '1994-11-06', 26, '2', '2', 'G.Ravi chandran', 'Retaied', 20000.00, 2, 20000.00, 26000.00, 'Kodungaiyur', 'Kodungaiyur', '2101270005', '1', '2', 'upload_files/candidate_tracker/2616251797_MAHESH-RESUME.docx', NULL, NULL, '2021-01-29', 60, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no Relevant exp, 60 days notice and not int in customer support. current th is 20k and exp 30%', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-27 02:35:33', 60, '2021-01-29 12:53:04', 0, NULL, 1),
(3054, 'vignesh', '2', '7397591198', '', 'poppyseed6464@gmail.com', '1998-08-26', 22, '2', '2', 'chandrasekaran', '.', 11000.00, 1, 0.00, 200000.00, 'Cuddalore', 'chennai', '2101270006', '1', '1', 'upload_files/candidate_tracker/9269963656_resume vignesh .pdf', NULL, NULL, '2021-01-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 02:53:37', 7, '2021-01-30 05:19:13', 0, NULL, 1),
(3055, 'Abhilash', '2', '9566041009', '', 'abiakhil69@gmail.com', '1997-12-03', 23, '2', '2', 'Lakshmaiah and pushpa', 'Attender', 10000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2101270007', '1', '1', 'upload_files/candidate_tracker/47913675131_abi cv.pdf', NULL, NULL, '2021-01-30', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not Completed.', '2', '2', '0', '1', '1', '0', '2', '2021-02-01', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 02:58:47', 1, '2021-01-27 03:06:31', 0, NULL, 1),
(3056, 'nanda kumar', '2', '7401508304', '', 'nandakumar18495@gmail.com', '1995-04-18', 25, '2', '2', 'mahesh', 'finance', 25000.00, 2, 300000.00, 650000.00, 'chennai', 'chennai', '2101270008', '1', '2', 'upload_files/candidate_tracker/95674508175_Nanda-Resume.docx', NULL, NULL, '2021-01-28', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 03:03:35', 1, '2021-01-27 03:17:43', 0, NULL, 1),
(3057, '', '0', '9884164463', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101270009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-27 03:11:20', 0, NULL, 0, NULL, 1),
(3058, 'Harish', '5', '9381818205', '', 'harishram181818@gmail.com', '1988-11-01', 32, '2', '2', 'Ramachandra', 'Farmer', 10000.00, 0, 20.00, 30.00, 'Anantapur', 'Marathahalli', '2101270010', '1', '2', 'upload_files/candidate_tracker/66256012260_Harish Resume-(2020 ).doc', NULL, NULL, '2021-01-27', 0, '', '5', '68', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Back End Jobs, ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-27 05:12:27', 7, '2021-01-27 05:37:28', 0, NULL, 1),
(3059, 'Chanthiran', '13', '9942980143', '', 'chanthirane@gmail.com', '1997-06-05', 23, '2', '2', 'Elumalai', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Villupuram', 'Chennai', '2101270011', '1', '1', 'upload_files/candidate_tracker/56675075953_Chandru Resume-2.pdf', NULL, NULL, '2021-02-02', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not completed.', '2', '2', '', '1', '1', '', '2', '2021-02-05', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 05:54:04', 50, '2021-02-02 10:59:17', 0, NULL, 1),
(3060, 'lakshmi priya', '2', '9791726643', '9489705650', 'lakshpriya9392@gmail.com', '1992-03-09', 28, '2', '1', 'ashwin nandhakumar', 'home maker', 60000.00, 1, 0.00, 350000.00, 'vellore', 'chennai', '2101270012', '1', '1', 'upload_files/candidate_tracker/74917671695_Lakshmi_priyaresume.pdf', NULL, NULL, '2021-01-28', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Donxquott have an experience in MERN. She is a front end developer. ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 06:03:17', 1, '2021-01-27 10:08:01', 0, NULL, 1),
(3061, 'M.Rajeshwari', '2', '9176919821', '9514710106', 'rajeshwarimp.cse@gmail.com', '1997-01-30', 23, '2', '2', 'A.Mayavan', 'Book binding', 25000.00, 2, 13000.00, 20000.00, 'Chennai', 'Chennai', '2101270013', '1', '2', 'upload_files/candidate_tracker/86651711088_UpdatedResume.doc', NULL, NULL, '2021-02-03', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She donxquott have a basic knowledge.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 06:06:36', 50, '2021-02-03 10:57:01', 0, NULL, 1),
(3062, '', '0', '7660839787', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101270014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-27 06:09:07', 0, NULL, 0, NULL, 1),
(3063, 'r mohan raj', '6', '8667282087', '', 'manimohan1995@gmail.com', '1995-05-10', 25, '2', '2', 'none', 'none', 23000.00, 0, 23000.00, 25000.00, 'chennai', 'chennai', '2101270015', '3', '2', 'upload_files/candidate_tracker/47073106655_RESUME mohan final.docx', NULL, NULL, '2021-02-08', 0, '', '3', '8', '1970-01-01', 189480.00, '', '2', '1970-01-01', '1', 'For Guru Team, CTC 15790', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-27 06:26:39', 7, '2021-02-11 06:47:48', 0, NULL, 1),
(3064, 'Sureshkrishnan', '2', '8667638113', '', 'sureshkrishnan4771110@gmail.com', '1998-06-03', 22, '2', '2', 'Sudalai', 'Shop keeper', 500000.00, 2, 290000.00, 350000.00, 'Tirunelveli', 'Tirunelveli', '2101270016', '1', '2', 'upload_files/candidate_tracker/84982722516_Sureshkrishnan-Resume.pdf', NULL, NULL, '2021-01-30', 15, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He donxquott know the React. But we required MERN', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 06:28:42', 60, '2021-01-30 09:49:22', 0, NULL, 1),
(3065, 'kumari n.m.', '2', '9940527528', '', 'kumari96sri@gmail.com', '1996-10-31', 24, '2', '2', 'mani n.g', 'wevers', 12000.00, 1, 10000.00, 30000.00, 'chennai', 'chennai', '2101270017', '1', '2', 'upload_files/candidate_tracker/26122380_updated resume (2).docx', NULL, NULL, '2021-01-29', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not completed the task.', '2', '2', '', '1', '1', '', '2', '2021-01-29', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 06:48:56', 60, '2021-01-29 09:58:49', 0, NULL, 1),
(3066, 'Gopi Kumar', '13', '9551527356', '', 'gopikumar28@gmail.com', '1998-10-28', 22, '2', '2', 'Sekar', 'Business', 30.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2101270018', '1', '1', 'upload_files/candidate_tracker/20844007567_myresume.pdf', NULL, NULL, '2021-01-28', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Couldnot completed the task.', '2', '2', '', '1', '1', '', '2', '2021-02-04', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 08:58:54', 60, '2021-01-28 01:01:03', 0, NULL, 1),
(3067, '', '0', '9791901997', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101280001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-28 12:11:04', 0, NULL, 0, NULL, 1),
(3068, '', '0', '7406909965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101280002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-28 08:28:39', 0, NULL, 0, NULL, 1),
(3069, 'kalaislevan', '2', '7010618078', '8675715184', 'skmmech04@gmail.com', '1996-06-04', 24, '2', '2', 'sabapathi', 'dailywages', 6500.00, 1, 0.00, 200000.00, 'salem', 'chennai', '2101280003', '1', '1', 'upload_files/candidate_tracker/6447072796_KALAI SE (1).pdf', NULL, NULL, '2021-01-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Exp in React, Focus on the salary Part, will not sustain', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-28 08:45:56', 60, '2021-01-28 12:13:10', 0, NULL, 1),
(3070, 'Nandhini G', '13', '7358280056', '9380197954', 'gnandy016@gmail.com', '1996-10-16', 24, '2', '2', 'KM.Ganesh', 'Turnering Business', 150000.00, 1, 0.00, 13000.00, 'No 43 ponmana chemmal Street kk nagar Chennai', 'No 43 ponmana chemmal street kk nagar Chennai', '2101280004', '1', '1', 'upload_files/candidate_tracker/27829718334_Nandhini.pdf', NULL, NULL, '2021-01-28', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'She donxquott have  a knowledge in PHP Mysql. ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-28 10:28:26', 1, '2021-01-28 11:29:17', 0, NULL, 1),
(3071, 'Mohammed Asif A', '5', '9790764819', '', 'amohammedasif200@gmail.com', '1997-09-20', 23, '1', '2', 'Almas A', 'Tailor', 25000.00, 0, 24000.00, 30000.00, 'Chennai', 'Chennai', '2101280005', '', '2', 'upload_files/candidate_tracker/9033519808_1611319938427_0_Asif Resume .docx', NULL, NULL, '2021-01-28', 0, '55598', '3', '8', '2021-02-01', 279276.00, '', '3', '2021-02-18', '1', '23273 gross sal. for rajkumar team. in patroniss.', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-28 10:36:15', 60, '2021-02-03 09:44:59', 0, NULL, 1),
(3072, 'Jagadeesh', '5', '9840806779', '7904955071', 'JAIJAGDEESH13@GMAIL.COM', '1994-10-13', 26, '1', '2', 'Sumathi', 'Supervisor', 20000.00, 2, 32000.00, 40000.00, 'Chennai', 'Chennai', '2101280006', '', '2', 'upload_files/candidate_tracker/51157980819_Jagdeesh Resumee.docx.pdf', NULL, NULL, '2021-01-28', 0, '55598', '3', '8', '2021-02-01', 328800.00, '', '5', '1970-01-01', '1', '27400 gross and 23592 as net  with pf.', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-28 10:36:41', 7, '2021-01-30 03:50:51', 0, NULL, 1),
(3073, '', '0', '9940798659', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101280007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-28 10:45:18', 0, NULL, 0, NULL, 1),
(3074, 'Dhivakar Srinivasan', '22', '8754552710', '9789958263', 'dhivakrishna1530@gmail.com', '1996-10-15', 24, '2', '2', 'Srinivasan.K', 'Driver', 20000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2101280008', '1', '1', 'upload_files/candidate_tracker/22316350249_1610955531534_Updated Resume Dhiva-180121.docx', NULL, NULL, '2021-02-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-01-28 11:00:16', 1, '2021-01-28 11:05:46', 0, NULL, 1),
(3075, '', '0', '9941671655', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101280009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-28 11:12:09', 0, NULL, 0, NULL, 1),
(3076, 'karpagam', '13', '8681897170', '8754319188', 'karpgamviky@gmail.com', '1995-05-26', 25, '2', '2', 'muthusamy', 'ariyalur', 20000.00, 0, 13000.00, 25000.00, 'ariyalur', 'chennai', '2101280010', '1', '2', 'upload_files/candidate_tracker/16179833948_karpagamresume (1).pdf', NULL, NULL, '2021-01-30', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Latha taken the interview. She donxquott have that much knowledge in technical.', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-28 11:40:36', 7, '2021-01-30 05:30:39', 0, NULL, 1),
(3077, 'bharrhath h', '13', '9789709238', '', 'bharrhathbolt@gmail.com', '1999-01-17', 22, '2', '2', 'hareesh', '-', 15000.00, 1, 0.00, 15000.00, 'maduravoyal', 'maduravoyal', '2101280011', '1', '1', 'upload_files/candidate_tracker/93114857024_1610793675943Resume_Bharrhath.pdf', NULL, NULL, '2021-01-29', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Not attend the system task.', '2', '1', '0', '1', '1', '0', '2', '2021-01-29', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-28 01:08:02', 1, '2021-01-29 12:23:27', 0, NULL, 1),
(3078, 'Vishal', '23', '9962135401', '', 'vishalsowri007@gmail.com', '1998-07-12', 22, '3', '2', 'sowrirajan', 'area sales manager', 40000.00, 1, 0.00, 200000.00, 'Avadi', 'Avadi', '2101280012', '', '1', 'upload_files/candidate_tracker/97203626491_Vishal_profile.docx', NULL, NULL, '2021-01-30', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not meet our expectations', '2', '2', '', '1', '1', '', '2', '2021-02-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-28 01:10:28', 60, '2021-01-30 11:02:51', 0, NULL, 1),
(3079, 'Narasimman', '13', '9597261263', '', 'narasimmanchimu0@gmail.com', '1993-04-10', 27, '2', '2', 'Palanivel', 'Bank manager', 5.00, 2, 30000.00, 35000.00, 'Namakkal', 'Namakkal', '2101280013', '1', '2', 'upload_files/candidate_tracker/56023681234_NARASIMMAN P.docx', NULL, NULL, '2021-01-28', 1, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No response from him.', '2', '2', '0', '1', '1', '0', '2', '2021-01-29', '2', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-28 01:13:52', 1, '2021-01-28 01:17:51', 0, NULL, 1),
(3080, 'R.Ananthi', '4', '7448501768', '7358050079', 'ammuananthi16@gmail.com', '1999-05-15', 21, '2', '2', 'K.Raju', 'Farmer', 9000.00, 1, 0.00, 10000.00, 'Chennai', 'Thiruporur', '2101280014', '1', '1', 'upload_files/candidate_tracker/62511602717_Ananthi.docx', NULL, NULL, '2021-01-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-28 01:42:34', 7, '2021-01-30 05:19:47', 0, NULL, 1),
(3081, 'Sakthivel', '23', '9087936553', '', 'sakthiv3495@gmail.com', '1995-04-03', 25, '2', '2', 'Vijayan', 'Farmers', 25000.00, 2, 25000.00, 30000.00, 'Villupuram', 'Chennai', '2101280015', '1', '2', 'upload_files/candidate_tracker/55266887426_Sakthi_Updated Resume.pdf', NULL, NULL, '2021-01-30', 15, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is a trainer. he dont know about the technologies which is required.\n', '2', '2', '', '2', '2', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-28 06:02:57', 60, '2021-01-30 11:08:46', 0, NULL, 1),
(3082, 'M Raghavendran', '6', '8637611859', '7358004915', 'ragavar17@gmail.com', '1995-08-02', 25, '2', '2', 'K Mohan', 'Catering', 15000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai Villivakkam', '2101280016', '1', '1', 'upload_files/candidate_tracker/6249352302_Ragava resume .docx', NULL, NULL, '2021-01-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'looking for non voice, Will Not Handle Pressure And Sustain And Will Not Suite For Re.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-28 06:46:55', 8, '2021-01-29 02:54:00', 0, NULL, 1),
(3083, 'Kuntrapakam yugandhar', '5', '9676765779', '9182144804', 'Pranamnuv26@gmail.com', '1996-09-05', 24, '1', '2', 'Nagaraju. K', 'Agriculture', 10000.00, 2, 0.00, 20000.00, 'Tirupathi', 'Madiwala', '2101290001', '', '1', 'upload_files/candidate_tracker/76463190874_Krupa Anna CV (1).pdf', NULL, NULL, '2021-01-29', 0, 'P1157', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-29 10:44:26', 60, '2021-01-29 07:26:41', 0, NULL, 1),
(3084, 'm.rajeswari', '25', '9487290710', '', 'rajimadhavan@gmail.com', '1998-06-05', 22, '2', '2', 'madhavan', 'banking', 50000.00, 2, 12500.00, 20000.00, 'krishnagiri', 'guindy', '2101290002', '1', '2', 'upload_files/candidate_tracker/61042555065_CV - Raji (1).docx', NULL, NULL, '2021-01-29', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CRM profile, fresher for calling, has exp in kyc. will not suite for esales. sis working in hdfc life. sal exp is too high will not handle pressure and sustain.', '8', '2', '', '1', '1', '', '2', '1970-01-01', '2', '6', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-29 11:04:00', 8, '2021-01-29 02:49:00', 0, NULL, 1),
(3085, 'Daphine Rosary.C', '5', '8778910798', '', 'daphinerosary@gmail.com', '1999-10-08', 21, '1', '2', 'Christopher.K', 'Lawyer', 120000.00, 1, 0.00, 18000.00, 'Pallavaram', 'Pallavaram', '2101290003', '', '1', 'upload_files/candidate_tracker/73496228836_P1090.pdf', NULL, NULL, '2021-01-29', 0, 'P1122', '3', '8', '1970-01-01', 126600.00, '', '2', '1970-01-01', '2', '10k th for keerthiga team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-29 12:09:29', 60, '2021-02-01 11:08:02', 0, NULL, 1),
(3086, 'Venkatesh', '2', '8148914656', '', 'venkatdevit@gmail.com', '1994-06-25', 26, '2', '2', 'Devarajilu', 'Driver', 15000.00, 1, 250000.00, 500000.00, 'Chidambaram', 'Chennai', '2101290004', '1', '2', 'upload_files/candidate_tracker/98302202529_venkatesh_resume.pdf', NULL, NULL, '2021-01-30', 2, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task not completed. he knows only front end.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-29 12:23:59', 60, '2021-01-30 09:58:15', 0, NULL, 1),
(3087, 'Marichandru M', '5', '9176744895', '8939712137', 'Harichandru00178@gmail.com', '1999-09-11', 21, '3', '2', 'Thangam', 'No', 15000.00, 0, 18000.00, 20000.00, 'Kolathur', 'Kolathur', '2101290005', '', '2', 'upload_files/candidate_tracker/37301296378_MARI.pdf', NULL, NULL, '2021-01-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sales Exp, will not sustain for a long', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-29 01:24:55', 60, '2021-01-29 02:40:48', 0, NULL, 1),
(3088, 'V mageshwaran', '5', '8056160507', '7358633130', 'vinayagamagesh0@gmail.com', '1997-08-05', 23, '2', '2', 'Vinayagamoorthy s k', 'Electrician', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2101290006', '1', '1', 'upload_files/candidate_tracker/77405263537_1598945252946Resume_mahesh.pdf', NULL, NULL, '2021-01-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response will not join', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-29 02:47:00', 50, '2021-02-05 04:43:14', 0, NULL, 1),
(3089, 'Kriston Fernando', '2', '9884395255', '', 'krisnithi.23@gmail.com', '1997-06-23', 23, '2', '2', 'Bryan Fernando', 'Buisness', 40000.00, 1, 4.20, 7.50, 'Chennai', 'Chennai', '2101290007', '1', '2', 'upload_files/candidate_tracker/70174896629_kristonresume (1).pdf', NULL, NULL, '2021-01-30', 60, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Upto our level.', '2', '2', '', '1', '1', '', '2', '2021-02-02', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-29 03:48:57', 60, '2021-01-30 11:42:05', 0, NULL, 1),
(3090, 'Kumarasen.s', '5', '7708739518', '9025696422', 'Kumarsubramani1995@gmail.com', '1995-10-15', 25, '2', '2', 'Subramani.k', 'Bussness', 70000.00, 1, 18600.00, 25000.00, 'No 59bharathi nagar veppampattu', 'Veppampattu', '2101290008', '1', '2', 'upload_files/candidate_tracker/1983425853_Kumar final.docx', NULL, NULL, '2021-02-01', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-29 04:03:07', 1, '2021-01-29 04:10:39', 0, NULL, 1),
(3091, 'yogeshwari', '2', '9566214468', '', 'yogeragavan@gmail.com', '1995-06-14', 25, '2', '2', 'veeraragavan', 'nil', 40000.00, 2, 300000.00, 370000.00, 'chennai', 'chennai', '2101290009', '1', '2', 'upload_files/candidate_tracker/63897871403_YOGESHWARI resume (2) (1).pdf', NULL, NULL, '2021-01-30', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'UI Design not Good.', '2', '2', '', '1', '1', '', '2', '2021-02-02', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-29 04:40:18', 60, '2021-01-30 10:30:05', 0, NULL, 1),
(3092, '', '0', '6380180308', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101290010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-29 05:39:01', 0, NULL, 0, NULL, 1),
(3093, 'K S Arvind', '2', '7397355105', '', 'arvindks2697@gmail.com', '1997-10-26', 23, '2', '2', 'G Kannan', 'Self Employed', 70000.00, 1, 1.00, 350000.00, 'Chennai', 'Chennai', '2101290011', '1', '2', 'upload_files/candidate_tracker/79798800293_ResumeArvind13122020-SinglePage-Print.pdf', NULL, NULL, '2021-01-30', 45, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task Not working properly.', '2', '2', '', '1', '1', '', '2', '2021-02-02', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-29 06:34:58', 60, '2021-01-30 03:07:28', 0, NULL, 1),
(3094, 'vijay kandhasamy', '2', '9043823549', '', 'vijaymac01@gmail.com', '1997-08-26', 23, '2', '2', 'kandhasamy', 'weaver', 20000.00, 1, 2.60, 3.20, 'kanchipuram', 'chennai', '2101290012', '1', '2', 'upload_files/candidate_tracker/62300026445_Vijay K Re.pdf', NULL, NULL, '2021-02-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-29 07:55:58', 1, '2021-01-29 08:01:21', 0, NULL, 1),
(3095, 'iionel richard', '5', '9092782826', '', 'richpillais@gmail.com', '1993-09-07', 27, '4', '2', 'sivakumar pillai', 'retired', 6000000.00, 1, 0.00, 450000.00, 'chennai', 'chennai', '2101300001', '', '2', 'upload_files/candidate_tracker/29832443637_LR_CV_2021.pdf', NULL, NULL, '2021-01-30', 0, '', '3', '8', '2021-02-01', 312000.00, '', '2', '1970-01-01', '1', '26ctc with pf Shanmugam team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-30 10:27:24', 7, '2021-02-01 10:44:52', 0, NULL, 1),
(3096, 'Mythili raju', '4', '9790739676', '', 'mythiliravi3986@gmail.com', '1986-09-03', 34, '2', '1', 'Vimala', 'Working', 35000.00, 2, 20000.00, 20000.00, 'Chitlapakam', 'Chitlapakam', '2101300002', '1', '2', 'upload_files/candidate_tracker/59288366135_MYTHILI - Customer Service.docx', NULL, NULL, '2021-01-30', 15, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She is not suitable for sales process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-30 11:00:34', 8, '2021-01-30 11:56:05', 0, NULL, 1),
(3097, '', '0', '8056163126', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101300003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-30 11:12:25', 0, NULL, 0, NULL, 1),
(3098, 'Dinesh', '13', '7299432408', '', 'dineshp003@gmail.com', '1991-05-27', 29, '1', '2', 'Panneerselvam R', 'Farmer', 25000.00, 1, 20000.00, 35000.00, 'Chennai', 'Chennai', '2101300004', '', '2', 'upload_files/candidate_tracker/81539270299_DInesh.pdf', NULL, NULL, '2021-04-27', 1, 'Jobs', '6', '9', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not completed the task.', '2', '2', '', '1', '1', '', '2', '2021-01-30', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-30 11:19:42', 60, '2021-04-27 07:47:00', 0, NULL, 1),
(3099, '', '0', '9715356423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101300005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-30 12:38:03', 0, NULL, 0, NULL, 1),
(3100, 'B sathish kumar', '5', '7305305492', '9003280590', 'sathishkumr96@gmail.com', '1997-05-15', 23, '2', '1', 'Devi', 'Household', 16000.00, 2, 16000.00, 20000.00, 'Perambur, chennai', 'Perambur, chennai', '2101300006', '1', '2', 'upload_files/candidate_tracker/79119220874_Sathish Resume dec 2020.pdf', NULL, NULL, '2021-02-01', 2, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response. will not join', '5', '2', '', '1', '1', '', '2', '2021-02-02', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-30 03:48:53', 50, '2021-02-01 01:25:51', 0, NULL, 1),
(3101, '', '0', '8838502787', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101300007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-30 05:29:18', 0, NULL, 0, NULL, 1),
(3102, 'Anuraj ar', '5', '9591107371', '', 'ar.anuraj@yahoo.in', '1977-10-04', 43, '2', '2', 'Ayappan pillai', 'Kscdc', 20000.00, 0, 33000.00, 35000.00, 'Kerala', 'Bangalore', '2101310001', '14', '2', 'upload_files/candidate_tracker/50022914573_rabang.doc', NULL, NULL, '2021-02-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-31 11:21:31', 1, '2021-01-31 11:37:23', 0, NULL, 1),
(3103, '', '0', '8668028001', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101310002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-31 02:55:35', 0, NULL, 0, NULL, 1),
(3104, 'mohana sundaram p', '5', '8124755847', '', 'sundarsen07@gmail.com', '1998-07-26', 22, '2', '2', 'none', 'none', 25000.00, 0, 15500.00, 18000.00, 'Chennai', 'Chennai', '2101310003', '3', '2', 'upload_files/candidate_tracker/39456069370_RESUME Mohana sundaram(1).pdf', NULL, NULL, '2021-02-02', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'left before interview', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-31 02:59:48', 50, '2021-02-02 12:34:17', 0, NULL, 1),
(3105, 'sivakumar l', '13', '6381339278', '', 'sivakumarlingaraj18@gmail.com', '1999-08-18', 21, '2', '2', 'lingaraj p', 'na', 10000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2101310004', '1', '1', 'upload_files/candidate_tracker/6791792061_sivakumar.doc', NULL, NULL, '2021-02-01', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dont have a knowledge in PHP.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-31 05:55:11', 50, '2021-02-01 11:21:18', 0, NULL, 1),
(3106, 's parthian', '6', '7339067266', '', 'sparthian.randy@gmail.com', '1994-01-04', 27, '2', '1', 'malini', 'none', 15000.00, 3, 15000.00, 18000.00, 'chennai', 'chennai', '2101310005', '3', '2', 'upload_files/candidate_tracker/17310867683_PARTHIBAN RESUME.pdf', NULL, NULL, '2021-02-01', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sale', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-31 09:34:27', 8, '2021-02-01 01:18:33', 0, NULL, 1),
(3107, 'Arockia Prabu', '4', '9677507284', '', 'arockiyaprabu@gmail.com', '1995-05-10', 25, '2', '2', 'Alexander', 'Farmer', 7000.00, 2, 0.00, 16000.00, 'Muhilthagam,(po), Ramanad-623403', '24B, High School Rd Ambattur, Tamil Nadu 600053', '2102010001', '14', '2', 'upload_files/candidate_tracker/28558736636_Resume.docx', NULL, NULL, '2021-02-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, not interested in  sales.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-01 09:00:45', 8, '2021-02-01 01:20:53', 0, NULL, 1),
(3108, 'S. Felix', '5', '7448320204', '9677285931', 'Anirudhprashanth400@gmail.com', '1996-07-04', 24, '2', '2', 'Jyothi', 'House wife', 15000.00, 3, 15500.00, 18000.00, 'Kodungaiyur', 'Kodungaiyur', '2102010002', '1', '2', 'upload_files/candidate_tracker/2797505385_ felix cv.pdf', NULL, NULL, '2021-02-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response will not join', '5', '2', '0', '1', '1', '0', '2', '2021-02-02', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-01 10:18:28', 1, '2021-02-01 10:27:19', 0, NULL, 1),
(3109, '', '0', '6379766649', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102010003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-01 10:21:25', 0, NULL, 0, NULL, 1),
(3110, '', '0', '9840563091', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102010004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-01 10:32:35', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3111, 'jagadish rajendran', '6', '8072785806', '8870000538', 'jagadishr27@gmail.com', '1991-07-27', 29, '2', '1', 'rajendran', 'farmer', 40000.00, 2, 14000.00, 20000.00, 'tirupattur', 'porur', '2102010005', '1', '2', 'upload_files/candidate_tracker/11237860562_j@g resume 1-converted.pdf', NULL, NULL, '2021-02-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not join.  going to rejoin in old company.', '5', '2', '0', '1', '1', '0', '2', '2021-02-02', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-01 11:04:05', 1, '2021-02-01 01:38:14', 0, NULL, 1),
(3112, 'M V UDHAYAKRISHNAN', '6', '8610273078', '8015714211', 'malarvas728@gmail.com', '1995-07-30', 25, '2', '2', 'Vasudevan', 'None now', 6000.00, 3, 1.00, 25000.00, 'Vandavasi', 'Chrnnai', '2102010006', '1', '2', 'upload_files/candidate_tracker/24171169471_NOW_ON.pdf', NULL, NULL, '2021-02-01', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'left before interview', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-01 11:08:49', 50, '2021-02-01 11:48:44', 0, NULL, 1),
(3113, 'Sabees kumar', '5', '8903326619', '6381474325', 'sabeeskumar123@gmail.com', '1998-06-18', 22, '1', '2', 'Babiyans', 'Fisherman', 120000.00, 1, 200000.00, 200000.00, 'Kanyakumari', 'Perambur', '2102010007', '', '2', 'upload_files/candidate_tracker/71915655782_RESUME SABEES.pdf', NULL, NULL, '2021-02-01', 0, '55561', '5', '33', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for sales industry ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-01 11:29:35', 50, '2021-02-01 12:10:37', 0, NULL, 1),
(3114, 'Priyadharshini N', '2', '9025554984', '', 'priyanatarajanbe@gmail.com', '1996-03-11', 24, '2', '1', 'Manigandan M', 'Senior medical coder', 60000.00, 2, 400000.00, 600000.00, 'Chennai', 'Chennai', '2102010008', '1', '2', 'upload_files/candidate_tracker/16732105441_resume_1598855168148.pdf', NULL, NULL, '2021-02-06', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-01 12:12:02', 50, '2021-02-06 05:18:05', 0, NULL, 1),
(3115, 'Vignesh R', '5', '9080777610', '', 'ganesh.r2594@gmail.com', '1994-09-25', 26, '1', '2', 'Parent', 'Sales executive', 15000.00, 2, 17000.00, 20000.00, 'Saligramam', 'Saligramam', '2102010009', '', '2', 'upload_files/candidate_tracker/30219403662_ch.pdf', NULL, NULL, '2021-02-01', 0, '', '3', '8', '2021-02-03', 189600.00, '', '6', '2021-03-26', '1', '15k th for kannan team.', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-01 12:58:47', 60, '2021-02-03 10:00:29', 0, NULL, 1),
(3116, '', '0', '9362129963', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102010010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-01 03:14:10', 0, NULL, 0, NULL, 1),
(3117, '', '0', '7397343470', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102010011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-01 03:36:20', 0, NULL, 0, NULL, 1),
(3118, 'Sundar Essakimuthu', '2', '7092421692', '', 'sundar.raj37@gmail.com', '1993-06-16', 27, '2', '2', 'S. Essakimuthu', 'Senior Application Developer', 42000.00, 1, 45000.00, 80000.00, 'Chennai', 'Chennai', '2102010012', '1', '2', 'upload_files/candidate_tracker/78316918434_Sundar Essakimuthu Skill Set.pdf', NULL, NULL, '2021-02-06', 90, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-01 04:35:55', 50, '2021-02-06 05:18:21', 0, NULL, 1),
(3119, 'R.Logesh', '2', '8667307843', '8148426592', 'lokmike626@gmail.com', '1994-03-16', 26, '2', '2', 'S.Rangababu', 'Business', 1000000.00, 1, 400000.00, 750000.00, 'Chennai', 'Chennai', '2102010013', '1', '2', 'upload_files/candidate_tracker/49581913945_Logesh-Resume-Web-Developer.pdf', NULL, NULL, '2021-02-13', 45, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-15', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-01 11:37:40', 50, '2021-02-13 01:36:19', 0, NULL, 1),
(3120, 'Abdul Rahuman', '6', '7092064560', '', 'abdulrahuman0588@gmai.com', '1997-10-23', 23, '2', '2', 'Syed Mohammed', 'Driver', 20000.00, 2, 0.00, 25000.00, 'Tirunelveli', 'Chennai', '2102020001', '1', '1', 'upload_files/candidate_tracker/85313507274_Abdul Rahman Resume-converted.pdf', NULL, NULL, '2021-02-02', 0, '', '5', '22', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate selected but exp Salary  High 15k so rejected', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-02 08:45:38', 8, '2021-02-02 03:01:10', 0, NULL, 1),
(3121, 'Kaja Hussain', '6', '9629698782', '9360731424', 'kaja.hussain97@gmail.com', '1998-02-07', 22, '2', '2', 'Jalal mohamed', 'Business', 75000.00, 3, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2102020002', '1', '1', 'upload_files/candidate_tracker/71705653029_kajaCV (1).pdf', NULL, NULL, '2021-02-02', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT FOR RE', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-02 09:10:34', 50, '2021-02-02 12:25:29', 0, NULL, 1),
(3122, '', '0', '8825744071', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102020003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-02 09:15:24', 0, NULL, 0, NULL, 1),
(3123, '', '0', '8122522970', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102020004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-02 09:19:07', 0, NULL, 0, NULL, 1),
(3124, 'Gunasekar', '6', '9524626208', '9442926208', 'gunagowtham12@gmail.com', '1994-04-17', 26, '2', '2', 'Kanakaraj', 'Employee', 20.00, 0, 0.00, 25000.00, 'TIRUPUR', 'Chennai', '2102020005', '1', '2', 'upload_files/candidate_tracker/97147929378_resume ch guna-converted (1).pdf', NULL, NULL, '2021-02-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not sustain, No relevant Exp', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-02 10:44:55', 50, '2021-02-02 02:48:25', 0, NULL, 1),
(3125, 'Priya', '4', '8825441278', '7092918037', 'Whitepriya29@gmail.com', '1999-01-29', 22, '2', '2', 'Shanmugam', 'Tailor', 150000.00, 4, 11500.00, 1300.00, 'Chrompet', 'Chrompet', '2102020006', '14', '2', 'upload_files/candidate_tracker/14640097553_S. PRIYA(2).pdf', NULL, NULL, '2021-02-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-02 11:01:10', 1, '2021-02-02 11:14:47', 0, NULL, 1),
(3126, 'Balachandran Arumugam', '2', '9962289506', '', 'chandranskyla96@gmail.com', '1996-07-28', 24, '2', '2', 'Arumugam', 'Employee', 5000.00, 2, 12500.00, 30000.00, 'Nagapattinam', 'Chennai', '2102020007', '1', '2', 'upload_files/candidate_tracker/33769986573_resume__.pdf', NULL, NULL, '2021-02-02', 25, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not completed and no response from him.', '2', '2', '', '1', '1', '', '2', '2021-02-02', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-02 11:08:23', 50, '2021-02-02 11:25:11', 0, NULL, 1),
(3127, 'Jayasri', '4', '9894816816', '', 'Jayasriknc98@gmail.com', '1998-05-20', 22, '2', '2', 'Mani', 'Work', 15000.00, 2, 0.00, 12000.00, '140,marriyaman kovil st, villupuram', 'Aminjikarai', '2102020008', '1', '1', 'upload_files/candidate_tracker/93548009231_Document 2.pdf', NULL, NULL, '2021-02-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable, will not sustain ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-02 12:05:14', 50, '2021-02-02 02:38:53', 0, NULL, 1),
(3128, 'B Dinesh', '21', '7299976478', '', 'dineshkarthick2guys@gmail.com', '1994-07-27', 26, '1', '1', 'T Boominathan', 'Tailor', 20000.00, 1, 22000.00, 25000.00, 'No 93 2nd Street b.V. colony vyasarpadi', 'Chennai', '2102020009', '', '2', 'upload_files/candidate_tracker/1790885665_B DINESH 2.pdf', NULL, NULL, '2021-02-02', 0, 'Jobs', '5', '32', NULL, 0.00, '', '0', NULL, '1', 'Expecting High Package', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-02 12:07:21', 1, '2021-02-02 12:16:53', 0, NULL, 1),
(3129, 'rebeccal', '4', '7708087266', '', 'rebeccalgrace99@gmail.com', '1999-05-11', 21, '3', '2', 'charles', 'wages', 13000.00, 2, 0.00, 12000.00, 'thanjavur', 'Chennai', '2102020010', '', '1', 'upload_files/candidate_tracker/136406862_Rebeccal.pdf', NULL, NULL, '2021-02-02', 0, '', '8', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate left without attending the interview', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-02 12:39:39', 1, '2021-02-02 02:40:00', 0, NULL, 1),
(3130, 'Vishnu Raja Prabu m', '4', '9791871006', '7868927299', 'vishnuvrp97@gmail.com', '1997-05-18', 23, '2', '2', 'Muthukumar', 'Goldsmith', 85000.00, 1, 0.00, 10000.00, '57/28,krishnan kovil street, shengottai,tenkasi', 'Taramani', '2102020011', '1', '1', 'upload_files/candidate_tracker/24152139040_vishnu updated resume 2.docx', NULL, NULL, '2021-02-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp, Will not sustain', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-02 03:05:00', 50, '2021-02-02 03:14:30', 0, NULL, 1),
(3131, 'sanjeev kumar', '2', '9566221319', '', 'sanjeevelango96@gmail.com', '1996-05-13', 24, '2', '2', 'elango', 'driver', 60000.00, 1, 400000.00, 700000.00, 'chennai', 'chennai', '2102020012', '1', '2', 'upload_files/candidate_tracker/93866015139_Sanjeev_Resume.pdf', NULL, NULL, '2021-02-09', 60, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-10', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-02 03:35:05', 50, '2021-02-09 02:50:41', 0, NULL, 1),
(3132, 'Aakash Aravind k', '6', '7358437064', '9884653648', 'aakashsmartrock@gmail.com', '1999-11-15', 21, '2', '2', 'kumar a', 'librarian', 25000.00, 0, 0.00, 20000.00, 'arumbakkam chennai', 'arumbakkam chennai', '2102020013', '1', '1', 'upload_files/candidate_tracker/11943534071_Resume.docx', NULL, NULL, '2021-02-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response. will not join', '5', '2', '', '1', '3', '', '2', '2021-02-04', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-02 09:40:13', 50, '2021-02-03 11:27:56', 0, NULL, 1),
(3133, 'benedict camillus', '4', '8248281423', '', 'benedictcamillus85@gmail.com', '2000-07-09', 20, '2', '2', 'grace rita', 'personnel manager cmda', 85000.00, 2, 0.00, 15000.00, 'pillaiyar kovil street shenoy nagar chennai', 'pillaiyar kovil street shenoy nagar chennai', '2102020014', '1', '1', 'upload_files/candidate_tracker/16420019415_benny resume 2.pdf', NULL, NULL, '2021-02-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher will not suite for CRM.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-02 10:17:30', 8, '2021-02-03 05:53:53', 0, NULL, 1),
(3134, 'r t kameswari', '6', '9677182203', '8072910217', 'kameswari1989@gmail.com', '1989-06-04', 31, '2', '1', 'santhosh kumar', 'process associate', 30000.00, 3, 14000.00, 15000.00, 'chennai', 'chennai', '2102020015', '3', '2', 'upload_files/candidate_tracker/51859769348_kamu resume.pdf', NULL, NULL, '2021-02-04', 0, '', '3', '53', '1970-01-01', 204000.00, '', '2', '1970-01-01', '1', 'having 9 yrs exp in the two-wheeler loan process,  even field exp in 6 yrs. CTC 17k. for guru team.', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-02 10:37:28', 7, '2021-02-05 05:57:57', 0, NULL, 1),
(3135, '', '0', '8248281423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 07:41:43', 0, NULL, 0, NULL, 1),
(3136, '', '0', '8248281423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 08:46:44', 0, NULL, 0, NULL, 1),
(3137, '', '0', '8248281423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 08:47:18', 0, NULL, 0, NULL, 1),
(3138, '', '0', '7358437064', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 08:47:35', 0, NULL, 0, NULL, 1),
(3139, '', '0', '7358437064', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 08:49:05', 0, NULL, 0, NULL, 1),
(3140, 'Kadhar nawaz', '6', '9952432634', '9176891191', 'rahaanawi30@gmail.com', '1996-10-25', 24, '1', '2', 'Nilopher', 'General manager', 96000.00, 1, 16000.00, 18000.00, 'Chennai', 'Chennai', '2102030006', '', '2', 'upload_files/candidate_tracker/97366010965_new update resume(2).pdf', NULL, NULL, '2021-02-03', 0, 'P1121', '3', '8', '2021-02-04', 192000.00, '', '3', '2021-02-18', '1', '16k ctc for srikanthteam', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-03 09:46:17', 60, '2021-02-04 09:43:39', 0, NULL, 1),
(3141, '', '0', '9952432634', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 09:55:52', 0, NULL, 0, NULL, 1),
(3142, '', '0', '9952432634', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 10:00:10', 0, NULL, 0, NULL, 1),
(3143, '', '0', '9952432634', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 10:01:05', 0, NULL, 0, NULL, 1),
(3144, 'test Sathish', '13', '9715880780', '', 'sat@gmail.com', '1994-08-25', 26, '3', '1', 'fwegve', 'nrrtt', 767565.00, 1, 0.00, 10000.00, 'drfb', 'hebr', '2102030010', '', '1', 'upload_files/candidate_tracker/82147759487_denash_2020.docx', NULL, NULL, '2021-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-03 10:17:38', 1, '2021-04-08 11:08:40', 0, NULL, 1),
(3145, 'S.shalini', '11', '9384622576', '9176440936', 'shalinigeetha1999@gmail.com', '1999-12-24', 21, '2', '2', 'V.saravanan', 'Painter', 12000.00, 1, 0.00, 13000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2102030011', '1', '1', 'upload_files/candidate_tracker/60647858845_shalini resume-converted.docx', NULL, NULL, '2021-02-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-03 02:45:36', 1, '2021-02-03 05:56:50', 0, NULL, 1),
(3146, 'R kiran kumar', '5', '9440448771', '6302196187', 'nanikiran0707@gmail.com', '1994-12-07', 26, '2', '2', 'B Ramesh', 'Handloom worker', 40000.00, 1, 18500.00, 23000.00, '13-15-259 Vidya Nagar Hindupur', 'Bangalore', '2102030012', '1', '2', 'upload_files/candidate_tracker/73117218074_KIRAN RESUME.pdf', NULL, NULL, '2021-02-04', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-03 03:36:23', 50, '2021-02-04 05:34:54', 0, NULL, 1),
(3147, 'gayathri.k', '4', '9841464599', '9003250197', 'kgayathri0601@gmail.com', '2000-01-06', 21, '2', '2', 'kumar', 'wages', 13000.00, 3, 0.00, 15000.00, 'saidapet', 'saidapet', '2102030013', '1', '1', 'upload_files/candidate_tracker/34105152971_gayu.pdf', NULL, NULL, '2021-02-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very childish and will not suite for our process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-03 03:47:59', 50, '2021-02-03 04:23:47', 0, NULL, 1),
(3148, 'venkatesan', '6', '9710530422', '9841506378', 'vr059739@gmail.com', '1999-09-04', 21, '2', '2', 'rosy', 'housewife', 10000.00, 2, 0.00, 20000.00, 'madhavaram', 'madhavaram', '2102030014', '1', '1', 'upload_files/candidate_tracker/40395620124_venkat resume.docx', NULL, NULL, '2021-02-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, exp is 15k. left before 2nd round', '5', '2', '', '1', '1', '', '2', '2021-02-06', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-03 04:35:20', 50, '2021-02-05 11:44:46', 0, NULL, 1),
(3149, 'Priya.G', '4', '8610499249', '9080716879', 'Ppriyadiviss@gmail.com', '1999-05-25', 21, '2', '2', 'Gopal.B', 'painter', 8000.00, 3, 0.00, 15000.00, 'No.5 4th st 6th cross puliyanthope Ch-12', 'Puliyanthope', '2102030015', '1', '1', 'upload_files/candidate_tracker/13325493878_Resume.pdf', NULL, NULL, '2021-02-04', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sal exp is 15k. fresher, not speaking up and will not suite for our process.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-03 05:08:58', 50, '2021-02-04 12:02:08', 0, NULL, 1),
(3150, 'GURUPRASATH P', '6', '9952884125', '', 'guru6675@gmail.com', '1999-07-02', 21, '2', '2', 'Purushothaman', 'Driver', 10000.00, 2, 0.00, 15000.00, '14/1 kaveri Street Kandasamy nagar poonamallee', 'Poonamallee', '2102030016', '1', '1', 'upload_files/candidate_tracker/88812396089_GURU-converted (1).pdf', NULL, NULL, '2021-02-04', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He s nt intrested in sales, looking for accounts related job.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-03 05:17:35', 8, '2021-02-04 01:44:25', 0, NULL, 1),
(3151, 'panimaya albert', '2', '8680092696', '8667329600', 'albertino0326@gmail.com', '1997-06-02', 23, '2', '2', 'saleth rajan', 'daily wages', 9000.00, 1, 0.00, 18000.00, 'theni', 'Chennai', '2102030017', '1', '1', 'upload_files/candidate_tracker/26806638824_Resume.pdf', NULL, NULL, '2021-02-04', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not Completed.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-03 05:22:13', 50, '2021-02-04 11:28:32', 0, NULL, 1),
(3152, 'Muthu Natha Narayanan', '2', '9500177909', '6369200492', 'amrmuthu10@gmail.com', '1997-01-11', 24, '2', '2', 'N Arumugaperumal', 'Software Engineer', 10000.00, 1, 27000.00, 50000.00, 'Chennai', 'Chennai', '2102030018', '1', '2', 'upload_files/candidate_tracker/99514943919_Muthu', NULL, NULL, '2021-02-12', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-03 05:25:09', 50, '2021-02-12 05:22:27', 0, NULL, 1),
(3153, '', '0', '9629070412', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 06:06:35', 0, NULL, 0, NULL, 1),
(3154, 'sri bharathi dass ak', '2', '6383631041', '', 'sri1999bharathi@gmail.com', '1999-11-19', 21, '2', '2', 'kalidass m a', 'social worker', 14000.00, 2, 0.00, 380000.00, 'chennai', 'chennai', '2102030020', '1', '1', 'upload_files/candidate_tracker/93491726577_RESUME 1.pdf', NULL, NULL, '2021-02-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Came for Internship and the Expectation is High', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-03 06:39:01', 50, '2021-02-08 10:08:57', 0, NULL, 1),
(3155, 'suganya', '4', '9514436728', '9003226175', 'suganyasuganya514@gmail.com', '1997-06-02', 23, '2', '2', 'nagalakshmi', 'amma unavagam labour', 9000.00, 1, 9000.00, 25000.00, 'madhavaram', 'madhavaram', '2102030021', '1', '2', 'upload_files/candidate_tracker/20903685577_sssr resume.docx', NULL, NULL, '2021-02-05', 4, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'exp high sal 15k . last sal is 10k but no sales exp.', '1', '2', '', '1', '3', '', '2', '2021-02-06', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-03 07:08:30', 50, '2021-02-05 11:46:28', 0, NULL, 1),
(3156, 'vishnu prasad t', '5', '8015573836', '8072967105', 'vishvaru97@gmail.com', '1997-09-22', 23, '1', '2', 'thirunavukarasu d rubavathi t', 'land movers', 100000.00, 1, 0.00, 20000.00, 'porur chennai', 'porur', '2102040001', '', '1', 'upload_files/candidate_tracker/54770261096_T Vishnu Prasad. Resume.pdf', NULL, NULL, '2021-02-04', 0, '55561', '3', '8', '2021-02-08', 216000.00, '', '4', '2021-05-15', '1', 'Candidate selected for Logesh Team  18kCTC', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-04 10:19:26', 7, '2021-02-08 10:13:10', 0, NULL, 1),
(3157, '', '0', '9884698787', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 11:00:36', 0, NULL, 0, NULL, 1),
(3158, '', '0', '8807488149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 11:02:56', 0, NULL, 0, NULL, 1),
(3159, '', '0', '9043624196', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 11:08:31', 0, NULL, 0, NULL, 1),
(3160, 'Deepak', '5', '8610696503', '8122323201', 'dharundeepak23@gmail.com', '1995-04-17', 25, '2', '1', 'Anandkumar', 'business', 30000.00, 2, 350000.00, 450000.00, 'CHENNAI', 'CHENNAI', '2102040005', '1', '2', 'upload_files/candidate_tracker/60474505713_resume.pdf', NULL, NULL, '2021-02-04', 30, '', '5', '44', NULL, 0.00, '', '0', NULL, '1', 'He is not fit and Attitude issues ', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-04 11:13:20', 1, '2021-02-04 11:20:54', 0, NULL, 1),
(3161, 'Raveena thulasi.s', '5', '9080716879', '8610499249', 'Srthulasi.raven@gmail.com', '2000-07-09', 20, '2', '2', 'Sam path kumar.s', 'CRPF police', 30000.00, 1, 0.00, 15000.00, 'No.1110 24the block k.p.park demellous road cu-12', 'Pattalam', '2102040006', '1', '1', 'upload_files/candidate_tracker/2364737540_resume Raveena 2021 new.pdf', NULL, NULL, '2021-02-04', 0, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fir for CRM\n', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-04 11:36:40', 8, '2021-02-04 01:40:03', 0, NULL, 1),
(3162, '', '0', '8667329600', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 11:43:57', 0, NULL, 0, NULL, 1),
(3163, 'Swetha.v', '4', '7667815554', '8438356169', 'Swetha.mani555@gmail.com', '1995-12-03', 25, '2', '1', 'Arulmani', 'Allsec technology', 15000.00, 1, 17000.00, 15000.00, '29/57 Thambu chetty St mannady ch_1', 'Old e852_new_3,49  cross St Thiruvanmiyur', '2102040008', '1', '2', 'upload_files/candidate_tracker/74120799978_swetha_resume pdf.pdf', NULL, NULL, '2021-02-04', 0, '', '5', '21', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She Is Not Sustain Long Term, and also not able to take pressure', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-04 11:55:42', 8, '2021-02-04 01:39:25', 0, NULL, 1),
(3164, '', '0', '9962340946', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 11:59:57', 0, NULL, 0, NULL, 1),
(3165, '', '0', '8682916154', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 01:55:15', 0, NULL, 0, NULL, 1),
(3166, '', '0', '9941416202', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 02:02:04', 0, NULL, 0, NULL, 1),
(3167, '', '0', '9566080707', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 02:04:45', 0, NULL, 0, NULL, 1),
(3168, '', '0', '8610027623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 02:08:21', 0, NULL, 0, NULL, 1),
(3169, '', '0', '9080695097', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 02:17:39', 0, NULL, 0, NULL, 1),
(3170, '', '0', '8438433890', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 02:37:42', 0, NULL, 0, NULL, 1),
(3171, '', '0', '7010831752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 03:04:00', 0, NULL, 0, NULL, 1),
(3172, 'Vasanth', '2', '8056093606', '9941188084', 'vasanthmohan1912@gmail.com', '1996-09-12', 24, '2', '2', 'P.Mohanavelu', 'Business', 15000.00, 1, 204000.00, 400000.00, 'Chennai', 'Chennai', '2102040017', '1', '2', 'upload_files/candidate_tracker/33109095209_VasanthM-PDF.pdf', NULL, NULL, '2021-02-06', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-04 03:05:25', 50, '2021-02-06 05:18:33', 0, NULL, 1),
(3173, '', '0', '8754872916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 03:50:05', 0, NULL, 0, NULL, 1),
(3174, 'Thoufeek Ahamed', '3', '9003369710', '8248045253', 'taufi781016@gmail.com', '1999-04-09', 21, '2', '2', 'Samsudeen', 'Business', 8000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102040019', '1', '1', 'upload_files/candidate_tracker/49310819432_Thoufeek ahamed.pdf', NULL, NULL, '2021-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-04 04:28:09', 1, '2021-02-05 04:29:36', 0, NULL, 1),
(3175, '', '0', '7338962633', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 06:34:38', 0, NULL, 0, NULL, 1),
(3176, 'DollyNisha Js', '2', '7708532955', '', 'dollydols.97@gmail.com', '1997-08-04', 23, '2', '2', 'K.john', 'Business', 30000.00, 1, 28000.00, 45000.00, 'chennai', 'chennai', '2102040021', '1', '2', 'upload_files/candidate_tracker/41590018142_res_2021.pdf', NULL, NULL, '2021-02-06', 35, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-04 08:52:59', 50, '2021-02-06 05:18:44', 0, NULL, 1),
(3177, 'Vishali', '2', '8870450705', '8248367580', 'vishalimeera09@gmail.com', '1997-07-08', 23, '2', '2', 'Meera Kumar', 'Business', 60000.00, 1, 375000.00, 700000.00, 'Mayiladuthurai', 'Chennai', '2102040022', '1', '2', 'upload_files/candidate_tracker/26070791984_Vishali-Resume.pdf', NULL, NULL, '2021-02-08', 60, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She is not matching with our requirements.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-04 08:54:25', 50, '2021-02-08 11:51:49', 0, NULL, 1),
(3178, 'Arun Elanthamil', '2', '8825579642', '', 'arunet008@gmail.com', '1995-08-20', 25, '2', '2', 'Perumal V', 'Business', 45000.00, 2, 4.80, 6.50, 'Chennai', 'Chennai', '2102040023', '1', '2', 'upload_files/candidate_tracker/89445649288_Arun_original.pdf', NULL, NULL, '2021-02-13', 2, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-04 10:34:37', 50, '2021-02-13 04:27:32', 0, NULL, 1),
(3179, 'K.Jawahar', '6', '9087039077', '7358074410', 'jawaharrajmfevents@gmail.com', '1997-02-06', 24, '2', '2', 'No', 'Shriram transport finance company ltd', 15000.00, 1, 14500.00, 22000.00, 'Royapuram', 'Royapuram', '2102050001', '1', '2', 'upload_files/candidate_tracker/43220083265_JAWAHAR resume.docx', NULL, NULL, '2021-02-08', 1032021, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending the 2nd round of interview', '5', '2', '', '1', '1', '', '2', '2021-02-08', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-05 08:25:19', 50, '2021-02-08 11:29:57', 0, NULL, 1),
(3180, 'Prabhu', '14', '9500517704', '7020146874', 'prabhuvkp88@gmail.com', '1989-05-10', 31, '2', '2', 'M.viswanathan', 'Weaver', 25000.00, 5, 0.00, 600000.00, '142,vellikuppampalayam,sirumugai-642302', '142,vellikuppampalayam,sirumugai-641302,cbe,TN', '2102050002', '1', '1', 'upload_files/candidate_tracker/81090685024_PRABHU VISWANATHAN1.doc (1) (1).docx', NULL, NULL, '2021-02-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-05 11:52:24', 50, '2021-02-09 05:57:10', 0, NULL, 1),
(3181, 'D Naresh', '5', '7975506391', '9844607212', 'nareshdhegu123@gmail.com', '1994-05-11', 26, '2', '2', 'D Balaji Naidu', 'Former', 10000.00, 1, 21000.00, 25000.00, 'Chittoor', 'Bangalore', '2102050003', '1', '2', 'upload_files/candidate_tracker/74662516773_Naresh naidu 666.docx', NULL, NULL, '2021-02-05', 10, '', '5', '68', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for insurance sales', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-05 12:06:42', 50, '2021-02-05 12:26:40', 0, NULL, 1),
(3182, 'Mohit golhar', '5', '9677232911', '9422114994', 'mohit14golhar@gmail.com', '1995-12-14', 25, '1', '2', 'Manohar golhar', 'Retired', 30000.00, 1, 30000.00, 32000.00, 'Nagpur', 'Chennai', '2102050004', '', '2', 'upload_files/candidate_tracker/28118003314_MOHIT GOLHAR Resume-.pdf', NULL, NULL, '2021-02-05', 0, 'Veben', '3', '8', '2021-03-01', 345696.00, '', '0', NULL, '1', 'TH 25K with PFxxamp PT 28808 Gross', '5', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-05 12:24:05', 1, '2021-02-05 12:31:20', 0, NULL, 1),
(3183, 'thamaraiselvan', '13', '9094243235', '', 'acethamarai@gmail.com', '1984-05-20', 36, '2', '1', 'rajamani', 'teacher', 30000.00, 2, 30000.00, 50000.00, 'chennai', 'chennai', '2102050005', '1', '2', 'upload_files/candidate_tracker/20378805268_Thamaraiselvan_Resume_gl.pdf', NULL, NULL, '2021-02-06', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Not completed the system task.', '2', '2', '0', '1', '1', '0', '2', '2021-02-06', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-05 12:29:51', 1, '2021-02-05 01:44:39', 0, NULL, 1),
(3184, 'arunmozhi.c', '2', '9025486263', '', 'mozhicarun@gmail.com', '1997-11-03', 23, '2', '2', 'renukadevi', 'homemaker', 15000.00, 1, 188000.00, 325000.00, 'avadi', 'avadi', '2102050006', '1', '2', 'upload_files/candidate_tracker/31003610341_Arun_Resume.pdf', NULL, NULL, '2021-02-06', 2, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He Knows only testing. Dont have a knowledge in MERN Stack.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-05 04:48:42', 50, '2021-02-06 02:28:05', 0, NULL, 1),
(3185, 'malavika d', '2', '9790763187', '', 'malavikajee@gmail.com', '1997-10-27', 23, '2', '2', 'v s dasaprakaash', 'working partner', 150000.00, 0, 360000.00, 650000.00, 'chennai', 'chennai', '2102050007', '1', '2', 'upload_files/candidate_tracker/91568952901_Malavika-latest-resume.docx', NULL, NULL, '2021-02-06', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Potential Candidate only. but she donxquott have an experience in Node and Express Js. she will learn and come back after 3 months.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-05 05:05:24', 50, '2021-02-06 02:35:16', 0, NULL, 1),
(3186, '', '0', '7010640810', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102050008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-05 06:23:14', 0, NULL, 0, NULL, 1),
(3187, 'Goutham', '5', '7871818932', '7418955934', 'gouthammurali932@gmail.com', '1998-08-09', 22, '2', '2', 'Murali (father)', 'Supervisor', 30000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2102050009', '1', '2', 'upload_files/candidate_tracker/89709449330_Goutham M D Resume.docx', NULL, NULL, '2021-02-08', 7, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate will not join as he got another offer', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-05 08:18:17', 50, '2021-02-08 11:41:13', 0, NULL, 1),
(3188, 'naveen raj', '5', '9566393792', '', 'naveenfredy97@gmail.com', '1997-12-29', 23, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 15000.00, 'Chennai', 'Chennai', '2102050010', '3', '2', 'upload_files/candidate_tracker/8468202798_CV_2021-01-30-035218.pdf', NULL, NULL, '2021-02-06', 0, '', '3', '8', '2021-02-09', 270000.00, '', '5', '1970-01-01', '1', '22500 ctc with pf. for shanmugam team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-05 08:47:34', 7, '2021-02-08 04:15:53', 0, NULL, 1),
(3189, 's rajalakshmi', '20', '7299935659', '9092495869', 'raja1997lakshmi@gmail.com', '1996-02-05', 25, '2', '2', 'none', 'none', 14000.00, 0, 14000.00, 15000.00, 'Chennai', 'Chennai', '2102050011', '3', '2', 'upload_files/candidate_tracker/97634019565_S.RAJALAKSHMI 1.pdf', NULL, NULL, '2021-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-05 09:12:23', 50, '2021-02-06 05:19:06', 0, NULL, 1),
(3190, 'hari haran', '14', '9677660196', '', 'hariharansbcajj@gmail.com', '1997-09-25', 23, '2', '2', 'selvam', 'oftware development', 270000.00, 2, 22000.00, 600000.00, 'dindigul', 'chennai', '2102060001', '1', '2', 'upload_files/candidate_tracker/42298761137_HariHaranResume.docx', NULL, NULL, '2021-02-06', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Completed.', '2', '2', '', '1', '1', '', '2', '2021-02-08', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-06 09:27:40', 60, '2021-02-06 06:16:51', 0, NULL, 1),
(3191, 'Peter Nelson Raj K', '2', '9715819558', '9840356404', 'kpeternelsonraj93@gmail.com', '1993-08-17', 27, '2', '1', 'Kaspaar Raj P', 'IT', 25000.00, 1, 25000.00, 30000.00, 'No 4 St\'Paul Quater, Neyveli 1 , pincode 607801', 'No 24, TRV nagar, Guduvancherry, pincode 603202', '2102060002', '1', '2', 'upload_files/candidate_tracker/26230607063_PETER NELSON RAJ K-React JS-fresher-1.pdf', NULL, NULL, '2021-02-06', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable,Not strong in React,Mongo,Node', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-06 10:08:06', 1, '2021-02-06 10:34:16', 0, NULL, 1),
(3192, 'alagar mannan akshy', '8', '6374822529', '9655169511', 'alagarmannanakshy@gmail.com', '1996-02-15', 24, '3', '2', 'kumanan', 'business', 300000.00, 1, 18800.00, 20000.00, 'tamilnadu', 'bangalore', '2102060003', '', '2', 'upload_files/candidate_tracker/70918370813_resume new.docx', NULL, NULL, '2021-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-06 10:37:14', 1, '2021-02-06 10:58:24', 0, NULL, 1),
(3193, 'Lingesh waran', '6', '9500031778', '', 'lingesh26101999@gmail.com', '1999-10-26', 21, '2', '2', 'Parents', 'Private employer', 20000.00, 1, 0.00, 15000.00, 'Chennai 64', 'Chennai 64', '2102060004', '1', '1', 'upload_files/candidate_tracker/88051480044_lingesh_resume.pdf', NULL, NULL, '2021-02-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for Sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-06 10:45:38', 50, '2021-02-06 11:05:25', 0, NULL, 1),
(3194, 'ARUNKUMAR AR', '5', '6360780439', '6360780539', 'arunkumarar2674@gmail.com', '1997-08-23', 23, '3', '2', 'Ramachandrappa', '....', 200000.00, 0, 22000.00, 30000.00, 'Bangalore', 'Bangalore', '2102060005', '', '2', 'upload_files/candidate_tracker/83193498820_ARUN RESUME.docx', NULL, NULL, '2021-02-08', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-06 10:47:03', 1, '2021-02-06 10:58:34', 0, NULL, 1),
(3195, 'Subasis Mallik', '5', '9337797736', '9658413946', 'subasis999@gmail.com', '1991-08-18', 29, '2', '2', 'Saroja kumar mallik', 'Job', 50000.00, 1, 2.77, 4.00, 'Odisha', 'Banglore', '2102060006', '1', '2', 'upload_files/candidate_tracker/93609511698_SUBASIS MALLIK....pdf', NULL, NULL, '2021-02-06', 0, '', '5', '39', NULL, 0.00, '', '0', NULL, '1', 'he will not suit for our process', '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-06 11:07:45', 1, '2021-02-06 11:16:35', 0, NULL, 1),
(3196, 'Kishore kumar', '5', '7904664070', '', 'kishorekumar0306@yahoo.in', '1991-07-01', 29, '2', '2', 'Anusuya', 'House wife', 20000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2102060007', '1', '2', 'upload_files/candidate_tracker/38032752733_kishore 2021.pdf', NULL, NULL, '2021-02-06', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Issue', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-06 11:29:29', 1, '2021-02-06 12:43:03', 0, NULL, 1),
(3197, 'M.KARTHICK', '6', '7092441678', '9003767155', 'Karkar66418@gmail.com', '1999-07-26', 21, '2', '1', 'G.MOHAN', 'Painter', 80000.00, 1, 0.00, 15000.00, 'Perumbakkam', 'Perumbakkam', '2102060008', '1', '1', 'upload_files/candidate_tracker/31548436209_0_resume model.docx', NULL, NULL, '2021-02-10', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not turned up', '5', '2', '', '1', '1', '', '2', '2021-02-11', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-06 11:51:39', 50, '2021-02-10 12:22:48', 0, NULL, 1),
(3198, 'Saravanan', '5', '7358776552', '9841499331', 'csaravanan578@gmail.com', '1997-04-07', 23, '2', '2', 'Kamalam', 'mother', 50000.00, 2, 0.00, 20000.00, 'kodungaiyur', 'kodungaiyur', '2102060009', '1', '1', 'upload_files/candidate_tracker/30607315041_918010070469360-09-12-2018to05-01-2019.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'From collection BG not interested in sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-06 11:53:21', 1, '2021-02-16 12:14:28', 0, NULL, 1),
(3199, 'Mythili.S', '20', '9841744014', '9710073609', 'mythu22ly@gmail.com', '1995-09-22', 25, '2', '2', 'Subramaniya bharathi', 'multi task staff r.l.i', 300000.00, 2, 15000.00, 20000.00, '2/7 R.L.I qtrs sardar patel road Adyar ch -113', '2/7 R.L.I qtrs sardar Patel road adyar ch-113', '2102060010', '1', '2', 'upload_files/candidate_tracker/70659829568_Mythili New Updated Resume 1 MBA.pdf', NULL, NULL, '2021-02-06', 2, '', '3', '8', '1970-01-01', 144000.00, '', '2', '1970-01-01', '1', 'Not open for the agreement. She agreed for 12k TH but not for the agreement.  updated remarks: sriram said agreement is not required and confirm joining. for keerthika team.', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-06 12:49:32', 7, '2021-03-04 04:41:57', 0, NULL, 1),
(3200, 'r vijay', '5', '8098040535', '', 'vijayrvijayr44@gmail.com', '1995-04-20', 25, '2', '2', 'none', 'none', 18000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2102060011', '3', '1', 'upload_files/candidate_tracker/16624644901_VIJAY - RESUME.doc', NULL, NULL, '2021-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-06 02:05:14', 1, '2021-02-06 02:09:12', 0, NULL, 1),
(3201, 'Vignesh', '6', '9677154030', '', 'vicky31897@gmail.com', '1997-08-31', 23, '2', '2', 'Sathish', 'Cloth merchant', 20.00, 1, 12.00, 15.00, 'Chennai', 'Chennai', '2102060012', '1', '2', 'upload_files/candidate_tracker/49766954961_RESUME-vignesh-777.docx', NULL, NULL, '2021-02-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Relevant Exp,will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-06 02:14:25', 50, '2021-02-06 03:40:59', 0, NULL, 1),
(3202, 'Aravind G', '2', '6379295860', '9840620526', 'aravindgshanthi@gmail.com', '1998-08-29', 22, '2', '2', 'Gunasekaran', 'Ex serviceman', 40000.00, 1, 300000.00, 600000.00, 'Chennai', 'Chennai', '2102060013', '1', '2', 'upload_files/candidate_tracker/55392122047_Aravind G - 27_01_2021.pdf', NULL, NULL, '2021-02-09', 30, '', '8', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He came office. but not attended the interview.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-06 05:29:12', 50, '2021-02-09 02:33:10', 0, NULL, 1),
(3203, 'veeni jeyasri', '13', '9123573939', '', 'jeyasri1816@gmail.com', '1997-11-16', 23, '2', '2', 'dhanapal', 'nil', 20000.00, 1, 180000.00, 250000.00, 'chennai', 'chennai', '2102060014', '1', '2', 'upload_files/candidate_tracker/78277743018_Veeni Jeyasri resume.docx', NULL, NULL, '2021-02-08', 2, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-06 05:50:29', 60, '2021-02-08 09:56:49', 0, NULL, 1),
(3204, 'mohammed mustafa', '5', '7305426475', '', 'mustafasonu9@gmail.com', '1995-10-25', 25, '2', '2', 'none', 'none', 14500.00, 0, 14000.00, 15000.00, 'chennai', 'chennai', '2102060015', '3', '2', 'upload_files/candidate_tracker/5860531454_Mohammed Mustafa. M.doc', NULL, NULL, '2021-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-06 08:08:14', 1, '2021-02-06 08:16:42', 0, NULL, 1),
(3205, 'p shaileshvaran', '6', '9176258285', '', 'shailushailesh16279@gmail.com', '1996-10-08', 24, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2102060016', '3', '2', 'upload_files/candidate_tracker/21304422509_shaileshwaran.doc', NULL, NULL, '2021-02-08', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustain doubt', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-06 08:23:53', 8, '2021-02-08 01:10:49', 0, NULL, 1),
(3206, 'Lingesh waran', '23', '9500031779', '9500031778', 'lingesh26101999@gmail.com', '1999-10-26', 21, '1', '2', 'Loganathan', 'Private employer', 20000.00, 1, 0.00, 15000.00, 'Chennai 64', 'Chennai 64', '2102060017', '', '1', 'upload_files/candidate_tracker/3229633271_lingesh_resume.pdf', NULL, NULL, '2021-02-15', 0, 'Job', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-06 09:56:53', 50, '2021-02-15 04:26:51', 0, NULL, 1),
(3207, '', '0', '8056017545', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102070001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-07 11:53:02', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3208, 'Gopinath.k', '4', '8056017546', '7299793824', 'vijigopi2101@gmail.com', '1999-01-21', 22, '2', '2', 'Krishnamurthy.a', 'Security', 10000.00, 0, 0.00, 15000.00, 'Perambur', 'Perambur', '2102070002', '1', '1', 'upload_files/candidate_tracker/78215965716_GOPI.pdf', NULL, NULL, '2021-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not work under pressure and will not suite for esale/crm', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-07 11:57:38', 50, '2021-02-08 10:21:19', 0, NULL, 1),
(3209, 'Prakash Raj H', '5', '9551467327', '8778875445', 'prakashyuvi17@gmail.com', '1999-01-16', 22, '2', '2', 'Pramila H', 'Nil', 20000.00, 1, 0.00, 15000.00, 'No13/15 ,Ponnuvelpuram 3rd Street,Ayanam, Ch 23.', 'No13/15 ,Ponnuvelpuram 3rd Street,Ayanam, Ch 23', '2102080001', '1', '1', 'upload_files/candidate_tracker/25121566634_resume.pdf', NULL, NULL, '2021-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up, looking for acc job. will not suite for rm/crm', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-08 12:26:29', 8, '2021-02-08 03:01:36', 0, NULL, 1),
(3210, 'k.premkumar', '2', '8610823424', '8870576571', 'ajithpremkr98@gmail.com', '1998-07-24', 22, '2', '2', 'k.yoheswari', 'attender in private school', 15000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2102080002', '1', '2', 'upload_files/candidate_tracker/80697916467_Preme Resume Updated 02022021.pdf', NULL, NULL, '2021-02-08', 1, '', '2', '54', NULL, 0.00, '', '0', NULL, '1', 'he joined as trainee.', '2', '2', '0', '1', '1', '0', '2', '2021-02-15', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-08 09:28:14', 1, '2021-02-08 12:41:17', 0, NULL, 1),
(3211, 'Benedict kiran', '5', '9344234816', '8248841810', 'Benedictkiran33@gmail.com', '2000-06-17', 20, '2', '2', 'Sujatha xavier', 'Accountant', 25000.00, 1, 0.00, 15000.00, '309 tnhb 2nd street,nehru nagar, velachery', '309,tnhb 2nd street nehru nagar velachery', '2102080003', '8', '1', 'upload_files/candidate_tracker/49614073623_Kiran resume 111.docx', NULL, NULL, '2021-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, not speaking up and will not suite for RM/CRM', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-08 09:55:23', 50, '2021-02-08 10:37:59', 0, NULL, 1),
(3212, 'Vijay S', '5', '8778177297', '', 'vijaysrinivas8793@gmail.com', '1993-07-09', 28, '2', '2', 'R srinivasan', 'Lic', 50000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2102080004', '1', '1', 'upload_files/candidate_tracker/5249701066_VIJAY RESUME 15102021 (1).pdf', NULL, '1', '2021-12-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have 4 months of Sales Exp, Career Gap, Can be trained for Relationship manager. Scheduled with GK sir for the 2nd level, but the candidate left without attending the interview', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-02-08 10:40:48', 50, '2021-12-18 11:11:23', 0, NULL, 1),
(3213, 'Keerthana', '4', '9003154254', '8682816688', 'keerthanasaravanan19@yahoo.com', '1999-01-19', 22, '1', '2', 'Saravanan', 'Photographer', 15.00, 1, 0.00, 15.00, '3/1a murugan street Kodambakkam road west saidapet', '3/1a murugan street Kodambakkam road west saidapet', '2102080005', '', '1', 'upload_files/candidate_tracker/92311787024_KEERTHANA.pdf', NULL, NULL, '2021-02-08', 0, 'P1122', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher and exp is 15k. will work if we offer 15k. her attitude will not suite for us.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-08 10:44:38', 50, '2021-02-08 11:03:12', 0, NULL, 1),
(3214, 'hari haran m', '6', '9003200153', '', 'hariharanmurugan166@gmail.com', '1996-04-19', 24, '2', '2', 'murugan', 'Business', 26000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2102080006', '14', '1', 'upload_files/candidate_tracker/67391032605_180921160538_0001.pdf', NULL, NULL, '2021-02-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-08 11:51:47', 50, '2021-02-09 05:56:38', 0, NULL, 1),
(3215, 'Sudhakar Nayak', '5', '7735370126', '', 'sudhakarnayak171@gmail.com', '1996-04-04', 24, '2', '2', 'Gadadhar nayak', 'Farmers', 10000.00, 3, 16.50, 17000.00, 'Odisha', 'Koramangala', '2102080007', '1', '2', 'upload_files/candidate_tracker/61727986957_sudhakar nayak cv (1) (1).pdf', NULL, NULL, '2021-02-08', 0, '', '5', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not suitable for our profile', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-08 01:07:19', 7, '2021-02-08 01:26:13', 0, NULL, 1),
(3216, 'Balasekaran', '6', '9600148923', '8248259454', 'cbsparthiban30@gmail.com', '1991-11-30', 29, '2', '2', 'Chandrasekaran', 'Networking managaer', 30000.00, 1, 15000.00, 18000.00, 'Madipakkam', 'Madipakkam', '2102080008', '1', '2', 'upload_files/candidate_tracker/2306090711_bala resume 2020.docx', NULL, NULL, '2021-02-13', 20, '', '3', '60', '2021-02-17', 180000.00, '', '3', '2021-02-23', '1', '15K CTC in Patroniss', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-08 01:41:22', 60, '2021-02-16 05:29:17', 0, NULL, 1),
(3217, '', '0', '8124959504', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102080009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-08 01:44:54', 0, NULL, 0, NULL, 1),
(3218, '', '0', '7358653435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102080010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-08 02:22:04', 0, NULL, 0, NULL, 1),
(3219, 'Sudhash kumar', '6', '8825809168', '', 'Sudhashkumar11@gmail.com', '1997-04-11', 23, '1', '2', 'Mani v', 'Baker', 10000.00, 1, 13000.00, 16000.00, 'Cherry street, I ayanavaram', 'Cherry street, I ayanavaram', '2102080011', '', '2', 'upload_files/candidate_tracker/34467708739_sudhash kumar resume 2021.pdf', NULL, NULL, '2021-02-08', 0, 'P1121', '3', '8', '2021-02-10', 189480.00, '', '6', '2021-03-26', '1', 'candidate selected .. suthagar team 15k Take home.. wednesday joining', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-08 02:30:57', 60, '2021-02-09 06:38:14', 0, NULL, 1),
(3220, 'Srivasthava M', '20', '8667253693', '7358424388', 'srivasthava18@gmail.com', '1998-02-10', 22, '2', '2', 'SRIDHAR', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102080012', '1', '1', 'upload_files/candidate_tracker/838063876_vasthava.pdf', NULL, NULL, '2021-02-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-08 03:11:21', 50, '2021-02-09 06:02:57', 0, NULL, 1),
(3221, '', '0', '7708839012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102080013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-08 03:59:27', 0, NULL, 0, NULL, 1),
(3222, 'Saurabh Rai', '17', '7290826049', '8303044952', 'saurabh.iimt09@gmail.com', '1991-01-01', 30, '2', '2', 'Vinod Rai', 'Retired', 20000.00, 2, 2.80, 3.00, 'Khalilabad', 'Khalilabad', '2102080014', '1', '2', 'upload_files/candidate_tracker/98773578419_saurabh.pdf', NULL, NULL, '2021-02-09', 0, '', '3', '7', '2021-02-10', 264000.00, '', '5', '1970-01-01', '1', 'Selected for Sanjeev Team,CTC 22k with PF PT', '5', '2', '4', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-08 05:15:25', 7, '2021-02-09 05:46:00', 0, NULL, 1),
(3223, 'aruldass', '2', '8098775692', '', 'aruldass767@gmail.com', '1998-07-10', 22, '2', '2', 'kulandai samy', 'farmer', 2.40, 2, 2.40, 5.00, 'thiruvanna malai', 'chennai', '2102090001', '1', '2', 'upload_files/candidate_tracker/32479433259_ArulDassCv.pdf', NULL, NULL, '2021-02-09', 24, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-10', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 09:04:40', 50, '2021-02-09 02:58:42', 0, NULL, 1),
(3224, 'Raima.R', '4', '8248399797', '9789964885', 'raimarajesh23@gmail.com', '1999-05-23', 21, '1', '2', 'S.Rajesh', 'Driver', 10000.00, 0, 0.00, 12000.00, 'CHENNAI', 'CHENNAI', '2102090002', '', '1', 'upload_files/candidate_tracker/86124262447_Resume - Raima.pdf', NULL, NULL, '2021-02-09', 0, 'P1122', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice not suitable for voice process.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-09 10:31:35', 7, '2021-02-09 05:54:24', 0, NULL, 1),
(3225, 'm.malathi', '13', '9791515644', '8838492686', 'malathi.michael98@gmail.com', '1998-12-07', 22, '2', '2', 'm.michael samy', 'electrical engineer', 25000.00, 1, 0.00, 15000.00, 'tenkasi', 'chennai', '2102090003', '1', '1', 'upload_files/candidate_tracker/34732701505_MALATHI 1 (1)-converted.pdf', NULL, NULL, '2021-02-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'She donxquott have a good knowledge in technically.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 10:55:12', 1, '2021-02-09 11:05:24', 0, NULL, 1),
(3226, 'annapoorani', '2', '9994033148', '', 'appriya98@gmail.com', '1998-08-12', 22, '2', '2', 'selvakumar', 'business', 40000.00, 0, 20000.00, 25000.00, 'Sivakasi', 'chennai', '2102090004', '1', '2', 'upload_files/candidate_tracker/38918317731_resume (5).pdf', NULL, NULL, '2021-02-10', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'technically not good. Always telling i am not prepared well.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 10:58:49', 60, '2021-02-09 02:40:38', 0, NULL, 1),
(3227, 'thenmozhi', '2', '8939141319', '', 'thenmozhivij@gmail.com', '1999-01-25', 22, '2', '2', 'murugan', 'labour', 11000.00, 1, 0.00, 180000.00, 'chennai', 'chennai', '2102090005', '1', '1', 'upload_files/candidate_tracker/75639507885_Thenmozhi_Resume.pdf', NULL, NULL, '2021-02-11', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected by GS. we will see 1st 7 days. after that we will decide.', '2', '2', '0', '1', '1', '0', '2', '2021-02-12', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 12:18:57', 1, '2021-02-09 02:10:08', 0, NULL, 1),
(3228, '', '0', '9385605167', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102090006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-09 12:27:05', 0, NULL, 0, NULL, 1),
(3229, 'praveen kumar s', '2', '9600492252', '9361742001', 'praveensenthil1999@gmail.com', '1999-04-01', 21, '2', '2', 'senthikumar', 'electrician', 10000.00, 1, 13000.00, 23000.00, 'virudhunagar', 'Chennai', '2102090007', '1', '2', 'upload_files/candidate_tracker/89458366935_Praveen CV.pdf', NULL, NULL, '2021-02-12', 2, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'He is from the Dot Net Domin. He dont have a knowledge in MERN.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 12:55:52', 1, '2021-02-09 01:00:36', 0, NULL, 1),
(3230, 'saranya v', '2', '9566254868', '9884898293', 'swasaranya@gmail.com', '1997-02-17', 23, '2', '2', 'venkatesan j', 'vegtable seller', 12000.00, 1, 10000.00, 25000.00, 'royapettah chennai', 'royapettah chennai', '2102090008', '1', '2', 'upload_files/candidate_tracker/90453932993_Saranya Exp1.pdf', NULL, NULL, '2021-02-11', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Could Not Meet Our Expectations', '2', '2', '0', '1', '1', '0', '2', '2021-02-12', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 02:12:22', 1, '2021-02-09 02:23:48', 0, NULL, 1),
(3231, 'anandajothi', '5', '9884900732', '', 'itelligence1976@gmail.com', '1976-10-24', 44, '2', '1', 'malar vizhi m', 'none', 40000.00, 0, 40000.00, 45000.00, 'chennai', 'chennai', '2102090009', '3', '2', 'upload_files/candidate_tracker/7449257393_2021-01.02.pdf', NULL, NULL, '2021-02-09', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suit our profile', '5', '2', '', '1', '1', '', '2', '2021-02-11', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-09 03:02:48', 60, '2021-02-09 03:11:53', 0, NULL, 1),
(3232, 'gnanaprakash s', '5', '9789924453', '', 'sprakash.ranjith@gmail.com', '1992-01-17', 29, '2', '2', 'none', 'none', 20000.00, 0, 20000.00, 22000.00, 'chennai', 'chennai', '2102090010', '3', '2', 'upload_files/candidate_tracker/11371244997_CV.docx', NULL, NULL, '2021-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-09 03:13:22', 1, '2021-02-09 03:17:20', 0, NULL, 1),
(3233, '', '0', '9884246119', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102090011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-09 03:30:24', 0, NULL, 0, NULL, 1),
(3234, 'MOHAMMED ASIF A', '2', '8870708252', '', 'mohammedaasif466@gmail.com', '1997-01-24', 24, '2', '2', 'Mohammed Farooque A', 'Leather Business', 200000.00, 2, 0.00, 1.80, 'Vellore', 'Vellore', '2102090012', '1', '1', 'upload_files/candidate_tracker/86328141377_updtres_29-Jan-21_00.01.10.pdf', NULL, NULL, '2021-02-15', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-22', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 03:30:26', 50, '2021-02-15 12:22:48', 0, NULL, 1),
(3235, '', '0', '9600492251', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102090013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-09 03:40:51', 0, NULL, 0, NULL, 1),
(3236, '', '0', '9791091833', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102090014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-09 04:02:47', 0, NULL, 0, NULL, 1),
(3237, 'Ravindra B', '5', '9390889259', '7702862128', 'ravindrabadugu1995@gmail.com', '1994-04-08', 26, '2', '2', 'Irmia B', 'Customer support Exicutive', 30000.00, 0, 8500.00, 15000.00, 'Mathikire', 'Mathikire', '2102090015', '1', '2', 'upload_files/candidate_tracker/22301520745_Ravindra Resume 2021.docx', NULL, NULL, '2021-02-10', 11, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'hes not good for sales', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-09 04:29:44', 50, '2021-02-10 10:50:33', 0, NULL, 1),
(3238, 'manikandan', '2', '9003570766', '', 'nmanikandan048@gmail.com', '1996-05-23', 24, '2', '2', 'natarajan', 'carpenter', 20000.00, 1, 15000.00, 20000.00, 'medavakkam', 'medavakkam', '2102090016', '1', '2', 'upload_files/candidate_tracker/87282264535_Manikandan_Resume.pdf', NULL, NULL, '2021-02-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 05:54:22', 50, '2021-02-13 04:27:58', 0, NULL, 1),
(3239, 'al hamid sultan', '2', '9789847880', '', 'alhameed66@hotmail.com', '1993-12-10', 27, '2', '2', 'fazal ahamed', 'nil', 20000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2102090017', '1', '1', 'upload_files/candidate_tracker/59130590365_Al Hamid Resume_.pdf', NULL, NULL, '2021-02-15', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'He is not interested with out company policy.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 06:38:53', 1, '2021-02-09 07:01:22', 0, NULL, 1),
(3240, 'r rajesh', '5', '8015662229', '', 'rajeshrockr94@gmail.com', '1994-04-26', 26, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102090018', '3', '2', 'upload_files/candidate_tracker/12246446613_Rajesh final yuvi.pdf', NULL, NULL, '2021-02-11', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' sustain doubt', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-09 08:33:18', 50, '2021-02-11 12:37:56', 0, NULL, 1),
(3241, 'e mirunalini', '20', '8778449334', '', 'mirunalini9620@gmail.com', '1996-05-20', 24, '2', '2', 'none', 'none', 13000.00, 0, 13000.00, 14000.00, 'chennai', 'chennai', '2102090019', '3', '2', 'upload_files/candidate_tracker/75607317485_1606886203380.docx', NULL, NULL, '2021-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-09 08:57:12', 1, '2021-02-09 09:00:21', 0, NULL, 1),
(3242, 'S Dhivya', '2', '7550126887', '7708272480', 'dhivyashivakumar7@gmail.com', '1999-10-22', 21, '2', '2', 'J SIVAKUMAR', 'Framer', 60000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2102090020', '1', '1', 'upload_files/candidate_tracker/38566370742_RESUME DHIYA.docx', NULL, NULL, '2021-02-15', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'She donxquott have a basic knowledge.', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 09:03:21', 1, '2021-02-09 09:11:46', 0, NULL, 1),
(3243, 'sriram gr', '5', '7401004416', '', 'sriramgr@hotmail.com', '1984-06-05', 36, '2', '1', 'durga s', 'process associate', 35000.00, 0, 35000.00, 40000.00, 'chennai', 'chennai', '2102090021', '3', '2', 'upload_files/candidate_tracker/35551184502_0_Sriram Resume.pdf', NULL, NULL, '2021-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-09 09:36:11', 1, '2021-02-10 09:35:45', 0, NULL, 1),
(3244, '', '0', '7904598316', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102100001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-10 08:45:10', 0, NULL, 0, NULL, 1),
(3245, 'Gopalakrishnan M', '6', '7868906222', '9445994168', 'gopalkrishh07@gmail.com', '1998-07-13', 22, '2', '2', 'Murugan L', 'EX Army', 180000.00, 0, 0.00, 2.00, 'Tirupattur', 'Ambattur', '2102100002', '1', '1', 'upload_files/candidate_tracker/61286337302_gopal resume.docx', NULL, NULL, '2021-02-10', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no sustain doubt', '5', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 10:38:03', 50, '2021-02-10 10:57:31', 0, NULL, 1),
(3246, 'Syed asif ahamed', '6', '8778710081', '', 'Aashifahamed3013@gmail.com', '1997-10-30', 23, '2', '2', 'Dhilshat begum', 'Business', 30000.00, 1, 15000.00, 18000.00, 'Perambur venus', 'Perambur venus', '2102100003', '1', '2', 'upload_files/candidate_tracker/58514516308_latest resume asif.pdf', NULL, NULL, '2021-02-10', 0, '', '3', '8', '2021-02-15', 189480.00, '', '5', '1970-01-01', '1', 'CTC 15790', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 11:03:05', 60, '2021-02-11 06:41:10', 0, NULL, 1),
(3247, 'deepak f', '5', '8951573450', '', 'deepak98807@gmail.com', '1997-05-09', 23, '1', '2', 'paulina', 'house wife', 20000.00, 1, 0.00, 20000.00, 'near panchayath office basavannapura', 'near panchayath office basavannapura', '2102100004', '', '1', 'upload_files/candidate_tracker/80573659664_deepak', NULL, NULL, '2021-02-10', 0, '55599', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he will not suit for our process', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-10 11:30:57', 60, '2021-02-10 06:55:17', 0, NULL, 1),
(3248, 'Mohammed zulwaqar', '5', '9597762115', '8667842656', 'mdzulwaqar@gmail.com', '1996-06-19', 24, '2', '2', 'Zainudeen', 'Business', 30000.00, 1, 14000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2102100005', '1', '2', 'upload_files/candidate_tracker/80691642066_ZUL_WAQAR my new resume.docx', NULL, NULL, '2021-02-10', 0, '', '3', '8', '2021-02-17', 216000.00, '', '3', '2021-02-22', '1', '18K CTC with PF PT Deductions for Shanmugam Team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 12:00:45', 60, '2021-03-05 11:46:07', 0, NULL, 1),
(3249, 'Vignesh', '6', '7904497217', '9790919347', 'Vigneshsep18nivin@gmail.com', '1999-09-18', 21, '2', '2', 'K.vijayakumar', 'Security', 100000.00, 1, 0.00, 13000.00, 'Palakkad', 'Thiruvencheri', '2102100006', '1', '1', 'upload_files/candidate_tracker/89134837053_vignesh current resume.docx', NULL, NULL, '2021-02-10', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'stammering can not speak continuously', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 12:01:13', 50, '2021-02-10 12:39:59', 0, NULL, 1),
(3250, 'Anish', '4', '9080758184', '', 'aareasanish9080@gmail.com', '1999-09-27', 21, '2', '2', 'Farookbasha', 'Self worker', 16000.00, 2, 0.00, 16000.00, '63,Darga street,big kanchipuram', '32, kizhkattalai, thambaram', '2102100007', '1', '1', 'upload_files/candidate_tracker/62487772548_Anish F Resume.pdf', NULL, NULL, '2021-02-10', 0, '', '3', '60', '2021-02-15', 126600.00, '', '3', '2021-02-16', '2', 'Candidate Shortlisted for Priyanka Jeni,CTC 10550', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 12:29:25', 60, '2021-03-05 11:45:26', 0, NULL, 1),
(3251, '', '0', '7385332903', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102100008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-10 12:36:06', 0, NULL, 0, NULL, 1),
(3252, 'V.arasu', '6', '8870938956', '9080758184', 'arasujesus01@gmail.com', '1999-06-14', 21, '2', '2', 'K.varadhan', 'Self worker', 17000.00, 1, 0.00, 16000.00, '36.dhamalvar street.kanchipuram', '32.kizhkattalai, thambaram', '2102100009', '1', '1', 'upload_files/candidate_tracker/14829117874_ARASU RESUME.pdf', NULL, NULL, '2021-02-10', 0, '', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '2', 'Candidate Selected for Guru Team, CTC 13000', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 12:39:34', 60, '2021-02-12 04:23:11', 0, NULL, 1),
(3253, 'Ajith. N', '6', '8939323749', '9092148044', 'davidaji143@gmail.com', '1998-11-20', 22, '2', '2', 'Kamala', 'House wife', 8500.00, 3, 15000.00, 22000.00, 'Chennai, Velachery', 'Velachery', '2102100010', '1', '2', 'upload_files/candidate_tracker/49476964208_Ajith N_Resume Updated-1.pdf', NULL, NULL, '2021-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 12:48:36', 1, '2021-02-10 01:06:50', 0, NULL, 1),
(3254, 'Vignesh.R', '6', '8220533127', '', 'Ramu.vignesh97@gmail.com', '1997-04-18', 23, '2', '2', 'Ramu.selvi', 'Sales', 13000.00, 1, 15000.00, 17000.00, 'Tambaram sanatorium', 'Tambaram sanatorium', '2102100011', '1', '2', 'upload_files/candidate_tracker/60271514233_resume-1.pdf', NULL, NULL, '2021-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-02-10 01:12:32', 1, '2021-02-10 02:41:54', 0, NULL, 1),
(3255, 'Lokesh', '5', '7358405797', '', 'ganigalokesh4@gmail.com', '1994-07-04', 26, '2', '2', 'Prabhakar G', 'Retired', 30000.00, 1, 16500.00, 20000.00, 'Chennai', 'Chennai', '2102100012', '1', '2', 'upload_files/candidate_tracker/47511900650_Lokesh Resume updated.docx', NULL, NULL, '2021-02-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Left without attending', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-10 01:38:17', 60, '2021-02-10 06:57:35', 0, NULL, 1),
(3256, '', '0', '8189894750', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102100013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-10 02:52:52', 0, NULL, 0, NULL, 1),
(3257, '', '0', '9566050010', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102100014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-10 05:47:14', 0, NULL, 0, NULL, 1),
(3258, 'SURENDER D.R', '6', '9600259429', '9500542705', 'suresharmi31@gmail.com', '1994-04-19', 26, '2', '2', 'RAVI D', 'BHEL Technician - retired', 20000.00, 1, 14000.00, 20000.00, '31-5A-1, Balaji Nagar, coimbatore-20', '31-5A-1, Balaji Nagar, coimbatore-20', '2102110001', '1', '2', 'upload_files/candidate_tracker/18921469616_Resume accounts.docx', NULL, NULL, '2021-02-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not fit into Sales.Not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-11 10:08:19', 60, '2021-02-11 06:56:56', 0, NULL, 1),
(3259, 'Harishma vengat', '4', '7598048655', '9080185836', 'harishmasathish@gmail.com', '1996-10-05', 24, '2', '2', 'Venkatachalapathy.v', 'Mechanic', 30000.00, 1, 280000.00, 300000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2102110002', '1', '2', 'upload_files/candidate_tracker/48994626013_resume pdf.pdf', NULL, NULL, '2021-02-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not Fit and sustain for our sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-11 11:58:27', 50, '2021-02-12 10:52:47', 0, NULL, 1),
(3260, '', '0', '9003995514', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102110003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-11 12:12:17', 0, NULL, 0, NULL, 1),
(3261, 'Shashank shahi', '5', '9319414799', '', 'shashank_94@outlook.com', '1994-12-28', 26, '2', '2', 'Chandra Shekhar shahi', 'Business', 200000.00, 3, 13750.00, 20000.00, '45-f singhariya kunraghat Gorakhpur 273008', 'Spice garden ACES Layout marathalli 560037', '2102110004', '1', '2', 'upload_files/candidate_tracker/7106776439_ShashankshahiCV.pdf', NULL, NULL, '2021-02-11', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Expectation is very high and seems not to be genuine', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-11 12:15:27', 50, '2021-02-11 04:32:49', 0, NULL, 1),
(3262, 'MOHIT KRISHNA S S', '2', '9940420670', '', 'mohitkrishna.s.s12@gmail.com', '2000-05-12', 20, '2', '2', 'S SEKAR', 'TNHB - Bill Collector (retired)', 20000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2102110005', '1', '1', 'upload_files/candidate_tracker/35979498185_Mohit_resume-jan.docx', NULL, NULL, '2021-02-13', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude not good. ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-11 12:34:41', 50, '2021-02-13 11:52:22', 0, NULL, 1),
(3263, '', '0', '7305601796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102110006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-11 01:53:15', 0, NULL, 0, NULL, 1),
(3264, 'Ramki S', '5', '8056137418', '8778021601', 'ramki1027@gmail.com', '1993-04-19', 27, '2', '2', 'Sivaji', 'Salaried', 60000.00, 1, 22000.00, 32000.00, 'Vellanur', 'Vellanur', '2102110007', '1', '2', 'upload_files/candidate_tracker/30739807645_ramki resume.docx', NULL, NULL, '2021-02-11', 30, '', '5', '29', NULL, 0.00, '', '0', NULL, '1', 'not fit', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-11 02:14:27', 1, '2021-02-11 02:18:33', 0, NULL, 1),
(3265, 'Tamizazagan.R.ak', '6', '9791036472', '', 'tamilsaravanan699@gmail.com', '2000-09-30', 20, '2', '2', 'Kathiravan.R', 'Shopkeeper', 25000.00, 1, 12000.00, 18000.00, 'Chennai', 'Chennai', '2102110008', '1', '2', 'upload_files/candidate_tracker/24405556081_TAMIZAZAGAN.R.K.docx', NULL, NULL, '2021-02-22', 30, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not handle pressure', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-11 03:30:43', 50, '2021-02-22 10:29:38', 0, NULL, 1),
(3266, 'Arivu D', '5', '8667547854', '8526615185', 'Arivushyam@gmail.com', '1994-03-27', 26, '2', '2', 'Duraisamy M', 'controler', 25000.00, 2, 17500.00, 23000.00, 'kallakurichi', 'velachery', '2102110009', '1', '2', 'upload_files/candidate_tracker/69732678341_1601133854928Resume_Arivu.docx', NULL, NULL, '2021-02-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-11 03:53:23', 50, '2021-02-12 05:21:32', 0, NULL, 1),
(3267, 'Jagan.j', '6', '8939176733', '', 'jaganjaka1998@gmail.com', '1998-09-03', 22, '2', '2', 'Jeeva', 'Work is workship', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102110010', '1', '1', 'upload_files/candidate_tracker/59669950026_RESUME FORMAT 2 PAGE JAGAN.docx', NULL, NULL, '2021-02-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-11 03:56:07', 50, '2021-02-12 10:34:43', 0, NULL, 1),
(3268, 'Venkatesh S', '2', '8610569994', '9095558896', 'sr.venkatesh1324@gmail.com', '1996-11-10', 24, '2', '2', 'Sripriya', 'Housewife', 2.40, 0, 2.40, 4.50, '35/A2 vakkil nagarajan street, udumalpet 642126', '7/1f ceebros Park, Valasaravakkam, Chennai-87', '2102110011', '1', '2', 'upload_files/candidate_tracker/7946174159_Venkatesh S.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He dont have that much knowledge for what he is expected. ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-11 05:54:29', 50, '2021-02-16 11:58:25', 0, NULL, 1),
(3269, 'Seshambal R', '20', '9940577418', '', 'seshambalp@gmail.com', '1974-12-20', 46, '2', '2', 'not applicable', 'team leader', 28000.00, 1, 28000.00, 30000.00, 'Chennai', 'Chennai', '2102110012', '1', '2', 'upload_files/candidate_tracker/99478051161_Vidhya_2021.doc', NULL, NULL, '2021-02-12', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Relevant Exp in Sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-11 06:00:29', 1, '2021-02-11 06:51:48', 0, NULL, 1),
(3270, 'Sriram', '17', '9444087925', '', 'mvsriram11@yahoo.co.in', '1979-05-10', 41, '2', '2', 'Vasudevan', 'Late', 40000.00, 2, 360000.00, 480000.00, 'Chennai', 'Chennai', '2102110013', '1', '2', 'upload_files/candidate_tracker/93268896396_Sreeram21.doc', NULL, NULL, '2021-02-13', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Much Relevant Exp,Will not fit for our expectations', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-11 06:28:17', 1, '2021-02-11 09:03:32', 0, NULL, 1),
(3271, 'vibin p', '2', '9715657345', '6381558417', 'vibinparthiban1997@gmail.com', '1997-09-22', 23, '2', '2', 'parthiban a', 'agriculture', 40000.00, 1, 15000.00, 35000.00, 'uthamapalayam theni district', 'adambakkam chennai', '2102110014', '1', '2', 'upload_files/candidate_tracker/24317907854_vibinResume.pdf', NULL, NULL, '2021-02-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-23', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-11 07:26:40', 50, '2021-02-19 11:32:51', 0, NULL, 1),
(3272, 'PASUPATHI G', '2', '9524550148', '6380697669', 'gpasupathibe@gmail.com', '1998-07-05', 22, '2', '2', 'Gunasekaran', 'web Developer', 40000.00, 1, 25000.00, 40000.00, 'Trichy', 'Chennai', '2102110015', '1', '2', 'upload_files/candidate_tracker/23072470391_Pasupathi g.docx', NULL, NULL, '2021-02-13', 15, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-13', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-11 11:03:24', 50, '2021-02-13 10:11:57', 0, NULL, 1),
(3273, 'Priyanka S', '4', '9894922703', '9300016733', 'Sivapriyanka29@gmail.com', '1998-06-08', 22, '1', '2', 'Siva', 'Formar', 15000.00, 1, 15000.00, 18000.00, 'Nattarampalli', 'Guindy', '2102120001', '', '2', 'upload_files/candidate_tracker/71267178817_CamScanner 02-12-2021 11.21.34_1.pdf', NULL, NULL, '2021-02-12', 0, 'P1070', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Relevant Exp, Expectation is high ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-12 11:02:23', 50, '2021-02-12 12:19:20', 0, NULL, 1),
(3274, 'A.V. KIRAN KUMAR', '6', '8838199153', '7305663807', 'kiranvicky73@gmail.com', '1996-06-16', 24, '2', '2', 'K.ANBARASU', 'Retired telecom mechanic', 300000.00, 1, 0.00, 10000.00, 'Ambattur', 'Ambattur', '2102120002', '1', '1', 'upload_files/candidate_tracker/54757794683_Kumar.docx', NULL, NULL, '2021-02-12', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'HE IS INTREST TELECALLNG MEAN ADMIN', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 11:35:57', 50, '2021-02-12 12:01:10', 0, NULL, 1),
(3275, 'Karthikeyan S', '17', '9600962692', '7338959778', 'kartikshanmenaofficial@gmail.com', '1991-09-30', 29, '2', '1', 'Devipriya', 'Salaried', 40.00, 0, 550000.00, 550000.00, 'Tanjor e', 'Chennai', '2102120003', '1', '2', 'upload_files/candidate_tracker/53415048492_KARTIK RESUME (1).docx', NULL, NULL, '2021-02-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good No Relevant Insurance Exp, High CTC Expectation', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-12 11:41:28', 50, '2021-02-12 11:59:56', 0, NULL, 1),
(3276, 'Prem Kumar s', '16', '9952991057', '', 'Fiatne118@gmail.com', '1989-04-01', 31, '2', '1', 'Kavitha N', 'Sale consultant', 12000.00, 0, 13500.00, 15000.00, 'Guindy', 'Guindy', '2102120004', '1', '2', 'upload_files/candidate_tracker/21336317848_Resume of s premkumar.docx', NULL, NULL, '2021-02-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will Not Fit for MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-12 11:43:11', 1, '2021-02-12 11:56:39', 0, NULL, 1),
(3277, 'Prakash I', '16', '9677120153', '', 'Prakashkariz@gmail.com', '1992-10-04', 28, '2', '1', 'Sharmila', 'House wife', 12000.00, 1, 14000.00, 15000.00, 'Saidapet', 'Saidapet', '2102120005', '1', '2', 'upload_files/candidate_tracker/9534299614_Prakash_Resume.docx', NULL, NULL, '2021-02-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for MIS ', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-12 11:44:51', 1, '2021-02-12 12:13:55', 0, NULL, 1),
(3278, '', '0', '8838299153', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102120006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-12 11:54:05', 0, NULL, 0, NULL, 1),
(3279, 'Karthikeyan', '17', '7550048868', '', 'Karthik.300916@gmail.com', '1982-11-29', 38, '2', '1', 'Poonam Hiralal nijamkar', 'Freelancer makeup artist', 100000.00, 1, 625000.00, 800000.00, 'Chennai', 'Chembarabakkam', '2102120007', '1', '2', 'upload_files/candidate_tracker/1851233037_CV Karthik latest 2021.doc', NULL, NULL, '2021-02-12', 0, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is a decent candidate but for a startup channel he is not adequate. Can keep his resume for a backup for future additon for additional manager', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-12 12:38:12', 50, '2021-02-12 01:04:38', 0, NULL, 1),
(3280, 'elsiya.j', '20', '6383076460', '9500133826', 'elsiyajoseph0505@gmail.com', '2000-05-05', 20, '2', '2', 'joseph.s', 'fresher', 12000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2102120008', '1', '1', 'upload_files/candidate_tracker/95824965109_ELSIYA.docx', NULL, NULL, '2021-02-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 12:55:31', 50, '2021-02-13 04:27:14', 0, NULL, 1),
(3281, 'anirudh', '5', '8075310542', '', 'anirudhkg.pro@gmail.com', '1998-04-04', 22, '2', '2', 'guru', 'sales', 500000.00, 0, 270000.00, 360000.00, 'bangalore', 'bangalore', '2102120009', '1', '2', 'upload_files/candidate_tracker/10860750790_null.pdf', NULL, NULL, '2021-02-12', 2, '', '5', '39', NULL, 0.00, '', '0', NULL, '1', 'he will not handle pressure and he will not sustain', '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-12 01:31:53', 1, '2021-02-12 01:51:56', 0, NULL, 1),
(3282, 'Louisa Merlin.L', '20', '9176275116', '9754423133', 'mathiyasmerlin72@gmail.com', '2000-06-28', 20, '2', '2', 'Louis mathiyas', 'No occupation', 8000.00, 0, 0.00, 13000.00, 'No.2/22 Dr.Ambetkar college road gramma ayyavu st', 'Vyasarpadi chennai_39', '2102120010', '1', '1', 'upload_files/candidate_tracker/11771165741_LOUSIA RESUME.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected by Keerthika, Will not Sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '6', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 05:42:44', 50, '2021-02-13 05:19:56', 0, NULL, 1),
(3283, 'V.praveen kumar', '4', '7904769791', '', 'Praveenkumar.v09062000@gmail.com', '2000-06-09', 20, '2', '2', 'S.vijayakumar', 'Private company', 25000.00, 1, 0.00, 13000.00, 'Chennai,villivakkam', 'Chennai,villivakkam', '2102120011', '1', '1', 'upload_files/candidate_tracker/3053481800_my resume.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Much communicative', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 05:42:50', 50, '2021-02-13 10:39:44', 0, NULL, 1),
(3284, '', '0', '9865053328', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102120012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-12 05:45:51', 0, NULL, 0, NULL, 1),
(3285, '', '0', '9025859332', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102120013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-12 05:46:32', 0, NULL, 0, NULL, 1),
(3286, 'M. Charumathi', '4', '9940483358', '9941697893', 'charumathi358@gmail.com', '1999-12-23', 21, '2', '2', 'V.K.Murugesan(Father)', 'Salesman', 120000.00, 3, 0.00, 12000.00, 'Ambattur', 'Ambattur,oragadam', '2102120014', '1', '1', 'upload_files/candidate_tracker/14643422650_Charu resume (1).pdf', NULL, NULL, '2021-02-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 05:56:09', 50, '2021-02-13 04:28:15', 0, NULL, 1),
(3287, 'Ramesh G', '13', '9003854057', '', 'rameshshiv21@gmail.com', '1994-08-18', 26, '2', '2', 'Gunasekaran R', 'Retired electrician pvt company', 25000.00, 3, 16500.00, 25000.00, 'Madurai', 'Chennai', '2102120015', '1', '2', 'upload_files/candidate_tracker/97550791520_Ramesh_Resume.pdf', NULL, NULL, '2021-02-24', 3, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not completed perfectly.', '2', '2', '', '1', '1', '', '2', '2021-02-25', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-12 06:03:48', 50, '2021-02-24 05:59:34', 0, NULL, 1),
(3288, 'Logamalya. S', '4', '7397441064', '7305517211', 'Lokiloka278@gmail.com', '2000-05-04', 20, '2', '2', 'C.suresh', 'Mechanical engineer', 80000.00, 1, 0.00, 15000.00, '51 ponan kinaru street villivakkam chennai49', '51ponan kinaru street villivakkam chennai49', '2102120016', '1', '1', 'upload_files/candidate_tracker/93909590713_1613038568107_LOGAMALAYA.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not Fit our CRM Sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 06:04:39', 50, '2021-02-13 10:40:35', 0, NULL, 1),
(3289, 'sadam', '2', '8778306506', '9940296046', 'sadamshoukath@gmail.com', '1999-05-18', 21, '2', '2', 'shoukath ali', 'real estate', 70000.00, 2, 40000.00, 55000.00, 'Chennai', 'Chennai', '2102120017', '1', '2', 'upload_files/candidate_tracker/23596989612_Sadam\'s Resume.pdf', NULL, NULL, '2021-02-13', 25, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'He is not suitable for us.', '2', '2', '0', '1', '1', '0', '2', '2021-02-15', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-12 06:22:56', 1, '2021-02-12 07:25:52', 0, NULL, 1),
(3290, 'MAHARAJAN E', '4', '9840645754', '', 'maharajan4822@gmail.com', '1998-11-14', 22, '2', '2', 'ESAKKIMUTHU m', 'OWN TEA SHOP', 15000.00, 2, 0.00, 13000.00, 'THIRUVERKADU', 'THIRUVERKADU', '2102120018', '1', '1', 'upload_files/candidate_tracker/7942415452_Maharajan Resume2.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'confident level very low so not suitable for telesales', '1', '2', '', '1', '1', '', '2', '2021-02-15', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 06:23:08', 50, '2021-02-15 04:17:33', 0, NULL, 1),
(3291, 'V.Iswarya', '20', '6382842590', '9940202977', 'Ishuvijayan@gmail.com', '2000-05-08', 20, '2', '2', 'A.Vijayan', 'Daily wages', 7000.00, 2, 0.00, 12000.00, 'Chennai', 'chennai', '2102120019', '1', '1', 'upload_files/candidate_tracker/46536680149_V. Iswarya.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Much Communicative', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 06:25:27', 1, '2021-02-12 07:44:15', 0, NULL, 1),
(3292, '', '0', '9884284233', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102120020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-12 06:27:25', 0, NULL, 0, NULL, 1),
(3293, 'Francis Jeraldina Sowmiya.J', '20', '7305235868', '9150873350', 'francisjeraldinasowmiyaj@gmail.com', '2000-10-25', 20, '2', '2', 'Joseph Rajan.M', 'Provision store', 7000.00, 1, 0.00, 12000.00, 'No:47 Chinna Mathur Salai,Manali, Chennai-68', 'No:47Chinna Mathur Salai,Manali,chennai-68', '2102120021', '1', '1', 'upload_files/candidate_tracker/75984142325_sowmiya resume.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location Constraint', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 06:31:36', 1, '2021-02-12 06:43:25', 0, NULL, 1),
(3294, 'Ajay', '20', '6369817330', '', 'ajayaudacious@gmail.com', '1999-06-10', 21, '2', '2', 'A Kumaran', 'Astrologer', 25000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2102120022', '1', '1', 'upload_files/candidate_tracker/54452060157_Ajay resume.docx', NULL, '1', '2021-07-08', 0, '', '3', '60', '2021-07-12', 168000.00, '', '3', '2021-07-26', '2', 'Selected in Feb for Thiyagu team we offered but the candidate not joined.He came for the interview again and got selected for Syed Team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 06:32:50', 60, '2021-07-08 06:28:35', 0, NULL, 1),
(3295, 'Geetha D', '4', '8825629066', '9003222810', 'geetharaj297@gmail.com', '1999-07-29', 21, '2', '2', 'N. C. Dilliraj', 'Car painter', 100000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2102130001', '1', '1', 'upload_files/candidate_tracker/21499646871_geetha resume-1.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response', '1', '2', '', '1', '1', '', '2', '2021-03-26', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-13 10:38:05', 7, '2021-03-25 10:56:50', 0, NULL, 1),
(3296, 'Yasmin.I', '16', '6374332293', '', 'yasminismailbasha413@gmail.com', '2006-02-13', 15, '2', '2', 'Ismail Basha', 'Ac mechanic', 30000.00, 1, 10000.00, 15000.00, 'Saidapet', 'Saidapet', '2102130002', '1', '2', 'upload_files/candidate_tracker/43412104331_YASMIN-1.doc', NULL, NULL, '2021-02-13', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Not fir for MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-13 10:55:30', 1, '2021-02-13 11:08:04', 0, NULL, 1),
(3297, 'Karthikeyan.S', '16', '7299286914', '9710152339', 'karthikeyan.yogesh@gmail.com', '1995-05-16', 25, '3', '2', 'Sakthivel.G', 'Electrician', 15000.00, 2, 13000.00, 16000.00, 'Chennai', 'Chennai', '2102130003', '', '2', 'upload_files/candidate_tracker/18371846607_Karthikeyan update resume.docx', NULL, NULL, '2021-02-13', 3, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Not fir for MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-13 11:44:59', 1, '2021-02-13 11:50:14', 0, NULL, 1),
(3298, 'Dinesh.R', '16', '8925243868', '7358496097', 'd2dinu2@gmail.com', '1987-07-02', 33, '4', '1', 'Devi.R', 'Housewife', 25000.00, 0, 18000.00, 18000.00, 'No.7 Nehru street, Karapakkam, chennai-600097', 'Near Tecci Park', '2102130004', '', '2', 'upload_files/candidate_tracker/27157188022_RESUME D.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fir for MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-13 11:47:56', 50, '2021-02-13 12:25:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3299, '', '0', '9925859332', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102130005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-13 12:05:22', 0, NULL, 0, NULL, 1),
(3300, 'tamilselvan l', '16', '8124750486', '', 'tamil.ima.na@gmail.com', '1994-07-10', 26, '2', '2', 'lakshmanan', 'weaver', 14000.00, 1, 0.00, 20000.00, 'virudhunagar', 'velacherry', '2102130006', '1', '2', 'upload_files/candidate_tracker/41557873126_Tamilselvan .L - Resume.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Exp in pPT,Not much exp in MIS Activities', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-13 01:23:03', 50, '2021-02-13 02:28:58', 0, NULL, 1),
(3301, 'Danussh P', '2', '8608765113', '', 'pdanussh1997@gmail.com', '1997-06-22', 23, '2', '2', 'V Parthiban', 'Govt job', 70000.00, 1, 338000.00, 600000.00, 'Chennai', 'Chennai', '2102130007', '1', '2', 'upload_files/candidate_tracker/48495756072_DANUSSH_CV.pdf', NULL, NULL, '2021-02-15', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Could Not Meet Our Expectations', '2', '2', '0', '1', '1', '0', '2', '2021-02-18', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-13 02:44:36', 1, '2021-02-13 09:48:33', 0, NULL, 1),
(3302, '', '0', '8248690919', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102130008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-13 03:40:18', 0, NULL, 0, NULL, 1),
(3303, 'Pramela devi', '3', '8883239526', '', 'pramesanjeevi97@gmail.com', '1997-10-12', 23, '2', '2', 'sanjeevi', 'driver', 20000.00, 1, 10000.00, 15000.00, 'Trichy', 'velacheri', '2102130009', '1', '2', 'upload_files/candidate_tracker/86650205709_Prame-6-converted-converted.pdf', NULL, NULL, '2021-02-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-13 04:02:36', 1, '2021-02-13 04:09:47', 0, NULL, 1),
(3304, 'vaidhyanathan k s', '2', '9790922798', '7358206949', 'vaidyanathan.ks60@gmail.com', '1998-02-08', 23, '2', '2', 'kalpana s', 'research income', 1.00, 0, 264000.00, 360000.00, 'chennai', 'chennai', '2102130010', '1', '2', 'upload_files/candidate_tracker/42607661636_vaidhyanathan_ks.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Completed.', '2', '2', '', '1', '1', '', '2', '2021-02-18', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-13 04:21:37', 50, '2021-02-16 10:11:01', 0, NULL, 1),
(3305, '', '0', '8763167050', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102130011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-13 04:52:05', 0, NULL, 0, NULL, 1),
(3306, 'harishbabu palani', '16', '8667393913', '', 'babuharish527@gmail.com', '1994-12-21', 26, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102140001', '3', '2', 'upload_files/candidate_tracker/39421638766_Harish.pdf', NULL, NULL, '2021-02-15', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'No relevant exp', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-14 11:12:56', 1, '2021-02-14 11:16:09', 0, NULL, 1),
(3307, 'u gunasekar', '5', '9171818636', '', 'gunamech5196@gmail.com', '1996-01-05', 25, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2102140002', '3', '2', 'upload_files/candidate_tracker/91878316897_guna resume new 2020.pdf', NULL, NULL, '2021-02-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-14 01:13:41', 50, '2021-02-15 04:27:14', 0, NULL, 1),
(3308, 'c dinesh', '5', '9150344338', '', 'dineshchals1998@gmail.com', '1995-05-16', 25, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102140003', '3', '2', 'upload_files/candidate_tracker/54607245421_DINESH RESUME.docx', NULL, NULL, '2021-02-15', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication and proper Pronunciation will not suite for RM', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-14 01:19:07', 50, '2021-02-15 03:51:38', 0, NULL, 1),
(3309, 'raviji r', '5', '8870634918', '', 'miltonveera3@gmail.com', '1991-12-04', 29, '2', '2', 'none', 'none', 20000.00, 0, 20000.00, 25000.00, 'chennai', 'chennai', '2102140004', '3', '2', 'upload_files/candidate_tracker/86417475434_Raviji.docx', NULL, NULL, '2021-02-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-14 08:34:48', 50, '2021-02-15 04:32:11', 0, NULL, 1),
(3310, '', '0', '9840308646', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102150001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-15 08:05:15', 0, NULL, 0, NULL, 1),
(3311, 'VIGNESH L', '25', '8122616120', '7395951271', 'vickey2502@gmail.com', '1996-02-25', 24, '2', '2', 'KARPAGAM', 'HOUSE WIFE', 30000.00, 1, 18000.00, 18000.00, 'CHENNAI', 'CHENNAI', '2102150002', '1', '2', 'upload_files/candidate_tracker/8643015244_25_VIGNESH L resume update2.2.docx', NULL, NULL, '2021-02-15', 15, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Can not handle pressure will not sustain', '8', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-15 10:08:57', 50, '2021-02-15 01:04:17', 0, NULL, 1),
(3312, 'sonalkumari jain', '5', '8148513314', '8825415171', 'sonaldinesh96@gmail.com', '1996-02-15', 25, '2', '2', 'dinesh kumar', 'self employed', 60000.00, 2, 360000.00, 450000.00, 'chennai', 'bangalore', '2102150003', '1', '2', 'upload_files/candidate_tracker/42555342230_SonalJ.pdf', NULL, NULL, '2021-02-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expected 4.5 LPA We offer 4 LPA,but she got an offer for 4.5 LPA', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-15 11:21:18', 50, '2021-02-15 11:46:17', 0, NULL, 1),
(3313, 'Mansurali s', '6', '7904234816', '9025006241', 'Mansurali2403@gmail.com', '1997-03-24', 23, '1', '2', 'Shanbasha s , mumtaj s', 'Cooli', 12000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2102150004', '', '1', 'upload_files/candidate_tracker/4120027521_MANSUR.docx', NULL, NULL, '2021-02-15', 0, 'P0165', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not at all speaking', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-15 11:22:42', 50, '2021-02-15 12:18:22', 0, NULL, 1),
(3314, 'santhana raj', '6', '9025006241', '7904234816', 'danidani6121@gmail.com', '1997-09-06', 23, '1', '2', 'Sagayaraj, A ,Sagayamary, s', 'Cooli', 12000.00, 0, 0.00, 13000.00, 'Roypuram', 'Roypuram', '2102150005', '', '1', 'upload_files/candidate_tracker/31629174820_RESUME Santhanara.docx', NULL, NULL, '2021-02-15', 0, 'P0165', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Not at all speaking', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-15 11:23:59', 1, '2021-02-15 12:03:30', 0, NULL, 1),
(3315, 'Rajkumar bharathi G', '23', '8248706626', '', 'Rajfriend582@gmail.com', '1994-02-02', 27, '1', '2', 'Selvi', 'House wife', 25000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2102150006', '', '1', 'upload_files/candidate_tracker/29947770706_1611726297750_Raj Resume Jan 2021.pdf', NULL, NULL, '2021-02-15', 0, '66680', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-16', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-15 11:35:01', 50, '2021-02-15 11:48:13', 0, NULL, 1),
(3316, 'Amos vijay', '6', '9361108775', '9444255955', 'amoskennedy04@gmail.com', '1999-07-04', 21, '2', '2', 'Mother P.K.Kavitha', 'Teacher', 13000.00, 2, 0.00, 15000.00, 'No 21 Yacob garden street patalam Chennai 12', 'No 21 Yacob Garden Street Patalam Chennai 12', '2102150007', '1', '1', 'upload_files/candidate_tracker/10691465685_RESUME-AMOS VIJAY CAFS.pdf', NULL, NULL, '2021-02-15', 0, '', '3', '60', '1970-01-01', 164220.00, '', '2', '1970-01-01', '1', 'CTC 13685 xxamp TH 13K', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-15 01:08:13', 60, '2021-02-16 05:40:32', 0, NULL, 1),
(3317, 'Celine daffney pooja', '4', '6382069398', '6381616232', 'celinedaffneypooja@gmail.com', '1999-12-02', 21, '1', '2', 'Ms . Angeline', 'CRM in infrastructure', 25000.00, 0, 0.00, 20000.00, '40/1 Subramani street purasaiwalkam Chennai 600007', '40/1 Subramani Street Purasaiwalkam Chennai 600007', '2102150008', '', '1', 'upload_files/candidate_tracker/82937143641_Celine Daffeny pooja. RESUME .pdf', NULL, NULL, '2021-02-15', 0, 'Jobs', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Not bold rejected by Keerthi', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-15 01:14:04', 1, '2021-02-15 01:44:01', 0, NULL, 1),
(3318, 'Sam sundar.B', '6', '6382620454', '9514986432', 'sundarsam81@gmail.com', '1994-09-06', 26, '1', '2', 'Santhakumari', 'Housewife', 25000.00, 1, 18000.00, 23000.00, 'Chennai', 'Chennai', '2102150009', '', '2', 'upload_files/candidate_tracker/90102989819_samDocument..3(6).pdf', NULL, NULL, '2021-02-15', 15, 'Jobs', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for any profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-15 01:16:49', 60, '2021-02-26 05:27:10', 0, NULL, 1),
(3319, 'suhail muhammed', '2', '9384187400', '', 'ssuhail425@gmail.com', '1997-08-08', 23, '2', '2', 'mahaboob subhan', 'retired', 24500.00, 1, 24500.00, 45000.00, 'chennai', 'chennai', '2102150010', '1', '2', 'upload_files/candidate_tracker/29728328738_Resume-May-2019.pdf', NULL, NULL, '2021-02-20', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for agreement. High CTC expectation', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-15 04:47:21', 1, '2021-02-15 04:53:30', 0, NULL, 1),
(3320, 'Ajithanathan', '6', '9791159213', '9790836876', 'ajitht23463@gmail.com', '1996-07-15', 24, '2', '2', 'Chandranathan', 'Brother', 50000.00, 3, 20000.00, 25000.00, 'Chennai', 'Chennai', '2102150011', '1', '2', 'upload_files/candidate_tracker/33683146559_Resume - CHANDRANATHAN 2017. (1).docx', NULL, NULL, '2021-02-16', 1, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'From collection BG not interested in sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-15 04:55:28', 50, '2021-02-16 12:01:43', 0, NULL, 1),
(3321, 'vigneshwaran', '2', '9952058763', '9080481039', 'vignesh22101994@gmail.com', '1994-10-23', 26, '2', '2', 'ravi', 'farmer', 45000.00, 1, 360000.00, 460000.00, 'chennai', 'chennai', '2102150012', '1', '2', 'upload_files/candidate_tracker/24991700994_Vigneshwaran R.docx', NULL, NULL, '2021-02-20', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-15 04:58:09', 50, '2021-02-20 05:53:04', 0, NULL, 1),
(3322, 'Shanmugam', '3', '8688837649', '', 'mnshanmugam143@gmail.com', '1997-01-03', 24, '2', '2', 'nagalingam', 'weaver', 15000.00, 2, 0.00, 1.30, 'Tirupati', 'Tirupati', '2102150013', '1', '1', 'upload_files/candidate_tracker/72423768788_web Development resume.docx', NULL, '3', '2021-07-15', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Candidate Need To Be Scheduled For F2F,2nd Round Of Discussion. Communication Average. Based On  F2F Oly Can Be Decided On  The Position / Candidate attended interview and got selected for Intern cum employment', '2', '2', '0', '1', '1', '0', '2', '2021-07-26', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-15 05:03:11', 1, '2021-07-14 11:56:10', 0, NULL, 1),
(3323, 'B. Sumathi', '4', '7904300539', '7358629116', 'bsumathi2609@gmail.com', '1999-06-09', 21, '2', '2', 'Baskar', 'Driver', 12000.00, 1, 12500.00, 12000.00, 'Avadi', 'Avadi', '2102150014', '1', '2', 'upload_files/candidate_tracker/50253127522_Sumathi.B.docx', NULL, NULL, '2021-02-16', 1, '', '3', '59', '1970-01-01', 138960.00, '', '3', '2021-04-14', '2', '11k th and 11580ctc confirmed by arun. for muthu team', '1', '2', '1', '1', '1', '', '2', '2021-02-18', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-15 05:04:36', 7, '2021-03-09 06:59:33', 0, NULL, 1),
(3324, 'G munna', '23', '7395937455', '', 'niyaz.munna09@gmail.com', '1999-04-11', 21, '2', '2', 'Gulab basha', 'Gift Box manufacturers', 20000.00, 2, 15000.00, 20000.00, 'Chenni', 'Chenni', '2102150015', '1', '2', 'upload_files/candidate_tracker/43059212547_Resume-MUNNA.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'not good in basic level. he will not sustain.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-15 05:39:20', 1, '2021-02-15 07:48:55', 0, NULL, 1),
(3325, 'Divan thangapandian.P', '17', '9962832864', '', 'gooddivan@gmail.com', '1989-06-28', 31, '2', '1', 'Vimala.D', 'House wife', 40.00, 0, 40.00, 50.00, 'Ashok nagar', 'Ashok nagar', '2102150016', '1', '2', 'upload_files/candidate_tracker/50687833231_My Updated resume.docx', NULL, NULL, '2021-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp. Will not fit for our sales profile', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-15 05:55:51', 50, '2021-02-17 11:40:52', 0, NULL, 1),
(3326, 'Fathima begum.M', '4', '8825702648', '7339227499', 'fathimabegum1802@gmail.com', '1999-02-18', 21, '2', '2', 'K.N.Mohammed moosa', 'Labour', 10000.00, 1, 0.00, 15000.00, 'D/17Dr.Thomas road,T.nagar, Chennai-17', 'D/17Dr.Thomas Road,T.Nagar, Chennai-17', '2102150017', '1', '2', 'upload_files/candidate_tracker/31772549477_1613393831870Resume_M.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication, will not fit for our sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-15 06:21:58', 50, '2021-02-16 10:12:50', 0, NULL, 1),
(3327, 'Arunkumar S', '13', '8883242522', '8098443092', 'syedarun333@gmail.com', '1997-10-01', 23, '2', '2', 'Selvaraj M', 'Tailor', 15000.00, 1, 15000.00, 18000.00, '1/2/37 2 nd Street Anaikulam, papanasapuram.', 'Medavakkam', '2102150018', '1', '2', 'upload_files/candidate_tracker/71529028676_Share S.Arun kumar RESUME.doc', NULL, NULL, '2021-02-16', 2, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He doesxquott have a knowledge in basics. even he is not answering for a freshers questions', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-15 06:49:41', 60, '2021-02-16 09:36:43', 0, NULL, 1),
(3328, 'John Joshua', '4', '7358405055', '', 'joshuajohn.johnpaul@gmail.com', '1995-08-27', 25, '2', '2', 'John Paul Magdalene Mary', 'Kodambakkam', 30000.00, 2, 0.00, 13000.00, 'CHENNAI', 'CHENNAI', '2102150019', '1', '1', 'upload_files/candidate_tracker/26815436278_resumejj.docx', NULL, NULL, '2021-02-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit into Sales', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-15 07:01:00', 1, '2021-02-17 10:30:40', 0, NULL, 1),
(3329, 'dineshkumar', '2', '7904793059', '', 'dineshmcait20@gmail.com', '1997-01-13', 24, '2', '2', 'ravichandran', 'farmer', 50000.00, 1, 0.00, 2.00, 'Thanjavur', 'Thanjavur', '2102150020', '1', '1', 'upload_files/candidate_tracker/76112541581_DineshCV.pdf', NULL, NULL, '2021-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-15 07:39:56', 1, '2021-02-15 07:43:09', 0, NULL, 1),
(3330, '', '0', '7550270316', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102150021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-15 08:20:15', 0, NULL, 0, NULL, 1),
(3331, '', '0', '9080254093', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102160001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-16 12:27:30', 0, NULL, 0, NULL, 1),
(3332, 'BOOPATHI p', '5', '9940852963', '9199950777', 'boopaapu@gmail.com', '1990-07-07', 30, '3', '1', 'Priyadarshini', 'Business', 30000.00, 1, 40000.00, 35000.00, 'Namakkal', 'Chennai', '2102160002', '', '2', 'upload_files/candidate_tracker/13534646017_boopathi word.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '33', NULL, 0.00, '', '0', NULL, '1', 'not sustainity in our system', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-16 10:26:49', 1, '2021-02-16 10:38:19', 0, NULL, 1),
(3333, 'Aravinth A', '5', '9894952324', '9566724934', 'arunaravinth12@gmai', '1994-08-28', 26, '2', '2', 'Arunachalam PL', 'Driver', 30000.00, 1, 25000.00, 30000.00, 'Karur', 'Chennai', '2102160003', '1', '2', 'upload_files/candidate_tracker/45703263283_Aravinth_NewResume.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not looking life sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-16 10:55:15', 50, '2021-02-16 11:16:55', 0, NULL, 1),
(3334, 'janani s', '2', '9176833302', '9994913894', 'jananiswami98@gmail.com', '1998-02-21', 22, '2', '2', 'swaminathan r', 'retired', 75000.00, 0, 4.40, 6.60, 'chennai', 'chennai', '2102160004', '1', '2', 'upload_files/candidate_tracker/37881990438_Janani resume-converted.pdf', NULL, NULL, '2021-02-27', 90, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 10:58:01', 1, '2021-02-16 11:18:22', 0, NULL, 1),
(3335, '', '0', '9786810479', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102160005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-16 11:01:24', 0, NULL, 0, NULL, 1),
(3336, 'Sanjana Sajeev', '17', '9962264447', '9600619207', 'sanjanasajeev22@gmail.com', '1993-12-22', 27, '2', '1', 'Rahul Ilango', 'Restaurante Owner', 7.00, 3, 420000.00, 550000.00, 'Chennai', 'Chennai', '2102160006', '1', '2', 'upload_files/candidate_tracker/29049432479_SANJANA%20SAJEEV%20CV-Updated.docx', NULL, NULL, '2021-02-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attended final round of discussion with Mahadevan-Axa and got rejected', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-16 11:15:25', 50, '2021-02-16 11:40:59', 0, NULL, 1),
(3337, 'NOWREEN', '4', '7010150499', '9500723013', 'nowreenab1995@gmail.com', '1995-02-11', 26, '2', '1', 'Abdul Ansar', 'B. Sc computer science', 12000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2102160007', '1', '2', 'upload_files/candidate_tracker/87502923419_Nowreen- Resume.doc', NULL, NULL, '2021-02-16', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Shortlisted and checked for CRM Appointment Fix - Keerthika team,But rejected ', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-16 11:23:37', 1, '2021-02-16 11:33:57', 0, NULL, 1),
(3338, 'Jasmine', '6', '6380562584', '', 'jasminemichelraj@gmail.com', '1998-02-13', 23, '2', '2', 'Michael raj', 'Driver', 15000.00, 2, 12500.00, 15000.00, 'No 149 karkamangalam , pudukkottai', 'No 5,mudhaliyar 2street , saidapet', '2102160008', '1', '2', 'upload_files/candidate_tracker/83751138299_Jasmine resume 2021.pdf', NULL, NULL, '2021-02-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-16 11:25:27', 50, '2021-02-17 05:30:08', 0, NULL, 1),
(3339, '', '0', '9944978734', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102160009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-16 11:30:05', 0, NULL, 0, NULL, 1),
(3340, 'Shabeenabanu', '5', '8344609223', '', 'shabeenasalma1309@gmail.com', '1995-09-13', 25, '1', '1', 'Mohammad ishak', 'Business', 300000.00, 2, 265000.00, 350000.00, 'Thousands light', 'Thousands light', '2102160010', '', '2', 'upload_files/candidate_tracker/18692335021_P1090.pdf', NULL, NULL, '2021-02-16', 0, '0', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate holds an offer with 3.5 LPA and looks for high Pay', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-16 11:44:55', 1, '2021-02-16 11:54:31', 0, NULL, 1),
(3341, '', '0', '9360746624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102160011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-16 03:08:10', 0, NULL, 0, NULL, 1),
(3342, 'Subash p', '6', '9003216937', '8925628675', 'Subashpalani847@gmail.com', '1996-06-06', 24, '2', '2', 'Palani', 'Farmer', 25000.00, 0, 17000.00, 20000.00, 'Chennai', 'Chennai', '2102160012', '1', '2', 'upload_files/candidate_tracker/47330601248_P1090.pdf', NULL, NULL, '2021-02-24', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our sales,sustainability Issue', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-16 03:35:44', 50, '2021-02-24 11:22:34', 0, NULL, 1),
(3343, 's imran basha', '2', '8825901577', '', 'imranbashasid@gmail.com', '1993-12-09', 27, '2', '2', 's siddique basha', 'nil', 25000.00, 3, 0.00, 25000.00, 'Ambur', 'Ambur', '2102160013', '1', '1', 'upload_files/candidate_tracker/25267253079_Resume-4.pdf', NULL, NULL, '2021-03-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Got Another Offer', '2', '2', '', '2', '2', '', '2', '2021-03-15', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 03:38:26', 7, '2021-03-12 10:50:42', 0, NULL, 1),
(3344, 'Gayathri.v', '2', '7780363371', '', 'gayathrisreenivasulu99@gmail.com', '1999-06-05', 21, '2', '2', 'V.Sreenivasulu', 'Employee', 45000.00, 1, 0.00, 23000.00, 'Chennai', 'Kavangarai', '2102160014', '1', '1', 'upload_files/candidate_tracker/99753753267_resume.docx', NULL, NULL, '2021-02-18', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-19', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 03:39:14', 50, '2021-02-18 10:38:43', 0, NULL, 1),
(3345, 'naveen kumar.s', '2', '9003062561', '', 'naveensri1116@gmail.com', '1998-11-16', 22, '2', '2', 'sridharan', 'electrician', 12000.00, 0, 0.00, 16000.00, 'kelambakkam', 'kelambakkam', '2102160015', '1', '1', 'upload_files/candidate_tracker/17080729089_Interview resume.pdf', NULL, NULL, '2021-02-17', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'He donxquott have a good knowledge in tech. distance too long. he is from kelambakkam. will not suit for us.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 04:18:47', 1, '2021-02-17 01:38:42', 0, NULL, 1),
(3346, 'Vicky', '4', '8608135097', '9566200637', 'vickyrohit.m@gmail.com', '1995-10-28', 25, '2', '2', 'Gajalakshmi', 'Supervisor', 15000.00, 1, 16000.00, 19000.00, 'Perambur', 'Chennai', '2102160016', '1', '2', 'upload_files/candidate_tracker/90275208514_Vicky[0_0].pdf', NULL, NULL, '2021-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High Expectations', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-16 04:44:54', 50, '2021-02-17 01:20:47', 0, NULL, 1),
(3347, 'Preena Rashmi A', '2', '8438523899', '', 'preenarashmi@gmail.com', '1995-02-20', 25, '2', '2', 'D.Asogan', 'driver', 35000.00, 2, 18000.00, 20000.00, 'chennai', 'chennai', '2102160017', '1', '2', 'upload_files/candidate_tracker/506890301_PRENA RASHMI_A.pdf', NULL, NULL, '2021-02-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not good in technical.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 04:50:44', 50, '2021-02-19 03:11:57', 0, NULL, 1),
(3348, 'Ajaykrishna', '2', '9585165913', '', 'Krishnaajay0729@gmail.com', '1998-07-29', 22, '2', '2', 'Neelagandan M', 'Driver', 40000.00, 1, 300000.00, 350000.00, 'Vellore', 'Chennai', '2102160018', '1', '2', 'upload_files/candidate_tracker/41139613336_ajaykrishna.pdf', NULL, NULL, '2021-03-06', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Recently got Hike and looking for more. Will not sustain for a long, not open for agreement', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 05:43:18', 50, '2021-03-06 01:09:01', 0, NULL, 1),
(3349, 'a p m muruganandam', '1', '9500056740', '9884234725', 'msp8085@gmail.com', '1980-05-12', 40, '2', '1', 'm srilatha', 'senior research analyst', 70000.00, 2, 40000.00, 50000.00, 'chennai', 'chennai', '2102160019', '1', '2', 'upload_files/candidate_tracker/63700538391_MURUGA RESUME.docx', NULL, NULL, '2021-02-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He already holds agent code for LIC and Star Health.Will hold this profile for future Use', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-16 06:15:18', 1, '2021-02-16 06:54:29', 0, NULL, 1),
(3350, 'Doorafath Mohammed', '16', '9176295137', '', 'Doorahsr@gmail.com', '1993-02-02', 28, '2', '2', 'Mohammed zubaid', 'Driver', 20000.00, 0, 25000.00, 32000.00, 'Veppampattu', 'Veppampattu', '2102160020', '1', '2', 'upload_files/candidate_tracker/89379119769_Doorafath cv.pdf', NULL, NULL, '2021-02-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for our MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 06:15:23', 1, '2021-02-16 06:19:25', 0, NULL, 1),
(3351, 'Mohamed Riyaz R', '2', '8220829517', '', 'mohdriyaz0807@gmail.com', '1997-07-08', 23, '2', '2', 'Raja Mohamed', 'Farmer', 300000.00, 2, 0.00, 350000.00, 'Trichy', 'Trichy', '2102160021', '1', '1', 'upload_files/candidate_tracker/42455219652_MyResume.pdf', NULL, NULL, '2021-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 06:15:35', 1, '2021-02-16 06:19:50', 0, NULL, 1),
(3352, 'Velusamy M', '2', '9159929379', '', 'velusmurugesan@gmail.com', '1995-04-25', 25, '2', '2', 'Murugesan', 'Farmer', 25000.00, 2, 3.50, 5.00, 'Karur', 'Chengalpattu', '2102160022', '1', '2', 'upload_files/candidate_tracker/41703014095_1612077029777Resume_Velusamy.pdf', NULL, NULL, '2021-02-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'could not meet our expectation.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 08:29:52', 60, '2021-02-19 10:11:02', 0, NULL, 1),
(3353, 'Lakshmi Narayanan L', '2', '6380725430', '', 'Sathyanarayanan1124@gmail.com', '1998-06-09', 22, '2', '2', 'Loganathan', 'Supervisor', 40000.00, 0, 375000.00, 650000.00, 'Chennai', 'Chennai', '2102160023', '1', '2', 'upload_files/candidate_tracker/89500736322_LAKSHMI NARAYANAN - RESUME.pdf', NULL, NULL, '2021-02-18', 90, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Notice period too long. He had experience in JAVA only. not in react. rejected by arun hR', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 10:42:57', 50, '2021-02-18 12:00:17', 0, NULL, 1),
(3354, 'Mohamed jueil M', '5', '9597224413', '', 'Jueilmohamed@gmail.com', '1996-02-07', 25, '2', '2', 'Ayisha kalina', 'Government teacher', 80000.00, 1, 0.00, 25000.00, 'Tenkasi', 'Tambaram', '2102170001', '1', '2', 'upload_files/candidate_tracker/48360373999_jueil new resume.pdf', NULL, NULL, '2021-02-17', 16022021, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Sales Exp. High CTC Expectation', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-17 09:31:51', 50, '2021-02-17 05:24:03', 0, NULL, 1),
(3355, 'Prakash S', '16', '8189928743', '', 'Prakashrajs1231@gmail.com', '1996-12-31', 24, '2', '2', 'E S sanker', 'Corporation work', 11000.00, 1, 0.00, 18000.00, '7/5, Ambattur Estate, Chennai - 600098', '2A, Pillayar Koil str, keelkattalai, chen - 600117', '2102170002', '1', '1', 'upload_files/candidate_tracker/78227387726_Prakash Resume.pdf', NULL, NULL, '2021-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is ok ,only excel exp', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 09:38:41', 50, '2021-02-17 10:14:13', 0, NULL, 1),
(3356, 'Meena P', '16', '9884169054', '', 'pameena555@gmail.com', '1995-12-20', 25, '2', '1', 'Purushothaman M', 'Accounts executive', 25000.00, 1, 0.00, 15000.00, 'Chrompet', 'Chrompet', '2102170003', '1', '2', 'upload_files/candidate_tracker/75847147331_Meena P.pdf', NULL, NULL, '2021-02-17', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit fr MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 09:44:11', 50, '2021-02-17 10:21:47', 0, NULL, 1),
(3357, 'POOJA', '16', '9080520167', '', 'Poojasri6467@gmail.com', '2000-08-11', 20, '2', '2', 'DHANDAPANI', 'Driver', 15000.00, 1, 0.00, 14000.00, 'Kanchipuram', 'Kanchipuram', '2102170004', '1', '1', 'upload_files/candidate_tracker/90314724319_POOJA.D-converted.pdf', NULL, NULL, '2021-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 09:46:13', 50, '2021-02-17 01:23:26', 0, NULL, 1),
(3358, '', '0', '7358243438', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102170005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-17 10:26:42', 0, NULL, 0, NULL, 1),
(3359, 'Sri Krishna', '16', '7358349754', '9444110886', 'krish.arts1997@gmail.com', '1997-11-20', 23, '2', '2', 'Paranthaman', 'GM', 70000.00, 0, 12000.00, 20000.00, 'Chennai', 'Chennai', '2102170006', '1', '2', 'upload_files/candidate_tracker/45484685054__Resume.pdf', NULL, NULL, '2021-02-17', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suite for mMIS profile', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 11:01:48', 50, '2021-02-17 11:25:40', 0, NULL, 1),
(3360, 'Dinesh YD', '16', '8778673979', '9789958136', 'Dineshyd6358@gmail.com', '1998-05-03', 22, '2', '2', 'Jayanthi', 'Self-employed', 15000.00, 2, 14000.00, 20000.00, 'Chennai', 'Chennai', '2102170007', '1', '2', 'upload_files/candidate_tracker/31037401570_My CV-1.docx', NULL, NULL, '2021-02-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary Expectation i s very high and got another offer', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 11:02:37', 50, '2021-02-17 01:22:58', 0, NULL, 1),
(3361, 'Haroon Rashith A', '16', '6381107449', '8870894669', 'haroonrashith@outlook.com', '1996-05-06', 24, '2', '2', 'abdul khader', 'retired', 100000.00, 2, 20000.00, 30000.00, 'chennai', 'chennai', '2102170008', '1', '2', 'upload_files/candidate_tracker/12532672014_Haroon Rashith Resume (1).docx', NULL, NULL, '2021-02-18', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Much exp in sales. looking for MIS but not much relevant', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-17 11:03:52', 50, '2021-02-18 10:36:53', 0, NULL, 1),
(3362, 'Divya R', '16', '9003177353', '9790205001', 'divyaravichandran04@gmail.com', '1990-07-04', 30, '2', '2', 'A Ravichandran', 'Not Working', 25000.00, 1, 2450000.00, 300000.00, 'Chennai', 'Chennai', '2102170009', '1', '2', 'upload_files/candidate_tracker/95843662031_Divya - Updated Resume.pdf', NULL, NULL, '2021-02-17', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Nt suit fr MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 11:16:08', 50, '2021-02-17 12:01:11', 0, NULL, 1),
(3363, 'P. Yuvaraj', '16', '9600139219', '8778897237', 'Yuvarajsudharshanmessi@gmail.com', '2000-09-05', 20, '2', '2', 'M. Palani', 'Gold smith', 20000.00, 1, 0.00, 16000.00, 'No. 44 vanniyampathy street, mandaveli, chennai 28', 'No. 44 vanniyampathy street, mandaveli, chennai 28', '2102170010', '1', '1', 'upload_files/candidate_tracker/79553881703_Yuvaraj P.docx', NULL, NULL, '2021-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 11:18:18', 50, '2021-02-17 11:39:32', 0, NULL, 1),
(3364, 'Jeffy Jose', '16', '9884309658', '', 'jeffyjose2607@gmail.com', '1992-07-26', 28, '2', '1', 'Linu M Mathew', 'HR', 32000.00, 1, 250000.00, 350000.00, 'chennai', 'chennai', '2102170011', '1', '2', 'upload_files/candidate_tracker/64772097066_Jeffy_Jose_Resume_new.docx_FLEOC_135076_531181_Candidate_CV.docx', NULL, NULL, '2021-02-17', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Not interested with agreement ', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 11:35:21', 1, '2021-02-17 11:55:55', 0, NULL, 1),
(3365, 'Gopinath K', '16', '8682805694', '', 'gopidoneee007@gmail.com', '1996-03-15', 24, '2', '2', 'Krishnan', 'Govt bus conductor', 30000.00, 1, 13600.00, 20000.00, 'Tiruvannamalai', 'Vadapalani', '2102170012', '1', '2', 'upload_files/candidate_tracker/14216788563_Gopi Resume.pdf', NULL, NULL, '2021-02-17', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Only excel knowledge', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-17 11:57:42', 1, '2021-02-17 12:05:57', 0, NULL, 1),
(3366, 'rajesh kumar.b', '6', '7550105811', '', 'rajeshkumar161993b@gmail.com', '1991-12-17', 29, '2', '1', 'mohammed imran', 'own business', 20000.00, 0, 15000.00, 15000.00, 'chennai', 'chennai', '2102170013', '1', '2', 'upload_files/candidate_tracker/8982768164_12132.pdf', NULL, NULL, '2021-02-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-17 12:29:47', 1, '2021-02-19 01:53:19', 0, NULL, 1),
(3367, 'Mohammed Aamir VT', '2', '7358379676', '9841806254', 'aamir.mohammed16@gmail.com', '1999-09-24', 21, '2', '2', 'Mushtaq Ahmed', 'Business', 50000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2102170014', '1', '1', 'upload_files/candidate_tracker/57312968989_Mohammed Aamir Resume.docx', NULL, NULL, '2021-02-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not completed.', '2', '2', '', '1', '1', '', '2', '2021-02-20', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-17 12:33:10', 50, '2021-02-19 11:49:49', 0, NULL, 1),
(3368, 'Aravind E', '16', '8939330063', '', 'Aravindaarthi14@gmaio.com', '1996-01-28', 25, '2', '2', 'Elumalai A', 'Car driver', 15000.00, 1, 280000.00, 400000.00, 'No:21/13, annai teresa nagar, greenways road Ch-28', 'Annai Teresa Nagar, Greenways Road Chennai-60002', '2102170015', '1', '2', 'upload_files/candidate_tracker/70128940600_Aravind E.docx', NULL, NULL, '2021-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much exp in MIS. Will not fit for our role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 12:54:19', 50, '2021-02-17 01:22:41', 0, NULL, 1),
(3369, 'Pearly B', '5', '9003053389', '9176903889', 'pearly28@ymail.com', '1989-09-28', 31, '2', '1', 'Arul Fernando', 'Executive', 30000.00, 1, 22000.00, 25000.00, 'Villivakkam, Chennai', 'Villivakkam, Chennai', '2102170016', '1', '2', 'upload_files/candidate_tracker/8112920562_B._PEARLY_RESUME (1) (1).doc', NULL, NULL, '2021-02-20', 15, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Will not suite for sales', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-17 01:41:43', 1, '2021-02-20 12:06:28', 0, NULL, 1),
(3370, 'b.abirami', '13', '9841325685', '', 'abiramibalamurugan8459@gmail.com', '2000-08-22', 20, '1', '2', 'c.balamurugan', 'massion', 20000.00, 1, 0.00, 15000.00, 'mathur', 'mathur', '2102170017', '', '1', 'upload_files/candidate_tracker/10449971766_abi resume.docx', NULL, NULL, '2021-02-18', 0, 'jobs', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'She dont know the basics. She will learn and come after 1 week may be.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-17 02:09:51', 1, '2021-02-17 11:05:33', 0, NULL, 1),
(3371, 'ravi s', '5', '8838108046', '', 'srvavi@gmail.com', '1991-03-12', 29, '2', '1', 'revathy', 'it', 10000.00, 0, 4.50, 6.00, 'urapakkam', 'urapakkam', '2102170018', '1', '2', 'upload_files/candidate_tracker/25761388093_Resume - Ravi (chennai).pdf', NULL, NULL, '2021-02-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for Field sales. Sustainability issues', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 02:22:28', 1, '2021-02-17 03:12:59', 0, NULL, 1),
(3372, '', '0', '8637477191', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102170019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-17 02:23:29', 0, NULL, 0, NULL, 1),
(3373, 'Narmadha', '16', '8220782570', '', 'narmadam81@gmail.com', '1994-01-08', 27, '2', '2', 'Margasamy', 'Nil', 65000.00, 2, 22000.00, 25000.00, 'Chennai', 'Chennai', '2102170020', '1', '2', 'upload_files/candidate_tracker/64457140484_P1090.pdf', NULL, NULL, '2021-02-17', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She didnt confirm on the Agreement.Overall her profile will not get matched with our MIS Role\n', '3', '2', '', '1', '1', '', '2', '2021-02-18', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 03:01:20', 50, '2021-02-17 03:11:45', 0, NULL, 1),
(3374, 'Dinesh', '1', '9677312317', '', 'dhina.dhina1@gmail.com', '1992-04-04', 28, '2', '2', 'Dhamotharan', 'Former', 400000.00, 1, 0.00, 500000.00, 'No 74 bajanai Kovil street siruvanjipattu village', 'Same as', '2102170021', '1', '1', 'upload_files/candidate_tracker/27114785159_Dinesh D1.doc', NULL, NULL, '2021-02-20', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suit for HNI client process', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-17 03:32:40', 50, '2021-02-20 11:51:43', 0, NULL, 1),
(3375, 'Tharshanaa D', '2', '9498066269', '7092391039', 'Tharshanaa57@gmail.com', '1999-07-05', 21, '2', '2', 'L Dillibabu', 'Chennai', 25000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2102170022', '1', '1', 'upload_files/candidate_tracker/949233915_RESUME THARSHANAA.docx', NULL, NULL, '2021-02-18', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-19', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-17 03:33:12', 50, '2021-02-18 10:37:54', 0, NULL, 1),
(3376, '', '0', '9840999999', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102170023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-17 04:15:59', 0, NULL, 0, NULL, 1),
(3377, 'sathiyaraj.l', '2', '8056279032', '8939105325', 'sakthi01k@gmail.com', '1992-08-07', 28, '2', '2', 'no', 'no', 35000.00, 0, 420000.00, 750000.00, 'chennai', 'pallavaram', '2102170024', '1', '2', 'upload_files/candidate_tracker/74363362362_SATHIYARAJL.pdf', NULL, NULL, '2021-02-19', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Technically not good.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-17 04:31:40', 1, '2021-02-17 04:39:24', 0, NULL, 1),
(3378, '', '0', '7708452083', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102170025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-17 05:37:37', 0, NULL, 0, NULL, 1),
(3379, '', '0', '9789879783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102170026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-17 09:00:52', 0, NULL, 0, NULL, 1),
(3380, 'Keerthi', '16', '8760504299', '9047335909', 'keerthi135smk@gmail.com', '1998-07-11', 22, '2', '2', 'Parent', 'Press worker', 2.00, 1, 2.00, 16000.00, 'Thambaram', 'Thambaram', '2102170027', '1', '2', 'upload_files/candidate_tracker/95091690511_keerthika RESUME.pdf', NULL, NULL, '2021-02-17', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-17 09:42:54', 1, '2021-02-17 09:49:39', 0, NULL, 1),
(3381, '', '0', '8925468623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102170028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-17 10:06:52', 0, NULL, 0, NULL, 1),
(3382, 'S. Divya jothi', '4', '9566750510', '', 'divyajothi27@gmail.com', '1994-04-27', 26, '2', '2', 'N. Shanmuga sundharam', 'Supervisor', 10000.00, 1, 20000.00, 25000.00, 'Arakonam', 'Moulivakkam', '2102170029', '1', '2', 'upload_files/candidate_tracker/44349769234_DIVYA resume.doc', NULL, NULL, '2021-02-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-02-17 10:18:26', 1, '2021-02-17 10:24:03', 0, NULL, 1),
(3383, 'Saravanan K', '4', '9094257689', '', 'sarosure18@gmail.com', '2000-01-05', 21, '1', '2', 'Karunakaran v', 'Student', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102170030', '', '1', 'upload_files/candidate_tracker/11066439842_saravanan resume.docx', NULL, NULL, '2021-02-18', 0, 'Jobs', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Location too long.will not sustain', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-17 10:49:30', 50, '2021-02-18 10:48:46', 0, NULL, 1),
(3384, '', '0', '9359960033', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102180001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-18 09:16:51', 0, NULL, 0, NULL, 1),
(3385, 'Dinesh', '5', '7397294663', '', 'gdineshcs@gmail.com', '1992-06-10', 28, '2', '2', 'gnanasekaran', 'farmer', 10000.00, 1, 30000.00, 40000.00, 'Chennai', 'Chennai', '2102180002', '1', '2', 'upload_files/candidate_tracker/9146529098_DINESH G.pdf', NULL, NULL, '2021-02-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'High CTC expectations.Will not sustain for a long', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-18 10:43:48', 1, '2021-02-18 11:01:41', 0, NULL, 1),
(3386, 'Srijith', '17', '9840081944', '', 'srijithm8@gmail.com', '1991-07-11', 29, '2', '1', 'Muralidharan', 'Accountant', 100000.00, 0, 440000.00, 500000.00, 'Chennai', 'Chennai', '2102180003', '1', '2', 'upload_files/candidate_tracker/79706630214_Srijith.docx', NULL, NULL, '2021-02-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Relevant Experience. Will not fit for our BDM', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-18 11:15:20', 1, '2021-02-18 11:20:02', 0, NULL, 1),
(3387, 'Divya V K', '16', '7904311837', '', 'inboxdivyavk@gmail.com', '1988-09-14', 32, '2', '1', 'R. Srikanth', 'Technical Manager', 40000.00, 1, 0.00, 21000.00, 'Chennai', 'Chennai', '2102180004', '1', '1', 'upload_files/candidate_tracker/26651522360_Divya V K_Resume.docx', NULL, NULL, '2021-02-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustainability issue.No relevant Exp', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-18 11:16:17', 1, '2021-02-18 11:20:26', 0, NULL, 1),
(3388, '', '0', '9884336365', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102180005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-18 11:36:51', 0, NULL, 0, NULL, 1),
(3389, 'Ganesh Prabhu', '16', '7373625143', '', 'ganesh.prabhu2491@gmail.com', '1991-12-24', 29, '2', '2', 'Chanthanaselvam', 'Police rtd', 400000.00, 1, 340000.00, 400000.00, 'CHENNAI', 'CHENNAI', '2102180006', '1', '2', 'upload_files/candidate_tracker/98608047752_ganesh_resume.pdf', NULL, NULL, '2021-02-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Full Exp in VBA,will not sustain in MIS and high CTC', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-18 11:49:33', 50, '2021-02-18 12:39:12', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3390, 'Mohamed Abeeth Ali A', '16', '9941482434', '9381184782', 'abeethclg15@gmail.com', '2000-05-15', 20, '2', '2', 'A Azam Basha', 'Electrition', 96000.00, 1, 11000.00, 13000.00, 'Chennai', 'Chennai', '2102180007', '1', '2', 'upload_files/candidate_tracker/70589048548_Abeeth_Resume.pdf', NULL, NULL, '2021-02-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication, Not fit for MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-18 12:22:21', 50, '2021-02-18 02:36:04', 0, NULL, 1),
(3391, 'keerthivasan', '16', '9841552669', '', 'keerthivasan1033@gmail.com', '1995-09-08', 25, '2', '2', 'C D Kumaraswamy', 'Post man', 30000.00, 1, 16000.00, 20000.00, 'Mylapore', 'Mylapore', '2102180008', '1', '2', 'upload_files/candidate_tracker/98057257594_My Resume.pdf', NULL, NULL, '2021-02-18', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'CMA Inter. Focus in to CA will not sustain in MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-18 01:19:49', 1, '2021-02-18 01:39:21', 0, NULL, 1),
(3392, 'Mohamed fysal', '5', '7639140765', '', 'Iammohamedfal@gmail.co', '1994-07-30', 26, '3', '2', 'M.faridhal begam', 'House wife', 10000.00, 2, 0.00, 14000.00, 'Salem', 'Tiruvallicani', '2102180009', '', '1', 'upload_files/candidate_tracker/47532839058_MOHAMED FYSAL (1).pdf', NULL, NULL, '2021-02-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Only excel knowledge, not ready for agreement', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-18 02:14:23', 1, '2021-02-18 02:27:05', 0, NULL, 1),
(3393, 'Shivapriya', '20', '7806993429', '8528357452', 'priyavasan1997@gmail.com', '1997-09-25', 23, '2', '2', 'Umadevi', 'house wife', 30000.00, 1, 23000.00, 25000.00, '1320c , kVN , 8th main road, vettuvankeni', 'Vettuvankeni', '2102180010', '1', '2', 'upload_files/candidate_tracker/77287977791_RESUME.docx', NULL, NULL, '2021-02-19', 1, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not be suitable for sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '6', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-18 04:52:47', 50, '2021-02-19 01:31:23', 0, NULL, 1),
(3394, 'jenith', '2', '7339425535', '', 'jenith1999.jj@gmail.com', '1999-09-18', 21, '2', '2', 'james', 'business', 30000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2102180011', '1', '1', 'upload_files/candidate_tracker/10109708384_JenithJResume (3).pdf', NULL, NULL, '2021-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High CTC expectation, holding an offer', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-18 05:08:43', 50, '2021-02-22 10:10:17', 0, NULL, 1),
(3395, 'roshan lal', '16', '9790813016', '', 'roshan.kvan@gmail.com', '1997-08-11', 23, '2', '2', 'shiv kumar', 'manager', 20000.00, 2, 0.00, 300000.00, 'urapakkam', 'urapakkam', '2102180012', '1', '1', 'upload_files/candidate_tracker/5992873153_Roshan lal RESUME.docx', NULL, NULL, '2021-02-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is having health issue(related to ear).Not ready for Agreement.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-18 07:05:33', 50, '2021-02-19 10:26:40', 0, NULL, 1),
(3396, '', '0', '8072329880', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102190001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-19 10:21:10', 0, NULL, 0, NULL, 1),
(3397, 'Joseph Robinson J', '16', '9884149137', '', 'joseph.robinson153@gmail.com', '1991-10-25', 29, '2', '2', 'Johnny', 'Retired officer', 25000.00, 1, 12800.00, 16000.00, 'CHENNAI', 'CHENNAI', '2102190002', '1', '2', 'upload_files/candidate_tracker/32518029343_resume for me (1)new - Copy.doc', NULL, NULL, '2021-02-19', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Candidate is handicapped, will not be able to handle our role', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-19 10:38:10', 1, '2021-02-19 10:57:17', 0, NULL, 1),
(3398, 'justin leo j', '6', '7010679611', '', 'justinleo1999.martin@gmail.com', '1999-04-01', 21, '2', '2', 'james martin', 'ashok leyland employee', 20000.00, 1, 0.00, 13000.00, 'chennai', 'nammalvarpet', '2102190003', '2', '1', 'upload_files/candidate_tracker/63676839010_Curriculum Vitae non Tech.pdf', NULL, NULL, '2021-02-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 10:47:22', 50, '2021-02-20 05:48:38', 0, NULL, 1),
(3399, 'Dinesh.S', '5', '9994978653', '', 'dineshprince2020@gmail.com', '1992-06-26', 28, '2', '1', 'Umadevi.D', 'BPO', 40000.00, 1, 499999.00, 499999.00, 'Namakkal', 'Chennai', '2102190004', '1', '2', 'upload_files/candidate_tracker/9501623967_Dinesh.resume.S.pdf', NULL, NULL, '2021-02-19', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'High CTC Exp.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-19 11:02:09', 50, '2021-02-19 11:31:49', 0, NULL, 1),
(3400, 'Shyam Sundar', '5', '7010872331', '8056663459', 'shyamsiddhu.d@gmail.com', '1995-11-20', 25, '2', '2', 'Anbu M', 'Councillor', 30000.00, 1, 360000.00, 450000.00, 'Ponneri', 'Ponneri', '2102190005', '1', '2', 'upload_files/candidate_tracker/29481703515_Shyam Resume.pdf', NULL, NULL, '2021-02-19', 0, '', '3', '8', '2021-02-22', 321696.00, '', '6', '2021-11-10', '1', '23000 TH with PF xxamp PT 26808 Gross', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-19 11:10:58', 7, '2021-02-20 11:35:04', 0, NULL, 1),
(3401, 'nelson richard', '5', '8056224488', '', 'nels0610@gmail.com', '1989-08-25', 31, '2', '2', 'none', 'none', 20000.00, 0, 20000.00, 23000.00, 'chennai', 'chennai', '2102190006', '3', '2', 'upload_files/candidate_tracker/72669877527_Nelson Resume.pdf', NULL, NULL, '2021-02-19', 0, '', '3', '8', '2021-03-15', 315792.00, '', '3', '2021-03-25', '1', 'Selected for RM - Shanmugam Team/25K TH Patroniss Gross 26316', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 11:11:44', 60, '2021-03-06 05:01:18', 0, NULL, 1),
(3402, 'Ganesh', '16', '7010889216', '', 'viratganesh1998@gmail.com', '1998-01-02', 23, '2', '2', 'Manjula', 'Housewife', 25000.00, 1, 14400.00, 18000.00, 'Chennai', 'Vandalur', '2102190007', '1', '2', 'upload_files/candidate_tracker/77407235976_Resume_G.docx', NULL, NULL, '2021-02-19', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested in agreement', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-19 11:27:39', 50, '2021-02-19 11:55:34', 0, NULL, 1),
(3403, 'Anusha m c', '20', '9663408393', '9113279689', 'anushacoorg27@gmail.com', '1997-03-27', 23, '1', '2', 'Chandrashekar h r', 'Building Contractor', 20000.00, 1, 0.00, 15000.00, 'Somwarpet coorg', 'Rajajinagar', '2102190008', '', '1', 'upload_files/candidate_tracker/58380364262_ANUSHA%20RESUME1.docx', NULL, NULL, '2021-02-19', 0, '5397', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is expecting high salary....she will not sustain for long term...she is too far from our office location...', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 12:10:02', 50, '2021-02-19 12:38:30', 0, NULL, 1),
(3404, '', '0', '9360982762', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102190009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-19 12:12:57', 0, NULL, 0, NULL, 1),
(3405, 'sachin', '5', '9986600279', '', 'sachinsachi944@gmail.com', '1996-11-06', 24, '2', '2', 'suresh', 'farmer', 20000.00, 5, 21800.00, 26000.00, 'bidar bhalki bidar', 'kudlu gate chikka begur bangalore', '2102190010', '1', '2', 'upload_files/candidate_tracker/48069491595_Sachin Updated.2020 OCT-converted.pdf', NULL, NULL, '2021-02-19', 1, '', '5', '68', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '....', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-19 12:13:12', 50, '2021-02-19 12:37:21', 0, NULL, 1),
(3406, 'Lakshmi D R', '20', '7760625958', '9663408393', 'lakshmidr12@gamil.com', '1994-04-12', 26, '1', '2', 'Ramanaik D S', 'Farmer', 5000.00, 2, 0.00, 20000.00, 'Shimoga', 'Rajaji nagar', '2102190011', '', '1', 'upload_files/candidate_tracker/39714592673_Lakshmi resume1.docx', NULL, NULL, '2021-02-19', 0, '', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she will not suit for our process....she is expecting 20k salary and she will not handle pressure....', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 12:15:29', 50, '2021-02-19 12:45:44', 0, NULL, 1),
(3407, '', '0', '9841454237', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102190012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-19 01:02:15', 0, NULL, 0, NULL, 1),
(3408, 'manoj r', '16', '9524685559', '', 'mano96kavi@gmail.com', '1996-06-15', 24, '2', '2', 'raja', 'driver', 20000.00, 1, 14000.00, 16000.00, 'chennai', 'vysarpadi', '2102190013', '2', '2', 'upload_files/candidate_tracker/38480072750_mano resume.pdf', NULL, NULL, '2021-02-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 01:10:25', 50, '2021-02-20 05:48:57', 0, NULL, 1),
(3409, 'Rajesh kumar.b', '6', '7358535072', '', 'Rajeshkumar161993@gmail.com', '1993-06-01', 27, '3', '2', 'N.babu', 'Building contractor', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2102190014', '', '1', 'upload_files/candidate_tracker/87360815517_8982768164_12132.pdf', NULL, NULL, '2021-02-19', 0, '', '3', '8', '2021-02-22', 216000.00, '', '3', '2021-08-02', '1', '18K CTC 17100 TH in Patroniss for Ramesh Arumbakkam', '5', '2', '1', '1', '3', '1', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 01:11:50', 60, '2021-02-20 06:19:47', 0, NULL, 1),
(3410, 'arunkumar', '5', '9750353827', '', 'arun861990@gmail.com', '1990-06-08', 30, '2', '1', 'palanivel', 'salaried', 50000.00, 1, 25000.00, 35000.00, 'chennai', 'chennai', '2102190015', '1', '2', 'upload_files/candidate_tracker/99883996635_ARUN KUMAR hdfc life exp-converted (1).pdf', NULL, NULL, '2021-03-05', 15, '', '3', '8', '2021-03-29', 360000.00, '', '2', '1970-01-01', '1', '30k ctc with pf and pt', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-19 01:12:25', 7, '2021-03-09 06:59:11', 0, NULL, 1),
(3411, 'Priya dharshini', '20', '8428357452', '7806993429', 'Kannagisilai1999@gmail.com', '1999-06-13', 21, '2', '2', 'Uma Devi', 'house wife', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'chennai', '2102190016', '1', '1', 'upload_files/candidate_tracker/56203239564_darsini.pdf', NULL, NULL, '2021-02-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not join. couldnt share payslip and relieving', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-19 01:23:41', 60, '2021-02-22 07:10:32', 0, NULL, 1),
(3412, 'bharath', '6', '7708424604', '', 'barathu1100@gmail.com', '1990-08-21', 30, '2', '2', 'elumalai k', 'security officer', 5000.00, 0, 12000.00, 14000.00, 'chennai', 'thuraipakkam', '2102190017', '2', '2', 'upload_files/candidate_tracker/74430860859_Current Update CV.doc', NULL, NULL, '2021-02-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No relevant Exp.Medical Billing Exp not interested in field sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 01:45:27', 1, '2021-02-19 01:48:12', 0, NULL, 1),
(3413, '', '0', '9414579919', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102190018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-19 03:06:33', 0, NULL, 0, NULL, 1),
(3414, 'pavithranath', '2', '9514579919', '', 'pavithranathan77@gmail.com', '1997-04-18', 23, '2', '2', 't v karmegan', 'veterinary octor', 50000.00, 4, 5000.00, 15000.00, 'kancheepuram', 'kaancheepuram', '2102190019', '1', '2', 'upload_files/candidate_tracker/60745589868_Pavithranath_Karmegan_Resume.pdf', NULL, NULL, '2021-02-20', 60, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not able to do the task', '2', '2', '', '1', '1', '', '2', '2021-02-22', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-19 03:38:07', 50, '2021-02-20 05:36:25', 0, NULL, 1),
(3415, 'p vignesh', '2', '9444364899', '9962860962', 'vicramvas@gmail.com', '1994-07-15', 26, '2', '2', 'k panneerselvam', 'bsnl chennai telphones', 40000.00, 2, 400000.00, 800000.00, 'chennai', 'chennai', '2102190020', '1', '2', 'upload_files/candidate_tracker/27736930873_Vignesh PANNEERSELVAM.pdf', NULL, NULL, '2021-02-20', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Technically not good.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-19 06:19:35', 50, '2021-02-20 05:36:37', 0, NULL, 1),
(3416, 'V.Bhuvaneswari', '4', '7397309718', '8072472671', 'bhuvana.vijay20@gmail.com', '1995-12-20', 25, '2', '2', 'Vijaykumar', 'Customer support executive officer', 20000.00, 1, 11500.00, 16000.00, 'No 3/945 SSL green park apt Madhanadhapuram', 'No 3/945 SSL Green Park Apt Madhanadhapuram', '2102190021', '1', '2', 'upload_files/candidate_tracker/48333171824_1613445911913_1613017138419_1611559217591_1608018382899_BHUVANESWARI RESUME.pdf', NULL, NULL, '2021-02-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-19 06:19:37', 50, '2021-02-20 05:49:13', 0, NULL, 1),
(3417, 'dharungokul', '22', '7904303221', '9841216887', 'dharungokul21@gmail.com', '1998-10-21', 22, '2', '2', 'marimuthu', 'business', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2102190022', '1', '1', 'upload_files/candidate_tracker/57063509977_RESUME2 M.DHARUNGOKUL (1) (1) (2).docx', NULL, NULL, '2021-02-20', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'lESS VERBAL SKILLS', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-19 06:38:04', 50, '2021-02-20 11:11:21', 0, NULL, 1),
(3418, 'pramodh waj', '22', '8072095811', '', 'jesuundmarie@gmail.com', '1999-10-15', 21, '2', '2', 'velmurugan', 'student', 30000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2102190023', '1', '1', 'upload_files/candidate_tracker/85985651619_resume (1).pdf', NULL, NULL, '2021-02-20', 0, '', '3', '59', '2021-02-22', 3000.00, '', '5', '1970-01-01', '2', 'Selected as a Intern for 1 month', '2', '2', '2', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-19 06:49:58', 60, '2021-02-22 09:48:43', 0, NULL, 1),
(3419, 'R. Rajesh', '6', '9884211251', '9751701173', 'rajeshr.2811@gmail.com', '1986-11-28', 34, '2', '1', 'Lalitha.R', 'Housewife', 25000.00, 1, 22000.00, 25000.00, 'Maraimalai nagar', 'Maraimalai nagar', '2102190024', '1', '2', 'upload_files/candidate_tracker/42455707146_R.Rajesh resume.pdf', NULL, NULL, '2021-02-25', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-19 06:52:37', 1, '2021-02-19 07:02:52', 0, NULL, 1),
(3420, '', '0', '9597502061', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102190025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-19 09:51:03', 0, NULL, 0, NULL, 1),
(3421, 'HARIKUMAR', '13', '9042748542', '', 'Rharikumarcse@gmail.com', '1995-07-20', 25, '2', '2', 'Kubendra(Mother)', 'Home maker', 25000.00, 1, 300000.00, 500000.00, 'Dindigul', 'Dindigul', '2102200001', '1', '2', 'upload_files/candidate_tracker/81765563759_HARIKUMAR.doc', NULL, NULL, '2021-02-23', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Looking forward only for Hike. He will not sustain. rejected by arun', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-20 07:32:35', 1, '2021-02-20 07:37:22', 0, NULL, 1),
(3422, 'saravanan r', '5', '7550281567', '', 'saravananrajasekar1996@gmail.com', '1996-08-04', 24, '2', '2', 'none', 'none', 21000.00, 0, 21000.00, 25000.00, 'chennai', 'chennai', '2102200002', '3', '2', 'upload_files/candidate_tracker/15161445540_CV_2019-12-13-111650.pdf', NULL, NULL, '2021-02-20', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'Candidates expectation is high on package', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-20 09:17:00', 1, '2021-02-20 09:19:43', 0, NULL, 1),
(3423, 'Lakshmapriya', '20', '8825688624', '9488348434', 'arivu98priya@gmail.com', '1998-04-19', 22, '2', '2', 'Mathivanan', 'No', 50000.00, 1, 0.00, 30000.00, 'Chennai,Redhills', 'Chennai', '2102200003', '1', '1', 'upload_files/candidate_tracker/89761279308_lakshmapriya resume new.docx', NULL, NULL, '2021-02-20', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SHE IS NOT INTERESTED FOR TELECALLING', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-20 09:22:16', 60, '2021-02-22 07:12:47', 0, NULL, 1),
(3424, 'murali mohan .k', '16', '9080593575', '7299012598', 'gurumurali786@gmail.com', '1988-02-02', 33, '2', '2', 'maliyathri .k', 'chennai', 12000.00, 0, 0.00, 25000.00, 'sembakkam', 'sembakkam', '2102200004', '1', '2', 'upload_files/candidate_tracker/32255991746_1613796974853_Murali_Resume.docx', NULL, NULL, '2021-02-20', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No proper communication, having 10 yrs experience but he dont have tht much of knowledge', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-20 10:21:52', 50, '2021-02-20 11:10:13', 0, NULL, 1),
(3425, '', '0', '7904809505', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102200005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-20 10:30:56', 0, NULL, 0, NULL, 1),
(3426, 'samir mali', '16', '9384684652', '', 'samirmali1994@gmail.com', '1994-06-23', 26, '2', '2', 'anjan mali', 'bussiness', 12000.00, 4, 17000.00, 24000.00, 'odisha', 'kodambakkam', '2102200006', '1', '2', 'upload_files/candidate_tracker/83685961275_Resume (10).pdf', NULL, NULL, '2021-02-20', 40, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Only Excel Exp,no communication as expected. Will not fit for our role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-20 11:09:02', 50, '2021-02-20 11:50:54', 0, NULL, 1),
(3427, 'Monisha affrin', '4', '7904347076', '6382274044', '97223affrin@gmail.com', '1997-02-23', 23, '2', '2', 'Edwin Prabhakaran', 'Railway employee', 400000.00, 0, 15000.00, 18000.00, 'Icf east colony colony chennai', 'Icf east colony chennai', '2102200007', '1', '2', 'upload_files/candidate_tracker/81562095241_resume.pdf', NULL, NULL, '2021-02-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for agreement', '1', '2', '', '1', '1', '', '2', '2021-02-22', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-20 11:19:58', 50, '2021-02-20 11:49:37', 0, NULL, 1),
(3428, 'Soundar. T', '5', '8939084545', '9962832837', 'andrewalphones29@gmail.com', '1995-06-29', 25, '2', '2', 'Tamilarasu', 'Ecg technician', 400000.00, 1, 288000.00, 360000.00, 'Chennai', 'Chennai', '2102200008', '1', '2', 'upload_files/candidate_tracker/56422230200_soundar resume new_compressed (1).pdf', NULL, NULL, '2021-02-20', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-20 11:42:44', 50, '2021-02-20 05:38:03', 0, NULL, 1),
(3429, 'Kelvin', '5', '6382165315', '8939084545', 'kelvinsimions0607@gmail.com', '1996-06-07', 24, '2', '2', 'Hendrypaul', 'Retired', 300000.00, 1, 22200.00, 28000.00, 'Chennai', 'Chennai', '2102200009', '1', '2', 'upload_files/candidate_tracker/99313565002_kelvins perfect resume format.pdf', NULL, NULL, '2021-02-20', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-20 11:43:50', 50, '2021-02-20 05:37:41', 0, NULL, 1),
(3430, 'ganesh s', '22', '6379996370', '', 'ganeshstudent01@gmail.com', '1999-04-11', 21, '2', '2', 'shanmugam', 'business', 30000.00, 2, 0.00, 200000.00, 'tindivanam', 'tindivanam', '2102200010', '1', '1', 'upload_files/candidate_tracker/46043801790_Ganesh-Resume.pdf', NULL, NULL, '2021-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-20 11:49:08', 1, '2021-02-20 11:53:16', 0, NULL, 1),
(3431, 'priyanka', '5', '7907089123', '', 'priyankababu0195@gmail.com', '1995-02-01', 26, '2', '2', 'babu rajendran', 'business', 20000.00, 1, 25000.00, 35000.00, 'kerala', 'Chennai', '2102200011', '1', '2', 'upload_files/candidate_tracker/71143942143_pinku (1) copy.doc', NULL, NULL, '2021-02-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not fit for our sales profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-20 11:50:40', 50, '2021-02-20 05:37:10', 0, NULL, 1),
(3432, 'K.goutham', '17', '9841512578', '9551456667', 'gouthampru@gmail.com', '1995-12-09', 25, '2', '2', 'V.meenakshi', 'Business', 6.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2102200012', '1', '2', 'upload_files/candidate_tracker/79484608334_8982768164_12132.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not at all a relevant profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-20 12:20:14', 60, '2021-02-22 04:28:05', 0, NULL, 1),
(3433, 'Raghu Ranjith R', '4', '7871407429', '', 'raghuranjith0106@gmail.com', '1999-10-09', 21, '1', '2', 'Ramesh p', 'Carpenter', 13000.00, 2, 0.00, 13000.00, 'No:20 EVK Sambath street,MGR Nagar Chennai 600078', 'No:20 EVK Sambath Street,MGR Nagar Chennai 600078', '2102200013', '', '2', 'upload_files/candidate_tracker/60670002873_Raghu Resume.docx', NULL, NULL, '2021-02-20', 0, '5174', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'can not handle pressure', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-20 12:56:52', 50, '2021-02-20 05:37:19', 0, NULL, 1),
(3434, '', '0', '8248516373', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102200014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-20 04:01:18', 0, NULL, 0, NULL, 1),
(3435, 'Karthick M', '6', '9551123628', '9003041580', 'karthih2r@gmail.com', '1995-09-06', 25, '2', '2', 'Muthu', 'Carpenter', 200000.00, 2, 27000.00, 30000.00, 'Chennai', 'Chennai', '2102200015', '1', '2', 'upload_files/candidate_tracker/4665557824_karthick M resume.pdf', NULL, NULL, '2021-02-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-20 04:26:37', 1, '2021-02-20 04:31:13', 0, NULL, 1),
(3436, 'Selvakumar', '23', '8883279006', '', 'selvakumar311997@gmail.com', '1996-01-03', 25, '2', '2', 'Gunasekaran', 'Telecom Mechanic', 20000.00, 1, 14000.00, 16000.00, 'Tirunelveli', 'Amabuttur', '2102200016', '1', '2', 'upload_files/candidate_tracker/99631302616_selvanew.pdf', NULL, NULL, '2021-02-23', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Technically not good. rejected by latha', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-20 04:57:16', 1, '2021-02-20 05:01:41', 0, NULL, 1),
(3437, 'abishek c', '22', '7397196298', '', 'abisheksaravanan24@gmail.com', '1998-04-24', 22, '2', '2', 'chellappan a', 'student', 60000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2102200017', '1', '1', 'upload_files/candidate_tracker/19299933307_Abishek resume.docx', NULL, NULL, '2021-02-24', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate not okay with service agreement.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-20 05:50:05', 50, '2021-02-24 11:57:06', 0, NULL, 1),
(3438, 'saravanan m', '5', '9944504226', '7904771440', 'saravanankm4694@gmail.com', '1996-06-04', 24, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2102210001', '3', '2', 'upload_files/candidate_tracker/49010578962_Saravanan M(3).pdf', NULL, NULL, '2021-02-22', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not fit for life sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-21 07:04:42', 50, '2021-02-22 01:26:22', 0, NULL, 1),
(3439, 'Anusha. N', '16', '9710150941', '', 'anusha2354@gmail.com', '1997-07-30', 23, '2', '2', 'N. Vijya Kumar - Father', 'Electrition', 10000.00, 2, 13000.00, 25000.00, '6/19,2nd Kasthuribai Street,Coronation Nagar', 'Korukupet, Chennai', '2102210002', '1', '2', 'upload_files/candidate_tracker/54683974200_anu resume(1).pdf', NULL, NULL, '2021-02-22', 15, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not at all a relevant profile', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-21 01:11:38', 50, '2021-02-22 10:28:37', 0, NULL, 1),
(3440, 'narendaran s', '5', '8667465193', '', 'narendaran03@gmail.com', '1996-07-26', 24, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2102210003', '3', '2', 'upload_files/candidate_tracker/90906529795_Narendran Cre.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have exp in Loan and collection, will not fit for our sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-21 02:43:35', 50, '2021-02-22 12:18:59', 0, NULL, 1),
(3441, 'Mario Manuel Miller', '22', '9789802162', '', 'mariomanuelm73@gmail.com', '2000-08-24', 20, '2', '2', 'Anita Martin', 'Student', 25000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2102210004', '1', '1', 'upload_files/candidate_tracker/11481548643_Resume.docx', NULL, NULL, '2021-02-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate is looking for a month Internship, His focus in on the Air Force Job. Doubtful on onboarding', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-21 03:14:25', 1, '2021-02-21 03:20:16', 0, NULL, 1),
(3442, 'antony nirmal', '5', '9514175050', '', 'noel8489@gmail.com', '1990-10-09', 30, '2', '2', 'none', 'none', 25000.00, 0, 25000.00, 27000.00, 'chennai', 'chennai', '2102210005', '3', '2', 'upload_files/candidate_tracker/62460323186_Antony_Nirmal_New_Resume.pdf', NULL, NULL, '2021-03-06', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for Job', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-21 04:25:49', 7, '2021-03-06 12:07:32', 0, NULL, 1),
(3443, 'logesh babu', '3', '9894456040', '', 'blokesh171@gmail.com', '1997-01-17', 24, '2', '2', 'babu', 'carpenter', 200000.00, 2, 260000.00, 330000.00, 'K.K. Nagar', 'K.K. Nagar', '2102210006', '1', '2', 'upload_files/candidate_tracker/18899967903_resume-cv.pdf', NULL, NULL, '2021-02-27', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Could Not Meet Our Expectations', '2', '1', '', '1', '1', '', '2', '2021-03-06', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-21 07:38:37', 60, '2021-02-27 11:12:03', 0, NULL, 1),
(3444, 'B.umamaheshwari', '2', '9677043873', '9940504737', 'umabhoopathy93@gmail.com', '1993-10-05', 27, '2', '2', 'Parent', 'Security', 15000.00, 1, 1.20, 2.50, '10/146, New housing board, Godhamedu, saidapet', 'Chennai', '2102210007', '1', '2', 'upload_files/candidate_tracker/38665461355_Umamaheshwari_Resume.pdf', NULL, NULL, '2021-02-22', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much knowledge in React, Sustainability Doubt', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-21 08:10:00', 50, '2021-02-22 02:30:44', 0, NULL, 1),
(3445, 'Gopi B', '21', '9941980198', '9840141899', 'gopivj2306@gmail.com', '2000-06-23', 20, '2', '2', 'Jaganathan', 'Driver', 15000.00, 2, 0.00, 18.00, 'Urapakkam', 'Urapakkam', '2102210008', '1', '1', 'upload_files/candidate_tracker/52725510538_Gopi Resume-converted.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location constraint, Fresher profile, not interested in sales. No exp in System Admin', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-21 09:00:47', 50, '2021-02-22 12:17:47', 0, NULL, 1),
(3446, 'P.santhosh', '21', '6369917137', '', 'santhoshlogu888@gmail.com', '1999-07-18', 21, '2', '2', 'S.prabhu', 'Driver', 15000.00, 1, 0.00, 18000.00, 'Urapakkam', 'Urapakkam', '2102210009', '1', '1', 'upload_files/candidate_tracker/98322924462_Santhosh Resume.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication better, Location constraint', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-21 09:00:51', 50, '2021-02-22 12:20:04', 0, NULL, 1),
(3447, 'Subash Chandra Bose', '21', '8825722456', '9629896047', 'bosssubash05@gmail.com', '1998-03-02', 22, '2', '2', 'Raghupati', 'Daily wages', 10000.00, 2, 13000.00, 16000.00, 'NO. 2/20, Bharathi Nagar, Marrakanam-604303', 'No. 3/5Brindhavan street Koddambakkam -600027', '2102220001', '1', '2', 'upload_files/candidate_tracker/84963968498_CV_2021-01-26-125030.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'false information completely', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-22 10:40:46', 1, '2021-02-22 10:58:49', 0, NULL, 1),
(3448, 'Shweta kumari', '5', '8789735503', '7283045449', 'Shwetamishr09@gmail.com', '1998-10-05', 22, '2', '2', 'Umesh kumar mishra', 'Agent in sahara india', 30000.00, 1, 30000.00, 35000.00, 'Chennai', 'Chennai', '2102220002', '1', '2', 'upload_files/candidate_tracker/24001202329_1613969817515Resume (1).pdf', NULL, NULL, '2021-02-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-22 12:11:26', 50, '2021-02-22 02:34:49', 0, NULL, 1),
(3449, 'Karthikeyan', '5', '9361734409', '8789735503', 'karthikeyanmahalingam.official@gmail.com', '1995-09-06', 25, '2', '2', 'Mahalingam', 'Business', 40000.00, 1, 42000.00, 45000.00, 'Chennai', 'Chennai', '2102220003', '1', '2', 'upload_files/candidate_tracker/84672724695_Karthikeyan M _ Resume-2.pdf', NULL, NULL, '2021-02-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-22 12:13:16', 1, '2021-02-22 12:21:34', 0, NULL, 1),
(3450, 'Karthick B', '26', '8939311643', '8825664884', 'kthkarthick@gmail.com', '1994-10-21', 26, '3', '2', 'Baskar K', 'Electrician', 20000.00, 1, 16000.00, 22000.00, 'chennai', 'chennai', '2102220004', '', '2', 'upload_files/candidate_tracker/19342381408_KARTHI-GNG2 (1).pdf', NULL, NULL, '2021-02-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Average Communication, not much in PPT. Will not fit for our MIS positions', '7', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-22 01:20:53', 1, '2021-02-22 01:26:17', 0, NULL, 1),
(3451, 'Sree Venkatakrishna', '23', '8939159197', '9445394462', 'Sreevenkatakrishna@gmail.com', '1999-03-18', 21, '3', '2', 'Sree', 'Graphic designer', 300000.00, 1, 0.00, 150000.00, 'Sowcarpat', 'Sowcarpat', '2102220005', '', '1', 'upload_files/candidate_tracker/95147013890_Cv Fd&Gd 2,21 CP.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our role, looking for internship ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-22 01:29:17', 50, '2021-02-22 02:42:26', 0, NULL, 1),
(3452, 'Bineesh Babu', '5', '8129354285', '9901444172', 'bineeshb421@gmail.com', '1993-10-16', 27, '2', '2', 'Bindhu', 'Nurse', 35000.00, 1, 0.00, 17000.00, 'Btm second stage', 'Btm second stage', '2102220006', '1', '1', 'upload_files/candidate_tracker/19368765704_BINEESH B 2(1) resume updated.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he will not suit for our process', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-22 01:36:03', 50, '2021-02-22 01:53:11', 0, NULL, 1),
(3453, 'Gokul Krishna v', '5', '9901444172', '8129354285', 'gokulrules28@gmail.com', '2000-05-07', 20, '2', '2', 'RAJESHWARI (MOTHER)', 'Home maker', 20000.00, 0, 0.00, 17000.00, 'Btm 2nd stage', 'Btm 2nd stage', '2102220007', '1', '1', 'upload_files/candidate_tracker/75766132565_Resume.docx', NULL, NULL, '2021-02-22', 0, '', '5', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he will not suit for our field\n', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-22 01:36:43', 50, '2021-02-22 01:52:49', 0, NULL, 1),
(3454, 'ajithkumar', '2', '7092933603', '9791187601', 'ajithanandan2306@gmail.com', '1996-04-23', 24, '2', '2', 'anandan', 'cooli', 30000.00, 2, 21000.00, 50000.00, 'chennai', 'chennai', '2102220008', '1', '2', 'upload_files/candidate_tracker/8574168147_Resume.pdf', NULL, NULL, '2021-02-24', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Looking for salary. he knows UI part alone.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 01:43:39', 1, '2021-02-22 01:49:40', 0, NULL, 1),
(3455, 'Malkraj', '22', '9003205212', '8248231961', 'malkrajac@gmail.com', '1997-05-10', 23, '2', '2', 'Chitra', 'House wife', 10000.00, 1, 0.00, 5000.00, 'Erukkencherry', 'Erukkencherry', '2102220009', '1', '1', 'upload_files/candidate_tracker/38310428993_malk ac2 resume(1).pdf', NULL, NULL, '2021-02-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for our content writer position', '2', '1', '0', '1', '1', '0', '2', '2021-02-25', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 03:00:59', 1, '2021-02-22 03:19:20', 0, NULL, 1),
(3456, 'Athithya m', '6', '8825837261', '7845214740', 'athithyaktm76@gmail.com', '1999-05-16', 21, '2', '2', 'Murugan', 'Theatre supervisor', 25000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2102220010', '1', '1', 'upload_files/candidate_tracker/90944995604_imgtopdf_22022021044711.pdf', NULL, NULL, '2021-02-23', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'IMMATURED ,AND SUSTAIN ALSO DOUBT', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-22 04:30:34', 60, '2021-02-23 02:36:31', 0, NULL, 1),
(3457, 'R.jaganathan', '16', '9790194003', '', 'Jagrnathan@gmail.Com', '1984-11-28', 36, '2', '2', 'K.rajendiran', 'Labour', 400000.00, 1, 276000.00, 400000.00, 'Chennai', 'Chennai', '2102220011', '1', '2', 'upload_files/candidate_tracker/79270379633_1611038827825Resume_R.docx', NULL, NULL, '2021-02-24', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 04:38:05', 1, '2021-02-22 04:45:59', 0, NULL, 1),
(3458, 'ramya', '16', '8072575653', '', 'n.ramya31@gmail.com', '1988-05-10', 32, '2', '1', 'jaganathan', 'engineering', 20000.00, 3, 20000.00, 25000.00, 'perambur', 'chennai', '2102220012', '1', '2', 'upload_files/candidate_tracker/80770445922_Ramya Resume.doc', NULL, NULL, '2021-02-23', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is not upto the mark.Will not fit for our role', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 04:39:57', 1, '2021-02-22 07:39:40', 0, NULL, 1),
(3459, 'G Mohana Prakash', '2', '9159659439', '9994635035', 'mohanareact@gmail.com', '1996-10-10', 24, '2', '2', 'E Govindaraj', 'Accounts manager', 120000.00, 1, 0.00, 300000.00, 'Madurai', 'Madurai', '2102220013', '1', '1', 'upload_files/candidate_tracker/64393323220_MERN_Resume.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is looking only for salary. he will not sustain.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 05:18:55', 50, '2021-02-26 02:41:24', 0, NULL, 1),
(3460, '', '0', '8248343574', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102220014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-22 05:34:00', 0, NULL, 0, NULL, 1),
(3461, 'Nanda kumar', '22', '7904382537', '9791819986', 'Letter2nanda@gmail.com', '1996-11-21', 24, '2', '2', 'Nachimuthu', 'Business', 40000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2102220015', '1', '1', 'upload_files/candidate_tracker/6893605722_resume 2-2.pdf', NULL, NULL, '2021-02-24', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude issue, wont sustain for a long time', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 06:02:31', 50, '2021-02-24 02:26:22', 0, NULL, 1),
(3462, 'Jaya kumar', '16', '7358858650', '8098939268', 'Kumarjay346@gmail.com', '1995-09-07', 25, '2', '2', 'Thulasi', 'Farmer', 20000.00, 1, 21000.00, 25000.00, 'Avadi', 'Avadi', '2102220016', '1', '2', 'upload_files/candidate_tracker/47189620995_CV.pdf', NULL, NULL, '2021-02-26', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 09:53:34', 1, '2021-02-22 09:57:27', 0, NULL, 1),
(3463, 'chendhilmurgan', '26', '9677259815', '', 'chendhilmurugan@gmail.com', '1988-07-02', 32, '2', '2', 'jayaprakash narayanan', 'mis', 360000.00, 0, 360000.00, 360000.00, 'chennai', 'chennai', '2102220017', '1', '2', 'upload_files/candidate_tracker/78433481246_Chendhil .docx', NULL, NULL, '2021-02-23', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'not suit for MIS', '7', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-22 10:10:02', 1, '2021-02-23 12:29:37', 0, NULL, 1),
(3464, 'mansoor', '6', '6381404715', '', 'mansoor.mans@gmail.com', '1991-09-21', 29, '2', '2', 'mustafa', 'automobile', 60000.00, 3, 14000.00, 15000.00, 'chennai', 'chennai', '2102220018', '2', '2', 'upload_files/candidate_tracker/78840048530_Current Update CV.doc', NULL, NULL, '2021-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-22 11:06:20', 1, '2021-02-22 11:10:41', 0, NULL, 1),
(3465, 'thameem ansari', '6', '7397255897', '', 'thameem0703@gmail.com', '1991-03-07', 29, '2', '1', 'ameena', 'nil', 15000.00, 3, 0.00, 15000.00, 'chennai', 'chennai', '2102220019', '2', '1', 'upload_files/candidate_tracker/49252099820_THAMEEM ANSARI-converted.pdf', NULL, NULL, '2021-02-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Checked for System Admin-Rejected by surendar', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-22 11:14:17', 1, '2021-02-23 08:46:34', 0, NULL, 1),
(3466, 'c karthick', '5', '9551845756', '', 'karthi1004c@gmail.com', '2000-04-10', 20, '2', '2', 'none', 'none', 13000.00, 0, 13000.00, 15000.00, 'chennai', 'chennai', '2102220020', '3', '2', 'upload_files/candidate_tracker/19826390138_karthic Resume-1.pdf', NULL, NULL, '2021-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-22 11:51:03', 1, '2021-02-22 11:53:42', 0, NULL, 1),
(3467, 'tamil selvan g', '5', '9159954680', '', 'tamilan2206@gmail.com', '1994-04-22', 26, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102220021', '3', '2', 'upload_files/candidate_tracker/43392998036_1612969777798_New TAMIL RESUME PERMANENT ADDRESS (1)-converted (1).pdf', NULL, NULL, '2021-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-22 11:56:25', 1, '2021-02-22 11:59:22', 0, NULL, 1),
(3468, 'gayathri r', '4', '7092323985', '', 'gayumanju6030@gmail.com', '1996-06-03', 24, '2', '2', 'manjula', 'nil', 20000.00, 1, 12000.00, 14000.00, 'chennai', 'chennai', '2102230001', '2', '2', 'upload_files/candidate_tracker/78215233582_Gayathri Ravi.pdf', NULL, NULL, '2021-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-23 08:49:55', 1, '2021-02-23 08:52:47', 0, NULL, 1),
(3469, 'revathi s', '4', '9092508466', '', 'revathi11rs@gmail.com', '1995-06-10', 25, '2', '2', 'sundra moorthy', 'hotel supervisor', 30000.00, 1, 14000.00, 15000.00, 'chennai', 'perambur', '2102230002', '2', '2', 'upload_files/candidate_tracker/78809566942_resume (1).pdf', NULL, NULL, '2021-02-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate selected for CRM, but left without attending the 2nd level interview', '1', '1', '0', '1', '1', '0', '2', '2021-02-24', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-23 08:59:36', 1, '2021-02-23 09:01:40', 0, NULL, 1),
(3470, 'varalakshmi', '20', '9941349058', '', 'varalakshmiram01@gmail.com', '1996-01-30', 25, '2', '1', 'dinesh', 'nil', 23000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2102230003', '2', '2', 'upload_files/candidate_tracker/46752672267_Varalakshmi RESUME-converted.pdf', NULL, NULL, '2021-02-23', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is not fit for CRM and Expecting High salary ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-23 09:04:28', 60, '2021-02-23 05:46:45', 0, NULL, 1),
(3471, 'Rajesh kannan', '16', '9894437029', '8610586476', 'kannanrajesh004@gmail.com', '1998-02-16', 23, '2', '2', 'Murugesan', 'Tailor', 20000.00, 1, 0.00, 15000.00, 'Trichy', 'Trichy', '2102230004', '1', '1', 'upload_files/candidate_tracker/82177701062_RK resume.docx', NULL, NULL, '2021-02-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 09:57:04', 1, '2021-02-23 10:05:36', 0, NULL, 1),
(3472, 'UTHAYA KUMAR T', '16', '9025698946', '', 't.uthayakumar31@gmail.com', '1992-03-31', 28, '2', '1', 'Shenbaga Selvi', 'Software Developer', 60000.00, 1, 23000.00, 28000.00, 'Tambaram Sanatorium, Chennai', 'Tambaram Sanatorium, Chennai', '2102230005', '1', '2', 'upload_files/candidate_tracker/73629218842_UTHAYA KUMAR_RESUME.PDF', NULL, NULL, '2021-02-23', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our MIS Role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-23 11:02:58', 60, '2021-02-23 06:45:02', 0, NULL, 1),
(3473, 'Priya P', '16', '9789890853', '', 'priyaperinbaraj@gmail.com', '1986-08-21', 34, '2', '1', 'Satishkumar A', 'Quality Engineer', 27000.00, 1, 27000.00, 27000.00, 'Mogappair east', 'Mogappair east', '2102230006', '1', '2', 'upload_files/candidate_tracker/16651284918_1611679983937_priya resume .docx', NULL, NULL, '2021-02-24', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have exp in front office. Will not fit for our MIS role', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 11:24:17', 1, '2021-02-23 11:30:05', 0, NULL, 1),
(3474, '', '0', '9789890854', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102230007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-23 11:33:58', 0, NULL, 0, NULL, 1),
(3475, 'Thiruvengadam', '16', '9941595610', '', 'thirukrishnan16@gmail.com', '1992-05-16', 28, '2', '2', 'Krishnan', 'Driver', 15000.00, 1, 50000.00, 25000.00, 'Chennai', 'Chennai', '2102230008', '1', '2', 'upload_files/candidate_tracker/72808166854_MIS Resume - 2021.pdf', NULL, NULL, '2021-02-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Got selected for MIS Role,we offered 22k TH with Patroniss,but he was not ready to sign the agreement with documents submitting', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-23 12:02:27', 60, '2021-02-23 06:46:36', 0, NULL, 1),
(3476, 'gokulhavinash m', '2', '9551153145', '', 'havir5@gmail.com', '1991-01-02', 30, '2', '2', 'mani', 'unoccupied', 30000.00, 2, 0.00, 30000.00, 'chennai', 'chennai', '2102230009', '1', '1', 'upload_files/candidate_tracker/98637709207_webResume_Gokulhavinash.docx', NULL, NULL, '2021-02-24', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'not good in technical. rejected by gs.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 01:01:57', 1, '2021-02-23 01:58:22', 0, NULL, 1),
(3477, 'Yamini Devi', '22', '7806914453', '9790798945', 'yamunilla1997@gmail.com', '1997-03-30', 23, '2', '2', 'Saraswathi Manogaran', 'Headmistress', 400000.00, 1, 18000.00, 18000.00, 'Chennai', 'Chennai', '2102230010', '1', '2', 'upload_files/candidate_tracker/44451037911_Yamini Devi resume.docx', NULL, NULL, '2021-02-24', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for our Organization culture.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 01:18:22', 50, '2021-02-24 11:00:00', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3478, 'Shahul Hameed', '16', '8056219297', '9840824279', 'shahul904430@gmail.com', '1995-09-28', 25, '2', '2', 'Mohideen', 'Senior Accountant', 150000.00, 0, 55000.00, 25000.00, 'Chennai', 'Chennai', '2102230011', '1', '2', 'upload_files/candidate_tracker/48121623372_CV Coordinator 2021.pdf', NULL, NULL, '2021-02-23', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'HE is planning to work in dubai', '3', '2', '', '1', '1', '', '2', '2021-03-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-23 01:44:52', 60, '2021-02-23 06:47:31', 0, NULL, 1),
(3479, 'Solomon Paul Raj I D', '22', '7358554232', '', 'solomonpaulrajspr@gmail.com', '1999-05-10', 21, '2', '2', 'immanuel david', 'Electritian', 45000.00, 1, 0.00, 26000.00, 'Chennai', 'Chennai', '2102230012', '1', '1', 'upload_files/candidate_tracker/10541741059_Solomon Paul Raj I D.pdf', NULL, NULL, '2021-02-24', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not sustainable', '2', '2', '', '1', '1', '', '2', '2021-02-26', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 02:17:01', 50, '2021-02-24 10:55:54', 0, NULL, 1),
(3480, 'Vengadesh Pandiyan S', '2', '8778210733', '7667159467', 'vengadeshreact@gmail.com', '1996-10-30', 24, '2', '2', 'Sivagnanam V', 'Driver', 15000.00, 0, 0.00, 15000.00, 'Madurai', 'Madurai', '2102230013', '1', '1', 'upload_files/candidate_tracker/95243391213_CV_2021-02-14-062922.pdf', NULL, NULL, '2021-02-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 03:06:29', 1, '2021-02-23 08:17:10', 0, NULL, 1),
(3481, '', '0', '8667745192', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102230014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-23 03:28:20', 0, NULL, 0, NULL, 1),
(3482, 'J. Monisha', '16', '9566021776', '', 'Shajagadeesan@gmail.com', '1995-06-05', 25, '2', '2', 'Nithya Banu j', 'Support engineer', 21000.00, 1, 21300.00, 25000.00, 'Chennai', 'Kknagar', '2102230015', '1', '2', 'upload_files/candidate_tracker/43794170802_Monisha - Resume (3).docx', NULL, NULL, '2021-02-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for agreement', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-23 04:27:13', 50, '2021-02-24 10:30:08', 0, NULL, 1),
(3483, 'Manikandan Vairavamoorthy', '2', '7904756151', '', 'mani22be@gmail.com', '1998-12-22', 22, '2', '2', 'Vairavamoorthy', 'Software Developer', 500000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2102230016', '1', '1', 'upload_files/candidate_tracker/2721847670_Manikandan Vairavamoorthy.pdf', NULL, NULL, '2021-02-24', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not joined', '2', '2', '', '1', '1', '', '2', '2021-03-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 04:40:49', 50, '2021-02-24 10:01:51', 0, NULL, 1),
(3484, 'Cynthia', '16', '9962207960', '', 'cynthiajenny@gmail.com', '1985-03-27', 35, '2', '1', 'BhakthaSingh', 'Rtd. ACTO', 40000.00, 1, 20000.00, 25000.00, '50/258, first floor, Chellappa street, Chennai-12', '50/258, First Floor, Chellappa Street, Chennai-12', '2102230017', '1', '2', 'upload_files/candidate_tracker/57398420054_1611987856295_CYNTHIA_RES.docx', NULL, NULL, '2021-02-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Worked as a professor, will not fit for our sales', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-23 04:43:46', 1, '2021-02-23 05:07:39', 0, NULL, 1),
(3485, 'karthikeyan', '4', '1122334455', '9360984085', 'knkarthe2000@gmail.com', '2000-06-02', 21, '2', '2', 'krisnamoorthy', 'farmer', 10000.00, 1, 0.00, 10000.00, 'tiruvanamali', 'tiruvallur', '2102230018', '1', '1', 'upload_files/candidate_tracker/97168879440_Resume (16).pdf', NULL, '1', '2021-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-23 05:41:05', 1, '2021-09-02 11:15:29', 0, NULL, 1),
(3486, 'Nirmal Kumar', '16', '9840905975', '', 'ajvjcj@gmail.com', '1993-11-15', 27, '2', '1', 'Vijayalakshmi', 'Home maker', 25000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2102230019', '1', '2', 'upload_files/candidate_tracker/5488049950_Nirmal CV 2021.doc', NULL, NULL, '2021-02-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 05:41:38', 1, '2021-02-23 10:40:18', 0, NULL, 1),
(3487, 'Janani I', '5', '9994027561', '', 'jananimay1702@gmail.com', '1993-05-20', 27, '2', '2', 'Inbaraj', 'Business', 20000.00, 3, 30000.00, 40000.00, 'Kumbakonam', 'Chennai', '2102230020', '1', '2', 'upload_files/candidate_tracker/99761874825_Janani_Resume.pdf', NULL, NULL, '2021-02-24', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High CTC Expectation.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-23 05:52:50', 50, '2021-02-24 02:30:29', 0, NULL, 1),
(3488, '', '0', '9042553027', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102230021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-23 06:11:15', 0, NULL, 0, NULL, 1),
(3489, 'Vasantha', '16', '9176864104', '', 'ammusai444@gmail.com', '1991-12-30', 29, '2', '1', 'Logesh', 'Engineer', 40000.00, 2, 22000.00, 28600.00, 'CHENNAI', 'CHENNAI', '2102230022', '1', '2', 'upload_files/candidate_tracker/60077525066_1611510374580_Vasantha Resume 22012021.pdf', NULL, NULL, '2021-02-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 07:34:19', 1, '2021-02-23 08:30:16', 0, NULL, 1),
(3490, 'Nandhini Arunachalam', '22', '7092332032', '', 'anandhini.ba@gmail.com', '1996-02-18', 25, '2', '2', 'Mangayarkarasi', 'Pensioner', 300000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2102230023', '1', '2', 'upload_files/candidate_tracker/56869760591_BPO resume updated.docx', NULL, NULL, '2021-02-24', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Organization Culture.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 08:49:47', 1, '2021-02-23 09:12:34', 0, NULL, 1),
(3491, 'r yogaraj', '6', '7358427229', '', 'yogamani4276@gmail.com', '1989-09-08', 31, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102240001', '3', '2', 'upload_files/candidate_tracker/35327687739_TapScanner 02-16-2021-09.13(2).pdf', NULL, NULL, '2021-02-24', 0, '', '3', '59', '2021-02-26', 204000.00, '', '4', '2021-04-20', '1', '17K CTC in patroniss for Thiyagu Team with Service Agreement for 1 year', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-24 12:57:50', 7, '2021-03-08 07:08:05', 0, NULL, 1),
(3492, 'm arokya quvinson', '5', '8148866364', '', 'quvinson@gmail.com', '1995-08-06', 25, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2102240002', '3', '2', 'upload_files/candidate_tracker/75459753268_banking .docx', NULL, NULL, '2021-02-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-24 01:03:50', 1, '2021-02-24 01:06:20', 0, NULL, 1),
(3493, '', '0', '8667015259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102240003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-24 06:27:45', 0, NULL, 0, NULL, 1),
(3494, '', '0', '7806976701', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102240004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-24 08:47:36', 0, NULL, 0, NULL, 1),
(3495, 'Ramesh', '13', '9003864057', '', 'rameshshiv21@gmail.com', '1994-08-18', 26, '2', '2', 'Gunasekaran R', 'Retired electrician', 25000.00, 3, 16500.00, 25000.00, 'Madurai', 'Chennai', '2102240005', '1', '2', 'upload_files/candidate_tracker/43836285058_Ramesh_Resume.pdf', NULL, NULL, '2021-02-24', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 10:04:15', 1, '2021-02-24 10:47:57', 50, '2021-02-24 11:21:28', 0),
(3496, 'Roselet Sheena Merlin G', '22', '8056930921', '', 'sheenagoldwin28@gmail.com', '1991-05-28', 29, '2', '2', 'T O M Goldwin', 'CSI Presbyter', 45000.00, 2, 276000.00, 350000.00, 'Thoothukudi', 'Thoothukudi', '2102240006', '1', '2', 'upload_files/candidate_tracker/43211250783_Resume-1.docx', NULL, NULL, '2021-02-24', 15, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Candidate lacks basic knowledge on SEO.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-24 10:20:43', 1, '2021-02-24 10:30:09', 0, NULL, 1),
(3497, 'rameshg', '13', '9025974861', '', 'rameshshiv21@gmail.com', '1994-08-18', 26, '2', '2', 'gunasekaran', 'Chennai', 25000.00, 3, 16500.00, 25000.00, 'madurai', 'chennai', '2102240007', '1', '2', 'upload_files/candidate_tracker/25922582352_Ramesh_Resume.pdf', NULL, NULL, '2021-02-24', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 10:52:48', 1, '2021-02-24 10:59:11', 50, '2021-02-24 06:00:03', 0),
(3498, '', '0', '9791819986', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102240008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-24 11:40:26', 0, NULL, 0, NULL, 1),
(3499, 'Varadha gopalakrishnan A', '4', '9789907420', '8148664834', 'krishvirat03@gmail.com', '1998-03-05', 22, '1', '2', 'Amirthaligam', 'Clerk', 20000.00, 1, 14000.00, 16000.00, 'Aminjikarai', 'Aminjikarai', '2102240009', '', '2', 'upload_files/candidate_tracker/42824335945_GOPAL.docx', NULL, NULL, '2021-02-24', 0, 'Sudhash kumar', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Internal reference for RE,Not open for Field Sales will not fit for our sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-24 11:41:09', 50, '2021-02-24 05:27:53', 0, NULL, 1),
(3500, 'sriram', '4', '9344304453', '7604957663', 'sriram.s0806@gmail.com', '1998-06-08', 22, '1', '2', 'shankar', 'carpenter', 20000.00, 1, 13000.00, 16000.00, 'chennai', 'chennai', '2102240010', '', '2', 'upload_files/candidate_tracker/11754348088_Resume11-converted.pdf', NULL, NULL, '2021-02-24', 0, 'sudhash', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Internal Reference for RE, Not open up.Will not fit for RE', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-24 11:42:36', 50, '2021-02-24 03:09:15', 0, NULL, 1),
(3501, 'usha v', '4', '7904859951', '', 'ushauha33@gmail.com', '1998-07-20', 22, '2', '1', 'venkatesh', 'business', 20000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2102240011', '2', '2', 'upload_files/candidate_tracker/38185695229_Resume_Usha 202_Format6.pdf', NULL, NULL, '2021-02-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sales experience', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-24 12:47:22', 50, '2021-02-24 03:10:09', 0, NULL, 1),
(3502, 'Sreenivasa rao Goraga', '5', '9632019976', '9663878840', 'goragasr@gmail.com', '1977-09-30', 43, '2', '1', 'Gayathri', 'Salaried', 40000.00, 3, 35000.00, 36000.00, 'Bangalore', 'Bangalore', '2102240012', '1', '2', 'upload_files/candidate_tracker/60200546683_Srinivas_new_resume[1][1].odt.pdf', NULL, NULL, '2021-02-24', 0, '', '3', '59', '2021-03-04', 500000.00, '', '6', '2021-06-12', '1', 'Gross 41667 xxamp TH 37859 for Manivel Team', '5', '2', '4', '2', '2', '1', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-24 12:50:09', 60, '2021-03-06 06:10:32', 0, NULL, 1),
(3503, 'Janaki Raman m', '4', '9003119615', '7010153480', 'Johnragul4@gmail.com', '1999-06-30', 21, '2', '2', 'Mohan', 'Retried', 25000.00, 0, 12000.00, 15000.00, 'Alwarpet', 'Alwarpet', '2102240013', '1', '2', 'upload_files/candidate_tracker/27260215514_RESUME 4.0.docx', NULL, NULL, '2021-02-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'The candidate didnxquott turn up, Sustainability doubt', '1', '2', '', '1', '1', '', '2', '2021-03-01', '1', '4', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-02-24 01:13:03', 60, '2021-02-25 01:32:55', 0, NULL, 1),
(3504, 'abarna p', '2', '9551298926', '9962022081', 'pabarnatamil@gmail.com', '1999-09-21', 21, '2', '2', 'parthiban s', 'supredentant', 15000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2102240014', '1', '1', 'upload_files/candidate_tracker/10026446122_Abarna Parthiban resume.pdf', NULL, NULL, '2021-02-25', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not okay with our policy.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 01:35:36', 50, '2021-02-25 10:48:35', 0, NULL, 1),
(3505, 'Rajesh kannan', '4', '8610586476', '9894437029', 'Kannanrajesh004@gmail.com', '1998-02-16', 23, '2', '1', 'Murugesan', 'Tailor', 15000.00, 1, 0.00, 14000.00, 'Trichy', 'Trichy', '2102240015', '1', '1', 'upload_files/candidate_tracker/69948197954_RK resume-converted.pdf', NULL, NULL, '2021-02-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 02:13:46', 1, '2021-02-24 02:16:10', 0, NULL, 1),
(3506, 'n. vaisish', '22', '9003177049', '', 'vaisish23@gmail.com', '2000-08-23', 20, '2', '2', 'n.v.s.ramakrishna', 'manager at krishnamacharya yoga mandiram', 40000.00, 0, 0.00, 3000.00, 'chennai', 'chennai', '2102240016', '1', '1', 'upload_files/candidate_tracker/18943835275_Vaisish Resume.pdf', NULL, NULL, '2021-02-25', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Less technical knowledge', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 03:19:41', 50, '2021-02-25 10:05:33', 0, NULL, 1),
(3507, 'arun k', '2', '6374013131', '7708236163', 'arunkamu01@yahoo.com', '2000-07-26', 20, '2', '2', 'kamaraj', 'coooli', 15000.00, 1, 0.00, 400000.00, 'chennai', 'salem', '2102240017', '1', '1', 'upload_files/candidate_tracker/41883729238_Arun_Kamu_Resume .pdf', NULL, NULL, '2021-03-01', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task completion not satisfied.', '2', '2', '', '1', '1', '', '2', '2021-03-02', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 03:26:34', 50, '2021-03-01 10:07:31', 0, NULL, 1),
(3508, '', '0', '6363337215', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102240018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-24 05:49:28', 0, NULL, 0, NULL, 1),
(3509, 'nixon timothy s', '22', '7358447454', '9092941870', 'nixon.thimoty@gmail.com', '1995-12-01', 25, '2', '2', 'r.selvin', 'fresher', 70000.00, 2, 0.00, 3000.00, 'Chennai', 'Chennai', '2102240019', '1', '1', 'upload_files/candidate_tracker/3686325419_Nixon Resume - Seabair group..docx', NULL, NULL, '2021-04-22', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate holding less interest towards DM', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 06:03:18', 7, '2021-04-22 02:39:03', 0, NULL, 1),
(3510, '', '0', '9025974861', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102240020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-24 09:16:47', 0, NULL, 0, NULL, 1),
(3511, 'MOHAMMED UVAIS J.S', '8', '8220028477', '', 'mohammeduvais.mu@gmail.com', '1996-12-20', 24, '2', '2', 'SHAKEEL AHMED .J', 'Worker', 12000.00, 4, 0.00, 20000.00, 'AMBUR', 'Chennai', '2102250001', '1', '1', 'upload_files/candidate_tracker/7904198215_mohammed_uvaisr(resume).docx', NULL, NULL, '2021-02-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in sales', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-25 10:27:49', 50, '2021-02-25 11:05:56', 0, NULL, 1),
(3512, 'Mohammed Asfan', '5', '7010711099', '9952211613', 'muhammedasfan95@gmail.com', '1995-07-24', 25, '2', '2', 'Samiullah', 'Worker', 20000.00, 1, 0.00, 20000.00, 'Ambur', 'Chennai', '2102250002', '1', '1', 'upload_files/candidate_tracker/81318436913_Asfan Resume.pdf', NULL, NULL, '2021-02-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much communicative, will not fit for our sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-25 10:29:19', 50, '2021-02-25 10:47:03', 0, NULL, 1),
(3513, 'VIJAY NAGAPPAN', '22', '9080311134', '6380343710', 'vijaynagappan14999@gmail.com', '1999-09-14', 21, '2', '2', 'N.Vaidhyanathan', 'Business', 40000.00, 1, 0.00, 8000.00, 'Salem', 'Salem', '2102250003', '1', '1', 'upload_files/candidate_tracker/96221142082_Vijay nagappan updated resume.pdf', NULL, NULL, '2021-02-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-25 10:35:14', 1, '2021-02-25 10:41:20', 0, NULL, 1),
(3514, 'Surya', '22', '7358570306', '', 'suryablaster10@icloud.com', '2000-06-03', 20, '2', '2', 'r.Venkatesan', 'phaemacis', 40000.00, 0, 0.00, 5000.00, 'madipakkam', 'madipakkam', '2102250004', '1', '1', 'upload_files/candidate_tracker/23217788327_SURYA Resume.pdf', NULL, NULL, '2021-03-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-25 11:28:42', 50, '2021-03-01 04:41:40', 0, NULL, 1),
(3515, 'M kathiravan', '16', '9940158644', '8190942965', 'kathirknc@gmail.com', '1988-04-20', 32, '2', '1', 'Buavan', 'Business', 500.00, 1, 19800.00, 23000.00, 'Anna nagar west (extn),chennai', 'Anna nagar west (extn),chennai', '2102250005', '1', '2', 'upload_files/candidate_tracker/75737537779_Resume (1) (1).docx', NULL, NULL, '2021-02-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication, will not get fit for our MIS openings ', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-25 11:54:27', 50, '2021-02-25 12:47:27', 0, NULL, 1),
(3516, 'arun kumaran k e', '2', '9940146238', '', 'arunkumaranke@gmail.com', '1997-09-20', 23, '2', '2', 'k g elangovan raaj', 'software engineer', 200000.00, 1, 340000.00, 520000.00, 'tambaram', 'tambaram', '2102250006', '1', '2', 'upload_files/candidate_tracker/92436068285_Arunkumaran\'s Resume updated (4).pdf', NULL, NULL, '2021-02-27', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Will not suitable for us.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-25 12:03:04', 1, '2021-02-26 10:31:14', 0, NULL, 1),
(3517, '', '0', '7995376357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102250007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-25 12:07:48', 0, NULL, 0, NULL, 1),
(3518, 'John Ronald', '22', '7395987193', '', 'jronkelly98@gmail.com', '1998-09-04', 22, '2', '2', 'Suguna ruban', 'Housewife', 700000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102250008', '1', '1', 'upload_files/candidate_tracker/68418734553_FinalResumeJohn.pdf', NULL, NULL, '2021-02-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-25 01:34:55', 1, '2021-02-25 01:38:40', 50, '2021-02-26 10:27:43', 0),
(3519, 'Banupriya B', '4', '7299903567', '8056531332', 'banupriyabalaji17@gmail.com', '1990-07-27', 30, '2', '1', 'Balaji', 'salaried', 25000.00, 3, 16500.00, 20000.00, 'Alzhwarthirunagar', 'Alzhwarthirunagar', '2102250009', '1', '2', 'upload_files/candidate_tracker/46245122810_Banu resume.pdf', NULL, NULL, '2021-02-25', 15, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'False info', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-25 02:38:53', 1, '2021-02-25 02:58:13', 0, NULL, 1),
(3520, 'Rayan Maaz', '6', '8610881184', '9894777047', 'rayanmaaz2000@gmail.com', '2000-03-06', 20, '2', '2', 'syed ikramullah', 'contractor', 25000.00, 3, 0.00, 17000.00, 'vaniyamabadi', 'periyamade chennai', '2102250010', '1', '1', 'upload_files/candidate_tracker/51480847322_Doc1.docx', NULL, NULL, '2021-02-25', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustain doubt,zero sales skiils', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-25 02:52:40', 60, '2021-02-25 04:41:30', 0, NULL, 1),
(3521, '', '0', '9941240720', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102250011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-25 03:04:58', 0, NULL, 0, NULL, 1),
(3522, '', '0', '9994635035', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102250012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-25 05:46:47', 0, NULL, 0, NULL, 1),
(3523, 'Ganesh', '2', '8122158348', '9940145263', 'ganeshsundar159@gmail.com', '1996-06-15', 24, '2', '2', 'Sundar', 'Daily wages', 15000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2102250013', '1', '1', 'upload_files/candidate_tracker/96988086732_mcaganesh.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not okay with our policy.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-25 05:53:22', 50, '2021-02-26 10:44:09', 0, NULL, 1),
(3524, 'MakeshBoopathy L', '2', '9698637250', '', 'harish53577@gmail.com', '1999-04-24', 21, '2', '2', 'Loganathan s', 'Welding', 30000.00, 1, 0.00, 18000.00, 'Namakkal', 'Namakkal', '2102250014', '1', '1', 'upload_files/candidate_tracker/33721740662_Resume-hard.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task Not Completed.', '2', '2', '', '1', '1', '', '2', '2021-02-27', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-25 06:04:42', 50, '2021-02-26 10:32:34', 0, NULL, 1),
(3525, 'K.vigneshwaran', '4', '9092572110', '8925654046', 'samdaniel1999k@gmail.com', '1999-12-21', 21, '2', '2', 'K.Kumari', 'Working on Export company', 7000.00, 1, 0.00, 12000.00, 'Poonamallee, Chennai', 'Poonamallee, Chennai', '2102250015', '1', '1', 'upload_files/candidate_tracker/3188880366_RESUME - VIGNESHWARAN.K.pdf', NULL, NULL, '2021-02-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-25 06:35:15', 1, '2021-02-25 06:49:02', 0, NULL, 1),
(3526, 'Surya.v', '4', '7397286334', '9952935820', 'surya2000vsvijay@gmail.com', '2000-07-29', 20, '2', '2', 'Veerabathiran', 'Plumber', 10000.00, 1, 0.00, 12000.00, 'Kattupakkam', 'Kattupakkam', '2102250016', '1', '1', 'upload_files/candidate_tracker/9865597366_Resume - VSR.pdf', NULL, NULL, '2021-02-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-25 06:38:10', 1, '2021-02-25 06:49:00', 0, NULL, 1),
(3527, 'INBANATHAN D', '4', '8675302213', '6379723460', 'Inbanathan09@gmail', '1996-03-04', 24, '2', '2', 'Dhanalakshmi. D', 'Farmer', 15000.00, 2, 0.00, 20000.00, 'Ilamdurai village, mankuppam post, tv nallur,', 'Thiruvanmiyir, chennai', '2102250017', '1', '1', 'upload_files/candidate_tracker/78333379414_INBANATHAN.D.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested in sales', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-25 06:38:44', 1, '2021-02-25 07:01:53', 0, NULL, 1),
(3528, 'Mohanapriya T.N', '5', '9345374799', '', 'priyaeaswar0503@gmail.com', '1988-03-04', 32, '2', '1', 'T.K Nannasam (father)', 'Passed away', 1.00, 1, 25000.00, 28000.00, 'Kodugaiyur', 'Kodugaiyur', '2102250018', '1', '2', 'upload_files/candidate_tracker/34208014910_Mohanapriya Thoppan Nannasam resume.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Not interested in field sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-25 07:23:06', 1, '2021-02-25 07:28:56', 0, NULL, 1),
(3529, 'Madhankumar S', '10', '8825573269', '', 'Madhankumar2831@gmail.com', '1999-03-28', 21, '2', '2', 'N.Selvaraj', 'Watchman', 200000.00, 1, 12000.00, 16000.00, 'Mylapore', 'Mylapore', '2102250019', '1', '2', 'upload_files/candidate_tracker/69023655358_new mk resume.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-25 07:31:33', 60, '2021-02-26 10:51:32', 0, NULL, 1),
(3530, 'Vinay k', '2', '9566139198', '', 'yashwinin58@gmail.com', '1993-07-02', 27, '2', '2', 'Kumar', 'Gold smith', 50000.00, 2, 5.50, 8.50, 'Chennai', 'Chennai', '2102260001', '1', '2', 'upload_files/candidate_tracker/18057750589_Vinay_Profile.pdf', NULL, NULL, '2021-02-27', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No open for agreement, very high CTC Expectation and sustainability issue', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 08:22:51', 60, '2021-02-27 11:02:34', 0, NULL, 1),
(3531, 's mukesh', '5', '9944605336', '', 'mukeshmg3442446@gmail.com', '1997-03-22', 23, '2', '2', 'none', 'none', 18000.00, 0, 13000.00, 15000.00, 'chennai', 'chennai', '2102260002', '3', '2', 'upload_files/candidate_tracker/82028596385_MUKESH 2021 .doc', NULL, NULL, '2021-02-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Having exp in hotel industry as Captain,branch Manager. Sustainability issue and will not fit for our sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-26 08:22:53', 1, '2021-02-26 08:49:20', 0, NULL, 1),
(3532, 'DINESHKUMAR T', '5', '8110080614', '', 'dineshkumar0518@gmail.com', '1997-12-05', 23, '2', '2', 'none', 'none', 20000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2102260003', '3', '2', 'upload_files/candidate_tracker/45462778553_Resume_Dineshkumar T_Format2.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability Issue, ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-26 08:52:40', 50, '2021-02-26 10:52:34', 0, NULL, 1),
(3533, '', '0', '6294260120', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102260004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-26 09:03:31', 0, NULL, 0, NULL, 1),
(3534, 'RAJESH', '5', '6369394803', '9360559187', 'rajagtech83@gmail.com', '1983-05-02', 37, '2', '1', 'Kavitha', 'Branch Manager', 20000.00, 1, 20000.00, 22000.00, 'Alandur', 'Alandur', '2102260005', '3', '2', 'upload_files/candidate_tracker/7515355455_Rajesh RESUME - Copy.docx', NULL, NULL, '2021-02-26', 15, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Age-37, no exp in field sales, not a long runner', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-26 10:06:14', 1, '2021-02-26 10:55:08', 0, NULL, 1),
(3535, 'John Ronald', '22', '9444436246', '7395987193', 'jronkelly98@gmail.com', '1998-09-04', 22, '2', '1', 'Suguna ruban', 'Housewife', 700000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102260006', '1', '1', 'upload_files/candidate_tracker/58220918296_FinalResumeJohn.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Didnxquott have any blogs to prove Interest in Digital marketing.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 10:20:24', 50, '2021-02-26 10:27:53', 0, NULL, 1),
(3536, 'Robert', '5', '9003274037', '', 'Robertbounge12345@gmail.com', '1997-04-03', 23, '2', '2', 'Priyanka', 'Greater chennai corporation', 16500.00, 0, 0.00, 17000.00, 'Chennai', 'Chennai', '2102260007', '1', '2', 'upload_files/candidate_tracker/84325112004_New Doc 2021-02-02 12.34.28_2.pdf', NULL, NULL, '2021-02-26', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested for Field sales and High CTC expectation for CRM', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-26 10:32:58', 50, '2021-02-26 11:08:58', 0, NULL, 1),
(3537, 'kalpana', '20', '9524861299', '9042353582', 'balankalpana95@gmail.com', '1997-07-21', 23, '2', '2', 'balan', 'mechanic', 150000.00, 0, 0.00, 18000.00, 'namakkal', 'Chennai', '2102260008', '1', '2', 'upload_files/candidate_tracker/97118928203_KALPANA BALAN CV.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Long distance,not willing for agreement', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-26 10:44:02', 1, '2021-02-26 11:42:34', 0, NULL, 1),
(3538, 'shankar', '5', '9176607080', '', 'sankar.kc02@gmail.com', '1985-08-19', 35, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102260009', '3', '2', 'upload_files/candidate_tracker/39185834220_SHANKAR NEW RESUME 2020.doc', NULL, NULL, '2021-02-26', 0, '', '9', '60', NULL, 0.00, '', '0', NULL, '1', 'Please check for elite', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-26 10:49:13', 1, '2021-02-26 10:52:12', 0, NULL, 1),
(3539, 'Jagan nathan', '5', '9176151419', '8838893971', 'jagsy08@gmail.com', '1993-06-08', 27, '2', '2', 'Jayalakshmi', 'Home maker', 6000.00, 1, 318000.00, 355000.00, 'Chennai', 'Chennai', '2102260010', '1', '2', 'upload_files/candidate_tracker/14432435753_Updated resume.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is not open for field sales,holding many offer related to insurance sales and looking for many ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-26 11:03:59', 50, '2021-02-26 12:47:05', 0, NULL, 1),
(3540, '', '0', '9790567423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102260011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-26 11:04:56', 0, NULL, 0, NULL, 1),
(3541, 'Prem Ku amr.s', '5', '9092560369', '8072589535', 'sasiprem26sa@gmail.com', '1997-03-19', 23, '2', '2', 'Sasi Kumar.p', 'agriculture', 80000.00, 2, 0.00, 15000.00, '#964 valluvar street Sathanur village Post', 'SLV Nagar zuzuvadi Hosur krishnagiri district', '2102260012', '1', '1', 'upload_files/candidate_tracker/16291130296_prem resume.docx', NULL, NULL, '2021-02-26', 0, '', '5', '68', NULL, 0.00, '', '0', NULL, '2', '....', '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-26 11:08:14', 1, '2021-02-26 11:29:46', 0, NULL, 1),
(3542, 'Santhosh Kumar.S', '6', '9790764331', '9677144937', 'santhoshkumar.s2907@gmail.com', '2000-07-29', 20, '2', '2', 'S.usha', 'Home maker', 5000.00, 1, 0.00, 13000.00, 'Ramapuram', 'Ramapuram', '2102260013', '1', '1', 'upload_files/candidate_tracker/95948064979_Gmail - Kindly Read the JD _ Contact if suitable.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Exp is high for CRM role,not open for field sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-26 11:20:26', 50, '2021-02-26 12:45:03', 0, NULL, 1),
(3543, 'pradeepkumar', '17', '6384773387', '', 'pradeepkumars423@gmail.com', '1987-03-07', 33, '2', '2', 'shanmugam', 'expired', 50000.00, 1, 0.00, 41000.00, 'villupuram', 'velacherry', '2102260014', '1', '2', 'upload_files/candidate_tracker/94736891583_1607958413139Resume_PRADEEPKUMAR.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '29', NULL, 0.00, '', '0', NULL, '1', 'no Relevance experience, his preference for IT job, need higher package more than 40k', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-26 11:48:20', 1, '2021-02-26 11:57:32', 0, NULL, 1),
(3544, '', '0', '7358569543', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102260015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-26 02:38:44', 0, NULL, 0, NULL, 1),
(3545, 'Jibinson chacko', '22', '7358788105', '', 'jibinson21@gmail.com', '1994-07-03', 26, '2', '2', 'Pg chacko', 'Retired', 40.00, 0, 405000.00, 405000.00, 'Portblair', 'Chennai', '2102260016', '1', '2', 'upload_files/candidate_tracker/23540362553_jibin_resume-tpc.pdf', NULL, NULL, '2021-02-27', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant experience.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 02:39:18', 60, '2021-02-27 02:40:05', 0, NULL, 1),
(3546, 'jayapal', '16', '8608460811', '6381132866', 'JPAL3533@GMAIL.COM', '1994-06-25', 26, '2', '2', 'vasuki', 'home maker', 28000.00, 1, 28000.00, 35000.00, 'CHENNAI', 'CHENNAI', '2102260017', '1', '2', 'upload_files/candidate_tracker/31271652381_Jayapal', NULL, NULL, '2021-03-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is average, not much relevant for our MIS ', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 03:01:01', 50, '2021-03-03 02:31:45', 0, NULL, 1),
(3547, 'Kishore', '4', '9791825366', '', 'Kishorenandha11@gmail.com', '1998-07-11', 22, '2', '2', 'Ramesh', 'Entrepreneur', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102260018', '1', '1', 'upload_files/candidate_tracker/15630480904_kishore.docx', NULL, NULL, '2021-03-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-26 03:44:30', 50, '2021-03-02 05:01:34', 0, NULL, 1),
(3548, 'Ranjan Kumar v', '10', '9840689286', '', 'apps_chella@yahoo.co.in', '1985-03-08', 35, '2', '1', 'Hemaphiliomina', 'Executive operations', 40000.00, 2, 27120.00, 32000.00, 'Puzhal Redhills', 'Puzhal Redhills', '2102260019', '1', '2', 'upload_files/candidate_tracker/92629021898_Ranjan resume.pdf', NULL, NULL, '2021-03-01', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much exp in customer handling.Expectation is high and will not fit for our MIS role', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 04:38:32', 1, '2021-02-26 04:42:29', 0, NULL, 1),
(3549, 'sivakumar', '16', '9941342788', '', 'shivaajim@gmail.com', '1981-05-04', 39, '2', '1', 'muthu', 'worked in private limited company', 31000.00, 3, 31000.00, 32000.00, 'chennai velachery', 'chennai velachery', '2102260020', '1', '2', 'upload_files/candidate_tracker/52719238367_Siva_Resume_Updated_Dec_20.docx', NULL, NULL, '2021-02-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'High Experienced profile.Will not get fit for our MIS role.Age around 40', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 04:42:11', 1, '2021-02-26 04:51:28', 0, NULL, 1),
(3550, '', '0', '9790951412', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102260021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-26 04:58:09', 0, NULL, 0, NULL, 1),
(3551, 'jawahar v', '16', '9597732137', '', 'jawaharvenkat92@gmail.com', '1992-06-17', 28, '2', '2', 'venkata perumal k v', 'teacher', 70000.00, 1, 19300.00, 25000.00, 'acharapakkam', 'chennai', '2102260022', '1', '2', 'upload_files/candidate_tracker/86595433509_Jawahar-Resume.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp only in the documentation, no Excel PPT experience. Much focus on the Documentation process', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 05:17:09', 50, '2021-03-01 01:20:46', 0, NULL, 1),
(3552, '', '0', '9003220710', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102260023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-26 05:19:13', 0, NULL, 0, NULL, 1),
(3553, 'Molica T Sangma', '16', '9360070153', '9791181602', 'moulimimisangma@yahoo.com', '1986-06-28', 34, '2', '2', 'Lt Daniel R Marak', 'Ex Army', 50000.00, 7, 3.50, 5.00, 'Meghalaya Shillong', 'Pallikaranai Chennai', '2102260024', '1', '2', 'upload_files/candidate_tracker/43665886980_MIMI CV.docx', NULL, NULL, '2021-03-03', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No local language, the expectation is high.Not much exp in MIS\n', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 05:56:43', 50, '2021-03-03 01:45:21', 0, NULL, 1),
(3554, 'JUSTIN PAUL SAMRAJ B', '5', '8754519318', '', 'justinpaulsamraj@gmail.com', '1996-02-18', 25, '2', '1', 'L Bastin Deva Kumar', 'Teacher', 40000.00, 1, 15000.00, 20000.00, 'Pattabiram Near Avadi', 'Pattabiram Near Avadi', '2102260025', '1', '2', 'upload_files/candidate_tracker/84328585048_file1.pdf', NULL, NULL, '2021-02-27', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability issue, No relevant Exp', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-26 06:29:59', 1, '2021-02-26 06:57:26', 0, NULL, 1),
(3555, 'Balachandar J', '16', '9597670636', '', 'bchand94@gmail.com', '1994-01-02', 27, '2', '2', 'Tamilselvi R', 'Government', 600000.00, 1, 336000.00, 550000.00, 'Chennai', 'Cuddalore', '2102260026', '1', '2', 'upload_files/candidate_tracker/8178551067_Balachandar J_DResume.pdf', NULL, NULL, '2021-02-27', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for service Agreement, an Attitude issue and not fit for our MIS role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 07:23:03', 60, '2021-02-27 10:18:10', 0, NULL, 1),
(3556, 'Rajasekar AR', '16', '9551544113', '', 'rajuar688@gmail.com', '1993-07-19', 27, '2', '2', 'Rammohan', 'RETIRED', 35000.00, 2, 0.00, 300000.00, 'Egmore', 'Egmore', '2102260027', '1', '1', 'upload_files/candidate_tracker/73515914427_A RRajasekar(1)(1).pdf', NULL, NULL, '2021-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 07:40:20', 1, '2021-02-26 07:45:12', 0, NULL, 1),
(3557, 'anandakumar a', '5', '8778059546', '', 'akanandha640@gmail.com', '1988-12-19', 32, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102270001', '3', '2', 'upload_files/candidate_tracker/11554078931_ANANDKUMAR (MBA).docx', NULL, NULL, '2021-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-27 11:14:14', 1, '2021-02-27 11:18:42', 0, NULL, 1),
(3558, 'R.MOHAN', '6', '9551957919', '9003227583', 'mohan5266244@gmail.com', '1998-10-17', 22, '1', '1', 'M.KANNAGI', 'Sales executive', 30000.00, 1, 17500.00, 20000.00, 'No.22salaima nagar Purasaiwallkam chennai-600007', 'No.22salaima Nagar Purasaiwallkam Chennai-600007', '2102270002', '', '2', 'upload_files/candidate_tracker/21445124467_resume_r_mohan_2.doc', NULL, NULL, '2021-02-27', 10, '517', '3', '8', '2021-03-15', 204000.00, '', '6', '2021-09-03', '1', 'Selected For Thiyagu Team,CTC - 2,04,000 With Gross - 17000 xxamp TH - 16150', '5', '1', '1', '1', '1', '', '2', '2021-03-02', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-27 11:17:12', 7, '2021-03-13 06:49:04', 0, NULL, 1),
(3559, 'M. Kannagi', '4', '9003227583', '9551957919', 'kannagi11799@gmail.com', '1999-07-11', 21, '1', '1', 'R. Mohan', 'Tellecaller', 30000.00, 2, 20000.00, 20000.00, 'No.22 salaima nager purasaiwalkam Chennai 600007', 'No. 22 salaima nager purasaiwalkam Chennai 600007', '2102270003', '', '2', 'upload_files/candidate_tracker/4866625859_Resume.1.pdf', NULL, NULL, '2021-02-27', 5, '517', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate is ok,checked for Esale by Karthika and got  rejected', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-27 11:19:57', 1, '2021-02-27 11:28:57', 0, NULL, 1),
(3560, 'ramkumar c', '16', '9094281300', '', 'ram42442@gmail.com', '1987-05-07', 33, '2', '2', 'a chellappan', 'driver', 20000.00, 1, 25000.00, 28000.00, 'chennai', 'chennai', '2102270004', '1', '2', 'upload_files/candidate_tracker/63027507205_Ram_2021.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much good in communication. have the only exp in Excel', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 11:27:54', 1, '2021-03-01 10:47:25', 0, NULL, 1),
(3561, 'govindaraj', '16', '9790785373', '9445119646', 'govindaraj9790@gmail.com', '1993-06-07', 27, '2', '2', 'subramani', 'farmer', 50000.00, 2, 20500.00, 28000.00, 'tiruvannamalai-kattumalaiyanur', 'chennai-sembakkam', '2102270005', '1', '2', 'upload_files/candidate_tracker/95373773412_Govindaraj-CV_Email.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication as we expected for MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 01:34:30', 50, '2021-03-01 11:33:49', 0, NULL, 1),
(3562, '', '0', '6281479914', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102270006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-27 01:53:44', 0, NULL, 0, NULL, 1),
(3563, 'C.Balaji', '13', '7200224914', '', 'justinbala1997@gmail.com', '1997-10-24', 23, '3', '2', 'K.chandrababu', 'Coolie', 12000.00, 1, 0.00, 8000.00, 'Mkb nagar, Chennai', 'Mkb nagar, Chennai', '2102270007', '', '1', 'upload_files/candidate_tracker/3376028904_balaji resume (1).docx', NULL, NULL, '2021-02-27', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Dont have a basic knowledge. rejected by latha', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-27 02:34:37', 1, '2021-02-27 02:39:03', 0, NULL, 1),
(3564, 'Rupapriya S', '6', '8825413103', '7358581336', 'priyaallset@gmail.com', '1997-11-22', 23, '1', '2', 'Devi', 'House wife', 15000.00, 1, 16000.00, 20000.00, 'Korukkupet', 'Korukkupet', '2102270008', '', '2', 'upload_files/candidate_tracker/12368790570_rupapriya resume.pdf', NULL, NULL, '2021-02-27', 2, 'P1029', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Insurance Sales.Sustainability issue', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-27 02:35:16', 60, '2021-02-27 02:55:26', 0, NULL, 1),
(3565, 'Kishore Kumar k', '16', '9994764971', '', 'kishore90.kumar@gmail.com', '1990-10-10', 30, '2', '1', 'Abinaya Ranjana TK', 'Freelancer-Tour Consultant', 15000.00, 1, 15000.00, 20000.00, 'Dindigul', 'Vandalur', '2102270009', '1', '2', 'upload_files/candidate_tracker/30076262095_kishore-1.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Will not suite for Co Coordinator MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 03:36:30', 1, '2021-02-27 03:42:01', 0, NULL, 1),
(3566, 'Mohammed Sabeel K', '22', '9087028535', '9345399760', 'sabeelkmohammed@gmail.com', '1999-06-02', 21, '2', '2', 'Abdullah Basha K', 'Car Driver', 1800.00, 0, 12595.00, 15000.00, 'Vaniyambadi', 'chennai', '2102270010', '1', '2', 'upload_files/candidate_tracker/83299293251_kms.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Already attended for IT opening,now came for Digital Marketing will not suit for the DM Role\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 03:57:06', 1, '2021-04-28 11:11:14', 0, NULL, 1),
(3567, 'Karthi k', '2', '6381533052', '', 'karthivijay0987@gmail.com', '1999-07-11', 21, '2', '2', 'Kumar', 'Farmer', 12000.00, 1, 0.00, 12000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2102270011', '1', '1', 'upload_files/candidate_tracker/20584300981_Resume.pdf', NULL, NULL, '2021-03-04', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not completed.', '2', '1', '0', '1', '1', '0', '2', '2021-03-10', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 04:32:55', 1, '2021-02-27 05:44:34', 0, NULL, 1),
(3568, 'Yogesh A', '3', '9094054451', '8072042798', 'yogeshrathika@gmail.com', '1996-06-30', 24, '2', '2', 'Rathika R', 'None', 8000.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2102270012', '1', '1', 'upload_files/candidate_tracker/70711529947_YogeshA9094054451.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He is much into testing, will not get fit for our Mern', '2', '2', '0', '1', '1', '0', '2', '2021-03-04', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 04:46:50', 1, '2021-02-27 04:52:20', 0, NULL, 1),
(3569, '', '0', '9566008134', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102270013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-27 05:43:26', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3570, '', '0', '9500172221', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102270014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-27 05:50:47', 0, NULL, 0, NULL, 1),
(3571, 'Punith jain', '22', '8015515527', '9940681774', 'Punithashokjain@Gmail', '2001-02-12', 20, '2', '2', 'Ashok', 'Jewellery', 20000.00, 0, 0.00, 10000.00, 'CHENNAI', 'CHENNAI', '2102270015', '1', '1', 'upload_files/candidate_tracker/63140560873_PunithJain_InternshalaResume.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate has less verbal skills and not good for long-term.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 06:19:36', 60, '2021-03-01 09:43:49', 0, NULL, 1),
(3572, 'Namith jain', '22', '9940681774', '9500065848', 'namithkhanted@gmail.com', '2000-06-16', 20, '2', '2', 'Mahipal jain', 'Student', 25000.00, 2, 0.00, 600000.00, '121 anna pillai st', 'Chennai', '2102270016', '1', '1', 'upload_files/candidate_tracker/22028920781_NamithJain_InternshalaResume (1).pdf', NULL, NULL, '2021-03-01', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Has Less Verbal Skills And Not Good For Long-Term.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 06:23:35', 50, '2021-03-01 10:39:30', 0, NULL, 1),
(3573, '', '0', '8220101666', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102270017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-27 10:07:08', 0, NULL, 0, NULL, 1),
(3574, 'Naveen S', '16', '9841193618', '', 'naveengandhi1998@gmail.com', '1998-03-19', 22, '2', '2', 'K S Gandhi', 'Sub Inspector Of police', 40000.00, 1, 500000.00, 400000.00, 'Chennai', 'Chennai', '2102270018', '1', '2', 'upload_files/candidate_tracker/88900277593_NaveenResume.pdf', NULL, NULL, '2021-03-01', 30, '', '5', '54', NULL, 0.00, '', '0', NULL, '1', 'He will not sustain', '3', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 11:10:41', 1, '2021-02-27 11:26:09', 0, NULL, 1),
(3575, 'r divakar', '5', '7904288969', '', 'divakarravi543@gmail.com', '1997-11-28', 23, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 15000.00, 'chennai', 'chennai', '2102280001', '3', '2', 'upload_files/candidate_tracker/23442135486_divakar_resume.pdf', NULL, NULL, '2021-03-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-28 10:33:04', 50, '2021-03-01 04:39:48', 0, NULL, 1),
(3576, 'porchezhyan', '5', '9710843696', '', 'porchezhyan.24@gmail.com', '1997-05-09', 23, '2', '2', 'none', 'none', 17000.00, 0, 17000.00, 17000.00, 'chennai', 'chennai', '2102280002', '3', '2', 'upload_files/candidate_tracker/51958857538_porch resume.docx', NULL, NULL, '2021-03-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-28 10:42:16', 50, '2021-03-01 04:41:54', 0, NULL, 1),
(3577, 'jegadeeshvaran p', '5', '9094431623', '', 'jegadeeshwara@gmail.com', '1991-01-10', 30, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 17000.00, 'chennai', 'chennai', '2102280003', '3', '2', 'upload_files/candidate_tracker/67894046526_Jegadeeshwara resume.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much communicative, will not fit for our sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-28 10:53:50', 50, '2021-03-01 04:39:56', 0, NULL, 1),
(3578, 'h prakash', '5', '8056925985', '', 'prakashari2017@gmail.com', '1992-10-24', 28, '2', '2', 'none', 'none', 17000.00, 0, 17000.00, 17000.00, 'chennai', 'chennai', '2102280004', '3', '2', 'upload_files/candidate_tracker/66233554455_CamScanner 11-21-2020 21.15.58.pdf', NULL, NULL, '2021-03-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-28 11:04:30', 50, '2021-03-01 04:42:52', 0, NULL, 1),
(3579, 'ganesan s', '5', '8122051946', '', 'ganagane2018@gmail.com', '1998-12-04', 22, '2', '2', 'none', 'none', 18000.00, 0, 15000.00, 15000.00, 'chennai', 'chennai', '2102280005', '3', '2', 'upload_files/candidate_tracker/7682144850_1614347711169.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain and the expectation is high for Telecaller', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-28 11:18:16', 50, '2021-03-01 10:57:09', 0, NULL, 1),
(3580, 'Srivasthava M', '4', '7358424388', '8667253693', 'srivasthava18@gmail.com', '1998-02-10', 23, '2', '2', 'SRIDHAR', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102280006', '1', '1', 'upload_files/candidate_tracker/40287718983_Vasthu_Resume.dox[1].pdf', NULL, NULL, '2021-03-03', 0, '', '3', '59', '2021-03-04', 132000.00, '', '3', '2021-04-30', '2', '11K CTC,10450 TH  for Muthu team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-28 05:31:06', 60, '2021-03-03 04:40:18', 0, NULL, 1),
(3581, '', '0', '9000000000', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103010001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-01 07:11:26', 0, NULL, 0, NULL, 1),
(3582, '', '0', '7708348679', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103010002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-01 10:11:22', 0, NULL, 0, NULL, 1),
(3583, 'Malathi.M', '4', '9025173011', '7338720789', 'malathimagesh9710@gmail.com', '2000-04-22', 20, '1', '2', 'Vijay.M', 'electrition', 60000.00, 1, 0.00, 15000.00, 'pushpavathi Ammal Street.west Mambalam.chennai33', 'west mambalam', '2103010003', '', '1', 'upload_files/candidate_tracker/17629849903_pdf.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up, no communication. Will not fit for our sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-01 10:36:29', 50, '2021-03-01 12:22:03', 0, NULL, 1),
(3584, 'Karpagavalli S', '4', '9600781478', '', 'Kuttyofficial00@gmail.com', '2000-09-09', 20, '1', '2', 'Saravanan', 'Sweeper', 80000.00, 1, 0.00, 11000.00, 'Rajapalayam', 'Perungudi', '2103010004', '', '1', 'upload_files/candidate_tracker/30203555745_KARPAGAVALLI RESUME.pdf', NULL, NULL, '2021-03-01', 0, 'Jobs', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Convincing Skills	very low so not fit for Telesales', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-01 11:05:06', 1, '2021-03-01 11:13:17', 0, NULL, 1),
(3585, 'D.ANANTH', '6', '7339356921', '7826970484', 'anandurai533@gmail.com', '1991-03-21', 29, '2', '2', 'Suguna', 'House wife', 25000.00, 1, 15300.00, 16000.00, 'Tindivanam taluk', 'Tambaram', '2103010005', '1', '2', 'upload_files/candidate_tracker/81144759688_Ananth.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not ok for voice process .. pronunciation is not clear ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-01 11:20:28', 50, '2021-03-01 11:34:37', 0, NULL, 1),
(3586, 'Praveen S', '2', '8778080423', '', 'praveensaravananoff@gmail.com', '2000-04-07', 20, '2', '2', 'Ranjitha', 'Business woman', 20000.00, 1, 0.00, 500000.00, 'Avadi', 'Avadi', '2103010006', '1', '1', 'upload_files/candidate_tracker/44869431706_Praveen_S_resume.pdf', NULL, NULL, '2021-03-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Profile ok, Very High CTC Expectation.Focus only on the package', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-01 11:36:36', 50, '2021-03-06 10:51:02', 0, NULL, 1),
(3587, 'SALIL KUSHWAHA', '5', '9935235678', '', 'salilkushwaha99@gmail.com', '1999-03-19', 21, '2', '2', 'Mr Ashwani Kushwaha', 'Private job', 15000.00, 1, 300000.00, 300000.00, 'Kanpur, Uttar Pradesh', 'Avadi, Chennai', '2103010007', '1', '2', 'upload_files/candidate_tracker/62157805170_Salil kushwaha (resume).pdf', NULL, NULL, '2021-03-01', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not fit', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-01 11:44:17', 50, '2021-03-01 12:00:56', 0, NULL, 1),
(3588, 'mary selsiya', '4', '7358320625', '', 'selsiya12345678@gmail.com', '2000-03-08', 20, '2', '2', 'joseph', 'binder', 10000.00, 1, 0.00, 10000.00, 'chennai', 'royapuram', '2103010008', '2', '1', 'upload_files/candidate_tracker/82775134082_selsiya.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much communicative, will not fit for our CRM sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-01 11:49:37', 50, '2021-03-01 12:53:43', 0, NULL, 1),
(3589, 'Gokulan', '20', '6379011381', '', 'gokulang199@gmail.com', '1998-10-31', 22, '2', '2', 'Gunasekaran', 'Farmer', 18000.00, 1, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2103010009', '1', '1', 'upload_files/candidate_tracker/63747456386_GOKULAN@.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He was not clear in his position focussed. Just in need of money  looking for a job', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-01 12:12:12', 50, '2021-03-01 12:23:08', 0, NULL, 1),
(3590, 'ezhilarasan', '22', '9600557538', '9710513104', 'sezhilarasan95@gmail.com', '1995-10-20', 25, '3', '2', 'selvaraj', 'nil', 15000.00, 1, 26000.00, 20000.00, 'Chennai', 'Chennai', '2103010010', '', '2', 'upload_files/candidate_tracker/65216504176_FORD RESUME 2020.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our MIS Coordinator,Communication is not that much ok', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-01 12:31:48', 50, '2021-03-01 04:41:11', 0, NULL, 1),
(3591, '', '0', '8925402130', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103010011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-01 02:21:02', 0, NULL, 0, NULL, 1),
(3592, 'Karan Mandanna', '22', '8939339580', '', 'karanmandanna95@gmail.com', '1995-09-06', 25, '2', '2', 'K S Mandanna', 'Horse trainer', 40000.00, 0, 25000.00, 25000.00, 'Chennai', 'Chennai', '2103010012', '1', '2', 'upload_files/candidate_tracker/35635538055_Karan Mandanna CV (1).pdf', NULL, NULL, '2021-03-03', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High salary expectation\n', '2', '2', '', '1', '1', '', '2', '2021-03-08', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-01 03:29:28', 50, '2021-03-03 11:10:39', 0, NULL, 1),
(3593, '', '0', '8667270174', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103010013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-01 03:30:55', 0, NULL, 0, NULL, 1),
(3594, 'E. Shalini', '16', '6381567399', '', 'elumalaishalini21@gmail.com', '1987-10-21', 33, '2', '2', 'Elumalai', 'Supervisor', 15000.00, 1, 20000.00, 35000.00, 'Ayanavaram Chennai', 'Ayanavaram Chennai', '2103010014', '1', '2', 'upload_files/candidate_tracker/72272686295_Resume of Shalini.docx', NULL, NULL, '2021-03-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much exp in MIS activities, Communication is not up to the mark as we expected. High Exp and the expectation is high.', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-01 03:45:58', 1, '2021-03-01 04:25:09', 0, NULL, 1),
(3595, 'Ranjith Kumar S', '16', '9514415577', '', 'Miracleranji143@gmail.com', '1990-08-01', 30, '2', '2', 'Sekar', 'Driver', 20000.00, 2, 18000.00, 22000.00, 'Thiruvanamalai', 'Chennai', '2103010015', '1', '2', 'upload_files/candidate_tracker/90101970778_Ranjith Resume.docx', NULL, NULL, '2021-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Communication is not good.  dont have that much knowledge in excel and ppt.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-01 05:39:17', 1, '2021-03-01 09:13:06', 0, NULL, 1),
(3596, 'Sophia rani', '16', '9025704703', '', 'sophiarani19@gmail.com', '1995-06-19', 25, '2', '2', 'Helen victor', 'House wife', 2.00, 2, 2.40, 2.80, 'Kodambakkam', 'Kodambakkam', '2103010016', '1', '2', 'upload_files/candidate_tracker/18013758064_TRM LINK AND PASSWORD.docx', NULL, NULL, '2021-03-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability doubt in this field, her focus is much into Accounts/Admin', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-01 05:53:36', 50, '2021-03-02 11:14:20', 0, NULL, 1),
(3597, 'Karthik.R', '25', '9790796556', '', 'Karthikraghuraman2@gmail.com', '1995-06-16', 25, '2', '2', 'Raghuraman.G', 'Watchman', 30000.00, 1, 0.00, 20000.00, 'Avadi', 'Avadi', '2103010017', '1', '1', 'upload_files/candidate_tracker/19289406376_CV_2020-12-13-014234.pdf', NULL, NULL, '2021-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher with avg communication, no clarity in speech and will not suite for RM.', '8', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-01 07:06:07', 1, '2021-03-02 11:27:59', 0, NULL, 1),
(3598, 'ranjith kumar s', '16', '9514415566', '', 'miracleranji143@gmail.com', '1990-08-01', 30, '2', '2', 'sekar', 'driver', 20000.00, 3, 18000.00, 21000.00, 'tiruvanamalai', 'chennai', '2103010018', '1', '2', 'upload_files/candidate_tracker/72837178772_Ranjith Resume.docx', NULL, NULL, '2021-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-01 09:23:06', 1, '2021-03-01 09:25:46', 50, '2021-03-02 10:30:29', 0),
(3599, '', '0', '8939646675', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103020001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-02 12:05:58', 0, NULL, 0, NULL, 1),
(3600, 'Karthik R', '5', '9940253242', '9080726874', 'Karthikcharles001@gmail.com', '1996-12-23', 24, '2', '2', 'ROBIN S', 'Diver', 20000.00, 1, 2.50, 24000.00, '7/20vel nagar EB colony 3rd adambakkam chennai', '7/20vel Nagar EB colony 3rd Adambakkam chennai', '2103020002', '1', '2', 'upload_files/candidate_tracker/22584096322_Karthik_Resume 1.pdf', NULL, NULL, '2021-03-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-02 09:58:55', 50, '2021-03-03 04:49:15', 0, NULL, 1),
(3601, 'Ruban', '5', '9094705636', '', 'rubanroob15@gmail.com', '1992-12-15', 28, '3', '2', 'Alli Rani', 'House wife', 25000.00, 1, 4.00, 3.00, 'Chennai', 'Perambur', '2103020003', '', '2', 'upload_files/candidate_tracker/55132214949_M.RubanCV.PDF', NULL, NULL, '2021-03-03', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'looking for 3.5l. sal package doesnt match', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-03-02 10:28:16', 50, '2021-03-03 10:28:01', 0, NULL, 1),
(3602, 'yogeshwari', '16', '9629483536', '', '9629483536ram@gmail.com', '1994-04-02', 26, '2', '1', 'srinivasan', 'nil', 5000.00, 0, 16000.00, 18000.00, 'chennai', 'velacherry', '2103020004', '2', '2', 'upload_files/candidate_tracker/1958884258_yogeswari update resume.pdf', NULL, NULL, '2021-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'communication is not good and has only 6 months exp in backend. doesnt have that much knowledge in excel and PPT', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-02 10:34:44', 1, '2021-03-02 10:37:00', 0, NULL, 1),
(3603, 'Poonkuzhali', '16', '9345127616', '', 'poohkamaraj18@gmail.com', '1996-07-18', 24, '2', '2', 'Kamaraj', 'Business', 5.00, 1, 2.50, 3.30, 'Mannargudi', 'Thoraipakkam', '2103020005', '1', '2', 'upload_files/candidate_tracker/97577589192_Poonkuzhali Resume.pdf', NULL, NULL, '2021-03-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate ok, but only 50/50 for our MIS', '3', '2', '', '1', '1', '', '2', '2021-03-04', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-02 10:48:44', 50, '2021-03-02 11:09:50', 0, NULL, 1),
(3604, 'nirmal', '6', '8098285112', '', 'nirmalumabalan@gmail.com', '1998-01-27', 23, '2', '2', 'umabalan', 'iic', 50000.00, 1, 0.00, 20000.00, 'sivakasi', 'ashok nagar chennai', '2103020006', '1', '1', 'upload_files/candidate_tracker/61924563780_Nirmal_Umabalan_MBA_Resume.pdf', NULL, NULL, '2021-03-02', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'father is working in LIC and exp sal is 18k+. will not sustain.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-02 11:15:53', 50, '2021-03-02 11:26:32', 0, NULL, 1),
(3605, 'udhayakumar r', '16', '9095590225', '9080024215', 'toudhayainbox@gmail.com', '1995-04-15', 25, '2', '2', 'ravikumar t', 'farmer', 20000.00, 2, 22000.00, 26000.00, 'east street thirukkarugavur', 'potter street saidapet', '2103020007', '1', '2', 'upload_files/candidate_tracker/3748534704_CV - Udhayakumar R.pdf', NULL, NULL, '2021-03-02', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not turned up', '3', '2', '', '1', '1', '', '2', '2021-03-03', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-02 11:19:18', 50, '2021-03-02 12:29:33', 0, NULL, 1),
(3606, 'Vignesh.m', '6', '8939788307', '', 'jaivignesh04@gmail.com', '1997-12-04', 23, '1', '2', 'Manicavel', 'Own business', 25000.00, 2, 0.00, 10000.00, '103/33 raman st, royapuram, chennai 600013', 'Chennai', '2103020008', '', '1', 'upload_files/candidate_tracker/35356518153_BCom-1.pdf', NULL, NULL, '2021-03-02', 0, 'P1065', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Internal Reference, Not much active will not sustain for our sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-02 11:28:35', 50, '2021-03-02 12:07:36', 0, NULL, 1),
(3607, 'Hariprasad', '5', '9790095200', '', 'hariramprasath@yahoo.co.in', '1986-09-01', 34, '2', '1', 'Divya', 'Working', 20000.00, 0, 0.00, 600000.00, 'Chennai', 'Chennai', '2103020009', '1', '2', 'upload_files/candidate_tracker/63625995736_Resume Hariprasad.pdf', NULL, NULL, '2021-03-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No relevant Exp, only 6 months initial exp in Shriram Insurance, Jumped another job due to pressure. Will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-02 11:53:00', 50, '2021-03-02 12:20:17', 0, NULL, 1),
(3608, 'Anandavalli N', '16', '9095315739', '9884459530', 'jananirama2294@gmail.com', '1994-08-22', 26, '2', '1', 'Hari Hara Subramanian', 'Assistant manager', 60000.00, 1, 310000.00, 400000.00, 'Madurai', 'Chennai', '2103020010', '1', '2', 'upload_files/candidate_tracker/18300926876_Resume - Anandavalli - Accounting Profile.doc', NULL, NULL, '2021-03-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for the agreement, Interest towards BPO', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-02 12:10:59', 1, '2021-03-02 12:17:35', 0, NULL, 1),
(3609, 'Parivallal M', '16', '8754767301', '9025601323', 'Cloud9898@hotmail.com', '1990-06-07', 30, '2', '2', 'MEHARAJAN p', 'Agri', 22000.00, 1, 280000.00, 364000.00, 'Chennai', 'Tharamani', '2103020011', '1', '2', 'upload_files/candidate_tracker/35209529602_Pari Vallal M profile (2).docx', NULL, NULL, '2021-03-03', 5, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no language and will not suite for MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-02 12:38:44', 1, '2021-03-02 12:50:44', 0, NULL, 1),
(3610, '', '0', '8608770238', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103020012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-02 02:33:59', 0, NULL, 0, NULL, 1),
(3611, 'Muruganandham', '13', '8807415701', '', 'Muruganofear007@gmail.com', '1997-04-05', 23, '2', '2', 'Muthukrishnan', 'Famer', 24000.00, 0, 24000.00, 40000.00, 'Panruti', 'maduravoyal', '2103020013', '1', '2', 'upload_files/candidate_tracker/42334339406_Muruganandham_Muthukrishnan_updated.pdf', NULL, NULL, '2021-03-04', 45, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-02 02:41:42', 1, '2021-03-02 02:44:19', 0, NULL, 1),
(3612, 'C.gopi', '4', '8608907370', '', 'gopichinnaiya@gmail.com', '1997-11-19', 23, '2', '2', 'Ramya', 'House wife', 15000.00, 2, 12000.00, 15000.00, 'Chennai', 'Chennai', '2103020014', '1', '2', 'upload_files/candidate_tracker/18777026483_RESUME_Gopi.docx', NULL, NULL, '2021-03-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location constraint.No Bike for CRM package need to check with family\n', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-02 02:45:39', 1, '2021-03-02 02:49:48', 0, NULL, 1),
(3613, 'Raghavaan', '16', '7299196181', '8668190684', 'raghavaan01@gmail.com', '1995-04-03', 25, '2', '2', 'L.N.Venkatesan', 'Retired', 50000.00, 1, 250000.00, 30000.00, 'Chennai', 'Chennai', '2103020015', '1', '2', 'upload_files/candidate_tracker/35721008692_Resume.pdf', NULL, NULL, '2021-03-06', 20, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'comm is below avg. will not suite for mis', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-02 02:50:05', 50, '2021-03-06 02:58:54', 0, NULL, 1),
(3614, '', '0', '9716849947', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103020016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-02 03:16:25', 0, NULL, 0, NULL, 1),
(3615, 'Satheeskumar G', '22', '9442352657', '8838115695', 'sathishvidyut@gmail.com', '1997-08-01', 23, '2', '2', 'K Ganesan', 'Farmer', 4.00, 0, 0.00, 1.00, 'Tuticorin', 'Chennai', '2103020017', '1', '1', 'upload_files/candidate_tracker/34201643518_SK Resume.pdf', NULL, NULL, '2021-03-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-02 03:29:49', 50, '2021-03-03 04:40:34', 0, NULL, 1),
(3616, 'Kiruba nithi', '11', '9894437427', '', 'kirubanithi313@gmail.com', '2000-06-09', 20, '2', '2', 'K.s.magadevan', 'Village president', 70000.00, 2, 0.00, 15000.00, 'Karunguzgi', 'Karunguzgi', '2103020018', '1', '1', 'upload_files/candidate_tracker/49256701890_M.kiruba nithi.pdf', NULL, NULL, '2021-03-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-02 03:47:52', 1, '2021-03-02 03:58:04', 0, NULL, 1),
(3617, 'Swetha nandhakumar', '5', '6380923225', '9790978681', 'swethazara1524@gmail.com', '1998-12-24', 22, '2', '2', 'Nandhakumar', 'Plumber', 25000.00, 1, 15000.00, 20000.00, 'Kolathur', 'Kolathur', '2103020019', '1', '2', 'upload_files/candidate_tracker/29448437205_SWETHA- RESUME-REVISED (1)-1.docx', NULL, NULL, '2021-03-02', 2, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-02 03:49:38', 50, '2021-03-02 05:02:04', 0, NULL, 1),
(3618, 'SARAVANAKUMAR V', '16', '9788825567', '', 'saravanayoga65@gmail.com', '1995-06-29', 25, '2', '2', 'VADIVEL P', 'Farmer', 10000.00, 1, 24700.00, 28000.00, 'SALEM', 'SALEM', '2103020020', '1', '2', 'upload_files/candidate_tracker/71034943833_Saravana_Resume.pdf', NULL, NULL, '2021-03-08', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-02 04:52:04', 1, '2021-03-02 04:55:04', 0, NULL, 1),
(3619, '', '0', '8940361796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103020021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-02 06:12:39', 0, NULL, 0, NULL, 1),
(3620, 'Sonu Thomas', '16', '7904447913', '', 'sonuthomas.st@gmail.com', '1995-08-06', 25, '2', '1', 'Sigimol', 'Senior Process Associate', 14000.00, 1, 420000.00, 450000.00, 'Chennai', 'Chennai', '2103020022', '1', '2', 'upload_files/candidate_tracker/81601338842_Sonu CV.pdf', NULL, NULL, '2021-03-04', 7, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Written communication is not good', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-02 08:02:43', 7, '2021-03-04 03:21:13', 0, NULL, 1),
(3621, '', '0', '9003480980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103030001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-03 09:48:07', 0, NULL, 0, NULL, 1),
(3622, 'Vignesh k', '6', '9884263151', '7010730084', 'vigneshsam22@gmail.com', '1998-06-22', 22, '2', '2', 'Kamaraj', 'Chennai', 18000.00, 1, 15000.00, 18000.00, 'Chennai', 'Minjur', '2103030002', '1', '2', 'upload_files/candidate_tracker/50468044432_vickyresume[1] (1) (1).docx', NULL, NULL, '2021-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-03 12:00:11', 1, '2021-03-03 12:14:24', 0, NULL, 1),
(3623, 'Kiran nallathambi', '5', '7395960931', '9750018368', 'vijaykishore199833@gmail.com', '1998-09-04', 22, '1', '2', 'Nallathambi', 'Farmer', 300000.00, 1, 21000.00, 26000.00, 'SankaraPuram', 'Mount road', '2103030003', '', '2', 'upload_files/candidate_tracker/16064419060_0_1609046873213Resume_kiran.pdf', NULL, NULL, '2021-03-03', 0, '55634', '3', '8', '2021-03-16', 261696.00, '', '4', '2021-06-23', '1', 'For Veben Team,CTC - 2,61,696 With Monthly Gross - 21808 xxamp TH - 18000', '5', '2', '4', '1', '1', '', '2', '2021-03-11', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-03 12:22:01', 7, '2021-03-15 06:20:55', 0, NULL, 1),
(3624, 'Dinesh sk', '6', '9487064254', '8072491813', 'dineshdinu5115@gmail.com', '1997-01-05', 24, '2', '2', 'Saravanan R', 'Purchase Manager at jewellery', 40000.00, 1, 300000.00, 350000.00, 'Salem', 'Chennai', '2103030004', '1', '2', 'upload_files/candidate_tracker/72912628703_Dinesh resume 1(1)-converted.pdf', NULL, NULL, '2021-03-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not join', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-03 12:27:48', 50, '2021-03-03 01:20:00', 0, NULL, 1),
(3625, 'suchita bisani', '22', '9383306633', '', 'suchita.bisani@gmail.com', '1983-06-09', 37, '2', '1', 'piyush bisani', 'business', 200000.00, 2, 1.00, 500000.00, 'chennai', 'chennai', '2103030005', '1', '2', 'upload_files/candidate_tracker/46268753114_Suchita_CV(Final).pdf', NULL, NULL, '2021-03-09', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability issue', '2', '2', '', '1', '1', '', '2', '2021-03-12', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-03 12:51:40', 7, '2021-03-09 03:23:22', 0, NULL, 1),
(3626, 'A.elango', '20', '7358304157', '8939329118', 'elango1299@gmail.com', '1999-06-12', 21, '2', '2', 'Athamanathan', 'Indian', 15.00, 1, 0.00, 15.00, 'Chennai', 'Kk nagar', '2103030006', '1', '1', 'upload_files/candidate_tracker/91375626160_ELANGO A.pdf', NULL, NULL, '2021-03-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-03-03 12:55:47', 1, '2021-03-03 01:10:43', 0, NULL, 1),
(3627, 'Jayanthi R', '16', '9384871584', '9384863958', 'sweetyjay561@gmail.com', '1991-05-06', 29, '4', '2', 'Rajendran R', 'Finance', 400000.00, 0, 23800.00, 25000.00, 'Chennai', 'Chennai', '2103030007', '', '2', 'upload_files/candidate_tracker/16599619432_jayanthi resume.docx', NULL, NULL, '2021-03-03', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'not worth fr 25k, having another offer also.', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-03 01:40:31', 1, '2021-03-03 02:01:38', 0, NULL, 1),
(3628, 'Surendar K', '26', '8778526218', '9600103519', 'surendar3838@gmail.com', '1989-04-22', 31, '2', '1', 'Saranya R', 'Housewife', 1000.00, 2, 30000.00, 30000.00, 'Chennai', 'Chennai', '2103030008', '1', '2', 'upload_files/candidate_tracker/85408934017_Surendar_K resume QA-converted.docx', NULL, NULL, '2021-03-03', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'language is not good and salary exp is 4L+.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-03 01:41:59', 8, '2021-03-03 02:58:27', 0, NULL, 1),
(3629, 'AHAMED ABDUL CADER', '16', '9600429100', '', 'snmabdulkader28@gmail.com', '1997-08-28', 23, '2', '2', 'Aysha', 'House wife', 5000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2103030009', '1', '1', 'upload_files/candidate_tracker/98934338828_snm.file.pdf', NULL, NULL, '2021-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-03 04:24:15', 1, '2021-03-03 04:29:16', 0, NULL, 1),
(3630, 'Rajkumar', '22', '9176379806', '7904288708', 'rajkumar20799@gmail.com', '1999-07-20', 21, '2', '2', 'Vijaya Kumar', 'Student', 600000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2103030010', '1', '1', 'upload_files/candidate_tracker/24087693501_RajKumar_InternshalaResume.pdf', NULL, NULL, '2021-03-04', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'The candidate wonxquott sustain for the long term', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-03 05:01:06', 60, '2021-03-09 12:14:15', 0, NULL, 1),
(3631, '', '0', '9043102252', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103030011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-03 07:01:24', 0, NULL, 0, NULL, 1),
(3632, '', '0', '8939496196', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103030012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-03 07:43:35', 0, NULL, 0, NULL, 1),
(3633, 'R.Veyil Rani', '13', '6374191180', '9698148539', 'veyilrani@gmail.com', '1998-01-21', 23, '2', '2', 'R.Rajarathinam', 'Kooli', 20000.00, 0, 10000.00, 20000.00, 'Virudhunagar', 'Virudhunagar', '2103030013', '1', '2', 'upload_files/candidate_tracker/14876560173_RESUME.pdf', NULL, NULL, '2021-03-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-03 09:04:50', 7, '2021-03-13 06:40:39', 0, NULL, 1),
(3634, '', '0', '8973863094', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103030014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-03 11:24:30', 0, NULL, 0, NULL, 1),
(3635, '', '0', '9003010332', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103030015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-03 11:45:13', 0, NULL, 0, NULL, 1),
(3636, '', '0', '8438424840', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 03:27:37', 0, NULL, 0, NULL, 1),
(3637, '', '0', '8438424840', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 03:29:03', 0, NULL, 0, NULL, 1),
(3638, 'Dinesh', '5', '9600052830', '9710053145', 'dinu53145@gmail.com', '1995-04-11', 25, '2', '2', 'Dhanasekaran', 'Salaried', 10000.00, 2, 350000.00, 500000.00, 'Chennai', 'Chennai', '2103040003', '1', '2', 'upload_files/candidate_tracker/79233403836_dinesh resum new.pdf', NULL, NULL, '2021-03-05', 0, '', '3', '8', '2021-03-16', 380000.00, '', '2', '1970-01-01', '1', 'CTC - 3,80,000 With Gross - 31667 xxamp TH - 27859  for shanmugam', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-04 04:05:21', 7, '2021-03-15 09:54:51', 0, NULL, 1),
(3639, '', '0', '9600052830', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 04:06:13', 0, NULL, 0, NULL, 1),
(3640, '', '0', '1122334455', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 04:08:34', 0, NULL, 0, NULL, 1),
(3641, 'velmurugan G', '6', '7299628797', '8838640309', 'velmurugan.hb05@gmail.com', '1994-07-05', 26, '2', '2', 'Ganesan', 'Building contractor', 20000.00, 1, 17000.00, 20000.00, 'jafferkhanpet, chennai', 'jafferkhanpet, chennai', '2103040006', '1', '2', 'upload_files/candidate_tracker/78381945829_Vel Resume 2020.docx', NULL, NULL, '2021-03-08', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'not fit for sales', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-04 04:09:32', 1, '2021-03-08 12:33:41', 0, NULL, 1),
(3642, '', '0', '9789963434', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 04:11:13', 0, NULL, 0, NULL, 1),
(3643, '', '0', '7299628797', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 04:18:08', 0, NULL, 0, NULL, 1),
(3644, '', '0', '7299628797', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 04:25:30', 0, NULL, 0, NULL, 1),
(3645, '', '0', '7299628797', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 04:31:28', 0, NULL, 0, NULL, 1),
(3646, 'S K Yuvaraj', '16', '9600500826', '6374270568', 'yuvarajsaif@gmail.com', '1996-07-26', 24, '2', '2', 'S Kumar', 'Employee', 50000.00, 1, 0.00, 17000.00, 'Avadi', 'Avadi', '2103040011', '1', '1', 'upload_files/candidate_tracker/20744545444_1 YUVI-converted (4).pdf', NULL, NULL, '2021-03-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication below avg, no knowledge in excel and ppt.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-04 05:12:22', 50, '2021-03-05 12:15:00', 0, NULL, 1),
(3647, '', '0', '7092342548', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 05:27:58', 0, NULL, 0, NULL, 1),
(3648, 'koteeswaran', '16', '9445712235', '', 'kotiairport@gmail.com', '1991-05-30', 29, '2', '2', 'thangapandian', 'retired business man', 30000.00, 1, 33500.00, 30000.00, 'chennai', 'chennai', '2103040013', '1', '2', 'upload_files/candidate_tracker/43554266525_New Resume koti.docx', NULL, NULL, '2021-03-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, Bit Attitude will not much suits for our role ', '3', '2', '', '1', '1', '', '2', '2021-03-17', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-04 05:39:46', 50, '2021-03-05 12:23:37', 0, NULL, 1),
(3649, '', '0', '7092342548', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 05:52:42', 0, NULL, 0, NULL, 1),
(3650, 'Nashwa nazeer', '22', '9656647116', '', 'nazeernashwa118@gmail.com', '1997-06-25', 23, '2', '1', 'Mohammed Jaseem', 'Biomedical engineer', 50000.00, 4, 0.00, 15000.00, 'Chennai', 'Chennai', '2103040015', '1', '1', 'upload_files/candidate_tracker/19147244233_Nashwa_CV_Latest 11Mar20.docx', NULL, NULL, '2021-03-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No knowledge in digital Marketing, Her field of knowledge in Interior Design, and need time to think on the agreement', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-04 06:43:26', 50, '2021-03-05 12:13:05', 0, NULL, 1),
(3651, '', '0', '7092342548', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 06:56:58', 0, NULL, 0, NULL, 1),
(3652, '', '0', '9445712235', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 07:23:00', 0, NULL, 0, NULL, 1),
(3653, '', '0', '9551446976', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 08:52:08', 0, NULL, 0, NULL, 1),
(3654, '', '0', '9445712235', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 11:07:39', 0, NULL, 0, NULL, 1),
(3655, '', '0', '7299628797', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103050001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-05 08:55:03', 0, NULL, 0, NULL, 1),
(3656, '', '0', '9042080728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103050002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-05 09:59:39', 0, NULL, 0, NULL, 1),
(3657, 'singaravelu sv', '4', '8807361842', '', 'Singaraveluveeramani@gmail.com', '1998-08-26', 22, '2', '2', 'veeramani s', 'political', 90000.00, 1, 0.00, 13000.00, 'thriuthuraipoondi', 'chrompet', '2103050003', '1', '1', 'upload_files/candidate_tracker/33132313580_SV Singaravelu Resume.doc', NULL, NULL, '2021-03-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 10:31:15', 50, '2021-03-05 10:54:07', 0, NULL, 1),
(3658, '', '0', '8248615922', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103050004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-05 11:28:15', 0, NULL, 0, NULL, 1),
(3659, 'Sathish.p', '4', '8925082778', '9841025841', 'sathishkannankannan2@gmail.com', '2000-03-21', 20, '2', '2', 'R.perumal', 'Auto driver', 90000.00, 1, 0.00, 15000.00, 'Oldwashmenpet', 'Oldwashmenpet', '2103050005', '1', '1', 'upload_files/candidate_tracker/37448469903_SATHISH RESUME START.docx', NULL, NULL, '2021-03-06', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 11:29:33', 50, '2021-03-06 10:35:43', 0, NULL, 1),
(3660, 'Haresh.P', '4', '9345464436', '7639416084', 'harish80333@gmail.com', '1997-07-01', 23, '2', '2', 'Pazhani.T', 'Labor', 16000.00, 1, 15000.00, 17000.00, 'Tiruttani', 'Velachery', '2103050006', '1', '2', 'upload_files/candidate_tracker/79605570460_Haresh.docx', NULL, NULL, '2021-03-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'asking for non voice', '1', '2', '', '1', '1', '', '2', '2021-03-06', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 11:33:55', 8, '2021-03-05 08:56:26', 0, NULL, 1),
(3661, 'Karthick raj', '4', '9094048602', '8754295343', 'karthickrajrs97@gmail.com', '1997-06-25', 23, '2', '2', 'Rajagopal', 'Cooli', 20000.00, 1, 11500.00, 12000.00, 'Chennai', 'Chennai', '2103050007', '1', '2', 'upload_files/candidate_tracker/57986033009_file1.pdf', NULL, NULL, '2021-03-05', 6, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not intrested in voice process. he is  looking for non voice process only', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 11:37:10', 50, '2021-03-05 12:26:14', 0, NULL, 1),
(3662, 'Sudharsan A', '4', '8667797596', '9790350812', 'asudharsan148@gmail.com', '2000-10-14', 20, '2', '2', 'Arumugam k', 'Driver', 25000.00, 1, 0.00, 12000.00, 'No:16 sakthi Nagar 17th Street nerkundram chennai', 'No:16 sakthi Nagar 17th Street nerkundram chennai', '2103050008', '1', '1', 'upload_files/candidate_tracker/43276337785_CV_2021-03-05-114511.pdf', NULL, NULL, '2021-03-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 11:39:32', 50, '2021-03-09 10:13:49', 0, NULL, 1),
(3663, 'JAYAPAL.R', '4', '9677292472', '8124317959', 'Jbalu379@gmail.com', '1998-05-09', 22, '4', '2', 'RAJENDRAN.S', 'DRIVER', 15000.00, 1, 0.00, 13000.00, 'mugappair East chennai37', 'Mugappair East chennai37', '2103050009', '', '1', 'upload_files/candidate_tracker/27125377056_1614925688206Resume.pdf', NULL, NULL, '2021-03-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-05 11:40:34', 1, '2021-03-05 12:06:07', 0, NULL, 1),
(3664, 'Kavitha', '21', '7904201457', '7358340425', 'kavithasaravanan851@gmail.com', '1998-09-29', 22, '3', '2', 'Saravanan', 'shop keeper', 6000.00, 2, 0.00, 14000.00, 'No:7/4 Ayya Samy street pudupet Chennai-600002', 'No:7/4 Ayya Samy Street Pudupet Chennai-600002', '2103050010', '', '1', 'upload_files/candidate_tracker/42626246774_3356801302880-1.pdf', NULL, NULL, '2021-03-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-05 11:46:42', 1, '2021-03-05 12:14:17', 0, NULL, 1),
(3665, 'Suganya', '4', '8838540488', '8428959851', 'Suganyasugu3781@gmail.com', '1999-07-03', 21, '2', '2', 'Goal', 'Auto driver', 6000.00, 0, 0.00, 14000.00, 'No 24 venkatachala Aachri Street Pudupet chennai', 'No 24 venkatachala Aachri Street Pudupet chennai', '2103050011', '1', '1', 'upload_files/candidate_tracker/96994835908_RESUME.pdf', NULL, NULL, '2021-03-06', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for sales calling.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 11:49:46', 50, '2021-03-06 01:21:53', 0, NULL, 1),
(3666, 'Jayasurya', '5', '9789924523', '9566289271', 'Suryazohan7@gmail.com', '1996-08-02', 24, '2', '2', 'Father G. Mohanan krishnan', 'Business', 25000.00, 1, 13500.00, 15000.00, 'Chennai villivakkam', 'Villivakkam', '2103050012', '1', '2', 'upload_files/candidate_tracker/60545147917_attachment(3).pdf', NULL, NULL, '2021-03-05', 1, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for job', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 12:04:42', 8, '2021-03-05 08:58:39', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3667, 'Prasanna', '5', '7708883702', '', 'prasannapras729@gmail.com', '1997-04-12', 23, '2', '2', 'Selvi', 'Retired', 25000.00, 1, 0.00, 17000.00, 'Trichy', 'Chennai', '2103050013', '1', '1', 'upload_files/candidate_tracker/70845486234_pras resume new.pdf', NULL, NULL, '2021-03-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Much into opertions, will not sustain in sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-05 12:09:55', 50, '2021-03-05 12:21:41', 0, NULL, 1),
(3668, 'Moses p', '4', '9840660909', '9345326026', 'stephenmoses741@gmail.com', '2001-12-08', 19, '2', '2', 'R punniyanathan', 'Father', 100000.00, 2, 11000.00, 13000.00, 'Chennai', 'chennai', '2103050014', '1', '2', 'upload_files/candidate_tracker/33851430510_MOSES CV-converted.docx', NULL, NULL, '2021-03-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling. pronunciation is not clear.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 12:58:25', 7, '2021-03-13 03:33:49', 0, NULL, 1),
(3669, 'hariharan', '4', '6379153792', '9791535502', 'hari12031998@gmail.com', '1998-03-12', 22, '2', '2', 'gomathi', 'cost analyst', 20000.00, 1, 0.00, 15000.00, 'coimbatore', 'chennai', '2103050015', '1', '1', 'upload_files/candidate_tracker/86842820882_Resume new one.docx', NULL, NULL, '2021-03-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'gng to write IRDA exam, will not sustain here and exp is 13k.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 12:58:54', 1, '2021-03-05 01:54:19', 0, NULL, 1),
(3670, 'dhinakaran.d', '6', '7708545440', '', 'ajithdeena655@gmail.com', '1998-05-04', 22, '2', '2', 'durai', 'farmer', 20000.00, 2, 0.00, 17000.00, 'kelambakkam', 'chennai', '2103050016', '1', '1', 'upload_files/candidate_tracker/82324352178_Dhinakaran_resume.docx', NULL, NULL, '2021-03-05', 0, '', '3', '59', '1970-01-01', 162000.00, '', '2', '1970-01-01', '1', '13.5k ctc for srikanth team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-05 01:02:48', 7, '2021-03-11 06:13:33', 0, NULL, 1),
(3671, 'SETHUMADHAVAN S', '22', '9994515145', '9865856564', 'sethumadhavansmys@gmail.com', '1999-08-01', 21, '2', '2', 'SELVAPATHI G', 'BUSINESS', 20000.00, 1, 0.00, 5000.00, 'TIRUPATHUR', 'MADIPAKKAM', '2103050017', '1', '1', 'upload_files/candidate_tracker/29644596908_RESUME ORGINAL 1.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not fit for our role DM, No communication', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-05 01:04:34', 1, '2021-03-09 11:41:18', 0, NULL, 1),
(3672, '', '0', '9630853865', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103050018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-05 01:23:15', 0, NULL, 0, NULL, 1),
(3673, '', '0', '9080443234', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103050019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-05 01:32:50', 0, NULL, 0, NULL, 1),
(3674, 'M jaya vishal', '6', '9360853865', '6379029669', 'jvishal20m@gmail.com', '1995-05-20', 25, '2', '2', 'V murgan', 'Real estate broker', 30000.00, 1, 0.00, 12000.00, 'Pallavaram, chennai', 'Pallavaram, chennai', '2103050020', '1', '1', 'upload_files/candidate_tracker/69484958696_CV_2021-03-02-075734.pdf', NULL, NULL, '2021-03-05', 0, '', '3', '8', '2021-03-09', 156000.00, '', '4', '2022-04-25', '1', '13k ctc for kannan team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 01:55:36', 7, '2021-03-09 10:41:44', 0, NULL, 1),
(3675, 'Vinoth kumar', '4', '7904328982', '9094377027', 'Vinovinoth605@gmail.com', '1997-07-05', 23, '2', '2', 'Janaki', 'House wife', 10000.00, 2, 0.00, 13500.00, 'No 532 18th cross street t .p chathiram.', 'Chennai', '2103050021', '1', '1', 'upload_files/candidate_tracker/79543818842_VINOTH 2 - Resume.docx', NULL, NULL, '2021-03-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not join. not interested in voice.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 02:56:11', 1, '2021-03-05 03:02:27', 0, NULL, 1),
(3676, 'giftson daniel', '16', '9500980342', '', 'iamgiftson@gmail.com', '1998-04-03', 22, '2', '2', 'ponnudurai c', 'accounts assistant', 50000.00, 1, 0.00, 18000.00, 'Tirunelveli', 'chennai', '2103050022', '1', '1', 'upload_files/candidate_tracker/63688145649_GD CV .docx', NULL, NULL, '2021-03-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, Not seems much active and  will take a long to train the candidate', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-05 03:29:50', 1, '2021-03-14 12:23:20', 0, NULL, 1),
(3677, 'Thurrul Mukthar', '13', '8610653277', '9003010332', 'thurrulmukthar@yahoo.in', '1993-02-15', 28, '2', '2', 'Ameer sulthan', 'Self employee', 200000.00, 2, 444000.00, 750000.00, 'Ramanathapuram', 'Ramanathapuram', '2103060001', '1', '2', 'upload_files/candidate_tracker/77091463944_Mukthar (3).pdf', NULL, NULL, '2021-03-06', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'High CTC Expectation, Sustainability doubt, Have a plan to travel abroad also', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-06 03:43:28', 1, '2021-03-06 03:49:37', 0, NULL, 1),
(3678, 'magesh m a', '16', '7299920205', '', 'magimohan29@gmail.com', '1993-07-21', 27, '2', '2', 'annamalai m k', 'business', 25000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2103060002', '1', '2', 'upload_files/candidate_tracker/98567146948_Magesh MBA (OM) Resume.pdf', NULL, NULL, '2021-03-06', 10, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'avg comm, will not suite for mis.', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-06 06:47:29', 1, '2021-03-06 07:10:33', 0, NULL, 1),
(3679, '', '0', '9750140155', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103060003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-06 09:09:00', 0, NULL, 0, NULL, 1),
(3680, 'kowsalya r', '4', '7397351824', '9176247631', 'kowsaly15@gmail.com', '1997-04-15', 23, '1', '2', 'ramesh', 'auto driver', 7000.00, 2, 0.00, 17000.00, 'kodugaiyur', 'kodugaiyur', '2103060004', '', '2', 'upload_files/candidate_tracker/15070295435_1584171683236_kowsalya resume.pdf', NULL, NULL, '2021-03-06', 0, '5560', '3', '8', '1970-01-01', 156000.00, '', '2', '1970-01-01', '2', 'CTC 156000 With Gross - 13000 And TH - 12350, for muthu team', '1', '2', '1', '1', '1', '', '2', '2021-03-15', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-06 10:48:38', 7, '2021-03-13 06:15:36', 0, NULL, 1),
(3681, '', '0', '7397351823', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103060005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-06 11:11:47', 0, NULL, 0, NULL, 1),
(3682, 'Praveen Kumar J', '5', '7358239296', '', 'Praveen.jk1994@gmail.com', '1994-09-14', 26, '2', '2', 'John venkarlt rathanam', 'sales officer', 30000.00, 1, 375000.00, 500000.00, 'Chennai', 'Chennai', '2103060006', '1', '2', 'upload_files/candidate_tracker/78410386318_Praveen.resume-converted.pdf', NULL, NULL, '2021-03-06', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit job dataxquots which given by candidate is not relevant', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-06 12:51:39', 8, '2021-03-06 03:28:37', 0, NULL, 1),
(3683, 'karthik', '5', '8870483033', '', 'karthikjap0611@gmail.com', '1990-11-06', 30, '2', '2', 'janaki', 'labour', 10000.00, 1, 280000.00, 330000.00, 'namakkal', 'thiruporur', '2103060007', '1', '2', 'upload_files/candidate_tracker/17377283743_Resume karthik.pdf', NULL, NULL, '2021-03-06', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not turnedup', '5', '2', '', '1', '1', '', '2', '2021-03-08', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-06 12:51:53', 50, '2021-03-06 01:20:59', 0, NULL, 1),
(3684, 'dineshkumar', '5', '8939737124', '9176722760', 'dinesh6255kumar@gmail.com', '1995-07-31', 25, '1', '2', 'arunachalam', 'plumber', 30000.00, 1, 30000.00, 35000.00, 'chennai', 'chennai', '2103060008', '', '2', 'upload_files/candidate_tracker/61116314024_dineshkumar resume.pdf', NULL, NULL, '2021-03-06', 0, '55634', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for job', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-06 01:19:40', 1, '2021-03-06 02:44:13', 0, NULL, 1),
(3685, '', '0', '7010170825', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103060009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-06 01:47:14', 0, NULL, 0, NULL, 1),
(3686, '', '0', '9500868414', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103060010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-06 04:06:11', 0, NULL, 0, NULL, 1),
(3687, 'n prabhakaran', '5', '7550254958', '8807636498', 'paviprabha10@gmail.com', '1992-01-06', 29, '2', '1', 'bharkavi', 'salaried', 20000.00, 2, 23000.00, 30000.00, 'dharmapuri', 'chennai', '2103060011', '1', '2', 'upload_files/candidate_tracker/79054499640_Prabhakaran Nagaraj Resume.docx', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for 30k package and will not suite for RM', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-06 04:47:57', 1, '2021-03-09 12:17:30', 0, NULL, 1),
(3688, 'Priya R', '16', '9677011402', '7904744685', 'helenpriya1989@gmail.com', '1989-12-15', 31, '2', '1', 'Edwin john A', 'Engineer', 40000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2103060012', '1', '2', 'upload_files/candidate_tracker/83211271803_Resume - Priya R.pdf', NULL, NULL, '2021-03-08', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', '50 50', '3', '2', '0', '1', '1', '0', '2', '2021-03-24', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-06 06:06:00', 1, '2021-03-08 11:32:36', 0, NULL, 1),
(3689, 'Gowtham', '5', '9677184624', '', 'gm2231@gmail.com', '1993-06-23', 27, '3', '2', 'Manivannan', 'Chief manager', 80000.00, 1, 25000.00, 32000.00, 'Chennai', 'Chennai', '2103080001', '', '2', 'upload_files/candidate_tracker/22420744859_1614415110212_Gowtham Resume.pdf', NULL, NULL, '2021-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'profile was selected but he is not Interested. due to package', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-08 10:10:51', 7, '2021-03-24 07:37:22', 0, NULL, 1),
(3690, 'vaishnavi', '4', '9677281082', '', 'vaishnavi.uma.1999@gmail.com', '1999-07-02', 21, '2', '2', 'selvam m', 'business', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2103080002', '1', '1', 'upload_files/candidate_tracker/99965357174_Resume 1.pdf', NULL, NULL, '2021-03-08', 0, '', '3', '8', '2021-04-12', 126312.00, '', '3', '2021-05-05', '1', 'For Priyanka team With CTC - 126312 Gross - 10526 TH - 10000', '1', '2', '1', '1', '1', '', '2', '2021-03-09', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 10:19:10', 7, '2021-04-11 03:50:16', 0, NULL, 1),
(3691, 'A. Sarath Kumar', '16', '8939647692', '', 'sarathortan12@gmail.com', '1994-04-08', 26, '1', '2', 'Arivazhagan S', 'Chef Master', 15000.00, 1, 20000.00, 23000.00, 'Thanjavur', 'Chennai', '2103080003', '', '2', 'upload_files/candidate_tracker/10935404994_Resume1.docx', NULL, NULL, '2021-03-08', 10, '55594', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'avg communication, no written skill. will not suite for mis', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-08 11:00:27', 8, '2021-03-08 07:18:39', 0, NULL, 1),
(3692, 'Sureshkumar', '1', '9500029822', '', 'sureshmahathi86@gmail.com', '1986-01-01', 35, '3', '1', 'Mahathi Sri', 'Working', 10000.00, 5, 30000.00, 37000.00, 'Chennai', 'Chennai', '2103080004', '', '2', '', NULL, NULL, '2021-03-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '2', '0', '1', '1', '0', '2', '2021-04-07', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-08 11:06:38', 29, '2021-03-13 07:31:06', 0, NULL, 1),
(3693, 'Reka', '4', '8610867456', '6381547107', 'rekaanath112@gmail.com', '1998-12-04', 22, '2', '2', 'Priyanga', 'Formar', 10000.00, 0, 0.00, 13000.00, 'Trichy', 'Guindy', '2103080005', '1', '1', 'upload_files/candidate_tracker/93818684360_0_1614010153686_REKA ANANDHAN.pdf', NULL, NULL, '2021-03-08', 0, '', '3', '8', '1970-01-01', 126312.00, '', '2', '1970-01-01', '2', '10k th 10526  as gross for muthuteam.', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 11:28:06', 7, '2021-03-10 05:46:32', 0, NULL, 1),
(3694, 'E.priya', '4', '7550195970', '8939776580', 'vijayav517@gmail.com', '1991-08-08', 29, '2', '1', 'Ravi chandran', 'Chennai', 30000.00, 1, 13000.00, 20000.00, 'West mambalam', 'Pallavaram', '2103080006', '1', '2', 'upload_files/candidate_tracker/98876181492_New resume (1).docx', NULL, NULL, '2021-03-08', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice but has exp in voice 3yr', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 11:43:01', 8, '2021-03-08 04:56:37', 0, NULL, 1),
(3695, 'VISHNU RAJ', '6', '9551400170', '9789961153', 'vishnu.9th@gmail.com', '1997-08-25', 23, '1', '2', 'SELVARAJ', 'Click', 15.00, 1, 0.00, 15.00, 'EGMORE', 'EGMORE', '2103080007', '', '1', 'upload_files/candidate_tracker/65941354343_Resume_of_Vishnu_raj[2].docx', NULL, NULL, '2021-03-08', 0, 'P1065', '3', '8', '2021-03-10', 164208.00, '', '4', '2022-11-05', '1', '13th for Syed team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-08 11:44:00', 7, '2021-03-10 12:03:12', 0, NULL, 1),
(3696, 'Pavithran s', '6', '8072804603', '7397048810', 'pavipavi7397@gmail.com', '1999-05-24', 21, '4', '2', 'SARAVANAN', 'Bsc physics', 10000.00, 1, 0.00, 12.00, 'Dharmapuri', 'Annanagar', '2103080008', '', '1', 'upload_files/candidate_tracker/84437565328_PAVI RESUME.docx', NULL, NULL, '2021-03-08', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-08 11:56:23', 8, '2021-03-08 04:43:12', 0, NULL, 1),
(3697, 'Natesh narayanan', '16', '9499030129', '9840051469', 'Abinatesh@gmail.com', '1996-11-25', 24, '2', '2', 'N chandrasekaran', 'Self Employed', 60000.00, 1, 10000.00, 20000.00, 'Chennai', 'Chennai', '2103080009', '1', '2', 'upload_files/candidate_tracker/5345707638_1611486659398_1605701437726_NateshNarayanan.resume-1.pdf', NULL, NULL, '2021-03-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'avg comm. going to takeover his father business. will not sustain and will not suite for mis', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 12:14:38', 1, '2021-03-08 12:19:51', 0, NULL, 1),
(3698, 'nandhitha pandian', '4', '7305723123', '9940576369', 'nandhitha52@gmail.com', '1992-10-29', 28, '2', '2', 'maheshwari', 'housewife', 30000.00, 0, 17.00, 15000.00, 'chennai', 'chennai', '2103080010', '1', '2', 'upload_files/candidate_tracker/48073558007_RESUME nandhitha.pdf', NULL, NULL, '2021-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for us. not speaking up.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 12:27:34', 7, '2021-03-08 07:30:15', 0, NULL, 1),
(3699, 'rajalakshmi', '4', '9962839093', '9940576369', 'rajalakshminandhini07@gmail.com', '1994-02-04', 27, '2', '1', 'kottiswari', 'housewife', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2103080011', '1', '1', 'upload_files/candidate_tracker/76865674179_Rajalakshmi resume copy .pdf', NULL, NULL, '2021-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher for us. 2yrs exp in max showroom sales. will not suite for calling.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 12:40:34', 7, '2021-03-08 07:29:59', 0, NULL, 1),
(3700, 'VENKATESSN', '13', '8270861947', '8940412973', 'VENKATARJUNAN.73@GMAIL.COM', '1995-04-30', 25, '3', '2', 'Ponnialagan', 'Farmer', 30000.00, 5, 1.60, 20000.00, 'Dindigul', 'Trichy', '2103080012', '', '2', 'upload_files/candidate_tracker/747203971_CV.pdf', NULL, NULL, '2021-03-16', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-08 12:48:44', 7, '2021-03-18 10:19:53', 0, NULL, 1),
(3701, 'Ragunathan', '4', '9500295804', '9789165804', 'nathanragu998@gmail.com', '2000-06-23', 20, '2', '2', 'Selvaraj', 'Carpenter', 30000.00, 1, 0.00, 15000.00, 'Darasuram', 'Guindy', '2103080013', '1', '1', 'upload_files/candidate_tracker/10764231253_ragu perfect resume2.docx', NULL, NULL, '2021-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling, fresher', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 01:18:34', 50, '2021-03-09 10:11:42', 0, NULL, 1),
(3702, 'Karthii', '4', '9361059402', '8870094410', 'karthikravi312@gmail.com', '1998-12-03', 22, '2', '2', 'Ravikumar', 'No work', 10000.00, 1, 20000.00, 20000.00, 'No 32, Sangaralinganar street, Kknagar, chennai-78', 'No 32, Sangaralinganar Street, Kknagar, Chennai-78', '2103080014', '1', '2', 'upload_files/candidate_tracker/38725531981_My_Resume.pdf', NULL, NULL, '2021-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for sales calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 01:41:28', 50, '2021-03-09 10:04:37', 0, NULL, 1),
(3703, 'sindhujaa n', '4', '9942004974', '', 'sindhujaanarayanan3@gmail.com', '1998-04-13', 22, '2', '2', 'narayanan l', 'fresher', 40000.00, 1, 0.00, 15000.00, 'thiruvanmiyur', 'chennai', '2103080015', '1', '1', 'upload_files/candidate_tracker/92832816126_Sindhujaa.pdf', NULL, NULL, '2021-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not turned up', '1', '2', '', '1', '1', '', '2', '2021-03-09', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 02:39:23', 50, '2021-03-09 10:12:11', 0, NULL, 1),
(3704, 'Mohamed suhaib', '16', '9600361281', '', 'mohamedsuhaib18@gmail.com', '1990-10-18', 30, '2', '2', 'Haneef Mohamed', 'Accountant', 16000.00, 1, 280000.00, 350000.00, 'Kilakari, Ramanathapuram', 'Velachery, chennai', '2103080016', '1', '2', 'upload_files/candidate_tracker/86269118716_NEW CV 03_03.pdf', NULL, NULL, '2021-03-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 02:59:53', 7, '2021-03-10 06:47:11', 0, NULL, 1),
(3705, 'Ankur Kumar Roy chowdhury', '16', '8240762407', '8274907884', 'ankurroychowdhury225@gmail.com', '1995-11-27', 25, '2', '2', 'Nandita Roy Chowdhury', 'Housewife', 10000.00, 1, 0.00, 20000.00, 'Kolkata', 'Chennai', '2103080017', '1', '1', 'upload_files/candidate_tracker/23047948971_Ankur_CV_2020(Latest) 1.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no local language and lang is avg. will not suite for mis', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 03:03:28', 1, '2021-03-08 05:48:11', 0, NULL, 1),
(3706, 'Ram Kumar V', '2', '9952765392', '', 'ramkumar060105@gmail.com', '1999-03-25', 21, '2', '2', 'Venkatadhri', 'Coolie', 6000.00, 1, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2103080018', '1', '1', 'upload_files/candidate_tracker/19795522416_RamkumarResume.pdf', NULL, NULL, '2021-03-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Profile,High CTC expectations,not much comfortable with Agreement', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 03:38:57', 1, '2021-03-08 03:53:23', 0, NULL, 1),
(3707, 'k lakshmi', '16', '8939181669', '', 'yashi20593@gmail.com', '1993-05-20', 27, '2', '2', 'amina yusuf', 'housewife', 75000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2103080019', '1', '2', 'upload_files/candidate_tracker/70572313718_Resume.2018 (1).docx', NULL, NULL, '2021-03-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'wrote written from google. comm was okay. 25k exp.', '3', '1', '0', '1', '1', '0', '2', '2021-03-11', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 03:45:19', 1, '2021-03-10 03:19:51', 0, NULL, 1),
(3708, 'SAI.C.B.NAVIN', '22', '8778092075', '9360403002', 'naveen7198@gmail.com', '1998-09-26', 22, '2', '2', 'V.r.s.babu', 'Supervisor', 15000.00, 0, 0.00, 10000.00, 'Poonamallee', 'Poonamallee', '2103080020', '1', '1', 'upload_files/candidate_tracker/44077819679_Emailing SAI.C.B.NAVIN Resume MBA FINAL YEAR.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication, will not fit for our role DM', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 04:35:25', 1, '2021-03-09 11:28:40', 0, NULL, 1),
(3709, 'Archana k R', '16', '9677271651', '6369324275', 'sunglory2010@gmail.com', '1991-12-24', 29, '2', '2', 'RAGHAVAN K S', 'RETIRED ICF EMPLOYEE', 30000.00, 2, 21000.00, 30000.00, 'Chennai', 'Chennai', '2103080021', '1', '2', 'upload_files/candidate_tracker/91137047015_ARCHANA.KR_RESUME 2021 (1).docx', NULL, NULL, '2021-03-09', 0, '', '5', '54', NULL, 0.00, '', '0', NULL, '2', 'she worked more than 6 years of Experience but not match her skill ', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 04:53:13', 1, '2021-03-08 05:05:24', 0, NULL, 1),
(3710, 'RAGUNATHAN S', '22', '9444397502', '', 'harishragu619@gmail.com', '1998-06-06', 22, '2', '2', 'SENTHIL KUMAR S', 'BUSINESS', 20000.00, 1, 0.00, 5000.00, 'Chengalpattu', 'Chengalpattu', '2103080022', '1', '1', 'upload_files/candidate_tracker/11116618629_Ragunathan resume.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suits for DM.Content not upto the mark', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 05:56:06', 1, '2021-03-09 11:57:54', 0, NULL, 1),
(3711, 'Ramar', '16', '8015635835', '6379818027', 'ravuchandiranramar@gmail.com', '1994-06-17', 26, '2', '1', 'Durga Devi', 'Working', 300000.00, 2, 18000.00, 25000.00, 'Perambalur', 'Chennai', '2103080023', '1', '2', 'upload_files/candidate_tracker/40883565796_Ramar Ravichandiran Resume.pdf', NULL, NULL, '2021-03-10', 7, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'comm is very poor. will not suite for mis', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 05:56:35', 1, '2021-03-08 06:03:17', 0, NULL, 1),
(3712, 'sathish kumar', '16', '9841029286', '', 'sathishdec0309@ymail.com', '1992-12-03', 28, '2', '2', 'jayapalan', 'Business', 30000.00, 2, 12500.00, 19000.00, 'chennai', 'chennai', '2103080024', '1', '2', 'upload_files/candidate_tracker/5612364234_Sathish Kumar CV.pdf', NULL, NULL, '2021-03-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 08:18:30', 1, '2021-03-08 08:29:19', 0, NULL, 1),
(3713, '', '0', '7904570105', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103080025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-08 11:50:24', 0, NULL, 0, NULL, 1),
(3714, 'Vijaya Ruban', '6', '8667723036', '9094076287', 'Rubananbu93@gmail.com', '1998-05-06', 22, '2', '2', 'Thanalachime', 'House wife', 15000.00, 2, 0.00, 15000.00, '10/78new street ayanavaram chennai600023', '10/78new Street Ayanavaram Chennai600023', '2103090001', '1', '1', 'upload_files/candidate_tracker/33414918102_Vijay ruban RESUME.pdf', NULL, NULL, '2021-03-09', 0, '', '3', '8', '2021-03-10', 156000.00, '', '4', '2021-05-19', '1', '13k ctc for suthagar team.', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-09 10:06:41', 7, '2021-03-10 12:03:46', 0, NULL, 1),
(3715, 'Vigneshwaran A', '5', '7639671975', '6369926694', 'vignesbio95@gmail.com', '1996-06-11', 24, '2', '2', 'Azhagarsamy', 'Farmer', 100000.00, 1, 0.00, 20000.00, 'Siruseri', 'Velacherry', '2103090002', '8', '1', 'upload_files/candidate_tracker/196647546_VIGNESHWARAN A.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales. looking for HR job.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 10:12:09', 1, '2021-03-09 10:17:08', 0, NULL, 1),
(3716, 'OMPRAKASH', '6', '9176983436', '', 'Omprakash784532@gmail.com', '1996-05-09', 24, '1', '2', 'MARIYAPPAN', 'Cooli', 12000.00, 2, 17000.00, 16000.00, 'Tondiarpet', 'Tondiarpet', '2103090003', '', '2', 'upload_files/candidate_tracker/32391517016_OMPRAKASH.docx', NULL, NULL, '2021-03-09', 0, 'P1152', '3', '8', '2021-03-11', 189480.00, '', '6', '2021-04-07', '1', '15k th for syed team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 10:33:43', 7, '2021-03-11 04:04:59', 0, NULL, 1),
(3717, 'irshad baig', '6', '7845420478', '7358420163', 'parvaz04@gmail.com', '1995-09-04', 25, '1', '2', 'muzaffer', 'garment', 30000.00, 1, 13000.00, 15000.00, 'chennai', 'chennai', '2103090004', '', '2', 'upload_files/candidate_tracker/16898479600_irshad baig cv.doc', NULL, NULL, '2021-03-09', 0, 'thiyagu', '8', '59', NULL, 0.00, '', '0', NULL, '1', 'The candidate left without attending the interview', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 11:07:32', 1, '2021-03-09 12:18:37', 0, NULL, 1),
(3718, 'Kumaran K', '5', '8838379689', '7092051335', 'kumaranzero@gmail.com', '1983-01-30', 38, '1', '1', 'Shanthini k', 'House wife', 130000.00, 1, 16500.00, 17000.00, 'Villivakkam', 'Villivakkam', '2103090005', '', '2', 'upload_files/candidate_tracker/82004104066_Kumaran.docx', NULL, NULL, '2021-03-09', 0, '55577', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for any profile.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 11:10:35', 7, '2021-03-09 11:48:21', 0, NULL, 1),
(3719, 'Girinivas.B', '6', '9159354834', '9514728101', 'girinivasbala@gmail.com', '1999-07-04', 21, '2', '2', 'Balasubramani', 'Painter', 100000.00, 1, 0.00, 12000.00, 'Pondicherry', 'Tambaram', '2103090006', '1', '1', 'upload_files/candidate_tracker/7875257558_Giri_Resume.dox[2].pdf', NULL, NULL, '2021-03-09', 0, '', '3', '8', '2021-03-10', 156000.00, '', '3', '2021-04-30', '2', '13k ctc for thiyagu team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-09 11:22:53', 7, '2021-03-10 12:08:13', 0, NULL, 1),
(3720, 'Sabanayagam', '4', '7010125802', '7598871815', 'sabhacena84@gmail.com', '1998-09-14', 22, '2', '2', 'Ramesh', 'Be computer science', 100000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2103090007', '1', '1', 'upload_files/candidate_tracker/22003075259_resume sab (3).docx', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, fresher.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-09 11:23:11', 1, '2021-03-09 11:28:21', 0, NULL, 1),
(3721, 'Sasikumar', '4', '9551744524', '9841889405', 'Sasikumarr5743@gmail.com', '1996-07-05', 24, '2', '2', 'Ravi', 'Car mechanic', 13000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2103090008', '1', '1', 'upload_files/candidate_tracker/64598575893_sk resumed.docx', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'appearance and slang is not up to the level. will not suite for us', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-09 11:35:52', 1, '2021-03-09 12:04:37', 0, NULL, 1),
(3722, 'thamemul ansari m m i', '4', '9080342893', '', 'mmiansari05@gmail.com', '1997-10-05', 23, '2', '2', 'mohamed iqbal m', 'driver', 13000.00, 0, 0.00, 13000.00, 'chennai', 'chennai', '2103090009', '1', '1', 'upload_files/candidate_tracker/5301435284_THAMEMUL ANSARI RESUME.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Planing to do higher study and doing  part time job too.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-09 11:36:25', 1, '2021-03-09 12:08:44', 0, NULL, 1),
(3723, 'G madan', '5', '7092031234', '7305022345', 'madan.divi90@gmail.com', '1983-01-02', 38, '2', '1', 'M divyalakshmi', 'Working', 30000.00, 1, 30000.00, 40000.00, 'Chennai', 'Chennai', '2103090010', '3', '2', 'upload_files/candidate_tracker/48780080805_Madan Resume-2.doc', NULL, NULL, '2021-03-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our prosess. gaurav rejected him', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 11:37:12', 7, '2021-03-24 07:38:08', 0, NULL, 1),
(3724, 'S Karthick', '4', '8610410812', '8939655632', 'karthilkajith@gmail.com', '1996-10-30', 24, '2', '2', 'Sekar', 'Painter', 13000.00, 1, 0.00, 13000.00, 'Thousand lights', 'Thousand lights', '2103090011', '1', '1', 'upload_files/candidate_tracker/98070667166_KARTHICK RESSUME.docx', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'left before 2nd round', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-09 11:37:30', 1, '2021-03-09 11:52:10', 0, NULL, 1),
(3725, 'ASHIKALI K', '16', '9042835298', '7615815493', 'ashikali1797@gmail.com', '1997-09-17', 23, '2', '2', 'KADHAR MOIDEEN', 'Self Employee', 10000.00, 1, 15000.00, 18000.00, 'Villupuram', 'Chennai', '2103090012', '1', '2', 'upload_files/candidate_tracker/69048321134_ASHIKALI RESUME.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '3', '2', '0', '1', '1', '0', '2', '2021-03-10', '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-09 01:22:51', 1, '2021-03-09 01:29:39', 0, NULL, 1),
(3726, 'gayathri', '4', '9176185063', '', 'nikithanikki027@gmail.com', '1997-10-15', 23, '3', '2', 'elangovan', 'construction', 25000.00, 2, 0.00, 150000.00, 'thiruvottiyur', 'thiruvottiyur', '2103090013', '', '1', 'upload_files/candidate_tracker/15623453052_gayathri 09-03-2021.doc', NULL, NULL, '2021-03-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for Back end job. not interested in sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 02:30:30', 8, '2021-03-09 05:13:12', 0, NULL, 1),
(3727, 'Kaja muhaitheen', '4', '8438205627', '9597050155', 'fami7800@gmail.com', '1998-12-12', 22, '3', '2', 'Fathima nazeera', 'House wife', 20000.00, 1, 0.00, 12000.00, 'Rameswaram', 'Rameswaram', '2103090014', '', '1', 'upload_files/candidate_tracker/29502313297_my%20resume.docx', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain and will not suite for calling.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 02:31:41', 1, '2021-03-09 02:41:09', 0, NULL, 1),
(3728, 'Kalaimani', '4', '8925149120', '', 'srisivasiva094@gmail.com', '1994-05-20', 26, '2', '1', 'Harish', 'Manager', 25000.00, 4, 0.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2103090015', '1', '1', 'upload_files/candidate_tracker/72007396580_CamScanner 03-09-2021 15.20.35_1.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice. not interested in sales.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-09 02:32:28', 8, '2021-03-09 05:16:57', 0, NULL, 1),
(3729, 'Nainar ubaythulla', '4', '9597050155', '8675011562', 'ubaythaziz705@gmail.com', '1996-01-19', 25, '2', '2', 'Meharaj banu', 'House wife', 72000.00, 1, 12000.00, 14000.00, '4/666-111,kayethe millath nagar puduvalasai', 'Flat no 4 krishna nagar west thambaram', '2103090016', '1', '2', 'upload_files/candidate_tracker/71614839354_ubayth.docx', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain. ', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-09 02:33:06', 1, '2021-03-09 02:38:21', 0, NULL, 1),
(3730, 'Mohammed Rashik', '13', '8610771720', '', 'RASHIKFAREED1403@GMAIL.COM', '1997-04-16', 23, '1', '2', 'SUHARABHI', 'Home Maker', 30000.00, 2, 1.50, 2.20, 'Kolathur', 'Kolathur', '2103090017', '', '2', 'upload_files/candidate_tracker/70050551794_RESUME.pdf', NULL, NULL, '2021-03-09', 20, 'P1155', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task not Completed.', '2', '1', '0', '1', '1', '0', '2', '2021-03-15', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 02:59:49', 1, '2021-03-09 03:13:02', 0, NULL, 1),
(3731, 'John pretto J', '13', '9384601335', '8939748433', 'johnpretto10@gmail.com', '1995-01-10', 26, '3', '2', 'Jaya seelan E', 'Driver', 15000.00, 1, 0.00, 12000.00, 'chennai', 'Chennai', '2103090018', '', '1', 'upload_files/candidate_tracker/99366567771_0_main.pdf', NULL, NULL, '2021-03-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not completed the task\n', '2', '2', '0', '1', '1', '0', '2', '2021-03-11', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 04:27:39', 1, '2021-03-09 04:33:14', 0, NULL, 1),
(3732, 'Gobinath S', '5', '9677337657', '7994329902', 'gobikrish19@gmail.com', '1993-07-18', 27, '2', '1', 'Kalpana', 'Manager', 60000.00, 0, 300000.00, 350000.00, 'Erode', 'Chennai', '2103090019', '1', '2', 'upload_files/candidate_tracker/77087503303_GOBINATH RESUME.docx', NULL, NULL, '2021-03-10', 0, '', '3', '8', '2021-04-07', 350000.00, '', '6', '2021-11-30', '1', '350000 CTC,29167-gC, 25359-TH for Rajkumar team.', '5', '1', '4', '1', '1', '', '2', '2021-03-22', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-09 04:32:33', 7, '2021-03-31 10:21:00', 0, NULL, 1),
(3733, 'N.vignesh', '4', '9080015856', '7667290307', 'Vicky2105s0312@gmail.com', '1999-05-21', 21, '2', '2', 'M.Natesan', 'Farmer', 13000.00, 0, 0.00, 12000.00, 'Tiruvannamali', 'chennai', '2103090020', '1', '1', 'upload_files/candidate_tracker/46529335110_Vivek resume (1).pdf', NULL, NULL, '2021-03-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suits for IT requirement.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-09 05:03:03', 7, '2021-03-10 11:13:24', 0, NULL, 1),
(3734, 'sakthipriya', '13', '7094237469', '', 'priyaravichandran30597@gmail.com', '1997-05-30', 23, '2', '2', 'maheswari', 'icds', 130000.00, 1, 0.00, 20000.00, 'tiruvannamalai', 'chennai', '2103090021', '1', '1', 'upload_files/candidate_tracker/18840753114_sakthi Resume.pdf', NULL, NULL, '2021-03-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our Position(Interviewed by Latha)', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-09 08:09:27', 50, '2021-03-12 11:26:08', 0, NULL, 1),
(3735, 'RAJA RAJA CHOLAN', '13', '8344222833', '8344222832', 'vrrcholanaiwo@gmail.com', '1997-07-04', 23, '2', '2', 'VENKATESAN', 'ADVOCATE', 25000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2103100001', '1', '2', 'upload_files/candidate_tracker/89902947973_PHP-Developer-Rajarajacholan-2020.docx', NULL, NULL, '2021-03-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'He has not interested to join.', '2', '1', '0', '1', '1', '0', '2', '2021-03-11', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-10 09:27:24', 1, '2021-03-10 09:30:58', 0, NULL, 1),
(3736, 'Ramesh', '4', '6374286066', '9443267644', 'rameshraj3298@gmail.com', '1998-05-16', 22, '1', '2', 'Rajendran', 'Driver', 10000.00, 2, 13000.00, 15000.00, 'Pudukkottai', 'Kodambakkam', '2103100002', '', '2', 'upload_files/candidate_tracker/19568818254_Ramesh cv.pdf', NULL, NULL, '2021-03-10', 0, 'P1027', '3', '8', '2021-03-11', 144000.00, '', '3', '2021-03-30', '2', '12k ctc for muthu team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-10 10:18:28', 7, '2021-03-10 06:56:53', 0, NULL, 1),
(3737, 'Roja v', '4', '9962032967', '9345464436', 'rose20180720@gmail.com', '1999-10-07', 21, '2', '2', 'Victor', 'Van driver', 20000.00, 1, 13000.00, 15000.00, 'Purasaivakam', 'Chennai', '2103100003', '1', '2', 'upload_files/candidate_tracker/29963472104_Rosy-1.pdf', NULL, NULL, '2021-03-10', 6, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process. 6m in hathway and exp is 12k min', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 10:46:57', 50, '2021-03-10 11:00:58', 0, NULL, 1),
(3738, '', '0', '9487547569', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103100004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-10 10:47:15', 0, NULL, 0, NULL, 1),
(3739, 'Saravana Kumar', '6', '7667290307', '9597975542', 'csk3131999@gmail.com', '1999-03-31', 21, '2', '2', 'N. Palanivel', 'Carpenter', 30000.00, 1, 0.00, 12000.00, 'Tiruvannamalai', 'Chennai', '2103100005', '1', '1', 'upload_files/candidate_tracker/33596820482_Final.pdf', NULL, NULL, '2021-03-10', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he didnxquott turned up', '5', '2', '', '1', '1', '', '2', '2021-03-17', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 10:48:34', 8, '2021-03-10 12:11:34', 0, NULL, 1),
(3740, 'Vinoth', '8', '9566160967', '', 'Vk928223@gmail.com', '1995-07-01', 25, '2', '1', 'Kumar', 'CRM and video edittor', 15000.00, 0, 15000.00, 17000.00, 'Chennai', 'Chennai', '2103100006', '1', '2', 'upload_files/candidate_tracker/97961498855_VINOTH.docx', NULL, NULL, '2021-03-10', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-03-10 11:03:50', 1, '2021-03-10 11:12:36', 0, NULL, 1),
(3741, 'R.saravanan', '4', '6374090236', '9597243770', 'saros6875@gmail.com', '1997-11-29', 23, '2', '2', 'P.Ramalingam', 'Electrician', 14000.00, 2, 13000.00, 12000.00, 'Kumbakonam', 'Thiruvanmaiyur', '2103100007', '1', '2', 'upload_files/candidate_tracker/8367726475_Saravanan resume.docx', NULL, NULL, '2021-03-10', 6, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain. looking for Temporary joj for 3-4months', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 12:02:46', 1, '2021-03-10 12:20:12', 0, NULL, 1),
(3742, 'Aravind.B', '4', '7358604758', '', 'babuaravind83@gmail.com', '2000-04-07', 20, '1', '2', 'Babu.I', 'Photo lamination', 25000.00, 1, 0.00, 16.00, 'Ellis road anna salai', 'Ellis road anna salai', '2103100008', '', '1', 'upload_files/candidate_tracker/53516661870_CV_2020-11-22-094841.pdf', NULL, NULL, '2021-03-10', 0, '55634', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up. will not suite for calling', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-10 12:11:52', 1, '2021-03-10 12:27:03', 0, NULL, 1),
(3743, 'N.hem kumar', '4', '6369214021', '7824051913', 'Kumarhem80433@gmail.com', '1997-07-02', 23, '1', '2', 'A.narasimman', 'Daily wages', 20000.00, 1, 18000.00, 18000.00, 'Ayanavaram', 'Ayanavaram', '2103100009', '', '2', 'upload_files/candidate_tracker/12182435338_resume2021.pdf', NULL, NULL, '2021-03-10', 0, '55634', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not interested in sales job', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-10 12:12:19', 1, '2021-03-10 12:26:55', 0, NULL, 1),
(3744, 'Hemanth sriram', '13', '8939645060', '', 'sriramhemanth.v20@gmail.com', '1997-11-20', 23, '2', '2', 'Vijaya kumar', 'Business', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2103100010', '1', '1', 'upload_files/candidate_tracker/25236119116_Hemanthsriram_resume.pdf', NULL, NULL, '2021-03-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Agreement,have a plan to  travel muscat,will not sustain for a long .high CTC expectations', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-10 12:18:05', 1, '2021-03-10 12:20:37', 0, NULL, 1),
(3745, 'Faizal Zaheed', '5', '9566182192', '', 'faizalzaheed0636@gmail.com', '1993-09-27', 27, '2', '2', 'Umar farook', 'Employee', 12000.00, 1, 330000.00, 450000.00, 'Chennai', 'Chennai', '2103100011', '1', '2', 'upload_files/candidate_tracker/52941577117_MY RESUME.docx', NULL, NULL, '2021-03-10', 0, '', '3', '8', '2021-03-23', 309696.00, '', '2', '1970-01-01', '1', 'Selected With CTC - 309696 With Gross - 25808 TH - 22000', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-10 12:33:54', 7, '2021-03-20 10:47:59', 0, NULL, 1),
(3746, 'M.Hemalatha', '4', '9344605355', '9566049635', 'Hemasep09@gmail.com', '1996-09-09', 24, '2', '2', 'Munuswamy', 'Auto Driver', 6000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2103100012', '1', '1', 'upload_files/candidate_tracker/64457599910_Latha Resume-1.docx', NULL, NULL, '2021-03-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process.', '1', '2', '', '1', '3', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 01:00:11', 50, '2021-03-10 01:32:50', 0, NULL, 1),
(3747, 'Revathi', '4', '6383103319', '', 'revathikaruppusamy@188gmail.com', '1996-07-23', 24, '2', '2', 'Karuppusamy', 'Van driver', 10000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2103100013', '1', '1', 'upload_files/candidate_tracker/35761616962_1615363003725_1574056093072Resume_Revathi.docx', NULL, NULL, '2021-03-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for crm.', '1', '2', '', '1', '3', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 01:01:11', 50, '2021-03-10 01:33:05', 0, NULL, 1),
(3748, 'Premkumar M', '17', '9095432792', '9600179966', 'premkumar255.pk@gmail.com', '1988-05-25', 32, '2', '2', 'Jothi M', 'Mother', 40000.00, 1, 30000.00, 30000.00, 'Chennai', 'Chennai', '2103100014', '3', '2', 'upload_files/candidate_tracker/89094670352_PREM KUMAR (1).doc-converted-converted.pdf', NULL, NULL, '2021-03-10', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Very Poor Communication. Will Not Suite For Our Process.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-10 01:41:22', 8, '2021-03-10 05:57:29', 0, NULL, 1),
(3749, 'Sundar', '6', '7806918084', '7358552019', 'sundardhanvin0777@gmail.com', '2000-02-11', 21, '1', '2', 'Saritha', 'Bpo', 21000.00, 0, 18000.00, 18000.00, 'Chetpet', 'Perangulathur', '2103100015', '', '2', 'upload_files/candidate_tracker/936682231_1590150031717_CURRICULUM VITAE sundar.doc', NULL, NULL, '2021-03-10', 10, 'P1177', '3', '8', '2021-03-15', 202104.00, '', '3', '2021-04-20', '2', '16k th for srikanth team.', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-10 01:44:04', 7, '2021-03-11 06:17:15', 0, NULL, 1),
(3750, 'Jenifa', '4', '8825821788', '7806918084', 'smileetamil@gmail.com', '1996-02-03', 25, '1', '2', 'Devagi', 'Bpo', 21000.00, 1, 18000.00, 18000.00, 'Tambaram', 'Tambaram', '2103100016', '', '2', 'upload_files/candidate_tracker/13916998778_CV_2020-12-25-105024.pdf', NULL, NULL, '2021-03-10', 0, 'P1177', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process. no relevant exp. exp min 16K.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-10 02:06:20', 50, '2021-03-10 03:35:36', 0, NULL, 1),
(3751, 'Prabhakaran.A', '13', '9962838876', '', 'prabhakaran310898@gmail.com', '1998-08-31', 22, '2', '2', 'P.Appanasamy', 'Designer', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2103100017', '1', '1', 'upload_files/candidate_tracker/31783978308_Prabha_Karan_Resume.pdf', NULL, NULL, '2021-03-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Agreement, should check with family.Have a plan to do an MBA also.Sustainability doubt', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-10 02:28:45', 50, '2021-03-11 12:18:58', 0, NULL, 1),
(3752, 'Cyril Mathew', '6', '8668140091', '8124716452', 'cyrilmathew7.cm@gmail.com', '1995-08-17', 25, '2', '2', 'Lilly thresa', 'Working', 20.00, 2, 0.00, 21.00, 'chennai', 'chennai', '2103100018', '1', '1', 'upload_files/candidate_tracker/83387054873_Doc 2.pdf', NULL, NULL, '2021-03-11', 0, '', '3', '8', '2021-03-15', 202104.00, '', '6', '2021-11-30', '1', 'CTC - 2,02,104 With Gross - 16842 And TH - 16000, for guru team', '5', '2', '1', '1', '1', '', '2', '2021-03-11', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-10 06:09:30', 7, '2021-03-13 06:15:47', 0, NULL, 1),
(3753, 'Shanavas B', '2', '7305675272', '7904025863', 'shanavas2898@gmail.com', '1998-12-28', 22, '2', '2', 'Babu J', 'Tailor', 15000.00, 1, 0.00, 25000.00, 'Salem', 'Salem', '2103100019', '1', '1', 'upload_files/candidate_tracker/63968562770_shanavas-Resume(Updated).pdf', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Agreement', '2', '2', '0', '1', '1', '0', '2', '2021-03-19', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-10 06:22:39', 1, '2021-03-10 06:31:35', 0, NULL, 1),
(3754, 'Ramachandran', '13', '9551075811', '', 'ramachandranece1993@gmail.com', '1994-03-10', 27, '2', '2', 'Annamalai', 'Driver', 30000.00, 0, 0.00, 15000.00, '70, 2nd street annai indra nagar villivakkam', 'Chennai', '2103100020', '1', '1', 'upload_files/candidate_tracker/66781858095_resume 112.docx', NULL, NULL, '2021-03-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable(Interviewed by Latha)', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 06:32:26', 1, '2021-03-10 06:40:53', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3755, 'Mohanraj E', '2', '7358224732', '', 'gemohanraj1998@gmail.com', '1998-07-26', 22, '2', '2', 'G.Ethiraj', 'Contract labour', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Thirumullaivoyal', '2103100021', '1', '1', 'upload_files/candidate_tracker/41010554866_resume 0.1.pdf', NULL, NULL, '2021-03-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for agreement, Fresher will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-10 06:33:12', 1, '2021-03-10 06:38:11', 0, NULL, 1),
(3756, 'Jenifer E', '4', '8428364821', '9043851247', 'jenisweety223@gmail.com', '1997-12-21', 23, '2', '2', 'Ellapan P', 'Electrician', 25000.00, 1, 15000.00, 15000.00, 'Nedugundram', 'Perugalathur', '2103100022', '1', '2', 'upload_files/candidate_tracker/7963832092_JENIFER RESUME.docx', NULL, NULL, '2021-03-11', 10, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for us.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-10 06:40:04', 1, '2021-03-11 12:07:43', 0, NULL, 1),
(3757, 'Subash shankar', '4', '9597372134', '9597614247', 'santhoshsivan1704@gmail.com', '1999-04-17', 21, '2', '2', 'Ragavan', 'Regional sales manager', 46000.00, 0, 0.00, 15000.00, 'Tirunelveli', 'Tambaram', '2103100023', '1', '1', 'upload_files/candidate_tracker/53044108797_Subash_Resume-01.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for sales, will not sustain, no job need, will not handle pressure', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-10 06:41:26', 50, '2021-03-13 09:43:56', 0, NULL, 1),
(3758, 'Dinesh R', '13', '9042908019', '', 'f.dineshdina262010@gmail.com', '1999-10-22', 21, '2', '2', 'Nill', 'Terner', 1.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2103100024', '1', '1', 'upload_files/candidate_tracker/73131481351_CV_2020-12-10-090840.pdf', NULL, NULL, '2021-03-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suits for our position(Interviewed by latha)', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 07:59:28', 50, '2021-03-12 11:33:53', 0, NULL, 1),
(3759, 'Rajeshwari p', '20', '7418307736', '', 'nikithapanner05091997@gmail.com', '1997-09-05', 23, '2', '2', 'Panneerselvam.K', 'Carpenter', 30000.00, 1, 13000.00, 13000.00, 'Nedungundram', 'Nedungundram/ perungalathur', '2103100025', '1', '2', 'upload_files/candidate_tracker/70803469588_Rajeshwari(1).pdf', NULL, NULL, '2021-03-11', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'not suit for sales and renewals.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-10 10:11:30', 1, '2021-03-11 12:50:49', 0, NULL, 1),
(3760, '', '0', '8270871947', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103110001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-11 09:39:32', 0, NULL, 0, NULL, 1),
(3761, 'R Venkatravana', '4', '8838139364', '', 'Venkatravana1803@gmail.com', '1994-08-18', 26, '2', '2', 'R Penchillammal', 'Sanitize worker', 20000.00, 2, 11000.00, 13000.00, 'Chennai', 'Chennai', '2103110002', '1', '2', 'upload_files/candidate_tracker/61226975093_R Venkatravana Resume.docx', NULL, NULL, '2021-03-11', 1, '', '3', '8', '2021-03-15', 145260.00, '', '3', '2021-03-18', '1', 'for muthu team With Gross - 12105 xxamp TH - 11500', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 10:56:45', 7, '2021-03-12 05:50:47', 0, NULL, 1),
(3762, 'Durgadevi G R', '4', '9840824137', '8220066389', 'grdurgadevi9695@gmail.com', '1995-06-09', 25, '2', '2', 'G G Ramalingam (late)', 'Plumber', 20000.00, 1, 12000.00, 14000.00, 'Chennai', 'Chennai', '2103110003', '1', '2', 'upload_files/candidate_tracker/70463510255_DURGA RESUME-1-1.docx', NULL, NULL, '2021-03-11', 1, '', '3', '8', '2021-03-15', 132000.00, '', '3', '2021-03-18', '2', '11k ctc for muthu team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 10:58:41', 7, '2021-03-12 05:51:08', 0, NULL, 1),
(3763, 'Saideepak B', '6', '8428691560', '', '220.journey.rider@gmail.com', '1997-11-28', 23, '2', '2', 'Attiyammal B', 'Homemaker', 6000.00, 1, 12400.00, 15000.00, 'No:8/a Anbu nagar main road ,Alwarthiru Nagar', 'Chennai', '2103110004', '1', '2', 'upload_files/candidate_tracker/2835148557_1614843563599Resume_Sai.docx', NULL, NULL, '2021-03-11', 0, '', '3', '8', '2021-03-15', 168000.00, '', '3', '2021-05-13', '1', 'Selected For Kannan Team RE,CTC - 168000 With Gross - 14000 xxamp TH - 13,300', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 10:59:07', 7, '2021-03-13 06:49:16', 0, NULL, 1),
(3764, 'suthakar', '4', '8148672168', '8124268781', 'suthakar093@gmail.com', '1993-07-03', 27, '2', '2', 'p.chandrsekaran', 'farmer', 9000.00, 0, 15000.00, 15000.00, 'ekattuthangal', 'ekattuthangal', '2103110005', '1', '2', 'upload_files/candidate_tracker/83997429512_Resume.suthakar.docx', NULL, NULL, '2021-03-11', 7, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suits for our role, expecting High Pay', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 11:21:33', 50, '2021-03-11 12:52:53', 0, NULL, 1),
(3765, 'v. jafer ali', '4', '8682962768', '8072106124', 'jafar7845.ja63@gmail.com', '1993-12-17', 27, '1', '2', '. siddique ahmed', 'labour', 10000.00, 3, 13000.00, 15000.00, 'ambur', 'chennai', '2103110006', '', '2', 'upload_files/candidate_tracker/58353934865_JAFER ALI CV (1).pdf', NULL, NULL, '2021-03-11', 0, 'syed', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for admin job.  will not suite for calling', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-11 11:24:47', 1, '2021-03-11 11:54:42', 0, NULL, 1),
(3766, 'V Thouseef Ahmed', '4', '8072106124', '8682962768', 'tousee486@gmail.com', '1999-05-06', 21, '1', '2', 'Thoufeeque Ahmed', 'Staff', 90000.00, 3, 0.00, 12000.00, 'No 58 judge manai 5th street Ambur', 'No 29 whutucattan street periyamet Chennai 600003', '2103110007', '', '1', 'upload_files/candidate_tracker/69916755389_syco thouseef.docx', NULL, NULL, '2021-03-11', 0, 'Syed', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling. fresher 3m in semi voice.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-11 11:29:25', 1, '2021-03-11 11:49:16', 0, NULL, 1),
(3767, 'Sriraman R', '16', '9843465356', '9940032615', 'r.sriraman139@gmail.com', '1995-03-30', 25, '2', '2', 'K.S.Rajendran', 'Agriculture', 80000.00, 0, 10806.00, 18000.00, 'Trichy', 'Chennai Adambakkam', '2103110008', '1', '2', 'upload_files/candidate_tracker/16771196979_8982768164_12132.pdf', NULL, NULL, '2021-03-11', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'appearance is not okay. avg communication.', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-03-11 11:37:19', 1, '2021-03-11 12:55:29', 0, NULL, 1),
(3768, 'Deepika V', '4', '9080417940', '7448610771', 'deepikavadivelu9@gmail.com', '2000-09-10', 20, '2', '2', 'Vadivelu S', 'Late', 10000.00, 2, 0.00, 10000.00, 'Teynampet', 'Teynampet', '2103110009', '1', '1', 'upload_files/candidate_tracker/58198435836_V. Deepika Resum.pdf', NULL, NULL, '2021-03-11', 0, '', '3', '8', '2021-03-15', 126600.00, '', '6', '2021-06-02', '2', '10k th for keerthiga team.', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 11:37:36', 7, '2021-03-12 05:51:23', 0, NULL, 1),
(3769, '', '0', '8637614016', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103110010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-11 11:44:13', 0, NULL, 0, NULL, 1),
(3770, '', '0', '9965454243', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103110011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-11 12:15:32', 0, NULL, 0, NULL, 1),
(3771, 't.vigneshwaran', '4', '8248213464', '9551482080', 'vignesht73@gmail.com', '1996-11-25', 24, '2', '2', 'theyaneshwaran', 'business', 15000.00, 1, 12000.00, 15000.00, 'chennai', 'chennai', '2103110012', '1', '2', 'upload_files/candidate_tracker/84606837431_vignesh update resume (4).docx', NULL, '1', '2021-03-11', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for CRM. looking for back end job.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'again he came for an interview on 05-02-22,  last 9m WFH in flipkart customer support and looking for a similar kind of job. expt is 15k.', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-03-11 12:17:05', 7, '2022-02-05 03:32:57', 0, NULL, 1),
(3772, 'Bhoopeshmani', '5', '9360701234', '9150743344', 'bhoopeshamex@gmail.com', '1995-07-12', 25, '2', '1', 'Miroshini', 'Home maker', 45000.00, 0, 350000.00, 400000.00, 'Chennai', 'Chennai', '2103110013', '1', '2', 'upload_files/candidate_tracker/72741854951_Resume_Bhoopesh mani_Format1 (1).pdf', NULL, NULL, '2021-03-11', 7, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not  suit for agency channel', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 12:36:11', 50, '2021-03-11 12:51:47', 0, NULL, 1),
(3773, 'Bala Murugan', '4', '8428554475', '7358512520', 'bm822365@gmail.com', '1998-05-01', 22, '2', '2', 'Anandan', 'Real estate', 30000.00, 2, 11000.00, 11000.00, 'Chennai', 'Chennai', '2103110014', '1', '2', 'upload_files/candidate_tracker/67288672510_devi 267---.pdf', NULL, NULL, '2021-03-11', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'profile mismatch and will not suite for calling. no sustainability.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 01:29:28', 50, '2021-03-11 03:17:05', 0, NULL, 1),
(3774, 'zehra m', '16', '8637689028', '', 'zehramurtuza16@gmail.com', '2000-11-16', 20, '2', '2', 'murtuza', 'business', 50000.00, 1, 0.00, 25000.00, 'CHENNAI', 'CHENNAI', '2103110015', '1', '1', 'upload_files/candidate_tracker/18334247514_InternshalaResume.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Not Turned Up', '3', '1', '0', '1', '1', '0', '2', '2021-03-15', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-11 03:36:26', 1, '2021-03-11 03:55:35', 0, NULL, 1),
(3775, 'Santhanam s', '4', '9087248669', '9965454243', 'kssanthanam2013@gmail.com', '1992-05-03', 28, '3', '2', 'siva', 'Labour', 35000.00, 2, 0.00, 20000.00, 'Kandamanallur gingee Tk vpm dt', 'Guduvanchery', '2103110016', '', '2', 'upload_files/candidate_tracker/85825770480_santhanam profile.pdf', NULL, NULL, '2021-03-11', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'too long. from gooduvancherry.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-11 04:04:55', 1, '2021-03-11 04:25:25', 0, NULL, 1),
(3776, 'Akshaya Hemadri', '22', '9677191097', '', 'hemadriakshaya@gmail.com', '1994-04-29', 26, '2', '2', 'Hemadri', 'Farmer', 1.00, 0, 0.00, 1.00, 'Anna Nagar', 'Anna Nagar', '2103110017', '1', '1', 'upload_files/candidate_tracker/65555965057_Akshaya Hemadri Resume.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Attitude issue.', '2', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-11 04:57:25', 1, '2021-03-12 05:28:15', 0, NULL, 1),
(3777, 'pramodh t', '2', '8838829856', '8220506062', 'pramodh1412@gmail.com', '2000-05-25', 20, '2', '2', 'm.thirunavukkarasu', 'farmer', 15000.00, 1, 0.00, 30000.00, 'chennai', 'kandigai', '2103110018', '1', '1', 'upload_files/candidate_tracker/98515982518_pramodh updated resume.docx', NULL, NULL, '2021-03-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High CTC expectation,not open for agreement\n', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-11 05:16:14', 60, '2021-03-22 06:28:01', 0, NULL, 1),
(3778, 'Gayathri Devi R', '16', '7904889349', '9941376791', 'gayuhasi@gmail.com', '1993-02-19', 28, '2', '2', 'Father: Raghu Raman PV', 'Fire Officer at ONGC', 60000.00, 1, 14000.00, 20000.00, 'Pammal', 'Pammal', '2103110019', '1', '2', 'upload_files/candidate_tracker/60528791623_Gayu New Reumes.docx', NULL, NULL, '2021-03-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'avg communication, wrote content from google.', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-11 07:39:29', 1, '2021-03-11 07:55:24', 0, NULL, 1),
(3779, 'Tharani', '16', '8248288942', '9788648493', 'tharaniece32@gmail.com', '1995-12-23', 25, '2', '2', 'Thangavel', 'Retired BHEL employee', 45000.00, 1, 0.00, 25000.00, 'Trichy', 'Chennai', '2103110020', '1', '1', 'upload_files/candidate_tracker/45981443821_T THARANI MBA 2020.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not turned up', '3', '2', '', '1', '1', '', '2', '2021-03-15', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-11 07:56:37', 50, '2021-03-13 10:32:18', 0, NULL, 1),
(3780, 'Abirami.N', '16', '9176714527', '', 'abinedumal@gmail.com', '1995-09-21', 25, '2', '2', 'V.s.Nedumal', 'Engineer', 50000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2103110021', '1', '2', 'upload_files/candidate_tracker/53948951797_Abirami.N RESUME.pdf', NULL, NULL, '2021-03-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no job need. written was avg. will not suite for coordination', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-11 09:12:56', 60, '2021-03-16 12:14:23', 0, NULL, 1),
(3781, 'fathima k', '16', '9445937827', '', 'velankaren1418@gmail.com', '1979-11-13', 41, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 21000.00, 'chennai', 'chennai', '2103120001', '3', '2', 'upload_files/candidate_tracker/72533453081_FATHIMA.k_148773809.pdf', NULL, NULL, '2021-03-12', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'good communication but know have basic knowledge in excel and analytical.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-12 09:27:12', 1, '2021-03-12 09:37:12', 0, NULL, 1),
(3782, 'Sadaveeranan', '4', '6382266063', '9786337478', 'sadaveeranandchs@gmail.com', '1998-07-23', 22, '1', '2', 'Veeranan', 'Farmer', 10000.00, 4, 0.00, 13000.00, 'Saidapet', 'Saidapet', '2103120002', '', '1', 'upload_files/candidate_tracker/60533089584_interviewschedule.pdf', NULL, NULL, '2021-03-12', 0, 'Jobs', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-12 11:29:15', 50, '2021-03-12 12:39:43', 0, NULL, 1),
(3783, 'Mohammed basith afzal rahman', '22', '7418487736', '', 'afzalrahman78@gmail.com', '1997-05-28', 23, '2', '2', 'Salikhan', 'Shopkeeper', 18000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2103120003', '1', '2', 'upload_files/candidate_tracker/64854952168_1607943476110Resume_Afzal.pdf', NULL, NULL, '2021-03-12', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidat not having basic knowledge about DM', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-12 11:32:21', 8, '2021-03-12 01:39:41', 0, NULL, 1),
(3784, 'Yuvarani', '4', '8015100365', '8778219756', 'yuvaranisankar321@gmail.com', '1995-06-13', 25, '2', '2', 'Sankar', 'Business', 40000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2103120004', '1', '2', 'upload_files/candidate_tracker/8970127925_yuva resume.docx', NULL, NULL, '2021-03-12', 0, '', '3', '8', '1970-01-01', 132000.00, '', '2', '1970-01-01', '2', 'CTC - 132000 With Gross - 11000 xxamp TH - 10450 for muthu team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-12 11:32:22', 7, '2021-03-12 05:51:37', 0, NULL, 1),
(3785, 'L.rakesh', '16', '8939492259', '', 'Rakesh31101997@gmail.com', '1997-10-31', 23, '2', '2', 'S.lakshmi Narasimhan', 'A/c mechanic', 25000.00, 1, 0.00, 18000.00, 'No.53 kuttiappan 1st street kilapuk chennai 600010', 'No.53 Kuttiappan 1st Street Kilapuk Chennai 600010', '2103120005', '1', '1', 'upload_files/candidate_tracker/69595297712_rakesh-resume.pdf', NULL, NULL, '2021-03-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'just like that came for an interview. no job need. Planing to do business', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 12:05:52', 50, '2021-03-12 02:40:35', 0, NULL, 1),
(3786, '', '0', '9442841452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103120006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-12 03:14:42', 0, NULL, 0, NULL, 1),
(3787, 'subramaniam s', '22', '7810009424', '9443774796', 'vigneshravii96@gmail.com', '1996-09-15', 24, '2', '2', 'sitaraman s', 'retired', 200000.00, 0, 12000.00, 15000.00, 'chennai', 'chennai', '2103120007', '1', '2', 'upload_files/candidate_tracker/10970312282_SUBRAMANIAM RESUME DM.pdf', NULL, NULL, '2021-03-15', 0, '', '3', '8', '2021-03-22', 24000.00, '', '0', NULL, '1', 'Selected For DM With Internship For 3 Months\nInternship Pay 2k Employment Will Be Discussed After Internship.2.3 Yrs Of Agreement', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 03:28:36', 1, '2021-03-12 03:40:39', 0, NULL, 1),
(3788, 'Mohamed Javith', '13', '6380259378', '7094783968', 'javinuh@gmail.com', '1999-07-15', 21, '2', '2', 'Shek mohaideen', 'Self employee', 10000.00, 2, 0.00, 12000.00, 'Ramanathapuram', 'Pondicherry', '2103120008', '1', '1', 'upload_files/candidate_tracker/31075288478_Mohamed Javith resume.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'System Task Given and not to able to do the tsk', '2', '1', '0', '1', '1', '0', '2', '2021-03-16', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 03:36:08', 1, '2021-03-12 03:42:01', 0, NULL, 1),
(3789, 'Stallon', '5', '9840045523', '8248132545', 'Staln0808@gmail.com', '1990-09-25', 30, '3', '2', 'Burono', 'Self employed', 20000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2103120009', '', '2', 'upload_files/candidate_tracker/7180917533_stallon cv.docx', NULL, NULL, '2021-03-12', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response.', '5', '2', '', '1', '1', '', '2', '2021-03-22', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-12 03:54:20', 8, '2021-03-12 05:47:09', 0, NULL, 1),
(3790, 'Maclean', '27', '9790709474', '', 'macleanmicheal2647.mm@gmail.com', '1997-07-26', 23, '2', '2', 'Micheal', 'Pharmacist', 80000.00, 1, 260000.00, 360000.00, 'Chennai', 'Chennai', '2103120010', '1', '2', 'upload_files/candidate_tracker/71869086444_Resume_Maclean_basic.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Rejected in the client round', '2', '1', '0', '1', '1', '0', '2', '2021-03-15', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 04:22:37', 1, '2021-03-12 04:30:38', 0, NULL, 1),
(3791, 'Prasanth. M', '27', '8428815902', '', 'Mprasanthprism@gmail.com', '1995-05-10', 25, '2', '2', 'Muthiah. A', 'Cooli', 30000.00, 1, 260000.00, 400000.00, 'Trichy', 'Chennai', '2103120011', '1', '2', 'upload_files/candidate_tracker/59103744235_PRASANTH EXPERIENCE -CV (1).docx', NULL, NULL, '2021-03-13', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Rejected In The Client Round', '2', '1', '0', '1', '1', '0', '2', '2021-03-15', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 04:38:46', 1, '2021-03-12 04:46:02', 0, NULL, 1),
(3792, 'Praveen Joseph sagayaraj', '16', '6374575282', '9841085236', 'Praveenjoseph04011992@gmail.com', '1992-01-04', 29, '2', '2', 'John Samuel', 'Security', 25000.00, 2, 19000.00, 25000.00, 'Perambur', 'Perambur', '2103120012', '1', '2', 'upload_files/candidate_tracker/28913754860_Praveen Joseph CV.docx', NULL, NULL, '2021-03-13', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 05:10:19', 8, '2021-03-13 06:00:51', 0, NULL, 1),
(3793, 'Gnanavel A', '13', '8883545620', '8270668046', 'gnanavelraja222@gmail.com', '1999-02-18', 22, '2', '2', 'Kanatha', 'Daily wages', 30000.00, 1, 0.00, 10.00, 'Tiruvannamali', 'Ambattur', '2103120013', '1', '1', 'upload_files/candidate_tracker/58264603101_GNANAVELr.docx', NULL, NULL, '2021-03-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for the agreement', '2', '2', '', '1', '1', '', '2', '2021-03-15', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 06:19:02', 50, '2021-03-13 10:00:09', 0, NULL, 1),
(3794, 'venkatesh', '27', '8508440124', '', 'venkatesh.ph10@gmail.com', '1995-01-02', 26, '2', '2', 'palanisamy', 'operatio theater assisstant', 100000.00, 1, 270000.00, 350000.00, 'salem', 'chennai', '2103120014', '1', '2', 'upload_files/candidate_tracker/17076364166_1557991944025_VenkatResume.doc', NULL, NULL, '2021-03-13', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Rejected in the Client Interview', '2', '2', '0', '1', '1', '0', '2', '2021-03-15', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 07:06:54', 1, '2021-03-12 07:13:22', 0, NULL, 1),
(3795, 'sasikumar', '13', '9080242678', '9840322947', 'mesasi1326@gmail.com', '1997-05-31', 23, '2', '2', 'p.chinniyan', 'building work', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2103120015', '1', '1', 'upload_files/candidate_tracker/95316049922_Resume.sasi.docx', NULL, NULL, '2021-03-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not comfortable with the agreement, left without attending the 2nd level interview', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 07:55:45', 7, '2021-03-13 12:40:20', 0, NULL, 1),
(3796, 'Ishwarya A', '13', '7397312441', '8428476463', 'ishwaryaangappan@gmail.com', '1996-05-20', 24, '2', '2', 'K.Angappan', 'Web analyst', 18000.00, 2, 0.00, 20000.00, 'No.9/2 kanniamman koil Street, West mambalam', 'No.9/2 kanniamman koil Street, West mambalam', '2103120016', '1', '1', 'upload_files/candidate_tracker/43960212941_Ishwarya_resume.pdf', NULL, NULL, '2021-03-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much suits will not sustain\n', '2', '2', '', '1', '1', '', '2', '2021-03-19', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 08:08:54', 50, '2021-03-15 12:15:34', 0, NULL, 1),
(3797, 'Sabari Rajan .G', '13', '9585484784', '8526426553', 'sabarirajangnanasekar@gmail.com', '1998-09-07', 22, '3', '2', 'S.Gnana sekar', 'Former', 20000.00, 1, 0.00, 15000.00, '11/12A Gandhi road vriddhachalam cuddalore', '11/12A Gandhi road vriddhachalam cuddalore', '2103120017', '', '1', 'upload_files/candidate_tracker/75333515123_SabariRajan Resume.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Comfortable With The Agreement, Left Without Attending The 2nd Level Interview', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-12 08:11:04', 1, '2021-03-13 12:23:49', 0, NULL, 1),
(3798, 'Prakash saravanan', '6', '7904097345', '9566094648', 'chinniprakash1998@gmail.com', '1998-09-24', 22, '2', '2', 'Saravanan', 'Construction', 25000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2103120018', '1', '2', 'upload_files/candidate_tracker/88793927848_Prakash.docx', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'drop', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-12 09:37:04', 7, '2021-03-24 08:00:45', 0, NULL, 1),
(3799, '', '0', '9788648493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103120019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-12 11:37:24', 0, NULL, 0, NULL, 1),
(3800, 'NIRANJAN V', '13', '9994828709', '8072297814', 'niranjan020898@gmail.com', '1998-08-02', 22, '2', '2', 'Seetha Lakshmi', 'BE', 150000.00, 1, 0.00, 15000.00, '17, Chellam North Street Rajapalayam', 'Chennai', '2103130001', '1', '1', 'upload_files/candidate_tracker/89928842305_NiranjanResume 2.doc', NULL, NULL, '2021-03-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for the agreement, Fresher profile', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-13 03:39:48', 1, '2021-03-15 12:20:56', 0, NULL, 1),
(3801, 'm.archana', '4', '7305269693', '', 'archanamurali2311@gmail.com', '1999-11-23', 21, '4', '2', 'm.murali', 'electrician', 90000.00, 0, 0.00, 10000.00, 'chennai', 'chennai', '2103130002', '', '1', 'upload_files/candidate_tracker/32490375393_achu resume (1).docx', NULL, NULL, '2021-03-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'pursuing her final year, has to attend online class weekly twice. ask her to call after degree.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 10:43:35', 1, '2021-03-13 11:22:49', 0, NULL, 1),
(3802, 'mohamed saifuddin', '13', '8667569932', '7299319972', 'mdsaif0611@gmail.com', '1995-11-19', 25, '2', '2', 'mohamed thajuddin', 'sales man', 15000.00, 1, 16000.00, 25000.00, 'chennai', 'chennai', '2103130003', '1', '2', 'upload_files/candidate_tracker/44219483572_Mohamed-Saifuddin-T.pdf', NULL, NULL, '2021-03-15', 28, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task not completed.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-13 10:45:20', 50, '2021-03-15 10:22:59', 0, NULL, 1),
(3803, 'Ranjith Kumar p', '5', '9080799473', '', 'ranjiths211@gmail.com', '2006-03-13', 0, '2', '2', 'NAGAS', 'Driving', 60000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2103130004', '8', '1', 'upload_files/candidate_tracker/60045888936_RANJITH REUSME.docx', NULL, NULL, '2021-03-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not Speaking up,  will not suite for sales. doesnt have observation and listening skills', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 10:51:11', 1, '2021-03-13 11:05:39', 0, NULL, 1),
(3804, 'B. Priya', '4', '9500630959', '7094656144', 'Deepanpriya121093@gmail.com', '1993-10-12', 27, '1', '1', 'V. Deepak kumar', 'Body shop ( Painting )', 25000.00, 2, 18000.00, 18000.00, 'T. Nagar', 'T. Nagar', '2103130005', '', '2', 'upload_files/candidate_tracker/733843673_RESUME modified (1) (2)-converted-converted (1).pdf', NULL, NULL, '2021-03-13', 0, '12123', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for sales calling. exp is 18k. newly married too. will not sustain.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 11:02:19', 1, '2021-03-13 11:33:31', 0, NULL, 1),
(3805, 'Subasrri Mahalingam', '4', '8838599277', '8124797731', 'subasrrimahalingam98@gmail.com', '1998-01-07', 23, '2', '2', 'Mahalingam', 'Worked in PWD', 17000.00, 1, 0.00, 13000.00, 'Erode', 'Poonamalle', '2103130006', '1', '1', 'upload_files/candidate_tracker/15153075676_Sri resume(1).pdf', NULL, NULL, '2021-03-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no job need, will not sustain and will not suite for calling too.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-13 11:34:09', 1, '2021-03-13 11:50:04', 0, NULL, 1),
(3806, 'Sudha Muniyappan', '4', '6383786041', '8124797731', 'msudhaa1997@gmail.com', '1997-08-19', 23, '2', '2', 'Muniyappan', 'Driver', 15000.00, 2, 0.00, 13000.00, 'Mettur Dam-1, Salem (dt).', 'Poonamallee, chennai', '2103130007', '1', '1', 'upload_files/candidate_tracker/61985153172_1611573409546_sudha Resume.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'profile and data miss match and will not sustain. not speaking up. will not handle pressure.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-13 11:34:35', 7, '2021-03-13 06:46:25', 0, NULL, 1),
(3807, 'Adlin Raj', '4', '9791728573', '7094878640', 'Adlinrajadr1@gmail.com', '1997-09-15', 23, '2', '2', 'Ajitha Kumari.j', 'Housewives', 20000.00, 1, 0.00, 15000.00, 'Vettuvellaiveedumalaicodeedicode(Pt)kanniyakumari', 'Valacherry,checkpost', '2103130008', '1', '1', 'upload_files/candidate_tracker/1993757078_adr resum.docx', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain and time being he is looking for job. language is also not good.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-13 11:39:00', 7, '2021-03-13 06:45:23', 0, NULL, 1),
(3808, 'Parvathi Nathan', '4', '8220859545', '', 'Parvathinathan1697@gmail.com', '1997-04-16', 23, '2', '2', 'Krishnan (Father)', 'Grocery store worker', 10000.00, 1, 15000.00, 15000.00, 'Tirunelveli', 'Chennai', '2103130009', '1', '2', 'upload_files/candidate_tracker/81089395158_RESUME[1].pdf', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not turned up', '1', '2', '', '1', '1', '', '2', '2021-03-15', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-13 11:57:57', 7, '2021-03-13 06:44:51', 0, NULL, 1),
(3809, 'Sai sunitha.R', '4', '7550237523', '', 'Sunithasai34@gmail.com', '1999-04-01', 21, '4', '1', 'G.ramu ,N.shanthi', 'Security', 108000.00, 1, 0.00, 15000.00, '11/2A,5th main road,gangai street ,velacherry.', '11/2A ,5th Main road, gangai street,velacherry.', '2103130010', '', '1', 'upload_files/candidate_tracker/30821106447_S.VIGNESH.docx', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for us', '1', '2', '', '1', '1', '', '2', '2021-03-15', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 12:01:18', 7, '2021-03-13 06:44:14', 0, NULL, 1),
(3810, 'j shalini', '4', '9080867575', '', 'shalini7712@gmail.com', '1998-10-30', 22, '1', '2', 's.janakiraman', 'labour', 85000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2103130011', '', '1', 'upload_files/candidate_tracker/44543082523_Document (3).pdf', NULL, NULL, '2021-03-13', 0, 'jobs', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 12:16:21', 7, '2021-03-13 06:43:31', 0, NULL, 1),
(3811, 'archana', '4', '8220907434', '', 'ariarchana14@gmail.com', '1999-09-14', 21, '3', '2', 'malar', 'labour', 7000.00, 2, 0.00, 15000.00, 'thiruchendur', 'chennai velacheri', '2103130012', '', '2', 'upload_files/candidate_tracker/76397014611_Archana.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not bold', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 12:56:42', 7, '2021-03-13 06:42:44', 0, NULL, 1),
(3812, '', '0', '9444605079', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103130013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-13 12:59:57', 0, NULL, 0, NULL, 1),
(3813, 'jayanthi', '4', '8778648210', '7418126832', 'jayanthijayanthi058@gmail.com', '2000-08-13', 20, '3', '2', 'devaraj', 'labour', 7000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2103130014', '', '1', 'upload_files/candidate_tracker/68168187241_Document (3).pdf', NULL, NULL, '2021-03-13', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Not at all speaking', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 01:14:01', 1, '2021-03-13 01:27:10', 0, NULL, 1),
(3814, 'M. Priya', '4', '9384616360', '7338904456', 'priya2315spl@gmail.com', '1994-11-15', 26, '1', '2', 'M. Manivannan', 'Central govt or medical line', 15000.00, 3, 13000.00, 15000.00, '35/89 6th Street annai sivagami nagar Ennore,', '35/89 6th Street Annai Sivagami Nagar Ennore,', '2103130015', '', '2', 'upload_files/candidate_tracker/45784922089_New doc 13-Mar-2021 3.17 pm.pdf', NULL, NULL, '2021-03-13', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no relevant exp. too long from ennore.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 03:03:14', 1, '2021-03-13 03:25:49', 0, NULL, 1),
(3815, 'Vaishnavi.A', '4', '8807491657', '8056255880', 'Ananadhvaishu@gmail.com', '1995-04-25', 25, '1', '2', 'K.Anandhan', 'Corpentor', 15000.00, 1, 0.00, 15000.00, 'No: 74/48 ,6th Street,Annai sivagami nagar,Ennore', 'No: 74/48 ,6th Street,Annai Sivagami Nagar,Ennore', '2103130016', '', '1', 'upload_files/candidate_tracker/6270506879_New doc 13-Mar-2021 3.17 pm-1.pdf', NULL, NULL, '2021-03-13', 0, 'Jobs', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long from ennore', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 03:03:26', 7, '2021-03-13 06:41:54', 0, NULL, 1),
(3816, 'UDHAYASURIYA', '13', '8825963768', '', 'udhayasuriya1912@gmail.com', '1998-12-19', 22, '2', '2', 'Udhaya.A', 'Land seller', 12000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2103130017', '1', '1', 'upload_files/candidate_tracker/77320119732_new1.docx', NULL, NULL, '2021-03-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not fit for our PHP Role\n', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-13 03:08:00', 50, '2021-03-15 11:05:38', 0, NULL, 1),
(3817, 'Priya. M', '4', '7338904456', '9384616360', 'priya2315spl@gmail.com', '1994-11-15', 26, '1', '2', 'M. Manivannan', 'Lab work', 15000.00, 3, 14000.00, 15000.00, '35/89 6th Street annai sivagami nagar Ennore,', '35/89 6th Street Annai Sivagami Nagar Ennore,', '2103130018', '', '2', 'upload_files/candidate_tracker/36028127058_New doc 13-Mar-2021 3.17 pm.pdf', NULL, NULL, '2021-03-13', 0, 'Sudhakar', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 03:44:24', 7, '2021-03-13 05:53:56', 0, NULL, 1),
(3818, 'kripa', '16', '9025614808', '', 'kripaleah@gmail.com', '1986-08-17', 34, '2', '1', 'jackson', 'enginerr', 200000.00, 0, 0.00, 5.00, 'chennai', 'chennai', '2103130019', '1', '2', 'upload_files/candidate_tracker/48484421222_1604401148212_kripa new resume.pdf', NULL, NULL, '2021-03-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will check for someother profile.', '3', '2', '0', '1', '1', '0', '2', '2021-03-16', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-13 05:03:34', 1, '2021-03-15 12:19:39', 0, NULL, 1),
(3819, '', '0', '9962956914', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103130020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-13 05:41:44', 0, NULL, 0, NULL, 1),
(3820, 'Bhuvanesh S', '27', '9047979483', '', 'bhuvan29.selva@gmail.com', '1997-10-29', 23, '2', '2', 'Selvakumar', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Mayiladuthurai', 'Ambathur', '2103130021', '1', '1', 'upload_files/candidate_tracker/46066731492_BHUVAN MCA .pdf', NULL, NULL, '2021-03-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for Dotnet Winforms', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-13 06:10:44', 50, '2021-03-15 12:12:20', 0, NULL, 1),
(3821, '', '0', '6383331797', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103140001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-14 12:16:53', 0, NULL, 0, NULL, 1),
(3822, '', '0', '9176714586', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103140002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-14 01:20:31', 0, NULL, 0, NULL, 1),
(3823, 'RADHIKA S', '27', '8098508312', '9751688975', 'radhisingaravelu@gmail.com', '1998-12-19', 22, '2', '2', 'SINGARAVELU', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Tiruvarur', 'Perungalathur', '2103140003', '1', '1', 'upload_files/candidate_tracker/13818923755_RADHIKA_S.pdf', NULL, NULL, '2021-03-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-14 05:04:05', 1, '2021-03-14 05:08:12', 0, NULL, 1),
(3824, 'Kaviya M', '22', '6380376471', '7708624070', 'Kaviyamr630@gmail.com', '1997-11-30', 23, '2', '2', 'M. Karimuthu', 'Nlc employeee', 50000.00, 2, 11000.00, 15000.00, '397-A, TYPE-II, BLOCK-29,NEYVELI-07', 'subi ladies hostel, sholinganallur, chennai', '2103140004', '1', '2', 'upload_files/candidate_tracker/64318816964_kaviya Resume.pdf', NULL, NULL, '2021-03-16', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-14 11:19:59', 7, '2021-03-18 10:21:02', 0, NULL, 1),
(3825, 'V.Prakash', '6', '6383217959', '', 'prakashvenkatesan84156@gmail.com', '1999-05-13', 21, '2', '2', 'Venkatesan', 'Auto drive', 10000.00, 1, 12000.00, 16000.00, 'Ayanavaram', 'Ayanavaram', '2103150001', '1', '2', 'upload_files/candidate_tracker/8141882361_15473_1612783189985_1610168548375_V.Prakash Updated Resume (1)-converted.pdf', NULL, NULL, '2021-03-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Very High Expectation,No relevant Exp last CTC - 1,44,00 and the expected CTC - 192000 more than 30%', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-15 09:42:55', 1, '2021-03-15 01:12:15', 0, NULL, 1),
(3826, 'Saravanan.G', '4', '9080800850', '', 'gsaravanansaro12345@gmail.com', '2006-03-15', 15, '1', '2', 'Gajapathi.S', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Mandaveli', 'Mandaveli', '2103150002', '', '1', 'upload_files/candidate_tracker/55730864260_Saravana Resume.pdf', NULL, NULL, '2021-03-15', 0, 'P1027', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling. local slang.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-15 10:02:27', 1, '2021-03-15 10:07:24', 0, NULL, 1),
(3827, 'Sedhuraman. S', '6', '6369738776', '', 'Sedhuraman168@gmail.com', '1995-08-16', 25, '1', '2', 'Vilasini', 'theatre Assistance in government eye hospital', 19000.00, 1, 18000.00, 20000.00, '174 kamaraj nagar kilpauk chennai 600010', 'Kilpaukkam', '2103150003', '', '2', 'upload_files/candidate_tracker/76604067577_Sedhuraman.docx.pdf', NULL, NULL, '2021-03-15', 0, '66668', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no skills,no experince', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-15 11:14:25', 8, '2021-03-15 01:36:34', 0, NULL, 1),
(3828, '', '0', '9345105934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103150004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-15 12:09:44', 0, NULL, 0, NULL, 1),
(3829, 'Pradeep Raghavan k', '2', '9566671245', '', 'pradeepraghavan66010@gmail.com', '1999-11-04', 21, '2', '2', 'Lakshmi c', 'House wife', 2500.00, 0, 0.00, 30000.00, 'Oddanchatram', 'Oddanchatram', '2103150005', '1', '1', 'upload_files/candidate_tracker/16449354306_pradeepraghavan.pdf', NULL, NULL, '2021-03-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-15 12:15:43', 1, '2021-03-15 12:22:54', 0, NULL, 1),
(3830, 'robinson', '6', '9345103934', '9904597261', 'robinsonrc21@gmail.com', '1996-04-21', 24, '2', '1', 'robert', 'paper agency', 30000.00, 1, 19000.00, 22000.00, 'madavaram', 'ponniammanmedu', '2103150006', '1', '2', 'upload_files/candidate_tracker/54458346435_robin.docx', NULL, NULL, '2021-03-15', 10, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-15 12:23:06', 7, '2021-03-18 10:23:11', 0, NULL, 1),
(3831, 'manoharan', '4', '9790370540', '9344134540', 'manoharan1072@gmail.com', '1996-07-22', 24, '3', '2', 'p ramu', 'housewife', 7000.00, 1, 13000.00, 12000.00, 'karaikudi', 'chennai', '2103150007', '', '2', 'upload_files/candidate_tracker/31350660662_manoj resume 2.pdf', NULL, NULL, '2021-03-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-15 01:14:37', 1, '2021-03-15 01:23:23', 0, NULL, 1),
(3832, 'divakar', '6', '8610345710', '', 'pachaidivaka@gmail.com', '1996-11-11', 24, '2', '2', 'pachiayappan', 'bsnl', 12000.00, 4, 0.00, 12000.00, 'chennai', 'chennai', '2103150008', '2', '1', 'upload_files/candidate_tracker/82430948582_document (1).pdf', NULL, NULL, '2021-03-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not handle pressure and will not sustain. int in photography and absconded from previous company and told the company was shutdown.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-15 01:33:16', 1, '2021-03-15 01:35:16', 0, NULL, 1),
(3833, 'VEILUMUTHU M', '5', '9894378292', '', 'veilumuthu2594an@gmail.com', '1994-08-25', 26, '2', '2', 'MUTHUSAMY', 'Driver', 30000.00, 1, 0.00, 25000.00, 'Tirunelveli', 'Tirunelveli', '2103150009', '1', '2', 'upload_files/candidate_tracker/26105443170_RESUME_Veilumuthu.M (1).pdf', NULL, NULL, '2021-03-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'last th is 14k and exp 25kth.  profile matches for RE.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-15 02:32:04', 50, '2021-03-15 02:54:08', 0, NULL, 1),
(3834, 'mullai vendan shanmugam', '16', '9790959728', '', 'mullaivendan2809@gmail.com', '1997-09-28', 23, '2', '2', 'p shanmugam', 'section officer', 85000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2103150010', '1', '1', 'upload_files/candidate_tracker/95036990462_MullaiVendan\'s resume.pdf', NULL, NULL, '2021-03-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no observation, listening, acceptance. fresher looking for 3l ctc', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-15 03:32:13', 1, '2021-03-15 04:49:53', 0, NULL, 1),
(3835, 'Prakash A', '6', '9677686418', '8754238158', 'prakashprakash34852@gmail.com', '2000-05-28', 20, '2', '2', 'Anthuvan R', 'Driver', 10000.00, 3, 0.00, 16000.00, 'Arasankazhani', 'Arasankazhani', '2103150011', '1', '1', 'upload_files/candidate_tracker/619995003_prakash.pdf', NULL, NULL, '2021-03-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process.', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-15 03:40:25', 1, '2021-03-15 03:56:34', 0, NULL, 1),
(3836, 'Vishnu', '16', '9400640589', '8075569768', 'Vishnu.mdas589@gmail.com', '1996-02-19', 25, '2', '2', 'Vijaya', 'Logistics', 40000.00, 1, 0.00, 25000.00, 'Koonthalloor chirayinkeezhu Trivandrum kerala', 'moggapair east, Chennai, Tamil nadu', '2103150012', '1', '1', 'upload_files/candidate_tracker/4782367673_VISHNU MOHANDAS ( MECH) .pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned up', '3', '1', '0', '1', '1', '0', '2', '2021-03-20', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-15 04:05:38', 1, '2021-03-15 05:01:51', 0, NULL, 1),
(3837, 'Praveen Aadhithya R', '16', '8678969598', '', 'aadhithya7666@gmail.com', '2000-04-23', 20, '2', '2', 'Satheesh Kumar', 'Sales', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2103150013', '1', '1', 'upload_files/candidate_tracker/70787425483_Praveen_Resume.docx', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain and looking for network engg. job or it job but not oaky with internship with infotech, not int in sales, demand 20k package.', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-15 05:11:54', 1, '2021-03-15 05:19:09', 0, NULL, 1),
(3838, 's. jasmine rhema', '27', '9597222322', '9445347858', 'sjrhema@gmail.com', '1997-12-22', 23, '2', '2', 'c. shermugadurai', 'clerck', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2103150014', '1', '1', 'upload_files/candidate_tracker/89456355352_Resume.docx', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Rejected In The Client Round', '2', '2', '0', '1', '1', '0', '2', '2021-03-18', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-15 07:29:48', 1, '2021-03-16 01:05:23', 0, NULL, 1),
(3839, 'nivetha', '4', '7338886243', '', 'nivetha.nive8078@gmail.com', '1999-12-26', 21, '2', '2', 'rajendran', 'not working', 10000.00, 2, 13000.00, 14000.00, 'chennai', 'chennai', '2103160001', '2', '2', 'upload_files/candidate_tracker/23266892580_CURRICULUM VITAE.nive.docx', NULL, NULL, '2021-03-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 09:15:54', 7, '2021-03-18 10:21:15', 0, NULL, 1),
(3840, 'arif a', '6', '9080632954', '', 'rajaarief28@gmail.com', '1999-08-28', 21, '2', '2', 'abdulwakith', 'work dressing store', 15000.00, 1, 0.00, 12000.00, 'coimbatore', 'chennai', '2103160002', '2', '1', 'upload_files/candidate_tracker/3364275987_Arif@CV(1).pdf', NULL, NULL, '2021-03-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling. not speaking up.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 09:32:09', 1, '2021-03-16 09:34:23', 0, NULL, 1),
(3841, 'anthony sebastiras', '6', '7299359727', '', 'antosebastian4594@gmail.com', '1994-05-02', 26, '2', '1', 'arokicaswamy', 'truck driver', 20000.00, 1, 16000.00, 18000.00, 'chennai', 'chennai', '2103160003', '2', '2', 'upload_files/candidate_tracker/9534902948_Anthony Sebastiras Resume.docx', NULL, NULL, '2021-03-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'pronunciation is not good. will not suite for calling.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 09:36:36', 1, '2021-03-16 09:38:35', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3842, 'Ashok', '4', '9344226177', '', 'ashokthala77@gmail.com', '2000-06-29', 20, '1', '2', 'R.masilamani', 'Hindhu', 30000.00, 1, 13.00, 13.00, 'Korukupet', 'Korukupet', '2103160004', '', '2', 'upload_files/candidate_tracker/44627371135_Ashok Resume.pdf', NULL, NULL, '2021-03-16', 0, '5560', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 09:51:45', 7, '2021-03-18 10:21:31', 0, NULL, 1),
(3843, 'Vigneshwaran palaniyappan', '2', '9894984332', '', 'vw170996@gmail.com', '1996-09-17', 24, '2', '2', 'Palaniyappan', 'Employee in vegetables market', 9000.00, 1, 12000.00, 20000.00, '2044/1, west 6th Street, pudukkottai', 'no.1, pudupet garden street, Royapettah', '2103160005', '1', '2', 'upload_files/candidate_tracker/76369253229_vigneshwaran-resume.pdf', NULL, NULL, '2021-03-17', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude issue,not open for Agreement', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 10:09:12', 1, '2021-03-16 10:14:45', 0, NULL, 1),
(3844, 'ponmanipriya', '4', '7358057467', '', 'priyasweetyjith@gmail.com', '1993-08-10', 27, '2', '2', 'indrajith', 'not working', 15000.00, 2, 12000.00, 14000.00, 'aynavaram', 'chennai', '2103160006', '2', '2', 'upload_files/candidate_tracker/70379796246_0_Resume Ponnman update on 06.01.2017(1) (1).doc', NULL, NULL, '2021-03-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 10:15:37', 7, '2021-03-18 10:22:40', 0, NULL, 1),
(3845, 'sathish kumar a', '6', '9952092913', '', 'asathishkumar790@gmail.com', '1995-08-11', 25, '2', '2', 'angaiyan', 'house keeping supervisor', 20000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2103160007', '2', '1', 'upload_files/candidate_tracker/44183862571_Sathish.pdf', NULL, NULL, '2021-03-16', 0, '', '8', '53', NULL, 0.00, '', '0', NULL, '1', 'not attended', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 10:44:59', 1, '2021-03-16 10:46:46', 0, NULL, 1),
(3846, 'Pranav cm', '6', '9605997569', '9846434704', 'PranVcm2016@gmail.com', '1995-11-06', 25, '2', '2', 'Krishnan kutty', 'Tyre shop', 20000.00, 1, 300000.00, 350000.00, 'Kozhikode, kerala', 'Kandanchavadi, chennai, tamil nadu', '2103160008', '1', '2', 'upload_files/candidate_tracker/52850901572_Pranav CM- CV.docx', NULL, NULL, '2021-03-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-16 11:09:04', 50, '2021-03-16 12:55:38', 0, NULL, 1),
(3847, 'Ajithkumar s', '27', '8754391028', '', 'ajith.rising@gmail.com', '2006-03-16', 0, '2', '2', 'No', 'Technical support', 50000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2103160009', '1', '1', 'upload_files/candidate_tracker/12501991422_ajith resume(2).PDF', NULL, NULL, '2021-03-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Rejected In The Client Round', '2', '2', '0', '1', '1', '0', '2', '2021-03-19', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 11:53:56', 1, '2021-03-16 11:57:08', 0, NULL, 1),
(3848, 'jino jose', '5', '8921593362', '8660245293', 'jinotheone@gmail.com', '1994-06-23', 26, '2', '2', 'jose antony', 'ex.central govt empolye', 48000.00, 2, 3.25, 3.75, 'Bangalore', 'Bangalore', '2103160010', '1', '2', 'upload_files/candidate_tracker/44822015633_Jino Jose_Sales Marketing (3).docx', NULL, NULL, '2021-03-16', 5, '', '3', '8', '2021-03-29', 333036.00, '', '5', '1970-01-01', '1', 'CTC - 333036 With Gross-27753 xxamp TH - 23945', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-16 12:20:05', 7, '2021-03-27 03:46:42', 0, NULL, 1),
(3849, 'Subash', '2', '9361109307', '', 'subash1327@icloud.com', '2000-01-11', 21, '2', '2', 'Ramesh', 'Cement Worker', 30000.00, 1, 0.00, 18000.00, 'Vadapalani', 'Vadapalani, Chennai', '2103160011', '1', '1', 'upload_files/candidate_tracker/31202539511_Subash R.docx', NULL, NULL, '2021-03-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much suits for our Mern Stack profile', '2', '2', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 01:10:52', 50, '2021-03-18 11:18:54', 0, NULL, 1),
(3850, 'mohamed', '2', '8438166578', '', 'Mohamedimran723@gmail.com', '1996-11-22', 24, '2', '2', 'moynudeen', 'talior', 25000.00, 2, 200000.00, 250000.00, 'Trichy', 'Trichy', '2103160012', '1', '2', 'upload_files/candidate_tracker/24484456828_Mohamed_Resume (1).pdf', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'not open for the agreement', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 01:13:29', 1, '2021-03-16 01:19:39', 0, NULL, 1),
(3851, 'Lydia Florence D', '27', '9444352843', '8056049176', 'lydia123daniel@gmail.com', '1998-04-30', 22, '2', '2', 'Daniel Thomas P', 'MTC Driver', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2103160013', '1', '1', 'upload_files/candidate_tracker/88077068976_RESUME.docx', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Show for Client interview', '2', '1', '0', '1', '1', '0', '2', '2021-03-18', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 03:00:40', 1, '2021-03-16 03:27:53', 0, NULL, 1),
(3852, 'Jenish M', '27', '9025273659', '', 'jenishm502@gmail.com', '1998-08-06', 22, '2', '2', 'M.Mahendran', 'Coolie', 86000.00, 2, 0.00, 25000.00, 'Kanyakumari', 'Bangalore', '2103160014', '1', '1', 'upload_files/candidate_tracker/18735787452_jenish resume.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Rejected In The Client Round', '2', '1', '0', '2', '2', '0', '2', '2021-03-23', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 05:13:33', 1, '2021-03-16 05:18:21', 0, NULL, 1),
(3853, 'vignesh s', '6', '8825778248', '', 'contact2vicky0703@gmail.com', '2000-03-07', 21, '2', '2', 'sundarrajan g', 'timber traders', 15000.00, 2, 12000.00, 14000.00, 'chennai', 'chennai', '2103160015', '2', '2', 'upload_files/candidate_tracker/26741058773_Vignesh Resume.doc', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not interested in sales, will not suite for our process.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 05:29:19', 1, '2021-03-16 05:33:24', 0, NULL, 1),
(3854, 'gayathri v', '4', '8925399677', '', 'gayugayathri156@gmail.com', '1998-06-15', 22, '2', '2', 'vijayakumar m', 'private consultant', 15000.00, 1, 13000.00, 15000.00, 'chennai', 'chennai', '2103160016', '2', '2', 'upload_files/candidate_tracker/37789028697_gayathri resume.docx.pdf', NULL, NULL, '2021-03-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 05:45:02', 7, '2021-03-18 10:17:47', 0, NULL, 1),
(3855, 'M. Vignesh', '27', '7708560741', '', 'Vickym3798@gmail.com', '1997-07-03', 23, '2', '2', 'G. Murugan', 'Farmer', 1000.00, 3, 0.00, 15000.00, 'Villupuram', 'Villupuram', '2103160017', '1', '1', 'upload_files/candidate_tracker/2998554026_Resume 8.pdf', NULL, NULL, '2021-03-18', 0, '', '3', '59', '2021-03-22', 96000.00, '', '0', NULL, '2', 'Selected for the client Nalam Health care after 6 months probation - 10K Salary', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 06:15:58', 1, '2021-03-16 06:34:15', 0, NULL, 1),
(3856, 'Balachandar D', '2', '9840737549', '', 'balachandarpriya007@gmail.com', '1997-11-04', 23, '2', '2', 'Dhakshina moorthy', 'Driver', 20000.00, 1, 180000.00, 300000.00, 'Chennai', 'Chennai', '2103160018', '1', '2', 'upload_files/candidate_tracker/65572292700_Resume_Balachandar_Format3.pdf', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Didnxquott Come Back After 2 Days with the confirmation for the service Agreement', '2', '2', '0', '1', '1', '0', '2', '2021-03-19', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 06:58:10', 1, '2021-03-16 07:03:00', 0, NULL, 1),
(3857, 'delliganesh s', '27', '8122773188', '8667495697', 'delliganesh.s.l@gmail.com', '1997-02-24', 24, '2', '2', 'sivanesan', 'business', 30000.00, 1, 0.00, 350000.00, 'chengalpattu', 'chengalpattu', '2103170001', '1', '2', 'upload_files/candidate_tracker/22648824154_Ganesh_Resume.pdf', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Client Round Rejected', '2', '2', '0', '1', '1', '0', '2', '2021-03-22', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 09:58:50', 1, '2021-03-17 12:07:43', 0, NULL, 1),
(3858, 'heera', '22', '9941328902', '', 'heera.viswanathan@gmail.com', '1996-10-05', 24, '2', '1', 'vijayakumar', 'digital marketer', 70000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2103170002', '1', '1', 'upload_files/candidate_tracker/37863855759_heera resume new.docx', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Should check for agreement,sustainability doubt\n', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 10:51:26', 1, '2021-03-17 11:35:29', 0, NULL, 1),
(3859, 'Sivaraj', '17', '9150000391', '9840568999', 'sivaraj0512@gmail.com', '1981-12-05', 39, '2', '1', 'Abirami', 'Working', 45000.00, 0, 600000.00, 700000.00, 'Chennai', 'Chennai', '2103170003', '16', '2', 'upload_files/candidate_tracker/81873587761_Sivaraj resume.docx', NULL, NULL, '2021-03-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 10:55:17', 7, '2021-03-17 11:44:05', 0, NULL, 1),
(3860, 'Aswinkumar M', '6', '9150450392', '6381476277', 'aswinkumar103@gmail.com', '1993-05-27', 27, '2', '1', 'Ranjitha', 'Home maker', 72000.00, 5, 15000.00, 20000.00, 'Sivagangai dist', 'Chennai Ashok nagar', '2103170004', '1', '2', 'upload_files/candidate_tracker/406702234_1615202402105_Aswin sales.doc', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, not active, exp is 18th.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-17 11:05:32', 1, '2021-03-17 11:13:41', 0, NULL, 1),
(3861, 'Karthik. R', '4', '8248556825', '9790934680', 'karthikchandran1997@gmail.com', '1997-09-24', 23, '1', '2', 'G. Ramachandran', 'Associate director', 30000.00, 1, 10000.00, 15000.00, 'Thirumalai nagar, virugambakkam , Koyambedu', 'Thirumalai Nagar, Virugambakkam , Koyambedu', '2103170005', '', '2', 'upload_files/candidate_tracker/24473934221_Karthick_.R(3).pdf', NULL, NULL, '2021-03-17', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales, not interested in sales.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 11:18:54', 1, '2021-03-17 11:23:45', 0, NULL, 1),
(3862, 'Zakir hussain j', '5', '7358082603', '8778560805', 'hussain.zkr31@gmail.com', '1995-10-31', 25, '2', '2', 'Mohammed jakkurudeen', 'Tailor', 30000.00, 1, 21000.00, 25000.00, 'No 5b gandhi st. krishnamoorthy nagar ch 118', 'No 5b gandhi st. Krishnamoorthy nagar ch 118', '2103170006', '1', '2', 'upload_files/candidate_tracker/97253477795_zakir new work resume.docx', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'salary will not suit. exp is high', '5', '2', '0', '1', '1', '0', '2', '2021-03-22', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 11:28:15', 1, '2021-03-17 11:56:55', 0, NULL, 1),
(3863, 'V GAYATHRI', '16', '8610816917', '9710148704', 'gayathri7727@gmail.com', '1991-07-18', 29, '3', '1', 'V RUKMANGATHAN', 'TECHNICIAN', 30000.00, 3, 16000.00, 20000.00, 'No 60/7 KAMRARAJAR NAGAR NERKUNDRAM 600107', 'CHENNAI', '2103170007', '', '2', 'upload_files/candidate_tracker/71766145539_vgayathri.pdf', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for accounts job. comm is avg.', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 11:41:48', 1, '2021-03-17 11:49:17', 0, NULL, 1),
(3864, 'Ghayas basha G', '17', '7358570835', '9789958175', 'ghayas_basha@yahoo.co.in', '1986-10-24', 34, '2', '1', 'Meherunissa', 'Salaried', 10000.00, 2, 32000.00, 35000.00, 'Avadi', 'Alandur', '2103170008', '16', '2', 'upload_files/candidate_tracker/77394479053_updated resume dec 20.docx', NULL, NULL, '2021-03-17', 3, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for our profile\n', '5', '2', '', '1', '1', '', '2', '2021-03-18', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 11:46:12', 8, '2021-03-19 05:06:31', 0, NULL, 1),
(3865, 'Suji D', '16', '6379534050', '', 'sujiglads@gmail.com', '1997-07-22', 23, '3', '2', 'Dhason', 'Mason', 25000.00, 1, 0.00, 15000.00, 'Mulagumoodu, kanyakumari district.', 'Thiruvallur, Chennai.', '2103170009', '', '1', 'upload_files/candidate_tracker/13784765971_suji resume.pdf', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, avg communication. knows basics in excel.', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 12:07:08', 1, '2021-03-17 12:14:09', 0, NULL, 1),
(3866, 'Sindhu', '4', '8111017210', '9150984461', 'sindhu.t1996@gmail.com', '1996-09-29', 24, '4', '2', 'Thiru Maran', 'EEE', 30000.00, 2, 0.00, 12000.00, 'Ambur', 'Nungambakkam', '2103170010', '', '1', 'upload_files/candidate_tracker/31260665436_sindhu.pdf', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, done her physiotheraphy and medical coding course. will move easily, not okay with the bond too. ', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 12:59:28', 1, '2021-03-17 01:05:11', 0, NULL, 1),
(3867, 'Rohit', '4', '7305397036', '6383283042', 'Artisticartist@gmail.com', '1999-03-11', 22, '2', '2', 'Saravanan', 'Fishing', 12000.00, 1, 12000.00, 15000.00, 'No.37,velankanni koil st , Besant Nagar, Chennai', 'No.37,Velankanni Koil St , Besant Nagar, Chennai', '2103170011', '3', '2', 'upload_files/candidate_tracker/8201295240_imgtopdf_generated_1703211233019.pdf', NULL, NULL, '2021-03-17', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will  not suite for any profile. attitude was very bad.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 01:07:38', 1, '2021-03-17 01:14:31', 0, NULL, 1),
(3868, 'Murthuza', '16', '7200306295', '', 'Mmmurthuza.kasim@gmail.com', '1981-12-22', 39, '3', '1', 'Rabiya bushra', 'House wife', 35000.00, 8, 35000.00, 40000.00, 'No11 kutty maistry street chennai 600001', 'Old washermenpet', '2103170012', '', '2', 'upload_files/candidate_tracker/22045559891_Resume_Murthuza (1).docx', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'exp is 30-35k, oral is good but written is below avg.', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 01:27:04', 1, '2021-03-17 01:36:38', 0, NULL, 1),
(3869, '', '0', '9362857713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103170013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-17 01:31:32', 0, NULL, 0, NULL, 1),
(3870, 'Ganesh S', '28', '8056377552', '', 'ganeshsam15@gmail.com', '1996-12-15', 24, '2', '2', 'Sambandam S', 'Asst Manager', 380000.00, 1, 0.00, 300000.00, 'Hosur, Tamilnadu', 'Ambattur,Chennai', '2103170014', '1', '1', 'upload_files/candidate_tracker/22071243636_Ganesh.S.2021.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not fit for our Roles', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 02:54:26', 1, '2021-03-17 03:40:04', 0, NULL, 1),
(3871, '', '0', '8247622695', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103170015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-17 04:37:57', 0, NULL, 0, NULL, 1),
(3872, 'mohana sundaram', '4', '7708801901', '', 'srmohanram_25@yahoo.com', '1993-05-02', 27, '2', '2', 'Gopalakrishnan', 'business', 240000.00, 1, 240000.00, 300000.00, 'chennai', 'chennai', '2103170016', '1', '2', 'upload_files/candidate_tracker/72362138662_Resume_Mohan20201.pdf', NULL, NULL, '2021-03-18', 15, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'left before interview. will come tomorrow.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-17 04:57:08', 1, '2021-03-17 05:01:41', 0, NULL, 1),
(3873, 'A. Shakul Ameedhu', '22', '8680046144', '8610613994', 'shakul3498@gmail.com', '1997-03-06', 24, '2', '2', 'Punithavathy.A', 'Housekeeping', 10000.00, 0, 0.00, 180000.00, 'Pondicherry', 'Chennai (AVADI)', '2103170017', '1', '1', 'upload_files/candidate_tracker/36579123102_resume2021.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate not Interested suitable for digital marketing.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 05:03:43', 1, '2021-03-17 05:17:04', 0, NULL, 1),
(3874, 'Ariharaprasad V', '4', '8778029129', '', 'Fistari19@gmail.com', '1995-11-22', 25, '2', '2', 'Venkatachalam K', 'Teacher', 45000.00, 2, 0.00, 15000.00, 'Mayiladuthurai', 'Tiruvanmiyur', '2103170018', '1', '2', 'upload_files/candidate_tracker/47031671775_ari resume 2021.pdf', NULL, NULL, '2021-03-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-17 05:18:54', 7, '2021-03-20 09:38:46', 0, NULL, 1),
(3875, 'Stephen Raj S', '6', '6380778064', '9498456194', 'stephenrajgeorge231@gmail.com', '1994-04-21', 26, '2', '1', 'Mrs. Deepthi S', 'House Make', 50000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2103170019', '1', '2', 'upload_files/candidate_tracker/15605269232_New Resume.docx', NULL, NULL, '2021-03-18', 0, '', '3', '8', '2021-03-22', 202104.00, '', '6', '2021-03-26', '1', 'Selected For Srikanth Team With CTC - 202104 Gross - 16842 xxamp TH - 16000', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-17 05:35:18', 7, '2021-03-20 06:17:46', 0, NULL, 1),
(3876, '', '0', '8220454462', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103170020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-17 05:50:41', 0, NULL, 0, NULL, 1),
(3877, 'Mohammed Sajidullah faraaz', '27', '8754439138', '', 'faraaz.mohammed.96@gmail.com', '1998-05-04', 22, '2', '2', 'Jabeen', 'House wife', 1.00, 3, 0.00, 300000.00, 'Chennai', 'Chennai', '2103170021', '1', '1', 'upload_files/candidate_tracker/91723828543_1614920229758_faraazcvs1.pdf', NULL, NULL, '2021-03-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 05:59:27', 1, '2021-03-17 06:03:52', 0, NULL, 1),
(3878, 'Thulasi', '27', '6383937309', '', 'Mayathulasi25@gmail.com', '1999-06-25', 21, '2', '2', 'Sivakumar K', 'Driver', 15000.00, 1, 15000.00, 18000.00, 'Poonamalle, chennai', 'Poonamalle, chennai', '2103170022', '1', '2', 'upload_files/candidate_tracker/69594893810_THULASI.S_RESUME .pdf', NULL, NULL, '2021-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 07:20:36', 1, '2021-03-19 06:34:52', 0, NULL, 1),
(3879, 'Karthikeyan M', '27', '9597409138', '', 'nmkarthikeyan94@gmail.com', '1994-06-28', 26, '2', '2', 'No', 'No', 15.00, 0, 0.00, 15000.00, 'thanjavurvallam', 'thanjavurvallam', '2103170023', '1', '1', 'upload_files/candidate_tracker/94226941076_Karthikeyan M.docx', NULL, NULL, '2021-03-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Rejected In The Client Round', '2', '1', '0', '1', '1', '0', '2', '2021-03-22', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 07:41:21', 1, '2021-03-17 07:45:28', 0, NULL, 1),
(3880, 'MOHAN TANESH.J', '4', '8825515896', '', 'mohantanesh007@gmail.com', '1999-04-26', 21, '1', '2', 'VIJAYALAKSHMI', 'NIL', 5000.00, 0, 0.00, 15000.00, 'No 27 annexe 2nd main Road Alwarthirunagar', 'Chennai, Alwarthirunagar', '2103170024', '', '1', 'upload_files/candidate_tracker/49170164832_ResumeBuilder_12_07_2020_12_47_24_PM.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'not suitable for this profile', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 10:05:53', 1, '2021-04-24 11:13:27', 0, NULL, 1),
(3881, '', '0', '9094440158', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103170025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-17 10:27:35', 0, NULL, 0, NULL, 1),
(3882, 'MOHAMMED SHAFI. M', '5', '7010435545', '9150609855', 'shafiafiha5@gmail.com', '1994-08-02', 26, '2', '2', 'MOHAMMED RAFI.M', 'Coolie', 12000.00, 1, 18000.00, 25000.00, '768/31, Big Street, Virinchipuram, Vellore- 632104', '768/31, Big Street, Virinchipuram, Vellore-632104', '2103180001', '16', '2', 'upload_files/candidate_tracker/13981138430_32685090237_SHA resume (2).pdf', NULL, NULL, '2021-03-18', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process. has exp in showroom sales.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 09:00:12', 1, '2021-03-18 09:32:48', 0, NULL, 1),
(3883, '', '0', '7339584422', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103180002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-18 09:14:57', 0, NULL, 0, NULL, 1),
(3884, 'manikandan s', '6', '8825813469', '', 'jackmani1304@gmail.com', '1998-04-13', 22, '2', '2', 'shankar', 'driver', 15000.00, 2, 15000.00, 16000.00, 'chennai', 'chennai', '2103180003', '2', '2', 'upload_files/candidate_tracker/12756733446_manikandan resume-converted-converted-converted (2).pdf', NULL, NULL, '2021-03-18', 0, '', '3', '8', '2021-04-29', 192000.00, '', '4', '2021-07-08', '1', 'Selected For Srikanth Team CTC - 192000 With PF PT  ESI Deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 09:35:38', 7, '2021-04-28 06:32:49', 0, NULL, 1),
(3885, 'venkatrameshraj', '17', '8608000076', '', 'venkatrameshraj@gmail.com', '1994-07-06', 26, '2', '2', 'muthukumae', 'usine', 80000.00, 0, 45000.00, 52000.00, 'chennai', 'chennai', '2103180004', '1', '2', 'upload_files/candidate_tracker/7053520378_New resume Venkat .pdf', NULL, NULL, '2021-03-18', 15, '', '3', '8', '2021-04-05', 549600.00, '', '2', '1970-01-01', '1', 'For BDM-HNI Role,CTC - 5,49,600 Gross - 45,800 TH - 41992', '5', '2', '4', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-03-18 10:09:37', 7, '2021-04-01 01:30:10', 0, NULL, 1),
(3886, 'gokul', '6', '9884425023', '', 'Gokulsrt557@gamil.com', '1998-01-12', 23, '2', '2', 'shankar s', 'building contactor', 20000.00, 1, 12000.00, 14000.00, 'chennai', 'chennai', '2103180005', '2', '2', 'upload_files/candidate_tracker/85769025568_GOKUL RESUME.docx', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain for long term. doing his part time jobs. exp salary is also high as fresher.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 10:10:43', 1, '2021-03-18 10:12:54', 0, NULL, 1),
(3887, 'Murali krishnan A', '5', '7305464019', '9176557075', 'amuralikrishnan79@gmail.com', '1979-10-05', 41, '2', '1', 'Parvathy', 'House wife', 40000.00, 1, 34000.00, 40000.00, 'CHENNAI', 'CHENNAI', '2103180006', '16', '2', 'upload_files/candidate_tracker/90408828033_imgtopdf_18032021105940.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for BDM', '5', '2', '0', '1', '1', '0', '2', '2021-03-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 10:34:50', 1, '2021-03-18 11:02:10', 0, NULL, 1),
(3888, 'Vignesh Subramani', '13', '8124045475', '', 'cs.vigneshvj@gmail.com', '1997-08-01', 23, '2', '2', 'Subramani', 'Daily wages worker', 12000.00, 1, 240000.00, 400000.00, 'Arni', 'Arni hi', '2103180007', '1', '2', 'upload_files/candidate_tracker/49708983093_new_sw_res_vj.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustainability issue,high CTC expectation', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-18 10:40:57', 1, '2021-03-18 10:47:18', 0, NULL, 1),
(3889, 'V. CHAKRABANI', '17', '8526792005', '7708022309', 'Chakrabani.ngs@gmail.com', '1981-06-10', 39, '2', '1', 'Guruprasath', 'Studied', 50000.00, 2, 40000.00, 50000.00, 'Pappanchatram. Poonamalli', 'Pappanchatram. Poonamalli', '2103180008', '16', '2', 'upload_files/candidate_tracker/99651423172_CHAKRABANI.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'communication and convincing is not good. will not suite for our process. may try as agent.', '5', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 10:43:03', 1, '2021-03-18 11:09:32', 0, NULL, 1),
(3890, 'nagaraj', '4', '9176241752', '9789943221', 'nagavip91@gmail.com', '1991-03-27', 29, '2', '2', 'murugan', 'farmer', 13000.00, 0, 14000.00, 16000.00, 'dindigul', 'perugudi', '2103180009', '1', '2', 'upload_files/candidate_tracker/70692044953_Arockia _Resume_chennai-converted(1).docx', NULL, NULL, '2021-03-18', 0, '', '3', '8', '2021-03-19', 156000.00, '', '4', '2021-03-24', '2', 'Selected For Muthu Team With CTC - 1,56,000 Gross - 13000 xxamp TH - 12350', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-18 10:49:17', 7, '2021-03-18 06:01:34', 0, NULL, 1),
(3891, 'venkatesh a', '17', '9710450269', '', 'a.venki2010@gmail.com', '1981-09-06', 39, '2', '1', 'malini', 'house wife', 25000.00, 2, 40000.00, 50000.00, 'chennai', 'chennai', '2103180010', '16', '2', 'upload_files/candidate_tracker/91104426589_Venki resume final.docx', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain, has only 5m exp in insurance. 6yr in credit card sales. but will not suite for our process.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 11:12:17', 1, '2021-03-18 12:13:01', 0, NULL, 1),
(3892, 'Suriya Tamilarasan', '27', '7598512198', '7010779770', 'suriyavnt98@gmail.com', '1998-01-12', 23, '2', '2', 'Tamilarasan VN', 'Operator', 30000.00, 1, 185000.00, 350000.00, 'Chennai', 'Chennai', '2103180011', '1', '2', 'upload_files/candidate_tracker/76088671427_Suriya Resume Updated .pdf', NULL, NULL, '2021-03-19', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Got rejected in the client Interview', '2', '1', '0', '1', '1', '0', '2', '2021-03-22', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-18 11:18:09', 1, '2021-03-18 11:28:21', 0, NULL, 1),
(3893, 'sasikumar', '6', '9600427561', '9087501788', 'sasi2dts@gmail.com', '1994-03-24', 26, '2', '2', 'venkatesan', 'painter', 20000.00, 1, 13000.00, 15000.00, 'chennai', 'chennai', '2103180012', '1', '2', 'upload_files/candidate_tracker/63611638396_V.SasiKumar Resume (27).docx', NULL, NULL, '2021-03-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested in FE. salary will not match for cRM', '5', '2', '', '1', '1', '', '2', '2021-03-22', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-18 11:30:11', 8, '2021-03-18 05:28:34', 0, NULL, 1),
(3894, 'selvarani b', '4', '6381652035', '', 'selvaanitha067@gmail.com', '1995-11-21', 25, '1', '2', 'balasubramani', 'farmer', 10000.00, 0, 0.00, 15000.00, 'karur', 'saithapet', '2103180013', '', '2', 'upload_files/candidate_tracker/5444067790_Selvarani Resume.pdf', NULL, NULL, '2021-03-18', 0, 'priyanka', '3', '8', '2021-03-22', 144000.00, '', '3', '2021-03-27', '2', 'Selected For Muthu With CTC  - 1,44,000 And Gross - 12000 TH - 11400', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 12:11:06', 7, '2021-03-18 06:26:40', 0, NULL, 1),
(3895, 'Manoj pradeep.M', '4', '9865036456', '', 'manojpradeep3698@gmail.com', '1998-06-03', 22, '2', '2', 'Malaichamy.N', 'Labour', 15000.00, 1, 0.00, 15000.00, '1/40 East Street, achunthanvayal, Ramanathapuram', '6 Bharathidasan street, Periyar Nagar, Pallikarnai', '2103180014', '1', '1', 'upload_files/candidate_tracker/7091815243_manoj resume 1.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for sales, not speaking up.  fresher.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-18 12:51:07', 1, '2021-03-18 12:58:57', 0, NULL, 1),
(3896, 'Allwin john.a', '4', '8148092940', '', 'allwinjohnj@gmail.com', '1998-06-03', 22, '2', '2', 'Parent', 'House Maintenance', 10000.00, 1, 0.00, 15000.00, '36/29 parthasarathy nagar 2nd Street adambakkam', '36/29 Parthasarathy Nagar 2nd Street Adambakkam', '2103180015', '1', '1', 'upload_files/candidate_tracker/43109507375_allawin john resume.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned up', '1', '1', '0', '1', '1', '0', '2', '2021-03-19', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-18 12:51:53', 1, '2021-03-18 12:57:32', 0, NULL, 1),
(3897, 'R MANI KANDAN', '6', '9092534349', '', 'manikandaraman94@gmail.com', '1994-12-12', 26, '1', '1', 'Rama moorthi', 'Farmer', 15000.00, 1, 13000.00, 15000.00, 'Porur', 'Porur chennai', '2103180016', '', '2', 'upload_files/candidate_tracker/25415628541_ FORD RESUME 2020.pdf', NULL, NULL, '2021-03-18', 0, 'Jobs', '3', '8', '1970-01-01', 176844.00, '', '2', '1970-01-01', '1', 'Selected For Srikanth Team With CTC 176844 Gross - 14737 xxamp TH - 14000', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 01:41:58', 7, '2021-03-20 06:17:28', 0, NULL, 1),
(3898, '', '0', '9176169778', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103180017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-18 02:24:24', 0, NULL, 0, NULL, 1),
(3899, 'Saravanan.P', '17', '9841566918', '9080426606', 'saravananprakash717@gmail.com', '1984-02-04', 37, '2', '1', 'Shalini', 'Salaried', 90000.00, 2, 57000.00, 57000.00, 'Chennai', 'Chennai', '2103180018', '16', '2', 'upload_files/candidate_tracker/84294773789_Resume m21.docx', NULL, NULL, '2021-03-18', 7, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 02:53:04', 1, '2021-03-18 03:04:58', 0, NULL, 1),
(3900, '', '0', '7010023989', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103180019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-18 02:53:46', 0, NULL, 0, NULL, 1),
(3901, 'Karthick Meappan', '5', '9791902062', '', 'mkarthi791@gmail.com', '1995-11-11', 25, '2', '2', 'Meyyappan', 'Chef', 18000.00, 0, 53000.00, 20000.00, 'Chennai', 'Chennai', '2103180020', '1', '2', 'upload_files/candidate_tracker/45796722462_karthick meyyapan resume.docx', NULL, NULL, '2021-03-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process', '5', '1', '', '1', '3', '', '2', '2021-03-20', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-18 03:10:51', 8, '2021-03-19 11:53:31', 0, NULL, 1),
(3902, 'Sangeetha', '13', '7358516854', '7358416854', 'sangeethajeeva20@gmail.com', '1992-08-24', 28, '2', '2', 'R.poongavanam', 'Sales executive', 15000.00, 1, 0.00, 280000.00, 'Chennai', 'Chennai', '2103180021', '16', '1', 'upload_files/candidate_tracker/10922464393_Copy of Sangeetha S resume-1.pdf', NULL, NULL, '2021-03-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 03:21:17', 1, '2021-03-18 03:25:53', 7, '2021-03-18 06:27:23', 0),
(3903, 'Sangeetha', '13', '7358416854', '', 'sangeethajeeva20@gmail.com', '1992-08-24', 28, '2', '1', 'R poongavanam', 'Sales executive', 15000.00, 1, 0.00, 280000.00, 'Chennai', 'Chennai', '2103180022', '16', '1', 'upload_files/candidate_tracker/73126645387_Copy of Sangeetha S resume-1.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable and the expectation is very high', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 03:28:57', 1, '2021-03-18 03:31:37', 0, NULL, 1),
(3904, '', '0', '9360753223', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103180023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-18 04:00:03', 0, NULL, 0, NULL, 1),
(3905, 'Marudhanayagam', '4', '9940418982', '7200448983', 'marudhufoundation07@gmail.com', '1998-04-07', 22, '2', '2', 'Vijaya Lakshmi', 'Personal Secretary', 50000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2103180024', '1', '2', 'upload_files/candidate_tracker/30757365319_Updated CV.pdf', NULL, NULL, '2021-03-19', 1, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-18 04:17:47', 7, '2021-03-20 09:39:04', 0, NULL, 1),
(3906, 'Gokulraj', '13', '7502378710', '9384535556', 'gokulgokul122@gmail.com', '1997-06-04', 23, '2', '2', 'Murugesan', 'Former', 20000.00, 0, 0.00, 16000.00, 'Namakkal', 'T.nagar', '2103180025', '1', '1', 'upload_files/candidate_tracker/12789233295_Resume gokul.pdf', NULL, NULL, '2021-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Exp in Semi voice,Not open for Sales will not fit for IT openings\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-18 04:40:56', 1, '2021-03-22 05:21:14', 0, NULL, 1),
(3907, 'Divagar Selvaraj', '26', '7418604289', '9884428489', 'Sarvanadivakar@gmail.com', '1993-11-13', 27, '2', '2', 'Selvaraj T C', 'Super visor', 30000.00, 1, 310000.00, 450000.00, 'No:4/165,kVK st,Kandanchavadi ,ch-600096', 'No:4/165,KVK St,Kandanchavadi ,Ch-600096', '2103180026', '1', '2', 'upload_files/candidate_tracker/21638427718_updatedResume_Divakar.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'body lang and attitude is not good. communication is okay and written is avg.exp is 28th. one year gap.', '7', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-18 05:23:51', 1, '2021-03-18 05:31:40', 0, NULL, 1),
(3908, '', '0', '7010779770', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103180027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-18 06:26:04', 0, NULL, 0, NULL, 1),
(3909, 'rajeshkumar perumal', '27', '7373245537', '', 'rajesh25rajapks@gmail.com', '1995-03-25', 25, '2', '2', 'kalavathi', 'farmer', 25000.00, 1, 310000.00, 700000.00, 'palani', 'chennai', '2103180028', '1', '2', 'upload_files/candidate_tracker/5263073076_Rajeshkumar_Perumal_7373245537.docx', NULL, NULL, '2021-03-20', 45, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-18 07:01:30', 1, '2021-03-18 07:08:44', 0, NULL, 1),
(3910, 'mariraja', '2', '9080122084', '9047691221', 'marirajayt508@gmail.com', '2000-02-25', 21, '2', '2', 'selvaraj', 'farmer', 200000.00, 1, 0.00, 350000.00, 'chennai', 'kodaikanal', '2103190001', '1', '1', 'upload_files/candidate_tracker/53930765241_MARIRAJA S Resume.docx', NULL, NULL, '2021-03-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 09:53:40', 1, '2021-03-20 06:34:58', 0, NULL, 1),
(3911, 'Lathika.j', '4', '9551980582', '', 'Lathika.k1992@gmail.com', '1992-10-03', 28, '2', '2', 'James', 'n', 10000.00, 1, 18000.00, 15000.00, 'Neelankarai', 'neelankarai', '2103190002', '16', '2', 'upload_files/candidate_tracker/4694151677_Lathika.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'too long and she is a boxing trainer as well as personal trainer. our office timing will not match. ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 10:08:49', 1, '2021-03-19 11:07:43', 0, NULL, 1),
(3912, 'santhosh muthu', '5', '7395963164', '', 'santhoshni1999@gmail.com', '1999-06-25', 21, '2', '2', 'pandi durai', 'business', 12000.00, 0, 14000.00, 15000.00, 'chennai', 'saligramam', '2103190003', '2', '2', 'upload_files/candidate_tracker/5711628398_Resume SANTHOSH MUTHU.pdf', NULL, NULL, '2021-03-19', 0, '', '3', '8', '2021-04-12', 150000.00, '', '3', '2021-05-04', '2', 'For Gaurav team. With CTC - 1,50,000 Gross - 12500 TH - 11875', '5', '2', '1', '1', '1', '', '2', '2021-04-07', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 10:16:14', 7, '2021-04-11 03:50:35', 0, NULL, 1),
(3913, 'karthick', '6', '8056274155', '', 'karthikaero11@gmail.com', '1991-11-24', 29, '2', '1', 'kumaraguru', 'nil', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2103190004', '2', '1', 'upload_files/candidate_tracker/28148250190_Resume.pdf', NULL, NULL, '2021-03-19', 0, '', '3', '8', '1970-01-01', 164208.00, '', '2', '1970-01-01', '1', 'Selected For Srikanth 2 Yrs Agreement Proposed With CTC - 164208  Gross-13684 TH - 13000', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 10:22:46', 7, '2021-03-20 06:17:16', 0, NULL, 1),
(3914, 'Richard Marian', '6', '9500785408', '', 'richardmarian37@gmail.com', '1994-01-03', 27, '2', '2', 'Ghana sekar', 'AC mechanical', 56000.00, 1, 24000.00, 25000.00, 'Vickramasingapuram', 'Omr murugesan nagar', '2103190005', '16', '2', 'upload_files/candidate_tracker/16994029349_Richard CV (1).pdf', NULL, NULL, '2021-03-19', 30, '', '3', '8', '2021-03-22', 198000.00, '', '4', '2021-08-06', '1', 'Selected With CTC - 198000 Gross - 16500 TH -  15675', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 10:29:50', 7, '2021-03-20 06:16:53', 0, NULL, 1),
(3915, 'Gayathri', '13', '7305331758', '8939266823', 'gayathri5vivek8@gmail.com', '1997-12-05', 23, '2', '2', 'Gopal krishnan', 'Fast food(self business)', 30500.00, 2, 0.00, 12000.00, 'No:14 munavar avenue Pallavaram, Chennai-43', 'No:14 Munavar Avenue Pallavaram, Chennai-43', '2103190006', '16', '1', 'upload_files/candidate_tracker/94551108496_Resume_Gayathri.doc.perfact.docx', NULL, NULL, '2021-03-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability Doubt', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 10:47:17', 7, '2021-03-20 09:39:20', 0, NULL, 1),
(3916, 'arvind raj .m', '6', '8838395310', '', 'arvindaj55@gmail.com', '1998-06-13', 22, '3', '2', 'madasamy', 'driver', 30000.00, 1, 16000.00, 18000.00, 'chennai', 'chenn', '2103190007', '', '2', 'upload_files/candidate_tracker/83136348793_Resume_Arvind.1.doc', NULL, NULL, '2021-03-19', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested in sales. will not handle pressure. will not suite for mIS eng comm. is below avg.', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 11:01:48', 8, '2021-03-19 11:47:05', 0, NULL, 1),
(3917, 'B.RAVIKUMAR', '6', '9884421701', '', 'ravilak12@gmail.com', '1981-06-12', 39, '2', '1', 'Shyamala devi', 'Electronics distributors chennai mount road', 15000.00, 2, 15000.00, 16000.00, 'No 10 SEETHARAM nagar 5th street 1st cross ur', 'Kodungaiyur chennai 600118', '2103190008', '16', '2', 'upload_files/candidate_tracker/38929856039_a-la-carte_pay_channels.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales profile. can try for Agent.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 11:24:14', 1, '2021-03-19 04:18:23', 0, NULL, 1),
(3918, 'SANTHOSHKUMAR.S', '4', '9943589832', '9786020209', 'santhoshsandysn@gmail.com', '1995-10-27', 25, '2', '2', 'SHANMUGAM.R', 'Retirement', 30000.00, 1, 0.00, 18000.00, 'Pondicherry', 'Chennai', '2103190009', '8', '1', 'upload_files/candidate_tracker/68454209244_santhoshkumar_Safety_2_year-converted.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'pronunciation is not clear will not suite for calling and sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 11:31:09', 8, '2021-03-19 04:35:45', 0, NULL, 1),
(3919, 'Bharath Kumar.E', '4', '9080019847', '', 'bharath2000auro@gmail.com', '2000-08-04', 20, '2', '2', 'Elumalai.N', 'Food factory employee', 12000.00, 1, 0.00, 12000.00, 'Chennai', 'Pondacherry', '2103190010', '8', '1', 'upload_files/candidate_tracker/53384522978_bharath reasume.docx', NULL, NULL, '2021-03-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not speaking up and will not suite for calling and sales.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 11:32:10', 8, '2021-03-19 04:34:08', 0, NULL, 1),
(3920, '', '0', '9943589862', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103190011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-19 11:37:59', 0, NULL, 0, NULL, 1),
(3921, 'Pothiraj G', '5', '8056118346', '8668037289', 'pothys1993@gmail.com', '2006-03-19', 0, '2', '1', 'Revathy', 'House wife', 15000.00, 0, 240000.00, 300000.00, 'Chennai', 'Chennai', '2103190012', '1', '2', 'upload_files/candidate_tracker/76783815789_1611115892509Resume_Pothiraj.docx', NULL, NULL, '2021-03-19', 0, '', '3', '8', '2021-03-25', 202104.00, '', '', '1970-01-01', '1', 'Selected For Guru Team With CTC - 202104 Gross - 16842 TH - 16000', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-19 11:47:57', 7, '2021-03-20 09:42:40', 0, NULL, 1),
(3922, 'ABDUL AZEEZ', '20', '9551035508', '8608799455', 'abdulazeez455az@gmail.com', '1994-10-07', 26, '2', '2', 'Mohideen', 'Business', 24000.00, 2, 25000.00, 30000.00, 'CHENNAI', 'CHENNAI', '2103190013', '16', '2', 'upload_files/candidate_tracker/92428454545_Abdul Azeez Resume new.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 11:49:27', 1, '2021-03-19 11:55:17', 0, NULL, 1),
(3923, 'Soniya', '13', '9047578907', '', 'soniyashruthi98@gmail.com', '1998-05-06', 22, '2', '2', 'Parent', 'Farmer', 10000.00, 1, 12000.00, 15000.00, 'Cuddalore', 'Kolathur', '2103190014', '16', '2', 'upload_files/candidate_tracker/84657771178_SONIYA VELAYUTHAM.docx', NULL, NULL, '2021-03-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not fit for our role', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 12:04:59', 1, '2021-03-19 12:30:32', 0, NULL, 1),
(3924, 'R.shalini', '4', '7548853667', '9361141805', 'ravishalu149@gmail.com', '1999-03-14', 22, '3', '2', 'Ravichandran', 'Driver', 10000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Palavakkam', '2103190015', '', '1', 'upload_files/candidate_tracker/32535000476_0_shalu resume3 (1).pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 12:06:44', 1, '2021-03-19 12:28:25', 0, NULL, 1),
(3925, 'Priyanka', '4', '7358308368', '9884928023', 'pappriya319@gmail.com', '1999-04-09', 21, '3', '2', 'Pazhani', 'Coolie', 7000.00, 2, 0.00, 15000.00, 'Cuddalore', 'Mylapore', '2103190016', '', '1', 'upload_files/candidate_tracker/54282190708_AS487229.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, will not suite for calling.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 12:34:05', 1, '2021-03-19 12:42:48', 0, NULL, 1),
(3926, 'Suriya Prakash A', '27', '9566989014', '6369917200', 'Asprakash76@gmail.com', '1999-08-27', 21, '2', '2', 'Arumugam M', 'Cooli', 10000.00, 1, 0.00, 12000.00, 'Manali,Chennai', 'manali,Chennai', '2103190017', '1', '1', 'upload_files/candidate_tracker/42265666703_SP Updated CV.pdf', NULL, NULL, '2021-03-20', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected for Client,Nalam HCIT', '2', '1', '0', '1', '1', '0', '2', '2021-03-22', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 01:47:19', 1, '2021-03-19 01:59:28', 0, NULL, 1),
(3927, 'M.Anbazhagi', '4', '7558121958', '9176907125', 'anbuuus003@gmail.com', '1997-05-23', 23, '2', '2', 'Murugan', 'Corpenter', 45000.00, 4, 13000.00, 16000.00, 'Krishnagiri', 'Kodambakkam', '2103190018', '1', '2', 'upload_files/candidate_tracker/79789813455_ANBAZHAGI-converted-converted-converted(5)-converted-converted.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '1', '', '1', '1', '', '2', '2021-03-22', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-19 01:53:26', 7, '2021-03-19 06:30:04', 0, NULL, 1),
(3928, 'anirudhan k i', '27', '8675167574', '', 'awesomeanirudh3@gmail.com', '1997-12-29', 23, '2', '2', 'iyyappan k', 'bus', 50000.00, 0, 240000.00, 450000.00, 'MADURAI', 'MADURAI', '2103190019', '1', '2', 'upload_files/candidate_tracker/65142063674_Anirudh CV.pdf', NULL, NULL, '2021-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Client rejected in the interview', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 04:32:52', 1, '2021-03-19 04:37:10', 0, NULL, 1),
(3929, '', '0', '7401446869', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103190020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-19 04:54:35', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3930, 'Muniyaraja S', '13', '6383741313', '', 'smuniyaraja98@gmail.com', '1998-04-18', 22, '2', '2', 'Selvaraj N', 'Coolie', 7000.00, 2, 0.00, 15000.00, '211,mela mariamman kovil street devathanam,', 'Sourastra nagar choolaimedu chennai', '2103190021', '1', '1', 'upload_files/candidate_tracker/13399753355_Resume.pdf', NULL, NULL, '2021-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 06:40:25', 1, '2021-03-19 06:48:20', 0, NULL, 1),
(3931, 'Vinitha', '27', '8760743916', '', 'vinithamecit2017@gmail.com', '1995-03-08', 26, '2', '2', 'Vivekananthan', 'Power loam', 20000.00, 0, 20000.00, 30000.00, 'Salem', 'Chennai', '2103190022', '1', '2', 'upload_files/candidate_tracker/94178613845_Vinithafinal.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability issue,will not fit for Client position', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 07:53:50', 50, '2021-03-22 03:04:41', 0, NULL, 1),
(3932, 'Kiruthika', '13', '7305160208', '8248278325', 'kiruthika16799@gmail.com', '1999-07-16', 21, '2', '2', 'Subramani N', 'NA', 5000.00, 2, 0.00, 10000.00, 'Virudhunagar', 'Chennai', '2103190023', '1', '1', 'upload_files/candidate_tracker/81873080460_My Resume.pdf', NULL, NULL, '2021-03-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 08:46:51', 1, '2021-03-19 08:50:54', 0, NULL, 1),
(3933, 'S. Sri Sharath Kumar', '27', '9003244060', '8838539306', 'srisharathkumar152000@gmail.com', '2000-05-01', 20, '2', '2', 'K.shankar and S.Dharani', 'Photographer and home maker', 15000.00, 1, 0.00, 12000.00, 'Ambattur', 'Ambattur', '2103190024', '1', '1', 'upload_files/candidate_tracker/50988952476_Sharath Resume.pdf', NULL, NULL, '2021-03-20', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected for Client - Nalam HCIT', '2', '1', '0', '1', '1', '0', '2', '2021-03-22', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 08:48:19', 1, '2021-03-19 08:57:22', 0, NULL, 1),
(3934, 'Monu Kumar', '22', '8056091818', '', 'monukumarlifetoo@gmail.com', '1994-12-22', 26, '2', '2', 'Ajay Kumar', 'Cargo business', 30000.00, 2, 8000.00, 20000.00, 'Sowcarpet', 'Sowcarpet', '2103200001', '1', '2', 'upload_files/candidate_tracker/38782522927_MKR RESUME-converted (1).pdf', NULL, NULL, '2021-03-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication, not open for Agreement,expecting High Salary', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 10:10:25', 7, '2021-03-20 11:45:09', 0, NULL, 1),
(3935, 'Varadharajan', '4', '9283185895', '8838275052', 'varadh1995@gmail.com', '1995-02-09', 26, '3', '2', 'P.kathiresan', 'Pharmacist', 30000.00, 1, 0.00, 10000.00, 'West mambalam', 'West mambalam', '2103200002', '', '1', 'upload_files/candidate_tracker/79262610988_doc.pdf', NULL, NULL, '2021-03-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-20 11:02:24', 1, '2021-03-20 11:13:59', 0, NULL, 1),
(3936, 'Ganesh', '4', '9790996798', '', 'Ganeshthemaker22@gmail.com', '1998-07-12', 22, '3', '2', 'Rajasekar', 'Cabmaker', 17000.00, 1, 12200.00, 17000.00, '9/A apper street vivekananda nagar kodungaiyur', 'Chennai', '2103200003', '', '2', 'upload_files/candidate_tracker/31272050933_7055002MEDL (5).pdf', NULL, NULL, '2021-03-20', 0, '', '8', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'let without attending the interview', '1', '1', '', '1', '1', '', '2', '2021-03-23', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-20 11:04:16', 7, '2021-03-20 01:40:27', 0, NULL, 1),
(3937, 'Elumalai', '4', '8122220019', '', 'elumalaisbi8122@gmail.com', '1999-05-22', 21, '3', '2', 'Muniyammal', 'Dailywages', 10000.00, 1, 0.00, 12000.00, 'Thiruverkadu', 'Thiruverkadu', '2103200004', '', '1', 'upload_files/candidate_tracker/69723066514_lastshared.pdf', NULL, NULL, '2021-03-20', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '2', 'left before interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-20 11:07:36', 1, '2021-03-20 11:51:40', 0, NULL, 1),
(3938, 'Suresh Kumar ch', '4', '7010712542', '7358240540', 'Sureshkumar29894@gmail.com', '1999-08-29', 21, '2', '2', 'Ramanammal', 'Tailoring', 30000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2103200005', '1', '2', 'upload_files/candidate_tracker/79417803724_P1090.pdf', NULL, NULL, '2021-03-20', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not suitable for telesales', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 11:27:56', 1, '2021-03-20 11:43:56', 0, NULL, 1),
(3939, 'Sathish k', '6', '7418852081', '9191761690', 'patersathish24@gmail.com', '1996-01-24', 25, '2', '2', 'kannaiyah k', 'security manager', 15000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2103200006', '1', '1', 'upload_files/candidate_tracker/56121054331_Sathish.k-CV_2021-03-11-012404.pdf', NULL, NULL, '2021-03-20', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'Left Before Interview', '5', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 12:25:10', 1, '2021-03-20 12:35:03', 0, NULL, 1),
(3940, 'mohamed fahath', '6', '0176169778', '9176169778', 'mohamedfahath121@gmail.com', '1999-04-26', 21, '2', '2', 'nazer', 'business', 20000.00, 1, 0.00, 15000.00, 'arumbakkam', 'arumbakkam', '2103200007', '1', '1', 'upload_files/candidate_tracker/20291025544_Fahath resume .doc', NULL, NULL, '2021-03-20', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'Left Before Interview', '5', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 12:30:27', 1, '2021-03-20 12:34:04', 0, NULL, 1),
(3941, 'Manishkumar. P', '6', '9600833695', '9500973795', 'vjmanish7@gmail.com', '1999-04-25', 21, '2', '2', 'Lakshmi. P', 'Homemaker', 20000.00, 2, 0.00, 15000.00, 'Ambur, thirupathur', 'Tambaram, chennai', '2103200008', '1', '1', 'upload_files/candidate_tracker/13370570506_manishkumar Resume.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for rm', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 12:39:53', 50, '2021-03-22 12:00:26', 0, NULL, 1),
(3942, 'Manikandan P', '5', '9087342277', '', 'manisam23k@gmail.com', '1993-02-05', 28, '2', '2', 'NA', 'NA', 25000.00, 1, 230000.00, 300000.00, 'Chennai', 'Chennai', '2103200009', '1', '2', 'upload_files/candidate_tracker/28098037558_MANIKANDAN Updated Dec.pdf', NULL, NULL, '2021-03-20', 15, '', '4', '29', NULL, 0.00, '', '0', NULL, '1', 'recommended for next round', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 01:38:20', 1, '2021-03-20 01:45:19', 0, NULL, 1),
(3943, 'Durai Murugan Selvaraj', '13', '9003491228', '', 'selvaduraimurugan@gmail.com', '1996-06-15', 24, '3', '2', 'Selvaraj A', 'Former', 25000.00, 2, 38000.00, 58000.00, 'Pudukkottai', 'Chennai', '2103200010', '', '2', 'upload_files/candidate_tracker/32991424669_Durai Murugan Selvaraj.pdf', NULL, NULL, '2021-03-20', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'High CTC Expectation holding offer with 58K\n', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-20 02:02:05', 1, '2021-03-20 02:22:44', 0, NULL, 1),
(3944, 'mukesh kumar', '23', '6385621412', '', 'mukeshmani95@gmail.com', '1995-05-24', 25, '2', '2', 'mani', 'farmer', 25000.00, 1, 25000.00, 40000.00, 'thanjore', 'coimbatore', '2103200011', '1', '2', 'upload_files/candidate_tracker/44107953318_Mukesh resume.pdf', NULL, NULL, '2021-03-24', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will Not fit for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-20 02:33:12', 1, '2021-03-20 02:46:53', 0, NULL, 1),
(3945, 'G.saravanan', '4', '8610956995', '', 'Saravanan.g2997@gmail.com', '1995-11-28', 25, '2', '2', 'Ganapathi', 'govt job retirement', 30000.00, 2, 15000.00, 18000.00, 'chennai', 'chennai', '2103200012', '1', '2', 'upload_files/candidate_tracker/34231436144_12345.docx', NULL, NULL, '2021-03-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, exp is 15k will not sustain and got offer in imarqu for 12k', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-20 02:54:03', 1, '2021-03-20 03:00:56', 0, NULL, 1),
(3946, 'Ravi.k', '6', '8939890985', '', 'ksureshravi1999@gmail.com', '1999-06-04', 21, '2', '2', 'Kuppusamy', 'Former', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Velachery', '2103200013', '1', '1', 'upload_files/candidate_tracker/34764830255_IMG_20210320_151011-converted (1)_compressed (1).pdf', NULL, NULL, '2021-03-20', 0, '', '3', '8', '2021-03-22', 164208.00, '', '6', '2021-05-31', '1', 'Selected CTC - 1,64,208 With Gross - 13684 TH - 13000', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-20 02:55:08', 7, '2021-03-20 06:31:20', 0, NULL, 1),
(3947, 'Mukunthan Balaji', '5', '7550024626', '8056124626', 'mukunthanbalaji@yahoo.com', '1992-07-31', 28, '2', '2', 'Balaji', 'Retired', 15000.00, 0, 13000.00, 16000.00, 'Chennai', 'Chennai', '2103200014', '1', '2', 'upload_files/candidate_tracker/89643626741_Resume- March 2021..pdf', NULL, NULL, '2021-03-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 04:26:09', 1, '2021-03-22 11:24:59', 0, NULL, 1),
(3948, 'Samiu. N', '27', '9500532473', '8248791299', 'samiu091997@gmail.com', '1997-10-09', 23, '2', '2', 'Nazeerullah(father) - Aseena(mother)', 'Kooli', 70000.00, 1, 0.00, 16000.00, 'Dharmapuri', 'Dharmapuri', '2103200015', '1', '1', 'upload_files/candidate_tracker/54011660740_samiu resume.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Scheduled client interview and got rejected', '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-20 04:49:16', 1, '2021-03-20 05:34:47', 0, NULL, 1),
(3949, 'Muqthar Ahmed Quraishi J', '2', '7395961967', '9080330563', 'muqthar401@gmail.com', '1998-11-09', 22, '2', '2', 'Jalaluddin Ahmed Quraishi S', 'Electrician', 10000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2103200016', '1', '1', 'upload_files/candidate_tracker/13652440028_Muqthar Resume Fresher.docx', NULL, NULL, '2021-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much active will not fit and sustain for our IT openingsxquot\n', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-20 05:52:35', 1, '2021-03-23 02:44:12', 0, NULL, 1),
(3950, '', '0', '8778087837', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103200017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-20 05:59:38', 0, NULL, 0, NULL, 1),
(3951, 'e. anand', '3', '8056661324', '', 'anandram2401@gmail.com', '1997-09-09', 23, '2', '2', 'r. elumalai', 'car driver', 16000.00, 1, 0.00, 15000.00, 'new perungalathur', 'new perungalathur', '2103200018', '1', '1', 'upload_files/candidate_tracker/92229498646_Anand Resume.pdf', NULL, NULL, '2021-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-20 06:58:27', 1, '2021-03-20 09:56:47', 0, NULL, 1),
(3952, '', '0', '9600184835', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103200019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-20 08:43:37', 0, NULL, 0, NULL, 1),
(3953, 'mohammed abdur razaq', '5', '8248810419', '', 'razaqstar@gmail.com', '2000-09-07', 20, '2', '2', 'asiya banu', 'business', 200000.00, 0, 15000.00, 13000.00, 'ambthur', 'ambthur', '2103210001', '1', '2', 'upload_files/candidate_tracker/53447723547_RESUME RAZAQ EDITED (1).pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, no sales exp. will not sustain.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-21 01:48:41', 1, '2021-03-24 11:23:30', 0, NULL, 1),
(3954, 'Kokila M', '4', '7358491418', '9952957481', 'arthikokila0002@gmail.com', '2000-07-29', 20, '2', '2', 'Mohan', 'Chennai Port trust', 20000.00, 1, 0.00, 12000.00, 'CHENNAI', 'CHENNAI', '2103210002', '1', '1', 'upload_files/candidate_tracker/14190233966_Arthi resume.docx', NULL, NULL, '2021-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'well Prepared script about self intro, other than that she is not speaking.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-21 05:09:55', 1, '2021-03-26 10:43:33', 0, NULL, 1),
(3955, 'Sriram Narayanasamy', '17', '9000011124', '9384676798', 'globalsriram@gmail.com', '1962-06-02', 58, '2', '1', 'Madhumathi', 'Professor', 300000.00, 2, 2100000.00, 2100000.00, 'Chennai', 'Chennai', '2103220001', '16', '2', 'upload_files/candidate_tracker/16257794623_CV Sriram- National Sales Head- Pan India.docx', NULL, NULL, '2021-03-22', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Referred to next round for agency channel', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-22 09:51:44', 1, '2021-03-22 01:19:19', 0, NULL, 1),
(3956, 'G karthick', '6', '9994868093', '9080244930', 'karthickganesh712@gmail.com', '1997-06-25', 23, '2', '2', 'M Ganesan', 'Cheff', 23000.00, 1, 0.00, 10000.00, 'CHENNAI', 'CHENNAI', '2103220002', '1', '1', 'upload_files/candidate_tracker/72801387980_Karthick Resume.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no rsponse', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-22 10:30:16', 50, '2021-03-22 01:14:05', 0, NULL, 1),
(3957, 'sirajuddin', '4', '9003730119', '8675683986', 'msdsiraj1998@gmail.com', '1998-07-23', 22, '2', '2', 'rajamohammed', 'business', 20000.00, 2, 0.00, 17000.00, 'pattukkottai', 'chennai', '2103220003', '1', '1', 'upload_files/candidate_tracker/60860919424_0_0_0_0_mcn9e-lgn3k.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for sales and our process, body language is not good.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-22 11:02:24', 8, '2021-03-22 03:51:01', 0, NULL, 1),
(3958, 'Preethithirumalai', '4', '9047854001', '', 'preethithirumalai24@gmail.com', '1997-07-24', 23, '1', '2', 'Muniyamaal thirumalai', 'Home maker', 15000.00, 2, 15000.00, 18000.00, 'Chengalpet', 'Velachery', '2103220004', '', '2', 'upload_files/candidate_tracker/62619605366_Resume.docx', NULL, NULL, '2021-03-22', 0, 'arunkumar', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not suite for CRM', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-03-22 11:19:47', 50, '2021-03-22 03:12:35', 0, NULL, 1),
(3959, 'Moses V Benz', '28', '9962494782', '', 'mosesbenz800@gmail.com', '2006-03-22', 0, '2', '2', 'Sheeba (Mother\'s name)', 'Teacher', 10000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2103220005', '1', '1', 'upload_files/candidate_tracker/90372871830_Resume 2021 - 1614072726.pdf', NULL, NULL, '2021-03-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-22 11:26:48', 1, '2021-03-22 11:30:18', 0, NULL, 1),
(3960, 'Santhosh Kumar', '3', '9150995604', '9345342579', 'Sandysanthosh5195@gmail.com', '1997-12-25', 23, '2', '2', 'Suresh', 'Coolie', 72000.00, 3, 0.00, 25000.00, 'Chennai', 'Chennai', '2103220006', '1', '2', 'upload_files/candidate_tracker/51350502074_SANTHOSHkumar Resume.docx (1)-converted.pdf', NULL, '1', '2021-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication, Salary Expectation is very high. No understanding. Will  not sustain with us for a long.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-22 11:31:17', 1, '2021-07-27 11:48:10', 0, NULL, 1),
(3961, 'Hariharan', '5', '6380765618', '9840996533', 'candyharis5704@gmail.com', '1998-11-09', 22, '2', '2', 'Padma', 'Road worker', 15000.00, 3, 15000.00, 180000.00, '2/50, Ramnagar 2nd nagar icehouse', 'Same as above', '2103220007', '3', '2', 'upload_files/candidate_tracker/65592201409_Resume - HARI2021.doc', NULL, NULL, '2021-03-22', 0, '', '3', '8', '1970-01-01', 180000.00, '', '2', '1970-01-01', '1', 'Selected With CTC 1,80,000 Gross- 15000,TH - 14250', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-22 11:41:41', 7, '2021-03-24 08:04:43', 0, NULL, 1),
(3962, 'hariharan n', '5', '6380795618', '', 'candyharis5704@gmail.com', '1998-11-09', 23, '2', '2', 'raghu', 'nil', 15000.00, 1, 16000.00, 18000.00, 'chennai', 'chennai', '2103220008', '2', '2', 'upload_files/candidate_tracker/33543346889_RESUME HARI 2 PAGES.docx', NULL, '1', '2022-08-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-22 11:51:49', 1, '2022-08-26 10:23:38', 0, NULL, 1),
(3963, 'Faziya fathima', '4', '9884127386', '8870756783', 'ayishabanu122@gmail.com', '1997-01-12', 24, '1', '2', 'Abdul saleem', 'Tele calar', 18000.00, 2, 18000.00, 20000.00, 'Choolaimedu', 'Choolaimedu', '2103220009', '', '2', 'upload_files/candidate_tracker/32994645485_CURRICULAM VITAE faziya.docx', NULL, NULL, '2021-03-22', 1, '55595', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, exp is 18k. no parents and will not handle pressure.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-22 12:17:08', 1, '2021-03-22 12:27:50', 0, NULL, 1),
(3964, '', '0', '7299610168', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103220010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-22 02:56:03', 0, NULL, 0, NULL, 1),
(3965, 'Subashini', '4', '6374136710', '', 'Subashini1431@gmail.com', '2000-05-31', 20, '2', '2', 'Elumalai', 'Retired', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2103220011', '1', '1', 'upload_files/candidate_tracker/17839643306_E. SUBASHINI(resume)-WPS Office-1-1.doc', NULL, NULL, '2021-03-22', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Searching job for time being', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-22 04:04:50', 50, '2021-03-22 04:23:55', 0, NULL, 1),
(3966, 'Vinothini P', '4', '7358246164', '9361309007', 'vinoheidi22@gmail.com', '1998-02-06', 23, '2', '2', 'Parasuraman V', 'Ex-Service man', 15000.00, 0, 0.00, 15000.00, 'Krishnagiri', 'Chennai', '2103220012', '1', '1', 'upload_files/candidate_tracker/56373003827_Vinothini Resume.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Response', '1', '2', '', '1', '1', '', '2', '2021-03-23', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-22 04:04:52', 50, '2021-03-22 04:27:04', 0, NULL, 1),
(3967, 'Sharukh', '5', '8778787943', '', 'sharukhsadiq@gmail.com', '1995-12-19', 25, '2', '2', 'Sadiq basha', 'Self employed', 10000.00, 1, 18000.00, 25000.00, 'Harur', 'Harur', '2103220013', '1', '2', 'upload_files/candidate_tracker/7626212234_SHARUKH_BE_MBA_3 years .pdf', NULL, NULL, '2021-03-22', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No response', '5', '1', '', '1', '1', '', '2', '2021-03-23', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-22 04:29:01', 50, '2021-03-22 05:07:32', 0, NULL, 1),
(3968, '', '0', '9600053361', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103220014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-22 05:18:04', 0, NULL, 0, NULL, 1),
(3969, '', '0', '6369830684', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103220015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-22 05:41:07', 0, NULL, 0, NULL, 1),
(3970, 'abdul bazith', '4', '8148584768', '', 'abdulbazith9865@gmail.com', '1998-01-07', 23, '2', '2', 'kansul rahman', 'stc', 25.00, 1, 70000.00, 20000.00, 'THOOTHUKUDI', 'medavakkam chennai', '2103230001', '1', '2', 'upload_files/candidate_tracker/13052796882_Abdul Bazith 2).pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no sales exp. exp sal is 18k. he was comfortable in dhubai job.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-23 12:21:45', 1, '2021-04-05 02:51:50', 0, NULL, 1),
(3971, 'Naveen Kumar', '6', '6383458312', '7708807609', 'nk1198069@gmail.com', '2000-10-02', 20, '2', '2', 'Kalpana', 'House wife', 30000.00, 1, 25000.00, 20000.00, 'No69 Sriram nagar paruthipattu avadi', 'No 69 sriramnagar paruthipattu Avadi', '2103230002', '1', '2', 'upload_files/candidate_tracker/99295526986_Naveen resume-2.docx', NULL, NULL, '2021-03-23', 3, '', '3', '8', '1970-01-01', 176844.00, '', '2', '1970-01-01', '1', 'Selected For Ramesh Team With CTC- 176844 Gross - 14737 TH - 14000', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-23 09:58:04', 7, '2021-03-29 05:27:30', 0, NULL, 1),
(3972, 'R.Hariharan', '4', '9710180196', '9840649133', 'hariharanramu1999@gmail.com', '1999-11-27', 21, '3', '2', 'Ramu.V', 'Painter', 100000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2103230003', '', '1', 'upload_files/candidate_tracker/20122515799_resume_HARIHARAN.doc', NULL, NULL, '2021-03-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, will not suite for our process, will not handle pressure.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 10:01:47', 1, '2021-03-23 10:05:40', 0, NULL, 1),
(3973, 'Rohit', '3', '8870133310', '', 'Rohitpaskaran1997@gmail.com', '1997-12-28', 23, '2', '2', 'Paskaran', 'Business', 12000.00, 2, 0.00, 12000.00, 'Chennnai', 'Chennai', '2103230004', '1', '1', 'upload_files/candidate_tracker/72897925334_resume updated rohit.docx', NULL, NULL, '2021-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher and doing freelance not open for Service Agreement', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 10:08:41', 1, '2021-03-23 02:49:36', 0, NULL, 1),
(3974, 'bhuvaneshwaran', '28', '7904842929', '9597598018', 'bhuvaneshthiru96@gmail.com', '1996-06-02', 24, '1', '2', 'thirumooorthy', 'business', 30000.00, 3, 0.00, 25000.00, 'erode', 'chennai', '2103230005', '', '1', 'upload_files/candidate_tracker/92848232178_CV_2021-03-16-054200.pdf', NULL, NULL, '2021-03-23', 0, '66667', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Content is not up to the mark and not Much good in analytical', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 10:14:56', 1, '2021-03-23 10:56:18', 0, NULL, 1),
(3975, 'kabilan s', '4', '9176481071', '', 'kabilpandiyan653@gmail.com', '2000-06-21', 20, '2', '1', 'pandiyan', 'lorry driver', 16000.00, 1, 10000.00, 12000.00, 'chennai', 'thiruvottiyur', '2103230006', '2', '2', 'upload_files/candidate_tracker/24961390800_Kabilan Resume.doc', NULL, NULL, '2021-03-23', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is not fit for telesales voice process ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 10:34:33', 8, '2021-03-23 05:26:32', 0, NULL, 1),
(3976, 'sivaranjani', '4', '9551552841', '', 'sivaranjani1392@gmail.com', '2000-05-30', 20, '2', '2', 'saravanan', 'auto driver', 10000.00, 2, 11000.00, 12000.00, 'chennai', 'chennai', '2103230007', '2', '2', 'upload_files/candidate_tracker/39115468986_SIVARANJANI.S.doc', NULL, NULL, '2021-03-23', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'she is not fit for tele sales', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 10:40:18', 1, '2021-03-23 10:42:00', 0, NULL, 1),
(3977, 'sethu k', '6', '7358176223', '', 'Sethutamil177@gmail.com', '1997-08-20', 23, '2', '2', 'kumar', 'car dealer', 15000.00, 1, 14000.00, 16000.00, 'chennai', 'pattinapakkam', '2103230008', '2', '2', 'upload_files/candidate_tracker/2602858501_Sethu Resume new.doc', NULL, NULL, '2021-03-23', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '2', '0', '1', '1', '0', '2', '2021-03-26', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 10:44:49', 1, '2021-03-23 10:46:42', 0, NULL, 1),
(3978, 'GUNASEELAN S', '6', '8667471530', '7092793026', 'gunaseelan12695@gmail.com', '1995-06-12', 25, '2', '2', 'C SAKER', 'Farmer', 15000.00, 3, 17000.00, 20000.00, 'No 202 , panaiyar {V&P}, cheyyum Tk, chengalpet dt', 'No 8/29 , padbanaban ias st, Thiruvanmiyur', '2103230009', '16', '2', 'upload_files/candidate_tracker/93051953587_GUNA Resume .docx', NULL, NULL, '2021-03-23', 0, '', '5', '20', NULL, 0.00, '', '0', NULL, '1', 'Profile Experience doesnxquott add up.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 10:51:00', 1, '2021-03-23 11:00:03', 0, NULL, 1),
(3979, 'S suvetha', '4', '9677415616', '7305250329', 'suvepriyaa@gmail.com', '1996-02-11', 25, '4', '1', 'R pradeep', 'Working in cargoo', 30000.00, 2, 0.00, 12000.00, 'Adambakkam', 'Adambakkam', '2103230010', '', '1', 'upload_files/candidate_tracker/68557355174_WHATSAPP_CC.pdf', NULL, NULL, '2021-03-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 11:07:19', 1, '2021-03-23 11:44:26', 0, NULL, 1),
(3980, 'Suresh C', '7', '9710388982', '8939063995', 'chandransuresh82@gmail.com', '1999-08-03', 21, '2', '2', 'Chandrasekaran D', 'Provisional store', 15000.00, 1, 12000.00, 16000.00, 'Oldwashemenpet', 'Oldwashemenpet', '2103230011', '1', '2', 'upload_files/candidate_tracker/19548096028_suresh resume pdf.pdf', NULL, NULL, '2021-03-23', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'wearing  braces. pronunciation is not clear, looking for mF. no sales skill.', '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-23 11:09:57', 1, '2021-03-23 11:17:22', 0, NULL, 1),
(3981, 'Abdul Gani', '6', '7401756003', '', 'abdulaggani@gmail.com', '1995-11-27', 25, '2', '2', 'Fathima', 'House wife', 20000.00, 0, 16000.00, 15000.00, 'Chennai', 'Chennai', '2103230012', '16', '2', 'upload_files/candidate_tracker/82888255207_RESUME-WPS Office agg.pdf', NULL, NULL, '2021-03-23', 0, '', '3', '8', '2021-03-29', 176844.00, '', '3', '2021-04-13', '1', '14737 mctc 14k th for guru team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 11:10:48', 7, '2021-03-27 06:08:31', 0, NULL, 1),
(3982, 'Saranya M', '4', '8072253584', '9884274075', 'Saranya18111994@outlook.com', '1994-11-18', 26, '2', '1', 'Guruprasad', 'Driver', 12000.00, 2, 11000.00, 13000.00, 'Chennai', 'K k nagar', '2103230013', '1', '2', 'upload_files/candidate_tracker/70531376584_Saranya Resume.docx', NULL, NULL, '2021-03-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-23 11:47:38', 7, '2021-03-23 01:02:32', 0, NULL, 1),
(3983, 'd.david', '6', '8098587439', '9345502088', 'davidriderdurairaj@gmail.com', '1996-04-05', 24, '2', '2', 'd.durairaj', 'farmer', 150000.00, 4, 14500.00, 17000.00, 'pudukkottai', 'ambattur padi', '2103230014', '1', '2', 'upload_files/candidate_tracker/66803335241_david new resume 2020-1.pdf', NULL, NULL, '2021-03-23', 30, '', '3', '8', '1970-01-01', 202104.00, '', '2', '1970-01-01', '1', '16k th, 16842 ctc for ramesh team', '5', '1', '1', '1', '3', '1', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-23 12:05:55', 7, '2021-03-29 12:48:15', 0, NULL, 1),
(3984, 'Archana', '13', '7373881168', '7708359523', 'msarchana1996@gmail.com', '1996-09-22', 24, '2', '2', 'Selvaraj', 'Retair Head master', 60.00, 2, 208000.00, 400000.00, 'Thanjavur', 'Chennai', '2103230015', '1', '2', 'upload_files/candidate_tracker/10881682320_ArchanaResume-converted (1).pdf', NULL, NULL, '2021-03-27', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 02:00:19', 1, '2021-03-23 02:13:06', 0, NULL, 1),
(3985, 'Manikandan M', '6', '6383647019', '9600185997', 'Manikandankasthuri5@gmail.com', '1997-10-31', 23, '2', '2', 'Kasthuri M', 'Executive', 20000.00, 2, 19000.00, 20000.00, 'Taramani', 'Taramani', '2103230016', '16', '2', 'upload_files/candidate_tracker/20744748398_MANI NEW RESUME 2.docx', NULL, NULL, '2021-03-23', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not turned up', '5', '1', '', '1', '1', '', '2', '2021-03-30', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 02:32:47', 8, '2021-03-23 05:13:41', 0, NULL, 1),
(3986, 'Sakthivel c', '6', '7708818816', '', 'aksakthi777@gmail.com', '2000-03-10', 21, '2', '2', 'Chandran', 'Plumber', 30000.00, 1, 0.00, 13500.00, 'Pallikaranai', 'Pallikaranai', '2103230017', '1', '1', 'upload_files/candidate_tracker/1933902335_1616469715519Resume_Sakthivel.pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no fluency while speaking, will not suite for calling. no clarity too.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-23 02:48:11', 1, '2021-03-23 03:09:41', 0, NULL, 1),
(3987, 'Srisachin K', '16', '8939748224', '', 'Srisachink@gmail.com', '1997-02-10', 24, '4', '2', 'Kadhiresan V', 'Cab driver', 11500.00, 1, 12000.00, 18451.00, '2/441, Kollapuri Amman St, Mudichur, ch-48', '4/300A, Muthamil nagar, Old Perungalattur, Ch-63', '2103230018', '', '2', 'upload_files/candidate_tracker/67765538396_CV_2021-03-31-023601.pdf', NULL, '2', '2021-05-12', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 02:50:47', 1, '2021-05-11 04:37:27', 0, NULL, 1),
(3988, '', '0', '1234558890', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103230019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-23 02:59:35', 0, NULL, 0, NULL, 1),
(3989, 'AJITH KUMAR P', '6', '8056418752', '7200367727', 'riorockaji0117@gmail.com', '1998-02-17', 23, '2', '2', 'G PERUMAL', 'Farmer', 15000.00, 2, 28000.00, 30000.00, 'MEDAVAKKAM', 'AMBATUR', '2103230020', '16', '2', 'upload_files/candidate_tracker/6331868739_Resume - AJITH 3.docx', NULL, NULL, '2021-03-23', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'gave a negative feedback insurance. will not suite for our process.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 03:15:54', 8, '2021-03-23 05:15:34', 0, NULL, 1),
(3990, '', '0', '8248335044', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103230021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-23 03:23:59', 0, NULL, 0, NULL, 1),
(3991, 'meshak a', '28', '9176517877', '', 'mmesh580333@gmail.com', '1999-05-05', 21, '2', '2', 'chennai', 'farmer', 20000.00, 1, 20000.00, 20000.00, 'chennai', 'chennai', '2103230022', '1', '2', 'upload_files/candidate_tracker/21361199377_0_A.MESHAK NEW (1) (1) (1).docx', NULL, NULL, '2021-03-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication and not suitable for the role', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 03:38:49', 1, '2021-03-24 12:18:53', 0, NULL, 1),
(3992, 'Vignesh', '6', '8248335044', '9080330563', 'devavignesh203@gmail.com', '1995-08-03', 25, '2', '2', 'Devaraj', 'Painting contractor', 10000.00, 2, 0.00, 13.00, 'Chennai', 'Chennai', '2103230023', '1', '2', 'upload_files/candidate_tracker/75729810767_5212256.pdf', NULL, NULL, '2021-03-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'low voice, looking for non voice, exp about the phone was good but not satisfied with his profile, ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-23 03:43:56', 7, '2021-03-23 04:19:29', 0, NULL, 1),
(3993, 'Monish.k', '6', '7449290234', '', 'monishkumar005@gmail.com', '1999-05-23', 21, '2', '2', 'kumar.m', 'Carpenter', 20.00, 1, 0.00, 13.50, '1/437 Aringar Anna Nagar,4th Street Neelankari.', '1/437 Aringar Anna Nagar,4th Street Neelankari.', '2103230024', '1', '1', 'upload_files/candidate_tracker/11877043670_CamScanner 03-23-2021 16.13.39.pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not join without his friend. bcoz he Referred him. but he is okay for RE.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-23 03:58:55', 50, '2021-03-24 11:24:18', 0, NULL, 1),
(3994, 'Manikandan', '5', '9566244075', '', 'santharaman075@gmail.com', '1990-08-10', 30, '2', '1', 'Lavanya', 'House wife', 30000.00, 0, 17000.00, 25000.00, 'Porur', 'Porur', '2103230025', '1', '2', 'upload_files/candidate_tracker/35431098502_Resume.docx', NULL, NULL, '2021-03-24', 3, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 90days notice. will not suite for RM/RE. has exp but no knowledge. no convincing skill too.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-23 04:22:40', 1, '2021-03-24 12:09:17', 0, NULL, 1),
(3995, '', '0', '7904411909', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103230026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-23 04:46:12', 0, NULL, 0, NULL, 1),
(3996, 'ashwin manickam subramanian', '28', '7708677086', '', 'ashwin.manickam027@gmail.com', '1995-12-31', 25, '2', '2', 'subramanian', 'fresher', 50000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2103230027', '1', '1', 'upload_files/candidate_tracker/13939676738_Ashwin_Manickam_Subramanian_CV.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Local language, Much with Data Science and the expectation is high', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 05:22:56', 1, '2021-03-23 05:26:48', 0, NULL, 1),
(3997, '', '0', '9884706269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103230028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-23 05:32:51', 0, NULL, 0, NULL, 1),
(3998, 'mohammed adeen p', '22', '8870532004', '6382682155', 'mohammedadeen12@gmail.com', '1999-05-12', 21, '2', '2', 'aadil ahmed p', 'businessmen', 10000.00, 2, 0.00, 2.60, 'second street third cross new jalalpet ambur', 'second street third cross new jalalpet ambur', '2103230029', '1', '1', 'upload_files/candidate_tracker/20956745501_Mohammed Adeen P.pdf', NULL, NULL, '2021-03-27', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to interview few  more candidates to find the best out of them.', '2', '1', '', '1', '1', '', '2', '2021-03-31', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 05:43:06', 69, '2021-04-01 11:13:09', 0, NULL, 1),
(3999, 'ramanan', '28', '6380994629', '7871857456', 'ramgee4378@gmail.com', '1999-02-07', 22, '2', '2', 'r.narasimhan', 'driver', 256000.00, 1, 0.00, 300000.00, 'Salem', 'Salem', '2103230030', '1', '1', 'upload_files/candidate_tracker/23424010564_RESUME.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not suits for our Data Analyst Role', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 06:13:25', 1, '2021-03-23 06:54:30', 0, NULL, 1),
(4000, 'Karthik kumaran', '15', '7010545701', '', 'karthikkumaran888@gmail.com', '1998-12-05', 22, '2', '2', 'g.Muthu kumaran', 'buisness', 8000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2103230031', '1', '1', 'upload_files/candidate_tracker/87831702635_mk RESUME.pdf', NULL, NULL, '2021-03-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 09:24:43', 1, '2021-03-23 09:29:36', 0, NULL, 1),
(4001, 'saqib mohammed', '28', '9894187295', '', 'saqibalharab004@gmail.com', '1998-11-02', 22, '2', '2', 'mohammed saleem', 'supervisor', 15000.00, 1, 0.00, 25000.00, 'Vaniyambadi', 'Vaniyambadi', '2103240001', '1', '1', 'upload_files/candidate_tracker/69380845002_Saqib Mohammed_Resume.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Agreement,also not fit much for our DA Role', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 11:32:42', 1, '2021-03-24 11:45:06', 0, NULL, 1),
(4002, 'Sivaraj Krishnan', '26', '9994449201', '', 'sivarajj.k@gmail.com', '1992-06-05', 28, '2', '1', 'Krishnan', 'Formar', 200000.00, 1, 17000.00, 22000.00, 'Chennai', 'Chennai', '2103240002', '1', '2', 'upload_files/candidate_tracker/46085414926_Resume_SIVARAJ.docx', NULL, NULL, '2021-03-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'comm. is poor not even an avg. no knowledge as MIS in previous org.', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-24 11:44:35', 50, '2021-03-24 02:48:40', 0, NULL, 1),
(4003, 'mohammed imran f', '5', '9710895264', '8939183994', 'immu4600@gmail.com', '1996-03-18', 25, '1', '2', 'samdani begum f', 'housewife', 50000.00, 2, 25000.00, 30000.00, 'chennai', 'chennai', '2103240003', '', '2', 'upload_files/candidate_tracker/87556252328_imran F.docx', NULL, NULL, '2021-03-24', 0, '5563', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for Job', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-24 11:51:11', 1, '2021-03-24 12:42:30', 0, NULL, 1),
(4004, 'Boobalan', '16', '9597799288', '', 'boobalan.krce@gmail.com', '1992-08-08', 28, '2', '2', 'Selvam', 'Business', 15000.00, 1, 700000.00, 700000.00, 'Namakkal', 'Chennai', '2103240004', '3', '2', 'upload_files/candidate_tracker/48908904850_1612360488794Resume_Boobalan.pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Communication is below avg. exp sal is 30K+, not that much knowledge as MIS exc. but he has sales exp and not interested in sales.', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-24 11:56:44', 1, '2021-03-24 12:02:22', 0, NULL, 1),
(4005, 'S. Suriyakala', '4', '7339225200', '7708044819', 'Suriya1442000@gmail', '2000-04-14', 20, '2', '2', 'N. Suriyamoorthy', 'Farmer', 5000.00, 2, 0.00, 10000.00, 'Thiruvarur', 'Thiruvallur', '2103240005', '1', '1', 'upload_files/candidate_tracker/34859686569_suriya resum2.pdf', NULL, NULL, '2021-03-24', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-24 11:58:41', 50, '2021-03-24 02:47:36', 0, NULL, 1),
(4006, 'dilshad', '29', '9790217971', '', 'dilshadbegum31@gmail.com', '1997-02-12', 24, '2', '2', 'ramathulla khan', 'rtd.railway employee', 50000.00, 1, 23650.00, 30000.00, 'chennai', 'chennai', '2103240006', '1', '2', 'upload_files/candidate_tracker/63802597507_Dilshad .docx', NULL, NULL, '2021-03-24', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Good in Communication and from the Training field, Reyaz from IT took 2nd Round and rejected in the 3rd round with Syed Reyaz Ahmed - AM ESales', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-03-24 12:05:27', 1, '2021-03-24 12:14:07', 0, NULL, 1),
(4007, 'Shanmugapriyan v', '4', '8056743073', '8610852687', 'vspriyan255@gmail.com', '1999-05-25', 21, '2', '2', 'S.velmurugan', 'Farmer', 8000.00, 2, 0.00, 12000.00, 'THIRUVARUR', 'Thiruvallur', '2103240007', '1', '1', 'upload_files/candidate_tracker/9310051850_sp resume.docx', NULL, NULL, '2021-03-24', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-24 12:06:40', 50, '2021-03-24 02:47:51', 0, NULL, 1),
(4008, 'Priya.R', '4', '6383121562', '', 'Priyarajenthiran2017@gmail.com', '1999-07-05', 21, '2', '2', 'Rajendran.g', 'Farmer', 5000.00, 4, 0.00, 12000.00, 'Nagapatinam', 'Thiruvallur', '2103240008', '1', '1', 'upload_files/candidate_tracker/15940944576_DT20195412078_Resume priya(1).docx', NULL, NULL, '2021-03-24', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-24 12:21:24', 50, '2021-03-24 02:48:21', 0, NULL, 1),
(4009, 'sribalaaji d s', '28', '9176548993', '9962357082', 'balaaji.sri40@gmail.com', '1994-07-21', 26, '2', '2', 'desingh', 'retired', 20000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2103240009', '1', '1', 'upload_files/candidate_tracker/19072271314_CV_SRIBALAAJI_DS.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,Core data Analyst profile,will not sustain for our role', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 12:31:02', 1, '2021-03-24 12:46:06', 0, NULL, 1),
(4010, '', '0', '7397221110', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103240010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-24 12:32:53', 0, NULL, 0, NULL, 1),
(4011, 'guntur Reshma', '29', '6380673569', '', 'resh20596@gmail.com', '1997-01-20', 24, '2', '2', 'GM Kondaiah', 'Ex Servicemen', 600000.00, 1, 23000.00, 30000.00, 'Andha pradesh', 'Mogappair chennai', '2103240011', '1', '2', 'upload_files/candidate_tracker/42970937936_Guntur Reshma.pdf', NULL, NULL, '2021-03-24', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Good in Communication, Same company with Dilshad begum.Sustainability Doubt', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-03-24 12:44:57', 1, '2021-03-24 12:50:21', 0, NULL, 1),
(4012, 'V. Indumathi', '4', '8220537603', '9677219107', 'Vignesh_hema0594@yahoo.com', '1994-08-05', 26, '2', '1', 'B. Vignesh', 'E-publishing', 14500.00, 1, 9500.00, 12000.00, 'Chennai', 'Chennai', '2103240012', '1', '2', 'upload_files/candidate_tracker/84894616710_RESUME.docx', NULL, NULL, '2021-03-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-24 01:09:47', 50, '2021-03-24 02:48:07', 0, NULL, 1),
(4013, 'Vijaysah V R', '28', '9944402042', '6382274728', 'vrvijay525@gmail.com', '1998-07-30', 22, '2', '2', 'Ravisah V G', 'Cosmetic business', 25000.00, 1, 16000.00, 18000.00, 'Kanchipuram', 'Kanchipuram', '2103240013', '1', '2', 'upload_files/candidate_tracker/6367152441_resume vijay 2021 official DA_CV.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '50/50,Interviewed by Reyaz for the 2nd level and got rejected', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 01:32:43', 1, '2021-03-24 01:38:10', 0, NULL, 1),
(4014, 'tamilvannan g', '28', '9786577197', '', 'tamilgtv15@gmail.com', '1997-08-15', 23, '2', '2', 'ganesan', 'salesman in textile shop', 160000.00, 2, 0.00, 260000.00, 'cuddalore', 'adambakkam chennai', '2103240014', '1', '1', 'upload_files/candidate_tracker/82649305958_Tamilvannan_Resume.docx', NULL, NULL, '2021-03-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 01:57:25', 1, '2021-03-24 02:06:02', 0, NULL, 1),
(4015, 'arunkumar', '6', '8939160144', '', 'arunkumarstoner@gmail.com', '2006-03-24', 0, '3', '2', 'rajenderan c', 'retiered irt', 30000.00, 1, 0.00, 20000.00, 'mkb nagar', 'chennai', '2103240015', '', '1', 'upload_files/candidate_tracker/71060236567_Arun- Official Resume-2.pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no clarity in voice. will not suite for sales process, looking for non sales. will not sustain.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-24 02:37:29', 8, '2021-03-24 05:11:29', 0, NULL, 1),
(4016, 'P v sridhar', '4', '9550709348', '9444013552', 'Sridharsidhu39@gmail.com', '1995-06-18', 25, '3', '2', 'Parents', 'Former', 20000.00, 3, 4.00, 19000.00, 'Aravasapattida pallipat thiruvallur', 'Poola street near vesalamma temple tirupati', '2103240016', '', '2', 'upload_files/candidate_tracker/56372001177_Sridhar resume.pdf', NULL, NULL, '2021-03-24', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'language is not good, no clarity in speech, mother Tongue is telugu. no understanding. will not suite for our process.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-24 02:54:54', 1, '2021-03-24 03:09:33', 0, NULL, 1),
(4017, 'M.syed Waseem', '4', '8428606275', '9500153607', 'syedwaseem2704@gmail.com', '2001-04-27', 19, '2', '2', 'L. Syed mahamood', 'Employee', 10000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2103240017', '1', '2', 'upload_files/candidate_tracker/29014470431_Sheerin_Telecaller_EK Infra(3).pdf', NULL, NULL, '2021-03-24', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, low voice, has exp in mobile sales will not suite for our process', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-24 02:56:39', 1, '2021-03-24 03:15:05', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4018, 'Karthikraja K', '28', '9994107709', '', 'karthikraja016@gmail.com', '1997-07-16', 23, '2', '2', 'Kesavan M', 'Jewel appraiser', 150000.00, 1, 0.00, 18000.00, 'Kumbakonam', 'Chennai', '2103240018', '1', '1', 'upload_files/candidate_tracker/3161254547_resume2.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Average Communication,Sustainability doubt', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 03:07:43', 1, '2021-03-24 03:31:23', 0, NULL, 1),
(4019, 'akil mohan', '28', '7358671775', '', 'akilmohan94@gmail.com', '1994-06-19', 26, '2', '2', 'p mohanan', 'business', 50000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2103240019', '1', '1', 'upload_files/candidate_tracker/54974462849_Resume_.docx', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Agreement,Core Data Analyst Will not sustain for our role', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 03:22:46', 1, '2021-03-24 03:31:14', 0, NULL, 1),
(4020, 'vincent powl', '4', '8925222843', '', 'saivincentpowl@gmail.com', '1986-02-12', 35, '2', '1', 'vinu', 'house wife', 20000.00, 0, 17000.00, 17000.00, 'iyyapnthangal', 'iyyapanthangal', '2103240020', '16', '2', 'upload_files/candidate_tracker/89769966080_WhatsApp Image 2021-03-24 at 9.22.09 AM-converted.pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not interested in field sales, will not suite for our process, expt sal is18K which will not suite for CRM', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-24 03:28:51', 1, '2021-03-24 05:08:20', 0, NULL, 1),
(4021, 'Sathish', '6', '9566062829', '8015677937', 'Sathishsha18@gmail.com', '1995-02-05', 26, '2', '2', 'Anand', 'Painter', 12000.00, 1, 15500.00, 16000.00, 'Chennai', 'Poonamallee', '2103240021', '16', '2', 'upload_files/candidate_tracker/56280830897_sha.potx.pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Pronunciation is not clear, mother tounge is sowrashtra. Attitude is not good. tapping the table while taking will not suite for sales profile. has 5yr exp in showroom sales.', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-24 03:32:37', 1, '2021-03-24 03:36:42', 0, NULL, 1),
(4022, 'rahul. r', '22', '9445420016', '8778606331', 'rahulgullu1997@gmail.com', '1997-07-27', 23, '2', '2', 'ramesh. m', 'student', 85000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2103240022', '1', '1', 'upload_files/candidate_tracker/85351729507_Rahul Data science resume new.pdf', NULL, NULL, '2021-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 03:39:45', 1, '2021-03-24 03:55:44', 0, NULL, 1),
(4023, '', '0', '9025647887', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103240023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-24 03:50:32', 0, NULL, 0, NULL, 1),
(4024, '', '0', '8778524657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103240024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-24 03:50:38', 0, NULL, 0, NULL, 1),
(4025, 'S. Steffi Pearl Vinodhini', '28', '8925418924', '9789792739', 'steffipearl8@gmail.com', '1998-04-17', 22, '2', '2', 'Vatsala', 'Banker', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2103240025', '1', '1', 'upload_files/candidate_tracker/37930452633_Steffi Resume Updated (1).pdf', NULL, NULL, '2021-03-25', 0, '', '2', '54', NULL, 0.00, '', '0', NULL, '2', 'Okay, she will back on ist week of apirl', '3', '1', '0', '1', '1', '0', '2', '2021-04-01', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 04:02:37', 1, '2021-03-25 12:29:16', 0, NULL, 1),
(4026, 'Balaji', '28', '9789792739', '', 'balajcivil@gmail.com', '1991-10-04', 29, '2', '1', 'Praveena', 'Sr. Analyst (Health Care - Testing)', 30000.00, 1, 0.00, 30000.00, 'Viluppuram', 'Chennai', '2103240026', '1', '1', 'upload_files/candidate_tracker/46546997269_BalajiArputhanathan_CV.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not suit for our role', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 04:55:42', 1, '2021-03-24 05:25:48', 0, NULL, 1),
(4027, 'deepan raj', '28', '9629577519', '', 'deepanrajprince@gmail.com', '2000-09-03', 20, '2', '2', 's. ravichandran', 'Cooperative Society', 15000.00, 1, 0.00, 20000.00, 'vellore', 'vellore', '2103240027', '1', '1', 'upload_files/candidate_tracker/21435568427_Resume_deepan raj.pdf', NULL, NULL, '2021-03-29', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 05:09:19', 7, '2021-03-29 05:59:18', 0, NULL, 1),
(4028, 'T.ANTO JERIK', '28', '8122243621', '', 'antojerik@yahoo.in', '1993-12-14', 27, '2', '2', 'S.THOMAS', 'PAINTER', 20000.00, 1, 0.00, 17000.00, 'No 66 HARRIS STREET VIRUGAMBAKKAM CHENNAI 92', 'CHENNAI', '2103240028', '1', '1', 'upload_files/candidate_tracker/89502149661_Resume Anto.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication,Very Slow will not fit for our Role', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 05:10:57', 1, '2021-03-24 05:15:32', 0, NULL, 1),
(4029, '', '0', '8667429162', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103240029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-24 05:30:09', 0, NULL, 0, NULL, 1),
(4030, 'dhibarajan.', '2', '7010409269', '', 'dhibarajan2403050@gmail.com', '1997-05-03', 23, '2', '2', 'ramachandran', 'tailor', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2103240030', '1', '1', 'upload_files/candidate_tracker/13332506013_Dhibarajan.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Agreement, also he gpt another Offer', '2', '2', '0', '1', '1', '0', '2', '2021-03-27', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 05:42:18', 1, '2021-03-24 05:50:23', 0, NULL, 1),
(4031, 'shruthi suresh', '28', '9791093780', '7598047650', 'shruthisuresh23@gmail.com', '1998-07-23', 22, '2', '2', 'suresh radhakrishnan', 'service', 200000.00, 1, 0.00, 300000.00, 'Chennai, Tamil Nadu, India', 'Chennai, Tamil Nadu, India', '2103240031', '1', '1', 'upload_files/candidate_tracker/15229980541_Shruthi Suresh Resume.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Agreement, Core DA will not sustain for a long', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 07:09:17', 1, '2021-03-24 07:59:25', 0, NULL, 1),
(4032, 'rajalakshmi g', '28', '9842920516', '8778267583', 'raji21infotech@gmail.com', '1995-12-21', 25, '2', '2', 'gopal krishna', 'retired assistant in financial dept', 15.00, 1, 0.00, 3.00, 'Madurai', 'chennai', '2103240032', '1', '1', 'upload_files/candidate_tracker/24786263069_Rajalakshmi.BA_1.pdf', NULL, NULL, '2021-03-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 07:32:32', 1, '2021-03-24 07:37:11', 0, NULL, 1),
(4033, 'Prakash R', '6', '9840628114', '', 'prakashlucky526@gmail.com', '1994-04-26', 26, '2', '2', 'Nagammal', 'Tellcaller', 35000.00, 2, 0.00, 4.00, 'Chennai', 'Chennai', '2103250001', '1', '2', 'upload_files/candidate_tracker/60161886509_1604411931733_Akilloki (1)-converted.pdf', NULL, NULL, '2021-03-25', 0, '', '3', '8', '1970-01-01', 214728.00, '', '2', '1970-01-01', '2', '17k th 17894 mtc 214728y ctc an for guru team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-25 10:21:10', 7, '2021-03-27 06:08:48', 0, NULL, 1),
(4034, 'JIJEESH KUMAR M', '6', '8129673636', '', 'jijeshjr6@gmail.com', '1994-03-28', 26, '2', '1', 'MAHIMA', 'RPF', 20000.00, 0, 0.00, 25000.00, 'PALAKKAD, KERALA', 'THOUSANDLIGHT, CHENNAI', '2103250002', '16', '2', 'upload_files/candidate_tracker/93706893158_JIJEESH KUMAR. M.docx', NULL, NULL, '2021-03-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'language is not good, has showroom exp in joy alukkas for 3yrs.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 10:30:27', 1, '2021-03-25 10:42:59', 0, NULL, 1),
(4035, 'vigneshwaran', '6', '8056219840', '', 'vignesh28476@gmail.com', '1996-09-04', 24, '2', '2', 'baskaran', 'nil', 10000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2103250003', '2', '1', 'upload_files/candidate_tracker/51910878890_new.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain and will not suite for our process.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 10:32:25', 7, '2021-03-25 04:51:49', 0, NULL, 1),
(4036, 'easwaran', '6', '7338786757', '9791193479', 'veeraeswaran46@gmail.com', '1996-11-16', 24, '2', '2', 'bharathi', 'business', 10000.00, 1, 0.00, 13000.00, 'arumbakkam', 'arumbakkam', '2103250004', '1', '2', 'upload_files/candidate_tracker/93955634294_RESUME (3).doc', NULL, NULL, '2021-03-25', 0, '', '3', '8', '2021-03-29', 156000.00, '', '6', '2021-03-30', '1', '13k ctc and for ramesh team', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-25 10:47:45', 7, '2021-03-27 04:31:47', 0, NULL, 1),
(4037, 's.vignesh', '4', '7871387689', '7708200154', 'vigneshracer37@gmail.com', '2000-12-19', 20, '1', '2', 'shankar', 'officeboy', 15000.00, 0, 10000.00, 14000.00, 'chennai', 'chennai', '2103250005', '', '2', 'upload_files/candidate_tracker/43777623756_vignesg 1.pdf', NULL, NULL, '2021-03-25', 0, 'p1061', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Not at all speaking', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 10:56:38', 1, '2021-03-25 01:34:24', 0, NULL, 1),
(4038, 'Ruban c v', '22', '8754217107', '7358167354', 'rubancv25@gmail.com', '1997-11-28', 23, '2', '2', 'Chitra R.', 'S1,ShriAdinathcomplex,camproad,chennai-600073', 230000.00, 1, 230000.00, 300000.00, 'C11,turkey street,block17,neyveli-607801', 'S1,shriadinathcomplex,camproad,chennai73', '2103250006', '1', '2', 'upload_files/candidate_tracker/88096233391_Ruban_dig.Associate_AmazonDA-1.pdf', NULL, NULL, '2021-03-27', 30, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate not suitable for our preferred role.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-25 11:02:11', 7, '2021-03-27 03:16:49', 0, NULL, 1),
(4039, 'babu a', '5', '9551542834', '', 'babuujockeyy06@gamil.com', '1985-07-08', 35, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 18000.00, 'chennai', 'chennai', '2103250007', '3', '2', 'upload_files/candidate_tracker/24554987663_Adobe Scan Mar 11, 2021.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'he has sales exp but not relevant and will not suite for our process, little bit slow.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 11:51:55', 1, '2021-03-25 11:56:54', 0, NULL, 1),
(4040, 'M.Sheeba', '4', '9566041758', '', 'sheebammu8@gmail.com', '1999-12-18', 21, '3', '2', 'R.Munuswamy', 'Daily wages', 15000.00, 1, 0.00, 10000.00, 'No.78,Thiruvalluvar street,pammal,chennai-600075', 'No.78,Thiruvalluvar street,pammal,chennai-600075', '2103250008', '', '1', 'upload_files/candidate_tracker/9282908205_sheeba new.cv.docx', NULL, NULL, '2021-03-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 11:54:46', 1, '2021-03-25 12:14:08', 0, NULL, 1),
(4041, 'M priya', '4', '6380638656', '7550112908', 'kanniyappanpriya9@gmail.com', '2000-01-12', 21, '3', '2', 'R muthu', 'Daily wages', 15000.00, 2, 0.00, 10000.00, 'Pallavaram', 'Chennai', '2103250009', '', '1', 'upload_files/candidate_tracker/13642453540_DHANALAKSHME Resume.docx', NULL, NULL, '2021-03-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 11:55:17', 1, '2021-03-25 12:07:58', 0, NULL, 1),
(4042, 'Anand Kumar', '5', '9962446244', '9884408007', 'anandkumar.neelamegan@gmail.com', '1988-11-06', 32, '2', '2', 'NEELAMEGAN k', 'Retired', 25.00, 2, 25.00, 32.00, 'Chennai', 'Chennai', '2103250010', '16', '2', 'upload_files/candidate_tracker/90841196521_anandkumar resume.docx', NULL, NULL, '2021-03-25', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very slow and will not suite for our process and will not do calling.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 01:16:48', 1, '2021-03-25 01:23:14', 0, NULL, 1),
(4043, 'R.priya', '21', '7550208453', '9791196839', 'priyaezhilan00@gmail.com', '1996-11-05', 24, '3', '2', 'Saranya', 'Pharmacy', 36000.00, 1, 10000.00, 12000.00, 'Gingee', 'Arumbakkam', '2103250011', '', '2', 'upload_files/candidate_tracker/16712324901_RESUME priya.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'looking for non voice', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 01:38:38', 1, '2021-03-25 01:53:23', 0, NULL, 1),
(4044, 'Suresh R', '28', '6382356233', '9843739535', 'Sureshmba2018@gmail.com', '1996-03-11', 25, '2', '2', 'Radhakrishnan', 'Business', 30000.00, 1, 0.00, 15000.00, 'Dharmauru', 'Chennai', '2103250012', '1', '1', 'upload_files/candidate_tracker/36286002745_Copy of SURESH R.docx', NULL, NULL, '2021-03-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication,will not fit much for our role', '3', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-25 04:27:19', 1, '2021-03-25 04:38:07', 0, NULL, 1),
(4045, '', '0', '9176016430', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103250013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-25 06:23:28', 0, NULL, 0, NULL, 1),
(4046, 'V Sangeetha', '23', '9791096169', '7448956613', 'vjsangithvjsangith5018@gmail.com', '1998-05-21', 22, '2', '2', 'K Vijayakumar V Vasanthi', 'Painting Contractor', 15000.00, 1, 0.00, 15000.00, 'Chennai villivakam', 'Chennai villivakam', '2103250014', '1', '1', 'upload_files/candidate_tracker/83832172077_Sangith Resume.pdf', NULL, NULL, '2021-03-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-25 06:33:11', 1, '2021-03-27 04:31:05', 0, NULL, 1),
(4047, 'taanusree k g', '22', '8754457790', '9080088056', 'tanusreekarthikeyan@gmail.com', '2000-08-03', 20, '2', '2', 'k karthikeyan', 'scientific officer', 90000.00, 1, 0.00, 27000.00, 'baby nagar velachery', 'velachery', '2103250015', '1', '1', 'upload_files/candidate_tracker/53529348453_resume (3).pdf', NULL, NULL, '2021-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'High CTC Exp,Sustainability Doubt', '2', '2', '0', '1', '1', '0', '2', '2021-03-31', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-25 08:41:46', 1, '2021-03-28 06:37:09', 0, NULL, 1),
(4048, 'Jemima wahar', '11', '8056474634', '9003200434', 'Jemima98wahar@gmail.com', '1998-05-02', 22, '2', '2', 'Nabeel Haroon', 'Hr Recruiter', 55000.00, 1, 25000.00, 25000.00, 'Chennai', 'Chennai', '2103250016', '1', '2', 'upload_files/candidate_tracker/66539543312_Resumod-undefined-01-12-2020-12_27.pdf', NULL, NULL, '2021-03-26', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 6m exp but no knowledge and exp is 25k. will not suite for our process.', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-25 09:26:25', 1, '2021-03-25 09:36:12', 0, NULL, 1),
(4049, '', '0', '9884860269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103260001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-26 10:08:25', 0, NULL, 0, NULL, 1),
(4050, 'Mahendran', '17', '9344241793', '9600817957', 'gg.mahendran@gmail.com', '1991-04-16', 29, '2', '1', 'Sangeetha', 'House wife', 15000.00, 0, 35000.00, 32000.00, 'Chennai', 'Chennai', '2103260002', '16', '2', 'upload_files/candidate_tracker/74901142142_Mahendran CV.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very poor lang, will not suite for our process', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 10:09:27', 7, '2021-03-26 11:35:22', 0, NULL, 1),
(4051, 'Gowri V', '4', '7358322875', '9952932893', 'gowrisasi1999@gmail.com', '1999-08-29', 21, '2', '2', 'N.veeraragavan', 'Carpenter', 11000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2103260003', '1', '1', 'upload_files/candidate_tracker/60696736999_gowri.v pdf.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'well prepared script for Interview alone, no practical knowledge, stammering while Speaking', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-26 10:19:58', 7, '2021-03-26 11:34:49', 0, NULL, 1),
(4052, 'Aravind s', '6', '7299392823', '', 'arvind.marshal96@gmail.com', '1996-09-27', 24, '2', '2', 'M.R.SURESH', 'UIIC', 10000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2103260004', '1', '1', 'upload_files/candidate_tracker/37836604004_res-arvindmarshal.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'prefer Backed process. will not suite for our process. will not sustain. worked in insurance but doesnt know any terms', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-26 11:11:40', 1, '2021-03-26 11:15:31', 0, NULL, 1),
(4053, 'Bennith Immanuel', '6', '8939554211', '', 'Bennithimmanuel06@gmail.com', '1999-02-06', 22, '2', '2', 'Muniraj.G', 'Welder', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2103260005', '1', '1', 'upload_files/candidate_tracker/66871690435_Resume-converted.docx', NULL, NULL, '2021-03-26', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested for telecalling.. ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-26 11:14:44', 7, '2021-03-26 12:07:11', 0, NULL, 1),
(4054, 'R. Keerthana', '4', '7708270437', '8220401327', 'Keerthiravi23031999@gmail.com', '1999-03-27', 21, '2', '2', 'P. Ravi', 'Catering service', 10000.00, 1, 0.00, 15000.00, '3/351 menak nagar , tirur post tiruvallur District', '3/351 menak nagar, tirur post tiruvallur District', '2103260006', '1', '1', 'upload_files/candidate_tracker/41736574157_KEERTHANA-converted.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite fro sales process, from thiruvallur. no sales skill.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-26 11:19:01', 7, '2021-03-26 12:08:32', 0, NULL, 1),
(4055, 'Ragavan s', '4', '8667082607', '9751347107', 'ragavsalya78@gmail.com', '1996-05-22', 24, '2', '2', 'Sundharampillai.R', 'Farmer', 40000.00, 1, 10000.00, 12000.00, 'Perambalur', 'Chennai', '2103260007', '1', '2', 'upload_files/candidate_tracker/27414416361_Ragavan_Resume– 01.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'left before 2nd round interview.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-26 11:22:31', 1, '2021-03-26 11:27:59', 0, NULL, 1),
(4056, 'Karthiga', '4', '6382176893', '8248711461', 'karthigakarthi178@gmail.com', '1998-11-30', 22, '2', '2', 'Kashinathan', 'Self employe', 20000.00, 1, 0.00, 15000.00, 'Pudukkottai District', 'Chennai', '2103260008', '16', '1', 'upload_files/candidate_tracker/39768973717_k.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling. fresher.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 12:01:34', 7, '2021-03-26 02:41:43', 0, NULL, 1),
(4057, 'j lavaniya', '13', '7092173419', '', 'lavan4749@gmail.com', '1999-11-21', 21, '2', '2', 'jaganathan', 'driver', 12000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2103260009', '1', '1', 'upload_files/candidate_tracker/24553070946_Lavaniya.docx', NULL, NULL, '2021-03-26', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No response from this candidate.', '2', '2', '', '1', '3', '', '2', '2021-03-29', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-26 12:05:38', 8, '2021-03-26 05:47:15', 0, NULL, 1),
(4058, '', '0', '8939266853', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103260010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-26 12:10:00', 0, NULL, 0, NULL, 1),
(4059, 'Gayathri Gopal', '4', '8939266823', '', 'gayathri5vivek8@gmail.com', '1997-12-05', 23, '2', '2', 'Gopal krishnan', 'Self empolyee', 20000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2103260011', '16', '1', 'upload_files/candidate_tracker/67282772664_Resume_Gayathri.docb.docx', NULL, NULL, '2021-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, will not suite for this profile.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 12:18:08', 1, '2021-03-26 12:22:15', 0, NULL, 1),
(4060, 'Aishwarya kannan', '4', '9840760812', '', 'aishwaryakannan2606@gmail.com', '2001-06-26', 19, '1', '2', 'Lavanya.K', 'Accountant', 10000.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2103260012', '', '1', 'upload_files/candidate_tracker/63566409403_1616738964356_single page.docx', NULL, NULL, '2021-03-26', 0, 'Priyanka', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'too long from vgp, vettuvakani', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 12:34:44', 1, '2021-03-26 12:49:25', 0, NULL, 1),
(4061, 'Mahalakshmi. G', '4', '7305352674', '', 'lakshmi0405maha@gmail.com', '2000-07-05', 20, '1', '2', 'Gopi. G', 'Machnic', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2103260013', '', '1', 'upload_files/candidate_tracker/31767342129_CV_2021-03-25-075502.pdf', NULL, NULL, '2021-03-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 12:36:06', 1, '2021-03-26 12:58:53', 0, NULL, 1),
(4062, 'Praveenkumar', '17', '9600150160', '9600150170', 'praveenkumar0617@gmail.com', '1991-09-07', 29, '2', '1', 'Divya lakshmi', 'House wife', 20000.00, 1, 28000.00, 35000.00, 'West k k nagar', 'West kk nagar', '2103260014', '16', '2', 'upload_files/candidate_tracker/91708078982_0001019020006010925_12172019_01062020 (1).PDF', NULL, NULL, '2021-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain, switched company purely for salary and completely into banking no insurance exp. ', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 12:36:09', 1, '2021-03-26 01:13:45', 0, NULL, 1),
(4063, 'Arunkumar s', '4', '9080417180', '7824022497', 'arunalfredo46@gmail.com', '1999-09-02', 21, '1', '2', 'S lakshmi', 'House wife', 15000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2103260015', '', '1', 'upload_files/candidate_tracker/10610902159_arunkumarconverted.pdf', NULL, NULL, '2021-03-26', 0, 'Priyanka', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'language is not good. will not suite for process.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 12:36:18', 1, '2021-03-26 12:58:41', 0, NULL, 1),
(4064, 'G v suriya', '5', '9677011589', '9344258074', 'Vjsurya97@gmail.com', '1998-11-01', 0, '1', '2', 'G varshini', 'House wife', 50000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2103260016', '', '1', 'upload_files/candidate_tracker/22086391929_Resume.docx', NULL, NULL, '2021-03-26', 0, '55634', '3', '8', '2021-04-16', 321696.00, '', '2', '1970-01-01', '1', 'For Veben Team, With CTC - 3,21,696 Gross - 26808.', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 01:09:33', 7, '2021-04-09 05:18:35', 0, NULL, 1),
(4065, 'v ezhil kumar', '13', '9655750116', '', 'ezhilvelu.v@gmail.com', '1996-06-03', 24, '2', '2', 'v velu', 'weaver', 15000.00, 1, 0.00, 180000.00, 'vellore', 'chennai', '2103260017', '1', '1', 'upload_files/candidate_tracker/42013903920_@ Resume.pdf', NULL, NULL, '2021-03-29', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-26 01:11:33', 7, '2021-03-29 06:00:20', 0, NULL, 1),
(4066, '', '0', '9841168921', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103260018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-26 01:15:18', 0, NULL, 0, NULL, 1),
(4067, 'tripti mudliyar', '17', '9150821202', '7358307050', 'tript.mudliyar@gmail.com', '1997-02-12', 24, '2', '2', 'sujata', 'house wife', 40000.00, 0, 34000.00, 47000.00, 'kolathur', 'pammal', '2103260019', '16', '2', 'upload_files/candidate_tracker/94972866415_Tripti Updated resume 2.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for BDM, Sustainability doubt and into different field', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 02:45:23', 1, '2021-03-26 02:54:18', 0, NULL, 1),
(4068, 'Vimal Singh', '13', '7200775883', '', 'vimalsingh16294@gmail.com', '1994-02-16', 27, '2', '2', 'RAJENDRAN', 'SHOP', 11000.00, 2, 0.00, 15000.00, 'Nagercoil', 'Chennai', '2103260020', '1', '1', 'upload_files/candidate_tracker/40474049539_vimalsinghupdated (2)-converted.pdf', NULL, NULL, '2021-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-26 03:08:33', 1, '2021-03-26 03:13:45', 0, NULL, 1),
(4069, 'Ketzia R', '21', '7305913083', '7871287533', 'ketziah.kj@gmail.com', '1998-03-17', 23, '2', '2', 'Rajendran Antony D', 'Territory Sales Institution', 200000.00, 1, 20000.00, 21000.00, 'Chennai', 'Chennai', '2103260021', '1', '2', 'upload_files/candidate_tracker/84548535619_Ketzia R Resume Update-converted.docx', NULL, NULL, '2021-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-26 03:08:43', 1, '2021-03-26 03:17:45', 0, NULL, 1),
(4070, '', '0', '9884993480', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103260022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-26 11:10:39', 0, NULL, 0, NULL, 1),
(4071, 'santhosh kumar', '6', '8754930483', '', 'santhoshvs0411@gmail.com', '1995-11-04', 25, '2', '1', 'selvam', 'tneb', 12000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2103270001', '2', '1', 'upload_files/candidate_tracker/49765981252_New doc Mar 1, 2021 2.09 PM.pdf', NULL, NULL, '2021-03-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling and sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-27 10:39:33', 1, '2021-03-27 10:42:08', 0, NULL, 1),
(4072, 'KUNIPOGU JASHUVA', '17', '8148363237', '', 'rjjashuva@gmail.com', '1993-07-05', 27, '2', '1', 'Rebakkal', 'Insurance sales advisor', 22000.00, 0, 22000.00, 22000.00, 'Ambattur', 'PALLAVARAM', '2103270002', '1', '2', 'upload_files/candidate_tracker/29740882572_BIO DATA RESUME.docx', NULL, NULL, '2021-03-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for this profile, ', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-27 10:43:16', 1, '2021-03-27 10:51:43', 0, NULL, 1),
(4073, 'Ajith Kumar.M', '6', '9962623046', '', 'ajithchan15@gmail.com', '1996-11-27', 24, '2', '2', 'Ranjith Kumar', 'Xerox shop', 35000.00, 1, 15000.00, 18000.00, 'No: 1, manjakollai street, aminjikarai, Chennai', 'No: 1, Manjakollai Street, Aminjikarai, Chennai', '2103270003', '1', '2', 'upload_files/candidate_tracker/95768075352_Ajith kuma .M.docx', NULL, NULL, '2021-03-27', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'Not intrested', '5', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-27 10:51:03', 1, '2021-03-27 11:00:54', 0, NULL, 1),
(4074, '', '0', '8608135813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103270004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-27 10:54:52', 0, NULL, 0, NULL, 1),
(4075, 'SRINIVASAN M', '4', '8072740438', '9884685751', 'SRINISEENU940@GMAIL.COM', '1998-06-17', 22, '2', '2', 'MURUGAN N', 'AUTO DRIVER', 14000.00, 1, 10000.00, 13000.00, 'VIRUGAMBAKKAM', 'VIRUGAMBAKKAM', '2103270005', '1', '1', 'upload_files/candidate_tracker/28968056917_Srini CV F-converted-converted.docx', NULL, NULL, '2021-03-27', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication skill low', '1', '1', '', '1', '3', '', '1', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-27 10:55:24', 50, '2021-03-27 01:14:14', 0, NULL, 1),
(4076, 'M. Sathish', '4', '7338992812', '7871164120', 'Sathish220rock@gmail.com', '2000-04-12', 20, '2', '2', 'E. Muthiyal', 'Kooli', 15000.00, 1, 11500.00, 13500.00, 'Poonamalle', 'Poonamalle', '2103270006', '1', '2', 'upload_files/candidate_tracker/19863432391_m. sathish.docx', NULL, NULL, '2021-03-27', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for tele sales', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-27 10:56:03', 50, '2021-03-27 01:13:23', 0, NULL, 1),
(4077, '', '0', '9840329032', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103270007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-27 11:24:13', 0, NULL, 0, NULL, 1),
(4078, 'Yuvaraj P', '6', '6382560843', '9087848954', 'yuvar1260@gmail.com', '1999-06-07', 21, '2', '2', 'Purushothaman R', 'Tailor', 10000.00, 2, 11000.00, 15000.00, 'Chennai', 'Chennai', '2103270008', '1', '2', 'upload_files/candidate_tracker/2729003599_Yuva Resume.pdf', NULL, NULL, '2021-03-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no clarity in speech, will not suite for this profile.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-27 12:29:18', 1, '2021-03-27 12:38:07', 0, NULL, 1),
(4079, 'rajesh e', '6', '9940217974', '9176010836', 'rajeshelumalai088@gmail.com', '1988-06-07', 32, '2', '2', 'maharani e', 'housewife', 10000.00, 3, 16000.00, 17000.00, 'chennai', 'chennai', '2103270009', '1', '2', 'upload_files/candidate_tracker/73320908223_rajesh.pdf', NULL, NULL, '2021-03-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 2yr exp in collection exp sal is 17k ', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-27 12:29:31', 1, '2021-03-27 01:27:18', 0, NULL, 1),
(4080, '', '0', '8667868883', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103270010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-27 02:13:44', 0, NULL, 0, NULL, 1),
(4081, 'Vijayaraj M', '23', '9789983096', '7397465234', 'vijaymaharaja6@gmail.com', '1991-04-05', 29, '2', '1', 'Subha Vijayaraj', 'Web Designer', 20000.00, 3, 15000.00, 18000.00, 'Chennai', 'Chennai', '2103270011', '1', '2', 'upload_files/candidate_tracker/59088311407_resume_vj01.doc.docx', NULL, NULL, '2021-03-29', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'He is not good in basic things.', '2', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-27 04:18:06', 1, '2021-03-27 04:23:55', 0, NULL, 1),
(4082, 'j gowthaman', '23', '8778808002', '8428781153', 'sjgowthaman04@gmail.com', '1998-08-04', 22, '2', '2', 'vs jawahar', 'agriculture', 25000.00, 1, 10000.00, 15000.00, 'chennai', 'chennai', '2103270012', '1', '2', 'upload_files/candidate_tracker/55593020330_ReSUME.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for the Agreement Fresher exp 12-15K', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-27 04:37:47', 1, '2021-03-27 07:13:37', 0, NULL, 1),
(4083, 'Suganya K', '28', '8056383017', '9965272069', 'sugikathirvel@gmail.com', '1992-12-11', 28, '2', '2', 'Kathirvel S', 'Sales man', 5000.00, 2, 0.00, 23000.00, 'Kumbakonam', 'Chennai', '2103270013', '1', '2', 'upload_files/candidate_tracker/52316695437_Suganya Kathirvel_Resume.docx', NULL, NULL, '2021-03-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-27 04:53:49', 1, '2021-03-27 05:03:06', 0, NULL, 1),
(4084, 'Mohamed Sidiq A', '13', '9791970076', '9080509336', 'siddiquen87@gmail.com', '1996-02-23', 25, '2', '2', 'Allaudeen', 'Nil', 10000.00, 1, 0.00, 10000.00, 'Tirunelveli', 'Chennai', '2103270014', '1', '1', 'upload_files/candidate_tracker/38290587057_Resume.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Task Partially Completed. He Can Learn Quickly. We Can Consider As A Intern For 1st 3 Months. After That 2.3 Months Should Be Work Here. Not open with  AGreement and the Focus on the pay also', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-27 04:54:38', 1, '2021-03-27 05:01:03', 0, NULL, 1),
(4085, '', '0', '8143179809', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103270015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-27 05:16:34', 0, NULL, 0, NULL, 1),
(4086, 'Mohamed Ashik Ali', '23', '7904124361', '8870374502', '1ashikmohamed@gmail.com', '1998-12-03', 22, '2', '2', 'Abdul Azeez', 'Daily wager', 12000.00, 1, 0.00, 15000.00, 'AVADI', 'AVADI', '2103280001', '1', '1', 'upload_files/candidate_tracker/14493698687_MyResume.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He Committed to come for 2nd level interview ,but no show', '2', '1', '0', '1', '1', '0', '2', '2021-03-30', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-28 11:14:36', 1, '2021-03-28 11:32:16', 0, NULL, 1),
(4087, 'YASWANTH RAJ y', '22', '8825817141', '7092717563', 'yaswanthrajyyr@gmail.com', '1999-02-11', 22, '2', '2', 'Youvaraj S', 'Business', 300000.00, 1, 151000.00, 175000.00, 'Karambakkam, Porur, Chennai - 600116', 'Karambakkam, Porur, Chennai - 600116', '2103280002', '1', '2', 'upload_files/candidate_tracker/33868025013_CV_YASWANTH RAJ.docx', NULL, NULL, '2021-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication will not much fit for our Digital Marketing', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-28 11:14:36', 1, '2021-03-28 11:29:25', 0, NULL, 1),
(4088, 'Afnan Khan', '23', '7299494971', '9940322974', 'afnankhancr7@gmail.com', '1998-04-28', 22, '2', '2', 'suraiya banu', 'house wife', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chenn', '2103280003', '1', '1', 'upload_files/candidate_tracker/57899989384_AFNAN KHAN resume .pdf', NULL, NULL, '2021-03-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Scheduled for 2nd round of Interview, but left without attending the interview ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-28 01:48:19', 7, '2021-03-31 10:07:07', 0, NULL, 1),
(4089, 'Keerthik Perumal', '23', '8778442042', '', 'keerthikperumal1@gmail.com', '1999-06-04', 21, '2', '2', 'Perumal V', 'Cook', 10000.00, 1, 0.00, 325000.00, 'Chennai', 'Chennai', '2103280004', '1', '1', 'upload_files/candidate_tracker/8645245505_Keerthik Perumal\'s Resume.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for the agreement,exp high pay', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-28 03:51:34', 1, '2021-03-28 03:55:30', 0, NULL, 1),
(4090, '', '0', '9940880687', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103290001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-29 09:58:27', 0, NULL, 0, NULL, 1),
(4091, 'dilli babu k', '5', '6380858241', '', 'dillikdilli@gmail.com', '1992-07-04', 28, '2', '2', 'none', 'none', 18.00, 0, 22000.00, 23000.00, 'chennai', 'chennai', '2103290002', '3', '2', 'upload_files/candidate_tracker/59609115500_resume after edit.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for RM profile,', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 10:02:37', 1, '2021-03-29 10:08:08', 0, NULL, 1),
(4092, 'nandhinis', '4', '9790613615', '9445489834', 'nandhini1526@gmail.com', '1995-07-15', 25, '2', '2', 'sampath', 'retired', 17000.00, 2, 14200.00, 16000.00, 'yadhaval street tirusulam', 'chennai', '2103290003', '16', '2', 'upload_files/candidate_tracker/16851266708_NANDHINI 29-03-2021.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for CRM, looking for acc job, will not sustain.expt sal is 15k.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 10:10:07', 1, '2021-03-29 11:16:07', 0, NULL, 1),
(4093, 'Satheesh kumar', '21', '6383317849', '9841741180', 'Satheesh_priyam@yahoo.co.in', '1982-07-13', 38, '2', '1', 'Sumathi', 'House wife', 25000.00, 1, 45000.00, 25000.00, '17, Annai sathya Nagar, Aynavaram, Chennai -23', 'Permanent address is my current location', '2103290004', '1', '2', 'upload_files/candidate_tracker/5215259327_Satheesh - Profile - Admin sep 20(1).docx', NULL, NULL, '2021-03-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for collection exe. previous package is 45k but not interested in sales.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 10:42:07', 7, '2021-03-29 03:51:00', 0, NULL, 1),
(4094, 'tamizhpriyan', '17', '7530049841', '7305936824', 'tamiltamizh16@gmail.com', '1998-05-16', 22, '2', '2', 'aruldass', 'farmer', 20000.00, 1, 20000.00, 26000.00, 'no. joy nagar chrompet', 'chennai', '2103290005', '16', '2', 'upload_files/candidate_tracker/63671989661_tamil.docx.pdf', NULL, NULL, '2021-03-29', 10, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'voice and modulation is not good, will not suite for BDM, no clarity in speech.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 11:15:00', 1, '2021-03-29 11:55:31', 0, NULL, 1),
(4095, 'KANISH RAJIAH D', '4', '9585831392', '8122101655', 'kanishrajiah88@gmail.com', '1998-08-08', 22, '2', '2', 'Durai raju', 'Building construction', 25000.00, 1, 0.00, 13000.00, 'Thanjavur', 'Kandhanchavadi', '2103290006', '1', '1', 'upload_files/candidate_tracker/52121559192_Kanish resume.docx', NULL, NULL, '2021-03-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very slow and Planing to go canada asap, ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 11:24:05', 7, '2021-03-29 03:52:00', 0, NULL, 1),
(4096, 'M. Praisoodan', '4', '9942126912', '6369038652', 'praveen12prai@gmail.com', '1997-09-12', 23, '2', '2', 'P. Manimaran', 'Retd conductor', 13000.00, 1, 0.00, 14000.00, 'Trichy', 'Poonamalee', '2103290007', '1', '1', 'upload_files/candidate_tracker/84559420923_1613362154119Resume_Praisoodan.docx', NULL, NULL, '2021-03-29', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability issue.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 11:50:25', 8, '2021-03-29 04:32:56', 0, NULL, 1),
(4097, 'I.madhumitha', '4', '6380682929', '9786876239', 'madhuilan12@gmail.com', '1998-07-01', 22, '2', '2', 'Mother', 'Security guard', 12000.00, 2, 0.00, 15000.00, 'Trichy', 'Chennai', '2103290008', '1', '1', 'upload_files/candidate_tracker/86413136611_MADHUMITHAA%20I%20New.docx', NULL, NULL, '2021-03-29', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'two person coming for a interview but one person only selected but the selected person also not coming for joining ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 11:55:43', 8, '2021-03-29 04:38:27', 0, NULL, 1),
(4098, 'Pavithra.V', '11', '7358287757', '7550007757', 'pavithravenkateshvg@gmail.com', '1998-09-21', 22, '2', '2', 'Venkatesh', 'Mini door auto driver', 20000.00, 1, 0.00, 15000.00, 'No.23 Tks SHANTHA AVENUE ELLAIAMMAN kovil tvt ch19', 'Chennai l', '2103290009', '1', '1', 'upload_files/candidate_tracker/323907365_Pavithra resume(1).pdf', NULL, NULL, '2021-03-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'planning to do MBA in part time.   she is not very sure about it and the profile.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-29 12:02:18', 50, '2021-03-29 12:11:11', 0, NULL, 1),
(4099, 'Mohamed navas sherif', '6', '9042042829', '8124271988', 'nsherif286@gmail.com', '1997-06-20', 23, '2', '2', 'Abdul Rasheed', 'steel labour', 25000.00, 1, 0.00, 16000.00, '15 111, , UC Colony, kodungaiyur Chennai 600 118', '15 111, , UC Colony, kodungaiyur Chennai 600 118', '2103290010', '1', '2', 'upload_files/candidate_tracker/30254858085_Navas Resume.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NI in bond', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-29 12:07:53', 8, '2021-03-29 04:00:54', 0, NULL, 1),
(4100, '', '0', '9042042819', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103290011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-29 12:20:04', 0, NULL, 0, NULL, 1),
(4101, 'prasanna s', '28', '9788188587', '', 'prasannaps1814@gmail.com', '2000-06-18', 20, '2', '2', 'suresh m', 'civil engin', 30000.00, 1, 0.00, 15000.00, 'coimbatore', 'coimbatore', '2103290012', '1', '1', 'upload_files/candidate_tracker/93442967411_RESUME.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for the agreement,have a plan to go oversees for higher education', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-29 12:21:16', 50, '2021-03-31 12:49:17', 0, NULL, 1),
(4102, 'nagaraj', '4', '8899776544', '', 'rajalakshminandhini07@gmail.com', '2006-03-29', 15, '1', '1', 'murugan', 'business', 25000.00, 2, 25000.00, 26000.00, 'avadi', 'manali', '2103290013', '', '2', 'upload_files/candidate_tracker/44834824359_tamil.docx.pdf', NULL, NULL, '2021-03-30', 0, 'jobs', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 12:24:36', 1, '2021-03-29 12:27:35', 0, NULL, 1),
(4103, 'SUBBIAH M', '11', '9092932449', '9791116989', 'suryamuthu854@gmail.com', '1998-02-24', 23, '3', '2', 'MuthuVeerappan', 'Superviser in engineering consent', 25000.00, 0, 0.00, 15000.00, 'No:197, 1st floor, tnhb, icf colony, Ambattur', 'No:197, 1st Floor, Tnhb, Icf Colony, Ambattur', '2103290014', '', '1', 'upload_files/candidate_tracker/36281316464_resume update 12-03-2021.pdf', NULL, NULL, '2021-03-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 12:47:46', 1, '2021-03-29 12:59:01', 0, NULL, 1),
(4104, 'BALAJI. G', '11', '9940065779', '', 'ji2710bala@gmail.com', '1997-10-27', 23, '3', '2', 'Govindaraj', 'Medical shop employee', 15000.00, 1, 0.00, 15000.00, 'C62 1st main road Annanagar ch-102', 'Chennai', '2103290015', '', '1', 'upload_files/candidate_tracker/60793107259_OTDD CT1 IMP.docx', NULL, NULL, '2021-03-29', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'WILL NOT SUITE FOR HR', '6', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 12:49:54', 1, '2021-03-29 01:05:29', 0, NULL, 1),
(4105, 'Dilli babu', '6', '9787943662', '', 'dillivasu0401@gmail.com', '1999-01-04', 22, '2', '2', 'Vasu.k', 'Kolli', 20000.00, 2, 20000.00, 25000.00, 'No9 pavazhakara street karunguzhi', 'No9 pavazhakara street karunguzhi', '2103290016', '16', '2', 'upload_files/candidate_tracker/12492426202_dilli_babu_resume_2021.docx', NULL, NULL, '2021-03-29', 2, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long from mathuranthagam', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 12:56:57', 8, '2021-03-29 04:34:09', 0, NULL, 1),
(4106, 'Ravi Raghavan', '6', '8056191437', '', 'raviraghavan.v@gmail.com', '1995-07-06', 25, '2', '2', 'Parent', 'Daily Wager', 10000.00, 1, 12000.00, 18000.00, 'Chennai', 'Chennai', '2103290017', '1', '2', 'upload_files/candidate_tracker/79615271892_RAVI RESUME.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not join.', '5', '2', '', '1', '3', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-29 12:58:53', 50, '2021-03-30 11:03:08', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4107, 'N.PERIYASAMY', '20', '9790629203', '8248380275', 'periyasamynadesan98@gmail.com', '1998-06-04', 22, '2', '2', 'M.NADESAN', 'Chennai', 15000.00, 1, 11500.00, 15000.00, 'Kallakurichi', 'Chennai', '2103290018', '1', '2', 'upload_files/candidate_tracker/47508284306_Resume.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for us. ', '5', '1', '0', '1', '1', '0', '2', '2021-04-05', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 01:17:52', 1, '2021-03-29 01:28:13', 0, NULL, 1),
(4108, 'Sathish kumar v', '6', '6383464747', '1111111111', 'sathishkani1329@gmail', '1998-07-13', 22, '2', '2', 'Parents', '000', 30000.00, 2, 0.00, 13000.00, 'NO 16 DEMELLOWS ROAD PATTALAM CHENNAI 600012', '000', '2103290019', '1', '1', 'upload_files/candidate_tracker/25813610108_RESUME 1.docx', NULL, NULL, '2021-03-29', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'left before interview', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 01:20:59', 1, '2021-03-29 01:34:05', 0, NULL, 1),
(4109, '', '0', '6383464746', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103290020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-29 01:36:04', 0, NULL, 0, NULL, 1),
(4110, 'mohammed aqeel a k', '22', '9884244708', '', 'mohammedaqeel005@gmail.com', '1997-07-16', 23, '2', '2', 'khader meeran', 'self occupied', 50000.00, 3, 0.00, 25000.00, 'egmore chennai', 'egmore chennai', '2103290021', '1', '1', 'upload_files/candidate_tracker/65916873231_aqeel resume original MIM.docx', NULL, NULL, '2021-03-31', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'The candidate wonxquott sustain for Long-term', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-29 01:41:10', 1, '2021-03-29 11:07:52', 0, NULL, 1),
(4111, '', '0', '7876543219', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103290022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-29 02:28:08', 0, NULL, 0, NULL, 1),
(4112, '', '0', '7865432189', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103290023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-29 02:54:24', 0, NULL, 0, NULL, 1),
(4113, 'Anupriyankha. S. N', '7', '9361249204', '6379306912', 'pittupapa10@gmail.com', '2001-05-20', 19, '2', '1', 'Nagaraj. M', 'Late', 35000.00, 0, 0.00, 17000.00, 'Triplicane', 'Triplicane', '2103290024', '1', '2', 'upload_files/candidate_tracker/89201257476_Priyankha Resume-30.03.2021.docx', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '6', '2021-11-24', '2', 'not turned up', '7', '2', '', '1', '1', '', '2', '2021-03-31', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 04:19:14', 7, '2021-03-30 06:06:18', 0, NULL, 1),
(4114, '', '0', '7358721232', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103290025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-29 05:03:42', 0, NULL, 0, NULL, 1),
(4115, 'aravind', '22', '9944281775', '', 'maravind154@gmail.com', '1995-07-14', 25, '2', '1', 'murugan', 'farmer', 500.00, 1, 0.00, 20000.00, 'dharmapuri', 'perungudi', '2103290026', '1', '1', 'upload_files/candidate_tracker/32145718438_arvin cv DM.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not  open for SA,will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', '2021-03-31', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-29 06:53:34', 1, '2021-03-29 06:57:00', 0, NULL, 1),
(4116, 'Jaya suriya', '23', '9566247324', '', 'Jayasuriya223@gmail.com', '1998-01-02', 23, '2', '2', 'Suseela', 'Stenographer', 24.00, 1, 0.00, 15000.00, 'Samayapurathu amman koil Street choolaimedu', 'Samayapurathu Amman Koil Street Choolaimedu', '2103290027', '1', '1', 'upload_files/candidate_tracker/39450886367_jaya resume.docx', NULL, NULL, '2021-03-31', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-29 07:40:34', 7, '2021-03-31 04:07:26', 0, NULL, 1),
(4117, 'Aravindhan m', '3', '8778054488', '', 'tailaravind07@gmail.com', '1998-11-25', 22, '2', '2', 'Mani', 'Nil', 20000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2103290028', '1', '1', 'upload_files/candidate_tracker/29117391599_Aravind 2021.pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much knowledge in UI/UX ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-29 10:47:44', 50, '2021-04-20 11:41:56', 0, NULL, 1),
(4118, 'V.Saraswathi', '7', '8189915298', '9514015900', 'hennarose5298@gmail.com', '1998-02-05', 23, '2', '2', 'Koteshwari', 'Mutual fund', 25000.00, 3, 10000.00, 17000.00, 'Royapuram', 'Royapuram', '2103300001', '1', '2', 'upload_files/candidate_tracker/10170012668_Hena Rose.doc', NULL, NULL, '2021-03-30', 15, '', '5', '35', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Telephonic Round Completed, not satisfied, Poor Communication and Industry Knowledge,  ', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 09:27:09', 50, '2021-03-30 09:49:11', 0, NULL, 1),
(4119, 'sathish kumar.r', '23', '7358326363', '', 'sathishezik2508@gmail.com', '1998-08-25', 22, '2', '2', 'shanthi', 'house wife', 10000.00, 0, 0.00, 15000.00, 'tambaram', 'urapakkam', '2103300002', '1', '1', 'upload_files/candidate_tracker/77025290803_sathish resume.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open For The Service Agreement', '2', '2', '', '1', '1', '', '2', '2021-03-31', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 10:08:17', 60, '2021-03-30 02:31:51', 0, NULL, 1),
(4120, 'Nandha Kumar', '23', '7867940511', '', 'nandharaju764@gmail.com', '1999-01-13', 22, '2', '2', 'Narayanan S', 'Court staff (Judicial department)', 25000.00, 1, 15000.00, 25000.00, 'No:78 pillaiyar Kovil street, Thiruvallur.', 'No:78 Pillaiyar Kovil Street, Thiruvallur.', '2103300003', '1', '2', 'upload_files/candidate_tracker/55924139187_Nandha\'s Resume (1).pdf', NULL, NULL, '2021-04-01', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much suitable for UI UX Position, No exp in Javascript, No knowledge related to UX Design - Photoshop/Illustrator', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 10:40:24', 1, '2021-03-30 10:53:31', 0, NULL, 1),
(4121, '', '0', '9710976814', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103300004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-30 10:57:02', 0, NULL, 0, NULL, 1),
(4122, 'Santhosh kumar', '21', '9710978614', '', 'santhosh.221456@gmail.COM', '1995-05-22', 25, '2', '2', 'Selvam', 'Cpcl Employ', 25000.00, 0, 14000.00, 14000.00, 'Manali', 'Manali', '2103300005', '1', '2', 'upload_files/candidate_tracker/79159005043_santhosh resume482.pdf', NULL, NULL, '2021-03-30', 0, '', '3', '8', '2021-04-12', 151584.00, '', '6', '2021-04-13', '1', 'For Collection - 151584 With Gross - 12632,TH - 12000', '3', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-30 11:12:16', 7, '2021-04-11 03:50:55', 0, NULL, 1),
(4123, 'L Leo Joseph', '11', '9962723547', '', 'leojoseph40@gmail.com', '1995-08-21', 25, '2', '2', 'S. A Louis Xavier', 'Ex- Service men', 200000.00, 1, 0.00, 250000.00, 'Tambaram', 'Tambaram', '2103300006', '1', '1', 'upload_files/candidate_tracker/71541953889_LEO CV_2021.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expt is 25k but our Budget was 15k', '6', '1', '', '1', '1', '', '2', '2021-03-31', '2', '8', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 11:14:11', 50, '2021-03-30 11:37:34', 0, NULL, 1),
(4124, 'sarathy G', '4', '7397442721', '9442811064', 'sarathygajendran160@gmail.com', '1998-04-30', 22, '2', '2', 'Gajendran S', 'BE Aeronautical', 15000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2103300007', '1', '1', 'upload_files/candidate_tracker/76223267979_Sarathy G Resume-1.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up. will not suite for crm. from mathuravoyal long distance too.', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 11:18:50', 50, '2021-03-30 11:55:23', 0, NULL, 1),
(4125, 'Akarsha V V', '4', '9442811064', '9042365801', 'akarshavinodh8@gmail.com', '1999-02-15', 22, '2', '2', 'Vimalarani P', 'SSLC', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'chennai', '2103300008', '1', '1', 'upload_files/candidate_tracker/32626575156_Akarsha V V Resume.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very childish and will not suite for our process, ', '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 11:21:14', 1, '2021-03-30 11:53:21', 0, NULL, 1),
(4126, 'abishek p', '5', '9791105850', '9790714780', 'johnabishek89@yahoo.com', '1996-04-19', 24, '2', '2', 'pounraj r', 'unemployed', 60000.00, 3, 23300.00, 35000.00, 'chennai', 'chennai', '2103300009', '1', '2', 'upload_files/candidate_tracker/29276759561_Resume-Abishek-P.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sal expt high', '5', '1', '', '1', '1', '', '2', '2021-03-31', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 11:23:53', 50, '2021-03-30 11:37:50', 0, NULL, 1),
(4127, '', '0', '9840885512', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103300010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-30 11:26:34', 0, NULL, 0, NULL, 1),
(4128, 'Karthick v', '22', '8072632921', '', 'karthickvenkat93366@gmail.com', '1993-11-01', 27, '2', '2', 'Venkatesan k', 'Driver', 15000.00, 2, 23000.00, 26000.00, 'uthiramerur', 'Medavakkam', '2103300011', '1', '2', 'upload_files/candidate_tracker/36752081354_Resume_Karthick.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suits for our Digital Marketing, No Communication not open for the Service Agreement\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 11:42:24', 50, '2021-03-30 11:55:00', 0, NULL, 1),
(4129, 'M. Monisha', '4', '7358247249', '9840304073', 'monishasuresh9999@gmail.com', '1999-09-02', 21, '2', '2', 'Parents', 'Nil', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Tambaram', '2103300012', '1', '1', 'upload_files/candidate_tracker/85009344999_New Doc 2021-03-30 12.04.52_1.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '1', '', '1', '1', '', '2', '2021-03-31', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-30 11:48:04', 7, '2021-03-30 06:06:48', 0, NULL, 1),
(4130, 'Pravya Neysa', '28', '9940082658', '9940826586', 'pravyaneysa06@yahoo.com', '1998-06-30', 22, '2', '2', 'Parent', 'Bussiness', 30000.00, 1, 0.00, 25000.00, 'Periyar street Aminjikarai', 'Periyar street Aminjikarai', '2103300013', '16', '2', 'upload_files/candidate_tracker/27524115573_pravya resume job.docx', NULL, NULL, '2021-03-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Profile Will Not Match For Data Analyst. Will Not Suite For CRM/BDM. No Understanding And Patience. ', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-30 11:57:43', 1, '2021-03-30 12:07:24', 0, NULL, 1),
(4131, 'John Revin I', '4', '9025949599', '9677263527', 'Johnrevin333@gmail.com', '2000-06-12', 20, '2', '2', 'Irudaya Rajan. P', 'Fitter', 15000.00, 1, 0.00, 15000.00, 'Chennai (Royapuram)', 'Chennai(Royapuram)', '2103300014', '1', '1', 'upload_files/candidate_tracker/41484848651_John revin-2.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for acc @ fin,. non voice', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-30 11:59:33', 7, '2021-03-30 06:03:35', 0, NULL, 1),
(4132, 'Mohanraj.D.k', '4', '8248498905', '', 'mohanrajdk13@gmail.com', '2000-05-13', 20, '2', '2', 'Dinakaran.d', 'Car driver', 20000.00, 1, 0.00, 15000.00, 'Chennai (Poonamallee)', 'Chennai (Poonamallee)', '2103300015', '1', '1', 'upload_files/candidate_tracker/51704312248_Dk resume.docx', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for acc xxamp fin. non voice', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-30 12:01:22', 7, '2021-03-30 06:04:48', 0, NULL, 1),
(4133, 'm. yuvaraj', '28', '7845338486', '9884904952', 'yuvarajyuvi058@gmail.com', '1994-03-05', 27, '2', '2', 'v. mohana sundaram', 'flour mill', 12000.00, 1, 20000.00, 18000.00, 'chennai', 'chennai', '2103300016', '1', '2', 'upload_files/candidate_tracker/89833476238_yuvaraj resume .docx', NULL, NULL, '2021-03-30', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'left before interview', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 12:04:44', 50, '2021-03-30 01:12:59', 0, NULL, 1),
(4134, 'M. Monisha', '4', '8358247249', '9840304073', 'Monishasuresh9999@gm', '1999-09-02', 21, '1', '2', 'Parents', 'Nil', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Tambaram', '2103300017', '', '1', 'upload_files/candidate_tracker/93343995519_New Doc 2021-03-30 12.04.52_1.pdf', NULL, NULL, '2021-03-30', 0, 'Jobs', '1', '8', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-30 12:11:29', 1, '2021-03-30 12:20:37', 8, '2021-03-30 04:27:56', 0),
(4135, '', '0', '9750829765', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103300018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-30 12:14:09', 0, NULL, 0, NULL, 1),
(4136, 'Purusothaman', '4', '6379306912', '8681081084', 'purusothaman131199@gmail.com', '1999-11-13', 21, '2', '1', 'sekar.E', 'musician', 25000.00, 1, 0.00, 17000.00, 'triplicane', 'triplicane', '2103300019', '1', '2', 'upload_files/candidate_tracker/7017815623_Purusothaman Resume- 30.3.2021.docx', NULL, NULL, '2021-03-30', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for crm/re. not speaking up and not convincing.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-30 12:20:15', 7, '2021-03-30 06:05:37', 0, NULL, 1),
(4137, 'moghan kumar', '23', '8667817629', '8220305435', 'moghankumar0601@gmail.com', '1999-01-06', 22, '2', '2', 'annamalai', 'govt employee', 22000.00, 1, 0.00, 18000.00, 'tamilnadu', 'Vellore', '2103300020', '1', '1', 'upload_files/candidate_tracker/18695854669_Moghankumar_Resume.pdf', NULL, NULL, '2021-04-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 03:42:20', 1, '2021-03-30 03:52:07', 0, NULL, 1),
(4138, 'SANKAR', '23', '6380268869', '', 'sankarsundaram19@gmail.com', '1998-10-19', 22, '2', '2', 'Somasundaram', 'Farmer', 13000.00, 1, 0.00, 12000.00, 'Tiruchirappalli', 'Chennai', '2103300021', '1', '1', 'upload_files/candidate_tracker/94019748346_Resume_Sankar 111_Format1.pdf', NULL, NULL, '2021-03-31', 0, '', '3', '59', '2021-04-01', 9000.00, '', '', '1970-01-01', '2', 'Selected as an intern for 3 months, after intern will continue with employment and the service agreement for 3.6 yrs. Salary will be confirmed after 3 months of internship', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 03:56:04', 50, '2021-03-31 12:25:46', 0, NULL, 1),
(4139, '', '0', '8220305435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103300022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-30 03:57:44', 0, NULL, 0, NULL, 1),
(4140, '', '0', '9087907657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103300023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-30 04:27:03', 0, NULL, 0, NULL, 1),
(4141, '', '0', '9787383881', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103300024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-30 05:42:03', 0, NULL, 0, NULL, 1),
(4142, 'Ashok paramasivam B', '14', '8526118992', '', 'ashokcva66@gmail.com', '1997-09-27', 23, '2', '2', 'Balaji P', '.', 25000.00, 1, 0.00, 50000.00, 'Chennai', 'Chennai', '2103300025', '1', '1', 'upload_files/candidate_tracker/64204339720_Ashok\'s Resume.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Agreement and the expected pay is very high', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 05:42:30', 1, '2021-03-30 05:45:58', 0, NULL, 1),
(4143, 'Mohamed Salman', '13', '9840200136', '', 'salmanwins@gmail.com', '2000-10-30', 20, '2', '2', 'Abdul Rahman', 'Technican', 10000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2103300026', '1', '1', 'upload_files/candidate_tracker/92468646810_5_6269022917661557112 (2).pdf', NULL, NULL, '2021-03-31', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response From This Candidate.', '2', '2', '0', '1', '1', '0', '2', '2021-04-07', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 05:46:11', 1, '2021-03-31 09:10:46', 0, NULL, 1),
(4144, 'Dinesh', '23', '9003137290', '', 'dineshanbu259@gmail.com', '1997-05-17', 23, '2', '2', 'Anbu', 'Wever', 15000.00, 1, 0.00, 9000.00, 'Arni', 'Arni', '2103300027', '1', '1', 'upload_files/candidate_tracker/58142791354_Wed Mar 31 10:07:28 GMT+05:30 2021.pdf', NULL, NULL, '2021-03-31', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 07:33:16', 7, '2021-03-31 04:07:12', 0, NULL, 1),
(4145, 'Ramya', '23', '9840245360', '', 'ramyakrishnamoorthy32@gmail.com', '1996-05-05', 24, '2', '2', 'Krishnamoorthy', 'Driver', 20000.00, 1, 15000.00, 20000.00, 'Sri Balaji govindha nagar thiruverkadu Chennai 77', 'Chennai', '2103300028', '1', '2', 'upload_files/candidate_tracker/91560384873_ramya-resume.pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Rejected in the System Task by Sathish', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 09:41:17', 1, '2021-03-31 10:53:12', 0, NULL, 1),
(4146, 'Lavanya. P', '13', '9444492606', '8072876655', 'lavanya2441@gmail.com', '2001-04-24', 19, '2', '2', 'S. Prabakaran', 'Technician', 34000.00, 1, 0.00, 10000.00, 'Thiruvannamalai', 'Thiruvannamalai', '2103300029', '1', '1', 'upload_files/candidate_tracker/91136554183_lavanya-BSC ECS-21 resume.docx', NULL, NULL, '2021-03-31', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response From This Candidate.', '2', '2', '0', '1', '1', '0', '2', '2021-04-08', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 10:48:06', 1, '2021-03-30 10:53:59', 0, NULL, 1),
(4147, 'Indhumathi. R', '22', '6383249482', '', 'Indhumathi.Kokila567@gmail.com', '2000-05-19', 20, '2', '2', 'Ramesh. K', 'Interior designer', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2103300030', '1', '1', 'upload_files/candidate_tracker/9287850658_indumathi resume.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'The candidate wonxquott sustain  the long-term', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 10:51:55', 1, '2021-03-31 11:06:49', 0, NULL, 1),
(4148, 'Sreeram', '23', '9789294496', '8124407091', 'Sreeramdurairajan88@gmail.com', '1995-09-02', 25, '2', '2', 'Durai rajan R', 'Health inspector', 15000.00, 1, 0.00, 15000.00, 'Thakkolam', 'Velacherry', '2103300031', '1', '1', 'upload_files/candidate_tracker/26999635929_res pdf.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Already attended for UI,System Task not completed,also not open for Agreement', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 11:38:29', 1, '2021-04-10 02:28:12', 0, NULL, 1),
(4149, 'murugan a', '13', '9361638084', '', 'aravind30495@gmail.com', '1995-04-30', 25, '3', '2', 'anandhan', 'farmer', 6000.00, 1, 0.00, 8000.00, 'villupuram', 'chennai', '2103310001', '', '1', 'upload_files/candidate_tracker/14434488677_Murugan BIO - DATA.pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our Role, No Basic knowledge', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-31 08:27:46', 1, '2021-03-31 10:45:10', 0, NULL, 1),
(4150, 'R.nithya', '7', '9551858203', '', 'sandhiyaraman97@gmail.com', '1997-11-30', 23, '2', '2', 'Kuttiyamma', 'House keeping', 15000.00, 3, 9000.00, 15000.00, 'Mylapore', 'Mylapore', '2103310002', '1', '2', 'upload_files/candidate_tracker/40814068792_Nithya Resume1.pdf', NULL, NULL, '2021-03-31', 15, '', '5', '35', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Telephonic Round Completed, Not Satisfied, Poor Communication And Industry Knowledge, ', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-31 09:23:26', 50, '2021-03-31 09:40:28', 0, NULL, 1),
(4151, '', '0', '9083137290', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 10:08:33', 0, NULL, 0, NULL, 1),
(4152, 'Monalisa s', '4', '9962392382', '6381549317', 'monalisasigamani1999@gmail.com', '1999-12-27', 21, '1', '2', 'Sigamani C', 'Construction worker', 20000.00, 1, 0.00, 12000.00, 'Kalpattu village, kanchipuram district 603401', 'Vysarpadi, Chennai 39', '2103310004', '', '1', 'upload_files/candidate_tracker/5676661570_Monalisa S_Resume_Format16.pdf', NULL, NULL, '2021-03-31', 0, 'Jobs', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'she is not fit for telesales', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-31 10:18:32', 1, '2021-03-31 10:32:59', 0, NULL, 1),
(4153, 'jagadesh.G', '5', '7708408944', '7550144490', 'jagadesh7708408944egattur@gmail.com', '1983-03-07', 38, '2', '1', 'Nandhini', 'House wife', 30000.00, 2, 36000.00, 40000.00, 'Tiruvallur', 'Perambur', '2103310005', '16', '2', 'upload_files/candidate_tracker/72483337416_resume_1615785672580.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process sales. Observation is poor.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-31 10:35:53', 1, '2021-03-31 10:41:58', 0, NULL, 1),
(4154, 'Raj prabhu', '5', '9003090954', '8754696838', 'prabhu97kannan@gmail.com', '1997-01-12', 24, '2', '2', 'Narayanan', 'Auto driver', 20000.00, 1, 24000.00, 28000.00, '84 203 solaiappan street oldwashermenet', '84 203 solaiappan street', '2103310006', '1', '2', 'upload_files/candidate_tracker/76277120461_prabhu resume.docx', NULL, '1', '2021-09-15', 0, '', '3', '59', '2021-10-08', 288000.00, '', '4', '2023-04-29', '1', 'Selected for Raj Team, candidate shared his previous company documents. We offered the same cost what he was getting earlier', '5', '2', '1', '1', '1', '', '2', '2021-10-06', '1', '1', 'Patroniss Link shared to upload the documents', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-03-31 10:45:40', 50, '2021-10-08 10:21:42', 0, NULL, 1),
(4155, 't s ram kumar', '5', '9600528526', '', 'tsramk@gmail.com', '1995-02-26', 26, '2', '2', 'none', 'none', 20000.00, 0, 18000.00, 21000.00, 'chennai', 'chennai', '2103310007', '3', '2', 'upload_files/candidate_tracker/25194144922_ram kumar.pdf', NULL, NULL, '2021-03-31', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-31 10:58:02', 7, '2021-03-31 04:06:43', 0, NULL, 1),
(4156, 'v.kishore kumar', '5', '9952054835', '', 'kishorekumar290587@gmail.com', '1987-05-29', 33, '2', '2', 'b.viswanaathan', 'business', 40000.00, 1, 14000.00, 18000.00, 'govindhan nagar palavakkam chennai', 'Govindhan Nagar Palavakkam Chennai', '2103310008', '1', '2', 'upload_files/candidate_tracker/40947711890_kishore resume new-converted (4).pdf', NULL, NULL, '2021-03-31', 1, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 2yr calling exp, fresher for us, check for RM', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-31 11:03:43', 8, '2021-03-31 01:33:10', 0, NULL, 1),
(4157, 'SAHAYA JENITH. X', '20', '6369429129', '9840726451', 'Crushjenith@gmail.com', '2006-03-31', 0, '2', '2', 'Xavier', 'Fisherman', 10000.00, 2, 0.00, 12000.00, 'Tondiarpet', 'Tondiarpet', '2103310009', '1', '1', 'upload_files/candidate_tracker/32561022396_Resume-2.docx', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'looking for PHP but no knowledge in PHP, with basics. told him to learn and then attend interview later.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-31 11:10:49', 50, '2021-03-31 12:00:56', 0, NULL, 1),
(4158, 'AROKIA MITHUN P.M', '6', '8072840641', '', 'mithun290800@gmail.com', '2006-03-31', 0, '2', '2', 'Martin', 'Transport line', 12000.00, 1, 0.00, 12000.00, 'Tondaiyarpet', 'Tondaiyarpet', '2103310010', '1', '1', 'upload_files/candidate_tracker/64520601400_Resume-2.docx', NULL, NULL, '2021-03-31', 0, '', '3', '8', '2021-04-12', 151584.00, '', '6', '2021-06-04', '1', 'For Syed Team CTC - 1,51,584 Gross - 12632 TH- 12000', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-31 11:10:54', 7, '2021-04-11 03:51:12', 0, NULL, 1),
(4159, 'Mir Irfan Ali', '4', '7397276412', '9514721123', 'mirirfanali901@gmail.com', '1998-01-20', 23, '2', '2', 'Mir Murthuza Ali', 'Driver', 110000.00, 1, 0.00, 10000.00, 'Saidapet, chennai', 'Saidapet,Chennai', '2103310011', '1', '1', 'upload_files/candidate_tracker/13611500445_New Resume.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-31 11:12:42', 50, '2021-03-31 12:04:55', 0, NULL, 1),
(4160, '', '0', '9445488951', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 11:24:08', 0, NULL, 0, NULL, 1),
(4161, 'Sellamurugan', '7', '9751914783', '8682015963', 'sellamurugan1996@gmail.com', '1996-05-24', 24, '2', '2', 'Velayutham', 'Farmer', 10000.00, 2, 11500.00, 15000.00, 'Thiruvarur', 'Chennai', '2103310013', '1', '2', 'upload_files/candidate_tracker/69044241336_sellamurugan new resume.docx', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'poor comm. body language and manner is not good, slow learner. expt is 15k+', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-31 11:32:33', 50, '2021-03-31 11:51:48', 0, NULL, 1),
(4162, 'Logeswari', '16', '9566043883', '', 'logeswaripriya2417@gmail.com', '1994-03-17', 27, '2', '1', 'Pradeep susairaj beski', 'Icici bank', 12000.00, 0, 120000.00, 20000.00, 'Chennai', 'Chennai', '2103310014', '1', '2', 'upload_files/candidate_tracker/1637360904_logi resume.pdf', NULL, NULL, '2021-04-10', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for mis as well crm, actual salary is 10k got Reviced 3m before which is  12k, her expt is 18k. has 1.3yr in Personal loan.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-31 11:36:09', 50, '2021-04-10 12:32:39', 0, NULL, 1),
(4163, 'Rajesh', '4', '8124843543', '', 'rajesh8668sandy@gmail.com', '1998-05-31', 22, '2', '2', 'Vicky', 'E', 20000.00, 2, 0.00, 18000.00, 'Chennai', 'Ennore', '2103310015', '1', '1', 'upload_files/candidate_tracker/67351566869_ARB1A.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling, not interested in sales, no clarity in speech.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-31 11:42:45', 50, '2021-04-16 10:23:05', 0, NULL, 1),
(4164, 'M.Mukila', '4', '6385702593', '', 'mukilamurugaiyan@gmail.com', '1995-07-19', 25, '2', '2', 'R.Murugaiyan', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'Thanjavur-614613', 'Annai ladies hostel, ekkattuthangal', '2103310016', '1', '1', 'upload_files/candidate_tracker/90975754237_1616922728911Resume_Mukila.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for acc xxamp fin. native is thanjavur', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-31 11:56:16', 50, '2021-03-31 12:21:04', 0, NULL, 1),
(4165, 'Arul', '5', '9943759412', '7708381142', 'Varul@gmail.com', '1994-06-20', 26, '2', '2', 'Vedarasu', 'Former', 15000.00, 3, 15000.00, 20000.00, 'Vedaranyam', 'Chennai', '2103310017', '16', '2', 'upload_files/candidate_tracker/44820007939_8982768164_12132.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no knowledge in sales, will not suite for our process, 2yrs in equitas finance. ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-31 12:03:15', 50, '2021-03-31 03:19:58', 0, NULL, 1),
(4166, 'Nayaz Ahmed', '6', '9790889376', '8825886505', 'm.nayaz1995@gmail.com', '1996-11-27', 24, '2', '2', 'Ahmed Basha', 'Travel agent', 20000.00, 1, 18000.00, 20000.00, 'No.190 , 10th Street , NSK Nagar , Arumbakkam', 'Arumbakkam , Chennai', '2103310018', '16', '2', 'upload_files/candidate_tracker/75831061197_1615005958808_1535437465784_1532580251832_pulsar nayaz new reume.docx', NULL, NULL, '2021-03-31', 3, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-31 12:10:21', 7, '2021-03-31 04:06:19', 0, NULL, 1),
(4167, 'Siva k', '6', '9790927464', '8085256351', 'siva.peter34@gmail.com', '1992-04-24', 28, '2', '1', 'Merlin', 'House wife', 20000.00, 0, 20000.00, 20000.00, 'No 16/58 kamarajar salai r a puram chennai 28', 'No 260 lakshmi nagar valasaravakkam chennai 86', '2103310019', '1', '2', 'upload_files/candidate_tracker/22750920259_SHIVA 19 MAR.doc', NULL, NULL, '2021-03-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales, no Convincing and confidence. exp is 20k+', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-31 12:30:22', 1, '2021-03-31 02:55:59', 0, NULL, 1),
(4168, '', '0', '9841302003', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 01:12:39', 0, NULL, 0, NULL, 1),
(4169, '', '0', '9787960693', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 02:37:04', 0, NULL, 0, NULL, 1),
(4170, '', '0', '8765456789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 02:48:20', 0, NULL, 0, NULL, 1),
(4171, '', '0', '8838551626', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 03:19:16', 0, NULL, 0, NULL, 1),
(4172, 'deiveegan', '13', '9787893113', '', 'deiveeganhere@gmail.com', '1984-10-10', 36, '2', '2', 'alagesan', 'farmer', 10000.00, 2, 2.40, 3.00, 'velachery', 'velachery', '2103310024', '1', '2', 'upload_files/candidate_tracker/61378359975_DEIVEEGAN-A-PHP-DEVELOPER.doc', NULL, NULL, '2021-04-01', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Agreement,35 yrs Age 2 yrs Exp Expecting 25K TH\n', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-31 04:23:13', 50, '2021-04-01 12:22:29', 0, NULL, 1),
(4173, '', '0', '6381127617', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 07:24:51', 0, NULL, 0, NULL, 1),
(4174, 'nishanth', '28', '8939497971', '', 'nish8005@gmail.com', '1996-07-15', 24, '2', '2', 'narayanan kutty', 'student', 20000.00, 1, 0.00, 400000.00, 'Chennai City South', 'Chennai City South', '2103310026', '1', '1', 'upload_files/candidate_tracker/93029830347_Nishanth.N Resume.pdf', NULL, NULL, '2021-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-31 08:05:08', 1, '2021-04-01 07:07:48', 0, NULL, 1),
(4175, 'S. Saravana kumar', '23', '9080637795', '7092469259', 'Saravanamass7402@gmail.com', '1999-12-16', 21, '2', '2', 'Pramila', 'Clerk', 10000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2103310027', '1', '1', 'upload_files/candidate_tracker/33960471221_Saravana Kumar resume.pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustainability Doubt', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-31 11:14:34', 1, '2021-03-31 11:42:37', 0, NULL, 1),
(4176, 'BOOBALAN', '6', '8056840644', '7010961614', 'boobalanjb1997@gmail.com', '1997-04-21', 23, '2', '2', 'JAKKANNA G', 'TAILOR', 60000.00, 1, 0.00, 200000.00, 'Madurai', 'Chennai', '2104010001', '1', '1', 'upload_files/candidate_tracker/96919343213_ALAN.pdf', NULL, NULL, '2021-04-01', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '2', 'not fit for sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-01 10:57:05', 1, '2021-04-01 11:47:32', 0, NULL, 1),
(4177, 'A. Nagoor Kani', '4', '6380158602', '7395863558', 'Nkani433@gmail.com', '1997-10-12', 23, '2', '2', 'M. Akbar sharief', 'Security guard', 50000.00, 5, 0.00, 50000.00, 'Cuddalore', 'Chennai', '2104010002', '1', '1', 'upload_files/candidate_tracker/84697278924_NAGOOR RESUME-converted.pdf', NULL, NULL, '2021-04-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling. not interested in target base job.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-01 11:46:39', 50, '2021-04-01 12:32:45', 0, NULL, 1),
(4178, 'savithri k', '28', '7299965527', '', 'savi20.krishna@gmail.com', '1995-05-20', 25, '2', '1', 'baskar chandramouli', 'oracle functional consultant', 45000.00, 1, 180000.00, 250000.00, 'chennai', 'chennai', '2104010003', '1', '2', 'upload_files/candidate_tracker/81598814803_Savithri-New.docx', NULL, NULL, '2021-04-02', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 11:48:27', 1, '2021-04-01 12:05:38', 0, NULL, 1),
(4179, 'Deepak', '23', '9629222732', '', 'itisdeepakkumar@outlook.com', '1997-02-10', 24, '2', '2', 'Selvam', 'Govt. Transport', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2104010004', '1', '1', 'upload_files/candidate_tracker/48831479102_Deepak Kumar - Resume-compressed (1).pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our UI UX Position', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 12:10:59', 1, '2021-04-01 12:16:46', 0, NULL, 1),
(4180, 'jaffar shahul', '23', '7845300738', '9884972176', 'jaffershahul.me@gmail.com', '1998-11-16', 22, '2', '2', 'hameed deen', 'web developer', 20000.00, 3, 0.00, 15000.00, 'chennai -37', 'chennai -37', '2104010005', '1', '1', 'upload_files/candidate_tracker/72951378414_JAFFER updated Resume (1).pdf', NULL, NULL, '2021-04-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-04-12', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 12:30:49', 1, '2021-04-01 12:35:06', 0, NULL, 1),
(4181, 'v saravanan', '5', '9585646769', '', 'saravanan54666@gmail.com', '1996-11-03', 24, '2', '2', 'saraswathi', 'bsnl', 18000.00, 1, 15000.00, 20000.00, 'arakkonam', 'arakkonam', '2104010006', '1', '2', 'upload_files/candidate_tracker/29851111909_saravanan.docx', NULL, NULL, '2021-04-05', 30, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'recommended for next round', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-01 12:40:32', 50, '2021-04-16 02:50:03', 0, NULL, 1),
(4182, 'thamarai selvan', '23', '9489029654', '', 'gtcelan@gmail.com', '1997-05-20', 23, '2', '2', 'gnanaprakasam', 'daily vendor', 15000.00, 1, 250000.00, 200000.00, 'Chennai', 'Chennai', '2104010007', '1', '2', 'upload_files/candidate_tracker/36177954779_Thamarai\'s Resume.pdf', NULL, NULL, '2021-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 12:49:49', 1, '2021-04-01 04:26:31', 0, NULL, 1),
(4183, 'Kousalya.B', '4', '7639288432', '6383041242', 'kousibrkks5@gmail.com', '1997-05-05', 23, '2', '2', 'Balakrishnan.V', 'Farmer', 78000.00, 2, 0.00, 12000.00, 'Villupuram', 'Velacherry', '2104010008', '1', '1', 'upload_files/candidate_tracker/32940148724_KOUSALYA.pdf', NULL, NULL, '2021-04-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preparing for govt exams for past 2yrs, time being looking for job. doing her relevant courses in chennai.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-01 01:14:29', 50, '2021-04-01 01:25:45', 0, NULL, 1),
(4184, 'Gopalakrishnan', '23', '9500337306', '9080150732', 'krishdoss06@gmail.com', '1996-03-18', 25, '2', '2', 'Murugadoss', 'Seeking a job', 9000.00, 2, 2.00, 2.25, 'Thanjavur', 'Thanjavur', '2104010009', '1', '2', 'upload_files/candidate_tracker/2488449668_Krishnan-resume(1).pdf', NULL, NULL, '2021-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 01:44:58', 1, '2021-04-01 01:53:27', 0, NULL, 1),
(4185, 'dravid', '23', '8667377046', '', 'dravidmani1998@gmail.com', '1998-07-24', 22, '2', '2', 'ranganathan', 'farmer', 10000.00, 2, 12500.00, 25000.00, 'vellore', 'vellore', '2104010010', '1', '2', 'upload_files/candidate_tracker/26487708877_Resume dravid.pdf', NULL, NULL, '2021-04-10', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-04-01 02:26:42', 1, '2021-04-01 02:33:13', 0, NULL, 1),
(4186, 'JAGAN R', '13', '8124354329', '', 'jaganmca143@gmail.com', '1989-06-03', 31, '2', '2', 'Renugopal', 'Agriculture', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104010011', '1', '2', 'upload_files/candidate_tracker/8274248604_RESUME (13-9-2017).pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our role,Will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 02:42:17', 1, '2021-04-01 02:56:17', 0, NULL, 1),
(4187, 'deepak kumar', '28', '8838296306', '', 'udeepakkumar25@gmail.com', '1999-09-25', 21, '2', '2', 'p.udayakumar / vidhyaudayakumar', 'business / housewife', 500000.00, 0, 0.00, 12000.00, 'poonamallee chennai', 'poonamallee chennai', '2104010012', '1', '1', 'upload_files/candidate_tracker/20774909239_RESUME.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Mail Communication not upto the mark', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 02:49:10', 1, '2021-04-01 03:02:27', 0, NULL, 1),
(4188, 'sujith mj', '28', '8056346835', '', 'sujithmj0@gmail.com', '1999-04-25', 21, '2', '2', 'mohan s', 'business', 40000.00, 1, 0.00, 10000.00, 'nager coil', 'thoraipakkam', '2104010013', '1', '1', 'upload_files/candidate_tracker/75106360175_SCV.pdf', NULL, NULL, '2021-04-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 03:14:41', 1, '2021-04-01 03:21:20', 0, NULL, 1),
(4189, '', '0', '9043938962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104010014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-01 03:49:54', 0, NULL, 0, NULL, 1),
(4190, '', '0', '9445778072', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104010015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-01 04:58:40', 0, NULL, 0, NULL, 1),
(4191, 'abdul rasheed azar', '23', '9788053319', '', 'rasheedazar88@gmail.com', '1988-04-05', 33, '2', '1', 'sirin fathima', 'housewife', 25000.00, 3, 25000.00, 30000.00, 'chennai', 'chennai', '2104010016', '1', '2', 'upload_files/candidate_tracker/48654241955_null.pdf', NULL, NULL, '2021-04-05', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '50/50 On The Agreement, High Pay Expectation', '2', '2', '0', '1', '1', '0', '2', '2021-04-07', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 06:09:55', 1, '2021-04-05 10:17:08', 0, NULL, 1),
(4192, 'R Palani', '13', '9843866562', '', 'palaniramu199@gmail.com', '1999-06-09', 21, '2', '2', 'C ramy', 'Farmer', 5000.00, 2, 20000.00, 25000.00, 'thiruvannamalai', 'Chennai', '2104010017', '1', '2', 'upload_files/candidate_tracker/84250990371_R Palani resume.pdf', NULL, NULL, '2021-04-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 06:21:39', 1, '2021-04-01 06:27:16', 0, NULL, 1),
(4193, 'kAPILAMITHRAN S', '28', '9080957346', '9566084238', 'kapilamithrans@gmail.com', '2000-09-22', 20, '2', '2', 'SANGAMITHIRAN G', 'Chargeman', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2104010018', '1', '1', 'upload_files/candidate_tracker/56088241863_Kapilamithran_s_Resume.pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Doubt, Mail Comm not upto the mark', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 06:21:46', 1, '2021-04-01 06:26:21', 0, NULL, 1),
(4194, 'manoj s', '28', '8110085233', '', 'svmanoj2312000@gmail.com', '2000-01-23', 21, '2', '2', 'selvakumar s', 'professor', 38000.00, 1, 0.00, 23000.00, 'Gudalur', 'Gudalur', '2104010019', '1', '1', 'upload_files/candidate_tracker/49379514770_Manoj S Resume.PDF.pdf', NULL, NULL, '2021-04-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 06:35:59', 1, '2021-04-03 12:18:25', 0, NULL, 1),
(4195, 'govinda raj', '5', '9043596893', '', 'govindarajc1990@gmail.com', '1990-06-13', 30, '2', '2', 'none', 'none', 20000.00, 0, 20000.00, 22000.00, 'chennai', 'chennai', '2104020001', '3', '2', 'upload_files/candidate_tracker/31511517110_goviresume.pdf', NULL, NULL, '2021-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-02 02:08:16', 1, '2021-04-02 02:12:22', 0, NULL, 1),
(4196, 'DILLIRAJ S', '6', '7299657507', '8608878385', 'rajssd07@gmail.com', '1994-05-07', 26, '2', '2', 'SUNDARAM', 'Telecaller', 30000.00, 2, 14500.00, 16000.00, 'Chennai', 'Chennai', '2104030001', '1', '2', 'upload_files/candidate_tracker/31098968714_DILLI RAJ RESUME2 new.docx', NULL, NULL, '2021-04-09', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response', '5', '1', '', '1', '1', '', '2', '2021-05-10', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-03 11:16:00', 8, '2021-04-09 03:03:06', 0, NULL, 1),
(4197, '', '0', '9087848954', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104040001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-04 08:44:04', 0, NULL, 0, NULL, 1),
(4198, '', '0', '9381764011', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104040002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-04 09:09:07', 0, NULL, 0, NULL, 1),
(4199, '', '0', '8122559770', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104050001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-05 12:17:46', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4200, 'P Manikandan', '13', '9003199968', '', 'manikandan1071@gmail.com', '1993-07-01', 27, '2', '1', 'S Palani', 'Working in Pvt Ltd Company', 20000.00, 0, 20000.00, 20000.00, 'Chennai', 'Chennai', '2104050002', '1', '2', 'upload_files/candidate_tracker/79119706415_Manikandan P updated.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Exp  Not ope n for Agreement', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-05 09:58:03', 1, '2021-04-05 10:04:35', 0, NULL, 1),
(4201, 'Ajay Kumar', '17', '6383986452', '', 'Ajaykumars2105@gmail.com', '1993-05-21', 27, '2', '2', 'Sethuraman', 'Retired', 150000.00, 1, 43600.00, 50000.00, 'Hosur', 'Adyar Chennai', '2104050003', '16', '2', 'upload_files/candidate_tracker/39820547326_Ajay Resume_01-01-2021.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned up', '5', '2', '0', '1', '1', '0', '2', '2021-04-07', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 10:18:55', 1, '2021-04-05 10:23:21', 0, NULL, 1),
(4202, 'Gunasekaran', '20', '8939470030', '9080002375', 'shakthiguna0@gmail.com', '1991-03-27', 30, '2', '1', 'Navappan', 'Cooli', 100000.00, 1, 25000.00, 26000.00, 'Chennai', 'Chennai', '2104050004', '16', '2', 'upload_files/candidate_tracker/56988975147_Guna 2021 Resume.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'No Response', '5', '1', '0', '1', '1', '0', '2', '2021-04-07', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 10:20:39', 1, '2021-04-05 10:27:13', 0, NULL, 1),
(4203, 'Ramadevi', '7', '9176343462', '8124985909', 'devichandran13d044@gmail.com', '1996-06-16', 24, '2', '2', 'Chandran', 'Having shop', 18000.00, 0, 15900.00, 25000.00, 'Chennai', 'Chennai', '2104050005', '1', '2', 'upload_files/candidate_tracker/97330140237_CV_Ramadevi.pdf', NULL, NULL, '2021-04-05', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'High CTC Expectation for MF position, Fresher Profile Min TH exp is 15-16 K', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-05 10:37:29', 50, '2021-04-05 10:52:02', 0, NULL, 1),
(4204, 'Kumar', '17', '9884307077', '', 'mkumar.fashion@gmail.com', '1991-09-14', 29, '2', '1', 'Vijayalakshmi', 'House wife', 20000.00, 2, 0.00, 30000.00, 'Arumbakkam, chennai', 'Arumbakkam, chennai', '2104050006', '16', '2', 'upload_files/candidate_tracker/14802658015_Kumar Resume final pdf.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our profile. he was not into sales completely in training and fashion designing with qC ', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 11:05:27', 1, '2021-04-05 11:12:27', 0, NULL, 1),
(4205, 'Kumaran A', '7', '8608865011', '8056135400', 'akumaran1507@gmail.com', '1995-01-15', 26, '2', '2', 'Arumugam K', 'Coolie', 15000.00, 2, 12000.00, 15000.00, 'Chennai', 'Chennai', '2104050007', '1', '2', 'upload_files/candidate_tracker/94250869557_Resume1.docx', NULL, NULL, '2021-04-05', 30, '', '5', '35', NULL, 0.00, '', '0', NULL, '2', 'he Donxquott have a much Knowledge in MF and Communication also Poor, even he Donxquott know what is AMC and RTA. ', '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 11:09:46', 1, '2021-04-05 12:43:40', 0, NULL, 1),
(4206, 'g.bharathi', '4', '7397453278', '9962368091', 'bharathisekaran07@gmail.com', '2000-07-15', 20, '2', '2', 'D.Gnanasekaran', '-', 30000.00, 2, 0.00, 12000.00, '3142, 69th street 2nd mail road Mathur MMDA', '3142, 69th Street 2nd Mail Road Mathur MMDA', '2104050008', '1', '1', 'upload_files/candidate_tracker/53765040626_Bharathi CV UPDATE pdf.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not interested', '1', '2', '0', '1', '1', '0', '2', '2021-04-06', '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-05 11:27:49', 1, '2021-04-05 11:45:07', 0, NULL, 1),
(4207, 'R.manibharathi', '4', '7358008807', '7092362003', 'bharathima220@gmail.com', '1999-05-24', 21, '1', '2', 'V.rajendran', 'Coolie', 25000.00, 2, 0.00, 16000.00, 'Koyambedu', 'Koyambedu', '2104050009', '', '2', 'upload_files/candidate_tracker/76830803546_ManiBharaThi.pdf', NULL, '1', '2021-04-05', 0, '', '3', '53', '2021-07-19', 180000.00, '', '6', '2022-06-25', '1', 'Selected for Arumbakkam Team with CTC 180000 includes PF/ESI/PT deductions', '1', '1', '1', '1', '3', '1', '2', '2021-04-07', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 11:38:24', 60, '2021-07-16 03:28:27', 0, NULL, 1),
(4208, 'Swathy .A', '4', '7358647917', '8220096780', 'akchayaswa06@gmail.com', '1999-03-06', 22, '2', '1', 'Mahadevan.D', 'Sales manager', 150000.00, 2, 8500.00, 10500.00, 'Thruvallur', 'Thruvallur', '2104050010', '1', '2', 'upload_files/candidate_tracker/61031548582_Swathi .. Resume.docx', NULL, NULL, '2021-04-05', 5, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-05 11:41:37', 50, '2021-04-05 12:23:17', 0, NULL, 1),
(4209, 'syed shajahan.k', '23', '9790415737', '8056158826', 'shajahn7shaju@gmail.com', '1996-07-31', 24, '2', '2', 'k.syed khallel', 'power pree operator', 10000.00, 2, 0.00, 16000.00, 'aaru muga vaithur street triplicane', 'triplicane chennai', '2104050011', '1', '1', 'upload_files/candidate_tracker/2347610831_ui developer-designer resume.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for UI,Health Issue Sustainability Doubt', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-05 12:04:20', 1, '2021-04-05 12:22:03', 0, NULL, 1),
(4210, 'Prema.K', '4', '9361433253', '9655762075', 'Premarenu43785@gmail.com', '2001-08-09', 19, '2', '2', 'Kuppan M', 'Fisherman', 6000.00, 1, 0.00, 15000.00, 'Pulicat', 'Thiruvattiyur', '2104050012', '', '1', 'upload_files/candidate_tracker/3502153351_-B_com_Fresher_Resume_Format[1] prema.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Looking For Non Voice Acc And Fin.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 12:26:50', 1, '2021-04-05 12:51:23', 0, NULL, 1),
(4211, 'Chebina D', '20', '9962552492', '9840724594', 'chebinajebaselvi@gmail.com', '2001-05-11', 19, '2', '2', 'K.Durai', 'Sales men', 12000.00, 2, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2104050013', '1', '1', 'upload_files/candidate_tracker/67367474675_RESUME.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interested for Sales', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-05 12:29:49', 1, '2021-04-05 12:39:43', 0, NULL, 1),
(4212, 'SANJAY KUMAR', '5', '8148083071', '', 'kumarvsanjay8@gmail.com', '1996-02-16', 25, '2', '2', 'VIJAYKUMAR', 'Mechanic', 20000.00, 1, 26000.00, 30000.00, 'Chennai', 'Chennai', '2104050014', '16', '2', 'upload_files/candidate_tracker/16878961650_sanjay_resume_2020[1] (1) (1).pdf', NULL, NULL, '2021-04-05', 7, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'language is not good, will not suite for our process. currently working in justdail for past 2m, ', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 12:29:54', 1, '2021-04-05 12:57:28', 0, NULL, 1),
(4213, 'Vinitha. Y', '4', '9790955091', '9500079490', 'Vinirathinam1920@gmail.com', '2000-08-19', 20, '2', '2', 'D. Yesurathinam', 'Driver', 15000.00, 2, 0.00, 15000.00, 'Mylapore', 'Porur', '2104050015', '1', '1', 'upload_files/candidate_tracker/11241207484_RESUME.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling and sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 12:30:00', 8, '2021-04-08 09:54:08', 0, NULL, 1),
(4214, 'Shaminikani C', '4', '6385117486', '8939342514', 'Shaminicharles241@gmail.com', '2001-04-02', 20, '2', '2', 'K Charles', 'Cooli', 8000.00, 1, 0.00, 15000.00, 'Tuticorin', 'Tambaram', '2104050016', '1', '1', 'upload_files/candidate_tracker/16154212339_CV_2020-11-03-095828.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice acc and Fin.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-05 12:30:21', 8, '2021-04-05 02:56:58', 0, NULL, 1),
(4215, 'Rahul Rajan', '5', '7358057075', '', 'rahul.savithrirajan@gmailcom', '1996-03-29', 25, '2', '2', 'Rajan P', 'Business', 40000.00, 1, 26000.00, 30000.00, 'Chennai', 'Chennai', '2104050017', '16', '2', 'upload_files/candidate_tracker/88387069527_rahul resume2021.doc', NULL, NULL, '2021-04-05', 7, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, language is not convincing.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 12:30:53', 1, '2021-04-05 12:58:03', 0, NULL, 1),
(4216, 'NIvedha g', '4', '6382078523', '6380203094', 'g.nivedha30@gmail.com', '1999-05-30', 21, '1', '2', 'Gunasekaran', 'Business', 50000.00, 2, 14000.00, 15000.00, 'Chennai', 'Purasaiwakkam', '2104050018', '', '2', 'upload_files/candidate_tracker/93471492279_nivedha cv.222.docx', NULL, NULL, '2021-04-05', 3, '61167', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Expectation is High, Not ready to negotiate', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 12:36:21', 1, '2021-04-05 01:14:23', 0, NULL, 1),
(4217, 'Janani.D', '4', '8056126634', '8939062231', 'Jananijan0425@gmail.com', '2000-02-04', 21, '1', '2', 'Manjula', 'Supervisor', 20000.00, 0, 15000.00, 15000.00, 'Purasaiwalkam', 'Purasaiwalkam', '2104050019', '', '2', 'upload_files/candidate_tracker/46152570850_JANANI RESUME.pdf', NULL, NULL, '2021-04-05', 3, '61177', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustainability Doubt, High CTC Expectation', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 12:42:18', 1, '2021-04-05 12:56:45', 0, NULL, 1),
(4218, 'R vijayshree', '20', '8056181140', '6383942941', 'vijiradha1708@gmail.com', '1999-08-17', 21, '2', '2', 'Radhakrishnan', 'Fruits shop', 120000.00, 3, 0.00, 15000.00, 'THIRUMULLAIVOYAL', 'THIRUMULLAIVOYAL', '2104050020', '', '1', 'upload_files/candidate_tracker/1104326917_Scan Apr 05, 2021.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'not open her mouth also', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 12:47:11', 1, '2021-04-05 01:06:31', 0, NULL, 1),
(4219, 'R.Senbagam', '4', '7904148397', '6383942941', 'senbar535@gmail.com', '2000-03-30', 21, '2', '2', 'R.Ravichandran', 'Fruit seller', 25000.00, 2, 0.00, 15000.00, 'Thirumullai voyal', 'Thirumullai voyal', '2104050021', '1', '1', 'upload_files/candidate_tracker/75791392267_resume.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No response for a long, Dsicussed on the CTC earlier and her expectation is High', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 12:47:15', 8, '2021-04-05 02:58:00', 0, NULL, 1),
(4220, 'Jayasurya.p', '4', '7358715402', '', 'surya1847173@gmail.com', '2000-03-01', 21, '2', '2', 'Palani', 'Drivar', 7000.00, 4, 0.00, 15000.00, 'no.55 bangaru street,Ayanavaram,Chennai.23', 'Ayanavaram', '2104050022', '1', '1', 'upload_files/candidate_tracker/15054568786_nithya.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'dont even has resume with him, Just like that came for interview with his friend.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 01:10:51', 1, '2021-04-05 01:41:48', 0, NULL, 1),
(4221, 'Ravishankar.m', '4', '8072004201', '7449267503', 'rs321124@gmail.com', '1996-07-18', 24, '2', '2', 'Mohan', 'B.com', 20000.00, 3, 0.00, 10000.00, 'Thiruninravur', 'Thiruninravur', '2104050023', '1', '1', 'upload_files/candidate_tracker/31990812550_RAVI.docx', NULL, NULL, '2021-04-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling and he is not interested too, looking for collection job.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-05 01:17:34', 7, '2021-04-05 03:01:15', 0, NULL, 1),
(4222, '', '0', '9925746667', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104050024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-05 01:33:31', 0, NULL, 0, NULL, 1),
(4223, 'Mubeena Begum', '4', '9176164269', '', 'Mubee1926@gmail.com', '2000-07-19', 20, '2', '2', 'Nil', 'Nil', 14000.00, 1, 0.00, 18000.00, 'Velachery', 'Velachery', '2104050025', '1', '1', 'upload_files/candidate_tracker/28445644825_MUBEENA RESUME-1.docx', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, demanding atleast 14k th. ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 02:38:52', 1, '2021-04-05 02:50:03', 0, NULL, 1),
(4224, 'Jayakumar', '4', '9500101392', '', 'Jaikumarram625@Gmail.com', '2000-11-03', 20, '2', '2', 'Banu. R', 'No', 10000.00, 2, 0.00, 15000.00, 'Purasaiwalkam', 'Purasaiwalkam', '2104050026', '1', '1', 'upload_files/candidate_tracker/25097285226_New doc 05-Apr-2021 3.00 pm.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for sales process, will not sustain.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 02:53:36', 1, '2021-04-05 03:12:00', 0, NULL, 1),
(4225, 'S.Thamaraiselvi', '4', '9025746667', '9840537055', 'lotuspriscilla1999@gmail.com', '1999-07-21', 21, '2', '2', 'Vijay', 'Manager', 20000.00, 0, 0.00, 15000.00, 'Villupuram', 'Chennai', '2104050027', '1', '1', 'upload_files/candidate_tracker/18148988818_Lotus Resume.pdf', NULL, NULL, '2021-04-09', 0, '', '3', '8', '2021-04-12', 126312.00, '', '6', '2021-04-13', '2', '10k th Mtc10526, ctc 126312 for Muthu team', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 02:53:47', 7, '2021-04-11 03:51:36', 0, NULL, 1),
(4226, 'Agasthiya. K', '28', '9840350274', '9941210887', 'agasthiyaparshith@gmail.com', '1996-02-07', 25, '2', '2', 'Krishnamurthy', 'Professor', 30000.00, 1, 0.00, 16000.00, 'thoraipakkam ,chennai-600097', 'Thoraipakkam, chennai-600097', '2104050028', '1', '1', 'upload_files/candidate_tracker/23692013990_AGASTHIYA -Finance-converted (1).pdf', NULL, NULL, '2021-04-07', 0, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-05 03:01:56', 50, '2021-04-07 10:52:18', 0, NULL, 1),
(4227, 'Vijay', '22', '9080955045', '', 'vijaymabishek@gmail.com', '2001-11-29', 19, '2', '2', 'Mahalingam', 'Operator', 30000.00, 1, 0.00, 5000.00, 'Chennai', 'Chennai', '2104050029', '1', '1', 'upload_files/candidate_tracker/73824207836_Resume pdf.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'High Salary Expectation,Not open for Long Career', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-05 03:19:10', 1, '2021-04-05 03:27:29', 0, NULL, 1),
(4228, 'Logapriya', '22', '9790693521', '9840126338', 'Logapriyasivaraam97@gmail.com', '1997-07-27', 23, '2', '1', 'Kartheek GJ', 'Cluster manager', 45000.00, 0, 14000.00, 20000.00, 'Ambathur', 'Thiruvallur', '2104050030', '1', '2', 'upload_files/candidate_tracker/41102480358_Logapriya Resume.docx', NULL, NULL, '2021-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Good in Communication, Interview by reyaz 2nd level , sustainability Doubt', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-05 05:01:48', 1, '2021-04-05 05:09:12', 0, NULL, 1),
(4229, 'nayana k', '20', '9544003343', '', 'nayanasankarank@gmail.com', '1999-04-10', 21, '2', '2', 'none', 'none', 20000.00, 0, 11000.00, 13000.00, 'bangalore', 'bangalore', '2104070001', '3', '2', 'upload_files/candidate_tracker/9556560664_nayana.k.docx', NULL, NULL, '2021-04-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 09:12:48', 1, '2021-04-07 09:20:31', 0, NULL, 1),
(4230, 'muhammed asif', '11', '9791131270', '', 'asifmuhammed132@gmail.com', '1999-11-25', 21, '2', '2', 'hameed', 'tea shop', 40000.00, 1, 13000.00, 14000.00, 'chennai', 'ashok nagar', '2104070002', '1', '2', 'upload_files/candidate_tracker/39621202888_resume updated .docx', NULL, NULL, '2021-04-07', 5, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'not suit fr HR', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-07 10:12:21', 1, '2021-04-07 10:44:48', 0, NULL, 1),
(4231, 'K.sanjay kumar', '4', '6379439511', '8428743010', 'sanjay2sk227@gmail.com', '2000-07-23', 20, '2', '2', 'k.kavitha', 'House wife', 20000.00, 1, 0.00, 12000.00, 'Thuraipakam', 'Thuraipakam', '2104070003', '1', '1', 'upload_files/candidate_tracker/74203601534_sanjay.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suit for HR', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-07 10:25:49', 50, '2021-04-07 10:49:01', 0, NULL, 1),
(4232, 'Jagadeesh. N', '4', '8608479371', '8925728613', 'Jagadeshjackos2190y@gmail.com', '1998-09-03', 22, '2', '2', 'N. Nethaji', 'Machine operator', 22000.00, 1, 0.00, 10000.00, 'Chennai 600056', 'Chennai 600056', '2104070004', '1', '1', 'upload_files/candidate_tracker/49826077187_Job search_Color Format – 01.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'tamil comm. is not good. no clarity in pronunciation. body lang. is also not good.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-07 10:40:47', 8, '2021-04-07 04:17:37', 0, NULL, 1),
(4233, 'Preethi S', '4', '7397438603', '7550180243', 'preethireddy4299@gmail.com', '1999-02-04', 22, '2', '2', 'Srinivasan K', 'Electrician', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104070005', '1', '1', 'upload_files/candidate_tracker/5814918074_preethi.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response will not join', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-07 10:46:14', 50, '2021-04-07 10:56:20', 0, NULL, 1),
(4234, 'Kamesh', '4', '8778891306', '', 'kamesh2398@gmail.com', '2006-04-07', 0, '2', '2', 'Srinivasan', 'Pattern makker', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2104070006', '1', '1', 'upload_files/candidate_tracker/50358793947_1617772177039_KAMESH _S(resume).pdf', NULL, NULL, '2021-04-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-07 10:59:19', 50, '2021-04-07 11:23:54', 0, NULL, 1),
(4235, 'Gouthaman.R', '17', '9659536766', '9791300188', 'Gouthamankutty@gmail.com', '1991-10-03', 29, '2', '2', 'Rajendran', 'Shop worker', 700000.00, 1, 31680.00, 33000.00, 'Kolathur,chennai', 'Kolathur, chennai', '2104070007', '16', '2', 'upload_files/candidate_tracker/57905095500_2020 GOUTHAMAN.docx', NULL, NULL, '2021-04-07', 0, '', '4', '44', NULL, 0.00, '', '0', NULL, '1', 'has LI exp. kindly cross check for RM profile/BDM agency', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 10:59:26', 1, '2021-04-07 11:04:17', 0, NULL, 1),
(4236, 'Mohan raj', '6', '9791089413', '', 'Kmohanraj36@gmail.com', '1994-10-30', 26, '2', '2', 'Karthik', 'Carpenter', 20000.00, 1, 12150.00, 15500.00, 'Chennai', 'Chennai', '2104070008', '1', '2', 'upload_files/candidate_tracker/75886486070_mohan resume.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not interested in sales. no knowledge in MF. he was into qC', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-07 11:01:11', 1, '2021-04-07 11:10:16', 0, NULL, 1),
(4237, 'S.lokeshwaran', '4', '8838001755', '', 'lokieeagal10@gmail.com', '2001-04-14', 19, '2', '2', 'Sathish kumar', 'Police', 340000.00, 1, 0.00, 30000.00, 'Purasawalkam', 'Purasawalkam', '2104070009', '16', '2', 'upload_files/candidate_tracker/68988941376_New Doc 04-07-2021 11.15.pdf', NULL, NULL, '2021-04-07', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'left before interview', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 11:03:59', 50, '2021-04-07 11:59:48', 0, NULL, 1),
(4238, 'Muralimanohar', '5', '9600002354', '9094259618', 'asmanoj07@gmail.com', '1992-11-18', 28, '2', '1', 'Stella', 'Sales', 25000.00, 1, 22000.00, 30000.00, 'Perumbakkam', 'Perumbakkam', '2104070010', '16', '2', 'upload_files/candidate_tracker/69752542640_Murali resume_Pagar Book-1.docx', NULL, NULL, '2021-04-07', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for RM Profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 11:06:45', 8, '2021-04-07 04:36:47', 0, NULL, 1),
(4239, '', '0', '9080399269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104070011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-07 11:14:35', 0, NULL, 0, NULL, 1),
(4240, 'Preedhi', '4', '9080398269', '9444311741', 'preedhi0011.a@gmail.com', '1996-08-13', 24, '2', '2', 'Athinarayanasamy', 'Conductor', 35000.00, 2, 12000.00, 15000.00, 'Kovilpatti', 'chennai', '2104070012', '1', '2', 'upload_files/candidate_tracker/56607570215_PREEDHI res.docx', NULL, NULL, '2021-04-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'planning to do her course by next week, interested in IT job, will not sustain for sales. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-07 11:31:00', 50, '2021-04-07 11:45:22', 0, NULL, 1),
(4241, 'pavithra.p', '4', '9677683450', '', 'pavithraprabha99@gmail.com', '1999-05-05', 21, '2', '2', 'prabhakaran.r', 'business', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2104070013', '1', '1', 'upload_files/candidate_tracker/99606716090_1591523087642Resume_SUGANYA.docx', NULL, NULL, '2021-04-07', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitide', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-07 11:43:32', 50, '2021-04-07 12:35:03', 0, NULL, 1),
(4242, 'thiyagu', '16', '9087655438', '', 'rajalakshminandhini07@gmail.com', '2006-04-07', 0, '1', '1', 'kottiswari', 'business', 20000.00, 1, 0.00, 13000.00, 'yadhaval street tirusulam', 'potter street saidapet', '2104070014', '', '1', 'upload_files/candidate_tracker/41317961393_0_Resume jb.job.pdf', NULL, NULL, '2021-04-07', 0, 'jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 01:00:15', 1, '2021-04-07 01:02:48', 0, NULL, 1),
(4243, 'Ruba.m', '4', '9360196074', '6379917841', 'rrupa7715@gmail.com', '2000-04-19', 20, '1', '2', 'Murugan', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Salem', 'Chennai', '2104070015', '', '1', 'upload_files/candidate_tracker/50907903217_ FORD RESUME 2020.pdf', NULL, NULL, '2021-04-07', 0, 'Jobs', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'not suitable for this profile ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 01:18:06', 1, '2021-04-07 01:37:10', 0, NULL, 1),
(4244, 'SUBA KARTHIK B', '28', '9750553566', '', 'subakarthik2020@gmail.com', '1997-06-25', 23, '2', '2', 'M G BALASUBRAMANIAN', 'Retired SBI MANAGER', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2104070016', '1', '1', 'upload_files/candidate_tracker/42822601222_Suba_karthik_resume___MBA (1) (1) (1) (1) (1).pdf', NULL, NULL, '2021-04-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Not good in mail communications, Focus will be much into Banking Job will not sustain for a long', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 01:37:15', 1, '2021-04-07 03:25:23', 0, NULL, 1),
(4245, 'Srivatsan Sriram', '28', '9841271055', '9841049822', 'Srivats21@gmail.com', '2000-04-21', 20, '2', '2', 'Sriram', 'Business', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104070017', '1', '1', 'upload_files/candidate_tracker/70907107163_srivatsan Resume (1).pdf', NULL, NULL, '2021-04-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Commucation Average,Mail Communication is not Good, Agreement should check with Family ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 02:38:52', 50, '2021-04-08 10:23:09', 0, NULL, 1),
(4246, '', '0', '8769087656', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104070018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-07 02:43:57', 0, NULL, 0, NULL, 1),
(4247, 'mallikarjun', '29', '8341936030', '9014640534', 'aerospace.v5@gmail.com', '1998-07-01', 22, '3', '2', 'nagalakshmaiah vadi', 'farmer', 20000.00, 4, 0.00, 17000.00, 'kurnool', 'chennai', '2104070019', '', '1', 'upload_files/candidate_tracker/78750750277_MALLIKARJUN VADI_Phoenix.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain for a long,looking for Mechanical Core for time being looking for job', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 03:22:18', 1, '2021-04-07 03:33:31', 0, NULL, 1),
(4248, '', '0', '9655516660', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104070020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-07 03:30:00', 0, NULL, 0, NULL, 1),
(4249, 'nesapriya', '28', '9597796198', '', 'nesapriyaraj.2430@gmail.com', '1999-05-30', 21, '2', '2', 'rajendran', 'farmer', 60000.00, 1, 0.00, 13000.00, 'HOSUR', 'HOSUR', '2104070021', '1', '1', 'upload_files/candidate_tracker/87997138823_nesa resume (3).pdf', NULL, NULL, '2021-04-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 03:38:03', 1, '2021-04-07 03:51:08', 0, NULL, 1),
(4250, 'sarath sathyan s', '28', '8072021456', '', 'saraths1034@gmail.com', '1999-06-21', 21, '2', '2', 'sathyanathan d', 'sales staff', 15000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2104070022', '1', '1', 'upload_files/candidate_tracker/60199758915_sarath_resume.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Good in Communication,Sustainability Doubt,not open for 2 yrs service Agree', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 03:43:04', 1, '2021-04-07 04:26:37', 0, NULL, 1),
(4251, 'aakash', '28', '8838064121', '', 'aakashakiakiaki@gmail.com', '1996-09-08', 24, '2', '2', 'prakash', 'farmer', 60000.00, 1, 0.00, 14000.00, 'ooty', 'ooty', '2104070023', '1', '1', 'upload_files/candidate_tracker/35297491005_aki 2.pdf', NULL, NULL, '2021-04-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 03:55:43', 1, '2021-04-07 03:58:41', 0, NULL, 1),
(4252, 'Chitra K', '28', '7824037529', '', 'chitrafab64@gmail.com', '1998-08-03', 22, '2', '2', 'Kandasamy. M', 'Retired head master', 45000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104070024', '1', '1', 'upload_files/candidate_tracker/44337441498_Chitra Resume.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication OK, But for Agreement need to check with Family Max 1 yr Sustain', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 04:28:19', 1, '2021-04-07 04:39:13', 0, NULL, 1),
(4253, 'Sridhar K S', '28', '8668001037', '', 'sri85213@gmail.com', '2000-07-29', 20, '2', '2', 'Srinivasan P', 'Buisness', 60000.00, 1, 0.00, 360000.00, 'No.111/33TTA koil main street, Villivakkam,Ch-49', 'No.111/33TTA Koil Main Street, Villivakkam,Ch-49', '2104070025', '1', '1', 'upload_files/candidate_tracker/46071686817_SridharCV.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain for a long, No focus on the particular position', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 04:46:32', 1, '2021-04-07 04:56:17', 0, NULL, 1),
(4254, 'varadharajan k', '28', '7550186277', '', 'vachu0065@gmail.com', '2000-04-08', 20, '2', '2', 'kumar m d', 'driver', 10000.00, 0, 0.00, 15000.00, 'chennai', 'chromepet chennai', '2104070026', '1', '1', 'upload_files/candidate_tracker/56530857372_Varadha resume.pdf', NULL, NULL, '2021-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 04:51:44', 1, '2021-04-07 05:01:49', 0, NULL, 1),
(4255, 'Kalaivanan k', '23', '9095283551', '', 'kalaiwebhustler@gmail.com', '1992-05-12', 28, '2', '2', 'Karunanidhi', 'Former', 10000.00, 2, 2.60, 3.60, 'Ariyalur', 'Thambaram', '2104070027', '1', '2', 'upload_files/candidate_tracker/72874634821_Resume_Kalaivanan.pdf', NULL, NULL, '2021-04-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '2 yrs of UI Exp,but  no know  in detail,High Pay Expectation', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 04:53:51', 50, '2021-04-09 02:47:28', 0, NULL, 1),
(4256, 'Bhuvanesh E', '28', '9710031607', '', 'waranbhuvanesh81@gmail.com', '1999-07-19', 21, '2', '2', 'Elangovan k', 'Cooli', 20000.00, 1, 13000.00, 15000.00, 'Chengalpattu', 'Tambaram', '2104070028', '1', '2', 'upload_files/candidate_tracker/47471508738_Bhuvanesh New resume.docx', NULL, NULL, '2021-04-08', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication, Will not suit for our Role', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 05:15:12', 1, '2021-04-07 05:22:01', 0, NULL, 1),
(4257, 'sowndarya', '4', '9025996496', '', 'sowndaryasowndarya699@gmail.com', '2000-09-12', 20, '2', '2', 'arumugam', 'cooli', 13000.00, 0, 0.00, 10000.00, 'chennai', 'chennai', '2104070029', '2', '1', 'upload_files/candidate_tracker/5973096150_April Resume.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up. will not suite for calling', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:42:12', 1, '2021-04-07 08:43:49', 0, NULL, 1),
(4258, 'rithika', '4', '8778849956', '', 'rithikababy29@gmail.com', '2000-09-02', 20, '2', '2', 'kathiravan', 'sk', 15000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2104070030', '2', '1', 'upload_files/candidate_tracker/52040990618_Rithika resume.pdf', NULL, NULL, '2021-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:45:22', 1, '2021-04-07 08:46:48', 0, NULL, 1),
(4259, 'sandhiya m', '4', '9361155064', '', 'sandhiyamohanbabu3112@gmail.com', '2000-12-31', 20, '2', '2', 'mohanbabu', 'welding', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104070031', '2', '1', 'upload_files/candidate_tracker/43941212910_SANDHIYA.doc', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'too long from singaperumal kovil', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:48:09', 1, '2021-04-07 08:49:41', 0, NULL, 1),
(4260, 'Bharath Kumar', '28', '9047509797', '', 'rockybharath4@gmail.com', '1995-12-13', 25, '2', '2', 'Panneer selvam', 'Business', 50000.00, 2, 0.00, 40000.00, 'Chennai', 'Chennai', '2104070032', '1', '2', 'upload_files/candidate_tracker/63559090603_BharathKumar_Resume.pdf', NULL, NULL, '2021-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 08:48:28', 1, '2021-04-07 08:59:35', 0, NULL, 1),
(4261, 'jefrin', '4', '9597225211', '', 'jeffyjeffry35@gmail.com', '2000-12-06', 20, '2', '2', 'kennet', 'driver', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104070033', '2', '1', 'upload_files/candidate_tracker/92529080565_jefrin resume.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very low voice. will not suite for calling. she is 19.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:51:17', 1, '2021-04-07 08:52:33', 0, NULL, 1),
(4262, 'bhavani', '4', '9790788621', '', 'bhavanikavyakutty@gmail.com', '2000-09-20', 20, '2', '2', 'mani', 'watchman', 8000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104070034', '2', '1', 'upload_files/candidate_tracker/87603171758_CV_2021-04-07-125920.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for Calling and handle pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:53:40', 1, '2021-04-07 08:55:12', 0, NULL, 1),
(4263, 'narmadha', '4', '6369642788', '', 'dkkeerthi2005@gmail.com', '2001-05-08', 19, '2', '2', 'ramesh', 'late', 8000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2104070035', '2', '1', 'upload_files/candidate_tracker/47461975665_Narmatha.R ( resume).pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'too long. singaperumalkovil', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:56:25', 1, '2021-04-07 08:57:45', 0, NULL, 1),
(4264, 'parameshwari', '4', '6380100209', '', 'umaraponiv123@gamil.com', '2001-01-06', 20, '2', '2', 'ramesh', 'security', 12000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104070036', '2', '1', 'upload_files/candidate_tracker/74123507163_parameshwari resume.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'voice is not clear and no clarity. she is 19. will not suite for calling', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:58:52', 1, '2021-04-07 09:00:14', 0, NULL, 1),
(4265, 'sudha lakshmi', '4', '6383241617', '', 'ganeshsudha2019@gmail.com', '2001-05-15', 19, '2', '2', 'ganeshan', 'cooli', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104070037', '2', '1', 'upload_files/candidate_tracker/24130362389_Sudha Lakshmi Resume.pdf', NULL, NULL, '2021-04-08', 0, '', '3', '8', '2021-04-22', 126312.00, '', '6', '2021-04-23', '2', 'For Priyanka team With CTC - 126312 Gross - 10526 xxamp TH - 10000', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 09:01:14', 7, '2021-04-21 09:49:49', 0, NULL, 1),
(4266, 'nishanthi', '4', '7338930634', '', 'nishanthigowri21042000@gmail.com', '2000-04-21', 20, '2', '2', 'saminathan', 'cooli', 10000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2104070038', '2', '1', 'upload_files/candidate_tracker/31394757884_Document.pdf', NULL, NULL, '2021-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 09:06:18', 1, '2021-04-07 09:08:24', 0, NULL, 1),
(4267, 'sangeetha', '4', '7550126181', '', 'sangeetha82022@gmail.com', '1999-12-14', 21, '2', '2', 'karunanithi', 'cooli', 12000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104070039', '2', '1', 'upload_files/candidate_tracker/31889134573_K. Sangeetha.pdf', NULL, NULL, '2021-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 09:09:26', 1, '2021-04-07 09:10:55', 0, NULL, 1),
(4268, 'keerthiga', '4', '6383563114', '', 'keerthimakeerthi6@gmail.com', '2001-06-11', 19, '2', '2', 'ganeshan', 'cooli', 10000.00, 2, 0.00, 11000.00, 'chennai', 'chennai', '2104070040', '2', '1', 'upload_files/candidate_tracker/84453960678_resume . keerthi.docx', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up keep on smiling and will not suite for calling. too long.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 09:12:30', 1, '2021-04-07 09:14:04', 0, NULL, 1),
(4269, '', '0', '8778354184', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104070041', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-07 11:10:52', 0, NULL, 0, NULL, 1),
(4270, 'F. Delphina Mary', '21', '9940616151', '9710352906', 'delphina1986@gmail.com', '1986-06-08', 34, '2', '1', 'G. Franklin Amul Raj', 'Marriage Decorations', 15000.00, 1, 18000.00, 20000.00, 'No. 288,TV Nagar, Anna st, Ayanavaram, che - 23', 'No. 288,TV Nagar, Anna St, Ayanavaram, Che - 23', '2104080001', '1', '2', 'upload_files/candidate_tracker/73086435265_Delphina Resume.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '3', '2', '', '1', '1', '', '2', '2021-04-19', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 10:12:05', 50, '2021-04-08 10:32:57', 0, NULL, 1),
(4271, 'V. Nareshkumar', '4', '8825431813', '', 'Josephnaresh200@gmail.com', '2000-04-12', 20, '2', '2', 'V.Anuradha', 'Labour', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2104080002', '1', '1', 'upload_files/candidate_tracker/22181464899_naresh resume.docx', NULL, NULL, '2021-04-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not join, not interested', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 10:22:57', 8, '2021-04-08 05:42:40', 0, NULL, 1),
(4272, 'SUJITHA C', '4', '9094828185', '9094370398', 'sujithachandrasekar18@gmail.com', '2001-04-18', 19, '2', '2', 'CHANDRASEKAR R', 'DRIVER', 6000.00, 2, 0.00, 15000.00, '2/101-44th street kodungaiyur chn-118', '2/101-44th street kodungaiyur chn-118', '2104080003', '1', '1', 'upload_files/candidate_tracker/11482860096_AN DIST - College Students on 05.03.2021 (1).pdf', NULL, NULL, '2021-04-08', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for telesales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 10:25:03', 8, '2021-04-08 05:46:25', 0, NULL, 1),
(4273, 'Kavitha Murugan', '11', '9025966776', '', 'writetokavitha07@gmail.com', '1997-06-20', 23, '4', '2', 'Murugan M', 'Admin Assistant', 20000.00, 1, 14333.00, 18000.00, 'Chennai', 'Chennai', '2104080004', '', '2', 'upload_files/candidate_tracker/25091462720_Kavitha Updated Resume (1).pdf', NULL, NULL, '2021-04-08', 0, '', '2', '41', NULL, 0.00, '', '0', NULL, '1', 'telephonic by Kayal', '6', '1', '0', '1', '1', '0', '2', '2021-04-12', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 10:34:48', 1, '2021-04-08 10:38:03', 0, NULL, 1),
(4274, 'Anandhasekar', '4', '8754144301', '7358535569', 'Anandhasekar.m@gmail.com', '1995-12-05', 25, '1', '2', 'Mani', 'Cooly', 20000.00, 1, 22500.00, 30000.00, 'Sembakkam', 'Sembakkam', '2104080005', '', '2', 'upload_files/candidate_tracker/9297303825_Resume_Anandhasekar.pdf', NULL, NULL, '2021-04-08', 1, 'T1112', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for RM, 2.5 yr in acc. will not sustain for sales.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 10:35:40', 1, '2021-04-08 10:53:28', 0, NULL, 1),
(4275, 'Divakar.s', '6', '7395951597', '7299881368', 'divasad55@gmail.com', '2000-03-24', 21, '1', '2', 'Adhilakshmi', 'Security guard', 15000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2104080006', '', '1', 'upload_files/candidate_tracker/60135044596_divakar Resume.docx', NULL, NULL, '2021-04-08', 0, 'Jobs', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Response', '5', '2', '', '1', '1', '', '2', '2021-05-10', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 10:42:34', 8, '2021-04-08 01:03:21', 0, NULL, 1),
(4276, 'deepika', '4', '7358418061', '', 'deepiraja007@gmail.com', '2000-11-20', 20, '2', '2', 'raja', 'nil', 9000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2104080007', '2', '1', 'upload_files/candidate_tracker/94585706170_Document (1).pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling. ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 10:43:54', 1, '2021-04-08 10:45:04', 0, NULL, 1),
(4277, 'Haritha', '4', '8015232315', '9843840266', 'pandiyanharitha@gmail.com', '1998-08-20', 22, '1', '2', 'Pandiyan', 'Fruit merchant', 30000.00, 0, 0.00, 15000.00, 'Vellorr', 'Vellore', '2104080008', '', '1', 'upload_files/candidate_tracker/94447974911_Hari resume 02.4.21.pdf', NULL, NULL, '2021-04-08', 0, 'Joba', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Tried reaching, no response for a long. In the initial discussion  she Requested time to check with parents on the location, but didnt turn back ', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 10:46:46', 1, '2021-04-08 10:51:01', 0, NULL, 1),
(4278, 'abinaya', '4', '7550244180', '', 'abinayachandran2000@gmail.com', '2001-08-15', 19, '2', '2', 'ramachandran', 'cooli', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104080009', '2', '1', 'upload_files/candidate_tracker/24273119971_Document (1) (1).pdf', NULL, NULL, '2021-04-08', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 10:55:52', 7, '2021-04-08 03:02:27', 0, NULL, 1),
(4279, 'Sri nandhini', '11', '8610415901', '', 'Nandhinisri101@gmail.com', '1990-06-06', 30, '1', '1', 'Logesh', 'Engineer', 250000.00, 0, 0.00, 150000.00, 'No 27, second Street, venkatesur,Chennai 118', 'No', '2104080010', '', '1', 'upload_files/candidate_tracker/6810935402_Srinandhini Resume-MBA HR-2-6.docx', NULL, NULL, '2021-04-08', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'No Response', '6', '2', '0', '1', '1', '0', '2', '2021-04-12', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 11:08:48', 1, '2021-04-08 11:29:06', 0, NULL, 1),
(4280, 'Santhosh kumar', '6', '8667514950', '9176449851', 'Santoshzeus@gmail.com', '1998-10-05', 22, '3', '2', 'M.d.sasikumar', 'Business', 30000.00, 2, 0.00, 13500.00, 'No 578 u block t.v.k nagar teynampet ch-18', 'No 578 U Block T.V.K Nagar Teynampet Ch-18', '2104080011', '', '1', 'upload_files/candidate_tracker/31740678708_SANTHOSH RESUME.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 11:27:06', 8, '2021-04-08 05:47:41', 0, NULL, 1),
(4281, 'Prasanth m', '4', '9600013732', '9500170888', 'Prasanthprasanth8928@gmail.com', '1998-03-13', 23, '3', '2', 'Marudhamuthu', 'Driver', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Ramapuram', '2104080012', '', '1', 'upload_files/candidate_tracker/5622562838_prasanthMuthu.docx', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling, will not handle pressure. salary exp is high, already he was getting 18k in jk copier.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 11:46:29', 1, '2021-04-08 12:36:12', 0, NULL, 1),
(4282, 'Sakthi dass.R', '4', '9962057154', '9500757659', 'sakthisakthi4135@gmail.com', '1999-05-06', 21, '3', '2', 'Radhakrishnan.M', 'I got a job', 8000.00, 2, 0.00, 9000.00, 'Achrapakkam', 'Thuraipakkam', '2104080013', '', '1', 'upload_files/candidate_tracker/63479025189_ Sakthi, RESUME.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'had a telephonic interview and feel the same.', '1', '1', '0', '1', '1', '0', '2', '2021-04-12', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 11:55:19', 1, '2021-04-08 12:07:35', 0, NULL, 1),
(4283, 'Visali B k', '28', '7358592905', '', 'vishabas01@gmail.com', '1999-10-28', 21, '2', '2', 'M.baskaran', 'Business', 25000.00, 1, 0.00, 15000.00, 'Ambattur, chennai', 'Ambattur, chennai', '2104080014', '1', '1', 'upload_files/candidate_tracker/78300663363_Resume Visali.pdf', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-08 01:15:12', 1, '2021-04-08 01:28:05', 0, NULL, 1),
(4284, 'Poojasritha S', '28', '9840864112', '6381049821', 'srithakumar0103@gmail.com', '2000-03-01', 21, '2', '2', 'Senthil kumar', 'Mechanical technion', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104080015', '1', '1', 'upload_files/candidate_tracker/98836292459_CV.docx', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-08 01:17:12', 1, '2021-04-08 01:26:17', 0, NULL, 1),
(4285, 'Kavya s', '4', '9176340449', '', 'kavya.sri9176@gmail.com', '2001-03-21', 20, '2', '2', 'J Srinivasan', 'Lathe work', 70000.00, 1, 0.00, 13000.00, 'No.19/49 senthil nagar,2nd main road chinna Por', 'No.19/49 senthil nagar,2nd Mhinn,Chennai 600116', '2104080016', '1', '1', 'upload_files/candidate_tracker/4598075574_S.Kavya.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 02:14:27', 8, '2021-04-08 05:54:28', 0, NULL, 1),
(4286, 'Uma Mageswaran', '17', '9884211084', '', 'mageswaranuma@gmail.com', '1981-05-11', 39, '2', '1', 'Deepthi', 'Software Engineer', 70000.00, 1, 75000.00, 60000.00, 'Kanchipuram', 'Kanchipuram', '2104080017', '16', '2', 'upload_files/candidate_tracker/56854357940_Resume - Uma Mageswaran -2020.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '2', '0', '1', '1', '0', '2', '2021-05-04', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 02:59:26', 1, '2021-04-08 03:03:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4287, 'abi jenifer', '4', '8680045864', '', 'jerlinabi0612@gmail.com', '2001-01-12', 20, '2', '2', 'amuldoss', 'driver', 70000.00, 1, 10000.00, 12000.00, 'dindivanam', 'ekkatuthangal', '2104080018', '1', '2', 'upload_files/candidate_tracker/99928120531_A.Abi Jenifer (1).pdf', NULL, NULL, '2021-04-08', 0, '', '3', '8', '1970-01-01', 126312.00, '', '2', '1970-01-01', '1', 'CTC - 126312, Gross-10526,TH-10000 for priyanka team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 03:05:34', 7, '2021-04-11 03:52:06', 0, NULL, 1),
(4288, 'KEERTHIKA PUGAZHENDI', '28', '8925381294', '', 'keerthipugazh95@gmail.com', '1995-09-16', 25, '2', '2', 'Pugazhendi D', 'Government', 1.00, 1, 0.00, 20000.00, 'Tambaram Chennai', 'Tambaram', '2104080019', '1', '1', 'upload_files/candidate_tracker/11111642142_1617875938014_KEERTHIKA P (1).pdf', NULL, NULL, '2021-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-08 03:20:45', 1, '2021-04-08 03:29:54', 0, NULL, 1),
(4289, 'Wasil raseem', '4', '9789820321', '', 'wasilraseen985@gmail.com', '2000-05-02', 20, '2', '2', 'Abul hassan', 'Telecaller', 25000.00, 1, 20000.00, 17000.00, 'Porur', 'Porur', '2104080020', '16', '2', 'upload_files/candidate_tracker/98284262580_CV_2021-04-07-104746.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '1', 'not suitable for telesales', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 03:22:58', 1, '2021-04-08 03:29:15', 0, NULL, 1),
(4290, 'mohamed aslam', '4', '7845375490', '6374113215', 'mdam6244@gmail.com', '1997-05-21', 23, '2', '2', 'thameem ansari', 'ac mech', 25000.00, 2, 0.00, 13000.00, 'mayakulam', 'manadi', '2104080021', '1', '1', 'upload_files/candidate_tracker/242627404_aslam pg cv.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'native language and his pronunciation was not good. will not suite for calling.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-08 03:31:26', 50, '2021-04-08 03:43:19', 0, NULL, 1),
(4291, '', '0', '8767877678', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104080022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-08 04:11:51', 0, NULL, 0, NULL, 1),
(4292, '', '0', '7890765434', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104080023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-08 04:20:06', 0, NULL, 0, NULL, 1),
(4293, 'Gayathri.M', '4', '7418966594', '9445810877', 'gayusri98@gmail.com', '1998-03-06', 23, '2', '2', 'Mohan.K', 'MTC BUS DRIVER', 35000.00, 1, 8500.00, 15000.00, 'Chennai', 'Chrompet', '2104080024', '1', '2', 'upload_files/candidate_tracker/53233457591_gayu resume.docx', NULL, NULL, '2021-04-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, will not suite for crm', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 06:25:01', 1, '2021-04-10 11:24:32', 0, NULL, 1),
(4294, 'A.jayapriya', '4', '7868908360', '8056045218', 'jayapriya31199@gmail.com', '1999-11-03', 21, '2', '2', 'E.Arul', 'Bakery master', 180000.00, 1, 0.00, 12000.00, 'Chennai', 'Old Washermanpet', '2104080025', '1', '1', 'upload_files/candidate_tracker/85987221230_JAYAPRIYA resume-converted.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up done her beautician course and looking Relevant profile, time being she is looking for job', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 06:25:14', 1, '2021-04-10 11:31:40', 0, NULL, 1),
(4295, 'Murlidaran M', '8', '7904528174', '9442060138', 'mmmdaran04@gmail.com', '1993-10-29', 27, '2', '2', 'Manivannan m', 'Retired', 500000.00, 1, 9736.00, 15000.00, 'Chennai', 'Chennai', '2104080026', '1', '2', 'upload_files/candidate_tracker/56488374219_MURLIDARAN.M(1).pdf', NULL, NULL, '2021-04-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'done his nism coures apart from this he knows nothind, for the past 4 yrs he was preparing for bank exams.', '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 06:36:21', 1, '2021-04-08 06:41:45', 0, NULL, 1),
(4296, 'Madhumitha S', '23', '7010798772', '9944336962', 'Madhusekar311@gmail.com', '1998-03-11', 23, '2', '2', 'Sekar', 'Assistant engineer, state government', 55000.00, 1, 0.00, 13000.00, 'Thanjavur', 'Chennai', '2104080027', '1', '1', 'upload_files/candidate_tracker/29179573726_Madhumitha resume .pdf', NULL, NULL, '2021-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Appeared for UI/UX, no relevant knowledge ,into App Development but not into Reactnative\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-08 07:03:05', 1, '2021-04-08 10:23:42', 0, NULL, 1),
(4297, 'Giridharan J', '4', '9047246722', '', 'girijawahar.m@gmail.com', '1997-08-09', 23, '2', '2', 'Jawahar M', 'Car machine', 15000.00, 1, 10500.00, 15000.00, 'Mayiladuthurai', 'Poonameella', '2104080028', '1', '2', 'upload_files/candidate_tracker/43068540809_GIRI RESUME - Copy.doc', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 07:34:14', 1, '2021-04-08 07:39:32', 0, NULL, 1),
(4298, 'S.Rajalakshmi', '4', '8682888012', '7418209477', 'rajimoorthy1597@gmail.com', '1997-06-15', 23, '2', '2', 'Gomathi', 'Housewife', 25000.00, 3, 100000.00, 15000.00, 'Chennai', 'Chennai', '2104080029', '1', '2', 'upload_files/candidate_tracker/95880339130_Adobe Scan Apr 09, 2021.pdf', NULL, NULL, '2021-04-09', 2, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'looking for non voice. will not suite for calling.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 08:26:17', 1, '2021-04-09 12:29:33', 0, NULL, 1),
(4299, '', '0', '7358085813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104080030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-08 11:54:16', 0, NULL, 0, NULL, 1),
(4300, 'G.Mahalakshmi', '4', '9080625479', '9600146542', 'mahalakshmi060598@gmail.com', '1998-05-06', 22, '2', '2', 'Rajeshwari', '96000', 8000.00, 1, 0.00, 14000.00, 'Nandambakkam', 'Nandambakkam', '2104090001', '1', '1', 'upload_files/candidate_tracker/10017941191_G.MAHALAKSHMI.docx', NULL, NULL, '2021-04-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested will not join', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-09 10:31:06', 50, '2021-04-09 02:59:10', 0, NULL, 1),
(4301, 'Prabhavathi', '4', '9025994991', '6385504912', 'Prabhavathima@gmil.com', '1996-05-12', 24, '2', '2', 'Malarkodi', '100000', 10000.00, 0, 14000.00, 15000.00, 'Trichy', 'ekkattudhangal', '2104090002', '1', '2', 'upload_files/candidate_tracker/75570389806_IMG_20201201_221029.pdf', NULL, NULL, '2021-04-09', 2021, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not handle pressure, looking for non Target job.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-09 10:32:53', 50, '2021-04-09 11:21:07', 0, NULL, 1),
(4302, 'ks bharadwaj', '4', '8778795501', '7358420163', 'mswaaj@gmail.com', '1995-01-09', 26, '2', '2', 'rk shanmugam', 'retired', 30000.00, 1, 10000.00, 13000.00, 'chennai', 'chennai', '2104090003', '1', '2', 'upload_files/candidate_tracker/21290927870_Bharad Resume (1).pdf', NULL, NULL, '2021-04-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very hyper active and he was into cine field. will not sustain for long period. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-09 10:57:02', 50, '2021-04-09 11:27:56', 0, NULL, 1),
(4303, 'S.Asha', '4', '9499911316', '6382294645', 'ashasathaiya@gmail.com', '1999-07-20', 21, '1', '2', 'G.Sathaiya', 'Tailor', 12000.00, 1, 0.00, 13000.00, '211,Amman Koil Street, Seven Wells, Chennai-600001', '211,Amman koil street, seven wells, chennai-600001', '2104090004', '', '1', 'upload_files/candidate_tracker/56292502662_asha resume.pdf', NULL, NULL, '2021-04-09', 0, 'P1152', '3', '60', '2021-04-19', 126312.00, '', '6', '2021-04-20', '2', 'Selected for Priyanka Team,CTc - 126312,Gross - 10526 TH - 10000', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-09 11:01:46', 60, '2021-04-17 02:46:51', 0, NULL, 1),
(4304, 'Vivek C', '16', '9791009279', '', 'vivek11surya@gmail.com', '1993-05-31', 27, '2', '2', 'Viswanathan M K', 'Manager', 30000.00, 0, 0.00, 17000.00, 'Valasaravakkam', 'Valasaravakkam', '2104090005', '1', '1', 'upload_files/candidate_tracker/44345659899_Vivek Res.docx', NULL, NULL, '2021-04-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'comm is good, very basics in excel. ', '3', '1', '', '1', '1', '', '2', '2021-04-12', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-09 11:03:12', 50, '2021-04-09 11:20:48', 0, NULL, 1),
(4305, 'Prashanth kumar', '6', '9791047288', '8778995278', 'prashanth.murugan869@gmail.com', '1994-12-21', 26, '2', '2', 'S.murugan', 'My Father work stone writter', 100000.00, 2, 13500.00, 17000.00, '15/22 Kumaran nager 3rd Street kaladipet TVT', 'Chennai', '2104090006', '1', '2', 'upload_files/candidate_tracker/43211294798_1615960589022_prashanth kumar resume 2021.docx', NULL, NULL, '2021-04-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'collection exe joined and Completed training.', '5', '1', '0', '1', '1', '0', '2', '2021-04-12', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-09 11:21:53', 1, '2021-04-09 12:20:10', 0, NULL, 1),
(4306, 'v sarath kumar', '6', '9566090407', '', 'trippyboysarath@gmail.com', '2006-04-09', 15, '1', '2', 'm.vijayakumar', 'driver', 15000.00, 2, 15000.00, 16000.00, 'chennai', 'chennai', '2104090007', '', '2', 'upload_files/candidate_tracker/4661077762_Sarath_Resume_Format2 (1).pdf', NULL, NULL, '2021-04-09', 40, 'p1177', '3', '60', '2021-04-19', 189468.00, '', '3', '2021-04-26', '1', 'Selected for Syed Team,CTC - 189468 Gross - 15789, TH - 15000', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-09 11:27:27', 60, '2021-04-17 04:17:50', 0, NULL, 1),
(4307, '', '0', '9444160861', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104090008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-09 11:44:06', 0, NULL, 0, NULL, 1),
(4308, 'mary agnes. b', '28', '9566106373', '9962411175', 'agnesmary25@gmail.com', '1992-04-25', 28, '2', '1', 'rajesh', 'associated director in film industry', 20000.00, 0, 12000.00, 18000.00, 'periyar nagar', 'aynavaram', '2104090009', '1', '2', 'upload_files/candidate_tracker/39173284689_I am sharing', NULL, NULL, '2021-04-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '2yr gap, looking for job bcoz she is bored at home. newly married. exp is 18k', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-09 11:59:17', 50, '2021-04-09 12:24:44', 0, NULL, 1),
(4309, 'Monisha R', '28', '8838401679', '', 'monisharavisankar@gmail.com', '1995-11-17', 25, '2', '2', 'Ravi sankar', 'LIC agent', 30000.00, 1, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2104090010', '1', '1', 'upload_files/candidate_tracker/39646126899_1614763092033_RESUME.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our role', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-09 01:13:07', 1, '2021-04-09 01:47:57', 0, NULL, 1),
(4310, 'Sakthi P', '13', '8925771127', '', 'sakthiikeerthu@gmail.com', '2001-07-08', 19, '2', '2', 'Hemavathi P', 'Business', 20000.00, 1, 0.00, 12000.00, 'No. 6,A P Road,choolai Chennai-600112', 'No. 6,A P Road,Choolai Chennai-600112', '2104090011', '1', '1', 'upload_files/candidate_tracker/32868671759_CV_SAKTHI.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Little bit knowledge in HTML CSS ,No Javascript knowledge not open for Agreement too', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-09 02:24:21', 1, '2021-04-09 02:30:03', 0, NULL, 1),
(4311, 'Keerthana', '4', '7358401520', '', 'Kkeerthana0520@gmail.com', '1997-12-20', 23, '2', '1', 'Kumaresan', 'driver', 20000.00, 1, 18000.00, 20000.00, 'Chennai', 'chennai', '2104090012', '1', '2', 'upload_files/candidate_tracker/53678908630_keerthi resume updated.pdf', NULL, NULL, '2021-04-09', 0, '', '3', '8', '2021-04-12', 214740.00, '', '5', '1970-01-01', '2', 'Selected as Sourcing TL - 214740\nGross- 17895 TH - 17000', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-09 02:28:37', 7, '2021-04-11 03:52:32', 0, NULL, 1),
(4312, 'M.keerthana', '4', '7708287475', '', 'KeerthiKeerthu318@gmail.com', '2000-01-18', 21, '2', '2', 'K.Murthy', 'Electrician', 25000.00, 1, 0.00, 13000.00, 'No.1980 TNHB kakkalur byepass road Thiruvallur', 'No.1980 TNHB kakkalur byepass road Thiruvallur', '2104090013', '1', '1', 'upload_files/candidate_tracker/69149743595_keerthi_resume.pdf', NULL, NULL, '2021-04-09', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for this profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-09 02:31:31', 50, '2021-04-09 03:00:58', 0, NULL, 1),
(4313, '', '0', '9840794947', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104090014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-09 02:33:23', 0, NULL, 0, NULL, 1),
(4314, 'Manoj', '28', '9092026013', '7358882939', 'manojkumar1198@gmail.com', '1998-11-11', 22, '2', '2', 'Ravisankar', 'Lic agemt', 30000.00, 1, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2104090015', '1', '1', 'upload_files/candidate_tracker/80946707079_manoj.r resume.pdf', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-09 04:36:23', 1, '2021-04-09 04:39:18', 0, NULL, 1),
(4315, 'Radha krishnan J', '11', '8925466143', '8015194415', 'radhakrishnan4428@gmail.com', '2000-05-22', 20, '2', '2', 'Jagadeesh', 'Tool maker', 250000.00, 1, 0.00, 15000.00, 'Chennai', 'Mogappair', '2104090016', '1', '1', 'upload_files/candidate_tracker/20580521454_krishnan resume.pdf', NULL, NULL, '2021-04-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-09 04:42:40', 1, '2021-04-09 04:48:18', 0, NULL, 1),
(4316, '', '0', '9841664259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104090017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-09 05:06:08', 0, NULL, 0, NULL, 1),
(4317, '', '0', '7401773587', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104090018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-09 06:41:02', 0, NULL, 0, NULL, 1),
(4318, 'Diwakar R S', '28', '9786423073', '', 'diwakar.r.s97@gmail.com', '1997-05-21', 23, '2', '2', 'Rajasigamani', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2104090019', '1', '1', 'upload_files/candidate_tracker/98536467245_diwakar resume (1).pdf', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-09 09:50:08', 1, '2021-04-09 09:55:39', 0, NULL, 1),
(4319, 'jayasri', '13', '7373557074', '', 'jayasree.pandian@gmail.com', '1994-12-11', 26, '2', '2', 'pandian', 'junior web developer', 12000.00, 2, 12000.00, 20000.00, 'chidambaram', 'chidambaram', '2104100001', '1', '2', 'upload_files/candidate_tracker/81277798511_JP_Resume (1).pdf', NULL, NULL, '2021-04-12', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Knowledge in HTML CSS, High Pay Expectation1 yr Exp', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-10 06:35:14', 1, '2021-04-10 06:39:21', 0, NULL, 1),
(4320, 'SRINIVASAN', '20', '8072413657', '9940531513', 'randyseenu77@gmail.com', '1997-12-07', 23, '2', '2', 'SENTHILVEL', 'CONSURABLE LOAN', 27000.00, 1, 11500.00, 17000.00, 'No.9 school Street 5th cross jnnai-83', 'Chennai', '2104100002', '1', '2', 'upload_files/candidate_tracker/77216377350_srinivasan.curriculam vitae.word.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales profile.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-10 10:16:57', 1, '2021-04-10 10:29:21', 0, NULL, 1),
(4321, 'Elakkiya', '4', '8056192805', '9578982543', 'elakkiyakrishnan7197@gmail.com', '1997-01-07', 24, '3', '2', 'Krishnan.s', 'Driver', 20000.00, 2, 12800.00, 13.00, 'Tindivanam', 'MM nagar', '2104100003', '', '2', 'upload_files/candidate_tracker/81906439631_ELAKKIYA-KRISHNAN-RESUME.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Confidence Level	very low \nnot suitable for telesales', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 10:21:36', 1, '2021-04-10 10:28:42', 0, NULL, 1),
(4322, 's selva praveen', '30', '7401813707', '', 'selva07praveen@gmail.com', '1996-09-07', 24, '2', '2', 's selva raj', 'tamilnadu police', 40000.00, 1, 15000.00, 20000.00, 'chennai', 'chennai', '2104100004', '1', '2', 'upload_files/candidate_tracker/55163336667_Praveen Selva Resume 2021.docx', NULL, NULL, '2021-04-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for this profile. knows only basics in stocks, doing his own trading and lost funds.', '9', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 10:22:25', 50, '2021-04-10 11:14:01', 0, NULL, 1),
(4323, '', '0', '7894561230', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104100005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-10 10:27:03', 0, NULL, 0, NULL, 1),
(4324, 'Kalaiselvi', '4', '9360122765', '8056192805', 'kalai861999@gmail.com', '1999-06-08', 21, '2', '2', 'T.Rajendran', 'Pillow export', 20000.00, 1, 0.00, 12000.00, 'Kumbakonam', 'MM nagar', '2104100006', '1', '1', 'upload_files/candidate_tracker/17113809767_Adobe Scan Jan 18, 2021 (1).pdf', NULL, NULL, '2021-04-10', 0, '', '3', '8', '2021-04-15', 132636.00, '', '3', '2021-05-06', '2', 'for muthu teamCTC- 1,32,636 Gross - 11053 Th - 10500', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 10:36:31', 7, '2021-04-13 06:26:25', 0, NULL, 1),
(4325, 'M.Pathmanaban', '4', '6374773186', '', 'Mpathmanabanpowerbarath@gmail.com', '2000-10-24', 20, '2', '2', 'Muthuraman', 'Farmer', 12000.00, 1, 0.00, 11000.00, 'Nolambur', 'Neelankarai', '2104100007', '1', '1', 'upload_files/candidate_tracker/72197394549_pathmanaban 2021.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 10:52:00', 1, '2021-04-10 11:39:25', 0, NULL, 1),
(4326, 'Karthikeyan.K', '4', '7299466370', '8667834070', 'keyank953@gmail.com', '1997-06-06', 23, '2', '2', 'Kalyanasundar.B', 'Daily wage', 12000.00, 1, 14000.00, 15000.00, 'West mambalam', 'West mambalam', '2104100008', '1', '2', 'upload_files/candidate_tracker/18461218726_updated Resume-karthikeyan.docx', NULL, NULL, '2021-04-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for CRM,  no bile as RE. exp is14k', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 11:01:24', 50, '2021-04-10 11:14:16', 0, NULL, 1),
(4327, 'Venkataramanan k', '4', '8667834070', '7299466370', 'charlescool3108@gmail.com', '1997-02-19', 24, '2', '2', 'Lakshmi', 'Cooking work', 10000.00, 0, 14000.00, 15000.00, 'Tambaram', 'Tambaram', '2104100009', '1', '2', 'upload_files/candidate_tracker/34748115379_VENKAT1.doc', NULL, NULL, '2021-04-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not int in field sales, looking for calling but expt is 15k. will not suite for this package', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 11:09:31', 50, '2021-04-10 11:27:45', 0, NULL, 1),
(4328, 'Amalan C', '30', '7305434966', '7904668226', 'amalc.21@gmail.com', '1990-05-29', 30, '2', '2', 'Aabaranam', 'House wife', 25000.00, 4, 25000.00, 30000.00, 'Tirunelveli', 'Chennai', '2104100010', '1', '2', 'upload_files/candidate_tracker/85921597016_14215_Amal Resume new.doc', NULL, NULL, '2021-04-12', 0, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'can try for 1st start-vasu', '9', '2', '', '1', '1', '', '2', '2021-04-19', '2', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 11:10:07', 50, '2021-04-12 10:50:10', 0, NULL, 1),
(4329, 'Gowsalya. M', '4', '9025151571', '', 'gowwkitty134@gmail.com', '2000-01-04', 21, '2', '2', 'Muniyammal', 'Housewife', 5000.00, 1, 0.00, 10.00, 'Ramanathapuram', 'Tambaram', '2104100011', '1', '2', 'upload_files/candidate_tracker/28020455862_1583240657943600_Gowshalya_col-3.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Nonvoice', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 11:10:42', 50, '2021-04-10 11:59:52', 0, NULL, 1),
(4330, 'sairam', '6', '9677117409', '7904670527', 'saipandu9596@gmail.com', '1995-06-04', 25, '2', '2', 'sukumar', 'watercan business', 18000.00, 2, 0.00, 12000.00, 'chennai', 'palavakkam', '2104100012', '1', '1', 'upload_files/candidate_tracker/94281473242_SAIRAM.docx', NULL, NULL, '2021-04-10', 0, '', '3', '60', '2021-04-19', 156000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team CTC - 156000 Gross - 13000 TH - 12350', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 11:36:24', 60, '2021-04-17 04:11:04', 0, NULL, 1),
(4331, 'Mohamed thariqe', '4', '9791889492', '', 'Thariq880@gmail.com', '1999-01-07', 22, '2', '2', 'Mohamed naina', 'Store keeper', 10000.00, 2, 0.00, 12000.00, 'Triplicane', 'Triplicane', '2104100013', '1', '1', 'upload_files/candidate_tracker/27578692212_1602852146633Resume_Mohamed.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for any current , not speaking up and will not suite for calling and sales', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 11:43:22', 50, '2021-04-10 12:07:59', 0, NULL, 1),
(4332, 'VILMAR', '4', '8270797112', '8608020406', 's.j.vilmar18@gmail.com', '1999-08-18', 21, '4', '2', 'SELVARAJ', 'Day worker', 20000.00, 3, 0.00, 12000.00, '24/7,kamaraj Street,VVR Nagar,sayalgudi', 'Kotturpuram', '2104100014', '', '1', 'upload_files/candidate_tracker/10861195046_VILMAR NR.pdf', NULL, NULL, '2021-04-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-10 12:54:41', 1, '2021-04-10 01:01:27', 0, NULL, 1),
(4333, '', '0', '7338995571', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104100015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-10 01:15:11', 0, NULL, 0, NULL, 1),
(4334, 'raviji', '5', '7708806802', '', 'miltonveera3@gmail.com', '1991-12-04', 29, '2', '2', 'raj', 'rtd', 30000.00, 1, 28000.00, 30000.00, 'aynavaram', 'aynavaram', '2104100016', '3', '2', 'upload_files/candidate_tracker/6476142923_raviji.pdf', NULL, NULL, '2021-04-09', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'check for RM, has exp in banking and finance. fresher for us.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-10 01:28:50', 7, '2021-04-10 01:39:23', 0, NULL, 1),
(4335, 'Manickaraj', '13', '9944468055', '', 'manickarajj06@gmail.com', '1991-06-01', 29, '3', '2', 'Subbiah', 'Self busines', 10000.00, 30, 0.00, 15000.00, 'Sathankulam', 'Porur', '2104100017', '', '1', 'upload_files/candidate_tracker/75413371194_Resume (2).docx', NULL, NULL, '2021-04-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude issue, sustainability doubt, High CTC Expectation', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-10 01:39:59', 60, '2021-04-17 10:15:59', 0, NULL, 1),
(4336, 'S.Meena', '7', '6380249146', '9884319723', 'smeenasekar28@gmail.com', '1994-12-14', 26, '2', '2', 'N.sekar', 'Culli', 15000.00, 1, 0.00, 16000.00, 'Porur', 'Porur', '2104100018', '1', '2', 'upload_files/candidate_tracker/32334006330_Meena resume 2021.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'will not suite for MF', '7', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-10 02:41:22', 1, '2021-04-10 03:04:42', 0, NULL, 1),
(4337, 'Prashanth krishna', '30', '9840132259', '8825415745', 'Prashanthk563@yahoo.in', '1995-04-29', 25, '2', '2', 'S.visvanathan', 'Retired', 100000.00, 1, 17334.00, 28000.00, 'Chennai', 'Chennai', '2104100019', '1', '2', 'upload_files/candidate_tracker/1205030434_Resume_prashanth.docx', NULL, NULL, '2021-04-12', 0, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'only for ops - fresher to stcoks', '9', '2', '', '1', '1', '', '2', '2021-04-19', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 02:57:47', 50, '2021-04-12 10:44:47', 0, NULL, 1),
(4338, 'Chaithra', '28', '9743770412', '8122160821', 'chaithrajayababu@gmail.com', '1992-07-22', 28, '2', '1', 'Rajeshwaran', 'Business', 20000.00, 0, 15000.00, 30000.00, 'Annanur', 'Annanur', '2104100020', '1', '2', 'upload_files/candidate_tracker/76182471752_Chaithra.docx', NULL, NULL, '2021-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Distance too long, Not much Relevant ', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-10 04:21:22', 1, '2021-04-11 03:21:49', 0, NULL, 1),
(4339, '', '0', '7397289514', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104100021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-10 04:52:50', 0, NULL, 0, NULL, 1),
(4340, 'Ramya S', '28', '7200216190', '7868857642', 'ramya23.sbm@gmail.com', '1994-02-23', 27, '2', '1', 'Rajkumar', 'Assistant Manager in Amazon Kiosk', 2800.00, 2, 30000.00, 30000.00, 'Dindigul', 'Velachery, Chennai', '2104100022', '1', '2', 'upload_files/candidate_tracker/89538195662_Ramya - Resume.doc', NULL, NULL, '2021-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is average, only into report Analyst Not much suits for our role', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-10 04:58:35', 1, '2021-04-10 10:19:24', 0, NULL, 1),
(4341, 'R.Arun Shankar', '4', '9940315545', '8072930060', 'Ajheddys@gmail.com', '1998-07-16', 22, '2', '2', 'Ramaiah', 'Lathe worker', 35000.00, 1, 0.00, 12000.00, 'Mamallapuram', 'Thuraipakkam', '2104100023', '1', '1', 'upload_files/candidate_tracker/82446061216_Arun_Resume_Format2.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling, very slow and gap while speaking', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 05:11:29', 1, '2021-04-10 05:16:37', 0, NULL, 1),
(4342, 'Amal S', '28', '9746392721', '', 'amalsnair77@gmail.com', '1998-03-06', 23, '2', '2', 'Sasikumar R', 'Business', 30000.00, 1, 0.00, 15000.00, 'Kottayam', 'Kottayam', '2104100024', '1', '1', 'upload_files/candidate_tracker/14214641644_Amal S_Saintgits college of Engineering.pdf', NULL, NULL, '2021-04-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-10 05:46:24', 1, '2021-04-10 05:49:05', 0, NULL, 1),
(4343, 'Ajay', '22', '8124327710', '', 'ayaj8814@gmail.com', '2000-02-10', 21, '2', '2', 'Anadhan. M', 'Supervisor', 12000.00, 1, 0.00, 5000.00, 'Porur', 'Porur', '2104100025', '1', '1', 'upload_files/candidate_tracker/15328042886_Resume AJ01.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Appeared for Intern,Passout year to be 2022,will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-10 05:50:59', 1, '2021-04-10 06:19:09', 0, NULL, 1),
(4344, 'Amal S', '28', '7012850142', '9746392721', 'amalsnair77@gmail.com', '1998-03-06', 23, '2', '2', 'Sasikumar R', 'Business', 30000.00, 1, 0.00, 15000.00, 'Kottayam', 'Kottayam', '2104100026', '1', '1', 'upload_files/candidate_tracker/60841529788_Amal S_Saintgits college of Engineering.pdf', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-10 06:04:46', 1, '2021-04-10 06:07:19', 0, NULL, 1),
(4345, 'D.j.shyam kumar', '4', '9003495948', '9710465726', 'Shyam.jayakumar0219@gmail.com', '1999-02-19', 22, '2', '2', 'D.jayakumar', 'Post man', 100000.00, 1, 0.00, 10000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2104100027', '1', '1', 'upload_files/candidate_tracker/76135943331_Shyamkumar Resume.docx', NULL, NULL, '2021-04-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Not Turned After Lunch.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-10 10:32:02', 1, '2021-04-12 11:52:29', 0, NULL, 1),
(4346, 'Vignesh E', '7', '8667800484', '9940119974', 'Vigneshelumalai82@gmail.com', '1996-03-18', 25, '2', '2', 'Elumalai', 'Milk business', 20000.00, 1, 11000.00, 13000.00, 'Padi', 'Padi', '2104110001', '1', '2', 'upload_files/candidate_tracker/54752461287_Vignesh Curriculam vitae .pdf', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-11 10:56:32', 1, '2021-04-11 11:05:37', 0, NULL, 1),
(4347, '', '0', '8124643554', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104120001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-12 05:57:39', 0, NULL, 0, NULL, 1),
(4348, 'Amalan C', '30', '7904668226', '7305434966', 'amalc.21@gmail.com', '1990-05-29', 30, '2', '2', 'Aabaranam', 'House wife', 25000.00, 4, 25000.00, 30000.00, 'Tirunelveli', 'Chennai', '2104120002', '1', '2', 'upload_files/candidate_tracker/53082592728_14215_Amal Resume new.doc', NULL, NULL, '2021-04-12', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '9', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 10:31:39', 50, '2021-04-12 10:44:16', 50, '2021-04-12 10:49:59', 0),
(4349, 'M.Gopi', '4', '8682854149', '', 'Gopiat999@gmail.com', '1997-11-09', 23, '2', '2', 'S.murugan', 'Dealer', 10000.00, 1, 12000.00, 17000.00, 'Avadi', 'Avadi', '2104120003', '1', '2', 'upload_files/candidate_tracker/38104386752_Gopi resume 2 Dep.docx', NULL, NULL, '2021-04-12', 15, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'pls check for dealer', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 10:44:26', 50, '2021-04-12 11:38:13', 0, NULL, 1),
(4350, 'Praveen kumar', '30', '9751229732', '', 'praveenppk.kumar@gmail.com', '1997-03-25', 24, '2', '2', 'Palani kumar', 'Metal worker', 40000.00, 1, 2.00, 3.00, 'MADURAI', 'MADURAI', '2104120004', '1', '2', 'upload_files/candidate_tracker/28440587468_P.Praveen Kumar.pdf', NULL, NULL, '2021-04-12', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '9', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 10:46:20', 50, '2021-04-12 11:38:53', 0, NULL, 1),
(4351, 'Yuvahariharan', '4', '8667816587', '9442222236', 'Harih311031@gmail.com', '1997-11-03', 23, '2', '2', 'Ravi', 'Business', 25000.00, 2, 0.00, 12500.00, 'Thiruvannamalai', 'Ambattur', '2104120005', '1', '1', 'upload_files/candidate_tracker/70700343187_1613531119211Resume_Yuvahariharan.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for telecalling, very low voice.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 10:56:26', 50, '2021-04-12 11:37:46', 0, NULL, 1),
(4352, 'Parthiban.s', '6', '8124600570', '8667816587', 'parthiparthiban529@gmail.com', '1997-02-04', 24, '2', '2', 'E.sundaramoorthy', 'car driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104120006', '1', '1', 'upload_files/candidate_tracker/24047884037_0_parthiban resume(1)(1).pdf', NULL, NULL, '2021-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'We hold the candidate 4 months back for suthagar team and now there is no response from the candidate. Tried reaching him couple of time.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 10:59:45', 50, '2021-04-12 01:05:06', 0, NULL, 1),
(4353, 'Surya s', '4', '8754078388', '9047113949', 'www.suryakrish141@gmail.com', '1998-09-10', 22, '2', '2', 'Sivakumar R', 'Government employee', 400000.00, 1, 0.00, 12000.00, 'Ariyalur', 'T Nagar', '2104120007', '1', '1', 'upload_files/candidate_tracker/51680977847_MY RESUME .pdf', NULL, NULL, '2021-04-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up and very slow. will not suite for calling.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 10:59:51', 50, '2021-04-12 11:28:26', 0, NULL, 1),
(4354, 'K.Thamizhselvan', '4', '7598842495', '', 'arunthamizh29@gmail.com', '1999-09-29', 21, '2', '2', 'R.Kumaravel', 'Farmer', 25000.00, 3, 0.00, 15000.00, 'Ariyalur', 'Chennai', '2104120008', '1', '1', 'upload_files/candidate_tracker/85705441343_RKT RESUME.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very low voice and no confidence level, rejected.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 11:00:32', 50, '2021-04-12 11:36:50', 0, NULL, 1),
(4355, 'suresh s', '7', '9790818430', '9952084510', 'sureshsrinivasan997@gmail.com', '1995-04-09', 26, '2', '2', 'srinivasan g', 'cooli', 15000.00, 4, 12000.00, 15000.00, 'chennai', 'triplicane', '2104120009', '1', '2', 'upload_files/candidate_tracker/99319303623_SureshSrinivasan Resume 2.doc', NULL, NULL, '2021-04-12', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no degree, poor communication and will not suite for this profile.', '7', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-12 11:16:41', 1, '2021-04-12 11:49:49', 0, NULL, 1),
(4356, 'K.Kokiladevi', '7', '9176181681', '', 'devikoki1996@gmail.com', '1995-01-18', 27, '2', '2', 'M.KUMAR', 'Timber', 50000.00, 2, 15000.00, 20000.00, 'Kattumannar koil', 'PTC , Thoraipakkam', '2104120010', '1', '2', 'upload_files/candidate_tracker/8688756649_KOKILADEVI.K .pdf', NULL, '1', '2022-03-01', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 5m exp in MF looking for salary and carrier growth. will not sustain her sal expt is 20k. ', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-12 11:26:41', 1, '2022-03-01 10:41:42', 0, NULL, 1),
(4357, 'Subash shankar', '6', '9597614247', '9597372134', 'santhoshsivan1704@gmail.com', '1999-04-17', 21, '2', '2', 'Ragavan', 'Customer relationship manager', 30000.00, 0, 0.00, 15000.00, 'Tirunelveli', 'Tambaram', '2104120011', '1', '1', 'upload_files/candidate_tracker/68399035098_Subash_Resume-01.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustainability doubts dropped ', '5', '1', '', '1', '1', '', '2', '2021-04-17', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 11:33:29', 50, '2021-04-12 01:20:28', 0, NULL, 1),
(4358, 'K. Soundharrajan', '4', '9751911229', '6369154653', 'Soundharr74@gmail.com', '2000-06-25', 20, '3', '2', 'Kamaraj', 'Customer Relationship manager', 25000.00, 3, 0.00, 13000.00, 'Dhamapuri', 'Tambaram', '2104120012', '', '1', 'upload_files/candidate_tracker/99218164435_soundhar.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'He could not speak tamil fluently, he knpw oly rajasthani language.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-12 11:37:25', 1, '2021-04-12 11:47:55', 0, NULL, 1),
(4359, 'Poornachander', '4', '6385107113', '9003495948', 'poornacan@gmail.com', '1996-03-13', 25, '2', '2', 'Raju', 'Manager', 100000.00, 1, 0.00, 10000.00, 'Besant nagar', 'Besant nagar', '2104120013', '1', '1', 'upload_files/candidate_tracker/13303224214_0_POORNA NEW RES.docx', NULL, NULL, '2021-04-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned after lunch.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-12 11:44:11', 1, '2021-04-12 11:53:55', 0, NULL, 1),
(4360, 'vimal raaj', '4', '9710881038', '7550060866', 'wilsonvimal288@gmail.com', '1998-07-25', 22, '2', '2', 'gopi kumar', 'business', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2104120014', '1', '1', 'upload_files/candidate_tracker/74523506220_vimal.resume (2).docx', NULL, NULL, '2021-04-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process, ideal in home and looking for job.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 11:44:28', 50, '2021-04-12 12:53:09', 0, NULL, 1),
(4361, 'lakshmikanthan', '4', '9884931295', '', 'lakshmikanthan8034@gmail.com', '1995-12-03', 25, '2', '2', 'nagalingam d', 'business', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2104120015', '5', '1', 'upload_files/candidate_tracker/40888407997_1612779099930_LK RESUME cOMPLETED (1).docx', NULL, NULL, '2021-04-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '1', '1', '0', '1', '1', '0', '2', '2021-04-19', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-12 11:58:01', 1, '2021-04-12 12:06:13', 0, NULL, 1),
(4362, 'Ashok kumar', '4', '9962051833', '', 'ashismith95@gmail.com', '1995-10-12', 25, '1', '2', 'Vijayakumar', 'Petrol bunk', 12000.00, 1, 0.00, 10000.00, 'Tambaram', 'Tambaram camp road', '2104120016', '', '1', 'upload_files/candidate_tracker/67278535498_0_0_1615532191853_1611675959267_Resume.docx', NULL, NULL, '2021-04-12', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned up', '1', '2', '0', '1', '1', '0', '2', '2021-04-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-12 12:02:28', 1, '2021-04-12 12:10:57', 0, NULL, 1),
(4363, 'Jareena begum', '4', '7338706466', '8189890151', 'Jareenabegum3853@gmail', '1992-04-25', 28, '2', '2', 'Noornissa', 'Housewife', 15000.00, 2, 13000.00, 15000.00, 'Chennai', 'Triplicane', '2104120017', '1', '2', 'upload_files/candidate_tracker/60447994734_!!FORD!!.docx', NULL, NULL, '2021-04-12', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 12:04:19', 8, '2021-04-12 05:01:25', 0, NULL, 1),
(4364, 'Deepika', '28', '9865217783', '', 'Deepikarajanj6@gmail.com', '1993-11-28', 27, '2', '1', 'Lokkesh', 'IT', 35000.00, 0, 2.70, 3.70, 'Chennai', 'Chennai', '2104120018', '1', '2', 'upload_files/candidate_tracker/56342843379_1609755992719Resume_Deepika (1).pdf', NULL, NULL, '2021-04-14', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-12 12:17:50', 1, '2021-04-12 12:23:01', 0, NULL, 1),
(4365, 'ALAGARSAMY.S', '4', '8940864508', '8248138940', 'alagarmca006@gmail.com', '1993-02-12', 28, '2', '2', 'Sathan.S', 'Farmer', 15000.00, 2, 15000.00, 15000.00, 'Ennore', 'Ennore', '2104120019', '1', '2', 'upload_files/candidate_tracker/95905123235_1615992287310_1615985309145_mca.docx', NULL, NULL, '2021-04-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process, very slow and expt sal is 17k.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 01:05:11', 50, '2021-04-12 01:57:17', 0, NULL, 1),
(4366, '', '0', '9944028952', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104120020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-12 01:08:50', 0, NULL, 0, NULL, 1),
(4367, 'P.selva pandi', '16', '8939301496', '', 'Selvaleepavi1997@gmail.com', '1997-09-10', 23, '2', '2', 'Geetha arumugam', 'General manager', 5.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2104120021', '1', '2', 'upload_files/candidate_tracker/1537779493_0.PDF', NULL, NULL, '2021-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication, mail communication is not upto the mark', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 01:14:47', 50, '2021-04-12 02:55:04', 0, NULL, 1),
(4368, 'Navin KC', '28', '9626670393', '8248476173', 'navanithan9898@gmail.com', '1998-05-12', 22, '2', '2', 'Chandrasekaran KH', 'Agarbathi sales man', 25000.00, 1, 300000.00, 400000.00, 'Madurai', 'Chennai', '2104120022', '1', '2', 'upload_files/candidate_tracker/84073851673_Navin_C V.pdf', NULL, NULL, '2021-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good Agreement - 50/50 and the Exp CTC in 30K for 1.5 yrs Experience', '3', '2', '', '2', '2', '', '2', '1970-01-01', '2', '7', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-12 01:16:36', 50, '2021-04-13 12:10:51', 0, NULL, 1),
(4369, '', '0', '8248138940', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104120023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-12 01:45:44', 0, NULL, 0, NULL, 1),
(4370, '', '0', '9003205074', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104120024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-12 01:48:34', 0, NULL, 0, NULL, 1),
(4371, 'Krishna Kumar E', '22', '9600083659', '9841889117', 'krish4375@gmail.com', '1994-08-30', 26, '2', '2', 'Priya E', 'House wife', 25000.00, 2, 0.00, 15000.00, 'Chennai triplicane', 'Chennai triplicane', '2104120025', '1', '1', 'upload_files/candidate_tracker/69588835117_KRISHNA RESUME.pdf', NULL, NULL, '2021-04-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-12 03:04:09', 1, '2021-04-12 03:08:41', 0, NULL, 1),
(4372, 'amit sharma', '17', '7796002300', '', 'amitsharma050@hotmail.com', '1979-12-05', 41, '2', '1', 'bl sharma', 'retired', 40.00, 1, 40.00, 50.00, 'chennai', 'chennai', '2104120026', '16', '2', 'upload_files/candidate_tracker/50747557833_Amit sharma.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process.  ', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-12 03:52:01', 1, '2021-04-12 03:59:59', 0, NULL, 1),
(4373, '', '0', '8056254754', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104120027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-12 04:27:13', 0, NULL, 0, NULL, 1),
(4374, 'Dominic Xavier A', '28', '7338796377', '', 'xavieraventador@gmail.com', '1998-10-22', 22, '2', '2', 'Andrews J', 'Business', 10000.00, 0, 0.00, 16500.00, 'Ashok Nagar, Chennai', 'Ashok Nagar, Chennai', '2104120028', '1', '1', 'upload_files/candidate_tracker/43232634782_Moi Rezoom.pdf', NULL, NULL, '2021-04-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Is Average, Open For Any Jobs,not open for the agreement\n', '3', '1', '0', '1', '1', '0', '2', '2021-04-16', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-12 04:57:04', 1, '2021-04-12 05:02:52', 0, NULL, 1),
(4375, 'Muthukumar Palani', '28', '9944038952', '', 'muthukumarpalani97@gmail.com', '1997-09-09', 23, '2', '2', 'Palani G', 'Electrition', 15000.00, 1, 0.00, 18000.00, 'No 4 jaganathan st ,Annampalayam, Arcot 632503', '21a,jcn st , Poonamallee, Chennai.', '2104120029', '1', '1', 'upload_files/candidate_tracker/69416601796_0_MUTHUKUMAR IT RESUME.docx', NULL, NULL, '2021-04-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is just  a Manageable ,Mail Communication is poor, Sustainability Doubt,Focus into SQL DBA', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-12 05:30:35', 1, '2021-04-12 05:39:09', 0, NULL, 1),
(4376, 'Abdul hameed A', '13', '9788797800', '8148467324', 'Abdulhameed2904@gmail.com', '1998-04-29', 22, '2', '2', 'K S Asan Gani', 'PWD Retired', 50000.00, 1, 0.00, 16000.00, 'chennai', 'chennai', '2104120030', '1', '1', 'upload_files/candidate_tracker/21325443736_Abdul hameed Resume.docx', NULL, NULL, '2021-04-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-12 05:38:01', 1, '2021-04-12 05:41:30', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4377, 'Saranya', '4', '8524894529', '', 'tejusaran1819@gmail.com', '1993-10-25', 27, '2', '2', 'Kotteshwaran', 'Driver', 50000.00, 1, 0.00, 18000.00, 'No.9, Kattabomman Street, Kallikuppam-53', 'No.9, Kattabomman Street, Kallikuppam-53', '2104120031', '1', '1', 'upload_files/candidate_tracker/8996969523_Saranya Resume - Final.docx', NULL, NULL, '2021-04-17', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not exp in TC, will not suite for Any other profile', '1', '2', '', '1', '3', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 09:09:46', 50, '2021-04-17 02:17:34', 0, NULL, 1),
(4378, 'Abdul Rahim', '11', '9488855362', '', 'rahimroyal1999@gmail.com', '1999-06-16', 22, '2', '2', 'Mohamed Farook', 'Business', 30000.00, 3, 145000.00, 250000.00, 'Villupuram district', 'Villupuram district', '2104120032', '1', '2', 'upload_files/candidate_tracker/23589136967_ABDUL RAHIM RESUME.pdf', NULL, '2', '2021-11-27', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped  - RNR', '6', '1', '', '1', '1', '', '2', '2021-12-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-04-12 10:24:16', 60, '2021-11-27 10:20:34', 0, NULL, 1),
(4379, '', '0', '8925401407', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104130001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-13 05:39:02', 0, NULL, 0, NULL, 1),
(4380, '', '0', '7358695281', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104130002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-13 10:20:41', 0, NULL, 0, NULL, 1),
(4381, 'Sri Sasirekha T', '28', '7010786471', '', 'Sasirekhatsri@gmail.com', '1999-06-23', 21, '2', '2', 'Thanikasalam', 'Fisher man', 20000.00, 1, 16000.00, 30000.00, 'Tiruvallur', 'Tiruvallur', '2104130003', '1', '2', 'upload_files/candidate_tracker/95176767122_sr2k20.pdf', NULL, NULL, '2021-04-16', 14, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication, Not suits for our role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-13 10:38:45', 50, '2021-04-16 12:10:52', 0, NULL, 1),
(4382, 'Vignesh', '4', '9042591546', '8124830361', 'crazyvicky456@gmail.com', '1997-08-09', 23, '2', '1', 'Rajaswari', 'Housewife', 10000.00, 1, 0.00, 15000.00, 'Villivakkam', 'Villivakkam', '2104130004', '1', '1', 'upload_files/candidate_tracker/1526368235_My RESUME new.docx', NULL, NULL, '2021-04-13', 0, '', '3', '8', '2021-04-15', 132000.00, '', '4', '2021-04-19', '1', 'For Priyanka Team With CTC - 132000,Gross  - 11000 TH - 10450', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 10:40:07', 7, '2021-04-13 06:24:07', 0, NULL, 1),
(4383, '', '0', '8072802149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104130005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-13 10:43:56', 0, NULL, 0, NULL, 1),
(4384, 'Senthilkumar', '30', '9345395116', '', 'senthilcordial@gmail.com', '1985-12-09', 35, '2', '2', 'G.Navaneetha krishnan', 'Conductor', 1.00, 2, 0.00, 360000.00, 'Virudhunagar', 'Chennai', '2104130006', '1', '2', 'upload_files/candidate_tracker/79152525106_Resume (1).docx', NULL, NULL, '2021-04-13', 0, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'check for dealer profile. expt is 30k. his previous was 18k. has only basics in equity and trading.', '9', '2', '', '1', '1', '', '2', '1970-01-01', '2', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 10:48:14', 50, '2021-04-13 11:17:36', 0, NULL, 1),
(4385, 'Aravinth', '30', '6382661806', '', 'moneyfarmersbodi@gmail.com', '1992-05-27', 28, '2', '2', 'Rdass', 'Supervisor', 50000.00, 1, 0.00, 2.50, '2.75', 'Chennai', '2104130007', '', '2', 'upload_files/candidate_tracker/66685544666_ARAVINTH CV.pdf', NULL, NULL, '2021-04-13', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '1', NULL, '9', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 10:57:24', 1, '2021-04-13 11:04:37', 0, NULL, 1),
(4386, 'B srinivasan', '4', '7868027660', '9445722903', 'seenusrinivasan26@gmail.com', '1995-08-26', 25, '2', '2', 'Bala krishnan', 'Farmer', 12000.00, 2, 21000.00, 21000.00, 'Redhils', 'Redhils', '2104130008', '1', '2', 'upload_files/candidate_tracker/5595001859_Resume _ Srinivasan (1)-1.pdf', NULL, NULL, '2021-04-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for crm, looking for air space design profile. expt is 20k+', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 11:14:49', 50, '2021-04-13 11:36:21', 0, NULL, 1),
(4387, 'Thanigaivel K B', '4', '8248689568', '9962295898', 'thanigaivelthanik@gmail.com', '1999-07-30', 21, '2', '2', 'S kumaravel', 'Farmer', 12.00, 1, 0.00, 15.00, 'Redhills', 'Redhils', '2104130009', '1', '1', 'upload_files/candidate_tracker/61345909855_K B Thanigaivel -Resume-3.pdf', NULL, NULL, '2021-04-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for crm, not speaking up and will nit Suite for data analyst dont kniw basics in excel.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 11:15:55', 50, '2021-04-13 11:34:15', 0, NULL, 1),
(4388, 'saranya s', '4', '7904475619', '', 'saransweetie3012@gmail.com', '1995-12-30', 25, '2', '2', 'ambika s', 'care taker', 10000.00, 2, 12000.00, 15000.00, 'chennai', 'chennai', '2104130010', '1', '2', 'upload_files/candidate_tracker/31609675870_Resume - Saranya.pdf', NULL, NULL, '2021-04-13', 1, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for our process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 11:25:55', 50, '2021-04-13 12:39:30', 0, NULL, 1),
(4389, 'shreegayathri s', '4', '8939522612', '', 'shree.sabharish@gmail.com', '1995-12-04', 25, '2', '2', 'krishnaveni', 'supervisior', 10000.00, 1, 22000.00, 25000.00, 'chennai', 'chennai', '2104130011', '1', '2', 'upload_files/candidate_tracker/31144624215_Gayathri Resume.pdf', NULL, NULL, '2021-04-13', 2, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'looking for health care data entry job. previously into cognizant, expt is 25k for crm. will not handle pressure.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 11:33:45', 1, '2021-04-13 01:11:16', 0, NULL, 1),
(4390, 'Riyas', '16', '6381698273', '9843865994', 'riyaslee1996@gmail.com', '1996-10-13', 24, '2', '2', '9094727227', 'System hardware and software', 25000.00, 2, 15000.00, 18000.00, 'Masuthu st,madhukal village,elavur,chennai-601201', '23/30,13th St,svm nagar,Ennore,chennai-600057', '2104130012', '1', '2', 'upload_files/candidate_tracker/62361506512_0_Riyas.1.docx', NULL, NULL, '2021-04-13', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has exp as mis exe. but communication is below avg.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 12:14:49', 50, '2021-04-13 12:36:24', 0, NULL, 1),
(4391, 'Radhakrishnan. N', '28', '8248992965', '7094069787', 'nradhakrishnan92@gmail.com', '1992-05-19', 28, '2', '2', 'Mr. R. Natarajan', 'Agriculture', 10000.00, 1, 100000.00, 25000.00, 'Perambalur', 'Saidapet- Chennai', '2104130013', '1', '2', 'upload_files/candidate_tracker/66020004257_N.Radhakrishnan_Quality Control Engineer.pdf', NULL, NULL, '2021-04-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'QC Profile, Not open for Agreement and the Expected Salary is high', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-13 12:22:40', 50, '2021-04-15 10:16:28', 0, NULL, 1),
(4392, '', '0', '9962433053', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104130014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-13 12:55:50', 0, NULL, 0, NULL, 1),
(4393, 'arvind kumar', '28', '8122971119', '', 'arvindkumar0806.ak@gmail.com', '1996-08-28', 24, '2', '2', 'sajive r', 'controller southern railway', 40000.00, 0, 14000.00, 20000.00, 'chennai', 'chennai', '2104130015', '1', '2', 'upload_files/candidate_tracker/375092650_RESUME2.pdf', NULL, NULL, '2021-04-15', 0, '', '3', '54', '2021-04-19', 180000.00, '', '', '1970-01-01', '2', 'He is new to this domain but we will train him.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-13 01:37:25', 50, '2021-04-15 10:36:14', 0, NULL, 1),
(4394, 'Karthik raja', '28', '9087441704', '', 'karthikvias7@gmail.com', '1995-11-19', 25, '2', '2', 'M Arunachalam', 'Cashier', 35000.00, 0, 22000.00, 30000.00, 'chennai', 'chennai', '2104130016', '1', '2', 'upload_files/candidate_tracker/45490437508_CV_2020-11-11-122708.pdf', NULL, NULL, '2021-04-15', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'good Communication, Little Attitude and the salary Expectation is high', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-13 01:47:32', 50, '2021-04-15 11:05:16', 0, NULL, 1),
(4395, 'keesar basha', '5', '8754953567', '', 'keesarbasha786@gmail.com', '1993-01-12', 28, '2', '2', 'ahamed basha', 'business', 20000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2104130017', '2', '1', 'upload_files/candidate_tracker/28574932287_WhatsApp Image 2021-04-13 at 2.22.33 PM.pdf', NULL, NULL, '2021-04-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process. will not sustain.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-13 02:20:02', 1, '2021-04-13 02:23:11', 0, NULL, 1),
(4396, 'K.Jayabharathi', '30', '9952441966', '9003294750', 'jbgopinath@gmail.com', '1988-08-13', 32, '2', '1', 'Gopinath', 'Excelcom technology', 50000.00, 2, 16.00, 20.00, 'Chennai', 'Chennai', '2104130018', '1', '2', 'upload_files/candidate_tracker/44876859900_Jayabharathi K Resume (1).docx', NULL, NULL, '2021-04-13', 0, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'can try for 1st start', '9', '2', '', '1', '1', '', '2', '2021-04-19', '3', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 03:11:53', 50, '2021-04-16 04:16:29', 0, NULL, 1),
(4397, 'Emjee', '6', '7904402556', '8124770468', 'vijayemjee@gmail.com', '1994-01-01', 27, '2', '2', 'Anjelu', 'Fisherman', 25000.00, 2, 0.00, 20000.00, 'No:2/206, karaikadu kuppam, sunnambhukulam', 'No:43A, appar saami Kovil street, Thiruv', '2104130019', '', '2', 'upload_files/candidate_tracker/94083407778_Emjee Resum update.docx', NULL, NULL, '2021-04-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite fo rM profile, language is below avg. will not suite for calling', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-13 04:03:50', 1, '2021-04-13 04:11:39', 0, NULL, 1),
(4398, 'Pavithra', '28', '9789949426', '', 'pavithra311296@gmail.com', '1996-12-31', 24, '2', '1', 'Karthick', 'Private Sector', 30000.00, 1, 228000.00, 300000.00, 'Chennai', 'Chennai', '2104130020', '1', '2', 'upload_files/candidate_tracker/77398414120_Pavithra Resume .pdf', NULL, NULL, '2021-04-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,Exp high Pay,will not sustain for a long', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-13 05:12:34', 60, '2021-04-15 04:18:02', 0, NULL, 1),
(4399, 'Kamesh. K', '28', '9003224903', '7845999528', 'Kameshkothandapani@gmail.com', '1995-10-15', 25, '2', '2', 'Kothandapani. Y', 'Farmer', 600000.00, 1, 17000.00, 25000.00, 'Ponniammanmedu ,chennai', 'Ponniammanmedu ,chennai', '2104130021', '1', '2', 'upload_files/candidate_tracker/64723024636_kamesh resume_updated.pdf', NULL, NULL, '2021-04-15', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for the Data Analyst role, No Communication', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-13 10:44:01', 50, '2021-04-15 04:13:02', 0, NULL, 1),
(4400, '', '0', '9047113940', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104140001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-14 09:53:03', 0, NULL, 0, NULL, 1),
(4401, 'nelson leo', '28', '9789949212', '', 'nelsonleo96@gmail.com', '1996-08-19', 24, '2', '2', 'arockiass da', 'driver', 15000.00, 1, 0.00, 17000.00, 'chennai', 'chennai', '2104140002', '1', '1', 'upload_files/candidate_tracker/83016271142_Tester Resume.pdf', NULL, NULL, '2021-04-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location Constraint, Not open for the agreement', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-14 01:27:23', 50, '2021-04-15 12:16:50', 0, NULL, 1),
(4402, 'U sharmila devi', '7', '8870585853', '9382336562', 'sharmiladevi.sd@gmail.com', '1993-06-27', 27, '2', '1', 'S.prasanth', 'Reliance digital_CRM', 25000.00, 1, 15000.00, 15000.00, 'No 3 kailasam Street erukkancherry chennai', 'Ño 3 kailasam Street erukkancherry Chennai', '2104140003', '1', '2', 'upload_files/candidate_tracker/78655708199_sharmila.pdf', NULL, NULL, '2021-04-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'New to the MF position and the Expected 15K TH and not open for negotiating with PF PT Deductions', '7', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-14 01:52:58', 1, '2021-04-15 01:33:05', 0, NULL, 1),
(4403, '', '0', '9841720804', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104140004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-14 02:18:14', 0, NULL, 0, NULL, 1),
(4404, '', '0', '8526862521', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104140005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-14 02:28:27', 0, NULL, 0, NULL, 1),
(4405, 'Gokul s', '7', '9150439828', '', 'gokul2498@gmail.com', '1998-12-24', 22, '2', '2', 'Grace denisa', 'Nil', 20000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2104140006', '1', '1', 'upload_files/candidate_tracker/44923763458_gokul resume.docx', NULL, NULL, '2021-04-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for MF, fresher no idea about MF, not even prepare a single line for interview.', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-14 02:40:50', 50, '2021-04-15 10:32:53', 0, NULL, 1),
(4406, '', '0', '9941967127', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104140007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-14 04:25:50', 0, NULL, 0, NULL, 1),
(4407, 'Pavithra. A', '28', '9003211751', '9940296583', 'kowsipavi3@gmail.com', '1997-10-28', 23, '2', '2', 'Arokiyaraj D', 'Auto Driver', 25000.00, 2, 16500.00, 20000.00, 'Chennai', 'Chennai', '2104140008', '1', '2', 'upload_files/candidate_tracker/28600640350_PAVITHRA UPDATE RESUME (2019)-converted.pdf', NULL, NULL, '2021-04-15', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not good in communication, will not suit much for our role', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-14 08:04:18', 1, '2021-04-15 10:12:57', 0, NULL, 1),
(4408, '', '0', '9150439282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104140009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-14 08:44:37', 0, NULL, 0, NULL, 1),
(4409, 'gokul', '6', '7395992634', '', 'chandhrugokul555@gmail.com', '1999-05-17', 21, '2', '2', 'palani', 'farmer', 20000.00, 3, 0.00, 12000.00, 'chennai', 'chennai', '2104150001', '2', '1', 'upload_files/candidate_tracker/32203610475_Personal Resume Gokul.docx', NULL, NULL, '2021-04-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not Sustain, will join only if his friend join and will not suite fro calling.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 10:36:42', 50, '2021-04-15 10:56:40', 0, NULL, 1),
(4410, 'elaiya kumar', '6', '7448341546', '', 'elaiyakumar51@gmail.com', '1998-03-01', 23, '2', '2', 'vedhagiri', 'farmer', 10000.00, 6, 0.00, 13000.00, 'chennai', 'chennai', '2104150002', '2', '1', 'upload_files/candidate_tracker/92335140984_ELAIYAKUMAR.pdf', NULL, NULL, '2021-04-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for calling.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 10:39:55', 1, '2021-04-15 10:41:28', 0, NULL, 1),
(4411, 'santheya', '11', '7904602582', '', 'santheya21@gmail.com', '1997-07-21', 23, '1', '2', 'premalatha', 'beautician', 50000.00, 1, 15000.00, 18000.00, 'cuddalore', 'chennai', '2104150003', '', '2', 'upload_files/candidate_tracker/79499911716_Santheya Resume.pdf', NULL, NULL, '2021-04-15', 0, '6667', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no Sustainability, 3m, 4m and 7m in each company. expt 18k th. communication wise okay.', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 10:42:45', 50, '2021-04-15 11:06:26', 0, NULL, 1),
(4412, 'Faizal', '5', '8681929029', '', 'Faiz_busi@yahoo.co.in', '1984-08-10', 36, '2', '1', 'Jasima', 'House wife', 35000.00, 1, 22000.00, 30000.00, 'Chennai', 'Chennai', '2104150004', '3', '2', 'upload_files/candidate_tracker/85730408788_Faizal Resume.doc', NULL, NULL, '2021-04-15', 1, '', '3', '60', '2021-04-28', 300000.00, '', '4', '2021-05-11', '1', 'Selected for GK Sir, CTC -3 LPA, Gross - 25000 (Includes PF PT Deductions)', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 11:02:54', 60, '2021-04-26 04:01:52', 0, NULL, 1),
(4413, 'Lakshmi singh', '26', '9791808844', '6382155848', 'Gunjans309@gmail.com', '1997-07-25', 23, '2', '2', 'Chirag singh', 'Business', 40000.00, 4, 21500.00, 30000.00, 'Chennai', 'chennai', '2104150005', '1', '2', 'upload_files/candidate_tracker/99943984467_CV_2021-04-12-123307.pdf', NULL, NULL, '2021-04-15', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain for a long and not able to handle the pressure.', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-15 11:14:05', 50, '2021-04-15 12:11:45', 0, NULL, 1),
(4414, 'K P Sharath durai', '28', '8870150702', '9025599684', 'sharathdurai81@gmail.com', '1997-06-04', 23, '2', '2', 'Devi', 'Hindi teacher', 25000.00, 2, 11000.00, 15000.00, 'CHENNAI', 'CHENNAI', '2104150006', '1', '2', 'upload_files/candidate_tracker/59107043465_Sharath resume.pdf', NULL, NULL, '2021-04-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suits for our position, will not sustain, No Communication', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-15 12:57:04', 50, '2021-04-16 10:23:45', 0, NULL, 1),
(4415, 'karthick', '6', '9710148915', '', 'Karthikumar5@yahoo.com', '1994-10-21', 26, '2', '2', 'kumar', 'gold smith', 15000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104150007', '2', '1', 'upload_files/candidate_tracker/95675820032_karthik-9.docx', NULL, NULL, '2021-04-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 01:32:01', 1, '2021-04-15 01:33:40', 0, NULL, 1),
(4416, 'Rubini S', '28', '8925401823', '', 'kuttiruby@gmail.com', '1995-12-18', 25, '2', '1', 'Surya M', 'Business', 15000.00, 2, 18500.00, 22500.00, 'Chennai', 'Chennai', '2104150008', '1', '2', 'upload_files/candidate_tracker/43317794157_Ruby resume 28022021.docx', NULL, NULL, '2021-04-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our role, will not handle the pressure, Communication Average', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-15 01:45:20', 1, '2021-04-15 01:49:57', 0, NULL, 1),
(4417, 'Mohammed Ibrahim', '22', '7299212877', '7358300750', 'Mohammedibrahim928@gmail.com', '1998-09-05', 22, '2', '2', 'Mariyam Banu', 'House wife', 20000.00, 1, 15000.00, 22000.00, 'No 182,5 th street Gandhi nagar, vysarpadi, ch-39', 'No 182,5 Th Street Gandhi Nagar, Vysarpadi,ch-39', '2104150009', '1', '2', '', NULL, NULL, '2021-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-15 01:50:08', 64, '2021-04-16 09:37:54', 0, NULL, 1),
(4418, 'J kanimozhi', '4', '9087780640', '', 'Kanisaravanabava8@gmail.com', '1991-03-18', 30, '2', '2', 'Jayapall', 'Retired', 15000.00, 2, 16500.00, 17000.00, 'chennai', 'Chennai', '2104150010', '1', '2', 'upload_files/candidate_tracker/26374585124_sai-1.docx', NULL, NULL, '2021-04-15', 0, '', '3', '60', '2021-04-19', 189468.00, '', '6', '2021-04-20', '2', 'Selected for Tiruvallur Location CTC - 189468\nGross - 15789\nTH - 15000', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-15 02:35:05', 60, '2021-04-18 06:25:05', 0, NULL, 1),
(4419, 'Ramya.k', '4', '9360772797', '', 'ramyarajramyara@gmail.com', '1999-04-29', 21, '1', '2', 'Kamaraj.k', 'Metro water', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104150011', '', '1', 'upload_files/candidate_tracker/70906614872_Ramya k.docx', NULL, NULL, '2021-04-15', 0, '5553', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling. very childish, will not sustain.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 02:36:47', 50, '2021-04-15 02:52:08', 0, NULL, 1),
(4420, 'Saranya. S', '4', '9962858260', '', 'saranyasivasamy2000@gmail.com', '2000-01-27', 21, '1', '2', 'Sivasamy', 'Cooly', 60000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2104150012', '', '1', 'upload_files/candidate_tracker/17917481890_resume saranya.docx', NULL, NULL, '2021-04-15', 0, '5553', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Will Not Suite For Calling. Very Childish, Will Not Sustain.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 02:38:26', 1, '2021-04-15 02:46:47', 0, NULL, 1),
(4421, 'Martin J', '17', '9600051302', '9884851302', 'Mail2martinboss@gmail.com', '1991-01-15', 30, '1', '1', 'Revathi', 'House wife', 38000.00, 1, 38000.00, 40000.00, 'Chennai', 'Chennai', '2104150013', '', '2', 'upload_files/candidate_tracker/47261565732_Martin Resume pdf(1)(1).pdf', NULL, NULL, '2021-04-15', 15, '55559', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Kindly refix after lockdown', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 03:11:53', 1, '2021-04-15 03:17:53', 0, NULL, 1),
(4422, 'P.Kamalakannan', '28', '8807045480', '9176114166', 'kamalkrish002@gmail.com', '1997-05-09', 23, '2', '2', 'E.Parthasarathy', 'Businessman', 2000000.00, 0, 15000.00, 18000.00, 'Chennai, MGR Nagar', 'Chennai,MGR Nagar', '2104150014', '1', '2', 'upload_files/candidate_tracker/39314690680_Kamal resume.pdf', NULL, NULL, '2021-04-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication not suitable', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-15 04:53:09', 50, '2021-04-16 10:50:59', 0, NULL, 1),
(4423, 'Pradeep Kumar', '28', '8124358218', '', 'pradeepattakathi@gmail.com', '1998-04-18', 22, '2', '2', 'Murugesan', 'Driver', 15000.00, 0, 10000.00, 18000.00, 'Vyasarpadi', 'Vyasarpadi', '2104150015', '1', '2', 'upload_files/candidate_tracker/32177740131_pradeep Resume 2021April.....docx', NULL, NULL, '2021-04-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suits,not open for Agreement', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-15 04:55:59', 1, '2021-04-15 05:03:03', 0, NULL, 1),
(4424, 'Kavitha S', '13', '9487718892', '', 'kavithasmv14@gmail.com', '1998-06-14', 22, '2', '2', 'Subramani N', 'Farmer', 30000.00, 2, 0.00, 15000.00, '4/448 kodeeswara nagar, Sankaralingapuram-626119', 'No:3 saraswathi street, guduvanchery', '2104150016', '1', '1', 'upload_files/candidate_tracker/51946514810_Kavitha resume(2).pdf', NULL, NULL, '2021-04-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable, Will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-15 05:05:26', 1, '2021-04-15 05:19:33', 0, NULL, 1),
(4425, 'Anbarasu K', '5', '7305515854', '', 'anbarasu.k64@gmail.com', '1990-06-01', 30, '1', '1', 'KATHIRVEL', 'B.Tech', 35000.00, 1, 35000.00, 40000.00, 'Chennai', 'Chennai', '2104150017', '', '2', 'upload_files/candidate_tracker/52286463078_ANBU%20CV%20(1).docx', NULL, NULL, '2021-04-15', 15, '55567', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Kindly refix after Lockdown\n', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 05:07:36', 1, '2021-04-15 05:13:05', 0, NULL, 1),
(4426, 'Narasimman', '28', '8122267377', '', 'Narasimman71@gmail.com', '1997-10-09', 23, '2', '2', 'Jayaprakash', 'Self employed', 15000.00, 0, 14000.00, 20000.00, 'Kallakurichi', 'Tambaram', '2104160001', '1', '2', 'upload_files/candidate_tracker/80691805833_NARSIMMAN_RESUME1997.docx', NULL, NULL, '2021-04-19', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-16 10:22:29', 1, '2021-04-16 10:26:12', 0, NULL, 1),
(4427, 'K.Raja', '4', '9790770086', '8667521065', 'alexander.raja95@gmail.com', '1995-08-15', 25, '2', '2', 'Uma.K', 'House keeping', 15000.00, 2, 12000.00, 15000.00, 'Chennai', 'Chennai', '2104160002', '1', '2', 'upload_files/candidate_tracker/67005872980_raja resume.pdf', NULL, NULL, '2021-04-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our profile. no clarity in speech.', '1', '2', '', '1', '1', '', '2', '2021-04-19', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 10:59:51', 50, '2021-04-16 11:34:35', 0, NULL, 1),
(4428, 'Vijay d', '6', '8838561758', '7401217612', 'vijaydv2016@gmail.com', '1995-09-11', 25, '2', '2', 'Durai', 'Cooli', 20000.00, 3, 15000.00, 17000.00, 'Chennai', 'Chennai', '2104160003', '1', '2', 'upload_files/candidate_tracker/87578833399_Vijay21.pdf', NULL, '1', '2021-04-16', 0, '', '3', '24', '2021-08-05', 204000.00, '', '3', '2021-08-07', '1', 'NO SALES SKILLS', '5', '2', '1', '1', '1', '1', '2', '2021-04-19', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 11:01:45', 60, '2021-08-04 02:47:27', 0, NULL, 1),
(4429, 'GNANAPRAKASH R', '30', '8220410286', '', 'rbgprakash@gmail.com', '1990-01-29', 31, '2', '2', 'Rajannan', 'Business', 40000.00, 1, 300000.00, 340000.00, 'Kandavaratti', 'Guindy-600032', '2104160004', '1', '2', 'upload_files/candidate_tracker/56524133724_1618207568769_new resume.pdf', NULL, NULL, '2021-04-16', 15, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suite for our process', '9', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 11:02:05', 50, '2021-04-16 11:20:49', 0, NULL, 1),
(4430, 'Saravanan', '30', '9940377681', '', 'sarantrinity87@gmail.com', '1987-05-27', 33, '2', '1', 'ASWINI', 'Private finance', 5.00, 1, 345000.00, 420000.00, 'Chennai', 'Chennai', '2104160005', '1', '2', 'upload_files/candidate_tracker/47400494051_MY RESUME.docx', NULL, NULL, '2021-04-16', 0, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'can try - Vasu', '9', '2', '', '1', '1', '', '2', '2021-04-19', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 11:13:51', 50, '2021-04-16 11:28:18', 0, NULL, 1),
(4431, 'J.Bhaskar', '30', '9498069517', '9500185508', 'bhaskar5868@gmail.cOm', '1967-07-20', 53, '2', '1', 'K.A.Jayaraman', 'Self employed', 50000.00, 2, 25000.00, 30000.00, '7,Indrani st ayyavoo colony Aminjikarai Chennai', 'Same as above', '2104160006', '1', '2', 'upload_files/candidate_tracker/29361774517_Resume (1).doc', NULL, NULL, '2021-04-16', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'aged will not suite for our process-by gokul', '9', '2', '', '1', '1', '', '2', '1970-01-01', '2', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 11:17:29', 50, '2021-04-16 11:54:27', 0, NULL, 1),
(4432, 'T R Suresh Kumar', '30', '7092133017', '8056120594', 'yellusuresh79@gmail.com', '1979-11-05', 41, '2', '1', 'Yellammal', 'Tailor', 20000.00, 2, 15000.00, 20000.00, 'Anagaputhur', 'Anagaputhur', '2104160007', '1', '2', 'upload_files/candidate_tracker/60326459431_1617779663391_suresh kumar resume.docx', NULL, NULL, '2021-04-16', 1, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for ED Profile by Vasu', '9', '2', '', '1', '3', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 11:22:26', 50, '2021-04-16 12:06:22', 0, NULL, 1),
(4433, 'Jaison', '4', '9940489811', '', 'Jasonjzz002@gmail.com', '2002-05-03', 18, '3', '2', 'Joseph.R.S', 'T.v.mechanic', 80000.00, 1, 0.00, 10000.00, 'Madhavaram', 'Madhavaram', '2104160008', '', '1', 'upload_files/candidate_tracker/63257632142_Jaison jay.docx', NULL, NULL, '2021-04-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, not int in sales. int in non voice', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-16 11:25:47', 1, '2021-04-16 12:11:14', 0, NULL, 1),
(4434, 'Sethukumar', '4', '9840576193', '6381348732', 'Sethukumar03@gmail.com', '1995-11-03', 25, '2', '2', 'Devaraj', 'Daily wages', 25000.00, 0, 15774.00, 18000.00, 'chennai', 'chennai', '2104160009', '1', '2', 'upload_files/candidate_tracker/8168206307_1618553358276_1618553357929_63488.doc', NULL, NULL, '2021-04-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sal expt is high', '1', '2', '', '1', '3', '', '2', '2021-04-19', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 11:25:50', 50, '2021-04-16 12:04:59', 0, NULL, 1),
(4435, '', '0', '8939622025', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104160010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-16 12:15:47', 0, NULL, 0, NULL, 1),
(4436, 'Mongia', '8', '8939451415', '6379124895', 'smartmongia13996@gmail.com', '1996-09-13', 24, '2', '2', 'Mahesh Y', 'Security', 10000.00, 5, 1.00, 15000.00, 'Chennai', 'Chennai', '2104160011', '1', '2', 'upload_files/candidate_tracker/51908939118_Mongia resume.docx', NULL, NULL, '2021-04-16', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for CRM', '7', '2', '', '1', '1', '', '2', '1970-01-01', '3', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 12:57:22', 50, '2021-04-16 01:18:16', 0, NULL, 1),
(4437, 'Shily', '4', '9361498751', '9943761881', 'Shilyraghu5399@gmail.com', '1999-03-05', 22, '2', '2', 'Raghu', 'Artist', 15000.00, 1, 0.00, 10000.00, 'Padappi', 'Padappi', '2104160012', '1', '1', 'upload_files/candidate_tracker/14803487653_SHILY%20RESUME.docx', NULL, NULL, '2021-04-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain, will not handle sales pressure. expt is 10k.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 01:15:54', 7, '2021-04-16 03:05:46', 0, NULL, 1),
(4438, 's glory jayaseeli', '2', '8939622020', '', 'jayaseelisglory@gmail.com', '1996-08-01', 24, '2', '2', 'j mallika samuel', 'senior adminstrative assitant', 15000.00, 1, 0.00, 500000.00, 'chennai', 'chennai', '2104160013', '1', '1', 'upload_files/candidate_tracker/76954160701_Glory_Jayaseeli.pdf', NULL, NULL, '2021-04-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good in Mern,but the expectation is very High being a fresher, sustainability doubt not open for the agreement', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-16 02:04:07', 50, '2021-04-17 02:40:22', 0, NULL, 1),
(4439, 'nivedita', '28', '7358187684', '9094417366', 'nivesundar1997@gmail.com', '1997-09-08', 23, '2', '2', 'gomathy sunda', 'business development executive', 25000.00, 1, 0.00, 10000.00, 'madipakkam', 'madipakkam', '2104160014', '1', '1', 'upload_files/candidate_tracker/65966721265_Nivedita RESUME MARKETING EXECUTIVE copy.pdf', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Good Commuication ,open for Agreement, but the expectation is high 25K Negotiable to 20K', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-16 02:11:58', 1, '2021-04-19 09:54:59', 0, NULL, 1),
(4440, 'pratheeba', '28', '6381063448', '8637424503', 'prathibadurai96@gmail.com', '1996-11-11', 24, '2', '2', 'durai', 'sales officer', 40000.00, 1, 220000.00, 280000.00, 'CHENNAI', 'CHENNAI', '2104160015', '1', '2', 'upload_files/candidate_tracker/24291847975_prathiba resume.pdf', NULL, NULL, '2021-04-17', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-16 02:45:56', 1, '2021-04-16 11:47:40', 0, NULL, 1),
(4441, '', '0', '6379147954', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104160016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-16 04:59:11', 0, NULL, 0, NULL, 1),
(4442, '', '0', '9094595931', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104160017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-16 05:34:13', 0, NULL, 0, NULL, 1),
(4443, '', '0', '7845130389', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104160018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-16 09:24:57', 0, NULL, 0, NULL, 1),
(4444, '', '0', '6385143634', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104160019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-16 10:58:41', 0, NULL, 0, NULL, 1),
(4445, 'Pradeep Raj R', '28', '8056289568', '8825495524', 'pradeep2909rajkumar@gmail.com', '1995-07-05', 25, '2', '2', 'Rajkumar N', 'Vegetable Market - CMBT', 32000.00, 4, 12500.00, 16000.00, 'Metro Park Appartment Block -3/31 Padi Ch - 600107', 'Metro Park Appartment Block 3/31 Padi Ch-600107', '2104170001', '1', '2', 'upload_files/candidate_tracker/80458966903_Pradeep Resume_2021 (Bpo).pdf', NULL, NULL, '2021-04-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for our role, Stammering Issue, no sustainability', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-17 10:51:59', 1, '2021-04-17 11:03:57', 0, NULL, 1),
(4446, 'MANUNEEDHI.R', '30', '9176470880', '', 'rmanuneedhi@yahoo.co.in', '1970-06-10', 50, '2', '1', 'Shoba', 'Housewife', 30000.00, 0, 30000.00, 33000.00, 'Chenai', 'Chennai', '2104170002', '1', '2', 'upload_files/candidate_tracker/57281904616_Manuneedhi Resume.pdf', NULL, NULL, '2021-04-17', 0, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Vasu interview', '9', '2', '', '1', '1', '', '2', '2021-04-19', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-17 10:57:41', 50, '2021-04-17 03:07:31', 0, NULL, 1),
(4447, 'Jaisre Ambasekar', '23', '9790606878', '9566425250', 'Jaisre.ambasekar@outlook.com', '1996-09-23', 24, '2', '2', 'Ambasekar B', 'Transport manager pvt limited', 14000.00, 1, 8000.00, 22000.00, 'Erode', 'Chennai', '2104170003', '1', '2', 'upload_files/candidate_tracker/54007668865_Jaisre_Profile.docx', NULL, NULL, '2021-04-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not Completed.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-17 11:22:37', 50, '2021-04-19 10:05:50', 0, NULL, 1),
(4448, 'J.Eunice Princy', '4', '7338959040', '9952041343', 'Rj.Bharathkumar.Bk@Gmail.Com', '1996-09-04', 24, '2', '2', 'R.Jagannathan', 'Chruch pastor', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104170004', '1', '1', 'upload_files/candidate_tracker/56688458588_Eunice resume .docx', NULL, NULL, '2021-04-17', 0, '', '3', '60', '2021-04-19', 144000.00, '', '6', '2021-04-20', '1', 'Selected for Tiruvallur Location,initial 10 Days of training in Tnagar with CTC - 144000,Gross - 12000 TH - 11400', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-17 11:29:32', 60, '2021-04-17 09:31:44', 0, NULL, 1),
(4449, 'Sivaranjani', '7', '8220233546', '', 'Sweetyranjaniv@gmail.com', '1996-05-26', 24, '2', '2', 'Velmurugan. R', 'Agriculture', 120000.00, 1, 12000.00, 15000.00, 'Ganapathikurichi, cuddalore(dk)', 'Ashok nagar, chennai', '2104170005', '1', '2', 'upload_files/candidate_tracker/89957261442_SIVA_RESUME-1.docx', NULL, NULL, '2021-04-17', 15, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No knowledge in MF at all', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-17 11:29:43', 50, '2021-04-17 11:55:55', 0, NULL, 1),
(4450, 'BHARATH R', '7', '9952041343', '7338959040', 'rj.bharathkumar.bk@gmail.com', '1995-09-20', 25, '2', '2', 'Raghupathy', 'Cooli', 18000.00, 1, 0.00, 160000.00, 'Chennai', 'Chennai', '2104170006', '1', '1', 'upload_files/candidate_tracker/44615341247_Barath kumar', NULL, NULL, '2021-04-17', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested with rE profile', '7', '2', '', '1', '1', '', '2', '2021-04-19', '2', '4', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-17 12:26:46', 50, '2021-04-17 12:35:32', 0, NULL, 1),
(4451, 'Rashika', '4', '7871915194', '9514154796', 'rashikabalaji05@gmail.com', '1999-02-02', 22, '2', '1', 'Balaji', 'Auto driver', 10000.00, 2, 15000.00, 12000.00, 'West mambalam', 'Cit nagar', '2104170007', '1', '2', 'upload_files/candidate_tracker/60712609073_rashikarem.doc', NULL, NULL, '2021-04-17', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'looking for non voice process', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-17 12:34:20', 1, '2021-04-17 01:00:23', 0, NULL, 1),
(4452, '', '0', '7806961553', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104170008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-17 12:34:28', 0, NULL, 0, NULL, 1),
(4453, 'Mahalakshmi', '4', '8428572836', '9514241885', 'rojavasu101996@gmail.com', '1996-01-10', 25, '2', '2', 'MARIMUTHU', 'BSNL (retired)', 30000.00, 2, 15000.00, 18000.00, 'Tamabaram', 'Tambaram', '2104170009', '1', '2', 'upload_files/candidate_tracker/48138991050_Mahalakshmi resume.pdf', NULL, NULL, '2021-04-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for Priyanka, but didnt turn up with her confirmation', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-17 01:48:31', 50, '2021-04-17 03:07:45', 0, NULL, 1),
(4454, 'Prabhu g', '30', '9789078795', '', 'Prabhug251982@gmail.com', '1983-05-25', 37, '2', '2', 'Gopalakrishana', 'Metrowater', 30000.00, 2, 340000.00, 30000.00, '13/1 andiappan Street oldwashermanpet', 'Chennai', '2104170010', '1', '2', 'upload_files/candidate_tracker/80790655104_1616403335873_Prabhu Resume.doc', NULL, NULL, '2021-04-17', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not attended zoom interview no call back from the candidate also', '9', '2', '', '1', '1', '', '2', '2021-04-19', '3', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-17 02:31:20', 50, '2021-04-17 03:01:51', 0, NULL, 1),
(4455, 'Abishek.p.s', '22', '8610710084', '', 'psabishek1997@gmail.com', '1997-05-07', 23, '2', '2', 'No', 'No', 80000.00, 1, 0.00, 15000.00, 'Chennai ambattur', 'Chennai ambattur', '2104170011', '1', '1', 'upload_files/candidate_tracker/85162703391_resume (1).docx', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not suit for DM, Sustainability doubt need to check with family', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-17 03:54:27', 1, '2021-04-17 03:59:58', 0, NULL, 1),
(4456, '', '0', '9500114965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104170012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-17 04:00:40', 0, NULL, 0, NULL, 1),
(4457, '', '0', '9790066156', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104170013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-17 04:22:07', 0, NULL, 0, NULL, 1),
(4458, 'Srinivasan', '28', '9790686164', '8754761949', 'paranjothistini@gmail.com', '1996-05-31', 24, '2', '2', 'Paranjyothi', 'Weaver', 7500.00, 1, 16500.00, 20000.00, '80/32 A A.P.M koil St,Gudiyatham,vellore', '7A Annai Theresa St,East Tambaram', '2104170014', '1', '2', 'upload_files/candidate_tracker/84362486096_Srini Resume 2021.doc.pdf', NULL, NULL, '2021-04-19', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Data excel knowledge Basic Will not fit for our role', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-17 06:41:59', 1, '2021-04-18 03:50:03', 0, NULL, 1),
(4459, 'Imran basha', '21', '9940422354', '', 'immu26111997@gmail.com', '1997-11-26', 23, '2', '2', 'Humayun basha', 'Auto', 8000.00, 1, 0.00, 15000.00, 'Adyar', 'Adyar', '2104180001', '1', '1', 'upload_files/candidate_tracker/11408729961_Baasha Resume 15.04.2021.pdf', NULL, NULL, '2021-05-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-18 12:53:50', 1, '2021-04-18 06:20:00', 0, NULL, 1),
(4460, '', '0', '9566252357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104180002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-18 06:14:06', 0, NULL, 0, NULL, 1),
(4461, '', '0', '9003657471', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104180003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-18 11:06:50', 0, NULL, 0, NULL, 1),
(4462, '', '0', '9444223916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104190001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-19 08:16:52', 0, NULL, 0, NULL, 1),
(4463, 'divakaran', '6', '7904850508', '', 'divakaran722@gmail.com', '2001-06-30', 19, '2', '2', 'thangaraj', 'grocery shop', 13000.00, 1, 12000.00, 13000.00, 'chennai', 'chennai', '2104190002', '2', '2', 'upload_files/candidate_tracker/69001386458_Divakaran.T resume.pdf', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Doubt, will  not fit for our role', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 09:54:04', 1, '2021-04-19 09:56:11', 0, NULL, 1),
(4464, '', '0', '6374019069', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104190003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-19 10:07:13', 0, NULL, 0, NULL, 1),
(4465, 'G.Madhubalu', '4', '8374500270', '7702160799', 'madhubalu2506@gmail.com', '2006-04-19', 0, '2', '2', 'Gurrappan', 'Office work', 16000.00, 2, 0.00, 17000.00, 'Keelagaram, Narayanavanam, chittoor (dt), Ap', 'Tambaram', '2104190004', '1', '1', 'upload_files/candidate_tracker/60314617128_Madhubalu. Resume.docx', NULL, NULL, '2021-04-19', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-19 10:49:28', 50, '2021-04-19 11:20:36', 0, NULL, 1),
(4466, 'Abdul hameed A', '13', '7667496651', '8148467324', 'Abdulhameed2904@gmail.com', '1998-04-29', 22, '2', '2', 'K S Asan Gani', 'PWD Retired', 50000.00, 1, 0.00, 16000.00, 'No 20 kareem subedhar street Royapettah Chennai-14', 'chennai', '2104190005', '1', '1', 'upload_files/candidate_tracker/60330014851_Abdul hameed Resume.docx', NULL, NULL, '2021-04-19', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task not Completed.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 11:12:52', 1, '2021-04-19 11:15:02', 0, NULL, 1),
(4467, 'Divya B', '4', '9087282160', '8838349938', 'Divyadeva64@gmail.com', '1999-08-01', 21, '2', '2', 'Balaji G', 'Cooley', 30000.00, 2, 0.00, 18000.00, 'Choolai', 'Ambattur', '2104190006', '16', '2', 'upload_files/candidate_tracker/32293636851_IMG-20210416-WA0001-converted.pdf', NULL, NULL, '2021-04-19', 0, '', '3', '60', '2021-04-28', 138948.00, '', '6', '2021-07-07', '2', 'Selected for Tiruvallur Location, CTC - 138948 TH - 11k', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 11:26:41', 60, '2021-04-27 11:04:55', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4468, 'NATRAJ', '4', '8838161745', '9600128020', 'arch.natraj@gmail.com', '1989-02-01', 32, '2', '1', 'Nithya Suganya', 'Provisional store', 17000.00, 1, 20000.00, 17000.00, 'Chennai', 'Chennai', '2104190007', '16', '2', 'upload_files/candidate_tracker/83557516488_Natraj Resume.pdf', NULL, NULL, '2021-04-19', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for Sales, Focus is only on the  Professor Jobs\n ', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 11:32:09', 1, '2021-04-19 11:46:00', 0, NULL, 1),
(4469, '', '0', '8179021106', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104190008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-19 11:38:53', 0, NULL, 0, NULL, 1),
(4470, 'Manivannan K', '6', '8667066197', '7200219344', 'kimanivannan@gmail.com', '1992-08-28', 28, '1', '2', 'Kalidoss P', 'Police', 15000.00, 1, 9500.00, 13500.00, '3/181,Keelapuliyur,kulikkarai,Thiruvarur', 'Vasantham colony,Anna nagar west, Chennai', '2104190009', '', '2', 'upload_files/candidate_tracker/34244561423_manivannan edited resume.pdf', NULL, NULL, '2021-04-19', 0, 'P1047', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interviewed in the month of April and on hold for Guru, finally dropped this Profile with concern to the pandemic and the lockdown', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 11:39:58', 60, '2021-04-19 05:32:14', 0, NULL, 1),
(4471, 'A.Dilli Babu', '16', '6379212816', '9962211776', 'dillibabu2412@gmail.com', '1991-12-24', 29, '2', '2', 'Kanchana', 'Junior Assistant', 30000.00, 1, 18000.00, 18000.00, 'Chennai', 'Chennai', '2104190010', '1', '2', 'upload_files/candidate_tracker/60835532512_Resume.doc', NULL, NULL, '2021-04-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Average Communication, only Data Entry, not open for Agreement, Exp 18K', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-19 11:46:31', 50, '2021-04-19 12:27:56', 0, NULL, 1),
(4472, 'M.Ajith kumar', '4', '8148815787', '', 'ajith181199@gmail.com', '1999-11-18', 21, '3', '2', 'O.Manoharan', 'Business', 20000.00, 2, 0.00, 12000.00, 'Old Washermenpet', 'old Washermenpet', '2104190011', '', '1', 'upload_files/candidate_tracker/83499786398_AJITH KUMAR.docx', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Checked for RE,left without attending 2nd level', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 11:59:17', 1, '2021-04-19 12:02:32', 0, NULL, 1),
(4473, 'Fazalu rahaman', '4', '9751421278', '6374040939', 'fazalurahaman48@gmail.com', '1989-07-17', 31, '3', '1', 'Hayathudeen lic', 'Manager', 300000.00, 2, 8.00, 8.00, 'T. Nagar', 'T. Nagar', '2104190012', '', '2', 'upload_files/candidate_tracker/34684597722_New Doc 2021-04-07 11.56.55_1.pdf', NULL, NULL, '2021-04-19', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 12:03:32', 1, '2021-04-19 12:50:52', 0, NULL, 1),
(4474, 'Venkatesh Prasad', '4', '8179021109', '9441066074', 'Venkateshprasadvs@gmail.com', '1996-07-05', 24, '1', '2', 'V.r.saravanan', 'Labour', 15000.00, 1, 15000.00, 15000.00, 'Tiruttani', 'Tiruttani', '2104190013', '', '2', 'upload_files/candidate_tracker/18286317535_pk.docx', NULL, NULL, '2021-04-19', 6, '55577', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 12:18:37', 1, '2021-04-19 12:24:28', 0, NULL, 1),
(4475, 'Vignesh.C', '4', '7904831978', '9176477732', 'Vigneshc2402@gmail.com', '1994-02-24', 27, '2', '2', 'M.Chandra Regu', 'Commercial Work', 25000.00, 1, 12.00, 18.00, 'West Saidapet', 'West Saidapet', '2104190014', '1', '2', 'upload_files/candidate_tracker/71821038812_VIGNESH RESUME (6).pdf', NULL, '1', '2021-04-19', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No knowledge in IT, looking for AR/AP caller positions', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-19 12:27:45', 7, '2021-08-28 06:34:24', 0, NULL, 1),
(4476, 'maghudeeshwaran', '6', '8124371346', '8939994452', 'maghiram651@gmail.com', '1998-05-30', 22, '3', '2', 'Ramalingam', 'Painter', 35000.00, 2, 14500.00, 16000.00, 'musiri, trichy', 'Velachery,Chennai', '2104190015', '', '2', 'upload_files/candidate_tracker/58512090263_Maghudeeshwaran resume.docx', NULL, '1', '2021-04-19', 0, '', '3', '8', '1970-01-01', 180000.00, '', '2', '1970-01-01', '2', 'For Guru Team With Ctc - 1,80,000 MCTC 15000, 11672 net', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 12:28:58', 60, '2021-06-26 06:02:06', 0, NULL, 1),
(4477, '', '0', '8015722728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104190016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-19 12:29:05', 0, NULL, 0, NULL, 1),
(4478, 'Vignesh', '22', '9043253393', '', 'vickyvignesh2324@gmail.com', '1996-02-21', 25, '2', '2', 'Anna durai', 'Tailor', 24000.00, 1, 10.00, 13.00, 'CHENNAI', 'CHENNAI', '2104190017', '1', '2', 'upload_files/candidate_tracker/69311056417_vignesh.cv new black-compressed.pdf', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No knowledge Communication poor, sustainability doubt', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 12:43:53', 1, '2021-04-19 12:47:15', 0, NULL, 1),
(4479, 'selva perumal', '4', '9092316766', '', 'selvachek8777@gmail.com', '1998-07-16', 22, '2', '2', 'sekar', 'icf', 30000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2104190018', '2', '2', 'upload_files/candidate_tracker/80063447673_resume_1583669694752.pdf', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 01:00:21', 1, '2021-04-19 01:02:51', 0, NULL, 1),
(4480, 'Yogesh S', '22', '9080411328', '9710100950', 'S.yogeshDM@gmail.com', '2001-06-06', 19, '2', '2', 'Shanmuga Sunduram.M', 'Supervisor in kitchen', 15000.00, 1, 0.00, 15000.00, 'No:9 om sakthi Nagar Mangadu', 'Mangadu', '2104190019', '1', '1', 'upload_files/candidate_tracker/866881620_new Resume.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfortable with the agreement,sustainability Doubt fresher for Digital Marketing', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 01:02:33', 1, '2021-04-19 04:07:32', 0, NULL, 1),
(4481, 'tamilarasan', '4', '9445490673', '', 'tamiladaakhan@gmail.com', '1997-07-24', 23, '2', '2', 'venkatesan', 'business', 12000.00, 2, 11000.00, 13000.00, 'chennai', 'chennai', '2104190020', '2', '2', 'upload_files/candidate_tracker/62995701612_resume tamil.pdf', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for field sales, only for telecall and the exp 14+ Gross,Will not sustain  ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 01:05:16', 1, '2021-04-19 01:06:57', 0, NULL, 1),
(4482, 'V.Gokulakannan', '24', '6374781381', '', 'vgokulakannan1998@gmail.com', '1998-01-30', 23, '2', '2', 'S.vadivelu', 'Business', 50000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2104190021', '1', '1', 'upload_files/candidate_tracker/35671776760_gokul resume.pdf', NULL, NULL, '2021-04-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 01:33:29', 1, '2021-04-19 01:41:35', 0, NULL, 1),
(4483, 'Ajzer Aarif', '22', '8939108776', '8848306069', 'ajzeraarif@gmail.com', '1999-07-13', 22, '2', '2', 'Aarif pp', 'Business', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2104190022', '1', '1', 'upload_files/candidate_tracker/10572502795_Ajzer resume new-2.pdf', NULL, '1', '2021-08-02', 0, '', '4', '60', NULL, 0.00, '', '0', NULL, '1', 'Task Has Been Assigned', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 02:00:04', 1, '2021-07-31 04:34:19', 0, NULL, 1),
(4484, 'Sharmila .p', '21', '8124902287', '8124942064', 'sharmilakamalabai687@gmail.com', '1996-11-23', 24, '1', '1', 'Mohan rakesh', 'Technician', 25000.00, 1, 24500.00, 25000.00, 'Thiruninravur', 'Thiruninravur', '2104190023', '', '2', 'upload_files/candidate_tracker/77640034738_1616430111888_96416 Relieving Letter.pdf', NULL, NULL, '2021-04-19', 0, 'P1075', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Expected high salary', '3', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 02:21:56', 1, '2021-04-19 02:46:36', 0, NULL, 1),
(4485, 'V.Gokulakannan', '22', '6382351213', '6374781381', 'vgokulakannan1998@gmail.com', '1998-01-30', 23, '2', '2', 'S.vadivelu', 'Business', 50000.00, 2, 0.00, 10000.00, 'Avadi', 'Avadi', '2104190024', '1', '1', 'upload_files/candidate_tracker/73238595638_gokul resume.pdf', NULL, NULL, '2021-04-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 02:42:15', 1, '2021-04-19 02:45:16', 0, NULL, 1),
(4486, '', '0', '9176477732', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104190025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-19 03:28:38', 0, NULL, 0, NULL, 1),
(4487, 'Keerthana', '13', '9659733790', '', 'keerthanaece1995@gmail.com', '1995-06-07', 25, '2', '2', 'Lakshmanan', 'Police', 5.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2104190026', '1', '1', 'upload_files/candidate_tracker/69084462364_KEERTHANA RESUME-converted.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Agreement, Exp is very High ,career Gap', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 03:48:51', 1, '2021-04-22 02:53:28', 0, NULL, 1),
(4488, 'Yuvaraja.G', '23', '9789618281', '', 'yuvarajagmr1991@yahoo.com', '1992-05-27', 29, '2', '1', 'Agalya', 'Chennai', 23000.00, 1, 23000.00, 35000.00, 'Theni', 'Nessapakkam chennai', '2104190027', '1', '2', 'upload_files/candidate_tracker/77578180279_Yuvaraja G_Resume (1).pdf', NULL, '2', '2021-07-13', 20, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-19 04:04:09', 1, '2021-07-06 03:26:32', 0, NULL, 1),
(4489, '', '0', '8428893308', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104190028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-19 04:26:45', 0, NULL, 0, NULL, 1),
(4490, 'Hariprasath TE', '30', '9442192196', '8072035356', 'hariprasath.te@gmail.com', '1997-03-24', 24, '2', '2', 'Ethirajan THS', 'Business', 50000.00, 1, 350000.00, 400000.00, 'Chennai', 'Chennai', '2104200001', '1', '2', 'upload_files/candidate_tracker/63043564377_HARI RESUME.pdf', NULL, NULL, '2021-04-20', 0, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Zoom interview with Vasu', '9', '2', '', '1', '1', '', '2', '2021-04-21', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-20 09:49:12', 50, '2021-04-20 10:03:21', 0, NULL, 1),
(4491, 'MOHAN RAJ', '22', '7200551939', '', 'mohanthegreat32@gmail.com', '1993-11-09', 27, '2', '2', 'jothi lakshmi', 'nil', 20000.00, 1, 0.00, 280000.00, 'Chennai', 'Chennai', '2104200002', '1', '1', 'upload_files/candidate_tracker/46770234362_mohanraj updated resumea updated.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Didnt turn back after checking with his family on the SA,', '2', '2', '0', '1', '1', '0', '2', '2021-04-22', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 09:57:38', 1, '2021-04-20 10:12:33', 0, NULL, 1),
(4492, 'keerthika', '4', '9092310859', '', 'keerthi333keerthi@gmail.com', '2001-05-24', 19, '2', '2', 'arumugam', 'auto driver', 10000.00, 1, 0.00, 10000.00, 'medavakkam', 'medavakkam', '2104200003', '2', '1', 'upload_files/candidate_tracker/96716748080_WhatsApp Image 2021-04-19 at 9.03.48 PM.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-20 10:00:41', 1, '2021-04-20 10:02:21', 0, NULL, 1),
(4493, 'maheshwari', '4', '9025137844', '', 'madhum1107@gmail.com', '2000-07-11', 20, '2', '2', 'kannan', 'kooli', 10000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2104200004', '2', '1', 'upload_files/candidate_tracker/50270677300_Madhu Resume.docx', NULL, NULL, '2021-04-20', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-20 10:03:57', 1, '2021-04-20 10:07:46', 0, NULL, 1),
(4494, 'S Padma', '4', '9597310913', '', 'Padmamanoj10feb@gmail.com', '1995-11-25', 25, '2', '1', 'K Senduraj', 'Cooli', 10000.00, 0, 0.00, 10000.00, 'Virugabakkam', 'Virugabakkam', '2104200005', '1', '1', 'upload_files/candidate_tracker/23026238205_padma resume.docx', NULL, NULL, '2021-04-20', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for this profile and looking for non voice', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-20 10:22:49', 50, '2021-04-20 11:01:03', 0, NULL, 1),
(4495, 'bairavanathan', '4', '9655577764', '8838101766', 'suriyabairav31@gmail.com', '1997-08-31', 23, '2', '2', 'rani', 'house wife', 7000.00, 0, 0.00, 15000.00, 'Thanjavur', 'chennai', '2104200006', '1', '1', 'upload_files/candidate_tracker/75789255369_Resume..docx', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Exp in Sales,Sustainability Doubt will not handle the pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-20 10:51:46', 1, '2021-04-20 11:00:11', 0, NULL, 1),
(4496, 'M.D Thamizarasan', '4', '9094518144', '9840341698', 'Smartthamiz7@gmail.com', '1999-07-21', 21, '2', '2', 'P.M Devaraj', 'If anything', 115000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2104200007', '1', '1', 'upload_files/candidate_tracker/28168206742_Thamil.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Focus on Govt Job only for Time being looking for a job', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-20 11:00:58', 50, '2021-04-20 11:17:49', 0, NULL, 1),
(4497, 'Larvin Josa Johnson A', '28', '8667573302', '9092826128', 'Larvin1012@gmail.com', '1997-12-10', 23, '2', '2', 'Antony Raj', 'Unemployed', 27000.00, 1, 185000.00, 350000.00, 'Chennai', 'Chennai', '2104200008', '1', '2', 'upload_files/candidate_tracker/78226973383_Larvin Resume..docx', NULL, NULL, '2021-04-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 11:01:16', 1, '2021-04-20 11:05:44', 0, NULL, 1),
(4498, '', '0', '8428985538', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104200009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-20 11:02:54', 0, NULL, 0, NULL, 1),
(4499, 'Santhosh', '4', '9843537149', '9047648557', 'santhoshpriya2322@gmail.com', '1998-03-02', 23, '2', '2', 'Govindaraj', 'Former', 15000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2104200010', '1', '1', 'upload_files/candidate_tracker/29668787972_santhosh resume.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Sales Exp ,sustainability doubt', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-20 11:03:35', 1, '2021-04-20 11:24:42', 0, NULL, 1),
(4500, 'Manivannan', '28', '9600111751', '', 'manivannang1999@gmail.com', '1999-02-18', 22, '2', '2', 'Guruprasad', 'EDP manager', 3.00, 0, 3.00, 4.00, 'Chennai -600117', 'Chennai -600117', '2104200011', '1', '2', 'upload_files/candidate_tracker/6903096519_manivannan_résumé_ops.pdf', NULL, NULL, '2021-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 11:05:44', 1, '2021-04-20 11:09:13', 0, NULL, 1),
(4501, 'Dhivakar.b', '6', '8940977964', '', 'dhivakarb6@gmail.com', '2001-06-04', 19, '2', '2', 'Babu.r', 'Farmer', 8000.00, 1, 0.00, 15000.00, 'Periyakalakatur', 'Thiruvallur', '2104200012', '1', '1', 'upload_files/candidate_tracker/40050489618_Divakar Resume.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for IT positions only, but not relevant for our IT positions', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-20 11:21:07', 1, '2021-04-20 11:29:57', 0, NULL, 1),
(4502, 'M Akash', '6', '9094684428', '8667855167', 'aakashjai006@gmail.com', '1999-01-06', 22, '2', '2', 'T manohar', 'Tailor', 15000.00, 1, 10000.00, 15000.00, 'E30 periveri salai tnhb housing Anna nagar ch 40', 'E30 Periveri Salai Tnhb Housing Anna Nagar Ch 40', '2104200013', '1', '2', 'upload_files/candidate_tracker/98412365735_Resume_AKASH.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much open up no relevant Exp in Sales, Sustainability Doubt', '5', '2', '', '1', '1', '', '2', '2021-04-22', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-20 11:23:21', 50, '2021-04-20 11:43:57', 0, NULL, 1),
(4503, 'Vijay', '4', '9710048459', '9841181835', 'Vijayraina23898@gmail.com', '1998-08-23', 22, '2', '2', 'Mani', 'Electrician', 15000.00, 2, 10000.00, 15000.00, '3/48 nethaji nagar 2nd st ramapuram ch 89', '3/48 nethaji nagar 2nd st ramapuram ch 89', '2104200014', '1', '2', 'upload_files/candidate_tracker/68886837171_null.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Non Voice process only', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-20 11:24:14', 50, '2021-04-20 12:06:45', 0, NULL, 1),
(4504, 'shankar', '30', '9042511338', '', 'kskshankar@gmail.com', '1982-01-09', 39, '2', '1', 'deepa', 'housewife', 420000.00, 3, 35000.00, 40000.00, 'chennai', 'chennai', '2104200015', '1', '2', 'upload_files/candidate_tracker/21830697466_1618470993850Resume_Shankar (1)-1.pdf', NULL, NULL, '2021-04-20', 1, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Zoom Interview With Vasu', '9', '2', '', '1', '1', '', '2', '2021-04-21', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-20 11:30:06', 50, '2021-04-20 12:45:15', 0, NULL, 1),
(4505, 'Vasanthi', '28', '7200292429', '', 'Vasanthi24291@gmail.com', '1996-01-29', 25, '2', '2', 'Gopi', 'Business', 25000.00, 1, 21000.00, 25000.00, 'Tambaram', 'Tambaram', '2104200016', '1', '2', 'upload_files/candidate_tracker/45671852258_Resume_Vasanthi.docx', NULL, NULL, '2021-04-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, High Pay Expectation Sustainability Doubt', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 11:47:03', 1, '2021-04-20 12:15:51', 0, NULL, 1),
(4506, 'Pardeeban k', '13', '7538869973', '8939152513', 'kkrparthi3@gmail.com', '1998-11-15', 22, '2', '2', 'Karunanidhi', 'Retired secretary', 100000.00, 1, 0.00, 15000.00, 'Nagapatinam', 'Tambaram', '2104200017', '1', '1', 'upload_files/candidate_tracker/71480501584_CV_2021-04-09-043527.pdf', NULL, NULL, '2021-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 12:03:10', 1, '2021-04-20 12:06:38', 0, NULL, 1),
(4507, 'MOHAMED RAFIQ.M', '26', '8270990996', '', 'mmdrafiqca103@gmail.com', '1994-02-16', 27, '2', '2', 'MOHAMED SAMSUDEEN', 'PROFESSION', 100000.00, 4, 0.00, 15000.00, 'ANGAPANAYAN STREET, MANNADY CHENNAI', 'Mannady', '2104200018', '1', '1', 'upload_files/candidate_tracker/87726527677_Rafiq Curriculum Vitae 3.docx', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication,looking only for Accounts positions', '7', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-20 12:06:47', 1, '2021-04-20 12:12:03', 0, NULL, 1),
(4508, '', '0', '9629388276', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104200019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-20 12:35:57', 0, NULL, 0, NULL, 1),
(4509, 'Karthik Radhakrishnan', '28', '9940288484', '9790705878', 'mailme90karthik@gmail.com', '1990-02-03', 31, '2', '1', 'Karthika R', 'Teacher', 39000.00, 4, 300000.00, 450000.00, 'Chennai', 'Chennai', '2104200020', '1', '2', 'upload_files/candidate_tracker/71973434973_Karthik_resume-2021-converted (1).pdf', NULL, NULL, '2021-04-21', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have MIS Exp, Communication ok but the expectation is very high Holding an offer for 4 LPA,Exp 4.5 LPA Min', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 12:47:26', 1, '2021-04-20 05:02:48', 0, NULL, 1),
(4510, 'Anandan', '17', '9710255479', '7338922263', 'anandangnc41@gmail.c', '1991-11-06', 29, '2', '1', 'Hema latha', 'House wife', 10000.00, 0, 20000.00, 20000.00, 'Chennai', 'Chennai', '2104200021', '1', '2', 'upload_files/candidate_tracker/96299348477_1618903813608_1618901933627_anand 2 resume 2.docx', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Frequent Job Changes, no relevant Exp not suits', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-04-20 12:49:15', 1, '2021-04-20 01:02:38', 0, NULL, 1),
(4511, 'Pujitha', '4', '7395911949', '9789009264', 'mail2puji@gmail.com', '1996-04-30', 24, '2', '2', 'DAYALAN j', 'Electrician', 10000.00, 0, 0.00, 15000.00, '3/14 prithivipakkam main road venkatapuram', 'Ambattur', '2104200022', '16', '1', 'upload_files/candidate_tracker/95683507632_Pujitha BIM Resume-converted.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non Voice process only', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-20 12:50:23', 1, '2021-04-20 12:53:40', 0, NULL, 1),
(4512, '', '0', '9940211104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104200023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-20 02:41:05', 0, NULL, 0, NULL, 1),
(4513, 'Varsha K', '28', '9952930208', '', 'varsha.kamakolunu@gmail.com', '1996-10-24', 24, '2', '2', 'K. Chandrasekaran', 'Clerk', 80000.00, 1, 18000.00, 25000.00, 'K K nagar', 'K k nagar', '2104200024', '1', '2', 'upload_files/candidate_tracker/77512377298_Resume - Varsha K.pdf', NULL, NULL, '2021-04-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Good, Requested  time to Check For Agreement With Parents and didnt turn back', '3', '2', '0', '1', '1', '0', '2', '2021-04-26', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 03:16:12', 1, '2021-04-20 04:34:16', 0, NULL, 1),
(4514, '', '0', '7904562919', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104200025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-20 04:40:32', 0, NULL, 0, NULL, 1),
(4515, 'k.s.varsha', '22', '9940096561', '9543102409', 'ksvarsha123@gmail.com', '1998-03-14', 23, '2', '2', 'k.m suresh', 'mba student', 100000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2104200026', '1', '1', 'upload_files/candidate_tracker/46664442010_Resume..pdf', NULL, NULL, '2021-04-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Looking For Digi Mar, Sustainability Doubt,', '2', '1', '0', '1', '1', '0', '2', '2021-04-23', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 05:42:35', 1, '2021-04-20 05:49:35', 0, NULL, 1),
(4516, 'shruti', '22', '8825576442', '', 'shrutidaga11@gmail.com', '1999-05-11', 21, '2', '2', 'suresh kumar', 'businessman', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2104200027', '1', '1', 'upload_files/candidate_tracker/7757059687_updated resume 1.docx', NULL, NULL, '2021-04-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 05:56:41', 1, '2021-04-22 08:00:08', 0, NULL, 1),
(4517, '', '0', '7338718299', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104200028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-20 05:56:58', 0, NULL, 0, NULL, 1),
(4518, 'Rajesh kumar A', '7', '9092427230', '', 'Rajiviji1998000@gmail.com', '1998-07-31', 22, '2', '2', 'Ashokan m', 'Car mechanic', 10000.00, 1, 13000.00, 15000.00, 'Thiruverkadu chennai', 'Thiruverkadu chennaj', '2104200029', '1', '2', 'upload_files/candidate_tracker/37566197907_Resume - rajesh31.docx', NULL, NULL, '2021-04-21', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not fit for MF positions, no basic knowledge in MF', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-20 06:00:09', 1, '2021-04-20 06:12:35', 0, NULL, 1),
(4519, '', '0', '9092308214', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104200030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-20 06:23:21', 0, NULL, 0, NULL, 1),
(4520, 'Shamlee Santhanam', '28', '7904477050', '', 'shamleeshamu94@gmail.com', '1994-11-01', 26, '2', '1', 'Santhanam N', 'Business', 30000.00, 1, 14789.00, 25000.00, 'Triplicane', 'Triplicane', '2104200031', '1', '2', 'upload_files/candidate_tracker/87384853445_ic1ud-6uqj4.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Worked In RR Donnelly, Sustainability Doubt Career Gap, Exp - 18K', '3', '2', '0', '1', '1', '0', '2', '2021-04-26', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 07:07:45', 1, '2021-04-22 04:42:19', 0, NULL, 1),
(4521, 'Samshier sate', '5', '9566080782', '', 'samshiersate1999@gmail.com', '2006-04-21', 0, '2', '2', 'Jailakhan', 'Salary private', 45000.00, 2, 0.00, 35000.00, 'Avadi', 'Avadi', '2104210001', '16', '2', 'upload_files/candidate_tracker/55991820523_RESUME sam.docx', NULL, NULL, '2021-04-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sales Exp in CDF, high CTC expectation', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 10:59:37', 1, '2021-04-21 11:02:53', 0, NULL, 1),
(4522, '', '0', '7401541416', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 11:45:05', 0, NULL, 0, NULL, 1),
(4523, 'Vinitha', '4', '8903928412', '', 'vinithavishwa1998@gmail.com', '1998-03-02', 23, '2', '2', 'Viswanathan', 'Tailore', 25000.00, 1, 0.00, 15000.00, 'Salem ,Tamil Nadu', 'Chennai', '2104210003', '1', '1', 'upload_files/candidate_tracker/14976758379_resume_vinitha_01.pdf', NULL, NULL, '2021-04-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-21 11:46:40', 7, '2021-04-22 02:40:40', 0, NULL, 1),
(4524, 'M.KISHORE', '4', '7200382746', '9843990696', 'mkishore813@gmail.com', '1995-09-05', 0, '2', '1', 'K.Mohandass', 'Site Supervisor', 26.00, 1, 11.00, 12.00, 'Mayiladuthurai', 'Tambaram', '2104210004', '1', '1', 'upload_files/candidate_tracker/16020361926_Resume(Kishore).pdf', NULL, NULL, '2021-04-21', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Voice, will not handle the Pressure  and not ready to work on target', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-21 12:26:02', 1, '2021-04-21 12:27:27', 0, NULL, 1),
(4525, 'Nandhini. S', '4', '8248799603', '8610406352', 'dakshinanandhini@gmail.com', '1997-04-21', 24, '2', '1', 'Shanmugam. R', 'Driver', 10000.00, 1, 12000.00, 15000.00, 'Thiruninravur', 'Thiruninravur', '2104210005', '1', '2', 'upload_files/candidate_tracker/24126883796_nandhini resume....pdf', NULL, NULL, '2021-04-21', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability Doubt, Will not handle the pressure,', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-21 12:47:19', 50, '2021-04-28 10:41:02', 0, NULL, 1),
(4526, '', '0', '9443403216', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 12:54:45', 0, NULL, 0, NULL, 1),
(4527, 'Venkatesh', '4', '9626613657', '', 'vtesh922@gmail.com', '1996-04-06', 25, '2', '2', 'Kannan', 'Employee', 50000.00, 0, 0.00, 15000.00, 'Tiruvannamalai', 'Chennai', '2104210007', '1', '1', 'upload_files/candidate_tracker/3900552059_Venkatesh Resume.pdf', NULL, NULL, '2021-04-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-21 01:03:40', 1, '2021-04-21 01:24:09', 0, NULL, 1),
(4528, 'Parthiban b', '6', '9884373343', '8778029712', 'parthipraveen36@gmail.com', '1996-03-06', 25, '2', '2', 'K balaji', 'Record clerk', 30000.00, 1, 14000.00, 18000.00, 'Chennai vyasarpadi', 'Vyasarpadi', '2104210008', '1', '2', 'upload_files/candidate_tracker/11910196836_2021 new resume .pdf', NULL, NULL, '2021-04-21', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Got Selected For Thiyagu Team,15K TH Was Committed Earlier,Now Need To Negotiate With PF Deductions/He S Corona Positive Will Take Some Time To Come Back. Attended 3months back ', '5', '2', '0', '1', '3', '0', '2', '2021-05-10', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-21 01:09:03', 1, '2021-04-21 01:19:57', 0, NULL, 1),
(4529, 'N. Syed Riyazuddin', '4', '8072517606', '7092915857', 'Ispaderaja007@gmail.com', '1999-12-15', 21, '1', '2', 'Syed Nizamuddin', 'Unemployment', 45000.00, 1, 17000.00, 20000.00, 'Vengal, thiruvallur', 'Vengal, thiruvallur', '2104210009', '', '2', 'upload_files/candidate_tracker/23444372630_resume-1.docx', NULL, NULL, '2021-04-22', 30, 'Na', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'For Tiruvallur Location, Expectation Min 20k,Into Credit Card Sales', '1', '1', '0', '1', '1', '0', '2', '2021-04-26', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 01:10:59', 1, '2021-04-22 11:35:55', 0, NULL, 1),
(4530, 'SAALIM HUSSAIN M A', '13', '9940104127', '', 'saalimhussain1095@gmail.com', '1999-11-16', 21, '2', '2', 'ATHEEQUR RAHMON M H', 'Clerk', 10000.00, 1, 0.00, 11000.00, 'Chennai', 'Chennai', '2104210010', '1', '1', 'upload_files/candidate_tracker/17178047546_saalimhussain1095.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge, sustainability doubt, will not suits', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-21 02:26:59', 1, '2021-04-21 02:38:47', 0, NULL, 1),
(4531, '', '0', '8892071555', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 02:28:28', 0, NULL, 0, NULL, 1),
(4532, 'PAVITHRA.M', '4', '6382715013', '9789908074', 'pavithrajeshu2803@gmail.com', '2006-04-21', 0, '1', '2', 'B.MANI', 'Cooli', 13000.00, 1, 12000.00, 15000.00, 'Chennai-medavakkam', 'Medavakkam-chennai', '2104210012', '', '2', 'upload_files/candidate_tracker/92757241591_PAVI RESUME UPDATED.pdf', NULL, NULL, '2021-04-21', 1, '1047', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice Process only', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 02:36:33', 1, '2021-04-21 03:00:52', 0, NULL, 1),
(4533, '', '0', '9344956117', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 02:38:01', 0, NULL, 0, NULL, 1),
(4534, 'Saira begam', '4', '7871281515', '6379053092', 'Ammusaira864@gmail.com', '1998-08-22', 22, '1', '2', 'R. Munver basha', 'Tailor', 15000.00, 1, 0.00, 11000.00, 'Chennai velachery', 'Chennai', '2104210014', '', '1', 'upload_files/candidate_tracker/53167058995_resume 2 pages (2).pdf', NULL, NULL, '2021-04-21', 0, '1047', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Non Voice process', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 02:49:03', 1, '2021-04-21 04:01:58', 0, NULL, 1),
(4535, '', '0', '8939107989', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 03:38:21', 0, NULL, 0, NULL, 1),
(4536, 'V. Niranjana', '4', '8939107978', '', 'Niranjanaaathisri2000@gmail.com', '2000-09-22', 20, '1', '2', 'V. Jayanthi', 'House keeping', 15000.00, 0, 12000.00, 15000.00, 'Chennai', 'Chennai', '2104210016', '', '2', 'upload_files/candidate_tracker/39839088191_Report Preview(1).PDF', NULL, NULL, '2021-04-21', 1, '1047', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Voice process', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 03:52:57', 1, '2021-04-21 03:58:25', 0, NULL, 1),
(4537, 'J.pavithra', '4', '6383257839', '9344956117', 'Pavithradass76@gmail.com', '2006-04-21', 0, '1', '2', 'A.jesudass', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Medavakkam', 'Chennai', '2104210017', '', '2', 'upload_files/candidate_tracker/83227409889_Report Preview(1).PDF', NULL, NULL, '2021-04-21', 1, '1047', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Non Voice Process', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 04:01:54', 1, '2021-04-21 04:05:30', 0, NULL, 1),
(4538, 'Mohammed Thaqi. C', '13', '7845014181', '', 'thaqicm@gmail.com', '2000-12-02', 20, '2', '2', 'Zafaruddin.c', 'Leather asster', 20000.00, 4, 0.00, 15000.00, 'Chennai', 'Chennai', '2104210018', '1', '1', 'upload_files/candidate_tracker/77723640054_Md Thaqi(Resume-A).pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to check with family for SA, Sustainability Doubt', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-21 04:06:21', 1, '2021-04-21 04:09:14', 0, NULL, 1),
(4539, 'Deepika S', '4', '7358004221', '9566226356', 'deepijesika1503@gmail.com', '2000-03-15', 21, '2', '2', 'Santha', 'House wife', 15000.00, 1, 12000.00, 18000.00, 'Paramakudi', 'Thiruvottiyur', '2104210019', '1', '2', 'upload_files/candidate_tracker/9117496419_DEEPIKA S.pdf', NULL, NULL, '2021-04-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking only for Non Voice process, location constraint', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-21 04:11:08', 50, '2021-04-27 11:31:56', 0, NULL, 1),
(4540, 'Harshavardhan s', '5', '8296986268', '', 'harsh2951990@gmail.com', '1990-05-29', 30, '2', '2', 'Sathya murthy s', 'Retired', 30000.00, 1, 5.75, 5.00, 'Bangalore', 'Bangalore', '2104210020', '', '2', 'upload_files/candidate_tracker/33494675214_1618564556135_Resume - 05-01-2021.docx', NULL, NULL, '2021-04-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 04:11:10', 1, '2021-04-21 04:16:16', 0, NULL, 1),
(4541, 'mohammed irsath A', '2', '9600300630', '8610718879', 'irshath700@gmail.com', '2000-10-23', 20, '2', '2', 'Vahitha banu A', 'Housewife', 13000.00, 1, 0.00, 20000.00, 'No.395 2nd street sanjay nagar vyasarpadi chennai', 'No.395 2nd street sanjay nagar vyasarpadi chennai', '2104210021', '1', '1', 'upload_files/candidate_tracker/24286843069_Mohammed irsath a CV.pdf', NULL, NULL, '2021-04-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'For Mern Stack,Fresher,Should Come Back After Completing The Exams', '2', '2', '0', '1', '1', '0', '2', '2021-05-03', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-21 04:20:11', 1, '2021-04-21 04:26:08', 0, NULL, 1),
(4542, '', '0', '7338917407', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 04:41:03', 0, NULL, 0, NULL, 1),
(4543, 'Roger Antony', '23', '7708270558', '9080871687', 'rogerantony222@gmail.com', '1995-04-24', 25, '2', '2', 'Jerome Manoharan Arokia Mary', 'IT', 20000.00, 1, 0.00, 15000.00, 'Nagercoil', 'chennai', '2104210023', '1', '1', 'upload_files/candidate_tracker/81623384650_Roger_Antony_Mobile.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not Satisfied.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-21 05:15:27', 1, '2021-04-21 05:22:20', 0, NULL, 1),
(4544, '', '0', '6382639244', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 05:34:55', 0, NULL, 0, NULL, 1),
(4545, 'Gobi krishnan', '13', '8667344612', '', 'Gobikrish03@gmail.com', '1999-07-22', 21, '2', '2', 'Muthu.v', 'Electrician', 90000.00, 2, 0.00, 3.00, 'Chennai', 'Chennai', '2104210025', '1', '1', 'upload_files/candidate_tracker/47984499915_Gobi\'s Resume.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Agreement, fresher yet to complete College', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-21 05:42:27', 1, '2021-04-24 03:08:45', 0, NULL, 1),
(4546, 'Venkatesh', '4', '6385315142', '', 'vtesh430@gmail.com', '1996-04-06', 25, '2', '2', 'Kannan', 'Employee', 50000.00, 0, 0.00, 14000.00, 'Tiruvannamalai', 'Chennai', '2104220001', '1', '1', 'upload_files/candidate_tracker/33922794822_Venkatesh Resume.pdf', NULL, NULL, '2021-05-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-22 08:24:37', 1, '2021-04-22 08:29:12', 0, NULL, 1),
(4547, 'Venkatesh', '4', '6385314152', '', 'vtesh430@gmail.com', '1996-04-06', 25, '2', '2', 'Kannan', 'Employee', 50000.00, 0, 0.00, 14000.00, 'Tiruvannamalai', 'Chennai', '2104220002', '1', '1', 'upload_files/candidate_tracker/5638056749_Venkatesh Resume.pdf', NULL, NULL, '2021-05-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-22 08:30:04', 1, '2021-04-22 10:40:46', 0, NULL, 1),
(4548, '', '0', '7092320507', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104220003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-22 08:47:42', 0, NULL, 0, NULL, 1),
(4549, 'leena', '4', '6374041594', '', 'vteena474@gmail.com', '2001-07-24', 19, '2', '2', 'vetrivel', 'plumber', 20000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2104220004', '2', '1', 'upload_files/candidate_tracker/59991541893_Leena.V Resume-2.pdf', NULL, NULL, '2021-04-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Only for Non Voice,will not sustain in our process', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-22 08:56:38', 1, '2021-04-22 08:58:05', 0, NULL, 1),
(4550, 'B MOHANARANGAN', '26', '8754531882', '9043335096', 'MOHANARANGAN.4604@gmail.com', '1990-02-12', 31, '2', '2', 'Balakrishnan j', 'Retired', 15000.00, 2, 12000.00, 15000.00, 'Chennai', 'Chennai', '2104220005', '1', '2', 'upload_files/candidate_tracker/60816615991_New Doc 2021-04-07 11.56.55_1.pdf', NULL, NULL, '2021-04-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability Doubt, Will not fit for our MF Role, No knowledge in MF', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-22 10:51:45', 7, '2021-04-22 11:37:22', 0, NULL, 1),
(4551, 'Shanmuga priya.S', '4', '9361345332', '7092320507', 'shanmugapriya1860@gmail.com', '2000-10-21', 20, '2', '2', 'Saravanan', 'Security', 10000.00, 1, 0.00, 15000.00, '8/316 194th street muthungaiyur Chennai 118', '8/316 194th street muthamizh Nungaiyur Chennai 118', '2104220006', '1', '1', 'upload_files/candidate_tracker/55704264064_shanmuga priya resume updated pdf.pdf', NULL, NULL, '2021-04-22', 0, '', '3', '8', '2021-04-26', 132000.00, '', '3', '2022-03-03', '2', 'Selected for Priyanka Jeni, CTC -132000 Gross-  11000 TH - 10450', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-22 10:52:55', 60, '2021-04-24 04:14:51', 0, NULL, 1),
(4552, 'rajasekaran c', '20', '7010428328', '9551393983', 'sekaran0215@gmail.com', '2006-04-22', 0, '2', '2', 'chandran', 'work', 150000.00, 1, 0.00, 20000.00, 'no 35 nainar st', 'chennai', '2104220007', '1', '1', 'upload_files/candidate_tracker/96206982208_RAJA RESUME.doc', NULL, NULL, '2021-04-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'only retail store Exp, Will not fit for  our Sales profile,will not handle the pressure', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-22 11:23:51', 7, '2021-04-22 11:38:08', 0, NULL, 1),
(4553, 'Priyanka', '28', '6380039387', '9080796639', 'priyankaanoai@gmail.com', '2000-07-25', 20, '2', '2', 'Perumal', 'Labour', 20000.00, 3, 0.00, 13000.00, 'Chennai', 'Chennai', '2104220008', '1', '1', 'upload_files/candidate_tracker/46801145613_RESUME-P.docx', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Good Communication,Profile is Good, not sure about sustainability as her marriage proposal going on', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 11:27:58', 1, '2021-04-22 11:44:42', 0, NULL, 1),
(4554, 'Justin Davis J', '6', '8344416941', '8344416931', 'justin18davis@gmail.com', '1993-01-07', 28, '2', '1', 'Jenifer', 'Emergency Response Officer at 108', 30000.00, 2, 85000.00, 28000.00, 'Thuraipakkam', 'Thuraipakkam', '2104220009', '1', '2', 'upload_files/candidate_tracker/93491259825_Justin Resume-1.doc', NULL, NULL, '2021-04-22', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-22 11:30:36', 1, '2021-04-22 11:38:35', 0, NULL, 1),
(4555, 'Sowbakiya', '16', '8248722289', '', 'sowbakiyaloganathan@gmail.com', '1995-11-15', 25, '2', '2', 'Loganathan E.', 'Plumbing supervisor', 84000.00, 2, 17000.00, 30000.00, 'No -4, U block, vishalakshi garden, Mylapore', 'Same as above', '2104220010', '1', '2', 'upload_files/candidate_tracker/52770951844_RESUME_sowbakiya.doc', NULL, NULL, '2021-04-22', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,Salary Expectation is high,sustainability Doubt', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '7', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-22 11:38:56', 7, '2021-04-22 12:11:56', 0, NULL, 1),
(4556, 'Vinothini P', '28', '8675644708', '9710112147', 'vinoreethu@gmail.com', '2000-03-16', 21, '2', '2', 'Palani K', 'Security', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chrompet, Chennai.', '2104220011', '1', '1', 'upload_files/candidate_tracker/13757445328_RESUME- Vinothini.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Accounts position,Sustainability Doubt', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 12:11:24', 1, '2021-04-22 12:19:08', 0, NULL, 1),
(4557, 'Karthikeyan S', '4', '7550231640', '9361620240', 'karthiksanju26@gmail.com', '2001-02-26', 20, '2', '2', 'Saravanan D', 'Bannering', 12000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2104220012', '1', '1', 'upload_files/candidate_tracker/93836053218_KarthikeyaN CV.pdf', NULL, NULL, '2021-04-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 12:13:48', 1, '2021-04-22 06:18:27', 0, NULL, 1),
(4558, 'Nithyananthan', '4', '9952048867', '7358477546', 'Nithyananthan4567@gmail.com', '1994-06-29', 26, '2', '2', 'G.Palani', 'Corpentor', 30000.00, 5, 15000.00, 16000.00, 'Thirumudivakkam Chennai', 'Thirumudivakkam Chennai', '2104220013', '1', '2', 'upload_files/candidate_tracker/37791119759_NITHYANANTHAN.docx', NULL, NULL, '2021-04-22', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested for Sales,No communication', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-22 12:43:27', 1, '2021-04-22 12:55:24', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4559, 'Abinesh V M', '28', '7305727364', '', 'vmabinesh912@gmail.com', '2000-12-09', 20, '2', '2', 'B.V.Manickavel', 'Real Estate', 30000.00, 1, 0.00, 15000.00, 'Chennai.', 'Chrompet, Chennai.', '2104220014', '1', '1', 'upload_files/candidate_tracker/47082697847_Abinesh-B.com-SRM.pdf', NULL, NULL, '2021-04-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 12:54:41', 1, '2021-04-22 01:23:21', 0, NULL, 1),
(4560, 'Bharath kumar. C', '28', '9361679206', '9791756988', 'Candybharath2000@gmail.com', '2000-11-30', 20, '2', '2', 'K. Chellappan', 'Mechanic', 15000.00, 1, 0.00, 13000.00, '36/c meenavar st kundrathur chennai, 69', '36/c meenavat st kundrathur Chennai, 69', '2104220015', '1', '1', 'upload_files/candidate_tracker/87151528995_CV_2021-04-22-031526.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication ,College yet to complete', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 12:56:19', 1, '2021-04-22 03:21:32', 0, NULL, 1),
(4561, 'Aravind K', '28', '7708886432', '', 'aravindrv1604@gmail.com', '2000-01-16', 21, '2', '2', 'Krishnan G', 'Business', 10000.00, 2, 0.00, 15000.00, 'Oragadom', 'Singaperumal koil', '2104220016', '1', '1', 'upload_files/candidate_tracker/11986236010_Aravind resume.docx', NULL, NULL, '2021-04-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location Constraint, No Communication will not suits for our role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 01:15:08', 50, '2021-04-23 11:44:46', 0, NULL, 1),
(4562, 'MOHAN RAJ.S', '28', '9566605653', '6380677062', 'mohanraj32000@gmail.com', '2000-08-03', 20, '2', '2', 'MEERA.S', 'Self-employed', 10000.00, 1, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2104220017', '1', '1', 'upload_files/candidate_tracker/95004197219_Mohan Raj-B.Sc-SRM.docx', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Focus on IT positions, Need to complete the graduation, will come once done with Course', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 01:30:20', 1, '2021-04-22 01:41:26', 0, NULL, 1),
(4563, 'Darvin Raj s', '28', '9940535019', '9940525019', 'darvinraj09@gmail.com', '2000-09-26', 20, '2', '2', 'G shankar', 'Courier', 10000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2104220018', '1', '1', 'upload_files/candidate_tracker/31767841226_CV_darvin bsc cs-SRM.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Average Communication, Sustainability Doubt', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 02:12:37', 1, '2021-04-22 04:45:48', 0, NULL, 1),
(4564, 'A. ANISHA', '4', '9080861390', '9345213813', 'shayirastenny0704@gmail.com', '1998-11-04', 22, '2', '2', 'T. APPUKUTTAN', 'Cooly', 20000.00, 1, 0.00, 15000.00, '3.17/A, peruvazhikadavu, ponmanai (p. O)', 'Chennai', '2104220019', '1', '1', 'upload_files/candidate_tracker/40894042558_ammuani.docx', NULL, NULL, '2021-04-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Went back to the native, once return to chennai will let us know', '1', '1', '', '1', '1', '', '2', '2021-04-26', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-22 02:23:13', 7, '2021-04-22 06:16:39', 0, NULL, 1),
(4565, 'Shiju', '4', '6369760363', '', 'bshiju13@gmail.com', '2000-01-13', 21, '2', '2', 'Babu', 'Coolie', 20000.00, 1, 0.00, 13000.00, 'Kanyakumari', 'Kanyakumari', '2104220020', '1', '1', 'upload_files/candidate_tracker/85346327980_Shiju RESUME.docx.pdf', NULL, NULL, '2021-04-22', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'even he s not opening his mouth', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-22 02:25:44', 7, '2021-04-22 06:16:23', 0, NULL, 1),
(4566, 'Nimmy .R', '4', '9629273449', '', 'Njiji70@gmail.com', '1996-01-09', 25, '2', '1', 'Rajamani', 'Coolie', 10000.00, 2, 0.00, 13000.00, '11/31,pukcodu,chanalkarai,mekkamandapam(po) 629166', 'Chennai', '2104220021', '1', '1', 'upload_files/candidate_tracker/81677187763_DIPR - P.R.No.219 - Press Release - Lockdown - Date 18.04.2021.pdf', NULL, NULL, '2021-04-22', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not opened her mouth', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-22 02:26:14', 7, '2021-04-22 06:16:08', 0, NULL, 1),
(4567, 'Nivetha.R', '4', '6369880015', '8870265705', 'nivearb9@gmail.com', '1998-10-11', 22, '2', '1', 'Rajakumar', 'Plumber', 10000.00, 1, 0.00, 15000.00, '43A/42 meenashi nager erulappapuram', 'Chennai', '2104220022', '1', '1', 'upload_files/candidate_tracker/25081542320_New Doc 2021-04-10 11.15.45_1.pdf', NULL, NULL, '2021-04-22', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'voice not clear not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-22 02:28:38', 1, '2021-04-22 03:03:19', 0, NULL, 1),
(4568, 'Naveen raj', '22', '9566738441', '9566393792', 'naveenfredy97@gmail.com', '1997-12-29', 23, '2', '2', 'Ramesh', 'Driver', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2104220023', '1', '1', 'upload_files/candidate_tracker/80292327661_CV_20210130035218.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Already attended for RM, we offered but  didnt join now came for Digital Marketing', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 02:42:24', 1, '2021-04-22 03:06:51', 0, NULL, 1),
(4569, 'Prasath E', '4', '9962945083', '9841794713', 'Prasathmahi445@gmail.com', '2006-04-22', 15, '2', '2', 'Elumalai p', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Guduvancheri', 'Gudvancheri', '2104220024', '1', '1', 'upload_files/candidate_tracker/85835031323_CV.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Agreement Ok Yet To Complete College, Can join only after his studies', '1', '2', '', '1', '1', '', '2', '2021-04-26', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 02:44:07', 60, '2021-04-24 10:15:03', 0, NULL, 1),
(4570, '', '0', '8667240097', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104220025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-22 02:47:51', 0, NULL, 0, NULL, 1),
(4571, 'Patrice Priyanka Sabu', '28', '9677985391', '', 'patricepriyanka27@gmail.com', '2000-04-14', 21, '2', '2', 'Vijaya mary', 'Yarn Import and Export', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2104220026', '1', '1', 'upload_files/candidate_tracker/89658619063_RESUME.docx', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will come back after completing the exams,focus into IT openings\n', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 04:43:48', 1, '2021-04-22 04:47:56', 0, NULL, 1),
(4572, 'Wajith Baig . D', '4', '9087438129', '7092274664', 'wajithbaig123@gmail.com', '2000-05-14', 20, '2', '2', 'Dawood Baig . S', 'Driver', 60000.00, 1, 12000.00, 12000.00, 'Villivakkam, chennai', 'Villivakkam, chennai', '2104220027', '1', '2', 'upload_files/candidate_tracker/9912663650_Kaagaz_20210423_112755506268.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'not opening his mounth also', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-04-22 06:16:42', 1, '2021-04-23 11:48:02', 0, NULL, 1),
(4573, 'Mohammed Arshath Saliq', '23', '9092267972', '9840945409', 'arshathsaliq@gmail.com', '2000-11-30', 20, '2', '2', 'Shahul Hameed', 'Coolie', 8000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2104220028', '1', '1', 'upload_files/candidate_tracker/15530330414_Arshath SALIQ CV.pdf', NULL, NULL, '2021-05-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 07:04:55', 1, '2021-04-22 07:11:07', 0, NULL, 1),
(4574, 'Vishnu', '22', '9962819198', '8939644233', 'vishnudavid1999@gmail.com', '1999-08-17', 21, '2', '2', 'Shanthi', 'House wife', 14000.00, 1, 0.00, 5000.00, '3/92B Padasalai Street Vettuvankeni Chennai', '3/92B Padasalai Street Vettuvankeni Chennai', '2104220029', '1', '1', 'upload_files/candidate_tracker/32197989848_Vishnu%20Resume.docx', NULL, NULL, '2021-04-24', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected for Digital Marketing Intern cum Employment, initial Stipend will be provided then CTC will be finalised post 3 months of Internship', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 07:17:44', 1, '2021-04-22 07:26:31', 0, NULL, 1),
(4575, 'KISHORE KUMAR.N', '28', '7358442225', '9444735860', 'profkishorekumar14@gmail.com', '2000-11-14', 20, '2', '2', 'Bharathi', 'Business', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104220030', '1', '1', 'upload_files/candidate_tracker/47301688159_KISHORE CV-converted.pdf', NULL, '1', '2021-04-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication average ,not open for Agreement', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-04-22 08:00:22', 84, '2022-02-26 12:20:48', 0, NULL, 1),
(4576, '', '0', '9345333429', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104220031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-22 11:18:02', 0, NULL, 0, NULL, 1),
(4577, 'Amirtha yadhav', '3', '8610316728', '7708033733', 'amirthadoss@gmail.com', '1992-10-18', 28, '2', '1', 'Husband', 'Material engineer', 60000.00, 1, 10000.00, 15000.00, 'Ambattur', 'Ambattur', '2104230001', '1', '2', 'upload_files/candidate_tracker/63943165808_Amirtha-2020-1-1.pdf', NULL, NULL, '2021-04-24', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Every one year Job Change,sustainability doubt will not handle the pressure', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-23 09:35:02', 1, '2021-04-24 11:04:58', 0, NULL, 1),
(4578, 'aswin.v', '28', '9600142618', '9962944019', 'aswinhardyboy@gmail.com', '2000-08-15', 20, '2', '1', 's.Vaidhyanathan', 'private sector', 60000.00, 0, 0.00, 20000.00, 'medavakam', 'medavakam', '2104230002', '1', '1', 'upload_files/candidate_tracker/1957590198_Aswin .pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, College yet to complete.Sustainability 50/50', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-23 09:44:28', 1, '2021-04-23 11:23:16', 0, NULL, 1),
(4579, 'R.Bhavani', '4', '9080549545', '7904746721', 'bhavakutty8146@gmail.com', '1999-05-07', 21, '2', '2', 'V.Ramathas', 'Former', 20000.00, 1, 0.00, 20000.00, 'Perambalur', 'T nagar', '2104230003', '1', '1', 'upload_files/candidate_tracker/45728242497_Arumkumar.doc', NULL, NULL, '2021-04-23', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for voice process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-23 11:12:59', 60, '2021-04-23 04:28:37', 0, NULL, 1),
(4580, 'R.janani', '25', '7708235563', '9626343980', 'Jjanani921@gmail.com', '1997-01-29', 24, '3', '1', 'R.muthulakshmi', 'Checking', 10000.00, 1, 15.00, 20.00, 'Pudukkottai', 'Thiruvallur', '2104230004', '', '2', 'upload_files/candidate_tracker/28903819811_Report Preview.PDF', NULL, NULL, '2021-04-23', 1, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'exp high salary, seems fraud', '8', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-23 11:14:37', 1, '2021-04-23 11:59:20', 0, NULL, 1),
(4581, 'Sujeethra R', '4', '7695989149', '8778706720', 'sujeethrasuji@gmail.com', '2001-02-09', 20, '2', '2', 'Rajadurai A', 'Self Employment', 5000.00, 1, 0.00, 12000.00, 'Gowrivakkam', 'Gowrivakkam', '2104230005', '1', '1', 'upload_files/candidate_tracker/35411854245_Sujeethra Resume.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much focus into nonvoice, location constraint', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-04-23 11:35:43', 1, '2021-04-23 12:06:51', 0, NULL, 1),
(4582, 'Jenifer D', '4', '9514020930', '6382369118', 'jeniferdev09@gmail.com', '2000-03-09', 21, '2', '2', 'Devaraj V', 'Self Employment', 72000.00, 1, 0.00, 12000.00, 'Agaram then', 'Agaram then', '2104230006', '1', '1', 'upload_files/candidate_tracker/96366041354_Resume_Jenifer D_Format5.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Nonvoice, Will not handle pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-04-23 11:36:54', 1, '2021-04-23 11:54:46', 0, NULL, 1),
(4583, 'V.karthikeyan', '7', '9551790038', '9551428931', 'Keyanpeace2893@gmail.com', '1993-12-28', 27, '1', '2', 'N.venkatesalu', 'Retired', 15000.00, 1, 18000.00, 25000.00, 'No 21/10 loco works road agaram chennai 600082', 'Perambur', '2104230007', '', '2', 'upload_files/candidate_tracker/27860854816_pk.docx', NULL, NULL, '2021-04-23', 0, 'Jobd', '3', '8', '1970-01-01', 216000.00, '', '2', '1970-01-01', '1', 'for mF, Mctc is 18000, and ctc is 216000.', '7', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '4', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-23 12:25:02', 7, '2021-05-05 01:18:29', 0, NULL, 1),
(4584, 'Srimathi j', '20', '7338966726', '', 'Sathisrimathi@gmail.coom', '1996-07-07', 24, '2', '2', 'K jaisankar', 'Bank', 30000.00, 1, 0.00, 20000.00, 'No.29, Revathi Nagar kolathur chennai_99', 'Vinayagapuram, kolathur', '2104230008', '1', '1', 'upload_files/candidate_tracker/23330659769_New Doc 2021-04-23 11.18.34_2.pdf', NULL, '1', '2021-04-23', 0, '', '3', '59', '2021-08-06', 146496.00, '', '5', '1970-01-01', '1', 'Selected for CRM - Priority Shanmuga Kutralingam Team with CTC 146496 includes 208 deduction in Client Advisory Prop', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-23 12:54:39', 60, '2021-08-06 07:31:19', 0, NULL, 1),
(4585, 'Mohammed zaid hajee', '28', '9791360712', '', 'hajizaid42@gmail.com', '1995-03-23', 26, '2', '2', 'Sayeed Hussain.h', 'employed', 30000.00, 2, 300000.00, 400000.00, 'Chennai', 'chennai', '2104230009', '1', '2', 'upload_files/candidate_tracker/87368794243_cv.docx', NULL, NULL, '2021-04-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'written was not good and expt is 3.7l. as exp only in accounts', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-23 01:49:26', 50, '2021-04-29 02:33:59', 0, NULL, 1),
(4586, 'Rubha Nayyar', '28', '9677608214', '8778025554', 'nayyarrubha@gmail.com', '1994-08-11', 26, '2', '2', 'Ashfaq ahmed', 'Manager', 35000.00, 2, 273000.00, 350000.00, 'Chennai', 'chennai', '2104230010', '1', '2', 'upload_files/candidate_tracker/33860138185_updated cv 2.pdf', NULL, NULL, '2021-04-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not turned up for next round interview', '3', '1', '', '1', '1', '', '2', '2021-04-30', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-23 01:49:27', 50, '2021-04-29 02:32:53', 0, NULL, 1),
(4587, 'navin kumar', '2', '9445094788', '', 'navink2015@gmail.com', '1996-07-26', 24, '2', '1', 'manoharan', 'clerk', 20000.00, 1, 0.00, 24000.00, 'Chennai', 'Chennai', '2104230011', '1', '1', 'upload_files/candidate_tracker/33517166416_april2021.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge, sustainability doubt,not much active', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-23 04:28:25', 1, '2021-04-23 04:43:22', 0, NULL, 1),
(4588, 'Mohamed Ilyyas', '26', '7092032815', '9003185387', 'mohamedilyyas786@gmail.com', '1998-04-18', 23, '2', '2', '2', 'Driver', 20000.00, 2, 189000.00, 220000.00, 'Chennai', 'Chennai', '2104230012', '1', '2', 'upload_files/candidate_tracker/9018060469_Mohamed Ilyyas 2021.pdf', NULL, NULL, '2021-04-24', 60, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No knowledge in MF, not even clear for which position he came', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-23 07:21:14', 1, '2021-04-24 10:58:41', 0, NULL, 1),
(4589, 'Mohamed Rizwan', '13', '8056971582', '8754712394', 'mohamedrizwan399@gmail.com', '1999-04-26', 21, '2', '2', 'Mohamed Tajudeen', 'Supervisor', 25000.00, 2, 0.00, 10000.00, 'Nagore', 'Chennai', '2104240001', '1', '1', 'upload_files/candidate_tracker/34526999162_Resume_RIZWAN.docx', NULL, NULL, '2021-04-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Doubtful for a long run, fresher profile not open for SA', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-24 05:45:08', 1, '2021-04-24 05:49:21', 0, NULL, 1),
(4590, '', '0', '9962062046', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104240002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-24 08:40:13', 0, NULL, 0, NULL, 1),
(4591, 'Suriya K', '4', '9566146741', '', 'srisaisurinila02@gmail.com', '2000-05-15', 20, '2', '2', 'Krishna Moorthy', 'Coolie', 12000.00, 2, 0.00, 12000.00, '2/35,Bajanai koil street,varadharajapuram,ch-44.', '2/35, Bajanai koil Street, varadharajapuram,ch-44.', '2104240003', '1', '1', 'upload_files/candidate_tracker/98277710243_New Doc 2021-04-07 11.56.55_1.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for voice process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-24 10:39:41', 60, '2021-04-26 03:05:36', 0, NULL, 1),
(4592, 'Saran', '28', '8610886459', '', 'Saransaravan1999@gmail.com', '1999-05-14', 21, '2', '2', 'Sundar rajan', 'System admin', 20000.00, 1, 0.00, 300000.00, 'West Tambaram', 'West Tambaram', '2104240004', '1', '1', 'upload_files/candidate_tracker/18948364748_saran_14_05_99-1.docx', NULL, NULL, '2021-04-24', 0, '', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good Profile,Communication ok check for DA,Interview by Reyaz 2nd level Interview', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-24 10:51:04', 60, '2021-04-24 04:22:47', 0, NULL, 1),
(4593, 'Raju. a', '4', '9840116127', '', 'raju.a.889912@gmail.com', '1997-09-05', 23, '3', '2', 'S. Amsakalyani', 'Housewife', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104240005', '', '1', 'upload_files/candidate_tracker/68778103920_Resume.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'not fit for this profile', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-24 10:54:40', 1, '2021-04-24 10:57:58', 0, NULL, 1),
(4594, '', '0', '9884247129', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104240006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-24 10:57:10', 0, NULL, 0, NULL, 1),
(4595, '', '0', '8825540789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104240007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-24 10:57:37', 0, NULL, 0, NULL, 1),
(4596, 'R.Narmadha', '13', '7708033733', '7708033633', 'narmadhar754@gmail.com', '1988-11-12', 32, '2', '1', 'R.rajkumar', 'Foreign exchange', 20000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2104240008', '1', '2', 'upload_files/candidate_tracker/26966636110_Narmadha Resume.doc', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Focus into IT openings,Exp but career gap need to brush up the knowledge, age around 33 yrs', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-24 10:57:51', 1, '2021-04-24 11:15:21', 0, NULL, 1),
(4597, 'Vignesh M', '4', '8525008678', '6380670197', 'vickyvigneshbca681@gmail.com', '1996-08-09', 24, '2', '2', 'Mohan K', 'Driver', 20000.00, 5, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2104240009', '1', '1', 'upload_files/candidate_tracker/47725561236_Vignesh BCA.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'communication skill not good not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-24 11:03:56', 1, '2021-04-24 11:16:24', 0, NULL, 1),
(4598, 'Nithyasree', '28', '9940496057', '8248173687', 'nithyasreerah@gmail.com', '2000-10-29', 20, '2', '2', 'Ravi S R', 'TN Secretariat', 70000.00, 1, 0.00, 15000.00, 'NANDIVARAM GUDUVANCHERI', 'NANDIVARAM GUDUVANCHERI', '2104240010', '1', '1', 'upload_files/candidate_tracker/44942652779_NITHYASREE R CV .docx.pdf', NULL, NULL, '2021-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-24 11:05:13', 1, '2021-04-24 11:21:59', 0, NULL, 1),
(4599, 'Viji', '4', '9790927581', '', 'rviji1209@gmail.com', '1993-03-29', 28, '2', '1', 'Tamilselvan', 'Technical support Engineer', 20000.00, 1, 17000.00, 15000.00, 'Thiruvallur', 'Kadampathur', '2104240011', '1', '2', 'upload_files/candidate_tracker/58868108909_Resume (1).docx', NULL, NULL, '2021-04-24', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice process not fit for this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-24 11:27:52', 60, '2021-04-26 03:02:53', 0, NULL, 1),
(4600, 'vinoth kumar', '4', '8845540789', '9841426476', 'vinosmash2018@gmail.com', '1995-12-10', 25, '1', '2', 'chinna vengamma', 'daily wages', 12000.00, 0, 0.00, 15000.00, 'chennai villivakkam', 'chennai villivakkam', '2104240012', '', '1', 'upload_files/candidate_tracker/58634971415_1604401148212_kripa new resume.pdf', NULL, NULL, '2021-04-24', 0, 'p1146', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for this profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-24 11:51:03', 60, '2021-04-26 03:03:54', 0, NULL, 1),
(4601, 'Dhanalaskhmi', '4', '6383774109', '9789021524', 'dhanalakshmidhanalakshmi1716@gmail.com', '2006-04-24', 0, '3', '2', 'Dhakshna Murthy', 'Tailor', 15000.00, 1, 0.00, 10000.00, 'Shanmugapuram, Ambattur, Chennai -99', 'shanmugapuram, Ambattur Chennai-99', '2104240013', '', '1', 'upload_files/candidate_tracker/41069398809_Dhana ( rems).pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up ,will not handle the pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-24 11:59:19', 1, '2021-04-24 12:08:46', 0, NULL, 1),
(4602, 'Jagan R', '5', '9884330412', '8124626106', 'jagan.jagi1997@gmail.com', '1997-12-04', 23, '2', '2', 'Rajeswari', 'House wife', 200000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2104240014', '3', '2', 'upload_files/candidate_tracker/85127389091_Jagan_resume.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Doubt, will not suits much for our role', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-24 12:19:41', 1, '2021-04-24 12:32:08', 0, NULL, 1),
(4603, 'Ranjani. B', '15', '7358423071', '9940242460', 'ranjanibalaji7755@gmail.com', '2001-02-13', 20, '2', '2', 'Revathy. K, balaji. R', 'Student', 30000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2104240015', '1', '1', 'upload_files/candidate_tracker/94447470113_Ranjani\'s Resume (4)-converted-converted (1).pdf', NULL, NULL, '2021-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-24 01:56:03', 1, '2021-04-24 02:01:02', 0, NULL, 1),
(4604, 'Achyudhan.K', '28', '8608869537', '', 'achyufca8@gmail.com', '2000-10-24', 20, '2', '2', 'Kannan', 'Manager', 70000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2104240016', '1', '1', 'upload_files/candidate_tracker/77795601386_Achyudhan cv.docx', NULL, NULL, '2021-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-04-24 01:56:18', 1, '2021-04-24 02:08:22', 0, NULL, 1),
(4605, 'Aakash A', '22', '9361703992', '8939684411', 'akashanand46.aa@gmail.com', '2000-11-12', 20, '2', '2', 'Anandan m', 'Temple archakar', 40000.00, 1, 0.00, 13000.00, 'Kancheepuram', 'Kancheepuram', '2104240017', '1', '1', 'upload_files/candidate_tracker/12972111216_RESUME.pdf', NULL, NULL, '2021-04-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Yet to complete College, Will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-24 03:18:51', 1, '2021-04-24 03:45:58', 0, NULL, 1),
(4606, 'dinesh kumar v', '13', '7810003899', '', 'dineshdk1822@gmail.com', '1999-03-18', 22, '2', '2', 'vinayagam j', 'driver', 45.00, 1, 0.00, 18.00, 'Vellore', 'chennai', '2104250001', '1', '1', 'upload_files/candidate_tracker/87555518632_Dinesh kumar V FINAL RESUME.docx', NULL, NULL, '2021-04-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, not open for Agreement, Exp high Pay', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-25 11:38:11', 60, '2021-04-26 11:54:44', 0, NULL, 1),
(4607, 'ARAVIND E', '26', '8939330032', '8939330063', 'aravindaarthi14@gmail.com', '1996-01-28', 25, '2', '2', 'Elumalai A', 'Car driver', 20000.00, 1, 280000.00, 450000.00, 'Chennai', 'Chennai', '2104260001', '1', '2', 'upload_files/candidate_tracker/54666972576_Aravind E.pdf', NULL, NULL, '2021-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-26 07:52:40', 1, '2021-04-26 07:58:35', 0, NULL, 1),
(4608, 'mani bharathi', '2', '7339261734', '9159287887', 'manibaski2016@gmail.com', '1999-05-19', 21, '2', '2', 'jayanthi', 'ousewife', 20000.00, 0, 0.00, 2.50, 'chennai', 'chennai', '2104260002', '1', '1', 'upload_files/candidate_tracker/1019917057_Mani_Bharathi L_Resume_07-09-2020-21-01-51 (1).pdf', NULL, NULL, '2021-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-26 08:25:26', 1, '2021-05-04 05:19:32', 0, NULL, 1),
(4609, 'Maria prabha', '5', '9791875154', '8056226707', 'mariaprabha1325@gmail.com', '1996-03-13', 25, '2', '2', 'Mohammad riyazuddin', 'Agility logistics executive', 28000.00, 1, 20000.00, 20000.00, 'Parrys chennai', 'Saidapet', '2104260003', '1', '2', 'upload_files/candidate_tracker/10777476428_final resume.pdf', NULL, NULL, '2021-04-26', 0, '', '3', '8', '1970-01-01', 186000.00, '', '2', '1970-01-01', '2', 'for RM-esale, 1,86,000 CTC and 15500 as Mctc', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-26 10:29:28', 7, '2021-05-06 09:42:20', 0, NULL, 1),
(4610, 'Sreeharsh SJ', '16', '9495808132', '', 'Sreeharshsj@gmail.com', '1989-12-11', 31, '2', '2', 'Suresh Kumar ks', 'Retried', 100000.00, 1, 15000.00, 20000.00, 'Trivandrum', 'Chennai', '2104260004', '1', '2', 'upload_files/candidate_tracker/91126275513_Sreeharsh SJ...pdf', NULL, NULL, '2021-04-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Good, Will not sustain for a long, also not much suits', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-26 10:46:52', 1, '2021-04-26 10:58:36', 0, NULL, 1),
(4611, 'Prabhu Raj', '4', '8072448553', '', 'prabhurajperiyaswamy6@gmail.com', '2001-02-28', 20, '2', '2', 'Eshwari', 'Tailor', 13000.00, 0, 13000.00, 12.00, 'chennai', 'chennai', '2104260005', '1', '2', 'upload_files/candidate_tracker/54582443313_Resume_Prabhu.pdf', NULL, NULL, '2021-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-26 11:32:52', 1, '2021-04-26 11:36:41', 0, NULL, 1),
(4612, 'Reehana.f', '28', '8778894870', '8675655441', 'reehanazubar2010@gmail.com', '2000-10-20', 20, '2', '2', 'Fatima bee.F', 'Teacher', 12000.00, 1, 0.00, 15000.00, 'Chengalpettu', 'Chengalpettu', '2104260006', '1', '1', 'upload_files/candidate_tracker/15178766913_REEHANA.docx', NULL, NULL, '2021-04-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Focused on the Career to choose, Sustainability doubt', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-26 11:40:48', 1, '2021-04-26 11:47:22', 0, NULL, 1),
(4613, 'Aravind', '14', '9551265752', '', 'aravindyuvi18@gmail.com', '2006-04-26', 0, '2', '2', 'Yuvaraj', 'Retd', 10000.00, 0, 0.00, 15.00, 'Chennai', 'Chennai', '2104260007', '1', '1', 'upload_files/candidate_tracker/7788265663_1618476000314_Ar.R.docx', NULL, NULL, '2021-04-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Agreement,Not focused on the positions', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-26 12:32:06', 50, '2021-04-26 01:03:56', 0, NULL, 1),
(4614, 'Karthik M', '2', '6369655593', '', 'karthikdev768@gmail.com', '1999-10-20', 21, '2', '2', 'Umadevi M', 'Private job', 95000.00, 1, 0.00, 25000.00, 'No.15,2nd main Road, Korattur, Chennai', 'No.15,2nd Main Road, Korattur, chennai', '2104260008', '1', '1', 'upload_files/candidate_tracker/64728059424_Karthik Resume.docx', NULL, NULL, '2021-05-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-26 01:49:07', 1, '2021-04-26 01:57:14', 0, NULL, 1),
(4615, 'R.Aravindan', '4', '7305866084', '', 'Aravindravi144@gmil.com', '1999-12-24', 21, '2', '2', 'G.Ravi kumar', 'Coolie', 7000.00, 0, 0.00, 12000.00, 'Nemilcherry', 'Nemilcherry', '2104260009', '1', '1', 'upload_files/candidate_tracker/73006418601_karthikeyan Resume.docx', NULL, NULL, '2021-04-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication, Not suitable for Sales', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-26 02:02:54', 50, '2021-04-26 02:51:42', 0, NULL, 1),
(4616, 'Keerthana', '4', '7550197752', '7305507028', 'Keerthana.bio99@gmail.com', '1999-06-14', 21, '2', '2', 'Ravichandran', 'Welder', 20000.00, 2, 0.00, 13000.00, 'No.56 Poongavanapuram 6th St kaladipet tvt ch-19', 'No.56 Poongavanapuram 6th St kaladipet tvt ch-19', '2104260010', '1', '1', 'upload_files/candidate_tracker/19480764339_CV model.pdf', NULL, NULL, '2021-04-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain ,for time being looking for a job', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-26 03:01:49', 50, '2021-04-26 03:42:14', 0, NULL, 1),
(4617, '', '0', '7200250903', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104260011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-26 03:26:22', 0, NULL, 0, NULL, 1),
(4618, '', '0', '7395963637', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104260012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-26 04:08:37', 0, NULL, 0, NULL, 1),
(4619, 'Karthikeyan S', '5', '8939779992', '', 'karthisekar13@gmail.com', '1993-02-12', 28, '1', '2', 'Sekar P', 'Hotel Business', 15000.00, 1, 28000.00, 32000.00, 'Karur', 'Chennai', '2104270001', '', '2', 'upload_files/candidate_tracker/99311525110_1618466843198_karthiresume.pdf', NULL, '1', '2021-04-26', 15, '55567', '3', '60', '2021-06-02', 396000.00, '', '3', '2022-06-04', '1', 'Selected for Santhosh Team, CTC has been confirmed by Sriram Sir itself. Committed CTC is 3.96 LPA includes PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-27 08:35:20', 60, '2021-06-07 10:34:17', 0, NULL, 1),
(4620, 'Chandrasekar', '7', '7904825637', '9566137969', 'chandrasekar72643@gmail.com', '1994-01-18', 27, '2', '2', 'Thangapandian', 'Tiles worker', 3.50, 2, 20000.00, 22000.00, 'Chennai', 'Chennai', '2104270002', '1', '2', 'upload_files/candidate_tracker/37982159883_Resume- Chandru (1).docx', NULL, NULL, '2021-04-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No knowledge in Mutual Fund, No Communication', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-27 09:39:15', 50, '2021-04-27 10:11:39', 0, NULL, 1),
(4621, 'bhavani tejaswini k', '4', '8074905518', '', 'bhavanitejaswini98@gmail.com', '1998-06-12', 22, '2', '2', 'veera babu', 'supervisor', 15000.00, 1, 0.00, 10000.00, 'chennai', 'iyapanthagal', '2104270003', '2', '1', 'upload_files/candidate_tracker/21876670059_bhavani tejaswini Resume.docx', NULL, NULL, '2021-04-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Distance too long, not comfortable for Sales process', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-27 09:56:22', 1, '2021-04-27 09:58:19', 0, NULL, 1),
(4622, 'giridhar', '6', '7299233650', '', 'giridhartmrg@gmail.com', '1998-03-23', 23, '2', '2', 'tamilarasu', 'business', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104270004', '2', '1', 'upload_files/candidate_tracker/44620452767_Giridhar Resume.docx', NULL, NULL, '2021-04-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Telesales, looking  only for non voice, will not sustain for a long', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-27 10:00:29', 1, '2021-04-27 10:02:29', 0, NULL, 1),
(4623, '', '0', '9345399760', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104270005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-27 10:59:17', 0, NULL, 0, NULL, 1),
(4624, 'B Sachin Singh', '4', '6369578812', '8778176990', 'bsachin997@gmail.com', '1997-06-28', 23, '2', '2', 'S Balaji Singh', 'Mechanist , HVF', 30000.00, 1, 0.00, 15000.00, 'Avadi, chennai-62', 'Avadi, chennai-62', '2104270006', '1', '1', 'upload_files/candidate_tracker/79274484310_sachin (1).pdf', NULL, NULL, '2021-04-27', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for sales process, not opening his mouth also', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-27 11:22:09', 50, '2021-04-27 11:40:04', 0, NULL, 1),
(4625, 'Vijay.M', '4', '9094017137', '9551188916', 'vijaymunish5@gmail.com', '1997-11-05', 23, '2', '2', 'Munusamy', 'auto driver', 15000.00, 2, 0.00, 12000.00, 'Triplicane', 'triplicane', '2104270007', '1', '1', 'upload_files/candidate_tracker/50763825192_1615872306399_New Microsoft Word Document.docx', NULL, NULL, '2021-04-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain for a long, no focus on the career ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-27 11:22:49', 50, '2021-04-27 11:40:35', 0, NULL, 1),
(4626, 'Hariprasad R', '4', '9597240477', '8438167982', 'hariprasad2rahul@gmail.com', '1987-07-25', 33, '4', '2', 'Ratna kumar E', 'Retired', 10000.00, 1, 9000.00, 12000.00, 'Tiruvallur', 'Thiruvallur', '2104270008', '', '2', 'upload_files/candidate_tracker/5838525826_New Doc 2021-04-10 11.15.45_1.pdf', NULL, NULL, '2021-04-27', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', '32yrs, not bold, not suit for telesales.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-27 12:17:59', 1, '2021-04-27 12:27:08', 0, NULL, 1),
(4627, '', '0', '8939650056', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104270009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-27 12:38:49', 0, NULL, 0, NULL, 1),
(4628, 'Dhanasekar.m', '4', '7338807109', '8939650056', 'dhanasekarkr1997@gmail.com', '1997-10-14', 23, '2', '2', 'K.mohan', 'Security guard', 120000.00, 1, 0.00, 16000.00, 'No:01/05,pari street, mmda colony,arumbakkam', 'Chennai -106', '2104270010', '1', '2', 'upload_files/candidate_tracker/74423813154_Untitled document.pdf', NULL, NULL, '2021-04-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Canditate Ok Better Communication Skills Well Matured,but not ready to go for Field Sales looking only for Internal and the expectation is high', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-27 01:01:55', 50, '2021-04-27 01:25:21', 0, NULL, 1),
(4629, 'Poorani. T', '4', '8072958838', '', 'Priyauday1823@gmail.com', '1995-09-23', 25, '2', '1', 'Udayakumar', 'Service engineer', 25000.00, 1, 0.00, 14000.00, 'Gudapakkam, thiruvallur high road chennai 600124', 'Gudapakkam, thiruvallur high road chennai 600124', '2104270011', '1', '2', 'upload_files/candidate_tracker/21719485948_RESUME.P.docx', NULL, '1', '2021-04-27', 0, '', '3', '59', '2021-07-19', 126312.00, '', '6', '1970-01-01', '2', 'Selected for Tiruvallur in cash mode', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-27 01:31:03', 60, '2021-08-30 07:18:36', 0, NULL, 1),
(4630, 'Nithya.R', '4', '9962441389', '7358158554', 'rnithya201198@gmail.com', '1998-11-20', 22, '2', '2', 'Raju.c', 'Accountant', 15000.00, 1, 10000.00, 12000.00, 'Thirumazhisai', 'Thirumazhisai', '2104270012', '1', '2', 'upload_files/candidate_tracker/61287524796_New Doc 2021-04-10 11.15.45_1.pdf', NULL, '1', '2021-04-27', 0, '', '3', '59', '2021-07-22', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location with TH 10K', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-27 01:31:55', 60, '2021-08-31 01:07:13', 0, NULL, 1),
(4631, 'Ajith Clifford P', '28', '9790650905', '', 'ajithclifford32@gmail.com', '1994-11-22', 26, '2', '2', 'Peter Johnson S', 'Engineer', 22000.00, 0, 22000.00, 25000.00, 'Kanyakumari', 'Chennai', '2104270013', '1', '2', 'upload_files/candidate_tracker/4859935185_MBA CV.pdf', NULL, NULL, '2021-04-29', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability,1.10 yrs 3 companies changes and not open for Agreement', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-27 02:09:05', 1, '2021-04-27 02:16:56', 0, NULL, 1),
(4632, 'Sarali Priya', '28', '9489026990', '9962859050', 'rsaralipriya.career@gmail.com', '1991-08-12', 29, '2', '1', 'Praveen Kumar S', 'Home maker', 500000.00, 0, 0.00, 300000.00, 'Chennai', 'Navalur, chennai', '2104270014', '1', '1', 'upload_files/candidate_tracker/34202686977_Resume_latest.pdf', NULL, NULL, '2021-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-27 03:10:55', 1, '2021-04-27 03:26:41', 0, NULL, 1),
(4633, 'S Jeevanantham', '28', '8072603634', '8124008061', 'nanthamjeeva00@gmail.com', '1998-10-27', 22, '2', '2', 'Sumathi', 'No', 3000.00, 1, 12000.00, 17000.00, 'Chennai', 'Chennai', '2104270015', '1', '2', 'upload_files/candidate_tracker/94686850283__Resume.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Written Also Average, but sustainability Doubt', '3', '1', '0', '1', '1', '0', '2', '2021-04-30', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-27 04:33:42', 1, '2021-04-27 04:42:11', 0, NULL, 1),
(4634, 'Suresh S', '28', '9566012010', '', 'suresasuresh22@gmail.com', '1995-06-22', 25, '2', '2', 'selvakumar', 'business', 15000.00, 1, 3.00, 4.00, 'chennai', 'chennai', '2104270016', '1', '2', 'upload_files/candidate_tracker/21581519755_DM Resume.pdf', NULL, NULL, '2021-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-27 04:36:13', 1, '2021-04-27 05:30:30', 0, NULL, 1),
(4635, 'Aarthi S', '28', '9790899001', '9551708938', 'rtsatia345@gmail.com', '1995-09-03', 25, '2', '2', 'Shanmugam', 'Business', 30000.00, 3, 15400.00, 20000.00, 'Chennai', 'Chennai', '2104270017', '1', '2', 'upload_files/candidate_tracker/67406150229_Resume - Aarthi (1).pdf', NULL, NULL, '2021-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Good, didnxquott turn back for the 2nd level interview ', '3', '2', '0', '1', '1', '0', '2', '2021-04-29', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-27 05:19:26', 1, '2021-04-27 05:25:38', 0, NULL, 1),
(4636, '', '0', '9500446855', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104270018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-27 06:52:28', 0, NULL, 0, NULL, 1),
(4637, '', '0', '7358048624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104270019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-27 07:30:08', 0, NULL, 0, NULL, 1),
(4638, 'eshwar', '6', '9047295891', '', 'eshwarsrinivas95@gmail.com', '1995-10-27', 25, '2', '2', 'srinivasan', 'company worker', 20000.00, 1, 12000.00, 13000.00, 'chennai', 'chennai', '2104280001', '2', '2', 'upload_files/candidate_tracker/93089201083_d4w26-jdwt1.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'will not Sustain for a long, Too long distance also', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 09:53:06', 1, '2021-04-28 09:55:16', 0, NULL, 1),
(4639, 'Niveditha c', '4', '9840148866', '', 'niveditha83@gmail.com', '1983-12-04', 37, '2', '1', 'Ramesh', 'Manager', 0.00, 0, 345000.00, 400000.00, 'Chennai', 'Chennai', '2104280002', '16', '2', 'upload_files/candidate_tracker/37458597405_Niveditha updated resume new.docx', NULL, NULL, '2021-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Good Profile Communication good, Need to check later if no profile selected for DA,High CTC Expectation too', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 10:06:27', 1, '2021-04-28 10:09:25', 0, NULL, 1),
(4640, '', '0', '7299468647', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104280003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-28 10:09:07', 0, NULL, 0, NULL, 1),
(4641, 'Preethi', '4', '6381040901', '8015340574', 'Preethidhaya183@gmail.com', '1996-10-22', 24, '2', '2', 'Dhayalam', 'Hdb financial services', 30000.00, 0, 15000.00, 15000.00, 'No 134,kaviyarasu kannadhasan nagar kodugaiyur', 'No 134,kaviyarasu kannadhasan nagar kodigaiyur', '2104280004', '1', '2', 'upload_files/candidate_tracker/16799118550_1614075233068_Preethi Resume(4).docx', NULL, NULL, '2021-04-28', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-28 10:25:42', 1, '2021-04-28 11:05:11', 0, NULL, 1),
(4642, 'suresh', '6', '8754659062', '', 'sureshkathir4397@gmail.com', '1997-03-04', 24, '2', '2', 'kathiravan', 'tailor', 8000.00, 3, 0.00, 13000.00, 'chennai', 'chennai', '2104280005', '2', '1', 'upload_files/candidate_tracker/91539693071_DOC-20180228-WA0014 (1).docx', NULL, NULL, '2021-04-28', 0, '', '8', '53', NULL, 0.00, '', '0', NULL, '1', 'left without attending the interview', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 10:37:10', 1, '2021-04-28 11:04:35', 0, NULL, 1),
(4643, 'Vignesh V', '8', '9176227680', '8778393897', 'vkydhanush@gmail.com', '1997-11-07', 23, '2', '2', 'Venkatesh B', 'Late', 12000.00, 1, 168000.00, 250000.00, 'Chennai 12', 'Chennai 12', '2104280006', '1', '2', 'upload_files/candidate_tracker/80595380821_VIGNESHV Resume.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No knowledge in Mutual Fund, not suits for MIS role also', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-28 11:01:52', 50, '2021-04-29 10:52:40', 0, NULL, 1),
(4644, 'Vani', '4', '7550228193', '9345396697', 'Vanisankar41@gmail.com', '1996-10-01', 24, '2', '2', 'Jayasankar', 'Tailor', 15000.00, 1, 13000.00, 13000.00, 'Thiruvallur', 'Thiruvallur', '2104280007', '1', '2', 'upload_files/candidate_tracker/49580299721_RESUME VANI.docx', NULL, '1', '2021-04-28', 0, '', '3', '59', '2021-07-14', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur in Cash mode', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 11:06:48', 60, '2021-08-30 07:21:20', 0, NULL, 1),
(4645, 'Aboobacker fazil Mohamed', '4', '8667719366', '7598539162', 'aboofazil177@gmail.com', '1997-06-02', 23, '2', '2', 'Mohamed yahia', 'driver', 1000.00, 1, 9300.00, 1200.00, 'vadapalani Chennai', 'vadapalani Chennai', '2104280008', '1', '2', 'upload_files/candidate_tracker/54915323502_fAZIL REMUMEIIII112pdf.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-28 11:31:23', 1, '2021-04-28 11:41:00', 0, NULL, 1),
(4646, 'Sujatha.I', '4', '7305437608', '8056193438', 'asuja0222@gmail.com', '2001-02-22', 20, '2', '2', 'Indrakumar.R', 'Carpenter', 35000.00, 2, 0.00, 15000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2104280009', '1', '1', 'upload_files/candidate_tracker/53216807346_sujatha.pdf', NULL, NULL, '2021-04-28', 0, '', '3', '60', '1970-01-01', 126312.00, '', '6', '2021-06-30', '2', 'Selected for CRM Muthu Team CTC - 126312', '1', '2', '1', '1', '1', '', '2', '2021-04-29', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 11:51:39', 60, '2021-05-02 09:57:33', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4647, 'Nancy.R', '4', '8925003367', '9841431822', 'Nancysolomon1744@gmail.com', '2001-07-19', 19, '2', '2', 'Raghu.B', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'Vettuvankeni Ecr', 'Vettuvankeni Ecr', '2104280010', '1', '1', 'upload_files/candidate_tracker/24203658516_Nancy Resume (1).pdf', NULL, NULL, '2021-04-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will  not suite for calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 11:51:47', 50, '2021-04-28 12:23:03', 0, NULL, 1),
(4648, 'H.gracy', '4', '7338792105', '9940692712', 'Kirithikamartin76@gmail.com', '2001-07-16', 19, '2', '2', 'H.kirithika', 'Assistant facility manager', 30000.00, 2, 0.00, 18.00, 'S.r.p ,kottivakkam Chennai-41', 'S.r.p , kottivakkam Chennai-41', '2104280011', '1', '1', 'upload_files/candidate_tracker/7108107685_resume 28.4.2021.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '21', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She Is Not Sustain Long Term Because Already She Left Her Job Bec Of Pressure ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 11:52:41', 50, '2021-04-28 12:26:03', 0, NULL, 1),
(4649, 'Sinduja R', '4', '7708628134', '8190829328', 'sindujarj26@gmail.com', '1996-07-26', 24, '2', '2', 'Jaya R', 'Tailor', 30000.00, 1, 15000.00, 16000.00, '35 vayal street,vadali vilai,kottar, nagercoil', 'Nandambakkam', '2104280012', '1', '2', 'upload_files/candidate_tracker/1960992109_Sindhuja resume.pdf', NULL, NULL, '2021-04-28', 0, '', '3', '8', '2021-05-03', 180000.00, '', '', '1970-01-01', '2', ' For Dhivya Team,  Ctc - 180000 with pf, Mctc 15000.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 12:26:04', 8, '2021-04-28 04:38:20', 0, NULL, 1),
(4650, 'NARAYANASAMY A', '4', '9025364124', '7639937304', 'anarayanasamy12@gmail.com', '1994-05-20', 26, '2', '2', 'Kamala A', 'Farmer', 10.00, 1, 16.00, 18.00, 'Villupuram', 'Ambattur', '2104280013', '16', '2', 'upload_files/candidate_tracker/21181416400_Resume_22_3_2021_7_55_792.pdf', NULL, NULL, '2021-04-28', 7, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'no confident not suite for voice process....', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 12:26:51', 1, '2021-04-28 12:56:43', 0, NULL, 1),
(4651, '', '0', '9841267252', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104280014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-28 12:27:31', 0, NULL, 0, NULL, 1),
(4652, 'M.Indhu', '4', '9677252568', '', 'indhumathi2903@gmail.com', '1996-02-29', 25, '2', '2', 'P.Manoharan', 'Cooli', 30000.00, 1, 15000.00, 16000.00, 'Nandambakkam', 'Nandambakkam', '2104280015', '1', '2', 'upload_files/candidate_tracker/94771996195_INDHU.docx', NULL, NULL, '2021-04-28', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok...need to check with gaurav sir for salary package ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 12:27:51', 8, '2021-04-28 04:42:39', 0, NULL, 1),
(4653, 'Mukesh Kumar j', '4', '6380246484', '9840624069', 'mukeshmavis05@gmail.com', '1999-10-06', 21, '2', '2', 'Latha jaganathan', 'Labour', 10000.00, 1, 10500.00, 13000.00, 'Korattur', 'Korattur', '2104280016', '16', '2', 'upload_files/candidate_tracker/24981720955_1619242663258_MUKESH.docx (1).pdf', NULL, NULL, '2021-04-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not Interested in sales process', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 12:50:04', 1, '2021-04-28 01:09:31', 0, NULL, 1),
(4654, 'Sakthivel', '4', '7092831405', '9790725594', 'Sakthikaniraja1996@gmail.com', '1996-05-13', 24, '2', '2', 'Kaniraja', 'Vegetable in vendor', 10000.00, 1, 130000.00, 15000.00, 'Ambattur', 'Ambattur', '2104280017', '16', '2', 'upload_files/candidate_tracker/39815034672_SAKTHIVEL resume.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Not interested in sales process.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 12:50:18', 1, '2021-04-28 01:44:35', 0, NULL, 1),
(4655, 'DINESHKUMAR.K', '4', '8610880868', '', 'dineshkumark4222@gmail.com', '1999-12-15', 21, '2', '2', 'K.KASIRAJAN', 'Kooli', 12000.00, 0, 12000.00, 14000.00, 'Thiruvallur', 'Thiruvallur', '2104280018', '1', '2', 'upload_files/candidate_tracker/57401505388_1611722871511Resume_DINESH-compressed.pdf', NULL, NULL, '2021-04-28', 0, '', '3', '8', '2021-05-10', 126312.00, '', '', '1970-01-01', '2', 'for thiruvallur, 10k th and ctc 126312. ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 01:17:00', 50, '2021-04-28 01:41:03', 0, NULL, 1),
(4656, '', '0', '4567890878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104280019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-28 02:57:40', 0, NULL, 0, NULL, 1),
(4657, 'Mohammed Ali', '6', '8682869743', '9940653760', 'Mraliviews@gmail.com', '1997-12-13', 23, '2', '2', 'Mohammed Yousuf', 'Biscuit sales', 12000.00, 1, 15500.00, 20000.00, 'No 38 Palani andavar koil Street chennai 600023', 'Ayanavaram', '2104280020', '1', '2', 'upload_files/candidate_tracker/79829332331_1618553358276_1618553357929_63488.doc', NULL, NULL, '2021-04-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 4m exp in sales and expt 15k th for RE.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 03:00:12', 50, '2021-04-28 03:24:50', 0, NULL, 1),
(4658, 'SURYA R', '4', '9551258573', '9551248473', 'suryaamudha312@gmail.com', '1999-02-01', 22, '3', '2', 'Ravi N', 'Fall seeling labour', 15000.00, 1, 14000.00, 14000.00, 'Aminjikarai', 'Aminjikarai', '2104280021', '', '2', 'upload_files/candidate_tracker/73469129556_Surya CV.doc', NULL, NULL, '2021-04-28', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 03:31:57', 1, '2021-04-28 03:47:04', 0, NULL, 1),
(4659, '', '0', '9384635818', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104280022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-28 03:36:00', 0, NULL, 0, NULL, 1),
(4660, 'krishna j', '28', '9790838887', '', 'krishna.97krish@gmail.com', '1997-04-30', 23, '2', '2', 'janarthanan s', 'retire postal clerk', 15000.00, 2, 0.00, 250000.00, 'Chennai', 'Chennai', '2104280023', '1', '1', 'upload_files/candidate_tracker/80534585893_krishna-cv.pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 2m exp in metro, in 6 months contract, doesnt what is his salary, will not sustain, comm is avg,  not okay with service agreement.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-28 04:16:19', 1, '2021-04-28 04:34:29', 0, NULL, 1),
(4661, 'Jayasri R', '4', '7094839323', '9585506154', 'jayasriravi2502@gmail.com', '1998-02-25', 23, '1', '2', 'M. Ravi R. Kavitha', 'Farmer', 20000.00, 4, 15000.00, 18000.00, 'Nemili', 'Nemili', '2104280024', '', '2', 'upload_files/candidate_tracker/2645663591_jayasri resume.pdf', NULL, NULL, '2021-04-28', 0, '66673', '3', '8', '2021-05-03', 132636.00, '', '5', '1970-01-01', '2', 'Selected For Tiruvallur, TH - 10.5. MCTC-11053. salary Hike based on Performance', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 04:27:19', 7, '2021-04-30 04:39:57', 0, NULL, 1),
(4662, '', '0', '9176472756', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104280025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-28 07:16:56', 0, NULL, 0, NULL, 1),
(4663, 'Benson Prasanth', '7', '9677212203', '', 'dbensonprasanth@gmail.com', '1997-09-14', 23, '2', '2', 'Dominic Savio A', 'Ex Service Man', 28000.00, 2, 0.00, 20.00, 'Chennai', 'Chennai', '2104280026', '1', '1', 'upload_files/candidate_tracker/37821311045_RESUME BEN .pdf', NULL, NULL, '2021-04-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '7', '1', '0', '1', '1', '0', '2', '2021-05-06', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-28 07:21:10', 1, '2021-04-29 10:57:57', 0, NULL, 1),
(4664, 'Jeevanantham S', '7', '9003482984', '9360457603', 'smartjeeva@gamil.com', '1999-08-25', 21, '2', '2', 'Shankar N', 'Auto Driver', 110000.00, 1, 10000.00, 16000.00, 'Thiruvallur', 'Thiruvallur', '2104290001', '1', '2', 'upload_files/candidate_tracker/41020813856_Jeevanantham S.pdf', NULL, NULL, '2021-04-29', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no comm, lang is not that much good, no knowledge in excel and ppt, lTH is 10k and ecpt is 17-18k.', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-29 09:04:05', 1, '2021-04-29 12:25:22', 0, NULL, 1),
(4665, 'jerish allwin williams', '6', '7358608828', '', 'jerishallywn160797@gmail.com', '1997-07-16', 23, '2', '2', 'paul revan', 'late', 20000.00, 1, 0.00, 11000.00, 'chennai', 'purasaiwakkam', '2104290002', '2', '1', 'upload_files/candidate_tracker/20484147830_jerry resume.pdf', NULL, NULL, '2021-04-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain and Planning to start his own biz, will not suite for calling profile.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-29 09:12:59', 1, '2021-04-29 09:14:54', 0, NULL, 1),
(4666, 'J. Malathi', '4', '6369730359', '', 'Malathi282000@gmail.com', '2000-02-28', 21, '2', '2', 'Jagadeesan. A', 'Cooli', 15000.00, 2, 0.00, 15000.00, 'Kadambathur', 'Thiruvallur', '2104290003', '11', '1', 'upload_files/candidate_tracker/75758525358_mala resume.pdf', NULL, NULL, '2021-04-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain for a long, Looking much for Non Voice only', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-29 09:55:44', 1, '2021-04-29 10:48:45', 0, NULL, 1),
(4667, 'B. Bagavathi', '4', '6380733468', '8939324527', 'Bagaraina28@gmail.com', '2000-05-28', 20, '2', '2', 'G. Boobalan', 'Cooli', 82000.00, 3, 0.00, 15000.00, 'Kadambathur', 'Kadambathur', '2104290004', '11', '1', 'upload_files/candidate_tracker/76363595220_bhagavathi.docx', NULL, NULL, '2021-04-29', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-29 09:56:42', 1, '2021-04-29 10:11:45', 0, NULL, 1),
(4668, 'Dinesh Kumar .k', '13', '8608649985', '9841239224', 'justindinesh98@gmail.com', '2000-10-21', 20, '2', '2', 'Kamalanathan.v', 'Working in leather company', 12000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2104290005', '1', '1', 'upload_files/candidate_tracker/20585608462_RESUME_Dinesh.pdf', NULL, NULL, '2021-04-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 10:00:33', 1, '2021-04-29 10:06:58', 0, NULL, 1),
(4669, 'Mohamed Sufiyan N', '28', '8124920015', '9080144036', 'sufiyanmohamed44@gmail.com', '1994-12-14', 26, '2', '2', 'Shafeequr Rahman -Father', 'Retired from service', 40000.00, 2, 22000.00, 28000.00, 'Vaniyambadi', 'Vaniyambadi', '2104290006', '1', '2', 'upload_files/candidate_tracker/8789600283_MOHAMED SUFIYAN N-4.docx', NULL, '2', '2021-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok, Will not fit for our role, Sustainability doubt and will not handle our pressure', '3', '1', '', '1', '3', '', '2', '2021-05-12', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 11:18:29', 7, '2021-05-11 11:22:48', 0, NULL, 1),
(4670, 'K. Ajith kumar', '4', '9150724771', '9677335498', 'ajithkumar62009@gmail.com', '1999-10-26', 21, '2', '2', 'K. Kaliraj', 'Painter', 20000.00, 1, 0.00, 10000.00, 'Kovilpatti', 'Vellacheri chennai', '2104290007', '1', '1', 'upload_files/candidate_tracker/12101140622_AJITH RESUME 3.doc', NULL, NULL, '2021-04-29', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no idea in voice process  low level confident', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-29 11:26:05', 50, '2021-04-29 11:38:19', 0, NULL, 1),
(4671, 'P. v. Goutham rajaa', '16', '9514234607', '9025127633', 'goutham0222@gmail.com', '1994-02-22', 27, '2', '2', 'K. P. Vetrivel', 'Welder', 10000.00, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2104290008', '1', '2', 'upload_files/candidate_tracker/35704968428_resume_1619169230479.pdf', NULL, NULL, '2021-04-29', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, Requested for time to check with parents. Its been a week time no response ', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-29 11:30:43', 8, '2021-04-29 02:41:28', 0, NULL, 1),
(4672, 'vaithesh', '28', '7904898125', '6369110754', 'vaithesh2802@gmail.com', '2000-02-28', 21, '2', '2', 'tharani', 'farmer', 8000.00, 1, 0.00, 17000.00, 'Kallakurichi', 'chennai', '2104290009', '1', '1', 'upload_files/candidate_tracker/51323883044_VAITHESH_CV 1.pdf', NULL, NULL, '2021-04-30', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '2', 'left before  interview', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 11:31:12', 1, '2021-04-29 08:03:32', 0, NULL, 1),
(4673, 'S. Kishore kumar', '4', '9345705765', '8124117922', 'Skishorekumar1630@gmail.com', '2000-12-30', 20, '2', '1', 'S. Revathi', 'A2B', 22000.00, 1, 18000.00, 10500.00, 'Pattabiaram', 'Pattabiram', '2104290010', '1', '2', 'upload_files/candidate_tracker/70824342121_S kishore Kumar resume.pdf', NULL, NULL, '2021-04-29', 1, '', '3', '60', '2021-05-03', 132636.00, '', '3', '2021-05-04', '2', 'selected for CRM Tiruvallur CTC - 132636', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-29 11:36:09', 60, '2021-05-03 01:24:48', 0, NULL, 1),
(4674, 'M.suman', '4', '7397323620', '9884641045', 'suman2018m2000@gmail.com', '2000-04-26', 21, '2', '2', 'Mariyamma', 'Vegetables store', 21000.00, 1, 0.00, 11000.00, 'Pattabiram', 'Pattabiram', '2104290011', '1', '1', 'upload_files/candidate_tracker/12380540957_SUMAN RESUME.doc', NULL, NULL, '2021-04-29', 0, '', '3', '60', '1970-01-01', 132636.00, '', '2', '2021-05-04', '2', 'Shortlisted for Tiruvallur CRM,CTC - 132636', '1', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-29 11:36:16', 60, '2021-05-03 01:25:28', 0, NULL, 1),
(4675, 'Nikesh k', '28', '9791159498', '', 'nikeshfire3@gmail.com', '1998-11-19', 22, '2', '2', 'G.k.krishnan', '-', 20000.00, 1, 0.00, 18000.00, 'Ayapakkam', 'Ayapakkam', '2104290012', '1', '2', 'upload_files/candidate_tracker/56395552499_Nikesh.pdf', NULL, NULL, '2021-04-30', 3, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'comm is below avg, no Basics in excel,  just like that came for interview. ', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 11:43:30', 1, '2021-04-29 11:59:12', 0, NULL, 1),
(4676, 'm ramcharan', '28', '7401483774', '', 'm.ramcharanashok@gmail.com', '1994-09-28', 26, '2', '2', 'm ashok', 'driver', 15000.00, 1, 21000.00, 23000.00, 'kotturpuram chennai', 'kotturpuram', '2104290013', '1', '2', 'upload_files/candidate_tracker/27917464253_RamcharanCV.docx.pdf', NULL, NULL, '2021-04-30', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'No Response', '3', '2', '0', '1', '1', '0', '2', '2021-05-03', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 12:27:27', 1, '2021-04-29 09:14:57', 0, NULL, 1),
(4677, '', '0', '7012051124', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104290014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-29 12:46:21', 0, NULL, 0, NULL, 1),
(4678, 'Prabu', '28', '9445666777', '', 'prabz1961@gmail.com', '1996-11-14', 24, '2', '2', 'Baskaran', 'Business', 25000.00, 2, 0.00, 15000.00, 'Tnagar', 'Tnagar', '2104290015', '1', '1', 'upload_files/candidate_tracker/63537836272_RESUME APRIL1.pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not okay with service agg.', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 01:32:07', 1, '2021-04-29 01:35:57', 0, NULL, 1),
(4679, 'Keerthana G', '4', '9360186316', '9791031727', 'Keerthukeerthi3333@gmail.com', '1999-10-01', 21, '2', '2', 'Damodharan gS', 'Shoe maker', 9000.00, 1, 13000.00, 16000.00, 'Perambur', 'Perambur', '2104290016', '1', '2', 'upload_files/candidate_tracker/19233121912_keerthana resum.pdf', NULL, NULL, '2021-04-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process, false information', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-29 02:50:26', 50, '2021-04-29 03:14:52', 0, NULL, 1),
(4680, 'Praveen Kumar V', '7', '9994081644', '', 'vpraveenkumar.kumar@gmail.com', '1995-07-28', 25, '2', '2', 'Velayutham S', 'Carpenter', 25000.00, 1, 15000.00, 20000.00, 'Nagercoil', 'Chennai', '2104290017', '1', '2', 'upload_files/candidate_tracker/58165463563_Resume.pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'expt is high. rejected by reyaz', '7', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-29 04:59:00', 1, '2021-04-30 10:46:58', 0, NULL, 1),
(4681, 'huzayfah bin minhaj', '28', '7338845142', '7010537224', 'huzayfah99@gmail.com', '1999-12-18', 21, '2', '2', 'minhaj ahmed', 'working in printing press', 12000.00, 1, 0.00, 25000.00, 'triplicane', 'triplicane', '2104290018', '1', '1', 'upload_files/candidate_tracker/2891918621_Huzayfah Resume.pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Stammering to speak, comm is avg and no basics in excel. fresher and expt is 20k.', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 05:11:59', 1, '2021-04-29 06:44:44', 0, NULL, 1),
(4682, 'Anushadevi', '4', '7094393731', '', 'Anusha.December94@gmail.com', '1995-04-30', 26, '2', '2', 'Vasudevan', 'Business', 30000.00, 0, 2.00, 19.00, 'Theni', 'Karrapakkam', '2104290019', '1', '2', 'upload_files/candidate_tracker/34118212440_IMG_20210210_231816-converted.pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'pronunciation is not clear, will not suite for our process. expt is 17-18k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-29 06:16:52', 1, '2021-04-30 11:36:36', 0, NULL, 1),
(4683, 'Divya bharathi', '13', '7449035414', '7338887439', 'divyasan1999@gmail.com', '1999-04-13', 22, '2', '2', 'Sundaravel', 'Fisher man', 60000.00, 1, 0.00, 25000.00, 'No 65, chinnathambi st, Devanapattinam, Cuddalore', 'No 65, Chinnathambi St, Devanapattinam, Cuddalore', '2104290020', '1', '1', 'upload_files/candidate_tracker/51570953780_divya resume.doc', NULL, NULL, '2021-04-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 09:13:02', 1, '2021-04-29 09:22:37', 0, NULL, 1),
(4684, '', '0', '9345795765', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104290021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-29 09:22:40', 0, NULL, 0, NULL, 1),
(4685, 'Yuvan shankar', '6', '9087620161', '', 'Yuviitvt@gmail.com', '2001-07-04', 19, '2', '2', 'Saravana moorthi', 'Salesman', 30000.00, 0, 0.00, 180000.00, 'Chennai', 'Chennai', '2104300001', '1', '1', 'upload_files/candidate_tracker/52542983451_yuvan shankar.docx', NULL, NULL, '2021-04-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no job need, will not sustain.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-30 09:50:07', 8, '2021-04-30 03:21:53', 0, NULL, 1),
(4686, 'Praveen Kumar K', '28', '7358516131', '', 'manojlumia75@gmail.com', '1998-03-20', 23, '2', '2', 'Kathavarajan G', 'Provisional store', 50000.00, 2, 0.00, 15000.00, 'No 74A thangal karai street, nerkundram', 'Chennai', '2104300002', '1', '1', 'upload_files/candidate_tracker/89550510595_Praveen Resume.pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not int in sales, no knowledge in MF, knows only the theory. comm is very avg.', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-30 10:25:00', 1, '2021-04-30 10:35:06', 0, NULL, 1),
(4687, 'sudharsan', '6', '8122132380', '', 'sun997701@gmail.com', '1996-06-09', 24, '2', '2', 'balasubramaniyan', 'sales executive', 18000.00, 0, 12000.00, 13000.00, 'chennai', 'kodambakkam', '2104300003', '2', '2', 'upload_files/candidate_tracker/50642187327_sudharsun resume (1).pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very slow and low voice, will not suite for our process.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-30 11:15:06', 1, '2021-04-30 11:17:04', 0, NULL, 1),
(4688, 'ambrose kumar a', '6', '7299955757', '', 'ezhilambrose63@gmail.com', '1996-01-02', 25, '2', '2', 'anthony', 'daily wages', 20000.00, 1, 16000.00, 17000.00, 'chennai', 'chennai', '2104300004', '2', '2', 'upload_files/candidate_tracker/87587650513_Ambroo RES PDF.pdf', NULL, NULL, '2021-05-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-30 11:31:31', 1, '2021-04-30 11:33:08', 0, NULL, 1),
(4689, 'Chandramouli', '26', '9600082745', '9092767623', 'mouli889@gmail.com', '1989-11-08', 31, '2', '1', 'Gaya3', 'Housewife', 300000.00, 1, 300000.00, 400000.00, 'Chennai', 'Chennai', '2104300005', '1', '2', 'upload_files/candidate_tracker/82249101256_1602055794358Resume_D.docx', NULL, NULL, '2021-04-30', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expt is high. age is 31 and rejected by reyaz', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-30 12:02:51', 50, '2021-04-30 12:21:48', 0, NULL, 1),
(4690, 'nithya', '23', '8946047614', '7338959523', 'nithya14gajendran@gmail.com', '1994-11-14', 26, '2', '2', 'manjula', 'labour work', 17000.00, 1, 15000.00, 25000.00, 't.nagar', 't.nagar', '2104300006', '1', '2', 'upload_files/candidate_tracker/44435640638_My Resume.doc', NULL, '1', '2021-05-07', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'only into front end no knowledge in basic pHP and the salary Expectation in very high', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-30 03:57:11', 7, '2021-05-07 02:33:15', 0, NULL, 1),
(4691, 'krishnamoorthy', '23', '9791021683', '', 'krishnamoorthy.d07@gmail.com', '1993-12-01', 27, '2', '1', 'monisha', 'house wife', 30000.00, 1, 20000.00, 30000.00, 'chennai', 'chennai', '2104300007', '1', '2', 'upload_files/candidate_tracker/18601072510_Krishna Resume.pdf', NULL, NULL, '2021-05-03', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Doubt,Holding an offer for 25K with the Japan based company,looking for high Pay ,1.6 yrs 2 companies changed', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-30 04:54:03', 1, '2021-04-30 05:00:49', 0, NULL, 1),
(4692, 'MANOJKUMAR R', '7', '7092176889', '9025072776', 'manojrahul6699@gmail.com', '1997-05-15', 23, '2', '2', 'N Ravi', 'Postman', 300000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104300008', '1', '1', 'upload_files/candidate_tracker/4391442582_R Manojkumar resume.pdf', NULL, NULL, '2021-05-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-30 07:36:22', 1, '2021-04-30 07:43:56', 0, NULL, 1),
(4693, '', '0', '9786966253', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105020001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-02 07:09:16', 0, NULL, 0, NULL, 1),
(4694, '', '0', '7358531076', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105020002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-02 09:41:16', 0, NULL, 0, NULL, 1),
(4695, 'shanmugapriya', '4', '9150921397', '', 'priyak08320@gmail.com', '2003-04-15', 18, '2', '2', 'perumal', 'sales man', 10000.00, 1, 10000.00, 11000.00, 'chennai', 'pallavaram', '2105030001', '2', '2', 'upload_files/candidate_tracker/63249385205_CV_2021-05-02-035809.pdf', NULL, NULL, '2021-05-03', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Lockdown period hold long pending ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 09:16:29', 1, '2021-05-03 09:18:42', 0, NULL, 1),
(4696, 'yaduanand', '4', '9842230163', '', 'yadunand143@gmail.com', '1996-10-11', 24, '2', '1', 'dinesh babu', 'cg', 30000.00, 0, 14000.00, 15000.00, 'chennai', 'chennai', '2105030002', '2', '2', 'upload_files/candidate_tracker/55943308675_Yadunand.docx', NULL, NULL, '2021-05-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested in sales calling, will not sustain. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 09:21:00', 8, '2021-05-03 03:14:22', 0, NULL, 1),
(4697, 'subbulakshmi', '4', '9344701953', '', 'subbulakshmiarivazhagancs2018@gmail.com', '1997-07-27', 23, '2', '2', 'arivazhagan', 'nlc worker', 20000.00, 3, 12000.00, 13000.00, 'chennai', 'chennai', '2105030003', '2', '2', 'upload_files/candidate_tracker/52768873625_SubbuLakshmi-1_0-.pdf', NULL, NULL, '2021-05-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will  not suite for our process, salary expt is 25k. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 09:28:18', 1, '2021-05-03 09:30:12', 0, NULL, 1),
(4698, '', '0', '8946053185', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105030004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-03 10:52:09', 0, NULL, 0, NULL, 1),
(4699, 'ashwin.r', '28', '8608797131', '', 'ashvingta@gmail.com', '1997-11-05', 23, '2', '2', 'raghupandiyan', 'business', 20000.00, 1, 0.00, 300000.00, 'salem', 'salem', '2105030005', '1', '1', 'upload_files/candidate_tracker/29245051060_resume_photo.pdf', NULL, NULL, '2021-05-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-03 11:04:15', 1, '2021-05-03 11:11:56', 0, NULL, 1),
(4700, 'M.herina', '4', '6383347920', '9994564689', 'herinaherina83@gmail.com', '2001-05-28', 19, '2', '2', 'M.vasanthi', 'Employee', 8000.00, 1, 0.00, 10000.00, 'Thiruvallur.', 'Thiruvallur', '2105030006', '1', '1', 'upload_files/candidate_tracker/46220540456_CV_2021-05-03-110642.pdf', NULL, NULL, '2021-05-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very childish, will not suite for our process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-03 11:33:16', 8, '2021-05-03 03:09:35', 0, NULL, 1),
(4701, 'Naveen raj M', '7', '8939277438', '8778605972', 'Naveenrajmjbl@gmail.com', '1998-10-23', 22, '2', '2', 'Mohan v', 'Royal Enfield company worker', 30000.00, 1, 12000.00, 17000.00, 'Thiruvottiyur', 'Thrivottiyur', '2105030007', '1', '2', 'upload_files/candidate_tracker/20447031825_NAVEEN Resume.pdf', NULL, NULL, '2021-05-03', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for job change (salary). his sal was 10k and got revised by last month as 12k, his expt is 17k. no knowledge in mF and not interested in sales.', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '4', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-03 11:33:27', 7, '2021-05-03 06:13:45', 0, NULL, 1),
(4702, 'Nibinraj', '6', '9677003933', '', 'Nibinraj23@GMAIL.COM', '1999-10-23', 21, '1', '2', 'Nagaraj', 'driver', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2105030008', '', '1', 'upload_files/candidate_tracker/55142293152_Resume.pdf', NULL, NULL, '2021-05-03', 0, 'P1210', '3', '8', '2021-05-06', 162000.00, '', '5', '1970-01-01', '1', 'For Suthagar Team CTC - 162000 With Esi,PF MCTC Is 13500 And Th Is10484.', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 11:53:59', 7, '2021-05-03 06:48:26', 0, NULL, 1),
(4703, 'ashwini', '4', '8825686865', '', '221803660@princescience.in', '2000-08-13', 20, '2', '2', 'sekar', 'cooli', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2105030009', '2', '1', 'upload_files/candidate_tracker/83989512844_lastshared.pdf', NULL, NULL, '2021-05-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up and just like that came for interview and said no idea about it.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 12:13:41', 1, '2021-05-03 12:14:57', 0, NULL, 1),
(4704, 'Vignesh', '4', '9786213204', '8220680240', 'vignesh1671996@gmail.con', '1995-01-01', 26, '3', '2', 'Nagarajan', 'No', 35000.00, 3, 0.00, 15000.00, 'Sivakasi', 'Chennai', '2105030010', '', '1', 'upload_files/candidate_tracker/55471002148_1620027634167_1620027630409_vignesh pDF.pdf', NULL, NULL, '2021-05-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 12:16:39', 1, '2021-05-03 01:11:25', 0, NULL, 1),
(4705, 'SOWMIYA', '4', '7397499230', '', 'vinorajendran1993@gmail.com', '1996-12-08', 24, '1', '2', 'RAJENDHIRAN', 'Former', 10000.00, 2, 12000.00, 15000.00, 'Chengalpattu', 'Chennai', '2105030011', '', '2', 'upload_files/candidate_tracker/16631005373_1620025039269_resume5412.docx', NULL, NULL, '2021-05-03', 0, '55588', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, has exp in admin and will not handle pressure.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 12:18:13', 1, '2021-05-03 12:33:00', 0, NULL, 1),
(4706, 'Ashok', '13', '7094861021', '6381930485', 'ashokmurukan1999@gmail.com', '1999-05-24', 21, '2', '2', 'Murugan', 'Business', 50000.00, 1, 0.00, 18000.00, 'Virudhunagar', 'Chennai', '2105030012', '1', '1', 'upload_files/candidate_tracker/22528534768_Ashok M.pdf', NULL, NULL, '2021-05-04', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-03 03:03:10', 1, '2021-05-03 03:09:38', 0, NULL, 1),
(4707, 'Dhivyabharathi M', '2', '8939120575', '9513320575', 'dhivyabharathi2494@gmail.com', '1994-06-06', 26, '2', '2', 'Muniyapillai', 'Labour', 24000.00, 1, 282745.00, 350000.00, '31/1 East strt, ariyaperumanur, kallakurichi (dt)', 'Vellacherry, chennai', '2105030013', '1', '2', 'upload_files/candidate_tracker/42147993790_Dhivyabharathi_Resume.pdf', NULL, NULL, '2021-05-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Task has been given, but didnt turn with the Task will not suits for our role', '2', '1', '0', '1', '1', '0', '2', '2021-05-13', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-03 03:49:53', 1, '2021-05-03 04:03:36', 0, NULL, 1),
(4708, 'Bharath V', '6', '8296055622', '', 'bharathvenkatesh3655@gmail.com', '1998-09-02', 22, '2', '2', 'Venkatesh', 'Nil', 35000.00, 1, 0.00, 18000.00, '1st cross thippanna layout lingarajpuram Bangalore', '1st cross thippanna layout lingarajpuram Bangalore', '2105030014', '14', '1', 'upload_files/candidate_tracker/95942138484_BHARATHRESUME.pdf', NULL, NULL, '2021-05-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 07:05:40', 1, '2021-05-03 07:22:25', 0, NULL, 1),
(4709, '', '0', '6381930485', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105030015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-03 07:53:38', 0, NULL, 0, NULL, 1),
(4710, 'Aravind akumar', '2', '7708085423', '', 'aravindkmr007@gmail.com', '1995-11-17', 25, '2', '2', 'Pugalenthi', 'Business', 40000.00, 1, 0.00, 350000.00, 'Vellore', 'Chennai', '2105030016', '1', '1', 'upload_files/candidate_tracker/72718646818_Aravind CV.pdf', NULL, NULL, '2021-05-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Very High Expectation, already he has some pipelines ,not ready for service Agreement', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-03 08:12:00', 50, '2021-05-04 02:57:53', 0, NULL, 1),
(4711, 'keertana r', '20', '8754690842', '', 'keerthuammu661@gmail.com', '1998-09-04', 22, '2', '2', 'none', 'none', 20000.00, 0, 12000.00, 12000.00, 'chennai', 'chennai', '2105040001', '3', '2', 'upload_files/candidate_tracker/11332895266_she keerthana resume.docx', NULL, NULL, '2021-05-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, done her mA eng. lit, pursuing her net and looking for job in teaching. time being looking for job.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-04 08:48:15', 1, '2021-05-04 08:52:16', 0, NULL, 1),
(4712, 's varshini', '20', '8939769238', '', 'varshivarshini413@gmail.com', '1999-10-11', 21, '2', '2', 'none', 'none', 25000.00, 0, 13000.00, 13000.00, 'chennai', 'chennai', '2105040002', '3', '2', 'upload_files/candidate_tracker/84131651168_RESUME-1.pdf', NULL, NULL, '2021-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much open for Tamil Voice process, Just for time being looking for a job will not sustain for a long', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-04 09:49:24', 1, '2021-05-04 09:54:07', 0, NULL, 1),
(4713, 'Dhineshkumar', '13', '8531977241', '', 'dhieshkumar83@gmail.com', '1999-07-17', 21, '2', '2', 'Vasanthi', 'House wife', 8000.00, 2, 0.00, 12000.00, 'Cuddalore', 'Cuddalore', '2105040003', '1', '1', 'upload_files/candidate_tracker/50742497319_Dhineshkumar P_Resume.pdf', NULL, NULL, '2021-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2021-05-04 11:05:57', 1, '2021-05-04 11:11:00', 0, NULL, 1),
(4714, 'Vijay Prabhakaran', '6', '6379554384', '', 'vijayharry070@gmail.com', '2000-08-10', 20, '2', '2', 'Jayaseelan', 'Tea master', 10000.00, 1, 15000.00, 16000.00, 'Ashok piller', 'Ashok piller', '2105040004', '3', '2', 'upload_files/candidate_tracker/62219986476_Pdf_04Mar21_10.pdf_Vijay-Resume....pdf', NULL, NULL, '2021-05-04', 0, '', '3', '8', '2021-05-10', 174000.00, '', '', '1970-01-01', '2', 'for syed team 1,74,000  wit esixxamp\nPf. 14500 as Mctc', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-04 11:20:57', 60, '2021-05-04 01:21:28', 0, NULL, 1),
(4715, 'Dinesh.D', '4', '8608580084', '7299546044', 'dineshbaby0036@gmail.com', '1999-06-07', 21, '2', '2', 'M.hemalatha', 'House keeper', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2105040005', '1', '1', 'upload_files/candidate_tracker/97663173618_NEW ONE 1.pdf', NULL, NULL, '2021-05-04', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-04 11:41:51', 50, '2021-05-04 11:57:37', 0, NULL, 1),
(4716, 'santha murthy s', '2', '7299801089', '9500005124', 'santhamurthy1999@gmail.com', '1999-12-23', 21, '2', '2', 'sella perumal r', 'shopkeeper', 20000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2105040006', '1', '1', 'upload_files/candidate_tracker/11326022022_SANTHA MURTHY RESUME.pdf', NULL, NULL, '2021-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open on the Service Agreement Will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', '2021-05-08', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-04 01:10:37', 1, '2021-05-04 01:31:09', 0, NULL, 1),
(4717, '', '0', '9600757565', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105040007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-04 04:55:36', 0, NULL, 0, NULL, 1),
(4718, 'adhi sudalai', '28', '9677178899', '', 'teutonsadhi@gmail.com', '1994-01-12', 27, '2', '2', 'gengeswaran', 'retired govt officer', 20000.00, 1, 2.70, 4.00, 'Avadi', 'Avadi', '2105040008', '1', '2', 'upload_files/candidate_tracker/26202601637_Adhi_Updated_Resume.docx', NULL, NULL, '2021-05-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability doubt and the expectation is high with high Exp Pure Data Analyst looking something with the same Skills and technologies', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-04 08:15:23', 1, '2021-05-04 08:19:11', 0, NULL, 1),
(4719, 'azrah shehreen', '28', '9566161538', '9710434494', 'azrah6659@gmail.com', '1999-10-08', 21, '2', '2', 'askar ali', 'production manager', 23000.00, 1, 0.00, 20000.00, 'nandanam chennai', 'saidapet chennai', '2105040009', '1', '1', 'upload_files/candidate_tracker/44098866610_Azrah', NULL, NULL, '2021-05-05', 0, '', '3', '8', '2021-05-06', 180000.00, '', '5', '1970-01-01', '1', 'for DA, ctc is 180000 and Mctc is 15000.', '3', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-04 09:23:02', 7, '2021-05-05 01:18:49', 0, NULL, 1),
(4720, 'HEMANTH H', '2', '6374151328', '', 'hemanth26800@gmail.com', '2000-08-26', 20, '2', '2', 'HARIDOSS R', 'Carpenter', 15000.00, 0, 0.00, 8000.00, 'Chennai', 'Chennai', '2105040010', '1', '1', 'upload_files/candidate_tracker/28006953260_FND new.pdf', NULL, NULL, '2021-05-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-04 10:16:44', 1, '2021-05-04 10:20:58', 0, NULL, 1),
(4721, 'govind raj', '4', '7558137226', '', 'govindgowri26@gmail.com', '1998-05-29', 22, '2', '2', 'murugan', 'farmer', 15000.00, 1, 0.00, 10000.00, 'thiruvannaalai', 'thiruvannaalai', '2105050001', '2', '1', 'upload_files/candidate_tracker/46047605611_resume GOVI-converted.pdf', NULL, NULL, '2021-05-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, will not handle pressure. will not sustain', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-05 10:41:22', 1, '2021-05-05 10:44:57', 0, NULL, 1),
(4722, 'abdulgani', '6', '9962839811', '', 'abdulgani995@gmail.com', '1992-01-15', 29, '2', '1', 'aysha banu', 'nil', 10000.00, 1, 18000.00, 20000.00, 'chennai', 'chennai', '2105050002', '2', '2', 'upload_files/candidate_tracker/53981934598_bpo resume.pdf', NULL, NULL, '2021-05-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 5yr exp in showroom sales, will not suite for calling and expt sal is 25k and his previous also 25k. will not suite for RM.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-05 10:46:30', 1, '2021-05-05 10:48:47', 0, NULL, 1),
(4723, 'Manikandan. K', '20', '9344337619', '9952973601', 'mathimani551998@gmail.com', '1998-05-21', 22, '1', '2', 'Krishnamoorthi', 'Kooli', 10000.00, 1, 0.00, 15000.00, 'Thirukoilur', 'Thirukoilur', '2105050003', '', '1', 'upload_files/candidate_tracker/85792372206_1597415200555Resume_Baskaran.pdf', NULL, NULL, '2021-05-05', 0, 'Ravi', '3', '8', '1970-01-01', 162000.00, '', '2', '1970-01-01', '2', 'for suthagar team, Mct 13500, ctc 162000', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-05 11:06:06', 7, '2021-05-05 06:50:03', 0, NULL, 1),
(4724, 'L.davidpaupsamraj', '4', '8056060478', '', 'davidsjr143@gmail.com', '1998-04-21', 23, '2', '2', 'S Louis vindhan', 'Spotwelder', 11000.00, 1, 0.00, 12000.00, 'Thiruninravur', 'Thiruninravur', '2105050004', '1', '1', 'upload_files/candidate_tracker/63331481540_work ...WA0033_a.pdf', NULL, NULL, '2021-05-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-05 12:08:12', 1, '2021-05-05 12:30:13', 0, NULL, 1),
(4725, 'V. Rohit', '4', '9677434948', '8778134714', 'rd65193@gmail.com', '1999-09-13', 21, '2', '2', 'K. Veeraragavan', 'Carpentor', 20000.00, 5, 10000.00, 12000.00, 'Tiruvallur', 'Tiruvallur', '2105050005', '1', '2', 'upload_files/candidate_tracker/38304393439_rohitresume.docx', NULL, '2', '2021-05-05', 2, '', '3', '59', '2021-07-19', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location with CTC 120000 in the cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-05 12:28:14', 60, '2021-07-17 12:10:52', 0, NULL, 1),
(4726, 'R.Sujith kumar', '4', '9952870750', '8220109856', 'sujithkumaravi200@gmail.com', '2000-03-09', 21, '2', '2', 'Ravi', 'Private employee', 12000.00, 1, 12000.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2105050006', '1', '2', 'upload_files/candidate_tracker/20264792443_Sujithkumar (2).pdf', NULL, NULL, '2021-05-05', 5, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for this profile . ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-05 12:29:36', 50, '2021-05-05 01:33:27', 0, NULL, 1),
(4727, 'b.gowtham', '4', '8220279014', '', 'gowthamchristofer@gmail.com', '1998-06-26', 22, '2', '2', 'p.Balu', 'business', 15000.00, 1, 11000.00, 12000.00, 'thiruvallur', 'thiruvallur', '2105050007', '1', '2', 'upload_files/candidate_tracker/91248585881_Resume.pdf', NULL, '1', '2021-05-05', 5, '', '3', '59', '2021-07-19', 126000.00, '', '', '1970-01-01', '2', 'Selected for Tiruvallur Location with CTC 126000 - Cash mode 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-05 12:30:21', 60, '2021-07-19 03:33:31', 0, NULL, 1),
(4728, 'Kalaivani S', '4', '9840240994', '8124448056', 'Kalaiaj1603@gmail.com', '2000-09-12', 20, '2', '2', 'Sekar', 'Car driver', 12000.00, 1, 0.00, 13000.00, 'Iyyappanthangal', 'iyyappanthangal', '2105050008', '1', '1', 'upload_files/candidate_tracker/67733605461_KALAIVANI S.docx', NULL, NULL, '2021-05-05', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for this job', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-05 01:22:06', 50, '2021-05-05 01:34:02', 0, NULL, 1),
(4729, 'RANJITHKUMAR N', '13', '9790431418', '', 'ranjith362000@gmail.com', '2000-06-03', 20, '2', '2', 'NARAYANAN S', 'Cooli Velai', 2500.00, 0, 0.00, 15000.00, 'Vandavasi', 'Vandavasi', '2105050009', '1', '1', 'upload_files/candidate_tracker/61606680287_Updated Resume .pdf', NULL, '1', '2021-05-10', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected as a Intern. 3 Years Service Agreement. intern for 1st 6 months. 3k salary for an internship.', '2', '1', '', '1', '1', '', '2', '2021-05-13', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-05 01:52:58', 60, '2021-09-02 03:00:57', 0, NULL, 1),
(4730, 'S prasanth', '6', '7299739833', '', 'Prasanthappu3011@gmail.com', '1996-09-14', 24, '3', '2', 'K sekar', 'Driver', 25000.00, 1, 14000.00, 15000.00, '324 F block scb colony Mandaveli chennai', 'Mandaveli', '2105050010', '', '2', 'upload_files/candidate_tracker/53671493084_PRASANTH RESUME (8).pdf', NULL, '1', '2021-05-05', 0, '', '3', '8', '2021-05-14', 204000.00, '', '2', '1970-01-01', '1', 'Selected For Kannan Team,CTC - 204000 Includes PF/PT Dedcutions', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-05 02:22:45', 7, '2021-05-14 03:37:11', 0, NULL, 1),
(4731, 'Lavanya Murugesan', '22', '8610526953', '9551101291', 'Amlavanya5@gmail.com', '1997-06-05', 23, '2', '1', 'Srinath', 'IT employee', 60.00, 2, 12.50, 20.00, 'Pammal, Chennai', 'Pammal, Chennai', '2105050011', '1', '2', 'upload_files/candidate_tracker/28787066625_Lavanyas CV.docx', NULL, '1', '2021-05-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our Digital Marketing Profile, will not sustain for a long', '2', '1', '', '1', '1', '', '2', '2021-05-25', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-05 02:36:58', 7, '2021-05-08 02:20:51', 0, NULL, 1),
(4732, 'S.Manigandan', '4', '9043991563', '', 'Manigandans693@gmail.com', '1993-06-04', 27, '2', '2', 'Sampath.v', 'Farmer', 10000.00, 3, 13.00, 12000.00, 'Thiruvannamalai', 'Porur', '2105050012', '1', '2', 'upload_files/candidate_tracker/51748901066_S. Maniganadan-1.doc', NULL, NULL, '2021-05-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, 7yr into data entry, not speaking up.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-05 02:47:56', 1, '2021-05-05 02:54:44', 0, NULL, 1),
(4733, 'Prakash Kumar Mohanty', '5', '7411678568', '7411361056', 'iciciprakash5991@gmail.com', '1995-01-06', 26, '2', '2', 'Gopinath Mohanty', 'Farmer', 10000.00, 2, 2.50, 2.80, 'Hyderabad', 'Hyderabad', '2105050013', '1', '2', 'upload_files/candidate_tracker/45879627708_prakash resume.doc', NULL, NULL, '2021-05-06', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Reason for rejection:\n1. Candidate didnxquott show the positive attitude\n2. He is having problem in local language\n3.Existing working exp seems irrelevant to me as per the observation.\n4. During the interview  the connection were missing completely between Interviewer and the candidate\n5. Cnadidate belongs to Odisa and he is here in HYD only for his brother occupation in future if he moved to other state he will also migrate to their\n6.Seems not flexible to work in field sales.\n7. Appearance  was not good.', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-05 03:04:09', 1, '2021-05-06 10:12:05', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4734, 'roshitha', '4', '9080992280', '8682880052', 'sudeeshroshitha@gmail.com', '1996-01-22', 25, '2', '2', 'sudeesh', 'tailor', 10000.00, 1, 17000.00, 17000.00, 'saidapet', 'saidapet', '2105050014', '1', '2', 'upload_files/candidate_tracker/74680005162_Roshitha s.pdf', NULL, NULL, '2021-05-05', 0, '', '4', '11', NULL, 0.00, '', '0', NULL, '2', 'check for esale, has 3 yr exp in renewal. has basic knowledge about hdfc pdt.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-05 03:04:51', 1, '2021-05-05 03:25:37', 0, NULL, 1),
(4735, 'Subhiksha VS', '4', '8248087845', '9176443854', 'Subhiksha.sama08@gmail.com', '1995-07-08', 25, '2', '2', 'Poorna chandrika', 'housewife', 30000.00, 2, 15000.00, 17000.00, 'No:10,19th street thillai ganga nagar nanganallur', 'chennai', '2105050015', '1', '2', 'upload_files/candidate_tracker/23479787598_subhiksha resume.docx', NULL, NULL, '2021-05-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Will Not Handle Pressure And Will Not Suite For Sales May Be For Renewal.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-05 03:05:47', 1, '2021-05-05 03:11:40', 0, NULL, 1),
(4736, 'V.S.Krithika', '4', '9629619094', '9790947817', 'krithi3097@gmail.com', '1997-08-30', 23, '2', '2', 'S. Poornachandrika', 'Homemaker', 30000.00, 2, 13000.00, 16000.00, 'No.10,19th street t G nagar nanganallur Chennai-61', 'No.10,19th Street T G Nagar Nanganallur Chennai-61', '2105050016', '1', '2', 'upload_files/candidate_tracker/58311675063_krithika resume.docx', NULL, NULL, '2021-05-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not handle pressure and will not suite for sales may be for renewal.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-05 03:05:56', 1, '2021-05-05 03:11:12', 0, NULL, 1),
(4737, '', '0', '9176443854', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105050017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-05 03:16:49', 0, NULL, 0, NULL, 1),
(4738, 'mallaji kantravada', '5', '9014301531', '', 'mallaji.personal@gmail.com', '1994-01-11', 27, '2', '2', 'k sathyanarayana', 'farmar', 15000.00, 1, 25000.00, 30000.00, 'janagaon', 'amberpet', '2105050018', '1', '2', 'upload_files/candidate_tracker/10801240920_Mallaji Resume 1.pdf', NULL, '2', '2021-05-07', 7, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'We offered him the package of 23K gross,but he didnt responds and not joinied', '5', '2', '', '3', '4', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-05 03:22:42', 50, '2021-05-07 01:01:42', 0, NULL, 1),
(4739, 'melina mary', '4', '6379941121', '', 'melina20raj@gmail.com', '2000-02-20', 21, '2', '2', 'santhana raj', 'na', 50000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2105050019', '1', '1', 'upload_files/candidate_tracker/96972409533_My Resume.pdf', NULL, NULL, '2021-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-05 03:46:06', 1, '2021-05-05 03:50:34', 0, NULL, 1),
(4740, 'K.Malathy', '4', '6382430292', '', 'malumalathy058@gmail.com', '1999-10-09', 21, '4', '2', 'D/o G.Kannan', 'Welder', 15000.00, 1, 10500.00, 15000.00, 'Kovilpatti', 'Chennai', '2105050020', '', '2', 'upload_files/candidate_tracker/73497610358_Malathy Resume.pdf', NULL, NULL, '2021-05-06', 2, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-05 03:54:14', 1, '2021-05-05 04:04:50', 0, NULL, 1),
(4741, 'Rashmi Christilla', '4', '7200441804', '', 'rashpinkyaj@gmail.com', '1995-12-05', 25, '4', '2', 'Selvam', 'Merchant', 25000.00, 1, 16000.00, 15000.00, 'Kovilpatti', 'Vadapalani, chennai', '2105050021', '', '2', 'upload_files/candidate_tracker/19669195622_Ras_Nk-converted-1 (2).pdf', NULL, NULL, '2021-05-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-05 03:58:01', 1, '2021-05-05 04:12:44', 0, NULL, 1),
(4742, '', '0', '9553798063', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105050022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-05 04:16:24', 0, NULL, 0, NULL, 1),
(4743, 'R kishore raju', '5', '9390306241', '9177652263', 'kishoreraj0026@gmail.com', '1996-04-16', 25, '2', '2', 'Srinivasa raju', 'Government employe', 40000.00, 4, 23000.00, 30000.00, 'Hyderabad', 'Hyderabad', '2105050023', '1', '2', 'upload_files/candidate_tracker/98381844205_Kishore CV (1)-converted.docx', NULL, NULL, '2021-05-06', 1, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for Job', '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-05 06:29:11', 1, '2021-05-05 07:29:36', 0, NULL, 1),
(4744, '', '0', '9177652263', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105050024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-05 07:21:40', 0, NULL, 0, NULL, 1),
(4745, '', '0', '9940367043', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105060001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-06 10:37:20', 0, NULL, 0, NULL, 1),
(4746, '', '0', '9677102498', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105060002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-06 11:52:17', 0, NULL, 0, NULL, 1),
(4747, 'ponnuram G A', '13', '9094065624', '', 'ponnuram03@gmail.com', '1998-12-13', 22, '2', '2', 'Ananda rao G S', 'cobbler', 72000.00, 1, 0.00, 15000.00, 'chennai', 'Chennai', '2105060003', '1', '1', 'upload_files/candidate_tracker/12491068095_Ponnuram G A resume.pdf', NULL, '1', '2021-05-06', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response.', '2', '1', '', '1', '1', '', '2', '2021-05-07', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-06 11:53:06', 60, '2021-05-06 07:32:36', 0, NULL, 1),
(4748, 'Vinotha V', '22', '9789031127', '9444117022', 'vinothasekaran@gmail.com', '1995-11-03', 25, '2', '2', 'Vasanthasekaran N', 'Mechanical Engineer', 60000.00, 0, 40000.00, 10000.00, 'T.Nagar', 'T.Nagar', '2105060004', '1', '2', 'upload_files/candidate_tracker/47153911199_VS Resume.pdf', NULL, '1', '2021-05-07', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High Package In The Previous Company. Doubtful Of Sustainability.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'High package in the previous company. Doubtful of sustainability.', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-05-06 12:39:17', 69, '2021-09-20 01:23:06', 0, NULL, 1),
(4749, 'Nandhini', '2', '7305834737', '', 'nandhinigopal20@gmail.com', '1998-11-20', 22, '2', '2', 'Gopal', 'Painter', 10000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2105060005', '1', '1', 'upload_files/candidate_tracker/63176736204_NANDHINI resume.pdf', NULL, NULL, '2021-05-07', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected For Internship - 5K Stipend  - Mern Stack, Joined on 2-Jun-2021 WFH Training', '2', '1', '0', '1', '1', '0', '2', '2021-05-10', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-06 12:57:20', 1, '2021-05-06 01:01:25', 0, NULL, 1),
(4750, 'Vinoth S', '6', '9790939832', '9943604922', 'vinogeetha1998@gmail.com', '1999-04-25', 22, '2', '2', 'Kalarani.S', 'Ledies tylor', 8000.00, 5, 13.50, 14000.00, 'Trichy', 'Palavanthangal', '2105060006', '1', '2', 'upload_files/candidate_tracker/29598164927_Vino_Resume.docx', NULL, '1', '2021-05-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Profile kept on hold during this pandemic and dropped post the completion of Lockdown', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-06 02:18:43', 8, '2021-05-06 05:03:58', 0, NULL, 1),
(4751, 'g.sangeetha priya', '13', '8148672167', '', 'sangeetha1851@gmail.com', '2001-05-18', 19, '2', '2', 'p.gunasekar', 'business', 30000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2105060007', '1', '1', 'upload_files/candidate_tracker/87475268032_Sangeetha priya G resume.pdf', NULL, '1', '2021-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location too long fresher,exams yet to complete\n', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-06 02:58:43', 1, '2021-05-06 04:04:09', 0, NULL, 1),
(4752, 'Kamal.M', '23', '7418823014', '', 'smkamal.sm@gmail.com', '1990-06-07', 30, '2', '2', 'M.Venda', 'House wife', 10000.00, 2, 25000.00, 30000.00, 'No: 683/5, road street, srinivasapuram, Arani', 'Mathavaram, Chennai', '2105060008', '1', '2', 'upload_files/candidate_tracker/94572854352_kamal-Resume.docx', NULL, '3', '2021-05-07', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-06 03:04:27', 1, '2021-05-06 04:23:18', 7, '2021-05-07 04:00:49', 0),
(4753, 'r praveena', '23', '8110990320', '', 'praveena.ravi1101@gmail.com', '1997-01-11', 24, '2', '2', 'r ravichandran', 'driver', 16000.00, 1, 16.00, 30000.00, 'tiruvannamalai', 'tiruvannamalai', '2105060009', '1', '2', 'upload_files/candidate_tracker/9877406083_Resume-Praveena..pdf', NULL, '2', '2021-05-06', 0, '', '5', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task Incomplete', '2', '1', '', '1', '1', '', '2', '2021-05-07', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-06 04:08:56', 7, '2021-05-17 11:51:53', 0, NULL, 1),
(4754, 'Kamal.M', '23', '9094089458', '', 'smkamal.sm@gmail.com', '1990-06-07', 30, '2', '2', 'M.Venda', 'House wife', 10000.00, 2, 25000.00, 30000.00, 'No: 683/5, road street, srinivasapuram, Arani', 'Mathavaram, Chennai', '2105060010', '1', '2', 'upload_files/candidate_tracker/15698511328_kamal-Resume.docx', NULL, '3', '2021-05-07', 15, '', '4', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task given', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-06 04:40:59', 7, '2021-05-07 10:56:54', 0, NULL, 1),
(4755, 'govindaraj s', '6', '9042511098', '', 'illayagokul@gmail.com', '1996-07-05', 24, '2', '2', 'subamaniya s', 'auto driver', 10000.00, 1, 13000.00, 14000.00, 'chennai', 't nagar', '2105060011', '2', '2', 'upload_files/candidate_tracker/7521467046_Govindaraj resume .docx', NULL, '', '2021-05-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain and will not handle pressure. absconded from the last company.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-06 06:23:02', 1, '2021-05-06 06:25:10', 0, NULL, 1),
(4756, '', '0', '9505574613', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105060012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-06 07:06:53', 0, NULL, 0, NULL, 1),
(4757, 'rashmi Chirstilla', '5', '8270842501', '', 'rashpinkyaj@gmail.com', '1995-12-05', 25, '2', '2', 'sevam', 'working', 50000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2105070001', '1', '1', 'upload_files/candidate_tracker/92541952771_Ras_Nk-converted-1 (2) (1).pdf', NULL, '2', '2021-08-09', 0, '', '3', '59', '2021-08-09', 170496.00, '', '5', '1970-01-01', '2', 'Selected for Dhivya Team with CTC 170496 includes PF/ESI/PT', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 10:39:46', 60, '2021-08-09 05:02:09', 0, NULL, 1),
(4758, 'monica', '4', '7305442176', '', 'monicasiva98@gmail.com', '1998-11-11', 22, '2', '2', 'siva e', 'wage', 50000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2105070002', '1', '1', 'upload_files/candidate_tracker/9717052207_monica done.pdf', NULL, '2', '2021-05-07', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 10:45:01', 50, '2021-05-07 05:22:03', 0, NULL, 1),
(4759, '', '0', '7338959523', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105070003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-07 10:49:20', 0, NULL, 0, NULL, 1),
(4760, 'sathya', '4', '8610067714', '7708864554', 'dvsathyasri3@gmail.com', '1997-08-21', 23, '2', '2', 'dharumaiyan', 'farmer', 4000.00, 0, 12000.00, 12000.00, 'manargudi', 'ambattur', '2105070004', '1', '2', 'upload_files/candidate_tracker/64881072635_sathya resumr 1.pdf', NULL, '2', '2021-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 11:05:03', 1, '2021-05-07 11:08:18', 0, NULL, 1),
(4761, 'Sangavi', '16', '7373570546', '', 'ecesangaviworld@gmail.com', '1993-07-21', 27, '2', '2', 'Soundarapandiyan', 'Farmer', 10000.00, 2, 0.00, 25000.00, 'Perambalur', 'Nungambakkam', '2105070005', '1', '2', 'upload_files/candidate_tracker/86106372941_sangavi resume 2021.pdf', NULL, '1', '2021-05-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average, Less Exp in MIS but the expectation is very high', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 11:08:38', 50, '2021-05-07 11:54:14', 0, NULL, 1),
(4762, '', '0', '9337761509', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105070006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-07 11:13:50', 0, NULL, 0, NULL, 1),
(4763, 'karthiga', '13', '9444295515', '', 'd.karthiga123@gmail.com', '1995-11-27', 25, '2', '2', 'dhanushkodi', 'line man', 50000.00, 1, 20000.00, 25000.00, 'villupuram', 'villupuram', '2105070007', '1', '2', 'upload_files/candidate_tracker/69791042788_karthiga_resume.docx', NULL, '3', '2021-05-07', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not completed and no response.', '2', '1', '0', '1', '1', '0', '2', '2021-05-08', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-07 11:47:49', 1, '2021-05-07 11:52:22', 0, NULL, 1),
(4764, 'Akilesh', '4', '9094802796', '9840755452', 'akileshstonecold@gmail.com', '2001-07-30', 19, '2', '2', 'A.N.sudarsanan', 'Musician', 15000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2105070008', '1', '2', 'upload_files/candidate_tracker/61376055281_updated resume.docx', NULL, '1', '2021-05-07', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain for a long,Just for time being looking for a job if he finds any relevant Core job will move for that', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 11:59:13', 1, '2021-05-07 12:24:02', 0, NULL, 1),
(4765, 'Surya s', '5', '9500181787', '', 'Benetz07@gmail.com', '1992-02-24', 29, '1', '1', 'Nandhini', 'House wife', 25000.00, 2, 25000.00, 30000.00, 'Mylapore', 'Mylapore', '2105070009', '', '2', 'upload_files/candidate_tracker/43334151201_surya_new_format.pdf', NULL, '1', '2021-05-07', 15, 'Raaj', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'First i shorlisted but Rejected in ref check', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-07 12:01:52', 1, '2021-05-07 12:35:10', 0, NULL, 1),
(4766, 'Mohammed Reffai', '22', '9677211855', '', 'reffaistr5697@gmail.com', '1997-05-28', 23, '2', '2', 'mp. rahamathullah', 'business', 50000.00, 3, 13000.00, 20000.00, 'chennai aminjikarai', 'chennai aminjikarai', '2105070010', '1', '2', 'upload_files/candidate_tracker/42227574442_Reffai work exp.docx', NULL, '1', '2021-05-11', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,Not Much open up,will not suits much for our role', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-07 12:11:57', 7, '2021-05-11 11:24:09', 0, NULL, 1),
(4767, 'Mageswari.M', '20', '8124725204', '', 'Magimagi28@gmail.com', '1999-03-02', 22, '2', '2', 'K.Manoharan', 'Electrician', 20000.00, 2, 0.00, 12000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2105070011', '1', '1', 'upload_files/candidate_tracker/95421384801_mageswari resume.pdf', NULL, '1', '2021-05-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling and our process', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 12:54:47', 50, '2021-05-07 01:10:43', 0, NULL, 1),
(4768, 'KARTHIKEYAN B', '28', '8608583027', '', 'karthikbalaji15699@gmail.com', '1999-06-15', 21, '2', '2', 'BALAJI.R', 'MTC BUS TECHNICIAN', 30000.00, 0, 0.00, 20000.00, 'West mambalam, Chennai', 'West mambalam, Chennai', '2105070012', '1', '1', 'upload_files/candidate_tracker/90601105808_KARTHIK RESUME.pdf', NULL, '1', '2021-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Not much focused towards Work, Family running their own business. Sustainability Doubt, yet to complete his exams\n', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-07 01:37:41', 1, '2021-05-07 01:50:22', 0, NULL, 1),
(4769, 'rajasekhar reddy', '5', '7993586206', '', 'raj.sekhar724@gmail.com', '1994-08-13', 26, '2', '1', 'venkata ramana reddy', 'not working', 10000.00, 1, 23000.00, 30000.00, 'vizag', 'hyderabad', '2105070013', '1', '2', 'upload_files/candidate_tracker/53504989317_raja sekhar Reddy resume updates.docx', NULL, '1', '2021-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 02:28:29', 1, '2021-05-07 02:32:55', 0, NULL, 1),
(4770, 'Battina venkata ramana', '5', '9014893955', '', 'aramya078@gmail.com', '1994-04-30', 27, '2', '2', 'Atchutha ramayya', 'Employee', 1.00, 1, 15000.00, 15000.00, 'Vizag', 'Hyderabad', '2105070014', '1', '2', 'upload_files/candidate_tracker/90504726314_CV_2021-04-22-051225.pdf', NULL, '1', '2021-05-13', 0, '', '8', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not attended the interview', '5', '2', '', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 03:33:59', 50, '2021-05-12 05:36:00', 0, NULL, 1),
(4771, 'Manojkumar', '16', '9840225181', '', 'sakshi.ysh@gmail.com', '1990-12-08', 30, '2', '1', 'Rajendran', 'Junior assistant', 25.00, 1, 14.00, 15.00, 'Ramapuram', 'Ramapuram', '2105070015', '1', '2', 'upload_files/candidate_tracker/23675864669_Manoj resume (1).pdf', NULL, '1', '2021-05-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Response', '3', '2', '', '1', '1', '', '2', '2021-05-24', '3', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-07 03:46:10', 7, '2021-05-07 04:16:28', 0, NULL, 1),
(4772, 'komalatha', '20', '7013549746', '9985631869', 'gantakomalatha@gmail.com', '1996-06-17', 24, '2', '2', 'rathna', 'house wife', 4.00, 2, 25.00, 35.00, 'vizag', 'hyderabad', '2105070016', '1', '2', 'upload_files/candidate_tracker/86819392470_Copy of GANTA KOMALATHA resume.2020.pdf', NULL, '3', '2021-05-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 03:54:41', 50, '2021-05-08 09:33:00', 0, NULL, 1),
(4773, 'Sathviga. M', '28', '9941275399', '', 'msathviga@gmail.com', '1998-05-25', 22, '2', '2', 'Murali D', 'Retired', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2105070017', '1', '1', 'upload_files/candidate_tracker/42733968243_sathviga M.pdf', NULL, '3', '2021-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much into Data Science with the Technologies of Python and more. will not sustain for our Data Analyst position', '3', '1', '0', '1', '1', '0', '2', '2021-05-26', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-07 04:15:52', 1, '2021-05-07 04:20:22', 0, NULL, 1),
(4774, 'akhil', '5', '9494317541', '9885488277', 'kakhil256@gmail.com', '1995-06-25', 25, '2', '1', 'k ratnakumar', 'clerk', 20000.00, 1, 20000.00, 25000.00, 'kammam', 'hyderabad', '2105070018', '1', '2', 'upload_files/candidate_tracker/1971504507_CV (1).pdf', NULL, '2', '2021-05-08', 0, '', '3', '8', '2021-05-24', 275000.00, '', '6', '2022-04-20', '1', 'For veben team hyderabad. 2.75L ctc, 22917 MCTC and 19316.6 as net. with pf/PT', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 04:16:09', 7, '2021-05-24 12:22:40', 0, NULL, 1),
(4775, 'Thenmozhi S', '28', '9940422132', '9840463114', 'thenmozhi.pugazenthi@gmail.com', '1987-03-19', 34, '2', '1', 'Pugazenthi S', 'Business', 15000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2105070019', '1', '2', 'upload_files/candidate_tracker/14924865730_My Resume.docx', NULL, '1', '2021-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Experienced, Gap In Career Expecting 21k,Sustainability doubt on this profile', '3', '2', '0', '1', '1', '0', '2', '2021-05-25', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-07 04:39:14', 1, '2021-05-07 04:52:06', 0, NULL, 1),
(4776, '', '0', '7339321715', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105070020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-07 04:45:27', 0, NULL, 0, NULL, 1),
(4777, 'Mohammed Maozam', '6', '8341544310', '', 'mohammedmaozam01@gmail.com', '1999-11-19', 21, '2', '2', 'Mohd Shafee', 'Business', 100000.00, 2, 12000.00, 20000.00, 'HNo. 2-6-41/9/A/5/3 Attapur, Hyderabad.', 'HNo. 2-6-41/9/A/5/3 Attapur, Hyderabad', '2105070021', '1', '2', 'upload_files/candidate_tracker/78893251202_Mohd Maozam.docx', NULL, '1', '2021-05-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 05:06:54', 50, '2021-05-08 09:33:16', 0, NULL, 1),
(4778, '', '0', '7036912724', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105070022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-07 05:47:30', 0, NULL, 0, NULL, 1),
(4779, 'Burdhi Naveen Prasad', '5', '9398785801', '', 'b.naveen9030@gmail.com', '1999-05-02', 22, '2', '2', 'srinivas', 'waiter', 120000.00, 1, 18000.00, 20000.00, 'alwal', 'alwal', '2105070023', '1', '2', 'upload_files/candidate_tracker/33725607224_NAVEEN RESUME.pdf', NULL, '2', '2021-05-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '3', '4', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 05:51:54', 50, '2021-05-08 09:33:30', 0, NULL, 1),
(4780, 'jayaprakash j', '23', '9750653793', '9964646874', 'jayaprakashpkt02@gmail.com', '1994-06-02', 26, '2', '2', 'jayabal p', 'post master', 15000.00, 1, 12000.00, 20000.00, 'thanjavur', 'vadapalani', '2105070024', '1', '2', 'upload_files/candidate_tracker/46614080531_Jayaprakash j new resume.docx', NULL, '1', '2021-05-08', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much suits for UI,not much knowledge ', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-07 09:27:24', 1, '2021-05-07 09:36:27', 0, NULL, 1),
(4781, 'Adithyan', '28', '7867945420', '', 'Adithyandbtr@gmail.com', '1995-08-07', 25, '2', '2', 'Durairajan', 'Agriculture', 25000.00, 0, 25000.00, 35000.00, 'Mayiladhuturai', 'Chennai', '2105080001', '1', '2', 'upload_files/candidate_tracker/56592295571_Adithyan_Resume1.pdf', NULL, '2', '2021-05-10', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,2+ Yrs Into MIS With Amazon,30 Days Of Notice, Salary Expectation Is High, Sustainability Doubt', '3', '2', '0', '1', '1', '0', '2', '2021-05-24', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-08 10:02:05', 1, '2021-05-09 08:59:21', 0, NULL, 1),
(4782, 'Dhivakar', '28', '8489656699', '9655571818', 'dhivakarbalasubramaniyan@outlook.com', '1992-04-07', 29, '2', '2', 'Balasubramaniyan', 'Farmer', 25000.00, 1, 2.40, 4.00, '96,Sembulipuram village cheyyur taluk,603304', '49, 2nd st , Priya Nagar,urapakkam, 603210', '2105080002', '1', '2', 'upload_files/candidate_tracker/39768436897_Resume_Dhivakar.pdf', NULL, '1', '2021-05-08', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, Full focused on pure Data Science openings, Sustainability issue 3 yrs 3 companies and high Salary Expectations', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-08 10:07:48', 50, '2021-05-08 10:20:44', 0, NULL, 1),
(4783, 'muneerunisa', '4', '7092580751', '', 'nissomailme@gmail.com', '1993-09-20', 27, '2', '1', 'husamudeen', 'indian navy retired', 20000.00, 1, 16000.00, 13000.00, 'chennai', 'chennai', '2105080003', '2', '2', 'upload_files/candidate_tracker/38521521256_WhatsApp Image 2021-05-07 at 2.34.11 PM.pdf', NULL, '1', '2021-05-08', 0, '', '4', '11', NULL, 0.00, '', '0', NULL, '1', 'check for RM esale, knows basics in insurance and has exp in renewal and customer support.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-08 10:31:33', 1, '2021-05-08 10:34:56', 0, NULL, 1),
(4784, 'ambati rajasekhar reddy', '5', '8074710018', '9948972289', 'rajasekhar.mbahr2@gmail.com', '1993-05-04', 28, '2', '2', 'veera reddy', 'farmer', 10000.00, 3, 18000.00, 25000.00, 'hyderabad', 'yousufguda check post', '2105080004', '1', '2', 'upload_files/candidate_tracker/808195221_0_Raja18.docx', NULL, '1', '2021-05-08', 0, '', '3', '72', '2021-06-02', 235000.00, '', '4', '2021-06-09', '1', 'Selected For Veben, CTC - 2.35 LPA Includes PF/PT', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-08 11:10:31', 60, '2021-06-01 03:57:48', 0, NULL, 1),
(4785, 'Aqeel Ahmed', '5', '8801728104', '7337062079', 'aqeelhyd51@gmail.com', '1992-07-03', 28, '2', '2', 'late Jameel ahmed', 'own business', 18500.00, 2, 18500.00, 25000.00, 'Hyderabad', 'Hyderabad', '2105080005', '1', '2', 'upload_files/candidate_tracker/23498598284_Aqeel Resume ltst.docx', NULL, '3', '2021-05-10', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-08 11:13:42', 1, '2021-05-08 11:16:39', 0, NULL, 1),
(4786, 'Deepak', '16', '9941119097', '9025629974', 'deepakvenkat94@gmail.com', '1994-05-24', 26, '2', '2', 'Anbarasan', 'Electrician', 20000.00, 1, 19000.00, 24000.00, 'Chennai', 'Chennai', '2105080006', '1', '2', 'upload_files/candidate_tracker/10648144488_1620452185595_1591618488837Resume_DeepakMIS (1).docx', NULL, '1', '2021-05-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Exp In MIS,Not Much With Communications Need much ok with SA', '3', '2', '', '1', '1', '', '2', '2021-05-25', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-08 11:25:41', 50, '2021-05-08 11:54:07', 0, NULL, 1),
(4787, 'Velmurugan', '28', '7339391084', '', 'velmurugan3796@gmail.com', '2006-05-08', 0, '2', '2', 'Kamaiyan', 'Agriculture', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2105080007', '1', '1', 'upload_files/candidate_tracker/95585427748_Resume.pdf', NULL, '1', '2021-05-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-08 12:00:36', 1, '2021-05-08 12:03:54', 0, NULL, 1),
(4788, 'rajeshwari', '4', '9841939417', '', 'krishnamoorthyrajeshwari@gmail.com', '1993-12-19', 27, '2', '2', 'krishnamoorthy', 'makeup artist', 13000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2105080008', '2', '1', 'upload_files/candidate_tracker/21087330748_RResume.pdf', NULL, '1', '2021-05-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very slow, not speaking up and will not handle Sales pressure. ', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-08 01:54:48', 1, '2021-05-08 01:56:57', 0, NULL, 1),
(4789, '', '0', '6385574199', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105080009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-08 08:34:23', 0, NULL, 0, NULL, 1),
(4790, 'Easwari S', '28', '9042066037', '', 'easwaribe94@gmail.com', '1994-04-19', 27, '2', '1', 'Sathiya Prakash', 'administration', 25000.00, 3, 14000.00, 19000.00, 'mambakkam', 'mambakkam', '2105080010', '1', '2', 'upload_files/candidate_tracker/40544305776_Resume.pdf', NULL, '1', '2021-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, Work Exp into Core Subject(Biotechnology),Too long Distance up and down 52kms and the expectation is around 17K TH', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-08 09:32:23', 1, '2021-05-08 09:38:47', 0, NULL, 1),
(4791, 'Venkatramanan', '28', '8124067694', '9962798616', 'venkat16383@gmail.com', '1999-05-08', 22, '2', '2', 'Sankar', 'Self', 50000.00, 1, 325000.00, 400000.00, 'Chennai', 'Chennai', '2105100001', '1', '2', 'upload_files/candidate_tracker/99564387230_venkys%20new%20resume%20updated%20on%20apri021.docx', NULL, '2', '2021-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Good Communication, Sustainability  doubt need a month time post selection for the submission of Documents.Also he holds a offer with BYJuxquots for BDE with 7LPA  ans being into Sales he was not much comfortable with BYJU. His Expectation from us is around 4 LPA. Much Focus into Financial Analyst', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-10 09:37:43', 1, '2021-05-10 09:41:43', 0, NULL, 1),
(4792, 'E. Gnanalakshmi', '13', '7305146845', '6385574199', 'lachuelumalai12@gmail.com', '2000-12-12', 20, '2', '2', 'Elumalai', 'Hotel business', 15000.00, 1, 0.00, 15000.00, 'Gummidipoondi', 'Gummidipoondi', '2105100002', '1', '1', 'upload_files/candidate_tracker/52108336813_Gnana Lakshmi E.pdf', NULL, '2', '2021-05-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'dont know the basic. she will not suit for us.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-10 11:44:18', 1, '2021-05-10 11:50:32', 0, NULL, 1),
(4793, 'madha saikumar', '5', '7995489029', '9391285613', 'madasaikumar868@gmailmcom', '1997-01-10', 24, '2', '2', 'madha saiahaia', 'farmer', 30000.00, 2, 15000.00, 15000.00, 'nalkonda', 'Dilshuknagar', '2105100003', '1', '2', 'upload_files/candidate_tracker/3605145812_SAI KUMAR RESUME(1).pdf', NULL, '1', '2021-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 12:35:47', 1, '2021-05-10 12:39:55', 0, NULL, 1),
(4794, 'Sathish', '23', '9791901007', '', 'msathish40@gmail.com', '1989-04-15', 32, '2', '2', 'Murugaiyan', 'Business', 20000.00, 2, 20000.00, 30000.00, 'Tindivanam', 'Chennai', '2105100004', '1', '2', 'upload_files/candidate_tracker/65158262949_newresume.doc', NULL, '3', '2021-05-12', 1, '', '5', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Incomplete', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-10 02:04:30', 7, '2021-05-20 10:47:14', 0, NULL, 1),
(4795, '', '0', '9100310363', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105100005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-10 02:31:51', 0, NULL, 0, NULL, 1),
(4796, 'khadarmastanvali', '5', '9398136897', '9542924940', 'kmbrsc@gmail.com', '1994-08-02', 26, '2', '2', 'abdul jabbar', 'carpenter', 50000.00, 1, 25000.00, 25000.00, 'tholichowki', 'Tholichowki', '2105100006', '1', '2', 'upload_files/candidate_tracker/66843082446_1610007116394_kmv%20resume (1).docx', NULL, '1', '2021-05-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 02:38:41', 1, '2021-05-10 02:42:42', 0, NULL, 1),
(4797, 'CHITHAKORU HEMANTH', '5', '9059900959', '7093529191', 'hemanthtrr@gmail.com', '1994-03-02', 27, '2', '1', 'manusha', 'house wife', 45000.00, 0, 24000.00, 26000.00, 'uppal', 'Uppal', '2105100007', '1', '2', 'upload_files/candidate_tracker/59697252340_Hemanth resume.pdf', NULL, '1', '2021-05-11', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for Job', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 02:49:07', 1, '2021-05-10 02:53:04', 0, NULL, 1),
(4798, 'Venkatesh J', '16', '9677208480', '', 'Venkatesh.jeeva2752@gmail.com', '1994-07-24', 26, '2', '1', 'Vasantha J', 'Business', 25000.00, 3, 15000.00, 18000.00, 'Anna nagar west,chennai', 'Anna Nagar west,chennai', '2105100008', '1', '2', 'upload_files/candidate_tracker/43429879001_Venkatesh J.pdf', NULL, '3', '2021-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok, If Trained Will Pick Up. Open For The Service Agreement And The Expectation Is 18-20K For 1.7 Yrs Can  Give A Try For MIS. Interviewed over Zoom by Gokul, No knowledge in Excel,Not suits for the salary Expectation', '3', '1', '', '1', '3', '', '2', '2021-05-24', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 03:19:53', 50, '2021-05-11 09:15:57', 0, NULL, 1),
(4799, 'govind kumar', '16', '9884201931', '', 'govind1488@gmail.com', '1998-04-05', 23, '2', '2', 'krishnanandan choudhary', 'mechanical engineer', 25000.00, 1, 0.00, 25000.00, 'bihar', 'chennai', '2105100009', '1', '2', 'upload_files/candidate_tracker/44338459362_Govind Kumar Resume.pdf', NULL, '2', '2021-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Is Good, But No Local Language, Not Much Into Excel Need To Train A Lot, Open For Agreement But Not Sure Sustainability Doubts', '3', '1', '', '1', '1', '', '2', '2021-05-24', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 03:58:15', 50, '2021-05-11 09:14:45', 0, NULL, 1),
(4800, 'Suresh srinivasan', '16', '9444733358', '7448333900', 'suresh.ss67@gmail.com', '1994-11-10', 26, '2', '1', 'Shanmathy', 'Housewife', 19000.00, 1, 19000.00, 23000.00, 'Chennai', 'Chennai', '2105100010', '1', '2', 'upload_files/candidate_tracker/93686345406_Resume_Suresh (1).docx', NULL, '2', '2021-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok, Service Agreement. Open For The Same CTC 23400 Gross, Can Give A Try For MIS, But The Location Is Long (Guduvanchery)', '3', '2', '', '1', '1', '', '2', '2021-05-12', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 04:09:10', 50, '2021-05-11 09:14:59', 0, NULL, 1),
(4801, 'Prabhakaran', '16', '6383325092', '8056183691', 'prabhakaranravi98@gmail.com', '1998-06-11', 22, '2', '2', 'Ravi', 'Welder', 17000.00, 1, 12400.00, 18000.00, 'Thiruvotriyur', 'Thiruvotriyur', '2105100011', '1', '2', 'upload_files/candidate_tracker/55399461892_1614243951667Resume_Prabhakaran.pdf', NULL, '2', '2021-05-11', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50/50 Communication Average, Long Distance  Around 20kms,Sustainability doubt 12.5 Gross', '3', '1', '', '1', '1', '', '2', '2021-05-12', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 04:53:12', 50, '2021-05-11 09:15:13', 0, NULL, 1),
(4802, 'Kumar John', '26', '9600063698', '6382679834', 'clara88kumar@gmail.com', '1994-04-29', 27, '2', '2', 'john', 'driver', 15000.00, 1, 16000.00, 19000.00, 'CHENNAI', 'chennai', '2105100012', '1', '2', 'upload_files/candidate_tracker/83457006640_Kumar Resume.pdf', NULL, '3', '2021-05-11', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for MF, need to confirm on the joining post  relations in the lockdown', '7', '1', '', '1', '1', '', '2', '2021-05-12', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 05:50:07', 50, '2021-05-11 09:15:27', 0, NULL, 1),
(4803, 'gayathri', '4', '8248421801', '9894430098', 'r.gayuma08@gmail.com', '1994-12-08', 26, '2', '2', 'ravichandaran', 'own business', 25000.00, 1, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2105100013', '1', '1', 'upload_files/candidate_tracker/63462683323_gayathri.pdf', NULL, '2', '2021-05-05', 0, '', '3', '8', '2021-06-02', 120000.00, '', '', '1970-01-01', '2', ' For Sidhivinayagam Team CTC - 120000  Gross - 10k TH-9.5K', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-10 06:03:06', 7, '2021-05-10 06:32:41', 0, NULL, 1),
(4804, 'DHINESH', '13', '8220337337', '', 'Selvadhinesh66@gmail.com', '1996-06-06', 24, '2', '2', 'Selvaraj', 'Farmer', 15000.00, 1, 18000.00, 25000.00, 'chennai', 'chennai', '2105100014', '1', '2', 'upload_files/candidate_tracker/29452189792_1619764970903Resume_DHINESH.pdf', NULL, '3', '2021-05-11', 15, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not good for 2.4 years experienced. This code look like a fresher.', '2', '1', '0', '1', '3', '0', '2', '2021-05-14', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-10 07:01:09', 1, '2021-05-10 07:08:03', 0, NULL, 1),
(4805, 'Ramu.M', '13', '8667572281', '8681835202', 'robertram298@gmail.com', '1998-11-11', 22, '2', '2', 'P.Mani', 'Cooli', 8000.00, 2, 1.00, 216000.00, 'Chennai', 'Chennai', '2105110001', '1', '2', 'upload_files/candidate_tracker/13678699072_Ramu_M-1.docx', NULL, '3', '2021-05-11', 1, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'no sustainability.', '2', '1', '0', '1', '1', '0', '2', '2021-05-22', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-11 11:05:29', 1, '2021-05-11 11:10:59', 0, NULL, 1),
(4806, 'Suresh R', '13', '9962547433', '7092676607', 'donsuresh360@gmail.com', '1995-02-15', 26, '2', '2', 'Ravi Shankar K', 'Car Dealer', 25000.00, 1, 0.00, 180000.00, 'Chennai', 'Chennai', '2105110002', '1', '1', 'upload_files/candidate_tracker/51816536428_resume_Suresh_R_-_Final.docx', NULL, '3', '2021-05-11', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Not completed the task. rejected by dhineshraj.', '2', '2', '0', '1', '1', '0', '2', '2021-05-13', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-11 11:11:53', 1, '2021-05-11 11:20:59', 0, NULL, 1),
(4807, 'saigopalyanamadala', '5', '7738287560', '7304484137', 'saigopalyanamadala10@gmail.com', '1996-09-09', 24, '2', '2', 'trimuthulu yanamadala', 'passed away', 55000.00, 1, 20000.00, 25000.00, 'hyd', 'hyd', '2105110003', '1', '2', 'upload_files/candidate_tracker/55996417617_srisai1 (1).docx', NULL, '2', '2021-05-12', 10, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not a sustainer and not fit for our profile.', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-11 12:45:24', 1, '2021-05-11 12:54:53', 0, NULL, 1),
(4808, 'Purushothaman P', '13', '8148578289', '', 'purushothvpp@gmail.com', '1990-11-13', 30, '2', '2', 'Pandurangan R', 'Software developer', 23000.00, 1, 25000.00, 36000.00, 'Villupuram', 'Taramani', '2105110004', '1', '2', 'upload_files/candidate_tracker/57595134291_Purushoth_Profile.doc', NULL, '3', '2021-05-12', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not completed.', '2', '1', '0', '1', '1', '0', '2', '2021-05-18', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-11 01:37:32', 1, '2021-05-11 01:49:06', 0, NULL, 1),
(4809, 'syed asim hussain', '5', '7993822026', '', 'a.syedasim.h@gmail.com', '1994-01-02', 27, '2', '1', 'afrin begum', 'house wife', 60000.00, 4, 19600.00, 24000.00, 'Saptagiri', 'Saptagiri', '2105110005', '1', '2', 'upload_files/candidate_tracker/44802946959_Share Syed Asim Resume.doc', NULL, '2', '2021-05-12', 10, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-11 03:57:18', 1, '2021-05-11 04:01:39', 0, NULL, 1),
(4810, 'Maloth.Balaji Nayak', '5', '7981512191', '9000977224', 'nayakbalaji01@gmail.com', '1993-10-05', 27, '2', '2', 'laskhman', 'driver', 40000.00, 2, 18000.00, 20000.00, 'warangal', 'warangal/yusufguda', '2105110006', '1', '2', 'upload_files/candidate_tracker/49423740943_CV_2021-04-18-102642 (1).pdf', NULL, '2', '2021-05-12', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our Profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-11 04:06:04', 1, '2021-05-11 04:10:11', 0, NULL, 1),
(4811, 'Harisudhan', '23', '8015374077', '9789172203', 'Harisudhan2204@gmail.com', '1997-04-22', 24, '2', '2', 'Murugan', 'Self employed', 30000.00, 2, 0.00, 15000.00, '451/l angoor palayam road cumbum theni[DT]', 'Chennai', '2105110007', '1', '1', 'upload_files/candidate_tracker/44759222231_Resume May.pdf', NULL, '3', '2021-05-12', 0, '', '5', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not completed', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-11 04:34:23', 7, '2021-05-19 11:24:28', 0, NULL, 1),
(4812, 'Sophia Rani', '16', '9025704704', '', 'sophiarani19@gmail.com', '1995-06-19', 25, '3', '2', 'Joseph victor', 'Retired gazzetted officer', 50.00, 2, 2.80, 3.50, 'Vadapalani', 'Vadapalani', '2105110008', '', '2', 'upload_files/candidate_tracker/26386887544_RANI RESUME.pdf', NULL, '3', '2021-05-25', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-11 05:07:03', 1, '2021-05-11 05:10:55', 0, NULL, 1),
(4813, 'aswini b', '16', '8220664830', '', 'aswinisathya6@gmail.com', '1994-10-22', 26, '2', '2', 'padmavathi', 'home maker', 20000.00, 1, 20000.00, 25000.00, 'tharamani chennai', 'chennai', '2105110009', '1', '2', 'upload_files/candidate_tracker/62001476511_Ashwini.pdf', NULL, '2', '2021-05-12', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok , She Around 26 Yrs, Not Sure On  The Sustainability,  Currently Working 15 Days Notice As She Is In 3rd Party Payroll', '3', '2', '0', '1', '1', '0', '2', '2021-05-13', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-11 05:10:56', 1, '2021-05-11 05:31:20', 0, NULL, 1),
(4814, 'Kothapally manoj', '5', '9989257340', '7013066874', 'manojkothapally68@gmail.com', '1998-03-21', 23, '2', '2', 'rajamouli', 'central bank india', 150000.00, 1, 19700.00, 25000.00, 'uppal', 'Uppal', '2105110010', '1', '2', 'upload_files/candidate_tracker/55242945328_KOTHAPALLY MANOJ.docx', NULL, '2', '2021-05-12', 0, '', '3', '72', '2021-05-24', 288000.00, '', '6', '2022-04-04', '1', 'Selected for Veben,CTC - 288000 includes PF/PT', '5', '1', '1', '3', '4', '2', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-11 05:20:50', 72, '2021-05-22 01:49:43', 0, NULL, 1),
(4815, 'KORRA KISHAN', '5', '9666192940', '7951111407', 'korrakishann@gmail.com', '1995-07-01', 25, '2', '2', 'rakhyadaru', 'farmer', 20000.00, 1, 18000.00, 21000.00, 'lb nagar', 'lb nagar', '2105110011', '1', '2', 'upload_files/candidate_tracker/38255346017_resume (8).doc', NULL, '2', '2021-05-12', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended the interview', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-11 05:43:36', 1, '2021-05-11 05:47:18', 0, NULL, 1),
(4816, 'Anush Narayanen Rs', '13', '8667669341', '8807095644', 'anushnarayanen@gmail.com', '1995-12-02', 25, '2', '2', 'N. Ravi chandran', 'Teacher', 30.00, 1, 0.00, 1.50, 'No. 6/2, karavai strt, mayiladuthurai', 'Plot, 54, urapakkam', '2105110012', '1', '1', 'upload_files/candidate_tracker/14739670914_RESUME-ANUSH.pdf', NULL, '3', '2021-05-12', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'task not completed. no response', '2', '1', '0', '1', '1', '0', '2', '2021-05-14', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-11 07:04:38', 1, '2021-05-11 07:14:55', 0, NULL, 1),
(4817, 'priyanka', '23', '9841454709', '8667029772', 'priyankaarulraj001@gmail.com', '1995-10-10', 25, '2', '2', 'arulraj parasuraman', 'ex-servicemen', 15000.00, 1, 16000.00, 20000.00, 'chennai', 'chennai', '2105120001', '1', '2', 'upload_files/candidate_tracker/72596744633_Resume.pdf', NULL, '3', '2021-05-12', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task given. Task Completed. Not up to the level', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-12 09:36:30', 7, '2021-06-01 12:00:58', 0, NULL, 1),
(4818, 'indumathy', '23', '7402690264', '', 'indu0312b@gmail.com', '1994-12-03', 26, '2', '1', 'ganesh', 'team lead', 30000.00, 1, 300000.00, 400000.00, 'chennai', 'chennai', '2105120002', '1', '2', 'upload_files/candidate_tracker/70458161285_resume-indu.doc', NULL, '3', '2021-05-13', 0, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task Incomplete', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-12 11:43:32', 7, '2021-05-21 01:15:23', 0, NULL, 1),
(4819, 'muthukumaran arunagiri', '23', '9840477042', '9025060935', 'muthukumaran24@gmail.com', '1989-10-24', 31, '2', '1', 'arunagiri', 'retired', 13000.00, 1, 0.00, 15000.00, 'guduvancheri', 'guduvancheri', '2105120003', '1', '1', 'upload_files/candidate_tracker/40173994732_Muthukumaran_CV.pdf', NULL, '3', '2021-05-12', 0, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task given', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-12 12:27:56', 7, '2021-05-12 02:42:36', 0, NULL, 1),
(4820, '', '0', '9025060935', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105120004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-12 12:39:27', 0, NULL, 0, NULL, 1),
(4821, 'Dinesh Babu T N', '23', '9994798913', '', 'tndbmca@gmail.com', '1991-06-30', 29, '2', '1', 'Yasodha', 'House wife', 1.20, 1, 2.16, 3.60, 'Paramakudi', 'Paramakudi', '2105120005', '1', '2', 'upload_files/candidate_tracker/71334025568_DineshUIDeveloper.pdf', NULL, '3', '2021-05-13', 0, '', '5', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task not completed', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-05-12 01:16:32', 7, '2021-05-19 11:23:52', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4822, 'Dilli babu K', '16', '9080888977', '8438393783', 'dillibabu110794@gmail.com', '1994-07-11', 26, '2', '2', 'Krishnamoorthy P', 'Self employed', 10000.00, 1, 16400.00, 21000.00, 'Chennai', 'Chennai', '2105120006', '1', '2', 'upload_files/candidate_tracker/85050062356_Dilli Updated Resume New.pdf', NULL, '3', '2021-05-13', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, Pressure Handling Doubt, Need To Check With Family On SA ,but didnt turn', '3', '2', '', '1', '1', '', '2', '2021-05-14', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-12 03:02:00', 50, '2021-05-13 09:40:33', 0, NULL, 1),
(4823, 'Chunduru.Venkata sai lokesh', '5', '7075687340', '9160834722', 'sai.lokesh786@gmail.com', '1994-01-18', 27, '2', '2', 'rama krishna', 'Business man', 30000.00, 1, 20000.00, 30000.00, 'hyderabad', 'hi tech city', '2105120007', '1', '2', 'upload_files/candidate_tracker/42039242161_CHUNDURU VENKATA SAI LOKESH.docx.pdf', NULL, '2', '2021-05-13', 0, '', '3', '72', '2021-05-24', 312000.00, '', '', '2022-11-26', '1', 'Selected for Veben, Hyderabad Location\nCTC - 312000 included PF/PT deductions. Post Lockdown Joining date will be confirmed', '5', '1', '1', '3', '4', '2', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-12 04:00:45', 72, '2021-05-22 05:46:56', 0, NULL, 1),
(4824, 'Parthiban Subramani', '16', '7200217187', '9566779634', 'parthi05safwan@gmail.com', '1991-02-05', 30, '2', '1', 'Mubina', 'BPO', 25000.00, 1, 270000.00, 351000.00, 'Thuraipakkam, Chennai', 'Thuraipakkam', '2105120008', '1', '2', 'upload_files/candidate_tracker/98641131474_Resume of Parthiban.docx', NULL, '2', '2021-05-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for this Role,Not much knowledge in Excel, will not sustain for a long. Max for a year only and the Expectation is High', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-12 04:31:08', 1, '2021-05-12 04:45:00', 0, NULL, 1),
(4825, 'SanthoshBalaji R', '16', '9940575695', '8778964519', 'santhoshragu3@gmail.com', '1995-06-19', 25, '2', '2', 'Raguraman', 'Auto driver', 50000.00, 1, 224000.00, 350000.00, 'Chennai', 'Chennai', '2105120009', '1', '2', 'upload_files/candidate_tracker/26459743024_SanthoshbalajiMsword.DOCX', NULL, '2', '2021-05-13', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, will not sustain for a long.Not much comfortable with the SA', '3', '1', '', '1', '1', '', '2', '2021-05-15', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-12 04:39:47', 50, '2021-05-13 09:40:49', 0, NULL, 1),
(4826, 'KIRUTHIKA S', '16', '9176310693', '', 'kiruthikaselvaraj93@gmail.com', '1993-06-10', 27, '2', '1', 'VIGNESH', 'PROJECT MANAGER', 40000.00, 0, 20000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2105120010', '1', '2', 'upload_files/candidate_tracker/30152720206_KIRUTHIKA S Resume.pdf', NULL, '2', '2021-05-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok, Career Gap Expecting 22K, She S Ok For SA, But Not Sure On  Her Sustainability. \n', '3', '2', '', '1', '1', '', '2', '2021-05-14', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-12 05:08:51', 50, '2021-05-13 09:41:02', 0, NULL, 1),
(4827, 'meera', '16', '7604930367', '9962327960', 'meeraannamalai60@gmail.com', '1996-01-09', 25, '2', '2', 'annamalai', 'executive', 50000.00, 1, 13600.00, 20000.00, 'chennai', 'valasaravakkam', '2105120011', '1', '2', 'upload_files/candidate_tracker/6741906972_Meera Resume 2020 nk.pdf', NULL, '2', '2021-05-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, Sustainability Doubt not open for SA, No Excel knowledge', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-12 05:31:23', 1, '2021-05-12 06:06:01', 0, NULL, 1),
(4828, '', '0', '9789830021', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105120012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-12 05:34:19', 0, NULL, 0, NULL, 1),
(4829, '', '0', '9894877891', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105120013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-12 05:34:23', 0, NULL, 0, NULL, 1),
(4830, 'Sudhakar', '23', '8903711274', '9095010407', 'sudhakarvettrivel1992@gmail.com', '1992-05-26', 28, '2', '2', 'Selva sundhari', 'Tenkasi', 6000.00, 1, 12000.00, 18000.00, 'SURANDAI', 'SURANDAI', '2105130001', '1', '2', 'upload_files/candidate_tracker/4349934862_sudhakar-r (1).pdf', NULL, '3', '2021-05-13', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task given. Task Completed. Not up to the level', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 09:53:56', 7, '2021-06-01 12:00:21', 0, NULL, 1),
(4831, 'Malavika Ghanta', '28', '9677399499', '', 'ghantamalavika@gmail.com', '1995-08-26', 25, '2', '2', 'Ram Prasad Ghanta', 'Executive', 30000.00, 1, 15000.00, 25000.00, 'Chennai', 'Nelson Manickam Road', '2105130002', '1', '2', 'upload_files/candidate_tracker/68358954816_Malavika 2021 CV.pdf', NULL, '3', '2021-05-13', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Good ,Will not sustain more than a year,Much focus on pure Analyst role\n', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 09:55:53', 50, '2021-05-13 01:18:15', 0, NULL, 1),
(4832, 'Renuga Saravanan', '2', '7397787517', '6381770738', 'renugasaravana222@gmail.com', '2000-06-14', 20, '2', '2', 'Saravanan R', 'Textile supervisor', 25000.00, 1, 0.00, 8000.00, 'Coimbatore', 'Coimbatore', '2105130003', '1', '1', 'upload_files/candidate_tracker/6682402380_Renuga-Java CV2021.pdf', NULL, '2', '2021-05-13', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 10:35:44', 1, '2021-05-13 11:13:55', 0, NULL, 1),
(4833, '', '0', '6366786582', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105130004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-13 10:53:31', 0, NULL, 0, NULL, 1),
(4834, 'sathish .p', '2', '9789368417', '', 'sathishpalanisk07@gmail.com', '1998-05-27', 22, '2', '2', 'parent', 'tile masion', 15000.00, 2, 12000.00, 15000.00, 'rajapalayam', 'rajapalayam', '2105130005', '1', '2', 'upload_files/candidate_tracker/4745055916_Sathish.pdf', NULL, '2', '2021-05-13', 3, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 11:14:05', 7, '2021-05-13 03:06:57', 0, NULL, 1),
(4835, 'MARIA NAVEEN KUMAR S', '28', '9578238715', '7904173793', 'smnaveen8897@gmail.com', '1997-08-08', 23, '2', '2', 'M Swaikeen', 'Private Sector ( Construction)', 15000.00, 0, 12000.00, 16000.00, '5/935, Chandru nagar, Masilamani puram, Dindigul', 'Rekha Garden, Visweshvaraiyer street, Guduvanchery', '2105130006', '1', '2', 'upload_files/candidate_tracker/81450809570_Resume1.pdf', NULL, '2', '2021-05-15', 3, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not responding to the calls', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 11:49:52', 1, '2021-05-13 11:55:56', 0, NULL, 1),
(4836, 'shri varsha t', '28', '9003173935', '8056050811', 'varshashri3132@gmail.com', '2000-03-31', 21, '2', '2', 'tamilselvam s', 'no experience', 50000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2105130007', '1', '1', 'upload_files/candidate_tracker/59518632177_resume (1).docx', NULL, '3', '2021-05-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, Focus much into IT Technical Skill, Sustainability Doubt', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 12:27:17', 1, '2021-05-13 12:34:25', 0, NULL, 1),
(4837, 'Shashi Preetham', '5', '9533553883', '8332881840', 'shashigoudmuddal@gmail.com', '1997-08-03', 23, '2', '2', 'surya prakash', 'trtc', 40000.00, 2, 0.00, 20000.00, 'hyderabad', 'karim nagar - telangana', '2105130008', '1', '1', 'upload_files/candidate_tracker/49421596632_Muddam Shashi Preetham - Resume(1).pdf', NULL, '2', '2021-05-14', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended the interview', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-13 03:08:00', 1, '2021-05-13 03:12:15', 0, NULL, 1),
(4838, '', '0', '9959972176', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105130009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-13 03:14:34', 0, NULL, 0, NULL, 1),
(4839, 'MOHAMMED TALHA', '13', '8667851162', '9092513847', 'talha5189s@gmail.com', '1998-11-21', 22, '2', '2', 'FAIYAZ AHMED', 'ACCOUNTANT', 30000.00, 1, 15000.00, 25000.00, '29/18B AMEEN BA STREET , MELVISHARAM', '29/18B AMEEN BA STREET , MELVISHARAM', '2105130010', '1', '2', 'upload_files/candidate_tracker/43584920027_Mohammed', NULL, '3', '2021-05-15', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response. task not completed.', '2', '2', '', '1', '3', '', '2', '2021-05-17', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 03:17:09', 7, '2021-05-15 11:08:21', 0, NULL, 1),
(4840, 'Tattepally Mahesh', '5', '9705010863', '', 'mhshpandu90@gmail.com', '1993-05-06', 28, '2', '2', 'Sangaiah', 'farmer', 10000.00, 2, 0.00, 18000.00, 'hyderabad', 'shamshabad', '2105130011', '1', '1', 'upload_files/candidate_tracker/95266776097_Resume_Mahesh (1) (1).docx', NULL, '2', '2021-05-14', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for our profile', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-13 03:39:43', 50, '2021-05-15 12:17:58', 0, NULL, 1),
(4841, 'Ranjith M', '28', '9500731880', '', 'ranjithmoorthy1@gmail.com', '1997-08-09', 23, '2', '2', 'R moorthy', 'Bussiness', 15000.00, 1, 0.00, 15000.00, 'Arakkonam', 'Arakkonam', '2105130012', '1', '1', 'upload_files/candidate_tracker/37178721712_Ranjith Resume.docx', NULL, '2', '2021-05-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, Not open for Terms and Conditions will not sustain for a long', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 03:44:22', 7, '2021-05-17 10:46:30', 0, NULL, 1),
(4842, 'Yogesh Jhanjhottad', '5', '6302709984', '', 'yogeshpintoo42@gmail.com', '1997-04-20', 24, '2', '2', 'suresh', 'pvt employee', 25000.00, 3, 18500.00, 21000.00, 'hyderabad', 'rajendra nagar', '2105130013', '1', '2', 'upload_files/candidate_tracker/65695809765_resume_1611896675588.pdf', NULL, '2', '2021-05-14', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-13 03:52:48', 1, '2021-05-13 03:55:42', 0, NULL, 1),
(4843, 'Mohanapriya', '13', '7639882451', '9843298026', 'Mohanapriyashanmugam1998@gmail.com', '1998-03-12', 23, '2', '2', 'Shanmugam', 'Farmer', 25000.00, 1, 0.00, 3.00, 'Kallakurichi', 'Kallakurichi', '2105130014', '1', '1', 'upload_files/candidate_tracker/87406482510_Mohana\'s Resume-1.pdf', NULL, '3', '2021-05-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 04:21:55', 1, '2021-05-13 04:30:13', 0, NULL, 1),
(4844, 'Ajay Singh', '5', '8374164083', '', 'ajaysingh83741@gmail.com', '1999-08-31', 21, '2', '2', 'Heera Singh', 'Farmer', 40000.00, 1, 0.00, 25000.00, 'hyderabad', 'narayanguda', '2105130015', '1', '1', 'upload_files/candidate_tracker/57899030126_Document-WPS Office ByjusAjay (1).pdf', NULL, '2', '2021-05-14', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-13 04:35:59', 1, '2021-05-13 04:47:44', 0, NULL, 1),
(4845, 'b r kishore kumar', '28', '8637677719', '8428833685', 'kishoreit1721@gmail.com', '2000-04-16', 21, '2', '2', 'b r ravichandran', 'business', 30000.00, 2, 0.00, 15000.00, 'madurai', 'madurai', '2105130016', '1', '1', 'upload_files/candidate_tracker/57813607087_Kishore Resume.pdf', NULL, '3', '2021-05-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Looks much for Android opening,will not fit for DA/MIS Role\n', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 04:39:34', 1, '2021-05-15 10:45:42', 0, NULL, 1),
(4846, 'sai surya', '5', '9700814848', '', 'saisuryaanish@gmail.com', '1998-01-21', 23, '2', '2', '.JAGANNADHAM', 'working', 30000.00, 0, 24700.00, 30000.00, 'hyderabad', 'lb nagar', '2105130017', '1', '2', 'upload_files/candidate_tracker/99180016703_anish.pdf', NULL, '2', '2021-05-14', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Candidate not interested in insurance field\n', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-13 05:38:05', 1, '2021-05-13 05:48:51', 0, NULL, 1),
(4847, 'jerrymon', '13', '8015907505', '8870498145', 'jerrymon591@gmail.com', '1991-05-26', 29, '2', '1', 'ancilin margret', 'housewife', 25000.00, 0, 25000.00, 35000.00, 'marthandam', 'marthandam', '2105140001', '1', '2', 'upload_files/candidate_tracker/80188546782_jerrymon_WebDeveloper.docx', NULL, '3', '2021-05-15', 15, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He Already Got Job.', '2', '2', '', '1', '1', '', '2', '2021-05-20', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-14 11:14:06', 7, '2021-05-15 11:09:08', 0, NULL, 1),
(4848, '', '0', '9789931352', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105140002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-14 03:21:00', 0, NULL, 0, NULL, 1),
(4849, 'Vignesh. V', '16', '7010928121', '9962135417', 'vkeyvenkatesan@gmail.com', '1996-05-19', 24, '2', '2', 'Venkatesan.E', 'Technician', 16000.00, 1, 18000.00, 23000.00, 'Chennai', 'Chennai', '2105140003', '1', '2', 'upload_files/candidate_tracker/6010112107_Vignesh Resume.pdf', NULL, '2', '2021-05-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '2', '', '1', '3', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 03:22:04', 50, '2021-05-15 11:38:09', 0, NULL, 1),
(4850, 'Vanaraja', '16', '6383019288', '8680891839', 'vanaraja677@gmail.com', '1996-06-22', 24, '2', '2', 'Sekar c', 'Tea stall', 12.00, 2, 17500.00, 20.00, 'Thirumullaivayol, chennai', 'Thirumullaivayol, Chennai', '2105140004', '1', '2', 'upload_files/candidate_tracker/28731393460_2020-converted (2)-converted.pdf', NULL, '2', '2021-05-15', 4, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No, Looking only for WFH and to not open for the location up and down 40 kms', '3', '1', '', '1', '3', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 03:25:45', 50, '2021-05-15 11:37:57', 0, NULL, 1),
(4851, 'Prabhu', '16', '9600345862', '7397298882', 'prabhu.thecitizen@gmail.com', '1991-07-22', 29, '2', '1', 'Hemalatha', 'House wife', 20000.00, 1, 24000.00, 25000.00, 'Chennai', 'Chennai', '2105140005', '1', '2', 'upload_files/candidate_tracker/35162989276_Prabhu Resume-Apr 2021-Updated.pdf', NULL, '2', '2021-05-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 03:59:12', 50, '2021-05-15 11:38:22', 0, NULL, 1),
(4852, 'Rajuriaz R.', '16', '8056104893', '', 'rajuriaz008@gmail.com', '1993-10-02', 27, '2', '2', 'T Ramachandran', 'Assistant At Oriental Insurance', 37000.00, 1, 300000.00, 500000.00, 'Chennai', 'Chennai', '2105140006', '1', '2', 'upload_files/candidate_tracker/10677310366_CV_2021-04-20-122706.pdf', NULL, '2', '2021-05-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok, Will not sustain for a long, TCS Offered 4.5 LPA and looking only for Week off Job', '3', '2', '', '1', '3', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 04:05:33', 50, '2021-05-15 11:38:38', 0, NULL, 1),
(4853, 'bhagyaraj jakkamsetty', '5', '9000001332', '', 'bhagyaraj.jy@gmail.com', '1992-07-05', 28, '2', '2', 'venugopal rao', 'farmer', 50000.00, 1, 28000.00, 35000.00, 'hyderabad', 'begumpet', '2105140007', '1', '2', 'upload_files/candidate_tracker/38125856925_BhagyaRaj_Resume (1).pdf', NULL, '2', '2021-05-15', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended the interview', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 04:25:27', 1, '2021-05-14 04:28:39', 0, NULL, 1),
(4854, 'Kurmala charan teja sairam', '5', '9440217763', '', 'charanteja7763@gmail.com', '1994-08-09', 26, '2', '2', 'mohan rao', 'not working', 25000.00, 1, 25000.00, 25000.00, 'tenali', 'amirpet', '2105140008', '1', '2', 'upload_files/candidate_tracker/13585243171_Sai Resume.pdf', NULL, '2', '2021-05-15', 0, '', '4', '29', NULL, 0.00, '', '0', NULL, '1', 'Not 100% convinced so asked gaurav to take another round', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 04:42:55', 1, '2021-05-14 04:46:22', 0, NULL, 1),
(4855, 'Ilhan Ullah Khan', '5', '8801222960', '', 'ilhankhan7785@gmail.com', '1995-03-10', 26, '2', '2', 'sadatullahkhan', 'wager', 30000.00, 3, 15500.00, 16000.00, 'hyderabad', 'mehandhipatnam', '2105140009', '1', '2', 'upload_files/candidate_tracker/93091048824_ILHAN LATEST RESUME.pdf', NULL, '2', '2021-05-15', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended the interview', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 04:49:32', 1, '2021-05-14 04:52:30', 0, NULL, 1),
(4856, 'a amirta varsini', '28', '9842469619', '', 'amirtavarsini@gmail.com', '1999-06-23', 21, '2', '2', 's m. arunagiri', 'business', 200000.00, 1, 0.00, 20000.00, 'trichy', 'trichy', '2105140010', '1', '1', 'upload_files/candidate_tracker/73730809370_CV.docx', NULL, '3', '2021-05-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication OK Fresher With M.Sc Statistics, Need To Check Her Written Communication,but sustainability doubts on this profile\n', '3', '1', '0', '1', '1', '0', '2', '2021-05-24', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-14 04:53:27', 1, '2021-05-15 10:51:29', 0, NULL, 1),
(4857, 'prashanth', '28', '9940575783', '', 'prashanth7818@gmail.com', '1997-02-14', 24, '2', '2', 'gopal', 'cheif cashier', 80000.00, 1, 2.75, 3.20, 'Chennai', 'chennai', '2105140011', '1', '2', 'upload_files/candidate_tracker/42644410370_Prashnath Resume.pdf', NULL, '2', '2021-05-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok, Focused much into Data Science, and The Expected Salary is 3.2-3.5 LPA for 1+ yrs Exp', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 05:10:05', 50, '2021-05-15 11:38:54', 0, NULL, 1),
(4858, 'Mahesh P', '5', '7013969758', '9490579753', 'maheshpuli03@gmail.com', '1994-05-24', 26, '2', '2', 'narsaiah', 'farmer', 20000.00, 2, 0.00, 20000.00, 'hyderabad', 'secundarabad', '2105140012', '1', '1', 'upload_files/candidate_tracker/63027534838_Copy of MY RESUME.docx.pdf', NULL, '2', '2021-05-15', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for our profile and he was waiting for govt Job for the last 4 years.', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 05:23:07', 50, '2021-05-15 11:39:10', 0, NULL, 1),
(4859, '', '0', '8825689591', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105150001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-15 03:19:22', 0, NULL, 0, NULL, 1),
(4860, 'ayesha shameem', '4', '6379997290', '9597283759', 'fabbyheidy@gmail.com', '2000-11-12', 20, '2', '2', 'jaeer hussain', 'driver', 35000.00, 1, 0.00, 10000.00, 'tanjavur', 'tanjavur', '2105150002', '1', '1', 'upload_files/candidate_tracker/6717191363_Aisha New CV (5).docx', NULL, '2', '2021-05-12', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lockdown Period Hold Long Pending ', '1', '1', '', '1', '1', '', '2', '2021-06-08', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-15 09:55:22', 7, '2021-05-15 10:13:32', 0, NULL, 1),
(4861, 'niraimadhi', '4', '6383351757', '9944481163', 'niraimech3322@gmail.com', '1995-12-20', 25, '2', '2', 'AROKIYASAMY', 'conductor', 15000.00, 3, 0.00, 9000.00, 'tanjavur', 'Tanjavur', '2105150003', '1', '1', 'upload_files/candidate_tracker/15577690687_Niraimadhi.pdf', NULL, '2', '2021-05-05', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'already  joined Thanjavur Team', '1', '1', '', '1', '1', '', '2', '2021-06-08', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-15 10:20:42', 7, '2021-05-15 11:45:49', 0, NULL, 1),
(4862, 'gulshana reshma', '4', '9500563960', '9943895893', 'shanareshma0425@gmail.com', '2000-05-04', 21, '2', '2', 'Abdul Kuthoos R', 'driver', 30000.00, 1, 0.00, 10000.00, 'tanjavur', 'Gandhrava Kottai', '2105150004', '1', '1', 'upload_files/candidate_tracker/82094404866_Reshma.docx', NULL, '2', '2021-05-13', 0, '', '3', '8', '2021-06-02', 120000.00, '', '3', '2022-01-19', '2', 'For Sidhivinayagam Team CTC - 120000  Gross - 10k TH-9.5K', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-05-15 10:31:53', 60, '2022-12-17 04:39:22', 0, NULL, 1),
(4863, 'MOHAMED KHALITH P S', '2', '7395833148', '', 'halithmohamed91@gmail.com', '2000-02-13', 21, '2', '2', 'SHAHUL HAMEED', 'Bussiness', 15000.00, 2, 0.00, 25000.00, 'Kadayanallur', 'Kadayanallur', '2105150005', '1', '1', 'upload_files/candidate_tracker/17589243172_Mohamed', NULL, '3', '2021-05-15', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-15 10:42:24', 7, '2021-05-15 02:57:54', 0, NULL, 1),
(4864, 'keerthana', '4', '8825911707', '', 'keerthana3111999@gmail.com', '1999-01-31', 22, '2', '2', 'chanra sekaran', 'farmer', 15000.00, 2, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2105150006', '1', '1', 'upload_files/candidate_tracker/16479156342_keerthi resume 123.pdf', NULL, '2', '2021-05-12', 0, '', '3', '8', '2021-06-02', 120000.00, '', '', '1970-01-01', '1', ' For Sidhivinayagam Team CTC - 120000  Gross - 10k TH-9.5K', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-15 10:50:55', 7, '2021-05-15 11:12:34', 0, NULL, 1),
(4865, 'Lakshmi Prasanna Uppalapati', '28', '8668081079', '9361549628', 'lakshmiuppapalati10@gmail.com', '1998-05-23', 22, '2', '2', 'Srinuvasulu Uppalapati', 'Milk Business', 30000.00, 1, 0.00, 20000.00, '8/91, Gomatha nagar 1st street,thiruvottiyur.', '8/91, Gomatha Nagar 1st Street,Thiruvottiyur', '2105150007', '1', '1', 'upload_files/candidate_tracker/50375886865_Lakshmi Prasanna Uppalapati.pdf', NULL, '3', '2021-05-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Lcoation too Long,No clear focus on the career.Will not sustain for a long', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-15 11:48:26', 1, '2021-05-15 12:00:07', 0, NULL, 1),
(4866, 'Yasmin Nisha', '16', '9791015712', '9941271902', 'yasafzal@gmail.com', '1989-12-29', 31, '2', '1', 'Zaheeruddin', 'Data and reporting analyst', 80000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2105150008', '1', '2', 'upload_files/candidate_tracker/26093987797_Yasmin Resume.docx', NULL, '2', '2021-05-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok ,SA need to check with Husband not sure about her sustainability', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 12:09:04', 50, '2021-05-17 10:46:33', 0, NULL, 1),
(4867, 'Srikanth', '5', '7386526814', '9704641997', 'bodapatlasrikanth6@gmail.com', '1997-08-27', 23, '2', '2', 'srinivasan', 'passed away', 30000.00, 1, 23000.00, 25000.00, 'hyderabad', 'kukukatapalli', '2105150009', '1', '2', 'upload_files/candidate_tracker/66601744770_srikanth Resume.pdf', NULL, '2', '2021-05-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Selected for VEben, Discussed on the Salary and shared the breakup for the confirmation from the candidate,But he didnt turn and RNR', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 12:55:46', 1, '2021-05-15 01:01:03', 0, NULL, 1),
(4868, 'Rushikesh Thanduri', '5', '7997104145', '9347743571', 'rushikesh.thanduri28@gmail.com', '1999-08-28', 21, '2', '2', 'srinivas', 'farmer', 12000.00, 1, 10000.00, 20000.00, 'hyderabad', 'sanath nagar', '2105150010', '1', '2', 'upload_files/candidate_tracker/20721128012_Chinnu@resume.docx', NULL, '2', '2021-05-17', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '2', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 01:05:16', 1, '2021-05-15 01:08:00', 0, NULL, 1),
(4869, 'MUKESH J', '16', '9884944413', '', 'mukesh_j91@yahoo.in', '1991-01-01', 30, '2', '2', 'JAYAPAL', 'NIL', 10000.00, 1, 15000.00, 20000.00, 'Perambur', 'Perambur', '2105150011', '1', '2', 'upload_files/candidate_tracker/66911296003_Mukesh Resume V1.docx', NULL, '3', '2021-05-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,Got another offer and not open for F2F', '3', '1', '', '1', '1', '', '2', '2021-05-18', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 01:38:54', 50, '2021-05-17 10:46:50', 0, NULL, 1),
(4870, 'rajesh vishwanadh', '5', '7842142588', '', 'rajeshvishwanadh176@gmail.com', '1996-01-01', 25, '2', '1', 'saritha', 'icici bank asst manager', 40000.00, 2, 16000.00, 18000.00, 'hyderabad', 'gachobowli', '2105150012', '1', '2', 'upload_files/candidate_tracker/59668315896_1619891716960_1619622770453_1615963237461_1615005634919_1614781993915_pavani a2.pdf', NULL, '2', '2021-05-17', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 01:52:10', 1, '2021-05-15 01:56:21', 0, NULL, 1),
(4871, 'Sairam Vinjamuri', '5', '9182824491', '', 'ramvinjamuri22@gmail.com', '1996-07-08', 24, '2', '2', 'paramesh', 'optical shop', 20000.00, 1, 25000.00, 30000.00, 'hyderabad', 'sr nagar', '2105150013', '1', '2', 'upload_files/candidate_tracker/3003465535_Resume old format.docx', NULL, '2', '2021-05-17', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 02:58:38', 1, '2021-05-15 03:01:20', 0, NULL, 1),
(4872, 'Chinnu Kranthi', '5', '8801213492', '', 'chinnu.kranthi007@gmail.com', '1995-06-28', 25, '2', '2', 'k.thimothy', 'govt employee', 80000.00, 1, 22000.00, 25000.00, 'hyderabad', 'beeramguda', '2105150014', '1', '2', 'upload_files/candidate_tracker/63691302921_Chinnu@resume.docx', NULL, '2', '2021-05-17', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 03:27:07', 1, '2021-05-15 03:30:10', 0, NULL, 1),
(4873, 'prabu', '4', '8838530755', '9003704594', 'samprabhumathias222@gmail.com', '1997-11-29', 23, '2', '2', 'mathias', 'security', 15000.00, 1, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2105150015', '1', '1', 'upload_files/candidate_tracker/91826490739_prabu.pdf', NULL, '2', '2021-05-14', 0, '', '3', '8', '2021-06-02', 120000.00, '', '', '1970-01-01', '1', ' For Sidhivinayagam Team CTC - 120000  Gross - 10k TH-9.5K', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-15 04:08:18', 7, '2021-05-15 05:56:57', 0, NULL, 1),
(4874, 'sachin c', '2', '6385124808', '', 'sachinkuravan1996@gmail.com', '1996-10-12', 24, '2', '2', 'chakarapani', 'bussiness', 40000.00, 0, 0.00, 25000.00, 'cheennai', 'chennai', '2105150016', '1', '1', 'upload_files/candidate_tracker/9386642743_Sachin resume-doc.docx', NULL, '3', '2021-05-17', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-15 04:16:41', 60, '2021-05-17 01:43:26', 0, NULL, 1),
(4875, 'Ramya', '4', '9840538664', '9566134531', 'ramyaravi05072001@gmail.com', '2001-05-07', 20, '2', '2', 'ravi chandran', 'attender', 8000.00, 1, 0.00, 10000.00, 'redhills', 'redhills', '2105150017', '1', '1', 'upload_files/candidate_tracker/7868033459_NANDHINI 29-03-2021.pdf', NULL, '2', '2021-05-11', 0, '', '3', '59', '2021-06-10', 120000.00, '', '', '1970-01-01', '2', 'Selected for Tiruvallur Location in Cash mode with CTC 120000', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-15 04:25:36', 7, '2021-05-15 05:57:11', 0, NULL, 1),
(4876, '', '0', '9655043808', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105150018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-15 06:11:52', 0, NULL, 0, NULL, 1),
(4877, 'Shivani', '13', '9655403808', '6381871687', 'rameshshivani165@gamil.com', '1997-04-14', 24, '2', '2', 'Ramesh', 'Beedu', 5000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2105150019', '1', '1', 'upload_files/candidate_tracker/32098574054_Srivani.pdf', NULL, '3', '2021-05-17', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude is not good. she doesxquott know basics.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-15 06:47:34', 1, '2021-05-17 05:43:40', 0, NULL, 1),
(4878, 'Soniya G', '13', '7708834862', '9843535147', 'Soniyagovindan731@gmail.com', '2000-01-04', 21, '2', '2', 'Govindan R', 'Weaver', 20000.00, 4, 0.00, 300000.00, 'Vellore', 'Vellore', '2105150020', '1', '1', 'upload_files/candidate_tracker/38618655861_Soniya G Resume.pdf', NULL, '2', '2021-05-17', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'could not complete the task.', '2', '1', '', '1', '1', '', '2', '2021-05-24', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-15 08:03:19', 1, '2021-05-17 05:47:00', 0, NULL, 1),
(4879, 'Ranjith M', '28', '8903497250', '', 'ranjithmoorthy1@gmail.com', '1997-08-09', 23, '2', '2', 'Moorthy', 'Bussiness', 15000.00, 1, 0.00, 18000.00, 'Arakkonam', 'Arakkonam', '2105160001', '1', '1', 'upload_files/candidate_tracker/42540478923_Ranjith Resume.docx', NULL, '3', '2021-05-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-16 02:46:47', 1, '2021-05-16 02:50:20', 0, NULL, 1),
(4880, 'Priyanka S', '28', '8248121180', '', '6th.priyasrinivasan4268@gmail.com', '1999-04-06', 22, '2', '2', 'Srinivasan A', 'Gunny business', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2105170001', '1', '1', 'upload_files/candidate_tracker/67796361594_Resume-cheeku.docx', NULL, '3', '2021-05-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our Role, Focus into IT Database Management,Withour clear info about  the profile she applied for the opening', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 09:56:05', 1, '2021-05-17 10:10:00', 0, NULL, 1),
(4881, 'Jegan chandran', '13', '9965856060', '', 'jegancs12@gmail.com', '1997-04-12', 24, '2', '2', 'Chandran', 'Farmer', 15000.00, 3, 15000.00, 25000.00, 'Ramanathapuram', 'Ramanathapuram', '2105170002', '1', '2', 'upload_files/candidate_tracker/65877619711_jegan_resume__1_.docx.pdf', NULL, '3', '2021-05-18', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'tried too many times. no response from him. ', '2', '1', '0', '1', '1', '0', '2', '2021-05-27', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 10:30:36', 1, '2021-05-17 10:51:38', 0, NULL, 1),
(4882, 'lathif s', '16', '8124053608', '9043452813', 'lathifslm@gmail.com', '2006-05-17', 0, '2', '2', 'm a salam', 'executive', 20000.00, 1, 280000.00, 340000.00, 'chennai', 'chennai', '2105170003', '1', '2', 'upload_files/candidate_tracker/38921668897_latest lath resume.docx', NULL, '2', '2021-05-18', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'interviewed by Gokul \ncandidate not good in excel\nhaving 4 year exp and expected salary is a also high\ngood communication', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 11:09:51', 50, '2021-05-18 12:42:48', 0, NULL, 1),
(4883, 'Haritha S', '28', '7358007702', '', 'harithas735@gmail.com', '2000-01-20', 21, '2', '2', 'S.Suresh Babu', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'Urappakkam', 'Urappakkam', '2105170004', '1', '1', 'upload_files/candidate_tracker/29169492353_Haritha resume.pdf', NULL, '3', '2021-05-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok,Sustainability Doubts and handling the pressure doubts on this profile,fresher profile', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 11:46:15', 1, '2021-05-17 11:55:26', 0, NULL, 1),
(4884, 'Senthilvel', '3', '9789509829', '9444729430', 'senthilve2@gmail.com', '1986-05-23', 34, '2', '1', 'Lavanya', 'IT', 240000.00, 1, 20000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2105170005', '1', '2', 'upload_files/candidate_tracker/26159567722_Resume Modified1 (11) (2) (1).docx', NULL, '3', '2021-05-18', 15, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Profile will not suitable for us.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 12:17:47', 1, '2021-05-17 12:23:06', 0, NULL, 1),
(4885, 'dhivakar j', '13', '9943044155', '', 'dhiva1902@gmail.com', '1997-02-19', 24, '2', '2', 'jebakumar', 'business', 12000.00, 0, 0.00, 13000.00, 'vandalur', 'tuticorin', '2105170006', '1', '2', 'upload_files/candidate_tracker/47339902963_Php_resume_exp_dhiva_(1)4 (4).docx', NULL, '3', '2021-05-21', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Tried too many times. no response.', '2', '1', '', '1', '1', '', '2', '2021-05-27', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 12:51:11', 7, '2021-05-21 01:09:44', 0, NULL, 1),
(4886, 'MURUGAN L', '13', '9003984795', '', 'murugansj95@gmail.com', '1998-05-31', 22, '2', '1', 'PUNITHA', 'Not yet', 100.00, 0, 0.00, 15000.00, 'Kallakurichi', 'Channai duraipakkam', '2105170007', '1', '1', 'upload_files/candidate_tracker/74935927661_murug.pdf', NULL, '3', '2021-05-18', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'task not completed.', '2', '1', '0', '1', '1', '0', '2', '2021-05-19', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 01:43:38', 1, '2021-05-17 01:48:51', 0, NULL, 1),
(4887, 'KATKOORI.SURESH', '5', '8978201028', '', 'katkoorisuresh8@gmail.com', '1997-08-14', 23, '2', '2', 'venkataswamy', 'daily wager', 25000.00, 2, 16000.00, 18000.00, 'hyderabad', 'uppal', '2105170008', '1', '2', 'upload_files/candidate_tracker/55949607515_KATKOORI SURESH (1).pdf', NULL, '2', '2021-05-18', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 02:43:24', 1, '2021-05-17 02:46:25', 0, NULL, 1),
(4888, 'Koppula Anudeep Reddy', '5', '9493400580', '', 'deepukoppula92@gmail.com', '1992-06-02', 28, '2', '1', 'ravinder', 'farmer', 30000.00, 1, 22000.00, 30000.00, 'hyderabad', 'uppal', '2105170009', '1', '2', 'upload_files/candidate_tracker/74632763310_Anudeep Resume (1).docx', NULL, '2', '2021-05-18', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Old lead need to verfiy', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 02:51:46', 1, '2021-05-17 02:54:42', 0, NULL, 1),
(4889, 'Shashank Reddy Nyalakonda', '5', '9182792925', '', 'nshashankreddy7@gmail.com', '1995-05-25', 25, '2', '2', 'srinivas reddy', 'farmer', 45000.00, 0, 13000.00, 20000.00, 'hyderabad', 'kuketpally', '2105170010', '1', '2', 'upload_files/candidate_tracker/46058112054_1617302226227Resume_Shashank.pdf', NULL, '2', '2021-05-18', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 03:05:51', 1, '2021-05-17 03:08:20', 0, NULL, 1),
(4890, 'G VEERENDAR REDDY', '5', '8523085856', '', 'veerendarreddy1196@gmail.com', '1996-01-16', 25, '2', '2', 'ravinderreddy', 'driver', 40000.00, 1, 13500.00, 15000.00, 'hyfderabad', 'uppal', '2105170011', '1', '2', 'upload_files/candidate_tracker/23380303244_G VEERENDAR REDDY-resume.pdf', NULL, '2', '2021-05-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Insurance Sales', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 03:23:01', 1, '2021-05-17 03:25:07', 0, NULL, 1),
(4891, 'BABU CHIRANJEEVI JAGARLA', '5', '9885715727', '9440020247', 'chiranjeevijagarla111@gmail.com', '1997-02-24', 24, '2', '2', 'hanumaiah', 'passed away', 30000.00, 2, 15000.00, 20000.00, 'hyderabad', 'madhapur', '2105170012', '1', '2', 'upload_files/candidate_tracker/48783429922_CV_2021-05-17-033726.pdf', NULL, '2', '2021-05-18', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 03:39:29', 1, '2021-05-17 03:42:32', 0, NULL, 1),
(4892, 'saikumar parikipandla', '5', '9003049894', '', 'saikumarkkrprojects@gmail.com', '1994-01-01', 27, '2', '2', 'ramu', 'pvt employee', 60000.00, 1, 30000.00, 25000.00, 'hyderabad', 'malkajgiri', '2105170013', '1', '2', 'upload_files/candidate_tracker/43675433272_CCRMRESUME OF P SAIKUMAR (1).pdf', NULL, '2', '2021-05-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'His overall 5+ Experience in the Construction domain and attended few interviews in the same construction domain, for time being he looks for other domains. His last drawn package was 33K gross. Sustainability doubt on this profile. No Laptop Bike is there almost 17 kms from his location', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 03:49:14', 1, '2021-05-17 03:52:36', 0, NULL, 1),
(4893, 'Nemalipuri jagadeesh Chandra', '13', '9398290227', '8886086879', 'jagadeeshchandra1794@gmail.com', '1999-06-04', 21, '2', '2', 'Lakshmi', 'Farmer', 7000.00, 2, 0.00, 20000.00, 'Ongole', 'Ongole', '2105170014', '1', '1', 'upload_files/candidate_tracker/64689665626_resume 2.pdf', NULL, '3', '2021-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 03:58:03', 1, '2021-05-17 04:09:31', 0, NULL, 1),
(4894, 'aarthi rajendran', '16', '8870775270', '', 'aarthi2696@gmail.com', '1996-05-26', 24, '4', '2', 'rajendran', 'business', 85000.00, 1, 200000.00, 280000.00, 'Chennai', 'Chennai', '2105170015', '', '2', 'upload_files/candidate_tracker/32585836841_Aarthi Rajendran--.pdf', NULL, '2', '2021-05-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok ,from mogappair but not sure  on her sustainability', '3', '1', '0', '1', '1', '0', '2', '2021-05-19', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-17 04:12:28', 1, '2021-05-17 04:16:34', 0, NULL, 1),
(4895, 'sriram s', '13', '9342119493', '7540035163', 'sriramsure25@gmail.com', '1997-01-25', 24, '2', '2', 'suresh kumar', 'driver', 30000.00, 1, 15000.00, 25000.00, 'madurai', 'chennai', '2105170016', '1', '2', 'upload_files/candidate_tracker/86888405924_Sriram S.docx', NULL, '3', '2021-05-21', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task not completed. His task look like fresher task. we can consider this candidate as a fresher only..', '2', '2', '', '1', '1', '', '2', '2021-05-27', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 04:19:30', 7, '2021-05-21 01:10:34', 0, NULL, 1),
(4896, 'venkatesan p', '13', '9087718477', '', 'venkateshthiru94@gmail.com', '1994-05-04', 27, '2', '2', 'palani', 'farmer', 25000.00, 3, 15000.00, 25000.00, 'krishnagiri', 'chennai', '2105170017', '1', '2', 'upload_files/candidate_tracker/5366306482_Venkatesan.P.pdf', NULL, '3', '2021-05-21', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task not completed.', '2', '1', '', '1', '1', '', '2', '2021-05-31', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 04:31:19', 7, '2021-05-21 01:11:11', 0, NULL, 1),
(4897, 'manimaran s', '16', '7010786071', '', 'syedmaran1425@yahoo.com', '1993-08-01', 27, '2', '2', 'selvam', 'daily worker', 20000.00, 2, 275000.00, 375000.00, 'Srivilliputtur', 'chennai', '2105170018', '1', '2', 'upload_files/candidate_tracker/73058556210_mani.pdf', NULL, '2', '2021-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 04:37:46', 1, '2021-05-17 04:44:44', 0, NULL, 1),
(4898, 'R.G.PRIYADHARSHINI', '16', '9384659720', '', 'ppriyadharshini1295@gmail.com', '1995-09-12', 25, '3', '1', 'R.RAMACHANDIRARAJA', 'RETAIL SUPPORTER', 20000.00, 1, 10000.00, 20000.00, '4B,Naramada street,Nemilicherry,Chrompet-44', '4B,Narmada street,Nemilicherry,Chrompet-44', '2105170019', '', '2', 'upload_files/candidate_tracker/38691811346_Updated Resume 16.04.2021.docx', NULL, '3', '2021-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-17 04:47:37', 1, '2021-05-17 04:59:43', 0, NULL, 1),
(4899, 'Mathisuthanan', '13', '9786009750', '', 'suthanravi435@gmail.com', '1995-02-19', 26, '2', '2', 'Shanthi', 'Police', 50000.00, 1, 0.00, 20000.00, 'Orathanadu', 'Orathanadu', '2105170020', '1', '1', 'upload_files/candidate_tracker/59617263549_MATHISUTHANAN-resume (2).pdf', NULL, '3', '2021-05-18', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'task not completed.', '2', '1', '0', '1', '1', '0', '2', '2021-05-19', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 06:41:26', 1, '2021-05-18 10:13:34', 0, NULL, 1),
(4900, 'balamurugan', '13', '8300660043', '', 'balamuruganmca96@gmail.com', '1996-06-07', 24, '2', '2', 'nill', 'laravel full stack developer', 30000.00, 0, 18900.00, 35000.00, 'dharmapuri dt', 'dharmapuri dt', '2105170021', '1', '2', 'upload_files/candidate_tracker/92309040478_Balamurugan Resume.pdf', NULL, '3', '2021-05-18', 2, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'no response past 1 week.', '2', '1', '0', '1', '1', '0', '2', '2021-05-22', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 07:01:35', 1, '2021-05-17 07:07:16', 0, NULL, 1),
(4901, 'Rathinavel', '13', '9095334372', '6374466033', 'Rathinavel.r22@gmail.com', '1993-08-22', 27, '2', '2', 'Rathinasabapathy', 'Security', 23000.00, 0, 18000.00, 28000.00, 'Pondicherry', 'Pondicherry', '2105170022', '1', '2', 'upload_files/candidate_tracker/65176416957_Rathinavel php 2020.pdf', NULL, '3', '2021-05-26', 20, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not good in basics.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 07:02:22', 7, '2021-05-26 03:52:29', 0, NULL, 1),
(4902, 'suganthi', '13', '9003970098', '', 'suganthi9608@gmail.com', '1996-08-29', 24, '2', '2', 'ramu', 'farmer', 20000.00, 1, 20000.00, 30000.00, 'bajanai koil street', 'melmaruvathur', '2105170023', '1', '2', 'upload_files/candidate_tracker/2416133478_Resume_suganthi.pdf', NULL, '3', '2021-05-18', 3, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'She is looking for work from home only.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 08:30:49', 1, '2021-05-17 08:41:04', 0, NULL, 1),
(4903, 'jerome raja', '13', '8072239661', '', 'c.r.jerome4995@gmail.com', '1995-07-04', 25, '2', '2', 'ravi', 'business', 20000.00, 1, 25000.00, 35000.00, 'PARAMAKUDI', 'PARAMAKUDI', '2105180001', '1', '2', 'upload_files/candidate_tracker/23014205958_jerome--Resume.pdf', NULL, '3', '2021-05-21', 15, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected by sabeha.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-18 09:50:41', 7, '2021-05-21 01:11:49', 0, NULL, 1),
(4904, 'Anurag Kumar', '2', '8939911648', '8939911652', 'anuragkrs126@gmail.com', '1999-06-12', 21, '2', '2', 'Shishu devi', 'Home maker', 150000.00, 4, 0.00, 25000.00, 'Chennai', 'Chennai', '2105180002', '1', '1', 'upload_files/candidate_tracker/31843676885_Resume-1.pdf', NULL, '2', '2021-05-20', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-18 12:45:45', 60, '2021-05-20 12:28:21', 0, NULL, 1),
(4905, '', '0', '7358747522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105180003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-18 01:58:42', 0, NULL, 0, NULL, 1),
(4906, 'AlHamid Sultan', '23', '9176370789', '', 'alhameed66@hotmail.com', '1993-12-10', 27, '2', '2', 'fazal ahamed', 'nil', 20000.00, 1, 0.00, 180000.00, 'Chennai', 'Chennai', '2105180004', '1', '1', 'upload_files/candidate_tracker/31356846297_Al Hamid_Resume.pdf', NULL, '3', '2021-05-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task given. Task Completed. Not up to the level', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-18 02:16:51', 7, '2021-06-01 11:59:45', 0, NULL, 1),
(4907, 'Mary Nisha P', '13', '9884032603', '', 'Nishanathan2305@gmail.com', '1999-06-05', 21, '2', '2', 'Parthi Nathan A', 'Building contractor', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2105180005', '1', '1', 'upload_files/candidate_tracker/53307808641_Resume.pdf', NULL, '3', '2021-05-21', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is not interested.', '2', '1', '', '1', '1', '', '2', '2021-05-22', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-18 03:36:07', 7, '2021-05-21 01:12:16', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4908, 'Vijay Kumar Jampala', '5', '8897409740', '9703144166', 'jampalavijay2244@gmail.com', '1999-08-07', 21, '2', '2', 'srinivas', 'late', 50000.00, 2, 28000.00, 30000.00, 'hyderabad', 'mallapur', '2105180006', '1', '2', 'upload_files/candidate_tracker/51456578485_Vijay new resume_Entry Level Resume – 01 (1).pdf', NULL, '2', '2021-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-18 03:37:41', 1, '2021-05-18 03:40:51', 0, NULL, 1),
(4909, 'GADDAM KRANTHI KUMAR', '5', '9014272213', '9493885813', 'Gaddamkranthikumar836@gmail.com', '1994-03-15', 27, '2', '2', 'narsimha', 'labour', 25000.00, 1, 22000.00, 25000.00, 'hyderabad', 'hyath nagar', '2105180007', '1', '2', 'upload_files/candidate_tracker/2267001364_document_cv_6848 (1).pdf', NULL, '2', '2021-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-18 03:44:44', 1, '2021-05-18 03:47:50', 0, NULL, 1),
(4910, 'P. Koushika', '28', '9840641216', '', 'Koushi1604@gmail.com', '2001-04-16', 20, '2', '2', 'Prasanna venkatesan', 'Business', 1500.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2105180008', '1', '1', 'upload_files/candidate_tracker/29903448073_Koushika_Resume (1).pdf', NULL, '3', '2021-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-18 04:33:27', 1, '2021-05-18 04:38:20', 0, NULL, 1),
(4911, 'Shaik Sandani', '5', '9985877637', '8143495979', 'shaiksandani333@gmail.com', '1997-08-15', 23, '2', '2', 'shairabbami', 'late', 30000.00, 2, 19000.00, 24000.00, 'hyderabad', 'medchand', '2105180009', '1', '2', 'upload_files/candidate_tracker/13481761721_SANDANI RESUME .pdf', NULL, '2', '2021-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-18 04:38:06', 1, '2021-05-18 04:41:25', 0, NULL, 1),
(4912, 'Vidhya Bharathi', '16', '8754356112', '9965678416', 'vidhyakarnan.k@gmail.com', '1996-06-26', 24, '2', '2', 'Karnan', 'Farmer', 10000.00, 1, 14000.00, 19000.00, 'Thanjavur', 'Chennai', '2105180010', '1', '2', 'upload_files/candidate_tracker/30488551448_vidhya@4477.docx', NULL, '2', '2021-05-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average, Not open for the SA and she is very clear on the sustainability long stay', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-18 04:38:36', 50, '2021-05-19 10:35:53', 0, NULL, 1),
(4913, 'Raja. P', '16', '9789982355', '9566302577', 'rajap0789@gmail.com', '1989-05-07', 32, '2', '1', 'Shobana', 'House Wife', 26000.00, 3, 26000.00, 30000.00, 'Arasur Village, chengkalpattu district', 'No, 2,2nd Lane, sowcarpet, chennai _79', '2105180011', '1', '2', 'upload_files/candidate_tracker/60877790713_Raja_Resume_MIS Assistant.pdf', NULL, '2', '2021-05-19', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication  Average, Will not sustain in our domain and his focus into FMCG only', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-18 04:54:00', 50, '2021-05-19 10:36:03', 0, NULL, 1),
(4914, 'Revathi Ekambaram', '5', '6305472152', '', 'jammirevathirevs@gmail.com', '1998-02-13', 23, '2', '2', 'rangareddy', 'farmer', 15000.00, 2, 16000.00, 18000.00, 'hyderabad', 'jeedimetla', '2105180012', '1', '2', 'upload_files/candidate_tracker/36363800992_Revathi.pdf', NULL, '2', '2021-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-18 04:54:50', 1, '2021-05-18 04:57:20', 0, NULL, 1),
(4915, '', '0', '7923607053', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105180013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-18 05:14:53', 0, NULL, 0, NULL, 1),
(4916, 'sheik abrar', '6', '7358930990', '9047171811', 'shaikhabrar16s@gmail.com', '1998-02-16', 23, '2', '2', 'shaik kasim', 'self employed', 30000.00, 3, 0.00, 15000.00, 'thiruvanamalai', 'guindy', '2105190001', '1', '1', 'upload_files/candidate_tracker/19257168062_ABRAR RESUME T1-converted (1).pdf', NULL, '3', '2021-05-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', '6m in JD and now in native, expt is 14-15k. basically from mumbai settled in thiruvannamalai. father running a hotel, driver in Dubai. too much attitude.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-19 09:48:11', 1, '2021-05-19 10:05:25', 0, NULL, 1),
(4917, 'vinoth k', '4', '8754342430', '7418893871', 'Vinothmahi29@gmail.com', '1997-04-29', 24, '2', '2', 'kumar', 'construction', 20000.00, 1, 0.00, 10000.00, 'tanjavur', 'tanjavur', '2105190002', '1', '1', 'upload_files/candidate_tracker/69195602474_1_CURRENT CV.docx', NULL, '2', '2021-05-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling, very native lang. will not suite for sales profie.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-19 10:08:56', 1, '2021-05-19 10:17:05', 0, NULL, 1),
(4918, 'saranya s', '4', '6384728170', '', 'kannansaranya104@gmail.com', '2000-06-08', 20, '2', '2', 'selvakannan', 'photographer', 20000.00, 2, 0.00, 10000.00, 'madurai', 'palavaram', '2105190003', '1', '1', 'upload_files/candidate_tracker/23697114620_SARANYA.docx', NULL, '2', '2021-05-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'bba in airlines and 2yr training in chennai airport, not speaking up, from madurai sty in pallavaram.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-19 10:20:59', 1, '2021-05-19 10:24:45', 0, NULL, 1),
(4919, 'dharani dharan', '4', '8072101271', '', 'dharani8098@gmail.com', '1997-01-04', 24, '2', '2', 'chokalingam', 'business', 15000.00, 2, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2105190004', '1', '1', 'upload_files/candidate_tracker/78812394315_Dharani Resume.pdf', NULL, '2', '2021-05-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1.5yr exp in qc, will not suite for sales, expt is 15k.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-19 10:26:23', 1, '2021-05-19 10:34:30', 0, NULL, 1),
(4920, 'Mani bharathi T', '23', '9884681179', '', 'manibharathi6509@gmail.com', '1993-08-19', 27, '2', '2', 'Thinakaran', 'Farmer', 35000.00, 2, 24000.00, 40000.00, 'Tenkasi', 'Tenkasi', '2105190005', '1', '2', 'upload_files/candidate_tracker/12814183608_Mani_Bharathi_T_UI_Developer_Resume.docx', NULL, '3', '2021-05-19', 15, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task In completed', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-19 10:33:08', 7, '2021-06-02 03:10:08', 0, NULL, 1),
(4921, 'rajeshwari', '4', '9629154966', '', 'rajeshwarisundaresan9923@gmail.com', '1999-06-23', 21, '2', '2', 'sunderasan', 'business', 15000.00, 1, 0.00, 12000.00, 'thiruvallu', 'thiruvallur', '2105190006', '1', '1', 'upload_files/candidate_tracker/55133283506_Resume - Rajeshwari - Copy.pdf', NULL, '2', '2021-05-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'done her bba ntr. worked in same fielf for past 1.5yr, planning to do her higher study and felt over pressure so reliver from the job 16k, will not sustain and expt is 15-17k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-19 10:41:15', 50, '2021-05-19 11:29:18', 0, NULL, 1),
(4922, 'mukesh', '4', '9944914865', '9944914866', 'mail2mukesh22@gmail.com', '1993-04-22', 28, '2', '2', 'Karunanithi', 'business', 15000.00, 1, 0.00, 10000.00, 'pondichery', 'chennai', '2105190007', '1', '1', 'upload_files/candidate_tracker/96558234029_Mukesh resume (2020).doc', NULL, '2', '2021-05-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-19 12:17:51', 1, '2021-05-19 12:26:01', 0, NULL, 1),
(4923, 'Divyadharshini', '13', '9940144077', '9840728107', 'divshadharshini@gmail.com', '1999-09-14', 21, '2', '2', 'Ethirajan', 'CNC machine operator', 50000.00, 1, 0.00, 18000.00, 'No 1/1,Jeer lane, saidapet,chennai 15', 'chennai', '2105190008', '1', '1', 'upload_files/candidate_tracker/21016749073_web 1_one ResuMEEE.pdf', NULL, '3', '2021-05-21', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected. we can take it as a fresher. same terms applicable.', '2', '1', '', '1', '1', '', '2', '2021-05-22', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-19 12:33:32', 7, '2021-05-21 01:13:00', 0, NULL, 1),
(4924, '', '0', '9176203740', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105190009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-19 01:23:46', 0, NULL, 0, NULL, 1),
(4925, 'Manda Chandrasekhar', '5', '9492229761', '6309276305', 'chandrasekhar96400@gmail.com', '1995-08-10', 25, '2', '2', 'pitchaiah', 'farmer', 15000.00, 1, 21000.00, 25000.00, 'hyderabad', 'amirpet', '2105190010', '1', '2', 'upload_files/candidate_tracker/60589579369_Resume (6).pdf', NULL, '2', '2021-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication, not much suits for our position, already he got an offer and not interested being the same into sales', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-19 02:32:58', 1, '2021-05-19 02:36:29', 0, NULL, 1),
(4926, 'Jaya Krishna Kumar S', '28', '8189818239', '', 'sjayakrishnakumars@gmail.com', '1995-12-24', 25, '2', '2', 'singaravelavan s', 'salesman', 20000.00, 1, 160000.00, 260000.00, 'Chennai', 'Chennai', '2105190011', '1', '2', 'upload_files/candidate_tracker/12235465224_Jaya Krishna Kumar Resume.pdf', NULL, '3', '2021-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication, He is into Quality Check  no Excel knowledge. Sustainability  doubt  for our role', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-19 02:38:58', 1, '2021-05-19 02:55:09', 0, NULL, 1),
(4927, 'Javeed Khan', '5', '9010719163', '', 'javeedkhan0432@gmail.com', '1996-09-23', 24, '2', '2', 'majith khan', 'dubai working', 40000.00, 2, 0.00, 25000.00, 'hyderabad', 'mehandhi patnam', '2105190012', '1', '1', 'upload_files/candidate_tracker/17403190464_JAVEED RESUME.docx', NULL, '2', '2021-05-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-19 03:32:53', 1, '2021-05-19 03:35:40', 0, NULL, 1),
(4928, 'M DESHIK', '5', '9966580205', '', 'deshik.dsk777@gmail.com', '1997-08-19', 23, '2', '2', 'sivashankar m', 'police officer', 55000.00, 1, 0.00, 18000.00, 'hyderabad', 'dilshuk nagar', '2105190013', '1', '1', 'upload_files/candidate_tracker/24025945234_DESHIK PROFILE - Google Docs.pdf', NULL, '2', '2021-05-20', 0, '', '3', '60', '2021-06-02', 250000.00, '', '4', '2021-06-09', '1', 'Selected for Veben Team with CTC - 2.5 LPA includes PF/PT', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-19 03:59:41', 60, '2021-06-01 03:55:34', 0, NULL, 1),
(4929, 'RAGHU PASUPULA', '5', '6301836795', '', 'raghupaspula99@gmail.com', '1996-07-02', 24, '2', '2', 'sushmaiah', 'head constable', 40000.00, 2, 0.00, 25000.00, 'hyderabad', 'amirpet', '2105190014', '1', '1', 'upload_files/candidate_tracker/25665427630_Resume1.docx', NULL, '2', '2021-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication Fresher Profile, will not suit our role.No idea on our domain. Already got an offer for 17Gross and looks for something more.will not sustain for a long', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-19 04:20:05', 1, '2021-05-19 04:22:59', 0, NULL, 1),
(4930, 'Manda Druvakumar', '5', '7989245494', '', 'mandadruvakumar@gmail.com', '1998-04-06', 23, '2', '2', 'venkanna', 'farmer', 12000.00, 1, 0.00, 10000.00, 'hyderabad', 'ramanthapur', '2105190015', '1', '1', 'upload_files/candidate_tracker/98343855248_1612415946846Resume_Manda.docx', NULL, '2', '2021-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No response to the calls', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-19 04:41:56', 1, '2021-05-19 04:44:49', 0, NULL, 1),
(4931, '', '0', '8639194304', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105190016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-19 05:11:27', 0, NULL, 0, NULL, 1),
(4932, 'mohammed mudasir ali', '5', '8801626272', '6300497125', 'mdmudasirmujju444@gmail.com', '1996-06-11', 24, '2', '2', 'mohammed muqthar', 'civil engg', 50000.00, 2, 18000.00, 20000.00, 'hyderabad', 'malakpet', '2105190017', '1', '2', 'upload_files/candidate_tracker/71237003647_mohammed mudasir ali.pdf', NULL, '2', '2021-05-20', 0, '', '3', '8', '2021-05-24', 275000.00, '', '5', '1970-01-01', '1', 'For Veben Team Hyderabad. 2.75L Ctc, 22917 MCTC And 19316.6 As Net. With Pf/PT', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-19 05:16:39', 7, '2021-05-24 12:23:12', 0, NULL, 1),
(4933, 'Padmini Vijayakumar', '13', '9789672434', '9789782965', 'vinithavijay1306@gmail.com', '1999-06-13', 21, '2', '2', 'Revathi', 'House wife', 15000.00, 1, 6000.00, 15000.00, 'Villupuram', 'Villupuram', '2105190018', '1', '2', 'upload_files/candidate_tracker/50594888271_Padmini Resume1.pdf', NULL, '3', '2021-05-21', 30, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Task Completed. Potential Candidate. we can offer 8k take home. She need to lead his family.', '2', '1', '0', '1', '1', '0', '2', '2021-05-22', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-19 05:51:41', 1, '2021-05-19 05:56:02', 0, NULL, 1),
(4934, 'parimala', '4', '8925339227', '9626027924', 'kcramilaofficial@gmail.com', '1998-09-01', 22, '2', '2', 'kumar', 'mechanic', 10000.00, 0, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2105200001', '1', '1', 'upload_files/candidate_tracker/22462146688_pramilaB.E.pdf', NULL, '2', '2021-05-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-20 11:23:11', 1, '2021-05-20 11:28:39', 0, NULL, 1),
(4935, 'manikandan e', '2', '9488488985', '6382731592', 'manied116@gmail.com', '1999-06-11', 21, '2', '2', 'elumalai', 'farmer', 10000.00, 3, 0.00, 20000.00, 'villupuram', 'chennai', '2105200002', '1', '1', 'upload_files/candidate_tracker/1433009134_Resume.pdf', NULL, '2', '2021-05-20', 0, '', '1', '54', '1970-01-01', 0.00, '', NULL, '2024-10-05', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-20 11:30:23', 7, '2021-05-20 03:30:30', 0, NULL, 1),
(4936, 'Balasani Sujith Kumar', '5', '8125373057', '', 'balasanisujithgoud17@gmail.com', '1997-03-17', 24, '2', '2', 'v rajesham', 'postal', 30000.00, 2, 20000.00, 25000.00, 'hyderabad', 'neramet', '2105200003', '1', '2', 'upload_files/candidate_tracker/46731105286_\'B.sujithgoud resume.pdf', NULL, '2', '2021-05-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Good, Holding an offer with Vedantu for 3.5 LPA and looking for some more.Will not sustain for a long', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 12:34:18', 1, '2021-05-20 12:37:43', 0, NULL, 1),
(4937, 'BHANU PRAKASH THANTHARAPALLY', '5', '9701434329', '', 'bhanubhanugoud@gmail.com', '1996-09-11', 24, '2', '2', 'ganesh goud', 'business man', 45000.00, 1, 0.00, 20000.00, 'hyderabad', 'borukpal', '2105200004', '1', '1', 'upload_files/candidate_tracker/6974152113_BHANU\'s Resume (3).pdf', NULL, '2', '2021-05-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Insurance Sales', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 12:55:31', 1, '2021-05-20 12:58:47', 0, NULL, 1),
(4938, 'MADHAVA L', '5', '9182320208', '', 'lakkapogumadhava@gmail.com', '1994-02-21', 27, '2', '2', 'ramaiah lakkapogu', 'own business', 30000.00, 1, 0.00, 20000.00, 'hyderabad', 'lb nagar', '2105200005', '1', '1', 'upload_files/candidate_tracker/7113163503_MADHAVA LAKKAPOGU RESUME BV1.pdf', NULL, '2', '2021-05-21', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'He is having  fits and also he will not sustain and average sales guy', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 01:21:18', 1, '2021-05-20 01:23:53', 0, NULL, 1),
(4939, '', '0', '9566158979', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105200006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-20 01:48:05', 0, NULL, 0, NULL, 1),
(4940, 'deva', '4', '6382511940', '', 'dhonideva000@gmail.com', '2001-01-30', 20, '2', '2', 'boopathy', 'working', 30000.00, 1, 0.00, 10000.00, 'thanjavur', 'thanjavur', '2105200007', '1', '1', 'upload_files/candidate_tracker/17639004213_resume_1620480243071.pdf', NULL, '2', '2021-05-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-20 01:49:00', 50, '2021-05-21 11:15:51', 0, NULL, 1),
(4941, 'Priyadharshini K', '4', '8056750176', '', 'priyadharshinik.tnj@gmail.com', '1999-09-26', 21, '2', '2', 'Shanthi K', 'Housewife', 40000.00, 2, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2105200008', '1', '1', 'upload_files/candidate_tracker/54569297860_priya original CV1.pdf', NULL, '2', '2021-05-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-20 01:49:29', 1, '2021-05-20 02:17:35', 0, NULL, 1),
(4942, '', '0', '9600155764', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105200009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-20 02:08:46', 0, NULL, 0, NULL, 1),
(4943, '', '0', '9360783878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105200010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-20 02:09:16', 0, NULL, 0, NULL, 1),
(4944, 'G.mohan', '4', '8015598398', '9384208594', 'mohan606621@gmail.com', '1993-06-15', 27, '2', '2', 'P.R.Govindan', 'No job', 1500.00, 3, 0.00, 180000.00, 'Chennai', 'Near thiruvallur', '2105200011', '1', '1', 'upload_files/candidate_tracker/73445240877_MOHAN RESUME.docx', NULL, '2', '2021-05-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-20 02:11:45', 1, '2021-05-20 02:49:30', 0, NULL, 1),
(4945, 'GAJJALAKONDA SAI LIKHITH', '5', '9505270334', '', 'gksailikhithraj@gmail.com', '2000-08-21', 20, '2', '2', 'subbaiah', 'consultancy', 80000.00, 1, 0.00, 15000.00, 'hyderabad', 'malakajgiri', '2105200012', '1', '1', 'upload_files/candidate_tracker/89942915687_gk sailikhith resume.docx', NULL, '2', '2021-05-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Open for CRM Position only, Distance around 18Kms sustainability doubt and Expectation is high', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 02:31:49', 1, '2021-05-20 02:36:47', 0, NULL, 1),
(4946, 'R dhanalakshmi', '4', '7402464351', '9025764424', 'dhanapriya.tnj@gmail.com', '1995-01-08', 26, '2', '2', 'V rajasekaran', 'Labour', 10000.00, 3, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2105200013', '1', '2', 'upload_files/candidate_tracker/74625788837_1621440672410_1621440627869_Dhanalakshmi Resume.pdf', NULL, '2', '2021-05-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-20 02:35:13', 1, '2021-05-20 03:10:38', 0, NULL, 1),
(4947, 'Syed khaleel khaleed', '22', '8919754602', '9948755790', 'Sdkhaleedk786@gmail.com', '1997-05-20', 24, '2', '2', 'Syed khaleel', 'VRO', 20000.00, 1, 0.00, 20000.00, 'Tada, Nellore AP', 'Tada', '2105200014', '1', '1', 'upload_files/candidate_tracker/66041657778_Syedkhaleedk Resume .pdf', NULL, '2', '2021-05-26', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate having own business', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 03:40:38', 7, '2021-05-26 02:59:32', 0, NULL, 1),
(4948, 'A T GUNASEKAR', '13', '7382602844', '', 'atgunasekar24@gmail.com', '1999-04-05', 22, '2', '2', 'Thanikachalam', 'Weaver', 13000.00, 1, 0.00, 16000.00, 'Chennai', 'Nagari', '2105200015', '1', '1', 'upload_files/candidate_tracker/70906838973_A.T.Guna (Resume) (1).pdf', NULL, '3', '2021-05-22', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Someone did his task.', '2', '2', '0', '1', '1', '0', '2', '2021-05-27', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-20 04:13:43', 1, '2021-05-20 04:20:23', 0, NULL, 1),
(4949, 'Tony Makineni', '5', '9010442729', '8591672643', 'tony.makenani@gmail.com', '1998-07-27', 22, '2', '2', 'sibaramaiah', 'farmer', 30000.00, 1, 18000.00, 20000.00, 'hyderabad', 'yusuf gouda', '2105200016', '1', '2', 'upload_files/candidate_tracker/3850294438_Tony Makineni.docx', NULL, '2', '2021-05-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '3yrs 3 companies with a different domain. Will not handle the pressure and sustainability doubt for our role.', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 04:16:12', 1, '2021-05-20 04:19:46', 0, NULL, 1),
(4950, 'shahrukh khan', '5', '8125999351', '', 'shahrukhkhan9714@gmail.com', '1997-04-29', 24, '2', '2', 'Mohammed Shaibaz Khan', 'working', 30000.00, 1, 14000.00, 20000.00, 'sumcity', 'sumcity', '2105200017', '1', '2', 'upload_files/candidate_tracker/28984777812_Resume (7).pdf', NULL, '2', '2021-05-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 04:56:49', 1, '2021-05-20 04:59:51', 0, NULL, 1),
(4951, 'S. G. Ajeeth kumar', '13', '9629755261', '', 'ajeethkumar4398@gmail.com', '1998-03-04', 23, '2', '2', 'M.S.Ganapathy', 'Private employee', 25000.00, 1, 0.00, 18000.00, 'Dindigul', 'Dindigul', '2105200018', '1', '1', 'upload_files/candidate_tracker/98109647296_Ajeethkumar_SG.docx', NULL, '3', '2021-05-26', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Completed', '2', '1', '', '4', '5', '', '2', '2021-05-29', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-20 05:04:03', 7, '2021-05-26 03:53:48', 0, NULL, 1),
(4952, 'Hari haran', '2', '8838669238', '', 'Hariharan28111999@gmail.com', '1999-11-28', 21, '2', '2', 'Govindaraj', 'Painter', 150000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2105200019', '1', '1', 'upload_files/candidate_tracker/12755121569_new resume.pdf', NULL, '3', '2021-05-24', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '1', 'Selected for React Intern, - 3 months Stipend Rs3500 per month post intern will confirm the salary - 3 yrs service Agreement,will come and join once receive the original documents from College', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-20 05:31:19', 1, '2021-05-20 05:34:42', 0, NULL, 1),
(4953, 'priyadharshini s', '16', '9841990275', '', 'dharshinisk16@gmail.com', '1998-08-16', 22, '2', '2', 'susairaj k', 'painter', 10000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2105210001', '1', '2', 'upload_files/candidate_tracker/87243430240_updated resume.pdf', NULL, '3', '2021-05-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-21 11:33:45', 50, '2021-05-22 09:58:44', 0, NULL, 1),
(4954, 'Manisekar Sugumaran', '2', '7338975871', '', 'mani.bio.197@gmail.com', '1999-11-04', 21, '2', '2', 'sugumaran', 'farmer', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2105210002', '1', '1', 'upload_files/candidate_tracker/73050808611_Resume.pdf', NULL, '2', '2021-07-05', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Intern for 5 months(1 month Internship - No Payment and for remaning months 3.5 Stipend,post intern 3yrs agreement also salary wil be confirmed', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-21 11:49:45', 60, '2021-07-05 10:20:13', 0, NULL, 1),
(4955, 'shibi chakkaravarthy', '2', '7358573377', '', 'shibi2591999@gmail.com', '1999-09-26', 21, '2', '2', 'krishnasamy', 'cine field', 120000.00, 1, 264000.00, 360000.00, 'kariyapatti', 'virugambakkam', '2105210003', '1', '2', 'upload_files/candidate_tracker/99095371958_Shibi Resume Latest.pdf', NULL, '3', '2021-05-21', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-21 11:54:20', 7, '2021-05-21 01:16:03', 0, NULL, 1),
(4956, 'Saikrishna Ganesh', '16', '9003081537', '', 'saikrishna6381@gmail.com', '1996-10-27', 24, '2', '2', 'Ganesh R', 'Assistant head master', 1.00, 0, 16682.00, 20000.00, 'Chennai', 'Chennai', '2105210004', '1', '2', 'upload_files/candidate_tracker/18557310128_updated resume pdf-01.pdf', NULL, '3', '2021-05-22', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-21 11:56:47', 50, '2021-05-22 09:58:55', 0, NULL, 1),
(4957, 'Ashwin Ram S', '2', '6384223035', '', 'ramashwin36@gmail.com', '2000-07-29', 20, '2', '2', 'Suresh R', 'Teacher', 30000.00, 1, 0.00, 350000.00, 'Thanjavur', 'Thanjavur', '2105210005', '1', '1', 'upload_files/candidate_tracker/29037701623_AshwinRam_Resume.pdf', NULL, '3', '2021-05-22', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-21 12:54:37', 7, '2021-05-22 10:52:55', 0, NULL, 1),
(4958, 'Prajith', '16', '9677279260', '', 'Prajithkannan61@gmail.com', '1996-03-13', 25, '2', '2', 'Mohan Kumar', 'Forman', 20000.00, 1, 14999.00, 22000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2105210006', '1', '2', 'upload_files/candidate_tracker/35866038305_Screenshot_20210104_222212-converted.pdf', NULL, '3', '2021-05-22', 10, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-21 01:05:18', 50, '2021-05-22 09:59:06', 0, NULL, 1),
(4959, 'Lavanya', '16', '8754489134', '', 'Lavanya24996@gmail.com', '1996-06-24', 24, '2', '2', 'Gubendran', 'Sales man', 240000.00, 2, 13800.00, 20000.00, 'Chennai', 'Ambattur', '2105210007', '1', '2', 'upload_files/candidate_tracker/33818982061_Resume 2021-updated.pdf', NULL, '3', '2021-05-22', 10, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-21 01:15:55', 1, '2021-05-21 01:23:58', 0, NULL, 1),
(4960, 'meenalochini', '4', '6369175200', '', 'meena123lochini@gmail.com', '2000-05-11', 21, '2', '2', 'pichaimani', 'working', 10000.00, 1, 0.00, 10000.00, 'chennai', 'arakonam', '2105210008', '1', '1', 'upload_files/candidate_tracker/62878616778_Meenalochini.Presume.pdf', NULL, '2', '2021-05-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ok with our Offer.also our rms link is incomplete', '1', '2', '', '', '', '', '1', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-21 02:25:48', 7, '2021-07-13 12:01:11', 0, NULL, 1),
(4961, 'Kumaraguru G', '16', '9087013942', '', 'kumaragurug213@gmail.com', '1994-08-03', 26, '2', '2', 'Gurunathan T', 'Banana salesman', 30000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2105210009', '1', '2', 'upload_files/candidate_tracker/92650493274_KUMARA GURU RESUME.pdf', NULL, '3', '2021-05-22', 30, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-21 03:53:20', 50, '2021-05-22 09:59:19', 0, NULL, 1),
(4962, 'allwin gnanaraj.c', '2', '9940516183', '', 'allwinallu99@gmail.com', '1999-10-14', 21, '2', '2', 'charles rajkumar', 'supervisor', 30000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2105220001', '1', '1', 'upload_files/candidate_tracker/24344443609_allwin cv.pdf', NULL, '3', '2021-05-26', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-22 02:28:54', 1, '2021-05-25 05:36:46', 0, NULL, 1),
(4963, 'Arun samdoss', '2', '9444249672', '', 'arunsamdoss@gmail.com', '1996-12-21', 24, '2', '2', 'Isaac', 'Own business', 12000.00, 1, 10000.00, 17000.00, 'Krs nagar vallimalai road katpadi Vellore', 'Vellore', '2105230001', '1', '2', 'upload_files/candidate_tracker/59547501304_Resume Arun Samdoss.pdf', NULL, '2', '2021-05-26', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '4', '5', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-23 07:03:07', 7, '2021-05-26 01:35:22', 0, NULL, 1),
(4964, 'Subash', '13', '7845688489', '', 'Cssubashofficial@gmail.com', '1998-09-24', 22, '2', '2', 'Sankar', 'Tailor', 10000.00, 1, 0.00, 20000.00, 'kalpakkam', 'kalpakkam', '2105240001', '1', '2', 'upload_files/candidate_tracker/13386735032_Subash_resume_2021-converted.pdf', NULL, '3', '2021-05-26', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'task not completed.', '2', '1', '0', '1', '1', '0', '2', '2021-05-27', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-24 09:00:26', 1, '2021-05-26 09:16:16', 0, NULL, 1),
(4965, 'S.Bhuvaneswari', '13', '6379555435', '', 'bhuvanaselvam97@gmail.com', '1997-09-05', 23, '2', '2', 'selvam', 'construction', 50000.00, 2, 0.00, 15.00, 'chennai', 'Mangadu', '2105250001', '1', '1', 'upload_files/candidate_tracker/38904337164_bhuvaneswari resume (1).pdf', NULL, '3', '2021-05-26', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not completed', '2', '1', '', '1', '1', '', '2', '2021-05-27', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-25 11:38:54', 7, '2021-05-26 03:54:31', 0, NULL, 1),
(4966, '', '0', '6379556435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105250002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-25 11:43:45', 0, NULL, 0, NULL, 1),
(4967, 'Vamshi Racherla', '5', '6303197154', '', 'vamshitomshi@gmail.com', '1998-05-26', 22, '2', '2', 'lakshman rao', 'coco cola', 30000.00, 1, 15000.00, 18000.00, 'hyderabad', 'malkajgiri', '2105250003', '1', '2', 'upload_files/candidate_tracker/52435893239_vamshi new docx.docx', NULL, '2', '2021-05-26', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 12:23:36', 1, '2021-05-25 12:27:45', 0, NULL, 1),
(4968, 'Juturu Lokesh', '5', '9398161993', '', 'juturulokeshlokesh@gmail.comx', '1999-06-10', 21, '2', '2', 'ramjanjeylu naidu', 'farmer', 30000.00, 1, 0.00, 25000.00, 'hyderabad', 'jubilee hills', '2105250004', '1', '1', 'upload_files/candidate_tracker/15330772955_1606107035678_New Microsoft Office Word Document.pdf', NULL, '2', '2021-05-26', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 12:48:44', 1, '2021-05-25 12:53:15', 0, NULL, 1),
(4969, 'AVULAPATI NIRANJAN', '5', '9700415506', '', 'niranjannani9999@gmail.com', '1996-09-18', 24, '2', '2', 'munieeswariah', 'working in pvt company', 40000.00, 1, 25000.00, 30000.00, 'hyderabad', 'near malanagar', '2105250005', '1', '2', 'upload_files/candidate_tracker/7942304139_Resume-Niranjan', NULL, '2', '2021-05-26', 0, '', '3', '60', '2021-06-02', 345000.00, '', '4', '2021-06-09', '1', 'Selected for Veben Team with CTC - 3.45 includes PF/PT', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 02:06:05', 60, '2021-06-01 04:47:46', 0, NULL, 1),
(4970, 'krishnamoorthy', '16', '9092598790', '9940322170', 'Krishnamoorthy2014@gmail.com', '1995-10-07', 25, '2', '2', 'magibal', 'loadman', 12000.00, 1, 5.00, 33000.00, 'chennai', 'chenn', '2105250006', '1', '2', 'upload_files/candidate_tracker/63610470799_Resume 2020-1.pdf', NULL, '3', '2021-05-26', 40, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'analytical weak,Communication average, and no excel knowledge', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 03:21:40', 50, '2021-05-26 09:21:26', 0, NULL, 1),
(4971, 'Deepa Shri', '16', '7395987223', '7397238282', 'deepashrikandhi95@gmail.com', '1995-09-28', 25, '2', '2', 'Mr.Kandhi', 'Rtrd MPT officer', 20.00, 3, 1.60, 3.00, 'Chennai', 'Chennai', '2105250007', '1', '2', 'upload_files/candidate_tracker/26725140734_Deepa Updated Resume (1) (1) (1).pdf', NULL, '2', '2021-05-26', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 03:51:10', 50, '2021-05-26 09:21:40', 0, NULL, 1),
(4972, 'Vinoth P', '16', '8248486410', '7373686193', 'vinothfrancis08@gmail.com', '1993-10-08', 27, '2', '2', 'Paul Francis I', 'Farmer', 9000.00, 1, 25000.00, 30000.00, 'Cuddalore, Panruti', 'Chennai, Thiruvanmiyur', '2105250008', '1', '2', 'upload_files/candidate_tracker/89822191254_Vinoth resume.pdf', NULL, '2', '2021-05-26', 0, '', '4', '72', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Check this profile for MIS ', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 04:24:00', 50, '2021-05-26 09:21:52', 0, NULL, 1),
(4973, 'Kannna', '16', '9095536848', '7553182926', 'kannanselvam144@gmail.com', '1994-08-17', 26, '2', '2', 'Selvam', 'Cooli', 10000.00, 1, 14500.00, 15000.00, 'Theni', 'Chennai', '2105250009', '1', '2', 'upload_files/candidate_tracker/74675347572_kannanselvam94.docx_compressed.pdf', NULL, '2', '2021-05-26', 1, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in MIS role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 04:36:39', 50, '2021-05-26 09:22:05', 0, NULL, 1),
(4974, 'Muniyasamy V', '3', '7871664798', '9363318100', 'vmuni.812@gmail.com', '2006-05-26', 0, '2', '2', 'Vetrivel', 'Fisher man', 72000.00, 1, 0.00, 15000.00, '5B/328,selsini colony,chidambaraNagar, Tuticorin', '5B/328,Selsini Colony,ChidambaraNagar, Tuticorin', '2105260001', '1', '1', 'upload_files/candidate_tracker/2235913771_Muniyasamy V-.pdf', NULL, '3', '2021-05-26', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-26 10:36:03', 1, '2021-05-26 10:51:27', 0, NULL, 1),
(4975, 'N JAYSIMHA', '5', '8309628145', '9000236717', 'NILAJALAJAYASIMHA@gmail.com', '1994-04-12', 27, '2', '2', 'kondanna', 'own dry clean shop', 50000.00, 2, 14000.00, 20000.00, 'hyderabad', 'yatral nagar', '2105260002', '1', '2', 'upload_files/candidate_tracker/17614484909_resume (8).pdf', NULL, '2', '2021-05-27', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-26 11:09:10', 1, '2021-05-26 11:11:45', 0, NULL, 1),
(4976, 'Guntoju Umashankar', '5', '8328431214', '', 'Shankarchary07@gmail.com', '1998-08-28', 22, '2', '2', 'sathyanarayana', 'carpenter', 20000.00, 1, 15000.00, 20000.00, 'hyderabad', 'lb nagar', '2105260003', '1', '2', 'upload_files/candidate_tracker/92454699394_G UmaShankar resume.pdf', NULL, '2', '2021-05-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '1', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-26 11:29:17', 1, '2021-05-26 11:31:47', 0, NULL, 1),
(4977, 'Shaik Khasim Basha', '5', '7989734135', '', 'shaikbashalsd@gmail.com', '1999-10-03', 21, '2', '2', 'shaik khasim sahev', 'ex govt employee', 35000.00, 2, 0.00, 20000.00, 'hyderabad', 'dilshuknagar', '2105260004', '1', '1', 'upload_files/candidate_tracker/60484666816_Share 1614920591456_my_resume.pdf', NULL, '2', '2021-05-27', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-26 11:51:35', 1, '2021-05-26 11:55:52', 0, NULL, 1),
(4978, 'mahaboob basha', '5', '9789585435', '', 'bashaafsar225@gmail.com', '1997-05-15', 24, '2', '2', 'sk subhan', 'polica officer', 45000.00, 1, 0.00, 20000.00, 'hyderabad', 'dilshuk nagar', '2105260005', '1', '1', 'upload_files/candidate_tracker/68650499593_Basha shaik vvis 039.docx.pdf', NULL, '2', '2021-05-27', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'He is not well and told that he will get back after 2 days', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-26 12:10:39', 1, '2021-05-26 12:12:27', 0, NULL, 1),
(4979, 'Shaik Afsar', '5', '8466863453', '', 'afsar.shaik115@gmail.com', '1999-06-29', 21, '2', '2', 'shaik suphan', 'police', 30000.00, 1, 0.00, 20000.00, 'telangana', 'madwal', '2105260006', '1', '1', 'upload_files/candidate_tracker/44656099525_RESUME (9).pdf', NULL, '2', '2021-05-27', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-26 02:13:34', 1, '2021-05-26 02:17:08', 0, NULL, 1),
(4980, 'Manikandan', '23', '8428522826', '8667032065', 'manikalyan151@gmail.com', '1994-01-15', 27, '2', '2', 'Kalyanasundaram', 'Farmer', 50000.00, 3, 0.00, 40000.00, 'Chennai', 'Dharmapuri', '2105260007', '1', '2', 'upload_files/candidate_tracker/91842433326_Manikandan Resume.pdf', NULL, '3', '2021-05-27', 30, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task given', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-26 05:41:19', 7, '2021-05-27 10:46:40', 0, NULL, 1),
(4981, 'Mohamed zuhail', '23', '7448874485', '', 'mohamedzuhailmca@gmail.com', '1996-04-26', 25, '2', '2', 'Barakathullah', 'Business', 26000.00, 2, 26670.00, 37000.00, 'Chennai', 'Chennai', '2105260008', '1', '2', 'upload_files/candidate_tracker/38300040702_1609385603070Resume_Mohamed (2).pdf', NULL, '3', '2021-05-27', 30, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-26 05:46:01', 7, '2021-05-27 10:47:04', 0, NULL, 1),
(4982, '', '0', '9677117429', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105260009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-26 06:39:20', 0, NULL, 0, NULL, 1),
(4983, 'Thamilselvan', '23', '7598487897', '9659190728', 'tamil0893@gmail.com', '1993-11-08', 27, '2', '2', 'Viswanathan', 'web Designing SME', 28000.00, 1, 25000.00, 35000.00, 'Trichy', 'Chennai', '2105260010', '1', '2', 'upload_files/candidate_tracker/45316680974_Thamilselvan Resume.pdf', NULL, '3', '2021-05-27', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task given. Task Completed. Not up to the level.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-26 07:03:16', 7, '2021-06-01 11:59:05', 0, NULL, 1),
(4984, 'Shaik Naveed', '2', '9789921115', '9940236718', 'shaiknaveed78626@gmail.com', '2000-05-18', 21, '2', '2', 'Shaik Nayeem', 'Leather Technician', 20000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2105270001', '1', '1', 'upload_files/candidate_tracker/76625710347_N Shaik Naveed Resume.pdf', NULL, '1', '2021-06-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Need To Complete The Exams.Will Come For The 2nd Level Interview Post The Completion Of Exams\n', '2', '1', '0', '1', '1', '0', '2', '2021-07-30', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 12:37:25', 1, '2021-06-28 04:24:14', 0, NULL, 1),
(4985, 'santhosh kumar T', '23', '8072566169', '9500737421', 'santhosh5198kumar@gmail.com', '1997-03-07', 24, '2', '1', 'santhi', 'house wife', 17000.00, 1, 2.60, 4.00, 'Chennai', 'Chennai', '2105270002', '1', '2', 'upload_files/candidate_tracker/13337107724_updated resume.pdf', NULL, '3', '2021-05-27', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task given. Task Completed. Not up to the level.', '2', '2', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 09:35:16', 7, '2021-06-01 11:58:19', 0, NULL, 1),
(4986, 'ramya', '23', '9629891830', '', 'ramyaselvaraman047@gmail.com', '1995-07-04', 25, '2', '2', 'bharathi', 'farmer', 10000.00, 1, 18000.00, 25000.00, 'chennai', 'chennai', '2105270003', '1', '2', 'upload_files/candidate_tracker/60045024658_ramya_ui_developer.pdf', NULL, '3', '2021-05-27', 10, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 09:49:29', 7, '2021-05-27 10:48:53', 0, NULL, 1),
(4987, '', '0', '9585321403', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105270004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-27 10:51:06', 0, NULL, 0, NULL, 1),
(4988, 'Agnes.R', '13', '8220841469', '9176494689', 'agnesraja810@gmail.com', '1997-10-08', 23, '2', '1', 'Vijesh', 'Business', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2105270005', '1', '1', 'upload_files/candidate_tracker/71455821832_Resume_Agnes.docx', NULL, '3', '2021-05-27', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not completed.', '2', '2', '0', '1', '1', '0', '2', '2021-05-29', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 11:01:17', 1, '2021-05-27 11:11:55', 0, NULL, 1),
(4989, '', '0', '9597741703', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105270006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-27 11:10:00', 0, NULL, 0, NULL, 1),
(4990, 'M. Swetha', '13', '9790717574', '', 'swethasampath99@gmail.com', '1999-08-08', 21, '2', '2', 'R. Marimuthu', 'Printer', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2105270007', '1', '1', 'upload_files/candidate_tracker/8904395777_resume.pdf', NULL, '3', '2021-05-27', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'task not Completed', '2', '2', '0', '1', '1', '0', '2', '2021-06-16', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 11:16:44', 1, '2021-05-27 11:30:06', 0, NULL, 1),
(4991, 'Parthipan M', '13', '9566511221', '8072088029', 'parthipan1030@gmail.com', '1997-07-22', 23, '2', '2', 'Muthumagalingam S', 'Sankaralingam', 5000000.00, 1, 0.00, 140000.00, 'Srivilliputtur', 'Chennai', '2105270008', '1', '1', 'upload_files/candidate_tracker/40942128626_Parthipan Resume.docx', NULL, '3', '2021-05-27', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Only 30% of task completed.', '2', '1', '0', '1', '1', '0', '2', '2021-05-28', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 11:21:45', 1, '2021-05-27 11:37:11', 0, NULL, 1),
(4992, '', '0', '9677026204', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105270009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-27 11:26:35', 0, NULL, 0, NULL, 1),
(4993, 'Acharya, Suraj S', '5', '8637270442', '', 'praharaj.surajacharya@protonmail.com', '1998-10-07', 22, '2', '2', 'li acharya', 'doctor', 100000.00, 1, 27000.00, 35000.00, 'hyderabad', 'jntu', '2105270010', '1', '2', 'upload_files/candidate_tracker/89429176051_resume 2021.pdf', NULL, '2', '2021-05-28', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Didnxquott attend the interview', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 12:14:46', 1, '2021-05-27 12:32:49', 0, NULL, 1),
(4994, 'Lakshmi', '13', '9600630397', '', 'sp.lakshmi2511@gmail.com', '2000-12-11', 20, '2', '2', 'Subramaniyan', 'Courier delivery', 6000.00, 2, 0.00, 200000.00, 'Kandanur', 'Kandanur', '2105270011', '1', '1', 'upload_files/candidate_tracker/84361818816_Resume Lakshmi.pdf', NULL, '3', '2021-05-28', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'not good in technical.', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 01:00:33', 1, '2021-05-28 11:46:51', 0, NULL, 1),
(4995, 'Ram prateek', '5', '9966165123', '', 'ramprateek85@gmail.com', '1998-07-10', 22, '2', '2', 'krishnaprasad', 'accountant', 100000.00, 0, 0.00, 15000.00, 'hyderabad', 'bolaram', '2105270012', '1', '1', 'upload_files/candidate_tracker/77242510097_ram resume (01).docx', NULL, '2', '2021-05-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '3', '4', '0', '2', '2021-06-08', '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 01:03:54', 1, '2021-05-27 01:05:59', 0, NULL, 1),
(4996, 'Gaddam Rohit', '5', '9949186078', '', 'gaddamrohit7@gmail.com', '1998-12-16', 22, '2', '2', 'masanna', 'passed away', 15000.00, 1, 13800.00, 15000.00, 'hyderabad', 'bhal', '2105270013', '1', '2', 'upload_files/candidate_tracker/1842788577_0download14893370990661.docx', NULL, '2', '2021-05-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for sales, little bit slow and no sustainability and expt is 16k. avg communication and convincing. Will not suite for RM.', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 02:36:36', 50, '2021-05-27 03:08:19', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4997, 'Shaik Meerasaheb', '5', '6309676875', '', 'shaikmeerasaheb1996@gmail.com', '1996-04-05', 25, '2', '2', 'shaik mohammed rafi', 'daily labour', 60000.00, 1, 16000.00, 20000.00, 'hyderabad', 'ecil', '2105270014', '1', '2', 'upload_files/candidate_tracker/79044449357_shaik Meerasaheb resume (E.kalyan).pdf', NULL, '2', '2021-05-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '1', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 02:44:06', 1, '2021-05-27 02:45:59', 0, NULL, 1),
(4998, 'MD AYAJ', '5', '8019425363', '', 'mdayaj830@gmail.com', '1996-12-04', 24, '2', '2', 'abdul mydeen', 'mechanic', 20000.00, 9, 12000.00, 15000.00, 'hyderabad', 'gachibowli', '2105270015', '1', '2', 'upload_files/candidate_tracker/44068952419_MD AYAJ Resume.pdf', NULL, '2', '2021-05-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Fresher, he is from Bihar and very native language and avg communication. doesnxquott have 2 wheeler and expt is 18k. will not suite for RM.', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 02:47:33', 1, '2021-05-27 02:50:17', 0, NULL, 1),
(4999, 'Shilpa Ithagoni', '20', '9391026380', '', 'shilpaithagoni143@gmail.com', '2000-08-08', 20, '2', '2', 'shankaraiah', 'farmer', 10000.00, 1, 13000.00, 1000016000.00, 'hyderabad', 'madhapur', '2105270016', '1', '2', 'upload_files/candidate_tracker/24639697167_1620218231411_shilpa.docx', NULL, '2', '2021-05-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '5', '2', '', '3', '4', '', '2', '2021-06-02', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 03:47:14', 50, '2021-05-28 09:49:33', 0, NULL, 1),
(5000, 'krishnaanand v', '13', '7299608572', '', 'vkrishnaanand@gmail.com', '1998-10-02', 22, '2', '2', 'vijayakumar k', 'tax consultant', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2105270017', '1', '1', 'upload_files/candidate_tracker/30033739657_[RESUME]Krishnaanand.pdf', NULL, '3', '2021-05-28', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'task not completed.', '2', '1', '0', '1', '1', '0', '2', '2021-05-29', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 03:54:07', 1, '2021-05-27 06:03:30', 0, NULL, 1),
(5001, 'Abdul satar', '4', '9154187866', '', 'Mohdsatar689@gmail.com', '1998-05-20', 23, '2', '2', 'mohammed abdul raheem', 'plumber', 10000.00, 1, 0.00, 900012000.00, 'hyderabad', 'alwal', '2105270018', '1', '1', 'upload_files/candidate_tracker/98505195484_MOHD ABDUL SATAR.docx', NULL, '2', '2021-05-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '3', '4', '0', '1', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 04:03:20', 1, '2021-05-27 04:06:50', 0, NULL, 1),
(5002, 'Aswathy asokan', '23', '9020944811', '', 'achu8371@gmail.com', '1990-05-30', 30, '2', '1', 'Sajeev kumar', 'MCA', 50000.00, 1, 25000.00, 50000.00, 'Kerala', 'chennai', '2105270019', '1', '2', 'upload_files/candidate_tracker/69774918831_Aswathyasokan_resume2021.doc', NULL, '3', '2021-05-28', 30, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Given', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 05:36:17', 7, '2021-05-28 10:48:23', 0, NULL, 1),
(5003, 'annakodi c', '13', '9597909517', '9033909359', 'csuruchi2@gmail.com', '1998-09-07', 22, '2', '2', 'chinnasamy', 'former', 10000.00, 1, 0.00, 15000.00, 'perambalur', 'permbalur', '2105270020', '1', '1', 'upload_files/candidate_tracker/21665623952_resume.pdf', NULL, '3', '2021-06-01', 0, '', '4', '64', NULL, 0.00, '', '0', NULL, '2', 'Task Was Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-02', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 05:47:51', 1, '2021-05-31 10:31:01', 0, NULL, 1),
(5004, 'Sureshkumar', '13', '8940892561', '8637480540', 'suresh10ssk@gmail.com', '2000-03-10', 21, '2', '2', 'Srinivasan', 'Daily Wages', 15000.00, 1, 0.00, 200000.00, 'Vellore', 'Vellore', '2105270021', '1', '1', 'upload_files/candidate_tracker/6435688204_CV_Sureshkumar.pdf', NULL, '3', '2021-05-29', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '1', 'Shortlisted. He Is A Fresher. We Can Offer 8k As A Take Home.\n', '2', '1', '0', '1', '1', '0', '2', '2021-05-31', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 06:02:41', 1, '2021-05-27 06:17:59', 0, NULL, 1),
(5005, 'RAMYA R', '13', '7397435712', '', 'ramya2epm@gmail.com', '2000-07-10', 20, '2', '2', 'ravi parameshwari', 'business', 300000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2105280001', '1', '1', 'upload_files/candidate_tracker/76877023772_RAMYA RESUME (3)(1) (1).pdf', NULL, '3', '2021-05-29', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task not completed. She is download from google and shared  with us.', '2', '1', '0', '1', '1', '0', '2', '2021-05-31', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-28 11:30:27', 1, '2021-05-28 11:35:33', 0, NULL, 1),
(5006, '', '0', '9790692688', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105280002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-28 11:39:40', 0, NULL, 0, NULL, 1),
(5007, 'NITHISH REDDY VENNAPUREDDY', '5', '8686338882', '', 'vnithishreddy@gmail.com', '1996-02-09', 25, '2', '2', 'ragava reddy', 'farmer', 50000.00, 1, 0.00, 22000.00, 'hyderabad', 'kuketpally', '2105280003', '1', '1', 'upload_files/candidate_tracker/74820796411_NITHISH REDDY RESUME SHORT WRD.pdf', NULL, '2', '2021-05-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-28 11:41:18', 1, '2021-05-28 11:44:19', 0, NULL, 1),
(5008, 'Priya dharshini K', '13', '8012211999', '9790944504', 'priyadharshinik1808@gmail.com', '1999-10-08', 21, '2', '2', 'Kumaran K', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2105280004', '1', '1', 'upload_files/candidate_tracker/42589799918_Resume(1).pdf', NULL, '3', '2021-05-29', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not good in basic.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-28 12:48:11', 1, '2021-05-28 01:06:33', 0, NULL, 1),
(5009, 'Arthi paraman', '13', '8220118781', '', 'arthiparamasivam18@gmail.com', '2006-05-28', 0, '2', '2', 'Paramasivam', 'Works at Tower', 20000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2105280005', '1', '1', 'upload_files/candidate_tracker/79694701708_Arthiparamasivam Resume.pdf', NULL, '3', '2021-05-28', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'not good in basic.', '2', '2', '0', '1', '1', '0', '2', '2021-05-31', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-28 02:44:22', 1, '2021-05-28 02:48:55', 0, NULL, 1),
(5010, 'Pusaindu Priya', '20', '8179359816', '', 'pusaindupriya@gmail.com', '2000-11-19', 20, '2', '2', 'rajasekar', 'pvt employee', 25000.00, 1, 12000.00, 15000.00, 'hyderabad', 'keradhabad', '2105280006', '1', '2', 'upload_files/candidate_tracker/28577133800_RESUME indu.doc', NULL, '2', '2021-05-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-28 02:51:30', 1, '2021-05-28 02:54:22', 0, NULL, 1),
(5011, 'saikrishna gaddam', '5', '9010249698', '', 'hari17403@gmail.com', '1996-09-10', 24, '2', '2', 'lakshminarayana', 'passed away', 20000.00, 1, 25000.00, 30000.00, 'hyderabad', 'kuketpally', '2105280007', '1', '2', 'upload_files/candidate_tracker/91289454515_CV_2021-05-21-082521.pdf', NULL, '2', '2021-05-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-28 03:07:49', 1, '2021-05-28 03:09:53', 0, NULL, 1),
(5012, 'Shetty Manikanta Rao', '20', '6309357628', '', 'krazykittu22@gmail.com', '2000-05-28', 21, '2', '2', 'Shetty Ravindher Rao', 'working', 50000.00, 1, 0.00, 18000.00, 'hyderabad', 'pkr', '2105280008', '1', '1', 'upload_files/candidate_tracker/94797083277_Manikanta Shetty\'s Resume.docx', NULL, '2', '2021-05-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-28 03:21:37', 1, '2021-05-28 03:25:14', 0, NULL, 1),
(5013, 'Tejasri G', '13', '9047111841', '7845778188', 'tejasriacucs@gmail.com', '2000-01-15', 21, '2', '2', 'Govindraj B.m', 'Shopkeeper', 10000.00, 3, 0.00, 20000.00, 'Krishnagiri', 'Krishnagiri', '2105280009', '1', '1', 'upload_files/candidate_tracker/28054564716_TEJASRI CSE RESUME.docx', NULL, '3', '2021-05-31', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not good in technical.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-28 04:21:53', 7, '2021-05-31 02:43:39', 0, NULL, 1),
(5014, '', '0', '9025022606', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105280010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-28 04:25:19', 0, NULL, 0, NULL, 1),
(5015, 'Tamilarasan K', '13', '9087571544', '', 'tamilarasansmec15@gmail.com', '1998-06-28', 22, '2', '2', 'Karunanithi', 'Weaver', 50000.00, 2, 0.00, 17000.00, 'Arani, thiruvannamalai.', 'Poonnamalle, chennai.', '2105280011', '1', '1', 'upload_files/candidate_tracker/80214354538_tamil.pdf', NULL, '3', '2021-05-29', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Proper Reaponse.', '2', '1', '0', '1', '1', '0', '2', '2021-05-31', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-28 04:30:58', 1, '2021-05-28 04:36:45', 0, NULL, 1),
(5016, '', '0', '9786528494', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105280012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-28 05:10:10', 0, NULL, 0, NULL, 1),
(5017, 'Robinson J', '13', '9715992596', '8610912909', 'jjrobin1994@gmail.com', '1994-02-18', 27, '2', '2', 'Johnson T', 'Customer support executive', 25000.00, 2, 0.00, 200000.00, 'Karur', 'Karur', '2105280013', '1', '1', 'upload_files/candidate_tracker/4162140374_Robin.pdf', NULL, '3', '2021-06-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-28 05:12:34', 1, '2021-05-28 05:17:19', 0, NULL, 1),
(5018, 'Prashanth Chintu', '5', '9248886143', '', 'prashanth090795@gmail.com', '1998-08-30', 22, '2', '2', 'raju reddy', 'agriculture', 20000.00, 1, 15000.00, 16000.00, 'hyderabad', 'amirpet', '2105290001', '1', '2', 'upload_files/candidate_tracker/87209466828_new resume chintu.docx', NULL, '2', '2021-05-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '2', '0', '3', '4', '0', '2', '2021-06-02', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-29 11:56:51', 1, '2021-05-29 11:59:21', 0, NULL, 1),
(5019, 'Suhaina Begum S', '13', '9524498561', '9994230860', 'suhainabegum.syed@gmail.com', '1997-11-05', 23, '2', '1', 'Riyas Mydheen M', 'Assistant Manager', 50000.00, 2, 15000.00, 18000.00, 'Chennai', 'Mugalivakkam', '2105290002', '1', '2', 'upload_files/candidate_tracker/40173118649_Suhaina.pdf', NULL, '3', '2021-05-31', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-01', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-29 01:30:32', 1, '2021-05-29 01:41:48', 0, NULL, 1),
(5020, 'Ch RAJESH', '5', '7989564310', '', 'rajeshcheri.1234@gmail.com', '1995-07-15', 25, '2', '2', 'lingaiha', 'farmer', 20000.00, 2, 20000.00, 25000.00, 'hyderabad', 'secundrabad', '2105290003', '1', '2', 'upload_files/candidate_tracker/81151024134_1_rajesh resume 1412.doc', NULL, '2', '2021-05-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '3', '4', '0', '2', '2021-06-02', '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-29 02:02:07', 1, '2021-05-29 02:03:52', 0, NULL, 1),
(5021, 'MUTTHINENI.DURGA RAO', '5', '9398455204', '', 'chowdarydurga8@gmail.com', '1996-07-16', 24, '2', '2', 'M.NARAIAH', 'working', 40000.00, 1, 20000.00, 25000.00, 'hyderabad', 'sr nagar', '2105290004', '1', '2', 'upload_files/candidate_tracker/35441654615_Durga resume (1).docx', NULL, '2', '2021-05-31', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-29 02:49:43', 1, '2021-05-29 02:52:28', 0, NULL, 1),
(5022, 'Praveen Raj', '13', '9597848813', '', 'gpraveenraj2000@gmail.com', '2000-05-18', 21, '2', '2', 'George', 'Auto Driver', 6000.00, 1, 0.00, 350000.00, 'tirunelveli', 'Tirunelveli', '2105290005', '1', '1', 'upload_files/candidate_tracker/57208889330_Praveen\'s Resume (1).pdf', NULL, '2', '2021-05-31', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'shortlisted. he is a fresher. we can offer 8k as a take home.', '2', '1', '0', '1', '1', '0', '2', '2021-06-01', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-29 03:25:47', 1, '2021-05-29 03:53:18', 0, NULL, 1),
(5023, 'mohamed sarvath khan', '13', '8489840950', '', 'sarvath86@gmail.com', '1999-05-24', 22, '2', '2', 'basheer ahamed', 'business', 25000.00, 1, 0.00, 10000.00, 'chennai', 'thiruvarur', '2105290006', '1', '1', 'upload_files/candidate_tracker/56273817813_sarvathkhan.pdf', NULL, '3', '2021-05-31', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-01', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-29 04:15:47', 1, '2021-05-29 04:27:09', 0, NULL, 1),
(5024, 'Sai Reddie', '20', '8522895499', '', 'peddireddysaireddy57@gmail.com', '1996-10-25', 24, '2', '2', 'peddireddysaireddy57@gmail.com', 'working', 30000.00, 1, 0.00, 10000.00, 'hyderabad', 'kondapur', '2105310001', '1', '1', 'upload_files/candidate_tracker/83193951450_SAI CV.docx', NULL, '2', '2021-06-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '3', '4', '0', '2', '2021-06-02', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-31 11:13:09', 1, '2021-05-31 11:16:02', 0, NULL, 1),
(5025, 'Nagapasha shaik', '20', '9490087507', '', 'nagapashashaik@gmail.com', '1996-09-07', 24, '2', '2', 'shaik syed ali', 'farmer', 10000.00, 1, 8000.00, 9000.00, 'hyderabad', 'uppal', '2105310002', '1', '2', 'upload_files/candidate_tracker/36798973503_Naga Pasha Resume..pdf', NULL, '2', '2021-06-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Insurance Sales Domain', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-31 11:56:16', 1, '2021-05-31 11:58:23', 0, NULL, 1),
(5026, 'yalagandula naveen', '20', '8919781292', '', 'naveennani2220@gmail.com', '1997-04-08', 24, '2', '2', 'rama rao', 'store keeper', 25000.00, 2, 10000.00, 12000.00, 'hyderabad', 'kammam', '2105310003', '1', '2', 'upload_files/candidate_tracker/73558659742_0_naveen res.docx - Google Docs.pdf', NULL, '2', '2021-06-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Focus only on the service based opening not into sales domain', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-31 12:05:36', 1, '2021-05-31 12:07:45', 0, NULL, 1),
(5027, 'Garlapati Akshitha', '20', '8328183126', '', 'reddyakshithareddy99@gmail.com', '2000-11-15', 20, '2', '2', 'ashok', 'driver', 10000.00, 1, 15000.00, 10000.00, 'hyderabad', 'mouna ali', '2105310004', '1', '2', 'upload_files/candidate_tracker/8477954221_a resume new-2.doc', NULL, '2', '2021-06-01', 0, '', '3', '60', '2021-06-08', 150000.00, '', '6', '2021-06-13', '2', 'Selected as CRM for Veben Hyderabad with CTC 1.5LPA not open for PF/PF so processed with 5% deductions', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-31 01:04:50', 60, '2021-06-07 12:07:49', 0, NULL, 1),
(5028, 'Santhosh', '13', '6380451543', '', 'santhosht2412@gmail.com', '1999-12-24', 21, '2', '2', 'Tamilarasan', 'Farmer', 25000.00, 1, 0.00, 8000.00, 'Ramanathapuram', 'Ramanathapuram', '2105310005', '1', '1', 'upload_files/candidate_tracker/49701254935_santhosh.pdf', NULL, '2', '2021-06-01', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not Good in  basics.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-31 01:17:45', 1, '2021-05-31 01:25:02', 0, NULL, 1),
(5029, 'Avinash', '13', '6379401510', '', 'saravananavinash17@gmail.com', '1998-11-22', 22, '2', '2', 'Nallathambi', 'LI, Greater Chennai Corportion', 40000.00, 1, 0.00, 13000.00, 'Thiruvottiyur,Chennai', 'Thiruvottiyur, Chennai', '2105310006', '1', '1', 'upload_files/candidate_tracker/15917422243_avinash.docx', NULL, '3', '2021-06-01', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Completed', '2', '1', '', '1', '1', '', '2', '2021-06-02', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-31 01:18:12', 7, '2021-06-01 03:17:31', 0, NULL, 1),
(5030, 'Revathy', '13', '7448522577', '9884289588', 'reyanandh@gmail.com', '1997-03-12', 24, '2', '2', 'Anandhan', 'Welder', 15000.00, 2, 0.00, 12.00, 'Chennai', 'Chennai', '2105310007', '1', '1', 'upload_files/candidate_tracker/42190737942_New2021(1).pdf', NULL, '3', '2021-06-01', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not good in basics', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-31 02:19:23', 1, '2021-05-31 03:16:30', 0, NULL, 1),
(5031, '', '0', '8760209035', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105310008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-31 06:36:09', 0, NULL, 0, NULL, 1),
(5032, '', '0', '9363318100', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105310009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-31 07:29:16', 0, NULL, 0, NULL, 1),
(5033, 'Poluri Vinod Kumar', '20', '6302149681', '', 'Vinodkumarpoluri123@gmail.com', '1997-03-24', 24, '2', '2', 'Srinivasa Rao Poluri', 'working', 3000.00, 1, 0.00, 10000.00, 'hyderabad', 'sr nagar', '2106010001', '1', '1', 'upload_files/candidate_tracker/97389758240_vinod main2.docx', NULL, '2', '2021-06-02', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'we holded him for better option but he messaged that he joined a diffrent voice non sales procedd', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-01 12:34:22', 1, '2021-06-01 12:36:16', 0, NULL, 1),
(5034, 'Ragavi', '13', '6381178867', '', 'ragavijega96@gmail.com', '1996-07-02', 24, '2', '2', 'Jegatheesan', 'Farmer', 3000.00, 1, 0.00, 10000.00, 'Thoothukudi', 'Thoothukudi', '2106010002', '1', '1', 'upload_files/candidate_tracker/51999557607_Resume.pdf', NULL, '3', '2021-06-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-04', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 12:43:36', 1, '2021-06-01 12:55:45', 0, NULL, 1),
(5035, 'Riyaz Ahamed s', '13', '6382932181', '9092928449', 'ahamedriyaz93@gmail.com', '1993-08-25', 27, '2', '1', 'Fathima Begam', 'Housewife', 34000.00, 2, 22000.00, 30000.00, 'Pondicherry', 'Pondicherry', '2106010003', '1', '2', 'upload_files/candidate_tracker/36839950003_Riyaz Ahamed.pdf', NULL, '3', '2021-06-02', 20, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 01:09:35', 1, '2021-06-01 09:00:36', 0, NULL, 1),
(5036, 'Madhumitha R', '13', '8838261893', '', 'madhu89393@gmail.com', '1999-08-12', 21, '2', '2', 'Raji G', 'cooli', 90000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2106010004', '1', '1', 'upload_files/candidate_tracker/89004840749_CV_2021-05-13-094522.pdf', NULL, '3', '2021-06-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not Good in basics.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 01:32:12', 1, '2021-06-01 01:49:45', 0, NULL, 1),
(5037, 'kannan', '13', '8072268814', '9600205709', 'kannanraj02318@gmail.com', '1997-09-23', 23, '2', '2', 'rajendran', 'junior web developer', 30000.00, 1, 1.40, 25000.00, 'erode', 'erode', '2106010005', '1', '2', 'upload_files/candidate_tracker/71317786400_Kannan gr.pdf', NULL, '3', '2021-06-02', 2, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-04', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 01:45:52', 1, '2021-06-01 01:52:35', 0, NULL, 1),
(5038, 'Harshini', '16', '9884576028', '', 'harshinicu1994@gmail.com', '1994-09-01', 26, '2', '1', 'Santhosh', 'Engineer', 15000.00, 1, 25000.00, 30000.00, 'CHENNAI', 'CHENNAI', '2106010006', '1', '2', 'upload_files/candidate_tracker/5829031779_Harshini Chandrasekhar V4.1.pdf', NULL, '2', '2021-06-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very high CTC expectation, her current CTC itself 25k TH and she attended around 15 interview.Location constraint up and down 48kms.Sustainability doubt', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-01 02:24:13', 50, '2021-06-02 09:07:05', 0, NULL, 1),
(5039, 'M Jayalakshmi', '16', '9789978824', '', 'mpriyamohan.m@gmail.com', '1993-08-30', 27, '2', '2', 'A mohan', 'Auto Driver', 35000.00, 3, 20000.00, 25000.00, 'Perambur Loco , Chennai', 'Perambur Loco, Chennai', '2106010007', '1', '2', 'upload_files/candidate_tracker/12122428616_Resume.docx', NULL, '2', '2021-06-02', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 6+ yrs experience. sustainability doubt she may get marry in-between age around 27yrs.Notice 30 Days with the current company. Communication Average. She needs time to check with parents on the agreement/Document Submission', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-01 03:10:05', 50, '2021-06-02 09:07:20', 0, NULL, 1),
(5040, 'Balaji. P', '13', '9524297012', '8248261931', 'Specialmaverick7@gmail.com', '1998-06-17', 22, '2', '2', 'Pugazhendhi', 'Business', 30000.00, 1, 180000.00, 300000.00, 'Madhuranthakam', 'Madhuranthakam', '2106010008', '1', '2', 'upload_files/candidate_tracker/21645114435_updated may 21.docx', NULL, '3', '2021-06-02', 15, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-04', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 03:28:26', 1, '2021-06-01 03:46:57', 0, NULL, 1),
(5041, 'Poulami Chanda', '16', '7439640183', '', 'pchanda6@gmail.com', '1992-08-25', 28, '2', '1', 'Ranjit Kumar Chanda', 'Retired Government Employee', 64000.00, 1, 20000.00, 26000.00, '55A SARAT GHOSH GARDEN ROAD, KOLKATA-700031', '160/34 Mangalam Colony, Anna Nagar, Chennai 600040', '2106010009', '1', '2', 'upload_files/candidate_tracker/19134559732_Poulami Chanda CV_Vedu.docx', NULL, '2', '2021-06-02', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Currently working with Byjuxquots and native of west bengal no local language.Notice Period will be around 30 days but she s not clear on the notice nd she says around 15 days. Expectation little high and sustainability with our domain is doubtful', '3', '2', '', '1', '3', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-01 05:00:34', 50, '2021-06-02 09:07:37', 0, NULL, 1),
(5042, 'Mathan', '13', '7092427776', '8778017854', 'mathanraj1033@gmail.com', '1999-05-12', 0, '2', '2', 'Gunasekaran', 'full stack developer', 3000.00, 1, 10.00, 12.00, 'chennai', 'villupuram', '2106010010', '1', '1', 'upload_files/candidate_tracker/34994965943_Resume_Mathan B.E (CSE).doc', NULL, '3', '2021-06-02', 1, '7', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '2', '0', '1', '1', '0', '2', '2021-06-04', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 05:53:29', 1, '2021-06-01 05:54:25', 0, NULL, 1),
(5043, 'Sangavi g', '13', '9791167766', '', 'sangavi2317@gmail.com', '2006-06-01', 0, '2', '2', 'Madan Mohan G', 'Farmer', 20000.00, 1, 8500.00, 15000.00, 'Chennai', 'Chennai', '2106010011', '1', '2', 'upload_files/candidate_tracker/69614279212_SANGAVI RESUME.pdf', NULL, '3', '2021-06-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not good in technical. rejected by latha.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 06:44:17', 1, '2021-06-01 06:47:53', 0, NULL, 1),
(5044, 'SITHARTHAN', '4', '6369479320', '', 'panneerselvamsitharthan@gmail.com', '1998-03-10', 23, '2', '2', 'paneerselvam', 'Farmer', 150000.00, 1, 0.00, 12000.00, 'thanjavur', 'Thanjavur', '2106010012', '1', '1', 'upload_files/candidate_tracker/63053922169_Sample PDF.pdf', NULL, '2', '2021-05-17', 0, '', '3', '8', '2021-06-02', 120000.00, '', '3', '2021-07-15', '2', 'For Sidhivinayagam Team CTC - 120000  Gross - 10k TH-9.5K', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-06-01 07:31:19', 60, '2022-12-17 04:40:32', 0, NULL, 1),
(5045, 'Aparna S', '13', '6383906335', '', 'aparnassr10@gmail.com', '2000-01-10', 21, '2', '2', 'SANTHANARAMAN S', 'PA to sp in Police department', 80000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Kumbakonam', '2106020001', '1', '1', 'upload_files/candidate_tracker/85071774405_RESUME.pdf', NULL, '2', '2021-06-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-06-02 01:14:13', 1, '2021-06-02 01:22:42', 0, NULL, 1),
(5046, 'Sivarathri rakesh', '20', '7842868112', '', 'aryanrakesh960@gmail.com', '2001-06-06', 19, '2', '2', 'balraj', 'pvt contractor', 40000.00, 1, 0.00, 10000.00, 'hyderabad', 'ecil', '2106020002', '1', '1', 'upload_files/candidate_tracker/91137295099_resume 4.docx', NULL, '2', '2021-06-03', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for the profile', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-02 01:46:05', 1, '2021-06-02 01:47:47', 0, NULL, 1),
(5047, 'Feroz khan', '20', '9676028976', '', 'ferozkhn09@gmail.com', '2001-07-09', 19, '2', '2', 'anwarkhan', 'rtd bus driver', 12000.00, 1, 12000.00, 10000.00, 'hyderabad', 'begumpet', '2106020003', '1', '2', 'upload_files/candidate_tracker/70163984743_New Scan1.pdf', NULL, '2', '2021-06-03', 0, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Does not have laptop and cannot offer under current situatation', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-02 02:14:47', 50, '2021-06-02 02:40:23', 0, NULL, 1),
(5048, 'Shaik Rahuman', '2', '8124927107', '9003685949', 'Shaikr1727@gmail.com', '1999-07-01', 21, '2', '2', 'M. Sabeee ahamed', 'employee', 20000.00, 1, 0.00, 10000.00, 'Tanjore', 'Tanjore', '2106020004', '1', '1', 'upload_files/candidate_tracker/95554633691_1618817977248_Shaik@cv.pdf', NULL, '3', '2021-06-26', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by gokul and selected for Mern Positions,starting their training on 2nd Jun(WFH) CTC - 98496 TH - 8000 xxamp Deductions 208', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-02 02:39:30', 1, '2021-06-02 02:50:33', 0, NULL, 1),
(5049, '', '0', '8940605606', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106020005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-02 08:22:40', 0, NULL, 0, NULL, 1),
(5050, 'rajesh k', '13', '8072059796', '9585846488', 'rajeshbvg1997@gmail.com', '1997-11-27', 23, '2', '2', 'kumar', 'driver', 18000.00, 1, 18000.00, 25000.00, 'bhuvanagiri', 'cuddalore', '2106030001', '1', '2', 'upload_files/candidate_tracker/73158524986_Rajesh 2021 new.pdf', NULL, '3', '2021-06-03', 1, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-04', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-03 12:36:18', 1, '2021-06-03 12:40:51', 0, NULL, 1),
(5051, 'rajesh g', '13', '9790767240', '', 'grajesh90@gmail.com', '1990-04-14', 31, '2', '2', 'v r gowrisankar', 'retired sr. a f a/ i c f', 10000.00, 2, 10000.00, 30000.00, 'chennai', 'chennai', '2106030002', '1', '2', 'upload_files/candidate_tracker/61665722892_Rajesh.docx', NULL, '3', '2021-06-03', 0, '', '8', '27', NULL, 0.00, '', '0', NULL, '1', 'Task Not Completed', '2', '2', '0', '1', '1', '0', '2', '2021-06-04', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-03 01:50:26', 1, '2021-06-03 02:11:49', 0, NULL, 1),
(5052, '', '0', '7338850725', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106030003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-03 04:51:59', 0, NULL, 0, NULL, 1),
(5053, 'dhivya', '4', '9600890776', '9626452619', 'dhivyaduraidd1996@gmail.com', '1996-03-30', 25, '2', '2', 'maliga', 'baby seater', 6000.00, 0, 0.00, 10000.00, 'pulaiyarpeti', 'Tanjavur', '2106040001', '1', '1', 'upload_files/candidate_tracker/57713528367_RESUME DD.docx', NULL, '2', '2021-05-31', 0, '', '3', '8', '2021-06-14', 120000.00, '', '5', '1970-01-01', '2', 'For Thanjavur  CTC - 120000 Included PF/ESI Deductions - TH 7805', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-04 09:24:37', 7, '2021-06-12 05:16:50', 0, NULL, 1),
(5054, 'mohan raj c g', '23', '9043726660', '', 'mohan16895@gmail.com', '1996-08-16', 24, '2', '2', 'chandhra sekar', 'weaver', 15000.00, 1, 18000.00, 27000.00, 'kanchipuram', 'kanchipuram', '2106040002', '1', '2', 'upload_files/candidate_tracker/74785205163_MohanUIDeveloper.docx', NULL, '3', '2021-06-05', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-04 10:47:59', 1, '2021-06-04 11:07:46', 0, NULL, 1),
(5055, 'Balaji V', '16', '8925050676', '', 'balg2327@gmail.com', '1995-05-27', 26, '4', '2', 'Velmurugan', 'Farmer', 10000.00, 1, 10700.00, 13000.00, 'Cuddalore', 'Cuddalore', '2106040003', '', '2', 'upload_files/candidate_tracker/16218456536_V.Balaji_Resume.pdf', NULL, '3', '2021-06-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-04 01:59:30', 1, '2021-06-04 02:06:28', 0, NULL, 1),
(5056, 'karthikeyan m', '16', '8778954241', '7299121525', 'karthikeyanm2305@gmail.com', '1995-05-23', 26, '3', '2', 'mariappan p', 'security', 9000.00, 1, 21500.00, 25000.00, 'porur chennai', 'porur chennai', '2106040004', '', '2', 'upload_files/candidate_tracker/34396933161_Resume_Karthikeyan-converted.docx', NULL, '2', '2021-06-06', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-04 02:18:10', 1, '2021-06-04 02:41:03', 0, NULL, 1),
(5057, 'Harikaran', '26', '9087591058', '9940393877', 'harikaranliven@gmail.com', '1999-01-30', 22, '4', '2', 'MAHALAKSHMI P', 'House wife', 30000.00, 1, 11000.00, 17000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2106040005', '', '2', 'upload_files/candidate_tracker/51849506955_HARIKARAN RESUME_1.docx', NULL, '3', '2021-06-04', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-04 02:40:25', 1, '2021-06-04 02:48:29', 0, NULL, 1),
(5058, 'Jayaprakash', '16', '9500293352', '8248788225', 'chandranjp122@gmail.com', '1997-08-05', 23, '2', '2', 'Punitha', 'Housewife', 16000.00, 1, 16000.00, 20000.00, 'Kumbakonam', 'Kodambakkam', '2106040006', '1', '2', 'upload_files/candidate_tracker/54522223033_jayaprakash k.PDF', NULL, '3', '2021-06-05', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-04 02:50:14', 1, '2021-06-04 02:56:20', 0, NULL, 1),
(5059, 'Ragupathi', '16', '7010199634', '8124574985', 'joeragu06@gmail.com', '1997-12-24', 23, '2', '2', 'Saravanan', 'Building contractor', 45000.00, 1, 250000.00, 400000.00, 'Chennai', 'Chennai', '2106040007', '1', '2', 'upload_files/candidate_tracker/75768132637_Ragupathi_Resume_MIS.DOCX', NULL, '2', '2021-06-05', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-04 04:46:04', 1, '2021-06-04 05:07:20', 0, NULL, 1),
(5060, '', '0', '7401452129', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106040008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-04 06:19:37', 0, NULL, 0, NULL, 1),
(5061, 'johns patrick', '4', '6374834890', '9003045988', 'johnsonp579@gmail.com', '1999-06-21', 21, '2', '2', 'jenith william', 'catering', 15000.00, 1, 0.00, 10000.00, 'thirumalivayul', 'Thirumalivayul', '2106050001', '1', '1', 'upload_files/candidate_tracker/79257191743_john-converted.pdf', NULL, '2', '2021-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-05 08:38:27', 1, '2021-06-05 08:42:43', 0, NULL, 1),
(5062, 'nandhini', '4', '7200231533', '', 'nandhinimar22@gmail.com', '1997-03-04', 24, '2', '2', 'rajasekar', 'working', 13000.00, 1, 0.00, 10000.00, 'thirupur', 'nungambakkam', '2106050002', '1', '1', 'upload_files/candidate_tracker/57086919374_Nandhini_Rajasekar.PDF', NULL, '3', '2021-06-05', 0, '', '3', '59', '2021-06-10', 132000.00, '', '', '1970-01-01', '2', 'Selected for Tnagar with 10450 TH Cash Mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-05 09:00:34', 7, '2021-06-09 04:11:02', 0, NULL, 1),
(5063, '', '0', '9988776655', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106050003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-05 09:17:57', 0, NULL, 0, NULL, 1),
(5064, 'Aruna', '4', '8056986783', '', 'arunasrinivasan1994@gmail.com', '1994-09-29', 26, '2', '2', 'Srinivasan', 'Sanitary worker', 1.00, 1, 12000.00, 120000.00, 'Thiruvallur', 'Thiruvallur', '2106050004', '1', '2', 'upload_files/candidate_tracker/77009546320_abc.docx', NULL, '2', '2021-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-05 09:26:51', 1, '2021-06-05 09:30:50', 0, NULL, 1),
(5065, 'suresh', '4', '9003207960', '7358197308', 'surez.rtr@gmail.com', '1996-04-18', 25, '2', '2', 'venu', 'electrition', 15000.00, 1, 17000.00, 20000.00, 'ayanavaram', 'chennai', '2106050005', '1', '2', 'upload_files/candidate_tracker/57970181675_Suresh Venu.docx', NULL, '2', '2021-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-05 09:33:15', 1, '2021-06-05 09:38:37', 0, NULL, 1),
(5066, 'Sneha B', '4', '7305467559', '9003928846', 'snehaprasath211@gmail.com', '2001-01-02', 20, '2', '1', 'Tamilalagan', 'Builder', 30000.00, 2, 0.00, 11000.00, 'No 3/25 mgr nagar 3 rd Cross st velachery', 'No 3/25mgr Nagar 3 rd Cross st velachery', '2106050006', '1', '1', 'upload_files/candidate_tracker/6348821655_Sneha_Professional Resume – 01.pdf', NULL, '2', '2021-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-05 10:05:59', 1, '2021-06-05 11:59:45', 0, NULL, 1),
(5067, 'GADDA VASANTH KUMAR', '5', '8099139945', '', 'johnwesley10000@gmail.com', '1994-08-26', 26, '2', '1', 'raju', 'carpenter', 20000.00, 1, 23000.00, 30000.00, 'hyderabad', 'amirpet', '2106050007', '1', '2', 'upload_files/candidate_tracker/53072381139_Resume (10).pdf', NULL, '2', '2021-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Keep on postponing the call shows not interestde for the role', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-05 10:39:54', 1, '2021-06-05 10:42:07', 0, NULL, 1),
(5068, 'Harish Reddy', '5', '9989350420', '', 'pharishreddy96@gmail.com', '1996-08-12', 24, '2', '2', 'krishna reddy', 'politician', 150000.00, 1, 0.00, 25000.00, 'hyderabad', 'gachibowli', '2106050008', '1', '1', 'upload_files/candidate_tracker/75466072275_pharish-1 (1).docx', NULL, '2', '2021-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'RNR Tried multiple times and no call back also', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-05 11:05:16', 1, '2021-06-05 11:12:49', 0, NULL, 1),
(5069, 'Adarsh', '5', '7386485422', '', 'adarshgoud32@gmail.com', '1999-09-04', 21, '2', '2', 'yadagiri goud', 'rtd', 80000.00, 1, 18000.00, 25000.00, 'hyderabad', 'hyath nagar', '2106050009', '1', '2', 'upload_files/candidate_tracker/96056936894_Adarsh Resume 03-02-21.pdf', NULL, '2', '2021-06-07', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Didnxquott attend the interview', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-05 02:11:33', 1, '2021-06-05 02:13:41', 0, NULL, 1),
(5070, 'LAVUDI VIJAY', '5', '9010102691', '', 'lavudivijay158@gmail.com', '1994-03-21', 27, '2', '2', 'coolya', 'paased away', 30000.00, 4, 21000.00, 25000.00, 'hyderabad', 'takkaguda', '2106050010', '1', '2', 'upload_files/candidate_tracker/80263932625_-422878177.docx', NULL, '2', '2021-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'he is much into research,will not sustain for a long n sales.No target n previous company and he canxquott handle our pressure', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-05 03:20:01', 1, '2021-06-05 03:23:16', 0, NULL, 1),
(5071, 'sainathbatte', '5', '9666057957', '', 'sainathbatte@gmail.com', '1992-06-11', 28, '2', '1', 'eshawariah', 'rtd', 60000.00, 1, 22000.00, 25000.00, 'hyderabad', 'uppal', '2106050011', '1', '2', 'upload_files/candidate_tracker/30491770566_Sainath Batte Resume.pdf', NULL, '2', '2021-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'RNR Tried Multiple Times And No Call Back Also', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-05 03:43:43', 1, '2021-06-05 03:45:53', 0, NULL, 1),
(5072, '', '0', '9840834954', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106070001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-07 11:50:29', 0, NULL, 0, NULL, 1),
(5073, 'rajalakshmi s', '16', '9840401103', '', 'srajalakshmi_ece@yahoo.com', '1992-05-26', 29, '2', '1', 'harish kumar k', 'senior manager - tata communications', 100000.00, 1, 55000.00, 25000.00, 'chennai', 'trichy', '2106070002', '1', '2', 'upload_files/candidate_tracker/50110408907_Rajalakshmi Resume.pdf', NULL, '2', '2021-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High Exp Into Inside Sales,Will Be A Fresher For This Mis Position.Her Current Ctc Was 7 Lpa And Open For 3 Lpa.Recently Married And Says Ok For Sa,But We Canxquott Expect Her For A Long Stay. Communication S Good', '3', '1', '', '1', '1', '', '2', '2021-06-14', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-07 12:46:13', 50, '2021-06-08 09:24:41', 0, NULL, 1),
(5074, 'Sanjeevinarayana', '16', '8610573808', '', 'sanjeevigv154@gmail.com', '1997-04-04', 24, '2', '2', 'Srinivasarao', 'TNEB driver', 30000.00, 1, 19500.00, 27000.00, 'Padi Chennai', 'Padi Chennai', '2106070003', '1', '2', 'upload_files/candidate_tracker/15102591564_Sanjeevi resume 2020.pdf', NULL, '3', '2021-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, no relevant Experience, have experience as  a process associate.Expectation is very high. done interview with  Gokul also', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-07 12:59:40', 50, '2021-06-07 02:07:55', 0, NULL, 1),
(5075, 'JANAKIRAMAN S', '16', '9551701405', '9952083262', 'ramanraj.1893@gmail.com', '1993-07-01', 27, '2', '2', 'P.Selvaraj ( late)', 'Home maid', 15000.00, 2, 13790.00, 20000.00, 'Perumbakkam, Chennai', 'Perumbakkam, Chennai', '2106070004', '1', '2', 'upload_files/candidate_tracker/16641363736_Resume.docx', NULL, '3', '2021-06-08', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected,Communication very average,not open for SA, Expected salary s high.Will not sustain for a long', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-07 02:31:31', 50, '2021-06-08 09:24:55', 0, NULL, 1),
(5076, 'Vijayaragavan N', '5', '9840834854', '', 'ragavan0623@gmail.com', '1992-01-06', 29, '1', '1', 'Padma R', 'House Wife', 23000.00, 0, 23000.00, 26000.00, 'Chennai', 'Chennai', '2106070005', '', '2', 'upload_files/candidate_tracker/80742431496_Vijayaragavan updated.docx', NULL, '2', '2021-06-07', 0, '55567', '3', '60', '2021-06-14', 360000.00, '', '', '2022-11-25', '1', 'Selected for Chennai RM- Santhosh Team -With CTC 3.6 LPA includes PF/PT deductions in Patroniss', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-07 02:51:53', 60, '2021-06-12 11:33:53', 0, NULL, 1),
(5077, 'N.A.VENKATESULU', '26', '9000666560', '6302124714', 'venkatesulu.na@gmail.com', '1986-06-16', 34, '2', '1', 'N. Ramulamma', 'House Wife', 19000.00, 1, 19100.00, 25000.00, 'Elakatur', 'Poonamalli', '2106070006', '1', '2', 'upload_files/candidate_tracker/82930098823_Resume.pdf', NULL, '2', '2021-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain for a long, career gap and he will handle the pressure and not suits for our company', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-07 02:57:04', 50, '2021-06-08 09:25:09', 0, NULL, 1),
(5078, 'Bharath Kumar', '5', '7036163619', '', 'bharathgkumar0312@gmail.com', '1997-07-03', 23, '2', '2', 'manohar', 'phtographer', 30000.00, 2, 0.00, 20000.00, 'hyderabad', 'secundrabad', '2106080001', '1', '1', 'upload_files/candidate_tracker/61738421077_resume (11).pdf', NULL, '2', '2021-06-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'For CRM roles responsibility he is not much interested and he much prefers for sales profile,but the salary expectation is very being a fresher.Exp 25k and he needs time to think.Sustainability doubt on his profile.', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-08 10:23:24', 1, '2021-06-08 10:26:08', 0, NULL, 1),
(5079, 'Mohammed Irfan', '5', '8686655770', '', 'mdirfan1450@gmail.com', '1995-07-14', 25, '2', '2', 'mhmd zaheer', 'pvt employee', 25000.00, 2, 20000.00, 25000.00, 'hyderabad', 'miapur', '2106080002', '1', '2', 'upload_files/candidate_tracker/67808743946_mohd irfan resume...pdf', NULL, '2', '2021-06-09', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for the profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-08 12:32:11', 1, '2021-06-08 12:41:35', 0, NULL, 1),
(5080, 'Faisal Khalid Bafana', '5', '7032667832', '', 'faisalbafana47@gmail.com', '1999-03-04', 22, '2', '2', 'kalid bafana', 'working', 40000.00, 2, 0.00, 11000.00, 'hyderabad', 'kinkoti', '2106090001', '1', '1', 'upload_files/candidate_tracker/73047286530_RESUME inter.docx', NULL, '2', '2021-06-10', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-09 09:25:00', 1, '2021-06-09 09:29:05', 0, NULL, 1),
(5081, 'gokulnathan', '13', '7904209867', '9791650048', 'gokulelumalai386@gmail.com', '1998-05-19', 23, '2', '2', 'elumalai', 'farmer', 60000.00, 1, 0.00, 240000.00, 'tiruvannamalai', 'tiruvannamalai', '2106090002', '1', '1', 'upload_files/candidate_tracker/42406615581_Resume.docx', NULL, '3', '2021-06-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1008', '0', NULL, NULL, NULL, 1, '2021-06-09 09:28:47', 1, '2021-06-09 09:51:30', 0, NULL, 1),
(5082, 'Vallabhu Siva', '5', '8099337486', '', 'Vallabhusiva@gmail.com', '1993-09-24', 27, '2', '2', 'vallabu nagavarma', 'carpenter', 30000.00, 1, 18000.00, 20000.00, 'hyderabad', 'kompally', '2106090003', '1', '2', 'upload_files/candidate_tracker/93465201924_Vallabhu RESUME .doc', NULL, '2', '2021-06-10', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain and very poor performance during interview', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-09 09:46:15', 1, '2021-06-09 09:49:13', 0, NULL, 1),
(5083, 'Golla Ashwanth', '5', '8897974692', '', 'ashwanthashu29@yahoo.in', '1992-08-10', 28, '2', '1', 'golla ramchander', 'rtd employee', 50000.00, 1, 18000.00, 25000.00, 'hyderabad', 'miapur', '2106090004', '1', '2', 'upload_files/candidate_tracker/3772186196_Ashwanth Resume 2   (1)-converted.pdf', NULL, '2', '2021-06-10', 0, '', '3', '60', '2021-06-14', 270000.00, '', '5', '1970-01-01', '1', 'Selected for Hyderabad CTC - 2.7LPA includes PF/ESI Deductions', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-09 10:06:14', 60, '2021-06-11 06:24:47', 0, NULL, 1),
(5084, 'rohihkumar. racharla', '5', '8187807045', '', 'radacademy45rad@gmail.com', '1998-01-06', 23, '2', '2', 'srinivas', 'working', 20000.00, 0, 22000.00, 25000.00, 'hyderabad', 'kuketpally', '2106090005', '1', '2', 'upload_files/candidate_tracker/42716064165_hitman.pdf', NULL, '2', '2021-06-10', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain and will not suit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-09 10:56:02', 1, '2021-06-09 10:59:07', 0, NULL, 1),
(5085, 'Jakka Teja Sai', '5', '8978812308', '', 'saitejajakka@gmail.com', '1996-06-06', 25, '2', '2', 'srinivasalu', 'farmer', 50000.00, 2, 16000.00, 25000.00, 'hyderabad', 'uppal', '2106090006', '1', '2', 'upload_files/candidate_tracker/3553256676_my cv teja2 (1).pdf', NULL, '2', '2021-06-10', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-09 11:23:48', 1, '2021-06-09 11:27:10', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5086, 'thiyagarajan', '4', '8072762772', '8056282166', 'thiyagarajan1391@gmail.com', '1997-08-22', 23, '2', '2', 'jayakumar', 'business', 10000.00, 1, 0.00, 1000.00, 'thirumalaivayul', 'Thirumalaivayul', '2106090007', '1', '1', 'upload_files/candidate_tracker/94763731848_thiyagarajan resume 2.pdf', NULL, '2', '2021-06-08', 0, '', '3', '59', '2021-06-10', 126000.00, '', '', '1970-01-01', '1', 'Selected for Tiruvallur Location with 9975 TH Cash Mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-09 03:26:57', 7, '2021-06-09 04:04:03', 0, NULL, 1),
(5087, 'jagadesh', '4', '8248623608', '7558101021', 'jagdesan.p123@gmail.com', '2001-05-12', 20, '2', '2', 'mala', 'accountant', 7000.00, 0, 0.00, 10000.00, 'thiruvallur', 'Thiruvallur', '2106090008', '1', '1', 'upload_files/candidate_tracker/49412411517_RESUME (11).pdf', NULL, '2', '2021-06-08', 0, '', '3', '60', '2021-06-10', 120000.00, '', '3', '2021-06-12', '1', 'Selected for Tiruvallur with  CTC 120000 includes PF/PT/ESI Deductions', '1', '2', '1', '4', '6', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-09 03:34:00', 60, '2021-06-09 08:04:09', 0, NULL, 1),
(5088, 'vasanth', '4', '9994231220', '9443073136', 'vasanthvictor333@gmail.com', '1999-09-30', 21, '2', '2', 'karthikeyan', 'business', 12000.00, 1, 0.00, 10000.00, 'aarakonam', 'Thiruvallur', '2106090009', '1', '1', 'upload_files/candidate_tracker/25796124607_VASANTH KUMAR K B.E Resume.pdf', NULL, '2', '2021-06-08', 0, '', '3', '59', '2021-06-10', 120000.00, '', '', '1970-01-01', '1', 'Selected for Tiruvallur with 9500 TH cash Mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-09 03:41:57', 7, '2021-06-09 04:04:29', 0, NULL, 1),
(5089, 'suvetaa s', '4', '9962903679', '', 'suvetaa1998@gmail.com', '1998-11-02', 22, '2', '2', 'srinivasan l', 'photographer', 9000.00, 1, 0.00, 10000.00, 'chennai', 'triplicane', '2106090010', '1', '1', 'upload_files/candidate_tracker/17531225204_Suvetaa Resume.pdf', NULL, '2', '2021-06-04', 0, '', '3', '59', '2021-06-10', 120000.00, '', '', '1970-01-01', '1', 'Selected for Tnagar with 9500 TH cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-09 04:59:02', 7, '2021-06-09 05:26:24', 0, NULL, 1),
(5090, '', '0', '7708604511', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106090011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-09 05:36:51', 0, NULL, 0, NULL, 1),
(5091, 'Salman Khan', '4', '7845798509', '', 'salmansnk97@gmail.com', '1997-08-28', 23, '2', '2', 'Nabikhan', 'No job', 0.00, 1, 22.00, 0.00, 'Ambur', 'Kodambakkam', '2106090012', '1', '2', 'upload_files/candidate_tracker/32721806096_Salman Resume.doc', NULL, '3', '2021-06-09', 0, '', '3', '60', '2021-06-10', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Tnagar location,CTC 156000 Gross - 13000 with PF/PT deductions', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-09 05:38:20', 60, '2021-06-09 08:03:23', 0, NULL, 1),
(5092, 'raj.r', '4', '8939579293', '', 'mathewmass1509@gmail.com', '2000-08-02', 20, '2', '2', 'p.ramprakasha', 'worker', 35000.00, 1, 12000.00, 13000.00, 'chennai', 'chennai', '2106090013', '1', '2', 'upload_files/candidate_tracker/46279710544_Resume_Raj_Format5 updated resume (1) (3).docx', NULL, '2', '2021-06-10', 0, '', '3', '59', '2021-06-10', 138948.00, '', '0', NULL, '1', 'Selected for T.Nagar with 11000 TH Cash Mode', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-09 05:43:48', 1, '2021-06-09 05:49:17', 0, NULL, 1),
(5093, 'Naveen', '5', '9515385143', '', 'naveen.navi564@gmail.com', '1995-06-05', 26, '2', '2', 'janarthan', 'working', 15000.00, 0, 20000.00, 25000.00, 'hyderabad', 'kuketpally', '2106100001', '1', '2', 'upload_files/candidate_tracker/67644840392_Naveen resume (1).pdf', NULL, '2', '2021-06-11', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Rejected', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 09:29:43', 1, '2021-06-10 09:33:03', 0, NULL, 1),
(5094, 'Shiva Manchoju', '5', '9701431723', '', 'shivamanchoju@gmail.com', '1994-03-30', 27, '2', '2', 'haniumathachari', 'carpenter', 25000.00, 2, 25000.00, 27000.00, 'hyderabad', 'shamirpet', '2106100002', '1', '2', 'upload_files/candidate_tracker/82022875425_M Shiva Resume.docx', NULL, '2', '2021-06-11', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'He is not willing to work on sundays', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 10:18:05', 1, '2021-06-10 10:21:17', 0, NULL, 1),
(5095, 'Vadnala mallesh', '5', '9966776817', '', 'vmallesh.vm42@gmail.com', '1993-05-15', 28, '2', '1', 'vekataiah', 'not working', 40000.00, 2, 12000.00, 23000.00, 'hyderabad', 'panjakota', '2106100003', '1', '2', 'upload_files/candidate_tracker/12771887858_V.MALLESH 2019(1).pdf', NULL, '2', '2021-06-11', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'rejected', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 10:23:19', 1, '2021-06-10 10:25:55', 0, NULL, 1),
(5096, 'Kaniganti.Prashanth Kumar', '5', '8897848586', '', 'prashanthkaniganti@gmail.com', '1995-07-16', 25, '2', '2', 'venkataiah', 'passed away', 10000.00, 2, 21000.00, 25000.00, 'hyderabad', 'secundrabad', '2106100004', '1', '2', 'upload_files/candidate_tracker/66303669309_1621682334796Resume_Kaniganti (1).docx', NULL, '2', '2021-06-11', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 12:11:54', 1, '2021-06-10 12:13:52', 0, NULL, 1),
(5097, 'Girija R', '16', '7550151504', '7550151503', 'girijasureshkumar2602@gmail.com', '1991-06-04', 30, '2', '1', 'V Suresh Kumar', 'Officer in Engineering department in DP World CCTL', 32000.00, 2, 15000.00, 17000.00, 'No.1, 6th street Asirvadhapuram Pulianthope Ch-12', 'No.1, 6th Street Asirvadhapuram Pulianthope Ch-12', '2106100005', '1', '2', 'upload_files/candidate_tracker/19080774331_Girija R - Resume updated.docx', NULL, '2', '2021-06-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'I spoke with this candidate in the month of March and rejected this profile. She will not sustain for a long with our domain. Career Gap in between as she traveled to Dubai with her husband and she attended many interviews past 3 months and none got selected.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 12:32:52', 50, '2021-06-11 02:36:45', 0, NULL, 1),
(5098, 'Vivedha', '16', '7358300303', '', 'vivedhavenugopal2023@gmail.com', '1995-07-23', 25, '2', '1', 'Sivaraj', 'Developer', 400000.00, 1, 250000.00, 400000.00, 'Chennai', 'Chennai', '2106100006', '1', '2', 'upload_files/candidate_tracker/31792174039_Vivedha M Resume.pdf', NULL, '2', '2021-06-11', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good, Currently working in the Murugappa group and the official notice is 30 days.She is getting her increment by next month. Recently got married and she is not fine with the SA as she may take a break in between.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 12:35:29', 50, '2021-06-11 02:37:36', 0, NULL, 1),
(5099, 'B HEMAKUMAR', '16', '9361475589', '', 'hemakumar2494@gmail.com', '1994-11-24', 26, '2', '2', 'BOOPALAN', 'RETIRED', 15000.00, 2, 12000.00, 15000.00, 'CHENNAI', 'CHENNAI', '2106100007', '1', '2', 'upload_files/candidate_tracker/77955583107_HEMAKUMAR.docx', NULL, '2', '2021-06-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Seems not much active will not handle the pressure.No knowledge on the MIS and not clear with the position. He will not sustain for long with us in their role. He is much into BGV process', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 12:36:51', 50, '2021-06-11 02:37:09', 0, NULL, 1),
(5100, '', '0', '8428936070', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106100008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-10 01:09:56', 0, NULL, 0, NULL, 1),
(5101, 'Kavya', '16', '7010051285', '8428936070', 'kavya023ramesh@gmail.com', '1997-06-23', 23, '2', '2', 'Ramesh', 'Transaction associate', 80000.00, 1, 19000.00, 25000.00, 'Chennai', 'Chennai', '2106100009', '1', '2', 'upload_files/candidate_tracker/80887589191_kavya resume.pdf', NULL, '2', '2021-06-11', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Currently Working 2 months of the notice period, Not open for SA as she may get married in next 1 yr of time and this month she got increment and expects more on the package from us. Will not sustain for a long', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 01:48:20', 50, '2021-06-11 02:37:21', 0, NULL, 1),
(5102, 'Lokesh Kumar', '16', '8678974541', '8778111388', 'lokeshavi.1904@gmail.com', '1996-04-19', 25, '2', '2', 'Kamalakannan.J', 'Wall paper jewellery', 35000.00, 1, 15500.00, 19000.00, 'Chennai', 'Chennai', '2106110001', '1', '2', 'upload_files/candidate_tracker/75262352596_Lokesh%20update%20resume.docx', NULL, '2', '2021-06-12', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,50/50 Can Give A Try For MIS But He Is Currently Working And His Notice Period Is 30 Days. He Is Having Backend Support In The Banking Domain. The Only Thing Is Notice 30 Days If We Offer Him Not Sure About His Joining.', '3', '1', '', '1', '3', '', '2', '2021-07-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-11 11:51:56', 50, '2021-06-11 12:08:41', 0, NULL, 1),
(5103, 'Soniya', '16', '7010142021', '8189879890', 'sonumath50@gmail.com', '1997-06-28', 23, '4', '2', 'M.kuppan', 'Supervisor', 35000.00, 2, 15000.00, 15000.00, 'Chennai', 'Chennai', '2106110002', '', '2', 'upload_files/candidate_tracker/61955257041_soniya resume.docx', NULL, '3', '2021-06-12', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok, Having around 2+yrs of experience with 4 companies.No Sustainability, and her profile is fully into the voice process. She felt pressure in her previous companies.Her marriage has been fixed,due to lockdown its getting delay.Will not sustain with us for a long', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-11 11:58:25', 50, '2021-06-11 12:16:10', 0, NULL, 1),
(5104, 'anvesh reddy', '5', '9705504552', '', 'anveshreddy7842@gmail.com', '1997-09-13', 23, '2', '1', 'arpitha', 'house wife', 70000.00, 2, 25000.00, 25000.00, 'hyderabad', 'kuketpally', '2106110003', '1', '2', 'upload_files/candidate_tracker/26385283933_Anvesh reddy Resume (1).docx', NULL, '2', '2021-06-12', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'he is not interested in insurance profile', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-11 12:02:13', 1, '2021-06-11 12:04:14', 0, NULL, 1),
(5105, 'syed khaja ehtesham', '5', '6300576578', '', 'syedehtesham67691@gmail.com', '1998-05-13', 23, '2', '2', 'syed khaja mosequeein', 'working', 100000.00, 2, 0.00, 20000.00, 'hyderabad', 'mehandhipatnam', '2106110004', '1', '1', 'upload_files/candidate_tracker/56577123254_EHTESHAM.pdf', NULL, '2', '2021-06-12', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Tried reaching his but not responding', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-11 12:42:50', 1, '2021-06-11 12:47:55', 0, NULL, 1),
(5106, 'Prakash Deshni', '5', '9676679414', '', 'prakashdeshinii9@gmail.com', '1996-02-04', 25, '2', '2', 'iyllaiah', 'own business and farmer', 100000.00, 2, 25000.00, 27000.00, 'hyderabad', 'kuketpally', '2106110005', '1', '2', 'upload_files/candidate_tracker/42779580171_PRAKASH RESUME-1.docx', NULL, '2', '2021-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,3yrs with 3 companies into Liquor Product Sales.Fresher for our role.Doubtful in handling our sales.Sustainability doubts on this profile. Since their family is not comfortable with liquor sales, he is looking for a different domain. Will not handle our pressure.', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-11 12:56:50', 1, '2021-06-11 01:01:26', 0, NULL, 1),
(5107, 'Mahesh Rambala', '5', '7207297693', '', 'maheshrambala123@gmail.com', '1998-06-09', 23, '2', '2', 'RambalaSubramaniam', 'working', 50000.00, 0, 0.00, 23000.00, 'hyderabad', 'kondapur', '2106110006', '1', '1', 'upload_files/candidate_tracker/23451186493_0_1616509078262Resume_Mahesh.pdf', NULL, '2', '2021-06-12', 0, '', '3', '59', '2021-06-17', 286000.00, '', '6', '2022-06-17', '1', 'Selected for veben Team with CTC - 286000 includes PF/PT in Patroniss as a staff', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-11 01:16:19', 60, '2021-06-15 03:50:30', 0, NULL, 1),
(5108, 'Dasi Gopi', '5', '9603061162', '', 'gopidasi9640@gmail.com', '1993-11-27', 27, '2', '2', 'bhupal', 'late', 10000.00, 1, 20000.00, 25000.00, 'hyderabad', 'lb nagar', '2106110007', '1', '2', 'upload_files/candidate_tracker/94932862945_Gopi Dasi Re (1).docx', NULL, '2', '2021-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication. Only local Language. He is not responding to the meet cal and sending a message stating that he is not comfortable with this position.', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-11 02:30:33', 1, '2021-06-11 02:32:50', 0, NULL, 1),
(5109, 'Innayathullah', '16', '9884256702', '7397257742', 'inayathkhan2415@yahoo.com', '1994-04-29', 27, '3', '2', 'Ubadullah', 'Tailor', 300000.00, 2, 18000.00, 20000.00, 'Chennai', 'Perambur', '2106110008', '', '2', 'upload_files/candidate_tracker/96432418022_Inayathkhan Cv.pdf', NULL, '1', '2021-06-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Communicating in English he prefers to speak only in Tamil, No experience and knowledge on the MIS part, Fresher for this role. Have experience using SAP FICO. Not much comfortable with the Service Agreement, he can give his acceptance for SA only based on the salary. His current TH is 18k.Sustainability doubts on the profile', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-11 02:52:32', 60, '2021-06-14 05:33:39', 0, NULL, 1),
(5110, 'Gayathri YS', '16', '9566132708', '', 'Gayu.ys@gmail.com', '1995-03-28', 26, '4', '1', 'Saravanan M', 'Cine Dancer', 30000.00, 2, 2.76, 3.50, 'Vadaplani', 'saligramam', '2106110009', '', '2', 'upload_files/candidate_tracker/37495026071_Gayathri resume with 3yrs of experience in finance executive.pdf', NULL, '1', '2021-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Is Ok,3.5 Yrs With 3 Companies And Much Into Finance Positions.She Says Ok With The Agreement But Not Sure About The Long Stay As She Got Married A Year Back, She May Take A Break. Her CTC Is 2.7 LPA And The Expectation Is Around 3 LPA. ', '3', '2', '0', '1', '1', '0', '2', '2021-06-21', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-11 04:17:46', 1, '2021-06-11 04:25:35', 0, NULL, 1),
(5111, 'Shashidhar Reddy Aileni', '5', '9908543537', '', 'shashireddy3537@gmail.com', '1994-12-30', 26, '2', '2', 'tadma reddy', 'late', 35000.00, 1, 23000.00, 26000.00, 'hyderabad', 'uppal', '2106120001', '1', '2', 'upload_files/candidate_tracker/99850909479_shashi%20resume3537.docx', NULL, '2', '2021-06-14', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-12 10:34:26', 1, '2021-06-12 10:37:03', 0, NULL, 1),
(5112, 'Puranjaya Sahu', '5', '7416657738', '', 'puranjaya94@gmail.com', '1995-05-25', 26, '2', '2', 'prakash chandra sahu', 'rtd', 35000.00, 1, 13500.00, 25000.00, 'hyderabad', 'secundrabad', '2106120002', '1', '2', 'upload_files/candidate_tracker/9149054022_Puranjaya_CV.pdf', NULL, '2', '2021-06-14', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-12 11:14:49', 1, '2021-06-12 11:18:32', 0, NULL, 1),
(5113, 'revathi', '4', '6379358841', '', 'revsri75@gmail.com', '2000-04-05', 21, '2', '2', 'Maruthakasi.S', 'farmer', 24000.00, 0, 0.00, 12000.00, 'pallavaram', 'chennai', '2106120003', '1', '1', 'upload_files/candidate_tracker/48206377372_Revathi1.pdf', NULL, '2', '2021-08-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 3m exp in car showroom, Body Language and way of speaking is not good. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-12 11:24:18', 7, '2021-08-17 06:03:44', 0, NULL, 1),
(5114, 'karthika', '20', '9025463563', '', 'karthikadhani20169_w55@indeedemail.com', '2001-05-07', 20, '2', '2', 'rajesh', 'business', 15000.00, 1, 0.00, 10000.00, 'Trichy', 'trichy', '2106120004', '1', '1', 'upload_files/candidate_tracker/38198932654_ResumeKARTHIKAR.pdf', NULL, '2', '2021-06-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Switched OFF', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-12 01:34:48', 8, '2021-06-12 04:51:47', 0, NULL, 1),
(5115, 'mohamed sidik', '4', '9003834878', '9626944097', 'kmsithick@gmai.com', '1998-08-08', 0, '2', '2', 'kamaludhini', 'business', 12000.00, 2, 0.00, 10000.00, 'pudhalur', 'tanjavur', '2106120005', '1', '1', 'upload_files/candidate_tracker/8907650825_abu.pdf', NULL, '2', '2021-06-03', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lockdown Period Hold Long Pending ', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-12 01:46:59', 7, '2021-06-12 04:53:58', 0, NULL, 1),
(5116, 'J. Indrani', '16', '7338812601', '', 'indraniindu95@gmail.com', '1995-06-13', 25, '3', '1', 'R. Jothiprakash', 'Car driver', 18000.00, 2, 19500.00, 25000.00, 'Old washermenpet chennai', 'Old washermenpet chennai', '2106120006', '', '2', 'upload_files/candidate_tracker/92235048947_Resume-1.doc', NULL, '3', '2021-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok.she is into reconciliation process and her interest also towards the same.For MIS fresher and not much comfortable with SA as she got married few months back.Not much very active in the call.Sustainability doubts.Rejected', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-12 02:12:52', 1, '2021-06-12 03:09:34', 0, NULL, 1),
(5117, 'KHETHAVATH ARUN KUMAR', '5', '9010124161', '', 'khethavatharunkumar@adc.edu.in', '1997-01-24', 24, '2', '2', 'sardar', 'farmer', 10000.00, 2, 20000.00, 25000.00, 'hyderabad', 'miapur', '2106120007', '1', '2', 'upload_files/candidate_tracker/40260315463_Copy of ARUN KUMAR.pdf', NULL, '2', '2021-06-14', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'rejected', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-12 03:43:15', 1, '2021-06-12 03:46:40', 0, NULL, 1),
(5118, '', '0', '7904654543', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106120008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-12 04:23:46', 0, NULL, 0, NULL, 1),
(5119, 'deenadhayalan', '4', '7904645435', '7200606132', 'deenadhayalansurya@gmail.com', '1999-07-18', 21, '2', '2', 'dharshana moorthy', 'business', 15000.00, 1, 0.00, 1000.00, 'thiruvallur', 'thiruvallur', '2106120009', '1', '1', 'upload_files/candidate_tracker/13054223450_deenapdf.pdf', NULL, '2', '2021-06-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-12 05:13:16', 1, '2021-06-12 05:20:30', 0, NULL, 1),
(5120, 'SARAVANAN S', '4', '9150607994', '', 'saravanansv17899@gmail.com', '1999-08-17', 21, '2', '2', 'Selvam', 'Farmer', 8000.00, 2, 0.00, 11000.00, 'Jayamkondam', 'Chennai', '2106120010', '1', '1', 'upload_files/candidate_tracker/59566513344_Resume.pdf', NULL, '2', '2021-06-12', 0, '', '3', '60', '2021-06-14', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Chennai Suriya Elite Team with CTC 120000 TH-9500 Cash mode Joining Date-14-Jun-2021', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-12 06:57:50', 60, '2021-06-14 12:52:31', 0, NULL, 1),
(5121, 'Saikumar Muddam', '5', '7032438611', '', 'muddamsaikumar98@gmail.com', '1998-07-25', 22, '2', '2', 'kishan', 'farmer', 15000.00, 1, 0.00, 15000.00, 'hyderabad', 'mehandhipatnam', '2106140001', '1', '1', 'upload_files/candidate_tracker/81545389392_mba resume.pdf', NULL, '2', '2021-06-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,he donxquott have interest towards the insurance domain.Rejected', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-14 11:13:12', 1, '2021-06-14 11:16:00', 0, NULL, 1),
(5122, 'SivaSathya s', '4', '7826041775', '8015828108', 'Ananthsiva9795@gmail.com', '1997-03-08', 24, '4', '2', 'A.selvaraj', 'Security', 7000.00, 1, 11.00, 13.00, 'Srimushnam', 'Chennai', '2106140002', '', '2', 'upload_files/candidate_tracker/17418034440_CV_2020-12-19-090336.pdf', NULL, '2', '2021-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-14 01:40:10', 1, '2021-06-14 01:50:47', 0, NULL, 1),
(5123, 'Vedanth Kulkarni', '5', '6304582810', '', 'vedanthkulkarnibond@gmail.com', '1998-11-03', 22, '2', '2', 'Ganesh Kulkarni', 'working', 30000.00, 1, 0.00, 20000.00, 'hyderabad', 'ramanthapur', '2106140003', '1', '1', 'upload_files/candidate_tracker/67897344993_1.docx', NULL, '2', '2021-06-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok, Working In Hospital Handling The Coordination Part, He Is Into A Contract And Notice Period Is 30 Days. Seems Not Much Comfortable With The Insurance Domain.', '5', '1', '0', '3', '4', '0', '2', '2021-06-16', '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-14 02:08:36', 1, '2021-06-14 02:13:55', 0, NULL, 1),
(5124, 'Konka Suman', '5', '9703529979', '', 'sumankonka45@gmail.com', '1992-06-04', 29, '2', '2', 'chinnaiah', 'working', 40000.00, 1, 16000.00, 20000.00, 'hyderabad', 'secundrabad', '2106140004', '1', '2', 'upload_files/candidate_tracker/34125754501_suman resume (1).pdf', NULL, '2', '2021-06-15', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will not fit', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-14 02:16:17', 1, '2021-06-14 02:37:37', 0, NULL, 1),
(5125, 'sivasathya', '4', '8015828108', '', 'ananthsiva9795@gmail.com', '1997-03-08', 24, '2', '2', 'selvaraj', 'secutiry', 7000.00, 1, 0.00, 9000.00, 'cuddalore', 'arumbakkam', '2106140005', '1', '1', 'upload_files/candidate_tracker/42975441980_CV_2020-12-19-090336.pdf', NULL, '2', '2021-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-14 02:22:20', 1, '2021-06-14 02:24:21', 0, NULL, 1),
(5126, '', '0', '9884278228', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106140006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-14 03:28:32', 0, NULL, 0, NULL, 1),
(5127, 'm shajitha banu', '4', '7448301325', '', 'shajitha069@gmail.com', '2000-11-01', 20, '2', '2', 'mohammed aafif', 'not working', 25000.00, 2, 0.00, 9000.00, 'chennai', 'porur', '2106140007', '1', '1', 'upload_files/candidate_tracker/66022075373_CV_2020-12-19-090336.pdf', NULL, '2', '2021-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-14 03:34:54', 1, '2021-06-14 04:12:51', 0, NULL, 1),
(5128, '', '0', '9840225993', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106140008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-14 04:10:31', 0, NULL, 0, NULL, 1),
(5129, 'soma naganath', '5', '8555952090', '', 'somanaganath123@gmail.com', '1996-05-26', 25, '2', '2', 'sathyanarayana', 'late', 40000.00, 1, 22000.00, 27000.00, 'hyderabad', 'kuketpally', '2106150001', '1', '2', 'upload_files/candidate_tracker/2628774927_Soma Naganath Resume.docx', NULL, '2', '2021-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,having exp in IT Sales (B2B) 1.4 yrs of exp and looking for a change only for salary hike,also he feels pressure in this job.He gave some interview relates to the same IT Sales.Will not sustain with our position', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-15 10:48:24', 1, '2021-06-15 10:51:21', 0, NULL, 1),
(5130, 'Abdul azeem', '5', '7780736899', '', 'abdulazeem272813@gmail.com', '1994-09-28', 26, '2', '2', 'abdul azis', 'airtel office', 22000.00, 1, 16000.00, 23000.00, 'hyderabad', 'santhosh nagar', '2106150002', '1', '2', 'upload_files/candidate_tracker/14528907477_New Resume 32021.pdf', NULL, '2', '2021-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Seems not much active and not proper reasons for relieving from the previous organizations. Started his career with Dish sales and worked for 3 yrs with no increment,1 yr with kotak. Will not suits much wth our positions and sustainability doubts on the candidate', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-15 10:58:45', 1, '2021-06-15 01:47:38', 0, NULL, 1),
(5131, 'Malloju Madhu', '5', '8885510536', '', 'madhuchary399@gmail.com', '1996-08-05', 24, '2', '2', 'malloju achary', 'late', 20000.00, 1, 0.00, 20000.00, 'hyderabad', 'sangeetha nagar', '2106150003', '1', '1', 'upload_files/candidate_tracker/32624633823_resume (12).pdf', NULL, '2', '2021-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average.1.6 yrs with 2 companies, experience in POS xxamp QR Code B2B sales. currently working in the company with commission basis. Having a Bike and laptop. Feeling pressure in his current role. Sustainability doubts on this candidate.Pressure handling doubts', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-15 11:06:50', 1, '2021-06-15 11:08:41', 0, NULL, 1),
(5132, 'Sai Pranith', '5', '8341950754', '', 'spmudhulkar@gmail.com', '2000-01-24', 21, '2', '2', 'ramesh mudhulkar', 'own business', 50000.00, 2, 0.00, 15000.00, 'telengana', 'nirmal', '2106150004', '1', '1', 'upload_files/candidate_tracker/42973891620_sai pranith resume.docx', NULL, '2', '2021-06-16', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-15 01:04:35', 1, '2021-06-15 01:15:58', 0, NULL, 1),
(5133, 'habert raj', '16', '9380721852', '9381027466', 'habertraj.diamond@gmail.com', '1994-08-06', 26, '4', '2', 'felix .p', 'business', 7000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2106150005', '', '1', 'upload_files/candidate_tracker/67324358700_Resume Habert 1.pdf', NULL, '2', '2021-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude issue No documented proof of his current experience.The expectation is very high.Communication ok, Working with Indusind in third party payroll, only for 9 months and looking for a permanent position.Not much working knowledge in excel, having basic knowledge in Excel. Career Gap and he was into Amway business.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-15 04:18:18', 1, '2021-06-15 07:15:27', 0, NULL, 1),
(5134, 'Kaviya.G', '4', '7305873411', '7550181319', 'Kaviya1319@gmail.com', '2000-01-19', 21, '2', '2', 'G. Meenakshi', 'Cooking', 25000.00, 1, 10000.00, 12500.00, 'Poonamallee', 'Poonamallee', '2106150006', '1', '2', 'upload_files/candidate_tracker/14417605514_Resume kaviya.pdf', NULL, '1', '2021-06-15', 1, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'Not suit for telecalling, Low Voice', '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-15 05:17:30', 1, '2021-06-15 05:46:30', 0, NULL, 1),
(5135, 'Nafees', '16', '7358175325', '', 'asmanafees1@gmail.com', '2000-10-05', 20, '2', '2', 'Fairoz', 'Ritired', 15000.00, 5, 0.00, 10000.00, 'Kolathur', 'Kolathur', '2106160001', '1', '1', 'upload_files/candidate_tracker/77140440544_Nafees.pdf', NULL, '2', '2021-06-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-16 09:34:22', 50, '2021-06-16 05:47:40', 0, NULL, 1),
(5136, 'Jennifer Priscilla', '16', '9965537932', '9445146472', 'jenniferpriscilla22@gmail.com', '1996-10-22', 24, '4', '1', 'Belvin Dharma', 'Software Engineer', 50000.00, 1, 200000.00, 250000.00, 'Chennai', 'Chennai', '2106160002', '', '2', 'upload_files/candidate_tracker/88165591933_JP Resume.pdf', NULL, '2', '2021-06-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok.Distance around 16 kms,recently married and not comfortable with the service Agreement.no knowledge in MIS,need to train a lot in excel.', '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 09:45:31', 1, '2021-06-16 10:01:02', 0, NULL, 1),
(5137, 'Santhosh', '16', '9445170382', '9789034783', 'skanna163@gmail.com', '1998-03-16', 23, '4', '2', 'Sivakumar', 'Business', 40000.00, 0, 0.00, 15000.00, '73/36 Kothawal chavadi street Saidapet', '73/36 Kothawal chavadi street Saidapet', '2106160003', '', '1', 'upload_files/candidate_tracker/66280817527_Santhosh Resume (1).pdf', NULL, '2', '2021-06-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is good,Fresher and focusing on the accounts xxamp finance positions,He is preparing for CMA exams and he wants to get into that field only.He s not ok with service agreement.Just for time being he looks into other positions.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 09:56:00', 1, '2021-06-16 10:04:40', 0, NULL, 1),
(5138, 'Dinesh Kumar s', '4', '8248495545', '9176024351', 'dineshsiva17@gmail.com', '1999-12-05', 21, '4', '2', 'Siva Kumar R', 'Interior designer', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2106160004', '', '1', 'upload_files/candidate_tracker/9977245547_Dinu Resume.pdf', NULL, '3', '2021-06-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 10:38:21', 50, '2021-06-16 10:46:35', 0, NULL, 1),
(5139, 'Vallepu Shivaji', '5', '9014375956', '', 'shivajiv73@gmail.com', '1993-06-10', 28, '2', '1', 'shanthi', 'home maker', 25000.00, 2, 18000.00, 21000.00, 'hyderabad', 'uppal', '2106160005', '1', '2', 'upload_files/candidate_tracker/9520899425_I am sharing \'Document\' with you.pdf', NULL, '2', '2021-06-17', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for the profile', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-16 11:00:46', 1, '2021-06-16 11:03:16', 0, NULL, 1),
(5140, 'B Narasimha Rao', '5', '7672017380', '', 'narasimha9666622@gmail.com', '1992-10-05', 28, '2', '2', 'shankar rao', 'farmer', 10000.00, 2, 16000.00, 18000.00, 'hyderabad', 'mehandhipatnam', '2106160006', '1', '2', 'upload_files/candidate_tracker/7281255046_Boddu Narsimha Rao.docx', NULL, '2', '2021-06-17', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for the profile', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-16 11:36:28', 1, '2021-06-16 11:38:58', 0, NULL, 1),
(5141, 'K.karanesh', '3', '9962818821', '9940257439', 'Karaneshkumar97@gmail.com', '1997-09-23', 23, '4', '2', 'K.kumar', 'Business', 40000.00, 1, 0.00, 13000.00, 'Velachery,chennai', 'Velachery,chennai', '2106160007', '', '1', 'upload_files/candidate_tracker/6895533582_karanesh.pdf', NULL, '2', '2021-06-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 01:40:20', 1, '2021-06-16 01:47:26', 0, NULL, 1),
(5142, 'Mummoorthy B', '16', '9566993368', '', 'moorthysenthil96@gmail.com', '1996-02-19', 25, '3', '2', 'Nill', 'Nill', 100000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2106160008', '', '2', 'upload_files/candidate_tracker/67272008975_I_02122019_120_744679_249461.PDF', NULL, '3', '2021-06-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication, Currently working with Tech Mahindra in voice process and his notice period is 30 days.3yrs with 3 companies, no sustainability with the candidate.No MIS knowledge he mainly focuses on the salary only. He can sign the agreement but not ready to submit the documents', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 02:26:57', 50, '2021-06-16 02:47:58', 0, NULL, 1),
(5143, 'Michael Raj C', '22', '7358717998', '9790959761', 'Michaelacton968@gmail.com', '1991-04-15', 30, '4', '2', 'Chinnapan', 'Wages', 10000.00, 2, 14000.00, 17000.00, 'Avadi', 'Avadi', '2106160009', '', '2', 'upload_files/candidate_tracker/96411892397_Michael Resume.pdf', NULL, '3', '2021-06-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average and manageable. Not much experienced in excel, currently working and he is into notice with 15 days left. Given him a task to check his writing skills,But writing skill is not upto the mark', '2', '2', '', '1', '3', '', '2', '1970-01-01', '3', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 04:43:25', 50, '2021-06-16 05:05:51', 0, NULL, 1),
(5144, 'R. Sridharan', '16', '9841133800', '9444544655', 'Sridharanr20@gmail.com', '1999-11-18', 21, '4', '2', 'MALLIKA', 'House wife', 18000.00, 1, 0.00, 18000.00, '19kamarjar street 3rd cross street vrpuram che-93', 'Saligramam (Chennai)', '2106160010', '', '1', 'upload_files/candidate_tracker/37389654382_R.SRIDHARAN RESUME.pdf', NULL, '3', '2021-06-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Fresher Profile.Will not much suits for MIS role.Not 100% ok with SA,however Given a task to check his writing skills, but the content is not up to the level', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 05:04:29', 1, '2021-06-16 05:33:29', 0, NULL, 1),
(5145, 'rohitth nagamalla', '5', '9182453586', '', 'rohitthnagamallau@gmail.com', '1996-01-27', 25, '2', '2', 'mehipal', 'sales', 20000.00, 0, 0.00, 20000.00, 'hyderbad', 'malakpet', '2106170001', '1', '1', 'upload_files/candidate_tracker/68448244627_rohith latest.pdf', NULL, '2', '2021-06-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'candidate got another offer and he prefers to go with that offer', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-17 10:55:28', 1, '2021-06-17 10:58:13', 0, NULL, 1),
(5146, 'Akhil Goud', '5', '9703256614', '', 'akhilgoudk1995@gmail.com', '1995-08-31', 25, '2', '2', 'k dhanraj goud', 'own business', 300000.00, 2, 30000.00, 25000.00, 'hyderabad', 'koti', '2106170002', '1', '2', 'upload_files/candidate_tracker/52421564816_Akhil goud Final.pdf', NULL, '2', '2021-06-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average.No sustainability worked with various domain,No knowledge on Insurance Domain.No Higher Education, completed only 12th in open education.Will not sustain with us', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-17 11:03:49', 1, '2021-06-17 11:07:13', 0, NULL, 1),
(5147, 'Aswitha S', '4', '9944382464', '9944653434', 'aswithasaro98@gmail.com', '1998-06-02', 23, '2', '2', 'Saravanan.A', 'Site supervisor', 20000.00, 1, 0.00, 12000.00, 'Arambakkam', 'Chennai', '2106170003', '1', '1', 'upload_files/candidate_tracker/58518688914_Aswitha Saravanan0206 (1) (1).pdf', NULL, '3', '2021-06-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-17 12:36:27', 1, '2021-06-17 12:41:51', 0, NULL, 1),
(5148, 'boddapati charishma', '4', '7845699745', '9600012190', 'bcharishma19@gmail.com', '1998-08-13', 22, '2', '2', 'ramanjaneya swamy', 'southern railway', 50000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2106170004', '1', '1', 'upload_files/candidate_tracker/77430331285_resume_1622466837514.pdf', NULL, '3', '2021-06-18', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'not suitable for sales and not able to handle pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-17 01:43:47', 1, '2021-06-17 02:11:54', 0, NULL, 1),
(5149, '', '0', '8270919994', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106170005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-17 01:49:26', 0, NULL, 0, NULL, 1),
(5150, 'Aarthy', '4', '9087706240', '', 'aarthy2661998@gmail.com', '1998-06-26', 22, '2', '2', 'Chitra manivannan', 'Vegetable merchant', 15000.00, 1, 0.00, 15000.00, 'No:403/53, Bharathi nagar, Thiruvottriyur,chennai', 'No:403/53, Bharathi Nagar, Thiruvottriyur', '2106170006', '1', '1', 'upload_files/candidate_tracker/40416771712_Aarthy_2019.pdf', NULL, '3', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-17 02:04:42', 1, '2021-06-17 02:08:17', 0, NULL, 1),
(5151, '', '0', '9361792344', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106170007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-17 03:18:33', 0, NULL, 0, NULL, 1),
(5152, 'lakshmi s g', '16', '9884576313', '9840865701', 'lakshmikrish67@gmail.com', '1995-03-07', 26, '2', '2', 'solaiyan v', 'retired from ashok leyland', 12000.00, 0, 16000.00, 25000.00, 'anna nagar', 'anna nagar', '2106170008', '1', '2', 'upload_files/candidate_tracker/62090001046_Lakshmi S G - 1.pdf', NULL, '2', '2021-06-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok, Previously Worked In A Contract Role. Salary Expectation Is High And Not Much Comfortable With The SA,Content What She Gave Gets Plagarism', '3', '2', '', '1', '3', '', '2', '2021-06-21', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-17 04:10:51', 50, '2021-06-18 10:10:51', 0, NULL, 1),
(5153, 'Sai Praveen. S', '16', '8778396770', '9940453707', 'Satzz2012@gmail.com', '1992-11-09', 28, '2', '1', 'Jayapriya', 'Healthcare domain', 44000.00, 1, 19.80, 21.00, 'Tambaram, chennai', 'Tambaram, chennai', '2106170009', '1', '2', 'upload_files/candidate_tracker/76685428296_Resume (1).pdf', NULL, '3', '2021-06-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attended Interview and System Task but not suitable for our role. Will not Sustain', '3', '1', '', '1', '1', '', '2', '2021-06-19', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-17 04:31:51', 50, '2021-06-18 10:11:09', 0, NULL, 1),
(5154, 'Kokila. M', '4', '6382364632', '7358214610', 'kokilamani0908@gmail.com', '1999-08-09', 21, '2', '2', 'Mani. N', 'Daily wages', 70000.00, 1, 0.00, 15000.00, '2/11 Appadurai Street, shanthi Nagar, Ramapuram,', 'Chennai', '2106170010', '1', '1', 'upload_files/candidate_tracker/43621658134_1622364772614Resume_Kokila.pdf', NULL, '3', '2021-06-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very slow and no convincing, expt is 10-15k, from ramapuram, farher and mother both are cooli.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-17 04:40:11', 7, '2021-06-18 02:01:56', 0, NULL, 1),
(5155, 'M.Suriyaprakash', '4', '9790938578', '9025437427', 'suryaprakash6787@gmail.com', '1991-06-06', 30, '3', '2', 'M.Tamilselvi', 'Housewife', 10000.00, 2, 12000.00, 15000.00, 'Chennai', 'Pattabiram', '2106170011', '', '2', 'upload_files/candidate_tracker/36854937450_SuriyaPrakash .docx', NULL, '1', '2021-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have CRM exp, No Voice Clarity, Frequent Job changer. Too long distance around 60KMS up and down .Even for Tiruvallur too long.. will not handle pressure', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-06-17 05:22:28', 60, '2021-10-19 03:27:42', 0, NULL, 1),
(5156, 'Roobini', '6', '8939590487', '8870193468', 'roobini8870@gmail.com', '1998-11-21', 22, '2', '2', 'Cholamuthu', 'No', 10000.00, 1, 10500.00, 12000.00, 'Maruvathur(po) thuraiyur(tk) trichy(dk)', 'Tirisulam Chennai', '2106170012', '1', '2', 'upload_files/candidate_tracker/90025744838_roobini .pdf', NULL, '3', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-17 05:56:33', 1, '2021-06-18 09:29:43', 0, NULL, 1),
(5157, 'satharkan', '4', '6369494681', '9159700965', 'reazsonu3006@gmail.com', '1998-06-06', 23, '2', '2', 'MAHABOOB kan', 'business', 15000.00, 1, 0.00, 1000.00, 'tanjavur', 'Tanjavur', '2106180001', '1', '1', 'upload_files/candidate_tracker/80195685418_satharkhan .pdf', NULL, '2', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 10:48:19', 1, '2021-06-18 10:54:58', 0, NULL, 1),
(5158, 'SANJEEV', '4', '8124303068', '8124303067', 'sanjeevsmart13@gmail.com', '1997-01-13', 24, '2', '2', 'murugan', 'business', 15000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2106180002', '1', '1', 'upload_files/candidate_tracker/70652572470_sanjeev resume.docx.pdf', NULL, '2', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 10:56:43', 1, '2021-06-18 11:01:56', 0, NULL, 1),
(5159, 'ajay', '4', '9080547763', '', 'ajayramana6@gmail.com', '1999-09-28', 21, '2', '2', 'venkatramana', 'manager', 25000.00, 1, 0.00, 13000.00, 'theni', 't.nagar', '2106180003', '1', '1', 'upload_files/candidate_tracker/96076487544_AJAY1777 RESUME.docx', NULL, '2', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 11:06:21', 1, '2021-06-18 11:17:10', 0, NULL, 1),
(5160, 'jayashree', '4', '9080295879', '', 'jayashree2000.g@gmail', '2000-03-30', 21, '2', '2', 'gunasekarana', 'harbour', 17000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2106180004', '1', '1', 'upload_files/candidate_tracker/46743136192_Jayashree G Resume word-converted.pdf', NULL, '2', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 11:23:13', 1, '2021-06-18 11:25:28', 0, NULL, 1),
(5161, 'barath', '4', '9698245828', '', 'bharathkumar1516@gmail.com', '2000-06-29', 20, '2', '2', 'balaji', 'temple', 12000.00, 1, 0.00, 10000.00, 'sout main street', 'tanjavur', '2106180005', '1', '1', 'upload_files/candidate_tracker/11324827369_bharath resume.docx', NULL, '2', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 11:27:25', 1, '2021-06-18 11:30:35', 0, NULL, 1),
(5162, 'yuvashree', '4', '9566161292', '', 'evajoe9566161@gmail.com', '1999-03-09', 22, '2', '2', 'raja gopal', 'plumber', 20000.00, 2, 0.00, 10000.00, 'madavaram', 'chennai', '2106180006', '1', '1', 'upload_files/candidate_tracker/12325631069_Document from Yuvashree Rajagopal.pdf', NULL, '2', '2021-06-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very childish, 5050', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 11:33:45', 7, '2021-08-03 05:56:46', 0, NULL, 1),
(5163, '', '0', '9677076353', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106180007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-18 11:40:58', 0, NULL, 0, NULL, 1),
(5164, 'vidudalai', '4', '8270771435', '', 'vetrividudalai1@gmail.com', '1994-11-25', 26, '2', '2', 'shankar', 'journalist', 1000.00, 1, 0.00, 10000.00, 'tanjavur', 'tanjavur', '2106180008', '1', '1', 'upload_files/candidate_tracker/22051808670_viduthala resume-1.pdf', NULL, '2', '2021-06-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain, done her mpil and planning do phd, 1yr as Professor in a clg, father is a Reporter, doing her race couching for banking.', '1', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 11:58:46', 1, '2021-06-18 12:01:47', 0, NULL, 1),
(5165, 'barathi sesan', '4', '9655972197', '', 'barathisesan12@gmail.com', '1997-05-21', 24, '2', '2', 'pazani', 'police', 15000.00, 1, 0.00, 10000.00, 'tanjavur', 'tanjavur', '2106180009', '1', '1', 'upload_files/candidate_tracker/32419004114_Bharathi seshan resume-converted.pdf', NULL, '2', '2021-06-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain, and fresher expt is 12k', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 12:03:49', 7, '2021-08-03 05:57:23', 0, NULL, 1),
(5166, 'MANO M', '4', '9159682932', '', 'avm.mano91@gmail.com', '1991-06-04', 30, '2', '2', 'MAHALINGAM B', 'BUSINESS', 20000.00, 1, 0.00, 20000.00, 'KARAIKUDI', 'KARAIKUDI', '2106180010', '1', '1', 'upload_files/candidate_tracker/38309384924_CV_2020-06-30-124736.pdf', NULL, '3', '2021-06-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', '29, has 3yr exp in other field 23k, from karaikudi will relocate, will not suite for our process and will not sustain for salary, expt 12k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-18 12:09:03', 1, '2021-06-18 12:51:16', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5167, 'Vinodhini.B', '4', '8056062735', '7358729465', 'vinodhinib25994@gmail.com', '2001-03-30', 20, '2', '2', 'Boopathi', 'Coolie', 6000.00, 1, 0.00, 10000.00, 'Mylapore', 'Mylapore', '2106180011', '1', '1', 'upload_files/candidate_tracker/80390807624_Vinodhini.B Resume.pdf', NULL, '3', '2021-06-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-18 12:29:26', 1, '2021-06-18 12:41:44', 0, NULL, 1),
(5168, 'A.Aishwaryarai', '4', '9344270289', '9751018028', 'aishuwaraya2000@gmail.com', '2000-02-04', 21, '2', '2', 'Anbu', 'student', 10000.00, 1, 0.00, 18000.00, 'Pethathampatti', 'Pethathampatti', '2106180012', '1', '1', 'upload_files/candidate_tracker/66264698400_Share AISHWARAYA.RESUME2.pdf', NULL, '3', '2021-06-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no sales and convincing and will not suite for sales and expt is 15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-18 12:53:26', 1, '2021-06-18 01:02:31', 0, NULL, 1),
(5169, 'Mala M V', '4', '8072752315', '9486070541', 'maladhanammv@gmail.com', '1999-03-01', 22, '2', '2', 'VASUDEVAN M N', 'Weaver', 5000.00, 1, 0.00, 9000.00, 'Thanjavur', 'Thanjavur', '2106180013', '1', '1', 'upload_files/candidate_tracker/49301407019_msc resume Word Document (3).pdf', NULL, '3', '2021-06-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she already Attended interview on june 10th. jennifers', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-18 01:16:12', 8, '2021-08-03 06:14:33', 0, NULL, 1),
(5170, 'anisha malar . j', '16', '9840262757', '8778669540', 'anishamalar1920@gmail.com', '2000-11-19', 20, '2', '2', 'r. jesu doss', 'freshers', 20000.00, 1, 0.00, 22000.00, 'chennai', 'chennai', '2106180014', '1', '1', 'upload_files/candidate_tracker/98854082620_new resume.pdf', NULL, '2', '2021-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok, Fresher Profile For The MIS Role, Basic Knowledge In Excel, But Not Much Ok With The SA And Document Submission,', '3', '1', '', '1', '1', '', '2', '2021-06-21', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-18 01:18:48', 50, '2021-06-18 06:12:06', 0, NULL, 1),
(5171, '', '0', '8778669540', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106180015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-18 01:25:30', 0, NULL, 0, NULL, 1),
(5172, 'RAMAKRISHNAN P', '4', '9629822927', '', 'ramakrishna962982@gmail.com', '1997-08-25', 23, '2', '2', 'MALATHI P', 'Housewife', 25000.00, 1, 0.00, 22000.00, 'Karaikudi', 'Karaikudi', '2106180016', '1', '1', 'upload_files/candidate_tracker/31827860622_1618220029413_1618220018665_1618220008086_1618220000153_1618219997824_P.RAMAKRISHNAN RESUME.pdf', NULL, '3', '2021-06-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'time being looking for job, he was into real estate and car broking biz, will not sustain. expt is 12-15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-18 01:37:18', 1, '2021-06-18 01:42:08', 0, NULL, 1),
(5173, 'G. Lavanya', '4', '7448712048', '9629501075', 'lavanya.18051995@gmail.com', '1995-05-18', 26, '2', '1', '160 nsk nagar Nsk main road Arumbakkam chennai', 'Housewife', 11000.00, 1, 14000.00, 11000.00, '160 Nsk Nagar Nsk Main Road Arumbakkam Chennai', '160 Nsk Nagar Nsk Main Road Arumbakkam Chennai', '2106180017', '1', '2', 'upload_files/candidate_tracker/2970150618_imgtopdf_generated_1806211357053.pdf', NULL, '3', '2021-06-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '1yr as process ass 14k, resently married from arumbakkam, will not handle pressure, worked in times of india newspaper sales, felt pressure and relived from that. expt is 10k.', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-18 01:41:45', 1, '2021-06-18 03:53:02', 0, NULL, 1),
(5174, 'Bleseena Amalnath', '26', '7358438431', '9789938598', 'Bleseenaa1998@gmail.com', '1998-07-05', 22, '2', '2', 'Amalnath', 'private employee', 25000.00, 1, 0.00, 15000.00, 'Ambattur chennai', 'Chennai', '2106180018', '1', '1', 'upload_files/candidate_tracker/69124765417_BLESEENA A-resume.pdf', NULL, '2', '2021-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok, Fresher Profile, No Idea Into Position What She Applied, Need To Train A Lot For The Role. Need Time To Check With Her Parents On The Service Agreement.She Did Certification In NISM Mutual Fund Too', '3', '1', '', '1', '1', '', '2', '2021-06-21', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-18 03:39:51', 50, '2021-06-18 06:12:17', 0, NULL, 1),
(5175, 'Srikant Mohanty', '16', '6369749571', '7021655681', 'srikantm1820@gmail.com', '2000-02-18', 21, '2', '2', 'Sridhar Mohanty', 'Ex-Navy Serviceman', 40000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2106180019', '1', '1', 'upload_files/candidate_tracker/34439986459_srikant_cv2.pdf', NULL, '3', '2021-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suits for our position,will not sustain for a long', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-18 03:40:57', 50, '2021-06-18 06:12:27', 0, NULL, 1),
(5176, '', '0', '8825677965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106180020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-18 05:05:38', 0, NULL, 0, NULL, 1),
(5177, '', '0', '8939716149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106180021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-18 05:41:11', 0, NULL, 0, NULL, 1),
(5178, '', '0', '7358576937', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106180022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-18 05:47:59', 0, NULL, 0, NULL, 1),
(5179, '', '0', '9791070279', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106180023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-18 06:52:47', 0, NULL, 0, NULL, 1),
(5180, 'gokul', '4', '7299871575', '', 'Gokulprasath2121@gmail.com', '2006-06-19', 0, '2', '2', 'ramesh', 'driver', 20000.00, 1, 0.00, 10000.00, 'ambatur', 'chennai', '2106190001', '1', '1', 'upload_files/candidate_tracker/41065243436_GOKUL PRASATH RESUME.pdf', NULL, '2', '2021-06-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 he will prepare and getback, and no response', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-19 09:59:15', 7, '2021-08-03 05:58:07', 0, NULL, 1),
(5181, 'Ibrahim', '4', '6379491789', '', 'ibarimappu88@gmail.com', '2001-07-28', 19, '2', '2', 'jaffer', 'business', 12000.00, 1, 0.00, 10000.00, 'arakkonam', 'Thiruvallur', '2106190002', '1', '1', 'upload_files/candidate_tracker/39267441862_Ibrahim Resume2_30-May-21_11_48_49.pdf', NULL, '2', '2021-06-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'was selected for next round but no response from him', '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-19 10:06:31', 1, '2021-06-19 10:12:10', 0, NULL, 1),
(5182, 'aathika', '4', '8248743511', '', 'aathikaaiman25@gmail.com', '1997-03-03', 24, '2', '2', 'mohamed', 'iron business', 20000.00, 1, 0.00, 10000.00, 'ranipet', 'chennai', '2106190003', '1', '1', 'upload_files/candidate_tracker/14771140726_my resume.pdf', NULL, '2', '2021-06-19', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lockdown Period Hold Long Pending ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-19 10:14:04', 7, '2021-08-03 06:01:04', 0, NULL, 1),
(5183, 'YUVARAJ', '4', '9080673578', '', 'yuvaraje4571@gmail.com', '1999-10-14', 21, '2', '2', 'aegrambam', 'can business', 12000.00, 1, 0.00, 10000.00, 'Onndikuppam', 'Thiruvallur', '2106190004', '1', '1', 'upload_files/candidate_tracker/73602527042_Yuvaraj Resume.pdf', NULL, '2', '2021-06-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-19 10:32:42', 1, '2021-06-19 10:37:36', 0, NULL, 1),
(5184, 'davidrajan', '4', '9551121519', '', 'davidrajan2599777@gmail.com', '1999-05-02', 22, '2', '2', 'paulraj', 'business', 20000.00, 2, 0.00, 10000.00, 'chennai', 'mugapair', '2106190005', '1', '1', 'upload_files/candidate_tracker/99337743133_David resume-converted (1).pdf', NULL, '2', '2021-06-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-19 10:40:15', 1, '2021-06-19 10:44:43', 0, NULL, 1),
(5185, 'egalaven giri', '4', '6381799399', '', 'girismith1997@gmail.com', '1997-12-12', 23, '2', '2', 'kumanan', 'parlor', 40000.00, 1, 0.00, 10000.00, 'ammapettai', 'ammapettai', '2106190006', '1', '1', 'upload_files/candidate_tracker/82663651062_giri smith resume.docx', NULL, '2', '2021-06-19', 0, '', '3', '59', '1970-01-01', 120000.00, '', '2', '1970-01-01', '1', 'Selected for Tanjore with PF/ESI/PT deductions.', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '9', 'Candidate yet to complete the second link which the candidate have received along with the offer letter', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-06-19 11:34:38', 60, '2021-09-15 02:51:06', 0, NULL, 1),
(5186, 'Parameshwaran', '20', '9626729505', '9159704694', 'parameshwaran1799@gmail.com', '1999-05-17', 22, '2', '2', 'Jayaraman', 'Shopkeeper', 20000.00, 2, 0.00, 12000.00, 'No:121 jayaraman main Road thirupalapandhal', 'No:9 AKBAR STREET Chennai tharamani', '2106190007', '1', '2', 'upload_files/candidate_tracker/73466129208_Subash.docx', NULL, '3', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 01:27:41', 1, '2021-06-19 02:24:17', 0, NULL, 1),
(5187, 'Nawaz Sheriff', '4', '9344457503', '', 'Nawazsheriff942@gmail.com', '1994-03-25', 27, '2', '1', 'Aisha beevi', 'House wife', 20000.00, 1, 0.00, 120000.00, 'Thanjavur', 'Thanjavur', '2106190008', '1', '1', 'upload_files/candidate_tracker/3516951211_chennai resume.PDF', NULL, '2', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 01:57:08', 1, '2021-06-19 02:02:12', 0, NULL, 1),
(5188, 'RAGAVI S', '4', '8760740663', '9043692652', 'ragavishanmugam94@gmail.com', '1995-05-16', 26, '2', '1', 'THIRUKUMARAN M', 'Senior Digital Marketing Executive', 30000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2106190009', '1', '1', 'upload_files/candidate_tracker/14897710845_Resume - Ragavi (1).pdf', NULL, '2', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 02:11:00', 1, '2021-06-19 02:56:36', 0, NULL, 1),
(5189, 'Kandasakthi J', '4', '7598157112', '', 'kandasakthi.army.3@gmail.com', '1998-10-28', 22, '2', '2', 'Jaikrishnan K', 'Wages', 12000.00, 1, 0.00, 20000.00, 'Tiruppur', 'Tiruppur', '2106190010', '1', '1', 'upload_files/candidate_tracker/47973186960_kandasakthi J.pdf', NULL, '3', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 02:16:26', 1, '2021-06-19 02:20:18', 0, NULL, 1),
(5190, 'NITHISH S', '4', '6383279353', '', 'NITHISH457599@GMAIL.COM', '1999-08-08', 21, '2', '2', 'Sankar', 'Farmer', 10000.00, 2, 0.00, 12000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2106190011', '1', '1', 'upload_files/candidate_tracker/30321685307_1613510049903Resume_Nithish-1.docx', NULL, '2', '2021-06-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-06-19 02:57:28', 1, '2021-06-19 03:01:24', 0, NULL, 1),
(5191, 'Oormila B', '16', '9092588112', '8681910803', 'oormila525@gmail.com', '1999-11-25', 21, '2', '2', 'Bhaskar j', 'Business', 120000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai (mkb nagar)', '2106190012', '1', '1', 'upload_files/candidate_tracker/4413839122_oormila res.pdf', NULL, '2', '2021-06-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-19 03:04:50', 50, '2021-06-21 01:28:47', 0, NULL, 1),
(5192, 'Prethip kumar E J', '5', '7305934081', '', 'makerej7@gmail.com', '2000-02-13', 21, '2', '2', 'I Joseph', 'Driver', 15000.00, 2, 0.00, 12000.00, 'CHENNAI', 'CHENNAI', '2106190013', '1', '1', 'upload_files/candidate_tracker/49669224202_resume.docx', NULL, '2', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 04:04:28', 1, '2021-06-19 04:07:24', 0, NULL, 1),
(5193, 'soundaravalli.s', '4', '9994639981', '', 'soundaravalli1692@gmail.com', '1992-09-16', 28, '2', '1', 'raghavendra narayanan.s', 'house wife', 50000.00, 1, 0.00, 12000.00, 'chennai', 'madurai', '2106190014', '1', '1', 'upload_files/candidate_tracker/15307107922_soundaravalli RESUME.docx', NULL, '3', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 04:26:56', 1, '2021-06-20 04:06:39', 0, NULL, 1),
(5194, 'Siva', '4', '9003396999', '', 'Sivaalagu390@gmail.com', '2000-07-12', 20, '2', '2', 'Alagu', 'Automobile consulting', 25000.00, 1, 0.00, 20000.00, 'Madurai', 'Madurai', '2106190015', '1', '1', 'upload_files/candidate_tracker/68133200165_SIVA A-1.pdf', NULL, '2', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 04:50:31', 1, '2021-06-19 04:54:19', 0, NULL, 1),
(5195, 'franklin benedick a r x', '5', '7892086662', '8884538368', 'franklin.benedick77@gmail.com', '1991-04-01', 30, '1', '1', 'divya prasad', 'Territory manager', 3000.00, 3, 4.20, 4.30, 'Bangalore', 'Bangalore', '2106210001', '', '2', 'upload_files/candidate_tracker/34202173441_Franklin', NULL, '1', '2021-06-21', 0, '55601', '3', '60', '2021-07-05', 345696.00, '', '6', '2022-04-25', '1', 'Selected for Manivel TEam with CTC - 345696 includes PF/PT', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-21 10:58:51', 60, '2021-07-03 06:54:08', 0, NULL, 1),
(5196, 'Sathishkumar s', '4', '7904863528', '9962796033', 'ssathishkumar1307@gmail.com', '2001-07-13', 19, '2', '2', 'Selvam', 'Ironing shop', 5000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2106210002', '1', '2', 'upload_files/candidate_tracker/85179443408_sathish.pdf', NULL, '1', '2021-06-22', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-21 03:02:27', 8, '2021-08-03 06:29:39', 0, NULL, 1),
(5197, '', '0', '9962161878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106210003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-21 04:05:32', 0, NULL, 0, NULL, 1),
(5198, '', '0', '9962161879', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106210004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-21 04:07:13', 0, NULL, 0, NULL, 1),
(5199, 'Varalakshmi', '4', '9344317570', '8220701373', 'ammumatheshwaran@gmail.com', '1999-09-29', 21, '2', '1', 'Matheshwaran', 'Private company employee', 15000.00, 2, 10000.00, 13000.00, 'Thirumazhisai', 'Thirumazhisai', '2106210005', '1', '2', 'upload_files/candidate_tracker/64366095702_vrlaxmi resume.pdf', NULL, '1', '2021-06-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no laptop and will not sustain', '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-21 04:33:40', 1, '2021-06-21 04:41:20', 0, NULL, 1),
(5200, 'dhanush kumar', '6', '7397456146', '', 'dhanushkumar607@gmail.com', '1999-04-30', 22, '2', '2', 'senthil kumar', 'supervisor', 20000.00, 1, 12000.00, 14000.00, 'chennai', 'chennai', '2106210006', '2', '2', 'upload_files/candidate_tracker/73924997128_Dhanush resume-2.pdf', NULL, '2', '2021-06-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'No Response', '5', '2', '0', '1', '1', '0', '2', '2021-08-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-21 05:59:25', 1, '2021-06-21 06:02:10', 0, NULL, 1),
(5201, 'bhuvaneshwari', '4', '9150851667', '', 'kbsan202011@gmail.com', '1998-07-02', 22, '2', '2', 'loganathan', 'driver', 15000.00, 1, 10000.00, 11000.00, 'chennai', 'chennai', '2106210007', '2', '2', 'upload_files/candidate_tracker/30589703571_RESUME.docx', NULL, '2', '2021-06-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-21 06:11:05', 1, '2021-06-21 06:15:03', 0, NULL, 1),
(5202, 'raj kumar', '6', '7708035602', '', 'rajkumarbala1995@gmail.com', '1995-12-15', 25, '2', '2', 'palanisamy', 'nlc', 15000.00, 1, 10000.00, 12000.00, 'chennai', 'chennai', '2106210008', '2', '2', 'upload_files/candidate_tracker/37274097270_raj resume-converted.pdf', NULL, '2', '2021-06-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'No Response', '5', '2', '0', '1', '1', '0', '2', '2021-08-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-21 06:18:09', 1, '2021-06-21 06:20:29', 0, NULL, 1),
(5203, 'kalaiarasi', '4', '6380267539', '', 'kalaiyarasik425@gmail.com', '1988-03-16', 33, '2', '1', 'anand', 'editing', 15000.00, 0, 12000.00, 13000.00, 'chennai', 'ambattur', '2106210009', '2', '2', 'upload_files/candidate_tracker/51275701334_Kalai_Resume (2)-1.docx', NULL, '2', '2021-06-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-21 06:23:12', 1, '2021-06-21 06:25:37', 0, NULL, 1),
(5204, 'monisha', '4', '9787640007', '', 'monishamurali02@gmail.com', '2001-09-17', 19, '2', '2', 'murali', 'security', 10000.00, 1, 0.00, 10000.00, 'thiruvallur', 'Thiruvallur', '2106220001', '1', '1', 'upload_files/candidate_tracker/1196898462_Monisha resume.pdf', NULL, '2', '2021-06-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'native language, very slow will not suite for calling.', '1', '2', '', '4', '6', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-22 09:47:30', 7, '2021-08-03 06:01:39', 0, NULL, 1),
(5205, 'P.Subasakthieswari', '4', '9025375944', '', 'suba6549@gmail.com', '2001-01-26', 20, '2', '2', 'parandhaman', 'cooli', 12000.00, 1, 0.00, 10000.00, 'redhills', 'redhills', '2106220002', '1', '1', 'upload_files/candidate_tracker/18692680085_subashakthieswari.pdf.pdf', NULL, '2', '2021-06-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'was reading the self intero and will not suite for calling. no speaking up apart from that', '1', '2', '', '4', '6', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-22 09:53:43', 7, '2021-08-03 06:02:32', 0, NULL, 1),
(5206, 'VARUN KUMAR R', '4', '8072191726', '9677977525', 'varunkumar11132@gmail.com', '1999-10-24', 21, '2', '2', 'rama murthi', 'farmer', 10000.00, 1, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2106220003', '1', '1', 'upload_files/candidate_tracker/28580138732_varun%20BE-EEE%20CV1.docx', NULL, '2', '2021-06-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not okay with sales profile and target, will not handle pressure and sustain', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-22 10:18:36', 7, '2021-08-03 06:03:05', 0, NULL, 1),
(5207, 'Suresh s g', '4', '8124892808', '7708088411', 'sureshrohoit500@gmail.com', '2000-01-11', 21, '2', '2', 'gowindh', 'catering', 8000.00, 1, 0.00, 10000.00, 'thiruvallur', 'Thiruvallur', '2106220004', '1', '1', 'upload_files/candidate_tracker/13807650204_resume (12).pdf', NULL, '2', '2021-06-22', 0, '', '3', '59', '2021-09-16', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tanjore location in cash mode', '1', '1', '', '4', '6', '', '2', '2021-09-15', '2', '3', 'Discussed and given joining, but 5050 and the candidate needs to get his father confirmation again. Sent him the welcome mail for joining', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-06-22 10:25:56', 60, '2021-09-15 06:26:29', 0, NULL, 1),
(5208, 'Arun Kumar', '4', '6374555062', '', 'arunkumaronb@gmail.com', '2000-04-17', 21, '2', '2', 'rama murthi', 'farmer', 10000.00, 1, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2106220005', '1', '1', 'upload_files/candidate_tracker/57720996982_Resume_Arunkumar R_Format1 (1).pdf', NULL, '2', '2021-06-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speakingup and no flow in speech, expt is 12k min', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-22 10:36:52', 7, '2021-08-03 06:04:24', 0, NULL, 1),
(5209, 'Nandhini', '4', '9566243155', '8925822447', 'nandhinivelayutham16@gmail.com', '1998-04-16', 23, '2', '2', 'Punitha', 'Own business', 20000.00, 1, 15000.00, 20000.00, 'Choolaimedu', 'Choolaimedu', '2106220006', '1', '2', 'upload_files/candidate_tracker/39174741314_CV_2021-06-04-020306.pdf', NULL, '3', '2021-06-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-22 11:31:09', 1, '2021-06-22 11:51:56', 0, NULL, 1),
(5210, 'R. Iyyanraj', '16', '8015051130', '7845620010', 'Iyyanr@gmail.com', '1994-03-16', 27, '2', '2', 'K.Raja perumal', 'Shop keeper', 12000.00, 2, 24000.00, 25000.00, 'Chennai', 'Chennai', '2106220007', '1', '2', 'upload_files/candidate_tracker/8325830310_Iyyan Raj Resume.pdf', NULL, '1', '2021-06-22', 0, '', '3', '60', '2021-06-23', 264000.00, '', '5', '1970-01-01', '2', 'Selected for MIS Position,2nd Round interviewed by Gokul and shortlisted for the role MIS', '3', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-22 11:45:14', 7, '2021-06-22 05:35:51', 0, NULL, 1),
(5211, '', '0', '8248444656', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106220008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-22 12:41:12', 0, NULL, 0, NULL, 1),
(5212, 'shree dharshinee', '4', '7550019039', '8939011903', 'shreesiva2401@gmail.com', '1999-06-24', 21, '2', '1', 'siva kumar', 'health inspector', 60000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2106220009', '1', '1', 'upload_files/candidate_tracker/18033165268_SHREE NEW RESUME.docx', NULL, '3', '2021-06-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-22 01:09:00', 1, '2021-06-22 07:36:11', 0, NULL, 1),
(5213, 'Mohamed Anez', '26', '9940260844', '7010351025', 'mohamedanez34@gmail.com', '1996-02-08', 25, '2', '2', 'Mohamed yusuf', 'Eventa coordinator', 25000.00, 1, 20000.00, 27000.00, 'Tambaram', 'Tambaram', '2106220010', '1', '2', 'upload_files/candidate_tracker/12970874691_Updated Resumae.pdf', NULL, '1', '2021-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication average,no relevant Exp.Content what he gave is not upto yhe mark\n', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-22 02:11:22', 50, '2021-06-22 02:45:21', 0, NULL, 1),
(5214, 'kishore b', '16', '9677377894', '', 'kishore01ronaldo@gmail.com', '1996-12-24', 24, '2', '2', 'v balakrishnan', 'sub divisional engineering', 30000.00, 3, 0.00, 25000.00, 'chennai', 'chennai', '2106220011', '1', '1', 'upload_files/candidate_tracker/79885682456_kishore resume .pdf', NULL, '3', '2021-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, Salary Expectation is very high, will not sustain for a long', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-22 03:15:21', 50, '2021-06-23 10:30:32', 0, NULL, 1),
(5215, 'B. M. KAMESHWARA.', '4', '6374384207', '9585920597', 'Kmstr9818@gmail.com', '1998-05-18', 23, '2', '2', 'B. MOHANASUNDHARAM', 'Typist', 30000.00, 1, 0.00, 15000.00, 'Tindivanam', 'Tindivanam', '2106220012', '1', '1', 'upload_files/candidate_tracker/16433161766_kamstr.docx', NULL, '3', '2021-06-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-22 03:24:44', 1, '2021-06-22 05:37:15', 0, NULL, 1),
(5216, 'B.SHALINI DEVI', '4', '8072788250', '7868029119', 'shalinibalachandar2018@gmail.com', '1998-01-19', 23, '2', '2', 'S.BALACHANDAR', 'Agriculture', 15000.00, 0, 0.00, 10000.00, 'Cuddalore', 'Cuddalore', '2106220013', '1', '1', 'upload_files/candidate_tracker/32327683238_SHALINI RESUME.pdf', NULL, '3', '2021-06-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-22 04:04:03', 1, '2021-06-22 04:20:34', 0, NULL, 1),
(5217, 'kabilan', '6', '7824034005', '', 'kabilanrajangam@gmail.com', '1996-02-17', 25, '2', '2', 'rajangam', 'farmer', 12000.00, 1, 12000.00, 14000.00, 'chennai', 'chennai', '2106220014', '2', '2', 'upload_files/candidate_tracker/80692813665_res new 44.docx', NULL, '2', '2021-06-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling, prefer non voice job, expt min 15k take home.', '5', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-22 04:16:30', 1, '2021-06-22 04:18:23', 0, NULL, 1),
(5218, 'padma priya a', '4', '7401758584', '', 'Rajagayu26@gmail.com', '1995-10-21', 25, '2', '1', 'raja durai r', 'electrician', 20000.00, 1, 13000.00, 14000.00, 'chennai', 'parrys', '2106220015', '2', '2', 'upload_files/candidate_tracker/29879705534_padmapriya resume.pdf', NULL, '2', '2021-06-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain and will not suite for us.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-22 04:30:10', 7, '2021-06-28 10:53:40', 0, NULL, 1),
(5219, 'pavithra', '4', '7200961071', '', 'mixshara25@gmail.com', '1999-07-25', 21, '2', '2', 'baskaran', 'supervisor', 14000.00, 0, 12000.00, 13000.00, 'chennai', 'royapetah', '2106220016', '2', '2', 'upload_files/candidate_tracker/68632482389_RESUME - PAVITHRA . B.pdf', NULL, '2', '2021-06-23', 0, '', '4', '11', NULL, 0.00, '', '0', NULL, '2', 'check for esale RM, has 2yr calling exp', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-22 04:35:32', 1, '2021-06-22 04:39:38', 0, NULL, 1),
(5220, 'vinu priya', '4', '9384849503', '', 'vinupriya0902@gmail.com', '1990-11-20', 30, '2', '1', 'ravichandran', 'photographer', 10000.00, 1, 14000.00, 15000.00, 'chennai', 'thiruvallur', '2106220017', '2', '2', 'upload_files/candidate_tracker/72656173545_Vinupriya resume.docx', NULL, '2', '2021-06-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for us, expt is 18k. age will not suite for CRM.', '1', '2', '', '4', '6', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-22 04:43:00', 7, '2021-06-28 10:49:51', 0, NULL, 1),
(5221, 'Jayanthi V', '1', '7338786313', '9688969065', 'jayayarasu1@gmail.com', '1996-06-07', 25, '2', '1', 'Raamrajen', 'Bussiness', 70000.00, 0, 25000.00, 15000.00, 'Chennai', 'Chennai', '2106220018', '1', '2', 'upload_files/candidate_tracker/3151718365_JAYA MARKETING MANAGER RESUME.docx', NULL, '3', '2021-06-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-22 05:50:48', 1, '2021-06-22 06:04:37', 0, NULL, 1),
(5222, '', '0', '9025951345', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106220019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-22 05:51:08', 0, NULL, 0, NULL, 1),
(5223, 'R.Saranya', '16', '9003252657', '6383312623', 'saranyatharun54@gmail.com', '1990-09-08', 30, '2', '1', 'K.Kanniyappan', 'Own business', 50000.00, 1, 18000.00, 21000.00, 'Chennai', 'Triplicane, chennai', '2106220020', '1', '2', 'upload_files/candidate_tracker/90915276164_Saranya Resume.pdf', NULL, '1', '2021-06-23', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-22 05:58:23', 50, '2021-06-23 10:30:46', 0, NULL, 1),
(5224, 'Uma.L', '4', '6381906404', '', 'umavedhao6@gmail.com', '2001-06-06', 20, '2', '2', 'Lakshmanan', 'sales man', 11000.00, 2, 0.00, 13000.00, 'Vinayagapuram near kolathur', 'Vinayagapuram Near Kolathur', '2106220021', '1', '1', 'upload_files/candidate_tracker/18752142018_Resume.pdf', NULL, '2', '2021-06-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-22 06:30:21', 1, '2021-06-22 06:34:44', 0, NULL, 1),
(5225, 'uma', '4', '7010460213', '', 'umasuresh17699@gmail.com', '1999-06-17', 22, '2', '2', 'suresh', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'madippakam', 'Madippakam', '2106230001', '1', '1', 'upload_files/candidate_tracker/1213720584_resume (13).pdf', NULL, '2', '2021-06-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-23 09:22:34', 1, '2021-06-23 09:27:45', 0, NULL, 1),
(5226, 'Abirami M', '16', '8610570792', '', 'm.abirami1303@gmail.com', '1989-03-13', 32, '2', '2', 'P. Muthukani', 'Business', 20000.00, 1, 170000.00, 240000.00, 'Villivakkam, Chennai', 'Villivakkam, Chennai', '2106230002', '1', '2', 'upload_files/candidate_tracker/3957149557_M.ABIRAMI RESUME NEW.docx', NULL, '1', '2021-06-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected her for the MIS Role,but she is not interested with the package what we offered and not comfortable with office timings', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-23 10:01:51', 50, '2021-06-24 09:03:53', 0, NULL, 1),
(5227, 'mohan raman g p', '16', '9499929309', '9566238378', 'mraman10595@gmail.com', '1995-05-10', 26, '2', '2', 'Govindaraman V', 'business', 35000.00, 1, 17500.00, 17500.00, 'Chennai', 'Chennai', '2106230003', '1', '2', 'upload_files/candidate_tracker/62393648377_MohanRaman1005.pdf', NULL, '2', '2021-06-24', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Received Content And Scheduled Him For F2F,But Didnt Turn.', '3', '1', '', '1', '1', '', '2', '2021-07-05', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-23 10:27:26', 50, '2021-06-24 09:03:33', 0, NULL, 1),
(5228, 'rup kumar a', '11', '7397329735', '9940579464', 'ruppixie@gmail.com', '1994-03-01', 27, '3', '2', 'arjunan', 'retired aeo', 30000.00, 1, 0.00, 15000.00, 'kolathur chennai', 'kolathur chennai', '2106230004', '', '1', 'upload_files/candidate_tracker/75439130348_RUP RESUME new.pdf', NULL, '1', '2021-06-23', 0, '', '3', '60', '2021-06-26', 120000.00, '', '3', '2021-08-13', '1', 'Selected As A Intern For HR Recruitment With The Stipend Of Rs 5000 PM With Contnuation Of Employment. Salary Will Be Confirmed Post Internship', '6', '2', '', '1', '1', '', '2', '2021-09-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2021-06-23 10:44:24', 60, '2022-03-22 02:44:43', 0, NULL, 1),
(5229, 'Rikesh.K', '4', '7339230369', '', 'rikeshkannan@gmail.com', '1999-01-10', 22, '2', '2', 'Kannadasan', 'Fishing', 60000.00, 0, 0.00, 12000.00, 'Thirvanmyur', 'Thirvanmyur', '2106230005', '1', '1', 'upload_files/candidate_tracker/14808143423_BIO DATA-WPS Office.docx', NULL, '3', '2021-06-24', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-23 11:36:43', 8, '2021-08-03 06:16:33', 0, NULL, 1),
(5230, 'K.jeyakumar', '4', '6374050761', '9884288559', 'jeyak746@gmail.com', '1993-10-23', 27, '2', '2', 'K.janaki', 'Insurance inspection', 200000.00, 2, 15000.00, 17000.00, 'Annanagar', 'Annanagar', '2106230006', '1', '2', 'upload_files/candidate_tracker/43970028652_jk.pdf', NULL, '2', '2021-06-24', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain. 2yr in detective agency, 1yr as store incharge, 2yr in real estate, running own veg shop now his mother is taking care, was getting 17k-20k, expt is 15k.', '1', '2', '', '4', '6', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-23 11:42:56', 7, '2021-06-24 11:12:12', 0, NULL, 1),
(5231, 'Angela', '4', '9384647728', '', 'angelchristy112@gmail.com', '2002-08-23', 18, '2', '2', 'Anish', 'Working', 15000.00, 0, 0.00, 15000.00, 'Pour', 'Pour', '2106230007', '1', '1', 'upload_files/candidate_tracker/69325721302_Angel Resume (1).doc', NULL, '3', '2021-06-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, age doesnt match. expt is high', '1', '2', '0', '1', '1', '0', '2', '2021-08-31', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-23 03:36:26', 1, '2021-06-23 03:54:36', 0, NULL, 1),
(5232, 'Azhagu raj', '16', '9791450706', '9677563919', 'Azhagu99444@gmail.com', '1994-12-25', 26, '2', '2', 'T annaipitchai', 'Data analyst', 200000.00, 3, 14000.00, 16000.00, 'Tambaram', 'Tambaram', '2106230008', '1', '2', 'upload_files/candidate_tracker/26756324844_Resume%20Azhagu.docx', NULL, '2', '2021-06-24', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,Content not upto the mark', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-23 04:10:20', 50, '2021-06-24 09:04:09', 0, NULL, 1),
(5233, 'prasanth', '4', '6381355736', '', 'prasanthps0303@gmail.com', '1999-03-03', 22, '2', '2', 'alagesh', 'farmer', 5000.00, 2, 0.00, 10000.00, 'peravalur', 'velachery', '2106240001', '1', '1', 'upload_files/candidate_tracker/4925449627_prasanth RESUME.doc', NULL, '2', '2021-06-24', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '2', 'not attended', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 09:47:00', 1, '2021-06-24 09:52:18', 0, NULL, 1),
(5234, 'G KEERTHIKA', '4', '8667719835', '', 'Keerthigopi156@gmail.com', '2001-06-15', 20, '2', '2', 'gopinathan', 'manager', 40000.00, 1, 0.00, 10000.00, 'thomas mount', 'Thomas Mount', '2106240002', '1', '1', 'upload_files/candidate_tracker/36652638531_KEERTHIKA.RESUME.pdf', NULL, '2', '2021-06-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communicated and shared the Salary breakup for the candidate approval,but she turn back with her approval', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 09:55:29', 1, '2021-06-24 10:01:04', 0, NULL, 1),
(5235, 'Manju Meena c', '4', '6379507693', '', 'manju.meena0308@gmail.com', '2000-08-03', 20, '2', '2', 'chandran', 'business', 10000.00, 1, 0.00, 10000.00, 'thandalam', 'Thandalam', '2106240003', '1', '1', 'upload_files/candidate_tracker/23163860850_Manju_Meena_C_resume.pdf', NULL, '2', '2021-06-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not connected the zoom i was waiting for 15 mins. again tryed reaching her RNR', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 10:05:49', 7, '2021-08-03 06:05:10', 0, NULL, 1),
(5236, 'Arthi. B', '4', '6379758615', '', 'nithibro57@gmail.com', '2006-06-24', 0, '2', '2', 'sasikumar', 'electrician', 20000.00, 1, 0.00, 10000.00, 'guindy', 'guindy', '2106240004', '1', '1', 'upload_files/candidate_tracker/67307220108_ARTHI.B.docx', NULL, '2', '2021-06-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain, prefer non voice, will not handle pressure.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 10:11:29', 7, '2021-08-03 06:05:51', 0, NULL, 1),
(5237, 'Sai Geetha', '4', '7395961762', '', 'Saigeetha0657@gmail.com', '2001-08-04', 0, '2', '2', 'surya', 'mechanic', 25000.00, 1, 0.00, 10000.00, 'chrompet', 'chrompet', '2106240005', '1', '1', 'upload_files/candidate_tracker/34687106263_Sai Geetha.S RESUME.pdf', NULL, '2', '2021-06-24', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 10:22:49', 7, '2021-08-03 06:06:44', 0, NULL, 1),
(5238, 'Monisha.V', '4', '9042575531', '', 'monisharaj242000@gmail.com', '2000-01-24', 21, '2', '2', 'venkatesan', 'labour', 10000.00, 2, 0.00, 10000.00, 'velachery', 'velachery', '2106240006', '1', '1', 'upload_files/candidate_tracker/95057959830_Resume_Monisha Venkatesan_Format7.pdf', NULL, '2', '2021-06-24', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 10:29:27', 7, '2021-08-03 06:08:17', 0, NULL, 1),
(5239, 'Vidhya', '4', '7358635087', '', 'vidhyakutty253@gmail.com', '1999-03-03', 22, '2', '2', 'sathyanarayanan', 'labour', 15000.00, 1, 0.00, 10000.00, 'velachery', 'velachery', '2106240007', '1', '1', 'upload_files/candidate_tracker/63468504432_1624262718190_RESUME.pdf', NULL, '2', '2021-06-24', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 11:01:09', 7, '2021-08-03 06:07:14', 0, NULL, 1),
(5240, 'Rameskanna', '4', '9384311835', '', 'Rockyramesh41@gmail.com', '2000-07-09', 20, '2', '2', 'manimegalai', 'tailor', 5000.00, 2, 0.00, 1000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2106240008', '1', '1', 'upload_files/candidate_tracker/82625545155_gallery pages.pdf', NULL, '2', '2021-06-24', 0, '', '3', '59', '2021-06-28', 120000.00, '', '3', '2021-07-02', '2', 'Selected for Priyanka Jeni Team with CTC 120000 includes PF/ESI/PT', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 11:29:51', 60, '2021-06-28 04:19:36', 0, NULL, 1),
(5241, 'Anjali', '4', '9150756415', '9941982017', 'anjuanjumaanju@gmail.com', '2000-06-15', 21, '1', '2', 'P.Selvaraj', 'Electrician', 20000.00, 2, 12.50, 13000.00, 'Gerugambakkam', 'Gerugambakkam', '2106240009', '', '2', 'upload_files/candidate_tracker/15862929944_resume3pdf_original.pdf', NULL, '1', '2021-06-24', 0, 'Jobs', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected for Priyanka Team with CTC 126000 with PF/PT deductions', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-24 12:14:18', 1, '2021-06-24 12:48:21', 0, NULL, 1),
(5242, 'Yamuna', '4', '7094564389', '9626933203', 'Vk925071@gmail.com', '2000-06-16', 21, '1', '2', 'S.umapthi', 'Father', 10000.00, 0, 0.00, 10000.00, 'Kodambakkam', 'Kodambakkam', '2106240010', '', '1', 'upload_files/candidate_tracker/87246320744_yammuna (1)-converted.pdf', NULL, '1', '2021-06-24', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suits for our role, will not sustain for  a long', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-24 12:19:47', 1, '2021-06-24 12:37:59', 0, NULL, 1),
(5243, 'Diana Baskaran', '16', '8825905183', '9952993343', 'dianab37299@gmail.com', '1998-08-31', 22, '4', '2', 'Thilaga', 'House wife', 10000.00, 0, 0.00, 15000.00, 'Anna nagar west extension chennai', 'Anna nagar west extension chennai', '2106240011', '', '1', 'upload_files/candidate_tracker/15309182574_Diana Resume.pdf', NULL, '2', '2021-06-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain for a long she is focusing into UPSC exams only', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-24 01:48:28', 1, '2021-06-24 01:52:46', 0, NULL, 1),
(5244, 'Kanigicharla Naga Sai Jaswanth', '6', '8008783202', '', 'kanigicharlasai@gmail.com', '1996-07-03', 24, '2', '2', 'K Ravu surendra', 'Business', 1.50, 1, 35000.00, 35000.00, 'Tenali', 'Hyderabad', '2106240012', '1', '2', 'upload_files/candidate_tracker/94115833175_SAI JASWANTH RESUME (1)-converted-converted.pdf', NULL, '1', '2021-06-24', 0, '', '3', '60', '1970-01-01', 286000.00, '', '2', '1970-01-01', '1', 'Selected for Veben Team with CTC 286000 includes PF/ESI Deductions', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-24 02:08:04', 60, '2021-06-26 04:17:51', 0, NULL, 1),
(5245, 'K.sandhiya', '4', '6385125011', '8825611424', 'sandhiyasuseela13@gmail.com', '2001-06-13', 20, '2', '2', 'Kamalakannan', 'Mechanic', 10000.00, 1, 0.00, 10000.00, 'Somangalam', 'Somangalam', '2106240013', '1', '1', 'upload_files/candidate_tracker/17430413378_18cs034.pdf', NULL, '3', '2021-06-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-24 03:32:49', 1, '2021-06-24 03:37:00', 0, NULL, 1),
(5246, 'GOKULAKRISHNAN m', '4', '9087595860', '9962125530', 'krishnangokul990@gmail.com', '1997-11-09', 23, '2', '2', 'Murugasan', 'Daliy wages', 12000.00, 3, 0.00, 12000.00, 'Medavakkam, Chennai', 'Medavakkam, Chennai', '2106240014', '1', '1', 'upload_files/candidate_tracker/72808055788_Gokul 2021new updates.pdf', NULL, '3', '2021-06-25', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-24 03:41:44', 8, '2021-08-03 06:19:26', 0, NULL, 1),
(5247, 'Renuka devi R', '4', '9384560594', '', 'renuboopa02@gmail.com', '2000-09-02', 20, '2', '2', 'Raja gopal M', 'driver', 25000.00, 1, 0.00, 11000.00, 'Coimbatore', 'Coimbatore', '2106240015', '1', '1', 'upload_files/candidate_tracker/891882044_renuka.docx', NULL, '3', '2021-06-25', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-24 03:59:20', 8, '2021-08-03 06:24:37', 0, NULL, 1),
(5248, 'Srinivasan .m', '4', '9629421802', '9787190886', 'msrinivasan.cse24@gmail.com', '1996-04-24', 25, '2', '2', 'Vr Manokaran M.Jothi', 'Building Construction', 20000.00, 0, 9000.00, 12000.00, 'Vellore', 'Vellore', '2106240016', '1', '2', 'upload_files/candidate_tracker/96357449470_RESUME.pdf', NULL, '3', '2021-06-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'from vellore, will not sustain and handle pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-24 05:15:12', 1, '2021-06-24 05:21:52', 0, NULL, 1),
(5249, 'Hajira Banu', '4', '9789904931', '9884186194', 'hajira2707banu@gmail.com', '1995-07-27', 25, '2', '1', 'Ismail', 'Gold smith', 150000.00, 1, 0.00, 12000.00, 'Puliyanthope Chennai 12', 'Puliyanthope ch-12', '2106240017', '1', '1', 'upload_files/candidate_tracker/20734042362_resume.pdf', NULL, '3', '2021-06-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-24 05:35:00', 1, '2021-06-24 05:40:53', 0, NULL, 1),
(5250, 'Aishwarya', '4', '9361556751', '8754131144', 'aishwaryadevi989898@gmail.com', '1996-01-28', 25, '2', '2', 'Ravikumar', 'Teacher', 15000.00, 1, 0.00, 12000.00, 'Avadi', 'Chennai', '2106240018', '1', '1', 'upload_files/candidate_tracker/14259866100_Aishwarya T R.pdf', NULL, '2', '2021-06-25', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'Not Suit For Telecalling, Sustainabillity issue', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-24 05:55:41', 1, '2021-06-24 06:00:34', 0, NULL, 1),
(5251, '', '0', '9500675582', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106240019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-24 06:26:03', 0, NULL, 0, NULL, 1),
(5252, 'Preethi', '4', '7358076528', '7332937528', 'jamesmandy8@gmail.com', '2000-01-05', 21, '2', '2', 'Venugopal', 'Security', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2106250001', '1', '1', 'upload_files/candidate_tracker/58999856528_CV_2021-04-17-092630.pdf', NULL, '2', '2021-06-30', 0, '', '3', '60', '2021-07-01', 120000.00, '', '6', '2021-10-04', '2', 'Selected for Suriya  Team with CTC  120000 includes PF/ESI/PT', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 10:25:37', 60, '2021-07-01 09:58:24', 0, NULL, 1),
(5253, 'Mohamedherash', '16', '8508508811', '', 'Mohamedherash@gmail.com', '1994-11-16', 26, '2', '2', 'Faritha hussan', 'Salaried', 45000.00, 1, 300000.00, 300000.00, 'Chennai', 'Chennai', '2106250002', '1', '2', 'upload_files/candidate_tracker/98821391033_HERASH.pdf', NULL, '1', '2021-06-26', 0, '', '3', '60', '2021-06-28', 192000.00, '', '5', '1970-01-01', '1', 'Selected for MIS Role,2nd Round interviewed by gokul and selected', '3', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-25 10:43:06', 60, '2021-06-26 05:41:40', 0, NULL, 1),
(5254, '', '0', '7373411181', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106250003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-25 10:45:44', 0, NULL, 0, NULL, 1),
(5255, 'SAMILI S', '4', '9786314580', '7867962081', 'Samili88@gmail.com', '1988-06-27', 32, '2', '1', 'VINODHINI S', 'HOME MAKER', 12000.00, 1, 18525.00, 20000.00, 'OLD WASHERMEN PET, ROYAPURAM.', 'OLD WASHERMEN PET', '2106250004', '1', '2', 'upload_files/candidate_tracker/67470988780_SAMILI. S. RESUME .pdf', NULL, '3', '2021-06-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 11:01:15', 1, '2021-06-25 11:11:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5256, 'Malathi. M', '4', '7010962805', '9514133679', 'malathimano918@gmail.com', '1998-09-09', 22, '2', '2', 'Manoharan, indhumathi', 'Steel shop', 20000.00, 1, 0.00, 11000.00, 'Selavoyal', 'Chennai', '2106250005', '1', '1', 'upload_files/candidate_tracker/14017760413_RESUME.pdf', NULL, '2', '2021-06-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 12:01:00', 1, '2021-06-25 01:08:14', 0, NULL, 1),
(5257, 'KALAIYARASAN K', '4', '9952686938', '9790010395', 'kalaiyarasan28346@gmail.com', '1998-04-01', 23, '2', '2', 'Kaliyamoorthy V', 'Building construction', 15000.00, 2, 0.00, 12000.00, 'Nagapattinam', 'Guduvanchery', '2106250006', '1', '1', 'upload_files/candidate_tracker/40894744692_kalaiyarasan resume.pdf', NULL, '2', '2021-07-01', 0, '', '3', '60', '2021-07-05', 120000.00, '', '2', '1970-01-01', '2', 'Selected for Suriya Team with CTC 120000 includes PF ESI PT deductions', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 12:36:26', 60, '2021-07-03 10:23:28', 0, NULL, 1),
(5258, 'Aravindan', '4', '9080861491', '9342562577', 'aravindsmart1810@gmail.com', '1997-10-18', 0, '2', '2', 'Ravi', 'Auto driver', 20000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2106250007', '1', '2', 'upload_files/candidate_tracker/99582049445_pdf aravind.pdf', NULL, '3', '2021-06-26', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 01:00:33', 1, '2021-06-25 01:05:11', 0, NULL, 1),
(5259, 'EDWIN EDISON A', '4', '8072167602', '9566305414', 'rioedwin78@gmail.com', '1998-05-31', 23, '2', '2', 'ANTONI RAJ S', 'Business', 30000.00, 1, 0.00, 13000.00, 'Karur', 'Karur', '2106250008', '1', '1', 'upload_files/candidate_tracker/81727440734_EDWINEDISON_resume.pdf', NULL, '2', '2021-06-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 03:02:20', 1, '2021-06-25 04:39:02', 0, NULL, 1),
(5260, 'sowmiya', '4', '8610742517', '', 'sowmisakthi7777@gmail.com', '1997-05-26', 24, '2', '1', 'arunkumar', 'engineer', 26000.00, 2, 0.00, 9000.00, 'dindigul', 'dindigul', '2106250009', '1', '1', 'upload_files/candidate_tracker/72561795052_Resume.docx', NULL, '3', '2021-06-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 03:45:21', 1, '2021-06-25 03:58:20', 0, NULL, 1),
(5261, '', '0', '9566305414', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106250010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-25 04:09:24', 0, NULL, 0, NULL, 1),
(5262, '', '0', '7904876702', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106250011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-25 04:16:34', 0, NULL, 0, NULL, 1),
(5263, '', '0', '9944873743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106250012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-25 04:28:36', 0, NULL, 0, NULL, 1),
(5264, 'SOLAIRAJ G', '4', '8973057843', '', 'solayraju03@gmail.com', '1997-07-18', 23, '2', '2', 'GANESAN S', 'PLUMBING AND ELECTRONIC WORKING', 15000.00, 2, 13000.00, 15000.00, '2A,pavalamalli street,R.S.nagar,Virudhunagar', 'Virudhunagar', '2106250013', '1', '2', 'upload_files/candidate_tracker/23987395911_SOLAIRAJ\'s Resume (1).pdf', NULL, '3', '2021-06-26', 12, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 04:33:42', 1, '2021-06-25 04:38:41', 0, NULL, 1),
(5265, 'narmadha', '4', '9994812451', '', 'sathishnarmadha31@gmail.com', '1990-07-31', 30, '2', '1', 'srinivasalu', 'retired railway', 16000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2106250014', '2', '2', 'upload_files/candidate_tracker/90207948377_narmadha 1 Resume.pdf', NULL, '2', '2021-06-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '3yrs in QC and SIP, no relevant exp and expt ia 18k, and age will not suite for crm', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-25 08:12:22', 7, '2021-06-28 10:48:03', 0, NULL, 1),
(5266, 'lakshmanan c', '6', '7358729034', '', 'chandresakar2019@gmail.com', '1997-10-08', 23, '2', '2', 'chandrasekar', 'business man', 10000.00, 0, 11000.00, 13000.00, 'chennai', 'chennai', '2106250015', '2', '2', 'upload_files/candidate_tracker/77115433326_Lakshmanan resume.docx', NULL, '2', '2021-06-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'his brother is working in Sriram Insurance, will not suite for us.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-25 08:18:43', 7, '2021-06-28 10:46:13', 0, NULL, 1),
(5267, 'ashmitha', '4', '9025554248', '', 'ashmitha015@gmail.com', '2000-03-15', 21, '2', '1', 'farook', 'abm', 30000.00, 2, 12000.00, 13000.00, 'chennai', 'moolakadai', '2106250016', '2', '2', 'upload_files/candidate_tracker/99903986830_CV_2021-01-23-094239.pdf', NULL, '2', '2021-06-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-25 08:27:00', 1, '2021-06-25 08:30:09', 0, NULL, 1),
(5268, 'Shalini.S', '4', '9176027581', '8838681898', 'shalinihari0703@gmail.com', '2001-03-07', 20, '1', '2', 'Deepa.S', 'Baby care taker', 8000.00, 1, 0.00, 15000.00, 'Pattinapakam', 'Pattinapakam', '2106260001', '', '1', 'upload_files/candidate_tracker/84631884159_SHALINI-2.docx', NULL, '3', '2021-06-26', 0, 'P1066', '3', '59', '2021-06-28', 120000.00, '', '0', NULL, '2', 'Selected for Priyanka Team-Internal Reference with CTC - 120000 Cash mode 5% deduction - 9500 TH\n', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-26 10:25:14', 1, '2021-06-26 10:34:52', 0, NULL, 1),
(5269, 'divya', '4', '9789067982', '', 'diyazviv@gmail.com', '2000-04-27', 21, '2', '2', 'renukadevi', 'sales', 5000.00, 1, 0.00, 10000.00, 'koturpuram', 'koturpuram', '2106260002', '1', '1', 'upload_files/candidate_tracker/26192008527_imgtopdf_22062021112903.pdf', NULL, '1', '2021-06-26', 0, '', '3', '59', '2021-06-28', 120000.00, '', '0', NULL, '2', 'Selected for Suriya Team with CTC 120000 includes PF/ESI - but didnt come for the joining', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-26 10:28:39', 1, '2021-06-26 10:33:55', 0, NULL, 1),
(5270, 'Mariya Monica A', '4', '7338909010', '', 'monicarajan01@gmail.com', '1998-09-10', 22, '2', '2', 'Arul Rajan S', 'Security', 10000.00, 2, 0.00, 15000.00, '23/6,Pillaiyar koil st,West Mambalam,chennai-33', '23/6,Pillaiyar Koil St,West Mambalam,Chennai-33', '2106260003', '1', '1', 'upload_files/candidate_tracker/9829259213_Monica Resume-1.docx', NULL, '3', '2021-06-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 12:59:11', 1, '2021-06-26 01:39:41', 0, NULL, 1),
(5271, 'Vishal Padigola', '5', '7893968691', '', 'vishalpadigola@gmail.com', '1998-09-20', 22, '2', '2', 'lakshmi narayana', 'late', 50000.00, 1, 0.00, 20000.00, 'hyderabad', 'lingampally', '2106260004', '1', '1', 'upload_files/candidate_tracker/95454604938_VISHAL.pdf', NULL, '2', '2021-06-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-26 01:12:33', 1, '2021-06-26 01:15:26', 0, NULL, 1),
(5272, 'H.Sulthana', '4', '6374663796', '7401047501', 'beevisulami@gmail.com', '1998-05-15', 23, '2', '2', 'M.Harun Basha', 'Business', 20000.00, 2, 12500.00, 12500.00, 'No : 401 p block Ranganadha puram Korukkupet', 'No : 6/17 Munniappan street, old washermenpet', '2106260005', '1', '2', 'upload_files/candidate_tracker/36447769469_Sulthana Resume.pdf', NULL, '3', '2021-06-28', 0, '', '3', '60', '2021-07-01', 144000.00, '', '5', '1970-01-01', '1', 'Selected for Suriya Team with CTC - 144000 includes PF/ESI/PT', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 01:19:40', 60, '2021-06-30 07:26:22', 0, NULL, 1),
(5273, 'vengateswaran s', '4', '6379382372', '8072262401', 'venkateswaran369@gmail.com', '2000-11-09', 20, '2', '2', 'sivaji k', 'Construction Worker', 20000.00, 2, 0.00, 15000.00, 'coimbatore', 'coimbatore', '2106260006', '1', '1', 'upload_files/candidate_tracker/59324987063_Venkat123 (1).pdf', NULL, '2', '2021-06-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 01:56:05', 1, '2021-06-26 02:51:50', 0, NULL, 1),
(5274, 'Pandisevi', '4', '9791623272', '', 'pandisevisaravanan9791@gmail.com', '1997-01-27', 24, '2', '1', 'Saravanan', 'Chennai', 20000.00, 1, 12000.00, 15000.00, 'Trichy', 'Chennai', '2106260007', '1', '2', 'upload_files/candidate_tracker/59880481422_PANDI SELVI.docx', NULL, '3', '2021-06-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 01:59:10', 1, '2021-06-26 02:49:49', 0, NULL, 1),
(5275, 'Mahalakshmi', '4', '8939086066', '', 'maha16.ms@gmail.com', '1998-01-16', 23, '2', '1', 'Srini.NK', 'Currently not working', 1.00, 0, 0.00, 12000.00, 'Otteri', 'Otteri', '2106260008', '1', '1', 'upload_files/candidate_tracker/12914490310_RESUME MAHA.docx', NULL, '3', '2021-06-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 02:46:05', 1, '2021-06-26 02:51:30', 0, NULL, 1),
(5276, 'Divya. R', '4', '8838883925', '9790763396', 'divyaarthi27@gmail.com', '1998-08-29', 22, '2', '2', 'Ravichandran', 'Electrician', 20000.00, 1, 12000.00, 13000.00, 'Chennai', 'Chennai', '2106260009', '1', '2', 'upload_files/candidate_tracker/81924339878_divya-resumeorginalupd.docx', NULL, '2', '2021-06-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 02:51:09', 1, '2021-06-26 02:57:15', 0, NULL, 1),
(5277, 'ashfaq ahmed khan', '5', '7019597395', '', 'ashfaq.khan82@gmail.com', '1982-11-21', 38, '1', '1', 'shaista khanum', 'housewife', 30000.00, 1, 30000.00, 4.50, 'Bangalore', 'Bangalore', '2106260010', '', '2', 'upload_files/candidate_tracker/30540505277_ashfaq new resume.pdf', NULL, '1', '2021-06-28', 0, '55583', '3', '59', '2021-06-28', 350000.00, '', '', '2023-03-25', '1', 'Selected for Muppudathy Team wiht CTC 350000 includes PF/PT Deductions', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-26 02:54:21', 60, '2021-06-28 02:58:39', 0, NULL, 1),
(5278, 'Divya', '4', '9790763396', '8838883925', 'divyaarthi27@gmail.com', '1998-08-29', 22, '2', '2', 'Ravichandran', 'Electrician', 20000.00, 1, 12000.00, 13000.00, 'Old washermenpet', 'Old washermenpet', '2106260011', '1', '2', 'upload_files/candidate_tracker/43851849526_divya-resumeorginalupd.docx', NULL, '2', '2021-06-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 03:04:06', 1, '2021-06-26 03:06:39', 0, NULL, 1),
(5279, 'umar farook', '4', '8072243585', '', 'Viratumar@gmail.com', '1998-06-14', 23, '2', '2', 'addul', 'daily wages', 15000.00, 2, 0.00, 10000.00, 'ponneri', 'Ponneri', '2106260012', '1', '1', 'upload_files/candidate_tracker/45381580582_Umar Farooq.docx', NULL, '2', '2021-06-26', 0, '', '3', '60', '2021-07-01', 126000.00, '', '5', '1970-01-01', '1', 'Selected for Priyanka Team with CTC 126000  - Cash Mode with 5% deduction 9975 take home Salary', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-26 03:15:18', 60, '2021-07-01 09:51:22', 0, NULL, 1),
(5280, 'Balaji s', '4', '9626313244', '6380460849', 'Suchithbala03@gmail.com', '1999-03-03', 22, '2', '2', 'Dakshayani', 'Home maker', 7000.00, 1, 0.00, 12000.00, 'Thiruttani', 'Thiruttani', '2106260013', '1', '1', 'upload_files/candidate_tracker/72731327376_BALAJI RESUME.pdf', NULL, '2', '2021-06-28', 0, '', '3', '59', '2021-07-14', 120000.00, '', '6', '2021-07-25', '1', 'Selected for Tiruvallur Team with cTC 120000 includes PF/ESI/PT dedcutions', '1', '1', '1', '4', '6', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 03:18:14', 60, '2021-07-14 06:50:01', 0, NULL, 1),
(5281, 'PON ANGEL SUDHA T', '4', '9345627474', '6374749981', 'ponangelsudha@gmail.com', '1994-06-30', 26, '2', '2', '-', '-', 18000.00, 0, 12000.00, 12000.00, 'TIRUNELVELI', 'TIRUNELVELI', '2106260014', '1', '2', 'upload_files/candidate_tracker/26865392251_Resume.pdf', NULL, '2', '2021-06-28', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 04:20:52', 1, '2021-06-26 04:30:25', 0, NULL, 1),
(5282, 'Nancy pricilla', '4', '9790964918', '9566021889', 'Karthiknanu244@gmail.com', '1998-10-23', 22, '2', '1', 'B. Karthik', 'Electrician', 15.00, 1, 0.00, 11.00, 'Thiruniravur', 'Thiruniravur', '2106270001', '1', '1', 'upload_files/candidate_tracker/48649010118_nancy.pdf', NULL, '1', '2021-06-28', 0, '', '3', '59', '2021-07-19', 120000.00, '', '0', NULL, '2', 'Selected for Tiruvallur Location in cash mode ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-27 06:56:22', 1, '2021-06-27 08:02:38', 0, NULL, 1),
(5283, '', '0', '9444362396', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106270002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-27 07:17:59', 0, NULL, 0, NULL, 1),
(5284, 'Harsha Vardhan Sai S', '13', '7845581203', '', 'harshasuri2324@gmail.com', '2000-09-23', 20, '2', '2', 'SURINARAYANA S', 'Private Employee', 35000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2106280001', '1', '1', 'upload_files/candidate_tracker/33459165544_resume_1620309927977.pdf', NULL, '1', '2021-06-28', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'No relevant DM knowledge', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-06-28 09:52:59', 1, '2021-06-28 09:55:30', 0, NULL, 1),
(5285, 'GNANASEKAR.D', '5', '9384488272', '9092565894', 'chinnadgs777@gmail.com', '1993-11-30', 27, '1', '1', 'LOGESHWARI', 'Home Maker', 400000.00, 2, 25000.00, 32000.00, 'Arakkonam', 'Arakkonam', '2106280002', '', '2', 'upload_files/candidate_tracker/69428052840_Gnanasekar Resume 2016 Oct.doc', NULL, '1', '2021-06-28', 0, '55558', '3', '60', '2021-07-01', 357696.00, '', '', '2022-11-25', '1', 'Selected for Raj Kumar with CTC - 357696 includes PF/PT deductions', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 10:39:40', 60, '2021-06-30 06:15:09', 0, NULL, 1),
(5286, 'sankaralingam', '6', '6383070473', '', 'sankarmari790@gmail.com', '1996-09-28', 24, '2', '2', 'sastha', 'labour', 15000.00, 1, 12000.00, 13000.00, 'chennai', 'chennai', '2106280003', '2', '2', 'upload_files/candidate_tracker/7188449461_Sankar(1).pdf', NULL, '2', '2021-06-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 11:17:51', 1, '2021-06-28 11:20:19', 0, NULL, 1),
(5287, '', '0', '9600374738', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106280004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-28 02:08:12', 0, NULL, 0, NULL, 1),
(5288, 'Divyabharathi I', '4', '9698383474', '', 'divyasekarpillai@gmail.com', '1994-02-01', 27, '3', '1', 'Iyappan A', 'DTH Service Engineering', 20000.00, 3, 12000.00, 15000.00, 'Nagapattinam', 'Chennai', '2106280005', '', '2', 'upload_files/candidate_tracker/58858967532_060421-Detailed_Advertisement_JA_2021.pdf', NULL, '1', '2021-06-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our role', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 02:22:05', 1, '2021-06-28 02:34:00', 0, NULL, 1),
(5289, '', '0', '8639142604', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106280006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-28 04:32:49', 0, NULL, 0, NULL, 1),
(5290, 'rehan mohammed', '5', '8499934339', '', 'rehanmohd2620@gmail.com', '1999-06-23', 22, '2', '2', 'mhd ameen udin', 'police', 120000.00, 1, 24000.00, 24000.00, 'hyderabad', 'vanasthalipuram', '2106280007', '1', '2', 'upload_files/candidate_tracker/78115023221_Rehan CV (2) (1).pdf', NULL, '1', '2021-06-29', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended the interview', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-28 04:50:18', 1, '2021-06-28 04:53:27', 0, NULL, 1),
(5291, 'Rohit M', '16', '8610382556', '8939702433', 'mrohitjan2000@gmail.com', '2000-01-01', 21, '2', '2', 'Murali R', 'Welding Worker', 12000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2106280008', '1', '1', 'upload_files/candidate_tracker/19212805981_Rohit_M.pdf', NULL, '1', '2021-06-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication OK, No relevant exp, also he holds an offer with Infosys and Cognizant. Will not sustain with us for the role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-28 06:27:44', 50, '2021-06-29 09:16:15', 0, NULL, 1),
(5292, 'abul hasan abukkalam', '5', '9843321177', '', 'abulhasanabukkalam@gmail.com', '1994-05-18', 27, '2', '1', 'abukkalam', 'daily wages', 15000.00, 1, 19000.00, 20000.00, 'chennai', 'vanagaram', '2106280009', '2', '2', 'upload_files/candidate_tracker/28019244208_ResumeAbulHasanAbukkalam.docx', NULL, '2', '2021-06-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '1', '1', '0', '2', '2021-08-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 07:19:34', 1, '2021-06-28 07:28:38', 0, NULL, 1),
(5293, 'aravindha kumar', '6', '9677096193', '', 'aravinthakumar199@gmail.com', '1995-03-01', 26, '2', '2', 'ashok kumar', 'business', 13000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2106280010', '2', '2', 'upload_files/candidate_tracker/92454391553_2021 May resume.pdf', NULL, '2', '2021-06-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 08:09:33', 1, '2021-06-28 08:11:42', 0, NULL, 1),
(5294, 'amal Ebinezer', '4', '9176147305', '', 'amalebi909@gmail.com', '1997-11-23', 23, '2', '2', 'chinnaraj', 'business', 13000.00, 1, 12000.00, 14000.00, 'chennai', 'chennai', '2106280011', '2', '2', 'upload_files/candidate_tracker/36564195990_Amal resume .pdf', NULL, '2', '2021-06-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not handle pressure and sales target. ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 08:14:56', 1, '2021-06-28 08:16:41', 0, NULL, 1),
(5295, 'varsha lakshmi', '4', '7550373527', '', 'varshaavaition@gmail.com', '2000-02-14', 21, '2', '2', 'ramesh', 'business man', 20000.00, 1, 12000.00, 12000.00, 'chennai', 'royapetah', '2106280012', '2', '2', 'upload_files/candidate_tracker/53544808503_RESUMEE.pdf', NULL, '2', '2021-06-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 08:22:21', 1, '2021-06-28 08:25:42', 0, NULL, 1),
(5296, '', '0', '9176101048', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106290001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-29 12:04:03', 0, NULL, 0, NULL, 1),
(5297, 'VIKNESWARAN', '5', '9176489147', '', 'vikyythecraziee@gmail.com', '1992-08-07', 28, '1', '1', 'Priyadarshini', 'Banking sector', 40000.00, 1, 22000.00, 27000.00, 'Maraimalainagar', 'Nanganallur', '2106290002', '', '2', 'upload_files/candidate_tracker/45178739981_vignesh RESume.docx', NULL, '1', '2021-06-29', 0, '5551', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not suits for our Role, he is  into  real estate Sales', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-29 10:09:45', 1, '2021-06-29 10:18:14', 0, NULL, 1),
(5298, '', '0', '8870578041', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106290003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-29 12:51:30', 0, NULL, 0, NULL, 1),
(5299, 'Imran khan', '16', '9677663415', '9003509449', 'imraankhan.khan5@gmail.com', '1994-05-10', 27, '3', '1', 'Sahana', 'House wife', 20000.00, 0, 3.00, 3.50, 'Uthamapalayam, Theni district', 'Tambaram Sanatorium, chennai', '2106290004', '', '2', 'upload_files/candidate_tracker/49702995691_CV IK.docx', NULL, '1', '2021-06-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Will not sustain for a long with this role. Salary Expectation is very high', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-29 01:15:26', 1, '2021-06-29 01:19:59', 0, NULL, 1),
(5300, 'jabeen sulthana e', '4', '7904682774', '', 'jabbuaffu97107@gmail.com', '2000-11-02', 20, '2', '2', 'mohammed ejaz', 'electrician', 6000.00, 1, 0.00, 10000.00, 'chennai', 'triplicane', '2106290005', '1', '1', 'upload_files/candidate_tracker/87635820732_jabeen sulthana E.pdf', NULL, '2', '2021-06-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-29 05:03:50', 1, '2021-06-29 05:46:22', 0, NULL, 1),
(5301, 'Vasudevan B', '23', '8220225262', '8220331738', 'vasu.sachin1012@gmail.com', '1993-09-08', 27, '2', '2', 'Balaraman', 'Shop keeper', 30000.00, 1, 18000.00, 25000.00, 'Thiruvallur', 'Thiruvallur', '2106290006', '1', '2', 'upload_files/candidate_tracker/57052653971_Resume New-converted-converted_28-Jun-21_16_30_13.pdf', NULL, '1', '2021-06-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '	Not Much Into Ui,Strong In Ux Only.Requested For Freelance Position,But He Is Not Much Comfortable.', '2', '2', '0', '1', '1', '0', '2', '2021-07-08', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-29 05:15:59', 1, '2021-06-29 05:19:24', 0, NULL, 1),
(5302, 'kowsalya k', '4', '8681854684', '8838324292', 'kowsalyak122000@gmail.com', '2000-12-01', 20, '2', '2', 'karuppasamy', 'wager', 7000.00, 1, 0.00, 10000.00, 'chennai', 'kandanchavadi', '2106290007', '1', '1', 'upload_files/candidate_tracker/9855466433_Document (1).pdf', NULL, '2', '2021-06-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-29 06:05:48', 1, '2021-06-29 06:07:59', 0, NULL, 1),
(5303, 'loganthan', '4', '6379704026', '', 'loganathankoffical@gmail.com', '2000-03-10', 21, '2', '2', 'krishnan', 'nil', 5000.00, 1, 0.00, 10000.00, 'cuddalore', 'chennai', '2106300001', '2', '1', 'upload_files/candidate_tracker/50157217191_LOGANATHAN CV-1.pdf', NULL, '2', '2021-06-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-30 07:21:52', 1, '2021-06-30 07:27:31', 0, NULL, 1),
(5304, 'pathanjali m', '6', '6379584788', '', 'pathanmoorthy@gmail.com', '1993-12-15', 27, '2', '2', 'moorthy r', 'worker', 10000.00, 1, 15000.00, 16000.00, 'chennai', 'medavakkam', '2106300002', '2', '2', 'upload_files/candidate_tracker/82334322932_Pathan Resume Updated.pdf', NULL, '2', '2021-06-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'high profie, will not suite for telecalling', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-30 07:30:57', 1, '2021-06-30 07:33:30', 0, NULL, 1),
(5305, 'jagadeesh', '5', '8680008481', '', 'rsjl787898@gmail.com', '1998-05-17', 23, '2', '2', 'ramesh', 'driver', 20000.00, 1, 20000.00, 23000.00, 'chennai', 'thiruvottiyur', '2106300003', '2', '2', 'upload_files/candidate_tracker/80424676461_JAGADEESH.R resume_2.docx', NULL, '2', '2021-06-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no  response', '5', '1', '0', '1', '1', '0', '2', '2021-08-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-30 07:37:32', 1, '2021-06-30 07:39:38', 0, NULL, 1),
(5306, 'dravid', '4', '7502942047', '', 'dbdravid@gmail.com', '1997-09-30', 23, '2', '2', 'd', 'business', 20000.00, 4, 0.00, 12000.00, 'chennai', 'chennai', '2106300004', '2', '1', 'upload_files/candidate_tracker/60688407580_cv new 3.pdf', NULL, '2', '2021-06-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain and expt is 18k', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-30 07:44:55', 1, '2021-06-30 07:47:40', 0, NULL, 1),
(5307, 'Bazaleel Richard joseph', '6', '9361811018', '9342494985', 'richardjoseph1516@gmail.com', '2000-06-01', 21, '1', '2', 'Juliet margaret', 'Teacher', 70000.00, 1, 0.00, 10000.00, 'Madurai', 'Chennai', '2106300005', '', '1', 'upload_files/candidate_tracker/50361965223_PDFGallery_20210630_103045.pdf', NULL, '1', '2021-06-30', 0, '55559', '5', '34', NULL, 0.00, '', '0', NULL, '1', 'not selected', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-30 10:24:09', 1, '2021-06-30 10:31:38', 0, NULL, 1),
(5308, 'shanawaz baig', '23', '7373280380', '6380555424', 'shanawaz05@gmail.com', '1991-06-05', 30, '2', '1', 'fathima mubasihra', 'home maker', 12000.00, 2, 15000.00, 23000.00, 'villupuram', 'villupuram', '2106300006', '1', '2', 'upload_files/candidate_tracker/6599544280_SHAN.pdf', NULL, '3', '2021-06-30', 5, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 10:32:28', 7, '2021-07-01 10:51:14', 0, NULL, 1),
(5309, 'Muralidharan', '4', '8939119304', '', 'muralidharanmuralidhran002@gmail.com', '2000-03-19', 21, '2', '2', 'vijaakumar', 'pwd', 20000.00, 1, 0.00, 0.00, 'triplicane', 'triplicane', '2106300007', '1', '1', 'upload_files/candidate_tracker/12034711097_muraliresume1.docx', NULL, '1', '2021-06-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '1', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-30 11:21:49', 7, '2021-06-30 12:16:15', 0, NULL, 1),
(5310, 'Jeya Prakash', '2', '9751183453', '', 'jpwin1997@gmail.com', '1997-12-04', 23, '2', '2', 'Mani maran', 'Coolie', 60000.00, 1, 0.00, 15000.00, 'Dindigul', 'Dindigul', '2106300008', '1', '1', 'upload_files/candidate_tracker/25000063923_Jeya Prakash Resume Sr .pdf', NULL, '2', '2021-07-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2021-06-30 12:04:36', 60, '2021-07-01 06:46:55', 0, NULL, 1),
(5311, 'Agasteen S', '2', '9940144284', '9176792105', 'agasteen.96@gmail.com', '2006-06-30', 0, '2', '2', 'Solomon', 'Auto Driver', 18000.00, 3, 0.00, 180000.00, 'Chennai', 'Kolathur, Chennai', '2106300009', '1', '1', 'upload_files/candidate_tracker/88626762211_Agasteen_resume (2).pdf', NULL, '1', '2021-07-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate keen to learn, but cant communicate the basics, need some time to learn and come', '2', '2', '0', '1', '1', '0', '2', '2021-07-12', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 12:33:06', 1, '2021-06-30 12:36:48', 0, NULL, 1),
(5312, 'Sridhar', '23', '9176517723', '', 'sridharshekar15@gmail.com', '1994-05-07', 27, '2', '2', 'Sekar', 'Retired', 30000.00, 2, 30000.00, 40000.00, 'Chennai', 'Chennai', '2106300010', '1', '2', 'upload_files/candidate_tracker/84509210547_sridhar_resume.pdf', NULL, '3', '2021-07-01', 1, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 12:49:11', 7, '2021-07-01 10:53:48', 0, NULL, 1),
(5313, 'ragavan', '23', '8248081339', '', 'ragavanvijay1996@gmail.com', '2006-06-30', 0, '2', '2', 'gnanaprakasam', 'farmer', 6000.00, 3, 20000.00, 20000.00, 'cuddalore', 'kilpauk chennai', '2106300011', '1', '2', 'upload_files/candidate_tracker/43939649508_resume.pdf', NULL, '1', '2021-07-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not suits for our UI Developer position,He is much into UX Design Part only', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 01:44:59', 1, '2021-06-30 01:50:17', 0, NULL, 1),
(5314, 's.adithyan', '2', '9791135624', '8248063711', 'adithyannjo@gmail.com', '1996-11-24', 24, '2', '2', 'srinivasan', 'business', 250000.00, 0, 0.00, 15000.00, 'madurai street ayanavaram chennai', 'aynavaram chennai', '2106300012', '1', '1', 'upload_files/candidate_tracker/16788806148_adi resume (1)-converted.pdf', NULL, '1', '2021-07-01', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Intern for 3 months - 3500K Stipend ,continuing employment with min 8K.3yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 01:46:18', 60, '2021-07-01 06:53:09', 0, NULL, 1),
(5315, 'Vinothkumar', '23', '9944789462', '9150256511', 'vinothkumar2217@gmail.com', '1989-06-17', 32, '2', '1', 'Jothi', 'Owen bussiness', 16500.00, 1, 16500.00, 20000.00, 'Dharmapuri', 'Ambattur, Chennai', '2106300013', '1', '2', 'upload_files/candidate_tracker/18867832290_vino.pdf', NULL, '3', '2021-08-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Response.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 01:56:32', 7, '2021-08-28 06:39:14', 0, NULL, 1),
(5316, 'Kanagavalli', '23', '8754841602', '', 'skvmmeena@gmail.com', '1994-02-16', 27, '2', '2', 'Palanivel T', 'Sub inspector', 50.00, 1, 22000.00, 36000.00, 'Chennai', 'Trichy', '2106300014', '1', '2', 'upload_files/candidate_tracker/81727244063_valli- resume.pdf', NULL, '3', '2021-06-30', 15, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 02:04:52', 7, '2021-07-01 10:52:29', 0, NULL, 1),
(5317, 'Mugesh Kumar', '2', '6382557907', '', 'mugeshmugesh26062001@gmail.com', '2001-06-26', 20, '2', '2', 'Selvaraj', 'Small Business', 10000.00, 1, 0.00, 8000.00, 'padukkapathu', 'padukkapathu', '2106300015', '1', '1', 'upload_files/candidate_tracker/33243810095_pdf.pdf', NULL, '2', '2021-07-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 03:08:40', 1, '2021-06-30 03:16:04', 0, NULL, 1),
(5318, 'Bharath Deva', '2', '9894820022', '', 'reachbharathdeva@gmail.com', '1999-12-10', 21, '2', '2', 'Devarajan', 'Contactor', 20000.00, 1, 0.00, 15000.00, 'Kancheepuram', 'Kancheepuram', '2106300016', '1', '1', 'upload_files/candidate_tracker/47686272181_BharathDeva_Resume_v1.pdf', NULL, '2', '2021-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'not open for 3 yrs of service agreement no knowledge in ReactJS,also expectation is around 10-12K', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 04:14:26', 1, '2021-07-03 10:09:19', 0, NULL, 1),
(5319, 'thangathirupathi', '2', '8682918782', '', 'thangathirupathi1297@gmail.com', '1997-02-01', 24, '2', '2', 'balasubramanian', 'labour', 25000.00, 3, 0.00, 168000.00, 'chennai', 'chennai', '2106300017', '1', '1', 'upload_files/candidate_tracker/12092855566_RESUME (4) (1).pdf', NULL, '3', '2021-07-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 04:19:51', 1, '2021-06-30 07:01:52', 0, NULL, 1),
(5320, 'sivapriya', '23', '9498427352', '', 'sivapriyarajendran1510@gmail.com', '1997-06-01', 24, '2', '2', 'hemalatha', 'farmer', 10000.00, 1, 15000.00, 18000.00, 'thanjavur', 'thanjavur', '2106300018', '1', '2', 'upload_files/candidate_tracker/40457103113_sivresume.pdf', NULL, '3', '2021-06-30', 0, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 04:39:05', 7, '2021-07-01 10:53:08', 0, NULL, 1),
(5321, 'divya kumari', '16', '9840741626', '9791017578', 'princedivya93@gmail.com', '1993-01-26', 28, '2', '1', 'meganathan v', 'customer executive', 200000.00, 1, 8000.00, 25000.00, 'perambur', 'chennai', '2106300019', '1', '2', 'upload_files/candidate_tracker/52799629155_M.Divya kumari - Resume.docx', NULL, '2', '2021-07-01', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much experience into MIS, Married, will not handle our pressure and sustainability doubts on this profile', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-30 06:16:31', 50, '2021-07-01 09:15:06', 0, NULL, 1),
(5322, 'SARATH KUMAR P', '5', '8124848114', '', 'Sandysarath1998@gmail.com', '1998-07-16', 22, '1', '2', 'Krishnaveni', 'House Wife', 35000.00, 1, 15000.00, 22000.00, 'Old school street y.othakkadai madurai', 'Thambaram', '2106300020', '', '2', 'upload_files/candidate_tracker/16206573585_sarath kumar-19-1.pdf', NULL, '2', '2021-06-30', 15, '55567', '3', '60', '2021-07-12', 240000.00, '', '6', '2021-11-08', '1', 'Selected for Santhosh Team - RM with CTC 2.4 LPA includes PF/ESI/PT deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-30 08:32:22', 60, '2021-07-09 05:37:48', 0, NULL, 1),
(5323, 'gokulnath', '6', '8248117885', '', 'gokulparker@gmail.com', '2002-07-25', 18, '2', '2', 'suresh', 'working', 25000.00, 0, 0.00, 12000.00, 'arakkonam', 'Arakkonam', '2107010001', '1', '1', 'upload_files/candidate_tracker/68411925122_ResumeX .pdf', NULL, '1', '2021-07-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-01 09:06:20', 1, '2021-07-01 09:13:17', 0, NULL, 1),
(5324, 'VIJAY.r', '6', '8056099318', '', 'vijaypraveen08011998@gmail.com', '1998-01-08', 23, '2', '2', 'raj', 'business', 15000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2107010002', '1', '1', 'upload_files/candidate_tracker/68298010641_VIJAY RESUME R.pdf', NULL, '1', '2021-07-01', 0, '', '3', '60', '2021-07-15', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Thiyagu Team with CTC - 192000 includes PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-01 09:17:59', 60, '2021-07-13 05:25:43', 0, NULL, 1),
(5325, 'SHUNMUGAVEL S', '2', '9677437827', '', 'Shunmugavelsv05@GMAIL.COM', '1996-09-05', 24, '2', '2', 'Subbiah', 'Teacher', 40000.00, 1, 7000.00, 18000.00, 'KALLIDAI KURICHI TIRUNELVELI', 'KALLIDAI KURICHI TIRUNELVELI', '2107010003', '1', '2', 'upload_files/candidate_tracker/16493662186_Shunmugavel.pdf', NULL, '2', '2021-07-02', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Just for the Salary Rise, he looks for an opportunity.Sustainability doubt and the salary expectation is very high', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 01:06:48', 1, '2021-07-01 01:11:28', 0, NULL, 1),
(5326, 'george clinton', '2', '6381992718', '', 'georgeclinton.1792@gmail.com', '1992-11-05', 28, '2', '2', 'l. nathan', 'business', 100000.00, 1, 0.00, 15000.00, 'mkb nagar chennai', 'mkb nagar chennai', '2107010004', '1', '1', 'upload_files/candidate_tracker/75321335875_George Clinton-Resume[342] (2).pdf', NULL, '1', '2021-07-02', 0, '', '3', '60', '2021-07-05', 96000.00, '', '5', '1970-01-01', '1', 'Intern for 5 months, post intern 3yrs agreement also salary(8K) wil confirmed.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-07-01 02:24:12', 60, '2022-03-22 02:37:58', 0, NULL, 1),
(5327, 'Chandru M', '23', '6383537455', '', 'chandrumahendran.16@gmail.com', '1998-05-22', 23, '2', '2', 'S.Mahendran', 'Sales Representative', 25000.00, 1, 13000.00, 30000.00, 'Madurai', 'Madurai', '2107010005', '1', '2', 'upload_files/candidate_tracker/25680585167_Chandru(1).pdf', NULL, '3', '2021-07-02', 15, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 04:08:55', 1, '2021-07-01 04:13:31', 0, NULL, 1),
(5328, 'sai kumar', '2', '9398944626', '7200993587', 'ksai4666@gmail.com', '1998-12-29', 22, '2', '2', 'srinivasulu', 'bussiness', 20000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2107010006', '1', '1', 'upload_files/candidate_tracker/72700033618_SaikumarResume.pdf', NULL, '1', '2021-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much ok with SA, need some time to confirm.Not much comfortable with intern model and expectation is high', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 04:11:21', 1, '2021-07-01 06:30:17', 0, NULL, 1),
(5329, 'Priya Dharshini R', '2', '7338962476', '8072565825', 'riaharshini1998@gmail.com', '1998-11-14', 22, '2', '2', 'Ravichandran R', 'Business', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2107010007', '1', '1', 'upload_files/candidate_tracker/33695252305_updated cv.pdf', NULL, '1', '2021-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to check With parents on the SA, Fresher profile not much comfortable with Internship Role\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 04:24:00', 1, '2021-07-01 06:29:56', 0, NULL, 1),
(5330, '', '0', '8973523977', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107010008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-01 04:40:11', 0, NULL, 0, NULL, 1),
(5331, 'Dominic Sedu Raja', '2', '9042831738', '', 'Dominicseduraja3@gmail.com', '1996-05-03', 25, '2', '2', 'Poun Raj.F', 'Export', 40000.00, 2, 17000.00, 20000.00, 'Tuticorin', 'Tuticorin', '2107010009', '1', '2', 'upload_files/candidate_tracker/79072482598_dominic.pdf', NULL, '3', '2021-07-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Currently working and his Gross is around 15K in native itself. He is not comfortable with our package and he is not much open to the service agreement.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 05:22:58', 1, '2021-07-01 05:28:28', 0, NULL, 1),
(5332, 'Vignesh', '23', '8610145293', '8124238341', 'careercareer928@gmail.com', '1995-04-12', 26, '2', '2', 'Vasanthi', 'House maid', 15000.00, 0, 13500.00, 16000.00, '92/40 mangaliamman koil street. St. Thomas mount', 'Chennai', '2107010010', '1', '2', 'upload_files/candidate_tracker/68045538347_cv.pdf', NULL, '1', '2021-07-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge in UI UX will not sustain for a long.No basic knowledge in CSS Javascript,photoshop', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 05:34:42', 1, '2021-07-01 05:42:50', 0, NULL, 1),
(5333, 'Kala S', '23', '9159748750', '6380737065', 'kavyaswaminathan97@gmail.com', '1996-10-23', 24, '2', '2', 'pushpalatha.s', 'home maker', 20000.00, 1, 12000.00, 25000.00, 'Thanjavur', 'Thanjavur', '2107010011', '1', '2', 'upload_files/candidate_tracker/96337886806_UI Developer Resume.pdf', NULL, '2', '2021-07-02', 45, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 06:09:22', 1, '2021-07-02 11:08:08', 0, NULL, 1),
(5334, 'rasathi', '4', '7825070229', '', 'rasathigovardhanan@gmail.com', '1992-05-28', 29, '2', '1', 'govardhanan', 'driver', 15000.00, 4, 12000.00, 12500.00, 'thiruvallur', 'thiruvallur', '2107020001', '2', '2', 'upload_files/candidate_tracker/77329489679_0CAA24E1-C465-4000-A56A-ECC674C53586-converted.pdf', NULL, '1', '2021-07-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our role, will not sustain for a long', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-02 10:39:49', 1, '2021-07-02 10:48:52', 0, NULL, 1),
(5335, 'S.Anu Suriya', '23', '9361608024', '9095958304', 'sanusuriya@gmail.com', '1997-05-22', 24, '2', '2', 'R.Suyambuvel', 'Driver', 10000.00, 2, 16000.00, 22000.00, 'Kanyakumari', 'Kanyakumari', '2107020002', '1', '2', 'upload_files/candidate_tracker/81684724190_Anu_Suriya_Resume1.pdf', NULL, '3', '2021-07-03', 15, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-02 11:44:20', 1, '2021-07-02 01:00:07', 0, NULL, 1),
(5336, 'Giri Raj', '23', '7401424959', '', 'girishraj319@gmail.com', '1997-06-14', 24, '2', '2', 'Saravanan', 'Defence', 60000.00, 1, 216000.00, 300000.00, 'Chennai', 'Chennai', '2107020003', '1', '2', 'upload_files/candidate_tracker/51678588448_GiriRaj-CV(1).pdf', NULL, '1', '2021-07-08', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not having designing knowledge, Having two offers in hand', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-02 01:00:41', 60, '2021-07-08 10:25:33', 0, NULL, 1),
(5337, 'Shanmugam', '2', '9551533348', '8682821907', 'shanmugam051996@gmail.com', '1996-12-05', 24, '2', '2', 'Selvam', 'Driver', 15000.00, 1, 0.00, 12000.00, 'Chennai,tamilnadu', 'Chennai, tamilnadu', '2107020004', '1', '1', 'upload_files/candidate_tracker/23983862096_shan_resume.pdf', NULL, '1', '2021-07-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for MErn Stack.No knowlege in React,will not sustain for a long not comfortable with the SA', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-02 01:26:39', 60, '2021-07-03 10:27:10', 0, NULL, 1),
(5338, 'SANTHOSH', '5', '9003083512', '9791070846', 'sandysantho7448@gmail.com', '1997-10-28', 23, '1', '2', 'CHANDRAN. A', 'Late', 250000.00, 2, 16000.00, 20000.00, 'I BLOCK 19 SATHYAMOORTHY NAGAR ,NANDANAM', 'NANDANAM', '2107020005', '', '2', 'upload_files/candidate_tracker/17620318_MY RESUME-converted.pdf', NULL, '1', '2021-07-02', 5, '555588', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much open up, no relevant Exp into Sales, Will not handle pressure', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-02 02:32:34', 1, '2021-07-02 02:49:59', 0, NULL, 1),
(5339, 'Lakshmi Priya', '16', '9940362956', '', 'priyadhayanandhan96@gmail.com', '1996-07-30', 24, '2', '2', 'Dhayanandhan', 'Govt staff', 25000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2107020006', '1', '1', 'upload_files/candidate_tracker/67603955186_LP resume.docx', NULL, '2', '2021-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '.No Knowledge In MIS, Communication Is Good. Sustainability Doubts on this profile', '3', '2', '0', '1', '1', '0', '2', '2021-07-07', '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-02 02:35:53', 1, '2021-07-02 03:03:52', 0, NULL, 1),
(5340, 'AANISHA A', '2', '9994396641', '9688667820', 'aanishaayub@gmail.com', '1999-03-28', 22, '2', '2', 'AYUB KHAN', 'TAILOR', 18000.00, 2, 0.00, 25000.00, 'METTUPALAYAM', 'METTUPALAYAM', '2107020007', '1', '1', 'upload_files/candidate_tracker/31271009768_Aanisha resume.pdf', NULL, '3', '2021-07-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-02 03:47:31', 1, '2021-07-02 03:54:06', 0, NULL, 1),
(5341, 'jayaprasana', '4', '6385219731', '', 'jayaprasana.thenmail.comnarasu02@g', '2002-02-10', 19, '2', '2', 'thenarasu', 'business', 83000.00, 1, 0.00, 10000.00, 'vandalur', 'vandalur', '2107030001', '1', '1', 'upload_files/candidate_tracker/38147976727_RESUME.PDF.pdf', NULL, '1', '2021-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suits for Telecaller profile,yet to complete his graduation one more year to go', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-03 10:47:05', 1, '2021-07-03 10:53:30', 0, NULL, 1),
(5342, 'Alagu Bharathi S', '16', '7358174300', '', 'bharathist46@gmail.com', '1996-04-05', 25, '4', '1', 'Thirumaran', 'CRE', 25000.00, 1, 17000.00, 23000.00, 'Chennai', 'Chennai', '2107030002', '', '2', 'upload_files/candidate_tracker/64748814040_Resume.pdf', NULL, '2', '2021-07-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,Attended F2F discussion,Written communication is very average only. Recently married and not sure on the sustainability. She is much into pure data Analyst', '3', '1', '0', '1', '1', '0', '2', '2021-07-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-03 11:51:12', 1, '2021-07-03 11:56:56', 0, NULL, 1),
(5343, 'Jennifer vinnarasi', '17', '8792314609', '9176589177', 'jennifelix2@gmail.com', '1991-10-03', 29, '1', '1', 'Felix Arul jayaraj', 'Employee', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2107030003', '', '1', 'upload_files/candidate_tracker/57460814403_Jeni Resume-PDF.pdf', NULL, '1', '2021-07-03', 0, 'P1136', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for the positions ,will not sustain for a long', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-03 11:56:03', 1, '2021-07-03 12:13:37', 0, NULL, 1),
(5344, 'Kavidha', '23', '7826805053', '', 'kavidha16@gmail.com', '1994-05-16', 27, '2', '1', 'Parthasarathi', 'Finance manager', 50000.00, 2, 25000.00, 42000.00, 'Chennai', 'Chennai', '2107030004', '1', '2', 'upload_files/candidate_tracker/66975174525_kavidha-periyasamy.pdf', NULL, '3', '2021-07-05', 15, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 12:06:31', 7, '2021-07-05 10:57:07', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5345, 'c. cynthia jenifer', '2', '9629978493', '', 'cynthiajeniferc@gmail.com', '1995-12-02', 25, '2', '2', 'helen lydia', 'house', 13000.00, 1, 0.00, 15000.00, 'chengalpattu', 'chennai', '2107030005', '1', '1', 'upload_files/candidate_tracker/46518932257_Cynthia_Jenfier_Resume.pdf', NULL, '1', '2021-07-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open with terms and conditions, fresher profile no basic knowledge', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 12:15:33', 1, '2021-07-03 12:24:17', 0, NULL, 1),
(5346, 'Prattossh Shivam', '23', '9600006292', '', 'prattossh07@gmail.com', '1994-07-26', 26, '2', '1', 'Krithika', 'House wife', 300000.00, 1, 300000.00, 300000.00, 'Chennai', 'Chennai', '2107030006', '1', '2', 'upload_files/candidate_tracker/7023298700_Prattossh Shivam CV.pdf', NULL, '1', '2021-07-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge in UI UX,only in to the designing part, Will not suits for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 01:14:35', 1, '2021-07-03 01:23:49', 0, NULL, 1),
(5347, 'Radhakrishnan T', '2', '8778154945', '', 'radhakrishnan061999@gmail.com', '1999-07-06', 21, '2', '2', 'Thulasidharan A', 'MTC staff', 30000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2107030007', '1', '1', 'upload_files/candidate_tracker/83216073556_CV-july.pdf', NULL, '2', '2021-07-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 03:20:03', 1, '2021-07-03 03:33:37', 0, NULL, 1),
(5348, 'Nisangan N', '2', '9498301383', '9600086565', 'nisanganamn@gmail.com', '1999-08-20', 21, '2', '2', 'nandakumar', 'self employement', 30000.00, 1, 0.00, 450000.00, 'Chennai', 'Chennai', '2107030008', '1', '1', 'upload_files/candidate_tracker/29060367685_Nisangan_Resume.pdf', NULL, '1', '2021-07-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Profile, not open with terms and conditions will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 03:49:52', 1, '2021-07-03 04:06:21', 0, NULL, 1),
(5349, 'AJITH KUMAR', '23', '9626816237', '', 'ajith.veera.2014@gmail.com', '1998-08-12', 22, '2', '2', 'Samikannu', 'Farmer', 14000.00, 1, 15000.00, 20000.00, 'Chennai', 'Ariyalur', '2107030009', '1', '2', 'upload_files/candidate_tracker/56377864018_Ajith-update-resume-1.pdf', NULL, '3', '2021-07-05', 1, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 04:47:12', 7, '2021-07-05 10:57:45', 0, NULL, 1),
(5350, 'vignesh j', '23', '6383779260', '8939914700', 'vignesh0014@gmail.com', '1997-07-14', 23, '2', '2', 'vijayalakshmi j', 'candle making', 16000.00, 0, 0.00, 17000.00, 'chennai tamilnadu', 'chennai tamilnadu', '2107030010', '1', '2', 'upload_files/candidate_tracker/80655219522_Profile (1).pdf', NULL, '1', '2021-07-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for UI Position, no basic knowledge in UI UX', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 05:24:36', 1, '2021-07-03 05:51:45', 0, NULL, 1),
(5351, '', '0', '8939914700', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107030011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-03 06:05:56', 0, NULL, 0, NULL, 1),
(5352, 'S.Anitha', '4', '8838136476', '9840057018', 'anithasa44@email.com', '2006-07-05', 0, '1', '2', 'Meenakshi S', 'House keeping', 7000.00, 0, 12000.00, 11000.00, 'T.nagar', 'T.nagar', '2107050001', '', '2', 'upload_files/candidate_tracker/7144372414_Resume ani (2)-converted-converted.pdf', NULL, '1', '2021-07-05', 0, 'Jobs', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Lockdown Period Hold Long Pending ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-05 11:04:52', 1, '2021-07-05 11:11:01', 0, NULL, 1),
(5353, 'sumithra', '5', '7338990263', '', 'Sumithramanju044@gmail.com', '2000-09-16', 20, '2', '2', 'USHARANI.p', 'security', 15000.00, 1, 0.00, 15000.00, 'tvk nagar', 'tvk nagar', '2107050002', '1', '1', 'upload_files/candidate_tracker/60634225425_52f9a10b-23bf-4304-8976-f2fff17a2243.pdf', NULL, '1', '2021-07-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not suits for our Telecaller role', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-05 11:06:37', 1, '2021-07-05 11:14:58', 0, NULL, 1),
(5354, 'Manojkumar p', '5', '9361219858', '7358667902', 'Manojappu085@gmail.com', '1990-02-07', 31, '1', '1', 'Ramya', 'House wife', 30000.00, 2, 30000.00, 35000.00, 'Chennai', 'Chennai', '2107050003', '', '2', 'upload_files/candidate_tracker/58854268886_Vino_Resume.docx', NULL, '1', '2021-07-05', 0, '55558', '3', '59', '2021-07-19', 350000.00, '', '3', '2021-08-30', '1', 'Selected for RajKumar with CTC - 350000 includes PF/PT deductions', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-05 11:51:27', 60, '2021-07-15 05:22:35', 0, NULL, 1),
(5355, 'Salman Faris', '4', '8870370352', '9442779376', 'smartsalman360@gmail.com', '2001-10-19', 19, '2', '2', 'Shajahan', 'Auto Driver', 8000.00, 0, 0.00, 12000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2107050004', '1', '1', 'upload_files/candidate_tracker/25113954444_salman.docx', NULL, '2', '2021-07-06', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'slow and will not handle pressure. expt is 12k+, will relocate to chennai', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-05 01:18:34', 1, '2021-07-05 01:21:45', 0, NULL, 1),
(5356, 'UDHAYASURIYAN D', '23', '9500627371', '', 'udhay.peace@gmail.com', '1996-06-05', 25, '2', '2', 'Dhandapani k', 'Govt employee', 35000.00, 2, 10000.00, 20000.00, '41 Vasu Nagar Muthoopu Villupuram', 'Villupuram', '2107050005', '1', '2', 'upload_files/candidate_tracker/79865271708_CV Udhay 1.pdf', NULL, '2', '2021-07-06', 10, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-05 06:18:02', 1, '2021-07-05 06:25:31', 0, NULL, 1),
(5357, 'parthiban', '23', '6382025053', '8870901951', 'parthibannatesan2698@gmail.com', '1998-01-26', 23, '2', '2', 'natesan', 'business', 9000.00, 1, 2.50, 3.75, 'salem', 'salem', '2107050006', '1', '2', 'upload_files/candidate_tracker/99556398447_Parthiban Resume.pdf', NULL, '2', '2021-07-06', 15, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-05 06:27:39', 1, '2021-07-05 06:33:11', 0, NULL, 1),
(5358, 'manikandan', '4', '8122175112', '', 'Manikandanusharani48@gmail.com', '1996-01-21', 25, '2', '2', 'kuppusami', 'business', 10000.00, 1, 0.00, 12000.00, 'pattabiram', 'pattabiram', '2107060001', '1', '1', 'upload_files/candidate_tracker/32216164583_MANI RESUME.docx', NULL, '1', '2021-07-06', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Not Suit For Telecalling, Low Confidence level', '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-06 10:21:55', 1, '2021-07-06 11:04:10', 0, NULL, 1),
(5359, 'Erra Shashikanth', '5', '9705018588', '9014483197', 'shashikanthera1996@gmail.com', '1996-05-20', 25, '2', '2', 'nagender', 'late', 50000.00, 1, 0.00, 20000.00, 'hyderabad', 'uppal', '2107060002', '1', '1', 'upload_files/candidate_tracker/97159573755_Document from Shashikanth.pdf', NULL, '1', '2021-07-07', 0, '', '3', '59', '2021-07-15', 252200.00, '', '3', '2022-05-02', '1', 'Selected for Veben - Hyderabad Team with CTC 252200 includes PF/PT deductions', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-06 10:57:53', 60, '2021-07-14 11:42:15', 0, NULL, 1),
(5360, 'P. T. Eniyavan', '22', '7845380389', '', 'eniyavan.pt@gmail.com', '1995-06-03', 26, '1', '2', 'Prabhakaran', 'Automobiles', 30000.00, 1, 13500.00, 15000.00, 'No. 1 Venkatesapuram 3rd street, Triplicane', 'No. 1 Venkatesapuram 3rd Street, Triplicane', '2107060003', '', '2', 'upload_files/candidate_tracker/48164746413_Eniyavan P.T Resume(1).pdf', NULL, '1', '2021-07-06', 0, 'Jobs', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Profile not Up to expectation.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-06 10:59:58', 60, '2021-07-06 02:27:30', 0, NULL, 1),
(5361, 'gokulakrishnan', '4', '9042582317', '', 'krishgp20371@gmail.com', '2000-07-20', 20, '2', '2', 'suresh', 'supervisor', 15000.00, 1, 0.00, 10000.00, 'mugappair', 'mugappair', '2107060004', '1', '1', 'upload_files/candidate_tracker/70594479190_resume . pdf .pdf', NULL, '1', '2021-07-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-06 11:25:05', 1, '2021-07-06 11:32:17', 0, NULL, 1),
(5362, 'Udhaya', '23', '9095558613', '', 'udhayavvn96@gmail.com', '2006-07-06', 0, '2', '2', 'Venjatasubramaniyan', 'Farmer', 20000.00, 1, 21000.00, 30000.00, 'Nagapattinam', 'Nagapattinam', '2107060005', '1', '2', 'upload_files/candidate_tracker/95190646945_Udhaya\'s Resume-2021.pdf', NULL, '3', '2021-07-07', 20, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-06 11:39:57', 1, '2021-07-06 11:43:02', 0, NULL, 1),
(5363, '', '0', '9791744387', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107060006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-06 11:52:58', 0, NULL, 0, NULL, 1),
(5364, 'Gowtham Selvaraj', '23', '7358696546', '9095429637', 'gowthambct18@gmail.com', '2006-07-06', 15, '2', '2', 'Selvaraj', 'Building labour', 20000.00, 1, 12000.00, 20000.00, 'Udumalpet,Coimbatore', 'Udumalpet,Coimbatore', '2107060007', '1', '2', 'upload_files/candidate_tracker/82799566693_Gowtham_Resume.docx', NULL, '2', '2021-07-07', 15, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-06 01:35:41', 1, '2021-07-06 01:42:47', 0, NULL, 1),
(5365, 'R. Sushmitha', '2', '8610807630', '9941610912', 'sushmitharavikumar3@gmail.com', '1996-10-09', 24, '2', '2', 'Dinesh Kumar - Brother', 'Sales Manager', 20000.00, 3, 0.00, 10000.00, 'Valasaravakkam', 'Porur', '2107060008', '1', '1', 'upload_files/candidate_tracker/91495530319_Sushmitha .pdf', NULL, '2', '2021-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Didnt turn for the F2F discussion,', '2', '2', '0', '1', '1', '0', '2', '2021-07-12', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-06 07:30:01', 1, '2021-07-06 09:50:34', 0, NULL, 1),
(5366, 'Yeshvanth s', '11', '9176390200', '9444459015', 'yeshvanthselvam@gmail.com', '2006-07-07', 0, '1', '2', 'K Selvam', 'Fabrication Work', 90000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2107070001', '', '1', 'upload_files/candidate_tracker/305261708_Yeshvanth_S Resume.pdf', NULL, '1', '2021-07-07', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Averaga,no basic knowledge on the recruitment. Will not sustain and handling pressure doubtful', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-07 10:25:53', 1, '2021-07-07 10:30:18', 0, NULL, 1),
(5367, 'birundha j', '2', '9585626001', '9944890576', 'birundhacj@gmail.com', '2000-06-26', 21, '2', '2', 'c.jayaraman - j.baby', 'frontend developer', 12000.00, 2, 0.00, 15000.00, 'mayiladuthurai', 'chennai', '2107070002', '1', '1', 'upload_files/candidate_tracker/92036133997_BirundhaNew Resume.pdf', NULL, '3', '2021-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustainability Doubts not much comfortable with the service Agreement, Need to hire her as an Intern cum employment. Only front end React Basic,her current gross is 12k PM.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 10:40:57', 1, '2021-07-07 10:50:37', 0, NULL, 1),
(5368, 'rajesh', '5', '9600148241', '', 'randyraj345@gmail.com', '1996-07-06', 25, '2', '2', 'meera', 'home maker', 13000.00, 1, 13000.00, 20000.00, 'ennore', 'ennore', '2107070003', '1', '2', 'upload_files/candidate_tracker/44699012353_Rajesh Resume.pdf', NULL, '1', '2021-07-07', 0, '', '3', '60', '2021-07-09', 261696.00, '', '3', '2021-07-14', '1', 'Selected for Shanmugam Team - Internal Team Reference - Selected with CTC - 261696 includes PF /PT', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-07 10:54:52', 60, '2021-07-09 03:32:13', 0, NULL, 1),
(5369, 'naveen kumar', '4', '9360556306', '', 'kumarnaveen06028@gmail.com', '2006-07-07', 15, '2', '2', 'somusundaram', 'working', 10000.00, 1, 0.00, 10000.00, 'perambur', 'perambur', '2107070004', '1', '1', 'upload_files/candidate_tracker/930441843_Adobe Scan 07 Jul 2021.pdf', NULL, '1', '2021-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left Without attending the interview', '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-07 11:35:29', 1, '2021-07-07 11:41:57', 0, NULL, 1),
(5370, 'binu kumar', '4', '9025850514', '', 'binusimely5095@gmail.com', '2000-04-29', 21, '2', '2', 'suresh babu', 'working', 12000.00, 1, 0.00, 10000.00, 'perambur', 'perambur', '2107070005', '1', '1', 'upload_files/candidate_tracker/19867217722_Adobe Scan 07 Jul 2021 (1) (1).pdf', NULL, '1', '2021-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for the role,', '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-07 11:44:02', 1, '2021-07-07 11:48:52', 0, NULL, 1),
(5371, 'P Vasantha kumar', '5', '7299926882', '9841040703', 'vasanthbca3143@gmail.com', '1998-05-29', 23, '1', '2', 'Manjula', 'Employee', 30000.00, 1, 22900.00, 25000.00, 'Avadi, Chennai', 'Avadi', '2107070006', '', '2', 'upload_files/candidate_tracker/42373434023_vasanth updated CV.docx', NULL, '1', '2021-07-07', 10, '55558', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-07 12:00:06', 1, '2021-07-07 12:12:09', 0, NULL, 1),
(5372, 'syed', '23', '9840069315', '', 'syedninja@gmail.com', '1993-11-04', 27, '2', '2', 'rehamani', 'business', 18000.00, 2, 22000.00, 24000.00, 'broadway', 'broadway', '2107070007', '1', '2', 'upload_files/candidate_tracker/47314412082_Tranxit resume.doc', NULL, '1', '2021-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge in UI/UX, he is only into Design. Will not sustain with us for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-07 12:22:26', 1, '2021-07-07 12:38:33', 0, NULL, 1),
(5373, 'jerome roach ranjith', '23', '8939038322', '8919443935', 'ranjithdcruzz@gmail.com', '1992-11-04', 28, '2', '2', 'parents', 'cooli', 45000.00, 2, 4.20, 5.50, 'ranipet', 'chennai', '2107070008', '1', '2', 'upload_files/candidate_tracker/30978234196_JEROME ROACH RANJITH_CV (1).pdf', NULL, '1', '2021-07-12', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 12:54:37', 1, '2021-07-07 01:05:31', 0, NULL, 1),
(5374, 'd yogapriya', '23', '8072124194', '', 'yogapriyad12@gmail.com', '1995-06-12', 26, '2', '2', 's duraiswamy', '-', 20000.00, 2, 22000.00, 28000.00, 'chennai', 'chennai', '2107070009', '1', '2', 'upload_files/candidate_tracker/12599160994_yogapriya d - resume.pdf', NULL, '1', '2021-07-08', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Task not satisfactory', '2', '1', '0', '1', '1', '0', '2', '2021-07-12', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 01:22:48', 1, '2021-07-07 01:28:07', 0, NULL, 1),
(5375, 'A Ragu ram', '2', '9566677095', '8248477930', 'imraguar@gmail.com', '1999-11-29', 21, '2', '2', 'A Subatra', 'Housewife', 20000.00, 1, 0.00, 10000.00, 'Tisaiyanvilai, Tirunelveli', 'Tisaiyanvilai, Tirunelveli', '2107070010', '1', '1', 'upload_files/candidate_tracker/86555376161_Ragu Resume.pdf', NULL, '2', '2021-07-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 02:52:20', 1, '2021-07-07 02:56:12', 0, NULL, 1),
(5376, 'Sivasundararaj', '23', '9092250561', '', 'siva.avis47@gmail.com', '1991-01-31', 30, '2', '2', 'Rathinam', 'Driver', 4.00, 2, 30000.00, 45000.00, 'trichy', 'Chennai', '2107070011', '1', '2', 'upload_files/candidate_tracker/26956190911_resume_sivasundar-721.docx', NULL, '3', '2021-07-19', 0, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 03:09:28', 1, '2021-07-07 03:20:49', 0, NULL, 1),
(5377, 'Selvakumar R', '23', '8489050837', '6383521030', 'selv66378@gmail.com', '1996-06-03', 25, '2', '2', 'Rajagopal', 'Agriculture', 200000.00, 2, 240000.00, 300000.00, 'Chennai', 'Chennai', '2107070012', '1', '2', 'upload_files/candidate_tracker/33771133254_Resume.pdf', NULL, '1', '2021-07-10', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability in his previous experience, focused only on the Salary, No basic knowledge on the requirement. Will not sustain with us  for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 03:23:38', 1, '2021-07-07 03:27:52', 0, NULL, 1),
(5378, 'Lishayini', '23', '9345140412', '', 'lishayini1651996@gmail.com', '1996-05-16', 25, '2', '2', 'Meena', 'Home makee', 300000.00, 2, 20000.00, 3.80, 'Thanjavur', 'Chennai', '2107070013', '1', '2', 'upload_files/candidate_tracker/16196655991_Lisha Resume-1.pdf', NULL, '1', '2021-07-17', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 03:44:47', 1, '2021-07-07 03:51:39', 0, NULL, 1),
(5379, '', '0', '7904272733', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107070014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-07 04:13:19', 0, NULL, 0, NULL, 1),
(5380, 'Mathan kumar.G', '23', '9952471098', '', 'mathan.sgs@gmail.com', '1994-01-02', 27, '2', '2', 'ganasekar.s', 'teacher rtd', 1000000.00, 1, 19500.00, 28000.00, 'Panruti', 'Panruti', '2107070015', '1', '2', 'upload_files/candidate_tracker/44548221235_Resume (1).pdf', NULL, '2', '2021-07-07', 0, '', '1', '64', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 07:22:58', 1, '2021-07-08 09:38:56', 0, NULL, 1),
(5381, 'Iswarya', '23', '9500262052', '', 'iswarya.parthipan95@gmail.com', '2006-07-07', 0, '2', '2', 'Parthipan', 'Farmer', 5000.00, 0, 0.00, 600000.00, 'Chennai', 'Thanjavur', '2107070016', '1', '2', 'upload_files/candidate_tracker/93580770611_Resume_Iswarya_3.pdf', NULL, '3', '2021-07-08', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 07:36:35', 1, '2021-07-07 07:40:10', 0, NULL, 1),
(5382, 'Malathi M', '23', '9092967082', '9345322176', 'malathirajesh97@gmail.com', '1997-06-08', 24, '2', '2', 'Murugan', 'Banker', 550000.00, 1, 300000.00, 450000.00, 'Thoothukudi', 'Thoothukudi', '2107080001', '1', '2', 'upload_files/candidate_tracker/21697323592_Malathi Murugan 1.pdf', NULL, '2', '2021-07-08', 7, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 10:25:55', 1, '2021-07-08 10:31:27', 0, NULL, 1),
(5383, 'Prasanth M', '4', '9025964223', '7401097652', 'prasanthmuthu1997@gmail.com', '1997-06-16', 24, '3', '2', 'Muthusamy', 'Farmer', 20000.00, 1, 0.00, 12000.00, '5/185, thulukkaviduthi, peravurani, thajavur', '20/39, Kamala Nehru Nagar, choolaimedu, chennai', '2107080002', '', '1', 'upload_files/candidate_tracker/49668166388_prasanth updated resume (4) (1) (1).pdf', NULL, '1', '2021-07-09', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Hold on Long Pending ', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-08 10:42:35', 1, '2021-07-08 10:50:14', 0, NULL, 1),
(5384, 'Nirmal raj. A', '11', '9171927252', '9840748616', 'nirmallamrin94@gmail.com', '1997-11-30', 23, '4', '2', 'Anand Raj', 'Team Leader tata motors', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2107080003', '', '1', 'upload_files/candidate_tracker/78623985440_Nirmal final resume 1.pdf', NULL, '1', '2021-07-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good, Sustainability doubts on the profile and the expectation is very high. Fresher for Recruitment profile', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-08 10:56:45', 1, '2021-07-08 11:01:11', 0, NULL, 1),
(5385, 'Karthik D', '5', '7305230527', '', 'Karthikd091@gmail.com', '1991-06-25', 30, '1', '2', 'Dhanabalan', 'Farmer', 18000.00, 2, 0.00, 25000.00, 'Thanjavur', 'Thanjavur', '2107080004', '', '2', 'upload_files/candidate_tracker/59932148187_Karthik Dhanabalan.pdf', NULL, '1', '2021-07-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-08 11:18:14', 1, '2021-07-08 11:50:34', 0, NULL, 1),
(5386, 'shreeniveditha.r', '2', '9629224733', '8825791291', 'niveditharavichandran98@gmail.com', '1998-02-01', 23, '2', '2', 'j.ravichandran', 'retired railway employee', 23000.00, 0, 0.00, 2.50, 'Virudhunagar', 'Virudhunagar', '2107080005', '1', '1', 'upload_files/candidate_tracker/39309901677_Shree_Niveditha_ Resume.docx-6.pdf', NULL, '2', '2021-07-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not get fit with our requirement, Sustainability doubts, Not much open with SA', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 02:03:32', 1, '2021-07-08 02:37:32', 0, NULL, 1),
(5387, 'Tharun T', '2', '8825693103', '', 'tharunsneha8@gmail.com', '1997-06-30', 24, '2', '2', 'Tamilalagan', 'Farmer', 20000.00, 2, 0.00, 7000.00, 'Namakkal', 'Chennai', '2107080006', '1', '1', 'upload_files/candidate_tracker/76523102503_My resume.pdf', NULL, '1', '2021-07-12', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', '1yr in royal enfield and 2m in a IT, Looking For Job Change In IT, self learning through onlineMERN And Okay With Internship Terms And Conditions, high job need.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 03:50:12', 1, '2021-07-08 03:57:09', 0, NULL, 1),
(5388, 'Prem Kumar R', '2', '9677493249', '', 'r.premkumar29@gmail.com', '1998-10-29', 22, '2', '2', 'Rajendran', 'Business', 50000.00, 0, 0.00, 25000.00, 'Salem', 'Salem', '2107080007', '1', '1', 'upload_files/candidate_tracker/20590938410_BE CSE PREMKUMAR RESUME.pdf', NULL, '2', '2021-07-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '	Can Check For Mern 5050 Profile ,Fresher - didnt appear for the F2F discussion', '2', '1', '0', '1', '1', '0', '2', '2021-07-12', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 04:00:56', 1, '2021-07-08 06:49:30', 0, NULL, 1),
(5389, 'Thilothi R', '2', '6380179212', '9655642853', 'thilothiravi@gmail.com', '2000-09-04', 20, '2', '2', 'Ravichandran', 'Teacher', 500000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2107080008', '1', '1', 'upload_files/candidate_tracker/68457300423_Thilothi R.docx', NULL, '1', '2021-07-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Exams yet to get complete,not much suits for our Mern Role', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 04:15:37', 1, '2021-07-08 04:24:29', 0, NULL, 1),
(5390, '', '0', '9789962540', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107080009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-08 04:16:06', 0, NULL, 0, NULL, 1),
(5391, 'sumalatha', '4', '6382289659', '', 'suma37156@gmail.com', '1997-11-13', 23, '2', '2', 'selvaraj', 'auto driver', 10000.00, 1, 12000.00, 12000.00, 'chennai', 'nesapakkam', '2107080010', '1', '2', 'upload_files/candidate_tracker/65699130139_sumalatha.pdf', NULL, '2', '2021-07-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-08 04:16:07', 1, '2021-07-08 04:31:43', 0, NULL, 1),
(5392, '', '0', '6480178212', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107080011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-08 04:27:05', 0, NULL, 0, NULL, 1),
(5393, 'SIVASAKTHI S', '2', '6385312023', '', 'sakthitamil254@gmail.com', '1998-05-06', 23, '2', '2', 'Sundaresan K', 'Private Employee', 10000.00, 1, 0.00, 10000.00, 'Ariyalur', 'Ariyalur', '2107080012', '1', '1', 'upload_files/candidate_tracker/48843717308_SIVASAKTHI S Resume.pdf', NULL, '2', '2021-07-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain with us for a long. Not much suits for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 06:00:43', 1, '2021-07-08 06:04:46', 0, NULL, 1),
(5394, 'vivekananthan', '2', '6380713042', '7339290772', 'vivekananthan112599@gmail.com', '1999-06-30', 22, '2', '2', 'dhandapani', 'fresher', 20000.00, 1, 0.00, 20000.00, 'udumalpet', 'udumalpet', '2107080013', '1', '1', 'upload_files/candidate_tracker/68854294346_Resume.pdf', NULL, '2', '2021-07-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge on the profile,will not suits for our role.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 07:11:03', 1, '2021-07-08 08:35:22', 0, NULL, 1),
(5395, 'Waiz afrithi', '23', '7305848408', '', 'waiz.afrithi786s@gmail.com', '1997-03-04', 24, '2', '2', 'Sithi', 'Tailor', 10000.00, 1, 0.00, 30000.00, 'Ramanathapuram', 'Ramanathapuram', '2107090001', '1', '2', 'upload_files/candidate_tracker/78227896740_WAIZ RESUME.docx', NULL, '2', '2021-07-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 11:26:18', 1, '2021-07-09 09:58:40', 0, NULL, 1),
(5396, 'santhosh', '2', '8122756068', '', 'santhoshtheking9181@gmail.com', '1996-08-09', 24, '2', '2', 'dass', 'labourer', 3000.00, 2, 0.00, 10000.00, 'porur', 'porur', '2107090002', '1', '1', 'upload_files/candidate_tracker/15602857337_Santhosh Resume.pdf', NULL, '1', '2021-07-12', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '1', 'has 4yrs exp in customer support and looking for job change in IT, done 55hr course in MERN and okay with internship terms and conditions.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 11:32:46', 1, '2021-07-09 11:42:53', 0, NULL, 1),
(5397, 'Gunasundari', '2', '9941478040', '7598446741', 'gunanaga75@gmail.com', '1999-05-07', 22, '2', '2', 'Nagalingam', 'Daily wages', 76000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2107090003', '1', '1', 'upload_files/candidate_tracker/16106349914_Resume.pdf', NULL, '2', '2021-07-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much open with the Service Agreement.Sustainability doubts on her profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 11:36:12', 1, '2021-07-09 11:43:13', 0, NULL, 1),
(5398, 'Amirthavarshini S', '23', '9786217448', '9003633448', 'amirthavarsniselvaraj@gmail.com', '1999-05-06', 22, '2', '2', 'Selvaraj', 'Farming', 5000.00, 1, 10000.00, 15000.00, 'Erode', 'Erode', '2107090004', '1', '2', 'upload_files/candidate_tracker/68897662166_varsha resume.pdf', NULL, '3', '2021-07-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '6 months Exp left due to salary Issue,not much strong in Basics of Mern, will not handle the pressure.Sustainability doubts on the profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 11:54:47', 1, '2021-07-09 12:00:23', 0, NULL, 1),
(5399, 'Sanjay', '2', '8148902671', '', 'sanjayforofficial@gmail.com', '1997-12-15', 23, '2', '2', 'Sridharan K', 'Business', 15000.00, 0, 0.00, 350000.00, 'Chennai', 'Chennai', '2107090005', '1', '1', 'upload_files/candidate_tracker/20509921579_Sanjay S (CV).pdf', NULL, '1', '2021-07-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Mern, He is into profile research for past 1,5 yrs. Currently working 30 Days of notice period.Salary Expecatation is high,Sustainability Doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 01:17:07', 1, '2021-07-09 01:28:28', 0, NULL, 1),
(5400, 'Arjun Kumar P', '2', '9344093024', '8124626095', 'Kumar.jocky123@gmail.com', '1997-11-06', 23, '2', '2', 'Parasuraman', 'Farmer', 15000.00, 3, 0.00, 10000.00, 'Pondicherry', 'Pondicherry', '2107090006', '1', '1', 'upload_files/candidate_tracker/11271257216_MyResume(arjun).docx', NULL, '1', '2021-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Mern Stack, Not much comfortable on the service Agreement. No basic knowledge ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 01:24:59', 1, '2021-07-09 01:30:17', 0, NULL, 1),
(5401, 'shrimon', '2', '7003506009', '', 'shrimonssinha@gmail.com', '1998-06-28', 23, '2', '2', 'siddhartha', 'doctor', 25000.00, 1, 0.00, 400000.00, 'kolkata', 'chennai', '2107090007', '1', '1', 'upload_files/candidate_tracker/57318043223_Resume_ShrimonSSinha.pdf', NULL, '1', '2021-07-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 01:31:29', 1, '2021-07-09 01:35:43', 0, NULL, 1),
(5402, 'Madhura', '5', '8760258449', '', 'ismadhura201999@gmail.com', '1999-01-20', 22, '2', '2', 'I.Sekar', 'Writter', 20000.00, 1, 12000.00, 15000.00, 'Sivagangai', 'Vadapalani', '2107100001', '1', '2', 'upload_files/candidate_tracker/41247857567_RESUME ma.docx', NULL, '1', '2021-07-10', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-10 09:18:52', 1, '2021-07-10 09:22:24', 0, NULL, 1),
(5403, 's.saran kumar', '2', '9092990408', '9943677253', 'sarankumars63538@gmail.com', '1990-01-30', 31, '2', '2', 's.nalani', 'house wife', 15000.00, 2, 0.00, 165000.00, 'kaveripakkam', 'kavangarai', '2107100002', '1', '1', 'upload_files/candidate_tracker/60922413424_Resume.docx', NULL, '1', '2021-07-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No relevant Exp, Worked in various other domain, will not handle the pressure. No sustainability  in this profile', '2', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-10 09:35:48', 1, '2021-07-10 09:51:56', 0, NULL, 1),
(5404, 'Jonathan Joseph Jeffries', '11', '9952909537', '9952909527', 'jonathanjeffries821@gmail.com', '2001-01-16', 20, '2', '2', 'Nevil Jeffries', 'AR Logistics', 50000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2107100003', '1', '1', 'upload_files/candidate_tracker/33596875716_Jonu Resume-1.pdf', NULL, '1', '2021-07-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need To Come Back With His Acceptance On Our Terms And Conditions. Communication Is Good  Fresher - Didnt turn back for a long and his profile has been rejected on 27-Jul-2021', '6', '2', '0', '1', '1', '0', '2', '2021-07-12', '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-10 10:40:46', 1, '2021-07-10 10:46:51', 0, NULL, 1),
(5405, 'Kalaivanan.T', '6', '9790036410', '', 'kalaivanan.t95@gmail.com', '1995-03-21', 26, '2', '2', 'Tamilarasan', 'Farmer', 30000.00, 2, 19000.00, 18000.00, 'Karaikudi', 'Medavakkam', '2107100004', '1', '2', 'upload_files/candidate_tracker/74175096517_Kalai Resume-updated.pdf', NULL, '1', '2021-07-10', 0, '', '3', '60', '2021-07-12', 216000.00, '', '3', '2023-04-08', '1', 'Selected for Syed Team with CTC - 216000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-10 11:31:38', 60, '2021-07-10 04:52:50', 0, NULL, 1),
(5406, 'Salaimuniselvam', '2', '7708215211', '', 'salaimuniselvam7@gmail.com', '1999-10-12', 21, '2', '2', 'sundarakrishnan', 'fresher', 40000.00, 1, 0.00, 18000.00, 'Srivilliputtur', 'Srivilliputtur', '2107100005', '1', '1', 'upload_files/candidate_tracker/11007562030_salaimuniselvams.pdf', NULL, '3', '2021-07-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate not sure on the Sustainability, very basic knowledge only in the excel. Not much comfortable on the Service Agreement', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-10 11:52:03', 1, '2021-07-12 06:51:07', 0, NULL, 1),
(5407, 'kalaivani', '4', '9597681737', '', 'kalaichlm2927@gmail.com', '1998-05-27', 23, '2', '2', 'kumaran', 'cooli', 12000.00, 1, 0.00, 10000.00, 'arakonam', 'Arakkonam', '2107100006', '1', '1', 'upload_files/candidate_tracker/35088846177_kalai resume.docx', NULL, '2', '2021-07-10', 0, '', '3', '59', '2021-07-14', 132000.00, '', '0', NULL, '2', 'Selected for Tiruvallur location  with CTC 132000 includes PF/ESI', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-10 05:53:15', 1, '2021-07-10 05:55:56', 0, NULL, 1),
(5408, 'Ganesh AG', '5', '9994114060', '9994452959', 'valli15gopi@gmail.com', '1989-06-04', 32, '2', '1', 'Nagalakshmi', 'Dobi', 10000.00, 2, 28000.00, 30000.00, 'Sholinghur', 'Sholinghur', '2107120001', '3', '2', 'upload_files/candidate_tracker/13032781621_2020 resume.docx', NULL, '1', '2021-07-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-12 09:49:42', 1, '2021-07-12 09:59:21', 0, NULL, 1),
(5409, 'Yuvaraj', '6', '7401735915', '9962896316', 'nithiyayuvaraj1610@gmail.com', '1999-02-10', 22, '2', '2', 'Srinivasan.R', 'Auto driver', 300000.00, 1, 17175.00, 23000.00, 'Chennai teynampet', 'Chennai teynampet', '2107120002', '3', '2', 'upload_files/candidate_tracker/76142745228_YUVARAJ. S CV.pdf', NULL, '1', '2021-07-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-12 10:03:11', 1, '2021-07-12 10:15:15', 0, NULL, 1),
(5410, 'Sugeerthi', '4', '8072678464', '', 'smilys792@gmail.com', '1998-01-21', 23, '1', '1', 'Manikandan', 'Employee', 40000.00, 1, 21000.00, 22000.00, 'Chennai', 'Chennai', '2107120003', '', '2', 'upload_files/candidate_tracker/19698075122_resume.pdf', NULL, '1', '2021-07-12', 0, 'P1105', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Hold on Long Pending ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-12 10:51:10', 1, '2021-07-12 11:13:39', 0, NULL, 1),
(5411, 'Joseph Steve Gomez', '11', '9884286228', '', 'stevegomez100796@gmail.com', '1996-07-10', 25, '3', '2', 'louis lancy gomez', 'business', 40000.00, 1, 375000.00, 385000.00, 'Chennai', 'Chennai', '2107120004', '', '2', 'upload_files/candidate_tracker/85545311141_Steve’s CV copy-compressed-compressed.pdf', NULL, '1', '2021-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication  is good, Fresher for the Recruiter Role,Salary Expectation is very high around 20K', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-12 10:59:08', 1, '2021-07-12 11:01:32', 0, NULL, 1),
(5412, 'N.Shivshankar', '11', '8668067427', '', 'viggu811@gmail.com', '1996-11-08', 24, '4', '2', 'S.Naganathan', 'AGM', 1.50, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2107120005', '', '1', 'upload_files/candidate_tracker/49614853939_RESUME.docx', NULL, '1', '2021-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suits for our Recruiter profile, will not sustain for a long', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-12 11:22:18', 1, '2021-07-12 11:32:02', 0, NULL, 1),
(5413, 'Yuvashri Elango', '22', '7397122326', '', 'Yuvashriharini@gmail.com', '2000-06-16', 21, '2', '2', 'Elango', 'Grocery shop', 30000.00, 1, 0.00, 12000.00, '25, murugalaiya nagar, Cuddalore.', 'Chennai', '2107120006', '1', '1', 'upload_files/candidate_tracker/94473104440_Yuvashri Elango resume... .pdf', NULL, '1', '2021-07-12', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Not sustainable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-12 11:42:49', 1, '2021-07-12 12:22:28', 0, NULL, 1),
(5414, 'Riyaz Ahmed', '6', '7338762467', '', 'riyazrio07860@gmail.com', '2000-01-18', 21, '2', '2', 'Rahamath Nisha', 'Perambur', 15000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2107120007', '1', '2', 'upload_files/candidate_tracker/94096471324_RIYAZ-converted (2).docx', NULL, '1', '2021-07-12', 0, '', '3', '60', '2021-07-15', 156000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team with CTC  - 156000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-12 11:44:47', 60, '2021-07-14 11:43:38', 0, NULL, 1),
(5415, 'M. Tanya Josphine', '11', '9677286586', '', 'tanijose00@gmail.com', '2000-10-04', 20, '2', '2', 'Melvyn and', 'Daily wages', 10000.00, 1, 0.00, 12000.00, '3/940,palavakkam,chennai-600041', '3/940,palavakkam,chennai-600041', '2107120008', '1', '1', 'upload_files/candidate_tracker/42672395391_M .TANYA JOSPHINE .RESUME.docx', NULL, '1', '2021-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Yet to complete her graduation, not suitable for our roel', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-12 11:44:48', 1, '2021-07-12 11:53:42', 0, NULL, 1),
(5416, 'Kumara swamy', '22', '8688371566', '9949482955', 'nemalakumarswamy555@gmail.com', '2001-03-05', 20, '2', '2', 'Gopal Krishna', 'Vasthu planner', 60000.00, 1, 0.00, 5000.00, 'Sheshadri nagar,tuni,AP', 'Shoulinganallur, Chennai,TN', '2107120009', '1', '1', 'upload_files/candidate_tracker/2856316948_Resume.pdf', NULL, '1', '2021-07-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, Planning to do his ms in canada.  looking for internship alone.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-12 11:51:37', 1, '2021-07-12 12:06:30', 0, NULL, 1),
(5417, 'Karan L', '20', '6369331934', '9176391236', 'iamkaran0405@gmail.com', '1997-04-04', 24, '2', '2', 'Loganathan', 'Driver', 50000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2107120010', '1', '1', 'upload_files/candidate_tracker/55543322140_My resume karan final.pdf', NULL, '1', '2021-07-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-12 04:26:24', 1, '2021-07-12 04:30:37', 0, NULL, 1),
(5418, 'vishal', '6', '7448843190', '', 'vishaalvr13@gmail.com', '1993-09-18', 27, '2', '2', 'pm sundhar', 'electrician', 50000.00, 1, 11500.00, 15000.00, 'poonamalee', 'poonamallee', '2107120011', '1', '2', 'upload_files/candidate_tracker/34822737422_vishaal19007.docx', NULL, '2', '2021-07-10', 0, '', '3', '60', '2021-07-15', 0.00, '', '5', '1970-01-01', '1', 'Selected for Srikanth Team with CTC 204000 included PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-12 04:52:49', 60, '2021-07-15 09:48:30', 0, NULL, 1),
(5419, 'kiran kumar', '23', '9566138804', '', 'kiran1393kumar@gmail.com', '1993-08-13', 27, '2', '2', 'a kuppu', 'unemployed', 10000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'Ramanathapuram', '2107120012', '1', '1', 'upload_files/candidate_tracker/55701359775_kiran_uiuxweb_resume-compressed.pdf', NULL, '3', '2021-07-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-12 06:46:38', 1, '2021-07-12 06:57:03', 0, NULL, 1),
(5420, 'Dillip kumar G', '11', '8190814239', '8189879168', 'dillipg632@gmail.com', '2000-11-20', 20, '1', '2', 'Govindaraj', 'Sales executive', 150000.00, 1, 0.00, 150000.00, 'Padi,chennai', 'Padi,chennai', '2107130001', '', '1', 'upload_files/candidate_tracker/86463006_Dillip Kumar G resume.pdf', NULL, '1', '2021-07-13', 0, 'Rup kumar', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not suits for our Recruiter Role. Handling Pressure doubtful, Sustainability Doubt', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-13 09:46:52', 1, '2021-07-13 09:54:45', 0, NULL, 1),
(5421, 'Samson Kirubakaran', '2', '7010794411', '8056645081', 'samsonkirubakaran23@gmail.com', '1998-09-10', 22, '2', '2', 'Jeyasekaran', 'Business', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2107130002', '1', '1', 'upload_files/candidate_tracker/45515613749_Samson J.pdf', NULL, '1', '2021-07-13', 0, '', '3', '59', '2021-07-19', 96000.00, '', '0', NULL, '2', 'Joined as a Intern (will be in Observation for 7 Days till 25-Jul) post observation Internship starts with the stipend 0f 3500 for 5 months then as an employee starts with the pay of 8000', '2', '1', '0', '1', '1', '0', '2', '2021-07-19', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-13 11:17:52', 1, '2021-07-13 11:23:17', 0, NULL, 1),
(5422, 'Gowtham k', '2', '9003094252', '', 'karthickgowtham47@gmail.com', '1999-01-29', 22, '2', '2', 'Karthickeyan R', 'Security incharge', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2107130003', '1', '1', 'upload_files/candidate_tracker/42097911031_Gowtham Karthikeyan.pdf', NULL, '1', '2021-07-14', 0, '', '3', '59', '2021-07-19', 96000.00, '', '0', NULL, '1', 'Joined As A Intern (Will Be In Observation For 7 Days Till 25-Jul) Post Observation Internship Starts With The Stipend 0f 3500 For 5 Months Then As An Employee Starts With The Pay Of 8000', '2', '1', '0', '1', '1', '0', '2', '2021-07-19', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-13 11:24:14', 1, '2021-07-13 12:26:10', 0, NULL, 1),
(5423, 'jagadesh', '5', '8838877095', '', 'rsjl787898@gmail.com', '1998-05-17', 23, '2', '2', 'ramesh', 'driver', 35000.00, 1, 22000.00, 25000.00, 'chennai', 'chennai', '2107130004', '1', '2', 'upload_files/candidate_tracker/44152861826_JAGADEESH.R resume_2 (1).docx', NULL, '1', '2021-07-13', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-07-13 12:17:41', 1, '2021-07-13 01:35:47', 0, NULL, 1),
(5424, 'Santhiya.C', '27', '6380767664', '', 'santhiya.cs20@gmail.com', '1997-06-25', 24, '2', '2', 'M.Chandrasekar', 'Farmer', 50000.00, 1, 0.00, 15000.00, 'Kolathur', 'Chennai', '2107130005', '1', '1', 'upload_files/candidate_tracker/24527269259_Santhiya it .pdf', NULL, '1', '2021-08-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is into ASP.Net with MVC much into webforms. Not suits for our client', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-13 01:22:27', 60, '2021-08-14 11:19:49', 0, NULL, 1),
(5425, 'ARIF AHAMED A', '6', '9962895377', '9840411627', 'arifahamed785@Gmail.com', '1996-06-20', 25, '2', '2', 'ALTHAF AHAMED M', 'selfe Employee', 45000.00, 1, 20000.00, 25000.00, 'No:5 old No:47/2 3rd Street Nsk nagar Arumbakkam', 'No:5 Old No:47/2 3rd Street Nsk Nagar Arumbakkam', '2107130006', '1', '2', 'upload_files/candidate_tracker/75697542945_ARIF M.A.docx', NULL, '1', '2021-07-16', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-13 02:08:00', 50, '2021-07-13 04:16:35', 0, NULL, 1),
(5426, 'Marian Berry Floyd S', '5', '9150924678', '', 'marians15299@gmail.com', '1999-02-15', 22, '2', '2', 'Sahaya Babu', 'private sector', 20000.00, 2, 0.00, 15000.00, 'purasawalkam', 'Purasawalkam', '2107130007', '1', '2', 'upload_files/candidate_tracker/27078302203_floyd resume_13588086.docx', NULL, '1', '2021-07-13', 7, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate ok E sales', '5', '1', '', '4', '6', '', '2', '1970-01-01', '3', '6', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-13 03:54:24', 60, '2021-07-17 06:21:32', 0, NULL, 1),
(5427, 'Vijay Shankar', '27', '8056218224', '', 'uvijayshankar1993@gmail.com', '1993-12-26', 27, '2', '2', 'uma Shankar', 'business', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2107130008', '1', '1', 'upload_files/candidate_tracker/51335352740_01RESUME.docx', NULL, '1', '2021-07-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suits for our client role.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-13 04:31:35', 60, '2021-07-16 05:48:51', 0, NULL, 1),
(5428, 'Alakiya s', '2', '9344979620', '7845003359', 'suramalakiya1998@gmail.com', '1998-09-26', 22, '2', '2', 'S Hajarath reddy', 'Business', 15000.00, 1, 0.00, 3000000.00, 'Chennai', 'Chennai', '2107130009', '1', '1', 'upload_files/candidate_tracker/29154909700_Alakiya s resume.pdf', NULL, '1', '2021-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not comfortable with the terms and conditions, fresher profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-13 04:47:36', 1, '2021-07-13 04:51:36', 0, NULL, 1),
(5429, 'Selvakumar', '2', '9344767390', '9750463400', 'Selva3051999@gmail.com', '1999-05-30', 22, '2', '2', 'Raja', 'Farmer', 10000.00, 1, 0.00, 15000.00, '1/43, East Street, Vellalanvilai ,Thoothukudi', '1/43, East Street, Vellalanvilai -628219', '2107140001', '1', '1', 'upload_files/candidate_tracker/66981894015_selvakumar_resume.pdf', NULL, '2', '2021-07-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-14 11:29:41', 1, '2021-07-14 11:53:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5430, 'Mareeswari.M', '4', '7305942484', '9791436304', 'sivamarees1994@gmail.com', '1998-08-16', 22, '2', '1', 'Sivakumar', 'Sweetmaster', 25000.00, 0, 15000.00, 18000.00, 'Valasaravakkam', 'Valasaravakkam', '2107140002', '3', '2', 'upload_files/candidate_tracker/29727134617_New doc 14 Jul 2021 12.09.pdf', NULL, '2', '2021-07-14', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile, give a try for esale. Convincing not much comfortable, kindly check and let me know', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 11:53:01', 60, '2021-07-15 01:14:02', 0, NULL, 1),
(5431, 'daniel thomas', '14', '9080347234', '', 'danielthomasd4@gmail.com', '2000-05-04', 21, '2', '2', 'devaraj', 'btech', 20000.00, 1, 0.00, 20000.00, 'alandur', 'chennai', '2107140003', '1', '1', 'upload_files/candidate_tracker/70085843792_Daniel_Thomas-CV.pdf', NULL, '2', '2021-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,No knowledge on the skills,will not sustain for a long ,candidate clearly states that he is not much comfortable with this profile too', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-14 11:53:57', 1, '2021-07-14 11:58:32', 0, NULL, 1),
(5432, 'Pavithra k', '4', '7305260115', '9952087796', 'Nabirami62@gmail.com', '1997-11-22', 23, '2', '2', 'Kannan.D', 'Businessmen', 20000.00, 1, 14000.00, 16000.00, 'Villivakkam', 'Villivakkam', '2107140004', '3', '2', 'upload_files/candidate_tracker/82954254527_PaviK Resume.pdf', NULL, '1', '2021-07-14', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '5050 profile,can check for CRM-Processed for 2nd level, but left without attending', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 12:00:16', 1, '2021-07-14 12:05:51', 0, NULL, 1),
(5433, 'Abirami n', '4', '8939802297', '7305875790', 'Nabirami281@gmail.com', '1996-04-19', 25, '2', '2', 'Buneshwari n', 'Working', 10000.00, 0, 12500.00, 15000.00, 'Tnagar', 'Tnagar', '2107140005', '3', '2', 'upload_files/candidate_tracker/21189883089_1605701958944Resume_Abirami-2021)-converted.pdf', NULL, '1', '2021-07-14', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No degree,5050 have exp in Telecaller,processed for 2nd round but left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 12:10:09', 1, '2021-07-14 12:39:16', 0, NULL, 1),
(5434, 'Mahendran R', '6', '8667200856', '', 'amuthamahendran47@gmail.com', '1996-12-07', 24, '2', '2', 'Rajendran', 'Driver', 20000.00, 1, 19500.00, 20000.00, 'Trichy', 'Chen ai', '2107140006', '3', '2', 'upload_files/candidate_tracker/38114427575_resume.pdf', NULL, '1', '2021-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability in the profile, checked with 2nd level and got rejected. Will not suits for our role', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 12:14:47', 1, '2021-07-14 12:18:24', 0, NULL, 1),
(5435, 'M.Sandhya', '6', '8939326912', '7550226712', 'keerthisandhyam@gmail.com', '2000-02-22', 21, '3', '2', 'R.Murugan', 'Kulli', 13.00, 2, 0.00, 15.00, 'Redhills', 'Redhills', '2107140007', '', '1', 'upload_files/candidate_tracker/70003210256_imgtopdf_14072021014626.pdf', NULL, '1', '2021-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not communicating ,will not suits for our role', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 12:55:40', 1, '2021-07-14 01:49:04', 0, NULL, 1),
(5436, 'M.sangavi', '4', '9150440182', '', 'ammuma765@gmail.com', '2002-01-18', 19, '3', '2', 'R.MURUGAN', 'Kuli', 13000.00, 2, 0.00, 15000.00, 'Redhills', 'Redhills', '2107140008', '', '1', 'upload_files/candidate_tracker/95367283078_imgtopdf_14072021011011.pdf', NULL, '1', '2021-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No commuication, not open up will not fir for our role', '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 12:56:02', 1, '2021-07-14 01:26:42', 0, NULL, 1),
(5437, 'MONICA', '25', '7339213062', '8220134329', 'monicagua2931@gmail.com', '2001-10-21', 19, '2', '1', 'S. Ragul sanjai', 'Driver', 15000.00, 0, 15000.00, 15000.00, 'Chennai', 'Chennai', '2107140009', '3', '2', 'upload_files/candidate_tracker/66049071095_Adobe Scan 15-Jun-2021.pdf', NULL, '1', '2021-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for the role, will not sustain for a long and handling pressure doubt\n', '8', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 03:02:12', 1, '2021-07-14 03:11:11', 0, NULL, 1),
(5438, 'Sivaranjani', '5', '9789867214', '8939755305', 'Siva.Ranji15@gmail.com', '1995-08-07', 25, '3', '2', 'Mahendran', 'Chennai', 7000.00, 0, 0.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2107140010', '', '2', 'upload_files/candidate_tracker/43450185823_resume.docx', NULL, '1', '2021-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Can Give A Try For Health Sales, Bdm Shanmugam Had A Review On The Profile.Salary Exoectation is there', '5', '1', '', '1', '3', '', '2', '2021-07-19', '3', '3', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-14 03:14:17', 60, '2021-07-15 12:51:44', 0, NULL, 1),
(5439, 'sindhu', '4', '7305847265', '', 'sindhup0605@gmail.com', '2006-07-14', 0, '2', '2', 'purushothaman', 'hondai', 10000.00, 1, 0.00, 10000.00, 'manavalanagar', 'Manavalanagar', '2107140011', '1', '1', 'upload_files/candidate_tracker/50469541055_RESUME.PDF.pdf', NULL, '1', '2021-07-05', 0, '', '3', '59', '2021-07-15', 120000.00, '', '3', '2021-07-20', '2', 'Selected for Tiruvallur Location with CTC 120000 includes PF/ESI/PT', '1', '2', '1', '4', '6', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-14 05:06:38', 60, '2021-07-15 04:06:37', 0, NULL, 1),
(5440, 'navani nayak', '2', '8848419258', '', 'navaninavani306@gmail.com', '2000-03-03', 21, '2', '2', 'kannan', 'dyeing master', 250000.00, 1, 0.00, 10000.00, 'chennai', 'ernakulam', '2107140012', '1', '1', 'upload_files/candidate_tracker/28029388852_Navani\'s Resume.pdf', NULL, '1', '2021-07-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-14 05:07:11', 1, '2021-07-14 05:13:41', 0, NULL, 1),
(5441, 'durga', '4', '7708820859', '', 'Durgadhusheka@gmail.com', '2001-01-29', 20, '2', '2', 'murugan', 'cabel tv', 20000.00, 1, 0.00, 10000.00, 'tiruvallur', 'Thiruvallur', '2107140013', '1', '1', 'upload_files/candidate_tracker/40907255869_Word CT-IP-1 Resume format(M Durga ).docx', NULL, '3', '2021-07-06', 0, '', '3', '59', '2021-07-15', 120000.00, '', '3', '2022-02-04', '2', 'Selected for Tiruvallur Location with CTC 120000 includes PF/ESI/PT deductions', '1', '2', '1', '4', '6', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-14 05:19:03', 60, '2021-07-15 06:58:21', 0, NULL, 1),
(5442, 'Poovarasan', '27', '9159214390', '8838469016', 'poovarasan2336@gmail.com', '1998-06-04', 23, '2', '2', 'Srinivasan', 'Tailor', 30000.00, 1, 15000.00, 20000.00, 'No:10, Thoppu st, poondi', 'Poondi, Thiruvallur', '2107140014', '1', '2', 'upload_files/candidate_tracker/31704494316_Poovarasan.S.pdf', NULL, '3', '2021-07-20', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No relevant Exp, Will not Sustain for a long. not much focused on the requirement', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-14 07:19:57', 60, '2021-07-21 07:20:23', 0, NULL, 1),
(5443, '', '0', '9585246934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107150001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-15 10:33:02', 0, NULL, 0, NULL, 1),
(5444, 'MADHIVANAN M L', '3', '9494675238', '', 'mlmadhivanan1@gmail.com', '1999-03-23', 22, '2', '2', 'm g lokanathan', 'weaver', 10000.00, 4, 0.00, 150000.00, 'NAGARI', 'NAGARI', '2107150002', '1', '1', 'upload_files/candidate_tracker/39420328359_M-L-MADHIVANAN-Web11-pdf.pdf', NULL, '3', '2021-07-15', 0, '', '3', '60', '2021-07-22', 96000.00, '', '6', '1970-01-01', '2', 'Selected for Intern Cum Employment Offered 3.5 K Stipend for 5 months follow up with the Employment starts with the pay of 8000 - 22 Jul 2021 joining', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-07-15 10:52:13', 60, '2022-03-22 02:39:28', 0, NULL, 1),
(5445, 'Malathi.G', '4', '7200670198', '9361934484', 'malathi.ag1994@gmail.com', '1994-07-15', 27, '3', '2', 'Golanji', 'Farmer', 30000.00, 2, 17000.00, 19000.00, 'Panruti', 'T.nagar', '2107150003', '', '2', 'upload_files/candidate_tracker/78509316217_Malathi resume (2).pdf', NULL, '1', '2021-07-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-15 11:51:51', 1, '2021-07-15 12:18:22', 0, NULL, 1),
(5446, 'anbu mani', '4', '9790548341', '', 'anbuguna27@gmail.com', '1994-06-27', 27, '2', '2', 'gunasekarana', 'tailor', 12000.00, 2, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2107150004', '1', '1', 'upload_files/candidate_tracker/50253125077_anbu-2.docx', NULL, '2', '2021-07-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-15 12:17:01', 1, '2021-07-15 12:21:01', 0, NULL, 1),
(5447, 'pavithra', '4', '7708450291', '', 'pavithrakarthikeyani@gmail.com', '2001-07-03', 20, '2', '2', 'saravanan', 'shop', 13000.00, 1, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2107150005', '1', '1', 'upload_files/candidate_tracker/30078927421_file23Feb22.pdf', NULL, '2', '2022-02-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '	Whenever we reach her number. Candidate Is Not Available ,Her Mother Is Attending The Call.', '1', '2', '', '4', '5', '', '2', '2022-02-26', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-07-15 12:24:16', 58, '2022-02-23 06:06:10', 0, NULL, 1),
(5448, 'joseph amal raj', '27', '9047877968', '7010908813', 'joesph.amalraj@gmal.com', '1994-06-01', 27, '2', '1', 'anto celciya', 'technical assistant', 25000.00, 1, 10000.00, 20000.00, 'kallakurichi', 'tambaram', '2107150006', '1', '2', 'upload_files/candidate_tracker/42996450194_joseph cv.doc', NULL, '1', '2021-07-16', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' Do Not Have Much Importance Towards The Job, Sustainability Doubts', '2', '1', '0', '1', '1', '0', '2', '2021-07-19', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-15 01:00:25', 1, '2021-07-15 01:49:17', 0, NULL, 1),
(5449, 'thamaraiselvi', '27', '8056527170', '', 'thamaraikannappan@gmail.com', '1999-04-13', 22, '2', '2', 'kannappan', 'mill labour', 20000.00, 1, 8000.00, 25000.00, 'Tirupur', 'Tirupur', '2107150007', '1', '2', 'upload_files/candidate_tracker/44663591582_Resume.pdf', NULL, '1', '2021-07-19', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-15 01:15:13', 1, '2021-07-15 01:28:08', 0, NULL, 1),
(5450, '', '0', '7708235944', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107150008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-15 01:21:00', 0, NULL, 0, NULL, 1),
(5451, 'Suriya S', '13', '8072081638', '', 'sivasurya876@gmail.com', '1998-02-17', 23, '2', '2', 'J Sivakumar', 'Business', 30000.00, 1, 0.00, 15000.00, 'Trichy', 'Trichy', '2107150009', '1', '1', 'upload_files/candidate_tracker/27699643317_suriya cv.docx', NULL, '1', '2021-07-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-15 02:48:46', 1, '2021-07-15 03:02:44', 0, NULL, 1),
(5452, '', '0', '8220070216', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107150010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-15 02:51:38', 0, NULL, 0, NULL, 1),
(5453, '', '0', '6382603673', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107150011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-15 04:04:37', 0, NULL, 0, NULL, 1),
(5454, 'Rajashree R', '23', '9585246394', '', 'rajasri28@gmail.com', '1991-01-28', 30, '2', '1', 'krishnaprasad', 'recruitment executive', 40000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2107150012', '1', '2', 'upload_files/candidate_tracker/25786625512_Rajashree Resume.pdf', NULL, '1', '2021-07-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for Our UI/UX position, she is only into the design part,will not sustain for a long ,not much comfortable on the terms xxamp conditions', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-15 05:20:35', 1, '2021-07-15 05:23:17', 0, NULL, 1),
(5455, 'Venkateshan S', '3', '6374065574', '8189898298', 'msv85851@gmail.com', '1996-03-29', 25, '2', '2', 'Mala', 'Teacher', 24000.00, 1, 0.00, 30000.00, 'Hosur', 'Chennai', '2107160001', '1', '2', 'upload_files/candidate_tracker/45955502871_Venkatesh Resume-converted.pdf', NULL, '1', '2021-07-19', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Scheduled Final Interview With Some Other Company. Applied For React Native, Have Experience In React Native But The Salary Expectation Is Ver High', '2', '1', '0', '1', '1', '0', '2', '2021-08-02', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-16 11:01:26', 1, '2021-07-16 11:07:07', 0, NULL, 1),
(5456, 'Kousalya S', '14', '8248728699', '', 'Kousalyaswaminathan98@gmail.com', '1998-12-07', 22, '2', '2', 'T.swaminathan', 'Senior officer', 45000.00, 1, 0.00, 3.00, 'Vadaplani', 'Vadaplani', '2107160002', '1', '1', 'upload_files/candidate_tracker/12100435178_Kousalya Resumee.pdf', NULL, '1', '2021-07-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-07-16 11:11:51', 1, '2021-07-16 11:16:18', 0, NULL, 1),
(5457, 'Girija', '3', '8838429461', '8508428470', 'girijadev03@gmail.com', '1997-06-06', 24, '2', '2', 'Arumugam', 'Driver', 25000.00, 1, 0.00, 18000.00, 'Erode', 'Tambaram, Chennai', '2107160003', '1', '1', 'upload_files/candidate_tracker/72796589812_final resume.pdf', NULL, '3', '2021-07-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-16 11:31:45', 1, '2021-07-16 11:35:14', 0, NULL, 1),
(5458, 'A.Revathi', '29', '9840379670', '7448890980', 'daianabbm.16@gmail.com', '1982-07-01', 39, '3', '1', 'S.durairaj', 'Self employed', 40000.00, 3, 120000.00, 170000.00, 'Chennai', 'Chennai', '2107160004', '', '2', 'upload_files/candidate_tracker/56335242798_PDF Gallery_20210707_180117.pdf', NULL, '1', '2021-07-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not fit for our role, Age around 39 yrs,will not sustain for a long', '3', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-16 12:10:35', 1, '2021-07-16 12:19:12', 0, NULL, 1),
(5459, 'Balavignesh S', '2', '8610474898', '7358573031', 'vimi168135@gmail.com', '1998-07-09', 23, '2', '2', 'Sarveshwaran bR', 'Fresher', 200000.00, 2, 0.00, 180000.00, 'Chennai', 'Chennai', '2107160005', '1', '1', 'upload_files/candidate_tracker/11698080939_bala.sarveshwaran-1.pdf', NULL, '1', '2021-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic knowledge in the skills, If he comes back let us try, Need time to learn', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-07-16 12:17:52', 60, '2021-12-01 06:03:52', 0, NULL, 1),
(5460, 'Deepika', '2', '7397277747', '9677258980', 'deepikasri248@gmail.com', '1997-09-07', 23, '2', '2', 'Padmanaban', 'Shop keeper', 20000.00, 3, 0.00, 13000.00, 'Chennai', 'Chennai', '2107160006', '1', '1', 'upload_files/candidate_tracker/62326764469_Deepika Profile.docx', NULL, '1', '2021-07-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge,not comfortable on the terms and conditions, will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-16 01:11:54', 1, '2021-07-16 01:19:34', 0, NULL, 1),
(5461, '', '0', '7358034205', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107160007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-16 01:20:43', 0, NULL, 0, NULL, 1),
(5462, 'Vignesh', '2', '8122185814', '7358451500', 'vigneshkannadasan77@gmail.com', '1995-07-07', 26, '2', '2', 'Kannadasan', 'Business', 3.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2107160008', '1', '1', 'upload_files/candidate_tracker/63087723322_vignesh web developer resume-2021.pdf', NULL, '1', '2021-07-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-16 01:44:04', 1, '2021-07-16 01:47:19', 0, NULL, 1),
(5463, 'Balaji', '2', '9003642216', '', 'Balajinachi1213@gamil.com', '2000-03-23', 21, '2', '2', 'Nachiappan', 'Hospital ward boy', 200000.00, 0, 0.00, 10000.00, '555,keelyapatti, siravayal ,sivaganga 630207', '103,kannigapuram 3rd , k.k nager ,Chennai 600078', '2107160009', '1', '1', 'upload_files/candidate_tracker/58566263504_Resume - BALAJIK.pdf', NULL, '1', '2021-07-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-16 02:02:18', 50, '2021-07-17 08:39:28', 0, NULL, 1),
(5464, '', '0', '9790896470', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107160010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-16 02:12:07', 0, NULL, 0, NULL, 1),
(5465, '', '0', '8838905013', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107160011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-16 02:35:33', 0, NULL, 0, NULL, 1),
(5466, 'James J', '23', '9080130683', '8270397087', 'jamespatric317@gmail.com', '2000-07-15', 21, '2', '2', 'JOSEPH M', 'Manager(private sector)', 20000.00, 1, 182400.00, 240000.00, 'Sattur', 'Sattur', '2107160012', '1', '2', 'upload_files/candidate_tracker/77861841146_J.Jamespatric-.pdf', NULL, '2', '2021-07-17', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much ok with SA, Currently working as Technical Associate. Previous 7 months Exp in React JS. Min Salary Expectation is 16K ', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-16 02:50:22', 1, '2021-07-16 03:00:40', 0, NULL, 1),
(5467, '', '0', '8939558217', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107160013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-16 03:05:27', 0, NULL, 0, NULL, 1),
(5468, 'Vinothraj Govindarasu', '2', '8523916646', '', 'vinog137@gmail.com', '1995-06-14', 26, '2', '2', 'Govindarasu', 'Former', 15000.00, 2, 0.00, 25000.00, 'Eravangudi', 'Tambaram', '2107160014', '1', '1', 'upload_files/candidate_tracker/20804904917_Vinothraj Govindarasu (1).pdf', NULL, '3', '2021-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-16 06:41:59', 1, '2021-07-16 06:46:41', 0, NULL, 1),
(5469, '', '0', '8220208434', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107170001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-17 10:01:01', 0, NULL, 0, NULL, 1),
(5470, 'Saravanan', '2', '9344921063', '', 'saravanan99bsc@gmail.com', '1999-12-30', 21, '3', '2', 'Perumal', 'Farmer', 20000.00, 4, 0.00, 6000.00, 'Kombankulam', 'Kombankulam', '2107170002', '', '1', 'upload_files/candidate_tracker/34133516047_Sr resume.pdf', NULL, '1', '2021-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, no basic knowledge in React,Seems not much comfortable with the service Agreement ,also not ready to submit the documents', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 10:31:38', 50, '2021-07-17 10:39:07', 0, NULL, 1),
(5471, 'Mohamed suhail', '11', '8870267987', '9952469959', 'suhailsuhail1248@gmail.com', '1997-04-04', 24, '1', '2', 'Mohamed Ismail', 'Freshers', 10.00, 2, 0.00, 15.00, 'KANDIYUR', 'KANDIYUR', '2107170003', '', '1', 'upload_files/candidate_tracker/47375716801_New update suhail Resume1 (2)-converted.pdf', NULL, '1', '2021-07-17', 0, 'NA', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication, will not handle the pressure. Sustainability Doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 10:43:29', 1, '2021-07-17 10:51:16', 0, NULL, 1),
(5472, 'EBENEZER S', '11', '9551669139', '9940542851', 'ebenezeredwin02@gmail.com', '1999-08-10', 21, '1', '2', 'SUNDARAMOORTHY P', 'Clerk', 20000.00, 1, 0.00, 250000.00, 'Sozhinganallur', 'Kodambakkam', '2107170004', '', '1', 'upload_files/candidate_tracker/16636542818_Ebenezer S- Resume.pdf', NULL, '1', '2021-07-17', 0, 'Not available', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, no basic knowledge in the recruitment .No focus on the particular position', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 10:51:10', 1, '2021-07-17 11:02:21', 0, NULL, 1),
(5473, 'Bhoobalan', '2', '9840730996', '', 'Bhoopostbox@gmail.com', '1996-03-07', 25, '3', '2', 'Arumugam', 'No work', 15000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2107170005', '', '1', 'upload_files/candidate_tracker/29042081615_Bhoobalan resume.pdf', NULL, '3', '2021-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Ongoing Course Related To React Js, Need Time To Confirm On The Sa, Career Gap If Candidate Comes Back Lets Decide On The Profile', '2', '2', '0', '1', '1', '0', '2', '2021-07-26', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 10:58:53', 1, '2021-07-17 11:17:41', 0, NULL, 1),
(5474, 'Karthic A', '2', '9629777514', '', 'Karthicashok007@gmail.com', '1998-09-20', 22, '3', '2', 'J Ashok', 'Business', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2107170006', '', '1', 'upload_files/candidate_tracker/72222075913_file1.pdf', NULL, '1', '2021-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not handle the pressure, only basic knowledge in HTML,CSS,JS. Sustainability doubt on this profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 12:56:41', 1, '2021-07-17 01:00:13', 0, NULL, 1),
(5475, 'Poomani', '2', '9659843796', '8667367053', 'aipoomani@gmail.com', '1996-06-03', 25, '2', '2', 'Ravi', 'Coolie', 15000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Vellore', '2107170007', '1', '1', 'upload_files/candidate_tracker/1278726969_Poomani-Resume.pdf', NULL, '1', '2021-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much comfortable with the service Agreement, Attitude issue', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-17 01:11:08', 1, '2021-07-17 01:19:12', 0, NULL, 1),
(5476, 'Sneha.M', '20', '9790902754', '', 'Snehasneha14591@gmail.com', '2001-07-09', 20, '3', '2', 'Murugan.M ,prema.M', 'Kilnallathur', 15000.00, 1, 0.00, 10000.00, 'Kilnallathur', 'Kilnallathur', '2107170008', '', '1', 'upload_files/candidate_tracker/60132078144_sneha resume.pdf', NULL, '1', '2021-07-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 01:44:50', 1, '2021-07-19 06:20:56', 0, NULL, 1),
(5477, 'Mohamed yasin', '11', '7824015190', '9962156556', 'Yaass.iinnjohn@gmail.com', '1999-07-07', 22, '2', '2', 'Banu', 'House wife', 15000.00, 2, 0.00, 18000.00, 'No.31 cb read railway colony Korukkupet ch-21', 'No.31 cb road Railway colony Korukkupet ch- 21', '2107170009', '3', '1', 'upload_files/candidate_tracker/24209839839_mohamed yasin.docx', NULL, '1', '2021-07-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Stability,every 6 months changed the job. Seems not much clear on the previous experiences', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 02:26:22', 1, '2021-07-17 02:35:55', 0, NULL, 1),
(5478, 'Praveen Kumar', '2', '9385694439', '', 'Pk1798.kumar@gmail.com', '1998-09-17', 22, '2', '2', 'selvam m', 'web developer', 30000.00, 1, 15000.00, 20000.00, 'Trichy', 'chennai', '2107170010', '1', '2', 'upload_files/candidate_tracker/91161038956_PRAVEEN KUMAR S.pdf', NULL, '1', '2021-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Profile is ok, but salary expectation is very high and he will not  sustain for long', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-17 03:11:44', 1, '2021-07-17 03:19:27', 0, NULL, 1),
(5479, '', '0', '9840664284', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107170011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-17 03:45:26', 0, NULL, 0, NULL, 1),
(5480, 'V sharmila', '4', '7540007813', '7904418610', 'sharmisweet89111@gmail.com', '2000-11-09', 20, '3', '1', 'Suresh', 'Supervisor', 240000.00, 1, 0.00, 12000.00, 'No 4 shanmugapadamavathy Nagar thiruvallur 602002', 'No 4 Shanmugapadamavathy Nagar Thiruvallur 602002', '2107170012', '', '1', 'upload_files/candidate_tracker/95703567361_Sharmila RESUME.docx', NULL, '1', '2021-07-17', 0, '', '3', '59', '2021-07-19', 132000.00, '', '0', NULL, '2', 'Selected for Dhanalakshmi Team with CTC - 132000 - Cash mode', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 04:28:31', 1, '2021-07-17 04:44:08', 0, NULL, 1),
(5481, 'Vigneshwaran K', '2', '8056292295', '8056250070', 'Wvignesh0698@gmail.com', '1998-02-06', 23, '2', '2', 'Amirthabalavalli. K', 'Housewife', 12000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2107170013', '1', '1', 'upload_files/candidate_tracker/62908520220_Resume_Vigneshwarankumaravel.pdf', NULL, '1', '2021-07-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-17 04:33:09', 1, '2021-07-17 04:40:23', 0, NULL, 1),
(5482, 'william rajkumar julic', '2', '9840419901', '', 'wiilijulic@gmail.com', '1998-12-05', 22, '2', '2', 'christopher', 'office employee', 25000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2107170014', '1', '1', 'upload_files/candidate_tracker/73841927544_William_Rajkumar_Julic br _Full_Stack_Developer.pdf', NULL, '1', '2021-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Candidate can join on the next day, scheduled for 2nd level but the candidate left without attending the interview', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-17 05:22:25', 1, '2021-07-17 05:28:57', 0, NULL, 1),
(5483, 'Mouniga', '2', '6383968138', '9514303515', 'mounibe2308@gmail.com', '1998-08-23', 22, '2', '2', 'Nagarajan', 'Driver', 8000.00, 2, 0.00, 10000.00, 'Erode', 'Chennai', '2107170015', '1', '1', 'upload_files/candidate_tracker/25926787354_1611983280778Resume_Mouniga.docx', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfortable on the TxxampC, need to check with parents.No basic knowledge in React HTML CSS Javascripti, she is currently working in Telesales but looking for IT', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-17 06:05:58', 1, '2021-07-17 06:09:24', 0, NULL, 1),
(5484, '', '0', '8765432156', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107180001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-18 07:14:03', 0, NULL, 0, NULL, 1),
(5485, '', '0', '9756456743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107190001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-19 12:36:23', 0, NULL, 0, NULL, 1),
(5486, '', '0', '9578973638', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107190002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-19 11:06:08', 0, NULL, 0, NULL, 1),
(5487, 'CHANDRU.M', '4', '9025298401', '', 'manikandan23112011@gmail.com', '2000-11-23', 20, '1', '2', 'Manikandan', 'Kuli', 20000.00, 2, 0.00, 13000.00, 'No.17 vinayagapuram main Street thondaiyarpet', 'No.17 Vinayagapuram Main Street Thondaiyarpet', '2107190003', '', '1', 'upload_files/candidate_tracker/55032992682_chandru.pdf', NULL, '1', '2021-07-19', 0, 'P1065 syed', '5', '57', NULL, 0.00, '', '0', NULL, '2', 'candidate is not for my team thank you \n', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-19 11:11:37', 1, '2021-07-19 11:25:39', 0, NULL, 1),
(5488, 'Tamil Selvan', '27', '9941641681', '', 'selvan4446@gmail.com', '1994-09-09', 26, '2', '2', 'S RAJAMMAL', 'MTS', 25000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2107190004', '1', '1', 'upload_files/candidate_tracker/58095281862_TAMILSELVAN_RESUME.pdf', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'CLient round Rejected', '2', '2', '0', '1', '1', '0', '2', '2021-07-30', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-19 11:23:11', 1, '2021-07-19 11:26:50', 0, NULL, 1),
(5489, 'Ezhilraj', '20', '7401684220', '', 'Er145469@gmail.com', '2000-10-13', 20, '1', '2', 'G Elumalai', 'Driver', 20000.00, 2, 0.00, 12000.00, 'No 10 Bendileman Garden', 'No 10 Bendileman Garden First Street Royapuram', '2107190005', '', '1', 'upload_files/candidate_tracker/38789476472_ezhilraj resume.pdf', NULL, '1', '2021-07-19', 0, 'P1065', '5', '57', NULL, 0.00, '', '0', NULL, '2', 'not yet seen the candidate .. kindly check and update ', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-19 11:32:33', 1, '2021-07-19 11:39:32', 0, NULL, 1),
(5490, 'Sivaranjani R', '2', '7338764193', '9840542151', 'sr1688740@gmail.com', '2000-10-09', 20, '2', '2', 'Ramasubbu A', 'Security ASO', 14000.00, 1, 0.00, 20000.00, 'No.25,2nd East karaikalan st, Adambakkam, Ch-88.', 'No13,1st Mannadi Amman Kovil St, Adambakkam,ch-88.', '2107190006', '1', '1', 'upload_files/candidate_tracker/62243798891_CV.pdf', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic  knowledge in  HTML React, she was much comfortable with Python. Will not Comfortable for our role. Sustainability Doubt', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-19 12:16:25', 1, '2021-07-19 12:27:23', 0, NULL, 1),
(5491, 'Yogaraj', '4', '9600263637', '', 'prajithraj2013@gmail.com', '1998-06-11', 23, '4', '2', 'Gopinath', 'Document writer', 20000.00, 2, 12000.00, 12000.00, 'TIRUVALLUR', 'TIRUVALLUR', '2107190007', '', '2', 'upload_files/candidate_tracker/1356224761_19 java bro.docx', NULL, '1', '2021-07-20', 7, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'not suit fr TC', '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-19 01:51:11', 1, '2021-07-19 01:54:25', 0, NULL, 1),
(5492, 'Zeenath Fathima', '2', '8838384411', '', 'zeenathasifa@gmail.com', '1999-08-20', 21, '4', '2', 'Mohd farooque', '-', 10000.00, 1, 0.00, 15000.00, 'No:1/1 Naval hospital road 8th Street periamet', 'No:1/1 Naval hospital road 8th Street periamet', '2107190008', '', '1', 'upload_files/candidate_tracker/1222779440_Zeenath_Fathima_resume (1).pdf', NULL, '3', '2021-07-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-19 02:37:47', 50, '2021-07-19 03:31:41', 0, NULL, 1),
(5493, 'Satahiya raj', '17', '9841779010', '', 'sathiya811@yahoo.com', '1986-06-25', 35, '3', '1', 'Ramaya', 'House wife', 10000.00, 2, 20000.00, 18000.00, 'Villupuram', 'T Nager', '2107190009', '', '2', 'upload_files/candidate_tracker/40753019855_Sathiya Raj K (2).docx', NULL, '1', '2021-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No relevant Profile,Direct Walk in. Will not suits for our role', '4', '2', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-19 03:24:02', 1, '2021-07-19 03:46:15', 0, NULL, 1),
(5494, '', '0', '9600514552', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107190010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-19 04:13:25', 0, NULL, 0, NULL, 1),
(5495, 'Kumaran', '27', '7845608477', '6381914305', 'tvmalaikumaran15@gmail.com', '1993-07-05', 28, '2', '2', 'K.sampath', 'Farmer', 5000.00, 2, 0.00, 12000.00, 'Tiruvannamalai', 'Velachery', '2107190011', '1', '1', 'upload_files/candidate_tracker/9822728958_new chni pg resume.docx', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Duplicate profile Submitted twice', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-19 04:18:45', 1, '2021-07-19 04:26:58', 0, NULL, 1),
(5496, '', '0', '9629486560', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107190012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-19 04:20:40', 0, NULL, 0, NULL, 1),
(5497, 'R.Gokula priya', '27', '9384102800', '9865491297', 'gokulapriya889@gmail.com', '1998-02-09', 23, '2', '2', 'M.Renganathan', 'LIC agent', 150000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2107190013', '1', '1', 'upload_files/candidate_tracker/8165183659_GokulaResume-converted.pdf', NULL, '1', '2021-08-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No relevant Exp in Dotnet Winform,will not suits for the cleint requirement\n', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-19 05:23:03', 50, '2021-08-04 11:24:19', 0, NULL, 1),
(5498, '', '0', '7826971402', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107190014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-19 06:09:11', 0, NULL, 0, NULL, 1),
(5499, '', '0', '8754791804', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107200001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-20 07:18:19', 0, NULL, 0, NULL, 1),
(5500, 'Dineshkumar Arumugam', '11', '9600934811', '', 'dinesh.kumar.20125@gmail.com', '1997-10-04', 23, '3', '2', 'Arumugam', 'Driver', 35000.00, 1, 0.00, 12500.00, 'Coimbatore', 'Coimbatore', '2107200002', '', '1', 'upload_files/candidate_tracker/13529252326_Dinesh Resume 3.pdf', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Fresher for the recruiter role. Left without attending  the 2nd round of discussion', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-20 11:32:47', 1, '2021-07-20 11:38:12', 0, NULL, 1),
(5501, 'Sakthivel', '11', '8428203992', '', 'sakthivelkrishnavel21@gmail.com', '1997-08-21', 23, '3', '2', 'KRISHNAVEL', 'Motor fitter', 40000.00, 1, 0.00, 12000.00, 'Coimbatore', 'Chennai', '2107200003', '', '1', 'upload_files/candidate_tracker/23424111733_CV.pdf', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication OK, Fresher For The Recruiter Role. Left Without Attending  The 2nd Round Of Discussion. Sustainability doubt and not much comfortable with the Service Agreement', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-20 11:33:40', 1, '2021-07-20 11:38:16', 0, NULL, 1),
(5502, 'Vignesh', '11', '8438398503', '7010882098', 'Svignesh13051995@gmail.com', '1995-05-13', 26, '2', '2', 'Mother - nagalakshmi', 'House wife', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2107200004', '1', '1', 'upload_files/candidate_tracker/23911217990_1613746813548Resume_Vignesh.pdf', NULL, '1', '2021-07-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1008', '0', NULL, NULL, NULL, 1, '2021-07-20 12:22:04', 1, '2021-07-20 12:31:22', 0, NULL, 1),
(5503, 'Prathiba', '2', '6380385603', '8122595934', 'prathiba.g14@gmail.com', '1997-08-14', 23, '2', '2', 'Govindasamy', 'Security', 17000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2107200005', '1', '1', 'upload_files/candidate_tracker/25439216169_PrathiUpdated.pdf', NULL, '1', '2021-07-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-20 12:33:59', 1, '2021-07-20 12:38:28', 0, NULL, 1),
(5504, 'Ezhil maran E', '3', '8939461277', '9361409053', 'evignesh420@gmail.com', '1999-05-04', 22, '2', '2', 'ELANGO', 'Business', 30000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2107200006', '1', '1', 'upload_files/candidate_tracker/35882089152_Ezhil.pdf', NULL, '1', '2021-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Freelancer,have a plan to continue his freelance options,Salary Exp is very Hgih,open only for 1 year SA.Will not suits for our role', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-07-20 12:41:49', 60, '2021-10-19 11:41:14', 0, NULL, 1),
(5505, 'Kesava kumar', '2', '9791730473', '', 'kesava9585@gmail.com', '1997-02-20', 24, '2', '2', 'Naganathan', 'Daily wages', 12000.00, 1, 0.00, 12000.00, 'paramakudi', 'Chennai', '2107200007', '1', '1', 'upload_files/candidate_tracker/44995595799_KESAVAKUMAR_BE ONE YEAR EXPERIENCE.pdf', NULL, '1', '2021-07-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-20 12:52:12', 1, '2021-07-20 12:56:45', 0, NULL, 1),
(5506, 'K. Sasi kumar', '22', '9750023693', '', 'sashyan96@gmail.com', '1995-12-09', 25, '3', '2', 'F. Lingananthan', 'Supervisor', 20000.00, 1, 20000.00, 27000.00, 'Chennai', 'Chennai', '2107200008', '', '2', 'upload_files/candidate_tracker/79801698852_Sasi kumar Resume.pdf', NULL, '1', '2021-07-20', 60, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'High expectation of salary', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-20 02:33:14', 1, '2021-07-20 02:43:48', 0, NULL, 1),
(5507, 'Robin', '27', '8012344980', '9781795240', 'robinmech1218@gmail.com', '1999-06-09', 22, '2', '2', 'Sekar', 'Farmer', 15000.00, 1, 13000.00, 16000.00, 'Chennai', 'Tenkasi', '2107200009', '1', '2', 'upload_files/candidate_tracker/52313176406_Robin_Resume.docx', NULL, '1', '2021-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-20 04:51:30', 1, '2021-07-20 05:04:52', 0, NULL, 1),
(5508, 'SATHIYAMURTHY K', '27', '7200159759', '7010880066', 'Sathyamurthy176@gmail.com', '1994-11-16', 26, '2', '2', 'KIRUBAKARAN', 'LATE', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2107200010', '1', '1', 'upload_files/candidate_tracker/71359535486_sathyak88.pdf', NULL, '1', '2021-07-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-20 05:13:02', 1, '2021-07-20 05:16:41', 0, NULL, 1),
(5509, 'Bharani Dharan R', '27', '9600006143', '', 'dbharani860@gmail.com', '1998-08-04', 22, '2', '2', 'ravichandran m', 'police', 30000.00, 2, 196000.00, 260000.00, 'chennai', 'chennai', '2107210001', '1', '2', 'upload_files/candidate_tracker/10495257786_Bharani_resume_1.pdf', NULL, '1', '2021-07-27', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Client Interview Rejected', '2', '1', '', '1', '3', '', '2', '2021-07-30', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-21 09:32:23', 60, '2021-07-27 01:42:10', 0, NULL, 1),
(5510, 'R.saravanapandi', '27', '9003917189', '', 'saravanaganesh10@gmail.com', '1995-04-14', 26, '2', '2', 'Rathinapandi,Tamilselvi', 'Weaving', 45000.00, 2, 25000.00, 40000.00, 'T.kallupatti,madurai', 'Tiruppur', '2107210002', '1', '2', 'upload_files/candidate_tracker/17848924731_Saravanapandi Resume.pdf', NULL, '1', '2021-07-28', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-21 09:45:49', 1, '2021-07-21 10:02:40', 0, NULL, 1),
(5511, 'Nithyaprakash', '3', '6383009760', '9894828157', 'nithyaprakashs.98@gmail.com', '1998-05-20', 23, '2', '2', 'shanmugasundaram', 'software engineer', 20000.00, 0, 150000.00, 400000.00, 'erode', 'erode', '2107210003', '1', '2', 'upload_files/candidate_tracker/64155961292_Nithyaprakash.pdf', NULL, '1', '2021-07-30', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will Come For System Task, Having 1 Yr Of Experience In React Native - Mobile/Web Applications - Task has been given and not up to the mark as we expected. We need to train him a lot. Candidate notice is 30 Days', '2', '1', '0', '1', '1', '0', '2', '2021-07-31', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-21 10:14:24', 1, '2021-07-21 10:29:47', 0, NULL, 1),
(5512, 'manoj', '4', '9092914395', '', 'manojmaji2000@gmail.com', '2000-05-05', 21, '2', '2', 'venkat', 'business', 40000.00, 1, 0.00, 10000.00, 'tiruvallur', 'tiruvallur', '2107210004', '1', '1', 'upload_files/candidate_tracker/94694531347_V.Manoji resume.pdf', NULL, '2', '2021-07-20', 0, '', '3', '59', '2021-08-02', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Tiruvallur Location with CTC 120000 in cash mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-21 10:57:50', 60, '2021-08-10 06:45:21', 0, NULL, 1),
(5513, 'Hariharan A', '11', '7708038743', '7598249274', 'journalist.hariharan@gmail.com', '1995-11-14', 25, '2', '2', 'Parameswari A', 'NA', 1000.00, 1, 16000.00, 16000.00, '20/7A, Papanasam, Thanjavur-614205', 'Moggapair', '2107210005', '1', '2', 'upload_files/candidate_tracker/91208293090_Hariharan CV_21 (1).pdf', NULL, '1', '2021-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate holding an offer and not much comfortable with the service Agreement. Communication is good ', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-21 11:18:55', 1, '2021-07-21 11:26:01', 0, NULL, 1),
(5514, 'gokul', '4', '9626177462', '', 'gokul270520@gmail.com', '2000-05-18', 21, '2', '2', 'selvam', 'tailor', 8000.00, 3, 0.00, 1000.00, 'kadambathur', 'thiruvallur', '2107210006', '1', '1', 'upload_files/candidate_tracker/69247061568_RESUME (3).docx', NULL, '1', '2021-07-20', 0, '', '3', '59', '2021-07-22', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Tiruvallur Location with CTC 120000 in cash mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-21 11:39:44', 60, '2021-08-10 06:46:39', 0, NULL, 1),
(5515, 'Mohanraj G', '17', '9902651448', '8608718868', 'mohang2020@gmail.com', '1994-05-19', 27, '1', '2', 'Ganesh', 'Agricultural', 10000.00, 0, 400000.00, 500000.00, 'Tirupur', 'Bangalore', '2107210007', '', '2', 'upload_files/candidate_tracker/64134821715_Mohanraj_G updated Resume.pdf', NULL, '1', '2021-07-21', 5, '55599', '3', '60', '2021-07-22', 450000.00, '', '5', '1970-01-01', '1', 'Selected as Sourcing BDM - 4.5 LPA includes PF/PT.3 months Target will be given  and based on the target achieved, will be promoted and the salary will be revised - Commitment will be shared over the mail by Sathish Kumar - Bangalore', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-21 12:48:25', 60, '2021-07-21 05:32:43', 0, NULL, 1),
(5516, 'Ramya. B', '4', '7867979648', '9865029056', 'ramya1996b@gmail.com', '1996-06-10', 25, '1', '2', 'Balakrishnan', 'Farmer', 158000.00, 2, 14000.00, 16000.00, 'Mayiladuthurai', 'Chennai', '2107210008', '', '2', 'upload_files/candidate_tracker/42555545160_1622111076711Resume_Ramya.docx', NULL, '1', '2021-07-21', 0, '55558', '3', '59', '2021-08-02', 146496.00, '', '6', '2022-10-29', '2', 'Selected for Raj Kumar CRM Role,with CTC 146496 inlcudes PT only 208 deduction in client advisory Prop Staff', '1', '1', '2', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-07-21 01:23:54', 60, '2022-06-10 09:48:39', 0, NULL, 1),
(5517, 'venkatesan', '2', '7550247446', '7338818953', 'venkateesan08@gmail.com', '1998-05-17', 23, '2', '2', 'Ganesan', 'student', 30000.00, 2, 15000.00, 18000.00, 'anna nagar chennai', 'anna nagar chennai', '2107210009', '1', '2', 'upload_files/candidate_tracker/60496366115_resume_1623941948297.pdf', NULL, '1', '2021-07-22', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Basic knowledge, not even clear o n the skill. Will not suitable for our role', '2', '1', '', '4', '5', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-21 01:47:01', 50, '2021-07-22 02:34:14', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5518, 'E.Gopala Krishnan', '2', '7358583390', '9940061683', 'gopalakrishnan101999@gmail.com', '1999-10-03', 21, '2', '2', 'Elumalai', 'Self employment', 100000.00, 0, 0.00, 15000.00, '10/312,sathya nagar 7 th Street kovilambakkam', 'Kovilambakkam', '2107210010', '1', '1', 'upload_files/candidate_tracker/25503321480_Resume-1.docx', NULL, '1', '2021-07-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Yet to complete his graduation, Focusing into Java positions.1 more year to go', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-21 02:51:33', 50, '2021-07-22 02:33:46', 0, NULL, 1),
(5519, 'Shreenivas Sekar', '2', '8122746066', '7299970088', 'srinibrok06@gmail.com', '1999-09-27', 21, '2', '2', 'Sekar', 'Sales and service', 8000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2107210011', '1', '1', 'upload_files/candidate_tracker/43774180009_Shreenivas Resume-1.pdf', NULL, '1', '2021-07-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is doing part time trainer in shuttle,No basics of Javascript,will not suits for our role and sustainability doubts', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-21 04:56:15', 50, '2021-07-22 02:32:30', 0, NULL, 1),
(5520, 'Karan.M', '2', '9361138715', '9677767823', 'mkaran71999@gmail.com', '1999-05-07', 22, '2', '2', 'Murugan.V', 'Tally clerk', 40000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2107210012', '1', '1', 'upload_files/candidate_tracker/59690964033_karan resume(1).docx', NULL, '1', '2021-07-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Focusing Positions into Java/Python. Not suits for our role.Will not sustain for a long', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-21 04:56:39', 50, '2021-07-22 02:32:47', 0, NULL, 1),
(5521, '', '0', '9841608904', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107210013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-21 05:04:32', 0, NULL, 0, NULL, 1),
(5522, 'kishore kumar', '2', '7904196842', '', 'krcloud22@gmail.com', '1998-01-10', 23, '2', '2', 'Vedhachalam', 'Construction', 25.00, 0, 0.00, 300000.00, 'chengalpattu', 'chengalpattu', '2107220001', '1', '2', 'upload_files/candidate_tracker/35105737028_kishore.resume.pdf', NULL, '1', '2021-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 10:58:09', 1, '2021-07-22 06:43:02', 0, NULL, 1),
(5523, 'Rahiman', '2', '6380387178', '9943864695', 'srahiman1999@gmail.com', '1999-05-27', 22, '2', '2', 'Shajahan', 'Former', 20000.00, 3, 0.00, 480000.00, 'Thiruvannamalai', 'Thiruvannamalai', '2107220002', '1', '1', 'upload_files/candidate_tracker/30129953538_CV_rahiman.pdf', NULL, '1', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not strong in Basics, Exams yet to complete. Mostly focus only for the Intern. Will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 11:00:49', 1, '2021-07-22 11:10:52', 0, NULL, 1),
(5524, '', '0', '9087106845', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107220003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-22 11:20:26', 0, NULL, 0, NULL, 1),
(5525, 'Christophen A', '27', '7305771030', '', 'christophen.alphonse202eng@gmail.com', '1996-12-25', 24, '2', '2', 'Alphonse A', 'Security', 12000.00, 1, 0.00, 10000.00, 'Thiruvannamalai', 'Chennai', '2107220004', '1', '1', 'upload_files/candidate_tracker/86355235922_Christophen_Resume_.doc', NULL, '1', '2021-07-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-22 11:34:12', 1, '2021-07-22 11:42:31', 0, NULL, 1),
(5526, 'Christy A', '20', '6380797539', '8667653877', 'christymary995@gmail.com', '1995-03-29', 26, '2', '2', 'Aanthonisamy', 'Farmer', 10000.00, 3, 10000.00, 12000.00, '2/212,North Street, Kallakurichi DT-605702', 'Manavalan nagar, Thiruvallur 602002', '2107220005', '3', '2', 'upload_files/candidate_tracker/78921526729_Christy.pdf', NULL, '1', '2021-07-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Rejected, Not suitable for Telesales Sales.Not much open up', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-22 11:39:41', 1, '2021-07-22 11:52:45', 0, NULL, 1),
(5527, 'Nelson Micheal Bharathi S', '11', '8940694309', '8124194185', 'nelsonmike49@gmail.com', '1996-11-22', 24, '3', '2', 'Sahayaraj m', 'Rtd employees', 5000.00, 1, 15000.00, 20000.00, 'Hosur', 'Chennai', '2107220006', '', '2', 'upload_files/candidate_tracker/17737965968_Nelson Resume.pdf', NULL, '1', '2021-07-22', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much open with our terms and conditions, no sustainability in his profile.  Will not handle the pressure', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-22 11:52:11', 1, '2021-07-22 11:56:47', 0, NULL, 1),
(5528, 'PAVITHRA S', '4', '9952363862', '', 'pavik1056@gamil.com', '1999-03-06', 22, '1', '2', 'Subramani S', 'II Msc cs', 10000.00, 1, 0.00, 15000.00, '4/89 Devendrakual Street', 'Ladies HostEl in Ekkaduthangal', '2107220007', '', '1', 'upload_files/candidate_tracker/95173230422_pavi resume 1.docx', NULL, '3', '2021-07-22', 0, '2107220007', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Internal REference ,not much open up. not suits for our role', '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-22 12:06:07', 1, '2021-07-22 12:22:21', 0, NULL, 1),
(5529, 'Nisha.N', '4', '9597874323', '', 'nishanallusmay29@gmail.com', '1999-06-04', 22, '1', '2', 'Nallusamy p', 'Cooli', 8000.00, 2, 0.00, 12.00, '5/133 MuthaliVattam Esanai (Po) Perambalur)TN46', 'Luxura Ladies Hostel Ekkaduthangal', '2107220008', '', '1', 'upload_files/candidate_tracker/7706047839_1626885294584_nisha resume 1.docx', NULL, '1', '2021-07-22', 0, '2107220008', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our sales, will not sustain and handle our pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-22 12:06:17', 1, '2021-07-22 12:18:02', 0, NULL, 1),
(5530, 'Silambarasan C', '27', '8939850101', '8939202515', 'silambarasanbro@gmail.com', '1998-03-08', 23, '2', '2', 'Chidhambaram V', 'Self Employee', 120000.00, 2, 0.00, 15000.00, 'Perambalur', 'No.12/7 S.T.N Nayanar Street, Kondithope,Chennai', '2107220009', '1', '1', 'upload_files/candidate_tracker/91975688121_Silambarasan Resume.pdf', NULL, '1', '2021-07-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '5050 For .Net, Having Knowledge In ASP. Net MVC Only And Also In C#. Keen To Learn In Window Form, Can Give A Try For Client - Rejected in the client round of Interview', '2', '1', '0', '1', '1', '0', '2', '2021-07-26', '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-07-22 12:35:49', 1, '2021-07-22 12:39:57', 0, NULL, 1),
(5531, 'radhika', '27', '9940444174', '9940506035', 'radhikaavasan@gmail.com', '1985-07-24', 35, '2', '1', 'srinivasan', 'senior dotnet developer', 75000.00, 2, 200000.00, 300000.00, 'chennai', 'chennai', '2107220010', '1', '2', 'upload_files/candidate_tracker/46701706118_Resume.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No relevant Exp in Winforms, having knowledge in ASP.Net only. age around 35 yrs. More of Career Gap', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 02:05:18', 1, '2021-07-22 08:37:21', 0, NULL, 1),
(5532, 'Abirami V', '2', '8680060571', '9080477762', 'abirami101210@gmail.com', '1998-12-10', 22, '3', '2', 'Velumani S', 'Security Officer', 7000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2107220011', '', '1', 'upload_files/candidate_tracker/831217174_ABIRAMI.pdf', NULL, '2', '2021-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-22 02:09:20', 1, '2021-07-22 02:14:22', 0, NULL, 1),
(5533, 'MANIGANDAN P', '4', '8179931496', '7339678340', 'manigandanrvsbe@gmail.com', '1998-06-17', 23, '3', '2', 'PANNERSELVAM K', 'Coolie', 6000.00, 0, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2107220012', '', '1', 'upload_files/candidate_tracker/7412104317_RESUME.pdf', NULL, '1', '2021-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-22 02:10:19', 1, '2021-07-22 02:22:03', 0, NULL, 1),
(5534, 'Mumtaj.R', '4', '9159793134', '', 'Mumtajrafimumtaj@gmail', '1999-04-21', 22, '2', '2', 'Mohammed Rafi', 'business', 30000.00, 1, 12000.00, 15000.00, 'Chennai', 'chennai', '2107220013', '1', '2', 'upload_files/candidate_tracker/19142091388_MUMTAJ R.docx', NULL, '1', '2021-07-22', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No relevant Exp, Communication ok, but seems not much matured.Saalry expectation is high, Check for Esales 5050 ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '6', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-22 03:03:51', 60, '2021-07-27 03:24:30', 0, NULL, 1),
(5535, 'lakshaya', '2', '9789831091', '', 'lakshaya1998@gmail.com', '1998-05-24', 23, '2', '2', 'periyasamy', 'driver', 15000.00, 0, 0.00, 15000.00, 'No.1132, Madhurapuri New Street,Thuraiyur, Trichy.', 'No.20, Kamatchi Avenue, Mangadu, Chennai.', '2107220014', '1', '1', 'upload_files/candidate_tracker/4575786505_Lakshaya Resume.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Focussing only for Internship, if she joins also will not sustain more than 2 yrs. Too long distance.Not open comfortable with txxampC', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 03:44:31', 1, '2021-07-25 11:34:26', 0, NULL, 1),
(5536, '', '0', '7904834676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107220015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-22 04:56:22', 0, NULL, 0, NULL, 1),
(5537, 'MADHUSUDANAN SRINIVASAN', '27', '7845850281', '', 'rahullsrinivasan@gmail.com', '1999-11-08', 21, '2', '2', 'ALAMELU SRINIVASAN', 'Home maker', 32000.00, 1, 0.00, 350000.00, 'No.194, 38th Street, sankar nagar, pammal, chennai', 'No.194, 38th Street, Sankar Nagar, Pammal, Chennai', '2107220016', '1', '1', 'upload_files/candidate_tracker/62835878488_MadhusudananS_Resume.pdf', NULL, '1', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Can Give A Try For .NET, Focusing Much Into Gaming But Have Knowledge In .Net With C#.5050 Profile Can Give A Try - Rejected in the client round', '2', '2', '0', '1', '1', '0', '2', '2021-07-26', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 05:08:44', 1, '2021-07-22 09:43:01', 0, NULL, 1),
(5538, '', '0', '9788309824', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107220017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-22 07:56:21', 0, NULL, 0, NULL, 1),
(5539, 'Vijaya Rani', '27', '8220645252', '', 'vijayaranimanoj@gmail.com', '1997-04-11', 24, '2', '1', 'Manoj Kumar.N', 'Engineer', 25.00, 0, 0.00, 15.00, 'BOMMAYA GOUNDAN PATTI,THENI', 'BOMMAYA GOUNDAN PATTI,THENI', '2107220018', '1', '1', 'upload_files/candidate_tracker/13851355114_VIJAYARANIMANI.pdf', NULL, '1', '2021-07-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication,Having knowledge only in Aap.Net \nsalary Expectation is very high and will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 08:24:08', 1, '2021-07-22 08:28:37', 0, NULL, 1),
(5540, 'kuzanthaiyan', '2', '9791645724', '', 'manikuzanthaiyan080@gmail.com', '1999-02-09', 22, '2', '2', 'srenivashan', 'lic agent', 20000.00, 1, 0.00, 20000.00, 'salem', 'salem', '2107220019', '1', '1', 'upload_files/candidate_tracker/86372684865_KUZANTHAIYAN (1).pdf', NULL, '1', '2021-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 08:28:59', 1, '2021-07-22 08:40:20', 0, NULL, 1),
(5541, 'kuzanthaiyan', '2', '8637649057', '', 'manikuzanthaiyan@gmail.com', '1999-02-09', 22, '2', '2', 'srenivashan', 'lic agent', 20000.00, 1, 0.00, 20000.00, 'salem', 'salem', '2107220020', '1', '1', 'upload_files/candidate_tracker/81069973287_KUZANTHAIYAN (1).pdf', NULL, '1', '2021-07-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 08:58:08', 1, '2021-07-22 09:06:36', 0, NULL, 1),
(5542, 'Pavithra V', '14', '9080044133', '9840192140', 'Pavithravijay203@gmail.com', '2000-03-20', 21, '2', '2', 'K. Vijayakumar', 'Labour', 25000.00, 1, 0.00, 20000.00, 'Moolakadai', 'Moolakadai', '2107230001', '12', '1', 'upload_files/candidate_tracker/77447198384_Pavithra v resume (1).pdf', NULL, '1', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Terms and conditions,not interested much into the coding. She focus much into Java Python', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-23 09:29:17', 1, '2021-07-23 09:51:04', 0, NULL, 1),
(5543, 'Nambi.R', '11', '8668124849', '7299776031', 'Nambi94444@gmail.com', '1999-03-24', 22, '1', '2', 'Ramanathan.R', 'Labour', 17000.00, 0, 0.00, 18000.00, 'No:174 mangala nager, 9ty cross street, porur', 'Chennai', '2107230002', '', '1', 'upload_files/candidate_tracker/14703095859_NAMBI 19-07-2021.pdf', NULL, '1', '2021-07-23', 0, 'Jobs', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Terms xxamp conditions and the expectation is very high. Will not sustain for a long', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-23 10:45:23', 60, '2021-07-23 04:08:03', 0, NULL, 1),
(5544, '', '0', '8939202515', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107230003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-23 10:48:50', 0, NULL, 0, NULL, 1),
(5545, 'mitra', '4', '6374314922', '', 'www.mitramitra0987@gmail.com', '2001-04-05', 0, '2', '2', 'nelamanivanan', 'astrologer', 15000.00, 2, 0.00, 10000.00, 'peravalur', 'tambaram', '2107230004', '1', '1', 'upload_files/candidate_tracker/44435090720_m.resume.docx', NULL, '1', '2021-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-23 11:00:50', 1, '2021-07-23 11:49:43', 0, NULL, 1),
(5546, 'Levis vasanth', '11', '9962948747', '6380486198', 'levisvasanth3@gmail.com', '1997-07-11', 24, '2', '2', 'Periyanayagam', 'Farmer', 20000.00, 3, 14000.00, 15000.00, 'Levis vasanth church street, Villupuram', 'Choolaimedu, basha street chennai', '2107230005', '1', '2', 'upload_files/candidate_tracker/79048956208_curriculm vitae.docx', NULL, '3', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication, Fresher for  the recruitment Role.He will not handle the pressure and will not sustain for a long', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-23 11:11:34', 1, '2021-07-23 11:18:26', 0, NULL, 1),
(5547, 'ajithkumar g', '2', '6383778445', '', 'gajithkumar0011@gmail.com', '1998-03-15', 23, '2', '2', 'govindhasamy m', 'former', 10000.00, 3, 0.00, 20000.00, 'dharmapuri', 'dharmapuri', '2107230006', '1', '1', 'upload_files/candidate_tracker/46430703650_GajithQR.pdf', NULL, '2', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge. He is much into Java, C. Will not handle the work pressure', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 11:52:24', 1, '2021-07-23 12:30:06', 0, NULL, 1),
(5548, 'Rahul Ganesh', '23', '8072277271', '9994768622', 'ganeshrahul1699@gmail.com', '1999-06-01', 24, '1', '2', 'Saravanan', 'Business', 16000.00, 2, 0.00, 18000.00, 'salem', 'salem', '2107230007', '', '1', 'upload_files/candidate_tracker/59199543809_new2 Rahul Ganesh Resume.pdf', NULL, '1', '2023-07-12', 0, 'Sathish', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not open or TxxampC if he comes back after learning let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-23 12:36:37', 1, '2023-07-12 10:11:53', 0, NULL, 1),
(5549, 'S. Sivaraman', '11', '8608560831', '7350370471', 'Sivaraman165@gmail.com', '1997-05-16', 24, '2', '2', 'N. Sivasubramanian', 'Retired', 15.00, 1, 0.00, 12.00, 'Chennai', 'Perungalathur', '2107230008', '1', '1', 'upload_files/candidate_tracker/37998324734_10023729-2021-04-27 (1).pdf', NULL, '3', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location Constraint, Sustainability doubts. Will not handle pressure. Not suits for our recruiter Role. He left previous company because of job pressure', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-23 12:46:22', 1, '2021-07-23 12:54:08', 0, NULL, 1),
(5550, 'Meena', '4', '7598411361', '', 'meenashanraj@gmail.com', '1993-03-05', 28, '3', '1', 'Raghunath', 'Airtel', 35000.00, 2, 16000.00, 17000.00, 'Tamil Nadu', 'Tamil Nadu', '2107230009', '', '2', 'upload_files/candidate_tracker/52306869307_meena resume 2021.docx.docx', NULL, '1', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '50/50 can give a try for Esale RM, but left without attending  the 2nd level Interview', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-23 12:49:50', 1, '2021-07-23 12:54:48', 0, NULL, 1),
(5551, 'R. Kasthuri', '25', '9600113683', '', 'Kasthuri2471992@gmail.com', '2006-07-23', 0, '2', '2', 'K. Rose', 'Self employed', 20000.00, 2, 12000.00, 12000.00, 'Chennai', 'Chennai', '2107230010', '1', '2', 'upload_files/candidate_tracker/47078366105_RESUMEkas.pdf', NULL, '1', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication, No sales Experience will not suits for our role.', '8', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-23 12:50:33', 1, '2021-07-23 01:05:36', 0, NULL, 1),
(5552, 'IRFAN SHARIF', '6', '8939313747', '8015677041', 'irfanspicy143@gmail.com', '1997-03-20', 24, '2', '2', 'ABDULLHA', 'TAILOR', 20000.00, 2, 13000.00, 15000.00, 'Chennai', 'Chennai', '2107230011', '1', '2', 'upload_files/candidate_tracker/53231257012_latest resume(2).pdf', NULL, '1', '2021-07-24', 0, '', '3', '59', '2021-07-29', 216000.00, '', '4', '2023-01-18', '1', 'Selected for Kannan Team with CTC - 216000 includes PF/ESI/PT deductions', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 01:25:35', 60, '2021-07-29 04:17:45', 0, NULL, 1),
(5553, 'Vikneshwari', '27', '8220006372', '8072252773', 'Vikneshwari2596@gmail.com', '1996-11-25', 24, '2', '2', 'Murthy', 'Senior Assistant in Medical College', 40000.00, 1, 16000.00, 20000.00, '126,Manju bala nagar,Narthangudi,Thiruvarur (dt).', '126,Manju bala Nagar,Narthangudi, Thiruvarur (dt)', '2107230012', '1', '2', 'upload_files/candidate_tracker/7875570901_DotnetResumeNew_.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our client position, she is comfortable only for ASP.Net MVC positions ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 01:30:40', 1, '2021-07-23 01:45:25', 0, NULL, 1),
(5554, 'Satish Kumar', '27', '9940276896', '', 'satishnb4@gmail.com', '1995-02-04', 26, '2', '2', 'N Babu', 'Labor in Air India', 40000.00, 1, 14000.00, 20000.00, 'No.263 pullapuram kilpauk Chennai 600010', 'No. 315 pullapuram kilpauk Chennai 600010', '2107230013', '1', '2', 'upload_files/candidate_tracker/55463979438_Satish_2021.pdf', NULL, '1', '2021-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 02:38:29', 1, '2021-07-23 02:46:58', 0, NULL, 1),
(5555, 'Ajith kumar C', '2', '9043441218', '', 'cajithkumar2015@gmail.com', '1998-08-15', 22, '2', '2', 'Chandran P', 'SalesMan', 25000.00, 1, 0.00, 5000.00, 'TN-Salem', 'TN-Salem', '2107230014', '1', '1', 'upload_files/candidate_tracker/79700109905_Ajith_kumar.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much interested towards Angular Positions only, will not handle the work pressure.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 03:40:36', 1, '2021-07-23 03:43:20', 0, NULL, 1),
(5556, 'Elamaran', '2', '9944187827', '', 'maranram123@gmail.com', '1998-12-09', 22, '2', '2', 'Ramasamy', 'Agriculture', 20000.00, 1, 0.00, 15000.00, 'Thambikottai vadakadu', 'Chennai', '2107230015', '1', '1', 'upload_files/candidate_tracker/62248079347_Resume.pdf', NULL, '3', '2021-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Poor Communication, No basic knowledge, will not handle our pressure. Sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 03:57:48', 1, '2021-07-23 04:01:45', 0, NULL, 1),
(5557, 'Ajay SS', '27', '7010395037', '', 'lucabrasi1042@gmail.com', '2000-01-24', 21, '2', '2', 'Subramaniam H', 'Manager', 50000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2107230016', '1', '1', 'upload_files/candidate_tracker/5064516871_AJAY_RESUME.pdf', NULL, '1', '2021-07-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 04:40:38', 1, '2021-07-23 04:47:16', 0, NULL, 1),
(5558, 'Daniel', '2', '9025273485', '', 'daniel.p11198@gmail.com', '1998-01-11', 23, '2', '2', 'Paul boopathy raja', 'Grocery', 30000.00, 2, 180000.00, 300000.00, 'Chennai', 'Chennai', '2107230017', '1', '2', 'upload_files/candidate_tracker/89833946167_danie_resume (1).docx', NULL, '2', '2021-07-23', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 06:41:58', 1, '2021-07-23 06:45:07', 0, NULL, 1),
(5559, 'Syed Abuthahir', '2', '7395951797', '', 'syedmechon123@gmail.com', '1999-03-12', 22, '4', '2', 'Mohamed Farook', 'Assistant General Manager', 40000.00, 3, 0.00, 200000.00, 'Aminjikarai', 'Nolambur', '2107240001', '', '1', 'upload_files/candidate_tracker/77378898010_SYED RESUME - 2021-07-24T100008.647.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open with TxxampC. Having basic knowledge in HTML,CSS,JS with not much importance on the job', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 09:53:47', 1, '2021-07-24 10:00:31', 0, NULL, 1),
(5560, 's.sujatha', '23', '8680982706', '', 's.sujatha1994@gmail.com', '1994-06-10', 27, '3', '2', 'n.sekar', 'farmer', 10000.00, 4, 15000.00, 23000.00, 'Chennai', 'Chennai', '2107240002', '', '2', 'upload_files/candidate_tracker/18841935260_Sujatha Resume.pdf', NULL, '1', '2021-08-02', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not enough knowledge', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 10:07:07', 60, '2021-08-02 05:31:24', 0, NULL, 1),
(5561, 'M Aldrin erric daniel', '25', '8838810867', '', 'erricaed97@gmail.com', '1997-11-18', 23, '3', '2', 'Muthu vijayan', 'TNEB accounts department', 40000.00, 1, 0.00, 16000.00, 'CHENNAI', 'karpagam appartment,st.lazarusroad,R.ApuramCH-28', '2107240003', '', '1', 'upload_files/candidate_tracker/55601578894_ALDRIN RESUME.pdf', NULL, '1', '2021-07-24', 0, '', '3', '59', '2021-07-29', 192000.00, '', '3', '2021-09-20', '1', 'Selected for Sarath Team with CTC-192000 includes PF/ESI. Target will given to the candidate and if he Achieved the target salary will be revised with the addition of 20k', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 10:39:42', 60, '2021-07-28 05:10:37', 0, NULL, 1),
(5562, 'Prasanna', '4', '6383148143', '9597205769', 'prasannapras230@gmail.com', '1998-07-07', 23, '3', '2', 'Elumalai', 'Farmer', 12000.00, 2, 10000.00, 12000.00, 'Periyakalakkadi village Chengalpattu Dt', 'Pozhichalur,chennai-74', '2107240004', '', '2', 'upload_files/candidate_tracker/49131245473_Prasanna Resume.docx', NULL, '1', '2021-07-24', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Hold On Long Pending ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 11:19:24', 1, '2021-07-24 11:29:41', 0, NULL, 1),
(5563, 'Sakthipratheesh S', '2', '7904472252', '9159070700', 'sakthipratheeshs@gmail.com', '2000-08-04', 20, '2', '2', 'prema', 'house wife', 30000.00, 1, 1.00, 4.00, 'chennai', 'chennai', '2107240005', '1', '2', 'upload_files/candidate_tracker/23307484278_Sakthipratheesh_Resume.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,little of basic knowledge, Much into PHP, Min Salary Expectation  is 20K.Will not sustain for a long, Focusing much for Tier level companies\n', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-24 11:28:16', 1, '2021-07-24 12:02:56', 0, NULL, 1),
(5564, 'MOHAMMEDIJAS A', '6', '9677265267', '6383819583', 'mohammedijas18155@gmail.com', '1996-05-05', 25, '3', '2', 'Abdul salam', 'Experience', 25000.00, 1, 13500.00, 15000.00, '35 sabapathy street ayanavaram chennai', '35 Sabapathy street ayanavaram chennai', '2107240006', '', '2', 'upload_files/candidate_tracker/72424367004_1625024315939_Ijas new resume 2020(1).pdf', NULL, '1', '2021-07-24', 0, '', '3', '59', '2021-07-26', 186000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team - RE with CTC 186000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 11:55:11', 60, '2021-07-24 06:04:03', 0, NULL, 1),
(5565, '', '0', '7338920924', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107240007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-24 12:03:47', 0, NULL, 0, NULL, 1),
(5566, '', '0', '9884540138', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107240008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-24 12:35:57', 0, NULL, 0, NULL, 1),
(5567, 'prince kumar s', '2', '9791056023', '', 'unknownprincekumar@gmail.com', '2000-11-22', 20, '2', '2', 'sri narayan singh', 'security', 220000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2107240009', '1', '1', 'upload_files/candidate_tracker/45540562435_prince kumar.s.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Didnxquott come back after checking with his family on TxxampC. Sustainability Doubts', '2', '2', '0', '1', '1', '0', '2', '2021-07-28', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 01:37:52', 1, '2021-07-24 01:52:50', 0, NULL, 1),
(5568, 'sureshkumar g', '2', '8220097730', '8072137378', 'sureshkumar062999@gmail.com', '1999-06-29', 22, '2', '2', 'ganesan n', 'electrician', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2107240010', '1', '1', 'upload_files/candidate_tracker/95561033905_SureshMCA (1).pdf', NULL, '1', '2021-07-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 03:03:53', 1, '2021-07-24 03:10:30', 0, NULL, 1),
(5569, '', '0', '9944782676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107240011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-24 03:14:16', 0, NULL, 0, NULL, 1),
(5570, 'S.Harishkumar', '2', '9789682446', '7010886581', 'hk1651999@gmail.com', '1999-05-16', 22, '2', '2', 'M.Senthilnathan', 'Printing Press', 12000.00, 1, 0.00, 10000.00, 'E20,Pari Street,Anna M.G.R Nagar,Pallikaranai,Ch', 'E20,Pari Street,Anna M.G.R Nagar,Pallikaranai,Ch', '2107240012', '1', '1', 'upload_files/candidate_tracker/61330604856_Resume_S Harishkumar.docx', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will Come For The Joining On 28-Jul,Need To Collect Original Certificates Tomorrow,Selected For Mern Stack Can Be Trained / Candidate didnt turn back ', '2', '1', '0', '1', '1', '0', '2', '2021-07-29', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 03:15:08', 1, '2021-07-24 03:21:51', 0, NULL, 1),
(5571, 'Mohamed suhail', '6', '9884262730', '8072411547', 'suhailmohamed3006@gmail.com', '2001-06-30', 20, '2', '2', 'Badurunisha', 'Housewife', 18000.00, 2, 11000.00, 15000.00, 'Adambakkam', 'Adambakkam', '2107240013', '1', '2', 'upload_files/candidate_tracker/33229066899_resume suhail.pdf', NULL, '1', '2021-07-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-24 03:36:54', 1, '2021-07-24 03:47:18', 0, NULL, 1),
(5572, 'Deepak D', '2', '9543911583', '9710893599', 'deepakd478@gmail.com', '1998-04-23', 23, '2', '2', 'Deenadayalan N', 'Plumber', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2107240014', '1', '1', 'upload_files/candidate_tracker/17566996133_Resume.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Testing Profile, Worked with RANE. Not much focused towards the career. Salary Expectation is also too high', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 03:48:22', 1, '2021-07-24 03:53:02', 0, NULL, 1),
(5573, 'kishore', '2', '8190805490', '', 'gokulkishore393@gmail.com', '2000-10-17', 20, '2', '2', 'kuppan', 'catering server', 20000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2107240015', '1', '1', 'upload_files/candidate_tracker/65739531273_kishore_k.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '	Need Some Time To Learning, No Basic Knowledge .Yet to Get The Document From College, Currently Working In Voice Process. Need Some Time To Decide ', '2', '1', '0', '1', '1', '0', '2', '2021-08-02', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 05:12:31', 1, '2021-07-24 05:41:18', 0, NULL, 1),
(5574, 'tendul kumar', '2', '8940032411', '6380230306', 'tendulkumar01@gmail.com', '1997-07-03', 24, '2', '2', 'ramakrishnamoorthi', 'daily wages', 8000.00, 2, 0.00, 2.50, 'krishnagiri', 'chennai', '2107240016', '1', '1', 'upload_files/candidate_tracker/31438872199_Resume.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Gokul in the 2nd round and got rejected, Will not sustain for a long. Most focus only on the Salary', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 05:25:04', 1, '2021-07-25 08:31:52', 0, NULL, 1),
(5575, 'Vijay kumar', '4', '8792617822', '8096659674', 'Sunnyvijju143@gmail.com', '1998-01-01', 23, '3', '2', 'Ramanjineyulu', 'Factory worker', 30000.00, 3, 14500.00, 16000.00, '1-193 sajjaladinne tadipatri ananthapur Ap', 'Madiwala marutinagar bangalore katnataka', '2107240017', '', '2', 'upload_files/candidate_tracker/82771260446_CV_2021-07-23-123854.pdf', NULL, '1', '2021-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 05:42:17', 1, '2021-07-24 05:53:55', 0, NULL, 1),
(5576, 'muniasamy ramakrishnan', '2', '9092722657', '9025762046', 'rmuniasamy392@gmail.com', '1995-10-31', 25, '4', '2', 'ramakrishnan', 'farmer', 200000.00, 2, 283000.00, 400000.00, 'tutticorin', 'avadi', '2107240018', '', '2', 'upload_files/candidate_tracker/56219557469_1624379553489_muniasamy ramakrishnan resume_200811 (2).doc', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Having Exp in React Native,Little Attitude Issue,Salary expectation is very high.Not much comfortable with SA. No sustainability in previous exp.Not in smooth manner with the previous Companies\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 05:44:07', 1, '2021-07-24 05:50:24', 0, NULL, 1),
(5577, '', '0', '9087798105', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107240019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-24 06:16:09', 0, NULL, 0, NULL, 1),
(5578, 'SAHITH AFRIDEEN', '3', '9094082900', '9092622178', 'sahithafrideen2000@gmail.com', '2000-03-09', 21, '2', '2', 'NAINA MOHAMMAD', 'Works in a coffee Shop', 12000.00, 1, 0.00, 13000.00, 'Tondiarpet', 'IOC', '2107240020', '1', '1', 'upload_files/candidate_tracker/21296572534_sahithee1.docx', NULL, '1', '2021-07-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 06:34:23', 1, '2021-07-24 07:02:31', 0, NULL, 1),
(5579, 'shrinidhi', '2', '9940090179', '7338920924', 'shrinidhi250100@gmail.com', '2000-01-25', 21, '3', '2', 'senthilkumar', 'fresher', 50000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2107240021', '', '1', 'upload_files/candidate_tracker/76115696982_Shrinidhi\'s Resume.pdf', NULL, '1', '2021-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 10:38:36', 1, '2021-07-24 10:43:29', 0, NULL, 1),
(5580, '', '0', '6381356498', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107250001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-25 08:46:28', 0, NULL, 0, NULL, 1),
(5581, 'Arunprasanth', '27', '9566640720', '', 'arunprasanth299@gmail.com', '2006-07-26', 15, '2', '2', 'Thiripurasundari', 'Teacher', 60000.00, 2, 0.00, 16000.00, 'Thrivannamala', 'Thrivannamala', '2107260001', '1', '1', 'upload_files/candidate_tracker/56521528165_arun res-1.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our Mern Stack, also not for our client positons', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-26 09:15:53', 1, '2021-07-26 09:23:45', 0, NULL, 1),
(5582, 'Kamesh v', '27', '8667038284', '', 'Kameshvaradaraj99@gmail.com', '1999-11-24', 21, '2', '2', 'Varadaraj s', 'Mechanic', 80000.00, 2, 0.00, 15000.00, 'Ambur', 'ambur', '2107260002', '1', '1', 'upload_files/candidate_tracker/84004303562_kamesh.docx', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfort with TxxampC,no basic Knowledge. Sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-26 09:17:40', 1, '2021-07-26 09:26:52', 0, NULL, 1),
(5583, 'Pavithra', '2', '9094649512', '', 'p.pavithra1109@gmail.com', '1997-09-11', 23, '2', '2', 'Palanisamy', 'Staff', 20000.00, 3, 0.00, 18000.00, 'Chennai', 'Chennai', '2107260003', '1', '1', 'upload_files/candidate_tracker/67662947241_Resume_Pavithra.docx', NULL, '1', '2021-08-27', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skills in lang', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 10:03:55', 50, '2021-08-27 10:46:48', 0, NULL, 1),
(5584, 'mageshkumar m', '5', '9092843261', '9952978489', 'mageshmagi308@gmail.com', '1996-09-11', 24, '2', '2', 'murugan k', 'carpenter', 20000.00, 0, 15000.00, 20000.00, 'thuraipakkam', 'thuraipakkam', '2107260004', '1', '2', 'upload_files/candidate_tracker/6407839595_Macresume.pdf', NULL, '3', '2021-07-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-26 10:13:37', 1, '2021-07-26 10:24:45', 0, NULL, 1),
(5585, 'Karthick', '6', '8056046523', '', 'Ashokkarthik1997@gmail.com', '1997-03-17', 24, '1', '2', 'Velan', 'Relation Executive', 72000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2107260005', '', '1', 'upload_files/candidate_tracker/76680275202_Share \'update resume.docx\'.docx', NULL, '1', '2021-07-26', 0, 'T1152', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Internal Reference, No communication and no stability in the previous experience. Will not suits for our role.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-26 11:11:02', 1, '2021-07-26 11:20:28', 0, NULL, 1),
(5586, '', '0', '8610159517', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107260006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-26 11:23:40', 0, NULL, 0, NULL, 1),
(5587, 'cavin Kumar R', '2', '9940476843', '6369777160', 'cavinkumar780@gmail.com', '1998-09-04', 22, '4', '2', 'T Ramesh', 'Real estate', 16000.00, 1, 0.00, 15000.00, '62/63 ponniyamman koil Street, mowlivakkam,Chennai', '62/63 Ponniyamman Koil Street, Mowlivakkam,Chennai', '2107260007', '', '1', 'upload_files/candidate_tracker/7483211975_My_Resume.docx', NULL, '1', '2021-07-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-26 11:50:13', 50, '2021-07-26 12:52:03', 0, NULL, 1),
(5588, '', '0', '8681940175', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107260008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-26 12:12:10', 0, NULL, 0, NULL, 1),
(5589, 'Premnath V', '27', '8248947138', '9944322357', 'vpremnathv@gmail.com', '1996-11-07', 24, '2', '2', 'Velmurugan R', 'Driver', 20000.00, 1, 120000.00, 132000.00, 'Vellore', 'Vellore', '2107260009', '1', '2', 'upload_files/candidate_tracker/39805016072_Premnath V resume (1) (1) (1) (1).docx', NULL, '1', '2021-07-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 01:09:27', 1, '2021-07-27 11:59:03', 0, NULL, 1),
(5590, 'Dinesh M', '23', '6382585971', '7598759634', 'dineshtechdeveloper@gmail.com', '1999-04-13', 22, '3', '2', 'R. Muthaiyan', 'Farmer', 40000.00, 1, 0.00, 10000.00, 'Mayiladuthurai', 'Thiruvanmiyur, Chennai 600041.', '2107260010', '', '1', 'upload_files/candidate_tracker/92512609863_dinesh.resume.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Holding an offer with Net Access for a month training and then with 10k Salary and Hike after an year. Much comfortable and the previous exp is in PHP. Will not sustain for a long in our domain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-26 01:32:39', 1, '2021-07-26 01:42:17', 0, NULL, 1),
(5591, 'KALIMUTHU A', '3', '8678994013', '7708888464', 'Kalimuthua1999@gmail.com', '1999-04-02', 22, '2', '2', 'Arumugasamy G', 'Weaver', 10000.00, 1, 0.00, 20000.00, 'Rajapalayam', 'Rajapalayam', '2107260011', '1', '1', 'upload_files/candidate_tracker/66284099695_kalimuthu.pdf', NULL, '1', '2021-07-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 01:39:37', 1, '2021-07-26 01:48:13', 0, NULL, 1),
(5592, '', '0', '8344051709', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107260012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-26 04:15:59', 0, NULL, 0, NULL, 1),
(5593, 'guganath b', '27', '9080218788', '', 'guhareigns99@gmail.com', '1998-07-25', 23, '2', '2', 'baskaran d', 'housekeeping', 12000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2107260013', '1', '1', 'upload_files/candidate_tracker/32409725299_GUGANATH RESUME.docx', NULL, '1', '2021-08-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 04:38:00', 1, '2021-07-27 11:51:21', 0, NULL, 1),
(5594, 'Vanitha', '27', '6380846812', '9790292695', 'vanithanatarajan77@gmail.com', '1995-09-26', 25, '2', '2', 'Natarajan', 'Private job', 15.00, 2, 0.00, 20.00, 'Thirunelveli', 'Thirunelveli', '2107260014', '1', '1', 'upload_files/candidate_tracker/63378853906_VANITHA (1).pdf', NULL, '2', '2021-07-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 04:45:08', 1, '2021-07-26 04:48:40', 0, NULL, 1),
(5595, 'jones', '27', '7092817556', '9524308146', 'selvakumarjones1991@gmail.com', '1990-05-06', 31, '2', '2', 'joice', 'mother', 10000.00, 4, 12000.00, 18000.00, 'TUTICORIN', 'TUTICORIN', '2107260015', '1', '2', 'upload_files/candidate_tracker/32963133352_Jones Resume...docx', NULL, '3', '2021-07-30', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Career Gap - 8 years,1 yr experience into ASP.Net, high Salary Expectation. Will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 06:25:35', 1, '2021-07-27 09:50:00', 0, NULL, 1),
(5596, 'SAHITH AFRIDEEN', '3', '9092622178', '7395963188', 'sahithafrideen2000@gmail.com', '2000-03-09', 21, '2', '2', 'NAINA MOHAMMAD', 'Works in a coffee Shop', 12000.00, 1, 0.00, 13000.00, 'Tondiarpet', 'Tondiarpet', '2107260016', '1', '1', 'upload_files/candidate_tracker/14646256318_Resume.docx', NULL, '1', '2021-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 11:30:11', 1, '2021-07-26 11:32:42', 0, NULL, 1),
(5597, 'P.Anusiya', '2', '7639342997', '9344133313', 'Pganusiya@gmail.com', '2000-12-25', 20, '2', '2', 'P.Pandiyan', 'Farmer', 75.00, 1, 0.00, 14.00, 'Kumbakonam', 'Chennai', '2107270001', '1', '1', 'upload_files/candidate_tracker/94360132576_p.Anusiya.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Education yet to complete.2022 Passout Students.No basic knowledge relevant to our technoloiges.Will not sustain for a long.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-27 09:52:56', 1, '2021-07-27 10:19:25', 0, NULL, 1),
(5598, '', '0', '8270259332', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107270002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-27 09:57:20', 0, NULL, 0, NULL, 1),
(5599, 'Yazhini.A', '2', '8925677597', '9344133313', 'arulyazhiniyazhini@gamil.com', '2001-07-04', 20, '2', '2', 'G.arul', 'Farmer', 48000.00, 1, 0.00, 13000.00, 'thiruvarur', 'Chennai', '2107270003', '1', '1', 'upload_files/candidate_tracker/65503532279_resume.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Education Yet To Complete.2022 Passout Students.No Basic Knowledge Relevant To Our Technoloiges.Will Not Sustain For A Long.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-27 09:58:33', 1, '2021-07-27 11:28:27', 0, NULL, 1),
(5600, 'p.nanthinipriya', '2', '6383040092', '9344133313', 'nanthinipriya2001@gmail.com', '2001-08-26', 19, '2', '2', 'azhanivel', 'farmer', 15000.00, 1, 0.00, 15000.00, 'ramanathapuram', 'chennai', '2107270004', '1', '1', 'upload_files/candidate_tracker/41136188364_CV_2021-04-14-040748.pdf', NULL, '1', '2021-07-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-27 09:59:57', 1, '2021-07-27 11:28:31', 0, NULL, 1),
(5601, 'Gayathri', '4', '9345014804', '9710446043', 'gayathree89priya@gmail.com', '1988-06-03', 33, '2', '1', 'Agoramoorthy', 'Jobless', 100.00, 1, 11000.00, 20000.00, 'Chennai', 'Chennai', '2107270005', '3', '2', 'upload_files/candidate_tracker/3093762098_Gayathree_Resume-1-47.pdf', NULL, '1', '2021-07-27', 1, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50/50 Career Gap Age around 35 yrs, No relevant Experience. Need of Job in a priority, sustainability doubts on this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-27 10:13:05', 60, '2021-07-27 03:14:05', 0, NULL, 1),
(5602, '', '0', '6382040092', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107270006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-27 10:29:54', 0, NULL, 0, NULL, 1),
(5603, 'Parvathakumar c', '6', '9087019819', '9003053995', 'Parvathakumar2002@gmail.com', '2002-11-01', 18, '2', '2', 'charm vav', 'Car driver', 10000.00, 1, 0.00, 15.00, 'chennai', 'Chennai- 64', '2107270007', '2', '1', 'upload_files/candidate_tracker/2670174313_PARVATHA KUMAR Resume.docx', NULL, '2', '2021-07-27', 0, '', '3', '59', '2021-07-29', 180000.00, '', '6', '2021-11-26', '1', 'Selected for Suthagar team with CTC 180000 includes \nPF/ESI/PT Deduction', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-27 10:38:55', 60, '2021-07-28 10:19:52', 0, NULL, 1),
(5604, 'Harish k', '2', '7358758097', '', 'harish013901@gmail.com', '2001-09-13', 19, '2', '2', 'Saraswati k', 'Helper', 200000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2107270008', '1', '1', 'upload_files/candidate_tracker/18996701934_Harish-k.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for opportunities in cyber Security/Information security positions. Will not sustain for a long in our openings. Plan to go with CCNA/CCNP certifications', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-27 10:43:42', 1, '2021-07-27 10:52:35', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5605, 'P.S. Saranya', '2', '9840586325', '8939695550', 'pssaranya2016@gmail.com', '1999-01-22', 22, '2', '2', 'Nil', 'Nil', 50000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2107270009', '1', '1', 'upload_files/candidate_tracker/47068903085_P.S._SARANYA_1999.pdf', NULL, '1', '2021-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to check with family on the Service Agreement, Sustainability doubts on her profile. Will not handle our pressure. No basic knowledge in Javascript. She is much into Python ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-27 10:49:14', 50, '2021-07-28 09:05:58', 0, NULL, 1),
(5606, 'GOHIL M S', '11', '9791168143', '', 'msgohil231296@gmail.com', '1996-12-22', 24, '3', '2', 'Murugan', 'Police', 100000.00, 2, 18000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2107270010', '', '2', 'upload_files/candidate_tracker/39244970392_EEE.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Currently working as an Assistant Engineer and fresher for the Recruiter Profile. Current Salary PM is 18K and the expectation is more than .Not much comfortable with the service Agreement', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-27 10:53:32', 1, '2021-07-27 11:00:27', 0, NULL, 1),
(5607, 'Muthu. G', '20', '8667762918', '', 'Saidaimuthu01@gmail.com', '1996-03-07', 25, '2', '2', 'Gandhi. R', 'Cooli', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2107270011', '1', '1', 'upload_files/candidate_tracker/17498983495_WORD_16 muthu.docx', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication, no stability in the previous experiences. Will not suits for our Telecaller/sales profile', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-27 10:54:05', 1, '2021-07-27 11:02:27', 0, NULL, 1),
(5608, 'Nishandhini.A', '27', '9488634834', '9042759168', 'nishandhini2132@gmail.com', '1996-02-13', 25, '2', '2', 'Amulraj.A', 'Previous Employer at Accenture Solution Pvt ltd', 40000.00, 1, 0.00, 20000.00, 'No:157/6D, Gandhipuram street, Thiruvallur', 'No:157/6D, Gandhipuram Street, Thiruvallur', '2107270012', '1', '1', 'upload_files/candidate_tracker/98147654171_1627365557370__Nisha_ - Copy - Copy.doc', NULL, '1', '2021-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Client Round Reject\n', '2', '2', '', '1', '1', '', '2', '2021-09-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-27 11:13:03', 50, '2021-08-27 10:46:13', 0, NULL, 1),
(5609, 'Sargunaraj R', '2', '6374342537', '9344252088', 'sargunaraj26042000@gmail.com', '2000-04-26', 21, '2', '2', 'Raji V', 'Hand-loom weaver', 10000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2107270013', '1', '1', 'upload_files/candidate_tracker/73490398245_Sargunaraj-R-IT.pdf', NULL, '1', '2021-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Focus much for Govt Exams and he is having knowledge much with Python. Will not suits for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-27 12:43:52', 1, '2021-07-27 12:50:21', 0, NULL, 1),
(5610, 'VISHWA.T', '2', '7339237060', '', 'vishwabe2021@gmail.com', '2006-07-27', 0, '2', '2', 'K. THIYAGARAJAN', 'Cycle mechanic', 6000.00, 0, 0.00, 12000.00, 'Nagapattinam', 'Nagapattinam', '2107270014', '1', '1', 'upload_files/candidate_tracker/14164760311_VISHWA_RESUME.pdf', NULL, '1', '2021-08-03', 0, '', '3', '59', '2021-08-04', 3500.00, '', '4', '2023-12-22', '2', 'Selected for Internship\n1st month Unpaid Internship, then 3500 Stipend for 5 months which continues with 8k salary includes 3 yrs overall Service Agreement', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-27 01:28:01', 60, '2021-08-03 10:37:33', 0, NULL, 1),
(5611, 'Waleed khurram', '3', '9360689295', '', 'waleedkhurram45@gmail.com', '1998-12-28', 22, '2', '2', 'Aslam basha', 'Industrial engineer', 10000.00, 4, 0.00, 14000.00, 'Ranipet', 'Ranipet', '2107270015', '1', '1', 'upload_files/candidate_tracker/33291085657_waleed khurram CV updated.pdf', NULL, '2', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Relevant Exp, Working in the Manufacturing Company for 3 months and looking for openings in IT company.No basic knowledge in IT skills,salary Expectation is high,will not sustain for aa long', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-27 01:28:26', 1, '2021-07-27 01:34:24', 0, NULL, 1),
(5612, 'sudharsan', '2', '7824047898', '', 'susuma1998@gmail.com', '2001-04-23', 20, '2', '2', 'balasubramanian', 'catering', 100000.00, 2, 0.00, 8000000.00, 'alwar nagar nanganallur chennai', 'chennai', '2107270016', '1', '1', 'upload_files/candidate_tracker/46942282690_SUDHARSANB_InternshalaResume.pdf', NULL, '1', '2021-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude Issue, will not fit for our role.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-27 02:52:49', 1, '2021-07-27 02:58:22', 0, NULL, 1),
(5613, 'Narendra Patha', '5', '8309667728', '', 'Pnarendra4248@gmail.com', '1994-06-09', 27, '2', '2', 'srinivasa', 'farmer', 15000.00, 1, 0.00, 18000.00, 'hyderabad', 'amirpet', '2107270017', '1', '1', 'upload_files/candidate_tracker/30685901026_Narendra-Resume-Testing (1).docx', NULL, '1', '2021-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-27 03:08:10', 1, '2021-07-27 03:12:22', 0, NULL, 1),
(5614, 'Vasanthavel V', '27', '9442541482', '', 'vasanthavelppk1999@gmail.com', '2006-07-27', 0, '2', '2', 'G vadivel', 'Farmer', 700000.00, 3, 10000.00, 16000.00, 'CUDDALORE', 'Chennai', '2107270018', '1', '2', 'upload_files/candidate_tracker/63663723342_VASANTHAVEL_.pdf', NULL, '1', '2021-07-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-27 05:15:26', 1, '2021-07-27 05:19:06', 0, NULL, 1),
(5615, '', '0', '6374192572', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107270019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-27 11:25:50', 0, NULL, 0, NULL, 1),
(5616, '', '0', '9150793134', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107280001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-28 09:43:25', 0, NULL, 0, NULL, 1),
(5617, '', '0', '7338703673', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107280002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-28 10:19:10', 0, NULL, 0, NULL, 1),
(5618, 'Ruban bose R', '11', '9080634855', '', 'ruban17062000@gmail.com', '2000-06-17', 21, '4', '2', 'N Russel', 'Appraiser', 10000.00, 2, 0.00, 20000.00, 'Gummidipoondi', 'Gummidipoondi', '2107280003', '', '1', 'upload_files/candidate_tracker/93916993911_Ruban Bose R resume docx.docx', NULL, '1', '2021-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average ,Not much comfortable with the service Agreement .Expectation is very high', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-28 11:06:21', 1, '2021-07-28 11:11:17', 0, NULL, 1),
(5619, 'SAIBALAJI GALI', '5', '9704148445', '7569511182', 'Saibalaji1995rockz@gmail.com', '1995-08-12', 25, '1', '2', 'Sarojini', 'Pentioner', 12000.00, 1, 0.00, 24000.00, 'Bhimavaram', 'Bhimavaram', '2107280004', '', '1', 'upload_files/candidate_tracker/51203717815_sai balaji word resume. (1).pdf', NULL, '2', '2021-07-28', 0, 'P1241', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-28 11:36:21', 1, '2021-07-28 11:52:02', 0, NULL, 1),
(5620, 'G.monisha', '4', '7358486737', '8925620513', 'monishaganesan1002@gmail.com', '2001-02-10', 20, '3', '2', 'G.Susiela', 'Housewife', 10000.00, 2, 0.00, 10000.00, 'No.13satya moorthy st voc Nagar pammal ch 75', 'No.13 satya moorthy st voc Nagar pammal chennai 75', '2107280005', '', '1', 'upload_files/candidate_tracker/14954192820_Aarthi.doc.docx', NULL, '1', '2021-07-28', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Hold On Long Pending ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-28 11:57:34', 60, '2021-08-14 03:25:34', 0, NULL, 1),
(5621, 'rajaguru', '6', '9940539280', '8610940734', 'Tamar.rajaguru33@gmail.com', '1995-03-03', 26, '3', '2', 'ramar', 'business Development Executive', 175000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2107280006', '', '2', 'upload_files/candidate_tracker/57905995270_Rajaguru resume.pdf', NULL, '1', '2021-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '	Can Schedule Him For The Second Level Of Interview, He Is Having Multiple Other Interview With Companies. If He Come Back Let See / Candidate didnt turn back ', '5', '2', '0', '1', '1', '0', '2', '2021-08-02', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-28 12:09:29', 1, '2021-07-28 12:57:11', 0, NULL, 1),
(5622, 'T senthil Athithan', '2', '7010468974', '8344402604', 'axarathi1999@gmail.com', '1999-03-23', 22, '2', '2', 'P.Thiruppathi', 'labour', 10000.00, 1, 0.00, 15000.00, 'Mamsapuram-626110', 'Arumbakkam-600106', '2107280007', '1', '1', 'upload_files/candidate_tracker/57910615998_adhi Resume.pdf', NULL, '1', '2021-07-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication,not much open up no basic knowledge ,Will not handle the pressure and sustainability Doubts', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-28 12:14:46', 1, '2021-07-28 12:27:34', 0, NULL, 1),
(5623, 'kavya', '2', '9941453739', '9841217040', 'kavyavedagiri@gmail.com', '1997-08-27', 23, '2', '2', 'vedagiri', 'business', 75000.00, 1, 0.00, 8000.00, 'chennai', 'chennai', '2107280008', '1', '1', 'upload_files/candidate_tracker/59143606815_kavya Resume NEW (3).pdf', NULL, '1', '2021-07-30', 0, '', '3', '59', '2021-08-19', 96000.00, '', NULL, '2023-11-18', '2', 'Selected for Mern Stack with Stipend initial 3,5k Stipend for 5 month post intern starts with the salary of 8000', '2', '1', '', '1', '1', '', '2', '2021-08-11', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-07-28 12:41:54', 60, '2022-02-25 07:30:31', 0, NULL, 1),
(5624, 'Sanjith gokul G', '3', '9655036500', '9486226162', 'sanjithgokul1999@gmail.com', '1999-10-05', 21, '2', '2', 'Gandhimathinathan.s', 'Former', 15000.00, 1, 0.00, 15000.00, 'Dindigul', 'Dindigul', '2107280009', '1', '1', 'upload_files/candidate_tracker/33842465618_sanjith resume 2.pdf', NULL, '1', '2021-07-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Python positions', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-28 01:36:05', 1, '2021-07-28 02:28:46', 0, NULL, 1),
(5625, 'Abinsha YL dolly', '27', '8903796691', '', 'Abinshayldolly@gmail.com', '1996-07-01', 25, '2', '1', 'Yesudhason', 'Mason', 10000.00, 1, 280000.00, 500000.00, 'Kaniyakumari', 'Kaniyakumari', '2107280010', '1', '2', 'upload_files/candidate_tracker/18789117289_Abi.doc', NULL, '2', '2021-07-29', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-07-28 03:00:45', 1, '2021-07-28 03:04:05', 0, NULL, 1),
(5626, 'Sabeer ahamed', '22', '9080594135', '9566999255', 'digsabeer@gmail.com', '1997-04-13', 24, '3', '2', 'Fathima', 'Accountant', 16000.00, 1, 26000.00, 15000.00, 'Marthandam, kanyakumari district', 'Tambaram', '2107280011', '', '2', 'upload_files/candidate_tracker/49658966498_sabeer dig resume.pdf', NULL, '1', '2021-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Very Slow.No sustainability in his previous exp. Left previous job due to pressure. Salary Exp is very high', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-28 03:04:19', 1, '2021-07-28 03:10:17', 0, NULL, 1),
(5627, 'Balamurugan S', '27', '9551959991', '9655932528', 'sbalamurugandeee@gmail.com', '1991-06-15', 30, '2', '1', 'Lakshmi S', 'Taking care of home', 20000.00, 2, 20000.00, 25000.00, 'Minnal', 'Pattabiram', '2107280012', '1', '2', 'upload_files/candidate_tracker/70472734991_Resume stores.docx', NULL, '1', '2021-07-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-28 03:35:34', 1, '2021-07-28 03:39:16', 0, NULL, 1),
(5628, 'kalai selvi s', '27', '9578652724', '9677049816', 'kalaiselvi1208@gmial.com', '1992-08-12', 28, '2', '1', 'selvaraj v s', 'it', 35000.00, 1, 25000.00, 30000.00, 'chennai', 'chennai', '2107280013', '1', '2', 'upload_files/candidate_tracker/62934535531_Resume new.docx', NULL, '1', '2021-08-03', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-28 04:39:00', 1, '2021-07-28 04:46:49', 0, NULL, 1),
(5629, 'Ragul E', '2', '9688922525', '', 'Ragul.e27@gmail.com', '1994-12-27', 26, '2', '2', 'Elaveni PSV', 'TNSTC driver', 15000.00, 1, 0.00, 15000.00, 'Theni', 'Chennai', '2107280014', '1', '1', 'upload_files/candidate_tracker/86807273895_Resume_Ragul.docx', NULL, '1', '2021-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open with TxxampC,no basic knowledge in IT Skills will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-28 06:23:06', 1, '2021-08-02 06:10:17', 0, NULL, 1),
(5630, 'Santhosh V N', '11', '9941285398', '8610459268', 'iamvns1998@gmail.com', '1999-04-12', 22, '3', '2', 'B. Nithyanandan', 'Small Business', 30000.00, 1, 10000.00, 25000.00, 'Chennai', 'Chenai', '2107290001', '', '2', 'upload_files/candidate_tracker/41131608739_SanthoshVN RSB1901024-converted(3).pdf', NULL, '1', '2021-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, high CTC Expectation, not much ok with Service Agreement.', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-29 10:25:57', 1, '2021-07-29 10:31:57', 0, NULL, 1),
(5631, '', '0', '8838283612', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107290002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-29 11:14:04', 0, NULL, 0, NULL, 1),
(5632, 'peter. k y', '11', '8124135436', '', 'peterky23@gmail.com', '1999-02-11', 22, '3', '2', 'yohan k', 'daily wages', 25000.00, 2, 0.00, 18000.00, 'chennai', 'chennai', '2107290003', '', '1', 'upload_files/candidate_tracker/33086667202_Peter K Y Resume.HR..pdf', NULL, '1', '2021-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,  Salary Expectation is high. Not much comfortable with terms xxamp conditions', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-29 11:59:41', 1, '2021-07-29 12:18:46', 0, NULL, 1),
(5633, 'Banupriya.G', '27', '6381268112', '8098473045', 'banupriya.gg.98@gmail.com', '1998-11-24', 22, '2', '2', 'Gunasekaran.P', 'Business', 20000.00, 2, 200000.00, 280000.00, 'Virudhunagar dist', 'Chennai (ambattur)', '2107290004', '1', '2', 'upload_files/candidate_tracker/8548497098_Resume Banupriya G.pdf', NULL, '2', '2021-07-31', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Winform Exp she is fully into Web application.* month Exp and her salary Exp is very high', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-29 12:08:15', 1, '2021-07-29 12:14:18', 0, NULL, 1),
(5634, 's abdul wajeeth', '27', '7708756191', '', 'wajeeth08@gmail.com', '1997-06-19', 24, '2', '2', 'a seeni pakkeer', 'business', 20000.00, 4, 0.00, 20000.00, 'tirupattur', 'chennai', '2107290005', '1', '1', 'upload_files/candidate_tracker/13357934819_Abdul wajeeth Resume.pdf', NULL, '1', '2021-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No relevant experience in DotNet, have work ep in Digital Marketing  but dont have much knowledge on that .Will not suits for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-29 12:16:58', 1, '2021-07-30 04:19:53', 0, NULL, 1),
(5635, 'Velmurugan G', '27', '7299628796', '8838640309', 'Velmurugan.hb05@gmail.com', '1994-07-05', 27, '2', '2', 'Ganeshan D', 'Own business', 30000.00, 1, 0.00, 15000.00, '6 subramani street, jafferkhanpet, Ch-83', '6 Subramani Street, Jafferkhanpet, Ch-83', '2107290006', '1', '1', 'upload_files/candidate_tracker/86997390963_Velmurugan G.pdf', NULL, '3', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge in .Net Profile few months back attended interview for RM and got rejected', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-29 12:45:44', 1, '2021-07-29 12:57:03', 0, NULL, 1),
(5636, '', '0', '9043280284', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107290007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-29 12:46:33', 0, NULL, 0, NULL, 1),
(5637, '', '0', '9787782896', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107290008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-29 01:41:38', 0, NULL, 0, NULL, 1),
(5638, '', '0', '7092698923', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107290009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-29 03:01:18', 0, NULL, 0, NULL, 1),
(5639, '', '0', '7904596349', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107290010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-29 03:38:13', 0, NULL, 0, NULL, 1),
(5640, '', '0', '7094283336', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107290011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-29 04:16:12', 0, NULL, 0, NULL, 1),
(5641, 'Suvedha K', '2', '9342920641', '7094283336', 'suvedhak0805@gmail.com', '1999-05-08', 22, '2', '2', 'A.Kumar', 'Daily wages', 15000.00, 1, 0.00, 18000.00, 'Villupuram', 'Villupuram', '2107290012', '1', '1', 'upload_files/candidate_tracker/10305871456_Suvedha.K - Resume.pdf', NULL, '1', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '	Not Much Clear With TxxampC,But Showing Interest On The Profile, Udhay Will Interview And Let Us Decide / But she didnt turn back on the next day for the interview', '2', '1', '0', '1', '1', '0', '2', '2021-08-03', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-29 04:28:23', 1, '2021-07-29 04:31:03', 0, NULL, 1),
(5642, 'Vignesh S', '27', '9345034205', '9597683177', 'smsvicky7@gmail.com', '1997-04-12', 24, '2', '2', 'Selvamunusamy', 'Business', 10000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2107290013', '1', '2', 'upload_files/candidate_tracker/18866613284_Resume_vickydocx_Life_(1)-converted (1) (1).pdf', NULL, '1', '2021-07-31', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-29 06:04:28', 1, '2021-07-31 08:54:45', 0, NULL, 1),
(5643, 'Swathi', '14', '7397413529', '9710996459', 'Swathi26999@gmail.com', '1999-09-26', 21, '3', '2', 'Venugopal', 'Verification officer', 8000.00, 1, 0.00, 20000.00, '86/14 R block kotturpuram ch 85', '86/14 R block kotturpuram ch 85', '2107300001', '', '1', 'upload_files/candidate_tracker/97992395830_New swat.pdf', NULL, '1', '2021-07-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-30 10:54:40', 1, '2021-07-30 10:57:27', 0, NULL, 1),
(5644, 'Krishna P.S', '11', '6380614372', '', 'Krishnasanthanam1999@gmail.com', '1999-07-11', 22, '3', '2', 'P.S.Santhanam', 'Car Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2107300002', '', '1', 'upload_files/candidate_tracker/22147168579_KRISHNA.P.S RESUME NEW.pdf', NULL, '1', '2021-07-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication, will not sustain and handle pressure', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-30 02:27:21', 1, '2021-07-30 02:31:12', 0, NULL, 1),
(5645, '', '0', '7401546493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107300003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-30 09:42:26', 0, NULL, 0, NULL, 1),
(5646, '', '0', '9361739532', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107310001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-31 10:35:22', 0, NULL, 0, NULL, 1),
(5647, 'Uwen Shankar', '11', '9789852335', '', 'uwenshankar14@gmail.com', '1997-08-14', 23, '3', '2', 'Nageshwar Rao', 'Business', 400000.00, 1, 0.00, 20000.00, 'NoG2,Shanthi Appt\' Abiramipuram,Chennai', 'NoG2,shanthi appt\' abiramipuram,Chennai', '2107310002', '', '1', 'upload_files/candidate_tracker/61408784268_Uwen Shankar - 2020 - Resume (2).docx', NULL, '1', '2021-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication okand salary exp in high and seems not comfort with TxxampC', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 10:43:41', 1, '2021-07-31 10:51:59', 0, NULL, 1),
(5648, 'Vijay.p', '6', '9344847178', '6384366590', 'Vijayjai50@gmail.com', '1996-05-19', 25, '1', '2', 'Radha.p', 'Teacher', 15000.00, 2, 14000.00, 18000.00, 'Needamangalam ,thiruvarur', 'Chrompate', '2107310003', '', '2', 'upload_files/candidate_tracker/45985442923_vijay.pdf', NULL, '1', '2021-07-31', 0, 'Jobs', '3', '59', '2021-08-02', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team internal team reference with cTC 168000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 10:45:45', 60, '2021-08-04 03:38:29', 0, NULL, 1),
(5649, 'Avika', '4', '9786585993', '', 'Avikakumar593@gmail.com', '2000-03-11', 21, '3', '2', 'Kumar', 'Business', 12000.00, 2, 0.00, 18000.00, 'Ashok nagar', 'Chennai', '2107310004', '', '1', 'upload_files/candidate_tracker/28973842073_New Doc 2021-07-31 11.21.12_1.pdf', NULL, '1', '2021-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Telesales, looking only for 2d designing jobs. Will not  handle the pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 11:07:54', 1, '2021-07-31 11:31:31', 0, NULL, 1),
(5650, 'Sujith raj s', '11', '8056103209', '', 'Sujithraj2111@gmail.com', '2006-07-31', 0, '1', '2', 'Sam raj n', 'Mason', 18000.00, 2, 1.00, 20000.00, 'Ambattur', 'Ambattur', '2107310005', '', '2', 'upload_files/candidate_tracker/79543048797_Sujith resume - HR Executive - MSW HR cha.docx', NULL, '3', '2021-07-31', 1, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Notice period 30 days,1 yr Exp and Salary expectation is  High. Sustainability doubts', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 11:38:12', 1, '2021-07-31 11:43:59', 0, NULL, 1),
(5651, 'Akshay Kumar VP', '11', '7358227672', '8610874315', 'akshayaxe365@gmail.com', '1996-03-24', 25, '3', '2', 'V Prabaharan (Father)', 'Self-employed', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2107310006', '', '2', 'upload_files/candidate_tracker/23111170011_resume_akshay kumar vp.pdf', NULL, '1', '2021-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Having his own business-GYM products manufacturing. Looking for Recruiter position with the high pay. Will not sustain for a long', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 12:04:34', 1, '2021-07-31 12:10:07', 0, NULL, 1),
(5652, 'Karthik.p', '6', '7338964380', '6380614317', 'Karthiksmart180@gmail.com', '2000-11-30', 20, '3', '2', 'Palani', 'Coolie', 120000.00, 1, 0.00, 20000.00, 'Oldpalavaram', 'Old Palavarm', '2107310007', '', '1', 'upload_files/candidate_tracker/66173180792_Karhik Resume.docx', NULL, '1', '2021-07-31', 0, '', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagr TEam with CTC 156000 includes PF/ESI/PT deductions', '5', '1', '1', '4', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2021-07-31 12:17:56', 60, '2021-08-04 03:40:28', 0, NULL, 1),
(5653, 'NAGARATHINAM', '6', '8760317916', '', 'rathinambca35@gmail.com', '1998-06-21', 23, '4', '2', 'BASKAR', 'Labour', 12000.00, 1, 21000.00, 23000.00, 'Cuddalore', 'Nandhanam', '2107310008', '', '2', 'upload_files/candidate_tracker/86998740458_ NAGARATHINAM-1 (1).pdf', NULL, '1', '2021-08-02', 0, '', '3', '59', '2021-08-05', 216000.00, '', '5', '1970-01-01', '2', 'Selected for Suthagar Team with CTC 216000 includes PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 12:37:52', 60, '2021-08-04 03:32:57', 0, NULL, 1),
(5654, 'Sarika', '4', '8667276991', '', 'sarikasiththarthan@gmail.com', '2001-05-26', 20, '2', '2', 'Siththarthan', 'Sales mannager', 100000.00, 0, 0.00, 12000.00, 'Chennai pattalam', 'Chennai pattalam', '2107310009', '1', '1', 'upload_files/candidate_tracker/9299214876_Document.pdf', NULL, '1', '2021-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, left without  attending the second level interview', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-31 12:46:42', 1, '2021-07-31 12:59:23', 0, NULL, 1),
(5655, 'Narendar.T', '6', '8870193446', '', 'Narenjasper@gmail.com', '1999-02-04', 22, '3', '2', 'Thiyagarajan', 'Labour', 14000.00, 1, 19000.00, 22000.00, 'Cuddalore', 'Nandhanam', '2107310010', '', '2', 'upload_files/candidate_tracker/34708519919_Naren-resume.pdf', NULL, '1', '2021-08-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 12:46:56', 1, '2021-07-31 01:01:08', 0, NULL, 1),
(5656, 'Priyanka.s', '4', '6369198422', '', 'vijayalakshmi208@gmail.com', '2001-05-13', 20, '2', '2', 'Vijayalakshmi.k', 'Cooly', 20000.00, 1, 0.00, 12000.00, 'Chennai Tondiarpet', 'Chennai Tondiarpet', '2107310011', '1', '1', 'upload_files/candidate_tracker/44230367726_CV_2021-07-31-105337.pdf', NULL, '1', '2021-07-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-31 12:48:08', 1, '2021-07-31 01:05:01', 0, NULL, 1),
(5657, '', '0', '9840910749', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107310012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-31 01:05:49', 0, NULL, 0, NULL, 1),
(5658, 'Kanmani Akshaya', '15', '9123518798', '9962629024', 'kanmaniakshaya@gmail.com', '1998-12-24', 22, '2', '2', 'Kannan', 'Business', 100000.00, 2, 0.00, 20000.00, 'Chennai-75', 'Chennai-75', '2107310013', '1', '1', 'upload_files/candidate_tracker/19080929466_K.Akshaya updated resume.pdf', NULL, '2', '2021-08-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-31 01:07:17', 1, '2021-08-02 11:26:12', 0, NULL, 1),
(5659, 'gayathri', '2', '6379534330', '', 'gayathri.babu23@gmail.com', '1992-07-23', 29, '2', '1', 'suresh', 'hr', 500000.00, 2, 0.00, 400000.00, 'chennai', 'chennai', '2107310014', '1', '1', 'upload_files/candidate_tracker/54952387878_Gayathri V-React.doc', NULL, '2', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Started her career in recruitment and moved to the IT skills internally from past 3 months. Salary Expectation is very high', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-31 06:05:26', 1, '2021-07-31 06:10:10', 0, NULL, 1),
(5660, 'V.srimathi', '22', '6383840802', '9994529544', 'srimathinivi@gmail.com', '1998-04-15', 23, '2', '2', 'Vijayakumar', 'Electrician', 250000.00, 1, 15000.00, 20000.00, 'Namakkal', 'Chennai', '2107310015', '1', '2', 'upload_files/candidate_tracker/30606211347_srimathi-converted.pdf', NULL, '1', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Didnt trun back with the task provided', '2', '2', '0', '1', '1', '0', '2', '2021-08-05', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-31 08:00:42', 1, '2021-08-01 09:57:21', 0, NULL, 1),
(5661, 'raja', '2', '8681823422', '8825534922', 'kingraja673@gmail.com', '1996-04-10', 25, '2', '2', 'thangeswari', 'mern', 12000.00, 1, 0.00, 120000.00, 'Chidambaram', 'Chidambaram', '2107310016', '1', '1', 'upload_files/candidate_tracker/57845311739_Raja_Resume.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not open with the terms xxamp conditions and the salary expectation is very high, having basic knowledge in Node.JS', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-31 09:54:13', 60, '2021-08-06 11:08:31', 0, NULL, 1),
(5662, '', '0', '9150103198', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108020001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-02 10:30:11', 0, NULL, 0, NULL, 1),
(5663, 'Suganthi.s', '27', '6369207910', '7395948789', 'suganthipandi297@gmail.com', '1997-02-02', 24, '2', '2', 'Soundarapandi.s', 'Security', 10000.00, 1, 0.00, 13000.00, 'Chennai', 'Chengalpattu', '2108020002', '1', '1', 'upload_files/candidate_tracker/93861147693_PHPResumes.docx', NULL, '1', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Holding other offers and looking for high pay\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 10:38:15', 1, '2021-08-02 10:52:05', 0, NULL, 1),
(5664, 'Manikandan V', '14', '9042927822', '8825561884', 'kandanm668@gmail.com', '1998-03-28', 23, '3', '2', 'Vijayakumar', 'Welder', 10000.00, 1, 0.00, 13000.00, 'Pudukkottai', 'Chennai', '2108020003', '', '1', 'upload_files/candidate_tracker/88399046816_Manikandan V resume 1.pdf', NULL, '1', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking only for testing positions,no relevant for our roles', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 11:10:30', 1, '2021-08-02 11:13:57', 0, NULL, 1),
(5665, 'Guru prasath A', '14', '8531969596', '9042927822', 'prasathguru5364@gmail.com', '1999-08-12', 21, '3', '2', 'Arumugam', 'Driver', 10000.00, 1, 0.00, 13000.00, 'Pudukkottai', 'Chennai', '2108020004', '', '1', 'upload_files/candidate_tracker/54555075483_GURU RESUME2i.pdf', NULL, '1', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Java/Python openings.Not open for our technology', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 11:11:21', 1, '2021-08-02 12:16:00', 0, NULL, 1),
(5666, 'S.Abisindhuja', '4', '7305607349', '9150103198', 'abisindhuja2030@gmail.com', '1998-10-26', 22, '2', '2', 'a.muthulekshumi', 'homecard', 12000.00, 1, 10000.00, 12000.00, 'Nagercoil', 'Pallavaram', '2108020005', '1', '2', 'upload_files/candidate_tracker/11805336234_TIFFANY RESUME..docx', NULL, '1', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,but updated her resume with Fake Exp,Will not suitable for our sales', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-08-02 11:28:30', 1, '2021-08-02 12:02:37', 0, NULL, 1),
(5667, 'Dharani D', '4', '9585155779', '', 'dharani251998@gmail.com', '1998-04-25', 23, '1', '2', 'A.Jaralin', 'Housewife', 12000.00, 0, 0.00, 12000.00, 'Nagercoil', 'Virugambakkam', '2108020006', '', '2', 'upload_files/candidate_tracker/69490830703_RESUMEorg.pdf', NULL, '1', '2021-08-02', 10, 'P1039', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Exp, fresher, sustainability doubts.Will not fit for our sales profile', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 11:37:14', 1, '2021-08-02 11:42:46', 0, NULL, 1),
(5668, 'Sneha', '27', '6379652378', '8610300533', 'cksneha12@gmail.com', '1999-06-07', 22, '2', '1', 'Chinnayan', 'Driver', 35000.00, 2, 0.00, 17000.00, '18/21 vivek nagar, kolathur, chennai-99', '18/21 Vivek Nagar, Kolathur, Chennai-99', '2108020007', '1', '1', 'upload_files/candidate_tracker/36875847498_Resume.pdf', NULL, '1', '2021-08-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'skill set doesnt match', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 11:38:18', 1, '2021-08-02 11:43:15', 0, NULL, 1),
(5669, 'Bhavani', '27', '8925653997', '8428684129', 'S.G.Bhava75@gmail.com', '1998-05-07', 23, '2', '2', 'Srinivasan', 'Driver', 20000.00, 1, 0.00, 15000.00, 'West Tambaram', 'West Tambaram', '2108020008', '1', '1', 'upload_files/candidate_tracker/20047260535_0_Resume_Bhavani.pdf', NULL, '1', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No relevant Exp in Dot net WinForms, Exp into BPO Health care domain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 11:40:35', 1, '2021-08-03 05:43:02', 0, NULL, 1),
(5670, 'S.vinothini', '4', '7448374749', '7812815982', 'Vinothiniselvaraj3131999@gmali.com', '1999-03-31', 22, '1', '2', 'Selvaraj', 'Carbandar', 20000.00, 2, 10000.00, 15000.00, 'No395 sa colony 6th Street sharmanagar', 'No395 Sa Colony 6th Street sharmanagar', '2108020009', '', '2', 'upload_files/candidate_tracker/97336748907_Aarthi.doc.docx', NULL, '1', '2021-08-02', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Voice process, focusing only for the non voice openings', '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 12:01:45', 1, '2021-08-02 12:40:53', 0, NULL, 1),
(5671, 'Anitha.m', '20', '7871772743', '', 'anithamunusamy2199@gmail.com', '1999-01-02', 22, '1', '2', 'Munusamy.R', 'security officer', 10000.00, 1, 0.00, 15000.00, 'padur', 'padur', '2108020010', '', '1', 'upload_files/candidate_tracker/43240950922_Anitha RESUME.docx.pdf', NULL, '1', '2021-08-02', 0, '55558', '4', '33', NULL, 0.00, '', '0', NULL, '2', 'check for CRM, internal team reference but the distance -58km up and down', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 12:19:50', 1, '2021-08-02 12:27:13', 0, NULL, 1),
(5672, 'S.karthick Raja', '6', '6374770147', '9710562023', 'Cskt3597@gmail.com', '1995-05-11', 26, '2', '2', 'Sundar', 'Cooli', 10000.00, 4, 15000.00, 17.00, '2/8 Vanniyer mettu Street,iyyappan Thangal Ch-122', 'Chennai (iyyappan Thangal)', '2108020011', '1', '2', 'upload_files/candidate_tracker/17331095807_KARTHIKRAJA REUME-1.docx', NULL, '1', '2021-08-02', 0, '', '3', '59', '2021-08-05', 204000.00, '', '3', '2021-08-13', '1', 'Selected for Kannan Team with CTC 204000 includes PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-02 12:20:45', 60, '2021-08-04 03:28:31', 0, NULL, 1),
(5673, 'K.Raja', '4', '8667521065', '9790770086', 'alexander.raja95@gmail.com', '1995-08-15', 25, '1', '2', 'Uma.k', 'B.A. Tamil', 30000.00, 3, 13000.00, 15000.00, 'Arumbakkam', 'Pandy Bazer', '2108020012', '', '2', 'upload_files/candidate_tracker/45000305557_RAJA Resume (2).pdf', NULL, '1', '2021-08-02', 0, 'No', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has around 5yr exp, no product knowledge.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 12:21:09', 1, '2021-08-02 12:32:45', 0, NULL, 1),
(5674, 'Ananthi.R', '4', '7358780047', '7448501768', 'Ammuananthi16@gmail.com', '1998-05-15', 23, '1', '2', 'Raju', 'Eletrition', 20000.00, 1, 0.00, 15000.00, 'Thiruporur', 'Thiruporur', '2108020013', '', '1', 'upload_files/candidate_tracker/85396977301_Ananthi.docx', NULL, '1', '2021-08-02', 0, '55558', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location constraint - Up and down 76 kms, long back scheduled interview and not attende.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 12:23:42', 1, '2021-08-02 12:29:59', 0, NULL, 1),
(5675, '', '0', '7401217612', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108020014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-02 12:27:39', 0, NULL, 0, NULL, 1),
(5676, 'P.Pavithra', '4', '9677134911', '6383977902', 'p.pavithrapavithra@gmail.com', '2000-11-28', 20, '3', '2', 'N.Perumal', 'Coolie', 6500.00, 1, 0.00, 12000.00, 'tondiarpet', 'tondiarpet', '2108020015', '', '1', 'upload_files/candidate_tracker/44312352292_P.PAVITHRA.pdf', NULL, '1', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for non voice process', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 12:52:56', 1, '2021-08-02 01:31:28', 0, NULL, 1),
(5677, 'M..Saranya', '4', '8270989938', '9962169903', 'KKanisaranya@gmail.com', '1998-07-15', 23, '1', '2', 'R Murugan', 'Teacher', 6500.00, 1, 0.00, 12000.00, 'I.O.C Bus Stop tondiarpet', 'I.O.C bus stop tondiarpet', '2108020016', '', '1', 'upload_files/candidate_tracker/54206822501_Aarthi.doc.docx', NULL, '1', '2021-08-02', 0, 'Jobs', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 12:54:24', 1, '2021-08-02 01:50:08', 0, NULL, 1),
(5678, '', '0', '6374850863', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108020017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-02 01:00:09', 0, NULL, 0, NULL, 1),
(5679, 'V.sunil', '4', '8428074977', '8946036707', 'sunilhaddy583@gmail.com', '2000-04-14', 21, '3', '2', 'R.vijayan', 'Fisherman', 20000.00, 3, 0.00, 15000.00, 'No12 2nd Street ennore kuppam ennore Chennai-57', 'No12 2nd Street ennore kuppam ennore Chennai-57', '2108020018', '', '1', 'upload_files/candidate_tracker/34901196695_Resume SUNIL.pdf', NULL, '1', '2021-08-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very low voice and not bold', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 01:00:47', 1, '2021-08-02 01:13:45', 0, NULL, 1),
(5680, 'Faisal ahamed J', '2', '8098924514', '', 'faisalahamed5002@gmail.com', '1998-02-05', 23, '2', '2', 'Jahir Hussain S', 'Farmer', 20000.00, 2, 0.00, 10000.00, 'Pattukkottai', 'Chennai', '2108020019', '1', '1', 'upload_files/candidate_tracker/21527836808_resume_faisal (3).pdf', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Career Gap no individual learning,thinking a lot on the TxxampC seems not comfortable .Much comfortable with Python', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 01:01:38', 1, '2021-08-02 01:10:21', 0, NULL, 1),
(5681, 'Prakash', '6', '6379744136', '8122794541', 'Prakashavi139@gmail.com', '1997-11-13', 23, '2', '2', 'Parvathi', 'Teacher', 10000.00, 1, 0.00, 15000.00, 'Enmore', 'Ennore', '2108020020', '1', '1', 'upload_files/candidate_tracker/59151138083_PRAKASH RESUME.pdf', NULL, '1', '2021-08-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Suthagar rejected the profile.by mistake he scheduled the candidate for next level with me', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-02 01:04:06', 8, '2021-08-02 05:01:06', 0, NULL, 1),
(5682, 'Prakash', '4', '6329744136', '8122794541', 'Prakashavi139@gmail.com', '1997-11-13', 23, '3', '2', 'Parvathi', 'Teacher', 10000.00, 1, 0.00, 15000.00, 'Ennore', 'Ennore', '2108020021', '', '1', 'upload_files/candidate_tracker/51221980410_PRAKASH RESUME.pdf', NULL, '1', '2021-08-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 01:25:06', 1, '2021-08-02 01:27:41', 0, NULL, 1),
(5683, 'J.Angelus Cruz', '27', '9486577983', '8667429321', 'angelusmelchi91@gmail.com', '1999-03-30', 22, '2', '2', 'L.Johnson', 'Business', 30000.00, 2, 0.00, 20.00, 'Chengalpattu', 'Chengalpattu', '2108020022', '1', '1', 'upload_files/candidate_tracker/75752421363_melky resume.pdf', NULL, '1', '2021-08-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 01:35:49', 1, '2021-08-02 01:48:50', 0, NULL, 1),
(5684, 'Sukumar', '6', '9524264978', '', 'sugumar9524@gmail.com', '1998-12-30', 22, '3', '2', 'Jothivel', 'Driver', 12000.00, 1, 21000.00, 23000.00, 'Cuddalore', 'Chennai', '2108020023', '', '2', 'upload_files/candidate_tracker/40085868103_sukumar resume.docx', NULL, '1', '2021-08-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 02:38:40', 1, '2021-08-02 02:43:19', 0, NULL, 1),
(5685, 'Mohammad jahubar A', '27', '9962170763', '7299685995', 'jahubar5995@gmail.com', '1997-12-10', 23, '2', '2', 'M.Assanar', 'Salesman', 15000.00, 2, 0.00, 15000.00, 'Thirumazhisai', 'Thirumazhisai', '2108020024', '1', '1', 'upload_files/candidate_tracker/1111124346_Resume10.pdf', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Client Interview Rejected', '2', '1', '0', '1', '1', '0', '2', '2021-08-09', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 02:51:12', 1, '2021-08-02 03:02:42', 0, NULL, 1),
(5686, 'syed mohammad muzzammil', '2', '9952011139', '9940042667', 'muzzammilcareer21@gmail.com', '2000-09-11', 20, '2', '2', 'syed abdul wajid', 'n/a', 60000.00, 2, 0.00, 18000.00, 'chennai', 'chennai', '2108020025', '1', '1', 'upload_files/candidate_tracker/40088107662_MuzzammilResume.pdf', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,having knowledge in HTML CSS Javascript but not comfortable with TxxampC.Presuure handling xxamp Sustainability doubt', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 03:32:51', 1, '2021-08-02 03:49:32', 0, NULL, 1),
(5687, 'Shanthi V', '2', '9994143140', '9080434514', 'shanthiece19@gmail.com', '2000-08-19', 20, '2', '2', 'Veerasamy M', 'Farmer', 75000.00, 1, 0.00, 250000.00, '122, sivagiri,erode', 'Thuraipakkam', '2108020026', '1', '1', 'upload_files/candidate_tracker/48806993672_Shanthi_resume.pdf', NULL, '1', '2021-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '2 months Intern Exp .she holds an offer with net access for 15K salary and she expects for the more.Will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 03:33:35', 1, '2021-08-03 11:55:29', 0, NULL, 1),
(5688, 'J Angelus cruz', '27', '8667429321', '9486577983', 'angelusmelchi91@gmail.com', '1999-03-30', 22, '2', '2', 'L.Johnson', 'Business', 30000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2108020027', '1', '1', 'upload_files/candidate_tracker/92066596304_melky resume.pdf', NULL, '1', '2021-08-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 04:42:38', 1, '2021-08-02 04:45:04', 0, NULL, 1),
(5689, 'Mohamed musthak ameer ali', '27', '9791875485', '', 'Mustaqhasee@gmail.com', '1997-07-06', 24, '2', '2', 'Ameer ali', 'Private job', 5000.00, 2, 0.00, 150000.00, 'Tanjavur', 'Tanjore', '2108020028', '1', '1', 'upload_files/candidate_tracker/41772189422_musthak resume.pdf', NULL, '2', '2021-08-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 05:31:21', 1, '2021-08-02 05:34:15', 0, NULL, 1),
(5690, 'Dhilipkumar.s', '27', '8344034410', '', 'dhilikumarsdhilipkumars@gmail.com', '2002-03-14', 19, '2', '2', 'R.saravanan', 'Student', 15000.00, 1, 0.00, 18000.00, 'Trichy', 'Trichy', '2108020029', '1', '1', 'upload_files/candidate_tracker/91200715959_DHILIP RESUME 3.pdf', NULL, '3', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Client Round Rejected', '2', '2', '0', '1', '1', '0', '2', '2021-08-12', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 06:10:58', 1, '2021-08-03 03:53:31', 0, NULL, 1),
(5691, 'yamini r', '4', '6380593346', '', 'yaminiramadass@gmail.com', '2000-08-09', 20, '2', '1', 'ramadass', 'auto driver', 12000.00, 2, 0.00, 10000.00, 'arakkonam', 'arakkonam', '2108020030', '1', '1', 'upload_files/candidate_tracker/42059945952_YAMINI word doct11.pdf', NULL, '1', '2021-08-06', 0, '', '3', '59', '2021-08-10', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location with Cash mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-02 07:05:13', 60, '2021-08-10 06:41:07', 0, NULL, 1),
(5692, 'Santhosh kumar', '2', '9655227366', '', 'Santhoshkumarbabu88@gmail.com', '1995-01-21', 26, '2', '2', 'Arumugasamy', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2108020031', '1', '1', 'upload_files/candidate_tracker/16589175015_SANTHOSH KUMAR.A_BE.pdf', NULL, '1', '2021-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC,CCNA certified candidate,no basic in our skills will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 07:27:00', 1, '2021-08-02 07:40:09', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5693, 'indra j', '4', '9344001197', '', 'indrajayachandran11@gmail.com', '2000-03-11', 21, '2', '2', 'jayanchandran', 'tailore', 30000.00, 2, 0.00, 12000.00, 'thiruvalangadu', 'Thiruvalangadu', '2108020032', '1', '1', 'upload_files/candidate_tracker/10949429643_INDRA.J Resume..pdf', NULL, '1', '2021-08-06', 0, '', '3', '59', '2021-08-02', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location in cash mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-02 08:47:31', 60, '2021-08-10 06:42:44', 0, NULL, 1),
(5694, 'Sivaprakash.m', '27', '9688705970', '', 'Sivaprakash8091@gmail.com', '2000-07-20', 21, '2', '2', 'Murugan.m', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2108020033', '1', '1', 'upload_files/candidate_tracker/58658153522_RESUME OF SIVAPRAKASH.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, not much strong into technical, attended 2nd level with the client and got rejected', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 09:37:07', 1, '2021-08-05 09:00:32', 0, NULL, 1),
(5695, 'Mohd Sayeed', '5', '7997616938', '', 'mohdsayeed1328@gmail.com', '1996-09-23', 24, '2', '2', 'mohammed sardar', 'working', 20000.00, 2, 24000.00, 20000.00, 'hyderabad', 'akthapur', '2108030001', '1', '2', 'upload_files/candidate_tracker/22256735363_sayeed resume july33.pdf', NULL, '2', '2021-08-04', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-03 10:48:27', 1, '2021-08-03 10:51:35', 0, NULL, 1),
(5696, 'S.prabhu', '6', '8608290338', '8122833724', 'prabhudass8608@gmail.com', '1999-12-16', 21, '2', '2', 'Seeralan', 'Nil', 8000.00, 1, 0.00, 14000.00, 'Tambaram', 'Tambaram', '2108030002', '1', '1', 'upload_files/candidate_tracker/98717447724_Prabju_resume.docx', NULL, '1', '2021-08-03', 0, '', '3', '59', '2021-08-05', 156000.00, '', '5', '1970-01-01', '1', 'Selected for Suthagar team includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-03 10:54:44', 60, '2021-08-03 06:43:11', 0, NULL, 1),
(5697, 'Sathish kumar', '6', '8678978758', '9514049589', 'Sathishkumarv13003@gmail.com', '2006-08-03', 0, '1', '2', 'Vijayan', 'Nill', 100000.00, 2, 14000.00, 20000.00, 'No 311,emmar apartment, tondirepet, chennai', 'No 311,emmar, apartments, tondirepet, chennai', '2108030003', '', '2', 'upload_files/candidate_tracker/53733093780_Sathish.docx', NULL, '1', '2021-08-03', 3, 'Jobs', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed with the candidate and asked him to share the payslio ,but no reply and not responding to the calls too.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-03 10:56:18', 60, '2021-08-03 06:35:41', 0, NULL, 1),
(5698, 'Shabeer', '6', '7010947964', '9566199442', 'Shabeerahamed662@gmail.com', '1994-09-21', 26, '2', '2', 'Mumthaj', 'Nil', 35000.00, 2, 16000.00, 17000.00, 'Mangadu ch122', 'Mangadu ch122', '2108030004', '1', '2', 'upload_files/candidate_tracker/2481408135_SHABEER_2021.NEW.docx', NULL, '3', '2021-08-03', 2, '', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'Expct highe salary but not fit for that.. and also speaking not fluent', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-03 11:03:24', 1, '2021-08-03 11:12:43', 0, NULL, 1),
(5699, 'Manoj Kiran', '5', '7799626266', '', 'manojkiran7991@gmail.com', '1996-04-28', 25, '2', '2', 'sambasivarao', 'farmer', 30000.00, 1, 15000.00, 18000.00, 'hyderabad', 'komapally', '2108030005', '1', '2', 'upload_files/candidate_tracker/55998639299_MANOJ KIRAN cv.pdf', NULL, '2', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Responses from the candidate for a long and we dropped', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-03 11:10:45', 1, '2021-08-03 11:13:11', 0, NULL, 1),
(5700, 'Mohana Priya. P', '27', '6382733076', '', 'priyasurvesh7944@gmail.com', '2000-07-07', 21, '2', '2', 'G. Padmanaban', 'Labourer', 7000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2108030006', '1', '1', 'upload_files/candidate_tracker/69047258664_Resume.mohanapriyanew1.doc', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'no basic knowledge in Dotnet, fresher profile having knowledge in relates to c,C++.Will not suits for client requirement', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 11:11:00', 1, '2021-08-03 11:21:03', 0, NULL, 1),
(5701, 'Srinivasan', '4', '9566116606', '9500006210', 'Srini270181@gmail.com', '2000-05-29', 21, '2', '2', 'Thirunavukkarasu', 'Business', 50000.00, 1, 0.00, 10000.00, 'Egmore', 'Egmore', '2108030007', '1', '1', 'upload_files/candidate_tracker/27981783159_resumae.pdf', NULL, '1', '2021-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking only for intern, college yet to complete', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-03 11:50:29', 1, '2021-08-03 12:01:17', 0, NULL, 1),
(5702, '', '0', '9025943026', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108030008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-03 12:09:24', 0, NULL, 0, NULL, 1),
(5703, 'R.priyanga', '4', '9751779040', '', 'Priyangacse97@gmail.com', '1997-03-15', 24, '3', '2', 'P.Ramesh', 'Farmer', 15000.00, 2, 0.00, 13000.00, 'Mayiladuthurai', 'Chennai', '2108030009', '', '2', 'upload_files/candidate_tracker/92194869515_Share Resume_R.Priyanga_Format1.pdf', NULL, '1', '2021-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication, internal team reference, will not handle the pressure. Sustainability doubts\n', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-03 12:09:42', 1, '2021-08-03 12:55:05', 0, NULL, 1),
(5704, 'jayalakshmi k', '27', '6382993405', '9500293352', 'baranika122@gmail.com', '2001-03-28', 20, '2', '2', 'kandasamy s', 'business', 25000.00, 1, 0.00, 20000.00, 'kumbakonam', 'kumbakonam', '2108030010', '1', '1', 'upload_files/candidate_tracker/11280857354_jl.docx', NULL, '2', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much into Winform, Fresher have a knowledge in relates to webforms', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 12:23:18', 1, '2021-08-03 12:55:46', 0, NULL, 1),
(5705, 'Aravinth.l', '4', '9962687864', '9597360685', 'aravintha733@gmail.com', '2001-08-29', 19, '2', '2', 'Loganathan', 'Water supply', 23000.00, 0, 0.00, 13000.00, '17/4 1st y.m.c.a.kuppam tondiarpet chennai 81', '17/4 1st Y.M.C.A.Kuppam Tondiarpet Chennai 81', '2108030011', '1', '1', 'upload_files/candidate_tracker/39288771049_Adobe Scan Aug 03, 2021.pdf', NULL, '3', '2021-08-03', 0, '', '3', '59', '2021-08-05', 120000.00, '', '4', '2022-02-23', '1', 'Selected for Elite RE with CTC 120000 includes PF/ESI/PT', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-03 12:44:32', 60, '2021-08-04 06:49:16', 0, NULL, 1),
(5706, 'Kavin Sundar Raj a n', '4', '7305558204', '9445227485', 'Kavinksr07@gmail.com', '2001-11-23', 19, '2', '2', 'Narayanasamy d', 'Government staff', 40000.00, 1, 0.00, 13000.00, '19/10 tondiarnagermain St, tondiarpet, chennai-81.', '19/10 Tondiarnagermain St, Tondiarpet, Chennai-81', '2108030012', '1', '1', 'upload_files/candidate_tracker/46951764717_Adobe Scan Aug 03, 2021 (1).pdf', NULL, '3', '2021-08-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'yet to complete one more semester ,will not fit for our telesales profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-03 12:45:07', 7, '2021-08-03 05:22:43', 0, NULL, 1),
(5707, 'vidhyalakshmi', '27', '7092590226', '6383767928', 'vidhyasekar1204@gmail.com', '2001-04-12', 20, '2', '2', 'V.K.Sekar', 'Weaver', 25000.00, 2, 0.00, 200000.00, 'Kumbakonam', 'Kumbakonam', '2108030013', '1', '1', 'upload_files/candidate_tracker/19167907669_Resume (1).docx', NULL, '3', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much strong in DotNet.,will not sustain for a long ,relocation doubtsxquot\n', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 12:54:11', 1, '2021-08-03 12:58:34', 0, NULL, 1),
(5708, 'Gnanavel V', '27', '6374108853', '', 'gnanavelselvan@gmail.com', '1998-11-28', 22, '2', '2', 'Vetrichselvan M', 'Farmer', 24000.00, 1, 0.00, 10000.00, 'Chennai', 'Trichy', '2108030014', '1', '1', 'upload_files/candidate_tracker/27036800108_1624340732242Resume_GNANAVEL.docx', NULL, '3', '2021-08-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Winform opening, looking specifically for Web development ASP.Net. His sister is guiding him towards the ASP.Net', '2', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 01:04:22', 1, '2021-08-03 01:10:05', 0, NULL, 1),
(5709, 'dilli babu', '23', '8121565530', '', 'dillibabue1992@gmail.com', '1992-10-20', 28, '2', '1', 'eakambaram', 'chennai', 6000.00, 2, 1.50, 3.20, 'Chennai', 'Chennai', '2108030015', '1', '2', 'upload_files/candidate_tracker/64854683342_ui and ux desinger.doc', NULL, '1', '2021-08-11', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Experienced but no basic knowledge in UI/UX ,Salary expectation is very high. Will not sustain with us ', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 03:07:59', 1, '2021-08-08 07:27:19', 0, NULL, 1),
(5710, '', '0', '8825531494', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108030016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-03 04:03:04', 0, NULL, 0, NULL, 1),
(5711, 'VISWANATHAN R', '27', '8508820142', '', 'Vishwaprem.cse@gmail.com', '1997-06-20', 24, '2', '2', 'RAJAN B', 'Farmer', 18000.00, 1, 14000.00, 17000.00, 'Cuddaloer', 'Tharamani', '2108030017', '1', '2', 'upload_files/candidate_tracker/57445456636_VISHWA_RESUME.docx', NULL, '1', '2021-08-05', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge in WinForms,. very slow seems not  much importance with the job.Will not sustain for a long.Not suits for our client', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 04:17:56', 1, '2021-08-03 09:38:25', 0, NULL, 1),
(5712, 'Sardar Simranjeet Singh', '5', '9494998586', '', 'singhsardarsimranjeet10@gmail.com', '1999-02-24', 22, '2', '2', 'sardar harinder', 'real estate agent', 50000.00, 1, 20000.00, 23000.00, 'hydrabad', 'maduranagar', '2108030018', '1', '2', 'upload_files/candidate_tracker/57448373586_MANOJ KIRAN cv.pdf', NULL, '2', '2021-08-04', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Kindly Refix', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-03 04:43:36', 1, '2021-08-03 04:46:14', 0, NULL, 1),
(5713, 'r.s.vishall', '27', '9444552430', '', 'vishallrajaram@gmail.com', '1994-10-08', 26, '2', '2', 's.rajaram', 'accounts manager', 85000.00, 0, 17500.00, 21000.00, 'chennai', 'Chennai', '2108030019', '1', '2', 'upload_files/candidate_tracker/40248566637_Vishall - Resume1.pdf', NULL, '1', '2021-08-05', 25, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Client Round Reject', '2', '2', '0', '1', '1', '0', '2', '2021-08-09', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 04:49:25', 1, '2021-08-03 04:56:01', 0, NULL, 1),
(5714, 'Faisal Khan', '5', '7097121555', '', 'faisalshah014@gmail.com', '1999-10-22', 21, '2', '2', 'Ayub Shah Khan', 'working', 40000.00, 1, 16000.00, 20000.00, 'hyderabad', 'palaknoma', '2108030020', '1', '2', 'upload_files/candidate_tracker/90445300793_documents 1.docx', NULL, '2', '2021-08-04', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Old Resume', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-03 05:04:27', 1, '2021-08-03 05:09:20', 0, NULL, 1),
(5715, 'Vigneshwaran.A', '27', '9994363188', '9080986600', 'vigneshwaranpaavai@gmail.com', '1998-06-19', 23, '2', '2', 'Sellammal', 'Labour', 10000.00, 1, 12000.00, 15000.00, '5/224, Rajiv Gandhi Nagar,Murugan Kovil,namakkal', '36, periyaar street, tambaram sanitarium', '2108030021', '1', '2', 'upload_files/candidate_tracker/3793154936_A.vigneshwaran_CV.docx word.pdf', NULL, '2', '2021-08-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 05:49:59', 1, '2021-08-03 06:11:02', 0, NULL, 1),
(5716, '', '0', '8508820152', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108030022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-03 09:12:47', 0, NULL, 0, NULL, 1),
(5717, 'Priyanka', '4', '7397428317', '7299717719', 'Priyankavijaykumar00@gmail.com', '2000-08-31', 20, '2', '2', 'Vijay kumar', 'Driver', 20000.00, 1, 9500.00, 11000.00, 'Taramani', 'Taramani', '2108040001', '1', '2', 'upload_files/candidate_tracker/92178097097_Priyanka%20Vijaykumar.docx', NULL, '1', '2021-08-04', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Hold on long pending', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-04 10:23:19', 1, '2021-08-04 10:34:33', 0, NULL, 1),
(5718, 'Mathivathani', '13', '9585196046', '9047321730', 'mathivathani70@gmail.com', '2006-08-04', 0, '3', '2', 'Sakthivel', 'Farmer', 60000.00, 2, 0.00, 15000.00, 'Ariyalur', 'Chennai', '2108040002', '', '1', 'upload_files/candidate_tracker/38696126460_MATHISAKTHI.CV.pdf', NULL, '1', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No relevant Exp,Focus much into Java Python\n', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-04 10:26:14', 1, '2021-08-04 10:35:05', 0, NULL, 1),
(5719, 'Naveenkumar', '4', '8124818856', '9003623570', 'naveenkumarktm390@gmail.com', '2001-04-12', 20, '2', '2', 'Ravichandran', 'Hotel Supervisor', 20000.00, 1, 0.00, 10000.00, 'Trichy', 'Nanganallur', '2108040003', '1', '1', 'upload_files/candidate_tracker/64587316082_naveen indigo resume.docx.pdf', NULL, '1', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No relevant Exp, Fresher, Focusing on Aviation and for the time being looking for a job', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-04 11:21:52', 1, '2021-08-04 11:41:33', 0, NULL, 1),
(5720, 'B.JAYASEELAN', '11', '7871805090', '', 'b.jayaseelan72@gmail.com', '2000-02-07', 21, '3', '2', 'V.BALACHANDAR', 'Building contractor', 20000.00, 2, 0.00, 20000.00, 'Minjur', 'Minjur', '2108040004', '', '1', 'upload_files/candidate_tracker/91303446356_C4036.pdf', NULL, '1', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Yet to complete College 1 more year to go,Distance toolong around 72 kms up and down', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-04 11:55:07', 1, '2021-08-04 12:01:13', 0, NULL, 1),
(5721, 'Prathap.d', '27', '6369209053', '9788884649', 'prathapsingh907@gmail.com', '2001-05-13', 20, '2', '2', 'Dahanaraj', 'Buisness', 10000.00, 3, 0.00, 20000.00, 'Tiruppur', 'Chennai', '2108040005', '1', '1', 'upload_files/candidate_tracker/72269035167_PRATHAP. D.docx', NULL, '1', '2021-08-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Client round rejected', '2', '1', '', '1', '1', '', '2', '2021-08-09', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 12:05:44', 60, '2021-08-07 06:02:11', 0, NULL, 1),
(5722, 'Chenchu Anil Kumar', '5', '7013171860', '', 'anilakhi777@gmail.com', '1997-03-06', 24, '2', '2', 'mallaiah', 'farmer', 25000.00, 1, 21000.00, 25000.00, 'hyderabad', 'uppal', '2108040006', '1', '2', 'upload_files/candidate_tracker/30511691420_Chenchu Anil Kumar_Resume_Format2.pdf', NULL, '2', '2021-08-05', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-04 12:17:00', 1, '2021-08-04 12:19:25', 0, NULL, 1),
(5723, 'Avinash Chintakayala', '5', '9618373634', '', 'avinashchintakayala333@gmail.com', '2006-08-04', 15, '2', '2', 'intakayalagulu', 'rtd', 80000.00, 2, 0.00, 20000.00, 'hyderabad', 'alwal', '2108040007', '1', '1', 'upload_files/candidate_tracker/22725234950_Resume (13).pdf', NULL, '2', '2021-08-05', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Not Attended', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-04 12:56:09', 1, '2021-08-04 03:26:19', 0, NULL, 1),
(5724, 'Augustine', '4', '7397405702', '6381706880', 'augustinerocksstar@gmail.com', '1999-09-01', 21, '3', '2', 'Anbuvanan.S', 'Pastor', 400000.00, 3, 0.00, 20000.00, 'Vellavedu', 'Vellavedu', '2108040008', '', '1', 'upload_files/candidate_tracker/33703735559_pi.pdf', NULL, '1', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non Voice', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-04 02:39:00', 1, '2021-08-04 02:47:58', 0, NULL, 1),
(5725, 'YERUKAMAGGI DEVDAS', '5', '9704419182', '', 'DASUDEVA023@GMAIL.COM', '1994-10-28', 26, '2', '1', 'ramya', 'house wife', 40000.00, 3, 14000.00, 20000.00, 'hyderabad', 'shamshabad', '2108040009', '1', '2', 'upload_files/candidate_tracker/53551171437_Das Nonfood.doc', NULL, '2', '2021-08-05', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for the Job', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-04 03:28:21', 1, '2021-08-04 03:30:18', 0, NULL, 1),
(5726, 'Velan Tennison . C', '2', '8667703871', '9688383858', 'velantennison1998@gmail.com', '1998-03-10', 23, '2', '2', 'Chandrasekaran', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Tenkasi', 'Tenkasi', '2108040010', '1', '1', 'upload_files/candidate_tracker/46969775192_Velan.pdf', NULL, '2', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Salary Expectation is very high, In native itself he earns around 10k and left only for the package', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 03:44:56', 1, '2021-08-04 03:53:00', 0, NULL, 1),
(5727, 'Ranjith BN', '2', '7010160860', '', 'ranjithbnr02@email.com', '2000-05-02', 21, '2', '2', 'Narasaiah B', 'Driver', 12000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2108040011', '1', '1', 'upload_files/candidate_tracker/10730023122_Ranjith_newresume.docx', NULL, '3', '2021-08-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no knowledge in the basics,no ideas on MERN,2020 passed out and Didnxquott show any interest in learning the technologies. Sustainability Doubts', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-04 03:48:35', 50, '2021-08-04 04:00:00', 0, NULL, 1),
(5728, 'shamli', '11', '7358675863', '', 'shamliharibabu03@gmail.com', '1997-03-25', 24, '2', '2', 'v.haribabu', 'government employee', 45000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2108040012', '1', '1', 'upload_files/candidate_tracker/34542903388_shamli resume-(updated).pdf', NULL, '1', '2021-08-05', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected for the recruiter position with  salary 5000 for 3months + 15 days  after that salary will be decided', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 03:55:20', 1, '2021-08-04 04:12:40', 0, NULL, 1),
(5729, 'Jayasurya d', '2', '9043379400', '', 'Jayasuryamuthamizharasi@gmail.com', '1999-09-20', 21, '2', '2', 'Durairaj s', 'Retired professor', 50000.00, 2, 0.00, 15000.00, 'Cheyyar', 'Cheyyar', '2108040013', '1', '1', 'upload_files/candidate_tracker/44337112892_jayasurya.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Having knowledge in React.JS, but not comfortable with TxxampC and the salary expectation is min 12K as a fresher', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 03:58:21', 60, '2021-08-06 10:00:44', 0, NULL, 1),
(5730, 'Jaichandar D', '2', '9042879400', '', 'jaichandarmuthamizh@gmail.com', '1999-09-20', 21, '2', '2', 'Durairaj S', 'Retired professor', 50000.00, 2, 0.00, 15000.00, 'Cheyyar', 'Cheyyar', '2108040014', '1', '1', 'upload_files/candidate_tracker/40930459638_Jaichandar.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Profile is Good,not open with the TxxampC will not sustain for a long and  the salary expectation is very high.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 04:07:56', 1, '2021-08-04 04:15:58', 0, NULL, 1),
(5731, 'Pavithran M', '2', '9952271809', '', 'mpavithran1998@gmail.com', '1998-04-18', 23, '2', '2', 'Muniyandi N', 'Daily wager', 10000.00, 1, 0.00, 15000.00, 'Srivilliputtur', 'Perugalathur', '2108040015', '1', '1', 'upload_files/candidate_tracker/79769669008_PAVITHRAN.pdf', NULL, '1', '2021-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much comfort with the TxxampC ,need to check with his family.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 04:10:29', 50, '2021-08-09 10:21:40', 0, NULL, 1),
(5732, 'Mallikumar', '2', '9790321115', '', 'mallikumar1998@gmail.com', '1998-05-19', 23, '2', '2', 'Sundaram', 'Power loom', 30000.00, 1, 25000.00, 35000.00, 'Namakkal', 'Namakkal', '2108040016', '1', '2', 'upload_files/candidate_tracker/80889918731_Malli_resume2021.pdf', NULL, '1', '2021-08-10', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 04:36:45', 1, '2021-08-04 04:45:17', 0, NULL, 1),
(5733, 'Santhosh S', '23', '9043766219', '', 'santhosh111294@gmail.com', '1994-12-11', 26, '2', '2', 'Arulmani S (mother)', 'Housewife', 450000.00, 2, 336000.00, 650000.00, 'Chennai', 'Chennai', '2108040017', '1', '2', 'upload_files/candidate_tracker/75378934453_Santhosh Resume.pdf', NULL, '1', '2021-08-07', 60, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '60 Days notice, Salary expectation is around 6.5 LPA. Working in CSS. Recently stepped into React.JS', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 04:44:37', 1, '2021-08-04 05:17:01', 0, NULL, 1),
(5734, 'tarun kumar', '5', '9441952486', '', 'tarunteja1996@gmail.com', '1996-07-26', 25, '2', '2', 'surender', 'govt employee', 62000.00, 1, 0.00, 15000.00, 'hyderabad', 'uppal', '2108040018', '1', '1', 'upload_files/candidate_tracker/8396574831_B.TARUN KUMAR general.pdf', NULL, '2', '2021-08-05', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Not fit for sales', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-04 04:46:02', 1, '2021-08-04 04:49:12', 0, NULL, 1),
(5735, 'Vjg Gowtham', '14', '9087432974', '', 'vjggowthaman@gmail.com', '1998-12-23', 22, '2', '2', 'Jeevanandham V', 'Farmers', 3000.00, 2, 0.00, 100000.00, 'MELATHIRUPPANTHURUTHI', 'MELATHIRUPPANTHURUTHI', '2108040019', '1', '1', 'upload_files/candidate_tracker/11656348992_1628066407627_gowthaman j resume.docx', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Knowledge,Attended Interviews And Not Joined Due To Service Agreement With Previous Offer.Not Comfortable With Our TxxampC\n', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 05:43:00', 1, '2021-08-04 05:45:54', 0, NULL, 1),
(5736, '', '0', '9176614576', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108040020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-04 07:14:34', 0, NULL, 0, NULL, 1),
(5737, '', '0', '9360170459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108040021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-04 10:49:32', 0, NULL, 0, NULL, 1),
(5738, 'VISHNU A', '11', '8489328460', '8072000921', 'vishnu19962729@gmail.com', '1996-02-27', 25, '2', '2', 'Arumugam V', 'Driver', 12000.00, 1, 0.00, 20000.00, 'Puducherry', 'Puducherry', '2108050001', '1', '1', 'upload_files/candidate_tracker/66849421271_Vishnu MBA Cv.pdf', NULL, '3', '2021-08-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1008', '0', NULL, NULL, NULL, 1, '2021-08-05 10:07:56', 1, '2021-08-05 10:17:36', 0, NULL, 1),
(5739, 'Krishna Kumar', '14', '9385449465', '', 'sanayash3108@gmail.com', '1999-04-10', 22, '2', '2', 'Shanmugavel', 'Agriculture', 3000.00, 2, 0.00, 15000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2108050002', '1', '1', 'upload_files/candidate_tracker/93102384711_krishnakumar resume-converted.pdf', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Knowledge,Attended Interviews And Not Joined Due To Service Agreement With Previous Offer.Not Comfortable With Our TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 10:18:49', 1, '2021-08-05 10:23:16', 0, NULL, 1),
(5740, 'S.manikandan', '13', '7826897597', '', 'Manisami461@gmail.com', '1999-06-10', 22, '2', '2', 'V.saminathan', 'Agriculture', 3000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2108050003', '1', '1', 'upload_files/candidate_tracker/55009263450_mani.doc', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Knowledge,Attended Interviews And Not Joined Due To Service Agreement With Previous Offer.Not Comfortable With Our TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 10:19:32', 1, '2021-08-05 01:18:43', 0, NULL, 1),
(5741, 'Thendral vendhan', '14', '7639789751', '', 'Sltthendral@gmail.com', '1998-06-10', 23, '2', '2', 'S. Lakshmanan', 'Farmee', 8000.00, 3, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2108050004', '1', '1', 'upload_files/candidate_tracker/70953223715_THENDRAL RESUME.doc', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills knowledge,attended interviews and not joined due to Service Agreement with previous offer.Not comfortable with our TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 10:19:49', 1, '2021-08-05 10:26:01', 0, NULL, 1),
(5742, 'Nathiya Lakshmanan', '4', '6380896342', '7397349477', 'nathiyasri21322@gmail.com', '1998-06-09', 23, '1', '2', 'Lakshmanan N', 'Watch man', 12000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2108050005', '', '2', 'upload_files/candidate_tracker/16332830606_Nathiya new resume.pdf', NULL, '1', '2021-08-05', 0, 'Jobs', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for this profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-05 10:33:26', 60, '2021-08-05 03:52:36', 0, NULL, 1),
(5743, 'Keerthana', '4', '7358352976', '9566009647', 'keerthanaofficial21@gmail.com', '1998-04-21', 23, '1', '2', 'Rajkumar', 'Xerox business', 5000.00, 2, 13500.00, 16000.00, 'Chennai', 'Chennai', '2108050006', '', '2', 'upload_files/candidate_tracker/49532105332_keerthu resume1.pdf', NULL, '1', '2021-08-05', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No relevant Exp Fully into non voice process,will not handle our pressure.Not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-05 10:35:41', 1, '2021-08-05 10:41:36', 0, NULL, 1),
(5744, '', '0', '8825805636', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108050007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-05 10:41:44', 0, NULL, 0, NULL, 1),
(5745, 'aravindan n', '6', '9171715167', '', 'aravindan28n@gmail.com', '1993-11-28', 27, '1', '2', 'nagendran', 'auto driver', 12000.00, 1, 0.00, 17000.00, 'chennai', 'saligramam', '2108050008', '', '1', 'upload_files/candidate_tracker/47054327513_New CV 2021 (1).pdf', NULL, '1', '2021-08-05', 0, 'p1184', '3', '59', '2021-08-09', 204000.00, '', '3', '2021-08-06', '1', 'Selected for Kannan Team, internal Team reference with  CTC  204000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-05 10:54:07', 60, '2021-08-05 06:37:57', 0, NULL, 1),
(5746, 'Naveen Kumar.pulipati', '5', '8008307333', '', 'Naveen.pulipati94@gmail.com', '1994-11-08', 26, '2', '2', 'pulipati ramesh kumar', 'business man', 150000.00, 1, 25000.00, 30000.00, 'hyderabad', 'begumpet', '2108050009', '1', '2', 'upload_files/candidate_tracker/53494592872_naveen resume (3).pdf', NULL, '2', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is OK, and he is not open or the sales profile. He is not ready to make calls and focus only on the salary. No sustainability in his previous experiences too.', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-05 11:05:06', 1, '2021-08-05 11:07:06', 0, NULL, 1),
(5747, 'Dharmendra', '11', '8925761954', '8682834294', 'dharmendra1491@gmail.com', '1991-02-14', 30, '3', '1', 'Arulmurugan alish ayyaru', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Madurai', 'Egmore', '2108050010', '', '1', 'upload_files/candidate_tracker/59675227937_dharma 1419 final.docx', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Poor Communication,no basic ideas in the recruitment,career gap,having his own business and will not sustain for a long', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-05 11:07:43', 1, '2021-08-05 11:12:22', 0, NULL, 1),
(5748, 'hariharan s', '2', '9894826404', '9842409404', 'hari73118@gmaiil.com', '1999-05-03', 22, '2', '2', 'sathiya moorthy c', 'fresher', 40000.00, 1, 0.00, 20000.00, 'chennai', 'thanjavur', '2108050011', '1', '1', 'upload_files/candidate_tracker/66208010707_Hariharan_S_Resume_15-07-2021-17-19-58 (1).pdf', NULL, '1', '2021-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Basic Knowledeg In React, Requested time To Check With His Family and didnt turn back with the response', '2', '1', '0', '1', '1', '0', '2', '2021-08-16', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 11:09:02', 1, '2021-08-05 11:14:39', 0, NULL, 1),
(5749, 'anand', '2', '9003325013', '', 'anand.kva00@gmail.com', '1998-07-25', 23, '2', '2', 'kumar', 'gold Smith', 13000.00, 2, 0.00, 16000.00, 'mayiladuthurai', 'chennai', '2108050012', '1', '1', 'upload_files/candidate_tracker/73570518668_Anand Kumar\'s Resume - MERN Stack Developer.pdf', NULL, '3', '2021-08-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Having Exp in Non It domain for 1.5+ yrs and looking for opportunities in IT Mern Stack but his expectation is very high with min salary of 12K.Sustainability doubts with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 11:35:49', 1, '2021-08-06 03:08:13', 0, NULL, 1),
(5750, 'Charul Rawat', '5', '7013062796', '', 'charulrawat1996@gmail.com', '1996-08-16', 24, '2', '2', 'sharma', 'sub inspector', 80000.00, 1, 0.00, 15000.00, 'hyderabad', 'vanasthalipuram', '2108050013', '1', '1', 'upload_files/candidate_tracker/65706787141_Charul rawat -RESUME-.pdf', NULL, '2', '2021-08-06', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Not Attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-05 11:39:18', 1, '2021-08-05 11:41:27', 0, NULL, 1),
(5751, 'ramesh shanmugam', '27', '9489038232', '', 'shanramesh4@gmail.com', '1998-10-20', 22, '2', '2', 'chitra', 'house wife', 15000.00, 2, 0.00, 18000.00, 'Krishnagiri', 'Krishnagiri', '2108050014', '1', '1', 'upload_files/candidate_tracker/88277571278_Ramesh resume.pdf', NULL, '2', '2021-08-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Dotnet but the Expectation is high and sustainability doubts on the profile', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 01:04:04', 1, '2021-08-05 01:07:34', 0, NULL, 1),
(5752, 'Aravindhan.S', '2', '9500930461', '', 'aravindhansampath002@gmail.com', '1997-08-29', 23, '2', '2', 'Sampath kumar', 'Supervisor', 20000.00, 1, 0.00, 15000.00, 'Ooty', 'Ooty', '2108050015', '1', '1', 'upload_files/candidate_tracker/76569216320_aravindhan_resume.pdf', NULL, '2', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate seems good. basic knowledge in React.JS, Currently into internship in coimbatore and the salary expectation is very high.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 03:24:30', 1, '2021-08-05 03:27:49', 0, NULL, 1),
(5753, 'CHERUKURI HARIKRISHNA', '5', '9700255265', '', 'harikrishnanaidu1997@gmail.com', '1997-11-20', 23, '2', '2', 'venkatrama reddy', 'farmer', 40000.00, 2, 22000.00, 20000.00, 'hyderabad', 'gachibowli', '2108050016', '1', '2', 'upload_files/candidate_tracker/57850888109_Hari Resume.pdf', NULL, '2', '2021-08-06', 0, '', '3', '59', '2021-08-09', 231000.00, '', '2', '1970-01-01', '1', 'Selected for Veben Team in Hyderabad with CTC 231000 includes PF/ESI/PT', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-05 03:28:33', 60, '2021-08-06 02:58:47', 0, NULL, 1),
(5754, 'Srimathi', '13', '6369036639', '', 'jsrimathi1999@gmail.com', '1998-07-30', 23, '2', '2', 'Jayakumar', 'Cooli', 6000.00, 2, 17000.00, 22000.00, 'Trichy', 'Trichy', '2108050017', '1', '2', 'upload_files/candidate_tracker/92556949609_SRIMATHI JOVETECH new.pdf', NULL, '2', '2021-08-07', 15, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '3', '0', '2', '2021-08-12', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 03:51:46', 1, '2021-08-05 03:56:09', 0, NULL, 1),
(5755, 'sandeep kumar', '5', '9912181999', '', 'jinnasr512@gmail.com', '1991-04-14', 30, '2', '2', 'sudhakar', 'rtd', 25000.00, 1, 23000.00, 35000.00, 'hyderabad', 'ecil', '2108050018', '1', '2', 'upload_files/candidate_tracker/32689395056_Sandeep Reddy CV.doc', NULL, '2', '2021-08-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-05 04:23:33', 1, '2021-08-05 04:26:01', 0, NULL, 1),
(5756, 'r.manikandan', '13', '9944356689', '', 'manikandan53557@gmail.com', '2000-01-05', 21, '2', '2', 'g.rajendran', 'driver', 100000.00, 1, 0.00, 10000.00, 'ariyalur', 'ariyalur', '2108050019', '1', '1', 'upload_files/candidate_tracker/84129075746_Manikandan_Resume.pdf.pdf', NULL, '3', '2021-08-06', 0, '', '4', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task was Completed', '2', '1', '', '4', '5', '', '2', '2021-08-09', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 05:26:56', 60, '2021-08-06 02:37:03', 0, NULL, 1),
(5757, '', '0', '8008614728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108050020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-05 06:29:03', 0, NULL, 0, NULL, 1),
(5758, 'Tamizhselvan N', '22', '8778997702', '', 'nrtamil3@gmail.com', '1997-11-27', 23, '2', '2', 'Neethirajan A', 'Photographer', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2108050021', '1', '1', 'upload_files/candidate_tracker/47910185229_Tamizhselvan\'s Resume.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good, no experience in Digital Marketing.2 yrs career gap but the salary expectation is very high', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 06:47:06', 1, '2021-08-05 06:52:27', 0, NULL, 1),
(5759, 'A.selva', '24', '7540083767', '9025097514', 'Selvashiva0075@gmail.com', '1997-03-22', 24, '1', '2', 'Jaya.A', 'Business', 20000.00, 1, 12000.00, 15000.00, 'Velachery chennai', 'Velachery chennai', '2108060001', '', '2', 'upload_files/candidate_tracker/25874276916_1628172814721_SELVA. A - Resume-converted.pdf', NULL, '2', '2021-08-06', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-06 09:56:26', 1, '2021-08-06 10:48:22', 0, NULL, 1),
(5760, 'KARNAN S', '14', '9600732850', '', 'karnankarnan850@gmail.com', '2006-08-06', 0, '2', '2', 'T.SRIDHAR', 'Former', 72000.00, 3, 0.00, 20000.00, 'Chidambaram', 'Chidambaram', '2108060002', '1', '1', 'upload_files/candidate_tracker/90719941294_Karnan Resume-converted.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not a relevant profile, just looking for any job.No Focus in the domain', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-08-06 10:27:44', 1, '2021-08-06 10:34:31', 0, NULL, 1),
(5761, 'Kumaravel B', '4', '7397380718', '', 'kumaravel.1823@gmail.com', '1998-04-18', 23, '3', '2', 'Venkatesh J (Guardian)', 'Professor', 15000.00, 1, 0.00, 13000.00, 'Kovilambakkam', 'Kovilambakkam', '2108060003', '', '1', 'upload_files/candidate_tracker/38423690801_document (2) (1).docx', NULL, '1', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, fresher, career gap for an year. Need time to decide on the Terms xxamp  conditions. Seems not much comfortable. Sustainability doubts ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-06 10:36:04', 1, '2021-08-06 10:55:11', 0, NULL, 1),
(5762, 'KIRUBA B', '4', '7401247441', '9840861820', 'kirubadon593@gmail.com', '2000-04-27', 21, '3', '2', 'B.saraswathi', '8th', 10000.00, 2, 0.00, 20000.00, 'Ch', 'Ch', '2108060004', '', '1', 'upload_files/candidate_tracker/38346510378_KIRUBA resume.docx', NULL, '1', '2021-08-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-06 10:39:27', 1, '2021-08-06 10:49:21', 0, NULL, 1),
(5763, 'Pradeep raj', '22', '9944588152', '6381083170', 'a.pradeepraj1512@gmail.com', '1995-12-15', 25, '3', '2', 'G annamali', 'small business-Idli shop', 150000.00, 0, 0.00, 25000.00, 'thanjavur', 'thanjavur', '2108060005', '', '1', 'upload_files/candidate_tracker/70890585075_Resume updated.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to get into Digital Marketing, not much comfortable with TxxampC. having internship exp in recruitment ,but focus into digital Marketing. Sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-06 11:24:03', 1, '2021-08-06 11:27:03', 0, NULL, 1),
(5764, 'Niheeth mamidala', '5', '9010900643', '', 'niheeth.nalsar@gmail.com', '1997-02-28', 24, '2', '2', 'ramesh', 'rtd', 100000.00, 1, 0.00, 30000.00, 'hyderbad', 'gachibowli', '2108060006', '1', '1', 'upload_files/candidate_tracker/75311774609_Charul rawat -RESUME-.pdf', NULL, '2', '2021-08-07', 0, '', '3', '59', '2021-08-16', 299000.00, '', '5', '1970-01-01', '1', 'Selected for Hyderabad with CTC 299000 includes PF/ESI/PT', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-06 12:21:27', 60, '2021-08-11 04:08:02', 0, NULL, 1),
(5765, 'Kuthuru Rajesh', '5', '8522918565', '', 'rajeshkuthuru@gmail.com', '1997-09-15', 23, '2', '2', 'srinivas', 'business man', 50000.00, 2, 0.00, 20000.00, 'hyderabad', 'dilshuknagar', '2108060007', '1', '1', 'upload_files/candidate_tracker/56002221119_RAJESH RESUME 2.docx', NULL, '2', '2021-08-07', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not interested in our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-06 12:26:20', 1, '2021-08-06 12:28:29', 0, NULL, 1),
(5766, 'Osama A', '11', '8754091522', '', 'usamausmah@gmail.com', '1999-02-13', 22, '2', '2', 'Ahamedsha T', 'Bakery', 200000.00, 3, 0.00, 10000.00, 'Tenkasi', 'Chennai', '2108060008', '1', '1', 'upload_files/candidate_tracker/12886006630_osama_HR.docx', NULL, '1', '2021-08-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication, no basic ideas about the recruitment.Will not handle our pressure and sustainability doubts\n', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-06 12:27:51', 1, '2021-08-06 03:28:50', 0, NULL, 1),
(5767, '', '0', '7550184821', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108060009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-06 01:11:17', 0, NULL, 0, NULL, 1),
(5768, 'saybas khan', '22', '9751646163', '9159246162', 'ksaybas3@gmail.com', '1998-05-11', 23, '2', '2', 's.nagoorkani', 'departmental store', 20000.00, 1, 13500.00, 18000.00, 'Madurai', 'Madurai', '2108060010', '1', '2', 'upload_files/candidate_tracker/99842270295_resume.docx', NULL, '1', '2021-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication ,fresher ,no basic knowledge in Digital Marketing. Not suits', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-06 03:01:32', 60, '2021-08-11 07:06:03', 0, NULL, 1),
(5769, 'Tokala pranay Reddy', '5', '9133625709', '', 'pranaytokala@gmail.com', '2006-08-06', 15, '2', '2', 'malla reddy', 'own business', 100000.00, 1, 0.00, 15000.00, 'hyderabad', 'suchitra', '2108060011', '1', '1', 'upload_files/candidate_tracker/97571131296_cvbyjusDocument from Pranay-3.docx', NULL, '2', '2021-08-07', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-06 03:40:45', 1, '2021-08-06 03:42:52', 0, NULL, 1),
(5770, 'bala nagendra kmar', '13', '9080099415', '', 'balanagendrakumar244@gmail.com', '2000-04-24', 21, '2', '2', 'srinivasa rao', 'daily labour', 15000.00, 1, 10000.00, 18000.00, 'chennai', 'chennai', '2108060012', '1', '2', 'upload_files/candidate_tracker/1866969692_Bala+cv.pdf', NULL, '1', '2021-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location too long, need to check with his family on TxxampC.Sustainability Doubts', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-06 03:49:14', 60, '2021-08-11 07:23:16', 0, NULL, 1),
(5771, 'Jeevapriya', '13', '9597018266', '9176537401', 'jeevathamil11@gmail.com', '1998-07-11', 23, '2', '2', 'Vijayakumar', 'Medical representative', 10000.00, 1, 11000.00, 15000.00, 'Mayiladuthurai', 'Medavakkam', '2108060013', '1', '2', 'upload_files/candidate_tracker/95125675773_jeeva resume 2020.pdf', NULL, '1', '2021-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-06 04:11:26', 1, '2021-08-06 04:14:19', 0, NULL, 1),
(5772, '', '0', '9751656163', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108060014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-06 04:15:22', 0, NULL, 0, NULL, 1),
(5773, 'Ranjith.s', '4', '7604921342', '', 'ranjithranji983@gmail.com', '1999-01-10', 22, '3', '2', 'Shankar', 'Business', 72000.00, 2, 0.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2108060015', '', '1', 'upload_files/candidate_tracker/99717195311_pdf resume Ranjith.S (1).pdf', NULL, '1', '2021-08-06', 0, '', '3', '59', '2021-08-19', 120000.00, '', '0', NULL, '2', 'Selected for Tiruvallur Team with CTC 120000 Cash mode', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-06 05:02:10', 1, '2021-08-06 05:11:09', 0, NULL, 1),
(5774, 'M.nandhini', '20', '9962151263', '9585078385', 'nandhumj02@gmail.com', '1997-11-02', 23, '2', '2', 'Murugan', 'Welding', 20000.00, 1, 16000.00, 10000.00, 'Thiruvallur', 'Thiruvallur', '2108060016', '10', '2', 'upload_files/candidate_tracker/90687404795_nandhini resume 13.05.2021.pdf', NULL, '1', '2021-08-06', 0, '', '3', '59', '2021-08-10', 144000.00, '', '2', '1970-01-01', '2', 'Selected for Tiruvallur Location with CTC 144000 includes PF/ESI', '5', '2', '1', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-06 05:06:09', 60, '2021-08-09 07:43:12', 0, NULL, 1),
(5775, 'shanmuha varadhan', '22', '8825644138', '', 'shanmuhavaradhan@gmail.com', '1995-01-19', 26, '2', '2', 'muthukumar', 'business', 20000.00, 0, 0.00, 20000.00, 'nagercoil', 'coimbatore', '2108060017', '1', '1', 'upload_files/candidate_tracker/51646579283_CV_2021-07-13-072916_compressed.pdf', NULL, '1', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-06 05:40:04', 1, '2021-08-06 05:48:31', 0, NULL, 1),
(5776, 'Vikky', '27', '9952466122', '', 'devdood2419@gmail.com', '1997-09-24', 23, '2', '2', 'Elango', 'Ex Army', 35.00, 1, 18367.00, 25000.00, 'Dharmapuri', 'Chennai', '2108070001', '1', '2', 'upload_files/candidate_tracker/16750102341_Vikky\'s Resume Updated.pdf', NULL, '2', '2021-08-09', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability,2.5 yrs 3 companies and looking for a change. Holding an offer with another company', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 10:32:04', 1, '2021-08-07 10:35:17', 0, NULL, 1),
(5777, 'Mangalambigai', '27', '7397481402', '', 'ddayana1011@gmail.com', '1991-04-15', 30, '2', '1', 'Dhatchinamoorthy', 'Driver', 25000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2108070002', '1', '1', 'upload_files/candidate_tracker/87446730389_RESUME.pdf', NULL, '1', '2021-08-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 10:40:12', 1, '2021-08-07 10:44:35', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5778, 'P. VIKNESH', '6', '9865657470', '9597022862', 'Vikneshvicky686@gmail.com', '2000-06-06', 21, '1', '2', 'Farmer', 'Farmer', 80000.00, 3, 0.00, 14000.00, 'Thonnadu village, neerpair post, madurantakam T. K', 'Vadapalani', '2108070003', '', '1', 'upload_files/candidate_tracker/85993091617_5_6278537876539966496.docx', NULL, '1', '2021-08-07', 0, 'Jobs', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-07 11:19:48', 60, '2021-08-07 03:37:38', 0, NULL, 1),
(5779, 'GANGADHAR CHARY NARAYANADAS', '5', '8885334806', '', 'nkgangadhar68@gmail.com', '1993-06-02', 28, '2', '2', 'ramprathap', 'gold smith', 50000.00, 1, 22000.00, 25000.00, 'hyderabad', 'kuketpally', '2108070004', '1', '2', 'upload_files/candidate_tracker/94241688139_Gangadhar .pdf', NULL, '2', '2021-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-07 12:14:37', 1, '2021-08-07 12:16:57', 0, NULL, 1),
(5780, 'Ronald Vivan', '11', '8056217762', '', 'ronaldvivan@gmail.com', '1999-02-15', 22, '2', '2', 'Andrew Maria Francis', 'Fresher', 60000.00, 1, 0.00, 0.00, 'Chennai', 'Chennai', '2108070005', '1', '1', 'upload_files/candidate_tracker/66022528875_Ronald Resume .pdf', NULL, '1', '2021-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good, Too long Distance up and down 50 kms.Have a focus towards his father business.Salary expectation is High', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 12:32:20', 1, '2021-08-07 12:34:38', 0, NULL, 1),
(5781, 'ajith kumar s', '2', '7708547764', '', 'akajith919@gmail.com', '1998-07-18', 23, '2', '2', 'selvaraj', 'driver', 20000.00, 1, 0.00, 350000.00, 'sriperumbudur', 'sriperumbudur', '2108070006', '1', '1', 'upload_files/candidate_tracker/20229664396_ak-resume(new).pdf', NULL, '1', '2021-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Keen To Learn But Too Long Distance From Sriperumbuthur.', '2', '2', '0', '1', '1', '0', '2', '2021-08-16', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 12:50:35', 1, '2021-08-07 01:16:03', 0, NULL, 1),
(5782, 'A. Fouziya Begum', '4', '9884929408', '6382873572', 'fouziyabegum7863@gmail.com', '2000-08-12', 20, '1', '2', 'Alahuddin. A', 'Tailor', 75000.00, 1, 0.00, 15000.00, '12/1thanthoni Amman Koil 2nd street Villivakkam', '12/1thanthoni Amman Koil 2nd street Villivakkam', '2108070007', '', '1', 'upload_files/candidate_tracker/63658046620_Resume_Fouziya 2021.pdf', NULL, '1', '2021-08-07', 0, '55577', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-07 01:21:57', 1, '2021-08-07 01:34:21', 0, NULL, 1),
(5783, 'J.Surya kiran', '3', '7780483961', '', 'kiransurya456@gmail.com', '1994-06-27', 27, '2', '2', 'J.parameshwara Rao', 'Private employee', 25000.00, 1, 0.00, 20000.00, 'Challapalli', 'Chennai', '2108070008', '1', '1', 'upload_files/candidate_tracker/66851105115_kiran resume (1).docx', NULL, '1', '2021-08-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic knowledge fresher,not open with terms and conditions', '2', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 02:59:48', 1, '2021-08-07 03:37:13', 0, NULL, 1),
(5784, 'Sanjana', '11', '9677055889', '', 'sanjanajhamber.sj@gmail.com', '1997-09-13', 23, '2', '2', 'Suresh', 'Business man', 30000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2108070009', '1', '1', 'upload_files/candidate_tracker/26426678313_Resume.pdf', NULL, '1', '2021-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication OK, not familiar with local language, Salary Expectation is High, Will not sustain for a long', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 03:19:41', 1, '2021-08-07 03:22:51', 0, NULL, 1),
(5785, 'Nandhini', '2', '8531966025', '8940498482', 'nandhiniselvam2498@gmail.com', '1998-07-24', 23, '2', '2', 'Selvam', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Cuddalore', 'Cuddalore', '2108070010', '1', '1', 'upload_files/candidate_tracker/82774186144_nandhini resume1-converted.pdf', NULL, '3', '2021-08-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 03:21:28', 1, '2021-08-07 03:29:24', 0, NULL, 1),
(5786, '', '0', '9677018541', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108080001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-08 12:38:57', 0, NULL, 0, NULL, 1),
(5787, 'A. SARAVANA KUMAR', '23', '8870501430', '8072394478', 'Saravanakumar366@gmail.com', '1991-04-13', 30, '2', '2', 'P.Arumugam', 'Mill worker', 35000.00, 0, 15000.00, 25000.00, 'Virudhunagar', 'Chennai', '2108080002', '1', '2', 'upload_files/candidate_tracker/60475576411_resume_html_new.docx', NULL, '1', '2021-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Career Gap not much strong into the areas of UI/UX.Not much serious towards the job focusing for Govt Jobs', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-08 10:40:58', 1, '2021-08-09 11:17:54', 0, NULL, 1),
(5788, 'Tabassum nikhath', '4', '8939046853', '8190024072', 'muskansahil1704@gmail.com', '1993-05-27', 28, '3', '1', 'Ameer basha', 'Driver', 15000.00, 0, 0.00, 10000.00, 'Chennai.tharamani', 'Chennai.tharamani', '2108090001', '', '1', 'upload_files/candidate_tracker/26056542633_Resume_Tabassum nikhath_Format5.pdf', NULL, '1', '2021-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication, by mistake she came here for the  interview', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-09 09:46:49', 1, '2021-08-09 11:06:46', 0, NULL, 1),
(5789, 'aishwarya c', '13', '9345766836', '8428042707', 'aishuchinnathambi@gmail.com', '1999-01-22', 22, '2', '2', 'chinna thambi p', 'driver', 10000.00, 2, 0.00, 15000.00, 'indra nagar vengikkal', 'chennai', '2108090002', '1', '1', 'upload_files/candidate_tracker/29842946509_resume aisu.doc', NULL, '3', '2021-09-20', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, No Basic Tech Skill, Expt Is 15k.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-08-09 10:29:09', 50, '2021-09-20 12:28:45', 0, NULL, 1),
(5790, 'K.Boopathy', '6', '9626341225', '', 'boopathyslt@gmail.com', '1999-03-04', 22, '2', '2', 'V kathirasan', 'Sale', 12000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2108090003', '3', '2', 'upload_files/candidate_tracker/72423201224_Boopathy resume-converted (1).docx', NULL, '1', '2021-08-09', 0, '', '3', '59', '2021-08-12', 180000.00, '', '3', '2021-08-16', '1', 'Selected for Suthagar team with CTC 180000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-09 10:55:48', 60, '2021-08-10 06:22:19', 0, NULL, 1),
(5791, 'Dinesh.R', '27', '8667254006', '9176166943', 'dineash79932@gmail.com', '1997-05-06', 24, '2', '2', 'Saralavathy.R', 'House wife', 10000.00, 2, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2108090004', '1', '1', 'upload_files/candidate_tracker/31480682419_it resume .pdf', NULL, '1', '2021-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no basic knowledge ,,fresher for DotNet. no clear ideas about the Dotnet .Career Gap will not sustain for a long.Earlier he is into business', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-08-09 11:12:47', 1, '2021-08-09 11:26:55', 0, NULL, 1),
(5792, 'Sri Charan cheepulla', '5', '8247649494', '9848566772', 'sricharan77781@gmail.com', '1999-02-10', 22, '2', '2', 'venkatrao', 'farmer', 8000.00, 1, 0.00, 20000.00, 'hyderabad', 'herbal', '2108090005', '1', '1', 'upload_files/candidate_tracker/90723314232_Resume (4).docx', NULL, '2', '2021-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-09 11:14:33', 1, '2021-08-09 11:17:13', 0, NULL, 1),
(5793, 'sunil mallepudi', '5', '6300597711', '', 'sunidig100@gmail.com', '1989-07-22', 32, '2', '2', 'nageshwarao', 'accountant', 30000.00, 2, 14000.00, 18000.00, 'hyderabad', 'kuketpally', '2108090006', '1', '2', 'upload_files/candidate_tracker/71902937798_resume 1 (2) (1) (1)(2)(1)(2)gg (1).doc', NULL, '2', '2021-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Is Ok, No Relevant Exp In Insurance Sales. He Is Having A Career Gap And Long-Run Doubts On This Profile. He Is Not Having A Bike And Is Around 10kms From Jubilee Hills. 50/50 Profile.', '5', '1', '0', '3', '4', '0', '2', '2021-08-16', '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-09 11:59:13', 1, '2021-08-09 12:02:21', 0, NULL, 1),
(5794, '', '0', '7010349318', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108090007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-09 12:16:53', 0, NULL, 0, NULL, 1),
(5795, 'S. Nandhini', '4', '7550244584', '9677210531', 'nandhinisolai4910@gmail.com', '2000-04-22', 21, '3', '2', 'M. Solai', 'Carpenter', 10000.00, 0, 10000.00, 12000.00, 'Arumbakkam', 'Arumbakkam', '2108090008', '', '2', 'upload_files/candidate_tracker/66146262818_S. Nandhini _Resume_Format11.pdf', NULL, '1', '2021-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-09 12:19:37', 1, '2021-08-09 12:38:14', 0, NULL, 1),
(5796, 'Duraivel Pichapillai', '27', '8870690710', '9344792854', 'duraivel4609@gmail.com', '1994-03-30', 27, '2', '2', 'Pichapillai', 'Former', 48000.00, 2, 0.00, 15000.00, 'Virudhachalam', 'Chennai', '2108090009', '1', '1', 'upload_files/candidate_tracker/76955491632_DURAI.pdf', NULL, '1', '2021-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Long Career Gap,Much into web applications only.Will not fit for our client role', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 12:33:52', 1, '2021-08-09 12:37:17', 0, NULL, 1),
(5797, 'Preethi', '4', '9790959318', '7010349318', 'ammupreethi1113@gmail.com', '1999-11-11', 21, '3', '2', 'Ashok.M', 'Electrician', 12000.00, 1, 10000.00, 12000.00, 'Porur', 'Porur', '2108090010', '', '2', 'upload_files/candidate_tracker/55418807606_preethi.doc.pdf', NULL, '1', '2021-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-09 12:40:20', 1, '2021-08-09 12:45:04', 0, NULL, 1),
(5798, 'Hemnath T', '22', '9941120820', '', 'hemhhhh@gmail.com', '2000-07-03', 21, '2', '2', 'Kasthuri Thamodaran', 'Assistant professor', 150000.00, 1, 0.00, 5000.00, '6/2 Mannappa Lane Old Washermanpet ch-21', '6/2 Mannappa Lane Old Washermanpet Ch-21', '2108090011', '1', '1', 'upload_files/candidate_tracker/17495859667_1626413946983_Resume.pdf', NULL, '1', '2021-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good not much comfortable with the terms and conditions and most  comfortable for freelance only and the expectation is very high', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 01:14:07', 1, '2021-08-09 01:25:41', 0, NULL, 1),
(5799, 'Vignesh T', '3', '9361427180', '9566260621', 'vjrvignesh21@gmail.com', '1999-12-21', 21, '2', '2', 'Thangamani', 'House wife', 30000.00, 1, 0.00, 25000.00, 'CHENNAI', 'CHENNAI', '2108090012', '1', '1', 'upload_files/candidate_tracker/24207152253_Resume (3).pdf', NULL, '1', '2021-08-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much comfortable with TxxampC,need some time to check with family.If he comes back let see.Fresher', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 01:18:15', 1, '2021-08-09 01:30:40', 0, NULL, 1),
(5800, 'Subiksha', '11', '9994545283', '', 'subikshatamilarasan259@gmail.com', '1999-09-25', 21, '2', '2', 'Latha Tamizharasan (mother)', 'None', 10000.00, 3, 0.00, 8000.00, 'Pl No :92 , RK Nagar, Bharathi road , Veppampattu.', 'Pl No :92 , RK Nagar, Bharathi Road , Veppampattu.', '2108090013', '1', '1', 'upload_files/candidate_tracker/94906333262_Subiksha~Resume.pdf', NULL, '1', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 03:16:24', 1, '2021-08-09 03:29:06', 0, NULL, 1),
(5801, 'Sivaprakasam', '2', '6374399577', '9842939182', 'prakasams22@gmail.com', '2000-01-29', 21, '2', '2', 'Ganesan', 'Milk druck driver', 84000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2108090014', '1', '1', 'upload_files/candidate_tracker/3586929661_Siva prakasam-1.pdf', NULL, '3', '2021-08-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 03:39:20', 1, '2021-08-09 03:52:12', 0, NULL, 1),
(5802, '', '0', '7200435417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108090015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-09 04:48:54', 0, NULL, 0, NULL, 1),
(5803, 'sathiyanarayanan', '2', '9842250566', '9442353240', 'msathiya1622@gmail.com', '2000-02-16', 21, '2', '2', 'manivannan', 'weaver', 10000.00, 2, 0.00, 15000.00, 'thirubuvanam', 'thirubuvanam', '2108090016', '1', '1', 'upload_files/candidate_tracker/22500962250_Sathiyanarayanan.pdf', NULL, '3', '2021-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher profile, expecting high Pay, already he received an offer for 12K  and he is not comfortable  with package. Will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 05:04:08', 1, '2021-08-09 05:13:27', 0, NULL, 1),
(5804, 'Venkatalakshmi', '27', '9488672183', '9962443388', 'venkatalakshmi601@gmail.com', '1996-03-10', 25, '2', '1', 'Balasankar', 'Business', 40000.00, 2, 0.00, 25000.00, 'Palacode', 'Chennai', '2108090017', '1', '1', 'upload_files/candidate_tracker/22390903001_Resume.pdf', NULL, '3', '2021-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 05:36:59', 1, '2021-08-10 10:33:43', 0, NULL, 1),
(5805, 'Mohanraj K', '3', '8940026533', '8778627257', 'kmohanraj333@gmail.com', '1998-10-16', 22, '2', '2', 'Kannappan', 'Barbar', 15000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2108090018', '1', '1', 'upload_files/candidate_tracker/3931640219_Mohanraj\'s Resume.pdf', NULL, '1', '2021-08-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Working, not sure on the Notice to serve,not much comforrtable with TxxampC,if he comes back let see', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 06:02:14', 1, '2021-08-09 06:05:55', 0, NULL, 1),
(5806, 'karthikeyan c', '3', '7904648158', '7200435417', 'karthikeyanchandran2@gmail.com', '1998-07-11', 23, '2', '2', 'valarmathi c', 'mobile developer', 15000.00, 1, 14000.00, 25000.00, 'ambur', 'ambur', '2108090019', '1', '2', 'upload_files/candidate_tracker/17810050462_karthikeyan_chandran resume.pdf', NULL, '1', '2021-08-26', 3, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 06:18:09', 50, '2021-08-26 10:17:39', 0, NULL, 1),
(5807, 'Kamatchi M', '11', '9962270900', '9962517455', 'kamachibtech@gmail.com', '1992-05-30', 29, '2', '1', 'Bhuvaneshkumar', 'Safety engineer', 30000.00, 2, 0.00, 200000.00, 'Kanchipuram', 'Kanchipuram', '2108090020', '1', '1', 'upload_files/candidate_tracker/90251214845_Kamatchi-Quality Engineer( BE MBA).doc', NULL, '1', '2021-08-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'very average communication, No relevant Exp in Recruitment, worked in the manufacturing company. Sustainability Doubts', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 07:10:51', 1, '2021-08-09 07:31:32', 0, NULL, 1),
(5808, 'Sathishkumar', '4', '7094728590', '9360373780', 'sivasanthoshsathish11997@gmail.com', '1998-04-29', 23, '3', '2', 'Sivakumar', 'Voice process', 8000.00, 1, 0.00, 15000.00, 'S/o Sivakumar,232, Pillaiyar Kovil street, Mashar', 'New secretary coloney Velachery 4th street', '2108100001', '', '1', 'upload_files/candidate_tracker/17750813318_1627374133719_temp-efc07785-a9df-4bb4-9a7d-d34a4178b8db.doc.docx', NULL, '1', '2021-08-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 09:39:23', 1, '2021-08-10 09:49:13', 0, NULL, 1),
(5809, 'Balaji', '5', '9500128343', '', 'balajit045@gmail.com', '1991-12-28', 29, '1', '1', 'Kalpana', 'Working in Apollo hospital', 12000.00, 1, 15000.00, 25000.00, 'Pallavaram chennai 3/22 ponniamman Kovil Street', 'Pallavaram chennai', '2108100002', '', '2', 'upload_files/candidate_tracker/55882687943_Balaji_CV.doc', NULL, '1', '2021-08-10', 0, 'Job', '3', '59', '2021-08-19', 300000.00, '', '4', '2021-09-07', '1', 'Selected for Raj Kumar with CTC 300000 includes PF/PT deductions', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 10:39:04', 60, '2021-08-13 12:54:45', 0, NULL, 1),
(5810, 'NAGARAJ YADAV', '5', '9652052040', '', 'Snagarajyadav@gmail.com', '1992-04-01', 29, '2', '1', 'kurumaiah', 'rtd', 40000.00, 2, 18000.00, 20000.00, 'hyderabad', 'mehandhipatnam', '2108100003', '1', '2', 'upload_files/candidate_tracker/78405471658_edited resume Nnnnn.docx', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 10:47:11', 1, '2021-08-10 10:53:22', 0, NULL, 1),
(5811, 'Sathish v', '4', '6379812802', '', 'sathishgowtham34@gmail.com', '2000-07-01', 21, '1', '2', 'Velayutham p', 'Auto driver', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2108100004', '', '1', 'upload_files/candidate_tracker/7324752393_JOB RESUME. PDF.pdf', NULL, '1', '2021-08-10', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Will Not Suite For Calling, No Flow In Speech', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 10:54:58', 1, '2021-08-10 11:23:49', 0, NULL, 1),
(5812, 'SELVAGANAPATHY M', '4', '9940428267', '', 'selvamuruga437@gmail.com', '2001-10-27', 19, '1', '2', 'MURUGAN S', 'coconut Vendor', 25000.00, 1, 0.00, 13000.00, 'chennai', 'Chennai', '2108100005', '', '1', 'upload_files/candidate_tracker/46032219003_1625559130599_2 Page Resume 020 Diplomo.pdf', NULL, '1', '2021-08-10', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, no flow in speech', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 10:56:21', 1, '2021-08-10 11:10:53', 0, NULL, 1),
(5813, 'Abu Siddick.S', '4', '9791852731', '9360284228', 'abu633855@gmail.com', '2000-09-01', 20, '4', '2', 'Mubeen Fathima', 'House wife', 12000.00, 0, 0.00, 10000.00, 'Thiruvallur', 'Thiruvallur', '2108100006', '', '1', 'upload_files/candidate_tracker/34274943897_ABU SIDDICK RESUME TRL.docx', NULL, '1', '2021-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,his focus is much towards the non voice process, just for time being looking for opportunities', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 11:14:06', 1, '2021-08-10 11:20:37', 0, NULL, 1),
(5814, 'Swetha S', '4', '6385594057', '', 'sweetlyswetha03@gmail.com', '2000-04-20', 21, '3', '2', 'D.Sivakumar', 'Coolie', 6000.00, 3, 0.00, 13500.00, 'No.40, Ambethkar St, Aranvoyal, Thiruvallur-602025', 'Aranvoyal, Thiruvallur', '2108100007', '', '1', 'upload_files/candidate_tracker/20975168970_SWETHA RESUME.docx', NULL, '1', '2021-08-10', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'she is looking for non-voice , because preparing for competitive exam. not suitable for this profile.', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 11:17:07', 1, '2021-08-10 11:25:55', 0, NULL, 1),
(5815, 'Malavath.Ramesh', '5', '7780144172', '', 'malothramesh771@gmail.com', '1995-03-11', 26, '2', '2', 'kishan', 'real estate broker', 18000.00, 5, 0.00, 15000.00, 'hyderabad', 'sherlingampally', '2108100008', '1', '1', 'upload_files/candidate_tracker/14028402008_MALAVATH RAMESH.pdf', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 11:30:56', 1, '2021-08-10 11:34:24', 0, NULL, 1),
(5816, 'Harish kumar', '22', '8270381322', '', 'harishtheni2518@gmail.com', '1998-06-25', 23, '2', '2', 'Murugan', 'Police', 35000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai Ekkatuphangal', '2108100009', '1', '1', 'upload_files/candidate_tracker/66682597845_M..harishkumar.docx', NULL, '3', '2021-08-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication,No basic knowledge ano no stability', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 11:50:43', 1, '2021-08-10 12:12:06', 0, NULL, 1),
(5817, 'G G KISHORE KUMAR', '5', '9959629974', '', 'ggandham.kishore88@gmail.com', '1998-03-30', 23, '2', '1', 'bagyalakshmi', 'house wife', 35000.00, 2, 22000.00, 30000.00, 'hyderabad', 'mehnadhipatnam', '2108100010', '1', '2', 'upload_files/candidate_tracker/57316594882_0_kishore RESUME(3).pdf', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 11:58:05', 1, '2021-08-10 11:59:57', 0, NULL, 1),
(5818, '', '0', '9080122997', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108100011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-10 12:04:30', 0, NULL, 0, NULL, 1),
(5819, 'Thomas Raj I', '6', '8939411402', '9176995402', 'ithomas.raj@gmail.com', '1992-11-04', 28, '1', '2', 'G.issac Joseph', 'Pastor', 3000.00, 0, 12000.00, 13000.00, 'Chennai', 'Chennai', '2108100012', '', '2', 'upload_files/candidate_tracker/5618811258_thomas Raj007.pdf', NULL, '1', '2021-08-10', 0, 'No', '5', '34', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected ', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 12:16:09', 60, '2021-08-10 03:37:29', 0, NULL, 1),
(5820, 'Harsha vardhan', '5', '8688088809', '', 'raj.bablu9253@gmail.com', '1997-04-28', 24, '2', '1', 'nandhini', 'drafting', 70000.00, 1, 20000.00, 20000.00, 'hyderabad', 'kedrabath', '2108100013', '1', '2', 'upload_files/candidate_tracker/21401651748_1628305952227Resume_B.docx', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 12:26:54', 1, '2021-08-10 12:29:54', 0, NULL, 1),
(5821, 'mohammed soban.c', '27', '8610210988', '9944526762', 'md.souban@gmail.com', '1990-07-18', 31, '2', '2', 'shakeel ahmed.c', 'businessman', 25000.00, 2, 10000.00, 15000.00, 'ambur', 'ambur', '2108100014', '1', '2', 'upload_files/candidate_tracker/64051489431_MOHAMMED SOUBAN1.doc', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 01:04:21', 1, '2021-08-10 01:56:44', 0, NULL, 1),
(5822, 'GOWTHAM RAJ', '27', '7502663438', '', 'gowthamraj818@gmail.com', '1996-11-03', 24, '2', '2', 'Sekar', 'No', 20000.00, 1, 0.00, 300000.00, 'TIRUPATTUR', 'Ashoke piller', '2108100015', '1', '1', 'upload_files/candidate_tracker/78351200190_GOWTHAMRAJ RESUME.pdf', NULL, '1', '2021-08-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 01:23:01', 1, '2021-08-11 03:07:38', 0, NULL, 1),
(5823, 'K.Vivedha', '13', '7598970758', '9786535543', 'kvivedha1999@gmail.com', '1999-07-22', 22, '2', '2', 'p.Kanagaraj', 'Farmer', 6000.00, 2, 0.00, 20000.00, 'Lingampatti, Kovilpatti (tk), Tuticorin (dd)', 'Mandhaveli,chennai.', '2108100016', '1', '1', 'upload_files/candidate_tracker/764910319_Kvivedha Resume.docx', NULL, '2', '2021-08-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher knowledge ,having basic knowledge in HTML,CSS,JS but not comfort with TxxampC.Requested time to confirm with parents but left without convey', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 01:29:32', 1, '2021-08-10 01:34:10', 0, NULL, 1),
(5824, 'Korivi Saiteja', '5', '8074685396', '', 'saitejabablu36@gmail.com', '2000-03-12', 21, '2', '2', 'late / guardian - korivi babu', 'working', 22000.00, 1, 0.00, 15000.00, 'hyderabad', 'uppal', '2108100017', '1', '1', 'upload_files/candidate_tracker/96192009010_K Sai Teja.pdf', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 02:37:38', 1, '2021-08-10 02:44:17', 0, NULL, 1),
(5825, 'SHAIK MOINUDDIN', '5', '9392380759', '', 'moeenshaik6533@gmail.com', '1996-12-08', 24, '2', '2', 'shaik', 'driver', 20000.00, 2, 0.00, 20000.00, 'hyderabad', 'tarunaka', '2108100018', '1', '1', 'upload_files/candidate_tracker/55041781538_Moeen shaik -1.docx', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 02:52:35', 1, '2021-08-10 02:56:08', 0, NULL, 1),
(5826, 'S.Arun kumar', '2', '8098546445', '', 'arunkumarsit122000@gmail.com', '2000-02-01', 21, '2', '2', 'subramanian r', 'farmer', 12000.00, 1, 0.00, 20000.00, 'Mayiladudurai', 'Mayiladudurai', '2108100019', '1', '1', 'upload_files/candidate_tracker/24301172939_arun_resume.docx', NULL, '1', '2021-09-08', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not attended', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 03:03:37', 50, '2021-09-08 11:54:53', 0, NULL, 1),
(5827, '', '0', '6383620796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108100020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-10 03:13:21', 0, NULL, 0, NULL, 1),
(5828, 'Suvethan', '27', '9578112400', '', 'Hassansuvethan@gmail.com', '1996-09-26', 24, '2', '2', 'Packiri samy', 'Driver', 20000.00, 1, 0.00, 200000.00, 'Thiruraipoondi', 'Thiruraipoondi', '2108100021', '1', '1', 'upload_files/candidate_tracker/75656501385_swethan IT - 1625466982.pdf', NULL, '1', '2021-08-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Client round rejected', '2', '1', '0', '1', '1', '0', '2', '2021-08-13', '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 03:51:37', 1, '2021-08-10 03:55:35', 0, NULL, 1),
(5829, 'Mathankumar V', '27', '9655783310', '7010261163', '222mathank@gmail.com', '1998-05-08', 23, '2', '2', 'Velankanni', 'Daily wages', 7000.00, 2, 0.00, 200000.00, 'Dindigul', 'Dindigul', '2108100022', '1', '1', 'upload_files/candidate_tracker/18608543085_Mathankumar resume.pdf', NULL, '2', '2021-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '6', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 05:00:44', 1, '2021-08-10 05:37:27', 0, NULL, 1),
(5830, 'Sridevi', '13', '8428019870', '', 't.m.sridevi184901@gmail.com', '1999-06-25', 22, '2', '2', 'Mothilal', 'Printing office', 8000.00, 1, 0.00, 15000.00, 'Mela anuppanadi housing board', 'Madurai', '2108100023', '1', '1', 'upload_files/candidate_tracker/94388164150_resume for interview.pdf', NULL, '2', '2021-08-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not completed. even she doesnxquott know how to run the application.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 08:48:04', 1, '2021-08-10 09:24:18', 0, NULL, 1),
(5831, '', '0', '7780110781', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108110001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-11 07:07:20', 0, NULL, 0, NULL, 1),
(5832, '', '0', '9080099514', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108110002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-11 09:53:49', 0, NULL, 0, NULL, 1),
(5833, 'G Manikandan', '6', '9176379100', '9962103611', 'Gmani1465@gmail.com', '1990-11-11', 30, '2', '1', 'R gopi', 'Auto drive', 15000.00, 2, 25000.00, 25000.00, 'Tharmani', 'Tharmani', '2108110003', '1', '2', 'upload_files/candidate_tracker/58782266079_Manikandan G_Resume_28-11-2020.docx', NULL, '1', '2021-08-11', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not yet seen this candidate but he is assigned in my rms so kindly check \n', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-08-11 10:07:27', 60, '2021-08-11 07:22:08', 0, NULL, 1),
(5834, 'Venkateswara Reddy', '5', '9640317699', '', 'vennapusanani123@gmail.com', '1999-07-22', 22, '2', '2', 'v.nagireddy', 'farmer', 25000.00, 0, 0.00, 25000.00, 'hyderabad', 'kuketpally', '2108110004', '1', '1', 'upload_files/candidate_tracker/5984941459_Nani Resume-converted.docx', NULL, '2', '2021-08-12', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'planning to settle in canada by 2022 sep till then looking for job, not a long term employee', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-11 10:52:16', 1, '2021-08-11 11:00:29', 0, NULL, 1),
(5835, 'RANADHEER KUMAR GYARA', '5', '9652416231', '', 'ranadheergyara8@gmail.com', '1994-10-22', 26, '2', '2', 'venkataiah', 'farmer', 15000.00, 1, 0.00, 15000.00, 'hyderabad', 'uppal', '2108110005', '1', '1', 'upload_files/candidate_tracker/77843694538_Ranadheer (1).docx', NULL, '2', '2021-08-12', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', '2016-2021 - was doing farming very average in communication, can not handle pressure, ver new to sales', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-11 11:01:26', 1, '2021-08-11 11:19:23', 0, NULL, 1),
(5836, 'Monish J', '6', '8148086369', '8667726384', 'Monishsam07@Gmail.com', '1995-10-26', 25, '2', '2', 'Jeyachandran R', 'Fisherman', 15000.00, 2, 0.00, 15000.00, 'Royapuram, chennai.', 'Royapuram, chennai.', '2108110006', '1', '1', 'upload_files/candidate_tracker/62591998777_monish.doc', NULL, '1', '2021-08-11', 0, '', '3', '59', '2021-08-12', 192000.00, '', '3', '2021-12-16', '1', 'Selected for Syed Team with CTC 192000 includes PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-11 11:19:13', 50, '2021-08-12 01:26:35', 0, NULL, 1),
(5837, 'Rakesh Rosan Mishra', '5', '8594858682', '', 'rakesh.ro.mishra@gmail.com', '1994-06-05', 27, '2', '2', 'ratikanta mishra', 'press reporter', 25000.00, 0, 20000.00, 25000.00, 'hyderabad', 'madhapur', '2108110007', '1', '2', 'upload_files/candidate_tracker/44020633546_MY UPDATED CV.docx', NULL, '2', '2021-08-12', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-11 11:42:28', 1, '2021-08-11 11:45:35', 0, NULL, 1),
(5838, 'Vipin', '11', '9655132443', '', 'ivipincm@gmail.com', '1997-07-26', 24, '2', '2', 'Chandramohan', 'Nil', 27000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2108110008', '1', '1', 'upload_files/candidate_tracker/28019114094_0-5688766837_20210810_193718_0000.pdf', NULL, '1', '2021-08-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Frehser and the Salary expectation is min 18K and very stubborn towards the package', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-11 11:50:13', 1, '2021-08-11 11:58:59', 0, NULL, 1),
(5839, 'Dinesh Sharma', '6', '8124096867', '', 'sharmarockzzz.sd@gmail.com', '1994-01-17', 27, '2', '2', 'P.Chitti babu', 'Meason', 25000.00, 0, 15000.00, 18000.00, 'Chennai,Maduravoyal', 'Chennai, Maduravoyal', '2108110009', '3', '2', 'upload_files/candidate_tracker/93704049299_dinesh.docx', NULL, '1', '2021-08-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much open up, will not suits for our sales profile. No relevant Exp.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-11 11:56:41', 1, '2021-08-11 12:12:02', 0, NULL, 1),
(5840, 'Vignesh. R', '6', '8778832447', '7845010940', 'Mevicky1996@gmail.com', '1996-07-30', 25, '1', '2', 'M. Ramu', 'Supervisor', 12000.00, 1, 13000.00, 18000.00, 'Pallavaram', 'No 53 mettai Street, Anakaputhur Chennai 600070', '2108110010', '', '2', 'upload_files/candidate_tracker/45917481569_New doc May 3, 2021 4.22 PM.pdf', NULL, '1', '2021-08-11', 15, '555599', '3', '59', '1970-01-01', 192000.00, '', '2', '1970-01-01', '1', 'Selected For Guru Team With CTC 192000 Includes PF/ESI Deductions.Guru Reference And Manager Round Has Been Taken By Syed Abthali', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2021-08-11 12:01:05', 60, '2021-08-12 01:00:11', 0, NULL, 1),
(5841, 'Srikanth', '5', '9398447801', '', 'srikanth.bejjanki970@gmail.com', '1996-05-10', 25, '2', '2', 'veerasammay', 'farmer', 18000.00, 2, 14000.00, 20000.00, 'hyderabad', 'amirpet', '2108110011', '1', '2', 'upload_files/candidate_tracker/23402809449_Sri Resume.doc', NULL, '2', '2021-08-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-11 12:49:23', 1, '2021-08-11 12:53:22', 0, NULL, 1),
(5842, 'Saravana Priya', '27', '9943767965', '9790201965', 'priyasaravanan1693@gmail.com', '1993-07-16', 28, '2', '1', 'Manoharan.G', 'Business', 20000.00, 2, 25000.00, 30000.00, 'Chennai', 'Chennai', '2108110012', '1', '2', 'upload_files/candidate_tracker/26789980406_Saravana Priya.M(B.Tech)2014.docx', NULL, '3', '2021-08-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'salary expt is high', '2', '2', '', '1', '3', '', '2', '2021-08-18', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-11 12:50:06', 50, '2021-08-17 12:18:44', 0, NULL, 1),
(5843, 'Sabitha', '23', '9629427783', '', 'sabithapanneerselvam@gmail.com', '1995-03-11', 26, '2', '2', 'Panneerselvam', 'Farmer', 100000.00, 3, 3.20, 4.00, 'Cuddalore', 'Cuddalore', '2108110013', '1', '2', 'upload_files/candidate_tracker/15072365486_Resume_17-06-2021.pdf', NULL, '1', '2021-08-18', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task Not Completed', '2', '1', '', '1', '1', '', '2', '2021-08-20', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-11 05:16:08', 50, '2021-08-18 12:13:07', 0, NULL, 1),
(5844, 'Ganesh Kumar M', '23', '7708507979', '', 'gkmurugan1996@gmail.com', '1996-05-20', 25, '2', '2', 'Murugan', 'Driver', 1.60, 1, 0.00, 17000.00, 'Tirunelveli', 'Singaperumal kovil', '2108110014', '1', '1', 'upload_files/candidate_tracker/20854628128_MGanesh.pdf', NULL, '2', '2021-08-25', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-11 05:29:21', 1, '2021-08-24 04:42:10', 0, NULL, 1),
(5845, 'Geetha', '11', '8012996839', '', 'geethachaariya@gmail.com', '1994-08-22', 26, '2', '2', 'Venkatesan', 'Gold Smith', 25000.00, 2, 0.00, 15000.00, 'Tiruvallur', 'Tiruvallur', '2108110015', '1', '1', 'upload_files/candidate_tracker/61884454425_Resume.docx', NULL, '1', '2021-08-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-11 07:31:44', 1, '2021-08-11 07:36:51', 0, NULL, 1),
(5846, 'Ajay Batchu', '5', '9704287524', '', 'ajaybatchu123@gmail.com', '1997-01-30', 24, '2', '2', 'ramu', 'rtd', 25000.00, 2, 24000.00, 27000.00, 'hyderabad', 'secundrabad', '2108120001', '1', '2', 'upload_files/candidate_tracker/66194964351_Resume_ajay (2).pdf', NULL, '2', '2021-08-13', 0, '', '3', '59', '2021-08-16', 340000.00, '', '2', '1970-01-01', '1', 'Selected for Hyderabad team with CTC 340000 includes PF/PT', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-12 10:59:14', 60, '2021-08-14 10:45:58', 0, NULL, 1),
(5847, 'Rajalakshmi M', '5', '9360820714', '9444066532', 'Rajisatya1999@gmail.com', '1999-08-27', 21, '3', '2', 'Satyanarayana M', 'manager', 350000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2108120002', '', '1', 'upload_files/candidate_tracker/81941705359_RajalakshmiM resume.pdf', NULL, '1', '2021-08-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No relevant Exp,looking only for Accounts profile.Will not sustain with is for a long', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-12 11:04:05', 1, '2021-08-12 11:13:10', 0, NULL, 1),
(5848, 'Manoj Bezawada', '5', '9573811067', '', 'manojbezawada2723@gmail.com', '1998-08-12', 23, '2', '1', 'murali krishna bezawada', 'own building contract company', 50000.00, 0, 0.00, 18000.00, 'hyderabad', 'old alwal', '2108120003', '1', '1', 'upload_files/candidate_tracker/17235254141_Manoj Bezawada_Resume_Format5.pdf', NULL, '2', '2021-08-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-12 11:06:13', 1, '2021-08-12 11:08:54', 0, NULL, 1),
(5849, 'Sai Charan', '5', '8341871805', '', 'saicharangoud7097@gmail.com', '1999-05-18', 22, '2', '2', 'krishna', 'self employment-transportation', 50000.00, 1, 0.00, 15000.00, 'hyderabad', 'tarnaka', '2108120004', '1', '1', 'upload_files/candidate_tracker/69251107100_sai charan goud.docx', NULL, '2', '2021-08-13', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attend', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-12 11:09:51', 1, '2021-08-12 11:13:44', 0, NULL, 1),
(5850, 'G.charulatha', '4', '9087275246', '', 'Charugopal61121@gmail.com', '2001-06-06', 20, '2', '2', 'M.Gopal', 'Plumber', 10000.00, 1, 0.00, 10000.00, 'Teynampet', 'Teynampet', '2108120005', '1', '1', 'upload_files/candidate_tracker/63418245467_G.Charulatha.pdf', NULL, '1', '2021-08-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communicaiton Average,she got offer in Axis and in terms of target/presuusre she didnxquott join.Her main focus is into Non Voice only', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-12 11:20:04', 50, '2021-08-12 01:36:33', 0, NULL, 1),
(5851, 'P.INDHUMATHI', '4', '8682962549', '8072495426', 'angel1351998@gmail.com', '1998-05-13', 23, '3', '2', 'M.PALANI', 'FORMER', 15000.00, 2, 0.00, 11000.00, '23/w2, Ambedkar street,Manavur.', '23/W2, Ambedkar Street,Manavur', '2108120006', '', '1', 'upload_files/candidate_tracker/95928743755_indhu resume latest.docx', NULL, '1', '2021-08-12', 0, '', '3', '59', '2021-08-16', 120000.00, '', '0', NULL, '2', 'Selected for Tiruvallur team with CTC 120000 in cash mode', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-12 11:38:54', 1, '2021-08-12 11:52:28', 0, NULL, 1),
(5852, 'A.ELAKKIYA ARASI', '4', '9159220350', '9789155433', 'elakkiyaarasi2@gmail.com', '1997-08-31', 23, '3', '2', 'D.AMBEDKAR', 'Teacher', 15000.00, 2, 0.00, 11000.00, '149, Perumal koil street,Pagasalai.', '149, Perumal Koil Street,Pagasalai.', '2108120007', '', '1', 'upload_files/candidate_tracker/30922728153_elakiya resume.docx', NULL, '1', '2021-08-12', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'voice  Very  low  and not suitable for this profile.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-12 11:57:57', 1, '2021-08-12 12:08:22', 0, NULL, 1),
(5853, 'Shanukanth Choudhry', '5', '8019128923', '', 'shanukanth97@gmail.com', '1997-11-24', 23, '2', '2', 'deshik', 'self employed', 40000.00, 2, 212000.00, 20000.00, 'hyderabad', 'secundrabad', '2108120008', '1', '2', 'upload_files/candidate_tracker/94315517837_shanu vc amz.docx', NULL, '2', '2021-08-13', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Looking for accounts and Finance profile job', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-12 12:41:37', 1, '2021-08-12 12:44:43', 0, NULL, 1),
(5854, 'Praveen Kumar.m', '4', '9344376790', '9790154582', 'praveenpk12a@gmail.com', '2001-10-15', 19, '1', '2', 'Murugesan', 'Business', 20000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2108120009', '', '1', 'upload_files/candidate_tracker/77909243230_resume.pdf', NULL, '1', '2021-08-12', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Internal REference,Looking for Logistics domain,will not sustain in our field', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-12 12:52:50', 1, '2021-08-12 01:02:22', 0, NULL, 1),
(5855, 'lokesh A', '27', '6379196499', '', 'lokeshcse215@gmail.com', '1999-04-17', 22, '2', '2', 'ayyothi', 'framer', 1.40, 0, 0.00, 2.40, 'Chennai', 'Chennai', '2108120010', '1', '1', 'upload_files/candidate_tracker/6117300624_lOKESHCSE17.pdf', NULL, '1', '2021-08-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 03:09:13', 1, '2021-08-12 03:26:55', 0, NULL, 1),
(5856, 'Saranya priya K', '13', '9940330971', '', 'priyasaranyak@gmail.com', '1999-11-02', 21, '2', '2', 'Parent', 'Electrician', 200000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2108120011', '1', '1', 'upload_files/candidate_tracker/36133381514_Saranya_Priya_K_resume-4.pdf', NULL, '1', '2021-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 03:17:15', 1, '2021-08-12 03:22:32', 0, NULL, 1),
(5857, 'padmashree.m', '2', '7358446402', '', 'padmashreemurugan@gmail.com', '1999-09-27', 21, '2', '2', 'murugan', 'driver', 200000.00, 1, 0.00, 10000.00, 'CHENNAI', 'CHENNAI', '2108120012', '1', '1', 'upload_files/candidate_tracker/56923420296_RESUME.pdf', NULL, '1', '2021-08-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need time to join post August only she can join,Documents is in the college,need time to confirm with family on txxampC.Hand injury xxamp if she comes back let see', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 03:27:30', 1, '2021-08-12 07:13:31', 0, NULL, 1),
(5858, 'Keerthana', '2', '9940638260', '', 'jenikeerthi723@gmail.com', '1999-09-22', 21, '2', '2', 'Amudha', 'Tailoring', 20000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2108120013', '1', '1', 'upload_files/candidate_tracker/34774760582_keerthana.pdf', NULL, '1', '2021-08-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Update', '2', '2', '', '1', '1', '', '2', '2021-08-18', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 03:54:55', 7, '2021-08-17 06:01:02', 0, NULL, 1),
(5859, 'Srivathsan', '23', '7708852147', '', 'srivathsan.r.cse@gmail.com', '1995-06-08', 26, '2', '2', 'Rqvi', 'Teacher', 50000.00, 0, 13000.00, 30000.00, 'Anna nagar', 'Anna nagar', '2108120014', '1', '2', 'upload_files/candidate_tracker/67825658739_Srivathsan.r.docx', NULL, '1', '2021-08-14', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 04:41:04', 1, '2021-08-12 04:45:30', 0, NULL, 1),
(5860, 'bhuvaneshwaran p', '23', '8438935848', '', 'pbhuvaneshwaran@gmail.com', '1995-07-12', 26, '2', '2', 'leelavathi p', 'housewife', 10000.00, 1, 0.00, 20000.00, 'saidapet', 'saidapet', '2108120015', '1', '1', 'upload_files/candidate_tracker/13959584055_bhuvanesh resume.pdf', NULL, '1', '2021-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 05:44:38', 1, '2021-08-12 06:03:48', 0, NULL, 1),
(5861, 'Mohammed Jameel asan p', '23', '8838266131', '7299100689', 'jameel.asan2020@gmail.com', '1998-11-24', 22, '2', '2', 'Peer Mohamed a', 'Salesman', 15000.00, 1, 0.00, 25000.00, 'No 179 Jain Abhishek Apartment ,Tambaram,Selaiyur', 'No 179 Jain Abhishek Apartment ,Tambaram', '2108120016', '1', '1', 'upload_files/candidate_tracker/56243982407_Resume Jameel.pdf', NULL, '1', '2021-08-18', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task given was not completed up to our satisfaction.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 05:56:33', 7, '2021-08-18 12:27:43', 0, NULL, 1),
(5862, 'praveen kumar', '23', '7904505309', '8428986748', 'praveen842898@gmail.com', '1998-07-01', 23, '2', '2', 'prem sekar', 'screen printer', 15000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2108120017', '1', '1', 'upload_files/candidate_tracker/93136371419_Design Resume.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, doesnt know html and css, no working exp, done designing course and expt is 20k.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 06:17:13', 1, '2021-08-12 06:30:34', 0, NULL, 1),
(5863, 'dinahar', '23', '8825948052', '', 'dinahar27599@gmail.com', '1999-05-27', 22, '2', '2', 'madhavan', 'consultant', 4.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2108120018', '1', '1', 'upload_files/candidate_tracker/94995503319_Dinahar.pdf', NULL, '1', '2021-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 06:39:39', 1, '2021-08-12 06:43:49', 0, NULL, 1),
(5864, '', '0', '9291575469', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108130001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-13 09:08:25', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5865, 'Balaji', '4', '9080976831', '7904174492', 'baaaala1996@gmail.com', '1996-07-19', 25, '1', '2', 'K.Nagappan', 'Business', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2108130002', '', '1', 'upload_files/candidate_tracker/37966581819_Balaji_Entry Level Resume – 01.pdf', NULL, '1', '2021-08-13', 0, 'JOBS', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication,not open up will not handle pressure,career Gap not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-13 10:12:26', 1, '2021-08-13 10:34:33', 0, NULL, 1),
(5866, 'Askar Ali.a', '4', '9042753866', '7305882711', 'Askarali101@gmail.com', '2000-11-01', 20, '1', '2', 'Ashamed saleem', 'Business', 30000.00, 2, 0.00, 13000.00, 'Iyyappanthangal', 'Iyyappanthangal', '2108130003', '', '1', 'upload_files/candidate_tracker/20529398227_CV_2021-07-03-122601.pdf', NULL, '1', '2021-08-13', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up, fresher too long will not sustain for a long', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-13 10:21:31', 1, '2021-08-13 10:48:24', 0, NULL, 1),
(5867, 'Ajay mudhiraj', '5', '8125428366', '', 'Info.Ajay8125@gmail.com', '1998-06-01', 23, '2', '2', 'ramchander', 'working', 60000.00, 2, 12000.00, 20000.00, 'hyderabad', 'uppal', '2108130004', '1', '2', 'upload_files/candidate_tracker/31642549661_Resume_Ajay (1).pdf', NULL, '2', '2021-08-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-13 10:22:58', 1, '2021-08-13 10:26:13', 0, NULL, 1),
(5868, 'Vigneshwaran.S', '4', '9445481374', '6379143396', 'mptvicky0010@gmail.com', '1998-10-03', 22, '2', '2', 'Sowri Rajan.R', 'Police', 30000.00, 1, 0.00, 12000.00, 'F - 6 Police Quarters, Saidapet Chennai -15', 'F - 6 Police Quarters, Saidapet Chennai -15', '2108130005', '1', '1', 'upload_files/candidate_tracker/13304857981_Vigneshwaran Resume.docx', NULL, '1', '2021-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-13 10:29:46', 50, '2021-08-13 12:39:31', 0, NULL, 1),
(5869, 'Mulam reddy Brahma reddy', '5', '9705201202', '', 'mbreddy9705@gmail.com', '1998-01-01', 23, '2', '2', 'venkatareddy', 'farmer', 40000.00, 1, 14000.00, 20000.00, 'hyderabad', 'kuketpally', '2108130006', '1', '2', 'upload_files/candidate_tracker/8772101634_bhramareddy.doc', NULL, '2', '2021-08-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-13 10:30:04', 1, '2021-08-13 10:32:33', 0, NULL, 1),
(5870, 'Ujjay singh', '4', '9360026405', '', 'ujjaymass90@gmail.com', '2002-07-12', 19, '2', '2', 'Ramya kumari', 'Advocate', 30000.00, 1, 0.00, 12000.00, '70/85 nageshwara gurusami street ayanavaram', 'Inbalaya apartments Raghavendra road kolathur', '2108130007', '1', '1', 'upload_files/candidate_tracker/95032588395_BIO Fresh.docx', NULL, '1', '2021-08-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Applied for B.E regular post Diploma completion. just for time being looking for opportunities', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-13 10:32:10', 50, '2021-08-13 12:39:11', 0, NULL, 1),
(5871, 'Leo samuel l', '20', '8056939259', '9840033487', 'leosamuel669@gmail.com', '1997-07-10', 24, '4', '2', 'Lurthunathan', 'Koli', 12.00, 1, 15.00, 17.00, 'Tiruvottiyur kaladaipet', 'Tiruvottiyur', '2108130008', '', '2', 'upload_files/candidate_tracker/48931241376_Leo Samuel.pdf', NULL, '2', '2021-08-13', 2, '', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'Sustainability', '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-13 10:34:19', 1, '2021-08-13 11:06:00', 0, NULL, 1),
(5872, 'Kotla srikanth Yadav', '5', '9030606878', '', 'Kotla.srikanthyadav@gmail.com', '1996-03-10', 25, '2', '2', 'bakkaiaha', 'govt employee', 45000.00, 1, 16500.00, 25000.00, 'hyderabad', 'lb nagar', '2108130009', '1', '2', 'upload_files/candidate_tracker/5186699715_Resume Srikanth Yadav.pdf', NULL, '2', '2021-08-16', 0, '', '8', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not attended the interview', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-13 10:36:25', 50, '2021-08-16 11:05:10', 0, NULL, 1),
(5873, 'Vijayabalan', '2', '6384844188', '', 'vijaykee3405@gmail.com', '2000-05-24', 21, '2', '2', 'Ravichandran', 'Former', 12000.00, 1, 0.00, 25000.00, 'Cuddalore', 'Cuddalore', '2108130010', '1', '1', 'upload_files/candidate_tracker/26095504505_vijayabalan_cv.docx', NULL, '2', '2021-08-21', 0, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, no basic knowledge in coding, high job need, willing to learn, looking for internship.', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 10:39:41', 7, '2021-08-21 01:08:19', 0, NULL, 1),
(5874, 'Hemalatha d', '4', '7358796690', '9342619772', 'reshmahemalatha01@gmail.com', '2003-03-15', 18, '2', '2', 'Devaraj N', 'Driver', 12000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2108130011', '1', '1', 'upload_files/candidate_tracker/6088451569_Document-WPS Office.pdf', NULL, '1', '2021-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-13 10:54:27', 50, '2021-08-13 12:38:51', 0, NULL, 1),
(5875, 'kamesh j', '4', '7092301481', '8189890839', 'kamjeev2@gmail.com', '1999-02-16', 22, '2', '2', 'j. sumathi', 'tailor', 20000.00, 1, 0.00, 12000.00, 'thirumazhisai', 'thirumazhisai', '2108130012', '1', '1', 'upload_files/candidate_tracker/43482063975_1601612978624_kam-converted_06-Oct-20_07_05_41-converted-converted.pdf', NULL, '1', '2021-08-13', 0, '', '3', '59', '2021-08-16', 120000.00, '', '0', NULL, '2', 'Selected for Tiruvallur team with cTC 120000 in cash mode', '1', '1', '0', '4', '6', '0', '2', '2021-08-14', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-13 10:55:31', 1, '2021-08-13 12:03:15', 0, NULL, 1),
(5876, '', '0', '9444306766', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108130013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-13 11:49:55', 0, NULL, 0, NULL, 1),
(5877, '', '0', '8190011910', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108130014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-13 12:46:52', 0, NULL, 0, NULL, 1),
(5878, 'Naveen joyson', '3', '7904933348', '', 'samjoyson6@gmail.com', '1998-02-24', 23, '2', '2', 'Daniel rajan', 'Clerk', 35000.00, 1, 0.00, 15000.00, 'Mylapore', 'Mylapore', '2108130015', '1', '1', 'upload_files/candidate_tracker/18768003787_Resume-Naveen(1).pdf', NULL, '1', '2021-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 12:59:30', 1, '2021-08-13 01:11:03', 0, NULL, 1),
(5879, 'yogesh', '23', '6381890459', '', 'yogeshmohan241995@gmail.com', '1995-11-24', 0, '2', '2', 'mohan.d', 'ui developer', 400000.00, 0, 210000.00, 250000.00, 'Chennai', 'Chennai', '2108130016', '1', '2', 'upload_files/candidate_tracker/95165221581_web-designer-yogesh.docx', NULL, '1', '2021-08-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not interested in the profile.', '2', '2', '0', '1', '3', '0', '2', '2021-08-19', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 03:17:18', 1, '2021-08-13 04:38:50', 0, NULL, 1),
(5880, 'Balaji', '23', '8124856183', '', 'balajipari91@gmail.com', '1991-12-29', 29, '2', '2', 'Pari', 'Electrician', 25000.00, 0, 310000.00, 500000.00, 'Yes', 'Chennai', '2108130017', '1', '2', 'upload_files/candidate_tracker/61945636301_1625573757271_Balaji new.docx', NULL, '1', '2021-08-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Turned Up', '2', '2', '', '1', '1', '', '2', '2021-08-24', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 03:41:20', 7, '2021-08-18 11:22:47', 0, NULL, 1),
(5881, 'revan rufus s', '23', '9789065436', '', 'revanrufus@gmail.com', '1997-12-07', 23, '2', '2', 'sebastin', 'farmer', 25000.00, 1, 0.00, 3.00, 'chennai', 'vellore', '2108130018', '1', '1', 'upload_files/candidate_tracker/37292336642_Revan+Rufus+Resume.pdf', NULL, '1', '2021-08-17', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 03:47:31', 1, '2021-08-13 03:53:09', 0, NULL, 1),
(5882, 'Tajul Islam', '2', '8825926621', '', 'tajulislamj200@gmail.com', '2000-05-02', 21, '2', '2', 'Jameel khan', 'Supervisor', 12000.00, 2, 0.00, 10000.00, 'Pudumadam', 'Ashok Nagar', '2108130019', '1', '1', 'upload_files/candidate_tracker/82881625669_Resume-1-1-2_compressed.pdf', NULL, '1', '2021-08-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge, Not comfortable with terms and conditions. Sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 04:12:54', 1, '2021-08-13 04:15:46', 0, NULL, 1),
(5883, 'pavithra', '23', '7871688118', '', 'pavithra20.pr@gmail.com', '1994-04-20', 27, '2', '1', 'ravikumar', 'ui designer', 35000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2108130020', '1', '1', 'upload_files/candidate_tracker/40347478231_Pavithra-UI-Designer.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 3m training and 2m exp in designing, doesnt know html and css, expt is 15k.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 04:17:45', 1, '2021-08-16 07:15:53', 0, NULL, 1),
(5884, 'syed hameed hussain', '22', '9941878323', '', 'hameed05515@gmail.com', '1997-08-13', 24, '2', '2', 'na', 'na', 1.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2108130021', '1', '1', 'upload_files/candidate_tracker/63973763666_hameed Resume.docx', NULL, '1', '2021-08-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-13 04:36:19', 1, '2021-08-13 04:41:18', 0, NULL, 1),
(5885, 'srinivasan', '13', '7358866974', '', 'seenuvasantps@email.com', '1998-11-25', 22, '2', '2', 'dharuman', 'Vegetable business', 15000.00, 1, 0.00, 25000.00, 'cuddalore', 'chennai', '2108130022', '1', '1', 'upload_files/candidate_tracker/38355655261_srinivasan resum.pdf', NULL, '2', '2021-08-17', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Response.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 05:14:01', 1, '2021-08-17 05:34:59', 0, NULL, 1),
(5886, '', '0', '9751136611', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108130023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-13 06:49:25', 0, NULL, 0, NULL, 1),
(5887, 'BALAMURUGAN A', '6', '9840723186', '', 'balamurugan5646@gmail.com', '1996-12-04', 24, '4', '2', 'Anbu', 'Labour', 12000.00, 0, 13800.00, 14000.00, 'Saidapet Chennai', 'Saidapet Chennai', '2108140001', '', '2', 'upload_files/candidate_tracker/56372546930_Balamurugan Resume.pdf', NULL, '1', '2021-08-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Requested candidate to share the previous company documents What he has, but didnt turn back and no relevant Exp in sales', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-14 11:18:30', 1, '2021-08-14 11:31:44', 0, NULL, 1),
(5888, 'Premalatha', '4', '9344194339', '', 'premalatha26920@gmail.com', '2000-09-26', 20, '1', '2', 'Panneer selvam', 'Carpenter', 7000.00, 1, 0.00, 11.00, 'Melmaruvathur', 'Melmaruvathur', '2108140002', '', '1', 'upload_files/candidate_tracker/96821599413_CV_2021-08-04-082716.pdf', NULL, '3', '2021-08-13', 0, '2108140002', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-14 11:23:40', 1, '2021-08-14 11:28:22', 0, NULL, 1),
(5889, 'Adithya v', '5', '9206952481', '7090988153', 'johnzadithya2000@gmail.com', '2000-06-20', 21, '1', '2', 'Maalika', 'House wife', 20000.00, 3, 0.00, 21000.00, 'Viveknagar further extension bangalore', 'Viveknagar further extension Bangalore', '2108140003', '', '1', 'upload_files/candidate_tracker/45981826062_Adithya RESUME.pdf', NULL, '1', '2021-08-14', 0, 'P1181', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-14 12:56:30', 1, '2021-08-14 01:02:36', 0, NULL, 1),
(5890, 'saravanan.v', '4', '8925277287', '', 'bruceleesaravanan35@gmail.com', '1999-12-23', 21, '2', '2', 'karpagam.v', 'flower selling', 180000.00, 1, 0.00, 10000.00, 'no.siven koil street', 'no.siven kovil street', '2108140004', '1', '1', 'upload_files/candidate_tracker/87767505217_New doc 14-Aug-2021 1.13 pm.pdf', NULL, '1', '2021-08-14', 0, '', '3', '59', '2021-08-19', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Tiruvallur with CTC 120000 Cash mode', '1', '1', '', '1', '1', '', '1', '1970-01-01', '2', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-08-14 01:08:34', 60, '2022-02-04 01:17:44', 0, NULL, 1),
(5891, '', '0', '7358203825', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108150001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-15 09:36:55', 0, NULL, 0, NULL, 1),
(5892, 'rufus mathew', '13', '7708839423', '', 'mc.rufus29@outlook.com', '1998-04-29', 23, '2', '2', 'jeeva kumar a', 'driver', 15000.00, 1, 12000.00, 35000.00, 'tuticorin', 'tuticorin', '2108150002', '1', '2', 'upload_files/candidate_tracker/89846063177_Latest Resume_2.pdf', NULL, '2', '2021-08-19', 15, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-15 12:53:32', 1, '2021-08-17 02:37:52', 0, NULL, 1),
(5893, '', '0', '8939123661', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108150003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-15 07:08:24', 0, NULL, 0, NULL, 1),
(5894, 'haritha s', '4', '7824000955', '', 'sharitha011@gmail.com', '2000-07-17', 21, '2', '2', 'saravanan', 'business', 20000.00, 1, 0.00, 9000.00, 'thiruvallur', 'kandhan colony', '2108160001', '1', '1', 'upload_files/candidate_tracker/69519174869_1629026374913Resume_S(1).pdf', NULL, '1', '2021-08-17', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', 'very  sensitive person so not suitable for this profile', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-16 10:10:05', 1, '2021-08-16 10:13:00', 0, NULL, 1),
(5895, 'V.Raja Raman', '6', '8610213726', '9442225732', 'stackakash12@gmail.com', '1997-12-06', 23, '1', '2', 'Santha', 'House wife', 100000.00, 0, 0.00, 14000.00, '5/1 lnp kovil street egmore Chennai 600008', 'Bg1 SMS garden gengu Reddy street Egmore', '2108160002', '', '2', 'upload_files/candidate_tracker/47033593521_CV_2021-08-15-065611.pdf', NULL, '1', '2021-08-16', 0, 'P1191', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-16 10:47:35', 1, '2021-08-16 11:16:10', 0, NULL, 1),
(5896, 'Jeedula Praneeth Roy', '5', '7981791430', '', 'praneethroy31@gmail.com', '1999-12-09', 21, '2', '2', 'jeedula rambabu', 'govt employee', 50000.00, 1, 0.00, 20000.00, 'hyderabad', 'uppal', '2108160003', '1', '1', 'upload_files/candidate_tracker/27806442734_Praneeth_s_Resume__2_.pdf', NULL, '2', '2021-08-17', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'not interested in life insurance sales', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-16 11:23:01', 1, '2021-08-16 11:25:23', 0, NULL, 1),
(5897, 'Mir Aijaz Ali', '5', '7997065955', '', 'aijazalipatel007@gmail.com', '1995-08-01', 26, '2', '2', 'ashraf ali', 'pharmacist', 50000.00, 2, 18000.00, 20000.00, 'hyderabad', 'akthapur', '2108160004', '1', '2', 'upload_files/candidate_tracker/31948621871_Aijaz Ali.pdf', NULL, '2', '2021-08-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-16 11:40:12', 1, '2021-08-16 11:46:26', 0, NULL, 1),
(5898, 'y.prabhu kumar', '4', '7305829247', '', 'yuvadavid81@gmail.com', '1999-02-18', 22, '3', '2', 'j.yuvaraj', 'self employee', 20000.00, 1, 12000.00, 12500.00, 'no kattabomman street aranvoyal tiruvallur', 'No Kattabomman Street Aranvoyal Tiruvallur', '2108160005', '', '2', 'upload_files/candidate_tracker/62166864732_PRABHU KUMAR Y.docx', NULL, '1', '2021-08-16', 0, '', '3', '59', '2021-08-19', 120000.00, '', '0', NULL, '1', 'Selected for Tiruvallur - Cash Mode', '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-16 11:42:25', 1, '2021-08-16 12:29:07', 0, NULL, 1),
(5899, 'Saravanan N', '2', '7977172004', '', 'saravanan.btech021@gmail.com', '1995-07-22', 26, '2', '2', 'Natrajan', 'Student', 15000.00, 2, 0.00, 250000.00, 'Chennai', 'Chennai', '2108160006', '1', '1', 'upload_files/candidate_tracker/29388872001_Saravanan Resume.pdf', NULL, '1', '2021-08-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-16 12:30:04', 1, '2021-08-18 06:27:18', 0, NULL, 1),
(5900, 'Shanmugam', '27', '7200411081', '', 'shanmugamcse77@gmail.com', '1996-05-26', 25, '2', '2', 'Elumalai', 'Former', 100000.00, 2, 0.00, 12000.00, 'Thiruvannaamalai', 'Velachery', '2108160007', '1', '1', 'upload_files/candidate_tracker/91408640688_Shan cv02.pdf', NULL, '3', '2021-08-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Not Turned Up', '2', '1', '0', '1', '1', '0', '2', '2021-08-18', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-16 01:07:05', 1, '2021-08-16 01:22:45', 0, NULL, 1),
(5901, 'yogesh r', '23', '9710742016', '9840752333', 'yogeshh.dev@gmail.com', '2000-12-25', 20, '2', '2', 'ravi g', 'student', 17000.00, 1, 0.00, 12000.00, 'west tambaram', 'west tambaram', '2108160008', '1', '1', 'upload_files/candidate_tracker/29365478101_Yogesh.pdf', NULL, '1', '2021-08-17', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-16 01:16:26', 1, '2021-08-16 01:32:41', 0, NULL, 1),
(5902, 'Mohamed saleem', '23', '9042275161', '', 'tmdsaleem5161@gmail.com', '1996-04-06', 25, '2', '2', 'Shakila begum', 'House wife', 3.50, 2, 3.00, 5.00, 'Tambaram', 'Tambaram', '2108160009', '1', '2', 'upload_files/candidate_tracker/93817723146_Resume-2021.pdf', NULL, '1', '2021-08-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-16 01:30:36', 1, '2021-08-16 01:58:50', 0, NULL, 1),
(5903, '', '0', '7339269290', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108160010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-16 01:44:09', 0, NULL, 0, NULL, 1),
(5904, 'Anil kumar', '5', '8074172995', '', 'anil522kumar@gmail.com', '1996-06-20', 25, '2', '1', 'yadaiah', 'rtd', 40000.00, 2, 0.00, 20000.00, 'hyderabad', 'lb nagar', '2108160011', '1', '1', 'upload_files/candidate_tracker/42735351112_resume of Anil (1)-converted.pdf', NULL, '2', '2021-08-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-16 02:54:59', 1, '2021-08-16 02:59:48', 0, NULL, 1),
(5905, '', '0', '9884237296', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108160012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-16 02:59:56', 0, NULL, 0, NULL, 1),
(5906, 'bhuvanesh', '4', '9600114887', '', 'bhuvi.groups@gmail.com', '1996-05-27', 25, '2', '2', 'saravanan', 'business man', 40000.00, 1, 9500.00, 10000.00, 'pandur', 'chennai', '2108160013', '1', '2', 'upload_files/candidate_tracker/40273497692_bhuvi resume.pdf', NULL, '1', '2021-08-17', 0, '', '3', '59', '2021-08-19', 120000.00, '', '0', NULL, '1', 'Selected for Tiruvallur with CTC 120000 in cash mode', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-16 04:40:12', 1, '2021-08-16 04:43:07', 0, NULL, 1),
(5907, '', '0', '6379805958', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108160014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-16 06:16:08', 0, NULL, 0, NULL, 1),
(5908, '', '0', '0445845763', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108160015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-16 07:30:30', 0, NULL, 0, NULL, 1),
(5909, 'Anandhi Munusami', '2', '9445845763', '9445273383', 'anandhi19199@gmail.com', '1999-01-19', 22, '2', '2', 'Munusami', 'Meson', 15000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2108160016', '1', '1', 'upload_files/candidate_tracker/5339287350_an andhi final resume21.pdf', NULL, '1', '2021-08-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'No Update', '2', '1', '0', '1', '1', '0', '2', '2021-08-18', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-16 07:47:42', 1, '2021-08-16 08:03:34', 0, NULL, 1),
(5910, 'Dhanushwaran R', '4', '7845360818', '9159360760', 'Dhanush15101998@gamil.com', '1998-10-15', 22, '4', '2', 'Raja', 'Men\'s ware', 20000.00, 1, 0.00, 12000.00, 'Manavalanagar', 'Manavalanagar', '2108170001', '', '1', 'upload_files/candidate_tracker/58936600368_Dhanushwaran resume .docx', NULL, '1', '2021-08-17', 0, '', '3', '59', '2021-08-19', 120000.00, '', '0', NULL, '1', 'selected for Tiruvallur team with CTC 120000 Cash mode', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-17 10:36:54', 1, '2021-08-17 10:46:06', 0, NULL, 1),
(5911, 'G n arunkumar', '6', '9094004142', '9789961153', 'Kumarun97@gmail.com', '1997-09-23', 23, '1', '2', 'Nageshwar Rao', 'Southern railway', 15000.00, 1, 16500.00, 18000.00, 'EGMORE', 'EGMORE', '2108170002', '', '2', 'upload_files/candidate_tracker/66439844400_ARUN\'s Resume 2 updates .pdf', NULL, '1', '2021-08-17', 0, 'P1191', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Salary Exp is very high and no relevant sales Exp', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-17 11:23:07', 1, '2021-08-17 11:31:04', 0, NULL, 1),
(5912, 'Praveen raj T', '13', '9962841576', '', 'tpraveenraj78@gmail.com', '1998-12-18', 22, '2', '2', 'Thangaraj', 'Business', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2108170003', '1', '1', 'upload_files/candidate_tracker/59242487351_PRAVEEN.resume1.docx', NULL, '1', '2021-08-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-17 11:39:44', 1, '2021-08-17 11:47:24', 0, NULL, 1),
(5913, 'Srinivasan.p', '4', '8939169917', '9176844774', 'snakeskilsarts@gmail.com', '2000-09-17', 20, '2', '2', 'Pushpa.p', 'Housemaid', 15.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2108170004', '1', '1', 'upload_files/candidate_tracker/71263501_Srinivasan _ PDF.pdf', NULL, '1', '2021-08-17', 0, '', '3', '8', '2021-10-25', 168000.00, '', NULL, '2023-07-04', '2', 'came with his girlfriend and will not join without her, expt is 12k. no neck button and prefers backend job.', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '9', 'Came for an interview on 20/Oct/21,Interviewed by Arun HR Team and the 2nd level initerview by Kannan.Candidate got selected for RE position with PF/ESI/PT Deductions', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-08-17 11:48:25', 60, '2021-10-23 10:30:54', 0, NULL, 1),
(5914, 'B. Keerthana', '4', '8925098001', '6380617962', 'Keerthanabaskaran2020@gmail.com', '1999-10-20', 21, '2', '2', 'B. Jermila', 'Housemaid', 7000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2108170005', '1', '1', 'upload_files/candidate_tracker/94768496198_KEERTHANA-converted.pdf', NULL, '1', '2021-08-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'came with her friend, will not join without him, expt is 12k and not speaking up, will not suite for calling.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-17 11:50:16', 8, '2021-08-17 05:48:33', 0, NULL, 1),
(5915, '', '0', '9003280701', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108170006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-17 12:09:29', 0, NULL, 0, NULL, 1),
(5916, '', '0', '7639630260', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108170007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-17 12:46:02', 0, NULL, 0, NULL, 1),
(5917, 'Arun Kumar K', '23', '7010746544', '7639630260', 'Karunkumartech@gmail.com', '1997-05-16', 24, '2', '2', 'Malliga K', 'Home maker', 1.00, 1, 16000.00, 22000.00, 'Thiruvidaimaruthur, kumbakonam', 'Thiruvidaimaruthur', '2108170008', '1', '2', 'upload_files/candidate_tracker/5190547676_Arun kumar.pdf', NULL, '1', '2021-08-23', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-17 01:27:23', 1, '2021-08-17 01:34:56', 0, NULL, 1),
(5918, 'Peter Abhishek', '4', '8778936201', '9791104571', 'peter.raju.14@gmail.com', '2000-06-15', 21, '3', '2', 'Nagesh', 'Bcom general', 20000.00, 2, 0.00, 15000.00, 'No 132 gandhi road Velachery chennai', 'No 132 gandhi road Velachery', '2108170009', '', '1', 'upload_files/candidate_tracker/77941271075_peter%20resume.docx', NULL, '1', '2021-08-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, has 1m in yes bank credit card. ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-17 02:43:04', 1, '2021-08-17 02:50:58', 0, NULL, 1),
(5919, 'Priyadharshini.V', '4', '8056263753', '', 'priyagathu1204@gmail.com', '2001-05-04', 20, '3', '2', 'Vijayaraghavan.v', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Velachery', 'Velachery', '2108170010', '', '1', 'upload_files/candidate_tracker/31483509410_RESUME-PRIYADHARSHINI.pdf', NULL, '1', '2021-08-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'just came with friend for interview and attended, expt is 18k, and no Relevant exp. done her part time job in holiday package.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-17 02:43:48', 1, '2021-08-17 03:17:08', 0, NULL, 1),
(5920, 'Renshy Sheethal Bobby', '4', '7550150961', '', 'sheethalbobby2911@gmail.com', '2000-11-29', 20, '3', '2', 'Juliet selvi Nirmala devi', 'House wife', 11000.00, 1, 0.00, 20000.00, 'Velachery', 'Velachery', '2108170011', '', '1', 'upload_files/candidate_tracker/98549756717_rsb resume new.docx', NULL, '1', '2021-08-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Salary Expectation Is Very High. Being A Fresher Take Home Expectation Is Around 12-13K For Elite.Will not sustain for a long', '1', '2', '0', '1', '1', '0', '2', '2021-08-20', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-17 02:43:52', 1, '2021-08-17 02:49:16', 0, NULL, 1),
(5921, '', '0', '9344002435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108170012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-17 02:59:06', 0, NULL, 0, NULL, 1),
(5922, 'mohamed yusuff.u', '2', '8489366366', '6381846455', 'u.mdyusuff22@gmail.com', '1998-09-22', 22, '2', '2', 'umarul farook.n', 'business', 20000.00, 3, 0.00, 10000.00, 'chennai', 'chennai', '2108170013', '1', '1', 'upload_files/candidate_tracker/54704247562_yusuff res.docx', NULL, '1', '2021-08-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no Focus towards his Career and no idea about it, will not sustain, ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-17 03:11:40', 1, '2021-08-18 01:37:39', 0, NULL, 1),
(5923, 'lokesh', '4', '8939153861', '', 'lokeshselvam1819@gmail.com', '2001-06-18', 20, '2', '2', 'selvam', 'business', 16000.00, 1, 0.00, 10000.00, 'mylapore', 'mylapore', '2108170014', '1', '1', 'upload_files/candidate_tracker/97853190494_Lokesh.docx', NULL, '1', '2021-08-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'from krishnagiri, doing his PG in Correspondence so looking for job, no job need, expt is 15k not speaking up, very slow. ', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-17 03:15:53', 1, '2021-08-17 03:19:46', 0, NULL, 1),
(5924, 'Chaithanya.l', '4', '8056383197', '9894751256', 'lchaithanya550@gmail.com', '1994-12-13', 26, '2', '1', 'M.loganathan', 'Chennai', 30000.00, 2, 0.00, 10000.00, 'Thiruvallur', 'Thiruvallur', '2108170015', '1', '1', 'upload_files/candidate_tracker/86623580962_CURRICULUM VITAE chaithu.docx', NULL, '1', '2021-08-17', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'She cant speak tamil fluently', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-17 03:25:18', 1, '2021-08-17 03:45:33', 0, NULL, 1),
(5925, 'nandhini', '4', '8428389908', '', 'nandhukutty2913@gmail.com', '2000-10-29', 20, '2', '2', 'shriram', 'painter', 8000.00, 1, 0.00, 10000.00, 'tondairpet', 'Tondairpet', '2108170016', '1', '1', 'upload_files/candidate_tracker/46722846970_resume (15).pdf', NULL, '1', '2021-08-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, said very nervous and expt is 10-12k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-17 03:31:00', 1, '2021-08-17 04:00:12', 0, NULL, 1),
(5926, 'Balamurugan.k', '23', '9500936674', '9655126411', 'bala230397@gmail.com', '1997-03-23', 24, '2', '2', 'Kala', 'Manager', 840000.00, 1, 18.00, 28.00, 'Coimbatore', 'Annur', '2108170017', '1', '2', 'upload_files/candidate_tracker/60360074858_Bala resume.pdf', NULL, '2', '2021-08-18', 0, '', '8', '27', NULL, 0.00, '', '0', NULL, '1', 'Task Not Completed', '2', '2', '0', '1', '1', '0', '2', '2021-08-20', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-17 04:24:40', 1, '2021-08-17 04:31:29', 0, NULL, 1),
(5927, 'Murugeshwari', '2', '9360714162', '9597773380', 'murugeshwari1905@gmail.com', '1998-05-19', 23, '2', '2', 'Thirunavukkarasu .A', 'Coolie', 10000.00, 1, 0.00, 15000.00, 'Trichy', 'Nerkundram,Chennai', '2108180001', '1', '1', 'upload_files/candidate_tracker/60024831325_murugeshwari_2021 resume.pdf', NULL, '1', '2021-08-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1yr exp in calling 12k, expt is 15k, done 3m online internship, has family commitment and expt is 15k, has to discuss about service agreement with parents.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 10:44:45', 1, '2021-08-19 11:40:01', 0, NULL, 1),
(5928, 'Sam Stephen', '2', '6379568940', '', 'immanuelsam.t@gmail.com', '1995-04-19', 26, '2', '2', 'tennis raju', 'teacher', 20000.00, 3, 0.00, 300000.00, 'Tenkasi', 'Tenkasi', '2108180002', '1', '1', 'upload_files/candidate_tracker/26253743405_SAM_STEPHEN_2021_IT.pdf', NULL, '2', '2021-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 10:57:01', 1, '2021-08-18 12:13:32', 0, NULL, 1),
(5929, 'Lalith', '2', '6381010852', '8825827046', 'lalithsampath2000@gmail.com', '2000-09-18', 20, '2', '2', 'Sampath Kumar', 'Business', 4.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2108180003', '1', '1', 'upload_files/candidate_tracker/14927473531_LALITH resume.docx', NULL, '1', '2021-08-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response', '2', '2', '', '1', '1', '', '2', '2021-08-19', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-18 11:20:08', 7, '2021-08-18 01:00:08', 0, NULL, 1),
(5930, 'K.askar ali', '4', '7539909037', '', 'askarali80258@gmail.com', '2000-09-07', 20, '2', '2', 'Kamaludeen', 'Driver', 24000.00, 2, 0.00, 12000.00, 'Elleri', 'Chennai vellacheri', '2108180004', '1', '1', 'upload_files/candidate_tracker/80657677196_Askar pdf new.pdf', NULL, '1', '2021-08-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, not speaking up and expt is 12k.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-18 01:16:20', 1, '2021-08-18 01:21:01', 0, NULL, 1),
(5931, 'M.pradheepa', '4', '6382699711', '', 'Deepapapiradeepa@gmail.com', '2000-09-17', 20, '2', '2', 'Mahendhiran', 'Cattering', 15000.00, 2, 0.00, 12000.00, 'Chidhabaram', 'Pallavaram', '2108180005', '1', '2', 'upload_files/candidate_tracker/64284656404_askar2.pdf', NULL, '1', '2021-08-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling, no flow and not speaking up and no language and expt is 15k. ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-18 01:16:25', 8, '2021-08-18 06:03:55', 0, NULL, 1),
(5932, 'Santhosh', '23', '6381926406', '8220505742', 'santhoshraina97@gmail.com', '1997-06-29', 24, '2', '2', 'Tamilmaran', 'Formar', 40000.00, 0, 0.00, 400000.00, 'Mannargudi', 'Mannargudi', '2108180006', '1', '2', 'upload_files/candidate_tracker/59681248918_1625577125992Resume_santhosh.docx', NULL, '3', '2021-08-19', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '2', '0', '1', '1', '0', '2', '2021-08-21', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 01:21:15', 1, '2021-08-18 02:53:55', 0, NULL, 1),
(5933, '', '0', '8072775019', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108180007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-18 01:39:46', 0, NULL, 0, NULL, 1),
(5934, 'Sowndarya', '23', '9655469322', '', 'sowndhchandran@gmail.com', '1995-05-19', 26, '2', '2', 'Ravichandran', 'Assessor (EB)', 40000.00, 1, 15.00, 30.00, 'Thanjavur', 'Velachery', '2108180008', '1', '2', 'upload_files/candidate_tracker/55609672134_sowndharya.pdf', NULL, '3', '2021-08-19', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-08-21', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 02:05:03', 1, '2021-08-18 04:01:52', 0, NULL, 1),
(5935, 'dasarathy', '23', '8220006682', '', 'dasforu92@gmail.com', '1992-07-08', 29, '2', '2', 'ethiraj', 'business', 5000.00, 1, 15000.00, 25000.00, 'chennai', 'chennai', '2108180009', '1', '2', 'upload_files/candidate_tracker/6852794491_Das CV-2-compressed.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'he is a graphics designer, doesnt know html css, will not suite for us.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 03:04:29', 1, '2021-08-18 04:53:26', 0, NULL, 1),
(5936, 'Sreedhar reddy', '5', '9100646545', '', 'Sreedharreddy5555@gmail.com', '1998-06-04', 23, '2', '2', 'thirumala reddy', 'own business', 100000.00, 1, 21000.00, 25000.00, 'hyderabad', 'gachibowli', '2108180010', '1', '2', 'upload_files/candidate_tracker/25791973151_Resume (18).pdf', NULL, '2', '2021-08-19', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Not Attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-18 03:08:32', 1, '2021-08-18 03:11:45', 0, NULL, 1),
(5937, 'Shobith vs', '23', '7904716549', '', 'vsshobith@gmail.com', '1996-05-10', 25, '2', '2', 'Suresh V', 'Retired', 5000.00, 0, 0.00, 20000.00, 'Tirunelveli', 'Tirunelveli', '2108180011', '1', '2', 'upload_files/candidate_tracker/82154706014_Shobith CV.pdf', NULL, '2', '2021-08-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Completed', '2', '1', '', '1', '1', '', '2', '2021-08-21', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 03:39:10', 50, '2021-08-19 09:55:26', 0, NULL, 1),
(5938, 'Mohanasundari', '23', '9626442301', '6381831903', 'monikapandiyan@gmail.com', '1993-09-11', 27, '2', '1', 'Nandakumar', 'Application support manager', 50000.00, 2, 240000.00, 350000.00, 'Chennai', 'Chennai', '2108180012', '1', '2', 'upload_files/candidate_tracker/31798453411_Mohanasundari 2021 resume.pdf', NULL, '1', '2021-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 03:44:24', 1, '2021-08-18 03:48:43', 0, NULL, 1),
(5939, '', '0', '9042080726', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108180013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-18 03:52:02', 0, NULL, 0, NULL, 1),
(5940, 'Pranay Mahojwal', '5', '7780562122', '', 'pranaykommu861@gmail.com', '1995-05-31', 26, '2', '2', 'udey kumar', 'govt employee', 80000.00, 1, 19000.00, 27000.00, 'hyderabad', 'akthapur', '2108180014', '1', '2', 'upload_files/candidate_tracker/2126553372_Resume (6).docx', NULL, '2', '2021-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-18 04:23:26', 1, '2021-08-18 04:26:51', 0, NULL, 1),
(5941, 'Aravinth', '23', '9003747874', '8248454956', 'aravimailme@gmail.com', '1996-05-27', 25, '2', '2', 'Kumaralingam', 'LIC agent', 100000.00, 1, 288000.00, 360000.00, 'Coimbatore', 'Coimbatore', '2108180015', '1', '2', 'upload_files/candidate_tracker/48007335195_aravi resume Graphic designer.pdf', NULL, '2', '2021-08-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Completed', '2', '1', '', '1', '1', '', '2', '2021-08-21', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 05:14:06', 50, '2021-08-19 09:55:58', 0, NULL, 1),
(5942, 'mohana vel. v', '4', '9080188253', '9498037215', 'akashaks789@gmail.com', '1999-12-27', 21, '4', '2', 'Vishwanathan , Vijaya lakshmi', 'private company', 30000.00, 1, 0.00, 15000.00, 'manavala Nagar', 'manavala nagar', '2108190001', '', '1', 'upload_files/candidate_tracker/5107758695_Mohanavelu.pdf', NULL, '1', '2021-08-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-19 10:13:24', 1, '2021-08-19 11:26:50', 0, NULL, 1),
(5943, 'muthukumar', '6', '8072227453', '', 'muthukumar99muthu@gmail.com', '1999-07-29', 22, '2', '2', 'esakimuthu', 'hotel business', 20000.00, 1, 15000.00, 15000.00, 'chennai', 'velachery', '2108190002', '1', '2', 'upload_files/candidate_tracker/22889582075_resume-che1.doc', NULL, '1', '2021-08-20', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'applied twice ', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-19 11:26:14', 1, '2021-08-19 11:28:11', 0, NULL, 1),
(5944, 'Akilandeswari B', '2', '9025755792', '9894409698', 'bjakils145@gmail.com', '1996-07-05', 25, '2', '2', 'K. Balu', 'Rtrd Bank Employee', 10000.00, 4, 0.00, 15000.00, 'Trichy', 'Chennai', '2108190003', '1', '1', 'upload_files/candidate_tracker/12842530612_Akilandeswari CV.pdf', NULL, '1', '2021-08-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Has 1yr Exp In Calling 12k, Expt Is 15k  Has Family Commitment And Expt Is 13-15k, Has To Discuss About Service Agreement With Parents.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 11:30:52', 1, '2021-08-19 11:37:28', 0, NULL, 1),
(5945, 'Hariprasath', '4', '7339424268', '', 'Hariprasanthv99@gmail.com', '1999-10-04', 21, '3', '2', 'Velu', 'Railway', 50.00, 2, 0.00, 15.00, 'Kadambathur', 'Kadambathur', '2108190004', '', '1', 'upload_files/candidate_tracker/98586636817_HARI PRSANTH RESUME.docx', NULL, '1', '2021-08-19', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', 'expectation salary high and he is searching job for  foreign .', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-19 11:51:41', 1, '2021-08-19 11:56:17', 0, NULL, 1),
(5946, 'Bhaskar', '23', '9014577191', '9014251889', 'shanigarambhaskar222@gmail.com', '1997-09-29', 23, '2', '2', 'Shanigaram', 'Farmer', 6000.00, 2, 0.00, 14000.00, 'Hyderabad', 'Secunderabad', '2108190005', '1', '1', 'upload_files/candidate_tracker/73276897092_bhaskar pdf.pdf', NULL, '2', '2021-08-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 12:21:11', 1, '2021-08-19 12:24:03', 0, NULL, 1),
(5947, 'L.MADHUMITHA', '4', '9940812577', '8870619612', 'lanumadhumitha@gmail.com', '2001-05-04', 20, '1', '2', 'K.loganathan', 'Coolie', 20000.00, 1, 0.00, 12000.00, 'Vishnuvakkam Village  thiruvallur', 'Vishnuvakkam village thiruvallur Landmark', '2108190006', '', '1', 'upload_files/candidate_tracker/179874781_RESUME(2).pdf', NULL, '1', '2021-08-19', 0, 'R55568', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-19 12:27:28', 1, '2021-08-19 12:46:55', 0, NULL, 1),
(5948, 'Robert Bernard', '27', '9000654731', '6383849105', 'rbernard448@gmail.com', '1999-11-09', 21, '2', '2', 'Paul Victor', 'Not working', 50000.00, 2, 0.00, 11000.00, 'No 20, vandikaran Street, West Mambalam', 'Chennai', '2108190007', '1', '1', 'upload_files/candidate_tracker/14912207269_Robert Bernard CV-1.pdf', NULL, '1', '2021-08-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Client Round Reject', '2', '1', '0', '1', '1', '0', '2', '2021-09-03', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 01:37:43', 1, '2021-08-19 01:44:19', 0, NULL, 1),
(5949, 'Priya A', '27', '8489865430', '', 'priya1998vr@gmail.com', '1997-05-05', 24, '2', '2', 'Arumugam', 'Farmer', 1.00, 3, 0.00, 2.50, 'Ramanathapuram', 'Chennai- Tambaram', '2108190008', '1', '1', 'upload_files/candidate_tracker/57269477796_priya java dotnet resume12.pdf', NULL, '1', '2021-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 02:32:05', 1, '2021-08-19 02:44:17', 0, NULL, 1),
(5950, 'R. Kathirvel', '2', '8056083821', '8637409350', 'kathirvel082@gmail.com', '1997-10-01', 23, '2', '2', 'R. Ranganathan', 'Plumber', 12000.00, 1, 0.00, 10000.00, 'No 26/200 South West Boag Road T. Nagar chennai-17', 'No, 26/200 South West Boag Road T. Nagar Ch-17', '2108190009', '1', '1', 'upload_files/candidate_tracker/22059107274_Kathirvel R resume.pdf', NULL, '1', '2021-08-20', 0, '', '4', '54', NULL, 0.00, '', '', '2021-10-05', '1', 'has 3m internship exp, looking for internship, willing to learn, okay with our terms and conditions.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 02:37:14', 1, '2021-08-19 03:16:50', 0, NULL, 1),
(5951, 'Nelson Pugalenthi T', '6', '9080523145', '8695514508', 'nelsonthiyagu84@gmail.com', '1999-10-26', 21, '1', '2', 'Thiyagaraj', 'Business', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Iyyappanthangal', '2108190010', '', '1', 'upload_files/candidate_tracker/16861838863_Nelson_resume-converted.pdf', NULL, '1', '2021-08-19', 0, 'P1002', '3', '59', '2021-08-26', 156000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar team with CTC 156000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-19 02:49:53', 60, '2021-08-24 04:50:14', 0, NULL, 1),
(5952, 'Lakshmi Sruthi K', '27', '6382515367', '', 'sruthi24598@gmail.com', '1998-05-24', 23, '2', '2', 'KALIRAJAN K', 'Worker', 25000.00, 2, 0.00, 200000.00, 'Sivakasi', 'Sivakasi', '2108190011', '1', '1', 'upload_files/candidate_tracker/4074418440_Resume (1).docx', NULL, '2', '2021-08-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much clear into Dotnet. already she received an offer for 8K in native and her expectation seems to very high.Sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 02:58:46', 1, '2021-08-19 03:03:06', 0, NULL, 1),
(5953, 'siva', '4', '9677058667', '', 'sivasmart483@gmailcom', '1997-12-16', 23, '2', '2', 'ramu', 'working', 40000.00, 1, 0.00, 10000.00, 'chennai', 'tnagar', '2108190012', '1', '1', 'upload_files/candidate_tracker/83703519749_RESUM SIVA . R.pdf', NULL, '1', '2021-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-19 03:36:34', 1, '2021-08-19 03:39:50', 0, NULL, 1),
(5954, 'M Logesh', '2', '7010404227', '', 'msvlogesh@gmail.com', '1999-09-28', 21, '2', '2', 'R Marimuthu', 'Mechanic', 40000.00, 2, 0.00, 20000.00, '33 C 1/B Ottampatti kovil street, Chettiyarpatti', '33 C 1/B Ottampatti Kovil Street, Chettiyarpatti', '2108190013', '1', '1', 'upload_files/candidate_tracker/57825082811_Logesh Resume(IT).pdf', NULL, '1', '2021-08-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 03:45:35', 1, '2021-08-19 06:53:18', 0, NULL, 1),
(5955, 'Avinash Vasudevan', '2', '8072852332', '9080541852', 'avinashvasu98@gmail.com', '1998-11-03', 22, '2', '2', 'v. vasudevan', 'process server', 30000.00, 1, 0.00, 150000.00, 'Chennai', 'Chennai', '2108190014', '1', '1', 'upload_files/candidate_tracker/62203154806_RESUME.pdf', NULL, '1', '2021-08-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our profile, not clear about his Career and has to discuss with parents regarding agreement ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 03:55:55', 1, '2021-08-19 04:06:37', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5956, '', '0', '7094362587', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108190015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-19 05:33:24', 0, NULL, 0, NULL, 1),
(5957, 'saran kumar', '27', '7824099908', '', 'saranmessi90@gmail.com', '1990-01-30', 31, '2', '2', 't.subramani', 'farmer', 25000.00, 1, 0.00, 15000.00, 'kaveripakkam', 'kavangarai', '2108190016', '1', '1', 'upload_files/candidate_tracker/14459348176_Resume.docx', NULL, '1', '2021-08-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'client round reject', '2', '1', '0', '1', '3', '0', '2', '2021-09-01', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 09:54:23', 1, '2021-08-19 10:00:39', 0, NULL, 1),
(5958, 'nagarjunan', '23', '9677136975', '', 'nagaarjunan0975@gmail.com', '1996-09-28', 24, '2', '2', 'nagarajan', 'Business', 20000.00, 1, 15000.00, 20000.00, 'porur', 'porur', '2108190017', '1', '2', 'upload_files/candidate_tracker/1740363512_Nagarjunan_resume.pdf', NULL, '1', '2021-08-21', 15, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Less knowledge about UI/UX', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 10:38:38', 1, '2021-08-19 10:44:13', 0, NULL, 1),
(5959, 'Nithyanandhan Thangaraj', '2', '8248173392', '', 'nititechi@gmail.com', '1997-01-05', 24, '2', '1', 'Thangaraj', 'Business', 20000.00, 0, 0.00, 150000.00, 'Erode', 'Erode', '2108200001', '1', '1', 'upload_files/candidate_tracker/54954735682_Resume of Nithyanandhan-19July.docx', NULL, '1', '2021-08-21', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '1', 'check for internship, willing to learn, already working in sony 1.5l.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-20 08:13:47', 1, '2021-08-20 08:21:38', 0, NULL, 1),
(5960, 'Siva. R', '4', '9150528846', '9677058667', 'Sivasmart483@gmail.com', '1997-12-16', 23, '2', '2', 'Mr.E.Ramu', 'Driver', 30000.00, 1, 7000.00, 15000.00, 'No.133 4 th St, J.J.R nager, vyasarpadi,ch-39', 'NO. 9,B Block ,R.k puram, north usman road , ch.17', '2108200002', '1', '2', 'upload_files/candidate_tracker/18345197971_RESUM SIVA . R.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 5yr exp in ngo into teaching, will not handle pressure and expt is 15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-20 10:14:02', 1, '2021-08-20 10:31:19', 0, NULL, 1),
(5961, '', '0', '9080555201', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108200003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-20 10:39:52', 0, NULL, 0, NULL, 1),
(5962, 'Manikandan P', '4', '9884870817', '', 'kandanmani1030@gmail.com', '2000-10-30', 20, '2', '2', 'Perumal K', 'Coolie', 8000.00, 1, 0.00, 10000.00, 'Tiruvallur', 'Tiruvallur', '2108200004', '1', '1', 'upload_files/candidate_tracker/90930733183_Manikandan_Color Format – 03.pdf', NULL, '1', '2021-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-20 10:40:55', 1, '2021-08-20 10:51:47', 0, NULL, 1),
(5963, 'Santhosh', '4', '8838773760', '9994225755', 'Santhoshgsan08@gmail.com', '2006-08-20', 15, '2', '2', 'Kandhalashmy', 'Government', 8000.00, 2, 12000.00, 1.00, 'Dharmapuri', 'Teynapet', '2108200005', '1', '2', 'upload_files/candidate_tracker/4927202556_1625898988407_1625898984825_santhosh_Resume_-2 (1).docx', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no clarity in speech, expt sal is also high.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-20 10:41:58', 1, '2021-08-20 10:57:01', 0, NULL, 1),
(5964, 'saeavana', '6', '9176178235', '', 'saravanansmart227@gmail.com', '2000-11-09', 20, '2', '2', 'kamalakannan', 'daily wages', 10000.00, 0, 0.00, 10000.00, 'Maduravoyul', 'maduravoyul', '2108200006', '1', '1', 'upload_files/candidate_tracker/25473451405_Document [PDFScanner] 2021-7-20 10.56.49.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '1', '3', '0', '2', '2021-08-23', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-20 10:45:04', 1, '2021-08-20 11:22:32', 0, NULL, 1),
(5965, 'Muthukumar', '6', '8675892862', '8072227453', 'muthukumar99muthu@gmail.com', '1999-07-29', 22, '2', '2', 'Esakkimuthu', 'Coolee', 15000.00, 1, 18000.00, 17000.00, 'Vellacherry', 'Vellacherry, Chennai', '2108200007', '1', '2', 'upload_files/candidate_tracker/11375397727_resume-che1.doc', NULL, '1', '2021-08-20', 0, '', '3', '59', '2021-08-24', 192000.00, '', '4', '2022-03-01', '1', 'Selected for Kannan Team with CTC 192000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-20 11:03:00', 60, '2021-08-23 07:08:53', 0, NULL, 1),
(5966, 'Gogul', '4', '7904319200', '9843405114', 'gokuldx2000@gmail.com', '2001-07-09', 20, '3', '2', 'Parent', 'B. Com(general)', 17000.00, 1, 0.00, 13000.00, 'Thiruvallur', 'Thiruvallur', '2108200008', '', '1', 'upload_files/candidate_tracker/59426551854_Gogul.n Resume.docx', NULL, '1', '2021-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-20 11:19:43', 1, '2021-08-20 11:26:42', 0, NULL, 1),
(5967, 'S.Gopalakrishnan', '4', '9514101231', '7373224427', 'gopalakrishnan3800@gmail.com', '2000-12-11', 20, '4', '2', 'S.Sivalingam', 'Welder', 10000.00, 1, 0.00, 10000.00, 'Changalpattu', 'Changalpattu', '2108200009', '', '1', 'upload_files/candidate_tracker/65924474405_Resume 11.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no flow in speech, will not suite for calling, from chengalpet too long', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-20 11:50:47', 1, '2021-08-20 11:58:10', 0, NULL, 1),
(5968, 'Sridhar', '6', '9840458368', '6383298520', 'dsridhar3001@gmail.com', '1989-01-30', 32, '4', '1', 'Mahalakshmi', 'No', 50000.00, 1, 21000.00, 25000.00, 'Chrompet', 'Chrompet', '2108200010', '', '2', 'upload_files/candidate_tracker/24213095195_Sridhar_Sri.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales profile, past 2yr he was ideal and earning through rental shops, will not sustain.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-20 11:51:23', 1, '2021-08-20 12:00:05', 0, NULL, 1),
(5969, 'Dinesh.k', '4', '7358463124', '', 'Dineshkarunanidhi26@gmail.com', '2006-08-21', 0, '2', '2', 'Vijayalakshmi.K', 'export', 10000.00, 0, 0.00, 10000.00, 'Chennai', 'kolathur', '2108210001', '3', '1', 'upload_files/candidate_tracker/71889050217_k RESUME (1)-converted.pdf', NULL, '1', '2021-08-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, no flow in speech, fresher.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-21 10:34:06', 1, '2021-08-21 10:36:52', 0, NULL, 1),
(5970, 'Jeyalakshmi J', '4', '9176598571', '', 'jeyapretty2101@gmail.com', '2000-06-02', 21, '3', '2', 'Jayaraman v', 'Farmer', 50000.00, 3, 10500.00, 12000.00, 'Seruvaviduthi', 'Anakaputhur', '2108210002', '', '2', 'upload_files/candidate_tracker/10793595941_JEYALAKSHMI J_2017-2021_ Jerusalem college of engineering.pdf', NULL, '1', '2021-08-21', 0, '', '3', '59', '2021-08-23', 126000.00, '', '4', '2022-02-18', '2', 'Selected for Muthu team with TH 9975 Cash Mode', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Mail Sent for Joining', 'Mail Sent For Joining', '', '', NULL, NULL, NULL, 1, '2021-08-21 10:50:53', 60, '2021-09-09 10:31:14', 0, NULL, 1),
(5971, 'Rethinambal. S', '4', '9159945239', '', 'rethinambal153@gmail.com', '2000-03-15', 21, '3', '2', 'Senthilarasan', 'Farmer', 45000.00, 3, 0.00, 12000.00, 'Thanjavur', 'Anakaputhur', '2108210003', '', '1', 'upload_files/candidate_tracker/32563059027_Rethinambal .pdf', NULL, '1', '2021-08-21', 0, '', '3', '59', '2021-08-28', 120000.00, '', '6', '2021-09-04', '2', 'Selected for Muthu cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-21 11:03:43', 60, '2021-08-28 11:42:32', 0, NULL, 1),
(5972, 'Niveditha S', '4', '7550147991', '9444882099', 'nivedithasekar1999@gmail.com', '1999-12-17', 21, '2', '2', 'Padma Priya D', 'Teacher', 25000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2108210004', '1', '1', 'upload_files/candidate_tracker/94486176196_Niveditha resume.docx', NULL, '1', '2021-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Last week spoke and confirmed the CTC. She requested time for joining.28/Aug Tried reaching to confirm again and received a message stating that not  interested and she got selected in a Company through campus drive', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-21 11:46:06', 7, '2021-08-28 06:33:18', 0, NULL, 1),
(5973, 'Azarudheen k', '5', '9944131276', '9750755336', 'mk.azar1995@gmail.com', '1995-05-20', 26, '2', '2', 'nelson', 'hotel Business', 120000.00, 1, 20000.00, 23000.00, 'villupuram', 't.nagar', '2108210005', '3', '2', 'upload_files/candidate_tracker/38836561370_Azar Resume new.docx', NULL, '1', '2021-08-21', 0, '', '3', '59', '2021-08-30', 270000.00, '', '4', '2022-06-07', '1', 'Selected for GK Sir Team,2.7 LPA have been finalised after discussion with Gaurav sir on the Target given and salry hike post the completion of Target 2L in 2 month will be 25K in the candidate CTC from 3rd month', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-21 12:02:01', 60, '2021-08-26 01:22:29', 0, NULL, 1),
(5974, 'Logesh S', '5', '7358425657', '', 'logeshsrinivasa@gmail.com', '2006-08-21', 0, '1', '2', 'Srinivasan N', 'Auto Driver', 20000.00, 1, 18000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2108210006', '', '2', 'upload_files/candidate_tracker/87170859760_Resume_Lk_Format4.pdf', NULL, '1', '2021-08-21', 0, '5372', '3', '59', '2022-05-09', 240000.00, '', '6', '2022-06-15', '1', 'SElected for Manikandan Team - Pf/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-08-21 05:29:43', 60, '2022-05-05 05:43:46', 0, NULL, 1),
(5975, '', '0', '6381904809', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108220001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-22 06:58:01', 0, NULL, 0, NULL, 1),
(5976, '', '0', '9176294177', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108220002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-22 11:02:49', 0, NULL, 0, NULL, 1),
(5977, 'Deepiga Padmanaban', '27', '9976603028', '7200380420', 'deeps17.cs189@gmail.com', '2000-02-28', 21, '2', '2', 'padmanaban', 'weaver', 72000.00, 1, 0.00, 15000.00, 'Thanjavur.', 'Thanjavur.', '2108230001', '1', '1', 'upload_files/candidate_tracker/69451071791_Deepika.pdf', NULL, '3', '2021-08-23', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she doesnt have whats app and i have shared the link through normal sms twice and waiting her to connect more than 15mins. no response.', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-23 10:22:59', 50, '2021-08-23 11:40:16', 0, NULL, 1),
(5978, 'Jenish M', '2', '9789787417', '', 'jenishm502@gmail.com', '1998-08-06', 23, '2', '2', 'Mahendran.M', 'Coolie', 86000.00, 2, 0.00, 120000.00, 'Kanyakumari', 'Kanyakumari', '2108230002', '1', '1', 'upload_files/candidate_tracker/25379906391_JENISH M - Resume.doc', NULL, '2', '2021-08-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'already attened interview here for .net and Attend interview in nalm client company and got rejected. ', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-23 11:56:46', 1, '2021-08-23 11:59:57', 0, NULL, 1),
(5979, '', '0', '8438243454', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108230003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-23 01:45:07', 0, NULL, 0, NULL, 1),
(5980, '', '0', '9080692699', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108230004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-23 01:45:09', 0, NULL, 0, NULL, 1),
(5981, 'Valliappan Kittu', '3', '9894383122', '8489686346', 'ramuvalliappan11@gmail.com', '1998-04-11', 23, '2', '2', 'Kittu', 'Business', 23000.00, 2, 0.00, 20000.00, 'No:2 Pandiyanstreet, Bharathi Nagar,tharamani', 'No:2,Pandiyan Street , Bharathi Nagar,tharamani', '2108230005', '1', '1', 'upload_files/candidate_tracker/95731693526_CV_2021-08-17-123056.pdf', NULL, '1', '2021-08-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no update', '2', '1', '0', '1', '1', '0', '2', '2021-09-10', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-23 02:47:10', 1, '2021-08-23 02:58:39', 0, NULL, 1),
(5982, 'Vigneshwaran.S', '6', '8925118314', '9500049897', 'vigneshwarans942@gmail.com', '1996-04-07', 25, '1', '2', 'R.shanmugam', 'Carbandar', 600000.00, 1, 20000.00, 20000.00, 'Ramapuram', 'Ramapuram', '2108230006', '', '2', 'upload_files/candidate_tracker/63416535267_New Doc 2021-08-23 15.14.08_1.pdf', NULL, '1', '2021-08-23', 0, '5206', '3', '59', '2021-08-26', 192000.00, '', '3', '2021-11-01', '1', 'Selected for Arumbakkam with CTC 192000 includes PF/ESI/PT', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-23 02:58:38', 60, '2021-08-25 02:37:18', 0, NULL, 1),
(5983, 'sam vinstin', '3', '9486968300', '9894383122', 'samvinston1999@gmail.com', '1999-03-30', 22, '2', '2', 'sam sundar', 'ex army', 30000.00, 1, 0.00, 25000.00, 'kaniya kumari', 'tharamani', '2108230007', '1', '1', 'upload_files/candidate_tracker/22429830287_SAMS NEW RESUME.pdf', NULL, '1', '2021-08-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no update', '2', '1', '0', '1', '1', '0', '2', '2021-09-06', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-23 03:03:13', 1, '2021-08-23 03:09:16', 0, NULL, 1),
(5984, 'Mohammed Adhil', '27', '9344329274', '7448575922', 'adhil17999@gmail.com', '1999-09-17', 21, '2', '2', 'Sulthan maidhin', 'Textile merchandiser', 30000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2108230008', '1', '1', 'upload_files/candidate_tracker/4154726021_Ajju resume.pdf', NULL, '2', '2021-08-24', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Response', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-23 05:29:12', 50, '2021-08-24 10:07:09', 0, NULL, 1),
(5985, 'Samiu N', '3', '8248791299', '9500532473', 'samiu091997@gmail.com', '1997-10-09', 23, '2', '2', 'Nazeerullah', 'Mini grocery shop', 7000.00, 1, 0.00, 13000.00, 'Dharmapuri', 'Dharmapuri', '2108240001', '1', '1', 'upload_files/candidate_tracker/20426197664_samiu resume.pdf', NULL, '3', '2021-08-27', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 10:41:19', 1, '2021-08-24 10:45:43', 0, NULL, 1),
(5986, 'Manoj.S.P', '4', '9360831299', '9080066965', 'manojsuresh213@gmail.com', '2006-08-24', 0, '2', '1', 'G Suresh padmanaban', 'Business', 150000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2108240002', '1', '1', 'upload_files/candidate_tracker/8840380867_manoj resume.docx updated.docx', NULL, '1', '2021-08-24', 0, '', '3', '59', '1970-01-01', 132000.00, '', '2', '1970-01-01', '1', 'selected for Priyanka Team with PF/PT/ESI', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '', NULL, NULL, NULL, 1, '2021-08-24 11:08:16', 60, '2021-08-28 11:29:55', 0, NULL, 1),
(5987, 'Kishore Kumar.p', '5', '8072940089', '9500165803', 'Kishorekumar17826@gmail.com', '2000-01-09', 21, '3', '2', 'Padmanabhan', 'Office boy', 15000.00, 0, 0.00, 10000.00, 'Royapatten', 'Royapatten', '2108240003', '', '1', 'upload_files/candidate_tracker/68980752984_RESUME - 25-11-2019.pdf', NULL, '1', '2021-08-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for sales calling.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-24 11:33:50', 1, '2021-08-24 11:58:19', 0, NULL, 1),
(5988, 'Sheik ismail.n', '6', '6380381472', '9176045370', 'mohamedsheikismail8056@gmail.com', '1999-02-27', 22, '4', '2', 'Nagoor Meeran', '10th', 15000.00, 1, 0.00, 15000.00, 'Porur', 'Porur', '2108240004', '', '1', 'upload_files/candidate_tracker/57501328448_CV_2021-08-22-012642.pdf', NULL, '1', '2021-08-24', 0, '', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar team with PF/ESI/PT deductions', '5', '2', '1', '1', '1', '', '2', '2021-08-31', '2', '3', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2021-08-24 11:47:40', 60, '2021-08-31 01:23:36', 0, NULL, 1),
(5989, 'Rama krishnan', '2', '8531909247', '9677537478', 'ramkrish80988@gmail.com', '2000-12-21', 20, '3', '2', 'Meenatchi', 'Home maker', 30000.00, 2, 0.00, 12000.00, 'Kancheepuram', 'Chennai', '2108240005', '', '1', 'upload_files/candidate_tracker/33178917242_Ram krish newsss.pdf', NULL, '1', '2021-08-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'was doing his part time like promoting ads, no basic skills.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-24 11:53:24', 1, '2021-08-24 11:59:44', 0, NULL, 1),
(5990, 'Ajith Kumar E', '2', '9514776355', '9094559288', 'eajithkumara01@gmail.com', '1998-06-24', 23, '2', '2', 'Ethiraj S', 'Daily Wages', 96000.00, 1, 0.00, 15000.00, 'No.58 New Colony 12Th Main Road Anna Nagar Ch-40', 'No.58 New Colony 12Th Main Road Anna Nagar Ch-40', '2108240006', '1', '1', 'upload_files/candidate_tracker/12910357280_Ajith kumar resume.pdf', NULL, '1', '2021-08-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 12:24:41', 1, '2021-08-24 12:36:47', 0, NULL, 1),
(5991, 'M.V. Aahsvin Joe', '22', '9047569008', '7092059705', 'aahsvin01@gmail.com', '1998-10-01', 22, '2', '2', 'M. Mohan Raja Kumar', 'Construction', 20000.00, 1, 0.00, 5000.00, 'Thottavaram, Puthukkadai post, Kanyakumari- 629171', 'Chennai', '2108240007', '1', '1', 'upload_files/candidate_tracker/62099606630_Aahsvin Resume.pdf', NULL, '1', '2021-08-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'comm is below avg, can cut copy the blogs and worked as part timer and looking for job in DM.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 12:36:41', 1, '2021-08-24 12:42:36', 0, NULL, 1),
(5992, 'Vignesh C', '4', '9444476610', '7904831978', 'vigneshc2402@gmail.com', '1994-02-24', 27, '3', '2', 'M.Chandra Regu', 'Commercial Pvt Company', 25.00, 1, 15.00, 20.00, 'West Saidapet', 'Chennai', '2108240008', '', '2', 'upload_files/candidate_tracker/59219637756_VIGNESH RESUME.pdf', NULL, '1', '2021-08-24', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'was in loan and multiple bank backend process, will not suite for sales, not speaking up', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-24 12:47:04', 1, '2021-08-24 12:58:50', 0, NULL, 1),
(5993, 'niranjani.n', '11', '9566097454', '9840726087', 'niranjani1399@gmail.com', '1999-01-13', 22, '2', '2', 'naren dharan', 'Showroom Manager', 30000.00, 1, 0.00, 20000.00, 'perambur', 'perambur', '2108240009', '1', '1', 'upload_files/candidate_tracker/88460095342_resume .pdf', NULL, '1', '2021-08-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Preferred job in Accounts, got a mail from naukri and just came to attend interview. as fresher expt is 15k.', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 12:59:55', 1, '2021-08-24 01:05:16', 0, NULL, 1),
(5994, '', '0', '7826980717', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108240010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-24 02:22:02', 0, NULL, 0, NULL, 1),
(5995, 'Sakubar sathik.A', '4', '9751917976', '6379674305', 'mohammedsathik872@gmail.com', '1996-05-25', 25, '3', '2', 'Abdul kather', 'Textile', 30000.00, 2, 0.00, 13000.00, 'Sivagangai', 'Thamparam', '2108240011', '', '1', 'upload_files/candidate_tracker/80235182708_0_0_Resumen.docx', NULL, '1', '2021-08-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '20days as collection exe, will not sustain, can work for 6m. expt 15k', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-24 02:53:19', 1, '2021-08-24 02:58:46', 0, NULL, 1),
(5996, '', '0', '7871939617', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108240012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-24 03:36:47', 0, NULL, 0, NULL, 1),
(5997, 'hari prasath m', '22', '8760143503', '6379373954', 'hariprasath43503@gmail.com', '1999-02-27', 22, '2', '2', 'murugesan d', 'farmer', 25000.00, 1, 0.00, 11000.00, 'salem', 'salem', '2108240013', '1', '1', 'upload_files/candidate_tracker/76127265877_Resume_Hari prasath.docx', NULL, '1', '2021-08-30', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Plagiarism in task', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 03:49:29', 1, '2021-08-24 04:41:57', 0, NULL, 1),
(5998, 'vijaya sahadevan jayaram', '27', '8056218152', '', 'sahadevan1203@gmail.com', '1990-12-03', 30, '2', '2', 'jayaram', 'stock trader - dot net developer', 25000.00, 1, 0.00, 15000.00, 'ambattur oragadam chennai', 'chennai', '2108240014', '1', '1', 'upload_files/candidate_tracker/9519739179_VijayaSahadevan_Resume_2021.docx', NULL, '1', '2021-08-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'worst Performance, will not suite for any job. attitude was too bad.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 03:53:47', 1, '2021-08-24 04:35:41', 0, NULL, 1),
(5999, 'jayashree A', '2', '9384590373', '9176661765', 'jayashree1996a@gmail.com', '1996-12-14', 24, '2', '2', 'Anandan (father)', 'Tneb', 40000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2108240015', '1', '1', 'upload_files/candidate_tracker/44129085540_Resume2021.docx', NULL, '1', '2021-08-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'still working in css corp 2l ctc, looking for career change, expt is 3-4l.has to discuss about the document submission and service agreement with parents.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 04:00:08', 50, '2021-08-31 12:15:06', 0, NULL, 1),
(6000, '', '0', '9176661765', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108240016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-24 04:12:35', 0, NULL, 0, NULL, 1),
(6001, 'Aishwariya.y', '11', '7358516542', '7358479408', 'aishujuliet0622@gmail.com', '2000-05-22', 21, '2', '2', 'Yoganathan.V', 'Photo framer', 15000.00, 1, 0.00, 15000.00, 'Kolathur chennai', 'Kolathur chennai', '2108240017', '1', '1', 'upload_files/candidate_tracker/21046123725_Aishu Resume.docx', NULL, '1', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '6', '1', '', '1', '1', '', '2', '2021-08-30', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 04:23:15', 50, '2021-08-26 03:01:34', 0, NULL, 1),
(6002, 'manchikatla anjaneyulu', '2', '9705360840', '8341443079', 'anjm3025@gmail.com', '1993-05-15', 28, '2', '2', 'sambaiah', 'Business', 25000.00, 2, 0.00, 1.20, 'hyderabad', 'hyderabad', '2108240018', '1', '1', 'upload_files/candidate_tracker/79012206813_Resume (6).docx', NULL, '2', '2021-08-25', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 04:53:52', 50, '2021-08-25 10:10:27', 0, NULL, 1),
(6003, 'sireniu parson', '4', '7358419301', '', 'smsireniyu@gmail.com', '1994-02-13', 27, '2', '2', 'simion', 'Nil', 120000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2108240019', '1', '1', '0', NULL, '1', '2021-08-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling. not speaking up', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-24 05:30:18', 7, '2021-08-28 06:30:11', 0, NULL, 1),
(6004, 'SUTHAN R', '22', '7397719635', '9677886644', 'suthanrathinasamy13@gmail.com', '1997-11-13', 23, '2', '2', 'RATHINASAMY R', 'FARMER', 20000.00, 0, 0.00, 15000.00, 'Tiruppur', 'Coimbatore', '2108240020', '1', '1', 'upload_files/candidate_tracker/57343955397_Suthan new digital resume.pdf', NULL, '1', '2021-08-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for us, pursuing his degree in Journalism and interested in cine field.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 05:44:07', 1, '2021-08-24 08:54:12', 0, NULL, 1),
(6005, 'eswari.k', '4', '6382343611', '', 'lavanyakathir31@gmail.com', '1989-05-10', 32, '1', '1', 'kathirvel.k', 'driver', 20000.00, 2, 18000.00, 18000.00, 'orathur village', 'thiruvallur', '2108250001', '', '2', 'upload_files/candidate_tracker/81971158028_interview.pdf', NULL, '1', '2021-08-25', 0, 'r55567', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 10:22:47', 1, '2021-08-25 10:33:20', 0, NULL, 1),
(6006, 'B. sivakumar', '13', '8870694783', '', 'balusiva2312@gmail.com', '1999-12-23', 21, '2', '2', 'Revathi', 'Aranthangi', 16000.00, 1, 10000.00, 16000.00, 'Aranthangi, pudukkottai', 'Aranthangi, Pudukkottai', '2108250002', '1', '2', 'upload_files/candidate_tracker/72396833673_Sivakumar_Resume.pdf', NULL, '3', '2021-08-26', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 10:38:30', 1, '2021-08-25 10:44:06', 0, NULL, 1),
(6007, 'Sindhu M', '11', '9566216108', '', 'sindhumathi2498@gmail.com', '1998-04-02', 23, '2', '2', 'Mathivanan M', 'Asst Manager -OTIL pvt Ltd', 20000.00, 2, 0.00, 15000.00, 'Mylapore', 'Mylapore', '2108250003', '1', '1', 'upload_files/candidate_tracker/25249592997_Sindhu Mathivanan resume.docx', NULL, '1', '2021-08-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '2m internship in IIT at admin dept with 15k, not interested in core job, communication is good but expt is 15k+ fresher for us.', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 10:53:34', 1, '2021-08-25 11:05:44', 0, NULL, 1),
(6008, 'Dhanush kumar.R', '4', '7200159990', '7550244058', 'akashdhanush0809@gmail.com', '2000-09-08', 20, '2', '2', 'Ravi.N', 'Two wheeler Mechanic', 12000.00, 1, 0.00, 15000.00, 'J/10 Giriappa road,T Nagar,chennai-600017', 'Chennai', '2108250004', '1', '1', 'upload_files/candidate_tracker/36504277643_Resume.docx', NULL, '1', '2021-08-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, will not suite for calling.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-25 11:04:18', 1, '2021-08-25 11:12:04', 0, NULL, 1),
(6009, 'Nadhiya', '11', '9940228400', '', 'nadhinadhi@yahoo.com', '1989-11-01', 31, '2', '1', 'Rajkumar', 'Marketing', 25000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2108250005', '1', '2', 'upload_files/candidate_tracker/70048301088_mostRecent.docx', NULL, '1', '2021-08-28', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 11:21:30', 1, '2021-08-25 11:26:16', 0, NULL, 1),
(6010, 'Margoobur Rahman A', '2', '7092747677', '', 'margoobahmad619@gmail.com', '2000-06-23', 21, '2', '2', 'MD Hannan', 'Mosque(Mouzan)', 15000.00, 3, 0.00, 200000.00, 'CHENNAI', 'CHENNAI', '2108250006', '1', '1', 'upload_files/candidate_tracker/42961583748_RESUME ..docx', NULL, '1', '2021-08-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned up', '2', '1', '0', '1', '1', '0', '2', '2021-09-03', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 11:28:13', 1, '2021-08-25 11:37:56', 0, NULL, 1),
(6011, 'Johnet Roshini', '11', '9789429629', '7010373355', 'johnetroshini@gmail.com', '1996-06-17', 25, '2', '2', 'Sagaya Raja', 'Carpenter', 18000.00, 1, 0.00, 20000.00, 'Thirupatthur', 'Kk Nagar', '2108250007', '1', '1', 'upload_files/candidate_tracker/57005685502_Johnet Roshini Resume.pdf', NULL, '1', '2021-08-25', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 4m exp in operation (bank), couldnt handle pressure and 28k ctc, expt is 20k.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-25 11:34:13', 7, '2021-08-28 06:32:12', 0, NULL, 1),
(6012, 'Jenifer j', '4', '8939532845', '', 'jeniferjessyjk79@gmail.com', '1999-11-07', 21, '3', '2', 'K.jagadeesan', 'Kulli', 75000.00, 2, 0.00, 12000.00, 'N0.22,Adam ng, nagalkeni, Chennai - 44', 'N0.22,Adam Ng, Nagalkeni, Chennai_44', '2108250008', '', '1', 'upload_files/candidate_tracker/88215979291_Resume @ jeni.docx', NULL, '1', '2021-08-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not handle pressure, fresher and not speaking up', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 11:35:56', 1, '2021-08-25 12:20:18', 0, NULL, 1),
(6013, '', '0', '7358011161', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 11:40:52', 0, NULL, 0, NULL, 1),
(6014, 'Revathi shree', '11', '7825822999', '', 'revathiravi96.rr@gmail.com', '1996-02-01', 25, '3', '2', 'Ravichandran', 'Senior vp', 100000.00, 0, 0.00, 20000.00, 'Velachery chennai', 'Velachery chennai', '2108250010', '', '1', 'upload_files/candidate_tracker/17233339717_revathi.pdf', NULL, '1', '2021-08-25', 0, '', '4', '72', NULL, 0.00, '', '0', NULL, '1', 'well settled family, only daughter, expt 20k', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 11:41:59', 1, '2021-08-25 12:01:12', 0, NULL, 1),
(6015, '', '0', '8924055054', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 11:43:24', 0, NULL, 0, NULL, 1),
(6016, 'gunasekar', '4', '6380002446', '', 'gunakoki2523@gmail.com', '1993-10-25', 27, '2', '2', 'R.duraiswamy', 'contractor', 15000.00, 1, 10000.00, 11000.00, 'tirutani', 'tirutani', '2108250012', '1', '2', 'upload_files/candidate_tracker/17588476128_guna industry resume.pdf', NULL, '1', '2021-08-25', 0, '', '3', '59', '2021-09-06', 138948.00, '', '', '2021-09-15', '2', 'Selected for Tiruvallur Location in cash mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-25 11:52:04', 60, '2021-09-01 02:38:28', 0, NULL, 1),
(6017, '', '0', '9940666856', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 12:05:40', 0, NULL, 0, NULL, 1),
(6018, 'a.keerthiga', '27', '9488677558', '6379873218', 'keerthiga123450@gmil.com', '1998-04-02', 23, '2', '2', 'r.achanna', 'farmer', 12000.00, 1, 0.00, 15000.00, 'kovilpatti', 'kovilpati', '2108250014', '1', '1', 'upload_files/candidate_tracker/62180929607_keerthiga resume.pdf', NULL, '2', '2021-08-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, prefer non voice', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 12:07:29', 1, '2021-08-25 03:44:17', 0, NULL, 1),
(6019, '', '0', '7401429825', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 12:10:13', 0, NULL, 0, NULL, 1),
(6020, 'Balaji', '5', '7871635321', '', 'balajivenkat64@gmail.com', '1999-04-06', 22, '2', '2', 'Venkataraman', 'Collection agent', 2.50, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2108250016', '1', '1', 'upload_files/candidate_tracker/49494589555_Balaji Resume 2021-5.pdf', NULL, '1', '2021-08-25', 0, '', '3', '59', '1970-01-01', 250000.00, '', '2', '1970-01-01', '1', 'Selected for GK sir Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '', NULL, NULL, NULL, 1, '2021-08-25 12:11:55', 60, '2021-08-28 11:33:11', 0, NULL, 1),
(6021, '', '0', '9962638724', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 12:11:57', 0, NULL, 0, NULL, 1),
(6022, 'V. Jeevitha', '4', '7305910415', '9840227581', 'jeevithajeevikumar2000@gmail.com', '2000-11-30', 20, '2', '2', 'R. Vijayakumar', 'Auto Driver', 2000.00, 1, 0.00, 13000.00, 'Chennai', 'Aminjikarai (Chennai)', '2108250018', '1', '1', 'upload_files/candidate_tracker/16592102550_Document.docx', NULL, '1', '2021-08-25', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'planning do higher studies will not sustain.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-25 12:19:50', 7, '2021-08-28 06:31:02', 0, NULL, 1),
(6023, 'saravanan', '4', '8925055054', '', 'sarvan27071992@gmail.com', '1994-07-24', 27, '2', '2', 'balu', 'farmer', 10000.00, 0, 12000.00, 13000.00, 'chennai', 'chennai', '2108250019', '2', '2', 'upload_files/candidate_tracker/75814361662_Copy of saravanan resume NEW.docx', NULL, '1', '2021-08-25', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'not attended', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 12:22:47', 1, '2021-08-25 12:25:35', 0, NULL, 1),
(6024, 'Anzinanayagi', '4', '7401429826', '9941607040', 'Anzinanayagi@gmail.com', '1999-03-16', 22, '1', '2', 'Albert rajan', 'Teacher', 11000.00, 1, 10000.00, 11000.00, 'No.63 Perumal street Egmore ch.8', 'No.63 Perumal street Egmore ch.8', '2108250020', '', '2', 'upload_files/candidate_tracker/97503839732_RESUME - ANZINA NAYAGI.pdf', NULL, '1', '2021-08-25', 0, 'Jobs', '3', '59', '1970-01-01', 126000.00, '', '2', '1970-01-01', '2', 'Slected for Muthu with PF/ESI/Pt', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2021-08-25 12:30:34', 60, '2021-08-28 12:19:16', 0, NULL, 1),
(6025, 'mahathir hussain m', '4', '8098493942', '', 'mahathir139@gmail.com', '1997-07-17', 24, '2', '2', 'meera hussain m', 'driver', 15000.00, 2, 0.00, 8000.00, 'chennai', 'chennai', '2108250021', '2', '1', 'upload_files/candidate_tracker/472797282_Resume_2021-01-04-09-16-32.pdf', NULL, '1', '2021-08-21', 0, '', '3', '59', '2021-08-30', 120000.00, '', '3', '2021-11-12', '2', 'Selected for Muthu with PF/ESI/PT', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 12:31:56', 60, '2021-08-28 11:44:29', 0, NULL, 1),
(6026, 'Pradeep', '2', '8939574739', '', 'mpradeep887@gmail.com', '1996-02-18', 25, '2', '2', 'Muniappan', 'Building work', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2108250022', '1', '1', 'upload_files/candidate_tracker/47470147023_lattst.docx', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 12:41:02', 1, '2021-08-25 01:24:58', 0, NULL, 1),
(6027, 'Srihari', '4', '9962638725', '9962638724', 'srisandy9962638724@gmail.com', '2000-03-29', 21, '1', '2', 'Krishnamurthy', 'Other', 10000.00, 4, 10000.00, 11000.00, 'No.35 8th Street Anjiniya Nager royapuram', 'No.35 8th Street Anjiniya Nager Royapuram', '2108250023', '', '2', 'upload_files/candidate_tracker/12490930523_Document (44).pdf', NULL, '1', '2021-08-25', 0, 'JOBS', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'lang is not good, has 6m exp in credit card collection, will not suite for our process', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 12:47:06', 1, '2021-08-25 12:54:56', 0, NULL, 1),
(6028, 'Vishwajith.v', '11', '6382204385', '8939345508', 'vishwaraina3@gmail.com', '1999-04-26', 22, '2', '2', 'V. varatharajan', 'Security', 30.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2108250024', '1', '1', 'upload_files/candidate_tracker/77763872793_VISHWA RESUME-2.docx', NULL, '1', '2021-08-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very poor Performance, pursuing mba in annamalai and he need more training and no acceptance.but okay with all terms and conditions. ', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 01:06:34', 1, '2021-08-25 01:13:29', 0, NULL, 1),
(6029, '', '0', '8072444635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 01:32:45', 0, NULL, 0, NULL, 1),
(6030, 'Lawrence benjamin R', '6', '8608140798', '7200970292', 'lawrancebenjamin4@gmail.com', '1998-07-14', 23, '3', '2', 'Ravi irundhayaraj', 'Office assistant', 30000.00, 1, 0.00, 15000.00, 'Guindy', 'Guindy', '2108250026', '', '1', 'upload_files/candidate_tracker/57095557091_Lawrence resume.pdf', NULL, '1', '2021-08-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no clarity in speech, no degree 4times drop out, 5050', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 01:34:58', 1, '2021-08-25 02:54:33', 0, NULL, 1),
(6031, 'Hari prasath', '6', '7200970292', '8608140798', 'prasathhari227@gmail.com', '1995-10-16', 25, '1', '2', 'Dasarathan', 'Supervisor', 30000.00, 1, 0.00, 15000.00, 'Guindy', 'Guindy', '2108250027', '', '1', 'upload_files/candidate_tracker/95164790378_Hariprasad.pdf', NULL, '1', '2021-08-25', 0, '5558', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', 'selected for Suthagar team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2021-08-25 01:35:02', 60, '2021-08-28 11:36:48', 0, NULL, 1),
(6032, 'Johnsonfranklin V.D', '2', '8189902135', '', 'johnsonfranklin28032002@gmail.com', '1999-04-21', 22, '2', '2', 'Devasagayam v (Father)', 'Cook', 20000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2108250028', '1', '1', 'upload_files/candidate_tracker/29749431248_Resume_(1)[1].docx', NULL, '1', '2021-08-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher and very slow, rejected in technical round', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 01:43:56', 1, '2021-08-25 02:27:58', 0, NULL, 1),
(6033, 'Abdul Ghani', '2', '8220365174', '', 'Abdulghani254@gmail.com', '1992-09-26', 28, '2', '1', 'ajitha', 'teaching', 10000.00, 2, 0.00, 2.00, 'Cuddalore', 'Cuddalore', '2108250029', '1', '1', 'upload_files/candidate_tracker/89152502508_UD--Abdul Ghani - Full stack web developer - Updated (1).pdf', NULL, '1', '2021-08-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 01:46:12', 1, '2021-08-25 04:14:37', 0, NULL, 1),
(6034, '', '0', '9626431932', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 02:07:25', 0, NULL, 0, NULL, 1),
(6035, '', '0', '6379873218', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 02:44:25', 0, NULL, 0, NULL, 1),
(6036, 'Karthik S', '2', '9176121393', '', 'herokarthi52@gmail.com', '2000-02-05', 21, '2', '2', 'Subramani', 'Auto driver', 80000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2108250032', '1', '1', 'upload_files/candidate_tracker/77150596094_Karthik.pdf', NULL, '1', '2021-08-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basics skills and rejected by george.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 03:07:55', 50, '2021-08-30 11:02:28', 0, NULL, 1),
(6037, 'Saimanikandan', '22', '9600160817', '', 'Saimanikandan3101@gmail.com', '1995-01-31', 26, '2', '1', 'Harini Saimanikandan', 'Home maker', 10000.00, 0, 15000.00, 15000.00, 'Chennai', 'Chennai', '2108250033', '1', '2', 'upload_files/candidate_tracker/58984838641_updated Resume Saimanikandan.pdf 2021.docx', NULL, '1', '2021-08-26', 1, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task plagarised ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 04:50:09', 50, '2021-08-26 10:17:10', 0, NULL, 1),
(6038, 'Franklin', '27', '6383254182', '', 'belofranklin101@gmail.com', '1997-07-14', 24, '2', '2', 'Belaventhira raj', 'Formar', 15000.00, 1, 0.00, 10000.00, 'Periyanellikollai,Cuddalore.', 'Chennai', '2108250034', '1', '1', 'upload_files/candidate_tracker/56416254068_Franklin resume .pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, dont know basics in .net, expt is 12k', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 05:28:20', 1, '2021-08-25 05:35:44', 0, NULL, 1),
(6039, 'VENKATESH B', '22', '8056122248', '', 'VENKATVISHANTH36@GMAIL.COM', '1999-05-16', 22, '2', '2', 'Balaji K', 'Medical shop manager', 15000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2108250035', '1', '1', 'upload_files/candidate_tracker/94157379297_professional resume.pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, expt is 3-4l. good in communication alone. planning to settle in singapore', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 05:34:57', 1, '2021-08-25 05:40:14', 0, NULL, 1),
(6040, 'Harideep S', '22', '8190881685', '', 'hdhardeep3@gmail.com', '1997-08-23', 24, '2', '2', 'Senthil Kumar R', 'Farmer', 150000.00, 1, 15000.00, 18000.00, 'Krishnagiri', 'Chennai', '2108250036', '1', '2', 'upload_files/candidate_tracker/36418347351_HARIDEEP RESUME.docx', NULL, '1', '2021-08-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 05:52:39', 1, '2021-08-25 05:55:55', 0, NULL, 1),
(6041, 'Nivedita S', '5', '7695960741', '', 'snive12345@gmail.com', '1996-04-18', 25, '3', '2', 'Sivarajan K', 'Assistant Manager', 40000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2108260001', '', '1', 'upload_files/candidate_tracker/60144269221_Resume_.docx', NULL, '1', '2021-08-26', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for RM Profile', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-26 10:00:42', 8, '2021-08-26 11:41:02', 0, NULL, 1),
(6042, 'Yogesh G', '4', '9025687522', '', 'yy39321@gmail.com', '2000-01-05', 21, '2', '2', 'Chitra G', 'Lab assistant', 10000.00, 1, 0.00, 14000.00, '23/18 Manali new town', 'Chennai', '2108260002', '1', '1', 'upload_files/candidate_tracker/18147312948_RESUME (1).pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, not speaking up, will not suite for calling, expt is 14k', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-26 10:08:19', 8, '2021-08-26 06:43:51', 0, NULL, 1),
(6043, 'Akash.H', '6', '7639913438', '9940894279', 'Akashhari396@gmail.com', '1999-09-29', 21, '3', '2', 'D.haridoss', 'Welder fitter', 9000.00, 2, 0.00, 14000.00, 'Ponneri', 'Washermanpet', '2108260003', '', '1', 'upload_files/candidate_tracker/44454210712_Akash resume.docx', NULL, '1', '2021-08-26', 0, '', '3', '59', '2021-09-02', 156000.00, '', '3', '2021-09-02', '1', 'Selected for Srikanth team with CTC 156000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-26 10:09:39', 60, '2021-08-28 12:20:20', 0, NULL, 1),
(6044, 'Santhakumar S', '4', '6385200627', '', 'Thalasanta7@gmail.com', '2001-06-10', 20, '2', '2', 'Sakthivel punitha', 'Farmer', 12000.00, 0, 0.00, 12000.00, 'Thiruvannamalai', 'T nakar', '2108260004', '1', '1', 'upload_files/candidate_tracker/60115433836_BONAFIDE PDF.pdf', NULL, '3', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no pronunciation, very native slang. will not suite for health calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-26 10:10:10', 7, '2021-08-28 06:32:42', 0, NULL, 1),
(6045, 'Gayathri', '4', '9791141573', '9952917802', 'ganesangayathri008@gmail.com', '1997-12-01', 23, '2', '2', 'G.jayalakshmi', 'Home maker', 10000.00, 1, 12000.00, 14000.00, 'Chennai', 'Chennai', '2108260005', '1', '2', 'upload_files/candidate_tracker/6860843215_Gayathri.G - Resume - 03-Jan-2020.pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not handle sales pressure, has admin exp, was asking about target and job with out target', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-26 10:14:51', 7, '2021-08-26 06:33:01', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6046, '', '0', '8190854078', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108260006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-26 10:32:16', 0, NULL, 0, NULL, 1),
(6047, 'Nadeem sha', '6', '8754610219', '9790646093', 'Shanadeem8.ns@gmail.com', '1997-12-29', 23, '2', '2', 'Epunoose', 'Business', 100000.00, 1, 0.00, 16000.00, 'Marthandam', 'No.9 madhanandhapuram porur chennai', '2108260007', '1', '1', 'upload_files/candidate_tracker/22398882270_Anantharaj.P.pdf', NULL, '1', '2021-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not open to work on Saturdays and his cTC Expectation is very high. Min Expectation is around 16K as TH', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-26 10:36:29', 50, '2021-08-31 03:38:58', 0, NULL, 1),
(6048, 'Mohamed faiyaz khan', '8', '8190855078', '9176592495', 'Faiyaz08.fk@gmail.com', '2001-05-08', 20, '2', '2', 'Mohamed akbar Khan', 'Field officer', 240000.00, 1, 0.00, 14000.00, 'No 2a Kamaraj Nagar 2nd Street dharga colony', 'Pallavaram', '2108260008', '1', '1', 'upload_files/candidate_tracker/99926020063_MOHAMED FAIYAZ KHAN.docx', NULL, '1', '2021-08-26', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he wonxquott accept 1 yr Bond, if its 6 month he will be join after discussion with Family', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-26 11:00:10', 50, '2021-08-26 06:39:26', 0, NULL, 1),
(6049, 'Rashika raman DP', '4', '7358739846', '8148987284', 'Prashikaraman@gmail.com', '1998-05-23', 23, '2', '2', 'Parasuraman D', 'Financial work', 12000.00, 1, 12000.00, 12000.00, 'Perumbakkam', 'Perumbakkam', '2108260009', '1', '2', 'upload_files/candidate_tracker/58889046839_Rashikaraman new resume .pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long, was doing part time job in dominos 6k, expt 12k and voice is very low', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-26 11:14:27', 8, '2021-08-26 06:29:07', 0, NULL, 1),
(6050, 'Vishal', '6', '9944591749', '', 'vishalhsr246@gmail.com', '1999-06-13', 22, '2', '2', 'anbalagan', 'working', 80000.00, 1, 18000.00, 20000.00, 'chennai', 'triplicane', '2108260010', '1', '2', 'upload_files/candidate_tracker/82139219453_Vishal\'\'Anbalagan.docx', NULL, '1', '2021-08-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-26 11:39:40', 1, '2021-08-26 11:44:30', 0, NULL, 1),
(6051, 'priyadharshini', '23', '9585621554', '9791807611', 'priyacse33977@gmail.com', '1997-03-03', 24, '2', '2', 'ambikapathi', 'web designing', 10000.00, 1, 10000.00, 15000.00, 'thiurnageswaram kumbakonam', 'kumbakonam', '2108260011', '1', '2', 'upload_files/candidate_tracker/13629994853_priya-resume.pdf', NULL, '3', '2021-08-27', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not upto the level.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 11:51:15', 50, '2021-08-27 10:34:34', 0, NULL, 1),
(6052, 'Deepak k', '4', '7395945292', '', 'deepakk7112000@gmail.com', '2000-11-07', 20, '2', '2', 'Kannak T', 'Supervisor', 12000.00, 2, 0.00, 10000.00, 'Cuddalore', 'Chennai', '2108260012', '1', '1', 'upload_files/candidate_tracker/36341582777_deepak resume.pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain and prefer non voice', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-26 12:03:57', 7, '2021-08-28 06:31:33', 0, NULL, 1),
(6053, 'Karthick Raj S', '11', '9944866706', '', 'raj.karthick18s@gmail.com', '1997-11-18', 23, '2', '2', 'Sembulingam', 'business', 8000.00, 2, 0.00, 20000.00, 'Karaikudi', 'Karaikudi', '2108260013', '1', '1', 'upload_files/candidate_tracker/89498477304_Resume_Karthick_Raj.pdf', NULL, '1', '2021-08-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 12:05:06', 1, '2021-08-26 12:12:37', 0, NULL, 1),
(6054, 'arjun k', '5', '7353819092', '7406795081', 'arjunalbertok@gmail.com', '1995-01-16', 26, '2', '1', 'sushmitha', 'Salaried', 15000.00, 1, 2.84, 3.50, 'ponnampete coorg', 'btm layout bangalore', '2108260014', '1', '2', 'upload_files/candidate_tracker/49557881963_kaala new resume KOTAk 2021.pdf', NULL, '1', '2021-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate salary Expectation is very high, holding multiple offers and demanding a lot from us. Expecting around 21% from his last drawn CTC and no relevant insurance sales exp.If we offered also not sure he joins us', '5', '2', '', '2', '2', '', '2', '2021-09-09', '2', '1', 'Candidate Salary Expectation Is Very High, Holding Multiple Offers And Demanding A Lot From Us. Expecting Around 21% From His Last Drawn CTC And No Relevant Insurance Sales Exp. If We Offered Also Not Sure He Joins Us. Discussed the same with Regional Head Sathish and updated the same', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-08-26 12:54:19', 60, '2021-09-09 05:04:10', 0, NULL, 1),
(6055, 'Mohamed Habib', '23', '9840596668', '', 'habib96668@gmail.com', '1993-11-16', 27, '2', '2', 'Abdul rahman', 'Business', 10000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2108260015', '1', '2', 'upload_files/candidate_tracker/91438238100_Resume_Mohamed.pdf', NULL, '1', '2021-08-31', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not good with terms', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 12:55:14', 50, '2021-08-31 12:16:11', 0, NULL, 1),
(6056, '', '0', '9585261554', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108260016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-26 12:56:06', 0, NULL, 0, NULL, 1),
(6057, 'Ramya', '11', '8754753436', '9361681271', 'ramyakrishnanpandiyan1999@gmail.com', '1999-05-26', 22, '2', '2', 'Bavani', 'House wife', 35000.00, 1, 0.00, 12000.00, 'Cuddalore', 'Chennai', '2108260017', '1', '1', 'upload_files/candidate_tracker/9148196003_RAMYA RESUME 3.doc', NULL, '1', '2021-08-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 01:15:15', 1, '2021-08-26 01:43:10', 0, NULL, 1),
(6058, 'thiruvarasan', '4', '9500915259', '', 'thiru@gmail.com', '1999-12-28', 21, '2', '2', 'ravi', 'Farmer', 12000.00, 0, 0.00, 10000.00, 'ranipet', 'chennai', '2108260018', '1', '1', 'upload_files/candidate_tracker/69835219765_SamplePDF.pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling, stammering to talk. came by naukri mail.', '1', '2', '', '', '', '', '1', '1970-01-01', '3', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-26 01:34:07', 7, '2021-08-26 06:41:36', 0, NULL, 1),
(6059, 'Kamal mohan', '2', '9940168388', '', 'kamalmohan1498@gmail.com', '1998-12-14', 22, '2', '2', 'Mohan sha', 'Carpenter', 5000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2108260019', '1', '1', 'upload_files/candidate_tracker/63093476143_Document.docx', NULL, '1', '2021-08-27', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'has 1.5yr exp in sutherland, expt 2-3l and knows basics in lang, okay with our tearms', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 02:53:06', 1, '2021-08-26 02:59:40', 0, NULL, 1),
(6060, 'puvarasu', '4', '9790836919', '9944481436', 'arasubmathi2000@gmail.com', '2000-09-05', 20, '2', '2', 'boopathy', 'working', 12000.00, 1, 0.00, 10000.00, 'chennai', 'thiruvallur', '2108260020', '1', '1', 'upload_files/candidate_tracker/49394920547_CV_2021-08-02-020008.pdf', NULL, '1', '2021-08-27', 0, '', '3', '59', '2021-08-30', 120000.00, '', '5', '1970-01-01', '1', 'selected for Tiruvallur in cash mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-26 03:40:07', 60, '2021-08-28 12:56:36', 0, NULL, 1),
(6061, 'Babu P', '22', '9360896166', '7358309592', 'israelmano011@gmail.com', '1993-02-11', 28, '2', '2', 'THIRUPAMMA', 'House wife', 30000.00, 1, 0.00, 10000.00, 'Chennai', 'T Nagar', '2108260021', '1', '1', 'upload_files/candidate_tracker/51969596261_Digi RE-1102.pdf', NULL, '1', '2021-08-27', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Plagarised task', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 03:51:48', 1, '2021-08-26 04:00:30', 0, NULL, 1),
(6062, 'Bagavathi', '11', '7550262237', '', 'bagabagavathi7@gmail.com', '1997-08-19', 24, '2', '2', 'Amsakkani', 'house wife', 10000.00, 0, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2108260022', '1', '1', 'upload_files/candidate_tracker/51096601945_Bagavathi Resume.pdf', NULL, '1', '2021-08-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 04:00:06', 1, '2021-08-26 04:07:24', 0, NULL, 1),
(6063, 'Alexander M', '3', '9994388702', '9345414773', 'alexander06999@gmail.com', '1999-10-06', 21, '2', '2', 'Mani A', 'INFORMATION TECHNOLOGY', 15000.00, 1, 0.00, 15000.00, 'Karur', 'Karur', '2108260023', '1', '1', 'upload_files/candidate_tracker/84767941598_Alexander resume 1.docx', NULL, '1', '2021-09-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not active, father is an awin milk dealer, fro karur. just like that looking for job. ', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 04:26:04', 7, '2021-09-01 03:41:56', 0, NULL, 1),
(6064, 'shiva Kumar', '13', '8754236246', '9789335086', 'cvakumar8947@gmail.com', '2001-05-16', 20, '2', '2', 'AyyaPillai', 'IndianNavy', 30000.00, 1, 0.00, 15000.00, 'Suthamalli', 'Suthamalli', '2108260024', '1', '1', 'upload_files/candidate_tracker/93211269799_RESUME (1).pdf', NULL, '1', '2021-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 06:12:55', 1, '2021-08-26 06:18:16', 0, NULL, 1),
(6065, 'Jayaprakash', '2', '7904660417', '', 'talktojpk@gmail.com', '2006-08-26', 0, '2', '2', 'M. Kumar', 'Farmar', 5000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2108260025', '1', '1', 'upload_files/candidate_tracker/79119879161_Jayaprakash_new Resume.pdf', NULL, '1', '2021-08-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'shared profile with george, no knowledge in java script.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 07:58:39', 1, '2021-08-26 08:03:25', 0, NULL, 1),
(6066, 'HARSHA. B', '6', '8778382042', '9087019819', 'harsha0070raju@gmail.com', '2003-02-14', 18, '1', '2', 'Salva muni baskar', 'Watch man', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2108270001', '', '1', 'upload_files/candidate_tracker/43537344671_HARSHA. B RESUME.docx', NULL, '1', '2021-08-27', 0, 'P1257', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very childish and 18. will not suit for calling', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 09:46:13', 1, '2021-08-27 09:56:02', 0, NULL, 1),
(6067, 'test latha', '13', '9677289220', '9677289220', 'latha@cafsinfotech.in', '1995-05-07', 26, '3', '1', 'test', 'Test', 0.00, 0, 0.00, 0.00, 'Test', 'Test', '2108270002', '', '1', 'upload_files/candidate_tracker/54541973970_P1027.pdf', NULL, '1', '2021-08-27', 0, '', '3', '1', '2021-08-27', 0.00, '', '5', '1970-01-01', '1', '', '2', '2', '1', '1', '1', '1', '1', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 10:11:31', 1, '2021-08-27 10:15:25', 0, NULL, 1),
(6068, 'Narmatha D', '6', '8072063814', '', 'Narmathapandian98@gmail.com', '1998-11-21', 22, '2', '2', 'S .p.Duraipandian', 'Eletrition', 10000.00, 1, 0.00, 10000.00, 'Ponneri', 'Ponneri', '2108270003', '1', '1', 'upload_files/candidate_tracker/19196482425_Resume (1).pdf', NULL, '1', '2021-08-27', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up, prefer acc job, expr 12-15k', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-27 10:18:24', 7, '2021-08-28 06:34:59', 0, NULL, 1),
(6069, 'Maneesha D', '6', '8248122948', '', 'Maneeshad249@gmail.com', '1998-06-15', 23, '1', '2', 'Devnarayan', 'Electician', 10000.00, 2, 0.00, 10000.00, 'Gummidipoondi', 'Gummidipoondi', '2108270004', '', '1', 'upload_files/candidate_tracker/64061345501_Johnet Roshini Resume.pdf', NULL, '1', '2021-08-27', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no local language, eng below avg.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 10:27:49', 1, '2021-08-27 10:32:21', 0, NULL, 1),
(6070, 'testlatha', '13', '7092286353', '7092286353', 'latha@cafsinfotech.in', '1995-08-27', 26, '3', '2', 'Test', 'Test', 0.00, 0, 0.00, 0.00, 'Test', 'Test', '2108270005', '', '1', '0', NULL, '1', '2021-08-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '1', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 10:28:01', 0, NULL, 0, NULL, 1),
(6071, 'testing latha', '13', '1234567890', '1234567890', 'latha@cafsinfotech.in', '1995-08-27', 26, '3', '2', 'Test', 'Test', 0.00, 0, 0.00, 0.00, 'Test', 'Test', '2108270006', '', '1', '0', NULL, '1', '2021-08-27', 0, '', '3', '1', '2021-08-27', 0.00, '', '5', '1970-01-01', '1', '', '2', '1', '1', '1', '1', '1', '2', '2021-08-27', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 10:35:21', 1, '2021-08-27 11:00:35', 0, NULL, 1),
(6072, 'latha test', '13', '9090909090', '9090909090', 'latha@cafsinfotech.in', '1995-08-27', 26, '3', '2', 'Test', 'Test', 0.00, 0, 0.00, 0.00, 'Test', 'Test', '2108270007', '', '1', '0', NULL, '1', '2021-08-27', 0, '', '3', '1', '2021-08-27', 0.00, '', '7', '1970-01-01', '1', '', '2', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 10:46:40', 1, '2021-08-27 10:47:17', 0, NULL, 1),
(6073, 'testing', '16', '5656565656', '5656565656', 'latha@cafsinfotech.in', '2006-08-27', 0, '3', '2', 'Test', 'Test', 0.00, 0, 0.00, 0.00, 'Test', 'Test', '2108270008', '', '1', '0', NULL, '1', '2021-08-27', 0, '', '3', '1', '2021-08-27', 0.00, '', '8', '1970-01-01', '1', '', '3', '2', '1', '1', '1', '', '1', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 11:01:37', 1, '2021-08-27 06:35:27', 0, NULL, 1),
(6074, 'Sinegha R', '4', '9677857898', '', 'sinegharajendran@gmail.com', '1993-03-08', 28, '2', '2', 'Prabakala', 'Clerk', 50000.00, 1, 180000.00, 250000.00, 'Perambalur', 'Chennai', '2108270009', '1', '2', 'upload_files/candidate_tracker/89043386535_Sinegha R.pdf', NULL, '1', '2021-08-27', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '1', '', '1', '1', '', '2', '2021-08-30', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-27 11:55:03', 50, '2021-08-27 12:07:17', 0, NULL, 1),
(6075, 'Godveen Paul', '6', '9551444485', '8939966690', 'godveenpaul@gmail.com', '1997-11-03', 23, '2', '2', 'Antony', 'Nil', 1.00, 1, 163000.00, 400000.00, 'Chennai', 'Chennai', '2108270010', '1', '2', 'upload_files/candidate_tracker/93695851664_Godveen Experience Resume.pdf', NULL, '1', '2021-08-27', 90, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'expt 4l, no relevant exp, no sales skills and convincing.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-27 11:57:08', 1, '2021-08-27 12:08:14', 0, NULL, 1),
(6076, '', '0', '9791071261', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108270011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-27 12:34:59', 0, NULL, 0, NULL, 1),
(6077, 'A.Bhuvana', '4', '9962827575', '9884646763', 'bhuvana.ayyanar.a@gmail.com', '2000-10-12', 20, '2', '2', 'K.Ayyanar', 'lorry Driver', 20000.00, 1, 0.00, 12000.00, 'Tondiarpet', 'no 23/20 seniamman kovil 2nd street', '2108270012', '1', '1', 'upload_files/candidate_tracker/58092064441_A.Bhuvana resume .pdf', NULL, '1', '2021-08-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '1m in collection, will not sustain expt 10-11k', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-27 12:36:21', 1, '2021-08-27 12:47:32', 0, NULL, 1),
(6078, 'asif basha s', '27', '9789793258', '', 'bashaasif391@gmail.com', '1998-06-08', 23, '2', '2', 'sardar a', 'farmer', 20000.00, 2, 0.00, 15000.00, 'tirupattur', 'chennai', '2108270013', '1', '1', 'upload_files/candidate_tracker/54137750298_Asif Resume.pdf', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-27 12:36:44', 1, '2021-08-27 02:57:30', 0, NULL, 1),
(6079, '', '0', '8838664065', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108270014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-27 01:02:07', 0, NULL, 0, NULL, 1),
(6080, 'francis assisya', '4', '6369220074', '', 'assisyanathen@gmail.com', '2001-08-27', 20, '2', '2', 'arokiyanathan', 'working', 30000.00, 4, 0.00, 10000.00, 'chennai', 'thiruvallur', '2108270015', '1', '1', 'upload_files/candidate_tracker/55482752253_FRANCIS ASSISIYA. A (CURRICULAM VITAE)-1.pdf', NULL, '1', '2021-08-28', 0, '', '3', '59', '2021-08-30', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Tiruvallur in cash mode tH 9500.Candidate seems 50/50', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-27 01:04:26', 60, '2021-08-28 05:26:15', 0, NULL, 1),
(6081, 'Nandhagopal', '11', '7904199495', '9551991198', 'nandha1504@gmail.com', '1998-04-15', 23, '2', '2', 'Mani. D', 'Carpenter', 30000.00, 2, 0.00, 13000.00, 'Chennai virugambakkam', 'Chennai virugambakkam', '2108270016', '1', '1', 'upload_files/candidate_tracker/4528176160_NG resume .pdf', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-27 01:08:39', 1, '2021-08-27 01:33:57', 0, NULL, 1),
(6082, 'Poovarasan R', '22', '9952094926', '', 'poovarasan4926@gmail.com', '2006-08-27', 15, '2', '2', 'TS Rajasekaran', 'Business', 60000.00, 1, 0.00, 15000.00, 'No 5 Elumalai nagar rathinam street padi', 'No 5 elumalai nagar rathinam street padi', '2108270017', '1', '1', 'upload_files/candidate_tracker/73333602323_poovarasan.pdf', NULL, '1', '2021-08-30', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate interned for a day and quit', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-27 01:22:51', 1, '2021-08-27 01:29:19', 0, NULL, 1),
(6083, 'Ashok M', '22', '9841608538', '', 'Ashok96jay@gmail.com', '1996-09-12', 24, '2', '2', 'Murugan C', 'Building construction', 40000.00, 1, 0.00, 15000.00, 'Chennai-kodambakkam', 'Chennai-kodambakkam', '2108270018', '1', '1', 'upload_files/candidate_tracker/39402127984_ASHOK Resume-compressed.pdf', NULL, '1', '2021-08-28', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'plagarised task', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-27 01:26:15', 1, '2021-08-27 01:29:48', 0, NULL, 1),
(6084, 'sivaraman', '4', '8754351887', '', 'sivavijaymech@gmail.com', '1997-06-02', 24, '2', '2', 'durai', 'farmer', 20000.00, 1, 0.00, 10000.00, 'chennai', 'thousand lights', '2108270019', '1', '1', 'upload_files/candidate_tracker/27535631192_document2.pdf', NULL, '1', '2021-08-27', 0, '', '3', '59', '2021-08-30', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Priyanka Team in Cash mode. No Laptop', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-27 01:29:11', 60, '2021-08-28 11:15:37', 0, NULL, 1),
(6085, 'VIGNESH C', '22', '8220437912', '', 'vigneshc2104@gmail.com', '1996-04-21', 25, '2', '2', 'CHINNASAMY C', 'Daily wages', 40000.00, 1, 0.00, 15000.00, 'T. Nagar, Chennai', 'T. Nagar, Chennai', '2108270020', '1', '1', 'upload_files/candidate_tracker/45677532406_VIGNESH_C_RESUME.pdf', NULL, '1', '2021-08-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-27 01:47:12', 1, '2021-08-28 04:58:06', 0, NULL, 1),
(6086, 'Sindhu', '6', '7395872693', '8870589562', 'sindhu20032000@gmail.com', '2000-03-20', 0, '2', '2', 'Siva.v', 'Famer', 75000.00, 2, 18000.00, 22000.00, 'Marakkanam', 'Velachery', '2108270021', '1', '2', 'upload_files/candidate_tracker/41376774983_SINDHU S.pdf', NULL, '1', '2024-05-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Proposed a salary but her exp is very for DM channel', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2021-08-27 02:09:20', 112, '2024-05-03 12:58:52', 0, NULL, 1),
(6087, '', '0', '9940635459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108270022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-27 02:09:50', 0, NULL, 0, NULL, 1),
(6088, 'Aravindhan A', '27', '6369299301', '8098804088', 'aravindhanmca115@gmail.com', '1998-01-23', 23, '2', '2', 'Adimoolam K', 'Teacher', 25000.00, 2, 0.00, 10.00, 'Tirupattur', 'Chennai', '2108270023', '1', '1', 'upload_files/candidate_tracker/93423623014_RESUME.ARAVINDH.2021P.pdf', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-27 08:14:48', 1, '2021-08-27 08:23:06', 0, NULL, 1),
(6089, 'test', '13', '5555511111', '', 'latha@cafsinfotech.in', '1995-08-28', 26, '3', '2', 'Test', 'Test', 12000.00, 0, 0.00, 10000.00, 'Test', 'Test', '2108280001', '', '1', 'upload_files/candidate_tracker/3020143453_change options.pdf', NULL, '1', '2021-08-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 09:36:25', 1, '2021-08-28 09:37:46', 0, NULL, 1),
(6090, 'N. divya', '4', '6379452432', '', 'divyagopal134@gmail.com', '2001-07-01', 20, '1', '2', '20000', 'briver', 400000.00, 1, 0.00, 15000.00, 'chembarambakkam', 'chembarambakkam', '2108280002', '', '1', 'upload_files/candidate_tracker/23001839713_RESUME.docx', NULL, '1', '2021-08-28', 0, 'jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for calling.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 09:41:12', 1, '2021-08-28 09:52:35', 0, NULL, 1),
(6091, 'Anusuya', '4', '7305301856', '6379452438', 'abigailanushya7@gmail.com', '2000-07-12', 21, '1', '2', 'Isreal', 'Cooly', 12000.00, 1, 0.00, 14000.00, 'No.710 bajanai Kovil street chembarampakkam', 'No.710 Bajanai Kovil street chembarampakkam', '2108280003', '', '1', 'upload_files/candidate_tracker/59505723823_Anushya resume.docx', NULL, '1', '2021-08-28', 0, 'JOBS', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up very low voice, will not suite for calling', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 09:55:11', 1, '2021-08-28 10:06:37', 0, NULL, 1),
(6092, 'nancy rani', '4', '7904315364', '', 'nancyranibabu05@gmail.com', '2006-08-28', 0, '2', '2', 'dillibabu', 'employee', 15000.00, 1, 0.00, 10000.00, 'ondikuppam', 'tiruvanamalai', '2108280004', '1', '1', 'upload_files/candidate_tracker/55567050710_CV_2021-07-07-070439.pdf', NULL, '1', '2021-08-28', 0, '', '3', '59', '2021-08-30', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location in cash mode TH 9500', '1', '2', '', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-28 10:00:13', 60, '2021-08-28 05:35:46', 0, NULL, 1),
(6093, 'Selvakumar', '4', '9042208708', '', 'Selvakumar12041999@gmail.com', '1999-04-12', 22, '4', '2', 'Thulasi K', 'Daily wages', 15000.00, 1, 0.00, 13000.00, 'Vriddhachalam', 'CHENNAI', '2108280005', '', '1', 'upload_files/candidate_tracker/87869942932_Selvakumar 001 Resume.pdf', NULL, '1', '2021-08-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, will not suite for calling. pronunciation is not clear.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 10:24:15', 1, '2021-08-28 10:27:43', 0, NULL, 1),
(6094, 'Shalem raju kalivela', '6', '9840401487', '9566242851', 'Shalemkalivela07@gmail.com', '1999-07-28', 22, '2', '2', 'Parent', 'Church pastor', 20000.00, 4, 0.00, 15.00, 'Korukkpet', 'Korukkpet', '2108280006', '1', '1', 'upload_files/candidate_tracker/25879567723_shalem Resume 2021.pdf', NULL, '1', '2021-08-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp In Sales,This Is The First Interview In Sales Profile.Yet To Complete His 12th Std, Career Gap,Having Only BPo Healthcare Exp .Sustainability xxamp Pressure Handling Doubt For This Profile.Discussed with Sir and cross checked with the candidate for collection cum sales,but candidate was not interested towards this role', '5', '1', '', '1', '1', '', '2', '2021-08-30', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-28 11:44:15', 8, '2021-08-28 01:24:00', 0, NULL, 1),
(6095, 'sarath', '4', '8825643920', '', 'sarathgopi81810@gmail.com', '2000-03-07', 21, '2', '2', 'gopinath', 'govt employee', 50000.00, 1, 0.00, 10000.00, 'chennai', 'maduravoyal', '2108280007', '1', '1', 'upload_files/candidate_tracker/63027876136_Sarath resume word.docx', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-28 12:09:23', 1, '2021-08-28 12:09:05', 0, NULL, 1),
(6096, '', '0', '9384274909', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108280008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-28 12:11:10', 0, NULL, 0, NULL, 1),
(6097, 'Soundarya.R', '4', '9384274904', '9941202447', 'Soundlali4@gmail.com', '1999-09-25', 21, '3', '2', 'Eswari', 'Housewife', 6500.00, 1, 0.00, 15000.00, 'Thiruvottiyur chennai', 'Chennai', '2108280009', '', '1', 'upload_files/candidate_tracker/72940669577_Soundarya resume.pdf', NULL, '1', '2021-08-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, will not suite for calling, job need.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 12:32:20', 1, '2021-08-28 12:37:07', 0, NULL, 1),
(6098, 'Sai Lakshmi', '16', '8939259021', '', 'sailakshmithiyagaraj@gmail.com', '2000-12-15', 20, '1', '1', 'Valarmathi', 'Working in shop', 120000.00, 1, 0.00, 15000.00, '75,Arunachalam street,Chintadripet', 'Chennai', '2108280010', '', '1', 'upload_files/candidate_tracker/42570990395_CV_ sai .pdf', NULL, '1', '2021-08-28', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'high job need, avg communication and expt is 11k-12k. no father and mom daily wages.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 12:47:29', 1, '2021-08-28 01:04:55', 0, NULL, 1),
(6099, 'Dhanalakshmi.j', '4', '7305348823', '7401199071', 'Dhanakarthi24@gmail.com', '1998-04-02', 23, '3', '1', 'Jayaraj', 'Auto Driver', 6500.00, 2, 0.00, 15000.00, 'Thiruvottiyur chennai', 'Chennai', '2108280011', '', '1', 'upload_files/candidate_tracker/25413360896_New Doc 2021-08-23 15.14.08_1.pdf', NULL, '1', '2021-08-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, from enore and expt is 15k', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 12:49:17', 1, '2021-08-28 12:53:52', 0, NULL, 1),
(6100, 'naveen', '4', '7010260353', '', 'naveenbfaran@gmail.com', '1998-08-10', 23, '2', '2', 'babu', 'rtd', 25000.00, 2, 0.00, 10000.00, 'chennai', 'thiruvitriyur', '2108280012', '1', '1', 'upload_files/candidate_tracker/3757610248_Naveen resume.docx', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-28 01:15:25', 1, '2021-08-28 01:19:21', 0, NULL, 1),
(6101, 'Balaji', '4', '6383097622', '', 'p.balaji1724@gmail.com', '2000-04-24', 21, '2', '2', 'padmasekar', 'late', 20000.00, 1, 0.00, 10000.00, 'chennai', 'kolathur', '2108280013', '1', '1', 'upload_files/candidate_tracker/4992181985_Balaji-Resume.pdf', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-28 01:21:22', 1, '2021-08-28 02:20:30', 0, NULL, 1),
(6102, 'Krupa Shankar', '11', '9600165925', '', 'krupashankar98@gmail.com', '2006-08-28', 0, '2', '2', 'Shankar', 'Unemployed', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2108280014', '1', '1', 'upload_files/candidate_tracker/44244183112_KRUPA.pdf', NULL, '1', '2021-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for us, was asking for leaves and timings and weekoff, expt is 15k and not okay with terms and conditions.', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-28 05:04:15', 50, '2021-09-03 10:24:42', 0, NULL, 1),
(6103, '', '0', '8124309705', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108280015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-28 06:12:57', 0, NULL, 0, NULL, 1),
(6104, 'anupriya', '4', '8870252577', '', 'apanuarun@gmail.com', '2000-06-25', 21, '2', '2', 'arunodhayam', 'auto driver', 15000.00, 2, 0.00, 10000.00, 'thiruvallur', 'Thiruvallur', '2108300001', '1', '1', 'upload_files/candidate_tracker/60487053091_A. ANUPRIYA RESUME.docx', NULL, '1', '2021-08-31', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'not suitable for this profile', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-30 10:53:14', 1, '2021-08-30 10:55:22', 0, NULL, 1),
(6105, 'gayathri', '4', '7904473373', '', 'hgayathri151@gmail.com', '1997-11-21', 23, '2', '2', 'madhavan', 'rtd', 14000.00, 1, 14000.00, 16000.00, 'chennai', 'aynavaram', '2108300002', '1', '2', 'upload_files/candidate_tracker/25982085714_RESUME .gayathri.pdf', NULL, '1', '2021-09-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not responding to the calls. Even we tried reaching her on 07-Sep-2021.Earlier we Discussed With Her The Salary, Also She Looks For PF/ESI Benefits Too. The Candidate Will Share The Offer Letter And The Other Documents Today. I Will Confirm The Same ASAP Once Received From The Candidate', '1', '2', '', '1', '1', '', '2', '2021-09-02', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-30 10:56:41', 50, '2021-09-01 11:25:41', 0, NULL, 1),
(6106, 'ramkumar', '2', '9445506400', '7904041003', 'rmkumar204@gmail.com', '1988-06-12', 33, '2', '2', 'p.murugesan', 'nil', 8000.00, 1, 0.00, 18000.00, 'salem', 'chennai', '2108300003', '1', '1', 'upload_files/candidate_tracker/61001711583_Ramkumar\'s FE Resume.pdf', NULL, '1', '2021-09-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-30 11:34:09', 1, '2021-08-30 11:44:43', 0, NULL, 1),
(6107, 'P Aishwarya', '4', '6381462748', '9884741435', 'aishu1999parthiban@gmail.com', '1999-01-19', 22, '2', '2', 'B Parthiban', 'B Com', 70000.00, 2, 0.00, 10000.00, 'Nasarathpet', 'Nasarathper', '2108300004', '1', '1', 'upload_files/candidate_tracker/16564371083_Aishwarya Resume.pdf', NULL, '1', '2021-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not comfortable with the salary what we offered being a fresher.Expecation is high than the 10.5 we offered. Not responding to the calls properly.Will not sustain for a long.', '1', '1', '', '1', '1', '', '2', '2021-09-02', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-30 11:59:57', 50, '2021-09-02 10:11:34', 0, NULL, 1),
(6108, 'Sonipreetha', '4', '9944603394', '9843890497', 'sonipreethakutty98@gmail.com', '1998-02-03', 23, '2', '2', 'S.kavitha', 'Typist', 15000.00, 1, 0.00, 10000.00, 'Triplicane', 'Triplicane', '2108300005', '1', '1', 'upload_files/candidate_tracker/61924474997_Soni Resume.docx', NULL, '1', '2021-08-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up, doing her own biz reselling. job need but will not handle pressure.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-30 12:34:05', 50, '2021-08-31 03:37:58', 0, NULL, 1),
(6109, 'Jayapriya', '4', '8870960498', '', 'priyaiamjaya@gmail.com', '1997-12-18', 23, '2', '2', 'Shanmugam', 'Retired', 10000.00, 1, 18000.00, 18000.00, 'Chennai', 'Chennai', '2108300006', '1', '2', 'upload_files/candidate_tracker/56678413591_My New Resume-2-converted.pdf', NULL, '1', '2021-08-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 2yr exp in manapuram gold loan 18k, target based salary, Resigned and looking for job. expt 15k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-30 12:35:22', 50, '2021-08-31 03:37:38', 0, NULL, 1),
(6110, 'tharik anvar', '6', '7904801599', '9894357219', 'tharik.anvar@yahoo.in', '1997-03-28', 24, '2', '2', 'kadher mohammed', 'working at jewellery shop', 4000.00, 1, 13000.00, 15000.00, 'chennai', 'kk nagar', '2108300007', '1', '2', 'upload_files/candidate_tracker/73740572271_Resume K.THARIK ANVAR .pdf', NULL, '1', '2021-08-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 2yr exp in AMC 13k, expt is 16k. no Calling and sales exp.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-30 01:20:04', 1, '2021-08-30 01:22:51', 0, NULL, 1),
(6111, 'Keerthana S', '2', '6381506264', '9790234603', 'Keerthanasugu1998@gmail.com', '1998-01-29', 23, '2', '2', 'Sukumaran', 'Farmer', 23000.00, 2, 12000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2108300008', '1', '2', 'upload_files/candidate_tracker/45997844224_KEERTHANA_CV.docx', NULL, '3', '2021-08-31', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-30 01:51:26', 50, '2021-08-31 10:09:46', 0, NULL, 1),
(6112, 'balaji', '6', '8428478609', '8124412128', 'tarkibala1013@gmail.com', '1997-04-10', 24, '2', '2', 'dharmaraj', 'travel agent', 15000.00, 1, 13000.00, 15000.00, 'chennai', 'kolathur', '2108300009', '1', '2', 'upload_files/candidate_tracker/56820730524_balaji resume(1).pdf', NULL, '1', '2021-09-01', 0, '', '3', '59', '2021-09-09', 186000.00, '', '3', '2023-12-07', '1', 'Selected for Kannan Team with PF/ESI/PT deductions. No previous Company payslip/offer letter. Commission based salary average 15K TH. Let us try for RE and analyse  the person in 7 days of training.No Higher Graduation, ist yr BCA discontinued', '5', '1', '1', '1', '1', '', '2', '2021-09-03', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-08-30 02:30:07', 60, '2021-09-09 02:53:06', 0, NULL, 1),
(6113, 'soundarya', '4', '7358276476', '', 'soundaryathangaraj06@gmail.com', '1997-12-06', 23, '2', '2', 'thangaraj', 'supervisor', 12000.00, 2, 0.00, 10000.00, 'chennai', 'tondairpet', '2108300010', '1', '1', 'upload_files/candidate_tracker/82046476255_soundarya june 2021.pdf', NULL, '1', '2021-08-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-30 02:37:14', 1, '2021-08-30 02:39:22', 0, NULL, 1),
(6114, 'K Siva', '23', '9600550320', '', 'siva20258@gmail.com', '1996-08-26', 25, '2', '2', 'Kishore Kumar', 'Auto driver', 20000.00, 1, 20000.00, 25000.00, 'Mylapore', 'Mylapore', '2108300011', '1', '2', 'upload_files/candidate_tracker/48368026043_Siva Resume PS.doc', NULL, '1', '2021-09-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'was working in photo studio fir 5yrs 20k, no payslips, know only Photoshop. expt sal is 25k', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-30 03:55:41', 1, '2021-08-30 04:19:22', 0, NULL, 1),
(6115, 'R.Vignesh', '23', '8825615674', '9952932564', 'Vigneshyuva08@gmail.com', '1994-01-13', 27, '2', '2', 'N.Ravichandran', 'painter', 15000.00, 2, 15000.00, 20000.00, 'Medavakkam', 'Medavakkam', '2108300012', '1', '2', 'upload_files/candidate_tracker/60290412183_VIGNESH NEW RESUME-1_compressed.pdf', NULL, '1', '2021-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-30 04:07:35', 1, '2021-09-01 02:47:14', 0, NULL, 1),
(6116, 'Abirami', '11', '6382736703', '9884596385', 'abhiramigane@gmail.com', '2000-11-26', 20, '2', '2', 'Ganesan', 'Car Driver', 120000.00, 1, 0.00, 12000.00, 'Thiruverkadu', 'Thiruverkadu', '2108300013', '1', '1', 'upload_files/candidate_tracker/54400921968_Abirami.G resume 1.pdf', NULL, '1', '2021-08-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for HR profile, below avg communication, for interview she learned few topics about HR, no Acceptance.', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-30 04:14:09', 1, '2021-08-30 04:36:36', 0, NULL, 1),
(6117, '', '0', '8939009986', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108300014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-30 05:14:46', 0, NULL, 0, NULL, 1),
(6118, 'arun', '23', '8637448164', '8939009986', 'arunsai156.gd@gmail.com', '1991-06-15', 30, '2', '2', 'kamatchi', 'graphic designer', 30.00, 4, 20.00, 30.00, 'chennai', 'vadapalni', '2108300015', '1', '2', 'upload_files/candidate_tracker/59671971308_ARUN_GRAPHIC DESIGNER RESUME_8637448164 (2).pdf', NULL, '1', '2021-08-31', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'known only UX, no basic knowledge in html/css, expt is 30k.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-30 06:50:35', 1, '2021-08-30 07:42:38', 0, NULL, 1),
(6119, '', '0', '6365253569', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108310001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-31 05:00:34', 0, NULL, 0, NULL, 1),
(6120, 'BHUVANESH R', '4', '8124400710', '8778483156', 'bhuvaneshbhuji@gmail.com', '1997-03-24', 24, '1', '2', 'D RAMESH', 'Self employed', 20000.00, 1, 18500.00, 20000.00, 'Chennai', 'Chennai', '2108310002', '', '2', 'upload_files/candidate_tracker/9773629419_BHUVANESH.pdf', NULL, '1', '2021-08-31', 0, 'JOBS', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'came along with his friend tharick, he was not selected so he is not interested.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-31 10:31:15', 1, '2021-08-31 10:49:48', 0, NULL, 1),
(6121, 'D.Anju', '4', '7339343646', '9597305106', 'anju1049566@gmail.com', '1997-04-07', 24, '3', '2', 'N.Delli', 'Cooly', 15000.00, 1, 0.00, 10000.00, 'Arakkonam', 'Arakkonam', '2108310003', '', '1', 'upload_files/candidate_tracker/99942080541_D. ANJU RESUME.docx', NULL, '1', '2021-08-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-31 10:53:54', 1, '2021-08-31 11:23:51', 0, NULL, 1),
(6122, 'Kanugula srikanth', '4', '9640559418', '', 'srikanthkanugula78@gmail.com', '1996-06-06', 25, '2', '2', 'kanugula bikshapathi', 'farmer', 7000.00, 2, 0.00, 10000.00, 'hyderabad', 'sidhipet', '2108310004', '1', '1', 'upload_files/candidate_tracker/49325366392_ramu.docx', NULL, '2', '2021-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-31 11:11:14', 1, '2021-08-31 11:14:55', 0, NULL, 1),
(6123, 'Balaanand R', '23', '9003711352', '8667561910', 'Bala93ee@gmail.com', '1993-05-10', 28, '2', '1', 'Radhakrishnan', 'Business', 8000.00, 2, 18000.00, 20000.00, 'Villupuram', 'Thambaram', '2108310005', '1', '2', 'upload_files/candidate_tracker/93449059339_1617237010970_resume new-converted (1).pdf', NULL, '1', '2021-09-20', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'No relevant skills', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-31 11:51:00', 1, '2021-09-18 11:50:32', 0, NULL, 1),
(6124, 'Bharath P', '11', '6369194436', '8428721685', 'bharathsiva1401@gmail.com', '2001-01-14', 20, '2', '2', 'M.Purushothaman', 'Coolie', 10000.00, 1, 0.00, 12000.00, 'Otteri', 'Otteri', '2108310006', '1', '1', 'upload_files/candidate_tracker/56321985487_bharath p resume.pdf', NULL, '1', '2021-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-31 11:57:35', 1, '2021-08-31 12:03:54', 0, NULL, 1),
(6125, 'yuvashree', '5', '9940102036', '', 'yuviprabha1920@gmail.com', '1997-06-20', 24, '2', '2', 'prabhakaran.r', 'driver', 15000.00, 0, 15500.00, 15000.00, 'triplicane', 'Triplicane', '2108310007', '1', '2', 'upload_files/candidate_tracker/85757585234_CV_2021-06-25-073251.pdf', NULL, '1', '2021-08-31', 0, '', '3', '59', '2021-09-27', 170496.00, '', '', '2021-10-06', '2', 'Selected for Esales KArthika Team in CAFSInfotech Prop.Salary will be revised based on the target of 1.5L for a month overall 3 L in 2 months achieved - 2K increase', '5', '1', '', '1', '1', '', '2', '2021-09-03', '2', '6', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-08-31 12:16:29', 60, '2021-10-07 09:48:48', 0, NULL, 1),
(6126, 'Udaya Kumar s', '4', '8608340606', '7358662769', 'udayakumar41513@gmail.com', '1994-09-12', 26, '3', '2', 'Sakthivel N', 'Metro water', 20000.00, 1, 10000.00, 12000.00, 'Mmda mathur', 'Chennai', '2108310008', '', '2', 'upload_files/candidate_tracker/26380343033_20190915_171323(5).pdf', NULL, '1', '2021-08-31', 6, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up. will not suite for calling.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-31 12:31:25', 1, '2021-08-31 12:41:22', 0, NULL, 1),
(6127, 'Keerthivasan j', '4', '8248673055', '9087343412', 'Keerthivasankumar1998@gmail.com', '1998-01-01', 23, '3', '2', 'Jayakumar', 'Koli', 10000.00, 1, 10000.00, 15000.00, 'Redhills', 'Chennai', '2108310009', '', '2', 'upload_files/candidate_tracker/57365470982_TapScanner 08-31-2021-13.20.pdf', NULL, '1', '2021-08-31', 6, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'from Redhills will not sustain. expt 10k', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-31 12:33:27', 1, '2021-08-31 01:28:48', 0, NULL, 1),
(6128, 'Kandru Raviteja', '5', '9515688327', '', 'rr936062@gmail.com', '1997-06-08', 24, '2', '2', 'venkateshwarao', 'not working', 50000.00, 1, 23000.00, 25000.00, 'hyderabad', 'gandimisamma', '2108310010', '1', '2', 'upload_files/candidate_tracker/47028400515_NEW RESUME (2).pdf', NULL, '2', '2021-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-31 01:05:38', 1, '2021-08-31 01:08:17', 0, NULL, 1),
(6129, 'Ranjani T', '2', '7867845809', '', 'ranjanidurga10@gmail.com', '1992-10-03', 28, '2', '1', 'Baskarji S', 'PA at Amazon Warehouse.', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2108310011', '1', '1', 'upload_files/candidate_tracker/64606179636_RANJANI RESUME_21-converted (1).pdf', NULL, '1', '2021-09-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher for developing, married and has 2 yr kid, expt is 20k and was asking for shift timing. will not suite for us.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-31 01:23:31', 1, '2021-08-31 01:31:52', 0, NULL, 1),
(6130, 'jaivignesh c s', '13', '9626555382', '', 'jaivigneshsankar@gmail.com', '1997-11-07', 23, '2', '2', 'sankar', 'document writer', 15000.00, 1, 0.00, 150000.00, 'salem', 'salem', '2108310012', '1', '1', 'upload_files/candidate_tracker/95791154518_Jaivignesh C S Resume.pdf', NULL, '3', '2021-09-01', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-31 01:23:31', 1, '2021-08-31 02:26:37', 0, NULL, 1),
(6131, '', '0', '9789885038', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108310013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-31 01:59:22', 0, NULL, 0, NULL, 1),
(6132, '', '0', '7200296664', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108310014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-31 02:42:32', 0, NULL, 0, NULL, 1),
(6133, '', '0', '9487165573', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108310015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-31 03:12:09', 0, NULL, 0, NULL, 1),
(6134, 'Abishek pg', '23', '8078173061', '', 'abishekpg221@gmail.com', '1995-05-11', 26, '2', '2', 'Mini', 'House wife', 35000.00, 3, 16500.00, 17000.00, 'Kerala', 'Chennai', '2108310016', '1', '2', 'upload_files/candidate_tracker/46533875751_1624326068264_abishek resume 1 (1).pdf', NULL, '1', '2021-09-02', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not satisfactory', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-31 06:18:33', 50, '2021-09-02 10:33:03', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6135, 'Venkatesan m', '23', '9790701927', '', 'nom312397@gmail.com', '1992-02-28', 29, '2', '2', 'Vendarasi', 'House Wife', 200000.00, 0, 15000.00, 25000.00, 'Kancheepuram', 'Kancheepuram', '2109010001', '1', '2', 'upload_files/candidate_tracker/67513790581_venkat resume-1_compressed.pdf', NULL, '1', '2021-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2021-09-01 09:51:19', 1, '2021-09-01 10:48:51', 0, NULL, 1),
(6136, 'R.VIJAY RAM', '6', '7358072146', '8838070383', 'vijayramr20@gmail.com', '2001-06-20', 20, '1', '2', 'R.Ramesh', 'Business', 15000.00, 1, 0.00, 15000.00, 'Adyar', 'Adyar', '2109010002', '', '1', 'upload_files/candidate_tracker/94433415253_Vijay Ram.pdf', NULL, '1', '2021-09-01', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very childish will not suite for our process.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-01 10:03:40', 1, '2021-09-01 10:13:55', 0, NULL, 1),
(6137, 'Muthu Kumaran', '13', '9952275613', '', 'muthu0753@gmail.com', '1999-02-17', 22, '2', '2', 'Perumal', 'TNEB', 30000.00, 1, 0.00, 20000.00, 'Rajapalayam', 'Rajapalayam', '2109010003', '1', '1', 'upload_files/candidate_tracker/8831564266_MUTHU.pdf', NULL, '2', '2021-09-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '2', '0', '1', '1', '0', '2', '2021-09-03', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 11:10:40', 1, '2021-09-01 11:19:26', 0, NULL, 1),
(6138, 'Ashwin', '5', '9094105571', '', 'ashwinsara46@gmail.com', '1996-02-06', 25, '1', '2', 'Lalitha', 'Housewife', 25000.00, 1, 20000.00, 25000.00, '11/717 Gandhi street evp prabhu avenue', 'Chennai', '2109010004', '', '2', 'upload_files/candidate_tracker/67206684694_ASHWIN RESUME.docx', NULL, '1', '2021-09-01', 0, '5553', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'REJECT', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-01 11:45:44', 1, '2021-09-01 11:49:36', 0, NULL, 1),
(6139, 'Govardhini', '2', '9003566380', '', 'govardhini.a21@gmail.com', '1996-05-21', 25, '2', '2', 'Anandan D', 'Business', 30000.00, 1, 14750.00, 20000.00, 'Chennai, Vadapalani', 'Chennai, Vadapalani', '2109010005', '1', '2', 'upload_files/candidate_tracker/98620978658_Govardhini_A.pdf', NULL, '1', '2021-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 11:48:10', 1, '2021-09-01 11:52:17', 0, NULL, 1),
(6140, 'Vijayalakshmi S', '5', '9150148493', '9940147423', 'sankarvijayalakshmi33@gmail.com', '2001-03-28', 20, '2', '2', 'Sankar', 'Auto driver', 15000.00, 1, 20000.00, 15000.00, 'Mylapore', 'Mylapore', '2109010006', '1', '2', 'upload_files/candidate_tracker/80047533366_Vijayalakshmi Resume-1.docx', NULL, '2', '2021-08-28', 0, '', '3', '59', '2021-09-06', 170496.00, '', '4', '2022-08-29', '2', 'Selected for Karthika Esales Team in CAFSinfotech Prop in 208 deductions', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-01 12:39:22', 60, '2021-09-03 10:43:29', 0, NULL, 1),
(6141, 'D.Jency priya', '4', '8838667831', '', 'Cyrilpriya784@gmail.com', '2000-09-18', 20, '2', '2', 'David arockia Raj susai Mary', 'Farmer', 70000.00, 2, 0.00, 10000.00, 'Kallakurichi', 'Chennai', '2109010007', '1', '1', 'upload_files/candidate_tracker/74996002817_jency resume.docx', NULL, '1', '2021-09-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up. native slang and lot of gap while speaking.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-01 12:40:24', 1, '2021-09-01 01:00:31', 0, NULL, 1),
(6142, 'R.usha rani', '4', '7395965254', '9789926312', 'usharamesh193@gmail.com', '1999-09-02', 21, '2', '2', 'Ramesh.N', 'Cooly', 10000.00, 1, 12000.00, 12000.00, 'Chennai', 'Chennai', '2109010008', '1', '2', 'upload_files/candidate_tracker/51426490249_Usharani resume.doc', NULL, '3', '2021-09-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will Not Suite For Our Process, Came With 3 Friends Will Not Sustain. 2m In Matrimoni Calling and 2ys in chennai Corporation 15k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-01 12:52:53', 50, '2021-09-02 10:08:46', 0, NULL, 1),
(6143, 'D. Sandhiya', '4', '6383007295', '9962943840', 'Sandhiyadhandapani97@gmail.com', '2001-07-09', 20, '2', '2', 'Poongavanam', 'Security', 10000.00, 2, 12000.00, 12000.00, 'Chennai', 'Chennai', '2109010009', '1', '2', 'upload_files/candidate_tracker/31707067001_TapScanner 09-01-2021-13.50.pdf', NULL, '3', '2021-09-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will Not Suite For Our Process, Came With 3 Friends Will Not Sustain. 1m In Matrimoni Calling ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-01 12:53:18', 50, '2021-09-02 10:09:01', 0, NULL, 1),
(6144, '', '0', '6382044367', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109010010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-01 01:11:30', 0, NULL, 0, NULL, 1),
(6145, 'K.bakiyalakshmi', '4', '6383875360', '8122238615', 'bakiyapoorni143@gmail.com', '2000-10-05', 20, '2', '2', 'Muthulakshmi', 'Cooly', 8000.00, 2, 0.00, 12500.00, 'Chennai', 'Chennai', '2109010011', '1', '1', 'upload_files/candidate_tracker/9268920163_Resume (1).pdf', NULL, '1', '2021-09-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process, came with 3 friends will not sustain. 2m in Matrimoni calling ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-01 01:18:07', 50, '2021-09-02 10:09:22', 0, NULL, 1),
(6146, 'S. Jayanthan', '27', '6369625723', '9884184532', 'Jayanthan3110@gmail.com', '1995-10-31', 25, '2', '2', 'K. Suresh babu and s. Indumathy', 'Driver', 20000.00, 1, 8000.00, 15000.00, '73,valluvar nagar, ennore, chennai-600057', '73,Valluvar Nagar, Ennore, Chennai-600057', '2109010012', '1', '2', 'upload_files/candidate_tracker/28389472376_Jayanthan Resume 20191216 (1).docx', NULL, '1', '2021-09-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Client round rejected', '2', '1', '0', '1', '1', '0', '2', '2021-09-06', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 02:52:53', 1, '2021-09-01 03:01:57', 0, NULL, 1),
(6147, '', '0', '7200547553', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109010013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-01 03:53:35', 0, NULL, 0, NULL, 1),
(6148, 'jagadish', '11', '8072315961', '8056096765', 'jagadishali1999@gmail.com', '1999-03-13', 22, '2', '2', 'viji', 'company', 10000.00, 0, 0.00, 10000.00, 'chennai', 'chennai', '2109010014', '1', '1', 'upload_files/candidate_tracker/44200004070_1626241696562_Jagadish.pdf', NULL, '1', '2021-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 04:03:08', 1, '2021-09-01 07:55:01', 0, NULL, 1),
(6149, 'M.D.DASWA DAYALAN', '23', '9677071335', '9678071335', 'Daswadayalan@gmail.com', '2000-04-25', 21, '2', '2', 'M.R.DEENA DAYALAN', 'Manager in', 300000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2109010015', '1', '1', 'upload_files/candidate_tracker/19599763295_M.D.Daswa\'s Resume (4).pdf', NULL, '1', '2021-09-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, expt is 15k+ and need to discuss about the terms and conditions with parents.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 04:16:41', 1, '2021-09-01 04:27:49', 0, NULL, 1),
(6150, 'Yogalakshmi', '25', '7395932756', '', 'yogalakshmiusha@gmail.com', '1995-11-24', 25, '2', '2', 'Kabali', 'Shoe maker', 20000.00, 3, 16000.00, 180000.00, 'CHENNAI', 'CHENNAI', '2109010016', '1', '2', 'upload_files/candidate_tracker/44754958456_yogar.pdf', NULL, '1', '2021-09-01', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'was working in botiq accounts 16k, will not suite for our process. changing job for salary. expt is 18+, avg communication.', '8', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-01 04:18:22', 1, '2021-09-01 04:24:31', 0, NULL, 1),
(6151, 'Santhosh K', '13', '7200419003', '', 'ssanthoshk29@gmail.com', '1998-10-03', 22, '2', '2', 'Kanniyappan m', 'Driver', 15000.00, 1, 0.00, 8000.00, 'CHENNAI', 'CHENNAI', '2109010017', '1', '1', 'upload_files/candidate_tracker/35635494698_updated resume.pdf', NULL, '1', '2021-09-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 04:54:36', 1, '2021-09-01 04:58:27', 0, NULL, 1),
(6152, 'vinothini', '13', '9003352710', '', 'vinothiniraja8@gmail.com', '1995-03-08', 26, '2', '1', 'raja rathinam', 'tneb', 30000.00, 1, 0.00, 10000.00, 'Tirupattur', 'Tirupattur', '2109010018', '1', '1', 'upload_files/candidate_tracker/98707821177_vinu.pdf', NULL, '3', '2021-09-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 04:59:48', 1, '2021-09-01 05:03:57', 0, NULL, 1),
(6153, 'jacob machado', '23', '9597378487', '', 'jacobmachado68@gmail.com', '2006-09-01', 0, '2', '2', 'sahayaraj machado', 'fisherman', 25000.00, 3, 0.00, 16000.00, 'valasai street rameshwaram,ramnad-623529', 'nellaipar street ,chromprt chennai', '2109010019', '1', '1', 'upload_files/candidate_tracker/58556500942_resume-1.pdf', NULL, '1', '2021-09-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'We offered with the CTC 96000 for 1st 6 months and continues with the hike upto 12K PM along with SA. Candidate seems doubtful and we have given him time to confirm, but he Didnxquott turn with his interest', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 05:31:08', 1, '2021-09-01 05:37:06', 0, NULL, 1),
(6154, 'ArunKumar', '23', '9791657880', '9003990850', 'aktextit@gmail.com', '1998-02-02', 23, '2', '2', 'Sankar', 'Salesman', 8000.00, 1, 0.00, 25000.00, 'Madurai', 'Chennai', '2109010020', '1', '1', 'upload_files/candidate_tracker/70773609257_ArunKumar.pdf', NULL, '1', '2021-09-06', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task not satisfactory, candidate not fit for team', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 05:33:58', 50, '2021-09-06 12:22:51', 0, NULL, 1),
(6155, '', '0', '9894304910', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109010021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-01 05:42:50', 0, NULL, 0, NULL, 1),
(6156, 'Raghul.M', '23', '7200505983', '7904227409', 'raghulshobirs@gmail.com', '1996-08-31', 25, '2', '2', 'Parent', 'Driver', 60000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2109010022', '1', '1', 'upload_files/candidate_tracker/51314207958_1613031901602Resume_Raghul.docx', NULL, '1', '2021-09-03', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate not good with content writing and communication ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 07:04:00', 1, '2021-09-01 07:09:58', 0, NULL, 1),
(6157, 'S.aviha', '4', '9176412518', '', 'Samuthirapandian@gmail.com', '2003-03-15', 18, '1', '2', 'Samuthirapandian', 'Farmer', 30000.00, 1, 0.00, 12000.00, 'Tenkasi', 'Kasthuri ladies hostel, Chennai', '2109020001', '', '1', 'upload_files/candidate_tracker/47685694805_Aishu Resume.docx', NULL, '1', '2021-09-02', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very childish, 18 and expt is 12-15k. native slang.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 09:30:45', 1, '2021-09-02 09:53:13', 0, NULL, 1),
(6158, 's.kalaivani', '4', '9944167284', '9943511519', 'kalaivanisjcet@gmail.com', '1999-10-29', 21, '4', '2', 's.srinivasan', 'farmer', 6000.00, 1, 0.00, 20000.00, '2/7A,AMMAIYANDI(P.O),PERAVURANI(T.K),THANJAVUR(Dt)', '2/7A,AMMAIYANDI(P.O),PERAVURANI(T.K),THANJAVUR(Dt)', '2109020002', '', '1', 'upload_files/candidate_tracker/91749756094_Kalaivani S (Resume).pdf', NULL, '3', '2021-09-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 09:40:14', 1, '2021-09-03 12:35:12', 0, NULL, 1),
(6159, 'Naveenkumar', '6', '7904382116', '', 'Naveenkumar1251995@gmail.com', '1995-05-12', 26, '1', '2', 'Mohanasundaram', 'Business', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2109020003', '', '1', 'upload_files/candidate_tracker/43295148365_g0wkj-8608r.pdf', NULL, '1', '2021-09-02', 0, '55576', '3', '59', '2021-09-06', 162000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 09:53:54', 60, '2021-09-02 03:29:04', 0, NULL, 1),
(6160, 'Syed zuber.z', '4', '9003763737', '', 'zubersyed354@gmail.com', '2006-09-02', 15, '4', '1', 'Father name Syed Zakir.N mother name:Ameerun nisha', 'Flower business', 15000.00, 2, 0.00, 11000.00, 'Arakkonam ranipet', 'Arakkonam ranipet', '2109020004', '', '1', 'upload_files/candidate_tracker/59176452146_zuber resume new.docx', NULL, '1', '2021-09-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 09:54:33', 1, '2021-09-02 10:00:35', 0, NULL, 1),
(6161, 'Thangaraj.R', '4', '9976965586', '6374352067', 'rthangaraj@gmail.com', '2000-07-17', 21, '1', '2', 'M.ravichandran', 'Farmer', 80000.00, 2, 0.00, 18000.00, 'Tamil nadu', 'Kanchipuram', '2109020005', '', '1', 'upload_files/candidate_tracker/46123678351_traj res.docx', NULL, '1', '2021-09-02', 0, '00000', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'from kancheepuram, will not sustain, no idea about the job. Referred by GS Consultancy.', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 10:37:19', 8, '2021-09-02 03:15:37', 0, NULL, 1),
(6162, 'Wilson s', '4', '8610166057', '', 'wilsonlio323@gmail.com', '1999-06-15', 22, '4', '2', 'Kumar', 'Car driver', 19000.00, 1, 0.00, 16000.00, 'Puzhal', 'Puzhal', '2109020006', '', '2', 'upload_files/candidate_tracker/60981532987_RESUME.pdf', NULL, '1', '2021-09-02', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'left before interview', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 10:46:29', 1, '2021-09-02 11:14:21', 0, NULL, 1),
(6163, 'Priya Kumari B', '4', '7305556421', '', 'princesspriyakumari95@gmail.com', '1995-11-22', 25, '4', '2', 'Badri prasath', 'Supervisor', 17000.00, 2, 16000.00, 18000.00, 'New Washermanpent', 'New Washermanpent', '2109020007', '', '2', 'upload_files/candidate_tracker/68427138067_Priya CV PDF new file 95.pdf', NULL, '1', '2021-09-02', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Left Before Interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 10:49:28', 1, '2021-09-02 11:25:28', 0, NULL, 1),
(6164, 'Baskar', '6', '6381269262', '8838853370', 'baskarsangeetha1012@gmail.com', '1999-12-10', 21, '1', '2', 'Srinivasan', 'Fabricator', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2109020008', '', '1', 'upload_files/candidate_tracker/37600043397_baskar resume final.pdf', NULL, '1', '2021-09-02', 0, '55576', '3', '59', '2021-09-06', 156000.00, '', '7', '1970-01-01', '1', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 10:55:54', 60, '2021-09-02 03:29:20', 0, NULL, 1),
(6165, 'Beer ali', '6', '9176345302', '', 'beerali2000@gmail.com', '2000-01-28', 21, '1', '2', 'Mohammad areef', 'Security', 12000.00, 1, 0.00, 15000.00, 'Kolathur', 'Chennai', '2109020009', '', '1', 'upload_files/candidate_tracker/56884144207_beer (1).pdf', NULL, '1', '2021-09-02', 0, '55576', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales, expt is 15k.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 10:57:03', 1, '2021-09-02 11:01:30', 0, NULL, 1),
(6166, 'punith', '4', '9500769168', '', 'punithkumar2205@gmail.com', '2000-05-22', 21, '2', '2', 'mahendran', 'teacher', 500000.00, 2, 0.00, 10000.00, 'vellore', 'tiruvallur', '2109020010', '1', '1', 'upload_files/candidate_tracker/82881718114_punith resume.pdf', NULL, '1', '2021-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-02 11:06:47', 1, '2021-09-02 11:09:10', 0, NULL, 1),
(6167, 'logeswari', '4', '8056472983', '', 'logeswarianbalagan60@gmail.com', '1998-06-03', 23, '2', '2', 'anbalagan', 'farmer', 30000.00, 1, 0.00, 10000.00, 'chennai', 'ambattur', '2109020011', '1', '1', 'upload_files/candidate_tracker/3336017985_8056472983 Logeswari.doc', NULL, '1', '2021-09-03', 0, '', '3', '59', '2021-09-07', 132000.00, '', '3', '2022-05-05', '2', 'Selected for Elite - Priyanka Team in Cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-02 11:21:00', 60, '2021-09-04 12:53:26', 0, NULL, 1),
(6168, 'Hasbi.A', '4', '6380688563', '9884608418', 'Khanhasna0717@gmail.com', '2001-02-18', 20, '1', '2', 'Ayub khan', 'Student', 10000.00, 1, 0.00, 15000.00, 'Royapuram', 'Royapuram', '2109020012', '', '1', 'upload_files/candidate_tracker/45197058548_1628172814721_SELVA. A - Resume-converted.pdf', NULL, '1', '2021-09-02', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very childish, hyper active and will not handle our pressure.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 11:39:01', 1, '2021-09-02 11:53:36', 0, NULL, 1),
(6169, 'Manivannan R', '4', '9360128730', '9600203861', 'manivannanmech666@gmail.com', '1995-04-02', 26, '3', '2', 'Ramachandramoorthy', 'Farmer', 25000.00, 3, 14000.00, 17000.00, 'Veppur Tk', 'Veppur Tk', '2109020013', '', '2', 'upload_files/candidate_tracker/59018665666_Resume Bpo.docx', NULL, '1', '2021-09-02', 1, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 1yr credit card sales 13k, has no reliving and payslip. Attire is not satisfied.', '1', '2', '', '4', '6', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-02 11:58:45', 7, '2021-09-09 03:18:12', 0, NULL, 1),
(6170, 'kanne sravan', '13', '9381668969', '8096547391', 'kannesravan80@gmail.com', '1996-06-03', 25, '2', '2', 'kondaiah', 'former', 100000.00, 3, 0.00, 10000.00, 'andhrpradesh', 'chennai', '2109020014', '1', '1', 'upload_files/candidate_tracker/95817553933_my resume.docx.pdf', NULL, '1', '2021-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-02 12:56:28', 1, '2021-09-02 01:01:53', 0, NULL, 1),
(6171, 'V.Rakshaya', '4', '9677235887', '8778530199', 'Rakshayav2009@gmail.com', '2000-09-20', 20, '1', '2', 'V.Amudha', 'Housewife', 20000.00, 1, 0.00, 15000.00, 'Chennai avadi', 'Chennai avdi', '2109020015', '', '1', 'upload_files/candidate_tracker/51160920140_Aishu Resume.docx', NULL, '1', '2021-09-02', 0, 'Jobs', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process, expt is 15k as fresher. ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 02:13:10', 8, '2021-09-02 02:59:24', 0, NULL, 1),
(6172, 'Gayathri', '11', '8778530199', '9677235887', 'santhoshgayu0@gmail.com', '1998-06-23', 23, '1', '2', 'Kasthuri', 'Gardening', 15000.00, 0, 0.00, 17000.00, 'Chennai Avadi', 'Chennai Avadi', '2109020016', '', '1', 'upload_files/candidate_tracker/96881162240_Gayathri523.pdf', NULL, '2', '2021-09-02', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'sal expt is high 15k but no Relevant exp in sales.', '6', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 02:18:11', 1, '2021-09-02 02:23:32', 0, NULL, 1),
(6173, 'Nirosha Dhandabani', '11', '8939894355', '', 'niroshaMargrett@gmail.com', '1995-03-04', 26, '2', '2', 'Dhandabani S', 'Tv mechanic', 200000.00, 2, 0.00, 150000.00, 'Chennai', 'Kovur', '2109020017', '1', '1', 'upload_files/candidate_tracker/72490241175_Nirosha.Resume August.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for the profile. avg communication and expt is 12-13k.', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-02 02:52:14', 50, '2021-09-08 11:55:23', 0, NULL, 1),
(6174, 'dasari prakash', '5', '7013680924', '', 'dasariprakash29@gmail.com', '1996-03-13', 25, '2', '2', 'rajesham', 'farmer', 25000.00, 1, 20000.00, 21000.00, 'hyderabad', 'banjarahills', '2109020018', '1', '2', 'upload_files/candidate_tracker/30774611622_DASARI PRAKASH.docx', NULL, '2', '2021-09-03', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Worked in fmcg sales and in cousin company will not suite for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-02 03:38:52', 1, '2021-09-02 03:41:22', 0, NULL, 1),
(6175, 'Saikrupa Vennapureddy', '4', '9346808284', '', 'saikrupavennapureddy@gmail.com', '1999-11-10', 21, '2', '2', 'sanjeev reddy', 'farmer', 10000.00, 1, 0.00, 13000.00, 'hyderabad', 'dilshuknagar', '2109020019', '1', '1', 'upload_files/candidate_tracker/57449880194_saikrupa resume.pdf', NULL, '2', '2021-09-03', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain planning to do higher studies', '1', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-02 03:45:21', 1, '2021-09-02 03:48:02', 0, NULL, 1),
(6176, 'sasikumar', '23', '9751083291', '6369225158', 'Sasiraj18536@gmail.com', '1997-05-18', 24, '2', '2', 'Raja', 'Driver', 35000.00, 1, 20000.00, 27000.00, 'Chennai', 'Chennai', '2109020020', '1', '2', 'upload_files/candidate_tracker/48997175510_sasikumar (9751083291) Resume.pdf', NULL, '1', '2021-09-04', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'no relevant skills', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-02 05:52:09', 1, '2021-09-02 06:07:17', 0, NULL, 1),
(6177, '', '0', '9677001103', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109020021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-02 09:13:42', 0, NULL, 0, NULL, 1),
(6178, 'Ananth v', '6', '9360599040', '', 'anjaanananth@gmail.com', '1998-06-15', 23, '2', '2', 'Vijay', 'Nil', 30000.00, 2, 0.00, 20000.00, 'Egmor', 'Egmor', '2109030001', '1', '1', 'upload_files/candidate_tracker/16547259762_New Resume-1.pdf', NULL, '1', '2021-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for sales profile, no confidence in speech.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-03 10:13:00', 7, '2021-09-03 11:11:17', 0, NULL, 1),
(6179, '', '0', '8248532969', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109030002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-03 11:22:40', 0, NULL, 0, NULL, 1),
(6180, 'Gopi Krishna k', '4', '8428055425', '9791189501', 'gopikrishna30071999@gmail.com', '1999-07-30', 22, '3', '2', 'D krishnamoorthy', 'Retired conductor', 10000.00, 0, 0.00, 16000.00, 'CHENNAI', 'CHENNAI', '2109030003', '', '1', 'upload_files/candidate_tracker/47935842764_Gopi resume .docx', NULL, '1', '2021-09-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no job need, only son not very serious into his career. will not suite for sales.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 11:23:28', 1, '2021-09-03 11:26:02', 0, NULL, 1),
(6181, 'prakash n', '3', '9074316894', '9894828157', 'prakashmca71@gmail.com', '1996-07-12', 25, '2', '2', 'nataraj v', 'farmer', 20000.00, 0, 0.00, 1.25, 'pallakadu', 'chennai', '2109030004', '1', '1', 'upload_files/candidate_tracker/25087216081_PRAKASH RESUME.pdf', NULL, '1', '2021-09-04', 0, '', '4', '54', NULL, 0.00, '', '', '2021-11-16', '2', 'fresher and looking for react internship and okay with company terms', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-03 11:25:53', 1, '2021-09-03 12:33:40', 0, NULL, 1),
(6182, 'shri ragini', '4', '9384600461', '', 'shriragini1999@gmail.com', '1999-04-14', 22, '2', '2', 'mayan', 'not working', 9000.00, 3, 0.00, 10000.00, 'chennai', 'pammal', '2109030005', '1', '1', 'upload_files/candidate_tracker/45312879841_Shri Ragini - Bio data.docx', NULL, '1', '2021-09-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-03 11:56:57', 1, '2021-09-03 12:00:28', 0, NULL, 1),
(6183, 'kalaivani', '4', '9384599149', '', 'kalaivanikpr6806@gmail.com', '1998-04-10', 23, '2', '2', 'saravanan', 'farmer', 40000.00, 3, 0.00, 10000.00, 'chennai', 'aminjikarai', '2109030006', '1', '1', 'upload_files/candidate_tracker/38546580324_Gayathri.pdf', NULL, '1', '2021-09-04', 0, '', '3', '59', '2021-09-07', 120000.00, '', '6', '2021-09-22', '2', 'Selected for Elite RE,5050 candidate sustainability doubts a lot. Last 1.5 months she got multiple offers and declined stating multiple reasons.Let us analyse in the 7 days of training', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-03 12:04:48', 60, '2021-09-22 06:10:31', 0, NULL, 1),
(6184, 'jayalakshmi', '4', '9566125753', '', 'jayalakshmi182000@gmail.com', '1998-05-18', 23, '2', '2', 'raj', 'working', 12000.00, 1, 0.00, 10000.00, 'chennai', 'ambattur', '2109030007', '1', '1', 'upload_files/candidate_tracker/38952798262_jaya resume-compressed.pdf', NULL, '1', '2021-09-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-03 12:08:30', 1, '2021-09-03 12:15:51', 0, NULL, 1),
(6185, 'K.s.Hariprasath', '4', '9884759026', '9789894521', 'hhari8344@gmail.com', '2001-06-23', 20, '3', '2', 'Shankar', 'BCA', 13000.00, 1, 13000.00, 15000.00, '182/124. Adam street royapuram', '182/124 Adam street royapuram Chennai', '2109030008', '', '2', 'upload_files/candidate_tracker/83151635258_k.s.hariprasath resume.pdf', NULL, '1', '2021-09-03', 3, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 6m exp in semi voice and came with friends, will not sustain.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 12:17:02', 1, '2021-09-03 12:33:38', 0, NULL, 1),
(6186, 'R.GOPIKADHARSHINI', '4', '7305473373', '9884759026', 'dharshinigopika865@gmail.com', '2002-12-10', 18, '3', '2', 'K.RAJAPANDIYAN', 'Bcom', 20000.00, 1, 0.00, 15000.00, 'Thirumulaivoyal,chennai', 'Thirumulaivoyal,chennai', '2109030009', '', '1', 'upload_files/candidate_tracker/12776289705_Gopika Resume.docx', NULL, '1', '2021-09-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 1m exp in calling, came with friends, her communication and convincing is okay. will not sustain.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 12:18:22', 1, '2021-09-03 12:51:30', 0, NULL, 1),
(6187, 'mohammed hisham', '4', '9043341109', '8754038939', 'hmd815088@gmail.com', '1998-01-29', 23, '1', '2', 'nisar ahmed p', 'security', 5000.00, 2, 0.00, 14000.00, 'vaniyambadi tirupattur district', 'vaniyambadi', '2109030010', '', '1', 'upload_files/candidate_tracker/74934484419_pdf_converter_202109034748.pdf', NULL, '1', '2021-09-03', 0, '55583', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 12:23:05', 1, '2021-09-03 01:08:06', 0, NULL, 1),
(6188, 'Dilshath', '4', '6369953557', '7708789111', 'asharfnishanishaashraf@gmail.com', '1998-06-18', 23, '2', '1', 'Amanullah khan', '12th', 100000.00, 1, 0.00, 15000.00, 'Pulianthope', 'Parambur', '2109030011', '7', '1', 'upload_files/candidate_tracker/94982875707_Dilshath 2- Page..docx', NULL, '1', '2021-09-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 6m exp in calling, job need married and divorced has 3yr kid, very native language. will not suite for our process,', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 12:28:28', 1, '2021-09-03 12:36:10', 0, NULL, 1),
(6189, 'K.sowmiya', '6', '9962302081', '', 'sowmiya14032@gmail.com', '2002-03-14', 19, '3', '2', 'Kamaraj.A', 'Tailor', 20000.00, 1, 0.00, 15000.00, 'Gerugambakam', 'Gerugambakkam', '2109030012', '', '1', 'upload_files/candidate_tracker/16544145909_sowmi resume.pdf', NULL, '1', '2021-09-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very low voice and not speaking up, expt is 12-15k. said no idea to speak, ', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 12:48:53', 1, '2021-09-03 01:25:19', 0, NULL, 1),
(6190, 'Arunkumar.M', '6', '6374654072', '8754627745', 'arunkumaraj870@gmail.com', '1999-06-18', 22, '4', '2', 'Maharajan.S', 'Cooli', 20000.00, 2, 0.00, 20000.00, 'Medavaakam', 'Medavaakam', '2109030013', '', '1', 'upload_files/candidate_tracker/18632432710_1629952102225_RESUME001.pdf', NULL, '1', '2021-09-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very low voice and will not suite for sales and expt is 18-20k. looking for backend job', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 12:54:09', 1, '2021-09-03 01:12:17', 0, NULL, 1),
(6191, 'Vignesh', '6', '7904013122', '', 'vram43532@gmail.com', '1999-04-24', 22, '2', '2', 'jayaraman', 'construction', 60000.00, 1, 0.00, 14000.00, 'chennai', 'arumbakkam', '2109030014', '1', '1', 'upload_files/candidate_tracker/41625691235_Vignesh1.docx', NULL, '1', '2021-09-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-03 01:22:51', 1, '2021-09-03 01:25:11', 0, NULL, 1),
(6192, 'Vishnu', '4', '8838938320', '', 'vishnu17g150@gmail.com', '1999-11-29', 21, '2', '2', 'balu', 'working', 50000.00, 1, 0.00, 10000.00, 'chennai', 'tondairpet', '2109030015', '1', '1', 'upload_files/candidate_tracker/49817288413_2021-04-23 09_35_16.133.ScanFile.pdf', NULL, '1', '2021-09-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-03 02:35:24', 50, '2021-09-03 04:08:16', 0, NULL, 1),
(6193, 'imran Ahmed', '4', '7305583029', '', 'imramahamed70074@gmail.com', '2000-09-29', 20, '3', '2', 'abdul', 'late', 0.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2109030016', '', '1', '0', NULL, '1', '2021-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for any profile. not matured enough. not interested in sales and pronunciation is not clear.', '1', '2', '', '', '', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 02:42:56', 7, '2021-09-03 05:31:49', 0, NULL, 1),
(6194, '', '0', '8110885527', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109030017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-03 03:07:05', 0, NULL, 0, NULL, 1),
(6195, '', '0', '8072090612', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109030018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-03 03:25:16', 0, NULL, 0, NULL, 1),
(6196, 'Arunkumar.A', '27', '8778171711', '8525989888', 'arunkumarkpm69@gmail.com', '2001-04-05', 20, '2', '2', 'Annamalai.V', 'Farmer', 7000.00, 2, 0.00, 15000.00, 'KanchiPuram', 'KanchiPuram', '2109030019', '1', '1', 'upload_files/candidate_tracker/15203597333_ARUNKUMAR ANNAMALAI-1.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Knows Only Theory And No Practical Knowledge, Fresher And Done 2m Course. Will Not Suite For Client Company.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-03 03:36:57', 1, '2021-09-06 12:02:31', 0, NULL, 1),
(6197, 'Francis Xavier', '27', '9080925876', '9655662377', 'jerana678@gmail.com', '1997-04-03', 24, '2', '2', 'Anthony Samy', 'Farmer', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2109030020', '1', '1', 'upload_files/candidate_tracker/96955119220_Francis (3).pdf', NULL, '1', '2021-09-06', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for any profile, very Lethargic and no sustainability. expt 15k', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-03 05:51:58', 1, '2021-09-03 05:59:15', 0, NULL, 1),
(6198, 'harish', '6', '9443980567', '', 'harishbalu15596@gmail.com', '1996-05-15', 25, '2', '2', 'balasubramanian', 'turner', 300000.00, 0, 0.00, 15000.00, 'pennadam', 'pennadam', '2109040001', '1', '1', 'upload_files/candidate_tracker/2697504642_harish resume.pdf', NULL, '2', '2021-08-30', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit ', '5', '2', '', '1', '1', '', '2', '2021-09-08', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-04 10:03:25', 7, '2021-09-04 11:25:43', 0, NULL, 1),
(6199, 'A. Rithik kanishkar', '22', '7358042121', '9360720713', 'rithikdhoni7@gmail.com', '2002-02-04', 19, '4', '2', 'K. Arun prasath', 'Dyalsis', 50000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2109040002', '', '1', 'upload_files/candidate_tracker/78892872472_CV_2021-07-26-100927.pdf', NULL, '1', '2021-09-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'looking for internship, pursuing his 3rd year,  willing to learn', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-04 11:08:16', 1, '2021-09-04 11:12:25', 0, NULL, 1),
(6200, 'ugesh kumar', '4', '9962749715', '', 'ugeshkumar877@gmail.com', '2000-10-04', 20, '2', '2', 'venkatachalam', 'auto driver', 12000.00, 1, 0.00, 10000.00, 'chennai', 'perambur', '2109040003', '1', '1', 'upload_files/candidate_tracker/34344310285_nandhini-1.pdf', NULL, '1', '2021-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-04 11:18:00', 1, '2021-09-04 11:19:57', 0, NULL, 1),
(6201, 'Urmila yannabathina', '27', '8374308289', '', 'urmilayannabathina@gmail.com', '1999-12-20', 21, '1', '2', 'Raja yannabathina', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Nellore,Andhra Pradesh', 'Chennai', '2109040004', '', '1', 'upload_files/candidate_tracker/40632390969_Cv.urmi5a9.Pdf', NULL, '1', '2021-09-04', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher and no basic knowledge in domain.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-04 11:40:30', 1, '2021-09-04 11:49:20', 0, NULL, 1),
(6202, 'Sirajudeen.s', '4', '9361874661', '', 'rockerssiraj36@gmail.com', '2001-08-06', 20, '2', '2', 'sajhakhan', 'tailore', 3000.00, 1, 0.00, 10000.00, 'chennai', 'aynavaram', '2109040005', '1', '1', 'upload_files/candidate_tracker/51065803070_Siraj Resume.docx', NULL, '1', '2021-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-04 12:21:05', 1, '2021-09-04 12:24:12', 0, NULL, 1),
(6203, 'MONICA.G', '4', '7338871476', '', 'monihari2315@gmail.com', '2001-07-23', 20, '2', '2', 'govindharaj', 'press', 80000.00, 1, 0.00, 10000.00, 'chennai', 'mount road', '2109040006', '1', '1', 'upload_files/candidate_tracker/34452842540_Resume (20).pdf', NULL, '1', '2021-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-04 12:25:55', 1, '2021-09-04 12:28:23', 0, NULL, 1),
(6204, 'R.Sakthi varsha', '14', '9080865617', '7708847363', 'seeta18@gmail.com', '1999-08-19', 22, '2', '2', 'S.Robert', 'Working', 30000.00, 0, 0.00, 15000.00, 'porur', 'porur', '2109040007', '1', '1', 'upload_files/candidate_tracker/34255340531_sakthivarsha.docx', NULL, '1', '2021-09-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 12:54:40', 1, '2021-09-04 12:58:50', 0, NULL, 1),
(6205, '', '0', '7904409905', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109040008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-04 01:33:58', 0, NULL, 0, NULL, 1),
(6206, 'Raghul.S', '4', '6369100370', '', 'raghulrock@gmail.com', '1999-05-26', 22, '2', '2', 'shankar', 'abroad', 20000.00, 1, 0.00, 10000.00, 'chennai', 'aynavaram', '2109040009', '1', '1', 'upload_files/candidate_tracker/68740182518_Ragul_Resume.pdf', NULL, '1', '2021-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-04 02:36:40', 1, '2021-09-04 02:39:13', 0, NULL, 1),
(6207, 'Subash', '2', '7538880890', '9092645746', 'subash110sh@gmail.com', '2000-02-11', 21, '2', '2', 'velmurugan', 'buisness', 1200000.00, 1, 0.00, 1000.00, 'chennai', 'chennai', '2109040010', '1', '1', 'upload_files/candidate_tracker/34242509144_my_resume.pdf', NULL, '1', '2021-09-06', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for internship alone, planning to do higher study. ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 02:59:54', 1, '2021-09-04 03:35:46', 0, NULL, 1),
(6208, 'M.RoopKumar Sha', '23', '8610846850', '', 'roopkumar3279@gmail.com', '2001-10-17', 19, '2', '2', 'Silk saree business', 'UIUX designer', 60000.00, 1, 0.00, 400000.00, 'Kanchipuram', 'Kanchipuram', '2109040011', '1', '1', 'upload_files/candidate_tracker/56098155517_roopkumar-1.pdf', NULL, '1', '2021-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 04:17:06', 1, '2021-09-04 04:26:01', 0, NULL, 1),
(6209, '', '0', '8667561910', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109040012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-04 04:24:39', 0, NULL, 0, NULL, 1),
(6210, 'Stephen Devaraj', '13', '9080827696', '', 'devastef98@gmail.com', '1998-08-08', 23, '2', '2', 'Nagarajan', 'Physical Education Teacher', 100000.00, 1, 0.00, 10000.00, 'Pondicherry', 'Pondicherry', '2109040013', '1', '1', 'upload_files/candidate_tracker/55500799281_Resume.pdf', NULL, '2', '2021-09-06', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '1', '1', '0', '2', '2021-09-06', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 04:57:06', 1, '2021-09-04 05:02:17', 0, NULL, 1),
(6211, 'M Sreekanth Naidu', '2', '7871193459', '7904777764', 'sreekanthnaidu96@gmail.com', '1996-06-12', 25, '2', '2', 'M Venkata subbaiah naidu', 'Farmer', 10000.00, 0, 0.00, 12000.00, '4/220,poonga nagar,Near Selvi Stores,Thiruvallur', '#1064, Bommanahalli, Bangalore', '2109040014', '1', '1', 'upload_files/candidate_tracker/77148830928_1630755632490_M.Sreekanth Naidu Resume.pdf', NULL, '2', '2021-09-06', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'okay with terms, has to relocate from bangalore, check the tech skills. cross check with the service agreement, only son so have to discuss with parents.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 05:07:53', 1, '2021-09-04 05:19:20', 0, NULL, 1),
(6212, 'GAUTHAM S KIRTHIK', '13', '9487557299', '8838210579', 'gautham311kirthik@gmail.com', '1997-10-24', 23, '2', '2', 'Parent', 'Fresher', 120000.00, 1, 0.00, 15000.00, 'Neyveli', 'Neyveli', '2109040015', '1', '1', 'upload_files/candidate_tracker/6015172834_GAUTHAM S KIRTHIK RESUME.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'from Neyveli, fresher knows nothing in technical, not even knows the basics.', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 05:50:57', 1, '2021-09-04 05:57:09', 0, NULL, 1),
(6213, '', '0', '8608041012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109040016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-04 05:58:33', 0, NULL, 0, NULL, 1),
(6214, 'Prasanth', '27', '8667806700', '', 'cprasanth077@gmail.com', '1998-06-03', 23, '2', '2', 'Chinnadurai', 'Formar', 80000.00, 1, 0.00, 17000.00, 'Namakkal', 'Chennai', '2109040017', '1', '1', 'upload_files/candidate_tracker/13767574740_prasanth resume.pdf', NULL, '1', '2021-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No relevant knowledge and experience.Not suits for our client role', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 05:59:51', 1, '2021-09-04 06:14:40', 0, NULL, 1),
(6215, 'Vignesh.M', '4', '9361944020', '9629759751', 'vm9210456@gmail.com', '2002-08-14', 19, '1', '2', 'Murugan.G', 'Mason', 15000.00, 2, 0.00, 12000.00, 'Thiruvalangadu', 'Thiruvalangadu', '2109060001', '', '1', 'upload_files/candidate_tracker/80918431488_My Resume.pdf', NULL, '1', '2021-09-06', 0, 'CAFSUSR00212', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-06 09:55:56', 1, '2021-09-06 10:14:58', 0, NULL, 1),
(6216, 'J.YASMEEN MARIYAM', '4', '7708897151', '9791095920', 'yasmeenameer872@gmail.com', '1995-07-02', 26, '2', '1', 'J.MUMTAJ BEGAM', 'Housewife', 50000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2109060002', '1', '1', 'upload_files/candidate_tracker/96736999647_1629283507166Resume_Yasmeen.docx', NULL, '1', '2021-09-06', 0, '', '3', '59', '2021-09-08', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Priyanka Team in cash mode. Family business have been shifted from Pallavaram to Dubai.Distance around 16kms.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'Joining mail have been sent on 6th Sept for joining us on 08th Sept. got postponed as she traveled to native due to some health issue in her family.', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-06 11:25:06', 60, '2021-09-11 11:17:47', 0, NULL, 1),
(6217, 'Suresh Elumalai', '6', '8072370694', '9790861319', 'gncsuresh77@gmail.com', '1992-06-21', 29, '2', '1', 'Ranjani', 'Sales girl', 20000.00, 1, 16500.00, 20000.00, 'No.65/72, south west boag road t Nagar', 'Chennai', '2109060003', '1', '2', 'upload_files/candidate_tracker/65531065372_Suresh resumes .pdf', NULL, '3', '2021-09-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '	Rnr Tried Reaching Him From The Day Of Interview .But The Line Is Busy At Every Time We Reached. No Call Back Also', '5', '2', '', '1', '1', '', '2', '2021-09-08', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-06 12:09:53', 8, '2021-09-06 01:43:07', 0, NULL, 1),
(6218, 'R Dinesh', '6', '9677294395', '9941505237', 'dineshdr291197@gmail.com', '1997-11-29', 23, '3', '2', 'S Ramesh', 'Goldsmith', 15000.00, 1, 12000.00, 15000.00, '49/25, village street, THIRUVOTTIYUR, Ch-600019', '49/25,village street, THIRUVOTTIYUR,ch-600019', '2109060004', '', '2', 'upload_files/candidate_tracker/40712188877_a4336065-9158-4c38-ab89-729a1d4d4b79Share_Dinesh.R_-_Resume.pdf', NULL, '1', '2021-09-06', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Comfortable With Telesales, Parents Are Not Convincing With The Role.', '5', '1', '', '1', '1', '', '2', '2021-09-08', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-06 12:37:08', 8, '2021-09-06 01:41:29', 0, NULL, 1),
(6219, 'karthick raja v', '27', '8489215911', '', 'cartheerajavel@gmail.com', '1998-12-10', 22, '2', '2', 'Velmurugan A', 'Farmer', 20000.00, 1, 0.00, 17000.00, 'Ariyalur', 'Ariyalur', '2109060005', '1', '1', 'upload_files/candidate_tracker/50769945042_resume carthee (1).pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'knows only theory and no practical knowledge, fresher and done 4m course. will not suite for client company.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-06 12:55:37', 1, '2021-09-06 01:25:27', 0, NULL, 1),
(6220, '', '0', '9003509980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109060006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-06 01:18:32', 0, NULL, 0, NULL, 1),
(6221, 'shaheen kauser', '5', '7358356281', '', 'shaheenkhamrudeen@gmail.com', '1993-09-03', 28, '1', '1', 'noorunissa', 'reseller', 10.00, 3, 0.00, 15000.00, 'mount road', 'mount road', '2109060007', '', '2', 'upload_files/candidate_tracker/41385694239_ubaid (1).docx', NULL, '1', '2021-09-06', 0, 'divya', '3', '59', '2021-09-13', 170496.00, '', '4', '2021-11-09', '2', 'Selected for Dhivya Team with PT deduction in CAFSInfotech Prop', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', 'Internal Reference and she is an ex-employee, we offered 179496 includes the only deduction of PT. We gave her joining date  on 08-Sep, but due to her personal family issue joining date has been postponed to 13-Sep-2021', '', '', '', NULL, NULL, NULL, 1, '2021-09-06 01:42:46', 60, '2021-09-11 06:01:47', 0, NULL, 1),
(6222, '', '0', '7259621721', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109060008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-06 02:16:18', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6223, 'Sangeetha G', '6', '7259622721', '', 'sangeethavijay7158@gmail.com', '1997-01-08', 25, '1', '2', 'Father', '300000', 400000.00, 2, 15000.00, 16000.00, 'Tamas road', 'T nager', '2109060009', '', '2', 'upload_files/candidate_tracker/57590229365_sangeetha new.pdf', NULL, '1', '2022-11-22', 15, 'CA164', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-06 02:36:44', 1, '2022-11-22 01:22:42', 0, NULL, 1),
(6224, 'Sangeetha g', '4', '7259621722', '7259621721', 'Sangeethavijay7158@gmail.com', '1997-01-08', 24, '1', '2', 'M.gandhi', 'Farmer', 12000.00, 2, 0.00, 18000.00, 'T.nagar', 'T.nagar', '2109060010', '', '1', 'upload_files/candidate_tracker/58762162427_1628172814721_SELVA. A - Resume-converted.pdf', NULL, '3', '2021-09-06', 0, 'Job.s', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, very low voice and will not handle pressure. 2017 passed out husband late has 3yr kid.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-06 02:43:41', 1, '2021-09-06 02:51:09', 0, NULL, 1),
(6225, 'Manikandan Thangadurai', '23', '9042602827', '', 'manikandant3011@gmail.com', '2000-11-30', 20, '2', '2', 'Thangadurai', 'Designer', 25000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Chennai', '2109060011', '1', '1', 'upload_files/candidate_tracker/31723749644_Resume_Manikandan T.pdf', NULL, '1', '2021-09-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-06 04:08:02', 1, '2021-09-06 04:13:23', 0, NULL, 1),
(6226, 'K.Abdul Rahim', '13', '8667833662', '', 'kh.abdulrahim98@gmail.com', '1998-02-20', 23, '2', '2', 'Kadhar hussain', 'Tailor', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2109060012', '1', '1', 'upload_files/candidate_tracker/85259854149_Rahim Resume.pdf', NULL, '1', '2021-09-07', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'check for php internship, fresher, willing to learn,', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-06 04:18:56', 7, '2021-09-07 05:49:15', 0, NULL, 1),
(6227, '', '0', '9444904879', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109060013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-06 05:16:05', 0, NULL, 0, NULL, 1),
(6228, '', '0', '8807779159', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109060014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-06 07:01:42', 0, NULL, 0, NULL, 1),
(6229, 'hassain basha', '23', '8220542976', '', 'hassainbashahass@gmail.com', '2000-04-07', 21, '2', '2', 'sabir basha', 'skin murchant', 6000.00, 1, 0.00, 15000.00, 'Kanchipuram', 'Kanchipuram', '2109060015', '1', '1', 'upload_files/candidate_tracker/52162702769_HASSAIN BASHA-Resume-converted.pdf', NULL, '2', '2021-09-07', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-06 07:32:14', 1, '2021-09-06 07:46:43', 0, NULL, 1),
(6230, '', '0', '9994855561', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109060016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-06 08:52:06', 0, NULL, 0, NULL, 1),
(6231, 'nandakrishnan', '22', '7338769032', '9677153992', 'nandakrishr05@gmail.com', '1997-02-02', 24, '2', '2', 'ramesh', 'accounts executive', 25000.00, 0, 0.00, 10000.00, 'Chintadripet', 'chintadripet', '2109070001', '1', '1', 'upload_files/candidate_tracker/91091200772_Nandakrishnan - Resume (1).pdf', NULL, '1', '2021-09-07', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'No knowledge and not fit for our team', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-07 12:18:18', 1, '2021-09-07 12:23:26', 0, NULL, 1),
(6232, 'GANESH KUMAR R', '6', '9940624338', '9003240362', 'ganeshkumarrajendran900@gmail.com', '1998-08-16', 23, '2', '2', 'RAJENDRAN G', 'EXPIRED', 15000.00, 1, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2109070002', '1', '2', 'upload_files/candidate_tracker/7880750383_GANESH NEW 22.06.21-converted.pdf', NULL, '1', '2021-09-07', 0, '', '3', '59', '2021-09-09', 186000.00, '', '6', '2021-11-13', '1', 'Selected for Syed Team with PF/ESI/PT deductions. Candidate have a plan to do part time education in UG. Not relevant Sales Exp, but he is into Customer care exp earlier. Let us try for Relationship Executive', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-07 10:04:13', 60, '2021-09-07 12:37:19', 0, NULL, 1),
(6233, 'Srikanth.vm', '6', '9865416066', '8807600998', 'mage19@gmail.com', '2000-02-19', 21, '1', '2', 'MAHARAJ S', 'Kooli', 10000.00, 2, 0.00, 15000.00, 'Dharamapuri', 'Anna sali', '2109070003', '', '1', 'upload_files/candidate_tracker/97000124648_mahendiran resume.docx.pdf', NULL, '1', '2021-09-07', 0, '55576', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Tried couple of times and no response from the candidate', '5', '2', '0', '1', '1', '0', '2', '2021-09-08', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-07 10:18:43', 1, '2021-09-07 11:01:05', 0, NULL, 1),
(6234, 'MAHENDIRAN M', '6', '8807600998', '9008826567', 'mage19@gmail.com', '2000-02-19', 21, '1', '2', 'MAHARAJ S', 'Kooli', 13000.00, 2, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2109070004', '', '1', 'upload_files/candidate_tracker/85221044203_mahendiran resume.docx', NULL, '1', '2021-09-07', 0, '55576', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, will not handle pressure and sustain', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-07 10:19:33', 1, '2021-09-07 11:05:55', 0, NULL, 1),
(6235, 'Ponraj P', '4', '6382996521', '', 'ponrajkp2001@gmail.com', '2001-05-17', 20, '3', '2', 'Petchimuthu K', 'Metal Shop', 20000.00, 2, 0.00, 12000.00, 'T-Nagar', 'T-Nagar', '2109070005', '', '1', 'upload_files/candidate_tracker/75347448323_PONRAJ RESUME 2021.pdf', NULL, '1', '2021-09-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, will not handle pressure.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-07 10:56:32', 1, '2021-09-07 11:06:35', 0, NULL, 1),
(6236, 'S.dhamodharan', '20', '8939307703', '9445813767', 'Dhamodharan03121997@gmail.com', '1997-12-03', 23, '2', '2', 'L.srinivasan father', 'BSNL Reated staffe', 10000.00, 1, 14500.00, 15500.00, 'Keekattalai', 'Keekattalai', '2109070006', '1', '2', 'upload_files/candidate_tracker/71793327368_1630861233050Resume_S.pdf', NULL, '1', '2021-09-07', 10, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 3m exp in semi voice 8k, expt sal is 12k, will not suite for 12k.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-07 11:03:44', 50, '2021-09-07 12:14:52', 0, NULL, 1),
(6237, 'Sheril John J', '6', '7373388705', '', 'sheril.john60@gmail.com', '1992-09-16', 28, '1', '1', 'Johnson R', 'Farmer', 60000.00, 1, 0.00, 15000.00, 'Nagercoil', 'Saidapet', '2109070007', '', '1', 'upload_files/candidate_tracker/60294321389_Sheril Biodata.pdf', NULL, '1', '2021-09-07', 0, '55576', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'i dont remember on this.. sorry', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-07 12:15:53', 1, '2021-09-07 12:30:45', 0, NULL, 1),
(6238, 'janani', '4', '8870383274', '', 'saijanani0401@gmail.com', '1994-01-04', 27, '2', '1', 'karthikeyan', 'working', 20000.00, 1, 13000.00, 11000.00, 'chennai', 'ambattur', '2109070008', '1', '2', 'upload_files/candidate_tracker/79416653553_JANANI RESUME.docx', NULL, '1', '2021-09-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-07 12:17:34', 1, '2021-09-07 12:21:13', 0, NULL, 1),
(6239, 'sameena', '5', '8754762258', '', 'ammuabu98@gmail.com', '1998-05-09', 23, '2', '2', 'abubacker', 'suthern railways', 20000.00, 0, 13000.00, 150000.00, 'coimbatore', 'chennai', '2109070009', '1', '2', 'upload_files/candidate_tracker/11012001645_experience resume.docx', NULL, '1', '2021-09-07', 0, '', '3', '59', '2021-09-13', 158496.00, '', '5', '1970-01-01', '2', 'Selected for Karthika Esales Team with PT deductions only in CAFSinfotech Prop', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', 'Joining Welcome Mail Sent. Regional Head Gaurav Sir committed a salary hike of 1K from 3rd month if candidate achieved the proposed target of 1.5 L each in next 2 months', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-07 12:37:55', 60, '2021-09-11 12:31:01', 0, NULL, 1),
(6240, 'latha', '2', '6380604251', '9629860250', 'lathaajs2000@gmail.com', '2000-05-20', 21, '2', '2', 'jaya', 'farmer', 10000.00, 3, 0.00, 20000.00, 'villupuram', 'villupuram', '2109070010', '1', '1', 'upload_files/candidate_tracker/6372198077_lathajaya.pdf', NULL, '1', '2021-09-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'looking for job, no knowledge in basics, has self learning will not suite for 15k and internship too.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-07 12:54:55', 1, '2021-09-08 04:13:32', 0, NULL, 1),
(6241, '', '0', '6383478062', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109070011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-07 01:10:20', 0, NULL, 0, NULL, 1),
(6242, 'Gunasekaran. E', '4', '7338909349', '', 'Gunaeswaran2000@gmail.com', '2001-01-08', 20, '2', '2', 'Vedhvalli', 'Housekeeping', 13000.00, 1, 0.00, 10000.00, '4b/17 kamraj street otteri Chennai-6000012', 'Otteri', '2109070012', '1', '1', 'upload_files/candidate_tracker/74343007517_resume_gunasekaran_col (4).pdf', NULL, '1', '2021-09-07', 0, '', '3', '59', '2021-09-27', 120000.00, '', NULL, '2024-05-25', '2', 'Selected for Muthu team with PF/ESI/PT', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '3', '9', 'Offered and given him the joining Date on 27-Aug, but he requested to join us on 29-Aug as his relieving from the current company getting delay(salary Delay)', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-07 03:15:04', 60, '2021-09-25 03:21:12', 0, NULL, 1),
(6243, 'Dhivya', '4', '6374428869', '', 'dhivyamuthusamy182@gmail.com', '1998-02-18', 23, '1', '1', 'Muthusamy', 'Driver', 10000.00, 1, 12000.00, 14000.00, 'Salem', 'Chennai', '2109070013', '', '2', 'upload_files/candidate_tracker/57539340403_DIV2.pdf', NULL, '1', '2021-09-07', 0, 'Jenifer', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, communication is not upto the level and expt is 15k', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-07 03:38:22', 1, '2021-09-07 03:46:53', 0, NULL, 1),
(6244, 'sathiya g', '27', '6379451512', '6381563269', 'sathiyag414@gmail.com', '1996-04-24', 25, '2', '1', 'michael raj s', 'marketting executive', 20000.00, 1, 0.00, 15000.00, 'cuddalore', 'chennai', '2109070014', '1', '1', 'upload_files/candidate_tracker/55353109257_Sathiya Resumé (1).docx', NULL, '2', '2021-09-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-07 04:12:09', 1, '2021-09-07 05:07:27', 0, NULL, 1),
(6245, 'Indumathi V', '27', '7339136815', '', 'indumathiv2000@gmail.com', '2000-08-10', 21, '2', '2', 'Venkatesan S', 'Auto driver', 15000.00, 2, 0.00, 250000.00, 'Chennai', 'Vellore district', '2109070015', '1', '1', 'upload_files/candidate_tracker/37438421136_indu resume.pdf', NULL, '2', '2021-09-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-07 04:37:42', 1, '2021-09-07 04:47:57', 0, NULL, 1),
(6246, '', '0', '9976025383', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109070016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-07 04:43:25', 0, NULL, 0, NULL, 1),
(6247, '', '0', '9492279770', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109070017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-07 04:59:23', 0, NULL, 0, NULL, 1),
(6248, 'Sunthar V', '22', '9442616471', '', 'frndzindagi@gmail.com', '1998-11-12', 22, '2', '2', 'Visuvanathan', 'Fresher', 84000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Padappai, Chennai', '2109080001', '1', '1', 'upload_files/candidate_tracker/3572897803_Sunthar_CV.docx', NULL, '1', '2021-09-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-08 08:31:03', 1, '2021-09-08 08:35:02', 0, NULL, 1),
(6249, 'GOWTHAM.N', '4', '6383940288', '', 'ngowtham690@gamail.com', '2001-04-30', 20, '2', '2', 'Narayanan', 'Dry cleaning', 15000.00, 1, 0.00, 12000.00, 'purasaiwakkam chennai-07', 'Purasaiwakkam chennai-07', '2109080002', '1', '1', 'upload_files/candidate_tracker/17637509318_Resume.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain and handle pressure.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-08 10:18:56', 1, '2021-09-08 10:31:45', 0, NULL, 1),
(6250, '', '0', '7418832798', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109080003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-08 10:23:56', 0, NULL, 0, NULL, 1),
(6251, 'vijaan m', '4', '6381802146', '', 'msvijayan2001@gmail.com', '2001-09-21', 19, '3', '2', 'murugan', 'unemploee', 0.00, 0, 0.00, 10000.00, 'thiruvannamalai', 'west mambalam', '2109080004', '', '1', 'upload_files/candidate_tracker/93612127515_1628911685832VijayanResume.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for any profile, very fresher and new to chennai, no idea about his career and job.', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '9', '', '', '', '0', NULL, NULL, NULL, 1, '2021-09-08 10:23:58', 7, '2021-09-08 02:59:31', 0, NULL, 1),
(6252, 'Varsha A', '4', '8925236187', '8190964559', 'varshadeepak1827@gmail.com', '2000-01-18', 21, '3', '2', 'Usha A', 'Ticket booking executive', 15000.00, 1, 13000.00, 12000.00, 'Chennai', 'Chennai', '2109080005', '', '2', 'upload_files/candidate_tracker/93620003073_1630997024276_1629870904433_1628940123004_1628916719186_1628916608282_1627894948100_Varsha A (1) (1)(1).pdf', NULL, '1', '2021-09-08', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-08 11:04:48', 1, '2021-09-08 11:09:30', 0, NULL, 1),
(6253, 'mohan', '6', '8939322658', '', 'dmohan2712191@gmail.com', '2006-09-08', 0, '2', '2', 'darmarajan', 'business', 12000.00, 2, 10500.00, 14000.00, 'chennai', 'chennai', '2109080006', '1', '2', 'upload_files/candidate_tracker/44122902328_experience resume.docx', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, has 3yr exp in calling but no clarity in his speech. Lctc ia 10.5k and expt is 16k.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-08 11:05:47', 1, '2021-09-08 11:11:03', 0, NULL, 1),
(6254, 'Gowtham. D', '4', '7338747237', '', 'Gowthamdesam83@gmail.com', '1999-11-15', 21, '2', '2', 'Desappan', 'Wellding', 10000.00, 1, 0.00, 13000.00, 'Kottivakkam Chennai 41', 'Kottivakkam chennai 41', '2109080007', '1', '1', 'upload_files/candidate_tracker/15778087675_GOWTHAM .D.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, wearing braces and has 6 bL and has to complete his exam and planning to do higher study.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-08 11:22:03', 1, '2021-09-08 11:56:36', 0, NULL, 1),
(6255, 'imran', '6', '9080484521', '', 'rockz1582@gmail.com', '1999-01-12', 22, '2', '2', 'Showgath ali', 'business', 1000000.00, 1, 0.00, 11000.00, 'annanagar', 'annanagar', '2109080008', '1', '1', 'upload_files/candidate_tracker/92367020782_IMRAN ALI RESUME 2021.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'time being looking for job, for extra pocket money he looking for job, will not sustain.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-08 11:25:56', 1, '2021-09-08 11:51:43', 0, NULL, 1),
(6256, 'MOHAMED THAHAR', '6', '8939744604', '9080484521', 'mohamed.thahar99@gmail.com', '2006-09-08', 0, '2', '2', 'Abdul Khudus', 'Superintendent', 50000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2109080009', '1', '1', 'upload_files/candidate_tracker/80897168073_printChallan (7).pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain, can work here for 6m, planning to do his higher study regular.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-08 11:26:38', 1, '2021-09-08 11:50:38', 0, NULL, 1),
(6257, 'Karthick', '4', '8610172158', '9962230049', 'karthickonline2495@gmail.com', '1995-04-24', 26, '3', '2', 'K.elango', 'Petrol bunk', 20000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2109080010', '', '2', 'upload_files/candidate_tracker/46192876552_karthi.doc - Hword.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1yr exp in calling and 2yr exp in cams kyc, got hike in april 2021 from 13k to 16k. reason for reliving is low hike, expt is 18-20k', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-08 12:40:54', 1, '2021-09-08 12:48:36', 0, NULL, 1),
(6258, '', '0', '8248948345', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109080011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-08 01:22:25', 0, NULL, 0, NULL, 1),
(6259, 'Ranjani', '4', '8015587272', '8939882846', 'jennitr30@gmail.com', '1994-08-30', 27, '3', '1', 'G.velu', 'Private sector', 27000.00, 2, 16000.00, 15000.00, 'Veppampattu', 'Veppampattu', '2109080012', '', '2', 'upload_files/candidate_tracker/85418481063_Ranjani-3.docx', NULL, '1', '2021-10-06', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-08 01:23:08', 1, '2021-10-06 11:12:44', 0, NULL, 1),
(6260, '', '0', '9566001017', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109080013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-08 03:12:59', 0, NULL, 0, NULL, 1),
(6261, 'Ruban selvam', '27', '9790141044', '9080033979', 'ruban.john54@gmail.com', '1992-06-05', 29, '2', '1', 'Selvam', 'Ex government employee', 30000.00, 1, 13500.00, 30000.00, '31/12 Hindu colony, 1st main road, Ullagaram.ch-91', '31/12 Hindu Colony, 1st Main Road ,Ch-91', '2109080014', '1', '2', 'upload_files/candidate_tracker/56958058166_Ruban Selvam.docx', NULL, '1', '2021-09-11', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-08 06:08:12', 1, '2021-09-08 06:18:48', 0, NULL, 1),
(6262, 'SHAHUL HAMEED S A', '4', '8870935892', '7904058983', 'shahulbt786@gmail.com', '1996-07-14', 25, '2', '2', 'Anwar ali', 'Marketing', 180000.00, 1, 0.00, 18.00, 'Karur', 'Chennai', '2109090001', '1', '1', 'upload_files/candidate_tracker/18969399390_SHAHUL HAMEED S.A.docx', NULL, '1', '2021-09-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 2yr exp in calling, mahaveer electronics, expt is 18k and holds offer in bank bazar 15k and will not sustain, and suite for our process', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-09 10:42:23', 1, '2021-09-09 10:50:06', 0, NULL, 1),
(6263, 'Madhan s', '6', '9941102090', '9677269224', 'smadhan641@gmail.com', '2000-02-26', 21, '2', '2', 'Kalayanaaundaram', 'Business', 15000.00, 1, 10500.00, 12000.00, 'Prugudai', 'Prugudai', '2109090002', '1', '2', 'upload_files/candidate_tracker/79822940221_madhan makku.pdf', NULL, '1', '2021-09-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have given time to confirm the CTC offered,but his expectation is very high and not comfortable  to join us', '5', '2', '0', '1', '1', '0', '2', '2021-09-13', '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-09 11:17:46', 1, '2021-09-09 11:23:46', 0, NULL, 1),
(6264, 'balakumaran c', '3', '7904015586', '', 'balachandran1046@gmail.com', '1996-12-28', 24, '2', '2', 'Chandran yadav J', 'Driver', 20000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2109090003', '1', '1', 'upload_files/candidate_tracker/75295513097_BALAKUMARAN C RESUME.pdf', NULL, '1', '2021-09-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Seems not much comfortable with TxxampC, asked time to confirm on the same but he Didnxquott turn back with his confirmation.', '2', '2', '0', '1', '1', '0', '2', '2021-09-13', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-09 12:10:42', 1, '2021-09-09 12:43:23', 0, NULL, 1),
(6265, 'maariyapan', '6', '8939274278', '', 'maaridass66@gmail.com', '1998-07-20', 23, '2', '2', 'balan', 'tailor', 6000.00, 1, 0.00, 12000.00, 'kodambakkam', 'kodambakkam', '2109090004', '1', '1', 'upload_files/candidate_tracker/82822371809_CV_2021-07-02-044709.pdf', NULL, '1', '2021-09-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 1yr exp in networking, fresher for calling expt is 15k, not speaking up and will not suite for sales.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-09 12:12:45', 1, '2021-09-09 12:15:22', 0, NULL, 1),
(6266, 'mohanraj m', '4', '6380303858', '9445603711', '18ubu180mohanraj@gmail.com', '2000-07-07', 21, '1', '2', 'mohan v', 'goverment sect', 20000.00, 1, 0.00, 13000.00, 'tiruvallur', 'tiruvallur', '2109090005', '', '1', 'upload_files/candidate_tracker/20865367270_Mohanraj .pdf', NULL, '1', '2021-09-09', 0, 'jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-09 01:21:26', 1, '2021-09-09 01:34:56', 0, NULL, 1),
(6267, 'Deepak.k', '4', '9894209227', '9600328315', 'deepakdeepu23760@gmail.com', '1999-06-25', 22, '1', '2', 'Kottiswaran', 'Advocate', 15000.00, 1, 0.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2109090006', '', '1', 'upload_files/candidate_tracker/72619632077_Resume-3.pdf', NULL, '1', '2021-09-09', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-09 01:21:27', 1, '2021-09-09 01:34:42', 0, NULL, 1),
(6268, 'Ajith Kumar K R', '4', '8248269217', '9600328315', 'ajithkiran9821@gmail.com', '1998-07-21', 23, '1', '2', 'Raghu', 'Advocate', 15000.00, 2, 10000.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2109090007', '', '2', 'upload_files/candidate_tracker/51808242070_Ajith 2020.pdf', NULL, '1', '2021-09-09', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-09 01:22:42', 1, '2021-09-09 01:35:12', 0, NULL, 1),
(6269, 'Ajith Kumar', '4', '8248269215', '9600328315', 'ajithkiran9821@gmail.com', '1998-07-21', 23, '1', '2', 'Raghu', 'Advocate', 15000.00, 2, 10000.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2109090008', '', '2', 'upload_files/candidate_tracker/66531667150_RESUME.pdf', NULL, '1', '2021-09-09', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-09 01:38:59', 1, '2021-09-09 01:41:46', 0, NULL, 1),
(6270, 'testing', '2', '3478901245', '3478901246', 'latha@cafsinfotech.in', '2006-09-09', 0, '3', '2', 'test', 'test', 12000.00, 0, 0.00, 10000.00, 'Test', 'Test', '2109090009', '', '1', 'upload_files/candidate_tracker/16015613435_Bugs.docx', NULL, '1', '2021-09-09', 0, '', '3', '27', '2021-09-09', 0.00, '', '5', '1970-01-01', '1', '', '2', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-09 03:12:00', 1, '2021-09-09 03:15:37', 0, NULL, 1),
(6271, 'Sivanathan Balaguru', '27', '9535109460', '', 'sivanathanbbe@gmail.com', '1987-10-07', 33, '2', '1', 'Saranya', 'House wife', 100000.00, 0, 1600000.00, 3400000.00, 'Chennai', 'Chennai', '2109090010', '1', '2', 'upload_files/candidate_tracker/4380255217_Sivanathan Balaguru.pdf', NULL, '1', '2021-09-15', 60, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 10yr exp and 5yrs in society general. his ctc is 16.5L and expt is 24L. wife working in tcs and from virugambakkam.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-09 03:46:49', 1, '2021-09-09 03:50:59', 0, NULL, 1),
(6272, 'Murugaprasanth A', '23', '9940849419', '8489426037', 'Murugaprasanth79@gmail.com', '1995-03-21', 26, '2', '1', 'Monisha', 'Searching for a job', 25000.00, 1, 0.00, 100000.00, 'Chennai', 'Chennai', '2109090011', '1', '1', 'upload_files/candidate_tracker/40635571476_MurugaPrasanth Resume D (1).pdf', NULL, '1', '2021-09-13', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Task not satisfactory', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-09 04:07:57', 1, '2021-09-10 12:46:34', 0, NULL, 1),
(6273, 'Purusothaman', '6', '9087247959', '9087247949', 'Purusothaarthi235@gmail.com', '1997-12-23', 23, '1', '1', 'Lakshime', 'Business', 7000.00, 1, 0.00, 15000.00, 'Nagercoil', 'Chrompate', '2109090012', '', '2', 'upload_files/candidate_tracker/84424843211_1629952102225_RESUME001.pdf', NULL, '1', '2021-09-09', 0, 'Jobd', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-09 09:12:08', 1, '2021-09-09 09:18:26', 0, NULL, 1),
(6274, 'E.BALAJI', '4', '7358454658', '', 'jibala1507@gmail.com', '2000-07-15', 21, '2', '2', 'J.ELANCHEZIAN', 'Driver', 16000.00, 1, 0.00, 11000.00, 'Chennai', 'Chennai', '2109110001', '1', '1', 'upload_files/candidate_tracker/73708574909_BALAJI .pdf', NULL, '1', '2021-09-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, not much comfortable with Telesales. Not open for target based positions. Will not handle the pressure. Not much communicative', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-11 10:55:37', 50, '2021-09-11 11:12:24', 0, NULL, 1),
(6275, '', '0', '6382408764', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109110002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-11 11:41:16', 0, NULL, 0, NULL, 1),
(6276, 'SHREERAPATHEE', '6', '7871880128', '', 'shreerapathee@gmail.com', '1994-01-17', 27, '2', '2', 'SURESH father', 'Adimin', 75000.00, 1, 0.00, 20000.00, 'CHENNAI', 'PALLAVARAM', '2109110003', '1', '2', 'upload_files/candidate_tracker/91780187475_Shreerapathee 04.docx', NULL, '1', '2021-09-11', 45, '', '5', '20', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate had an accident recently due to which he has to visit his ortho everyday from evening 6 to 9 for atleast 6 montha. Not willing for full day work', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-11 11:51:47', 60, '2021-09-11 01:11:49', 0, NULL, 1),
(6277, '', '0', '9500095623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109110004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-11 01:16:07', 0, NULL, 0, NULL, 1),
(6278, '', '0', '8124733233', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109110005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-11 01:16:41', 0, NULL, 0, NULL, 1),
(6279, 'Datchinamoorthy Mathivanan', '23', '8056726293', '9360333633', 'datchinamvs86@gmail.com', '1997-02-06', 24, '2', '2', 'Mathivanan', 'Daily wages', 15000.00, 1, 25.00, 35.00, 'Kumbakonam', 'Kumbakonam', '2109110006', '1', '2', 'upload_files/candidate_tracker/14233569401_datchinamoorthy Update Resume_13.08.2021.pdf', NULL, '1', '2021-09-14', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Doesnxquott know what is ui/ux, knows photoshop and cdrw, 4.5yr exp in core field 23.7k, expt is 30k, just like that came for interview.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-11 01:18:18', 1, '2021-09-11 01:36:01', 0, NULL, 1),
(6280, 'yogeshwaran c', '23', '9551079036', '', 'yogeshyogi1676@gmail.com', '2001-06-07', 20, '2', '2', 'Chokalingam', 'Vilder', 25000.00, 5, 0.00, 15000.00, 'Perungudi', 'Peruy', '2109110007', '1', '1', 'upload_files/candidate_tracker/24776849212_my resume yogesh .docx.pdf', NULL, '2', '2021-09-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 6m exp in networking 13k, no basic knowledge in ui/ux, expt is 10-15k,', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-11 03:00:00', 7, '2021-09-13 10:21:18', 0, NULL, 1),
(6281, 'Sophia Mandolin', '13', '9003244291', '', 'smandolin6@gmail.com', '1992-12-22', 28, '2', '1', 'Vivek Augustine pal', 'Network Engineer', 30000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2109110008', '1', '1', 'upload_files/candidate_tracker/70818633371_C#.NET C v (2).docx', NULL, '1', '2021-09-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 11m exp in s/w testing 10k, 6m course in multiple domin, married and 3yr kid, father and mother both govt emp, husband is a project manager in a pvt company.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-11 03:08:16', 50, '2021-09-15 10:50:21', 0, NULL, 1),
(6282, '', '0', '9442300048', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109110009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-11 05:06:43', 0, NULL, 0, NULL, 1),
(6283, 'Kaviyarasu S', '13', '8015414383', '', 'Kavinitsolutions@gmail.com', '1997-10-22', 23, '2', '2', 'Saravanan', 'HR contractor', 30000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2109110010', '1', '1', 'upload_files/candidate_tracker/62538099031_My resumekaviyarasu.pdf', NULL, '1', '2021-09-14', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-11 05:50:04', 1, '2021-09-11 06:06:23', 0, NULL, 1),
(6284, '', '0', '7010445945', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109110011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-11 11:48:08', 0, NULL, 0, NULL, 1),
(6285, 'V.vijayakumar', '14', '9791491777', '9790580230', 'Vijaykum@gmail.com', '2006-09-13', 0, '2', '2', 'Venkatachalam', 'Business', 15000.00, 2, 200000.00, 600000.00, 'Pondicherry', 'Pondicherry', '2109130001', '1', '2', 'upload_files/candidate_tracker/73105347332_Full Resume vijai.docx', NULL, '3', '2021-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-09-13 10:54:00', 1, '2021-09-13 11:14:17', 0, NULL, 1),
(6286, 'Kavitha. P', '4', '9543199215', '9843436974', 'Kavishivan112@gmail.com', '1993-10-08', 27, '2', '2', 'Pandiyan. P', 'Former', 10000.00, 1, 2.00, 14000.00, 'Marakkanam', 'Nungambakkam', '2109130002', '1', '2', 'upload_files/candidate_tracker/30447840765_kavitha resume new 1.docx', NULL, '1', '2021-09-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response sal expt high', '1', '1', '', '1', '1', '', '2', '2021-10-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-13 11:07:56', 50, '2021-09-13 11:35:38', 0, NULL, 1),
(6287, 'Neeraj', '6', '9600052012', '', 'krishnaneeraj00@gmail.com', '1996-10-26', 24, '2', '2', 'Neetha krishnan', 'house wife', 75000.00, 1, 0.00, 15000.00, 'Icf', 'icf', '2109130003', '1', '1', 'upload_files/candidate_tracker/45501119372_Nk (1).pdf', NULL, '1', '2021-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Didnxquott turn for interview after lunch, also not responding to the calls. Recruiter checked with the candidate and updated that he is not interested in the profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-13 11:13:12', 8, '2021-09-13 01:03:49', 0, NULL, 1),
(6288, 'Bavithra K', '13', '9092696111', '9344611013', 'bavithravivek@gmail.com', '1994-07-13', 27, '2', '1', 'Vivekanandhan', 'Developer', 40000.00, 2, 0.00, 8000.00, 'Chennai', 'Chennai', '2109130004', '1', '1', 'upload_files/candidate_tracker/41813853471_bavithra resume (1).pdf', NULL, '1', '2021-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-13 11:27:14', 1, '2021-09-13 11:30:28', 0, NULL, 1),
(6289, 'Sathish Kumar s', '2', '9047859620', '8248652188', 'satzni11@gmail.com', '1997-11-24', 23, '2', '2', 'Shanmuganathan K', 'Retired employee', 80000.00, 1, 0.00, 30000.00, 'Vadalur', 'Chennai', '2109130005', '1', '1', 'upload_files/candidate_tracker/23472672029_Resume_updated.pdf', NULL, '1', '2021-09-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 2yr exp in mern in tcs and 3.2l ctc, before that he was running his own biz in 3d printing, looking for react internship and for job expt is 4l.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-13 11:36:40', 1, '2021-09-13 11:43:52', 0, NULL, 1),
(6290, 'Vengatesan s', '4', '8870850898', '', 'Vsan6742@gmail.com', '1997-04-08', 24, '3', '2', 'Sekar p', 'Farmer', 70000.00, 2, 0.00, 12000.00, 'Kallakurichi', 'Chennai choolaimedu', '2109130006', '', '1', 'upload_files/candidate_tracker/6698575211_V RESUME.pdf', NULL, '1', '2021-09-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, after degree 4yrs ideal at home, said very shy to search job.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-13 11:42:52', 1, '2021-09-13 12:02:28', 0, NULL, 1),
(6291, 'Satham Usain', '4', '7339045837', '8870478012', 'rahmanicsatham@gmail.com', '1999-07-17', 22, '4', '2', 'Abdul Razak', 'Abroad', 25000.00, 5, 0.00, 15000.00, 'Pudukkottai', 'Vadapalani', '2109130007', '', '1', 'upload_files/candidate_tracker/2997330682_ii07v-gl5uq (1).doc', NULL, '1', '2021-09-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, already got offer for 9.5k, due to low salary not joined. currently from vadapalani asking for nearby location.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-13 12:02:11', 1, '2021-09-13 12:22:16', 0, NULL, 1),
(6292, 'Boopathi Raja. N', '27', '9360477390', '', 'boopathi17csb007@gmail.com', '1999-11-12', 21, '2', '2', 'N. Nagarajan', 'Cooli', 30000.00, 1, 2.76, 3.50, 'dindigul', 'dindigul', '2109130008', '1', '2', 'upload_files/candidate_tracker/88334262155_boopathi Resume.docx', NULL, '2', '2021-09-14', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Discussed, he is only into debugging no development Exp.9 months of Exp into debug only 30 days of the notice period. Attended around 30+ virtual interviews and the salary expectation is very high . Sustainability doubts.', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-13 01:23:25', 1, '2021-09-13 01:27:15', 0, NULL, 1),
(6293, 'Arun Kumar', '13', '9842950710', '', 'arunkumar.ak199685@gmail.com', '1996-08-05', 25, '2', '2', 'Kannan', 'Farmer', 18000.00, 1, 0.00, 10000.00, 'Theni', 'Madurai', '2109130009', '1', '1', 'upload_files/candidate_tracker/50984607725_ARUN KUMAR-converted-converted.pdf', NULL, '3', '2021-09-14', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Response.', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-13 02:57:05', 50, '2021-09-14 10:22:21', 0, NULL, 1),
(6294, 'megala', '4', '6374198237', '', 'megalamaha26@gmail.com', '1999-06-28', 22, '2', '2', 'manoharan', 'electrician', 20000.00, 1, 0.00, 10000.00, 'Tanjavur', 'Tanjavur', '2109130010', '1', '1', 'upload_files/candidate_tracker/81409575206_CURRENT RESUME.pdf', NULL, '2', '2021-07-23', 0, '', '3', '59', '2021-09-16', 120000.00, '', '3', '2022-03-10', '2', 'Selected for Tanjore Location in cash mode', '1', '1', '', '4', '5', '', '2', '2021-09-14', '3', '9', 'Offer Mail Sent - Cash Mode, Candidates Yet To Share The Details Required In Excel', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-13 03:49:37', 60, '2021-09-14 06:35:19', 0, NULL, 1),
(6295, 'Jennipriya', '4', '6383364739', '', 'sjenipriya51@gmail.com', '2001-05-23', 20, '2', '2', 'nirmala', 'cooli', 8000.00, 2, 0.00, 10000.00, 'thanjavur', 'Thanjavur', '2109130011', '1', '1', 'upload_files/candidate_tracker/68583486467_jenipriya resume.docx', NULL, '2', '2021-08-18', 0, '', '3', '59', '2021-09-16', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tanjore in Cash mode', '1', '2', '', '4', '5', '', '2', '2021-09-14', '3', '9', 'Offer Mail Sent - Cash Mode, Candidates Yet To Share The Details Required In Excel', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-13 03:57:41', 60, '2021-09-14 06:36:21', 0, NULL, 1),
(6296, 'Uma Devi A', '13', '9092488291', '7904379815', 'deviuma442@gmail.com', '1997-12-16', 23, '2', '2', 'Amalraj k', 'Business', 150000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2109130012', '1', '1', 'upload_files/candidate_tracker/556035586_UmaDeviResume-1.pdf', NULL, '1', '2021-09-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher, no basic tech skill, expt is 15k.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-13 04:03:36', 1, '2021-09-13 04:27:48', 0, NULL, 1),
(6297, 'jennifer', '4', '8838477632', '', 'Jeniiiiifer78@gmail.com', '2001-06-14', 20, '2', '2', 'david', 'tailor', 7000.00, 1, 0.00, 10000.00, 'thanjavur', 'Thanjavur', '2109130013', '1', '1', 'upload_files/candidate_tracker/76503587236_jenifer D.docx', NULL, '2', '2021-09-08', 0, '', '3', '59', '2021-09-16', 120000.00, '', NULL, '2025-10-31', '2', 'Selected for Tanjore location  in cash mode', '1', '2', '', '4', '5', '', '2', '2021-09-14', '2', '9', 'Offer Mail Sent - Cash Mode, Candidates Yet To Share The Details Required In Excel', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-13 04:05:06', 60, '2021-09-14 06:35:48', 0, NULL, 1),
(6298, 'rahul', '4', '8778149297', '', 'ragulsaranmech16@gmail.com', '1999-05-16', 22, '2', '2', 'saravanan', 'server', 12000.00, 1, 0.00, 10000.00, 'thanjavur', 'Thanjavur', '2109130014', '1', '1', 'upload_files/candidate_tracker/6854373740_RAGUL.docx', NULL, '2', '2021-09-13', 0, '', '3', '59', '2021-09-16', 120000.00, '', '6', '2021-09-27', '2', 'Selected for Tanjavur in cash mode', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent - Cash Mode, candidates yet to share the details required in excel', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-13 04:09:03', 60, '2021-09-14 06:34:02', 0, NULL, 1),
(6299, 'mohamed ajim', '4', '6379643483', '', 'sparkleajim@gmail.com', '2001-06-30', 20, '2', '2', 'mumtaj', 'nil', 0.00, 1, 0.00, 10000.00, 'thanjavur', 'Thanjavur', '2109130015', '1', '1', 'upload_files/candidate_tracker/3160698038_AJIM Resume.docx', NULL, '2', '2021-09-13', 0, '', '3', '59', '2021-09-16', 120000.00, '', '3', '2022-06-06', '2', 'Selected for Tanjore in cash mode', '1', '1', '', '4', '5', '', '2', '2021-09-14', '3', '9', 'Offer Mail Sent - Cash Mode, Candidates Yet To Share The Details Required In Excel', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-13 04:12:06', 60, '2021-09-14 06:34:49', 0, NULL, 1),
(6300, '', '0', '9962843806', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109130016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-13 06:11:02', 0, NULL, 0, NULL, 1),
(6301, 'V.vijayakumar', '27', '9790580230', '9791491777', 'vijaykumarpondiuni@gmail.com', '2006-09-14', 0, '2', '2', 'T.venkataclam', 'Business', 15000.00, 2, 200000.00, 600000.00, 'Pondicherry', 'Pondicherry', '2109140001', '1', '2', 'upload_files/candidate_tracker/61924076349_Full Resume vijai.docx', NULL, '3', '2021-09-14', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-14 07:01:58', 1, '2021-09-14 07:15:42', 0, NULL, 1),
(6302, 'AnishMon', '22', '8838806474', '8903014709', 'anish160398@gmail.com', '1998-03-16', 23, '2', '2', 'Arul Dhas V', 'Farmer', 10.00, 2, 0.00, 10000.00, 'Nagarcoil, Marthandam', 'Karapakkam, Chennai', '2109140002', '1', '1', 'upload_files/candidate_tracker/61275802704_anish-new resume-2.pdf', NULL, '1', '2021-09-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for us, has to learn and come', '2', '1', '', '1', '1', '', '2', '2021-09-15', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-14 10:25:28', 8, '2021-09-14 05:26:34', 0, NULL, 1),
(6303, 'Hariharan', '6', '9566763375', '9025410525', 'Hariharan45663@gmail.com', '2000-01-23', 21, '2', '1', 'K singaraja', 'Auto driver', 200000.00, 1, 0.00, 18.00, 'Madurai', 'Chennai', '2109140003', '1', '1', 'upload_files/candidate_tracker/41874430413_CURRICULAM VITAE HARIHARAN.pdf', NULL, '1', '2021-09-14', 0, '', '3', '59', '2021-09-27', 192000.00, '', '6', '2022-11-02', '1', 'Selected for Srikanth Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '2021-09-16', '1', '3', 'Candidate was expecting more on the CTC than we offered. Finally he was convinced with the pay we offered. Seems to good in communicating. Let see for the Direct Marketing(50/50).Even we got oral approval  from Suresh sir to hire this candidate in Consultant mode(5%) deduction.', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-14 11:13:02', 60, '2021-09-26 03:09:24', 0, NULL, 1),
(6304, 'Nihil N', '13', '9047440828', '7010795676', 'nihilvlg@gmail.com', '2000-10-20', 20, '2', '2', 'Nandha kumar', 'Farmer', 8000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Chennai', '2109140004', '1', '1', 'upload_files/candidate_tracker/50866374006_Nihil Resume_Update.docx', NULL, '1', '2021-09-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very fresher, doesnt know basics, not okay with terms and conditions. expt 14-15k.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-14 11:39:20', 7, '2021-09-23 02:47:43', 0, NULL, 1),
(6305, 'Sivagurunathan M', '2', '9894615489', '', 'sgnathan10@gmail.com', '2000-12-14', 20, '2', '1', 'Muthusamy G', 'Daily wager', 7000.00, 1, 0.00, 260000.00, 'Velayuthapuram Tenkasi dist', 'Ayanavaram Chennai', '2109140005', '1', '1', 'upload_files/candidate_tracker/47453288616_Perfect One.pdf', NULL, '1', '2021-09-16', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'fresher, willing to learn okay with company norms, expt is 12k,', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-14 11:39:24', 1, '2021-09-14 11:46:33', 0, NULL, 1),
(6306, 'RAFLIN SUBITSON', '6', '8508071510', '9025480584', 'subi62001@gmail.com', '2001-06-11', 20, '1', '2', 'JEYACHANDRAN', 'COOPERATIVE BANK', 150000.00, 1, 0.00, 12000.00, '12/125,. Main road Thirumalapuram, Tenkasi ( D.T)', '11,b Krishna Street, Parthasarathi puram, TNagar', '2109140006', '', '1', 'upload_files/candidate_tracker/3373937288_SUbitson.doc', NULL, '1', '2021-09-14', 0, 'Suthagar.T', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, not speaking up and expt is 12k, father and mother govt emp.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-14 12:00:31', 1, '2021-09-14 12:07:44', 0, NULL, 1),
(6307, '', '0', '6383723574', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-14 12:17:50', 0, NULL, 0, NULL, 1),
(6308, 'jaashree', '4', '7708148520', '', 'itsyourjai@gmail.com', '1993-02-12', 28, '2', '2', 'A.J.Parthiban', 'textile', 20000.00, 1, 19000.00, 15000.00, 'selam', 'kk nagar', '2109140008', '1', '2', 'upload_files/candidate_tracker/21930487718_jainewresumeeeeeeepdf1.pdf', NULL, '1', '2021-09-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1yr exp in tcs 2.5l ctc and expt is 15k. not okay with her convincing.', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-14 12:27:55', 7, '2021-09-14 05:25:43', 0, NULL, 1),
(6309, 'Selvasuriya', '2', '7530061721', '', 'selvasuriya001@gmail.com', '1998-09-04', 23, '2', '2', 'Patchamal', 'Mason', 12000.00, 2, 0.00, 3000.00, 'Eruvadi', 'Eruvadi', '2109140009', '1', '1', 'upload_files/candidate_tracker/81586780491_resume-1.pdf', NULL, '2', '2021-09-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,Self learned but not much comfortable with terms and conditions on the SA', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-14 12:27:55', 1, '2021-09-14 12:35:23', 0, NULL, 1),
(6310, 'K.Vinoth', '27', '9688077441', '', 'kumarvino777@gmail.com', '1997-05-02', 24, '2', '2', 'S/o N.Kumar', 'I am Dot net Developer', 10000.00, 1, 0.00, 350000.00, 'Villupuram', 'Chennai', '2109140010', '1', '1', 'upload_files/candidate_tracker/96378539666_Vinoth.K.pdf', NULL, '1', '2021-09-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'done 6m course, no working exp in .net and expt 20k in hand. has 3.5yr exp in backend  24k.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-14 01:24:14', 1, '2021-09-14 01:31:16', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6311, 'syed khaleel khaleed', '22', '9948755790', '8919754602', 'sdkhaleedk786@gmIl.com', '1997-08-30', 24, '2', '2', 'Syed abida', 'Ration Dealer shop', 180000.00, 1, 0.00, 12000.00, 'periyavettu, tada mandalam, nellore district', 'chennai', '2109140011', '1', '1', 'upload_files/candidate_tracker/24613953613_Resume_syed....pdf', NULL, '1', '2021-09-18', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate having own business. ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-14 01:50:03', 8, '2021-09-18 06:08:10', 0, NULL, 1),
(6312, '', '0', '9500693635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109140012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-14 02:28:33', 0, NULL, 0, NULL, 1),
(6313, 'Lavanya.S', '2', '8939290611', '', 'lavanyasubramani003@gmail.com', '1998-11-03', 22, '2', '2', 'Subramani', 'salesman', 10000.00, 1, 0.00, 16000.00, 'chennai', 'chennai', '2109140013', '1', '1', 'upload_files/candidate_tracker/75532249104_Lavanya Subramani.pdf', NULL, '1', '2021-09-20', 0, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher from tnagar, father in to biz, knows basics in tech. expt is 10-15k, okay with company norms.\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-14 04:49:03', 50, '2021-09-20 12:28:09', 0, NULL, 1),
(6314, '', '0', '9381127691', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109140014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-14 06:33:07', 0, NULL, 0, NULL, 1),
(6315, '', '0', '8925458509', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109140015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-14 10:39:27', 0, NULL, 0, NULL, 1),
(6316, 'aravind', '5', '8520036489', '', 'araviaravind24@gmail.com', '1995-11-09', 25, '2', '2', 'keshaiah', 'rtd', 80000.00, 1, 19000.00, 20000.00, 'hyderabad', 'lb nagar', '2109150001', '1', '2', 'upload_files/candidate_tracker/59540283574_resume (7).docx', NULL, '3', '2021-09-15', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-15 10:39:43', 1, '2021-09-15 10:42:23', 0, NULL, 1),
(6317, 'Sarojini', '27', '6384503066', '7867065395', 'Sarojinichinnaiah@gmail.com', '1998-07-16', 23, '2', '2', 'Chinnaiah M', 'Former', 50000.00, 2, 2.75, 3.80, 'Pudukkaottai', 'Chennai', '2109150002', '1', '2', 'upload_files/candidate_tracker/49252655506_1627024515186Resume_Sarojini.docx', NULL, '1', '2021-09-25', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No C# Exp,2.5 yrs in VB.Net only .Notice Period is 60 Days', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-15 11:52:21', 60, '2021-09-25 10:42:54', 0, NULL, 1),
(6318, 'Mohamed haneefa', '4', '7871751315', '', 'Mohamedhaneefa04239@gmail.com', '1998-03-22', 23, '2', '2', 'Mohamed meera sahib', 'Sales men', 12000.00, 0, 9000.00, 10000.00, 'Kayalpattinam', 'Thousands lights', '2109150003', '1', '2', 'upload_files/candidate_tracker/31632607585_Anantharaj.P.pdf', NULL, '1', '2021-09-15', 0, '', '3', '59', '2021-09-16', 120000.00, '', '', '2021-09-22', '2', 'Selected for Priyanka Elite Team in Cash Consultant mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Discussed with the candidate and offered him in cash consultant mode. Welcome Mail sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-15 11:54:35', 60, '2021-09-15 01:28:16', 0, NULL, 1),
(6319, 'sheik abubakkar asharaf', '23', '8778644855', '', 'ashrafowns7@gmail.com', '1991-05-15', 30, '2', '1', 'rehamad nisha', 'project engineer', 50000.00, 2, 800000.00, 240000.00, 'chennai', 'chennai', '2109150004', '1', '2', 'upload_files/candidate_tracker/97290758089_Sheik Abubakkar Asharaf_ Resume_compressed.pdf', NULL, '1', '2021-09-16', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Task not satisfactory', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-15 12:05:46', 1, '2021-09-15 04:21:50', 0, NULL, 1),
(6320, 'ajeeth kumar k', '23', '9176889394', '7092978383', 'aajeeth107@gmail.com', '1998-03-18', 23, '2', '2', 'kamaraj g', 'auto driver', 20000.00, 1, 0.00, 12000.00, 'CHENNAI', 'CHENNAI', '2109150005', '1', '1', 'upload_files/candidate_tracker/32641387699_resume ui new.pdf', NULL, '1', '2021-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-15 12:23:48', 1, '2021-09-15 12:51:25', 0, NULL, 1),
(6321, 'HARI HARAN', '23', '9626627724', '9894009699', 'rameshhari1820@gmail.com', '2000-08-01', 21, '2', '2', 'rameshbabu', 'driver', 12000.00, 0, 0.00, 10000.00, 'chennai', 'ennore', '2109150006', '1', '1', 'upload_files/candidate_tracker/91328009572_R.Hari Haran .pdf', NULL, '1', '2021-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-15 12:58:49', 1, '2021-09-15 03:04:31', 0, NULL, 1),
(6322, 'divya', '4', '9345088401', '', 'divyarevadhi18@gmail.com', '1999-03-18', 22, '2', '2', 'ramesh', 'late', 0.00, 1, 0.00, 10000.00, 'thanjavur', 'Thanjavur', '2109150007', '1', '1', 'upload_files/candidate_tracker/14655235350_Dhivyah resume 2021.docx', NULL, '2', '2021-09-15', 0, '', '3', '59', '2021-09-16', 120000.00, '', '3', '2022-03-08', '2', 'Selected for Thanjavur in Cash Mode', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', 'Discussed and offered. Have sent her the joining mail.', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-15 01:01:57', 60, '2021-09-15 04:55:20', 0, NULL, 1),
(6323, 'K NITHISH KUMAR', '4', '7338980787', '8925219532', 'nithishknk333@gmail.com', '1999-08-19', 22, '3', '2', 'P KARUPPAIAH', 'P KARUPPAIAH', 25000.00, 1, 0.00, 10000.00, 'Puzhuthuvakkam,chennai-600091', 'Puzhuthuvakkam,chennai-600091', '2109150008', '', '1', 'upload_files/candidate_tracker/31675611266_RESUME 2-NITHISH KUMAR.pdf', NULL, '1', '2021-09-15', 0, '', '3', '59', '2021-09-20', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Muthu Team in Cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer mail sent to the employee', '', '', '', NULL, NULL, NULL, 1, '2021-09-15 02:35:24', 60, '2021-09-18 03:03:13', 0, NULL, 1),
(6324, 'divya shree', '17', '7358679691', '', 'superdivyas@gmail.com', '1998-08-10', 23, '2', '2', 'subash chandran', 'service', 50000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2109150009', '1', '1', 'upload_files/candidate_tracker/78255003758_RESUME DIVYA (2).pdf', NULL, '1', '2021-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-15 03:10:11', 1, '2021-09-15 04:52:53', 0, NULL, 1),
(6325, 'Gokul Chandran Venkatarajan', '5', '9688626335', '9080502265', 'gokzzvenkat@gmail.com', '1997-07-23', 24, '4', '2', 'Venkatarajan Sarangapani', 'Retired Railway Employee', 25000.00, 0, 0.00, 350000.00, 'Trichy', 'Chennai', '2109150010', '', '1', 'upload_files/candidate_tracker/15919636958_GokulChandran Resume.pdf', NULL, '3', '2021-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-15 06:17:07', 1, '2021-09-15 06:25:05', 0, NULL, 1),
(6326, 'Mahalakshmi', '4', '6369638057', '', 'meenukutti4001@gmail.com', '2000-08-29', 21, '2', '2', 'N.sadagopan', 'Former', 20000.00, 2, 0.00, 11000.00, 'Thiruvallur', 'Thiruvallur', '2109160001', '1', '1', 'upload_files/candidate_tracker/28797676901_Mahalakshmi Resume.docx', NULL, '1', '2021-09-16', 0, '', '3', '59', '2021-09-20', 120000.00, '', '3', '2021-12-01', '2', 'Selected for Tiruvallur Location in Cash mode', '1', '2', '', '1', '1', '', '2', '2021-09-18', '1', '9', 'Selected in Cash mode.Offer mail sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-16 10:04:23', 60, '2021-09-18 04:46:28', 0, NULL, 1),
(6327, 'T.Mohan Raj', '6', '7358207138', '', 'mr2899123@gmail.com', '2000-01-15', 21, '2', '2', 'Palaniyamal .T', 'Carpenter', 12500.00, 1, 0.00, 13000.00, 'Perumbakkam', 'Perumbakkam', '2109160002', '1', '1', 'upload_files/candidate_tracker/36969013112_Mohanraj T RESUME (1).docx', NULL, '1', '2021-09-16', 0, '', '3', '59', '2021-09-17', 156000.00, '', '6', '2021-10-26', '1', 'Selected for Suthagar team with Pf/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', 'No relevant exp, but the candidate seems good. Distance around 40kms up and down and he is ready to travel. Earlier he got an opportunity in Insurance sales and missed that', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-16 10:45:05', 60, '2021-09-16 02:52:48', 0, NULL, 1),
(6328, 'Vinoth kumar.M', '4', '8248351561', '8056995234', 'vinothmn1999@gmail.com', '1999-10-27', 21, '3', '2', 'K.munusamy', 'DEEE', 90000.00, 2, 0.00, 120000.00, 'Thiruvallur', 'Thiruvallur', '2109160003', '', '1', 'upload_files/candidate_tracker/28179544538_vinothresume.doc', NULL, '1', '2021-09-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-16 11:10:51', 1, '2021-09-16 11:18:25', 0, NULL, 1),
(6329, 'VIBINRAJ S', '4', '8608704523', '', 'vibinraj0206@gmail.com', '2001-06-02', 20, '2', '2', 'Soundararajan', 'Farmer', 120000.00, 1, 0.00, 12000.00, 'Dindigul', 'Dindigul', '2109160004', '1', '1', 'upload_files/candidate_tracker/74012639049_resume new.pdf', NULL, '1', '2021-09-16', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'he s not intrested in telecalling. looking for Accounts related job', '1', '2', '0', '1', '1', '0', '2', '2021-09-22', '1', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-09-16 11:13:07', 1, '2021-09-16 11:17:59', 0, NULL, 1),
(6330, 'V.M Deepak dharshan', '4', '7904777191', '9677838827', 'Deepakdharshan14@gmail.com', '2000-06-14', 21, '3', '2', 'Vinayagamoorthi', 'BCom', 20000.00, 1, 0.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2109160005', '', '1', 'upload_files/candidate_tracker/16322757822_CV_2021-06-28-105928.pdf', NULL, '1', '2021-09-16', 0, '', '3', '59', '2021-09-21', 120000.00, '', '5', '1970-01-01', '2', 'Selected for tiruvallur Location in cash mode', '1', '1', '', '1', '1', '', '2', '2021-09-18', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-09-16 11:28:30', 60, '2021-09-20 02:57:53', 0, NULL, 1),
(6331, 'v murali', '5', '7708631522', '9003176434', 'muralishady1218@gmail.com', '1993-11-12', 27, '3', '1', 'm revathi', 'logistics', 15000.00, 0, 30000.00, 30000.00, 'chennai', 'west mambalam', '2109160006', '', '2', 'upload_files/candidate_tracker/67129784621_Murali Resume-Updated.docx', NULL, '1', '2021-09-16', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher for us, 5yr in cub as sr. associate. 30k and expt 25k. was asking for transfer then resigned. wife working in logistics into sales.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-16 11:40:32', 8, '2021-09-16 12:16:41', 0, NULL, 1),
(6332, 'KaranB', '14', '8667210096', '', 'karanbose1999@gmail.com', '1999-04-21', 22, '3', '2', 'Bose', 'Fancy stores', 30000.00, 2, 0.00, 2.50, 'Virudhunagar.', 'Chennai', '2109160007', '', '1', 'upload_files/candidate_tracker/35890649190_Resumee.docx', NULL, '1', '2021-09-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, has to learn', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-16 12:49:25', 1, '2021-09-16 12:53:34', 0, NULL, 1),
(6333, 'Kadar mohaideen L', '4', '8012479749', '7373231386', 'kadarmohaideen24400@gmail.com', '2000-04-24', 21, '2', '2', 'Liyagathalikhan', 'Cooli', 10000.00, 2, 0.00, 15.00, '6/141 pallivasal south Street veerasigamani-627862', 'T.nagar', '2109160008', '1', '1', 'upload_files/candidate_tracker/71111090638_kadar_mohaideen_resume_2_-1(1).pdf', NULL, '1', '2021-09-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Planning To Join It Course And Search It Job, Expt Is 15k From Sri Perambathur.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-16 02:21:07', 1, '2021-09-16 02:31:34', 0, NULL, 1),
(6334, 'Jamaludeen A', '4', '7708928804', '', '172jamal@gmail.com', '2001-02-17', 20, '2', '2', 'Abdul samsudeen J', 'driver', 15000.00, 2, 0.00, 15.00, 'Tirunelveli', 'chennai', '2109160009', '1', '1', 'upload_files/candidate_tracker/33312891964_JamaludeenResume.pdf', NULL, '1', '2021-09-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'planning to join it course and search it job, expt is 15k from sri perambathur.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-16 02:24:01', 1, '2021-09-16 02:30:12', 0, NULL, 1),
(6335, 'E.latha', '4', '9150616003', '', 'www.17927631@gmail.com', '2006-09-16', 0, '2', '2', 'Panchalai', 'Formar', 10000.00, 3, 0.00, 12000.00, 'Gingee', 'Chennai', '2109160010', '1', '1', 'upload_files/candidate_tracker/61583427181_Latha E.docx', NULL, '1', '2021-09-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response.', '1', '2', '', '1', '1', '', '2', '2021-09-18', '3', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-16 02:31:22', 8, '2021-09-21 06:26:38', 0, NULL, 1),
(6336, 'M.tamil selvi', '4', '8778259589', '', 'Saitamil549@gmail.com', '1999-11-29', 21, '1', '2', 'M.muthu krishnan', 'Car driver', 10000.00, 1, 0.00, 12000.00, 'Thiruvannamalai', 'Chennai', '2109160011', '', '1', 'upload_files/candidate_tracker/51074957995_Tamilselvi Resume.docx', NULL, '1', '2021-09-16', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very childish and Stammering to speak. will not suite for our process.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-16 02:44:19', 1, '2021-09-16 02:54:35', 0, NULL, 1),
(6337, 'Hariharasuddhan', '5', '9345373530', '', 'sudhand1710@gmail.com', '1999-07-17', 22, '3', '2', 'srinivasan', 'bhell', 40000.00, 1, 18000.00, 25000.00, 'thrichy', 'trichy', '2109160012', '', '2', 'upload_files/candidate_tracker/19905894950_Hariharasuddhan SC new.pdf', NULL, '2', '2021-09-16', 7, '', '3', '59', '2021-09-27', 260000.00, '', '3', '2021-11-02', '1', 'Selected for Raj Team with PF/ESI/Deductions.3+ yrs in showroom sales exp but no documents for the proof.Has initiated his resignation in the company', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '3', '1', 'Offer Link has been shared, Candidate will join on 27-Sep-2021', '', '', '', NULL, NULL, NULL, 1, '2021-09-16 04:22:24', 60, '2021-09-18 03:53:38', 0, NULL, 1),
(6338, 'Satish Kumar', '23', '8682085813', '', 'msatish1093@gmail.com', '1994-04-11', 27, '2', '2', 'Mani', 'LIC Manager (RTD)', 50000.00, 1, 12000.00, 17000.00, 'Koodal Nagar, Madurai', 'Tharamani, Chennai', '2109160013', '1', '2', 'upload_files/candidate_tracker/71624511710_sathish-Resume 2021-converted.pdf', NULL, '1', '2021-09-18', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Not fit for team', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-16 04:44:08', 1, '2021-09-16 04:56:58', 0, NULL, 1),
(6339, 'Vishwanath.v', '6', '6382208433', '7401633671', 'vsvishvs194@gmail.com', '2000-05-03', 21, '1', '2', 'Banumathy', 'cini industry', 30000.00, 1, 0.00, 15000.00, 'No 70f 1st Street lotus colony nadhanam Chennai 35', 'No 70 f 1st steet lotus colony nadhanam Chennai 35', '2109170001', '', '1', 'upload_files/candidate_tracker/92209232065_Vishwa-Resume.docx', NULL, '1', '2021-09-17', 0, '55576', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', 'Selected for  Suthagar Team with PF/ESI/PT deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', 'No relevant Exp in Insurance  Sales,7 months exp as Site Engineer in Appaswamy Real Estate.Offer letter link has been shared', '', '', '', NULL, NULL, NULL, 1, '2021-09-17 09:39:53', 60, '2021-09-17 11:54:12', 0, NULL, 1),
(6340, 'Deepak Singh M', '6', '9025537441', '', 'Deepaksingh89408@gmail.com', '2000-10-21', 20, '1', '2', 'Mothi M', 'Sri Krishna sweets (manager)', 20000.00, 1, 0.00, 15000.00, 'No 19/12 3rd street Nandanam chennai 600035', 'No 19/12 3rd Street Nandanam Chennai 600035', '2109170002', '', '1', 'upload_files/candidate_tracker/62661998202_pdf-2.pdf', NULL, '1', '2021-09-17', 0, '55576', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no degree, holds offer and his language is not good, will not suite for our process.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-17 09:41:18', 1, '2021-09-17 10:00:04', 0, NULL, 1),
(6341, 'S.indhu', '28', '8056174731', '9444089156', 'indhusuji431@gmail.com', '2000-07-25', 21, '2', '2', 'K.SUDALAIMANI', 'Self employment', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2109170003', '1', '1', 'upload_files/candidate_tracker/17487272268_CURRICULAM VITAE..pdf', NULL, '1', '2021-09-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1yr part time job in hsbc bank back end, salary not satisfied so looking for job change, expt 18k, will not suite for our company. ', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-17 10:33:02', 1, '2021-09-17 10:39:04', 0, NULL, 1),
(6342, 'Rajesh E', '6', '7708239408', '', 'rajeshspnallur6@gmail.com', '1997-12-23', 23, '1', '2', 'Elumalai', 'Farmer', 15000.00, 3, 0.00, 18000.00, 'Sankarapuram', 'Chennai', '2109170004', '', '1', 'upload_files/candidate_tracker/27027453630_Rajesh_fresher_chennai.pdf', NULL, '1', '2021-09-17', 0, 'Suthagar', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Expected High salary', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-17 10:43:00', 8, '2021-09-17 11:57:48', 0, NULL, 1),
(6343, 'Sharmila E', '4', '7338903308', '7299793037', 'sharmilae99@gmail.com', '1999-08-03', 22, '3', '2', 'Shakila E', 'Coolie', 15000.00, 2, 13000.00, 13000.00, 'Chennai', 'Chennai', '2109170005', '', '2', 'upload_files/candidate_tracker/26143719373_SHARMILA (1).pdf', NULL, '1', '2021-09-17', 0, '', '3', '59', '2021-09-22', 132000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location in Cash mode', '1', '1', '', '4', '6', '', '2', '2021-09-18', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-09-17 12:08:18', 60, '2021-09-18 05:07:34', 0, NULL, 1),
(6344, 'Kalaivani s', '13', '9698530299', '8903565829', 'Kalaisub29@gmail.com', '1998-09-30', 22, '2', '2', 'Subrayalu', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2109170006', '1', '1', 'upload_files/candidate_tracker/87600355908_Kalavani S.pdf', NULL, '1', '2021-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-17 12:29:47', 1, '2021-09-17 12:36:26', 0, NULL, 1),
(6345, 'Kishore kumar S', '2', '8675461691', '', 'sjk.kishore95@gmail.com', '1995-09-07', 26, '2', '2', 'Selvarajan M', 'Fresher', 100000.00, 0, 0.00, 180000.00, 'Chennai', 'Chennai', '2109170007', '1', '1', 'upload_files/candidate_tracker/56856914135_Kishore kumar Resume-1.pdf', NULL, '2', '2021-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2021-09-17 01:03:05', 1, '2021-09-17 02:33:18', 0, NULL, 1),
(6346, 'Jayashree', '4', '7395907904', '', 'jayashreesundar2001@gmail.com', '2001-05-10', 20, '1', '2', 'Sundaramoorthy', 'Labour', 10000.00, 1, 0.00, 10000.00, 'Thiruninravur', 'Thiruninravur', '2109170008', '', '1', 'upload_files/candidate_tracker/7416332301_Jayashree\'s Resume.....pdf', NULL, '1', '2021-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-17 01:41:58', 1, '2021-09-17 02:39:10', 0, NULL, 1),
(6347, '', '0', '9952903432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109170009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-17 01:42:22', 0, NULL, 0, NULL, 1),
(6348, 'Praveen Kumar R', '2', '8072367602', '9790856320', 'praveenkumarr747@gmail.com', '1999-03-31', 22, '2', '2', 'Ravi v', 'Own Business', 100000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2109170010', '1', '1', 'upload_files/candidate_tracker/81696766037_Praveen-2 Resume.pdf', NULL, '1', '2021-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-17 01:48:41', 1, '2021-09-17 01:55:11', 0, NULL, 1),
(6349, 'Balamurali.D', '4', '9360261864', '', '05balamurali@gmail.com', '1996-08-06', 25, '3', '1', 'Dhanavel', 'Business', 25000.00, 1, 0.00, 18000.00, 'No,37 dharga main road, pudupet Po, Panruti Tk', 'Meenapaakam', '2109170011', '', '1', 'upload_files/candidate_tracker/97942089853_Balamurali Resume.pdf', NULL, '1', '2021-09-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher, looking for calling and not interested in field sales, expt is 15k take home.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-17 02:28:18', 1, '2021-09-17 02:34:00', 0, NULL, 1),
(6350, 'SARAVANAN P', '13', '8525838484', '9159644595', 'saravanathondaiman@gmail.com', '2000-06-24', 21, '2', '2', 'Peramaiyan', 'Farmer -Unemployed', 5000.00, 1, 0.00, 10000.00, 'Neyveli, Cuddalore (DT)', 'Neyveli, Cuddalore (DT)', '2109170012', '1', '1', 'upload_files/candidate_tracker/41957540476_1631107793054Resume_Saravanan.pdf', NULL, '3', '2021-09-18', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Response.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-17 02:56:33', 50, '2021-09-18 11:08:13', 0, NULL, 1),
(6351, '', '0', '7395977189', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109170013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-17 03:17:23', 0, NULL, 0, NULL, 1),
(6352, 'Kalaivani s', '13', '8903565829', '9698530299', 'Kalaisub29@gmail.com', '1998-09-30', 22, '2', '2', 'Subrayalu', 'Frmer', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2109170014', '1', '1', 'upload_files/candidate_tracker/1876913083_Kalaivani S.pdf', NULL, '1', '2021-09-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-17 03:47:52', 1, '2021-09-17 03:50:26', 0, NULL, 1),
(6353, 'manoj', '23', '6369125054', '', 'manojragav23@gmail.com', '2000-08-29', 21, '2', '2', 'anandan', 'wages', 5000.00, 0, 0.00, 12000.00, 'aarani', 'chennai', '2109170015', '1', '1', 'upload_files/candidate_tracker/53525682681_updatedresume.pdf', NULL, '1', '2021-09-21', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'lack of  experience.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-17 05:08:42', 1, '2021-09-17 07:44:57', 0, NULL, 1),
(6354, 'Yaswanthkarthik S', '2', '7871221228', '', 'yaswanthkarthik008@gmail.com', '2000-08-10', 21, '2', '2', 'Sakthivel S', 'Weaver', 12000.00, 1, 0.00, 12000.00, 'Namakkal', 'Namakkal', '2109170016', '1', '1', 'upload_files/candidate_tracker/75495718773_Yaswanth SD-11.pdf', NULL, '1', '2021-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-17 05:45:05', 1, '2021-09-17 06:02:27', 0, NULL, 1),
(6355, 'arun kumar', '5', '8682867172', '', 'arunsakthi2909@gmail.com', '1999-06-15', 22, '3', '2', 'R.Sathiyamoorthy', 'travels', 50000.00, 1, 16000.00, 20000.00, 'trichy', 'trichy', '2109170017', '', '2', 'upload_files/candidate_tracker/923590250_Arunkumar-sales.pdf', NULL, '2', '2021-09-17', 10, '', '3', '59', '2021-09-27', 252100.00, '', '6', '2021-12-08', '1', 'Selected for RM - Raj Team with PF/ESI/PT deductions. Having Sales Exp in Automobile Industry.', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '3', '1', 'Offer link to upload the documents has been shaerd', '', '', '', NULL, NULL, NULL, 1, '2021-09-17 05:52:06', 60, '2021-09-23 01:39:14', 0, NULL, 1),
(6356, 'Keerthivasan', '4', '7904712616', '9488528233', 'keerthivasan101@gmail.com', '1987-06-17', 34, '2', '2', 'Moorthy', 'BHEL', 20000.00, 3, 18500.00, 25000.00, '184/1, Chinthamani, Trichy', 'Kodambakam', '2109170018', '1', '2', 'upload_files/candidate_tracker/99276162408_Keerthi@Resume2021.docx', NULL, '1', '2021-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 5yr in ar calling 15k and no sales exp. 4m in a pest company and  Expt Is 25k, company 18.5k. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-17 06:26:44', 7, '2021-09-18 10:11:25', 0, NULL, 1),
(6357, 'venu vikaash', '2', '9003686119', '', 'venuvikaash006@gmail.com', '2000-01-19', 21, '2', '2', 'meganathan', 'train loco controller in southern railway', 50000.00, 1, 0.00, 30000.00, 'madurai', 'madurai', '2109170019', '1', '1', 'upload_files/candidate_tracker/75627037435_VENU_VIKAASH_RESUME.pdf', NULL, '2', '2021-09-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher and self learner, have not done any courses. expt is 3l.', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-17 06:27:24', 1, '2021-09-17 06:42:15', 0, NULL, 1),
(6358, '', '0', '9344364992', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109170020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-17 06:39:20', 0, NULL, 0, NULL, 1),
(6359, '', '0', '8531910932', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109180001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-18 10:26:52', 0, NULL, 0, NULL, 1),
(6360, '', '0', '7305051528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109180002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-18 10:59:56', 0, NULL, 0, NULL, 1),
(6361, 'Srimathi.j', '4', '9884014866', '7708662442', 'saisrimathi25@gmail.com', '2001-03-25', 20, '2', '2', 'Jeeva', 'Painter', 30000.00, 1, 0.00, 15000.00, 'Mr.nager, kodungaiyur', 'Mr.nager, kodungaiyur', '2109180003', '1', '1', 'upload_files/candidate_tracker/51919937135_srimathi resume 1.pdf', NULL, '1', '2021-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, not speaking up and first interview', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-18 11:25:33', 50, '2021-09-20 10:07:37', 0, NULL, 1),
(6362, '', '0', '9176026254', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109180004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-18 11:44:23', 0, NULL, 0, NULL, 1),
(6363, 'Nazeera', '4', '9344120928', '9941849130', 'Nazeeyafathima1996@gmail.com', '1996-04-30', 25, '3', '2', 'Parent', 'Senior Customer care executive', 18000.00, 1, 18000.00, 22000.00, 'Royapettah', 'Royapettah', '2109180005', '', '2', 'upload_files/candidate_tracker/67486409996_Nazeera RESUME(1).docx', NULL, '1', '2021-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-18 12:45:38', 1, '2021-09-18 12:49:56', 0, NULL, 1),
(6364, 'Aakash R', '13', '7358919843', '', 'aakashravichandran1998@gmail.com', '1998-11-02', 22, '2', '2', 'Ravichandran', 'Security Guard', 20000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2109180006', '1', '1', 'upload_files/candidate_tracker/27896331546_Aakash Resume.pdf', NULL, '1', '2021-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-18 01:13:30', 1, '2021-09-18 01:18:58', 0, NULL, 1),
(6365, 'thirunavukkarasu g', '6', '6383600390', '', 'appugt2000@gmail.com', '2000-06-05', 21, '3', '2', 'venda', 'farmer', 48000.00, 2, 0.00, 15000.00, 'arni', 'arni', '2109180007', '', '1', 'upload_files/candidate_tracker/1807255460_THIRU RESUME .pdf', NULL, '1', '2021-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-18 01:55:31', 1, '2021-09-18 10:29:38', 0, NULL, 1),
(6366, 'Haridoss K', '4', '9360946713', '', '1993hari19@gmail.com', '1993-07-19', 28, '4', '1', 'Manjula', 'House wife', 10000.00, 0, 13000.00, 15000.00, 'Chennai', 'Chennai', '2109180008', '', '2', 'upload_files/candidate_tracker/54927353630_HARIDOSS FINAL RESUME-converted.pdf', NULL, '3', '2021-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-18 03:39:25', 1, '2021-09-18 03:45:35', 0, NULL, 1),
(6367, 'Ajithkumar', '4', '6369551392', '', 'kasi4ajith@gmail.com', '2000-10-29', 20, '3', '2', 'No', 'Computer science', 10000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2109180009', '', '1', 'upload_files/candidate_tracker/37168288403_ajith resume.pdf', NULL, '3', '2021-10-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-18 04:57:22', 1, '2021-09-18 05:03:20', 0, NULL, 1),
(6368, '', '0', '9994630606', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109180010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-18 06:20:56', 0, NULL, 0, NULL, 1),
(6369, 'Purushothaman', '6', '9791035201', '9566276378', 'burush1989@gmail.com', '1989-06-01', 32, '4', '1', 'Priyadarshini', 'S. E', 40000.00, 0, 15000.00, 20000.00, 'No 6 Church Street North Cheyyur', 'Velachery', '2109180011', '', '2', 'upload_files/candidate_tracker/35661218740_PURUSHOTHAMAN___Resume 1.doc', NULL, '3', '2021-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-18 06:27:02', 1, '2021-09-18 06:32:09', 0, NULL, 1),
(6370, 'K GANESHA MOORTHY', '4', '9360331662', '9176852137', 'ganeshmoorthy200126@gmail.com', '2001-03-26', 20, '2', '2', 'S KRISHNA MOORTHY', 'CAR DRIVER', 15000.00, 1, 0.00, 15000.00, 'Pammal', 'Pammal', '2109190001', '22', '1', 'upload_files/candidate_tracker/64512099186_K.pdf', NULL, '1', '2021-12-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open to work on targets, Already joined justdial and left the company due to work pressure,Will not sustain in our roles', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-19 12:24:14', 1, '2021-12-15 11:00:49', 0, NULL, 1),
(6371, 'Santhosh V', '2', '9688643491', '', 'vsanthosh.sde@gmail.com', '1997-11-24', 23, '2', '2', 'Viswanathan', 'Business', 20000.00, 1, 0.00, 17000.00, '7 Kanawarisi lane, Bodinayakanur, Theni 625513.', '39 Bazz Avenue, Palavakkam 600041.', '2109190002', '1', '1', 'upload_files/candidate_tracker/20235461395_1630848315471_Santhosh_Resume.pdf', NULL, '1', '2021-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-19 12:25:34', 1, '2021-09-19 12:36:43', 0, NULL, 1),
(6372, '', '0', '7397427665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109190003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-19 12:28:32', 0, NULL, 0, NULL, 1),
(6373, '', '0', '9600676127', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-19 12:41:05', 0, NULL, 0, NULL, 1),
(6374, 'Manasseh', '4', '8939495725', '', 'mrmanasseh2001@email.com', '2001-07-31', 20, '4', '2', 'Krishna moorthy', 'Student', 20000.00, 1, 0.00, 15000.00, 'No.1 4th St arunachalam nagar pattabiram Chennai', 'No.1 4th St Arunachalam Nagar Pattabiram Chennai', '2109190005', '', '1', 'upload_files/candidate_tracker/48947997506_manasseh.pdf', NULL, '1', '2021-09-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain, avg convincing. ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-19 03:49:44', 1, '2021-09-19 03:55:22', 0, NULL, 1),
(6375, '', '0', '9444042056', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-19 05:54:48', 0, NULL, 0, NULL, 1),
(6376, 'Aqib', '4', '8754385312', '9344716517', 'aakifjavid27@gmail.com', '1996-11-16', 24, '1', '2', 'Jasima', 'fresher', 100000.00, 3, 0.00, 12000.00, 'Mannady', 'Mannady', '2109190007', '', '1', 'upload_files/candidate_tracker/88193653098_1607250912022 - Google Drive.pdf', NULL, '1', '2021-09-20', 0, '000', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-19 09:15:46', 1, '2021-09-19 09:21:27', 0, NULL, 1),
(6377, '', '0', '7358489525', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109190008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-19 09:31:53', 0, NULL, 0, NULL, 1),
(6378, 'satheesh', '23', '9750617500', '6381548807', 'satheeshsaravananjs@gmail.com', '1994-06-16', 27, '2', '2', 'sivanantham', 'nagercoil', 30000.00, 1, 240000.00, 360000.00, 'nagercoil', 'chennai', '2109200001', '1', '2', 'upload_files/candidate_tracker/72816567660_satheesh-sivanantham.pdf', NULL, '1', '2021-09-22', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Task was okay but Couldnxquott match with our requirements. Checked with udhay bro too.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-20 09:34:06', 1, '2021-09-20 03:05:30', 0, NULL, 1),
(6379, 'Jothi Deepak G', '13', '9841513901', '6379899205', 'gjdeepak784@gmail.com', '1997-07-08', 24, '2', '2', 'Anjala Mary G', 'Daily Wages', 9000.00, 3, 0.00, 10000.00, 'Villupuram', 'Chennai', '2109200002', '1', '1', 'upload_files/candidate_tracker/34780896676_Resume_DEEPAK_Format1.pdf', NULL, '1', '2021-09-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no basic tech skills, expt 15k, not okay with service agreement. ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-20 09:44:49', 1, '2021-09-20 10:06:46', 0, NULL, 1),
(6380, 'SARUMATHI L', '4', '8754244802', '9790326977', 'Sarulakshmanan.2002@gmail.com', '2002-05-21', 19, '2', '2', 'Lakshmanan', 'Farmer', 12000.00, 1, 0.00, 10000.00, 'Thanjavur', 'ThanjAvur', '2109200003', '1', '1', 'upload_files/candidate_tracker/8781416013_20210920_142648.jpg.pdf', NULL, '1', '2021-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain, 19 age little bit childish.', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-20 10:46:07', 8, '2021-09-22 10:23:25', 0, NULL, 1),
(6381, '', '0', '7010332653', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 10:59:28', 0, NULL, 0, NULL, 1),
(6382, 'Govarthanan.E', '4', '7358842846', '9629325525', 'egovarthanan03@gamil.com', '1997-01-11', 24, '1', '2', 'Elumail', 'Faemar', 20000.00, 1, 0.00, 15000.00, 'Madurantakam', 'Madurantakam', '2109200005', '', '1', 'upload_files/candidate_tracker/44550681046_0_govarathan resume e.docx', NULL, '1', '2021-09-20', 0, 'Jobs.', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for sales, has core exp expt is 15, not speaking up, no flow.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-20 11:13:00', 1, '2021-09-20 11:30:06', 0, NULL, 1),
(6383, 'Krishnan k', '4', '9944455493', '9944001640', 'kisnaengineer@gmail.com', '1999-10-21', 21, '2', '2', 'Kannan s', 'Photo color lab', 72000.00, 1, 0.00, 12000.00, 'thanjavur', 'thanjavur', '2109200006', '1', '1', 'upload_files/candidate_tracker/17094105296_CV_2021-09-20-094544.pdf', NULL, '1', '2021-09-20', 0, '', '3', '59', '2021-09-27', 126000.00, '', '3', '2021-09-28', '1', 'Selected for Elite RE Thanjavur Location in Cash mode and able to join on Thursday only due to some personal work', '1', '1', '', '4', '5', '', '2', '2021-09-21', '2', '9', 'Offer Mail Sent to the candidate,We have given him joining date on 23-Sep-2021 but due to some personal work can able to join us on 27-Sep-2021', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-20 11:20:54', 60, '2021-09-24 11:41:52', 0, NULL, 1),
(6384, '', '0', '8778437428', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 11:39:58', 0, NULL, 0, NULL, 1),
(6385, 'JAGATHISH P', '22', '8883777584', '6383554454', 'pjagathish96@gmail.com', '1996-05-31', 25, '2', '2', 'PONNUSAMY M', 'Exports', 30000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Anna nagar', '2109200008', '1', '1', 'upload_files/candidate_tracker/72515558824_RESUME- JAGATHISH.B.E,MBA-doc.pdf', NULL, '1', '2021-09-20', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'No knowledge about DM, doubtful in terms of sustainability. Attitude issues.\n\n\n\n\n ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-20 11:42:29', 1, '2021-09-20 11:46:49', 0, NULL, 1),
(6386, 'Akash J', '14', '6382999123', '9585010730', 'Akashak2412@gmail.com', '1999-10-05', 21, '1', '2', 'Jaishankar N', 'Farmer', 25000.00, 3, 0.00, 15000.00, 'Arani', 'Arani', '2109200009', '', '1', 'upload_files/candidate_tracker/48499052549_AKASH.pdf', NULL, '1', '2021-09-20', 0, 'P 013', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very fresher, no tech skills, has to learn. no course ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-20 11:43:37', 1, '2021-09-20 11:55:27', 0, NULL, 1),
(6387, 'R.Thiruselvam', '4', '8939325850', '', 'Selvamthiru600@gamil.com', '1996-11-17', 24, '2', '2', 'A.Rajanathan', '20000', 10000.00, 2, 0.00, 15000.00, 'Nanganallur', 'Nanganallur', '2109200010', '1', '1', 'upload_files/candidate_tracker/80006288093_120821-ADVT. CRPD-SCO-2021-22-14.pdf', NULL, '3', '2021-09-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, 1yr exp in press in data entry. will not suite for sales aswell. ', '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-20 12:13:01', 1, '2021-09-20 12:24:23', 0, NULL, 1),
(6388, 'Sayed batcha', '4', '9659962714', '', 'Sayeedmaas127@gmail.com', '1998-03-17', 23, '2', '2', 'Sathik batcha', 'Tea show working', 13000.00, 1, 0.00, 10000.00, 'Kandiyur', 'Kandiyur', '2109200011', '1', '1', 'upload_files/candidate_tracker/75742111878_res_syed17.pdf', NULL, '1', '2021-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-20 12:51:30', 1, '2021-09-20 01:09:14', 0, NULL, 1),
(6389, 'S.Arthi', '4', '8940938429', '9159013451', 'arthi2001sathish@gmail.com', '2001-06-03', 20, '2', '2', 'Sathishkumar', 'Agriculture', 1500.00, 2, 0.00, 15500.00, 'THIRUTHURAIPOONDI', 'Thanjavur', '2109200012', '1', '1', 'upload_files/candidate_tracker/769899456_rt resume.pdf', NULL, '1', '2021-09-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '1', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-09-20 12:51:42', 1, '2021-09-27 09:23:07', 0, NULL, 1),
(6390, 'RATHNAVEL M', '4', '8778196457', '7397306457', 'hariprasath1314@gmail.com', '1999-09-13', 22, '4', '2', 'Poomari(mother)', 'Government servant', 25000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2109200013', '', '1', 'upload_files/candidate_tracker/26277082815_Rathnavel-resume.pdf', NULL, '2', '2021-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, all his 3 bro working in it, he is gng class in race for ssc and banking, can work for 6m. will not sustain. interested to study cryptography. ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-20 01:09:35', 7, '2021-09-28 03:42:51', 0, NULL, 1),
(6391, '', '0', '9159013451', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 01:23:09', 0, NULL, 0, NULL, 1),
(6392, 'gokula krishnan r', '23', '9487674272', '', 'gokulakrishnan1507@gmail.com', '1999-07-15', 22, '2', '2', 'ramakrishnan', 'ex-army', 30000.00, 1, 0.00, 15000.00, 'neyveli', 'neyveli', '2109200015', '1', '1', 'upload_files/candidate_tracker/53328158121_Gokula uiux-compressed.pdf', NULL, '1', '2021-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much looks for intern only, need to relocate from native, sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-20 01:31:44', 1, '2021-09-20 01:42:41', 0, NULL, 1),
(6393, 'Jayanth.M', '4', '8925606714', '6374695395', 'smartjayanth99@gmail.com', '2001-03-31', 20, '2', '2', 'Manickam', 'Student', 50000.00, 2, 0.00, 10000.00, 'Kumbakonam', 'Kumbakonam', '2109200016', '1', '1', 'upload_files/candidate_tracker/93413005366_jayanth.pdf', NULL, '2', '2021-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher 5050, Avg In Convincing.', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-20 02:39:44', 8, '2021-09-22 10:22:43', 0, NULL, 1),
(6394, '', '0', '8122482130', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 03:18:39', 0, NULL, 0, NULL, 1),
(6395, 'B sugavaneshwaran', '2', '9094251268', '', 'suganyyvi77@gmail.com', '1995-10-06', 25, '2', '2', 'B.Balachandar', 'Temple priest', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2109200018', '1', '1', 'upload_files/candidate_tracker/13155758333_SugavaneshwaranB_InternshalaResume.pdf', NULL, '1', '2021-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'didnt turn back  with his confirmation on the  TxxampC', '2', '2', '', '1', '1', '', '2', '2021-10-07', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-20 03:22:51', 50, '2021-10-06 11:07:23', 0, NULL, 1),
(6396, '', '0', '9786734169', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 03:51:52', 0, NULL, 0, NULL, 1),
(6397, '', '0', '6379411051', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 03:58:28', 0, NULL, 0, NULL, 1),
(6398, 'Pushparaja.k', '4', '7010660359', '', 'pushparaja122001@gmail.com', '2001-11-12', 19, '4', '2', 'Parent', 'Auto driver', 25000.00, 2, 0.00, 18000.00, 'Choolaimedu', 'Choolaimedu', '2109200021', '', '1', 'upload_files/candidate_tracker/77959198137_pushparaja resume _2021-07-01-060305.pdf', NULL, '3', '2021-09-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-20 03:59:51', 1, '2021-09-20 04:04:45', 0, NULL, 1),
(6399, '', '0', '9566253307', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 04:30:35', 0, NULL, 0, NULL, 1),
(6400, 'Prabhakaran', '23', '7598388758', '', 'prabhakaran181096@gmail.com', '1996-10-18', 24, '2', '2', '-', '-', 3.00, 1, 0.00, 3.00, 'madurai', 'chennai', '2109200023', '1', '1', 'upload_files/candidate_tracker/24454158115_RESUME.pdf', NULL, '1', '2021-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-20 07:17:33', 1, '2021-09-20 07:45:34', 0, NULL, 1),
(6401, 'Mubeen fathima .R', '20', '9940652512', '9789814385', 'akbar.25mu@yahoo.com', '1992-12-25', 28, '2', '1', 'Akbar. B', 'Logistics', 30000.00, 2, 15000.00, 15000.00, 'New perungalathur', 'New perungalathur', '2109210001', '3', '2', 'upload_files/candidate_tracker/97554266169_MUBEEN E resume.docx', NULL, '1', '2021-09-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, no flow in speech, has 5yrs gap expt is 13k.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-21 10:05:45', 1, '2021-09-21 10:13:54', 0, NULL, 1),
(6402, 'Sowmiya', '4', '9176303527', '8610795870', 'sowmiya96m@gmail.com', '1996-05-26', 25, '2', '2', 'Murugan', 'Business', 20000.00, 1, 0.00, 12000.00, '39 , pearumal Kovil street , velleritiruvallur', '4/14 Brindavan Street, West Mambalam, ch 33', '2109210002', '3', '1', 'upload_files/candidate_tracker/96659341140_Sowmiya Resume.docx', NULL, '1', '2021-09-21', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, not speaking up, prefers accounts job, will not handle pressure and sustain. poor attitude.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-21 10:25:06', 7, '2021-09-21 11:31:23', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6403, 'Jagadesh war rao.B', '6', '8825902568', '9677009799', 'jagdishthor007@gmail.com', '2000-11-03', 20, '2', '2', 'T Balaji rao', 'Business', 37000.00, 1, 0.00, 14000.00, 'Madhavram', 'Madhavram', '2109210003', '1', '1', 'upload_files/candidate_tracker/68997818874_ArunKumar.pdf', NULL, '1', '2021-09-21', 0, '', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', 'Fresher for our Sales Profile,Selected for Srikanth team with PF/ESI/PT Deductions', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', 'Offer Link has been shared to upload the documents on 22/Sep/2021.', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-21 10:48:33', 60, '2021-09-22 03:51:00', 0, NULL, 1),
(6404, 'Anbarasan', '23', '7708033028', '9344717485', 'anbu9767@gmail.com', '1994-10-10', 26, '2', '2', 'Balasubramanian', 'Ex army', 22000.00, 1, 0.00, 15000.00, 'Pudukkottai', 'Chennai', '2109210004', '1', '1', 'upload_files/candidate_tracker/77114135476_1631495910415Resume_ANBARASAN.docx', NULL, '1', '2021-09-24', 0, '', '3', '59', '2021-10-06', 96000.00, '', '0', NULL, '2', '3 months unpaid intern,3 months paid intern and 3 yrs employment', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 11:35:24', 1, '2021-09-21 11:40:10', 0, NULL, 1),
(6405, '', '0', '8610069794', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109210005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-21 11:39:56', 0, NULL, 0, NULL, 1),
(6406, 'ilias', '5', '8939425570', '', 'ganiiliyas@gmail.com', '1991-12-19', 29, '2', '1', 'abdul gani', 'late', 0.00, 1, 16900.00, 28000.00, 'CENNAI', 'CHennai', '2109210006', '3', '2', '0', NULL, '1', '2021-09-21', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no Sustainability, his last ctc is 16k and holds offer for 22k and expt 24-28k. will not suite for our process. was doing his catering biz and will continue the biz as well.', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-21 11:53:22', 7, '2021-09-21 02:51:20', 0, NULL, 1),
(6407, 'Karthik', '6', '9500116234', '', 'joshankarthik0@gmail.com', '1993-03-01', 28, '1', '1', 'Saranya KP', 'Filming industry', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2109210007', '', '2', 'upload_files/candidate_tracker/49638737193_kj resume.docx', NULL, '1', '2021-09-21', 0, 'P1121', '3', '59', '2021-09-23', 186000.00, '', '4', '2022-08-11', '1', 'Selected for Srikanth  Team with PF/ESI/PT deductions.2+ yrs voice experience but not in Insurance domain.', '5', '1', '1', '1', '1', '2', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-21 11:54:02', 60, '2021-09-22 03:05:24', 0, NULL, 1),
(6408, 'Hariharan NKS', '13', '7200068368', '', 'nkshariharan17@gmail.com', '1999-05-17', 22, '2', '2', 'KRISHNAMURTHY K', 'Business', 60000.00, 1, 0.00, 4.00, 'Thiruinivaur, Chennai', 'Thiruinivaur, Chennai', '2109210008', '1', '1', 'upload_files/candidate_tracker/59491954319_Hariharan NKS - 2021 - resume.pdf', NULL, '1', '2021-09-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 11:56:52', 1, '2021-09-21 12:01:08', 0, NULL, 1),
(6409, 'R.s NISHOK RAJ', '23', '8939306256', '', 'nishokstark15@gmail.com', '2000-11-07', 20, '1', '2', 'S.Tamilarasi', 'Receptionist', 5000.00, 0, 0.00, 8000.00, 'No 8/17 Elango Salai Lane, Teynampet', 'No 8/17 Elango Salai Lane, Teynampet', '2109210009', '', '1', 'upload_files/candidate_tracker/8021777916_Nishok Resume 10.pdf', NULL, '1', '2021-09-21', 0, 'jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, no basics knowledge, bcom but looking for IT profile and no course and expt 10k. job need, mom Separated.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-21 12:03:02', 1, '2021-09-21 12:27:00', 0, NULL, 1),
(6410, 'Mohamed Ashif', '23', '6369107981', '9551170639', 'm.ashif8069@gmail.com', '2001-07-02', 20, '2', '2', 'Mohamed Nizar', 'Toys shop', 18000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2109210010', '1', '1', 'upload_files/candidate_tracker/74897775738_SodaPDF-converted-_Resume.pdf', NULL, '1', '2021-09-23', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate wont suit our team. Task too was not good', '2', '2', '0', '1', '1', '0', '2', '2021-09-24', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 12:36:31', 1, '2021-09-22 04:01:05', 0, NULL, 1),
(6411, 'Mahalakshmi R', '4', '9962559965', '9940539431', 'laksmiraj111@gmail.com', '2001-11-01', 19, '2', '2', 'R Rajendiran', 'Auto driver', 15000.00, 2, 0.00, 15000.00, 'No: 5, Nagappan Street, Jafferkhanpet,nnai-600083', 'No: 5, Nagappan Street, Jafferkhanpet,ennai-600083', '2109210011', '1', '1', 'upload_files/candidate_tracker/14534005702_MAHALAKSHMI RESUME.pdf', NULL, '1', '2021-09-21', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for voice process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-21 12:46:21', 7, '2021-09-22 10:17:30', 0, NULL, 1),
(6412, 'M.Abinaya', '4', '9884756217', '', 'abinayaalamelu4408@gmail.com', '2000-09-19', 21, '2', '2', 'P.Murugan', 'centering', 17000.00, 2, 0.00, 14000.00, 'chennai', 'Chennai', '2109210012', '1', '1', 'upload_files/candidate_tracker/76585681590_report (2).pdf', NULL, '1', '2021-09-21', 0, '', '3', '59', '2021-09-23', 120000.00, '', '6', '2021-12-07', '2', 'Selected for Elite RE - Priyanka Team - Cash mode', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent to the candidate', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-21 12:49:53', 7, '2021-09-22 10:16:35', 0, NULL, 1),
(6413, 'Purushothaman J', '23', '7448335099', '6369729923', 'purushothsandy143@gmail.com', '2000-11-21', 20, '2', '2', 'jotiramalingam', 'flowerist', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2109210013', '1', '1', 'upload_files/candidate_tracker/92951624854_MY RESUME.pdf', NULL, '1', '2021-09-24', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'No response from candidate\n', '2', '2', '0', '1', '1', '0', '2', '2021-09-25', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 01:19:25', 1, '2021-09-21 09:47:54', 0, NULL, 1),
(6414, 'ShanthaKumar V', '22', '9042335500', '9042335588', 'skpostbox07@gmail.com', '2001-07-15', 20, '2', '2', 'Valarmathi V', 'Helper', 9000.00, 2, 0.00, 20000.00, 'Guduvancheri', 'Guduvancheri', '2109210014', '1', '1', 'upload_files/candidate_tracker/75542634589_Sk Resume (F)pdf.pdf', NULL, '1', '2021-09-23', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Candidate having Oscillation. ', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 02:04:53', 1, '2021-09-21 02:11:21', 0, NULL, 1),
(6415, 'kiruthika s', '13', '9361316916', '', 'kiruthikagowri1@gmail.com', '1998-11-25', 22, '2', '2', 'sivapragasam', 'farmer', 24000.00, 1, 0.00, 15000.00, 'pondicherry', 'pondicherry', '2109210015', '1', '1', 'upload_files/candidate_tracker/24971344839_kiruthika s PG.pdf', NULL, '1', '2021-09-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'pursuing mca, yet to complete final year project. expt 15k, doesnt know the basics in php and other programming lang. not interested in internship too.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:21:31', 1, '2021-09-21 03:44:21', 0, NULL, 1),
(6416, 'GAYATHRI E', '13', '9952498058', '', 'gayathrie333@gmail.com', '1999-03-24', 22, '2', '2', 'Ezhumalai', 'Cooli', 10000.00, 1, 0.00, 18000.00, 'Cuddalore', 'Thenampettai', '2109210016', '1', '1', 'upload_files/candidate_tracker/97417956621_Document-WPS Office.pdf', NULL, '1', '2021-09-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Not Interested In Internship Too.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:22:26', 1, '2021-09-21 03:38:44', 0, NULL, 1),
(6417, 'suriya k', '23', '8682836353', '', 'suriya4023812@gmail.com', '1999-10-07', 21, '2', '2', 'latha c', 'customer service provider', 30000.00, 1, 0.00, 300000.00, 'mattukaranur post omalur taluk salem', 'Mattukaranur Post Omalur Taluk Salem', '2109210017', '1', '1', 'upload_files/candidate_tracker/53929070584_Suriya.k_fresher_SD_resume.pdf', NULL, '2', '2021-09-27', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'fresher, learnt through udemy expt 3l after training. from salem and will stay with his friend in guindy, father xservice man and mother in SBI.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:24:26', 1, '2021-09-21 03:51:14', 0, NULL, 1),
(6418, 'Arun', '13', '9659788005', '', 'arunsjc02@gmail.com', '1998-10-21', 22, '2', '2', 'Shanmugam', 'Carpenter', 10000.00, 1, 0.00, 20000.00, 'Pondicherry', 'Pondicherry', '2109210018', '1', '1', 'upload_files/candidate_tracker/18621536051_Arun Resume.doc', NULL, '1', '2021-09-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Interested In Internship has to discuss with family.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:30:16', 1, '2021-09-21 07:28:55', 0, NULL, 1),
(6419, 'Sushmitha R', '13', '6381556106', '9489341865', 'sushmithacud2015@gmail.com', '1998-12-07', 22, '2', '2', 'Raji S', 'Framer', 65000.00, 2, 0.00, 18000.00, 'Cuddalore', 'Chennai', '2109210019', '1', '1', 'upload_files/candidate_tracker/22527791099_Sushmitha R.pdf', NULL, '1', '2021-09-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Interested In Internship Has To Discuss With Family.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:35:45', 1, '2021-09-21 03:38:48', 0, NULL, 1),
(6420, 'Balaji M. k', '13', '7299431420', '', 'balajithrekashshapan@gmail.com', '1999-11-27', 21, '2', '1', 'Kuppan', 'Carpenter', 15000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2109210020', '1', '1', 'upload_files/candidate_tracker/22194809258_Resume (Balaji_shapan)-converted.docx', NULL, '1', '2021-09-22', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'candidate actually interested in UI and we only require experienced for the same.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:37:38', 1, '2021-09-21 03:44:18', 0, NULL, 1),
(6421, 'Arunkumar A', '13', '9790545367', '8903553038', 'arunofficial0715@gmail.com', '1999-07-15', 22, '2', '2', 'Arunachalam A', 'Cook', 18000.00, 1, 0.00, 18000.00, 'Pondicherry', 'Pondicherry', '2109210021', '1', '1', 'upload_files/candidate_tracker/92326630314_Arunkumar A (4).pdf', NULL, '1', '2021-09-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Interested In Internship Has To Discuss With Family.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:52:01', 1, '2021-09-22 12:17:54', 0, NULL, 1),
(6422, 'Iruthaya Raj', '22', '9176171316', '9094524480', 'Rajkanan1111@gmail.com', '1996-01-12', 25, '2', '2', 'Mark', 'Builders', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2109210022', '1', '1', 'upload_files/candidate_tracker/1393301511_RAJ Digital marketing 2.pdf', NULL, '1', '2021-10-04', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No knowledge with respect to learning experience', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-21 04:20:46', 8, '2021-10-04 06:04:22', 0, NULL, 1),
(6423, '', '0', '9094524480', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109210023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-21 04:59:23', 0, NULL, 0, NULL, 1),
(6424, 'jeevagen', '4', '9787549081', '', 'jeevagan156@gmail.com', '1996-12-17', 24, '2', '2', 'murugan', 'farmer', 15000.00, 4, 0.00, 10000.00, 'aavadi', 'aavadi', '2109220001', '1', '1', 'upload_files/candidate_tracker/47115503530_RESUME jeevagan156 (3)(1).pdf', NULL, '1', '2021-09-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher, not speaking up and will not suite for our process, will not handle pressure.', '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-22 11:21:27', 1, '2021-09-22 11:37:50', 0, NULL, 1),
(6425, 'aravindan', '5', '9941500564', '9566167055', 'aravindrock014@gmail.com', '2000-06-13', 21, '2', '2', 'vediche', 'eerttttyy', 200000.00, 2, 0.00, 15000.00, 't.nagar', 't.nagar', '2109220002', '1', '1', 'upload_files/candidate_tracker/3273416708_Aravind resume.pdf', NULL, '1', '2021-09-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have seen post in naukri and came directly, looking for accounts job.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-22 11:57:06', 8, '2021-09-22 06:19:15', 0, NULL, 1),
(6426, 'Jayanthi', '13', '8110893706', '9751946371', 'jaikutty1411@gmail.com', '1999-11-14', 21, '2', '2', 'Karthikeyan', 'Study', 10000.00, 1, 0.00, 15000.00, '4/151 8th Street Periyar Nagar', 'Kundrathur', '2109220003', '1', '1', 'upload_files/candidate_tracker/33364496868_jai-converted (3).pdf', NULL, '1', '2021-09-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, doesnt know basics in php. from kundrathur too long. expt is 13-15k, terms not shared with her.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-22 12:19:23', 7, '2021-09-24 01:04:44', 0, NULL, 1),
(6427, 'LOKESH BALAJI J', '4', '9952094375', '9444064776', 'lokeshjaya98@gmail.com', '1998-05-24', 23, '4', '2', 'M. Jayaraman', 'Government servant', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2109220004', '', '1', 'upload_files/candidate_tracker/18866434395_Lokesh Balaji cv. pdf.pdf', NULL, '1', '2021-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-22 02:59:48', 1, '2021-09-22 03:51:55', 0, NULL, 1),
(6428, 'Srimahalakshmi', '13', '9789254848', '', 'srimahalakahmi27121999@gmail.com', '1999-06-03', 22, '2', '2', 'Narasimman', 'Weaver', 8000.00, 2, 0.00, 20000.00, 'Vellore', 'Vellore', '2109220005', '1', '1', 'upload_files/candidate_tracker/59457262460_maha1.pdf', NULL, '1', '2021-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-22 03:51:26', 1, '2021-09-22 04:01:19', 0, NULL, 1),
(6429, 'Chanthiran', '13', '7904402710', '9942980143', 'chanthirane@gmail.com', '1997-06-05', 24, '2', '2', 'Elumalai', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'Villupuram', 'Chennai', '2109220006', '1', '1', 'upload_files/candidate_tracker/84854097851_Chandru Resume.pdf', NULL, '1', '2021-09-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 1yr exp in testing, learning php doesnt know basics. expt is 3l, sal and terms not shared with him.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-22 06:23:08', 1, '2021-09-22 06:34:20', 0, NULL, 1),
(6430, 'R.Shanmugam', '23', '8072610772', '9566179547', 'Shanmugamr91@gmail.com', '1996-10-31', 24, '2', '1', 'Annammal', 'House wife', 30000.00, 2, 0.00, 15000.00, 'Iyyappanthangal, Chennai-122', 'Iyyappanthangal, ch-122', '2109220007', '1', '1', 'upload_files/candidate_tracker/30214587354_Shanmugam Resume-1.pdf', NULL, '1', '2021-09-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '	Was Working In Printer Service Like Filling Ink And Installation For Past 6yrs. Will Not Suite For Designing. Learning Fullstalk And Expt 12-15k', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-22 08:01:21', 7, '2021-09-24 05:45:11', 0, NULL, 1),
(6431, 'Rajkirankumar', '23', '6382375597', '7358566559', 'rajkirankumarbv@gmail.com', '1998-12-03', 22, '2', '2', 'Venkatesh b', 'Driver', 15000.00, 1, 0.00, 15000.00, '18/23 Ramakrishna puram 2nd street, west Mambalam', '18/23 Ramakrishna Puram 2nd Street, West Mambalam', '2109230001', '1', '1', 'upload_files/candidate_tracker/2131448054_ui.pdf', NULL, '1', '2021-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-23 10:43:58', 1, '2021-09-23 11:00:10', 0, NULL, 1),
(6432, 'K. V. Gomathy', '4', '9787731763', '9543712595', 'gomathy185@gmail.com', '1996-06-18', 25, '2', '2', 'Parent', 'Framer', 70000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2109230002', '3', '2', 'upload_files/candidate_tracker/59252972080_Gomathy185resumeee.doc', NULL, '1', '2021-09-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'okay with priyanka and banu was rejected in telephonic by dhanalakshim.  ', '1', '2', '0', '1', '1', '0', '2', '2021-09-25', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-23 10:55:29', 1, '2021-09-23 11:02:22', 0, NULL, 1),
(6433, 'Ganesan', '6', '9710710724', '', 'www.ganesa102000@gmail.com', '2006-09-23', 0, '2', '2', 'Jagadeesan', 'Daily work', 7000.00, 2, 0.00, 14000.00, 'Chennai', 'Chennai kotturpuram', '2109230003', '1', '1', 'upload_files/candidate_tracker/36203173863_j.ganesan.doc', NULL, '1', '2021-09-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response and update', '5', '2', '0', '1', '1', '0', '2', '2021-09-25', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-23 11:12:50', 1, '2021-09-23 11:16:34', 0, NULL, 1),
(6434, 'Joseph Daniel Kumar', '5', '9941804971', '7092233838', 'dani994180@gmail.com', '1998-06-06', 23, '2', '2', 'Kumar B', 'Private emp', 10000.00, 1, 0.00, 240000.00, '13 B,Hanuman nagar, Thirumullaivoyal, Chennai-62', '13 B,Hanuman Nagar, Thirumullaivoyal, Chennai-62', '2109230004', '1', '1', 'upload_files/candidate_tracker/70408494781_JOSEPH DANIEL B k 01.pdf', NULL, '1', '2021-09-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 3yr exp in calling but will not suite for sales.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-23 11:25:42', 1, '2021-09-23 11:35:00', 0, NULL, 1),
(6435, 'Srinivasan', '23', '9677074704', '6380330996', 'designercode25@gmail.com', '1997-11-25', 23, '2', '2', 'Usha shanmugam', 'Web design', 20000.00, 1, 0.00, 15000.00, '1/54, thiruvalluvar street ,kovur', '1/54, thiruvalluvar street,kovur', '2109230005', '1', '1', 'upload_files/candidate_tracker/72959111564_resume-compressed.pdf', NULL, '1', '2021-09-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'was doing photography and doing designing as freelancer. his portfolio is not up to the level. terms not shared and expt 15k.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-23 11:33:55', 7, '2021-09-24 05:56:59', 0, NULL, 1),
(6436, 'M.preetha', '4', '9751695346', '9791533680', 'preethamurugan24@gmail.com', '1998-05-30', 23, '4', '2', 'A.Murugan', 'Fisherman', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2109230006', '', '1', 'upload_files/candidate_tracker/4080848966_M.PREETHA.docx', NULL, '1', '2021-09-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-23 11:34:55', 1, '2021-09-23 02:09:54', 0, NULL, 1),
(6437, 'praveen.m', '2', '6369381125', '9444457923', 'praveenmrp2404@gmail.com', '2000-04-24', 21, '2', '2', 'masilamani.g', 'police', 40000.00, 2, 0.00, 200000.00, 'chennai', 'chennai', '2109230007', '1', '1', 'upload_files/candidate_tracker/41912873125_Praveen_M_2021.pdf', NULL, '1', '2021-09-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', '1m internship in front  end, very dull and father is SI in 1000 lights. expt 2.5l ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-23 12:38:42', 1, '2021-09-23 07:21:54', 0, NULL, 1),
(6438, 'Kumaran K', '23', '7708810696', '9345387248', 'Kalaikumar620@gmail.com', '1999-07-30', 22, '2', '2', 'Kalaimani', 'Highway employees', 1500.00, 1, 0.00, 1500.00, 'Tindivanam', 'Tindivanam', '2109230008', '1', '1', 'upload_files/candidate_tracker/74366003401_kumaran resume-1-compressed.pdf', NULL, '1', '2021-09-27', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'frehsr, 6m course in designing, doesnt know basics. expt 15k, from thindivanam and will come office from there if required will stay in thambaram. terms and conditions not shared with him. interested in photography and for his mothers wish looking for office job.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-23 12:48:35', 7, '2021-09-27 11:36:46', 0, NULL, 1),
(6439, 'ramji Sureshkumar', '4', '9655900173', '9486975663', 'milkaramji@gmail.com', '1999-05-28', 22, '2', '2', 'sureshkumar g', 'Revenue inspecter', 40000.00, 1, 0.00, 12.00, 'thanjavur', 'thanjavur', '2109230009', '1', '1', 'upload_files/candidate_tracker/54932555096_CV_2021-09-23-114422.pdf', NULL, '1', '2021-09-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not join. his friend krishna left', '1', '2', '0', '4', '5', '0', '2', '2021-09-27', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-23 01:11:22', 1, '2021-09-23 01:25:11', 0, NULL, 1),
(6440, 'Sathish Kumar V', '23', '7502153133', '', 'sathish11700232@gmail.com', '1994-11-15', 26, '2', '2', 'M Vijayakumar', 'Electrician', 10000.00, 1, 0.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2109230010', '1', '1', 'upload_files/candidate_tracker/92644540141_Resume_Sathish.pdf', NULL, '1', '2021-09-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has around 7yr exp in core job, still as machine operator 12k and expt 12-15k. done 6m course in designing and no portfolio with him. ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-23 01:41:03', 1, '2021-09-23 01:48:24', 0, NULL, 1),
(6441, 'Bilal Hussain K', '23', '6380261891', '', 'bilalhussainb78@gmail.com', '2001-04-21', 20, '2', '2', 'Kaleel Rahman G', 'Designing', 15000.00, 6, 0.00, 15000.00, 'Pozhichalur', 'Pammal', '2109230011', '1', '1', 'upload_files/candidate_tracker/53324696173_Profile Hussain.docx', NULL, '1', '2021-09-24', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Candidate only exposure in Auto CAD xxamp High salary expectation ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-23 04:07:11', 1, '2021-09-23 04:14:42', 0, NULL, 1),
(6442, '', '0', '9688692722', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109230012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-23 04:32:57', 0, NULL, 0, NULL, 1),
(6443, 'Kavipriya S', '13', '9025503006', '9080362927', 'kavipriyasekar2501@gmail.com', '1999-01-25', 22, '2', '2', 'Sekar T', 'Painter', 10000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2109230013', '1', '1', 'upload_files/candidate_tracker/28446235922_Kavipriya Resume .docx', NULL, '1', '2021-09-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Doesnt Know Basics In Php. From alapakkam Too Long. Expt Is 13-15k, Terms Not Shared With Her.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-23 04:36:53', 1, '2021-09-23 04:53:36', 0, NULL, 1),
(6444, 'Vengadaramanan', '22', '8825700973', '', 'krish787777@gmail.in', '1997-07-30', 24, '2', '2', 'Anandan e', 'Retired', 15000.00, 1, 0.00, 18000.00, 'Chennaj', 'Chennai', '2109230014', '1', '1', 'upload_files/candidate_tracker/75716020760_Venkat_23007928979.pdf', NULL, '1', '2021-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-23 05:39:19', 1, '2021-09-23 05:43:03', 0, NULL, 1),
(6445, 'Vinoth A', '6', '9003117909', '9500107899', 'nandhu.vinoth24@gmail.com', '2000-12-24', 20, '2', '2', 'M.Aji', 'Business', 50000.00, 2, 0.00, 13000.00, 'Valsaravakkam', 'Valsarvakkam', '2109240001', '1', '1', 'upload_files/candidate_tracker/57026351587_My resume.pdf', NULL, '3', '2021-09-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very slow, will ot suite for voice process.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-24 10:23:44', 1, '2021-09-24 10:28:24', 0, NULL, 1),
(6446, 'sivaprakash', '2', '8610595642', '', 'sivaprakash3536@gmail.com', '1999-06-20', 22, '3', '2', 'Baskaran', 'Business', 50000.00, 3, 0.00, 300000.00, 'Rameshwaram', 'Rameshwaram', '2109240002', '', '1', 'upload_files/candidate_tracker/74635897131_1632389469838_Resume.pdf', NULL, '1', '2021-09-24', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Came By Simply Jpr Youtube. From Rameshwaram Willing To Learn and okay with internship. Check With His Tech Skills.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-24 10:32:32', 1, '2021-09-24 10:36:38', 0, NULL, 1),
(6447, 'Selva M', '13', '6379535424', '', 'selvarajarmm@gmail.com', '2000-06-16', 21, '3', '2', 'Murugesan', 'Journalist', 30000.00, 4, 0.00, 300000.00, 'Rameswaram', 'Chennai', '2109240003', '', '1', 'upload_files/candidate_tracker/94058602276_1632460288316_Resume.pdf', NULL, '1', '2021-09-24', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Response.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-24 10:38:45', 8, '2021-09-24 05:13:59', 0, NULL, 1),
(6448, 'D.mohanraj', '4', '9688759618', '9566006986', 'kawassharmi@gmail.com', '1996-12-31', 24, '3', '2', 'K.Dharmaraj', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'T nagar', 'T nagar', '2109240004', '', '1', 'upload_files/candidate_tracker/8268724_18.09.2021 Employment News - Date Wise-.pdf', NULL, '1', '2021-09-24', 0, '', '3', '59', '2021-09-27', 120000.00, '', '', '2021-10-05', '2', 'Selected for elite - Priyanka Team in Consultant Cash mode. He will arrange bike in next 2-3 months, if arranged will be handling RE role and his salary will be revised with the increment of 2-3K(Overall CTC, should try him with PF/ESI)', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-09-24 10:44:55', 60, '2021-09-25 03:31:02', 0, NULL, 1),
(6449, 'narendhira kumar', '5', '7358070885', '', 'narendhirakumar619@gmail.com', '1991-12-08', 29, '2', '1', 'sunderasan', 'retired', 15000.00, 1, 230000.00, 20000.00, 'mandaveli', 'Mandaveli', '2109240005', '1', '2', 'upload_files/candidate_tracker/45991547742_Narendhirakumar Resume.docx', NULL, '1', '2021-09-24', 0, '', '3', '59', '2021-10-11', 288000.00, '', '', '2021-10-13', '1', 'Selected for Santhosh Team with PF/PT Deductions.', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '1', 'Patroniss Offer Link has been Shared to upload the documents', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-24 10:50:18', 60, '2021-10-09 04:41:52', 0, NULL, 1),
(6450, '', '0', '9751838265', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109240006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-24 11:47:35', 0, NULL, 0, NULL, 1),
(6451, '', '0', '8925405733', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109240007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-24 12:51:24', 0, NULL, 0, NULL, 1),
(6452, '', '0', '7094550059', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109240008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-24 05:36:20', 0, NULL, 0, NULL, 1),
(6453, 'SUBASH K', '6', '7418207007', '', 'thalasubash83@gmail.com', '2006-09-25', 0, '2', '2', 'Kalaimani.k', 'Painter', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2109250001', '1', '1', 'upload_files/candidate_tracker/84951134907_SUBASH RESUME 2021.docx', NULL, '1', '2021-09-25', 0, '', '1', '58', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-25 10:29:42', 1, '2021-09-25 10:40:04', 0, NULL, 1),
(6454, 'Shalini', '14', '8610008260', '', 'imshaluoo@gmail.com', '1998-03-08', 23, '2', '1', 'Sathishkumar', 'Event Management', 80000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2109260001', '1', '2', 'upload_files/candidate_tracker/44689962082_Shalini_S_Resume_2.PDF', NULL, '3', '2021-09-29', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-26 09:19:35', 1, '2021-09-26 09:26:41', 0, NULL, 1),
(6455, 'Mukilan.k', '4', '7305322479', '9840384572', 'mukilanprabhu2001@gmail.com', '2001-06-25', 20, '1', '2', 'Kumaresan.S', 'HR', 150000.00, 1, 13000.00, 13000.00, 'Ottiyambakkam', 'Ottiyambakkam', '2109270001', '', '2', 'upload_files/candidate_tracker/30192895137_mukilan new resume.pdf', NULL, '1', '2021-09-27', 0, '25', '3', '59', '2021-09-30', 132000.00, '', '6', '2021-12-31', '2', 'Selected for Priyanka Jenit Team in Cash mode - 5% deductions', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-09-27 10:16:40', 60, '2021-09-27 06:18:41', 0, NULL, 1),
(6456, 'Shaik Sadhiq', '4', '8142494093', '', 'sadik112279@gmail.com', '2000-05-04', 21, '1', '2', 'Shaik Babu', 'Uneducated', 15000.00, 1, 0.00, 15000.00, 'Chirala', 'Chirala', '2109270002', '', '1', 'upload_files/candidate_tracker/32229178628_Cv Sadhiq.pdf', NULL, '2', '2021-09-29', 0, '66668', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-27 05:08:20', 1, '2021-09-27 05:15:49', 0, NULL, 1),
(6457, 'MANORANJITH T', '13', '8220998642', '8124569042', 'ranjithmariappan23@gmail.com', '1999-07-29', 22, '2', '2', 'THANGAMARIAPPAN K', 'TRANSPORT', 30000.00, 2, 0.00, 15000.00, 'KOVILPATTI', 'KOVILPATTI', '2109270003', '1', '1', 'upload_files/candidate_tracker/31993389097_Mano Ranjith T (Resume)(fresher).pdf', NULL, '1', '2021-09-30', 0, '', '3', '59', '2021-10-07', 96000.00, '', '', '2021-10-27', '1', 'Fresher. Okay For An Internship. 3 Years Service Agrement. 1st 3 Months Intern And The Pay Is 3.5k. After Three Months Will Be 8k.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-27 05:34:06', 60, '2021-10-07 05:56:33', 0, NULL, 1),
(6458, 'Pandiarajan P', '9', '9884226400', '8838187818', 'ppandia@gmail.com', '1984-07-05', 37, '1', '1', 'Rajalakshmi P', 'Salary', 85000.00, 2, 825000.00, 850000.00, 'Theni', 'Chennai', '2109270004', '', '2', 'upload_files/candidate_tracker/11645297280_Resume - Pandiarajan P.doc', NULL, '1', '2021-09-27', 1, '55557', '3', '59', '2021-11-08', 850000.00, '', '6', '2022-08-12', '1', 'Selected as Cluster Head - CTC committed by Suresh sir includes all deductions as per company policy', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', 'Selected as Cluster Head - Offer Link Shared', '', '', '', NULL, NULL, NULL, 1, '2021-09-27 06:29:22', 60, '2021-09-29 03:23:28', 0, NULL, 1),
(6459, 'Syed Nathimullah', '13', '7871134137', '', 'syednathim@gmail.com', '1999-08-02', 22, '2', '2', 'Syed Nayeemullah', 'Auto driver', 10000.00, 4, 17000.00, 30000.00, 'Chennai', 'Chennai', '2109270005', '1', '2', 'upload_files/candidate_tracker/11554158640_Syed Nathimullah full stack developer.pdf', NULL, '1', '2021-09-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'we are looking for fresher, has 1yr in ui and 1yr in fullstack 17k, expt is 25k, knows the concept but right. terms and conditions and salary details not shared.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-27 06:32:19', 1, '2021-09-27 06:52:54', 0, NULL, 1),
(6460, 'YUVARAJ K', '2', '8428368204', '', 'yuvarajk1615@gmail.com', '2001-03-16', 20, '2', '2', 'N.KALIYAPERUMAL', 'Private', 70000.00, 4, 0.00, 20000.00, 'Chennai', 'Chennai', '2109270006', '1', '1', 'upload_files/candidate_tracker/80491097218_resume yuva-2-3.pdf', NULL, '1', '2021-10-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-27 07:10:57', 1, '2021-09-28 12:07:05', 0, NULL, 1),
(6461, 'Joe Thomas', '6', '7012382570', '', 'joethomas552@gmail.com', '1997-02-21', 24, '4', '2', 'Jose Thomas', 'Student', 20000.00, 1, 0.00, 20000.00, 'Thrissur', 'Chennai', '2109280001', '', '1', 'upload_files/candidate_tracker/25414866399_Joe_Thomas_Uruvath.pdf', NULL, '1', '2021-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-28 10:15:06', 1, '2021-09-28 10:20:58', 0, NULL, 1),
(6462, 'r.prakash', '20', '8825610487', '', 'prakashravichandran@gmail.com', '1998-03-17', 23, '2', '2', 'ravichandran', 'courier', 8000.00, 2, 0.00, 10000.00, 'tiruvallur', 'Thiruvallur', '2109280002', '1', '1', 'upload_files/candidate_tracker/89745901098_Prakash_Resume.pdf', NULL, '2', '2021-09-27', 0, '', '3', '59', '2021-10-04', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location in cash mode. Candidate seems to be Doubtful, he looks for travel allowances and all.', '5', '1', '', '4', '6', '', '2', '2021-09-29', '1', '2', 'Offer Mail Sent, candidate need to share the required details - Candidate is not ready to join us on 4th Oct due to some personal work.requesting 10 days of time to join.Not sure whether he will join us or not', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-28 11:16:18', 60, '2021-10-04 10:04:37', 0, NULL, 1),
(6463, 'Lokeshwaran A', '23', '9600590837', '8072599739', 'alokesh3398@gmail.com', '1998-03-03', 23, '2', '2', 'Angalan S', 'Nil', 15000.00, 1, 0.00, 10000.00, 'Pondicherry', 'Chennai', '2109280003', '1', '1', 'upload_files/candidate_tracker/88625308234_Lokeshwaran_CV.pdf', NULL, '1', '2021-09-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Doesnt Knows Basics In Ui/Ux, From Pondy Will Not Suite For our process.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-28 11:28:16', 1, '2021-09-28 11:32:35', 0, NULL, 1),
(6464, 'Ragul M', '2', '6374436566', '9486914419', 'mragul183@gmail.com', '2000-03-18', 21, '2', '2', 'Muthaiyan K', 'Labour', 8000.00, 1, 0.00, 8000.00, 'Kumbakonam', 'Chennai', '2109280004', '1', '1', 'upload_files/candidate_tracker/49396265880_Ragul_resume.pdf', NULL, '1', '2021-09-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '6m course and doesnt knows bsics and very dull,  terms and conditions not shared with candidate. ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-28 12:16:19', 7, '2021-09-29 12:02:12', 0, NULL, 1),
(6465, 'R.nanndhini', '4', '8925135383', '9790776804', 'nandhinibm8@g', '2000-05-06', 21, '2', '1', 'Bala', 'Housewife', 12000.00, 1, 0.00, 15000.00, 'Addar', 'Adyar', '2109280005', '1', '1', 'upload_files/candidate_tracker/23714821409_2021_09_28 12_43 Office Lens.pdf', NULL, '1', '2021-09-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, married 2yrs b4, 10-12k, husband in tvs as boff. avg profile, willing to work.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-28 12:46:13', 1, '2021-09-28 12:54:37', 0, NULL, 1),
(6466, 'Varsha S', '23', '7397349997', '', 'varshsha24@gmail.com', '2000-02-13', 21, '2', '2', 'C.Sivakumar', 'Senior Creative Artist', 45000.00, 1, 0.00, 15000.00, 'K.k.nagar', 'K.k.nagar', '2109280006', '1', '1', 'upload_files/candidate_tracker/87734104205_Varsha Resume (1) (1).pdf', NULL, '1', '2021-09-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, done 6m online course and knows basics in ux, expt is 15k.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-28 12:46:35', 1, '2021-09-28 12:53:52', 0, NULL, 1),
(6467, 'logeshwari T', '4', '9790853776', '7299552998', 'sureshmathew9597@gmail.com', '1998-06-13', 23, '3', '2', 'Thiruvengadan S', 'Electrician', 20000.00, 1, 16000.00, 16500.00, 'Perambur', 'Perambur', '2109280007', '', '2', 'upload_files/candidate_tracker/96193301790_ah5fv-4k3wr.pdf', NULL, '1', '2021-09-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 3yr exp in sales-credit card, expt 17-18k, will not suite for our process.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-28 01:04:00', 1, '2021-09-28 01:13:35', 0, NULL, 1),
(6468, '', '0', '8148948098', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109280008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-28 01:37:55', 0, NULL, 0, NULL, 1),
(6469, 'Elavarasan A', '23', '9600895728', '8072685016', 'elavarasan0816@gmail.com', '1998-11-08', 22, '2', '2', 'Parvady A', 'Nil', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2109280009', '1', '1', 'upload_files/candidate_tracker/8948185971_ELA CV(1).pdf', NULL, '1', '2021-09-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher, doesnt knows basics in ui/ux, from pondy will not suite for our process.  ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-28 03:10:33', 1, '2021-09-28 03:20:38', 0, NULL, 1),
(6470, 'Nilesh muhilan A S', '4', '7339318086', '9965149656', 'muhilannilesh48@gmail.com', '2000-08-01', 21, '3', '2', 'Saravanakumar A T', 'Agriculturist', 80000.00, 1, 0.00, 16000.00, 'Anaimalai', 'Anaimalai', '2109290001', '', '1', 'upload_files/candidate_tracker/13606647755_Resume by Nilesh.pdf', NULL, '1', '2021-09-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'from pollachi, fresher expt is 16k, no convincing and sales skill. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-29 10:34:42', 1, '2021-09-29 10:44:39', 0, NULL, 1),
(6471, 'B u preethi', '4', '7200963814', '9944596686', 'Bupreethi01@gmail.com', '2000-06-23', 21, '2', '2', 'B g umapathy', 'Housewife', 12000.00, 3, 0.00, 12000.00, 'Tiruttani', 'Kk Nagar', '2109290002', '1', '1', 'upload_files/candidate_tracker/86024423484_18.09.2021 Employment News - Date Wise-.pdf', NULL, '1', '2021-09-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not turned up', '1', '1', '0', '1', '1', '0', '2', '2021-10-04', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-29 10:57:08', 1, '2021-09-29 11:04:40', 0, NULL, 1),
(6472, '', '0', '7397445882', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109290003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-29 02:59:50', 0, NULL, 0, NULL, 1),
(6473, 'S . Balamurugan', '13', '8309419479', '', 'balatech2015@gmail.com', '1997-12-28', 23, '2', '2', 'P. Sundar', 'Business', 25000.00, 4, 0.00, 15000.00, 'Adoni', 'Adoni', '2109290004', '1', '1', 'upload_files/candidate_tracker/13283057659_BalaResumeupt.pdf', NULL, '2', '2021-10-06', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-29 03:06:29', 1, '2021-09-29 03:14:01', 0, NULL, 1),
(6474, '', '0', '7398445882', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109290005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-29 03:13:49', 0, NULL, 0, NULL, 1),
(6475, 'Bharath N', '23', '9894722642', '9626123275', 'bharathnbs01@gmail.com', '1997-03-24', 24, '2', '2', 'Nanthagopal', 'Former', 20000.00, 1, 0.00, 15000.00, 'CHEYYUR', 'CHEYYUR', '2109290006', '1', '1', 'upload_files/candidate_tracker/43825874688_bharathresume-converted.pdf', NULL, '1', '2021-10-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher, portfolio is below avg, expt 15k, okay with company norms, interested in uI and very basic knowledge in ux and ui too.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-29 03:58:36', 1, '2021-09-29 04:05:50', 0, NULL, 1),
(6476, '', '0', '6374869645', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109290007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-29 04:53:04', 0, NULL, 0, NULL, 1),
(6477, '', '0', '7995617150', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109290008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-29 06:24:00', 0, NULL, 0, NULL, 1),
(6478, 'Mukeshkumar R', '13', '9176212255', '6380990699', 'mukeshramalingam51@gmail.com', '1999-08-04', 22, '2', '2', 'Ramalingam M', 'Doctor', 70000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2109300001', '1', '1', 'upload_files/candidate_tracker/6961667747_Mukeshkumar Ramalingam.pdf', NULL, '1', '2021-10-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-30 11:22:42', 1, '2021-09-30 11:25:56', 0, NULL, 1),
(6479, 'Yasar', '4', '9677104700', '', 'yasarahamed21@gmail.com', '1992-04-21', 29, '3', '2', 'Kareem', 'Tneb', 100000.00, 1, 0.00, 18000.00, 'avadi Chennai', 'avadi Chennai', '2109300002', '', '2', 'upload_files/candidate_tracker/58811806441_Yasarahamed_Resume_updated.docx', NULL, '1', '2021-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Credit Card Sales Exp.Frequent Job Changer,not open for Field Sales,looking only for the CRM level and his exp salary is min 15K.Will not sustain and handling pressure doubtful', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-30 12:42:57', 60, '2021-10-19 03:26:49', 0, NULL, 1),
(6480, '', '0', '7032426776', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109300003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-30 02:16:23', 0, NULL, 0, NULL, 1),
(6481, '', '0', '9566869340', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-03 04:05:44', 0, NULL, 0, NULL, 1),
(6482, 'F. Vijay Stephen', '4', '7358517270', '8248832246', 'vijaystephen246@gmail.com', '1995-06-24', 26, '2', '2', 'Francis Xavior', 'Car Driver', 20000.00, 2, 15000.00, 15000.00, 'Mylapore', 'Mylapore', '2110040001', '1', '2', 'upload_files/candidate_tracker/25485315953_VIJAY 2021 New.docx', NULL, '1', '2021-10-04', 0, '', '3', '59', '2021-10-05', 126000.00, '', '3', '2022-01-03', '1', 'Selected for Muthu Team in Cash mode, no graduation, only 12th  long experiences in Event Management.only 8 months exp in telecall, let us try  but 5050', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent, Candidate need to share the required details in the sheet', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-04 10:16:46', 50, '2021-10-05 10:42:42', 0, NULL, 1),
(6483, '', '0', '9360383930', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110040002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-04 10:47:51', 0, NULL, 0, NULL, 1),
(6484, 'Sujeet Kumar', '4', '6299370840', '7631568434', 'sraj43480@gmail.com', '1999-06-18', 22, '4', '1', 'Arjun paswan', 'Student', 60000.00, 3, 0.00, 20000.00, 'At+Po- chakla P. S- baheri darbhanga Bihar847201', 'Usman road, channei17', '2110040003', '', '1', 'upload_files/candidate_tracker/20517768346_my resume 1.docx', NULL, '3', '2021-10-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-04 10:53:54', 1, '2021-10-04 12:03:35', 0, NULL, 1),
(6485, 'K.Hemanathan', '4', '7092827927', '8072711560', 'hemanathcharlie27@gmail.com', '1998-09-27', 23, '1', '2', 'S.kumar,k.kumari', 'Driver', 150000.00, 1, 0.00, 120000.00, 'Thiruttani', 'Thiruttani', '2110040004', '', '1', 'upload_files/candidate_tracker/80499817491_Document.pdf', NULL, '1', '2021-10-04', 0, 'R55564', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Didnxquott turn  with his response, Even tried reaching him to get his confirmation but no response', '1', '1', '0', '1', '3', '0', '2', '2021-10-05', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-04 12:23:46', 1, '2021-10-04 12:32:49', 0, NULL, 1),
(6486, 'K .SUBASH', '4', '8825764692', '9786040569', 'Subashbs376@gmail.com', '1999-08-20', 22, '1', '2', 'R. Krishnan', 'Farmer', 6000.00, 1, 0.00, 13000.00, 'Tiruttani', 'Tiruttani', '2110040005', '', '1', 'upload_files/candidate_tracker/25815738122_SUBASH K Resume.docx', NULL, '1', '2021-10-04', 0, 'R55564', '3', '59', '2021-10-07', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur location, Communication is Good. but long stay from the candidate is doubtful. He is from EEE background but he  focus much into the IT openings. Selected in Cash mode', '1', '1', '', '1', '3', '', '2', '2021-10-04', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-10-04 12:23:59', 60, '2021-10-04 06:53:27', 0, NULL, 1),
(6487, 'Vijay babu B', '4', '9789322967', '9080092967', 'Yajivvijay29@gmail.com', '2000-04-14', 21, '4', '2', 'Balaji B', 'Painter', 15000.00, 1, 0.00, 10500.00, 'No 2 semathemman new coloney perambur chennai 12', 'Thuraipakkam', '2110040006', '', '1', 'upload_files/candidate_tracker/43066193312_RESUME- VIJAY BABU B.pdf', NULL, '1', '2021-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-04 12:30:15', 1, '2021-10-04 01:17:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6488, 'Lokesh', '4', '9789226339', '9655295115', 'Lokeshkumard17@gmail.con', '2000-07-28', 21, '1', '2', 'K dhamodharan', 'Business', 150000.00, 1, 0.00, 120000.00, 'Tiruttani', 'Thiruttani', '2110040007', '', '1', 'upload_files/candidate_tracker/11001804972_lokesh.3.docx', NULL, '1', '2021-10-04', 0, 'R55567', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'discussed and projected the salary,. need to get his confirmation. Tried couple of times but there is no response from the candidate', '1', '1', '0', '1', '1', '0', '2', '2021-10-05', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-04 12:37:37', 1, '2021-10-04 12:52:42', 0, NULL, 1),
(6489, '', '0', '6374083104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110040008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-04 12:50:03', 0, NULL, 0, NULL, 1),
(6490, 'Sneha R', '13', '8428354373', '9677030567', 'Snehasubhi9922@gmail.com', '2000-05-24', 21, '2', '2', 'Ramesh J', 'Tailor', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2110040009', '1', '1', 'upload_files/candidate_tracker/8323339633_CV_2021-09-30-051626.pdf', NULL, '1', '2021-10-06', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-04 02:13:40', 1, '2021-10-04 02:17:15', 0, NULL, 1),
(6491, 'nandhini', '23', '8248207287', '', 'maharajanandhini@gmail.com', '1998-10-23', 22, '2', '2', 'maharaja', 'farmer', 15000.00, 1, 0.00, 20000.00, 'Perambalur', 'Perambalur', '2110040010', '1', '1', 'upload_files/candidate_tracker/93831435022_resume-converted-compressed.pdf', NULL, '1', '2021-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-04 02:22:18', 1, '2021-10-06 03:27:45', 0, NULL, 1),
(6492, 'M Mohanavel', '13', '6382840661', '8870511241', 'mohan.santhosh1205@gmail.com', '2000-05-12', 21, '3', '2', 'P Muthusamy', 'Business', 25000.00, 2, 0.00, 15000.00, 'Namakkal (DT)', 'Namakkal (DT)', '2110040011', '', '1', 'upload_files/candidate_tracker/13002341700_M MOHANAVEL Resume.PDF', NULL, '1', '2021-10-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, will learn and come.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-04 02:33:00', 1, '2021-10-04 02:37:13', 0, NULL, 1),
(6493, 'Mathiyazhagan S', '4', '9655717737', '9362152446', 'ksmathi6595@gmail.com', '1995-05-06', 26, '4', '2', 'Saravanan k', 'Agriculture', 20000.00, 2, 0.00, 12000.00, 'Cuddalore', 'Tambaram', '2110040012', '', '1', 'upload_files/candidate_tracker/22019049070_resume 01.pdf', NULL, '3', '2021-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-04 03:48:38', 1, '2021-10-04 03:53:18', 0, NULL, 1),
(6494, 'DURAISAMY P', '2', '8838810947', '', 'sdurai246@gmail.com', '2000-06-21', 21, '2', '2', 'periyasamy', 'farmer', 7000.00, 0, 0.00, 1.50, 'Cuddalore', 'Cuddalore', '2110040013', '1', '1', 'upload_files/candidate_tracker/66186791682_DURAISAMY P.pdf', NULL, '1', '2021-10-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-04 03:56:08', 1, '2021-10-04 04:14:23', 0, NULL, 1),
(6495, 'GOPALA KRISHNAN', '13', '9842045149', '', 'gopalakrishnan86317@gmail.com', '2001-05-14', 20, '2', '2', 'Kumaran', 'bronze busness', 30000.00, 1, 0.00, 20000.00, 'kumba konam', 'kumba konam', '2110040014', '1', '1', 'upload_files/candidate_tracker/38744711155_gopala krishnan.pdf', NULL, '1', '2021-10-18', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'If rejected because donxquott answering a basic php and mysql questions,', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-04 05:25:05', 50, '2021-10-18 11:17:57', 0, NULL, 1),
(6496, 'Aravinth Mani', '2', '9677447328', '9994778516', 'aravinthmani44@gmail.com', '1999-07-21', 22, '2', '2', 'M.Mani', 'Agriculture', 20000.00, 3, 0.00, 10000.00, 'Tirunelveli', 'Chennai', '2110040015', '1', '1', 'upload_files/candidate_tracker/63009469990_RESUME OF ARAVINTH.pdf', NULL, '2', '2022-02-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, no basic knowledge in terms of technical, job need so told him to learn and get back.', '2', '1', '', '1', '1', '', '2', '2022-02-21', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2021-10-04 05:40:18', 84, '2022-02-23 03:38:58', 0, NULL, 1),
(6497, 'Subasree s', '4', '9884995744', '', 'Subhasbca1995@gmail.com', '1995-03-15', 26, '2', '2', 'Sivasami K', 'Farmer', 12000.00, 0, 13500.00, 135000.00, 'Manarkudi', 'Vadapalani', '2110050001', '1', '2', 'upload_files/candidate_tracker/73684802632_subha updated resume.pdf', NULL, '1', '2021-10-05', 0, '', '3', '59', '2021-10-18', 144000.00, '', '3', '2022-02-01', '2', 'Selected for Thanjavur Location in Cash mode, Will get relieve from her current company this week only', '1', '2', '', '1', '1', '', '2', '2021-10-07', '2', '9', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-10-05 11:47:12', 60, '2021-10-16 10:34:08', 0, NULL, 1),
(6498, 'Prema B', '5', '9092250427', '6369034399', 'premabakthavachalam12@gmail.com', '1998-12-13', 22, '1', '2', 'Bakthavachalam T', 'Tailor', 120000.00, 1, 0.00, 15000.00, 'nerkundram', ',nerkundram,chennai-600107', '2110050002', '', '2', 'upload_files/candidate_tracker/14021444856_0_Resume.pdf', NULL, '1', '2021-10-05', 0, 'Azar', '4', '29', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, no relevant Expr in Sales. Internal Team Reference. Check for RM/E sales', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-05 12:07:26', 1, '2021-10-05 12:16:35', 0, NULL, 1),
(6499, 'Nivetha', '4', '7904948431', '9003174089', 'Nivethanive0106@gamil.com', '1999-05-22', 22, '2', '2', 'Varadharajan', 'Watchman', 3000.00, 2, 0.00, 13000.00, 'Mylapore', 'Mylapore', '2110050003', '1', '1', 'upload_files/candidate_tracker/84992945776_Adobe Scan Sep 24, 2021.pdf', NULL, '1', '2021-10-05', 0, '', '8', '13', NULL, 0.00, '', '0', NULL, '2', 'not attend the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-10-05 12:08:22', 1, '2021-10-05 12:16:49', 0, NULL, 1),
(6500, 'S.RAMPRAKASH', '4', '7358279607', '7358233067', 'raprsh1994@gmail.com', '1994-05-23', 27, '2', '2', 'R.SIVAKUMAR', 'MARKETING MANAGER', 25000.00, 1, 12000.00, 13000.00, 'chennai', 'chennai', '2110050004', '1', '2', 'upload_files/candidate_tracker/42619314308_RAM.PDF', NULL, '1', '2021-10-05', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not fit for telesales', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-10-05 12:35:35', 1, '2021-10-05 12:40:01', 0, NULL, 1),
(6501, 'Gounipalli Jaswanth kumar', '2', '8317640560', '8317640569', 'jaswanthkumargjk999@gmail.com', '1999-07-16', 22, '2', '2', 'G Pullaiah', 'Farmer', 30000.00, 0, 0.00, 250000.00, 'Kadapa', 'Chennai', '2110050005', '1', '1', 'upload_files/candidate_tracker/28152766333_Jaswanth kumar.pdf', NULL, '1', '2021-10-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Not much comfortable with TxxampC. Need time to check with Family', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-05 03:51:49', 1, '2021-10-05 04:10:46', 0, NULL, 1),
(6502, 'Hariharan k', '2', '7358544304', '8668100335', 'hari17399.hk@gmail.com', '1999-03-17', 22, '2', '2', 'Kalijothi', 'Work in company', 8000.00, 2, 0.00, 15000.00, '6/103, bharathiyar st , Pudupakkam, chengalpattu.', '6/103, Bharathiyar St , Pudupakkam, Chengalpattu.', '2110050006', '1', '1', 'upload_files/candidate_tracker/87172519724_Hari resume.pdf', NULL, '1', '2021-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, too long around 62 kms up and down. Will not sustain for a long', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-05 04:03:55', 60, '2021-10-11 10:49:09', 0, NULL, 1),
(6503, 'g.jeevan kumar', '2', '6302801087', '8317640560', 'jeevankumar8179@gmail.com', '1998-07-14', 23, '2', '2', 'G Pullaiah', 'Farmer', 30000.00, 1, 0.00, 250000.00, 'Kadapa', 'chennai', '2110050007', '1', '1', 'upload_files/candidate_tracker/52219759586_Jeevan kumar Resume.pdf', NULL, '1', '2021-10-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Not Much Comfortable With TxxampC. Need Time To Check With Family', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-05 04:17:04', 1, '2021-10-05 04:20:54', 0, NULL, 1),
(6504, 'Pavithra R', '2', '8072632509', '', 'rajanpavithra19@gmail.com', '2000-04-19', 21, '2', '2', 'I.Rajan', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2110050008', '1', '1', 'upload_files/candidate_tracker/76874142955_pavi resume4.docx', NULL, '1', '2021-10-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-05 04:41:55', 1, '2021-10-05 04:57:25', 0, NULL, 1),
(6505, 'H. Assumpta Hebsheeba', '2', '8825698401', '', 'hebsheeba68@gmail.com', '1999-08-15', 22, '2', '2', 'T. Henry', 'Fisherman', 10000.00, 1, 0.00, 20000.00, 'Kanniyakumari', 'Chennai', '2110050009', '1', '1', 'upload_files/candidate_tracker/20726631699_Assumpta Hebsheeba.docx', NULL, '1', '2021-10-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-05 04:47:51', 1, '2021-10-05 04:56:47', 0, NULL, 1),
(6506, 'Bhuvaneshwar', '2', '9087049229', '', 'bhuvaneshwar.cp@gmail.com', '1998-01-19', 23, '2', '2', 'Chellapandian', 'Business', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2110060001', '1', '1', 'upload_files/candidate_tracker/51830036665_BHUVANESHWAR_C.pdf', NULL, '1', '2021-10-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, already doing his internship and 5k . 6m internship and completed 2m. small company and not willing to join there. no basic knowledge in tech skills. expt 2L. not okay with agreement. ', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-06 09:14:27', 50, '2021-10-08 12:09:02', 0, NULL, 1),
(6507, 'P. Priya', '4', '6380197395', '9361135465', 'priyaapitchaiya@gmail.com', '2000-04-21', 21, '2', '2', 'Pitchaiya. M', 'Farmer', 25000.00, 2, 0.00, 10000.00, '1/236, Vilar, Adidravidar Street', 'Vilar, Thanjavur-613006.', '2110060002', '1', '1', 'upload_files/candidate_tracker/68352757535_priya.pdf', NULL, '1', '2021-10-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'wrongly updated , by mistake rejected not performing well and not suite for telesales ,,,n voice clarity', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-06 10:48:51', 50, '2021-10-06 11:08:05', 0, NULL, 1),
(6508, 'prajitha', '4', '9962668320', '9597027296', 'bosspraji98@gamill.com', '1998-08-09', 23, '2', '2', 'c.rajan', 'teashop', 60000.00, 1, 0.00, 13500.00, 'thiruvallur', 'thiruvallur', '2110060003', '1', '1', 'upload_files/candidate_tracker/29789193892_Adobe Scan Apr 06, 2021.pdf', NULL, '1', '2021-10-06', 0, '', '3', '59', '2021-10-07', 144000.00, '', '6', '2021-11-02', '2', 'Selected for Tiruvallur Location in Cash mode. Candidate Communication is good  and have store Sales exp along with Telesales Exp.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '3', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-06 10:58:45', 60, '2021-10-06 03:21:18', 0, NULL, 1),
(6509, 'Abhiramasundari', '4', '9940421705', '9025000473', 'abhiramasundari05@gmail.com', '1996-06-22', 25, '2', '2', 'Kalyana sundaram', 'Expired', 50000.00, 4, 13500.00, 18000.00, 'Kumbakonam', 'Chennai', '2110060004', '1', '2', 'upload_files/candidate_tracker/83094045167_Resume of Abhi.pdf', NULL, '2', '2021-10-06', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Experience in Credit Card/Vodafone /Kotak Health Insurance Sales. Seems to have an attitude, Holding multiple offers and look for some more. Sustainability Doubts. please do check your suitability', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-06 11:04:24', 50, '2021-10-06 11:29:45', 0, NULL, 1),
(6510, 'Jayashri k', '4', '7358997244', '9786151363', 'jayashrikamaraj98@gmail.com', '1998-09-20', 23, '2', '2', 'Kamaraj k', 'Post man', 25000.00, 3, 9000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2110060005', '1', '2', 'upload_files/candidate_tracker/39781491900_0_Jayashir resume.pdf', NULL, '1', '2021-10-06', 0, '', '3', '59', '2021-10-07', 120000.00, '', '6', '2021-11-26', '2', 'Selected for Tanjore Location in cash Mode', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-06 11:46:50', 60, '2021-10-06 03:30:29', 0, NULL, 1),
(6511, 'HEMANTH H', '2', '9600055924', '', 'hemanth26800@gmail.com', '2000-08-26', 21, '2', '2', 'HARIDOSS R', 'Carpenter', 15000.00, 0, 0.00, 12000.00, 'CHENNAI', 'CHENNAI', '2110060006', '1', '1', 'upload_files/candidate_tracker/26807066193_Resume.pdf', NULL, '1', '2021-10-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'candidate didnt turn on the day of joining as we commit with him', '2', '1', '0', '1', '1', '0', '2', '2021-10-11', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-06 01:24:30', 1, '2021-10-06 01:26:56', 0, NULL, 1),
(6512, '', '0', '6384096313', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110060007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-06 02:08:50', 0, NULL, 0, NULL, 1),
(6513, 'S.Glory', '4', '7305086020', '9789008063', 'glorysundarrajan@gmail.com', '2000-07-01', 21, '2', '2', 'K.Sundarrajan', 'Quality Checker', 10000.00, 2, 0.00, 12000.00, '5/305, nagathaman nagar, nemilicheri', 'Thiruninravur', '2110070001', '1', '1', 'upload_files/candidate_tracker/27051628203_Glory - Resume.docx', NULL, '1', '2021-10-07', 0, '', '3', '59', '2021-10-11', 120000.00, '', '3', '2021-12-02', '2', 'Selected for Tiruvallur Location in Cash Mode-Fresher for telesales-Communication is Good,She much focus into Medical Lab field(long Stay 5050)', '1', '1', '', '1', '1', '', '2', '2021-10-09', '1', '3', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-07 10:46:52', 60, '2021-10-08 05:27:05', 0, NULL, 1),
(6514, 'dilip', '23', '8939697544', '7904135682', 'dilipjaganathan@gmail.com', '1998-02-19', 23, '2', '2', 'c.jaganathan', 'welder', 25000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2110070002', '1', '1', 'upload_files/candidate_tracker/64039545254_Resume.pdf', NULL, '2', '2021-10-11', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Not okay with package and bond', '2', '1', '0', '1', '1', '0', '2', '2021-10-13', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-07 01:34:54', 1, '2021-10-07 01:39:15', 0, NULL, 1),
(6515, 'Anbarasu J', '13', '8667287029', '8608056590', 'Anbarasube96@gmail.com', '1996-07-19', 25, '3', '1', 'Janberi', 'Farmers', 10000.00, 2, 0.00, 20000.00, 'Dharmapuri', 'Chennai,saidhapetai', '2110070003', '', '1', 'upload_files/candidate_tracker/10440862187_Anbarasu smart cv.docx', NULL, '1', '2021-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Career Gap, No basic knowledge will not sustain with us for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-07 01:35:08', 1, '2021-10-07 01:49:32', 0, NULL, 1),
(6516, 'Premkumar Sekar', '23', '9894928037', '', 'premsat69@gmail.com', '1995-06-19', 26, '2', '2', 'sekar', 'ja in labour dept of tamil ndau', 30000.00, 2, 0.00, 400000.00, 'Chennai', 'Chennai', '2110070004', '1', '1', 'upload_files/candidate_tracker/82276079080_Premkumar_Resume_26.pdf', NULL, '1', '2021-10-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-07 03:49:43', 1, '2021-10-07 03:55:23', 0, NULL, 1),
(6517, 'Keerthana baskar', '23', '8682857885', '9092391813', 'Keerthibv2000@gmail.com', '2000-12-12', 20, '2', '2', 'Baskar', 'Painter', 25000.00, 1, 0.00, 50000.00, 'E/164 12th street 2nd cross periyarnagar ch-82', 'E/164 12th Street 2nd Cross Periyarnagar Ch-82', '2110070005', '1', '1', 'upload_files/candidate_tracker/49575390674_02af8222-8667-408b-b1e9-e8533dba7557.pdf', NULL, '1', '2021-10-11', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Not okay with Package and Bond', '2', '1', '0', '1', '1', '0', '2', '2021-10-13', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-07 04:00:28', 1, '2021-10-07 04:11:35', 0, NULL, 1),
(6518, 'vigneshwaran g', '23', '6383293348', '9629898415', 'vikikivy@gmail.com', '1996-04-29', 25, '2', '2', 'mariyammal g', 'house wife', 25000.00, 1, 2.00, 3.00, 'dindigul', 'dindigul', '2110070006', '1', '2', 'upload_files/candidate_tracker/30267900867_Vignesh - UX_UI DESINGER.pdf', NULL, '1', '2021-10-13', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-07 04:09:19', 1, '2021-10-07 04:13:59', 0, NULL, 1),
(6519, '', '0', '9629898415', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110070007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-07 04:29:21', 0, NULL, 0, NULL, 1),
(6520, 'Vignesh k', '4', '6374818769', '', 'vigneshspm34@gmail.com', '2001-08-02', 20, '2', '2', 'kumar', 'farmer', 18000.00, 1, 0.00, 10000.00, 'Thiruvarur', 'thiruvarur', '2110070008', '1', '1', 'upload_files/candidate_tracker/36463720908_null.pdf', NULL, '2', '2021-10-07', 0, '', '3', '59', '2021-10-11', 120000.00, '', '3', '2022-06-06', '2', 'Selected for Tanjore Location in cAsh Mode', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-10-07 06:18:55', 60, '2021-10-08 04:46:42', 0, NULL, 1),
(6521, 'Udhayalakshmo', '23', '9884599086', '8939187495', 'Udhayalakshmo004@gmail.com', '1997-02-06', 24, '2', '2', 'Mahalingam', 'Coolie', 10000.00, 3, 10500.00, 13000.00, 'Chennai', 'Chennai', '2110070009', '1', '2', 'upload_files/candidate_tracker/77946832161_ArunKumar.pdf', NULL, '1', '2021-10-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 yr exp in UX designing but not much skilled,not open for the txxampC, not ready to submit the documents. Will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-07 11:27:37', 1, '2021-10-11 12:10:54', 0, NULL, 1),
(6522, 'Vidhyasakar', '13', '9092938794', '9976013598', 'vidhyasakar9700@gmail.com', '1997-04-06', 0, '2', '2', 'Gunasekaran', 'Car driver', 15000.00, 5, 0.00, 20000.00, 'Srirangam, Trichy', 'Srirangam, Trichy', '2110080001', '1', '1', 'upload_files/candidate_tracker/37499229933_vidhyasakar resume with reference website-converted.pdf', NULL, '1', '2021-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 07:31:23', 1, '2021-10-08 07:31:31', 0, NULL, 1),
(6523, 'Mouleeswaran', '2', '6369525428', '9942860155', 'mouleesjilla235@gmail.com', '2000-09-26', 21, '2', '2', 'Senniyappan', 'Farmer', 8000.00, 0, 0.00, 20000.00, 'Gobichettipalayam, Erode.', 'Gobichettipalayam, Erode.', '2110080002', '1', '1', 'upload_files/candidate_tracker/92680440025_Moulees Resume.pdf', NULL, '2', '2021-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 10:30:51', 1, '2021-10-08 10:43:26', 0, NULL, 1),
(6524, 'gokulnath p', '23', '8056467383', '8870410634', 'gokulmail83@gmail.com', '2000-07-19', 21, '2', '2', 'periasamy p', 'milk secretary', 20000.00, 1, 0.00, 20000.00, 'namakkal', 'urapakkam', '2110080003', '1', '1', 'upload_files/candidate_tracker/28792168894_GOKULNATH_P.pdf', NULL, '1', '2021-10-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Only knowledge in Adobe XD, Figma. Not open to learn new skills of UI, Salary Expectation is very high. Will not sustain with us for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 11:36:54', 1, '2021-10-08 11:50:12', 0, NULL, 1),
(6525, 'Kowsalya.R', '4', '7305556717', '', 'kowsiranganathankowsi@gmail.com', '1999-01-29', 22, '2', '2', 'Panjali', 'Cooli', 20000.00, 5, 10000.00, 13000.00, 'Washermenpet', 'Washermenpet', '2110080004', '3', '2', 'upload_files/candidate_tracker/2805786056_kowsalya.doc', NULL, '1', '2021-10-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'done mcom and prefers non voice and acc and fin job. time being looking for job in voice process. will not sustain. was working in hdb fin for 3m with 10k and expt 12-13k.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-08 12:18:02', 1, '2021-10-08 12:38:10', 0, NULL, 1),
(6526, 'Jothi meena.D', '4', '7871600510', '8608844915', 'jothimeena8898@gmail.com', '1998-08-08', 23, '2', '2', 'Dilli babu.M', 'cooli', 15000.00, 1, 10000.00, 12000.00, 'Washermenpet', 'Washermenpet', '2110080005', '3', '2', 'upload_files/candidate_tracker/8601023788_jo.pdf', NULL, '1', '2021-10-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Was Working In Hdb Fin For 3m With 10k And Expt 13-15k. will not handle sales pressure.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-08 12:19:00', 1, '2021-10-08 12:39:10', 0, NULL, 1),
(6527, 'R dhanalakshmi', '4', '8610037180', '7010993014', 'dhanasingam52@gmail.com', '1999-04-14', 22, '2', '1', 'Raja singam', 'Banking', 20000.00, 1, 12000.00, 15000.00, '15000', 'Chennai', '2110080006', '3', '2', 'upload_files/candidate_tracker/23106036133_PDF Gallery_20211008_123842.pdf', NULL, '1', '2021-10-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1 ye exp in calling and 3yr exp in backend. will not suite for sales profile and handle pressure. expt is 13k.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-08 12:20:02', 1, '2021-10-08 12:41:37', 0, NULL, 1),
(6528, 'rajesh kanna s', '4', '7402666280', '', 'rajeshkanna10121996@gmail.com', '1996-12-10', 24, '2', '2', 'sankar raj', 'working', 50000.00, 1, 0.00, 16000.00, 'chennai', 'chennai', '2110080007', '1', '1', 'upload_files/candidate_tracker/31223846459_New RAJESH KANNA CV.pdf', NULL, '1', '2021-10-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-10-08 12:56:17', 1, '2021-10-08 12:58:46', 0, NULL, 1),
(6529, 'Abishek s', '22', '9600043264', '9382730876', 'abishek9380@gmail.com', '1999-09-17', 22, '2', '2', 'Sekar', 'Daily wages', 300000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2110080008', '1', '1', 'upload_files/candidate_tracker/30153873957_the new resume.pdf', NULL, '1', '2021-10-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 01:17:03', 1, '2021-10-08 01:25:19', 0, NULL, 1),
(6530, 'Rajesh S', '23', '6369229180', '', 'Rajeshnpl321@gmail.com', '1997-06-11', 24, '2', '2', 'Sundaramoorthy', 'Farmer', 8000.00, 1, 15000.00, 20000.00, 'Jayankondam', 'Chennai', '2110080009', '1', '2', 'upload_files/candidate_tracker/70521388184_Rajesh naukri ui ux.pdf', NULL, '1', '2021-10-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Around 1.9 yrs exp in UX designing,frequent Job changer changed 2 companies and the salary expectation is very high.Not much comfortable with TxxampC,Sustainability Doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 03:50:28', 1, '2021-10-08 03:55:43', 0, NULL, 1),
(6531, 'sharon.j', '22', '7904894966', '9600196581', 'jeraldxavier1@gmail.com', '1999-08-03', 22, '2', '2', 'jerald', 'none', 30000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2110080010', '1', '1', 'upload_files/candidate_tracker/42530219428_RESUME (1).pdf', NULL, '1', '2021-10-12', 0, '', '3', '59', '2021-10-18', 96000.00, '', '0', NULL, '1', 'Selected for digital Marketing Profile with 6 months intern then 2.6 yrs service overall 3 yrs SA.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 03:55:35', 1, '2021-10-08 04:41:27', 0, NULL, 1),
(6532, 'Ezhilarasan P', '22', '6380993941', '', 'ezhilarasan3139@gmail.com', '1999-09-13', 22, '2', '2', 'palanimuthu', 'nlc employee', 55000.00, 2, 0.00, 350000.00, 'Cuddalore', 'neyveli', '2110080011', '1', '1', 'upload_files/candidate_tracker/3473986223_EZHILARASAN.P.pdf', NULL, '1', '2021-10-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 03:58:18', 1, '2021-10-08 04:23:18', 0, NULL, 1),
(6533, 'S ThambiReddy', '20', '9704105880', '8247486476', 'seelamkiran55@gmail.com', '1999-01-12', 22, '4', '2', 'S. KISHORE REDDY', 'student', 200000.00, 1, 0.00, 25000.00, 'Khammam', 'Khammam', '2110080012', '', '1', 'upload_files/candidate_tracker/97718439897_ThambiReddy Resume (3).pdf', NULL, '2', '2021-10-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate need another 2 months to  start his career, His mother is not comfortable to allow him to go for work now.Dropped his profile', '5', '1', '', '3', '4', '', '2', '2021-10-24', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-08 04:07:28', 50, '2021-10-08 04:23:57', 0, NULL, 1),
(6534, 'Saranbose N', '13', '9788484520', '6380213964', 'saranm2211@gmail.com', '1999-05-07', 22, '2', '1', 'K.nageshwaran', 'Farmer', 10000.00, 1, 0.00, 50000.00, 'Virudhunagar', 'Virudhunagar', '2110080013', '1', '1', 'upload_files/candidate_tracker/47050937949_SARAN RESUME-2.pdf', NULL, '1', '2021-10-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 05:39:49', 1, '2021-10-08 05:57:53', 0, NULL, 1),
(6535, 'mohamed tawfeek', '22', '6374735696', '', 'tawfeek37988@gmail.com', '1998-04-15', 23, '2', '2', 'abdul rahman', 'business', 25000.00, 0, 0.00, 18000.00, 'thanjavur', 'chennai', '2110090001', '1', '1', 'upload_files/candidate_tracker/23086191424_Tawfeek-Resume.pdf.pdf', NULL, '1', '2021-10-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-10-09 09:12:40', 1, '2021-10-09 09:22:55', 0, NULL, 1),
(6536, 'Sivasakthi.m', '20', '9360437367', '9597390066', 'sivasakthi72767@gmail.com', '1999-05-30', 22, '1', '2', 'Shanthi (mother)', 'House wife', 20000.00, 2, 10500.00, 13000.00, 'Dharmapuri', 'Vadapalani', '2110090002', '', '2', 'upload_files/candidate_tracker/56471965041_RESUME sivasakthi 2021.docx', NULL, '3', '2021-10-09', 30, '2110090002', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate communciation is Good have Exp in Matrimony Telecall. He is having health issue(Taking treatment for TB. We are dropping this candidate because of the health issue', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-10-09 09:53:41', 1, '2021-10-09 09:59:10', 0, NULL, 1),
(6537, 'Niraimathi A', '4', '9944481163', '8870730422', 'niraimech3322@gmail.com', '1995-12-20', 25, '3', '2', 'Arokiyasamy S', 'CRC conductor', 10000.00, 3, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2110090003', '', '1', 'upload_files/candidate_tracker/84947986930_My resume.pdf', NULL, '1', '2021-10-09', 0, '', '3', '59', '2021-10-11', 120000.00, '', NULL, '2025-01-18', '2', 'Selected for  Thanjavur Location in Cash mode', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-10-09 11:05:15', 60, '2021-10-09 05:42:06', 0, NULL, 1),
(6538, 'Amarnath p', '4', '8489391174', '9952711123', 'Amarnathpklr19@gmail.com', '1998-02-19', 23, '1', '2', 'Perumal', 'former', 15000.00, 1, 12000.00, 18000.00, 'Krishnagiri', 'kodampakkam', '2110090004', '', '2', 'upload_files/candidate_tracker/38545278249_RESUME-NEW-converted (4) (1)-converted-2.docx', NULL, '2', '2021-10-09', 0, 'P522', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-09 12:55:47', 1, '2021-10-09 01:16:03', 0, NULL, 1),
(6539, '', '0', '6380150549', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110090005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-09 01:57:57', 0, NULL, 0, NULL, 1),
(6540, 'Vignesh waran', '22', '8248575730', '', 'vigneshvicky220399@gmail.com', '1999-03-22', 22, '2', '2', 'Venkatesan', 'madipakkam  chennai', 2.60, 2, 0.00, 1.50, 'madipakkam', 'madipakkam', '2110090006', '1', '1', 'upload_files/candidate_tracker/30365427853_Vignesh - Resume.pdf', NULL, '1', '2021-10-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-09 03:36:15', 1, '2021-10-09 03:43:48', 0, NULL, 1),
(6541, 'Rahul R', '22', '7010845733', '', 'rahulravi877@gmail.com', '2000-07-15', 21, '2', '2', 'Ravi', 'Wireman', 30000.00, 1, 0.00, 200000.00, '42/40, Ponniamman Kovil Street, Kottur', '42/40, Ponniamman Kovil Street, Kottur', '2110090007', '1', '1', 'upload_files/candidate_tracker/89601607829_Rahul01.pdf', NULL, '1', '2021-10-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-10-09 03:49:20', 1, '2021-10-09 03:55:00', 0, NULL, 1),
(6542, 'Kaviya', '4', '8056751596', '', 'Kaviyaasokan8056@gmail.com', '1999-06-15', 22, '4', '2', 'Asokan', 'Coli', 20000.00, 3, 12500.00, 10500.00, '3276,arulantha nagar pudukottai road, thanjavur', '3276,arulanthan nagar pudukottai road, thanjavur', '2110090008', '', '2', 'upload_files/candidate_tracker/74050827980_Kaviya RESUME-1.pdf', NULL, '3', '2021-10-09', 1, '', '3', '59', '2021-10-11', 126000.00, '', '4', '2022-03-09', '2', 'Selected for Thanjavur Location in  Cash mode.Not much relevant Exp,she has experiences working in chennai,due to health condition. she focus in her native location', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-10-09 05:30:48', 60, '2021-10-11 09:57:04', 0, NULL, 1),
(6543, 'BHARATH.R', '22', '8610350472', '', 'bharathram0699@gmail.com', '1999-06-11', 22, '2', '2', 'Ramar.G', 'Business', 200000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2110090009', '1', '1', 'upload_files/candidate_tracker/65064223505_CV MIN.pdf', NULL, '1', '2021-10-11', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'No response from candidate', '2', '1', '0', '1', '1', '0', '2', '2021-10-13', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-09 05:47:46', 1, '2021-10-09 05:59:34', 0, NULL, 1),
(6544, '', '0', '9566198164', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110090010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-09 06:48:02', 0, NULL, 0, NULL, 1),
(6545, 'Azhagumeena. T', '4', '9344065393', '', 'Ksaravanan53@gmail.com', '1995-10-15', 25, '3', '1', 'S. T. Thangathiruppathi', 'Working on Re showroom', 20000.00, 1, 0.00, 12000.00, 'Manavalanagar', 'Manavalanagar', '2110110001', '', '1', 'upload_files/candidate_tracker/81360557223_saravanan Copy.pdf', NULL, '1', '2021-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '6', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-11 09:39:38', 1, '2021-10-11 10:23:10', 0, NULL, 1),
(6546, '', '0', '9994224859', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110110002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-11 11:16:59', 0, NULL, 0, NULL, 1),
(6547, '', '0', '9551881658', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110110003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-11 01:42:29', 0, NULL, 0, NULL, 1),
(6548, 'Deepika T', '5', '6379010979', '8825515372', 'deepupapa7@gmail.com', '2000-04-03', 21, '1', '2', 'R. Thiyagarajan', 'Cooli', 8000.00, 2, 0.00, 19000.00, 'No 43/16 vadivel street , Perambur chennai 600011', 'Chennai', '2110120001', '', '1', 'upload_files/candidate_tracker/49827592115_5_6102886362812252955.pdf', NULL, '1', '2021-10-12', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok but the candidate much prefer for non voice only, will not suits for our sakes.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-12 10:32:06', 1, '2021-10-12 10:36:39', 0, NULL, 1),
(6549, '', '0', '8489132842', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110120002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-12 01:13:41', 0, NULL, 0, NULL, 1),
(6550, 'sanjay kumar', '6', '9677202376', '', 'ksanjay02444@gmail.com', '2006-10-13', 0, '2', '2', 'dhanapal', 'technician', 30000.00, 1, 0.00, 12000.00, 'perungudi', 'perungudi', '2110130001', '1', '1', 'upload_files/candidate_tracker/18204096999_RESUME -converted.pdf', NULL, '1', '2021-10-13', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'Not Fit', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-10-13 09:57:55', 1, '2021-10-13 10:01:58', 0, NULL, 1),
(6551, '', '0', '8098986153', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110130002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-13 10:23:06', 0, NULL, 0, NULL, 1),
(6552, 'Ebin Joe', '2', '8754275427', '9344456280', 'ebin.joe14@gmail.com', '1998-04-21', 23, '2', '2', 'lali c', 'driver', 18000.00, 2, 0.00, 3500.00, 'Marthdam', 'Marthdam', '2110130003', '1', '1', 'upload_files/candidate_tracker/30976331455_Ebin-Resume2.pdf', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Mern stack, not open for our TxxampC, he is comfortable only for 2 yrs of SA.will not suits for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-13 10:53:41', 1, '2021-10-13 08:03:01', 0, NULL, 1),
(6553, 'Venkatesh G', '20', '8778392252', '', 'Venkatessvk07@ggmaill.com', '2000-01-07', 21, '2', '2', 'B.Gopinath', 'Tailor', 84000.00, 2, 10500.00, 15000.00, 'Chennai', 'chennai', '2110130004', '1', '2', 'upload_files/candidate_tracker/77584906912_NU720021026056396__Eticket.pdf', NULL, '1', '2021-10-13', 7, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'completed his bsw, no listening and understanding, will not suite for our process, expt is 15k', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-13 11:01:09', 50, '2021-10-13 11:49:23', 0, NULL, 1),
(6554, 'SAKTHIGURUCHITRA M', '4', '7339672765', '8428957197', 'ashaguru13@gmail.com', '1995-04-30', 26, '2', '2', 'MARIMUTHU K', 'Cooli', 15000.00, 1, 0.00, 15000.00, 'Srivilliputtur, Virudhunagar District', 'Adyar, Chennai', '2110130005', '1', '1', 'upload_files/candidate_tracker/98359872884_SAKTHIGURUCHITRA M.pdf', NULL, '1', '2021-10-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'completed her LLb waiting for her placement, doing her online process and will not sustain bcoz expt is 13k min. has 1yr exp in acc opening 15k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-13 11:13:25', 50, '2021-10-13 11:49:36', 0, NULL, 1),
(6555, 'Parvathi. S', '4', '8939581953', '9176840189', 'parvathisathiya3@gmail.c', '1999-12-10', 21, '2', '2', 'Sathiyaseelan', 'Sale Manager, Sale Executive', 20000.00, 0, 18000.00, 20000.00, '33A,7th cross street, V.O.C Nagar, Chennai - 81', '33A,7th Cross Street, V.O.C Nagar, Tondiarpet,', '2110130006', '16', '2', 'upload_files/candidate_tracker/9311063648_CV_2021-08-05-092024.pdf', NULL, '1', '2021-10-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'attitude is not upto the level, no sustainability, 3m in spa and 3m in hdfs absconded due to over pressure. she will not handle sales pressure.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-13 11:16:18', 8, '2021-10-13 12:48:08', 0, NULL, 1),
(6556, 'SASIKALA', '4', '8925131360', '8056960575', 'Sharmicutegal09@Gmail.com', '2002-04-25', 19, '2', '2', 'Thiyagu', 'Telecalling', 20000.00, 0, 17000.00, 17000.00, 'Tondiarpet', 'Tondiarpet', '2110130007', '16', '2', 'upload_files/candidate_tracker/21715363952_sharmi rakesh.docx', NULL, '1', '2021-10-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'during interview was looking in to mobile and using it. will not suite for us and age is 19 and not completed 12th, no sustainability.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-13 11:17:10', 8, '2021-10-13 12:47:53', 0, NULL, 1),
(6557, 'Suganya.E', '4', '8940523047', '', 'Suganyaelangovan19@gmail.com', '1993-04-19', 28, '3', '2', 'Elangovan', 'Security', 10000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2110130008', '', '1', 'upload_files/candidate_tracker/71820983025_Resume  Suganya.pdf', NULL, '1', '2021-10-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-13 11:25:07', 1, '2021-10-13 11:45:33', 0, NULL, 1),
(6558, '', '0', '8939581952', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110130009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-13 11:28:03', 0, NULL, 0, NULL, 1),
(6559, '', '0', '9094673311', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-13 12:41:28', 0, NULL, 0, NULL, 1),
(6560, '', '0', '9710207007', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110130011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-13 12:47:34', 0, NULL, 0, NULL, 1),
(6561, '', '0', '9360958103', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110130012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-13 01:00:40', 0, NULL, 0, NULL, 1),
(6562, 'Shajith Anwar. M', '4', '6385487905', '', 'Shajithanwar786@gmail.com', '2000-08-04', 21, '2', '2', 'Mohamed Ismail. M', 'Farmer', 15000.00, 2, 0.00, 16000.00, 'Tirunelveli', 'Singaperumal kovil', '2110130013', '3', '1', 'upload_files/candidate_tracker/32251259589_ArunKumar.pdf', NULL, '1', '2021-10-13', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Salary Not Satisfied\n', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-13 01:35:10', 1, '2021-10-13 02:38:21', 0, NULL, 1),
(6563, 'Divya Bharathi J', '4', '7094140067', '9159448942', 'umabharathi9159@gmail.com', '1996-01-03', 25, '2', '2', 'Jayakumar R', 'BCA', 30000.00, 1, 18000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2110140001', '14', '2', 'upload_files/candidate_tracker/36837690096_Copy of Divya Bharathi Resume - Updated.docx', NULL, '2', '2021-10-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'already completed two years experience in mutual fund ....insurance related course also completed...not suit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-14 10:08:27', 60, '2021-10-20 04:51:18', 0, NULL, 1),
(6564, 'ROHITH D', '22', '8428950245', '7871078977', 'karthickrohith201097@gmail.com', '2000-09-30', 21, '2', '2', 'k delhibatcha', 'company staff in airliquid', 30000.00, 1, 0.00, 15000.00, 'chromepet', 'chromepet', '2110150001', '1', '1', 'upload_files/candidate_tracker/53554825181_Resume - 2pg.pdf', NULL, '1', '2021-10-15', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Candidate got a job somewhere else', '2', '1', '0', '1', '1', '0', '2', '2021-10-20', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-15 10:27:07', 1, '2021-10-15 03:09:53', 0, NULL, 1),
(6565, 'Thamim Ansari', '30', '9677381511', '', 'thamimansari6193@gmail.com', '1994-09-05', 27, '1', '2', 'Jafarullah', 'Driver', 25000.00, 2, 18000.00, 24000.00, 'Arakkonam', 'Arakkonam', '2110150002', '', '2', 'upload_files/candidate_tracker/51643519272_Thamim Resume..docx (1)-converted.docx.pdf', NULL, '1', '2021-10-15', 10, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 Year Exp In Stock From Arakonnam Location, Second Round Interviewed By Gokul And The Profile Is Reject', '9', '2', '0', '1', '1', '0', '2', '2021-10-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-15 11:00:09', 1, '2021-10-15 11:04:09', 0, NULL, 1),
(6566, 'Raghavendra', '6', '9964636366', '9483558255', 'raghavanh007@gmail.com', '1990-12-26', 30, '1', '2', 'Mallikarjun', 'Field engineer', 20000.00, 5, 22000.00, 25000.00, 'Kalaburagi', 'Kalaburagi', '2110150003', '', '2', 'upload_files/candidate_tracker/29133125211_1 RAGHAVENDRA.docx', NULL, '1', '2021-10-15', 15, '55599', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-15 12:39:13', 1, '2021-10-15 01:00:47', 0, NULL, 1),
(6567, 'Chellapandian. G', '2', '9092097339', '', 'gchella562000@gmail.com', '2000-06-05', 21, '2', '2', 'Govindan', 'Chennai', 18000.00, 2, 0.00, 15000.00, 'Kilkodungalore', 'Kilkodungalore', '2110150004', '1', '1', 'upload_files/candidate_tracker/58263088451_chellapandian_SD_resume.pdf', NULL, '1', '2021-10-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-15 02:01:04', 1, '2021-10-15 02:04:15', 0, NULL, 1),
(6568, 'M PADMA PRIYAN', '2', '8825705769', '', 'mahapriyan21@gmail.com', '2001-08-21', 20, '2', '2', 'V MAHALINGAM', 'MANAGER', 50000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2110150005', '1', '1', 'upload_files/candidate_tracker/16341428960_PADMA PRIYAN.docx', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'From Besant Technologies, Fresher Profile, Not much comfortable with TxxampC. Need to check with his parents', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-15 04:13:54', 1, '2021-10-16 08:47:31', 0, NULL, 1),
(6569, 'Dhanasekar R', '2', '9384570861', '', 'abidhana93845@gmail.com', '2000-01-06', 21, '2', '2', 'Ramesh. A', 'Driver', 15000.00, 2, 0.00, 20000.00, 'Chengalpat', 'Chrompet', '2110150006', '1', '1', 'upload_files/candidate_tracker/46690587447_New Resume.pdf', NULL, '1', '2021-10-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-15 04:44:43', 1, '2021-10-18 12:10:16', 0, NULL, 1),
(6570, 'Ruffina Mercy', '2', '9962120484', '9551332471', 'ruffinamercy031@gmail.com', '1999-08-31', 22, '2', '2', 'Christhuraj', 'Hospital attender', 12000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2110150007', '1', '1', 'upload_files/candidate_tracker/96439911243_Resume1_Ruffina.pdf', NULL, '3', '2021-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-15 04:54:35', 1, '2021-10-15 06:00:12', 0, NULL, 1),
(6571, 'Deepak PS', '22', '8072622924', '', 'psdeepak1801@gmail.com', '1998-01-18', 23, '2', '2', 'Solaimalai S', 'Marketing', 400000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2110150008', '1', '1', 'upload_files/candidate_tracker/86147004678_updated cv.pdf', NULL, '1', '2021-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-15 11:53:12', 1, '2021-10-15 11:57:55', 0, NULL, 1),
(6572, 'S.Thenmozhi', '22', '9940642124', '9940659547', 'thenmozhiraji05@gmail.com', '2000-04-05', 21, '2', '2', 'Subramani', 'Steel polisher', 10000.00, 2, 0.00, 15000.00, 'No:39 hindu Colony, 4th main Road, Puzhuthivakkam', 'No:39,hindu colony,4th main road, puzhuthivakkam', '2110160001', '1', '1', 'upload_files/candidate_tracker/21614033503_Resume.pdf', NULL, '1', '2021-10-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 11:23:27', 1, '2021-10-16 11:56:30', 0, NULL, 1),
(6573, 'S NAVEEN', '4', '7904218539', '9500166394', 'naveenwilson710@gmail.com', '2000-10-02', 21, '2', '2', 'K SEKAR', 'Sculpture', 15000.00, 1, 0.00, 10000.00, 'No,18 4th Street Kamaraj nagar Ennore chennai 57', 'No,18 4th Street Kamaraj Nagar Ennore Chennai 57', '2110160002', '1', '1', 'upload_files/candidate_tracker/33340633189_naveen resume(1) pdf.pdf', NULL, '1', '2021-10-16', 0, '', '3', '59', '2021-11-01', 120000.00, '', '3', '2021-10-28', '2', 'Selected for Muthu team in cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent - Joined on 27Oct,but absconded from the next Day', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-10-16 11:42:15', 60, '2021-10-29 10:21:39', 0, NULL, 1),
(6574, 'M. Gayathri', '4', '7010173615', '7338873556', 'gai3m98@gmail.com', '1998-04-22', 23, '1', '2', 'D. Murugan', 'Electrician', 12000.00, 0, 10000.00, 12000.00, 'No:181/16, 87th street,  SivaK. K. Nagar,  C', 'No: 181/16, 87th s  K. K. Nagar,  Chennai -78', '2110160003', '', '2', 'upload_files/candidate_tracker/50605479159_My Resume.pdf', NULL, '1', '2021-10-16', 0, 'Jobs', '3', '59', '2021-10-18', 126000.00, '', '2', '1970-01-01', '2', 'Selected for Muthu Team in Cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail sent - Not Joined ,no Response to the calls,Tried couple of times', '', '', '', NULL, NULL, NULL, 1, '2021-10-16 12:49:46', 60, '2021-10-29 10:45:47', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6575, 'Sowmiya.D', '4', '7338873556', '8270686833', 'Sowmidaanu@gmail.com', '2000-05-31', 21, '1', '2', 'S.deenadhayalan', 'Eletrition', 10000.00, 1, 11000.00, 12000.00, 'No 2 b block nakkiran Nagar tyenampet Chennai 18', 'No 2 b block Nakkiran Nagar tyenampet Chennai 18', '2110160004', '', '2', 'upload_files/candidate_tracker/14040116909_ArunKumar.pdf', NULL, '1', '2021-10-16', 0, 'JOBS', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Hold on long pending', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-16 12:51:26', 60, '2021-10-16 03:56:01', 0, NULL, 1),
(6576, '', '0', '8124126085', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110160005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-16 12:54:57', 0, NULL, 0, NULL, 1),
(6577, 'KASEELAN A', '23', '9551645737', '9003112908', 'kaseelankavi@gmail.com', '2000-04-24', 21, '4', '2', 'ARUMUGAM M', 'Daily vacanger', 10000.00, 3, 0.00, 13000.00, 'Villupuram', 'Chennai', '2110160006', '', '1', 'upload_files/candidate_tracker/75418904855_KASEELAN A Resume1.pdf', NULL, '1', '2021-10-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Attitude is not good,Will not sustain and handling pressure doubtful', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-16 01:01:03', 1, '2021-10-16 01:05:15', 0, NULL, 1),
(6578, 'parthiban k', '11', '8682811643', '7538862950', 'k.parthiban96@gmail.com', '1996-08-17', 25, '2', '2', 'kamalakannan r', 'wireman at electricity department', 45000.00, 1, 0.00, 20000.00, 'puducherry', 'puducherry', '2110160007', '1', '1', 'upload_files/candidate_tracker/54974987998_parthiban resume.pdf', NULL, '1', '2021-10-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 01:14:02', 1, '2021-10-16 05:43:16', 0, NULL, 1),
(6579, 'Sangeetha s', '4', '8124160885', '7092020359', 'Vijayjai50@gmail.com', '1998-04-05', 23, '1', '2', 'T subramani', 'Eletrition', 6500.00, 1, 11000.00, 12000.00, 'No.1, Vikramadityan street,. Soolaipallam, M.G.R.', 'Chennai', '2110160008', '', '2', 'upload_files/candidate_tracker/47858746781_APWPT5724P_Q3_2021-22 P THIYAGARAJAN.pdf', NULL, '1', '2021-10-16', 0, 'JOBS', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'NOT FIT FOR TELESALES', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-16 01:19:43', 1, '2021-10-16 01:41:40', 0, NULL, 1),
(6580, 'Vishwa priya', '11', '8248644808', '', 'vishwapriya251298@gmail.com', '1999-07-25', 22, '2', '2', 'Selvam', 'Real estate', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Voc street ponni nagar karambakkam Porur Chennai', '2110160009', '1', '1', 'upload_files/candidate_tracker/83260904072_RESUME- Vishwapriya.pdf', NULL, '1', '2021-10-18', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Communication is not good. will not suite for hr profile', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 03:03:31', 1, '2021-10-16 03:09:46', 0, NULL, 1),
(6581, 'Kishore B', '11', '7708560108', '', 'kishoresrb@gmail.com', '1999-11-15', 21, '2', '2', 'Balakrishnan S R', 'Manager', 35000.00, 0, 0.00, 175000.00, 'Madurai', 'Madurai', '2110160010', '1', '1', 'upload_files/candidate_tracker/71715712228_Kishore15_Resume.pdf', NULL, '1', '2021-10-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 03:59:13', 1, '2021-10-16 04:03:41', 0, NULL, 1),
(6582, 'DHAMODHARAN.C', '2', '9787980474', '8310493972', 'dhamodharan.92rrk@gmail.com', '1992-11-22', 28, '2', '2', 'Chinnappa R', 'Farmer', 120000.00, 1, 0.00, 13000.00, 'Arrakonam - native', 'Chennai', '2110160011', '1', '1', 'upload_files/candidate_tracker/61059894445_CV-Dhamu new_093507.doc', NULL, '1', '2021-10-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,2015 passed out, Worked in different domain, Not much comfortable with TxxampC,Will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 04:52:20', 1, '2021-10-16 05:13:15', 0, NULL, 1),
(6583, 'Jesher T', '11', '7358279370', '8667279211', 'Jesherockz52@gmail.com', '1995-11-25', 25, '2', '2', 'Timothy Chavan C', 'Store Incharge', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2110160012', '1', '1', 'upload_files/candidate_tracker/41118150761_Jesher T Resume (1).pdf', NULL, '1', '2021-10-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Is Ok, Fresher, Open For The  TxxampC, 5050 Profile,Came Along With His Friend.Seems doubtful on the joining ,sustainability doubts ', '6', '1', '0', '1', '3', '0', '2', '2021-10-20', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 06:31:51', 1, '2021-10-16 09:15:42', 0, NULL, 1),
(6584, 'Sowmiya Arumugam', '4', '9361396609', '9500923187', 'Sowmiamutha26@gmail.com', '2000-06-26', 21, '4', '2', 'Amutha Arumugam', 'House wife', 4000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Kumbakonam', '2110160013', '', '1', 'upload_files/candidate_tracker/90533646322_sowmiya Arumugam.docx', NULL, '2', '2021-10-16', 0, '', '3', '59', '2021-10-25', 126312.00, '', '', '1970-01-01', '1', 'Selected for Thanjavur, joining date may change. Candidate yet to confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Yet to release,Candidate on Hold as she requesting for joining post Diwali', '', '', '', NULL, NULL, NULL, 1, '2021-10-16 06:58:57', 60, '2021-10-23 06:44:03', 0, NULL, 1),
(6585, 'Henna Fathima K', '11', '9710423292', '7305686986', 'Hennafathima0212@gmail.com', '1995-12-02', 25, '2', '2', 'M K Khamruddin', 'Tailor', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2110160014', '1', '1', 'upload_files/candidate_tracker/74381653728_Henna Fathima K.pdf', NULL, '1', '2021-10-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Is Good, Fresher, Open For The  TxxampC, But The Location Is Almost 30 KMS Up And Down.Seems candidate will join mostly if his friend joins too', '6', '1', '0', '1', '3', '0', '2', '2021-10-20', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 09:21:34', 1, '2021-10-16 09:25:23', 0, NULL, 1),
(6586, 'Jemima Roseline', '4', '6379482349', '', 'Jemitherock1812@gmail.com', '2000-12-18', 20, '2', '2', 'Kaniselvi', 'Business', 20000.00, 2, 15000.00, 20000.00, 'Poonamallee', 'Poonamallee', '2110180001', '16', '2', 'upload_files/candidate_tracker/45240016371_JosephBIO.pdf', NULL, '1', '2021-10-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for crm', '1', '2', '0', '1', '1', '0', '2', '2021-10-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 10:39:54', 1, '2021-10-18 10:58:56', 0, NULL, 1),
(6587, 'S. Dharani', '4', '7395956509', '8189952337', 'dharanishoba078@gmail.com', '2001-08-07', 20, '1', '2', 'D. Srinivasan', 'Coolie', 8000.00, 1, 0.00, 12000.00, 'Avadi', 'Avadi', '2110180002', '', '1', 'upload_files/candidate_tracker/20985151242_Main-Page-BCA-Content-Syllabus.pdf', NULL, '1', '2021-10-18', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Salary Breakup shared and the candidate messaged as not interested after discussing with her grandparents', '1', '2', '0', '1', '1', '0', '2', '2021-10-23', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 11:10:18', 1, '2021-10-18 11:23:23', 0, NULL, 1),
(6588, 'R. Keerthana', '4', '9791314476', '6381624246', 'Keerthana7512@gmail.com', '2000-11-05', 20, '1', '2', 'N. Radhakrishnan', 'Electrician', 9000.00, 1, 0.00, 12000.00, 'Avadi', 'Avadi', '2110180003', '', '1', 'upload_files/candidate_tracker/8369501629_Main-Page-BCA-Content-Syllabus.pdf', NULL, '1', '2021-10-18', 0, 'Jobs', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Selected for thiruvallur location but she not joined yet her friend only joined so profile rejected', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 11:26:10', 1, '2021-10-18 11:30:39', 0, NULL, 1),
(6589, 'MuthuKumar', '11', '7373615415', '', 'kumarmuthumass69@gmail.com', '1999-04-03', 22, '4', '2', 'Parent', 'Operator', 30000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Cuddalore', '2110180004', '', '1', 'upload_files/candidate_tracker/54916402711_MUTHUKUMAR.pdf', NULL, '1', '2021-10-18', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'coming from cuddalore. No english communication will not syuite for our profile', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 11:27:25', 1, '2021-10-18 11:35:03', 0, NULL, 1),
(6590, 'Lakshmipathi', '11', '7010407468', '8870311946', 'lakshmanan21599@gmail.com', '1999-05-21', 22, '4', '2', 'Parent', 'Farmer', 30000.00, 1, 0.00, 15000.00, '1/115,Gangai Amman temple Street,kiliyanur.', 'KILIYANUR', '2110180005', '', '1', 'upload_files/candidate_tracker/19010356234_lakshman.docx', NULL, '1', '2021-10-18', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'coming from pond. will not suite for our Profile. no communication', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 11:29:49', 1, '2021-10-18 11:39:54', 0, NULL, 1),
(6591, 'Vijayalakshmi', '14', '9042281126', '9080609573', 'Linleyviji1996@gmail.com', '1998-06-26', 23, '2', '2', 'Raja', 'Car taxi driver', 20000.00, 0, 0.00, 15000.00, 'T.nagar', 'T.nagar', '2110180006', '16', '2', 'upload_files/candidate_tracker/68305128718_Job Description - HR Trainee (1) (1) (3).docx', NULL, '1', '2021-10-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'looking for job in chat support, not interested in calling.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 11:53:13', 1, '2021-10-18 12:15:35', 0, NULL, 1),
(6592, 'Malini.M', '14', '9361314120', '', 'maalny143@gmail.com', '2000-12-15', 20, '2', '2', 'Manoharan.S', 'Vegetable shop', 70000.00, 1, 0.00, 15000.00, 'Mylapore', 'Chennai', '2110180007', '16', '2', 'upload_files/candidate_tracker/45492214666_My CV.pdf', NULL, '1', '2021-10-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for job in IT-android, expt is 18k. not interested in calling.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 11:55:25', 1, '2021-10-18 12:00:36', 0, NULL, 1),
(6593, 'B.Nethaji', '6', '8667597275', '9791931523', 'bnethaji0500@gmail.com', '2000-03-26', 21, '2', '2', 'Babu', 'Driver', 30000.00, 7, 13500.00, 20000.00, 'Arakkonam', 'Arakkonam', '2110180008', '16', '2', 'upload_files/candidate_tracker/38146066598_Nethaji resume-1.docx', NULL, '1', '2021-10-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for job in collection and not interested in calling.', '5', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 12:06:44', 1, '2021-10-18 12:16:33', 0, NULL, 1),
(6594, '', '0', '9962349268', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110180009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-18 12:56:15', 0, NULL, 0, NULL, 1),
(6595, 'gayathri', '4', '9566220831', '', 'gayathrigayathri05683@gmail.com', '2000-07-18', 21, '2', '2', 'narayanan', 'pwd', 25000.00, 1, 0.00, 10000.00, 'chennai', 'triplicane', '2110180010', '1', '1', 'upload_files/candidate_tracker/35006306388_gayathri.pdf', NULL, '1', '2021-10-18', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Hold On Long Pending', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-10-18 12:56:17', 1, '2021-10-18 03:20:20', 0, NULL, 1),
(6596, '', '0', '9962378559', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110180011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-18 12:56:44', 0, NULL, 0, NULL, 1),
(6597, 'Sambhavi', '11', '8056005077', '9952250025', 'sambhavimohan@gmail.com', '1992-05-27', 29, '2', '1', 'Arun', 'Software Engineer', 45000.00, 1, 12000.00, 18000.00, 'Kodambakkam', 'Kodambakkam', '2110180012', '1', '2', 'upload_files/candidate_tracker/79183186410_Sambhavi CV (Exp) 1.docx', NULL, '1', '2021-10-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Exp In Recruitment, Career Gap, Not Much Comfortable With TxxampC ,Seems Little Attitude,Min Exp Is 15K,Not much comfortable with Terms and conditions. Sustainability Doubts', '6', '1', '0', '1', '1', '0', '2', '2021-10-25', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-18 01:13:15', 1, '2021-10-18 01:23:31', 0, NULL, 1),
(6598, 'deepika a', '11', '9445329982', '', 'shreedeepika24@gmail.com', '1996-08-24', 25, '2', '2', 'ajayakumar a', 'supervisor', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2110180013', '1', '1', 'upload_files/candidate_tracker/77706749865_accendeepika.docx', NULL, '1', '2021-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-18 03:41:43', 1, '2021-10-18 04:01:49', 0, NULL, 1),
(6599, 'Azmi D', '23', '9003239838', '9094445088', 'Azmiswetha@gmail.com', '1997-12-01', 23, '2', '2', 'M.S.Densi', 'Building construction', 35000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2110180014', '1', '1', 'upload_files/candidate_tracker/48131521515_Azmi.D Graphic Designing Resume-1.pdf', NULL, '1', '2021-10-21', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Not Interested in learning coding.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-18 04:04:43', 1, '2021-10-18 04:18:05', 0, NULL, 1),
(6600, 'SAFICK AHAMED.s', '23', '7339422143', '7904698573', 'safickahamed1101@gmail.com', '1999-01-11', 22, '2', '2', 'Buhari', 'Business', 20000.00, 2, 0.00, 14000.00, 'Thanjavur', 'Chennai, Triplicane', '2110180015', '1', '1', 'upload_files/candidate_tracker/6648208434_safickresume1.pdf', NULL, '1', '2021-10-21', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'candidate task not satisfactory.', '2', '1', '0', '1', '3', '0', '2', '2021-10-22', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-18 04:10:01', 1, '2021-10-18 04:21:53', 0, NULL, 1),
(6601, '', '0', '6380399208', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110180016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-18 05:30:31', 0, NULL, 0, NULL, 1),
(6602, 'Manikandan U', '11', '9514520091', '6383168362', 'manikandanu885@gmail.com', '1998-04-06', 23, '2', '2', 'Udayakumar', 'Lic agent', 25000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2110180017', '1', '1', 'upload_files/candidate_tracker/57867341817_Mani resume-1.pdf', NULL, '1', '2021-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-18 06:05:29', 1, '2021-10-18 06:07:52', 0, NULL, 1),
(6603, 'Dhivya.P', '11', '9840774316', '9840412200', 'dhivya23041998@gmail.com', '1998-04-23', 23, '3', '2', 'Paneer selvam', 'Business', 120000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2110180018', '', '1', 'upload_files/candidate_tracker/78195866844_RESUME DHIVYA.P 2021.pdf', NULL, '1', '2021-10-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher For HR, Communication Ok, Being Fresher Her Salary Exp Min 15k Can Come Down To 13K.Max 2 Yrs Ok With TxxampC. No Parents ,Grandparents Insisting Her To Take Care Of Their Business.5050 Profile. From Porur She Needs To Travel.Sustainability doubts as she may get marry before 2 years', '6', '1', '0', '1', '1', '0', '2', '2021-10-20', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 06:27:52', 1, '2021-10-19 11:29:49', 0, NULL, 1),
(6604, 'Rajkumar.R', '23', '8489855609', '', 'rajrb2807@gmail.com', '2000-07-28', 21, '2', '2', 'Rajendran', 'Farmer', 5000.00, 5, 0.00, 15000.00, 'Kallanatham', 'Kallanatham', '2110180019', '1', '1', 'upload_files/candidate_tracker/88085706385_Rajkumar\'s Resume.pdf', NULL, '1', '2021-10-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic design skill knowledge, he needs time to learn a lot in UI/UX,If candidate comes back we can check and decide', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-18 09:11:10', 1, '2021-10-20 04:24:15', 0, NULL, 1),
(6605, 'Charulatha.V', '3', '7358613197', '9840515852', 'charu09072001@gmail.com', '2001-07-09', 20, '2', '2', 'Venugopal.m  Sathya.v', 'Voice process', 10000.00, 1, 0.00, 10000.00, 'Thiruvallur', 'Thiruvallur', '2110190001', '1', '1', 'upload_files/candidate_tracker/91642113380_V.CHARULATHA.docx', NULL, '1', '2021-10-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-10-19 11:17:16', 1, '2021-10-19 11:31:52', 0, NULL, 1),
(6606, '', '0', '7397382893', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110190002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-19 11:24:09', 0, NULL, 0, NULL, 1),
(6607, 'Richard James Williams', '6', '8778049413', '9790757720', 'rebecahmercy@gmail.com', '1995-07-09', 26, '3', '2', 'Devsingh', 'B.e civil', 30000.00, 1, 0.00, 15000.00, 'A.p1733,102 street ,14 sector,k.knagar,Chennai-788', 'Chennai', '2110190003', '', '1', 'upload_files/candidate_tracker/56449433750_Resume -Richard - New.docx', NULL, '1', '2021-10-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suits for our Sales profile. candidate focusing towards  his own business. Will not sustain and handle the pressure.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-19 11:28:26', 1, '2021-10-19 11:35:29', 0, NULL, 1),
(6608, '', '0', '9080863736', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-19 06:38:43', 0, NULL, 0, NULL, 1),
(6609, '', '0', '9176154102', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110190005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-19 07:02:18', 0, NULL, 0, NULL, 1),
(6610, '', '0', '8870705785', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-19 09:33:58', 0, NULL, 0, NULL, 1),
(6611, 'sivaneshwaran', '2', '8531966007', '6383303910', 'sivaneshwaran74@gmail.com', '1999-12-14', 21, '2', '2', 'rajkumar', 'farmer', 15000.00, 1, 0.00, 15000.00, 'adyar', 'adyar', '2110200001', '1', '1', 'upload_files/candidate_tracker/63934814054_Sivaneshwaran.doc', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Candidate seems not much active, will not sustain and handling pressure doubtful.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 06:32:56', 1, '2021-10-20 07:26:30', 0, NULL, 1),
(6612, 'prakash', '2', '8056986294', '6383303910', 'rprakashtmk@gmail.com', '1999-04-25', 22, '2', '2', 'ramachandhran', 'farmer', 16000.00, 1, 0.00, 15000.00, 'ashok pillar', 'ashok pillar', '2110200002', '1', '1', 'upload_files/candidate_tracker/89879553151_prakash resume.docx', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Besant Tech Candidate, Not much open for TxxampC. Cousins are working in IT companies and have some reference too in their companies. Sustainability doubts  with us on this profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 07:31:27', 1, '2021-10-20 07:36:24', 0, NULL, 1),
(6613, 'hariharan', '2', '9360777261', '8056986294', 'hariharanmech1212@gmail.com', '1999-08-02', 22, '2', '2', 'kannappan', 'farmer', 15000.00, 1, 0.00, 18000.00, 'chennai', 'channai', '2110200003', '1', '1', 'upload_files/candidate_tracker/2982271060_Hariharan_Resume.docx', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Not open with TxxampC, Need time to check with family, if he comes back will make changes', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 08:44:00', 1, '2021-10-20 08:53:22', 0, NULL, 1),
(6614, 'Samiullahkhan', '23', '9962307597', '6379431195', 'ksami9812@gmail.com', '1995-12-12', 25, '2', '2', 'Subhan Khan', 'Unemployed', 25000.00, 0, 0.00, 15000.00, 'Nanganallur', 'Nanganallur', '2110200004', '1', '1', 'upload_files/candidate_tracker/66915821310_Resume.docx', NULL, '1', '2021-10-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge in UI/UX will not sustain and not suitable for our position. Pressure handling no', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 10:22:45', 1, '2021-10-20 10:26:23', 0, NULL, 1),
(6615, 'm.sugana', '4', '7358200713', '7708719712', 'sugana1000@gmail.com', '1993-10-25', 27, '3', '1', 'v.sedhuraman', 'nope', 30000.00, 2, 13000.00, 14000.00, 'sevvapet', 'sevvapet', '2110200005', '', '2', 'upload_files/candidate_tracker/80506488594_SUGANA RESUME.pdf', NULL, '1', '2021-10-20', 0, '', '3', '59', '2021-11-01', 144000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location,joining date may change as the candidate requesting for joining post Diwali', '1', '1', '', '1', '1', '', '2', '2021-10-22', '1', '9', 'Offer yet to release,joining date to be confirmed travelling to native', '', '', '', NULL, NULL, NULL, 1, '2021-10-20 10:33:30', 60, '2021-10-23 06:22:33', 0, NULL, 1),
(6616, 'Y Gopinath', '11', '8248794578', '', 'gopinath16sep97@gmail.com', '1997-09-16', 24, '2', '2', 'Yuvaraj', 'Metro water', 50000.00, 1, 0.00, 15000.00, 'No14 4th main road m.g.r nagar', 'Velachery', '2110200006', '1', '1', 'upload_files/candidate_tracker/64262513029_Gopinath resume.docx', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,Bad Attitude,No patience,will not fit for our position - Gokul Interviewed him in the 2nd level', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-10-20 11:30:59', 1, '2021-10-20 11:38:30', 0, NULL, 1),
(6617, 'Sivaprakash', '2', '8220206324', '', 'Prakashva98@gmail.com', '1998-12-27', 22, '2', '2', 'N kumar', 'Customs officer', 40000.00, 1, 0.00, 15000.00, 'Chidambaram', 'Thoraipakkam', '2110200007', '1', '1', 'upload_files/candidate_tracker/29340427574_resume.docx', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Career Gap 2019 Passed out Focusing much for Angular JS Profile. Not much comfort with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 11:59:35', 1, '2021-10-20 12:03:55', 0, NULL, 1),
(6618, 'Dineshkumar R', '22', '9092896419', '7010971595', 'dinesh1132171@gmail.com', '2000-03-13', 21, '2', '2', 'Mom', 'Tailor', 120000.00, 1, 0.00, 100000.00, 'Redhills,Chennai-52', 'Redhills, Chennai-52', '2110200008', '1', '1', 'upload_files/candidate_tracker/73441313624_DINESHKUMAR resume-1.0(1).pdf', NULL, '1', '2021-10-22', 0, '', '8', '69', NULL, 0.00, '', '0', NULL, '2', 'no response from candidate', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 12:31:17', 1, '2021-10-20 12:43:12', 0, NULL, 1),
(6619, '', '0', '9940366722', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-20 12:50:59', 0, NULL, 0, NULL, 1),
(6620, 'Deepak kumar B', '11', '8248846949', '9962772053', 'deepakdhonid7@gmail.com', '1998-11-01', 22, '2', '2', 'Baskar', 'Carpenter', 15000.00, 1, 0.00, 15000.00, 'Chenani', 'Chenani', '2110200010', '1', '1', 'upload_files/candidate_tracker/57098984107_Deepak Kumar B - RESUME mba.docx', NULL, '1', '2021-10-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate not interstetd with the TxxampC,Didnt turn back for the 2nd round', '6', '1', '0', '1', '1', '0', '2', '2021-10-25', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 12:54:27', 1, '2021-10-20 12:58:52', 0, NULL, 1),
(6621, 'Arputha kumar', '11', '7010335887', '9092728178', 'arputhakumar24@gmail.com', '1999-04-12', 22, '3', '2', 'P Andavar', 'Coolie', 20000.00, 1, 0.00, 15000.00, 'Dindigul', 'Nungambakkam', '2110200011', '', '1', 'upload_files/candidate_tracker/94156828888_A .Arputha kumar RESUME.pdf', NULL, '1', '2021-10-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-20 01:17:39', 1, '2021-10-20 01:23:11', 0, NULL, 1),
(6622, 'Muthulakshmi', '11', '9176357935', '', 'suresh2795m@gmail.com', '1997-09-10', 24, '2', '2', 'Suresh', 'Business', 40000.00, 1, 14000.00, 14000.00, 'Chennai', 'Chennai', '2110200012', '1', '2', 'upload_files/candidate_tracker/69416184953_Muthulakshmi(1).pdf', NULL, '1', '2021-10-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not responding to the calls,requested her to come for 2nd round but didnt turn for the interview', '6', '2', '0', '1', '1', '0', '2', '2021-10-25', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 01:24:04', 1, '2021-10-20 01:30:52', 0, NULL, 1),
(6623, 'JEYAKUMAR THUKKAIYAPPAN', '2', '7539920339', '', 'JEYAKUMAR4097@GMAIL.COM', '2000-04-05', 21, '2', '2', 'Thukkaiyappan.p,eswari.T', 'Business', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2110200013', '1', '1', 'upload_files/candidate_tracker/31956688767_jeyakumar fresher.pdf', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, not clear on the profile he applied, No basic knowledge in React. AWS/Java Certified. Looking for AWS Cloud based openings in the future, Will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 02:08:58', 1, '2021-10-20 02:16:30', 0, NULL, 1),
(6624, 'Bhuvaneshwar', '2', '8925765725', '', 'bhuvaneshwar.cp@gmail.com', '1998-01-19', 23, '2', '2', 'Chellapandian', 'Business', 20000.00, 1, 0.00, 200000.00, 'No:1,Vinayagar 5th Cross Street, Rajaji Nagar', 'No:1,Vinayagar 5th Cross Street, Rajaji Nagar', '2110200014', '1', '1', 'upload_files/candidate_tracker/17563738902_BHUVANESHWARC.pdf', NULL, '1', '2021-10-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,no basic  skills knowledge will not handle our pressure and sustainability doubts  wiht us', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 02:38:04', 1, '2021-10-20 02:41:50', 0, NULL, 1),
(6625, 'Neethu A N', '11', '8072460424', '', 'neethuruby332@gmail.com', '1997-12-06', 23, '2', '2', 'Nithyanandan', 'Business', 100000.00, 1, 120000.00, 200000.00, 'Chennai', 'Chennai', '2110200015', '1', '2', 'upload_files/candidate_tracker/85981940541_Neethu%20ruby%20resume.docx', NULL, '1', '2021-10-22', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Little Exp In Recruitment, Not Much Comfortable With TxxampC Need To Check With Family, Sustainability Doubts, Location S From Padi', '6', '1', '0', '1', '1', '0', '2', '2021-10-25', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 03:00:29', 1, '2021-10-21 09:53:26', 0, NULL, 1),
(6626, 'vijay.s', '2', '9003044067', '', 'vijaysanker55@gmailcom', '1999-01-13', 22, '2', '2', 'parent', 'it job', 25000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2110200016', '1', '1', 'upload_files/candidate_tracker/7031508610_vijay.resume.pdf', NULL, '1', '2021-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,Not much comfortable with TxxampC,Much open for Angular Openings.If he come back need to check and decide', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 03:35:21', 1, '2021-10-24 05:30:20', 0, NULL, 1),
(6627, '', '0', '9698628935', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110200017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-20 05:01:02', 0, NULL, 0, NULL, 1),
(6628, 'Micheal nayaki gowcika', '11', '7868950863', '8940057219', 'sajina2171999@gmail.com', '1999-07-21', 22, '2', '2', 'Sahayam', 'Fisherman', 70000.00, 1, 0.00, 21000.00, '7/697,odai street ,muttom,kanyakumari', 'JMJ convent ,porur', '2110200018', '1', '2', 'upload_files/candidate_tracker/64074522404_Micheal nayaki gowcika .pdf', NULL, '1', '2021-10-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Discussed with the candidate and she is continuing with the same position in NTT (current Package 21K)', '6', '1', '0', '1', '1', '0', '2', '2021-10-26', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 05:23:37', 1, '2021-10-20 05:40:31', 0, NULL, 1),
(6629, 'ARUNRAJ S', '23', '9566491326', '8072087968', 'arun95anand@gmail.com', '2006-10-21', 0, '2', '2', 'Selvaraj R', 'Business', 25000.00, 1, 0.00, 15000.00, 'NEYVELI', 'CHENNAI', '2110210001', '1', '1', 'upload_files/candidate_tracker/64959402618_arun raj resume updated.doc', NULL, '1', '2021-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-21 09:43:57', 1, '2021-10-21 09:49:42', 0, NULL, 1),
(6630, 'Sandhya P', '7', '8681803655', '7338930536', 'Sandy1142000@gmail.com', '2000-04-11', 21, '3', '2', 'Prakash Babu G', 'Sales man', 15000.00, 1, 12000.00, 13000.00, 'Pattabiram', 'Pattabiram', '2110210002', '', '2', 'upload_files/candidate_tracker/90425808476_Resume_Sandhiya_Format3.pdf', NULL, '1', '2021-10-21', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-21 10:10:28', 1, '2021-10-21 10:20:38', 0, NULL, 1),
(6631, 'E rajesh', '6', '9791157540', '', 'Rajeshe394@gmail.com', '1998-04-19', 23, '1', '2', 'P elumalai', 'Fisherman', 20000.00, 1, 0.00, 16000.00, 'Tondiarpet', 'Tondiarpet', '2110210003', '', '1', 'upload_files/candidate_tracker/15215779855_Rajesh Resume.docx', NULL, '1', '2021-10-21', 0, 'P1166', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Discussed and shared the salary breakup for candidate confirmation, Not yet received any confirmation from  candidate, Tried reaching him couple of times and no responses. Dropped the candidate from selection', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-21 10:59:19', 1, '2021-10-21 11:29:18', 0, NULL, 1),
(6632, 'Mahesh bollineni', '4', '7395944711', '6369906319', 'bmahesh191997@gmail.com', '1997-09-01', 24, '2', '2', 'Venkateshwarao', 'Business', 25000.00, 1, 13700.00, 14000.00, '9/57/9,raju street, west mambalam,Chennai-33', '9/57/9,Raju Street, West Mambalam,Chennai-33', '2110210004', '1', '2', 'upload_files/candidate_tracker/77829147201_resume_1574786318195.pdf', NULL, '1', '2021-10-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much comfortable with Tele sales(Voice Process) Salary Exp is high', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-21 11:47:26', 50, '2021-10-21 12:15:43', 0, NULL, 1),
(6633, 'K Chandra sekar', '4', '6369906319', '7200563157', 'chandrsekar15071998@gmail.com', '1998-07-15', 23, '2', '2', 'G karthikeyan', 'Hardware bussiness', 25000.00, 1, 12000.00, 16000.00, 'west saidapet Chennai-600 015', 'West saidapet chennai 600 015', '2110210005', '1', '2', 'upload_files/candidate_tracker/25663309541_chandrasekarrspdf_original.pdf', NULL, '1', '2021-10-21', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication ok, much prefers for non voice  and the salary Exp in high', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-21 11:50:33', 50, '2021-10-21 12:15:59', 0, NULL, 1),
(6634, 'P. Divya', '4', '9655974380', '', 'Divyavishamie@gmail.com', '1996-04-03', 25, '2', '1', 'S. P. Saraswathi', 'Electrician', 12000.00, 2, 0.00, 10000.00, 'Thiruttani', 'Thiruttani', '2110210006', '1', '2', 'upload_files/candidate_tracker/17947681006_divya resume.docx', NULL, '1', '2021-10-21', 0, '', '3', '59', '2021-10-27', 120000.00, '', '2', '1970-01-01', '2', 'Selected for Tiruvallur Location,Train travel around 1 hour,not open for SA as Manager requested. Need to analyse her in 7 Days', '1', '2', '', '1', '1', '', '2', '2021-10-23', '2', '3', 'Offer Mail Sent - As discussed with Banu(Area Manager Elite)We dropped her offer as she need to travel  a long..Will  not sustain for a long.As candidate shows much interest towards the position we released offer earlier', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-21 12:04:41', 60, '2021-10-29 10:19:34', 0, NULL, 1),
(6635, 'Raghul S', '25', '9443169374', '', 'raghulpsg@yahoo.com', '1995-05-16', 26, '2', '2', 'Sekar', 'Driver', 20000.00, 2, 240000.00, 300000.00, 'Perambalur', 'Tnagar', '2110210007', '1', '2', 'upload_files/candidate_tracker/70880789360_Raghul 1 resume.pdf', NULL, '1', '2021-10-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '	Have Sales Exp But Seems Not Much Confident,Pressure Handling Doubtful,Candidate Left Without Attending The 2nd Level Interview,If He Comes Back Let Us Check', '8', '1', '', '1', '1', '', '2', '2021-10-22', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-21 12:27:41', 50, '2021-10-21 12:42:47', 0, NULL, 1),
(6636, '', '0', '9123566199', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110210008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-21 01:23:14', 0, NULL, 0, NULL, 1),
(6637, 'Sangapu Venkatesh', '11', '8897043324', '8897382138', 'sangapuvenkatesh97@gmail.com', '1997-08-20', 24, '2', '2', 'Penchalaiah', 'Farmer', 10000.00, 2, 0.00, 300000.00, 'Nellore, Andhra Pradesh', 'ananthanayaki nagar,old washermenpet, chennai', '2110210009', '1', '1', 'upload_files/candidate_tracker/53504225289_resume .docx', NULL, '1', '2021-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Good, have Exp in US IT Recruitment, Native of Andhra, Much focus on HR Executive  and not much comfortable with Terms Conditions, Sustainability Doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-21 03:56:48', 1, '2021-10-21 04:06:12', 0, NULL, 1),
(6638, 'Jayaraman V', '2', '7358612051', '', 'jayramvasu73@gmail.com', '1999-07-21', 22, '2', '2', 'Vasu', 'Painter', 20000.00, 1, 0.00, 25000.00, 'Chromepet Chennai', 'Chromepet Chennai', '2110210010', '1', '1', 'upload_files/candidate_tracker/82969281575_Jayaraman V Resume.pdf', NULL, '1', '2021-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-21 04:11:21', 1, '2021-10-21 04:14:26', 0, NULL, 1),
(6639, '', '0', '7397298051', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110210011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-21 05:09:01', 0, NULL, 0, NULL, 1),
(6640, 'Shifra T', '11', '9940260714', '', 'shifra.t.1999@gmail.com', '1999-10-18', 22, '2', '2', 'Thiraviaraj', 'Business', 40000.00, 1, 0.00, 30000.00, 'Tuticorin', 'Tuticorin', '2110210012', '1', '1', 'upload_files/candidate_tracker/3955937628_S Resume.pdf', NULL, '1', '2021-10-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-21 06:25:59', 1, '2021-10-21 06:30:20', 0, NULL, 1),
(6641, 'Srinath. S', '2', '6383810885', '9597307318', 'Srinath2619@gmail.com', '2000-05-26', 21, '2', '2', 'Sankar', 'Business', 40000.00, 1, 0.00, 15.00, 'mogappair west', 'mogappair west', '2110210013', '1', '1', 'upload_files/candidate_tracker/81804946264_SRINATH S resume-11.pdf', NULL, '2', '2021-10-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Keen To Learn ,Have A Plan To Go Abroad For Higher Studies After3 Yrs, Need Time To Give His Confirmation,If He Comes Back Let Us Check And Consider. Candidate didnt turn back for the interview', '2', '1', '', '2', '2', '', '2', '2021-10-26', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-21 09:52:38', 50, '2021-10-25 11:27:53', 0, NULL, 1),
(6642, 'C.pramoth', '4', '9840136985', '9841157030', 'Pramothchinna1605@gmail.com', '2000-05-16', 21, '4', '2', 'A.chinnathambi', 'Plumbing contract', 50000.00, 2, 0.00, 12000.00, 'K.k. nagar', 'K.k nagar', '2110220001', '', '1', 'upload_files/candidate_tracker/30282612981_pramoth.docx', NULL, '1', '2021-10-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Target oriented positions, will not sustain with us', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-22 10:38:14', 1, '2021-10-22 10:48:28', 0, NULL, 1),
(6643, 'abudl kasim', '2', '9524756038', '', 'abdulkasim361998@gmail.com', '1998-06-03', 24, '2', '2', 'abbas', 'hotel', 20000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2110220002', '2', '1', 'upload_files/candidate_tracker/66131879017_abdul kasim.pdf', NULL, '1', '2022-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '3rd time he appear for the same position,no improvement not strong inthe basic skills Javascript will not sustain and not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-22 10:41:14', 1, '2022-09-22 10:51:33', 0, NULL, 1),
(6644, 'Vishal A M', '11', '9094625457', '9841349858', 'vishalam1998@gmail.com', '1998-05-22', 23, '2', '2', 'Gomathy M', '12th', 20000.00, 0, 240000.00, 350000.00, 'Ayapakkam', 'Chennai', '2110220003', '1', '2', 'upload_files/candidate_tracker/14954811613_Vishal Resume Final PDF.pdf', NULL, '1', '2021-10-25', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Working for 6 months official notice 30 Days. Focusing  on the UPSC exams,Salary Exp is very high,Attended interview  around 20 Interviews and not comfortable with the pay they offered. Focus much on the salary. Will not sustain with us for a long', '6', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-22 10:44:24', 1, '2021-10-22 10:47:37', 0, NULL, 1),
(6645, 'Praveen kumar', '4', '6369274241', '6381744858', 'praveenk.0509@gmail.com', '1992-09-05', 29, '2', '2', 'Tamilarasi', 'Tdfc', 30000.00, 1, 14000.00, 15000.00, 'No 1 sivapushnam st vetri nagar ch 82', '23 perumal st egmore ch.8', '2110220004', '1', '2', 'upload_files/candidate_tracker/24005456205_Praveen_K (3).pdf', NULL, '3', '2021-10-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication, no importance for the job, career Gap.Not having any clear ideas whether to step in voice/non voice. Will not handle pressure', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-22 10:50:26', 50, '2021-10-22 11:04:53', 0, NULL, 1),
(6646, '', '0', '7639578041', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110220005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-22 11:01:01', 0, NULL, 0, NULL, 1),
(6647, 'Prasanna venkatesh', '11', '9962912333', '', 'Prasanna.pv26@gmail.com', '1999-09-18', 22, '2', '2', 'Priyadhrasanan', 'Ex railways', 200000.00, 1, 0.00, 200000.00, 'No24 Narayan mastri 1st Villivakkam Chennai 49', 'No24 Narayan mastri 1st Villivakkam Chennai 49', '2110220006', '1', '1', 'upload_files/candidate_tracker/63493998418_0-6830337562_20210829_124650_0000-5.pdf', NULL, '1', '2021-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok,Candidate 5050 On The TxxampC,No Much Comfort  In Internship Stipend, Fresher For The Recruitment Role.Need Time To Give His Confirmation', '6', '1', '', '1', '1', '', '2', '2021-10-29', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-22 11:02:06', 60, '2021-10-28 10:05:54', 0, NULL, 1),
(6648, 'umesheka balasubramaniyam', '11', '7448586298', '', 'umeshekab@gmail.com', '1999-08-06', 22, '2', '2', 'balasubramaniyam', 'business', 600000.00, 1, 0.00, 20000.00, 'thiruchirapalli', 'thiruchirapalli', '2110220007', '1', '1', 'upload_files/candidate_tracker/48468483928_umesheka_ resume.pdf', NULL, '1', '2021-10-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-22 11:29:00', 1, '2021-10-22 11:37:47', 0, NULL, 1),
(6649, 'Absin Rashath Ahamed', '11', '7904351849', '', 'ahamedabsin@gmail.c', '1995-08-15', 26, '2', '1', 'Muhshina zohara', 'Hr (Admin)', 55000.00, 0, 0.00, 13000.00, '8/9A2 chinna Arisikara ST,Manambuchavadi,thanjavur', 'No.4 Ponappa Lane,Triplicane,chennai-5', '2110220008', '1', '1', 'upload_files/candidate_tracker/2708416454_CV.PDF', NULL, '3', '2021-10-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication,No Sustainability with the previous companies, will not handle pressure and sustainability doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-22 11:44:09', 1, '2021-10-22 03:34:13', 0, NULL, 1),
(6650, 'John christyan', '6', '9789838369', '9884577259', 'johnchristyan10@gmail.com', '1992-10-10', 29, '1', '2', 'thomas', 'working', 9000.00, 1, 28000.00, 28000.00, 'kodambakkam', 'kodambbakm', '2110220009', '', '2', 'upload_files/candidate_tracker/24853826745_Resume.docx', NULL, '1', '2021-10-22', 0, 'p1236', '3', '59', '2021-11-01', 375000.00, '', '4', '2022-09-13', '1', 'Selected for Santhosh Team with CTC 375000 includes PF/ESI/PT - No relevant Insurance Sales Exp', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-22 12:43:45', 60, '2021-10-28 04:36:15', 0, NULL, 1),
(6651, 'Kavya', '11', '7708811422', '7010319388', 'kavyav315@gmail.com', '2006-10-22', 0, '2', '2', 'Venkatesan S', 'Fabrication', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2110220010', '1', '1', 'upload_files/candidate_tracker/25658298818_Kavya Resume.docx', NULL, '1', '2021-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok,Fresher career Gap ,Need to discuss with family on TxxampC,Sustainability doubts as she may get married in next 1 yr of time', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-22 12:44:40', 50, '2021-10-26 03:22:19', 0, NULL, 1),
(6652, 'KANDAPPAGARI MOORTHY', '11', '9966643241', '8179412513', 'murthyiam999@gmail.com', '1999-08-08', 22, '2', '2', 'K.subramanyam', 'Farmer', 10000.00, 2, 0.00, 17000.00, 'K.t.puram(v),puttur(m),chittoor(d),andhrapradesh', 'Abdulla street,Choolaimedu,chennai', '2110220011', '1', '1', 'upload_files/candidate_tracker/59058898721_k.moorthy Resume-5-converted.docx', NULL, '1', '2021-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,Communication Very Average, Not open with TxxampC Sustainability doubts,', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-22 01:05:53', 1, '2021-10-22 01:23:35', 0, NULL, 1),
(6653, 'sulochana', '11', '9884124521', '', 'sulochana.bala22@gmail.com', '1996-11-22', 24, '2', '2', 'balasubramanian', 'business', 90000.00, 2, 0.00, 300000.00, 'chennai', 'chennai', '2110220012', '1', '1', 'upload_files/candidate_tracker/22532729062_Sulochana.Resume.pdf', NULL, '1', '2021-10-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication OK,Little Stamerring,Sal Exp is very High', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-22 02:44:50', 1, '2021-10-22 02:48:39', 0, NULL, 1),
(6654, 'Vignesh V', '6', '9884545083', '', 'vigneshv2535@gmail.com', '1999-04-21', 22, '1', '2', 'Father', '3000', 35000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2110220013', '', '2', 'upload_files/candidate_tracker/71258380956_0_Vignesh.v resume.pdf', NULL, '1', '2021-10-22', 0, 'Jobs', '1', '17', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-22 04:54:16', 1, '2021-10-22 04:59:21', 0, NULL, 1),
(6655, 'Sathish', '22', '9566204761', '', 'sathishkumar602m@gmail.com', '1998-11-30', 22, '2', '2', 'M .Dhanasaker', 'Cnc operator', 1.00, 1, 13500.00, 15000.00, 'Chennai', 'Chennai', '2110230001', '1', '2', 'upload_files/candidate_tracker/90051522401_my resume.pdf', NULL, '1', '2021-10-23', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication,will not suits for our Digital Marketing,No basic Ideas about DM', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-23 06:08:24', 1, '2021-10-23 06:23:02', 0, NULL, 1),
(6656, 'Yuvarani', '11', '8939337747', '', 'Yuvaranivenkatesan99@gmail.com', '1999-05-04', 22, '2', '2', 'Venkatesan', 'Own transportation', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Porur', '2110230002', '1', '1', 'upload_files/candidate_tracker/15266568412_Yuvarani resume.pdf', NULL, '1', '2021-10-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,, Fresher MBA, No basic knowledge in Recruitment, Need time to check with her family on Txxampc. From Gerugambakkam she needs to travel, Sustainability Doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-23 11:25:59', 1, '2021-10-23 11:31:47', 0, NULL, 1),
(6657, 'Arosha Babu.S', '22', '7358281516', '', 'aroshaarya143@gmail.com', '2000-08-08', 21, '2', '2', 'Suresh Babu S', 'Mechanic', 20000.00, 1, 0.00, 16000.00, 'Maraimalainagar', 'Maraimalainagar', '2110230003', '1', '1', 'upload_files/candidate_tracker/67440083997_new arosha cv.pdf', NULL, '1', '2021-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-23 12:36:16', 1, '2021-10-23 12:40:06', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6658, 'Thaarunyan M', '22', '9094041605', '7904668721', 'thaarunyan@gmail.com', '2000-10-05', 21, '2', '2', 'Manoharan M', 'Health educator', 80000.00, 1, 0.00, 18000.00, '10/28, Bharathi Avenue 4th Street,Perungalathur', 'chennai', '2110230004', '1', '1', 'upload_files/candidate_tracker/74930024949_APWPT5724P_Q3_2021-22 P THIYAGARAJAN.pdf', NULL, '1', '2021-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication very Average,No basic knowledge  in Digital Marketing,Too Long,Sustainability doubts as he requires time to check with his family on 2 yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-23 03:41:43', 50, '2021-10-26 10:54:27', 0, NULL, 1),
(6659, '', '0', '8531900801', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110230005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-23 06:46:30', 0, NULL, 0, NULL, 1),
(6660, 'Soundhar', '11', '7639781671', '', 'msoundhar7@gmail.com', '1999-09-02', 22, '2', '2', 'Moorthy', 'Farmer', 150000.00, 1, 0.00, 18000.00, 'Menallur', 'Kanchipuram', '2110230006', '1', '1', 'upload_files/candidate_tracker/30156144046_Soundhar Resume October.pdf', NULL, '1', '2021-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-23 06:54:50', 1, '2021-10-23 07:01:02', 0, NULL, 1),
(6661, '', '0', '9361874553', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110240001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-24 11:14:07', 0, NULL, 0, NULL, 1),
(6662, 'KATHIJA BEGAM N', '4', '8248565686', '9884675681', 'Parveenroja13@gmail.com', '1995-12-12', 25, '4', '1', 'RAJESH R', 'Reporter', 25000.00, 1, 0.00, 13000.00, 'No.11/625 ,kannadasan salai, , chennai - 37', 'No.12/344,12th block,chennai -37', '2110250001', '', '1', 'upload_files/candidate_tracker/64156817452_kathija begam N - 24.10.2020.pdf', NULL, '3', '2021-10-25', 0, '', '3', '59', '2021-10-26', 126312.00, '', '2', '1970-01-01', '2', 'Selected for Muthu Team Elite RE in CAsh mode - 10K TH', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent - Candidate dropped due to her husbandxquots transfer', '', '', '', NULL, NULL, NULL, 1, '2021-10-25 09:59:56', 60, '2021-10-28 10:17:33', 0, NULL, 1),
(6663, '', '0', '6379057034', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110250002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-25 12:15:57', 0, NULL, 0, NULL, 1),
(6664, 'Dinesh', '23', '7449088428', '9344830159', 'dineshseds@gmail.com', '1999-05-31', 22, '2', '2', 'Sekar', 'Kilkodungalore', 3000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2110250003', '1', '1', 'upload_files/candidate_tracker/68108515727_DINESH @RESUME .pdf', NULL, '1', '2021-10-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'fresher, working as Data Entry operator in Navy (Contract Role). Distance around 44KMS up xxamp down, Not much comfortable with TxxampC,, Thinking a lot on Agreement, Sustainability Doubts If candidate comes back need to review and finalise.', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-25 01:03:58', 1, '2021-10-25 01:11:01', 0, NULL, 1),
(6665, 'Vignesh.c', '5', '9360076827', '9597144878', 'vv909199@gmail.com', '2001-07-03', 20, '2', '2', 'Jayanthi.f', 'Kooli', 5000.00, 0, 0.00, 15000.00, 'Jolarpettai', 'Jolarpettai', '2110250004', '1', '1', 'upload_files/candidate_tracker/92961920318_resume.pdf', NULL, '2', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Seems Not interested,whenever calling he says outside', '5', '1', '0', '1', '1', '0', '2', '2021-11-10', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-25 03:12:55', 1, '2021-11-08 11:20:24', 0, NULL, 1),
(6666, 'Kumudhavalli.v', '4', '9500166520', '', 'rkvalli095@gmail.com', '1996-10-03', 25, '2', '2', 'Viswanathan. N', 'Railway', 40000.00, 1, 0.00, 15000.00, 'Tiruvallur', 'Tiruvallur', '2110260001', '1', '2', 'upload_files/candidate_tracker/65098391190_new resume ram kum.docx', NULL, '1', '2021-10-26', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected because both are blood relative sister ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-26 10:39:22', 1, '2021-10-26 01:20:24', 0, NULL, 1),
(6667, 'indhumathi v', '4', '7358007855', '', 'indhumathi.pgdm18005@rsb.edu.in', '1998-02-21', 23, '2', '2', 'vishwanathan', 'railways', 40000.00, 1, 10000.00, 10000.00, 'thiruvallur', 'thiruvallur', '2110260002', '1', '2', 'upload_files/candidate_tracker/32576093291_indhu resume.docx', NULL, '1', '2021-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate not interested to accept the offer as her sister who attended the interview  in Tiruvallur branch got rejected in the Interview', '1', '1', '', '4', '6', '', '2', '2021-10-27', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-26 10:40:42', 50, '2021-10-26 11:11:12', 0, NULL, 1),
(6668, 'D. Bharathi', '4', '9840806900', '9789916345', 'Shaganabharathi2303@gmail', '1995-05-12', 26, '2', '2', 'Bharathi', 'Retail', 15000.00, 4, 15000.00, 15000.00, 'Chrompet', 'Chrompet', '2110260003', '3', '2', 'upload_files/candidate_tracker/78652703172_Shagana Resume.docx', NULL, '1', '2021-10-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Sounds very average,have a retail sales exp.Pressure handling doubts in  our domain..Will not  sustain for our role', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-26 11:19:29', 1, '2021-10-26 11:24:35', 0, NULL, 1),
(6669, 'MARIA RUBAN', '5', '6374998991', '', 'RUBAN2428@GMAIL.COM', '2000-04-24', 21, '2', '2', 'Maria Lazar', 'Executive supervisor', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2110260004', '1', '1', 'upload_files/candidate_tracker/10102448004_RUBAN.pdf', NULL, '1', '2021-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-26 11:36:31', 1, '2021-10-26 11:47:02', 0, NULL, 1),
(6670, 'Vishnu kumar', '4', '9751760206', '', 'duraivishnu13699@gmail.com', '1999-06-13', 22, '2', '2', 'Durairaj', 'Farmer', 10000.00, 1, 0.00, 14000.00, '2/437,main road ,Alambadi(p.o),Cuddalore(d.t)', 'The great hotel,karapakkam,chennai 600097', '2110260005', '1', '1', 'upload_files/candidate_tracker/10514177752_resume vishnu.pdf', NULL, '1', '2021-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate got another opportunity\n', '1', '1', '', '1', '1', '', '2', '2021-10-27', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-26 11:40:33', 50, '2021-10-26 11:58:36', 0, NULL, 1),
(6671, 'Ramaraj', '4', '9003780508', '9751760206', 'ramr41670@gmail.com', '2000-05-12', 21, '2', '2', 'Selvaraj', 'Farmer', 10000.00, 3, 0.00, 15.00, '1/96,middle street , pimbalur(po),perambalr (dt)', 'Great pg, vembuli street, karappakkam,chennai', '2110260006', '1', '1', 'upload_files/candidate_tracker/78136421524_Ramaraj resume.doc', NULL, '1', '2021-10-26', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for telecalling', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-26 11:41:40', 50, '2021-10-26 11:58:48', 0, NULL, 1),
(6672, 'Kabina k', '4', '9677497216', '9787619375', 'kkabina2211@gmail.com', '2001-07-30', 20, '1', '2', 'Karunanithi D', '30000', 6000.00, 2, 0.00, 15000.00, '1/6north street, puthakar, mayiladuthur) , 609 203', 'Porur', '2110260007', '', '1', 'upload_files/candidate_tracker/30701183927_convocation.pdf', NULL, '1', '2021-10-26', 0, 'Jobs', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Wont suit for sales', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-26 11:48:18', 1, '2021-10-26 12:07:15', 0, NULL, 1),
(6673, 'Karthick', '3', '9514798829', '9841460322', 'karthicksag@gmail.com', '1997-01-08', 25, '3', '1', 'Harini', 'No', 20000.00, 2, 0.00, 16000.00, 'No.57, mettu Street, Nandhivaram, guduvanchiry.', 'Chennai.603202', '2110260008', '', '1', 'upload_files/candidate_tracker/83610582430_Document karthick resume . pdf.pdf', NULL, '3', '2022-03-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-26 01:25:35', 1, '2022-03-24 02:09:54', 0, NULL, 1),
(6674, 'M.Vignesh', '4', '9361954242', '', 'vignezhvignezh88@gmail.com', '1999-12-01', 21, '2', '2', 'm.Shanthi', 'Tailor', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2110260009', '1', '1', 'upload_files/candidate_tracker/65958521547_Resume vignesh.pdf', NULL, '1', '2021-10-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'very average communication, Much focus into Nonvoice process, Location is Guduvancherry, Will not handle pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-26 07:45:22', 1, '2021-10-27 09:53:44', 0, NULL, 1),
(6675, 'S KISHORE KUMAR', '5', '8056899902', '', 'kishore100693@gmail.com', '1993-06-10', 28, '2', '2', 'Selvam', 'Driver', 20000.00, 1, 470000.00, 650000.00, 'Chennai', 'Chennai', '2110270001', '1', '2', 'upload_files/candidate_tracker/33980440926_KkishoreResume2021updated.pdf', NULL, '1', '2021-10-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate have bancassurance exp and he much prefers for Sr Level position,not open for Agency positons,looking only for Sales but the salary exp is very high and the candidate sustainability doubts in our company', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-27 06:27:07', 1, '2021-10-27 06:30:56', 0, NULL, 1),
(6676, 'Y.RANJITH', '5', '9940047688', '8056250226', 'Yuvanjanu5678@g-mail.com', '2000-09-02', 21, '1', '2', 'H.YUVAN', 'DAILY WAGES', 15000.00, 1, 0.00, 10000.00, 'No,38th,2nd Street Kamaraj nagar,Ennore chennai 57', 'No,38th,2nd Street Kamaraj Nagar,Ennore Chennai 57', '2110270002', '', '1', 'upload_files/candidate_tracker/20989521978_ranjith cv.pdf', NULL, '1', '2021-10-27', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Internal reference, from ennore location have data entry exp and looking for non voice opportunities', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-27 10:03:58', 1, '2021-10-27 10:28:25', 0, NULL, 1),
(6677, 'Mohan Babu', '6', '7299852466', '', 'mohanbabu.Sakthivelu@gmail.com', '1998-08-23', 23, '2', '2', 'Sakthivelu', 'Software project manager', 250000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2110270003', '1', '1', 'upload_files/candidate_tracker/14018051722_CV 2021 SEPT.pdf', NULL, '1', '2021-10-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher,Candidate is focusing for the Core Designing(Mechanical Domain),also look for IT openings, Will not suit for Sales and our IT openings too.Will not sustain with us \n', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-27 11:32:49', 50, '2021-10-29 01:17:59', 0, NULL, 1),
(6678, 'sridhar', '4', '8939456510', '', 'sridharmani@gmail.com', '1993-06-13', 28, '2', '2', 'ganesan', 'social worker', 20000.00, 2, 12000.00, 11000.00, 'velachery', 'velachery', '2110270004', '1', '2', 'upload_files/candidate_tracker/613573349_1632719499395_RESUME.SRIDHAR2 (1).pdf', NULL, '1', '2021-10-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication candidate gives preference for the Non voice positions only.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-10-27 12:39:03', 1, '2021-10-27 01:17:00', 0, NULL, 1),
(6679, 'Kavitha', '4', '9342426103', '6380060805', 'kavirishi98@gmail.com', '1998-05-25', 23, '3', '2', 'Sampath', 'Driver', 45000.00, 5, 0.00, 10000.00, 'Saidapet', 'Chennai', '2110270005', '', '1', 'upload_files/candidate_tracker/16374062379_Kavitha .pdf', NULL, '1', '2021-10-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate have exp in backend process in GRT and looking for Non Voice opportunities.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-27 01:00:20', 1, '2021-10-27 01:03:58', 0, NULL, 1),
(6680, 'Sathish kumar', '5', '8428204088', '', 'sathishrajsam25@Gmail.com', '1996-07-25', 25, '2', '2', 'Muthu raj', 'Business', 100000.00, 1, 220000.00, 250000.00, 'Perambalur', 'Perambalur', '2110270006', '14', '2', 'upload_files/candidate_tracker/17621518255_SATHISH KUMAR 25.pdf', NULL, '3', '2021-10-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-27 01:29:50', 1, '2021-10-27 01:37:59', 0, NULL, 1),
(6681, '', '0', '9025741101', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110270007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-27 03:38:29', 0, NULL, 0, NULL, 1),
(6682, 'Mehul Chauhan', '4', '7550066336', '', 'Mehulsnote9@gmail.com', '1993-01-11', 28, '2', '2', 'Arvind chauhan', 'Business man', 200000.00, 2, 19000.00, 22000.00, 'CHENNAI', 'CHENNAI', '2110270008', '1', '2', 'upload_files/candidate_tracker/32239688048_21 Mehul resume.pdf', NULL, '1', '2021-10-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Experienced much in Non Voice process,father is running his own business and he too have idea to ave the same.Not open for  Field Sales  and high Sal Exp for CRM profile,Not familiar in Tamil language', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-27 03:46:55', 1, '2021-10-29 12:26:56', 0, NULL, 1),
(6683, 'Kavitha M', '11', '6380535897', '7200215082', 'kavithamurali878@gmail.com', '1998-10-30', 23, '2', '2', 'R.Murali', 'Business', 20000.00, 1, 0.00, 12000.00, 'Madambakkam, Chennai', 'Madambakkam, Chennai', '2110280001', '1', '1', 'upload_files/candidate_tracker/359195405_Kavitha Murali resume .pdf', NULL, '1', '2022-02-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Didnt Turn Back - Too Long Distance Up And Down Almost 66 Kms.Sustainability Doubts ,Can Sign The SA,But Doubts A Lot', '6', '1', '0', '1', '1', '0', '2', '2022-02-04', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-10-28 10:57:17', 1, '2022-02-03 12:37:37', 0, NULL, 1),
(6684, 'A.Ragavi', '4', '9087548832', '8778276339', 'Ragaviammu415@gmail.com', '1998-12-14', 22, '2', '2', 'Anandhan', 'Mechanic', 15000.00, 1, 10000.00, 13000.00, 'Urappakkam', 'Urappakkam', '2110280002', '1', '2', 'upload_files/candidate_tracker/48785323622_0_ragavi resume.2.docx', NULL, '1', '2021-10-30', 28, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, have  exp in Non Voice Data Entry process. Too long distance from urappakam,Sustainability doubts in Voice process,5050 profile, Marriage has been fixed to happen in next 6 months', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-28 11:42:35', 1, '2021-10-28 12:53:12', 0, NULL, 1),
(6685, 'Ashwathi', '11', '8838496923', '', 'ashwathielangovan51@gmail.com', '1997-08-24', 24, '2', '2', 'Elangovan', 'ICF retired', 60000.00, 1, 0.00, 16000.00, 'Anakapthur', 'Anakapthur', '2110280003', '1', '1', 'upload_files/candidate_tracker/67501271836_ASHWATHI RESUME.pdf', NULL, '1', '2021-10-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-28 01:00:39', 1, '2021-10-28 01:06:17', 0, NULL, 1),
(6686, 'Ponmalar', '20', '7708907192', '', 'ponmalarguna86@gmail.com', '1999-06-08', 22, '2', '2', 'Gunasekaran', 'Business', 30000.00, 2, 0.00, 15000.00, 'Sattur', 'Chennai', '2110280004', '1', '1', 'upload_files/candidate_tracker/79361725014_lastshared.pdf', NULL, '1', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not responding to the calls, tried couple of days .Dropped the profile', '5', '1', '0', '1', '1', '0', '2', '2021-11-10', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-28 01:06:41', 1, '2021-11-06 05:02:47', 0, NULL, 1),
(6687, 'Faizan Basha', '6', '9342974576', '9677292973', 'faizanbasha77@gmail.com', '1996-06-06', 25, '2', '2', 'Shakila Banu', 'Home Maker', 20000.00, 1, 25000.00, 20000.00, 'Mylapore', 'Mylapore', '2110280005', '1', '2', 'upload_files/candidate_tracker/51267904864_FAIZAN BASHA RESUME-1.pdf', NULL, '1', '2021-10-29', 0, '', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'because he as many agents in his own family', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-28 01:16:54', 1, '2021-10-28 01:21:12', 0, NULL, 1),
(6688, 'Vinothini R', '25', '7550062835', '9994898477', 'vinothiniramesh1710@gmail.com', '2000-10-17', 21, '2', '2', 'Ramesh G', 'Auto driver', 8000.00, 1, 10500.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2110280006', '1', '2', 'upload_files/candidate_tracker/81906133006_CV .pdf', NULL, '1', '2021-11-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-28 03:37:22', 1, '2021-10-28 03:41:30', 0, NULL, 1),
(6689, 'Hemanth kumar. M', '6', '9080924982', '9787202340', 'Omiyahemanth@gmail.com', '1990-04-04', 31, '1', '2', 'M. Murugesan', 'Retired person', 600000.00, 2, 10800.00, 12000.00, 'Kelambakkam', 'Kelambakkam', '2110290001', '', '2', 'upload_files/candidate_tracker/82779770632_PDF Gallery_20211029_103749.pdf', NULL, '1', '2021-10-29', 15, 'P1066', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no cominnication skills', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-29 10:30:32', 60, '2021-10-29 04:11:44', 0, NULL, 1),
(6690, 'C.mary jency', '4', '7305453070', '8754479259', 'Mjency021@gmail.com', '2000-07-07', 21, '3', '2', 'Charles.s', 'Private company', 15000.00, 1, 14500.00, 15000.00, 'Kaladipet thiruvoutiyur', 'Kaladipet thiruvoutiyur', '2110290002', '', '2', 'upload_files/candidate_tracker/73201779208_CV_2021-10-14-063608.pdf', NULL, '1', '2021-10-29', 0, '', '4', '11', NULL, 0.00, '', '0', NULL, '2', 'Internal Team Reference, No Relevant sales,6 months work in Credit card Collection, Too long distance, Left previous company due to location constraint only, kindly check and suggest', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-29 12:07:29', 1, '2021-10-29 12:17:49', 0, NULL, 1),
(6691, 'arifu nissa', '11', '7448304740', '', 'arifunissa97@gmail.com', '1997-12-30', 23, '2', '2', 'gulam mohammed', 'own business', 20000.00, 3, 15000.00, 20000.00, 'chennai', 'chennai', '2110290003', '1', '2', 'upload_files/candidate_tracker/26045990649_ARIFUNISSA RESUME.docx', NULL, '1', '2021-11-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,have exp in Digital Marketing and HR activities,Not much comfortable with the document submission, Salary Exp is around 20K.If she comes back with  her confirmation lets try, Pressure handling doubts a lot', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-29 03:49:34', 1, '2021-10-29 03:52:35', 0, NULL, 1),
(6692, 'RAMYA P', '2', '7550200393', '', 'ramya628p@gmail.com', '1999-11-06', 21, '2', '2', 'PARTHIBAN K', 'Worker', 200000.00, 1, 0.00, 12000.00, 'Thirumazhisai', 'Thirumazhisai', '2110290004', '1', '1', 'upload_files/candidate_tracker/75308647519_Resume_Ramya.docx', NULL, '1', '2021-11-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-29 04:04:53', 1, '2021-10-29 04:31:04', 0, NULL, 1),
(6693, 'abdul hannan', '13', '9600986026', '', 'abdulhannanit.m@gmail.com', '1999-12-29', 21, '2', '2', 'mannan m', 'batchelor of engineering', 120000.00, 3, 11000.00, 25000.00, 'pallavaram', 'pallavara', '2110290005', '1', '2', 'upload_files/candidate_tracker/25260619_resume (5).pdf', NULL, '1', '2021-10-30', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-29 04:12:49', 1, '2021-10-29 04:17:46', 0, NULL, 1),
(6694, 'Amudha G', '4', '9025510790', '9791082006', 'amudhaguna19@gmail.com', '2001-06-19', 20, '3', '2', 'Guna Sekaran S', 'Coolie', 20000.00, 2, 8000.00, 15000.00, 'Vysarpadi', 'Kk Nagar', '2110300001', '', '2', 'upload_files/candidate_tracker/62958227590_AMUDHA RESUME.docx', NULL, '1', '2021-10-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'have 6 months exp in back end operations and much focus on the Non Voice Positions,Will not sustain with us and pressure handling doubt', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-30 11:51:27', 1, '2021-10-30 12:17:14', 0, NULL, 1),
(6695, 'J.soundarya', '4', '9176591749', '', 'Soundaryavignesh@gamil.com', '2001-01-16', 20, '1', '2', 'Radha.p', 'Cooly', 8000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2110300002', '', '1', 'upload_files/candidate_tracker/80684303379_AMUDHA RESUME.docx', NULL, '1', '2021-10-30', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Presurre handling and sustainability doubts.Came along her friend only much comforts for non voice ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-30 12:02:49', 1, '2021-10-30 12:07:41', 0, NULL, 1),
(6696, 'Lakshmi Annamalai', '4', '7695841538', '9841310010', 'toLakshmiAnnamalai@gmail.com', '1998-06-17', 23, '2', '2', 'Annamalai', 'Farmer', 8000.00, 2, 15000.00, 18000.00, 'Perambalur', 'Ekkaduthangal', '2110300003', '3', '2', 'upload_files/candidate_tracker/48495515413_Lakshmi Annamalai .doc', NULL, '1', '2021-10-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, have exp in non voice/voice process. Presurre handling and sustainability doubts on this profile.Will not fit for our role', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-30 12:42:26', 1, '2021-10-30 01:09:07', 0, NULL, 1),
(6697, 'Wajahath Ali', '4', '8807822585', '7449244260', 'wajahathali1996@gmail.com', '1996-01-02', 25, '2', '2', 'Yusuf', 'Iron&stells', 15000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2110300004', '3', '2', 'upload_files/candidate_tracker/33052149121_RESUME-Wajahath.docx', NULL, '1', '2021-10-30', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Frequent Job Changer, most prefer to go in Admin openings, Not open for Field sales and the salary Expectation is very high. Not Suitable for CRM', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-30 12:45:05', 1, '2021-10-30 12:49:57', 0, NULL, 1),
(6698, 'Shanon Shirisa Abishek', '11', '8248600401', '', 'shanaabishek@gmail.com', '1996-11-13', 24, '2', '2', 'Shireen', 'Housewife/clerk', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2110300005', '1', '1', 'upload_files/candidate_tracker/12843859547_SHANON (2).pdf', NULL, '1', '2021-11-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-30 01:09:19', 1, '2021-10-30 01:40:20', 0, NULL, 1),
(6699, '', '0', '8072148970', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110300006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-30 10:30:15', 0, NULL, 0, NULL, 1),
(6700, '', '0', '7010573581', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110310001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-31 07:28:00', 0, NULL, 0, NULL, 1),
(6701, 'Pavithra', '4', '9952465522', '9884340366', 'Vijayjai50@gmail.com', '1992-11-13', 28, '1', '1', 'T subramani', 'Teacher', 3000.00, 1, 15000.00, 15000.00, 'Perambur', 'Perumber', '2111010001', '', '2', 'upload_files/candidate_tracker/79040310808_Application.pdf', NULL, '1', '2021-11-01', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not ready to work in Targets,no voice process Exp,will not sustain with us\n', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-01 12:23:23', 1, '2021-11-01 12:29:30', 0, NULL, 1),
(6702, '', '0', '8939166833', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111010002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-01 03:06:56', 0, NULL, 0, NULL, 1),
(6703, 'Kandhavishnu B', '11', '8778946971', '9994516291', 'balakrishnankandhavishnu@gmail.com', '1997-04-14', 24, '2', '2', 'Balakrishnan', 'Agriculture', 75000.00, 0, 0.00, 25000.00, 'Pollachi', 'Pollachi', '2111010003', '1', '1', 'upload_files/candidate_tracker/57231423805_Kandhavishnu-B-Resume (3).pdf', NULL, '1', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He is in internship till dec 2021,College yet to complete. Communication ok 5050 profile, handling pressure doubtful and sustainability doubts\n', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-01 03:32:49', 1, '2021-11-01 03:42:09', 0, NULL, 1),
(6704, 'Deshma Marcelin A', '23', '8248032919', '', 'deshmamarcelin6352@gmail.com', '1998-06-18', 23, '2', '2', 'Albert Antony Doss', 'Unemployed', 60000.00, 1, 0.00, 20000.00, 'Tambaram', 'Tambaram', '2111010004', '1', '1', 'upload_files/candidate_tracker/55493769444_0_amazon resume.docx', NULL, '2', '2021-11-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-01 07:57:15', 1, '2021-11-01 08:00:26', 0, NULL, 1),
(6705, 'Madhuri M', '11', '8754680661', '8778328990', 'madhurim749@gmail.com', '1997-01-17', 24, '2', '2', 'Radhakrishna M', 'Contractor', 50000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2111020001', '1', '1', 'upload_files/candidate_tracker/18810974217_Madhuri_Resume-converted.pdf', NULL, '2', '2021-11-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Got another offer', '6', '1', '0', '1', '1', '0', '2', '2021-11-10', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-02 12:52:11', 1, '2021-11-02 12:55:55', 0, NULL, 1),
(6706, 'harish', '11', '8608608100', '', 'harishkasi95@gmail.com', '1999-04-23', 22, '2', '2', 'kasi', 'human resource management', 20000.00, 1, 0.00, 13500.00, 'krishnagiri', 'chennai', '2111020002', '1', '1', 'upload_files/candidate_tracker/65042838126_Harish_IT Recruiter.pdf', NULL, '1', '2021-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Recruitment,have 2 yrs of Exp in Govt,Looking for the recruitment,but not  ready to work for Non It Sales profile. Sustainability Doubts for our role', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-02 01:29:57', 1, '2021-11-02 05:17:23', 0, NULL, 1),
(6707, '', '0', '9629806214', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111020003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-02 02:44:29', 0, NULL, 0, NULL, 1),
(6708, 'Vetrivel', '11', '8667037421', '7299540838', 'velvetri103@gmail.com', '1993-09-14', 28, '2', '2', 'M govindaraj', 'Hr executive', 40000.00, 3, 16000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2111020004', '1', '2', 'upload_files/candidate_tracker/63860623738_Vetrivel G hr profile (1).docx', NULL, '3', '2021-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Focus on the IT profile Recruitment only.Not much comfort with TxxampC.,Will not sustain for a long,also will not handle our pressure', '6', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-02 05:10:51', 1, '2021-11-02 05:19:57', 0, NULL, 1),
(6709, 'nijen . p', '11', '9952066709', '9884534079', 'nijenpeter@gmail.com', '1993-06-09', 28, '2', '2', 'lucy mary', 'house wife', 30000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2111030001', '1', '1', 'upload_files/candidate_tracker/65747196880_Nijen Peter.pdf', NULL, '3', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication  Ok,Fresher For REcruitment, Have Exp In AR Caller, Plan To Do MBA In Correspondance, Requested time to check With His Parents On TxxampC, Candidate didnt came back with his confirmation.Dropped', '6', '2', '0', '1', '1', '0', '2', '2021-11-15', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-03 12:13:50', 1, '2021-11-08 02:42:56', 0, NULL, 1),
(6710, 'Janani', '13', '9884152378', '', 'jan.sudha1097@gmail.com', '1997-10-10', 24, '2', '2', 'P R gopi', 'Product Manger', 25000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2111030002', '1', '2', 'upload_files/candidate_tracker/381449365_JananiCV (1) (1).docx', NULL, '1', '2021-11-10', 3, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Having knowledge in the basics of PHP,6 months Exp in PHP,Seems comfort with the TxxampC but the salary Exp is very High 6 months - 18K Exp ,She is from Porur Location', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-03 02:07:51', 1, '2021-11-03 02:16:39', 0, NULL, 1),
(6711, 'S M Iqhbaal Sharif', '14', '8754935761', '', 'iqhbaal@gmail.com', '1997-10-26', 24, '2', '2', 'S M Jaavith Sharif', 'Business', 20000.00, 1, 0.00, 15000.00, 'Pallavaram', 'Pallavaram', '2111030003', '1', '1', 'upload_files/candidate_tracker/7712599991_Iqhbaal Resume.doc', NULL, '1', '2021-11-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic Knowledge in ReactNative,2021 BCA,Fresher, Need time to check on the TxxampC,Brother is working in the Altencalsoft .If he coesback with his confirmation,can analyse based on the system task', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-03 03:05:30', 1, '2021-11-08 02:51:04', 0, NULL, 1),
(6712, 'suganya', '13', '8825769946', '', 'suganbala597@gmail.com', '1997-03-05', 24, '2', '2', 'r balasubramanian', 'vp', 50000.00, 1, 14000.00, 20000.00, 'chennai', 'chennai', '2111030004', '1', '2', 'upload_files/candidate_tracker/48249557969_Suganya_CV.pdf', NULL, '1', '2021-11-10', 3, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Discussed with her for the Zoom Interview,but after that the candidate not responding to the calls,tried couple of times in multiple days.Finally dropped the profile', '2', '2', '0', '1', '1', '0', '2', '2021-11-11', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-03 03:59:04', 1, '2021-11-03 04:52:53', 0, NULL, 1),
(6713, 'MADHANKUMAR S', '13', '9445825981', '', 'madhankumar05072000@gmail.com', '2000-07-05', 21, '2', '2', 'SARAVANAN', 'security officer', 6000.00, 1, 0.00, 10000.00, 'kanchipuram', 'Kanchipuram', '2111050001', '1', '1', 'upload_files/candidate_tracker/14417122474_MADHANKUMAR.S (1)-converted (1)-converted.pdf', NULL, '1', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'need time to check with parents on TxxampC,5050 profile,not seems to very active.sustainability doubts on the profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-05 01:16:19', 1, '2021-11-05 01:19:46', 0, NULL, 1),
(6714, 'g.prem kumar', '5', '9597635757', '', 'gprem94@gmail.com', '1994-07-15', 27, '2', '2', 'lavanya', 'salaried', 50000.00, 0, 25000.00, 30000.00, 'Gummidipondi', 'madipakkam', '2111060001', '1', '2', 'upload_files/candidate_tracker/93501269274_RESUME .pdf', NULL, '1', '2021-11-08', 0, '', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'no idea in insurance', '5', '1', '0', '1', '1', '0', '2', '2021-11-15', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-06 11:38:17', 1, '2021-11-06 12:29:40', 0, NULL, 1),
(6715, 'Arvind kumar', '11', '8903264391', '', 'arvind17091998@gmail.com', '1998-05-17', 23, '2', '2', 'A. Prem Kumar', 'Ex - SBI manager', 50000.00, 1, 0.00, 350000.00, 'KRISHNAGIRI', 'KRISHNAGIRI', '2111060002', '1', '1', 'upload_files/candidate_tracker/6892927109_HR recruiter Updated CV.pdf', NULL, '1', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '2 month in byju for 4 LPA, Exp 20-25K as salary, Have a plan to move abraod  after few years,5050 profile, very close to bangalore looking for opportunities over there too\n', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-06 05:28:02', 1, '2021-11-06 05:30:52', 0, NULL, 1),
(6716, '', '0', '9566336145', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111060003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-06 07:15:14', 0, NULL, 0, NULL, 1),
(6717, '', '0', '6380793081', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111060004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-06 08:29:11', 0, NULL, 0, NULL, 1),
(6718, 'A Abdul kasim', '2', '8610904064', '9524756038', 'abdulkasim361998@gmail.com', '1998-06-03', 23, '2', '2', 'A Abbas manthiri', 'Web designer', 30000.00, 2, 0.00, 12000.00, 'Theni', 'Chennai', '2111070001', '1', '1', 'upload_files/candidate_tracker/46641220514_Resume+2.pdf', NULL, '1', '2021-11-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills knowledge, having his own business and he prefers to continue the same. Will not sustain for a long', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-07 08:58:44', 7, '2022-02-17 12:31:37', 0, NULL, 1),
(6719, '', '0', '7338998342', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111070002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-07 09:33:01', 0, NULL, 0, NULL, 1),
(6720, 'Meena', '5', '7448438263', '8939409260', 'meenameena63585@gmail.com', '1997-12-29', 23, '2', '2', 'Rajaram', 'Masan', 20000.00, 3, 14000.00, 15000.00, 'Kovilambakkam Medavakkam main road', 'Kovilambakkam Medavakkam main road', '2111080001', '3', '2', 'upload_files/candidate_tracker/15740034210_Meena Resume.pdf', NULL, '1', '2021-11-08', 0, '', '3', '59', '2021-11-23', 170496.00, '', '5', '1970-01-01', '2', 'Selected for ESales Profile with CTC 170496 for Karthika Team - Prop', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', 'Selected,Offer Mail sent to the candidate', '', '', '', NULL, NULL, NULL, 1, '2021-11-08 10:30:26', 60, '2021-11-22 10:31:05', 0, NULL, 1),
(6721, 'B. shanthi', '4', '7305379261', '8056090627', 'shanthikuttyma18@gmail.com', '1999-05-18', 22, '2', '2', 'G. balaiya', 'contractor', 30000.00, 1, 0.00, 13000.00, 'kovilambakkam chennai', 'kovilambakkam', '2111080002', '3', '1', 'upload_files/candidate_tracker/3369216657_1636348999621_1636348997672_shanthi (1).pdf', NULL, '1', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, sustainability doubts on this profile,2 companies in 1year,also location constraint', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-08 10:39:41', 1, '2021-11-08 10:53:51', 0, NULL, 1),
(6722, 'Vinothkumar R', '5', '7550189188', '', 'vkvinoth414@gmail.com', '1994-07-30', 27, '2', '2', 'Raji', 'Fishering', 20000.00, 1, 16000.00, 19000.00, 'Chennai', 'Chennai', '2111080003', '1', '2', 'upload_files/candidate_tracker/26647941823_VINOTH Resume 2.docx', NULL, '2', '2021-11-08', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '5050 profile, communication ok, but not much comforts for our sales, no bike ,sustainability doubts on this profile', '5', '1', '0', '1', '1', '0', '2', '2021-11-10', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 10:46:15', 1, '2021-11-08 10:49:27', 0, NULL, 1),
(6723, 'Sudharshan C', '5', '9500716942', '7010042938', 'sudharshanchandrasekar@gmail.com', '1996-09-28', 25, '2', '2', 'Chandrasekar S', 'gold Smith', 15000.00, 1, 0.00, 350000.00, 'Karaikudi', 'Karaikudi', '2111080004', '1', '1', 'upload_files/candidate_tracker/41064825197_Sudharshan Resume.pdf', NULL, '2', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open to take calls,will not sustain', '5', '1', '0', '1', '1', '0', '2', '2021-11-22', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 10:49:47', 1, '2021-11-08 10:52:00', 0, NULL, 1),
(6724, 'Teenu priya.y', '4', '9080914389', '9025538597', 'teenuholic3@gmail.com', '2001-04-03', 20, '2', '2', 'Yuvaraj', 'Electriction', 8.00, 1, 10.00, 16.00, 'Kodabakkam cheenai', 'Kodabakkam cheenai', '2111080005', '1', '2', 'upload_files/candidate_tracker/73335962432_teenu.pdf', NULL, '3', '2021-11-08', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '4 months In Office in star health f electrician M HM,correspondance MCA,ccna course completed,Looking only for the salary,will not sustain with us.next month only she can join \n', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 11:02:31', 1, '2021-11-08 11:38:39', 0, NULL, 1),
(6725, '', '0', '9677303270', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111080006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-08 11:17:00', 0, NULL, 0, NULL, 1),
(6726, 'Aarthi', '11', '7305214014', '', 'aarthusri23@gmail.com', '1999-11-23', 21, '2', '2', 'Kumar', 'Driver', 400000.00, 1, 13000.00, 20000.00, 'Chennai', 'Chennai', '2111080007', '1', '2', 'upload_files/candidate_tracker/41588852011_Aarthi Update Resume.docx', NULL, '2', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Holding 3-4 Offers 17K max, Communication is Good,3 months exp in Buzzworks.Salary Expectation is very high. Sustainability Doubts\n', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 11:28:23', 1, '2021-11-08 11:34:41', 0, NULL, 1),
(6727, 'Afraz Hussain', '2', '7904541423', '9894598971', 'pmafraz@gmail.com', '1999-12-27', 21, '2', '2', 'Hyder Hussain', 'Employee', 15000.00, 2, 0.00, 10000.00, 'Vellore', 'Vellore', '2111080008', '1', '1', 'upload_files/candidate_tracker/50010118119_Afraz s Resume.pdf', NULL, '2', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Got another Offer', '2', '1', '0', '1', '1', '0', '2', '2021-11-11', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 11:41:41', 1, '2021-11-08 11:46:40', 0, NULL, 1),
(6728, '', '0', '8754544015', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111080009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-08 11:42:00', 0, NULL, 0, NULL, 1),
(6729, 'Raghavan Sekar', '5', '9940174607', '9566176875', 'raghavansekar369@gmail.com', '1998-03-12', 23, '2', '2', 'gowri', 'clerk', 15000.00, 0, 0.00, 300000.00, 'chennai', 'chennai', '2111080010', '17', '1', 'upload_files/candidate_tracker/76926645152_null.pdf', NULL, '2', '2021-11-09', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, No Insurance Sales Exp, Have tried for some Govt Exams Earlier, ', '5', '1', '', '1', '1', '', '2', '2021-11-10', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-08 11:56:30', 60, '2021-11-10 11:37:34', 0, NULL, 1),
(6730, 'Aravind Rajkumar', '4', '9360848320', '8838676115', 'aravindofficial17@gmail.com', '1996-09-17', 25, '2', '2', 'Rajkumar', 'Business', 10000.00, 0, 10500.00, 11000.00, 'Thanjavur', 'Thanjavur', '2111080011', '1', '2', 'upload_files/candidate_tracker/23393773234_CV_2021-11-05-112739.pdf', NULL, '1', '2021-11-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-08 12:06:25', 50, '2021-11-08 05:19:38', 0, NULL, 1),
(6731, '', '0', '8686369669', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111080012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-08 12:31:22', 0, NULL, 0, NULL, 1),
(6732, 'Sufiyan Patnool', '5', '8332887324', '8919530524', 'Sufiyanpatnool11@gmail.com', '1998-08-24', 23, '2', '2', 'P moula Valli', 'Tailor', 30000.00, 2, 270000.00, 310000.00, 'Chennai', 'Chennai', '2111080013', '1', '2', 'upload_files/candidate_tracker/41060202204_PATNOOL SUFIYAN.pdf', NULL, '2', '2021-11-09', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Local communication, candidate is from andhra he prefers much for Telugu xxamp Hindi communications.Will not suits for our role', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 01:03:35', 1, '2021-11-08 02:59:37', 0, NULL, 1),
(6733, 'JENIFER MARTIN', '11', '9150785836', '7358982309', 'jenimartin1899@gmail.com', '2000-08-18', 21, '2', '2', 'Pushparani P', 'Nurse', 28000.00, 2, 0.00, 15000.00, '2/235,Main road, Sathiyamangalam,Gingee tk.', 'chennai', '2111080014', '1', '1', 'upload_files/candidate_tracker/91809282251_JENIFER MARTIN(Resume).pdf', NULL, '2', '2021-11-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communciation ok, Not much comfort with the TxxampC, Fresher, Sustainability Doubts, Father is doing business in Singapore, Brother did his studies in Singapore, Mother Govt Health Dept Staff. Salary Exp also High being a fresher\n\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-08 02:00:43', 60, '2021-11-09 11:33:08', 0, NULL, 1),
(6734, 'nandhagopal s', '11', '7530092312', '8667569946', 'nandhagopal04092000@gmail.com', '2000-09-04', 21, '2', '2', 'shanmugam m', 'labour', 72000.00, 1, 0.00, 16000.00, 'tiruchirappalli', 'Tiruchirappalli', '2111080015', '1', '1', 'upload_files/candidate_tracker/38814754898_Nandhagopal Resume.pdf', NULL, '2', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped - RNR', '6', '1', '0', '1', '1', '0', '2', '2021-11-10', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 02:05:33', 1, '2021-11-08 10:25:21', 0, NULL, 1),
(6735, 'balaji t.u', '11', '7402279929', '', 'balajitu5@gmail.com', '1996-06-11', 25, '2', '2', 'umapathi d', 'business', 40000.00, 1, 0.00, 25000.00, 'tanjore', 'chennai', '2111080016', '1', '1', 'upload_files/candidate_tracker/67193948073_Balaji Resume-1(5).pdf', NULL, '3', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, need time to check with parents on the TxxampC, Pressure handling seems to doubt on the profile\n', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 02:37:22', 1, '2021-11-08 06:51:24', 0, NULL, 1),
(6736, 'monikasree', '11', '9094336775', '9500177909', 'monikasree202@gmail.com', '2000-02-20', 21, '2', '2', 'Vijayakumar', 'driver', 1.75, 1, 0.00, 2.75, '19/41 canal bank road ,c.i.t.nagar, Chennai-35', '19/41 Canal Bank Road ,C.I.T.Nagar, Chennai-35', '2111080017', '1', '1', 'upload_files/candidate_tracker/40161453875_Monikasree\'s Resume.pdf', NULL, '3', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Scheduled for a F2F ,but candidate didnt turn', '6', '1', '0', '1', '3', '0', '2', '2021-11-10', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 02:46:26', 1, '2021-11-08 02:52:20', 0, NULL, 1),
(6737, 'Kevin Xavier', '5', '6363671724', '', 'kevinxavier120@gmail.com', '1996-10-24', 25, '2', '2', 'J Xavier Israel', 'Unemployed', 50000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2111080018', '17', '2', 'upload_files/candidate_tracker/50037363944_KEVIN XAVIER (1).pdf', NULL, '2', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Communication Is Good, But We Prefer To Have A Good Local Communication For This Insurance Sales. Having Exp In Multiple Domains And Understood From The Discussion Had With The Candidate That He Comforts To Work In Other Domain Areas. For our Insurance Sales seems not to be much comfortable with handling the pressure.', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-08 03:35:45', 1, '2021-11-08 03:42:03', 0, NULL, 1),
(6738, 'Abdul Basith', '23', '9710123208', '9710030175', 'abashid75@gmail.com', '1999-04-10', 22, '2', '2', 'Azhar ali', 'Business', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2111080019', '1', '1', 'upload_files/candidate_tracker/984260875_Abdul.CV.pdf', NULL, '1', '2021-11-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Looking Only For The Internship And Not Open Up To Learn Addtional Skills.Much Comfortable To Work Only In Designing. Candidate commited to share the porfolio but didnt turned', '2', '1', '0', '1', '1', '0', '2', '2021-11-11', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 03:41:03', 1, '2021-11-08 03:46:49', 0, NULL, 1),
(6739, 'MAHAESWARI A', '11', '8220869460', '', 'mahaeswariarumugam@gmail.com', '1996-09-25', 25, '2', '2', 'ARUMUGAM', 'Attender', 7000.00, 1, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2111080020', '1', '1', 'upload_files/candidate_tracker/46783127942_MAHAESWARI A.pdf', NULL, '2', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, will not sustain for a long ,communication average. Pressure handling also doubts and the salary exp is high\n', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 04:39:02', 1, '2021-11-08 04:45:07', 0, NULL, 1),
(6740, 'saravanakumar d', '11', '9677804321', '', 'saravanatarus@gmail.com', '1992-08-22', 29, '2', '2', 'duraisamy', 'business', 50000.00, 1, 0.00, 25000.00, 'palani', 'chennai', '2111080021', '1', '1', 'upload_files/candidate_tracker/73108498147_SARAVANA.pdf', NULL, '3', '2021-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 06:34:13', 1, '2021-11-08 06:42:55', 0, NULL, 1),
(6741, '', '0', '6363671723', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111080022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-08 06:40:43', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6742, 'siddesh', '4', '9884593535', '9884803535', 'sideshtorreto@gmail.com', '1998-11-14', 22, '2', '2', 'sangeetha', 'business', 50000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2111090001', '1', '1', 'upload_files/candidate_tracker/91265868701_P.V._SIDDESH_Resume Adv.pdf', NULL, '1', '2021-11-09', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for tele sales', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-09 11:14:34', 60, '2021-11-09 03:58:49', 0, NULL, 1),
(6743, 'SIVAGURUNATH S', '13', '8825903142', '9655969513', 'sivaguruit2015@gmail.com', '1998-04-17', 23, '2', '2', 'SIVARAMAN SUMATHI', 'House wife', 70000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2111090002', '1', '1', 'upload_files/candidate_tracker/58093531051_SIVAGURUNATH\'s Resume (3)(1).pdf', NULL, '1', '2021-11-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-09 12:53:35', 1, '2021-11-09 12:57:20', 0, NULL, 1),
(6744, 'Kanagavel V', '13', '9715506458', '', 'kanagavelvelusamy@gmail.com', '1995-03-27', 26, '2', '2', 'Velusamy V', 'Gas Welder', 10000.00, 2, 0.00, 13000.00, 'Tiruchengode, Namakkal (Dt).', 'Tiruchengode, Namakkal (Dt).', '2111090003', '1', '1', 'upload_files/candidate_tracker/94972478921_Resume.pdf', NULL, '1', '2021-11-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'RNR Dropped', '2', '2', '', '1', '1', '', '2', '2021-11-13', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-09 01:07:35', 60, '2021-11-12 11:59:41', 0, NULL, 1),
(6745, 'Mohammad liyan', '6', '8870454856', '6379540451', 'gmohammedliyan@gmail.com', '2001-04-19', 20, '2', '2', 'G shakeel Ahmed', 'Job', 16000.00, 4, 0.00, 20000.00, 'Vaniyambadi', 'Vaniyambadi', '2111090004', '17', '1', 'upload_files/candidate_tracker/42503602837_Mohammed liyan.pdf', NULL, '3', '2021-11-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,candidate much comfort to work in non voice process only. Will not sustain in our sales process', '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-09 04:45:15', 1, '2021-11-09 04:55:03', 0, NULL, 1),
(6746, '', '0', '9677303170', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111090005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-09 05:02:21', 0, NULL, 0, NULL, 1),
(6747, 'Thowfeek Rahman', '6', '8667347545', '', 'Thowfeekr7@gmail.com', '2000-04-15', 21, '1', '2', 'RAHMATULLAH', 'Self', 8000.00, 1, 0.00, 13000.00, 'Mannady', 'T nagar', '2111100001', '', '1', 'upload_files/candidate_tracker/88791416256_New Doc 2021-09-02 09.39.30_1.pdf', NULL, '1', '2021-11-10', 0, '55574', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-10 11:54:17', 60, '2021-11-10 05:19:11', 0, NULL, 1),
(6748, 'Balasurya', '6', '9710923773', '9710023773', 'Suryasaifai@gmail.c', '1998-11-02', 23, '1', '2', 'M.sathiya moorthy', 'TV mechanic', 15000.00, 1, 15000.00, 20000.00, 'N0.29/105 2nd floor muthamman kom chennai-600023', 'N0.29/105 2nd Floor Muthaanavaram Chennai-600023', '2111100002', '', '2', 'upload_files/candidate_tracker/82480893896_RESUME.docx', NULL, '1', '2021-11-10', 0, 'P1177', '4', '57', NULL, 0.00, '', '0', NULL, '1', 'Internal Reference, have exp in Insurance Sales and the Salary Expectation is very High.Holding  an offer for 18K.If hired sustainability doubts, please do check for RE', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-10 02:40:37', 1, '2021-11-10 02:47:23', 0, NULL, 1),
(6749, 'aravind s', '11', '7904562723', '', 'aravindssa12@gmail.com', '1997-03-12', 24, '2', '2', 'sankar p', 'farmer', 10000.00, 1, 0.00, 15000.00, 'vadalur', 'chennai', '2111120001', '1', '1', 'upload_files/candidate_tracker/2224567647_Aravind S HR.pdf', NULL, '2', '2021-11-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Sustainability Doubts he is aving a plan to start business.Handling pressure also doubts on this profile', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-12 12:14:29', 1, '2021-11-12 01:10:53', 0, NULL, 1),
(6750, 'AMUDHA', '4', '7358027240', '9176921979', 'amudhaarunachalam710@gmail.com', '2001-01-21', 20, '3', '2', 'Arunachalam', 'Whatchman', 12000.00, 2, 0.00, 10000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2111120002', '', '1', 'upload_files/candidate_tracker/41461754526_amudha A.docx', NULL, '1', '2021-11-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, need to open up will not handle our pressure. Sustainability doubts', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-12 12:48:59', 1, '2021-11-12 12:58:29', 0, NULL, 1),
(6751, 'Jothika.G', '4', '6380208970', '', 'jothi6120@gmail.com', '2000-12-21', 20, '3', '2', 'L Gopalakrishnan', 'Vegetable sales', 100000.00, 2, 0.00, 12000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2111120003', '', '1', 'upload_files/candidate_tracker/63981031898_Jothika(Resume).pdf', NULL, '1', '2021-11-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,Communication Average, will not sustain   xxamp pressure handling doubts.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-12 12:49:59', 1, '2021-11-12 12:59:21', 0, NULL, 1),
(6752, 'keerthana Priya R', '11', '9941925374', '6379061621', 'keerthipria212@gmail.com', '2000-12-02', 20, '2', '2', 'M. Ramesh', 'Driver', 96000.00, 1, 0.00, 175000.00, 'Chennai', 'Chennai', '2111120004', '1', '1', 'upload_files/candidate_tracker/585415834_Resume Keerthanapriya-converted-converted-converted (1).pdf', NULL, '1', '2021-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-12 01:00:09', 1, '2021-11-12 01:05:49', 0, NULL, 1),
(6753, 'HARIHARAN B', '11', '9444830533', '7904928046', 'harisubramanian480@gmail.com', '1996-08-03', 25, '2', '2', 'Balasubramanian R (Late)', 'Nil', 15000.00, 1, 0.00, 15000.00, '22, Gayathri Amman koil street,Chidambaram', '22, Gayathri Amman Koil Street,Chidambaram', '2111120005', '1', '1', 'upload_files/candidate_tracker/26013051522_RESUME.pdf', NULL, '1', '2021-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-12 01:07:48', 1, '2021-11-12 01:12:28', 0, NULL, 1),
(6754, 'Dillibabu', '6', '9566085368', '8248754501', 'dillibabu5652@gmail.com', '1990-06-28', 31, '3', '1', 'Gomathy chandrasekar', 'Working', 40000.00, 2, 220000.00, 350000.00, 'Chennai', 'Chennai', '2111120006', '', '2', 'upload_files/candidate_tracker/89831517373_Resume dilli today .file mac - Copy (1)mani.docx', NULL, '1', '2021-11-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,have backend exp ,not much open with Target,not open for collections.looking only for Sr Level positions and the salary exp is very high ', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-12 01:16:31', 1, '2021-11-12 01:21:03', 0, NULL, 1),
(6755, 'M.vijayalakshmi', '4', '9150711221', '9043388245', 'Vv231837@gmail.com', '1997-10-08', 24, '4', '1', 'Mathiazhagan', 'Cooly', 20000.00, 4, 0.00, 15000.00, 'No:489/955,p.h road,arumbakkam,chennai-600106', 'Chennai arumbakkam', '2111120007', '', '2', 'upload_files/candidate_tracker/65834105636_Vijayalakshmi resume.pdf', NULL, '1', '2021-11-12', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile, Have Exp In Telecaller, Kindly Check For E Sales RM And Let Me Know', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '6', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-12 02:13:12', 60, '2021-11-12 07:02:54', 0, NULL, 1),
(6756, 'k.iyappan', '2', '8610593462', '9176814202', 'iyappank717@gmail.com', '2001-09-28', 20, '2', '2', 'Kandasamy', 'Mason', 20000.00, 1, 0.00, 15000.00, 'No : 8/96 Pillayar Koil Street Paraniputhur', 'No : 8/96 Pillayar Koil Street Paraniputhur', '2111120008', '1', '1', 'upload_files/candidate_tracker/6538939148_myResume.pdf', NULL, '1', '2021-11-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,No basic skills knowledge,Not much open with internship cum employment,sustainability Doubts', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-12 06:41:20', 1, '2021-11-12 07:04:14', 0, NULL, 1),
(6757, 'Vignesh S', '4', '8754176560', '', 'svignesh20000@gmail.com', '2000-10-21', 21, '3', '2', 'Sivaprakash', 'Cooli', 75000.00, 1, 0.00, 13000.00, 'Chittathur', 'Chittathur', '2111130001', '', '1', 'upload_files/candidate_tracker/56911127689_Vignesh resume.pdf', NULL, '1', '2021-11-13', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'not suitable this profile looking for non- voice ', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-13 10:06:06', 1, '2021-11-13 10:15:41', 0, NULL, 1),
(6758, 'mohan raj s', '22', '9176455565', '', 'mohansraj2001@gmail.com', '2006-11-13', 0, '2', '2', 'sathyavathy s', 'junior executive', 60000.00, 1, 0.00, 250000.00, 'chennai', 'chennai', '2111130002', '1', '1', 'upload_files/candidate_tracker/17794640778_Resume LS.pdf', NULL, '1', '2021-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Offered him for the internship cum employment, candidate expects very high pay of 20K Gross, Suggested him for the Internship alone too, but not interested for this', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-13 12:29:04', 1, '2021-11-13 12:34:52', 0, NULL, 1),
(6759, 'Ananthi P R', '21', '9363273473', '', 'ananthi.PR.411@gmail.com', '1997-11-05', 24, '3', '2', 'P Rajendiran', 'Driver', 9000.00, 1, 270000.00, 351000.00, 'Chennai', 'Chennai', '2111130003', '', '2', 'upload_files/candidate_tracker/52767824997_ANANTHI P R RESUME.docx', NULL, '1', '2021-11-13', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interviewed by Gokul and profile has been rejected', '3', '1', '', '1', '1', '', '1', '1970-01-01', '2', '4', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-13 12:51:10', 60, '2021-11-13 06:51:57', 0, NULL, 1),
(6760, 'Andrea Jency Lawrence', '11', '7358261899', '9150957722', 'andreajency4@gmail.com', '2000-08-22', 21, '2', '2', 'Lawrence', 'VRS', 20000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2111140001', '1', '1', 'upload_files/candidate_tracker/16497239964_andrea_jency-updated1-converted 22-converted.pdf', NULL, '1', '2021-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 10:26:59', 1, '2021-11-14 12:16:08', 0, NULL, 1),
(6761, 'Maharajan R', '11', '7448496755', '9345283859', 'maharajah0002@gmail.com', '1995-10-09', 26, '2', '2', 'Nil', 'Student', 25000.00, 1, 0.00, 16000.00, 'Chennai', 'chennai', '2111140002', '1', '1', 'upload_files/candidate_tracker/85919104600_RESUME R MAHARAJAN123(1).pdf', NULL, '1', '2021-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication, little attitude, currently working in ICICI prudential and looking for HR Recruitment. Not open for TxxampC, will not sustain', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 10:46:41', 1, '2021-11-14 11:21:55', 0, NULL, 1),
(6762, 'Samynathan', '4', '6381882623', '7358464133', 'samys4849@gmail.com', '1998-07-27', 23, '2', '2', 'Rajendran', 'Daily wages', 12000.00, 1, 12000.00, 16000.00, 'Chennai', 'Chennai', '2111140003', '1', '2', 'upload_files/candidate_tracker/32904269997_resume 1(1).pdf', NULL, '1', '2021-11-15', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Sales, he worked as a coordinator in his previous exp, looking for non voice opening only/backend operations like KYC verification', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-14 12:11:27', 1, '2021-11-14 12:17:36', 0, NULL, 1),
(6763, 'Ranjith sugumar', '11', '9092248648', '', 'ranjithsugu1997@gmail.com', '1997-12-24', 23, '2', '2', 'Sugumar Mohan', 'Business', 35000.00, 1, 0.00, 20000.00, '13/6 New Street, Broadway, Chennai-600001', '40/13 4th Street,Vasantha Nagar,Thiruvattiyur,Ch.', '2111140004', '1', '1', 'upload_files/candidate_tracker/50210966249_1636874532731Resume_Ranjith.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Have Interest towards robotics and automation, Not much comfort to work in Target', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 12:43:28', 1, '2021-11-14 12:59:28', 0, NULL, 1),
(6764, 'sundar. j', '22', '9884343572', '', 'shansub97@gmail.com', '1997-07-26', 24, '2', '2', 'jagadeesan', 'deputy general manager', 75000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2111140005', '1', '1', 'upload_files/candidate_tracker/93646764757_SUNDAR RESUME.pdf', NULL, '1', '2021-11-16', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate not suitable for the profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 12:50:34', 1, '2021-11-14 01:08:30', 0, NULL, 1),
(6765, 'AKASH JOHNSON A', '11', '8270179864', '7871937266', 'akashjohnson43@gmail.com', '2000-09-30', 21, '2', '2', 'Albert s', 'Agriculture', 12000.00, 1, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2111140006', '1', '1', 'upload_files/candidate_tracker/54097137054_Resume_AKASH JOHNSON_Format7.pdf', NULL, '1', '2021-11-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 01:03:25', 1, '2021-11-14 01:29:35', 0, NULL, 1),
(6766, 'RajaSuma.D.K', '13', '7358800276', '9962103042', 'rs.dk.25@gmail.com', '1999-09-13', 22, '2', '2', 'Kanaga.D', 'Homemaker', 13000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2111140007', '1', '1', 'upload_files/candidate_tracker/21625852690_rsfinal 128.pdf', NULL, '3', '2021-11-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic knowledge in Javascript,,Handling pressure and sustainability  doubts on this profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-14 01:06:47', 60, '2021-11-16 05:40:36', 0, NULL, 1),
(6767, '', '0', '8939257822', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-14 01:26:42', 0, NULL, 0, NULL, 1),
(6768, 'Parthasarathy Ethirajan', '23', '9962332986', '7397353470', 'parthasarathy289@gmail.com', '2000-10-24', 21, '2', '2', 'Kasthuri', 'Homemaker', 10000.00, 1, 0.00, 150000.00, 'No:57,maduranaicken St,Maduravoyal,Chennai', 'No:57,Maduranaicken St,Maduravoyal,Chennai', '2111140009', '1', '1', 'upload_files/candidate_tracker/35323273259_Parthsarathy _Resume 2021.pdf', NULL, '1', '2021-11-15', 0, '', '3', '60', '2021-11-16', 0.00, '', '3', '2021-11-17', '1', 'Selected the candidate for the internship', '2', '1', '', '1', '1', '', '2', '2021-11-16', '1', '2', 'Selected fot the internship,Joined and abscond from the second day', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-14 02:58:28', 60, '2021-11-17 07:06:20', 0, NULL, 1),
(6769, 'Priyanka.s', '11', '9790729121', '9551152440', 'priyankasekat1097@gmail.com', '1997-10-23', 24, '2', '2', 'P.sekar', 'Secretariat [JA]', 35000.00, 2, 15000.00, 20000.00, 'Chennai near oldwashermenpet', 'Chennau near oldwashermenpet', '2111140010', '1', '2', 'upload_files/candidate_tracker/79712840901_PRIYANKA RESUME NEW 1.doc', NULL, '1', '2021-11-16', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Not much comfortable with TxxampC, Not ready to work in target if we have for the recruitment,In 10 months 2 companies and working in FMCG company with 15K TH and Expecting more ', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 03:02:51', 1, '2021-11-14 03:34:43', 0, NULL, 1),
(6770, 'C.Queen Elizabeth Joswana', '11', '8015889494', '9940369855', 'queen140101@gmail.com', '2001-01-14', 20, '2', '2', 'Arulraj', 'Employee', 20000.00, 1, 0.00, 20000.00, '74,sathyamoorthy Street,Jeeva Nagar,Korukkupet,C21', '74,sathyamoorthy Street,Jeeva Nagar,Korukkupet,C21', '2111140011', '1', '1', 'upload_files/candidate_tracker/26567510901_RESUME-converted (1).pdf', NULL, '1', '2021-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Very poor communication, no basic knowledge, Poor understanding, not suitable.', '6', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 03:13:40', 1, '2021-11-15 10:07:47', 0, NULL, 1),
(6771, 'Devakar Balachandran', '13', '9677756724', '', 'devakarbalachandran@gmail.com', '1997-06-17', 24, '2', '2', 'R.Balachandran', 'Retired Supredent', 15000.00, 1, 15000.00, 15000.00, 'Trichy', 'Chennai', '2111140012', '1', '2', 'upload_files/candidate_tracker/69590741994_Devakar Balachandran_Profile (1).pdf', NULL, '1', '2021-11-16', 0, '', '3', '59', '2021-12-01', 96000.00, '', '', '2021-12-04', '2', 'Selected for PHP - Intern for 3 months then employement overall 3 yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-14 04:45:18', 60, '2021-12-01 07:33:36', 0, NULL, 1),
(6772, 'Peter jerald.s', '21', '8220435283', '', 'jeraldpeter2308@gemail.com', '2000-08-23', 21, '2', '2', 'Savari mathu. A', '8th', 72000.00, 1, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2111140013', '1', '1', 'upload_files/candidate_tracker/65546594445_resume.pdf', NULL, '1', '2021-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication no, no sustainability in his previous exp. not clear on the position he looks. Comforts to work in Non voice. Not suitable for our role ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-14 05:28:55', 60, '2021-11-15 03:57:44', 0, NULL, 1),
(6773, 'Vasanthra', '22', '6379498593', '', 'vasanthraalagar1234@gmail.com', '1999-03-17', 22, '2', '2', 'KK Alagarsamy', 'Street vendor', 25000.00, 2, 0.00, 20000.00, 'Mogappair east, chennai', 'Mogappair east, chennai', '2111150001', '1', '1', 'upload_files/candidate_tracker/46747999034_Vasanthra Resume 2-1-converted.pdf', NULL, '1', '2021-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication very average, no basic knowledge about digital marketing, salary Exp is very high. worked in Accounts/Admin no stability in her experience', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-15 10:33:37', 1, '2021-11-15 10:37:52', 0, NULL, 1),
(6774, 'Gogulnath s', '6', '9789071988', '8754812988', 'gokulnethu@gmail.com', '1995-05-29', 26, '2', '2', 'Subramani', 'Farmer', 100000.00, 3, 16500.00, 21000.00, 'Cuddalore', 'Poonamallee', '2111150002', '1', '2', 'upload_files/candidate_tracker/77527222640_GOGULNATH N resume.docx', NULL, '1', '2021-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Average Communication,no sustainability in his previous exp. Worked in various domain. Not suitable for our sales ,will not sustain for a long', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-15 10:45:32', 1, '2021-11-15 10:52:21', 0, NULL, 1),
(6775, 'Divyabharathi.b', '5', '7401572278', '8122373003', 'Dheemasaran@gmail.com', '1999-01-04', 22, '2', '1', 'Satheeshkumar.M', 'A.z.Manager', 15000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2111150003', '1', '2', 'upload_files/candidate_tracker/11229027521_Divya Satheesh New Resume.pdf', NULL, '1', '2021-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-15 10:48:10', 1, '2021-11-15 11:14:57', 0, NULL, 1),
(6776, 'Dorathi', '5', '7550109464', '8939081404', 'dorathi417@gmail.com', '1998-06-03', 23, '2', '2', 'Dhanasingh', 'watch man', 10000.00, 1, 0.00, 15000.00, 'Iyyapanthangal', 'Iyyapanthangal', '2111150004', '1', '1', 'upload_files/candidate_tracker/11269264911_Resume Dorathy Photo (1).pdf', NULL, '1', '2021-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-15 11:04:05', 1, '2021-11-15 11:10:45', 0, NULL, 1),
(6777, 'Vetrivel.j', '6', '8838501548', '', 'vetrivel19993010@gmail.com', '1999-10-30', 22, '1', '2', 'Jagadheesan. S', 'Civil', 20000.00, 2, 0.00, 15000.00, 'Geragambakkam', 'Geragambakkam', '2111150005', '', '1', 'upload_files/candidate_tracker/97065320976_VETRIVEL RESUME-1.docx', NULL, '1', '2021-11-15', 0, 'P1072', '3', '59', '2021-12-06', 168000.00, '', '4', '2021-12-13', '1', 'Selected for Arumbakkam  - Saravanan Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', 'offer Link shared', '', '', '', NULL, NULL, NULL, 1, '2021-11-15 12:11:16', 60, '2021-12-06 01:44:42', 0, NULL, 1),
(6778, '', '0', '9290444788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111150006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-15 12:21:59', 0, NULL, 0, NULL, 1),
(6779, 'Sugi.L', '5', '9176179913', '9176342833', 'sugismart03@gmail.com', '2001-08-29', 20, '2', '2', 'Lingam . S', 'Kuzhi', 45000.00, 1, 0.00, 15000.00, 'Yes', 'Yes', '2111150007', '1', '1', 'upload_files/candidate_tracker/14426994249_imgtopdf_15112021012632.pdf', NULL, '1', '2021-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much open up, have exp in accounts -  super market.Much comforts to work in Non voice process only', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-15 01:13:51', 50, '2021-11-15 01:52:42', 0, NULL, 1),
(6780, 'Naveenraj', '11', '8489895286', '9790532365', 'naveenranrajendran95@gmail.com', '1995-09-27', 26, '2', '2', 'Rajendran', 'Mechanic', 20000.00, 2, 20000.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2111150008', '1', '2', 'upload_files/candidate_tracker/42291485730_Resume-Naveen.pdf', NULL, '1', '2021-11-16', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication average, In 1.10 yrs 2 companies and the salary expectation is  very high. Candidate location is from Chengalpet', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-15 02:58:48', 1, '2021-11-16 02:16:52', 0, NULL, 1),
(6781, '', '0', '7871320026', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111150009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-15 03:23:57', 0, NULL, 0, NULL, 1),
(6782, 'R Aravindh', '11', '9600517709', '6374507686', 'aravindhstalin.97@gmail.com', '1997-06-12', 24, '2', '2', 'R.Vellathai', 'Housewife', 30000.00, 1, 249958.00, 300000.00, 'Madurai', 'Chennai', '2111150010', '1', '2', 'upload_files/candidate_tracker/52768113841_Aravindh resume-1.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication  ok, Attitude is there, Have Exp in US IT Recruitment.10 months 2 companies worked Last drawn Salary is 20100 and not ready to negotiate less than this. Sustainability doubts on this profile', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-15 04:25:35', 1, '2021-11-15 04:31:53', 0, NULL, 1),
(6783, '', '0', '7449023167', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111150011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-15 04:34:02', 0, NULL, 0, NULL, 1),
(6784, 'T.Tamilarasi', '13', '9629760517', '8056511840', 'tamilarasithirumalai2017@gmail.com', '2000-07-09', 21, '2', '2', 'Thirumalai', 'Coolie', 36000.00, 2, 0.00, 12000.00, 'Thiruvannamalai', 'Ambattur', '2111150012', '1', '1', 'upload_files/candidate_tracker/92352341582_Jaba resume-converted.docx', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Active, No basic knowledge in HTML,CSS,JS, will not sustain. Not suitable for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-15 07:03:25', 1, '2021-11-15 07:25:00', 0, NULL, 1),
(6785, 'R MARIA DASAN STANLEY', '5', '7010746455', '', 'stanleymaria1994@gmail.com', '1994-11-28', 26, '2', '2', 'D ROSARY MORAIS', 'Marketing', 500000.00, 2, 22.00, 30.00, '4/131 state bank colony', 'Infinity urban Porur', '2111160001', '1', '2', 'upload_files/candidate_tracker/78779033414_resume- maria dasan stanley.docx', NULL, '1', '2021-11-16', 0, '', '4', '44', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok, No relevant Exp in Sales. He is into business for a long. Kindly check  and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-16 10:38:06', 1, '2021-11-16 10:44:58', 0, NULL, 1),
(6786, 'D.kishorekumar', '4', '8248438845', '9003240412', 'Kishoreduke125@gmail.com', '1999-02-16', 22, '2', '2', 'Lakshmi', 'Housewife', 15000.00, 1, 13000.00, 15000.00, 'Arumbakkam', 'chennai', '2111160002', '3', '2', 'upload_files/candidate_tracker/35748567462_MBA ex.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok,have 1 yr of exp but frequent permission/leaves during the work. Will not sustain and not suitable for our role', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 10:42:24', 1, '2021-11-16 10:50:33', 0, NULL, 1),
(6787, '', '0', '8939493493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111160003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-16 10:51:41', 0, NULL, 0, NULL, 1),
(6788, 'Sevanthi', '4', '9345754861', '9790882981', 'ramyasweety0402@gmail.com', '2000-07-02', 21, '3', '2', 'Selvi', '-', 13000.00, 2, 12000.00, 15000.00, 'Ennore', 'Ennore', '2111160004', '', '2', 'upload_files/candidate_tracker/51232497073_TapScanner 11-01-2021-11.55(1).pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much open up, too long distance from Ennore.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 11:06:18', 1, '2021-11-16 11:18:21', 0, NULL, 1),
(6789, 'Mahalakshmi', '4', '7338786212', '9840796313', 'mahag6212@gmail.com', '1993-10-11', 28, '3', '2', 'Banumathy', 'Housewife', 40000.00, 2, 12.50, 15.00, 'CHENNAI', 'CHENNAI', '2111160005', '', '2', 'upload_files/candidate_tracker/19675603826_MAHALAKSHMI-1.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Worked in Voice xxamp Non Voice 3 yrs 4 companies  handling pressure and sustainability doubts on this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 11:08:19', 1, '2021-11-16 11:14:04', 0, NULL, 1),
(6790, 'S Mahalakshmi', '11', '9940425965', '', 'selvakumar.mahalakshmi@gmail.com', '1996-10-08', 25, '2', '2', 'V. SELVAKUMAR', 'Driver', 72000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2111160006', '1', '1', 'upload_files/candidate_tracker/91653097279_S MAHALAKSHMI_RESUME.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is Good, Career Gap, Holding offer with CTS for 3 LPA, and looking for some more offers. Will not sustain with us', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-16 11:39:59', 50, '2021-11-17 12:05:04', 0, NULL, 1),
(6791, 'VIGNESH V', '4', '9043388245', '9884645978', 'vicky3011997@gmail.com', '1997-11-30', 23, '4', '2', 'VENKATESAN', 'Business', 25000.00, 2, 19500.00, 20000.00, 'Chennai', 'Chennai', '2111160007', '', '2', 'upload_files/candidate_tracker/18102588483_VICKY RESUME.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,working in share trading company,just as a coordinator.In 1.2 yrs changed 2 companies .Pressure handling doubts and salary expectation is very high as he was getting around 19.5 TH', '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 12:14:40', 1, '2021-11-16 12:19:07', 0, NULL, 1),
(6792, 'Anandhi', '11', '9600189404', '', 'anandhi10121998@gmail.com', '1998-12-10', 22, '2', '2', 'Subramanian', 'Driver', 150000.00, 1, 0.00, 18000.00, '11/598 kannadhasan salai mogappair east Chennai 37', '11/598 Kannadhasan Salai Mogappair East Chennai', '2111160008', '1', '1', 'upload_files/candidate_tracker/52528539754_Anandhi S (1).pdf', NULL, '1', '2021-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-16 01:25:22', 1, '2021-11-16 02:37:27', 0, NULL, 1),
(6793, 'PAWAN GIRI', '5', '9676541939', '8074598417', 'pavangirimktg@gmail.com', '1992-07-15', 29, '2', '1', 'RUBY GIRI', 'Job', 40000.00, 3, 21700.00, 28000.00, 'Mau, Uttarpradesh, India', 'Hyderabad, Telangana, India', '2111160009', '19', '2', 'upload_files/candidate_tracker/9103089303_Pawan Giri Resume_PAWAN GIRI(6).pdf', NULL, '2', '2021-11-19', 15, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Rejected - Will not sustain, Poor communication, Previous working experience is unapt, not having a laptop.\n', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 01:55:32', 1, '2021-11-16 03:12:05', 0, NULL, 1),
(6794, 'Ganesh GR', '4', '8825975466', '9884344145', 'ganeshyadhav1313@gmail.com', '1999-12-13', 21, '3', '2', 'G Rajamani', 'Skilled assistant', 20000.00, 0, 0.00, 13000.00, 'Oldwashermenpet', 'Oldwashermenpet', '2111160010', '', '1', 'upload_files/candidate_tracker/91752970570_ganesh resu.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average not open for Target based position. Looking for the Core Mechanical position. For time being looking for other positions', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 02:07:59', 1, '2021-11-16 02:11:24', 0, NULL, 1),
(6795, '', '0', '9505320305', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111160011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-16 02:24:31', 0, NULL, 0, NULL, 1),
(6796, '', '0', '7985249154', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-16 02:40:46', 0, NULL, 0, NULL, 1),
(6797, 'SIDDANTAPU NAVEEN KUMAR', '17', '9441121402', '', 'naveenks93@yahoo.com', '1993-05-05', 28, '2', '2', 'KRISHNA', 'Agriculture', 633000.00, 2, 633000.00, 790000.00, 'Hyderabad', 'Warangal', '2111160013', '19', '2', 'upload_files/candidate_tracker/85970911246_Resume_NaveenKS_B4.pdf', NULL, '1', '2021-11-20', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' the candidate is expecting the high Pay than we suggested. Dropped', '5', '2', '0', '3', '4', '0', '2', '2021-11-23', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 02:41:00', 1, '2021-11-16 02:45:51', 0, NULL, 1),
(6798, '', '0', '8754536032', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111160014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-16 03:36:34', 0, NULL, 0, NULL, 1),
(6799, '', '0', '8428526435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111160015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-16 04:28:33', 0, NULL, 0, NULL, 1),
(6800, 'Anandhi', '11', '9841760945', '9600189404', 'anandhi10121998@gmail.com', '1998-12-10', 22, '2', '2', 'Subramanian', 'Driver', 1.50, 1, 0.00, 18000.00, '11/598 Kannadhasan Salai Mogappair East Chennai', '11/598 mogappair east Chennai 37', '2111160016', '1', '1', 'upload_files/candidate_tracker/48411494838_Anandhi S (1).pdf', NULL, '1', '2021-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-16 05:00:30', 1, '2021-11-16 05:06:45', 0, NULL, 1),
(6801, 'rajaparthi satya naga karthik', '4', '9107511999', '', 'rsnk2011@gmail.com', '1992-07-04', 29, '3', '2', 'somalingam', 'rmp', 100000.00, 0, 22000.00, 25000.00, 'amalapuram', 'visakapatnam', '2111160017', '', '2', 'upload_files/candidate_tracker/56977340035_Resume.doc', NULL, '3', '2021-11-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 10:12:37', 1, '2021-11-16 10:16:44', 0, NULL, 1),
(6802, 'Indrajith', '4', '9176830382', '7305656292', 'viratindrajith3118@gmail.com', '2006-11-17', 0, '2', '2', 'Dhanasekar', 'Cooly', 20000.00, 2, 0.00, 15000.00, 'Tondiarpet', 'Tondiarpet', '2111170001', '1', '1', 'upload_files/candidate_tracker/60337073802_Indrajith_Resume.pdf', NULL, '1', '2021-11-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 2 months exp in voice process, left the company due to work pressure and looking for Admin openings, also plan to do Course related to IT. Will not handle our pressure, Not suits for our role', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-17 10:54:07', 50, '2021-11-17 12:01:35', 0, NULL, 1),
(6803, 'Inba kumar', '23', '6379885635', '8838804119', 'Inbak434@gmail.com', '1999-04-18', 22, '2', '2', 'Sagaya doss', 'Mechanic', 12000.00, 1, 10000.00, 15000.00, 'Chennai', 'Perambur chennai', '2111170002', '1', '2', 'upload_files/candidate_tracker/28232354813_1_INBA KUMAR RESUME 2021.docx', NULL, '1', '2021-11-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Collections and looking for non voice openings(data Entry/Documentation),not comfortable for voice process', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-17 11:11:57', 50, '2021-11-17 12:02:50', 0, NULL, 1),
(6804, 'N Divya', '4', '7358405384', '9043524026', 'Divyan248@gmail.com', '1994-11-02', 27, '1', '2', 'J Nagarajan', 'Father', 15000.00, 5, 15000.00, 180000.00, 'Perungudi', 'Perungudi', '2111170003', '', '2', 'upload_files/candidate_tracker/47257635533_DIVYA RESUME.doc', NULL, '3', '2021-11-17', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Frequent Job changer,have exp in both voice xxamp non  voice but much comfort for non voice.Long career Gap.Will not sustain with us', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-17 12:30:13', 1, '2021-11-17 12:50:03', 0, NULL, 1),
(6805, 'Sharmila.B', '4', '7358740133', '9363193108', 'sharmila06061996@gmail.com', '1996-06-06', 25, '1', '2', 'Shanthi', 'Mother', 10000.00, 4, 15000.00, 18000.00, 'Vyasarpadi', 'Vyasarpadi', '2111170004', '', '2', 'upload_files/candidate_tracker/4538523120_Resume.pdf', NULL, '1', '2021-11-17', 0, 'Jobs', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Hold On Long Pending', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-17 12:33:50', 1, '2021-11-17 12:43:56', 0, NULL, 1),
(6806, 'Mohan Raj T', '4', '9080464881', '9941678836', 'mohanmithran44@gmailcom', '1996-04-30', 25, '4', '2', 'Thangavel M', 'Hotel Room boy', 14000.00, 2, 0.00, 17000.00, 'Chennai', 'Mgr nagar', '2111170005', '', '1', 'upload_files/candidate_tracker/91329357585_m.priyanka.doc', NULL, '1', '2021-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-17 01:22:27', 1, '2021-11-17 01:32:17', 0, NULL, 1),
(6807, 'R.Elumalai', '4', '7826981544', '6369159713', 'Erselumalai1999@gmail.com', '1999-07-28', 22, '4', '2', 'Ramachadiran.r', 'Clerk', 15000.00, 1, 0.00, 15000.00, 'Kallakurichi dt . Chinnasalem.', 'Urappakkam', '2111170006', '', '1', 'upload_files/candidate_tracker/78973286949_Resume.pdf', NULL, '1', '2021-11-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,Career Gap and he is interest to go with the agriculture, but his parents push him to get  into Job, No communication, will not sustain for our pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-17 01:33:56', 1, '2021-11-17 01:40:18', 0, NULL, 1),
(6808, '', '0', '9710332849', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111170007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-17 04:01:01', 0, NULL, 0, NULL, 1),
(6809, 'Tamizh selvan', '11', '7010032896', '', 'tamizhselvan619@gmail.com', '1997-06-17', 24, '2', '2', 'Selvarajan', 'Retd pvt company worker', 15000.00, 1, 0.00, 25000.00, 'Ranipet', 'Chennai', '2111180001', '1', '1', 'upload_files/candidate_tracker/69225794482_Tamizh resume.pdf', NULL, '1', '2021-11-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok, Pursuing MBA In Evening College - Final Year. Have 2 Yrs Of Sales Exp. Looking For HR Openings, But Not Comfort With The TxxampC, Need Some Time To Check With Family. If He Comes Back Let Us Review And Consider - didnt Turn back with his opinion', '6', '1', '0', '1', '3', '0', '2', '2021-11-20', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-18 11:10:07', 1, '2021-11-18 11:13:37', 0, NULL, 1),
(6810, 'AJAY.S', '4', '6383808437', '9942812196', 'ajaydav0702@gmail.com', '2001-02-07', 20, '4', '2', 'Geetha senthil Kumar', 'Farmer', 50000.00, 1, 0.00, 10000.00, 'Kumbakonam', 'Kumbakonam', '2111180002', '', '1', 'upload_files/candidate_tracker/88170532476_AJAY RESUME 2021.docx', NULL, '1', '2021-11-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-18 01:02:32', 1, '2021-11-18 01:28:53', 0, NULL, 1),
(6811, 'Sakthivel G', '13', '8344733276', '9843869401', 'sakthivelbca123@gmail.com', '1998-05-08', 23, '2', '1', 'Govindaraji G', 'Farmar', 180000.00, 2, 15000.00, 25000.00, 'Tirupattur', 'Tirupattur', '2111180003', '1', '2', 'upload_files/candidate_tracker/22402998443_Sakthivel Resume.pdf', NULL, '2', '2021-11-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate have basic exp in Core PHP, have 1 year exp in PHP and his Salary Exp is High not ready to come down from his exp, also not much comfort with TxxampC', '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-18 01:08:12', 1, '2021-11-18 01:18:51', 0, NULL, 1),
(6812, '', '0', '7639486078', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111180004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-18 01:10:14', 0, NULL, 0, NULL, 1),
(6813, 'Karthik n', '23', '9791116892', '', 'karthikn776@gmail.com', '1997-03-16', 24, '2', '2', 'Neelagandan', 'Business', 400000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2111180005', '1', '1', 'upload_files/candidate_tracker/16431062317_karthik resume-compressed.pdf', NULL, '1', '2021-11-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have only designing knowledge. Looking for high pay, holding multiple offers  with 12K and not much open for UI development Skills learning. Not much comfort with TxxampC too.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-18 01:21:44', 1, '2021-11-18 01:25:04', 0, NULL, 1),
(6814, 'AnandaSurya.s', '4', '6382761788', '9092159464', 'anandasurya0307@gmail.com', '2001-07-23', 20, '3', '2', 'K.r. sekar', 'Weaving', 20000.00, 1, 0.00, 10000.00, 'Thirubuvanam', 'Thirubuvanam', '2111180006', '', '1', 'upload_files/candidate_tracker/60681494401_ANANDASURYA.pdf', NULL, '1', '2021-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-18 01:35:21', 1, '2021-11-18 01:45:58', 0, NULL, 1),
(6815, '', '0', '8489422426', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111180007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-18 01:41:28', 0, NULL, 0, NULL, 1),
(6816, 'Harishkumar', '13', '7639486079', '8300870858', 'sharishsk24@gmail.com', '1997-05-24', 24, '2', '2', 'R selvakumaran', 'Formar', 150000.00, 2, 10000.00, 16000.00, 'Dharmapuri', 'Dharmapuri', '2111180008', '1', '2', 'upload_files/candidate_tracker/54253146876_Harish13_2021.docx', NULL, '2', '2021-11-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-18 01:42:28', 1, '2021-11-18 01:49:42', 0, NULL, 1),
(6817, 'AJAY.S', '4', '9489422426', '9442698605', 'ajaysaravanan2211@gmail.com', '2001-09-04', 20, '4', '2', 'Saravanan', 'Business', 30000.00, 1, 0.00, 11000.00, 'Kumbakonam', 'Kumbakonam', '2111180009', '', '1', 'upload_files/candidate_tracker/5203439791_ajay resume edited.pdf', NULL, '1', '2021-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-18 01:47:35', 1, '2021-11-18 02:03:51', 0, NULL, 1),
(6818, 'Ajithkumar', '11', '8148167068', '9600552184', 'ajith.mahendran96@gmail.com', '1996-06-06', 25, '2', '2', 'Mahendran', 'Agriculture', 200000.00, 1, 0.00, 200000.00, 'Mannargudi', 'Mannargudi', '2111180010', '1', '1', 'upload_files/candidate_tracker/94662011628_Ajith MBA CV.pdf', NULL, '2', '2021-11-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, career gap and the salary exp is very high, stating that he looks for HR openings but hold an offer with ICICI for 26K.Sustainability doubts ', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-18 04:21:30', 1, '2021-11-18 06:04:13', 0, NULL, 1),
(6819, 'Arunprasad Ravi', '11', '7010097887', '9600561360', 'arunsusee.786@gmail.com', '1996-08-07', 25, '2', '2', 'Ravi', 'Salesman in Jewellery', 350000.00, 0, 20000.00, 23000.00, 'Chennai', 'Chennai', '2111180011', '1', '2', 'upload_files/candidate_tracker/76210422174_ARUN PRASAD HR resume.pdf', NULL, '2', '2021-11-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1yr Exp in HR,Last drawn salary is 21K from manufacturing company and his exp is more. Not  much comfort to sign the Service Agreement', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-18 04:23:58', 60, '2021-11-18 06:25:14', 0, NULL, 1),
(6820, '', '0', '9500000972', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111180012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-18 04:34:07', 0, NULL, 0, NULL, 1),
(6821, 'K.Amirtha', '11', '6380900438', '7402119869', 'amirthakumar30@gmail.com', '1996-10-30', 25, '2', '2', 'T.kumar', 'TNSTC', 50000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2111180013', '1', '1', 'upload_files/candidate_tracker/44810218055_Amirtha resume .pdf', NULL, '2', '2021-11-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Have Exp in Core field,fresher for the recruitment,no  much knowledge in the recruitment,  Sustainability doubts on the profile', '6', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-18 08:25:35', 1, '2021-11-18 08:35:16', 0, NULL, 1),
(6822, 'Sowmiya', '21', '7401119544', '9884924492', 'sowmiguna92@gmail.com', '1992-04-24', 29, '2', '1', 'Bharani raj', 'Store manager', 40000.00, 1, 16000.00, 19000.00, 'Oldwashermenpet', 'Oldwashermenpet', '2111190001', '1', '2', 'upload_files/candidate_tracker/39907678243_sowmiya_CV_new_1._(1).pdf', NULL, '1', '2021-11-19', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate not interested with TxxampC', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-19 11:17:50', 50, '2021-11-20 08:39:49', 0, NULL, 1),
(6823, 'Mohamed Shahirudeen', '30', '8148865568', '', 'mshahir879@gmail.com', '1999-02-22', 22, '2', '2', 'Mohamed safi', 'Employee', 13000.00, 2, 0.00, 15000.00, '3/772, Deen Street, Budamangalam, Thiruvaur 610102', 'Thiruvaur', '2111190002', '1', '1', 'upload_files/candidate_tracker/10983583043_Resume.pdf', NULL, '2', '2021-11-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped ,not responding to the calls. Tried couple of Days', '9', '1', '0', '1', '1', '0', '2', '2021-11-24', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-19 12:01:07', 1, '2021-11-19 01:00:56', 0, NULL, 1),
(6824, 'AVINASH KUMAR', '5', '7205718028', '9766568103', 'avinash.mech938@gmail.com', '1995-08-09', 26, '2', '2', 'Dilip Rajak', 'Employee', 30000.00, 2, 17000.00, 23000.00, 'Rampur colony near panni tanki jamalpur bihar', 'Madhapur, Hyderabad', '2111190003', '19', '2', 'upload_files/candidate_tracker/721538500_experience Cv_30-Dec-20_17_21_42.pdf', NULL, '1', '2021-11-22', 30, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in sales profile', '5', '2', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-19 02:30:47', 60, '2021-11-22 12:14:28', 0, NULL, 1),
(6825, '', '0', '7205748028', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-19 02:35:01', 0, NULL, 0, NULL, 1),
(6826, 'Gopalakrishnan', '22', '7358512446', '', 'S.gopal1993.7@gmail.com', '1994-08-06', 27, '2', '1', 'Roja', 'Documentation specialist', 30000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2111190005', '1', '1', 'upload_files/candidate_tracker/12710799157_Resume___BDE.pdf', NULL, '1', '2021-11-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-19 03:00:29', 1, '2021-11-19 03:05:59', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6827, 'abishek b b', '2', '8220817007', '6382172751', 'abishekb958@gmail.com', '1999-07-22', 22, '2', '2', 'babu', 'businessman', 15000.00, 2, 0.00, 3500.00, 'chennai', 'chennai', '2111190006', '1', '1', 'upload_files/candidate_tracker/73063496779_abishekcv.pdf', NULL, '1', '2021-11-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-19 04:34:17', 1, '2021-11-19 04:40:43', 0, NULL, 1),
(6828, '', '0', '9442248159', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111190007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-19 04:39:08', 0, NULL, 0, NULL, 1),
(6829, 'Kamaraj', '5', '9566054387', '', 'rajaraj387@gmail.com', '1991-12-10', 29, '1', '2', 'Mariyal', 'House wife', 700000.00, 2, 400000.00, 525000.00, 'Chennai', 'Chennai', '2111190008', '', '2', 'upload_files/candidate_tracker/46776953855_KAMARAJ CV 2020 feb.docx', NULL, '1', '2021-11-19', 30, '55641', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Expected saalry is 4.5L Not fit for that salary', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-19 05:43:15', 1, '2021-11-19 05:58:48', 0, NULL, 1),
(6830, 'R Akash', '11', '6383144691', '9344533611', 'akashravindranath48@gmail.com', '1995-08-30', 26, '2', '2', 'V Ravindranath', 'English teacher', 1200000.00, 2, 0.00, 240000.00, 'Chennai', 'Chennai', '2111200001', '1', '1', 'upload_files/candidate_tracker/5621092500_akash resume MBA HR(1).pdf', NULL, '1', '2021-11-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-20 01:29:35', 1, '2021-11-20 02:24:40', 0, NULL, 1),
(6831, '', '0', '7338712273', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111200002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-20 03:04:21', 0, NULL, 0, NULL, 1),
(6832, '', '0', '6379760976', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111200003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-20 03:04:25', 0, NULL, 0, NULL, 1),
(6833, '', '0', '9597913519', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111210001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-21 02:54:28', 0, NULL, 0, NULL, 1),
(6834, '', '0', '9791133706', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111220001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-22 10:31:47', 0, NULL, 0, NULL, 1),
(6835, 'Raju saravanan', '5', '9042824361', '8122100148', 'rjr2721@gmail.com', '1998-04-15', 23, '1', '2', 'Saravanan', 'Business', 10000.00, 1, 18000.00, 25000.00, 'No 90,bajanai Kovil street,Vettur distric_635812', 'Saithapet', '2111220002', '', '2', 'upload_files/candidate_tracker/9294461030_raju resume 1.docx', NULL, '1', '2021-11-22', 0, 'Jobs', '3', '59', '2021-11-29', 280430.00, '', NULL, '2023-11-04', '1', 'Selected for RM - Shanmuga Kutralinigam Team with PF/PT Deductions', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', 'Offer Letter Link sent to upload the documents', '', '', '', NULL, NULL, NULL, 1, '2021-11-22 10:39:23', 60, '2021-11-24 03:33:45', 0, NULL, 1),
(6836, 'r.manjula', '4', '9791133704', '9994851218', 'manjula2012b.com@gmail.com', '1992-07-31', 29, '2', '1', 'e.karthick', 'manager', 40000.00, 1, 0.00, 15000.00, 'thiruvallur', 'thiruvalur', '2111220003', '3', '1', 'upload_files/candidate_tracker/22232305716_Manjula _Resume 2021 [Read-Only] [Compatibility Mode](3).pdf', NULL, '1', '2021-11-22', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'not suitable for this profile,highly doubt for pressure handling. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-22 11:11:39', 1, '2021-11-22 11:19:05', 0, NULL, 1),
(6837, 'Raparthi Mukesh', '5', '8142219869', '', 'Raparthimukesh1997@gmail.com', '1997-12-24', 23, '2', '2', 'Raparthi raju', 'Driver', 40000.00, 2, 21000.00, 29000.00, 'Hyderabad', 'Hyderabad', '2111220004', '19', '2', 'upload_files/candidate_tracker/74189023762_Raparthi_Mukesh_1.docx', NULL, '1', '2021-11-24', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is in dilemma to continue with his current company for another 6months to complete his 1 yr with ICICI, Even we projected him the salary offered. Candidate dropped', '5', '1', '', '3', '4', '', '2', '2021-11-26', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-22 11:38:16', 60, '2021-11-24 10:06:37', 0, NULL, 1),
(6838, '', '0', '8925191994', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111220005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-22 12:06:00', 0, NULL, 0, NULL, 1),
(6839, 'R.Deepan', '5', '9790848421', '', 'deepandeepan851@gmail.com', '1999-11-08', 22, '1', '2', 'S.Rajendran', '10000', 10000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2111220006', '', '1', 'upload_files/candidate_tracker/9528988096_deepan resume new 1.pdf', NULL, '1', '2021-11-22', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,currently pursuing his graduation in correspondance,have exp in Finance company,much comfort to work in non voice process.Will not suits for our role', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-22 12:08:05', 1, '2021-11-22 12:18:27', 0, NULL, 1),
(6840, 'M.Surya', '4', '9566630838', '9500587813', 'supkingsurya1999@gmail.com', '2000-08-05', 21, '3', '2', 'A.Murugan', 'Farmer', 9000.00, 1, 0.00, 13000.00, 'Tiruvannamalai', 'Thiruverkadu', '2111220007', '', '1', 'upload_files/candidate_tracker/61262152002_Document from Krisvinsurya1.doc', NULL, '1', '2021-11-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have collection call Exp, not much open up, will not handle the pressure. Sustainability dooubts', '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-22 12:27:08', 1, '2021-11-22 12:40:45', 0, NULL, 1),
(6841, 'Ajithkumar U', '2', '9677834815', '', 'cuajith08@gmail.com', '1997-10-08', 24, '2', '2', 'Uthandaraman C', 'Business', 35000.00, 2, 0.00, 15000.00, 'Chennai', 'Thoothukudi', '2111220008', '1', '1', 'upload_files/candidate_tracker/79637586161_mostRecent.pdf', NULL, '3', '2021-11-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'didnt come back and RNR\n', '2', '1', '0', '1', '1', '0', '2', '2021-11-24', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-22 04:25:34', 1, '2021-11-22 04:31:25', 0, NULL, 1),
(6842, 'Amal Raj. M', '11', '7010471719', '', 'amalrajhrmba@gmail.com', '1995-04-11', 26, '2', '2', 'Maria dhasan', 'Fisherman', 15000.00, 5, 0.00, 12000.00, 'Kanyakumari', 'Kanyakumari', '2111230001', '1', '1', 'upload_files/candidate_tracker/75469092040_Amalrajresume.pdf', NULL, '3', '2021-11-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Poor Communication, In 6 months 2 companies  changed. Will not handle our pressure and sustainability doubts.', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-23 08:59:10', 1, '2021-11-23 09:24:50', 0, NULL, 1),
(6843, 'Chindam sai charan', '5', '8247374899', '', 'Sai.charan1707@gmail.com', '1997-07-17', 24, '2', '2', 'Chindam gopal', 'Govt employee', 100000.00, 1, 12000.00, 20000.00, 'Hyderabad', 'Hyderabad', '2111230002', '1', '2', 'upload_files/candidate_tracker/17437980613_RESUME.doc', NULL, '2', '2021-11-25', 15, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not looking for field sales xxamp will not suit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-23 01:24:32', 1, '2021-11-25 07:55:34', 0, NULL, 1),
(6844, 'Deepak R', '5', '9840373421', '9840353840', 'deepakmsn98@gmail.com', '1998-03-25', 23, '1', '2', 'Suguna', 'Manager of a marriage hall', 40000.00, 0, 0.00, 27000.00, 'Chennai', 'Chennai', '2111230003', '', '1', 'upload_files/candidate_tracker/49609912650_CV_2021-11-17-022432.pdf', NULL, '1', '2021-11-23', 0, '55641', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-23 02:17:13', 1, '2021-11-23 02:24:58', 0, NULL, 1),
(6845, 'Kota.showry', '5', '9642918268', '6302480187', 'franchisshowry143@gmail.com', '1995-12-17', 25, '2', '1', 'Pushpa', 'House wife', 40000.00, 2, 250000.00, 2.80, 'Nalgonda', 'Chintal', '2111230004', '1', '2', 'upload_files/candidate_tracker/60035807165_showry kota.docx', NULL, '1', '2021-11-24', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will doesnxquott suit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-23 02:44:55', 1, '2021-11-23 02:47:54', 0, NULL, 1),
(6846, 'sai kumar Jella', '5', '7036359321', '7659999517', 'saekumar0404@gmail.com', '1998-02-02', 23, '2', '1', 'Jella lalitha', 'Housewife', 25000.00, 1, 0.00, 25000.00, 'Hyderabad', 'Hyderabad', '2111230005', '1', '2', 'upload_files/candidate_tracker/13881841932_SaiRESUME_Saikumar.docx.pdf', NULL, '1', '2021-11-25', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our profile', '5', '1', '', '3', '4', '', '2', '2021-11-29', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-23 02:53:29', 60, '2021-11-25 10:38:58', 0, NULL, 1),
(6847, 'dhanasekar g', '5', '7904615513', '', 'dhanasekargds@yahoo.co.in', '1992-07-06', 29, '2', '1', 'nandhini', 'house wife', 10000.00, 2, 18000.00, 23000.00, 'vilupuram', 'vilupuram', '2111230006', '1', '2', 'upload_files/candidate_tracker/71939132412_Dhana resume updated 2020.docx', NULL, '2', '2021-11-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate was busy with some bank purpose. Finally had a call with the candidate in evening and understood that he holds an offer and planning  to go with the same.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-23 02:53:54', 50, '2021-11-23 05:23:32', 0, NULL, 1),
(6848, '', '0', '0011223344', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111230007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-23 02:55:36', 0, NULL, 0, NULL, 1),
(6849, 'md fahath khan', '5', '6281529950', '', 'khanfahath@gmail.com', '2000-06-14', 21, '2', '2', 'raheem khan', 'driver', 30.00, 0, 18.00, 25.00, 'hyderabad', 'hyderabad', '2111230008', '1', '2', 'upload_files/candidate_tracker/52461874229_Fahath Khan Resume.pdf', NULL, '3', '2021-11-24', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Selected but he does not have a laptop and he couldnxquott able to arrange it also, in that case, we canxquott do anything if he can arrange it means proceed with next level. Else drop it. \nHe said he informed the same thing to HR who schedule it. ', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-23 04:15:16', 1, '2021-11-23 04:38:48', 0, NULL, 1),
(6850, 'vijayamani', '5', '9003298104', '', 'vijaymani3110@gmail.com', '1997-10-31', 24, '2', '2', 'shankar', 'auto', 20000.00, 1, 20000.00, 25000.00, 'chennai', 'chennai', '2111240001', '1', '2', 'upload_files/candidate_tracker/96327663505_vijay resume NEW .pdf', NULL, '1', '2021-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for Sales, No sustainability in the previous experience. Not comfortable to take calls, much comfort to go for field only. Salary Exp is very high. Will not sustain and handle our pressure. Candidate Need time to think on the CTC what we suggested.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-24 10:17:33', 50, '2021-11-24 11:49:47', 0, NULL, 1),
(6851, 'Mohamed Azarudeen M F', '4', '9566416067', '9976898136', 'mfazarmohd99@gmail.com', '1999-07-17', 22, '3', '2', 'Mohamed Farook A', 'Compounder', 5000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2111240002', '', '1', 'upload_files/candidate_tracker/43436321925_Mohamed Azarudeen M.F.resume.pdf.docx', NULL, '1', '2021-11-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-24 10:27:06', 1, '2021-11-24 10:31:28', 0, NULL, 1),
(6852, 'Vasanth', '2', '8610802633', '', 'vasamohan00@gmail.com', '1998-12-23', 22, '2', '2', 'MOHANAKRISHNAN', 'Farmer', 10000.00, 1, 0.00, 10000.00, '643, cross street chittrachavadi panruti', '643, Cross street chittrachavadi panruti', '2111240003', '1', '1', 'upload_files/candidate_tracker/95038381046_Vasanth MCA.pdf', NULL, '2', '2021-11-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communciation Averege, No basic ideas on the Skills, Handling Pressure no and sustainability doubts on this profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-24 11:18:28', 60, '2021-11-27 10:17:31', 0, NULL, 1),
(6853, 'k. tamil selvan', '4', '8825643340', '9790800679', 'tamilkts978@gmail.com', '2001-06-03', 20, '1', '2', 'm. karuppu samy', 'finance collection', 18000.00, 1, 0.00, 12000.00, '45,ramakrishna nagar, 2nd st , adambakkam, Ch-88', '45,ramakrishna nagar, 2nd st, adambakkam, ch -88', '2111240004', '', '1', 'upload_files/candidate_tracker/938540823_Tamil selvan resume.docx', NULL, '3', '2021-11-24', 0, 'jobs', '3', '59', '2021-11-25', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Muthu Team  - Elite RE in cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-11-24 11:38:06', 60, '2021-11-24 02:36:24', 0, NULL, 1),
(6854, '', '0', '8176746385', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111240005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-24 12:34:14', 0, NULL, 0, NULL, 1),
(6855, '', '0', '9176746385', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111240006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-24 12:57:53', 0, NULL, 0, NULL, 1),
(6856, 'Vengadesvararao m', '4', '8072899511', '', 'rao54.vr@gmail.com', '1995-06-22', 26, '2', '2', 'Manirao r', 'Sewage', 12000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2111240007', '1', '1', 'upload_files/candidate_tracker/1936102858_rAO nEW.docx', NULL, '1', '2021-11-29', 0, '', '3', '59', '2021-11-01', 126312.00, '', '3', '2022-06-08', '1', 'Selected for Elite - Thanjavur  - CASH Mode', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Selected for Thanjavur,Offer Mail has been Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-24 01:00:11', 60, '2021-11-30 05:05:41', 0, NULL, 1),
(6857, 'Panjala Tarun Goud', '5', '9553776297', '', 'panjalatarungoud@gmail.com', '1996-04-06', 25, '2', '1', 'Usha rani', 'Salaried', 200000.00, 4, 13500.00, 30000.00, 'Khammam', 'Khammam', '2111240008', '1', '2', 'upload_files/candidate_tracker/58062934139_1629716355422_Tarun resume.pdf', NULL, '2', '2021-11-25', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is expecting min 80-90% Hike on the pay. Already we suggested him with the good percentage. But candidate is not ok with the pay.', '5', '1', '0', '3', '4', '0', '2', '2021-11-30', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-24 01:08:23', 1, '2021-11-24 01:13:43', 0, NULL, 1),
(6858, 'Sussmita.R', '4', '8015070098', '', 'Sussmita1998@gmail.com', '2006-11-24', 15, '2', '2', 'Ramesh', 'Salesman', 120000.00, 0, 0.00, 18000.00, 'Sidconagar,Villivakkam, chennai', 'Chennai', '2111240009', '1', '1', 'upload_files/candidate_tracker/92809997973_Sussmita Resume (1)-1.pdf', NULL, '1', '2021-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Telecaller profile, Focus on the Non Voice process,6 months 2 companies changed and career gap for 2.5 yrs. Will not sustain and handling pressure no with our profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-24 04:01:40', 50, '2021-11-24 04:24:47', 0, NULL, 1),
(6859, 'Dheeraj', '5', '9494971662', '8125323263', 'Avarudheeraj@gmail.com', '1997-08-22', 24, '2', '2', 'Anjamma', 'Home maker', 2.40, 3, 0.00, 2.80, 'Kachiguda Hyderabad', 'Banjara hills', '2111240010', '1', '2', 'upload_files/candidate_tracker/75202378025_dheerajnew.docx', NULL, '2', '2021-11-25', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-24 04:08:17', 1, '2021-11-24 04:22:41', 0, NULL, 1),
(6860, 'Suraj', '5', '9528790382', '', 'skanode1998@gmail.com', '1998-12-04', 22, '2', '2', 'Gorakhnath Kanode', 'Farmer', 10000.00, 2, 2.30, 3.50, 'Hyderabad', 'Hyderabad', '2111240011', '1', '2', 'upload_files/candidate_tracker/88886461633_Surajcvpdf.pdf', NULL, '2', '2021-11-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-24 06:19:41', 1, '2021-11-24 06:24:03', 0, NULL, 1),
(6861, 'Gunal K', '23', '7825979493', '9514159201', 'gunaltamil4400@gmail.com', '2000-05-25', 21, '1', '2', 'Krishnan.S', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chinnalambadi', '2111250001', '', '1', 'upload_files/candidate_tracker/56520359992_Sample resume 01 02 (1).pdf', NULL, '3', '2021-11-25', 0, 'jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice process, not comfort to work in IT Domain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-25 10:04:36', 1, '2021-11-25 10:27:46', 0, NULL, 1),
(6862, 'Prathap', '23', '9894641456', '7397703930', 'Prathapprathap2110230@gmail.com', '2000-01-21', 21, '2', '2', 'Ezhumalai', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Melmaruvathour', 'Melmaruvathour', '2111250002', '1', '1', 'upload_files/candidate_tracker/62942132497_prathap.docx resume.pdf', NULL, '3', '2021-11-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up, Looking for Java openings. Will not sustain and pressure handling doubts. Not much comfort with TxxampC', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-25 10:05:42', 50, '2021-11-25 05:41:53', 0, NULL, 1),
(6863, 'J.ANANTHARAMAN', '13', '7418332294', '6383683941', 'aspanand21@gmail.com', '1999-03-22', 22, '2', '2', 'G.JAGADEESON', 'Fresher', 18000.00, 3, 0.00, 12000.00, 'Guduvanchery', 'Guduvanchery', '2111250003', '1', '1', 'upload_files/candidate_tracker/19981468241_Anantharaman resume.pdf', NULL, '1', '2021-11-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher and no basic skills, Seems not much ok with TxxampC ,sustainability doubts on the profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-25 10:06:42', 50, '2021-11-25 05:43:03', 0, NULL, 1),
(6864, 'R. Pugazh', '23', '8778561046', '9629106283', 'Pugazhkms@gmail.com', '2000-06-11', 21, '2', '2', 'Ravi', 'Farmer', 5000.00, 1, 0.00, 20000.00, 'Chegalpattu', 'Kottakayapakkam', '2111250004', '1', '1', 'upload_files/candidate_tracker/75636511136_sa.pdf', NULL, '3', '2021-11-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking  for Java openings only. not suitable for our positions', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-25 10:08:55', 50, '2021-11-25 05:43:49', 0, NULL, 1),
(6865, 'B.Gowtham', '22', '9444106527', '9445181849', 'gowthambala20@gmail.com', '2000-06-20', 21, '1', '2', 'G.Bhagyalakshmi', 'Freshers', 30000.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2111250005', '', '1', 'upload_files/candidate_tracker/22520410008_RESUME GOWTHAM-1.pdf', NULL, '1', '2021-11-25', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Clear communication, No basic knowledge in Digital Marketing. Will not sustain with us. Not suitable for DM', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-25 10:20:21', 1, '2021-11-25 10:32:29', 0, NULL, 1),
(6866, '', '0', '9344232960', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111250006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-25 10:45:50', 0, NULL, 0, NULL, 1),
(6867, 'Sivaraman', '30', '9361309156', '8807956571', 'sivaram30122000@gmail.com', '2000-12-30', 20, '3', '2', 'Shanmugam', 'Catering', 15000.00, 1, 0.00, 12000.00, 'Ayanavaram', 'Ayanavaram', '2111250007', '', '1', 'upload_files/candidate_tracker/5121840664_SIVARAMAN RESUME.docx', NULL, '1', '2021-11-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Voice - Stock/Equity positions, Looking for non voice process only', '9', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-25 10:59:51', 1, '2021-11-25 11:42:32', 0, NULL, 1),
(6868, 'Diwakar. R', '30', '8939644633', '9566270017', 'divakarsandy2001@gmail.com', '2001-01-28', 20, '3', '2', 'Ramesh. J', 'Wages employee', 15000.00, 1, 0.00, 12000.00, 'Ayanavaram', 'Ayanavaram', '2111250008', '', '1', 'upload_files/candidate_tracker/25260105842_DIWAKAR RES PDF.pdf', NULL, '1', '2021-11-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interested for Stocks/Share market positions. Looking for Finance based accounting profile.', '9', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-25 11:00:32', 1, '2021-11-25 11:48:04', 0, NULL, 1),
(6869, 'M. Hariharan', '4', '9791566289', '9894414122', 'haran1791@gmail.com', '2000-11-16', 21, '2', '2', 'M. Manickam', 'Supervisor in mahindra car company', 20000.00, 1, 0.00, 13000.00, 'Ranipet district, walajapet', 'Ranipet district, walajapet', '2111250009', '1', '1', 'upload_files/candidate_tracker/21421578296_Hariharan.M.pdf', NULL, '1', '2021-11-25', 0, '', '3', '59', '2021-11-29', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Muthu Team,No PF.ESI/PT deductions', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', 'H1000', '', NULL, NULL, NULL, 1, '2021-11-25 11:18:35', 60, '2021-11-26 07:12:16', 0, NULL, 1),
(6870, 'A.b.partha sarathy', '4', '9789453092', '7708333675', 'rainasarathy018@gmail.com', '2001-08-01', 20, '2', '2', 'A.g.baskar', 'Company staff', 14000.00, 1, 0.00, 13000.00, 'Walajapet', 'Walajapet', '2111250010', '1', '1', 'upload_files/candidate_tracker/17111501678_Parthasarathy-converted.pdf', NULL, '1', '2021-11-25', 0, '', '3', '59', '2021-11-29', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Muthu Team ,no PF/ESI/Deductions.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', 'H1000', '', NULL, NULL, NULL, 1, '2021-11-25 11:19:50', 60, '2021-11-26 07:11:39', 0, NULL, 1),
(6871, 'Mohamed Apsal', '23', '9080457255', '8883726005', 'mohamedapsal29@gmail.com', '2000-03-07', 21, '3', '2', 'Kalanther', 'Farmer', 15000.00, 2, 0.00, 10000.00, 'Arakkonam', 'Arakkonam', '2111250011', '', '1', 'upload_files/candidate_tracker/87133746404_MOHAMED_APSAL.K.pdf', NULL, '1', '2021-11-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Not much familiar with the skills, need time to  give his confirmation on the TxxampC.If  he comes back let us see', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-25 12:02:32', 1, '2021-11-25 12:09:20', 0, NULL, 1),
(6872, 'Allanraj Abraham A', '11', '9080458770', '7402737809', 'allanrajabraham@gmail.com', '1998-07-14', 23, '2', '2', 'Amirtha Thangaraj Jacob', 'Teacher', 30000.00, 2, 0.00, 250000.00, 'Vellore', 'Tambaram', '2111250012', '1', '1', 'upload_files/candidate_tracker/59397372799_Resume.pdf', NULL, '1', '2021-11-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 12:21:42', 1, '2021-11-25 12:26:55', 0, NULL, 1),
(6873, 'Yamini', '13', '7010836133', '', 'yamininagaraj19@gmail.com', '2006-11-25', 0, '4', '2', 'Nagaraj', 'Auto contractor', 25000.00, 1, 10000.00, 20000.00, 'Chennai', 'Chennai', '2111250013', '', '2', 'upload_files/candidate_tracker/16781271149_Yamini-Profile-2.docx', NULL, '1', '2021-11-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-25 12:45:53', 1, '2021-11-25 12:47:49', 0, NULL, 1),
(6874, 'Nareshkumar Nehru', '30', '9094113104', '7092932503', 'nareshkumarn111998@gmail.com', '1998-11-24', 23, '2', '2', 'Nehru', 'Chennai Corporation', 140000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2111250014', '1', '1', 'upload_files/candidate_tracker/15565727996_Naresh+update-resume.pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in AR caller,Looking for any finance opportunities.Will not sustain for a Stocks /Dealer profiel - Salary Exp is very high', '9', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 12:47:58', 1, '2021-11-25 12:55:54', 0, NULL, 1),
(6875, '', '0', '8270192149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111250015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-25 12:50:30', 0, NULL, 0, NULL, 1),
(6876, 'Vishal M', '8', '9566205240', '', 'vishal123blanked@gmail.com', '2000-11-22', 21, '2', '2', 'R. maheshwaran', 'Business', 50000.00, 2, 0.00, 2.50, '124, Swamy naicken street, Chintadripet, Ch- 02', '124, Swamy Naicken Street, Chintadripet, Ch- 02', '2111250016', '1', '1', 'upload_files/candidate_tracker/99722669567_;.pdf', NULL, '1', '2021-11-26', 0, '', '4', '35', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,interest to learn in the areas of stocks/share market, check for Equity dealer and let me know your inputs', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '4', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-25 01:27:21', 60, '2021-11-30 08:02:31', 0, NULL, 1),
(6877, 'deepan', '2', '9443710029', '8220593410', 'deepanappu1999@gmail.com', '1999-07-22', 22, '2', '2', 'palani', 'retired sbi employee', 15000.00, 2, 0.00, 240000.00, 'kallakkurichi', 'kallakkurichi', '2111250017', '1', '1', 'upload_files/candidate_tracker/221219228_Resume.pdf', NULL, '2', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,candidate preferes for Pythin and interest to learn additional skills. Not much comfort with terms and conditions. Sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 01:32:50', 1, '2021-11-25 02:25:28', 0, NULL, 1),
(6878, 'DENESH C L', '30', '9042255447', '', 'Cldenesh123@gmail.com', '1993-05-27', 28, '2', '2', 'N.a', 'Shop Employee', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2111250018', '1', '1', 'upload_files/candidate_tracker/81731202243_denesh resume 2 (1) (1).docx', NULL, '1', '2021-11-26', 0, '', '3', '59', '2021-11-29', 96000.00, '', '0', NULL, '2', 'Selected for Stocks/Dealer profile. will be in training for 15 days in Motilal.3 months intern cum employment.SA for 2.3 yrs', '9', '1', '0', '1', '1', '0', '2', '2021-11-27', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 02:14:05', 1, '2021-11-25 02:22:06', 0, NULL, 1),
(6879, 'JUDE INFANT AROCKIARAJ J', '11', '7867977135', '', 'judesmart166@gmail.com', '1998-09-09', 23, '2', '2', 'Jerome', 'Bank stafft', 80000.00, 1, 0.00, 15000.00, 'Madurai', 'Madurai', '2111250019', '1', '1', 'upload_files/candidate_tracker/14961116463_ jude resume.pdf', NULL, '2', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Will not handle our pressure .Not much comfort with terms xxamp conditions. Sustainability Doubts. Seems not much to work under targets', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 03:15:05', 1, '2021-11-25 03:26:24', 0, NULL, 1),
(6880, 'Adithya baskaran', '30', '8248358271', '', 'Adithyabaskaran6@gmail.com', '2000-10-17', 21, '2', '2', 'K. Elango baskaran', 'Business', 40000.00, 2, 0.00, 25000.00, '4/146A 6th main road kKD nagar kodungaiyur', '4/146A 6th Main Road KKD Nagar kodungaiyur', '2111250020', '1', '1', 'upload_files/candidate_tracker/64085850214_ADITHYA BASKARAN RESUME-converted (1).pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, Not much importance towards the work, Last few months he was doing trading, Salary Exp is high being fresher, Not comfort to go with Internship', '9', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 03:38:45', 1, '2021-11-25 03:46:05', 0, NULL, 1),
(6881, 'Suraj kanode', '5', '9518790382', '', 'skanode1998@gmail.com', '1998-12-04', 22, '2', '2', 'Gorakhnath Kanode', 'Farmer', 10000.00, 4, 22000.00, 280000.00, 'Nagpur', 'Hyderabad', '2111250021', '1', '2', 'upload_files/candidate_tracker/5633470366_Surajcvpdf.pdf', NULL, '2', '2021-11-26', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '2', 'Rejected over the call - He is not interested in the sales profile and he is not proficient in Telugu as well.', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 04:46:21', 1, '2021-11-25 04:48:37', 0, NULL, 1),
(6882, 'Manoj Teja', '5', '8688879663', '9059757106', 'manojteja.b143@gmail.com', '2006-11-25', 0, '2', '1', 'Kavya', 'House wife', 25000.00, 1, 2.30, 3.20, 'Hyderabad', 'Hyderabad', '2111250022', '1', '2', 'upload_files/candidate_tracker/3866042375_mba resume 2 years.docx', NULL, '3', '2021-11-27', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not sustain', '5', '2', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-25 06:59:45', 60, '2021-11-27 10:15:10', 0, NULL, 1),
(6883, 'R Helen Sharon', '4', '8939337822', '', 'elizabethshibra@gmail.com', '2001-03-12', 20, '2', '2', 'PK Rajkumar -', 'Business', 15000.00, 1, 15000.00, 16000.00, 'Kodambakkam', 'Kodambakkam', '2111250023', '1', '2', 'upload_files/candidate_tracker/68355510298_scanner_20211125_195114.pdf', NULL, '1', '2021-11-26', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok,11th Std discontinued, Handling Pressure Doubt, Will not sustain for a long ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 07:44:43', 1, '2021-11-25 08:02:29', 0, NULL, 1),
(6884, 'karthick kumar', '5', '7871848587', '', 'karthicsurandai@gmail.com', '1995-04-14', 26, '2', '2', 'arumugam', 'farmer', 33000.00, 1, 19000.00, 25000.00, 'chennai', 'Chennai', '2111260001', '1', '2', 'upload_files/candidate_tracker/29436844658_CV_2021-11-26-111131.pdf', NULL, '2', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate didnt come back and no responses', '5', '1', '0', '1', '1', '0', '2', '2021-12-01', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-26 10:50:41', 1, '2021-11-26 01:18:22', 0, NULL, 1),
(6885, 'vignesh s', '5', '9094294402', '', 'vignesh7219@gmail.com', '1999-07-24', 22, '2', '2', 'santhosh raj s', 'painter', 25000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2111260002', '1', '1', 'upload_files/candidate_tracker/35183813013_Vignesh S (2).pdf', NULL, '1', '2021-11-26', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not picking up calls', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-26 10:51:12', 60, '2021-11-26 02:27:30', 0, NULL, 1),
(6886, 'Yuvaraj', '4', '9940092979', '6379737922', 'davendrakumar.thala1129@gmail.com', '1999-05-03', 22, '1', '2', 'P.mani', 'Farmer', 8000.00, 1, 0.00, 15000.00, 'Kanchipuram', 'Kanchipuram', '2111260003', '', '1', 'upload_files/candidate_tracker/35010149695_raju resume 1.docx', NULL, '1', '2021-11-26', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interested for Voice Process, Looking for Core Micro Biology openings only. Not suitable for our role', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-26 10:54:06', 1, '2021-11-26 11:50:41', 0, NULL, 1),
(6887, 'janarthanan c', '4', '8778668068', '', 'janarthanan7094@gmail.com', '1999-05-09', 22, '2', '2', 'chandran d', 'Driver', 10000.00, 2, 0.00, 15000.00, 'Ranipet', 'Ranipet', '2111260004', '1', '1', 'upload_files/candidate_tracker/93907592560_JANARAR RESUME.pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non voice process only\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-11-26 11:24:42', 1, '2021-11-26 11:31:15', 0, NULL, 1),
(6888, 'Kanmani', '5', '9080813045', '', 'kanmanimanimegalai@gmail.com', '1999-07-03', 22, '3', '2', 'Manimegalai', 'House wife', 15000.00, 2, 15000.00, 16000.00, 'Teynampet', 'Teynampet', '2111260005', '', '2', 'upload_files/candidate_tracker/60767079687_KANMANI - RESUME.pdf', NULL, '1', '2021-11-26', 5, '', '3', '59', '2021-12-01', 170496.00, '', '3', '2022-09-05', '2', 'Selected for Esales RM - Karthika Team - PT - Prop', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', 'Offer mail sent - CAFSinfotech Prop - Staff', '', '', '', NULL, NULL, NULL, 1, '2021-11-26 11:27:58', 60, '2021-12-01 07:26:44', 0, NULL, 1),
(6889, 'RUBAVATHI.V', '4', '8248341775', '', 'rupaanu18@gmail.com', '2000-04-19', 21, '2', '2', 'Velmurugan', 'Driver', 12000.00, 2, 15000.00, 16000.00, 'Mylapore', 'Mylapore', '2111260006', '1', '2', 'upload_files/candidate_tracker/71542581683_rupa RESUME (1).doc', NULL, '1', '2021-11-26', 5, '', '4', '11', NULL, 0.00, '', '0', NULL, '2', '5050 profile,communication Average,have 3 months of Exp in Voice,Family need is there. Kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-26 11:30:18', 1, '2021-11-26 11:38:22', 0, NULL, 1),
(6890, 'Parimala Devi', '4', '7305240701', '', 'parisuresh247@gmail.com', '2000-01-07', 21, '3', '2', 'Suresh', 'Coolie', 15000.00, 1, 15000.00, 16000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2111260007', '', '2', 'upload_files/candidate_tracker/37975650297_PARI RESUME.pdf', NULL, '1', '2021-11-26', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'communication ok, but much prefers for non voice process only. too long Will not sustain in our role. Have much non voice exp only ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-26 11:53:45', 1, '2021-11-26 11:57:35', 0, NULL, 1),
(6891, 'Manikandan ashokkumar', '4', '7904614438', '7339594886', 'kmani4186@gmail.com', '1999-07-15', 22, '1', '2', 'Ashokkumar', 'Former', 15000.00, 0, 15000.00, 13000.00, 'Thanjavur', 'Chennai', '2111260008', '', '2', 'upload_files/candidate_tracker/44186773026_Resume.docx', NULL, '1', '2021-11-26', 0, 'P1046', '3', '59', '2021-11-29', 144000.00, '', '5', '1970-01-01', '2', 'Selected for Priyanka Jeni Team Elite RE - ex employee of CAFS', '1', '1', '', '1', '1', '', '2', '2021-11-27', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-11-26 11:53:59', 60, '2021-11-26 08:05:54', 0, NULL, 1),
(6892, 'p kamalesh', '20', '9940585590', '', 'kamalesh_er@rocketmail.com', '1995-07-13', 26, '2', '1', 'prabakaran', 'development officer', 50000.00, 1, 0.00, 20000.00, 'mylapore', 'mylapore', '2111260009', '1', '1', 'upload_files/candidate_tracker/24937361583_Document 1.pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for Employment, Long career gap,Not serious on his career earlier, Communication ok but will not sustain in our process. ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-26 11:54:36', 50, '2021-11-26 12:24:32', 0, NULL, 1),
(6893, 'Balasubramani H', '23', '6381604167', '', 'Balasm795@gmail.com', '1999-08-22', 22, '3', '2', 'Harikirshnan', 'Student', 80000.00, 1, 0.00, 22000.00, 'Thiruvallur', 'Thiruvallur', '2111260010', '', '1', 'upload_files/candidate_tracker/48013065292_resume new bala.pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Currently pursuing graduation,1 more year to go. Looking for intern no basic skills', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-26 11:55:29', 1, '2021-11-26 11:58:53', 0, NULL, 1),
(6894, 'Kavya', '11', '6379320368', '7397223958', 'kavyathyagaraajan@gmail.com', '1999-08-18', 22, '2', '2', 'thyagarajan', 'Fresher', 300000.00, 1, 0.00, 20000.00, 'Thoraipakkam', 'Thoraipakkam', '2111260011', '1', '1', 'upload_files/candidate_tracker/42045951388_Resume - Kavya.pdf', NULL, '2', '2021-11-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-26 11:56:13', 1, '2021-11-26 12:00:21', 0, NULL, 1),
(6895, 'Vanmathi A', '4', '9840685725', '9952962099', 'Vanmathiashok01@gmail.c', '2000-06-09', 21, '2', '2', 'Ashok G', 'Coly', 15000.00, 3, 0.00, 10000.00, 'Chrompet', 'Chrompet', '2111260012', '1', '1', 'upload_files/candidate_tracker/76301459592_resume .pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up on communication, will not handle our pressure .Not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-26 12:34:45', 50, '2021-11-26 01:00:22', 0, NULL, 1),
(6896, 'A.suganthi', '4', '8939467192', '', 'suganthiayyadhurai99@gmail.com', '1999-08-31', 22, '2', '2', 'P.Ayya dhurai', 'Cooly', 15000.00, 2, 0.00, 10000.00, 'Tambaram', 'Tambaram', '2111260013', '1', '1', 'upload_files/candidate_tracker/41246153680_1635251264648_1635251258518_200100.pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication, Looking for Non Voice Process, Will not handle our pressure .', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-26 12:37:59', 50, '2021-11-26 01:12:20', 0, NULL, 1),
(6897, 'Mahadevan c', '11', '9787502563', '', 'mahadevanc1997@gmail.com', '1997-01-26', 24, '2', '2', 'Chinnaraj', 'Daily wages', 8000.00, 6, 0.00, 20000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2111260014', '1', '1', 'upload_files/candidate_tracker/60586483128_Resume-Mahadevan-c (1) (1).pdf', NULL, '2', '2021-11-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-26 12:39:28', 1, '2021-11-26 12:52:56', 0, NULL, 1),
(6898, 'divakar', '5', '9791070744', '', 'kisordiva@gmail.com', '1994-08-09', 27, '2', '2', 'kuppan', 'working', 25000.00, 1, 20000.00, 25000.00, 'Chennai', 'chennai', '2111260015', '1', '2', 'upload_files/candidate_tracker/90515383682_Divakar_Resume.pdf', NULL, '2', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Interviewed by Jennifer - Will not sustain in our role', '5', '1', '0', '1', '1', '0', '2', '2021-11-29', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-26 01:22:27', 1, '2021-11-26 01:26:27', 0, NULL, 1),
(6899, 'sakthivel', '2', '9092380057', '', 'sakthimail2006@gmail.com', '1994-05-30', 27, '2', '1', 'gayathiri', 'customer executive', 30000.00, 3, 0.00, 5000.00, 'CHENNAI', 'CHENNAI', '2111260016', '1', '1', 'upload_files/candidate_tracker/52045323755_Sakthi_React_Resume -CAFS.doc', NULL, '1', '2021-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '5050 Profile, Have Exp In Byju As BDA, Fresher For IT Profile, Long Stay Not Sure On This Profile. Not suitable', '2', '1', '0', '1', '1', '0', '2', '2021-11-30', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-26 02:33:10', 1, '2021-11-26 02:40:21', 0, NULL, 1),
(6900, 'Nisha. G', '11', '9894877084', '', 'nishjeson@gmail.com', '1998-03-10', 23, '2', '2', 'Gajendra basker', 'Business', 190000.00, 2, 13000.00, 16000.00, 'Vellore', 'Chennai', '2111260017', '1', '2', 'upload_files/candidate_tracker/783229049_NISHA RESUEM NEW OCT.docx', NULL, '2', '2021-11-28', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have 3 months Recruiter Exp,not comforrtable with TxxampC Sustainability Doubts', '6', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-26 03:04:13', 1, '2021-11-26 03:10:56', 0, NULL, 1),
(6901, '', '0', '9884114864', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111260018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-26 09:22:15', 0, NULL, 0, NULL, 1),
(6902, 'Hariohmsiva S', '5', '9940667633', '8122233328', 'hrsiva27@gmail.com', '1993-06-03', 28, '2', '1', 'jayapriya', 'house Wife’s', 20000.00, 1, 2.70, 3.70, 'kallakurichi', 'chrnnai', '2111270001', '1', '2', 'upload_files/candidate_tracker/13085708622_Hariohmsiva s (1).doc', NULL, '2', '2021-11-27', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Holded the candidate for 2nd round try ,but he didnt come back and finally dropped', '5', '1', '', '1', '1', '', '2', '2021-12-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-27 09:40:46', 50, '2021-11-27 09:56:07', 0, NULL, 1),
(6903, '', '0', '9940456362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111270002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-27 10:33:06', 0, NULL, 0, NULL, 1),
(6904, 'Kowziksudhan k', '4', '9940456351', '9940273035', 'Kowziksudhan@gmail.com', '2002-05-22', 19, '2', '2', 'Kannan', 'Police', 45000.00, 2, 15000.00, 16000.00, 'Chennai', 'Chennai', '2111270003', '1', '2', 'upload_files/candidate_tracker/69935657319_kowzik ces.pdf', NULL, '3', '2021-11-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Non Voice only,Attitude issue,Not open for Field Sales,Exp is very high for our CRM role.Will not sustain in our position.Highest graudation is 12th only.Not much importance on the work', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-27 10:35:04', 50, '2021-11-27 10:51:31', 0, NULL, 1),
(6905, 'kathi mallesham', '5', '8374578905', '', 'malleshkathi1992@gmail.com', '1991-10-19', 30, '2', '1', 'working', 'admin in college', 45000.00, 0, 30000.00, 35000.00, 'hyderabad', 'uppal', '2111270004', '1', '2', 'upload_files/candidate_tracker/57200291318_MALLESHAM RESUME NEWWW DG 32.docx', NULL, '2', '2021-11-29', 7, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suit for our profile', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-27 12:01:43', 50, '2021-11-29 10:07:10', 0, NULL, 1),
(6906, 'Gudikandula Venkateshwar', '5', '7286867002', '8121002986', 'venkateshwargudikandula@gmail.com', '2000-05-28', 21, '2', '2', 'Gudikandula Ramulu', 'Government Employee', 50000.00, 1, 0.00, 17000.00, 'Himayatnagar', 'B.N.Reddy', '2111270005', '1', '1', 'upload_files/candidate_tracker/64373170399_venkateshwar(1).pdf', NULL, '1', '2021-11-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-27 03:55:30', 1, '2021-11-27 03:58:25', 0, NULL, 1),
(6907, 'Vethantham', '11', '9159700414', '6381297170', 'Vethahr@gmail.com', '1996-07-28', 25, '2', '2', 'Rajamani', 'Priest', 20000.00, 2, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2111270006', '1', '1', 'upload_files/candidate_tracker/86117208567_Vethantham R.pdf', NULL, '1', '2021-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not clear with his passion towards the work,Pressure handling doubt, and the salary exp is also high in terms of Internship', '6', '1', '0', '1', '1', '0', '2', '2021-11-30', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-27 04:47:14', 1, '2021-11-27 04:53:54', 0, NULL, 1),
(6908, '', '0', '9346397510', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111270007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-27 08:41:26', 0, NULL, 0, NULL, 1),
(6909, '', '0', '7338921521', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111270008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-27 11:46:08', 0, NULL, 0, NULL, 1),
(6910, 'A. Ajith', '5', '6383981898', '8428025026', 'Ajithvijay936@gmail.com', '2000-02-19', 21, '1', '2', 'K. Anantha rama krishnan', 'Buisness', 200000.00, 1, 14000.00, 20000.00, 'No:247papermills road perambur chennai-11', 'No15annapornanagar 3rdextst madhavaram chennai-110', '2111280001', '', '2', 'upload_files/candidate_tracker/64637805923_A. Ajith - Resume - 27-Nov-2021.pdf', NULL, '1', '2021-11-28', 0, '1', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-28 12:04:50', 1, '2021-11-28 12:19:42', 0, NULL, 1),
(6911, '', '0', '9176061452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111280002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-28 12:43:29', 0, NULL, 0, NULL, 1),
(6912, '', '0', '8270725701', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111280003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-28 06:31:24', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6913, 'Karthikeyan B', '6', '9600497033', '', 'karthik0163@gmail.com', '1994-04-05', 27, '2', '1', 'Jayalakshmi', 'In', 300000.00, 1, 18500.00, 18500.00, '5/253, Jothi mani st ,prem nagar,Pozhichalurch-74', '5/253,Jothi mani st,prem nagar, pozhichalur,ch-74', '2111290001', '1', '2', 'upload_files/candidate_tracker/40673198192_Karthikeyan_resume.2021.pdf', NULL, '1', '2021-11-29', 0, '', '3', '59', '1970-01-01', 274000.00, '', '2', '1970-01-01', '1', 'Selected for GK sir Team with PF/PT Deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Link has been shared', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-29 10:31:38', 60, '2021-12-01 05:58:02', 0, NULL, 1),
(6914, 'shrut p bhayani', '5', '9042207941', '', 'shrutbhayani017@gmail.com', '2000-03-28', 21, '2', '2', 'Parulkumar P Bhayani', 'business', 50000.00, 1, 0.00, 18000.00, 'kilpauk', 'Kilpauk', '2111290002', '1', '1', 'upload_files/candidate_tracker/81540255837_Shrut Bhayani resume (1).docx', NULL, '1', '2021-11-29', 0, '', '3', '59', '1970-01-01', 260000.00, '', '2', '1970-01-01', '1', 'Selected for Pandiarajan Team - RM with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Link has been shared to upload the documents', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-29 10:36:13', 60, '2021-12-03 03:44:39', 0, NULL, 1),
(6915, 'RAJESH', '5', '8056211777', '9787820273', 'rajeshvrs09@gmail.com', '1996-09-27', 25, '2', '2', 'REKHA V', 'B.E', 30000.00, 1, 18.50, 25.00, 'Chennai', 'Chennai', '2111290003', '1', '2', 'upload_files/candidate_tracker/9909851932_RAJESH RESUME 2021.pdf', NULL, '1', '2021-11-29', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for insurance Sales, Looking for the same domain sales\n', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-11-29 11:08:12', 1, '2021-11-29 11:15:49', 0, NULL, 1),
(6916, 'Keerthana.s', '23', '9600061728', '', 'sureshkeerthana027@gmail.com', '2001-03-22', 20, '2', '2', 'Suresh Kumar', 'Student', 40000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2111290004', '1', '1', 'upload_files/candidate_tracker/93674716832_resume.pdf', NULL, '1', '2021-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-29 12:36:29', 1, '2021-11-29 02:56:52', 0, NULL, 1),
(6917, 'Kausalya.K', '2', '7639361259', '', 'Kausalya17897@gmail.com', '1997-08-17', 24, '2', '2', 'Kulandaivel.S', 'Teacher', 60000.00, 1, 0.00, 20000.00, 'Neyveli', 'Neyveli', '2111290005', '1', '1', 'upload_files/candidate_tracker/31351689913_kausi resume(4).docx', NULL, '2', '2021-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-29 12:51:59', 1, '2021-11-29 12:55:10', 0, NULL, 1),
(6918, 'Rasheed Abdur Rahman', '5', '9894681981', '', 'rasheedabdur12@gmail.com', '1995-12-31', 25, '2', '2', 'Rabik', 'Accountant', 15000.00, 3, 16000.00, 16000.00, 'Chengalpattu', 'Chengalpattu', '2111290006', '1', '2', 'upload_files/candidate_tracker/33068939836_JANARAR RESUME.pdf', NULL, '1', '2021-11-29', 0, '', '3', '59', '2021-12-01', 274000.00, '', '4', '2022-12-01', '2', 'Selected for Sarath Team with PF/ PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-29 12:57:15', 60, '2021-12-01 10:34:41', 0, NULL, 1),
(6919, 'b. harif mohamed', '23', '7708781168', '', 'harifmohamed15@gmail.com', '2006-11-29', 0, '2', '2', 'badhusha.z', 'driver', 75000.00, 1, 0.00, 12000.00, 'salem', 'salem', '2111290007', '1', '1', 'upload_files/candidate_tracker/8081240654_Resume(Harif).pdf', NULL, '2', '2021-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-29 01:25:21', 1, '2021-11-29 01:29:56', 0, NULL, 1),
(6920, 'P.LOKESH.', '5', '7845357059', '', 'lokeshengg1992@gmail.com', '1993-05-21', 28, '2', '2', 'palani', 'working', 10000.00, 1, 15000.00, 20000.00, 'vellore', 'Vellore', '2111290008', '1', '2', 'upload_files/candidate_tracker/44631891741_Lokesh_Resume.Doc.docx', NULL, '2', '2021-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is not clear on the position he applied. No Ideas on this insurance Sales, He just open for any sales openings in Chennai,Have Exp in Jio Retail B2B sales Sustainability doubts in our sales profile. Reviewed in the telephonic Discussion', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-29 02:58:38', 1, '2021-11-29 03:06:57', 0, NULL, 1),
(6921, 'navamani', '5', '9751213154', '', 'navamani5130@gmail.com', '1995-06-12', 26, '2', '2', 'pitchaivel', 'interior designer', 20000.00, 2, 23000.00, 30000.00, 'adambakkam', 'adambakkam', '2111290009', '1', '2', 'upload_files/candidate_tracker/83913084249_Navamani-3_2-.pdf', NULL, '2', '2021-11-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-29 03:10:57', 1, '2021-11-29 03:15:12', 0, NULL, 1),
(6922, 'dinesh', '5', '9940033295', '', 'bobydinesh1994@gmail.com', '2006-11-29', 0, '2', '1', 'sathya', 'nil', 25000.00, 1, 25000.00, 30000.00, 'thoraipakkam', 'Thoraipakkam', '2111290010', '1', '2', 'upload_files/candidate_tracker/30360309829_ResumeN.S.Dinesh.pdf', NULL, '2', '2021-11-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-29 03:20:28', 1, '2021-11-29 03:24:43', 0, NULL, 1),
(6923, 'dasanarayanan', '5', '9597235791', '', 'messiarun95@gmail.com', '1995-07-16', 26, '2', '2', 'Sivakumar', 'working', 15000.00, 1, 20000.00, 25000.00, 'chennai', 'chennai', '2111290011', '1', '2', 'upload_files/candidate_tracker/70427008126_Das resume.docx', NULL, '2', '2021-11-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-29 03:35:12', 1, '2021-11-29 03:48:14', 0, NULL, 1),
(6924, 'hari krishnan', '5', '8148630501', '', 'mervinhari7321@gmail.com', '1999-10-09', 0, '2', '2', 'prakash', 'security', 50000.00, 1, 13000.00, 18000.00, 'chennai', 'Chennai', '2111290012', '1', '2', 'upload_files/candidate_tracker/79524134302_HARIKRISHNAN CV -1.pdf', NULL, '2', '2021-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interresetd to take Calls and the sales ,looking only for the collections', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-29 04:01:58', 1, '2021-11-29 04:18:50', 0, NULL, 1),
(6925, 'Ragul.B', '13', '8903857325', '7871012293', 'ragul1347@gmail.com', '2000-06-18', 21, '2', '2', 'Bagavathi raj', 'Mason', 20.00, 1, 0.00, 15000.00, 'Theni', 'Kundrathur', '2111290013', '1', '1', 'upload_files/candidate_tracker/29986283438_ragul.pdf', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'no basic ideas in the skills,not comfort with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-29 04:06:19', 1, '2021-11-29 04:12:25', 0, NULL, 1),
(6926, 'Ajin C.R', '22', '7598028924', '', 'ajincr137@gmail.com', '1993-12-21', 27, '2', '2', 'J.Christian Robinson', 'Collie', 15000.00, 1, 0.00, 15000.00, 'Kanyakumari', 'Chennai', '2111290014', '1', '2', 'upload_files/candidate_tracker/51540020713_AJIN CR_ Resume.pdf', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Reyaz,Not suitable no basic ideas ,will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-29 08:25:28', 1, '2021-11-30 03:32:44', 0, NULL, 1),
(6927, 'Venkatesh', '4', '7092207890', '', 'venkysethupathi24@gmail.com', '2000-08-01', 21, '2', '2', 'R subramanian', 'Bus driver', 30000.00, 0, 0.00, 10000.00, 'Ankaputhur', 'Ankaputhur', '2111300001', '1', '1', 'upload_files/candidate_tracker/38690089380_RESUME VENKAT-converted.pdf', NULL, '2', '2021-12-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up, not ready to do sales  calls much. Will not sustain in our positions', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-30 10:01:39', 50, '2021-12-01 09:33:18', 0, NULL, 1),
(6928, 'Korupolu shankar', '5', '9640758402', '9640752483', 'Shankarmanikorupolu7626@gmail', '1997-11-06', 24, '2', '2', 'Korupolu krishna', 'Day labor', 14000.00, 1, 0.00, 20000.00, 'Hyderabad', 'Hayathnagar', '2111300002', '1', '1', 'upload_files/candidate_tracker/4281153268_K-Shankar-Resume-1.pdf', NULL, '2', '2021-11-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-30 10:24:13', 50, '2021-11-30 10:53:36', 0, NULL, 1),
(6929, 'Prabaharan S', '22', '6383437825', '', 'spraba27091999@gmail.com', '1999-09-27', 22, '2', '2', 'selvan arul Prakasam  A', 'coolie', 6000.00, 3, 0.00, 10000.00, 'Tuticorin', 'Kundrathur, chennai', '2111300003', '1', '1', 'upload_files/candidate_tracker/95604365522_prabaharanS resume.pdf', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic ideas on the digital Marketing,will not sustain on our role', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-30 11:25:29', 1, '2021-11-30 11:34:06', 0, NULL, 1),
(6930, 'sp abarna', '4', '8248012803', '7667936787', 'abarnaabu2351@gmail.com', '2001-05-25', 20, '2', '2', 'perumal', 'own busniess', 20000.00, 0, 0.00, 10000.00, 'veppampattu', 'Veppampattu', '2111300004', '1', '1', 'upload_files/candidate_tracker/28506089420_Abarna new resume .docx', NULL, '2', '2021-11-30', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', ' no important for  job this profile , xxamp looking for non - voice also.', '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-11-30 11:26:48', 1, '2021-11-30 11:31:53', 0, NULL, 1),
(6931, 'PARAMASIVAM. A', '22', '7826082383', '9626641390', 'sivamparama231@gmail.com', '1996-06-01', 25, '2', '2', 'Arasan.G', 'Farmer', 6000.00, 5, 0.00, 10000.00, 'Chennai', 'Kundrathur, chennai', '2111300005', '1', '1', 'upload_files/candidate_tracker/27753884409_paramasivam h.pdf', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped, seems not much comfort with the position as his friend didnt get selected\n', '2', '1', '0', '1', '1', '0', '2', '2021-12-01', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-30 11:33:01', 1, '2021-11-30 11:44:13', 0, NULL, 1),
(6932, 'Syed GouseSamdani', '13', '9032852714', '', 'Syedgousesamdani@gmail.com', '1996-09-21', 25, '3', '2', 'Syed Jilani Basha', 'Ret.Govnment employee', 300000.00, 1, 360000.00, 540000.00, 'Guntur', 'Chennai', '2111300006', '', '2', 'upload_files/candidate_tracker/33155875559_syedgousesamdani.pdf', NULL, '1', '2021-11-30', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Sabeha - very High Exp with 4 yrs of Experience', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-30 11:33:32', 1, '2021-11-30 11:39:14', 0, NULL, 1),
(6933, 'Sabana Yasmin.m', '4', '8939786465', '9888458351', 'sabuyas22@gmail.com', '1996-12-23', 24, '2', '2', 'Rahuman bee vee', 'Business', 30000.00, 2, 22000.00, 20000.00, 'Ramnadu', 'Chennai', '2111300007', '3', '2', 'upload_files/candidate_tracker/30455263689_SABABA YASMIN.pdf', NULL, '1', '2021-11-30', 0, '', '4', '11', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Jeniffer - Have Exp in Telecaller, kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-30 12:33:15', 1, '2021-11-30 12:39:21', 0, NULL, 1),
(6934, 'Karthika Selvam. P', '4', '9655656458', '', 'Karthikaselvam1512@gmail.com', '1993-05-20', 28, '2', '2', 'Panneeraselvam. C', 'Farmer', 50000.00, 3, 0.00, 15000.00, 'Adirampattinam', 'Chennai', '2111300008', '3', '1', 'upload_files/candidate_tracker/78237497951_karthika resume2.docx', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Jennifer - Not interested in Telesales', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-30 12:33:25', 1, '2021-11-30 12:45:49', 0, NULL, 1),
(6935, 'Murugeswari. M', '4', '8220148713', '7603935007', 'Sathyakuttyma881@gmail.com', '1999-07-27', 22, '2', '2', 'Murugan. E', 'Building contractor', 25000.00, 3, 18000.00, 18000.00, 'Madurai', 'Chennai', '2111300009', '3', '2', 'upload_files/candidate_tracker/83937907760_Murgeswari_Resume.pdf', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Jennifer - Sustainability Doubt xxamp Attitude ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-30 12:33:31', 1, '2021-11-30 12:41:18', 0, NULL, 1),
(6936, 'Sevvanthi M', '4', '7358051709', '7868863270', 'sevvanthi199817@gmail.com', '1998-09-17', 23, '2', '2', 'Murugesan', 'Former', 20000.00, 2, 15500.00, 17000.00, 'Chennai', 'T nagar', '2111300010', '1', '2', 'upload_files/candidate_tracker/11584810673_Sevvanthi .M (Resume).docx', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Jennifer - Will not suit for Calling', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-30 12:34:58', 1, '2021-11-30 12:48:02', 0, NULL, 1),
(6937, 'N. mohammed Rafiq', '5', '9360206798', '9600185461', 'djrafiq2412@gmail.com', '1997-07-16', 24, '2', '2', 'A. nagoor meeran', 'Working', 20000.00, 1, 18000.00, 15000.00, 'Chennai', 'Choolaimedu', '2111300011', '1', '2', 'upload_files/candidate_tracker/4287015777_rafiq resume.pdf', NULL, '1', '2021-11-30', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Unable to reach him', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-30 12:52:56', 1, '2021-11-30 01:17:52', 0, NULL, 1),
(6938, 'JANAGAMA PRIYANKA', '5', '8790679825', '9581377870', 'priya.janagama@gmail.com', '1991-03-19', 30, '2', '2', 'muthaiya', 'employeer', 30000.00, 2, 12000.00, 20000.00, 'varangal', 'ameerpet', '2111300012', '19', '2', 'upload_files/candidate_tracker/19480660058_priyanka J-converted.pdf', NULL, '2', '2021-12-02', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for the profile', '5', '2', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-30 01:29:49', 50, '2021-12-02 10:20:52', 0, NULL, 1),
(6939, 'MichaelRaj B', '4', '6379871697', '9600136845', 'praveenmichael17@gmail.com', '2000-03-17', 21, '2', '2', 'Boobesh Karun P', 'Turner', 18000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2111300013', '21', '1', 'upload_files/candidate_tracker/16564203589_MICHAEL - Resume.pdf', NULL, '3', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Non Voice ,candidate communication sounds good,Not suits for CRM,RE Profile - No Bike 5050 handling the field Sales. Will not sustain in our role', '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-30 01:53:51', 1, '2021-11-30 02:17:18', 0, NULL, 1),
(6940, '', '0', '9840257251', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111300014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-30 02:40:07', 0, NULL, 0, NULL, 1),
(6941, 'Dinesh', '11', '9629239066', '8608490080', 'dineshmech2004@gmail.com', '2000-04-20', 21, '2', '2', 'Shanmugam', 'Electrition', 12000.00, 0, 0.00, 20000.00, 'Salem', 'Salem', '2111300015', '1', '1', 'upload_files/candidate_tracker/42315193147_5 fresh resume(1).pdf', NULL, '1', '2021-12-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No clarity on the job he looks, profile shows he much prefers to be in Mechanical Design .Will not sustain in our recruitment Role\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-30 03:04:55', 50, '2021-12-08 10:02:07', 0, NULL, 1),
(6942, 'Karthik.K', '5', '9840357252', '', 'Karthik.k14324@gmail.com', '1995-01-14', 26, '2', '2', 'Kumar', 'Auto Driver', 20000.00, 1, 20000.00, 35000.00, 'Ennore', 'Ennore', '2111300016', '1', '2', 'upload_files/candidate_tracker/8592362705_karthik resumeNew.pdf', NULL, '1', '2021-11-30', 10, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Not fit for sales', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-30 03:20:49', 1, '2021-11-30 03:24:58', 0, NULL, 1),
(6943, 'G.Dinesh Kumar', '11', '9791216220', '9042859449', 'dineshkumarhr037@gmail.com', '1999-03-16', 22, '2', '2', 'S.Gurumoorthy', 'Catering', 20000.00, 1, 0.00, 20000.00, 'S.S.Colony, Madurai', 'S.S.Colony, Madurai', '2111300017', '1', '1', 'upload_files/candidate_tracker/95458148425_Document (3).pdf', NULL, '2', '2021-12-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Poor,No clear ideas on the Recruitment, Will not handle our pressure and sustainability Doubts', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-30 03:28:27', 60, '2021-12-01 03:21:36', 0, NULL, 1),
(6944, 'Deepika A', '11', '8608135811', '', 'deepika21700@gmail.com', '2000-07-21', 21, '2', '2', 'Ashok Kumar R', 'Carpenter', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2111300018', '1', '1', 'upload_files/candidate_tracker/16439428697_Deepika A - Resume.pdf', NULL, '1', '2021-12-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Profile Is Good, Have Little Exp In Recruitment, Can Be Trained, But She Is Currently Pursuing Her Graduation. If She Comes Back Will Consider Her Profile. As she is in her graduation final year full time, will not be comfortable to work in our profile.Sustainability Doubts she didnt turn back with her confirmation', '6', '2', '0', '1', '1', '0', '2', '2021-12-03', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-30 05:02:15', 1, '2021-11-30 08:38:13', 0, NULL, 1),
(6945, 'Akashraj', '30', '8870681177', '', 'akashraj0981@gmail.com', '1999-05-06', 22, '2', '2', 'Rangaraj', 'Driver', 20000.00, 1, 0.00, 17000.00, 'PUDUCHEERY', 'PUDUCHEERY', '2111300019', '1', '1', 'upload_files/candidate_tracker/38993130104_Akashraj resume.pdf', NULL, '3', '2021-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '9', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-30 05:12:02', 1, '2021-11-30 05:17:43', 0, NULL, 1),
(6946, 'K.mohana sundar', '4', '9962427388', '7010303601', 'mohankul313@gmail.com', '1999-11-03', 22, '2', '2', 'M.kumar', 'Business', 60000.00, 2, 0.00, 13000.00, 'Plot no 287 omshakthy Kanopus Ayappakam', 'Plot no 287 omshakthy kanopus ayappakam Chennai 77', '2112010001', '1', '1', 'upload_files/candidate_tracker/52641563298_RESUME ...pdf', NULL, '3', '2021-12-01', 0, '', '3', '59', '2021-12-06', 120000.00, '', '', '2021-12-08', '1', 'Selected for Tiruvallur Team in Cash mode - Patroniss', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-01 09:02:12', 60, '2021-12-02 04:41:20', 0, NULL, 1),
(6947, 'K. SABEERA', '4', '9952226203', '', 'Thaslenazakirthaslenazakir@gmail.com', '2001-08-30', 20, '1', '2', 'S. B. KUTHARATHULLA', 'Coolie', 8000.00, 2, 0.00, 25000.00, 'Arakkonam', 'Arakkonam', '2112010002', '', '1', 'upload_files/candidate_tracker/19719813037_Sabeera Resume.docx', NULL, '1', '2021-12-01', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up,Too long distance, Will not sustain in our role.Not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-01 10:20:36', 1, '2021-12-01 10:49:48', 0, NULL, 1),
(6948, 'Z. THASLENA ZAKIR', '4', '9381133092', '', 'Thaslenazakirthaslenazakir@gmail.com', '2001-06-24', 20, '1', '2', 'ZAKIR HUSSAIN', 'Coolie', 8000.00, 1, 0.00, 25000.00, 'Arakkonam', 'Arakkonam', '2112010003', '', '1', 'upload_files/candidate_tracker/57241218544_Z. TASLENA ZAKIR.pdf', NULL, '1', '2021-12-01', 0, 'Jobs', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-01 10:22:29', 1, '2021-12-01 10:33:58', 0, NULL, 1),
(6949, 'ganesh', '4', '7904629805', '7299895510', 'ganeshkaran2018@gmail.com', '1999-09-05', 22, '2', '2', 'kuppuswamy', 'lab technician', 20000.00, 1, 0.00, 10000.00, 'chennai', 'mogapair', '2112010004', '1', '1', 'upload_files/candidate_tracker/20829345539_RESUME.pdf', NULL, '2', '2021-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-01 10:22:51', 1, '2021-12-01 10:33:21', 0, NULL, 1),
(6950, 'Arul murugan rajendran', '5', '8012383693', '', 'arulmurugan996@hotmail.com', '1996-01-04', 25, '2', '2', 'THENMOZHI T', 'Teacher', 20000.00, 1, 25000.00, 30000.00, 'Visalachi nagar jayankondam', 'chennai', '2112010005', '1', '2', 'upload_files/candidate_tracker/15088837956_ARULupdatedresume18FEB2021-compressed.pdf', NULL, '1', '2021-12-01', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp in Sales, have worked in multiple domain.Will not handle our sales pressure.  Sustainability doubts', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-01 10:38:19', 60, '2021-12-01 06:19:04', 0, NULL, 1),
(6951, 'nivetha.v', '11', '9514332207', '9092621065', 'nivethaviswa704@gmail.com', '1998-08-03', 23, '2', '2', 'viswanathan.g', '-', 30000.00, 0, 15000.00, 25000.00, 'mangali neethiman nagar kolathur chennai', 'chennai', '2112010006', '1', '2', 'upload_files/candidate_tracker/26429128410_Nivetha98.pdf', NULL, '1', '2021-12-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Sabeha,only 3 months exp and looking for a change. Will not sustain with us and the salary Exp is high', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-01 10:49:43', 1, '2021-12-01 10:31:11', 0, NULL, 1),
(6952, 'Ajith Kumar S', '4', '7871721336', '', 'ajisriram1712@gmail.com', '1997-12-17', 23, '3', '2', 'Sriramulu K', 'State transport', 38000.00, 2, 19000.00, 24000.00, '2/76, durugam main road palayanur kallakurichi dts', 'No 27 gangaiamman kovil street choolaimedu', '2112010007', '', '2', 'upload_files/candidate_tracker/60250267006_Ajith Kumar.docx', NULL, '1', '2021-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have much only in inbound calls,Will not handle our sales.Salary Exp is also high\n', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-01 10:55:49', 1, '2021-12-01 11:02:00', 0, NULL, 1),
(6953, 'keerthana', '4', '9791542971', '9043668602', 'anbazhagan010268@gmail.com', '1999-06-16', 22, '2', '2', 'anbalagan', 'farmer', 25000.00, 2, 15000.00, 15000.00, 'chennai', 'nandhanam', '2112010008', '1', '2', 'upload_files/candidate_tracker/99073985716_Keerthana Resume (1).pdf', NULL, '1', '2021-12-01', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '4 months Exp in recruitment an looking for Telecaller position, No communication too. Will not handle our pressure .Not suitable ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-01 11:47:06', 1, '2021-12-01 12:22:18', 0, NULL, 1),
(6954, 'Vignesh.M', '4', '8667090925', '', 'vickysathish311@gmail.com', '1998-11-07', 23, '2', '2', 'mathiyazhagan', 'working', 20000.00, 1, 0.00, 10000.00, 'tanjavur', 'thriuvaiyaru', '2112010009', '1', '1', 'upload_files/candidate_tracker/4243356034_vicky resume (1).pdf', NULL, '1', '2021-12-01', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'not fit', '1', '1', '0', '4', '5', '0', '2', '2021-12-06', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-01 11:56:25', 1, '2021-12-01 03:56:25', 0, NULL, 1),
(6955, 'Manikandan', '22', '9003427202', '9790711480', 'sankarimani.13@gmail.com', '2000-02-14', 21, '2', '2', 'parent/father', 'retired', 23000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2112010010', '1', '1', 'upload_files/candidate_tracker/1716649232_Manikandan_Srinivasan_.PDF', NULL, '1', '2021-12-02', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate not suitable, he is not okay with job role', '2', '1', '0', '1', '1', '0', '2', '2021-12-03', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-01 12:52:33', 1, '2021-12-01 03:07:28', 0, NULL, 1),
(6956, 'asthaaq ahmed', '11', '8220723101', '', 'asthaaqrafee@gmail.com', '1999-01-01', 22, '2', '2', 'k.mohamed rafee', 'tamilnadu unorganised labour union', 50000.00, 1, 0.00, 17000.00, 'namakkal', 'namakkal', '2112010011', '1', '1', 'upload_files/candidate_tracker/24478085298_ASTHAAQ AHMED - RESUME.pdf', NULL, '1', '2021-12-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-01 01:15:31', 1, '2021-12-01 01:21:10', 0, NULL, 1),
(6957, '', '0', '6369932271', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112010012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-01 01:52:58', 0, NULL, 0, NULL, 1),
(6958, '', '0', '9677989848', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112010013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-01 02:26:49', 0, NULL, 0, NULL, 1),
(6959, 'Sujeet kumar Mandal', '5', '7981972056', '9848087657', 'immandal1008@gmail.com', '1999-11-01', 22, '2', '2', 'Shatrughan mandal', 'Mechanical engineer', 100000.00, 4, 25000.00, 32000.00, 'Hyderabad', 'Hyderabad', '2112010014', '1', '2', 'upload_files/candidate_tracker/35727359873_Resume_Sujeet Kumar Mandal .docx', NULL, '2', '2021-12-02', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '2', 'WIll not suit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-01 03:17:50', 1, '2021-12-01 03:27:01', 0, NULL, 1),
(6960, 'Karthika', '4', '7708232135', '', 'karthikajk25@gmail.com', '1996-02-25', 25, '2', '2', 'Jamuna', 'Housewife', 15000.00, 1, 13500.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2112010015', '1', '2', 'upload_files/candidate_tracker/81924263124_Karthika resume-1.pdf', NULL, '1', '2021-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate is not interested for the Telecaller, looking for opportunities in Admin. Earlier worked with Bluechip - Same Domain Insurance Sales,but no interest to continue in telecalling. For time being she s looking for the telecaller. Will not sustain ', '1', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-01 03:59:32', 1, '2021-12-01 04:13:50', 0, NULL, 1),
(6961, 'chandolu mani prasanth', '5', '9515582129', '', 'mani1413.prash@gmail.com', '1994-08-04', 27, '2', '1', 'ramya', 'house wife', 13000.00, 1, 12815.00, 25000.00, 'hyderabad', 'hyderabad', '2112010016', '1', '2', 'upload_files/candidate_tracker/63437775257_Mani prasanth-resume.pdf', NULL, '1', '2021-12-02', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'intersted in Opertions Job. Not Intersted in the sales', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-01 04:30:18', 1, '2021-12-01 04:34:20', 0, NULL, 1),
(6962, 'HEMALATHA S', '11', '9092621065', '', 'preethashiv2@gmail.com', '1999-05-20', 22, '2', '2', 'Siva sankaran V', 'Health department', 30000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2112010017', '1', '2', 'upload_files/candidate_tracker/19886403856_Hema résumé (2) (1).pdf', NULL, '1', '2021-12-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed By Sabeha,Only 3 Months Exp And Looking For A Change. Will Not Sustain With Us And The Salary Exp Is High', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-01 09:27:36', 1, '2021-12-01 09:49:20', 0, NULL, 1),
(6963, 'karthika', '4', '6380967122', '', 'karthika2cse@gmail.com', '1999-10-29', 22, '2', '2', 'subramani', 'printer', 20000.00, 1, 12000.00, 12000.00, 'madurai', 'sriperambature', '2112020001', '3', '2', 'upload_files/candidate_tracker/64285596659_Karthika Resume.pdf', NULL, '1', '2021-12-02', 0, '', '3', '59', '2021-12-06', 132000.00, '', '3', '2021-12-07', '2', 'Selected for Tiruvallur location in Patroniss No PF/ESI/PT', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-12-02 10:30:15', 60, '2021-12-17 04:44:53', 0, NULL, 1),
(6964, 'divya', '4', '9080579620', '', 'divyamithrasri@gmail.com', '1999-06-07', 22, '2', '1', 'loganathan', 'software developer', 25000.00, 1, 0.00, 10000.00, 'thodukadu', 'thodukadu', '2112020002', '3', '1', 'upload_files/candidate_tracker/47115160764_Divya Resume(1).pdf', NULL, '1', '2021-12-02', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'pronoun to disease very poor.  qualification 12th std only . married .  near to location.   but drop.', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-02 11:02:12', 1, '2021-12-02 11:11:29', 0, NULL, 1),
(6965, 'Omprakash', '2', '9962133452', '', 'omprakashlott@gmail.com', '1997-12-03', 23, '3', '2', 'Kannan', 'BE Mechanical', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2112020003', '', '1', 'upload_files/candidate_tracker/64584629500_Resume.pdf', NULL, '1', '2021-12-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable REjected', '2', '1', '0', '1', '1', '0', '2', '2021-12-03', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-02 11:53:57', 1, '2021-12-02 11:58:04', 0, NULL, 1),
(6966, 'Poovarasan S', '20', '9751373526', '', 'itzmevijay09@gmail.com', '1999-01-09', 22, '3', '2', 'Subramaniyan N', 'Daily wages', 120000.00, 1, 0.00, 16000.00, 'Kanchipuram', 'Chennai', '2112020004', '', '1', 'upload_files/candidate_tracker/5128365635_VijayResume_2021-converted.pdf', NULL, '1', '2021-12-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Semivoice process and looking for Nonvoice/IT.In IT no  basic knowledge will not sustain in our role', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-02 12:44:59', 1, '2021-12-02 12:55:21', 0, NULL, 1),
(6967, 'sajan', '5', '9944970525', '', 's.sajannikam@gmail.com', '1993-04-01', 28, '2', '1', 'ishwarya', 'housewife', 17500.00, 1, 17500.00, 17500.00, 'aiyapakkam', 'Aiyapakkam', '2112020005', '1', '2', 'upload_files/candidate_tracker/7068916487_sj-cv-2021che.pdf', NULL, '2', '2021-12-02', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable will not sustain', '5', '2', '0', '1', '1', '0', '2', '2021-12-06', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-02 04:36:11', 1, '2021-12-02 04:39:14', 0, NULL, 1),
(6968, 'Walthati Akash', '4', '7993636016', '', 'walthatiakash@gmail.com', '2000-07-04', 21, '2', '2', 'Ravinder', 'Annual maintenance work', 40000.00, 1, 19.00, 20.00, '30-276/13/35A old safilguda, Malkajgiri', '30-276/13/35A Old Safilguda, Malkajgiri', '2112020006', '1', '2', 'upload_files/candidate_tracker/91863789201_Akash04.docx', NULL, '1', '2021-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '3', '4', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-02 04:52:25', 1, '2021-12-02 05:03:12', 0, NULL, 1),
(6969, 'Jambiga Prajwal', '5', '8121188475', '8179459073', 'prajwalkanna1995@gmail.com', '1995-05-05', 26, '2', '2', 'J.Mogalaiah', 'Postal Assistant', 70000.00, 1, 23000.00, 30000.00, 'H.no:5-11-312/b, yellamagutta, Nizambad', 'Hyderabad', '2112020007', '1', '2', 'upload_files/candidate_tracker/62726816518_prajwal accenture.pdf', NULL, '2', '2021-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate decided to go with the offer he holds for 3.5 LPA. Not interested', '5', '2', '', '3', '4', '', '2', '2021-12-08', '3', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-02 05:03:36', 60, '2021-12-04 03:25:08', 0, NULL, 1),
(6970, 'Sathish Udutha', '5', '6301720283', '7075701730', 'uduthasathish5@gmail.com', '1994-08-18', 27, '2', '2', 'kethamma ilaiah', 'farmar', 300000.00, 2, 245000.00, 350000.00, 'warangal', 'Ameerpet', '2112020008', '1', '2', 'upload_files/candidate_tracker/92976906662_Resume.doc', NULL, '1', '2021-12-03', 45, '', '8', '18', NULL, 0.00, '', '0', NULL, '2', 'connected twice\n but he did not attend', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-02 05:16:18', 1, '2021-12-02 05:22:17', 0, NULL, 1),
(6971, '', '0', '7416784431', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112020009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-02 08:12:25', 0, NULL, 0, NULL, 1),
(6972, '', '0', '9840290923', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112030001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-03 10:32:32', 0, NULL, 0, NULL, 1),
(6973, 'Kamali P', '4', '9159751911', '9962855857', 'kamalipazhani36@gmail.com', '1998-04-03', 23, '1', '2', 'Pazhani R', 'Former', 15000.00, 1, 14200.00, 16000.00, 'Cuddalore', 'Chennai', '2112030002', '', '2', 'upload_files/candidate_tracker/3659936202_kamali (1).pdf', NULL, '1', '2021-12-03', 0, '5560', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in same Domain - Life insurance Sales, No proper relieving from the previous company. Internal Team Reference, can check for ESales. Kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-03 10:34:06', 60, '2021-12-03 12:12:05', 0, NULL, 1),
(6974, 'kasimahanti harish', '17', '9000581650', '', 'Harish.patnaik5@gmail.com', '1992-05-28', 29, '2', '1', 'k madhuri', 'employee', 70000.00, 1, 500000.00, 600000.00, 'hyderabad', 'hyderabad', '2112030003', '19', '2', 'upload_files/candidate_tracker/27900488443_harish Kasimahanti updated resume (updated).docx', NULL, '3', '2021-12-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-03 11:05:10', 1, '2021-12-03 11:12:28', 0, NULL, 1),
(6975, 'Shafeeq', '5', '7899346081', '', 'shafeeq@jobcento.com', '2006-10-12', 15, '2', '2', 'Zeenat', '2', 20000.00, 0, 23455.00, 20000.00, 'Hyderabad', 'Hyderabad', '2112030004', '19', '2', 'upload_files/candidate_tracker/40592092903_kasim CV 3.docx', NULL, '2', '2021-12-21', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-03 11:24:39', 1, '2021-12-16 11:44:15', 0, NULL, 1),
(6976, 'D indu', '4', '7358426230', '', 'induself1997@gmail.com', '1997-08-30', 24, '2', '2', 'D mohan rao', 'Beautician', 400000.00, 1, 14000.00, 16000.00, 'Madipakkam', 'Madipakkam', '2112030005', '1', '2', 'upload_files/candidate_tracker/27210569669_INDU RESUME.pdf', NULL, '1', '2021-12-03', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not intrested in telecalling', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-03 12:45:15', 50, '2021-12-03 12:56:30', 0, NULL, 1),
(6977, 'Sathish kumar C', '11', '9080689287', '8754444916', 'sathishkumarsk2200@gmail.com', '2000-02-09', 21, '2', '2', 'Chandran S R', 'Student', 40000.00, 1, 0.00, 15000.00, 'No 26, pettai Street, pudhupettai, Panruti', 'No 5th kaalingarayan street , wahsermanpet', '2112030006', '1', '1', 'upload_files/candidate_tracker/33903382451_Sathish_Kumar C_Resume_30-11-2021-10-26-37.pdf', NULL, '1', '2021-12-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Got another offer\n', '6', '1', '0', '1', '1', '0', '2', '2021-12-07', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-03 01:30:57', 1, '2021-12-03 02:29:25', 0, NULL, 1),
(6978, 'Karthick Selvam', '5', '9345601781', '6374689548', 'kselvammaddy36@gmail.com', '1990-11-04', 31, '2', '2', 'Poongothai', 'Office admin', 10000.00, 2, 0.00, 25.00, '3950 lig1a mmda 6', 'Mathur', '2112030007', '1', '2', 'upload_files/candidate_tracker/81790981245_Karthick Selvam New Resume 2021.docx', NULL, '1', '2021-12-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok have sales Exp but into sales of multiple domain .Not comfortable to take call. Will not suitable for our role .Sustainability doubts in our profiles', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-03 02:31:47', 50, '2021-12-03 02:55:58', 0, NULL, 1),
(6979, 'Kranthi Kumar Gogula', '17', '7013319139', '8121407918', 'kranthi.gog777@gmail.com', '1987-05-18', 34, '2', '1', 'Sivakumari', 'Home Maker', 29000.00, 2, 29000.00, 37000.00, 'Madhira', 'Hyderabad', '2112030008', '1', '2', 'upload_files/candidate_tracker/89037926911_kranthi updated resume 7 99-converted.pdf', NULL, '1', '2021-12-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-03 03:06:21', 1, '2021-12-03 03:17:57', 0, NULL, 1),
(6980, 'Sudarsan P', '11', '9710832873', '', 'p.sudarsan.suresh@gmail.com', '2006-12-03', 0, '2', '2', 'K.M.Palanisamy', 'BSF WORKER', 30000.00, 0, 0.00, 200000.00, 'Coimbatore', 'Coimbatore', '2112030009', '1', '1', 'upload_files/candidate_tracker/91510344330_Sudarsan P.pdf', NULL, '2', '2021-12-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Recruitment, seems not much comfort on the SA. Much comfortable for  yr of SA, Need time to give us the confirmation, if he comes back let us see', '6', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-03 03:41:39', 1, '2021-12-03 03:44:00', 0, NULL, 1),
(6981, 'Karthika Ashok Kumar', '11', '9600175882', '', 'karthikaak1508@gmail.com', '2000-08-15', 21, '2', '2', 'Ashok Kumar', 'Fresher', 22000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2112030010', '1', '1', 'upload_files/candidate_tracker/74310087880_Karthika Ashok Kumar.pdf', NULL, '1', '2021-12-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Recruitment, Communication ok, but not much comfort with txxampC. Salary Exp is very high being fresher. Will not sustain for a long', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-03 03:44:16', 1, '2021-12-03 03:47:14', 0, NULL, 1),
(6982, '', '0', '8798234567', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112030011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-03 04:13:01', 0, NULL, 0, NULL, 1),
(6983, 'Ananya Jayanand', '11', '7358179123', '', 'ananyajayanand@gmail.com', '1996-10-16', 25, '2', '1', 'Maneesh mohan', 'Marketing', 10000.00, 2, 0.00, 18000.00, 'Pallikaranai', 'Pallikaranai', '2112030012', '1', '1', 'upload_files/candidate_tracker/14550615385_Ananya Resume 140721-1.docx', NULL, '1', '2021-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 3 months Exp in HR operations fresher for Recruitment, Communication ok, Married,Not comfort with TxxampC, need time to check with family, Pressure handling doubts. Long Stay doubts on the profile', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-03 04:13:10', 50, '2021-12-07 12:32:20', 0, NULL, 1),
(6984, 'Arjun T R', '11', '8754413445', '', 'arjuntr32@gmail.com', '1996-03-21', 25, '2', '2', 'AP Haridas', 'Business', 25000.00, 0, 0.00, 25000.00, 'Ernakulam', 'Ernakulam', '2112030013', '1', '1', 'upload_files/candidate_tracker/63832078134_Arjun TR_CV.pdf', NULL, '2', '2021-12-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Recruitment, have exp as trainee HR executive from Kerela, looking for Recruitment with high salary Exp. Sustainability Doubts,', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-03 04:36:22', 60, '2021-12-04 04:19:35', 0, NULL, 1),
(6985, 'Dharanishankar P', '30', '8754925292', '9841343926', 'dharanishankar01@gmail.com', '2000-09-26', 21, '2', '2', 'prabhakaran j', 'business', 80000.00, 1, 0.00, 400000.00, 'Madambakkam, Chennai', 'Madambakkam, Chennai', '2112030014', '1', '1', 'upload_files/candidate_tracker/15631094382_DHARANISHANKAR P resume.docx', NULL, '1', '2021-12-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Exp and Not much Comfort on TxxampC,Dropped  ', '9', '1', '0', '1', '1', '0', '2', '2021-12-13', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-03 08:14:25', 1, '2021-12-03 08:39:54', 0, NULL, 1),
(6986, 'manikandan krishankumar', '9', '8939060026', '', 'manikris92@gmail.com', '1993-08-17', 28, '2', '2', 'krishan kumar', 'working', 30000.00, 0, 22000.00, 30000.00, 'triplicane', 'triplicane', '2112040001', '1', '2', 'upload_files/candidate_tracker/18941606413_Manikandan Resume.docx', NULL, '1', '2021-12-04', 0, '', '1', '58', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-04 10:05:57', 1, '2021-12-04 10:20:26', 0, NULL, 1),
(6987, 'Riyazsudhin. A', '5', '9345445313', '7358551243', 'riyazsudhin1243@gmail.com', '1997-09-27', 24, '2', '2', 'Abdul Rashees', 'Tailor', 30000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2112040002', '1', '2', 'upload_files/candidate_tracker/16877833662_RIYAS.A Resume 202107-1.docx', NULL, '1', '2021-12-04', 0, '', '1', '58', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-04 10:48:02', 1, '2021-12-04 10:56:08', 0, NULL, 1),
(6988, 'Sharmila. N', '11', '8428542266', '9841869721', 'sharmilakanchana7160@gmail.com', '2001-06-02', 20, '2', '2', 'Kanchana. N', 'Homemaker', 16000.00, 1, 0.00, 14000.00, 'T. Nagar', 'T. Nagar', '2112040003', '1', '1', 'upload_files/candidate_tracker/5461670017_resume.docx', NULL, '1', '2021-12-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-04 11:44:55', 1, '2021-12-04 11:47:59', 0, NULL, 1),
(6989, '', '0', '9999993421', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112040004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-04 12:00:47', 0, NULL, 0, NULL, 1),
(6990, 'Saiyogesh', '4', '7619283143', '9448426900', 'Saiyogesh003@gmail.com', '1997-02-03', 24, '3', '2', 'Venu gopal', 'Contractor', 30000.00, 1, 0.00, 25000.00, 'rt nagar dinnur bangalore 560032', 'Rt nagar', '2112040005', '', '1', 'upload_files/candidate_tracker/73332473069_SAI YOGESH .V.pdf', NULL, '1', '2021-12-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles,will not sustain\n', '1', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-04 12:24:49', 1, '2021-12-04 12:30:23', 0, NULL, 1),
(6991, 'Karthick', '5', '8072029926', '8124853632', 'lokeshkarthick0412@gmail.com', '1998-12-04', 23, '3', '2', 'Krishna moorthi', 'Tailor', 12000.00, 1, 0.00, 20000.00, '2-79 karthanur ramiyampatti Dharmapuri Tamil Nadu', 'Bommanahalli', '2112040006', '', '1', 'upload_files/candidate_tracker/68431149894_RESUME.pdf', NULL, '3', '2021-12-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate communication is not clear - Stammering - Not comfortable to take the Call, Will not sustain in our role', '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-04 02:58:51', 1, '2021-12-04 04:58:15', 0, NULL, 1),
(6992, 'Ramya Mallapur', '20', '7349653436', '', 'ramyamallapur7412@gmail.com', '2000-03-24', 21, '4', '2', 'Mallapa', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Ranebennur', 'Hubli', '2112040007', '', '1', 'upload_files/candidate_tracker/56752907591_RAMYA.docx', NULL, '2', '2021-12-05', 0, '', '5', '30', NULL, 0.00, '', '0', NULL, '2', 'communication Skill', '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-04 09:02:20', 1, '2021-12-04 09:39:36', 0, NULL, 1),
(6993, 'srikanth b', '4', '9949104894', '', 'bairagonisrikanthb@gmail.com', '1993-10-17', 28, '2', '1', 'b yadagiri', 'auto driver', 60000.00, 2, 350000.00, 500000.00, 'hyderabad', 'hyderabad', '2112050001', '19', '2', 'upload_files/candidate_tracker/7465087812_Updated Experience Srikanth.pdf', NULL, '3', '2021-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-05 07:58:23', 1, '2021-12-29 07:45:50', 0, NULL, 1),
(6994, 'Laxmi C B', '5', '8073961577', '9972759714', 'lakshmicb1912@gmail.com', '1999-12-19', 21, '4', '2', 'Channabasavaraj balikai', 'Medical representative', 50000.00, 1, 0.00, 20000.00, 'Sriram Nagar ranebennur', 'Gokul road Nehru Nagar hubballi', '2112050002', '', '1', 'upload_files/candidate_tracker/97049722988_LAXMI.docx', NULL, '2', '2021-12-05', 0, '', '4', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok, Fresher for Sales, Can be Trained for Sales .Kindly check for ESales RM and let me know your inputs', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-05 12:40:13', 60, '2021-12-07 09:55:28', 0, NULL, 1),
(6995, 'Logeshnathan L', '5', '8072240898', '9342924620', 'logesh183dhoni@gmail.com', '1998-04-26', 23, '2', '2', 'Lakshmanan R', 'Farmer', 30000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Velachery chennai', '2112060001', '1', '2', 'upload_files/candidate_tracker/40542925403_Loghan.Docx', NULL, '1', '2021-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Insurance Sales,have worked with Reliance for 2 months,in 10 months 2 companies,not comfort to spend additional time in the work. Not suitable for our role', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-06 11:33:32', 50, '2021-12-06 05:27:06', 0, NULL, 1),
(6996, '', '0', '7358719123', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112060002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-06 12:10:26', 0, NULL, 0, NULL, 1),
(6997, 'Padmapriya.R', '4', '6379151487', '9176202422', 'rampriya1314@gmail.com', '1998-11-14', 23, '2', '1', 'Kuppusamy', 'Kulli', 10000.00, 1, 12000.00, 12000.00, 'CHENNAI', 'Sanatorium', '2112060003', '16', '2', 'upload_files/candidate_tracker/91061285427_Padmapriya resume new edit.pdf', NULL, '1', '2021-12-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-06 12:52:23', 1, '2021-12-06 12:57:50', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6998, 'Mkmanoj kumar', '5', '8019667626', '9515298612', 'ma1019910@gmail.com', '1990-09-15', 31, '2', '2', 'M renuka', 'Senior sales executive', 25000.00, 2, 25000.00, 25000.00, 'HYD', 'Oldbowenpally', '2112060004', '1', '2', 'upload_files/candidate_tracker/52752760404_Document.docx', NULL, '3', '2021-12-07', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will not suit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-06 12:56:21', 1, '2021-12-06 03:07:55', 0, NULL, 1),
(6999, 'KATHIRAVAN', '20', '7904025698', '8220756112', 'Kathiravankathir127@gmail.com', '1995-07-30', 26, '2', '2', 'THIRAVIDAMANI', 'ATM SECURITY', 15000.00, 1, 0.00, 15000.00, 'Pattukkottai', 'Iyyappanthangal', '2112060005', '1', '1', 'upload_files/candidate_tracker/63856334143_Kathir RESUME main (1) (1).pdf', NULL, '1', '2021-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Telecaller, Have  Exp in Core only,Also seems to much comfort in the non voice/Core only. Not suitable for our role', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-06 02:01:31', 50, '2021-12-07 10:41:38', 0, NULL, 1),
(7000, 'DHANASEKARA PANDIAN', '20', '8220756112', '7904025698', 'dhanasekarapandianp21@gmail.com', '1994-12-21', 26, '2', '2', 'Gandhimathi N', 'Home maker', 15000.00, 1, 0.00, 15000.00, 'Madukkur', 'Madukkur', '2112060006', '1', '1', 'upload_files/candidate_tracker/70277796974_Dhanasekarapandian new resume (1).pdf', NULL, '1', '2021-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok, Fresher for Telecaller Sales Profile,Looking for IT Domain only and for the time being he is looking for the telecaller positions.Will not sustain and not suits for our role', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-06 02:03:13', 50, '2021-12-07 10:41:51', 0, NULL, 1),
(7001, 'R.vignesh', '5', '9790099623', '8220756112', 'Vigneshrajadurai97@gmail.com', '1997-11-01', 24, '2', '2', 'Rajadurai', 'Labour', 15000.00, 1, 0.00, 15000.00, 'Madukkur', 'Denappettai', '2112060007', '1', '1', 'upload_files/candidate_tracker/25035697505_vignesh resume (1).pdf', NULL, '1', '2021-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no Communication,no sustainability in his previous exp,will not handle our pressure on sales.Not suitable', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-06 02:04:43', 50, '2021-12-07 10:42:14', 0, NULL, 1),
(7002, 'P.Jayasurya', '6', '8428144200', '9074894563', 'jayasurya042001@gmail.com', '2001-08-04', 20, '1', '2', 'Vijayalakshmi prakash', 'Father', 25000.00, 1, 0.00, 15000.00, 'No:35 second cross street c.i.t nagar nandhanam-35', 'No:35 second cross street c.i.t Nagar nandhanam-35', '2112060008', '', '1', 'upload_files/candidate_tracker/25521676843_Jayasurya Resume.pdf', NULL, '1', '2021-12-06', 0, 'Jobs', '3', '59', '2021-12-13', 168000.00, '', '3', '2021-12-14', '1', 'Selected for Syed Team - RE with PF/ESI/PT Dedcutions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Link Sent to upload the documents', '', '', '', NULL, NULL, NULL, 1, '2021-12-06 02:36:57', 60, '2021-12-07 11:12:29', 0, NULL, 1),
(7003, 'Sai Bharath', '5', '9676808007', '9014572801', 'nanibharath777@gmail.com', '1997-10-17', 24, '2', '2', 'Mohan', 'Contractor', 100000.00, 1, 20000.00, 28000.00, 'Hyderabad', 'Hyderabad', '2112060009', '1', '2', 'upload_files/candidate_tracker/61860462412_B.SAI BHARATH. new.pdf', NULL, '2', '2021-12-07', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-06 03:32:28', 1, '2021-12-07 10:25:39', 0, NULL, 1),
(7004, '', '0', '6381806833', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112060010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-06 04:29:06', 0, NULL, 0, NULL, 1),
(7005, 'kishore kumar', '13', '7708962016', '', 'kishorehari221@gmail.com', '2000-04-27', 21, '3', '2', 'kimaravel', 'ailway police', 50000.00, 1, 0.00, 20000.00, 'new perungalathur', 'new Perungalathur', '2112060011', '', '1', 'upload_files/candidate_tracker/36231202976_MY RESUME- kishorepdf-convertedb.pdf', NULL, '3', '2021-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-06 04:48:47', 1, '2021-12-06 04:54:41', 0, NULL, 1),
(7006, 'M satyanarayana murthy', '5', '9121406807', '', 'murthyjgd@gmail.com', '1998-04-28', 23, '2', '2', 'M Nuka raju', 'Business', 30000.00, 1, 15000.00, 25000.00, 'Marripudi', 'Marripudi', '2112060012', '1', '2', 'upload_files/candidate_tracker/42593786718_Murthy_Resume.pdf', NULL, '1', '2021-12-10', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for our profile', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-06 04:56:54', 50, '2021-12-10 10:13:00', 0, NULL, 1),
(7007, 'MUBARAK Basha', '4', '7010896863', '9710772040', 'Mubarakbasha1786@gmail.com', '1997-12-31', 23, '2', '2', 'Basha', 'Gaming', 20000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2112060013', '1', '2', 'upload_files/candidate_tracker/53335221387_mubarak basha Resume.docx', NULL, '1', '2021-12-07', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-06 06:14:51', 1, '2021-12-06 06:20:17', 0, NULL, 1),
(7008, 'Saravanan P.R', '5', '9003590216', '', 'prsaravanan7@gmail.com', '1994-02-20', 27, '2', '2', 'Ramarao', 'Salaried', 18000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2112060014', '17', '2', 'upload_files/candidate_tracker/30289476157_Saravana resume update.docx', NULL, '1', '2021-12-08', 31, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-06 07:00:58', 1, '2021-12-06 07:05:25', 0, NULL, 1),
(7009, 'S. RAJA', '11', '9176478617', '6383551511', 'Rajaselvaraj1503@gmail.com', '1992-03-15', 29, '2', '2', 'N. Selvaraj', 'Production manager', 25000.00, 2, 0.00, 15000.00, 'chennai', 'Gergampakkam', '2112070001', '16', '1', 'upload_files/candidate_tracker/99746224351_raja .1503.docx', NULL, '1', '2021-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in multiple domain, not interested for Sales calls. Not suitable', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-07 07:34:37', 1, '2021-12-07 07:47:25', 0, NULL, 1),
(7010, 'Nithya. M', '11', '7358740605', '6381806833', 'nithya1506ssadhana@gmail.com', '1993-06-15', 28, '2', '1', 'Manikandan', 'Driver', 15500.00, 5, 0.00, 15000.00, 'Chennai', 'Nespakkam', '2112070002', '16', '1', 'upload_files/candidate_tracker/86464394252_Nithya-1.doc', NULL, '1', '2021-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have Exp as a receptionist, not clear for which position she applied. Will not handle the Telecaller Sales. Not Suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-07 10:27:06', 60, '2021-12-07 11:16:12', 0, NULL, 1),
(7011, 'SASIKANTH SALAPATHI', '5', '9940635752', '7550140196', 'sasi.pavi414@gmail.com', '1996-10-04', 25, '2', '2', 'Salapathi', 'Laundry shop and Tailor garments', 78650.00, 4, 18500.00, 20000.00, 'Chennai', 'Chennai', '2112070003', '3', '2', 'upload_files/candidate_tracker/90835528377_sasikanth 421.pdf', NULL, '1', '2021-12-07', 0, '', '3', '59', '2021-12-08', 274000.00, '', '3', '2021-12-14', '1', 'Selected for Pandiarajan Team - RM Candidate - With PF/PT Deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-07 11:04:52', 60, '2021-12-08 09:59:13', 0, NULL, 1),
(7012, 'abitha', '20', '8754789012', '', 'abitha28029@gmail.com', '2000-07-29', 21, '2', '1', 'parasuraman', 'working', 10000.00, 2, 0.00, 10000.00, 'kalpakkam', 'Kalpakkam', '2112070004', '1', '1', 'upload_files/candidate_tracker/79652917442_Resume_Abitha P_Format7.pdf', NULL, '1', '2021-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have 8 months exp in  loan collections, Not interested to take the outbound calls. Not suitable and will not sustain. No Sustainability in her previous exp too.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-07 11:32:09', 1, '2021-12-07 12:24:53', 0, NULL, 1),
(7013, 'Jayasree s', '4', '6380373886', '9884549398', 'Jaiswathi49@gamail.com', '2000-03-31', 21, '3', '2', 'Shankar c', 'Contractor', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2112070005', '', '1', 'upload_files/candidate_tracker/45182142561_JAYASHREE RESUME.pdf', NULL, '1', '2021-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'communication ok, seems not  showing much importance to the job.Earlier 2 months worked as call coordinator then career gap,No Graduation, Will not sustain in our role', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-07 11:33:18', 1, '2021-12-07 11:40:58', 0, NULL, 1),
(7014, '', '0', '9342616390', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112070006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-07 11:48:52', 0, NULL, 0, NULL, 1),
(7015, 'ajai', '5', '9789564200', '', 'ajayagarwalg2000@gmail.com', '2000-08-10', 21, '2', '2', 'govindhasami', 'business', 20000.00, 0, 25000.00, 30000.00, 'salem', 'chennai', '2112070007', '1', '2', 'upload_files/candidate_tracker/63882117763_AJAY RESUME.pdf', NULL, '2', '2021-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Appeared for an Interview and the salary Exp is very High,Not open for Field Sales looking only for Telecaller roles', '5', '1', '0', '1', '1', '0', '2', '2021-12-17', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-07 12:00:06', 1, '2021-12-07 12:04:43', 0, NULL, 1),
(7016, 'Mathsyagiri manimadde', '5', '8074080390', '9849256209', 'machagirimanimadde@gmail.com', '1999-06-01', 22, '2', '2', 'Venkataiah manimadde', 'Former', 12000.00, 3, 17000.00, 25000.00, 'Hyderabad', 'Hyderabad', '2112070008', '1', '2', 'upload_files/candidate_tracker/9623824693_Giri Resume (1).doc', NULL, '1', '2021-12-11', 15, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-07 12:22:54', 1, '2021-12-07 12:26:33', 0, NULL, 1),
(7017, 'ratchagar', '5', '9698760769', '', 'ratchagar23@gmail.com', '1993-11-22', 28, '2', '2', 'dhanraj', 'working', 10000.00, 2, 16500.00, 20000.00, 'arumbakkam', 'Arumbakkam', '2112070009', '1', '2', 'upload_files/candidate_tracker/86435169540_ratchagar hd.pdf', NULL, '2', '2021-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, Recently joined reliance and looking for change in terms of salary, also he is not comfort to take the calls and generating the leads.Will not sustain,not suitable', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-07 12:26:11', 1, '2021-12-07 12:29:45', 0, NULL, 1),
(7018, '', '0', '7396851848', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112070010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-07 01:11:57', 0, NULL, 0, NULL, 1),
(7019, 'Kalisetty Prem Sai', '5', '8555057579', '', 'kpsai26@gmail.com', '1990-04-27', 31, '2', '2', 'Narayana Swamy', 'Retired', 25000.00, 2, 24000.00, 35000.00, 'Hyderabad', 'Jyothi Nagar, R.C.Puram, Medak', '2112070011', '19', '2', 'upload_files/candidate_tracker/63996069387_PremSai.doc', NULL, '1', '2021-12-10', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '2', 'Will not fit for the profile', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-07 01:34:05', 1, '2021-12-07 01:46:07', 0, NULL, 1),
(7020, 'monisha.m', '4', '8778456972', '', 'monijamun34@gmail.com', '1999-12-04', 22, '2', '2', 'subramani', 'farmer', 10000.00, 2, 12000.00, 15000.00, 'vellore', 'electronic city', '2112070012', '1', '2', 'upload_files/candidate_tracker/61849588824_CV_2021-09-24-055832.pdf', NULL, '1', '2021-12-07', 0, '', '3', '59', '2021-12-09', 170496.00, '', '', '2021-12-24', '2', 'Selected for ESales Bangalore Reporting to Sathish Kumar in  Prop - 208 Deductions', '1', '2', '', '2', '2', '', '2', '1970-01-01', '3', '3', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-07 02:56:31', 60, '2021-12-08 05:52:05', 0, NULL, 1),
(7021, 'Anbarasi. T', '25', '6369598288', '9003834473', 'Anbarasi14281428@gmail.com', '1997-05-20', 24, '2', '2', 'Babu', 'Working', 15000.00, 5, 13000.00, 15000.00, 'Kaniyakumari', 'Chennai', '2112070013', '3', '2', 'upload_files/candidate_tracker/5933455870_Anbarasi new resume 2021- (2).pdf', NULL, '1', '2021-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not ready for ESales and for the CRM profile Exp is very high', '8', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-07 03:03:19', 1, '2021-12-07 03:14:21', 0, NULL, 1),
(7022, 'anjali.j', '4', '7639327422', '', 'anjalijamu2000@gmail.com', '2000-02-01', 21, '2', '2', 'jayaseelan', 'unemployed', 15000.00, 2, 10000.00, 12000.00, 'vellore', 'electronic city', '2112070014', '1', '2', 'upload_files/candidate_tracker/48819555116_Anjali CV 1-converted-converted.pdf', NULL, '1', '2021-12-07', 0, '', '3', '59', '2021-12-09', 170496.00, '', '', '2021-12-24', '2', 'Selected For ESales Bangalore Reporting To Sathish Kumar In  Prop - 208 Deductions', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', 'Offer Mail Sent,candidate joined on 10-Dec-2021', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-07 03:06:14', 60, '2021-12-10 11:47:07', 0, NULL, 1),
(7023, 'VISHALAKSHI M', '5', '9902864253', '', 'vishalakshivishu129@gmail.com', '1997-01-04', 24, '2', '2', 'moorthy', 'working', 20000.00, 2, 15000.00, 16000.00, 'madikeri', 'batranpura', '2112070015', '1', '2', 'upload_files/candidate_tracker/58293594024_VISHALAKSHI M (CV).docx', NULL, '2', '2021-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok,Long Distance around 20 kms and the candidate is not ready to relocate ,also the salary exp is around min 18K PM. No Relevant Exp in Telecaller Sales Will not sustain in our role', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-07 03:16:28', 50, '2021-12-07 03:26:25', 0, NULL, 1),
(7024, 'R.Sivaramakrishnan', '31', '6383259610', '', 'srksivaram262@gmail.com', '2001-06-03', 20, '2', '2', 'S.A.Ramalingam', 'Business', 100000.00, 5, 0.00, 10000.00, '17c, Natchiyaar amman koil Street, Jayankondam', 'Jayankondam', '2112070016', '1', '1', 'upload_files/candidate_tracker/18230913159_Newresume1.pdf', NULL, '1', '2021-12-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,No basic skills knowledge,not comfirt with the terms and conditions,need time to confirm on the TxxampC,if comes back let us check\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-07 03:27:56', 1, '2021-12-07 03:34:22', 0, NULL, 1),
(7025, 'Roopa', '4', '7349623512', '', 'badigerroopa14@gmail.com', '1998-05-27', 23, '2', '2', 'Parent', 'No', 5000.00, 5, 17000.00, 17000.00, 'Jigani', 'Jigani apc circle', '2112070017', '1', '2', 'upload_files/candidate_tracker/53319338731_roopa resume.docx', NULL, '3', '2021-12-07', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average, seems not much genuine on the exp mentioned in the resume.Sustainability Doubts on this profile', '1', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-07 03:30:10', 50, '2021-12-07 03:42:02', 0, NULL, 1),
(7026, 'JESWANI PRAKASH', '5', '9885437481', '', 'prakash271098@gmail.com', '1998-10-27', 23, '2', '2', 'JESWANI ANITHA', 'HOUSEWIFE', 30000.00, 0, 15000.00, 20000.00, 'Mettuguda', 'Mettuguda', '2112070018', '1', '2', 'upload_files/candidate_tracker/17852790114_APR - 2021 RESUME (J PRAKASH).doc', NULL, '2', '2021-12-08', 10, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for our profile', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-07 04:41:30', 50, '2021-12-08 10:02:30', 0, NULL, 1),
(7027, 'Murugan A', '13', '9655439064', '9361638084', 'Aravind30495@gmail.com', '1995-04-30', 26, '2', '2', 'Anandhan', 'Farmer', 10000.00, 1, 0.00, 8000.00, 'Sholinganallur', 'Sholinganallur', '2112070019', '1', '1', 'upload_files/candidate_tracker/68990314316_Murugan resume 1.pdf', NULL, '1', '2021-12-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT he has exp in Core Civil Domian,Looking for IT openings.Not Strong with the basic skills.2nd LEvel Interviewed by Latha and the profile has been rejected', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-07 04:43:46', 1, '2021-12-07 04:57:09', 0, NULL, 1),
(7028, '', '0', '9790749922', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112070020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-07 04:50:24', 0, NULL, 0, NULL, 1),
(7029, 'P PRAVEEN REDDY', '5', '8125240983', '8309956928', 'paillapraveenreddy@gmail.com', '1997-10-20', 24, '2', '2', 'No', 'Job', 40000.00, 1, 14500.00, 17000.00, 'Jagathgirigutta/ kukatpally', 'Jagathgirigutta/ kukatpally', '2112080001', '1', '2', 'upload_files/candidate_tracker/11923127770_Final document resume 2021.doc', NULL, '3', '2021-12-09', 15, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-08 10:34:06', 50, '2021-12-09 10:12:57', 0, NULL, 1),
(7030, '', '0', '9945746876', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112080002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-08 10:41:18', 0, NULL, 0, NULL, 1),
(7031, 'Sitharasan', '6', '9841457177', '8522888741', 'sitharasansitharasan6738@gmail.com', '1997-05-04', 24, '2', '2', 'Mohan doss', 'Sales', 25000.00, 2, 15090.00, 22000.00, '4,Murugan kovil street, vadhanur,Pondicherry-01', '15146,kanngi Nagar,Thuraipakkam,chennai-97', '2112080003', '1', '2', 'upload_files/candidate_tracker/1590987556_sith resume new resume.docx', NULL, '1', '2021-12-08', 30, '', '5', '80', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He went lunch after that he doesnxquott come to office', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-08 11:22:26', 50, '2021-12-08 11:47:23', 0, NULL, 1),
(7032, '', '0', '9962581755', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112080004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-08 11:38:39', 0, NULL, 0, NULL, 1),
(7033, 'Vimalkumar V', '4', '7904279223', '9840758013', 'removimalkumar1819@gmail.com', '1999-09-10', 22, '2', '2', 'Vijayakumar', 'Driver', 10000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2112080005', '3', '1', 'upload_files/candidate_tracker/54429015840_RESUME Vimalkumar V.pdf', NULL, '1', '2021-12-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Telecaller, have Exp in Data Entry, Comfort to work in Non Voice Process, .He is a Dancer Too, Will not sustain with our role for a long', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-08 12:52:52', 1, '2021-12-08 12:57:20', 0, NULL, 1),
(7034, 'S. Pavithran', '4', '6369587200', '9176813084', 'Pavisangee758@gmail.com', '2000-02-21', 21, '2', '2', 'R. Sivasankaran', 'Railway', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2112080006', '3', '1', 'upload_files/candidate_tracker/96949854693_1638949020353_1638948938406_RESUME - PAVITHRAN.pdf', NULL, '1', '2021-12-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not ready to work under Targets. Not suitable ', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-08 12:59:36', 1, '2021-12-08 01:12:03', 0, NULL, 1),
(7035, 'Harini Kunguma Gayathri', '5', '9884673107', '9789500425', 'harinigayathri04@gmail.com', '2000-07-31', 21, '2', '1', 'Naveen Kumar. S', 'mechanical engineering', 50000.00, 1, 0.00, 22000.00, 'Banglore', 'Banglore', '2112080007', '20', '1', 'upload_files/candidate_tracker/35706018921_ResumeHKG.docx', NULL, '2', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher For Telecaller-Esales,Sustainability Doubts,She Recently Married,Not Comfort To Travel From Her Location To Madiwalla, Didnt come back with her interest', '5', '2', '0', '2', '2', '0', '2', '2021-12-18', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-08 01:11:51', 1, '2021-12-15 09:14:59', 0, NULL, 1),
(7036, '', '0', '9025121149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112080008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-08 01:22:02', 0, NULL, 0, NULL, 1),
(7037, 'Syed abil nijam', '5', '7448740775', '9600017846', 'syedabilnijam@gmail.com', '1996-03-20', 25, '2', '1', 'Taslim', 'Business', 300000.00, 1, 23000.00, 28000.00, 'Tambaram', 'Tambaram', '2112080009', '1', '2', 'upload_files/candidate_tracker/38960872714_ABIL NIJAM new.docx', NULL, '1', '2021-12-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much suitable for the RM role, no relevant Sales Exp too, have worked in B2B earlier. no clarity on the previous job changes.Sustainability Doubts on this position', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-08 02:10:02', 1, '2021-12-08 02:13:17', 0, NULL, 1),
(7038, '', '0', '9398730168', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112080010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-08 02:59:52', 0, NULL, 0, NULL, 1),
(7039, 'chennu hari krishna', '5', '8317548488', '8247671377', 'harikrishna.5965@gmail.com', '1996-07-15', 25, '1', '2', 'venkata ramulu', 'farmer', 25000.00, 0, 0.00, 25000.00, 'hyderabad', 'hyderabad', '2112080011', '', '1', 'upload_files/candidate_tracker/87167831883_Hari krishna111.docx', NULL, '1', '2021-12-08', 0, 'p1241', '3', '59', '2021-12-13', 299999.00, '', '4', '2022-04-11', '1', 'selected for Veben Team with PF/PT. Commitment has been given to the candidate on the revision of the salary after 6 months', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '2', '1', 'Offer link has been shared', '', '', '', NULL, NULL, NULL, 1, '2021-12-08 03:06:41', 60, '2021-12-10 06:32:41', 0, NULL, 1),
(7040, 'Suriyakumar J', '11', '9894014815', '', 'suriyakumar688@gmail.com', '1994-05-09', 27, '2', '2', 'JAYAGOPAL P', 'CHIEF HEALTH INSPECTOR', 60000.00, 1, 0.00, 20000.00, 'Karur', 'Karur', '2112080012', '1', '1', 'upload_files/candidate_tracker/20349150365_SURIYAKUMAR resume.pdf', NULL, '2', '2021-12-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, 3 yrs 3 companies, seems not much good profile for our recruitment, Sustainability also doubts, handling pressure Doubts, Father is  Govt Chief Health Inspector', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-08 03:19:52', 50, '2021-12-09 10:13:35', 0, NULL, 1),
(7041, 'GOKUL', '4', '9171115404', '6369645421', 'Gokulram803@gmail.com', '1996-11-18', 25, '2', '2', 'M.Vijayaraghavan', 'Security in charge', 20000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2112080013', '1', '2', 'upload_files/candidate_tracker/39107542884_1629536394033Resume_Gokul.pdf', NULL, '1', '2021-12-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Customer Support and looking for IT openings but not relevant to our skill sets.Currently pursuing AWS course.Will not sustain in our Telecaller\n', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-08 03:21:58', 50, '2021-12-08 03:56:05', 0, NULL, 1),
(7042, 'Vignesh', '4', '7010943869', '8220725442', 'Vigneshr.v647@gmail.com', '1995-07-24', 26, '2', '2', 'Rajasekar', 'Goldsmith', 25000.00, 2, 0.00, 15000.00, 'Keelkattalai', 'Keelkattalai', '2112080014', '1', '1', 'upload_files/candidate_tracker/65142046139_Vignesh CV fresher.docx', NULL, '1', '2021-12-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp in Sales,Will not handle our telecaller pressure.Looking for AWs openings', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-08 03:24:55', 50, '2021-12-08 03:56:17', 0, NULL, 1),
(7043, 'SAKTHIVEL R', '11', '7010971327', '8056765202', 'rsakthivel311@gmail.com', '1996-11-03', 25, '2', '2', 'RAJENDRAN L', 'Clerk', 35000.00, 1, 0.00, 10000.00, 'Trichy', 'Trichy', '2112080015', '1', '1', 'upload_files/candidate_tracker/8916221696_sakthi resume.pdf', NULL, '2', '2021-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate communication is ok,No basic knowledge in the Recruitment.Worked in the core for almost 2 yrs, have a plan to go with Master degree. Preparing Civil Service Exam too. Will not sustain for a long', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-08 03:29:38', 1, '2021-12-09 03:50:15', 0, NULL, 1),
(7044, '', '0', '7094976450', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112080016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-08 05:45:56', 0, NULL, 0, NULL, 1),
(7045, 'S.H.SAMURAIFA', '4', '7200178813', '', 'raifa7116@gmail.com', '1997-11-16', 24, '2', '2', 'V.T. Shahul Hameed', 'Business', 12000.00, 1, 0.00, 15000.00, '71/16,aliyar street,kayalpatnam-628204', 'Sheikh abdhullah nagar,virugambakkam, chennai', '2112080017', '17', '1', 'upload_files/candidate_tracker/21272356448_Cv_Raifa..pdf', NULL, '1', '2021-12-09', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for this voice process', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-08 05:56:42', 1, '2021-12-08 06:01:54', 0, NULL, 1),
(7046, 'Vemulawada Ganesh', '5', '7095272348', '', 'ganeshchary48@gmail.com', '1996-06-29', 25, '2', '2', 'Ramaswamy', 'Corpenter', 20000.00, 1, 2.40, 3.20, 'Karimnagar', 'Karimnagar', '2112090001', '19', '2', 'upload_files/candidate_tracker/8436659374_ganesh-2.pdf', NULL, '1', '2021-12-15', 15, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-09 09:35:55', 64, '2021-12-15 11:25:50', 0, NULL, 1),
(7047, 'Ashwin Kumar', '4', '9962887822', '', '9962887822a@gmail.com', '2000-06-29', 21, '2', '2', 'Arun D', 'Transport', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2112090002', '20', '1', 'upload_files/candidate_tracker/23432617685_Ashwin Kumar A.pdf', NULL, '1', '2021-12-13', 0, '', '3', '59', '2021-12-16', 126000.00, '', '5', '1970-01-01', '1', 'Selected for Elite RE- Muthu Team  in Patroniss Cash', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-12-09 10:03:04', 60, '2021-12-14 06:34:03', 0, NULL, 1),
(7048, 'Arun balji', '5', '8056422864', '9342318296', 'balaji.rarun97@gmail.com', '1997-08-25', 24, '2', '2', 'Rajeswari', 'House wife', 25.00, 1, 25000.00, 30000.00, 'Kodambakam', 'Kodambakkam', '2112090003', '1', '2', 'upload_files/candidate_tracker/97816487272_Arun Balaji - resume1.pdf', NULL, '1', '2021-12-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp,have worked in multiple domain,in 2yrs worked with 4 companies. salary Exp is very high.Will not sustain in our position.Not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-09 10:33:27', 50, '2021-12-09 10:44:34', 0, NULL, 1),
(7049, 'Janaki raman', '4', '7358379305', '7358475162', 'ravanasura29@gmail.com', '1999-01-29', 22, '2', '2', 'Jothi Lakshmi', 'Tailor', 60000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2112090004', '3', '1', 'upload_files/candidate_tracker/80714359464_pdf24-JANAKIRAMAN.pdf', NULL, '1', '2021-12-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher ,not a Graduate,Have worked in non voice process only,Not comfort to work in Voice Process.Will not sustain in our role', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-09 11:13:17', 1, '2021-12-09 11:26:36', 0, NULL, 1),
(7050, '', '0', '8124031743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112090005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-09 11:55:12', 0, NULL, 0, NULL, 1),
(7051, 'Durga Devi M', '11', '9962474678', '', 'durgaderryy1908@gmail.com', '1998-08-19', 23, '2', '2', 'Murugesan', 'Business', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2112090006', '20', '1', 'upload_files/candidate_tracker/36930438642_DURGA_DEVI_MBA 2.pdf', NULL, '3', '2021-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-09 11:57:21', 1, '2021-12-09 12:03:37', 0, NULL, 1),
(7052, 'Ashwitha Balasubramanian', '11', '7904176709', '8056077920', 'ashwithabalasubramanian002@gmail.com', '1998-01-20', 23, '2', '1', 'K S Aniruddha', 'IT', 50000.00, 1, 10000.00, 20000.00, 'Nanganallur', 'Nanganallur', '2112090007', '1', '2', 'upload_files/candidate_tracker/94422219333_Ashwitha Balasubramanian.pdf', NULL, '1', '2021-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, have 1 yr exp as HR Trainee in TVS, Recently Married, Salary Exp is very high Min 17K.No relevant Exp in Recruitment, can be trained, but sustainability doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-09 12:40:15', 1, '2021-12-09 12:46:01', 0, NULL, 1),
(7053, 'PAVITHRA M', '30', '9944355523', '7708855985', 'pavithrasuresh0303@gmail.com', '1997-05-26', 24, '2', '1', 'SURESH P', 'Software Engineer', 80000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2112090008', '1', '1', 'upload_files/candidate_tracker/45511372287_Pavithra Resume.pdf', NULL, '1', '2021-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, Fresher for Stocks, Much into finance/Accounting. Recently married and sustainability doubts on this profile.', '9', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-09 12:52:35', 1, '2021-12-09 12:59:03', 0, NULL, 1),
(7054, 'Abhishek P', '2', '7401153273', '', 'abhishekpunithan@gmail.com', '1998-08-05', 23, '2', '2', 'Punithan', 'Probation officer', 15000.00, 1, 0.00, 10000.00, '3b, Kannadasan Street, chembarambakkam, Chennai', '3b, Kannadasan Street, Chembarambakkam, Chennai', '2112090009', '1', '1', 'upload_files/candidate_tracker/47832313791_ResumeAbhi.pdf', NULL, '1', '2021-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, no strong knowledge  in React, Having knowledge only in HTML,CSS. Too long distance around60kms up and down.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-09 01:21:10', 1, '2021-12-09 01:27:29', 0, NULL, 1),
(7055, '', '0', '9176423432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112090010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-09 02:18:59', 0, NULL, 0, NULL, 1),
(7056, 'E.Praveen', '5', '9551626704', '7395902282', 'praveentn22ck7022@gmail.com', '1998-03-13', 23, '2', '2', 'E.Gomathy', 'Central Government', 35000.00, 1, 18000.00, 20000.00, 'Pozchichalur', 'Pozchichalur', '2112090011', '1', '2', 'upload_files/candidate_tracker/67657325736_Praveen Resume.pdf', NULL, '1', '2021-12-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Relevant Exp ,Earlier he was a Field Service Engineer .Candidate not open for Field Sales, looking for office based Telecaller work and his last drawn monthly 18K .Will not sustain in our roles.', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-09 02:48:39', 1, '2021-12-09 03:04:11', 0, NULL, 1),
(7057, 'Bharath Kumar', '5', '8143090737', '8143725075', 'bharathkumarsb57@gmail.com', '1997-09-12', 24, '2', '2', 'anitha', 'private', 10000.00, 0, 25000.00, 30000.00, 'hyderabad', 'Hyderabad', '2112090012', '1', '2', 'upload_files/candidate_tracker/98193564720_Bharath Kumar SB57.pdf', NULL, '2', '2021-12-10', 0, '', '3', '59', '2022-01-03', 360000.00, '', '4', '2022-02-09', '1', 'Selected for Veben, Discussed with Sriram Sir and Finalized the pay for 3.6LPA', '5', '1', '1', '3', '4', '', '2', '2021-12-18', '2', '1', 'Offer Document Link shared', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-09 02:50:24', 60, '2021-12-28 04:43:32', 0, NULL, 1),
(7058, 'Ajith P', '13', '9597963144', '7845661338', 'ajithpunniaseelan0604@gmail.com', '1998-10-22', 23, '2', '2', 'Punniyaseelan A', 'Shopkeeper', 80000.00, 1, 0.00, 12000.00, 'SIPCOT, RANIPET', 'SIPCOT, RANIPET', '2112090013', '1', '1', 'upload_files/candidate_tracker/66088556711_Ajith_Resume.pdf', NULL, '1', '2021-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-09 03:06:42', 1, '2021-12-09 03:11:21', 0, NULL, 1),
(7059, 'Mahalakshmi', '4', '9884376548', '9841800422', 'mahalakshmim728@gmail.com', '2000-08-01', 21, '2', '2', 'Ganeshan', 'Oil Sales man', 25000.00, 1, 0.00, 14000.00, 'Old washermanpet', 'Old washermanpet', '2112090014', '17', '1', 'upload_files/candidate_tracker/12677100325_MAHALAKSHMI.. RESUME.pdf', NULL, '1', '2021-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-09 05:33:05', 1, '2021-12-09 06:36:25', 0, NULL, 1),
(7060, 'Mohammad Sahal Afroz', '5', '8466887721', '', 'sahal.mohammad351@gmail.com', '1996-07-15', 25, '2', '2', 'Mohammad Jarrar', 'Lorry Driver', 20000.00, 1, 0.00, 22000.00, 'Sathupally', 'Hyderabad', '2112090015', '17', '1', 'upload_files/candidate_tracker/99019455121__Sahall_Resume-converted.pdf', NULL, '2', '2021-12-10', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Raj BDM took the Interview, sustainability issue and not having relavant experienvce so rejected', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-09 05:46:22', 50, '2021-12-10 10:13:32', 0, NULL, 1),
(7061, '', '0', '9042220610', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112090016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-09 06:34:56', 0, NULL, 0, NULL, 1),
(7062, 'shaik mahammd vali', '4', '9959203704', '', 'shaikmahammadvali340@gmail.com', '1998-06-14', 23, '2', '2', 'shaik mohammad rafi', 'driver', 15000.00, 1, 13000.00, 15000.00, 'ganga nagar anantapur', 'near jntuh hyderabad', '2112090017', '17', '2', 'upload_files/candidate_tracker/83744572919_my resume-pdf.pdf', NULL, '2', '2021-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-09 10:55:27', 1, '2021-12-12 02:24:27', 0, NULL, 1),
(7063, 'r Harikrishna', '5', '9032294541', '', 'rharikrishna3746@gmail.com', '1996-05-20', 25, '2', '2', 'r Adilakshmi', 'housewife', 250000.00, 3, 0.00, 400000.00, 'Banglore', 'Banglore', '2112100001', '19', '2', 'upload_files/candidate_tracker/44689405190_updated resume harikrishna.docx', NULL, '3', '2021-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-10 10:23:44', 1, '2021-12-10 10:27:42', 0, NULL, 1),
(7064, 'P.prathyusha', '4', '9985688622', '9502765296', 'pprathyusha812@gmail.com', '1998-05-07', 23, '2', '2', 'P.anil kumar reddy', '4lakh', 27000.00, 1, 0.00, 18000.00, 'Tirupati', 'Tirupati', '2112100002', '1', '1', 'upload_files/candidate_tracker/32755115268_1638020400435_1638020122058_1635165823511_pprathyusha resume.pdf', NULL, '3', '2021-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, much focus on the salary only. Pressure handling doubt, will not sustain', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 10:24:01', 50, '2021-12-10 11:02:31', 0, NULL, 1),
(7065, 'priyanka yadav', '20', '8050096787', '9606416454', 'priyankayadav9980@gmail.com', '2006-12-10', 0, '2', '2', 'hanumanthaiah', 'Salaried', 20000.00, 0, 15000.00, 15000.00, 'bangalore', 'adugodi', '2112100003', '1', '2', 'upload_files/candidate_tracker/22026421579_priyanka- 3(1).pdf', NULL, '1', '2021-12-10', 0, '', '3', '59', '2021-12-13', 194496.00, '', '6', '2022-10-05', '2', 'Selected for Esales - Madiwalla with PT only in CAFS Infotech Prop', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', 'Offer Mail Sent - CAFS Infotech Prop Staff Role', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 10:41:30', 60, '2021-12-11 12:54:20', 0, NULL, 1),
(7066, 'sudha.r', '20', '9113660641', '9611870351', 'sudhatr2228@gmail.com', '1996-08-26', 25, '2', '2', 'lakshmi', 'house wife', 14000.00, 1, 13800.00, 14800.00, 'tumkur', 'lakshbandra', '2112100004', '1', '2', 'upload_files/candidate_tracker/13391600968_Resume Saviii new(1).pdf', NULL, '1', '2021-12-07', 0, '', '3', '59', '2021-12-13', 227300.00, '', '3', '2022-03-03', '2', 'Selected for Bangalore ESales  - PF/ESI/PT Deductions', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 10:46:53', 60, '2021-12-10 06:37:03', 0, NULL, 1),
(7067, '', '0', '6303444058', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-10 11:09:54', 0, NULL, 0, NULL, 1),
(7068, 'Naveen Kumar G', '23', '7708036794', '9944953455', 'naveen.iet.it@gmail.com', '2000-06-14', 21, '2', '2', 'Gurunathan K', 'Textile business', 25000.00, 2, 0.00, 20000.00, 'Tiruppur', 'Tiruppur', '2112100006', '1', '1', 'upload_files/candidate_tracker/94731629531_Naveen kumar resume.pdf', NULL, '1', '2021-12-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '3', '0', '2', '2021-12-13', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-10 11:12:28', 1, '2021-12-10 11:22:16', 0, NULL, 1),
(7069, '', '0', '7032420068', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112100007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-10 11:13:54', 0, NULL, 0, NULL, 1),
(7070, 'Mahalakshmi R', '11', '9791057767', '9790367034', 'ravisuntharmahalakshmi@gmail.com', '1995-12-20', 25, '2', '1', 'Gautham G', 'Senior business analyst in FIS', 146000.00, 1, 0.00, 200000.00, 'MJ IV second floor thirumangalam high road', 'MJ IV second floor Tirumangalam high road', '2112100008', '1', '1', 'upload_files/candidate_tracker/77110779632_Resume dt 27.7.2021.pdf', NULL, '1', '2021-12-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-10 11:17:23', 1, '2021-12-10 11:21:28', 0, NULL, 1),
(7071, '', '0', '9502765296', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112100009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-10 11:29:43', 0, NULL, 0, NULL, 1),
(7072, 'nishchitha h m', '20', '9611583587', '8277499854', 'nischiharshi9486@gmail.com', '2000-01-05', 21, '2', '2', 'bhagya', 'Salaried', 15000.00, 2, 0.00, 15000.00, 'sakaleshpur', 'rajarajeshwarinagar', '2112100010', '1', '1', 'upload_files/candidate_tracker/55807384046_Nishcitha-converted.pdf', NULL, '1', '2021-12-10', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not selected', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 11:30:51', 50, '2021-12-10 11:48:36', 0, NULL, 1),
(7073, 'Rahul K', '5', '9952052846', '9940504194', 'jeremiahrahul@gmail.com', '1996-08-02', 25, '2', '2', 'A. Kalimuthu', 'Driver', 25000.00, 1, 15000.00, 20000.00, 'Kolathur', 'Kolathur', '2112100011', '1', '2', 'upload_files/candidate_tracker/21319225178_Jeremiah Rahul 07.docx', NULL, '1', '2021-12-10', 25, '', '4', '44', NULL, 0.00, '', '0', NULL, '1', '5050 profile, no relevant Exp,Every 1 year changed the job, kindly check and let me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-10 11:40:37', 1, '2021-12-10 11:45:16', 0, NULL, 1),
(7074, 'kavya k r', '20', '6360430859', '9980405207', 'kavyakrkanyakr@gmail.com', '2001-05-28', 20, '2', '2', 'lalitha', 'Salaried', 15000.00, 2, 0.00, 15000.00, 'hassan', 'rajarajeshwarinagar', '2112100012', '1', '1', 'upload_files/candidate_tracker/41153712718_kavya K R - Copy-converted (1).pdf', NULL, '1', '2021-12-10', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not selected', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 11:46:34', 50, '2021-12-10 12:16:00', 0, NULL, 1),
(7075, 'Likhitha. V', '20', '9880601368', '', 'Likhitha3155@gmail.com', '1997-06-30', 24, '2', '2', 'Father- Vijaya kumar', 'Student', 30000.00, 0, 0.00, 15000.00, '#24, 5th cross Kamath layout Kodigahalli bangalore', '24, 5th Cross Kamath Layout Kodigahalli Bangalore', '2112100013', '1', '1', 'upload_files/candidate_tracker/13067282091_CV_2021-11-29-024528.pdf', NULL, '1', '2021-12-10', 0, '', '3', '59', '2021-12-20', 170496.00, '', NULL, '2023-06-12', '2', 'Selected for ESales - Bangalore Location with PT only', '5', '1', '', '2', '2', '', '2', '2021-12-13', '1', '1', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 11:48:24', 60, '2021-12-17 03:37:59', 0, NULL, 1),
(7076, 'Riyazoor Rahman R', '4', '8667238515', '', 'riyazoorrahman1750@gmail.com', '2000-11-08', 21, '1', '2', 'Rabik M E', 'Accountant', 15000.00, 2, 0.00, 20000.00, '139/225, Mettu Street, Gandhi Salai, Chengalpattu.', '139/225, Mettu street, Gandhi Salai, Chengalpattu.', '2112100014', '', '1', 'upload_files/candidate_tracker/94063689421_cvriyaz66.pdf', NULL, '1', '2021-12-10', 0, 'P1282', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic knowledge in the required skills,much comfort to work in the non voice process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-10 12:37:59', 50, '2021-12-10 12:54:38', 0, NULL, 1),
(7077, 'NAJUMUDEEN', '5', '8939541553', '9360962102', 'najumul.M@gmail.com', '1991-08-16', 30, '2', '1', 'Jannathy', 'House wife', 12000.00, 2, 21000.00, 25000.00, 'No. 16 school 3rd street, Panaiyur Chennai 119', 'Same as permanent Address', '2112100015', '3', '2', 'upload_files/candidate_tracker/14532072969_1639122191323_resume-najumudeen.docx.pdf', NULL, '1', '2021-12-10', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested for Insurance Sales', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-10 01:06:45', 1, '2021-12-10 01:15:40', 0, NULL, 1),
(7078, '', '0', '7358497383', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112100016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-10 01:16:02', 0, NULL, 0, NULL, 1),
(7079, 'c ramesh', '5', '7893053266', '', 'chintakayalaramesh4@gmail.com', '1995-10-06', 26, '2', '2', 'gangadri', 'agriculture', 300000.00, 1, 360000.00, 400000.00, 'andhra pradesh', 'marathalli bangalore', '2112100017', '19', '2', 'upload_files/candidate_tracker/61963307343_C RAMESH RESUME.docx', NULL, '2', '2021-12-15', 10, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Rejected will not fit', '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-10 03:03:33', 1, '2021-12-13 02:33:41', 0, NULL, 1),
(7080, 'Karthika D', '11', '8667481357', '', 'karthikad999@gmail.com', '1999-10-09', 22, '2', '2', 'Devan M', 'Farmer', 5000.00, 2, 0.00, 15000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2112100018', '1', '1', 'upload_files/candidate_tracker/70362230675_KARTHIKA DEVAN-new-hr_removed.pdf', NULL, '2', '2021-12-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Now the number is not reachable', '6', '1', '0', '1', '1', '0', '2', '2021-12-20', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-10 03:16:30', 1, '2021-12-10 03:21:56', 0, NULL, 1),
(7081, 'Chowtipalle hareesh', '5', '8297262585', '8328192369', 'chowtipallihareesh878@gmail.com', '1995-06-14', 26, '2', '2', 'Narayana', 'Farming', 6000.00, 1, 0.00, 25000.00, 'Kadapa, aP', 'Banglore', '2112100019', '1', '1', 'upload_files/candidate_tracker/64781951357_HAREESH.C RESUME_hareesh.pdf', NULL, '2', '2021-12-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 03:19:48', 50, '2021-12-11 08:16:45', 0, NULL, 1),
(7082, 'Theja swaroop', '6', '9014025854', '9441846164', 'swaroop1.pgo@Gmailcom', '1992-09-13', 29, '2', '1', 'Sireesha', 'Sales', 40000.00, 1, 20000.00, 30000.00, 'Hyderabad', 'Hyderabad', '2112100020', '17', '2', 'upload_files/candidate_tracker/41689107305_swaroop.docx', NULL, '1', '2021-12-13', 15, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Rejected will not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-10 04:42:37', 1, '2021-12-10 05:00:15', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7083, 'Gokulnath', '5', '9087075802', '', 'gokulnth03@gmail.com', '1989-04-03', 32, '2', '2', 'N.Ravichandran', 'Daily wages', 10000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2112100021', '1', '1', 'upload_files/candidate_tracker/85329105604_GOKUL RESUME 2.1docx.docx', NULL, '1', '2021-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average ,Frequent Job Changes,Exp as a service Engineer,Not suitable for Telecaller/RE/RM', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-10 05:45:32', 1, '2021-12-10 05:51:01', 0, NULL, 1),
(7084, 'Degavath Sardhar', '5', '9000726932', '9866438763', 'degavadh.sardhar@gmail.com', '1997-12-15', 23, '2', '1', 'Veena', 'Employee', 30.00, 3, 15000.00, 25000.00, 'Medak', 'Medak', '2112100022', '1', '2', 'upload_files/candidate_tracker/42419135892_sardhar new resume.pdf', NULL, '2', '2021-12-11', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-10 06:14:03', 1, '2021-12-10 06:18:19', 0, NULL, 1),
(7085, 'swathi m', '11', '9384825510', '', 'swatheemurali@gmail.com', '2000-12-21', 20, '2', '2', 'p r murali babu', 'business', 100000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2112100023', '1', '1', 'upload_files/candidate_tracker/69569709859_Resume.pdf', NULL, '1', '2021-12-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Communication is Good, Fresher for Recruitment, Currently pursuing MBA and she will be having saturday  xxamp sunday class. Salary expectation seems high .Not much comfort with the submission of documents. Doubts to stay not more than a year. If she comes back let us see', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-10 08:15:18', 1, '2021-12-11 01:55:04', 0, NULL, 1),
(7086, '', '0', '8328406603', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112100024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-10 08:22:03', 0, NULL, 0, NULL, 1),
(7087, 'Vysakh Rajan', '5', '9809277286', '', 'vaisakh4694@gmail.com', '1995-10-13', 26, '2', '2', 'J Rajan', 'Homoeopathy Doctor', 20000.00, 1, 0.00, 20000.00, 'Thrissur', 'BTM Layout', '2112110001', '1', '1', 'upload_files/candidate_tracker/72411063838_Vysakh Rajan - CV.pdf', NULL, '2', '2021-12-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, Fresher profile, Salary Exp is very high,Already he holds offer multiple offers and awaiting for the final discussion with byjuxquots. Will not sustain ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-11 10:12:05', 50, '2021-12-11 10:21:54', 0, NULL, 1),
(7088, 'Rohith', '5', '7092674300', '', 'rohithavaliondcruze@gmail.com', '1998-05-11', 23, '2', '2', 'Velayutham K', 'Electriction', 20000.00, 1, 230000.00, 250000.00, 'CHENNAI', 'CHENNAI', '2112110002', '1', '2', 'upload_files/candidate_tracker/86423240410_(CV ).pdf', NULL, '1', '2021-12-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much comfortable for Field Sales, looking for Inventory and Stocks maintenance Roles much', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-11 10:43:26', 1, '2021-12-11 10:46:28', 0, NULL, 1),
(7089, 'Jaya Deepika. E', '5', '9789001206', '9710603439', 'deepangelin@gmail.com', '1998-11-27', 23, '2', '2', 'Elumalai', 'Security', 30000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2112110003', '3', '2', 'upload_files/candidate_tracker/9547718891_JayaDeepika.pdf', NULL, '1', '2021-12-11', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-11 11:06:46', 60, '2021-12-11 01:25:39', 0, NULL, 1),
(7090, 'PRATIK Agarwal', '6', '9945190431', '', 'pratikagarwal041994@gmail.com', '1994-04-24', 27, '2', '2', 'Mahendra Agarwal', 'Business', 50000.00, 2, 20000.00, 30000.00, 'Bangalore', 'Bangalore', '2112110004', '1', '2', 'upload_files/candidate_tracker/20054328515_pratik resume (5).pdf', NULL, '2', '2021-12-11', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'did not come for interview', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-11 11:15:57', 50, '2021-12-11 11:59:43', 0, NULL, 1),
(7091, 'Sanjina.Y', '11', '9841131990', '6384998154', 'olivyasanju98@gmail.com', '1998-04-18', 23, '2', '2', 'R.yuvaraj', 'Business', 20000.00, 3, 0.00, 15000.00, 'Thambaram (padappai)', 'Thambaram (padappai)', '2112110005', '1', '1', 'upload_files/candidate_tracker/62174226421_sanjina Resume.docx', NULL, '1', '2021-12-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-11 12:04:00', 1, '2021-12-11 05:31:37', 0, NULL, 1),
(7092, 'B.Arunmozhi Varamban', '11', '9600809633', '9655723477', 'arunkrishram541@gmail.com', '1999-01-15', 22, '2', '2', 'Balakrishnan.M', 'Agriculture', 16000.00, 1, 0.00, 16000.00, 'Mayiladuthurai', 'chennai', '2112110006', '1', '1', 'upload_files/candidate_tracker/33260157743_Arun final resume.docx.pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped not responding to the calls properly\n', '6', '2', '', '1', '3', '', '2', '2021-12-21', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-11 12:37:33', 64, '2021-12-20 02:51:06', 0, NULL, 1),
(7093, 'M Venitha', '11', '8838334605', '9566104666', 'venithamohan96@gmail.com', '1996-03-25', 25, '2', '2', 'Mohan C', 'Bus driver', 40000.00, 1, 0.00, 15000.00, 'Valasaravakkam', 'Valasaravakkam', '2112110007', '1', '1', 'upload_files/candidate_tracker/5346704026_VENITHA CV2.pdf', NULL, '1', '2021-12-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, fresher for recruitment, Salary Exp is high, Need to confirm with her family on SA, if she comes back let us see', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-11 12:56:04', 1, '2021-12-11 01:01:28', 0, NULL, 1),
(7094, '', '0', '9600808633', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-11 01:09:55', 0, NULL, 0, NULL, 1),
(7095, 'Ezhilarasi', '11', '7358266447', '', 'ezhilranji019278@gmail.com', '1995-01-23', 26, '2', '1', 'Shivaram', 'Technical support', 15000.00, 1, 0.00, 2.80, 'Guduvanchery', 'TAMBARAM', '2112120001', '1', '1', 'upload_files/candidate_tracker/41419733136_Ezhilarasi (MBA CV) (1).pdf', NULL, '3', '2021-12-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-12 07:15:02', 1, '2021-12-12 07:20:32', 0, NULL, 1),
(7096, '', '0', '9043050585', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112130001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-13 09:32:12', 0, NULL, 0, NULL, 1),
(7097, 'Ruby Angel.p', '4', '9025955295', '', 'arulmurugan996@hotmail.com', '1999-11-21', 22, '1', '2', 'Paul savari Nathan R', 'Security', 10000.00, 0, 0.00, 12000.00, 'Chennai', 'Vysarpadi', '2112130002', '', '1', 'upload_files/candidate_tracker/12203654628_ Resume 1.pdf', NULL, '1', '2021-12-13', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is interested towards the non voice process only', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-13 11:22:47', 1, '2021-12-13 12:20:35', 0, NULL, 1),
(7098, '', '0', '7259130431', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112130003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-13 11:41:05', 0, NULL, 0, NULL, 1),
(7099, '', '0', '9676020822', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112130004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-13 11:46:22', 0, NULL, 0, NULL, 1),
(7100, '', '0', '9094257631', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112130005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-13 11:56:53', 0, NULL, 0, NULL, 1),
(7101, 'rakesh kumar gs', '5', '9566002508', '', 'garakeshkumar058@gmail.com', '1999-12-04', 22, '2', '2', 'selvakumar/subashini', 'ba economics', 12000.00, 2, 0.00, 18000.00, 'chennai', 'chennai', '2112130006', '20', '1', 'upload_files/candidate_tracker/3062568022_RAKESH RESUME.docx.pdf', NULL, '1', '2021-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-13 01:27:41', 1, '2021-12-13 01:41:11', 0, NULL, 1),
(7102, 'madhavan', '6', '9791220842', '', 'madhavanperiyasamy@gmail.com', '2006-12-13', 15, '2', '2', 'vasantha', 'not working', 12000.00, 2, 0.00, 15000.00, 'trichy', 'annanagar', '2112130007', '1', '1', 'upload_files/candidate_tracker/29565375359_MADHAVAN_CV (1).pdf', NULL, '1', '2021-12-13', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-13 04:21:23', 60, '2021-12-14 03:31:25', 0, NULL, 1),
(7103, 'Gudibandla Shyam Kumar', '5', '8341279973', '9490795319', 'sgudibandla9999@gmail.com', '1993-11-09', 28, '2', '2', 'Gudibandla Devaraju', 'Former', 40000.00, 4, 19000.00, 22000.00, '3-47, thilaknagar, yellandu, Bhadradri kothagdem', 'Sarasvathinagar, Dilsukhnagar, Hyderabad', '2112130008', '17', '2', 'upload_files/candidate_tracker/82345350356_1597665085728_shyam-resume-2016(1)-1_28-Jul-17_09.11.51.pdf', NULL, '1', '2021-12-15', 5, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for our profile', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-13 05:05:03', 64, '2021-12-15 12:18:46', 0, NULL, 1),
(7104, 'Thanisha T', '4', '8072961234', '6381038841', 'Thanunisha7486@gmail.com', '2000-04-20', 21, '2', '2', 'Thanabal', 'Nil', 10000.00, 2, 0.00, 13000.00, 'Ariyalur', 'Velachery', '2112130009', '20', '1', 'upload_files/candidate_tracker/74949575718_Thanisha -T Bsc.pdf', NULL, '1', '2021-12-23', 0, '', '3', '59', '2021-12-27', 126000.00, '', '5', '1970-01-01', '2', 'Selected for CRm Role  - Banu Team in  consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-13 06:35:03', 60, '2021-12-24 05:39:45', 0, NULL, 1),
(7105, 'sakthi vel V.M', '5', '9551553860', '6385406647', 'sakthidharshini73@gmail.com', '2001-06-03', 20, '2', '2', 'Malathi v', 'Home maker', 16000.00, 1, 14000.00, 20000.00, 'chennai', 'chennai', '2112130010', '20', '2', 'upload_files/candidate_tracker/25704619358_SVM CV.pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Retail Sales only.Will not sustain', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-13 11:22:50', 1, '2021-12-14 10:51:36', 0, NULL, 1),
(7106, '', '0', '8124976394', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-14 10:53:08', 0, NULL, 0, NULL, 1),
(7107, 'S.rohit manikandan', '5', '9342663100', '', 'smartrohit0707@gmail.com', '1995-07-07', 26, '1', '2', 'Saravanan.v', 'Police', 40000.00, 1, 18000.00, 20000.00, 'Tondiarpet', 'Tondiarpet', '2112140002', '', '2', 'upload_files/candidate_tracker/85340011594_ROHITH MANI S FINAL.pdf', NULL, '1', '2021-12-14', 0, 'P1269', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'rejected', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-14 11:08:13', 1, '2021-12-14 11:13:02', 0, NULL, 1),
(7108, 'deepak l', '6', '7358333745', '', 'deepakd236@gmail.com', '1998-03-04', 23, '2', '2', 'logesan', 'business', 20000.00, 1, 0.00, 10000.00, 'chennai', 'perambur', '2112140003', '2', '1', 'upload_files/candidate_tracker/46220000467_Deepak.L.docx', NULL, '1', '2021-12-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Just 3 months Exp in Telecaller and much prefer to work in Non Voice process,Will not sustain  in our roles', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-14 11:09:36', 1, '2021-12-14 11:14:12', 0, NULL, 1),
(7109, 'Mumtaz Jabeen.A', '11', '9514024290', '9176330187', 'jabeen0523@gmail.com', '2000-05-23', 21, '2', '2', 'Abdul Azeez .A.M', 'Pharmacist', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2112140004', '1', '1', 'upload_files/candidate_tracker/81726580591_Mumtaz Jabeen _ Resume 2021.docx', NULL, '1', '2021-12-15', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-14 12:10:42', 64, '2021-12-15 10:52:15', 0, NULL, 1),
(7110, 'Pavithran.A', '5', '7358204211', '', 'Pavithran.anbu@gmail.com', '1999-04-08', 22, '2', '2', 'Parent', 'Customer relationship manager', 30000.00, 3, 0.00, 17000.00, 'Chennai', 'Chennai', '2112140005', '1', '2', 'upload_files/candidate_tracker/10273276459_Document from Saranya Anbu (1)-converted.docx', NULL, '1', '2021-12-15', 0, '', '3', '59', '2021-12-17', 213000.00, '', '5', '1970-01-01', '1', 'Selected for RE - Syed Team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer mail link sent to upload the documents', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-14 02:23:36', 60, '2021-12-16 05:53:45', 0, NULL, 1),
(7111, 'Hari Shankar k', '6', '9445679016', '8072149471', 'Harishankargee571@gmail.com', '2000-01-23', 21, '2', '2', 'Kesvan', 'Railway', 35000.00, 1, 10000.00, 15000.00, 'Kolathur chennai', 'Kolathur chennai', '2112140006', '1', '2', 'upload_files/candidate_tracker/27267626954_HARI SHANKAR (RESUME)-pdf.pdf', NULL, '1', '2021-12-14', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'i dont remember on this .. old candidate', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-14 02:30:45', 50, '2022-01-05 05:19:28', 0, NULL, 1),
(7112, '', '0', '9042080736', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-14 04:19:19', 0, NULL, 0, NULL, 1),
(7113, '', '0', '7639161967', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-14 04:20:29', 0, NULL, 0, NULL, 1),
(7114, 'Yeddu Raju', '5', '9652080607', '', 'Yedduraju07@gmail.com', '1995-05-18', 26, '2', '2', 'Babji', 'Sales', 400000.00, 1, 250000.00, 350000.00, 'Visakhapatnam', 'Hyderabad', '2112140009', '17', '2', 'upload_files/candidate_tracker/92387850743_Raju Resume..pdf', NULL, '2', '2021-12-15', 15, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary Expectation is high and not having proper exp in sales and sustainability issue is there, and not having laptop as well.', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-14 05:01:44', 64, '2021-12-15 12:19:11', 0, NULL, 1),
(7115, '', '0', '7200909979', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112140010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-14 05:17:12', 0, NULL, 0, NULL, 1),
(7116, 'Dharamjith MP', '5', '9995814887', '', 'dharamjith@rediffmail.com', '1995-12-20', 25, '2', '2', 'Gangadharan', 'Engineer', 20000.00, 1, 0.00, 28000.00, 'Kannur', 'Kannur', '2112140011', '17', '1', 'upload_files/candidate_tracker/93611307512_CVDJ (1).pdf', NULL, '2', '2021-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-14 06:49:58', 1, '2021-12-14 06:53:18', 0, NULL, 1),
(7117, 'Manoj kumar', '6', '7358450561', '9283210257', 'riomanoj20@gmail.com', '2000-11-20', 21, '2', '1', 'Jayavel', 'Auto Driver', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2112150001', '22', '1', 'upload_files/candidate_tracker/75356009455_karthik resumeNew.pdf', NULL, '1', '2021-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Not Comfortable With The Positions .Will Not Sustain In Our Roles.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 10:09:04', 60, '2021-12-15 07:41:26', 0, NULL, 1),
(7118, 'John', '4', '7338762428', '9962810307', 'aravintha733@gmail.com', '1999-11-14', 22, '1', '2', 'Rose', 'Housewife', 20000.00, 1, 0.00, 15000.00, 'Shake mister street /6?0/3', 'Shake Mister Street /6?0/3', '2112150002', '', '2', 'upload_files/candidate_tracker/53060795886_Adobe Scan Dec 15, 2021.pdf', NULL, '1', '2021-12-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,No basic knowledge relates to the telecaller skills, Will not sustain in our positions.Not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-15 10:31:41', 1, '2021-12-15 10:41:35', 0, NULL, 1),
(7119, 'Bharath kumar.D', '4', '8148826945', '', 'Bharathkumar15042001@gmail.com', '2006-12-15', 15, '2', '2', 'Deenadhayalan.V', 'Electrician', 100000.00, 0, 0.00, 15000.00, 'Guduvanchery', 'Guduvanchery', '2112150003', '22', '1', 'upload_files/candidate_tracker/88315412768_Bharat_Kumar_Resume.pdf', NULL, '1', '2021-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is comfort to work in nonvoice process only, Too long Distance. Not suitable for our roles, will not sustain', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 10:33:07', 64, '2021-12-15 10:53:17', 0, NULL, 1),
(7120, 'Ranjitha.M', '20', '7406574479', '', 'Ranjithammanju77@gmail.com', '2001-10-22', 20, '2', '2', 'Manju Bhagya', 'Tailor', 20000.00, 1, 10000.00, 12.00, 'No 244,24th main road 3rd B cross agara', 'Agara bangalore', '2112150004', '1', '2', 'upload_files/candidate_tracker/81457076848_21832.pdf', NULL, '1', '2021-12-15', 0, '', '3', '59', '2021-12-20', 170496.00, '', '4', '2022-11-05', '2', 'Selected for ESales Rm - Bangalore - PT deduction only', '5', '2', '', '2', '2', '', '2', '2021-12-17', '2', '1', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-15 11:26:26', 60, '2021-12-17 03:42:00', 0, NULL, 1),
(7121, '', '0', '9500020170', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112150005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-15 11:48:20', 0, NULL, 0, NULL, 1),
(7122, 'Kouthavarapu Bala Rama Krishna', '5', '7674077482', '', 'balaramakrishnak@gmail.com', '1997-04-09', 24, '2', '2', 'K.Venkateswara Rao', 'Business', 25000.00, 1, 0.00, 25000.00, 'Avanigadda', 'Hyderabad', '2112150006', '22', '1', 'upload_files/candidate_tracker/53697022543_K.Bala Rama Krishna.pdf', NULL, '3', '2021-12-16', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for the profile', '5', '2', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 12:00:42', 64, '2021-12-16 11:16:34', 0, NULL, 1),
(7123, '', '0', '9597378697', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112150007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-15 12:02:25', 0, NULL, 0, NULL, 1),
(7124, 'Yogesh RA', '11', '9597886161', '', 'rayogeshcbm@gmail.com', '1998-04-08', 23, '2', '2', 'Raja S', 'Coconut merchant', 40000.00, 1, 0.00, 18000.00, '9/3 kallar school street uthamapuram cumbum theni', '9/3 kallar school street uthamapuram cumbum theni', '2112150008', '1', '1', 'upload_files/candidate_tracker/5084012703_Cv.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,Not much comfort with TxxampC,Document submission need to check with family,if he comes back let us decide', '6', '2', '', '1', '3', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-15 12:02:43', 64, '2021-12-15 12:13:34', 0, NULL, 1),
(7125, 'Harikrishnan.M', '5', '9597478697', '7339640019', 'harigovedu@gmail.com', '1998-10-29', 0, '2', '2', 'Munusamy.K', 'Tillar', 6000.00, 0, 0.00, 19000.00, '4/156-1,palacode(t.k), Dharmapuri', 'Tansi nagar, Velachery', '2112150009', '22', '1', 'upload_files/candidate_tracker/14259786290_Resume.pdf', NULL, '1', '2021-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not clear in his job preference, looking for Sales, IT openings. Pressure handling doubt on this profile.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 12:09:23', 64, '2021-12-15 12:23:27', 0, NULL, 1),
(7126, 'Greeshma Mohan', '25', '7594008536', '', 'greesh984@gmail.com', '1998-08-27', 23, '2', '2', 'G.Mohanan', 'Carpenter', 10000.00, 0, 0.00, 20000.00, 'Kollam , Kerala', 'Kollam, Kerala', '2112150010', '22', '1', 'upload_files/candidate_tracker/42730140796_Your paragraph text.pdf', NULL, '2', '2021-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is a fresher profile and not comfortable for the Chennai location, looking for opportunities in and around Kerala. Prefer to work only in the IT openings only', '8', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 12:22:58', 64, '2021-12-15 01:05:45', 0, NULL, 1),
(7127, 'Dharani.r', '11', '9840889804', '9025213590', 'dharaniravi75@gmail.com', '2000-09-03', 21, '2', '2', 'Ravichandran', 'Private company', 20000.00, 2, 0.00, 12000.00, 'Kk Nagar, Chennai', 'Kk Nagar', '2112150011', '1', '1', 'upload_files/candidate_tracker/1596430548_DHARANI R.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'communication average, not comfort with the Terms and the salary also, will not sustain in our roles', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 12:38:09', 1, '2021-12-15 02:40:59', 0, NULL, 1),
(7128, 'Shaikh Fahmeeda', '20', '9740638785', '', 'shaikhfahmeedashaikh94@gmail.com', '1995-06-01', 26, '2', '1', 'Khadar Basha', 'Engineer', 20000.00, 2, 0.00, 20000.00, 'Chandapura', 'Chandapura', '2112150012', '1', '2', 'upload_files/candidate_tracker/62739153337_F B CV.pdf', NULL, '1', '2021-12-15', 0, '', '3', '59', '2021-12-20', 182496.00, '', '5', '1970-01-01', '2', 'Selected for ESales RM - Bangalore Location', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-15 12:39:37', 60, '2021-12-15 07:18:18', 0, NULL, 1),
(7129, 'Rakshana Rajan', '5', '8778539076', '', 'raksharajan154@gmail.com', '1997-09-15', 24, '2', '2', 'Rajan v', 'Cable operator', 700000.00, 1, 145000.00, 245000.00, 'Chennai', 'Chennai', '2112150013', '22', '2', 'upload_files/candidate_tracker/5140169515_aug resume rekshana.pdf', NULL, '2', '2021-12-16', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Working With HCL In Non Voice, Looking For Both Voice/Nonvoice, But The Salary Exp Is High.Candidate is in Dilemma.If she comes back let us try', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 01:06:44', 64, '2021-12-16 10:24:33', 0, NULL, 1),
(7130, 's.abishek', '11', '9500624692', '', 'sabishek92@gmail.com', '1996-01-05', 25, '2', '2', 'sundaram', 'senior assistant', 30000.00, 1, 0.00, 12000.00, 'hosur', 'hosur', '2112150014', '1', '1', 'upload_files/candidate_tracker/29484901955_CV NEW-converted.pdf', NULL, '2', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Not much comfort on the Document Submission, Seems to be slow and pressure handling doubt', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 01:15:59', 1, '2021-12-15 01:28:16', 0, NULL, 1),
(7131, 'Musthafa', '2', '8012811821', '', 'musthafazahid86@gmail.com', '1996-07-18', 25, '2', '2', 'Fazil ahamed', 'Welder', 15000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2112150015', '1', '1', 'upload_files/candidate_tracker/7144205035_musthafa-1 bang.docx (1).pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for React, have Exp in graphic Designing not in depth. Looking for opportunities in IT, But no basic skill knowledge. If he come back let us decide ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 01:25:03', 1, '2021-12-15 01:36:01', 0, NULL, 1),
(7132, '', '0', '7012196968', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112150016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-15 02:02:25', 0, NULL, 0, NULL, 1),
(7133, '', '0', '9342254617', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112150017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-15 02:02:55', 0, NULL, 0, NULL, 1),
(7134, 'K S Venkata Saravana Kumar', '5', '9963387594', '', 'saravanakonduru@gmail.com', '1999-04-11', 22, '2', '2', 'K SATYANARAYANA', 'Operator', 15000.00, 1, 0.00, 300000.00, 'Tirupati', 'Tirupati', '2112150018', '22', '1', 'upload_files/candidate_tracker/16680157166_Resume.pdf', NULL, '2', '2021-12-16', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for the profilw', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 02:16:36', 64, '2021-12-16 11:15:25', 0, NULL, 1),
(7135, 'Kopula navneetha', '5', '7702809106', '', 'Navaneethakopula97@gmail.com', '1997-06-14', 24, '2', '2', 'Parent', 'private employee', 10000.00, 1, 2.40, 3.50, 'Hyderabad', 'Hyderabad', '2112150019', '22', '2', 'upload_files/candidate_tracker/4210466865_Resume.docx', NULL, '3', '2021-12-16', 30, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected Over the call', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 02:18:05', 64, '2021-12-15 02:59:33', 0, NULL, 1),
(7136, '', '0', '9940733570', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112150020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-15 02:39:37', 0, NULL, 0, NULL, 1),
(7137, 'Mageshwari.M', '11', '7449178113', '8056923741', 'mgmurugan1997@gmail.com', '1997-07-08', 24, '2', '2', 'Muthu Murugan', 'Driver', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2112150021', '1', '1', 'upload_files/candidate_tracker/23010735592_DOC-20190724-WA0052(1).pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Career Gap,No Relevant Exp ,Sustainability Doubt.Will not handle the pressure\n', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 03:52:00', 1, '2021-12-15 03:58:58', 0, NULL, 1),
(7138, 'Mohamed Ibrahim Akram', '13', '8190858555', '6381537828', 'Mohamedakram1071@gmail.com', '1999-09-03', 22, '2', '2', 'Mohamed', 'Business', 15000.00, 2, 10000.00, 15000.00, 'Chennai', 'Coimbatore', '2112150022', '1', '2', 'upload_files/candidate_tracker/53844004185_Akram-Resume.pdf', NULL, '1', '2021-12-20', 15, '', '5', '27', NULL, 0.00, '', '', '2022-01-05', '2', 'No Response.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 04:33:49', 1, '2021-12-15 04:38:35', 0, NULL, 1),
(7139, 'Gayathri', '16', '9841630685', '', 'Gayathrikaruppasamy23@gmail.com', '1997-03-02', 24, '2', '2', 'Karuppasamy', 'Nil', 200000.00, 1, 156000.00, 250000.00, 'Chennai', 'West mamabalm', '2112150023', '1', '2', 'upload_files/candidate_tracker/11850243861_Gayathri karuppasamy.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good,Looking only for MIS Activities,but not comfortable in handling the calls  for a long as she is having some ear problem.The profile can be considered later for any immeidate circumstances', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 04:42:03', 1, '2021-12-16 12:11:08', 0, NULL, 1),
(7140, 'vinothini .r', '16', '9751824865', '9080534102', 'vinothinirajendran909@gmail.com', '1995-01-13', 26, '2', '2', 'chitra', 'hr', 10000.00, 3, 24000.00, 26000.00, 'chennai', 'chennai', '2112150024', '1', '2', 'upload_files/candidate_tracker/33987178358_vno prfl (2) mastr 1.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Frequent Job changer and the salary exp 25K TH in very high. Will not sustain', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 04:47:29', 1, '2021-12-15 04:54:51', 0, NULL, 1),
(7141, 'Agilandeswari A', '22', '7395989414', '7550275906', 'akilaananth4@gmail.com', '1998-12-19', 22, '4', '2', 'Ananthanarayanan V', 'Self Employed', 50000.00, 1, 15800.00, 20000.00, 'Chennai', 'Chennai', '2112150025', '', '2', 'upload_files/candidate_tracker/53054209684_Agilandeswari A-1-compressed.pdf', NULL, '1', '2021-12-15', 15, '', '3', '59', '2022-01-03', 146496.00, '', '', '1970-01-01', '2', 'Selected for Digital Marketing - PT only\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', 'Candidate okay, please check for bond and salary.', '', '', NULL, NULL, NULL, 1, '2021-12-15 05:49:20', 69, '2021-12-15 07:12:51', 0, NULL, 1),
(7142, 'Mukesh', '11', '8072317915', '', 'Mukes241994@gmail.com', '1994-01-24', 27, '2', '2', 'Thilakavathi', 'House wife', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2112150026', '1', '1', 'upload_files/candidate_tracker/10911891484_Mukesh newly edited resume.docx', NULL, '1', '2021-12-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude, Fresher for the recruitment age around 27 yrs,Career Gap,No sustainability in the previous companies.Will not suits to our role', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 07:06:04', 1, '2021-12-15 07:10:29', 0, NULL, 1),
(7143, '', '0', '8500959937', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112160001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-16 12:30:31', 0, NULL, 0, NULL, 1),
(7144, 'Anoop', '5', '9745864359', '', 'rajeshanoop257@gmail.com', '1999-12-08', 22, '3', '2', 'RAJESH C', 'Fresher', 15000.00, 1, 0.00, 25000.00, 'Kerala', 'Bangalore', '2112160002', '', '1', 'upload_files/candidate_tracker/916126140_ANOOP new RESME .pdf', NULL, '2', '2021-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 09:38:56', 1, '2021-12-16 09:42:13', 0, NULL, 1),
(7145, 'Ajith kumar', '4', '7395903200', '7904000903', 'pajithkumar0412@gmail.com', '1999-01-04', 22, '3', '2', 'Ponnusamy\'', 'Cooli', 15000.00, 1, 15000.00, 18000.00, 'Ayanambakkam', 'keel ayanambakkam', '2112160003', '', '2', 'upload_files/candidate_tracker/68826052334_AJITH RESUME NEW 2.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate 5050 profile,fresher for Sales,Scheduled the candidate for 2nd level,but left without attending the 2nd round', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 10:17:17', 1, '2021-12-16 10:28:57', 0, NULL, 1),
(7146, 'Barath P', '4', '6382105833', '', 'barathda94@gmail.com', '1998-04-09', 23, '2', '2', 'Pavalarajan', 'Business', 10000.00, 1, 12000.00, 15000.00, 'CHENNAI', 'CHENNAI', '2112160004', '1', '2', 'upload_files/candidate_tracker/65765994431_Barath_Resume.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped.Candidate got another offer', '1', '1', '', '1', '1', '', '2', '2021-12-16', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-16 10:21:50', 50, '2021-12-16 02:54:28', 0, NULL, 1),
(7147, 'NAGARAJ.S', '5', '8526746396', '8667058895', 'nagarajmech1994@gmail.com', '1994-05-18', 27, '2', '2', 'Subramani.c', 'Farmer', 15000.00, 3, 22000.00, 25000.00, 'No 242 pillaiyar kovil street,Athur Vadapathi', 'Guindy', '2112160005', '22', '2', 'upload_files/candidate_tracker/31977812566_Nagaraj s.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude Issue,Frequent Job changes,Looking only for the Salary Growth.Will not handle our sales pressure.Not suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 10:55:23', 1, '2021-12-16 11:03:06', 0, NULL, 1),
(7148, 'D.Sathishraj', '5', '8608066353', '', 'rajsathish857@gmail.com', '1999-11-19', 22, '2', '2', 'Dilli', 'Machine mechanic', 11000.00, 1, 0.00, 15000.00, 'Alamathi,redhills', 'Alamathi, redhills', '2112160006', '22', '1', 'upload_files/candidate_tracker/81787342050_SATHISHRAJ-converted.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfortable with the Targets, Will not sustain ', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 11:08:16', 1, '2021-12-16 11:19:08', 0, NULL, 1),
(7149, 'Shubham Bhattacharjee', '5', '9051419751', '', 'shubhambhattacharjee59@gmail.com', '1994-08-25', 27, '2', '2', 'Dipa Bhattacharjee', 'Private Service.', 40000.00, 2, 23000.00, 30000.00, 'Howrah.', 'Howrah.', '2112160007', '19', '2', 'upload_files/candidate_tracker/44486835229_cv70574798_shubham-bhattacharjee_business-development-executiv.pdf', NULL, '2', '2021-12-16', 15, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our profile', '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 11:40:39', 1, '2021-12-16 11:44:08', 0, NULL, 1),
(7150, 'Borra pavani vinaya sai', '5', '8985835422', '9505994456', 'naidupavani933@gmail.com', '1998-09-20', 23, '2', '1', 'D.Shivaram', 'Business', 30000.00, 1, 0.00, 18000.00, 'Hyderabad', 'Hyderabad', '2112160008', '22', '1', 'upload_files/candidate_tracker/32252073887_final_resume.docx', NULL, '2', '2021-12-17', 0, '', '3', '59', '2022-01-03', 194496.00, '', '6', '2022-06-17', '1', 'Selected for ESales Hyderabad with PT Only', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '6', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2021-12-16 11:56:42', 60, '2021-12-28 04:43:09', 0, NULL, 1),
(7151, 'Challa Rupa', '4', '6361552080', '8310600976', 'rupaindrakumar1009@gmail.com', '1995-06-17', 26, '2', '1', 'Indira kumar', 'Business', 20000.00, 0, 15000.00, 20000.00, 'No.1/965/2 Arava gudiselu Kadiri anatapur', 'No.26 house No.2 jelly machine road', '2112160009', '19', '2', 'upload_files/candidate_tracker/72346674776_Roopa Resume Updated 2020-converted.pdf', NULL, '3', '2021-12-16', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 12:15:09', 1, '2021-12-16 12:28:46', 0, NULL, 1),
(7152, 'M Mohan Raj', '6', '7871372588', '9840312940', 'muruganmohan54@gmail.com', '2000-08-01', 21, '1', '2', 'N MURUGAN', 'Ward boy', 10000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2112160010', '', '1', 'upload_files/candidate_tracker/30442460882_RESUME 3.docx', NULL, '1', '2021-12-16', 0, 'Jobs', '3', '59', '2021-12-17', 156000.00, '', '5', '1970-01-01', '1', 'Selected for Suthagar - PF/ESI/PT', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '2', '3', 'Offer document link has been sent', '', '', '', NULL, NULL, NULL, 1, '2021-12-16 12:49:27', 60, '2021-12-16 06:28:19', 0, NULL, 1),
(7153, 'Hema Rakshanaa V M', '11', '7338935853', '', 'hemarakshanaa1998@gmail.com', '1998-11-10', 23, '2', '2', 'V D M Mahipathy', 'Business', 30000.00, 0, 0.00, 25000.00, 'CHENNAI', 'CHENNAI', '2112160011', '1', '1', 'upload_files/candidate_tracker/81482435912_RESUME.docx', NULL, '1', '2021-12-17', 0, '', '4', '72', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good, Have interest to learn,Can be trained in HR Recruitment.Need to schedule for a virtual interview\n', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-16 01:14:25', 1, '2021-12-16 01:19:10', 0, NULL, 1),
(7154, 'Sharmila s', '11', '9176725320', '', 'Sagajuviyas@gmail.com', '1999-06-06', 22, '2', '2', 'Samidurai.m', 'Vegetable merchant', 26000.00, 2, 0.00, 15000.00, 'Poonamallee', 'Poonamallee', '2112160012', '1', '1', 'upload_files/candidate_tracker/78179206333_Sharmila Resume.pdf', NULL, '1', '2021-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication Understanding poor, Not suitable ', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-16 01:58:20', 64, '2021-12-17 11:08:33', 0, NULL, 1),
(7155, 'Rugesh', '22', '9445142724', '', 'rugesh9000@gmail.com', '2000-02-24', 21, '4', '2', 'MuthuKrishnan', 'BE', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2112160013', '', '1', 'upload_files/candidate_tracker/98536551001_CV_DM_2021-12-16-112146.pdf', NULL, '1', '2021-12-16', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CSE degree holder but cant reply more than 3 HTML tags', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-16 02:28:01', 60, '2021-12-16 06:32:10', 0, NULL, 1),
(7156, 'M Janaki', '25', '9025450191', '', 'janakipriya000@gmail.com', '1998-07-10', 23, '2', '2', 'R Munusamy', 'Coolie work', 10000.00, 1, 0.00, 18000.00, 'Chennai in Kodambakkam', 'Chennai', '2112160014', '20', '1', 'upload_files/candidate_tracker/81956009253_JANAKI RECENT.pdf', NULL, '1', '2021-12-18', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'She is looking non voice process', '8', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 02:49:57', 1, '2021-12-16 04:39:57', 0, NULL, 1),
(7157, '', '0', '7397257220', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112160015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-16 02:51:51', 0, NULL, 0, NULL, 1),
(7158, 'Adnan Mohammed', '11', '7305438183', '', 'adnanmhd0786@gmail.com', '1998-04-22', 23, '2', '2', 'Mohammed Ali', 'Government servants', 100000.00, 1, 0.00, 18000.00, 'Port Blair', 'Kelambakkam', '2112160016', '1', '1', 'upload_files/candidate_tracker/62971595024_Adnan\'s Resume.pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,No native language,candidate is from Andaman,Salary Exp is high.Not suitable ', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-16 02:54:50', 1, '2021-12-16 02:57:34', 0, NULL, 1),
(7159, 'Akash S', '11', '6383289498', '', 'akashantony2107@gmail.com', '2000-07-21', 21, '2', '2', 'Sathish', 'Business', 20000.00, 1, 0.00, 20000.00, 'Kodambakkam, chennai', 'Kodambakkam, Chennai', '2112160017', '1', '1', 'upload_files/candidate_tracker/33695007551_Anto.pdf', NULL, '1', '2021-12-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Prefers to work much in Non voice only, Seems not much comfort with the targets, Preparing for the Bank Exams, Will not sustain and pressure handling doubt', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-16 03:11:23', 1, '2021-12-16 03:16:58', 0, NULL, 1),
(7160, 'Kirthana', '11', '7358338160', '', 'mail.kirthana97@gmail.com', '1997-07-14', 24, '2', '2', 'Arumugam', 'Fisherman', 40000.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2112160018', '1', '1', 'upload_files/candidate_tracker/16878535679_MBAKirthana online resume.docx', NULL, '1', '2021-12-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok, Candidate seems to be slow, sustainability and pressure holding Doubt ', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-16 03:33:17', 64, '2021-12-18 11:19:07', 0, NULL, 1),
(7161, 'Kalaivanan', '11', '7092910007', '', 'kalaivanankaran28042001@gmail.com', '2001-04-28', 20, '2', '2', 'Senthilkumar m', 'Driver', 15000.00, 0, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2112160019', '1', '1', 'upload_files/candidate_tracker/25727970795_1630913206954_new resume.docx', NULL, '1', '2021-12-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped - RNR,even he didnt come back with his confirmation', '6', '2', '0', '1', '1', '0', '2', '2021-12-20', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-16 04:05:03', 1, '2021-12-17 12:19:10', 0, NULL, 1),
(7162, 'Priya Arumugam', '11', '9087930400', '', 'priyadrshni886@gmail.com', '1993-07-04', 28, '2', '1', 'Arumugam', 'Business', 500000.00, 1, 240000.00, 300000.00, 'Chennai', 'Chennai', '2112160020', '1', '2', 'upload_files/candidate_tracker/58115389965_Priya resume updated.pdf', NULL, '3', '2021-12-18', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-16 07:55:16', 1, '2021-12-16 07:58:46', 0, NULL, 1),
(7163, 'Aravinthakumar a', '5', '9042121118', '9884096448', 'Aravinthakumar199@gmail.com', '1995-03-01', 26, '2', '2', 'ashokkumar', 'business', 50000.00, 1, 240000.00, 300000.00, 'chennai', 'chennai', '2112170001', '19', '2', 'upload_files/candidate_tracker/19439740903_Aravinth 2021 resume.pdf', NULL, '3', '2021-12-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-17 09:59:24', 64, '2021-12-20 10:40:31', 0, NULL, 1),
(7164, '', '0', '9186343821', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 10:49:01', 0, NULL, 0, NULL, 1),
(7165, 'Ramalingam', '5', '8124201523', '7639965912', 'sramalingam250@gmail.com', '1995-07-25', 26, '2', '2', 'Settu', 'Sales', 30000.00, 3, 15000.00, 26000.00, 'Mittapalli', 'Mittapalli', '2112170003', '22', '2', 'upload_files/candidate_tracker/54531344868_1600336907678Resume_Ramalingam (1) (1).pdf', NULL, '2', '2021-12-17', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to Reschedule', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-17 10:55:43', 64, '2021-12-17 12:03:42', 0, NULL, 1),
(7166, 'Narmatha.A', '11', '9092011543', '8056156874', 'Narmathakumar01@gmail.com', '1994-12-02', 27, '2', '2', 'Arul kumar', 'Working in Railways', 70000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2112170004', '1', '2', 'upload_files/candidate_tracker/72040692190_Narmatha.A resume .docx', NULL, '1', '2021-12-21', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped ,we offered her for the Recruiter Role,but candidate didnt join\n', '6', '2', '', '1', '1', '', '2', '2021-12-23', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-17 12:59:11', 64, '2021-12-21 02:08:40', 0, NULL, 1),
(7167, '', '0', '7824865091', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 01:40:36', 0, NULL, 0, NULL, 1),
(7168, '', '0', '9092673742', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 02:28:51', 0, NULL, 0, NULL, 1),
(7169, 'Sathish', '5', '7200962961', '7200491414', 'sathishnallaradha86@gmail.com', '1986-08-08', 35, '2', '2', 'Vasanthi', 'Homemaker', 60000.00, 1, 27000.00, 35000.00, 'Chennai', 'Chennai', '2112170007', '22', '2', 'upload_files/candidate_tracker/64481638250_Sathish Resume.pdf', NULL, '1', '2021-12-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communicaiton ok,5050 profile,no relevant Exp,Age around 36 yrs,Sustainability Doubts,2nd round interviewed by Shanmuga K and Rejected', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-17 02:44:49', 1, '2021-12-17 03:41:37', 0, NULL, 1),
(7170, 'Shiva Kumar m n', '5', '7624963275', '8105830869', 'rohitshiva294@gmail.com', '1999-02-12', 22, '2', '2', 'Nagaraj', 'Still Working', 12000.00, 1, 0.00, 15000.00, 'Chinthamani', 'Chinthamani', '2112170008', '22', '1', 'upload_files/candidate_tracker/24993208354_Shiva Resume.pdf', NULL, '2', '2021-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate no response', '5', '1', '', '2', '2', '', '2', '2021-12-18', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-17 03:05:13', 64, '2021-12-17 03:51:18', 0, NULL, 1),
(7171, 'Azhaguraja', '11', '9361263732', '9698671519', 'akashmessi37@gmail.com', '1998-06-18', 23, '2', '2', 'Selvarani', 'Housewife', 15000.00, 1, 0.00, 20000.00, 'Perambalur', 'Chennai', '2112170009', '1', '1', 'upload_files/candidate_tracker/23396294517_AKASH experience resume-2.docx', NULL, '1', '2021-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-17 03:28:29', 1, '2021-12-17 03:35:25', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7172, 'Preethi', '11', '6382623747', '', 'Priyapreethi736@gmail.com', '2000-10-28', 21, '2', '2', 'Pachaiyappan', 'Tiffen center', 30000.00, 1, 0.00, 12000.00, 'Purasaiwalkam', 'Purasaiwalkam', '2112170010', '1', '1', 'upload_files/candidate_tracker/8482818196_CV_2021-04-08-124220.pdf', NULL, '1', '2021-12-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interested with Terms xxamp Conditions,will not sustain', '6', '2', '0', '1', '1', '0', '2', '2021-12-21', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-17 03:33:49', 1, '2021-12-17 03:39:17', 0, NULL, 1),
(7173, 'Tamizh Selvan K', '11', '9025338528', '9677801197', 'mktamizhselvan95@gmail.com', '1995-04-17', 26, '2', '1', 'nandhini', 'house wife', 15000.00, 2, 15000.00, 17000.00, 'South Arcot', 'South Arcot', '2112170011', '1', '2', 'upload_files/candidate_tracker/20112917792_Tamizhselvan Resume.pdf', NULL, '1', '2021-12-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-17 04:07:41', 1, '2021-12-17 04:17:03', 0, NULL, 1),
(7174, '', '0', '7619505794', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 06:01:45', 0, NULL, 0, NULL, 1),
(7175, 'Abhishek Chaurasia', '5', '7278231651', '7003828580', 'abhishekchaurasia255@yahoo.com', '1995-07-23', 26, '3', '2', 'Opendra Chaurasia', 'Student', 50000.00, 1, 0.00, 350000.00, 'Howrah', 'Howrah', '2112170013', '', '1', 'upload_files/candidate_tracker/91156996641_Abhi cv 2021.pdf', NULL, '2', '2021-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-17 06:05:10', 1, '2021-12-17 06:08:46', 0, NULL, 1),
(7176, 'prashanth', '25', '7019546941', '9620352825', 'dsprashanth91@gmail.com', '1996-02-26', 25, '2', '2', 'lakshmi', 'house wife', 10000.00, 0, 0.00, 28000.00, 'basvangudi', 'basvangudi', '2112170014', '22', '1', 'upload_files/candidate_tracker/11186964770_PRASHANTH RESUME (Fresher).pdf', NULL, '2', '2021-12-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-17 06:05:54', 1, '2021-12-18 09:50:09', 0, NULL, 1),
(7177, '', '0', '7816976518', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 06:29:07', 0, NULL, 0, NULL, 1),
(7178, 'Sujitha.M', '11', '8778190468', '6382849606', 'sujithakrishnan99@gmail.com', '2000-07-03', 21, '2', '2', 'Muthukrishnan', 'Driver', 20000.00, 1, 0.00, 12000.00, 'Mayiladuthurai', 'Tambaram', '2112170016', '1', '1', 'upload_files/candidate_tracker/86216033553_SUJITHA RESUME.pdf', NULL, '1', '2021-12-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending the interview', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-17 07:43:59', 64, '2021-12-24 12:59:15', 0, NULL, 1),
(7179, '', '0', '9791152983', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 07:44:10', 0, NULL, 0, NULL, 1),
(7180, '', '0', '7483615151', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 08:12:43', 0, NULL, 0, NULL, 1),
(7181, 'S.Sreelakshmi', '4', '9551543257', '7358009361', 'srilakshmi24497@gmail.com', '1997-04-24', 24, '2', '2', 'R Srinivasa Prabhu', 'Admin', 20000.00, 1, 0.00, 15000.00, 'Korattur chennai', 'Korattur chennai', '2112180001', '1', '1', 'upload_files/candidate_tracker/10040458171_Sreelakshimi CV - May 21_1.pdf', NULL, '2', '2021-12-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Received a message from candidate that she got another offer', '1', '1', '', '1', '1', '', '2', '2021-12-20', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-18 08:06:03', 50, '2021-12-18 11:11:44', 0, NULL, 1),
(7182, 'Lavanya R', '4', '9150450881', '7338767969', 'lavanyalavanya1008@gmail.com', '2000-03-10', 21, '2', '2', 'Sarala R', 'Tailor', 8000.00, 1, 19500.00, 21000.00, 'Thiruverkadu', 'Chennai', '2112180002', '20', '2', 'upload_files/candidate_tracker/64535922931_Lavanya resume new.docx', NULL, '3', '2021-12-23', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-18 09:53:08', 1, '2021-12-18 09:56:09', 0, NULL, 1),
(7183, 'Amirthalingam', '5', '9751896143', '', 'amirthalingam7373@gmail.com', '1992-11-12', 29, '2', '2', 'Selvakumar', 'Farmer', 30000.00, 1, 20000.00, 250000.00, '219a near pudhu colony kurichi valapadi salem', 'Velachery', '2112180003', '22', '2', 'upload_files/candidate_tracker/48258804936_1638290187288_AMIRTHALINGAM RESUME 2021.pdf', NULL, '1', '2021-12-18', 0, '', '3', '59', '2021-12-21', 285696.00, '', '3', '2021-12-22', '1', 'Selected for RM - with PF/PT Deductions', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-18 10:51:28', 60, '2021-12-20 06:33:35', 0, NULL, 1),
(7184, 'Ramana Esheari. t', '4', '9344288013', '9600071858', 'Maharamana42@gmail.com', '2000-04-22', 21, '2', '2', 'Thamarai kanan', 'Driver', 25000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2112180004', '1', '1', 'upload_files/candidate_tracker/12624543308_RESUME FOR RAMANA-1.docx', NULL, '1', '2021-12-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Clarity on her interest towards the profile. Have a thought of doing B.L.Much preferes to go in Non voice, Will not sustain and handle the pressure Doubts', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-18 11:22:28', 1, '2021-12-18 12:00:22', 0, NULL, 1),
(7185, 'Harish Kumar', '22', '9677027886', '', 'Harish.anand0298@gmail.com', '1998-05-02', 23, '4', '2', 'anand', 'Business', 100000.00, 1, 0.00, 225000.00, 'Chennai', 'Chennai', '2112180005', '', '1', 'upload_files/candidate_tracker/34253948680_Harish Kumar Resume.pdf', NULL, '1', '2021-12-18', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate did not turn up for the final round\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-18 12:21:17', 1, '2021-12-18 12:25:39', 0, NULL, 1),
(7186, 'Mohideen Asker Ali K', '5', '6380995184', '9626353593', 'azkee1998@gmail.com', '1998-06-19', 23, '2', '2', 'Kyleer Mohamed P', 'Auto Driver', 10000.00, 2, 23000.00, 30000.00, 'Ambattur', 'Ambattur', '2112180006', '22', '2', 'upload_files/candidate_tracker/72453356517_Mohideen Asker Ali _Color Format – 03(1)(1).pdf', NULL, '1', '2021-12-18', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Loan Collections, Not Comfortable to travel due to his health conditions, Will not Sustain for a long', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-18 01:28:53', 64, '2021-12-18 02:36:54', 0, NULL, 1),
(7187, 'Naveen kumar selvam', '11', '8637493012', '', 'naveenkumarsel1999@gmail.com', '1999-09-15', 22, '2', '2', 'Selvam', 'Security', 10000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2112180007', '1', '1', 'upload_files/candidate_tracker/89235905781_6a6d2f59-2fe3-4c79-a1d1-ce6e21d2b3e4naveenres.doc.pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude,Too long distance,Communication,Sustainability Doubts.In  internship with the company and his expectation is also high.', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-18 03:23:01', 1, '2021-12-18 03:27:40', 0, NULL, 1),
(7188, 'Syed aijaz', '5', '8790053101', '8978875330', 'Saaijaz143@gmail.com', '1998-07-15', 23, '2', '2', 'Syed hassan', 'I Worked in credit card department', 30000.00, 7, 0.00, 22000.00, 'Fathe darwaz', 'Fathe darwaz', '2112180008', '1', '1', 'upload_files/candidate_tracker/32479602651_aijaz (1).pdf', NULL, '1', '2021-12-20', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for the profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-18 03:57:53', 1, '2021-12-18 04:17:45', 0, NULL, 1),
(7189, 'Vinodkumar', '5', '7780494050', '9553726167', 'vinodkumar.peddi67@gmail.com', '1996-09-05', 25, '2', '2', 'Peddi nagaiah', 'Farmer', 30000.00, 1, 18300.00, 28000.00, 'Hyderabad', 'Hyderabad', '2112180009', '1', '2', 'upload_files/candidate_tracker/33114388024_Resume.pdf', NULL, '3', '2021-12-22', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-18 04:36:11', 1, '2021-12-22 08:02:36', 0, NULL, 1),
(7190, 'vinod kumar', '5', '9553726167', '7780494050', 'vinodkumar.peddi67@gmail.com', '1996-09-05', 25, '2', '2', 'Peddi nagaiah', 'Farmer', 30000.00, 1, 2.20, 3.50, 'Hyderabad', 'Hyderabad', '2112180010', '1', '2', 'upload_files/candidate_tracker/29672296164_vinu.pdf', NULL, '3', '2021-12-20', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-18 04:57:57', 1, '2021-12-22 07:41:50', 0, NULL, 1),
(7191, 'Chaitra B L', '25', '8970549088', '8660614715', 'chaithralakshman26@gmail.com', '1998-04-26', 23, '2', '2', 'Lakshman.bc', 'Own business', 50.00, 1, 0.00, 20.00, 'BANGALORE', 'BANGALORE', '2112180011', '22', '1', 'upload_files/candidate_tracker/87206922326_file1.pdf', NULL, '3', '2021-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-18 06:39:37', 1, '2021-12-18 06:57:25', 0, NULL, 1),
(7192, '', '0', '7022384811', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112190001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-19 09:34:03', 0, NULL, 0, NULL, 1),
(7193, 'Kishore', '16', '7871588084', '8838547521', 'Kishore01102021@gmail.com', '1999-07-12', 22, '2', '2', 'Puratchi kumar', 'Driver', 7000.00, 1, 15000.00, 25000.00, 'Mylapore', 'Mylapore', '2112190002', '1', '2', 'upload_files/candidate_tracker/75184332698_Resume-Kishore-Resume-Final.pdf', NULL, '1', '2021-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication no basic knowledge,Will not sustain in our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-19 03:47:51', 60, '2021-12-21 04:07:33', 0, NULL, 1),
(7194, 'Madhumitha', '25', '7695957823', '', 'madhumithamadhumitha41@gmail.com', '1999-11-12', 22, '2', '2', 'Paun', 'House keeping', 15000.00, 0, 15000.00, 16000.00, 'Chennai', 'Thiruverkadu', '2112190003', '20', '2', 'upload_files/candidate_tracker/73774237486_Madhuradhan-converted-converted-compressed.pdf', NULL, '1', '2021-12-20', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-19 09:01:08', 1, '2021-12-19 09:20:17', 0, NULL, 1),
(7195, 'Madhumitha', '5', '7696957823', '', 'madhumithamadhumitha41@gmail.com', '1999-11-12', 22, '2', '2', 'Paun', 'House keeping', 15000.00, 0, 15000.00, 16000.00, 'Chennai', 'Thiruverkadu', '2112190004', '20', '2', 'upload_files/candidate_tracker/8405484227_Madhuradhan-converted-converted-compressed.pdf', NULL, '3', '2021-12-20', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-19 09:48:49', 1, '2021-12-19 09:52:24', 0, NULL, 1),
(7196, '', '0', '8056156874', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112200001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-20 09:31:39', 0, NULL, 0, NULL, 1),
(7197, '', '0', '9620352825', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112200002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-20 09:42:26', 0, NULL, 0, NULL, 1),
(7198, 'Mamatha v', '5', '8105332951', '', 'Mamathaammu407@gmail.com', '0998-12-12', 1023, '2', '1', 'Gopal mg', 'Madiwala', 15000.00, 0, 0.00, 16000.00, 'Hoskote', 'Hoskote', '2112200003', '22', '1', 'upload_files/candidate_tracker/69781839757_MAMATHA V.docx', NULL, '1', '2021-12-21', 0, '', '1', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-20 10:59:43', 64, '2021-12-21 11:21:52', 0, NULL, 1),
(7199, 'DEEPAK SRINIVASAN', '5', '8754530549', '7845866374', 'Deepakarjun277@gmail.com', '1998-06-27', 23, '2', '2', 'L srinivasan', 'DEEE', 50000.00, 0, 22000.00, 22000.00, 'No 18 sri sairam nager mannivakkam', 'No 18 sri sairam nager Mannivakkam', '2112200004', '22', '2', 'upload_files/candidate_tracker/57437463093__Deepak resume.docx', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Preferred to work in Non Voice process', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-20 11:06:42', 1, '2021-12-20 11:20:39', 0, NULL, 1),
(7200, 'Priyadharshini', '25', '9940429868', '', 'Priyapriya9798@gmail.com', '2006-12-20', 0, '2', '2', 'Jphnbabu', 'Real estate', 15000.00, 1, 27000.00, 27000.00, 'No 19 tholkappair street pammal Chennai 75', 'No19 tholkappair street pammal Chennai-75', '2112200005', '22', '2', 'upload_files/candidate_tracker/29006676239_priyadharshini 2021.docx', NULL, '3', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, no relevant Exp, Will not sustain in Insurance Sales.', '8', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-20 11:08:25', 1, '2021-12-20 11:14:12', 0, NULL, 1),
(7201, 'Nithya s', '4', '7904259690', '7904259590', 'nithyasenthilnathan9098@gmail.com', '1998-09-22', 23, '2', '1', 'P.senthilnathan', 'Admin', 21000.00, 1, 13000.00, 15000.00, 'Velachery', 'Velachery', '2112200006', '22', '2', 'upload_files/candidate_tracker/81541372917_Nithya - CV updated.pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate didnt come back with her confirmation\n', '1', '1', '0', '1', '1', '0', '2', '2021-12-21', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-20 11:46:56', 1, '2021-12-20 11:50:26', 0, NULL, 1),
(7202, 'N Shunckar', '5', '9551631211', '', 'shunckar1989@gmail.com', '1989-08-26', 32, '2', '1', 'Bavithra', 'Business', 10000.00, 1, 21000.00, 25000.00, 'No 403/34 bharathi nagar tiruvottiyur chennai', 'Same', '2112200007', '16', '2', 'upload_files/candidate_tracker/40265524458_shunckar BBA Resume.docx', NULL, '1', '2021-12-20', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'not fit for sales profile', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-20 01:06:38', 1, '2021-12-20 01:15:57', 0, NULL, 1),
(7203, 'Abubakkar siddiq', '5', '6362855591', '8277572889', 'abubakars1600@gmail.com', '1997-11-24', 24, '2', '2', 'Ahamed jaan', 'Former', 35000.00, 2, 0.00, 25.00, 'Bangalore', 'Bangalore', '2112200008', '1', '1', 'upload_files/candidate_tracker/45146010111_Resume ABUBAKKAR SIDDIQ 101.docx', NULL, '1', '2021-12-20', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'did not come for interview', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-20 01:21:28', 50, '2021-12-21 08:45:14', 0, NULL, 1),
(7204, 'Dhivya Pradeepa', '11', '9600163418', '8754562630', 'dhivya040397@gmail.com', '1997-03-04', 24, '2', '1', 'Dharmarajan T S', 'Cycle mechanic', 20000.00, 1, 12000.00, 15000.00, 'Chennai', 'Hasthinapuram', '2112200009', '1', '2', 'upload_files/candidate_tracker/37024548452_Dhivya Pradeepa Resume Doc.docx', NULL, '3', '2021-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average, Few months Exp in Recruitment, Handling pressure Doubts.Sustainability Doubts in our role', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-20 01:37:59', 64, '2021-12-21 11:32:05', 0, NULL, 1),
(7205, 'Akilandeshwari', '11', '8056226379', '8825730654', 'AKila.archu07@gmail.com', '1998-12-21', 22, '2', '1', 'Vignesh', 'Assistant manager', 45000.00, 1, 21500.00, 18.00, 'Mandaveli', 'Ayanavaram', '2112200010', '1', '2', 'upload_files/candidate_tracker/43196456309_Akila.doc', NULL, '1', '2021-12-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication, have exp as coordinator in the recruitment process.Will not sustain in our roles', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-20 01:43:03', 1, '2021-12-20 01:48:17', 0, NULL, 1),
(7206, 'Pavithra T M', '4', '8778962899', '9884317917', 'paviramya8891@gmail.com', '1988-08-16', 33, '2', '2', 'Sarala T M', 'House wife', 15.00, 1, 15.00, 13.00, 'Thirumazhisai', 'Thirumazhisai', '2112200011', '3', '2', 'upload_files/candidate_tracker/23534184762_Pavi resume.pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Sustainability in the previous Exp,Attitude,will not sustain,handling pressure No.Not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-20 03:13:14', 1, '2021-12-20 03:28:03', 0, NULL, 1),
(7207, '', '0', '8939164971', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112200012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-20 03:18:21', 0, NULL, 0, NULL, 1),
(7208, 'Kokilan P', '11', '8778115397', '', 'kogo1697@gmail.com', '1997-12-16', 24, '2', '2', 'Parameswaran', 'Government employee', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2112200013', '1', '1', 'upload_files/candidate_tracker/50977173588_Kokilan Resume_Resume_Format17-compressed (1).pdf', NULL, '1', '2021-12-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Will not handle the pressure, Sustainability Doubts .Not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-20 05:29:05', 1, '2021-12-20 05:34:38', 0, NULL, 1),
(7209, '', '0', '6304869420', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112200014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-20 06:57:07', 0, NULL, 0, NULL, 1),
(7210, 'nandini s', '11', '9994723256', '', 'nandinisrinivasan1897@gmail.com', '1997-08-18', 24, '2', '1', 'sakthivel p', 'software engineer', 50000.00, 1, 14000.00, 20000.00, 'pennadam', 'sholinganalur', '2112210001', '1', '2', 'upload_files/candidate_tracker/50228992217_Nandini Resume 03.06.2021.pdf', NULL, '1', '2021-12-27', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-21 10:53:48', 1, '2021-12-23 05:23:25', 0, NULL, 1),
(7211, 'Subash.R', '6', '7358418068', '9884110329', 'Tharmisu3010@gmail.com', '2000-05-30', 21, '4', '2', 'Rajendiran', 'Fisherman', 10000.00, 1, 0.00, 15000.00, 'Royapuram', 'Royapuram', '2112210002', '', '1', 'upload_files/candidate_tracker/175945182_ Resume 1.pdf', NULL, '1', '2021-12-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non voice process only', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-21 11:06:10', 1, '2021-12-21 11:44:00', 0, NULL, 1),
(7212, 'Vijay', '5', '9600002365', '8056107348', 'r.kvijay8816@gmail.com', '1998-10-08', 23, '2', '2', 'Ramesh', 'Contractor', 200000.00, 1, 19500.00, 20000.00, 'Perambur', 'Perambur', '2112210003', '16', '2', 'upload_files/candidate_tracker/68269528059_VIJAY RESUME.docx', NULL, '1', '2021-12-21', 0, '', '3', '59', '1970-01-01', 300000.00, '', '2', '1970-01-01', '1', 'Selected for Pandian Team with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Mail Link Shared', '', '', '', NULL, NULL, NULL, 1, '2021-12-21 11:23:05', 60, '2021-12-27 05:44:04', 0, NULL, 1),
(7213, 'Elangovan J', '4', '8610599629', '9585026267', 'elangoelango1637@gmail.com', '1998-06-07', 23, '2', '2', 'Jayaseelan P', 'Farmer', 7000.00, 0, 0.00, 18000.00, 'Tiruvannamalai', 'Camp road tambaram', '2112210004', '22', '1', 'upload_files/candidate_tracker/2121346745_1639132233129_MY RESUME vj org.docx', NULL, '3', '2021-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is open for the Non Voice Process only', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-21 11:34:00', 64, '2021-12-23 11:53:34', 0, NULL, 1),
(7214, 'Amuthan Robin m', '6', '9790895637', '', 'amuthanrobin98@gmail.com', '1998-05-23', 23, '2', '2', 'Marianayagam', 'ICF', 50000.00, 1, 16500.00, 17000.00, 'No: 579/4 6th Street ICF south colony chennai-38', 'No:579/4 6th Street ICF south colony chennai-38', '2112210005', '16', '2', 'upload_files/candidate_tracker/77616951989_ Resume 1.pdf', NULL, '1', '2021-12-21', 0, '', '3', '59', '2021-12-27', 246000.00, '', '3', '2022-03-08', '1', 'Selected for Sarath Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-21 12:35:57', 60, '2021-12-24 04:11:26', 0, NULL, 1),
(7215, 'Afzal Ahamed J', '11', '9940824982', '', 'afzalahamed24@gmail.com', '1998-05-12', 23, '2', '2', 'Jinnah M B', 'Business', 20000.00, 2, 0.00, 15000.00, 'Kumbakonam', 'Chennai', '2112210006', '1', '1', 'upload_files/candidate_tracker/18757958178_AFZAL RESUME UG.pdf', NULL, '1', '2021-12-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Recruitment,Focus much in Aviation,for time being looking for other opportunities', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-21 01:14:54', 1, '2021-12-21 01:17:07', 0, NULL, 1),
(7216, 'Gopi madhan', '5', '9884519602', '9710821633', 'Gopimadhan883@gmail.com', '1998-06-02', 23, '2', '2', 'Muthuraman', 'Business', 15000.00, 2, 18000.00, 30000.00, 'Chennai', 'Chennai', '2112210007', '1', '2', 'upload_files/candidate_tracker/21060571784_GOPI.docx', NULL, '1', '2021-12-21', 0, '', '3', '59', '1970-01-01', 300000.00, '', '2', '1970-01-01', '1', 'Selected for Raj Kumar Team - Relationship Manager with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', 'Offer Mail Link Shared', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-21 01:28:56', 60, '2021-12-27 05:43:21', 0, NULL, 1),
(7217, 'Karthick', '4', '8610625344', '9786394713', 'kaj63156@gmail.com', '1997-10-27', 24, '1', '2', 'Jothi', 'Finance', 15000.00, 1, 0.00, 25000.00, 'Sivakasi', 'Sivakasi', '2112210008', '', '2', 'upload_files/candidate_tracker/32118894343_New Doc 2021-12-21 07.00.51.pdf', NULL, '2', '2021-12-21', 0, 'Cha002513', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-21 02:13:29', 1, '2021-12-21 02:46:33', 0, NULL, 1),
(7218, 'Suriyaprakash', '5', '9677466808', '9884114029', 'sg.surya007@gmail.com', '1994-06-07', 27, '2', '2', 'Gopal', 'Self employe', 300000.00, 1, 21000.00, 26000.00, 'Salem', 'Salem', '2112210009', '16', '2', 'upload_files/candidate_tracker/48844096009_ss-converted.pdf', NULL, '1', '2021-12-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability in the previous Exp, Attitude, Looking only on the monetory growth .Will not sustain', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-21 02:37:48', 1, '2021-12-21 02:43:44', 0, NULL, 1),
(7219, 'Mohanakarthick', '6', '7397287464', '', 'mohanakarthick10121998@gmail.com', '1998-12-10', 23, '2', '2', 'Ramesh', 'Tennis coach', 20000.00, 1, 0.00, 15000.00, 'Kelambakkam', 'Kelambakkam', '2112210010', '1', '1', 'upload_files/candidate_tracker/34937207366_mohana_converted.PDF', NULL, '1', '2021-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sounds very low and too long distance around 60 kms,will not sustain', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-21 02:47:36', 64, '2021-12-22 11:39:46', 0, NULL, 1),
(7220, 'Krishna Priya U', '11', '9633693342', '7736679806', 'kittykrish074@gmail.com', '1996-04-26', 25, '2', '2', 'P N Udaya Kumar', 'Government servant', 25000.00, 1, 0.00, 20000.00, 'Palakkad', 'Palakkad', '2112210011', '1', '1', 'upload_files/candidate_tracker/23899995435_my resume 1.docx', NULL, '1', '2022-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate didnt come back with her confirmation for joining - not responding the calls too\n', '6', '1', '', '1', '1', '', '2', '2022-01-13', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-21 03:43:11', 64, '2022-01-03 10:17:29', 0, NULL, 1),
(7221, 'Kiruthiga', '11', '9003526407', '9500057296', 'kiruthigarp0114@gmail.com', '2006-12-21', 0, '2', '2', 'Santhanam', 'Branch manager', 80000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2112210012', '1', '1', 'upload_files/candidate_tracker/46485291242_HR Kiruthiga Resume.pdf', NULL, '1', '2021-12-22', 0, '', '3', '59', '2022-01-17', 146496.00, '', '0', NULL, '2', 'Will come and join after pongal - IJOBS', '6', '2', '0', '1', '1', '0', '2', '2021-12-27', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-21 03:58:02', 1, '2021-12-21 04:05:10', 0, NULL, 1),
(7222, '', '0', '9003626407', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112220001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-22 12:00:46', 0, NULL, 0, NULL, 1),
(7223, 'l. sabari vas', '5', '9360818402', '', 'sabarivas7@gmail.con', '1999-10-02', 22, '2', '2', 'l dharanipathy', 'medical representative', 60000.00, 0, 0.00, 20000.00, 'arumbakkam', 'arumbakkam', '2112220002', '1', '1', 'upload_files/candidate_tracker/80698665153_RESUME.docx', NULL, '1', '2021-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Logistics opportunites,Travelling to UK in the month of Aug 2022..Will not sustain and not interested for Insurance Sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-22 10:21:32', 60, '2021-12-22 05:03:41', 0, NULL, 1),
(7224, 'PARTHIBAN', '5', '9360043944', '8525079986', 'parthibanm625@gmail.com', '1996-05-06', 25, '2', '2', 'MALATHI', 'BCA', 500000.00, 1, 16000.00, 22000.00, 'MADURAI', 'CHENNAI', '2112220003', '1', '2', 'upload_files/candidate_tracker/96485552163_Partha Resume.pdf', NULL, '1', '2021-12-22', 0, '', '5', '80', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate didnt came for the final round', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-22 10:49:25', 50, '2021-12-22 11:01:03', 0, NULL, 1),
(7225, 'Rajalakshmi', '5', '7639491464', '7904558840', 'rajalaxmisekar198@gmail.com', '1996-08-19', 25, '2', '2', 'Chandrasekaran', 'Farmer', 25000.00, 0, 0.00, 350000.00, 'Chennai', 'Chennai', '2112220004', '1', '2', 'upload_files/candidate_tracker/4610084756_1631596316015_rajalakshmi Resume.pdf', NULL, '3', '2021-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain,Salary Exp is Very High', '5', '1', '', '1', '3', '', '2', '2021-12-23', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-22 11:15:13', 50, '2021-12-22 11:56:17', 0, NULL, 1),
(7226, 'M.Durai murugan', '5', '8110896865', '9363586445', 'duraimurugan811089@gmail.com', '1992-04-19', 29, '2', '2', 'Marimuthu', 'Agree culture', 100000.00, 3, 18000.00, 20000.00, 'Madurai', 'Kknager', '2112220005', '16', '2', 'upload_files/candidate_tracker/64521115452_Durai muruganResume (1).pdf', NULL, '1', '2021-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much comfortable with taking calls, will not sustain in the field', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-22 11:37:27', 64, '2021-12-22 12:18:13', 0, NULL, 1),
(7227, 'Prasanth', '5', '8754486420', '8754481903', 'prasanthdcruze@gmail.com', '1995-06-07', 26, '2', '2', 'chittu babu', 'retired railways', 50000.00, 1, 20000.00, 22000.00, 'chennai', 'chennai', '2112220006', '1', '2', 'upload_files/candidate_tracker/24180102281_Resume.docx', NULL, '1', '2021-12-22', 1, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for this profile\n', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-22 11:43:41', 50, '2021-12-22 11:56:00', 0, NULL, 1),
(7228, 'Sangavi', '4', '9025451437', '8056447479', 'Govidhansangavi@gmail.com', '1997-01-07', 24, '2', '2', 'Vengadesan', 'Business', 15000.00, 2, 12000.00, 12500.00, 'Chennai', 'Nugambakkam', '2112220007', '1', '2', 'upload_files/candidate_tracker/13284738247_sankavi.docx', NULL, '1', '2021-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no communication,Not open for Voice process,looking for Accounting positions only.No clarity in the speech', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-22 11:53:12', 50, '2021-12-22 12:35:10', 0, NULL, 1),
(7229, 'Ismail sheriff', '11', '8939525395', '9789036602', 'ismailsheriff910@gmail.com', '1997-04-06', 24, '2', '2', 'Asif Sheriff', 'MBA', 20000.00, 2, 0.00, 22000.00, 'No 50/70, MG road, vannandhurai, Thiruvanmiyur', 'No 50/70, MG Road, Vannandhurai, Thiruvanmiyur', '2112220008', '1', '1', 'upload_files/candidate_tracker/93010727209_Ismail sheriff final._ISMAIL SHERIFF A.pdf', NULL, '1', '2021-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Prefer to work in logistics,since no opportunities joined HR Recruitment before 20 days and looking for another as there is issue inthe management,SAlary Exp is very high being a fresher', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-22 11:53:52', 64, '2021-12-23 02:37:57', 0, NULL, 1),
(7230, 'Nisha jain', '4', '8667492389', '8124544768', 'Nishajain2796@gmail.com', '2006-12-22', 0, '2', '2', 'Vijayraj', 'Electronics business', 20000.00, 2, 18000.00, 20000.00, 'Vadapalani', 'Vadapalani', '2112220009', '1', '2', 'upload_files/candidate_tracker/15202038673_CV_2021-10-18-124451.pdf', NULL, '3', '2021-12-22', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for positions without target,much focus on the office timings.Will not handle the pressure .Not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-22 12:33:15', 60, '2021-12-22 03:54:54', 0, NULL, 1),
(7231, 'Santhya.k', '11', '8056058525', '', 'Santhyakumar28996@gmail.com', '1999-06-28', 22, '2', '2', 'Kumar', 'Hotel supervicer', 15.00, 1, 0.00, 13.00, 'Chennai', 'Chennai100', '2112220010', '1', '1', 'upload_files/candidate_tracker/27062828759_New doc Nov 9, 2020 1.30 PM.pdf', NULL, '1', '2021-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-22 12:42:49', 1, '2021-12-22 12:49:05', 0, NULL, 1),
(7232, '', '0', '6379038189', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112220011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-22 12:58:42', 0, NULL, 0, NULL, 1),
(7233, 'Karthick. M', '6', '8680823176', '6379038189', 'Murugankarthik17@gmail.com', '1999-11-17', 22, '2', '2', 'Murugan', 'Machine operator', 14000.00, 2, 12000.00, 16000.00, 'Chennai', 'Chennai', '2112220012', '16', '2', 'upload_files/candidate_tracker/55645510718_Karthik 1Bcom.pdf', NULL, '1', '2021-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Internshi[ Exp in Muthoot,No bike ,Too long Distance up and down 40 kms and the Salary Expectation is high', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-22 01:13:23', 60, '2021-12-22 03:50:23', 0, NULL, 1),
(7234, 'Samiksha jayasankar', '11', '7708228100', '', 'samijay96@gmail.com', '1994-10-08', 27, '2', '1', 'R.sudhakar', 'Project engineer', 60000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2112220013', '1', '2', 'upload_files/candidate_tracker/21361606792_Resume_Samiksha updated.docx', NULL, '1', '2021-12-31', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Got another Offer', '6', '1', '', '1', '1', '', '2', '2022-01-03', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-22 02:54:34', 64, '2021-12-31 02:59:21', 0, NULL, 1),
(7235, 'Mohana Sri .p', '4', '7010847992', '', 'msrimohana@gmail.com', '1997-04-18', 24, '3', '2', 'Na', 'Na', 10000.00, 1, 375000.00, 375000.00, 'Chennai', 'Chennai', '2112220014', '', '2', 'upload_files/candidate_tracker/80642765167_P_MOHANA_SRI_Resume (2)-converted-converted.pdf', NULL, '1', '2021-12-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok have exp as ESales RM in ICICI bank,Looking for opportunities in CRM/Esales but the salary Exp is very High.Around 23-25K she expects.Need time to confirm her interest', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-22 03:45:18', 1, '2021-12-22 03:49:21', 0, NULL, 1),
(7236, 'Akula Deepika', '5', '7658925680', '8121771987', 'deepikaakula96@gmail.com', '1996-05-07', 25, '2', '1', 'Mallikarjun reddy p', 'Art director', 35000.00, 0, 25000.00, 25000.00, 'Hyderabad', 'Hyderabad', '2112220015', '1', '2', 'upload_files/candidate_tracker/30088701657_Resume_Deepika_2021 july.docx', NULL, '2', '2021-12-23', 0, '', '1', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-22 06:31:03', 64, '2021-12-23 12:33:22', 0, NULL, 1),
(7237, 'Sivakumar', '5', '8754936667', '7338956393', 'sivap6667@gmail.com', '1993-05-13', 28, '3', '2', 'Perumal', 'Sales Executive', 30000.00, 2, 22400.00, 35000.00, 'Tirunelveli', 'Palavakkam', '2112230001', '', '2', 'upload_files/candidate_tracker/63939820555_Sivakumar New Resume.docx', NULL, '1', '2021-12-23', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is very slow,No Communication ,looking only for the salary,Will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-23 10:36:49', 64, '2021-12-23 12:18:56', 0, NULL, 1),
(7238, 'Sivakumar S', '5', '7448416115', '8667699262', 'sivakumarbcoms4@gmail.com', '1997-04-19', 24, '2', '2', 'Sivam', 'Sales officer', 30000.00, 2, 0.00, 15000.00, 'Dharmapuri', 'Ramapuram Chennai', '2112230002', '22', '1', 'upload_files/candidate_tracker/42039724210_sivakumar-1 (2).docx', NULL, '1', '2021-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking much for non  Voice process only,will not sustain', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-23 10:43:34', 60, '2021-12-23 11:03:09', 0, NULL, 1),
(7239, 'Sivakumar', '20', '9884037796', '9952920875', 'Sivasmart303@gamil.com', '2001-01-31', 20, '2', '2', 'P.sivakumar', 'Daily Wages', 23000.00, 1, 10500.00, 14000.00, 'Chennai', 'Chennai', '2112230003', '1', '2', 'upload_files/candidate_tracker/15537729385_SIVAKUMAR RESUME.docx', NULL, '1', '2021-12-23', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice process only', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-23 10:45:48', 50, '2021-12-23 04:02:12', 0, NULL, 1),
(7240, 'Rakesh', '4', '9500487014', '9597395660', 'rockyraj045@gmail.com', '1997-05-04', 24, '2', '2', 'ravi', 'Bike business', 200000.00, 2, 0.00, 15000.00, 'Sevvapet', 'sevvapet', '2112230004', '1', '1', 'upload_files/candidate_tracker/52212849737_Rakesh Resume (1).docx', NULL, '1', '2021-12-23', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', 'rejected', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-23 11:08:44', 1, '2021-12-23 11:19:56', 0, NULL, 1),
(7241, 'Nagalojini.K', '25', '6383617466', '', 'nagalojini03072001@gmail.com', '2001-07-03', 20, '2', '2', 'Kumarasami', 'Coolie', 10000.00, 4, 0.00, 13000.00, 'Thiruvannamalai', 'Velachery', '2112230005', '20', '1', 'upload_files/candidate_tracker/13664726856_1634026783336Resume_Nagalojini.pdf', NULL, '1', '2021-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Non Voice Process only ', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-23 11:20:19', 64, '2021-12-23 11:47:14', 0, NULL, 1),
(7242, '', '0', '9962336091', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112230006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-23 11:22:35', 0, NULL, 0, NULL, 1),
(7243, 'Monica', '4', '7871758221', '7338986967', 'Monicaraj.apr9@gmail.com', '1996-04-09', 25, '2', '2', 'C.arokiyaraj', 'Water proofing work', 25000.00, 2, 15900.00, 18000.00, 'Chennai', 'Chennai', '2112230007', '1', '2', 'upload_files/candidate_tracker/87647545874_P_MOHANA_SRI_Resume (2)-converted-converted.pdf', NULL, '1', '2021-12-23', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050  profile  have Exp in Telecaller for ! yr postpaid Collection,kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-23 11:25:14', 60, '2021-12-23 05:56:09', 0, NULL, 1),
(7244, 'M. Mukesh', '6', '7904173779', '8925827411', 'mathimugi003@gmail.com', '2000-11-03', 21, '2', '2', 'M. Mathiyazagan', 'Fisher man', 12000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2112230008', '1', '1', 'upload_files/candidate_tracker/6017837366_MUKESH(CV).pdf', NULL, '1', '2021-12-23', 0, '', '3', '59', '2021-12-27', 180000.00, '', '3', '2021-12-30', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Link shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-23 11:41:48', 60, '2021-12-24 02:25:52', 0, NULL, 1),
(7245, 'Ali sk', '4', '7305383290', '7904173779', 'alisk.05mrc.dme@gmail.com', '2000-03-05', 21, '2', '2', 'Thamina .s', 'Home maker', 120000.00, 2, 0.00, 15000.00, 'No 72 quaidmillath street kudumiyandi thoppu', 'chennai', '2112230009', '1', '1', 'upload_files/candidate_tracker/25196323356_alinew-1.docx', NULL, '1', '2021-12-23', 0, '', '3', '59', '2021-12-28', 120000.00, '', '', '2021-12-29', '1', 'Initially he has been rejected for Telecaller as he shows interest towards the Non Voice position,He appeared again ,also he is in need so considered and offered him the position of RE Elite in 5% TDS', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-23 11:42:51', 60, '2021-12-27 05:31:53', 0, NULL, 1),
(7246, 'Sridevi', '5', '7010875676', '9710268825', 'Sridevi041289@gmail.com', '1989-12-04', 32, '3', '1', 'Pradeep n', 'Working', 30000.00, 1, 28000.00, 26000.00, 'Chennai', 'Chennai', '2112230010', '', '2', 'upload_files/candidate_tracker/95477623129_sri', NULL, '1', '2021-12-23', 0, '', '5', '80', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Age criteria not met', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-23 11:57:07', 64, '2021-12-23 12:11:49', 0, NULL, 1),
(7247, 'j. jayaraman', '6', '9551755370', '7299624215', 'jairam5986@gmail.com', '1995-10-03', 26, '2', '2', 'j.prema', 'housewife', 100000.00, 0, 16000.00, 19000.00, 'chennai', 'chennai', '2112230011', '1', '2', 'upload_files/candidate_tracker/77244483294_J.Jayaram CV 2021.pdf', NULL, '1', '2021-12-23', 0, '', '3', '59', '2022-01-03', 204000.00, '', '3', '2022-05-31', '1', 'Selected for Ravi Team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer link Mail for Document sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-23 01:35:53', 60, '2021-12-24 02:31:34', 0, NULL, 1),
(7248, 'Amsa. G', '4', '9087979377', '8940230648', 'Akijune.7@gmail.com', '1996-06-26', 25, '2', '2', 'Gopal', 'Mechanic', 15000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2112230012', '1', '2', 'upload_files/candidate_tracker/81509454610_RameshN (2)(1).docx', NULL, '1', '2021-12-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very slow,Will not handle the pressure,Sustainability Doubts', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-12-23 03:04:26', 1, '2021-12-23 03:06:49', 0, NULL, 1),
(7249, 'Jerry Alleluiah', '4', '8438076085', '', 'jerryalleluiah@gmail.com', '1998-05-09', 23, '2', '2', 'Rita Alleluiah', 'House wife', 9999.00, 7, 0.00, 15000.00, 'Kanyakumari,kollencode', 'Velachery, chennai', '2112230013', '1', '1', 'upload_files/candidate_tracker/96254121108_JERRY ALLELUIAH Y.pdf', NULL, '1', '2021-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped - Candidate didnt turn with his response', '1', '1', '', '1', '1', '', '2', '2021-12-24', '3', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2021-12-23 04:39:20', 64, '2021-12-23 04:47:54', 0, NULL, 1),
(7250, '', '0', '9578082308', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112230014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-23 05:30:19', 0, NULL, 0, NULL, 1),
(7251, 'Madhusoodhanan', '11', '7397004824', '', 'madhuchandran18@gmail.com', '1998-03-11', 23, '2', '2', 'Chandran', 'Station manager (Railway)', 50000.00, 2, 0.00, 15000.00, 'No.74 k.k.nagar silavattam madurantakam', 'No.4 rose nagar kovilambakkam chennai', '2112230015', '1', '1', 'upload_files/candidate_tracker/97535636323_madhusoodhanan resume.pdf', NULL, '1', '2021-12-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication,Sustainability Doubts ,not suitable for our recruitment Roles', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-23 07:43:06', 64, '2021-12-24 10:38:59', 0, NULL, 1),
(7252, 'Dinesh Kumar.M', '11', '6382358451', '', 'dineshkumar.rambo@gmail.com', '1998-01-22', 23, '2', '2', 'mohan.v', 'driver', 30000.00, 1, 0.00, 20000.00, 'chengallpatu', 'chengallpatu', '2112230016', '1', '1', 'upload_files/candidate_tracker/97250061879_Dinesh_resume_2020[1]4.pdf', NULL, '1', '2021-12-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication Career Gap,Will not handle the pressure and sustainability Doubts', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-23 11:18:04', 64, '2021-12-24 10:39:07', 0, NULL, 1),
(7253, 'Chaithanya G', '17', '7019072125', '', 'chaithanya.gopalakrishna@gmail.com', '1999-05-02', 22, '2', '2', 'Gopalakrishna', 'Sales revenue officer', 18000.00, 1, 16700.00, 25000.00, 'Bangalore', 'Bangalore', '2112240001', '1', '2', 'upload_files/candidate_tracker/28243673246_1639551463228_Resume (cv).pdf', NULL, '1', '2021-12-24', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Due to high package,  not experience related our profile', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-24 10:44:50', 50, '2021-12-25 09:09:37', 0, NULL, 1),
(7254, 'Y RISHI RAJ', '11', '8248035148', '9786541682', 'rraj39667@gmail.com', '1997-09-04', 24, '2', '2', 'S Yuvaraj', 'Driver', 15000.00, 4, 15000.00, 20000.00, 'Chennai', 'Chennai', '2112240002', '1', '2', 'upload_files/candidate_tracker/20565051424_Rishi Updated Resume (1).pdf', NULL, '1', '2021-12-27', 0, '', '7', '72', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Recruiter Role with TH 12K xxamp208 PT', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-24 10:58:30', 64, '2021-12-27 02:33:45', 0, NULL, 1),
(7255, 'Manimegalai.R', '20', '8317313601', '7892597534', 'megalai020420@gmail.com', '2000-04-02', 21, '2', '2', 'Rajendra and devi', 'Building contractor', 20000.00, 2, 0.00, 10000.00, 'Bengaluru', 'Bengaluru', '2112240003', '1', '1', 'upload_files/candidate_tracker/61755137128_MANIMEGALAI-resume-col-1.docx', NULL, '1', '2021-12-24', 0, '', '3', '59', '2021-12-27', 170496.00, '', '6', '2022-05-03', '1', 'Selected for esales bangalore - PF/ESI/PT - Patroniss Staff', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-24 10:58:45', 60, '2021-12-25 01:41:58', 0, NULL, 1),
(7256, '', '0', '8248306227', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112240004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-24 11:10:22', 0, NULL, 0, NULL, 1),
(7257, 'Aarthi. J', '4', '9150140131', '', 'Aarthijayachandran61@gmail.com', '1999-05-09', 22, '2', '2', 'Jayachandran', 'Cooli', 25.00, 2, 15000.00, 17000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2112240005', '1', '2', 'upload_files/candidate_tracker/11106943746_Aarthi resume.pdf', NULL, '1', '2021-12-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Loan Sales,Handling Pressure Doubt,Sustainability doubts,Salary Exp is also high', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-12-24 11:19:10', 1, '2021-12-24 11:26:56', 0, NULL, 1),
(7258, 'Nithyashree', '4', '9344515691', '', 'nithyashree1831@gmail.com', '2001-07-31', 20, '2', '2', 'Elangovan', 'Tailor', 6000.00, 1, 15.00, 19.00, 'Saidapet', 'Perungalathur', '2112240006', '1', '2', 'upload_files/candidate_tracker/26495363454_New Nithyashree file.pdf', NULL, '1', '2021-12-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Didnxquott come back with her confirmation in the time she requested', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-12-24 11:20:45', 1, '2021-12-24 11:26:06', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7259, 'Atiya Fatima', '5', '9989543381', '9700180205', 'atiyahyder7@gmail.com', '1996-09-18', 25, '2', '1', 'Kumail hyder', 'Intermediate', 20000.00, 2, 10000.00, 15000.00, 'Hyderabad', 'Hyderabad', '2112240007', '19', '2', 'upload_files/candidate_tracker/51323688125_Atiya resume.docx', NULL, '1', '2021-12-25', 25, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-24 11:23:38', 1, '2021-12-24 11:40:27', 0, NULL, 1),
(7260, '', '0', '8939150079', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112240008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-24 11:25:51', 0, NULL, 0, NULL, 1),
(7261, 'cheduruvelli vrnkatesh', '17', '9652213000', '', 'saisreehan112@gmail.com', '1993-06-03', 28, '3', '1', 'kalpana', 'house wife', 50000.00, 2, 45000.00, 65000.00, 'nalgonda', 'nalgonda', '2112240009', '', '2', 'upload_files/candidate_tracker/23450018072_VENKATESH RESUME.docx', NULL, '1', '2021-12-27', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-24 12:05:52', 1, '2021-12-24 12:19:43', 0, NULL, 1),
(7262, 'Bhavani kannan', '4', '6379827970', '9094063340', 'smilybhavani19@gmail.com', '2001-09-23', 20, '2', '2', 'Kannan', 'Coolie', 96000.00, 1, 0.00, 11000.00, 'Pattinapakkam', 'Pattinapakkam', '2112240010', '1', '1', 'upload_files/candidate_tracker/40611113951_Bhavani resume (3).docx', NULL, '1', '2021-12-24', 0, '', '3', '59', '2021-12-27', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Banu CRM Role  - 5% TDS', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail', '', 'H1002', '', NULL, NULL, NULL, 1, '2021-12-24 12:25:31', 60, '2021-12-24 05:15:49', 0, NULL, 1),
(7263, 'p.Babu', '6', '9841906703', '9500027461', 'babujm819@gmail.com', '1999-04-20', 22, '2', '2', 'k.peaduru', 'Wildcraft', 25000.00, 3, 15000.00, 20000.00, 'Zamin Pallavaram', 'Chennai', '2112240011', '1', '2', 'upload_files/candidate_tracker/28518356201_P.BABU - 2021.doc1- Resume 20-10-2021 - for merge-converted.pdf', NULL, '3', '2021-12-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open Up Will not suits in our role', '5', '1', '', '1', '1', '', '1', '1970-01-01', '2', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2021-12-24 12:39:06', 60, '2021-12-24 05:20:51', 0, NULL, 1),
(7264, 'arshad azeez', '5', '9847045739', '8124514239', 'jinuarshad22@gmail.com', '1995-04-09', 26, '2', '2', 's/o abdul azeez', 'sale', 25000.00, 2, 7.00, 25000.00, 'ambalapparamban hvaniyambala.p.o kerala pin', 'perumkudi.sanjay boye pg', '2112240012', '1', '2', 'upload_files/candidate_tracker/77557828446_ARSHAD RESUME .pdf', NULL, '1', '2021-12-24', 3, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Local Communication, have Exp in Sales Worked in UAE for a long, Will not sustain if he gets opportunity may leave', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-24 12:48:07', 50, '2021-12-25 09:10:15', 0, NULL, 1),
(7265, 'Shaik Ahmed Rasool', '17', '7095626167', '', 'ahmedrasool.shaik@gmail.com', '1983-01-13', 38, '2', '1', 'Ayesha', 'Service', 50000.00, 1, 4.00, 6.00, 'Hyderabad', 'Hyderabad', '2112240013', '19', '2', 'upload_files/candidate_tracker/77470390064_Updated Resume New Rasool (1) (1).docx', NULL, '1', '2021-12-28', 30, '', '1', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-24 01:45:57', 64, '2021-12-28 10:51:12', 0, NULL, 1),
(7266, 'Usha.c', '4', '6361890955', '8494855291', 'ushak12264@gmail.com', '1998-05-26', 23, '2', '2', 'Chindranna', 'Former', 20000.00, 0, 0.00, 20000.00, 'Chithradurga', 'Yalahanka', '2112250001', '1', '1', 'upload_files/candidate_tracker/83085013063_USHA RESUME_2.docx', NULL, '1', '2021-12-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Average communication,not interested in telesales looking for opportunities in finance accounts background only.Understanding capacity s poor will not sustain in our roles', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-25 08:22:39', 50, '2021-12-25 11:31:03', 0, NULL, 1),
(7267, 'Prathipati Pal Edwin', '5', '9573637076', '', 'pauledwinprathipati96@gmail.com', '1996-06-11', 25, '2', '2', 'Prathipati Mariya Das', 'Private', 20000.00, 1, 18000.00, 28000.00, 'Tiruvuru, Krishna District', 'Shaikpet', '2112250002', '1', '2', 'upload_files/candidate_tracker/62868194770_Paul edwin resume.docx', NULL, '2', '2021-12-27', 3, '', '1', '40', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-25 11:42:09', 1, '2021-12-26 02:23:25', 0, NULL, 1),
(7268, 'Kadem sangameshwar', '5', '8247842474', '9700006973', 'Kademsangameshwar1234@gmail.com', '1994-01-15', 27, '2', '1', 'Kadem lakeshmi', 'House maker', 17500.00, 2, 17500.00, 20000.00, 'Hyderabad', 'Hyderabad', '2112250003', '1', '2', 'upload_files/candidate_tracker/4491532224_sangameshwar resume.docx', NULL, '2', '2021-12-27', 1, '', '1', '40', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-25 12:16:02', 1, '2021-12-25 12:23:46', 0, NULL, 1),
(7269, 'Bhasker anurag', '5', '7993888428', '7097724524', 'naiduanuraag@gmail.com', '1994-10-16', 27, '2', '2', 'Kiran mai', 'Housewife', 25000.00, 0, 0.00, 3.20, 'Hyderabad', 'Hyderabad', '2112250004', '1', '2', 'upload_files/candidate_tracker/60373160107_Anuraag Resume.docx', NULL, '2', '2021-12-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-25 02:10:45', 1, '2021-12-25 02:13:54', 0, NULL, 1),
(7270, 'Akshaya R', '11', '6379094737', '', 'ra2710357@gmail.com', '1996-04-29', 25, '2', '1', 'Sriram', 'Works in sundaram infotech', 40.00, 0, 0.00, 15.00, 'Chennai', 'Arcot', '2112250005', '1', '1', 'upload_files/candidate_tracker/63451276146_Resume-1.pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 6 months Exp in Recruitment, Career Gap due to marriage.Handling pressure Doubt,will not handle our pressure.She requested to confirm on the TxxampC If she comes back let us see', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-25 06:58:44', 64, '2021-12-29 02:31:34', 0, NULL, 1),
(7271, 'Mohammed Hafiz', '6', '7448512497', '', 'hafizmd879@gmail.com', '1997-04-02', 24, '2', '2', 'Mohamed Riyaz', 'Business', 30000.00, 2, 0.00, 16000.00, 'Kodambakkam', 'Kodambakkam', '2112270001', '22', '1', 'upload_files/candidate_tracker/2107649016_resume (2).pdf', NULL, '1', '2021-12-27', 0, '', '3', '59', '2021-12-28', 171000.00, '', '3', '2021-12-29', '1', 'Selected for Ravi Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-27 10:06:25', 60, '2021-12-27 05:23:27', 0, NULL, 1),
(7272, 'Rajaprabhu A', '4', '8489591392', '9047294116', 'ihtnana96@gmail.com', '1998-02-09', 23, '2', '2', 'Arockiaraj A', 'ATM Operator', 30000.00, 2, 0.00, 20000.00, 'Rajapalayam', 'Rajapalayam', '2112270002', '1', '1', 'upload_files/candidate_tracker/32060624318_CV_2021-08-06-020417.pdf', NULL, '1', '2021-12-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is preparing for the NET/PHD exams, just for the time to learn he is looking for the opportunities, will not sustain  for a long', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-27 10:18:00', 50, '2021-12-27 12:16:34', 0, NULL, 1),
(7273, 'K. Saranya', '4', '9566543232', '7305767155', 'Saranyaayyasamy2015@gmail.com', '1988-08-25', 33, '2', '1', 'P.Ayyasamy', 'Business', 15000.00, 1, 0.00, 12000.00, 'Ekkaduthangal', 'Ekkaduthangal', '2112270003', '1', '1', 'upload_files/candidate_tracker/97716567427_Scan_0002.pdf', NULL, '1', '2021-12-27', 0, '', '3', '59', '2022-01-03', 151584.00, '', '3', '2022-09-12', '2', 'Selected for Banu Team  - B2B - 5% TDS Deduction 12K TH', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-27 10:30:51', 60, '2021-12-29 06:06:19', 0, NULL, 1),
(7274, 'Jeena prasath', '5', '7548833400', '', 'Jeenaprasath003@gmail.com', '1999-08-24', 22, '2', '2', 'Saravanan', 'Tax collector', 15500.00, 1, 18000.00, 24000.00, 'Mandhavali chennai -28', 'Mandhavali chennai-28', '2112270004', '22', '2', 'upload_files/candidate_tracker/32558467707_JEENA NEW.pdf', NULL, '1', '2021-12-27', 2, '', '5', '80', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'We discussed Package but person not accept ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-27 10:44:26', 64, '2021-12-27 11:46:02', 0, NULL, 1),
(7275, 'Mohamed Nakif A', '11', '9566838799', '7892171451', 'nakifamhd@gmail.com', '1994-11-01', 27, '2', '1', 'Safura Fathima M', 'Doctor', 40000.00, 0, 20000.00, 25000.00, 'Chennai', 'Poonamallee', '2112270005', '16', '2', 'upload_files/candidate_tracker/85715058715_NAKIF CURICULLAM-converted_organized.pdf', NULL, '3', '2021-12-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,no ideas in the recruitment,have interest towards the business onlyalso too long distance,will not sustain for a long', '6', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-27 10:59:09', 1, '2021-12-27 11:07:40', 0, NULL, 1),
(7276, 'Suresh', '4', '7806910855', '8778366608', 'sureshdoss6198@gmail.com', '1998-01-06', 23, '2', '2', 'Doss', 'Tidc', 20000.00, 1, 13000.00, 15000.00, 'Sevvapet', 'Sevvapet', '2112270006', '1', '2', 'upload_files/candidate_tracker/72189557369_SURESH NEW RESUME.pdf', NULL, '1', '2021-12-27', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', 'Already experienced with other field. exp salary 15k . not need for job highly doubt for sustainability.  drop the candidate.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-27 11:12:49', 1, '2021-12-27 11:20:27', 0, NULL, 1),
(7277, 'Praveen kumar', '4', '6379503804', '9500622086', 'Praveenjava5111997@gmail.com', '1997-11-05', 24, '2', '2', 'Prakasam', 'Clerk', 20000.00, 1, 0.00, 13000.00, 'Sevvapet', 'Sevvapet', '2112270007', '1', '1', 'upload_files/candidate_tracker/56924278979_BHARATH RESUME 2021.docx', NULL, '1', '2021-12-27', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', 'looking for non voice , not handle to pressure handling. so drop.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-27 11:14:59', 1, '2021-12-27 11:31:06', 0, NULL, 1),
(7278, '', '0', '8904094713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112270008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-27 11:27:45', 0, NULL, 0, NULL, 1),
(7279, 'Ragul R', '4', '9500190435', '9962182913', 'raghulrockzz5757@gmail.com', '2000-08-05', 21, '2', '2', 'Rajendran K', 'Tiffin shop', 13000.00, 2, 11000.00, 15000.00, '8/a MGR main road Rajiv Gandhi Nagar alapakkam', '8/a MGR main road Rajiv Gandhi Nagar alapakkam', '2112270009', '1', '2', 'upload_files/candidate_tracker/79121068252_raghul resume.docx', NULL, '1', '2021-12-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Preparing for the Exams, have Exp in Loan Collections for 3 months, Exp is around 13,but not open for Field Sales. Sustaianability Doubts', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-27 11:54:35', 50, '2021-12-27 12:25:25', 0, NULL, 1),
(7280, 'B.Rakesh', '4', '9688319359', '8754975703', 'rakesh.john.230@gmail.com', '2001-03-02', 20, '2', '2', 'G.babu', 'Kuli', 10000.00, 1, 11000.00, 15000.00, '11/30 James Street poonamalle', '11/30 James Street poonamalle', '2112270010', '1', '2', 'upload_files/candidate_tracker/21260896801_rakesh.docx', NULL, '1', '2021-12-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Distance up and Down 42 kms,have Exp in Loan Sales for 3 months and the Exp is High not open for Field Sales too\n', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-27 11:55:05', 50, '2021-12-27 12:25:44', 0, NULL, 1),
(7281, 'Srinivasan D', '4', '9080324799', '8056041154', 'cheenujana863@gmail.com', '2000-06-25', 21, '2', '2', 'Durairajan vS', 'Koyambedu market', 10000.00, 1, 0.00, 15000.00, 'Kk.nagar', 'Kk.nagar', '2112270011', '1', '1', 'upload_files/candidate_tracker/51502199482__RESUME Srinivasan D new (1) (1) (1).pdf', NULL, '1', '2021-12-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher much comfort to work in Non Voice Process Only, Came for the interview as a group, Sustainability Doubts on the profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-27 11:56:09', 50, '2021-12-27 12:18:01', 0, NULL, 1),
(7282, 'MANIKANDAN A', '4', '9944386503', '', 'amk9944@yahoo.com', '1998-04-15', 23, '2', '2', 'alagappan', 'former', 10000.00, 2, 180000.00, 3.50, 'Kumbakonam', 'Kumbakonam', '2112270012', '22', '2', 'upload_files/candidate_tracker/30422104879_A.MANIKANDAN CV FILE .pdf', NULL, '3', '2021-12-28', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is looking for Core production opportunities only. Not interested in Telecaller/RE/RM Sales positions', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-27 12:17:30', 1, '2021-12-27 12:25:04', 0, NULL, 1),
(7283, 'Tamilmani', '4', '7339288259', '8438545212', 'AVPtamilmani@gmail.com', '1995-03-14', 26, '2', '2', 'Vignesh', 'CNC machine operator', 12000.00, 3, 12000.00, 18000.00, 'Vilivakam chennai', 'Vilivakam chennai', '2112270013', '3', '2', 'upload_files/candidate_tracker/28261377428_tamil.docx', NULL, '1', '2021-12-27', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-27 12:30:40', 64, '2021-12-27 02:32:53', 0, NULL, 1),
(7284, '', '0', '7090097090', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112270014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-27 12:58:18', 0, NULL, 0, NULL, 1),
(7285, 'Shwetha kN', '25', '9880316378', '9019389846', 'Shwethamahie123@gmail.com', '1995-12-08', 26, '2', '2', 'Nagarja', 'Agriculture', 12000.00, 2, 0.00, 15000.00, 'Gauribanur', 'Yelahanka', '2112270015', '1', '1', 'upload_files/candidate_tracker/98450508875_Shwetha 01.12.21.pdf', NULL, '1', '2021-12-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '8', '2', '', '2', '2', '', '1', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-27 01:25:28', 50, '2021-12-27 03:38:54', 0, NULL, 1),
(7286, 'HYMA', '4', '7349552275', '8105432516', 'hymah735@gmail.com', '1997-08-30', 24, '2', '2', 'Prasad', 'Agriculture', 10000.00, 2, 0.00, 18000.00, 'Bangalore', 'Bangalore', '2112270016', '1', '1', 'upload_files/candidate_tracker/40367458096_HYMA GUTHULA.pdf', NULL, '1', '2022-02-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2021-12-27 01:41:05', 60, '2022-02-25 01:32:15', 0, NULL, 1),
(7287, 'V.karthikeyan', '5', '9940278359', '9551790038', 'Keyanpeace2893@gmail.com', '2006-12-27', 0, '2', '2', 'N.venkatesalu', 'No 21/10 loco works road Agaram chennai 600082', 25000.00, 1, 0.00, 25000.00, 'No 21/10 loco works road Agaram chennai 600082', 'No 15/8 Chinnaswamy Street Chennai 600082', '2112270017', '1', '2', 'upload_files/candidate_tracker/57923980149_karthikeyan.v.pdf', NULL, '1', '2021-12-27', 0, '', '4', '44', NULL, 0.00, '', '0', NULL, '1', 'Selected for MF long back and the profile on hold, now he appears for the RM profile, kindly check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-27 03:25:26', 1, '2021-12-27 03:33:26', 0, NULL, 1),
(7288, 'Adarsh Bohra', '5', '8184824179', '', 'adarshbohra81@gmail.com', '1995-01-02', 26, '2', '2', 'Bhagwaan Das', 'Business', 500000.00, 0, 3.30, 3.80, 'Hyderabad', 'Hyderabad', '2112270018', '1', '2', 'upload_files/candidate_tracker/2126728716_CV _ Adarsh Bohra (1).docx', NULL, '1', '2021-12-29', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate will not sustain for long and not fit for the profile', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-27 03:30:22', 64, '2021-12-28 03:24:41', 0, NULL, 1),
(7289, '', '0', '9676084258', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112270019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-27 04:08:19', 0, NULL, 0, NULL, 1),
(7290, 'Yamini.n', '11', '7305391766', '6369538436', 'yazhiniyazhini938@gmail.com', '2000-09-06', 21, '2', '2', 'Nagarajan', 'Coolie', 10000.00, 1, 0.00, 14000.00, 'Kodungaiyur', 'Kodungaiyur', '2112270020', '1', '1', 'upload_files/candidate_tracker/51598494173_RESUME-1.pdf', NULL, '1', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher No Basic knowledge in Recruitment,Handling Pressure and Sustainability Doubts not much comfort on the distance\n', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-27 06:00:21', 64, '2021-12-28 12:12:08', 0, NULL, 1),
(7291, 'GOKUL GS', '4', '9384653567', '7418899914', 'gokulgs1807@gmail.com', '2000-07-18', 21, '2', '2', 'Girisan', 'Electrician', 20000.00, 1, 17000.00, 20000.00, 'Ambathur', 'Ambathur', '2112270021', '1', '2', 'upload_files/candidate_tracker/40846817127_GK RESUME.docx', NULL, '1', '2021-12-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude,High CTC Expectation,Not open for Field Sales too,Pressure handling doubt', '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-27 06:04:56', 1, '2021-12-28 12:52:09', 0, NULL, 1),
(7292, '', '0', '7416206846', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112270022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-27 07:09:20', 0, NULL, 0, NULL, 1),
(7293, 'Pooja Shetty', '5', '8088004797', '7892441839', 'shettypooja891@gmail.com', '1995-11-13', 26, '2', '2', 'Diwakar', 'Business', 40000.00, 2, 0.00, 16000.00, 'Bengaluru', 'Bengaluru', '2112280001', '1', '1', 'upload_files/candidate_tracker/92076656115_Pic.pdf', NULL, '3', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate didnt turn back and not looking for a change\n', '5', '1', '', '2', '2', '', '2', '2022-01-03', '3', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-28 10:54:46', 60, '2021-12-28 03:53:00', 0, NULL, 1),
(7294, 'S. Gajalakshmi', '11', '9942137253', '8300670742', 'gajasubu26@gmail.com', '1998-01-26', 23, '2', '2', 'N. Subramanian', 'Sales & clerk in co-operative society', 35000.00, 1, 0.00, 15000.00, 'Kattumannarkoil, Cuddalore dt.', 'Teynampet', '2112280002', '1', '1', 'upload_files/candidate_tracker/12471495441_CV_2021-12-11-063529.pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sounds Low will not handle the job pressure and sustainability Doubts.Not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-28 11:13:09', 64, '2021-12-29 12:29:22', 0, NULL, 1),
(7295, 'Leena Ashwini', '4', '9940105963', '9342063079', 'leenaashwini06@gmail.com', '1993-09-06', 28, '2', '1', 'TamilArasu', 'Deputy Manager', 28000.00, 1, 8000.00, 15000.00, 'Perambur Chennai', 'Perambur chennai', '2112280003', '1', '2', 'upload_files/candidate_tracker/46111622497_Scan_0002.pdf', NULL, '1', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped, She got another offer. Will not join us ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-28 11:28:52', 50, '2021-12-28 12:07:44', 0, NULL, 1),
(7296, 'T. Rajapriya', '11', '6383197505', '8608401542', 'tpriya2017mba@gmail.com', '1996-04-05', 25, '2', '2', 'R. Thyagarajan', 'Passaway', 10000.00, 3, 0.00, 13000.00, 'Madurai', 'Chennai', '2112280004', '1', '1', 'upload_files/candidate_tracker/90299739631_priya. T 2302.pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication ,no basic understandings on the positions.Not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-28 11:36:46', 64, '2021-12-28 12:05:13', 0, NULL, 1),
(7297, 'Tamilarasan E.k', '4', '6380906572', '9363688575', 'tamil2561997@gmail.com', '1997-06-25', 24, '2', '2', 'kavitha', 'business', 30000.00, 10, 17000.00, 20000.00, 'avadi', 'avadi', '2112280005', '1', '2', 'upload_files/candidate_tracker/15004776906_IMG_3103 2.pdf', NULL, '1', '2021-12-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in AR Caller not open for fieldsales,Salary Exp is more than 17K,Will not sustain for a long', '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 12:07:20', 1, '2021-12-28 12:39:30', 0, NULL, 1),
(7298, 'Kishore. S', '4', '8939051061', '8754535403', 'kishoresundar1110@gmail.com', '2001-10-11', 20, '2', '2', 'Sundar Raj. C', 'Sales representative', 60000.00, 1, 0.00, 10000.00, 'Kovur', 'Kovur', '2112280006', '1', '1', 'upload_files/candidate_tracker/42230147517_KISHORE RESUME - Google Docs.pdf', NULL, '1', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,having interest in Non Voice process,location distance around 36 up and down no bike will not sustain', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-28 12:10:04', 60, '2021-12-28 07:04:17', 0, NULL, 1),
(7299, 'Bharath Kumar', '4', '7092193082', '', 'bharathneo10@gmail.com', '1999-07-10', 22, '2', '2', 'Ravethi k', 'Export', 70000.00, 3, 10000.00, 14000.00, 'Chennai', 'Chennai', '2112280007', '1', '2', 'upload_files/candidate_tracker/58900683109_RESUME - BHARATH KUMAR K.pdf', NULL, '1', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher fir Sales,Career Gap,Came along with his friend.Looking for opportunites in the non voice process only.Not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-28 12:10:46', 60, '2021-12-28 07:05:07', 0, NULL, 1),
(7300, 'Nivetha R', '11', '9150753177', '9994174630', 'nivetha161198@gmail.com', '1998-11-16', 23, '2', '2', 'Rajagopal', 'Business', 300000.00, 1, 0.00, 14000.00, 'Pattukkottai', 'Pattukkottai', '2112280008', '1', '2', 'upload_files/candidate_tracker/91552026013_CV_Nivetha Rajagopal_Nivetha.pdf', NULL, '1', '2021-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 12:14:28', 1, '2021-12-28 12:17:46', 0, NULL, 1),
(7301, 'JAYAKUMAR', '4', '7550276121', '9884515009', 'mortinspoty@gmail.com', '2000-06-20', 21, '2', '2', 'KUMAR', 'CARPENTER', 15.00, 1, 0.00, 12000.00, 'City', 'City', '2112280009', '1', '1', 'upload_files/candidate_tracker/99602976538_resumejk martin.docx', NULL, '1', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Chat process only not much open up ,pressure handling no,Not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-28 12:36:34', 50, '2021-12-28 01:18:04', 0, NULL, 1),
(7302, 'Dinesh Kumar Charles', '4', '9094099950', '9941565006', 'dail9094099950.dinesh@gmail.com', '1998-11-19', 23, '2', '2', 'Parent', 'Security', 13000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2112280010', '1', '1', 'upload_files/candidate_tracker/63054924808_Dinesh Resume Updated (1) (1).pdf', NULL, '1', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Career Gap Fresher for Sales, Looking for opportunities in Testing Profiles for time being looking for other opportunities. Will not Sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-28 12:41:00', 50, '2021-12-28 01:12:18', 0, NULL, 1),
(7303, 'christo Raphael', '5', '9600123054', '', 'christoremo@yahoo.com', '2006-12-28', 0, '2', '2', 'raphael', 'rtd bank employee', 100000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2112280011', '22', '2', 'upload_files/candidate_tracker/96734212820_Resume april 2021-2.docx', NULL, '1', '2021-12-28', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Worked in different domain,but no sustainability in the previous exp,Pressure handling Doubt and will not sustain for a long', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-28 12:44:09', 1, '2021-12-28 12:47:34', 0, NULL, 1),
(7304, 'Naresh Tata', '5', '9160542846', '7330917915', 'tatanaresh@gmail.com', '1990-07-20', 31, '2', '1', 'veena korada', 'employee', 50000.00, 3, 25000.00, 25000.00, 'hyderabad', 'hyderabad', '2112280012', '1', '2', 'upload_files/candidate_tracker/58565524135_RESUME (1).docx.pdf', NULL, '1', '2021-12-29', 1, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Attended', '5', '2', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-28 01:03:59', 64, '2021-12-29 09:56:54', 0, NULL, 1),
(7305, 'Madhankumar', '11', '9566897911', '', 'madhanrba123@gmail.com', '1997-05-17', 24, '2', '2', 'Ravi C', 'Weaver', 20000.00, 0, 0.00, 15000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2112280013', '1', '1', 'upload_files/candidate_tracker/41401150878_Resume_19_12_2021_0_20_666.pdf', NULL, '1', '2022-01-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 01:11:01', 1, '2021-12-31 03:12:49', 0, NULL, 1),
(7306, 'Sreehari T P', '5', '9048151630', '', 'tpsreehari07@gmail.com', '2000-01-07', 21, '2', '2', 'Raji', 'Private Company', 20000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2112280014', '1', '2', 'upload_files/candidate_tracker/11095022373_Sreehari_Resume_2021.docx', NULL, '1', '2021-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 01:16:28', 1, '2021-12-28 01:20:26', 0, NULL, 1),
(7307, 'Malligeshwari R', '5', '9003109204', '', 'malliram10@gmail.com', '2000-06-10', 21, '2', '2', 'Ramanathan V', 'Private business', 15000.00, 1, 18000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2112280015', '1', '2', 'upload_files/candidate_tracker/1675290160_Malligeshwari.pdf', NULL, '1', '2021-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 01:37:29', 1, '2021-12-28 02:52:04', 0, NULL, 1),
(7308, 'DHANA SHREE K', '25', '7358269125', '8015133757', 'dhanashreemicky1516@gmail.com', '1995-05-16', 26, '2', '2', 'Mr.Kathirvel, Mrs.Selvi Kathirvel', 'Tiffen center', 100000.00, 1, 15000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2112280016', '1', '2', 'upload_files/candidate_tracker/16773640344_dhana new resume ( 17.11.21).pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication was good ,No relevant Sales Exp much into Non Voice,Scheduled for 2nd Round with Karthika for ESales post lunch but she left without attending', '8', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-28 01:44:14', 64, '2021-12-28 02:34:12', 0, NULL, 1),
(7309, '', '0', '7358269115', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112280017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-28 02:00:23', 0, NULL, 0, NULL, 1),
(7310, '', '0', '8190908236', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112280018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-28 02:26:19', 0, NULL, 0, NULL, 1),
(7311, 'Saddulabai Anil Kumar', '6', '6309699349', '6309494892', 'anilambani4006@gmail.com', '2001-02-09', 20, '2', '2', 'Saddulabai Rajender', 'Diploma (EEE)', 20000.00, 2, 0.00, 15000.00, 'HYDERABAD', 'HYDERABAD', '2112280019', '1', '1', 'upload_files/candidate_tracker/6829078680_my Resume.pdf', NULL, '3', '2021-12-30', 0, '', '1', '40', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 03:12:22', 1, '2021-12-28 03:15:16', 0, NULL, 1),
(7312, 'Karimullah Baig', '5', '9790849777', '', 'Karimullahbaigf@gmail.com', '1993-11-06', 28, '2', '2', 'abida begum', 'housewife', 150000.00, 3, 25000.00, 30000.00, 'chennai', 'chennai', '2112280020', '1', '2', 'upload_files/candidate_tracker/66837813761_karimullahbaig_updateresume.docx', NULL, '1', '2021-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 03:15:43', 1, '2021-12-28 03:20:25', 0, NULL, 1),
(7313, 'SYED AIJAZ ALI', '5', '8686290484', '', 'Atifbhai249@gmail.com', '1997-03-10', 24, '2', '2', 'Parent', 'Self Employed', 20000.00, 4, 14000.00, 18000.00, 'Borabanda Hyderabad Telangana 500018', 'Borabanda Hyderabad Telangana 500018', '2112280021', '1', '2', 'upload_files/candidate_tracker/66482978684_Aijaz_Resume.pdf', NULL, '1', '2021-12-29', 3, '', '8', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interview not attended', '5', '2', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-28 03:22:21', 64, '2021-12-28 04:58:32', 0, NULL, 1),
(7314, '', '0', '7200423957', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112280022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-28 03:30:42', 0, NULL, 0, NULL, 1),
(7315, 'MD SAMEER AHMED', '6', '9704784563', '9848554099', 'md.cielo08@gmail.com', '2001-06-30', 20, '2', '2', 'MD QURSHEED AHMED', 'works in set up box company', 150000.00, 1, 0.00, 15000.00, '108/9 Suraram colony , Jeedimetla , Hyderabad', '108/9 Suraram Colony , Jeedimetla , Hyderabad', '2112280023', '1', '1', 'upload_files/candidate_tracker/313313426_1640686924753_SAMEER AHMED MD.doc', NULL, '2', '2021-12-30', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended the interview', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 03:42:08', 1, '2021-12-28 03:53:40', 0, NULL, 1),
(7316, '', '0', '6309669346', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112280024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-28 03:45:23', 0, NULL, 0, NULL, 1),
(7317, 'PRADEEP M', '11', '9840199223', '', 'mpradeep2021hr@gmail.com', '1992-12-20', 29, '2', '2', 'Manoharan', 'Engineer', 45000.00, 0, 0.00, 18000.00, 'CHENNAI', 'AMBATTUR', '2112280025', '1', '1', 'upload_files/candidate_tracker/71312093916_pradeepM MBA HR 2021 Resume.pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Recruitment, Salary Exp is very high, will not sustain with us. Not suitable', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 04:03:41', 1, '2021-12-28 04:08:09', 0, NULL, 1),
(7318, 'Paul Methew R', '6', '9444011496', '9344254014', 'Paulmathew.richard@gmail.com', '2001-12-09', 20, '2', '2', 'Richard', 'Painter', 72000.00, 2, 15000.00, 18000.00, 'Thuraipakkam', 'Mylapore', '2112280026', '1', '2', 'upload_files/candidate_tracker/17202010424_Paul MATHEW.RESUME.pdf', NULL, '1', '2021-12-28', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'document fake', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-28 05:33:34', 60, '2021-12-28 07:00:24', 0, NULL, 1),
(7319, 'mohamed azarudin', '6', '8124668134', '', 'azarbashabsc@gmail.com', '1998-08-26', 23, '2', '2', 'sathick basha', 'working', 10000.00, 1, 0.00, 12000.00, 'Tondairpet', 'tondairpet', '2112290001', '1', '1', 'upload_files/candidate_tracker/35172705604_RESUME-Azar...pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate prefers to work in Networking profile,looking for time being opportunites attended few networking interview,Will not sustain in our role.If he get any networking profile will move.If he comes back let us try', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-29 10:20:47', 1, '2021-12-29 10:26:35', 0, NULL, 1),
(7320, 'elakiya', '4', '6369887041', '9500714858', 'nesiseilian560@gmail.com', '2000-03-09', 21, '2', '2', 'Neduchizhiyan', 'farmer', 20000.00, 1, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2112290002', '1', '1', 'upload_files/candidate_tracker/62476122593_Elakkiya resume pdf.pdf', NULL, '1', '2021-12-29', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'due to lag of self confident fully pampering girl damn sure not fit for telesales no mobile and laptop no exposure salary expectation is high', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-29 10:29:36', 50, '2021-12-29 11:41:41', 0, NULL, 1),
(7321, 'Dhana Lakshmi G', '11', '7305903533', '', 'dl4075956@gmail.com', '2000-06-07', 21, '2', '2', 'Lalitha', 'Homemaker', 20.00, 2, 0.00, 12.00, 'Vandalur', 'Vandalur', '2112290003', '1', '1', 'upload_files/candidate_tracker/69055604721_DHANALAKSHMI.G(CV)_Dhana Lakshmi G.pdf', NULL, '1', '2021-12-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-29 10:45:50', 1, '2021-12-29 10:52:43', 0, NULL, 1),
(7322, 'R. Rajasekaran', '6', '8825565784', '', 'rajasekaran2298@gmail.com', '1998-06-22', 23, '2', '2', 'K. Ramachandran', 'Farmer', 60000.00, 4, 0.00, 14000.00, 'Cuddalore', 'Ponamalle', '2112290004', '1', '1', 'upload_files/candidate_tracker/68833344729_CV_2021-11-23-010242.pdf', NULL, '1', '2021-12-29', 0, '', '3', '59', '2022-01-05', 171000.00, '', NULL, '2023-11-25', '2', 'Selected for Suthagar Team with PF/ESI/PT deductions - Arumbakkam Location', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer document Link mail shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-29 10:58:26', 60, '2021-12-30 12:51:00', 0, NULL, 1),
(7323, 'Melluri Aditya', '5', '9652904094', '', 'adihyt@gmail.com', '1994-01-29', 27, '2', '1', 'Sree divya', 'Housewife', 33567.00, 2, 13122.00, 21000.00, 'Hyderabad', 'Hyderabad', '2112290005', '1', '2', 'upload_files/candidate_tracker/6681049857_Resume updated.docx', NULL, '2', '2021-12-30', 0, '', '3', '59', '2022-01-12', 294000.00, '', '2', '1970-01-01', '1', 'Selected for Veben Team in PF/PT deductions', '5', '2', '1', '3', '4', '', '2', '2022-01-05', '1', '1', 'Offer Link Mail Shared', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-29 11:08:47', 60, '2022-01-05 01:42:33', 0, NULL, 1),
(7324, 'Badri Sai Ram', '17', '9381210852', '8978608098', 'sairam.badri524@gmail.com', '1993-05-06', 28, '2', '2', 'Murali', 'MBA', 20000.00, 2, 400000.00, 500000.00, 'Dharmaram peddapally', 'kukkatpally hyderabad', '2112290006', '19', '2', 'upload_files/candidate_tracker/31026911278_RESUME.pdf', NULL, '3', '2022-01-03', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-29 11:11:35', 64, '2021-12-31 10:41:22', 0, NULL, 1),
(7325, 'musarafa', '6', '8946055926', '', 'musafarkhan1998@gmail.com', '1999-05-12', 22, '2', '2', 'Mohamed aboobakar', 'Crean operator', 10000.00, 1, 0.00, 10000.00, 'tondairpet', 'Tondairpet', '2112290007', '1', '1', 'upload_files/candidate_tracker/43843655975_my resume (1).pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested in Voice process looking for Opportunities Networking IT profile, For time being looking for Job', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-29 11:12:39', 1, '2021-12-29 12:11:12', 0, NULL, 1),
(7326, 'Kotti Naveen', '17', '8309787813', '', 'kottenaveen25@gmail.com', '1995-05-25', 26, '2', '2', 'Anijaiah', 'Former', 360000.00, 1, 360000.00, 450000.00, 'Hyderabad', 'Hyderabad', '2112290008', '19', '2', 'upload_files/candidate_tracker/65386802137_ new .docx', NULL, '1', '2022-01-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-29 11:28:24', 64, '2022-01-03 11:59:57', 0, NULL, 1),
(7327, 'Rithinika.L', '4', '9176672334', '8939651280', 'rithii1525@gmail.com', '2001-10-15', 20, '2', '2', 'Radha.p', '01', 25000.00, 1, 12000.00, 13000.00, '16/8 srinivasapuram pattinapakkum chenni_600028', 'Chennai', '2112290009', '1', '2', 'upload_files/candidate_tracker/22908550227_Document.pdf', NULL, '1', '2021-12-29', 2, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking Non voice process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-29 11:44:14', 64, '2021-12-29 12:21:32', 0, NULL, 1),
(7328, 'Rakesh Barath C', '4', '7550133409', '8072581917', 'rakeshbarath12@gmail.com', '2001-03-12', 20, '2', '2', 'Christhu Raj P', 'Daily wages', 7000.00, 1, 0.00, 13000.00, 'Chennai saidapet', 'Chennai saidapet', '2112290010', '1', '1', 'upload_files/candidate_tracker/43614515372_ Resume.pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interested to work in nonvoice process only. Not open for Field Sales too if we try him based on the salary Expectation', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2021-12-29 12:07:35', 60, '2021-12-29 02:30:30', 0, NULL, 1),
(7329, 'J.m.venkataramanan', '4', '8072581917', '7550133409', 'J.m.venkata@gmail.com', '2001-07-08', 20, '2', '2', 'J.Murthy', 'Office assistant', 25000.00, 1, 0.00, 13000.00, 'Chennai saidapet', 'Chennai saidapet', '2112290011', '1', '1', 'upload_files/candidate_tracker/90851669286_1639117779607_VENKATA+Resume.pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open to work in Targets and pressure handling no will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2021-12-29 12:08:43', 60, '2021-12-29 02:30:51', 0, NULL, 1),
(7330, 'F Arif Ahmed', '11', '8667836539', '', 'farifahmed78@gmail.com', '2000-04-18', 21, '2', '2', 'Fazal Ahmed', 'PG student', 15000.00, 1, 0.00, 25000.00, 'TNP STREET dhanammal street Perambur Chennai- 11', 'TNP STREET Dhanammal Street Perambur Chennai- 11', '2112290012', '1', '1', 'upload_files/candidate_tracker/79004268264_Arif Ahmed F CV.pdf', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,fresher have 2 months internship exp,Salary Exp is very high,Sustainability Doubts', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-29 03:48:22', 64, '2021-12-31 10:12:17', 0, NULL, 1),
(7331, '', '0', '7373454565', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112290013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-29 05:33:46', 0, NULL, 0, NULL, 1),
(7332, 'Bachu Karthik', '5', '9398323728', '7093101529', 'bachukarthik1999@gmail.com', '1999-07-03', 22, '2', '2', 'Srinivas', 'Business', 25000.00, 1, 0.00, 18000.00, 'Warangal', 'Hyderabad', '2112290014', '1', '1', 'upload_files/candidate_tracker/64770132767_Resume_B.Karthik_.pdf', NULL, '1', '2021-12-30', 0, '', '8', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not attended', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-29 06:47:27', 64, '2021-12-30 02:35:09', 0, NULL, 1),
(7333, 'Abdul Rahman', '11', '7904676492', '', 'abdulrahmans1772001@gmail.com', '2001-07-17', 20, '2', '2', 'Sahabdeen', 'Pg student', 10000.00, 1, 0.00, 24000.00, '69/2 narayana naiken street pudupet Chennai-2', '69/2 Narayana Naiken Street Pudupet Chennai-2', '2112290015', '1', '1', 'upload_files/candidate_tracker/49070975956_Abdul Rahman S CV.docx', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok, Fresher Have a Month Internship Exp, Salary Exp Is negotable, Sustainability Doubts as he is already running his own online business.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-29 06:48:28', 64, '2021-12-31 10:12:07', 0, NULL, 1),
(7334, '', '0', '8667836538', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112290016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-29 08:29:17', 0, NULL, 0, NULL, 1),
(7335, 'subalaxmi', '4', '9629512877', '', 'subamaha00@gmail.com', '1999-08-12', 22, '2', '2', 'rajamohan', 'working', 10000.00, 1, 0.00, 10000.00, 'tanjavur', 'tanjavur', '2112300001', '1', '1', 'upload_files/candidate_tracker/11731384777_SUBALAKSHMI RESUME.doc', NULL, '1', '2021-12-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales financial crisis but he is not attend the interview that much better and not answering any question vioice is not fluence', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-30 09:49:55', 50, '2021-12-30 01:23:25', 0, NULL, 1),
(7336, 'soundarya', '4', '9952686979', '', 'soundarya22199@gmail.com', '1999-01-22', 22, '2', '2', 'mohan', 'not working', 9000.00, 2, 0.00, 10000.00, 'tanjavur', 'tanjavur', '2112300002', '1', '1', 'upload_files/candidate_tracker/44055935625_RESUME.pdf', NULL, '1', '2021-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Continuous RNR Dropped\n', '1', '1', '', '4', '5', '', '2', '2021-12-31', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-30 09:54:48', 50, '2021-12-30 01:23:51', 0, NULL, 1),
(7337, 'maheshwaran', '4', '9003070592', '', 'MAHESH20MATHAN@GMAIL.COM', '2001-01-20', 20, '2', '2', 'marimuthu', 'no more', 1000.00, 2, 0.00, 10000.00, 'aavadi', 'aavadi', '2112300003', '1', '1', 'upload_files/candidate_tracker/15670622929_madhan resume.pdf', NULL, '1', '2021-12-30', 0, '', '3', '59', '2022-01-05', 126000.00, '', '5', '1970-01-01', '2', 'Selected for  Tiruvallur Location in Consultant 5% TDS', '1', '1', '', '4', '6', '', '2', '2021-12-31', '2', '9', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-30 10:21:35', 60, '2022-01-03 05:31:40', 0, NULL, 1),
(7338, 'Lavanya D', '4', '8610906912', '7806910855', 'lavatobby21082000@gmail.com', '2000-08-21', 21, '2', '2', 'Dass m', 'Tidc machine operator', 20000.00, 1, 0.00, 13000.00, 'Sevvapet', 'Sevvapet', '2112300004', '1', '1', 'upload_files/candidate_tracker/10876724900_LAVANYA RESUME-converted.docx', NULL, '1', '2021-12-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate prefer much towards the Non Voice process,for time being she looks for this.Looking for the opportunities near to her home only.Will not sustain for a long.will not handle the pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-30 10:23:18', 1, '2021-12-30 11:32:06', 0, NULL, 1),
(7339, 'subasshini', '4', '7358401264', '', 'gsasubhashini@gmail.com', '2000-08-28', 21, '2', '2', 'sudhakar', 't.master', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2112300005', '1', '1', 'upload_files/candidate_tracker/81341878744_Subhashini.S .pdf', NULL, '1', '2021-12-30', 0, '', '3', '59', '2022-01-03', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Priyanka Jenit Team in 10K TH Consultant 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-30 10:26:31', 60, '2021-12-30 07:03:26', 0, NULL, 1),
(7340, 'rajkumar', '6', '9840137830', '', 'Rajkumarjackgd@gmail.com', '2006-12-30', 0, '2', '2', 'devan', 'electrician', 15000.00, 3, 0.00, 15000.00, 'chennai', 'chennai', '2112300006', '1', '1', 'upload_files/candidate_tracker/58378155729_RAJKUMAR Resume fresher.pdf', NULL, '1', '2021-12-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-30 10:45:20', 1, '2021-12-30 10:53:25', 0, NULL, 1),
(7341, 'Deerajprasad.V', '4', '8754497679', '', 'deerajprasad98@gmail.com', '1997-03-29', 24, '1', '2', 'Vijayparsad', 'Retirement officer', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2112300007', '', '1', 'upload_files/candidate_tracker/5586121480_deeraj_resume.docx', NULL, '1', '2021-12-30', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-30 11:32:10', 1, '2021-12-30 11:42:07', 0, NULL, 1),
(7342, 'nagarajan', '5', '9176646774', '', 'nagarajanrajan4295@gmail.com', '1995-11-01', 26, '2', '2', 'iyappan', 'catering', 25000.00, 0, 21000.00, 21000.00, 'tiruninravur', 'Tiruninravur', '2112300008', '1', '2', 'upload_files/candidate_tracker/79796790156_nagarajan resume.docx', NULL, '1', '2021-12-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Telecaller Field Sales have Exp in Store Sales and looking only for opportunities inside the office. Salary Exp is also high,Time being only he is looking for openings,He specifically trying for opportunites in Anchor roles ,he already attended some interview related to anchor openings,Will not sustain for a long. Not Suitable', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-30 12:20:34', 1, '2021-12-30 12:37:40', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7343, 'Bekas Kumar Patra.A', '11', '7550281234', '9791148818', 'bekaskumar23@gmail.com', '1998-12-14', 23, '2', '2', 'Ajay Kumar Patra', 'Catering', 40000.00, 1, 0.00, 15000.00, 'no.27 V.O.C Nagar Anna nagar East Ch-102', 'no.9/4, R.V Nagar 6th cross Street east Ch-102', '2112300009', '1', '1', 'upload_files/candidate_tracker/27326381355_BEKAS RESUME.pdf', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped by Gokul in the final round,', '6', '1', '', '1', '1', '', '2', '2022-01-03', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-30 12:22:28', 64, '2021-12-31 10:26:35', 0, NULL, 1),
(7344, 'divashiya', '4', '7358293101', '', 'divshiyachandran25@gmail.com', '2001-08-25', 20, '2', '2', 'chandran', 'painter', 12000.00, 1, 0.00, 10000.00, 'saidapet', 'Saidapet', '2112300010', '1', '1', 'upload_files/candidate_tracker/84212297123_Divshiya C resume.pdf', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,no convincing,Much comfort to work in Non Voice,already her sister is working in non voice only.For time being looking for Voice process.Will not sustain', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-30 12:27:51', 50, '2021-12-31 11:35:48', 0, NULL, 1),
(7345, 'kalaivani', '4', '7397359467', '', 'vanishanvani@gmail.com', '1995-11-01', 26, '2', '2', 'rameskumar', 'government employe', 60000.00, 1, 0.00, 12000.00, 'thirumangalam', 'Thirumangalam', '2112300011', '1', '1', 'upload_files/candidate_tracker/90366214866_pdf.pdf', NULL, '1', '2021-12-30', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Sports player not suit for telecalling', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-30 02:27:45', 1, '2021-12-30 02:33:53', 0, NULL, 1),
(7346, 'Baskar.D', '4', '9940377854', '7094508655', 'Baskarsubash058@gmail.com', '1999-06-01', 22, '3', '2', 'Dhanasekran', 'Telecalling', 15000.00, 2, 0.00, 12000.00, 'Tiruvallur', 'Tiruvallur', '2112300012', '', '1', 'upload_files/candidate_tracker/42583086756_BASKAR RESUME-2.pdf', NULL, '1', '2021-12-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped,candidate will not sustain ', '1', '1', '0', '4', '6', '0', '2', '2021-12-31', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-30 02:50:02', 1, '2021-12-30 03:04:01', 0, NULL, 1),
(7347, 'swathi b', '31', '9384730071', '', 'shawtisri1997@gmail.com', '1997-11-13', 24, '2', '2', 'babu', 'officer', 100000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2112300013', '1', '1', 'upload_files/candidate_tracker/75126473004_swathinewresume3.doc', NULL, '2', '2022-02-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '1', '1970-01-01', '2', '2', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2021-12-30 02:56:38', 87, '2022-02-28 06:27:18', 0, NULL, 1),
(7348, 'priya dharshni', '4', '6374383832', '', 'priyadharshini9301@gmail.com', '2006-12-30', 0, '2', '2', 'baskar', 'driver', 20000.00, 1, 0.00, 10000.00, 'perambur', 'perambur', '2112300014', '1', '1', 'upload_files/candidate_tracker/65965938029_PRIYA RESUME.docx', NULL, '1', '2021-12-30', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-30 03:57:19', 1, '2021-12-30 04:00:04', 0, NULL, 1),
(7349, 'Jagapathi Babu', '11', '8248661208', '9885327823', 'Jagapathibabu90@gmail.com', '1999-10-08', 22, '2', '2', 'Janathan', 'Businesd', 20000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2112300015', '1', '1', 'upload_files/candidate_tracker/29012021593_Jagapathi cv.docx', NULL, '1', '2021-12-31', 0, '', '3', '59', '2022-01-04', 146496.00, '', '', '2022-04-01', '1', 'Selected for Recruitment Role with Stipend 7500 PM for 3 months post internship salary will be confirmed min 12K TH', '6', '1', '', '1', '1', '', '2', '2022-01-03', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-30 04:13:25', 60, '2022-01-05 10:21:59', 0, NULL, 1),
(7350, 'hari hara sudhan', '6', '9840679509', '', 'hari27325@gmail.com', '2000-12-29', 21, '2', '2', 'balakumar', 'not working', 10000.00, 0, 0.00, 12000.00, 'mylapore', 'mylapore', '2112310001', '1', '1', 'upload_files/candidate_tracker/34024648029_Hari_Resume.pdf', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Sales,Have interest towards Non Voice xxamp IT Testinf positions,not open on saturdays to work,will not sustain in our roles', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-31 10:08:09', 64, '2021-12-31 10:27:05', 0, NULL, 1),
(7351, 'Raghav PV', '11', '7010713977', '', 'pv.raghav123@gmail.com', '1996-09-28', 25, '2', '2', 'M D PRASANNA Venkatesan', 'Ex serviceman', 50.00, 0, 0.00, 14000.00, 'East Tambaram', 'East Tambaram', '2112310002', '1', '1', 'upload_files/candidate_tracker/55504212876_Raghav resume (Updated ).pdf', NULL, '1', '2022-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Seems to be clow and too long distance around 72kms up and down, will not sustain and handling pressure doubtful', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-31 10:38:50', 64, '2022-01-03 10:18:12', 0, NULL, 1),
(7352, 'Lokesh J', '6', '9176401496', '9500101496', 'lokeshjagadeesan1@gmail.com', '1996-04-01', 25, '1', '2', 'Jagadeesan', 'Southern Railway(Retired)', 400000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2112310003', '', '1', 'upload_files/candidate_tracker/92667358661_lokesh Resume 3.pdf', NULL, '1', '2021-12-31', 0, 'P5556', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No relevant Exp looking much for opportunites in Non Voice,will not sustain in our role', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-31 10:51:07', 64, '2021-12-31 11:47:37', 0, NULL, 1),
(7353, 'sandhiya', '4', '9962359820', '9600138017', 'Sandhiyal1418@gmail.com', '2001-10-18', 20, '2', '2', 'erammiah', 'cooly', 22000.00, 1, 0.00, 15000.00, 'Chennai', 'chennai', '2112310004', '1', '2', 'upload_files/candidate_tracker/80491187035_Nirmal Resume.docx', NULL, '1', '2021-12-31', 0, '', '3', '59', '2022-01-03', 144000.00, '', '5', '1970-01-01', '1', 'selected for Muthu Team in Consultant 5% TDS role', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-31 11:56:47', 60, '2021-12-31 05:18:35', 0, NULL, 1),
(7354, 'keerthana', '4', '9944976571', '', 'keerthanagansean@gmail.com', '2000-03-05', 21, '2', '2', 'Ganeshan', 'Violine maker', 15000.00, 3, 0.00, 10000.00, 'tanjavurtanjavur', 'tanjavur', '2112310005', '1', '1', 'upload_files/candidate_tracker/7463443719_KEERTHANA.pdf', NULL, '1', '2021-12-31', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'family financial crisis but very lazy not a talk active person and poor performance in interview..not fit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-31 12:01:43', 50, '2021-12-31 12:52:43', 0, NULL, 1),
(7355, 'Iyyappan', '11', '9786422527', '', 'iyyappan29m@gmail.com', '1999-05-29', 22, '2', '2', 'Soranam bigia', 'Nurse', 400000.00, 1, 0.00, 18000.00, 'Uthiramerur', 'Chengalpattu', '2112310006', '3', '1', 'upload_files/candidate_tracker/51570692387_IYYAPPAN M.docx', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested in Voice process,Looking for design oriented positions,too long distance', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-31 12:11:33', 64, '2021-12-31 12:19:03', 0, NULL, 1),
(7356, 'Vidhya Sagar', '4', '6379246949', '', 'sagarda123123@gmail.com', '2001-04-17', 20, '2', '2', 'Mahendra.M', 'Pepsico private limited company', 30000.00, 2, 0.00, 12000.00, 'Chengalpattu', 'Chengalpattu', '2112310007', '3', '1', 'upload_files/candidate_tracker/52789134469_VIDHYA SAGAR I RESUME.pdf', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long distance not ready to relocate, Much prefer to work in non voice process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-31 12:12:34', 64, '2021-12-31 12:26:00', 0, NULL, 1),
(7357, 'Shanmugam D', '4', '9600893852', '6369657499', 'shanmugamamutha50@gmail.com', '2000-03-19', 21, '2', '2', 'Dhuraimanikam', 'Father', 10000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2112310008', '1', '1', 'upload_files/candidate_tracker/24130191476_sanmugam resume1.docx', NULL, '1', '2021-12-31', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'highly job need 6 months experience but high salary expectation and attitude is very poor not fit for team over attitude person', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-31 12:28:13', 50, '2021-12-31 12:52:19', 0, NULL, 1),
(7358, 'Rohith Raj', '5', '9989291542', '9110749100', 'rohithrajarragokula@gmail.com', '1994-07-06', 27, '2', '1', 'a r lingam', 'govt employee', 1.30, 1, 22300.00, 25000.00, 'hyderabad', 'hyderabad', '2112310009', '22', '2', 'upload_files/candidate_tracker/85068103759_ROHIT updated resume 3.docx', NULL, '3', '2022-01-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-31 01:52:25', 64, '2021-12-31 02:56:15', 0, NULL, 1),
(7359, '', '0', '9361733997', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112310010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-31 02:10:28', 0, NULL, 0, NULL, 1),
(7360, 'Megha Shyamli', '11', '7598979013', '8939353426', 'meghashyamli7011@gmail.com', '1999-04-23', 22, '2', '2', 'Ram', 'Business', 50000.00, 1, 0.00, 4.50, 'Coimbatore', 'Coimbatore', '2112310011', '1', '1', 'upload_files/candidate_tracker/75306511321_MEGHA SHYAMLI R RESUME k,giri (2)-1.pdf', NULL, '1', '2022-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good ,Have Exp in Internship ,but the salary exp is very high,min exp is 25K will not come down', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-31 03:09:05', 64, '2022-01-03 10:47:56', 0, NULL, 1),
(7361, 'Gayathri Anand', '4', '9360006078', '', 'gayathrianand19@gmail.com', '2001-07-19', 20, '2', '2', 'Vani', 'House wife', 10000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2112310012', '1', '1', 'upload_files/candidate_tracker/74434282983_A.Gayathri.docx', NULL, '1', '2021-12-31', 0, '', '3', '59', '2022-01-03', 126312.00, '', '', '2022-01-11', '2', 'Selected for Sithy Team - Elite RE - Thanjavur location', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-31 03:17:35', 60, '2022-01-03 02:34:48', 0, NULL, 1),
(7362, 'Veerajayakumar T', '4', '7339586438', '9585808729', 'veerajayakumar05071999@gmail.com', '1999-07-05', 22, '2', '2', 'Thiyagarajan M', 'Fresher', 5000.00, 4, 0.00, 12000.00, 'Alathur', 'Alathur', '2112310013', '1', '1', 'upload_files/candidate_tracker/39709091262_veera resume 01.pdf', NULL, '1', '2021-12-31', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher in field not talk active and not fit for telesales....salary highly expected need a job like part time ', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-31 03:54:13', 50, '2021-12-31 05:42:34', 0, NULL, 1),
(7363, 'Sukumaran S', '4', '9176499252', '9176144238', 'Sukus793028@gmail.com', '1997-12-31', 24, '2', '2', 'M soundarajan', 'Auto Driver', 12000.00, 1, 8500.00, 12000.00, 'DR Thomas Road T Nagar', 'chennai', '2201030001', '1', '2', 'upload_files/candidate_tracker/70248810444_ resume Sukumaran.pdf', NULL, '1', '2022-01-03', 30, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-03 10:03:56', 58, '2022-01-05 05:33:00', 0, NULL, 1),
(7364, 'Ameer Arsath M', '11', '8248772758', '9629188220', 'ameer.arsath199935@gmail.com', '1999-03-05', 22, '3', '2', 'Firdows', 'House wife', 30000.00, 1, 0.00, 180000.00, '3/92B-6 New East street,kilakarai,ramanathapuram', 'parrys,chennai', '2201030002', '', '1', 'upload_files/candidate_tracker/7966407901_AMEER ARSATH .M.pdf', NULL, '1', '2022-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication,sustainability Doubts,Not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-03 10:50:54', 64, '2022-01-03 12:17:44', 0, NULL, 1),
(7365, 'Deepak Singh', '5', '9344453676', '', 'champdeepak18@gmail.com', '2002-05-15', 19, '2', '2', 'Prabhu Singh', 'Catering', 30000.00, 3, 20000.00, 22000.00, 'Chennai', 'Chennai', '2201030003', '1', '2', 'upload_files/candidate_tracker/17803262934_LatestCV_2021-12-29-043142.pdf', NULL, '1', '2022-01-03', 0, '', '3', '59', '2022-01-10', 288000.00, '', '3', '2022-01-12', '1', 'Selected for Pandian Team with PF/PT Deductions', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-01-03 11:38:28', 60, '2022-01-06 04:11:46', 0, NULL, 1),
(7366, 'Rajeshwari.p', '4', '9042004961', '', 'rajeshwarirajeshwari194@gmail.com', '2000-07-09', 21, '3', '2', 'Panner', 'Kuli velai', 6500.00, 2, 0.00, 10000.00, 'Kadambathur', 'Kadambathur', '2201030004', '', '1', 'upload_files/candidate_tracker/86941149853_DocScanner 03-Jan-2022 12.19 pm.pdf', NULL, '1', '2022-01-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped - Candidate didnt turn back', '1', '1', '0', '4', '6', '0', '2', '2022-01-04', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-03 11:51:52', 1, '2022-01-03 12:29:46', 0, NULL, 1),
(7367, 'Shemanithi E', '11', '9159522104', '9842498464', 'shemanithi17@gmail.com', '1997-10-17', 24, '2', '1', 'Subramanian', 'Own business', 40000.00, 1, 0.00, 15000.00, 'Sivagangai', 'Chennai', '2201030005', '1', '1', 'upload_files/candidate_tracker/86904936532_SS.pdf', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication No,REcently married,will not sustain for a long', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-03 12:37:33', 1, '2022-01-03 12:42:48', 0, NULL, 1),
(7368, 'C. Nirmala', '11', '6369088969', '', 'niladurai1999@gmail.com', '1999-07-23', 22, '2', '2', 'Chinnadurai', 'Tailor', 15000.00, 1, 0.00, 12000.00, 'Gingee', 'Tambaram', '2201030006', '1', '1', 'upload_files/candidate_tracker/70906036523_Nirmala resume-3.docx', NULL, '1', '2022-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication,will not handle the pressure and sustainability doubts', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-03 01:36:16', 64, '2022-01-03 02:40:03', 0, NULL, 1),
(7369, 'francy', '20', '9353457208', '', 'francyb7411@gmail.com', '2000-03-17', 21, '2', '2', 'benjamin', 'employee', 12000.00, 2, 0.00, 10000.00, 'yeshwanthpur', 'Yeshwanthpur', '2201030007', '1', '1', 'upload_files/candidate_tracker/66931644269_Francy.pdf', NULL, '1', '2022-01-03', 0, '', '1', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-01-03 03:15:06', 50, '2022-01-03 04:32:27', 0, NULL, 1),
(7370, 'S.Muthukumar', '31', '8072696278', '7598681726', 'muthukumarbe24@gmail.com', '2000-04-03', 21, '2', '2', 'Saravanan', 'Gold smith', 5000.00, 1, 0.00, 15000.00, 'Peravurani', 'Peravurani', '2201030008', '1', '1', 'upload_files/candidate_tracker/99712628160_RESUME24.pdf', NULL, '2', '2022-01-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-03 03:41:48', 1, '2022-01-03 03:44:48', 0, NULL, 1),
(7371, '', '0', '7978116279', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201030009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-03 06:17:26', 0, NULL, 0, NULL, 1),
(7372, 'Purna chandra gouda', '5', '8327766926', '', 'purnachandragouda1996@gmail.com', '1996-04-01', 25, '2', '2', 'Bideshi gouda', 'Farmer', 14000.00, 3, 16000.00, 20000.00, 'Odisha', 'Bangalore', '2201030010', '22', '2', 'upload_files/candidate_tracker/69302627098_Purna_Resume.docx', NULL, '1', '2022-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-03 06:17:28', 1, '2022-01-03 06:30:19', 0, NULL, 1),
(7373, '', '0', '8456861012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201030011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-03 06:22:21', 0, NULL, 0, NULL, 1),
(7374, 'R.ureka', '23', '9500265655', '', 'Urekadoll.08@gamil.com', '2001-03-16', 20, '2', '2', 'Ravichandran.p', 'EX Army', 20000.00, 0, 0.00, 15000.00, 'valangaiman, Thiruvarur Dt', 'Mount road, Chennai', '2201030012', '1', '1', 'upload_files/candidate_tracker/15251025708_ Resume_R.Ureka.pdf', NULL, '3', '2022-01-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-03 06:48:22', 1, '2022-01-03 09:44:42', 0, NULL, 1),
(7375, 'Vijay .K', '11', '8610172867', '', 'vijaysabari.k@gmail.com', '1998-06-22', 23, '2', '2', 'Kannan .R', 'Driver', 15000.00, 1, 0.00, 12000.00, 'Dindigul', 'Chennai', '2201030013', '1', '1', 'upload_files/candidate_tracker/52499153065_Resume .pdf', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication will not sustain not suitable ', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-03 07:54:09', 1, '2022-01-03 07:58:58', 0, NULL, 1),
(7376, 'G Ramaraj', '11', '9003610964', '8220523170', 'ramarajpadmavathi@gmail.com', '1996-06-10', 25, '2', '2', 'R.Gajendhiran (father)', 'Farmer', 100000.00, 1, 0.00, 12000.00, 'Pondicherry', 'Chennai', '2201040001', '1', '1', 'upload_files/candidate_tracker/12091490225_Add.pdf', NULL, '1', '2022-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,No confidence,handling Pressure Doubts will not sustain', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-04 08:38:05', 60, '2022-01-05 04:35:37', 0, NULL, 1),
(7377, 'Praveen A', '6', '7904448312', '7200240207', 'praveen.a24081998@gmail.com', '1998-08-24', 23, '2', '2', 'Karpagam A', 'Daily Wages', 126000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2201040002', '1', '1', 'upload_files/candidate_tracker/81413382940_Praveen A MBA (New) Resume.pdf', NULL, '1', '2022-01-04', 0, '', '3', '59', '1970-01-01', 185000.00, '', '2', '1970-01-01', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-04 10:39:48', 60, '2022-01-06 07:28:55', 0, NULL, 1),
(7378, 'R.Shanmuga Priyan', '4', '8870175010', '', 'shanmugapriyan1025@gmail.com', '2000-10-25', 21, '2', '2', 'Raj kumar S', 'Driver', 45000.00, 1, 10000.00, 15000.00, 'Ponneri', 'Ponneri', '2201040003', '1', '2', 'upload_files/candidate_tracker/69342263783_priyan resume 1.pdf', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Salary Exp Is Very High,Came For Interview As A Group,Will Not Join If Others Didnt Get Opportunity.Not Open For Field Sales Too Compare To The Salary Exp', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-01-04 10:43:14', 1, '2022-01-04 11:06:52', 0, NULL, 1),
(7379, 'E Raghul', '4', '7373539371', '', 'raghulragu55@gmail.com', '1998-07-30', 23, '2', '2', 'C Elumalai', 'Welder', 82000.00, 2, 10000.00, 15000.00, 'Ponneri', 'Ponneri', '2201040004', '1', '2', 'upload_files/candidate_tracker/98136920126_Raghul Resume.docx', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have a part time job as karate Coach,Salary Exp is very high,not suitable for CRM', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-01-04 10:46:24', 1, '2022-01-04 10:55:22', 0, NULL, 1),
(7380, 'C Vijaya kumar', '4', '9884907623', '', 'vijaybarathi147@gmail.com', '2000-07-14', 21, '2', '2', 'Jaya barathi', 'Tailor', 8000.00, 1, 10000.00, 15000.00, 'Ponneri', 'Ponneri', '2201040005', '1', '2', 'upload_files/candidate_tracker/80062821276_vijaya Kumar resume.pdf', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Salary Exp Is Very High,Came For Interview As A Group,Will Not Join If Others Didnt Get Opportunity.Not Open For Field Sales Too Compare To The Salary Exp', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-01-04 10:48:29', 1, '2022-01-04 10:56:16', 0, NULL, 1),
(7381, 'Ajith Kumar E', '4', '9715853060', '', 'ajithsivagami0679@gmail.com', '1996-05-28', 25, '2', '2', 'Sivagami', 'Cooli', 8000.00, 0, 12000.00, 15000.00, 'Ponneri', 'Ponneri', '2201040006', '1', '2', 'upload_files/candidate_tracker/24231629563_5_6242303629760398274.pdf', NULL, '1', '2022-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Salary Exp Is Very High,Came For Interview As A Group,Will Not Join If Others Didnt Get Opportunity.Not Open For Field Sales Too Compare To The Salary Exp', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-01-04 11:04:19', 60, '2022-01-04 03:26:16', 0, NULL, 1),
(7382, 'Aarthi.p', '4', '9025684859', '', 'aarthip1034@gmail.com', '2001-07-28', 20, '2', '2', 'Pachaidurai', 'Store', 100000.00, 2, 0.00, 15000.00, 'Thiruvallur', 'Manavalanagar', '2201040007', '1', '1', 'upload_files/candidate_tracker/97710136324_AARTHI.P_Color Format – 07.pdf', NULL, '1', '2022-01-04', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', 'Job no need,  Parents not accept to job so rejected. ', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-04 11:07:12', 1, '2022-01-04 11:28:45', 0, NULL, 1),
(7383, '', '0', '8508793982', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201040008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-04 11:22:00', 0, NULL, 0, NULL, 1),
(7384, 'Santhosh Kumar', '6', '9551763375', '9087549646', 'santhoshsandy1415@gmail.com', '1997-10-15', 24, '2', '2', 'K.durairaj', 'Auto driver', 10000.00, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2201040009', '1', '2', 'upload_files/candidate_tracker/69175385031_santhosh_resume.docx', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Non Voice Exp ,no communication, looking only for non voice process', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-04 11:37:32', 1, '2022-01-04 11:45:22', 0, NULL, 1),
(7385, 'Ajith Kumar.M', '4', '9524863015', '', '1523003@saec.ac.in', '1997-11-19', 24, '3', '2', 'Madhavan', 'Daily wages', 120000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2201040010', '', '1', 'upload_files/candidate_tracker/50796111053_AJITH RESUME.pdf', NULL, '1', '2022-01-04', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is looking for non Voice xxamp trying job IT field. Sustainability is highly doubt. So Rejected. ', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-04 11:45:17', 60, '2022-01-04 03:27:02', 0, NULL, 1),
(7386, 'prince richard', '17', '8680944161', '', 'princyrich44@gmail.com', '1996-12-23', 25, '1', '2', 'Paul samuel', 'Physical education director', 100000.00, 1, 25000.00, 25000.00, 'Chengalpattu', 'Chennai', '2201040011', '', '2', 'upload_files/candidate_tracker/53341075523_Prince Richard resume.docx', NULL, '1', '2022-01-04', 1, 'P1282', '3', '59', '2022-01-12', 300000.00, '', '6', '2022-08-01', '1', 'Selected for Sarath Team,Gaurav have given a commitment on salary revisal based on the Target achievement of 2L each for 2 months with 15%', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Link Document mail sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-04 11:57:25', 60, '2022-01-11 05:26:37', 0, NULL, 1),
(7387, 'S suriya', '22', '7449095086', '', 'suriyagoutham4@gmail.com', '1997-10-24', 24, '3', '2', 'G SELVARAJ', 'Painter', 15000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2201040012', '', '1', 'upload_files/candidate_tracker/71504288035_bba resume.pdf', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no communication, have B2B sales only, will not sustain for a long.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-04 01:06:02', 1, '2022-01-04 01:14:27', 0, NULL, 1),
(7388, 'PONNI.P', '4', '7904757180', '7305517180', 'vaayaadiabi@gmail.com', '2001-05-05', 20, '2', '2', 'Lakshmi.p', 'House keeping', 20000.00, 1, 16000.00, 15000.00, 'Tharamai', 'Anna nagar', '2201040013', '1', '2', 'upload_files/candidate_tracker/94722647411_Ponni Resume.docx', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped she didnt turn as her friend got rejected in the interview', '1', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-04 01:14:25', 1, '2022-01-04 02:42:19', 0, NULL, 1),
(7389, 'Archana G', '4', '9944203526', '6369438008', 'archanagnanavelan@gmail.com', '2001-06-18', 20, '2', '2', 'R.Gnanavelan', 'Farmer', 36000.00, 1, 16000.00, 15000.00, 'Nagapattinam', 'Anna nagar', '2201040014', '1', '2', 'upload_files/candidate_tracker/81385920276_Archana resume_Translated.docx', NULL, '1', '2022-01-04', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '1', 'not fit for telesales', '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-04 01:16:50', 1, '2022-01-04 01:27:11', 0, NULL, 1),
(7390, '', '0', '7979116279', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201040015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-04 02:16:03', 0, NULL, 0, NULL, 1),
(7391, 'Chaitra B L', '5', '8660614815', '8970549088', 'chaithralakshman26@gmail.com', '2007-01-04', 0, '2', '2', 'Lakshman.bc', 'Own business', 50.00, 1, 0.00, 20.00, 'BANGALORE', 'BANGALORE', '2201040016', '22', '1', 'upload_files/candidate_tracker/74009923695_file1.pdf', NULL, '1', '2022-01-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-04 07:06:28', 1, '2022-01-04 07:08:46', 0, NULL, 1),
(7392, 'divya', '4', '6383696396', '', 'meraclin68@gmail.com', '2000-06-02', 21, '2', '2', 'masilamani', 'employee', 11000.00, 2, 0.00, 10000.00, 'tiruvallur', 'Tiruvallur', '2201050001', '1', '1', 'upload_files/candidate_tracker/33630909401_RESUME DIVYA.pdf', NULL, '1', '2022-01-05', 0, '', '3', '59', '2022-01-06', 126000.00, '', '2', '1970-01-01', '2', 'Selected for Tiruvallur Team in Consultant 5% TDS,can give a try 5050 profile', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-05 10:11:17', 60, '2022-01-12 01:17:08', 0, NULL, 1),
(7393, 'Prabhakaran B', '4', '7338971968', '', 'prabhabaskaran96@gmail.com', '1996-01-14', 25, '3', '2', 'Baskaran', 'Mason ( Buliding work)', 12000.00, 1, 13000.00, 15000.00, 'No.6 Eswaran nagar 1st cross street Thiruverkadu', 'Chennai', '2201050002', '', '2', 'upload_files/candidate_tracker/27169616780_Prabha21.docx.pdf', NULL, '1', '2022-01-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking only for Non Voice Process,not suitable for our roles', '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-05 10:12:42', 1, '2022-01-05 10:21:36', 0, NULL, 1),
(7394, 'Sathyan D', '4', '9344815149', '9710522230', 'sathyand95@gmail.com', '1995-02-27', 26, '3', '2', 'Dharmalingam K', 'Plumber', 12000.00, 0, 13000.00, 16000.00, '4/230 nakkirar street, jJ Nagar, moggpair', 'Chennai:600037', '2201050003', '', '2', 'upload_files/candidate_tracker/40261355482_RESUME....docx', NULL, '1', '2022-01-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice or networking profile only\n', '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-05 10:13:21', 1, '2022-01-05 10:21:44', 0, NULL, 1),
(7395, 'Sivaramakrishnan V', '4', '8903510669', '', 'Sivaramkrishnan8111@gmail.com', '1995-02-18', 26, '3', '1', 'Venkasubramani', 'Chennai', 25000.00, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2201050004', '', '2', 'upload_files/candidate_tracker/4661094619_Siva Resume 143.docx', NULL, '1', '2022-01-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non voice Process only', '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-05 10:13:54', 1, '2022-01-05 10:33:46', 0, NULL, 1),
(7396, 'P. Deepika', '4', '6385948458', '', 'deepidhichu02@gmail.com', '2001-01-02', 21, '2', '2', 'A.Purushothaman', 'Father', 15000.00, 1, 8000.00, 12000.00, 'Ponneri', 'Ponneri', '2201050005', '3', '2', 'upload_files/candidate_tracker/96341068852_file_05Jan22.pdf', NULL, '1', '2022-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance not ready to relocate,will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-05 11:30:20', 60, '2022-01-05 06:41:34', 0, NULL, 1),
(7397, 'Nivetha .G', '4', '8122592626', '', 'nivethanivetha2017319@gmail.com', '2001-12-23', 20, '2', '2', 'Kumar', 'Farmer', 20000.00, 2, 8000.00, 12000.00, 'Ponneri', 'Ponneri', '2201050006', '3', '2', 'upload_files/candidate_tracker/9910204242_Add.pdf', NULL, '1', '2022-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance Not Ready To Relocate,Will Not Sustain', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-05 11:30:44', 60, '2022-01-05 06:41:21', 0, NULL, 1),
(7398, 'Ajay Anthony. P', '4', '8248299303', '', 'ajayanthony509@gmail.com', '2001-03-15', 20, '3', '2', 'Periyanayagam', 'Security', 15000.00, 2, 0.00, 14000.00, 'Padappai', 'Padappai', '2201050007', '', '1', 'upload_files/candidate_tracker/57841501257_RESUME.pdf', NULL, '1', '2022-01-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Too long Distance around 64kms up and down,will not sustain for a long', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-05 12:00:12', 1, '2022-01-05 12:10:48', 0, NULL, 1),
(7399, '', '0', '7550191566', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201050008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-05 12:55:06', 0, NULL, 0, NULL, 1),
(7400, 'janani.K', '4', '9677011430', '7305509560', 'jananikannan561@gmail.Com', '2001-06-09', 20, '2', '2', 'kannan.L', 'coolie', 80000.00, 1, 0.00, 15000.00, 'maraimalainagar', 'maraimalainagar', '2201050009', '3', '1', 'upload_files/candidate_tracker/85714376739_Janani Resume(2).pdf', NULL, '1', '2022-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Non Voice only,Speaking but sustainability Doubts on this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-05 12:57:21', 60, '2022-01-05 06:40:42', 0, NULL, 1),
(7401, 'Vinothkanna', '14', '8248528862', '', 'vinovino43198@gmail.com', '1999-05-07', 22, '2', '2', 'Murugan R', 'Cutting master', 100000.00, 3, 0.00, 20000.00, 'Dindigul', 'Pallavaram', '2201050010', '1', '1', 'upload_files/candidate_tracker/62748924492_VinothKanna-Resume.pdf', NULL, '3', '2022-01-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1008', '0', NULL, NULL, NULL, 1, '2022-01-05 02:54:58', 1, '2022-01-05 03:04:51', 0, NULL, 1),
(7402, 'Dheepeka', '11', '9087024709', '', 'deepikasre1998@gmail.com', '1998-07-07', 23, '2', '2', 'E.DHAMODHARAN', 'Emboraidery', 12000.00, 2, 12000.00, 10000.00, 'Chennai', 'Chennai', '2201050011', '1', '2', 'upload_files/candidate_tracker/46230514976_Document (2)-2.pdf', NULL, '1', '2022-01-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-05 03:50:36', 60, '2022-01-05 04:50:44', 0, NULL, 1),
(7403, '', '0', '9550821142', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201050012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-05 09:15:03', 0, NULL, 0, NULL, 1),
(7404, 'Vikas.B', '4', '9789829206', '', 'b.vikash.2000@gmail.com', '2000-04-15', 21, '1', '2', 'Sankari.b', 'Eletrition', 12000.00, 1, 12000.00, 15000.00, 'Chennai', 'chennai', '2201060001', '', '2', 'upload_files/candidate_tracker/80116505884_B.VIKAS - RESUME(2).pdf', NULL, '1', '2022-01-06', 2, 'Jops', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Salary Exp is High,not open for Field Sales,Will not Sustain', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-06 10:10:58', 1, '2022-01-06 10:32:46', 0, NULL, 1),
(7405, 'DINESH KUMAR SRINIVASAN', '4', '9840271059', '8124266297', 'RDJ8553@GMAIL.COM', '1998-01-04', 24, '2', '2', 'Geetha lakshmi', 'House wife', 15000.00, 1, 12000.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2201060002', '1', '2', 'upload_files/candidate_tracker/30908668305_Dinesh_Kumar_Resume.pdf', NULL, '1', '2022-01-06', 0, '', '3', '59', '2022-01-10', 126312.00, '', '2', '1970-01-01', '1', 'Selected for Tiruvallur Location in consultant role', '1', '2', '', '4', '6', '', '2', '1970-01-01', '2', '9', 'Offer MAil Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-01-06 11:16:54', 60, '2022-01-12 03:06:36', 0, NULL, 1),
(7406, '', '0', '9655995988', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201060003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-06 12:44:49', 0, NULL, 0, NULL, 1),
(7407, 'Nithin Y', '5', '7010769364', '8428391452', 'Nitinhunt1999@gmail.com', '1999-01-13', 22, '3', '2', 'Jothi Lakshmi', 'Tutor', 20000.00, 1, 24000.00, 24000.00, 'Chennai', 'chennai', '2201060004', '', '2', 'upload_files/candidate_tracker/27163149536_1250166000052611 _ 18-AUG-2020_17-SEP-2020(1).pdf', NULL, '1', '2022-01-06', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'Not fit for this profile\n', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-06 01:18:37', 1, '2022-01-06 02:39:25', 0, NULL, 1),
(7408, 'Revathi.M', '4', '9790659068', '6381377331', 'revathimanickavelu95@gmail.c', '1995-12-18', 26, '3', '2', 'Devasena', 'no', 10000.00, 2, 10000.00, 18000.00, 'Dharmapuri', 'chennai', '2201070001', '', '2', 'upload_files/candidate_tracker/47559639887_REVATHI.RESUME-converted(1).pdf', NULL, '1', '2022-01-07', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is average, looking for system admin roles, will not sustain for a long', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-07 10:00:17', 1, '2022-01-07 10:10:34', 0, NULL, 1),
(7409, 'Bala vignesh', '6', '9176222216', '', 'Findtoreachme@gmail.com', '1995-10-02', 26, '2', '2', 'Jeganathan', 'Tailor', 25000.00, 1, 16000.00, 17500.00, 'Velachery', 'Velachery', '2201070002', '1', '2', 'upload_files/candidate_tracker/76434109624_0_Resume...pdf', NULL, '1', '2022-01-07', 0, '', '3', '59', '1970-01-01', 240000.00, '', '2', '1970-01-01', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-01-07 11:06:01', 60, '2022-01-08 09:56:23', 0, NULL, 1),
(7410, 'Deepalakshmi A', '4', '9626975287', '7097188367', 'Lakshmideepa0307@gmail.com', '1996-07-03', 25, '2', '2', 'Arivalakan', 'Formar', 25000.00, 2, 19000.00, 19000.00, 'Medavakkam', 'Medavakkam', '2201070003', '1', '2', 'upload_files/candidate_tracker/92720863258_DEEPALAKSHMI Resume.pdf', NULL, '1', '2022-01-07', 0, '', '3', '59', '2022-01-10', 138948.00, '', '3', '2022-05-02', '2', 'Selected for Priyanka Jenit Team in Consultant Role - 5% TDS', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-07 11:19:31', 60, '2022-01-07 06:30:56', 0, NULL, 1),
(7411, 'J.deepan kumar', '6', '8220527160', '', 'vjdeepan97@gmail.com', '1998-05-20', 23, '2', '2', 'P.jeeva rathinam', 'Load man', 20000.00, 1, 15000.00, 15000.00, 'No 1/2 4th lane andiappan street old Washermenpet', 'Chennai', '2201070004', '1', '2', 'upload_files/candidate_tracker/33929856183_deepan.docx', NULL, '1', '2022-01-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Sales/Telecaller Exp,Low BP,will not handle our pressure,not open to take the targets xxamp pressure', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-07 11:51:09', 58, '2022-01-07 12:14:35', 0, NULL, 1),
(7412, 'mohammed aashiq', '11', '8939309890', '6369351652', 'smartaashiq1997@gmail.com', '2007-01-07', 0, '2', '2', 'haneef', 'studying', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2201070005', '1', '1', 'upload_files/candidate_tracker/49585019871_Md Aashiq CV-converted.pdf', NULL, '1', '2022-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2022-01-07 12:35:05', 1, '2022-01-07 12:39:33', 0, NULL, 1),
(7413, 'SK. AJMAL', '4', '8015409785', '', 'ajmalche03@gmail.com', '1998-07-03', 23, '2', '2', '7200775578', 'Fresher', 15000.00, 3, 0.00, 15000.00, 'No.26, V.M.X.complex, M.P.C.Nagar, Gummidipundi', 'No.26, V.M.X. complex, M.P.C.Nagar, Gummidipundi', '2201070006', '1', '1', 'upload_files/candidate_tracker/87700057290_Ajmal resume(1).pdf', NULL, '1', '2022-01-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance no Telecaller Exp only retail store Exp,Will not sustain', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-01-07 01:21:11', 1, '2022-01-07 01:30:13', 0, NULL, 1),
(7414, 'Ramar G', '5', '8248380232', '7639862064', 'ramgv092@gmail.com', '1992-05-05', 29, '1', '2', 'Ganesan', 'Wages', 5000.00, 1, 19000.00, 25000.00, 'Kallakurichi', 'Chennai', '2201070007', '', '2', 'upload_files/candidate_tracker/88349497672_Ramar G Resume new 2022.docx', NULL, '1', '2022-01-07', 0, '55641', '3', '59', '2022-01-19', 299999.00, '', NULL, '2023-11-25', '1', 'Selected for Pandian Team,Candidate Exp is high,Team manager should give a mail commitment with the target based increment', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', 'Offer Link mail shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-07 02:55:44', 60, '2022-01-18 06:11:55', 0, NULL, 1),
(7415, 'R. Vigneshwaran', '4', '9788194404', '', 'vickycriz4322@gmail.com', '1997-10-19', 24, '2', '2', 'Rajamani p', 'Bank security', 15000.00, 1, 15000.00, 20000.00, 'Bodinayakanur', 'Ayyanavaram', '2201070008', '1', '2', 'upload_files/candidate_tracker/80742652622_VIGNESHWARAN.R-converted (1).pdf', NULL, '1', '2022-01-08', 0, '', '3', '59', '2022-01-10', 132000.00, '', '', '2022-01-21', '1', 'selected for  muthu team  in consultant role for 5% TDS', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-07 03:24:50', 60, '2022-01-08 05:28:56', 0, NULL, 1),
(7416, 'SAKTHI P', '4', '7094369475', '', 'sharmasakthi850@gmail.com', '1997-06-04', 24, '2', '2', 'Palanivel S', 'Agriculture', 10000.00, 0, 0.00, 15000.00, 'Gandravakkottai', 'Gandravakkottai', '2201070009', '1', '1', 'upload_files/candidate_tracker/20951233170_RESUME IJK-converted (2).pdf', NULL, '1', '2022-01-07', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-07 03:53:05', 58, '2022-01-07 06:34:38', 0, NULL, 1),
(7417, 'thilagavathy', '4', '9360046992', '', 'thilaga2330bhada@gmail.com', '2007-01-08', 0, '2', '2', 'rani', 'working', 10000.00, 1, 9000.00, 11000.00, 'Tiruvallur', 'Tiruvallur', '2201080001', '1', '2', 'upload_files/candidate_tracker/52714744160_G.THILAGAVATHI-Resume.pdf', NULL, '1', '2022-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-08 09:58:07', 1, '2022-01-08 10:01:06', 0, NULL, 1),
(7418, 'vijay', '6', '8608326387', '', 'vijaykrishnan578@gmail.com', '1998-08-08', 23, '2', '2', 'chandrasekar', 'carpenter', 10000.00, 4, 0.00, 12000.00, 'guduvanchery', 'ashok nagar', '2201080002', '1', '1', 'upload_files/candidate_tracker/14914129223_Resume.C.Vijay.docx.pdf', NULL, '1', '2022-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-08 10:07:51', 1, '2022-01-08 10:10:58', 0, NULL, 1),
(7419, 'saravana kumar', '11', '7603949143', '', 'rajsaravana999@gmail.com', '1997-04-24', 24, '2', '2', 'kannan', 'working', 10000.00, 1, 0.00, 10000.00, 'theni', 'theni', '2201080003', '1', '1', 'upload_files/candidate_tracker/37638376268_Resume 1 (1).pdf', NULL, '2', '2022-01-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Completed his graduation in 2019 and have exp in different domains, looking for  HR  position and the salary Exp is very high.We should consider this candidate as  a fresher only with Internship,Will not sustain,not much comfort with TxxampC.. Had a telephoinic discussion. Sustainability doubts a lot', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-08 10:14:49', 1, '2022-01-08 10:18:38', 0, NULL, 1),
(7420, 'Marella.Hema Durga Kalyani', '25', '9392399905', '9652455539', 'hemamarella111@gmail.com', '2000-02-18', 21, '2', '2', 'M.Sujatha', 'Self-employe', 12000.00, 1, 15000.00, 21000.00, 'At Aghraharam 11th Line,Ap, Guntur', 'At Aghraharam 11thline, Guntur', '2201080004', '22', '2', 'upload_files/candidate_tracker/42159466359_HDK_RESUME_HR.pdf', NULL, '2', '2022-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-08 11:21:48', 1, '2022-01-08 02:02:16', 0, NULL, 1),
(7421, 'Syed Fahad Hussain', '5', '9550462912', '', 'sfahadhussain91@gmail.com', '1992-08-16', 29, '2', '2', 'syed ahamed', 'sales executive', 30000.00, 2, 15000.00, 20000.00, 'hyderabad', 'hyderabad', '2201080005', '1', '2', 'upload_files/candidate_tracker/86676824961_Fahad\'s.docx', NULL, '2', '2022-01-08', 0, '', '4', '40', NULL, 0.00, '', '0', NULL, '1', 'Candidate communication is good, degree incomplete and there is no sustainability in the previous exp. Have worked in retail store B2C/B2B.Salary Exp is ok, but there is no set of salary proof for previous experiences. Can be trained 50/50 profile. Have a bike but no laptop and he canxquott arrange it. He is available for F2F next week by Tuesday. Let Veben have a round of interview and decide on the profile.', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-08 12:04:37', 1, '2022-01-08 12:08:49', 0, NULL, 1),
(7422, 'K Vishwa Priya', '20', '8015306770', '', 'priyakp690@gmail.com', '1999-05-16', 22, '2', '2', 'Kumar s', 'Business', 50000.00, 1, 12000.00, 15000.00, 'Madhavaram', 'Madhavaram', '2201080006', '1', '2', 'upload_files/candidate_tracker/1868176460_RESUME vp(1).pdf', NULL, '1', '2022-01-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'have exp in both voice and non voice, sustaianability doubt as she is getting married in the month of march,also much prefers to work in non voice', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-08 12:35:39', 1, '2022-01-08 12:44:06', 0, NULL, 1),
(7423, 'Santhiya', '4', '8056418538', '', 'Santhyasuresh2707@gmail.com', '2000-07-27', 21, '2', '2', 'Suresh', 'Formar', 18000.00, 2, 13500.00, 15000.00, 'Tirunelveli', 'Mugapair west', '2201080007', '1', '2', 'upload_files/candidate_tracker/47752492581_santhiya resume 2021-1.pdf', NULL, '1', '2022-01-08', 0, '', '3', '59', '2022-01-10', 132000.00, '', '2', '1970-01-01', '2', 'Selected for Priyanka Jenit Elite PRofile in Consultant Role TDS 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-08 12:49:30', 60, '2022-01-12 03:05:51', 0, NULL, 1),
(7424, 'M.HemaDurga kalyani', '25', '6300515679', '9392399905', 'hemamarella111@gmail.com', '2000-02-18', 21, '2', '2', 'M Sujatha', 'Self employe', 15000.00, 1, 15000.00, 20000.00, 'At Aghraharam 11th line, Guntur', 'At Aghraharam 11th line, Guntur', '2201080008', '22', '2', 'upload_files/candidate_tracker/16742792334_HDK_RESUME_HR.pdf', NULL, '2', '2022-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-08 04:22:34', 1, '2022-01-08 04:26:43', 0, NULL, 1),
(7425, 'P.kaviya', '4', '9080528856', '9445646379', 'kaviya15p@gmail.com', '1999-11-15', 22, '2', '2', 'Parent', 'Tea stall', 100000.00, 1, 11500.00, 13000.00, 'Chengalpattu', 'Kodambakkam', '2201080009', '1', '2', 'upload_files/candidate_tracker/4791861094_NEW2.docx', NULL, '1', '2022-01-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,Pressure handling doubts on this profile,timing she was not comfortable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-08 05:27:37', 60, '2022-01-11 07:03:51', 0, NULL, 1),
(7426, 'H HASHIM AHMED', '4', '8220663979', '', 'www.hashimahmed4047@gmail.com', '2001-07-28', 20, '2', '2', 'Hilal ahmed', 'Labour', 10000.00, 2, 15000.00, 16000.00, 'chennai', 'chennai', '2201080010', '1', '2', 'upload_files/candidate_tracker/72431101091_resume of Hash.pdf', NULL, '1', '2022-01-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2022-01-08 05:39:31', 1, '2022-01-10 10:37:28', 0, NULL, 1),
(7427, '', '0', '9177935936', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-09 10:31:19', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7428, 'P.sivasurya', '4', '6383814240', '', 'sivasurya1631999@gmail.com', '1999-03-16', 22, '2', '2', 'R.pichaimuthu', 'Farmer', 15000.00, 1, 0.00, 10000.00, 'Peravurani', 'Peravurani', '2201090002', '1', '1', 'upload_files/candidate_tracker/13315243248_Surya .pdf', NULL, '1', '2022-01-13', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-09 01:29:49', 58, '2022-01-17 06:19:28', 0, NULL, 1),
(7429, '', '0', '7338707260', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201100001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-10 10:02:12', 0, NULL, 0, NULL, 1),
(7430, '', '0', '8682851842', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201100002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-10 10:22:53', 0, NULL, 0, NULL, 1),
(7431, 'Shruthi s', '4', '7868941550', '', 'shruthi1550@gmail.com', '1995-06-22', 26, '1', '2', 'Nalini d', 'Teacher', 30000.00, 0, 0.00, 12500.00, 'Thanjavur', 'Thanjavur', '2201100003', '', '2', 'upload_files/candidate_tracker/57889422588_CV_2021-04-21-114241.pdf', NULL, '1', '2022-01-10', 0, 'Priyanka', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped,she already holds IRDA,currently workin in tata AIA,not interested', '1', '1', '0', '4', '5', '0', '2', '2022-01-11', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-10 10:48:24', 1, '2022-01-10 10:53:34', 0, NULL, 1),
(7432, 'R Monisha', '11', '9514332128', '8682851842', 'mssbrwnng@gmail.com', '1999-08-03', 22, '2', '2', 'K. s. Ravikumar', 'Real estate business', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2201100004', '1', '1', 'upload_files/candidate_tracker/40768400921_Browny.pdf', NULL, '1', '2022-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non Voice only,but no Exp in Excel ', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-10 10:50:16', 1, '2022-01-10 11:10:00', 0, NULL, 1),
(7433, 'Ganesh k', '6', '7092251887', '8807723071', 'Ganesh19972233@gmail.com', '1997-12-22', 24, '2', '2', 'Valli k', 'Home Maker', 20000.00, 1, 12500.00, 15000.00, '4/300 neathaji st , pallavana nagar, chennai', '4/300 neathaji st , pallavana nagar,Chennai', '2201100005', '1', '2', 'upload_files/candidate_tracker/9938355246_Ganesh rusume-1.pdf', NULL, '1', '2022-01-10', 15, '', '3', '59', '2022-01-11', 186000.00, '', '4', '2022-01-28', '1', 'Selected for Syed Team with PF/ESI/PT deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Mail Link', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-10 11:52:57', 60, '2022-01-10 05:25:24', 0, NULL, 1),
(7434, 'david', '6', '7305736455', '', 'davidmaran512@gmail.com', '2000-12-05', 21, '2', '2', 'maran', 'real estate', 40000.00, 0, 0.00, 12000.00, 'Perambur', 'Perambur', '2201100006', '1', '1', 'upload_files/candidate_tracker/20429155209_original resume.pdf', NULL, '1', '2022-01-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-10 11:59:40', 1, '2022-01-10 12:03:23', 0, NULL, 1),
(7435, 'Aishwareya', '5', '8861487754', '', 'sathaishu03@gmail.com', '1995-06-03', 26, '2', '2', 'sitrarasan', 'electrician', 20000.00, 1, 15000.00, 20000.00, 'banglore', 'Banglore', '2201100007', '1', '2', 'upload_files/candidate_tracker/50322639090_Aishwareya.C resume.pdf', NULL, '2', '2022-01-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Continuous RNR Dropped', '5', '1', '', '2', '2', '', '2', '2022-01-11', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-10 01:02:11', 58, '2022-01-10 01:26:53', 0, NULL, 1),
(7436, 'Saravana Moorthy N', '11', '7299667136', '9941067196', 'saravanamoorthy.n.10@gmail.com', '1995-10-10', 26, '2', '2', 'Shanthi N', 'House Wife', 18000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2201100008', '1', '2', 'upload_files/candidate_tracker/22668757582_Saravana 2021.docx', NULL, '1', '2022-01-11', 20, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Average Communication no ideas in the recruitment,Not comfort on TxxampC,Will not Sustain for a long', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-10 01:28:22', 1, '2022-01-10 01:35:26', 0, NULL, 1),
(7437, '', '0', '7993048127', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201100009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-10 03:32:16', 0, NULL, 0, NULL, 1),
(7438, 'Nargis Shaik', '32', '9849318017', '', 'nargiswagon@yahoo.co.in', '1979-01-03', 43, '3', '1', 'Wajeed Shaik', 'Business', 200000.00, 2, 1180000.00, 500000.00, 'Hyderabad', 'Hyderabad', '2201100010', '', '2', 'upload_files/candidate_tracker/75785174515_Nargis Khan Resume.docx', NULL, '3', '2022-01-10', 0, '', '3', '59', '2022-01-17', 400000.00, '', '6', '2022-04-26', '1', 'Selected for Partner Channel-Hyderabad direct reporting to Suresh Sir Level 1 xxamp2', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-10 03:40:46', 60, '2022-01-17 10:42:25', 0, NULL, 1),
(7439, 'hema r', '4', '9677536708', '9442357558', 'hemasmart78@gmail.com', '1996-06-07', 25, '2', '2', 'raja p', 'farmer', 25000.00, 2, 10000.00, 15000.00, 'namakkal', 'namakkal', '2201100011', '1', '2', 'upload_files/candidate_tracker/53772101336_R Hema Resume.pdf', NULL, '3', '2022-01-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-10 06:07:33', 1, '2022-01-10 06:37:30', 0, NULL, 1),
(7440, 'Schelsia .J', '11', '8778352984', '8525993321', 'jayanthschelsia@gmail.com', '2000-07-06', 21, '2', '2', 'Jayanth .A', 'Dance choreographer', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2201100012', '1', '1', 'upload_files/candidate_tracker/76493151809_orginal resume .docx', NULL, '1', '2022-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Scheduled for 2nd round with Karthika,but left without attending as her friend got rejected in the final round', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-10 08:41:10', 1, '2022-01-12 08:46:17', 0, NULL, 1),
(7441, 'subash', '5', '8124016620', '', 'subhashrandy.45@gmail.com', '2007-01-11', 0, '2', '2', 'udaikumar', 'business', 40000.00, 1, 25000.00, 25000.00, 'ecr', 'Ecr', '2201110001', '1', '2', 'upload_files/candidate_tracker/64085076328_CURRICULUM VITAE.pdf', NULL, '1', '2022-01-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-11 09:56:42', 1, '2022-01-11 10:04:41', 0, NULL, 1),
(7442, 'suresh', '5', '7812879463', '', 'thamizhpaiyan001@gmail.com', '2000-05-23', 21, '2', '2', 'murugan', 'farmer', 25000.00, 1, 13000.00, 18000.00, 'chennai', 'Chennai', '2201110002', '1', '2', 'upload_files/candidate_tracker/62424440331_SH_01_RESUME[1].pdf', NULL, '1', '2022-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude,no sustainability with the previous Exp,fresher for our sales,not ready to relocate distance around 40kms up and down', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-11 10:20:19', 1, '2022-01-11 10:24:00', 0, NULL, 1),
(7443, 'Sharmila.j', '4', '7397445576', '9962528854', 'Sharmilajaishankar11032001@gmail.com', '2001-03-11', 20, '2', '2', 'Suganthi.j', 'House wife', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2201110003', '1', '1', 'upload_files/candidate_tracker/54133149557_1250166000052611 _ 18-AUG-2020_17-SEP-2020(1).pdf', NULL, '1', '2022-01-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Nonvoice and much prefers to work in the same domain,for time being open for Voice Process,Will not sustain for a long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-11 10:50:13', 58, '2022-01-11 11:30:42', 0, NULL, 1),
(7444, 'Saranya.g', '4', '9962316159', '7448738258', 'saro79532@gmail.com', '2000-04-29', 21, '2', '2', 't.gopalakrishnan', 'Security mam', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2201110004', '1', '1', 'upload_files/candidate_tracker/16885931817_G.saranya 3rd year B.sc Maths.pdf', NULL, '1', '2022-01-11', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales and expected salary also high', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-11 10:51:05', 58, '2022-01-11 11:40:49', 0, NULL, 1),
(7445, 'sivasankari.m', '5', '9176172647', '9884632027', 'sivasankarimanikandan92@gmail.com', '1992-12-02', 29, '2', '1', 'manikandan.j', 'admin executive', 20000.00, 2, 20000.00, 21000.00, 'chennai', 't.nagar', '2201110005', '22', '2', 'upload_files/candidate_tracker/1065719832_Sivasankari_Resume.pdf', NULL, '1', '2022-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-11 11:59:50', 1, '2022-01-11 12:15:08', 0, NULL, 1),
(7446, 'AbineshMarjalinRC', '4', '6383326140', '9043440559', 'abineshmarjalin2000@gmail.com', '2000-07-01', 21, '2', '2', 'RajaSinghM', 'Daily wages', 20000.00, 2, 14500.00, 15000.00, 'Avadi', 'Avadi', '2201110006', '1', '2', 'upload_files/candidate_tracker/93738327709_10e80d5e-ae2e-4848-95b9-d50119f8160a1630415600878Resume_Abinesh (3) (1).pdf', NULL, '1', '2022-01-11', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up,handling pressure no, Came along with her sister, if she didnt join he wont.Will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-11 12:21:35', 60, '2022-01-11 04:16:54', 0, NULL, 1),
(7447, 'Ajisha Marjalin R C', '11', '6374175545', '9043440559', 'ajishamarjalin25@gmail.com', '1999-03-25', 22, '2', '2', 'M. Raja Singh', 'Daily Wages', 20000.00, 2, 0.00, 14000.00, 'Morai', 'Morai', '2201110007', '1', '1', 'upload_files/candidate_tracker/21849613209_Ajisha_Marjalin__1628501176157.docx', NULL, '1', '2022-01-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Handling Pressure No,No basic knowledge in terms of skills,not suitable ', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-11 12:25:02', 60, '2022-01-11 04:17:38', 0, NULL, 1),
(7448, '', '0', '8056811977', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-11 12:34:01', 0, NULL, 0, NULL, 1),
(7449, 'sivakumar', '5', '9840272119', '', 'smartsathish60@gmail.com', '1994-07-01', 27, '2', '2', 'kanchana', 'ouse wife', 30000.00, 1, 15500.00, 20000.00, 'chennai', 'chennai', '2201110009', '1', '2', 'upload_files/candidate_tracker/92677103807_SIVAKUMAR.docx', NULL, '1', '2022-01-11', 7, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Final Round interviewed by Gaurav Sir and the Profile has been rejected. Will not sustain and not fit in our company roles. Seems to have much false communications.', '5', '1', '', '1', '1', '', '1', '2022-01-12', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-11 12:52:40', 60, '2022-01-12 02:32:51', 0, NULL, 1),
(7450, '', '', '', '', '', '1970-01-01', 0, '', '', '', '', 0.00, 0, 0.00, 0.00, '', '', '', '', '', '', NULL, '', '1970-01-01', 0, '', '6', '0', NULL, 0.00, '', '3', '2024-07-30', '', NULL, '', '2', '0', '', '', '0', '1', NULL, '', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-11 01:16:47', 1, '2022-01-11 01:19:08', 0, NULL, 1),
(7451, 'Ramkumar', '5', '8668194844', '', 'ramkumar.k8383@gmail.com', '1994-02-18', 27, '2', '2', 'karupaiya', 'passed away', 13000.00, 1, 13000.00, 18000.00, 'theni', 'theni', '2201110010', '1', '2', 'upload_files/candidate_tracker/77634661520_891b8008-9c2c-469d-a43b-cf388caa40a6resume_ramkumar__1_.docx', NULL, '2', '2022-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate no Response', '5', '1', '0', '1', '1', '0', '2', '2022-01-12', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-11 01:20:57', 1, '2022-01-11 01:24:23', 0, NULL, 1),
(7452, 'praveenraj k', '4', '9884446498', '9791067550', 'praveensss55559@gmail.com', '2000-01-06', 22, '1', '2', 'magesh', 'sintex', 18000.00, 1, 0.00, 10000.00, 'urapakkam', 'urapakkam', '2201110011', '', '1', 'upload_files/candidate_tracker/11111733851_pravennraj 2.pdf', NULL, '1', '2022-01-11', 0, 'p1002', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long distance ,no exp Fresher for telecaller,need to open up a lot,much comfort in non voice ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-11 02:32:11', 1, '2022-01-11 02:39:00', 0, NULL, 1),
(7453, 'S. vigneshwaran', '4', '8610832336', '7358020565', 'Anishmaha7602@gmail.com', '1999-10-27', 22, '1', '2', 'Manjula. S', 'System management', 15000.00, 1, 0.00, 11000.00, 'Urapakkam', 'Urapakkam', '2201110012', '', '1', 'upload_files/candidate_tracker/54472393880_Aneesh Resume-1.pdf', NULL, '1', '2022-01-11', 0, 'P1002', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non Voice process,will not sustain\n', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-11 02:33:06', 1, '2022-01-11 02:39:51', 0, NULL, 1),
(7454, 'Kalpana k', '4', '8220110701', '9566462033', 'dineshkarthick3117@gmail.com', '2000-03-13', 21, '2', '2', 'Kalimuthu S', 'Flower shop', 15000.00, 1, 0.00, 15000.00, 'Kanchipuram', 'Kanchipuram', '2201110013', '1', '1', 'upload_files/candidate_tracker/70145684768_KALPANA K.docx', NULL, '1', '2022-01-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance from chengalpet,,Preparing for the bank exams,focus is on the govt jobs only,time being looking for openings,will not sustain in a long run,fresher\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-11 02:38:03', 60, '2022-01-11 04:42:33', 0, NULL, 1),
(7455, 'H.Mythili', '4', '8248986176', '8610595850', 'mythilihemraj@gmail.com', '1994-11-25', 27, '4', '2', 'K.Hemraj', 'Business', 20000.00, 1, 15000.00, 20000.00, 'No.40, Ponnappa street,purasiwalkam,chennai-84', 'Chennai', '2201110014', '', '2', 'upload_files/candidate_tracker/10850393576_1250166000052611 _ 18-JUL-2020_17-AUG-2020.pdf', NULL, '1', '2022-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'She was into teaching and now open for voice/Non voice process,Interested to work much in the non pressure areas will not sustain for along', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-11 02:54:04', 1, '2022-01-11 03:06:28', 0, NULL, 1),
(7456, '', '0', '8838695120', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201110015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-11 03:05:19', 0, NULL, 0, NULL, 1),
(7457, 'RAJ KU MAR.S', '11', '7358240198', '', 'maniraj8363@gmail.com', '1998-06-12', 23, '2', '2', 'M.Sekar.', 'Catring service.', 15000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2201110016', '1', '2', 'upload_files/candidate_tracker/92461026544_raj profile.pdf', NULL, '1', '2022-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge in the recruitment,Pressure handling Doubt,Will not sustain', '6', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-11 03:34:41', 1, '2022-01-12 04:05:23', 0, NULL, 1),
(7458, 'Gowtham D', '11', '7904355372', '', 'dgowtham287@gmail.com', '2000-04-01', 21, '2', '2', 'Na', 'Na', 240000.00, 1, 165964.00, 300000.00, 'Chennai', 'Chennai', '2201110017', '1', '2', 'upload_files/candidate_tracker/54413863579_New Resume_Gowtham.pdf', NULL, '1', '2022-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate didnt come back and got another offer too', '6', '2', '0', '1', '1', '0', '2', '2022-01-13', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-11 05:42:29', 1, '2022-01-11 05:53:33', 0, NULL, 1),
(7459, 'DHARMESH. B', '11', '8056141841', '', 'bdharmeshrao@gmail.com', '1999-04-13', 22, '2', '2', 'G. Babu rao', 'OFFICE BOY(CHENNAI FORD)', 8000.00, 1, 0.00, 23000.00, 'CHENNAI', 'CHENNAI', '2201110018', '1', '2', 'upload_files/candidate_tracker/16647338561_1st edited work resume 1.pdf', NULL, '1', '2022-01-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-11 06:30:05', 1, '2022-01-11 06:36:37', 0, NULL, 1),
(7460, 'Sanjanaa.S', '4', '9841013396', '9150992410', 'sanjuusann0110@gmail.com', '2001-10-10', 20, '2', '2', 'Shanthi', 'Student', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2201110019', '14', '1', 'upload_files/candidate_tracker/27903035407_Sanjanaa_1641889564081 (1).pdf', NULL, '1', '2022-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-11 09:22:37', 1, '2022-01-11 09:41:03', 0, NULL, 1),
(7461, '', '0', '7338947734', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201110020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-11 09:30:28', 0, NULL, 0, NULL, 1),
(7462, '', '0', '7904052783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201120001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-12 08:55:48', 0, NULL, 0, NULL, 1),
(7463, 'Muthumari M', '4', '9361972098', '', 'muthumurugesan14@gmail.com', '1996-01-14', 25, '2', '1', 'surya', 'supervisor', 22000.00, 2, 15000.00, 15000.00, 'thiruvallur', 'Thiruvallur', '2201120002', '1', '2', 'upload_files/candidate_tracker/96448815588_MUTHUMARI M New.pdf.PDF', NULL, '1', '2022-01-12', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'expected salary  very high and try to job for IT company.  rejected.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-12 09:45:41', 58, '2022-01-12 02:33:56', 0, NULL, 1),
(7464, 'B.Mohsin', '11', '7550276400', '', 'jobimohsin@gmail.com', '2001-10-02', 20, '1', '2', 'Parent', 'Account clerk', 1200000.00, 2, 0.00, 15000.00, 'No 19/2 nainiappan garden old washermenpet ch21', 'No 19/2 nainiappan garden old washermenpet ch21', '2201120003', '', '1', 'upload_files/candidate_tracker/14155485251_imgtopdf_1201221041013.pdf.pdf', NULL, '1', '2022-01-12', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'College yet to complete, Will not sustain for a long,need to open up a lot\n', '6', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-12 10:32:25', 1, '2022-01-12 10:44:17', 0, NULL, 1),
(7465, 'Pragadish G', '4', '8525099432', '8608854188', 'pragadish1234@gmail.com', '1999-08-16', 22, '1', '2', 'GNANASEKARAN D', 'Farmer', 40000.00, 2, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2201120004', '', '1', 'upload_files/candidate_tracker/91012317642_RESUME.docx', NULL, '1', '2022-01-12', 0, 'P1002', '3', '59', '2022-01-17', 132000.00, '', '3', '2022-02-01', '1', 'Selected for Sithyvinayagam Team in consultant mode - 5% TDS', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-12 01:13:19', 60, '2022-01-15 12:41:36', 0, NULL, 1),
(7466, 'vijaykumar', '6', '9940896315', '', 'vijayvenkar3010@gmail.com', '1999-10-30', 22, '2', '2', 'venkat', 'tailor', 15000.00, 1, 0.00, 12000.00, 'st.thomas mount', 'St.Thomas Mount', '2201120005', '1', '1', 'upload_files/candidate_tracker/83782103739_Adobe Scan Jan 12, 2022.pdf', NULL, '1', '2022-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the interview', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-12 02:28:23', 1, '2022-01-12 02:31:37', 0, NULL, 1),
(7467, 'S.Ramki', '4', '9047975081', '9940896315', 'ramkiram121@gmail.com', '1999-09-13', 22, '2', '2', 'Sivaperumal', 'Office clerk', 15000.00, 0, 0.00, 10000.00, 'Tambaram', 'Tambaram', '2201120006', '1', '1', 'upload_files/candidate_tracker/31039810894_ram resume.pdf', NULL, '1', '2022-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-12 02:29:47', 1, '2022-01-12 03:50:38', 0, NULL, 1),
(7468, 'Rathi priya', '4', '7539906768', '8754836768', 'priyadhanapal0299@gmail.com', '1999-07-20', 22, '1', '2', 'Do. P.Dhanapal', 'Cylinder suplier', 25000.00, 1, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2201120007', '', '1', 'upload_files/candidate_tracker/33551538264_rathi priya NEW RESUME.docx', NULL, '1', '2022-01-12', 0, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-12 03:18:20', 1, '2022-01-12 03:24:15', 0, NULL, 1),
(7469, 'Rathi priya', '4', '7539906767', '8754836768', 'priyadhanapal0299@gmail.com', '1999-07-20', 22, '1', '2', 'Dhanapal', 'Cylinder suplier', 25000.00, 1, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2201120008', '', '1', 'upload_files/candidate_tracker/58184444378_rathi priya NEW RESUME.docx', NULL, '1', '2022-01-12', 0, 'P1023', '3', '59', '2022-01-17', 126312.00, '', '3', '2022-03-01', '2', 'Selected for Sithy Thanjavur Team in Consultant 5%', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-12 03:25:35', 60, '2022-01-17 06:32:27', 0, NULL, 1),
(7470, 'bhavani', '4', '7358561143', '', 'sbbhavani43@gmail.com', '2000-10-24', 21, '2', '2', 'subramani', 'daily wages', 9000.00, 2, 0.00, 10000.00, 'royapuram', 'Royapuram', '2201120009', '1', '1', 'upload_files/candidate_tracker/82188284980_New Resume bhavani.pdf', NULL, '1', '2022-01-12', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for this profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-12 03:51:48', 60, '2022-01-12 06:04:28', 0, NULL, 1),
(7471, 'Mohanprasad D', '31', '9566086520', '', 'mohanprasad2798@gmail.com', '1998-07-27', 23, '2', '2', 'Dhanasekaran', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2201130001', '1', '1', 'upload_files/candidate_tracker/29809818370_mohanprasad.pdf', NULL, '1', '2022-01-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-13 10:23:54', 1, '2022-01-13 10:29:33', 0, NULL, 1),
(7472, 'priyanaka', '4', '8270638801', '', 'priyaavel@gmail.com', '1998-01-08', 24, '2', '2', 'chitravel', 'farmer', 16000.00, 2, 0.00, 10000.00, 'Thiruvarur', 'medavakkam', '2201130002', '1', '1', 'upload_files/candidate_tracker/19144979463_1642049778190_RESUME - prianka.pdf', NULL, '1', '2022-01-13', 0, '', '5', '83', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-13 10:28:34', 58, '2022-01-13 10:35:25', 0, NULL, 1),
(7473, 'Yoogesh', '6', '9500105677', '', 'yoogeshss@gmail.com', '1998-07-25', 23, '2', '2', 'Siva kumar .b.s', 'Self employed', 155000.00, 1, 0.00, 15000.00, '17 singarayan street metha nagar ii', 'Chennai', '2201130003', '1', '1', 'upload_files/candidate_tracker/4075133058_resume.doc', NULL, '1', '2022-01-13', 0, '', '3', '59', '2022-01-17', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team with PF/ESI.But candidate seems to be doubtful,need to analyse in 7 Days,', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-13 10:43:00', 60, '2022-01-15 01:10:08', 0, NULL, 1),
(7474, 'Harish s', '6', '7550153302', '9840873872', 'harishmaddy23@gmail.com', '2000-04-23', 21, '2', '2', 'Kalaivani', 'Business', 40000.00, 1, 12000.00, 15000.00, 'No 304 Dblock amaraprakash heritage chrompet', 'Chrompate', '2201130004', '1', '2', 'upload_files/candidate_tracker/31753722782_1642049778190_RESUME_-_prianka.pdf', NULL, '1', '2022-01-13', 0, '', '3', '59', '2022-01-17', 186000.00, '', '5', '1970-01-01', '1', 'Selected for Thiyagu Team - PF/ESI/PT,5050 Profile,sustainability Doubts', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-13 11:38:18', 60, '2022-01-15 01:30:09', 0, NULL, 1),
(7475, 'preethi', '4', '7397594702', '6379003638', 'ravipreethi012@gmail.com', '1999-11-04', 22, '1', '2', 'revathi', 'agriculture', 10000.00, 1, 0.00, 10000.00, 'pookara layam villar road thanjavur', 'thanjavur', '2201130005', '', '1', 'upload_files/candidate_tracker/14251300408_Preethi resume .docx', NULL, '1', '2022-01-13', 0, 'p1023', '3', '59', '2022-01-17', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Thanjavur Team in Consultant 5%', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-13 11:42:24', 60, '2022-01-15 01:10:43', 0, NULL, 1),
(7476, 'Kiran I', '5', '8124262675', '', 'kiranasdf4717@gmail.com', '1998-04-25', 23, '2', '2', 'Indra Bahadur', 'Retired', 15000.00, 2, 13000.00, 18000.00, 'Manali new town chennai', 'Chennai', '2201130006', '1', '2', 'upload_files/candidate_tracker/80215065998_KIRAN RESUME.pdf', NULL, '1', '2022-01-13', 0, '', '5', '80', NULL, 0.00, '', '0', NULL, '1', 'Person not come for an final round', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-13 11:50:15', 1, '2022-01-13 11:58:20', 0, NULL, 1),
(7477, 'Mathew', '11', '9094427672', '', 'mathewdennis2505@gmail.com', '1998-07-25', 23, '3', '2', 'S. Dennis chelladurai', 'Cnc computer operator', 50000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2201130007', '', '1', 'upload_files/candidate_tracker/60694665537_my resume25_11132021 (1).docx', NULL, '1', '2022-01-13', 0, '', '5', '83', NULL, 0.00, '', '0', NULL, '1', 'candidate not willing to work for insurance sales', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-13 11:52:07', 1, '2022-01-13 11:57:13', 0, NULL, 1),
(7478, 'Pandurangan', '5', '8778667998', '9159265962', 'panduranganvpr@gmail.com', '1996-03-14', 25, '2', '2', 'Velu', 'Former', 200000.00, 0, 22000.00, 25000.00, 'Tindivanam', 'Tambaram', '2201130008', '17', '2', 'upload_files/candidate_tracker/15910780289_CV_2022-01-06-051930.pdf', NULL, '1', '2022-01-13', 0, '', '5', '83', NULL, 0.00, '', '0', NULL, '1', 'candidate expecting high salary xxamp will not be suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-13 11:53:20', 1, '2022-01-13 12:10:10', 0, NULL, 1),
(7479, 'Edwin Prakash', '11', '9123598927', '6381351728', 'edwinrose97@gmail.com', '1997-02-28', 24, '3', '2', 'Roselin', 'House wife', 25000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2201130009', '', '2', 'upload_files/candidate_tracker/58362794655_EDWIN_Resume_Format12.pdf', NULL, '1', '2022-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-13 12:08:52', 1, '2022-01-13 12:12:32', 0, NULL, 1),
(7480, 'Roselin L', '11', '8610441907', '', 'roselin97priskilla@gmail.com', '1997-02-17', 24, '3', '2', 'Vimala', 'Ntcl', 30000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2201130010', '', '2', 'upload_files/candidate_tracker/66232368616_Roselin_Resume_Format4.pdf', NULL, '1', '2022-01-13', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-13 12:09:35', 1, '2022-01-13 12:15:06', 0, NULL, 1),
(7481, 'Tamil sevi', '20', '8428165043', '', 'dgtamil97@gmail.com', '1997-10-03', 24, '3', '2', 'Dhakshna moorthy', 'Retired Tneb', 40000.00, 1, 13000.00, 17000.00, 'Chennai', 'T.nagar', '2201130011', '', '2', 'upload_files/candidate_tracker/27900597551_Tamil resume.pdf', NULL, '1', '2022-01-13', 0, '', '5', '83', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice process', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1000', '', NULL, NULL, NULL, 1, '2022-01-13 12:39:03', 58, '2022-01-13 02:32:45', 0, NULL, 1),
(7482, 'mohamed riyaz m', '11', '7395970357', '', 'mohamedriyazm2411@gmail.com', '2000-05-15', 21, '2', '2', 'mujibre rahman s', 'tvs', 500000.00, 1, 0.00, 6000.00, 'porur', 'porur', '2201130012', '1', '1', 'upload_files/candidate_tracker/91029848413_Mohamed Riyaz M Resume.pdf', NULL, '1', '2022-01-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested ', '6', '1', '0', '1', '1', '0', '2', '2022-01-18', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-13 02:10:24', 1, '2022-01-15 10:59:38', 0, NULL, 1),
(7483, '', '0', '7338968247', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201130013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-13 03:42:12', 0, NULL, 0, NULL, 1),
(7484, 'DILLI BABU V', '7', '8056916069', '8056090332', 'Karthiraina10@gmail.com', '1995-10-18', 26, '2', '2', 'M VELAN', 'Auto Driver', 15.00, 0, 14000.00, 20000.00, 'Broadway', 'Broadway', '2201170001', '4', '2', 'upload_files/candidate_tracker/94982905669_DilliBabu Profile.pdf', NULL, '1', '2022-01-17', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no relevant Exp,he is  much into Backend process,but not much into Excels,Currently working and his notice is 30 Days ,Salary Exp is high, not open for Sales', '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-17 10:52:04', 1, '2022-01-17 10:59:53', 0, NULL, 1),
(7485, 'Prashanth.U', '7', '7338753213', '9952949325', 'Itsmeprashanth07@gmail.com', '1996-11-07', 25, '2', '2', 'UnniKrishnan', 'Electrion', 20000.00, 0, 14500.00, 20000.00, 'Royapuram', 'Royapurama', '2201170002', '4', '2', 'upload_files/candidate_tracker/17740908421_prashanth.pdf', NULL, '1', '2021-12-02', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp, He Is  Into Backend Process and looking for the same, But Not Much Into Excels, Currently Working And His Notice Is 30 Days ,Salary Exp Is High,', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-17 10:53:11', 99, '2022-12-02 11:47:07', 0, NULL, 1),
(7486, '', '0', '7397254908', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201170003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-17 01:22:08', 0, NULL, 0, NULL, 1),
(7487, '', '0', '8248210706', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201170004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-17 07:57:20', 0, NULL, 0, NULL, 1),
(7488, 'Santhosh.k', '4', '9361285764', '', 'santhoshtnb007@gmail.com', '2002-12-31', 19, '2', '2', 'No', 'Cnc machine operator', 12.00, 2, 0.00, 12.00, '2/1106 Anna street thozhur Thiruvallur 602025', '2/106 Anna street thozhur Thiruvallur 602025', '2201180001', '1', '1', 'upload_files/candidate_tracker/71807339441_Santhosh resume.docx', NULL, '1', '2022-01-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-18 10:05:41', 1, '2022-01-18 10:34:04', 0, NULL, 1),
(7489, 'S.SWETHA', '4', '6381876374', '6379714443', 'Swethaem0510@gmail.com', '1999-10-05', 22, '2', '2', 'V.selvan', 'B.sc', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2201180002', '1', '1', 'upload_files/candidate_tracker/96076282268_swetha.pdf', NULL, '3', '2022-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok but not much suit towards the sales, not comfortable with previous Exp as there was much pressure, sustainability Doubts on this profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-18 11:08:43', 60, '2022-01-18 11:39:16', 0, NULL, 1),
(7490, 'S.Bhuvaneshwari', '4', '8189974678', '9500182521', 'Bhaviyasamy471@gmail.com', '2000-11-23', 21, '2', '2', 'A.Samy', 'Carpenter', 7000.00, 2, 0.00, 15000.00, 'Parumbakkam', 'Parumbakkam', '2201180003', '1', '1', 'upload_files/candidate_tracker/99017412745_cafs.pdf', NULL, '3', '2022-01-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Average Commuication,Too long Distance around 40kms up and down,Will not sustain and handling pressure no\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-18 11:10:26', 1, '2022-01-18 11:28:23', 0, NULL, 1),
(7491, 'S.GNANA SELSIYA', '4', '6379714443', '6382178066', 'gnanaselsiya24@gmail.com', '2000-09-24', 21, '2', '2', 'M.Selvan', 'BA.Economics', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2201180004', '1', '1', 'upload_files/candidate_tracker/62398832356_Gnana selsiya.pdf', NULL, '1', '2022-01-18', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not fit for telesales', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-18 11:12:38', 1, '2022-01-18 11:19:34', 0, NULL, 1),
(7492, 'Karthikeyan', '4', '9344244610', '', 'karthimass077@gmail.com', '2000-11-14', 21, '1', '2', 'Dharmaraj', 'Not working', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2201180005', '', '1', 'upload_files/candidate_tracker/9344510590_Karthikeyan.D-5.pdf', NULL, '1', '2022-01-18', 0, 'P1003', '3', '59', '2022-01-19', 132000.00, '', '5', '1970-01-01', '2', 'Selected for Muthu Team in Consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-18 11:32:40', 60, '2022-01-18 06:03:57', 0, NULL, 1),
(7493, '', '0', '9444365229', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201180006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-18 11:44:30', 0, NULL, 0, NULL, 1),
(7494, 'Sakiya Fathima', '11', '9791075992', '', 'Sakiyafathima110@gmail.com', '1997-11-19', 24, '2', '2', 'Irfan ali', 'Tailor', 30000.00, 1, 21600.00, 25000.00, 'Chennai', 'Chennai', '2201180007', '1', '2', 'upload_files/candidate_tracker/43748674545_I SAKIYA FATHIMA - Resume - 06.01.2022.docx', NULL, '1', '2022-01-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate not comfortable with the Pay', '6', '1', '0', '1', '1', '0', '2', '2022-01-19', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-18 12:04:57', 1, '2022-01-18 12:11:39', 0, NULL, 1),
(7495, 'Arulraj A', '11', '8675815164', '7358684700', 'arulraja30@gmail.com', '1995-04-30', 26, '2', '2', 'Alphones', 'Office helper', 120000.00, 1, 12000.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2201180008', '1', '2', 'upload_files/candidate_tracker/44620628242_Arul Resume Mba New 2022.docx', NULL, '1', '2022-01-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication no,will not sustain not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-18 12:26:51', 1, '2022-01-18 12:35:09', 0, NULL, 1),
(7496, 'vijay', '5', '8489559616', '', 'vijayvid1503@gmail.com', '1997-03-15', 24, '2', '2', 'nagaraj', 'driver', 20000.00, 1, 14000.00, 20000.00, 'ossur', 'banglore', '2201180009', '1', '2', 'upload_files/candidate_tracker/20386740743_VIjay edited Resume (1) (1).docx', NULL, '2', '2022-01-17', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'did not come for interview', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-18 01:37:06', 58, '2022-01-18 02:45:38', 0, NULL, 1),
(7497, 'm.mohammed esa', '6', '9677777175', '9884166943', 'mdesa843@gmail.com', '2007-01-18', 0, '1', '1', 'moosa', 'painter', 20000.00, 1, 0.00, 18000.00, 'thangal', 'thangal', '2201180010', '', '1', 'upload_files/candidate_tracker/81102527134_Document from ????????.pdf', NULL, '1', '2022-01-18', 0, 'P1121', '3', '59', '1970-01-01', 186000.00, '', '2', '1970-01-01', '1', 'Ok for Ravi,need to analyse in 7 days of training', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Link mail sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-18 02:45:33', 60, '2022-01-18 06:03:38', 0, NULL, 1),
(7498, 'Mubeena S', '4', '9361076685', '7010268706', 'Saleemadam60385@gmail.com', '1996-06-23', 25, '2', '1', 'Syed Riyaz', 'Service advisor', 19000.00, 4, 0.00, 15.50, 'Abdul khader street, Anna Salai Chennai', 'Abdul leader street, Anna Salai Chennai', '2201180011', '1', '1', 'upload_files/candidate_tracker/6007210809_resume .pdf', NULL, '1', '2022-01-18', 0, '', '3', '59', '2022-01-24', 126312.00, '', '5', '1970-01-01', '2', 'Selected for B2B in  5% consultant', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-18 05:14:23', 60, '2022-01-21 03:50:08', 0, NULL, 1),
(7499, 'JANARTHANAN. S', '11', '9677119229', '', 'JANARTHANANSHANKAR55@GMAIL.COM', '1997-03-05', 24, '2', '2', 'Shankar', 'Building construction work', 12500.00, 1, 0.00, 15.00, 'No64/A Annai abirami nagar Thiruverkadu chennai 77', 'No64/A Annai Abirami nagar Thiruverkadu chennai 77', '2201180012', '1', '1', 'upload_files/candidate_tracker/82373761642_1618121086722_1618121075045_0_JANACV.pdf', NULL, '1', '2022-01-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Average, Fresher for Recruitment, no sustainability, Will not handle the pressure.Not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-18 06:07:13', 60, '2022-01-19 04:02:36', 0, NULL, 1),
(7500, 'Visalini. A', '4', '6381607637', '8248190664', 'visavisa124@gmail.co', '2000-07-31', 21, '1', '2', 'Ayyadurai. K', 'Former', 7000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thiruttani', '2201190001', '', '1', 'upload_files/candidate_tracker/86505016567_Document 6.pdf', NULL, '1', '2022-01-19', 0, 'B1002', '3', '59', '2022-01-24', 126312.00, '', '3', '2022-04-20', '2', 'Selected for Priyanka Jenit Team in Consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer  Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-19 09:55:50', 60, '2022-01-19 04:43:03', 0, NULL, 1),
(7501, 'senthil velan', '4', '9751631757', '', 'arun9751@gmail.com', '1999-04-24', 22, '2', '2', 'arumugam', 'farmer', 10000.00, 1, 0.00, 10000.00, 'trichy', 'Trichy', '2201190002', '1', '1', 'upload_files/candidate_tracker/38395760674_resume_Senthil velan.pdf', NULL, '2', '2022-01-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-19 10:54:02', 1, '2022-01-19 11:12:30', 0, NULL, 1),
(7502, 'S. Ahamed Basha', '4', '9728998829', '', 'ahamedbasha7863@gmail.com', '1996-07-14', 25, '1', '2', 'Samus kani .A', 'System work', 13000.00, 0, 0.00, 12000.00, 'Chrompet', 'Chrompet', '2201190003', '', '1', 'upload_files/candidate_tracker/41368857575_Resume-Basha-1.pdf', NULL, '3', '2022-01-19', 0, 'Job', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Non Voice pressure only, need to open a lot, Will not sustain and handle our pressure.Not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-19 11:44:21', 1, '2022-01-19 11:55:58', 0, NULL, 1),
(7503, 'Saratha Preetha K P', '11', '9600464747', '', 'saradapreetha2498@gmail.com', '1998-04-02', 23, '2', '2', 'Pandian K', 'Retired BSNL officer', 35000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2201190004', '1', '1', 'upload_files/candidate_tracker/20341967895_Sarada resume (3).docx', NULL, '1', '2022-01-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-19 11:53:23', 60, '2022-01-21 06:32:52', 0, NULL, 1),
(7504, 'Sharmila Ashokan', '11', '7806858891', '9698310486', 'sharmiomi17@gmail.com', '1999-11-17', 22, '2', '2', 'Ashokan', 'Former', 20000.00, 2, 12.00, 14.00, 'No:649,Anna street,Vengal, Tiruvallur District', 'No:38,Bajanai Kovil Street,Thirumazhisai', '2201190005', '1', '2', 'upload_files/candidate_tracker/59009248913_black (CV)sharmi-converted.pdf', NULL, '3', '2022-01-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-19 01:10:14', 60, '2022-01-20 09:46:24', 0, NULL, 1),
(7505, 'Sharan Kumar', '11', '6381572102', '7448516565', 'Sharan.sko@gmail.com', '1999-08-15', 22, '2', '1', 'Vinitha', 'Technical Support', 30000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2201190006', '1', '2', 'upload_files/candidate_tracker/99274155635_Sharan SK Updated Resume...docx', NULL, '1', '2022-01-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average ,No Stability in the previous Exp, every Six months shifted and there are multiple reason. Doing a part time family business too. No ideas in the recruitment, earlier he worked just as a coordinator. Will not sustain and the Salary Exp is Very High.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-19 01:11:41', 58, '2022-01-19 02:55:35', 0, NULL, 1),
(7506, '', '0', '8189896311', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201190007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-19 03:12:08', 0, NULL, 0, NULL, 1),
(7507, 'J.lavanya', '4', '8949724103', '8189896311', 'jmsjeni2023@gmail.com', '1998-04-23', 23, '2', '1', 'A.silambarasan', 'Technician', 20000.00, 1, 14000.00, 15000.00, 'No16/22,palmore Street,west mambalam,ch-3', 'No.11/1,padavattamman Street,west mamblam,ch-33', '2201190008', '1', '2', 'upload_files/candidate_tracker/51043171323_WhatsApp Image 2022-01-19 at 3.36.36 PM-converted.pdf', NULL, '1', '2022-01-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, not comfortable with the timings and the salary Exp is very high, will not sustain for a long, not comfort to take much calls.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-19 03:53:10', 1, '2022-01-19 03:59:26', 0, NULL, 1),
(7508, 'Suriya. S', '11', '9345423554', '', 'suriyasubramani32@gmail.com', '1999-07-06', 22, '3', '2', 'Ml. Subramani', 'Business man', 60000.00, 1, 25000.00, 20000.00, 'villupuram', 'Villupuram', '2201190009', '', '2', 'upload_files/candidate_tracker/56529343691_SURIYA RESUME 32.docx', NULL, '2', '2022-01-20', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-19 04:53:55', 1, '2022-01-19 05:08:20', 0, NULL, 1),
(7509, 'Kavitha S', '11', '9940183576', '9940184576', 'kavithasekar444@gmail.com', '1999-07-30', 22, '2', '1', 'Sathish Kumar PS', 'Internal audit manager', 30000.00, 1, 0.00, 15000.00, 'No 3 Avvai salai Stephanson road vyasarpadi ch 39', 'No 3 Avvai Salai Stephanson Road Vyasarpadi Ch 39', '2201190010', '1', '1', 'upload_files/candidate_tracker/4854498255_KAVITHA RESUME.pdf', NULL, '1', '2022-01-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-19 05:11:35', 1, '2022-01-19 05:43:24', 0, NULL, 1),
(7510, 'sharnila', '4', '6380873177', '', 'cathrineabi77@gmail.com', '2000-07-21', 21, '2', '2', 'dhanasekar', 'not working', 8000.00, 1, 0.00, 10000.00, 'kadambathur', 'Kadambathur', '2201190011', '1', '1', 'upload_files/candidate_tracker/27689335078_sharmila resume.docx', NULL, '1', '2022-01-20', 0, '', '3', '59', '2022-01-21', 126000.00, '', '', '2022-01-25', '2', 'Candidate seems to be slow,kindly analyse in 7 days of training,Proceed with the Joining Formalities.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-19 05:41:00', 60, '2022-01-20 05:17:15', 0, NULL, 1),
(7511, 'Kavitha S', '11', '9940184576', '9003000188', 'kavithasekar444@gmail.com', '1999-07-30', 22, '2', '1', 'Sathish Kumar PS', 'Internal audit manager', 30000.00, 1, 0.00, 15000.00, 'No 3 Avvai salai Stephanson road vyasarpadi ch 39', 'No 3 Avvai Salai Stephanson Road Vyasarpadi Ch 39', '2201190012', '1', '1', 'upload_files/candidate_tracker/19812491495_KAVITHA RESUME.pdf', NULL, '1', '2022-01-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Fresher for Recruitment,no clear ideas in the recruitment,not much comfort on the timings,will not handle the pressure,not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-19 05:45:24', 1, '2022-01-19 05:47:26', 0, NULL, 1),
(7512, 'Gowri.c', '4', '6374532399', '9962956914', 'Gowrimicetich9@gmail.com', '1999-07-14', 22, '1', '2', 'Chandrasekeran', 'Tea master', 20000.00, 1, 10000.00, 13000.00, 'Padi', 'Padi', '2201190013', '', '2', 'upload_files/candidate_tracker/45539763408_1250166000052611 _ 18-JUL-2020_17-AUG-2020.pdf', NULL, '1', '2022-01-20', 0, 'JOBS', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate didnt turn back and will not sustain', '1', '1', '0', '1', '1', '0', '2', '2022-01-21', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-19 07:24:01', 1, '2022-01-20 11:51:14', 0, NULL, 1),
(7513, 'Hammathu Jahir Hussain.J', '6', '8056604267', '', 'hammadthahir10@gmail.com', '1998-03-31', 23, '2', '2', 'jahir husain', 'Professor', 15000.00, 2, 0.00, 12000.00, 'Triplicane', 'triplicane', '2201200001', '1', '1', 'upload_files/candidate_tracker/81415872884_Hammathu VITAR.pdf', NULL, '1', '2022-01-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-20 10:05:26', 1, '2022-01-20 10:09:52', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7514, 'kishore', '6', '9361798761', '', 'KISHOREKAMARAJ1234@GMAIL.COM', '1997-11-08', 24, '2', '2', 'Mathavan', 'retired', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2201200002', '1', '1', 'upload_files/candidate_tracker/18556181430_RESUME.DOCX', NULL, '1', '2022-01-20', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Star Health for 3 months,left due to pressure/continuous calls.Not ok for our roles,will not sustain.Handling Pressure no.Due to the releavnt Exp kinldy check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-20 10:11:51', 58, '2022-01-20 10:26:58', 0, NULL, 1),
(7515, 'JEGAN.K', '4', '7338997339', '9629521733', 'nithijegan57@gmail.com', '1999-01-31', 22, '1', '2', 'ROJAPPU.D', 'Police head constable', 18000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Maraimalainagar', '2201200003', '', '1', 'upload_files/candidate_tracker/64373821972_1250166000052611 _ 18-AUG-2020_17-SEP-2020(1).pdf', NULL, '1', '2022-01-20', 0, 'banupriya', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-20 10:13:03', 58, '2022-01-20 11:13:22', 0, NULL, 1),
(7516, 'banupriya', '4', '9751451447', '', 'banupriyadp@gmail.com', '2000-08-27', 21, '2', '2', 'partha sarathi', 'working', 15000.00, 1, 0.00, 10000.00, 'kadambattur', 'Kadambattur', '2201200004', '1', '1', 'upload_files/candidate_tracker/26886031464_D.P.BANUPRIYA. RESUME.pdf', NULL, '1', '2022-01-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped,final Interview by banu priya and rejected as her salary Exp is too high', '1', '2', '', '4', '6', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-20 10:19:22', 58, '2022-01-20 11:17:06', 0, NULL, 1),
(7517, 'Rekha', '4', '9551519334', '', 'M.rekhamohan2020@gmail.com', '1991-08-05', 30, '2', '1', 'Magala', 'Cooly', 8000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2201200005', '1', '1', 'upload_files/candidate_tracker/12962096087_1642049778190_RESUME_-_prianka.pdf', NULL, '1', '2022-01-20', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'already marrieed 2 kids irukku but maturity level low and timing not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-20 10:21:23', 58, '2022-01-20 10:44:59', 0, NULL, 1),
(7518, 'Subhiksha', '4', '9884856401', '8939503266', 'Attitudesubi1209@gmail.com', '2000-09-12', 21, '2', '2', 'R. Kasthuri', 'Tailor', 10000.00, 1, 15000.00, 14500.00, 'Perambur', 'Perambur', '2201200006', '1', '2', 'upload_files/candidate_tracker/18761022987_subi resume 3.pdf', NULL, '1', '2022-01-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'As Sales team requested for the SA, Candidate not interested with the same  and she will not sustain for a long .Dropped', '1', '1', '', '1', '1', '', '2', '2022-01-21', '1', '1', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-20 11:02:42', 52, '2022-01-20 01:08:54', 0, NULL, 1),
(7519, 'C.Brintha', '4', '9600698861', '', 'printharaja542@gmail.com', '1995-07-24', 26, '1', '2', 'Parents', 'Farmer', 20000.00, 3, 9000.00, 10000.00, 'Poondi', 'Poondi', '2201200007', '', '2', 'upload_files/candidate_tracker/68976426200_resume brintha.docx', NULL, '1', '2022-01-20', 2, 'muthu', '3', '59', '2022-01-24', 138948.00, '', '5', '1970-01-01', '2', 'Selected for B2B thanjavur Location, Consultant Role - 5% TDS', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '1', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-20 11:03:30', 60, '2022-01-22 04:21:30', 0, NULL, 1),
(7520, 'Saravanan b', '4', '8778578132', '7397306721', 'saravana1999vj@gmail.com', '1999-08-30', 22, '2', '2', 'B.gajalakshmi', 'House wife', 60000.00, 2, 13000.00, 15000.00, 'Chennai', 'Chennai', '2201200008', '1', '2', 'upload_files/candidate_tracker/87570498271_SARAVANAN RESUME(1)-converted.pdf', NULL, '1', '2022-01-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Store Sales only ,pressure handling no,sustainability Doubts.Need to speak,Degree incomplete,not suitable', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-20 11:13:58', 58, '2022-01-20 11:29:12', 0, NULL, 1),
(7521, 'Ghanesh Karthick .D', '6', '9080838317', '9710234923', 'Ghaneshkarthick846@gmail', '1999-07-02', 22, '2', '2', 'Father', 'Cooly', 15000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2201200009', '1', '1', 'upload_files/candidate_tracker/25150942567_1642049778190_RESUME_-_prianka.pdf', NULL, '1', '2022-01-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication Average,need to open up,Looking much for core Automobile domain, Will not sustain, comfortable to work much in the non voice ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-20 11:14:17', 58, '2022-01-20 11:43:42', 0, NULL, 1),
(7522, 'AJEETH H', '5', '8754701265', '8754603643', 'ajeethhari2811@gmail.com', '1999-11-28', 22, '1', '2', 'Harikrishnan', 'Farmer', 10000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2201200010', '', '1', 'upload_files/candidate_tracker/95233976245_1250166000052611 _ 18-JUL-2020_17-AUG-2020.pdf', NULL, '1', '2022-01-20', 0, 'P1264', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance no bike no laptop, fresher, need to open a lot ,will not handle our pressure.Not suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-20 11:35:28', 1, '2022-01-20 11:43:09', 0, NULL, 1),
(7523, 'Bhuvaneshwaran G', '6', '9962032122', '8939534360', 'bhuvanesh0031@gmail.com', '1999-10-08', 22, '2', '2', 'G.MALLIKA', 'House wife', 200000.00, 1, 0.00, 25000.00, 'Madurai', 'Chennai', '2201200011', '17', '1', 'upload_files/candidate_tracker/10798792888_BHUVBANESH RESUME .pdf', NULL, '1', '2022-01-20', 0, '', '3', '59', '2022-01-24', 285696.00, '', '4', '2022-03-03', '1', 'Communication Ok, Have Exp In Paytm Sales, Can Be Trained As Rm, Kindly Check And Let Me Know Your Inputs\n\nselected for GK SIr team  with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Link Mail shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-20 11:58:59', 60, '2022-01-22 03:26:36', 0, NULL, 1),
(7524, 'Srinithy', '11', '8072773151', '9841799378', 'srinithysrinivas@gmail.com', '1997-12-09', 24, '2', '2', 'Sumathy', 'Self occupation', 120000.00, 1, 15000.00, 3.50, 'St.thomas Mount', 'St.thomas Mount', '2201200012', '1', '2', 'upload_files/candidate_tracker/3672856413_RESUME sri updated.doc.pdf', NULL, '2', '2022-01-25', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is good,have multiple intern Exp and the current is ready to pay her 4 LPA in 3 months time,Salary Exp is around 3.5 LPA,Will not sustain for a long', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-20 12:53:34', 60, '2022-01-25 04:49:43', 0, NULL, 1),
(7525, 'Mohamed riyasudeen', '13', '9791503069', '', 'riyasdeen4455@gmail.com', '2006-10-14', 15, '2', '2', 'Haseena', 'House wife', 30000.00, 2, 18500.00, 16000.00, 'Royapetha', 'Royapetha', '2201200013', '1', '2', 'upload_files/candidate_tracker/34384720453_resume riyas.pdf', NULL, '1', '2022-01-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no basic ideas in the IT domain,came along with the  his freind for telecaller role,Need to open a lot,will not sustain in our roles,Salary Exp is very high,not suits', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-20 01:16:36', 1, '2022-01-20 01:20:43', 0, NULL, 1),
(7526, 'Rohini', '11', '7305629960', '', 'rohinibaskar3004@gmail.com', '2007-01-20', 15, '2', '2', '04-12-1999', 'Analyst at Springbord System Private limited', 20000.00, 1, 0.00, 12000.00, '58 Valmiki street thiruvanmiyur Chennai 41', '58 Valmiki street thiruvanmiyur Chennai 41', '2201200014', '1', '1', 'upload_files/candidate_tracker/98817541724_CV Rohini.pdf', NULL, '2', '2022-01-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not comfortable with TxxampC', '6', '2', '', '1', '1', '', '2', '2022-01-24', '1', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-20 06:21:32', 60, '2022-01-22 10:55:12', 0, NULL, 1),
(7527, 'Sushmitha Shiva Kumar', '4', '8056193551', '9566208637', 'sushmithashivakumar060@gmail.com', '2001-04-13', 20, '2', '2', 'Ambiga S', 'Sushmitha', 8000.00, 1, 0.00, 15000.00, 'Amjakarai', 'Amjakarai', '2201200015', '1', '1', 'upload_files/candidate_tracker/21679835942_sushmitha.S cv.docx', NULL, '1', '2022-01-21', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'not suitable for this profile', '1', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-20 06:45:50', 1, '2022-01-21 05:16:14', 0, NULL, 1),
(7528, 'caroline', '11', '9789080220', '9962231833', 'acsofia1698@gmail.com', '1998-07-16', 23, '2', '1', 'arockiasamy', 'marketinghead', 30000.00, 0, 0.00, 25000.00, 'guduvanchery', 'guduvanchery', '2201200016', '1', '1', 'upload_files/candidate_tracker/66767111525_Caroline Sofia-CV.docx', NULL, '1', '2022-01-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interestde with txxampC', '6', '1', '0', '1', '1', '0', '2', '2022-01-22', '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-20 09:31:02', 1, '2022-01-20 09:35:34', 0, NULL, 1),
(7529, 'Udhaya surya', '11', '9047262901', '9042113532', 'Yuvanranjith3@gmail.com', '1999-01-31', 22, '2', '2', 'Thatchanamoorthi', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Ariyalur', 'Velachery chennai', '2201210001', '1', '1', 'upload_files/candidate_tracker/37478201224_1250166000052611 _ 18-JUL-2020_17-AUG-2020.pdf', NULL, '1', '2022-01-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,Looking for recruitment Roles not for CRM,No basic ideas in the recruitment,will not sustain and handling pressure doubt', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-21 10:05:28', 58, '2022-01-21 10:27:31', 0, NULL, 1),
(7530, 'Priyadarshini. A', '11', '9176457065', '', 'priyadarsini927@gmail.com', '1998-07-28', 23, '2', '2', 'Ananda padmanadan. P', 'Self employed', 30000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2201210002', '1', '1', 'upload_files/candidate_tracker/91519406657_Priyadarshini resume 2022.pdf', NULL, '1', '2022-01-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok but very soft and slow,fresher for recruiter,need time to give confirmation on the SA also the Stipend pay,She was working in Healthcare night shift 15K TH. If she comes back let  us decide', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-21 10:07:46', 1, '2022-01-22 12:40:28', 0, NULL, 1),
(7531, 'Megala.M', '4', '8428491835', '9940123691', 'Megalamurugan2025@gmail.com', '1999-04-25', 22, '2', '2', 'Murugan.P', 'Electrician', 12000.00, 2, 0.00, 15000.00, 'Guduvancheri', 'West Mambalam', '2201210003', '1', '1', 'upload_files/candidate_tracker/65446543174_Resume Megala.docx', NULL, '1', '2022-01-21', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not intrested in voice process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-21 10:37:22', 52, '2022-01-21 11:45:21', 0, NULL, 1),
(7532, 'Pavithra. m', '11', '8608014418', '', 'pavipavithra0507@gmail.com', '2001-07-05', 20, '2', '2', 'Murugan.P', 'Electrician', 12000.00, 2, 0.00, 15000.00, 'West Mambalam', 'West Mambalam', '2201210004', '1', '1', 'upload_files/candidate_tracker/59629724233_Pavithra Resume.pdf', NULL, '1', '2022-01-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Non voice Process , not fit for our operations and HR roles, will not sustain', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-21 10:38:14', 52, '2022-01-21 11:44:40', 0, NULL, 1),
(7533, 'Dhanush', '4', '6382559804', '8838006441', 'dd5826254@gmail.com', '2001-02-24', 20, '1', '2', 'Ravikumar', 'Painter', 20000.00, 1, 8000.00, 11000.00, 'Thirunindravuur', 'Koyambedu', '2201210005', '', '2', 'upload_files/candidate_tracker/2152261696_CV_2021-12-14-071838.pdf', NULL, '1', '2022-01-21', 0, 'P1003', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No sustainabilty,3 months 2 companies changed,Career Gap.Graduation discontinued,not opne up, need to speak,will not sustain and handling pressure no', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-21 10:45:13', 60, '2022-01-21 12:41:47', 0, NULL, 1),
(7534, 'raghavi v', '11', '8144333115', '', 'raghavi.raaghu1@gmail.com', '1996-12-01', 25, '2', '2', 'vadivelu', 'business', 20000.00, 0, 11677.00, 15000.00, 'chennai', 'chennai', '2201210006', '1', '2', 'upload_files/candidate_tracker/64282805776_Raghavi_resume.pdf', NULL, '1', '2022-01-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok, have 6  months exp in Recruitment, little attitude, but seems ok for the profile, scheduled her for the 2nd round but left without attending the interview', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-21 11:11:38', 1, '2022-01-21 03:43:03', 0, NULL, 1),
(7535, 'Diwakar s', '4', '8072336711', '9789329781', 'dmyc8880@gmail.com', '1999-09-15', 22, '2', '1', 'Subramani N', 'Vegetables Business', 25000.00, 3, 0.00, 12000.00, 'Chennai', 'Chennai', '2201210007', '1', '1', 'upload_files/candidate_tracker/66902675089_Diwakar file.docx', NULL, '1', '2022-01-21', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He already having health issues so not suitable for this profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-21 11:35:37', 60, '2022-01-21 12:43:11', 0, NULL, 1),
(7536, 'Muhammad.H', '6', '7358282745', '8825575186', 'Muhammad786bilali@gmail.com', '2007-01-21', 0, '2', '2', 'S.M. Muhammad Hashim', 'Real Estate Consultant', 25000.00, 1, 18000.00, 20000.00, 'Manadi', 'Manadi', '2201210008', '1', '2', 'upload_files/candidate_tracker/18282961857_1642593170629_1642593169195_1642593162964_Muhammad Resume.pdf', NULL, '1', '2022-01-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,no relevant Exp,open for any positions for time being.he much prefers to work as Arabic Tutor/Looking for international vaccanicies too.He needs time to give his confirmation but sustainability doubts.If candidate comes back let us see.He much focus in the Salary part', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-21 12:19:20', 1, '2022-01-21 12:23:41', 0, NULL, 1),
(7537, 'Monaliza', '4', '9629443930', '', 'monaphilip19@gmail.com', '1998-10-19', 23, '2', '2', 'Fathima mary', 'House wife', 10000.00, 2, 15000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2201210009', '1', '2', 'upload_files/candidate_tracker/37792342009_Monaliza_P Resume.docx', NULL, '1', '2022-01-21', 30, '', '3', '59', '2022-01-24', 151584.00, '', '', '2022-02-18', '1', 'Selected for B2B Thanjavur Consultant 5%', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-21 12:45:28', 60, '2022-01-22 06:19:19', 0, NULL, 1),
(7538, 'Mangayarkkarasi', '11', '9003744059', '', 'Mangai.sudan1020@gmail.com', '1989-02-21', 32, '2', '1', 'Rajasudan', 'Software Engineer', 1200000.00, 2, 12000.00, 25000.00, 'Mogappair', 'Mogappair', '2201210010', '1', '2', 'upload_files/candidate_tracker/59374144670_Mangai MA(HRM).docx', NULL, '1', '2022-01-21', 20, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Didnt turn back with her confirmation', '6', '2', '0', '1', '1', '0', '2', '2022-01-22', '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-21 12:47:57', 1, '2022-01-21 12:52:44', 0, NULL, 1),
(7539, 'Ashwin', '4', '8220133002', '9710674495', 'bobbypreethiammu@gmail.com', '2001-04-23', 20, '2', '2', 'Johnson', 'Driver', 25000.00, 3, 0.00, 12000.00, 'Chennai', 'Chennai', '2201210011', '1', '1', 'upload_files/candidate_tracker/15546452795_4 sheet poster copy12.pdf', NULL, '1', '2022-01-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Very Poor Candidate,no communication,Will not sustain,not suitable for our telecaller roles', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-21 01:10:32', 60, '2022-01-21 02:28:55', 0, NULL, 1),
(7540, '', '0', '8056192551', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201210012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-21 01:31:05', 0, NULL, 0, NULL, 1),
(7541, 'Dhanushkrishnan', '4', '9500780124', '7339368442', 'Dhanushkrishnan04@gmail.com', '1999-11-12', 22, '2', '2', 'Mohanakrishnan', 'Framer', 150000.00, 1, 8000.00, 12000.00, 'Chennai', 'Chennai', '2201210013', '1', '2', 'upload_files/candidate_tracker/816723370_DHANUSH RESUME (1).pdf', NULL, '1', '2022-01-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Graduation,no importance on the job,College terminated due to attendance,Will not sustain for a long,not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-21 03:46:07', 60, '2022-01-21 06:26:40', 0, NULL, 1),
(7542, 'Mohamed mabruk husain', '4', '7339368442', '9500780124', 'Ishanmabruk02@gmail.com', '2002-03-13', 19, '2', '2', 'Zakir husain', 'Driver', 150000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2201210014', '1', '1', 'upload_files/candidate_tracker/72398696057_mohamed resume.docx', NULL, '1', '2022-01-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No graduation,not showing any interest on the job,will not handle the pressure and sustainability doubts', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-21 04:01:14', 60, '2022-01-21 06:26:16', 0, NULL, 1),
(7543, 'simitha s', '11', '8939223495', '', 'simithas19@gmail.com', '1998-06-10', 23, '2', '1', 'prasanth s', 'assistant manager', 30000.00, 0, 0.00, 20000.00, 'chebbaj', 'porur', '2201210015', '1', '1', 'upload_files/candidate_tracker/54005911806_simitha resume final.docx', NULL, '1', '2022-01-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-21 04:34:03', 1, '2022-01-21 04:37:55', 0, NULL, 1),
(7544, 'Muthilaksai B', '6', '7826880685', '', 'muthilaksai1969@gmail.com', '1996-06-07', 25, '2', '2', 'pakiyaraj', 'farmer', 12000.00, 1, 15000.00, 13000.00, 'ramanadhapuram', 'perumbakkam', '2201210016', '1', '2', 'upload_files/candidate_tracker/92514802549_Akshai Resume (1).docx', NULL, '2', '2022-01-21', 0, '', '4', '57', NULL, 0.00, '', '0', NULL, '1', 'Communication okay. 3yrs in sales, but no document proof for the exp. Can be trained in RE level, Kindly check and let me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-21 06:08:00', 1, '2022-01-21 06:10:43', 0, NULL, 1),
(7545, '', '0', '9952742065', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201210017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-21 08:18:50', 0, NULL, 0, NULL, 1),
(7546, 'Ansari. A', '4', '8428585800', '', 'ansaria7606@gmail.com', '2000-10-07', 21, '2', '2', 'Sarfunisha', 'No', 10000.00, 0, 0.00, 13000.00, 'Royapettah chennai', 'Royapettah chennai', '2201220001', '1', '1', 'upload_files/candidate_tracker/49936214821_Resume .pdf', NULL, '1', '2022-01-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for TElecaller,communication ok but slow,and much to prefer to work in Non voice process only', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-22 09:56:48', 60, '2022-01-22 10:57:44', 0, NULL, 1),
(7547, 'Anuradha', '4', '9941386204', '', 'kswati1806@gmail.com', '1975-04-14', 46, '2', '1', 'M.Kandaswamy (late)', 'Rice broker', 15000.00, 1, 0.00, 12000.00, '5 Karikalan stret kandachavadi', '5 Karikalan stret. Kandachavadi', '2201220002', '1', '1', 'upload_files/candidate_tracker/74636298600_PDF Gallery_20220122_122050.pdf', NULL, '1', '2022-01-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Aged profile, worked in multiple non voice domain, not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-22 12:11:33', 60, '2022-01-22 02:44:33', 0, NULL, 1),
(7548, 'Sangeetha B', '11', '6381946363', '', 'sangeetha99thirumal@gmail.com', '1999-09-25', 22, '2', '2', 'Kavitha', 'Assistant professor', 70000.00, 1, 0.00, 15000.00, 'Maduravoyal', 'Maduravoyal', '2201220003', '1', '1', 'upload_files/candidate_tracker/84227194238_pdf_20220121_220846_0000.pdf', NULL, '1', '2022-01-22', 0, '', '3', '59', '2022-02-01', 96000.00, '', '', '1970-01-01', '1', 'Selected as an employee 8k for 3 months then the salary will be revised after 3 moths - 1.6 yrs SA,no document submission', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-22 12:39:45', 60, '2022-01-22 02:45:02', 0, NULL, 1),
(7549, 'B.Periyathambi', '4', '9360501439', '8838512457', 'Periyathambiperiyathambi@gmail.com', '1999-06-23', 22, '2', '2', 'Valli', 'Valli', 10000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Maduravoyal', '2201220004', '1', '1', 'upload_files/candidate_tracker/62960624241_PERIYA_THAMBI_RESUME.docx', NULL, '1', '2022-01-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2022-01-22 12:57:36', 1, '2022-01-22 01:17:14', 0, NULL, 1),
(7550, 'Sam Nesakumar S', '6', '8610257675', '9940767529', 'samuelsolomon0709@gmail.com', '1996-12-09', 25, '1', '2', 'Suresh Kumar G', 'Teacher', 40000.00, 1, 0.00, 20000.00, 'VIRUDHUNAGAR', 'VIRUDHUNAGAR', '2201220005', '', '2', 'upload_files/candidate_tracker/33801847575_SAM RESUME.docx', NULL, '1', '2022-01-22', 0, '', '3', '59', '1970-01-01', 192000.00, '', '2', '1970-01-01', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Mail Link shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-22 04:24:12', 60, '2022-01-22 06:26:40', 0, NULL, 1),
(7551, 'Joseph Amirtharaj', '4', '9952265647', '8610257615', 'jamirtharaj96@gmail.com', '1996-07-17', 25, '1', '2', '-', '-', 50000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Kallakurichi', '2201220006', '', '1', 'upload_files/candidate_tracker/10634295815_Joseph RESUME -.pdf', NULL, '1', '2022-01-22', 0, 'P1290', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open up a lot will not sustain\n', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-22 04:25:22', 1, '2022-01-22 04:36:30', 0, NULL, 1),
(7552, '', '0', '9952050039', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201220007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-22 04:27:48', 0, NULL, 0, NULL, 1),
(7553, 'Bharathi D', '4', '9789925123', '9952050039', 'tanishba13@gmail.com', '1986-09-13', 35, '1', '1', 'Kumaravel', 'Procurement', 25000.00, 2, 21000.00, 25000.00, 'Chennai', 'Chennai', '2201220008', '', '2', 'upload_files/candidate_tracker/71206556413_Bharathi_Resume.doc.docx', NULL, '1', '2022-01-22', 0, 'P1254', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable age around 35 will not handle our pressure will not sustain too', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-22 04:52:41', 1, '2022-01-22 05:01:32', 0, NULL, 1),
(7554, 'A.HELEN MARY', '11', '7358639727', '9840406408', 'helenanto27@gmail.com', '1997-07-27', 24, '2', '2', 'R. ANTONY SAMY', 'Retired', 8000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2201230001', '1', '1', 'upload_files/candidate_tracker/24539151799_0_1642554484394Resume_Helen.doc', NULL, '1', '2022-01-24', 0, '', '3', '59', '2022-04-26', 170496.00, '', NULL, '2023-12-23', '1', 'Selected for 3 months intern with 7.5 K,then 12K TH  with 208 Deductions - iJobs joined as a intern on 29 Jan 2022', '6', '1', '1', '1', '1', '1', '2', '2022-01-25', '2', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-23 03:48:59', 60, '2023-05-22 11:10:27', 0, NULL, 1),
(7555, 'Elumalai', '4', '7200153941', '', 'elumalaikali81@gmail.com', '2000-07-19', 21, '2', '2', 'Vengadesan', 'Business', 25000.00, 2, 0.00, 16000.00, 'Villupuram', 'Villupuram', '2201240001', '22', '1', 'upload_files/candidate_tracker/58861313985_elumalai resume.pdf', NULL, '1', '2022-01-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice process ,will not handle the pressure Not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-24 10:07:36', 1, '2022-01-24 10:18:22', 0, NULL, 1),
(7556, 'Ramya. J', '4', '9361729293', '', 'Jesuramya612@gmail.com', '1998-09-03', 23, '2', '2', 'Jesuraj. M', 'Farmer', 12000.00, 2, 16000.00, 20000.00, 'Saidapet', 'Saidapet', '2201240002', '1', '2', 'upload_files/candidate_tracker/94197687173_j.ramya.pdf', NULL, '3', '2022-01-24', 0, '', '3', '59', '2022-02-14', 164208.00, '', '', '2022-02-18', '2', 'Selected for B2B in consultant 5% TDS', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer mail sent', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-24 10:35:25', 60, '2022-02-12 07:31:23', 0, NULL, 1),
(7557, 'Lokesh', '4', '9080249943', '7010663213', 'lokeshatp44@gmail.com', '2000-10-15', 21, '2', '2', 'Kumaran', 'Self employed', 17000.00, 1, 0.00, 17000.00, 'Thiruvallur', 'Thiruvallur', '2201240003', '22', '1', 'upload_files/candidate_tracker/23493159287_lokesh.K.pdf', NULL, '1', '2022-01-24', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', '2022-02-10', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-24 10:45:20', 1, '2022-01-24 11:01:25', 0, NULL, 1),
(7558, 'Zavith Hussain R', '4', '6385830335', '9994769851', 'Javithjack41@gmail.com', '1999-08-07', 22, '2', '2', 'K.rasheeth', 'Fish shop', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'T.nagar', '2201240004', '1', '1', 'upload_files/candidate_tracker/88223776476_1250166000052611 _ 18-OCT-2021_17-NOV-2021.pdf', NULL, '1', '2022-01-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No sustainability in the previous positions,Will not handle the pressure,personal marriage issue,will not focus much in work,will not sustain for a long', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-24 11:34:10', 52, '2022-01-24 01:23:46', 0, NULL, 1),
(7559, 'R. Priyanka', '4', '9840606776', '9840295775', 'Priyankarr0108@gmail.com', '1997-08-01', 24, '2', '2', 'S. Raja', 'Boxing coach', 20000.00, 1, 0.00, 11000.00, '14/100ellaiamman colony teynampet chennai -86', 'Teynampet', '2201240005', '1', '1', 'upload_files/candidate_tracker/26150863760_Share Document RESUME Priyanka-8.docx', NULL, '1', '2022-01-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Telecaller, need to speak, much comfort to work in non voice,will not sustain for long', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-24 11:48:59', 52, '2022-01-24 01:24:45', 0, NULL, 1),
(7560, 'mohammed farhan m', '11', '6374496215', '7200559462', 'farhanmohammed615@gmail.com', '2000-01-11', 22, '2', '2', 'mohammed mustafa a', 'islamic teacher', 10000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2201240006', '1', '1', 'upload_files/candidate_tracker/80606508234_MD FARHAN NEW RESUME Dated Dec16th 2021.pdf', NULL, '1', '2022-01-25', 0, '', '3', '59', '2022-01-27', 120000.00, '', '0', NULL, '1', 'Selected as an intern for 5 months with 5K Stipend and 10K Salary thereafter,2 yrs SA 10/12 Submission- Selected by Gokul in the 2nd round', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-24 12:48:21', 1, '2022-01-24 12:52:02', 0, NULL, 1),
(7561, 'B.Rakesh', '4', '9176209600', '8939315303', 'nagamma1509@gmail.com', '2002-12-23', 19, '3', '2', 'Nagamma', 'House keeping', 5000.00, 2, 0.00, 15000.00, 'Korukkupet chennai', 'Korukkupet chennai', '2201240007', '', '1', 'upload_files/candidate_tracker/99317612791_1250166000052611 _ 18-NOV-2021_17-DEC-2021.pdf', NULL, '1', '2022-01-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Age 19yrs 12th passed, comfort to work in non voice process,too long distance too,Not Suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-24 01:02:35', 1, '2022-01-24 01:15:56', 0, NULL, 1),
(7562, 'PAZHANI M', '11', '9003443256', '9884221034', 'Pazhaniraja21@gmail.com', '1995-06-03', 26, '2', '2', 'Murugan', 'Pot maker', 6000.00, 2, 0.00, 25000.00, 'Tiruvannamalai', 'Coimbatore', '2201240008', '1', '1', 'upload_files/candidate_tracker/25782682820_Pazhani (HRM Payroll Questionnaire).pdf', NULL, '3', '2022-01-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-24 07:42:36', 1, '2022-01-24 07:46:47', 0, NULL, 1),
(7563, 'Sandhiya', '11', '8124628747', '8939369432', 'Sandhiyasri27@gmail.com', '1997-06-27', 24, '2', '2', 'Saravanan', 'Sales executive', 20000.00, 1, 15320.00, 16000.00, 'Tharamani', 'Tharamani', '2201240009', '1', '2', 'upload_files/candidate_tracker/27574507553_Resume.pdf', NULL, '1', '2022-01-25', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-24 07:49:27', 1, '2022-01-24 10:06:08', 0, NULL, 1),
(7564, 'Shaik Hamza thabraiz', '4', '9000539738', '9000631270', 'thabraizshaik@gmail.com', '1997-12-16', 24, '2', '2', 'Shaik ghousia Begum', 'House wife', 20000.00, 2, 0.00, 15000.00, 'Kurnool', 'Kurnool', '2201240010', '17', '1', 'upload_files/candidate_tracker/14205904233_hamza\'s resume.docx', NULL, '2', '2022-01-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-24 08:03:29', 1, '2022-01-24 08:10:14', 0, NULL, 1),
(7565, '', '0', '8074966571', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201240011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-24 08:08:14', 0, NULL, 0, NULL, 1),
(7566, 'Sandhiya', '11', '8124628647', '8939369432', 'Sandhiyasri27@gmail.com', '1997-06-27', 24, '2', '2', 'Saravanan', 'Marketing executive', 18000.00, 1, 15300.00, 16000.00, 'Tharamani', 'Tharamani', '2201240012', '1', '2', 'upload_files/candidate_tracker/62523962584_Sandhiya Saravanan.pdf', NULL, '1', '2022-02-05', 7, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'expt16k since her last th sal is 15k. no Relevant exp in recruitment and no basic idea about the profile. she was handling 6ppl in previous org. will not sustain for us. not clear about her current Position. but okay with service agmt.', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-24 09:55:35', 1, '2022-02-04 06:36:33', 0, NULL, 1),
(7567, '', '0', '9786963359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-25 09:31:46', 0, NULL, 0, NULL, 1),
(7568, 'Selvam.A', '6', '8825777067', '9025579465', 'Selav1418@Gmail.Com', '1999-12-14', 22, '1', '2', 'Anandhan.V', 'Hotel Supervisor', 10000.00, 0, 0.00, 13000.00, '467,main Road, Perumpakkam, villupuram District', 'Villupuram', '2201250002', '', '1', 'upload_files/candidate_tracker/49544300045_selvam format of resume .pdf', NULL, '1', '2022-01-25', 0, 'P1065', '3', '59', '2022-02-11', 192000.00, '', NULL, '2023-08-25', '2', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', 'Offer Mail link shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-25 09:46:46', 60, '2022-02-10 05:19:16', 0, NULL, 1),
(7569, 'thirupathi', '4', '9543147379', '', 'thirupathityr18@gmail.com', '2000-10-01', 21, '2', '2', 'G.Sekar', 'farmer', 10000.00, 1, 0.00, 10000.00, 'Tanjavur', 'tanjavur', '2201250003', '1', '1', 'upload_files/candidate_tracker/81747299512_Thirupathi resume pdf 18.12.2021.pdf', NULL, '1', '2022-01-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'discussed and shared the salary breakup,requestde time to gove his confirmation,but after that he is not responding to the calls.Dropped', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-25 09:55:42', 1, '2022-01-25 09:58:42', 0, NULL, 1),
(7570, 'Dhanalakshmi', '4', '6374761418', '8939676190', 'Dhana3372@gmail.com', '1998-07-09', 23, '2', '2', 'Santhana kumar', 'Car driver', 60000.00, 1, 14500.00, 18000.00, 'Chennai', 'Chennai', '2201250004', '1', '2', 'upload_files/candidate_tracker/14099287604_DhanalakshmiCVFinal.pdf', NULL, '1', '2022-01-25', 1, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not intrested in teleclling', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-25 10:12:37', 60, '2022-01-25 04:48:23', 0, NULL, 1),
(7571, 'M.KIRUBA', '16', '8939478545', '', 'kirubamuruganmk@gmail.com', '1998-07-21', 23, '2', '1', 'N.Murugan', 'Retired employee of state govt', 15000.00, 1, 15000.00, 23000.00, 'Kundrathur chennai', 'Kundrathur chennai', '2201250005', '1', '2', 'upload_files/candidate_tracker/30337134104_RESUME_KIRUBA_2022.(C)-converted.pdf', NULL, '1', '2022-01-25', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,not much strong in the areas of excel, but worked in the operations/MIS roles. long distance,will not sustain in our roles\n', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-25 10:41:50', 58, '2022-01-25 11:04:13', 0, NULL, 1),
(7572, 'P.ajay', '4', '9790807216', '7358688158', 'www.ajaymoni0426@gmail.com', '1998-05-04', 23, '3', '2', 'K.pandian', 'Sristi builders', 25000.00, 0, 22000.00, 18000.00, 'Adyar', 'Adyar', '2201250006', '', '2', 'upload_files/candidate_tracker/91368848197_Ajay resume.pdf', NULL, '1', '2022-01-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-25 11:22:38', 1, '2022-01-25 11:31:31', 0, NULL, 1),
(7573, 'A.Justin santhosh', '6', '6382528230', '', 'justinsanthosh12322@gmail.com', '2001-03-08', 20, '2', '2', 'J.Arokia Dass', 'Photo grapher', 20000.00, 1, 0.00, 13000.00, 'Ambattur chennai', 'Ambattur Chennai', '2201250007', '1', '1', 'upload_files/candidate_tracker/53269864521_Justin Santhosh-1.pdf', NULL, '1', '2022-01-25', 0, '', '3', '59', '1970-01-01', 180000.00, '', '2', '1970-01-01', '2', 'Selected for Syed team  with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail link shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-25 11:29:10', 60, '2022-01-25 05:36:29', 0, NULL, 1),
(7574, '', '0', '8608907388', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201250008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-25 11:36:30', 0, NULL, 0, NULL, 1),
(7575, 'Kavipriya U', '4', '8056857225', '8610897123', 'kavipriyaulaganathan@gmail.com', '1995-05-03', 26, '1', '2', 'Ulaganathan M', 'H.r & c.e dept A.a.o (rtd)', 25000.00, 1, 10000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2201250009', '', '2', 'upload_files/candidate_tracker/24152892180_Kavipriya.U Resume.docx', NULL, '1', '2022-01-25', 7, 'P1002', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-25 11:43:53', 1, '2022-01-25 11:49:12', 0, NULL, 1),
(7576, '', '0', '7358731495', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201250010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-25 11:50:05', 0, NULL, 0, NULL, 1),
(7577, '', '0', '9342387882', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201250011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-25 11:59:51', 0, NULL, 0, NULL, 1),
(7578, 'Mohammed mushtaq', '4', '7200451755', '7092852944', 'Mushtaqevil3@gmail.com', '2007-01-25', 0, '1', '2', 'Abdul Razak', 'Business', 20000.00, 1, 15000.00, 18000.00, 'Chennai', 'Old washermenpet', '2201250012', '', '2', 'upload_files/candidate_tracker/59620981137_MOHAMMED MUSHTAQ.pdf', NULL, '3', '2022-01-25', 0, 'JOBS', '3', '59', '2022-01-28', 151584.00, '', '5', '1970-01-01', '1', 'Selected for Muthu Team in Consultant Role', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-25 12:46:26', 60, '2022-01-27 07:00:53', 0, NULL, 1),
(7579, 'RAMAPRIYA', '5', '8072323428', '8807804845', 'Rjrama1697@gmail.com', '1997-07-16', 24, '2', '1', 'Jayaprakash', 'Private companies', 15000.00, 0, 15000.00, 18000.00, 'Tiruverkadu', 'Tiruverkadu', '2201250013', '1', '2', 'upload_files/candidate_tracker/18720679900_rama resume.pdf', NULL, '1', '2022-01-25', 0, '', '3', '59', '2022-01-27', 151584.00, '', '0', NULL, '2', 'Selected for B2B in consultant Role', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-25 01:39:08', 1, '2022-01-25 01:43:46', 0, NULL, 1),
(7580, 'M.dhatchana moorthi', '6', '9087715459', '9176889866', 'dhatchanaking007@gmail.com', '2000-08-09', 21, '2', '2', 'R.murugesan', 'Business', 12000.00, 0, 0.00, 20000.00, 'Korukkupet', 'Korukkupet', '2201250014', '1', '1', 'upload_files/candidate_tracker/31219354440_1250166000052611 _ 18-OCT-2021_17-NOV-2021.pdf', NULL, '1', '2022-01-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication no,need to open a lot, will not sustain in our roles', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-25 02:35:14', 60, '2022-01-25 06:56:39', 0, NULL, 1),
(7581, 'Mohana priya', '16', '6374770226', '8807804845', 'Mohanapriya1606@gmail.com', '1996-11-06', 25, '2', '1', 'Ramachandran. K', 'Private companies', 13000.00, 1, 13000.00, 15000.00, 'Tiruverkadu', 'Tiruverkadu', '2201250015', '1', '2', 'upload_files/candidate_tracker/49453460410_Akka RESUME.pdf', NULL, '1', '2022-01-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,have exp in renewals,but no sustainability,holding an offer for 18K TH,will not sustain and handle our pressure', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-25 03:24:10', 1, '2022-01-25 03:30:41', 0, NULL, 1),
(7582, 'kowsalya', '11', '9629702353', '9629270776', 'gunakowsi1998@gmail.com', '1998-07-27', 23, '2', '2', 'gunasekaran', 'farmer', 20000.00, 2, 13000.00, 15000.00, 'mannargudi', 'chennai', '2201250016', '1', '2', 'upload_files/candidate_tracker/1893717549_Updated Resume Kowsalya - HR Consulatant.pdf', NULL, '1', '2022-01-25', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-25 05:54:24', 1, '2022-01-25 05:58:45', 0, NULL, 1),
(7583, 'Vishal N', '11', '9551869013', '', 'Vishaljohn6395@gmail.com', '1995-03-06', 26, '2', '2', 'Wilson babu maha laskhmi', 'Ttdc', 100000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2201250017', '1', '1', 'upload_files/candidate_tracker/92792635939_vishal updated cv.docx', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no sustainability ,5yrs 4 companies in different domain,salary Exp is too high,fresher for Recruitment,need to train but will not sustain and even the communication also Average', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-25 06:28:27', 1, '2022-01-25 06:31:55', 0, NULL, 1),
(7584, 'Sriram Satish u', '4', '6360931079', '', 'sriramsatish.179@gmail.com', '1994-08-22', 27, '2', '2', 'Shanthi', 'Homemaker', 50.00, 1, 0.00, 18.00, 'Chennai', 'Chennai', '2201260001', '1', '1', 'upload_files/candidate_tracker/60956155004_sriram resume.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'In the second round with Banu/Priyanka he said ok for RE Field for Elite,but in the final round he said not ok for the Field and looking only for the Telecaller but the Salary Exp is around 13K with 1 yr SA,Requestd him to wait for the confirmation on the Salary,but left without attending', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-26 10:06:31', 1, '2022-01-26 10:13:14', 0, NULL, 1),
(7585, 'Prakash G', '4', '7401439180', '', 'prakashgajendran14@gmail.com', '1996-11-14', 25, '2', '2', 'Gajendran', 'Auto driver', 15000.00, 1, 18500.00, 22000.00, 'Choolai chennai', 'Chennai', '2201270001', '1', '2', 'upload_files/candidate_tracker/47125281140_Prakash Resume-Updated-converted (1) (1).pdf', NULL, '1', '2022-01-27', 1, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-27 06:43:47', 60, '2022-01-27 09:56:46', 0, NULL, 1),
(7586, 'A.varsha', '5', '6383027229', '9962032122', 'Varsha.anbazhagan003@gmail.com', '1999-12-21', 22, '2', '2', 'Anbazhagan', 'BSNL', 30000.00, 1, 0.00, 17000.00, 'Velacherry', 'velachery', '2201270002', '17', '1', 'upload_files/candidate_tracker/15704593266_varsharesume old.pdf', NULL, '1', '2022-01-27', 0, '', '3', '59', '2022-01-31', 158496.00, '', '', '2022-02-03', '2', 'Selected for Esale KArthika in PTonly 13K TH', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-27 09:48:05', 60, '2022-01-31 05:00:00', 0, NULL, 1),
(7587, 'Karthick.m', '4', '9080049927', '9042143979', 'Karthickmuthu56@gmail.com', '2000-09-04', 21, '2', '2', 'T.Muthukrishnan', 'Tailor', 11000.00, 1, 12000.00, 15000.00, 'No58 sri srinivasanagar main road', 'Ponniammanmedu, Chennai', '2201270003', '1', '2', 'upload_files/candidate_tracker/34200344925_karthick resume.docx', NULL, '1', '2022-01-27', 3, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have Exp in Starhealth but looking for the opportunities without tsrget and the pressure,will not sustain\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-27 09:57:49', 60, '2022-01-27 10:21:42', 0, NULL, 1),
(7588, 'ARUL M', '4', '6379318044', '9344144233', 'arulajith2707@gmail.com', '1999-07-27', 22, '1', '2', 'Murugesan v', 'Former', 6000.00, 1, 0.00, 15000.00, 'Perungalathur', 'Perungalathur', '2201270004', '', '1', 'upload_files/candidate_tracker/72271171640_ARUL M RESUME.pdf', NULL, '1', '2022-01-27', 0, '55576', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice he will c\nHandle pressure  . So drop\n', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 10:18:44', 1, '2022-01-27 10:37:37', 0, NULL, 1),
(7589, 'R.J.murali', '4', '9344144233', '6379318044', 'mmurali8263@gmail.com', '1999-02-04', 22, '1', '2', 'V.Ravi', 'Former', 15000.00, 2, 0.00, 15000.00, 'Balakrishna Puram', 'Balakrishna Puram', '2201270005', '', '1', 'upload_files/candidate_tracker/12645445156_MURALI RESUME.pdf', NULL, '1', '2022-01-27', 0, '55576', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'Expected salary 16k to 17k  . So drop  1 yrs experience  but digital marketing  field  other platform.  He will not sustain this job.\n', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 10:22:25', 1, '2022-01-27 10:40:34', 0, NULL, 1),
(7590, 'Jaya G', '4', '9444287864', '8527761208', 'jayaguru0207@gmail.com', '1998-07-02', 23, '2', '1', 'Shankar S', 'Manager', 25000.00, 2, 15000.00, 18000.00, 'Porur', 'Thiruvallur', '2201270006', '1', '2', 'upload_files/candidate_tracker/47139387732_Document.pdf', NULL, '1', '2022-01-27', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Job not mandatory  working for calm place . She will not handle in pressure . So drop.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-27 10:25:04', 58, '2022-01-27 02:42:36', 0, NULL, 1),
(7591, 'Jishma p k', '4', '9061091899', '', 'jishmapk@gmail.com', '1999-08-21', 22, '1', '2', 'Valsala', 'Father', 20000.00, 1, 0.00, 10000.00, 'Teynamet', 'Teynamet', '2201270007', '', '1', 'upload_files/candidate_tracker/40470145412_file_27Jan22.pdf', NULL, '1', '2022-01-27', 0, 'thiyagu', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for this profile she donxquott know tamil ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-27 10:29:30', 58, '2022-01-27 01:24:13', 0, NULL, 1),
(7592, 'Saranya.C', '11', '7358617172', '9884443936', 'Saranychandran1807@gmail.com', '1995-07-18', 26, '2', '1', 'Manikandan', 'Admin', 15000.00, 1, 13000.00, 16000.00, 'Keelkatalai', 'Keelkatalai', '2201270008', '1', '2', 'upload_files/candidate_tracker/52464777796_1250166000052611 _ 18-JUL-2020_17-AUG-2020.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Average communication, Recently married and not open for targets and pressure, will not sustain', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-27 10:32:17', 58, '2022-01-27 11:02:02', 0, NULL, 1),
(7593, 'Geerthana', '5', '8098891542', '8675891891', 'geerthanacs27@gmail.com', '1996-11-27', 25, '2', '1', 'Gowtham ram', 'Assistant manager at jio', 35000.00, 1, 300000.00, 360000.00, 'Chennai', 'Chennai', '2201270009', '1', '2', 'upload_files/candidate_tracker/45490602540_RESUME GERTHANA-converted.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is Good,not interested in operations,not open for Esales looking for norml CRM but the salary Exp is 20K min and recently married sustainability doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-27 10:49:37', 58, '2022-01-27 11:02:32', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7594, 'Prem kumar', '4', '8667693260', '7550116437', 'kumarprem2626@gmail.com', '2007-01-27', 0, '3', '2', 'Anandhan', 'Driver', 30000.00, 1, 0.00, 13000.00, '4/49 Jeeva nagar 4th Street New washermenpet', '4/49 Jeeva Nagar 4th Street New Washermenpet', '2201270010', '', '1', 'upload_files/candidate_tracker/71690424136_Prem Kumar Resume.doc', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,have 3 yrs of Exp as Delivery and operation but not interested in MIS Roles,tried for sales but the salary exp is min 25K,recenlt married and sustainabiity in the long run doubts', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 10:49:39', 1, '2022-01-27 11:05:36', 0, NULL, 1),
(7595, 'Gowtham', '4', '8428926097', '9884385699', 'Gowthamappu12@gmail.com', '1998-02-06', 23, '3', '2', 'Ramkumar', 'Election', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2201270011', '', '1', 'upload_files/candidate_tracker/47134846457_gowtham resumee11 (1) (1).pdf', NULL, '1', '2022-01-27', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'looking for non voice process not suitable for this profile', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 10:49:52', 1, '2022-01-27 11:06:19', 0, NULL, 1),
(7596, 'Vishal', '4', '7358484932', '', 'vishalvishalvishal32470@gmail.com', '1997-07-26', 24, '1', '2', 'Saravanan', 'Employ', 20000.00, 0, 0.00, 15000.00, 'Korattur', 'Chennai', '2201270012', '', '1', 'upload_files/candidate_tracker/13669281581_NEW RESUME.pdf', NULL, '1', '2022-01-27', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'not suitable for voice process he is looking for non voice process', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 11:43:03', 1, '2022-01-27 12:09:06', 0, NULL, 1),
(7597, 'Saravanan', '13', '9551345755', '9444821010', 'saravnan.tn@gmail.com', '1990-07-05', 31, '1', '1', 'Lakshmi (mother)', 'Html developer', 5000.00, 1, 30000.00, 30000.00, '7, nehru Street, L.Endathur', 'Mylapore', '2201270013', '', '2', 'upload_files/candidate_tracker/29218378377_Resume.docx', NULL, '1', '2022-01-27', 4, 'JOBSARUN', '5', '59', NULL, 0.00, '', '0', NULL, '1', '	No Basic Knowledge Related To Php,Have Ideas In Html ,Css Only But Interested To Learn, Age Around 31 Yrs,Pressure handling doubt and will not sustain\n', '2', '2', '0', '1', '1', '0', '2', '2022-01-29', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 11:43:46', 1, '2022-01-27 11:49:28', 0, NULL, 1),
(7598, 'Hariharan.p', '4', '6369390898', '8098587975', 'hariharanpazhamalai@gmail.com', '1998-02-08', 23, '2', '2', 'Pazhamalai', 'Shop', 10000.00, 2, 15000.00, 18000.00, 'Ashok nagar', 'Ashok nagar', '2201270014', '1', '2', 'upload_files/candidate_tracker/66501432839_hariharan resum.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate didnt come back with his confirmation', '1', '1', '0', '1', '1', '0', '2', '2022-01-29', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-27 12:17:32', 1, '2022-01-27 12:27:00', 0, NULL, 1),
(7599, 'C.R.VENGATESH', '4', '6374551172', '9342466055', 'sathishsandy476@gmail.com', '1999-04-04', 22, '2', '2', 'C.Ramasamy', 'Collector office (OA)', 10000.00, 2, 17000.00, 18000.00, 'Cuddalore', 'Ashok nagar', '2201270015', '1', '2', 'upload_files/candidate_tracker/26986541352_C.R. VENGATESH_CHAN.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Shared the SAlary breakup,candidate didnt cmoe back with his confirmation', '1', '1', '0', '1', '1', '0', '2', '2022-01-29', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-27 12:18:30', 1, '2022-01-27 12:23:09', 0, NULL, 1),
(7600, 'Joslin Rashmi', '11', '9962086211', '7397462939', 'rashmiramesh98jj@gmail.com', '1998-03-08', 23, '2', '2', 'Ramesh F', 'Teashop', 70000.00, 1, 29992.00, 23000.00, 'Kodambakkam, Chennai T. Nagar', 'Kodambakkam,Chennai T. Nagar', '2201270016', '1', '2', 'upload_files/candidate_tracker/10007912417_JS resume.docx', NULL, '1', '2022-01-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication is Good,have exp in recruitment for 3 months and her current pay  30K,Salary Exp is very high and will not sustain for a long as she is getting married in few months', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-27 12:27:00', 58, '2022-01-27 12:41:52', 0, NULL, 1),
(7601, 'Saravana Babu', '26', '9941248604', '7550263477', 'saravananbabu93@gmail.com', '1993-06-20', 28, '2', '1', 'Lakshmi B', 'House wife', 15000.00, 2, 18000.00, 20000.00, 'Chennai', 'Chennai', '2201270017', '1', '2', 'upload_files/candidate_tracker/92927173979_Resume saravanan Jan 2022.pdf', NULL, '1', '2022-01-27', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication,no basic knowledge in terms of MF,Have Exp as a document verifier only,will not handle our pressure and sustain ', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '4', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-27 12:44:20', 58, '2022-01-27 01:12:51', 0, NULL, 1),
(7602, 'S.Vinoth', '6', '7401771782', '9941825241', 'vinodsthevaan@gmail.com', '1997-06-05', 24, '1', '2', 'Selva kumar', 'Daily veges', 25000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2201270018', '', '1', 'upload_files/candidate_tracker/70972486379_Vinoth Original.. .pdf', NULL, '1', '2022-01-27', 0, 'P1145', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'No fit', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 01:16:34', 1, '2022-01-27 01:29:22', 0, NULL, 1),
(7603, 'balaji mohan', '4', '8015578811', '9894855896', 'mohanbalaji553@gmail.com', '1999-01-30', 22, '2', '2', 'Ananthi', 'Housewife', 10000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Cuddalore', '2201270019', '1', '1', 'upload_files/candidate_tracker/66349194801_balaji resum.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication looking for the core, for time being looking for opportunities,Will not sustain.Need to open up a lot', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-27 01:26:58', 1, '2022-01-27 01:30:56', 0, NULL, 1),
(7604, 'Manikandan', '4', '7502961100', '9486838300', 'manikandan00411@gmail.com', '1999-02-15', 22, '2', '2', 'Ramalingam', 'Gold work', 10000.00, 1, 0.00, 15000.00, '15 ER st Cuddalore', '15 ER st Cuddalore', '2201270020', '1', '1', 'upload_files/candidate_tracker/14134987520_1643014179040_RESUME_-__Manikandan_2021.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open,no communication,Looking for non voice only', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-27 01:27:09', 1, '2022-01-27 01:38:31', 0, NULL, 1),
(7605, '', '0', '9025175457', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201270021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-27 02:53:44', 0, NULL, 0, NULL, 1),
(7606, 'Divya bai', '16', '9790818069', '9025175457', 'n.divyabai@gmail.com', '1994-08-14', 27, '2', '1', 'Veda', 'Salesman', 27000.00, 1, 2.50, 2.50, 'Chennai', 'Chennai', '2201270022', '1', '2', 'upload_files/candidate_tracker/20864681123_1250166000052611 _ 18-NOV-2021_17-DEC-2021.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication,Career Gap and looking for accounts positions,not good in MIS Activities,no ideas on Excel,will not sustain and the exp is also high', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '7', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-27 03:08:56', 58, '2022-01-27 03:25:39', 0, NULL, 1),
(7607, 'Kousalya.r', '4', '7373994585', '8760101589', 'kousalyaraja1997@gmail.com', '1997-03-09', 24, '1', '2', 'Raja', 'Farmar', 40000.00, 1, 0.00, 17000.00, 'Kumbakonam', 'Nungapakkam', '2201280001', '', '1', 'upload_files/candidate_tracker/4852913226_Document (1).docx', NULL, '1', '2022-01-28', 0, 'muthu', '3', '59', '2022-01-29', 150000.00, '', '', '2022-02-04', '2', 'Selected for Muthu Team in consultant role 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-28 10:22:53', 60, '2022-01-28 06:52:32', 0, NULL, 1),
(7608, 'Asha', '4', '9025971957', '9786708029', 'ashaas24062000@gmail.com', '2000-07-24', 21, '3', '2', 'K.Aruldoss', 'BBA', 20000.00, 2, 9500.00, 10000.00, 'Tiruttani', 'Tiruttani', '2201280002', '', '2', 'upload_files/candidate_tracker/69983955284_ASHA RESUME.docx', NULL, '3', '2022-01-28', 0, '', '3', '59', '2022-01-29', 126312.00, '', '6', '2022-03-12', '2', 'Selected for Dhanalakshmi in consultant 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-28 10:33:00', 60, '2022-01-28 06:35:28', 0, NULL, 1),
(7609, 'PALANIYANDI', '6', '8778800889', '', 'vijayranjithith@gmail.com', '1998-06-17', 23, '2', '2', 'palaniappan', 'passed away', 15000.00, 1, 0.00, 10000.00, 'dindigul', 'Dindigul', '2201280003', '1', '1', 'upload_files/candidate_tracker/50048463996_Resume202010110428 (1).pdf', NULL, '2', '2022-01-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-28 10:34:31', 1, '2022-01-28 10:38:15', 0, NULL, 1),
(7610, 'M BHAVANI', '4', '7338790719', '', 'bhavanim867@gmail.com', '1998-01-18', 24, '1', '2', 'No.18/19 R,block Kottupuram', 'Painter', 15000.00, 4, 0.00, 12000.00, 'No.18,19R,block kotturpuram', 'Chennai', '2201280004', '', '1', 'upload_files/candidate_tracker/18487891907_BHAVANI RESUME.docx', NULL, '1', '2022-01-28', 0, 'P1145', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-28 10:35:37', 1, '2022-01-28 10:50:53', 0, NULL, 1),
(7611, 'Nibash.S', '4', '9080681365', '7092888364', 'Nibash2666@gmail.com', '1999-06-26', 22, '2', '2', 'Sivamoorthy', 'Business', 40000.00, 2, 15000.00, 15000.00, 'Chinnamanur', 'Medavakkam', '2201280005', '1', '2', 'upload_files/candidate_tracker/79499633677_1250166000052611 _ 18-NOV-2021_17-DEC-2021.pdf', NULL, '1', '2022-01-28', 0, '', '3', '59', '2022-01-31', 150000.00, '', '4', '2022-10-01', '2', 'Selected for Muthu team in Consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail Shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-28 11:45:36', 60, '2022-01-28 07:13:22', 0, NULL, 1),
(7612, 'Shabeer Ahmed', '6', '7305435492', '7305681452', 'shabeerahmed3117@gmail.com', '2000-08-17', 21, '2', '2', 'Basheer Ahmed', 'Cooli', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2201280006', '1', '2', 'upload_files/candidate_tracker/52507194751_Resume Shabeer Ahamed Resume.docx', NULL, '1', '2022-01-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,have exp in telecalling,Salary Exp is very High,Not open for Field will not sustain for a long', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-28 12:05:42', 1, '2022-01-28 12:20:50', 0, NULL, 1),
(7613, 'Gokulnath S', '6', '7010823043', '9360071651', 'rgokulgr@gmail.com', '1997-09-13', 24, '2', '2', 'Siva', 'Former', 20000.00, 1, 18000.00, 20000.00, 'Panruti', 'Sri nidhi appartment,sivasubramanian St,madipakkam', '2201280007', '1', '2', 'upload_files/candidate_tracker/46644120883_gokul resume.docx new 28-01-22.pdf', NULL, '1', '2022-01-28', 1, '', '3', '59', '2022-01-31', 216000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in Consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent,Selected for Syed in Consultant Role,need to move in Staff Role after 3-6 months', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-28 01:00:54', 60, '2022-01-28 06:43:22', 0, NULL, 1),
(7614, 'Praveena', '4', '8667795460', '7395990290', 'crazypraveena84@gmail.com', '2001-06-28', 20, '1', '2', 'Marimuthu', 'Security', 20000.00, 0, 0.00, 14000.00, 'Chennai', 'Velachery', '2201280008', '', '1', 'upload_files/candidate_tracker/74145844321_kavitha resume.docx', NULL, '1', '2022-01-28', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice,no communication,5 months 2 companies', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-28 02:43:02', 1, '2022-01-28 02:47:31', 0, NULL, 1),
(7615, 'Arungopi', '4', '8760101589', '9786016030', 'Arungopis1995@gmail.com', '1995-07-01', 26, '3', '2', '2', 'Former', 200000.00, 2, 12500.00, 20000.00, 'Kumbakonam', 'Nungambakkam', '2201280009', '', '2', 'upload_files/candidate_tracker/49527736085_1250166000052611 _ 18-JUL-2020_17-AUG-2020.pdf', NULL, '1', '2022-01-28', 5, '', '3', '59', '2022-02-07', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Muthu team in consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-28 03:45:40', 60, '2022-01-28 07:18:39', 0, NULL, 1),
(7616, 'B.Kalaiselvi', '4', '6374887203', '8248801462', 'selvikalai6475@gmail.com', '2001-09-24', 20, '2', '2', 'E.Baskar', 'B.sc Maths', 10000.00, 2, 0.00, 11000.00, 'Gudapakkam', 'Gudapakkam', '2201290001', '1', '1', 'upload_files/candidate_tracker/49462659253_Kalaiselvi B Resume (1).pdf', NULL, '1', '2022-01-29', 0, '', '3', '59', '2022-01-31', 126312.00, '', '6', '2022-03-12', '2', 'Selected for Tiruvallur Consultant 5%', '1', '2', '', '4', '6', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1000', '', NULL, NULL, NULL, 1, '2022-01-29 10:32:47', 60, '2022-01-29 05:36:28', 0, NULL, 1),
(7617, 'M. Priyanga', '11', '6369614668', '8056109566', 'priyamurugesan2514@gmail.com', '1994-07-25', 27, '2', '2', 'Parent', 'Nil', 18000.00, 1, 15000.00, 18000.00, 'Velachery', 'Velachery', '2201290002', '1', '2', 'upload_files/candidate_tracker/22542837795_Priyanga Experience Resume-2022.pdf', NULL, '1', '2022-01-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication,every 6 month shofter jobs,will not sustain in our roles', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-29 11:29:51', 1, '2022-01-29 11:35:00', 0, NULL, 1),
(7618, '', '0', '7358219686', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201290003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-29 01:18:22', 0, NULL, 0, NULL, 1),
(7619, 'S.P.RAMU', '6', '8825747736', '9514408221', 'Ramusp101098@gmail.com', '1998-10-10', 23, '2', '2', 'S.P.PUNNIYAKOTI', 'Daily wages', 10000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2201290004', '1', '2', 'upload_files/candidate_tracker/46330916522_Ramu.doc', NULL, '1', '2022-01-29', 1, '', '3', '59', '2022-01-31', 186000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-29 01:19:09', 60, '2022-01-31 05:02:31', 0, NULL, 1),
(7620, '', '0', '8428054673', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201290005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-29 01:47:18', 0, NULL, 0, NULL, 1),
(7621, '', '0', '7868099362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201290006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-29 02:39:50', 0, NULL, 0, NULL, 1),
(7622, '', '0', '9524644743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201290007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-29 05:24:17', 0, NULL, 0, NULL, 1),
(7623, 'Priya srinivasan', '11', '9597950113', '9597676113', 'priyasrinivasan711@gmail.com', '1998-07-28', 23, '2', '2', 'Eswari S', 'Business', 10000.00, 1, 11000.00, 13000.00, 'Chennai', 'Chennai', '2201290008', '1', '2', 'upload_files/candidate_tracker/67405088449_1638339484228_Priyatharsini', NULL, '3', '2022-02-02', 7, '', '5', '83', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no flow in speech, will not be suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-29 08:01:03', 58, '2022-02-02 10:03:24', 0, NULL, 1),
(7624, 'Atheeswaran k', '5', '8946096837', '7448441200', 'atheeav2252@gmail.com', '1993-11-19', 28, '2', '1', 'GEETHA', 'Chennai', 400000.00, 4, 30000.00, 33000.00, 'Madurai', 'Chennai', '2201310001', '22', '2', 'upload_files/candidate_tracker/74790120715_AtheeswaranRESUME.pdf', NULL, '1', '2022-01-31', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-31 10:25:59', 1, '2022-01-31 10:30:27', 0, NULL, 1),
(7625, 'prasanakumar', '4', '9790768362', '', '19PRAS96@GMAIL.COM', '1996-11-17', 25, '1', '2', 'kumaraguruparan', 'ashok leland', 45000.00, 1, 0.00, 12000.00, 'chennai', 'Chennai', '2201310002', '', '1', 'upload_files/candidate_tracker/92807595635_kumar96resume96.docx', NULL, '1', '2022-01-31', 0, 'muthu', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for hassle free job ,no pressure handling will not sustain', '1', '1', '', '', '', '', '1', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-31 10:27:11', 58, '2022-01-31 11:25:26', 0, NULL, 1),
(7626, 'nathishs', '4', '9094070051', '7358620995', 'rajanadhi418@gmail.com', '1999-02-02', 22, '2', '1', 'Raja', 'AC mechanic', 15000.00, 1, 0.00, 13000.00, 'T.Nagar', 'Saidapet', '2201310003', '1', '2', 'upload_files/candidate_tracker/40746724538_AllPDF.pdf', NULL, '1', '2022-01-31', 0, '', '3', '59', '2022-02-03', 164208.00, '', '6', '2022-09-12', '1', 'Selected for  B2B Staff Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-31 10:28:57', 60, '2022-01-31 06:37:57', 0, NULL, 1),
(7627, 'Rathi priya', '4', '6385674317', '', 'Rathipriya1100@gmail.com', '1999-11-21', 22, '2', '2', 'Gunasekar', 'Frammer', 10000.00, 1, 0.00, 12000.00, 'Ranipet', 'Kovilapakam', '2201310004', '1', '1', 'upload_files/candidate_tracker/73083403928_resume.pdf', NULL, '1', '2022-01-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot,much suits for non voice ,will not handle the pressure', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1000', '', NULL, NULL, NULL, 1, '2022-01-31 10:32:43', 58, '2022-01-31 11:24:22', 0, NULL, 1),
(7628, 'Thamilarasan u', '4', '8668073288', '', 'U.thamizharasan1990@gmaim.com', '1990-05-25', 31, '2', '1', 'Christianna presious', 'Nill', 15000.00, 2, 20000.00, 25000.00, 'Thiruvallur', 'Thiruvallur', '2201310005', '16', '2', 'upload_files/candidate_tracker/13670220305_Today resume.docx', NULL, '1', '2022-01-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-31 10:56:51', 1, '2022-01-31 11:06:26', 0, NULL, 1),
(7629, 'Anusuya K.R', '13', '7358371383', '9551200584', 'anuanusuyakr@gmail.com', '2000-08-22', 21, '3', '2', 'Krishna moorthi', 'Supervisor', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2201310006', '', '1', 'upload_files/candidate_tracker/31475000064_anusuya.k.r. resume.pdf', NULL, '1', '2022-01-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Moved for 2nd Round,but left in between as her parents are not ok with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-31 11:26:20', 1, '2022-01-31 11:29:43', 0, NULL, 1),
(7630, 'S.lakeetharan', '4', '9629463203', '9629527520', 'lakeetharan@gmail.com', '1995-12-31', 26, '1', '2', 'Selvaraj', 'Real estate', 40000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2201310007', '', '1', 'upload_files/candidate_tracker/77806980386_Lakeetharan_MechanicalDesignEngineer_CV (1)-1.pdf', NULL, '1', '2022-01-31', 0, 'P1002', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-31 11:58:12', 1, '2022-01-31 12:06:22', 0, NULL, 1),
(7631, 'Ramachandran M', '16', '7871770216', '9791753725', 'kuttyrama30@gmail.com', '1999-07-20', 22, '2', '2', 'G murugahaiya', 'Car driver', 15000.00, 2, 10700.00, 18000.00, 'Chennai', 'Chennai', '2201310008', '1', '2', 'upload_files/candidate_tracker/91430450986_Resume_Ramachandran M_Format2.pdf', NULL, '1', '2022-01-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication,not much comfort in the Exel areas,will not handle the pressure', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-31 12:32:52', 1, '2022-01-31 12:37:10', 0, NULL, 1),
(7632, 'M. Suguna', '4', '6381377956', '8608569364', 'Suguna172@gmail.com', '1987-02-17', 34, '2', '2', 'M. Kasthuri', 'House wife', 20000.00, 3, 0.00, 18000.00, 'Thiruvarur', 'Tambaram -urapakkam', '2201310009', '1', '2', 'upload_files/candidate_tracker/94005080797_CV_2021-08-12-080534.pdf', NULL, '1', '2022-01-31', 0, '', '3', '59', '2022-02-01', 164208.00, '', '', '2022-02-04', '2', 'Selected for Banu B2B 5% TDS', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-31 12:56:00', 60, '2022-01-31 06:25:15', 0, NULL, 1),
(7633, 'R. Manikandan', '5', '9789897179', '8973240132', 'Manisiva290788@gmail.com', '1988-07-29', 33, '2', '1', 'M. Deepa', 'House wife', 21000.00, 3, 21000.00, 35000.00, 'Needamangalam', 'Ambattur', '2201310010', '1', '2', 'upload_files/candidate_tracker/75822017033_MANI RESUME.pdf', NULL, '1', '2022-01-31', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking Only For The Team Lead Role,Very High Exp Ut Not Much Capable As Per Expectation.Can Give A Try For RM,But Salary Exceeds The More', '5', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-01-31 01:05:52', 1, '2022-01-31 01:25:35', 0, NULL, 1),
(7634, '', '0', '9962839542', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201310011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-31 01:06:59', 0, NULL, 0, NULL, 1),
(7635, 'Ramamoorthy', '4', '9025347240', '7810073084', 'sakthimubi27@gmail.com', '2001-08-27', 20, '2', '2', 'Murugan. M', 'Formar', 80000.00, 0, 0.00, 20000.00, 'Kalakurichi', 'Chennai', '2201310012', '1', '1', 'upload_files/candidate_tracker/27562433647_RAMAMOORTHY M.pdf', NULL, '1', '2022-01-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok but much comfort to work in non voice ,Yet to complete his graduation and the statement seems to be wrong in most of the places', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-31 01:39:10', 52, '2022-01-31 02:38:41', 0, NULL, 1),
(7636, 'Prathibha M', '11', '8639979905', '', 'mprathibha54@gmail.com', '1987-10-10', 34, '2', '1', 'Sreenivasulu C', 'IT', 45000.00, 3, 15000.00, 20000.00, 'Chennai', 'Chennai', '2201310013', '1', '2', 'upload_files/candidate_tracker/10623402156_1643603027681_Prathibha Resume 200122.doc', NULL, '1', '2022-01-31', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication long career Gap,will not sustain\n', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-31 02:35:50', 1, '2022-01-31 02:52:35', 0, NULL, 1),
(7637, 'Kesavan', '5', '9884664451', '8122862896', 'kesjay2420@gmail.com', '1990-06-24', 31, '2', '2', 'Thilagavathy', 'Cooli', 15000.00, 2, 21000.00, 25000.00, 'Ambattur', 'Ambattur', '2201310014', '16', '2', 'upload_files/candidate_tracker/9632298446_KESAVAN RESUME.pdf', NULL, '1', '2022-01-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking only for the team lead role,very high Exp ut not much capable as per expectation.Can give a try for RM,but Salary Exceeds the more', '5', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-31 02:46:24', 1, '2022-01-31 02:51:33', 0, NULL, 1),
(7638, 'Lokesh', '4', '9159482071', '9080249943', 'lokeshatp44@gmail.com', '2000-10-15', 21, '1', '2', 'Kumaran', 'Self employed', 17000.00, 1, 0.00, 17000.00, 'Thiruvallur', 'Thiruvallur', '2201310015', '', '1', 'upload_files/candidate_tracker/53401311510_lokesh.K.pdf', NULL, '1', '2022-01-31', 0, 'R55562', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-31 03:08:03', 1, '2022-01-31 03:16:22', 0, NULL, 1),
(7639, 'Saraswathi', '4', '6383105068', '7010102949', 'saraswathipalanivel55@gmail.com', '1998-07-20', 23, '2', '2', 'Aravinth', 'Weaving', 20000.00, 5, 12000.00, 20000.00, 'Jayakondam', 'Sripermbathur', '2201310016', '1', '2', 'upload_files/candidate_tracker/16971228941_saraswathi resume.pdf', NULL, '1', '2022-02-01', 15, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SHE IS LOOKING  FOR NON VOICE xxamp  NOT HANDLE TO PRESSURE HANDLING. SO REJECTED.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-31 06:48:21', 58, '2022-02-01 10:47:14', 0, NULL, 1),
(7640, '', '0', '6380735459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201310017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-31 07:47:46', 0, NULL, 0, NULL, 1),
(7641, 'ramesh prasanna b', '5', '9176660388', '7010734939', 'ramesh.prasanna16@gmail.com', '1980-12-16', 41, '3', '2', 'sundari b', 'homemaker', 1150000.00, 1, 1150000.00, 1300000.00, 'chennai', 'chennai', '2201310018', '', '2', 'upload_files/candidate_tracker/15170014513_Ramesh Prasanna.pdf', NULL, '1', '2022-01-31', 0, '', '3', '59', '2022-02-07', 1300000.00, '', NULL, '2023-05-18', '1', 'Selected as regional head Direct Marketing with PF/PT', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-31 09:00:26', 60, '2022-02-01 01:19:25', 0, NULL, 1),
(7642, 'vinith kumar', '6', '9384637613', '', 'vinithkumardv@gmail.com', '1999-06-07', 22, '2', '2', 'd dhandapani', 'painter', 200000.00, 1, 12000.00, 14000.00, 'teyanmp', 'saidapet', '2202010001', '1', '2', 'upload_files/candidate_tracker/98338726725_VINITH RESUME.docx', NULL, '1', '2022-02-01', 0, '', '3', '59', '2022-02-02', 210000.00, '', '', '2022-03-03', '1', 'Selected for Syed Team in PF/ESI /PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-01 10:06:02', 60, '2022-03-03 12:03:32', 0, NULL, 1),
(7643, 'Vignesh .v', '6', '7358040450', '7418498540', 'Vignesh12.vijayakumar@gmail.com', '1999-09-12', 22, '2', '2', 'Vijayakumar', 'Railway', 80000.00, 3, 16500.00, 2.00, 'Jolarpettai', 'Ambattur', '2202010002', '1', '2', 'upload_files/candidate_tracker/19404359947_1643279809423Resume_Vignesh.pdf', NULL, '1', '2022-02-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-01 10:55:56', 58, '2022-02-01 11:50:16', 0, NULL, 1),
(7644, 'Vaitheshwari Udeshkumar', '11', '6383795808', '9003121386', 'Vaithyudesh@gmail.com', '2000-10-21', 21, '2', '2', 'Udeshkumar', 'Business', 50000.00, 1, 240000.00, 240000.00, 'Chennai', 'chennai', '2202010003', '1', '2', 'upload_files/candidate_tracker/67037959901_VAITHESHWARI RESUME.pdf', NULL, '1', '2022-02-01', 0, '', '3', '59', '2022-02-09', 144000.00, '', '6', '2022-02-11', '2', 'Selected for HR Recruitment in Internship Employment model', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-01 11:04:30', 1, '2022-02-01 11:57:49', 0, NULL, 1),
(7645, 'nivedha', '4', '9677577067', '', 'nivisekar7@gmail.com', '1996-07-30', 25, '1', '2', 'unmarried', 'nil', 25000.00, 3, 9000.00, 11500.00, 'vaduvur', 'vaduvur', '2202010004', '', '2', 'upload_files/candidate_tracker/68335606587_nivi cv 2021(1).pdf', NULL, '1', '2022-02-01', 12, 'p1023', '3', '59', '2022-02-04', 138948.00, '', '3', '2022-05-05', '2', 'Seleceted for Thanjavur Location in consultant 5%', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-01 11:29:23', 60, '2022-02-03 08:35:46', 0, NULL, 1),
(7646, 'Manimaran.T', '4', '9751215484', '6369494681', 'manimaranjr007@gmail.com', '1998-12-01', 23, '1', '2', 'Thiyagarajan.m', 'Meshan', 15000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2202010005', '', '1', 'upload_files/candidate_tracker/87155908699_Manimaran cv.pdf', NULL, '1', '2022-02-01', 0, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-01 11:46:47', 1, '2022-02-01 11:56:50', 0, NULL, 1),
(7647, 'Mohamed asith.D', '4', '9080939292', '8220203284', 'mohamedasith6741@gmail.com', '1999-09-14', 22, '1', '2', 'DEEN mohamed', 'Cooli', 6000.00, 1, 0.00, 10000.00, 'No.8 Mariyal 3rd Street ,n.k road, Thanjavur', 'Mariyal 6th Street New colony ,n.k road Thanjavur', '2202010006', '', '1', 'upload_files/candidate_tracker/74541125428_asith bbb.pdf', NULL, '1', '2022-02-01', 0, 'P1023', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-01 11:46:58', 1, '2022-02-01 11:54:33', 0, NULL, 1),
(7648, 'Mohamed satharkhan. M', '4', '9159700965', '6369494681', 'Veangaisathar@gmail.com', '1998-06-06', 23, '1', '2', 'A. Mahaboobkhan', 'Welder', 15000.00, 2, 0.00, 10000.00, '44. Seedha nagar, vilar road thanjavur', '44.seedha nagar,vilar road thanjavur', '2202010007', '', '1', 'upload_files/candidate_tracker/49099423838_DOC-20190719-WA0000-1-[1].docx', NULL, '1', '2022-02-01', 0, 'P1023', '3', '59', '2022-02-07', 126312.00, '', '6', '2023-01-23', '1', 'selected for Thanjavur Location in Consultant 5%', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-01 11:47:05', 60, '2022-02-04 03:19:21', 0, NULL, 1),
(7649, 'DinaKaran M', '11', '9600330486', '8270590490', 'dinakaran015@gmail.com', '1998-12-12', 23, '3', '2', 'Munusamy N', 'Farmer', 3000000.00, 1, 0.00, 10000.00, 'No. 367 ettiyapuram vallivagai post Tiruvannamalai', 'Perambur', '2202010008', '', '1', 'upload_files/candidate_tracker/86854536634__DINAKARAN M.RESUME-converted.pdf', NULL, '1', '2022-02-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'communiation average,will not sustain in our role', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-01 12:02:41', 1, '2022-02-01 12:06:12', 0, NULL, 1),
(7650, 'Priya s', '4', '6382610561', '', 'priyasp1321@gmail.com', '2001-09-13', 20, '3', '2', 'Seenan', 'Cooli', 6000.00, 2, 0.00, 15000.00, 'Mayor bas dev1 St,Oldwashermenpet', 'Oldwashermenpet', '2202010009', '', '1', 'upload_files/candidate_tracker/86502818212_RESUME 2 side.docx', NULL, '1', '2022-02-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable\n', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-01 12:41:59', 1, '2022-02-01 12:51:39', 0, NULL, 1),
(7651, 'VIGNESH', '4', '6382768311', '8680804053', 'vigneshm1413@gmail.com', '1999-06-13', 22, '2', '1', 'Mary shoba', 'Nurse', 25000.00, 1, 18000.00, 22000.00, 'Perambur', 'Moolakadai', '2202010010', '1', '2', 'upload_files/candidate_tracker/79921845620_vignesh (1).pdf', NULL, '1', '2022-02-01', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Shortlisted but  dropped as the candidate was not turned back with his confirmation,also seems to have large expectation on the Pay', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-01 01:06:32', 1, '2022-02-01 01:12:14', 0, NULL, 1),
(7652, '', '0', '6381748104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202010011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-01 01:41:57', 0, NULL, 0, NULL, 1),
(7653, '', '0', '8660630067', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202010012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-01 01:57:20', 0, NULL, 0, NULL, 1),
(7654, 'Keshavraj S', '5', '8660630066', '9916277265', 'keshavraj191@gmail.com', '1990-04-30', 31, '1', '2', 'Sampath', 'Auto driver', 20000.00, 2, 23000.00, 30000.00, 'Bangalore', 'Bangalore', '2202010013', '', '2', 'upload_files/candidate_tracker/78419603401_my%20updated%20resume.docx', NULL, '1', '2022-02-01', 0, '55601', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-01 02:03:39', 1, '2022-02-01 02:07:09', 0, NULL, 1),
(7655, 'Sathish', '4', '8925010051', '', 'Sathishasha0000@gmail.com', '1996-08-28', 25, '2', '2', 'Mohan', 'Self employed', 30000.00, 0, 16000.00, 20000.00, 'Tiruvannamalai', 'Chennai', '2202010014', '1', '2', 'upload_files/candidate_tracker/66889409834_Sathish(2)-converted(2).pdf', NULL, '1', '2022-02-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Working Exp in Telecalling, currently looking for WFH,need some time to come out of his sudden demise of their parents\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-01 02:27:47', 1, '2022-02-03 11:47:25', 0, NULL, 1),
(7656, 'Harrshini M N', '11', '8147466545', '', 'harrshini.mn@gmail.com', '1996-11-29', 25, '2', '2', 'Murali V', 'Retired advertising manager', 60000.00, 1, 0.00, 200000.00, 'Chennai', 'Chei', '2202010015', '1', '1', 'upload_files/candidate_tracker/10016169046_Harshini CV.pdf', NULL, '1', '2022-02-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-01 03:49:27', 1, '2022-02-01 03:52:42', 0, NULL, 1),
(7657, '', '0', '9985882127', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202010016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-01 04:00:26', 0, NULL, 0, NULL, 1),
(7658, 'Gaddam Gopi Krishna', '17', '7304561945', '9392736475', 'Gopi.krishna1203@gmail.com', '1985-07-04', 0, '2', '2', 'Gaddam niranjan reddy', 'Retired bank manager', 30000.00, 2, 54166.00, 53000.00, '70000', 'Hyderabad', '2202010017', '19', '2', 'upload_files/candidate_tracker/76754704786_gopi krishna CV (1).docx', NULL, '1', '2022-02-03', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Ok candidate but not suitable for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-01 05:04:23', 1, '2022-02-01 05:18:48', 0, NULL, 1),
(7659, '', '0', '7358629452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202010018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-01 06:16:22', 0, NULL, 0, NULL, 1),
(7660, 'suganya devi s', '4', '8015809959', '9600992243', 'suganya.christ16@gmail.com', '1993-06-16', 28, '2', '1', 'manoj', 'software', 35000.00, 2, 0.00, 18000.00, 'tiruvallur', 'Tiruvallur', '2202010019', '1', '1', 'upload_files/candidate_tracker/7952201265_Suganya Devi S -CV.pdf', NULL, '1', '2022-02-03', 0, '', '3', '59', '2022-02-07', 151584.00, '', '6', '2022-03-12', '1', 'Selected for Tiruvallur Location in Consltant 5%', '1', '1', '', '1', '6', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-01 06:48:11', 60, '2022-02-04 06:18:12', 0, NULL, 1),
(7661, '', '0', '9791283265', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202020001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-02 07:40:05', 0, NULL, 0, NULL, 1),
(7662, 'Stephen raj.m', '4', '9176098625', '', 'Iamsteve2k@email.com', '2000-11-15', 21, '2', '2', 'MURUGANANTHAM', 'Mason', 30000.00, 0, 0.00, 13000.00, 'Avadi', 'Avadi', '2202020002', '1', '1', 'upload_files/candidate_tracker/27637472793_stephen raj resume-1.pdf', NULL, '1', '2022-02-02', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Doubt  for Sustainability and 2 times called him for this he said will confirm will call like that so not suitable for this profile', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-02 08:35:02', 58, '2022-02-02 04:05:29', 0, NULL, 1),
(7663, 'B.LEELAVATHY', '4', '8754710094', '', 'leelap03@gmail.com', '1992-10-13', 29, '2', '1', 'G.BALAJI', 'CUSTOMER SERVICE EXECUTIVE', 15000.00, 1, 12000.00, 15000.00, '45/3 Sharma nagar 4th Street Chennai', '45/3 Sharma nagar 4th Street Chennai', '2202020003', '1', '2', 'upload_files/candidate_tracker/86648043348_Leela.pdf', NULL, '1', '2022-02-02', 0, '', '3', '59', '2022-02-07', 156000.00, '', '3', '2022-02-21', '1', 'Selected for B2B Staff Role', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-02 10:54:51', 60, '2022-02-05 05:10:01', 0, NULL, 1),
(7664, 'Jayasri R', '4', '9585506154', '7094839323', 'jayasriravi2502@gmail.com', '1998-02-25', 23, '2', '2', 'ravikavitha', 'Farmer', 20000.00, 4, 15000.00, 17000.00, 'Nemili', 'Nemili', '2202020004', '1', '2', 'upload_files/candidate_tracker/10177739863_Resume - Jayasree 01.11.2021.pdf', NULL, '1', '2022-02-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Tried Reaching Again On 10Feb Not Responding /Disconnecting The Call', '1', '1', '', '1', '1', '', '1', '2022-02-11', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-02 11:37:43', 58, '2022-02-08 01:08:29', 0, NULL, 1),
(7665, 'Divya T', '4', '7305688765', '', 'divyathangaiyan99@gmail.com', '2000-06-14', 21, '1', '2', 'Thangaiyan.T', 'Former', 15000.00, 3, 0.00, 10000.00, 'Rajaghiri', 'Rajaghiri', '2202020005', '', '1', 'upload_files/candidate_tracker/12526032852_Divya.pdf', NULL, '1', '2022-02-02', 0, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-02 12:08:43', 1, '2022-02-02 12:32:10', 0, NULL, 1),
(7666, 'M.mahalakshmi', '4', '8489514882', '', 'Mahadevanlakshmi460@gmail.com', '2000-04-14', 21, '3', '2', 'Mahadevan', 'Former', 15000.00, 3, 0.00, 10000.00, 'Rajaghiri', 'Rajaghiri', '2202020006', '', '1', 'upload_files/candidate_tracker/28945569757_Mahalakshmi_Resume_23578639.pdf', NULL, '1', '2022-02-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-02 12:09:23', 1, '2022-02-02 12:38:12', 0, NULL, 1),
(7667, 'Mathi prakash.J', '23', '6383317847', '', 'Mastermathi07@gmail.com', '1999-06-13', 22, '2', '2', 'Jeya prakash.R', 'Farmer', 30000.00, 1, 0.00, 10000.00, 'Thoothukudi', 'Thoothukudi', '2202020007', '1', '1', 'upload_files/candidate_tracker/39217687598_Mathi CV.pdf', NULL, '3', '2022-02-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-02 02:55:25', 1, '2022-02-02 03:16:06', 0, NULL, 1),
(7668, '', '0', '8098985845', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202020008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-02 03:17:23', 0, NULL, 0, NULL, 1),
(7669, '', '0', '7018307964', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202020009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-02 03:23:50', 0, NULL, 0, NULL, 1),
(7670, 'Sathyamoorthi', '6', '7358505391', '9710994227', 'Valarsathya0001@gmail.com', '1999-04-01', 22, '2', '2', 'Janaki', 'Pr ledhars', 60000.00, 1, 14.50, 16000.00, 'Tambaram', 'Tambaram', '2202020010', '1', '2', 'upload_files/candidate_tracker/72455477833_valarsathya resume 2.docx', NULL, '1', '2022-02-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate didnt turn with his confirmation on the salary,No responses to the call,we requestd himto share the previous documents  butno responses after that', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-02 04:36:54', 84, '2022-02-26 12:05:41', 0, NULL, 1),
(7671, 'Prince raj', '4', '9677985568', '', 'Princeraj12122021@gi', '2001-07-20', 20, '1', '2', 'Lawrance', 'Watchman', 7000.00, 1, 0.00, 12000.00, 'Kandanvilai', 'Vandalur', '2202030001', '', '1', 'upload_files/candidate_tracker/31893580216_1639997337109_RESUME Prince pdf.pdf', NULL, '1', '2022-02-03', 0, 'Muthu', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-03 09:45:47', 1, '2022-02-03 09:50:25', 0, NULL, 1),
(7672, 'Basheer Ahamed', '4', '7395872370', '', 'basheerahamed2350@gmail.com', '2000-02-13', 21, '1', '2', 'Jabar Shathik', 'Hotel', 20000.00, 1, 0.00, 13000.00, 'Paramakudi', 'Chennai', '2202030002', '', '1', 'upload_files/candidate_tracker/59773869294_Basheer_Resume.pdf', NULL, '1', '2022-02-03', 0, 'Jobs', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Not response (continues RNR)', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-03 10:33:07', 1, '2022-02-03 10:38:21', 0, NULL, 1),
(7673, 'Chitra. R', '4', '7338932914', '', 'rrchitra1998@gmail.com', '1998-04-24', 23, '1', '2', 'Rani. R', 'House keeping', 10000.00, 1, 0.00, 11000.00, 'Thiruvllur', 'Thiruvllur', '2202030003', '', '1', 'upload_files/candidate_tracker/55338724155_Resume.pdf', NULL, '1', '2022-02-03', 0, 'R55558', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'voice very low not suitable for this profile.', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-03 10:40:36', 1, '2022-02-03 10:52:27', 0, NULL, 1),
(7674, 'Aravind Kumar. T', '4', '8939342420', '7358486946', 'aravindany07@gmail.com', '1998-05-20', 23, '2', '2', 'A. Thanga Thirupathi', 'Manager in Arun oil enterprises', 26000.00, 1, 0.00, 15000.00, 'Thamaraipakkam, Thiruvallur district', 'Thamaraipakkam, Thiruvallur district', '2202030004', '1', '1', 'upload_files/candidate_tracker/1162165973_ARAVIND RESUME.pdf', NULL, '1', '2022-02-03', 0, '', '3', '59', '2022-02-07', 126312.00, '', '4', '2022-04-16', '1', 'selected for Tiruvallur in consultant 5%', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-03 11:31:07', 60, '2022-02-04 02:58:35', 0, NULL, 1),
(7675, '', '0', '7871312816', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202030005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-03 01:55:06', 0, NULL, 0, NULL, 1),
(7676, 'Deepika R', '4', '7871322816', '7397348800', 'aruldeepika2807@email.com', '2000-08-28', 21, '1', '2', 'Ammu', 'Housekeeping', 17000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2202030006', '', '2', 'upload_files/candidate_tracker/55519288427_Deepika Resume.docx', NULL, '3', '2022-02-03', 2, 'JOBS', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Telecalling Activities,much focus on her core profession only,will not sustain for a long\n', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-03 02:26:48', 1, '2022-02-03 02:29:36', 0, NULL, 1),
(7677, 'A.Naveen kumar', '16', '8428655873', '', 'honeyboynaveen@gmail.com', '2000-04-21', 21, '2', '2', 'Ashok kumar', 'Ashok leyland', 20000.00, 1, 0.00, 15000.00, '78/56.A.sadananthapuram,thangal,thiruvottiyur', 'Chennai 600019', '2202040001', '1', '1', 'upload_files/candidate_tracker/91019272638_Naveen CV.doc', NULL, '1', '2022-02-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication no,looking for non voice only,but not much interest on the job openings,no basic excel knowledge will not sustain', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-04 09:59:05', 84, '2022-02-26 12:15:12', 0, NULL, 1),
(7678, 'Hari Madhavan S', '11', '6380890925', '', 'harimadhavan44@gmail.com', '2002-01-01', 20, '2', '2', 'Father', '200000', 2000000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2202040002', '16', '1', 'upload_files/candidate_tracker/39244447073_file_04Feb22.pdf', NULL, '1', '2022-02-04', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for telecalling his slang is not good and will not sustain and will not handle pressure. expt is 12k as fresher.', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-04 11:40:54', 7, '2022-02-04 06:23:04', 0, NULL, 1),
(7679, '', '0', '8939555149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202040003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-04 12:15:21', 0, NULL, 0, NULL, 1),
(7680, 'K.Bennet', '4', '7339269783', '', 'bennetbennet665@gmail.com', '1996-11-09', 25, '2', '2', 'J.kumar', 'Mason', 84000.00, 2, 0.00, 15000.00, 'Nagercoil', 'Chennai', '2202040004', '16', '1', 'upload_files/candidate_tracker/84410446732_0_maria johin-converted.pdf', NULL, '1', '2022-02-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'his slang is too native and will not suite and sustain for telecalling. looking for IT related jobs but no idea about it. expt 15k.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-04 01:36:14', 1, '2022-02-04 01:57:30', 0, NULL, 1),
(7681, 'M.lagesan', '4', '7397050519', '7904290136', 'abilagesan1996@gmail.co', '1996-05-16', 25, '2', '1', 'Charulatha', 'Housewife', 13000.00, 0, 14000.00, 15000.00, 'Ponneri', 'Thiruvattiyur', '2202040005', '16', '2', 'upload_files/candidate_tracker/87784495886_file_04Feb22.pdf', NULL, '1', '2022-02-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not looking for telecalling job and will not suite for calling to. married and then shifted to chennai. expt 15k. looking for office assistance job.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-04 01:48:25', 1, '2022-02-04 02:22:15', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7682, 'Prasath S', '26', '7358208203', '7401041559', 'subramanianprasath@gmail.com', '1993-12-14', 28, '2', '2', 'Kumudha', 'Nil', 14000.00, 1, 15000.00, 20000.00, 'Vyasarpadi', 'Vyasarpadi', '2202040006', '1', '2', 'upload_files/candidate_tracker/91150945834_Prasath S Resume.docx', NULL, '1', '2022-02-04', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'high job need but no communication and avg skills. need lot of training, has 9m exp in complete MIS, 13.5k tH and has proper doc. okay with 2yr service agreement.', '7', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-04 02:09:40', 8, '2022-02-04 04:53:37', 0, NULL, 1),
(7683, 'karthika raj', '11', '9495171550', '8667761595', 'karthikamadhavam1995@gmail.com', '1995-10-11', 26, '2', '1', 'sreejith r', 'business coordinator', 50000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2202050001', '1', '1', 'upload_files/candidate_tracker/37210712243_Karthika Resume-converted.pdf', NULL, '1', '2022-02-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Avg communication and she dont speak regional lang, no basic idea about the profile and expt 15k, married 3m back and settled in chennai. husband- biz asso. ', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-05 10:02:14', 1, '2022-02-05 10:09:42', 0, NULL, 1),
(7684, 'Arunkumar Palagiri', '5', '8297976863', '7288067520', 'palagiriarunkumar95@gmail.com', '1997-07-15', 24, '1', '2', 'Nagendramma palagiri', 'House wife', 50000.00, 1, 16.00, 20.00, '3/2-1, Brahmin street nandalur,Kadapa , AP-516150', 'Marathahalli, banglore-560037', '2202050002', '', '2', 'upload_files/candidate_tracker/41974443_ARUNKUMAR_149535320.doc', NULL, '1', '2022-02-05', 0, 'CAFSUSR00273', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-05 10:28:38', 1, '2022-02-05 10:33:58', 0, NULL, 1),
(7685, 'Preethi', '4', '9962838069', '9941678779', 'preethiparameshwari22@gmail.com', '2000-10-25', 21, '2', '2', 'Parameshwari', 'Father', 10000.00, 0, 10000.00, 12000.00, 'Chennai', 'Anna nagar', '2202050003', '1', '2', 'upload_files/candidate_tracker/75256985138_file_04Feb22.pdf', NULL, '1', '2022-02-05', 0, '', '3', '59', '2022-02-11', 132000.00, '', NULL, '2023-12-30', '2', 'Selected for B2B in consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Mail shared', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-05 10:38:28', 60, '2022-02-26 11:38:22', 0, NULL, 1),
(7686, 'M.divya', '4', '9361164257', '7904031965', 'sakthidivya54@gmail.com', '1998-03-18', 23, '2', '1', 'S.sakthivel', 'Ac technician', 15000.00, 3, 12000.00, 15000.00, 'Chindhatripet', 'Perambur', '2202050004', '1', '2', 'upload_files/candidate_tracker/8234505751_1644080749247_Divya. M Resume.pdf', NULL, '1', '2022-02-07', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-05 10:55:45', 1, '2022-02-05 10:38:03', 0, NULL, 1),
(7687, 'Rajesh Kannan', '2', '7358495178', '9380942056', 'rajeshkannan1999.rk@gmail.com', '1999-05-26', 22, '4', '2', 'Kumar', 'Daily wager', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2202050005', '', '1', 'upload_files/candidate_tracker/55313577505_rajeshkannan.new-14-1.pdf', NULL, '1', '2022-02-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic knowledge need to train a lot,thinking a lot on the SA,TxxampC,Will not sustain in our role', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-05 11:00:24', 1, '2022-02-05 11:04:18', 0, NULL, 1),
(7688, 'Arockia jenifer. A', '11', '9025017256', '9944517322', 'jeniaro25@gmail.com', '1998-04-22', 23, '2', '2', 'Arockia samy. T', 'Former', 50000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2202050006', '1', '2', 'upload_files/candidate_tracker/57022251327_ArockiaJenifer A (2).pdf', NULL, '3', '2022-02-12', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-02-05 11:04:14', 1, '2022-02-05 11:30:04', 0, NULL, 1),
(7689, 'Anitha.A', '4', '7708364599', '', 'anithaanitha146663@gmail.com', '2000-10-16', 21, '2', '2', 'Aruumugam. V', 'Ironing', 30000.00, 11, 10000.00, 14000.00, '3/66 Giriyappa road ,t.nagar, chennai - 17', 'T.nagar', '2202050007', '1', '2', 'upload_files/candidate_tracker/75393731217_file_04Feb22.pdf', NULL, '1', '2022-02-07', 0, '', '3', '59', '2022-02-09', 132000.00, '', NULL, '2023-09-30', '2', 'Selected for B2B in Consultant5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-05 05:58:44', 60, '2022-02-08 01:06:43', 0, NULL, 1),
(7690, 'Praveen Kumar R', '4', '7299390755', '6374946392', 'shanokumar007@gmail.com', '1998-09-28', 23, '2', '2', 'B.Ramesh', 'Security', 18000.00, 1, 12000.00, 14000.00, 'Otteri', 'Otteri', '2202050008', '1', '2', 'upload_files/candidate_tracker/69981721487_resume.docx', NULL, '1', '2022-02-07', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-05 06:45:19', 1, '2022-02-05 06:54:08', 0, NULL, 1),
(7691, 'J.Vijaykumaran.', '5', '9941954404', '', 'vijaykumaranelixir@gmail.com', '1980-12-04', 41, '2', '2', 'janaorthanan', 'retired', 15000.00, 0, 15000.00, 30000.00, 'West Mambalam', 'West Mambalam', '2202070001', '1', '2', 'upload_files/candidate_tracker/67156021474_vijay resume new 1.docx', NULL, '1', '2022-02-07', 0, '', '5', '80', NULL, 0.00, '', '0', NULL, '1', 'He came Final round inbetween the interview he gone away', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-02-07 10:08:21', 1, '2022-02-07 12:29:17', 0, NULL, 1),
(7692, 'Vasanth', '4', '6385231382', '9566575249', '1111vasanth@gmail.com', '2000-12-09', 21, '2', '2', 'Ramalingam', 'Bussnies', 40000.00, 2, 12500.00, 15000.00, 'Chennai', 'Chennai', '2202070002', '1', '2', 'upload_files/candidate_tracker/34203234350_VASANTH RAMALINGAM 123.pdf', NULL, '1', '2022-02-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'his pronunciation is not clear and stammering to speak, will not suite for our process.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-07 11:10:11', 1, '2022-02-07 11:38:12', 0, NULL, 1),
(7693, 'J. S. K. Leelavathi', '4', '6380095535', '6383259291', 'leelarini8@gmail.com', '2000-11-11', 21, '2', '2', 'J.siva kumar', 'Retired', 10000.00, 1, 0.00, 20000.00, 'No. 7, 5th street ulaganathapuram encore Chennai57', 'No. 7, 5th Street Ulaganathapuram Encore Chennai57', '2202070003', '16', '1', 'upload_files/candidate_tracker/86705998393_updated leela resume.docx', NULL, '1', '2022-02-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has  5m exp in rbl credit card renewal 10k, expt is 15k and will not suite for our process.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-07 11:34:47', 8, '2022-02-07 06:25:45', 0, NULL, 1),
(7694, 'Nelson m', '6', '8946010394', '9840392875', 'nelsonrio1100@gmail.com', '1999-08-18', 22, '2', '2', 'S.micheal raj', 'Driver', 15000.00, 1, 14500.00, 16000.00, 'Ennore chennai', 'Ennore chenni', '2202070004', '16', '2', 'upload_files/candidate_tracker/62358166350_1630664844030Resume_Nelson.docx', NULL, '1', '2022-02-07', 0, '', '3', '59', '1970-01-01', 170000.00, '', '2', '1970-01-01', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-07 11:35:58', 60, '2022-02-08 07:46:25', 0, NULL, 1),
(7695, 'K.vimal', '4', '6380193380', '7401380171', 'Darkweb7401@gmail.com', '1999-12-27', 22, '2', '2', 'Ammulu', 'House wife', 15000.00, 1, 10000.00, 15000.00, 'Ennore', 'Ennore', '2202070005', '16', '2', 'upload_files/candidate_tracker/9909397091_New Doc 02-07-2022 10.12.51.pdf', NULL, '1', '2022-02-07', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'Not suit for telecalling', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-07 11:35:59', 1, '2022-02-07 11:42:37', 0, NULL, 1),
(7696, 'Parthiban', '4', '9087153086', '9094700865', 'parthiparthi529@gmail.com', '1996-06-01', 25, '2', '2', 'Manoharan', 'Two Wheeler Mechanic', 35000.00, 0, 20000.00, 25000.00, 'TIRUVALLUR', 'TIRUVALLUR', '2202070006', '16', '2', 'upload_files/candidate_tracker/98420003382_Parthi.pdff.pdf', NULL, '1', '2022-02-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain, doesnt have Relevant exp expt is 25k, was getting 16k in next company he got 20k and served only 6m and now expt 25k, relived due to work pressure.', '1', '1', '', '1', '1', '', '1', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-07 12:38:49', 7, '2022-02-07 03:13:05', 0, NULL, 1),
(7697, 'Pavatharani', '4', '9384146383', '', 'pavatharaninadhan@gmail.com', '1998-05-11', 23, '2', '2', 'Kolanchinadhan.S', 'Farmer', 10000.00, 1, 14000.00, 18000.00, '1/118,Gandhi Nagar, ponparappi.Ariyalur(dt)', 'Santhiyamman kovil street, chrompet.', '2202070007', '1', '2', 'upload_files/candidate_tracker/33711284038_Resume Pavatharani.pdf', NULL, '1', '2022-02-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1yr exp in holidays Package 14k and expt 18k, will not join without her fnd madavi', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-07 12:40:43', 1, '2022-02-07 12:49:56', 0, NULL, 1),
(7698, 'P.Madhavi', '4', '9025304955', '', 'madhavip8698@gmail.com', '1998-06-08', 23, '2', '2', 'Pazhanimuthu.R', 'Farmer', 10000.00, 2, 0.00, 15000.00, '72B,mariyamman kovil street,keeranur.v', 'No.23,parris,kothachavadi.', '2202070008', '1', '1', 'upload_files/candidate_tracker/91387497255_res mad.docx', NULL, '1', '2022-02-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, very slow and will not handle pressure.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-07 12:56:16', 1, '2022-02-07 01:02:40', 0, NULL, 1),
(7699, 'Pavithra', '5', '9566203393', '8667558564', 'pavithrahoney85@gmail.com', '2007-02-07', 0, '2', '1', 'Sampath kumar', 'Sports', 30000.00, 1, 0.00, 20000.00, 'Maduravoyal', 'Mafuravoyal', '2202070009', '16', '2', 'upload_files/candidate_tracker/17626813320_Resume- Pavithra.doc', NULL, '3', '2022-02-07', 0, '', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'REJECTED ', '5', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-07 01:29:41', 1, '2022-02-07 01:35:43', 0, NULL, 1),
(7700, 'KA Adithya', '5', '8289809228', '8189809228', 'adithyaka156@gmail.com', '1993-06-15', 28, '2', '1', 'Preethi', 'House wife', 30.00, 2, 20.00, 25.00, 'Kilpauk', 'Kilpauk', '2202070010', '1', '2', 'upload_files/candidate_tracker/80055579134_ADITHYa-1.docx', NULL, '1', '2022-02-07', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No direct sales experience,    ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-07 02:25:16', 8, '2022-02-07 03:47:19', 0, NULL, 1),
(7701, 'S. PRITHIBA', '4', '6385615550', '', 'prithiba2000@gmail.com', '2000-12-18', 21, '2', '2', 'Selvam', 'carpenter', 25000.00, 1, 0.00, 12000.00, 'Mailadudurai', 'mailadudurai', '2202070011', '1', '1', 'upload_files/candidate_tracker/25789267788_Resume_ Prithiba (1).docx', NULL, '2', '2022-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '1', '', '4', '5', '', '2', '2022-02-10', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-07 03:00:30', 85, '2022-03-17 10:18:11', 0, NULL, 1),
(7702, 'Praveen D', '20', '7550207154', '', 'praveendaya1994@gmail.c', '1995-07-11', 26, '2', '2', 'Dayalan C', 'Provision shop', 10000.00, 1, 15000.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2202070012', '1', '2', 'upload_files/candidate_tracker/15125878323_2 PAGE RESUME 2,1.docx', NULL, '1', '2022-02-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no sustainability, has Carrier gap due to his personal reason and accident.  no payslips and expt is 15k+. overall 2yrs exp in calling but not into sales. ', '5', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-07 03:05:34', 1, '2022-02-08 12:19:33', 0, NULL, 1),
(7703, 'B.Raju', '4', '7904793968', '', 'stephenraj9797@gmail.com', '1998-04-07', 23, '2', '2', 'baskar', 'maison', 10000.00, 1, 0.00, 12000.00, 'chennai', 'Chennai', '2202070013', '1', '1', 'upload_files/candidate_tracker/32510490413_Document from Raju.pdf', NULL, '2', '2022-02-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-07 03:08:17', 58, '2022-02-08 10:47:01', 0, NULL, 1),
(7704, 'anjali', '4', '8754432710', '', 'sranjali2710@gmail.com', '1999-10-27', 22, '2', '2', 'sakthivel', 'carpenter', 1000.00, 2, 0.00, 12000.00, '12000', 'Chennai', '2202070014', '16', '1', 'upload_files/candidate_tracker/16681821375_Anjali...........pdf', NULL, '1', '2022-02-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not Suit for recruiter profile and too long padi, very childish.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-07 06:07:20', 7, '2022-02-08 11:19:15', 0, NULL, 1),
(7705, '', '0', '7358289295', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202070015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-07 06:32:45', 0, NULL, 0, NULL, 1),
(7706, 'K.Rupavidhya', '13', '7418635998', '', 'ruphakannan@gmail.com', '1997-07-06', 24, '2', '1', 'B.V.Gowtham', 'NA', 50000.00, 1, 0.00, 10000.00, 'No.50,nethaji street,cheyyar.', 'Anna nagar', '2202070016', '1', '1', 'upload_files/candidate_tracker/54934172322_RUPAVIDHYA97-6.pdf', NULL, '1', '2022-02-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'married 6m back, Recently shifted to chennai with her. husband.  she knows basics only in sql, she dont even knows php basics.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-07 07:05:28', 1, '2022-02-08 12:38:09', 0, NULL, 1),
(7707, 'Surya', '11', '9843471400', '6369803636', 'amuthasurya93@gmail.com', '1993-06-07', 28, '2', '2', 'Narasimman', 'Weaver', 10000.00, 1, 1600.00, 20000.00, '4/61 Perumal koil street vanganur', 'Velachery', '2202080001', '16', '2', 'upload_files/candidate_tracker/26755729355_Surya resume1234.docx', NULL, '1', '2022-02-08', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'zero communication, will not suite for recruiter profile.', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-08 10:45:53', 1, '2022-02-08 10:48:54', 0, NULL, 1),
(7708, 'Kalpana', '4', '8939480216', '8508719848', 'www.s43382121@gmail.com', '1999-03-15', 23, '2', '1', 'Kamal kavithai', 'Driving', 20000.00, 0, 10500.00, 12000.00, 'Thanjavur', 'Thanjavur', '2202080002', '1', '2', 'upload_files/candidate_tracker/78821690391_kalpana Resume-converted.pdf', NULL, '1', '2022-05-02', 0, '', '3', '59', '2022-05-05', 138948.00, '', '4', '2022-05-28', '2', 'Selected for Thanjavur Location - Elite - Consultant', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 10:52:34', 60, '2022-05-03 11:13:01', 0, NULL, 1),
(7709, 'kaleeswaran', '4', '7904480081', '9524953802', 'kaleeswaran077@gmail.com', '1999-03-25', 22, '2', '2', 'selvaraj', 'salesman', 500000.00, 1, 14000.00, 16000.00, 'dindigul', 'pattabiram', '2202080003', '1', '2', 'upload_files/candidate_tracker/24291721236_Resume blue 2022.pdf', NULL, '1', '2022-02-08', 10, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'salary expectation is high 14200/. previous exp furniture sales.\ndoubt for sustainability.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 11:11:47', 58, '2022-02-08 11:31:25', 0, NULL, 1),
(7710, 'Surya', '6', '6374397983', '', 'sunsurya6374@gmail.com', '2000-03-04', 21, '2', '2', 'Thaiyalnayagi', 'Maison', 5000.00, 5, 0.00, 15000.00, 'Porour', 'Porour', '2202080004', '1', '1', 'upload_files/candidate_tracker/16496228723_1644300288234_1644300276769_surya resume.doc', NULL, '1', '2022-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process, fresher and slow learner and need lot of training. expt 15k. as he Pronounce will move to next company if sal is not satisfied.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 11:22:35', 58, '2022-02-08 12:09:21', 0, NULL, 1),
(7711, 'Y. Sharmila', '4', '9597828954', '9786960276', 'Sharmilayesurevathi@gmail.com', '1992-06-02', 29, '2', '1', 'Yesu', 'Cooli', 10000.00, 2, 13000.00, 15000.00, 'Othikadu', 'Ikkadu', '2202080005', '3', '2', 'upload_files/candidate_tracker/63012588432_sharmi.docx', NULL, '1', '2022-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain, expt package is high, her self pronounced she will not sustain if got better offer.', '1', '1', '', '4', '6', '', '1', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-08 11:33:36', 7, '2022-02-10 01:25:23', 0, NULL, 1),
(7712, 'divya', '5', '9344251917', '', 'divyamonika1406@gmail.com', '1999-06-14', 22, '2', '2', 'K. Martin Ramesh', 'tailor', 20000.00, 1, 15000.00, 15000.00, 'tirupur', 'Tirupur', '2202080006', '1', '2', 'upload_files/candidate_tracker/68368046657_Divya resume .pdf', NULL, '2', '2022-02-08', 0, '', '3', '59', '2022-02-25', 170496.00, '', '', '2022-03-02', '2', 'Selected for ESales Chennai with PT Deductions only,5050 candidate ,11 months 2 companies travelled, 1st company started with 12K,in the month of relieving only she was revised as 15K', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', 'Offer Mail Shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 11:59:26', 60, '2022-02-19 11:41:58', 0, NULL, 1),
(7713, 'AJMEEE S', '4', '6369350614', '', 'ajuajmeer68@gmail.com', '2000-08-18', 21, '2', '2', 'Sadiq basha I', 'Coolie', 20000.00, 1, 9000.00, 15000.00, 'Old washermenpet', 'Old washermenpet', '2202080007', '1', '2', 'upload_files/candidate_tracker/29040211222_Resume_04_02_2022_04_14_23_PM.pdf', NULL, '1', '2022-02-14', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-08 01:22:12', 1, '2022-02-08 01:45:34', 0, NULL, 1),
(7714, 'GOWTHAM.A', '6', '9791082471', '', 'gowthamarg2020@gmail.com', '1996-12-06', 25, '4', '2', 'RAJESWARI', 'HOUSE WIFE', 5000.00, 0, 0.00, 17000.00, 'CHENNAI', 'CHENNAI', '2202080008', '', '2', 'upload_files/candidate_tracker/25253934189_GOWTHAM.A RESUMEt.pdf', NULL, '1', '2022-02-08', 0, '', '3', '59', '2022-02-11', 185000.00, '', '3', '2022-03-08', '1', 'Selected for Arumbakkam with Pf/ESI /PT', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '3', '3', 'Offer Mail Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-08 02:21:08', 60, '2022-02-09 06:18:48', 0, NULL, 1),
(7715, '', '0', '9384311547', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202080009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-08 03:29:56', 0, NULL, 0, NULL, 1),
(7716, 'Arul Raj', '13', '9094630125', '6383738798', 'arulr4405@gmail.com', '1998-11-17', 23, '3', '2', 'P.Amal Raj', 'Farmer', 10000.00, 2, 0.00, 10000.00, 'Koyambedu', 'Koyambedu', '2202080010', '', '1', 'upload_files/candidate_tracker/94537628836_CV_2022-01-21-024004 resume_arulraj.pdf', NULL, '3', '2022-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-08 03:54:56', 1, '2022-02-08 04:06:52', 0, NULL, 1),
(7717, 'E.kavibharathi', '4', '7397567454', '9363100532', 'Kavibharathiond@gmail.com', '2000-12-10', 21, '2', '2', 'S.Elangovan', 'farmer', 32000.00, 2, 12000.00, 13000.00, 'Thanjavur', 'thanjavur', '2202080011', '1', '2', 'upload_files/candidate_tracker/58758151052_KAVI BHARATHI RESUME .docx', NULL, '1', '2022-02-09', 30, '', '3', '59', '2022-02-14', 138948.00, '', '', '2022-02-16', '2', 'Selected for  Thanjavur Team in Consultant 5%', '1', '2', '', '4', '5', '', '2', '2022-02-10', '1', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 04:04:31', 60, '2022-02-16 06:37:11', 0, NULL, 1),
(7718, 'RAVI SANKAR.K', '6', '9092600915', '', 'sankarravi003@gmail.com', '2007-02-08', 0, '2', '2', 'Alazhageshan', 'business', 10000.00, 1, 15000.00, 15000.00, 'Dhindukal', 'dhindukal', '2202080012', '1', '2', 'upload_files/candidate_tracker/28233873931_Ravi sankar resume.pdf', NULL, '2', '2022-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response.', '5', '2', '', '1', '1', '', '2', '2022-02-10', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 04:28:48', 8, '2022-02-08 05:15:22', 0, NULL, 1),
(7719, 'Meenakshi s', '4', '7338946652', '', 'meenakshisekar8@gmail.com', '1996-04-01', 25, '2', '2', 'V c sekar', 'Business', 30000.00, 1, 16500.00, 17000.00, 'Vanagaram', 'Vanagaram', '2202080013', '1', '2', 'upload_files/candidate_tracker/58188417292_Updated resume-1.pdf', NULL, '1', '2022-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-08 05:15:22', 1, '2022-02-08 05:34:41', 0, NULL, 1),
(7720, 'Sinduja Sakthivel', '4', '9698942158', '7708951420', 'sindujasakthivel08@gmail.com', '1994-05-08', 27, '2', '2', 'Sakthivel P', 'MBA', 15000.00, 0, 20000.00, 15000.00, 'Budalur', 'Budalur', '2202080014', '1', '2', 'upload_files/candidate_tracker/41612323212_Resume.pdf', NULL, '1', '2022-02-09', 30, '', '3', '59', '2022-02-16', 164208.00, '', '', '2022-12-31', '2', 'Selected for Thanjavur in consultant 5%', '1', '2', '', '4', '5', '', '2', '2022-02-10', '1', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 05:49:14', 60, '2022-02-11 08:17:13', 0, NULL, 1),
(7721, '', '0', '8778282554', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202080015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-08 07:19:51', 0, NULL, 0, NULL, 1),
(7722, 'Appadurai', '4', '9629041262', '', 'Dub.techit@gmail.com', '1992-05-28', 29, '2', '2', 'Subramanian', 'Farmer', 10000.00, 0, 12000.00, 14000.00, 'Virudhunagar', 'Chennai', '2202080016', '1', '2', 'upload_files/candidate_tracker/57516976193_resume-converted.pdf', NULL, '1', '2022-02-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is 30 and was working in medical shop for 1.8yrs and 12K take home . he is from maraimalainagar his train travelling time itself more than 1hr. talkative but no convincing skill will not suite for our process. expt sal 12k+', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-08 08:20:48', 87, '2022-02-28 10:21:28', 0, NULL, 1),
(7723, 'Guna.V', '13', '6382109270', '', 'gunavelraj23@gmail.com', '2000-06-07', 21, '3', '2', 'Parent', 'Workers', 12000.00, 1, 0.00, 18000.00, 'Vandavasi', 'Vandavasi', '2202090001', '', '1', 'upload_files/candidate_tracker/48278000756_GUNA\'S RESUME.docx', NULL, '3', '2022-02-09', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-09 09:58:15', 1, '2022-02-09 10:04:35', 0, NULL, 1),
(7724, 'JAYAPRAKASH', '5', '8807804845', '6380175096', 'Jillujai180198@gmail.com', '1998-06-02', 23, '2', '1', 'Ramapriya', 'Home maker', 18000.00, 1, 18000.00, 20000.00, 'Vellore', 'Thiruverkadu (chennai)', '2202090002', '1', '2', 'upload_files/candidate_tracker/47561524054_Resume_JAYAPRAKASH_2022.pdf', NULL, '1', '2022-02-09', 0, '', '3', '59', '2022-02-11', 227364.00, '', '4', '2022-12-17', '2', 'Selected for Syed Team ,hired as a consultant last drwan package around 21637 TH-18K,we mapped the same .After 3-6 months based on the performance  we can revise the pay and bring him in the Staff', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', 'offer Mail Shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-09 09:58:15', 60, '2022-02-10 07:21:59', 0, NULL, 1),
(7725, 'Durgadevi', '4', '7824992286', '7094630226', 'Durgaduga29@gmail.com', '1997-06-25', 24, '2', '2', 'Ramachanthiran', 'Farmar', 40000.00, 1, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2202090003', '1', '1', 'upload_files/candidate_tracker/21772191716_durga resume Jul 14, 2021.pdf', NULL, '1', '2022-02-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '2022-02-21', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-09 09:59:56', 58, '2022-02-09 12:34:13', 0, NULL, 1),
(7726, 'S.Dineshkumar', '5', '9597704697', '8610150116', 'DINESHKUMAR4003@gmail.com', '1991-01-03', 31, '1', '2', 'Shanmugam', 'Farmer', 9200.00, 0, 17000.00, 25000.00, 'Madipakkam', 'Madipakkam', '2202090004', '', '2', 'upload_files/candidate_tracker/52001978924_New Doc 2022-02-09 10.56.15.pdf', NULL, '1', '2022-02-09', 0, '55559', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not profiled, has exp in qc, maintenance, currently working in manpower company no fixed pay. will not suite for RM profile, expt is 20k, his wife is working in justdial. ', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-09 10:55:05', 1, '2022-02-09 11:04:21', 0, NULL, 1),
(7727, 'Kowsalya. S', '4', '6381865133', '9840752942', 'sumo6381865133@gmail.com', '2001-11-29', 20, '1', '2', 'Sekar', 'No', 10000.00, 2, 0.00, 10000.00, 'Ponnamalle', 'Ponnamalle', '2202090005', '', '1', 'upload_files/candidate_tracker/21472934388_DocScanner 09-Feb-2022 11-32 am.pdf', NULL, '1', '2022-02-09', 0, 'CA120', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-09 10:59:12', 1, '2022-02-09 11:40:39', 0, NULL, 1),
(7728, 'Sivaguru R', '4', '6380188475', '7373369192', 'Sivaravi910@gmail.com', '2000-07-13', 21, '2', '2', 'Ravikumar C', 'own business', 100000.00, 1, 0.00, 15000.00, 'Mohanur(poi).Namakkal-637015', 'Chennai.metha nagar', '2202090006', '1', '1', 'upload_files/candidate_tracker/39770665875_SivaGuru resume(1).pdf', NULL, '1', '2022-02-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped - Not interested got another offer\n', '1', '1', '0', '1', '1', '0', '2', '2022-02-17', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-09 11:18:51', 1, '2022-02-09 11:55:05', 0, NULL, 1),
(7729, 'Yurekha . N', '4', '9360821094', '7824029649', 'yurekhagirija@gmail.com', '2001-02-17', 20, '4', '2', 'Natarajan.M', 'Car driver', 15.00, 2, 16.00, 20.00, 'Thondairpet', 'Thondairpet', '2202090007', '', '2', 'upload_files/candidate_tracker/91389418097_FAQ_DND_Registration_unlocked.pdf', NULL, '3', '2022-02-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process,  sal expt is also high, not that much bold ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-09 11:44:49', 1, '2022-02-09 12:24:02', 0, NULL, 1),
(7730, 'Rengarajan', '21', '7358286151', '8608299202', 'balabalaji944@gmail.com', '1997-10-04', 24, '2', '2', 'Muniyappan', 'ATM maintenance', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2202090008', '1', '1', 'upload_files/candidate_tracker/51968728157_UPdated Resume.pdf', NULL, '1', '2022-02-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher for IT, interest towards web front end, has 2yr exp in QC due to his sal issues he relived from previous org. 12k. expt 12k and for service agmnt he need to discuss with his parents.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-09 01:05:21', 87, '2022-02-28 10:21:52', 0, NULL, 1),
(7731, 'AKSHAYA P', '4', '7904990124', '9751855102', 'akshaya.p20aprldcse@gmail.com', '2002-04-19', 19, '2', '2', 'Pandiyan g', 'Carpenter', 12000.00, 2, 12000.00, 15000.00, 'Vellore', 'Vellore', '2202090009', '1', '2', 'upload_files/candidate_tracker/3743788516_Akshaya p_Color Format – 03.pdf', NULL, '3', '2022-02-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-09 03:07:08', 1, '2022-02-09 03:58:41', 0, NULL, 1),
(7732, 'Justin Rajadurai', '13', '6383842680', '', 'Rajaduraijustin2@gmail.com', '1996-05-26', 25, '3', '2', 'Ponraj', 'Farmer', 10000.00, 5, 0.00, 12000.00, 'South kaduvetti, kalakad, Thirunelveli -627152', 'Vadapalani', '2202090010', '', '1', 'upload_files/candidate_tracker/18582227754_Justin_Resume.pdf', NULL, '1', '2022-02-09', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-09 03:48:23', 1, '2022-02-09 03:52:24', 0, NULL, 1),
(7733, 'Andrews g', '13', '7806974054', '', 'andreamose988@gmail.com', '1998-05-28', 23, '3', '2', 'Gnana doss', 'Farmer', 10000.00, 5, 0.00, 12000.00, 'Tirunleveli', 'Vadapalani', '2202090011', '', '1', 'upload_files/candidate_tracker/56477859787_Andrews_Resume.pdf', NULL, '1', '2022-02-09', 0, '', '3', '59', '2022-02-12', 96000.00, '', '', '2022-09-22', '2', '1 month unpaid,then 5 months 5K,then 2.6 yrs Employment - Overall 3 yrs Document Sub', '2', '1', '', '4', '6', '', '2', '1970-01-01', '3', '2', 'For the payroll Feb 26 to Mar 25 we have reduced the pay  to 3500', '', '', '', NULL, NULL, NULL, 1, '2022-02-09 03:50:08', 60, '2022-04-01 12:10:54', 0, NULL, 1),
(7734, '', '0', '9025274169', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202090012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-09 05:15:50', 0, NULL, 0, NULL, 1),
(7735, 'Vaishnavi', '4', '9884030610', '', 'vaishnavi.u453@gmail.com', '1989-06-06', 32, '2', '1', 'Varadharajan', 'Working', 60000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2202090013', '1', '2', 'upload_files/candidate_tracker/28553117393_resume new.doc', NULL, '3', '2022-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-09 06:03:59', 1, '2022-02-09 06:18:27', 0, NULL, 1),
(7736, 'Ravikishore', '4', '9380767409', '', 'Kishoreravi1119825@gmail.com', '2003-07-07', 18, '2', '2', 'Priya dharsini', 'Diploma in computer engineering', 25000.00, 2, 0.00, 1600000.00, 'chennai', 'chennai', '2202100001', '1', '1', 'upload_files/candidate_tracker/78779343258_RESUME TATA.docx', NULL, '1', '2022-02-10', 0, '', '3', '59', '2022-02-11', 126312.00, '', '4', '2022-02-15', '2', 'Selected for Priyanka Jenit Team  as consultant 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-02-10 09:45:56', 60, '2022-02-10 07:15:40', 0, NULL, 1),
(7737, 'Divya .M', '4', '9390628085', '8179859840', 'kannamma31052000@gmail.com', '2000-05-31', 21, '1', '2', 'Mani.A', 'Weaver', 15000.00, 3, 10500.00, 14000.00, 'Chittoor (dist) ,Andhra pradesh', 'Triplicate, chennai', '2202100002', '', '2', 'upload_files/candidate_tracker/96124237283_DIVYA Resume.docx', NULL, '1', '2022-02-10', 0, 'P1021', '3', '59', '2022-02-14', 132000.00, '', '6', '2022-10-05', '2', 'Selected for Muthu TEam in Consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-10 10:12:47', 60, '2022-02-13 11:47:46', 0, NULL, 1),
(7738, 'R.DEEPIKALA', '4', '7708601980', '9840051280', 'deepikala770@gmail.com', '2001-02-20', 20, '1', '2', 'J.Ramesh', 'Auto driver', 10.00, 1, 10.50, 14.00, 'Kotturpuram', 'Kotturpuram', '2202100003', '', '2', 'upload_files/candidate_tracker/82748675605_DocScanner Feb 10, 2022 10-24 AM.pdf', NULL, '1', '2022-02-10', 0, 'P1021', '3', '59', '2022-02-14', 132000.00, '', '3', '2022-10-27', '2', 'Selected for Muthu Team Consultant 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-10 10:13:48', 60, '2022-02-13 11:50:06', 0, NULL, 1),
(7739, 'Muthuraja.s', '13', '6382436291', '9751876901', 'rajashankarmr@gmail.com', '2000-12-23', 21, '4', '2', 'M.sankar', 'Daily Wages', 10000.00, 3, 0.00, 8000.00, 'Pudukkottai', 'Tondiarpet', '2202100004', '', '1', 'upload_files/candidate_tracker/13875526400_Resume.docx', NULL, '1', '2022-02-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-10 10:57:30', 1, '2022-02-10 11:18:19', 0, NULL, 1),
(7740, 'Divya', '6', '9962486617', '9841792078', 'divyanithya98@gmail.com', '1998-11-27', 23, '1', '2', 'Nithya', 'Business', 40000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2202100005', '', '2', 'upload_files/candidate_tracker/7894445315_Divya resume.pdf', NULL, '1', '2022-02-10', 0, '55574', '3', '59', '2022-02-14', 164208.00, '', '4', '2023-01-28', '1', 'selected for Thiyagarajan Team in consultant 5%', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-10 11:54:31', 60, '2022-02-13 11:55:37', 0, NULL, 1),
(7741, 'K.Keerthi', '4', '9663267657', '9840652893', 'keerthivedamoorthy1@gmail', '1991-02-28', 30, '2', '1', 'Vedamoorthy. U', 'Manager', 60000.00, 2, 18000.00, 20000.00, '113 RAJALAKSHMI Avenu nsk nagar Tiruninravur', '36 vinayaka nagar baglur cross Yelehanka', '2202100006', '1', '2', 'upload_files/candidate_tracker/2558335721_Keerthi Resume.docx', NULL, '1', '2022-02-17', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-10 01:08:11', 1, '2022-02-10 01:46:06', 0, NULL, 1),
(7742, 'K.VAITHEESWARI', '4', '9626219382', '', 'vaitheekumar95@gmail.com', '1994-04-25', 27, '2', '1', 'K.RAJA', 'Engineer', 25000.00, 2, 0.00, 15000.00, 'Villupuram', 'Porur', '2202100007', '1', '1', 'upload_files/candidate_tracker/514330665_Vaithee Resume.pdf', NULL, '1', '2022-02-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-10 01:39:44', 1, '2022-02-10 02:29:18', 0, NULL, 1),
(7743, '', '0', '0940652893', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202100008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-10 01:50:29', 0, NULL, 0, NULL, 1),
(7744, 'Hemalatha k', '4', '9600433952', '8220956512', 'Hmkrthk@gmail.com', '1995-05-07', 26, '2', '1', 'Karthikeyan T', 'IT', 40000.00, 2, 8000.00, 15000.00, 'Rajapalayam', 'Thiruvanmiyur chennai', '2202100009', '1', '2', 'upload_files/candidate_tracker/52381400814_RESUME hema.docx', NULL, '1', '2022-02-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-10 03:45:43', 1, '2022-02-10 04:04:09', 0, NULL, 1),
(7745, 'Bhuvaneshwari', '6', '6382329359', '9186466687', 'bhuvanamurugan222@gmail.com', '2000-06-19', 25, '1', '2', 'Murugan', 'Painting contractor', 400000.00, 1, 26500.00, 31000.00, 'Chennai', 'Chennai', '2202100010', '', '2', 'upload_files/candidate_tracker/34739342908_BhuvanaResumeUpdated.pdf', NULL, '1', '2026-05-08', 30, '55905', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SALERY EXP IS VERY HIGH SO NOT FIT FOR MY TEAM', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2022-02-10 04:54:36', 154, '2026-05-08 02:51:06', 0, NULL, 1),
(7746, '', '0', '9003797472', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202100011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-10 06:55:34', 0, NULL, 0, NULL, 1),
(7747, '', '0', '9962728980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202110001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-11 09:00:41', 0, NULL, 0, NULL, 1),
(7748, 'MADHAN', '6', '9840350925', '', 'madanselvaraj2931@gmail.com', '1996-03-31', 25, '1', '2', 'Selvaraj', 'House Wife', 15000.00, 1, 14000.00, 14000.00, 'Chennai', 'Chennai', '2202110002', '', '2', 'upload_files/candidate_tracker/11809077165_Madhan.Resume.pdf', NULL, '1', '2022-02-11', 0, 'P1146', '5', '83', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate will not sustain xxamp  not willing to work for target job', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-11 10:22:32', 58, '2022-02-11 10:54:01', 0, NULL, 1),
(7749, 'sandhiya.m', '6', '8124766721', '9962131162', 'sandhiyasandy.1224@gmail.com', '1998-04-23', 23, '1', '2', 'murugesan.k', 'Electrician', 10000.00, 0, 0.00, 16000.00, 'ashok nagar', 'Ashok Nagar', '2202110003', '', '2', 'upload_files/candidate_tracker/27500306332_SANDHYA RESUME (2).pdf', NULL, '1', '2022-02-11', 0, 'thiyagu', '3', '59', '2022-02-14', 164208.00, '', '4', '2022-12-01', '1', 'Selected for Thiyagu Team RE in Consultant 5%', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-11 11:56:51', 60, '2022-02-12 03:02:25', 0, NULL, 1),
(7750, '', '0', '8987668884', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202110004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-11 12:01:16', 0, NULL, 0, NULL, 1),
(7751, 'Nandhini', '4', '7395954581', '9791162188', 'nandhupn57@gmail.com', '1999-04-05', 22, '1', '2', 'Parent', 'Retired', 13000.00, 0, 13000.00, 15000.00, 'New washermanpet', 'New washermanpet', '2202110005', '', '2', 'upload_files/candidate_tracker/7179165096_NANDHINI resume1.pdf', NULL, '1', '2022-02-11', 0, 'Muthu', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not suitable for tele sales', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-11 12:08:46', 1, '2022-02-11 12:35:56', 0, NULL, 1),
(7752, 'Pavithra', '4', '6382503074', '9840473442', 'pavithraqw@gmail.com', '2000-03-24', 21, '1', '2', 'Parent', 'Sweet shop', 2000.00, 3, 0.00, 15000.00, 'Old washermanpet', 'Old washermanpet', '2202110006', '', '2', 'upload_files/candidate_tracker/11589483092_NANDHINI resume1.pdf', NULL, '1', '2022-02-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the interview,came alog with the friend and she got rejected\n', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-11 12:09:15', 1, '2022-02-11 12:21:17', 0, NULL, 1),
(7753, '', '0', '7845790002', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202110007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-11 02:13:55', 0, NULL, 0, NULL, 1),
(7754, 'Karthick', '5', '9962425393', '9884264249', 'Karthee227@gmail.com', '1995-07-22', 26, '1', '2', 'Shantha', 'House wife', 50000.00, 1, 17000.00, 5.00, 'Chennai', 'Chennai', '2202110008', '', '2', 'upload_files/candidate_tracker/79135388027_karthick.doc', NULL, '1', '2022-02-11', 0, 'CA111', '3', '59', '2022-02-14', 299999.00, '', '3', '2022-11-01', '1', 'Selected for Manikandan with Pf/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', 'Offer Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-11 02:44:47', 60, '2022-02-12 02:54:58', 0, NULL, 1),
(7755, 'NIRMALKUMAR M', '2', '9884173975', '', '18j041.nirmalkumar@gmail.com', '2000-09-05', 21, '2', '2', 'Muthukumar A', 'Store Manager', 15000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2202110009', '1', '1', 'upload_files/candidate_tracker/46544699582_Nirmalkumar 3.pdf', NULL, '1', '2022-02-14', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, currently doing his basics course in igenuine till march. dont know any basics and expt is 15k, need time to think about the company norms.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-11 06:49:22', 1, '2022-02-14 11:56:43', 0, NULL, 1),
(7756, 'R.SANJAYKUMAR', '23', '8667039411', '', 'rsksanjay45@gmail.com', '2001-06-09', 20, '2', '2', 'R.RAJAGOPAL', 'Catering', 30000.00, 1, 0.00, 15000.00, 'Villupuram', 'Chennai', '2202110010', '1', '1', 'upload_files/candidate_tracker/46537752582_Sanjaykumar_R_CV.docx', NULL, '1', '2022-02-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Fresher completed 4m course in besant tech but no basic skills and slow learner, he need to check with his brother regarding company norms and he is working in cognizant. parents into catering.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-02-11 08:14:38', 1, '2022-02-13 07:51:59', 0, NULL, 1),
(7757, 'D Iyyappan', '23', '6379009286', '', 'iyyappansri286@gmail.com', '2001-06-10', 20, '2', '2', 'P Thandapani', 'Veldar', 20000.00, 0, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2202110011', '1', '1', 'upload_files/candidate_tracker/3875459718_D_IYYAPPAN_CV.pdf', NULL, '1', '2022-02-15', 0, '', '4', '63', NULL, 0.00, '', '0', NULL, '2', 'Fresher completed 4m course in besant tech willing to learn and job need, he is okay with company norms, expt 10k.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-02-11 08:17:17', 1, '2022-02-13 07:50:17', 0, NULL, 1),
(7758, 'Smithan', '4', '8248190926', '', 'smithanraj99@gmail.com', '1996-01-18', 26, '2', '2', 'Santhi(Mother)', 'Housewife', 13000.00, 2, 0.00, 15000.00, 'Nagarcoil', 'Poonamallee', '2202120001', '1', '1', 'upload_files/candidate_tracker/59099715013_CV_2021-07-05-072436.pdf', NULL, '3', '2022-02-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication average,handling Pressure No.No relevant Exp will not sustain in our roles', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-12 09:52:56', 60, '2022-02-12 10:43:48', 0, NULL, 1),
(7759, 'Sridevi.p', '21', '9940633024', '7904322029', 'Prabhaash@yahoo.com', '1986-07-26', 35, '2', '1', 'Prabhakaran.s', 'IT', 650000.00, 2, 20000.00, 24000.00, 'No.17,niranjan Nagar,natha medu,Chennai -602024', 'No.160,sribalaji nagar,puzhal', '2202120002', '1', '2', 'upload_files/candidate_tracker/55849562472_Sridevi Resume.docx', NULL, '1', '2022-02-12', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long distance,looking only for the receptionist role,no basic knowledge in the Excel Data,will not sustain ,matured butwill not run for a long\n', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-12 11:18:42', 1, '2022-02-12 11:31:28', 0, NULL, 1),
(7760, 'Antonyselvam.S', '6', '7538830859', '9025562857', 'antonyselvamlawrence@gmail.com', '2001-02-14', 20, '3', '2', 'S.savari Raj', 'Parmer', 10000.00, 1, 0.00, 13000.00, 'Thirunelveli', 'Thiruvottiur', '2202120003', '', '1', 'upload_files/candidate_tracker/22142226282_Selvam_resume-converted.pdf', NULL, '1', '2022-02-12', 0, '', '3', '59', '2022-02-14', 176000.00, '', '5', '1970-01-01', '2', 'Selected for Suthagar Team with PF/ESI', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer mail link shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-12 12:19:20', 60, '2022-02-12 02:35:43', 0, NULL, 1),
(7761, '', '0', '9344153648', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202120004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-12 04:10:40', 0, NULL, 0, NULL, 1),
(7762, 'MOHAMED MANSOOR A', '5', '8056241056', '', 'm.mansoor67@gmail.com', '2007-02-12', 15, '2', '2', 'MANSOOR', 'engineer', 70000.00, 1, 23000.00, 30000.00, 'chennai', 'Chennai', '2202120005', '1', '2', 'upload_files/candidate_tracker/42192562147_1644396234535__Mohamed Mansoor 2022.docx.pdf', NULL, '2', '2022-03-05', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed And Following Up With The Candidate,Yet To Get The Previous Payslips xxamp Documents,Official 60 Days Notice,Can Negotiate Upto 30-45 Days - His expectation is very as he will be getting increment in next few days\n', '5', '2', '', '1', '1', '', '2', '2022-04-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-12 04:28:58', 58, '2022-03-05 02:23:31', 0, NULL, 1),
(7763, 'Shanmuga', '5', '9965948485', '', 'shanmuga12172@gmail.com', '1992-08-17', 29, '2', '2', 'manivanan', 'retired', 40000.00, 1, 25000.00, 30000.00, 'omr', 'Chennai', '2202120006', '1', '2', 'upload_files/candidate_tracker/48012696683_Shanmuga (1).pdf', NULL, '2', '2022-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-12 04:59:59', 1, '2022-02-12 05:03:20', 0, NULL, 1),
(7764, 'Mahalakshmi J', '31', '6381534613', '', 'lakshmimaha079@gmail.com', '1997-03-21', 24, '2', '2', 'Jeyaraman K', 'Chennai', 4.00, 1, 0.00, 2.80, 'Chennai', 'Chennai', '2202120007', '1', '1', 'upload_files/candidate_tracker/16898221517_MAHALAKSHMI_feb.pdf', NULL, '1', '2022-02-14', 0, '', '4', '63', NULL, 0.00, '', '0', NULL, '2', 'ece-2018 batch, no basic knowledge and said i read in google. for career gap she blames her parents. expt 3L, since her bro is working in IT she chosen IT, for terms and conditions she has to check with her family, will relocate to tnagar. ', '2', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-12 07:52:37', 1, '2022-02-12 07:59:46', 0, NULL, 1),
(7765, '', '0', '8300181577', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202120008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-12 11:09:15', 0, NULL, 0, NULL, 1),
(7766, 'Sangeetha m', '4', '8270433621', '9841554949', 'sangeethasmart4949@gmail.com', '2000-06-12', 21, '2', '2', 'Murugan', 'Daily Worker', 30000.00, 2, 14000.00, 17000.00, 'Ponneri', 'Ponneri', '2202130001', '1', '2', 'upload_files/candidate_tracker/43269746645_sangeetha resume.pdf', NULL, '1', '2022-02-14', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for WFH. from ponneri too long and sal expt is 16-17k TH, currently working in amazon seller, came with friends.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-13 09:47:56', 87, '2022-02-28 10:25:03', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7767, 'Arun kumar', '5', '8056250466', '', 'arunastro623@gmail.com', '1999-07-09', 22, '2', '2', 'Devaraj', 'Watch man', 45000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2202130002', '1', '2', 'upload_files/candidate_tracker/81131677641_ARUNKUMAR.D Banca Chennai.doc', NULL, '1', '2022-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-13 11:06:38', 1, '2022-02-13 11:09:03', 0, NULL, 1),
(7768, 'SHEERIN BANU.A', '4', '6382877447', '', 'banuafsar111197@gmail.com', '1997-11-11', 24, '2', '2', 'batsha', 'passed away', 16000.00, 2, 17000.00, 17000.00, 'chennai', 'chennai', '2202140001', '1', '2', 'upload_files/candidate_tracker/1727638031_Sheerin_resume.pdf (2) (1).docx', NULL, '2', '2022-02-14', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'currently working in Travels handling end to end admin and booking, she dont have esi and pf there and that is the only reason for job change. has 3+ yrs exp in calling. she is from chengalpet but 2yrs she worked in imarqu, Mctc is 16k and expt is 17k. father-late and her mom was working in clg. ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-14 09:33:46', 8, '2022-02-14 04:19:43', 0, NULL, 1),
(7769, 'vijay', '4', '9629693589', '9486067762', 'vijayanand181299@gmail.com', '1999-12-18', 22, '2', '2', 'anandhan', 'nil', 40000.00, 1, 0.00, 10000.00, 'thanjavur', 'thanjavur', '2202140002', '1', '1', 'upload_files/candidate_tracker/893008563_vijay RESUME.docx', NULL, '1', '2022-02-14', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not that much profile have no vision  to where he is  going to work.doing his msc in regular last sem due to covid attendingonline classes xxamp intrested in it field so will not suit for crm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-14 10:14:05', 58, '2022-02-14 02:53:11', 0, NULL, 1),
(7770, 'Jessy Juliet.j', '6', '9042911572', '8925481620', 'jessyjuliet485@gmail.com', '1997-09-30', 24, '3', '2', 'I. Joseph', 'Cooli', 45000.00, 2, 17500.00, 18000.00, 'Chennai', 'Chennai', '2202140003', '', '2', 'upload_files/candidate_tracker/16717097972_RESUME FINAL.docx', NULL, '1', '2022-02-14', 0, '', '3', '59', '2022-02-17', 164496.00, '', '5', '1970-01-01', '2', 'Selected for Thiyagu Team in Staff Role Prop Company,have exp in Telecalling but not a relevant one,let us analyse the candidate in 7 Days training', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-14 10:51:01', 60, '2022-02-15 07:19:28', 0, NULL, 1),
(7771, 'rahamath nisha', '25', '9176436070', '', 'rahanisha7@gmail.com', '2000-01-26', 22, '2', '2', 'syed ibrahim', 'officer', 100000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2202140004', '1', '2', 'upload_files/candidate_tracker/66399741428_Raha Nisha Resume-1.pdf', NULL, '1', '2022-02-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested in telecalling, since she is not interested in calling she dont wanna to attend interview and her way of talking and attitude will not suite for us, still serving in accenture(contract based) 22days notice. expt 18-20k. and looking for similar kind of job and no excel knowledge, no idea about gsheets.', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-14 11:15:20', 87, '2022-02-28 10:23:32', 0, NULL, 1),
(7772, 'Jagadeeshwaran', '13', '9677240750', '', 'jagadeeshw67@gmail.com', '1999-10-18', 22, '2', '2', 'Parameswaran', 'Tiles worker', 15000.00, 1, 12000.00, 12000.00, '33/67 p.v.koil 2 Street Royapettah, Chennai-600014', 'Chennai, Royapettah', '2202140005', '1', '2', 'upload_files/candidate_tracker/64040250080_RESUME.pdf', NULL, '1', '2022-02-14', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no sustainability, 6m as part time in pizza maker, 6m in sriram li, 3m as game designer, no basic knowledge in lang like php. not clear about his previous jobs, not interested in calling, expt 10-12k. need time to think about the company norms.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-14 11:32:46', 1, '2022-02-14 11:47:10', 0, NULL, 1),
(7773, 'Karnati praneeth', '5', '8500612699', '8099122223', 'Praneethchowdary057@gmail.com', '2007-02-14', 15, '2', '2', 'Karnati Umamaheswar Rao', 'CONTRACTER', 40000.00, 1, 16000.00, 21000.00, 'Nellore Andhra pradesh', 'Chennai', '2202140006', '1', '2', 'upload_files/candidate_tracker/40625952163_praneeth resum 1.docx', NULL, '2', '2022-02-15', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate didnt share the required data, informed him multiple times over the call.Even today(22 Mar) tried reaching him ,but no Response', '5', '2', '', '3', '4', '', '2', '2022-03-04', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-14 11:53:13', 60, '2022-02-26 04:11:55', 0, NULL, 1),
(7774, 'Dinesh.p', '4', '9344441092', '8124060378', 'dineshpasupathi2000@gmail.com', '2000-04-30', 21, '2', '2', 'Geetha.p', 'House wife', 20000.00, 1, 0.00, 18000.00, 'Ponneri', 'Ponneri', '2202140007', '1', '1', 'upload_files/candidate_tracker/75801669005_CV_202202141019517.pdf', NULL, '1', '2022-02-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested in calling,  from ponneri too long, okay with collection profile but sal expt is 15k TH, currently working in amazon seller, came with friends.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-14 12:08:38', 87, '2022-02-28 10:28:35', 0, NULL, 1),
(7775, 'MANI.T', '4', '6380823818', '9344515702', 'mathewmani1161998@gamil.com', '1998-06-11', 23, '3', '2', 'Paravathi', 'Hose wife', 30.00, 3, 0.00, 18000.00, 'Ponneri', 'Ponneri', '2202140008', '', '1', 'upload_files/candidate_tracker/67739978627_MANI RESUME-2.pdf', NULL, '1', '2022-02-14', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, will not suite for telecalling, from ponneri too long, okay with collection profile but sal expt is 15k TH, currently working in amazon seller, came with friends.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-14 12:09:34', 1, '2022-02-14 12:19:41', 0, NULL, 1),
(7776, 'Nivetha', '11', '9361799794', '9600719695', 'Nivethu09@gmail.com', '1996-01-09', 26, '2', '2', 'Ravi', 'Driver', 25000.00, 1, 15000.00, 20000.00, 'Kumbakonam', 'Kumbakonam', '2202140009', '1', '2', 'upload_files/candidate_tracker/97126662105_8l6ae-ztrzw.pdf', NULL, '2', '2022-02-14', 2, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Communication below average, has recruitment exp but am not convinced with her existing profile analysis . has only basic knowledge in sourcing. 1yr in finance company as recruiter-10k and past 2yrs in house recruitment as WFH module with 15k take home, expt 20k as take home. not an immediate joiner 2m notice period. reason for job change- since she in recruitment for past 3yrs looking for career growth. she doesnt prefer recruiter profile.', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-14 02:18:28', 1, '2022-02-14 02:46:55', 0, NULL, 1),
(7777, 'Deva R', '13', '7904083980', '', 'Aved2998@gmail.com', '1998-08-29', 23, '2', '2', 'Radhakrishnan K', 'Barbender', 30000.00, 1, 0.00, 12000.00, 'Mangadu', 'Mangadu', '2202140010', '1', '1', 'upload_files/candidate_tracker/32591621303_Deva_Resume.pdf', NULL, '1', '2022-02-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not okay with company norms, has 3m exp in php 7k and expt 12k, will not sustain.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-14 03:57:44', 1, '2022-02-14 04:02:51', 0, NULL, 1),
(7778, '', '0', '7598117702', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202140011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-14 05:37:44', 0, NULL, 0, NULL, 1),
(7779, 'R jaysankar', '4', '6381309796', '9003075994', 'jaisankarragunathan789@gmail.com', '1993-07-07', 28, '2', '2', 'K Ragunathan', 'Civil engineer', 60000.00, 1, 0.00, 18000.00, 'Sembakkam,east Tambaram', 'Sembakkam,east tambaram', '2202140012', '1', '1', 'upload_files/candidate_tracker/68272269248_Andrews_Resume.pdf', NULL, '1', '2022-02-15', 0, '', '3', '59', '2022-02-16', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Renewal with CTC 180000 includes PF/ESI/PT', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '5', 'Offer Mail Link Shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-14 05:44:09', 60, '2022-02-15 05:59:56', 0, NULL, 1),
(7780, 'sANAM BALAJINADH', '5', '9391915082', '9346904722', 'sanambalajinadh@gmail.com', '1997-08-04', 24, '2', '2', 'Sanam purnachandra rao', 'Accountant', 35000.00, 1, 0.00, 2000.00, 'Guntur', 'Guntur', '2202140013', '1', '1', 'upload_files/candidate_tracker/59874500500_balaji resume full.docx', NULL, '3', '2022-02-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very poor English communication and speaks telugu, not profiled, has 2yr exp in reliance retail as TL 20k and expt the same, his father got transfer to Hyderabad, his father accountant and mother teacher and he is only son. not interested in field sales will not suite for RM profile.', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-14 06:59:14', 87, '2022-02-28 10:34:56', 0, NULL, 1),
(7781, 'Mohd Arbaaz', '5', '9666096091', '', 'arbaazsabri16@gmail.com', '1990-03-26', 31, '2', '1', 'Abdul raheem', 'Businessman', 60000.00, 3, 25000.00, 30000.00, 'Nizamabad', 'Hyderabad', '2202140014', '1', '2', 'upload_files/candidate_tracker/29666114784_1644828096474_1644828008261_arbaaz cv.docx', NULL, '2', '2022-02-15', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he was an agent in exide LI (commission based) for 2yrs, 4yrs as sales incharge like maintanance, 2yrs in real estate as freelancer (commission based) selling plots and house, for past 2m he is working in a real estate company as BDM with 20k. his expt is 25k take home. he is from telugana and relocated to hyderabad with his wife and kid. father into hotel biz. his communication is not good and expt is high will not suite for RM profile.', '5', '2', '', '3', '4', '', '2', '1970-01-01', '3', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-14 07:08:17', 87, '2022-02-28 10:36:13', 0, NULL, 1),
(7782, 'Bharathi Priya S', '22', '8072721447', '', 'bharathi52.bp@gmail.com', '1997-02-05', 25, '2', '1', 'ganesamoorthi', 'business', 30000.00, 1, 0.00, 2.60, 'pallikaranai', 'palli', '2202150001', '1', '1', 'upload_files/candidate_tracker/54874838286_BHARATHI PRIYA - Resume.pdf', NULL, '1', '2022-02-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-15 10:18:08', 1, '2022-02-15 10:24:51', 0, NULL, 1),
(7783, 'R.Devi', '4', '9791016044', '9940275328', 'devi98974@gmail.com', '1998-02-05', 24, '2', '2', 'M.Ravikumar', 'Own business', 15.00, 2, 14.00, 20.00, 'Chennai', 'Chennai', '2202150002', '1', '2', 'upload_files/candidate_tracker/28653398150_Document 37.pdf', NULL, '1', '2022-02-15', 10, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '2yrs in credit card and fresher for us. will not suite for our process, Mctc is 13.5k and expt 20k.  ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-15 11:35:46', 1, '2022-02-15 11:45:16', 0, NULL, 1),
(7784, 'preethi', '4', '9176686136', '', 'preethuelumalai4400@gmail.com', '2000-04-04', 21, '3', '2', 'elumalai', 'cooli', 5000.00, 2, 0.00, 10000.00, 'ashok nagar', 'Ashok Nagar', '2202150003', '', '1', 'upload_files/candidate_tracker/71171384420_file_15Feb22.pdf', NULL, '1', '2022-02-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up and will not suite for calling and she is not interested in calling too', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1000', '', NULL, NULL, NULL, 1, '2022-02-15 11:59:48', 8, '2022-02-15 04:11:59', 0, NULL, 1),
(7785, 'Raja.p', '5', '9500100182', '', 'don.raja.182@gmail.com', '1996-05-29', 25, '2', '2', 'pachaiyappan.G', 'nil', 16000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2202150004', '1', '2', 'upload_files/candidate_tracker/17062234319_document.pdf', NULL, '1', '2022-02-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed and requeted him to share the required documents later not responding to the calls', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-15 12:10:59', 60, '2022-02-26 04:11:04', 0, NULL, 1),
(7786, 'Jayashree', '20', '8778343492', '6380099715', 'Jaibalajai66@gmail.com', '1996-12-14', 25, '2', '1', 'Chandrasekaran', 'Health department', 50000.00, 1, 17500.00, 16.00, 'Aranvoyal kuppam', 'Aranvoyal kuppam', '2202150005', '1', '2', 'upload_files/candidate_tracker/97329856423_R.C. JAYA SHREE-converted.pdf', NULL, '1', '2022-02-15', 1, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'exp but donxquott have any offer letter xxamp reliving letter . salary expectation also very high   so rejected.', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-15 12:34:17', 58, '2022-02-15 04:43:11', 0, NULL, 1),
(7787, 'Mandal Manikantan', '22', '6380853075', '9629933955', 'Manikantan9944@gmail.com', '1994-02-05', 28, '2', '2', 'Paramasivam', 'Business', 15000.00, 1, 17000.00, 25000.00, 'Nungambakkam Chennai', 'Nungambakkam Chennai', '2202150006', '1', '2', 'upload_files/candidate_tracker/87527048344_Manikantan Resume 23.pdf', NULL, '1', '2022-02-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Fresher for digital marketing, completed 4m internship with 15k and expt is 20k. he is not strong in basics and he is not active. shared profile with reyaz and received the same feedback.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-15 01:17:20', 1, '2022-02-15 01:28:38', 0, NULL, 1),
(7788, 'B.Balaji', '4', '9786660196', '9786660166', 'bala07shinde.bs7@gmail.com', '1994-05-11', 27, '2', '2', 'Sunitha B', 'Diploma in Hotel Management', 35000.00, 2, 0.00, 18000.00, '1 Kallarai Thoppu Street MAYILADUTHURAI', 'No11 Gandhi nagar,shangar Nagar, pammal', '2202150007', '1', '2', 'upload_files/candidate_tracker/37910035043_Resume_Balaji.pdf', NULL, '1', '2022-02-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very poor English communication and speaks telugu, not profiled, has 2yr exp in reliance retail as TL 20k and expt the same, his father got transfer to Hyderabad, his father accountant and mother teacher and he is only son. not interested in field sales will not suite for RM profile.', '1', '1', '', '1', '1', '', '2', '2022-02-16', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-15 02:45:42', 60, '2022-02-24 07:08:30', 0, NULL, 1),
(7789, 'Rajalakshmi', '16', '7871287526', '7305465187', 'vrajimech@gmail.com', '1997-05-09', 24, '2', '2', 'Venkatesan', 'Business', 150000.00, 2, 14600.00, 20000.00, 'Little kanchipuram', 'Little kanchipuram', '2202160001', '14', '2', 'upload_files/candidate_tracker/35975527149_Rajalakshmi Mech with SD.pdf', NULL, '1', '2022-02-16', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 2.9m exp as mis but her skill set are avg. we need lot of time to train her.', '3', '1', '0', '1', '1', '0', '2', '2022-02-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-16 10:49:14', 1, '2022-02-16 10:53:46', 0, NULL, 1),
(7790, '', '0', '8754818967', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202160002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-16 11:21:30', 0, NULL, 0, NULL, 1),
(7791, 'P.SATHISH KUMAR', '5', '8610885092', '9677143798', 'joesathish4u1996@gmail.com', '1996-08-13', 25, '2', '1', 'PALANISAMY D', 'Stationary shop', 25000.00, 3, 13000.00, 18000.00, 'Tambaram', 'Tambaram', '2202160003', '1', '2', 'upload_files/candidate_tracker/12496622480_RESUME sathish-1.pdf', NULL, '1', '2022-02-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 2.5yr exp in consultancy and loan process. no existing analysis his expt is 15k th and his mctc is 13k and 11.5k th, 6m gap and got married 15days back. will not sustain for our process and salary.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-16 11:24:06', 58, '2022-02-16 11:58:25', 0, NULL, 1),
(7792, 'M.priyadharshini', '4', '8608606128', '', 'Priyadharshini.kbi1991@gmail.com', '1991-12-07', 30, '2', '2', 'P.murugan', 'Retired police', 25000.00, 3, 0.00, 12000.00, 'Theni', 'Velachery', '2202160004', '1', '1', 'upload_files/candidate_tracker/95327071411_IBGM Semester Template.pdf', NULL, '1', '2022-02-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, not interested in sales and will not handle pressure and sustain. expt 11-12k she is from theni and currently residing in velacherry.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-16 11:32:32', 1, '2022-02-16 11:48:58', 0, NULL, 1),
(7793, 'SETHUPATHI.A', '5', '8489948095', '', 'aksethu95@gmail.com', '2007-02-16', 0, '2', '1', 'buvaneshwari', 'not working', 20000.00, 6, 20000.00, 22000.00, 'vizupuram', 'vizupuram', '2202160005', '1', '2', 'upload_files/candidate_tracker/38108216242_Sethupathi1608%20resume.docx', NULL, '2', '2022-02-16', 0, '', '5', '80', NULL, 0.00, '', '0', NULL, '1', 'Rejected ', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-16 12:00:13', 1, '2022-02-16 12:02:49', 0, NULL, 1),
(7794, 'B. Chandrika', '4', '8428733911', '9940137962', 'chandulucky580@gmail.com', '1994-10-19', 27, '3', '1', 'Sakthival. N', 'Atuo mechanical', 15000.00, 1, 0.00, 11000.00, 'Gopal chetty Street anakaputhur Chennai', 'Gopal chetty Street anakaputhur Chennai', '2202160006', '', '2', 'upload_files/candidate_tracker/67822723752_Resume.doc', NULL, '1', '2022-02-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No degree 10th, married 2kids, husband auto mechanic, 1.6yr in child life trust as caller 9K, reason for reliving work pressure, will not handle sales pressure and no convincing skill will not suite for us. expt 11k.', '1', '2', '', '1', '1', '', '1', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-16 12:01:13', 7, '2022-02-16 01:26:08', 0, NULL, 1),
(7795, 'S Sangameswaran', '15', '8778949728', '9384436503', 'Saisakthi226@gmail.com', '1997-11-03', 24, '3', '2', 'M Santhi', 'Government', 40000.00, 1, 0.00, 15000.00, 'Aruppukottai', 'Ponneri', '2202160007', '', '1', 'upload_files/candidate_tracker/75371564748_Sanga_New.pdf', NULL, '1', '2022-02-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'bsc maths due to BL he completed in 2021, no basic knowledge in development. will learn and come. father late, mom aeo in govt. ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-16 12:28:09', 1, '2022-02-16 12:35:30', 0, NULL, 1),
(7796, 'Vishnu R', '5', '9940359682', '9940431950', 'Vishnuapple007@gmail.com', '1997-12-04', 24, '2', '2', 'Rajendran', 'Supervisor', 40000.00, 2, 21000.00, 25000.00, 'Chennai', 'Chennai', '2202160008', '14', '2', 'upload_files/candidate_tracker/66808601094_Vishnu%20resume%20new.docx', NULL, '1', '2022-02-16', 30, '', '3', '59', '2022-03-18', 334620.00, '', '4', '2022-05-05', '1', 'Selected for Manikandan Team with PF.ESI/PT BGV cleared', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer mail sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-16 12:41:36', 60, '2022-02-23 07:19:34', 0, NULL, 1),
(7797, '', '0', '9703220242', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202160009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-16 06:16:25', 0, NULL, 0, NULL, 1),
(7798, 'asamwar saikrishna', '5', '8519944542', '', 'kittusaikittu5275@gmail.com', '1996-07-10', 25, '2', '2', 'srinivas', 'officer', 100000.00, 1, 15000.00, 20000.00, 'hyderabad', 'hyderabad', '2202160010', '1', '2', 'upload_files/candidate_tracker/64239605500_NEWSAIKRISHNARESUME (3).docx', NULL, '2', '2022-02-16', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Avg communication, has 2w and no laptop and cant arrange. father runs a grocery shop, mom house wife, 15days notice. he is From Bhainsa 10km to mathapur, currently working in HDB fin  credit card sales for the pastr 10m and ctc is 1.5L expt is 3L, due to work pressure and low salary he is looking for job change, will not sustain for us,', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-16 06:20:52', 60, '2022-02-16 06:42:24', 0, NULL, 1),
(7799, 'Arulkumar', '4', '8220770268', '9095597504', 'Arul1996.AG@gmail.com', '1996-06-03', 25, '2', '2', 'Govindaraj', 'Tailaor', 100000.00, 1, 13000.00, 16000.00, 'Minjur', 'T.nagar', '2202160011', '1', '2', 'upload_files/candidate_tracker/86056804959_Arul.resume.doc', NULL, '3', '2022-02-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 2yr exp in semi voice with 12.5K, was taking care of his father tailoring biz for the past 1 yr. not bold and not speaking up will not suite for our process. expt 15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-16 06:49:20', 1, '2022-02-17 10:35:43', 0, NULL, 1),
(7800, 'Arunkumar E', '5', '6382593352', '8525058001', 'arunmani567@gmail.com', '1990-02-17', 0, '1', '2', 'G.Elango', 'Building Contract', 31000.00, 1, 0.00, 23500.00, 'Erode', 'Erode', '2202160012', '', '1', 'upload_files/candidate_tracker/39655426770_1645019229468_resume-22.docx', NULL, '2', '2022-02-16', 0, '66667', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Kindly Refix', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-16 06:56:13', 1, '2022-02-16 07:17:39', 0, NULL, 1),
(7801, 'Abdul Rahim.K', '13', '9600846929', '8667833662', 'kh.abdulrahim98@gmail.com', '1998-02-20', 23, '2', '2', 'Kadhar Hussain', 'Tailor', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2202170001', '1', '1', 'upload_files/candidate_tracker/63256658336_Rahim Resume-1 (1).pdf', NULL, '1', '2022-02-17', 0, '', '3', '59', '2022-02-21', 96000.00, '', '', '2022-03-31', '1', 'Selected for PHP - 6 months Intern - 3.5K Stipend plus 2.6 yrs of Employment', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-17 10:45:16', 60, '2022-02-21 03:08:12', 0, NULL, 1),
(7802, 'Vignesh v', '4', '9551601051', '9097041693', 'Vickyhari123456@gmail.com', '1999-11-17', 22, '2', '2', 'Velmurugan', 'Driver', 15000.00, 1, 15000.00, 15000.00, 'T nagar', 'T.nagar', '2202170002', '1', '2', 'upload_files/candidate_tracker/78576586310_1630074436846Resume_Vignesh.pdf', NULL, '1', '2022-02-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for calling, was working in chennai corparation for past 2yrs timing 7:00am to 12:00pm with 15K, looking for similar kind of job with 15K+ salary. very lethargic he dont prefer target based job, will not suite for our process and his father and brother-driver, mom-hw.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-17 10:58:07', 60, '2022-02-17 01:06:10', 0, NULL, 1),
(7803, 'M.janaki', '13', '9944293583', '', 'Janakiamj111@gamil.com', '2000-05-20', 21, '1', '2', 'Muthusamy', 'Farmer', 10000.00, 6, 0.00, 15000.00, 'Chennai', 'Chrompet', '2202170003', '', '1', 'upload_files/candidate_tracker/83864612175_1630074436846Resume_Vignesh.pdf', NULL, '1', '2022-02-17', 0, 'P1039', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'attened technical and got same feedback from all, no practical knowledge. she memorized all interview questions. expt 10K+ and initially she was not okay with 3m internship and norms later on she is okay with it. ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-17 12:20:49', 1, '2022-02-17 12:28:54', 0, NULL, 1),
(7804, 'S. Logeswari', '4', '9962623505', '7338909349', 'Ammalogukaviamma@gmail.com', '2002-02-19', 19, '1', '2', 'Sankar', 'Cooli', 15000.00, 2, 0.00, 110000.00, 'No. 35corporation small line pattalam chennai-12', 'No. 35corporation Small Line Pattalam Chennai-12', '2202170004', '', '1', 'upload_files/candidate_tracker/40484444092_New doc Feb 17, 2022 12.37 PM.pdf', NULL, '1', '2022-02-17', 0, 'P1275', '3', '59', '2022-02-21', 120000.00, '', '3', '2023-02-01', '2', 'Selected for Elite Consultant Role 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-17 12:42:13', 60, '2022-02-18 06:18:32', 0, NULL, 1),
(7805, '', '0', '8074098994', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202170005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-17 03:17:47', 0, NULL, 0, NULL, 1),
(7806, 'Sathishkumar s', '4', '9597324931', '', 'sathishofficl@gmail.com', '2001-11-28', 20, '2', '2', 'Sakthivel', 'Carpenter', 25000.00, 2, 0.00, 13000.00, 'Kallakurichi', 'Chennai', '2202170006', '1', '1', 'upload_files/candidate_tracker/96715636619_sathish kumar.pdf', NULL, '1', '2022-02-18', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', 'fresher, immature and all his dissensions are taken by his sister, got offer for 12.5k and not joined there. has basic calling skills. check once.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-17 03:40:23', 1, '2022-02-17 03:53:31', 0, NULL, 1),
(7807, 'Kaushal Diwedi', '5', '7032211504', '9676615917', 'dewedikaushal@gmail.com', '1996-05-13', 25, '2', '2', 'D. Kishan das', 'Advocate', 40000.00, 2, 0.00, 3.20, 'Hyderabad', 'Hyderabad', '2202170007', '1', '2', 'upload_files/candidate_tracker/30282044966_kdresume.pdf', NULL, '2', '2022-02-17', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Kindly Refix', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-17 04:05:45', 7, '2022-02-17 05:00:35', 0, NULL, 1),
(7808, 'Vedant GOP', '5', '7058478364', '', 'gopvedant@gmail.com', '1998-09-12', 23, '2', '2', 'Dashrath Gop ( Father )', '12th', 50000.00, 1, 16000.00, 25000.00, 'Solapur', 'Hyderabad jubliee hills', '2202170008', '1', '2', 'upload_files/candidate_tracker/13182496620_resume.pdf', NULL, '2', '2022-02-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is from maharastra and if got offer he will relocate to hyderabad,  his english comm is not convincing he is looking for team lead category since he is handling 15 ppl in current org. and he is not interested in target based and field sales job, his existing analysis is not convincing. no notice period and expt 25k take home, no relavant sales exp. he need a time to think about it too.', '5', '2', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-17 04:13:22', 60, '2022-02-17 04:47:13', 0, NULL, 1),
(7809, '', '0', '7092182825', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202170009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-17 05:13:09', 0, NULL, 0, NULL, 1),
(7810, 'Sathish Kumar R', '4', '9360796614', '7845600573', 'sathish36196kumar@gmail.com', '2007-02-17', 0, '2', '2', 'M.Ravi', 'Farmer', 20000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2202170010', '1', '1', 'upload_files/candidate_tracker/50010330029_RESUME.pdf', NULL, '1', '2022-02-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has stammering issues, will not suite for voice, no xl skills will not suite for backend too. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-17 06:24:39', 7, '2022-02-24 04:02:19', 0, NULL, 1),
(7811, 'Yelisetty venkatarao', '5', '6300317328', '8008794576', 'venkataraoyelisetty@gmail.com', '1999-04-14', 22, '3', '2', 'Yelisetty thirupathirao', 'Forming', 9000.00, 2, 0.00, 20000.00, 'Village: Nanadirajupalem,d.no9-97, pin code522411', 'Village: Nanadirajupalem,D.no9-97,pincode:522411', '2202170011', '', '1', 'upload_files/candidate_tracker/1371914778_Resume.pdf', NULL, '3', '2022-02-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '10', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-17 07:41:33', 1, '2022-02-17 08:06:43', 0, NULL, 1),
(7812, 'Yogesswari', '22', '8939655740', '', 'yogesswarimn@gmail.com', '1985-06-05', 36, '2', '1', 'Balaji', 'Software Engineer', 100000.00, 2, 0.00, 17000.00, 'Cgennai', 'Kandhanchavadi chennai', '2202170012', '1', '2', 'upload_files/candidate_tracker/7269303956_Yogesswari_Nagasayanan_-_Content_Writer (1).pdf', NULL, '1', '2022-02-18', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 9m exp in content writing in 2014 has 8yr gap in between, no basic idea about DM, expt 17k.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-17 08:14:20', 1, '2022-02-17 08:18:23', 0, NULL, 1),
(7813, 'Lenin prabhakaran. K', '4', '9677701358', '9688708954', 'leninprabhakaran0718@gmail.com', '1998-06-21', 23, '2', '2', 'Kannan. N', 'Painter', 10000.00, 1, 0.00, 13000.00, 'west street kattuparamakudi paramakudi', 'First kamaraj nagar Anna Nedum pathai choolaimedu', '2202170013', '1', '1', 'upload_files/candidate_tracker/98575345975_lenin resume_updated.pdf', NULL, '1', '2022-02-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'his pronunciation is not clear, will not suite for our process , 2m in calling 9k he is not okay sal, expt 11-12k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-17 08:29:52', 1, '2022-02-18 11:02:37', 0, NULL, 1),
(7814, 'Mari ram lakshmanan', '22', '9345477204', '', 'Mariram.mr@gmail.com', '1995-07-30', 26, '2', '2', 'Mayil vahanan', 'Homemade food products', 1000000.00, 2, 200000.00, 400000.00, 'Theni', 'Chennai', '2202170014', '1', '2', 'upload_files/candidate_tracker/56365801438_MARI RAM LAKSHMANAN (4).pdf', NULL, '1', '2022-02-18', 30, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'HIgh salary expectations', '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-17 11:39:20', 1, '2022-02-18 11:01:27', 0, NULL, 1),
(7815, 'A.N.V.VIJAYABALAAJI', '4', '6379748635', '9840158727', 'Vijayabalaaji1572@gmail.com', '2000-07-15', 21, '1', '2', 'Vishnu hasan', 'Business', 30000.00, 0, 11000.00, 12000.00, 'T.nagar', 'T.nagar', '2202180001', '', '2', 'upload_files/candidate_tracker/24945033264_CV_2022010512553561.pdf', NULL, '1', '2022-02-18', 0, 'P1021', '3', '59', '2022-02-21', 132000.00, '', '6', '2022-08-01', '2', 'Selected for Elite RE in consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer mail shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-18 10:02:32', 60, '2022-02-18 06:16:24', 0, NULL, 1),
(7816, 'Santhosh kumar S', '16', '8807945982', '', 'Stsanthosh24@gmail.com', '1989-08-24', 32, '2', '2', 'Subramani', 'Own business', 50000.00, 2, 19400.00, 25000.00, 'Madhuranthagam', 'Chennai kovilambakkam', '2202180002', '14', '2', 'upload_files/candidate_tracker/19690798396_1630074436846Resume_Vignesh.pdf', NULL, '1', '2022-02-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'oral and writing is below avg, has around 10yr exp with 19k ctc and expt 30%, he is very slow and couldnt see his exp in terms of skills.', '3', '2', '', '1', '1', '', '1', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-18 10:19:58', 7, '2022-02-18 11:31:35', 0, NULL, 1),
(7817, 'Bala Rajesh D', '11', '9361357588', '', 'balarajesh9197@gmail.com', '1997-09-03', 24, '2', '2', 'B deivachamy', 'Sub Inspector of police', 60000.00, 1, 0.00, 17000.00, 'T.Nagar', 'T.Nagar', '2202180003', '1', '1', 'upload_files/candidate_tracker/63628107127_Bala Rajesh Re?sume?.pdf', NULL, '1', '2022-02-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skills, father traffic police, since he is not interested in training he is looking for job. expt 15k', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-18 10:34:38', 58, '2022-02-18 02:36:53', 0, NULL, 1),
(7818, 'A.SHIVA RAJ', '5', '7207087207', '', 'Shivarazz@gmail.com', '1999-07-21', 22, '2', '2', 'amandhu', 'accountant', 1.00, 1, 13000.00, 18000.00, 'banglore', 'banglore', '2202180004', '1', '2', 'upload_files/candidate_tracker/37064970032_shivaraj resume nizamabad.docx', NULL, '2', '2022-02-18', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'was waiting to connect. no response', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-18 11:31:20', 1, '2022-02-18 11:43:36', 0, NULL, 1),
(7819, 'S.Keerthana', '11', '9566172516', '9342062551', 'keerthanasaravanan1199@gmail.com', '1999-01-01', 23, '1', '1', 's Theresa', 'House wife', 20000.00, 1, 16000.00, 15000.00, 'Kodambakkam', 'Kodambakkam', '2202180005', '', '2', 'upload_files/candidate_tracker/9367983956_Keerthana-1.docx', NULL, '1', '2022-02-18', 0, 'HR7M', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'her communication is below avg, not interested in calling profile and target based. she will not suit for both CRM and recruiter profile. she is separated with her parents and kid.', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-18 11:37:21', 1, '2022-02-18 11:45:47', 0, NULL, 1),
(7820, '', '0', '7010761246', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202180006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-18 11:52:42', 0, NULL, 0, NULL, 1),
(7821, 'KALAIVANAN', '6', '6382297445', '8124528283', 'kalaivananaero@gmail.com', '1999-06-12', 22, '3', '2', 'NAGAJOTHI', 'Coolie', 15000.00, 2, 0.00, 14000.00, 'KUMBAKONAM', 'Kuduvanchery', '2202180007', '', '1', 'upload_files/candidate_tracker/46100453496_kalai updated resume.pdf', NULL, '1', '2022-02-18', 0, '', '3', '59', '2022-02-21', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-18 12:03:38', 60, '2022-02-19 11:39:44', 0, NULL, 1),
(7822, 'vivek', '5', '8884226038', '', 'Vivekvemula@gmail.com', '2007-02-18', 0, '2', '2', 'V SUBRAMANYAM', 'Agriculture', 25000.00, 0, 25000.00, 30000.00, 'banglore', 'Banglore', '2202180008', '1', '2', 'upload_files/candidate_tracker/86416595513_Vivek resume.pdf', NULL, '2', '2022-02-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 5yrs exp in credit card but not convinced with his analysis. comm. below avg. last mctc is 23k and expt 28K +, holds an offer for 28k. 6m worked in HDB and no doc for that. parents farmer and only son.', '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-18 12:04:38', 1, '2022-02-18 12:12:16', 0, NULL, 1),
(7823, 'Mohith Isai', '22', '9942266076', '', 'mohithisai@gmail.com', '2000-09-26', 21, '2', '2', 'Minila', 'Home maker', 10000.00, 2, 15000.00, 20000.00, 'Madurai', 'Chennai', '2202180009', '1', '2', 'upload_files/candidate_tracker/52475018638_Media Mohith Isai Resume.pdf', NULL, '1', '2022-02-21', 10, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no english comm. he is learning and completed 3m paid internship and he is doing freelance projects. expt 15-20k, reyaz checked his website and rejected.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-18 12:15:40', 7, '2022-02-21 04:10:40', 0, NULL, 1),
(7824, 'P Divakar', '5', '9100835121', '', 'pabbathidivakar1@gmail.com', '1996-04-21', 25, '2', '2', 'P.NAGA BABU', 'driver', 25000.00, 0, 14000.00, 18000.00, 'Kukatpalli', 'kukatpalli', '2202180010', '1', '2', 'upload_files/candidate_tracker/34880913398_1617125527914Resume_P.pdf', NULL, '2', '2022-02-18', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Kindly Reschedule', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-18 12:53:58', 1, '2022-02-18 12:57:01', 0, NULL, 1),
(7825, 'K.Nagaraj', '4', '8438900411', '7305702502', 'nagasri411@gmail.com', '1993-05-01', 28, '4', '1', 'Krishnamoorthy', 'Driver', 9000.00, 1, 13443.00, 15000.00, 'Thiruvannamalai', 'chennai', '2202180011', '', '2', 'upload_files/candidate_tracker/35138350251_ScannerGo_24Sep2021_778262.pdf', NULL, '1', '2022-02-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'his pronunciation is not good, will not suite for health, has sales exp and expt 15k tH.ref suthagar.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-18 02:35:00', 1, '2022-02-18 02:41:28', 0, NULL, 1),
(7826, 'Lavanya vT', '4', '8438210138', '', 'Lavanthulasidar060295@gmail.com', '1995-02-06', 27, '2', '2', 'Thulasidar', 'Business', 40000.00, 1, 11000.00, 18000.00, '32/33 thandavarayan street Sowcarpet, Chennai 79', '32/33 Thandavarayan Street Sowcarpet, Chennai 79', '2202180012', '1', '2', 'upload_files/candidate_tracker/41506007913_Lavanya Profile-converted.pdf', NULL, '1', '2022-02-21', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process and expt high', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-18 05:54:39', 7, '2022-02-21 12:29:16', 0, NULL, 1),
(7827, 'R Srinivas', '5', '9550179991', '7989907952', 'srinivasryakam4@gmail.com', '1995-03-31', 26, '2', '2', 'Father', 'Former', 10000.00, 0, 170000.00, 280000.00, 'MARKOOK SIDDIPET', 'MARKOOK SIDDIPET', '2202180013', '1', '2', 'upload_files/candidate_tracker/44846677731_SRINIVAS RESUME 1.docx', NULL, '2', '2022-02-18', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Kindly Reschedule', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-02-18 06:29:04', 1, '2022-02-18 06:38:11', 0, NULL, 1),
(7828, 'M Pritheka', '22', '9566822085', '', 'pritheka.m.shanthi@gmail.com', '1994-03-15', 27, '2', '2', 'G manoharan', 'Retired', 5000.00, 2, 0.00, 2.75, 'Vellore', 'Chennai', '2202180014', '1', '1', 'upload_files/candidate_tracker/79662238792_MPritheka.pdf', NULL, '2', '2022-02-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '1', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-18 06:33:15', 84, '2022-02-26 12:27:48', 0, NULL, 1),
(7829, '', '0', '9344594654', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202180015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-18 06:51:40', 0, NULL, 0, NULL, 1),
(7830, 'g.jacob jayakumar', '6', '8056171745', '8925731890', 'jacobchris97@gmail.com', '1994-09-14', 27, '2', '2', 'George and nancy', 'Rcm', 30.00, 1, 14000.00, 22000.00, 'Chennai', 'Chennai', '2202180016', '1', '2', 'upload_files/candidate_tracker/78635743908_jacob.2021.pdf', NULL, '1', '2022-02-21', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process, expt is high and no relevant exp. previously he was working in retail. no sales and convincing skills.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-18 10:59:01', 58, '2022-02-21 09:54:55', 0, NULL, 1),
(7831, '', '0', '7358259835', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202190001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-19 10:04:28', 0, NULL, 0, NULL, 1),
(7832, 'S.Manimegalai', '4', '9940188662', '7299197034', 'manimegalai1226akila@gmail.com', '1999-04-12', 22, '2', '2', 'T.Suresh kumar', 'Plumber', 10000.00, 1, 12000.00, 14000.00, 'Vellore', 'Saidapet', '2202190002', '1', '2', 'upload_files/candidate_tracker/19408828770_S.MANIMEGALAI Resume-WPS Office(1).pdf', NULL, '1', '2022-02-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 5m exp in loan with 12k no proper reliving, not good in script and expt 13-14k, will not handle sales pressure.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-19 10:51:57', 85, '2022-02-26 12:28:14', 0, NULL, 1),
(7833, 'geetha', '4', '8838797920', '', 'geethaprasath91@gmail.com', '2001-06-25', 20, '2', '2', 'ravi', 'hondai', 10000.00, 2, 0.00, 10000.00, 'pualliwalkam', 'Pualliwalkam', '2202190003', '1', '1', 'upload_files/candidate_tracker/65319505268_Geetha.Rresumepdf.pdf', NULL, '1', '2022-02-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped not suitable - Feedback from Interviewer', '1', '1', '', '', '', '', '1', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-19 12:01:01', 58, '2022-02-19 12:45:56', 0, NULL, 1),
(7834, 'THASLIN FIRDOUS', '6', '9342446912', '8838619705', 'thaslinfirdous06@gmail.com', '1998-06-16', 23, '3', '1', 'BAISUR RAHMAN', 'Daily wages', 15000.00, 2, 0.00, 12.00, 'Chennai', 'Chennai', '2202190004', '', '1', 'upload_files/candidate_tracker/52179213016_Resume_Tsln-1.PDF', NULL, '1', '2022-02-19', 0, '', '3', '59', '2022-02-21', 132000.00, '', '5', '1970-01-01', '2', 'Selected for Guru Team  in consultant role 5%', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-19 12:18:10', 60, '2022-02-19 06:47:28', 0, NULL, 1),
(7835, 'sahithya preethi m', '5', '9949350359', '', 'preethimuttamsetty16@gmail.com', '1998-01-01', 24, '2', '2', 'asha deepu', 'business', 30000.00, 0, 18000.00, 20000.00, 'vuyyuru', 'hyderabad', '2202190005', '1', '2', 'upload_files/candidate_tracker/10200305708_preethirsmm (6)-11 (2).pdf', NULL, '2', '2022-02-19', 0, '', '3', '59', '2022-02-28', 240000.00, '', '7', '2022-03-02', '2', 'Selected for ESales Rm in Hyderabad with PF/ESI/PT', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '3', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-19 12:31:30', 60, '2022-02-25 05:34:56', 0, NULL, 1),
(7836, '', '0', '8074988337', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-19 01:15:03', 0, NULL, 0, NULL, 1),
(7837, 'Karthick', '31', '9976390283', '', 'karthiashok5604@gmail.com', '1999-09-04', 22, '2', '2', 'Ashok kumar', 'Self employee', 70000.00, 1, 22000.00, 30000.00, 'Salem', 'Salem', '2202190007', '1', '2', 'upload_files/candidate_tracker/15244363786_KARTHICK A CV.docx', NULL, '2', '2022-02-22', 1, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for ReactJS, currently working with his bro (WFH) in html and css with 22k. not answered for the very basic questions but says he is not good in oral and strong in practical. i suggest team to give him any system task. . expt 25k-30k. from salem will relocate to chennai.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-19 05:57:43', 7, '2022-02-22 03:51:42', 0, NULL, 1),
(7838, 'M Latha', '13', '8015868307', '', 'Lathanandhini0707@gmail.com', '2000-12-07', 21, '2', '2', 'Muthu', 'Labour', 10000.00, 0, 0.00, 12000.00, 'No 43, Mettu Street, Thiruvottiyur, Chennai –19', 'Chennai', '2202190008', '1', '1', 'upload_files/candidate_tracker/20581717256_RESUME12.docx', NULL, '1', '2022-02-21', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'working as data entry operator, no basic knowledge in tech., she just started learning but no skills, expt 12k.', '2', '2', '', '', '', '', '1', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-19 09:24:52', 7, '2022-02-21 04:05:42', 0, NULL, 1),
(7839, 'Raj Sandhya', '22', '9790844072', '8072465967', 'abisandy10@gmail.com', '1994-10-10', 27, '2', '2', 'Thangaraj B', 'Cine field', 40000.00, 2, 13000.00, 18000.00, 'Chennai', 'Chennai', '2202200001', '1', '2', 'upload_files/candidate_tracker/4504883342_Raj Sandhya Resume (2).pdf', NULL, '1', '2022-02-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-20 01:03:05', 1, '2022-02-20 01:18:58', 0, NULL, 1),
(7840, 'Angelin Suganthi L', '22', '9677308542', '', 'angelinmetilda309@gmail.com', '1998-09-30', 23, '2', '2', '-', '-', 80000.00, 3, 13000.00, 25000.00, 'Chennai', 'Chennai', '2202210001', '1', '2', 'upload_files/candidate_tracker/32260893530_ANGELIN_SUGANTHI_L.docx', NULL, '1', '2022-02-21', 10, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'her comm is avg, no idea in blogs and has exp in ecom content writing. will not suite for us.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-21 08:16:33', 1, '2022-02-21 08:20:01', 0, NULL, 1),
(7841, 'Dinesh Dinesh', '4', '7010663213', '9025157409', 'TAMILPASANGA770971@GMAIL.COM', '2000-07-21', 21, '2', '2', 'Lalalajapathy', '13k', 16.00, 1, 0.00, 13.00, 'Thiruvallur', 'Thiruvallur', '2202210002', '22', '1', 'upload_files/candidate_tracker/20330100158_dinesh to saran.pdf', NULL, '1', '2022-02-21', 0, '', '3', '59', '2022-02-25', 126312.00, '', '3', '2022-03-02', '1', 'Selected for Tiruvallur Location - Consultant 5%', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', 'Offer Mail sentxquot- Changes in th joining Date', '', '', '', NULL, NULL, NULL, 1, '2022-02-21 10:55:37', 60, '2022-03-08 12:55:20', 0, NULL, 1),
(7842, 'Paramesh', '5', '8096615438', '', 'susanthuppula666@gmail.com', '1995-04-10', 26, '2', '1', 'UPPULA MALLAIAH', 'fresher', 20000.00, 2, 0.00, 15000.00, 'hyderabad', 'hyderabad', '2202210003', '1', '1', 'upload_files/candidate_tracker/96824183450_0_yellamma.doc', NULL, '2', '2022-02-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for RM profile, English comm bellow avg, father and brother into farming, he is fresher will not suite for calling and sales. ', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-21 10:58:05', 1, '2022-02-21 11:02:23', 0, NULL, 1),
(7843, 'Suber Khan M', '6', '7871272259', '9123577330', 'zubairsafi1997@gmail.com', '1997-12-08', 24, '2', '2', 'Mahin S', 'Bike mechanic', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2202210004', '1', '1', 'upload_files/candidate_tracker/87928157830_Upadated Resume (Subaer).doc', NULL, '1', '2022-02-21', 0, '', '3', '59', '2022-02-24', 182496.00, '', '3', '2022-03-03', '1', 'Selected for Suthagar Team,No relevant Exp,candidate  need to open a lot,can be trained,need to analyse him in the training period', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '02/Mar- Discussed with the candidate,committed that he will come today(03-Mar-2022),but didnt turn', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-21 12:18:56', 60, '2022-03-03 02:26:48', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7844, '', '0', '7550110793', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202210005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-21 01:44:23', 0, NULL, 0, NULL, 1),
(7845, 'sivaranjani n', '4', '8940433230', '', 'sivaranjanink@gmail.com', '2007-02-21', 0, '2', '2', 'jaya n', 'coolie', 120000.00, 1, 0.00, 12000.00, 'Chengalpattu', 'venpakkam chengalpattu', '2202210006', '1', '1', 'upload_files/candidate_tracker/75974313364_resume1.pdf', NULL, '1', '2022-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-21 01:47:20', 1, '2022-02-21 01:54:11', 0, NULL, 1),
(7846, 'R. Raja', '6', '8667631579', '', 'rajarsaa@gmail.com', '1998-02-16', 24, '2', '2', 'Rathish', 'Business', 12000.00, 1, 0.00, 12000.00, 'Nandhanam', 'Nandhanam', '2202210007', '1', '1', 'upload_files/candidate_tracker/30504623131_Resume.pdf', NULL, '1', '2022-02-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for IT jobs, will not suite for voice and sales profile, not speaking up, told him to learn and come.', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-21 02:20:15', 1, '2022-02-21 02:24:29', 0, NULL, 1),
(7847, 'Rajkumar P', '31', '6382209795', '7094058536', 'rajkumarprjpm@gmail.com', '2001-01-02', 21, '2', '2', 'Poolar', 'Cooli', 100000.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Rajapalayam', '2202210008', '1', '1', 'upload_files/candidate_tracker/5972940961_Rajkumar P.Resume-converted (2).pdf', NULL, '2', '2022-02-22', 0, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'ignore the previous feedback. Fresher, not strong in basics, but okay with 3m as trainee. willing to learn he is from rajapalayam, will relocate and immediate joiner. parents- daily wages, expt 10k.', '2', '1', '', '2', '2', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-21 04:00:36', 7, '2022-02-22 06:03:26', 0, NULL, 1),
(7848, 'Aravindh', '31', '8270714653', '8098923053', 'daravindh533@gmail.com', '1997-03-26', 24, '2', '2', 'P.Durai', 'Cooli', 10000.00, 3, 0.00, 10000.00, 'Tirunelveli.', 'Oragadam, Kanchipuram.', '2202210009', '1', '1', 'upload_files/candidate_tracker/97661959631_Aravindh.docx', NULL, '1', '2022-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-21 05:31:09', 1, '2022-02-21 05:48:23', 0, NULL, 1),
(7849, 'Navin Kumar N', '4', '6383473708', '', 'nk7203002@gmail.com', '1999-08-20', 22, '2', '2', 'N.sasikala', 'Garments', 15000.00, 0, 0.00, 20000.00, 'Thiruvalleeswarar Nagar', 'Thiruvalleeswarar Nagar', '2202210010', '1', '1', 'upload_files/candidate_tracker/8102224270_DocScanner Jan 31, 2022 8.02 PM.pdf', NULL, '1', '2022-02-22', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Hving 2 yrs experience, but he s not opening his mouth abt his previous calling script.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-21 08:41:19', 60, '2022-02-22 10:25:35', 0, NULL, 1),
(7850, '', '0', '7904626362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202220001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-22 09:57:22', 0, NULL, 0, NULL, 1),
(7851, '', '0', '2345678901', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202220002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-22 11:09:35', 0, NULL, 0, NULL, 1),
(7852, 'Gopalakrishnan', '4', '8754676771', '9444445264', 'gopalakrishnan1721@gmail.com', '1999-11-17', 22, '2', '2', 'Subramani', 'Xerox Shop', 16000.00, 0, 0.00, 15000.00, 'Sriperumbhdur', 'Sriperumbhdur', '2202220003', '1', '1', 'upload_files/candidate_tracker/78422889336_gopal resume.docx', NULL, '1', '2022-02-22', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he looking for non-voice process. couldnxquott handled pressure  so dropped.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-22 11:23:09', 58, '2022-02-22 04:02:29', 0, NULL, 1),
(7853, 'Karthikeyan', '4', '9786251942', '8637443078', 'karthikeyansankarbca@gmail.com', '2000-11-05', 21, '2', '2', 'Sankary', 'Hotel', 12000.00, 1, 0.00, 15000.00, 'No 4 AK Mottur thimunamuthur thirupattur dt', 'Sriperumbudur', '2202220004', '1', '1', 'upload_files/candidate_tracker/4675916078_Karthikeyan S.pdf', NULL, '1', '2022-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'asked for a time to confirm - too long distance- much prefers for Non Voice- Didnt turn back -Tried calling him No response', '1', '1', '', '4', '6', '', '2', '2022-02-23', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-22 11:25:31', 58, '2022-02-22 04:02:55', 0, NULL, 1),
(7854, 'Monisha M', '13', '9842403906', '', 'monishamanikandan2000@gmail.com', '2000-05-12', 21, '2', '2', 'Manikandan M', 'Supervisor in construction field', 45000.00, 1, 0.00, 18000.00, 'Theni', 'Theni', '2202220005', '1', '1', 'upload_files/candidate_tracker/52324688654_MONISHA_B.E_TN.pdf', NULL, '3', '2022-02-25', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no vacency in php, so check with other like react and mern. she is willing to relocate and join.', '2', '1', '', '1', '1', '', '2', '2022-03-07', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-22 01:06:50', 84, '2022-02-25 11:21:08', 0, NULL, 1),
(7855, 'pranav', '31', '7845175619', '', 'pranavkth7@gmail.com', '1997-10-10', 24, '2', '2', 'Usha moni', 'Nurse', 20000.00, 0, 0.00, 10000.00, 'Nagercoil', 'Nagercoil', '2202220006', '1', '1', 'upload_files/candidate_tracker/86996666657_PRANAV Lal - CV-4.docx', NULL, '2', '2022-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-22 03:22:37', 1, '2022-02-22 03:26:30', 0, NULL, 1),
(7856, 'Vishnuvarathan', '6', '6383796211', '', 'Vishnuvarathan678@gmail.con', '1996-09-07', 25, '2', '2', 'R. Pandiyan', 'Sme operator', 60000.00, 3, 0.00, 12000.00, 'Neyveli', 'Neyveli', '2202220007', '1', '1', 'upload_files/candidate_tracker/54675068431_Resumes (1).pdf', NULL, '2', '2022-02-23', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he wrote GATE exam  and also he attend coaching classes.. so he not suitable for us.. ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-22 04:00:50', 8, '2022-02-23 06:54:57', 0, NULL, 1),
(7857, 'Anantharaj', '13', '7871974912', '', 'happykingttk@gmail.com', '2001-03-15', 20, '2', '2', 'Sivanantham', 'Farmers', 45000.00, 1, 0.00, 15000.00, 'Vedaranyam', 'Vedaranyam', '2202220008', '1', '1', 'upload_files/candidate_tracker/67755306_Anantharaj_RESUME.pdf', NULL, '2', '2022-02-23', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, from vedaranyam will relocate to chennai, no basic skills, willing to learn in PHP. told him to learn and get back to you. parents farmers, expt 15k.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-22 04:16:24', 60, '2022-02-22 04:27:29', 0, NULL, 1),
(7858, 'Kavi Nilavu.R', '4', '9344250301', '7904808415', 'knilavu95@gmail.com', '1997-11-08', 24, '2', '2', 'Jesintha.R', 'House keeping', 20000.00, 1, 10000.00, 15000.00, 'Villivakkam chennai', 'Villivakkam chennai', '2202220009', '1', '2', 'upload_files/candidate_tracker/40442912385_KAVI new.pdf', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Has 1yr exp in customer support. not interested in calling, looking for chat support and backend. no knowledge in Excel. expt 15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-22 05:03:08', 1, '2022-02-22 06:24:33', 0, NULL, 1),
(7859, 'raghavendar b', '22', '9176265680', '', 'raghavaa97@gmail.com', '1997-02-18', 25, '2', '2', 'baskar m', 'digital associate', 800000.00, 1, 250000.00, 150000.00, 'chennai', 'chennai', '2202220010', '1', '2', 'upload_files/candidate_tracker/50189855620_RESUME RAG.docx', NULL, '1', '2022-02-23', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '1', 'Candidate selected for final round', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-22 05:05:18', 1, '2022-02-22 05:19:15', 0, NULL, 1),
(7860, 'BHARANIDHARAN G', '31', '8610716620', '7538824366', 'bharanigopal29@gmail.com', '1998-12-29', 23, '2', '2', 'Gopal C', 'Building contractor', 30000.00, 1, 0.00, 2.50, 'Erode', 'Bangalore', '2202220011', '1', '1', 'upload_files/candidate_tracker/70028273720_BHARANIDHARAN.G-Resume.pdf', NULL, '2', '2022-02-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-22 06:01:32', 1, '2022-02-22 06:05:39', 0, NULL, 1),
(7861, 'Theri Ganesh G', '6', '7418115478', '8939885024', 'theriganesh.aaa@gmail.com', '1994-04-27', 27, '2', '2', 'Gunasekaran A', 'Accountant in rice mill', 14000.00, 2, 12000.00, 15000.00, 'Srivilliputhur', 'Adambakkam', '2202220012', '1', '2', 'upload_files/candidate_tracker/77151558762_Theri 2021.pdf', NULL, '1', '2022-02-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed and proposed the salary breakup for his approval,finally the candidate messaged that he is not interested in the profile.REquested for the reasons but no response after that', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-22 06:02:19', 58, '2022-02-23 11:03:10', 0, NULL, 1),
(7862, '', '0', '9585695162', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202220013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-22 06:05:34', 0, NULL, 0, NULL, 1),
(7863, 'K.Diwakar', '4', '8675035189', '', 'divakar8141@gmail.com', '1999-12-05', 22, '2', '2', 'Kuppuswamy', 'Sathosh Electrical', 18000.00, 1, 12000.00, 18000.00, 'Thiruvallur', 'Thiruvallur', '2202220014', '1', '2', 'upload_files/candidate_tracker/63362895886_Divakar updated resume.docx.pdf', NULL, '1', '2022-02-23', 15, '', '1', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-22 06:24:01', 60, '2022-02-23 05:14:53', 0, NULL, 1),
(7864, 'Siva R', '4', '9159307700', '9566618712', 'siva915930@gmail.com', '1999-05-25', 22, '2', '2', 'Ravi', 'Vegetable seller', 200000.00, 0, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2202220015', '1', '1', 'upload_files/candidate_tracker/44619587967_i9th3-jbqnb.pdf', NULL, '1', '2022-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-22 06:26:36', 1, '2022-02-22 06:29:57', 0, NULL, 1),
(7865, 'M.Mujeeb Rahman', '4', '9941762200', '7401174149', 'mujeebro143@gmail.com', '1999-08-29', 22, '2', '2', 'Sajitha parveen', 'Housewife', 150000.00, 1, 0.00, 15000.00, '46/76 Savari muthu street mannady', 'Chennai parrys', '2202220016', '1', '1', 'upload_files/candidate_tracker/8590665440_Mujib resume(1).pdf', NULL, '3', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 6m exp in airtel inbound process as customer support with 15k mctc, he prefer non voice. will not sustain and he dont have proper reliving and payslip for 15k. expt 14-16k take home. in non voice he dont have excel knowledge.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-22 06:46:43', 1, '2022-02-22 06:54:00', 0, NULL, 1),
(7866, '', '0', '7845490630', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202220017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-22 06:50:41', 0, NULL, 0, NULL, 1),
(7867, 'Roslind Vasantha A', '31', '9600950636', '', 'roslindvasantha@gmail.com', '1995-04-10', 26, '2', '2', 'aruna vijayan s', 'teacher', 150000.00, 1, 0.00, 350000.00, 'Tirunelveli', 'chennai', '2202220018', '1', '2', 'upload_files/candidate_tracker/2588754381_resume.pdf', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 7m exp 2.4l ctc and expt 3.5l.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-22 07:41:45', 1, '2022-02-23 12:39:22', 0, NULL, 1),
(7868, 'Sivanesan S', '22', '7395822106', '', 'sivanesans777@gmail.com', '1998-10-31', 23, '2', '2', 'Subramani A', 'Agriculture', 25000.00, 1, 9000.00, 15000.00, 'Dindigul', 'Chennai', '2202220019', '1', '2', 'upload_files/candidate_tracker/66765637834_SIVANESAN.S.pdf', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'poor comm. from guduvancherry too long, has5m exp in seo and expt 15k, need time to check with company norms', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-22 11:12:14', 1, '2022-02-23 09:57:18', 0, NULL, 1),
(7869, 'Sifat Naiyer', '31', '9718553438', '9555992412', 'sifatnyr@gmail.com', '1998-12-21', 23, '2', '2', 'ausaf naiyer', 'teacher', 20000.00, 6, 0.00, 2.00, 'bihar', 'Chennai', '2202230001', '1', '1', 'upload_files/candidate_tracker/3806666282_Recent online CV-converted.pdf', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'From bihar, language issues, he couldnt speak and understand english easily, no basic knowledge in react js. need lot of learning. but he is okay with our norms.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-23 06:38:44', 1, '2022-02-23 06:44:48', 0, NULL, 1),
(7870, 'Raja A', '4', '9787182401', '', 'rajaraki4121@gmail.com', '2001-08-23', 20, '2', '2', 'Anandhan', 'Working in shop', 15000.00, 1, 0.00, 15000.00, 'Arakkonam', 'Arakkonam', '2202230002', '1', '1', 'upload_files/candidate_tracker/72749853361_RAJA RESUME.docx', NULL, '1', '2022-02-23', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'dropped , looking for accounts department ', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-23 08:50:57', 58, '2022-02-23 10:38:58', 0, NULL, 1),
(7871, 'menaka', '4', '8248837446', '', 'meenumenaka130298@gmail.com', '1998-02-03', 24, '2', '2', 'gajendren', 'server', 10000.00, 1, 11500.00, 11500.00, 'Thiruvallur', 'thiruvallur', '2202230003', '1', '2', 'upload_files/candidate_tracker/94913790116_1637491217848_MENAKA GAJENDARAN.pdf', NULL, '1', '2022-02-23', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice because already worked in  voice process now not interest to this field. so dropped', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-23 10:09:06', 58, '2022-02-23 10:39:11', 0, NULL, 1),
(7872, 'Ramya', '6', '9952319892', '9962147265', 'Ramyaravi006@gmail.com', '1998-03-27', 23, '1', '2', 'Nasar', 'Farmer', 23000.00, 1, 15000.00, 18000.00, 'No 10 1st main road nemantham Village', 'No 22x block RV nagar jafferkhanpet', '2202230004', '', '2', 'upload_files/candidate_tracker/22504075860_RAMYA.R.pdf', NULL, '1', '2022-02-23', 0, 'Abi1070', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped she didnt provide the payslips and not responding to the calls too', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-23 10:23:12', 88, '2022-02-26 04:48:20', 0, NULL, 1),
(7873, 'soumya', '5', '8142848109', '', 'soumyamamunuri11@gmail.com', '1998-06-23', 23, '2', '2', 'mamunuri sathish', 'officer', 100000.00, 0, 12000.00, 16000.00, 'hyderabad', 'hyderabad', '2202230005', '1', '2', 'upload_files/candidate_tracker/91433054019_Soumya M (1).docx', NULL, '2', '2022-02-24', 0, '', '3', '59', '2022-03-18', 182496.00, '', '3', '2022-05-02', '2', 'Selected for Hyderabad ESales - Staff Role PT only', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-23 10:24:05', 60, '2022-03-18 04:44:50', 0, NULL, 1),
(7874, 'Ajith Kumar', '6', '7397287224', '8778219110', 'ajithkumar150052000@gmail.com', '2000-05-15', 24, '2', '2', 'Rajkumar', 'Medical rep', 30000.00, 2, 16000.00, 20000.00, '302, Raman Nagar perambur', 'No : 72 rrb super market madhavaram', '2202230006', '1', '2', 'upload_files/candidate_tracker/22748039860_AjithResume1.pdf', NULL, '1', '2024-12-18', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit fot sales and not worth of  his asking salary,he will join only in the mind of jan', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', '55651', '5151', '1970-01-01', 1, '2022-02-23 10:27:44', 154, '2024-12-18 11:58:13', 0, NULL, 1),
(7875, 'Peethala Venkata Nanda Kishore', '4', '9398762821', '', 'nandhubhai143@gmail.com', '1999-06-01', 22, '2', '2', 'Satyanarayana', 'Government school teacher', 90000.00, 1, 0.00, 18000.00, 'Vizianagaram', 'Vizianagaram', '2202230007', '1', '1', 'upload_files/candidate_tracker/53686459736_MY RESUME.docx', NULL, '1', '2022-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-02-23 11:00:44', 1, '2022-02-23 11:05:32', 0, NULL, 1),
(7876, 'Karthikeyan s', '31', '9362613559', '', 'karthikeyankarthi27695@gmail.com', '1995-06-27', 26, '2', '2', 'Sundararajan p', 'Fire and rescue service', 300000.00, 1, 15000.00, 19000.00, 'Virudhunagar', 'Chennai', '2202230008', '1', '2', 'upload_files/candidate_tracker/28644806607_Karthikeyan IT new-converted.pdf', NULL, '3', '2022-02-23', 20, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'He is a fireman and has 4yr exp in fire and safty, last 6m he was working with his bro as front end developer with 16k, expt 17-18k, for trainee he need to check with his family it seems. his father is also a fireman.', '2', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-23 11:20:48', 1, '2022-02-23 11:26:42', 0, NULL, 1),
(7877, 'Pavithra.m', '4', '9094423061', '9344250301', 'Pavi1604priya@gmail.com', '1997-04-16', 24, '2', '2', 'Manavalaraja', 'Self employed', 10000.00, 2, 0.00, 14000.00, '45,sundharam power line,vyasarpadi, chennai-39.', '45,sundharam power line,vyasarpadi,Chennai-39.', '2202230009', '1', '1', 'upload_files/candidate_tracker/48108119717_pavithra.pdf', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, came with kavi nilavu, she knows nothing and not speaking up, will not suite for any of our openings. expt 15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-23 11:25:01', 1, '2022-02-23 11:32:37', 0, NULL, 1),
(7878, 'Joseph', '4', '9080613890', '', 'joeraina24@gmail.com', '1995-04-03', 26, '1', '2', 'Sugumar', 'Coolie', 8000.00, 1, 0.00, 12000.00, 'Nagpattinam', 'Nagpattinam', '2202230010', '', '1', 'upload_files/candidate_tracker/74422464111_joseph (1).pdf', NULL, '1', '2022-02-23', 0, 'P1065', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling and not active, very slow. expt 10k.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-23 11:26:15', 1, '2022-02-23 11:30:17', 0, NULL, 1),
(7879, 'F. SUDALAI', '4', '6369752440', '9003953072', 'fsudalai@gmail.com', '2001-08-03', 20, '1', '2', 'K. Fathima', 'Farmer', 12000.00, 2, 0.00, 14000.00, '148 South Street Shenbagaramanallur Tirunelveli', '14 4th CROSS STREET DHARMARAJANAGAR KARAMPAKKAM', '2202230011', '', '2', 'upload_files/candidate_tracker/76112428447_RESUME.docx', NULL, '1', '2022-02-23', 0, '', '3', '59', '2022-02-24', 132000.00, '', '6', '2022-07-21', '2', 'Selected for Muthu Team - consultant 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-23 11:28:02', 60, '2022-02-23 03:56:24', 0, NULL, 1),
(7880, 'Prakash.M', '6', '9176506654', '8190978663', 'Priyaprakash8870@gmail.com', '1999-06-01', 22, '2', '2', 'Parent', 'Working in shop', 1.25, 3, 0.00, 14000.00, 'Chennai', 'Prambur', '2202230012', '1', '1', 'upload_files/candidate_tracker/98113548342_PRAKASH.M Resume.pdf', NULL, '1', '2022-02-23', 0, '', '3', '59', '2022-02-25', 168000.00, '', '4', '2022-04-18', '1', 'Selected for Priyanka Jenit Team in consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-23 11:36:19', 60, '2022-02-25 09:41:33', 0, NULL, 1),
(7881, '', '0', '9789767791', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202230013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-23 11:37:00', 0, NULL, 0, NULL, 1),
(7882, 'Mahammad Ibrahim', '5', '8143192197', '', 'ibrahim525282@gmail.com', '1989-03-09', 32, '2', '1', 'JAHANGEER', 'officer', 100000.00, 2, 18000.00, 25000.00, 'hyderabad', 'hyderabad', '2202230014', '1', '2', 'upload_files/candidate_tracker/62968439466_ibrahim new resume 2022.pdf', NULL, '2', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Has 4yr exp in moothut gold loan as asst manager and handling 6 members am not convinced with his existing analysis. looking for similar kind of profile, english comm. is poor. will not suite for team handling and our process, mctc is 20k and expt 25k.', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-02-23 12:24:09', 1, '2022-02-23 06:59:50', 0, NULL, 1),
(7883, '', '0', '9840915769', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202230015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-23 12:48:15', 0, NULL, 0, NULL, 1),
(7884, 'Sridhar R', '4', '8667886381', '', 'Rajsridhar91@gmail.com', '1997-07-14', 24, '2', '2', 'Rajendran', 'Farmer', 70000.00, 1, 16.00, 18.00, 'Orathanadu , Thanjavur', 'Orathanadu , Thanjavur', '2202230016', '1', '2', 'upload_files/candidate_tracker/5992124702_UPDATED CV.pdf', NULL, '1', '2022-02-28', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-23 12:51:21', 58, '2022-02-28 10:27:46', 0, NULL, 1),
(7885, '', '0', '9143192197', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202230017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-23 12:52:47', 0, NULL, 0, NULL, 1),
(7886, 'Bharathi Baskar', '4', '7539910598', '9585695162', 'Bharathibaskar311994@gmail.com', '1994-06-04', 27, '2', '1', 'Muthukamarasamy', 'Civil engineer', 20000.00, 1, 15000.00, 13000.00, 'Kumbakonam', 'Tajore', '2202230018', '1', '2', 'upload_files/candidate_tracker/94109509443_bharathi 4.docx', NULL, '1', '2022-02-23', 15, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'highly salary expected not fit to team high age', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-23 01:16:15', 60, '2022-02-23 03:47:09', 0, NULL, 1),
(7887, 'Manoj Kumar J', '4', '8428634836', '9489251953', 'mk1072999@gmail.com', '1999-11-02', 22, '2', '2', 'Doss', 'Dying manager', 500000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2202230019', '1', '1', 'upload_files/candidate_tracker/54105019345_MANOJ RESUME (1).docx', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Fresher for us, has 7m exp in bijus with 7L. expt 25k, he is not comfortable with RM profile, for crm he need time to think about it. his passion into modeling and thats the only reason he came chennai. will not sustain here.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-23 03:06:48', 1, '2022-02-23 03:11:18', 0, NULL, 1),
(7888, 'Praveen Kumar', '4', '6381883585', '9715435129', 'praveenpk971543@gmail.com', '2000-11-01', 21, '2', '2', 'MOHAN', 'Daily works', 15000.00, 2, 0.00, 15000.00, '477 mullai nagar viridhambattu Vellore 632006', '150 A, Omsakthi Street Baraniputhur Chennai-600122', '2202230020', '1', '1', 'upload_files/candidate_tracker/6843780839_1638942276539_RESUME(PRAVEENKUMAR_M).pdf', NULL, '3', '2022-02-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-23 03:16:45', 85, '2022-02-24 12:09:07', 0, NULL, 1),
(7889, 'Ranjith R', '22', '9095854864', '', 'ranjithjoseph773@gmail.com', '2007-02-23', 0, '2', '2', 'Raman k', 'Farmer', 10000.00, 1, 18000.00, 18000.00, 'Tiruvannamalai', 'Bangalore', '2202230021', '1', '2', 'upload_files/candidate_tracker/33730220351_Resume-16-Feb-2022(1).pdf', NULL, '2', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Comm. is not as we expect. overall 7m exp and 4m in DM with 18k, expt the same. has 3more days of notice and will relocate to chennai. parents farmers. he knows basics in DM.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-23 03:39:05', 1, '2022-02-23 03:44:13', 0, NULL, 1),
(7890, 'Avinash', '6', '6383452371', '', 'Asaviortan96@gmail.com', '1996-06-24', 25, '1', '2', 'Father', 'Security', 30000.00, 2, 0.00, 18000.00, 'Chennai', 'Iyyapanthagal', '2202230022', '', '1', 'upload_files/candidate_tracker/52818665294_iq07o-bs7a2.pdf', NULL, '1', '2022-02-23', 0, '1065', '3', '59', '2022-02-28', 230000.00, '', '4', '2023-05-03', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-23 03:52:14', 60, '2022-02-28 09:49:14', 0, NULL, 1),
(7891, 'Yuvaani', '6', '7502033241', '7502282233', 'dineshammu241@gmail.com', '2000-07-13', 21, '1', '1', 'Dinesh', 'Driver', 20000.00, 2, 14000.00, 16000.00, 'Chennai', 'Arumbakkam', '2202230023', '', '2', 'upload_files/candidate_tracker/17814857031_Yuvaani Resume_REVISED.docx', NULL, '1', '2022-02-23', 0, 'P1065', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'salary issue ', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-23 04:04:25', 8, '2022-02-24 10:04:30', 0, NULL, 1),
(7892, 'Harini', '4', '7358046315', '9962555554', 'privateharini@gmail.com', '2000-08-02', 21, '4', '2', 'Bhuvana', 'Accountant', 50000.00, 0, 14000.00, 16000.00, 'Ayanabakkam', 'Ayanabakkam', '2202230024', '', '2', 'upload_files/candidate_tracker/74996537226_Harini Resume.pdf', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, as 3m exp in sbi cards 12.5k th and expt 15k. no job need and time being looking for job. will not handle pressure and very childish. ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-23 04:04:30', 1, '2022-02-23 04:21:03', 0, NULL, 1),
(7893, 'Sathya priya . U', '4', '7604910292', '7806933270', 'sathyapriya0411@gmail.com', '2000-01-04', 22, '4', '2', 'Udhayarajan', 'Hotel', 50000.00, 1, 14000.00, 16000.00, 'Kk Nagar', 'Kk Nagar', '2202230025', '', '2', 'upload_files/candidate_tracker/81986200915_sathya resume_REVISED.docx', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 3m exp in sbi cards 14k th and expt 18k, she is a beautician and no job need, settled family. time being looking for job and she will take leave during booking dates.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-23 04:05:46', 1, '2022-02-23 04:20:18', 0, NULL, 1),
(7894, 'vinod kumar', '5', '9640402168', '9553726167', 'vinodkumar.peddi67@gmail.con', '1996-09-05', 25, '2', '2', 'nagaiah', 'officer', 100000.00, 1, 18000.00, 21000.00, 'hyderabad', 'hyderabad', '2202230026', '1', '2', 'upload_files/candidate_tracker/90720707699_Vinnu final resume.pdf', NULL, '2', '2022-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-02-23 04:08:06', 1, '2022-02-23 04:13:08', 0, NULL, 1),
(7895, 'Rahulsanjai R', '4', '9894810983', '', 'Tamilrahul53@gmail.com', '1995-06-12', 26, '2', '2', 'Ramachandran K v', 'Gold smith', 25000.00, 1, 15000.00, 15000.00, 'Dindigul', 'Chennai , poonamalle', '2202230027', '1', '2', 'upload_files/candidate_tracker/25214151112_RAHULSANJAI R                               POONAMALLEE NEAR (1).pdf', NULL, '1', '2022-02-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-23 05:02:49', 85, '2022-02-24 10:18:24', 0, NULL, 1),
(7896, 'Srivani kudikala', '25', '9666022240', '', 'srivanichitti00@gmail.com', '1997-05-02', 24, '2', '2', 'Anasurya', 'Home maker', 8000.00, 3, 0.00, 15000.00, '1_2, mandelagudem, ragunathpally ,jangoan', 'Ameerpet', '2202230028', '1', '1', 'upload_files/candidate_tracker/34140933566_srivani.resume.docx', NULL, '2', '2022-02-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 1yr exp in core and 2yrs gap. her communication is not good. will not suite for esale. expt is 15-16k. staying in pg, her parents farmers.', '8', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-23 05:19:35', 60, '2022-02-24 04:15:28', 0, NULL, 1),
(7897, 'Vishnu raj kumar', '31', '9094473869', '', 'Vishnucvl50@gmail.com', '1994-06-21', 27, '2', '2', 'C. Subramanian', 'Aspiring front end developer', 21000.00, 2, 0.00, 10000.00, 'Pudukottai', 'Pudukottai', '2202230029', '1', '1', 'upload_files/candidate_tracker/18229940286_Resume-1-converted-converted.pdf', NULL, '1', '2022-02-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-23 06:02:51', 1, '2022-02-23 06:07:40', 0, NULL, 1),
(7898, 'Gayathri K p', '4', '7397634565', '8072210411', 'gayathriinfotech4196@gmail.com', '1996-01-04', 26, '2', '2', 'Prabhuraman K k', 'Saree business', 24000.00, 1, 13000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2202230030', '1', '2', 'upload_files/candidate_tracker/83977285642_gayathri resume.pdf', NULL, '1', '2022-02-24', 0, '', '3', '59', '2022-03-03', 164220.00, '', '', '2022-03-14', '2', 'Selected for Sithyvinayagam team in consultant role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-23 06:11:33', 60, '2022-03-02 04:33:14', 0, NULL, 1),
(7899, '', '0', '9791011437', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202230031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-23 06:29:09', 0, NULL, 0, NULL, 1),
(7900, '', '0', '7550072313', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202230032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-23 09:07:52', 0, NULL, 0, NULL, 1),
(7901, 'Monisha', '31', '9003074612', '', 'Monishainfo999@gmail.com', '1999-09-09', 22, '2', '2', 'Thanikachalam', 'Wellder', 50000.00, 1, 8000.00, 16000.00, 'Chennai', 'Chennai', '2202240001', '1', '2', 'upload_files/candidate_tracker/38061040477_resume(1).pdf', NULL, '1', '2022-02-24', 1, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', '7m in ui/ux, okay with all the company norms, has 28days notice. gokul told to come on last day of notice. trainee then placement. ', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-24 09:46:50', 1, '2022-02-24 02:42:33', 0, NULL, 1),
(7902, 'A.Rajeshwari', '4', '9585030690', '', 'rajisam9585@gmail.com', '2000-05-04', 21, '1', '2', 'A.Samundeeswari', 'Good salary', 15000.00, 0, 0.00, 15000.00, 'No.36 Sp main road Koppur village', 'No.36 Sp Main Road Koppur Village', '2202240002', '', '2', 'upload_files/candidate_tracker/18333981316_resume pdf.pdf', NULL, '1', '2022-02-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-24 10:39:11', 1, '2022-02-24 11:12:04', 0, NULL, 1),
(7903, 'Madhavi', '4', '8682805845', '', 'madhavimani97@gmail.com', '1996-07-02', 25, '2', '2', 'Elumalai', 'Cooli', 20000.00, 2, 18000.00, 20000.00, 'Chennai', 'Chennai', '2202240003', '1', '2', 'upload_files/candidate_tracker/13287809421_MADHAVI.pdf', NULL, '1', '2022-02-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 3yr exp in credit card sales. came with her friend. both from same clg worked in same company previously and relived in current company together. 18k th and expt 20k th. sal expt is high for crm, will not suite for rm since not interested in field sales. job need.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-24 10:40:26', 1, '2022-02-25 08:55:09', 0, NULL, 1),
(7904, 'Subathra', '4', '7094037312', '7708408457', 'Celinesuba9@gmail.com', '1997-04-01', 24, '2', '2', 'Ayyalu', 'Business', 300000.00, 3, 9000.00, 12000.00, 'Mariyamman kovil', 'Mariyamman kovil', '2202240004', '1', '2', 'upload_files/candidate_tracker/78138325436_1606626710754_Suba.PDF', NULL, '3', '2022-02-24', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not that much profile and no voive clarity not fit for teloe sales', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-24 10:41:36', 1, '2022-02-24 10:49:08', 0, NULL, 1),
(7905, '', '0', '7010394576', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202240005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-24 11:08:26', 0, NULL, 0, NULL, 1),
(7906, 'Anbarasan', '16', '9500890127', '', 'Anbarasanr55@gmail', '1997-05-10', 24, '2', '2', 'Rajamanickam p', 'Electrician', 40000.00, 2, 0.00, 20000.00, 'Kallakurichi', 'Porur', '2202240006', '1', '2', 'upload_files/candidate_tracker/73404204666_Anbarasan CVm.pdf', NULL, '1', '2022-02-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'comm below avg, has 2yr mis exp. basic xl knowledge and mctc 15k and expt 20k. already worked for 2yr contract now he need time to think about our company norms. ', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-24 12:02:06', 1, '2022-02-24 12:08:48', 0, NULL, 1),
(7907, 'Vishnupriya k', '4', '8870405390', '9791801748', 'vishnutamiltnj2594@gmail.com', '1995-11-17', 26, '3', '2', 'M kalayana kumar', 'Carpenter', 30000.00, 2, 10000.00, 10000.00, 'Tps nagar Thanjavur', 'Tps nagar Thanjavur', '2202240007', '', '2', 'upload_files/candidate_tracker/74875245011_VP.pdf', NULL, '1', '2022-02-24', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit', '1', '1', '0', '4', '5', '0', '2', '2022-03-10', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-24 12:12:18', 1, '2022-02-24 12:18:42', 0, NULL, 1),
(7908, '', '0', '9842183382', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202240008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-24 12:28:25', 0, NULL, 0, NULL, 1),
(7909, 'Hariharan', '4', '8778619558', '7373153522', 'Srhariharanh@gmail.com', '2001-09-07', 20, '2', '2', 'Sivaguru', 'Family Preffesional', 30000.00, 2, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2202240009', '1', '1', 'upload_files/candidate_tracker/59160173284_CV_2021-03-05-092820.pdf', NULL, '1', '2022-02-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-24 12:35:46', 85, '2022-02-24 12:43:41', 0, NULL, 1),
(7910, 'JAYALAKSHMI', '31', '9597849782', '', 'jayalakshmi2000e@gmail.com', '2000-09-09', 21, '2', '2', 'ELUMALAI', 'Business', 50000.00, 0, 25000.00, 35000.00, '47 , Vaniya Street karanthai Thanjavur -613002', 'Thanjavur', '2202240010', '1', '2', 'upload_files/candidate_tracker/38053099146_JayalakshmiRes.docx.pdf', NULL, '2', '2022-02-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-24 12:36:59', 60, '2022-02-24 04:13:35', 0, NULL, 1),
(7911, '', '0', '7401394100', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202240011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-24 12:39:49', 0, NULL, 0, NULL, 1),
(7912, '', '0', '8939418160', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202240012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-24 01:07:22', 0, NULL, 0, NULL, 1),
(7913, 'Bhuvaneshwari.B', '4', '6374353401', '9095118164', 'shugashinibhuvii@gmail.com', '2001-01-09', 21, '2', '2', 'J.P.Balachandran', 'Goldsmith', 10000.00, 1, 0.00, 8000.00, 'thanjavur', 'thanjavur', '2202240013', '1', '1', 'upload_files/candidate_tracker/73187789888_Bhuvaneshwari.B.docx', NULL, '1', '2022-02-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-24 06:29:23', 85, '2022-02-25 09:35:25', 0, NULL, 1),
(7914, 'Saravana Perumal P', '13', '8300923800', '', 'saravanaperumal886@gmail.com', '1997-11-08', 24, '2', '2', 'Perumal Samy M', 'Clerk', 12000.00, 2, 0.00, 15000.00, 'Viswanatham sivakasi', 'Choolaimedu chennai', '2202240014', '1', '1', 'upload_files/candidate_tracker/2398446036_Saravana_PerumaL.pdf', NULL, '1', '2022-02-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '6m exp in php 11.5k expt 15k, looking for job not okay with internship, not okay with company norms.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-24 06:50:04', 1, '2022-02-24 06:55:22', 0, NULL, 1),
(7915, '', '0', '9841320863', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202240015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-24 06:53:23', 0, NULL, 0, NULL, 1),
(7916, 'Saravana Perumal', '23', '9384704689', '8300923800', 'saravanaperumal768@gmail.com', '1998-11-08', 24, '2', '2', 'M.Perumal Samy', 'Clerk', 20000.00, 2, 12000.00, 25000.00, 'Viswanatham sivakasi', 'Choolaimedu chennai', '2202240016', '1', '2', 'upload_files/candidate_tracker/90399713924_Saravana_Perumal P Resume.PDF', NULL, '1', '2022-12-03', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic  skills just looking for Salary growth will not sustain and not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-02-24 06:56:30', 99, '2022-12-03 11:24:36', 0, NULL, 1),
(7917, '', '0', '9677700469', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202240017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-24 07:39:02', 0, NULL, 0, NULL, 1),
(7918, 'Amrish', '16', '9597181362', '9489323859', 'vijeyamrish@gmail.com', '1999-03-14', 22, '2', '2', 'Prabhakaran', 'Business', 200000.00, 1, 0.00, 18000.00, 'Vellore', 'Vellore', '2202250001', '1', '1', 'upload_files/candidate_tracker/78930548780_amrish resume-converted.pdf', NULL, '3', '2022-02-25', 0, '', '4', '72', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'okay with his comm and convincing, expt 15k take home, from vellore will relocate to chennai.  herash completed next level interview. check for renewal. okay with service agreement.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-25 09:48:29', 8, '2022-03-01 12:43:29', 0, NULL, 1),
(7919, 'Bheemashankar', '5', '8217374830', '', 'bheemupatil97@gmail.com', '1997-07-01', 24, '2', '2', 'devendrapa', 'real estate', 3.00, 3, 3.00, 4.00, 'Banglore', 'Banglore', '2202250002', '1', '2', 'upload_files/candidate_tracker/35100680426_Bhimashankar.pdf', NULL, '2', '2022-02-25', 0, '', '4', '30', NULL, 0.00, '', '0', NULL, '1', '25/02/2022	jennifer	Bhimashankar		RM	Bangalore	SNR	2yr exp in sales, was working in bounce with 16k and currently working in reliance retail backend sales with 23k. parents in gulbarka and he staying in pg. if required he will relocate nearby. has 2w and lap. expt 3.5-4L. 15days notice.', '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-25 10:33:57', 1, '2022-02-25 10:41:38', 0, NULL, 1),
(7920, 'Divakar.R', '16', '9791324090', '', 'gaanadiva07@gmail.com', '1998-04-14', 23, '2', '2', 'Ravi kumar.p', 'Village assistant', 15000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2202250003', '1', '2', 'upload_files/candidate_tracker/34780668583_DIVAKAR.R-converted.pdf', NULL, '1', '2022-02-25', 0, '', '4', '72', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 2yrs mis exp with 15k and expt 18k, has basic xl skills, father asst for vao, from kovur. okay with calling but comm is not as expected.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-25 10:42:56', 58, '2022-03-09 03:46:48', 0, NULL, 1),
(7921, 'Manoj MR', '5', '9632624710', '', 'manojmr097@gmail.com', '1997-12-20', 24, '2', '2', 'renukiah', 'passed away', 18000.00, 1, 0.00, 18000.00, 'Banglore', 'Banglore', '2202250004', '1', '1', 'upload_files/candidate_tracker/38489572014_Manoj M R resume.pdf', NULL, '2', '2022-02-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-25 10:46:12', 1, '2022-02-25 11:50:06', 0, NULL, 1),
(7922, '', '0', '9597630973', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202250005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-25 10:55:10', 0, NULL, 0, NULL, 1),
(7923, 'V.Janani', '4', '6374509699', '', 'jananijana3014@gmail.com', '1999-11-14', 22, '3', '2', 'G.vembuli', 'Electtician', 15000.00, 1, 12000.00, 15000.00, 'Chennai', 'Medavakkam', '2202250006', '', '2', 'upload_files/candidate_tracker/63484399770_janani resume.docx', NULL, '1', '2022-02-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 3yr exp in retail 13k. will not suite for our process and will not sustain, expt 15k', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-25 11:54:34', 1, '2022-02-25 11:59:35', 0, NULL, 1),
(7924, 'JOTHIKA', '4', '6374640773', '', 'kkjothika20@gmail.com', '2000-06-20', 21, '2', '2', 'karunakaran', 'farmer', 15000.00, 2, 0.00, 12000.00, 'namakkal', 'namakkal', '2202250007', '1', '1', 'upload_files/candidate_tracker/61819019178_jothika resume-converted (3) (1).pdf', NULL, '3', '2022-02-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-25 11:59:15', 1, '2022-02-25 12:05:14', 0, NULL, 1),
(7925, 'Laiqhur Rahman', '5', '9894908904', '', 'laiqhurrahman@gmail.com', '1992-12-07', 29, '2', '2', 'Nayeemur Rahman', 'Self Employed', 450000.00, 1, 30000.00, 30000.00, 'Avadi', 'Avadi', '2202250008', '14', '2', 'upload_files/candidate_tracker/82722227369_MY RESUME.pdf', NULL, '1', '2022-02-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for RM profile, he is looking for team handling profile. not interested in field sales. ', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-25 12:17:19', 1, '2022-02-25 12:19:14', 0, NULL, 1),
(7926, 'R SANGEETHA', '4', '7092657044', '7550281093', 'sangeemaha96@gmail.com', '1996-10-28', 25, '2', '1', 'Sathish kumar', 'Cashier', 30000.00, 0, 18000.00, 20000.00, 'Chennai', 'Chennai', '2202250009', '1', '2', 'upload_files/candidate_tracker/16681889817_Sangeetha-Resume (1).pdf', NULL, '1', '2022-02-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 3yr exp in credit card sales. came with her friend madhavi. both from same clg worked in same company previously and relived in current company together. 18k th and expt 20k th. sal expt is high for crm, will not suite for rm since not interested in field sales. job need.her husband working in moothut fin.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-25 01:13:40', 1, '2022-02-25 01:18:53', 0, NULL, 1),
(7927, 'Subhasri', '4', '8072903877', '9367724635', 'subhapapu9@gamil.com', '1999-09-09', 22, '2', '2', 'Chockalingam', 'Business', 30000.00, 1, 0.00, 18000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2202250010', '1', '1', 'upload_files/candidate_tracker/73597797669_resume subhasri.c.pdf', NULL, '3', '2022-02-25', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher expt 15k and she prefers non voice. pursuing her Mba. from mailaduthurai she will relocate to thanjavur so she is not okay with 9-10k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-25 02:38:29', 60, '2022-02-26 07:04:34', 0, NULL, 1),
(7928, 'Vivek', '5', '7092315607', '', 'vivekgokul13v98@gmail.com', '1998-03-13', 26, '6', '2', 'Parent', 'Senior cre', 100000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2202250011', '', '2', 'upload_files/candidate_tracker/86271629206_ResumeBuilder_02_05_2024_10_31_01_am.pdf', NULL, '1', '2024-05-15', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dont have sales skill, and communication\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-25 02:57:49', 112, '2024-05-15 03:19:24', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7929, 'Manikandan', '6', '6380331649', '8344235208', 'manikandandms97@gmail.com', '1997-10-10', 24, '2', '2', 'Durairaj', 'Former', 10000.00, 1, 13500.00, 17000.00, 'Chennai', 'Chennai', '2202250012', '1', '2', 'upload_files/candidate_tracker/79292164254_Mainkandan_1997.pdf.pdf.pdf', NULL, '1', '2022-02-25', 0, '', '3', '59', '2022-02-28', 182496.00, '', '5', '1970-01-01', '2', 'Selected for Suthagar Team in Staff Role Prop company only PT Deductions', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-25 03:53:47', 60, '2022-02-26 05:58:42', 0, NULL, 1),
(7930, 'SHAKIRA BANU AE', '25', '8124274919', '9840274919', 'Shakirabaanu2715@gmail.com', '1999-08-27', 22, '2', '2', 'MOHAMMAD ELEYAS A', 'Tailor', 12000.00, 2, 14000.00, 17000.00, 'Chennai', 'Chennai', '2202250013', '1', '2', 'upload_files/candidate_tracker/56259096414__STARDM_premiadms_export6_DMS_FRM_FEB_2021_From_FTP_622021_80713006_SCHEDULE-1.PDF', NULL, '1', '2022-02-26', 20, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has overall 10m exp 14k and expt 16-17k take home, okay with her scripts but her salary expt is high. she will not sustain and not okay with service agreement incase we hire for renewal.', '8', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-25 04:09:10', 87, '2022-02-28 10:43:16', 0, NULL, 1),
(7931, 'Akhila Rampelly', '25', '7330794283', '', 'akhilarampellyakhilarampelly@gmail.com', '2001-07-07', 20, '2', '2', 'Ramjamogili', 'Farmer', 40000.00, 1, 0.00, 15000.00, 'Hyderabad', 'Hyderabad', '2202250014', '1', '1', 'upload_files/candidate_tracker/66200661250_akhila ramply.pdf', NULL, '2', '2022-02-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,Her communication is below avg and she couldn’t understand me and deliver exactly. Will not suite for our process and expect is 15k. Parents are farmers and she is staying in PG at amirpet.', '8', '2', '', '3', '4', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-25 04:37:09', 60, '2022-02-25 05:21:03', 0, NULL, 1),
(7932, '', '0', '8122221496', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202250015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-25 05:25:36', 0, NULL, 0, NULL, 1),
(7933, 'Eralla Manisha', '5', '9398340630', '9963652943', 'erallamanisha99@gmail.com', '1999-05-22', 22, '2', '2', 'erallaposhalu', 'Farmer', 10000.00, 3, 0.00, 15000.00, '6-88/31/13 saidapur mandal karimnagar district', 'Saidapur', '2202250016', '1', '1', 'upload_files/candidate_tracker/34352516223_Eralla Manisha Resume.pdf', NULL, '2', '2022-02-26', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Kindly Reschedule', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-25 06:48:15', 60, '2022-03-01 11:53:29', 0, NULL, 1),
(7934, 'sakthikumar', '31', '8072970033', '', 'sakthikumar_97@outlook.com', '1997-06-05', 24, '2', '2', 'mathiyazhagan', 'agriculture', 10000.00, 1, 0.00, 15000.00, 'thanjavur', 'chennai', '2202250017', '1', '1', 'upload_files/candidate_tracker/29434063951_sakthi bio1.pdf', NULL, '1', '2022-02-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'done 3m course in react, no basic tech. skills, has 1yr exp in construction. he need time to think about company norms. looking for job not internship. min 1 yr he can sign agreement. ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-25 06:56:39', 1, '2022-02-25 07:17:17', 0, NULL, 1),
(7935, 'kannan mariyppan', '13', '9042397995', '9942332495', 'mayakkannan.mari@gmail.com', '1986-10-15', 35, '2', '1', 'amuthaveni', 'business', 50.00, 1, 35000.00, 45000.00, 'chennai', 'chennai', '2202250018', '1', '2', 'upload_files/candidate_tracker/85692922425_Kannan PHP developer.pdf', NULL, '1', '2022-02-26', 0, '', '4', '63', NULL, 0.00, '', '0', NULL, '2', 'says 6+ exp in php, check with tech skills. holds offer for 40k', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-25 07:00:05', 1, '2022-02-25 07:04:56', 0, NULL, 1),
(7936, 'Dhivya.S', '4', '9655414081', '', 'dhivyasingarayan@gmail.com', '1999-11-09', 22, '2', '2', 'Singarayan.V', 'Farmer', 10000.00, 2, 0.00, 20000.00, '10-3-110a, Amma nagar, Kodairoad, Dindugal,624206.', 'Dindugal', '2202250019', '1', '1', 'upload_files/candidate_tracker/20426219769_Resume- Dhivya.pdf', NULL, '2', '2022-02-26', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not suitable for telesales', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-25 07:10:22', 1, '2022-02-25 07:19:03', 0, NULL, 1),
(7937, 'S Hassain', '6', '7358738048', '9941535431', 'Hassanhassan03036@gmail.com', '2000-05-04', 21, '2', '2', 'K Safi', 'Auto driver', 40000.00, 1, 13500.00, 15000.00, 'Andhra', 'Ambattur', '2202250020', '1', '2', 'upload_files/candidate_tracker/35906737680_hassain (1).docx', NULL, '1', '2022-02-28', 0, '', '3', '59', '2022-03-09', 192000.00, '', '3', '2022-03-16', '1', 'Selected for Ravi Team in PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-25 08:13:55', 60, '2022-03-07 04:14:53', 0, NULL, 1),
(7938, 'Aravindhan Santhakumar', '4', '6380209041', '9976477320', 'aravindhanks1102@gmail.com', '2000-03-11', 21, '2', '2', 'Santhakumar', 'Civil foreman', 120000.00, 0, 0.00, 10.00, 'Thanjavur', 'Thanjavur', '2202260001', '1', '1', 'upload_files/candidate_tracker/10819858037_aravindhansold2.pdf', NULL, '1', '2022-02-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustainability looking for IT but well profiled not fit for team and tele sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-26 09:11:06', 58, '2022-02-26 03:00:14', 0, NULL, 1),
(7939, 'Prem Kumar', '26', '8122221493', '', 'ybpremkumar@gmail.com', '1995-06-06', 26, '2', '1', 'Baskar', 'Business', 200000.00, 2, 10500.00, 16000.00, 'Chennai', 'Chennai', '2202260002', '1', '2', 'upload_files/candidate_tracker/81752982241_nPrem Curriculam Vitae-1.docx', NULL, '1', '2022-02-26', 30, '', '4', '72', NULL, 0.00, '', '0', NULL, '1', 'has 5yr exp in cams. 11.5k expt 15-18k. married 15days notice. father into construction.', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-26 09:49:39', 1, '2022-02-26 09:53:53', 0, NULL, 1),
(7940, 'Ragul', '4', '9626038846', '8524883883', 'ksragul001@gmail.com', '1999-06-29', 22, '2', '2', 'Subramani and krishnaveni', 'Business', 10000.00, 2, 0.00, 20000.00, 'Dharmapuri', 'Chennai', '2202260003', '1', '1', 'upload_files/candidate_tracker/45518946569_Ragul Resume22.docx', NULL, '2', '2022-02-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Has 1yr exp as dealer in aurkya milk with 10k from dharmaburi will relocate to Chennai and stay in chrompet with friends. No convincing and expt is 15k+,  not interested in field sales. As crm expt is high and will not suite for RE.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-26 10:02:11', 85, '2022-02-26 11:29:20', 0, NULL, 1),
(7941, 'Suresh', '4', '9655041675', '8973294912', 'karanthaisuresh@gmail.com', '1998-06-13', 23, '2', '2', 'Anjammal', 'Home Maker', 6000.00, 1, 12500.00, 13000.00, 'Thanjavur', 'Thanjavur', '2202260004', '1', '2', 'upload_files/candidate_tracker/82294766043_Suresh Regu New.docx', NULL, '1', '2022-02-26', 0, '', '3', '59', '2022-03-01', 151584.00, '', '3', '2022-03-02', '1', 'Selected for Thanjavur location in consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', 'Joined and next day called and informed that he is getting relieve as he got another offer', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-26 10:54:30', 60, '2022-03-03 11:48:19', 0, NULL, 1),
(7942, 'thallapaka david boon', '5', '9160576797', '', 'davidboon.t6@gmail.com', '1993-05-28', 28, '2', '2', 't shanthamma', 'business', 30000.00, 2, 21000.00, 30000.00, 'rs konadapuram ysr kadapa', 'ameerpethyderab', '2202260005', '1', '2', 'upload_files/candidate_tracker/54107580508_David.pdf', NULL, '2', '2022-02-26', 0, '', '3', '59', '2022-03-17', 325000.00, '', '4', '2022-05-31', '1', 'Selected for Hyderabad with PF/ESI/PT', '5', '1', '1', '3', '4', '', '2', '2022-03-11', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-26 12:24:02', 60, '2022-03-11 01:25:52', 0, NULL, 1),
(7943, 'Jibaliya', '4', '9025424908', '9025423908', 'jibareshu402@gmail.com', '2000-11-04', 21, '2', '2', 'Nayeem', 'Tailor', 20000.00, 3, 12000.00, 20000.00, 'No.159/3 VM street, Royapettah,chennai_14', 'No.159/3 VM street, Royapettah,chennai_14', '2202260006', '1', '2', 'upload_files/candidate_tracker/32481609050_28335_Resume (1).docx', NULL, '1', '2022-02-26', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '6', '0', '1', NULL, '3', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-02-26 01:27:41', 1, '2022-02-26 08:43:16', 0, NULL, 1),
(7944, 'T.GOWTHAM', '4', '9710176475', '9003126614', 'GOUTAMMUNNA32@GMAIL.COM', '1996-10-06', 25, '2', '2', 'L.THANGAM', 'Voices process', 16000.00, 1, 0.00, 18000.00, 'Thiruvottiyur chennai19', 'Thiruvottiyur chennai19', '2202260007', '1', '1', 'upload_files/candidate_tracker/44349164557_T. Gowtham.pdf', NULL, '1', '2022-02-28', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', '5050 Profile,fresher for Telecaller, Sustainability kindly check and let me know your inputs', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-26 02:40:31', 1, '2022-02-26 07:07:14', 0, NULL, 1),
(7945, 'Ranjith.T', '31', '8489837981', '8838791032', 'ranjiththiyagu971@gmail.com', '1999-07-20', 22, '2', '2', 'v.thiyagarajan', 'Runs a Store', 20000.00, 1, 0.00, 22000.00, 'Chennai south , Ekkatuthangal,ambal Nagar,chennal', 'Ekkatuthangal ,ambal Nagar, Chennai', '2202260008', '1', '1', 'upload_files/candidate_tracker/35120993225_full stack developer.pdf', NULL, '1', '2022-03-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-26 03:45:37', 84, '2022-03-02 10:07:55', 0, NULL, 1),
(7946, 'Unguturi v v s n s vasanthi', '4', '7207438733', '7307438733', 'Vasanthiunguturi3@gmail.com', '2000-11-13', 21, '2', '2', 'Unguturi venkateswararao', 'Private employee', 10000.00, 1, 0.00, 15000.00, 'West godavari', 'West godavari', '2202260009', '1', '1', 'upload_files/candidate_tracker/81484494644_vasanthi-converted.pdf', NULL, '2', '2022-03-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-02-26 05:36:49', 1, '2022-02-26 05:40:18', 0, NULL, 1),
(7947, 'BHUVANESH', '25', '8526515789', '', 'buvanesh6496@gmail.com', '1996-07-06', 25, '2', '2', 'baskaran', 'officer', 10000.00, 2, 18000.00, 20000.00, 'chennai', 'chennai', '2202260010', '1', '2', 'upload_files/candidate_tracker/68185004368_res.pdf', NULL, '2', '2022-02-28', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'from thiruvarur, has 4yr exp in 2w sales at pondicherry and for the past 2m working in yamaha showroom sales. has 2w and lap, he is okay with field sales. father farmer and 2bros working. expt 16-18k. we can check him for RE profile.', '8', '1', '', '', '', '', '1', '2022-03-02', '3', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-26 06:29:37', 87, '2022-03-11 07:42:48', 0, NULL, 1),
(7948, 'AMBEDKAR THASAN K', '4', '8940810802', '9715961493', 'ambeth1811@gmail.com', '2007-02-26', 0, '2', '2', 'Kumaraguru A', 'Farmer', 10000.00, 3, 0.00, 15000.00, 'Chidambaram', 'Chidambaram', '2202260011', '1', '1', 'upload_files/candidate_tracker/8506081223_AMBEDKAR THASAN K RESUME.pdf', NULL, '2', '2022-02-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '2', '', '1', '1', '', '2', '2022-03-02', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-26 06:45:55', 60, '2022-02-26 07:06:42', 0, NULL, 1),
(7949, 'MOHAMED IRFANUDDIN', '31', '9840698089', '', 'Mdirfanuddin03@gmail.com', '1996-04-22', 25, '2', '2', 'MD AJAZ MOHIDEEN', 'Retired govt.staff', 40000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2202260012', '1', '1', 'upload_files/candidate_tracker/9018136681_FS.IRFAN.CV.pdf', NULL, '1', '2022-02-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 4yrs exp in construction. doing 6m course in fullstack, no basic practical knowledge. prepared few interview ques. need time to think about company norms.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-26 07:21:59', 1, '2022-02-28 11:21:04', 0, NULL, 1),
(7950, 'Bhavesh', '9', '7010841459', '8438171718', 'bhaviigates000@gmail.com', '1999-08-27', 22, '2', '2', 'Priyanka', 'Sales', 15000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2202270001', '1', '1', 'upload_files/candidate_tracker/29680340540_Resume.pdf', NULL, '1', '2022-03-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-02-27 10:00:12', 1, '2022-02-27 10:05:40', 0, NULL, 1),
(7951, 'Mohamed Asraf Ali', '26', '9894636579', '8778825944', 'mohamedasrafalip@gmail.com', '1997-06-08', 24, '2', '2', 'Peer mohmed', 'Business', 35000.00, 2, 10000.00, 20000.00, 'Chennai', 'Chennai', '2202280001', '1', '2', 'upload_files/candidate_tracker/81117769477_Asraf Resume.pdf', NULL, '1', '2022-02-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Average Communication ,no basic knowledge in Exccel,Will not handle our pressure and sustainability doubts\n', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-28 07:08:53', 1, '2022-02-28 07:15:15', 0, NULL, 1),
(7952, '', '0', '9715961493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202280002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-28 08:04:19', 0, NULL, 0, NULL, 1),
(7953, 'Aravind Kumar . G', '25', '8608155919', '9940503544', 'valentinasarjana04@gmail.com', '1998-03-04', 23, '2', '2', 'Govindan Raj, Jaya Lakshmi', 'Fresher', 30000.00, 1, 10000.00, 15000.00, 'Chennai', 'Mogappair east', '2202280003', '1', '2', 'upload_files/candidate_tracker/10762841688_ara.docx', NULL, '1', '2022-03-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-28 09:57:31', 87, '2022-02-28 12:14:00', 0, NULL, 1),
(7954, '', '0', '7358482341', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202280004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-28 10:53:21', 0, NULL, 0, NULL, 1),
(7955, 'Rajesh k', '25', '8838668305', '', 'kamarajrajesh23@gmail.com', '2001-05-23', 20, '2', '2', 'Kamaraj', 'Farmer', 100000.00, 2, 0.00, 15000.00, 'Ramanathapuram', 'Ramanathapuram', '2202280005', '1', '1', 'upload_files/candidate_tracker/46857854256_resume.docx', NULL, '3', '2022-03-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '8', '1', '', '1', '1', '', '2', '1970-01-01', '3', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-28 11:23:37', 60, '2022-03-01 05:46:21', 0, NULL, 1),
(7956, '', '0', '7397397761', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202280006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-28 11:34:47', 0, NULL, 0, NULL, 1),
(7957, 'Hema.R', '11', '7397377761', '', 'grahema27@gmail.com', '1995-12-27', 26, '2', '2', 'Ramakrishnan', 'CMDA', 20000.00, 1, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2202280007', '14', '1', 'upload_files/candidate_tracker/34320088808_612200186537_Renewal_Notice.pdf', NULL, '1', '2022-02-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no idea about HR rec profile, done MA history and her passion towards teaching for time being she looking for job, expt 15k as fresher. her attitude is not good during interview. ', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-28 11:54:15', 1, '2022-02-28 11:59:04', 0, NULL, 1),
(7958, 'V.varsha', '4', '8526714590', '6381867733', 'Vimallcr@gmail.com', '2003-11-10', 18, '1', '2', 'Vijayan.k', 'Fresher', 8000.00, 0, 0.00, 10000.00, 'Manavur', 'Arrokonam', '2202280008', '', '1', 'upload_files/candidate_tracker/43203699447_DocScanner 28-Feb-2022 12-30 pm.pdf', NULL, '1', '2022-02-28', 0, 'R55558', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-28 12:18:52', 1, '2022-02-28 12:43:25', 0, NULL, 1),
(7959, 'N. Deepa', '4', '7092340571', '', 'Deepas3198@gmail.com', '1998-01-31', 24, '1', '1', 'K. Nandhakumar', 'Painting', 18000.00, 2, 13000.00, 15000.00, 'No. 133/b poongavanapuram kaladipet ch.19', 'No. 133/b poongavanapuram kaladipet check. 19', '2202280009', '', '2', 'upload_files/candidate_tracker/51634873744_CURRICULUM VITAE1-3.docx', NULL, '1', '2022-02-28', 0, 'P1258', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'int-ref, was working in poorvika mobile sales, not okay with her lang, will not suite for our process, job need.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-28 12:23:55', 1, '2022-02-28 12:50:35', 0, NULL, 1),
(7960, 'Kaviya.', '4', '9176799876', '8939103163', 'Kaviyapradheesh@gmail.com', '1998-04-28', 23, '1', '1', 'K DINESH', 'AIR COMPRESSIOR', 20000.00, 2, 15000.00, 18000.00, 'No 10/10 2nd street poongavanapuram kaladipet', 'no 10/10 2nd street poongavapuram kaladipet', '2202280010', '', '2', 'upload_files/candidate_tracker/24176007133_aadhar0001.pdf', NULL, '1', '2022-02-28', 0, 'P1258', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'int-ref, was working in poorvika has to convert walkin customer for EMI working wor hdb fin, no convincing has 3yr exp. lctc 15k and expt 16-18k. will not suite for our process.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-28 12:24:28', 1, '2022-02-28 12:41:19', 0, NULL, 1),
(7961, 'M.shayeela', '4', '7339312014', '9095482599', 'shansaidrish@gmail.com', '1998-10-22', 23, '2', '2', 'Prasanakumar', 'Own business', 40000.00, 1, 13000.00, 10000.00, '1/44 lakshmivilasa puram, manavur_631210', '1/44, lakshmivilasa puram, manavur_631210', '2202280011', '1', '2', 'upload_files/candidate_tracker/8968894123_shayeela civil.docx', NULL, '1', '2022-03-01', 0, '', '3', '59', '2022-03-09', 126312.00, '', '', '2022-03-10', '2', 'Selected for Tiruvallur Location - Consultant Role/Interviewed by Dhanalakshmi', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', 'offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-28 02:50:50', 60, '2022-03-08 06:49:34', 0, NULL, 1),
(7962, 'dhanalakshmi', '4', '9600595506', '', 'dhana@gmail.com', '1996-04-17', 25, '2', '1', 'suresh', 'travels', 20000.00, 0, 0.00, 0.00, 'chennai', 'chennai', '2202280012', '14', '1', '0', NULL, '1', '2022-02-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for sales calling, also checked for front office. will not suite for that. expt 15k, married, sustainability issues.', '1', '1', '', '', '', '', '1', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-28 03:00:24', 7, '2022-03-01 12:21:34', 0, NULL, 1),
(7963, '', '', '', '', '', '1970-01-01', 0, '', '', '', '', 0.00, 0, 0.00, 0.00, '', '', '', '', '', '', NULL, '', '1970-01-01', 0, '', '6', '0', NULL, 0.00, '', '3', '2024-07-30', '', NULL, '', '2', '0', '', '', '0', '1', NULL, '', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-28 03:22:51', 1, '2022-02-28 03:22:54', 0, NULL, 1),
(7964, 'B.SURYA', '13', '8883358652', '', 'suryaa731@gmail.com', '1997-11-14', 24, '2', '2', 'bala', 'Self Employed', 40000.00, 0, 8000.00, 15000.00, '1/15 Lf Road, Arumuganeri, Tuticorin-628202', 'Tuticorin', '2202280013', '1', '2', 'upload_files/candidate_tracker/34253992787_suryaresume.pdf', NULL, '2', '2022-03-01', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 1yr exp in php, avg in tech skills, while interview he answered by referring some notes. expt 15k. check with the team regarding technical.', '2', '2', '', '', '', '', '1', '2022-03-07', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-28 03:49:51', 84, '2022-03-01 12:12:59', 0, NULL, 1),
(7965, 'Resiga R', '4', '9087796693', '', 'resiananthi@gmail.com', '2000-08-14', 21, '2', '2', 'Ramaraj', 'Own shop', 50000.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2202280014', '1', '1', 'upload_files/candidate_tracker/64974211409_Resiga R .pdf', NULL, '1', '2022-03-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher from uurapakkam more than 1hr travel.too long and  will not sustain. expt 10-12k. job need.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-28 06:56:37', 85, '2022-02-28 07:04:04', 0, NULL, 1),
(7966, 'M john Joseph', '4', '6380107475', '9894782132', 'Jj60539@gmail.com', '1997-11-20', 24, '2', '2', 'T munuswamy', 'Business', 40000.00, 1, 0.00, 20000.00, 'Melmaruvathur', 'Melmaruvathur', '2202280015', '1', '1', 'upload_files/candidate_tracker/60272745886_resume_1641384794901.pdf', NULL, '1', '2022-03-01', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'not attended', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-28 07:03:26', 1, '2022-02-28 07:38:11', 0, NULL, 1),
(7967, 'Vaishnavi chandrasekar', '31', '9962075252', '9962777567', 'Vaishnavichandrasekar123@gmail.com', '2001-05-28', 20, '2', '1', 'Sathish Kumar', 'Mechanical engineer', 30000.00, 1, 0.00, 20000.00, 'Mogappair', 'Mogappair', '2202280016', '1', '1', 'upload_files/candidate_tracker/64237696636_Copy of vaishnavi chandrasekar new cv.docx', NULL, '1', '2022-03-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'gokul droped', '2', '1', '0', '1', '1', '0', '2', '2022-03-07', '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-28 10:23:32', 1, '2022-03-01 02:40:46', 0, NULL, 1),
(7968, 'Surya', '14', '7845680177', '', 'suryacinnadurai10@gmail.com', '1997-10-27', 24, '2', '2', 'Chinnadurai', 'Formar', 20000.00, 1, 3.35, 6.50, 'Kallakurichi', 'Kallakurichi', '2203010001', '1', '2', 'upload_files/candidate_tracker/90123462889_Surya Resume.pdf', NULL, '3', '2022-03-01', 30, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not attended', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-01 10:07:25', 84, '2022-03-01 10:18:26', 0, NULL, 1),
(7969, 'Janani s', '4', '7339242859', '7695875594', 'jjananis195@gmail.coom', '2000-05-06', 21, '2', '2', 'Sengeni t /father', 'Farmer', 20000.00, 2, 0.00, 15000.00, '56pillaiyar Kovil street chendur', 'Viyasarbady', '2203010002', '1', '1', 'upload_files/candidate_tracker/53013295057_Andrews_Resume.pdf', NULL, '1', '2022-03-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not handle pressure, has 2m exp in credit card. due to work pressure she relived from job. she prefers job with out target.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-01 10:12:12', 1, '2022-03-01 10:17:06', 0, NULL, 1),
(7970, 'Saravanan.c', '6', '7418212350', '8838999247', 'Saravanansekaran1997cse@gmail.com', '1997-09-18', 24, '2', '2', 'Chandrasekeran.p', 'Business', 25000.00, 1, 13.50, 17000.00, 'Perambalur', 'Vandalur', '2203010003', '1', '2', 'upload_files/candidate_tracker/12254227177_DocScanner 01-Mar-2022 10-48 am.pdf', NULL, '1', '2022-03-01', 0, '', '3', '59', '2022-03-02', 204000.00, '', '6', '2022-09-06', '1', 'Selected for Suthagar team in PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-01 10:37:32', 60, '2022-03-07 03:00:34', 0, NULL, 1),
(7971, 'Manoj Kumar p', '5', '9361841022', '', 'blackmortal1998@gmail.com', '1998-06-28', 23, '2', '2', 'Palani', 'Chennai', 30000.00, 4, 2.00, 20000.00, 'Chennai', 'K.k nagar', '2203010004', '1', '2', 'upload_files/candidate_tracker/90103001123_Resume.docx', NULL, '1', '2022-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 2yr exp in grt jewelry as sales person. mctc 16k and expt 20k+, reason for reliving is low salary will not sustain for us, no calling and convincing skills. will not suite for RM. ', '5', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-01 11:44:00', 1, '2022-03-01 12:13:41', 0, NULL, 1),
(7972, 'Renugadevi', '14', '7708574337', '', 'Renugasadagoban@gmail.com', '1998-02-15', 24, '2', '2', 'Parent', 'Former', 15000.00, 1, 3.50, 7.00, 'Virudhunagar', 'Virudhunagar', '2203010005', '1', '2', 'upload_files/candidate_tracker/71063632721_renugadevi_resume.pdf', NULL, '2', '2022-03-01', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-01 11:57:20', 1, '2022-03-01 12:09:14', 0, NULL, 1),
(7973, 'E.Karikalan', '4', '9597468276', '7904127043', 'kaththikarikalan890@gmail.com', '1998-02-02', 24, '2', '2', 'Elayaperumal.k', 'Nlc employee', 100000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Cuddalore', '2203010006', '1', '1', 'upload_files/candidate_tracker/1505962349_1621505586155Resume_KARIKALAN.pdf', NULL, '1', '2022-03-02', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, not speaking up and will not suite for calling,from cuddalore expt 15-20k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-01 12:08:41', 85, '2022-03-01 05:44:06', 0, NULL, 1),
(7974, 'Muthu kumar', '31', '8072965537', '', 'ksrmk437@gmail.com', '1994-04-11', 27, '2', '2', 'K.S. Ramalingam', 'Labour', 40000.00, 0, 0.00, 20000.00, '2-7-10/G, Thoppu Muniyandi Kovil Street, Theni 12.', '2-7-10/G, Thoppu muniyandi kovil street, Theni 12.', '2203010007', '1', '1', 'upload_files/candidate_tracker/50687933157_14096412618CV20220225214302393.pdf', NULL, '2', '2022-03-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No clarity on the previous exp related to React was not clear,also the salary exp is very high,will not sustain', '2', '2', '', '', '', '', '1', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-01 12:45:32', 84, '2022-03-03 11:00:04', 0, NULL, 1),
(7975, '', '0', '8667251831', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203010008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-01 01:06:30', 0, NULL, 0, NULL, 1),
(7976, 'vijay n', '4', '8608405553', '', 'vijay.nagappan21797@gmail.com', '1997-07-21', 24, '1', '2', 'nagappan r', 'real estate', 60000.00, 2, 15000.00, 18000.00, 'chennai', 'chennai', '2203010009', '', '2', 'upload_files/candidate_tracker/23306718259_vijay pdf.pdf', NULL, '1', '2022-03-02', 0, 'p1065', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-01 01:08:12', 1, '2022-03-01 01:58:24', 0, NULL, 1),
(7977, 'JOHNSON S', '4', '6381647196', '', 'joyson1297@gmail.com', '1997-12-22', 24, '3', '2', 'Amala', 'Daily Vegius', 10000.00, 0, 16000.00, 20000.00, 'Paraniputhur Chennai', 'Paraniputhur Chennai', '2203010010', '', '2', 'upload_files/candidate_tracker/48799379604_Document-WPS Office.pdf', NULL, '1', '2022-03-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for calling, has 6m exp in collection.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-01 01:09:35', 1, '2022-03-01 01:23:06', 0, NULL, 1),
(7978, '', '0', '9677689076', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203010011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-01 01:14:39', 0, NULL, 0, NULL, 1),
(7979, 'gomathi g', '31', '9600967003', '7010168165', 'gomathimanik9792@gmail.com', '1997-02-23', 25, '2', '1', 'Manikandan S', 'Teacher', 15000.00, 2, 0.00, 25000.00, 'Trichy', 'Trichy', '2203010012', '1', '1', 'upload_files/candidate_tracker/46201251128_gomathi resume.pdf', NULL, '2', '2022-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, completed course in besent tech-3m. married will relocate to chennai, expt 3-3.5l', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-01 01:17:33', 1, '2022-03-02 08:40:31', 0, NULL, 1),
(7980, 'Shaik Mashukh Basha', '20', '8074117017', '', 'Mashukhshaik@gmail.com', '1999-06-29', 22, '2', '2', 'Shaik Azeez Basha', 'Farmer', 25000.00, 1, 22500.00, 27000.00, 'Hyderabad', 'Nellore', '2203010013', '1', '2', 'upload_files/candidate_tracker/75359496966_Resume_Mashu_Format2.pdf', NULL, '2', '2022-03-08', 14, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-01 01:22:33', 87, '2022-03-07 07:18:02', 0, NULL, 1),
(7981, 'arshad husham', '4', '7358539063', '', 'arshadhushamhussain263@gmail.com', '1998-11-23', 23, '2', '2', 'hussain basha', 'mgr nagar', 0.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2203010014', '1', '1', 'upload_files/candidate_tracker/16568527797_0Resumejb.job.pdf', NULL, '1', '2022-03-02', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '2min credit card and 2m in collection 14k and expt 16-18k th. will not suite for voice process and will not sustain.', '1', '1', '', '', '', '', '1', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-01 04:38:42', 58, '2022-03-02 12:47:07', 0, NULL, 1),
(7982, 'VINOBASTALIN T', '31', '6383397325', '', 'vinobastalin99@gmail.com', '1999-03-07', 22, '2', '2', 'thangapandiyan', 'farmer', 15000.00, 2, 0.00, 20000.00, 'Sankarankovil', 'chennai', '2203010015', '1', '1', 'upload_files/candidate_tracker/2176812296_VINOBA\'s Resume.pdf', NULL, '3', '2022-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-01 04:48:04', 1, '2022-03-01 04:54:58', 0, NULL, 1),
(7983, 'Vijaykumar', '31', '9965395522', '9944237814', 'vijaykumarvk0636@gmail.com', '1997-07-09', 24, '2', '2', 'Manoharan', 'Weaving', 10000.00, 0, 0.00, 15000.00, 'Erode', 'Erode', '2203010016', '1', '1', 'upload_files/candidate_tracker/14096412618_CV_2022022521430239.pdf', NULL, '3', '2022-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-01 07:58:21', 1, '2022-03-01 08:03:34', 0, NULL, 1),
(7984, 'Krishnamoorthy J', '4', '9884375826', '', 'Kmoorthy892@gmail.com', '1995-12-07', 26, '2', '2', 'N nai kumar', 'Private company', 10000.00, 1, 0.00, 14000.00, 'Pattabiram chennai', 'Pattabiram', '2203020001', '1', '1', 'upload_files/candidate_tracker/80854340813_krishna-WORD-converted.pdf', NULL, '1', '2022-03-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '6', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-02 10:08:15', 85, '2022-03-02 10:17:46', 0, NULL, 1),
(7985, 'Rajesh', '16', '9790825095', '7200318055', 'rajeshkumar.kumar115@gmail.com', '1989-08-29', 32, '3', '1', 'Kavitha', 'MIS Executive & Document controller', 20000.00, 1, 55000.00, 35000.00, 'Chennai', 'Chennai', '2203020002', '', '2', 'upload_files/candidate_tracker/14343035753_CV_Rajesh .pdf', NULL, '1', '2022-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 4yr exp in mis, last working in oman. expt is high will not suite for us, wife-accountant and expt 30-35k.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-03-02 10:57:32', 1, '2022-03-02 11:04:00', 0, NULL, 1),
(7986, '', '0', '7397361053', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203020003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-02 11:00:30', 0, NULL, 0, NULL, 1),
(7987, 'Prasath', '5', '9043636506', '', 'prasath14794@gmail.com', '1994-07-14', 27, '2', '2', 'Rajalingam', 'Former', 20000.00, 0, 15000.00, 230000.00, 'Dharmapuri', 'Chennai', '2203020004', '1', '2', 'upload_files/candidate_tracker/49831320955_PRASATH R RESUME-1-converted.pdf', NULL, '2', '2022-03-02', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has sales exp but not in insurance. 7m in hdb loan process and 2yr in collection. from dharmapuri will relocate to chennai. little bit slow and we can check for RM. lmct is 16k and expt 20k. ', '5', '2', '', '1', '1', '', '2', '2022-03-03', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-02 11:25:14', 58, '2022-03-02 11:48:03', 0, NULL, 1),
(7988, 'Mohith.c', '25', '8431250895', '8722125375', 'mohithmaddy4043@gmail.com', '1996-11-06', 25, '2', '2', 'Chandu rao', 'Police officer', 25.00, 1, 12500.00, 20000.00, 'MYSORE', 'Srinagar near satlight bus stand banglore', '2203020005', '1', '2', 'upload_files/candidate_tracker/76301284269_cv 2022.pdf', NULL, '2', '2022-03-02', 15, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'na', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-02 12:55:58', 58, '2022-03-02 02:52:00', 0, NULL, 1),
(7989, 'SHANTHI K S', '5', '9941450874', '', 'SHANTHI1002@GMAIL.COM', '1987-02-10', 35, '2', '1', 'Raja raghuveer G B', 'AGM', 70000.00, 2, 0.00, 5.00, 'Chennai', 'Chennai', '2203020006', '3', '2', 'upload_files/candidate_tracker/18881167899_Shanthi CV Latest.doc', NULL, '1', '2022-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'irda has not approved her profile. will not suite for other profile too bcoz her expt is 5L above.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-02 01:21:11', 1, '2022-03-02 01:30:47', 0, NULL, 1),
(7990, 'Abhash kumar upadhyay', '5', '6303859202', '9515869548', 'abhiupadhyay929@gmail.com', '1995-10-03', 26, '2', '2', 'Prem upadhyay', 'Electrician', 15.00, 4, 2.80, 4.00, 'Hyderabad', 'Hyderabad', '2203020007', '1', '2', 'upload_files/candidate_tracker/48608624851_Abhash_Abbu_Updated_resume2.pdf', NULL, '2', '2022-03-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-02 05:50:30', 58, '2022-03-03 11:25:43', 0, NULL, 1),
(7991, 'Murali krishnan V', '31', '8825870425', '', 'muralikrish1029@gmail.com', '1999-11-03', 22, '2', '2', 'Vasudevan', 'EX-ARMY', 180000.00, 0, 0.00, 15000.00, 'virudhunagar', 'virudhunagar', '2203020008', '1', '1', 'upload_files/candidate_tracker/32746331784_Murali krishnan V_updated resume1-converted (2) (1) (1) (1).pdf', NULL, '2', '2022-03-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped,need  amonth time to decide', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-02 06:24:20', 1, '2022-03-02 06:43:09', 0, NULL, 1),
(7992, 'kannadhasan S', '4', '6384667439', '', 'kannadhasanraj007@gmail.com', '1999-06-02', 22, '2', '2', 'Selvaraj ,mochagandhi', 'Agricultural industry', 8000.00, 1, 0.00, 15000.00, 'Kovilpalaiyam Annanagar', 'Kovilpalaiyam Annanagar ,perambalur (District)', '2203020009', '1', '1', 'upload_files/candidate_tracker/7564787907_RESUME - kannadhasan (1).docx', NULL, '3', '2022-03-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher for calling, was working in bakery with 13k, will not suite for our process expt 15k since he has to stay in chennai', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-02 08:37:56', 85, '2022-03-03 09:53:58', 0, NULL, 1),
(7993, 'pradeep', '4', '9043006300', '9789588471', 'pithareep@gmil.com', '1996-06-24', 25, '2', '2', 'muthusamy', 'railways retired', 40000.00, 4, 0.00, 12000.00, 'trichy', 'kodambakam', '2203030001', '1', '1', 'upload_files/candidate_tracker/1590053577_Resume.pdf', NULL, '1', '2022-03-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-03 10:11:10', 85, '2022-03-04 10:53:02', 0, NULL, 1),
(7994, 'Mohamedasik E', '25', '9787156261', '9751710154', 'mohamedashik250@gmail.com', '1997-08-25', 24, '2', '2', 'Ehasanalla K', 'Former labour', 10000.00, 1, 0.00, 20000.00, 'Perambalur', 'Perambalur', '2203030002', '1', '1', 'upload_files/candidate_tracker/93452840441_CV_2022-02-13-065002.pdf', NULL, '2', '2022-03-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Fresher for us. Don’t have sales exp. has 1.5yr exp in qc and production. Due to work pressure he relieved he will not handle sales pressure. Not speaking up and no convincing. Expt 20k take home. Parents into agriculture.', '8', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-03 10:43:52', 1, '2022-03-03 11:34:44', 0, NULL, 1),
(7995, 'Shri Ram Sethu g', '22', '9442137318', '', 'shriram27899@gmail.com', '1999-08-27', 22, '2', '2', 'ganesha nehru', 'district revenue officer', 50000.00, 1, 12000.00, 18000.00, 'Tirunelveli', 'chennai', '2203030003', '1', '2', 'upload_files/candidate_tracker/35185075974_Shri ram\'s Resume.pdf', NULL, '1', '2022-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-03 11:24:34', 1, '2022-03-03 11:28:22', 0, NULL, 1),
(7996, 'Sivaprasath P', '6', '8637435905', '8344831264', 'sivakiddo138@gmail.com', '1997-08-13', 24, '3', '2', 'Periyasamy', 'Agriculture', 25000.00, 1, 20000.00, 25000.00, 'Erode', 'Erode', '2203030004', '', '2', 'upload_files/candidate_tracker/44325619487_Sivaprasath_Resume.docx', NULL, '1', '2022-03-03', 0, '', '4', '57', NULL, 0.00, '', '0', NULL, '1', 'has 2yr exp in other sales 25k. 2m in byjus, good in comm and convincing, expt min 20k. from saidhapet has 2w and lap.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-03 11:30:21', 1, '2022-03-03 11:40:55', 0, NULL, 1),
(7997, 'K.venkatesan', '6', '8754718537', '', 'venkatvenkat0703@gmail.com', '2001-03-07', 20, '1', '2', 'K.kannan', 'Carpenter', 10000.00, 0, 0.00, 15000.00, 'KALLAKURICHI', 'KALLAKURICHI', '2203030005', '', '1', 'upload_files/candidate_tracker/21689903727_ScannerGo_22Sep2021_134153.pdf', NULL, '1', '2022-03-03', 0, '55576', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling and not speaking up. ', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-03 12:07:28', 1, '2022-03-03 12:25:44', 0, NULL, 1),
(7998, 'Prakash.D', '6', '9361493676', '9442595651', 'prakash123chitra@gmail.com', '2001-04-14', 20, '1', '2', 'Devaraj.R', 'Farmar', 10000.00, 0, 0.00, 15000.00, 'Kallakurichi', 'Namachivayapuram', '2203030006', '', '1', 'upload_files/candidate_tracker/60053504420_DocScanner 04-Dec-2021 4.09 pm.pdf', NULL, '1', '2022-03-03', 0, '55576', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for calling. ', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-03 12:08:41', 1, '2022-03-03 12:25:37', 0, NULL, 1),
(7999, 'Vasanthakumar', '5', '8870538796', '', 'vasanthinfolimax@gmail.com', '1990-07-09', 31, '2', '1', 'Maha', 'Salary', 28500.00, 1, 28500.00, 40000.00, 'CUDDALORE', 'Porur, Chennai', '2203030007', '1', '2', 'upload_files/candidate_tracker/45746573213_Resume_VT.doc', NULL, '1', '2022-03-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Insurance, but no sustainability in previous, Telecalling activities doubtful,will not handle our pressure and will not sustain in our roles', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-03 01:02:15', 1, '2022-03-03 01:07:13', 0, NULL, 1),
(8000, 'devadarshan nirmal', '22', '7395954421', '', 'ddnirmal11@gmail.com', '1999-05-29', 22, '2', '2', 'john britto', 'teacher', 40000.00, 1, 0.00, 20000.00, 'chennai', 'krishnagiri', '2203030008', '1', '1', 'upload_files/candidate_tracker/68391735743_Resume DEVA.pdf', NULL, '3', '2022-03-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for content writing,His focus is fully towards the film making only,for time being to continue the practice of writing he is looking for opportunities.Will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-03 01:05:05', 84, '2022-03-03 01:29:42', 0, NULL, 1),
(8001, 'Jeyakarthick', '31', '9944425946', '', 'jeyakarthick406@gmail.com', '1998-01-18', 24, '2', '2', 'Allwin', 'Salesman', 13000.00, 1, 0.00, 15000.00, 'Chennai', 'Madurai', '2203030009', '1', '1', 'upload_files/candidate_tracker/61629393145_jeyakarthick333.pdf', NULL, '2', '2022-03-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not comfortable with terms xxampconditions\n', '2', '1', '0', '4', '6', '0', '2', '2022-03-04', '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-03 01:38:22', 1, '2022-03-03 01:43:16', 0, NULL, 1),
(8002, 'Vinothkumar m', '5', '9962751657', '', 'vinojoy91@gmail.com', '1991-04-20', 30, '2', '1', 'Ranjitha', 'Lab technician', 30000.00, 0, 25000.00, 35000.00, 'Mylapore', 'Mylapore', '2203030010', '1', '2', 'upload_files/candidate_tracker/34277702983_RESUME VINOTH M.docx', NULL, '1', '2022-03-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Finance Sales, no field Sales Exp,2nd round interviewed by gaurav and got rejected.Will not sustain and not suitable', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-03 02:49:55', 1, '2022-03-04 10:24:40', 0, NULL, 1),
(8003, '', '0', '7093427916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203030011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-03 03:30:22', 0, NULL, 0, NULL, 1),
(8004, '', '0', '7449064118', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203030012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-03 04:01:55', 0, NULL, 0, NULL, 1),
(8005, 'Arvindrao', '5', '9884537628', '4424951275', 'arvindrao1980@gmail.com', '1980-06-28', 41, '2', '2', 'Vasanthi', 'Chennai', 30000.00, 3, 30000.00, 30000.00, 'Chennai', 'chennai', '2203030013', '1', '2', 'upload_files/candidate_tracker/78215480512_612200186537_Renewal_Notice.pdf', NULL, '1', '2022-03-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Age around 40 yrs,will not comfort in taking calls,sustainability doubts,not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-03 04:25:27', 58, '2022-03-04 11:07:51', 0, NULL, 1),
(8006, 'Prakash', '6', '8973257365', '', 'prakashplantscience@gmail.com', '1996-05-07', 25, '2', '2', 'Sankar', 'Flower vendor', 16000.00, 2, 0.00, 12000.00, 'Palayakudiyana street, nanimangalam lalgudi,trichy', 'Palayakudiyana Street, Nanimangalam Lalgudi,Trichy', '2203030014', '1', '1', 'upload_files/candidate_tracker/70537472666_Prakash resume.docx', NULL, '3', '2022-03-04', 0, '', '3', '59', '2022-03-14', 201000.00, '', '3', '2022-05-06', '1', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-03 08:25:47', 60, '2022-03-12 03:00:46', 0, NULL, 1),
(8007, 'NAVEEN P', '4', '9894386105', '', 'victonavee105@gmail.com', '2000-01-03', 22, '2', '2', 'P PALANI', 'Farmer', 15000.00, 1, 0.00, 13000.00, 'Arani', 'Arani', '2203040001', '1', '1', 'upload_files/candidate_tracker/20891567937_RESUME.pdf', NULL, '3', '2022-03-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped didnt appear for the F2F Interview', '1', '2', '0', '1', '1', '0', '2', '2022-03-07', '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-04 09:46:09', 1, '2022-03-04 09:53:28', 0, NULL, 1),
(8008, 'PREMAKUMARI. R', '5', '9884013140', '9941164241', 'Prema8731@gmail.com', '1987-10-31', 34, '2', '1', 'MAHALINGAM.S', 'Shipping&Logistics', 400000.00, 2, 285000.00, 4.00, 'Annapoorni Apartments,Flat No:F2,13th Mangala Cro', 'Porur', '2203040002', '1', '2', 'upload_files/candidate_tracker/41975470496_PREMA KUMARI R - Resume.pdf', NULL, '1', '2022-03-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped,she is looking for Non Voice Process(Husband insisted her to look for Non Voice)', '5', '2', '0', '1', '1', '0', '2', '2022-03-07', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-04 10:01:12', 1, '2022-03-04 10:11:23', 0, NULL, 1),
(8009, 'C.SOWMIYA', '4', '9677294013', '9790739305', 'deepogusowmi@gmail.com', '2000-04-23', 21, '2', '2', 'D.CHINNA VENKATAIAH', 'Coolie', 5000.00, 1, 0.00, 10000.00, 'No.14 jothiammal Nagar, Alan,Saidapet Chennai-15', 'Chennal', '2203040003', '1', '1', 'upload_files/candidate_tracker/54801795323_C.Sowmiya resume.docx', NULL, '1', '2022-03-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice process,not open up will not handle our pressure', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-04 11:45:30', 85, '2022-03-04 12:05:30', 0, NULL, 1),
(8010, 'Vigneshwaran D', '6', '7358056287', '', 'Vickyyvigneshwaran@gmail.com', '1995-11-10', 26, '1', '1', 'Swetha', 'House maker', 30000.00, 1, 0.00, 16000.00, '30, Ponnan street purasawalkam Chennai 600007', '30, Ponnan Street Purasawalkam Chennai 600007', '2203040004', '', '1', 'upload_files/candidate_tracker/69569048004_Resume.pdf', NULL, '1', '2022-03-04', 0, 'P1145', '3', '59', '2022-03-07', 204000.00, '', '3', '2022-05-31', '1', 'Selected for Ravi Team in PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-04 12:32:14', 60, '2022-03-04 06:29:12', 0, NULL, 1),
(8011, '', '0', '9080613913', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203040005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-04 01:18:59', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8012, 'Janga rajkiran reddy', '5', '8520011930', '', 'jangarajkiranreddy56@gmail.com', '2001-06-29', 20, '2', '2', 'Sahdev reddy', 'Agriculture', 200000.00, 0, 14000.00, 20000.00, 'Marthalli', 'Marthalli', '2203040006', '1', '2', 'upload_files/candidate_tracker/51054708108_JANGARAJKIRANREDDY.docx', NULL, '1', '2022-03-05', 0, '', '3', '59', '2022-03-11', 258000.00, '', '3', '2022-05-06', '1', 'Selected for Manivel team with PF/ESI/PT', '5', '2', '1', '2', '2', '1', '2', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-04 01:46:00', 60, '2022-03-08 11:30:23', 0, NULL, 1),
(8013, 'seshathri', '5', '9003294514', '', 'seshathriv78@gmail.com', '1978-06-06', 43, '2', '1', 'vishnusree', 'sr.relationship manager', 600000.00, 1, 400000.00, 500000.00, 'Chennai', 'Chennai', '2203040007', '1', '2', 'upload_files/candidate_tracker/47861701161_SESHATHRI RESUME.doc', NULL, '1', '2022-03-07', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-04 03:28:23', 1, '2022-03-04 03:41:58', 0, NULL, 1),
(8014, 'Naresh N', '5', '7305905330', '', 'nareshflyerz@gmail.com', '2007-03-04', 0, '2', '2', 'Nandakumar', 'Driver', 15000.00, 2, 18000.00, 22000.00, 'Chennai', 'Chennai', '2203040008', '1', '2', 'upload_files/candidate_tracker/68503687844_0_naresh resume.docx', NULL, '1', '2022-03-05', 0, '', '3', '59', '2022-03-14', 264000.00, '', '7', '1970-01-01', '1', 'Selected for Pandian Team with PF/PT Deductions', '5', '2', '1', '1', '1', '1', '2', '2022-03-11', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-04 05:26:28', 60, '2022-03-12 11:55:13', 0, NULL, 1),
(8015, '', '0', '8122879874', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203040009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-04 06:06:20', 0, NULL, 0, NULL, 1),
(8016, 'DEEPAK . P', '21', '8122809053', '8122809038', 'daviddeepak.pv@gmail.com', '1994-09-22', 27, '2', '2', 'VASU . P', 'Admin', 30000.00, 2, 20000.00, 30000.00, 'Chennai', 'Chennai', '2203040010', '1', '2', 'upload_files/candidate_tracker/6937084173_Deepak_Resume_ (1) (1) (1) (1) (1)-converted (1) (1) (1) (1) (1) (1) (3).docx', NULL, '2', '2022-03-05', 0, '', '5', '83', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not be suitable due to salary xxamp  sustainability issue', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-04 07:10:42', 58, '2022-03-05 02:22:52', 0, NULL, 1),
(8017, 'Jawahar', '4', '8300913728', '', 'jawaharkutty0610@gmail.com', '2000-10-06', 21, '2', '2', 'Mani', 'No', 25.00, 0, 0.00, 12.00, 'Ooty', 'Ooty', '2203050001', '1', '1', 'upload_files/candidate_tracker/43212194893_jawahar resume.docx', NULL, '3', '2022-03-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher from ooty, currently staying with brother in namakkal, will relocate to chennai. parents working in estate. his expt is 12k, he will discuses with family and get back. if he is okay with 10k we can proceed with next round interview.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-05 11:06:14', 85, '2022-03-05 02:28:14', 0, NULL, 1),
(8018, 'V.Jebin', '31', '9344039114', '', 'barson004@gmail.com', '2001-01-11', 21, '2', '2', 'Valiant', 'Self Employed', 20000.00, 1, 0.00, 18000.00, 'Kanniyakumari', 'Kanniyakumari', '2203050002', '1', '1', 'upload_files/candidate_tracker/14717155227_1642849020305JebinResume1.pdf', NULL, '2', '2022-03-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, told him to learn and come, no basic skills.', '2', '2', '', '', '', '', '1', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-05 11:37:41', 84, '2022-03-07 10:31:21', 0, NULL, 1),
(8019, '', '0', '9940206419', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203050003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-05 12:12:56', 0, NULL, 0, NULL, 1),
(8020, 'Ohmprakash', '13', '8778291646', '', 'ohmprakashsridhar@gmail.com', '1997-05-08', 24, '2', '2', 'Sridhar', 'Cooking', 12000.00, 1, 21000.00, 21000.00, 'No 145', 'Chengalpattu', '2203050004', '1', '2', 'upload_files/candidate_tracker/47698133352_Resume_OHMPRAKASH S. .pdf', NULL, '3', '2022-03-08', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-05 01:13:21', 1, '2022-03-08 10:25:14', 0, NULL, 1),
(8021, 'PRABHAKARAN A', '5', '9361073040', '7339671397', 'prabhakaralagar48@gmail.com', '1991-01-15', 31, '2', '1', 'Kalai Selvi R', 'Operation Manager', 40000.00, 0, 25000.00, 35000.00, '227/9 eeswaran Kovil street Madipakkam', 'Madipakkam chennai', '2203050005', '1', '2', 'upload_files/candidate_tracker/63320341905_Prabhakaran Resume -.pdf', NULL, '1', '2022-03-07', 30, '', '5', '86', NULL, 0.00, '', '0', NULL, '1', 'He interested in collection type of job.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-05 04:58:11', 1, '2022-03-05 05:03:56', 0, NULL, 1),
(8022, 'Mukrshlal v', '5', '9600777268', '', 'Msd7mukeshlal@gmail.com', '1995-12-03', 26, '2', '2', 'Vivekananda', 'Bussines', 10000.00, 1, 25000.00, 25000.00, 'Shencottai', 'Chennai', '2203050006', '1', '2', 'upload_files/candidate_tracker/10478727138_Mukesh_resume 2021 dec.pdf', NULL, '1', '2022-03-07', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 6yr exp into construction with 25k and expt 30k. will not suite for our process.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-05 05:30:22', 87, '2022-03-07 04:04:50', 0, NULL, 1),
(8023, 'B.vaidegi', '4', '9080106853', '', 'swethavaidegi@gmail.com', '1996-10-02', 25, '2', '2', 'V.boorasamy', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Cuddalore', 'PondIcherry', '2203050007', '1', '1', 'upload_files/candidate_tracker/14246832254_VAIDEGI Resume NEW.pdf', NULL, '3', '2022-03-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-05 06:07:06', 87, '2022-03-22 05:02:11', 0, NULL, 1),
(8024, 'RAMU V.R', '5', '9941909232', '', 'ramsuresh_182@yahoo.com', '1987-02-18', 35, '2', '1', 'V.V.Rajan', 'officer', 200000.00, 2, 30000.00, 45000.00, 'chennai', 'chennai', '2203060001', '1', '2', 'upload_files/candidate_tracker/14943049940_RamuVR.pdf', NULL, '1', '2022-03-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no sustainability, each 1yr job change, over all 10yr esp, las t 4m in gomechanic with 4.5l and looking for better offer 5.5l. will not suite for rm since he had team handling exp and looking for the same', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-06 03:47:49', 60, '2022-03-07 03:55:30', 0, NULL, 1),
(8025, 'Sai Surya', '22', '7548876285', '', 'ngksaisurya@gmail.com', '1997-12-23', 24, '2', '2', 'Arumugan', 'Self Employed', 10000.00, 0, 15000.00, 20000.00, 'chennai', 'chennai', '2203070001', '1', '2', 'upload_files/candidate_tracker/19257857218_1SAISURYARESUME2021.pdf', NULL, '2', '2022-03-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for this profile', '2', '1', '', '', '', '', '1', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-07 10:15:01', 84, '2022-03-07 11:03:34', 0, NULL, 1),
(8026, '', '0', '8754869258', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203070002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-07 10:22:52', 0, NULL, 0, NULL, 1),
(8027, 'M.Nizamudhin', '4', '7358373101', '8122207198', 'Nizamudhin98@gmail.com', '1998-05-01', 23, '2', '1', 'Siraj', 'No.71 durai Abdul Wahab street', 20000.00, 1, 0.00, 13000.00, 'Redhills', 'Redhills', '2203070003', '1', '1', 'upload_files/candidate_tracker/28978521898__STARDM_premiadms_export6_DMS_FRM_FEB_2021_From_FTP_622021_80713006_SCHEDULE-1.PDF', NULL, '1', '2022-03-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response', '1', '1', '', '1', '1', '', '2', '2022-03-14', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-07 10:23:54', 85, '2022-03-07 11:12:25', 0, NULL, 1),
(8028, 'A Mohammed Anas', '5', '7904931319', '', 'amohammedanas7@gmail.com', '1994-07-31', 27, '2', '2', 'ar mohamed', 'no more', 25000.00, 1, 3.90, 4.20, 'vellore', 'Vellore', '2203070004', '1', '2', 'upload_files/candidate_tracker/35774507029_Ak Acc_Professional Resume – 01.pdf', NULL, '2', '2022-03-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-07 10:24:22', 1, '2022-03-07 10:59:19', 0, NULL, 1),
(8029, 'Valli', '6', '9344007201', '8870793882', 'Vallimuthu3@gmail.com', '1995-06-08', 26, '1', '2', 'Mahalakshmi', 'Working', 20000.00, 2, 21000.00, 24000.00, 'Chennai', 'Chennai', '2203070005', '', '2', 'upload_files/candidate_tracker/6755303460_VALLI new resume-converted-converted (1).pdf', NULL, '1', '2022-03-07', 0, 'P1245', '3', '59', '2022-03-10', 224496.00, '', '3', '2022-09-05', '2', 'Selected for Guru Team with PT only - Prop Staff', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-07 10:32:14', 1, '2022-03-07 10:39:31', 0, NULL, 1),
(8030, 'Surendar T.T', '31', '9791757313', '9750758433', 'itssurendar98@gmail.com', '1998-07-01', 23, '2', '2', 'Thirumalaisamy A', 'Entrepreneur', 1.00, 1, 0.00, 1.00, 'Coimbatore', 'Coimbatore', '2203070006', '1', '1', 'upload_files/candidate_tracker/55052618470_Surendar', NULL, '2', '2022-03-07', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'hold for technical. has 1yr exp in sales but looking for it job expt 15k. check with team.', '2', '1', '', '1', '1', '', '2', '2022-03-10', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-07 10:34:48', 84, '2022-03-07 10:42:35', 0, NULL, 1),
(8031, 'Sabitha.p', '4', '9585941507', '9791534084', 'Sabithapichandi.15@gmail.com', '0199-07-15', 1822, '3', '2', 'Manikam.p', 'Business', 15000.00, 3, 0.00, 15000.00, 'Manavalanagar', 'No:35A School street, manavalanagar -602002', '2203070007', '', '1', 'upload_files/candidate_tracker/96261848795_sabitha P resume 050322new.pdf', NULL, '1', '2022-03-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-07 10:56:59', 1, '2022-03-07 11:46:11', 0, NULL, 1),
(8032, 'Suriya Prakash', '31', '8825712975', '8344740677', 'suriyaprakashuidev@gmail.co', '2000-01-06', 22, '2', '2', 'Paramasivan - Selvi', 'Software Developer', 400000.00, 1, 300000.00, 400000.00, 'Kamaraj Street Panagudi Tirunelveli', 'Pallavaram Chennai', '2203070008', '1', '2', 'upload_files/candidate_tracker/23932888009_resume-converted.pdf', NULL, '1', '2022-03-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sale expt is 3.5-4l, 7m in internship and 6m as trainee. he is not okay with the company norms, not even a year. but okay with his technical skills. he knows the basics.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-07 11:31:27', 84, '2022-03-07 11:45:36', 0, NULL, 1),
(8033, '', '0', '9952727456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203070009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-07 11:56:17', 0, NULL, 0, NULL, 1),
(8034, 'Manigandan CT', '5', '8939124224', '', 'Mani8939124224@gmail.com', '1980-02-24', 42, '2', '1', 'Sudhamani', 'House wife', 35000.00, 1, 450000.00, 600000.00, 'Chennai', 'Royapuram', '2203070010', '1', '2', 'upload_files/candidate_tracker/60254784298_Resume mani.doc', NULL, '1', '2022-03-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has baking exp, then legal asst. with a advocate, then agency manager as 9m in hdfc, 2yrs in bhratiaxa, 4m  in tataaig. 4.5l ctc and expt upto 6l. will not suite for rm, no GI exp so will not suit for that too.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-07 12:14:36', 1, '2022-03-07 12:24:30', 0, NULL, 1),
(8035, 'K.Anitha', '11', '7448445858', '8428519984', 'anithakalai2017@gmail.com', '1998-11-19', 23, '2', '2', 'Father', 'Daily wages', 20000.00, 1, 13000.00, 17000.00, 'Jeeva Nagar 4th Street New Washermenpet Chennai-81', 'Jeeva nagar 4th Street new washermenpet chennai-81', '2203070011', '1', '2', 'upload_files/candidate_tracker/30046200574_Document (2) (3).pdf', NULL, '1', '2022-05-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-07 12:34:28', 1, '2022-05-08 08:58:13', 0, NULL, 1),
(8036, 'Komala. M', '16', '6379083361', '9094561024', 'Komalamuthaiah@gmail.com', '1998-08-19', 23, '2', '1', 'Muthaiah', 'Driver', 150000.00, 1, 200000.00, 250000.00, '18Abarathiyar street ,Srinevasa Nagar padi', '18Abarathiyar Street ,Srinevasa Nagar Padi', '2203070012', '1', '2', 'upload_files/candidate_tracker/90184669552_KOMALA(1).pdf', NULL, '1', '2022-03-07', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 2.5yrs exp in hdb and looking for better offer. not speaking up and couldnt deliver her script clearly. ctc 2k and expr 22k th. married will not suite for any process, her attire and body lang was not good.', '3', '1', '', '1', '3', '', '2', '1970-01-01', '3', '5', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-07 12:52:19', 58, '2022-03-07 03:06:48', 0, NULL, 1),
(8037, 'Manikandan R', '31', '8610703249', '9047833710', 'rmanidevi04@gmail.com', '1999-09-04', 22, '2', '2', 'Rengasamy T', 'Former', 20000.00, 0, 0.00, 15000.00, 'Pudukkottai', 'Tambaram', '2203070013', '1', '1', 'upload_files/candidate_tracker/41530763114_1638807826086_maniresume.pdf', NULL, '1', '2022-03-08', 0, '', '3', '59', '2022-03-09', 96000.00, '', '', '2022-03-28', '2', 'Selected for React Profile 1st  month - 3.5K 2-4 months - 5K 3yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-07 02:39:20', 60, '2022-03-09 05:27:57', 0, NULL, 1),
(8038, 'Mohamed abuthahir', '4', '9345324125', '9092478178', 'Mohamedabuthahir.ma21@gmail.com', '1999-04-30', 22, '2', '2', 'Mohamed ibrahim', 'Daily wager', 25000.00, 1, 300000.00, 450000.00, 'Chennai', 'Chennai', '2203070014', '1', '2', 'upload_files/candidate_tracker/59100559150_Resume_25_09_2021_08_24_15_PM.pdf', NULL, '1', '2022-03-14', 45, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 3yrs exp in kyc, no sales exp. ctc 2.5l and expt 4-4.5l. no calling and convincing skills. ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-07 06:52:02', 7, '2022-03-14 01:45:09', 0, NULL, 1),
(8039, 'Bishal Das', '4', '9915346422', '7986953034', 'bishal.das3464@gmail.com', '1995-02-20', 27, '2', '1', 'Bipul Das', 'Private job', 360000.00, 1, 17500.00, 22500.00, 'Assam', 'Bangalore', '2203070015', '1', '2', 'upload_files/candidate_tracker/29486053665_BISHAL.RESUME-converted.pdf', NULL, '1', '2022-03-09', 12, '', '8', '8', NULL, 0.00, '', '0', NULL, '2', 'na', '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-07 08:01:50', 1, '2022-03-07 08:09:21', 0, NULL, 1),
(8040, 'SILVESTER So', '2', '8870042323', '', 'silvesterrajnirmal@gmail.com', '2000-06-13', 21, '2', '2', 'Sagayaraj S', 'Electrician', 75000.00, 2, 0.00, 20.00, 'Villupuram', 'Yelahanka, Bangalore', '2203070016', '1', '1', 'upload_files/candidate_tracker/67501129463_Silvester CV.pdf', NULL, '2', '2022-03-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-07 08:34:29', 1, '2022-03-07 08:43:15', 0, NULL, 1),
(8041, 'Sowmya.E', '5', '9986757913', '8050741151', 'Sowmyasom4310@gmail.com', '2000-04-10', 21, '2', '2', 'Erappa', 'Painter', 20000.00, 1, 14000.00, 20000.00, '#22 8th Cross NR colony murgeshpalya blore560017', '#22 8th cross NR colony murgeshpalya blore 560017', '2203070017', '1', '2', 'upload_files/candidate_tracker/53490845560_Sowmya Resume.pdf', NULL, '1', '2022-03-08', 15, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-07 09:01:05', 60, '2022-03-22 11:45:21', 0, NULL, 1),
(8042, 'Karmugilan', '5', '8754033470', '', 'Mugilsutha@gmail.com', '1980-01-10', 42, '2', '1', 'Jayasutha', 'Housewife', 20000.00, 3, 340000.00, 380000.00, 'Kattumannarkoil, Cuddalore dt.', 'Nungambakkam', '2203080001', '1', '2', 'upload_files/candidate_tracker/30051107369_612200186537_Renewal_Notice.pdf', NULL, '1', '2022-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process, he drunk and came for interview yesterday so we sent him out. again he came today for interview. has overall exp in telecom and 2yrs in religer broking. expt 3.8L. 6m in pondicherry axa.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-08 10:04:44', 58, '2022-03-08 03:42:58', 0, NULL, 1),
(8043, 'Abitha', '4', '6379613858', '', 'abitha0798@gmail.com', '1998-09-07', 23, '2', '2', 'Jayanthi', 'CSR', 18000.00, 1, 15000.00, 20000.00, 'Thiruvannamalai', 'thiruvannamalai', '2203080002', '1', '2', 'upload_files/candidate_tracker/48961841154_ABITHA PROFILE.pdf', NULL, '3', '2022-03-08', 1022022, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-08 10:26:13', 1, '2022-03-08 10:48:40', 0, NULL, 1),
(8044, '', '0', '9123563526', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203080003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-08 10:56:27', 0, NULL, 0, NULL, 1),
(8045, '', '0', '9677780828', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203080004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-08 12:01:08', 0, NULL, 0, NULL, 1),
(8046, 'SHAHEEN ANJUM', '5', '7022713675', '', 'shaheenanjumshah@gmail.com', '1996-11-29', 25, '2', '2', 'Mohammed shameem', 'officer', 100000.00, 2, 12000.00, 16000.00, 'banglore', 'Banglore', '2203080005', '1', '2', 'upload_files/candidate_tracker/19899159630_CURRICULUMVITAEofShaheen.docx1.pdf', NULL, '1', '2022-03-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-08 01:52:41', 1, '2022-03-09 07:03:40', 0, NULL, 1),
(8047, 'Dhinakaran', '4', '8680948408', '7904811123', 'dheenakaran3@gmail.com', '2001-04-11', 20, '2', '2', 'Sekar', 'Farmer', 12000.00, 1, 10000.00, 18000.00, 'Ramanathapuram', 'Ramanathapuram', '2203080006', '1', '2', 'upload_files/candidate_tracker/16927449620_RESUME-1-1.pdf', NULL, '3', '2022-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling, his slang is not good and expt is 20k since he need to relocate. from dharmaphuri and parents farmers, has 1yr exp in masala company and 4m in tractor company with 12k.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-08 03:50:09', 1, '2022-03-08 03:52:56', 0, NULL, 1),
(8048, '', '0', '8610604259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203080007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-08 06:04:31', 0, NULL, 0, NULL, 1),
(8049, '', '0', '7986953034', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-09 09:25:51', 0, NULL, 0, NULL, 1),
(8050, 'F Devanathan', '22', '8667073728', '', 'devafrancis97@gmail.com', '1997-12-26', 24, '2', '2', 'F Kamala Devi', 'Mother', 10000.00, 1, 18000.00, 10000.00, 'No:84/56, 3rd Street, Aziz Mulk, Thousand Lights', 'Chennai', '2203090002', '1', '2', 'upload_files/candidate_tracker/99181136480_Resume.pdf', NULL, '1', '2022-03-09', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'candidate good with basic skills, has family needs', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-09 09:52:44', 1, '2022-03-09 10:52:22', 0, NULL, 1),
(8051, 'G.saranya', '4', '8637618423', '9025423442', 'Saranrajdurai@gmail.com', '1991-03-20', 30, '2', '1', 'V.Raju', 'Car Travels', 30.00, 1, 15.00, 12.00, 'Thiruvottiyur', 'Thiruvotttiyur', '2203090003', '1', '2', 'upload_files/candidate_tracker/16334541302_to5sl-7kb9p (1).docx', NULL, '2', '2022-03-09', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking childish, not suit for Telecalling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-09 11:44:59', 85, '2022-03-09 12:01:23', 0, NULL, 1),
(8052, 'thiagarajan apparsam', '4', '7092891991', '', 'soft.thiyagarajan@gmail.com', '1991-06-03', 30, '3', '2', 'apparsam', 'designer', 10000.00, 1, 16000.00, 20000.00, 'chennai', 'chennai', '2203090004', '', '2', 'upload_files/candidate_tracker/88548794772_Kamakshi.docx', NULL, '1', '2022-03-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process, has 1yr exp in designing and has 2yrs gap, in between 10th and dip 10yrs gap, last ctc 20k and expt 22k for calling. will not suite for calling. no clarity in speech.', '1', '1', '', '', '', '', '1', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-09 12:04:00', 7, '2022-03-09 01:22:54', 0, NULL, 1),
(8053, 'Yuvaraj', '4', '7358172711', '', 'yuvarajuvirider@gmail.com', '1995-11-23', 26, '2', '2', 'Harikrishanan', 'Buiding work', 10000.00, 0, 0.00, 12000.00, 'Poonamallee', 'Poonamallee', '2203090005', '1', '1', 'upload_files/candidate_tracker/156410693_yuvarajCAFS.pdf', NULL, '1', '2022-03-09', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for voice process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-09 12:04:36', 85, '2022-03-11 12:33:38', 0, NULL, 1),
(8054, 'K jone williams', '4', '6380757946', '9940274145', 'Jonewilliams@gmail.com', '1992-06-25', 29, '3', '2', 'A kanikairaj', 'Business', 20000.00, 1, 15000.00, 15000.00, 'Chennai', 'Ayyapakkam', '2203090006', '', '2', 'upload_files/candidate_tracker/51867004197_Latest Resume Oct.2020.pdf', NULL, '1', '2022-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, planning to start hotel in next 6m. expt 15k and has 1yr exp in calling', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-09 12:10:19', 1, '2022-03-09 12:16:27', 0, NULL, 1),
(8055, 'Ns.baskar', '31', '9524345607', '8610012754', 'nsbaskar075@gmail.com', '1997-10-17', 24, '2', '2', 'Saravanan', 'Weaver', 8000.00, 3, 0.00, 12000.00, 'Kumbakonam', 'Kumbakonam', '2203090007', '1', '1', 'upload_files/candidate_tracker/88797236777_Resume.docx', NULL, '2', '2022-03-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-09 01:00:50', 84, '2022-03-09 03:28:48', 0, NULL, 1),
(8056, 'Saranraj', '5', '9830353350', '7305296985', 'saranrajrajendhran@gmail.com', '1987-05-31', 34, '2', '1', 'Rajendiran', 'Farmer', 70000.00, 0, 20000.00, 23000.00, 'Salem', 'Kolkata', '2203090008', '1', '2', 'upload_files/candidate_tracker/36475494452_saranraj resume new update.pdf', NULL, '2', '2022-03-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-09 02:02:39', 58, '2022-03-09 03:59:37', 0, NULL, 1),
(8057, '', '0', '9363201434', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203090009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-09 02:58:32', 0, NULL, 0, NULL, 1),
(8058, 'Thenmozhi', '4', '9360096308', '', 'Thenmozithenmozhi12@gmail.com', '2001-01-20', 21, '2', '2', 'Babu', 'Farmer', 18000.00, 2, 0.00, 15000.00, 'Vellore', 'Vellore', '2203090010', '1', '1', 'upload_files/candidate_tracker/92083226743_Thenmozhi.pdf', NULL, '3', '2022-03-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very childish will not suite for sales process, expt is 15k. from vellore she has to relocate to chennai.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-09 03:07:24', 1, '2022-03-10 06:27:06', 0, NULL, 1),
(8059, '', '0', '7980071487', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203090011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-09 03:18:53', 0, NULL, 0, NULL, 1),
(8060, 'AFRIN ASHAR', '31', '7502447880', '7502481135', 'afrinashar1@gmail.com', '1997-11-22', 24, '2', '2', 'Johnson manoher', 'Shop keeper', 1.50, 1, 0.00, 2.50, 'Moolaikadu', 'Moolaikadu', '2203090012', '1', '1', 'upload_files/candidate_tracker/26764047032_react AFRIN ASHAR.PDF', NULL, '2', '2022-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'doing freelance projects with his brother know very basics. expt 2.5-3L min. from thirunelveli will relocate to chennai.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-09 03:26:47', 1, '2022-03-09 03:29:52', 0, NULL, 1),
(8061, 'Gopala krishna', '5', '7095986152', '9347314780', 'gk0056759@gmail', '2000-07-28', 21, '2', '2', 'Parent', 'Farmer', 1600000.00, 2, 0.00, 17.00, 'Mahubububad', 'Hitch city', '2203090013', '1', '2', 'upload_files/candidate_tracker/17193722112_RESUME-2_Guguloth Gopala Krishna.docx', NULL, '1', '2022-03-09', 4, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-09 04:59:44', 1, '2022-03-09 05:04:04', 0, NULL, 1),
(8062, 'Divya P.', '4', '7358252628', '9677041373', 'Divzz.SPD@gmail.com', '1990-11-27', 31, '3', '1', 'N. Balaji', 'vice President ( purchase and procurement)', 50000.00, 1, 27000.00, 30000.00, 'Saidapet', 'saidapet', '2203090014', '', '2', 'upload_files/candidate_tracker/76047048041_Divya_Resume.pdf', NULL, '1', '2022-03-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 4yrs exp in content developing with 27k take home in 2019 then had maternity gap. expt 20k+, husband wise president in miot hospital. she dont have any idea about writing and not okay with backend or sales.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-09 05:13:10', 1, '2022-03-09 05:19:35', 0, NULL, 1),
(8063, 'Jeriel k jimo', '22', '9362161054', '9774442271', 'Jimomijeriel@gmail.com', '1996-02-04', 26, '2', '2', 'Kashiho Zhimo', 'Farmer', 20000.00, 4, 0.00, 20000.00, 'Dimapur, Nagaland', 'Chennai', '2203090015', '1', '1', 'upload_files/candidate_tracker/68669092283_612200186537_Renewal_Notice.pdf', NULL, '1', '2022-03-10', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'high salary expectations', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-09 06:30:28', 8, '2022-03-10 05:13:15', 0, NULL, 1),
(8064, 'M.lokeshwari', '26', '8778377233', '9171638282', 'lekham96@gmail.com', '1996-02-24', 26, '2', '2', 'Murali', 'Mechanical govt', 40000.00, 1, 18000.00, 18000.00, 'Chennai', 'Chennai', '2203090016', '1', '2', 'upload_files/candidate_tracker/11744519955_LOKI RESUME-PDF.pdf', NULL, '2', '2022-03-23', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '2yrs in hdb kyc process, 7m in indusbank calling. due to calling work pressure she is looking for change. no basic skills like excel and convincing. expt 20k.', '3', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-09 06:43:36', 1, '2022-03-23 11:26:16', 0, NULL, 1),
(8065, '', '0', '9791425857', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203090017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-09 07:03:09', 0, NULL, 0, NULL, 1),
(8066, 'Sakthi', '22', '9003295881', '', 'Sakthiselvam.n23@gmail.com', '1994-02-13', 28, '2', '2', 'Natarajan', 'Nil', 10000.00, 1, 0.00, 20000.00, 'Kk nagar, backside of Kasi theatre', 'Kk nagar, backside of Kasi theatre', '2203100001', '1', '1', 'upload_files/candidate_tracker/77643836086_fresh one cadfs.docx', NULL, '1', '2022-03-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'was a teacher for 2yrs now pursuing montessori training, no idea about DM, okay with communication. expt 20k as fresher.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-10 09:10:21', 84, '2022-03-10 10:26:58', 0, NULL, 1),
(8067, 'Nithya S', '4', '7667730326', '', 'nithyasenthil.10@gmail.com', '1993-05-14', 28, '3', '2', 'Senthilmurugan', 'Farmer', 30000.00, 1, 15000.00, 19000.00, 'Saidapet', 'Saidapet', '2203100002', '', '2', 'upload_files/candidate_tracker/36468363430_resume-min.pdf', NULL, '1', '2022-03-10', 30, '', '4', '67', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'ignore the above cmnt.\nshe has 2.5yrs exp in service and sales and previously in qc. job need and mctc 15k and expt 18k. she is okay with field sales as well. check once. for salary hike she is looking for job change.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-10 09:51:14', 7, '2022-03-10 04:54:54', 0, NULL, 1),
(8068, '', '0', '9940155410', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203100003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-10 09:54:35', 0, NULL, 0, NULL, 1),
(8069, 'Swathi Priya', '4', '9345724171', '', 'swathipriyagnanarathinam@gmail.com', '1998-10-16', 23, '2', '2', 'Gomathi.G', 'Homemaker', 15000.00, 1, 0.00, 15000.00, 'Ambhathur', 'Ambhathur', '2203100004', '1', '1', 'upload_files/candidate_tracker/83817758243_swa.pdf', NULL, '1', '2022-03-10', 0, '', '3', '59', '2022-03-14', 132000.00, '', '5', '1970-01-01', '2', 'Selected for Arumbakkam team in Consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-10 10:25:46', 60, '2022-03-12 03:40:10', 0, NULL, 1),
(8070, '', '0', '7550168330', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-10 10:56:01', 0, NULL, 0, NULL, 1),
(8071, 'SUDHARSANAM. R', '2', '9498017436', '6381316883', 'sudharsanam1997@gmail.com', '1997-09-19', 24, '3', '2', 'RAJENDRAN', 'TEXTILE BUSINESS', 100000.00, 1, 0.00, 10000.00, 'CHENNAI', 'CHENNAI', '2203100006', '', '1', 'upload_files/candidate_tracker/17359362752_SUDHARSANAM.R RESUME.docx', NULL, '1', '2022-03-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'dont know any developing lang. completed many courses but no knowledge about it. will not suite for calling as well IT.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-10 11:00:44', 1, '2022-03-10 11:12:46', 0, NULL, 1),
(8072, '', '0', '8248748153', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203100007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-10 12:03:33', 0, NULL, 0, NULL, 1),
(8073, 'Jayalalitha', '4', '7502241412', '7402586174', 'jayalali05@gmail.com', '1991-06-01', 30, '2', '2', 'Arunagiri', 'Business man', 10000.00, 2, 18000.00, 20000.00, 'Chennai', 'Chennai', '2203100008', '1', '2', 'upload_files/candidate_tracker/45236886746_lalitha Resume.docx', NULL, '1', '2022-03-10', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is intrested in Non voice only', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-10 12:06:11', 85, '2022-03-10 05:25:21', 0, NULL, 1),
(8074, 'Abinaya S', '31', '9384322709', '', 'abinayas887@gmail.com', '1999-05-21', 22, '2', '2', 'Samuthirakani R', 'Tailor', 13000.00, 2, 15000.00, 25000.00, 'Chennai', 'Chennai', '2203100009', '1', '2', 'upload_files/candidate_tracker/2117695553_Abinaya_resume.pdf', NULL, '1', '2022-03-14', 0, '', '2', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1.5yrs exp with 12k and serving her notice expt 25k. gokul told her to come after her notice.', '2', '1', '0', '1', '1', '0', '2', '2022-03-15', '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-10 12:47:29', 1, '2022-03-10 12:53:48', 0, NULL, 1),
(8075, 'Tamilarasi.I', '4', '8220989754', '8428938671', 'tamilarasiinba785@gmail.com', '1997-04-28', 24, '2', '2', 'inbasekaran.k', 'Mason', 20000.00, 2, 0.00, 10000.00, 'No 14,Ambethkar st,Periyar nagar,,Chromepet', 'Chromepet', '2203100010', '1', '1', 'upload_files/candidate_tracker/96312985922_0_Tamilarasi Resum.pdf', NULL, '1', '2022-03-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-10 12:57:43', 1, '2022-03-10 01:05:18', 0, NULL, 1),
(8076, 'Merlin', '4', '8754392924', '', 'merlinmerly99@gmail.com', '1999-03-03', 23, '2', '2', 'Denis mary', 'House wife', 10000.00, 2, 0.00, 12000.00, 'Thiruvanamalai', 'Thiruvanamalai', '2203100011', '1', '1', 'upload_files/candidate_tracker/41329618667_MERLINRESUME1.pdf', NULL, '3', '2022-03-11', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'from thiruvannamalai will relocate to chennai arumbakkam and stay with her friends, has 3m calling exp in credit card with 12k and expt 15k as take home. avg convincing and will not sustain for us. no father and mom house wife, her brothers taking care of family.', '1', '1', '', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-10 01:57:01', 1, '2022-03-11 04:46:43', 0, NULL, 1),
(8077, 'Senthilkumar', '5', '9791613172', '', 'Clickinsenthil@gmail.com', '1990-02-13', 32, '2', '2', 'Rajendran', 'Army', 40000.00, 1, 23000.00, 28000.00, 'Chennai', 'Chennai', '2203100012', '22', '2', 'upload_files/candidate_tracker/22893928281_SSEresume.pdf', NULL, '1', '2022-03-10', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interested in  data entry comparing with sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-10 02:35:43', 8, '2022-03-10 04:58:57', 0, NULL, 1),
(8078, 'SHAHIRA BANU M', '22', '9629618711', '', 'shahira162k@gmail.com', '2000-06-01', 22, '2', '1', 'SYED ALI S', 'ENGINEER', 20000.00, 0, 15000.00, 25000.00, 'Kalpakkam', 'Kalpakkam', '2203100013', '1', '2', 'upload_files/candidate_tracker/91871162753_Shahira Banu M .pdf', NULL, '2', '2022-08-19', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Schedule the candidate for F2f', '2', '1', '', '1', '1', '', '2', '2022-09-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-03-10 02:55:24', 92, '2022-08-19 11:14:27', 0, NULL, 1),
(8079, 'Nandha kumar', '4', '9176074349', '9500089801', 'Jn87830@gmail.com', '1997-03-28', 24, '2', '2', 'Vijaya Lakshmi', 'Home maker', 20000.00, 1, 15000.00, 17000.00, 'Guindy', 'Guindy', '2203100014', '1', '2', 'upload_files/candidate_tracker/81193268671_Resume of Nandha.pdf', NULL, '1', '2022-03-11', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-10 04:13:49', 1, '2022-03-10 05:03:02', 0, NULL, 1),
(8080, 'karthika', '4', '9551146403', '', 'g.p.karthika@gmail.com', '2000-06-01', 21, '3', '2', 'penchaiaiahh', 'late', 13000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2203100015', '', '1', 'upload_files/candidate_tracker/77496350024_Kamakshi.docx', NULL, '1', '2022-03-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no 12th, was working in pharmacy 13k, will not suite for calling, expt 15k', '1', '1', '', '', '', '', '1', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-10 04:15:01', 7, '2022-03-10 06:10:15', 0, NULL, 1),
(8081, '', '0', '9092710080', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203100016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-10 04:31:04', 0, NULL, 0, NULL, 1),
(8082, 'vijayalakshmi', '4', '9940587260', '', 'viji.2000@gmail.com', '2000-09-20', 21, '3', '2', 'obulish', 'unemployee', 10000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2203100017', '', '1', 'upload_files/candidate_tracker/82590277317_sample.doc', NULL, '1', '2022-03-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '12th, was working in pharmacy 10k, lang is not good will not suite for calling.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-10 06:03:10', 1, '2022-03-10 06:05:04', 0, NULL, 1),
(8083, '', '0', '8682916202', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203100018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-10 06:52:03', 0, NULL, 0, NULL, 1),
(8084, 'Sriram S', '6', '9840926061', '', 'ramsri71112@gmail.com', '2000-08-18', 21, '3', '2', 'SURENDERAN S', 'Apollo Pharmacy', 20000.00, 1, 13000.00, 16000.00, 'Chennai', 'Chennai', '2203100019', '', '2', 'upload_files/candidate_tracker/70328288231_SRI RAM RESUME-1.pdf', NULL, '1', '2022-03-11', 1, '', '4', '82', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher for us, 7m exp in  loan process like kyc with 13k, expt 15k, from cetpet, check with sustainability once. has 2w and laptop.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-10 07:10:34', 8, '2022-03-11 01:16:17', 0, NULL, 1),
(8085, 'A.N.yamini', '22', '8682916201', '', 'Yamininagharajan2000@gmail.com', '2000-09-06', 21, '2', '2', 'Nagharajan', 'Production manager', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2203100020', '1', '2', 'upload_files/candidate_tracker/47398117290_yamini_resume.pdf', NULL, '1', '2022-03-12', 5, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'her communication is not good will not suite for writing. ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-10 09:09:42', 84, '2022-03-12 11:23:10', 0, NULL, 1),
(8086, 'Ruthish Kumar Hari', '14', '7358204324', '8248748153', 'ruthishkumar1711@gmail.com', '1998-11-17', 23, '2', '2', 'Kasthuri H', 'Home Maker', 130000.00, 2, 12000.00, 25000.00, 'Chennai', 'Chennai', '2203110001', '1', '2', 'upload_files/candidate_tracker/65253686732_Ruthish Resume.pdf', NULL, '1', '2022-03-11', 15, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'has 11m exp in flutter with 12k and expt 25k.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-11 11:14:52', 1, '2022-03-11 11:18:07', 0, NULL, 1),
(8087, 'jayaprabhu', '4', '8270626272', '7639291144', 'pjayaprabhu@gmail.com', '1994-03-23', 27, '2', '2', 'Arjunan', 'Car consultant', 20000.00, 4, 13000.00, 18000.00, 'salem', 'salem', '2203110002', '1', '2', 'upload_files/candidate_tracker/37722247140_j5 (1).pdf', NULL, '3', '2022-03-11', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-11 12:46:25', 1, '2022-03-11 12:51:32', 0, NULL, 1),
(8088, 'Durga.D', '4', '9585668959', '8015831010', 'durgaaji2228@gmail.com', '1999-05-28', 22, '2', '2', 'V.Desappan', 'Fisherman', 25000.00, 2, 14000.00, 14000.00, 'Pulicat-601205', 'Lighthouse chennai', '2203110003', '1', '2', 'upload_files/candidate_tracker/20594756963_I am sharing \'durgaresume-converted (1)\' with you.pdf', NULL, '1', '2022-03-11', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'expt 14k for calling, for fresher we cant offer 14k', '1', '1', '0', '1', '1', '0', '2', '2022-03-18', '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-11 12:56:50', 1, '2022-03-11 01:05:36', 0, NULL, 1),
(8089, 'T PREM KIRAN', '5', '9150633288', '', 'premkirant8@gmail.com', '1997-11-26', 24, '2', '2', 'G THENRAJ', 'Business', 600000.00, 1, 19000.00, 24500.00, 'Chennai', 'Chennai', '2203110004', '1', '2', 'upload_files/candidate_tracker/60574958930_PREM(resume)final.pdf', NULL, '2', '2022-03-23', 90, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 3yrs exp in care. looking for TL and no relevant exp and expt is 30k.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-11 02:43:53', 87, '2022-03-26 11:39:33', 0, NULL, 1),
(8090, 'Divya J', '16', '9092981955', '8124754222', 'jdivya9727@gmail.com', '1997-03-27', 24, '2', '2', 'M Jayakumar', 'Business', 80000.00, 1, 12000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2203110005', '1', '2', 'upload_files/candidate_tracker/75950838388_My Resume.docx', NULL, '1', '2022-03-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-11 05:01:08', 1, '2022-03-11 05:11:36', 0, NULL, 1),
(8091, 'Sathya S', '16', '7358546928', '8939701267', 'sathyars3008@gmail.com', '1994-10-29', 27, '2', '2', 'P Shanmugaraj', 'MTC Conductor', 90000.00, 1, 14000.00, 20000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2203110006', '1', '2', 'upload_files/candidate_tracker/84225942926_Sathya Updated Resume.docx', NULL, '1', '2022-03-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-11 05:12:07', 1, '2022-03-11 05:20:15', 0, NULL, 1),
(8092, 'Suganya', '21', '9940091243', '9940133259', 'suganya.8291@gmail.com', '1991-02-08', 31, '2', '1', 'Sasi kumar', 'Supervisor', 20.00, 2, 18.00, 30.00, 'Chennai', 'Chennai', '2203110007', '1', '2', 'upload_files/candidate_tracker/57043667776_RESUME-suganya (1) (1) (1).pdf', NULL, '1', '2022-03-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-11 05:21:22', 1, '2022-03-11 05:29:53', 0, NULL, 1),
(8093, '', '0', '7358471108', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-11 05:28:46', 0, NULL, 0, NULL, 1),
(8094, '', '0', '8838232312', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203110009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-11 05:30:16', 0, NULL, 0, NULL, 1),
(8095, '', '0', '9940594355', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203110010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-11 06:02:00', 0, NULL, 0, NULL, 1),
(8096, 'charless', '9', '7373996883', '9080653417', 'charlessmct@gmail.com', '1994-05-08', 27, '2', '2', 'raja', 'farmer', 50000.00, 1, 27000.00, 35000.00, 'dharmapuri', 'chennai', '2203110011', '1', '2', 'upload_files/candidate_tracker/41242793254_Charless Resume.docx', NULL, '1', '2022-03-24', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-11 07:06:05', 1, '2022-03-22 01:01:00', 0, NULL, 1),
(8097, 'Shridharan', '16', '9080510185', '9092981955', 'Shridharshri04@gmail.com', '1999-04-06', 22, '2', '2', 'R palani', 'Defence', 30000.00, 2, 14000.00, 20000.00, 'Ramapuram', 'Ramapuram', '2203110012', '1', '2', 'upload_files/candidate_tracker/15055725524_Shridharan Resume (1).pdf', NULL, '1', '2022-03-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-11 07:23:52', 1, '2022-03-11 07:28:30', 0, NULL, 1),
(8098, 'M. Simal Ahamed', '4', '8248020546', '8300507236', 'Simalahamed2725@gmail.com', '2000-03-27', 21, '2', '2', 'Mohammed Nijamudeen', 'Own shop', 9000.00, 4, 0.00, 13000.00, 'Chennai', 'Velachery', '2203110013', '1', '1', 'upload_files/candidate_tracker/44417481667_Resume .pdf', NULL, '1', '2022-03-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'he is hyperactive will not suite for our process, his pronunciation are not clear. expt 14-16k. 6m exp in billing with 12k, looking for job change.', '1', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-11 08:52:59', 1, '2022-03-11 09:01:43', 0, NULL, 1),
(8099, 'Sundaramoorthy j', '4', '6379525619', '', 'Moorthysundara51@gmail.com', '2001-05-06', 20, '2', '2', 'Jayaraman g', 'Farmer', 8000.00, 1, 0.00, 8000.00, 'Chengapattu', 'Thirunilai', '2203120001', '1', '1', 'upload_files/candidate_tracker/81196242556_resume.pdf', NULL, '1', '2022-03-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling, no convincing and he is from chengalpattu too long distance. he cant relocate too.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-12 11:37:22', 85, '2022-03-12 12:32:43', 0, NULL, 1),
(8100, 'Vinoth', '4', '9677186320', '', 'vinothkumar130298@mail.com', '1998-02-13', 24, '2', '2', 'Subashini', 'House wife', 20000.00, 1, 12000.00, 14000.00, 'RA puram', 'RA Puram', '2203120002', '1', '2', 'upload_files/candidate_tracker/42847400448_VinothKumarResumes22.doc', NULL, '1', '2022-03-12', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for telesales', '1', '1', '', '', '', '', '1', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-12 11:51:30', 85, '2022-03-12 02:36:18', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8101, 'S manojkumar', '6', '9087396235', '', 'Manojmoji63@gmail.com', '1998-03-01', 24, '1', '2', 'S. Suresh', 'Cooli', 20000.00, 2, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2203120003', '', '1', 'upload_files/candidate_tracker/89810375392_S.MANOJ RESUME-1.doc', NULL, '1', '2022-03-12', 0, 'Cl126', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not okay with his lang and attitude, will not sustain and handle sales pressure. has 4m and 3m exp. was handling father biz in b/w. expt 15-16k.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-12 12:02:20', 1, '2022-03-12 12:09:13', 0, NULL, 1),
(8102, 'Abianaya', '4', '8270235902', '8300447131', 'abinayakaran444@gmail.com', '2001-09-15', 20, '2', '2', 'V.Manoharan', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Thiruvarur', 'Chennai', '2203120004', '1', '1', 'upload_files/candidate_tracker/54602847352_Abinaya resume.pdf', NULL, '1', '2022-03-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling, not convinced with her lang, expt is 15k will not sustain. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-12 12:03:04', 85, '2022-03-12 12:31:47', 0, NULL, 1),
(8103, 'Ebin Joe CL', '31', '6383084965', '8754275427', 'ebin.joe14@gmail.com', '1998-04-21', 23, '2', '2', 'Stella', 'Housewife', 25000.00, 2, 12000.00, 20000.00, 'Marthandam', 'Sozhinganallor', '2203120005', '1', '2', 'upload_files/candidate_tracker/39031646405__STARDM_premiadms_export6_DMS_FRM_FEB_2021_From_FTP_622021_80713006_SCHEDULE-1.PDF', NULL, '1', '2022-03-12', 8, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'drop him', '2', '1', '', '1', '1', '', '2', '2022-03-14', '2', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-12 12:18:01', 84, '2022-03-12 12:32:27', 0, NULL, 1),
(8104, 'Vishnu gopan', '4', '6383804038', '9884166122', 'vishnuvardhan954@gmail.com', '1996-10-03', 25, '2', '2', 'Gopa kumar', 'Business', 10000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2203120006', '1', '2', 'upload_files/candidate_tracker/55759039384_Vishnu', NULL, '1', '2022-03-12', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has to check with sriram, no sales exp but good in lang and convincing. expt 18k. ', '1', '1', '', '1', '1', '', '2', '2022-03-19', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-12 12:31:11', 7, '2022-03-12 02:41:12', 0, NULL, 1),
(8105, 'Nandhakumar', '4', '8940616992', '', 'samratnanthu@gmail.com', '2001-01-21', 21, '2', '2', 'Thandapani', 'Electric', 400000.00, 2, 0.00, 18000.00, 'Kalaiyar koil', 'Kalaiyar koil', '2203120007', '1', '1', 'upload_files/candidate_tracker/7779006557_my resume.docx', NULL, '1', '2022-03-14', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process. has 7m exp in airtel sim sales, not clear with his existing analysis, no 2w and lap, expt 16-17k. talkative but no convincing skill.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-12 03:54:12', 1, '2022-03-12 04:02:09', 0, NULL, 1),
(8106, 'Ashok Kumar Kancharla', '4', '9940304057', '', 'kancharla.ashok5@gmail.com', '1984-10-13', 37, '2', '1', 'Subashini', 'Home Maker', 25000.00, 2, 25000.00, 30000.00, 'Anakaputhur', 'Anakaputhur', '2203120008', '1', '2', 'upload_files/candidate_tracker/54121710245_Ashok_Kumar.docx', NULL, '1', '2022-03-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-12 04:58:44', 1, '2022-03-12 05:02:22', 0, NULL, 1),
(8107, 'Aruna', '4', '9629926285', '', 'arunarajaram9629@gmail.com', '2001-02-27', 21, '2', '2', 'Rajaram', 'Farmer', 400000.00, 2, 0.00, 15000.00, '1/72 , mariyamman kovil street,Puravadai , vpm', '1/72 , mariyamman kovil street, puravadai , vpm', '2203120009', '1', '1', 'upload_files/candidate_tracker/9528041684_ARUNA_resume1(1).pdf', NULL, '2', '2022-03-14', 0, '', '3', '59', '2022-04-04', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Arumbakkam Elite Team in consultant Role', '1', '2', '', '1', '1', '', '2', '2022-03-28', '3', '9', 'Offer Mail Sent', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-12 05:10:06', 60, '2022-03-28 10:35:10', 0, NULL, 1),
(8108, 'Kumaresan.s', '4', '9788054312', '', 'thalask03@gmail.com', '1996-10-03', 25, '2', '2', 'Sakthivel', 'Farmer', 15000.00, 3, 0.00, 15000.00, 'Thanjavur', 'Thanjavur, alakkudi', '2203120010', '1', '1', 'upload_files/candidate_tracker/81166016610_sakthi Kumaresan', NULL, '3', '2022-03-14', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not  profiled..not fit for telesales ..purely civil oriented field working experience ...and salary expectation also high...sustainability issues also..he is willing to do business in future and intrested in farming also.....', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-12 06:46:12', 85, '2022-03-14 02:54:16', 0, NULL, 1),
(8109, 'G MUNI', '16', '9943333954', '', 'muni.g1991@gmail.com', '1991-06-25', 30, '2', '1', 'E MANJULA', 'Student', 10000.00, 1, 18500.00, 22000.00, 'Chittoor', 'Chennai', '2203120011', '1', '2', 'upload_files/candidate_tracker/60268503763_muni 2021 updated Resume (1).docx', NULL, '3', '2022-03-18', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 1yr exp in data entry, 1.5yrs in go fashion as backend support with 15k, 3m in sbi gi with 20k, expt 25k. poor communication and will not sustain. knows only basics in excel. will not suite for calling.', '3', '1', '', '1', '3', '', '2', '1970-01-01', '1', '7', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-12 07:06:08', 60, '2022-03-18 12:09:49', 0, NULL, 1),
(8110, 'A. Jasmine leethiyal', '4', '7708100157', '', 'jasleethi19@gmail.com', '2001-02-19', 21, '2', '2', 'A. Prema', 'House wife', 10000.00, 1, 0.00, 15000.00, 'Muthukrishna Puram, Thoothukudi', 'Muthukrishna puram, Thoothukudi', '2203120012', '1', '1', 'upload_files/candidate_tracker/23288352894_Jasmine resume.pdf', NULL, '2', '2022-03-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'from tutukudi, fresher and no convincing skill will not suite for calling, expt 15k min. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-12 07:09:51', 85, '2022-03-14 09:47:48', 0, NULL, 1),
(8111, '', '0', '8144622123', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203120013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-12 07:14:52', 0, NULL, 0, NULL, 1),
(8112, 'D Jayasuriya', '16', '7299784508', '9003243180', 'ssuriya24c@gmail.com', '1998-01-28', 24, '2', '2', 'Dharmalingam', 'Cooli', 15000.00, 2, 17000.00, 20000.00, '6/43, Nayar Varatha Pillai street Royapettah', '6/43, Nayar Varatha Pillai street Royapettah', '2203120014', '1', '2', 'upload_files/candidate_tracker/75240523878_suriya.resumenew2022march.pdf', NULL, '1', '2022-03-14', 30, '', '4', '72', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 1yr exp in tcs as mis exe, 3m in cams, looking for job change. 15k ctc expt 20k, 30 days notice, okay with our company norms. 16k ctc.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-12 07:24:37', 60, '2022-03-14 04:58:23', 0, NULL, 1),
(8113, 'Kalaiselvi R', '17', '9952796017', '7339671397', 'kalaiselvi.ad111@gmail.com', '1992-10-30', 29, '2', '1', 'Prabhakaran P', 'Unit managee', 50000.00, 0, 18000.00, 25000.00, 'Madipakkam', 'Madipakkam', '2203120015', '1', '2', 'upload_files/candidate_tracker/23784983334_Kalai Selvi resume pdf (1).pdf', NULL, '1', '2022-03-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-12 07:48:16', 1, '2022-03-12 08:08:06', 0, NULL, 1),
(8114, 'Akkash. T', '4', '6381669202', '6369200698', 'akkashthiyagu18@gmail.com', '2000-11-18', 21, '2', '2', 'Thiyagarajan. M', 'Cashier', 15000.00, 2, 0.00, 15000.00, 'Kanchipuram', 'Kanchipuram', '2203120016', '1', '1', 'upload_files/candidate_tracker/49287870079_Akkash CV.pdf', NULL, '3', '2022-03-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable,much prefer for non voice,will not sustain and handlle the pressure\n', '1', '2', '', '4', '6', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-12 08:02:31', 85, '2022-03-14 10:25:13', 0, NULL, 1),
(8115, 'vignesh', '5', '9600438179', '', 'vignesh9111995@gmail.com', '1995-11-09', 26, '2', '2', 'ramalingam', 'dealer', 15000.00, 1, 15000.00, 22000.00, 'kaveripakkam', 'Kaveripakkam', '2203120017', '1', '2', 'upload_files/candidate_tracker/21221984461_sample.doc', NULL, '1', '2022-03-14', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher for sales, has 3yrs exp in production and qc, no convincing and no calling skills, will not suite for us, expt 22k.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-12 08:03:06', 1, '2022-03-14 01:49:01', 0, NULL, 1),
(8116, 'Thulasidharan', '22', '9677588128', '', 'thirunavakarassu93@gmail.com', '2002-04-19', 19, '2', '1', 'Manickam', 'Cattle shop', 25000.00, 1, 23000.00, 30000.00, 'Tindivanam', 'Tindivanam', '2203140001', '1', '2', 'upload_files/candidate_tracker/63291632857_thulasi.docx', NULL, '1', '2022-03-24', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for content writing. poor comm and no exp in writing. expt 25k.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-14 08:05:02', 87, '2022-03-24 04:41:18', 0, NULL, 1),
(8117, 'Catherine', '4', '7904979044', '9786012978', 'Cathufdo@gmail.com', '1997-07-09', 24, '2', '2', 'Raj', 'Fisher man', 25000.00, 3, 0.00, 20000.00, 'Thirunelveli', 'Thirunelveli', '2203140002', '1', '1', 'upload_files/candidate_tracker/72804323416_temp-1cdfa7ee-41e2-421e-8b8c-7e2b2f502f48.doc.pdf', NULL, '3', '2022-03-14', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'after her degree 2018 she was serching job in chenni and got offer but didnt joined due to health issues, 1m in native due to health issues she relived from that job too, will not sustain and expt is 15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-14 09:44:54', 1, '2022-03-14 10:04:04', 0, NULL, 1),
(8118, 'C.nirmala', '16', '6383248472', '9444775974', 'mercychandran88@gmail.com', '1999-06-29', 22, '2', '2', 'J.chandran', 'Working', 20000.00, 3, 13000.00, 15000.00, 'Thirutani', 'Santhom', '2203140003', '1', '2', 'upload_files/candidate_tracker/45073266332_Nirmala - Resume - 2pg.docx', NULL, '1', '2022-03-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 2yrs exp in customer support, avg in convincing, expt 16+, looking for backend and op. no knowledge in excel and sheets. ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-14 10:22:09', 58, '2022-03-14 10:37:54', 0, NULL, 1),
(8119, 'Aswin Alagappan', '5', '9003208143', '8778707186', 'cuteashwin55@gmail.com', '1994-09-29', 27, '2', '2', 'Sekar', 'Finance', 25000.00, 1, 17000.00, 20000.00, 'Boardway', 'Mannady', '2203140004', '1', '2', 'upload_files/candidate_tracker/85817491325_Ashvathy 29.pdf', NULL, '1', '2022-03-15', 1, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Kindly Reschedule', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-14 12:39:39', 85, '2022-03-16 10:36:45', 0, NULL, 1),
(8120, 'G.Pavan Kumar', '17', '7981210181', '8143902139', 'pavanmudiraj1993@gmail.com', '1993-03-28', 28, '2', '2', 'G Lakshmi Devi', 'House wife', 30000.00, 2, 300000.00, 400000.00, 'Kurnool', 'Anantapur', '2203140005', '1', '2', 'upload_files/candidate_tracker/70877408747_Pavan Resume.docx', NULL, '2', '2022-03-14', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-14 01:48:10', 58, '2022-03-14 02:46:26', 0, NULL, 1),
(8121, 'V. Yuvasri', '4', '6369451732', '', 'Vyuvasri4@gmail.com', '2000-10-03', 21, '2', '2', 'P. Velusamy', 'Salesman', 30000.00, 1, 0.00, 20000.00, 'Mmnagar 6th street kalavasal Madurai', 'Mmnagar 6th street kalavasal Madurai', '2203140006', '1', '1', 'upload_files/candidate_tracker/71782583654__Template_1640165565432.pdf', NULL, '3', '2022-03-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-03-14 02:26:33', 1, '2022-03-14 02:37:44', 0, NULL, 1),
(8122, 'Ramya', '4', '9344736721', '', 'ramyabalaji848@gmail.com', '2000-03-21', 21, '2', '2', 'Balaji', 'Driver', 10000.00, 1, 0.00, 12000.00, 'thanjavur', 'thanjavur', '2203140007', '1', '1', 'upload_files/candidate_tracker/76241859654_Resume.pdf', NULL, '3', '2022-03-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-14 05:19:05', 1, '2022-03-14 05:21:55', 0, NULL, 1),
(8123, 'Balaji C', '4', '7395861365', '', 'balajib91103@gmail.com', '2001-06-03', 20, '2', '2', 'CHINNAKANNU', 'Farmar', 150000.00, 2, 0.00, 15000.00, 'KALLAKKURICHI', 'KALLAKKURICHI', '2203140008', '1', '1', 'upload_files/candidate_tracker/34424021879_RESUME -  BALAJI-1.docx', NULL, '2', '2022-05-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-14 05:52:28', 85, '2022-05-04 10:06:57', 0, NULL, 1),
(8124, '', '0', '9840085298', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203140009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-14 06:13:40', 0, NULL, 0, NULL, 1),
(8125, '', '0', '9003872638', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203140010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-14 06:19:11', 0, NULL, 0, NULL, 1),
(8126, 'Ramya D', '25', '9952813717', '', 'ramyadivya91@gmail.com', '1991-06-16', 30, '2', '1', 'PRABHAKARAN SANKAR RAJA M', 'Assistant manager at HCL', 40000.00, 1, 240000.00, 270000.00, 'Ambattur', 'Ambattur', '2203140011', '1', '2', 'upload_files/candidate_tracker/93765582812_Resume-converted (1).pdf', NULL, '1', '2022-03-16', 10, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not okay with agmt', '8', '2', '', '1', '3', '', '2', '2022-03-17', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-14 07:43:44', 7, '2022-03-16 11:44:16', 0, NULL, 1),
(8127, 'Sreeganesh', '4', '9446329561', '9344283451', 'sree93361@gmail.com', '2000-10-31', 21, '2', '2', 'No', 'Nothing', 22000.00, 0, 0.00, 18000.00, 'Idukki, Kerala', 'Shollinganallur', '2203140012', '1', '1', 'upload_files/candidate_tracker/12120986559_Sreeganesh -10.pdf', NULL, '3', '2022-03-16', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-14 08:09:01', 85, '2022-03-16 10:35:08', 0, NULL, 1),
(8128, 'gowtham', '6', '9962606474', '', 'gauthamravi598@gmail.com', '1994-09-06', 27, '2', '2', 'R', 'officer', 100000.00, 0, 0.00, 120000.00, 'chennai', 'chennai', '2203140013', '1', '1', 'upload_files/candidate_tracker/20262855361_DocumentfromGauthamRavichandran1.docx', NULL, '1', '2022-03-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling and backend. very childish and no understanding. only son and training him is also tough. ', '5', '1', '', '', '', '', '2', '1970-01-01', '3', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-14 09:40:43', 87, '2022-03-22 04:59:16', 0, NULL, 1),
(8129, 'A Mohammed Furqanullah', '31', '7397596247', '', 'furqanmohammed328@gmail.com', '1997-04-02', 24, '2', '2', 'Farhathullah', 'Worker', 12000.00, 2, 0.00, 20000.00, 'Ambur', 'Chennai', '2203140014', '1', '1', 'upload_files/candidate_tracker/9443340560_Furqan0008.pdf', NULL, '3', '2022-03-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-14 11:11:07', 85, '2022-03-16 10:37:12', 0, NULL, 1),
(8130, 'Selvam', '4', '6381350603', '6380669699', 'selvam1993slp@gmail.com', '1993-11-13', 28, '2', '2', 'Marry', 'Housewife', 10000.00, 1, 0.00, 13000.00, 'Kanchipuram', 'Kanchipuram', '2203150001', '1', '1', 'upload_files/candidate_tracker/53554494504_Selvam B (1).pdf', NULL, '1', '2022-03-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Voice Process,relevant Star Health only but no sustainability, and will not sustain in our Roles xxamp Pressure\n', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-15 11:01:56', 1, '2022-03-15 11:07:14', 0, NULL, 1),
(8131, 'Rajalakshmi G', '4', '9840379873', '8220606278', 'rajalakshmi26388@gmail.com', '1998-07-03', 23, '2', '1', 'Gopi K', 'Travel agency', 20000.00, 1, 0.00, 19000.00, 'No-17/9, mangapathi street, pattalam, chennai-12', 'No-17/9, Mangapathi Street, Pattalam, Chennai-12', '2203150002', '1', '2', 'upload_files/candidate_tracker/39741645959_Raji resume.docx', NULL, '1', '2022-03-22', 0, '', '3', '59', '2022-04-01', 182496.00, '', '3', '2022-10-04', '2', 'Selected for Arumbakkam Location with PT only,TH-15K', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', 'Offer Mail Shared', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-15 12:33:08', 60, '2022-03-25 05:03:59', 0, NULL, 1),
(8132, 'Vigneshwari.T', '11', '8056935467', '8778032926', 'vigneshwari2601@gmail.com', '2007-03-15', 0, '2', '2', 'S.thiravidamani', 'Farmer', 10000.00, 1, 15000.00, 15000.00, '212 Mela street pazhayanalur,chidambaram', '36 masque Street taramani, Chennai', '2203150003', '1', '2', 'upload_files/candidate_tracker/13151040241_Vigneshwari[0_0] (1).pdf', NULL, '1', '2022-03-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,no sustainability in previous company stating mothexquots health issue,Handling Pressure,also she mention that she is ok with SA,but doubtful', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-15 03:35:49', 1, '2022-03-15 03:39:08', 0, NULL, 1),
(8133, 'Fathima', '11', '7397397229', '6369159542', 'fathuaf1998@gmail.com', '1998-05-01', 23, '2', '2', 'K.Ahmed Basha', 'Mutton merchant', 35000.00, 1, 10000.00, 17000.00, 'Poondhamalli', 'Poondhamalli', '2203150004', '1', '2', 'upload_files/candidate_tracker/13716688220_Fathima- .Resume..pdf', NULL, '1', '2022-03-16', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '6', '1', '0', '1', '1', '0', '2', '2022-03-17', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-15 04:20:21', 1, '2022-03-15 04:31:08', 0, NULL, 1),
(8134, 'Shivaani.P', '11', '9791801422', '', 'shankari20498@gmail.com', '2022-04-20', 0, '2', '2', 'prithvraj', 'business', 50000.00, 1, 0.00, 12000.00, 'annanagar', 'annanagar', '2203150005', '1', '1', 'upload_files/candidate_tracker/66610111008_Shivaani.presume.pdf', NULL, '1', '2022-03-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, done literature then fashion designing, worked 1m in consultancy for 10k absconded due to low salary. no job need. she is not clear with her carrier. expt 13-15k.', '6', '1', '', '', '', '', '2', '1970-01-01', '2', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-15 04:44:00', 58, '2022-03-16 11:40:53', 0, NULL, 1),
(8135, 'MAHESHRAJ', '7', '8072015926', '', 'massmahesh398@gmail.com', '2000-02-09', 22, '2', '2', 'Balasubramanian', 'Farmer', 15000.00, 1, 12000.00, 16000.00, 'THACHANALLUR', 'THACHANALLUR', '2203150006', '1', '2', 'upload_files/candidate_tracker/57152533915_CV_2021-11-28-064914.pdf', NULL, '3', '2022-03-16', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process. he is not interested in insurance. he has 6m exp in mf and insurance. he has no idea about amc and funds. known nothing about insurance too. was getting 12k and expt 15k min.', '7', '1', '', '1', '3', '', '2', '1970-01-01', '3', '4', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-15 04:51:09', 84, '2022-03-16 10:05:10', 0, NULL, 1),
(8136, 'Sunil Kumar R', '11', '6374989131', '7358473613', 'sjjsunil10@gmail.com', '1999-04-17', 22, '2', '2', 'Ramesh', 'Business', 25000.00, 1, 12500.00, 16000.00, 'Chennai', 'Chennai', '2203150007', '1', '2', 'upload_files/candidate_tracker/40685217873_SUNILKUMAR.R (B.E. & MBA) 05.pdf', NULL, '1', '2022-03-16', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-15 05:50:38', 1, '2022-03-15 05:52:48', 0, NULL, 1),
(8137, 'Saranya', '31', '9789726850', '', 'saranyaseswaran@gmail.com', '1995-06-28', 26, '2', '1', 'Sathish kumar', 'Mechanical Engineer', 90000.00, 1, 30000.00, 40000.00, 'Coimbatore', 'Chennai', '2203160001', '1', '2', 'upload_files/candidate_tracker/73797589757_Saranya_Eswaran (2).pdf', NULL, '3', '2022-03-16', 7, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'was completely in teaching, currently working in bijus with 30-40k variable salary based on classes. married and willing to relocate to chennai. expt in between 30-40k, fresher and knows only the basic in react. not answered few ques. ', '2', '1', '', '1', '1', '', '1', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-16 11:22:54', 7, '2022-03-16 05:47:02', 0, NULL, 1),
(8138, '', '0', '9176820644', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203160002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-16 11:29:22', 0, NULL, 0, NULL, 1),
(8139, 'salmankhan', '11', '8438515277', '', 'salmananvar21@gmail.com', '1997-02-21', 25, '2', '2', 'anvar basha', 'farmer', 40000.00, 3, 12000.00, 20000.00, 'kallakurichi', 'kallakurichi', '2203160003', '1', '2', 'upload_files/candidate_tracker/12214538108_salman Resume.pdf', NULL, '2', '2022-03-16', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-16 11:34:27', 1, '2022-03-16 12:44:32', 0, NULL, 1),
(8140, 'Saravanan', '16', '9787272383', '', 'selvasaravana2020@gmail.com', '1991-01-10', 31, '2', '1', 'Anitha', 'Home maker', 32000.00, 2, 420000.00, 500000.00, 'Sivagangai', 'Sivagangai', '2203160004', '1', '2', 'upload_files/candidate_tracker/17202696949_Resume-New.pdf', NULL, '1', '2022-03-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will  not suit for mis, expt 4.2l. was doing freelancing for content. has to check with it.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1000', '', NULL, NULL, NULL, 1, '2022-03-16 11:39:51', 7, '2022-03-19 10:31:47', 0, NULL, 1),
(8141, 'Suvatha Sekar', '4', '8148922206', '9176071351', 'suvethasks90@gmail.com', '2001-06-17', 20, '2', '2', 'Sekar k', 'Driver', 10000.00, 1, 14000.00, 18000.00, 'Karaikal', 'Saidapet', '2203160005', '1', '2', 'upload_files/candidate_tracker/61375535731_RESUME (Suvetha)-converted.pdf', NULL, '1', '2022-03-17', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'she is not interested in calling. was asking for non voice. she dont know any basics in excel. then she is okay with calling but expt 12-14k. will not sustain for calling. ', '1', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-16 11:53:50', 1, '2022-03-16 11:59:37', 0, NULL, 1),
(8142, 'Naveena. R', '6', '9566310813', '8344421010', 'naveenanaveenar3@gmail.com', '2000-02-05', 22, '3', '2', 'Indhumathi', 'Housewife', 15000.00, 2, 12000.00, 14000.00, 'New washermenpet', 'New Washermenpet', '2203160006', '', '2', 'upload_files/candidate_tracker/21760813430_Ra-111.docx', NULL, '1', '2022-03-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'We proposed our Salary and turned before joining as not interested', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-16 12:50:53', 7, '2022-03-16 02:46:15', 0, NULL, 1),
(8143, 'Yamuna. M', '6', '9962168005', '9962168214', 'yamuna8300@gmail.com', '2000-03-08', 22, '3', '2', 'Chitra. M', 'House wife', 20000.00, 1, 12000.00, 14000.00, 'New Washermenpet', 'New Washermenpet', '2203160007', '', '2', 'upload_files/candidate_tracker/35592528474_M.Yamuna_F2.docx', NULL, '1', '2022-03-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'We Proposed Our Salary And Turned Before Joining As Not Interested', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-16 01:05:33', 7, '2022-03-16 02:45:19', 0, NULL, 1),
(8144, '', '0', '9047031218', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203160008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-16 01:36:12', 0, NULL, 0, NULL, 1),
(8145, 'akash', '6', '9786550502', '8940433709', 'akashbsc18@gmail.com', '1999-10-10', 22, '2', '2', 'maheswaran', 'farmer', 50000.00, 1, 16000.00, 20000.00, 'southstreet thuvarankurichi thanjavur', 'choolaimedu', '2203160009', '1', '2', 'upload_files/candidate_tracker/22809919774_Akash.pdf', NULL, '1', '2022-03-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process, has 1yr exp in cash collection. 4m in real estate. lang is not good and expt is 15k and no 2w and laptop will not suite for re too.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-16 02:26:46', 60, '2022-03-18 11:51:12', 0, NULL, 1),
(8146, 'Jose Prabhakaran', '5', '9167634324', '7678083539', 'mjpkaran@gmail.com', '1994-05-25', 27, '2', '2', 'Murugesan', 'Cook', 30000.00, 2, 35000.00, 50000.00, 'Tirunelveli', 'Pallikaranai', '2203160010', '1', '2', 'upload_files/candidate_tracker/55097354149_Jose resume 032022.pdf', NULL, '1', '2022-03-16', 0, '', '3', '59', '2022-04-07', 450000.00, '', '7', '1970-01-01', '1', 'Selected for Pandian Team -RM wiht 7% Hike from previous CTC and 6 month target based incentive will be given by manager', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-16 02:37:03', 60, '2022-03-24 12:22:07', 0, NULL, 1),
(8147, 'Kamali', '16', '8148888564', '8778536960', 'kamalijayachandran2611@gmail.com', '1995-06-05', 26, '2', '2', 'S.Jayachandran', 'Govt Officer', 35000.00, 1, 1.98, 2.20, 'Chennai', 'Avadi, Chennai', '2203160011', '1', '2', 'upload_files/candidate_tracker/97643744694_Kamali. J.docx', NULL, '1', '2022-03-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-16 03:02:12', 1, '2022-03-16 03:09:14', 0, NULL, 1),
(8148, '', '0', '8939554613', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-16 05:35:13', 0, NULL, 0, NULL, 1),
(8149, 'Guruwaran', '4', '7338918826', '9042496694', 'guruwaran007@yahoo.com', '1994-08-21', 27, '2', '2', 'Thiyagu kanchana', 'Reated', 15000.00, 1, 0.00, 15000.00, 'No 15 cg colony 3rd Street royapuram', 'Chennai kasimadu', '2203160013', '1', '1', 'upload_files/candidate_tracker/12005674681_gurauvaran cv-1.docx', NULL, '3', '2022-03-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not speaking up will not suite for calling and sales. was working n dhubai and will not sustain here.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-16 05:55:04', 85, '2022-03-18 01:29:56', 0, NULL, 1),
(8150, 'Shanmugi G', '11', '9941155308', '', 'Shanmugigunasekaran@gmail.com', '1998-12-25', 23, '2', '2', 'Gunasekaran p', 'Other', 75000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2203170001', '1', '2', 'upload_files/candidate_tracker/83924427234_HARI SHANKAR.pdf', NULL, '1', '2022-03-17', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 6m exp in a consultancy, no basic skills in calling and will not suite for our company. given negative feedback about the present org. expt 15k. ', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-17 09:16:53', 7, '2022-03-17 12:03:50', 0, NULL, 1),
(8151, 'Mohamed Aslam', '4', '7871397272', '7904637461', 'aslampno1@gmail.com', '1998-04-12', 23, '2', '2', 'Ghouse Mohideen', 'mosque Hajrath', 40000.00, 2, 12000.00, 16000.00, 'Parangipettai Cuddalore', 'Parangipettai Cuddalore', '2203170002', '1', '2', 'upload_files/candidate_tracker/96062549870_aslam resume.docx', NULL, '3', '2022-03-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile. need to check with him again due to his network issues couldnt continue the call too.\nrejected over the call', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-17 10:29:13', 85, '2022-03-17 10:56:55', 0, NULL, 1),
(8152, 'Suvatha Sekar', '4', '9715636801', '8870367691', 'suvethasks90@gmail.com', '2001-06-17', 20, '2', '2', 'Sekar k', 'Driver', 10000.00, 1, 14000.00, 18000.00, 'Karaikal', 'Saidapet', '2203170003', '1', '2', 'upload_files/candidate_tracker/97692775346_RESUME (Suvetha)-converted.pdf', NULL, '1', '2022-03-17', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 7m exp in calling but now looking for non voice, due to pressure she relived so will not sustain here. expt 14-15k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-17 10:31:32', 85, '2022-03-17 10:55:36', 0, NULL, 1),
(8153, '', '0', '7373548451', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203170004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-17 10:32:21', 0, NULL, 0, NULL, 1),
(8154, '', '0', '7448735798', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203170005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-17 10:35:42', 0, NULL, 0, NULL, 1),
(8155, 'Navamani', '25', '9176991958', '9551118566', 'nnavamanii1998@gmail.com', '1998-10-25', 23, '2', '2', 'Neelaram', 'Electrician', 20000.00, 1, 11000.00, 17000.00, 'Villivakkam', 'Villivakkam', '2203170006', '1', '2', 'upload_files/candidate_tracker/43321276281_Navamani Resume.pdf', NULL, '1', '2022-03-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 2yrs exp in data analyst but she was doing data entry there. no knowledge in basic excel. not interested in calling.', '8', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-17 10:40:56', 85, '2022-03-17 12:09:46', 0, NULL, 1),
(8156, 'G. Evanglin', '4', '9344043791', '9551291668', 'gevanglin@gmail.Com', '2001-02-23', 21, '2', '2', 'Gnanam', 'Bank', 10000.00, 4, 0.00, 10000.00, 'Royapuram', 'Royapuram', '2203170007', '1', '1', 'upload_files/candidate_tracker/73488724693_resume G. Evanglin.docx', NULL, '1', '2022-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'she has stammering issues, not interested in calling as well. will not for any process.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-17 12:31:54', 1, '2022-03-17 12:55:21', 0, NULL, 1),
(8157, '', '0', '9384616288', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203170008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-17 03:09:33', 0, NULL, 0, NULL, 1),
(8158, '', '0', '9791157528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203170009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-17 03:47:04', 0, NULL, 0, NULL, 1),
(8159, '', '0', '7010104371', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203170010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-17 05:54:50', 0, NULL, 0, NULL, 1),
(8160, '', '0', '8096328175', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203170011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-17 08:19:15', 0, NULL, 0, NULL, 1),
(8161, 'Ranjith vijayan', '21', '7395982712', '', 'ranjithabi0777@gmail.com', '2001-06-30', 20, '2', '2', 'Sumathi vijayan', 'Tailor', 150000.00, 1, 13000.00, 16000.00, 'Sriperumbudhur', 'Aminjikarai', '2203170012', '1', '2', 'upload_files/candidate_tracker/67973272516_RANJITH VIJAYAN CURRICULUM VITAE.pdf', NULL, '1', '2022-03-18', 0, '', '4', '72', NULL, 0.00, '', '0', NULL, '1', 'has 1yr exp in new india gi with 13k, high job need and expt 16k. looking for job change for sal. below avg comm. okay with 1yr terms for renewal.', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-17 09:40:34', 1, '2022-03-18 12:17:44', 0, NULL, 1),
(8162, 'Hariharan R', '13', '9566889014', '', 'ravichandranhari98@gmail.com', '1998-05-16', 23, '2', '2', 'Ravichandran', 'Farmar', 10000.00, 1, 12000.00, 22000.00, 'Attur', 'Salem District', '2203170013', '1', '2', 'upload_files/candidate_tracker/4050806075_Hariharan Ravichandran-1.docx', NULL, '2', '2022-03-18', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-17 10:40:37', 84, '2022-03-18 10:01:09', 0, NULL, 1),
(8163, 'Punitha', '4', '8056624356', '', 'Punithasanmugam@gmail.com', '1999-08-15', 22, '2', '2', 'Sanmugam', 'carpenter', 20000.00, 1, 0.00, 15000.00, '34 maruthupadiyan Nagar', '34 maruthupadiyan Nagar', '2203180001', '1', '1', 'upload_files/candidate_tracker/12007460348_PUNITHA RESUME.docx', NULL, '3', '2022-03-18', 0, '', '3', '59', '2022-03-23', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Thanjavur Location in Consultant Role', '1', '1', '', '4', '5', '', '2', '2022-03-22', '1', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-18 09:54:35', 60, '2022-03-21 06:35:25', 0, NULL, 1),
(8164, 'c.tamilarasan', '4', '8056883473', '', 'antonytamil00@gmail.com', '2000-05-06', 21, '2', '2', 'c.marry', 'house wife', 12000.00, 3, 0.00, 15000.00, 'thoothukudi', 'thoothukudi', '2203180002', '1', '1', 'upload_files/candidate_tracker/83719992687_Tamilarasan CV-converted (1).pdf', NULL, '3', '2022-03-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-18 10:19:16', 85, '2022-03-18 10:42:45', 0, NULL, 1),
(8165, 'Narendhar', '16', '7397353096', '', 'narenkarthi54@gmail.com', '1997-11-02', 24, '2', '2', 'Karthick', 'Carpenter', 20000.00, 1, 13000.00, 17000.00, 'ICF, Anna nager, Chennai-38', 'ICF, Anna nager, Chennai-38', '2203180003', '1', '2', 'upload_files/candidate_tracker/29675445575_Narendhar Resume.pdf', NULL, '1', '2022-03-21', 0, '', '2', '8', NULL, 0.00, '', '0', NULL, '1', 'need to check with gokul. no eng comm. he is okay wit all terms.', '3', '1', '0', '1', '1', '0', '2', '2022-03-22', '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-18 10:20:38', 1, '2022-03-21 03:28:35', 0, NULL, 1),
(8166, '', '0', '9884040063', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203180004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-18 10:30:59', 0, NULL, 0, NULL, 1),
(8167, '', '0', '9345572889', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203180005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-18 10:41:37', 0, NULL, 0, NULL, 1),
(8168, 'Vanitha s', '4', '9360611675', '9629183219', 'Vanivani1078@gmail.com', '2001-07-10', 20, '2', '2', 'Father name: s.sekar', 'farmer', 30000.00, 2, 0.00, 15000.00, 'Ariyalur', 'T.nagar', '2203180006', '1', '1', 'upload_files/candidate_tracker/55314084405_9962303801 quotation.docx', NULL, '1', '2022-03-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, will not suite for calling and sales, not speaking at all, will not sustain too. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-18 11:17:58', 85, '2022-03-18 12:05:10', 0, NULL, 1),
(8169, 'Lekha Lavanya', '11', '9940560670', '9600078881', 'Lekha_lavanya@yahoo.in', '1992-09-17', 29, '2', '2', 'Kumar. Y', 'Sub inspector of police', 148000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2203180007', '1', '1', 'upload_files/candidate_tracker/1502683487_122022.pdf', NULL, '1', '2022-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '2016 batch, worked 4m in operations in dm company in b/w aug 21 to nov 21. no basci knowledge in recruitment. will not suite for our process no job need.', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-18 11:41:30', 1, '2022-03-18 11:57:36', 0, NULL, 1),
(8170, 'kaviarasan', '5', '9677411515', '', 'kaviarasan11@gmail.com', '1998-01-01', 24, '2', '2', 'r', 'officer', 100000.00, 0, 18000.00, 18000.00, 'chennai', 'chennai', '2203180008', '1', '2', 'upload_files/candidate_tracker/92970853945_DocumentfromGauthamRavichandran1.docx', NULL, '1', '2022-03-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has exp in hdfc loan with 14k, expt 18-20k. due to pressure he relived and not comfortable with calling.', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-18 11:59:07', 87, '2022-03-22 04:59:26', 0, NULL, 1),
(8171, 'KB.SHRIGANESHBHARATHI', '4', '9840691845', '', 'ganeshbharathi.k@gmail.com', '2000-01-01', 22, '2', '2', 'G.Subbulkshmi', 'Nurse', 250000.00, 1, 0.00, 15000.00, 'No:1/17,Dharmarajapuram,Manapakkam,Chennai-600125', 'No:1/17,Dharmarajapuram,Manapakkam,Chennai-600125', '2203180009', '1', '1', 'upload_files/candidate_tracker/25036521570_Ganesh resume.docx', NULL, '1', '2022-03-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, will not suite for our process and sales.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-18 12:24:12', 85, '2022-03-18 01:28:47', 0, NULL, 1),
(8172, 'E.BALAJI', '4', '7395871598', '', 'balaji02011999@mail.com', '1999-01-02', 23, '2', '2', 'K.ELUMALAI', 'Farmer', 100000.00, 1, 0.00, 15000.00, '171,kalathumettu Street, Arani', 'Mint Street, Central', '2203180010', '1', '1', 'upload_files/candidate_tracker/28417310107_1644855211510_1644839548649_balaji balaji .com.docx', NULL, '1', '2022-03-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, not speaking up and no convincing. will not suite for our process and sales.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-18 12:25:45', 85, '2022-03-18 01:29:25', 0, NULL, 1),
(8173, 'Muthukrishnan', '11', '9092135758', '9487717136', 'krishsingle10@gmail.com', '1992-11-10', 29, '2', '2', 'Muthuraman', 'Retired', 20000.00, 1, 0.00, 13000.00, 'Trichy', 'Trichy', '2203180011', '1', '1', 'upload_files/candidate_tracker/20041345922_MUTHU KRISHNAN-2.pdf', NULL, '2', '2022-03-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-18 12:39:29', 1, '2022-03-18 12:44:55', 0, NULL, 1),
(8174, 'ranjith', '4', '8189919698', '', 'ranjithkumar.govin@gmail.com', '1992-12-22', 29, '2', '2', 'Govindharaj C', 'Self Employed', 40000.00, 0, 0.00, 12000.00, 'Villupuram', 'chennai', '2203180012', '1', '1', 'upload_files/candidate_tracker/78337628201_HariharanRavichandran1.docx', NULL, '1', '2022-03-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'was working in merto ticket counter for past 1yr and not interested in sales and calling. not speaking up will not suite for our process.', '1', '1', '', '', '', '', '1', '1970-01-01', '3', '1', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-18 01:32:17', 7, '2022-03-19 09:47:42', 0, NULL, 1),
(8175, 'Vinu R', '13', '8270525325', '9994391813', 'vinurj98@gmail.com', '1998-12-20', 23, '2', '2', 'Ravi', 'Mason', 10000.00, 2, 0.00, 15000.00, 'Marthandam, Tamilnadu.', 'Marthandam,Tamilnadu', '2203180013', '1', '1', 'upload_files/candidate_tracker/44236088962_CV_2022020412215138-1.pdf', NULL, '2', '2022-03-19', 0, '', '2', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher, completed 6m course in php, didnt answered any basic ques, said he can do the task. i told him to call back after learning. if he calls check with tech team., ', '2', '2', '0', '1', '1', '0', '2', '2022-03-28', '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-18 05:30:10', 1, '2022-03-18 05:35:28', 0, NULL, 1),
(8176, 'Nelfred Peter Kingsly', '11', '7358300901', '', 'itsmecode761@gmail.com', '1997-05-22', 24, '2', '2', 'Benedict', 'Worker', 200000.00, 1, 0.00, 20000.00, 'Marai malai nagar', 'Marai malai nagar', '2203190001', '1', '1', 'upload_files/candidate_tracker/42048263018_NPK rec_nelfred peter kingsly.pdf', NULL, '1', '2022-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, not convinced with his profile and his pitch. expt 15k. has 1yr exp in diploma technical ppl.', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-19 09:55:42', 1, '2022-03-19 10:18:27', 0, NULL, 1),
(8177, 'Sabareesan', '4', '7708878012', '7092712140', 'Sabaredevan@gmail', '1988-12-16', 33, '2', '1', 'Naveena', 'Software services engineer', 12.00, 3, 15000.00, 14000.00, '60,gandhipuram mill Street, erode', 'Erode', '2203190002', '1', '2', 'upload_files/candidate_tracker/58592418295_Resume sabari.docx', NULL, '2', '2022-03-19', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling and our process. as per his profile he is 33 and he said 43 during interview. has exp as service engg. expt 13-14k. no convincing.', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-19 10:02:18', 85, '2022-03-19 10:28:17', 0, NULL, 1),
(8178, 'Farzik ahamed', '22', '7358737597', '', 'Farzikahamed@gmail.com', '1995-07-18', 26, '2', '2', 'Mohamed hanifa', 'Security guard', 7000.00, 1, 0.00, 20000.00, 'KUMBAKONAM', 'Royapettah', '2203190003', '1', '1', 'upload_files/candidate_tracker/30478909121_ahamed resume.docx', NULL, '1', '2022-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'completed online dm course. comm. is below avg and knows only basics in dm. will not suite for us.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-19 10:06:04', 1, '2022-03-19 10:14:37', 0, NULL, 1),
(8179, '', '0', '7359737597', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-19 10:17:15', 0, NULL, 0, NULL, 1),
(8180, 'Mohamed Riyaz Khan', '11', '8754702767', '9361935278', 'Mdriyazkhan0318@gmail.com', '2000-01-03', 22, '2', '2', 'Mahaboob khan', 'hR', 30000.00, 2, 16200.00, 21000.00, 'Chennai', 'Chennai', '2203190005', '1', '2', 'upload_files/candidate_tracker/73149826714_RIYAZ HR RESUME.pdf', NULL, '1', '2022-03-19', 2, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 1yr exp in hr admin. 15k expt 30%. has basic idea about sourcing. he is not okay to work with ijobs consultancy. he is not okay with service agmt.', '6', '1', '', '4', '6', '', '2', '1970-01-01', '1', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-19 11:21:06', 7, '2022-03-19 11:43:20', 0, NULL, 1),
(8181, '', '0', '9774320243', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-19 12:39:28', 0, NULL, 0, NULL, 1),
(8182, 'baskaran p', '5', '9952258282', '', 'baskar05.pb@gmail.com', '1997-05-12', 24, '2', '2', 'na', 'na', 50000.00, 1, 18000.00, 25000.00, 'kallakurichi', 'kallakurichi', '2203190007', '1', '2', 'upload_files/candidate_tracker/43812394416_baskar Resume2 (1).pdf', NULL, '2', '2022-03-21', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for rm profile. 8m in manapuram with 2.4l and expt 3.5l', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-19 01:03:37', 1, '2022-03-21 08:15:16', 0, NULL, 1),
(8183, '', '0', '8148821927', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203190008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-19 01:54:36', 0, NULL, 0, NULL, 1),
(8184, 'Subhash chandru', '22', '6382551203', '9894594131', 'subhashchandru@outlook.com', '1999-02-21', 23, '2', '2', 'Muthukumari', 'Teacher', 100000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2203190009', '1', '1', 'upload_files/candidate_tracker/68669430281_SubhashChandru_InternshalaResume.pdf', NULL, '1', '2022-03-19', 0, '', '4', '69', '1970-01-01', 0.00, '', '4', '2022-07-01', '1', 'good in oral check with his content. was working in a company for 20days. he terminated his contact and chedk with this once. has basic idea about DM. willing to learn and expt 10k', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-19 05:27:58', 60, '2022-03-19 07:04:03', 69, '2022-08-30 05:51:35', 0),
(8185, 'Dinesh kumar', '4', '8610761229', '9688918073', 'dineshkumarnataraj7498@gmail.com', '1998-04-07', 23, '2', '2', 'Jayamani A', 'Chick form', 8000.00, 0, 1.56, 20000.00, 'Udumalai', 'Udumalai', '2203190010', '1', '2', 'upload_files/candidate_tracker/22983069402_Dineshkumar-converted.pdf', NULL, '3', '2022-03-21', 40, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is working in Accenture with 11.5k and expt 18k. salary is his only concern he okay with any profile.  ', '1', '1', '', '1', '3', '', '1', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-19 06:26:07', 85, '2022-03-21 03:20:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8186, 'Sathish S', '16', '8939460509', '9841528014', 'sizekutty121294@gmail.com', '1994-12-12', 27, '2', '2', 'S.Amudha', 'Housing keeping', 25000.00, 2, 18000.00, 21000.00, 'Chennai,Thoraipakkam', 'Chennai,Thoraipakkam', '2203190011', '1', '2', 'upload_files/candidate_tracker/40531430447_Sathish Resume new.pdf', NULL, '1', '2022-03-22', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'poor comm. will not suite for this profile. expt 20-22k with esi and pf. ', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-19 08:25:22', 1, '2022-03-19 09:14:34', 0, NULL, 1),
(8187, 'K Anitha', '28', '7806925604', '7448499033', 'anithakamaraj247@gmail.com', '1999-05-09', 22, '2', '2', 'K Dhanalakshmi', 'House wife', 20000.00, 1, 14000.00, 16000.00, 'Redhills', 'Redhills', '2203190012', '1', '2', 'upload_files/candidate_tracker/23522913710_Anitha_Resume.pdf', NULL, '1', '2022-03-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 2.5yrs in teleperfomance kyc. 3min yes bank due to over pressure looking for job change. she is not okay with calling and renewal. will not suite for mis. will not handle pressure.', '3', '1', '', '1', '3', '', '2', '1970-01-01', '1', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-19 08:50:10', 7, '2022-03-22 11:39:50', 0, NULL, 1),
(8188, '', '0', '7358473613', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203200001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-20 05:00:55', 0, NULL, 0, NULL, 1),
(8189, 'C. BRANAND SURYA', '6', '8248021982', '7299790996', 'branadsurya48@gmail.com', '1998-07-22', 23, '1', '2', 'D. Chinnappan', 'Business', 15000.00, 2, 0.00, 18000.00, 'Ullagaram, Chennai', 'Ullagaram, Chennai', '2203210001', '', '1', 'upload_files/candidate_tracker/43557398403_C.BRANAND SURYA mail-converted-1.pdf', NULL, '1', '2022-03-21', 0, '', '4', '89', NULL, 0.00, '', '0', NULL, '1', 'fresher for us but has sales exp. due to low sal looking for change. expt 17-18k check with the sustainability once. job need.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-21 10:58:35', 1, '2022-03-21 11:11:08', 0, NULL, 1),
(8190, 'jaisurya', '6', '9884856467', '8248021982', 'charanjai10@gmail.com', '1997-10-10', 24, '3', '2', 'Alli H', 'House wife', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2203210002', '', '1', 'upload_files/candidate_tracker/22361653176_1647841509423_1647841507616_jaisuriyaRESUME0999.pdf', NULL, '1', '2022-03-21', 0, '', '4', '89', NULL, 0.00, '', '0', NULL, '1', '5050 for me. fresher for us, has 2yrs site exp in b/w was taking care of his fathers biz, sustainability and pressure handling doubt. expt 18k. little bit slow too.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-21 10:59:21', 1, '2022-03-21 11:15:56', 0, NULL, 1),
(8191, '', '0', '6380645053', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203210003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-21 11:51:12', 0, NULL, 0, NULL, 1),
(8192, 'Sheela', '4', '8870884923', '', 'diasheea1@gmail.com', '2000-04-02', 21, '2', '2', 'murugamal', 'nurse', 9000.00, 1, 0.00, 15000.00, 'thirupattur', 'Thirupattur', '2203210004', '1', '1', 'upload_files/candidate_tracker/2217060396_Resume20.pdf', NULL, '3', '2022-03-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'pursuing her mca. okay with any job but in bangalore. expt 15k, poor communication and convincing too. referred by her friend pavithra.', '1', '1', '', '', '', '', '1', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-21 12:03:26', 85, '2022-03-22 10:58:32', 0, NULL, 1),
(8193, 'laxmi priya', '13', '9790218732', '', 'laxmiraj0496@gmail.com', '1995-07-19', 26, '2', '2', 'kaamaraj', 'cloths business', 15000.00, 0, 204000.00, 400000.00, 'aruppukottai', 'chennai', '2203210005', '1', '2', 'upload_files/candidate_tracker/4928522930_Laxmipriya (1).docx', NULL, '3', '2022-03-22', 20, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'check for tech. 3yrs in same company and has 1.5yrs gap in between. looking for better offer. ctc 2.4l and expt 4L. only daughter and right now in wfh.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-21 12:03:33', 1, '2022-03-21 12:15:05', 0, NULL, 1),
(8194, 'Pavithra', '4', '6380465053', '', 'Pavithrakutty1210@gmail.com', '2000-07-16', 21, '2', '2', 'raghupathi', 'milk sale', 6000.00, 1, 0.00, 15000.00, 'vellore', 'vellore', '2203210006', '1', '1', 'upload_files/candidate_tracker/92145870815_pavi2.pdf', NULL, '3', '2022-03-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response from her', '1', '1', '', '', '', '', '1', '2022-03-23', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-21 12:27:25', 8, '2022-03-22 06:40:20', 0, NULL, 1),
(8195, 'Ilayarasan', '4', '6381084757', '', 'ilaysharp12@gmail.com', '2000-04-12', 21, '2', '2', 'Kavitha', 'Former', 5000.00, 1, 0.00, 15000.00, 'Tirupature', 'Tirupature', '2203210007', '1', '1', 'upload_files/candidate_tracker/17609170051_ILAYARASAN RESUME.pdf', NULL, '3', '2022-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-03-21 12:35:09', 1, '2022-03-21 12:40:07', 0, NULL, 1),
(8196, '', '0', '8925489027', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203210008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-21 01:02:17', 0, NULL, 0, NULL, 1),
(8197, 'Anusha', '4', '9003671417', '', 'anushaelumalai1994@gmail.com', '1994-09-19', 27, '2', '1', 'Vasantha', 'Cook', 150000.00, 1, 0.00, 17000.00, 'No.10 ,thendral nagar ,thirumullaivayol,ch 62', 'No 10,thendral nagar ,thirumullaivayol,ch 62', '2203210009', '1', '1', 'upload_files/candidate_tracker/55496612290_Anusha Resume.docx', NULL, '1', '2022-03-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-21 01:24:38', 1, '2022-03-22 04:58:07', 0, NULL, 1),
(8198, 'Maheswari', '17', '9750964289', '8489568067', 'Mahasiva8617019@gmail.com', '1998-12-23', 23, '1', '2', 'Sivakumar', 'Farmer', 300000.00, 0, 16000.00, 20000.00, 'Pandanallur', 'Chennai', '2203210010', '', '2', 'upload_files/candidate_tracker/7033516738_7129589721E768F4262E9A671B0DE712958972140322124849251_.pdf', NULL, '1', '2022-03-21', 0, 'Karthik', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1.5yr exp in hdb fin as caller with 9k, 7n in indus bank 16k. looking for team lead but no relevant exp. in insurance. will not suite for tl and sal expt is 20k. ', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-21 03:17:56', 1, '2022-03-21 03:42:08', 0, NULL, 1),
(8199, 'Karthick raja', '13', '9965231276', '8015114445', 'karthickraja3996@gmail.com', '1996-09-03', 25, '2', '2', 'Suyamprakasam', 'Farmer', 10000.00, 1, 0.00, 5000.00, 'thanjavur', 'Mogappair, Chennai', '2203210011', '1', '1', 'upload_files/candidate_tracker/90954305986_karthi resume.pdf', NULL, '1', '2022-03-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no basic knowledge in php, was doing xml epub in freelancing 10k, okay with training and placement but no basic idea.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-21 04:53:28', 1, '2022-03-21 04:59:29', 0, NULL, 1),
(8200, 'ARUNKUMAR THANGAVEL', '4', '7639663074', '', 'arunsiva44444@gmail.com', '1998-01-18', 24, '2', '2', 'THANGAVEL', 'Farmer', 70000.00, 0, 0.00, 13000.00, 'Kallakurichi', 'Kallakurichi', '2203210012', '1', '1', 'upload_files/candidate_tracker/10588221094_updated Resume new.PDF', NULL, '3', '2022-03-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-21 05:56:22', 1, '2022-03-21 06:07:08', 0, NULL, 1),
(8201, 'safeeq ahamed', '13', '9597466740', '9629000039', 'safeeqkasim@gmail.com', '1997-02-21', 25, '2', '2', 'mohamed kasim', 'nill', 20000.00, 2, 20000.00, 35000.00, 'thanjavur', 'thanjavur', '2203210013', '1', '2', 'upload_files/candidate_tracker/34222302196_Safeeq_Resume-2202-1.pdf', NULL, '3', '2022-03-22', 10, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'has 3yrs exp in same company and complete 1yr in core php. ctc 20k and expt 35k. current company is ready to offer 25k but he is looking for better offer. ', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-21 06:11:58', 1, '2022-03-21 06:17:56', 0, NULL, 1),
(8202, 'iswarya k', '4', '9514461804', '', 'Kiswarya73@gmail.com', '1996-06-05', 25, '2', '1', 'karuppaiah', 'meson', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2203220001', '2', '1', 'upload_files/candidate_tracker/94352854417_ishu resume 2021.docx', NULL, '1', '2022-03-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'everything is okay but long distance. she is from paalavakkam too long more than 1.30 hrs travel. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 09:49:15', 1, '2022-03-22 09:51:26', 0, NULL, 1),
(8203, 'Satheeshkumar M', '5', '8428932765', '', 'satheeshalan3@gmail.com', '2000-07-07', 21, '2', '2', 'D Marisamy', 'Former', 20000.00, 1, 0.00, 13000.00, 'Madurai', 'Tambaram', '2203220002', '1', '1', 'upload_files/candidate_tracker/32578988736_Satheeshkumar CV.pdf', NULL, '1', '2022-03-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, no sustainability. has complete core exp but 2m ,1m,6m and 3m. ', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-22 10:12:42', 1, '2022-03-22 10:16:06', 0, NULL, 1),
(8204, 'Mohamed Thanjeem', '4', '9487737435', '', 'thanjeemm@gmail.com', '1999-01-01', 23, '2', '2', 'Mohamed saleem', 'Unemployed', 1.20, 2, 0.00, 16000.00, 'Adambakkam', 'Adambakkam', '2203220003', '1', '1', 'upload_files/candidate_tracker/87930374254_THANJEEMEX.pdf', NULL, '1', '2022-03-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, not active and he is not okay with sales profile. need time to think about it. comm is okay. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-22 10:35:38', 1, '2022-03-22 10:40:15', 0, NULL, 1),
(8205, 'Jayakumari V', '16', '9789026615', '', 'jayakumarivelu1610@gmail.com', '1995-04-14', 26, '2', '2', 'Velu', 'None', 18000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2203220004', '1', '2', 'upload_files/candidate_tracker/21477494103_Jayakumariresume2021.pdf', NULL, '1', '2022-03-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-03-22 11:00:05', 1, '2022-03-22 11:17:06', 0, NULL, 1),
(8206, 'Lavanya', '4', '9790818119', '', 'lavanyaragu24@gmail.com', '1996-02-24', 26, '2', '1', 'Parthasarathi', 'Auto Driver', 15000.00, 0, 13500.00, 14500.00, 'Chennai', 'Triplicane', '2203220005', '1', '2', 'upload_files/candidate_tracker/28921348563_9962303801 quotation.docx', NULL, '1', '2022-03-22', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 1yr exp in calling and 1yr in admin. expt is 14k. in need of job but check with her attitude as we discussed. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-22 11:53:58', 85, '2022-03-22 12:55:00', 0, NULL, 1),
(8207, 'Arunkumar ND', '4', '6380809640', '9578705899', 'Ndarun3097@gmail.com', '1997-08-30', 24, '2', '2', 'Hari prasath D', 'Cheque collection offiver', 15000.00, 1, 10000.00, 17000.00, 'Kolathur, chennai', 'Kolathur, chennai', '2203220006', '1', '2', 'upload_files/candidate_tracker/72886913097_Arunkumar N D New Resume.docx', NULL, '1', '2022-03-23', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-22 12:30:48', 1, '2022-03-22 12:40:53', 0, NULL, 1),
(8208, 'Jasmine M', '4', '7397049879', '', 'jasminem7833@gmail.com', '1999-04-12', 22, '3', '2', 'Batchammal', 'House wife', 5000.00, 0, 0.00, 10000.00, 'VLoothoor', 'Valoothoor', '2203220007', '', '1', 'upload_files/candidate_tracker/95291178777_Share .docx', NULL, '1', '2022-03-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 12:55:54', 1, '2022-03-22 01:03:41', 0, NULL, 1),
(8209, 'Giriraja.M', '5', '8015118465', '9677928372', 'mgrgiri415@gmail.com', '2001-03-31', 20, '2', '2', 'Manivannan', 'Saree business', 20000.00, 1, 15000.00, 18000.00, 'Dindigul', 'Chennai', '2203220008', '1', '1', 'upload_files/candidate_tracker/39801174875_Giriraja resume.docx', NULL, '1', '2022-03-23', 0, '', '3', '59', '2022-03-26', 194496.00, '', NULL, '2024-09-25', '1', 'Selected for Babu Team in PT only', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1009', '', '', '', '1970-01-01', 1, '2022-03-22 04:03:58', 154, '2025-04-12 03:57:25', 0, NULL, 1),
(8210, 'Prabakaran', '4', '7871661014', '', 'antopraba1014@gmail.com', '1994-01-15', 28, '2', '2', 'raghu', 'steel work', 20000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2203220009', '2', '2', 'upload_files/candidate_tracker/19939384956_PRABA (RESUME)5.docx', NULL, '1', '2022-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 04:44:17', 1, '2022-03-22 04:46:38', 0, NULL, 1),
(8211, 'naveen n', '5', '6382040698', '', 'naveennagaraj98@gmail.com', '1998-11-10', 23, '2', '2', 'nagaraj', 'security', 10000.00, 1, 0.00, 14000.00, 'chennai', 'vadapalni', '2203220010', '2', '1', 'upload_files/candidate_tracker/14971850205_Naveennagaraj.pdf', NULL, '1', '2022-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 04:50:45', 1, '2022-03-22 04:53:34', 0, NULL, 1),
(8212, 'sam christopher', '4', '6379915612', '', 'davidpowerchris@gmail.com', '1995-11-29', 26, '2', '2', 'selvaraj', 'business painter', 10000.00, 1, 0.00, 10000.00, 'chennai', 'pallavaram', '2203220011', '2', '1', 'upload_files/candidate_tracker/72254185920_samchristoper.docx', NULL, '1', '2022-03-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 04:57:21', 1, '2022-03-22 05:03:51', 0, NULL, 1),
(8213, 'gayathri r', '4', '9842516520', '', 'gayukarthi2502@gmail.com', '2002-10-25', 19, '2', '2', 'ramasamy', 'driver', 10000.00, 1, 0.00, 10000.00, 'namakal', 'ekkatuthangal', '2203220012', '2', '1', 'upload_files/candidate_tracker/72421735611_GAYATHIRI.Resume-1.docx', NULL, '1', '2022-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 05:25:57', 1, '2022-03-22 05:27:29', 0, NULL, 1),
(8214, 'Dayana', '30', '8637682416', '', 'dayanarathinavel@gmail.com', '1997-07-12', 24, '2', '2', 'Rethinavel', 'Chennai', 14000.00, 1, 11000.00, 15000.00, 'Mannargudi', 'Chennai', '2203220013', '1', '1', 'upload_files/candidate_tracker/85451097570_RESUME- Dayana R.pdf', NULL, '1', '2022-03-26', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '9', '1', '', '1', '3', '', '1', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-22 05:47:50', 87, '2022-03-30 01:11:21', 0, NULL, 1),
(8215, 'Ramya P', '4', '7826033049', '', 'ramyasaran64866@gmail.com', '2000-04-18', 21, '2', '2', 'Perumal', 'Self', 8000.00, 2, 0.00, 17000.00, 'chennai', 'chennai', '2203220014', '1', '2', 'upload_files/candidate_tracker/4918432408_RESUME RAMYA(1).pdf', NULL, '2', '2022-03-23', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher form theni  will relocate to chennai. expt 10-12k. was selected in sriram but not joined. check with her sustainability once.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-22 06:46:02', 87, '2022-03-22 07:48:25', 0, NULL, 1),
(8216, 'abhinav', '6', '7358565397', '', 'abhinavnarasimhan64@gmail.com', '1990-09-05', 31, '2', '2', 'narasiman', 'engineer', 10000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2203220015', '2', '2', 'upload_files/candidate_tracker/34971768880_NEW RESUM ABHI-1.pdf', NULL, '1', '2022-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 08:01:54', 1, '2022-03-22 08:04:40', 0, NULL, 1),
(8217, 'manikandan', '4', '8949373903', '', 'manikandan90j@gmail.com', '1990-04-13', 31, '2', '2', 'jayaraman', 'retired', 15000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2203220016', '2', '1', 'upload_files/candidate_tracker/44648914991_WhatsApp Image 2022-03-21 at 6.27.53 PM (1).pdf', NULL, '1', '2022-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 08:16:01', 1, '2022-03-22 08:19:40', 0, NULL, 1),
(8218, 'Rakshika Santhoshi GV', '6', '8668081824', '', 'Rakshu3197.manju@gmail.com', '1997-01-31', 25, '3', '2', 'D v Manjula', 'Singer', 70000.00, 1, 20000.00, 25000.00, 'Vellore', 'Chennai', '2203230001', '', '2', 'upload_files/candidate_tracker/44325064350_provisional certificate BBA &Mba_1.pdf', NULL, '1', '2022-03-23', 0, '', '3', '59', '2022-03-24', 176844.00, '', '3', '2022-05-05', '2', 'Selected for RE Babu Team in Consultant 5 %', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Mail sent', '', '', '', NULL, NULL, NULL, 1, '2022-03-23 10:12:24', 60, '2022-03-24 12:03:16', 0, NULL, 1),
(8219, 'Padmapriya', '4', '9790091102', '', 'padthuma1619@gmail.com', '1997-04-19', 24, '2', '2', 'Venkateshwaran', 'working', 6000.00, 3, 8000.00, 12000.00, 'erode', 'Erode', '2203230002', '1', '2', 'upload_files/candidate_tracker/92471968328_Share Resume latest.docx', NULL, '2', '2022-03-23', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-23 10:16:21', 1, '2022-03-23 10:19:07', 0, NULL, 1),
(8220, 'Sriram', '2', '9095752752', '', 'srirammani14@gmail.com', '2000-03-14', 22, '2', '2', 'Manikandan', 'Business', 30000.00, 1, 300000.00, 450000.00, 'Aranthangi', 'Chennai', '2203230003', '1', '2', 'upload_files/candidate_tracker/84876327407_SRIRAM M Resume.pdf', NULL, '2', '2022-03-24', 10, '', '2', '8', NULL, 0.00, '', '0', NULL, '2', 'has to check with his payslip. 10m exp in react and expt 4L. looking job in mern.', '2', '2', '0', '1', '1', '0', '2', '2022-03-25', '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-23 10:52:31', 1, '2022-03-23 11:05:22', 0, NULL, 1),
(8221, 'J Rajaram', '4', '8973326329', '8754681936', 'Rajaram9750@gmail.com', '1994-09-17', 27, '2', '2', 'N Jayakumar', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'udaiyar street,melathukurichi,thanjavur. 612501', 'Udaiyar Street,Melathukurichi,Thanjavur. 612501', '2203230004', '1', '1', 'upload_files/candidate_tracker/65456267950_imgtopdf_2303221104037.pdf', NULL, '1', '2022-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropeed.Received a call on Sunday(28-Mar) candidate informed that he is not going to join due to the location constraint and not much comfort with target based work', '1', '1', '0', '4', '5', '0', '2', '2022-03-28', '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-23 12:47:47', 1, '2022-03-23 12:57:51', 0, NULL, 1),
(8222, 'Abdul Razak A', '5', '6383428284', '7358680374', 'abdulrazakdjamk20@gmail.com', '2000-02-12', 22, '2', '1', 'Anwar khan M', 'Tailor', 22000.00, 1, 21100.00, 27000.00, 'Chennai Mr nagar', 'Chennai MR nagar', '2203230005', '1', '2', 'upload_files/candidate_tracker/63056189450_Abdul%20razak%20resume%20new_Abdul%20Razak.%20A%20new2.docx', NULL, '1', '2022-03-23', 0, '', '3', '59', '2022-03-29', 278500.00, '', '4', '2022-04-27', '1', 'Selected for Pandian Team with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-23 01:45:23', 60, '2022-03-25 03:45:08', 0, NULL, 1),
(8223, 'Sreenuvaasan s', '16', '9962752952', '9445242651', 'svaasan131@gmail.com', '1999-10-05', 22, '2', '2', 'Saridha', 'Home maker', 10000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2203230006', '1', '1', 'upload_files/candidate_tracker/9962049256_Sreenuvasan_Resume 17.pdf.pdf', NULL, '1', '2022-03-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for calling and backend too. was a promoter in avt part time.', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-23 01:46:48', 1, '2022-03-23 01:58:57', 0, NULL, 1),
(8224, 'N T Srivathsan', '4', '9342310061', '8825648573', 'srivathsan29oct@gmail.com', '1997-10-29', 24, '2', '2', 'N Thiruvenkatachari', 'Senior Executive', 35000.00, 0, 0.00, 13000.00, 'Ambttur', 'Ambattur', '2203230007', '1', '1', 'upload_files/candidate_tracker/86323231862_S_Resume.docx (1).pdf', NULL, '1', '2022-03-24', 0, '', '1', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-23 02:28:18', 85, '2022-03-25 10:31:21', 0, NULL, 1),
(8225, 'Kavin Raj', '4', '8778283411', '', 'Kavinraj2739@email.com', '2001-03-31', 20, '2', '2', 'Bangajam', 'Agriculture', 10000.00, 0, 0.00, 10000.00, 'erode', 'erode', '2203230008', '1', '1', 'upload_files/candidate_tracker/53827281789_Kavinraj cv.pdf', NULL, '3', '2022-03-24', 0, '', '3', '59', '2022-04-06', 126312.00, '', '', '2022-05-06', '1', 'Selected for Erode Location in consultant role', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-23 04:21:28', 60, '2022-04-06 05:17:00', 0, NULL, 1),
(8226, '', '0', '8072141191', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203240001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-24 10:17:00', 0, NULL, 0, NULL, 1),
(8227, 'elizharasi', '4', '9384481557', '', 'ezhil.rkb@gmail.com', '1997-06-24', 24, '2', '1', 'ravi', 'painter', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2203240002', '2', '1', 'upload_files/candidate_tracker/29957447871_Ezhil Rajiv.docx', NULL, '1', '2022-03-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not work for long term and long distance too.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-24 10:54:33', 1, '2022-03-24 10:56:14', 0, NULL, 1),
(8228, 'B AJAY AROKKIYARAJ', '4', '9994526776', '', 'ajayarokkiyaraj.96@gmail.com', '1996-06-15', 25, '2', '2', 'R K BABU', 'Salex Executive', 15000.00, 1, 0.00, 10000.00, 'Erode', 'Erode', '2203240003', '1', '1', 'upload_files/candidate_tracker/77120484904_1606115802890_ajjay resume M.Sc(CS) (1).docx.pdf', NULL, '3', '2022-03-25', 0, '', '3', '59', '2022-04-06', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Erode - Consultant Role', '1', '1', '', '4', '7', '', '2', '2022-03-30', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-24 03:55:40', 60, '2022-04-01 05:28:57', 0, NULL, 1),
(8229, 'Kalaivani.m', '4', '9042999581', '8778702190', 'kalaim2711@gmail.com', '1999-08-16', 22, '2', '1', 'Mohan', 'Bank employe', 15000.00, 2, 0.00, 15000.00, 'Erode', 'Erode', '2203240004', '1', '1', 'upload_files/candidate_tracker/33529516002_resume_kalaivani 27.docx', NULL, '3', '2022-03-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-24 04:00:30', 85, '2022-03-26 10:57:52', 0, NULL, 1),
(8230, 'Nikhilesh G N', '5', '9789752420', '', 'niki09.Nn@gmail.com', '1992-08-29', 29, '2', '1', 'Vanitha', 'Analyst', 60000.00, 2, 450000.00, 720000.00, 'Chennai', 'Chennai', '2203240005', '1', '2', 'upload_files/candidate_tracker/3509836209_Niki_Resume.pdf', NULL, '1', '2022-03-24', 60, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'comm and convincing is fine but no sales exp. 60days notice and getting 40k expt 30%. wife is also working.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-24 04:29:57', 1, '2022-03-24 04:33:38', 0, NULL, 1),
(8231, 'ranjith kumar', '4', '7358980904', '', 'ranjithkumar97@gmail.com', '1996-04-26', 25, '2', '2', 'selvaraj t', 'officer', 50000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2203240006', '1', '1', 'upload_files/candidate_tracker/92384882326_Resume1.docx', NULL, '2', '2022-04-21', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not active person so not suitable for tele sales', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-24 04:55:00', 60, '2022-04-21 07:18:31', 0, NULL, 1),
(8232, 'Kalaiyarasan Kannaiya', '4', '7708688356', '6382318733', 'sinkalai2501@gmail.com', '2001-05-02', 20, '2', '2', 'Kannaiya', 'Welder', 10000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2203240007', '1', '1', 'upload_files/candidate_tracker/64332166396_kalai resume 1 - Copy.docx', NULL, '3', '2022-03-26', 0, '', '3', '59', '2022-04-06', 126312.00, '', '4', '2022-12-01', '2', 'Selected for Erode - Consultant Role', '1', '2', '', '4', '7', '', '2', '2022-03-30', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-24 05:04:54', 60, '2022-04-01 05:29:47', 0, NULL, 1),
(8233, 'SANGEETHA', '4', '8754760383', '9787001135', 'sangeetha1862001@gmail.com', '2001-06-18', 20, '2', '2', 'RAJENDRAN', 'Daily wages', 100000.00, 3, 0.00, 15000.00, 'Chennai', 'Kundrathur', '2203240008', '1', '1', 'upload_files/candidate_tracker/81665534929_software engineering.pdf', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '	pursuing degree has exam in june and yet to complete projects. will not suite for calling.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-24 07:00:04', 1, '2022-03-24 07:13:45', 0, NULL, 1),
(8234, 'Rajeswari', '13', '9384122595', '', 'rajeswari281199@gmail.com', '1999-11-28', 22, '2', '2', 'Gurunathan', 'Process serveror in court', 27000.00, 2, 0.00, 15000.00, 'TIRUNELVELI', 'TIRUNELVELI', '2203240009', '1', '1', 'upload_files/candidate_tracker/84572765210_Resume.pdf', NULL, '2', '2022-03-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'couldnt do sys task', '2', '1', '0', '1', '1', '0', '2', '2022-04-04', '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-24 08:03:53', 1, '2022-03-24 08:06:39', 0, NULL, 1),
(8235, 'Kokilavani. N', '4', '9361356386', '9095061046', 'kokilavaninallasamy@gmail.com', '2001-10-10', 20, '2', '1', 'Sudhakar. K', 'Civil Engineering', 14000.00, 1, 0.00, 12000.00, 'Kanjikovil', 'Kanjikovil', '2203240010', '1', '1', 'upload_files/candidate_tracker/36324976876_Kokila resume-1.pdf', NULL, '3', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, after degree she got married and has 1m baby. will not sustain and asking for wfh.', '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-24 08:15:11', 1, '2022-03-26 08:50:14', 0, NULL, 1),
(8236, 'VEERAPPAN T', '14', '6379773878', '', 'veerappansubash@gmail.com', '2000-05-30', 21, '2', '2', 'B. E', 'Student', 180000.00, 3, 0.00, 10000.00, 'Poonamallee', 'Poonamallee', '2203240011', '1', '1', 'upload_files/candidate_tracker/15032453735_VEERAPPAN T (1).pdf', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', '	pursuing degree has exam in june and yet to complete projects. will not suite for calling.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-24 08:18:26', 1, '2022-03-24 08:22:38', 0, NULL, 1),
(8237, 'JEYARATHNA', '4', '9384573031', '9952583031', 'JEYARATHNAb@Gmail.Com', '2001-05-14', 20, '2', '1', 'Basker', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Thoothukudi', '2203250001', '1', '1', 'upload_files/candidate_tracker/28035805679_RESUME.pdf', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '	pursuing degree has exam in june and yet to complete projects. will not suite for calling.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-25 09:06:06', 1, '2022-03-26 10:24:28', 0, NULL, 1),
(8238, 'Vinoth Kumar', '5', '9952036413', '9789741518', 'Vinothkumarraveen@gmail.com', '1987-07-05', 34, '2', '2', 'Amudhavalli', 'Retired', 25000.00, 0, 12000.00, 17000.00, 'Ramapuram', 'Ramapuram', '2203250002', '1', '2', 'upload_files/candidate_tracker/37856983934_RESUME VINOTH KUMAR.docx', NULL, '1', '2022-03-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for MIS and op. no excel knowledge and knows only kyc and data entry will not suite. was getting 12k and expt 17k. reason for reliving is no hike. ', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-25 09:48:20', 1, '2022-03-25 09:55:18', 0, NULL, 1),
(8239, 'Lakshmipriya', '4', '9952050450', '', 'jagapriya89@gmail.com', '1995-11-26', 26, '2', '1', 'Jagadeesh', 'Self Business', 200000.00, 1, 18000.00, 20000.00, '68/56 anthanar street,vishar village, kanchipuram', 'Thambaram', '2203250003', '1', '2', 'upload_files/candidate_tracker/2997426533_LAKSMIPRIYA RESUME (1).docx', NULL, '1', '2022-03-25', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '1', '2', '0', '1', '1', '0', '2', '2022-03-26', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-25 10:23:35', 1, '2022-03-25 10:32:17', 0, NULL, 1),
(8240, 'Jagadeesh', '4', '9600616956', '9952704501', 'jagadeesh92jaga@gmail.com', '1992-08-14', 29, '2', '1', 'Arumugam', 'Farmer', 100000.00, 1, 130000.00, 25000.00, 'Kanchipuram', 'Tambaram', '2203250004', '1', '2', 'upload_files/candidate_tracker/85459059862_1648184491920_1648184485223_1648184415670_1648184411762_jagadeesh  RESUME.docx', NULL, '1', '2022-03-25', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process. has complete exp as site engg in singapore and planning to settle in canada. came along with his wife for interview. expt 25k. comm is manageable. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-25 10:23:45', 1, '2022-03-25 10:32:30', 0, NULL, 1),
(8241, '', '0', '9500665452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203250005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-25 10:31:27', 0, NULL, 0, NULL, 1),
(8242, 'Jothika.M', '4', '7558117252', '8675042485', 'jothikakpt@gmail.com', '1998-04-07', 23, '2', '2', 'Murugan.S', 'Agriculture', 20000.00, 1, 15000.00, 15000.00, 'Salem', 'Salem', '2203250006', '1', '2', 'upload_files/candidate_tracker/75415246531_JOTHIKA_RESUME (1)-1_JOTHIKA M.docx', NULL, '2', '2022-03-25', 0, '', '3', '59', '2022-04-06', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Erode - Consultant Role', '1', '1', '', '1', '1', '', '2', '2022-03-31', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-25 10:35:49', 60, '2022-04-01 05:33:04', 0, NULL, 1),
(8243, 'C anand', '26', '9092646474', '9382992999', 'anandc.eswaran@gmail.com', '1990-03-03', 32, '2', '2', 'S Chandran', 'Business', 20000.00, 0, 18000.00, 25000.00, '35/17 pallappan street triplicane Chennai 5', '35/17 Pallappan Street Triplicane Chennai', '2203250007', '1', '2', 'upload_files/candidate_tracker/25253437630_Anand Resume.docx', NULL, '1', '2022-03-25', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for mis, poor comm and no skills, expt is 20k. was doing biz with his uncle so will not sustain for us.', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1000', '', NULL, NULL, NULL, 1, '2022-03-25 11:27:17', 7, '2022-03-25 11:54:03', 0, NULL, 1),
(8244, 'NancY', '4', '6380276764', '', 'nancmaryj1998@gmail.com', '1998-03-26', 24, '2', '2', 'Jayaraj', 'Textiles processing', 0.00, 1, 0.00, 0.00, 'salem', 'salem', '2203250008', '1', '1', 'upload_files/candidate_tracker/96043173724_nancyresume1.pdf', NULL, '2', '2022-04-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '1', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-25 11:29:26', 85, '2022-04-04 11:53:52', 0, NULL, 1),
(8245, 'Keerthana', '4', '9443355627', '9080984652', 'keerthuprabakar@gmail.com', '1998-04-20', 23, '2', '2', 'Prabakar M', 'Clerk', 18000.00, 1, 15000.00, 15000.00, 'Appakudal', 'Appakudal', '2203250009', '1', '2', 'upload_files/candidate_tracker/92482842977_Keerthana Resume.pdf', NULL, '3', '2022-03-26', 0, '', '3', '59', '2022-04-06', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Consultant Role - Erode', '1', '1', '', '4', '7', '', '2', '2022-03-31', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-25 11:33:44', 60, '2022-04-01 05:31:03', 0, NULL, 1),
(8246, 'Surya K', '13', '8072122594', '', 'ayrus4444@gmail.com', '2000-10-10', 21, '2', '2', 'KANNUSAMY C', 'Sequrity', 12000.00, 0, 15000.00, 18000.00, 'Chennai', 'Chennai', '2203250010', '1', '2', 'upload_files/candidate_tracker/8114731161_surya+k+(8).pdf', NULL, '1', '2022-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Long Distance and not comfortable with the timings\n', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-25 11:44:47', 1, '2022-03-25 03:57:29', 0, NULL, 1),
(8247, 'Divya', '13', '8524033351', '', 'diviammu2097@gmail.com', '2007-03-25', 0, '2', '2', 'aa', 'q', 20000.00, 1, 300000.00, 550000.00, 'chennai', 'thiruvanamalai', '2203250011', '1', '2', 'upload_files/candidate_tracker/83807999514_Divya.pdf', NULL, '2', '2022-03-26', 60, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'overall 3yrs exp 1yr in core php 2yrs in laravel, worked in 3 companies, ctc 3L and expt 5.5L, 60 days notice. check with sathish once', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-25 11:50:25', 84, '2022-03-30 06:05:29', 0, NULL, 1),
(8248, 'Joy Jenipher M', '2', '8610655191', '', 'joyjeni02091999@gmail.com', '1999-09-02', 22, '2', '2', 'Jayanthi Martin M', 'BE', 90000.00, 1, 0.00, 15000.00, 'Chidambaram', 'Velachery', '2203250012', '1', '1', 'upload_files/candidate_tracker/75693776001_JENIPHER RESUME.doc', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '	pursuing degree has exam in june and yet to complete projects okay with her calling skills.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-25 02:35:54', 1, '2022-03-26 10:13:58', 0, NULL, 1),
(8249, '', '0', '9600335004', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203250013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-25 04:24:43', 0, NULL, 0, NULL, 1),
(8250, 'Nitheswar D', '4', '9629815258', '', 'nitheshdevaraj@gmail.com', '2000-10-02', 21, '2', '2', 'Devaraj D', 'Building contractor', 400000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2203250014', '1', '1', 'upload_files/candidate_tracker/90827631419_resume nithi-converted.pdf', NULL, '3', '2022-03-26', 0, '', '3', '59', '2022-05-16', 138948.00, '', '3', '2022-11-01', '2', 'Selected for Muthu Team - Consultant Role', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-25 04:45:05', 60, '2022-05-11 07:01:31', 0, NULL, 1),
(8251, '', '0', '9597115078', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203250015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-25 05:25:20', 0, NULL, 0, NULL, 1),
(8252, 'Dipaksounder', '4', '9159723856', '9524830456', 'Dipaksounderb@gmail.com', '2000-04-07', 21, '2', '2', 'K.balraj', 'rtd Deputycollector', 3200000.00, 1, 0.00, 2000000.00, 'Coimbatore', 'coimbatore', '2203250016', '1', '1', 'upload_files/candidate_tracker/21180842822_Dipak resume-converted(1).pdf', NULL, '2', '2022-03-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling, not speaking up. father dept. collector, mom hw, sis working in amazon.', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-25 05:57:08', 85, '2022-03-26 09:28:56', 0, NULL, 1),
(8253, 'sowmiya', '4', '6380161323', '', 'sowmiaeswaran@gmail.com', '1999-12-16', 22, '2', '2', 'v.a.Parameswaran', 'farmer', 15000.00, 0, 0.00, 15000.00, 'Sathyamangalam', 'sathyamangalam', '2203250017', '1', '1', 'upload_files/candidate_tracker/13981655014_sowmiya.docx', NULL, '3', '2022-03-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-25 06:08:34', 85, '2022-03-31 09:49:58', 0, NULL, 1),
(8254, 'lavanyagovindhan', '4', '9500620232', '6384224492', 'lavanyagovindhanbio@gmail.com', '1998-07-26', 23, '2', '2', 'Govindhan.E, Seetha.G', 'daily worker', 25000.00, 3, 15000.00, 20000.00, 'Cuddalore ,panruti', 'chennai, vadapalani', '2203250018', '1', '2', 'upload_files/candidate_tracker/74061517702_Lavanya+Govindhan resume (1).pdf', NULL, '1', '2022-03-26', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'was working in ecg lab 6m, then 1yr in hdb collection, 15k th and expt 20k, not negotiable, avg communication and has 30 days notice.  ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-25 06:19:11', 1, '2022-03-25 07:18:15', 0, NULL, 1),
(8255, 'kishore', '13', '7639285838', '', 'shivakishire97@gmail.com', '1997-08-18', 24, '2', '2', 'natarajan', 'farmer', 20000.00, 0, 10000.00, 30000.00, 'kallakurichi', 'chennai', '2203250019', '1', '2', 'upload_files/candidate_tracker/12256067174_kishorepdf.pdf', NULL, '2', '2022-03-26', 25, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-25 10:09:31', 1, '2022-03-25 10:14:07', 0, NULL, 1),
(8256, 'Kiruthika K', '4', '8122987792', '', 'kiruthikak858@gmail.com', '2000-12-10', 21, '2', '2', 'Mr.Kamaraj', 'Farmer', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2203260001', '1', '1', 'upload_files/candidate_tracker/46989439219_61e180e354e72_Ather_CRAZE-A-THON_-_JD_for_Software_Developer__1_ (1).pdf', NULL, '2', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'pursuing degree has exam in june and yet to complete projects.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-26 10:08:56', 1, '2022-03-26 10:14:22', 0, NULL, 1),
(8257, 'Bunga Pavan', '2', '8608140617', '7989041789', 'pavanbungaece@gmail.com', '2001-06-29', 20, '2', '2', 'B . Chengaiah', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Kolathur', 'Kolathur', '2203260002', '1', '1', 'upload_files/candidate_tracker/51523410380_Bunga\'s Resume (1).pdf', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'pursuing degree has exam in june and yet to complete projects.\nwill not suite for calling.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-26 10:09:02', 1, '2022-03-26 10:16:30', 0, NULL, 1),
(8258, 'Meena kumari', '4', '7871392542', '9865782051', 'meena19092001@gmail.com', '2001-09-19', 20, '2', '2', 'Eswara muthu', 'Daily wages', 6000.00, 2, 0.00, 17000.00, 'Chennai', 'Thoothukudi', '2203260003', '1', '1', 'upload_files/candidate_tracker/36747157694_meena-Resume-converted.pdf', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'pursuing degree has exam in june and yet to complete projects.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-26 10:11:11', 1, '2022-03-26 10:28:21', 0, NULL, 1),
(8259, 'Kalai vanan', '13', '6382782394', '', 'Malairajkalai98@gmail.com', '1998-12-08', 23, '2', '2', 'Malairaj', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Ramanathapuram', 'Ramanathpuram', '2203260004', '1', '1', 'upload_files/candidate_tracker/53065967242_KALAI (1).pdf', NULL, '2', '2022-03-26', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'for tech. fresher and he is okay with company norms.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-26 10:29:52', 1, '2022-03-26 10:54:31', 0, NULL, 1),
(8260, 'E koushik ram', '4', '7010949343', '6381480050', 'ram260494@gmail.com', '1994-04-26', 27, '2', '2', 'Eagappan', 'Hotel manager', 200000.00, 1, 30000.00, 15000.00, 'Chennai', 'Chennai', '2203260005', '1', '2', 'upload_files/candidate_tracker/33085402987_koushi (1).doc', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'was into cini field. runs grocery shop. will not suite for rm. expt 25-30k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-26 10:55:54', 1, '2022-03-26 11:00:04', 0, NULL, 1),
(8261, 'vignesh', '5', '7358010026', '', 'vignesh.g146@gmail.com', '1989-06-14', 32, '2', '2', 'ganesan', 'buisness', 50000.00, 1, 280000.00, 400000.00, 'chennai', 'chennai', '2203260006', '1', '2', 'upload_files/candidate_tracker/95655731737_Vignesh -2022 resume.doc', NULL, '2', '2022-03-26', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'he is not interested in li. for GI no expt exp. sal expt is high so will not suite for re', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-26 11:01:11', 1, '2022-03-26 11:06:41', 0, NULL, 1),
(8262, 'Dhanraj', '5', '7010776286', '9629241516', 'dhanraj3663@gmail.com', '1998-07-09', 23, '2', '2', 'NATARAJAN', 'Self Employed', 10000.00, 1, 18500.00, 19000.00, 'Namakkal', 'Namakkal', '2203260007', '1', '2', 'upload_files/candidate_tracker/63201935187_DHANRAJRESUME1.docx', NULL, '2', '2022-03-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not come chennai for next round.', '5', '1', '', '', '', '', '1', '2022-04-04', '3', '1', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-26 11:03:19', 84, '2022-03-26 11:38:39', 0, NULL, 1),
(8263, 'Sumalatha', '16', '9841695618', '9841095618', 'Pandiansumalatha4@gmail.com', '1993-06-15', 28, '2', '1', 'Karthik', 'Logistics', 30000.00, 1, 10000.00, 18000.00, 'Virugambakkam', 'Virugambakkam', '2203260008', '1', '2', 'upload_files/candidate_tracker/76054764967_latha.docx', NULL, '1', '2022-03-26', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'was working in cafs 2yrs and relived due to personal reasons. will suite for b2b. check with her sustainability once.', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2022-03-26 11:29:23', 1, '2022-03-26 11:33:51', 0, NULL, 1),
(8264, 'Udaykumar', '5', '8309921558', '', 'udaykumar.patnani@gmail.com', '1994-04-11', 27, '2', '1', 'Mahitha', 'Home maker', 0.00, 0, 0.00, 30000.00, 'Vizag', 'Chennai', '2203260009', '1', '2', 'upload_files/candidate_tracker/48242156336_P. UDAY KUMAR CV-converted-converted-1.pdf', NULL, '1', '2022-03-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'RNR', '5', '1', '', '1', '1', '', '2', '2022-04-22', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-26 11:47:15', 60, '2022-04-18 05:05:48', 0, NULL, 1),
(8265, 'sowmia', '4', '8807575012', '', 'liyaraj75@gmail.com', '1999-08-22', 22, '2', '2', 'raj', 'Engineer', 500000.00, 2, 15000.00, 15000.00, 'erode', 'Erode', '2203260010', '1', '2', 'upload_files/candidate_tracker/83141508904_SowmiyaRaj.pdf', NULL, '2', '2022-03-26', 0, '', '1', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '1', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-26 11:52:10', 85, '2022-03-26 12:32:24', 0, NULL, 1),
(8266, 'Raaghul.M', '6', '7502348338', '', 'raaghul619@gmail.com', '2000-10-26', 21, '2', '2', 'Matheswaran', 'Gang muzdor', 20000.00, 1, 0.00, 15.00, 'Lakshmi Nagar, bhavani, erode dt', 'Lakshmi Nagar, bhavani, erode dt', '2203260011', '1', '1', 'upload_files/candidate_tracker/47353464637_Raaghul resume.docx', NULL, '2', '2022-03-26', 0, '', '3', '59', '2022-04-11', 180000.00, '', '3', '2023-02-04', '1', 'Selected for Suthagar Team Erode Location', '5', '2', '1', '4', '7', '', '2', '2022-04-04', '3', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-26 12:36:05', 60, '2022-04-09 05:50:31', 0, NULL, 1),
(8267, 'Ramkumar', '4', '8667547495', '8508000122', 'nsking0910@gmail.com', '2000-09-02', 21, '2', '2', 'Thangaraj', 'Hotel', 20000.00, 1, 0.00, 15.00, 'Surampatti valasu', 'Surampatti valasu', '2203260012', '1', '1', 'upload_files/candidate_tracker/53248524795_ramkumar resume.pdf', NULL, '3', '2022-03-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '7', '', '1', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-26 12:53:14', 87, '2022-03-30 01:10:45', 0, NULL, 1),
(8268, 'Surya.m', '4', '8838623940', '8940386351', 'ssmartsurya7@gmail.com', '1999-06-11', 22, '2', '2', 'V.Murugesan', 'Daily wages', 16000.00, 2, 20000.00, 16000.00, '24 Thasildhar Thottam vairapalayam', '24 Thasildhar Thottam Vairapalayam', '2203260013', '1', '2', 'upload_files/candidate_tracker/20813495631_SURYA RESUME.docx', NULL, '3', '2022-03-28', 0, '', '1', '8', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-26 04:17:18', 1, '2022-03-26 04:24:02', 0, NULL, 1),
(8269, 'Bhuvaneswari', '4', '9488559863', '7010526899', 'sonanagendiran111@gmail.com', '1999-06-15', 22, '2', '2', 'Anjalai', 'Tea worker', 12000.00, 5, 0.00, 15000.00, 'Coimbatore', 'Valparai', '2203260014', '1', '1', 'upload_files/candidate_tracker/30588080751_CV_2021-08-06-095230.pdf', NULL, '3', '2022-03-28', 0, '', '1', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-26 05:30:39', 85, '2022-03-28 09:52:21', 0, NULL, 1),
(8270, '', '0', '9385778720', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-27 09:08:05', 0, NULL, 0, NULL, 1),
(8271, '', '0', '9566240259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203270002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-27 10:00:32', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8272, '', '0', '6382172751', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-28 11:34:37', 0, NULL, 0, NULL, 1),
(8273, 'S.porselvi', '4', '7094366133', '9843335248', 'sporselvi778@gmail.com', '1996-09-01', 25, '3', '2', 'N.suresh', 'Former', 10000.00, 1, 10000.00, 10000.00, 'Thanjavur', 'Thanjavur', '2203280002', '', '2', 'upload_files/candidate_tracker/56575425263_Resume.pdf', NULL, '1', '2022-03-28', 30, '', '3', '59', '2022-04-01', 138948.00, '', '3', '2022-05-05', '2', 'Selected for Consultant role in Thanjavur location', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-28 12:03:57', 60, '2022-04-01 12:07:49', 0, NULL, 1),
(8274, 'Sasidharan ad', '13', '9790719961', '9941605881', 'sasidharan2811993@gmail.com', '1998-05-21', 23, '2', '2', 'Dillibabu R', 'Self', 30000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2203280003', '1', '1', 'upload_files/candidate_tracker/93463471746_sasidharan resume.pdf', NULL, '1', '2022-03-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-28 12:21:34', 1, '2022-03-28 12:25:40', 0, NULL, 1),
(8275, 'G RANJITH', '5', '9940681085', '8637628257', 'ranjithash33@gmail.com', '1998-07-03', 23, '2', '2', 'S. Gopalsamy', 'Hair stylist', 30000.00, 1, 0.00, 23000.00, 'Chennai', 'Chennai', '2203280004', '14', '2', 'upload_files/candidate_tracker/74928412576_Resume_28_03_2022_12_01_33_PM.pdf', NULL, '1', '2022-03-28', 0, '', '3', '59', '2022-04-04', 273696.00, '', '5', '1970-01-01', '1', 'Selected for GK sir Team,, Gaurav Sir Committed with the task 1.5 L per month if completes then 3 LPA will be fixed as a salary', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-28 01:23:18', 60, '2022-04-01 05:37:08', 0, NULL, 1),
(8276, 'Subaranjani p', '4', '9344290745', '7339597533', 'Subaranjanip2001@gmail.com', '2001-04-23', 20, '2', '2', 'Palanisamy', 'Graduate', 20000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2203280005', '1', '1', 'upload_files/candidate_tracker/18807979786_Subaranjani_ Resume (2) (1).docx', NULL, '2', '2022-03-29', 0, '', '1', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-28 01:23:37', 7, '2022-03-29 03:08:43', 0, NULL, 1),
(8277, 'M.mohamed ajmal thagseen', '21', '8695169300', '', 'ajmalthagseen.786@gmail.com', '2000-04-16', 21, '2', '2', 'M.mohamed ibrahim', 'Labour', 300000.00, 1, 15000.00, 16000.00, 'Erode', 'Erode', '2203280006', '1', '2', 'upload_files/candidate_tracker/97896888907_ajmal resume new pdf_edited.pdf', NULL, '2', '2022-03-29', 15, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-28 01:39:58', 85, '2022-04-04 06:45:42', 0, NULL, 1),
(8278, 'M.mohamed ajmal thagseen', '4', '9092535991', '8695169300', 'ajmalthagseen.786@gmail.com', '2000-04-16', 21, '2', '2', 'M.mohamed ibrahim', 'Labour', 300000.00, 1, 0.00, 16000.00, 'Erode', 'Erode', '2203280007', '1', '2', 'upload_files/candidate_tracker/69268681021_ajmal resume new pdf_edited.pdf', NULL, '3', '2022-03-28', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate much focus for non voice process, also he is dragging his joining', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-28 02:50:03', 60, '2022-04-04 07:25:36', 0, NULL, 1),
(8279, 'Vimalraj R', '6', '9080798933', '', 'rameshvimal314@gmail.com', '1999-12-21', 22, '2', '2', 'Ramesh', 'Salesman', 12000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2203280008', '1', '1', 'upload_files/candidate_tracker/1197762825_vimal raj (1).pdf', NULL, '1', '2022-05-17', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate okay but need to check job important and sustainability ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-28 04:30:16', 60, '2022-05-17 03:44:53', 88, '2022-09-13 05:50:48', 0),
(8280, '', '0', '8939616360', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203280009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-28 04:41:39', 0, NULL, 0, NULL, 1),
(8281, 'Saleem.A', '6', '9345343296', '7448950773', 'Saleemsparrow123@gmail.com', '1999-07-20', 22, '2', '2', 'Abdullah', 'Esguard', 10000.00, 0, 18000.00, 20000.00, 'Anakaputhur', 'Anakaputhur', '2203280010', '1', '2', 'upload_files/candidate_tracker/73663015631__STARDM_premiadms_export6_DMS_FRM_FEB_2021_From_FTP_622021_80713006_SCHEDULE-1.PDF', NULL, '1', '2022-03-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Bad Attitude, Focus only on the salary, Seems very Arrogant, will not sustain for a long in sales,No proper relieving from previous organizations. Not comfortable to come back after sales calls. Not Suitable for our roles', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-28 04:51:30', 60, '2022-03-29 10:45:44', 0, NULL, 1),
(8282, 'V.priya', '4', '8973597124', '8438598798', 'priyamythili2000@gmail.com', '2000-04-16', 21, '2', '2', 'Vaithiyalingam', 'Construction site', 8000.00, 1, 0.00, 10000.00, 'Erode', 'Erode', '2203280011', '1', '1', 'upload_files/candidate_tracker/4243290315_PRIYA-Resume.pdf', NULL, '3', '2022-03-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-28 06:26:07', 85, '2022-03-29 10:33:28', 0, NULL, 1),
(8283, 'v.priya', '4', '8438598798', '8973597124', 'priyamythili2000@gmail.com', '2000-04-16', 21, '2', '2', 'Vaithiyalingam', 'Construction work', 8000.00, 1, 0.00, 11000.00, 'Erode', 'Erode', '2203280012', '1', '1', 'upload_files/candidate_tracker/15995903755_PRIYA-Resume.pdf', NULL, '3', '2022-03-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-28 08:31:19', 1, '2022-03-28 09:10:34', 0, NULL, 1),
(8284, 's arulprakash', '5', '9566087463', '', 'arulprakash89@yahoo.co.in', '1989-02-19', 33, '2', '1', 'k vanitha', 'relationship manager', 33000.00, 1, 33000.00, 42000.00, 'chennai', 'chennai', '2203280013', '1', '2', 'upload_files/candidate_tracker/86445167817_Component 2 – 1.pdf', NULL, '1', '2022-03-29', 0, '', '2', '8', NULL, 0.00, '', '0', NULL, '1', 'has off roll exp in GI not int o sales. has 6m and 7m exp in life ins. into agency channel. will not suite for RM profile. bcoz he is not comfortable with cold calling and looking for same agency channel. expt 5l.', '5', '2', '0', '1', '1', '0', '2', '2022-04-04', '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-28 08:48:28', 1, '2022-03-29 11:54:02', 0, NULL, 1),
(8285, 'Rajkumar', '4', '8190009889', '', 'rajkumarcoolbilla1997@gmail.com', '1997-12-24', 24, '2', '2', 'Kumaresan', 'B.com', 400000.00, 1, 0.00, 16000.00, 'Pondicherry', 'Pondicherry', '2203290001', '1', '1', 'upload_files/candidate_tracker/21692600880_Raj Resume (1).pdf', NULL, '3', '2022-03-29', 0, '', '1', '8', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-29 09:48:43', 1, '2022-03-29 09:58:43', 0, NULL, 1),
(8286, 'antony sijo', '6', '8248845682', '', 'antonysijo210@gmail.com', '2000-10-01', 21, '2', '2', 'Antony Thason.S', 'fishermen', 25000.00, 1, 0.00, 12000.00, 'kanyakumari', 'Chennai', '2203290002', '1', '1', 'upload_files/candidate_tracker/7924482349_Sijo Resum.docx', NULL, '2', '2022-04-06', 0, '', '3', '59', '2022-04-18', 151584.00, '', '5', '1970-01-01', '2', 'Selected for Guru Team in consultant role ,but candidate seems to be doubtful,if joins let see', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-29 10:17:08', 60, '2022-04-16 12:54:01', 0, NULL, 1),
(8287, 'KARTHIKEYAN', '16', '8610775403', '', 'karthickkanu@gmail.com', '1998-05-15', 23, '2', '2', 'SATHYAMOORTHY', 'Backend', 12000.00, 1, 0.00, 24000.00, 'Chennai', 'Chennai', '2203290003', '1', '1', 'upload_files/candidate_tracker/95530234484_Karthick Resume.pdf', NULL, '1', '2022-03-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for this process. poor comm. and no clarity in his speech. will not suite for calling and sales. not interested in current process. ctc 11.5k and expt 20k and he is requesting in interview to give him job. dont even knows basics in excel.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-29 12:05:20', 85, '2022-03-29 12:14:26', 0, NULL, 1),
(8288, 'SHALINI r', '16', '7871527741', '6379502489', 'shaliniraj0011@gmail.com', '1999-09-25', 22, '2', '2', 'JAYANTHI', 'Back end development', 13500.00, 3, 13500.00, 20.00, 'CHENNAI', 'CHENNAI', '2203290004', '1', '2', 'upload_files/candidate_tracker/3359635466_Shalini R (Resume).pdf', NULL, '1', '2022-03-29', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 2yrs exp in data entry. 1+ yrs in sbi credit card back end. she was doing data entry there too with 13.5k. her company revised her salary as 16k. since she completed hdca course and 16k increment she is looking for better offer. expt min 20k take home. she in need of job but she dont have patience and understanding. i couldnt see adaptability. ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-29 12:05:55', 85, '2022-03-29 12:28:37', 0, NULL, 1),
(8289, 'M.Muthupanndy', '20', '8848593446', '6369981486', 'andrewalex.1411@gmail.com', '1998-11-14', 23, '2', '2', 'K.Muniyasamy', 'Mason', 10000.00, 2, 0.00, 12000.00, 'Chengelpet', 'Chengelpet', '2203290005', '1', '1', 'upload_files/candidate_tracker/19682811505_CV_2021-09-07-021717.pdf', NULL, '1', '2022-03-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'planning for higher study. will not suite for calling and long distance too. changalpattu', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-29 03:14:06', 1, '2022-03-29 03:18:44', 0, NULL, 1),
(8290, 'manoharan', '6', '7094675188', '', 'mano@gmail.com', '1999-04-05', 22, '2', '2', 'kathir', 'farmer', 0.02, 1, 0.00, 15000.00, 'perambalur', 'chengalpattu', '2203290006', '1', '1', 'upload_files/candidate_tracker/77621156140_Kamakshi.docx', NULL, '1', '2022-03-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling, 6m in harbor as acc with 18k. expt 15k th. no convincing.', '5', '2', '', '', '', '', '1', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-29 03:14:10', 8, '2022-03-29 04:19:00', 0, NULL, 1),
(8291, '', '0', '7094676188', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203290007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-29 03:20:05', 0, NULL, 0, NULL, 1),
(8292, 'Avinash v', '5', '7397195260', '7094802633', 'postboxno1100@gmail.com', '1998-05-24', 23, '2', '2', 'Vijayan. E', 'Artist', 48000.00, 2, 26540.00, 30000.00, 'No:66ambedkar St 66.Thandalam (Vill) Madurantakam', 'Chengalpattu', '2203290008', '1', '2', 'upload_files/candidate_tracker/91328662356_Avin updated.pdf', NULL, '1', '2022-03-31', 7, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, no sustainability. was worked in home credit, vodafone, paytm, realestate and airtel and so on. expt 25k.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-29 03:46:04', 1, '2022-03-31 12:17:13', 0, NULL, 1),
(8293, 'Deena Yaghal Suganthi', '4', '9384690595', '', 'deenasuganthi24@gmail.com', '1992-05-24', 29, '2', '2', 'gideon', 'security', 12000.00, 1, 0.00, 10000.00, 'chennai', 'aminjikarai', '2203290009', '2', '1', 'upload_files/candidate_tracker/19820561305_Deena resume (2).docx', NULL, '1', '2022-03-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-29 08:08:36', 1, '2022-03-29 08:12:39', 0, NULL, 1),
(8294, 'Meron Abin', '4', '9894268950', '', 'meronms89@gmail.com', '2001-09-12', 20, '2', '2', 'seliathu mary', 'cooli', 9000.00, 1, 0.00, 10000.00, 'punavasal', 'thanjavur', '2203290010', '2', '1', 'upload_files/candidate_tracker/58885829673_CV_2021-09-26-090621.pdf', NULL, '3', '2022-03-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-29 08:14:38', 1, '2022-03-29 08:16:38', 0, NULL, 1),
(8295, 'Priyanka', '13', '9361613142', '6374004133', 'Priyamclansys@gmail.com', '2000-12-26', 21, '2', '2', 'Karthikeyan', 'Own business', 8000.00, 0, 14000.00, 18000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2203290011', '1', '2', 'upload_files/candidate_tracker/82094095856_Priyanka Resume (1).docx', NULL, '3', '2022-03-30', 15, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'hold for tech. has 1yr exp in php with 14k in mailaduthurai. will relocate to chennai expt 16-17k. ', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-29 09:08:18', 1, '2022-03-30 11:31:17', 0, NULL, 1),
(8296, 'Bharath Kumar Rajendran', '14', '9791898643', '', 'bharathkumar1507bk36@gmail.com', '2000-07-15', 21, '2', '2', 'K.Rajendran', 'Electrician', 120000.00, 1, 0.00, 300000.00, 'Subramaniyapuram', 'Madurai', '2203290012', '1', '1', 'upload_files/candidate_tracker/6614746495_resume new.pdf', NULL, '3', '2022-03-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-03-29 11:00:34', 1, '2022-03-29 11:05:18', 0, NULL, 1),
(8297, 'S.LOGESWARAN', '4', '7550353553', '', 'sloges28@gmail.com', '2000-06-28', 21, '2', '2', 'Sumathi', 'Telecalling', 15000.00, 1, 0.00, 13000.00, 'Erode', 'Erode', '2203300001', '1', '1', 'upload_files/candidate_tracker/39644143941_1609990641198Resume_logeswaran.docx', NULL, '3', '2022-03-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-30 01:23:06', 85, '2022-04-04 10:15:18', 0, NULL, 1),
(8298, 'Divesh R Shah', '4', '9841775622', '', 'Diveshshah1997@gmail.com', '1997-07-19', 24, '2', '2', 'Rajesh A Shah', 'Sales Manager', 100000.00, 0, 14000.00, 17000.00, 'Perambur', 'Perambur', '2203300002', '1', '2', 'upload_files/candidate_tracker/3191583722_CV DIVESH R SHAH - New.pdf', NULL, '1', '2022-03-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, he runs a event mgnt and professional photographer he is. will not sustain more than 6m. expt 15k. ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-30 09:47:19', 1, '2022-03-30 10:05:13', 0, NULL, 1),
(8299, 'Preethi.v', '4', '7358636282', '9094168537', 'Preethivenkatesan846@gmail.com', '2001-03-01', 21, '1', '2', 'Venkatesan.B', 'Auto Driver', 10000.00, 1, 11000.00, 14000.00, 'Kotturpuram', 'Kotturpuram', '2203300003', '', '2', 'upload_files/candidate_tracker/23295684415__STARDM_premiadms_export6_DMS_FRM_FEB_2021_From_FTP_622021_80713006_SCHEDULE-1.PDF', NULL, '1', '2022-03-30', 0, 'Jobs', '3', '59', '2022-04-07', 132000.00, '', '', '2022-04-20', '2', 'Selected for Arumbakkam location  in consultant role', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-03-30 11:26:44', 60, '2022-04-07 10:18:31', 0, NULL, 1),
(8300, 'Nisha G M', '14', '6383679919', '', 'nishamariyanna0503@gmail.com', '2001-07-03', 20, '2', '2', 'Mariyanna G', 'Worker in wheels India limited', 17000.00, 1, 0.00, 20000.00, 'Villivakkam Chennai', 'Villivakkam Chennai', '2203300004', '1', '1', 'upload_files/candidate_tracker/47809719519_DocScanner Mar 12, 2022 4-43 PM.pdf', NULL, '1', '2022-03-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no basics so told her to learn and come back', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-30 11:38:37', 1, '2022-03-30 11:53:28', 0, NULL, 1),
(8301, 'Narmadha A', '4', '7305247209', '9710571209', 'narmadhaarul2304@gmail.com', '2001-04-23', 20, '2', '2', 'Arulraj D', 'Maintenance (private school)', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2203300005', '1', '1', 'upload_files/candidate_tracker/53425391027_Narmadha A.pdf', NULL, '1', '2022-03-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling, not speaking up, time being looking for job.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-30 11:58:34', 1, '2022-03-30 06:01:11', 0, NULL, 1),
(8302, 'Sivaraman.G', '13', '7338714210', '9080285071', 'mrsparrow786@gmail.com', '2000-11-19', 21, '2', '2', 'Ganesan', 'Daily wages', 30000.00, 1, 0.00, 15000.00, 'No:55,Eden Street,Balaji Hagar,Ambattur', 'Chennai', '2203300006', '1', '1', 'upload_files/candidate_tracker/94574988614_Sivaraman G__CV d2.pdf', NULL, '2', '2022-03-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Pursuing his final year, yet to complete his projects and exams. expt 15k. okay with company norms. let him complete his exam.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-30 12:10:58', 1, '2022-03-30 12:15:27', 0, NULL, 1),
(8303, 'basil s', '13', '9597817060', '', 'basil7583@gmail.com', '2000-03-18', 22, '2', '2', 'j.selvin kumar', 'former', 5000.00, 0, 0.00, 15000.00, 'nagercoil', 'chennai', '2203300007', '1', '1', 'upload_files/candidate_tracker/10784490078_basilnew-min.pdf', NULL, '1', '2022-03-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'dosent know basics. told him to learn and come back.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-30 12:36:54', 1, '2022-03-30 12:56:40', 0, NULL, 1),
(8304, 'Mohammed Nowsath S', '6', '9843641830', '9042241830', 'nowsathsulaimaan@gmail.com', '2000-04-02', 21, '2', '1', 'MARIYAM NISHA M', 'Customer Support Associate', 12000.00, 1, 0.00, 20000.00, 'Erode', 'Erode', '2203300008', '1', '2', 'upload_files/candidate_tracker/61969825675_Mohammed Nowsath S.pdf', NULL, '2', '2022-04-27', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'CANDIDATE EXPECT HIGH SALARY FRESHERS.. ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-30 05:10:51', 60, '2022-04-27 04:54:09', 0, NULL, 1),
(8305, 'Abhilakshman', '13', '9626941876', '8754261654', 'abhilakshman6697@gmail.com', '1997-06-06', 24, '2', '2', 'M.Kalaichelvan', 'Head master', 800000.00, 1, 0.00, 150000.00, 'Salem', 'Salem', '2203300009', '1', '1', 'upload_files/candidate_tracker/76195352409_Abhilakhman.pdf', NULL, '3', '2022-03-31', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-30 06:04:08', 84, '2022-03-31 09:54:17', 0, NULL, 1),
(8306, 'karthikeyan s', '20', '6385891911', '', 'karthik24sekar@gmail.com', '1990-01-24', 32, '2', '1', 'sekar', 'own Business', 10000.00, 1, 28000.00, 35000.00, 'Chennai', 'Chennai', '2203300010', '23', '2', 'upload_files/candidate_tracker/60103471714_MSHRS - Business Profile .pdf', NULL, '1', '2022-04-01', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-30 06:11:29', 1, '2022-03-30 06:26:22', 0, NULL, 1),
(8307, 'YASAR ARAFATH', '13', '7010443479', '', 'yasararafath2698@gmail.com', '1998-12-26', 23, '2', '2', 'Abdul Kapoor', 'Business', 20000.00, 1, 18000.00, 23000.00, '18 kavarai street, Vandavasi', '18 kavarai street, Vandavasi', '2203300011', '1', '2', 'upload_files/candidate_tracker/32495431509_Myfinal Resume.pdf', NULL, '2', '2022-04-02', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-30 06:13:54', 1, '2022-03-30 06:20:50', 0, NULL, 1),
(8308, 'Preethi.m', '4', '6374095427', '7299580181', 'Preethiuma2904@gmail.com', '2001-04-29', 20, '2', '2', 'Uma&sundari', 'Not now', 12000.00, 0, 15000.00, 16000.00, 'Chennai , medavakkam', 'Chennai medavakkam', '2203300012', '1', '2', 'upload_files/candidate_tracker/96498517571_Andrews_Resume.pdf', NULL, '1', '2022-03-31', 2, '', '2', '8', NULL, 0.00, '', '0', NULL, '2', 'has to check with banu ahs 1yr calling exp. high job need and ctc 14k and ecpt 15-16k. ', '1', '2', '0', '1', '1', '0', '2', '2022-04-01', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-30 10:19:14', 1, '2022-03-31 12:50:43', 0, NULL, 1),
(8309, 'Kaminimerlin A', '4', '8925061209', '', 'merlinarul1030@gmail.com', '1999-02-27', 23, '2', '2', 'Arulraj D', 'School maintanence', 120000.00, 2, 17500.00, 20000.00, 'Chrompet', 'Chrompet', '2203310001', '1', '2', 'upload_files/candidate_tracker/22362249791_CV_2022032008255626.pdf', NULL, '1', '2022-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for tL, has only 6m exp in calling-new india. in 3m she got promoted as asst. tl with 17.5k. due to late logout she is looking for job change. will not sustain here and long distance too. expt 20k.  she will think and get back to vishal.', '1', '1', '', '1', '1', '', '1', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-31 07:05:38', 7, '2022-03-31 10:59:57', 0, NULL, 1),
(8310, 'Ragunath', '17', '9551805805', '', 'ragu91nath@gmail.com', '1990-05-10', 31, '2', '2', 'Not applicable', 'Business', 30000.00, 1, 500000.00, 700000.00, 'Chennai', 'Chennai', '2203310002', '14', '2', 'upload_files/candidate_tracker/36885049542_Ragunath resume.pdf', NULL, '1', '2022-03-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, has 4yr in hdfs and 2 yes in max, the  reason for reliving is not acceptable and his performance was not convincing. has avg convincing skills. expt 6.8l', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-31 11:05:10', 1, '2022-03-31 11:10:55', 0, NULL, 1),
(8311, 'Ravikumar m', '5', '8148016155', '8667315424', 'ravikumar888222@gmail.com', '1991-11-25', 30, '1', '2', 'Thirupammal', 'House wife', 9500.00, 2, 19000.00, 25000.00, 'Chennai', 'Chennai', '2203310003', '', '2', 'upload_files/candidate_tracker/38963588577_Ravikumar Resume EDIT 2019(1).docx', NULL, '1', '2022-03-31', 0, 'P1242', '3', '59', '2022-05-09', 264000.00, '', NULL, '2025-03-05', '1', 'Selected for Santhosh Team with PF/PT ,will give a target for 4-5 months based on that  revision will be provided on achieving', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-31 11:24:44', 60, '2022-04-28 07:25:25', 0, NULL, 1),
(8312, 'THIYAGARAJAN R', '6', '8190052057', '9940587446', 'vallalarmani05@gmail.com', '1997-10-05', 24, '1', '2', 'Shanthi', 'Kooli', 10000.00, 1, 21000.00, 25000.00, 'Chennai', 'Chennai', '2203310004', '', '2', 'upload_files/candidate_tracker/8923831056_R.Thiyagarajan_Chennai.docx', NULL, '1', '2022-03-31', 0, 'P1242', '1', '8', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-31 11:25:49', 1, '2022-03-31 11:40:11', 0, NULL, 1),
(8313, 'Steena Mary.G', '4', '8838381915', '7092891151', 'Steenamaryg@gmail.com', '2000-11-16', 21, '2', '2', 'Gnana sekar', 'A/c mechanic', 400000.00, 0, 0.00, 13000.00, 'Tirunelveli', 'Ramapuram', '2203310005', '1', '1', 'upload_files/candidate_tracker/44681261518__STARDM_premiadms_export6_DMS_FRM_FEB_2021_From_FTP_622021_80713006_SCHEDULE-1.PDF', NULL, '1', '2022-03-31', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 6m exp in sbi cards. good in her scripts and talkative. expt 12k take home. check with her distance once', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-31 11:27:26', 84, '2022-03-31 12:08:49', 0, NULL, 1),
(8314, 'Naveenkumar.j', '4', '6383009713', '9363668456', 'navicrish@gmail.com', '2001-05-03', 20, '1', '1', 'Moulika', 'House wife', 13000.00, 1, 13000.00, 22000.00, 'Chennai', 'Chennai', '2203310006', '', '2', 'upload_files/candidate_tracker/54200730292_Ravikumar new.docx', NULL, '1', '2022-03-31', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'was working in blue dart doing cut copy paste in sys and says system admin. 20 and got married. will not suite for calling and sales. language is not good. expt 22k', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-31 12:00:14', 1, '2022-03-31 12:42:46', 0, NULL, 1),
(8315, '', '0', '8825786458', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203310007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-31 12:05:35', 0, NULL, 0, NULL, 1),
(8316, 'Suba', '4', '8608721485', '9841992192', 'Suba.m1981@mail.com', '1982-09-30', 39, '1', '1', 'Santhy', 'Not now', 15000.00, 3, 15000.00, 15000.00, 'Chennai', 'Chennai', '2203310008', '', '2', 'upload_files/candidate_tracker/10490319050_1639026338971_1637580586516_RESUME Suba-converted.docx', NULL, '1', '2022-03-31', 2, 'Jobs', '2', '8', NULL, 0.00, '', '0', NULL, '1', 'has to check with banu. age-40, has 4yrs exp in pl calling exp with 15k, expt the same. no husband and has 2 son.', '1', '2', '0', '1', '1', '0', '2', '2022-04-01', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-31 12:09:20', 1, '2022-03-31 01:13:52', 0, NULL, 1),
(8317, '', '0', '9092420522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203310009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-31 12:18:35', 0, NULL, 0, NULL, 1),
(8318, 'Vidya barathi', '5', '9176759355', '9342538801', '3001vidyaa@gmail.com', '1993-11-30', 28, '2', '2', 'Dayalan.S', 'Electician', 8000.00, 2, 15000.00, 17000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2203310010', '1', '2', 'upload_files/candidate_tracker/90877363033_Vidya Resume.pdf', NULL, '1', '2022-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain. past 2yrs as doing fashion design and doing it. expt 17-18k. avg convincing and sales skills.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-31 12:26:50', 58, '2022-04-01 03:32:45', 0, NULL, 1),
(8319, 'R priya', '4', '9150049863', '8608572385', '3001vidyaa@gmail.com', '1995-07-15', 26, '2', '2', 'S raja', 'Security', 10000.00, 1, 15000.00, 17000.00, 'Manapakkam', 'Manapakkam', '2203310011', '1', '2', 'upload_files/candidate_tracker/26795358678_priya resume.pdf', NULL, '1', '2022-03-31', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has to check for renewal and whether coming without her friend for interview.was working in apollo clg as admin with 15k. expt the same.', '1', '1', '', '1', '1', '', '2', '2022-04-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-31 12:33:19', 58, '2022-04-01 03:31:31', 0, NULL, 1),
(8320, 'LOGESH S', '4', '8754956863', '9790556863', 'logeshsenthil55@gmail.com', '2002-07-05', 19, '2', '2', 'SENTHIL R', 'Sipcort', 20000.00, 1, 0.00, 250000.00, 'Chennimalai', 'Chennimalai', '2203310012', '1', '1', 'upload_files/candidate_tracker/46392654415_Resume.pdf', NULL, '3', '2022-03-31', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-31 01:22:54', 85, '2022-03-31 03:33:20', 0, NULL, 1),
(8321, 'Vaishnavi. B', '4', '7397711994', '7502211994', 'Vaishnavibalaji19121999@gmail.com', '1999-12-19', 22, '2', '2', 'Balaji.t', 'Dtp operator', 15000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2203310013', '1', '1', 'upload_files/candidate_tracker/12654650387_VAISHNAVI BALAJI-1.pdf', NULL, '3', '2022-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-31 03:44:00', 1, '2022-03-31 03:48:50', 0, NULL, 1),
(8322, '', '0', '9344624012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203310014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-31 05:50:25', 0, NULL, 0, NULL, 1),
(8323, '', '0', '8124493894', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203310015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-31 05:58:44', 0, NULL, 0, NULL, 1),
(8324, 'Mohanraj', '5', '9343624012', '9176997144', 'mohansam0910@gmail.com', '1994-10-30', 27, '2', '1', 'Vijayalakshmi', 'Teacher', 30000.00, 0, 23000.00, 28000.00, 'Chennai', 'Chennai', '2203310016', '23', '2', 'upload_files/candidate_tracker/42654114576_MOHAN RESUME-converted.pdf', NULL, '1', '2022-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-31 07:30:18', 1, '2022-03-31 07:37:37', 0, NULL, 1),
(8325, '', '0', '9994963324', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203310017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-31 10:19:13', 0, NULL, 0, NULL, 1),
(8326, 'Dhivya Ravi', '4', '9884269426', '9094764436', 'dhivyabandaru@gmail.com', '1997-02-23', 25, '2', '1', 'Mohammed Mushtaq R', 'Project support engineer', 19000.00, 1, 23000.00, 25000.00, 'Chennai', 'Pallavaram', '2204010001', '1', '2', 'upload_files/candidate_tracker/87794990569_Dhivya Ravi Resume.docx', NULL, '1', '2022-04-01', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-01 08:06:06', 1, '2022-04-01 08:09:53', 0, NULL, 1),
(8327, 'Rahul. S', '6', '8248078584', '', 'Rahulofficial303@gmail.com', '2000-07-09', 21, '2', '2', 'D. Selva Raja', 'Building contractor', 25000.00, 0, 12000.00, 15000.00, 'Veerapandi Perivuu, Coimbatore', 'Brindhavan Pg Plat No. 60, Thirumali Nager', '2204010002', '1', '2', 'upload_files/candidate_tracker/57886382581_RESUME.Pdf.pdf', NULL, '1', '2022-04-01', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-01 10:04:45', 60, '2022-04-05 05:17:16', 0, NULL, 1),
(8328, 'Jagadheesan Ak', '4', '9361122514', '', 'Akjothi65@gmail.com', '2001-01-24', 21, '2', '2', 'Mr.Saravanan', 'Yes', 25.00, 1, 15.00, 15.00, 'Arakkonam', 'Arakkonam', '2204010003', '1', '2', 'upload_files/candidate_tracker/18702223867_1646729815001_1646578064301_UTIITSL_ePAN_G057371637_04032022_224738.pdf', NULL, '2', '2022-04-01', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-04-01 10:38:20', 1, '2022-04-01 11:05:17', 0, NULL, 1),
(8329, 'Avinash', '31', '9500060182', '', 'Vavinash716@gmail.com', '1999-06-30', 22, '2', '2', 'Veeragan', 'Information Technology', 1.50, 2, 0.00, 1.50, 'Thiriyalam(Po/vill), tirupatture(dt)', 'Paddapi', '2204010004', '1', '1', 'upload_files/candidate_tracker/65683896678_Avinash Resume_Professional Resume – 01.pdf', NULL, '1', '2022-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-04-01 10:38:21', 1, '2022-04-01 10:44:59', 0, NULL, 1),
(8330, 'Kaviya s m', '4', '9087576772', '', 'sm.kaviya15@gmail.com', '1999-06-15', 22, '2', '2', 'Sivakumar s', 'Driver', 20000.00, 1, 0.00, 12000.00, 'Salem', 'Salem', '2204010005', '1', '1', 'upload_files/candidate_tracker/72660949515_KAVIYA RESUME-converted.pdf', NULL, '3', '2022-04-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-01 11:24:51', 1, '2022-04-04 08:49:53', 0, NULL, 1),
(8331, 'velmurgan', '4', '9344562938', '', 'astagan12@gmail.com', '1995-12-12', 26, '2', '2', 'aYasamY', 'Farmer', 30000.00, 1, 0.00, 150000.00, 'kadalur', 'Kadalur', '2204010006', '1', '1', 'upload_files/candidate_tracker/59787615530_Resume22.pdf', NULL, '2', '2022-04-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '1', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-01 11:44:28', 85, '2022-04-01 12:04:30', 0, NULL, 1),
(8332, 'Shaik aleemudin H N', '5', '7904845693', '', 'aleemudin11@gmail.com', '1998-11-11', 23, '3', '2', 'Niyamathullah', 'Real-estate', 200000.00, 2, 18000.00, 25000.00, 'Royapettah', 'Royapettah', '2204010007', '', '2', 'upload_files/candidate_tracker/6643861173_ALEEM RESUME (2) (1) (1).pdf', NULL, '1', '2022-04-01', 0, '', '3', '59', '2022-04-07', 261700.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team - PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-01 11:51:09', 60, '2022-04-06 01:09:52', 0, NULL, 1),
(8333, 'JOY JOE', '13', '8838045140', '9751845013', 'j.joyjoe92@gmail.com', '1992-05-06', 29, '2', '2', 'Jesu rethinam', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Devakottai', 'Chennai', '2204010008', '1', '1', 'upload_files/candidate_tracker/86383078016_obb9d-8qpyd.pdf', NULL, '1', '2022-04-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-04-01 11:53:28', 84, '2022-04-01 12:21:53', 0, NULL, 1),
(8334, '', '0', '9524368327', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204010009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-01 12:07:50', 0, NULL, 0, NULL, 1),
(8335, 'Preethi', '4', '9884816927', '9500189463', 'Preethikanmani9@gmail.com', '1990-12-18', 31, '1', '2', 'Chandirakumaran', 'Eletrition', 20000.00, 1, 15000.00, 15000.00, 'Chennai', 'Teynampet', '2204010010', '', '2', 'upload_files/candidate_tracker/90147611366_D NARAYANA RAO.PDF', NULL, '1', '2022-04-26', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-01 12:46:10', 1, '2022-04-26 01:15:37', 0, NULL, 1),
(8336, 'Subathra', '16', '9384642981', '9941272779', 'subathrareddy123@gmail.com', '1997-05-16', 24, '1', '2', 'Sithureddy', 'Tea man', 20000.00, 1, 13000.00, 15000.00, 'No 6 Divya homes ganapathi colony 1st Street St', 'Chennai', '2204010011', '', '2', 'upload_files/candidate_tracker/82409211191_SUBATHRA S.pdf', NULL, '1', '2022-04-01', 10, 'Experience', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-01 01:07:44', 1, '2022-04-01 01:21:55', 0, NULL, 1),
(8337, 'a.Rajalakshmi', '16', '7397343630', '6381299986', 'rajihlakshmi862@gmail.com', '1996-10-10', 25, '2', '2', 'anbu', 'milkman', 120000.00, 1, 13000.00, 15000.00, 'mettukuppam maduroyuval chenni', 'mettukuppam maduroyuval chenni', '2204010012', '1', '2', 'upload_files/candidate_tracker/94444335362_Rajalakshmi_Resume.pdf', NULL, '1', '2022-04-01', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-01 01:07:59', 1, '2022-04-01 01:15:17', 0, NULL, 1),
(8338, '', '0', '8610966929', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204010013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-01 04:55:54', 0, NULL, 0, NULL, 1),
(8339, 'B.Akash', '4', '7708182215', '', 'akashbalanas312@gmail.com', '1999-12-22', 22, '2', '2', 'M.Balasubramani', 'Electrician', 14000.00, 1, 10000.00, 15000.00, 'Erode', 'Erode', '2204010014', '1', '2', 'upload_files/candidate_tracker/91050511699_B.Akash resume 1_Akash Balan.docx', NULL, '3', '2022-04-01', 30, '', '3', '59', '2022-05-16', 132000.00, '', '3', '2022-05-27', '2', 'Selected for Erode - Consultant Role', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-04-01 05:00:58', 60, '2022-05-14 02:45:33', 0, NULL, 1),
(8340, 'G Bharathi', '4', '7558124134', '', 'Tharatamil143@gmail.com', '1997-08-16', 24, '2', '1', 'Tamil arasan', 'Self-employed', 15000.00, 1, 10000.00, 15000.00, 'Mettur ,Salem district', 'Mettur', '2204040001', '1', '2', 'upload_files/candidate_tracker/13102181175_Bharathiresume.pdf', NULL, '3', '2022-04-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Around 55kms from Erode,Married have Kid,Difficult in travel for a long will not sustain', '1', '2', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-04 10:32:44', 85, '2022-04-04 11:32:08', 0, NULL, 1),
(8341, '', '0', '9994211879', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204040002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-04 10:52:03', 0, NULL, 0, NULL, 1),
(8342, 'divya.s', '4', '8610866929', '8124251417', 'divyasuresh97@gmail.com', '1997-09-22', 24, '2', '1', 'suresh', 'business', 50000.00, 1, 0.00, 12000.00, 'kottur chennai', 'chennai', '2204040003', '1', '1', 'upload_files/candidate_tracker/9216730033_Divya Updated .pdf', NULL, '1', '2022-04-04', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,No basic knowledge in telecalling,if she comes back lets try', '1', '1', '0', '1', '1', '0', '2', '2022-04-05', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-04 10:56:38', 1, '2022-04-04 11:01:21', 0, NULL, 1),
(8343, '', '0', '7397017044', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204040004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-04 10:57:10', 0, NULL, 0, NULL, 1),
(8344, 'E.Rahul', '4', '8939164475', '9884687402', '0221370163pulcs@gmail.com', '1998-04-08', 23, '2', '2', 'P.Elangovan', 'Car driver', 25000.00, 1, 20000.00, 21500.00, 'Chennai', 'Virugambakkam chennai', '2204040005', '1', '2', 'upload_files/candidate_tracker/51149674280_resume rahul.docx', NULL, '1', '2022-04-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-04 12:27:35', 85, '2022-04-05 11:39:49', 0, NULL, 1),
(8345, 'Suriya s', '4', '6380014480', '9629380738', 'Suriyasridhar07@gmail.com', '1997-10-25', 24, '3', '2', 'S.Selvi', 'Housewife', 10000.00, 1, 13000.00, 14000.00, 'Madurai', 'Chennai', '2204040006', '', '2', 'upload_files/candidate_tracker/78424524775_2022 JATHAGAM.pdf', NULL, '1', '2022-04-04', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to schedule for 2nd round RE profile', '1', '2', '0', '1', '1', '0', '2', '2022-04-05', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-04 12:32:20', 1, '2022-04-04 12:53:17', 0, NULL, 1),
(8346, 'Indhu.g', '4', '8778969909', '', 'Indhukarnela07@gmail.com', '2002-02-07', 20, '2', '2', 'Nil', 'Nil', 10000.00, 0, 16000.00, 18000.00, 'Amijikarai', 'Amijikarai', '2204040007', '1', '2', 'upload_files/candidate_tracker/8252383631_2022 JATHAGAM.pdf', NULL, '1', '2022-04-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Frequent Job Changes,Lot of health issue and leave issues a lot with previous companies,will not sustain for a long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-04 02:29:16', 85, '2022-04-04 03:30:06', 0, NULL, 1),
(8347, 'Haritha T', '4', '9025617190', '', 'haritj1904@gmail', '1997-07-19', 24, '2', '1', 'Vignesh', 'Employer in private sector', 40.00, 1, 0.00, 25.00, 'Sankari,salem', 'Sankari,salem', '2204040008', '1', '1', 'upload_files/candidate_tracker/44849921306_Haritha 1904 T.docx', NULL, '2', '2022-04-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Distance around 48 kms, married have a kid, daily travel doubtful, need time to discuss with her husband,Also she may relocate to Chennai,Long Run with CAFS doubtful,Seems dilemma in Voice/Non voice process too,if she comes back arrange her for a F2F in Erode', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-04 03:35:35', 1, '2022-04-04 03:52:45', 0, NULL, 1),
(8348, 'Dhanush R', '21', '9884104944', '9884545104', 'dhanushdhanu262000@gmail.com', '2000-12-26', 21, '2', '2', 'Parents', 'Pvt Transport supervisor', 15000.00, 0, 15000.00, 18000.00, 'Attipattu', 'Attipattu', '2204050001', '1', '2', 'upload_files/candidate_tracker/2932021077_Dhanush resume one sheet.pdf', NULL, '3', '2022-04-07', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-05 11:42:42', 1, '2022-04-05 11:59:31', 0, NULL, 1),
(8349, 'Nandhini', '5', '8124796567', '8148991773', 'abhinandhu0728@gmail.com', '2000-06-07', 21, '2', '2', 'Guardian', 'Leather inspection', 20000.00, 0, 0.00, 19000.00, 'Kolathur', 'Kolathur', '2204050002', '1', '2', 'upload_files/candidate_tracker/99359432879_pdf.pdf', NULL, '1', '2022-04-05', 0, '', '3', '59', '2022-04-07', 170496.00, '', '5', '1970-01-01', '2', 'Selected for B2B - Staff role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-04-05 12:09:41', 60, '2022-04-06 03:31:46', 0, NULL, 1),
(8350, 'Mohammed Raffik', '11', '7092051692', '8608990059', 'mhdraffik1993@gmail.com', '1994-09-23', 27, '2', '2', 'A.K Mohideen Gaffar', 'Journalists Editor', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Pudupet', '2204050003', '1', '1', 'upload_files/candidate_tracker/50851428136_Microsoft Word - RESUME.pdf', NULL, '3', '2022-04-05', 0, '', '5', '83', NULL, 0.00, '', '0', NULL, '2', 'will not be suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-05 12:31:14', 1, '2022-04-05 12:48:38', 0, NULL, 1),
(8351, 'Ananth', '4', '9159453371', '', 'ananthp561997@gmail.com', '1997-06-05', 24, '2', '2', 'Palani samy', 'Farmers', 13000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2204050004', '1', '1', 'upload_files/candidate_tracker/39348994733_1629352922294Resume_Ananth.pdf', NULL, '3', '2022-04-07', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not suitable for pressure handling he is like non-voice process only', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-05 01:14:32', 85, '2022-04-07 01:04:41', 0, NULL, 1),
(8352, 'Kavitha', '4', '9789044032', '', 'Kavithasundaresan14@gmail.com', '1999-06-14', 22, '3', '2', 'Premila', 'Corporation', 10000.00, 2, 0.00, 13000.00, 'Vellore', 'Perambur', '2204050005', '', '1', 'upload_files/candidate_tracker/54440469566_KAVI RESUME 1ST(1) (1).pdf', NULL, '1', '2022-04-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Much focusing on Accounts xxamp Non voice process only\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-05 01:30:38', 60, '2022-04-05 02:23:15', 0, NULL, 1),
(8353, 'Kowsalya suresh', '4', '8248803807', '9894670234', 'kowsalyasureshkowsisri@gmail.com', '1999-07-14', 22, '2', '2', 'Suresh', 'Powerloom workers', 100000.00, 1, 15000.00, 15000.00, 'Erode', 'Erode', '2204050006', '1', '2', 'upload_files/candidate_tracker/14670391337_Kowsalya Resume.pdf', NULL, '3', '2022-04-05', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-05 01:40:24', 1, '2022-04-05 01:44:22', 0, NULL, 1),
(8354, 'Anil Kumar.S', '21', '9944737234', '', 'anibabysb@gmail.com', '1990-06-20', 31, '3', '1', 'Sandhya.R', 'Farmer', 90000.00, 0, 19000.00, 18000.00, 'Kanyakumari', 'Chennai', '2204050007', '', '2', 'upload_files/candidate_tracker/7172271248_Anil Resume modified20022.docx', NULL, '1', '2022-04-05', 50422, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'no communication,career Gap,not much serious with the job,will not sustain and not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-05 03:32:31', 1, '2022-04-05 03:51:41', 0, NULL, 1),
(8355, 'Mugunthan', '14', '7708204006', '7339064043', 'hasanmohamed473guy@gmail.com', '1999-05-17', 22, '2', '2', 'Jaisankar', 'Driver', 20000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2204050008', '23', '2', 'upload_files/candidate_tracker/4170755887_Mugunthan IT-1.docx', NULL, '1', '2022-04-07', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-05 04:10:12', 1, '2022-04-05 04:29:15', 0, NULL, 1),
(8356, 'Logapriya', '4', '6374134322', '4820183230', 'LOGAPRIYAKST@GMAIl.COM', '2000-11-11', 21, '2', '2', 'Kulandhaivel', 'Agriculture', 15000.00, 0, 0.00, 10000.00, 'Thalakulam Bhavani', 'Thalakulam Bhavani', '2204050009', '1', '1', 'upload_files/candidate_tracker/97388372064_Resume logapriya.pdf', NULL, '1', '2022-04-06', 0, '', '3', '59', '2022-04-06', 126312.00, '', '4', '2022-09-08', '1', 'Selected for Erode - Consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-05 04:26:11', 60, '2022-04-06 05:28:29', 0, NULL, 1),
(8357, '', '0', '7397334656', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204050010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-05 06:41:35', 0, NULL, 0, NULL, 1),
(8358, '', '0', '9954737135', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204050011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-05 08:02:09', 0, NULL, 0, NULL, 1),
(8359, '', '0', '9047867703', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204050012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-05 08:46:51', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8360, 'Nandha Kumar M', '6', '9025957660', '7092881229', 'Nk9423147@gmail.com', '2000-06-14', 21, '2', '2', 'Murugan', 'Sapathi', 100000.00, 3, 0.00, 15000.00, 'velachery', 'Velachery', '2204060001', '1', '1', 'upload_files/candidate_tracker/60326955340_Nandha resume.docx', NULL, '1', '2022-04-06', 0, '', '4', '82', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile,fresher for Insurance Sales,have Career Gap kindly check and let me know your interest', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-06 11:03:35', 60, '2022-04-06 06:29:25', 0, NULL, 1),
(8361, 'Thiruselvi', '4', '6382462032', '9629420083', 'selvihari7@gmail.com', '1997-11-25', 24, '2', '2', 'Saravan', 'Nill', 50000.00, 2, 0.00, 17000.00, 'Tiruppur', 'Tiruppur', '2204060002', '1', '1', 'upload_files/candidate_tracker/97318299525_Resume.docx', NULL, '1', '2022-04-07', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-06 11:19:32', 85, '2022-04-06 04:29:00', 0, NULL, 1),
(8362, 'GUNASEELAN A', '4', '6369865570', '8925335904', 'GUNASEELAN6369@gmail.com', '1998-11-08', 23, '2', '2', 'ARUMUGAM P', 'Former', 30000.00, 2, 0.00, 15000.00, 'Pattanam', 'Velachery', '2204060003', '1', '1', 'upload_files/candidate_tracker/63186323689_Gunaseelan Resume.docx', NULL, '1', '2022-04-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication ,will not sustain and not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-04-06 11:29:16', 1, '2022-04-06 11:44:02', 0, NULL, 1),
(8363, 'Ravina F', '6', '7550346057', '9952039456', 'ravinashyam24073@gmail.com', '2002-02-09', 20, '1', '2', 'Dhanasekaran', 'Fisherman', 80000.00, 1, 13000.00, 15000.00, '460 jeevarathinam nagar', 'Kasimedu royapuram', '2204060004', '', '2', 'upload_files/candidate_tracker/14599896833_RAVINA.D%20BIO%20DATA%2029.03.2022.docx', NULL, '1', '2022-04-06', 0, 'P1065', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok , kindly confirm the joining date ... ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-06 01:50:31', 60, '2022-04-06 06:29:47', 88, '2022-09-13 05:50:48', 0),
(8364, '', '0', '8056033734', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204060005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-06 02:43:18', 0, NULL, 0, NULL, 1),
(8365, 'Dhana lakshmi. P', '4', '9488086002', '9597874433', 'Pmadkumar000@gmail.com', '2001-05-07', 20, '1', '2', 'Peryasami. S', 'Taliner', 10000.00, 1, 0.00, 10000.00, 'Thindal', 'Thindal', '2204060006', '', '1', 'upload_files/candidate_tracker/74473848896_dhana resume.docx', NULL, '1', '2022-04-06', 0, 'CA131', '3', '59', '2022-04-06', 126312.00, '', '4', '2022-12-01', '2', 'Selected for Erode - Consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-04-06 04:21:40', 60, '2022-08-16 07:46:13', 0, NULL, 1),
(8366, 'Logapriya. K', '4', '9489153124', '6374134322', 'Logapriyakst@gamil.com', '2000-11-11', 21, '3', '2', 'Kulandhaivel. P', 'Agriculture', 15000.00, 0, 0.00, 10000.00, 'Thalakulam Bhavani', 'Thalakulam Bhavani', '2204060007', '', '1', 'upload_files/candidate_tracker/78134695106_Resume logapriya.pdf', NULL, '1', '2022-04-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-06 04:24:56', 1, '2022-04-06 04:27:27', 0, NULL, 1),
(8367, '', '0', '7904294117', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204060008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-06 06:54:42', 0, NULL, 0, NULL, 1),
(8368, 'Balaji', '29', '8428102769', '', 'D.v.balaji1234@gmail.com', '1999-02-04', 23, '2', '2', 'Devendran', 'Maeson', 14000.00, 1, 0.00, 18000.00, 'Kundrathur', 'Pudhu nallur', '2204060009', '1', '2', 'upload_files/candidate_tracker/21870466182_D.BALAJI.docx', NULL, '3', '2022-04-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-06 07:00:42', 1, '2022-04-06 07:21:12', 0, NULL, 1),
(8369, 'Rakesh', '4', '8610374149', '', 'chiyaan5799@gmail.com', '1999-02-06', 23, '2', '2', 'Ramesh', 'Security', 20000.00, 2, 18000.00, 18000.00, 'ROYAPETTAH', 'ROYAPETTAH', '2204070001', '1', '2', 'upload_files/candidate_tracker/44301756268_RAKESH Resume.pdf', NULL, '1', '2022-04-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '1', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-07 09:50:28', 1, '2022-04-07 09:54:25', 0, NULL, 1),
(8370, 'pavithra s', '11', '8122022337', '', 'pavithrahema98@gmail.com', '1998-06-11', 23, '2', '2', 'sekar a', 'data associate', 50000.00, 1, 325000.00, 600000.00, 'chennai', 'thiruvarur', '2204070002', '1', '2', 'upload_files/candidate_tracker/55260750266_Pavithra_SH.pdf', NULL, '2', '2022-04-07', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate communication is good. working in Amazon with 30 days notice. she is a fresher for recruitment. Her current salary is 3.25 lPA and her min expectation is 4.5 lpa being a fresher for recruitment. will focus much on the salary, sustainability doubts based on her expectations', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-07 10:04:12', 1, '2022-04-07 10:22:34', 0, NULL, 1),
(8371, 'Parasudeen', '4', '8190807873', '9003084110', 'parasudeen@gmail.com', '1996-09-19', 25, '2', '2', 'Shajahan', 'Iron and steel business', 35000.00, 3, 11500.00, 18000.00, 'Adambakkam chennai', 'Adambakkam chennai', '2204070003', '1', '2', 'upload_files/candidate_tracker/6245920196_Resume Parasudeen.docx', NULL, '1', '2022-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up, Prefer to go in non voice only, not comfort in Target/Pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-07 10:56:28', 1, '2022-04-07 10:59:58', 0, NULL, 1),
(8372, 'Sathish k', '4', '9080207604', '8883124246', 'Sathishkumarskm96@gmail.com', '1996-01-12', 26, '2', '2', 'Kumar s', 'Labour', 50000.00, 3, 0.00, 15000.00, 'Nagapattinam', 'Chennai', '2204070004', '1', '1', 'upload_files/candidate_tracker/95239232080_sathish resume.pdf', NULL, '1', '2022-04-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot,Will not handle the pressure,much prefer for Non Voice only', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-07 11:59:20', 85, '2022-04-07 12:43:47', 0, NULL, 1),
(8373, 'Sivaraman M', '4', '8825458702', '7708070342', 'msiva0342@gmail.com', '1998-06-06', 23, '2', '2', 'Madhavan N', 'Flower shop merchant', 10000.00, 1, 12000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2204070005', '1', '2', 'upload_files/candidate_tracker/1144479631_SIVARAMAN-Resume.docx', NULL, '3', '2022-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '1', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-04-07 12:04:06', 1, '2022-04-07 12:10:32', 0, NULL, 1),
(8374, '', '0', '9962051754', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204070006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-07 12:25:09', 0, NULL, 0, NULL, 1),
(8375, 'Saranya s', '6', '7397331388', '6381334688', 'Saranyasaro550@gmail.com', '2000-12-12', 21, '4', '2', 'Shankar', 'Driver', 20000.00, 1, 10000.00, 20000.00, '32/4 Devi Bhavani ellaiamman Kovil Street otteri', 'Purasawalkam', '2204070007', '', '2', 'upload_files/candidate_tracker/36916677571_saranya s.pdf', NULL, '1', '2022-04-07', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile,have 5 months Exp in Telecalling,Sustainability Doubt,but can give a try kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-07 12:28:18', 60, '2022-04-07 05:24:06', 0, NULL, 1),
(8376, 'Lakshmanan.v', '4', '8754640995', '9500381850', 'Lakshram485@gmail.com', '2000-12-05', 21, '2', '2', 'Varatharajan.r', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2204070008', '1', '1', 'upload_files/candidate_tracker/63125091115_Resume lax 2.pdf', NULL, '3', '2022-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'we shared the offer proposal,but He is going with another offer', '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-07 12:39:39', 1, '2022-04-07 01:13:48', 0, NULL, 1),
(8377, 'Sanjay Kumar', '4', '9790172734', '9042666227', 'sksanjaykumar1921@gmail.com', '2001-05-19', 20, '2', '2', 'Sangeeta', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2204070009', '1', '1', 'upload_files/candidate_tracker/70910937106_Sanjay K.pdf', NULL, '1', '2022-04-07', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '1', 'he is not suitable for tele sales', '1', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-07 12:39:41', 1, '2022-04-07 12:53:20', 0, NULL, 1),
(8378, '', '0', '8110885193', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204070010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-07 01:27:01', 0, NULL, 0, NULL, 1),
(8379, '', '0', '8270400419', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204070011', '0', '0', NULL, NULL, '0', NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-07 04:24:56', 0, NULL, 0, NULL, 1),
(8380, 'Vishnu priya . C', '4', '6369899908', '6374762383', 'Priyavishnu2517@gmail.com', '2000-10-17', 21, '2', '2', 'Chandru kumar . G N', 'Business', 25000.00, 1, 0.00, 13000.00, 'Gobi', 'Gobi', '2204070012', '1', '1', 'upload_files/candidate_tracker/88584797491_Vishnu priya.pdf', NULL, '1', '2022-04-12', 0, '', '3', '59', '2022-04-13', 126312.00, '', '3', '2022-11-01', '2', 'Selected for Erode Consultant Role - 5% TDS', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-07 05:08:17', 60, '2022-04-12 06:06:17', 0, NULL, 1),
(8381, '', '0', '7010092595', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204070013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-07 08:05:06', 0, NULL, 0, NULL, 1),
(8382, 'JOHN FRANCIS', '4', '8248138233', '9003199594', 'john0612prakash@gmail.com', '1999-08-06', 22, '2', '2', 'SUGANTHI', 'House wife', 25000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2204070014', '1', '1', 'upload_files/candidate_tracker/24583800561_John resume.doc', NULL, '1', '2022-04-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking much for backend operations,Tried for our operation by giving him written task but not upto the mark as we expected.Will not sustain in Telecalling Sales', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-07 10:49:33', 85, '2022-04-08 10:52:33', 0, NULL, 1),
(8383, 'Shanmuhe sekar', '16', '9361037399', '', 'shanmuhesiva@gmail.com', '1992-03-07', 30, '2', '1', 'Sivaselvan v', 'Software Engineer', 70000.00, 1, 120000.00, 300000.00, 'Chennai', 'Chennai', '2204080001', '1', '2', 'upload_files/candidate_tracker/40542572944_Shanmuhe resume-5.docx', NULL, '2', '2022-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-08 10:53:12', 1, '2022-04-08 11:00:08', 0, NULL, 1),
(8384, 'S.Sharunkumar', '4', '8925401570', '', 'shasharun875@gmail.com', '1998-10-09', 23, '2', '2', 'Mother name: kalaivani.S ,Sridhar.S', 'Telecaller', 125000.00, 2, 0.00, 12000.00, 'Chennai ,saidapet', 'Chennai ,saidapet', '2204080002', '1', '1', 'upload_files/candidate_tracker/58454890715_S.Sharunkumar Resume.pdf', NULL, '1', '2022-04-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open up a lot, will not handle the pressure not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-08 11:02:22', 1, '2022-04-08 11:18:15', 0, NULL, 1),
(8385, '', '0', '6379250818', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204080003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-08 11:20:37', 0, NULL, 0, NULL, 1),
(8386, 'Pavithra', '16', '8838019568', '', 'pavithrakrish2025@gmail.com', '2000-12-25', 21, '2', '2', 'Krishnamoorthy', 'Supervisor', 30000.00, 1, 0.00, 15000.00, 'Tambaram Sanatorium', 'Tambaram Sanatorium', '2204080004', '1', '2', 'upload_files/candidate_tracker/12527810678_PAVITHRA K-RESUME.pdf', NULL, '1', '2022-04-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication ok,already holds offer near to her home,much focus towards the accounts profile,will not sustain and handle pressure doubtful - Not Suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '7', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-08 11:57:44', 60, '2022-04-08 05:31:09', 0, NULL, 1),
(8387, 'Vignesh kumar', '5', '9791195387', '9176012041', 'Vkrvicky@gmail.com', '1995-09-21', 26, '2', '2', 'Ramesh', 'Business', 25000.00, 1, 30000.00, 40.00, 'Chennai', 'Anna nagar east', '2204080005', '14', '2', 'upload_files/candidate_tracker/74979508384_Vignesh Resume-2.docx', NULL, '1', '2022-04-08', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'Attitude issue.  ', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-08 11:58:47', 1, '2022-04-08 12:03:38', 0, NULL, 1),
(8388, 'Vijay Ananthan', '5', '9841111915', '', 'Vijayananthan@yamail.com', '1987-12-24', 34, '1', '1', 'Mithra', 'House wife', 25000.00, 0, 25000.00, 28000.00, 'Chennai', 'Saligramam', '2204080006', '', '2', 'upload_files/candidate_tracker/13028500947_16494022643662341374295647983061-converted-compressed.pdf', NULL, '1', '2022-04-08', 30, '55559', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'REJECTED ', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-08 12:38:45', 1, '2022-04-08 12:49:43', 0, NULL, 1),
(8389, 'Ashwini', '7', '6369076708', '9566194818', 'ashwini1999t@mail.com', '1999-03-20', 23, '2', '2', 'Thirupathi', 'Security', 30000.00, 1, 13000.00, 18000.00, 'Tondiarpet', 'Tondiarpet', '2204080007', '1', '2', 'upload_files/candidate_tracker/81297537136_2022 JATHAGAM.pdf', NULL, '1', '2022-04-09', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication just a manageble, not much strong in the areas of Excel,Will not handle our pressure,will not sustain in our roless\n', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-08 01:19:24', 87, '2022-04-09 11:20:13', 0, NULL, 1),
(8390, 'Berlin nayagam', '6', '8525021167', '', 'berlinnayagam03@gmail.com', '1996-09-09', 25, '2', '2', 'Sahaya angela', 'Skill development', 20000.00, 3, 0.00, 200000.00, 'Chennai', 'Chennai', '2204080008', '1', '1', 'upload_files/candidate_tracker/71592912672_Berlin resume pdf ch.pdf', NULL, '1', '2022-04-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Intrest', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-08 01:43:09', 60, '2022-04-08 05:40:43', 0, NULL, 1),
(8391, 'Sundaram M', '6', '8838732967', '9095606628', 'meensundar5@gmail.com', '1996-05-22', 25, '1', '2', 'Poovayee M', 'Century worker', 20000.00, 3, 0.00, 15000.00, 'Erode', 'Erode', '2204080009', '', '1', 'upload_files/candidate_tracker/19576537502_Resume - Sundaran-1 (1).pdf', NULL, '1', '2022-04-08', 0, 'P1303', '8', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have to validate again by Suthagar', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-08 02:25:19', 60, '2022-04-08 02:39:23', 0, NULL, 1),
(8392, 'Kuppuraj', '9', '9944818327', '', 'kuppurajvlr@gmail.com', '1977-04-29', 44, '2', '1', 'Gomathi', 'House wife', 40000.00, 3, 35000.00, 45000.00, 'Vellore', 'Tambaram', '2204080010', '14', '2', 'upload_files/candidate_tracker/8260122277_Kuppuraj CV 2022.pdf', NULL, '1', '2022-04-08', 30, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Not fit for us', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-08 02:34:37', 1, '2022-04-08 02:41:50', 0, NULL, 1),
(8393, '', '0', '9360649432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204080011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-08 02:45:01', 0, NULL, 0, NULL, 1),
(8394, 'KOKILAVANI S', '6', '9952154164', '8270400419', 'kokilasivakumar00@gmail.com', '1999-07-03', 22, '2', '2', 'Sivakumar', 'Labour', 12000.00, 1, 7500.00, 10000.00, 'Erode', 'Erode', '2204080012', '1', '2', 'upload_files/candidate_tracker/30303751045_kokila-resume new-converted.docx', NULL, '1', '2022-04-08', 0, '', '8', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have to validate again by suthagar', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-08 02:48:36', 85, '2022-04-08 03:22:06', 0, NULL, 1),
(8395, 'Aabid Hussain', '16', '8838370973', '', 'HUSSAINVIJAY97@GMAIL.COM', '1997-05-18', 24, '2', '1', 'Wahidha Parveen', 'Home maker', 15000.00, 2, 15000.00, 18000.00, 'Chennai', 'TAMBARAM', '2204080013', '1', '2', 'upload_files/candidate_tracker/85669932056_Resume.pdf', NULL, '1', '2022-04-09', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to train alot in MIS,Location constraint,long run doubtful in our company', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-08 03:08:30', 1, '2022-04-08 11:40:48', 0, NULL, 1),
(8396, 'Keerthika V', '16', '7200689637', '7397360148', 'kv4keerthi@gmail.com', '2001-02-04', 21, '2', '2', 'Venkatavarathan', 'Cooli', 80000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2204080014', '1', '1', 'upload_files/candidate_tracker/39684275110_Keerthika - Resume.pdf', NULL, '1', '2022-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication,Sustainability with the previous exp no not open with TxxampC not open with telecalling Activities', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-08 03:17:48', 85, '2022-07-19 12:34:02', 0, NULL, 1),
(8397, 'RAJESHKUMAR P G', '1', '8015832802', '', 'pgrajeshkumar24@gmail.com', '1998-06-25', 23, '1', '2', 'GOVINDAIYAN P R', 'Mechanic', 45000.00, 1, 0.00, 25000.00, 'Paramakudi', 'Chennai', '2204080015', '', '1', 'upload_files/candidate_tracker/76717614485_Resume.docx', NULL, '1', '2022-04-08', 0, 'P1065', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice process, will not sustain and not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-08 03:22:19', 60, '2022-04-08 05:32:24', 0, NULL, 1),
(8398, 'Sridhar. K', '5', '9940494797', '', 'Sridhar0127@gmail.com', '1993-01-27', 29, '1', '2', 'Kamalak Kannan . S', 'Wages', 37000.00, 1, 360000.00, 400000.00, 'Chennai', 'Chennai', '2204080016', '', '2', 'upload_files/candidate_tracker/63084557661_Sridhar Updated CV.doc', NULL, '1', '2022-04-08', 1, '55641', '3', '59', '2022-04-11', 400000.00, '', '4', '2022-05-20', '1', 'Selected for Pandian Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '1', 'Salary has been Provided based on the commitment given by the Sriram Sir', '', '', '', NULL, NULL, NULL, 1, '2022-04-08 03:37:23', 60, '2022-04-11 11:41:39', 0, NULL, 1),
(8399, '', '0', '8270965742', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204080017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-08 03:41:11', 0, NULL, 0, NULL, 1),
(8400, '', '0', '8428822282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204080018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-08 03:57:50', 0, NULL, 0, NULL, 1),
(8401, 'Preatham N', '16', '9962198953', '', 'preathamlodha01@gmail.com', '2001-04-08', 21, '2', '2', 'Rekhadevi', 'Housewife', 10000.00, 0, 12000.00, 16000.00, 'Chennai', 'Chennai', '2204080019', '1', '2', 'upload_files/candidate_tracker/48131330314_preatham resume.pdf', NULL, '1', '2022-04-09', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, not open for the Terms xxamp conditions,will not sustain for a long,no basic knowledge in the Position', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-08 06:56:48', 1, '2022-04-08 07:03:15', 0, NULL, 1),
(8402, 'ashwin s r', '16', '9962765639', '', 'achuravi016@gmail.com', '2000-03-16', 22, '2', '2', 'ravichandran', 'salesman', 30000.00, 2, 15000.00, 20000.00, 'mangadu', 'mangadu', '2204080020', '1', '2', 'upload_files/candidate_tracker/98728476287_Ashiwn Resume.docx', NULL, '3', '2022-04-11', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-08 07:09:59', 1, '2022-04-08 07:20:10', 0, NULL, 1),
(8403, 'Sakthimathan.k', '6', '8667230146', '7502637232', 'Sakthimathan007sm@gmail.com', '1998-10-28', 23, '2', '2', 'Kumar.m', 'Wages', 14000.00, 0, 0.00, 13000.00, 'Erode', 'Erode', '2204080021', '1', '1', 'upload_files/candidate_tracker/54727341537_sakthimathan.pdf', NULL, '1', '2022-04-11', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainabilty doubt so rejected.. existing company working 3 mnth and 6mnth only  ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-08 07:10:21', 60, '2022-04-11 01:07:49', 0, NULL, 1),
(8404, 'Aravind kumar. V', '6', '6383683467', '7825915798', 'aruviak1010@gmail.com', '1998-05-03', 23, '2', '2', 'Vijaya kumar', 'Gold smith', 40000.00, 1, 0.00, 15000.00, 'Balusamy nagar solar', 'Solar', '2204080022', '1', '1', 'upload_files/candidate_tracker/43916248787_Document from aruviak (1).pdf', NULL, '1', '2022-04-11', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustainability doubt so rejected.. ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-08 10:34:59', 60, '2022-04-11 01:07:32', 0, NULL, 1),
(8405, 'Kaviya .s', '4', '6374762383', '6369899908', 'kaviyasaravanan710@gmail.com', '2000-11-07', 21, '2', '2', 'Saravanan.k.s', 'Government job', 25000.00, 1, 0.00, 12000.00, 'Gobi', 'Gobi', '2204080023', '1', '1', 'upload_files/candidate_tracker/46210846439_Share KAVIYA CV.pdf', NULL, '1', '2022-04-12', 0, '', '3', '59', '2022-04-13', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Erode Location in Consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-08 11:03:07', 60, '2022-04-12 06:06:33', 0, NULL, 1),
(8406, 'Priyadharshini Ramasamy', '6', '9790361331', '9659958331', 'priyadharshiniramasamy1331@gmail.com', '1997-05-25', 24, '2', '2', 'SELVI R', 'Tea Shop', 12000.00, 2, 13000.00, 14000.00, 'Tiruchengode', 'Tiruchengode', '2204090001', '1', '2', 'upload_files/candidate_tracker/52598286313_PRIYA RESUME 2022 PDF.pdf', NULL, '1', '2022-04-09', 0, '', '3', '59', '2022-04-11', 216000.00, '', '6', '2023-02-09', '2', 'Selected for Erode Suthagar Team with PF/ESI/PT', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-09 10:01:30', 60, '2022-04-10 03:51:25', 0, NULL, 1),
(8407, 'AML PREM SUTHEESH .G', '6', '9659059663', '', 'sutheeshsuthe67@gmail.com', '1999-12-05', 22, '2', '2', 'George', 'fishermen', 25000.00, 3, 0.00, 12000.00, 'kanyakumari', 'chennai', '2204090002', '1', '1', 'upload_files/candidate_tracker/78988845246_Sutheesh.docx', NULL, '2', '2022-04-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped - Candidate is not interested to join, plan to go with the same business,also not comfortable with the Take home 12K\n', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-04-09 10:38:44', 58, '2022-04-09 11:13:38', 0, NULL, 1),
(8408, 'Mohanapriya M.J', '6', '8838418014', '9344332505', 'Jaishankarjai19@gmail.co', '2000-06-09', 21, '2', '2', 'Jayasankar', 'General manager', 25000.00, 1, 0.00, 14000.00, 'Perungudi', 'Perungudi', '2204090003', '1', '1', 'upload_files/candidate_tracker/8959783896_Mohanapriya M.J _Resume_Format12.pdf', NULL, '1', '2022-04-09', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Telecaller,can give a try,5050 profile kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-09 11:03:39', 60, '2022-04-11 04:49:25', 0, NULL, 1),
(8409, 'D.sandhiya', '6', '9962943840', '9884301158', 'Sandhiyadhandapani97@gmail.com', '2001-07-09', 20, '2', '2', 'Dhandapani', 'Security', 15000.00, 2, 0.00, 13000.00, 'No.14 kabilar street M.G.R nagar', 'No.14 kabilar street M.G.R nagr', '2204090004', '1', '1', 'upload_files/candidate_tracker/9115501683_sample.pdf', NULL, '1', '2022-04-09', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot,5050 profile kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-09 11:10:13', 60, '2022-04-11 04:49:36', 0, NULL, 1),
(8410, 'Vijayalakshmi', '20', '9952932043', '8754587953', 'vijirams22@gmail.com', '1994-12-22', 27, '2', '1', 'Shanmugam', 'Operating engineer', 25000.00, 1, 13000.00, 17000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2204090005', '1', '2', 'upload_files/candidate_tracker/11820414500_R Vijayalakshmi-1.pdf', NULL, '1', '2022-04-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance,recently married,have exp in sales telecaller,but a career gap she has.will not sustain for a long,much she looks for work from home \n', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-09 01:18:26', 1, '2022-04-09 01:22:27', 0, NULL, 1),
(8411, 'Vignesh A', '4', '8248396802', '8531901380', 'vicky.murugan719@gmail.com', '1997-07-18', 24, '2', '2', 'Arumugam R', 'Tea shop', 100000.00, 1, 0.00, 15000.00, 'Dindigul', 'Dindigul', '2204090006', '1', '1', 'upload_files/candidate_tracker/83134511486_RESUME.pdf', NULL, '3', '2022-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-09 04:13:37', 1, '2022-04-09 04:38:19', 0, NULL, 1),
(8412, '', '0', '6383128914', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204090007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-09 04:49:55', 0, NULL, 0, NULL, 1),
(8413, 'Aishwarya.G', '11', '9445930032', '9361627198', 'aishwaryagopal06@gmail.com', '1997-12-06', 24, '2', '2', 'S.Gopalakrishnan', 'Retired', 75000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2204090008', '1', '1', 'upload_files/candidate_tracker/92986007862_CV_2022040510344096.pdf', NULL, '1', '2022-04-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good, Fresher for HR Recruitment, need time to give her confirmation,Sustainability doubts,5050 if she comes back let us try', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-09 04:56:35', 1, '2022-04-09 05:31:51', 0, NULL, 1),
(8414, '', '0', '8778935033', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204090009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-09 05:56:02', 0, NULL, 0, NULL, 1),
(8415, 'Mohammed Ismail', '6', '8667430034', '9976822264', 'mohammedismailn23@gmail.com', '1999-03-23', 23, '2', '2', 'Abul Kalam Azad', 'Electrition', 13000.00, 2, 14000.00, 20000.00, 'Salem', 'Salem', '2204110001', '1', '2', 'upload_files/candidate_tracker/7429785032_Mohammed Ismail Resume_2022.PDF', NULL, '1', '2022-04-11', 30, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Intrest', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-04-11 09:51:45', 60, '2022-04-11 04:39:28', 0, NULL, 1),
(8416, 'vignesh.m', '31', '9003100957', '', 'vigneshmj128@gmail.com', '1995-08-12', 26, '2', '2', 'murugan', 'coolie', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2204110002', '1', '1', 'upload_files/candidate_tracker/9342567051_RESUME(pdf).pdf', NULL, '2', '2022-04-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Will come for a direct F2F interview', '2', '1', '0', '1', '1', '0', '2', '2022-04-15', '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-11 10:51:38', 1, '2022-04-11 11:00:53', 0, NULL, 1),
(8417, 'Thanusha S', '25', '9150671130', '', 'thanusha11082000@gmail.com', '2000-08-11', 21, '1', '2', 'Sivaraj R', 'Farmer', 10000.00, 1, 0.00, 16500.00, 'Viruddhachalam', 'Viruddhachalam', '2204110003', '', '1', 'upload_files/candidate_tracker/67800689281_Thanusha\'s Resume 3.pdf', NULL, '1', '2022-04-11', 0, 'P1255', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not open up,not suitable', '8', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-11 11:07:13', 1, '2022-04-11 11:15:34', 0, NULL, 1),
(8418, 'Senthil kumar', '5', '6380814427', '', 'Senthil1991ece@gmail.com', '1991-02-22', 31, '3', '2', 'S kumaravel', 'Real estate', 6000.00, 1, 14000.00, 15000.00, 'No 26 shakthivel main road puzhal chennai 600066', 'Same as above', '2204110004', '', '2', 'upload_files/candidate_tracker/22143250063_sathish resume.pdf', NULL, '1', '2022-04-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'need to open a lot, Seems not to be much interested towards the career.Not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-11 11:11:00', 85, '2022-04-11 12:38:37', 0, NULL, 1),
(8419, '', '0', '8722729344', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204110005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-11 11:37:53', 0, NULL, 0, NULL, 1),
(8420, 'P. ABEL', '4', '9345629400', '8903260331', 'abel17502595@gmail.com', '2001-09-15', 20, '2', '2', 'C. PHILLIP', 'CARPENTER', 20000.00, 1, 0.00, 15000.00, '97/2/1 manjakuttai(po) yercaud, salem.', 'Salem', '2204110006', '1', '1', 'upload_files/candidate_tracker/24542293229_ABEL.doc', NULL, '1', '2022-04-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-11 11:54:30', 1, '2022-04-11 12:04:32', 0, NULL, 1),
(8421, 'Kesavan. K', '4', '9361019592', '7598263776', 'kesavan99yercaud@gmail.com', '1999-07-13', 22, '2', '2', 'Kanagaraj V', 'Formar', 20000.00, 2, 0.00, 15000.00, 'Manjakuttai (po), yercaud(Tk), salem(Dt)', 'Salem', '2204110007', '1', '1', 'upload_files/candidate_tracker/4988429083_KESAVAN. K RESUME.doc', NULL, '1', '2022-04-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-11 11:54:38', 85, '2022-04-11 12:45:07', 0, NULL, 1),
(8422, 'YOKESHWARAN P', '4', '9489852877', '8667284653', 'yknp100399@gmail.com', '1999-03-10', 23, '2', '2', 'PARAMASIVAM', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Yercaud', 'Yercaud', '2204110008', '1', '1', 'upload_files/candidate_tracker/80440796324_CV.pdf', NULL, '1', '2022-04-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-11 11:54:49', 1, '2022-04-11 12:02:34', 0, NULL, 1),
(8423, '', '0', '9677206771', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204110009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-11 04:04:52', 0, NULL, 0, NULL, 1),
(8424, 'Z sulthana begum', '16', '9176456036', '', 'zsulthanabegum20@gmail.com', '1994-12-20', 27, '2', '1', 'Mohammed ibrahim', 'Insurance field', 15000.00, 0, 14500.00, 20000.00, 'Triplicane, chennai', 'Triplicane, chennai', '2204110010', '1', '2', 'upload_files/candidate_tracker/40759135070_CV (Resume).docx', NULL, '1', '2022-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication need to focus ,handling pressure in MIS doubtful,will not sustain,not suitable', '3', '1', '0', '1', '1', '0', '2', '2022-04-13', '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-11 04:55:25', 1, '2022-04-11 05:01:06', 0, NULL, 1),
(8425, 'Boopathy S', '4', '8825909824', '7639831832', 'rdx5030@gmail.com', '1999-11-05', 22, '2', '2', 'Saravanan', 'Cook', 20000.00, 1, 0.00, 160000.00, 'Madurai', 'Madurai', '2204110011', '1', '1', 'upload_files/candidate_tracker/25652846069_CV.docx', NULL, '3', '2022-04-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-11 05:39:59', 85, '2022-04-11 06:55:15', 0, NULL, 1),
(8426, '', '0', '7639831832', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204110012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-11 05:57:12', 0, NULL, 0, NULL, 1),
(8427, 'Joysri R', '11', '9710039538', '', 'joysrirayappan@gmail.com', '1999-05-07', 22, '2', '2', 'Raghunathan', 'Admin', 300000.00, 1, 240000.00, 300000.00, 'Tambaram', 'Tambaram', '2204110013', '1', '2', 'upload_files/candidate_tracker/76485726310_Joysri\'s Resume (1).pdf', NULL, '1', '2022-04-12', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good,have basic knowledge in Recruitment,Have around 1 yr exp including the internship exp too and her current CTC is 20K and her expectation is more, She needs to travel from tambaram', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-11 07:31:05', 1, '2022-04-11 07:38:05', 0, NULL, 1),
(8428, 'Sridhar M', '4', '9344072858', '', '24srisurya@gmail.com', '2000-09-24', 21, '2', '2', 'Marikrishnan P', 'Nil', 28000.00, 2, 0.00, 18000.00, '34/c santhai madam st,ambasamudram.', 'Opposite to ruby Building,mannivackam.', '2204110014', '1', '1', 'upload_files/candidate_tracker/86287193763_SRIDHAR M resume.pdf', NULL, '1', '2022-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Camdidate need to open up a lot and not interested towards the telecaller,will not sustain for a  long', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-11 07:54:06', 1, '2022-04-11 08:05:22', 0, NULL, 1),
(8429, 'Shawn micheal', '4', '7358193257', '', 'Shawn987nov@gmail.com', '2002-11-12', 19, '2', '2', 'Helen', 'House wife', 8000.00, 0, 0.00, 10000.00, 'St.thomesmount,chennai16', 'Guindy', '2204120001', '1', '1', 'upload_files/candidate_tracker/90608215930_Shawn Michael(1).pdf', NULL, '1', '2022-04-12', 0, '', '4', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,not a graduate,19 yrs old family need is there,no parents,Can give a try for Elite Will come for Interview tomorrow, kindly check and let me know your inputs', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-12 02:10:42', 85, '2022-04-12 12:26:34', 0, NULL, 1),
(8430, 'mirunalini', '11', '9080560154', '', 'mirunatg94@gmail.com', '1994-03-01', 28, '2', '2', 'tg', 'officer', 100000.00, 0, 20000.00, 25000.00, 'chennai', 'chennai', '2204120002', '1', '2', 'upload_files/candidate_tracker/43527623381_Mirunaresume27thmarch.pdf', NULL, '2', '2022-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Very high CTC exp,Will not sustain in our roles,not suitable', '6', '2', '', '', '', '', '2', '2022-04-12', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-12 10:13:37', 60, '2022-04-12 07:25:43', 0, NULL, 1),
(8431, 'haripriya', '11', '9003201601', '', 'jharipriya@gmail.com', '1996-01-30', 26, '2', '2', 'j', 'officer', 100000.00, 0, 250000.00, 300000.00, 'chennai', 'chennai', '2204120003', '1', '2', 'upload_files/candidate_tracker/90452782006_Naukri_HaripriyaJ[1y_6m].pdf', NULL, '2', '2022-04-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-12 10:20:34', 87, '2022-04-12 10:37:18', 0, NULL, 1),
(8432, 'thamothar v', '20', '8951435197', '', 'thamothar65@gmail.com', '1998-01-10', 24, '2', '2', 'r venkatesh', 'driver', 15000.00, 1, 16000.00, 18000.00, 'karnadaka', 'manali', '2204120004', '23', '2', 'upload_files/candidate_tracker/28933515383_TOMMY RESUME.pdf', NULL, '1', '2022-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped - Didnt come for the interview', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-12 10:49:58', 60, '2022-04-12 11:33:41', 0, NULL, 1),
(8433, '', '0', '6382900968', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204120005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-12 10:50:39', 0, NULL, 0, NULL, 1),
(8434, 'mukesh', '16', '8072507355', '', 'hrd@thepathweavers.com', '1998-11-11', 23, '2', '2', 'mg mohan', 'officer', 200000.00, 0, 11000.00, 20000.00, 'chennai', 'chennai', '2204120006', '1', '2', 'upload_files/candidate_tracker/46541084316_MukeshResume.docx', NULL, '2', '2022-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'too lon distance up and down 50 kms,and not much comfortable with the timings,no much knowledge in the  excel, Will not sustain in our roles', '3', '2', '', '', '', '', '2', '1970-01-01', '2', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-12 11:07:20', 60, '2022-04-12 03:05:53', 0, NULL, 1),
(8435, '', '0', '8925124374', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204120007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-12 11:13:18', 0, NULL, 0, NULL, 1),
(8436, 'Manikandan.S', '6', '9488102309', '6369906344', 'manikavi17031998@gmail.com', '1998-03-17', 24, '1', '2', 'Tamilarasi', 'Farmar', 5000.00, 0, 0.00, 15000.00, 'Valaiyappatti kumaravadi Manapparai trichy 621302', 'West mambalam', '2204120008', '', '1', 'upload_files/candidate_tracker/46829901312_RESUME.pdf', NULL, '1', '2022-04-12', 0, 'Jobs', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to open a lot,not much aggressive,5050 profile,do check  and let me know ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-12 11:16:28', 60, '2022-04-12 05:05:01', 0, NULL, 1),
(8437, 'Sumathi s', '11', '9840789863', '8925124374', 'Sumihp1316@gmail.com', '2000-03-16', 22, '4', '1', 'Gopinath', 'Deputy officer', 18000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2204120009', '', '1', 'upload_files/candidate_tracker/25452551101_Sumathi (1) (1) resume.pdf', NULL, '1', '2022-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have basic knowledge in recruitment, have internship Exp but the communication is not upto the mark as we expected.', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-12 11:22:37', 1, '2022-04-12 11:24:43', 0, NULL, 1),
(8438, 'Shahida banu', '4', '7338990738', '7338920738', 'leehida29@gmail.com', '1985-01-01', 37, '1', '2', 'Khadar', 'Retire', 20000.00, 1, 0.00, 20000.00, 'Sri Ranga mahalakshmi ladies Hostel', 'Chennai', '2204120010', '', '1', 'upload_files/candidate_tracker/19671405759_SHAHIDA BANU.docx', NULL, '1', '2022-04-12', 0, 'P1290', '4', '60', NULL, 0.00, '', '0', NULL, '2', 'selected for e sales', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-12 11:47:35', 1, '2022-04-12 12:00:14', 0, NULL, 1),
(8439, 'P. Iswarya', '4', '9655995198', '9843386549', 'Aishwaryasweet9655@gmail.com', '2002-04-09', 20, '2', '2', 'N. Palanisamy', 'Tailor', 30000.00, 3, 0.00, 11000.00, 'Tirupur', 'Tirupur', '2204120011', '1', '1', 'upload_files/candidate_tracker/3981113548_resume aishu.pdf', NULL, '1', '2022-04-12', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate can join only after completing their College Studies', '1', '2', '', '4', '7', '', '2', '2022-05-31', '2', '9', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-04-12 11:55:33', 60, '2022-04-12 03:25:11', 0, NULL, 1),
(8440, 'Karthika devi', '4', '7358927724', '9003586272', 'karthikad213@gmail.com', '2002-06-24', 19, '2', '2', 'C.selvam', 'Checking', 30.00, 2, 0.00, 11.00, 'Tirupur', 'Tirupur', '2204120012', '1', '1', 'upload_files/candidate_tracker/90509933911_resume karthika.pdf', NULL, '1', '2022-04-12', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Can Join Only After Completing Their College Studies', '1', '2', '', '4', '7', '', '2', '2022-05-31', '2', '9', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-04-12 11:55:57', 60, '2022-04-12 03:25:43', 0, NULL, 1),
(8441, 'R.kowsalya', '4', '7395833949', '8122214478', 'kowsalaya0kowsi@gmail.com', '2001-05-30', 20, '2', '2', 'K.rajendran', 'Cutting master', 20000.00, 2, 0.00, 11000.00, 'Tirupur', 'Tirupur', '2204120013', '1', '1', 'upload_files/candidate_tracker/90120926455_kowsalya.R..ptf.pdf', NULL, '1', '2022-04-12', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not fit for telesales', '1', '1', '0', '4', '7', '0', '1', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-04-12 11:56:04', 1, '2022-04-12 12:23:46', 0, NULL, 1),
(8442, 'Abhishek', '16', '7358236407', '', 'cskabi601@gmail.com', '1997-12-24', 24, '2', '2', 'Pranesh', 'Sale rep', 150000.00, 1, 15800.00, 20000.00, 'Madipakkam', 'Madipakkam', '2204120014', '1', '2', 'upload_files/candidate_tracker/10418219978_Abhishek Resume.pdf', NULL, '1', '2022-04-13', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication, not much strong in Excel, Focusing only on the salary, last company only 6 months and looking for salary growth, Will not handle our pressure', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-12 12:47:37', 1, '2022-04-12 01:41:41', 0, NULL, 1),
(8443, 'N. Dinesh Babu', '5', '7305421384', '9884319587', 'dhanushstephen290998@gmail.com', '1999-06-07', 22, '1', '2', 'N. Ethindra babu', 'Coolie', 8000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2204120015', '', '1', 'upload_files/candidate_tracker/50922740638_Resume - Dinesh Babu9.pdf', NULL, '1', '2022-04-12', 0, 'Jobs', '3', '59', '2022-04-22', 146052.00, '', '', '2022-05-04', '2', 'Selected for MIS/Renewals - with take home 12K + PT', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-12 01:07:42', 60, '2022-04-22 10:35:09', 0, NULL, 1),
(8444, 'swathi', '11', '9677767575', '9943542500', 'swathiimahesh@gmail.com', '1990-05-08', 31, '2', '1', 'j umamaheshwaran', 'assistant manager', 55000.00, 1, 12000.00, 18000.00, 'CHENNAI', 'CHENNAI', '2204120016', '1', '2', 'upload_files/candidate_tracker/77505224781_swathi.docx', NULL, '1', '2022-04-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is not suitable for our roles,will not handle our pressure\n', '6', '2', '0', '1', '1', '0', '2', '2022-04-15', '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-12 07:00:27', 1, '2022-04-12 07:33:39', 0, NULL, 1),
(8445, '', '0', '9515571095', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204120017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-12 08:41:48', 0, NULL, 0, NULL, 1),
(8446, 'MJ. SARATH KUMAR', '4', '7339466562', '', 'sarathkumarj02@gmail.com', '1998-04-02', 24, '2', '2', 'John Raj velangannni', 'Formar', 15000.00, 0, 13000.00, 15000.00, 'Chennai', 'Chennai', '2204130001', '23', '2', 'upload_files/candidate_tracker/38279781707_ Sarath Kumar 1998.pdf', NULL, '1', '2022-04-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-13 07:52:43', 1, '2022-04-29 05:18:58', 0, NULL, 1),
(8447, 'Azarudeen', '4', '9486305496', '', 'azarsyed2197@gmail.com', '1997-11-21', 24, '2', '2', 'Syed Ibrahim', 'Business', 30000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2204130002', '1', '1', 'upload_files/candidate_tracker/15220417550_AzarCV_2022-01-20-091533.pdf', NULL, '1', '2022-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Graduation,poor communication,will not handle the sales pressure,not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-13 09:51:26', 85, '2022-04-13 10:07:23', 0, NULL, 1),
(8448, 'Karthikeyan', '4', '9791645020', '8248303907', 'karthikriomathew@gmail.com', '1997-05-17', 24, '2', '2', 'Dheenadhayalan', 'Fertilizer Godown', 19000.00, 1, 0.00, 20000.00, 'Madurai', 'Madurai', '2204130003', '1', '2', 'upload_files/candidate_tracker/23331219386_karthik RioMathew .docx', NULL, '3', '2022-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped - High Salary Min 18K TH ,need to relocate from madurai,much prefer for Madurai only,will not join as he holds multiple offer and looking for additional offers', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-13 11:00:04', 85, '2022-04-13 01:19:01', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8449, 'Sathishkumar', '4', '9965428429', '9500964216', 'Sathishkumar123095@gmail.com', '1996-05-20', 25, '2', '2', 'Velan', 'Garments supervisor', 30000.00, 1, 0.00, 20000.00, 'Tirupur', 'Tirupur', '2204130004', '1', '1', 'upload_files/candidate_tracker/51515882476_sk resume.docx', NULL, '3', '2022-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '2nd Interview Reject by Muthu-by mistake he mentioned as selected', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-13 11:26:31', 85, '2022-04-13 11:49:13', 0, NULL, 1),
(8450, 'Akhilesh', '11', '7348949447', '9113562678', 'akhileshbalkur2@gmail.com', '2001-05-30', 20, '1', '2', 'Soora', 'Cooly', 11000.00, 3, 0.00, 20000.00, 'Kuruvina hithlu Nada padukone', 'Kuruvina hithlu', '2204130005', '', '1', 'upload_files/candidate_tracker/84382364044_Akhilesh.docx', NULL, '1', '2022-04-13', 0, '55636', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-13 11:46:28', 1, '2022-04-13 11:55:41', 0, NULL, 1),
(8451, 'Monisha M', '14', '8124617647', '9842403906', 'monishamanikandan2000@gmail.com', '2000-05-12', 21, '2', '2', 'Manikandan M', 'Supervisor in construction field', 45000.00, 1, 0.00, 18000.00, 'Theni', 'Theni', '2204130006', '1', '1', 'upload_files/candidate_tracker/54809764135_MONISHA_B.E_TN.pdf', NULL, '3', '2022-04-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-04-13 01:17:35', 1, '2022-04-13 01:24:49', 0, NULL, 1),
(8452, 'Revathi', '4', '6381447809', '7094362587', 'revsri75@gmail.com', '2000-04-05', 22, '3', '2', 'Marudhakasi', 'Farmer', 48000.00, 0, 12000.00, 15000.00, 'Pallavaram', 'Pallavaram', '2204130007', '', '2', 'upload_files/candidate_tracker/55088727915_revathi.pdf', NULL, '1', '2022-04-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not suitable have exp in non voice process,no convincing skills,nont comfortable for Arumbakkam location,will not sustain for a long in our roles', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-13 01:50:43', 1, '2022-04-13 01:56:49', 0, NULL, 1),
(8453, 'Hariprasad chandrasekar', '6', '7904921519', '9342389545', 'Haric1999@gmail.com', '1996-01-02', 26, '2', '2', 'Chandrasekar', 'Own business', 40000.00, 1, 19000.00, 20000.00, 'Bhavani', 'Bhavani', '2204130008', '1', '2', 'upload_files/candidate_tracker/1927597578_1593012062275_Hari Resume.pdf', NULL, '1', '2022-04-13', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he want and suitable for part time job only.. because he is working agency in bajaj loan. and shawarma shop. so not suitable for our profile', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-13 02:26:27', 60, '2022-04-13 03:52:12', 0, NULL, 1),
(8454, 'C.Ananthi', '28', '6374762079', '9150951675', 'meera2yadhav@gmail.com', '1999-07-25', 22, '2', '1', 'D/O V.Chinnadurai', 'Farmer', 8000.00, 2, 0.00, 10000.00, 'Kizha minnathur, Kurugulam (po),Thanjavur', 'Minnathur', '2204130009', '1', '1', 'upload_files/candidate_tracker/16433529467_MY RESUME.doc', NULL, '3', '2022-04-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2022-04-13 02:41:31', 1, '2022-04-13 08:24:39', 0, NULL, 1),
(8455, 'Nandha Kumar', '6', '7904370919', '', 'nandhakumar46595@gmail.com', '1996-04-21', 25, '2', '2', 'NATARAJAN', 'Silver Smith', 200000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2204130010', '1', '2', 'upload_files/candidate_tracker/89126412373_NANDHA RESUME.doc', NULL, '3', '2022-04-13', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit our profile..', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-13 03:35:03', 85, '2022-04-13 05:21:27', 0, NULL, 1),
(8456, 'AISWARYA S', '6', '8428071968', '9585368684', 'aiswaryagomathi23@gmail.com', '1999-06-23', 22, '4', '1', 'S KARTHIKRAMAN', 'ICL FINCORP PVT LTD', 20000.00, 1, 14500.00, 15000.00, '18, Bhagavathi Amman Kovil Street, ERODE', '18, Bhagavathi Amman Kovil Street, Erode', '2204130011', '', '2', 'upload_files/candidate_tracker/61159375946_AISWARYA RESUME (1).docx', NULL, '1', '2022-04-13', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'marriage women.. but not sure to do this job .. kindly cross check', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-13 03:50:56', 60, '2022-04-13 04:10:33', 88, '2022-09-13 05:50:48', 0),
(8457, 'Sivaranjani G', '11', '7708505735', '', 'gsranjani07@gmail.com', '1997-03-07', 25, '2', '2', 'Gangadharan', 'Driver', 10000.00, 0, 0.00, 2500000.00, 'Neyveli', 'Neyveli', '2204130012', '1', '1', 'upload_files/candidate_tracker/5260873165_SIVARANJANI G_ Resume[1.0].pdf', NULL, '2', '2022-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Is Good, Fresher For Recruitment, Have 3 Months Internship Exp In SAP Profiles Only. Looking Much For IT Recruitment Positions Only, Not Sure To Handle The Other Domains. Salary Exp In Very High Min 15K Being A Fresher. Sustainability Doubts A Lot, Let Us Hold And Decide Later.', '6', '1', '', '1', '1', '', '2', '2022-04-22', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-13 04:10:32', 60, '2022-04-13 06:13:17', 0, NULL, 1),
(8458, 'KESHIKA.P', '11', '9176150179', '', 'kavikeshu66@gmail.com', '1996-10-22', 25, '2', '1', 'Panneer selvam', 'Driver', 30000.00, 0, 15000.00, 18000.00, 'Sholingaur', 'Sholingaur', '2204130013', '1', '2', 'upload_files/candidate_tracker/45634395462_Updated resume.keshika.docx', NULL, '3', '2022-04-15', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Recruitment, Looking for WFH only also she is pregnant now, will not sustain for a long ,not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-13 04:27:02', 1, '2022-04-15 11:35:58', 0, NULL, 1),
(8459, 'PARTHIPAN', '21', '9500404296', '', 'parthi638104@gmail.com', '1988-11-04', 33, '2', '2', 'Shanmugam', 'Home Maker', 0.00, 0, 11000.00, 15000.00, 'Erode', 'Coimbatore', '2204130014', '1', '2', 'upload_files/candidate_tracker/72102938002_RESUME NEW .pdf', NULL, '1', '2022-04-15', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-13 06:00:51', 1, '2022-04-13 06:06:12', 0, NULL, 1),
(8460, '', '0', '7598263776', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-14 10:56:31', 0, NULL, 0, NULL, 1),
(8461, 'Kayalvizhi Periyasamy', '4', '9952594388', '9788691537', 'Kayalperiyasamy011@gmail.com', '1997-06-26', 24, '1', '2', 'Periyasamy', 'Lorry driver', 20000.00, 2, 12000.00, 12000.00, 'Sankagiri', 'Sankagiri', '2204150001', '', '2', 'upload_files/candidate_tracker/34335603955_23462.docx', NULL, '1', '2022-04-15', 0, 'Cafs', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is not suitable for tele sales she is like only non-voice  process', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-15 10:01:28', 60, '2022-04-15 11:47:16', 0, NULL, 1),
(8462, 'K.MOHABUKHAN', '6', '8148750744', '9566384713', 'Benazirkhan94@gmail.com', '1994-06-15', 27, '1', '1', 'SHERIN FATHIMA', 'House wife', 28000.00, 1, 28000.00, 30000.00, 'Nuggambakkam', 'Nuggambakkam', '2204150002', '', '2', 'upload_files/candidate_tracker/23499803291_RESUME1.docx', NULL, '1', '2022-04-15', 0, 'P1065', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'shortlist  not joining\n', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-15 03:01:28', 60, '2022-04-15 03:48:02', 0, NULL, 1),
(8463, 'Sakthivel', '4', '9597609636', '8428695302', 'sakthisai7758@gmail.com', '2000-08-18', 21, '2', '2', 'Alagarsamy', 'Driver', 25000.00, 1, 0.00, 18000.00, 'Theni', 'Theni', '2204160001', '1', '1', 'upload_files/candidate_tracker/81415312481_SAKTHIVEL(1).pdf', NULL, '3', '2022-04-16', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-16 10:47:16', 85, '2022-04-16 11:10:42', 0, NULL, 1),
(8464, 'Aravind Ramalingam', '4', '7904540194', '7373449073', 'aravindepp19@gmail.com', '1999-08-19', 22, '2', '2', 'Ramalingam', 'Farmer', 13000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2204160002', '1', '1', 'upload_files/candidate_tracker/24282449686_Aravind Resume (1).pdf', NULL, '1', '2022-04-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped as the candidate is not interested to take forward this position', '1', '1', '', '4', '5', '', '2', '2022-04-19', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-16 11:28:17', 85, '2022-04-18 09:38:52', 0, NULL, 1),
(8465, 'Jagadeeshwar', '6', '9080404533', '9941421099', 'jwar5687@gmail.com', '1996-10-20', 25, '2', '2', 'Eswar', 'Self employed', 30000.00, 2, 19000.00, 22000.00, 'Chennai', 'Chennai', '2204160003', '1', '2', 'upload_files/candidate_tracker/83374977834_j.pdf', NULL, '1', '2022-04-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested in Insurance Sales', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-16 11:32:05', 1, '2022-04-18 11:17:10', 0, NULL, 1),
(8466, 'Anand', '6', '7217708252', '', 'anand5668123@gmail.com', '1997-02-06', 25, '1', '2', 'P.mani....M.saraswathii', 'Tellecaaler', 8000.00, 3, 18000.00, 17000.00, 'Ellachiipalayam', 'Ellachiipalayam', '2204160004', '', '2', 'upload_files/candidate_tracker/4207585314_PDF Gallery_20220226_170127.pdf', NULL, '3', '2022-04-16', 0, 'P1303', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no degree and no interview basic skills.. ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-16 12:50:24', 60, '2022-04-16 04:08:49', 0, NULL, 1),
(8467, '', '0', '6374131991', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204160005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-16 12:53:03', 0, NULL, 0, NULL, 1),
(8468, 'S.Ishwarya', '4', '7092795728', '7373309867', 'Ishuaakash98@gmail.com', '1998-06-20', 23, '3', '2', 'R.Sivakumar', 'Machine operator', 23000.00, 1, 12000.00, 15000.00, 'Erode', 'Erode', '2204160006', '', '2', 'upload_files/candidate_tracker/28451945334_RESUME..pdf', NULL, '1', '2022-04-16', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-16 02:17:50', 1, '2022-04-16 03:24:42', 0, NULL, 1),
(8469, 'Kiruthiga K', '4', '9384298300', '7010658183', 'keerthikathir99@gmail.com', '1999-10-29', 22, '2', '2', 'Kathiresan P', 'Driver', 25000.00, 1, 10000.00, 25000.00, '13 Pandi Kovil 1st St sammattipuram Madurai - 16', '13 Pandi Kovil 1st St Sammattipuram Madurai - 16', '2204160007', '1', '2', 'upload_files/candidate_tracker/22843820100_Kiruthiga K CV1.pdf', NULL, '2', '2022-04-18', 30, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Sounds Good Looking for Opportunites in Chennai,Salary Exp is Hgh,we suggested the max what we can offer,she needs time to give her confirmation', '1', '1', '0', '1', '3', '0', '2', '2022-04-21', '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-16 07:40:08', 1, '2022-04-17 02:09:15', 0, NULL, 1),
(8470, '', '0', '9585521875', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204170001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-17 04:27:00', 0, NULL, 0, NULL, 1),
(8471, '', '0', '7010658183', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204170002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-17 05:19:39', 0, NULL, 0, NULL, 1),
(8472, 'Mohamed Lathan M. M', '4', '7502499318', '', 'salmanffc1610@gmail.com', '2001-10-16', 20, '2', '2', 'Mohamed Hussain', 'Decoration', 10000.00, 2, 0.00, 15000.00, '2/345, Yahya Nagar, Mela valuthoor, Thanjavur', '2/345, Yahya Nagar, Mela valuthoor, Thanjavur', '2204170003', '1', '1', 'upload_files/candidate_tracker/72563244507_Mohamed Lathan.pdf', NULL, '1', '2022-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-17 07:51:04', 1, '2022-04-17 08:15:43', 0, NULL, 1),
(8473, 'Jayashree S', '4', '9840982904', '9789803151', 'jayashree201833@gmail.com', '2000-03-03', 22, '1', '2', 'Sampath Kumar', 'Painter', 10000.00, 1, 0.00, 15000.00, 'No 4/A Padavattamman Kovil street', 'Chinthadripet', '2204180001', '', '1', 'upload_files/candidate_tracker/14603238988_S Jayashree Resume..pdf', NULL, '1', '2022-04-18', 0, 'CI114', '3', '59', '2022-04-20', 132000.00, '', '6', '2022-06-18', '2', 'Selected for B2B in Staff Role - Patroniss Employee', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '6', 'Offer - Documents upload link shared', '', '', '', NULL, NULL, NULL, 1, '2022-04-18 10:34:46', 60, '2022-04-18 05:24:22', 0, NULL, 1),
(8474, 'D DINAKAR PRASAD', '4', '9344821928', '7868812617', 'dinakar273@gmail.com', '2000-06-11', 21, '1', '2', 'DURAISAMY', 'Former', 20000.00, 2, 0.00, 20000.00, '2/122 arasamaram street karlambakkam', 'Vadapalani', '2204180002', '', '1', 'upload_files/candidate_tracker/53339403538_Resume_08_11_2021_01_32_49_pm.pdf', NULL, '1', '2022-04-18', 0, 'P1065', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open up ,will not sustain in our sales', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-18 10:57:17', 1, '2022-04-18 11:02:19', 0, NULL, 1),
(8475, 'Srilakshmi.R', '4', '7395891837', '7373191837', 'srilakshmiraja12345@gmail.com', '2001-06-25', 20, '1', '2', 'Poongodi', 'House Keeping', 20000.00, 2, 9000.00, 15000.00, 'Erode', 'Erode', '2204180003', '', '2', 'upload_files/candidate_tracker/40135320888_Srilakshmi resume.pdf', NULL, '1', '2022-04-18', 0, 'CI133', '3', '59', '2022-04-19', 132000.00, '', '3', '2022-12-01', '2', 'Selected for Tanjore Lcoation in consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-04-18 11:06:21', 60, '2022-08-16 07:50:34', 0, NULL, 1),
(8476, 'S. piruthika', '4', '7010590282', '', 'piruthika@gmail.com', '1998-07-28', 23, '2', '2', 'Somasundaram', 'House wife', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2204180004', '1', '1', 'upload_files/candidate_tracker/3949307107_1610866861384_piruthika.s%20resume%202-1.pdf', NULL, '1', '2022-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-18 12:05:59', 1, '2022-04-18 12:10:45', 0, NULL, 1),
(8477, 'Ramkumar', '4', '9600639305', '8248203009', 'ramk2830@gmail.com', '1993-10-16', 28, '2', '2', 'Ravichandran', 'Working', 20000.00, 1, 18000.00, 20000.00, 'Viralimalai', 'Viralimalai', '2204180005', '1', '2', 'upload_files/candidate_tracker/11495939785_ramkumar (1).pdf', NULL, '3', '2022-04-18', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Tried couple of times,RNR', '1', '1', '', '1', '1', '', '2', '2022-05-02', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-18 12:12:15', 85, '2022-04-18 12:38:11', 0, NULL, 1),
(8478, 'ashok kumar', '4', '8838325355', '', 'ashok.B.Sc41@gmail.com', '1994-03-18', 28, '2', '2', 'venkatesan', 'retailer', 15000.00, 0, 13000.00, 15000.00, 'chennai', 'chennai', '2204180006', '2', '2', 'upload_files/candidate_tracker/77852886711_WhatsApp Image 2022-04-18 at 11.29.42 AM (2).pdf', NULL, '1', '2022-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-18 12:25:15', 1, '2022-04-18 12:32:29', 0, NULL, 1),
(8479, 'Muthamil selvi', '4', '8925039463', '8807692925', 'smuthamil04@gmail.com', '1999-01-05', 23, '2', '2', 'Sasikumar', 'Wages', 10000.00, 1, 10000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2204180007', '1', '2', 'upload_files/candidate_tracker/21970400898_Muthamil Selvi.pdf', NULL, '1', '2022-04-18', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-18 02:13:06', 1, '2022-04-18 03:06:08', 0, NULL, 1),
(8480, 'R.jeevarathinam', '4', '9384223025', '9944280489', 'jeevasai22@gmail.com', '2000-03-29', 22, '2', '2', 'R.m. rajanayagam', 'Wages', 10000.00, 2, 10000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2204180008', '1', '2', 'upload_files/candidate_tracker/4302763254_Jeevarathinam.R.pdf', NULL, '1', '2022-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-18 02:13:44', 1, '2022-04-18 02:39:12', 0, NULL, 1),
(8481, 'VISHALI A', '10', '7358026369', '', 'vishali0107@gmail.com', '2007-04-18', 15, '2', '2', '01/07/2001', 'Sales officer', 10000.00, 1, 17000.00, 25000.00, 'Pallavaram', 'Pallavaram', '2204180009', '1', '2', 'upload_files/candidate_tracker/80771133614_VISHALI RESUME.docx', NULL, '1', '2022-04-23', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-18 03:37:36', 1, '2022-04-18 04:33:31', 0, NULL, 1),
(8482, 'prabhakaran', '4', '9176301212', '', 'antopraba1014@gmail.com', '1994-01-15', 28, '2', '2', 'raghu', 'steel work', 15000.00, 1, 13000.00, 15000.00, 'chennai', 'tobdairpet', '2204180010', '2', '2', 'upload_files/candidate_tracker/7163549460_PRABA (RESUME)5 (1).docx', NULL, '1', '2022-04-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-18 04:40:14', 1, '2022-04-18 04:41:44', 0, NULL, 1),
(8483, 'sakthi', '6', '9952846759', '', 'sakthidcruze006@gmail.com', '1999-11-25', 22, '2', '2', 'ramachandran', 'mechanical', 15000.00, 0, 0.00, 13000.00, 'bpagraharam', 'bpagraharam', '2204180011', '1', '1', 'upload_files/candidate_tracker/11960754939_0_RESUME.docx', NULL, '1', '2022-04-21', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not fit for our profile.. not fit in sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-18 06:14:45', 60, '2022-04-21 01:17:10', 0, NULL, 1),
(8484, 'Pavithra . B', '4', '6381548977', '6374434417', 'itspavi54@gmail.com', '2001-04-06', 21, '2', '2', 'Boopathi.C', 'Daily weager', 12000.00, 2, 0.00, 15000.00, '400/Kuthiraikkalmedu, Bhavani (T.K),Erode(D.T)', '400/Kuthiraikkalmedu, Bhavani (T.K),Erode(D.T)', '2204180012', '1', '1', 'upload_files/candidate_tracker/70455513482_Pavithra resume.pdf', NULL, '1', '2022-04-21', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'she is not suitable for telesales', '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-18 06:44:57', 1, '2022-04-18 06:56:54', 0, NULL, 1),
(8485, 'M.cibe', '4', '8610698215', '7418477501', 'cibemack@gmail.com', '1999-04-02', 23, '2', '2', 'J.Mariaselvam, Jothi', 'Ex army', 40000.00, 4, 0.00, 15000.00, 'No15 Annai Theresa Street, Nirmala Nagar, chetpet,', 'Pallavaram', '2204190001', '1', '1', 'upload_files/candidate_tracker/27428129896_lastshared.pdf', NULL, '1', '2022-04-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-19 09:56:29', 1, '2022-04-19 10:01:51', 0, NULL, 1),
(8486, 'S Bhagavathi', '6', '9659844039', '9942245799', 'bhagalit@gmail.com', '1998-12-12', 23, '2', '2', 'Sivalakshmi', 'None', 12.00, 1, 0.00, 15.00, 'Erode', 'Erode', '2204190002', '1', '1', 'upload_files/candidate_tracker/53309356170_Resume.pdf', NULL, '1', '2022-04-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is 50 50 only.. she is discuss with family and informed so we will rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-19 10:56:49', 60, '2022-04-20 10:36:13', 0, NULL, 1),
(8487, 'Prem Kumark', '6', '9591236931', '8056240068', 'Premjipj17@gmail.com', '1995-06-17', 26, '1', '2', 'Kanthraj', 'Building contract', 45000.00, 1, 35000.00, 35000.00, 'Banglore', 'Banglore', '2204190003', '', '2', 'upload_files/candidate_tracker/99124316476_prem kumar resume.docx', NULL, '1', '2022-04-19', 15, 'Pp1174', '1', '34', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-19 12:25:51', 1, '2022-04-19 12:56:37', 0, NULL, 1),
(8488, 'Vinothini Veerasekar', '11', '8925653715', '', 'Vinothiniveerasekar@gmail.com', '1995-12-20', 26, '2', '2', 'Veerasekaran R', 'Refinery technician', 80000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2204190004', '1', '1', 'upload_files/candidate_tracker/16145503364_Vinothini Resume U.docx', NULL, '1', '2022-04-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-19 03:16:53', 1, '2022-04-19 03:25:59', 0, NULL, 1),
(8489, '', '0', '8610406113', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204190005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-19 06:29:32', 0, NULL, 0, NULL, 1),
(8490, 'Sugapriya', '6', '8754286933', '6380277298', 'sugikapoor.97@gmail.com', '1996-07-26', 25, '2', '2', 'S.thangavelu', 'Retired co-operative sales man', 15000.00, 1, 15000.00, 18000.00, 'Erode', 'Erode', '2204190006', '1', '2', 'upload_files/candidate_tracker/80747172160_Sugapriya Resume-converted-2-converted.pdf', NULL, '1', '2022-04-20', 1, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is not interested in sales ', '5', '1', '', '4', '7', '', '2', '2022-04-21', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-19 07:15:08', 60, '2022-04-20 10:36:49', 0, NULL, 1),
(8491, 'S. Anitha', '6', '7305866936', '8939583530', 'Anithasankar888@gmail.com', '2001-01-08', 21, '3', '2', 'Mr . Sankar', 'Daily wage', 15000.00, 1, 12000.00, 14000.00, 'Pallavaram', 'Pallavaram', '2204190007', '', '2', 'upload_files/candidate_tracker/57136698591_anitha resume.docx', NULL, '1', '2022-04-19', 0, '', '3', '59', '2022-05-05', 156000.00, '', '5', '1970-01-01', '1', 'Dropped ,candidate is not interested in the position, messaged us stating not interested,Not responding the calls', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Candidate  had come back with her confirmation to join', '', '', '', NULL, NULL, NULL, 1, '2022-04-19 08:21:32', 60, '2022-05-04 07:04:52', 0, NULL, 1),
(8492, 'Samuvel A', '6', '9095264315', '9489761801', 'samuelthiaar@gmail.com', '1996-12-24', 25, '1', '2', 'Arunugam K', 'Electrician', 12000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2204200001', '', '1', 'upload_files/candidate_tracker/64402328747_SAMUVEL A-converted.pdf', NULL, '1', '2022-04-20', 0, 'P1303', '3', '59', '2022-04-22', 192000.00, '', '', '2022-05-02', '1', 'Selected for Suthagar Erode Team in consultant role', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-20 11:30:14', 60, '2022-04-21 06:18:37', 0, NULL, 1),
(8493, 'Logeswari', '11', '9940128413', '9940012269', 'Logeswari411@gmail.con', '1998-11-04', 23, '3', '2', 'V. Sivakumar', 'Watchman', 15000.00, 1, 0.00, 15000.00, '145 Vengadason st,new Anna nagar,Thirumullaivoyal', '145 Vengadason St,New Anna Nagar, Thirumullaivoyal', '2204200002', '', '1', 'upload_files/candidate_tracker/68467165055_LOGESWARI.pdf', NULL, '1', '2022-04-20', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Fresher and have internship Exp, can be trained, only location distance need to be considered, kindly check and let me know your inputs', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-20 11:34:31', 1, '2022-04-20 12:05:24', 0, NULL, 1),
(8494, 'Vaitheeswari c', '4', '9150206911', '', 'vaitheeswari.vaithee5454@gmail.com', '1998-11-01', 23, '3', '2', 'chandrakanth r', 'watchman', 8000.00, 0, 0.00, 15000.00, 'tvk', 'Tvk', '2204200003', '', '1', 'upload_files/candidate_tracker/47661504248_CADD_Confirm.pdf', NULL, '1', '2022-04-20', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Internal Team(Esales Kanmani Reference),Suitability for ESales doubt,check for B2B and let me know', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-20 11:57:44', 60, '2022-04-20 05:48:32', 0, NULL, 1),
(8495, 'deepak kumar', '4', '9944061860', '', 'lookdeepakkumar@gmail.com', '1997-07-11', 24, '2', '2', 'sanjay kumar', 'oil operator', 15000.00, 1, 0.00, 12000.00, 'villupuram', 'chennai', '2204200004', '2', '1', 'upload_files/candidate_tracker/43673920333_Resume .pdf', NULL, '1', '2022-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much prefer for non voice,also no basic ideas using Excel,Will not sustain and handle our work pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-20 12:14:14', 1, '2022-04-20 12:16:17', 0, NULL, 1),
(8496, 'prakash', '4', '9655135248', '', 'yoyoprakash94@gmail.com', '2001-01-18', 21, '2', '2', 'rajan', 'civil worker', 30000.00, 1, 0.00, 15000.00, 'sathiyamanagalm', 'Sathiyamanagalm', '2204200005', '1', '1', 'upload_files/candidate_tracker/86940224061_R.Prakash resume.docx', NULL, '2', '2022-04-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-20 12:17:01', 1, '2022-04-20 01:23:16', 0, NULL, 1),
(8497, 'Manish Kumar R K', '11', '9597741613', '7708450764', 'manishmk1516@gmail.com', '1998-10-15', 23, '2', '2', 'Kumara Guru R', 'Railways', 800000.00, 1, 240000.00, 320000.00, 'Thiruvallur', 'Thiruvallur', '2204200006', '1', '2', 'upload_files/candidate_tracker/17833381040_ManishMBAResumeFinal.pdf', NULL, '1', '2022-04-20', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Good in communication,have 6 months Exp in Recruitment,travelling from so long,kinldy check and let me know your inputs', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-20 12:49:39', 1, '2022-04-20 12:52:54', 0, NULL, 1),
(8498, 'R. Sivanandhan', '6', '8778336849', '9003636247', 'Sivanithyasri72@gmail.com', '2001-06-28', 20, '2', '2', 'N. Raman', 'Cooli', 18000.00, 1, 0.00, 15000.00, '25/1 poosarithottam kaveri Street soolai erode', 'Erode', '2204200007', '1', '1', 'upload_files/candidate_tracker/91135681805_Resume (2).docx', NULL, '1', '2022-04-20', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected..', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-20 01:05:01', 60, '2022-04-20 05:50:44', 88, '2022-09-13 05:50:48', 0),
(8499, 'V.vigneshwaran', '4', '9841093730', '', 'vigneshvasu25@gmail.com', '2000-07-20', 21, '2', '2', 'Vasu', 'Business', 70000.00, 0, 0.00, 15000.00, 'Mannady', 'Mannady', '2204200008', '1', '1', 'upload_files/candidate_tracker/93205428681_5_6251313122527676105.pdf', NULL, '1', '2022-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,he is focus only for IT positions particularly python and just for time being 6 months he will be in telecalling also need to open a lot,not suitable.In python not that much strong', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-20 01:41:00', 1, '2022-04-20 02:03:13', 0, NULL, 1),
(8500, '', '0', '8608709913', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-20 03:54:10', 0, NULL, 0, NULL, 1),
(8501, 'Sasikumar', '6', '6379681691', '6865954242', 'sasikumark69575@gmail.com', '2000-10-12', 21, '2', '2', 'Karuppannan,vhitra', 'Former', 8000.00, 1, 10000.00, 16000.00, 'Kaveripatti', 'Kaveripatti', '2204200010', '1', '2', 'upload_files/candidate_tracker/6406499019_Sasikumar.pdf', NULL, '1', '2022-04-21', 3, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not fit for sales .. he is interested in data entry job only', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-20 05:07:02', 60, '2022-04-21 01:17:19', 0, NULL, 1),
(8502, 'Pavithra', '11', '9363584782', '7395946737', 'Pavithramahalingam2012@gmail.com', '1998-12-20', 23, '2', '2', 'Mahalingam', 'Business', 20000.00, 2, 12000.00, 18000.00, 'Chennai', 'T.nagar', '2204200011', '1', '2', 'upload_files/candidate_tracker/29377868025_Pavithra Resume - HR Assistant.pdf', NULL, '1', '2022-04-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication No,Have 7 months but no basic knowledge in the recruitment,Not suitable for our postiion,will not sustain', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-20 07:29:51', 60, '2022-04-25 04:40:17', 0, NULL, 1),
(8503, 'Mohanraj', '6', '9095930064', '9629298961', 'mohanrajperiyasamy98@gmail.com', '1998-05-06', 23, '2', '2', 'Nandhini', 'Agriculture', 15000.00, 0, 14000.00, 17000.00, 'Tiruppur', 'Tiruppur', '2204200012', '1', '2', 'upload_files/candidate_tracker/22348452600_Mohanraj Resume.pdf', NULL, '3', '2022-04-21', 15, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-20 09:49:38', 60, '2022-04-22 11:43:41', 0, NULL, 1),
(8504, 'M.Bowsika', '4', '9841128709', '9840444016', 'Bowsika@gmail.com', '2000-08-31', 21, '2', '2', 'V.Muthu M.laskmi', 'Vegetable Shop owner', 20000.00, 2, 0.00, 10000.00, 'Chepauk', 'Chepauk', '2204210001', '1', '1', 'upload_files/candidate_tracker/6835066638_D NARAYANA RAO.PDF', NULL, '1', '2022-04-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOt suitable,will not sustain in our pressure', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-21 01:34:26', 85, '2022-04-22 12:42:26', 0, NULL, 1),
(8505, 'Gayathri. V', '11', '9360570407', '6374892059', 'kannama2817@gmail.com', '2001-04-28', 20, '4', '2', 'S. P. Venkatesh', 'Business', 300000.00, 1, 20000.00, 25000.00, '116/57 chinnamanikar street chengalpattu', '116/57 chinnamanikar street chengalpattu', '2204210002', '', '2', 'upload_files/candidate_tracker/27861843844_GAYATHRI-converted.pdf', NULL, '1', '2022-04-21', 15, '', '2', '59', NULL, 0.00, '', '4', '2022-09-08', '2', 'communication ok,have exp in recruitment,can be trained,only thing is location she is from chengalpet,2nd Round interviewed by gokul and the profile is on hold', '6', '1', '0', '1', '1', '0', '2', '2022-04-25', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-21 02:48:15', 1, '2022-04-21 02:55:04', 0, NULL, 1),
(8506, '', '0', '9346672085', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204210003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-21 06:02:15', 0, NULL, 0, NULL, 1),
(8507, 'Ganga T', '4', '7871472701', '', 'gangasri9121@gmail.com', '2000-01-09', 22, '2', '2', 'Thangaraj', 'Plummer', 15000.00, 1, 10000.00, 12000.00, 'Erode', 'Erode', '2204210004', '1', '2', 'upload_files/candidate_tracker/22651835665_Ganga (2).pdf', NULL, '1', '2022-04-21', 0, '', '3', '59', '2022-05-02', 132000.00, '', '6', '2022-10-12', '2', 'Selected for Erode  - Consultant Role', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-21 06:57:37', 60, '2022-04-22 04:17:56', 0, NULL, 1),
(8508, 'SURYAKUMAR', '4', '9025108697', '9486504887', 'suryakumar.m1000@gmail.com', '1999-02-08', 23, '2', '2', 'Murugavel A', 'Retired police officer', 20000.00, 1, 0.00, 18000.00, 'Chidambaram', 'Chidambaram', '2204210005', '1', '1', 'upload_files/candidate_tracker/84958156669_Surya Kumar M Resume.pdf', NULL, '2', '2022-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-21 07:02:05', 1, '2022-04-21 07:21:41', 0, NULL, 1),
(8509, 'Sukanya', '11', '8610975312', '8056351557', 'vijaysindhu0922@gmail.com', '1992-11-25', 29, '2', '1', 'Vishwam', 'Engineer', 45000.00, 1, 14000.00, 17000.00, 'Chennai', 'Hyderabad', '2204210006', '1', '2', 'upload_files/candidate_tracker/20274311592_sukanyaresumeee nw.docx', NULL, '3', '2022-04-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Few Months Exp In Recruitment,Career Gap Is There,Long Run Doubt With This Profile,Can Hold This Profile And Let Us Try Later', '6', '2', '0', '1', '1', '0', '2', '2022-05-02', '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-21 07:24:36', 1, '2022-04-21 07:51:40', 0, NULL, 1),
(8510, 'Nehru. G', '4', '8489475413', '', 'nehrupolice100@gmail.com', '1998-11-21', 23, '3', '2', 'P. Ganesan', 'Farmer', 17000.00, 2, 14000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2204210007', '', '2', 'upload_files/candidate_tracker/10407963677_NEHRU RESUME EDIT Edit-1.docx', NULL, '1', '2022-09-26', 30, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-21 08:28:28', 85, '2022-09-26 11:50:52', 0, NULL, 1),
(8511, 'Gokulraj', '4', '8667740239', '9443880480', 'ngokulraj98@gmail.com', '1998-07-31', 23, '2', '2', 'Neelamegam', 'Home', 15000.00, 1, 12000.00, 15000.00, 'Salem', 'Salem', '2204220001', '1', '2', 'upload_files/candidate_tracker/37656752425_RAJ final  1.pdf', NULL, '3', '2022-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-22 09:43:28', 1, '2022-04-22 09:50:16', 0, NULL, 1),
(8512, 'Akshay prabhu', '5', '7624877904', '', 'akshayprabhu306@gmail.com', '2000-02-20', 22, '1', '2', 'Ganesh prabhu', 'Business', 15000.00, 0, 0.00, 25000.00, 'Mantri Alpyne', 'Mantri Alpyne', '2204220002', '', '1', 'upload_files/candidate_tracker/98171649947_Resume_Akshay Prabhu_Format3.pdf', NULL, '1', '2022-04-22', 0, '55636', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-22 11:30:34', 1, '2022-04-22 11:39:29', 0, NULL, 1),
(8513, 'M.Gokila', '4', '6383211457', '9585153548', 'GOKILAPADMA1405@GMAIL.COM', '2001-05-14', 20, '1', '2', 'M.padmaselvam', 'Mannargudi', 48000.00, 3, 15000.00, 15000.00, '462,Athaniyar street,eda-melaiyur', '462,Athaniyar street eda-melaiyur', '2204220003', '', '2', 'upload_files/candidate_tracker/85038922805_goki resume.docx', NULL, '1', '2022-04-22', 1, 'P1023', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-22 11:35:50', 60, '2022-04-22 12:30:13', 0, NULL, 1),
(8514, 'Haarish Abdullah S', '4', '9952784928', '', 'haarishabdullah@gmail.com', '2007-04-22', 0, '4', '2', 'Sheik Abdullah N', 'Business', 30000.00, 1, 0.00, 15000.00, 'Bodinayakanur-theni district', 'Anna nagar chennai', '2204220004', '', '1', 'upload_files/candidate_tracker/44942494271_HAARISH RESUME new.pdf', NULL, '1', '2022-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-22 11:39:25', 1, '2022-04-22 11:42:38', 0, NULL, 1),
(8515, 'k.gayathri', '4', '8110943565', '8220527785', 'gayukamaraj1@gmail.com', '1998-12-29', 23, '3', '2', 'k.devi', 'housewife', 300000.00, 0, 0.00, 15000.00, 'karambakudi', 'karambakudi', '2204220005', '', '1', 'upload_files/candidate_tracker/76791361053_RESUME gayu.pdf', NULL, '1', '2022-04-22', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-22 12:00:33', 1, '2022-04-22 02:40:12', 0, NULL, 1),
(8516, 'M.Elakkia', '4', '8098443305', '9047895574', 'elakkiamogan02@gmail.com', '1997-08-02', 24, '1', '2', 'L.Mohan doss', 'Driver', 50000.00, 1, 0.00, 9000.00, 'Pattukottai bypass road', 'Thanjavur', '2204220006', '', '2', 'upload_files/candidate_tracker/32203677184_ELAKKIA RESUME.pdf.pdf', NULL, '1', '2022-04-22', 0, 'P1023', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped Candidate didnt come back with her Confirmation and not responding to the calls\n', '1', '2', '', '4', '2', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-22 12:01:12', 60, '2022-04-22 12:30:37', 0, NULL, 1),
(8517, 'LAKSHANA', '21', '8072283679', '7358469215', 'lakshanavicky1980@gmail.com', '1998-09-10', 23, '2', '2', 'Priya', 'Junior associated', 30500.00, 0, 10500.00, 18000.00, 'New perungalathur', 'New perungalathur', '2204220007', '1', '2', 'upload_files/candidate_tracker/864754693_Resume_K.R. Lakshana_Format1.pdf', NULL, '1', '2022-04-23', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-22 01:32:35', 1, '2022-04-22 01:42:12', 0, NULL, 1),
(8518, 'PREETHI J', '11', '8939022650', '', 'preethijohnson12@gmail.com', '1999-08-12', 22, '2', '1', 'N ASAIPANDI', 'Physical director', 40000.00, 0, 18000.00, 25000.00, 'TIRUVALLUR', 'Medavakkam', '2204220008', '1', '2', 'upload_files/candidate_tracker/21138949736_Preethi Johnson.pdf', NULL, '1', '2022-04-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Didnt Turn with her confirmation', '6', '1', '', '1', '1', '', '2', '2022-05-23', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-22 03:52:12', 1, '2022-04-23 11:44:13', 0, NULL, 1),
(8519, 'JAYABHARATHI. D', '4', '7200667809', '', 'djayabharathi1997@gmail.com', '1997-07-20', 24, '2', '2', 'M.Dharumalingam', 'Daily wages', 3000.00, 3, 0.00, 15000.00, 'Villupuram', 'Ambattur', '2204220009', '1', '1', 'upload_files/candidate_tracker/58736733743_DocScanner 22 Apr 2022 4-44 pm.pdf', NULL, '1', '2022-04-23', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok have Exp in telecalling  Bajaj Finance, can give a try kindly check and let me know your inputs', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-22 04:24:56', 85, '2022-04-22 06:19:56', 0, NULL, 1),
(8520, '', '0', '8056456821', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204220010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-22 06:51:54', 0, NULL, 0, NULL, 1),
(8521, 'Ragul S', '4', '8807332373', '8072570513', 'ragulsmba@gmail.com', '1996-09-16', 25, '2', '2', 'Selvaraj C', 'Daily Wages', 30000.00, 1, 0.00, 13000.00, 'Erode', 'Erode', '2204230001', '1', '1', 'upload_files/candidate_tracker/62388084754_New Resume Ragul.docx', NULL, '1', '2022-04-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-23 10:33:05', 85, '2022-04-23 10:51:14', 0, NULL, 1),
(8522, 'S RAMAKRISHNA', '4', '9787191429', '', 'ramakrishna.2146@gmail.com', '1999-07-21', 22, '3', '2', 'SEKAR R', 'CURRENTLY SEARCHING', 20.00, 1, 0.00, 10000.00, 'Thanjavur', 'THANJAVUR', '2204230002', '', '1', 'upload_files/candidate_tracker/24768134_RESUME .pdf', NULL, '1', '2022-04-23', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-23 10:37:16', 1, '2022-04-23 10:42:21', 0, NULL, 1),
(8523, 'Sasi kumar S', '4', '6379558021', '', 'ssasi9539@gmail.com', '2000-04-15', 22, '3', '2', 'Nil', 'Nil', 0.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2204230003', '', '1', 'upload_files/candidate_tracker/97842445183_WhatsAppImage20220422at12.30.09PMconverted.pdf', NULL, '1', '2022-04-23', 0, '', '3', '59', '2022-04-25', 138948.00, '', '', '1970-01-01', '1', 'Selected for Elite Arumbakkam,After 3 months will promote him as a RE Arumbakam  along with the salary revision based on the performance\n', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-23 12:01:13', 60, '2022-04-23 02:47:58', 0, NULL, 1),
(8524, '', '0', '7975754580', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204230004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-23 12:28:31', 0, NULL, 0, NULL, 1),
(8525, 'narthana', '13', '8903708746', '', 'narthanakrishnaraj19@gmail.com', '1998-03-19', 24, '2', '2', 'krishnaraj', 'dentist', 20000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2204230005', '2', '2', 'upload_files/candidate_tracker/39949365318_0_Narthana Resume.pdf', NULL, '1', '2022-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking opportunities in Remote, not comfortable with the timings', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-23 12:42:45', 1, '2022-04-23 12:45:35', 0, NULL, 1),
(8526, 'Priyadharshini', '16', '9840623347', '', 'Dharshini1200@gmail.com', '2000-06-10', 21, '2', '2', 'S.Thainasmary', 'House wife', 20000.00, 1, 15000.00, 20000.00, 'No:2786 firstmain road ,MMDA , Mathur chennai', 'No:2786 Firstmain Road ,MMDA , Mathur Chennai', '2204230006', '1', '2', 'upload_files/candidate_tracker/75785509735_RESUME-PRIYA DHARSHINI S.docx', NULL, '1', '2022-04-25', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication,not open up,will not handle the pressure,not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-23 01:19:03', 1, '2022-04-23 07:17:57', 0, NULL, 1),
(8527, 'A.Durga devi', '4', '9498890420', '', 'durgadurai01@gmail.com', '2001-03-14', 21, '2', '2', 'G Ayyadurai', 'Business', 10000.00, 1, 0.00, 11000.00, 'Thiruvarur', 'Thiruvarur', '2204230007', '1', '1', 'upload_files/candidate_tracker/66385284306_durga resume.pdf', NULL, '1', '2022-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-23 02:49:26', 1, '2022-04-23 02:54:56', 0, NULL, 1),
(8528, 'MEENASSHI SUNDARAM K B', '4', '9489792566', '9003332566', 'sundaramkvd@gmail.com', '1997-11-06', 24, '2', '2', 'K BALASUBRAMANI', 'City union bank (Appraiser)', 9000.00, 1, 0.00, 12000.00, 'Oddanchatram', 'Oddanchatram', '2204230008', '1', '1', 'upload_files/candidate_tracker/66538623570_MEENA CV-converted.pdf', NULL, '1', '2022-04-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-23 04:11:37', 1, '2022-04-23 04:39:35', 0, NULL, 1),
(8529, 'RAMYA K', '16', '8910600940', '9159703020', '2001blvr@gmail.com', '2001-08-22', 20, '2', '2', 'K Balaji', 'Carpenter', 15000.00, 1, 1.75, 2.50, 'Irala cross road village, chittoor distic,', 'Nellore', '2204230009', '1', '2', 'upload_files/candidate_tracker/20141538288_Ramya Resume(3).pdf', NULL, '3', '2022-04-26', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,Will not handle the pressure,not suitable for our Roles,understanding capacity is poor,will not sustain', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-23 04:26:03', 87, '2022-04-26 06:55:25', 0, NULL, 1),
(8530, 'R. Manimegalai', '16', '7305350186', '7358194938', 'Manimegalairamasamy2710@gmail.com', '2000-10-27', 21, '2', '2', 'R. Kalaiselvi', 'House Keeping supervisor', 22000.00, 1, 9000.00, 15000.00, '3/2 kamarajar salai teynampet, chennai _18', '3/2 Kamarajar Salai Teynampet, Chennai _18', '2204230010', '1', '2', 'upload_files/candidate_tracker/52661514770_mani resume-1.docx', NULL, '1', '2022-04-25', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication,not able to understand,Sustainability Doubt,not suitable', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-23 04:43:29', 1, '2022-04-23 06:30:39', 0, NULL, 1),
(8531, 'M.famitha', '16', '7358688869', '8939792108', 'Famithafamitha486@gmail.com', '2001-03-08', 21, '2', '2', 'A.mohammed umar', 'Auto driver', 125000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2204230011', '1', '1', 'upload_files/candidate_tracker/27950437213_Kaagaz_20220303_153913717322 (1).pdf', NULL, '1', '2022-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-23 07:01:23', 1, '2022-04-23 07:11:20', 0, NULL, 1),
(8532, 'bhakialakshmi', '16', '7904489371', '', 'bklakshmi0205@gmail.com', '1997-05-02', 24, '2', '2', 'arumugam', 'officer', 100000.00, 0, 12000.00, 18000.00, 'chennai', 'chennai', '2204230012', '1', '2', 'upload_files/candidate_tracker/40287110263_Bakiya.docx', NULL, '1', '2022-04-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '', '', '', '1', '1970-01-01', '1', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-23 07:05:48', 87, '2022-04-25 12:35:47', 0, NULL, 1),
(8533, 'Rajesh janakiraman', '16', '8637484145', '7338911692', 'Rajeshmj0908@gmail.com', '1997-08-09', 24, '2', '2', 'Lokesh J', 'Own business', 20000.00, 1, 10000.00, 20000.00, 'Pallavaram', 'Pallavaram', '2204230013', '1', '2', 'upload_files/candidate_tracker/72205211665_Resume(1).pdf', NULL, '1', '2022-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-23 07:09:29', 1, '2022-04-23 07:20:50', 0, NULL, 1),
(8534, 'M.hari haran', '6', '8778177170', '9750832490', 'jd0382115@gmail.com', '1998-04-04', 24, '4', '2', 'K.murugan', 'Mechanical Engineer( Salem Bharat Benze)', 25000.00, 2, 0.00, 17000.00, 'Erode SURAMPATI', 'Erode SURAMPATI', '2204250001', '', '2', 'upload_files/candidate_tracker/76543767439_Image to PDF 20220425 10.47.01.pdf', NULL, '1', '2022-04-25', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not suitable for our profile.. because Convincing skill 0   ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-25 10:34:59', 60, '2022-04-25 12:32:12', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8535, 'KARVENDHAN S', '6', '9578216161', '9578013231', 'Kameshvolley@gmail.com', '1999-09-22', 22, '2', '2', 'Subramani p', 'Farmer', 55000.00, 1, 15500.00, 16000.00, 'Koneripatti', 'Koneripatti', '2204250002', '1', '2', 'upload_files/candidate_tracker/22485712051_Kameshvolley.pdf', NULL, '1', '2022-04-25', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-25 10:48:02', 60, '2022-04-25 12:31:56', 0, NULL, 1),
(8536, 'Saranya.N', '6', '6374492698', '9677386187', 'Sarannatraj51@gmail.com', '1990-04-04', 32, '2', '1', 'Senthil', 'Manager', 45000.00, 1, 0.00, 18000.00, '28,avvaiyar street,teachers colony', 'Erode', '2204250003', '1', '1', 'upload_files/candidate_tracker/93341144765_Saranya resu.docx', NULL, '1', '2022-04-27', 0, '', '3', '59', '2022-05-02', 202104.00, '', '', '2022-05-05', '1', 'Selectd for Suthagar Team - Consultant 16K TH', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', 'Offer Mail Sent', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-25 11:22:09', 60, '2022-05-02 10:45:38', 0, NULL, 1),
(8537, 'aisha abi fathima br', '4', '7305374439', '', 'mizayisha10@gmail.com', '1999-10-12', 22, '2', '2', 'babu rahamathulla', 'officer', 20000.00, 1, 18000.00, 12000.00, 'chennai', 'chennai', '2204250004', '3', '2', 'upload_files/candidate_tracker/51041222073_WhatsAppImage20220425at12.53.31PM.pdf', NULL, '1', '2022-04-25', 0, '', '3', '59', '2022-04-26', 164208.00, '', '2', '1970-01-01', '1', 'Selected for Banu Team in Staff Role, PF/ESI/PT', '1', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '6', 'Offer Document Link shared', '', '', '', NULL, NULL, NULL, 1, '2022-04-25 12:46:13', 60, '2022-04-26 10:09:34', 0, NULL, 1),
(8538, 'S Muthulakshmi', '4', '9444100017', '', 'smuthulakshmisaroja@gmail.com', '2000-07-24', 21, '2', '2', 'D Senthilkumar', 'Business', 10000.00, 2, 0.00, 14000.00, 'Chennai', 'Chennai', '2204250005', '1', '2', 'upload_files/candidate_tracker/2272783472_Muthulakshmi24.docx.pdf', NULL, '1', '2022-04-26', 0, '', '3', '59', '2022-04-27', 138948.00, '', '3', '2022-05-09', '2', 'selected for  Arumbakkam  in Consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail shared', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-25 01:15:59', 60, '2022-04-26 06:21:16', 0, NULL, 1),
(8539, 'Radha krishnan p', '5', '8754677142', '', 'Rksiva0517@gmail.com', '1990-09-05', 31, '1', '2', 'C periyandi', 'BE', 50000.00, 1, 27000.00, 27000.00, 'Madurai', 'Chennai', '2204250006', '', '2', 'upload_files/candidate_tracker/75196484969_Radha resume-converted.pdf', NULL, '1', '2022-04-25', 0, 'P1242', '3', '59', '2022-05-09', 390000.00, '', '4', '2023-11-20', '1', 'Selected for Santhosh Team - PF/PT deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', 'Offer Document link shared', '', '', '', NULL, NULL, NULL, 1, '2022-04-25 01:33:58', 60, '2022-05-07 11:38:22', 0, NULL, 1),
(8540, 'Leo Sharmila', '4', '7092698620', '', 'dossjakemukesh@gmail.com', '1991-05-08', 31, '2', '2', 'Selva doss', 'Labour', 15.00, 1, 15.00, 20.00, 'AYYAMPETTAI THANJAVUR DISTRICT', 'AYYAMPETTAI THANJAVUR DISTRICT', '2204250007', '1', '2', 'upload_files/candidate_tracker/11374914148_682bfdc0-2d4b-40d8-b46c-27cca0e03257Sharmi_Resume-2.pdf', NULL, '3', '2022-06-12', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '1', NULL, '3', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-04-25 03:10:19', 1, '2022-05-31 03:23:47', 0, NULL, 1),
(8541, 'Antony Richard', '6', '7305631020', '9444831841', 'antonyricharf@gmail.com', '1999-10-25', 22, '3', '2', 'Edwin Thomas', 'Watch man', 200000.00, 1, 0.00, 15000.00, 'Besant Nagar', 'Besant Nagar', '2204250008', '', '1', 'upload_files/candidate_tracker/36549694155_SURIYA RESUME.doc', NULL, '1', '2022-04-25', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Shortlist but not joinined', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-25 03:21:48', 60, '2022-04-25 08:10:39', 0, NULL, 1),
(8542, 'Preethi M', '4', '8525862596', '7397027945', 'm.preethi019@gmail.com', '1996-06-13', 25, '2', '2', 'Mannar Mannan', 'Agriculture', 35000.00, 2, 16000.00, 19000.00, 'THANJAVUR', 'THANJAVUR', '2204250009', '1', '2', 'upload_files/candidate_tracker/72996430801_1650035034855_Resume.pdf', NULL, '1', '2022-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-25 04:04:15', 1, '2022-04-25 04:21:51', 0, NULL, 1),
(8543, 'Dilli prabhu', '26', '8838166404', '', 'dilliprabhu8@gmail.com', '1998-12-08', 23, '2', '2', 'Nil', 'Gruated', 20000.00, 1, 8000.00, 20000.00, 'Chengalpattu', 'Thambaram', '2204250010', '1', '2', 'upload_files/candidate_tracker/83432877231_Share Dilli Prabhu Resume_Dilliprabhu.pdf', NULL, '1', '2022-04-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,Fresher for MIS and not much strong in Excel,not much suits for MIS and tried for Sales,need time to confirm his interest,if he comes back lets see\n', '3', '1', '', '1', '1', '', '2', '2022-04-27', '1', '7', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-25 06:42:28', 87, '2022-04-25 07:09:31', 0, NULL, 1),
(8544, 'Ponnaiya', '16', '9094541486', '8056223148', 'Ponnaiya1011@gmail.com', '1999-01-10', 23, '2', '1', 'Palani', 'Labor', 10000.00, 1, 16000.00, 25000.00, 'Chennai', 'Chennai', '2204250011', '1', '2', 'upload_files/candidate_tracker/73444424480_P.PONNAIYA resume.pdf', NULL, '1', '2022-04-30', 30, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-25 08:12:37', 87, '2022-04-30 10:32:03', 0, NULL, 1),
(8545, 'sonali', '11', '8897924328', '', 'sonaliambavaram.crn@gmail.com', '1998-09-07', 23, '2', '2', 'chandra reddy', 'mutual fund', 25000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2204260001', '2', '1', 'upload_files/candidate_tracker/34476952765_Sonali.pdf', NULL, '1', '2022-04-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable', '6', '1', '0', '1', '1', '0', '2', '2022-05-01', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-26 10:10:08', 1, '2022-04-26 10:13:32', 0, NULL, 1),
(8546, 'manimegalai', '4', '9789081965', '', 'manimegalaiguna@mail.com', '1997-09-01', 24, '2', '2', 'gunasekran', 'kooli', 10000.00, 1, 13000.00, 15000.00, 'chennai', 'chennai', '2204260002', '2', '2', 'upload_files/candidate_tracker/87622280228_RESUME.MANI-converted.pdf', NULL, '1', '2022-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-26 10:22:11', 1, '2022-04-26 10:25:30', 0, NULL, 1),
(8547, 'Surendhar', '4', '9487437011', '', 'surendharhi5@gmail.com', '1999-06-04', 22, '2', '1', 'Chinna samy', 'Driver', 16000.00, 1, 15000.00, 15000.00, 'Dharmapuri', 'Erode', '2204260003', '1', '2', 'upload_files/candidate_tracker/47283529311_Surendhar. C_Color Format – 01.pdf', NULL, '2', '2022-04-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-26 10:28:06', 85, '2022-04-26 12:12:50', 0, NULL, 1),
(8548, 'Rajesh.R', '31', '8825851481', '7530016600', 'Samuravi2@gmail.com', '1998-03-15', 24, '1', '2', 'Ravi.R', 'House keeping', 13000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2204260004', '', '1', 'upload_files/candidate_tracker/73226307705_Rajesh Resume 1-4.doc', NULL, '1', '2022-04-26', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,not comfortable to relocate,Not much strong in React,Not comfortable with SA too', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-26 11:45:47', 1, '2022-04-26 11:52:36', 0, NULL, 1),
(8549, 'Kalai Mathi Pl', '31', '8838495844', '8760735578', 'Kalaiajipl@gmail.com', '1996-12-30', 25, '1', '2', 'Pazhaniyappan m', 'Retirement person', 30000.00, 2, 0.00, 16000.00, 'Sivagangai', 'Sivagangai', '2204260005', '', '1', 'upload_files/candidate_tracker/37736406696_Kalai.pdf', NULL, '1', '2022-04-26', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'fresher for React,Not comfort with SA,High salary Expectation,sustainability dooubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-26 11:46:12', 1, '2022-04-26 11:51:59', 0, NULL, 1),
(8550, 'PARTHASARATHI A', '31', '8807564856', '', 'parthascorpion2020@gmail.com', '1995-05-20', 26, '1', '2', 'AYYARSIGAMANI A', 'Tea Shop', 9000.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Tambaram', '2204260006', '', '1', 'upload_files/candidate_tracker/1086078718_Partha Frontend onepage.pdf', NULL, '1', '2022-04-26', 0, 'JOBS', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher,Seems to be slow,5050 Profile,kindly check for PHP/React', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-26 11:46:52', 1, '2022-04-26 11:52:12', 0, NULL, 1),
(8551, '', '0', '9361484670', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204260007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-26 03:51:06', 0, NULL, 0, NULL, 1),
(8552, 'Arul', '4', '9944210627', '6383059241', 'arulvijay2000@gmail.com', '2007-04-26', 0, '2', '2', 'Sarojini Sanmugam', 'Job searching', 4000.00, 0, 0.00, 15000.00, 'Avinashi', 'Avinashi', '2204260008', '1', '1', 'upload_files/candidate_tracker/7074730790_Arul.Resume(1).docx', NULL, '2', '2022-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-26 04:11:42', 1, '2022-04-26 04:16:29', 0, NULL, 1),
(8553, 'Suresh v', '5', '9152122769', '7975754580', 'Sureshdevan1996@gmail.com', '1996-07-31', 25, '1', '2', 'Veerakannan p', 'civil work', 25000.00, 5, 15000.00, 20000.00, 'S/Oveerkannan#27/asunnadaguducomoundgowdanapalya', 'uttarahalli', '2204260009', '', '2', 'upload_files/candidate_tracker/57533225557_my resume.pdf', NULL, '1', '2022-04-26', 20, '55583', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-26 04:46:04', 1, '2022-04-26 04:52:53', 0, NULL, 1),
(8554, '', '0', '6380894213', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204260010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-26 04:51:27', 0, NULL, 0, NULL, 1),
(8555, 'Suresh v', '5', '7975754580', '9152122769', 'Sureshdevan1996@gmail.com', '1996-07-31', 25, '1', '2', 'Veerakannan p', 'civil work', 25000.00, 5, 15000.00, 20000.00, 's/Oveerakannan27/Asunnadaguducompoundgowdanapalya', 'uttarahalli', '2204260011', '', '2', 'upload_files/candidate_tracker/44743988479_my resume.pdf', NULL, '1', '2022-04-26', 20, '55583', '3', '59', '2022-04-27', 255600.00, '', '', '2022-04-29', '1', 'Selected for PF/PT - Bangalore Location', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-26 05:41:32', 60, '2022-04-27 05:39:22', 0, NULL, 1),
(8556, 'Kamala nachiar', '4', '9789813675', '', 'kamali.nachiar@gmail.com', '1990-05-07', 31, '3', '1', 'Vivek', 'System engineer', 25000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2204260012', '', '1', 'upload_files/candidate_tracker/74345531498_1646820754736_kamali resume (3) (1) (1).doc', NULL, '1', '2022-04-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need time to confirm with her husband\n', '1', '2', '', '4', '5', '', '2', '2022-05-02', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-26 06:28:15', 85, '2022-04-27 03:19:25', 0, NULL, 1),
(8557, 'Ambika', '5', '6281972674', '8884836762', 'ambikarg262452@gmail.com', '1997-06-07', 24, '1', '2', 'Revanasiddappa', 'Business', 25000.00, 3, 20000.00, 25000.00, '1-33 Kallur Road Taluk Chincholi dist Kalaburagi', 'Shivbagh colony Ameerpet', '2204260013', '', '2', 'upload_files/candidate_tracker/34448171226_ambika latest cv.pdf', NULL, '2', '2022-04-27', 0, 'P1306', '3', '59', '2022-05-16', 277000.00, '', '', '2022-05-30', '1', 'Selected for Hyderabad - PF/ESI/PT', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '3', '1', 'Offer document Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-04-26 07:21:25', 60, '2022-05-12 12:21:19', 0, NULL, 1),
(8558, 'Umamageshwari', '4', '9150825378', '9444485761', 'Uma2mail21@gmail.com', '2000-06-07', 21, '2', '1', 'Subhashchandra bose v G', 'Workmen', 25000.00, 3, 15000.00, 20000.00, 'Avadi', 'Avadi', '2204270001', '1', '2', 'upload_files/candidate_tracker/83330524733_UMA RESUME.pdf', NULL, '1', '2022-04-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, Communication Average, month back married and right now in Avadi and ready to relocate but her husband is working in Srioerumbuthur,much comfort to work in nonvoice only as she hold a few months exp in non voice,In our Position,will not sustain and handle the pressure', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-27 09:57:36', 1, '2022-04-27 10:26:32', 0, NULL, 1),
(8559, '', '0', '7540075240', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204270002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-27 11:24:27', 0, NULL, 0, NULL, 1),
(8560, 'Saranya S', '11', '8220886346', '8190846346', 'sharanyaraj83@gmail.com', '1998-11-08', 23, '2', '2', 'Hamitha selvaraj', 'House wife', 25000.00, 1, 15000.00, 1800.00, 'Perambalur', 'Perambalur', '2204270003', '1', '2', 'upload_files/candidate_tracker/95574554984_sharanyaa cv.pdf', NULL, '2', '2022-04-27', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication Average, have 6 months exp in Admin/Marketing but not a profiled resume, will not sustain in our positions, need to relocate from Trichy, Salary exp in min 15K,If she comes back let us decide on the profile', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', 'Communication Average, Have 6 Months Exp In Admin/Marketing But Not A Profiled Resume, Will Not Sustain In Our Positions, Need To Relocate From Trichy, Salary Exp In Min 15K,If She Comes Back Let Us Decide On The Profile', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-27 11:45:12', 60, '2022-04-27 06:19:46', 0, NULL, 1),
(8561, 'Manikandan', '4', '9894752772', '', 'Mani1707kandan@gmail.com', '1994-07-17', 27, '2', '1', 'Natarajan', 'Government employee', 1.50, 1, 0.00, 11.00, 'Thanjavur', 'Thanjavur', '2204270004', '1', '1', 'upload_files/candidate_tracker/10303286141_mani.docx', NULL, '1', '2022-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-27 11:55:32', 1, '2022-04-27 12:00:51', 0, NULL, 1),
(8562, 'Sai Priya', '11', '7032157733', '', 'saipriya4199@gmail.com', '1999-01-04', 23, '2', '2', 'Ramesh', 'Business', 20000.00, 1, 0.00, 15000.00, 'Chittoor', 'Chittoor', '2204270005', '1', '1', 'upload_files/candidate_tracker/5436034347_Sai Resume Updated.docx', NULL, '2', '2022-05-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-27 11:58:02', 85, '2022-04-30 12:14:57', 0, NULL, 1),
(8563, 'Naveenkumar', '6', '8825475732', '8489953631', 'mnaveenece684@gmail.com', '1998-12-17', 23, '2', '1', 'Mani', 'Teacher', 150000.00, 0, 15000.00, 15000.00, 'Erode', 'Erode', '2204270006', '1', '2', 'upload_files/candidate_tracker/62107996068_naveen resme 2021.pdf', NULL, '1', '2022-04-27', 0, '', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'sALES NOT INTERESTED', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-27 12:03:29', 1, '2022-04-27 12:08:31', 0, NULL, 1),
(8564, 'Karthick M', '17', '8825412002', '', 'Karthickmuruganltr@gmail.com', '1983-10-30', 38, '2', '1', 'Saranya K S', 'Home maker', 50000.00, 2, 500000.00, 650000.00, 'Chennai', 'Chennai', '2204270007', '14', '2', 'upload_files/candidate_tracker/64783225653_M Karthick Resume 2022 latest.docx', NULL, '1', '2022-04-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability in his profile,have exp in agency handling only,not suitable for GI profile,Will not sustain', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-27 12:08:28', 1, '2022-04-27 12:16:25', 0, NULL, 1),
(8565, 's.anushuyasangaralingam', '6', '9597458914', '9976167759', 'Anusangaralingam@gmail.com', '2000-06-20', 21, '3', '2', 'sangaralingam,muthu', 'Watch man', 10000.00, 2, 0.00, 15000.00, '.Veerappampalayam Thindal, Perundurai Road Erode', 'Veerappampalayam Thindal, Perundurai Road Erode', '2204270008', '', '1', 'upload_files/candidate_tracker/62472229999_CV_2022030822380958 (1).pdf', NULL, '3', '2022-04-27', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not intersted in sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-27 12:12:10', 60, '2022-04-27 04:56:08', 0, NULL, 1),
(8566, 'Varsha', '11', '6374892815', '', 'varshazzz238@gmail.com', '2000-08-23', 21, '2', '2', 'Balakrishnan', 'Chef', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2204270009', '1', '1', 'upload_files/candidate_tracker/22427131622_CV_2022042712332862.pdf', NULL, '1', '2022-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-27 12:36:52', 1, '2022-04-27 12:40:16', 0, NULL, 1),
(8567, 'Varsha', '11', '6374892915', '', 'varshabalakrishnan23@gmail.com', '2000-08-23', 21, '2', '2', 'Balakrishnan', 'Chef', 25000.00, 1, 11000.00, 15000.00, 'Chennai', 'Chennai', '2204270010', '1', '2', 'upload_files/candidate_tracker/49223072112_CV_2022042712332862.pdf', NULL, '1', '2022-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped.She got aoother offer\n', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-27 12:44:51', 1, '2022-04-27 12:46:55', 0, NULL, 1),
(8568, 'Amudha.a', '6', '6379252811', '', 'ramudha348@gmail.com', '2000-06-06', 21, '1', '2', 'Ammasai.p', 'Forms', 15000.00, 1, 0.00, 10000.00, 'Erode', 'Aval poondurai', '2204270011', '', '1', 'upload_files/candidate_tracker/85089388696_amutha sanmuganathapuram.docx', NULL, '1', '2022-04-27', 0, 'P1303', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE TIMING WAS NOT SUITABLE.. SHES EXPCT LOGUT TIME 6PM. SO REJECTED', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-27 12:53:49', 60, '2022-04-27 04:55:04', 0, NULL, 1),
(8569, 'Saranya.s', '11', '9176843140', '', 'saranyasekar0411@gmail', '2000-11-11', 21, '2', '2', 'Sekar', 'Business', 30000.00, 2, 12000.00, 15000.00, 'Nerkundram', 'Nerkudram', '2204270012', '1', '2', 'upload_files/candidate_tracker/16880345342_Resume - add comp.doc', NULL, '1', '2022-04-27', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Prefer To Speak In Tamil Only, 6 Months Exp In Recruitment But Not A Profiled Resume,Will Not Sustain In Our Positions', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-27 12:57:23', 1, '2022-04-27 01:09:21', 0, NULL, 1),
(8570, 'Monika', '11', '9840204347', '', 'monikamoni2211@gmail.com', '1997-11-22', 24, '2', '2', 'Subramani', 'Business', 25000.00, 1, 13500.00, 15000.00, 'Kolathur', 'Kolathur', '2204270013', '1', '2', 'upload_files/candidate_tracker/71534114717_MONIKARAJ A S (2)-converted.pdf', NULL, '1', '2022-04-27', 4, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Have Exp For A Year But Need To Check Clearly,Not Much Exposure To The Recruitment,Long Run DoubtsCommunication Average,Have Exp For A Year But Need To Check Clearly,Not Much Exposure To The Recruitment,Long Run Doubts', '6', '1', '0', '1', '1', '0', '2', '2022-05-02', '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-27 12:57:30', 1, '2022-04-27 01:02:48', 0, NULL, 1),
(8571, 'S.PRIYANKA', '6', '6383291628', '7010815596', 'sekarpriyanka710@gmail.com', '2001-04-06', 21, '4', '2', 'Mallika', 'Kiri export company', 20000.00, 1, 0.00, 10000.00, 'No.6 nadesha Shetti street murugan opp set', 'Pallipalayam', '2204270014', '', '1', 'upload_files/candidate_tracker/24025223842_Adobe Scan Apr 27, 2022.pdf', NULL, '3', '2022-04-27', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NO SKILLS.. SO REJECTED', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-27 12:58:30', 60, '2022-04-27 04:55:39', 0, NULL, 1),
(8572, 'Balraji B', '4', '9597977180', '7871515304', 'ragavbala1786@gmail.com', '2001-07-05', 20, '1', '2', 'Bhkthavachalam p', 'Farmer', 85000.00, 3, 0.00, 18000.00, 'Mallapuram', 'Sankarapuram', '2204270015', '', '1', 'upload_files/candidate_tracker/13454683818_Balraji.B .pdf', NULL, '1', '2022-04-27', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-27 12:59:35', 1, '2022-04-27 01:28:23', 0, NULL, 1),
(8573, '', '0', '8056298879', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204270016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-27 05:44:46', 0, NULL, 0, NULL, 1),
(8574, 'deepika', '11', '8838162651', '', 'rdeepika1902@gmail.com', '1996-06-08', 25, '2', '1', 'sakithvel', 'business', 20000.00, 2, 20000.00, 25000.00, 'chennai', 'chennai', '2204270017', '2', '2', 'upload_files/candidate_tracker/49639879550_Deepinewresume.pdf', NULL, '1', '2022-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Is Good, Have Basic Exp In HR, But Not In Recruitment, Her Current Pay Is Very High Also Her Expectation Is Also High, No Exp In Sourcing Screening,', '6', '1', '0', '1', '1', '0', '2', '2022-05-02', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-27 06:16:00', 1, '2022-04-27 06:18:51', 0, NULL, 1),
(8575, 'divya m l', '4', '9488869418', '', 'write2divya06@gmail.com', '1992-03-05', 30, '2', '1', 'ramesh', 'banking', 18000.00, 2, 15000.00, 18000.00, 'chennai', 'chennai', '2204270018', '2', '2', 'upload_files/candidate_tracker/25386093622_divya resume new.pdf', NULL, '1', '2022-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-27 06:25:22', 1, '2022-04-27 06:28:22', 0, NULL, 1),
(8576, 'sundar', '6', '7010798197', '', 'sundarseenu440@gmail.com', '2000-06-27', 21, '2', '2', 'srinivasan', 'shop keeper', 20000.00, 3, 0.00, 12000.00, 'chennai', 'chennai', '2204270019', '2', '1', 'upload_files/candidate_tracker/16488785487_5_6105128610618672089.pdf', NULL, '1', '2022-04-28', 0, '', '3', '59', '2022-05-02', 198000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Document Link Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-04-27 06:36:24', 60, '2022-04-29 04:55:06', 0, NULL, 1),
(8577, 'karanthi kumar', '4', '7397271633', '', 'kranthi.bhass@gmail.com', '1998-10-11', 23, '2', '2', 'bhasker', 'plumber', 15000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2204270020', '2', '2', 'upload_files/candidate_tracker/48485716968_Kranthi Kumar 1.docx', NULL, '1', '2022-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-27 06:43:24', 1, '2022-04-27 06:45:51', 0, NULL, 1),
(8578, 'P.RAJA', '4', '8754952095', '9655540258', 'praja10592@gmail.com', '1992-05-10', 29, '2', '2', 'Pandian', 'Farmer', 10000.00, 4, 0.00, 10000.00, 'Ariyalur', 'Kandarathitham', '2204270021', '1', '1', 'upload_files/candidate_tracker/18011485091_RAJAS RESUME(1)(1).pdf', NULL, '1', '2022-04-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-27 06:45:06', 85, '2022-04-28 10:33:49', 0, NULL, 1),
(8579, '', '0', '6382309500', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204270022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-27 11:00:26', 0, NULL, 0, NULL, 1),
(8580, '', '0', '7812815640', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-28 07:23:46', 0, NULL, 0, NULL, 1),
(8581, '', '0', '7708760662', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204280002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-28 07:24:45', 0, NULL, 0, NULL, 1),
(8582, 'deva prem', '4', '6385142481', '', 'premdeva933@gmail.com', '1999-12-30', 22, '2', '2', 'vellayutham', 'fisherman', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2204280003', '2', '1', 'upload_files/candidate_tracker/59758037158_V.pdf', NULL, '1', '2022-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-28 08:15:34', 1, '2022-04-28 08:20:02', 0, NULL, 1),
(8583, 'preethi', '4', '9159294974', '', 'anpreethi27@gmail.com', '1995-02-27', 27, '2', '1', 'shyam', 'contract', 17000.00, 3, 10000.00, 12000.00, 'chennai', 'chennai', '2204280004', '2', '2', 'upload_files/candidate_tracker/64860345452_Preethianjeelien Resume.docx', NULL, '1', '2022-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'frequent Job Changes,will not sustain for a long in Telecaller,also sounds low for for this profile,need to open a lot', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-28 08:21:43', 1, '2022-04-28 08:23:35', 0, NULL, 1),
(8584, 'santhosh', '4', '9940876967', '', 'sansanthosh425@gmail.com', '1997-10-30', 24, '2', '2', 'sagadevan', 'daily wages', 15000.00, 2, 12000.00, 13000.00, 'chennai', 'chennai', '2204280005', '2', '2', 'upload_files/candidate_tracker/66677054909_My resume 2 year QC.pdf', NULL, '1', '2022-04-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have exp in voice process,but as a male candidate we prefer to for field,but he is not ready to go as he is having a plate in the side and comfort to travel,Treid of operations but he is not suitable as there is no communication,no basic ideas using excel', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-28 08:26:12', 60, '2022-04-29 12:34:47', 0, NULL, 1),
(8585, 'manoj princeton', '4', '9751956507', '', 'manojsks1601@gmail.com', '2000-01-16', 22, '2', '2', 'kulanthasamy', 'teacher', 15000.00, 1, 0.00, 12000.00, 'thanjavur', 'thanjavur', '2204280006', '2', '1', 'upload_files/candidate_tracker/42540039135_Manoj Resume-1.pdf', NULL, '2', '2022-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-28 08:32:53', 1, '2022-04-28 08:35:09', 0, NULL, 1),
(8586, 'R.S.Hariharasudhan', '4', '9789427405', '8270128027', 'rshariharan90@gmail.com', '1990-03-05', 32, '2', '2', 'R.S.Senthilvelavan', 'IT field', 40000.00, 3, 13500.00, 17000.00, 'Vellore', 'Taramani', '2204280007', '1', '2', 'upload_files/candidate_tracker/39102788918_Resume new.docx', NULL, '1', '2022-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok, Have  Exp In Collection But Not In Telecaller Sales, Age Around 31 Yrs And Not Suitable For Our Sales RM, He Has 6 Yrs Exp In Core Field, Attitude Issue, Not Suitable For Us', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-28 11:21:39', 1, '2022-04-28 11:27:07', 0, NULL, 1),
(8587, 'Nandini c', '6', '7708054179', '8870602411', 'ssvel2411@gmail.com', '2002-03-04', 20, '1', '1', 'SHAKTHIVEL S', 'Government employe', 40000.00, 0, 17000.00, 20000.00, 'Chennai', 'Velachery chennai', '2204280008', '', '2', 'upload_files/candidate_tracker/60365202399_ScannerGo_28-04-2022-12.16.46.816.pdf', NULL, '1', '2022-04-28', 0, 'JOBS', '3', '59', '2022-05-09', 168000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in consultant role', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-04-28 12:03:40', 60, '2022-04-29 05:00:52', 0, NULL, 1),
(8588, 'Irshad jalal', '5', '9901960307', '8050990405', 'irshad.koteshwar@gmail.com', '1994-05-21', 27, '3', '2', 'Rahamath', 'Sales', 600000.00, 1, 23000.00, 25000.00, 'Banglore', 'Banglore', '2204280009', '', '2', 'upload_files/candidate_tracker/11857600139_IRSHAD RESUME.pdf', NULL, '1', '2022-04-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate not reponding to the calls\n', '5', '2', '', '2', '2', '', '2', '2022-05-04', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-28 01:12:46', 60, '2022-05-03 10:23:12', 0, NULL, 1),
(8589, 'Iswarya B', '4', '9894788364', '7811874911', 'iswaryabaskar64@gmail.com', '2000-04-08', 22, '2', '2', 'Baskar D', 'Weever', 60000.00, 3, 0.00, 16000.00, 'Ellampillai, salem', 'Ellampillai, salem', '2204280010', '1', '1', 'upload_files/candidate_tracker/50846425035_Ishu resume new pdf.pdf', NULL, '3', '2022-04-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-28 03:05:22', 1, '2022-04-28 03:12:20', 0, NULL, 1),
(8590, 'Anjana', '11', '7550228475', '', 'anjanagovind3@gmail.com', '1999-03-03', 23, '2', '2', 'A Govindarajan( Late)', 'Central government employee(late)', 180000.00, 1, 180000.00, 300000.00, 'Chennai', 'Chennai', '2204280011', '1', '2', 'upload_files/candidate_tracker/81495199368_Anjana Resume.pdf', NULL, '2', '2022-04-30', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-28 03:08:41', 1, '2022-04-28 03:44:34', 0, NULL, 1),
(8591, '', '0', '6382789081', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204280012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-28 04:09:53', 0, NULL, 0, NULL, 1),
(8592, '', '0', '9597074576', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-29 07:37:13', 0, NULL, 0, NULL, 1),
(8593, 'Jagadesh', '4', '6383298344', '', 'jagadeeshdon1999@gmail.com', '1999-05-24', 22, '2', '2', 'Pacheyaapan', 'Chennai', 65000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2204290002', '1', '2', 'upload_files/candidate_tracker/23452596966_CV_2022042817333478.pdf', NULL, '1', '2022-04-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No clarity in his previous exp,not ready to telecalling and the field sales, Looking for Non voice, but will not sustain in our backend process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-29 10:27:25', 85, '2022-04-29 10:48:28', 0, NULL, 1),
(8594, 'Ramya', '5', '6380755329', '9524222495', 'Santhivramya91@gmail.com', '1991-06-20', 30, '3', '2', 'Muniyappan', 'Farmer', 10000.00, 1, 22000.00, 25000.00, 'Krishnagiri', 'Chennai', '2204290003', '', '2', 'upload_files/candidate_tracker/91442670106_Ramya bio data.pdf', NULL, '1', '2022-04-29', 0, '', '4', '34', NULL, 0.00, '', '0', NULL, '2', 'No relevant Exp ,5 yrs in Backend only,Have a career gap,salary exp is high around 23K,5050 profile,do check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-29 11:17:49', 1, '2022-04-29 11:46:33', 0, NULL, 1),
(8595, 'vinodhini m', '4', '7904770778', '', 'vinothini.mu@gmail.com', '2000-05-16', 21, '2', '2', 'munivel', 'daily wages', 15000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2204290004', '2', '1', 'upload_files/candidate_tracker/63580568860_Document (2) (1).pdf', NULL, '1', '2022-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-29 11:38:58', 1, '2022-04-29 11:40:29', 0, NULL, 1),
(8596, 'ganesh', '5', '9677316266', '', 'ganeshscivilganesh@gmail.com', '1989-01-25', 33, '1', '2', '.', 'salaried', 15000.00, 1, 0.00, 18000.00, 'coimbatore', 'banglore', '2204290005', '', '1', 'upload_files/candidate_tracker/16552497045_Ganesh Resume.docx', NULL, '1', '2022-04-29', 0, '55583', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-29 12:36:42', 1, '2022-04-29 12:52:00', 0, NULL, 1),
(8597, 'Tharini. R', '4', '8428329853', '', 'ttharini815@gmail.com', '2000-09-09', 21, '2', '2', 'B. Ravichandran', 'Police man', 45000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2204290006', '1', '1', 'upload_files/candidate_tracker/56707827290_thariniresume.pdf', NULL, '1', '2022-04-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-29 01:03:57', 1, '2022-04-29 01:25:19', 0, NULL, 1),
(8598, 'Sudarson sp', '4', '7502683007', '7200529601', 'sonsudar98@gmail.com', '1998-06-20', 23, '2', '2', 'Palanivel', 'Carpenter', 1.00, 0, 0.00, 15.00, 'Thanjavur', 'Thanjavur', '2204290007', '1', '1', 'upload_files/candidate_tracker/26726260335_sudar- 98resume-2.pdf', NULL, '1', '2022-04-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-29 02:57:56', 85, '2022-04-29 04:28:44', 0, NULL, 1),
(8599, 'Amudha.R', '4', '7358363463', '9840245274', 'amudha.r2020@gmail.com', '2000-03-11', 22, '1', '2', 'Krishna veni.R', 'Super market sales girl', 11000.00, 1, 16000.00, 15000.00, 'Chennai', 'Chennai', '2204290008', '', '2', 'upload_files/candidate_tracker/8469688892_AMUDHA-1.pdf', NULL, '1', '2022-04-29', 0, 'Ci114', '4', '11', NULL, 0.00, '', '0', NULL, '2', '5050Profile,Communication sounds Bold ,can be trained,fresher and sustainability doubts,kindly check and let me know your interest', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-29 03:20:52', 1, '2022-04-29 03:27:12', 0, NULL, 1),
(8600, '', '0', '9962364051', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204290009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-29 04:31:46', 0, NULL, 0, NULL, 1),
(8601, 'Ezhilarasi', '11', '9566374690', '', 'ezhilchinnathambi1991@gmail.com', '1991-07-08', 30, '2', '2', 'Chinnathambi', 'Driver', 40000.00, 1, 18000.00, 20000.00, 'thanjavur', 'thanjavur', '2204290010', '1', '2', 'upload_files/candidate_tracker/33510128874_ezhil resume 2021 August.docx', NULL, '2', '2022-05-02', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, Overall 1.5 yrs she traveled with 3 companies and this is her 4th company. In that, last 8 months, only she been in recruitment and looking for min exp of 17K.Long run sustainability doubts in this profile.Letshold this profile and decide later', '6', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-29 05:37:01', 1, '2022-04-29 05:41:02', 0, NULL, 1),
(8602, 'Ezhilarasan.H', '11', '8508898730', '', 'ezhi5904@gmail.com', '1998-08-26', 23, '2', '2', 'Haridass.R , Rajalakshmi.H', 'Farmer', 15000.00, 1, 0.00, 16000.00, 'Puducherry', 'Puducherry', '2204290011', '1', '1', 'upload_files/candidate_tracker/99442912814_Ezhil Resume -1.pdf', NULL, '2', '2022-05-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, no basic knowledge in the recruitment, Fresher for the recruitment profile, salary exp in min 14-15K being a fresher,long run as recruiter doubts', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-29 05:41:32', 85, '2022-05-02 09:44:37', 0, NULL, 1),
(8603, 'Bhavani', '11', '7395953671', '', 'bhavaniramadass19@gmail.com', '1998-01-19', 24, '2', '2', 'Ramadass', 'Real estate', 100000.00, 2, 0.00, 25000.00, 'Teynampet', 'Porur', '2204290012', '1', '1', 'upload_files/candidate_tracker/18927950289_resume.pdf', NULL, '1', '2022-05-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok,having multiple offers and focus much on CMMI level companies only, not comfort with the salary,Holding offes and lookin for additionalxquot\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-29 05:47:02', 85, '2022-05-02 10:23:06', 0, NULL, 1),
(8604, '', '0', '8610627538', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204290013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-29 09:48:20', 0, NULL, 0, NULL, 1),
(8605, 'Inthusha K', '11', '7812827615', '', 'inthushainthusha9@gmail.com', '1999-07-06', 22, '2', '2', 'V. Kosalram', 'Business', 3000.00, 2, 0.00, 15000.00, 'Thoothukudi', 'Chennai', '2204300001', '1', '1', 'upload_files/candidate_tracker/97244171220_K.Inthusha Resume (1).docx', NULL, '1', '2022-04-30', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '4m exp in Recruiting  in bangalore but Donxquott know about sourcing  profile  . Prefer to talk in tamil From tutukudi  relocate to uncle home in avadi long distance too', '6', '1', '', '1', '1', '', '1', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-30 07:59:06', 85, '2022-05-24 10:10:47', 0, NULL, 1),
(8606, 'Janarthanan r', '4', '6381691183', '', 'Www.vickyjans@gmail.com', '1998-06-13', 23, '3', '2', 'Gejalakshmi', 'Housewife', 15000.00, 0, 0.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2204300002', '', '1', 'upload_files/candidate_tracker/56088488570_2022 JATHAGAM.pdf', NULL, '1', '2022-04-30', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-30 09:43:50', 85, '2022-04-30 10:58:09', 0, NULL, 1),
(8607, 'Kristen Gonsago A', '11', '9790940629', '9444774519', 'kirstenmerin@gmail.com', '1996-08-20', 25, '2', '2', 'Alosious Gonsago.C', 'Customer service executive', 30000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2204300003', '1', '1', 'upload_files/candidate_tracker/24370349278_Kristen resume.docx', NULL, '1', '2022-04-30', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-30 10:15:02', 85, '2022-04-30 10:56:58', 0, NULL, 1),
(8608, 'T.Karthikeyan', '4', '6369973353', '8754874226', 'karthiviji260598@gmail.com', '1998-05-26', 23, '2', '2', 'Thatchinamoorthi', 'Wiver', 10000.00, 1, 12000.00, 15000.00, 'Sivagiri', 'Sivagiri', '2204300004', '1', '2', 'upload_files/candidate_tracker/71562877091_karthikeyan resume.pdf', NULL, '1', '2022-04-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-30 10:36:42', 1, '2022-04-30 10:53:00', 0, NULL, 1),
(8609, '', '0', '7867990665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204300005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-30 10:58:11', 0, NULL, 0, NULL, 1),
(8610, 'Roshan Ara', '4', '7305692988', '9094419291', 'roshrosh618@gmail.com', '2001-06-06', 20, '2', '2', 'Mohammad jaffer', 'Painter', 6000.00, 1, 0.00, 15000.00, '3/2 Mirza gulam hussain ali khan st, Royapettah', '3/2 mirza gulam hussain ali khan st, Royapettah', '2204300006', '1', '1', 'upload_files/candidate_tracker/36487710805_ROSHANARA (1).pdf', NULL, '1', '2022-04-30', 0, '', '6', '87', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-30 01:01:20', 87, '2022-04-30 02:48:03', 0, NULL, 1),
(8611, '', '0', '9843532318', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204300007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-30 04:11:41', 0, NULL, 0, NULL, 1),
(8612, 'M.R.Parvathavarthini', '6', '9025521171', '9750042391', 'madhurambika@gmail.com', '2000-01-05', 22, '2', '2', 'S .Mahalingam', 'Business', 20000.00, 0, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2204300008', '1', '1', 'upload_files/candidate_tracker/54813675409_Resume_Madhura_Format7.pdf', NULL, '1', '2022-05-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suits for our roles\n', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-30 04:31:55', 60, '2022-05-03 06:04:00', 0, NULL, 1),
(8613, 'naresh kumar', '11', '9655955146', '', 'knareshkumar6474@gmail.com', '1998-06-09', 23, '2', '2', 'karunakara', 'accountant', 20000.00, 0, 0.00, 16000.00, 'chennai', 'krishnagiri', '2204300009', '1', '1', 'upload_files/candidate_tracker/85913995277_Naresh Resume Krishnagiri.pdf', NULL, '2', '2022-05-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-30 04:43:49', 85, '2022-05-02 09:46:22', 0, NULL, 1),
(8614, 'Ashwini s', '6', '6380773708', '7395994583', 'ashwinicu30@gmail.com', '1997-04-14', 25, '2', '1', 'Gandhimathi', 'House work', 10000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2204300010', '1', '2', 'upload_files/candidate_tracker/24974191467_ShareRESUMEASHvb.docx', NULL, '1', '2025-02-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2022-04-30 06:55:09', 153, '2025-02-21 11:23:25', 0, NULL, 1),
(8615, 'Balaji i', '11', '7299302346', '', 'balaji.i1998@gmail.com', '1998-12-19', 23, '2', '2', 'Kamatchi i', 'Housewife', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2204300011', '1', '1', 'upload_files/candidate_tracker/15247694253_Balaji', NULL, '1', '2022-05-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected and we offered,but candidate dropped as he is not comfortable in Package', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-30 07:58:14', 85, '2022-05-02 02:58:10', 0, NULL, 1),
(8616, 'M.Dharani', '4', '9585128981', '9942522554', 'dharanimohanraj5271@gmail.com', '2001-02-24', 21, '1', '2', 'P.Mohan raj', 'Driver', 15000.00, 1, 0.00, 10000.00, 'Palakkarai', 'Palakkarai', '2205020001', '', '1', 'upload_files/candidate_tracker/75714913983_DHARANI.M (Resume).pdf', NULL, '1', '2022-05-02', 0, 'CI133', '3', '59', '2022-05-02', 126312.00, '', '4', '2022-11-01', '1', 'Consultant Role - Erode  - Muthu Elite Team', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-02 10:56:03', 60, '2022-08-16 07:51:57', 0, NULL, 1),
(8617, 'Nithya.M', '4', '7502225680', '8220835547', 'www.nithyamba98@gmail.com', '1998-05-26', 23, '2', '2', 'Mohan .p', 'Former', 50000.00, 2, 0.00, 10000.00, 'Ariyalur', 'Ariyalur', '2205020002', '1', '1', 'upload_files/candidate_tracker/28015901235_resume new (1).pdf', NULL, '1', '2022-05-02', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-02 11:44:14', 85, '2022-05-02 12:30:33', 0, NULL, 1),
(8618, '', '0', '9790079278', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205020003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-02 12:58:56', 0, NULL, 0, NULL, 1),
(8619, 'Jaisurya k', '11', '9092344795', '9003255916', 'Imjaisurya@gmail.com', '1999-01-31', 23, '2', '2', 'Kumar', 'Business', 50000.00, 1, 0.00, 0.00, 'Chennai', 'Chennai', '2205020004', '1', '1', 'upload_files/candidate_tracker/90767326502_Jai_Surya cv.pdf', NULL, '1', '2022-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Recruitment,No basic knowledge in Protal,have a career gap,Sustainability doubts,We tried checking for Back End,but the candidate left without attending the interview', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-02 01:34:11', 1, '2022-05-02 01:37:47', 0, NULL, 1),
(8620, 'Surya M', '6', '9916437793', '7348984382', 'Suryam12071997@gmail.com', '1997-07-12', 24, '1', '2', 'Mohan', 'Work', 40000.00, 5, 0.00, 20000.00, 'Bangalore', 'Bangalore', '2205020005', '', '2', 'upload_files/candidate_tracker/32016847932_CURRICULUM VITAE.docx s123.docx', NULL, '1', '2022-05-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-02 01:36:25', 1, '2022-05-02 02:25:09', 0, NULL, 1),
(8621, '', '0', '9847058486', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205020006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-02 01:40:52', 0, NULL, 0, NULL, 1),
(8622, 'Maheshwari v', '4', '9176294145', '', 'vmaheshwari512@gmail.com', '1999-10-22', 22, '3', '2', 'C.Veeramuthu', 'Carpenter', 70000.00, 2, 9000.00, 12000.00, 'Chennai', 'Chennai', '2205020007', '', '2', 'upload_files/candidate_tracker/82545318383_\'Maheshwari RESUME 2.docx\'.docx\'.pdf', NULL, '1', '2022-05-02', 6, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication and looking for non  voice only', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-02 03:01:59', 1, '2022-05-02 03:29:31', 0, NULL, 1),
(8623, '', '0', '9080522165', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205020008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-02 03:02:51', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8624, 'M.Iswarya', '4', '9080523165', '', 'ishwarya5999@gmail.com', '2000-04-03', 0, '1', '2', 'S.maharaja', 'Vegetable merchant', 60000.00, 2, 0.00, 11000.00, 'Chennai', 'Chennai', '2205020009', '', '1', 'upload_files/candidate_tracker/89627406652_ \'\'ISWARYA RESUME 11.docx\'.docx\'.docx', NULL, '1', '2022-05-02', 0, 'CI114', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'much prefer to work in non voice  will not sustain and not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-02 03:13:13', 1, '2022-05-02 03:13:59', 0, NULL, 1),
(8625, 'Bhaskar', '4', '6281969205', '7702553244', 'bhaskarraogosu43@gmail', '1996-10-10', 25, '2', '2', 'Vishal', 'Vishal', 10000.00, 0, 0.00, 15000.00, 'Paralapalli village konadapuram mandal', 'Bangalore (BTM)', '2205020010', '1', '1', 'upload_files/candidate_tracker/28891935718_my_resume[1].1.pdf', NULL, '1', '2022-05-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '9', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-02 04:06:28', 85, '2022-05-02 04:50:47', 0, NULL, 1),
(8626, 'JAGADHEESH S', '6', '9080188370', '', 'Jagadheesh927@gmail.com', '1999-05-14', 22, '1', '2', 'Subramani P', 'Daily wages', 20000.00, 4, 0.00, 18000.00, 'Koyambedu', 'Koyambedu', '2205020011', '', '2', 'upload_files/candidate_tracker/73006434930_Jagadheesh S.docx', NULL, '1', '2022-05-02', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,No Relevant sales Exp.no sustainability too,Internal Reference,kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-02 04:48:07', 60, '2022-05-03 01:29:33', 0, NULL, 1),
(8627, '', '0', '6369721804', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205020012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-02 06:25:58', 0, NULL, 0, NULL, 1),
(8628, '', '0', '9245406791', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205020013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-02 08:41:57', 0, NULL, 0, NULL, 1),
(8629, 'Kiruthika.s', '6', '8883467332', '9486134206', 'Kiruthi2430@gmail.com', '2000-12-30', 21, '3', '2', 'Saravanan .s', 'Electrion', 15000.00, 0, 0.00, 10000.00, 'Erode', 'Erode', '2205030001', '', '1', 'upload_files/candidate_tracker/67302463822_kri.pdf', NULL, '1', '2022-05-03', 0, '', '3', '59', '2022-05-09', 150000.00, '', '3', '2022-06-22', '2', 'Selected for Suthagar Team - Consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-03 09:39:43', 60, '2022-05-09 05:46:05', 0, NULL, 1),
(8630, 'Ravi Raghavan', '11', '9597881437', '8056191437', 'raviraghavan.v@outlook.com', '1995-07-06', 26, '2', '2', 'Vetriveeran', 'Daily Wager', 10000.00, 1, 17695.00, 20000.00, 'Chennai', 'Chennai', '2205030002', '1', '2', 'upload_files/candidate_tracker/1334099011_RAVI RESUME-1.doc', NULL, '1', '2022-05-03', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,have 8 months Exp in recruitment,salary exp is high and his official notice is 30 days and it cant be negotiable.But sustainability doubts,discussed with Gokul  too and he is not interested in this profile too', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-03 09:56:41', 85, '2022-05-03 10:16:04', 0, NULL, 1),
(8631, 'Aiswarya. S', '4', '9597377416', '8220371014', 'aiswarya192923@gmail.com', '1997-05-17', 24, '2', '2', 'S. Sabapathy', 'Cashier', 30000.00, 1, 0.00, 8000.00, 'D. No 26,annamalai nagar, 2nd street, thanjavur.', 'D. No 25,annamalai nagar, 2nd street, thanjavur.', '2205030003', '1', '1', 'upload_files/candidate_tracker/9500717956_Aiswarya resume.pdf', NULL, '1', '2022-05-03', 0, '', '3', '59', '2022-05-05', 126312.00, '', '2', '1970-01-01', '2', 'Selected for Thanjavur - Erode - Consultant', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-03 10:45:41', 60, '2022-05-20 05:11:09', 0, NULL, 1),
(8632, 'Vinothini M', '4', '6385597258', '', 'Www.agalyavinothini563@gmail.com', '1996-10-29', 25, '2', '1', 'g.s.mohanasundaram, shanthi', 'Document writer', 12000.00, 1, 0.00, 10000.00, '22, North Street Ganapathi Nagar Thanjavur', '22, North Street Ganapathi Nagar Thanjavur', '2205030004', '1', '1', 'upload_files/candidate_tracker/8773182666_Vinothini.MS_Vinothini M.pdf', NULL, '1', '2022-05-03', 0, '', '3', '59', '2022-05-05', 126312.00, '', '4', '2022-05-28', '2', 'Selected for Thanjavur  - Elite  - Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-03 10:45:55', 60, '2022-05-03 05:10:40', 0, NULL, 1),
(8633, 'Manikandan', '6', '9342157956', '9944650312', 'www.msmanikandan9842@gmail.com', '1999-03-16', 23, '2', '2', 'Meena', 'Tailor', 25000.00, 0, 0.00, 15000.00, '117 singampettai bhavani erode 638311', '117singampettai bhavani erode. 638311', '2205030005', '1', '1', 'upload_files/candidate_tracker/12409669503_mani doc 225_Manikandan_Manikandan C.pdf', NULL, '1', '2022-05-03', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is not fit for sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-03 10:57:26', 60, '2022-05-03 06:03:23', 0, NULL, 1),
(8634, '', '0', '8610951052', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205030006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-03 11:11:29', 0, NULL, 0, NULL, 1),
(8635, 'Maiyazhagan', '11', '7418279917', '8438211996', 'maiydass01@gmail.com', '1996-12-01', 24, '2', '2', 'Lakshmanan', 'Driver', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2205030007', '1', '1', 'upload_files/candidate_tracker/62845488170_Maiyazhagan-1.pdf', NULL, '1', '2022-05-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is looking for opportunities in Logistics,long back he attended interview for RE sales and now he appeared for Recruitment.Career Gap and continuously looking for opportunities in Logistics,Will not sustain and not suitable for REcruitment,also his communication is poor', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-03 11:12:16', 85, '2022-05-03 11:29:06', 0, NULL, 1),
(8636, 'A.Rangasamy', '6', '9524766027', '', 'rangasamybcom15@gmail.com', '1998-04-05', 24, '4', '1', 'R.thamaraiselvi', 'Studying', 24000.00, 0, 12000.00, 13000.00, '4/127c, muthananayakkan Palayam, Thokkavadi', '4/127, muthananayakkan Palayam, Thokkavadi', '2205030008', '', '2', 'upload_files/candidate_tracker/9699100702_Rangasamy RESUME-1.docx', NULL, '1', '2022-05-03', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for telecalling', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-03 11:33:22', 60, '2022-05-03 06:05:43', 0, NULL, 1),
(8637, 'SATHISH KUMAR S', '11', '7708129101', '8608981612', 'sathishkumar12298@gmail.com', '1998-06-15', 23, '2', '2', 'Sakthivel', 'Farmer', 40000.00, 2, 15000.00, 20000.00, 'Villupuram', 'Chennai', '2205030009', '1', '2', 'upload_files/candidate_tracker/64600107564_S.SATHISH KUMAR .pdf', NULL, '1', '2022-05-03', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1,8 yrs 3 companies recently 2 months back joined a company and looking for a change only for the salary part,no communication,will not sustain in our roles,not comfortable intaking many calls', '6', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-03 11:45:30', 1, '2022-05-03 11:49:27', 0, NULL, 1),
(8638, 'R.kowsalya', '28', '8939146802', '', 'druga.yashini@gmail.com', '2000-06-03', 21, '2', '2', 'M.Ramalingam', 'Employe', 5000.00, 1, 0.00, 15000.00, 'Bhuvanagiri', 'Mylapore', '2205030010', '1', '1', 'upload_files/candidate_tracker/15995951945_Kowsalya_Resume_Format1.pdf', NULL, '1', '2022-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher ,no basic skills ,have 1 yr exp in textiles sales,but not open up for our Roles,will not handle our pressure not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-03 05:04:44', 1, '2022-05-04 10:13:59', 0, NULL, 1),
(8639, 'K.maha', '13', '6385787975', '9787118279', 'Lakshmim9534@gmail.com', '2000-11-21', 21, '2', '2', 'Kathamparaj', 'farmer', 100000.00, 0, 0.00, 18000.00, 'Chennai', 'Velachery chennai', '2205030011', '1', '1', 'upload_files/candidate_tracker/92897696111_CV_2022032310381632.pdf', NULL, '1', '2022-05-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills , yet to complete her graduation,will not sustain not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-03 06:36:47', 87, '2022-05-06 01:04:13', 0, NULL, 1),
(8640, '', '0', '9566048925', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205030012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-03 06:41:47', 0, NULL, 0, NULL, 1),
(8641, 'Shalini Geethanjali', '11', '8610258645', '', 'shalinigeethanjali12@yahoo.com', '1996-10-12', 25, '2', '2', 'Maniselvi', 'Unemployed', 100000.00, 0, 0.00, 350000.00, 'Chennai', 'Chennai', '2205030013', '1', '2', 'upload_files/candidate_tracker/5908775491_Shalini resume.pdf', NULL, '1', '2022-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good,fresher for Recruitment,Min exp is 20 and not ready to come down,Sustainability doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-03 11:31:43', 1, '2022-05-03 11:36:15', 0, NULL, 1),
(8642, 'Praveen.n', '4', '8248472488', '8072046490', 'Jy.praveen007@gmail.com', '1998-07-08', 23, '3', '2', 'Samanasmary.n', 'Home maker', 25000.00, 1, 0.00, 20000.00, 'No:43, near canara bank, nanjikottai road, tanjore', 'No76,arulanandha nagar 1st cross, near barnabas,', '2205040001', '', '1', 'upload_files/candidate_tracker/42857787510_CV_2021-07-20-011547.pdf', NULL, '1', '2022-05-04', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'not fit', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-04 10:21:17', 1, '2022-05-04 10:33:18', 0, NULL, 1),
(8643, 'Agilandeeswari R', '4', '8681947047', '', 'Agila01062000@gmail.com', '2000-06-01', 21, '1', '2', 'Ravi', 'Driver', 10000.00, 1, 0.00, 12000.00, 'Old washermenpet', 'Old washermenpet', '2205040002', '', '1', 'upload_files/candidate_tracker/34768167899_agiiRESUME-converted.pdf', NULL, '1', '2022-05-04', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-04 10:38:33', 1, '2022-05-04 11:09:37', 0, NULL, 1),
(8644, '', '0', '6380590510', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205040003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-04 10:43:41', 0, NULL, 0, NULL, 1),
(8645, 'Pradeep R', '11', '9940563212', '6369627814', 'pradeepchrismas02@gmail.com', '1995-09-02', 26, '2', '2', 'Parent', 'Labour', 15000.00, 2, 17000.00, 20000.00, 'Chennai', 'Chennai', '2205040004', '1', '2', 'upload_files/candidate_tracker/16700464767_Pradeep resume (1).pdf', NULL, '1', '2022-05-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No,have exp but not in recruitment,just a coordination,Salary Exp is high comparing the exp,not suitable\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-04 10:46:23', 85, '2022-05-04 10:58:43', 0, NULL, 1),
(8646, 'anushpri', '11', '9688422232', '', 'ansuhpriya16@gmail.com', '1998-03-19', 24, '2', '2', 'adaikalam', 'officer', 100000.00, 1, 12000.00, 15000.00, 'madurai', 'chennai', '2205040005', '1', '2', 'upload_files/candidate_tracker/98860377389_Anushpriya.A.docx', NULL, '3', '2022-05-03', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok, Have Only 6 Months Exp In Recruitment, Need To Relocate From Madurai But Her Salary Expect Is Around 18K.His Current Salary Is 10K.Her Sustainability Doubts In The Long Run Comparing Her Salary Expectation.', '6', '1', '', '', '', '', '2', '2022-05-23', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-04 10:50:56', 60, '2022-05-18 02:56:00', 0, NULL, 1),
(8647, 'Karthika', '4', '7339589013', '8489400240', 'karthikabalu967@gmail.com', '1996-08-07', 25, '2', '2', 'Balasubramaniyan', 'Driver', 20000.00, 1, 12.50, 15000.00, 'Thaneerkunnam', 'Thaneerkunnam', '2205040006', '1', '2', 'upload_files/candidate_tracker/99055648400_DocScanner Jan 22, 2022 2.57 PM.pdf', NULL, '1', '2022-05-04', 0, '', '3', '59', '2022-05-05', 164208.00, '', '2', '1970-01-01', '2', 'Selected for Elite - Thanjavur - Consultant', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-04 11:11:22', 60, '2022-05-20 05:10:52', 0, NULL, 1),
(8648, 'Vinitha', '4', '6379822661', '9486015809', 'Vinidurairajan97@gmail.com', '1997-05-07', 24, '4', '2', 'L.durairajan', 'Farmer', 25000.00, 1, 13000.00, 15000.00, 'Ammanpettai', 'Ammanpettai', '2205040007', '', '2', 'upload_files/candidate_tracker/19224094026_Vanitha resume new.pdf', NULL, '1', '2022-05-04', 0, '', '3', '59', '2022-05-05', 164208.00, '', '2', '1970-01-01', '1', 'Selected for Thanjavur location- Consultant', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-05-04 11:20:39', 60, '2022-05-20 05:12:02', 0, NULL, 1),
(8649, 'G.Jackuline', '6', '9790806205', '', 'Jackuline0111@gmail.com', '2000-11-01', 21, '1', '2', 'R.Gnana Sekar', 'Transport', 300000.00, 1, 10000.00, 15000.00, 'No.47 7th St Annai Sivagami Nagar Ennore Ch -57', 'No.47 7th St Annai Sivagami Nagar Ennore Ch-57', '2205040008', '', '2', 'upload_files/candidate_tracker/20832953718_Jack-4.docx', NULL, '1', '2022-05-04', 0, 'P1269', '3', '59', '2022-05-11', 156000.00, '', '4', '2023-02-08', '2', 'Staff Role - Kannan - Balaji Reference - DM RE', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-04 11:30:08', 60, '2022-05-07 11:44:35', 0, NULL, 1),
(8650, 'A Sathiskumar', '6', '9750159149', '', 'sathiskumar12591@gmail.com', '1991-05-12', 30, '4', '1', 'Anbalagan', 'Tailore', 20000.00, 1, 23000.00, 20000.00, 'Bhavani', 'Bhavani', '2205040009', '', '2', 'upload_files/candidate_tracker/26898070288_A.Sathiskumar Resume &.doc', NULL, '1', '2022-05-04', 0, '', '3', '59', '2022-05-10', 216000.00, '', '', '2022-05-16', '1', 'Selected for Erode - PT only - Prop Company', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-04 12:26:08', 60, '2022-05-05 06:46:16', 0, NULL, 1),
(8651, 'Tamilmani', '14', '9171384733', '', 'Ans.tamilmani2828@gmail.com', '1998-08-28', 23, '3', '2', 'N shanmugam', 'Weaver', 10000.00, 1, 0.00, 20000.00, 'Salem', 'Saidapet', '2205040010', '', '1', 'upload_files/candidate_tracker/33412598638_Tamilmani Testing.pdf', NULL, '1', '2022-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Full testing profile,no basic skills of HTML CSS JS,Much focus in Testing profile,not comfort in TxxampC,Not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-04 04:42:01', 1, '2022-05-04 04:45:34', 0, NULL, 1),
(8652, 'DineshKumar.p', '13', '7418120206', '8248544161', 'Pgdkumar161@gmail.com', '1997-02-01', 25, '3', '2', 'Paruvaraj v', 'Vegitables', 20000.00, 2, 10000.00, 18000.00, 'Salem', 'Chennai', '2205040011', '', '2', 'upload_files/candidate_tracker/66674481690_Dineshkumar.P (1).pdf', NULL, '1', '2022-05-04', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'have exp in PHP,Exp is almost ok but need to negotiate,can give a try ,check for PHP and let us know', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-04 04:42:10', 1, '2022-05-04 04:49:33', 0, NULL, 1),
(8653, 'malathi', '4', '6369560106', '', 'malathi199710@gmail.com', '1997-07-10', 24, '3', '2', 'ashokkumar', 'hotel business', 200000.00, 1, 0.00, 12000.00, 'Thanjavur', 'thanjavur', '2205050001', '', '1', 'upload_files/candidate_tracker/23197069362_res.pdf', NULL, '1', '2022-05-05', 0, '', '3', '59', '2022-05-06', 126312.00, '', '3', '2022-08-03', '1', 'Selected for Elite - Thanjavur - Consultant', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-05 09:46:18', 60, '2022-05-05 06:35:08', 0, NULL, 1),
(8654, 'Santhosh.A', '4', '9360158774', '7305256102', 'santhoshsri802@gmail.com', '1996-04-04', 26, '3', '2', 'Ayyappan.E', 'Coolie', 20000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2205050002', '', '2', 'upload_files/candidate_tracker/39520921967_santhosh resume .pdf', NULL, '1', '2022-05-05', 0, '', '3', '59', '2022-05-07', 156000.00, '', '3', '2022-06-11', '1', 'Selected for Erode - Consultant Role', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-05 10:17:48', 60, '2022-05-07 11:50:52', 0, NULL, 1),
(8655, 'Saranya', '4', '9150574413', '', 'Saranyasamantha136@gmail.com', '1999-06-13', 22, '2', '2', 'G.seenivasan', 'Contractor painter', 30000.00, 2, 0.00, 12000.00, '16/39cit nagar 3rd cross street tnagar', 'T.nagar', '2205050003', '1', '1', 'upload_files/candidate_tracker/41626121739_file_05May22.pdf', NULL, '1', '2022-05-05', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile,fresher,not sustained in the previous company more than 20 days,Sustainability doubts in our roles,kindly check and let me know your interest', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-05 10:26:59', 85, '2022-05-05 11:12:27', 0, NULL, 1),
(8656, 'Swathi suresh', '4', '6282409973', '', 'Swathisuresh2255@gmail.com', '2001-09-05', 20, '3', '2', 'Suresh P S', 'Business', 10000.00, 1, 0.00, 19000.00, 'Cherthala, kerala', 'K r puram ,bangaloe', '2205050004', '', '1', 'upload_files/candidate_tracker/13667863522_resume.pdf', NULL, '1', '2022-05-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-05 10:35:06', 1, '2022-05-05 10:40:06', 0, NULL, 1),
(8657, 'jayakumar m.s', '4', '9945327270', '', 'jayakumarmsjaikumar@gmail.com', '1976-10-29', 45, '1', '1', 's.lakshmi', 'house wife', 25000.00, 2, 22000.00, 25000.00, 'BENGALURU', 'BENGALURU', '2205050005', '', '2', 'upload_files/candidate_tracker/67840905183_Resume.pdf', NULL, '1', '2022-05-05', 0, '55555', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-05 10:45:52', 1, '2022-05-05 11:32:54', 0, NULL, 1),
(8658, 'Marimuthu. S', '6', '9944460583', '9894727984', 'marimuthu11052001@gmail.com', '2001-05-11', 20, '1', '2', 'Subramaniyam', 'Carpenter', 20000.00, 1, 0.00, 15000.00, 'Perundurai', 'Erode', '2205050006', '', '1', 'upload_files/candidate_tracker/79892858162_MARIMUTHU S.doc', NULL, '1', '2022-05-05', 0, 'P1311', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-05 10:58:12', 1, '2022-05-05 11:06:57', 0, NULL, 1),
(8659, 'Abdul samad', '11', '9551675471', '7305448661', 'samadsam18@gmail.com', '1994-08-23', 27, '2', '2', 'Parents', 'Nil', 8000.00, 0, 12500.00, 15000.00, '2/51 strahans road 5th Street dadashamakkan ch-12', '2/51 strahans road 5th Street dadashamakkan ch-12', '2205050007', '1', '2', 'upload_files/candidate_tracker/63519437024_abdul samad resume -Final.pdf', NULL, '1', '2022-05-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good,but seems much attentive seeker,will not run for a long in our positions,Pressure handling doubts ', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-05 03:06:36', 85, '2022-05-05 04:17:18', 0, NULL, 1),
(8660, 'Harish Gopalakrishnan', '6', '8825769295', '8524954230', 'harishg7999@gmail.com', '1999-09-07', 22, '3', '2', 'Gopalakrishnan', 'Driver', 30000.00, 1, 0.00, 25000.00, 'Tindivanam', 'Chennai', '2205050008', '', '1', 'upload_files/candidate_tracker/80665970583_CV_2022040411311429.pdf', NULL, '1', '2022-05-05', 0, '', '4', '29', NULL, 0.00, '', '0', NULL, '1', 'Candidate is okay need to conform the salary', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-05 04:00:05', 1, '2022-05-05 04:02:27', 0, NULL, 1),
(8661, 'Nandhini.B', '11', '9566058830', '9941907555', 'nandhinibaskar3@gmail.com', '1993-05-24', 28, '2', '1', 'RAGHUVARAN', 'IT support in chola ms', 35000.00, 1, 16000.00, 25000.00, 'Chennai', 'Medavakkam', '2205050009', '1', '2', 'upload_files/candidate_tracker/31884845739_Resume%20nan.docx', NULL, '1', '2022-05-06', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication very Average,married sustainability doubts,1.5 yrs but seems not a good profile,will no sustain', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-05 05:05:06', 1, '2022-05-05 05:17:17', 0, NULL, 1),
(8662, 'Karthika m', '4', '9677349415', '', 'Ivalkarthika@gmail.com', '1999-11-19', 22, '3', '2', 'Murugesan K', 'Howskeeping', 15000.00, 3, 10000.00, 10000.00, 'Kumarapalayam', 'Kumarapalayam', '2205060001', '', '2', 'upload_files/candidate_tracker/94345942277_Karthika resume.pdf', NULL, '1', '2022-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-06 09:26:26', 1, '2022-05-06 09:34:03', 0, NULL, 1),
(8663, 'Yuvan Shankar', '11', '7358496540', '8056002904', 'ajaybabu7358@gmail.com', '1999-06-28', 22, '2', '2', 'K babu', 'Cleark', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2205060002', '1', '1', 'upload_files/candidate_tracker/41770627997_shankarnew resume (2)-converted-converted (1).pdf', NULL, '1', '2022-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,no basic in recruitment,even in excel,will not handle the work pressure,will not run in a long', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-06 09:41:30', 1, '2022-05-06 10:34:24', 0, NULL, 1),
(8664, 'S. Harini', '11', '9629490002', '9940462234', 'harinibava@gmail', '1989-09-01', 32, '3', '1', 'R. Sundarajan', 'Production manager', 45000.00, 1, 0.00, 20000.00, 'No. 113/1, swamy Naicken St, chindradripet, ch. 2', 'Same as above', '2205060003', '', '2', 'upload_files/candidate_tracker/98877857653_resume (1).docx', NULL, '1', '2022-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Aged,9yrs gap,Fresher for Recruitment,Not comfort to work on saturdays,will not sustain not suitable', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-06 09:42:03', 1, '2022-05-06 09:52:21', 0, NULL, 1),
(8665, 'g padmapriya', '6', '9080959069', '', 'padmapriya3097@gmail.com', '1997-12-30', 24, '1', '2', 'govindasamy', 'driver', 15000.00, 1, 12000.00, 14000.00, 'bhavani', 'bhavani', '2205060004', '', '2', 'upload_files/candidate_tracker/35119998905_Padmapriya CV-3.pdf', NULL, '1', '2022-05-06', 0, 'p1303', '3', '59', '2022-05-09', 168000.00, '', '', '2022-05-14', '2', 'Selected for Suthagar Team - Consultant Role', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', 'Offer Mail sent', '', '', '', NULL, NULL, NULL, 1, '2022-05-06 09:47:36', 60, '2022-05-07 04:39:23', 0, NULL, 1),
(8666, 'C.nivedha', '16', '6374039875', '6379013087', 'nivedhasekar9@gmail.com', '2002-04-29', 20, '2', '2', 'S.chandrasekar', 'Salesman', 11000.00, 1, 0.00, 15000.00, '6/1 ramaligam street sevenwells mint chennai -1', '6/1 ramaligam street sevenwells mint chennai -1', '2205060005', '1', '1', 'upload_files/candidate_tracker/37524679537_TapScanner 05-06-2022-10?51.pdf', NULL, '1', '2022-05-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for MIS,can give a try,Gokul Interviewed,Yet to complete their exams,if they come back lets see', '3', '2', '0', '1', '1', '0', '2', '2022-05-16', '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-06 10:32:23', 1, '2022-05-06 10:52:57', 0, NULL, 1),
(8667, 'Ashwitha C', '16', '8248113250', '', 'ashwithachandrasekar02@gmail.com', '2002-07-24', 19, '2', '2', 'Chandraseker S', 'Shopkeeper', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2205060006', '1', '1', 'upload_files/candidate_tracker/5522427608_Ashwitha C Resume.pdf', NULL, '1', '2022-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,need to open alot,will not handle our pressure not suitable', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-06 10:32:33', 1, '2022-05-06 11:46:47', 0, NULL, 1),
(8668, 'D.v.Bharathi', '16', '9176317450', '', 'Bharathivasanth2806@gmail.com', '2002-05-28', 19, '2', '2', 'D.Vasantha kumar', 'Business', 22000.00, 1, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2205060007', '1', '1', 'upload_files/candidate_tracker/47677815704_TapScanner 05-06-2022-10?42.pdf', NULL, '1', '2022-05-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher For MIS,Can Give A Try, Gokul Interviewed,Yet To Complete Their Exams,If They Come Back Lets See', '3', '2', '0', '1', '1', '0', '2', '2022-05-16', '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-06 10:32:42', 1, '2022-05-06 10:46:19', 0, NULL, 1),
(8669, 'R.Shalini', '16', '9080158585', '9444443747', 'Shaluma17012002@gmail.com', '2002-01-17', 20, '2', '2', 'Ramesh SD', 'Sub Inspector', 40000.00, 1, 0.00, 15000.00, 'No.41 A block Triplicane police quarters', 'Chennai', '2205060008', '1', '1', 'upload_files/candidate_tracker/13741390076_CV_2022032310381632.pdf', NULL, '1', '2022-05-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher,Need To Open Alot,Will Not Handle Our Pressure Not Suitable', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-06 10:32:59', 87, '2022-05-06 01:05:14', 0, NULL, 1),
(8670, 'Mythily. N', '6', '9344697831', '', 'mythilynagarajan08@gmail.com', '2001-03-08', 21, '1', '2', 'Nagarajan. R', 'Construction supervisor', 50000.00, 1, 0.00, 12000.00, 'Chennimalai', 'Chennimalai', '2205060009', '', '1', 'upload_files/candidate_tracker/7110119998_Mythily profile oct.pdf', NULL, '1', '2022-05-06', 0, 'P1311', '3', '59', '2022-05-09', 144000.00, '', '6', '2022-09-01', '2', 'Selected for Suthagar Erode - Consultant', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', 'Offer Mail shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-06 10:39:17', 60, '2022-05-07 04:53:49', 0, NULL, 1),
(8671, 'Sundarapandi. R', '6', '9677018364', '', 'Johnsonjanath1303@gmail.com', '1996-03-13', 26, '1', '2', 'Rathinam. m', 'Dailywages', 15000.00, 3, 0.00, 20000.00, 'No 36 ponnan street purasaiwalkam chennai 600007', '36 Ponnan Street Purasaiwalkam Chennai 600007', '2205060010', '', '1', 'upload_files/candidate_tracker/37970686101_Latest SUNDARAPANDIYAN Resume(1)(1)(1).pdf', NULL, '1', '2022-05-06', 0, 'P1304', '3', '59', '2022-05-11', 185000.00, '', '', '2022-05-17', '1', 'Selected for Ravi Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', 'Offer Letter Document Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-06 11:24:26', 60, '2022-05-11 10:30:08', 0, NULL, 1),
(8672, '', '0', '9444443747', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-06 11:30:52', 0, NULL, 0, NULL, 1),
(8673, 'Shanmuga priya', '6', '9443009343', '9080284348', 'gshanmugapriyaece@gmail.com', '1996-01-02', 26, '3', '2', 'Nirmala Devi G', 'Sales women', 7000.00, 1, 20000.00, 16000.00, 'Sivagiri', 'Sivagiri', '2205060012', '', '2', 'upload_files/candidate_tracker/36626251833_RESUME 2022 SHANMUGA PRIYA WITH PHOTO (1).pdf', NULL, '1', '2022-05-06', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'nO RELAVAND EXPERIENCE.. ALREADY HAVING 20K SALARY SO EXPECT SALARY WE NOT PROVIDE', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-06 11:49:31', 60, '2022-05-06 03:38:53', 0, NULL, 1),
(8674, 'Gokul k', '11', '7358589737', '9080413328', 'gokularvind97@gmail.com', '1997-01-07', 25, '2', '2', 'Kannan', 'Private job', 30.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2205060013', '1', '1', 'upload_files/candidate_tracker/77960822235_CV_2022050514064633.pdf', NULL, '1', '2022-05-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking much focus on the core,will not run for a long in our roles,will not sustain', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-06 11:54:54', 1, '2022-05-06 11:59:05', 0, NULL, 1),
(8675, 'Thiruvengadam', '5', '8610250716', '8489884724', 'tvsunsilk@gmail.com', '1989-05-15', 32, '1', '1', 'Tamil elakkiya', 'Agriculture', 20000.00, 2, 31000.00, 40000.00, 'Chennai', 'Chennai', '2205060014', '', '2', 'upload_files/candidate_tracker/26126974565_update resume.pdf', NULL, '1', '2022-05-06', 0, '55559', '4', '34', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Sales,but not sure on the calling activities,age around 32 years,,taking calls doubts a lot,5050 profile do check and let me know\n', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-06 12:28:07', 60, '2022-05-06 03:43:53', 0, NULL, 1),
(8676, 'Madhavan.m', '1', '9361548365', '', 'madhavanba49@gmail.com', '2001-12-15', 20, '2', '2', 'Murugan.m', 'Farmer', 10000.00, 1, 13000.00, 15000.00, 'Marakkanam', 'Velachery', '2205060015', '1', '2', 'upload_files/candidate_tracker/42139921208_mathavan.docx', NULL, '1', '2022-05-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open up,will not handle our pressure', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-06 12:30:46', 85, '2022-05-06 12:55:42', 0, NULL, 1),
(8677, 'Sivaraman D', '5', '8072946509', '', 'sndgsivaraman@gmail.com', '1996-05-17', 25, '1', '2', 'Dharmalingam', 'Wever', 15000.00, 1, 30000.00, 30000.00, 'Chennai', 'Chennai', '2205060016', '', '2', 'upload_files/candidate_tracker/32613442654_CV_2022032310381632.pdf', NULL, '1', '2022-05-06', 0, 'P1191', '3', '59', '2022-05-11', 375000.00, '', '4', '2022-09-07', '1', 'Selected for Pandian Team   -  PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Letter Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-06 01:24:33', 60, '2022-05-10 05:12:34', 0, NULL, 1),
(8678, 'kiruthika.m', '11', '9345234199', '8098725806', 'keerthimurugaiyan1224@gmail.com', '1999-07-02', 22, '2', '2', 'murugaiyan.p', 'accounts and finance', 20000.00, 0, 0.00, 12000.00, 'chennai', 'velacherry check post', '2205060017', '1', '1', 'upload_files/candidate_tracker/63581798936_keerthi Resume.pdf', NULL, '1', '2022-05-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication,not suits for recruitment,not interested to go in telesales too ,  not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-06 02:04:11', 87, '2022-05-07 10:21:33', 0, NULL, 1),
(8679, '', '0', '9566057441', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205060018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-06 10:37:04', 0, NULL, 0, NULL, 1),
(8680, 'Premkumar', '4', '7200378444', '', 'bpremkumar030@gmail.com', '1995-01-30', 27, '3', '2', 'Balaji', 'Tailor', 10000.00, 1, 25000.00, 20000.00, '43, pillayarkoil st reddiyur', 'Svs Nagar, valasaravakam', '2205070001', '', '2', 'upload_files/candidate_tracker/47759058414_prem.docx', NULL, '1', '2022-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-07 09:47:41', 1, '2022-05-07 09:54:39', 0, NULL, 1),
(8681, 'Naresh M', '11', '8148142608', '', 'Naresh.uv2112@gmail.com', '1995-12-21', 26, '2', '2', 'Alamelu', 'Home maker', 20000.00, 0, 18500.00, 22000.00, 'Chennai', 'Chennai', '2205070002', '1', '2', 'upload_files/candidate_tracker/9285988289_naresh resume 2.pdf', NULL, '1', '2022-05-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Recruiter,but his exp is very high concern the previous exp,not ready to come down on the salary and being a fresher exp very high', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-07 10:44:39', 1, '2022-05-07 10:47:59', 0, NULL, 1),
(8682, '', '0', '9562984098', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205070003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-07 11:38:24', 0, NULL, 0, NULL, 1),
(8683, '', '0', '9886678878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205070004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-07 11:56:27', 0, NULL, 0, NULL, 1),
(8684, 'Meghana. J', '5', '7019666545', '9353390310', 'santhusanthosh01738@gmail.com', '2000-09-06', 21, '1', '1', 'Santosh', 'Self employee', 20000.00, 1, 0.00, 20000.00, 'Bellandur BBMP office 2nd cross opposite', 'Bellandur BBMP office 2nd cross', '2205070005', '', '1', 'upload_files/candidate_tracker/59135935898_MEGHA J.doc', NULL, '1', '2022-05-07', 0, '55599', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-07 12:59:29', 60, '2022-05-09 11:40:37', 0, NULL, 1),
(8685, '', '0', '8062628152', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205070006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-07 03:12:33', 0, NULL, 0, NULL, 1),
(8686, 'nagaraj.s', '4', '8270455986', '9688742015', 'masternaga986@gmail.com', '2000-10-27', 21, '1', '2', 'shanmugam', 'business', 20000.00, 1, 0.00, 14000.00, 'bhavani', 'bhavani', '2205070007', '', '1', 'upload_files/candidate_tracker/69658163305_Resume (1).pdf', NULL, '1', '2022-05-07', 0, 'p1311', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-07 03:21:11', 1, '2022-05-07 03:57:09', 0, NULL, 1),
(8687, '', '0', '9840132752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205070008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-07 03:27:35', 0, NULL, 0, NULL, 1),
(8688, 'chiranjeevi n', '5', '7760323801', '', 'chiranjeevinmba@gmail.com', '1993-01-03', 29, '1', '2', 'anantha p', 'housewife', 100000.00, 0, 0.00, 20000.00, 'marathahalli', 'marathahalli', '2205070009', '', '1', 'upload_files/candidate_tracker/28629488177_chiru_resume-6.doc', NULL, '1', '2022-05-07', 0, '55601', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-07 03:32:34', 1, '2022-05-07 03:43:31', 0, NULL, 1),
(8689, 'Divya', '4', '6374387075', '7598424651', 'Divyaravi2632000@gmail.com', '2000-03-26', 22, '2', '2', 'Ravi', 'Business', 25000.00, 1, 15000.00, 18000.00, 'Surandai', 'Chennai', '2205070010', '1', '2', 'upload_files/candidate_tracker/16274086273_Divya R.pdf', NULL, '1', '2022-05-13', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-05-07 08:29:19', 1, '2022-05-07 08:42:28', 0, NULL, 1),
(8690, 'vasanth k', '4', '8838072383', '', 'kvasanth1203@gmail.com', '2000-03-12', 22, '2', '2', 'kumar', 'agriculture', 15000.00, 1, 0.00, 12000.00, 'erode', 'chennai', '2205090001', '2', '1', 'upload_files/candidate_tracker/79001602139_vasanth. k _ resume.pdf', NULL, '1', '2022-05-09', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,need to open a lot,can give a try for Erode,Once done with next round lets see', '1', '1', '0', '1', '1', '0', '2', '2022-05-10', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-09 09:18:53', 1, '2022-05-09 09:20:30', 0, NULL, 1),
(8691, 'Wilson', '6', '9025565434', '9384623380', 'Willuwilson96@gmail.com', '1999-06-22', 22, '1', '2', 'Moses', 'Cooli', 10000.00, 2, 17000.00, 20000.00, 'No. 3, 1st Street, Sasthri Nagar, Chennai 600084.', 'No. 3, 1st Street, Sasthri Nagar, Chennai 600084.', '2205090002', '', '2', 'upload_files/candidate_tracker/46064066565_Kaagaz_20220509_105433055391.pdf', NULL, '1', '2022-05-09', 0, 'P1306', '3', '59', '2022-05-16', 204000.00, '', '', '2022-05-17', '1', 'Selected for Thiyagu Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-09 10:42:52', 60, '2022-05-14 05:44:30', 0, NULL, 1),
(8692, 'mohammed ABINAS', '4', '6381266022', '', 'mdabina97@gmail.com', '1997-11-09', 24, '2', '2', 'syed', 'bussiness', 20000.00, 1, 0.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2205090003', '1', '1', 'upload_files/candidate_tracker/67835003390_RESUME (27).pdf', NULL, '1', '2022-05-09', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for voice process', '1', '1', '', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-05-09 11:05:39', 85, '2022-05-11 12:59:15', 0, NULL, 1),
(8693, 'Bharathraj', '31', '8925686482', '7708660293', 'Bharathraj7598@gmail.com', '1998-05-07', 24, '1', '2', 'Tamizhmani', 'Residency manager', 10000.00, 2, 0.00, 15000.00, 'Tindivanam', 'Adambakkam chennai', '2205090004', '', '1', 'upload_files/candidate_tracker/33434621962_Bharathraj', NULL, '1', '2022-05-09', 0, 'JOBS', '3', '59', '2022-05-10', 120000.00, '', '3', '2024-03-01', '1', 'Selected for Mern - 5K stipend for 5 month then 10-12K Salary 3yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-09 11:49:22', 60, '2022-05-10 04:54:36', 0, NULL, 1),
(8694, 'Venkatesan S', '6', '9840279313', '9952069674', 'Venkatesans2810@gmail.com', '1991-10-28', 30, '1', '2', 'Driver', '15000', 20000.00, 0, 0.00, 20000.00, 'Vandavasi', 'Chennai, pallikaranai', '2205090005', '', '1', 'upload_files/candidate_tracker/85213844863_RESUME 4.docx.pdf', NULL, '1', '2022-05-09', 0, 'Joba', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-09 12:23:05', 1, '2022-05-09 12:35:37', 0, NULL, 1),
(8695, '', '0', '7358468026', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205090006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-09 12:26:23', 0, NULL, 0, NULL, 1),
(8696, 'Paviya p', '11', '8248624152', '7305155580', 'Paviya3176@gmail.com', '2001-02-09', 21, '2', '2', 'Sukesh', 'Hr', 20.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2205090007', '1', '2', 'upload_files/candidate_tracker/42824289358_paviya updated.docx', NULL, '3', '2022-05-14', 20, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok,Have Exp In Telecalling And 3 Months In Recruitment,Need To Be Trained,5050 Profile,Not Comfirtable With TxxampC', '6', '1', '0', '1', '1', '0', '2', '2022-05-16', '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-09 03:35:08', 1, '2022-05-09 04:08:04', 0, NULL, 1),
(8697, 'M.sai Lakshit', '11', '9363510119', '9840172472', 'sailogesh0852@gmail', '1998-02-04', 24, '2', '2', 'Madhavan', 'Daily wages', 1500.00, 0, 0.00, 14000.00, 'Guduvanchery', 'Guduvanchery', '2205090008', '1', '1', 'upload_files/candidate_tracker/80278741364_resume sai final.pdf', NULL, '1', '2022-05-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-09 05:12:55', 1, '2022-05-09 05:25:45', 0, NULL, 1),
(8698, 'sahana', '11', '8682912393', '', 'sahanasara1997@gmail.com', '1997-12-19', 24, '2', '2', 'kirupanandam', 'officer', 10000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2205090009', '1', '1', 'upload_files/candidate_tracker/97348395015_sahana1.pdf', NULL, '1', '2022-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication is Good, has exp in IT recruitment, her current salary is 2.5 LPA, earlier when she joins the company it was 2.3 LPA. Now she is expecting 3 LPA finally ready to come down to 2.6 LPA but only 6 months strong in IT profiles. In our sales profile, she was ok but seems not much comfortable with TxxampC.Ask her to come for F2F and lets decide', '6', '1', '', '', '', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-09 05:16:43', 60, '2022-05-18 02:59:08', 0, NULL, 1),
(8699, '', '0', '7305457458', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205090010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-09 08:30:14', 0, NULL, 0, NULL, 1),
(8700, 'Jagan p', '6', '7604998198', '9965128841', 'jaganperiyasamy1234@gmail.com', '2002-08-20', 19, '2', '2', 'PERIYASAMY EP', 'Couli', 72.00, 0, 7000.00, 12.00, 'Ganapathypalayam', 'Ganapathypalayam', '2205100001', '1', '2', 'upload_files/candidate_tracker/53136367553_jagan new resumes.pdf', NULL, '1', '2022-05-10', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '19yrs old .. not suitable for our profile.. ', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-10 10:29:07', 60, '2022-05-10 04:31:11', 0, NULL, 1),
(8701, 'Vimalraj', '6', '9344149629', '', 'priyanprithvi980@gmail.com', '2003-06-27', 18, '2', '2', 'Veerappan v', 'Couli', 70.00, 1, 13000.00, 13000.00, 'NANJAIPULIYAMPATTI', 'GOBICHETTIPALAYAM', '2205100002', '1', '1', 'upload_files/candidate_tracker/70102212860_vimalraj resume msv.pdf', NULL, '1', '2022-05-10', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '19yrs Old .. Not Suitable For Our Profile.. ', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-10 10:29:18', 60, '2022-05-10 04:30:42', 0, NULL, 1),
(8702, 'naveen prasanth', '4', '9600894625', '', 'svnaveenprasanth@gmail.com', '1992-08-07', 29, '2', '2', 'vaitheeswaran', 'driver', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2205100003', '2', '1', 'upload_files/candidate_tracker/65319361058_Naveenprasanth_resume-converted.pdf', NULL, '1', '2022-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-10 11:53:05', 1, '2022-05-10 11:56:10', 0, NULL, 1),
(8703, 'Magesh .K', '6', '8667575204', '9043578051', 'davidmagesh1997@gmail.com', '1997-05-22', 24, '2', '2', 'Poongodi.p', 'Working court staff. Bhavani', 20000.00, 1, 0.00, 15.00, 'Perundurai', 'erode', '2205100004', '1', '1', 'upload_files/candidate_tracker/70159517268_David resume 3.pdf', NULL, '1', '2022-05-10', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate okay.. but candidate need to discuss with family because here target job so', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-10 12:27:41', 85, '2022-05-10 12:35:24', 0, NULL, 1),
(8704, 'Manikandan M', '4', '9080006765', '', 'lovrymani@gmail.com', '1998-01-14', 24, '4', '1', 'Karthipriya', 'Housewife', 30000.00, 1, 14700.00, 15000.00, 'ERODE', 'ERODE', '2205100005', '', '2', 'upload_files/candidate_tracker/93789786868_Mani resume.docx', NULL, '1', '2022-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-10 12:44:21', 1, '2022-05-10 12:51:58', 0, NULL, 1),
(8705, 'Pushparaj.R', '11', '8807988890', '9940545308', 'rohitraj98404@gmail.com', '2001-06-28', 20, '2', '2', 'E.Rajan', 'Land survey and settlement department.', 20000.00, 1, 20000.00, 23000.00, '40/9 new street dhamodrapuram adyar Chennai 600020', '40/9 new street dhamodrapuram adyar Chennai 600020', '2205100006', '1', '2', 'upload_files/candidate_tracker/38021697418_Pushparaj.R (Resume)(2).pdf', NULL, '1', '2022-05-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-10 01:15:19', 1, '2022-05-10 03:02:35', 0, NULL, 1),
(8706, 'SAI KUMAR KJ', '6', '9940277607', '9176589807', 'sksai2119@gmail.com', '1999-01-21', 23, '3', '2', 'KANNAN', 'Business', 90000.00, 1, 0.00, 22000.00, 'AP 50,9th Street ,ANNA NAGAR WEST , CH- 600101', 'AP 50,9th Street ,ANNA NAGAR WEST , CH- 600101', '2205100007', '', '1', 'upload_files/candidate_tracker/82526742239_RESUME ( SAI KUMAR KJ).docx', NULL, '1', '2022-05-10', 0, '', '3', '59', '2022-05-12', 198000.00, '', '', '1970-01-01', '1', 'Selected for Syed Team  -  Staff Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-10 01:26:11', 60, '2022-05-10 07:06:02', 0, NULL, 1),
(8707, 'chandana', '11', '9182354935', '', 'chandanapentyala@gmail.com', '1997-05-05', 25, '2', '2', 'chandanapentyala', 'officer', 100000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2205100008', '1', '2', 'upload_files/candidate_tracker/9606962625_chandanaresume221.docx', NULL, '2', '2022-05-14', 0, '', '6', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '1', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-10 06:53:18', 87, '2022-05-18 03:19:40', 0, NULL, 1),
(8708, 'JEEVAGAN.R', '4', '9600818965', '9025415733', 'Jeevagan44633@gmail.com', '2003-06-30', 18, '2', '2', 'RAJASEKAR.M', 'DRIVER', 10000.00, 1, 0.00, 13000.00, 'MANNARGUDI', 'MANNARGUDI', '2205110001', '1', '1', 'upload_files/candidate_tracker/91195586194_ Resume.pdf', NULL, '1', '2022-05-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-11 10:35:32', 85, '2022-05-11 10:57:32', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8709, 'Ganesh Kumar.R', '4', '9025415733', '9600818965', 'Gkt0707gkt@gmail.com', '2002-05-04', 20, '2', '2', 'Rajasekar.S', 'Driver', 13.00, 1, 0.00, 12.00, 'Rukmanikulam thenkarai,Mannargudi', 'Rukmanikulam Thenkarai,Mannargudi', '2205110002', '1', '1', 'upload_files/candidate_tracker/26713794383_Ganesh resume.docx', NULL, '1', '2022-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped No  response', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-11 10:35:34', 85, '2022-05-11 10:57:52', 0, NULL, 1),
(8710, 'Mohana Priya', '11', '9094205983', '', 'Mohana2000priya@gmail.com', '2000-02-20', 22, '2', '2', 'Anbu raj', 'Self employee', 50000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2205110003', '1', '1', 'upload_files/candidate_tracker/96182210775_Mohana Priya.pdf', NULL, '1', '2022-05-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,For recruiter she need to open a lot no basic ideas in the recritment,have exp in telecalling sales,but no sustainability in the previous exp.not comfort on the TxxampC.Will not sustain and not suitable for sales too ', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-11 11:09:06', 1, '2022-05-11 11:13:14', 0, NULL, 1),
(8711, 'Ezhilarasan', '5', '7708312615', '', 'ezhilarasan.seshadri@gmail.com', '1997-08-20', 24, '3', '2', 'Seshadri', 'Despatch clerk', 16000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2205110004', '', '1', 'upload_files/candidate_tracker/92366936205_Resume ezhilarasan.docx', NULL, '1', '2022-05-11', 0, '', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'not ok with  calling', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-11 11:29:51', 1, '2022-05-11 11:37:42', 0, NULL, 1),
(8712, 'K.Sandhiya Dharshini', '4', '7338726771', '9025583735', 'sandhiyasandhu27@gmail.com', '2000-03-08', 22, '2', '2', 'K.Gayathri', 'Housewife', 12000.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2205110005', '1', '1', 'upload_files/candidate_tracker/45763696903_K.Sandhiya Dharshini Resume.pdf', NULL, '1', '2022-05-11', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile,focus much in accounts profile,Fresher for Telecalling ,kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-11 11:43:40', 85, '2022-05-11 12:12:02', 0, NULL, 1),
(8713, 'Sukumar', '4', '6383259415', '8124142475', 'sukumar6198@gmail.com', '1997-07-06', 24, '2', '2', 'Chandrasekaran', 'Painter', 6000.00, 0, 0.00, 13000.00, '719/2, ashok nagar manojipatti Thanjavur', '719/2, Ashok Nagar Manojipatti Thanjavur', '2205110006', '1', '1', 'upload_files/candidate_tracker/22359553615_SUKUMAR.C RESUME (1).pdf', NULL, '1', '2022-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sithyvinayagam rejected the profile\n', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-11 12:15:49', 85, '2022-05-11 12:49:21', 0, NULL, 1),
(8714, 'Mugesh.s', '4', '6382969563', '8608055163', 'Mugeshselvaraj533@gmail.com', '2002-06-11', 19, '2', '2', 'P.selvaraj', 'Painter', 10000.00, 0, 0.00, 13000.00, 'TPS nagar Thanjavur', 'TPS nagar Thanjavur', '2205110007', '1', '1', 'upload_files/candidate_tracker/67591539104_Mukesh Resume.pdf', NULL, '1', '2022-05-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-11 12:15:50', 85, '2022-05-11 12:47:50', 0, NULL, 1),
(8715, 'K.sathishkumar', '6', '8124455938', '8056495927', 'sathishh1404@gmail.com', '1997-04-14', 25, '1', '1', 'Manimala.s', 'Assistant professor', 20000.00, 2, 16000.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2205110008', '', '2', 'upload_files/candidate_tracker/7469793876_Sathish updated Resume-converted.pdf', NULL, '1', '2022-05-11', 0, 'P1290', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Internal REference,not interested in telesales,not interested in Insurance domain too.not suitable ', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-11 12:31:51', 1, '2022-05-11 01:02:48', 0, NULL, 1),
(8716, 'Carole grace', '11', '7338822191', '9003026937', 'Carolegrace1503@gmail.com', '2000-05-15', 21, '2', '2', 'Andrew robert', 'Social worker', 60000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2205110009', '1', '1', 'upload_files/candidate_tracker/3265019304_carole resume.pdf', NULL, '1', '2022-05-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-11 12:33:07', 1, '2022-05-11 12:37:53', 0, NULL, 1),
(8717, 'mopidevi sirisha', '5', '8886442344', '6281410021', 'm.sirisha1004@gmail.com', '1991-04-10', 31, '1', '2', 'm.vijayalakshmi', 'working', 25000.00, 2, 15000.00, 25000.00, 'tenali', 'tenali', '2205110010', '', '2', 'upload_files/candidate_tracker/21575716312_MBA.pdf', NULL, '2', '2022-05-12', 0, 'p1232', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'This is Hyd Candidate and we have freezed recruitment there', '5', '2', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-11 01:08:59', 60, '2022-05-12 10:59:18', 0, NULL, 1),
(8718, 'Sanjay Krishna M', '5', '8056165200', '', 'sanjaykrishna8496@gmail.com', '1996-04-08', 26, '1', '2', 'Manisekar G', 'Retired teacher', 1500000.00, 1, 450000.00, 600000.00, 'Chennai', 'Chennai', '2205110011', '', '2', 'upload_files/candidate_tracker/32200040740_Sanjay krishna Resume-3.pdf', NULL, '1', '2022-05-11', 1, '55585', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-11 02:52:53', 1, '2022-05-11 02:55:44', 0, NULL, 1),
(8719, 'Vijay', '4', '9787818136', '', 'ryanvijay0505@gmail.com', '1998-03-03', 24, '2', '2', 'Ravi', 'Man\'s', 12000.00, 2, 0.00, 15000.00, 'Sholinghur', 'Sholinghur', '2205110012', '1', '1', 'upload_files/candidate_tracker/69169698339_Resume_R.VIJAY.pdf', NULL, '3', '2022-05-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-05-11 03:16:08', 1, '2022-05-11 03:50:21', 0, NULL, 1),
(8720, 'A.m.Oshama Ul Bayaz Parves', '11', '6383775098', '', 'bayazparves2001@gmail.com', '1999-05-17', 22, '2', '2', 'Mohamed Hussain', 'Transaction processing representative', 13000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2205110013', '1', '1', 'upload_files/candidate_tracker/25103581877_Oshama resume crt.docx', NULL, '1', '2022-05-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communicaiton Average,no basic ideas in the recruitment and understanding poor.will not sustain in our roles', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-05-11 03:37:53', 1, '2022-05-11 03:42:13', 0, NULL, 1),
(8721, 'janani', '11', '9003233170', '', 'jananishera@gmail.com', '1998-01-15', 24, '2', '2', 'father', 'officer', 100000.00, 0, 0.00, 16000.00, 'chennai', 'chennai', '2205110014', '1', '2', 'upload_files/candidate_tracker/60401000613_Janani Ciel Resume.pdf', NULL, '1', '2022-05-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-11 03:52:53', 1, '2022-05-11 03:57:10', 0, NULL, 1),
(8722, 'nivedha', '11', '9941202534', '', 'nivisubi1997@gmail.com', '1997-08-16', 24, '2', '2', 'barani durai', 'officer', 100000.00, 0, 18000.00, 16000.00, 'chennai', 'chennai', '2205110015', '1', '2', 'upload_files/candidate_tracker/25887823065_NEW NIVEDHA.pdf', NULL, '1', '2022-05-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-11 03:59:55', 1, '2022-05-11 04:13:19', 0, NULL, 1),
(8723, '', '0', '6385666001', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205110016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-11 04:13:40', 0, NULL, 0, NULL, 1),
(8724, '', '0', '9597281766', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205110017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-11 04:15:34', 0, NULL, 0, NULL, 1),
(8725, 'Balaji k', '11', '6379497559', '9080909330', 'balajikr070@gmail.com', '1999-10-04', 22, '2', '2', 'V . Karthikeyan', 'Business man', 30000.00, 2, 0.00, 15000.00, 'old Perungalathur', 'Old Perungalathur', '2205120001', '1', '1', 'upload_files/candidate_tracker/36105183379_RESUME BALAJI (1).docx', NULL, '1', '2022-05-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communicaiton,will not suits for our roles,up and  down 50 kms', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-12 09:50:17', 85, '2022-05-12 10:34:20', 0, NULL, 1),
(8726, 'Kalaivani', '4', '8925322804', '9677940577', 'stephenaishu2804@gmail.com', '2002-05-04', 20, '2', '2', 'Arun', 'Export garments', 25000.00, 0, 15000.00, 15000.00, 'Ayanavaram Chennai', 'Ayanavaram Chennai', '2205120002', '1', '2', 'upload_files/candidate_tracker/17214308859_kALAI RESUME.pdf', NULL, '1', '2022-05-12', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped ,kept the call on hold for a long and not responding later', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-05-12 10:35:54', 1, '2022-05-12 10:39:25', 0, NULL, 1),
(8727, 'Aarthi', '4', '8778637151', '9176474398', 'aarthisai0019@gmail.com', '1999-06-19', 22, '2', '2', 'Srinivasan', 'Printer', 25000.00, 1, 15000.00, 15000.00, 'Redhills', 'Redhills', '2205120003', '1', '2', 'upload_files/candidate_tracker/41370730146_aarthi resume.pdf', NULL, '1', '2022-05-12', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped RNR\n', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-05-12 10:36:20', 1, '2022-05-12 10:56:23', 0, NULL, 1),
(8728, 'N.Mohammed Haarish Sherif', '4', '9600029159', '7339629159', 'Haarishsherif@gmail.com', '1992-10-25', 29, '4', '1', 'Noor Mohammed.H', 'Business', 50000.00, 2, 22000.00, 25000.00, '45,porkai pandian street sk thottam', 'Erode.1', '2205120004', '', '2', 'upload_files/candidate_tracker/49345149237_HAARISH resume.docx', NULL, '1', '2022-05-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-12 11:08:24', 1, '2022-05-12 11:23:19', 0, NULL, 1),
(8729, 'Mohaideen Abuthahir M', '4', '8531957357', '9524667495', '08121998abuthahir@gmail.com', '1998-12-08', 23, '1', '2', 'Mohamed kassim', 'Computer science', 25000.00, 1, 0.00, 20000.00, '1/8 , Nagur meeran street , ayyampet , Thanjavur', '2/177-1 , Mela valuthoor, Thanjavur,614210', '2205120005', '', '1', 'upload_files/candidate_tracker/81341527814_MOHAIDEEN ABUTHAHIR M(Resume).pdf', NULL, '1', '2022-05-12', 0, 'R55579', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped very high cTC,fresher for Telecalling not ready to come down than 13K', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-12 11:34:56', 60, '2022-05-12 12:58:33', 0, NULL, 1),
(8730, 'Hari.a', '6', '9500133295', '', 'Arunhari4135@email.com', '1997-12-16', 24, '1', '2', 'K.Arumugam', 'Fisherman', 15000.00, 1, 16750.00, 18000.00, 'Pattinapakkam', 'Chennai', '2205120006', '', '2', 'upload_files/candidate_tracker/67928170881_resume (1).docx', NULL, '1', '2022-05-12', 0, 'P1066', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Quality', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-12 12:01:17', 60, '2022-05-12 07:20:11', 0, NULL, 1),
(8731, 'Jestin Prabhu.x', '6', '9677167269', '9884506129', 'Prabhujestin@gmail.com', '1991-07-04', 30, '1', '2', 'Xavier', 'Own business', 30000.00, 1, 20000.00, 25000.00, 'Chennai', 'Vyasarpadi', '2205120007', '', '2', 'upload_files/candidate_tracker/81224057222_jestin resume.docx', NULL, '1', '2022-05-12', 0, '55577', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok Have Exp in Showroom and filed sales,5050 for Telecalling kindly check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-12 01:26:15', 1, '2022-05-12 01:49:24', 0, NULL, 1),
(8732, 'S RUBAN KUMAR', '33', '8610805816', '', 'rubanmercy02@gmail.com', '1995-03-20', 28, '1', '2', 'Srinivasan', 'home', 1.00, 1, 29000.00, 32000.00, 'Royapettah', 'Choolaimedu', '2205120008', '', '1', 'upload_files/candidate_tracker/77941335377_Ruban Resume .pdf', NULL, '1', '2024-01-19', 0, 'Suganya hr', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No sustainability not open to handle the work pressure', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-12 01:46:13', 110, '2024-01-19 01:19:46', 0, NULL, 1),
(8733, 'P Karthick', '4', '8667756984', '9600175264', 'vijaykarthick0607@gmail.com', '1997-07-06', 24, '2', '2', 'Vasantha P', 'Hard work and communication skills', 240000.00, 0, 0.00, 17000.00, 'Nanganallur', 'Nanganallur', '2205120009', '1', '1', 'upload_files/candidate_tracker/27709806627_Karthick_resume (1).pdf', NULL, '1', '2022-05-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communicaiton not open up have 3 yrs in non voice,even not suitable for our MIS Roles', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-12 02:17:29', 1, '2022-05-12 02:27:02', 0, NULL, 1),
(8734, 'HARIPRIYA M', '11', '7092527595', '', 'haripriya1592@gmail.com', '1992-11-15', 29, '2', '1', 'Murali TV', 'Aged person', 17490.00, 1, 19875.00, 27000.00, 'West Tambaram', 'West Tambaram', '2205120010', '1', '2', 'upload_files/candidate_tracker/68691736602_Hari Priya-Resume.doc', NULL, '1', '2022-05-13', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-12 02:29:44', 1, '2022-05-12 02:34:58', 0, NULL, 1),
(8735, 'Viknesh roshan', '11', '7010499044', '9952915353', 'roshanviknesh13@gmail.com', '1993-09-13', 28, '2', '1', 'Angel jaculin epzhiba', 'Bussiness', 120000.00, 1, 28000.00, 25000.00, 'Chennai', 'Chennai', '2205120011', '1', '2', 'upload_files/candidate_tracker/67842578116_Roshan CV updated.pdf', NULL, '1', '2022-05-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-12 03:51:21', 1, '2022-05-12 03:54:15', 0, NULL, 1),
(8736, '', '0', '8939639614', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205120012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-12 05:37:52', 0, NULL, 0, NULL, 1),
(8737, 'Madhavan', '4', '6369919398', '7094037831', 'madhavanreigns9798@gmail.com', '2000-10-09', 21, '2', '2', 'Srinivasan', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Sankarapuram', 'Sankarapuram', '2205120013', '1', '1', 'upload_files/candidate_tracker/11220636238_MADHAVAN RESUME.pdf', NULL, '1', '2022-05-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in Telesales,will not handle ourSales pressure,not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-12 09:20:01', 85, '2022-05-17 11:59:47', 0, NULL, 1),
(8738, 'meentachi', '4', '8438356945', '', 'meenatchia557@gmail.com', '1998-05-15', 23, '2', '1', 'alagansamy', 'coolie', 10000.00, 1, 13000.00, 15000.00, 'chennai', 'chennai', '2205130001', '2', '2', 'upload_files/candidate_tracker/43749037866_WhatsApp Image 2022-05-12 at 3.53.56 PM.pdf', NULL, '1', '2022-05-13', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', '5050 profile,have 1 yr exp but need to open a lot,kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-13 10:05:49', 1, '2022-05-13 10:07:46', 0, NULL, 1),
(8739, 'Angel Jalwin', '4', '8072365397', '', 'angeljalwin11193@gmail.com', '1993-11-01', 28, '2', '2', 'Sahayaraj', 'Hotel supervisor', 100000.00, 1, 13000.00, 25000.00, '12/115 kanmalai Illam old post office mukuperi', '2c/112 bazaar road saidapet chennai', '2205130002', '1', '2', 'upload_files/candidate_tracker/34704851066_resume angel.docx', NULL, '1', '2022-05-13', 15, '', '3', '59', '2022-05-30', 204000.00, '', '5', '1970-01-01', '2', 'Selected for ESales  - PF/PT.ESI Deductions', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-05-13 10:17:12', 60, '2022-05-25 07:27:30', 0, NULL, 1),
(8740, 'Dharanee Dharan', '5', '7339624168', '8190975994', 'dharaneedharan1424619@gmail.com', '1997-05-12', 25, '2', '2', 'Venkatesan', 'Farmer', 18000.00, 2, 3.30, 32000.00, 'Kallakurchi', 'Madiwala', '2205130003', '1', '2', 'upload_files/candidate_tracker/73509338715_Dharanee DD .docx', NULL, '1', '2022-05-13', 0, '', '3', '59', '2022-05-16', 348000.00, '', '4', '2022-11-15', '2', 'Selected for Manivel - Staff Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-05-13 11:13:21', 60, '2022-05-14 01:34:12', 0, NULL, 1),
(8741, 'DINESH BABU R', '6', '7867010473', '', 'rajendrandinesh97@gmail.com', '1997-01-05', 25, '2', '2', 'RAJENDRAN K', 'PRIVATE', 20000.00, 1, 0.00, 15000.00, 'ERODE', 'ERODE', '2205130004', '1', '1', 'upload_files/candidate_tracker/60821579751_resume -dinesh26.07.17.pdf', NULL, '1', '2022-05-13', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'hexquots Thinking over and take time also long time so we rejected.. ', '5', '1', '', '4', '7', '', '2', '2022-05-16', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-13 11:20:57', 60, '2022-05-13 06:23:42', 0, NULL, 1),
(8742, 'Jayasri', '6', '9940034123', '', 'Jayasridhanasekar06@gmail.com', '1998-12-06', 23, '2', '1', 'Somasundram', 'Sales', 20000.00, 1, 0.00, 10000.00, 'Royapuram', 'Royapuram', '2205130005', '1', '1', 'upload_files/candidate_tracker/94241768158_jestin resume.docx', NULL, '1', '2022-05-13', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Exp in Sales,fresher family need is there,kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-13 12:13:34', 60, '2022-05-13 07:00:59', 0, NULL, 1),
(8743, 'R BALAJI', '4', '7904399653', '9566246815', 'balavishal1999@gmail.com', '1999-10-08', 22, '2', '2', 'N RAVICHANDRAN', 'Additional secretary @ secretariat chennai', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2205130006', '1', '1', 'upload_files/candidate_tracker/93417844662_Resume with Sign.pdf', NULL, '3', '2022-05-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOt open up not suitable for Telesales,Attitude issue', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-05-13 03:10:26', 60, '2022-05-14 11:36:52', 0, NULL, 1),
(8744, '', '0', '9087893909', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205130007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-13 03:19:36', 0, NULL, 0, NULL, 1),
(8745, 'R.saminathan', '6', '9597342441', '9384565864', 'www.samimech2@gmail.com', '1995-02-10', 27, '1', '1', 'Mathammal.R', 'Cooly', 25000.00, 2, 0.00, 15000.00, 'Chennampatti', 'Chennampatti', '2205130008', '', '1', 'upload_files/candidate_tracker/9994811983_Saminathan (1).doc', NULL, '1', '2022-05-13', 0, 'P1303', '3', '59', '2022-05-18', 185000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar Team,Fresher  Suthagar Team PF/ESI/PT', '5', '2', '1', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-13 03:22:34', 60, '2022-05-20 05:11:41', 0, NULL, 1),
(8746, 'M nivetha', '4', '9600631823', '9342024866', 'Nivi0826@gmail.com', '2001-08-26', 20, '2', '2', 'Mageshwari', 'Labour', 7000.00, 1, 0.00, 12000.00, 'Rameswaram', 'Rameswaram', '2205130009', '1', '1', 'upload_files/candidate_tracker/83994246286_nivetha resume.pdf', NULL, '3', '2022-05-14', 0, '', '3', '59', '2022-06-17', 126312.00, '', '3', '2022-08-04', '2', 'Selected for Arumbakkam team consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-13 03:59:51', 60, '2022-06-15 03:06:44', 0, NULL, 1),
(8747, '', '0', '8428550808', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-13 04:33:39', 0, NULL, 0, NULL, 1),
(8748, 'Sridhar', '11', '6380160480', '8940818695', 'sridharsri0027@gmail.com', '1997-06-06', 24, '2', '2', 'Rajendran', 'Construction supervisor', 30000.00, 0, 18000.00, 21000.00, 'Chennai', 'Chennai', '2205130011', '1', '2', 'upload_files/candidate_tracker/15351472909_Sridhar Resume.pdf', NULL, '3', '2022-05-14', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication,will not sustain and not suitabe for the position', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-13 04:36:06', 1, '2022-05-13 04:55:44', 0, NULL, 1),
(8749, 'A U ELUMALAI', '11', '8074140206', '8686755489', 'auelumalai007@gmail.com', '1996-12-01', 25, '2', '2', 'A R UDAYAN', 'WEAVER', 10000.00, 2, 17000.00, 20000.00, 'NAGARI', 'SAIDAPET', '2205130012', '1', '2', 'upload_files/candidate_tracker/46608345262_Elumalai 05.docx', NULL, '3', '2022-05-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Poor,no basic knowledge in recruitment areas,he was a kind of executive handled admin activities,will not handle our work pressure,also sustainability issues will be,Salary exp is very high', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-13 04:54:14', 1, '2022-05-13 04:58:57', 0, NULL, 1),
(8750, 'Dhivyapriya.B', '4', '8220736792', '9363214829', 'Dhivyaammu@gmail.com', '2001-11-14', 20, '2', '2', 'P.Baskarraj', 'Farmer', 14000.00, 2, 0.00, 20000.00, 'Trichy', 'Vadapalani', '2205130013', '1', '2', 'upload_files/candidate_tracker/30589304355_DHIVYA PRIYA B.pdf', NULL, '1', '2022-05-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Voice Low,very high salary Expectation,not suitable for our roles', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-13 10:50:23', 1, '2022-05-13 11:11:53', 0, NULL, 1),
(8751, 'Ramya.A', '6', '9500778512', '7708110011', 'riyaramya.a@gmail.com', '1996-04-12', 26, '1', '1', 'Arumugam', 'Former', 15000.00, 1, 11500.00, 15000.00, 'Elishpet', 'Elishpet', '2205140001', '', '2', 'upload_files/candidate_tracker/98771865947_RAMYA RESUME-converted.docx..pdf', NULL, '1', '2022-05-14', 0, 'P1303', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not speaking well.. Family women timing also not suitable for her', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-14 10:13:36', 60, '2022-05-14 11:14:58', 0, NULL, 1),
(8752, 'Ashish Raysing', '5', '7875465282', '9021128500', 'ashray1177@gmail.com', '1998-11-28', 23, '1', '2', 'Motilal Raysing', 'Accounts officer', 8.00, 1, 18000.00, 25000.00, 'Jalna, Maharashtra', 'Whitefield, Bangalore', '2205140002', '', '2', 'upload_files/candidate_tracker/84447569697_Ashish CV.pdf', NULL, '1', '2022-05-14', 15, 'P1246', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dorpped as the candidate is not ready to join us\n', '5', '1', '', '2', '2', '', '2', '2022-05-17', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-14 10:34:45', 60, '2022-05-14 01:28:57', 0, NULL, 1),
(8753, 'Saraswathi.A', '4', '9940471780', '8760130247', 'marunpandi1994@gmail.com', '2000-10-06', 21, '1', '1', 'Arunpandi', 'GRT Jewellers Sales', 12000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2205140003', '', '2', 'upload_files/candidate_tracker/80084292396_SARASWATHI RESUME(3) (1).pdf', NULL, '3', '2022-05-14', 1, 'P142', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication very average,have 8 months in telesales,career Gap ,5050 profile internal reference kindly check and let me know your inputs\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-14 10:54:49', 60, '2022-05-14 05:31:48', 0, NULL, 1),
(8754, 'Deenadhayalan T', '6', '7904955828', '8072225629', 'Deenathangavel9624@gmail.com', '2001-05-17', 20, '1', '2', 'S Thangavel', 'Business', 15000.00, 0, 12000.00, 15000.00, 'Erode', 'Erode', '2205140004', '', '2', 'upload_files/candidate_tracker/80866452217_Deenadhayalan.resume.pdf', NULL, '1', '2022-05-14', 0, 'P1310', '3', '59', '2022-05-18', 190000.00, '', '3', '2022-06-02', '2', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '4', '7', '1', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-14 10:56:35', 60, '2022-05-17 05:18:12', 0, NULL, 1),
(8755, 'Nidish', '6', '8870290748', '7824020757', 'nidishearnest@gmail.com', '2000-05-08', 22, '2', '2', 'Murali . Dad', 'Cooli', 56.00, 1, 0.00, 13.00, 'Vellore', 'Vellore', '2205140005', '1', '1', 'upload_files/candidate_tracker/21523071861_Resume_2022-04-23-102334.pdf', NULL, '2', '2022-05-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable for our roles', '5', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-14 12:13:13', 1, '2022-05-14 01:32:02', 0, NULL, 1),
(8756, 'Gokul Prasath R', '23', '9361039164', '', 'prasatharg@gmail.com', '2001-09-02', 20, '3', '2', 'Ramakrishnan R', 'Freelance designer', 20000.00, 0, 0.00, 25000.00, 'Pollachi', 'Chennai', '2205140006', '', '1', 'upload_files/candidate_tracker/7360665434_Resume.pdf', NULL, '1', '2022-05-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Only into UX designing,candidate is clear that he is just looking for  initial learning will not sustain in our roles,no basic knowledge in UI Development', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-14 12:51:14', 1, '2022-05-14 12:56:39', 0, NULL, 1),
(8757, 'G K NIVETHA', '4', '9003459219', '9443359416', 'nivethanive483@gmail.com', '2001-07-31', 20, '2', '1', 'G. krishnakumar', 'Manager', 30000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2205140007', '1', '1', 'upload_files/candidate_tracker/98213831505_NIVETHA GK.pdf', NULL, '3', '2022-05-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open up fresher not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-05-14 03:30:46', 85, '2022-05-16 09:55:18', 0, NULL, 1),
(8758, 'Govintharaj.R', '4', '6385658859', '', 'govinth753@gmail.com', '1993-05-07', 29, '2', '2', 'Ramakrishnan', 'Engineer supery', 25000.00, 0, 0.00, 25000.00, 'Ramanathapuram,keela selvanoor', 'Chennai porur', '2205140008', '1', '1', 'upload_files/candidate_tracker/47316914452_Template_1652196242034.pdf', NULL, '1', '2022-05-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Sales Exp,No Communication not suitable for our roles', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-14 03:51:00', 1, '2022-05-14 04:07:08', 0, NULL, 1),
(8759, 'Kamalesh', '11', '9840626632', '', 'baalykamalesh@gmail.com', '1993-05-13', 29, '2', '2', 'K Sammanthamoorthy', 'Security', 35000.00, 1, 26000.00, 35000.00, 'Chennai', 'Chennai', '2205160001', '1', '2', 'upload_files/candidate_tracker/89661919067_Kamalesh Resume-1.pdf', NULL, '1', '2022-05-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,No Exp in recruitment,hr executive and min 30K Exp on Salary,also not much comfort on TxxampC,will not sustain for a long', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-16 08:29:49', 1, '2022-05-16 08:42:37', 0, NULL, 1),
(8760, 'Shanmugam', '16', '8883636113', '', 'shan.ss2408@gmail.com', '1992-03-11', 30, '2', '2', 'Shan', 'Business', 15000.00, 2, 12000.00, 15000.00, 'Chennai', 'Chennai', '2205160002', '2', '2', 'upload_files/candidate_tracker/27681370556_RESUME Bhanu.docx', NULL, '1', '2022-05-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no communication,not much strong in the excel work,will not handle our pressure', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-16 11:00:19', 1, '2022-05-16 11:05:35', 0, NULL, 1),
(8761, 'Ramesh K', '28', '9940698540', '', 'ramesh.karuna@yahoo.in', '1989-06-04', 32, '1', '1', 'Uvarani', 'Homemaker', 20000.00, 1, 386000.00, 475000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2205160003', '', '2', 'upload_files/candidate_tracker/53754624231_Ramesh_Resume-2.docx', NULL, '1', '2022-05-16', 60, '5185', '1', '72', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-16 11:29:53', 1, '2022-05-16 11:34:25', 0, NULL, 1),
(8762, 'Srinivasan shanmugam', '23', '9940314966', '6380330996', 'Designercode25@gmail.com', '1997-11-25', 24, '2', '2', 'Usha', 'Ui/ux designer', 25000.00, 1, 15000.00, 22000.00, '1/54, thiruvalluvar street, babu garden, kovur,', '1/54, Thiruvalluvar Street, Babu Garden, Kovur', '2205160004', '1', '2', 'upload_files/candidate_tracker/51316358268_srinivasan resume.pdf', NULL, '1', '2022-05-16', 30, '', '4', '69', NULL, 0.00, '', '0', NULL, '1', 'Check with the task and let us decide\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-16 11:51:56', 1, '2022-05-16 12:01:13', 0, NULL, 1),
(8763, 'Kanagaraj.j', '23', '8220869961', '', 'kanagaraj0817@gmail.com', '1999-08-08', 22, '2', '2', 'jayachandran np', 'mason', 14000.00, 0, 12000.00, 13000.00, 'ranipet', 'Chennai', '2205160005', '1', '2', 'upload_files/candidate_tracker/76277107115_Kanagaraj Resume 01.pdf', NULL, '1', '2022-05-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no communication no basic knowledge in Figma,Designing Skills,need to open a lot,will not handle our pressure', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-16 11:59:18', 1, '2022-05-16 12:20:45', 0, NULL, 1),
(8764, 'Siranjeevi', '4', '9345687455', '8939650138', 'sirangv0015@gmail.com', '1997-01-15', 25, '2', '2', 'Dhandabani', 'Head Master', 95000.00, 2, 0.00, 15000.00, 'Tindivanam', 'Perambur', '2205170001', '1', '1', 'upload_files/candidate_tracker/49680569637_Siran.docx', NULL, '1', '2022-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-17 10:44:29', 1, '2022-05-17 10:48:42', 0, NULL, 1),
(8765, 'Sangeeta k', '4', '9962294432', '9094597139', 'sangikannil98@gmail.com', '1998-07-16', 23, '2', '2', 'Kanniyappan', 'Cooly', 12000.00, 1, 0.00, 12000.00, 'No:183 sasthri nagar 9th Streethope, Chennai-12', 'Chennai', '2205170002', '1', '2', 'upload_files/candidate_tracker/45995611728_Resume_Sangee resume_Format7.pdf', NULL, '1', '2022-05-17', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 2.3 yrs exp in telecalling,but ni collections,can give atry for ESales kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-17 10:51:58', 85, '2022-05-17 11:31:31', 0, NULL, 1),
(8766, 'Ajithkumar k', '6', '7604800370', '6379952708', 'ajithkumar30042001@gmail.com', '2001-04-30', 21, '2', '2', 'Lakshmi', 'Cooli', 10000.00, 5, 0.00, 15000.00, 'Chennampatti', 'Sanisanthai', '2205170003', '1', '1', 'upload_files/candidate_tracker/96236887463_CamScanner 05-17-2022 11.10.pdf', NULL, '1', '2022-05-17', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-17 11:00:40', 60, '2022-05-17 03:53:00', 0, NULL, 1),
(8767, 'yeshwanth.R', '6', '7019758349', '8150062317', 'yeshwanth877@gmail.com', '1996-07-27', 25, '3', '2', 'Rukmeni.B', 'House wife', 25000.00, 1, 25300.00, 20000.00, 'BANGALORE', 'BANGALORE', '2205170004', '', '2', 'upload_files/candidate_tracker/89311443338_Resume 1111.docx', NULL, '1', '2022-05-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-17 11:23:54', 1, '2022-05-17 11:27:45', 0, NULL, 1),
(8768, 'Kalaiyarasi', '6', '9361660830', '9095060156', 'Kalaiyarasithiruchelvam@gmail.com', '2001-06-15', 20, '2', '2', 'Thiruchelvam', 'Cooli', 25000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2205170005', '1', '1', 'upload_files/candidate_tracker/67016668518_kalai resume-1.docx', NULL, '1', '2022-05-17', 0, '', '3', '59', '2022-05-18', 156000.00, '', '3', '2022-06-02', '2', 'Selected for RE - Consultant Role - Erode Suthagar Team', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-17 11:51:31', 60, '2022-05-17 06:59:42', 0, NULL, 1),
(8769, 'Abdul Rahuman A', '5', '7010521174', '8682956686', 'arrahu7010@gmail.com', '1992-05-20', 29, '1', '2', 'Abdul Kadhar', 'Security Job', 10000.00, 1, 27200.00, 32000.00, 'Chennai', 'Chennai', '2205170006', '', '2', 'upload_files/candidate_tracker/77507234004_Abdul Rahuman Resume 2022.docx', NULL, '1', '2022-05-17', 0, 'P1313', '3', '59', '2022-05-23', 396000.00, '', '3', '2023-06-03', '1', 'Selected for Manikandan - RM profile with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-17 12:22:21', 60, '2022-05-20 12:17:59', 0, NULL, 1),
(8770, 'Vinothraja', '6', '6379561059', '', 'vinothlee87@gmail.com', '1997-05-30', 24, '2', '2', 'T.manoharan', 'Carpenter', 25000.00, 1, 0.00, 25000.00, 'Karaikal', 'Pondicherry', '2205170007', '1', '1', 'upload_files/candidate_tracker/28175059663_Vinothraja. M Resume.pdf', NULL, '1', '2022-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-17 03:21:29', 1, '2022-05-17 03:44:16', 0, NULL, 1),
(8771, 'aksheya murugan', '14', '6380989837', '', 'aksheyamurugan@gmail.com', '2001-01-19', 21, '2', '2', 'karunakaran', 'business', 14000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2205170008', '2', '1', 'upload_files/candidate_tracker/74171465214_CV_202204301508472.pdf', NULL, '1', '2022-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-17 08:44:07', 1, '2022-05-17 08:46:11', 0, NULL, 1),
(8772, 'chittibabu', '4', '7092736042', '', 'chittibabujohn@gmail.com', '1995-08-15', 26, '2', '2', 'anthony raj', 'business', 10000.00, 2, 14000.00, 16000.00, 'chennai', 'chennai', '2205170009', '2', '2', 'upload_files/candidate_tracker/19436419439_Chitti Babu Resume.docx', NULL, '1', '2022-05-18', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for our process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-17 08:48:57', 85, '2022-05-19 06:35:23', 0, NULL, 1),
(8773, 'suresh babu', '11', '7010270581', '', 'shsuresh66@gmail.com', '1991-02-01', 31, '2', '2', 'natrajan', 'business', 10000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2205170010', '2', '2', 'upload_files/candidate_tracker/3718711104_Document.pdf', NULL, '3', '2022-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-17 09:13:13', 1, '2022-05-19 11:34:59', 0, NULL, 1),
(8774, 'shankar', '6', '7397303133', '', 'shankar121870@gmail.com', '1996-02-01', 26, '2', '2', 'subramani', 'tailor', 14000.00, 0, 12000.00, 15000.00, 'chennai', 'chennai', '2205170011', '2', '2', 'upload_files/candidate_tracker/56753178709_Resume.pdf', NULL, '1', '2022-05-18', 0, '', '3', '59', '2022-05-19', 210000.00, '', '2', '1970-01-01', '1', 'Selected for RE Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-17 09:46:10', 60, '2022-05-20 05:11:26', 0, NULL, 1),
(8775, '', '0', '7550220450', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205180001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-18 09:31:00', 0, NULL, 0, NULL, 1),
(8776, 'M Harshavardhanreddy', '25', '8919598379', '9676202667', 'harshavardhanreddy0667@gmail.com', '1994-06-20', 27, '2', '2', 'M Siva reddy', 'Farmer', 60000.00, 1, 0.00, 15000.00, 'Thurakavandla palli anantapur dist', 'Btm 1st stage old madiwala', '2205180002', '24', '1', 'upload_files/candidate_tracker/75340299431_harsha.docx', NULL, '1', '2022-05-18', 0, '', '5', '93', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No response ', '8', '1', '', '2', '2', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-18 11:32:38', 60, '2022-05-20 01:26:55', 0, NULL, 1),
(8777, 'monisha', '4', '8072681112', '', 'monjid121198@gmail.com', '1998-11-12', 23, '2', '2', 'kannan', 'business', 13000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2205180003', '2', '2', 'upload_files/candidate_tracker/25467450544_MONISHA- RESUME.docx', NULL, '1', '2022-05-18', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'No Sustainability,Not inrerested in Telecalling,Checked for Bakend,Also not comfortable in TxxampC,If she come back lets try', '1', '1', '0', '1', '1', '0', '2', '2022-05-20', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-18 11:33:51', 1, '2022-05-18 11:49:55', 0, NULL, 1),
(8778, 'Ajisri.S', '23', '8925652820', '', 'ajishreesridharan28@gmail.com', '1995-09-28', 26, '2', '2', 'Sridharan', 'Graphic designer', 50000.00, 1, 25000.00, 30000.00, '3/2 saiva muthiah street, Royapet, Chennai - 86', '3/2 Saiva Muthiah Street, Royapet, Chennai - 86', '2205180004', '1', '2', 'upload_files/candidate_tracker/52557077173_Ajisri.pdf', NULL, '1', '2022-05-18', 7, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'need to learn lot about this process', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-18 11:38:53', 85, '2022-05-18 05:09:23', 0, NULL, 1),
(8779, 'Prasanna', '5', '9791310528', '', 'prasanna761@gmail.com', '1992-11-07', 29, '2', '2', 'Venkateswara', 'archagar', 40000.00, 1, 20000.00, 250000.00, 'puthukottai', 'Puthukottai', '2205180005', '1', '2', '0', NULL, '3', '2022-05-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communcition,not interested in Sales profile,also looking for admin roles only,Checked for our backend positions too,but not suitable and not interested towards the profile will not sustain', '5', '1', '', '', '', '', '2', '1970-01-01', '3', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-05-18 12:38:07', 60, '2022-05-19 06:40:49', 0, NULL, 1),
(8780, 'Thatchayani', '25', '9025518309', '9150337178', 'thatchayanis032103@gmail.com', '1998-05-23', 23, '1', '2', 'Sivakumar', '-', 20000.00, 1, 0.00, 12000.00, 'Krishnagiri', 'Bangolore Madiwala', '2205180006', '', '1', 'upload_files/candidate_tracker/19264148113_Pooja resume.pdf', NULL, '1', '2022-05-18', 0, 'P1210', '3', '59', '2022-05-20', 168000.00, '', NULL, '2023-08-05', '2', 'Selected for ESales Bangalore - Consultant  - 5050Profile sounds low lets see', '8', '1', '', '2', '2', '', '2', '1970-01-01', '1', '6', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-18 01:00:30', 60, '2022-05-19 06:47:30', 0, NULL, 1),
(8781, 'Thatchayani', '4', '9025518409', '9150337178', 'thatchayanis0321@gmail.com', '1998-05-23', 23, '2', '2', 'Sivakumar', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Krishnagiri', 'Bangolore Madiwala', '2205180007', '1', '1', 'upload_files/candidate_tracker/83556773416_Pooja resume.pdf', NULL, '1', '2022-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-18 01:10:45', 1, '2022-05-18 01:15:43', 0, NULL, 1),
(8782, 'joel subin', '11', '8072169435', '', 'joelsubin61@gmail.com', '1996-01-01', 26, '2', '2', 's', 'officer', 100000.00, 0, 12000.00, 15000.00, 'chennai', 'chennai', '2205180008', '1', '2', 'upload_files/candidate_tracker/84124229444_JOEL SUBIN Updated resume 2022 (2)-1 (1).pdf', NULL, '1', '2022-05-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-18 03:01:12', 85, '2022-05-18 03:19:32', 0, NULL, 1),
(8783, '', '0', '9999999999', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205180009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-18 03:45:59', 0, NULL, 0, NULL, 1),
(8784, '', '0', '9700000000', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205180010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-18 03:49:30', 0, NULL, 0, NULL, 1),
(8785, 'wilson abraham n', '4', '9566141261', '', 'nabraham116@gmail.com', '1991-06-11', 30, '2', '1', 'angel', 'not working', 13000.00, 0, 0.00, 14000.00, 'chennai', 'chennai', '2205180011', '2', '1', 'upload_files/candidate_tracker/55728173128_CV_202204301508472.pdf', NULL, '1', '2022-05-19', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', '5050 Profile,fresher for our domain,need to come for final round,can be trained ', '1', '2', '0', '1', '1', '0', '2', '2022-05-20', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-18 10:57:53', 1, '2022-05-18 11:01:44', 0, NULL, 1),
(8786, '', '0', '9047613720', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205190001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-19 09:56:11', 0, NULL, 0, NULL, 1),
(8787, 'james davison', '4', '6374109261', '', 'jamesdavison506@gmail.com', '2002-04-17', 20, '2', '2', 'sekran', 'srly', 15000.00, 1, 0.00, 12000.00, 'rameshwaram', 'rameshwaram', '2205190002', '2', '1', 'upload_files/candidate_tracker/94413836576_Davi Resume.pdf', NULL, '3', '2022-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-19 11:42:51', 1, '2022-05-19 11:45:41', 0, NULL, 1),
(8788, 'Syed Nadeem Pasha', '25', '9141518750', '9740981044', 'Syednadeem63134@gmail.com', '2004-04-02', 18, '2', '2', 'Salman', 'Automobiles', 20000.00, 2, 15500.00, 17000.00, 'Electronic City phase 1 wipro Gate', 'Electronic City phase 1 wipro Gate', '2205190003', '24', '2', 'upload_files/candidate_tracker/69690148599_CURRICULUM VITAE.docx', NULL, '1', '2022-05-19', 0, '', '3', '59', '2022-05-26', 252000.00, '', '3', '2022-06-08', '2', 'Selected for ESales RM with PF/ESI/PT Deductions', '8', '2', '1', '2', '2', '1', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-19 11:47:32', 60, '2022-06-08 05:04:11', 0, NULL, 1),
(8789, 'Aaron Kevin Paul. J', '4', '7449089181', '9514820405', 'aaronpaul376@gmail.com', '2000-04-16', 22, '2', '2', 'G. John Paulraj', 'Accountant', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2205190004', '1', '1', 'upload_files/candidate_tracker/38594981985_My CV.pdf', NULL, '1', '2022-05-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested in telesales and not comforts with the TxxampC for Backend and no basic skills in the operations.Will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-19 11:52:22', 85, '2022-05-19 01:06:02', 0, NULL, 1),
(8790, 'Janifer R', '6', '6374833965', '8220911306', 'jeniferrajujeniferraju785@gmail.com', '2001-05-12', 21, '1', '2', 'Raja S', 'Mechanic', 10000.00, 1, 0.00, 13000.00, '210/1 VSH BHAVAN 46 L PUDOR POST NOCHINAGAR ERODE', '210/1 VSH BHAVAN 46 L PUDOR POST NOCHINAGAR ERODE', '2205190005', '', '1', 'upload_files/candidate_tracker/50126431308_3a7443e5-4ae3-4846-9459-60a908b37f7a.docx', NULL, '1', '2022-05-19', 0, 'P1303', '3', '59', '2022-05-23', 156000.00, '', '6', '2023-02-08', '1', 'Selected for  RE Profile - Suthagar - Consultant Role', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', 'Offer Mail has been shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-19 11:54:26', 60, '2022-05-21 01:09:06', 0, NULL, 1),
(8791, 'Rajkumar. L', '11', '8608259987', '', 'Rajkumarsha.sha@gmail.com', '1996-08-19', 25, '1', '2', 'V. Lakshmansha', 'Coolie', 50000.00, 1, 0.00, 20000.00, 'No:22 Sakthi Nagar Mangadu Chennai-122', 'No:22 Sakthi Nagar Mangadu Chennai-122', '2205190006', '', '1', 'upload_files/candidate_tracker/96566449685_Raj Resume.pdf', NULL, '1', '2022-05-19', 0, 'P1146', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Internal Team Reference for operations,no communicaiton,no basic skills in Excel will not handle  our pressure', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-19 12:04:18', 1, '2022-05-19 12:11:06', 0, NULL, 1),
(8792, 'Rajeshwari', '6', '9786835357', '', 'Rajeshwari29031997@gmail.com', '1997-03-29', 25, '2', '1', 'Sivanasan', 'Porthey\'s Incharge', 20000.00, 2, 11000.00, 15000.00, 'Trichy', 'T nagar chennai', '2205190007', '1', '2', 'upload_files/candidate_tracker/73052516616_Document.docx', NULL, '1', '2022-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,no convincing,handling pressure doubts,will not sustain', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-19 12:05:53', 1, '2022-05-19 10:33:13', 0, NULL, 1),
(8793, 'n.rajaviknesh', '4', '9360843069', '', 'rajaviknesh08@gmail.com', '1999-06-11', 22, '2', '2', 'selvarani', 'nil', 15000.00, 0, 15000.00, 15000.00, 'THIRUVARUR', 'THIRUVARUR', '2205190008', '1', '2', 'upload_files/candidate_tracker/2878712525_raja resume.pdf', NULL, '1', '2022-05-19', 0, '', '3', '59', '2022-05-23', 138948.00, '', '4', '2022-06-17', '1', 'Selected for Thanjavur Elite - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', 'Offer Mail yet to share', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-19 12:35:15', 60, '2022-05-19 07:38:02', 0, NULL, 1),
(8794, '', '0', '6360133953', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205190009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-19 01:47:01', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8795, 'Rajesh', '6', '9566142049', '9080906089', 'Rajesh4728@gmail.com', '1997-07-04', 24, '2', '2', 'Kumar', 'Farmer', 15000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2205190010', '1', '1', 'upload_files/candidate_tracker/9918544121_Rajesh.Resume.pdf', NULL, '1', '2022-05-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,No Sales Exp he is into collections only,not suits for our sales process', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-19 02:55:18', 85, '2022-05-19 03:26:12', 0, NULL, 1),
(8796, 'MAHALAKSH R', '6', '7502136031', '8778723482', 'mahabbarangu@gmail.com', '1996-01-12', 26, '1', '2', 'Vijayalakshmi R', 'House wife', 20000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2205190011', '', '1', 'upload_files/candidate_tracker/84433263215_MAHA CV.pdf', NULL, '1', '2022-05-20', 0, 'P1310', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped not interested in Sales Target will not join\n', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-19 03:59:39', 60, '2022-05-20 03:14:38', 0, NULL, 1),
(8797, '', '0', '8526197432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205190012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-19 04:18:28', 0, NULL, 0, NULL, 1),
(8798, 'eshwari', '11', '7395984702', '', 'eshwarikalaimani1997@gmail.com', '1997-08-14', 24, '2', '2', 'kalaimani', 'officer', 100000.00, 2, 0.00, 16000.00, 'chennai', 'chennai', '2205190013', '1', '1', 'upload_files/candidate_tracker/67264444480_B.Eswari CV (1).pdf', NULL, '1', '2022-05-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,not comfort in TxxampC,Will not handle our Pressure\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-19 06:20:41', 87, '2022-05-19 06:27:20', 0, NULL, 1),
(8799, 'Uthiravelu', '25', '6369196831', '7550022274', 'Www.velu321@gmail.com', '2001-05-04', 21, '2', '2', 'Iyyanar', 'Farmer', 36000.00, 1, 0.00, 16000.00, 'No. 45,jaisakthinagar, Krishnapuram , villupuram', 'Saidapet (chinnamalai)', '2205200001', '1', '1', 'upload_files/candidate_tracker/35469579426_UthiraVelu.docx', NULL, '1', '2022-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication no,not comfortable in taking calls and field,not suits for the backend positions too,not suitable', '8', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-20 09:44:24', 1, '2022-05-20 09:51:04', 0, NULL, 1),
(8800, 'Abarna', '4', '8072346284', '', 'abarna300620@gmail.com', '2007-05-20', 0, '2', '1', 'Balaji', 'iT admin', 125000.00, 1, 17000.00, 25000.00, 'Chennai', 'Chennai', '2205200002', '1', '2', 'upload_files/candidate_tracker/14878822159_Updated resume Abarna.docx', NULL, '2', '2022-05-20', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Is Good, She Has Exp In The Backend, But Not Much In Excel Works Needs To Train A Lot. She Is Currently In Hexaware And Looking For Opportunities Only For The 2 Days Of Weekend Leaves Required. Need To Serve 30 Days Of Notice. She Will Not Handle Our Pressure And Sustain With Us. Every Year She Jumps To A Different Company Stating Health Conditions. She Needs To Travel From Tambaram.', '1', '2', '0', '1', '1', '0', '2', '2022-05-23', '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-20 10:56:38', 1, '2022-05-20 11:00:50', 0, NULL, 1),
(8801, 'Ramya R', '6', '6381399161', '', 'ramyar1804@gmail.com', '2000-04-18', 22, '2', '2', 'Raja A', 'Cooli', 15000.00, 0, 0.00, 12000.00, 'Erode', 'Erode', '2205200003', '1', '1', 'upload_files/candidate_tracker/49242095017_resume.Ramya.docx', NULL, '1', '2022-05-20', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-20 11:13:32', 60, '2022-05-20 03:10:48', 0, NULL, 1),
(8802, 'Vijayalakshmi', '6', '9025985823', '', 'vijimavijima68@gmail.com', '2000-01-03', 22, '2', '2', 'Chinnusamy', 'Cooli', 20000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2205200004', '1', '1', 'upload_files/candidate_tracker/96240422588_VIJAYALAKSHMI C.docx', NULL, '1', '2022-05-20', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-20 11:16:31', 60, '2022-05-20 03:10:08', 0, NULL, 1),
(8803, 'Kamali. B', '4', '7339273833', '9600851289', 'kamaligeetha1998@gmail.com', '1998-11-26', 23, '2', '2', 'Babu', 'Post Master', 15000.00, 0, 10000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2205200005', '1', '2', 'upload_files/candidate_tracker/48533878569_Resume5.pdf', NULL, '1', '2022-05-20', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate not interested to join\n', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-20 11:17:40', 85, '2022-05-20 12:39:59', 0, NULL, 1),
(8804, 'Aishwariya', '4', '6374039908', '', 'Worldskyintha@gamil.com', '1998-11-30', 23, '1', '1', 'Seenu', '30000', 12000.00, 1, 12000.00, 13000.00, 'Adayar', 'Chennai', '2205200006', '', '2', 'upload_files/candidate_tracker/30120853024_CV_202201272101067.pdf', NULL, '1', '2022-05-20', 0, 'Jobs', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Fresher for our sales,Internal team reference, need to train a lot, kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-20 12:35:40', 1, '2022-05-20 12:49:05', 0, NULL, 1),
(8805, 'Chinnadurai r', '5', '8939375721', '', 'rcdhurai2@gmail.com', '1998-07-06', 23, '2', '2', 'Sulochana', 'House wife', 15000.00, 3, 18000.00, 20000.00, 'Cuddalore', 'Koyambedu', '2205200007', '1', '2', 'upload_files/candidate_tracker/16102039177_chinnadurai123.pdf', NULL, '1', '2022-05-20', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, need to open a lot, not much comfort in Field Sales, not suits for CRM too, will not handle the pressure', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-20 02:20:13', 1, '2022-05-20 02:58:36', 0, NULL, 1),
(8806, 'Subashree G', '25', '9940186586', '', 'subashree0103@gmail.com', '1990-03-10', 32, '2', '1', 'S.naresh', 'Lab technician', 40000.00, 1, 25000.00, 25000.00, 'Chennai', 'Chennai', '2205200008', '1', '2', 'upload_files/candidate_tracker/53845300335_Suba resume new (1) (1).docx', NULL, '1', '2022-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok,Age Around 32 Yrs,Need To Train A Lot In Our Roles,9yrs In Backend But Not In Excel Works,Thinking A Lot On The Service Agreements,If She Comes Back Lets Try', '8', '2', '0', '1', '1', '0', '2', '2022-05-21', '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-20 02:38:35', 1, '2022-05-20 02:46:45', 0, NULL, 1),
(8807, 'Arvinth sharma', '4', '9790506006', '9363391006', 'arvinthrajmanogar@gmail.com', '1994-06-07', 27, '3', '2', 'Raj manogar', 'Building contractor', 15000.00, 1, 15000.00, 15000.00, 'Erode', 'Erode', '2205200009', '', '2', 'upload_files/candidate_tracker/73148381125_ARVINTH RESUME.docx', NULL, '1', '2022-05-20', 0, '', '3', '59', '2022-06-13', 156000.00, '', '3', '2022-07-13', '1', 'Selected for Muthu Team - Consultant Role', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-20 05:19:45', 60, '2022-06-10 06:13:46', 0, NULL, 1),
(8808, 'shabhana', '11', '6369358474', '', 'eshabbu448@gmail.com', '2001-04-12', 21, '2', '2', 'eliyas basha', 'gold smith', 20000.00, 2, 18000.00, 20000.00, 'chennai', 'chennai', '2205210001', '2', '2', 'upload_files/candidate_tracker/15434357974_Shabana Resume part 12.pdf', NULL, '1', '2022-05-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-21 09:26:02', 1, '2022-05-21 09:27:39', 0, NULL, 1),
(8809, 'Vetrikodi T', '6', '9791695276', '9840589331', 'merlin6643@gmail.com', '2000-03-04', 22, '1', '2', 'S Thirupoorkumaran', 'Care taker', 25000.00, 1, 10000.00, 15000.00, 'Chennai,chetput', 'Chetput', '2205210002', '', '2', 'upload_files/candidate_tracker/90379436228_Vetrikodi T Resume.pdf', NULL, '1', '2022-05-21', 30, 'Jobs', '3', '60', '2022-06-13', 156000.00, '', '4', '2022-12-01', '2', 'Communication is Good have exp in Telesales,Star Health - Can give a try for our roles,sounds good kindly check and let me know your inputs', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', 'Selected for Kannan Team with PF/ESI/PT deductions.2nd round interviewed by Ramesh Prasanna and selected for Ravi team, later the candidate has been moved to  Kannan Team', '', '', '', NULL, NULL, NULL, 1, '2022-05-21 09:45:09', 60, '2022-06-13 10:37:32', 0, NULL, 1),
(8810, 'gunasekar', '16', '7397398921', '8148868188', 'gunasekar009988@gmail.com', '1999-10-19', 22, '2', '2', 'sundar', 'driver', 30000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2205210003', '1', '2', 'upload_files/candidate_tracker/62674769048_1603881589329Resume_Gunasekar-converted.pdf', NULL, '1', '2022-05-21', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, no basic skills in Excel, Frequent Job changes, Distance to long,have worked in same domain but not interested,Not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-21 11:07:36', 85, '2022-05-21 11:28:01', 0, NULL, 1),
(8811, 'Vasanthakrishnan m', '16', '9791097820', '9694895876', 'vasanthvibes@gmail.com', '1998-09-12', 23, '2', '2', 'N. Manivel', 'Tailor', 30000.00, 1, 15000.00, 20000.00, 'Vandalur', 'Vandalur', '2205210004', '1', '2', 'upload_files/candidate_tracker/64052634908_Vasanthakrishnan resume.pdf', NULL, '1', '2022-05-21', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in other domain,fresher for MIS,only basic in Excel Need to trian a lot,Too long distance,not comfort in SA,Will not sustain', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-21 11:08:10', 85, '2022-05-21 11:27:39', 0, NULL, 1),
(8812, 'S.kokila', '16', '7358263780', '', 'Nijanijanthan31@gmail.com', '2001-01-31', 21, '2', '2', 'S . Gomathi', 'House wife', 20000.00, 1, 17000.00, 20000.00, 'Chetpet', 'Chetpet', '2205210005', '1', '2', 'upload_files/candidate_tracker/97198469147_Resume_2022-05-21-112602.pdf', NULL, '1', '2022-05-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'For MIS No communication and no basic knowledge in the Excel, also not interested in Sales Telecaling ,not suitable ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-21 01:28:14', 85, '2022-05-21 02:27:46', 0, NULL, 1),
(8813, 'K.Shalini', '4', '9344484709', '6382898104', 'sekarrakesh007kd@gmail.com', '1998-02-07', 24, '2', '1', 'Rakesh', 'Medical Representative', 15000.00, 1, 10.00, 12000.00, 'Pillayarpatti Vallam', 'Pillayarpatti vallam', '2205230001', '1', '2', 'upload_files/candidate_tracker/50908916914_IMG_20220522_214012.pdf', NULL, '1', '2022-05-23', 0, '', '3', '59', '2022-05-23', 138948.00, '', '3', '2022-06-09', '2', 'Selected for Elite Thanjavur Location - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-23 09:31:53', 60, '2022-05-23 01:30:00', 0, NULL, 1),
(8814, 'Lakshmipathi', '4', '9150264235', '', 'Mlakshmipathiganasan@gmail.com', '1997-09-19', 24, '2', '2', 'Manikkam', 'Late', 10000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2205230002', '2', '1', 'upload_files/candidate_tracker/41882531714_M. Lakshmipathi Resume.pdf', NULL, '1', '2022-05-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up not suitable for our roles', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-23 09:39:05', 1, '2022-05-23 09:42:22', 0, NULL, 1),
(8815, 'Ruban bose R', '11', '7871729846', '', 'ruban17062000@gmail.com', '2000-06-17', 21, '2', '2', 'Russel N', 'Appraiser', 10000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2205230003', '1', '1', 'upload_files/candidate_tracker/50383080243_Ruban MBA Resume-converted-2.pdf', NULL, '2', '2022-05-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable', '6', '1', '0', '1', '1', '0', '2', '2022-06-25', '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-23 10:06:27', 1, '2022-05-23 10:09:07', 0, NULL, 1),
(8816, '', '0', '9840619581', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205230004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-23 10:19:30', 0, NULL, 0, NULL, 1),
(8817, 'G.MOHANAPRIYA', '11', '7550206262', '', 'PRIYAGANESH2321@GMA', '1984-10-21', 37, '2', '1', 'Ganeshkumar', 'Office Administrator', 30000.00, 1, 20000.00, 25000.00, 'No.105p, Mullai Garden 2nd St, Manali', 'Chennao', '2205230005', '1', '2', 'upload_files/candidate_tracker/23246223068_priyaganesh resume. new.docx', NULL, '1', '2022-05-23', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Age around 38 yrs,Worked in Various Sectors,Foreign Return,Have Exp in HR but not strong in our recruitment areas,will not handle our pressuce, Will not sustain ', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-23 10:34:13', 87, '2022-05-23 11:51:02', 0, NULL, 1),
(8818, 'Bharathinelson', '4', '7639328056', '8608410655', 'Bharathiece397@gmail.com', '1997-05-16', 25, '1', '1', 'VIJAY KUMAR', 'Sales manager', 20.00, 3, 0.00, 16.00, 'Ariyalur', 'Thiruvanmyr', '2205230006', '', '2', 'upload_files/candidate_tracker/27726367252_resume_1653269663961.pdf', NULL, '1', '2022-05-23', 0, 'CA111', '3', '59', '2022-05-26', 176844.00, '', '6', '2022-09-12', '2', 'Selected for B2B - consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-23 10:50:31', 60, '2022-05-27 11:30:04', 0, NULL, 1),
(8819, 'R Vijay', '4', '9841324010', '', 'vijaysandy2809@gmail.com', '1998-11-09', 23, '1', '2', 'Parent', 'Father', 15000.00, 2, 13000.00, 15.00, 'Chennai', '61/29vm Street royapettha chennai-14', '2205230007', '', '2', 'upload_files/candidate_tracker/50324209320_Document 4.pdf', NULL, '1', '2022-05-23', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication,PRevious Exp seems to be false,sustainability doubts,will not handle our pressure Target', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-23 11:05:17', 1, '2022-05-23 11:32:31', 0, NULL, 1),
(8820, 'DHANUSHYA.d', '11', '8072746764', '8838826011', 'danushyadpv29@gmail.com', '2001-01-11', 21, '2', '2', 'Dharman.c', 'Business', 20000.00, 1, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2205230008', '1', '1', 'upload_files/candidate_tracker/69884022103_Dhan.pdf', NULL, '1', '2022-05-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Didnt Turn with her confirmation', '6', '1', '', '1', '1', '', '2', '2022-05-28', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-23 11:11:46', 60, '2022-05-23 11:58:32', 0, NULL, 1),
(8821, '', '0', '7200999093', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205230009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-23 11:13:36', 0, NULL, 0, NULL, 1),
(8822, 'ThenmozhiKannan', '2', '9791978898', '9443575536', 'thenmozhikannan1295@gmail.com', '1995-05-12', 27, '2', '2', 'Kannan', 'Farmar', 15000.00, 1, 27000.00, 30000.00, 'Salem', 'Marathahalli', '2205230010', '1', '2', 'upload_files/candidate_tracker/71836026050_Thenmozhi kanan 1295resum (1).docx', NULL, '1', '2022-05-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-23 11:21:00', 1, '2022-05-23 11:31:24', 0, NULL, 1),
(8823, '', '0', '7448847010', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205230011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-23 11:22:41', 0, NULL, 0, NULL, 1),
(8824, 'S.manonmani', '6', '6385689068', '', 'manonmani6130@gmail.com', '2000-05-12', 22, '1', '2', 'V.shanmuganathan', 'Farmer', 72000.00, 2, 0.00, 12000.00, 'M.kalathur', 'M.kalathur', '2205230012', '', '1', 'upload_files/candidate_tracker/40484500012_report_Aarthi.pdf', NULL, '1', '2022-05-23', 0, '2205230012', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-23 11:26:06', 60, '2022-05-23 02:47:21', 0, NULL, 1),
(8825, 'Madhubala.S', '4', '8610281724', '9600654544', 'madhubalasrinivasan7@gmail.com', '1993-05-28', 28, '2', '1', 'M.Rajasekar', 'Four wheeler Mechanic', 15000.00, 2, 0.00, 12000.00, 'Kandiyur', 'Thanjavur', '2205230013', '1', '1', 'upload_files/candidate_tracker/86919357835_Madhu resume.pdf', NULL, '1', '2022-05-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-23 11:44:49', 85, '2022-05-23 11:57:18', 0, NULL, 1),
(8826, 'Y.Kowsalya', '6', '9345828298', '', 'kowsalya6130@gmail.com', '2000-07-03', 21, '1', '1', 'K.Yuvaraj', 'Farmer', 72000.00, 2, 0.00, 12000.00, 'Vijayamangalam', 'Vijayamangalam', '2205230014', '', '1', 'upload_files/candidate_tracker/89056191661_Resume_Kowsi_Format1.pdf', NULL, '1', '2022-05-23', 0, 'P1303', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-23 11:55:39', 60, '2022-05-23 02:46:51', 0, NULL, 1),
(8827, 'M.mohana sundari', '11', '9087816736', '9025917247', 'mohanasundarimohana27@gmail.com', '1997-10-27', 24, '2', '2', 'Banumathi', 'Research Executive', 20000.00, 0, 0.00, 20000.00, 'Panapakkam', 'Panapakkam', '2205240001', '1', '1', 'upload_files/candidate_tracker/76709444857_Mohana Sundari.M.pdf', NULL, '2', '2022-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Is Good, Have Exp As A Research Executive In Native, Ready To Relocate And Can Give A Try For The MIS Role, Need Some Time To Confirm This Profile, Will Check Again For The Sustainability And Let You Know.Lets Hold This Profile', '6', '1', '0', '1', '3', '0', '2', '2022-05-30', '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-24 10:19:30', 1, '2022-05-24 10:23:45', 0, NULL, 1),
(8828, 'Naresh', '5', '9840566144', '9677285844', 'naresh.eee11@gmail.com', '1989-07-14', 32, '1', '2', 'Baskar', 'Worker', 80000.00, 0, 40000.00, 50000.00, 'Ennore', 'Chennai ennore', '2205240002', '', '2', 'upload_files/candidate_tracker/5464374023_NKR NEW.docx', NULL, '1', '2022-05-24', 0, '5585', '3', '59', '1970-01-01', 500000.00, '', '8', '1970-01-01', '1', 'Selected for GK Sir Team PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '1,3,4,6', NULL, NULL, NULL, 1, '2022-05-24 11:42:30', 60, '2022-05-26 12:18:34', 0, NULL, 1),
(8829, 'Aravind narayanan', '4', '8056049590', '9444079558', 'aravind992008@gmail.com', '1995-05-19', 27, '3', '2', 'Sundararajan', 'Income tax', 120000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2205240003', '', '1', 'upload_files/candidate_tracker/28006669718_scan410 (1).pdf', NULL, '1', '2022-10-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-24 11:42:55', 1, '2022-10-13 03:02:36', 0, NULL, 1),
(8830, 'S. Ayyammal', '4', '9884577463', '', 'Aymasudip2885@gmail.com', '1998-01-12', 24, '2', '1', 'Selvam', 'Teacher', 45000.00, 1, 0.00, 20000.00, 'Madurai', 'Chennai', '2205240004', '1', '1', 'upload_files/candidate_tracker/87411947871_DocScanner May 18, 2022 06-52.pdf', NULL, '3', '2022-05-24', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is not available,should give a call tomorrow\n', '1', '1', '0', '1', '1', '0', '2', '2022-05-25', '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-24 12:01:41', 1, '2022-05-24 12:11:07', 0, NULL, 1),
(8831, 'Edwin Rajkumar J', '6', '9360387948', '', 'edwined1211@gmail.com', '1997-11-12', 24, '2', '1', 'Sheeba D', 'Studying', 25000.00, 0, 15000.00, 20000.00, 'Erode', 'Erode', '2205240005', '1', '2', 'upload_files/candidate_tracker/24403832765_edwin RESUME.pdf', NULL, '1', '2022-05-24', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected.. he is not interested..', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-24 12:02:55', 60, '2022-05-24 12:48:38', 0, NULL, 1),
(8832, 'Nivas Raj M', '6', '8344748941', '', 'Nivasrajbvn@gmail.com', '1995-06-10', 26, '2', '2', 'Manikam P', 'Ex- Police man', 12000.00, 1, 0.00, 18000.00, 'Erode', 'Erode', '2205240006', '1', '1', 'upload_files/candidate_tracker/35840103141_RESUME FINAL 2021.docx', NULL, '1', '2022-05-24', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Voice not bold and also very low.. not confident', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-24 12:03:33', 60, '2022-05-24 12:49:18', 0, NULL, 1),
(8833, 'Anantharaj', '6', '9597701467', '7871974912', 'happykingttk@gmail.com', '2001-03-15', 21, '2', '2', 'Sivanantham', 'Farmer', 45000.00, 1, 0.00, 12000.00, 'Vedaranyam', 'Vedaranyam', '2205240007', '1', '1', 'upload_files/candidate_tracker/36228864563_Anantharaj_RESUME.pdf', NULL, '2', '2022-05-25', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No skill', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-24 12:23:50', 60, '2022-05-25 04:52:53', 0, NULL, 1),
(8834, 'Kishore', '1', '7871419103', '7358282858', 'Mr.kishore0215@gmail.com', '2000-07-02', 21, '2', '2', 'Pushpa.G', 'House Holder', 12000.00, 0, 0.00, 17000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2205240008', '1', '1', 'upload_files/candidate_tracker/17272833079_Kishore (sales Resume).pdf', NULL, '1', '2022-05-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,not yet completed his graduation,Exams are there,Not much comfort in field sales,Need to change his dressings ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-05-24 12:39:14', 85, '2022-05-24 12:46:03', 0, NULL, 1),
(8835, 'Dinesh Kumar', '6', '8754135563', '', 'dINESHKUMAR970412@GMail.com', '1997-04-12', 25, '2', '2', 'Kalimuthu', 'eB line', 170000.00, 1, 0.00, 13000.00, 'tirupur', 'tirupur', '2205240009', '1', '1', 'upload_files/candidate_tracker/34110193796_NaukriDhineshKumar0y0m.pdf', NULL, '3', '2022-05-24', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candiate ok pls confirm joining date and salary ', '5', '1', '', '', '', '', '2', '2022-05-25', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-24 01:07:28', 60, '2022-05-24 07:02:32', 88, '2022-09-13 05:50:48', 0),
(8836, 'Mohammed shoiab', '5', '7337668694', '9035014360', 'shoiabsrk1234@gmail.com', '1996-06-23', 25, '3', '1', 'Mohammed ghani', 'Rice merchant', 30000.00, 2, 22500.00, 27000.00, 'Mysore', 'Thanisandra', '2205240010', '', '2', 'upload_files/candidate_tracker/67903834127_Resume srk.docx', NULL, '1', '2022-05-24', 0, '', '3', '59', '1970-01-01', 330000.00, '', '8', '1970-01-01', '1', 'Selected for Muppudathy team with PF/PT', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '2,5,6', NULL, NULL, NULL, 1, '2022-05-24 03:15:45', 60, '2022-05-27 04:48:54', 0, NULL, 1),
(8837, 'Manikandan', '6', '9444046482', '', 'mk410556@gmail.com', '1996-12-01', 25, '2', '2', 'Vaithiyanathan', 'Priest in temple', 40000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2205240011', '1', '2', 'upload_files/candidate_tracker/30959940810_Resume(Jun 9, 2018 74628 PM)-converted 1.docx', NULL, '1', '2022-05-26', 0, '', '4', '82', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,have exp in sales but not a relevant one,can give a try check and let me know\n', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-24 03:34:40', 60, '2022-05-26 06:37:22', 0, NULL, 1),
(8838, 'giyasuddin', '5', '6361755061', '', 'giyas7242@gmail.com', '1998-03-30', 24, '2', '2', 'abduljalil', 'twelve pass', 22000.00, 0, 0.00, 22000.00, 'dakishnpadmabilnorthtripura', 'kormangalamadiwalachekpost', '2205250001', '24', '1', 'upload_files/candidate_tracker/83031841139_3681dc1c2b8049b386e91442b1c72912.pdf', NULL, '1', '2022-05-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-25 10:27:43', 1, '2022-05-25 10:56:45', 0, NULL, 1),
(8839, 'Anupriya', '6', '9384183834', '6369043948', 'Anu265771@gmail.com', '1999-11-18', 22, '2', '2', 'Velmurugan', 'Driver', 15000.00, 2, 0.00, 20000.00, 'No4/978.2 maravar street, kumbakonam. 612702', '4th street, sriram Nagar, tharamani,chennai.', '2205250002', '1', '2', 'upload_files/candidate_tracker/52791085412_Adobe Scan 24 Jun 2022 (1).pdf', NULL, '1', '2022-07-04', 0, '', '3', '59', '2022-07-11', 192000.00, '', '3', '2023-06-17', '1', 'Selected for Syed Team - Consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-25 12:05:39', 60, '2022-07-09 10:21:49', 0, NULL, 1),
(8840, 'Venkatpathi', '5', '9886221544', '', 'venkatpathilvb988@gmail.com', '1999-07-09', 22, '4', '2', 'Narayanappa', 'Farming', 15000.00, 1, 0.00, 20000.00, 'Basavanapura village Anekal thaluk', 'Basavanapura village Anekal thaluk', '2205250003', '', '1', 'upload_files/candidate_tracker/42356532065_RESUME ven.docx', NULL, '2', '2022-05-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-25 12:18:25', 1, '2022-05-25 12:33:23', 0, NULL, 1),
(8841, 'm divya bharathi', '11', '9344308357', '', 'divyamurugesan.rpt@gmail.com', '2000-06-14', 21, '2', '2', 'c murugesan', 'working', 30000.00, 0, 0.00, 30000.00, 'RANIPET', 'RANIPET', '2205250004', '1', '1', 'upload_files/candidate_tracker/89345149123_DIVYA BHARATHI RESUME.pdf', NULL, '1', '2022-05-28', 0, '', '3', '59', '2022-06-01', 146052.00, '', '0', NULL, '1', 'Selected for REcrutier Intern cum employment', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-25 06:56:26', 1, '2022-05-27 10:30:24', 0, NULL, 1),
(8842, 'NARAYANAGURU', '6', '8838912653', '', 'gnguru71@gmail.com', '2001-08-24', 20, '2', '2', 'Gopal', 'Hotel', 20000.00, 1, 0.00, 15000.00, 'Kalugumalai', 'Kalugumalai', '2205260001', '1', '1', 'upload_files/candidate_tracker/22902022313_resume (5)-converted', NULL, '1', '2022-05-26', 0, '', '3', '59', '2022-05-30', 185000.00, '', NULL, '2023-08-02', '2', 'Selected for Babu Team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-26 10:50:14', 60, '2022-05-28 05:52:21', 0, NULL, 1),
(8843, '', '0', '7010769536', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205260002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-26 01:40:47', 0, NULL, 0, NULL, 1),
(8844, 'Naveenkumar', '6', '8248918662', '', 'Kumarnaveen22581@gmail.com', '1994-12-02', 27, '2', '2', 'Ravikumar', 'Painter', 20000.00, 0, 0.00, 12000.00, 'Choolaimedu', 'Choolaimedu', '2205260003', '1', '1', 'upload_files/candidate_tracker/56755583942_NAVEEN1.pdf', NULL, '1', '2022-05-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for Sales,backend exp but not in Excel works,no basic ideas too,will not handle the pressure and not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-26 02:54:32', 85, '2022-05-26 06:45:13', 0, NULL, 1),
(8845, 'bharanidharan', '21', '9941105454', '', 'baranis5454@gmail.com', '1989-08-14', 32, '2', '1', 'selvam', 'clerk', 15000.00, 1, 18000.00, 20000.00, 'chennai', 'chennai', '2205260004', '2', '2', 'upload_files/candidate_tracker/26340537591_BARANI UPDATE.docx', NULL, '1', '2022-05-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for System Admin and high Exp, no positions in system admin', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-26 10:42:46', 1, '2022-05-26 10:45:34', 0, NULL, 1),
(8846, 'parthiban b', '21', '6379200724', '', 'dhanveerkarnaa786@gmail.com', '1992-04-29', 30, '2', '1', 'baskar', 'sales man', 20000.00, 2, 18000.00, 20000.00, 'chennai', 'chennai', '2205260005', '2', '2', 'upload_files/candidate_tracker/82404738048_CamScanner 05-13-2022 15.56.06.pdf', NULL, '1', '2022-05-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-26 10:50:36', 1, '2022-05-26 10:53:23', 0, NULL, 1),
(8847, 'siraj judheen s', '4', '8838444636', '', 'sira993@gmail.com', '1996-03-20', 26, '2', '2', 'sheik', 'printing', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2205260006', '2', '1', 'upload_files/candidate_tracker/27363056376_CV - SIRA.docx', NULL, '1', '2022-05-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not interested in telesales will not sustain\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-26 10:57:17', 1, '2022-05-26 10:59:51', 0, NULL, 1),
(8848, 'K. Sireesha', '5', '8179999118', '9538493718', 'kusupatisiri2802@gmail.com', '2000-02-28', 22, '2', '2', 'K. Soma sekhar reddy', 'Farmer', 30000.00, 0, 0.00, 18000.00, 'Alampur', 'Kudlu gate', '2205270001', '24', '1', 'upload_files/candidate_tracker/55288978751_K. SIREESHA.pdf', NULL, '1', '2022-05-27', 0, '', '3', '59', '2022-05-30', 174000.00, '', '4', '2022-08-30', '2', 'Selected for ESales RM in the consultant Role', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '6', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-05-27 10:17:46', 60, '2022-05-30 01:22:00', 0, NULL, 1),
(8849, 'Sivasakthi. G', '16', '9363048457', '7305703145', 'Lavanyagopinath@gmail.com', '1992-09-15', 29, '2', '1', 'Gopinath', 'Late', 20000.00, 2, 20000.00, 20000.00, 'Chennai', 'Chennai', '2205270002', '1', '2', 'upload_files/candidate_tracker/89009435623_Sivasakthi_Resume.pdf', NULL, '1', '2022-05-28', 0, '', '3', '59', '2022-05-30', 182496.00, '', '', '2022-06-06', '2', 'selected for Renewal with PT only', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-27 11:18:36', 85, '2022-05-28 10:55:51', 0, NULL, 1),
(8850, 'Harikrishnan', '23', '8428987948', '8939783796', 'harikulfi12@gmail.com', '1999-01-30', 23, '4', '2', 'Sridevi', 'Tailor', 1.50, 1, 18000.00, 20000.00, '1368,newkanniyamman nagar,morai,Avadi,chennai-62', '1368,newkanniyamman nagar,morai,avadi,chennai-62', '2205270003', '', '2', 'upload_files/candidate_tracker/8906194102_Resume f.pdf', NULL, '1', '2022-05-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-27 12:20:10', 1, '2022-05-27 12:25:22', 0, NULL, 1),
(8851, 'Shivanand shidhe', '5', '9380187186', '9663080803', 'vv2929714@gmail.com', '1998-09-01', 23, '1', '2', 'Baburao Shinde', 'Driver', 25000.00, 2, 20000.00, 22000.00, 'Sindabandagi tq.Humnabad Dt.Bidar Karnataka', 'Banglore', '2205270004', '', '2', 'upload_files/candidate_tracker/31953043402_Shivanand Shinde.docx', NULL, '1', '2022-05-27', 0, 'RMB93163', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-27 01:18:41', 60, '2022-05-27 04:40:12', 0, NULL, 1),
(8852, 'Sangeetha', '11', '7094066255', '', 'sangeethaorathur@gmail.com', '1994-05-05', 28, '2', '2', 'Sankar', 'Farmers', 35000.00, 2, 18000.00, 25000.00, 'Trichy', 'Kodambakkam', '2205270005', '1', '2', 'upload_files/candidate_tracker/50409644536_Resume (1).docx', NULL, '1', '2022-05-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not suitable for our other roles too', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-27 02:14:49', 87, '2022-05-27 06:48:25', 0, NULL, 1),
(8853, 'Karthika.c', '11', '6382188334', '', 'Karthikachandran58@gmqil.com', '1999-12-13', 22, '2', '2', 'Chandiran', 'Buss driver', 30000.00, 0, 18000.00, 18000.00, 'Chennai', 'New washerman pet', '2205270006', '1', '2', 'upload_files/candidate_tracker/35118148724_KARTHIKA CHANDRAN RESUME.docx', NULL, '1', '2022-05-27', 0, '', '3', '59', '2022-06-05', 150000.00, '', '', '1970-01-01', '2', 'Selected for Recruiter with 12.5K,after 5 months can be  increased if her performance  is good', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-27 02:51:24', 85, '2022-05-27 03:08:11', 0, NULL, 1),
(8854, 'Monika. M', '16', '9042945170', '9940195004', 'muralitharanmonika@gmail.com', '2000-08-02', 21, '2', '2', 'E. Muralidharan', 'Retired', 35000.00, 1, 24000.00, 28000.00, 'Chennai', 'Chennai', '2205270007', '1', '2', 'upload_files/candidate_tracker/77253099280_Monika. M _ Resume.docx', NULL, '1', '2022-05-28', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High Exp on Salary,not comfort in TxxampC', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-27 03:38:45', 85, '2022-05-28 10:06:13', 0, NULL, 1),
(8855, 'Syed Ali fathima', '4', '7338967595', '', 'Fathiibu786@gmail.Com', '1999-02-09', 23, '2', '1', 'Shajahan', 'Customs', 30000.00, 1, 0.00, 18000.00, 'No.51,nainiappan street,mannady', 'No.51,Nainiappan Street,Mannady', '2205270008', '1', '1', 'upload_files/candidate_tracker/13834939376_Document (4).docx', NULL, '1', '2022-05-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-27 03:57:56', 1, '2022-05-27 04:19:04', 0, NULL, 1),
(8856, 'Sandhiya.G', '11', '7092587207', '7010655668', 'sandhiyag30@gmail.com', '1998-11-30', 23, '2', '2', 'Gunasekaran.L', 'Accountant', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2205270009', '1', '1', 'upload_files/candidate_tracker/36016808882_RESUME - SANDHIYA G.pdf', NULL, '1', '2022-05-28', 0, '', '3', '59', '2022-06-01', 146052.00, '', '0', NULL, '2', 'Selected for Recruiter Intern cum employee', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-27 09:57:38', 1, '2022-05-27 10:03:48', 0, NULL, 1),
(8857, '', '0', '9444646497', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-28 11:51:27', 0, NULL, 0, NULL, 1),
(8858, 'S.Ezhilarasi', '11', '9176131167', '8888888888', 'ezhil132k@gmail.com', '2000-11-13', 21, '2', '2', 'P.Seenivasan', 'Export', 30000.00, 1, 12.00, 16.00, 'Chennai', 'Chennai', '2205280002', '1', '2', 'upload_files/candidate_tracker/7403459883_Ezhilarasi 3.pdf', NULL, '1', '2022-05-30', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-28 11:54:11', 1, '2022-05-28 12:01:00', 0, NULL, 1),
(8859, 'Naveen kumar', '11', '9865711188', '7904125139', 'naveenk6776@gmail.com', '1997-01-17', 25, '2', '2', 'Ravi', 'Driver', 15000.00, 0, 0.00, 15000.00, 'Tiruppur', 'Tiruppur', '2205280003', '1', '1', 'upload_files/candidate_tracker/91293871363_CV_2022051615403896.pdf', NULL, '3', '2022-05-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '3', '', '2', '1970-01-01', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-28 12:48:08', 85, '2022-05-28 01:21:42', 0, NULL, 1),
(8860, 'Samy Theophile Monica gracey', '4', '8807108953', '9894408419', 'maniyamonica96@gmail.com', '1993-05-19', 29, '2', '2', 'Rosy', 'Housewife', 45000.00, 2, 19000.00, 20.00, 'Pondicherry', 'Electronic city', '2205280004', '24', '2', 'upload_files/candidate_tracker/2216083043_monica edit resume.docx', NULL, '1', '2022-05-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-28 12:50:47', 1, '2022-05-28 01:03:27', 0, NULL, 1),
(8861, 'Hemamalini. S', '16', '9940673996', '9094120136', 'hemamalinilokesh29@gmail.com', '1993-04-29', 29, '2', '1', 'Logesh kumar', 'Marketing', 60000.00, 1, 15000.00, 20000.00, 'Thiruninravur', 'Thiruninravur', '2205280005', '1', '2', 'upload_files/candidate_tracker/14244535888_Hemamalini Resume (1).docx', NULL, '1', '2022-05-30', 0, '', '3', '59', '2022-06-02', 152496.00, '', '4', '2022-07-12', '1', 'Selected for  Operation team  with PT', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-28 05:13:06', 60, '2022-06-08 10:43:03', 0, NULL, 1),
(8862, 'tamil selvi', '11', '9710462590', '', 'tamilselvi@gmail.com', '1997-08-16', 24, '2', '2', 'e', 'officer', 100000.00, 0, 0.00, 16000.00, 'chennai', 'chennai', '2205280006', '1', '2', 'upload_files/candidate_tracker/63512064986_DIVYA RESUME 1.pdf', NULL, '1', '2022-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Communication ok,not comfort in Terms and conditions', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-28 05:35:27', 1, '2022-05-31 07:14:30', 0, NULL, 1),
(8863, 'Jagan M', '5', '9941332540', '9941936097', 'Jaganraja9941@gmail.com', '1992-06-12', 29, '1', '1', 'Durga Devi', 'Office', 26000.00, 1, 0.00, 29000.00, 'Chennai', 'Chennai', '2205280007', '', '1', 'upload_files/candidate_tracker/35666407211_jagan 22.pdf', NULL, '1', '2022-05-28', 0, 'Vinoth', '3', '59', '2022-06-01', 330000.00, '', '4', '2022-07-08', '1', 'Selected for gk sir team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-28 06:10:48', 60, '2022-05-31 09:12:11', 0, NULL, 1),
(8864, 'P.Gurugannesh', '11', '7094276826', '9865610625', 'guruselvam2422@gmail.com', '2000-08-15', 21, '2', '2', 'P.Thenmozhi', 'Working in private company', 14000.00, 1, 0.00, 16000.00, 'Acharapakkam', 'Tambaram', '2205280008', '1', '2', 'upload_files/candidate_tracker/13984782887_Gurugannesh Resume-2.docx', NULL, '1', '2022-05-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-28 07:17:55', 1, '2022-05-28 11:09:51', 0, NULL, 1),
(8865, 'M.Kaviya', '6', '7695816539', '9344530440', 'kaviyamj2001@gmail.com', '2001-10-08', 20, '2', '2', 'C.Malaisamy', 'Building masthery', 40000.00, 1, 0.00, 15000.00, 'Elumathur', 'Elumathur', '2205300001', '1', '1', 'upload_files/candidate_tracker/98737210237_kaviya.M RESUME.pdf', NULL, '1', '2022-05-30', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Distance and scared about sales', '5', '2', '', '4', '7', '', '2', '2022-07-20', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-30 10:19:55', 60, '2022-05-30 06:34:26', 0, NULL, 1),
(8866, 'A JAFAR', '21', '8939774088', '8608460082', 'jafarhussain1077@gmail.com', '1999-03-31', 23, '1', '1', 'M AKBAR BASHA', 'PAINTER', 20000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2205300002', '', '1', 'upload_files/candidate_tracker/1994636604_JAFAR_RESUME-NETWORKING.pdf', NULL, '1', '2022-05-30', 0, 'P1528', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for networking Profile only', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-30 10:38:35', 1, '2022-05-30 10:44:26', 0, NULL, 1),
(8867, 'sudharma', '4', '7299296927', '', 'sudharmakm1997@gmail.com', '1997-06-08', 24, '2', '2', 'muralidharan', 'business', 15000.00, 1, 0.00, 12000.00, 'chennai', 'mandaveli', '2205300003', '2', '1', 'upload_files/candidate_tracker/42064941426_Resume_Sudharma.docx', NULL, '1', '2022-05-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'comfort to work in nonvoice only ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-30 10:46:45', 1, '2022-05-30 10:52:13', 0, NULL, 1),
(8868, 'Babu', '5', '9972246581', '', 'Babubasavaraju662@gmail.com', '1999-06-21', 22, '2', '2', 'Basavaraja', 'Late', 60000.00, 0, 0.00, 19000.00, 'S/o basavaraja no krishnappa bangalure560045', 'No 16,k no 164/13/3 Chelekere Bangalore 560043', '2205300004', '24', '1', 'upload_files/candidate_tracker/79798782280_Babu Resume.pdf', NULL, '1', '2022-05-30', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate will give a call back', '5', '1', '0', '2', '2', '0', '2', '2022-05-31', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-30 11:38:53', 1, '2022-05-30 12:00:05', 0, NULL, 1),
(8869, 'Surya santhosh', '11', '9952074127', '', 'Surya.s9514@mail.com', '1997-08-24', 24, '2', '2', 'Santhoshkumar', 'Driver', 25000.00, 1, 17000.00, 17000.00, 'Vandalur', 'Vandalur', '2205300005', '1', '2', 'upload_files/candidate_tracker/4716999964_surya 2022(1).pdf', NULL, '1', '2022-06-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-30 01:29:29', 1, '2022-05-30 01:52:42', 0, NULL, 1),
(8870, 'Keerthana N', '11', '9791342598', '', 'keerthanaumarani@gmail.com', '1995-10-14', 26, '2', '1', 'S.k thiruselvan', 'Flexi operator', 15000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2205300006', '1', '1', 'upload_files/candidate_tracker/7237813228_keerthana resume 1.docx', NULL, '1', '2022-06-01', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication ok. Long distance  and have some health Issues', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-30 03:45:55', 85, '2022-06-01 05:45:03', 0, NULL, 1),
(8871, 'Harini', '25', '6382485765', '9840022429', 'poojahari2307@gmail.com', '1998-07-23', 23, '2', '2', 'E.Hari', 'TNEB', 35000.00, 1, 17500.00, 20000.00, 'Chennai', 'chennai', '2205300007', '1', '2', 'upload_files/candidate_tracker/80819380733_Harini', NULL, '1', '2022-05-31', 0, '', '3', '59', '2022-06-01', 216000.00, '', '6', '2022-07-22', '2', 'Selected for ESales - 2nd Round by Gajalakshmi,3rd round by GK Sir Selected  - Consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Mail Shared', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-30 05:54:25', 60, '2022-05-31 07:12:56', 0, NULL, 1),
(8872, 'Barath B K', '11', '9677250300', '9445379427', 'bkbneverfails@gmail.com', '2000-05-22', 22, '2', '1', 'Karthikeyan B', 'Office Assistant', 20000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2205300008', '1', '1', 'upload_files/candidate_tracker/33836473447_Barath B K CV.pdf', NULL, '1', '2022-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'didnt Turn back with her confirmation\n', '6', '1', '0', '1', '1', '0', '2', '2022-06-06', '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-30 07:34:25', 1, '2022-05-30 07:42:41', 0, NULL, 1),
(8873, '', '0', '9445379427', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205300009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-30 11:10:09', 0, NULL, 0, NULL, 1),
(8874, 'Sivasakhi', '5', '9789489382', '9361181757', 'Normansandy03@gmail.com', '1998-06-11', 23, '2', '2', 'Siva', 'Meson', 50000.00, 1, 17000.00, 20000.00, 'Manapakkam', 'Manapakkam', '2205310001', '1', '2', 'upload_files/candidate_tracker/89593545465_Sivasakthi', NULL, '1', '2022-05-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok not a relevant Exp ,salary Exp is high', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-31 10:02:16', 85, '2022-05-31 11:01:27', 0, NULL, 1),
(8875, 'Shahira banu', '4', '9025176795', '9994106717', 'Sahira3773@gmail.com', '2001-03-28', 21, '3', '2', 'R .Radhika', 'Coli', 15000.00, 1, 10000.00, 13000.00, 'Erode', 'Erode', '2205310002', '', '2', 'upload_files/candidate_tracker/59568676245_CV_2022053109111036.pdf', NULL, '1', '2022-05-31', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-31 10:12:48', 1, '2022-05-31 10:24:30', 0, NULL, 1),
(8876, 'jaya pradha', '4', '9025563656', '', 'jeyapradha07@gmail.com', '1995-12-13', 26, '2', '1', 'ramakrishnan', 'nil', 13000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2205310003', '2', '1', 'upload_files/candidate_tracker/359708799_RJ_Resume.doc', NULL, '1', '2022-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication not clear no pronunciation,will not handle our sales', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-31 10:35:21', 1, '2022-05-31 10:37:03', 0, NULL, 1),
(8877, 'ajith kumar', '4', '6379440752', '', 'ajithkumarKS815@gmail.com', '1996-01-05', 26, '2', '2', 'sundarajan', 'business', 10000.00, 2, 15000.00, 16000.00, 'chennai', 't nagar', '2205310004', '2', '2', 'upload_files/candidate_tracker/77594537725_AJITHKUMAR RESUME-convertedpdf.pdf', NULL, '1', '2022-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open a lot,much comfort in non voice process only', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-31 10:39:13', 1, '2022-05-31 10:42:53', 0, NULL, 1),
(8878, 'Pravin', '4', '9787586993', '6374566916', 'pravienvisage9@gmail.com', '2001-04-06', 21, '2', '2', 'Ramasamy.k', 'Two wheeler mechanic', 25000.00, 1, 0.00, 15000.00, 'Erode', 'Perundurai', '2205310005', '1', '1', 'upload_files/candidate_tracker/168693172_PRAVIN_RAMASAMY_Resume_20-03-2022-22-36-41.pdf', NULL, '1', '2022-05-31', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-31 10:44:04', 85, '2022-06-02 04:27:56', 0, NULL, 1),
(8879, 'Dharaneeshwaran.s', '4', '9944710727', '7448695727', 'rdharani3535@gmail.com', '2001-06-03', 20, '2', '2', 'Senthilkumar.c', 'Tailor', 25000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2205310006', '1', '1', 'upload_files/candidate_tracker/69536867094_DHARANI-.pdf', NULL, '1', '2022-05-31', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-31 10:44:17', 85, '2022-06-02 04:28:10', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8880, 'Sathish', '5', '9080047931', '9965490206', 'sathishg2122@gmail.com', '1985-07-21', 36, '1', '2', 'M.Gopal', 'Tamilnadu electric board', 20000.00, 3, 24000.00, 25000.00, 'Ramamurthy Nagar', 'Madiwal', '2205310007', '', '2', 'upload_files/candidate_tracker/87736609030_Non - voice (1).pdf', NULL, '1', '2022-05-31', 0, '55601', '3', '59', '2022-06-03', 333696.00, '', '4', '2023-02-09', '2', 'Selected for Manivel Team with PF/PT', '5', '2', '1', '2', '2', '1', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-31 11:04:11', 60, '2022-05-31 06:12:54', 0, NULL, 1),
(8881, 'Pooja v', '25', '9731589634', '8884887735', 'poojashashi0715@gmail.com', '2003-07-08', 18, '2', '2', 'Shashikala', 'House keeping cooking', 15.00, 1, 13.50, 18000.00, 'H251st Main, 1st Cross Murgeshpalya HAL Bangalore', 'H251st Main, 1st Cross Murgeshpalya HAL Bangalore', '2205310008', '24', '2', 'upload_files/candidate_tracker/21446440735_POOJIII.pdf', NULL, '1', '2022-05-31', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Is Good 1 yr exp too long distance Need Time To Give Confirmation', '8', '2', '', '2', '2', '', '2', '2022-06-06', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-31 11:06:24', 93, '2022-05-31 05:18:28', 0, NULL, 1),
(8882, 'Saranya R', '4', '9500671168', '9043343617', 'honeyharshithasaranya@gmail.com', '1991-06-15', 30, '1', '1', 'M.Rajeshkanna', 'Plumber and electrician', 100000.00, 1, 12000.00, 13000.00, '710,Ganga lane,Rajagobala Swamy street,Thanjavur-3', 'Vilar road, sanmuganadhan nagar , Thanjavur', '2205310009', '', '2', 'upload_files/candidate_tracker/52248485741_pdf_converter_202205244713.pdf', NULL, '1', '2022-05-31', 0, 'R55577', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped - We have  offered her 156000 but she didnt turn with her confirmation', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-31 11:54:58', 1, '2022-05-31 12:09:56', 0, NULL, 1),
(8883, 'Janani EA', '11', '6381090551', '6380593584', 'eajanani123@gmail.com', '1997-04-21', 25, '2', '1', 'Gowtham E', 'DHL - Processing', 20000.00, 1, 0.00, 20000.00, 'Pattalam', 'Perambur', '2205310010', '1', '1', 'upload_files/candidate_tracker/29486057329_jan resume 2.0.docx', NULL, '1', '2022-05-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain not suitable', '6', '1', '', '1', '1', '', '2', '2022-06-06', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-31 01:16:21', 60, '2022-05-31 02:34:33', 0, NULL, 1),
(8884, 'Pramod S', '5', '8722211227', '', 'pramod.hpt9@gmail.com', '1991-12-24', 30, '1', '1', 'Meghana', 'House wife', 21000.00, 0, 25000.00, 32000.00, 'Bommanhalli', 'Bommanhalli', '2205310011', '', '2', 'upload_files/candidate_tracker/74469610392_Pramod Resume (1).pdf', NULL, '3', '2022-05-31', 70, '55601', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-31 01:59:47', 1, '2022-05-31 02:03:41', 0, NULL, 1),
(8885, '', '0', '9150298892', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205310012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-31 02:44:58', 0, NULL, 0, NULL, 1),
(8886, 'Naresha R', '5', '8746012727', '9019979605', 'naresharpd@gmail.com', '1998-07-10', 23, '2', '2', 'Gangadhar', 'Engineering', 10.00, 1, 21.00, 21.00, 'Kolar', 'Bommanahallli', '2205310013', '1', '2', 'upload_files/candidate_tracker/9337814582_Resume_Naresha_Resume_for_NARESHA_R.pdf', NULL, '3', '2022-05-31', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-05-31 02:58:20', 1, '2022-05-31 03:05:15', 0, NULL, 1),
(8887, '', '0', '8073370056', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205310014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-31 03:11:52', 0, NULL, 0, NULL, 1),
(8888, 'Riya Francis', '11', '8056076109', '9941140862', 'riyafrancisn30@gmail.com', '1999-06-30', 22, '2', '2', 'Francis N.M', 'Sole trader proprietorship', 24000.00, 1, 198000.00, 280000.00, 'Kottivakkam', 'Kottivakkam', '2205310015', '1', '2', 'upload_files/candidate_tracker/11354219816_updated resume riya-converted.pdf', NULL, '1', '2022-06-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-31 03:48:54', 1, '2022-05-31 04:00:35', 0, NULL, 1),
(8889, 'Yuvarani s', '16', '7904357458', '7418336968', 'yuvarani.tech@gmail', '1990-08-29', 31, '2', '1', 'K singaravelu', 'Railway', 20000.00, 1, 15000.00, 18000.00, 'Arakkonam', 'Arakkonam', '2205310016', '1', '2', 'upload_files/candidate_tracker/85672127633_Yuvarani.pdf', NULL, '3', '2022-06-02', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '2', '', '1', '1', '', '1', '1970-01-01', '2', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-31 05:33:04', 87, '2022-06-02 01:31:54', 0, NULL, 1),
(8890, 'John Trevor', '11', '8754597708', '', 'johntrevor2595@gmail.com', '1995-12-25', 26, '2', '2', 'Parent', 'HR admin', 70000.00, 1, 25000.00, 28000.00, 'Chennai City South', 'Chennai City South', '2205310017', '1', '2', 'upload_files/candidate_tracker/97169229742_JOHN TREVOR (CV) (1).docx', NULL, '1', '2022-06-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '1', '3', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-31 07:18:43', 85, '2022-06-01 10:47:45', 0, NULL, 1),
(8891, '', '0', '7904634962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205310018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-31 07:33:23', 0, NULL, 0, NULL, 1),
(8892, 'Gowri', '11', '9514226131', '9962483465', 'gowri17sm@gmail', '2000-03-17', 22, '2', '2', 'A.Saravanan', 'Tennis marker', 20000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2206010001', '1', '1', 'upload_files/candidate_tracker/38574943582_GOWRI(RESUME).docx', NULL, '1', '2022-06-01', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication  average, pronunciation  is not clear.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-01 10:49:51', 85, '2022-06-01 11:34:06', 0, NULL, 1),
(8893, 'Melvin A', '4', '8870738314', '', 'melvinsharon96@gmail.com', '1996-02-05', 26, '4', '2', 'Amaladoss.S', 'Digital banking India', 15000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2206010002', '', '2', 'upload_files/candidate_tracker/12965209505_Melvin Resume -1.pdf', NULL, '1', '2022-06-01', 0, '', '3', '59', '2022-06-06', 156000.00, '', '4', '2022-09-14', '1', 'Selected for Thanjavur in Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-06-01 11:23:20', 60, '2022-06-26 10:36:48', 0, NULL, 1),
(8894, 'Ravikiran R', '5', '9632013611', '', 'rrkiran@outlook.com', '1993-06-29', 28, '1', '2', 'Raghupathi A', 'Business', 40000.00, 1, 23000.00, 30000.00, 'Bangalore', 'Bangalore', '2206010003', '', '2', 'upload_files/candidate_tracker/72518686331_RAVIKIRAN R.pdf', NULL, '1', '2022-06-01', 15, '55599', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-01 12:08:02', 1, '2022-06-01 12:10:56', 0, NULL, 1),
(8895, 'Kiran Kumar G', '5', '9731865716', '', 'kirank62041@gmail.com', '2000-07-01', 21, '3', '2', 'M D Gopala Krishna', 'Police', 540000.00, 1, 18000.00, 20000.00, 'Madhugiri Tumkur', '52 5th Palaguna bolc Ksrp Quartes Koramangala', '2206010004', '', '2', 'upload_files/candidate_tracker/60887269317_G KIRAN KUMAR (1).pdf', NULL, '1', '2022-06-01', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-01 12:18:10', 1, '2022-06-01 12:23:37', 0, NULL, 1),
(8896, 'Shaista taranum', '4', '8088330523', '9880007150', 'shaistashaikh64374@gmail.com', '2005-03-09', 17, '2', '2', 'Abdul Baki', 'Arrabi teacher', 10000.00, 0, 0.00, 13000.00, 'Modi road near gouse medical DJ Halli Bangalore', 'Modi road near gouse medical DJ Halli Bangalore', '2206010005', '24', '1', 'upload_files/candidate_tracker/75468918915_Kaagaz_20220601_134239122361.pdf', NULL, '3', '2022-06-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-01 01:22:28', 1, '2022-06-01 02:07:24', 0, NULL, 1),
(8897, 'Elakkiya M', '11', '8778362112', '9514466558', 'elakki9815@gmail.Com', '1998-05-15', 24, '2', '2', 'Sarala', 'HR', 20000.00, 1, 13980.00, 25000.00, 'Avadi', 'Avadi', '2206010006', '1', '2', 'upload_files/candidate_tracker/11222189348_Updated Resume_Elakkiya.pdf', NULL, '1', '2022-06-03', 30, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'from avadi long distance xxamp sal Expectation is too high compare to cCTC', '6', '1', '', '1', '3', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-01 05:45:27', 85, '2022-06-03 01:20:34', 0, NULL, 1),
(8898, 'VISHNU', '6', '6379952640', '7871943076', 'Vishnudurga7815@gmail.com', '2000-06-07', 21, '2', '2', 'P.Ramesh', 'Auto Driver', 15000.00, 1, 13000.00, 16000.00, 'Chennai', 'Chennai', '2206020001', '1', '2', 'upload_files/candidate_tracker/77167993393_VISHNU VD.docx', NULL, '1', '2022-06-02', 0, '', '3', '59', '2022-06-08', 192000.00, '', '2', '1970-01-01', '1', 'Selected for Kannan Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-02 10:32:49', 60, '2022-06-07 04:29:18', 0, NULL, 1),
(8899, 'Sangeetha.S', '11', '9150736733', '8610167269', 'sangeethasd2426@gmail.com', '2002-01-26', 20, '2', '2', 'Suresh.d', 'Driver', 28000.00, 1, 0.00, 15000.00, '15/A sakthi nagar 16th street, nerkundram, chennai', '15/A Sakthi Nagar 16th Street, Nerkundram, Chennai', '2206020002', '1', '1', 'upload_files/candidate_tracker/95936397560_Kaagaz_20220602_113011677829.pdf', NULL, '1', '2022-06-02', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no communication. Prefer to  talk in tamil', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-02 11:00:28', 85, '2022-06-02 02:36:03', 0, NULL, 1),
(8900, 'Agrima Dutta', '25', '7086489262', '', 'agrimadutta1@gmail.com', '2001-04-16', 21, '2', '2', 'Mrs. Shanta Dutta', 'Worker', 20000.00, 1, 0.00, 30000.00, 'Guwahati', 'Guwahati', '2206020003', '1', '1', 'upload_files/candidate_tracker/34476633563_RESUME.pdf', NULL, '2', '2022-06-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-02 11:02:25', 1, '2022-06-02 11:41:21', 0, NULL, 1),
(8901, '', '0', '9730754965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206020004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-02 11:12:31', 0, NULL, 0, NULL, 1),
(8902, 'Gunasekaran S', '4', '7373339145', '', 'gunasekaran707@gmail.com', '1994-07-01', 27, '2', '1', 'Shanmugam V', 'Daily wages', 10000.00, 1, 300000.00, 350000.00, 'Namakkal', 'Namakkal', '2206020005', '1', '2', 'upload_files/candidate_tracker/47547461157_resume new.pdf', NULL, '1', '2022-06-02', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is exp Higher salary', '1', '1', '', '4', '7', '', '1', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-02 01:07:10', 85, '2022-06-02 04:44:04', 0, NULL, 1),
(8903, 'Johnson J', '5', '9551363702', '9840927447', 'yoyomale555@gmail.com', '1995-09-10', 0, '2', '2', 'N. Jebarajan', 'Salesman', 14.00, 3, 18500.00, 20000.00, 'Chennai', 'Chennai', '2206020006', '1', '2', 'upload_files/candidate_tracker/50066011313_JOHNSON.J RESUME_.pdf', NULL, '1', '2022-06-02', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Interested in Feild work Sustainability doubts', '5', '2', '', '1', '1', '', '2', '2022-06-06', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-02 01:10:22', 85, '2022-06-11 10:53:40', 0, NULL, 1),
(8904, 'Rajesh Kumar.R', '4', '7338998231', '9791090861', 'rajeshraina05@gmail.com', '2000-08-08', 21, '2', '2', 'Ramachandran', 'Corpanter', 10.00, 1, 0.00, 15000.00, 'Ennore', 'Chennai-57', '2206020007', '1', '1', 'upload_files/candidate_tracker/97061351883_file_04Jun22.pdf', NULL, '1', '2022-06-04', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for our process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-02 01:17:40', 85, '2022-06-04 12:07:18', 0, NULL, 1),
(8905, 'Santosh M', '5', '9060667557', '', 'santosh.gedion@gmail.com', '1982-09-28', 39, '2', '1', 'Shubha', 'House wife', 18000.00, 4, 18000.00, 28000.00, 'Bangalore', 'Bangalore', '2206020008', '24', '2', 'upload_files/candidate_tracker/54462219912_cv...pdf', NULL, '1', '2022-06-02', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-02 03:08:27', 1, '2022-06-02 03:13:49', 0, NULL, 1),
(8906, 'Malini', '11', '9677305486', '9489834143', 'malinikulasekaran@gmail.com', '1997-04-07', 25, '2', '2', 'Kulasegaran', 'Police', 400000.00, 1, 10000.00, 18000.00, 'No 75 angalamman Kovil Street pooranankuppam post', 'No 75 angalamman Kovil Street pooranankuppam post', '2206020009', '1', '2', 'upload_files/candidate_tracker/39960391382_Malini_resume.pdf', NULL, '3', '2022-06-10', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-02 05:06:29', 1, '2022-06-02 05:31:50', 0, NULL, 1),
(8907, 'Nivetha.R', '11', '9384308152', '8098818029', 'nivetharavichandhran1@gmail.com', '1999-05-27', 23, '2', '2', 'Ravichandran', 'Mechine operator', 14000.00, 1, 0.00, 17000.00, 'Mayiladuthurai', 'Madipakkam', '2206020010', '1', '1', 'upload_files/candidate_tracker/14570875017_R.Nivetha(CV) (1).pdf', NULL, '1', '2022-06-03', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long distance xxamp Donxquott know the basic about recruitment', '6', '1', '', '1', '1', '', '2', '2022-06-07', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-02 05:27:00', 85, '2022-06-06 12:13:55', 0, NULL, 1),
(8908, 'Jayavel.r', '11', '9715034105', '', 'jjayavel6@gmail.com', '1998-04-20', 24, '2', '2', 'Raja', 'Account manager', 20000.00, 0, 0.00, 18000.00, 'Tirupur', 'Kundrathur', '2206020011', '1', '1', 'upload_files/candidate_tracker/94998584597_resume_1653022973466.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Holding multiple offers,will not sustain for a long', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-06-02 06:57:53', 85, '2022-08-01 12:06:00', 0, NULL, 1),
(8909, '', '0', '9500964216', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206030001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-03 06:59:39', 0, NULL, 0, NULL, 1),
(8910, 'ANANDHA KRISHNAN J', '4', '9597919190', '9442633765', 'jackrish116@gmail.com', '1999-06-11', 22, '2', '2', 'JAYABALAN K', 'IOB Senior Manager (Retd)', 30000.00, 3, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2206030002', '1', '1', 'upload_files/candidate_tracker/67861790088_Anand Resume 2022.pdf', NULL, '1', '2022-06-03', 0, '', '3', '59', '2022-06-09', 150000.00, '', '1', '1970-01-01', '1', 'Selected for Thanjavur in Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-03 09:45:34', 60, '2022-06-26 10:41:55', 0, NULL, 1),
(8911, 'Mohammedyusf', '4', '9043859474', '', 'mdyusufyf1999@gmail.com', '1999-05-25', 23, '2', '2', 'Mahaboob basha', 'Mechanic machine', 15000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2206030003', '2', '1', 'upload_files/candidate_tracker/89679652202_BIO DATA.pdf', NULL, '1', '2022-06-03', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'YTC with his parents', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-03 10:57:28', 85, '2022-06-03 01:21:40', 0, NULL, 1),
(8912, 'Nithish', '6', '6381191373', '9360668182', 'Viratnithish@gmail.com', '2002-02-26', 20, '2', '2', 'Subashini', '120000', 12000.00, 0, 17500.00, 20000.00, 'Ranipet', 'Iyyappanthangal', '2206030004', '1', '2', 'upload_files/candidate_tracker/58308490056_Resume.1.pdf', NULL, '1', '2022-06-07', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have 8 months Exp in Insurance Sales,but not seems much confident,5050 Profile,can give a try kindly check and let me know your interest', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-03 01:11:51', 60, '2022-06-07 04:10:47', 0, NULL, 1),
(8913, 'Arun. R', '4', '7639089519', '8508583940', 'rsarun8754@gmail.com', '2000-09-27', 21, '2', '2', 'Rajendran', 'Farmer', 20000.00, 1, 15000.00, 20000.00, 'Thiruvannamalai', 'Thiruvannamalai', '2206030005', '1', '2', 'upload_files/candidate_tracker/20537464006_Resume.1.pdf', NULL, '3', '2022-06-03', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for our process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-03 01:15:54', 85, '2022-06-03 01:45:28', 0, NULL, 1),
(8914, 'Manikandan.n', '4', '7010233535', '', 'manikandanmanikandan8362@gmail.com', '1998-11-13', 23, '2', '2', 'Uma.n', 'Home make', 49.00, 4, 0.00, 13000.00, 'TAMBARAM EAST', 'TAMBARAM EAST', '2206030006', '1', '1', 'upload_files/candidate_tracker/63995030592_RESUME..pdf', NULL, '1', '2022-06-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-03 05:21:01', 1, '2022-06-03 05:30:29', 0, NULL, 1),
(8915, '', '0', '9688802719', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206030007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-03 06:01:27', 0, NULL, 0, NULL, 1),
(8916, 'Devika .m', '4', '9150369865', '9691753433', 'devikamurugesam1999@gmail.com', '1999-11-09', 22, '3', '2', 'M.murugesan', 'Farmer', 20000.00, 1, 0.00, 8000.00, 'Thanjavur', 'Thanjavur', '2206040001', '', '1', 'upload_files/candidate_tracker/86553215456_devika resume.pdf', NULL, '1', '2022-06-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-04 11:04:10', 1, '2022-06-04 11:09:26', 0, NULL, 1),
(8917, 'A.AKASH', '4', '8925142003', '', 'AKASHLAVANYALAVANYA@gmail.com', '2000-04-08', 22, '2', '2', 'ANNADURAI.B', 'Karbender', 10.00, 0, 0.00, 15.00, 'ENNORE', 'ENNORE', '2206040002', '1', '1', 'upload_files/candidate_tracker/29799376281_certificate (1) (1).pdf', NULL, '1', '2022-06-04', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suit for  calling', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-04 11:10:36', 85, '2022-06-04 12:08:07', 0, NULL, 1),
(8918, 'M pratheep kumar', '5', '9071170196', '9347026518', 'pradeepmohary619@gmail.com', '1994-08-15', 27, '2', '2', 'M venkatesh', 'Farmer', 10000.00, 2, 18000.00, 22000.00, 'Rachapalli Hindupur mandal satyasai district', 'Btm 1st stage', '2206040003', '24', '2', 'upload_files/candidate_tracker/79277231397_new pradeep  moharY resume.pdf', NULL, '1', '2022-06-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-04 11:43:01', 1, '2022-06-04 11:55:26', 0, NULL, 1),
(8919, 'anisha', '11', '9087140138', '', 'anishakannan10@gmail.com', '1997-08-19', 24, '2', '2', 'sundararaman.k.l', 'scm', 300000.00, 1, 150000.00, 200000.00, 'chennai', 'chennai', '2206040004', '1', '2', 'upload_files/candidate_tracker/402815573_ANISHA RESUME May 3 2022.pdf', NULL, '1', '2022-06-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Recruitment,have a month internship Exp Salary Exp is high,also not comfort in TxxampC.will not sustain\n', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-04 01:04:50', 1, '2022-06-04 01:20:40', 0, NULL, 1),
(8920, 'BALAJI G P', '16', '9884267732', '', 'balajigpugazhendi@gmail.com', '1999-07-27', 22, '2', '2', 'PUGAZHENDI G', 'TEACHER', 40000.00, 3, 10000.00, 25000.00, 'MELMARUVATUR', 'TARAMANI', '2206040005', '1', '2', 'upload_files/candidate_tracker/60532081049_GPB BIO.pdf', NULL, '1', '2022-06-04', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-04 02:45:48', 85, '2022-06-04 04:15:14', 0, NULL, 1),
(8921, 'anushia', '11', '6383525047', '', 'anushiyamurugavel30@gmail.com', '1999-08-30', 22, '2', '2', 'murugavel', 'officer', 100000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2206040006', '1', '1', 'upload_files/candidate_tracker/43181287233_ANUSHIYAM.pdf', NULL, '2', '2022-06-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-04 05:48:14', 1, '2022-06-08 05:09:13', 0, NULL, 1),
(8922, 'Priya dharshini.k', '4', '8220715192', '9965354601', 'Shivasakthi682@gmail.com', '2001-05-16', 21, '4', '2', 'Muniyappan.s(gardian)', 'Chemist', 20000.00, 1, 10000.00, 13000.00, 'M-155,manickam palayam,housing unit,erode-638009', 'M-155,manickam palayam,housing unit,erode-638009', '2206040007', '', '2', 'upload_files/candidate_tracker/19361102786_Priya dharshini 2022 resume.pdf', NULL, '1', '2022-06-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-04 06:05:19', 1, '2022-06-04 06:25:02', 0, NULL, 1),
(8923, 'Surya Prakash.V', '6', '8300071988', '6382059589', 'psuriya561@gmail.com', '1999-11-29', 22, '1', '2', 'Varatharajan.V', 'Sub inspector of police', 400000.00, 1, 10500.00, 13500.00, 'Police quarters,Theni.', 'Mogappair west, Chennai', '2206060001', '', '2', 'upload_files/candidate_tracker/78680329853_My Resume 2022.pdf', NULL, '1', '2022-06-06', 0, 'P1272', '3', '59', '2022-06-07', 192000.00, '', '3', '2022-06-16', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-06 09:51:20', 60, '2022-06-07 10:04:33', 0, NULL, 1),
(8924, 'Abdullah', '13', '8489351923', '9894846968', 'abdullah.bca98@gmail.com', '1998-10-12', 23, '4', '2', 'Mohamed yousuf and Rasheethal beevi', 'Retired and house wife', 50000.00, 3, 0.00, 10000.00, 'Tenkasi', 'Perumpakkam', '2206060002', '', '1', 'upload_files/candidate_tracker/67602289183_abdulla-resume.docx', NULL, '1', '2022-06-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very Slow,will not sustain and suits for our roles', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-06 10:43:06', 1, '2022-06-06 10:48:19', 0, NULL, 1),
(8925, 'Parthiban', '5', '9710759828', '', 'parthi2610@gmail.com', '1989-10-26', 32, '1', '2', 'Gomathi Mani', 'Home maker', 23000.00, 1, 23000.00, 30000.00, 'Chennai', 'Chennai', '2206060003', '', '2', 'upload_files/candidate_tracker/52330512188_Resume - Parthiban New.docx', NULL, '1', '2022-06-06', 30, 'P1242', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'reject', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-06 11:10:59', 1, '2022-06-06 11:17:49', 0, NULL, 1),
(8926, 'anitha r', '5', '7022795699', '', 'anitha25304@gmail.com', '2004-03-25', 18, '2', '2', 'rajaram', 'water supply', 20000.00, 2, 0.00, 13000.00, 'bommanahalli', 'bommanahalli', '2206060004', '24', '1', 'upload_files/candidate_tracker/30371810048_Anitha Resume.pdf', NULL, '1', '2022-06-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-06 11:47:43', 1, '2022-06-06 12:11:44', 0, NULL, 1),
(8927, 'Aarthi', '11', '8870281286', '8870690403', 'aarthiaarthi04337@gmail.com', '1999-11-24', 22, '2', '2', 'Ravichandran', 'Farmer', 200000.00, 2, 0.00, 15000.00, 'Perambalur', 'Tambaram', '2206060005', '1', '1', 'upload_files/candidate_tracker/65039950631_AARTHI RESUME.pdf', NULL, '3', '2022-06-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-06 12:24:31', 87, '2022-06-07 02:48:16', 0, NULL, 1),
(8928, 'Jacop pradeep .g', '4', '9551489076', '9566230701', 'jacobpradeep07@gmail.com', '1998-01-07', 24, '1', '2', 'Gopi .a', 'Marai Malai Nagar', 25000.00, 1, 0.00, 15000.00, 'Marai Malai Nagar Samiyargate 603209', 'Sai Baba Kovil street Samiyargate mm nagar 603209', '2206060006', '', '1', 'upload_files/candidate_tracker/10266411754_certificate (2).pdf', NULL, '1', '2022-06-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too high Exp,long distance,will not run in long not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-06 12:25:28', 1, '2022-06-06 12:39:56', 0, NULL, 1),
(8929, '', '0', '8610806388', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206060007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-06 12:26:19', 0, NULL, 0, NULL, 1),
(8930, 'VENUGOPAL r', '11', '7550158440', '', 'venupremila@gmail.com', '1999-02-24', 23, '2', '2', 'Premika', 'Supervisor', 17000.00, 0, 25000.00, 30000.00, 'Andhra Pradesh', 'Chroumpet,Chennai', '2206060008', '1', '2', 'upload_files/candidate_tracker/10765612602_Venugopal R Resuem.pdf', NULL, '1', '2022-06-06', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication,veru high Exp,not much comfort in TxxampC,will not sustain', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-06 12:45:29', 85, '2022-06-06 01:17:19', 0, NULL, 1),
(8931, 'goutham', '11', '9841884846', '', 'goutham27smart@gmail.com', '1998-06-27', 23, '2', '2', 'parent', 'Government employer', 40000.00, 1, 0.50, 2.50, 'perambur', 'perambur', '2206060009', '1', '2', 'upload_files/candidate_tracker/36213276553_Goutham_Resume.pdf', NULL, '1', '2022-06-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary Exp is veru high,will not sustain in our roles', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-06 02:04:30', 85, '2022-06-06 02:33:30', 0, NULL, 1),
(8932, 'V. Sai prasad', '5', '9676372949', '9885409932', 'saiprasadvelpula165@gmail.com', '1997-07-10', 24, '3', '2', 'V. Venkatappa', 'Real Estate', 30000.00, 2, 0.00, 300000.00, '501,jcr layout, Panathur, kadabeesanahalli', 'Banglore', '2206060010', '', '1', 'upload_files/candidate_tracker/7343871908_SAIPRASAD_RESUME.docx', NULL, '1', '2022-06-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-06 02:26:35', 1, '2022-06-06 02:33:09', 0, NULL, 1),
(8933, '', '0', '7550345725', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-06 02:39:55', 0, NULL, 0, NULL, 1),
(8934, 'Sandhiya ravi', '11', '6382842131', '7397722294', 'sandhiyaselvi1506@gmail.com', '2001-06-15', 20, '2', '2', 'Selvi ravi', 'Accountant', 15000.00, 0, 0.00, 20.00, 'Chennai', 'Chennai', '2206060012', '1', '1', 'upload_files/candidate_tracker/64727653896_Sandhiya Resume word format.docx', NULL, '1', '2022-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok,Fresher For Recruitment,Can Give A Try  But Her Min Is Very High And Not Ready To Come  Down, Given Her Time If She Comes Back Lets See', '6', '1', '', '1', '1', '', '2', '2022-06-16', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-06 03:18:11', 87, '2022-06-08 01:42:05', 0, NULL, 1),
(8935, 'Vijay', '4', '8903027490', '9245395140', 'karthikpskarthik847@gmail.com', '2001-03-03', 21, '2', '2', 'Sekar', 'Wever', 60000.00, 1, 0.00, 15000.00, 'Dindigul', 'Dindigul', '2206060013', '1', '1', 'upload_files/candidate_tracker/56802328347_vijay resume.docx', NULL, '3', '2022-06-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-06-06 03:31:57', 1, '2022-06-06 03:35:14', 0, NULL, 1),
(8936, 'Darathy Infant Aruna', '11', '8760102551', '9360108357', 'darathyphilipkumar@gmail.com', '2001-12-18', 20, '2', '2', 'Philip Kumar', 'Daily Wages', 10000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Ulunthurpet', '2206060014', '1', '1', 'upload_files/candidate_tracker/23409876933_Aruna.pdf', NULL, '2', '2022-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-06 06:22:00', 87, '2022-06-09 10:20:36', 0, NULL, 1),
(8937, 'Pavithara', '11', '8072895862', '8667282248', 'pavitharam10@hotmail.com', '1998-06-04', 24, '2', '2', 'Mathiyalagan', 'Retired press officer', 30000.00, 2, 240000.00, 300000.00, 'Chennai', 'Chennai', '2206060015', '1', '2', 'upload_files/candidate_tracker/31544434220_Pavithara.CV.pdf', NULL, '2', '2022-06-25', 20, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dsiscussed 15K for 3 months if achieved 12 profiles per month then 2K incentive PM and the salary will be revised to 2.4LPA after 3 months...Candidate yet to give her confirmation', '6', '1', '', '1', '1', '', '2', '2022-06-27', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-06 06:47:23', 60, '2022-06-25 12:01:17', 0, NULL, 1),
(8938, 'Preethi. S', '11', '6381529998', '', 'psypreethi26@gmail.com', '1999-07-26', 22, '2', '2', 'Sekar. M', 'Painter', 25000.00, 2, 0.00, 22000.00, '6/238 Samy puram colony, sivakasi', '600094, Kodambakkam High Rd, Choolaimedu, Chennai', '2206060016', '1', '1', 'upload_files/candidate_tracker/73614072607_PREETHI RESUME.pdf', NULL, '1', '2022-06-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,Fresher for Recruitment have internship Exp She is from Psychology background.Almost ok with the TxxampC but her expectation as fresher is minimum 20K.Not ready to come down on the salary', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-06 07:00:25', 1, '2022-06-08 04:59:27', 0, NULL, 1),
(8939, 'Sanjaikumar.v', '4', '6369426169', '8870065752', 'sanjaikumar7105@gmail.com', '2001-07-27', 20, '1', '2', 'Krishnaveni.v', 'Nil', 10000.00, 2, 0.00, 15000.00, 'Taramani', 'Taramani', '2206070001', '', '1', 'upload_files/candidate_tracker/81982132614_SANJAKUMAR DOCUMENT_removed.pdf', NULL, '2', '2022-06-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-07 10:09:25', 1, '2022-06-07 10:22:13', 0, NULL, 1),
(8940, 'Uthamasethupathy. V', '6', '6382572456', '9965230274', 'Vsethupathy18@gmail.com', '1997-03-13', 25, '2', '2', 'V. Selvi', 'Housewife', 10000.00, 0, 0.00, 15000.00, 'Erode', 'Erode', '2206070002', '1', '1', 'upload_files/candidate_tracker/22945542623_RESUME 6.pdf', NULL, '1', '2022-06-07', 0, '', '3', '59', '2022-06-08', 186000.00, '', '3', '2022-06-22', '1', 'Selected for RE - PF/ESI/PT - Erode Location', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-07 10:46:11', 60, '2022-06-07 06:03:57', 0, NULL, 1),
(8941, 'E santhosh kumar', '16', '8248171013', '9940474576', 'skumar73639@gmail.com', '1999-11-19', 22, '2', '2', 'Elumalai', 'Tailor', 15000.00, 1, 0.00, 250000.00, 'Madhavaram', 'Madhavaram', '2206070003', '1', '1', 'upload_files/candidate_tracker/44063596167_pdf_20220427_122955_0000_compressed_compressed1.pdf', NULL, '1', '2022-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication,no basic skills in the MIS,also not comfortable for Sales .Too Long distance will not sustain\n', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-07 10:51:43', 85, '2022-06-09 10:54:24', 0, NULL, 1),
(8942, 'Nichenametla Ashok', '5', '9603380132', '', 'nichenametlaashok0007@gmail.com', '2000-10-02', 21, '1', '2', 'Shankariah', 'Andhra Pradesh', 25000.00, 1, 0.00, 15000.00, 'Perusomula ,sanjamula(m), kurnool (d),Andhra', 'Bangalore', '2206070004', '', '1', 'upload_files/candidate_tracker/26536671654_RESUME ASHOK.pdf', NULL, '1', '2022-06-07', 0, '55597', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-07 11:11:13', 1, '2022-06-07 11:16:59', 0, NULL, 1),
(8943, 'Balavignesh', '2', '9443855817', '', 'vimi168135@gmail.com', '1998-07-09', 23, '2', '2', 'Sarveshwaran', 'Supervisor', 17000.00, 2, 0.00, 17000.00, 'CHENNAI TAMIL NADU', 'CHENNAI TAMIL NADU', '2206070005', '1', '1', 'upload_files/candidate_tracker/4343103317_balarr.pdf', NULL, '1', '2022-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not comfortable with the package', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-07 11:22:17', 1, '2022-06-07 11:24:33', 0, NULL, 1),
(8944, 'Shruthi', '5', '7806826938', '9087751231', 'Shruthisekar9@gmail.com', '1993-04-09', 29, '1', '1', 'Father', 'Housewife', 20000.00, 3, 16000.00, 15000.00, 'Chennai', 'West mamabalm', '2206070006', '', '2', 'upload_files/candidate_tracker/83796020116_R.Nivetha(CV) (1).pdf', NULL, '1', '2022-06-07', 0, 'Jobs', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not fit for Rm role', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-07 12:27:13', 60, '2022-06-07 04:12:09', 0, NULL, 1),
(8945, 'K.Arun', '6', '9080624900', '9994576433', 'arunkrishnan132@gmail.com', '1998-01-09', 24, '2', '2', 'K.Selvi', 'Coolie', 17000.00, 2, 0.00, 13000.00, 'Erode', 'Erode', '2206070007', '1', '1', 'upload_files/candidate_tracker/32789446264_Arun Resume.pdf', NULL, '1', '2022-06-07', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Voice low..', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-07 12:38:26', 60, '2022-06-07 04:06:28', 0, NULL, 1),
(8946, 'Gokul', '6', '9344299936', '8300914661', 'gokulvathy1517@gmail.com', '1998-07-15', 23, '2', '2', 'Murugesan', 'Cooli', 13000.00, 1, 10000.00, 13000.00, 'Erode', 'Erode', '2206070008', '1', '2', 'upload_files/candidate_tracker/26731698978_Gokul.resume.docx', NULL, '1', '2022-06-07', 0, '', '3', '59', '2022-06-13', 194000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-07 12:38:28', 60, '2022-06-26 10:29:52', 0, NULL, 1),
(8947, 'Dhanalakshmi.R', '11', '9150202974', '8939001974', 'dhanalakShmir587@gmail.com', '2001-10-28', 20, '4', '2', 'Amsa.R', 'Coolie', 70000.00, 0, 0.00, 14.00, 'Pattabiram', 'pattabiram', '2206070009', '', '1', 'upload_files/candidate_tracker/62644356034_dhana.resume ^^.pdf', NULL, '1', '2022-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not yet completed her graduation,23 days to complete her exams ,frehser,sustainability doubts on this profile,after exams if she comes back lets try', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-07 03:05:50', 1, '2022-06-07 03:17:29', 0, NULL, 1),
(8948, 'geetha', '26', '7358435462', '', 'geetha.july14@gmail.com', '1995-07-14', 26, '2', '2', 'mani', 'labour', 10000.00, 1, 15000.00, 18000.00, 'coimbatore', 'coimbatore', '2206070010', '1', '2', 'upload_files/candidate_tracker/49539463649_1580108053575Resume_Geetha.doc', NULL, '2', '2022-06-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Career Gap, No Relevant Exp, Age around 25yrs, while communicating with her seems not much confident. The candidate says that she will be able to sign the SA but does not seems to be. Also, her expectation is high(18-20K) being a fresher', '7', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-07 05:26:45', 1, '2022-06-07 07:15:41', 0, NULL, 1),
(8949, 'Dharankumar', '10', '9047517243', '8072460710', 'im.dharankumar@gmail.com', '1997-09-20', 24, '2', '2', 'Arutjothi', 'Retired teacher', 28.00, 2, 0.00, 30000.00, 'Siruvalur vada', 'Siruvalur vada', '2206070011', '1', '2', 'upload_files/candidate_tracker/24907884347_My%20Resume%201.docx', NULL, '2', '2022-06-08', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for our Sales and the candidate is looking for team lead profiles only, also he is not comfortable in taking calls. Not suitable', '5', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-07 05:30:21', 1, '2022-06-07 05:33:28', 0, NULL, 1),
(8950, 'Pravalika', '25', '7795261710', '9945531728', 'pravalikachoudary1432@gmail.com', '2000-05-10', 22, '1', '2', 'Bhaskar Rao', 'Farmer', 25000.00, 0, 0.00, 15000.00, 'Kudlu gate', 'Kudlu gate', '2206080001', '', '1', 'upload_files/candidate_tracker/20331852042_RESUME.doc', NULL, '1', '2022-06-08', 0, '5447', '3', '59', '2022-06-13', 168000.00, '', '6', '2022-09-21', '2', 'Selected for ESales RM Mohanraj Team  Consultant Role', '8', '1', '', '2', '2', '', '2', '1970-01-01', '1', '6', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-06-08 11:06:49', 60, '2022-06-26 10:36:30', 0, NULL, 1),
(8951, 'M dillibabu', '16', '9600643453', '', 'dillisrm98@gmail.com', '1998-07-25', 23, '2', '2', 'Munniyappan', 'Farmer', 10.00, 4, 17000.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2206080002', '1', '2', 'upload_files/candidate_tracker/85151095962_dilliresume-converted.docx', NULL, '1', '2022-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication,not able to understand what we communicate will not sustain and not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-08 11:36:44', 85, '2022-06-08 11:52:49', 0, NULL, 1),
(8952, 'A.Nithiyasri', '16', '8637471975', '6369957193', 'nithiyaarun8@gmail.com', '1998-08-30', 23, '2', '2', 'Kumari', 'Non teaching staff', 10.00, 4, 16000.00, 19000.00, 'Chennai', 'Chennai', '2206080003', '1', '2', 'upload_files/candidate_tracker/5284725521_nithi hdfc(2).pdf', NULL, '1', '2022-06-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'communication Average, not ready to handle the pressure,will not sustain', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-08 11:45:30', 1, '2022-06-08 12:07:49', 0, NULL, 1),
(8953, 'Shabeer ahamed', '6', '9566199442', '7010947964', 'Shabeerahamed662@gmail.com', '1994-09-21', 27, '4', '2', 'Umarsadiq', 'Garnent Tailor', 30000.00, 2, 15000.00, 18000.00, 'Mangadu', 'Mangadu', '2206080004', '', '2', 'upload_files/candidate_tracker/19880675424_Resume_Shabeer (1).docx', NULL, '3', '2022-06-08', 0, '', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'Sustain doubt', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-08 12:03:13', 1, '2022-06-08 12:15:04', 0, NULL, 1),
(8954, '', '0', '9159175490', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206080005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-08 12:03:48', 0, NULL, 0, NULL, 1),
(8955, '', '0', '7548832523', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206080006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-08 12:04:17', 0, NULL, 0, NULL, 1),
(8956, '', '0', '7548832423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206080007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-08 12:09:27', 0, NULL, 0, NULL, 1),
(8957, 'Siva V', '5', '7094181720', '', 'siva.vanamamalai@gmail.com', '1996-08-31', 25, '4', '2', 'vanamamalai.S', 'Farmar', 20000.00, 0, 25000.00, 30000.00, 'Tirunelveli', 'Chennai', '2206080008', '', '2', 'upload_files/candidate_tracker/86089979837_RESUME (1).docx', NULL, '1', '2022-06-08', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,no relevant Exp,but in B2B Sales 5050 profile can give a try and analyse in 7 days,ready to take calls,but exp seems somewhat high', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-08 12:25:49', 60, '2022-06-08 07:28:44', 0, NULL, 1),
(8958, 'Ajay', '6', '8838314063', '8012251436', 'aajay5928@gmail.com', '1997-04-25', 25, '2', '2', 'V. Ramaseshan', 'Temple priest', 20000.00, 1, 198000.00, 276000.00, 'No:53, South West Boag Road, T.nagar Chennai -17', 'No:53, South West Boag Road, T.Nagar Chennai -17', '2206080009', '1', '2', 'upload_files/candidate_tracker/25710281734_Resume updated 2021.pdf', NULL, '3', '2022-06-08', 60, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,60 days notice,written communication no,High CTC exp sustainability doubts', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-08 02:40:00', 85, '2022-06-08 03:02:41', 0, NULL, 1),
(8959, 'Uthra S', '11', '9566085250', '8838119759', 'uthraglassy96@gmail.com', '1996-02-08', 26, '2', '2', 'Sundaram S', 'Car dealer', 20000.00, 0, 27000.00, 32000.00, 'No 29/2b new st Nungambakkam ch 34', 'No 29/2b new st Nungambakkam ch 34', '2206080010', '1', '2', 'upload_files/candidate_tracker/81930490952_Uthracv.pdf', NULL, '1', '2022-06-09', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,have exp in US IT recruitement 2 yrs back and she was into different domain.now again she is looking for Recruitment. not much comfort with the txxampC, also her expectation  is very high compare to her experience.IF she comes back Let us try', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-08 04:41:28', 1, '2022-06-08 05:29:31', 0, NULL, 1),
(8960, 'Abbass. K', '6', '7200450264', '', 'abuabu3564@gmail.com', '1995-02-18', 27, '2', '2', 'Kaja hussain. S', 'business', 15000.00, 1, 12000.00, 12000.00, 'Erode', 'Erode', '2206080011', '1', '2', 'upload_files/candidate_tracker/46179194374_MY%20RESUME.docx', NULL, '1', '2022-06-09', 1, '', '3', '59', '2022-06-13', 156000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar - PF/ESI/PT', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-08 04:44:53', 60, '2022-06-11 03:34:02', 0, NULL, 1),
(8961, '', '0', '8015452762', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206080012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-08 06:13:14', 0, NULL, 0, NULL, 1),
(8962, 'divakaer', '11', '7358407223', '', 'divakaerjs@gmail.com', '1999-09-12', 22, '2', '2', 'jayaprakash', 'business', 100000.00, 1, 0.00, 20000.00, 'tambaram', 'tambaram', '2206080013', '1', '1', 'upload_files/candidate_tracker/41974214287_J S DIVAKAER', NULL, '2', '2022-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-08 06:18:43', 87, '2022-06-09 10:19:15', 0, NULL, 1),
(8963, 'Vaishyakanmani', '21', '8098290294', '', 'Vaishukas13@gmail.com', '1995-05-16', 27, '2', '2', 'K. Ramasamy', 'Farmer', 100000.00, 0, 0.00, 16.00, 'Pattukottai', 'Saidapet', '2206080014', '1', '2', 'upload_files/candidate_tracker/32397885327_vaishya resume.pdf', NULL, '1', '2022-06-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,have exp in telecalling sales,not suits for our MIS,Processed her for second round ESales,but got rejected in the final round with Gaurav sir.Rejected', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-08 07:44:07', 1, '2022-06-08 07:56:47', 0, NULL, 1),
(8964, 'Kalpesh Kumar', '16', '9790972104', '7401794279', 'kalpeshramesh316@gmail.com', '1999-11-25', 22, '2', '2', 'Ramesh', 'Driver', 18000.00, 1, 15000.00, 19000.00, 'Chennai', 'Chennai', '2206090001', '1', '2', 'upload_files/candidate_tracker/98016400512_Kalpesh_Kumar Resume 2022.docx', NULL, '1', '2022-06-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, not clear in his speech, not ok with TxxampC, Very slow  and will not handle the pressure.Not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-09 10:17:08', 1, '2022-06-09 10:20:03', 0, NULL, 1),
(8965, 'Salman athkham k a', '11', '6369935964', '', 'salmanathkham@gmail.com', '1998-05-07', 24, '2', '2', 'Abul gulam', 'Driving', 12000.00, 2, 16000.00, 16000.00, '105/52 new Street kadayanallur', 'Kadayanallur', '2206090002', '1', '2', 'upload_files/candidate_tracker/37216080523_salman resume-1.pdf', NULL, '2', '2022-06-10', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, not comfortable  with the TxxampC,Will not run in a long,not suitable', '6', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-09 10:59:23', 1, '2022-06-09 11:02:36', 0, NULL, 1),
(8966, 'hari haran ruban', '16', '9566478661', '', 'hariharan1996@gmail.com', '1995-12-18', 26, '2', '2', 'chelliah', 'farmer', 10000.00, 0, 18000.00, 23000.00, 'Tenkasi District,', 'bangalore', '2206090003', '1', '2', 'upload_files/candidate_tracker/94450154450_Hariharan_Chelliah_May-2022 (3).pdf', NULL, '2', '2022-06-10', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, Diploma graduate in 2014, had his own business then worked on different bank projects. Currently, he is in Bangalore working in Wintronics and looking for an opportunity, Min 18K Exp and not much with TxxampC, will not sustain in our roles.', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-09 11:04:08', 1, '2022-06-09 11:36:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8967, 'DHANALAKSHMI', '5', '9962779148', '6380128566', 'Poojavenkat13@gmail.com', '1999-11-13', 22, '1', '2', 'VENKATESAN', 'Self Employee', 40000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2206090004', '', '2', 'upload_files/candidate_tracker/60502236273_Resume DHANALAKSHM.V.docx', NULL, '1', '2022-06-09', 0, '55641', '5', '80', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She is not speak out ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-09 12:01:39', 60, '2022-06-09 05:17:19', 0, NULL, 1),
(8968, 'RANGARAJAN.R', '6', '9176878709', '', 'rangarajan1638@gmail.com', '1999-06-16', 22, '2', '2', 'R. Ranganathan', 'daily wager', 12000.00, 3, 20000.00, 25000.00, 'Kodambakkam, Chennai', 'Kodambakkam, Chennai', '2206090005', '1', '2', 'upload_files/candidate_tracker/76298436186_resume_RANGARAJAN_R[3] (2).pdf', NULL, '2', '2022-06-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Our Roles', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-09 12:16:11', 1, '2022-06-10 09:43:32', 0, NULL, 1),
(8969, 'Thalapathy d', '5', '9043617810', '7824898752', 'D.KARTHICK47@GMAIL.COM', '1993-06-14', 28, '1', '2', 'K.durai', 'Late', 7000.00, 2, 24150.00, 30000.00, '6/34 SOUTH BOAG ROAD T.NAGAR CHENNAI 600017', 'Chennai', '2206090006', '', '2', 'upload_files/candidate_tracker/61893758097_Karthik Resume.pdf', NULL, '1', '2022-06-09', 0, '55643', '3', '59', '2022-06-10', 336000.00, '', NULL, '2023-06-02', '1', 'Selected for Pandiarajan Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-09 12:37:09', 60, '2022-06-10 05:00:45', 0, NULL, 1),
(8970, 'Balachandar, M', '16', '9940726858', '8754611596', 'artsbalachandar555@gmill.com', '1998-07-09', 23, '2', '2', 'Muthu', 'Company', 15000.00, 1, 0.00, 17000.00, 'Thiruvalur', 'Thiruvallur', '2206090007', '1', '1', 'upload_files/candidate_tracker/61765053776_Adobe Scan Jun 02, 2022.pdf', NULL, '1', '2022-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Sales Collections, but not comfortable to go in sales again, appeared for  MIS role, but no basic ideas.Too long Distance he is from tiruvallur and not ready to relocate,not suitable', '3', '1', '', '4', '6', '', '2', '1970-01-01', '2', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-09 01:13:04', 85, '2022-06-09 04:07:33', 0, NULL, 1),
(8971, 'Anupriya', '11', '7904130674', '9688306032', 'anupriyajagadeesan@gmail.com', '1989-07-14', 32, '2', '1', 'Jagadeesan', 'Engineer', 40000.00, 3, 25000.00, 25000.00, 'Chennai', 'Chennai', '2206090008', '1', '2', 'upload_files/candidate_tracker/93951359635_resume_anu.doc', NULL, '3', '2022-06-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for WFH,Having a long career gap,6 months Exp in IT recruitment,Married,need some time to finalise the Profile', '6', '1', '0', '1', '3', '0', '2', '2022-06-17', '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-09 03:18:54', 1, '2022-06-09 03:22:34', 0, NULL, 1),
(8972, 'Sangeetha A', '11', '9943937328', '', 'sangeethaarunachalam1997@gmail.com', '1997-06-11', 24, '2', '2', 'Arunachalam.s', 'Business', 20000.00, 1, 0.00, 300000.00, 'Thoothukudi (Tuticorin)', 'Thoothukudi (Tuticorin)', '2206090009', '1', '1', 'upload_files/candidate_tracker/85757800857_SANGEETHA RESUME (1).pdf', NULL, '3', '2022-06-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-09 04:29:36', 1, '2022-06-09 04:34:52', 0, NULL, 1),
(8973, 'Tamilselvan L', '4', '9092499398', '9380794634', 'tamildhanush23@gmail.com', '2000-02-24', 22, '2', '2', 'Loganathan B', 'Clerk', 30000.00, 2, 10000.00, 20000.00, 'Chennai', 'Chennai', '2206090010', '1', '2', 'upload_files/candidate_tracker/69165127495_TAMILSELVAN L.docx', NULL, '1', '2022-06-10', 1, '', '1', '14', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-09 05:30:50', 1, '2022-06-10 10:37:54', 0, NULL, 1),
(8974, 'Hema r', '11', '8072785074', '8778821962', 'Hem.resh09@gmail.com', '1991-10-02', 30, '2', '1', 'Kathiresan c', 'Private', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2206090011', '1', '1', 'upload_files/candidate_tracker/1205593812_Resume.pdf', NULL, '1', '2022-06-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Huge career gap, no basic knowledge in recruitment ,need to train from the scratch, too long distance 36kms up and down married 2 kids not comfort with the timings too', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-09 05:55:09', 60, '2022-06-10 03:29:56', 0, NULL, 1),
(8975, '', '0', '9176815197', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206090012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-09 06:35:15', 0, NULL, 0, NULL, 1),
(8976, 'Deepasri', '11', '6385920097', '7708892321', '08srideepa97@gmail.com', '1997-12-08', 24, '2', '2', 'Rajagopal', 'Policeman', 800000.00, 1, 240000.00, 300000.00, 'Tiruchengode', 'Tiruchengode', '2206090013', '1', '2', 'upload_files/candidate_tracker/6027054485_DEEPASRI RAJAGOPAL- UPDATED CV.docx', NULL, '2', '2023-06-10', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-09 06:46:04', 1, '2022-06-09 07:09:16', 0, NULL, 1),
(8977, 'KUMARESAN K', '4', '7010062060', '7200632154', 'Reachkumaresa@gmail.com', '1998-06-28', 23, '1', '2', 'Kannappan M', 'Labour', 5000.00, 2, 16000.00, 20000.00, 'Cheyyar', 'Chennai', '2206100001', '', '2', 'upload_files/candidate_tracker/39096073336_Kumaresan K Resume 2022.pdf', NULL, '1', '2022-06-10', 30, 'P1066', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 10:03:24', 1, '2022-06-10 10:19:57', 0, NULL, 1),
(8978, 'Mohamed Nazeerudeen', '4', '8778818736', '9840731938', 'mohamednazirdeen16@gmail.com', '2000-04-16', 22, '1', '2', 'Mohamed Samimudeen', 'Sales Executive', 15000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2206100002', '', '1', 'upload_files/candidate_tracker/97598557948_Nazir resume.pdf', NULL, '1', '2022-06-10', 0, 'Ci121', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 10:15:19', 1, '2022-06-10 10:31:14', 0, NULL, 1),
(8979, 'TAMILSELVAN', '4', '8248598127', '', 'selvamessi07081998@gmail.com', '1998-08-07', 23, '2', '2', 'Thamindran', 'worker', 20000.00, 1, 13000.00, 18000.00, 'Thirumullaivoyal colony', 'Thirumullaivoyal colony', '2206100003', '1', '2', 'upload_files/candidate_tracker/46083777085_T.Tamilselvan resume (2).pdf', NULL, '1', '2022-06-13', 15, '', '1', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-10 10:26:31', 60, '2022-06-14 06:21:11', 0, NULL, 1),
(8980, 'Monica N', '25', '7019136761', '', 'monicamoni1145@gmail.com', '1998-05-05', 24, '1', '2', 'Nagaraju', 'No', 80000.00, 1, 10000.00, 15000.00, 'Adugodi', 'Adugodi', '2206100004', '', '2', 'upload_files/candidate_tracker/63500304377_monika resume.pdf', NULL, '1', '2022-06-10', 0, 'Cafsusr00272', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 10:39:02', 1, '2022-06-10 10:54:41', 0, NULL, 1),
(8981, '', '0', '8904392934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-10 10:41:42', 0, NULL, 0, NULL, 1),
(8982, '', '0', '7358507171', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206100006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-10 10:54:54', 0, NULL, 0, NULL, 1),
(8983, 'Suman nihar', '4', '6381567917', '9092252171', 'Sumannihar786@gmail.com', '2000-04-22', 22, '2', '2', 'Mohammed', 'Driver', 30000.00, 1, 15000.00, 15000.00, 'Pallavaram', 'Pallavaram', '2206100007', '1', '2', 'upload_files/candidate_tracker/48269810829_Suman nihar resume.pdf', NULL, '1', '2022-06-10', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', '5050 Profile 6 months in Inbound calls,2nd round interviewed by karthika in your absence do check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-10 11:20:24', 1, '2022-06-10 11:55:01', 0, NULL, 1),
(8984, 'V.Oviya', '6', '9384653068', '', 'ooviyavjkumar02@gmail.com', '2002-05-14', 20, '2', '2', 'V.Delsi', 'Garment company', 10000.00, 1, 0.00, 15000.00, 'No.5/5 Vinayagapuram , Tondiarpet,ch-81', 'No.5/5 Vinayagapuram , Tondiarpet,Ch-81', '2206100008', '1', '1', 'upload_files/candidate_tracker/22933957995_Resume Of Oviya.docx', NULL, '1', '2022-06-10', 0, '', '4', '89', NULL, 0.00, '', '0', NULL, '2', 'Communication ok 5050 profile fresher for  Sales do check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-06-10 11:55:07', 1, '2022-06-10 12:05:58', 0, NULL, 1),
(8985, 'Anand', '7', '9880241888', '9738176606', 'anandgowda2901@gmail.com', '1985-01-29', 37, '2', '1', 'Rangadham', 'Mag Dr i', 50000.00, 0, 31500.00, 30000.00, 'BYLAKONENAHALLI', 'BYLAKONENAHALLI', '2206100009', '12', '2', 'upload_files/candidate_tracker/25409116695_Image to PDF 20220515 08.00.10.pdf', NULL, '1', '2022-06-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 11:55:40', 1, '2022-06-10 12:02:53', 0, NULL, 1),
(8986, 'Leena.s', '6', '8122073634', '', 'priyaleena837@gmail.com', '2001-08-17', 20, '2', '2', 'Sankar.b', 'Fisherman', 12000.00, 2, 0.00, 13000.00, 'No.9 s.n chetty 3rd Street royapuram ch-13', 'No.9 s.n chetty 3rd Street royapuram ch-13', '2206100010', '1', '1', 'upload_files/candidate_tracker/33670266105_Document 2022-06-10 12.00.42.pdf', NULL, '1', '2022-06-10', 0, '', '4', '89', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,very low profile 5050 check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-06-10 11:57:32', 1, '2022-06-10 12:28:23', 0, NULL, 1),
(8987, 'yogesh rajan', '6', '9884843578', '', 'yogeshrajan8362@gmail.com', '1997-05-25', 25, '1', '2', 'rajan', 'building contractor', 35000.00, 0, 0.00, 15000.00, 'ambattur', 'ambattur', '2206100011', '', '1', 'upload_files/candidate_tracker/74979270405_yog.pdf', NULL, '1', '2022-06-10', 0, 'P1290', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Ned to open a lot,no sustainability 2yrs 3 companies,Fresher will not hanlde our pressure', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 12:02:34', 1, '2022-06-10 12:11:29', 0, NULL, 1),
(8988, 'Cyrus.S', '6', '7200947123', '7358337157', 'joshuacyrus171@gmail.com', '1996-09-07', 25, '2', '2', 'M.Rani pramila', 'house wife', 25000.00, 1, 16000.00, 18000.00, 'no 51 siruvallur road Perambur ch6000011', 'no 778,sectraitrait colony Vinyagpuram kolathur ch', '2206100012', '1', '2', 'upload_files/candidate_tracker/90611701987_resume.docx', NULL, '1', '2022-06-10', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,12th highest graduation,Have Exp in Collection Calls,5050 Profile left without attending the 2nd Round minimum 15-16K TH', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '6', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-10 12:19:35', 85, '2022-06-10 12:47:39', 0, NULL, 1),
(8989, 'S vishnu', '5', '8939618088', '8825787661', 'svishnu1811@gmail.com', '1995-04-18', 27, '1', '2', 'Geetha', 'Housemaid', 25000.00, 1, 17000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2206100013', '', '2', 'upload_files/candidate_tracker/21857432586_Vishnu Word -converted (1).pdf', NULL, '1', '2022-06-10', 0, '55634', '7', '60', NULL, 0.00, '', '0', NULL, '1', 'Asked one week time to Join for arranging laptop. Expected salary is 16+ take home+PF. Selected from Mani Team', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 12:23:36', 1, '2022-06-10 12:35:28', 0, NULL, 1),
(8990, 'Divya', '6', '7305911902', '', 'dsri4052@gmail.com', '1999-08-18', 22, '2', '2', 'Thirumalai', 'Carpenter', 45000.00, 2, 14000.00, 18000.00, 'Erukancherry', 'Erukancherry', '2206100014', '25', '2', 'upload_files/candidate_tracker/71826928597_TVP REPORT TAMIL.docx', NULL, '1', '2022-06-10', 0, '', '3', '59', '2022-06-13', 201600.00, '', NULL, '2023-09-11', '2', 'Selected for  Pandian Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-10 12:37:10', 60, '2022-06-14 06:10:06', 0, NULL, 1),
(8991, 'Deepa.S', '11', '9884024116', '', 'Deepasweetheart24@gmail.com', '2000-11-24', 21, '2', '2', 'Saraswathi.S', 'Home maker', 180000.00, 0, 15000.00, 17000.00, 'CHENNAI', 'CHENNAI', '2206100015', '1', '2', 'upload_files/candidate_tracker/15423558064_Resume_10_06_2022_02_58_34_PM.pdf', NULL, '1', '2022-06-10', 3, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have 4 months Exp in Recruitment,Distance up and down 36 kms,Not much comfort with TxxampC,Salary Exp min 15K TH ,if she come back let us try', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-10 03:23:09', 1, '2022-06-10 03:29:51', 0, NULL, 1),
(8992, 'prasad', '6', '8122757926', '', 'prasadsreedharan1995@gmail.com', '1995-02-11', 27, '2', '2', 'sreedharan', 'retired', 15000.00, 1, 18000.00, 20000.00, 'chennai', 'chennai', '2206100016', '2', '2', 'upload_files/candidate_tracker/60249333780_Prasad Resume.docx', NULL, '1', '2022-06-11', 0, '', '3', '59', '2022-06-20', 252100.00, '', '4', '2022-12-01', '1', 'Selected for RM Pandia Team with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-10 09:52:16', 60, '2022-06-17 01:03:24', 0, NULL, 1),
(8993, 'viknesh m', '5', '9345539008', '', 'vickymech13721@gmail.com', '1996-07-10', 25, '2', '2', 'manickam p', 'farmer', 10000.00, 3, 20000.00, 23000.00, 'chennai', 'chennai', '2206100017', '2', '2', 'upload_files/candidate_tracker/98140481395_Resume M. Viknesh 1.docx', NULL, '1', '2022-06-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 09:58:19', 1, '2022-06-10 10:01:09', 0, NULL, 1),
(8994, 'Manikandan', '4', '9944896365', '9597535627', 'maniarjun0302@gmail.com', '1999-06-30', 22, '1', '2', 'Archunan', 'Former', 100000.00, 1, 0.00, 16000.00, 'Kallakkurichi', 'Chennai', '2206110001', '', '1', 'upload_files/candidate_tracker/27977868291_CV_2022-05-27-120301.pdf', NULL, '1', '2022-06-11', 0, 'Gajalakshmi', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Sounds low,have exp in calling,internal reference from Gajalakshmi,check and let me know your inputsxquot\n', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-11 10:23:03', 1, '2022-06-11 10:51:20', 0, NULL, 1),
(8995, 'BARATHRAJ V', '11', '9791615014', '', 'barath.v2000@gmail.com', '2000-11-02', 21, '2', '2', 'DEEBALAKSHMI V', 'HOME MAKER', 15000.00, 1, 0.00, 15000.00, 'Udaiyarpalayam,thammapatty,salem(dt) 636113', 'Sowrastra nagar,choolaimedu,chennai 600094', '2206110002', '1', '1', 'upload_files/candidate_tracker/81010532821_Resume for HR.pdf', NULL, '1', '2022-06-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Fresher,no basic ideas about recrruitment,will not sustain in our Role for a long not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-11 11:22:39', 1, '2022-06-11 11:30:04', 0, NULL, 1),
(8996, 'Samuel', '4', '6381128402', '', 'samuelbaruch46@gmail.com', '2001-08-30', 20, '2', '2', 'Stanley Raj Kumar', 'Teacher', 25000.00, 1, 0.00, 15000.00, '483, arulappa 23rd street, g.k.m. colony', '483, arulappa 23rd street, g.k.m. colony', '2206110003', '1', '1', 'upload_files/candidate_tracker/99221033159_Samuel', NULL, '1', '2022-06-11', 0, '', '3', '59', '2022-07-01', 162000.00, '', '3', '2022-07-21', '1', 'Selected for Staff Role Patroniss', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '9', 'Document Link Shared', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-11 11:36:48', 60, '2022-06-28 01:30:04', 0, NULL, 1),
(8997, 'Arunkumar M', '4', '9655031461', '9500612010', 'Smanoarun007@gmail.com', '1997-06-02', 25, '2', '2', 'Manokaran S', 'Political', 35000.00, 2, 0.00, 12000.00, 'Soorakkottai, thanjavur', 'Soorakkottai, thanjavur', '2206110004', '1', '1', 'upload_files/candidate_tracker/57189434544_M.ARUNKUMARresume-1.pdf', NULL, '1', '2022-06-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-11 11:46:03', 85, '2022-06-11 12:16:16', 0, NULL, 1),
(8998, 'Polipogu jayarao', '5', '7338952436', '', 'Jayarao088@gmail.com', '1991-05-05', 31, '3', '2', 'Atcharao', 'Farmar', 200000.00, 2, 320000.00, 420000.00, 'Oguru kandukur praksam ap', 'Medavakkam', '2206110005', '', '2', 'upload_files/candidate_tracker/23415851555_jayarao Resume.docx', NULL, '1', '2022-06-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'very high Exp in Sales and looking only for the lead level positions,', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-06-11 01:16:38', 1, '2022-06-11 01:24:23', 0, NULL, 1),
(8999, '', '0', '6381350369', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206110006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-11 02:17:44', 0, NULL, 0, NULL, 1),
(9000, 'Sarathkumar', '11', '6380265646', '', 'ssarathkumar826@gmail.com', '1997-12-08', 24, '2', '2', 'Lavanya', 'Government Employee', 50000.00, 1, 15000.00, 20000.00, 'Tiruttani', 'Oragadam', '2206110007', '1', '2', 'upload_files/candidate_tracker/6292495441_SARATH HR 22.pdf', NULL, '1', '2022-06-11', 30, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp as generalist applied for recruiter,Min Salary Exp is 18K,30 days notice', '6', '1', '', '1', '1', '', '2', '2022-06-30', '3', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-11 03:38:59', 85, '2022-06-11 03:55:56', 0, NULL, 1),
(9001, '', '0', '8610937064', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-11 06:52:20', 0, NULL, 0, NULL, 1),
(9002, 'Vignesh V', '4', '9677080429', '6369144535', 'vv838728@gmail.com', '2001-12-28', 20, '3', '2', 'Venugopal A', 'Cooli', 12000.00, 2, 0.00, 11000.00, 'Avadi', 'Avadi', '2206120001', '', '1', 'upload_files/candidate_tracker/92217984126_vicky.pdf', NULL, '1', '2022-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not Sustain and handle our pressure, too long distance and having health issue too', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-12 12:34:35', 1, '2022-06-12 02:09:44', 0, NULL, 1),
(9003, 'gokul', '11', '6369244820', '', 'gokultamil21@gmail.com', '1995-11-13', 26, '2', '2', 'tamil', 'accounting', 14000.00, 1, 17000.00, 19000.00, 'chennai', 'chennai', '2206130001', '2', '2', 'upload_files/candidate_tracker/49007963483__Template_1654672326223.pdf', NULL, '1', '2022-06-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good, Can give a try for HR Recruiter Profile, candidatexquots exp is high, need to finalise ', '6', '1', '0', '1', '1', '0', '2', '2022-06-17', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-13 10:18:07', 1, '2022-06-13 10:22:20', 0, NULL, 1),
(9004, 'Tamilarasu', '6', '8939757984', '8610537503', 'tamilsundari1999@gmail.com', '1999-10-18', 22, '2', '2', 'Sundari A', 'Employed', 30000.00, 1, 15500.00, 23000.00, 'No 2 Reddy street mudichur Road', 'Chennai', '2206130002', '1', '2', 'upload_files/candidate_tracker/65936782432_Tamilarasu A_MOB200004750.pdf', NULL, '2', '2022-06-13', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-13 11:00:29', 85, '2022-06-14 06:02:22', 0, NULL, 1),
(9005, 'Mohankumar', '25', '8838116379', '9790865862', 'santhidme1971@gmail.com', '1998-06-29', 23, '2', '2', 'Santhiappan', 'Supervisor', 75000.00, 1, 24000.00, 28000.00, 'Selaiyur chennai', 'Selaiyur chennai', '2206130003', '1', '2', 'upload_files/candidate_tracker/20500868674_mohan resume.pdf', NULL, '1', '2022-06-13', 7, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not selcted', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-13 11:03:21', 60, '2022-06-13 07:04:33', 0, NULL, 1),
(9006, 'VIJAYA KUMAR.R', '4', '9940619572', '', 'vijayrcipet@gmail.com', '1989-08-05', 32, '2', '2', 'N.Ramu', 'Farmer', 10000.00, 2, 15000.00, 23000.00, 'Kallakurichi district', 'Chennai', '2206130004', '1', '2', 'upload_files/candidate_tracker/65493238222_CV_2022052910265747.pdf', NULL, '1', '2022-06-13', 15, '', '1', '14', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-13 11:14:26', 1, '2022-06-13 01:39:11', 0, NULL, 1),
(9007, 'Amina majid', '4', '6385418398', '', 'amisaf003@gmail.com', '2004-01-05', 18, '4', '2', 'Salma majid', 'House wife', 10000.00, 0, 0.00, 15000.00, 'Nagore', 'Nagore', '2206130005', '', '1', 'upload_files/candidate_tracker/15381977040_amina_resume_1.pdf', NULL, '3', '2022-06-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-13 11:28:11', 1, '2022-06-13 11:33:36', 0, NULL, 1),
(9008, 'Venkatesh', '4', '6374465447', '', 'manitanjaore49@gmai.comm', '1994-01-26', 28, '4', '2', 'srivasan', 'late', 10000.00, 0, 14000.00, 13000.00, 'thanjavur', 'thanjavur', '2206130006', '', '2', 'upload_files/candidate_tracker/43042741896_CV202110040522161.pdf', NULL, '1', '2022-06-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not reposding the calls properly seems not interested in the position\n', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-13 12:47:34', 60, '2022-06-15 12:21:37', 0, NULL, 1),
(9009, 'Loganathan E K', '4', '8610780925', '8124798620', 'loganathankesavan3@gmail.com', '2000-06-01', 22, '3', '2', 'Kesavan E K', 'Weaver', 15000.00, 1, 0.00, 15000.00, '121, silambupalayam street ,Podaturpet.', 'Thiruttani', '2206130007', '', '1', 'upload_files/candidate_tracker/98161626823_LOGANATHAN E K.pdf', NULL, '1', '2022-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non Voice PRocess,no Communication,not suitabe', '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-13 12:48:32', 1, '2022-06-13 12:55:17', 0, NULL, 1),
(9010, 'n.vaishnavi', '4', '8688181202', '', 'vaishnaviroyal1234@gmail.com', '2001-04-23', 21, '2', '2', 'nuka dhanamjayalu', 'former', 50000.00, 0, 0.00, 16000.00, 'chittoor', 'Bangalore', '2206130008', '24', '1', 'upload_files/candidate_tracker/7091202238_Resume (1).pdf', NULL, '1', '2022-06-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-13 01:18:52', 1, '2022-06-13 01:40:07', 0, NULL, 1),
(9011, '', '0', '9740197093', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206130009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-13 01:36:33', 0, NULL, 0, NULL, 1),
(9012, '', '0', '9940229980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-13 04:22:36', 0, NULL, 0, NULL, 1),
(9013, 'sathveena a', '11', '9442470124', '6381654009', 'sathveenaarunaraj@gmail.com', '1998-10-21', 23, '2', '2', 'arunaraj p', 'business', 50000.00, 1, 16000.00, 25000.00, 'trichy', 'trichy', '2206130011', '1', '2', 'upload_files/candidate_tracker/66435097421_Sathveena.A Resume..docx', NULL, '3', '2022-06-14', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is ok, have exp in recruitment for 9 months. Currently working and looking for salary growth, Min exp is 23K and not comfortable to work less than.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-13 04:40:25', 85, '2022-06-14 10:08:57', 0, NULL, 1),
(9014, 'Santhanakrishnan S', '11', '6379452154', '8883521232', 'sankrishsmileonce@gmail.com', '2000-08-17', 21, '2', '2', 'Shanmugam K', 'Agriculture farming', 200000.00, 2, 0.00, 18000.00, 'Neyveli', 'Chennai', '2206130012', '1', '1', 'upload_files/candidate_tracker/71625065445_SAN KRISH _AWSDevOps.pdf', NULL, '2', '2022-06-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok, candidate looking for IT recruitment, also not comfortable with TxxampC being a fresher, he is also clear with the thoughts that will look for other opportunities in a short span.will not sustain and not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-13 05:16:19', 85, '2022-06-14 10:12:12', 0, NULL, 1),
(9015, 'Seenivasan', '4', '9514581020', '9994889538', 'SEenuvas810prime@gmail.com', '2000-10-08', 21, '1', '2', 'Shanmugam', 'Warp Reading', 10000.00, 2, 0.00, 15000.00, 'Salem', 'Kodambakkam', '2206130013', '', '1', 'upload_files/candidate_tracker/56638088923_Resume.pdf', NULL, '1', '2022-06-14', 0, '00001', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,seems slow 5050 profile,need to open a lot kindly check and let me know your inputs', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-13 05:53:20', 1, '2022-06-13 06:01:03', 0, NULL, 1),
(9016, 'indu', '4', '7305754744', '', 'shine306630@gmail.com', '1990-12-02', 31, '2', '1', 'sundarajan', 'tailor', 20000.00, 1, 0.00, 14000.00, 'chennai', 'chennai', '2206130014', '2', '1', 'upload_files/candidate_tracker/84704799541_IMG_20220611_0002.pdf', NULL, '1', '2022-06-14', 0, '', '3', '59', '2022-06-20', 144000.00, '', '2', '1970-01-01', '2', 'Selected for B2B in  Consultant Role', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-13 07:52:20', 60, '2022-06-26 10:34:03', 0, NULL, 1),
(9017, 'shafeek ahamed', '4', '6381427110', '', 'shafeekhussain1811@gmail.com', '2000-11-18', 21, '2', '2', 'jahir hussain', 'farmer', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2206130015', '2', '1', 'upload_files/candidate_tracker/21416316628_SHAFEEK AHAMED RESUME.pdf', NULL, '1', '2022-06-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-13 07:55:45', 1, '2022-06-13 07:57:59', 0, NULL, 1),
(9018, '', '0', '9840406408', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-14 09:38:25', 0, NULL, 0, NULL, 1),
(9019, '', '0', '6369538436', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206140002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-14 09:47:27', 0, NULL, 0, NULL, 1),
(9020, 'Apitha N', '4', '6369338844', '', 'apitha2001@gmail.com', '2001-06-19', 20, '2', '2', 'Renuga', 'Business', 20000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2206140003', '1', '1', 'upload_files/candidate_tracker/10970191053_abi resume (1).pdf', NULL, '1', '2022-06-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-14 10:35:14', 1, '2022-06-14 10:38:26', 0, NULL, 1),
(9021, 'Banumathi G', '3', '6381103151', '8344221422', 'gbanumathi2001@gmail.com', '2001-05-04', 21, '2', '1', 'Gunasekaran', 'Cooking contractor', 30000.00, 1, 0.00, 20000.00, 'Erode', 'Erode', '2206140004', '1', '1', 'upload_files/candidate_tracker/36016460186_G.BANUMATHI -18CSR008(1).pdf', NULL, '1', '2022-06-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-14 10:37:48', 1, '2022-06-14 10:42:28', 0, NULL, 1),
(9022, 'rajendran m', '5', '9003803740', '9042952686', 'mrahul0398@gmail.com', '2007-06-13', 15, '1', '2', 'meenakshi sundharam', 'manager', 50000.00, 1, 20000.00, 23000.00, 'keelkatalai', 'keelkatalai', '2206140005', '', '2', 'upload_files/candidate_tracker/17582125221_GoBumpr Bridge.pdf', NULL, '1', '2022-06-14', 0, 'ca111', '3', '59', '2022-06-20', 254496.00, '', '4', '2023-02-06', '1', 'Selected for B2B in PT only, Given high pay for B2B,should utilise the candidate for Sales Appointment  too', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-06-14 11:00:35', 60, '2022-06-26 10:36:08', 0, NULL, 1),
(9023, 'mailim sarfraraz ahmed', '5', '7829850198', '', 'malimsarfaraz316@gmail.com', '1993-07-06', 28, '2', '2', 'malim nisar ahmed', 'pharmacit', 20000.00, 2, 23.00, 25.00, 'j.c nagar munireddy palya', 'j.c nagar munireddy palya', '2206140006', '24', '2', 'upload_files/candidate_tracker/33022986785_Malim', NULL, '1', '2022-06-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'discussed and shared the salary details not responding to the calls after that', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-14 11:16:30', 60, '2022-06-14 05:02:17', 0, NULL, 1),
(9024, 'Inbarasan K', '16', '9952100768', '', 'Inbamba1999@gmail.com', '1999-07-17', 22, '2', '2', 'P. Kumar', 'Labor', 15000.00, 2, 14000.00, 20000.00, 'Salem', 'Salem', '2206140007', '1', '2', 'upload_files/candidate_tracker/10745035065_Resume K.INBARASAN.pdf', NULL, '2', '2022-06-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, no sustainability 1yr 2 companies, not in a stable position worked as HR for 6 months, Sales 7 months now appears for the backend positions, not comfortable much with TxxampC, also his expectation is high min 18K focusing on the relocation.Will not sustain and run for a long.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-14 11:19:07', 85, '2022-06-14 11:35:05', 0, NULL, 1),
(9025, 'K. Gowtham', '31', '9942350689', '', 'gowthaman1004@gmail.com', '2007-06-14', 0, '3', '2', 'Kumar', 'Farmer', 20000.00, 1, 0.00, 10000.00, 'Erode', 'Chennai', '2206140008', '', '1', 'upload_files/candidate_tracker/7565432157_Gowtham1.pdf', NULL, '1', '2022-06-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have interest to learn,2nd round interviewed by Kaviya, Candidate no basics in Skills if he comes back after a week lets try', '2', '2', '0', '1', '1', '0', '2', '2022-06-21', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 11:25:09', 1, '2022-06-14 11:28:41', 0, NULL, 1),
(9026, 'Rawally c H', '11', '8428880801', '', 'rawallychevuri5@gmail.com', '1998-10-05', 23, '2', '2', 'David C H', 'Private employee', 300000.00, 1, 14000.00, 18000.00, 'Veppemapattu', 'Veppemapattu', '2206140009', '1', '2', 'upload_files/candidate_tracker/55943561293_Rawallychevuri Resume (1).pdf', NULL, '1', '2022-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too lon distance from Tiruvallur, not ready to relocate, Fresher for Recruitment, Not ok with TxxampC, Not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-14 03:25:19', 1, '2022-06-14 03:29:22', 0, NULL, 1),
(9027, 'Mariya Pravintha.A', '11', '6382591149', '', 'mariyapravintha27@gmail.com', '2000-02-27', 22, '2', '2', 'Hy', 'Hr', 25000.00, 1, 0.00, 1500018000.00, '119,Sagaya Nagar Padalam viz, Chengalpattu', 'Chengalpattu', '2206140010', '1', '1', 'upload_files/candidate_tracker/46811832109_Updated CV Mariya Pravintha.A.pdf', NULL, '2', '2022-06-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-14 04:22:16', 85, '2022-06-14 04:58:09', 0, NULL, 1),
(9028, 'Arulmurugan', '6', '9942843150', '9585358095', 'arulm0012@gmail.com', '1996-10-28', 25, '2', '2', 'Palanisamy', 'Farmer', 15000.00, 0, 0.00, 13000.00, 'Komarapalayam', 'Komarapalayam', '2206140011', '1', '1', 'upload_files/candidate_tracker/98202558147_Arul. resume.docx', NULL, '1', '2022-06-15', 0, '', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'he is only interested in non voice process only.. and not suitable for our profile..', '5', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-14 04:34:16', 1, '2022-06-14 04:38:38', 0, NULL, 1),
(9029, 'S.Bhuvaneshwari', '5', '9345380996', '', 'Bhuvana.180407@gmail.com', '1989-07-11', 32, '2', '1', 'Prabhu k', 'IT', 500000.00, 1, 450000.00, 500000.00, 'Chennai', 'Chennai', '2206140012', '25', '2', 'upload_files/candidate_tracker/21881701110_Bhuvaneshwari.pdf', NULL, '1', '2022-06-14', 0, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Know this Candidate Not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-14 04:56:39', 60, '2022-06-14 06:11:18', 0, NULL, 1),
(9030, '', '0', '6385139146', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206140013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-14 05:15:13', 0, NULL, 0, NULL, 1),
(9031, '', '0', '6374601992', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206140014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-14 06:50:46', 0, NULL, 0, NULL, 1),
(9032, 'vignesh s', '4', '9698980469', '', 'vigneshkarthik325@gmail.com', '1999-06-13', 23, '2', '2', 'shanmgasundram', 'former', 20000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2206140015', '2', '2', 'upload_files/candidate_tracker/57068889804_VICKY 2021 RESUME.pdf', NULL, '1', '2022-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 08:50:14', 1, '2022-06-14 08:52:45', 0, NULL, 1),
(9033, 'joice p', '4', '7401047342', '', 'joicejohn92@gmail.com', '1992-08-12', 29, '2', '1', 'karthick', 'supervisor', 20000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2206140016', '2', '2', 'upload_files/candidate_tracker/46705732396_Joice. J (1).pdf', NULL, '1', '2022-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 09:01:57', 1, '2022-06-14 09:03:53', 0, NULL, 1),
(9034, 'arun kumar n', '4', '6383756419', '', 'arunaustin308@gmail.com', '2000-03-11', 22, '2', '2', 'neelakandan', 'electrician', 12000.00, 0, 15000.00, 16000.00, 'chennai', 'chennai', '2206140017', '2', '2', 'upload_files/candidate_tracker/71405092334_WhatsApp Image 2022-06-14 at 9.27.06 AM.pdf', NULL, '1', '2022-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 09:07:56', 1, '2022-06-14 09:09:56', 0, NULL, 1),
(9035, 'k. mohana', '6', '6382234763', '', 'ramcolrr@gmail.com', '1994-06-16', 28, '2', '1', 'peryasami', 'cooli', 20000.00, 0, 0.00, 12000.00, 'edappadi', 'edappadi', '2206140018', '1', '2', 'upload_files/candidate_tracker/19325780464_WhatsApp Image 2022-07-19 at 1.41.37 PM.pdf', NULL, '1', '2022-07-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability doubt.. 5yrs gap in last job.. married also so not suit', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-14 09:11:12', 85, '2022-07-19 02:15:51', 0, NULL, 1),
(9036, 'nivetha', '11', '7904879166', '', 'nivethaparthi007@gmail.com', '1998-10-30', 23, '2', '1', 'parthiban', 'supervisor', 19000.00, 1, 14000.00, 16000.00, 'chennai', 'chennai', '2206140019', '2', '2', 'upload_files/candidate_tracker/51154330749_NIVE PARTHI 1.docx', NULL, '1', '2022-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 09:13:28', 1, '2022-06-14 09:15:22', 0, NULL, 1),
(9037, 'aravind kumar', '4', '8682942779', '', 'aravindkila@gmail.com', '1999-10-09', 22, '2', '2', 'annadurai', 'catering', 20000.00, 1, 11000.00, 11000.00, 'chennai', 'chennai', '2206140020', '2', '2', 'upload_files/candidate_tracker/4471809074_Aravindkumar - Resume updated (1).pdf', NULL, '1', '2022-06-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Our Roles, Will not sustain ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 09:52:17', 1, '2022-06-14 09:54:26', 0, NULL, 1),
(9038, 'Manoj', '4', '7502706524', '', 'manojsatz@gmail.com', '1992-07-03', 29, '3', '1', 'Sathiyaseelan', 'BE cse', 25000.00, 1, 25000.00, 30000.00, 'Erode', 'Erode', '2206140021', '', '2', 'upload_files/candidate_tracker/37526340956_Manoj Resume (1)_220502_225139 (1).pdf', NULL, '2', '2022-06-15', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 11:37:53', 1, '2022-06-14 11:41:36', 0, NULL, 1),
(9039, 'Nazish jamal', '4', '9600495972', '7358862275', 'nazujamal333@gmail.com', '1996-12-26', 25, '2', '1', 'Thahira jamal', 'Sales', 20000.00, 1, 21000.00, 17000.00, 'Papanasam', 'Rajagiri', '2206150001', '1', '2', 'upload_files/candidate_tracker/53788140419_NAZISH JAMAL .J - 2022-1.docx', NULL, '1', '2022-06-15', 1, '', '3', '59', '2022-06-16', 168000.00, '', '3', '2022-07-13', '2', 'Selected fr Thanjavur Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-15 10:03:51', 60, '2022-06-26 10:40:21', 0, NULL, 1),
(9040, 'SUDHEESH. A.M', '5', '9745790225', '', 'SUDHIGTS94@GMAIL.COM', '1994-06-26', 27, '2', '2', 'MURUGAN AS', 'SELF EMPLOYER', 36000.00, 0, 0.00, 15000.00, 'KOTTAKKAL POST IRINGAL', 'KOTTAKKAL POST IRINGAL', '2206150002', '1', '1', 'upload_files/candidate_tracker/67551442162_2022 new.docx', NULL, '1', '2022-06-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not ready to take calls ,not comfortable in targets,not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-15 11:13:13', 85, '2022-06-15 11:23:39', 0, NULL, 1),
(9041, 'amrutha v', '5', '9148986953', '', 'amruthavarshi1993@gmail.com', '1993-04-12', 29, '2', '2', 'venkateshreddy', 'farmer', 50000.00, 0, 20000.00, 25000.00, 'chitradurga', 'garvebhavipalya', '2206150003', '24', '2', 'upload_files/candidate_tracker/67465798010_New Amrutharesume(2).docx', NULL, '1', '2022-06-15', 0, '', '1', '39', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-15 12:37:24', 1, '2022-06-15 01:20:10', 0, NULL, 1),
(9042, 'Naveen kumar s p', '5', '9108841626', '9108941320', 'nk8137039@gmail.com', '2003-06-13', 19, '2', '2', 'Papanna s', 'Flower business', 15000.00, 1, 0.00, 15000.00, '1st main 4th cross jakkasandra kormangla 1st block', '1st main 4th cross jakkasandra kormangla', '2206150004', '24', '1', 'upload_files/candidate_tracker/27712811948_NEW RESUME-1.docx', NULL, '1', '2022-06-15', 0, '', '5', '39', NULL, 0.00, '', '0', NULL, '1', '12th only completed he is planing eve college in future.he  will not sustain', '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-15 12:42:17', 1, '2022-06-15 12:50:57', 0, NULL, 1),
(9043, 'Nikhil', '6', '7795291649', '9379441831', 'Nikhilnikhil79988@gmail.com', '2003-05-16', 19, '2', '2', 'Bojamma', 'House wife', 10000.00, 0, 0.00, 15000.00, '1st main 4th cross jakkasandra kormangla 1st block', '1st Main 4th Cross Jakkasandra Kormangla 1st Block', '2206150005', '24', '1', 'upload_files/candidate_tracker/26608122060_resume 15-Jun-2022 13-09-06.pdf', NULL, '1', '2022-06-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped - Candidate has blocked the number and not responding the calls\n', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-15 12:58:53', 60, '2022-06-15 03:43:54', 0, NULL, 1),
(9044, '', '0', '7603668654', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206150006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-15 03:06:41', 0, NULL, 0, NULL, 1),
(9045, 'Aravindhan', '11', '8489300210', '6381193199', 'aravindhanpalanivel99@gmail.com', '1999-03-19', 23, '2', '2', 'Palanivel', 'Former', 1.50, 2, 0.00, 30000.00, 'Poompuhar,Mayiladuthurai (D.t), 609105', 'Poompuhar, Mayiladuthurai (D.t), 609105', '2206150007', '1', '1', 'upload_files/candidate_tracker/27005661023_ARAVINDHAN P.pdf', NULL, '2', '2022-06-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-15 03:51:07', 1, '2022-06-15 04:18:21', 0, NULL, 1),
(9046, 'B. Ajay charan royal', '5', '6300259289', '8179999118', 'ajaycharan.hjva1998@gmail.com', '1998-09-10', 23, '1', '2', 'Harinath Raju', 'Business', 30000.00, 1, 0.00, 20000.00, 'Bangalore', 'Bangalore', '2206150008', '', '2', 'upload_files/candidate_tracker/78294743798_Ajay_Slice (1).docx', NULL, '1', '2022-06-15', 0, '377', '3', '59', '2022-06-17', 345696.00, '', '4', '2022-09-05', '2', 'Selected for Manivel Team with PF/PT', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-15 05:19:47', 60, '2022-06-16 04:02:53', 0, NULL, 1),
(9047, 'Sarathapriya C', '4', '9865978441', '', 'charu.raji24@gmail.com', '1997-12-24', 24, '2', '1', 'Chinnadurai M', 'Farmer', 3000.00, 2, 15000.00, 20000.00, 'Salem', 'Amanjikari', '2206160001', '1', '2', 'upload_files/candidate_tracker/86184812311_Sarathapriya.docx', NULL, '1', '2022-06-16', 0, '', '3', '59', '2022-06-23', 144000.00, '', '7', '1970-01-01', '2', 'Selected for Arumbakkam Elite Team in Staff Role PF/ESI/PT', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-16 08:51:43', 60, '2022-06-21 12:31:34', 0, NULL, 1),
(9048, 'raj kumar p', '4', '8220757446', '', 'rajvidyut555@gmail.com', '1997-02-26', 25, '2', '2', 'prabhakaran', 'ex army', 30000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2206160002', '2', '1', 'upload_files/candidate_tracker/17799241936_raj resume.docx', NULL, '1', '2022-06-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-16 09:14:57', 1, '2022-06-16 09:17:10', 0, NULL, 1),
(9049, 'Gangadharan J', '2', '7448744381', '', 'gangadharanstr@gmail.com', '1999-01-02', 23, '3', '2', 'Jeya seelan', 'Finance', 12000.00, 3, 0.00, 15000.00, 'Trichy', 'Chennai', '2206160003', '', '1', 'upload_files/candidate_tracker/79204179891_GANGADHARAN RESUME (2).pdf', NULL, '1', '2022-06-16', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have knowledge in Mern,but in dilemma for the joining,interviewed by Arun Kaviya Tamilmani Gokul', '2', '1', '0', '1', '1', '0', '2', '2022-07-01', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-16 10:02:39', 1, '2022-06-16 10:06:21', 0, NULL, 1),
(9050, 'Soniya', '4', '9080323301', '7550240345', 'asoniya0031@gmail.com', '2007-06-16', 0, '2', '2', 'Anand kumar', 'Welder', 12000.00, 1, 0.00, 18000.00, 'No 40 Muthu mariyamman st mgr Nagar', 'No 40 Muthu mariyamman st mgr Nagar', '2206160004', '1', '2', 'upload_files/candidate_tracker/19665888690_soniya1.pdf', NULL, '1', '2022-06-16', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok have exp in Telecalling Can give a try kindly check and let me know your inputs', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-16 10:05:49', 85, '2022-06-16 10:28:13', 0, NULL, 1),
(9051, 'Punitha', '4', '9994574395', '', 'punitha170119@gmail.com', '1999-01-17', 23, '2', '2', 'Rengaraj', 'Farmer', 10000.00, 2, 0.00, 10000.00, '16, voc stress Nehru Nagar ,Ayyampet, Thanjavur', '16, voc stress Nehru Nagar ,Ayyampet ,Thanjavur', '2206160005', '1', '1', 'upload_files/candidate_tracker/62590750591_Punitha Resume.pdf', NULL, '1', '2022-06-16', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-16 10:12:29', 85, '2022-06-16 11:06:15', 0, NULL, 1),
(9052, 'Elanthalir', '4', '8807820110', '7339573184', 'ELANDHALIR805@gmail.com', '2000-05-08', 22, '2', '2', 'Kabilan', 'Farmer', 15000.00, 2, 0.00, 10000.00, 'Kabilan.4/622 muttu street Gunamangala budalur', 'Kabilan.4/622 Muttu Street Gunamangala', '2206160006', '1', '1', 'upload_files/candidate_tracker/49763081932_img835 (2).pdf', NULL, '1', '2022-06-16', 0, '', '3', '59', '2022-06-20', 132000.00, '', '', '2022-07-05', '2', 'Selected for Thanjavur Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-16 10:32:08', 60, '2022-06-26 10:40:08', 0, NULL, 1),
(9053, 'Swathi.R', '4', '8610963958', '9524016175', 'swathiraja458@gmail.com', '2001-06-30', 20, '1', '2', 'Raja.D', 'Tailor', 10000.00, 1, 18000.00, 20000.00, 'Chidambaram', 'Chidambaram', '2206160007', '', '2', 'upload_files/candidate_tracker/24883729909_Swathi Resume_compressed2.pdf', NULL, '1', '2022-07-05', 0, 'CA130', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-16 10:33:34', 1, '2022-06-16 11:03:05', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9054, 'Sridhar r', '4', '7904788762', '', 'Sriags2013@gmail.com', '1996-05-30', 26, '2', '2', 'Raj', 'Business', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2206160008', '2', '1', 'upload_files/candidate_tracker/24570124823_Sridhar....Resume (3)-converted.pdf', NULL, '1', '2022-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Prefers to work in non voice but no communication as we expected', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-16 11:29:13', 1, '2022-06-16 11:31:05', 0, NULL, 1),
(9055, 'Alice Diana', '23', '9566134424', '9092395959', 'ar.alice1610diana@gmail.con', '2007-06-16', 0, '2', '2', 'latha dwa', 'architectute', 25000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2206160009', '1', '1', 'upload_files/candidate_tracker/64402860545_Resume -Alice Diana -2022.pdf', NULL, '1', '2022-06-16', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate did not turn up after giving task\n', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-16 12:11:29', 1, '2022-06-16 12:15:03', 0, NULL, 1),
(9056, '', '0', '9566134423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206160010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-16 12:20:07', 0, NULL, 0, NULL, 1),
(9057, 'balachandran r', '4', '8056274448', '', 'bala007.1997@gmail.com', '1997-06-22', 24, '2', '2', 'ravi', 'farmer', 15000.00, 2, 0.00, 14000.00, 'chennai', 'chennai', '2206160011', '2', '1', 'upload_files/candidate_tracker/80453726131_RESUME Balachandran.docx', NULL, '1', '2022-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Frequent job changes no stable with the positions,will not sustain and handle the sales pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-16 02:28:24', 1, '2022-06-16 02:39:36', 0, NULL, 1),
(9058, '', '0', '9186416816', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206170001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-17 08:34:37', 0, NULL, 0, NULL, 1),
(9059, 'Bharathi H k', '25', '8431063315', '', 'Bharathigowda60@gmail.com', '1999-12-29', 22, '1', '2', 'Shankaegowda', 'Farmer', 30000.00, 1, 0.00, 15000.00, 'Ballari', 'gp palya', '2206170002', '', '1', 'upload_files/candidate_tracker/68080083147_bharathi resuma.docx', NULL, '1', '2022-06-17', 0, '377', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interested in the position\n', '8', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-17 09:51:18', 1, '2022-06-17 09:55:26', 0, NULL, 1),
(9060, 'Keerthika N', '22', '9176416816', '9360983675', 'keeki52000@gmail.com', '2000-11-05', 22, '2', '2', 'Malarvizhi N', 'House keeping', 35000.00, 1, 18000.00, 20000.00, 'Teynampet', 'Teynampet', '2206170003', '1', '2', 'upload_files/candidate_tracker/79881142661_Resume_@Keerthika N .pdf', NULL, '1', '2023-03-31', 6, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-17 10:17:51', 85, '2023-03-31 07:08:52', 0, NULL, 1),
(9061, 'N.keerthika', '16', '9176416818', '9176416816', 'Keeki52000@gmail.com', '2000-11-05', 21, '2', '2', 'S.nithyanadhan', 'Watchman', 20000.00, 1, 16000.00, 18000.00, 'Teynampet', 'Teynampet', '2206170004', '1', '2', 'upload_files/candidate_tracker/33290603261_20220607_122513.pdf', NULL, '1', '2022-06-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication no preferred speaking only in tamil,have exp using excel but not much strong,2nd round interviewed by herash and rejected\n', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-17 10:28:29', 60, '2022-06-17 03:18:01', 0, NULL, 1),
(9062, 'Vinoth.D', '4', '9659654316', '9500964190', 'Vinothdharmaraj.p@gmail.com', '1995-12-03', 26, '1', '2', 'Dharmaraj.p', 'Agriculture', 12000.00, 1, 26000.00, 16000.00, 'Thanjavur', 'Thanjavur', '2206170005', '', '2', 'upload_files/candidate_tracker/65595975428_VINOTHRESUME.pdf', NULL, '1', '2022-06-17', 10, 'CI121', '3', '59', '2022-06-20', 176844.00, '', '', '2022-06-27', '1', 'Selected for Thanjavur - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-06-17 10:32:48', 60, '2022-06-26 10:37:59', 0, NULL, 1),
(9063, 'MOHAMMED HUSSAIN', '4', '9342258988', '', 'mohammedbabu1699@gmail.com', '1999-06-01', 23, '2', '2', 'Ibrahim', 'cooli', 10000.00, 1, 0.00, 13000.00, 'salem', 'salem', '2206170006', '1', '1', 'upload_files/candidate_tracker/46595287301_NaukriMohammedHussain0y0m.pdf', NULL, '1', '2022-06-17', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Rejected.. sustainability doubt so we reject also Interviewed Ramesh sir ', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-17 11:27:31', 85, '2022-06-17 05:34:46', 0, NULL, 1),
(9064, 'thangaponnu p', '6', '9384522112', '', 'goldriyaa.23@gmail.com', '1995-04-08', 27, '2', '2', 'palanisamy', 'coolie', 15000.00, 0, 0.00, 13000.00, 'seerappalli', 'seerappalli', '2206170007', '1', '2', 'upload_files/candidate_tracker/45416193729_Thangaponnu resume.pdf', NULL, '1', '2022-06-17', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate 2hrs travel time.. so she will be discuss with family and update so we rejected..', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-17 12:53:14', 60, '2022-06-17 05:33:52', 0, NULL, 1),
(9065, 'g.ramya', '6', '6379659401', '9597772361', 'madhan6101996@gmail.com', '1998-06-24', 23, '1', '1', 'm.madhanraj', 'driver', 18000.00, 0, 13000.00, 15000.00, 'odapalli', 'odapalli', '2206170008', '', '2', 'upload_files/candidate_tracker/93598714686_vfnw7-r1n8k.pdf', NULL, '1', '2022-06-17', 0, '1310', '3', '59', '2022-06-20', 156000.00, '', '', '2022-06-22', '2', 'Selected for Erode - Suthagar Team Consultant Role', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-06-17 01:39:43', 60, '2022-06-18 03:53:20', 0, NULL, 1),
(9066, 'Likhith Gowda D P', '5', '7760723925', '9738643525', 'devillikith@gmail.com', '2004-07-19', 17, '2', '2', 'Parents', 'Job', 45000.00, 1, 0.00, 20000.00, 'Dalimba sathanur Kanakapura ramanagar', 'Yalechenahalli , 2nd main road Krishna devraya', '2206170009', '24', '1', 'upload_files/candidate_tracker/53114141054_16554591266523544564987715832062.pdf', NULL, '1', '2022-06-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-17 03:03:47', 1, '2022-06-17 03:16:09', 0, NULL, 1),
(9067, '', '0', '9884890304', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206170010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-17 03:38:44', 0, NULL, 0, NULL, 1),
(9068, 'Gokul S', '6', '7539909536', '', 'gokulsubramani75@gmail.com', '2001-04-01', 21, '4', '2', 'Subramani R', 'Building contractor', 15000.00, 1, 0.00, 15000.00, '5/291 punnam(po) bhavani (tk), erode -638312', '5/291 Punnam(Po) Bhavani (Tk), Erode -638312', '2206180001', '', '1', 'upload_files/candidate_tracker/63177431905_Gokul S - Resume.pdf', NULL, '1', '2022-06-18', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Observations skills is low.... Ramesh sir also Interviewed ', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-18 10:08:55', 60, '2022-06-18 03:36:48', 0, NULL, 1),
(9069, 'P.kirthiga', '6', '9894416078', '', 'Kirthigapandi@gmail.com', '2001-10-08', 20, '4', '1', 'M.sabayanathan', 'Supervisor appolo hospital', 20000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai thousend light', '2206180002', '', '1', 'upload_files/candidate_tracker/57090764787_DocScanner Apr 29, 2022 5-27 PM.pdf', NULL, '1', '2022-06-18', 0, '', '5', '88', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for role', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-18 10:38:41', 1, '2022-06-18 10:47:52', 0, NULL, 1),
(9070, 'aksaya keerthi', '6', '6385247654', '', 'akshaikeerthi2@gmail.com', '2000-08-20', 21, '2', '2', 'subramaniyan', 'business', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2206180003', '2', '1', 'upload_files/candidate_tracker/87598204968_null.pdf', NULL, '1', '2022-06-18', 0, '', '3', '59', '2022-06-24', 185000.00, '', '3', '2022-06-27', '2', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-18 10:50:30', 60, '2022-06-21 05:18:21', 0, NULL, 1),
(9071, 'SNEKA.R', '4', '7397537534', '', 'Www.rsneka74@gmail.com', '2002-07-25', 19, '2', '2', 'Rengasubu', 'Farmer', 10.00, 3, 0.00, 10000.00, 'Trichy', 'Trichy', '2206180004', '1', '1', 'upload_files/candidate_tracker/25269648701_sneha resume.docx', NULL, '1', '2022-06-18', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-18 11:14:50', 85, '2022-06-18 11:38:11', 0, NULL, 1),
(9072, 'Chithra.s', '4', '7305554836', '9840430248', 'ppragathi487@gmail.com', '1998-05-19', 24, '2', '2', 'Srinivasan', 'Security', 40000.00, 2, 15000.00, 15000.00, 'Royapuram', 'Royapuram', '2206180005', '1', '2', 'upload_files/candidate_tracker/70630426408_S.Chitra resume 2.doc', NULL, '1', '2022-06-18', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not comfort with timings have exp in telecalling but particularly looking for Timings also not ready to handle the pressure Target', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-18 11:41:40', 1, '2022-06-18 11:50:34', 0, NULL, 1),
(9073, 'tamil selvi', '6', '6379362749', '6381735379', 'Tamilselvi.m3792@gmail.com', '2001-07-27', 20, '2', '2', 'P.muthu raj', 'Labour', 84000.00, 1, 0.00, 12000.00, 'Perumal malai', 'Bhavani', '2206180006', '1', '1', 'upload_files/candidate_tracker/8858005177_CamScanner 06-18-2022 13.28.pdf', NULL, '1', '2022-06-18', 0, '', '3', '59', '2022-06-20', 144000.00, '', '3', '2022-06-22', '2', 'Selected fr consultant Role - Suthagar Team', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-18 01:01:02', 60, '2022-06-26 10:41:17', 0, NULL, 1),
(9074, 'Priyanka.R', '6', '6383998678', '8675226882', 'priyankabcompa24@gmail.com', '2000-04-14', 22, '2', '2', 'Ravichandran.R', 'Cooli', 80000.00, 1, 0.00, 12000.00, 'Sivagiri', 'Sivagiri', '2206180007', '1', '1', 'upload_files/candidate_tracker/38785292770_Resume.docx', NULL, '1', '2022-06-18', 0, '', '3', '59', '2022-06-20', 144000.00, '', '3', '2022-07-29', '2', 'Selected Fr Consultant Role - Suthagar Team', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-18 01:12:29', 60, '2022-06-26 10:40:53', 0, NULL, 1),
(9075, 'PRIYANKA S.', '3', '9566658835', '6382828689', 'priyankasivakumar3698@gmail.com', '1998-06-03', 24, '2', '2', 'SIVAKUMAR', 'Business', 20000.00, 1, 0.00, 200000.00, 'Tirupur', 'T. Nagar, Chennai', '2206180008', '1', '1', 'upload_files/candidate_tracker/85068315939_PRIYANKA S .pdf', NULL, '1', '2022-06-18', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Applied for REactNative,we checked for Flutter Long run doubts she is comfortable for 1.5 yrs post that may get marry and move on,if she come back with TxxampC let us try', '2', '1', '0', '1', '1', '0', '2', '2022-06-24', '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-18 01:38:20', 1, '2022-06-18 02:08:08', 0, NULL, 1),
(9076, 'Soumya', '5', '6383513885', '', 'soumyakalanjoor@gmail.com', '1988-12-18', 33, '2', '1', 'Praveen Jacob', 'Salaried', 48000.00, 2, 0.00, 450000.00, 'Chennai', 'Chennai', '2206180009', '25', '2', 'upload_files/candidate_tracker/39718177614_Soumya resume updated .pdf', NULL, '1', '2022-06-20', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected For Mani team. need one Month time for Notice. Current CTC is 4L. Negotiate and do the needful', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-18 02:33:50', 60, '2022-06-20 03:39:10', 0, NULL, 1),
(9077, 'Treasa Rose B', '6', '9361614047', '', 'Treasababu237@gmail.com', '1999-08-22', 22, '1', '2', 'Babu - Sheeba', 'Textiles', 65000.00, 1, 10000.00, 15000.00, 'Erode', 'Erode', '2206200001', '', '2', 'upload_files/candidate_tracker/73749594648_Treasa Rose Resume.docx', NULL, '1', '2022-06-21', 0, 'P1303', '3', '59', '2022-06-22', 156000.00, '', '4', '2022-11-01', '2', 'Selected for RE Suthagar Erode - Consultant Role', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-06-20 10:08:42', 60, '2022-06-26 10:37:35', 0, NULL, 1),
(9078, 'S.amudha', '8', '8939235225', '7092444429', 's.amudha1998@gmail.com', '1998-09-10', 23, '2', '1', 'Jagan', 'Network engineer', 25000.00, 1, 12000.00, 16000.00, 'Triplicane', 'Triplicane', '2206200002', '1', '2', 'upload_files/candidate_tracker/85580948715_Amudha Resume,New-2022.pdf', NULL, '1', '2022-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communicatino Average from cAMS,repeated work much into nonvoice only,not suitable', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '4', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-20 11:05:13', 85, '2022-06-20 11:54:25', 0, NULL, 1),
(9079, 'Pandi priya', '4', '7695880936', '', 'pandipriiya635@gmail.com', '2000-03-10', 22, '2', '2', 'Balakrishanan', 'Late', 10000.00, 1, 0.00, 13000.00, 'Thirumulaivaiyl', 'Thirumulaivaiyl', '2206200003', '1', '1', 'upload_files/candidate_tracker/43614649699_Pandi Priya Resume (2).pdf', NULL, '1', '2022-06-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'no communication need to open a lot will not sustain not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-20 11:32:42', 1, '2022-06-20 11:58:33', 0, NULL, 1),
(9080, 'Janu M. S', '16', '9080649628', '9566183378', 'janums99@gmail.com', '1999-11-14', 22, '2', '2', 'M. G. Suresh', 'Painter', 15000.00, 1, 0.00, 15000.00, 'No. 1,main street P. P. Garden Aminjikarai', 'No. 1,Main Street P. P. Garden Aminjikarai', '2206200004', '1', '1', 'upload_files/candidate_tracker/83888036493_Janu m.s resume 4.pdf', NULL, '1', '2022-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communicaiton Ok,Fresher for MIS,Need to train a lot not comfort in TxxampC checked her written skill also not upto the mark as we expected', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-20 11:46:23', 85, '2022-06-20 11:54:43', 0, NULL, 1),
(9081, 'M.revathy', '4', '9790921665', '', 'Revathyragavan1994@gmail.com', '1994-11-03', 27, '2', '1', 'R.manivannan', 'Bike mechanic', 10000.00, 1, 10000.00, 15000.00, 'Poonamalli', 'Poonamalli', '2206200005', '1', '2', 'upload_files/candidate_tracker/80422853124_Adobe Scan Apr 26, 2022.pdf', NULL, '1', '2022-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped- too long distance, also she is prefers to work close to poonamalle.Not ready to join', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-20 11:49:45', 85, '2022-06-20 02:39:09', 0, NULL, 1),
(9082, '', '0', '6374005258', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206200006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-20 11:57:56', 0, NULL, 0, NULL, 1),
(9083, 'Vinodhini', '23', '7092828593', '9382110571', 'Vinovinodhini0515@gmail.com', '2001-05-15', 21, '2', '2', 'Venkatesh', 'Cine field', 20000.00, 1, 0.00, 20000.00, 'Chennai, Ashok nagar', 'Chennai, Ashok nagar', '2206200007', '1', '2', 'upload_files/candidate_tracker/44595367347_Resume Vinodhini.V.pdf', NULL, '1', '2022-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Appeared for Telecaller process,also not clear with the profile to go,will not sustain and not suitable left without completing the round', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-20 11:58:47', 85, '2022-06-20 12:24:47', 0, NULL, 1),
(9084, 'Reshma banu A', '23', '9360892447', '', 'reshmareshu1007@gmail.com', '2001-07-10', 20, '2', '2', 'Amanullah shariff', 'Tailor', 15000.00, 1, 0.00, 20000.00, 'CHENNAI TAMIL NADU', 'CHENNAI TAMIL NADU', '2206200008', '1', '1', 'upload_files/candidate_tracker/44051805701_Reshma Banu Resume.pdf', NULL, '1', '2022-06-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communicaiton ooooooook,no clear with the passion towards the job,if she comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-06-27', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-20 12:07:28', 85, '2022-06-20 12:24:34', 0, NULL, 1),
(9085, 'vignesh s', '2', '7548880026', '', 'vigneshsheakar@gmail.com', '1997-07-29', 24, '4', '2', 'sekar', 'business', 200000.00, 1, 0.00, 400000.00, 'Pondicherry', 'bangalore', '2206200009', '', '1', 'upload_files/candidate_tracker/2324703085_myresume.pdf', NULL, '1', '2022-06-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Knowledge in MERN,Spent around 47K and doing course not comfortable in TxxampC,Need some time to confirm his position,if he comes back let us see\n', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-20 12:13:36', 1, '2022-06-20 12:31:16', 0, NULL, 1),
(9086, 'Bharath p', '4', '9788974178', '', 'bharathdme1997@gmail.com', '1997-08-15', 24, '2', '2', 'Palanivel M', 'Former', 15000.00, 1, 0.00, 15000.00, 'Ulundurpet', 'Velachery', '2206200010', '1', '1', 'upload_files/candidate_tracker/84350751278_Bharath resume new 1.pdf', NULL, '3', '2022-06-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-20 04:32:46', 85, '2022-06-21 10:08:47', 0, NULL, 1),
(9087, 'Yamini', '4', '6383445245', '', 'Yaminiramya30@gmail.Com', '1999-05-30', 23, '2', '1', 'Nivas', 'Associate', 25000.00, 1, 210000.00, 360000.00, 'Veppampattu', 'Veppampattu', '2206200011', '1', '2', 'upload_files/candidate_tracker/77870094009_Yamini_Resume.pdf', NULL, '1', '2022-06-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-20 05:37:50', 85, '2022-06-28 06:07:58', 0, NULL, 1),
(9088, 'Lokesh G', '13', '7358723749', '7358823749', 'lokeshkrish432@gmail.com', '1999-09-01', 22, '2', '2', 'T Gopalakrishnan', 'Tinkering', 150000.00, 1, 0.00, 15000.00, '3/1 csi church Street jaya nagar porur chennai', '3/1 csi church Street jaya nagar porur chennai', '2206200012', '1', '1', 'upload_files/candidate_tracker/49861108301_Lokesh Resume-1.pdf', NULL, '1', '2022-06-21', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate have basic knowledge in HTML,CSS,JS,Can give a try ok with TxxampC,but not sure.2nd Round interviewed by Dinesh', '2', '1', '', '1', '1', '', '2', '2022-06-28', '2', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-06-20 07:19:45', 60, '2022-06-21 09:51:19', 0, NULL, 1),
(9089, 'Tharun', '4', '9940899626', '8098895007', 'tharuntharun007420@gmail.com', '2001-09-04', 20, '2', '2', 'Sundaramoorthi', 'Farmer', 40000.00, 2, 0.00, 15000.00, 'KARUMBAKKAM VILLAGE SEETANANCHER', 'KARUMBAKKAM VILLAGE SEETANANCHER', '2206210001', '1', '1', 'upload_files/candidate_tracker/53959244774_resume .pdf', NULL, '1', '2022-07-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-21 10:17:56', 85, '2022-07-01 03:20:29', 0, NULL, 1),
(9090, 'samuel', '4', '9789001927', '', 'samuvel782@gmail.com', '1996-08-22', 25, '2', '2', 'gnanaraj p', 'traders', 18000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2206210002', '2', '1', 'upload_files/candidate_tracker/47453261065_samuvel.docx', NULL, '1', '2022-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-21 10:38:47', 1, '2022-06-21 10:42:21', 0, NULL, 1),
(9091, 'goutham', '4', '9710944794', '', 'gouthamr213@gmail.com', '1996-09-09', 25, '2', '2', 'VENKATESAN', 'ironing', 15000.00, 1, 0.00, 150000.00, 'thiruvekadu', 'Thiruvekadu', '2206210003', '1', '1', 'upload_files/candidate_tracker/87113640871_goutham (1).docx', NULL, '1', '2022-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-21 10:59:47', 1, '2022-06-21 01:07:46', 0, NULL, 1),
(9092, 'A JEYANTHAN', '6', '7867078332', '', 'jeyanarullatha1801@gmail.com', '1998-12-18', 23, '1', '2', 'ARULANANDU', 'Teacher', 80000.00, 1, 12000.00, 15500.00, 'Mimisal, Pudukkottai', 'Saidapet', '2206210004', '', '2', 'upload_files/candidate_tracker/68604894642_JEYANTHAN. A.pdf', NULL, '1', '2022-06-21', 0, 'P1255', '3', '59', '2022-06-27', 192000.00, '', NULL, '2023-09-14', '1', 'Selected for Babu Team in PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-21 11:12:13', 60, '2022-06-25 09:56:20', 0, NULL, 1),
(9093, 'Muthuraman M', '4', '7200228954', '7904524177', 'dhonikingraman@gmail.com', '1995-04-18', 0, '2', '2', 'Valli ammal m', 'Cooli', 6000.00, 2, 0.00, 15000.00, '216,north Street, keela thonithurai, nellai627351.', 'Tirunelveli', '2206210005', '1', '1', 'upload_files/candidate_tracker/58458862500_M. Muthuraman.pdf', NULL, '3', '2022-06-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-21 02:57:07', 85, '2022-06-22 09:57:26', 0, NULL, 1),
(9094, 'M BHOOPATHI', '5', '9182863253', '9092807216', 'boopathy1803@gmail.com', '1995-03-18', 27, '2', '2', 'M SHANTHI', 'SALARIED', 60000.00, 2, 19600.00, 26000.00, '22/249, vathawada street, puttur', '5/15,anna street, korattur chennai 600080', '2206210006', '1', '2', 'upload_files/candidate_tracker/57747412286_MBHOOPATHI_2325362_OfferLetter_07PMB-2022-01-19-11-45-17-610.pdf', NULL, '1', '2022-06-24', 45, '', '3', '59', '2022-08-01', 321696.00, '', '5', '1970-01-01', '1', 'Selected for GK Sir Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-21 05:13:52', 60, '2022-06-30 12:14:26', 0, NULL, 1),
(9095, 'V vijay', '6', '9790563697', '8754946710', 'vijayatwork97@gmail.com', '1997-02-10', 25, '2', '2', 'T vinayagam', 'Former', 12000.00, 0, 14000.00, 15000.00, 'Chengalpattu', 'Mugapair', '2206210007', '1', '2', 'upload_files/candidate_tracker/83392931126_vijay resume.doc', NULL, '1', '2022-06-22', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Seems not much suits for the Role,5050 profile can give a try and analyse in 7 days', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-21 06:42:20', 60, '2022-06-22 07:28:15', 0, NULL, 1),
(9096, 'muniselvi g', '4', '9080179772', '', 'muniselvi0120@gmail.com', '2000-01-26', 22, '2', '2', 'ganesan', 'farmer', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2206220001', '2', '1', 'upload_files/candidate_tracker/65007228657_muniselvi.pdf', NULL, '1', '2022-06-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-22 08:29:29', 1, '2022-06-22 08:33:15', 0, NULL, 1),
(9097, 'lokesh kumar a', '4', '8778695659', '', 'lokeshkumarmaramuthan@gmail.com', '2002-02-18', 20, '2', '2', 'amuthan', 'farmer', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2206220002', '2', '1', 'upload_files/candidate_tracker/45940629175_lokesh.pdf', NULL, '1', '2022-06-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-22 08:36:24', 1, '2022-06-22 08:38:27', 0, NULL, 1),
(9098, 'Amulya prakash', '5', '9108017853', '7795556338', 'Amulyaprakash03@gmail.com', '1998-04-22', 24, '1', '2', 'Mariyamma', 'Housewife', 30000.00, 2, 16000.00, 18000.00, 'Kalenagaragara', 'Kalenagaragara', '2206220003', '', '2', 'upload_files/candidate_tracker/16410912898_IMG_20220622_100536.pdf', NULL, '1', '2022-06-22', 0, '55583', '3', '59', '2022-06-23', 216000.00, '', '2', '1970-01-01', '2', 'Selected for Muppudathy Team in consultant Role', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-06-22 09:56:40', 60, '2022-06-26 10:35:46', 0, NULL, 1),
(9099, 'Saranya', '28', '9361458586', '9659369054', 'Saranyasaranya788com7884@gmail.com', '1998-10-05', 23, '3', '2', 'Saravanan', 'Mechanical', 1.00, 2, 20000.00, 25000.00, 'Pudukkottai', 'Pudukkottai', '2206220004', '', '2', 'upload_files/candidate_tracker/72088928963_saranya new resume.pdf', NULL, '1', '2022-06-22', 8, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Syed abthali Reference,Not much interested to take Calls looking for non Voice no communication not suitable and will not sustain', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-22 11:29:22', 1, '2022-06-22 12:13:16', 0, NULL, 1),
(9100, 'nithya', '4', '8838934558', '', 'nithyasampath1997@gmail.com', '1997-07-16', 24, '3', '2', 'sampath', 'coole', 8000.00, 1, 13000.00, 15000.00, 'erode', 'erode', '2206220005', '', '2', 'upload_files/candidate_tracker/73718083117_nithya (1).pdf', NULL, '1', '2022-06-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-22 12:08:06', 1, '2022-06-22 12:22:43', 0, NULL, 1),
(9101, '', '0', '9791668384', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206220006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-22 12:47:50', 0, NULL, 0, NULL, 1),
(9102, 'Vetri vel', '13', '9025375179', '', 'Vetri2941@gmail.com', '2001-01-02', 21, '2', '2', 'Paunraj', 'Government employee', 28000.00, 2, 0.00, 15000.00, 'Kovilpatti', 'Kaarapakkam', '2206220007', '1', '1', 'upload_files/candidate_tracker/33685372304__Template_CoverLetter_1655644781680.pdf', NULL, '1', '2022-06-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have knowledge in IT skills,Rejected in the 2nd rount by LAtha not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-06-22 12:57:55', 1, '2022-06-22 01:15:17', 0, NULL, 1),
(9103, 'Madhuri GK', '11', '8056216082', '9344043806', 'Madhukrishnamoorthy05@gmail.com', '2000-07-05', 21, '2', '2', 'Krishna Moorthy', 'Photographer', 80000.00, 2, 14500.00, 16000.00, 'Triplicane', 'Triplicane', '2206220008', '1', '2', 'upload_files/candidate_tracker/23626226198_MADHU RESUME.docx', NULL, '1', '2022-06-22', 1, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', '2nd round selected by Gokul Can give her 12K TH candidate yet to give her confirmation', '6', '1', '0', '1', '1', '0', '2', '2022-06-24', '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-22 01:29:20', 1, '2022-06-22 01:43:16', 0, NULL, 1),
(9104, 'Achamma k', '11', '7358581039', '9791061645', 'Achammak99@gmail.com', '1999-01-08', 23, '2', '2', 'Dhanraj', 'Sanitary worker', 35000.00, 1, 14500.00, 16000.00, 'Triplicane', 'Triplicane', '2206220009', '1', '2', 'upload_files/candidate_tracker/65436557736_achu resume.docx.pdf', NULL, '1', '2022-06-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Recruitment,Salary Exp is high,Will ot sustain and not comffort in TxxampC', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-22 01:29:44', 1, '2022-06-22 01:34:36', 0, NULL, 1),
(9105, 'G jayantg', '25', '9390572346', '', 'Jayanthgarla@gmail.com', '1999-01-01', 23, '1', '2', 'G venkata krishnaiah', 'Finanace', 30000.00, 1, 18500.00, 20000.00, 'Banglore', 'Banglore', '2206220010', '', '2', 'upload_files/candidate_tracker/79107082296_jayanth.pdf', NULL, '1', '2022-06-22', 0, '377', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-22 02:15:33', 1, '2022-06-22 02:24:53', 0, NULL, 1),
(9106, 'Chandru M', '22', '9952959705', '', 'chandru20017@gmail.com', '2001-06-16', 21, '2', '2', 'Vijaya M', 'Self Employed', 30000.00, 1, 27500.00, 27500.00, 'Chennai', 'Chennai', '2206220011', '1', '2', 'upload_files/candidate_tracker/19419901218_Chandru.pdf', NULL, '1', '2022-06-22', 60, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for Digital,have 6 months in sms campaign current 27.5K,expected too high and rejected in the 2nd round by Reyaz', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-06-22 02:19:44', 60, '2022-06-22 04:48:08', 0, NULL, 1),
(9107, '', '0', '8142176166', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206220012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-22 02:37:53', 0, NULL, 0, NULL, 1),
(9108, 'Amarnath A', '6', '8940041160', '6374490800', 'amarnatharumugam68@gmail.com', '2007-06-22', 0, '2', '2', 'Arumugam', 'Ex crpf', 180000.00, 1, 10000.00, 180000.00, 'dharmapuri', 'dharmapuri', '2206220013', '1', '2', 'upload_files/candidate_tracker/38342566795_AMARNATH RESUME.pdf', NULL, '2', '2022-06-23', 5, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-22 02:56:53', 85, '2022-06-22 03:07:36', 0, NULL, 1),
(9109, 'Vaishnavi', '4', '9940161433', '', 'vaishusubramani1704@gmail.com', '2007-06-22', 0, '3', '2', 'Subramanian', 'Lorry driver', 40000.00, 1, 20000.00, 35000.00, 'redhills chennai 52', 'Redhills', '2206220014', '', '2', 'upload_files/candidate_tracker/12987771451_Vaishnavi resume.doc', NULL, '1', '2022-06-25', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-22 04:12:45', 1, '2022-06-22 04:15:58', 0, NULL, 1),
(9110, '', '0', '9025949227', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206220015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-22 04:29:44', 0, NULL, 0, NULL, 1),
(9111, 'aatiqa khatoon', '5', '7095615092', '', 'aatiquakhan28@gmail.com', '2000-07-18', 21, '3', '2', 'shaheen sultana', 'job', 15000.00, 2, 0.00, 20000.00, 'murad nagar Mehdipatnam', 'murad nagar mehdipatnam', '2206220016', '', '1', 'upload_files/candidate_tracker/15657209890_New resume 2022 (updated).docx', NULL, '1', '2022-06-22', 0, '', '1', '91', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-22 07:20:39', 60, '2022-06-28 01:23:15', 0, NULL, 1),
(9112, 'subhash raj m', '5', '9962676629', '9884111056', 'subhashraj2000@gmail.com', '2000-10-14', 21, '2', '2', 'kalai selvi', 'Computer typist', 40.00, 1, 25000.00, 30000.00, 'mahalakshmi flats west kodambakkam road', 'west mambalam chennai', '2206220017', '1', '2', 'upload_files/candidate_tracker/52941227564_Subhash Raj M, Resume.pdf', NULL, '1', '2022-06-23', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile have sales exp but not an insurance one,Pressure and Target handling doubts,can check for RM Profile do check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '2022-06-25', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-22 09:32:29', 85, '2022-06-24 09:45:08', 0, NULL, 1),
(9113, 'Nancy', '16', '9841982458', '7824026242', 'Jnancy305@gmail.com', '1999-05-30', 23, '2', '2', 'Jeevaraj', 'Business', 10000.00, 1, 10000.00, 15000.00, 'Chennai', 'Porur', '2206230001', '1', '2', 'upload_files/candidate_tracker/9966184936_Nancy_Resume-1.docx', NULL, '1', '2022-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ready to take calls,communicaiton Average,not suitable for our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-23 11:14:45', 85, '2022-06-24 09:46:43', 0, NULL, 1),
(9114, 'N.NIVETHA', '16', '9841765619', '9345853595', 'nivetha.nandhagopal@gmail.com', '1996-04-04', 26, '2', '2', 'Nandhagopal.p', 'self employ', 30000.00, 2, 18000.00, 25000.00, 'chennai', 'chennai', '2206230002', '1', '2', 'upload_files/candidate_tracker/84734172275_Resume_Nivetha N_Support executive-1.pdf', NULL, '1', '2022-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Backend,but not much strong in excel as we expected,writting skills is not upto the mark,long run  doubts,not ready to take calls', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-23 11:43:38', 85, '2022-06-24 09:45:56', 0, NULL, 1),
(9115, '', '0', '7339390503', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206230003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-23 01:51:44', 0, NULL, 0, NULL, 1),
(9116, 'Arfath ulla khan', '5', '9611762542', '7795261710', 'Arfathkhan023@gmail.com', '2007-06-22', 0, '1', '2', 'Sulaiman khan', 'Scarp marchent', 20000.00, 2, 0.00, 30000.00, 'Virat nagar', 'Virat nagar', '2206230004', '', '2', 'upload_files/candidate_tracker/98968633616_Shan_CV_converted_by_abcdpdf.pdf', NULL, '1', '2022-06-23', 0, '377', '1', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-23 02:12:09', 60, '2022-06-23 03:41:57', 0, NULL, 1),
(9117, 'Thirumalai.v', '6', '8667070719', '8610282109', 'Thirumalaimthiru183@gmail.com', '1998-12-16', 23, '2', '2', 'Amaravathy', 'Salaried', 60000.00, 0, 19500.00, 25000.00, 'Tiruvallur', 'Tiruvallur', '2206240001', '1', '2', 'upload_files/candidate_tracker/67929413026_thirumalai 21.06.2022.pdf', NULL, '1', '2022-06-24', 45, '', '3', '59', '2022-08-01', 309696.00, '', '5', '1970-01-01', '1', 'Selected for Sarath Team with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 09:13:44', 60, '2022-06-30 12:14:03', 0, NULL, 1),
(9118, 'Raghul', '5', '6382495981', '9940339904', 'raghulraghul0270p@gmail.com', '2000-12-20', 21, '2', '2', 'shanthakumar .L', 'Weeding mangaer', 20000.00, 1, 16500.00, 20000.00, 'Karaikudi', 'Chennai', '2206240002', '1', '2', 'upload_files/candidate_tracker/36591118255_Raghul Resume ICICI Chennai.docx', NULL, '1', '2022-06-24', 15, '', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'not ok', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-24 09:53:30', 1, '2022-06-24 09:59:26', 0, NULL, 1),
(9119, 'Karishma', '26', '7305711933', '6382495981', 'KarishmakarishmaT036@gmail.com', '2000-05-25', 22, '2', '2', 'Thiruchendhuran .c', 'Sales Man', 15000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2206240003', '1', '2', 'upload_files/candidate_tracker/22169369931_Karishma Resume (1).docx', NULL, '1', '2022-06-24', 11, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '8 months 2 companies no communication,confidence level poor,looking much on the distance,will not sustain', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-24 10:02:57', 1, '2022-06-24 10:10:10', 0, NULL, 1),
(9120, 'pavatharani', '6', '9597291806', '9025949227', 'ppava490@gmail.com', '2000-06-18', 22, '2', '2', 'murugavel', 'maze on', 10000.00, 1, 0.00, 12000.00, 'villupuram', 'Villupuram', '2206240004', '1', '1', 'upload_files/candidate_tracker/55761592729_PAVATHARANIRESUME.pdf', NULL, '2', '2022-06-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-24 10:03:08', 85, '2022-06-24 10:42:29', 0, NULL, 1),
(9121, 'ANUPAMA.B.SURESH', '20', '6369764654', '', 'sanupamasuresh@gmail.com', '2000-09-08', 21, '2', '2', 'Suresh', 'Hotel management', 18000.00, 1, 0.00, 15000.00, 'Anna nagar Chennai 101', 'Anna nagar Chennai 101', '2206240005', '1', '1', 'upload_files/candidate_tracker/46767003990_ANUPAMA_RESUME.pdf', NULL, '1', '2022-07-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 10:51:07', 85, '2022-07-18 09:58:55', 0, NULL, 1),
(9122, 'arul raja', '6', '7868063896', '', 'ARUL060595@GMAIL.COM', '1995-05-06', 27, '2', '2', 'SUSAI MANICKAM', 'coolie', 25000.00, 0, 210000.00, 20000.00, 'madurai', 'madurai', '2206240006', '1', '2', 'upload_files/candidate_tracker/19334876503_Arul Resume (1).docx', NULL, '2', '2022-06-24', 0, '', '4', '44', NULL, 0.00, '', '0', NULL, '1', 'Communication ok have exp in sales, but need to check with his sustainability, Salary exp is high but can give a try for RM profile.I have scheduled him for the 2nd round virtual, will let you know once done with the interview.', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-24 11:09:50', 1, '2022-06-24 11:15:55', 0, NULL, 1),
(9123, 'Hari Sanjay', '6', '8946078096', '', 'vampirehari0000@gmail.com', '2002-03-23', 20, '2', '2', '9500515893', 'Fresher', 30000.00, 1, 0.00, 15000.00, 'North Street, devadanapatti,theni dt', 'Mangesh street,t.nagar, Chennai', '2206240007', '1', '1', 'upload_files/candidate_tracker/88973063639_CV_2022062411404123.pdf', NULL, '1', '2022-06-29', 0, '', '3', '59', '2022-07-04', 180000.00, '', '7', '1970-01-01', '2', 'Selected for Syed Team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 11:15:28', 60, '2022-06-29 06:38:03', 0, NULL, 1),
(9124, 'Muthu raj. K', '11', '7904529475', '9486710564', 'muthuraj34297@gmail.com', '2000-06-16', 22, '2', '2', 'P. T. Kannan', 'Nil', 28000.00, 2, 0.00, 16000.00, 'Neyveli', 'Neyveli', '2206240008', '1', '1', 'upload_files/candidate_tracker/84471650389_Muthu Raj k (Resume).pdf', NULL, '1', '2022-06-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication no,no ideas in the recruitment,not open with TxxampC,will not sustain for a long', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 11:44:19', 85, '2022-06-24 11:52:30', 0, NULL, 1),
(9125, 'E.Devika', '20', '9363352985', '', 'devikaelumalai17@gmail.com', '2002-10-07', 19, '1', '2', 'T.Elumalai', 'Student', 12000.00, 3, 0.00, 11000.00, '2/ 28 M, middle street,viluppuram', 'Chennai ladies hostel,irussappan street,Icehouse.', '2206240009', '', '1', 'upload_files/candidate_tracker/78891328914_devika resume (1).pdf', NULL, '1', '2022-06-24', 0, 'P1070', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to open a lot will not handle our pressure', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-24 11:45:26', 1, '2022-06-24 11:58:47', 0, NULL, 1),
(9126, 'V Vinoth kumar', '6', '9384327689', '9095146291', 'Vinothkumar6719@gmail.com', '1999-06-02', 23, '1', '2', 'Vijayarangan', 'Farmer', 20000.00, 2, 10000.00, 15000.00, 'Ariyalur', 'Chennai tambaram', '2206240010', '', '2', 'upload_files/candidate_tracker/24140497921_Vinoth resume.docx', NULL, '2', '2022-06-24', 30, 'P1325', '3', '59', '2022-06-27', 185000.00, '', '4', '2022-11-22', '2', 'Selected for Kannan Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-24 11:50:57', 60, '2022-06-25 10:32:51', 0, NULL, 1),
(9127, 'LOGESHWARAN V', '6', '8072991247', '6383690978', 'logeshv468@gmail.com', '2002-04-15', 20, '1', '2', 'Venkatesan.p', 'Student', 90000.00, 1, 0.00, 15000.00, 'No/23, vivasaya street, pattabiram ,chennai-72', 'No/23, Vivasaya Street, pattabiram, chennai-72', '2206240011', '', '1', 'upload_files/candidate_tracker/53608468263_1176 edit.docx', NULL, '1', '2022-06-24', 0, 'P1255', '3', '59', '2022-06-27', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Babu Team,5050 Profile Sustainability Doubts a lot with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-24 12:32:34', 60, '2022-06-25 09:56:53', 0, NULL, 1),
(9128, 'K.Gowtham', '16', '7871671835', '9345882243', 'gowthammass7871@gmail.com', '1999-11-27', 22, '2', '2', 'Kumar', 'Law', 20000.00, 1, 15000.00, 17000.00, 'Avadi', 'Kannadapalayam', '2206240012', '1', '2', 'upload_files/candidate_tracker/40797798563_1651475052718_gowtham k resume 1.doc', NULL, '1', '2022-06-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,not much comfort in TxxampC Too long Distance around 50kms up and down will not sustain', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 01:04:16', 85, '2022-06-25 11:24:39', 0, NULL, 1),
(9129, 'Sangeetha j', '8', '7824049298', '9677235225', 'Sangeethaj789@gmail.com', '2001-02-26', 21, '2', '2', 'Jaishankar', 'Auto driver', 30000.00, 0, 0.00, 15000.00, '66/32 Mangapathi Street Chintadripet Chennai 2', '66/32 mangapathi street chintadripet chennai 2', '2206240013', '1', '1', 'upload_files/candidate_tracker/34274555612_sangeetha j- Resume.pdf', NULL, '1', '2022-06-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Star Health Insurance but not ready to go with same Telecalling,scheduled for Mutual Fund Coordinator,but no communication and not suitable .Internal reference - Raghu', '7', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-06-24 01:57:03', 1, '2022-06-24 02:11:52', 0, NULL, 1),
(9130, 'Thivisha.A', '4', '9094883838', '9342683831', 'Thivishaanandan812@gmail.com', '2001-08-25', 20, '2', '2', 'Anandan', 'Mechanic', 12000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2206240014', '1', '1', 'upload_files/candidate_tracker/23110092507_1655790310192Resume_Thivisha.pdf', NULL, '1', '2022-06-27', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 6 months Exp in Calling but not a relevant one can give a try for ESales Profile kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 04:38:20', 60, '2022-06-27 07:09:18', 0, NULL, 1),
(9131, '', '0', '6300250289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206240015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-24 05:38:28', 0, NULL, 0, NULL, 1),
(9132, 'abarna s', '13', '9940452206', '9840039033', 'shakthivels416@gmail.com', '2002-02-11', 20, '3', '2', 'sakthivel', 'business', 18000.00, 1, 0.00, 20000.00, 'erukkanchery', 'erukkancherry', '2206240016', '', '1', 'upload_files/candidate_tracker/11122402681_abarna s resume (1).pdf', NULL, '1', '2022-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-24 05:47:14', 1, '2022-06-24 07:20:53', 0, NULL, 1),
(9133, 'N.S.Arjun', '4', '9360843399', '9840187689', 'ajayarjun972001@gmail.com', '2001-07-09', 20, '2', '2', 'N.srinvasan', 'Business', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2206240017', '1', '1', 'upload_files/candidate_tracker/38393054493_Arjun res.doc', NULL, '3', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 06:23:16', 85, '2022-07-04 11:34:01', 0, NULL, 1),
(9134, 'Rekha d', '4', '9150319632', '', 'Rrekha6761@gmail.com', '2000-08-07', 21, '2', '2', 'Dhasnamurthy', 'Late', 12000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2206240018', '2', '2', 'upload_files/candidate_tracker/30554975365_CV_2022061615265228.pdf', NULL, '1', '2022-06-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance currently working in Kodambakkam and looking for change due to the distance only will not sustain', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-24 10:59:17', 1, '2022-06-24 11:01:40', 0, NULL, 1),
(9135, 'Rafikraja s', '4', '8056056510', '', 'Kuttisraja001@gmail.com', '1998-08-01', 23, '2', '2', 'Sathik s', 'No', 15000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2206240019', '2', '2', 'upload_files/candidate_tracker/8957604314_Rafik CV updated.pdf', NULL, '1', '2022-06-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance Currently Working In Kodambakkam And Looking For Change Due To The Distance Only Will Not Sustain', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-24 11:05:11', 1, '2022-06-24 11:07:39', 0, NULL, 1),
(9136, 'Sachin Raj v', '4', '9092772612', '9952901058', 'sachinrajvallaraj@gmail.com', '2000-03-06', 22, '4', '2', 'Sr vallaraj', '10th standard', 15.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2206240020', '', '1', 'upload_files/candidate_tracker/17544174600_Sachin resume.pdf', NULL, '1', '2022-06-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-24 11:44:34', 1, '2022-06-24 11:51:06', 0, NULL, 1),
(9137, '', '0', '7550014841', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-25 08:00:49', 0, NULL, 0, NULL, 1),
(9138, '', '0', '9703997189', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206250002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-25 09:47:30', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9139, 'kowsalya', '25', '6385724682', '', 'kowsiprabhu1234@gmail.com', '1997-11-02', 24, '2', '2', 'T.A.Prabhu', 'chef', 50000.00, 2, 20000.00, 22000.00, 'thanjavur', 'thanjavur', '2206250003', '1', '2', 'upload_files/candidate_tracker/56116425069_KOWSALYA (3).docx', NULL, '2', '2022-06-25', 0, '', '4', '60', NULL, 0.00, '', '0', NULL, '2', 'schedule her for  F2F in Thanjavur not suits for ESales also high CTC expectation', '8', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-25 10:14:58', 1, '2022-06-25 10:49:41', 0, NULL, 1),
(9140, 'Jayaram S', '4', '8778149871', '', 'mahijayaram036@gmail.com', '2002-04-21', 20, '2', '2', 'Rukmani S', 'Labour', 4000.00, 1, 0.00, 10000.00, 'Gobi', 'Gobi', '2206250004', '1', '1', 'upload_files/candidate_tracker/19492790669_JAYARAM resume.docx', NULL, '1', '2022-06-25', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is not fit for telesales', '1', '2', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-25 11:02:54', 85, '2022-06-27 12:09:16', 0, NULL, 1),
(9141, 'Deepika B', '5', '7200941539', '9962744901', 'deepikalaxu@gmail.com', '2000-06-23', 22, '2', '2', 'Baskaran A', 'Ministry of defence', 50.00, 1, 0.00, 20.00, '4th Street , Jothi Nagar , Thiruvotriyur,Chennai', '4th street , Jothi Nagar , Thiruvotriyur,chennai', '2206250005', '1', '1', 'upload_files/candidate_tracker/25252439059_DEEPIKA.B  CSE.pdf', NULL, '1', '2022-06-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,Yet to complete her graduation,Said not interested in technical but attended almost 10-15 interview in the core technical only,Not much   ok with fluency communication,Sustainability doubts a lot', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-25 01:02:48', 1, '2022-06-25 01:10:57', 0, NULL, 1),
(9142, 'Iswarya', '16', '9080716419', '9841976730', 'text2ishu@gmail.com', '1999-12-27', 22, '2', '2', 'M. S purushothaman', 'Railway Worker', 50000.00, 1, 15000.00, 2000.00, '4th street jothi Nagar, thiruvottiyur, Chennai-19', '4th Street Jothi Nagar, Thiruvottiyur, Chennai-19', '2206250006', '1', '2', 'upload_files/candidate_tracker/99535712415_iswarya updatee Resumee.pdf', NULL, '1', '2022-06-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Logistics domain,need to check her writting Skills,5050 profile,ask her to come for 2nd round post lunch but didnt appear', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-25 01:04:11', 1, '2022-06-25 01:13:15', 0, NULL, 1),
(9143, 'Parthiban', '4', '8610881425', '', 'parthibansekar30399@gmail.com', '1999-03-30', 23, '2', '2', 'Dhanasekar', 'Farmer', 12000.00, 1, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2206250007', '1', '1', 'upload_files/candidate_tracker/74275467353_resume.pdf', NULL, '1', '2022-06-27', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-25 04:24:37', 85, '2022-06-27 12:50:56', 0, NULL, 1),
(9144, 'Shalani', '4', '7904997426', '', 'Kalaimadhi8@gmail.com', '2000-04-17', 22, '2', '2', 'V. Shanmugam', 'Business', 60000.00, 0, 15.00, 20000.00, 'Chennai', 'Chennai', '2206260001', '1', '2', 'upload_files/candidate_tracker/34190509734_file_04Jun22.pdf', NULL, '1', '2022-06-30', 0, '', '3', '59', '2022-07-01', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Karthika ESales Team in Consultant Role 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-26 12:16:29', 60, '2022-06-30 06:13:22', 0, NULL, 1),
(9145, '', '0', '8248956549', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206260002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-26 03:56:00', 0, NULL, 0, NULL, 1),
(9146, 'S. Ramkumar', '4', '8056644693', '9944100730', 'sramkumar881999@gmail.com', '1999-08-08', 22, '2', '2', 'M.Shanmugasundaram', 'Farmer', 17000.00, 1, 0.00, 19500.00, 'Thanjavur', 'Thanjavur', '2206260003', '1', '1', 'upload_files/candidate_tracker/67723925471_resume Ram DocScanner Apr 26, 2022 5-10 PM.pdf', NULL, '1', '2022-06-27', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-26 05:14:47', 85, '2022-06-27 12:51:13', 0, NULL, 1),
(9147, 'b. geetha', '4', '8925339792', '8428786311', 'geethabalan99@gmail.com', '1999-08-25', 22, '2', '2', 'k.balan', 'carpenter', 7000.00, 2, 9000.00, 13000.00, 'thanjavur', 'thanjavur', '2206270001', '1', '2', 'upload_files/candidate_tracker/22007845154_Geetha B - Resume.pdf', NULL, '1', '2022-06-27', 0, '', '3', '59', '2022-07-18', 138948.00, '', '', '2022-07-20', '2', 'Selected for Sithy Team in Consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-27 10:14:42', 60, '2022-07-02 10:52:28', 0, NULL, 1),
(9148, 'Jananihaa Balraj', '6', '6369463751', '9942595430', 'jananihaa1@gmail.com', '2002-07-24', 19, '1', '2', 'Balraj M', 'Tailor', 10000.00, 0, 0.00, 15000.00, 'Komarapalayam, Namakkal dt', 'Komarapalayam, Namakkal dt', '2206270002', '', '1', 'upload_files/candidate_tracker/65222740952_Career Objectives (1).pdf', NULL, '1', '2022-06-27', 0, 'P1311', '3', '59', '2022-06-29', 150000.00, '', '6', '2022-10-10', '1', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-27 10:22:41', 60, '2022-06-27 05:59:38', 0, NULL, 1),
(9149, 'Hari haran k', '6', '9786251000', '9442239110', 'hariharann.31122001@gmail.com', '2001-12-31', 20, '1', '2', 'Nirmala k', 'House wife', 10000.00, 0, 0.00, 15000.00, 'Perundurai', 'Perundurai', '2206270003', '', '1', 'upload_files/candidate_tracker/61040828546_HARI PDF.pdf', NULL, '1', '2022-06-27', 0, 'P1311', '3', '59', '2022-06-29', 180000.00, '', '3', '2022-10-15', '2', 'Selected for Suthagar Team with PF/ESI/PT Staff Role', '5', '2', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-27 10:22:55', 60, '2022-06-27 06:01:18', 0, NULL, 1),
(9150, 'Pooja. M', '4', '7299773811', '9841850974', 'hannaprincypooja@gmail.com', '2002-01-29', 20, '2', '2', 'Mani Maran', 'Pest Control Of India (PCI)', 20000.00, 1, 0.00, 18000.00, '12/A, Janaki Raman colony, Arumbakkam', '12/A, Janaki Raman colony, Arumbakkam', '2206270004', '1', '1', 'upload_files/candidate_tracker/10866561919_Pooja. M-WPS Office-4.docx', NULL, '1', '2022-06-27', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Expected salary high ', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-27 10:47:38', 85, '2022-06-27 01:22:50', 0, NULL, 1),
(9151, 'Meenatchi.R', '4', '8190987074', '', 'Meenatchiraghu25071998@gmail.com', '1998-07-25', 23, '2', '2', 'Raghu.R', 'Welder', 12000.00, 1, 12500.00, 15000.00, 'Saidapet', 'Saidapet', '2206270005', '1', '2', 'upload_files/candidate_tracker/94360011279_meenatch resume N.docx', NULL, '1', '2022-06-27', 30, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 6 Months Exp In Calling But Not A Relevant One Can Give A Try For ESales Profile Kindly Check And Let Me Know Your Inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-27 10:59:22', 60, '2022-06-27 07:09:31', 0, NULL, 1),
(9152, 'Prasanth A R', '4', '8678921375', '', 'saiar20081998@gmail.com', '1998-08-20', 23, '2', '2', 'Raja', 'Gunny bags', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2206270006', '1', '2', 'upload_files/candidate_tracker/16432594236_AR CV 2.pdf', NULL, '1', '2022-06-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not comfort in Field Sales,Looking only for Collection Calls will not run inour profile for a long', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-27 11:01:35', 85, '2022-06-27 11:41:20', 0, NULL, 1),
(9153, 'Vivek', '11', '9625951997', '7904347234', 'cm.vivek25@gmail.com', '1997-08-25', 24, '2', '2', 'Chinnu', 'GREF', 30000.00, 1, 0.00, 17000.00, 'Pudukkottai', 'Perungudi', '2206270007', '1', '1', 'upload_files/candidate_tracker/57130870269_ViveksCV.pdf', NULL, '1', '2022-06-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No,Prefers to work in non voice positions too,not suitable for Reccruiter Have a long career Gap will not sustain and handle our pressure', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-27 11:45:19', 85, '2022-06-27 12:04:31', 0, NULL, 1),
(9154, '', '0', '6374075479', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206270008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-27 12:24:03', 0, NULL, 0, NULL, 1),
(9155, 'M. Vindhiya', '4', '9080674836', '', 'vincofc@gmail.com', '1998-09-13', 23, '2', '1', 'M. Mari Raja', 'Mechanical Engineer', 25000.00, 2, 0.00, 15000.00, 'Choolaimedu', 'Choolaimedu', '2206270009', '1', '1', 'upload_files/candidate_tracker/17065440693_iroxo-eqq1h.pdf', NULL, '1', '2022-06-30', 0, '', '1', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-27 02:37:03', 85, '2022-06-28 06:08:47', 0, NULL, 1),
(9156, '', '0', '8074252977', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206270010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-27 05:03:54', 0, NULL, 0, NULL, 1),
(9157, 'Sangeetha MS', '5', '6379647370', '7200160858', 'Sangeethams2900@gmail.com', '2000-05-30', 22, '2', '2', 'Laitha', 'Coly', 25000.00, 2, 18000.00, 22000.00, '31A Thiyagi nadesan no. 4,ammapet, salem', '31A Thiyagi Nadesan No. 4,Ammapet, Salem', '2206280001', '1', '2', 'upload_files/candidate_tracker/61513676541_Ms.pdf', NULL, '2', '2022-06-28', 15, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-28 10:01:29', 85, '2022-06-28 10:22:47', 0, NULL, 1),
(9158, 'surya', '6', '8056464624', '', 'suryads990@gmail.com', '2000-01-30', 22, '2', '2', 'dasarathan', 'no work', 5000.00, 2, 0.00, 11000.00, 'maraimalai nagar', 'maraimalai nagar', '2206280002', '1', '1', 'upload_files/candidate_tracker/84155337233_resume_surya (2).docx', NULL, '1', '2022-06-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Fresher for Sales no basic ideas in Insurance Domain,left his previous work due to pressure will not sustain and not suitable\n', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-28 10:26:03', 1, '2022-06-28 11:08:04', 0, NULL, 1),
(9159, 'Diwakar. M', '6', '8524046760', '9176131236', 'Mdiwa1122@gmail.com', '2000-12-05', 21, '2', '2', 'Murugan. M', 'Chengalpattu', 5000.00, 1, 0.00, 11000.00, 'Chengalpattu', 'Chengalpattu', '2206280003', '1', '1', 'upload_files/candidate_tracker/67193682519_Diwakar CV 2.docx', NULL, '1', '2022-06-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very 5050 profile,fresher for Sales,sustainability doubts kindly check and let me know your inpputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-28 10:26:32', 60, '2022-06-28 06:54:37', 0, NULL, 1),
(9160, 'J Raviteja', '5', '6304519471', '9618266986', 'jraviteja2181@gmail.com', '2001-07-26', 20, '1', '2', 'J krishnappa', 'Mation', 15000.00, 1, 0.00, 20000.00, 'Ankuthotapalli, Akothakota, Chittor (dist)517247', 'Murageshpallya', '2206280004', '', '1', 'upload_files/candidate_tracker/48530818123_Resume(1).pdf', NULL, '1', '2022-06-28', 0, '55585', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-28 10:27:11', 1, '2022-06-28 10:39:32', 0, NULL, 1),
(9161, 'Kavali Vijaya Rani', '5', '6301723212', '9652322644', 'rani8897705710@gmail.com', '2000-08-31', 21, '1', '2', 'Reddeppa', 'Mation', 15000.00, 1, 12000.00, 14000.00, 'Punganur Chittoor district andhrapradesh', 'Murgeshpalya indranagar', '2206280005', '', '2', 'upload_files/candidate_tracker/29454512080_CV_2022060918393035.pdf', NULL, '1', '2022-06-28', 0, '55585', '3', '59', '2022-07-01', 172500.00, '', '5', '1970-01-01', '2', 'Selected for Staff Role - Muppudathy Team', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-28 10:27:19', 60, '2022-06-29 06:26:59', 0, NULL, 1),
(9162, 'J Dhakshinya', '6', '9994019317', '7339670123', 'ddhaks3@gmail.com', '2001-07-27', 20, '1', '2', 'Jothibasu', 'Mechanic', 10000.00, 1, 0.00, 10000.00, 'Vandhavasi', 'Seidapet', '2206280006', '', '1', 'upload_files/candidate_tracker/7196074583_dd.pdf', NULL, '1', '2022-06-28', 0, 'T1070', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile no relevant Exp,Sounding Good can give  atry kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-28 10:32:30', 60, '2022-06-28 07:02:40', 0, NULL, 1),
(9163, 'Niyaz S A', '4', '7598818777', '9944161372', 'niyaz.tnj@gmail.com', '1991-10-22', 30, '2', '1', 'FIRDOWS PARVEEN', 'Home Wife', 80000.00, 2, 28000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2206280007', '1', '2', 'upload_files/candidate_tracker/74893841943_Niyaz.S.A - CV.pdf', NULL, '1', '2022-06-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped Salary Exp is high also having attitude issue.For CRM role Exp take home 15 after PF/ESI/PT', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-28 10:53:06', 85, '2022-06-28 04:41:16', 0, NULL, 1),
(9164, 'SARAVANAN J', '4', '9042010834', '', 'Royaltysaravanan@gmail.com', '1998-04-11', 24, '2', '2', 'JAGANATHAN E', 'B.com ( General )', 15000.00, 0, 0.00, 15000.00, 'veppampattu', 'Veppampattu', '2206280008', '2', '1', 'upload_files/candidate_tracker/22092574824_Resume.pdf', NULL, '1', '2022-06-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interested in telesales,not showing importance towards the job,will not sustain and not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-28 10:53:33', 1, '2022-06-28 10:58:58', 0, NULL, 1),
(9165, 'Nivetha Venugopal', '31', '9840480968', '7010740028', 'Immanuelnivetha05@gmail.com', '1995-03-22', 27, '2', '1', 'Immanuel Kiran prasanna R', 'Admin', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2206280009', '1', '1', 'upload_files/candidate_tracker/35581057807_Nivetha_Front-End-Developer (1).docx', NULL, '1', '2022-06-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Scheduled with the 2ndd round with kavya IT and got rejected not much strong in the basics of Javascript', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-28 11:27:15', 85, '2022-06-28 11:47:32', 0, NULL, 1),
(9166, 'Ponnarasan. P', '4', '9159709523', '9843010533', 'itzponarash@gmail.com', '2001-03-10', 21, '2', '2', 'Porchezliyan.K', 'daily wages', 7000.00, 1, 0.00, 11000.00, 'Rajaghiri', 'Rajaghiri', '2206280010', '1', '1', 'upload_files/candidate_tracker/40578759808_RESUME DOC. PONRASH.docx', NULL, '1', '2022-06-28', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-28 11:39:13', 85, '2022-06-28 01:01:09', 0, NULL, 1),
(9167, 'j mohamed arish', '4', '9698496573', '9629332350', 'shmaualdeen@gmail.com', '2000-04-15', 22, '2', '2', 'jainullabudeen', 'driver', 7000.00, 1, 0.00, 11000.00, 'thanjavur', 'thanjavur', '2206280011', '1', '1', 'upload_files/candidate_tracker/89019017574_ARISH.pdf', NULL, '1', '2022-06-28', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-28 11:39:25', 85, '2022-06-28 01:01:25', 0, NULL, 1),
(9168, 'Gowtham s', '4', '7010807976', '9790075331', 'gowthamraina40@gmail.com', '1999-01-19', 23, '2', '2', 'Sampath m', 'Building contractor', 20000.00, 3, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2206280012', '1', '1', 'upload_files/candidate_tracker/70498008460_Gowtham(1).pdf', NULL, '1', '2022-06-28', 0, '', '3', '59', '2022-07-01', 144000.00, '', '', '1970-01-01', '2', 'Selected for Thanjavur in  consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-28 12:13:49', 85, '2022-06-28 12:59:11', 0, NULL, 1),
(9169, 'MOHAMED HALILUR RAHAMAN', '6', '7418825616', '', 'Mohamedhalilrahman@gmail.com', '1996-02-01', 26, '1', '2', 'Mohamed Rasbudeen', 'Agriculture', 10000.00, 1, 17000.00, 21000.00, 'Azad nagar, kodikkalplayam, Thiruvarur', 'Mkn road, Alandur, chennai', '2206280013', '', '2', 'upload_files/candidate_tracker/62479314098_1656043039287_halil word CV 2022.docx', NULL, '1', '2022-06-28', 0, 'P1065', '4', '57', NULL, 0.00, '', '0', NULL, '1', 'Communication ok have exp in showroom Sales new to telecalling sales,5050 profile sustainability in long run doubts ,can give a try for RE check and let me know your interest\n', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-28 12:30:07', 1, '2022-06-28 12:37:37', 0, NULL, 1),
(9170, 'Arulselvi.R', '4', '6369447944', '8428069299', 'Arulselvithangam@gmail.com', '1998-05-13', 24, '2', '1', 'P.raman', 'Electrition', 20000.00, 0, 0.00, 15000.00, 'Mgr nagar', 'Mgr nagar', '2206280014', '1', '1', 'upload_files/candidate_tracker/17899660998_Document.pdf', NULL, '1', '2022-06-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Telesales,can give a try for Arumbakkam,candidate will come back with her confirmation,based on that willl schedule her for 2nd round in arumbakkam', '1', '1', '', '1', '1', '', '2', '2022-06-30', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-28 04:39:42', 60, '2022-06-29 11:18:32', 0, NULL, 1),
(9171, 'Rambabu', '25', '7619184191', '', 'nrambabu940@gmail.com', '1998-10-21', 23, '1', '2', 'Nagaraj', 'Carpenter', 20000.00, 1, 18000.00, 22000.00, 'Bangalore', 'Bangalore', '2206280015', '', '2', 'upload_files/candidate_tracker/57537475413_nrambabu940@gmail.com (1).docx', NULL, '1', '2022-06-28', 0, 'P1328', '3', '59', '2022-07-04', 192000.00, '', '4', '2022-08-24', '1', 'Selected for ESales Bangalore in Consultant Role', '8', '1', '', '2', '2', '', '2', '1970-01-01', '3', '6', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-06-28 05:37:14', 60, '2022-06-29 06:40:53', 0, NULL, 1),
(9172, '', '0', '9652322644', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206280016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-28 09:35:48', 0, NULL, 0, NULL, 1),
(9173, '', '0', '9500515893', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-29 08:46:45', 0, NULL, 0, NULL, 1),
(9174, 'riyaz ahamed m', '4', '8807982984', '9500568912', 'riyazahamed6606@gmail.com', '1998-03-07', 24, '2', '1', 'mohamed ibrahim a', 'labour', 15000.00, 3, 18000.00, 15000.00, 'needamangalam', 'needamangalam', '2206290002', '1', '2', 'upload_files/candidate_tracker/49374514314_riyaz resume (1).pdf', NULL, '1', '2022-06-29', 15, '', '3', '59', '2022-07-07', 151584.00, '', '4', '2022-07-29', '1', 'Selected for Thanjavur Sithy Team in Consultant', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-29 10:40:42', 60, '2022-07-07 07:35:24', 0, NULL, 1),
(9175, 'Arunkumar', '6', '9025858299', '9003181891', 'arunsri27022@gmail.com', '1999-09-10', 22, '1', '2', 'Sekar', 'Father', 30000.00, 2, 16000.00, 15000.00, 'G4 G4 AkB Flats Dhuriraj Lane Pazhalavanthagall', 'G4 AkB Flats Dhuriraj Lane Pazhalavanthagall', '2206290003', '', '2', 'upload_files/candidate_tracker/19653118716_Resume (1).pdf', NULL, '1', '2022-06-29', 0, 'P1066', '3', '59', '2022-07-01', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Thiyagu Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-29 11:20:55', 60, '2022-06-29 06:38:21', 0, NULL, 1),
(9176, 'Radhakrishna r', '32', '8807230165', '', 'Radhakrishnaaaaa05@gmail.com', '1988-02-26', 34, '1', '2', 'R.s chalageri', 'Currently seeking for job', 45.00, 2, 3.36, 4.00, 'Thiruvelangadu', 'Chennai', '2206290004', '', '2', 'upload_files/candidate_tracker/96850162878_1626260365756Resume_Radha+%281%29-converted.pdf', NULL, '1', '2022-06-29', 0, '55580', '3', '59', '2022-07-01', 350000.00, '', '4', '2023-04-17', '2', 'Selected for GK Sir Team .Gaurav Sir Commited 1.5L Business per month will lead to 20K additional', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Referral Vinodh - GK Sir Team', '', '', '', NULL, NULL, NULL, 1, '2022-06-29 11:22:08', 60, '2022-09-23 05:59:43', 0, NULL, 1),
(9177, 'Jayadurga jaganathamani', '4', '8925606900', '8940630644', 'sanjanajayadurga@gmail.com', '2001-11-24', 20, '2', '2', 'Jaganathamani', 'Farmer', 15000.00, 2, 10000.00, 12000.00, '2/5B, south street, kumaramanngalam, -612802', 'Ammapet, thanjavur (dt)', '2206290005', '1', '2', 'upload_files/candidate_tracker/68315697537_Jayadurga resume (fisheries student). pdf.pdf', NULL, '1', '2022-07-02', 0, '', '3', '59', '2022-07-25', 144000.00, '', '3', '2022-08-19', '2', 'Selected for Thanjavur in Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-29 11:57:07', 60, '2022-07-09 05:22:07', 0, NULL, 1),
(9178, '', '0', '7358449287', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206290006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-29 12:22:24', 0, NULL, 0, NULL, 1),
(9179, '', '0', '9342314517', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206290007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-29 12:29:52', 0, NULL, 0, NULL, 1),
(9180, 'S. Jenifer', '4', '9150194761', '', 'jeniferjeni593@gmail.com', '2002-06-21', 20, '2', '2', 'Kala', 'House keeping', 12000.00, 0, 0.00, 15000.00, 'Y 25 pallaku manager luz Mylapor Chennai', 'Mylapor', '2206290008', '1', '1', 'upload_files/candidate_tracker/99391803143_jenniefer.pdf', NULL, '1', '2022-06-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not opening ,not suitable for our roles,will not handle the pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-29 01:58:49', 1, '2022-06-29 02:21:57', 0, NULL, 1),
(9181, 'Thenmozhi', '4', '6380587214', '', 'tthenujaya203@gmail.com', '2002-06-05', 20, '2', '2', 'Ravi', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'Mayalapore', 'Mayalapore', '2206290009', '1', '1', 'upload_files/candidate_tracker/14887837576_THENMOZHI.pdf', NULL, '1', '2022-06-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,have a plan to go with B.Ed,need to open a lot,Being fresher pressure handling and sustainability doubt on this candidate', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-29 02:02:03', 1, '2022-06-29 02:29:37', 0, NULL, 1),
(9182, 'Kowsik M', '2', '9677717746', '9489592764', 'kowsik.mvi@gmail.com', '1995-04-04', 27, '2', '2', 'Murugan T', 'Teacher', 50000.00, 1, 0.00, 45000.00, 'Kanyakumari', 'Chennai', '2206290010', '1', '1', 'upload_files/candidate_tracker/85400254614_Kowsiknew.pdf', NULL, '1', '2022-06-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Knowledge in Mern Skills need to check with  family on the TxxampC,if he comes back let us try\n', '2', '2', '', '1', '1', '', '2', '2022-06-30', '3', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-06-29 02:42:04', 60, '2022-06-29 03:53:59', 0, NULL, 1),
(9183, 'Sivalakshmi K', '4', '9361143838', '', 'sivalakshmi.kumaravel@gmail.com', '2000-06-03', 22, '2', '2', 'Kumaravel G', 'Retired', 25000.00, 1, 0.00, 20000.00, 'Panagudi', 'Panagudi', '2206290011', '1', '1', 'upload_files/candidate_tracker/93787918908_SIVALAKSHMI RESUME.pdf', NULL, '3', '2022-07-01', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok seems not much confident 5050 profile can give a try,Need to confirm again and schedule her for the another round', '1', '1', '0', '1', '1', '0', '2', '2022-07-04', '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-29 07:44:49', 1, '2022-06-29 08:05:41', 0, NULL, 1),
(9184, 'Prasanth', '13', '9345828781', '', 'prasanthloganathan78@gmail.com', '2000-08-31', 21, '2', '2', 'Loganathan', 'Logistics', 500000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2206300001', '1', '1', 'upload_files/candidate_tracker/55913932415_Prasanth', NULL, '1', '2022-06-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic knowledge in the skills ,will not sustain in our roles for long technical reject by Latha', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 09:34:59', 60, '2022-06-30 11:54:28', 0, NULL, 1),
(9185, 'Merlin R', '6', '8940554609', '9047628032', 'merlinraju26@gmail.com', '1997-01-26', 25, '1', '2', 'Lilly Mary', 'Home maker', 20000.00, 2, 15000.00, 17000.00, 'Chennai', 'Valluvarkottam', '2206300002', '', '2', 'upload_files/candidate_tracker/72479463050_Resume (3).pdf', NULL, '1', '2022-06-30', 0, 'Ci125', '3', '59', '2022-07-01', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Thiyagu Team  in consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-06-30 10:28:42', 60, '2022-06-30 07:21:03', 0, NULL, 1),
(9186, 'Gopi', '5', '9345620337', '8939705207', 'Gopisparo@gmail.com', '1994-02-12', 28, '2', '2', 'Partha sarathy', '10000', 40000.00, 1, 0.00, 20000.00, 'Ayanavaram', 'Ayanavaram', '2206300003', '1', '1', 'upload_files/candidate_tracker/7766894422_Resume 2 3.docx', NULL, '1', '2022-06-30', 0, '', '3', '59', '2022-07-04', 240000.00, '', '', '1970-01-01', '1', 'Selected for Shanmuga Team with PF/ESI/PT', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-30 10:31:22', 60, '2022-06-30 04:44:09', 0, NULL, 1),
(9187, 'Nandhini', '4', '7094814810', '8838207985', 'Ezhilgovin@gmail.com', '1996-05-01', 26, '2', '1', 'Ezhil', 'Accountant', 40000.00, 1, 0.00, 10000.00, 'Tanjore', 'Tanjore', '2206300004', '1', '1', 'upload_files/candidate_tracker/82743600539_resume.pdf', NULL, '1', '2022-06-30', 0, '', '3', '59', '2022-07-04', 126312.00, '', '', '2022-07-12', '1', 'Selected for Thanjavur - Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-30 10:32:53', 60, '2022-07-04 07:48:40', 0, NULL, 1),
(9188, 'v. sowmiya', '4', '9025385886', '', 'sowmirajpnr@mail.com', '2000-04-18', 22, '2', '2', 'r.vaithiyanathasami', 'former', 10000.00, 2, 0.00, 10000.00, 'kumbakonnam', 'kumbakonnam', '2206300005', '1', '1', 'upload_files/candidate_tracker/13318079854_sowmiya.pdf', NULL, '1', '2022-06-30', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 11:12:55', 85, '2022-06-30 04:19:46', 0, NULL, 1),
(9189, 'mohan r', '6', '9176279505', '6382398125', 'mohanravi0821@gmail.com', '2001-08-21', 20, '1', '2', 'ravi', 'revlot sales', 15000.00, 0, 0.00, 15000.00, 'chennai nungambakkam', 'chennai nungambakkam', '2206300006', '', '1', 'upload_files/candidate_tracker/47009026765_MOHAN RESUME.docx', NULL, '1', '2022-06-30', 0, 'p1036', '3', '59', '2022-07-06', 192000.00, '', '4', '2023-07-12', '1', 'Selected for Thiyagarajan Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', 'Offer Document Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-06-30 11:23:49', 60, '2022-07-06 10:37:46', 0, NULL, 1),
(9190, 'Satish Babu N', '25', '9738772474', '', 'satishbabu9738772474@gmail.com', '1997-02-09', 25, '1', '2', 'nagaraj a', 'retired employee', 35000.00, 2, 28000.00, 28000.00, 'Bangalore', 'bangalore', '2206300007', '', '2', 'upload_files/candidate_tracker/90159842284_Satish babu. N_Original.docx', NULL, '1', '2022-06-30', 0, '1328', '3', '59', '2022-07-04', 345696.00, '', '4', '2023-01-06', '1', 'Selected for Manivel Team with Pf/Pt', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-30 12:05:57', 60, '2022-07-01 12:45:52', 0, NULL, 1),
(9191, 'Kalaimani', '6', '8110046044', '9342314517', 'Kalaimanisubbu1504@gmail.com', '2000-04-15', 22, '2', '2', 'Nainammal subramaniyan', 'Almighty business solutions', 30000.00, 2, 15000.00, 18000.00, 'Teynampet', 'Alwarpet 5th Street', '2206300008', '1', '2', 'upload_files/candidate_tracker/55056504546_KALAI NEW (2).pdf', NULL, '1', '2022-06-30', 0, '', '3', '59', '2022-07-04', 156000.00, '', '3', '2023-11-03', '1', 'Selected for RE Babu Team in consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Mail Sent', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-30 12:41:24', 60, '2022-07-06 10:02:54', 0, NULL, 1),
(9192, '', '0', '9019742388', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206300009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-30 01:17:38', 0, NULL, 0, NULL, 1),
(9193, 'Rangeela.R', '4', '7397286074', '9500484358', 'www.rangelaragupathi@gmail.com', '2001-10-03', 20, '2', '2', 'Ragupathi', 'Labour', 30000.00, 1, 0.00, 10000.00, 'Ayyampettai', 'Ayyampettai', '2206300010', '1', '1', 'upload_files/candidate_tracker/35208849239_Rangeela.pdf', NULL, '1', '2022-06-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped.Candidate is not clear with her interest,just like that blocking the numbers,Will not join and conveyed the same to recruiter/Sales Manager', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 02:36:51', 85, '2022-06-30 04:34:11', 0, NULL, 1),
(9194, 'p.sabithasri', '4', '6369382574', '8220469559', 'p.sabithasri@gmail.com', '1999-05-10', 23, '2', '2', 's.pandiyan', 'coolie', 15000.00, 1, 0.00, 10000.00, 'thanjavur', 'thanjavur', '2206300011', '1', '1', 'upload_files/candidate_tracker/69558715123_sabitha.pdf', NULL, '1', '2022-06-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Discussed and finalised the package but now the candidate is not interested much as she is not comfortable to take calls continuously', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 02:37:56', 85, '2022-06-30 04:34:53', 0, NULL, 1),
(9195, 'ramya', '4', '7695918020', '', 'sakthidharan33@gmail.com', '1983-08-24', 38, '2', '1', 'saravanan', 'jewellery employee', 10000.00, 3, 0.00, 10000.00, 'orthanadu', 'orathanadu', '2206300012', '1', '1', 'upload_files/candidate_tracker/49664589426_ramya.pdf', NULL, '1', '2022-06-30', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 02:38:54', 85, '2022-06-30 04:33:51', 0, NULL, 1),
(9196, 'BHUVANESWARI.R', '4', '7825942758', '', 'vijaybhuvana596@gmail.com', '2002-02-02', 20, '2', '2', 'RANJAN.K', 'Former', 15000.00, 0, 0.00, 9000.00, 'Needamangala', 'Needamangala', '2206300013', '1', '1', 'upload_files/candidate_tracker/41825220181_BHUVANESHWARI.docx', NULL, '1', '2022-06-30', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 02:41:22', 85, '2022-06-30 04:31:05', 0, NULL, 1),
(9197, 'Nandhini.B', '4', '9629872306', '9655816991', 'nandhinibaskar@gmil.com', '1999-06-15', 23, '2', '2', 'Baskar.k', 'Farmer', 30000.00, 2, 0.00, 10000.00, 'Ayyampettai', 'Ayyampettai', '2206300014', '1', '1', 'upload_files/candidate_tracker/4785989146_Nandhini.pdf', NULL, '1', '2022-06-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped.Candidate Is Not Clear With Her Interest,Now she is committing that she doesnt have laptop and ,Will Not Join Conveyed The Same To Recruiter/Sales Manager', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 03:07:27', 85, '2022-06-30 04:18:45', 0, NULL, 1),
(9198, 'G.priya', '4', '7448778216', '9791570846', 'appupriya9787@gmail.com', '1998-11-03', 23, '2', '1', 'Vijaya Kumar', 'Drive', 30000.00, 3, 0.00, 10000.00, 'Poondi', 'Poondi', '2206300015', '1', '1', 'upload_files/candidate_tracker/25847075595_0_priya resume.pdf', NULL, '1', '2022-06-30', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 03:18:31', 85, '2022-06-30 04:33:12', 0, NULL, 1),
(9199, '', '0', '9363233359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206300016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-30 07:02:22', 0, NULL, 0, NULL, 1),
(9200, 'archana', '4', '9952036884', '', 'archanavelu3@gmail.com', '2000-04-12', 22, '2', '2', 'velyadham', 'labour', 80000.00, 2, 0.00, 15000.00, 'villivakkam', 'Villivakkam', '2206300017', '1', '1', 'upload_files/candidate_tracker/28075163420_resume (35).pdf', NULL, '1', '2022-07-01', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for this profile', '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-30 08:03:21', 1, '2022-07-01 11:36:02', 0, NULL, 1),
(9201, '', '0', '9952513788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207010001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-01 09:34:26', 0, NULL, 0, NULL, 1),
(9202, 'Shanmuganandam', '5', '9600470944', '', 'manbest252@gmail.com', '1999-04-01', 23, '1', '2', 'Thirukumaran KC', 'Private trader', 20000.00, 1, 0.00, 21000.00, 'Trichy', 'Trichy', '2207010002', '', '2', 'upload_files/candidate_tracker/85295473270_Shanmugam.pdf', NULL, '1', '2022-07-01', 0, '', '3', '59', '2022-07-11', 246000.00, '', '4', '2022-11-01', '1', 'Selected for Madiwalla MuppudathybTeam Staff Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-01 10:27:17', 60, '2022-07-09 12:33:40', 0, NULL, 1),
(9203, 'M.KEERTHI VASAN', '6', '8344494100', '8248603642', 'Keerthimuni2486@gmail.com', '1997-04-10', 25, '2', '2', 'MUNIRAJ', 'Agriculture', 7000.00, 0, 0.00, 15000.00, 'Thirupathur', 'Chennai (Ashok nagar)', '2207010003', '1', '1', 'upload_files/candidate_tracker/4132281753_Resume_CV_Format1 (2).pdf', NULL, '1', '2022-07-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Salary Discussed and confirmed but candidate didnt show interest in the profile later', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-01 10:32:22', 60, '2022-07-01 02:57:14', 0, NULL, 1),
(9204, 'Jayasimha KS', '5', '8197337533', '', 'jayasimha.ks1748@gmail.com', '1996-08-26', 25, '1', '2', 'Aruna bai', 'House wife', 150000.00, 3, 22900.00, 25000.00, 'Bengaluru', 'Bengaluru', '2207010004', '', '2', 'upload_files/candidate_tracker/99945978414_CV - JAYASIMHA (2022) .1.doc', NULL, '1', '2022-07-01', 0, 'P1328', '3', '59', '2022-07-04', 345696.00, '', '3', '2022-10-05', '1', 'Selected for Manivel Team with PF/PT', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-01 10:37:09', 60, '2022-07-02 04:33:15', 0, NULL, 1),
(9205, 'V.Tamilselvan', '5', '7871334233', '', 'tamilsuriya777@gmail.com', '1998-08-30', 23, '1', '2', 'M.Velu', 'BEEDI BRANCH', 40000.00, 2, 0.00, 20000.00, 'Tirupattur', 'Tirupattur', '2207010005', '', '1', 'upload_files/candidate_tracker/90411399336_tamil selvan BE updated (1).pdf', NULL, '1', '2022-07-01', 0, '55597', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-01 10:42:23', 1, '2022-07-01 10:48:26', 0, NULL, 1),
(9206, 'gnanashwaran', '4', '8608922720', '', 'gnanaeswaran95@gmail.com', '2000-11-15', 21, '2', '2', 'mohan', 'daily wages', 10000.00, 1, 0.00, 15000.00, 'chetpet', 'chetpet', '2207010006', '1', '1', 'upload_files/candidate_tracker/76680013680_resume_1629018659034 (1).pdf', NULL, '1', '2022-07-01', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for this profile', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-01 10:51:49', 85, '2022-07-01 02:59:29', 0, NULL, 1),
(9207, 'K. Saravanan', '22', '8220325903', '', 'ksmech13@gmail.com', '1996-05-13', 26, '4', '2', 'N. Kumar', 'Mechanic', 20000.00, 1, 15000.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2207010007', '', '2', 'upload_files/candidate_tracker/91482560895_Saran resume .pdf', NULL, '1', '2022-07-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Too long Distance from Tiruvallur,Not much suits for Digittal Marketng', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-01 10:57:11', 1, '2022-07-01 11:04:16', 0, NULL, 1),
(9208, 'M.sivanjineyulu', '5', '9642224461', '9182494092', 'sivacherry63@gmail.com', '1996-01-08', 26, '1', '2', 'M.venkataramudu', 'Farmers', 15000.00, 2, 18500.00, 25000.00, '2/265 Illuru (v) Garladinne (m) Anantapur', 'Pranayas gent\'s pg 2main road murugeshpalya', '2207010008', '', '2', 'upload_files/candidate_tracker/54165670707_Shiva RESUME mba @123-converted.pdf', NULL, '1', '2022-07-01', 0, 'P1328', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-01 11:30:38', 1, '2022-07-01 11:38:18', 0, NULL, 1),
(9209, 'Geethanjali', '6', '9962480180', '9360750475', 'geethasamuvel877@gmail.com', '1998-09-04', 23, '1', '1', 'Ramesh', 'Driver', 15000.00, 1, 10000.00, 15000.00, 'Arumbakkam', 'Arumbakkam', '2207010009', '', '2', 'upload_files/candidate_tracker/69091401945_WhatsApp Image 2022-07-01 at 11.52.07 AM.pdf', NULL, '1', '2022-07-01', 0, 'Ci125', '5', '16', NULL, 0.00, '', '0', NULL, '2', 'Low Profile', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-01 11:35:19', 1, '2022-07-01 01:03:37', 0, NULL, 1),
(9210, 'Gayathri', '6', '9360750475', '9962480180', 'nafilagayathri@gmail.com', '2001-09-01', 20, '1', '2', 'Ramesh', 'Driver', 15000.00, 1, 0.00, 15000.00, 'ARUMBAAKKAM', 'ARUMBAAKKAM', '2207010010', '', '1', 'upload_files/candidate_tracker/63349501649_Resume_GAYATHRI_Format1.pdf', NULL, '1', '2022-07-01', 0, '', '4', '16', NULL, 0.00, '', '0', NULL, '2', 'Have Exp For Few Months But Not A Relevant One,5050Profile Need To Train A Lot Kindly Check And Let Me Know Your Inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-01 11:39:18', 1, '2022-07-01 12:07:26', 0, NULL, 1),
(9211, '', '0', '9150554019', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207010011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-01 11:57:58', 0, NULL, 0, NULL, 1),
(9212, 'Jai Sri Ram', '5', '9361267779', '', 'jaisriram2201@gmail.com', '1999-07-01', 23, '2', '2', 'Neelamegan', 'Retired Head master', 60000.00, 3, 0.00, 300000.00, 'KRISHNAGIRI', 'arumbakkam, chennai.', '2207010012', '1', '1', 'upload_files/candidate_tracker/23877375160_JAI_SRI RAM_Resume_25-04-2022-15-36-47.pdf', NULL, '1', '2022-07-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-01 03:12:45', 85, '2022-07-01 04:14:16', 0, NULL, 1),
(9213, '', '0', '9840506887', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207010013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-01 06:30:47', 0, NULL, 0, NULL, 1),
(9214, 'Reddi Arjuna rao', '22', '9666463186', '', 'charanteja087@gmail.com', '1994-04-11', 28, '2', '2', 'Reddi Jagga rao', 'Mba', 30000.00, 1, 0.00, 300000.00, 'VISAKHAPATNAM', 'VISAKHAPATNAM', '2207020001', '1', '1', 'upload_files/candidate_tracker/95167795977_Reddi_Arjuna_Rao_Resume (1).pdf', NULL, '3', '2022-07-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '3', '4', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-02 10:35:56', 85, '2022-07-02 10:44:19', 0, NULL, 1),
(9215, 'Vishali', '6', '9344204028', '', 'vishalivishu19092000@gmail.com', '2000-09-19', 21, '3', '2', 'Kannadasan', 'Tailor', 150000.00, 2, 0.00, 12000.00, 'No. 23(4) Bharath Nagar 4th St Ernavoor Chennai 57', 'No. 38 Perumal 2nd Street purasaiwalkam Chennai 7', '2207020002', '', '1', 'upload_files/candidate_tracker/84091176190_Resume.docx', NULL, '1', '2022-07-02', 0, '', '3', '59', '2022-07-04', 156000.00, '', '3', '2022-11-07', '1', 'Selected for Thiyagu Team - Consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-07-02 10:38:48', 60, '2022-07-05 05:32:10', 0, NULL, 1),
(9216, 'U.indhupriya', '4', '6379926928', '7558145577', 'Sathishindhusri29@gmail.com', '1997-07-14', 24, '2', '1', 'Sathish kannan', 'Electrical technician', 64000.00, 1, 0.00, 120000.00, 'TPS nagar , medical College road, Thanjavur', 'TPS nagar ,mc road,Balaji nagar bustop, Thanjavur.', '2207020003', '1', '1', 'upload_files/candidate_tracker/63816537055_INDHUPRIYA RESUME.pdf', NULL, '1', '2022-07-02', 0, '', '3', '59', '2022-07-07', 126312.00, '', '3', '2022-10-15', '1', 'Selected for Thanjavur  - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 10:40:14', 60, '2022-07-09 05:19:05', 0, NULL, 1),
(9217, '', '0', '9629433881', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207020004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-02 10:50:50', 0, NULL, 0, NULL, 1),
(9218, 'harikrishnan.s', '4', '7358654674', '', 'harimac46@gmail.com', '2000-10-31', 21, '2', '2', 'sivaraman .s', 'hindu', 15000.00, 0, 0.00, 16000.00, 'manali', 'mathur', '2207020005', '1', '1', 'upload_files/candidate_tracker/36682035997_Hari resume. pdf.pdf', NULL, '3', '2022-07-02', 0, '', '3', '59', '2022-07-11', 156000.00, '', '', '2022-07-21', '1', 'Selected for Arumbakkam in Consultant Role', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-02 11:12:58', 60, '2022-07-07 07:09:03', 0, NULL, 1),
(9219, 'K. Monika', '4', '7418170341', '9791479929', 'Monikakandan24@gmail.com', '2007-07-02', 0, '2', '2', 'Kandan', 'Carpenter', 25000.00, 1, 18.00, 20.00, 'Ambattur', 'Ambattur', '2207020006', '1', '2', 'upload_files/candidate_tracker/73558353812_resume_ACY2knrl2liT_1645515920560(1).pdf', NULL, '1', '2022-07-02', 3, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Salary expectation high ', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 11:25:15', 85, '2022-07-02 11:39:54', 0, NULL, 1),
(9220, 'pavithra', '4', '9962789750', '', '15pavianu@gmail.com', '2001-01-04', 21, '2', '2', 'arumugam', 'electrician', 15000.00, 1, 0.00, 15000.00, 'thirumulaivoyil', 'Thirumulaivoyil', '2207020007', '1', '1', 'upload_files/candidate_tracker/92095760063_Pavithra resume.docx', NULL, '1', '2022-07-02', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expected salary high', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 11:25:37', 85, '2022-07-02 04:22:27', 0, NULL, 1),
(9221, 'preethiga', '4', '7305312550', '', 'preethiga9709@violetcollege.co.in', '2000-10-11', 21, '2', '2', 'mohan', 'company staff', 13000.00, 1, 13000.00, 15000.00, 'padi', 'padi', '2207020008', '1', '2', 'upload_files/candidate_tracker/21870846737_1623430269346_Preethiga RESUME (2)-1 (1).docx', NULL, '1', '2022-07-02', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Childish behavior and not suitable for this profile ', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 11:26:10', 85, '2022-07-02 04:21:08', 0, NULL, 1),
(9222, 'Priyadharshini', '4', '9176849660', '9176902427', 'Priyadhrshini2427@gmail.com', '2000-09-27', 21, '2', '2', 'Ranagathan. R', 'moulding press', 60000.00, 1, 15000.00, 20000.00, 'Ramapuram', 'Ramapuram', '2207020009', '1', '2', 'upload_files/candidate_tracker/74626242321_ priya cv.pdf', NULL, '1', '2022-07-02', 0, '', '3', '59', '2022-07-11', 216000.00, '', '4', '2022-12-06', '2', 'Selected for ESales in Staff Role  - Final Round interviewed by gaurav', '1', '1', '1', '1', '1', '1', '2', '2022-07-04', '1', '6', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 11:38:52', 60, '2022-07-11 10:26:11', 0, NULL, 1),
(9223, 'Haresh.P', '4', '7604979898', '7639525043', 'hariroselin1433@gmail.com', '1997-07-01', 25, '2', '2', 'Pazhani', 'Tele caller', 60000.00, 2, 12500.00, 14000.00, 'Thiruvallur.', 'Chennai', '2207020010', '1', '2', 'upload_files/candidate_tracker/47881637169_Haresh.docx', NULL, '1', '2022-07-02', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable every 6 months job changes not showing importance to the job will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 11:49:47', 85, '2022-07-02 12:02:25', 0, NULL, 1),
(9224, 'J.Manogaran', '4', '8778069016', '9176063258', 'mdzmano8939@gmail.com', '1999-06-11', 23, '2', '2', 'J.vijayakumari', 'Taylor', 15.00, 0, 14.00, 13.00, 'Villivakkam', 'Chennai', '2207020011', '1', '2', 'upload_files/candidate_tracker/85379066066_Resume manogaran.doc', NULL, '1', '2022-07-02', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for tele calling profile', '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-07-02 12:45:41', 1, '2022-07-02 12:55:23', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9225, 'sathiya.k', '4', '9597347920', '', 'tamilsathiya11@gmail.com', '2000-09-11', 21, '3', '2', 'tamilselvi.k', 'flowermaker', 5000.00, 2, 0.00, 10000.00, 'ammapet', 'thanjavur', '2207020012', '', '1', 'upload_files/candidate_tracker/92584949800_Sathiya K Resume.pdf', NULL, '1', '2022-07-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-02 02:53:06', 1, '2022-07-02 03:17:22', 0, NULL, 1),
(9226, '', '0', '6382328813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207020013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-02 04:25:52', 0, NULL, 0, NULL, 1),
(9227, 'C R Ajith Kumar', '11', '8500019892', '', 'AJITHKUMARPCTR@GMAIL.COM', '2000-06-16', 22, '2', '2', 'M Rajendran', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Tirupati', 'Tirupati', '2207020014', '1', '1', 'upload_files/candidate_tracker/14982700274_Resume Ajith.pdf', NULL, '2', '2022-07-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 06:29:25', 85, '2022-07-04 10:31:26', 0, NULL, 1),
(9228, '', '0', '9344331148', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207020015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-02 11:12:09', 0, NULL, 0, NULL, 1),
(9229, 'Ranjithkaran.B', '4', '9790302344', '', 'ranjithkaran052@gmail.com', '2000-01-21', 22, '2', '2', 'Baskaran.S', 'Driver', 24000.00, 2, 14000.00, 14000.00, 'Mannargudi', 'Mannargudi', '2207040001', '1', '2', 'upload_files/candidate_tracker/5825563361_ranjithkaran resume.pdf', NULL, '1', '2022-07-04', 0, '', '3', '59', '2022-07-06', 168000.00, '', '4', '2023-01-05', '2', 'Selected for Thanjavur Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-04 09:42:30', 60, '2022-07-05 06:16:11', 0, NULL, 1),
(9230, 'Sakthivel s', '5', '9043684822', '', 'Sakthivj4070@gmail.com', '1996-06-02', 26, '1', '2', 'Saravanan M', 'Municipal Employee', 200000.00, 2, 0.00, 20000.00, 'Tirupathur', 'Tirupathur', '2207040002', '', '1', 'upload_files/candidate_tracker/96435352571_resume .pdf', NULL, '1', '2022-07-04', 0, '55601', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-04 10:35:55', 1, '2022-07-04 10:45:34', 0, NULL, 1),
(9231, 'D gokulapriya', '16', '8438300761', '', 'Gokulapriya1198@gmail.com', '1998-02-11', 24, '1', '2', 'K durairaj', 'Painter', 10.00, 1, 17400.00, 22000.00, 'Moggapir east', 'Mogappair east', '2207040003', '', '2', 'upload_files/candidate_tracker/91977290052_priyaRESUMEjune.pdf', NULL, '1', '2022-07-04', 15, 'P1121', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Roles, Will Not Sustain ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-04 10:44:43', 85, '2022-07-04 11:21:49', 0, NULL, 1),
(9232, 'Ruban kumar. P', '11', '9551917316', '', 'rubankumar135@gmail.com', '2000-09-30', 21, '2', '2', 'Padmanabhan', 'Printer', 30000.00, 1, 15000.00, 17000.00, 'No 21/23 A, Check post, Velachery, Chennai 600042', 'No 21/23 A, Check Post, Velachery, Chennai 600042', '2207040004', '1', '2', 'upload_files/candidate_tracker/3254261654_Ruban kumar\'s Resume.pdf', NULL, '1', '2022-07-04', 30, '', '3', '59', '2022-08-01', 158496.00, '', '0', NULL, '1', 'need to serve notice Salary TH 13K plus 208', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-04 10:46:19', 1, '2022-07-04 10:50:34', 0, NULL, 1),
(9233, 'Anand Kumar S', '4', '9514520505', '9042479515', 'ananddhana1307@gmail.com', '2002-05-13', 20, '2', '2', 'Dhanachezian', 'College pro', 80000.00, 1, 0.00, 18000.00, 'Periyapalayam', 'Periyapalayam', '2207040005', '1', '1', 'upload_files/candidate_tracker/69374105739_my resume AK.pdf', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 11:00:09', 85, '2022-07-04 11:34:15', 0, NULL, 1),
(9234, 'Rahul', '4', '6382864368', '9360843399', 'rahulraki039@gmail.com', '2001-05-05', 21, '2', '2', 'Renuka', 'Trailer', 20000.00, 2, 0.00, 15000.00, 'Pattabiram', 'Avadi', '2207040006', '1', '1', 'upload_files/candidate_tracker/32108064098_Rahul res.doc', NULL, '1', '2022-07-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 11:02:45', 85, '2022-07-04 11:34:31', 0, NULL, 1),
(9235, 'Shamila', '11', '7305905827', '', 'Shami.imman3@gmail.com', '1998-01-04', 24, '2', '2', 'Thiyagarajan', 'Business', 20000.00, 0, 20000.00, 20000.00, 'Tambaram', 'Tambaram', '2207040007', '1', '2', 'upload_files/candidate_tracker/27017941884_ShamilaResume (1).pdf', NULL, '1', '2022-07-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much exp in Recruitment but Salary Exp is high,no sustainability in the previous exp,will not sustain\n', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-04 11:25:46', 1, '2022-07-04 11:29:24', 0, NULL, 1),
(9236, 'arun karthik s r', '22', '7708896594', '', 'arunkart1116@gmail.com', '1998-11-16', 23, '2', '2', 'rajasekar s', 'business', 200000.00, 1, 0.00, 27000.00, 'chennai', 'sattur', '2207040008', '1', '1', 'upload_files/candidate_tracker/31229238910_ARUN_KARTHIK_RESUME.pdf', NULL, '2', '2022-07-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 11:41:14', 85, '2022-07-04 12:17:35', 0, NULL, 1),
(9237, 'Praveena Selvakumar', '4', '6383759785', '8248984569', 'praveenaselvakumar0000@gmail.com', '1995-05-17', 27, '2', '2', 'Selvakumar', 'Railway', 30000.00, 1, 0.00, 15000.00, 'Saliyamangalam', 'Saliyamangalam', '2207040009', '1', '1', 'upload_files/candidate_tracker/50310751334_Praveena Selvakumar.pdf', NULL, '1', '2022-07-04', 0, '', '3', '59', '2022-07-07', 132000.00, '', '5', '2022-07-09', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 11:41:29', 60, '2022-07-09 05:26:03', 0, NULL, 1),
(9238, 'ARAVIND C', '4', '7358221135', '6383242264', 'aravindjustin1322@gmail.com', '2001-10-13', 20, '1', '2', 'KANNAKI C', 'Home maker', 150000.00, 0, 0.00, 20000.00, 'India', 'India', '2207040010', '', '1', 'upload_files/candidate_tracker/94820937558_RESUME ARAVIND.pdf', NULL, '1', '2022-07-04', 0, 'P1302', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-07-04 11:57:57', 1, '2022-07-04 12:09:16', 0, NULL, 1),
(9239, '', '0', '8825912651', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207040011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-04 12:02:49', 0, NULL, 0, NULL, 1),
(9240, 'ranjini', '4', '9176524122', '', 'ravideepa1020@gmail.com', '2001-08-10', 20, '2', '2', 'ravi', 'building contractor', 15000.00, 1, 0.00, 14000.00, 'kolathur', 'Kolathur', '2207040012', '1', '1', 'upload_files/candidate_tracker/58087179525_ranjiji resume.pdf', NULL, '1', '2022-07-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-04 12:03:15', 1, '2022-07-04 12:47:07', 0, NULL, 1),
(9241, 'C.Hemavathy', '4', '8925415535', '8754573217', 'hemaranu56@gmail.com', '1999-08-16', 22, '2', '2', 'R.chandrasekar c.Renuka', 'Labour', 70000.00, 0, 0.00, 15000.00, 'Mgr nagar', 'Mgr nagar', '2207040013', '1', '1', 'upload_files/candidate_tracker/78582680974_C Hemavathy resume .pdf', NULL, '1', '2022-07-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher sounding  low 5050 profile checked with banu for 2nd round and rejected', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-04 12:11:55', 85, '2022-07-04 12:28:38', 0, NULL, 1),
(9242, 'B.Bhavani', '6', '7358288204', '9092695147', 'bhavanikala0099@gmail.com', '2002-06-02', 20, '2', '2', 'V.Babu', 'Molding', 10000.00, 1, 0.00, 12000.00, 'Saidapet', 'Saidapet', '2207040014', '1', '1', 'upload_files/candidate_tracker/74327601746_Resume26112024110752AM.pdf', NULL, '1', '2024-11-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And performance is good,she have 2 years experience in Bharat matrimony.will check with her in the training Period and CTC discussed as 1.8 LPA she is ok with this .joining on 2nd of Dec she conveyed', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2022-07-04 12:12:43', 104, '2024-11-29 06:03:41', 0, NULL, 1),
(9243, 'Sandhiya S', '4', '7358696298', '9677276722', 'sandhiya2001430@gmail.com', '2001-04-30', 21, '1', '2', 'SELVAM. C. R', 'Ironing', 10000.00, 2, 0.00, 13000.00, 'Jafferkhan pet', 'Saidapet', '2207040015', '', '1', 'upload_files/candidate_tracker/95045560064_Sandhiya Resume New.pdf', NULL, '1', '2022-07-04', 0, 'P130', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication average and much prefers for Non Voice will not sustain', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-04 12:14:35', 1, '2022-07-04 12:25:03', 0, NULL, 1),
(9244, 'Tamilvanan. G', '4', '6369486253', '9944550913', 'tamilvananmsd03@gmail.com', '2002-07-03', 20, '2', '2', 'Govintharaj. K', 'Agriculture', 15.00, 2, 0.00, 15.00, 'Periyapalaiyam', 'Periyapalaiyam', '2207040016', '1', '1', 'upload_files/candidate_tracker/39728085709_file_05Jul22.pdf', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 12:25:17', 85, '2022-07-05 02:57:03', 0, NULL, 1),
(9245, 'N.swetha', '6', '9444429128', '7299822331', 'Swethavaralakshmi2001@gmail.com', '2001-10-31', 20, '1', '2', 'N.Nagaraj', 'Kavari hospital', 10000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2207040017', '', '1', 'upload_files/candidate_tracker/26040754165_swetharesume3.pdf', NULL, '1', '2022-07-04', 0, 'P1272', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'kindly confirm the joining date', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-04 12:40:06', 60, '2022-07-04 04:37:30', 88, '2022-09-13 05:50:48', 0),
(9246, 'S.priyanka', '6', '9361398946', '9514270325', 'Priyankaneil2001@gmail.com', '2001-09-15', 20, '1', '2', 'R.sunil Kumar', 'Beda shop', 15000.00, 4, 0.00, 13000.00, 'chennai', 'chennai', '2207040018', '', '1', 'upload_files/candidate_tracker/89632396355_Priya (Resume).pdf', NULL, '1', '2022-07-04', 0, 'P1272', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, candidate is ok  .\nkindly confirm the joining date', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-04 12:40:30', 60, '2022-07-04 04:38:07', 88, '2022-09-13 05:50:48', 0),
(9247, 'Kamali', '11', '9566050702', '9840815460', 'd17py012kamali@gmail.com', '2007-07-04', 0, '2', '2', 'Father - perumal', 'Private employee', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2207040019', '1', '1', 'upload_files/candidate_tracker/11347901772_kamali_resume.docx', NULL, '1', '2022-07-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,Already holding an offer for 12K and looking for more being a fresher will not sustain for a long', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-04 12:54:08', 85, '2022-07-04 01:10:58', 0, NULL, 1),
(9248, 'pavithra', '4', '6369670344', '', 'Pavithra230197@gmail.com', '1997-01-23', 25, '2', '2', 'bhavani', 'flower sales', 10000.00, 0, 15000.00, 15000.00, 'triplicane', 'triplicane', '2207040020', '1', '2', 'upload_files/candidate_tracker/15574884135_Resume (54).pdf', NULL, '1', '2022-07-04', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Having 4 months telecalling Exp Family need is there,kindly check and let me know your inputs', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-04 01:25:02', 1, '2022-07-04 01:29:10', 0, NULL, 1),
(9249, 'Mohan kameshwaran', '4', '9677038212', '', 'muthumohan145@gmail.com', '2003-01-21', 19, '2', '2', 'Dhanasekaran', 'Telecaller', 30000.00, 1, 0.00, 12000.00, '216,pilliyar Kovil street,paapanadu', '216,pilliyar Kovil street,paapanadu', '2207040021', '1', '1', 'upload_files/candidate_tracker/1122363401__Template_1656922841381.pdf', NULL, '1', '2022-07-04', 0, '', '3', '59', '2022-07-11', 151584.00, '', '3', '2022-10-03', '1', 'Selected for Thanjavur - Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 03:40:51', 60, '2022-07-07 05:04:05', 0, NULL, 1),
(9250, 'kamatham bharath simha', '5', '9618053830', '', 'bharathsimha24@gmail.com', '2000-07-09', 21, '1', '2', 'venakata ramana', 'doctor', 50000.00, 1, 0.00, 20000.00, 'bangalore', 'bangalore', '2207040022', '', '1', 'upload_files/candidate_tracker/15707697949_Bharath', NULL, '1', '2022-07-04', 0, 'p1328', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped Holding an offer with Byjuxquots and expecting high Salary not ready to come down ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-04 03:49:44', 60, '2022-07-06 12:26:59', 0, NULL, 1),
(9251, 'rameswari', '4', '6381693715', '', 'drameswari5@gmail.com', '2000-02-22', 22, '3', '2', 'durai raj', 'farmer', 10000.00, 2, 0.00, 12000.00, 'orathanadu', 'Orathanadu', '2207040023', '', '1', 'upload_files/candidate_tracker/13981963540_ammu.pdf', NULL, '1', '2022-07-04', 0, '', '3', '59', '2022-07-13', 126312.00, '', '5', '1970-01-01', '2', 'selected for Thanjavur  - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-07-04 04:28:12', 60, '2022-07-07 05:08:01', 0, NULL, 1),
(9252, 'Sneha kumar', '4', '9611965241', '', 'snehakumar398@gmail.com', '2001-07-05', 20, '2', '1', 'C.kumar', 'Mesion', 15000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Dharmapuri', '2207040024', '1', '1', 'upload_files/candidate_tracker/1090044579_sneha resume(1).pdf', NULL, '3', '2022-07-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '1', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 05:52:08', 85, '2022-07-08 02:49:35', 0, NULL, 1),
(9253, 'Nivetha.p', '6', '6374062271', '9442736800', 'nivethakrish77@gmail.com', '1998-10-23', 23, '2', '2', 'Perumal.A', 'Sales', 84000.00, 2, 0.00, 12000.00, 'Kollapettai', 'Palanakkanpalayam', '2207050001', '1', '1', 'upload_files/candidate_tracker/27000716884_Nivetha erode.pdf', NULL, '1', '2022-07-05', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'time not suitable and not speaking well in skills', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 10:31:11', 85, '2022-07-05 11:01:41', 0, NULL, 1),
(9254, 'K Gayathri priyanka', '5', '8892909152', '', 'Srivelece@gmail.com', '1991-08-08', 30, '3', '1', 'S K damodaran', 'Father', 50000.00, 1, 3.00, 4.50, 'Chennai', 'Chennai', '2207050002', '', '2', 'upload_files/candidate_tracker/83554405735_KGP RESUME.doc', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary Exp is high and not ready to come down', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 10:38:14', 60, '2022-07-16 05:16:23', 0, NULL, 1),
(9255, 'harish kumar.p', '5', '8328035377', '', 'hari3322kumar@gmail.com', '1996-07-22', 25, '1', '2', 'baswaraj', 'parking incharge', 30000.00, 3, 25000.00, 25000.00, 'bangalore', 'banglore', '2207050003', '', '2', 'upload_files/candidate_tracker/15018421667_harish resume-2-converted (2).pdf', NULL, '1', '2022-07-05', 0, 'p1328', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is not responding the calls properly he is not showing much interest towards the profile.Discussed and asked him to share the required documents after that not responding', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 10:43:45', 60, '2022-07-05 07:21:54', 0, NULL, 1),
(9256, 'Geetha V', '11', '9176434134', '9710125606', 'Vgeetha042000@gmail.Com', '2000-03-04', 22, '2', '2', 'Veeraraghavan', 'auto driver', 15000.00, 1, 0.00, 14000.00, 'mogappair west', 'mogappair west', '2207050004', '1', '1', 'upload_files/candidate_tracker/91390594844_GEETHA RESUME.doc', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,No basic ideas in the recruitment,no clarity in job will not sustain and not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-05 10:49:12', 85, '2022-07-05 11:02:06', 0, NULL, 1),
(9257, 'Kishore.J', '11', '6379138439', '7092526594', 'kishore585.j@gmail.com', '2001-11-22', 20, '2', '2', 'Manjula', 'House keeping', 15000.00, 1, 0.00, 15000.00, 'Mylapore', 'Mylapore', '2207050005', '1', '1', 'upload_files/candidate_tracker/31876124728_KISHORE RESUME (1).pdf', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher no idea on the job Preferred looking for any opportunities as of now ,but much focused in Accounts opening only', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-05 11:20:06', 85, '2022-07-05 11:58:25', 0, NULL, 1),
(9258, 'Ajay', '6', '7349302915', '', 'ajayappu19967@gmail.com', '1998-05-05', 24, '1', '2', 'Manjula', 'House wife', 18000.00, 2, 25000.00, 25000.00, 'MADIWALA', 'MADIWALA', '2207050006', '', '2', 'upload_files/candidate_tracker/11685414483_Ajay (1).docx', NULL, '1', '2022-07-05', 0, 'p1328', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-05 11:26:49', 1, '2022-07-05 11:31:42', 0, NULL, 1),
(9259, 'Sowntharya. T', '4', '6385927506', '8807024267', 'Sowntharyatamil8@gmail.com', '1999-07-01', 23, '3', '2', 'Vanitha. T', 'House wife', 15000.00, 0, 0.00, 8000.00, 'Vadakkur west Street, Vadakkur North', 'Vadakkur North', '2207050007', '', '1', 'upload_files/candidate_tracker/70415730612_SOWNTHARYA res.docx', NULL, '1', '2022-07-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-05 11:57:26', 1, '2022-07-05 12:08:35', 0, NULL, 1),
(9260, 'Bhagya M', '4', '8098014714', '9600943708', 'marimuthubhagya@gmail.com', '1997-06-13', 25, '3', '2', 'Marumuthu N', 'Shop keeper', 15000.00, 3, 8.50, 10000.00, 'Naduppatti', 'Naduppatti', '2207050008', '', '2', 'upload_files/candidate_tracker/48074634591_bhagya resume.docx', NULL, '1', '2022-07-05', 1, '', '3', '59', '2022-07-11', 126312.00, '', '4', '2022-11-01', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 11:57:38', 60, '2022-07-15 04:40:59', 0, NULL, 1),
(9261, 'Mageshwari S', '11', '7339270637', '', 'magisubramanian29@gmail.com', '1999-03-29', 23, '2', '2', 'Subramanian C', 'Supervisor', 30000.00, 1, 0.00, 17000.00, 'Chengalpattu', 'Urapakkam', '2207050009', '1', '1', 'upload_files/candidate_tracker/21538853463_resume_Magi.pdf', NULL, '1', '2022-07-05', 0, '', '3', '59', '2022-07-11', 0.00, '', '4', '2022-11-08', '1', 'Too long Distance Have Exp in Recruitment but into sourcing skills,No sustainability in her previous exp,Longrun doubts', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', 'She appeared again for the interview and ready to relocate before joining- 12K +PT', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-05 11:58:33', 60, '2022-07-09 05:36:43', 0, NULL, 1),
(9262, 'M.GAYATHRI', '4', '8015275478', '', 'ggayathri78337@gmail.com', '2002-01-16', 20, '1', '2', 'N.murugan', 'Relationship Manager', 20000.00, 2, 0.00, 120000.00, 'Velacheery', 'Velacherry', '2207050010', '', '1', 'upload_files/candidate_tracker/2997469375_IMG-20220705-WA0005.pdf', NULL, '1', '2022-07-05', 0, 'P1253', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-05 12:06:21', 1, '2022-07-05 12:19:21', 0, NULL, 1),
(9263, 'elakkiya', '4', '6384171812', '', 'elakkiya312@gmail.com', '2001-10-02', 20, '3', '2', 'kalaiselvan', 'business', 15000.00, 2, 0.00, 10000.00, 'poyyunddarkottai', 'poyyunddarkottai', '2207050011', '', '1', 'upload_files/candidate_tracker/33203169608_elakkiya_compressed.pdf', NULL, '1', '2022-07-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-05 12:24:58', 1, '2022-07-05 12:30:37', 0, NULL, 1),
(9264, '', '0', '9940945987', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207050012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-05 12:29:19', 0, NULL, 0, NULL, 1),
(9265, 'M.GAYATHRI', '6', '9941334098', '', 'Ggayathri78337@gamil', '2002-01-16', 20, '1', '2', 'N.murugan', 'Relationship Manager', 20000.00, 2, 0.00, 120000.00, 'Velacheery', 'Velacherry', '2207050013', '', '1', 'upload_files/candidate_tracker/3483745251_IMG-20220705-WA0005.pdf', NULL, '1', '2022-07-05', 0, 'Jobs', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustain Doubt', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 12:44:34', 60, '2022-07-05 05:16:19', 0, NULL, 1),
(9266, 'madhavan.s', '6', '8778357535', '', 'maddyrichardmaddyrichard966@gmail.com', '1997-05-05', 25, '1', '2', 'subramani', 'formar', 25000.00, 3, 0.00, 17000.00, 'Chennai', 'chenni', '2207050014', '', '2', 'upload_files/candidate_tracker/81094194850_4d6eb80d-f015-4188-ae30-5f5fe6ccd99a.pdf', NULL, '1', '2022-07-05', 0, '', '3', '59', '2022-07-08', 199000.00, '', '3', '2023-10-30', '1', 'Selected for Babu Team in Staff Role', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 12:55:07', 60, '2022-07-07 10:35:43', 0, NULL, 1),
(9267, 'Nimmi JM', '4', '9600647243', '9487291961', 'nimmimano535@gmail.com', '1998-02-09', 24, '2', '2', 'Joseph rajmanohar', 'Retired', 20000.00, 2, 10000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2207050015', '1', '2', 'upload_files/candidate_tracker/72064241910_NIMMI RESUME.pdf', NULL, '1', '2022-07-05', 2, '', '3', '59', '2022-07-13', 138948.00, '', '', '2022-07-20', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 12:55:40', 60, '2022-07-09 05:25:26', 0, NULL, 1),
(9268, 'Elavarasi', '4', '8220770403', '9629972735', 'elaa021298@gmail.com', '1998-12-02', 23, '2', '2', 'Rajendran', 'Farmer', 36000.00, 3, 10000.00, 13000.00, 'Thanjavur', 'Thanjavur', '2207050016', '1', '2', 'upload_files/candidate_tracker/67397302934_ELAA-PDF.pdf', NULL, '1', '2022-07-05', 3, '', '3', '59', '2022-07-11', 151584.00, '', '3', '2022-08-09', '2', 'Selected for Thanjavur Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 12:55:48', 60, '2022-07-07 07:06:57', 0, NULL, 1),
(9269, '', '0', '7358731420', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207050017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-05 01:49:32', 0, NULL, 0, NULL, 1),
(9270, '', '0', '6369531405', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207050018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-05 01:50:01', 0, NULL, 0, NULL, 1),
(9271, 'Dinesh S', '4', '8925357452', '9994545312', 'dineshharry0007@gmail.com', '2002-01-09', 20, '2', '2', 'Sankar B', 'Motar mechanic', 17000.00, 1, 0.00, 15000.00, 'Periyapalayam', 'Periyapalayam', '2207050019', '1', '1', 'upload_files/candidate_tracker/13781465533_SvInstructions.pdf', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too lon distance came along with his friends,will not sustain and run for a long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 02:01:31', 85, '2022-07-05 02:58:58', 0, NULL, 1),
(9272, 'Vignesh.R', '4', '6381197553', '9043950085', 'Thalavignesh1509@mailcom', '2002-06-15', 20, '2', '2', 'Raghu.M', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Arani', 'Arani', '2207050020', '1', '1', 'upload_files/candidate_tracker/27604878072_RESUME.pdf', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 02:02:10', 85, '2022-07-05 02:57:51', 0, NULL, 1),
(9273, 'M ajay', '6', '8220834740', '8190063442', 'majay8134@gmail.com', '2002-10-04', 19, '3', '2', 'Moorthy s', 'Tailor', 20000.00, 1, 0.00, 20000.00, 'Ayanavaram', 'Ayanavaram', '2207050021', '', '1', 'upload_files/candidate_tracker/77734997979_RESUME-AJAY.pdf', NULL, '3', '2022-07-05', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CONFIRM THE JOINING DATE', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 02:52:41', 60, '2022-07-05 04:40:09', 88, '2022-09-13 05:50:48', 0),
(9274, 'Saranya', '6', '7358604741', '', 'saranyasaran673@gmail.com', '1991-12-23', 30, '1', '1', 'Devaraj', 'Private sector', 12000.00, 1, 14000.00, 18000.00, 'Velachery', 'Velachery', '2207050022', '', '2', 'upload_files/candidate_tracker/82061401435_Saran Resume.docx', NULL, '1', '2022-07-05', 0, 'P1255', '3', '59', '2022-07-13', 199500.00, '', '3', '2022-08-16', '1', 'Staff Role -  Babu Team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 03:06:28', 60, '2022-07-09 12:44:05', 0, NULL, 1),
(9275, 'Harel Manic Jonah J', '2', '9003802269', '', 'harelmanic12@gmail.com', '2001-06-12', 21, '2', '2', 'Jebaraj', 'Business', 18000.00, 1, 0.00, 250000.00, 'Chennai, Old Washermenpet', 'Chennai, Old Washermenpet', '2207050023', '1', '1', 'upload_files/candidate_tracker/1269558663_Harel J (Resume).pdf', NULL, '1', '2022-07-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic knowledge in skills, need time to confirm the TxxampC with his family if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-07-11', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 04:53:18', 85, '2022-07-26 06:23:52', 0, NULL, 1),
(9276, 'M VEDHA KRISHNAN', '2', '9025786436', '', 'vedhakrishnanmalaiperumal@gmail.com', '1999-12-15', 22, '2', '2', 'C MALAI PERUMAL', 'CIVIL ENGINEERING', 10000.00, 1, 0.00, 30000.00, 'THIRUVALLUR', 'THIRUVALLUR', '2207050024', '1', '1', 'upload_files/candidate_tracker/63995293652_RESUMECV.pdf', NULL, '1', '2022-07-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas with Skills,not much comfort with TxxampC,Will not sustain for a long not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 05:47:38', 85, '2022-07-05 06:58:42', 0, NULL, 1),
(9277, 's arun kumaran', '31', '9941218578', '', 'arunkumaran1099@gmail.com', '2001-09-09', 20, '2', '2', 'm shanmugam', 'auto driver', 20000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2207050025', '1', '1', 'upload_files/candidate_tracker/71518580410_arun resume..docx', NULL, '1', '2022-07-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Basic Ideas With Skills, Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable,need to check with brother for every things ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 06:00:05', 85, '2022-07-06 09:29:15', 0, NULL, 1),
(9278, 'Mahalakshmi', '31', '8270596867', '', 'Gmahamlr@gmail.com', '1999-04-24', 23, '2', '2', 'Govintharaj', 'Former', 15000.00, 1, 0.00, 18000.00, 'Mayiladuthurai', 'Velacheri', '2207050026', '1', '1', 'upload_files/candidate_tracker/56343882081_Abi Resume.docx', NULL, '1', '2022-07-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Much ideas with  skills not comfort in TxxampC Will not Join', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 09:54:32', 85, '2022-07-06 12:25:52', 0, NULL, 1),
(9279, 'Sathish', '31', '9176453925', '', 'tfrsathish@gmail.com', '1999-06-12', 23, '2', '2', 'Ramesh', 'Business', 30000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2207060001', '1', '1', 'upload_files/candidate_tracker/43798808325_Sathish.pdf', NULL, '1', '2022-07-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher have basic ideas need to check with family for TxxampC ', '2', '1', '0', '1', '1', '0', '2', '2022-07-11', '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-06 10:20:26', 1, '2022-07-06 10:23:18', 0, NULL, 1),
(9280, 'Soundharrajan S', '31', '9894339072', '', 'soundharsoundhar1496@gmail.com', '2001-09-08', 20, '2', '2', 'Shanmugasundharam', 'Handloom', 15000.00, 1, 0.00, 23000.00, '2/145 j.j.colony Mettupatti thathanoor salem', 'Lakeview road west Mambalam near bharathimamdabam', '2207060002', '1', '1', 'upload_files/candidate_tracker/86146944410_soundharrajanS Resume.pdf', NULL, '1', '2022-07-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable,Bit Attitude Salary Exp is high', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-06 10:39:43', 85, '2022-07-06 10:53:47', 0, NULL, 1),
(9281, 'SIDDARTHAN A', '5', '9500559821', '', 'sidh2829@gmail.com', '1996-11-29', 25, '1', '1', 'Adhinarayanan. K', 'Farmer', 10000.00, 1, 23000.00, 30000.00, 'Kurubarapalli', 'Madiwala', '2207060003', '', '2', 'upload_files/candidate_tracker/3585213660_sidh.resume.docx', NULL, '1', '2022-07-06', 0, 'P1318', '3', '59', '2022-07-11', 333000.00, '', '4', '2022-12-19', '2', 'Selected for Muppudathy Team with PF/PT', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-06 11:16:33', 60, '2022-07-09 10:11:51', 0, NULL, 1),
(9282, 'JAFFAR SHARIFF U', '31', '9841233384', '', 'jaffarraider007@gmail.com', '1996-12-16', 25, '2', '2', 'UPHEDUR REHMAN', 'business', 15000.00, 1, 0.00, 15000.00, 'CHENNAi', 'CHENNAi', '2207060004', '1', '1', 'upload_files/candidate_tracker/70501258699_Jaffar IT.pdf', NULL, '1', '2022-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher only basic ideas in HTML/CSS need to learn a lot Not much comfort in TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-06 12:30:26', 85, '2022-07-07 11:08:46', 0, NULL, 1),
(9283, 'umar farook', '23', '9994251323', '', 'umarfarook1911@gmail.com', '1999-11-19', 22, '2', '2', 'parent', 'daily wage', 12000.00, 2, 0.00, 20000.00, '80/2, Lakshmi nagar,salem-1.', 'sub register office, Adyar, Chennai-600020', '2207060005', '1', '1', 'upload_files/candidate_tracker/77291036184_UMAR FAROOK RESUME_compressed.pdf', NULL, '1', '2022-07-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Course in Besant tech,Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-06 12:39:34', 85, '2022-07-06 01:05:15', 0, NULL, 1),
(9284, 'Nishanthi', '23', '7397460682', '6369759908', 'nishayashi1234@gmail.com', '2007-07-06', 15, '2', '2', 'Parent', 'House wife', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2207060006', '1', '1', 'upload_files/candidate_tracker/49221032243__Template_1652331377346.pdf', NULL, '1', '2022-07-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Course In Besant Tech,Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable Too long Distance\n', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-06 12:40:12', 85, '2022-07-06 01:05:48', 0, NULL, 1),
(9285, 'Vinothkumar', '23', '9751456095', '', 'Vinoth97217@gmsil.com', '1997-05-20', 25, '2', '2', 'Parent', 'Farmer', 12000.00, 1, 0.00, 20000.00, 'Neyveli', 'Chennai', '2207060007', '1', '1', 'upload_files/candidate_tracker/10201939482_vinoth resume3.pdf', NULL, '1', '2022-07-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Course In Besant Tech,Ok with TxxampC but need to give his confirmation after check with his family', '2', '1', '', '1', '1', '', '2', '2022-07-11', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-06 12:41:03', 85, '2022-07-06 01:05:30', 0, NULL, 1),
(9286, 'Pavithra', '6', '7358639921', '', 'pavi030701@gmail.com', '2000-10-05', 21, '1', '2', 'Saravanan', 'Cooli', 100000.00, 1, 15.00, 20000.00, 'Vyasarpadi', 'Vyasarpadi', '2207060008', '', '2', 'upload_files/candidate_tracker/90325024779_pavithraRESUME[4].pdf', NULL, '1', '2022-07-06', 0, 'P1272 - hariharan', '3', '59', '2022-07-11', 199500.00, '', '5', '1970-01-01', '2', 'Selectde  for Syed Team in Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-06 01:23:51', 60, '2022-07-07 07:11:28', 0, NULL, 1),
(9287, 'thirumalai kumar g', '13', '8675315956', '7598204224', 'thirumalaig2000@gmail.com', '2000-04-02', 22, '3', '2', 'gomathinayagam s', 'farmer', 10000.00, 3, 0.00, 300000.00, '4/30c new street pappankulam', '4/30c New Street Pappankulam', '2207060009', '', '1', 'upload_files/candidate_tracker/51244646349_Resume-Thirumalai.pdf', NULL, '1', '2022-07-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Much Comfort With TxxampC, Will Not Sustain For A Long Not Suitable Fresher no basic ideas second Round Reject', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-06 03:19:48', 1, '2022-07-06 03:24:03', 0, NULL, 1),
(9288, 'Nivetha A', '31', '8925672993', '9952949646', 'nivethaadhibca@gmail.com', '1999-05-21', 23, '2', '2', 'Adhikesavan N', 'Welder', 70000.00, 1, 0.00, 15.00, 'Melmaruvathur', 'Melmaruvathur', '2207060010', '1', '1', 'upload_files/candidate_tracker/55045004853_nivethaadhikesavan.pdf-1.pdf', NULL, '1', '2022-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She in into testing and no basic ideas in PHP/React Skills will not Sustain and not much comfort with TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-06 04:43:42', 85, '2022-07-07 09:44:54', 0, NULL, 1),
(9289, 'siva', '5', '6381157922', '', 'sivabalan9500@gmail.com', '2002-02-07', 20, '2', '2', 'elumalai', 'building contractor', 15000.00, 2, 15000.00, 18000.00, 'avadi', 'avadi', '2207060011', '2', '2', 'upload_files/candidate_tracker/39855589030_E.SIVA.doc', NULL, '1', '2022-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,have exp in sales Part time but no  documents with him,Salary exp in Very high,Will not sustain and the distance also too long,Attended 2nd round and the feedback was same', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-06 08:20:22', 1, '2022-07-06 08:22:31', 0, NULL, 1),
(9290, 'lourdu mary', '4', '9941903365', '', 'lourdumahi@gmail.com', '2002-06-08', 20, '2', '2', 'albert', 'turner', 15000.00, 1, 0.00, 12000.00, 'chennai', 'royapuram', '2207060012', '2', '1', 'upload_files/candidate_tracker/97641092960_lourdumary resume .pdf', NULL, '1', '2022-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Looking much for Non Voice Data Entry only,She also preferred to work in Telecalling - But got rejected in 2nd round Sales Manager', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-06 08:46:22', 1, '2022-07-06 08:47:52', 0, NULL, 1),
(9291, 'VENKATESH S', '23', '9585937785', '9360545203', 'venkatvis003@gmail.com', '1999-02-05', 23, '2', '2', 'SANKARANARAYANAN L', 'Front end developer', 15000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2207070001', '1', '1', 'upload_files/candidate_tracker/70472863293_Resume2.pdf', NULL, '1', '2022-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, No basic ideas in the Skills, will not sustain for a long not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-07 09:48:30', 85, '2022-07-07 10:03:38', 0, NULL, 1),
(9292, 'Mahendran', '23', '8608120316', '9659254912', 'mahendran361999@gmail.com', '1999-06-03', 23, '2', '2', 'Muthupandi', 'Front end Developer', 15000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2207070002', '1', '1', 'upload_files/candidate_tracker/17603188066_Resume.pdf', NULL, '1', '2022-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No, No Basic Ideas In The Skills, Will Not Sustain For A Long Not Suitab', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-07 09:48:30', 85, '2022-07-07 10:04:10', 0, NULL, 1),
(9293, 'Aswin', '13', '7305833778', '8681995310', 'aswin23.jan.2002@gmail.com', '2002-01-23', 20, '2', '2', 'Elumalai', 'Driver', 21000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2207070003', '1', '1', 'upload_files/candidate_tracker/54545431330_ASWIN resume.docx', NULL, '1', '2022-07-07', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have basic knowledge in the skills can be trained,kindly check and let me know your inputs', '2', '2', '', '1', '1', '', '2', '2022-07-09', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-07 10:11:23', 85, '2022-07-07 10:18:45', 0, NULL, 1),
(9294, 'MOHAMED ASIF', '27', '7339515356', '9751883934', 'mohamedasifcool@gmail.com', '2001-10-11', 20, '2', '2', 'Dawood batcha', 'Web development', 30000.00, 1, 0.00, 16000.00, 'Thanjavur dist, adirampattinam', 'Chennai, royapettah', '2207070004', '1', '1', 'upload_files/candidate_tracker/96104184745_Resume2-Sample.docx', NULL, '1', '2022-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication,no basic ideas fresher Will not run in a long,Will not sustain\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-07 10:17:30', 85, '2022-07-07 10:33:45', 0, NULL, 1),
(9295, 'Gokulvel', '5', '6380310787', '8778013368', 'Blackiloveyougb@gmail.com', '2000-06-30', 22, '2', '2', 'Kavita', 'Teacher', 80000.00, 2, 16000.00, 18000.00, 'Dharmapuri', 'Saidapet', '2207070005', '25', '2', 'upload_files/candidate_tracker/53832388064_Gokulvel resume.pdf', NULL, '1', '2022-07-07', 12, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,No sustainability in his previous Exp,also the reasons were not seems to genuine,however ask the candidate to wait for the 2nd round but he left without attending - Rejected', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-07 11:17:39', 60, '2022-07-09 05:16:51', 0, NULL, 1),
(9296, '', '0', '7483071810', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207070006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-07 11:25:30', 0, NULL, 0, NULL, 1),
(9297, 'arun kumar j', '31', '9840322402', '8525886084', 'mrarunjak@gmail.com', '1997-08-02', 24, '2', '2', 'jaya kumar r', 'railways', 70000.00, 1, 0.00, 250000.00, 'chennai', 'chennai', '2207070007', '1', '1', 'upload_files/candidate_tracker/56458346017_Arun Kumar.J B.E. CSE.pdf', NULL, '1', '2022-07-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Freelancer and Exp is some what high,Have project Exp but sustainability doubts  as her sister is in TCS in same React Skills', '2', '1', '', '1', '1', '', '2', '2022-07-11', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-07 01:30:43', 85, '2022-07-08 11:00:00', 0, NULL, 1),
(9298, 'Joshnna', '5', '6369194571', '', 'joshnnajoe99@gmail.com', '1999-07-28', 22, '2', '1', 'Tamilarasan', 'Event management', 30000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2207070008', '25', '2', 'upload_files/candidate_tracker/51062156526_IMG_20220706_212215.pdf', NULL, '1', '2022-07-07', 0, '', '9', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Wrongly shared to Me', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-07 02:22:53', 60, '2022-07-07 05:24:25', 0, NULL, 1),
(9299, 'Asmath.S', '4', '6382260028', '', 'asmathasma01@gmail.com', '2000-05-25', 22, '3', '2', 's.sheik hussain', 'Real estate', 70000.00, 4, 0.00, 7000.00, 'Thanjavur', 'Thanjavur', '2207070009', '', '1', 'upload_files/candidate_tracker/6433425389_ASMA RESUME.docx', NULL, '1', '2022-07-07', 0, '', '3', '59', '2022-07-08', 126312.00, '', '3', '2022-11-09', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-07-07 02:55:24', 60, '2022-07-07 04:41:40', 0, NULL, 1),
(9300, 'Sujeeth k', '23', '9080735524', '7639614650', 'sujeethkalaiyarasan09@gmail.com', '1999-04-09', 23, '2', '2', 'Kalaiyarasan k', 'Farmer', 100000.00, 1, 0.00, 280000.00, 'Dharmapuri', 'Chennai', '2207070010', '1', '1', 'upload_files/candidate_tracker/4440827819_SUJEETH_RESUME (1).pdf', NULL, '1', '2022-07-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-07 03:08:32', 85, '2022-07-07 06:27:21', 0, NULL, 1),
(9301, 'Ravichandran', '2', '8220513662', '8489174516', 'ravichan997@gmail.com', '2001-02-28', 21, '2', '2', 'Perumal', 'Farmer', 10000.00, 2, 0.00, 30000.00, 'Trichy', 'Chennai', '2207070011', '1', '1', 'upload_files/candidate_tracker/34734006732_CHANDRAN RESUME.pdf', NULL, '1', '2022-07-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No understanding,will not handle our work,not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-07 03:39:57', 85, '2022-07-07 06:27:50', 0, NULL, 1),
(9302, '', '0', '9566238669', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207070012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-07 04:41:46', 0, NULL, 0, NULL, 1),
(9303, 'Vaishnavi', '31', '9566238760', '7548887458', 'vaishnavid1978@gmail.com', '2000-11-22', 21, '2', '2', 'Deivasigamani', 'BDO office working in OA', 15000.00, 2, 0.00, 20000.00, 'Maduranthagam', 'Maduranthagam', '2207070013', '1', '1', 'upload_files/candidate_tracker/38410858277_v.resume.pdf', NULL, '1', '2022-07-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-07 04:42:46', 85, '2022-07-08 09:59:27', 0, NULL, 1),
(9304, 'mohammed imran', '23', '7305858119', '', 'mohammedimransk786@gmail.com', '2000-06-13', 22, '2', '2', 'hadi basha', 'front end developer', 80000.00, 0, 0.00, 18000.00, 'avadi tnhb', 'avadi tnhb', '2207070014', '1', '1', 'upload_files/candidate_tracker/88427459276_MOHAMMED IMRAN CV 2.pdf', NULL, '1', '2022-07-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance ,not much strong in the skills not suitable\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-07 05:44:08', 1, '2022-07-08 12:13:10', 0, NULL, 1),
(9305, 'Krishika M', '22', '9150427202', '', 'krishikamadesh0412@gmail.com', '1998-12-04', 23, '2', '2', 'Madesh M', 'Cashier', 60000.00, 1, 24000.00, 30000.00, 'Chennai', 'Chennai', '2207070015', '1', '2', 'upload_files/candidate_tracker/15332327598_Krishi resume.pdf', NULL, '1', '2022-07-08', 0, '', '3', '59', '2022-07-20', 146052.00, '', '', '1970-01-01', '1', 'Selected for Content Writing - 12K TH 2yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-07 07:28:50', 85, '2022-07-08 11:33:16', 0, NULL, 1),
(9306, 'Subha a', '4', '6384709243', '', 'Subha20001@gmail.com', '2001-05-05', 21, '2', '2', 'Andhan', 'Not working', 10000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2207080001', '2', '1', 'upload_files/candidate_tracker/95241465855_5_6169996712870938131 (3).pdf', NULL, '1', '2022-07-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-08 12:47:44', 1, '2022-07-08 12:50:27', 0, NULL, 1),
(9307, 's.subanu', '4', '7092950419', '9791702154', 'subanu709295@gmail.com', '2001-06-17', 21, '3', '2', 'saravanan', 'auto driver', 46000.00, 2, 8000.00, 12000.00, 'thanjavur', 'thanjavur', '2207080002', '', '2', 'upload_files/candidate_tracker/69260614684_SUBANU.pdf', NULL, '1', '2022-07-08', 2, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for team voice not clear', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-08 10:11:50', 85, '2022-07-08 02:17:19', 0, NULL, 1),
(9308, 'papit patitha.a', '4', '8056989236', '9092362472', 'papitparitha@gmail.com', '1999-06-02', 23, '3', '2', 's.agustin', 'kumbakonam', 300000.00, 5, 0.00, 10000.00, 'thanjavur', 'kumbakonam', '2207080003', '', '1', 'upload_files/candidate_tracker/96847555574_papit_compressed.pdf', NULL, '1', '2022-07-08', 0, '', '3', '59', '2022-07-11', 126312.00, '', '', '2022-07-22', '2', 'Selected for Thanjavur Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-07-08 11:55:28', 60, '2022-07-09 12:54:38', 0, NULL, 1),
(9309, 'Sona', '4', '8825467847', '', 'charusona6@gmail.com', '2000-05-22', 22, '2', '2', '4/99p anna nagar dharampuri', 'mazan', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2207080004', '1', '1', 'upload_files/candidate_tracker/22680665055_sona resume.pdf', NULL, '1', '2022-07-08', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-08 01:34:20', 85, '2022-07-08 02:17:38', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9310, 'monisha', '4', '7339167858', '', 'monishaking1718@gmail.com', '1998-08-17', 23, '3', '2', 'madhialagan', 'suppervisor', 14000.00, 2, 0.00, 8000.00, 'thanjavur', 'thanjavur', '2207080005', '', '1', 'upload_files/candidate_tracker/12802630781_CV_202205311400479.pdf', NULL, '1', '2022-07-08', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'voice not clear not suit for team and telesales.......', '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-08 02:53:52', 1, '2022-07-08 03:29:45', 0, NULL, 1),
(9311, 'Sineka Udhayakumar', '4', '7604930778', '9626390243', 'Snehaudhaya111@gmail.com', '1998-07-11', 23, '3', '2', 'Udhayakumar', 'Farmer', 8000.00, 1, 0.00, 10000.00, 'Budalur', 'Budalur', '2207080006', '', '1', 'upload_files/candidate_tracker/98820870244_RESUME SENEKA.docx', NULL, '1', '2022-07-08', 0, '', '3', '59', '2022-07-12', 126312.00, '', '', '2022-07-20', '2', 'Selected For Thanjavur Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-07-08 02:54:08', 60, '2022-07-09 12:55:16', 0, NULL, 1),
(9312, 'visalatchi.a', '4', '8870872797', '9080458125', 'visa42108@gemail.com', '1993-03-02', 29, '3', '1', 'ayyappan', 'driver', 12000.00, 2, 0.00, 10000.00, 'thanjavur', 'thanjavur', '2207080007', '', '1', 'upload_files/candidate_tracker/92154431018_Visalatchi Resume HS.pdf', NULL, '1', '2022-07-08', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'age too high technically week and not fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-08 02:54:09', 1, '2022-07-08 03:26:15', 0, NULL, 1),
(9313, 'K.asha', '4', '6383017768', '9442714045', 'ashakannan2748@gmail.com', '1998-10-24', 23, '3', '2', 'Mr G.kannan mrs k vijayalakshmi', 'Business', 40000.00, 2, 0.00, 10000.00, '40A/1 Trichy main road vallam 613403', 'Vallam', '2207080008', '', '1', 'upload_files/candidate_tracker/58656719184_ASHA.docx', NULL, '1', '2022-07-08', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'voice not clear speaking problem not fit for telesales', '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-08 02:54:19', 1, '2022-07-08 03:15:48', 0, NULL, 1),
(9314, 'PRABHAKARAN', '31', '9025647338', '', 'asprabha453@gmail.com', '2001-07-31', 20, '2', '2', 'AZHAGAR SAMY', 'FARMER', 7000.00, 1, 0.00, 20000.00, 'Villupuram', 'Villupuram', '2207080009', '1', '1', 'upload_files/candidate_tracker/32251749350_1Resume..pdf', NULL, '3', '2022-07-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher have basic knowledge in HTML, CSS JS, and learnt React on his own, Seems not much convinced with the TxxampC, need time to check with family. If he comes back let us try for the technical round', '2', '1', '', '1', '1', '', '2', '2022-07-11', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-08 03:38:02', 85, '2022-07-11 03:48:12', 0, NULL, 1),
(9315, 'Shaik Abdul Rasheed', '5', '7013366897', '8465889017', 'skrasheed94@gmail.com', '2000-09-27', 21, '1', '2', 'Shaik Masthan vali', 'Worker', 70000.00, 1, 0.00, 15000.00, 'Bangalore', 'Bangalore', '2207080010', '', '1', 'upload_files/candidate_tracker/8655367100_ABDUL RASHEED RESUME-converted.pdf', NULL, '1', '2022-07-08', 0, 'P1328', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-08 03:59:32', 1, '2022-07-08 04:13:17', 0, NULL, 1),
(9316, 'KUTTALAM B C', '2', '9655802863', '8608287503', 'kuttalambc@gmail.com', '1996-03-23', 26, '3', '2', 'Boothalingam K', 'Labour', 18000.00, 1, 0.00, 25000.00, 'Nagercoil', 'Adambakam', '2207080011', '', '1', 'upload_files/candidate_tracker/76700351331_KUTTALAM RESUME.pdf', NULL, '1', '2022-07-08', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have done with 2nd round technical need to be trained in internship candidate should come backwith his confirmation', '2', '1', '0', '1', '1', '0', '2', '2022-07-11', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-08 04:02:12', 1, '2022-07-08 04:15:11', 0, NULL, 1),
(9317, 'Vijay', '22', '9790758213', '', 'Vijayjan2000@gmail.com', '2001-01-27', 21, '2', '2', 'Lakshman', 'Security', 200000.00, 1, 0.00, 300000.00, 'Chennai', 'Adambakkam, chennai', '2207080012', '1', '1', 'upload_files/candidate_tracker/49131624393_VijayResume.pdf', NULL, '1', '2022-07-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to check the writing content,currently in Full time graduation,Communication ok,Salary Exp is also high.', '2', '2', '', '1', '1', '', '2', '2022-07-11', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-08 05:26:08', 85, '2022-07-09 02:36:30', 0, NULL, 1),
(9318, 'Mohammed Nafees N', '31', '9943955182', '', 'mohammednafeesn08@gmail.com', '2001-01-08', 21, '2', '2', 'Mohammed Niyaz N', 'Business owner', 20000.00, 2, 0.00, 300000.00, 'Vaniyambadi, Tamil Nadu', 'Chennai, Tamilnadu', '2207090001', '1', '1', 'upload_files/candidate_tracker/26110759803_MohammedNafeesN (1) (1).pdf', NULL, '1', '2022-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have basic skills but not comfortable with the TxxampC being a fresher,also high CTC Exp', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-09 12:13:42', 1, '2022-07-18 10:01:50', 0, NULL, 1),
(9319, 'Sam Daniel S.K', '5', '9840023623', '7358744589', 'stunningsam786@gmail.com', '1996-08-01', 25, '4', '2', 'Senthil Kumar N', 'TNSC Bank Sub-staff', 20000.00, 1, 0.00, 25000.00, 'No:30, Demonte Street, Santhome High Road,', 'Chennai', '2207090002', '', '1', 'upload_files/candidate_tracker/98151982959_Sam Daniel (RESUME).docx', NULL, '1', '2022-07-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much importance towards the job,he is very clear if he gets an opportunity he will move for that positions.Will not sustain not suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-09 10:13:11', 1, '2022-07-09 10:23:12', 0, NULL, 1),
(9320, 'Karthikeyan', '2', '9025959237', '', 'karthikeyanm801@gmail.com', '1999-12-01', 22, '2', '2', 'meenachi sundaram', 'pharmacist', 30000.00, 2, 0.00, 25000.00, 'thanjavur', 'thanjavur', '2207090003', '1', '1', 'upload_files/candidate_tracker/28649470188_Karthikeyan .pdf', NULL, '3', '2022-07-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested with TxxampC,Salary Exp is high', '2', '1', '', '1', '3', '', '2', '2022-07-11', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-09 10:13:28', 85, '2022-07-09 12:51:00', 0, NULL, 1),
(9321, 'rakesh r', '4', '9360111378', '', 'rakeshdaniel1112@gmail.com', '2001-04-26', 21, '2', '2', 'rajan', 'tennis marker', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2207090004', '2', '1', 'upload_files/candidate_tracker/23982507109__Template_1657196055897.pdf', NULL, '1', '2022-07-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication average need to open a lot,Will not run in a long not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-09 10:14:13', 1, '2022-07-09 10:16:14', 0, NULL, 1),
(9322, 'yogeshwaran r', '4', '9360400521', '', 'yw476923@gamil.com', '2002-02-08', 20, '2', '2', 'ramesh', 'plumber', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2207090005', '2', '1', 'upload_files/candidate_tracker/58843210768_Yogeshwaran resumae.docx', NULL, '1', '2022-07-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-09 10:18:45', 1, '2022-07-09 10:21:16', 0, NULL, 1),
(9323, '', '0', '9941051550', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207090006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-09 10:23:22', 0, NULL, 0, NULL, 1),
(9324, 'Gopi', '4', '9384392427', '9500380204', 'pathmangopi@gmail.com', '1993-06-10', 29, '2', '2', 'Jayavel.D', 'Daily wager', 20000.00, 0, 17000.00, 22000.00, 'Walajabad', 'Walajabad', '2207090007', '1', '2', 'upload_files/candidate_tracker/11868655008_Gopi.J. Resume.pdf', NULL, '1', '2022-07-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-09 11:13:41', 85, '2022-07-11 09:40:13', 0, NULL, 1),
(9325, 'J VETRI MICHAEL RAJ', '22', '8220764255', '', 'vetri822kryptonian@gmail.com', '2000-05-24', 22, '2', '2', 'M JOHN KARUNAKARAN', 'ELECTRICIAN', 15000.00, 2, 0.00, 20000.00, 'MADURAI', 'CHENNAI', '2207090008', '1', '2', 'upload_files/candidate_tracker/41248913492_Intelligent CV Document.pdf', NULL, '3', '2022-07-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-09 12:00:06', 85, '2022-07-11 05:48:12', 0, NULL, 1),
(9326, 'Suraj', '25', '9740712717', '8979502772', 'Surajnesaragi2015@gmail.com', '1997-02-01', 25, '3', '2', 'Raju', 'SSLC', 15000.00, 1, 15000.00, 17000.00, 'Examba Tal: chickodi Dist: Belguam', 'HSR LAYOUT Bangalore is', '2207090009', '', '2', 'upload_files/candidate_tracker/3393454427_SURAJ NESARAGI New.doc', NULL, '1', '2022-07-09', 30, '', '3', '59', '2022-07-14', 216000.00, '', NULL, '2024-10-25', '2', 'Selected for ESales Bangalore Consultant Role', '8', '1', '', '2', '2', '', '2', '1970-01-01', '3', '6', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-07-09 03:16:13', 60, '2022-07-13 01:36:22', 0, NULL, 1),
(9327, 'Divya', '13', '6385339948', '', 'divyajobvacancy@gmail.com', '2001-03-07', 21, '2', '2', 'Dininakaran', 'Farmer', 10000.00, 2, 0.00, 25000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2207090010', '1', '1', 'upload_files/candidate_tracker/54024409403_divya resume.pdf', NULL, '3', '2022-07-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-09 05:57:31', 85, '2022-07-09 06:24:24', 0, NULL, 1),
(9328, 'Vaithiyanathan.k', '6', '9597580604', '', 'vaithyvijay@gmail.com', '1994-09-04', 27, '2', '2', 'Mother-lakshmi', 'Housewife', 65000.00, 1, 0.00, 15000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2207100001', '1', '1', 'upload_files/candidate_tracker/25904497558_Resume(1).pdf', NULL, '1', '2022-07-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-10 05:38:00', 85, '2022-07-11 09:39:53', 0, NULL, 1),
(9329, 'Rojasri. P', '6', '9345353079', '', 'www.roja2022@gmail.com', '2002-05-25', 20, '1', '2', 'Pazhani', 'Employee', 7000.00, 1, 0.00, 15000.00, 'Tiruttani', 'Tiruttani', '2207110001', '', '1', 'upload_files/candidate_tracker/1802666397_Roja Sri. P.docx', NULL, '1', '2022-07-11', 0, 'P1036', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for IT openings but not comfortable inTxxampC No basic ideas in Skills', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 09:52:52', 1, '2022-07-11 10:04:20', 0, NULL, 1),
(9330, 'Deepika.s', '6', '9789079864', '', 'Dpd33156@gmail.com', '2002-02-05', 20, '1', '2', 'Gangammal.s', 'Agriculture work', 7000.00, 3, 0.00, 15000.00, 'Arakkonam', 'Avadi', '2207110002', '', '1', 'upload_files/candidate_tracker/47367237810_Deepika .pdf', NULL, '1', '2022-07-11', 0, 'P1036', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For IT Openings But Not Comfortable InTxxampC No Basic Ideas In Skills', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 09:55:17', 1, '2022-07-11 10:38:07', 0, NULL, 1),
(9331, 'P. Rajeshwari', '6', '9787050269', '', 'rajeshwari444raji@gmail.com', '2002-10-07', 19, '1', '2', 'C. Pachaiyappan', 'Agriculture', 6000.00, 1, 0.00, 15000.00, 'Tiruttani', 'Tiruttani', '2207110003', '', '1', 'upload_files/candidate_tracker/58176282619_raji.pdf', NULL, '1', '2022-07-11', 0, 'P1036', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For IT Openings But Not Comfortable InTxxampC No Basic Ideas In Skills', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 09:55:58', 1, '2022-07-11 10:25:13', 0, NULL, 1),
(9332, 'R.Santhakumar', '6', '7358635529', '9789395241', 'rajavalli.rsk@gmail.com', '2000-01-07', 22, '1', '2', 'Raja', 'Fishing', 20000.00, 1, 0.00, 20000.00, 'Neelangarai', 'Neerangarai', '2207110004', '', '1', 'upload_files/candidate_tracker/49878346518_RSK RESUME fORMAT (1)-converted.pdf', NULL, '1', '2022-07-11', 0, 'P1251-kalaivanan', '4', '57', NULL, 0.00, '', '0', NULL, '1', '5050 Profile not showing importance much with the job,Career Gap,Need to train a lot,Sustainability Doubts kindly check and let me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 10:40:04', 1, '2022-07-11 10:53:27', 0, NULL, 1),
(9333, 'Shalini S', '13', '9843359627', '8220225862', 'shalinisaran1451999@gmail.com', '1999-05-14', 23, '2', '2', 'Saravanan G', 'Fisherman', 12500.00, 2, 0.00, 18000.00, 'Thanjavur', 'Porur Chennai', '2207110005', '1', '1', 'upload_files/candidate_tracker/87729424259_SHALINI - RES.docx', NULL, '1', '2022-07-11', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have some basic skills knowledge in PHP,completed training in besant tech,2nd interviewed by latha and on hold candidate need to come back with her confirmation', '2', '1', '0', '1', '1', '0', '2', '2022-07-13', '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-11 11:19:02', 1, '2022-07-11 11:54:02', 0, NULL, 1),
(9334, 'Monica R', '13', '7448540270', '7338998842', 'monicaramesh1901@gmail.com', '2000-08-01', 21, '2', '2', 'Siva', 'Self employed', 15000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2207110006', '1', '1', 'upload_files/candidate_tracker/35477264912_Monica resume .pdf', NULL, '1', '2022-07-11', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need time to confirm with her sister on the position and the txxampC She hold another final round interview ,if she comes back need to check', '2', '1', '0', '1', '1', '0', '2', '2022-07-18', '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-11 11:21:33', 1, '2022-07-11 11:29:18', 0, NULL, 1),
(9335, 'Siddharth aswin', '6', '7401144352', '9710275456', 'Siddharthaswin24@gmail.com', '2001-03-18', 21, '1', '2', 'Sumathi', 'Computer typist', 20000.00, 2, 0.00, 15000.00, 'Kilpauk', 'Kilpauk', '2207110007', '', '1', 'upload_files/candidate_tracker/61892632258_siddharth resume (FEB 1,22.pdf', NULL, '3', '2022-07-11', 0, 'P1253', '4', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication 4 months exp in Vissa Insurance but no proper relieving,Seems 5050 kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 11:32:06', 60, '2022-07-11 06:28:34', 0, NULL, 1),
(9336, '', '0', '9710275456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-11 11:42:50', 0, NULL, 0, NULL, 1),
(9337, 'Kerrthiga.B', '6', '8925413740', '6383433696', 'kerthibala2002@gmail.com', '2002-01-25', 20, '4', '2', 'Balasubramaniyam', 'Coolie', 80000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2207110009', '', '1', 'upload_files/candidate_tracker/12960374390_KERTHIGA RESUME 2022 (1).pdf', NULL, '3', '2022-07-11', 0, '', '4', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,need to open a lot 5050 profile kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 11:43:43', 60, '2022-07-11 06:35:49', 0, NULL, 1),
(9338, 'POOJA.G.M', '6', '8939169206', '7871622386', 'Poojagm2001@gmail.com', '2001-07-30', 20, '4', '2', 'V.Ganesan', 'Corporation', 80000.00, 1, 0.00, 15000.00, 'Thrivottyour', 'Thrivottyour', '2207110010', '', '1', 'upload_files/candidate_tracker/54076139779_POOJARESUME.pdf', NULL, '3', '2022-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate not showing interest as her friend not got  selected', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 11:44:12', 60, '2022-07-16 05:16:58', 0, NULL, 1),
(9339, 'Stalin tamil selvan.P', '4', '9080840982', '9787574004', 'Stalin112141@gmail.com', '1995-11-22', 26, '2', '2', 'S.palani durai', 'driver', 35000.00, 2, 15000.00, 16000.00, 'Thanjavur', 'thanjavur', '2207110011', '1', '2', 'upload_files/candidate_tracker/56205669152_STALIN_Resume (1) (2).pdf', NULL, '1', '2022-07-11', 0, '', '3', '59', '2022-07-18', 164208.00, '', '3', '2022-08-24', '1', 'Selected for Thanjavur - Consultant Role', '1', '1', '1', '4', '5', '', '2', '2022-07-31', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-11 11:47:08', 60, '2022-07-15 07:29:58', 0, NULL, 1),
(9340, 'Rajesh P', '5', '6379149648', '6382271192', 'rajeshsamantha18@gmail.com', '1999-05-12', 23, '3', '1', 'Mohana priya R', 'Exicutive unit Sales Manager', 15000.00, 2, 18500.00, 30000.00, 'Thindivanam', 'Pallavaram', '2207110012', '', '2', 'upload_files/candidate_tracker/33092553275_Lenin CV.docx', NULL, '1', '2022-07-11', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Expecting higher salary and team handling', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 11:48:47', 60, '2022-07-11 06:46:53', 0, NULL, 1),
(9341, '', '0', '9940902745', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207110013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-11 12:03:54', 0, NULL, 0, NULL, 1),
(9342, 'S VIJAYARAJA', '31', '6380745970', '', 'vijayaraja.s012@gmail.com', '2000-09-03', 21, '2', '2', 'R SUNDARARAJAN', 'Farmer', 10000.00, 1, 0.00, 25000.00, 'Panruti', 'Panruti', '2207110014', '1', '1', 'upload_files/candidate_tracker/86526051134_Myresume.pdf', NULL, '2', '2022-07-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-11 12:23:39', 85, '2022-07-11 12:36:29', 0, NULL, 1),
(9343, 'Thangarasu N', '5', '9629721477', '', 'Maxbroklt@gmail.com', '1995-01-19', 27, '1', '2', 'Kamalam N', 'Farmer', 35000.00, 3, 0.00, 22000.00, 'Kulithalai', 'Kulithalai', '2207110015', '', '1', 'upload_files/candidate_tracker/90276538926_RESUME-July 2022 (1).pdf', NULL, '1', '2022-07-11', 0, 'P1322', '5', '39', NULL, 0.00, '', '0', NULL, '1', 'Candidate is not suit for this profile ', '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 01:14:49', 1, '2022-07-11 01:20:39', 0, NULL, 1),
(9344, 'Ramya DS', '5', '8050425702', '', 'ramyads1997@gmail.com', '1997-05-15', 25, '1', '2', 'Shivappa', 'Farmer', 11000.00, 3, 0.00, 15000.00, 'Bangalore', 'Bangalore', '2207110016', '', '1', 'upload_files/candidate_tracker/61667126059_RAMYA RESUME - Copy-converted.pdf', NULL, '3', '2022-07-11', 0, 'P1328', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, going to relocate for this job', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 01:17:48', 60, '2022-07-16 01:11:53', 0, NULL, 1),
(9345, 'M C Hemachandra', '31', '7997610157', '', 'hemachandramuppuri7@gmail.com', '2000-07-03', 22, '4', '2', 'E.Parvathi', 'Teacher', 40000.00, 1, 0.00, 400000.00, 'Chittor', 'Chittoor', '2207110017', '', '1', 'upload_files/candidate_tracker/88235466082_React(RESUME).pdf', NULL, '3', '2022-07-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 01:45:38', 1, '2022-07-11 01:48:36', 0, NULL, 1),
(9346, 'Anand J', '5', '9148968424', '', 'Ajs1791998@gmail.com', '1998-09-17', 23, '1', '2', 'Jayaram. M', 'Business', 30000.00, 1, 23700.00, 25000.00, 'Hosapalya', 'Hosapalya', '2207110018', '', '2', 'upload_files/candidate_tracker/73539041629_Anand CV.pdf', NULL, '1', '2022-07-11', 0, 'P1328', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary Exp is very high,discussed with him and the candidate is not showing interest in this profile', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 02:22:08', 60, '2022-07-16 04:04:56', 0, NULL, 1),
(9347, 'Divyashree HR', '5', '8197798824', '', 'divyashreedinku@gmail.com', '1996-02-10', 26, '1', '2', 'Rajashekar', 'Farmer', 11000.00, 2, 0.00, 16000.00, 'Banglore', 'Banglore', '2207110019', '', '1', 'upload_files/candidate_tracker/61187710729_DIVYA K.pdf', NULL, '2', '2022-07-11', 0, 'P1328', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,going to relocate for this Job', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 03:26:14', 60, '2022-07-16 01:14:03', 0, NULL, 1),
(9348, '', '0', '8660731750', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207110020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-11 03:28:26', 0, NULL, 0, NULL, 1),
(9349, 'karthick', '31', '9677193719', '', 'karthick619@gmail.com', '1991-10-18', 30, '2', '1', 'durga', 'homemaker', 38000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2207110021', '1', '1', 'upload_files/candidate_tracker/46706377610_Karthick.docx', NULL, '1', '2022-07-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-11 03:46:11', 85, '2022-07-12 09:40:06', 0, NULL, 1),
(9350, 'G Madhusree', '14', '9177242328', '', 'gmadhusree86@gmail.com', '2001-06-10', 21, '4', '2', 'G Bhaskar', 'Former', 20000.00, 2, 0.00, 3.00, 'Palamaner,chittor , Andra Pradesh', 'Palamaner chittor Andra Pradesh', '2207110022', '', '1', 'upload_files/candidate_tracker/95861401128_Madhusree_resume (1).pdf', NULL, '2', '2022-08-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 04:21:58', 1, '2022-07-11 04:27:40', 0, NULL, 1),
(9351, 'g pavan kalyan', '2', '7013557017', '', 'pavankalyan01212000@gmail.com', '2000-02-21', 22, '4', '2', 'g santhamma', 'home maker', 10000.00, 3, 10.00, 40.00, 'palamaner', 'palamaner', '2207110023', '', '2', 'upload_files/candidate_tracker/23154358363_GPAVAN KALYAN (555) 01212000.pdf', NULL, '2', '2022-07-21', 60, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 05:50:39', 1, '2022-07-11 07:53:07', 0, NULL, 1),
(9352, 'Vignesh Manickam', '31', '7708819284', '', 'vigneshmanickam03@gmail.com', '1997-07-19', 24, '2', '2', 'Anbarasi', 'House Wife', 10000.00, 1, 0.00, 350000.00, 'Salem', 'Chennai', '2207110024', '1', '1', 'upload_files/candidate_tracker/81044863596_Vignesh Manickam - Developer - CV.pdf', NULL, '1', '2022-07-12', 0, '', '3', '59', '2022-07-18', 96000.00, '', '', '1970-01-01', '2', 'Selected for Intern with 5K and salary will be fixed later based on the performance', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-11 06:14:44', 85, '2022-07-12 09:41:02', 0, NULL, 1),
(9353, 'Vijaya Pandian B', '5', '7708900151', '', 'vijayapandian150@gmail.com', '2000-07-25', 21, '3', '2', 'Baskaran C', 'Karaikal Port', 20000.00, 1, 12000.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2207110025', '', '2', 'upload_files/candidate_tracker/28951560637_Resume-1.pdf', NULL, '1', '2022-07-11', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Our Roles, Will Not Sustain ', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 06:53:55', 1, '2022-07-11 06:58:46', 0, NULL, 1),
(9354, 'sureshkrishnakumar s', '13', '7339139744', '', 'suresh31.krishna@gmail.com', '2000-07-31', 21, '2', '2', 'Subramanian s', 'Self employment', 18000.00, 2, 0.00, 25000.00, 'Rajapalayam,virudhunagar', 'Chennai', '2207120001', '1', '1', 'upload_files/candidate_tracker/32886033894_FINAL RESUME-compressed-merged (1).pdf', NULL, '1', '2022-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic ideas need to open a lot will not sustain in a long run', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-12 09:31:25', 1, '2022-07-12 09:34:29', 0, NULL, 1),
(9355, 'Vigneshkannan', '13', '6374946569', '9578780051', 'Vigneshkannan52@gmail.com', '2000-04-27', 22, '2', '2', 'Kathirvel', 'Astrologer', 12000.00, 1, 0.00, 2.00, 'Coimbatore', 'Coimbatore', '2207120002', '1', '1', 'upload_files/candidate_tracker/22712912748_vigneshkannan-profile.pdf', NULL, '2', '2022-07-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-12 09:56:55', 1, '2022-07-12 10:24:22', 0, NULL, 1),
(9356, 'yogasri m', '4', '7418279176', '', 'yogajas3110@gmail.com', '1999-10-31', 22, '2', '2', 'manimaran', 'shop keeper', 600000.00, 1, 10000.00, 15000.00, 'thanjavur', 'thanjavur', '2207120003', '1', '2', 'upload_files/candidate_tracker/39571866409_yoga.pdf', NULL, '1', '2022-07-12', 15, '', '3', '59', '2022-07-14', 132000.00, '', '', '2022-07-22', '2', 'Selected for Thanjavur Location in Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-12 10:18:04', 60, '2022-07-13 01:41:30', 0, NULL, 1),
(9357, 'V.g.prashanth', '4', '9789430282', '7904936157', 'Prashanthguna3@gmail.com', '1999-08-22', 22, '2', '2', 'M.vethagunasekaran', 'Business', 20000.00, 1, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2207120004', '1', '1', 'upload_files/candidate_tracker/52121658215_prashanth resume.docx', NULL, '1', '2022-07-12', 0, '', '3', '59', '2022-07-13', 132000.00, '', '4', '2022-12-16', '1', 'Selected for Thanjavur Location in Consultant role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-12 10:27:59', 60, '2022-07-12 06:38:08', 0, NULL, 1),
(9358, 'Sahana E', '25', '7259993295', '8197370127', 'esahana959@gmail.com', '1998-03-13', 24, '1', '2', 'Nethravathi', 'Business', 20000.00, 1, 0.00, 15000.00, 'Karnataka, challakere', 'Madivala', '2207120005', '', '1', 'upload_files/candidate_tracker/20721439788_Sahana.pdf', NULL, '1', '2022-07-12', 0, '0377', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-12 10:53:14', 1, '2022-07-12 10:57:09', 0, NULL, 1),
(9359, 'Sivaranjani.S', '6', '8248414248', '', 'siva19ranjani2001@gmail.com', '2001-05-19', 21, '1', '2', 'Sendan Amuthan .S', 'Musician', 24000.00, 1, 0.00, 15000.00, 'S-4 KGEYES Encalves Vannadhurai, Chennai -41.', 'Chennai', '2207120006', '', '1', 'upload_files/candidate_tracker/60371616560_RESUME.docx.pdf', NULL, '1', '2022-07-12', 0, 'P1251', '3', '59', '2022-07-13', 156000.00, '', '', '1970-01-01', '2', 'Selected for Syed team in Consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-12 11:15:34', 60, '2022-07-12 02:46:42', 0, NULL, 1),
(9360, 'Sriranjani', '5', '9066075188', '', 'Sriranjaniyuvaraj1994@gmail.com', '1993-06-26', 29, '1', '1', 'Yucatan B', 'Finance', 60000.00, 0, 28000.00, 32000.00, 'Bangalore', 'Kolatur', '2207120007', '', '2', 'upload_files/candidate_tracker/49754636339_Ranjani.pdf', NULL, '1', '2022-07-12', 0, '55567', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Hyd Candidate and we have freezed recruitment there', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-12 12:01:24', 60, '2022-07-12 03:00:58', 0, NULL, 1),
(9361, 'Melcho Ziegan Balg s', '31', '9585755283', '9150818508', 'melcho.6199@gmail.com', '1999-06-02', 23, '2', '2', 'Sundarraj', 'Press reporter', 20000.00, 2, 0.00, 15000.00, 'No 35, avuli medu st, 53.perumbakkam, Chengalpattu', 'Pallikkaranai', '2207120008', '1', '1', 'upload_files/candidate_tracker/88033078948_Melcho.resume.pdf', NULL, '1', '2022-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Nobasic ideas not much open with TxxampC Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-12 12:02:31', 1, '2022-07-12 12:07:28', 0, NULL, 1),
(9362, 'Ramachandran j', '13', '9080688826', '9698304212', 'ramachandran588282@gmail.com', '1999-05-13', 23, '2', '2', 'Jayabalan', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Tindivanam', 'Velachery', '2207120009', '1', '1', 'upload_files/candidate_tracker/68275387226_Ram.pdf', NULL, '1', '2022-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Nobasic Ideas Not Much Open With TxxampC Will Not Sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-12 12:02:50', 1, '2022-07-12 12:07:40', 0, NULL, 1),
(9363, 'Ajitha.V', '2', '9894023405', '9787560958', 'ajithaveerappan@gmail.com', '1999-02-04', 23, '2', '2', 'Veerappan K', 'Finance', 20000.00, 1, 0.00, 200000.00, 'Palani tamilnadu', 'Palani tamilnadu', '2207120010', '1', '1', 'upload_files/candidate_tracker/14660087635_ajitha.pdf', NULL, '3', '2022-07-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-12 03:33:28', 85, '2022-07-13 11:01:45', 0, NULL, 1),
(9364, '', '0', '6374828203', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207120011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-12 04:02:41', 0, NULL, 0, NULL, 1),
(9365, 'Vinoth', '2', '8925236831', '', 'm.vinoth2062002@gmail.com', '2002-06-20', 20, '2', '2', 'Muthu', 'Cooley', 12000.00, 1, 0.00, 250000.00, 'ponneri', 'ponneri', '2207120012', '1', '1', 'upload_files/candidate_tracker/91768706016_VINOTH RESUME (2).pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have basic ideas in HTML,CSS, JS  Too Long Distance up and down86KMS,Not ready to relocate  And Communication Average', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-12 06:00:14', 85, '2022-07-13 11:01:59', 0, NULL, 1),
(9366, '', '0', '8072641065', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207120013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-12 06:12:01', 0, NULL, 0, NULL, 1),
(9367, 'Shyam babu', '16', '7010428678', '', 'akashkutty.ka2@gmail.com', '2000-11-25', 21, '2', '2', 'Kumaran', 'Kooli', 130000.00, 1, 14000.00, 18000.00, 'Chennai', 'Chennai', '2207120014', '1', '2', 'upload_files/candidate_tracker/37552073761_Resume shyam babu K.pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No  Basic Ideas In MIS Too Long Distance Around 66KMS,Will Not Sustain And Communication Average', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-12 07:37:34', 85, '2022-07-13 11:02:14', 0, NULL, 1),
(9368, 'K.J.TEJA', '2', '9159908839', '', 'kjteja@gmail.com', '2001-03-13', 21, '2', '2', 'Jayaraman', 'Agriculture work', 72000.00, 0, 0.00, 15000.00, 'Ponneri', 'Ponneri', '2207120015', '1', '1', 'upload_files/candidate_tracker/41117763434_tejaresume2.pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Ideas In HTML,CSS, JS  Too Long Distance Up And Down86KMS,Not Ready To Relocate  And Communication Average', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-12 09:21:51', 85, '2022-07-13 11:02:27', 0, NULL, 1),
(9369, '', '0', '9500133947', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207120016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-12 11:28:13', 0, NULL, 0, NULL, 1),
(9370, 'Parthiban', '13', '9626111738', '9361424295', 'Parthi1738@gmail.com', '1998-06-02', 24, '3', '2', 'Paranthaman P', 'Former', 12000.00, 1, 0.00, 10000.00, 'Nilgiris', 'Tambaram Chennai', '2207130001', '', '1', 'upload_files/candidate_tracker/25063353025_php sql python.pdf', NULL, '1', '2022-07-13', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate was interviewed and was on hold after 2nd round of interview need to give his confirmation', '2', '1', '', '1', '1', '', '2', '2022-07-16', '1', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-13 09:51:49', 60, '2022-07-13 10:26:13', 0, NULL, 1),
(9371, 'Ram Kumar N', '13', '6380893904', '', 'professional2022ramvig@gmail.com', '2002-03-31', 20, '2', '2', 'Narayanan K', 'Working in jwellery shop', 60000.00, 1, 0.00, 6000.00, 'Panruti', 'Panruti', '2207130002', '1', '1', 'upload_files/candidate_tracker/38518665416_myresume1.pdf', NULL, '2', '2022-07-13', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher have a basic knowledge in Skills interest to learn,ready to relocate kindly check and let me know your inputs', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-13 10:01:59', 1, '2022-07-13 10:06:06', 0, NULL, 1),
(9372, 'baskar', '13', '9626758090', '', 'bossbk259@gmail.com', '1998-09-28', 23, '2', '2', 'munusamy', 'daily wage', 8000.00, 1, 0.00, 10000.00, 'chengalpattu', 'chengalpattu', '2207130003', '1', '1', 'upload_files/candidate_tracker/47846693122_Baskaran Resume.pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Ideas In PHP Skills Too Long Distance,Looking for the timings,Will Not Sustain And not ready to relocate', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-13 10:09:53', 1, '2022-07-13 10:34:41', 0, NULL, 1),
(9373, 'NAGOOR KANI', '4', '7395863558', '6380158602', 'Nkani433@gmail.com', '1997-10-12', 24, '2', '2', 'Akbar sheriff', 'Retired', 60000.00, 2, 8900.00, 15000.00, 'Cuddalore', 'Gundy', '2207130004', '1', '2', 'upload_files/candidate_tracker/83599069792_NagoorKaniresume1.pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our role need to open a lot will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-13 10:17:52', 85, '2022-07-13 11:02:39', 0, NULL, 1),
(9374, '', '0', '9698077877', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207130005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-13 10:26:10', 0, NULL, 0, NULL, 1),
(9375, 'P. Arunkumar', '4', '9597285582', '6380600548', 'Arunkumar.p0302@gmail.com', '2001-07-13', 21, '1', '2', 'Pongiyannan', 'Garden', 12000.00, 1, 0.00, 10000.00, 'Erode', 'Erode', '2207130006', '', '1', 'upload_files/candidate_tracker/61351452790_null.pdf', NULL, '1', '2022-07-13', 0, 'CA133', '3', '59', '2022-07-15', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Erode - Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-13 10:44:33', 60, '2022-07-15 07:30:48', 0, NULL, 1),
(9376, 'SANTHOSH R', '13', '7010191631', '', 'santhoshhardik@gmail.com', '2000-08-31', 21, '3', '2', 'RAJENDRAN G', 'Driver', 20000.00, 1, 0.00, 15000.00, '7/11,Veeri kulam east lane,Nagapattinam', '7/11,Veeri Kulam East Lane,Nagapattinam', '2207130007', '', '1', 'upload_files/candidate_tracker/85723295608_SANTHOSR_43_951.pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to open a lot  have ideas only in  HTML, CSS, not other  ideas in Crud, PHP, Will not handle the pressure', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-13 10:59:58', 1, '2022-07-13 11:11:07', 0, NULL, 1),
(9377, 'saajidhullah', '13', '7305430105', '', 'saajidhullah07@gmail.com', '2000-10-18', 21, '2', '2', 'azenabegum', 'home made', 35000.00, 1, 0.00, 25000.00, 'karaikal', 'chennai', '2207130008', '1', '1', 'upload_files/candidate_tracker/42092930175_My Resume.pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have ideas in HTML,CSS,not in CRUD  Doing ME in Correspondence have a plan to travel abroad in 1-2 yrs will not sustain', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-13 11:00:49', 60, '2022-07-16 05:20:48', 0, NULL, 1),
(9378, 'Akila S', '5', '9751323485', '', '14akilasukumar@gmail.com', '2007-07-13', 0, '2', '1', 'M Nandakumar', 'Employee', 30.00, 0, 25000.00, 30000.00, 'Chennai', 'Chennai', '2207130009', '1', '2', 'upload_files/candidate_tracker/93485676132_AKILA CV.docx', NULL, '1', '2022-07-13', 15, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Good No relevant Exp in Sales ,Fresher for this domain Salary Exp is high, Internal reference from Pamesh Prasanna', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-13 11:18:28', 60, '2022-07-13 12:57:00', 0, NULL, 1),
(9379, 'Gowtham', '16', '6383987223', '', 'sghavoc00@gmail.com', '2001-07-20', 20, '2', '2', 'Mathi vanan R', 'Cooly', 15000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2207130010', '1', '2', 'upload_files/candidate_tracker/82205088565_GOWTHAM Resume1 2021(1).pdf', NULL, '1', '2022-07-13', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No  basic ideas in MIS too Long Distance around 66KMS,will not sustain and communication Average', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-13 11:35:23', 85, '2022-07-13 12:06:34', 0, NULL, 1),
(9380, 'balachandhar', '13', '8870265880', '', 'prakashbala508@gmail.com', '1996-06-03', 26, '2', '2', 'malayappan', 'messon', 25000.00, 2, 0.00, 15000.00, 'dindugul', 'chennai', '2207130011', '1', '1', 'upload_files/candidate_tracker/7140560301_balaresume.pdf', NULL, '1', '2022-07-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate should come back with his  confirmation,having basic knowledge in Skills,can be trained but sustainability doubts', '2', '1', '0', '1', '1', '0', '2', '2022-07-15', '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-13 11:43:18', 1, '2022-07-13 12:27:06', 0, NULL, 1),
(9381, 'Kodandaramu V', '5', '8553744402', '', 'kodandvaradaraju.kv@gmail.com', '1994-06-11', 28, '1', '1', 'Sravani', 'Employee', 35000.00, 2, 22000.00, 26000.00, 'Sunkadakatte Bengaluru', 'Sunkadakatte Bengaluru', '2207130012', '', '2', 'upload_files/candidate_tracker/31465873490_Kodand Ram Resume 2022.docx', NULL, '1', '2022-07-13', 0, 'p1336', '3', '59', '2022-07-18', 310000.00, '', '4', '2023-01-18', '1', 'Selected for Manivel Team with PF/PT', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-13 12:04:15', 60, '2022-07-16 04:44:11', 0, NULL, 1),
(9382, 'Thameem Fathima', '5', '7305816162', '9884794771', 'thameemfathima240@gmail.com', '1999-02-04', 23, '1', '1', 'Mohammed Yusuff', 'Cooly', 10000.00, 1, 15000.00, 20000.00, 'No 14/48 annasalai 3rd St valasaravakkam ch95', 'No 14/48 annasalai 3rd St valasaravakkam ch95', '2207130013', '', '2', 'upload_files/candidate_tracker/53147825259_Document 205-1.pdf', NULL, '1', '2022-07-13', 0, 'P1302', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for our process .....', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-13 01:00:05', 85, '2022-07-14 05:37:23', 0, NULL, 1),
(9383, 'Yasmeen banu', '5', '7305693317', '7010498020', 'nazriyabanu530@gmail.com', '2000-06-29', 22, '1', '1', 'Hameedha', 'House wife', 10000.00, 1, 0.00, 20000.00, 'No,25th Anna nager 4th cross streets pammal', 'No,25th Anna Nager 4th Cross Streets Pammal', '2207130014', '', '2', 'upload_files/candidate_tracker/6378577623_pdf_converter_202207133417.pdf', NULL, '1', '2022-07-13', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suit For Our Process ...', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-13 01:00:34', 85, '2022-07-14 05:38:11', 0, NULL, 1),
(9384, '', '0', '6380893908', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207130015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-13 01:28:49', 0, NULL, 0, NULL, 1),
(9385, 'Krishna Raja', '13', '7402168263', '', 'krishnaking210@gmail.com', '2000-02-10', 22, '2', '2', 'Kalisamy', 'Farmer', 8000.00, 4, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2207130016', '1', '1', 'upload_files/candidate_tracker/46031597487_Krishna_Raja_Resume.pdf', NULL, '1', '2022-07-13', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-13 01:57:59', 60, '2022-07-16 05:19:56', 0, NULL, 1),
(9386, 'Ian Gladwin Alva', '2', '9591518013', '', 'ianalva1998@gmail.com', '1998-07-20', 23, '3', '2', 'Ivan Aquin Alva', 'Accountant', 50000.00, 1, 0.00, 400000.00, 'Udupi', 'Chennai', '2207130017', '', '1', 'upload_files/candidate_tracker/92769749699_Gladwin CV.pdf', NULL, '1', '2022-07-13', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has knowledge in HTML, CSS only\nxxamp long distance too', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-13 04:11:42', 85, '2022-07-13 05:38:10', 0, NULL, 1),
(9387, '', '0', '6374775349', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207130018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-13 05:39:52', 0, NULL, 0, NULL, 1),
(9388, '', '0', '6385797826', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207130019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-13 06:27:33', 0, NULL, 0, NULL, 1),
(9389, 'Arjun Kumar', '2', '8124626095', '9344093024', 'kumar.jocky123@gmail.com', '1997-11-06', 24, '2', '2', 'Parasuranan', 'Tiles worker', 25000.00, 2, 0.00, 15000.00, 'Pondicherry', 'Tenamypet, chennai', '2207140001', '1', '1', 'upload_files/candidate_tracker/32986445557_ArjunKumar_P_Resume_1977 (4).PDF', NULL, '1', '2022-07-14', 0, '', '3', '59', '2022-07-15', 96000.00, '', '', '1970-01-01', '2', 'Selected by Gokul 7 days training based on that only will get confirm', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-14 10:11:54', 60, '2022-07-14 07:33:33', 0, NULL, 1),
(9390, 'Dinesh Kumar P', '2', '6381498349', '', 'dineshpalani2001@gmail.com', '2002-02-05', 20, '2', '2', 'Palani S', 'driver', 15000.00, 1, 0.00, 20000.00, 'Cheyyur', 'chrompet Chennai', '2207140002', '1', '1', 'upload_files/candidate_tracker/38632720837__Template_1654769880602.pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas not suitable for our Roles will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-14 10:13:14', 60, '2022-07-16 05:24:36', 0, NULL, 1),
(9391, 'S.Ramesh', '2', '9626376650', '7094280708', 'raj893478@gmail.com', '1997-08-09', 24, '2', '2', 'S Shanthi', 'House wife', 15000.00, 1, 0.00, 15000.00, 'Dindigul , k.dharmathu patti', 'T. Nagar , chennai', '2207140003', '1', '1', 'upload_files/candidate_tracker/42459587971_RAMESH .pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Much prefer to work in Java Language not suits for our Roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-14 10:19:34', 60, '2022-07-16 05:23:43', 0, NULL, 1),
(9392, 'Divyakavi K', '11', '9841945288', '', 'k.divyakavi.chn@gmail.com', '1998-06-08', 24, '2', '2', 'Kumar', 'Clerk', 25000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2207140004', '1', '1', 'upload_files/candidate_tracker/5180930833_Divyakavi Resume 2022 (1).pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Bit Attitude,Already holding offers with good Pay will not join for less not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-14 10:33:57', 1, '2022-07-14 10:39:10', 0, NULL, 1),
(9393, 'Karthik. S', '2', '9080581548', '', 'akashkarthickk@gmail.com', '2001-06-11', 21, '2', '2', 'Punitha. S', 'Housewife', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2207140005', '1', '1', 'upload_files/candidate_tracker/75949881123_karthik-resume.pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Final Round Reject by Kavya not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-14 10:34:51', 60, '2022-07-16 05:23:09', 0, NULL, 1),
(9394, 'R.Sukumaran', '13', '9150167175', '', 'rsukumaran94@gmail.com', '1995-05-26', 27, '2', '2', 'Rajendran M', 'Former', 20000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2207140006', '1', '1', 'upload_files/candidate_tracker/1988976953_sukumaran _1656902449535.pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No ideas in Skills have exp in non voice no communication not suitable for other Roles', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-14 10:39:16', 1, '2022-07-14 10:43:50', 0, NULL, 1),
(9395, 'Manojkumar R', '2', '8675595100', '6380912819', 'rajamanoj100@gmail.com', '1999-12-28', 22, '2', '2', 'P.Raju', 'Gold smith', 15000.00, 2, 0.00, 15000.00, 'Theni', 'Chennai', '2207140007', '1', '1', 'upload_files/candidate_tracker/7823094949_Manojkumar Resume.pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No ideas in the skills and sustainability doubts not much active', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-14 10:41:37', 60, '2022-07-16 05:21:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9396, 'MAREESWARAN J', '2', '6385817055', '', 'Jsmareeswaran47@gmail.com', '2001-03-25', 21, '2', '2', 'Jayaram G', 'Labour', 10000.00, 1, 0.00, 15000.00, 'Viswanatham', 'chennai', '2207140008', '1', '1', 'upload_files/candidate_tracker/18527427874_Mr.Mareeswaran JSK.pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very Slow No basic ideas not suitable will not sustainxquot', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-14 10:45:57', 60, '2022-07-16 05:24:13', 0, NULL, 1),
(9397, 'JOHNSON', '13', '8531827174', '9442919082', 'johnson962001@gmail.com', '2001-06-09', 21, '2', '2', 'AROCKIASAMY', 'Former', 20000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Medavagam', '2207140009', '1', '1', 'upload_files/candidate_tracker/59154496772_Johnson A Resume.pdf', NULL, '1', '2022-07-14', 0, '', '4', '63', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic ideas in the PHP can be trained kindly check and let me know\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-14 10:46:30', 85, '2022-07-14 02:35:35', 0, NULL, 1),
(9398, 'Ganne lok preetham', '25', '9182350145', '8499020285', 'preethamchowdary2000@gmail.com', '2000-05-04', 22, '1', '2', 'G SWARUP', 'Farming', 20000.00, 1, 0.00, 14000.00, 'Bengaluru', 'Bengaluru', '2207140010', '', '1', 'upload_files/candidate_tracker/27087693537_resume.pdf', NULL, '1', '2022-07-14', 0, '0377', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-14 10:49:38', 1, '2022-07-14 11:10:14', 0, NULL, 1),
(9399, 'Arun', '13', '8098876767', '9994143131', 'arunsanthi2110@gmail.com', '1993-10-21', 28, '2', '2', 'Anbudurai', 'Farmers', 10000.00, 1, 0.00, 17000.00, 'Kulithalai,karur.', 'Urapakkam,Chennai.', '2207140011', '1', '1', 'upload_files/candidate_tracker/40103986074_New Arun RESUME--.pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No ideas in JS focus in Java openings Too long distance will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-14 10:54:38', 1, '2022-07-14 11:00:15', 0, NULL, 1),
(9400, 'Rajesh Kannan S', '2', '7395981062', '', 'rajeshkannansubramanian10@gmail.com', '2001-04-10', 21, '2', '2', 'Subramanian M', 'Tailor', 15000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2207140012', '1', '1', 'upload_files/candidate_tracker/3413227903_RAJESH', NULL, '1', '2022-07-14', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Average Skills but her sister in IT Domain already referred for some roles sustainability Doubt  if he coems back let us see', '2', '2', '', '1', '1', '', '2', '2022-07-18', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-14 10:59:03', 85, '2022-07-14 02:34:50', 0, NULL, 1),
(9401, 'J narmadha', '31', '6374680003', '8124838287', 'narmadha1214@gmail.com', '2001-01-16', 21, '3', '2', 'S Jaya Kumar', 'Iron man', 9000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennia', '2207140013', '', '1', 'upload_files/candidate_tracker/19644723116_Minimalist CV Resume (3).pdf', NULL, '1', '2022-07-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-14 11:00:31', 1, '2022-07-14 11:21:47', 0, NULL, 1),
(9402, 'Siva Rajani P', '31', '9087313266', '', 'sivaranjani6672@gmail.com', '2001-05-25', 21, '3', '2', 'J.Parthiban', 'Driver', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2207140014', '', '1', 'upload_files/candidate_tracker/31034640360_Siva_Ranjani P_Resume_13-07-20.pdf', NULL, '1', '2022-07-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-14 11:00:42', 1, '2022-07-14 11:11:17', 0, NULL, 1),
(9403, 'Sudheer Kumar Ummanni', '25', '8499020285', '8179999118', 'sudheerchowdary69969@gmail.com', '2000-12-16', 21, '1', '2', '0377', 'Farmer', 30000.00, 1, 0.00, 16000.00, 'Marsandra Appartments, dodballapura road', 'Marsandra Appartments, dodballapura road', '2207140015', '', '1', 'upload_files/candidate_tracker/25545888026_sudheer RESUME.pdf', NULL, '1', '2022-07-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-14 11:04:59', 1, '2022-07-14 11:12:03', 0, NULL, 1),
(9404, '', '0', '7094280708', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207140016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-14 11:15:09', 0, NULL, 0, NULL, 1),
(9405, 'Gayathiri G', '22', '9025018768', '', 'gayathiriliya644@gmail', '2000-03-13', 22, '2', '2', 'Jothilakshmi G', 'Businesses', 25000.00, 1, 0.00, 15000.00, 'Mutharaiyarpalayam , Puducherry -605009', 'Mutharaiyarpalayam, Puducherry - 605009', '2207140017', '1', '1', 'upload_files/candidate_tracker/11364054918_GayathiriResume.pdf', NULL, '3', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain not much comfort with TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-14 11:19:49', 85, '2022-07-15 10:09:42', 0, NULL, 1),
(9406, 'Elangeswaran. P', '10', '7338943924', '', 'Elangeswaran001@gmail.com', '2000-06-01', 22, '1', '2', 'Elangeshwaran', 'Nil', 9000.00, 1, 2.00, 2.00, 'Thouripakkam', 'Thouripakkam', '2207140018', '', '2', 'upload_files/candidate_tracker/69099281960_Adobe Scan 12-Apr-2022.pdf', NULL, '3', '2022-07-14', 15, '55580', '3', '59', '2022-07-15', 262000.00, '', '6', '2022-08-23', '2', 'Selected for GK sir in Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-14 11:28:59', 60, '2022-07-14 07:30:16', 0, NULL, 1),
(9407, 'Vemula syam prasad', '5', '9700717051', '', 'Syamprasad00@gmail.com', '1998-09-08', 23, '1', '2', 'Madhu', 'Farmer', 10000.00, 1, 0.00, 18000.00, 'Bangalore', 'Bangalore', '2207140019', '', '1', 'upload_files/candidate_tracker/42840342199_V.syam resume.pdf', NULL, '1', '2022-07-14', 0, 'P1328', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-14 01:41:32', 1, '2022-07-14 01:45:09', 0, NULL, 1),
(9408, 'Syed Ibrahim', '31', '8939397243', '', 'syedibrahimsm33@gmail.com', '1995-08-30', 26, '2', '1', 'Afreena', 'None', 15000.00, 1, 0.00, 15000.00, 'Perumbakkam, Chennai', 'Perumbakkam, Chennai', '2207140020', '1', '1', 'upload_files/candidate_tracker/85083646599_syed Resume.docx', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Technical Round Rejected - Have basic knowledge and the distance too long will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-14 03:40:58', 85, '2022-07-15 10:10:02', 0, NULL, 1),
(9409, 'Sathiyapriya N', '2', '8270348761', '8870411782', 'Sathiyapriya1181999@gmail.COM', '1999-08-11', 22, '3', '1', 'Gomathi N', 'Toiler', 15000.00, 0, 0.00, 15000.00, 'Villupuram', 'Chennai', '2207150001', '', '1', 'upload_files/candidate_tracker/69740086831_sathiyapriya (resume).pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'need to open a lot not much with basic ideas given time to learn if she come bank let us try\n', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-15 10:10:07', 1, '2022-07-15 10:23:37', 0, NULL, 1),
(9410, 'M.KABIN', '13', '6383704120', '8807270901', 'ramkabin8344@gmail.com', '1999-01-04', 23, '2', '2', 'M.KRISHNAVENI', 'House wife', 10000.00, 0, 0.00, 350000.00, 'Cumbum', 'Cumbum', '2207150002', '1', '1', 'upload_files/candidate_tracker/17200675953_kabin resume (1).pdf', NULL, '3', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas in Skills, need to learn If he come back after learning let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-15 10:12:01', 60, '2022-07-15 04:13:36', 0, NULL, 1),
(9411, 'Krithika. S', '11', '9962486605', '9841240453', 'Krithika042@gmail.com', '1999-12-20', 22, '3', '2', 'LALITHA N M', 'Home maker', 17000.00, 0, 17000.00, 22000.00, 'Villivakkam, chennai', 'Villivakkam, Chennai', '2207150003', '', '2', 'upload_files/candidate_tracker/76081027876_CV_2022071422395521.pdf', NULL, '1', '2022-07-15', 25, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication OK,Applied for HR Fresher Profile Checked for Mutual Fund too Asked her to wait for final round but the candidate Left', '6', '1', '0', '1', '1', '0', '2', '2022-07-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-15 10:26:20', 1, '2022-07-15 10:36:29', 0, NULL, 1),
(9412, 'Akash j', '31', '6369316574', '9787967193', 'akashgautham777@gmail.com', '1999-04-13', 23, '2', '2', 'B.Jayakumar', 'Marking', 15000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Velachery chennai', '2207150004', '1', '1', 'upload_files/candidate_tracker/82036246371_resume(2).pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas and looking for Java Openings much', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-15 10:38:59', 85, '2022-07-15 11:17:47', 0, NULL, 1),
(9413, 'Sangeetha k', '5', '8072698997', '', 'Sangeethasri7298@gmail.com', '1998-02-07', 24, '3', '2', 'Krishnamurthy n', 'Retired govt servant', 30000.00, 0, 10500.00, 25000.00, 'Karaikudi', 'Chennai', '2207150005', '', '2', 'upload_files/candidate_tracker/38983115843_SodaPDF-converted-sangeetha resume updated.pdf', NULL, '1', '2022-07-15', 0, '', '3', '59', '2022-07-25', 252000.00, '', '5', '1970-01-01', '2', 'Selected for Shanmugam Team Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-15 10:40:35', 60, '2022-07-23 05:02:16', 0, NULL, 1),
(9414, 'Banupriya', '5', '7550101180', '9345763961', 'banuumapathy96@gmail.com', '1996-12-13', 25, '3', '1', 'Vijay B', 'Car buying selling', 40000.00, 0, 11000.00, 25000.00, 'Chennai', 'Chennai', '2207150006', '', '2', 'upload_files/candidate_tracker/73556802925_Resume new.pdf', NULL, '1', '2022-07-15', 0, '', '3', '59', '2022-07-25', 252000.00, '', '5', '1970-01-01', '2', 'Selected for GK Sir Team  Staff Role', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-15 10:50:01', 60, '2022-07-23 05:03:42', 0, NULL, 1),
(9415, 'Dharani.S', '13', '8610588128', '', 'dharaniselva1998@gmail.com', '1998-07-23', 23, '3', '2', 'Parent', 'Farmer', 30000.00, 1, 0.00, 300000.00, 'C53 municipal Colony Medical college rd ,Thanjavur', 'SAS womens hostel omr road kandanchavadi,perungudi', '2207150007', '', '1', 'upload_files/candidate_tracker/1937689089_Dharani Selvakumar (3).pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Completed Course in Accord,Looking for Java xxamp Web Designing but not much storing in skills need to learn', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-15 10:51:04', 85, '2022-07-15 11:16:59', 0, NULL, 1),
(9416, 'K Chozharajan', '4', '7358889326', '9597964462', 'chozhajackson111@gmail.com', '1999-06-23', 23, '2', '2', 'Kaliyamoorthy', 'Self Employed', 18000.00, 0, 14000.00, 15000.00, 'Ayyampettai', 'Thanjavur', '2207150008', '1', '2', 'upload_files/candidate_tracker/98766456675_My Resume.pdf', NULL, '1', '2022-07-15', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-15 11:15:35', 60, '2022-07-15 12:25:43', 0, NULL, 1),
(9417, 'Rishikesan G G', '31', '8072747610', '', 'rishikavin2621@gmail.com', '2000-04-21', 22, '2', '2', 'Govindharaman G S', 'Weaver', 30000.00, 4, 0.00, 12000.00, 'Paramakudi', 'Chennai', '2207150009', '1', '1', 'upload_files/candidate_tracker/20299680028_Rishikesan.Resume.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic ideas not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-15 11:36:39', 60, '2022-07-15 12:26:33', 0, NULL, 1),
(9418, 'Swarna varsha', '23', '9884947970', '', 'swarnavarsha842@gmail.com', '2001-12-30', 20, '3', '2', 'Balaji', 'Auto driver', 30000.00, 1, 0.00, 15000.00, 'Porur Chennai', 'Porur Chennai', '2207150010', '', '1', 'upload_files/candidate_tracker/34705300442_Varsha Updated.docx', NULL, '1', '2022-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have mentioned about flutter asked the candidate come for final disussion after lunch but no response after', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-15 11:42:24', 1, '2022-07-15 11:58:44', 0, NULL, 1),
(9419, 'E.Indhumathi', '4', '9123530782', '9790383768', 'im517581@gmail.com', '2000-08-09', 21, '3', '2', 'C.Ekambaram', 'Painter', 30000.00, 2, 0.00, 12000.00, 'No:1/142,Gangai amman kovil St ,Ramapuram,Ch-89.', 'No:1/142 Gangai amman kovil st,Ramapuram ch-89', '2207150011', '', '1', 'upload_files/candidate_tracker/1022989245_INDHU RESUME.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable Will Not Sustain Have A Plan To In Java Profile', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-15 11:57:12', 1, '2022-07-15 12:15:09', 0, NULL, 1),
(9420, 'Lingeswaran', '6', '8124330672', '', 'Hariishofficial02@gmail.com', '2003-06-14', 19, '1', '2', 'Sivakumar', 'Electronician', 10000.00, 1, 0.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2207150012', '', '1', 'upload_files/candidate_tracker/53396243754_HarishResume.docx.pdf', NULL, '1', '2022-07-15', 0, 'P1325', '3', '59', '2022-07-18', 185000.00, '', '3', '2022-07-26', '1', 'staff role Kannan Team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-15 11:59:35', 60, '2022-07-16 06:50:59', 0, NULL, 1),
(9421, 'K.Preethi', '4', '7358590227', '9094779347', 'preethibe1098@gmail.com', '1998-10-10', 23, '3', '2', 'Kanniyappan', 'Mason', 30000.00, 2, 0.00, 12000.00, 'KKnagar', 'Mettupalayam', '2207150013', '', '1', 'upload_files/candidate_tracker/70286913417_CV_2022-05-25-071920.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable will not sustain have a plan to in Java Profile', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-15 12:03:16', 1, '2022-07-15 12:14:59', 0, NULL, 1),
(9422, 'REVATHY', '4', '8122800429', '7338755589', 'remurevathy2424@gmail.com', '2007-07-15', 15, '3', '1', 'Muthu saravanan', 'Sales executive', 25000.00, 3, 12000.00, 13000.00, 'West mambalam', 'West mambalam', '2207150014', '', '2', 'upload_files/candidate_tracker/39725514065_Revathy Resume.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp inTelecalling but communication Average and also she looks for Compounder Role(Previous One)', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-15 12:31:02', 1, '2022-07-15 12:46:09', 0, NULL, 1),
(9423, 'Rohith k', '2', '9677463327', '', 'rohith1810pd@gmail.com', '2000-10-18', 21, '2', '2', 'Parrnt', 'Business', 60000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2207150015', '1', '1', 'upload_files/candidate_tracker/96607816384_Rohith K (3).pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Holding an offer with Netaccess for 15K 25th joining in the mean time he is looking for more', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-15 12:45:47', 85, '2022-07-15 06:41:06', 0, NULL, 1),
(9424, 'Madhubalan s', '11', '9751554255', '9445652843', 'madhubalans.official@gmail.com', '2002-03-25', 20, '2', '2', 'Samiyappan v', 'Business', 500000.00, 1, 0.00, 300000.00, 'No 18, jangalapatti, PALLAPATTI, karur', 'No 10, kamarajar Salai, Palani St, Manali, 600068', '2207150016', '1', '1', 'upload_files/candidate_tracker/74362791966_Madhubalan.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have a month intern exp and the salary Exp is high,not familiar with the Skills,Need to train a lot not ok with TxxampC', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-15 12:57:46', 85, '2022-07-18 12:03:08', 0, NULL, 1),
(9425, 'R Chidambarasi Keerthiga', '13', '7305615716', '9384695331', 'keerthike35@gmail.com', '2001-10-03', 20, '2', '2', 'Rajasekar M', 'Daily wages', 72000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2207150017', '1', '1', 'upload_files/candidate_tracker/69699567725_keerthiga cv.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no ideas in CRUD operations,Not open for Timings Too', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-15 01:14:53', 85, '2022-07-15 06:40:34', 0, NULL, 1),
(9426, 'SELVAMANI.P', '31', '9585122683', '6380098585', 'Maniselva.pt@gmail.com', '1995-04-03', 27, '2', '2', 'Thamizhselvi', 'Formar', 18000.00, 5, 0.00, 10000.00, 'Cuddalore', 'Chennai', '2207150018', '1', '1', 'upload_files/candidate_tracker/14249196741_Resume.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for MERN,Career Gap no basic ideas in the Skills given time to learn if he come back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-15 03:12:34', 85, '2022-07-18 12:03:46', 0, NULL, 1),
(9427, 'kamalesh kumar s', '2', '9176463639', '', 'kamaleshk610@gmail.com', '1997-09-29', 24, '2', '2', 'sudhaa', 'worker', 30000.00, 1, 0.00, 30000.00, 'ayanavaram', 'ayanavaram', '2207150019', '1', '1', 'upload_files/candidate_tracker/32022607638_Kamalesh CV2.pdf', NULL, '1', '2022-07-18', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher not much strong with the skills ,need to come back with his confirmation.', '2', '1', '0', '1', '1', '0', '2', '2022-07-21', '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-07-15 06:24:00', 1, '2022-07-15 06:32:45', 0, NULL, 1),
(9428, 'Rameshkumar p', '13', '8508241287', '', 'rameshkumarp272@gmail.com', '1999-03-04', 23, '2', '2', 'Palanivel', 'Farmer', 76000.00, 2, 0.00, 16000.00, 'Srimushnam,Cuddalore dist.', 'West K.K Nagar, Chennai', '2207160001', '1', '1', 'upload_files/candidate_tracker/47728818108_my resume.pdf', NULL, '1', '2022-07-16', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050 profile,kindly check for PHP and let me know your inputs ji\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-16 09:41:37', 1, '2022-07-16 09:48:58', 0, NULL, 1),
(9429, 'Abhilash Biswal', '31', '8328837940', '', 'abhikanha12345@gmail.com', '1995-05-13', 27, '2', '2', 'Nagesh Chandra biswal', 'Non', 400000.00, 1, 0.00, 20000.00, 'Kankalu,Dhenkanal,odisha', 'Bengaluru, karnataka', '2207160002', '1', '1', 'upload_files/candidate_tracker/71713573214_Abhilash_Biswal _Resume.pdf', NULL, '2', '2022-07-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-16 09:45:32', 1, '2022-07-16 10:09:03', 0, NULL, 1),
(9430, '', '0', '6383579073', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207160003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-16 09:56:52', 0, NULL, 0, NULL, 1),
(9431, 'Kalaikovan B I', '13', '9629287252', '', 'kalaikovanb143@gmail.com', '2000-03-15', 22, '2', '2', 'Balamurugan T', 'Farmet', 20000.00, 1, 0.00, 15000.00, 'Someswaram, Thanjavur.', 'Ondikuppam, Tiruvallur.', '2207160004', '1', '1', 'upload_files/candidate_tracker/41348658373_Cv updation.pdf', NULL, '1', '2022-07-16', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT have Exp in Core Field Can be trained kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-16 10:21:14', 1, '2022-07-16 10:25:19', 0, NULL, 1),
(9432, 'Veeramuthu', '4', '6379542136', '', 'typhon1033@gmail.com', '2001-03-13', 21, '2', '2', 'Mari muthu', 'Bussiness', 10000.00, 1, 0.00, 15000.00, 'Maduravyol', 'Maduravyol', '2207160005', '1', '1', 'upload_files/candidate_tracker/23588618235_CV_2022070710463949.pdf', NULL, '1', '2022-07-16', 0, '', '1', '14', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-07-16 10:47:21', 1, '2022-07-16 05:54:47', 0, NULL, 1),
(9433, 'V.Sivaranjani', '4', '8124271149', '8220676705', 'sivaranjanivenu2002@gmail.com', '2002-11-07', 19, '3', '2', 'S.Venugopal', 'Auto driver', 10000.00, 0, 0.00, 14000.00, 'Thanjavur', 'Thanajvur', '2207160006', '', '1', 'upload_files/candidate_tracker/74647045506_1657639455068_SIVARANJANI RESUME.pdf', NULL, '1', '2022-07-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-16 11:16:22', 1, '2022-07-16 11:28:47', 0, NULL, 1),
(9434, 'S.jayamurugan', '2', '8248011027', '9445748148', 'mukeshkanna110@gmail.com', '2002-03-26', 20, '2', '2', 'Sakthivel', 'Business', 30000.00, 1, 0.00, 225000.00, 'Porur chennai', 'Porur chennai', '2207160007', '1', '1', 'upload_files/candidate_tracker/27290658769_Modern Professional Resume (1).pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No ideas in Javascript,will not run in a long not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-16 11:59:24', 92, '2022-07-21 11:10:04', 0, NULL, 1),
(9435, 'R. Bhuvaneshwari', '13', '7550283138', '9840543526', 'rbhuvana006@gmail.com', '1998-10-27', 23, '2', '2', 'Rajendran', 'Painter', 15000.00, 1, 0.00, 15000.00, 'Kovilambakkam', 'Kovilambakkam', '2207160008', '1', '1', 'upload_files/candidate_tracker/32627673968_Bhuvana resume-3.pdf', NULL, '1', '2022-07-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic ideas she was into different Domain need to learn a lot,Already she holds an offer and look for some more distance also need to focus', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-16 12:26:43', 1, '2022-07-16 12:31:33', 0, NULL, 1),
(9436, 'harsh chatrani', '31', '9884343481', '', 'harsh7v82@gmail.com', '2002-02-25', 20, '2', '2', 'indhrani.m', 'hospital management', 20000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2207160009', '1', '1', 'upload_files/candidate_tracker/97986644514_Harsh2CV.pdf', NULL, '1', '2022-07-21', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for React Can give a try Thinking a lot  with TxxampC,if he come back let us try', '2', '2', '', '1', '1', '', '2', '2022-07-25', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-16 12:40:47', 92, '2022-07-19 03:13:59', 0, NULL, 1),
(9437, 'MAHALAKSHMI K', '13', '8778547463', '8098049732', 'mahalakshu24@gmail.com', '1997-06-12', 25, '2', '2', 'Kolanjiyappan', 'Daily wages', 15000.00, 1, 0.00, 18000.00, 'Paramanatham', 'Guindy', '2207160010', '1', '1', 'upload_files/candidate_tracker/1021029364_Maha.pdf', NULL, '1', '2022-07-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic  Skills need time to learn,if she come back after learning let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-16 01:22:56', 1, '2022-07-16 02:18:14', 0, NULL, 1),
(9438, 'SARATH C', '4', '8754876143', '', 'Sarathsro143@gmail.com', '2001-06-16', 21, '1', '2', 'Sivagami v', 'Farmer', 25000.00, 1, 0.00, 20000.00, 'Krishnagiri', 'Madiwala', '2207160011', '', '1', 'upload_files/candidate_tracker/70279663718_SARATH.pdf', NULL, '1', '2022-07-16', 0, 'Cafsusr00272', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-16 01:27:14', 1, '2022-07-16 01:43:59', 0, NULL, 1),
(9439, 'Dhanaseelan.M', '4', '8870559644', '', 'dhanaseelandhana07@gmail.com', '2001-08-29', 20, '1', '2', 'Madhan.P', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Dharumapuri', 'Hannamalihalli', '2207160012', '', '1', 'upload_files/candidate_tracker/69983609065_DHANASEELAN RESUME.doc', NULL, '1', '2022-07-16', 0, 'Cafsusr00272', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-16 01:27:43', 1, '2022-07-16 01:42:23', 0, NULL, 1),
(9440, 'S DINESH', '13', '8525804771', '6379867676', 'dineshoffice635803@gmail.com', '1999-05-15', 23, '2', '2', 'Saker', 'Former', 20000.00, 4, 0.00, 20000.00, 'Vellore', 'Vellore', '2207160013', '1', '1', 'upload_files/candidate_tracker/28623917932_Dinesh web resume.pdf', NULL, '1', '2022-07-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable no skills knowledge and will not handle our pressure and sustainability Doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-16 01:29:01', 1, '2022-07-16 01:35:34', 0, NULL, 1),
(9441, 'E.DUVARAGASH', '6', '9566181291', '8190899199', 'duvara5603@gmail.com', '1997-11-01', 24, '1', '1', 'Radhika', 'Housewife', 35000.00, 0, 0.00, 16000.00, 'Vadapalani', 'Vadapalani', '2207160014', '', '2', 'upload_files/candidate_tracker/20788566803_Duvaragash.Pdf', NULL, '1', '2022-07-16', 0, 'P1036', '3', '59', '2022-07-18', 230000.00, '', '4', '2022-09-15', '1', 'Selected for RE,As finalised by Ramesh We processed with this package', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-16 02:09:09', 60, '2022-07-18 09:45:53', 0, NULL, 1),
(9442, 'Sakthi Priya', '4', '6385463882', '7871062560', 'shakthipriya200228@gmail.com', '2002-05-28', 20, '2', '2', 'Subramani', 'Ex service man', 17.00, 2, 0.00, 15000.00, '423/24,21st nethaji street gkm colony ch-82', '423/24,22st nethaji street gkm colony ch-82', '2207160015', '1', '1', 'upload_files/candidate_tracker/70637759703_Shakti Resume.pdf', NULL, '1', '2022-07-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-16 06:07:07', 85, '2022-07-18 09:58:28', 0, NULL, 1),
(9443, 'Rajasundhar S', '2', '9791852209', '', 'rajasundhar1998@gmail.com', '1998-04-30', 24, '2', '2', 'Sevappurajan S', 'Security', 9000.00, 1, 0.00, 20000.00, 'Madurai', 'Chennai', '2207160016', '1', '1', 'upload_files/candidate_tracker/5839139484_Resume.pdf', NULL, '2', '2022-07-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-16 07:06:14', 85, '2022-07-19 12:34:41', 0, NULL, 1),
(9444, 'Ishwariya . G', '11', '7358771537', '9500092240', 'anuaishu103@gmail.com', '2001-06-03', 21, '4', '2', 'Gajendran', 'Daily wages', 15000.00, 1, 0.00, 1600.00, 'Chennai', 'Chennai', '2207160017', '', '1', 'upload_files/candidate_tracker/74597074003_jaelishu resume.docx', NULL, '1', '2022-07-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-16 10:07:44', 1, '2022-07-16 10:12:13', 0, NULL, 1),
(9445, '', '0', '6379221862', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207160018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-16 11:24:09', 0, NULL, 0, NULL, 1),
(9446, '', '0', '8939615468', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207170001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-17 04:57:44', 0, NULL, 0, NULL, 1),
(9447, 'Gayathri T', '11', '7904115419', '9940816006', 'gayathriloki1@gmail.com', '1997-07-21', 24, '2', '2', 'M Thangavel Reddy', 'Ex-army', 600000.00, 1, 0.00, 20000.00, 'Arakkonam', 'Arakkonam', '2207180001', '1', '1', 'upload_files/candidate_tracker/59233468546_GAYATHRI RESUME.pdf', NULL, '1', '2022-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance communication Average,Not ready to relocate will not sustain\n', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-18 09:17:19', 1, '2022-07-18 09:21:54', 0, NULL, 1),
(9448, 'RAJESH G', '13', '8525020199', '9123555935', 'rajeshgunasekaran72@gmail.com', '2000-04-18', 22, '2', '2', 'K GUNASEKARAN', 'GOVERNMENT EMPLOYEE', 15000.00, 1, 25000.00, 35000.00, 'THIRUVALLUR', 'THIRUVALLUR', '2207180002', '1', '2', 'upload_files/candidate_tracker/8012613500_Resume 1.pdf', NULL, '1', '2022-07-18', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He prefer to work in Java openings not suitable\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-18 10:07:15', 1, '2022-07-18 10:17:33', 0, NULL, 1),
(9449, 'Ponkumar', '31', '6382394993', '', 'ponkumarbalasubramanian@gmail.com', '1998-12-12', 23, '2', '2', 'Balasubramanian', 'Bachelor of engineering', 15000.00, 3, 0.00, 14000.00, 'Tirunelveli', 'Chennai', '2207180003', '1', '1', 'upload_files/candidate_tracker/39015163097_MyResume (1).pdf', NULL, '3', '2022-07-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not much strong with the skills,seems to be very slow 2nd round rejected by manikandan', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-18 10:42:45', 60, '2022-07-18 07:08:30', 0, NULL, 1),
(9450, 'Paranthaman', '31', '9894454155', '9500283251', 'thamanparan257@gmail.com', '1999-06-03', 23, '2', '2', 'Ravi', 'System Administrator', 15000.00, 2, 0.00, 400000.00, 'Chithamur', 'Chithamur', '2207180004', '1', '1', 'upload_files/candidate_tracker/2144463352_RESUME_-_PARANTHAMAN-converted_original[1].pdf', NULL, '1', '2022-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance need to relocate sustainability doubt,requested for a time to confirm  with parents but left without attending the 2nd level', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-18 11:10:40', 1, '2022-07-18 11:41:33', 0, NULL, 1),
(9451, 'SARAVANA KUMAR M', '13', '7604905669', '', 'msaravanakumarbca@gmail.com', '2000-02-10', 22, '2', '2', 'Murugesan', 'Cooli', 35000.00, 2, 17050.00, 20000.00, 'Sholinganallur', 'Malanthur', '2207180005', '1', '2', 'upload_files/candidate_tracker/1095448327_Saravana CV (1).pdf', NULL, '1', '2022-07-18', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in native  - PHP position,have basic knowledge sustainability doubts thinking a lot on TxxampC ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-18 11:30:30', 1, '2022-07-18 11:37:31', 0, NULL, 1),
(9452, 'Salimullah khan', '2', '6382726967', '', 'salimullahkhan6382@gmail.com', '1998-11-13', 23, '2', '2', 'Amanullah khan', 'Painter', 39000.00, 1, 0.00, 25000.00, 'Chennai', 'Perambur', '2207180006', '1', '1', 'upload_files/candidate_tracker/19673468813_SALIMULLAH KHAN (resume).pdf', NULL, '1', '2022-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Python opening xxamp Machine Learning Seems to little attitude,will not sustain,also not much comfort with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-18 11:31:35', 1, '2022-07-18 11:38:32', 0, NULL, 1),
(9453, 'LOGESHWARAN', '5', '8754714536', '', 'logeshwarandurairaj@gmail.com', '1994-07-03', 28, '1', '2', 'Durairaj', 'Unemployed', 15000.00, 1, 0.00, 20000.00, 'Salem', 'Salem', '2207180007', '', '2', 'upload_files/candidate_tracker/37101289421_logeshresume2 - Copy2os.pdf', NULL, '1', '2022-07-18', 0, 'P1322', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-18 11:38:54', 1, '2022-07-18 11:47:03', 0, NULL, 1),
(9454, 'Vigneshwar Senthilkumar', '5', '9361591303', '', 'vikkiketu@gmail.com', '1994-08-29', 27, '4', '1', 'Suhashini', 'Housewife', 20000.00, 1, 20000.00, 25000.00, 'Salem', 'Chennai', '2207180008', '', '2', 'upload_files/candidate_tracker/24855929504_mY cV.docx', NULL, '1', '2022-07-18', 15, '', '3', '59', '2022-08-10', 300000.00, '', '7', '1970-01-01', '1', 'Selected for  GK Sir with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-18 12:02:16', 60, '2022-07-23 05:05:33', 0, NULL, 1),
(9455, 'S.subhasri', '5', '9486642279', '', 's.subasrisuba12@gmail.com', '1994-12-02', 27, '4', '2', 'Siddeswaran', 'Building work', 20000.00, 1, 20000.00, 25000.00, 'MUGAPPAIR', 'MUGAPPAIR', '2207180009', '', '2', 'upload_files/candidate_tracker/48363929_resume_subhasri.pdf', NULL, '1', '2022-07-18', 15, '', '4', '29', NULL, 0.00, '', '0', NULL, '2', 'Have telecaller Exp in Personal Loan,Getting married shortly sustainability doubts kindly check and let me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-18 12:02:24', 1, '2022-07-18 12:08:44', 0, NULL, 1),
(9456, 'Mukeshkanna', '13', '6369437837', '8608656102', 'mukeshgeetha46@gmail.com', '2000-04-05', 22, '2', '2', 'Kasianthantham', 'Businesses', 30000.00, 2, 0.00, 1.80, 'Sithalapakkam', 'Sithalapakkam', '2207180010', '1', '1', 'upload_files/candidate_tracker/85631161537_Mukeshkanna.k Resume.docx', NULL, '1', '2022-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not ok with TxxampC being fresher his brother is into same PHP Distance around 50Kms up and down,Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-18 12:21:48', 1, '2022-07-18 12:31:17', 0, NULL, 1),
(9457, 'S Arun Prakash', '13', '7010220050', '9788667708', 'arunprakash062002@gmail.com', '2002-06-28', 20, '2', '2', 'K Siva Kumar', 'Cooli', 8000.00, 1, 0.00, 12000.00, 'Ambasamudram, Tirunelveli district', 'Ambasamudram, Tirunelveli district', '2207180011', '1', '1', 'upload_files/candidate_tracker/3209768562_Arun resume.docx', NULL, '3', '2022-07-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-18 03:50:44', 1, '2022-07-18 03:55:02', 0, NULL, 1),
(9458, 'Keerthi vasan', '2', '8682086938', '', 'Keerthiselva222@gmail.com', '1999-09-21', 22, '2', '2', 'Selvaraj', 'Farmer', 60000.00, 1, 0.00, 12000.00, 'Thiruvarur', 'Thiruvarur', '2207180012', '1', '1', 'upload_files/candidate_tracker/29301525911_Keerthi1_resume.docx.pdf', NULL, '1', '2022-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic knowledge but checked for 2nd level and rejected by Kaaviya', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-07-18 04:14:13', 1, '2022-07-18 04:18:11', 0, NULL, 1),
(9459, 'Ezhilarasi', '4', '9884880465', '9941540223', 'ezhilarasi4722@gmail.com', '2001-02-17', 21, '2', '2', 'Parent', 'Hospital helper', 13000.00, 0, 17500.00, 20000.00, 'Porur', 'Porur', '2207180013', '1', '2', 'upload_files/candidate_tracker/16003644476_EZHIL RESUME-1.pdf', NULL, '1', '2022-07-19', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-18 06:16:43', 85, '2022-07-19 12:33:19', 0, NULL, 1),
(9460, 'Murugavel V', '31', '9943406869', '', 'murugavel29052000@gmail.com', '2000-05-29', 22, '2', '2', 'Vellaisamy M', 'Farmer', 150000.00, 1, 0.00, 300000.00, 'Dindigul', 'Dindigul', '2207180014', '1', '1', 'upload_files/candidate_tracker/86903607457_Murugavel V.pdf', NULL, '3', '2022-07-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-18 06:30:32', 1, '2022-07-18 07:17:39', 0, NULL, 1),
(9461, 'jenifer joseph', '13', '8169145372', '9867472369', 'jeniferjoseph00@gmail.com', '2000-11-15', 21, '2', '2', 'j joseph justin', 'b.e information technology', 90000.00, 1, 0.00, 350000.00, 'chennai', 'kanyakumari', '2207180015', '1', '1', 'upload_files/candidate_tracker/32909553034_Jenifer-Joseph-Resume.pdf', NULL, '2', '2022-07-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-18 07:26:41', 1, '2022-07-19 02:06:10', 0, NULL, 1),
(9462, 'Sripriya', '31', '8778252941', '', 'sripriya.sdnbvc@gmail.com', '2000-04-16', 22, '2', '2', 'Krishnaveni', 'House wife', 10000.00, 0, 0.00, 20000.00, 'Chromepet', 'Chromepet', '2207180016', '1', '1', 'upload_files/candidate_tracker/8483150634_resume sripriya.docx.docx', NULL, '2', '2022-07-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-07-18 09:25:19', 1, '2022-07-18 10:28:39', 0, NULL, 1),
(9463, 'Aravind Radhakrishnan', '23', '9094665328', '6382599250', 'aravindradha93@gmail.com', '2001-01-04', 21, '2', '2', 'M.V.Rafhakrishnan', 'Catering', 25000.00, 1, 0.00, 18000.00, 'No:182, 4th St, shanthi nagar, chromepet, Ch-44', 'No:182, 4th st, shanthi nagar, chromepet, ch-44', '2207190001', '1', '1', 'upload_files/candidate_tracker/4785409979_aravind radhakrishnan.pdf', NULL, '1', '2022-07-19', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,have basic skills but not familiar with React,Open for UI UXdesign too need time to confirm on the TxxampC,if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-07-22', '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-19 09:41:42', 1, '2022-07-19 09:47:48', 0, NULL, 1),
(9464, '', '0', '9360848428', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207190002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-19 10:07:10', 0, NULL, 0, NULL, 1),
(9465, 'Kesavan k', '31', '6383219678', '', 'Kesavan3219@gmail.com', '2001-02-06', 21, '2', '2', 'Kannusamy', 'Farmer', 50000.00, 1, 0.00, 15000.00, 'Perambalur', 'Perambalur', '2207190003', '1', '1', 'upload_files/candidate_tracker/39222749924_Resume_Kesavan k_Format4.pdf', NULL, '1', '2022-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Average communication need to learn a lot 2nd interviewed and the same opinion after learning if he come let us try', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-19 10:53:09', 1, '2022-07-19 11:00:20', 0, NULL, 1),
(9466, 'Surya D', '13', '8637455789', '9585530994', 'Suryaajithsuryaajith73@gmail.com', '2000-03-05', 22, '2', '2', 'DevaRaj R', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Perambalur', 'Perambalur', '2207190004', '1', '1', 'upload_files/candidate_tracker/38272693373_Resume_Professional detail_Format1.pdf', NULL, '1', '2022-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication not open up will not sustain and not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-19 10:53:13', 1, '2022-07-19 11:07:06', 0, NULL, 1),
(9467, 'arthi ravikumar', '22', '6379109209', '', 'arthiaishu205@gmail.com', '1997-09-20', 24, '2', '2', 'ravikumar', 'farmer', 30000.00, 2, 0.00, 300000.00, 'dindivanam', 'Dindivanam', '2207190005', '1', '1', 'upload_files/candidate_tracker/56930425981_Arthi (2).pdf', NULL, '2', '2022-07-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-19 10:54:13', 1, '2022-07-19 11:04:56', 0, NULL, 1),
(9468, 'Mohammed Syed Awadh', '31', '7695907137', '', 'msawadh06@gmail.com', '2000-05-25', 22, '2', '2', 'Ebrahim', 'Intern', 50000.00, 2, 0.00, 30000.00, 'Ambattur, Chennai', 'Ambattur, Chennai', '2207190006', '1', '1', 'upload_files/candidate_tracker/36560460354_mohammed syed resume.pdf', NULL, '1', '2022-07-19', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good Communication have a theoritical knowledge,2nd interviewed by kavya and the same opinion he need time to give his confirmation on TxxampC', '2', '1', '', '1', '1', '', '2', '2022-07-22', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-19 11:09:50', 60, '2022-07-19 11:25:57', 0, NULL, 1),
(9469, 'Prasanth R', '23', '6374777245', '', 'Prasanthram18122000@gmail.com', '2000-12-18', 21, '2', '2', 'Ramakumar', 'Army', 40000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2207190007', '1', '1', 'upload_files/candidate_tracker/77699232143_RESUME.docx', NULL, '1', '2022-07-19', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'Have basic skills knowledge did some freelance project in UI UX ,Distance a lot and sustainability Doubt,kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-19 11:13:00', 1, '2022-07-19 11:18:08', 0, NULL, 1),
(9470, 'Poorvitha.M', '4', '7708691233', '7708999672', 'poorvitham2000@gmail.com', '2000-07-23', 21, '2', '2', 'Daddy', 'GH telephone operator in chengelpattu', 30000.00, 1, 0.00, 13.00, 'Walajabad Kanchipuram district', 'Tambaram', '2207190008', '1', '1', 'upload_files/candidate_tracker/27025786565_poorvitha.M.docx', NULL, '1', '2022-07-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2022-07-19 11:32:29', 1, '2022-07-19 01:28:15', 0, NULL, 1),
(9471, 'Srinivasan R', '14', '8667720964', '9940214515', 'srinivasanbolt619@gmail.com', '1999-08-21', 22, '2', '2', 'Nagalakshmi N', 'Teacher', 40000.00, 1, 0.00, 15000.00, 'No 13A, SGR nagar, Gerugambakam, Chennai 122', 'Chennai', '2207190009', '1', '1', 'upload_files/candidate_tracker/71061481024_Resume 5.3.pdf', NULL, '1', '2022-07-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have basic knowledge in flutter 2nd round interviewed by Gokul and on hold', '2', '1', '', '1', '1', '', '2', '2022-07-25', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-19 12:12:02', 85, '2022-07-19 12:32:16', 0, NULL, 1),
(9472, 'Deenathayalan V', '23', '8940696701', '', 'deenathayalan947@gmail.com', '1999-09-14', 22, '2', '2', 'N venkida subbu', 'Watchman', 10000.00, 1, 0.00, 15000.00, 'Kodambakkam', 'Kodambakkam', '2207190010', '1', '1', 'upload_files/candidate_tracker/50663469095_12 East street,Melachinnaiyapuram,virudhunagar, TamilNadu-626204.pdf', NULL, '1', '2022-07-20', 0, '', '3', '59', '2022-07-25', 120000.00, '', '', '1970-01-01', '2', 'Selected for Flutter Need to analyse 2nd round interviewed by Gokul ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-19 01:27:00', 85, '2022-07-20 10:10:54', 0, NULL, 1),
(9473, 'KARTHIKEYAN B', '5', '9884967360', '8122967360', 'dineshkarthik0501@gmail.com', '1995-01-05', 27, '1', '2', 'BAKYANATHAN', 'Retired', 30000.00, 1, 29000.00, 36000.00, 'Chennai', 'Chennai', '2207190011', '', '2', 'upload_files/candidate_tracker/8052171317_CV_karthik_ 15.06.2022.pdf', NULL, '1', '2022-07-21', 30, 'P1279', '3', '59', '2022-09-12', 360000.00, '', '4', '2023-06-10', '1', 'Selected for Shanmugam Team  - Staff Role', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-19 01:40:37', 60, '2022-12-07 10:45:08', 0, NULL, 1),
(9474, 'P. SIVAKUMAR', '5', '7305325941', '', 'Directsivakumarpostbox@gmail.com', '1988-05-07', 34, '2', '2', 'Pethaboyan', 'Farmer', 5000.00, 2, 300000.00, 25000.00, 'Ashok nagar', 'Ashok nagar', '2207190012', '25', '2', 'upload_files/candidate_tracker/58128087181_sivakumar .pdf', NULL, '1', '2022-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Age Around 34 yrs no sustainability with the previous Exp have only field Exp will not sustain with Telecalling RM profiles not Suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-19 02:18:00', 60, '2022-07-20 10:16:34', 0, NULL, 1),
(9475, 'Adhithyan', '6', '9344238236', '9361961552', 'adhithanp1996@gmail.com', '1996-05-15', 26, '1', '1', 'Ponnurangam. P', 'Former', 60000.00, 2, 0.00, 15000.00, 'Dharmapuri', 'Dharmapuri', '2207190013', '', '1', 'upload_files/candidate_tracker/98212872887_Adhithan p resume (1) (1).docx', NULL, '2', '2022-07-19', 0, 'P1272', '3', '59', '2022-07-25', 224000.00, '', '4', '2022-08-17', '2', 'Selected for Staff Role - Syed Team', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-19 03:52:59', 60, '2022-07-22 07:03:42', 0, NULL, 1),
(9476, 'Divya', '31', '9962330724', '', 'divyaravichandran512@gmail.com', '1999-12-05', 22, '2', '2', 'Ravichandran', 'Photographer', 10000.00, 1, 180000.00, 350000.00, 'Chennai', 'Chennai', '2207190014', '1', '2', 'upload_files/candidate_tracker/61145063093_Divya R.pdf', NULL, '1', '2022-07-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-19 04:28:33', 85, '2022-07-20 10:11:26', 0, NULL, 1),
(9477, 'sarath kumar', '2', '9043978103', '7812864322', 'sarathcodeio@gmail.com', '1996-07-07', 26, '2', '2', 'ranganathan', 'weavers', 24000.00, 1, 0.00, 28000.00, 'chennai', 'chennai', '2207190015', '1', '1', 'upload_files/candidate_tracker/14742251091_sarath(resume) (2).pdf', NULL, '1', '2022-07-20', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in PHP Can give a try for PHP Profile kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-19 05:43:20', 85, '2022-07-20 10:11:51', 0, NULL, 1),
(9478, 'Sujithra', '5', '9003202902', '6383638215', 'sujisri2225@gmail.com', '2000-06-22', 22, '4', '2', 'Gayathri', 'House wife', 20000.00, 1, 18000.00, 20000.00, 'Poonnamallee', 'Poonnamallee', '2207190016', '', '2', 'upload_files/candidate_tracker/50069796853_Sujiresume.pdf.pdf', NULL, '1', '2022-07-20', 0, '', '3', '59', '2022-07-21', 264000.00, '', '5', '1970-01-01', '2', 'Selected for Shanmugam Team with PF/PT Deductions', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-19 06:01:38', 60, '2022-07-22 03:49:45', 0, NULL, 1),
(9479, '', '0', '6379242219', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207190017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-19 06:26:53', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9480, 'gunaseelan m', '23', '7010187003', '7871291815', 'gunaseelanengineer@gmail.com', '1998-09-14', 24, '3', '2', 'mathavan', 'wholesale medical shop worker', 14000.00, 1, 0.00, 2.50, 'thanjavur', 'thanjavur', '2207190018', '', '1', 'upload_files/candidate_tracker/30291381331_Gunaseelan-2020- Fullstack.docx', NULL, '2', '2022-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject(Written Test) - Besant ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-19 08:24:50', 1, '2022-11-13 05:38:20', 0, NULL, 1),
(9481, '', '0', '9003043369', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207190019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-19 08:53:04', 0, NULL, 0, NULL, 1),
(9482, 'Venkadesh E', '31', '7548850887', '', 'venkijohn66@gmail.com', '2000-11-19', 21, '2', '2', 'Essaki', 'BE Computer science', 20000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Tirunelveli', '2207200001', '1', '1', 'upload_files/candidate_tracker/8832951272_vvenki.pdf', NULL, '1', '2022-07-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-20 10:02:24', 85, '2022-07-20 10:26:13', 0, NULL, 1),
(9483, 'Harsha Kumar U', '2', '9994919989', '', 'harshakumar.u07@gmail.com', '1999-02-07', 23, '2', '2', 'Umachandran S', 'Manager in private company', 20000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2207200002', '1', '1', 'upload_files/candidate_tracker/45712333135_HarshaKumarResume.pdf', NULL, '1', '2022-07-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-20 10:21:42', 1, '2022-07-20 10:25:29', 0, NULL, 1),
(9484, 'S.priya', '6', '7825041715', '', 'priyamuthu872@gmail.com', '1997-04-05', 25, '1', '1', 'Muthu Kumaran', 'Chemical engineering', 30000.00, 0, 0.00, 15000.00, 'Velachery', 'Velachery', '2207200003', '', '1', 'upload_files/candidate_tracker/76312324827_priyaResume.pdf', NULL, '1', '2022-07-20', 0, 'P1340', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Career Gap no Teleslaes Exp Kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-20 10:37:12', 60, '2022-07-20 06:15:30', 0, NULL, 1),
(9485, 'Vijay', '2', '9750645381', '', 'vijaym28021997@gmail.com', '1997-02-28', 25, '2', '2', 'Muthu', 'Farmer', 20000.00, 1, 0.00, 25000.00, 'Aranthangi', 'Chennai', '2207200004', '1', '1', 'upload_files/candidate_tracker/28321842559_Vijay Full stack.pdf', NULL, '1', '2022-07-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-20 10:44:40', 92, '2022-07-20 11:01:19', 0, NULL, 1),
(9486, 'Gopinath', '2', '9952064821', '8248206837', 'gopinathgr27@gmail.com', '1997-02-27', 25, '2', '2', 'Rajendran', 'Courier service', 10000.00, 2, 0.00, 15000.00, 'Guindy', 'Guindy', '2207200005', '1', '1', 'upload_files/candidate_tracker/28734266482_Gopi new. 2.pdf', NULL, '1', '2022-07-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-20 10:49:25', 1, '2022-07-20 10:53:13', 0, NULL, 1),
(9487, 'Saranya p', '4', '9791495406', '', 'saranyamba1601@gmail.com', '1998-01-16', 24, '2', '2', 'Poiyamozhi', 'Ex army', 15000.00, 4, 0.00, 10000.00, 'MIG142chithamani mc Rode Thanjavur', 'MIG142 chithamani MC Rode Thanjavur', '2207200006', '1', '1', 'upload_files/candidate_tracker/44677756345_Saranya P.docx', NULL, '1', '2022-07-20', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-20 11:06:04', 85, '2022-07-20 11:31:38', 0, NULL, 1),
(9488, 'VinoBala', '6', '9123581250', '9500987327', 'Vinobala817@gmail.Com', '2000-07-27', 21, '2', '2', 'T.palaimurugan', 'Auto Driver', 13000.00, 1, 0.00, 10000.00, '5/187 North Street, Thanjavur', 'Thanjavur', '2207200007', '1', '1', 'upload_files/candidate_tracker/21489781238_vinobala.Resume 1.docx', NULL, '1', '2022-07-20', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-20 11:18:19', 92, '2022-07-20 11:51:12', 0, NULL, 1),
(9489, 'Praveen D', '13', '7904914341', '', 'praveendhanasekar01@gmail.com', '2001-08-09', 20, '2', '2', 'Sujatha D', 'Housewife', 12000.00, 0, 0.00, 250000.00, 'Chennai', 'Chennai', '2207200008', '1', '1', 'upload_files/candidate_tracker/66110348549_Resume_PraveenD.pdf', NULL, '1', '2022-07-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher no basic ideas in PHP,Need time to give his confirmation on the TxxampC If he come back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-20 11:22:39', 92, '2022-07-20 11:38:46', 0, NULL, 1),
(9490, 'Gayathri Devi S M', '13', '9790900782', '7358238672', 'gayathridevi60719@gmail.com', '2007-07-20', 0, '2', '2', 'Mohan.S', 'B.tech CSE', 1.50, 0, 0.00, 3.50, 'Chennai', 'Chennai', '2207200009', '1', '1', 'upload_files/candidate_tracker/12950000244_Gayathri Devi S M_Resume.pdf', NULL, '1', '2022-07-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have a good knowledge in java only,no PHP,Looking for earnings much,Sustainability Doubt if she come back let us try', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-20 11:54:33', 92, '2022-07-20 12:02:19', 0, NULL, 1),
(9491, 'M.dinesh kumar', '4', '8072548342', '6383200482', 'dince454545@gmail.com', '1999-10-04', 22, '1', '2', 'G.meganathan', 'Building contractors', 30000.00, 4, 15000.00, 18000.00, 'Chennai', 'Chennai', '2207200010', '', '2', 'upload_files/candidate_tracker/88714719710_CV_dinesh kumar 1.1.pdf', NULL, '1', '2022-07-20', 0, 'P1146', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok Have Exp in Recovery Scheduled for the 2nd level but left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-20 12:29:22', 1, '2022-07-20 12:44:59', 0, NULL, 1),
(9492, 'LOKESH.V', '4', '8056129671', '', 'lok8056lke@gmail.com', '1998-05-19', 24, '1', '2', 'Pushpa', 'House wife', 20000.00, 2, 18000.00, 20000.00, 'Valasaravakkam chennai', 'Valasaravakkam chennai', '2207200011', '', '2', 'upload_files/candidate_tracker/2904150277_LOKESH RESUME 10.02.2021 (2).doc', NULL, '1', '2022-07-20', 0, 'P1146', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok Have Exp In Recovery Scheduled For The 2nd Level But Left Without Attending The Interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-20 12:33:13', 1, '2022-07-20 12:46:42', 0, NULL, 1),
(9493, '', '0', '9566188990', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207200012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-20 12:43:52', 0, NULL, 0, NULL, 1),
(9494, 'Renuga', '14', '7871826924', '7449153557', 'renugaselvi1234@gmail.com', '2001-05-29', 21, '2', '2', 'Harisekar', 'Dye work', 90000.00, 0, 0.00, 250000.00, 'Chennai', 'Chennai', '2207200013', '1', '1', 'upload_files/candidate_tracker/10501307264_Renu.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'thinking on TxxampC,Fresher not ready to sustain for a long may get marriage next year', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-20 12:53:04', 60, '2022-07-25 07:32:30', 0, NULL, 1),
(9495, 'karthick raja k', '14', '7708424409', '8667888204', 'karthikrajakamalakannan@gmail.com', '1998-03-16', 24, '2', '2', 'kamalakannan', 'fresher', 30000.00, 1, 0.00, 15000.00, 'rajapalayam', 'chennai', '2207200014', '1', '1', 'upload_files/candidate_tracker/69039241402_[RESUME] KARTHICK RAJA K.pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher ,Min Exp is 10K in intern,not open for TxxampC,His sis too in the same domain,will not join in TC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-20 05:03:13', 85, '2022-07-21 09:34:37', 0, NULL, 1),
(9496, 'Sowndhar Rajan T', '2', '9463848823', '8012678719', 'syprogrammer01@gmail.com', '2002-06-08', 20, '2', '2', 'Thangarasu', 'Cooking contractor', 10000.00, 1, 0.00, 25000.00, '28/1,Anthiyur Main Road, Apakudal,Erode-638315', '28/1,Anthiyur Main Road, Apakudal,Erode-638315', '2207200015', '1', '1', 'upload_files/candidate_tracker/36369240924_Sowndhar Rajan T CV (1).pdf', NULL, '3', '2022-07-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-20 05:30:06', 1, '2022-07-20 05:39:02', 0, NULL, 1),
(9497, 'saiprasanna', '13', '9790101072', '8220122063', 'saiprasannaktm@gmail.com', '1999-04-21', 23, '2', '2', 'sankaran', 'retirred', 40000.00, 1, 0.00, 400000.00, 'Kuttalam', 'Kuttalam', '2207200016', '1', '1', 'upload_files/candidate_tracker/77475109235_saiprasanna_9790101072.pdf', NULL, '2', '2022-07-21', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Have basic knowledge in PHP Skills can be trained but salary Exp is high,kindly check his technical skills and can decide based on the output', '2', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-20 05:53:02', 1, '2022-07-20 05:58:45', 0, NULL, 1),
(9498, 'D . Manikandan', '13', '7401349137', '', 'manikandan740134@gmail.com', '1997-06-14', 25, '2', '2', 'Durai', 'Centring', 13000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2207210001', '1', '1', 'upload_files/candidate_tracker/92103209751_0_Resumedoc5_Manikandan22.docx', NULL, '1', '2022-07-22', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have basic knowledge in PHP SKills Open for TxxampC,Kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-21 09:47:33', 60, '2022-07-22 04:55:26', 0, NULL, 1),
(9499, 'shanmugam', '31', '9952421356', '', 'zhanmuga.sakthi@gmail.com', '1999-06-20', 23, '2', '2', 'sakthivel', 'driver', 10000.00, 1, 10000.00, 15000.00, 'krishnagiri', 'bangalore', '2207210002', '1', '2', 'upload_files/candidate_tracker/23890918072_shanmugam Resume (1).pdf', NULL, '2', '2022-07-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 5 months Exp in the Front end Working on React Project and his current salary is 12.5K(1.5LPA) and his exp min 15-16K TH. Need to be analyzed by giving the task, Also thinking about the TxxampC.If he come back let us give a try', '2', '1', '', '1', '1', '', '2', '2022-07-25', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-21 09:47:37', 92, '2022-07-22 05:08:07', 0, NULL, 1),
(9500, 'rajukumar r', '2', '8838267320', '', 'rrajukumarramalingam@gmail.com', '1997-05-01', 25, '2', '2', 'ramalingam k', 'bus conductor', 24000.00, 3, 0.00, 18000.00, 'cuddalore', 'cuddalore', '2207210003', '1', '1', 'upload_files/candidate_tracker/89314497396_RajuN.pdf', NULL, '2', '2022-07-22', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Knowledge In React SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '2022-07-25', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-21 10:19:06', 85, '2022-07-22 09:57:55', 0, NULL, 1),
(9501, 'Yuvaraja k', '14', '9994026967', '', 'yuvakraja162@gmail.com', '2000-07-26', 21, '2', '2', 'Kandasamy', 'Site Engineer', 200000.00, 1, 0.00, 350000.00, 'Trichy', 'Chennai', '2207210004', '1', '1', 'upload_files/candidate_tracker/73676732891_Yuvaraja K (1).pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,Already got some offers and not joined as the salary was around 15K His min Exp  is 20-25K ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-21 10:53:41', 1, '2022-07-21 10:57:13', 0, NULL, 1),
(9502, 'Sinivasan.R', '4', '9994762721', '7845498868', 'Cheenu2952@gmail.com', '2000-05-29', 22, '2', '2', 'P.Ravichandran', 'Velder', 20000.00, 1, 0.00, 12000.00, '263/1 ,nagarachi Nagar,solar,erode-2', '263/1 ,nagarachi nagar,solar,erode-2', '2207210005', '1', '1', 'upload_files/candidate_tracker/22100698535_Sinivasan_Resume-1.docx', NULL, '1', '2022-07-21', 0, '', '3', '59', '2022-07-28', 126312.00, '', '3', '2022-10-15', '1', 'Selected for Erode in Consultant role', '1', '1', '1', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-21 11:14:47', 60, '2022-07-26 07:06:28', 0, NULL, 1),
(9503, 'Asha D', '5', '8549929779', '9980431318', 'Ashadgowda1997@gmail.com', '2007-07-21', 0, '1', '2', 'Doddeerappa', 'Agriculture', 20000.00, 3, 18000.00, 20000.00, 'Pavagada', 'Bangalore', '2207210006', '', '2', 'upload_files/candidate_tracker/53307339278_Asha DGowda.docx', NULL, '1', '2022-07-21', 0, '55583', '3', '59', '2022-07-27', 202104.00, '', '7', '1970-01-01', '2', 'Selected for Consultant Role  -  Muppudathy Team', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-21 11:20:27', 60, '2022-07-23 03:24:41', 0, NULL, 1),
(9504, 'D kishore', '13', '7358470510', '9360072993', 'kishorektm19@gmail.com', '2002-04-17', 20, '2', '2', 'R dhakshinamoorthy', 'Driver', 100000.00, 0, 0.00, 200000.00, 'Ambattur', 'Ambattur', '2207210007', '1', '1', 'upload_files/candidate_tracker/77800764547_Share new kishore .pdf', NULL, '1', '2022-07-21', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'Fresher just learning the skills kindly check and let me know your inputs,He is ok with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-21 11:24:54', 1, '2022-07-21 11:47:17', 0, NULL, 1),
(9505, 'Karthikeyan s', '14', '8015275532', '6381013497', 'Mcakarthi3@gmail.com', '1994-02-03', 28, '2', '1', 'M selvam', 'Hand loomer', 10000.00, 2, 432000.00, 800000.00, 'Salem', 'Chennai', '2207210008', '1', '2', 'upload_files/candidate_tracker/76343034474_Karthikeyan Resume.pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Flutter position', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-21 11:24:55', 1, '2022-07-21 11:31:05', 0, NULL, 1),
(9506, 'Yuvaraj j', '2', '8825535833', '', 'Yuvaraj1336@gmail.com', '2000-09-06', 21, '2', '2', 'Latha j', 'Food packing department', 14000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2207210009', '1', '1', 'upload_files/candidate_tracker/29651597569_YUVARAJ .pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open With TxxampC Fresher Did Some Course In Beeja Technologies ,Came Along With Friends,No Basic Ideas In NodeJS Will Not Sustain Not Suitable ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-21 11:28:57', 1, '2022-07-21 11:46:49', 0, NULL, 1),
(9507, 'JITHIN VIJAYAN', '2', '8667326236', '', 'vjithin045@gmail.com', '1998-09-11', 23, '2', '2', 'VIJAYAN', 'EX-SERVICE MAN', 1.00, 1, 0.00, 3000.00, 'CHENNAI', 'CHENNAI', '2207210010', '1', '1', 'upload_files/candidate_tracker/53459936026_NEW RESUME.pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open with TxxampC fresher did some course in Beeja Technologies ,Came along with friends,no basic ideas in NodeJS will not sustain not suitable have a plan to travel abroad', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-21 11:29:05', 1, '2022-07-21 11:35:03', 0, NULL, 1),
(9508, 'Praveen k', '2', '9080333986', '', 'pravin33986@gmail.com', '1999-12-01', 22, '2', '2', 'KrishnaMoorthy k', 'Field operator', 3.00, 1, 0.00, 300000.00, 'No 2/544a Ganapathy Nagar Thiruninravur', 'Chennai', '2207210011', '1', '1', 'upload_files/candidate_tracker/92036683749_PRAVEEN\'s Resume.pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open With TxxampC Fresher Did Some Course In Beeja Technologies ,Came Along With Friends,No Basic Ideas In NodeJS Will Not Sustain Not Suitable ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-21 11:29:14', 1, '2022-07-21 11:37:18', 0, NULL, 1),
(9509, 'Vignesh R', '2', '9884426708', '7299665912', 'vigneshramalingam8@gmail.com', '1999-06-23', 23, '2', '2', 'Ramalingam U', 'Mason', 12.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2207210012', '1', '1', 'upload_files/candidate_tracker/17536614680_VIGNESH Resume.pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open With TxxampC Fresher Did Some Course In Beeja Technologies ,Came Along With Friends,No Basic Ideas In NodeJS Will Not Sustain Not Suitable ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-21 11:29:15', 1, '2022-07-21 11:38:32', 0, NULL, 1),
(9510, 'vignesh t', '31', '8072510363', '', 'vickyskc06@gmail.com', '1999-06-30', 23, '2', '2', 'tharmar', 'farmer', 15000.00, 0, 0.00, 350000.00, 'manaparai', 'Chennai', '2207210013', '1', '1', 'upload_files/candidate_tracker/23005849661_VICKY WEB RESUME.pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have basic knowledge in HTMl,CSS,JS not much with React Need time to give his confirmation for TxxampC if he come back let us give a try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-21 11:31:42', 1, '2022-07-21 12:07:14', 0, NULL, 1),
(9511, 'h.mohamed fairoz', '5', '9551817374', '9884331577', 'fairoz2909@gmail.com', '1996-07-29', 25, '1', '1', 'm.nandhini', 'salaried', 30000.00, 1, 19250.00, 25000.00, 'ernavoor', 'ernavoor', '2207210014', '', '2', 'upload_files/candidate_tracker/35976898934_2 Resume.docx', NULL, '1', '2022-07-21', 0, 'p1279', '3', '59', '2022-07-25', 285696.00, '', '4', '2022-09-05', '1', 'Selected for Shanmugam Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-21 02:32:50', 60, '2022-07-22 03:57:23', 0, NULL, 1),
(9512, 'RAMKUMAR.S', '6', '8489761298', '', 'sramkumar2252001@gmail.com', '2001-05-22', 21, '2', '2', 'Sivakumar', 'Spinning mill', 15000.00, 0, 0.00, 15000.00, 'Tiruchengode NAMAKKAL', 'Tiruchengode NAMAKKAL', '2207210015', '1', '1', 'upload_files/candidate_tracker/15813599738_RAMKUMAR.S.pdf', NULL, '1', '2022-07-23', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected not suitable for telecalling job.. ', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-21 05:06:58', 60, '2022-07-23 01:27:42', 0, NULL, 1),
(9513, 'Aadhithiyan Suresh kumar', '13', '8428581713', '', 'aadhithiyan425@gmail.com', '2001-04-03', 21, '2', '2', 'Sureshkumar', 'Shopkeeper', 30000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2207220001', '1', '1', 'upload_files/candidate_tracker/34718761410_Aadhithiyan.pdf', NULL, '1', '2022-07-22', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Knowledge In PHP SKills Currently learning Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-22 10:03:57', 1, '2022-07-22 10:07:37', 0, NULL, 1),
(9514, 'SALMANKHAN', '5', '7395930800', '8056138132', 'Salmankhan.cherrokay@gmail.com', '1993-11-09', 28, '1', '1', 'Lathifa', 'Clerk', 50000.00, 1, 6.50, 6.50, 'Chennai', 'Chennai', '2207220002', '', '2', 'upload_files/candidate_tracker/2727520669_Salmankhan-Operations09PP (1).pdf', NULL, '1', '2022-07-22', 0, 'P1242', '3', '59', '2022-07-29', 360000.00, '', '7', '1970-01-01', '1', 'Selected for  Santhosh Team with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-22 10:35:52', 60, '2022-07-27 05:36:45', 0, NULL, 1),
(9515, 'Farheen Sulthana S', '13', '9003208001', '9940169807', 'farheensulthana.s3@gmail.com', '2001-10-30', 20, '2', '2', 'S. MubeenTara', 'Housewife', 4000.00, 1, 0.00, 240000.00, 'Chennai', 'Chennai', '2207220003', '1', '1', 'upload_files/candidate_tracker/9920538334_Farheen Sulthana.pdf', NULL, '1', '2022-07-22', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Knowledge In PHP SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-22 10:40:49', 92, '2022-07-22 11:15:42', 0, NULL, 1),
(9516, 'V. Praveen kumar', '13', '9840360312', '', 'Praveenvelu1995@gmail.com', '1995-04-13', 27, '2', '2', 'Velu', 'Electricain', 13000.00, 3, 0.00, 12000.00, 'Chennai', 'Chennai', '2207220004', '1', '1', 'upload_files/candidate_tracker/58892887824_praveen kumar resume.pdf', NULL, '1', '2022-07-22', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Basic Knowledge In PHP SKills Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-22 10:41:44', 60, '2022-07-22 04:55:53', 0, NULL, 1),
(9517, 'J. Maria cathrin', '13', '7550197170', '9710971545', 'mariacathrin1@gmail.com', '2002-03-31', 20, '2', '2', 'L. John', 'Printing & binding', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2207220005', '1', '1', 'upload_files/candidate_tracker/76830156104_resume maria.pdf', NULL, '1', '2022-07-22', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Knowledge In PHP SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-22 10:46:31', 92, '2022-07-22 11:15:28', 0, NULL, 1),
(9518, 'Rabisanth', '31', '9344008010', '8015820675', 'shankarrabi17@gmail.com', '1998-03-17', 24, '2', '2', 'Sumathi', 'Housewife', 50000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2207220006', '1', '1', 'upload_files/candidate_tracker/54433110045_Rabisanth (1).pdf', NULL, '1', '2022-07-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic skills knowledge not suitable\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-22 10:52:30', 1, '2022-07-22 11:01:29', 0, NULL, 1),
(9519, 'Ayyanar G', '2', '8124500276', '', 'ganesanayyanar11@gmail.com', '2000-08-02', 21, '2', '2', 'P. Ganesan', 'Electrician', 15000.00, 1, 0.00, 12000.00, 'Kovilpatti', 'Kovilpatti', '2207220007', '1', '1', 'upload_files/candidate_tracker/70393988683_CV Ayyanar rsm.pdf', NULL, '1', '2022-07-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills knowledge ,not suitable will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-22 11:28:40', 1, '2022-07-22 11:33:20', 0, NULL, 1),
(9520, 'Kotteswari', '6', '7871699603', '', 'Kottewaripalani80@gmail.con', '2001-12-20', 20, '1', '2', 'Valli', 'Tailor', 9000.00, 1, 0.00, 16000.00, 'Kattupakkam', 'Kattupakkam', '2207220008', '', '1', 'upload_files/candidate_tracker/86211451368_Document.pdf', NULL, '1', '2022-07-22', 0, 'P1191', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,Seems not comfort with Target Sustainability doubts Internal Team reference kindly check and let me know your inouts', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-22 11:31:44', 60, '2022-07-22 04:57:36', 0, NULL, 1),
(9521, 'SELVAMANI.P', '23', '6380098585', '9585122683', 'maniselva.pt@gmail.com', '1995-04-03', 27, '2', '2', 'Thamizhselvi', 'Formar', 12000.00, 5, 0.00, 9000.00, '7/4,west street,ka.puththur, cuddalore', 'Kasi estate, jaffarkhanpet', '2207220009', '1', '1', 'upload_files/candidate_tracker/15845993241_Resume.pdf', NULL, '3', '2022-07-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Last week attended and rejected,again appeared today will not sustain and not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-22 11:33:35', 1, '2022-07-22 11:39:51', 0, NULL, 1),
(9522, 'M.kavin', '6', '6382075157', '7558115157', 'kavinpeterson317@gmail.com', '2001-10-26', 20, '1', '2', 'Mookkaiyan.P', 'Coolie', 16000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2207220010', '', '1', 'upload_files/candidate_tracker/88593283753_Kavin resume.pdf', NULL, '1', '2022-07-22', 0, 'P1303', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'not Interested in sales', '5', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 12:28:27', 1, '2022-07-22 12:45:21', 0, NULL, 1),
(9523, 'Om Velan R', '6', '8531847015', '7010309819', 'Ronaldovelan@gmail.com', '2002-03-09', 20, '1', '2', 'M. Rajendran', 'Coolie', 16000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2207220011', '', '1', 'upload_files/candidate_tracker/35870173958_Velan Resume (1).pdf', NULL, '1', '2022-07-22', 0, 'P1303', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'Not interested in sales', '5', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 12:28:55', 1, '2022-07-22 12:43:34', 0, NULL, 1),
(9524, 'Boopalan R', '6', '8124928251', '9080158381', 'boopalanking901@gmail.com', '2002-05-30', 20, '1', '2', 'M. Ravi', 'Coolie', 16000.00, 2, 0.00, 15000.00, 'Erode', 'Erode', '2207220012', '', '1', 'upload_files/candidate_tracker/97754465144_CV_2022072121575967.pdf', NULL, '1', '2022-07-22', 0, 'P1303', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'Not interested in sales', '5', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 12:29:09', 1, '2022-07-22 12:45:29', 0, NULL, 1),
(9525, 'S.Vignesh', '6', '6381706973', '', 'vigneshvicky35334@gmail.com', '2001-12-18', 20, '1', '2', 'R.Selvaraj', 'Coolie', 15000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2207220013', '', '1', 'upload_files/candidate_tracker/36765228147_clg vicky resume.docx', NULL, '1', '2022-07-22', 0, 'P1303', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'Not Interested in sales', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 12:30:09', 1, '2022-07-22 12:55:23', 0, NULL, 1),
(9526, 'Jawahar k', '6', '8682965686', '', 'jawahark2580@gmail.com', '2002-05-03', 20, '1', '2', 'Karthikeyan G', 'Coolie', 15000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2207220014', '', '1', 'upload_files/candidate_tracker/24506206521_JAWAHAR RESUME-1.pdf', NULL, '1', '2022-07-22', 0, 'P1303', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'Not interested in sales', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 12:32:06', 1, '2022-07-22 12:55:38', 0, NULL, 1),
(9527, 'SURYA E', '4', '7904572389', '', 'suryae464@gmail.com', '2001-06-24', 21, '1', '2', 'Valli E', 'Tailor', 13000.00, 0, 0.00, 18000.00, 'No,61oragadam road Ambattur OT Bustand', 'Ambattur OT Bustand', '2207220015', '', '1', 'upload_files/candidate_tracker/93020066884_RESUME OF SURYA 2.0.pdf', NULL, '3', '2022-07-22', 0, '', '1', '14', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 01:02:46', 1, '2022-07-22 01:29:46', 0, NULL, 1),
(9528, 'pradeep raj', '31', '9578521386', '', 'pradeepsuresh@gmail.com', '1999-05-06', 23, '2', '2', 'suresh', 'farmer', 12000.00, 1, 0.00, 15000.00, 'Thiruvarur', 'Thiruvarur', '2207220016', '1', '1', 'upload_files/candidate_tracker/34335706259_PRADEEPRAJ S (1).pdf', NULL, '2', '2022-07-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-22 02:42:48', 92, '2022-07-22 05:07:44', 0, NULL, 1),
(9529, 'Sandhiya', '13', '8248419526', '', 'sandyviji0208@gmail.com', '1999-08-02', 22, '2', '2', 'Pugzhalendhi. L', 'Superintendent', 60000.00, 0, 0.00, 16000.00, 'Thanjavur', 'Chennai', '2207220017', '1', '1', 'upload_files/candidate_tracker/29322486761_sandhiya.pdf', NULL, '1', '2022-07-22', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Knowledge In PHP SKills 6 months Exp in PHP Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-22 02:47:16', 1, '2022-07-22 02:52:34', 0, NULL, 1),
(9530, 'charles', '31', '9940873898', '', 'charlesramasamy1999@gmail.com', '1999-04-19', 23, '2', '2', 'ramasamy', 'farmer', 10000.00, 1, 1.50, 200000.00, 'erode', 'Chennai', '2207220018', '1', '2', 'upload_files/candidate_tracker/64604091494_updated resume (4).pdf', NULL, '1', '2022-07-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-22 02:55:54', 92, '2022-07-23 09:51:52', 0, NULL, 1),
(9531, 'Santhosh S', '2', '8072041912', '', 'santhosh29801@gmail.com', '2001-08-29', 20, '2', '2', 'Sivasankar', 'Medical billing', 30000.00, 1, 0.00, 30000.00, 'Tiruvannamalai', 'Chennai', '2207220019', '1', '1', 'upload_files/candidate_tracker/88856761725_Santhosh .pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need time to learn and think on TxxampC,if he come back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-22 03:28:19', 85, '2022-07-25 10:03:59', 0, NULL, 1),
(9532, 'Chandraprabha', '13', '6379453211', '', 'chandraprabharavi98@gmail.com', '1998-02-07', 24, '2', '2', 'S.Ravi', 'Weaver', 10000.00, 1, 0.00, 20000.00, 'Salem', 'Chennai', '2207220020', '1', '1', 'upload_files/candidate_tracker/21594308888_chandraprabharesum1.pdf', NULL, '1', '2022-07-22', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Knowledge In PHP SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-22 03:52:13', 92, '2022-07-22 04:01:52', 0, NULL, 1),
(9533, 'Karthickraju', '2', '8668070636', '7358178832', 'karthickraju687@gmail.com', '1999-01-26', 23, '3', '2', 'No', 'Fresher', 1.00, 3, 0.00, 3.50, 'Chennai', 'Chennai', '2207220021', '', '1', 'upload_files/candidate_tracker/43077308943_Resume karthick1999.docx', NULL, '2', '2022-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 06:19:56', 1, '2022-07-22 06:23:42', 0, NULL, 1),
(9534, 'Vinoth T', '4', '9688648396', '7010535816', 'vinoththangaveln@gmail.com', '1995-01-13', 27, '3', '2', 'V N Thangavel', 'Nambiyur', 200000.00, 1, 0.00, 13000.00, 'Nambiyur', 'Nambiyur', '2207230001', '', '1', 'upload_files/candidate_tracker/22564647239_Vinoth Resume.docx', NULL, '1', '2022-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not responding the calls continuous RNR', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-23 09:54:12', 60, '2022-07-23 04:08:08', 0, NULL, 1),
(9535, 'Jegadeesan B', '31', '9941126798', '8124210913', 'Jegadeesan1402@gmail.com', '2007-07-23', 0, '2', '2', 'Saraswathi b', 'Maid', 100000.00, 1, 0.00, 14000.00, 'Chennai', 'Valasaravakkam,chennai', '2207230002', '1', '1', 'upload_files/candidate_tracker/98430355532_JEGADEESAN_B_RESUME_v2.docx', NULL, '1', '2022-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Much Good in Skills not answering will not sustain thinking a lot with TxxampC\n', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-23 10:18:03', 1, '2022-07-23 10:23:12', 0, NULL, 1),
(9536, 'Hariharan', '31', '9150433691', '', 'hariharanmech1212@gmail.com', '1999-08-02', 22, '2', '2', 'Kanappan', 'Former', 15000.00, 1, 0.00, 350000.00, 'Pudukkottai', 'Chennai', '2207230003', '1', '1', 'upload_files/candidate_tracker/23022775710_Hariharan k.pdf', NULL, '1', '2022-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Nt much good in skills No sustainability in his previous exp will not sustain and not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-23 10:21:20', 1, '2022-07-23 10:31:54', 0, NULL, 1),
(9537, '', '0', '9659681524', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207230004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-23 10:25:01', 0, NULL, 0, NULL, 1),
(9538, 'BHARATHIMOHAN R', '2', '8778156865', '8973665412', 'bharathiguru2000d@gmail.com', '2000-08-05', 21, '2', '2', 'RAVICHANDRAN S', 'Farmer', 10000.00, 1, 0.00, 23000.00, 'Thiruvarur', 'Thiruvarur', '2207230005', '1', '1', 'upload_files/candidate_tracker/1731493445_BHARATHI MOHAN R (1).pdf', NULL, '1', '2022-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not open for Internship Fresher no basic ideas in Javascript,not answering the questions not suitable', '2', '1', '', '4', '5', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 10:36:30', 85, '2022-07-23 10:49:16', 0, NULL, 1),
(9539, 'Sriram M', '13', '9962620227', '', 'sriraam10460@gmail.com', '2001-06-15', 21, '2', '2', 'Muthu Krishnan J', 'MTC driver', 35000.00, 2, 0.00, 18000.00, '17/20 TPS nagar Kaladipet, Chennai-19', '17/20 TPS Nagar Kaladipet, Chennai-19', '2207230006', '1', '1', 'upload_files/candidate_tracker/12654493890_sriram resume.pdf', NULL, '1', '2022-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'up and down 40 kms,not open with TxxampC hold for 2nd level but later he mentioned that was not comfortable with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-23 11:08:50', 1, '2022-07-23 11:14:08', 0, NULL, 1),
(9540, 'Akilan.m', '6', '7010789987', '9095686798', 'akilanmurugan264@gmail.com', '1998-01-30', 24, '2', '2', 'Murugan.m', 'Milka wondercake ( manager)', 25000.00, 2, 18000.00, 18000.00, 'Erode', 'Erode', '2207230007', '1', '2', 'upload_files/candidate_tracker/13907395495_Akilan New Resume.pdf', NULL, '1', '2022-07-23', 1, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate not yet relieved from the company will take another 20 days time', '5', '1', '', '4', '7', '', '2', '2022-08-16', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 11:11:57', 60, '2022-07-23 01:27:24', 0, NULL, 1),
(9541, 'Logeswaran V', '31', '9791198492', '', 'logeswaran1710@gmail.com', '1997-10-17', 24, '2', '2', 'Vijaybhaskaran', 'Shop keeper', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2207230008', '1', '1', 'upload_files/candidate_tracker/46204466113_my resume.pdf', NULL, '1', '2022-07-23', 0, '', '3', '59', '2022-07-25', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Mern  - Internship Employment', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-23 11:20:24', 60, '2022-09-26 09:47:31', 0, NULL, 1),
(9542, 'S.Kaushik Sankar', '22', '9962006677', '9884712712', 'kaushikshankar3017@gmail.com', '1999-03-15', 23, '2', '2', 'S.Selvan', 'Business', 40000.00, 1, 0.00, 13000.00, 'Chetpet', 'Chetpet', '2207230009', '1', '1', 'upload_files/candidate_tracker/65367278095_Content Writer Job Resume.pdf', NULL, '1', '2022-07-23', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate wont suit our team', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 12:27:22', 85, '2022-07-23 12:36:33', 0, NULL, 1),
(9543, 'NAVACHANDRAN K', '13', '6381092203', '9043376561', 'navakchandran@gmail.com', '2000-06-14', 22, '2', '2', 'Kanthan', 'Conductor', 250000.00, 2, 0.00, 25000.00, 'TIRUNELVELI', 'Chennai', '2207230010', '1', '1', 'upload_files/candidate_tracker/69205017439_resume.pdf', NULL, '1', '2022-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not answering much,Have a plan to go again with Police Exams,Looking for more stipend in Intern Fresher 2yrs GAP Thinking a lot with TxxampC Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-23 01:33:31', 1, '2022-07-23 01:36:55', 0, NULL, 1),
(9544, 'Muthuraja', '31', '9943624318', '', 'gmuthuraja1994@gmail.com', '1994-04-24', 28, '2', '2', 'Gurusamy', 'Agriculture', 15000.00, 2, 0.00, 9000.00, 'Madurai', 'Madurai', '2207230011', '1', '1', 'upload_files/candidate_tracker/69174773199_muthucv.pdf', NULL, '1', '2022-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Age 28 yrs career gap 2015 passed out will not handle our pressure and fast learning doubts not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-23 03:11:34', 92, '2022-07-23 03:23:02', 0, NULL, 1),
(9545, 'Akash kumar t', '6', '7395920711', '', 'akashkrish200144@gmail.com', '2001-11-20', 20, '2', '2', 'Thulasi', 'Store executive', 45000.00, 1, 0.00, 12000.00, 'Vandalur', 'Vandalur', '2207230012', '1', '1', 'upload_files/candidate_tracker/87186279467_AKASH RESUME current.pdf', NULL, '1', '2022-07-26', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile need to open a lot kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 03:42:23', 60, '2022-07-26 07:27:24', 0, NULL, 1),
(9546, '', '0', '7397488995', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207230013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-23 03:56:25', 0, NULL, 0, NULL, 1),
(9547, 'n.malini', '13', '9150547914', '9150350238', 'sakthimalini0712@gmail.com', '2001-12-07', 20, '2', '2', 'a.p.nagaraj', 'gerocery shop', 25000.00, 3, 0.00, 15000.00, 'madurai', 'madurai', '2207230014', '1', '1', 'upload_files/candidate_tracker/33169948634_Malini N.pdf', NULL, '2', '2022-07-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-23 04:51:54', 92, '2022-07-25 10:13:32', 0, NULL, 1),
(9548, 'Jothishree Srinivasan', '13', '8248396694', '9176055035', 'jothishreesrinivasan295@gmail.com', '2000-10-08', 21, '2', '2', 'V. Srinivasan', 'Gold smith', 7200.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2207230015', '1', '1', 'upload_files/candidate_tracker/18034740318_JS-Resume.pdf', NULL, '3', '2022-07-25', 0, '', '3', '59', '2022-07-28', 120000.00, '', '', '1970-01-01', '2', 'Selected for Mern if she join lets see', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 04:52:05', 85, '2022-07-25 10:03:21', 0, NULL, 1),
(9549, 'PRAVEENKUMAR', '4', '9790076052', '8940024013', 'praveensamy71@gmail.com', '2001-06-03', 21, '2', '2', 'CHINNASAMY', 'Farmer', 10000.00, 2, 0.00, 12000.00, 'Chennai', 'Kallakurichi', '2207230016', '1', '1', 'upload_files/candidate_tracker/85461436617_PRAVEENKUMAR C RESUME (1) (1).pdf', NULL, '1', '2022-07-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 05:31:39', 85, '2022-07-23 05:59:32', 0, NULL, 1),
(9550, 'Deenathayalan.R', '4', '9655893943', '9159364844', 'deenathayalan543@gmail', '2002-04-09', 20, '2', '2', 'Ramachandran', 'Farmer', 15000.00, 2, 0.00, 15000.00, '1/71a , Puzhuthikulam, Ramanathapuram 623706', 'bharathipuram chrompet Chennai -600044', '2207230017', '1', '1', 'upload_files/candidate_tracker/24977782813_DEENATHAYALAN.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable need to open a lot,will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 05:46:22', 85, '2022-07-23 06:31:27', 0, NULL, 1),
(9551, 'Suvedha K', '23', '7358083188', '8939007428', 'suve7299@gmail.com', '1999-02-07', 23, '2', '2', 'Karupannan M', 'Driver', 30000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2207250001', '1', '1', 'upload_files/candidate_tracker/81054062314_suvedha.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas in JS,Not answering the basic requirement not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 09:47:53', 85, '2022-07-25 10:04:19', 0, NULL, 1),
(9552, 'Ponmathi P', '13', '9361620268', '', 'ponmathittl@gmail.com', '1999-07-03', 23, '2', '2', 'Ponraj S', 'Business', 80000.00, 1, 38000.00, 35000.00, 'Sivakasi', 'Sivakasi', '2207250002', '1', '2', 'upload_files/candidate_tracker/34452954772_Ponmathi.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for testing profile only ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-25 10:23:08', 85, '2022-07-25 10:56:04', 0, NULL, 1),
(9553, 'SYED GOUSE S', '13', '7339159597', '', 'syedgouse438@gmail.com', '2001-07-07', 21, '2', '2', 'S', 'Business', 5000.00, 1, 0.00, 20000.00, 'VILUPPURAM', 'VILUPPURAM', '2207250003', '1', '1', 'upload_files/candidate_tracker/94229007413_resume1 (1).pdf', NULL, '2', '2022-07-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-25 10:42:41', 92, '2022-07-25 10:49:41', 0, NULL, 1),
(9554, 'Nithya J', '13', '9884996101', '', 'nithyasri2198@gmail.com', '2000-04-21', 22, '2', '2', 'Manjula', 'Labour', 4000.00, 1, 0.00, 15000.00, 'No. 374 D, Senthil nagar, grant lyon,redhills', 'No. 374 D, Senthil nagar, grant lyon,Redhills', '2207250004', '1', '1', 'upload_files/candidate_tracker/38017619036_Nithya Resume MSc.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much with TxxampC Need time to confirm,Need to learn a lot will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-25 10:52:50', 1, '2022-07-25 10:58:11', 0, NULL, 1),
(9555, 'S. Sri Prasath', '6', '9790876766', '7338714561', 'sriprasathd19af056@gmail.com', '2002-06-03', 20, '3', '2', 'K. Shankar', 'Auto driver', 200000.00, 1, 0.00, 12000.00, '21/23, elango st, G. S. Nagar, R. A. Puram', 'Chennai -600028', '2207250005', '', '1', 'upload_files/candidate_tracker/3295555089_RESUME.docx', NULL, '1', '2022-07-25', 0, '', '3', '59', '2022-07-27', 180000.00, '', '7', '2022-08-01', '1', 'Selected for Babu Team with PF', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-25 12:01:34', 60, '2022-07-26 07:07:08', 0, NULL, 1),
(9556, 'Immanuvel B', '31', '6382924427', '', 'Rvimman@gmail.com', '2004-04-12', 18, '2', '2', 'Beagel Rajan I', 'Driver', 15000.00, 1, 0.00, 10000.00, 'Tenkasi', 'Tambaram', '2207250006', '1', '1', 'upload_files/candidate_tracker/72711654065_Resume-1.pdf', NULL, '1', '2022-07-25', 0, '', '3', '59', '2022-07-26', 96000.00, '', '0', NULL, '2', 'Selected for React JS developer Profile', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-25 12:08:04', 1, '2022-07-25 12:13:30', 0, NULL, 1),
(9557, 'Sathishkumar', '6', '9677559091', '', 'SathishVijay2310@gmail.com', '1999-07-23', 23, '2', '2', 'Chinraj', 'Painter', 90000.00, 2, 15500.00, 18000.00, 'Pallipalayam', 'Pallipalayam', '2207250007', '1', '2', 'upload_files/candidate_tracker/79540000030_sathish resume.pdf', NULL, '1', '2022-07-25', 10, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is experience in account jobs so he will not work here confidently and he is also told discuss with family', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 12:20:15', 85, '2022-07-25 01:13:41', 0, NULL, 1),
(9558, 'Narean', '6', '8883364170', '9944840757', 'narean06@gmail.com', '1998-06-08', 24, '2', '2', 'R.srinivasan', 'Lic agent', 80000.00, 1, 16500.00, 18000.00, 'Erode', 'Erode', '2207250008', '1', '2', 'upload_files/candidate_tracker/85811096981_1632495239697Resume_Narean.pdf', NULL, '1', '2022-07-25', 30, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Father doing star health and Lic agent so we dont required ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 12:20:20', 85, '2022-07-25 01:13:27', 0, NULL, 1),
(9559, 'PRABU D', '2', '9042152223', '', 'prabud352@gmail.com', '2000-05-03', 22, '2', '2', 'DHANDABANI M', 'Farmer', 6000.00, 1, 0.00, 25000.00, 'Tiruvannamalai', 'Chennai', '2207250009', '1', '1', 'upload_files/candidate_tracker/38333286530_olympia tech park resume.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Long run doubts will not sustain in our environment His sister already working in infosys he may swift ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 12:22:50', 85, '2022-07-25 12:28:21', 0, NULL, 1),
(9560, 'n.lokesh', '14', '9080284387', '6369954501', 'lokeshragul236@gmail.com', '1999-10-25', 22, '2', '2', 'laksmi.n', 'farming', 5000.00, 1, 0.00, 25000.00, 'thiruttani', 'velachery', '2207250010', '1', '1', 'upload_files/candidate_tracker/64449369171_lokesh Resume.pdf', NULL, '3', '2022-07-28', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 12:37:03', 85, '2022-07-27 03:15:10', 0, NULL, 1),
(9561, 'Swetha', '5', '9363065264', '8124583762', 'swethashekarshekar@gmail.com', '2000-06-28', 22, '1', '2', 'Gunashekar,kannagi', 'Others', 50000.00, 2, 12000.00, 14000.00, 'Alandhur', 'Alandhur', '2207250011', '', '2', 'upload_files/candidate_tracker/7149372994_swetha_resume.doc', NULL, '1', '2022-07-25', 0, 'USR00386', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-25 12:48:24', 1, '2022-07-25 01:02:46', 0, NULL, 1),
(9562, 'Swathi.P', '31', '6385863576', '8825618914', 'swathipandian16@gmail.com', '2001-04-09', 21, '2', '2', 'Pandian', 'Farmer', 4000.00, 1, 0.00, 500000.00, 'Cuddalore', 'Kanchipuram', '2207250012', '1', '1', 'upload_files/candidate_tracker/17005797934_Resume_Swathi.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Currently Working In Avasoft With 4 LPA,6 Months In React Internship And The Min Exp Is 25K(3LPA)', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-25 12:54:17', 1, '2022-07-25 01:01:19', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9563, 'Vasundhara G', '31', '7397556102', '8870942218', 'vasundharaperalam@gmail.com', '2001-07-18', 21, '2', '2', 'Gnanasekaran', 'Farmer', 5000.00, 2, 0.00, 500000.00, '369,Perumal Kovil Street, Thirumeeyachur', 'Chennai', '2207250013', '1', '1', 'upload_files/candidate_tracker/91510822708_Resume (1).pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Currently working in Avasoft with 4 LPA,6 months in React Internship and the min Exp is 25K(3LPA)', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-25 12:54:46', 1, '2022-07-25 01:07:25', 0, NULL, 1),
(9564, 'Venda s', '31', '9345575991', '9384290079', 'Vendas19072001@gmail.com', '2001-07-19', 21, '2', '2', 'Sankar', 'FARMER', 5000.00, 5, 0.00, 500000.00, 'Thiruvannamalai', 'Chennai', '2207250014', '1', '1', 'upload_files/candidate_tracker/95480241084_VENDA_AIHT_CSE_310118104071.docx', NULL, '1', '2022-07-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-25 12:55:00', 1, '2022-07-25 01:01:22', 0, NULL, 1),
(9565, 'S.Priya dharshini', '5', '6380150493', '', 'priyaspriya31@gmail.com', '2002-04-04', 20, '1', '2', 'Padma', 'Housekeeping', 20000.00, 1, 13000.00, 15000.00, 'Red hills', 'Mkb nagar', '2207250015', '', '2', 'upload_files/candidate_tracker/17995668811_Resume_Priya.pdf', NULL, '1', '2022-07-25', 0, 'P1146', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped Her parents are not allowing for the T.Nagar Location not joining', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-25 01:04:21', 1, '2022-07-25 01:09:43', 0, NULL, 1),
(9566, 'Yuvasree', '5', '9092603479', '', 'Yuvasreesree50@gmail.com', '2002-03-06', 20, '1', '2', 'Vijaykumar', 'Cooli', 20000.00, 1, 0.00, 15000.00, 'Kavangarai', 'Kavangarai', '2207250016', '', '1', 'upload_files/candidate_tracker/32966099498_Yuvasree resume.pdf', NULL, '1', '2022-07-25', 0, 'P1146', '4', '16', NULL, 0.00, '', '0', NULL, '2', '5050 Profile Internal Team Reference,Kindly Check And Let Me Know Your Inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-25 01:06:23', 1, '2022-07-25 01:43:46', 0, NULL, 1),
(9567, 'Priyanka', '6', '9344698057', '', 'Priyankaselvi1105@gmail.com', '2001-05-11', 21, '1', '2', 'M.dhashana moorthy', 'Cooli', 15000.00, 2, 0.00, 15000.00, 'Gandhinagar', 'Gandhinagar', '2207250017', '', '1', 'upload_files/candidate_tracker/88071763126_D.priyanka .pdf', NULL, '1', '2022-07-25', 0, 'P1146', '5', '16', NULL, 0.00, '', '0', NULL, '2', '50 50 no idea', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-25 01:06:23', 1, '2022-07-25 01:37:24', 0, NULL, 1),
(9568, 'dilip', '31', '8939471663', '', 'dilipmani15@gmail.com', '1998-05-15', 24, '2', '2', 'masilamani', 'software developer', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2207250018', '1', '1', 'upload_files/candidate_tracker/78540385831_Dilip Dev Resum.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Up and down 60kms,min stipend exp is 8-10K,currently working in core field,sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-25 01:28:05', 1, '2022-07-25 02:31:02', 0, NULL, 1),
(9569, 'D.DESHWARAN', '6', '9150240914', '9884150425', 'appudeshwaran@gmail.com', '2002-02-12', 20, '1', '2', 'T.DEIVA KANNAN', 'Printing press', 15000.00, 2, 0.00, 15000.00, 'Kilpauk', 'Sasthri nagar kilpauk Chennai 84', '2207250019', '', '1', 'upload_files/candidate_tracker/70273038902_RESUMEde.pdf', NULL, '1', '2022-07-25', 0, '2207250019', '3', '59', '2022-07-27', 180000.00, '', NULL, '2023-11-25', '1', 'Selected fr Syed Team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-25 02:42:37', 60, '2022-07-26 06:01:29', 0, NULL, 1),
(9570, 'Farhana begum. A', '4', '9940493066', '9790607198', 'Farhanafaru56@gmail.com', '2000-05-06', 22, '2', '2', 'Anwarbasha', 'Catering', 20000.00, 1, 0.00, 10000.00, 'Mount road', 'Mount road', '2207250020', '1', '1', 'upload_files/candidate_tracker/97299258726_RESUME FAR.pdf', NULL, '1', '2022-08-08', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50-50 profile  have 1yr  gap not much Knowledge in sales ... have laptop letxquots  wait and confirm...', '1', '1', '', '1', '1', '', '2', '2022-08-10', '2', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 04:42:38', 85, '2022-08-20 12:17:27', 0, NULL, 1),
(9571, '', '0', '9840422849', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207250021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-25 05:48:08', 0, NULL, 0, NULL, 1),
(9572, 'Malini', '2', '7358784360', '', 'bharathbharath080575@gmail.com', '2001-11-09', 20, '2', '2', 'Bharath, Indira', 'Machanic', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Thirumullaivoyal', '2207250022', '1', '1', 'upload_files/candidate_tracker/65235180252_Malini resume.pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate thinking  on the Distance around 40Km sup and down will not sustain', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 06:18:03', 85, '2022-07-26 02:37:41', 0, NULL, 1),
(9573, 'Sakthivel B', '13', '9095091742', '', 'sakthivelb2911@gmail.com', '1999-11-29', 22, '2', '2', 'S. Balakrishnan', 'Daily worker', 8000.00, 1, 0.00, 20000.00, 'Madurai', 'Madurai', '2207250023', '1', '1', 'upload_files/candidate_tracker/16503538016_Sakthivel B-Resume.pdf', NULL, '2', '2022-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-25 06:32:03', 1, '2022-07-25 06:36:45', 0, NULL, 1),
(9574, 'Mathupathy B', '13', '7305697346', '', 'mathubaskaran509@gmail.com', '2007-07-26', 0, '2', '2', 'Baskaran', 'Teacher', 300000.00, 2, 0.00, 360000.00, 'Aranthangi', 'Chennai', '2207260001', '1', '1', 'upload_files/candidate_tracker/58869339667_MY_RESUME.pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'thinking on TxxampC Long run doubts on this profile not much strong with the skills\n', '2', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-26 09:57:18', 1, '2022-07-26 10:06:02', 0, NULL, 1),
(9575, 'BHARATH.S', '11', '7010954451', '', 'bharathselvaraj99@gmail.com', '1999-04-27', 23, '2', '2', 'SELVARAJ', 'Icf', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Madhavaram milk colony', '2207260002', '1', '1', 'upload_files/candidate_tracker/32431170684_Bharath_CV (2).pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not clear with the basics of Recruitment,Freaher Exp is some what more being a freaher will not sustin in a long run', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-26 09:59:56', 1, '2022-07-26 10:06:20', 0, NULL, 1),
(9576, 'Abdul zaheer', '11', '7299767019', '9080504016', 'Abdulzaheer7700@gmail.com', '1999-05-21', 23, '2', '1', 'Sarvath begum', 'Home maker', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2207260003', '1', '1', 'upload_files/candidate_tracker/33305476677_zaheer resum 2.pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-26 10:00:58', 1, '2022-07-26 10:10:36', 0, NULL, 1),
(9577, 'Sayed Mushtaq Mohammed JM', '13', '7397427576', '9444985292', 'syedmushtaq2k@gmail.com', '2000-05-29', 22, '2', '2', 'Jamal Moideen MH', 'Private company', 20000.00, 1, 0.00, 22000.00, 'chennai', 'Chennai', '2207260004', '1', '1', 'upload_files/candidate_tracker/73722390916_Web Developer resume.pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open with TxxampC,Min Exp is 18K bring a fresher if he comes back with his confirmation let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-26 10:30:03', 85, '2022-07-26 10:46:39', 0, NULL, 1),
(9578, 'Sowmiya S', '16', '7358494471', '8190926973', 'SOWMICINDRELLA2109@GMAIL.COM', '2000-09-21', 21, '2', '2', 'Sekar', 'Electrician', 30000.00, 1, 15000.00, 20000.00, 'Virugabakkam', 'Virugabakkam', '2207260005', '1', '2', 'upload_files/candidate_tracker/46279608519_Sowmiya.resume.pdf', NULL, '1', '2022-07-26', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ready to work in multiple roles not ready to take targets focusing only in the earnings,will not sustain', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-26 10:32:49', 85, '2022-07-26 11:17:00', 0, NULL, 1),
(9579, 'Vignesh R', '14', '8270558544', '6379748203', 'Vigneshraja1408@gmail.com', '2000-06-07', 23, '6', '2', 'Raja', 'Business', 40000.00, 2, 0.00, 20000.00, 'Vellore', 'Chennai', '2207260006', '', '2', 'upload_files/candidate_tracker/69229578538_res_ume.pdf', NULL, '1', '2023-12-13', 0, '', '3', '59', '2023-12-16', 120000.00, '', '5', '1970-01-01', '2', 'Flutter / 3months 10K Trainee Developer if cleared then 15K and further increments overall 2.7 yrs', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-26 10:48:06', 60, '2023-12-16 06:26:31', 0, NULL, 1),
(9580, 'Arone silver star', '4', '9840401937', '9962814915', 'aronesilverstar@gmail.com', '1996-09-12', 25, '2', '2', 'A.fathima mary', 'Non staff', 30000.00, 2, 15000.00, 15000.00, 'Vi', 'Virugambaakkam Chennai', '2207260007', '1', '2', 'upload_files/candidate_tracker/80304195432_Aaron current cv pdf.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending the final round with gaurav sir,Have Exp in telecalling but no sustainability in the prevous Exp ,Eventhough tried but left without attending', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-26 11:21:21', 85, '2022-08-01 09:56:27', 0, NULL, 1),
(9581, 'Yugeshwaran M', '13', '9025371249', '', 'yugeshyuge520@gmail.com', '1999-08-21', 22, '2', '2', 'Moorthy k', 'Fashion designer', 40000.00, 1, 0.00, 20000.00, 'Chennai, Tamil Nadu, India', 'Chennai, Tamil Nadu, India', '2207260008', '1', '1', 'upload_files/candidate_tracker/78355094317_myugeshwaranpdf.pdf', NULL, '1', '2022-07-26', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need time to give his confirmation on the TxxampC if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-07-28', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-26 11:22:20', 1, '2022-07-26 11:29:04', 0, NULL, 1),
(9582, 'FAGATH FAIZAL k', '13', '7904317068', '', 'Fagathfaizal3@gmail.com', '1999-10-26', 22, '2', '2', 'Kalil rahman', 'Business', 45000.00, 3, 0.00, 20000.00, '163/69 pv koil street royapuram Chennai 13', '163/69 pv koil street Royapuram Chennai 13', '2207260009', '1', '1', 'upload_files/candidate_tracker/60592015815_FAGATH FAIZAL Resume.pdf', NULL, '1', '2022-07-26', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'have basic skills knowledge sustainability doubts as he may travel abroad Kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-26 11:22:33', 1, '2022-07-26 11:30:31', 0, NULL, 1),
(9583, 'Jezreel. A', '13', '8610255629', '7871084179', 'samjezreel1999@gmail.com', '1999-11-08', 22, '2', '2', 'Ajit. M', 'Driver', 50000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2207260010', '1', '1', 'upload_files/candidate_tracker/15273207742_Jezreel A.pdf', NULL, '1', '2022-07-26', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Skills knowledge Parents are in Mumbai Need time to give his confirmation on TxxampC', '2', '1', '0', '1', '1', '0', '2', '2022-07-28', '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-26 11:24:49', 1, '2022-07-26 11:28:36', 0, NULL, 1),
(9584, 'Vani m', '13', '9346019933', '', 'vanimurugan598@gmail.com', '2001-07-17', 21, '2', '2', 'Murugan k', 'Agricalture', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Mangadu', '2207260011', '1', '1', 'upload_files/candidate_tracker/64417850691_CV_VANI M.pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much good in skills not suitable will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-26 11:26:27', 60, '2022-07-26 07:22:32', 0, NULL, 1),
(9585, 'Vinith .R', '31', '9865597859', '8110012024', 'srvinith6@gmail.com', '1998-05-08', 24, '2', '2', 'S.Rajangam', 'Farmer', 18000.00, 1, 0.00, 20000.00, 'Bodinauakaur, theni Dt', 'Manavalanagar,Thiruvalluvar', '2207260012', '1', '1', 'upload_files/candidate_tracker/64718774324_Mon Jul 25 16_51_41 GMT+05_30 2022.pdf', NULL, '1', '2022-07-26', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Ready to relocate,Seems to be ok Candidate need time to give his confirmation on TxxampC if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-07-28', '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-26 11:44:20', 1, '2022-07-26 11:57:08', 0, NULL, 1),
(9586, 'VEERAPPAN', '2', '8870216872', '9361708520', 'veerappanveeras87@gmail.com', '1998-01-06', 24, '2', '2', 'Selvakumar', 'Daily wages', 15000.00, 3, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2207260013', '1', '1', 'upload_files/candidate_tracker/18207499322_VEERAPPAN SELVAKUMAR.docx', NULL, '1', '2022-07-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much good in skills need time to confirm on TxxampC ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-26 01:01:04', 85, '2022-07-26 03:02:02', 0, NULL, 1),
(9587, 'LAVANYA', '4', '7904408764', '9514453727', 'lavanyasubramaniyam1995@gmail.com', '1995-06-22', 27, '2', '2', 'Subramani', 'Farmer', 10000.00, 1, 0.00, 12000.00, 'Vandallur', 'Vandallur', '2207260014', '1', '1', 'upload_files/candidate_tracker/75092461144_LAVANYA.pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average too long distance not suitable will not sustain in a long run fresher ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-26 01:13:58', 85, '2022-07-26 01:20:11', 0, NULL, 1),
(9588, '', '0', '8825949270', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207260015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-26 01:35:05', 0, NULL, 0, NULL, 1),
(9589, 'mohamed fareedh', '13', '9585257952', '9443645286', 'mohamedfareedhu192209@gmail.com', '2001-06-02', 21, '2', '2', 'mohamed farook', 'bussiness', 10000.00, 0, 0.00, 15000.00, 'mayiladuthurai', 'koranad', '2207260016', '1', '1', 'upload_files/candidate_tracker/91693570730_Mohamed Fareedh-Resume-Format-1.pdf', NULL, '1', '2022-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending the interview\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-26 06:45:38', 85, '2022-10-10 11:58:27', 0, NULL, 1),
(9590, 'Gayathri', '13', '9952206709', '', 'gayathrispandi@gmail.com', '1999-03-19', 23, '2', '2', 'Sendur pandi', 'Farmer', 80000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2207260017', '1', '1', 'upload_files/candidate_tracker/49929424244_Resume (3).pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much good wiht the Skills not suitable ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-26 10:07:49', 85, '2022-07-27 10:06:15', 0, NULL, 1),
(9591, '', '0', '9361708520', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-27 08:36:06', 0, NULL, 0, NULL, 1),
(9592, 'DILLIBABU E P', '31', '8438523888', '', 'dillibabu11052000@gmail.com', '2001-06-27', 21, '2', '2', 'K S Panneer selvam', 'Wearing', 8000.00, 2, 0.00, 4.00, 'Podatur pet', 'Podatur pet', '2207270002', '1', '1', 'upload_files/candidate_tracker/14412743121_E P Dillibabu.pdf', NULL, '1', '2022-07-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher need to learn a lot 2nd round reject by Manikandan', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-27 10:04:54', 92, '2022-07-27 10:20:33', 0, NULL, 1),
(9593, '', '0', '9595257952', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207270003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-27 10:34:47', 0, NULL, 0, NULL, 1),
(9594, 'Balaji R', '23', '7708633828', '9789497131', 'rbalaji111299@gmail.com', '1999-12-11', 22, '2', '2', 'Rajanbabu', 'Ramaburam, Chennai', 15000.00, 1, 0.00, 300000.00, 'Kallakurichi', 'Ramaburam', '2207270004', '1', '1', 'upload_files/candidate_tracker/41334891551_Balaji-resume (2).pdf', NULL, '1', '2022-07-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Being fresher Exp is high,already he received a offer for 10K but didnt join as he is expecting more', '2', '1', '', '4', '6', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-27 10:41:19', 85, '2022-07-27 10:50:40', 0, NULL, 1),
(9595, 'Vijayaprasanth', '4', '6379862019', '', 'gvprasanthg720@gmail.com', '2000-07-25', 22, '4', '2', 'Govindaraj', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Anthiyur, Erode', 'Anthiyur, Erode', '2207270005', '', '1', 'upload_files/candidate_tracker/36051481108_VIJAYAPRASANTH RESUME.pdf', NULL, '1', '2022-07-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-27 11:10:52', 1, '2022-07-27 11:15:47', 0, NULL, 1),
(9596, 'A. M. Alan', '2', '9003472686', '7639041369', 'alanlloydz11@gmail.com', '1997-06-24', 25, '2', '2', 'A.v. Mani', 'Retired Igcar Employee', 40000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2207270006', '1', '1', 'upload_files/candidate_tracker/28462812287_CV_2022072412214563.pdf', NULL, '1', '2022-07-27', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'have basic skills in Node JS,Sustainability doubts if he come back with TxxampC will check into it .Settled family long run doubts a lot', '2', '1', '0', '1', '1', '0', '2', '2022-07-29', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-27 11:32:27', 1, '2022-07-27 11:36:08', 0, NULL, 1),
(9597, 'Suresh', '13', '9629755642', '', 'Jtsuresh1007@gmail.com', '2001-07-10', 21, '2', '2', 'Jayapal k', 'Farmer', 60000.00, 1, 0.00, 16000.00, 'Kanchipuram', 'Velachery', '2207270007', '1', '1', 'upload_files/candidate_tracker/67295618460_Suresh j .pdf', NULL, '1', '2022-07-27', 0, '', '3', '59', '2022-08-01', 120000.00, '', '', '1970-01-01', '1', 'Selected for Node Js Profile final round interviewed by Gokul', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-27 11:34:01', 85, '2022-07-27 11:57:11', 0, NULL, 1),
(9598, 'Jefrin shelson', '31', '9360440635', '', 'jefrinshelson18@gmail.com', '2001-02-22', 21, '2', '2', 'Eptha pattu rajan', 'Business', 40000.00, 1, 0.00, 15000.00, 'No:21, ponni Nagar 1st street, pammal, pallavaram', 'No:21, Ponni Nagar 1st Street, Pammal, Pallavaram', '2207270008', '1', '1', 'upload_files/candidate_tracker/83532039538_pdf_20220725_140144_0000.pdf', NULL, '1', '2022-07-27', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher  need to be trained from the start kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-27 11:46:18', 60, '2022-07-27 01:30:13', 0, NULL, 1),
(9599, 'Asarudeen', '2', '9345231921', '7402446985', 'asar.deen0004@gmail.com', '1998-10-04', 23, '2', '2', 'Sahul idirees', 'Worker', 80000.00, 1, 0.00, 12000.00, 'RAMANATHAPURAM', 'CHENNAI', '2207270009', '1', '1', 'upload_files/candidate_tracker/79083868198_ASARUDEEN(resume).pdf', NULL, '1', '2022-07-27', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic skills knowledge can be trained kindly check and let me know your interest', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-27 12:03:49', 85, '2022-07-27 12:17:02', 0, NULL, 1),
(9600, 'Santhosh', '13', '9790160930', '8610965768', 'santhoshp761997@gmail.com', '1997-06-07', 25, '2', '2', 'PACHIYAPPAN', 'Worker', 12000.00, 2, 0.00, 15000.00, 'Thiruvannamalai', 'Kunrathur', '2207270010', '1', '1', 'upload_files/candidate_tracker/70392116556_santhosh resume1_compressed.pdf', NULL, '1', '2022-07-27', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Skills Knowledge Can Be Trained Kindly Check And Let Me Know Your Interest', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-27 12:03:53', 85, '2022-07-27 12:16:46', 0, NULL, 1),
(9601, 'Aman Faheem', '5', '8722630969', '', 'fahimmhmd22@gmail.com', '2002-04-10', 20, '1', '2', 'UK Mohammad', 'Working in a restaurant', 18000.00, 1, 0.00, 15000.00, 'Bangalore', 'Bangalore', '2207270011', '', '1', 'upload_files/candidate_tracker/35696336594_Faheem resume.pdf', NULL, '1', '2022-07-27', 0, 'P1328', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Being a fresher we offered him 16K 1.92 LPA he is not comfortable with that,Checked with Sathish Area Manager and dropped the profile', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-27 12:05:13', 60, '2022-07-30 12:29:06', 0, NULL, 1),
(9602, 'Monisha', '5', '9014947347', '', 'monishakalavala@gmail.com', '2002-01-04', 20, '1', '2', 'Vasumathi', 'Business', 100000.00, 1, 0.00, 20000.00, 'Bangalore', 'Chittoor', '2207270012', '', '1', 'upload_files/candidate_tracker/24400477536_Monishak_BBA_Fresher_Resume-converted.pdf', NULL, '2', '2022-07-27', 0, 'P1328', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-27 02:58:25', 1, '2022-07-27 03:13:32', 0, NULL, 1),
(9603, '', '0', '6369337066', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207270013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-27 03:03:06', 0, NULL, 0, NULL, 1),
(9604, 'hamsalatha .s', '2', '9786169544', '6382950842', 'hamsalatha99@gmail.com', '1999-02-26', 23, '2', '2', 'suppaian .p', 'labour', 10000.00, 1, 0.00, 15000.00, 'thanjavur', 'kundrathur', '2207270014', '1', '1', 'upload_files/candidate_tracker/70208936036_HAMSALATHA RESUME.pdf', NULL, '1', '2022-07-28', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have basic skills seems can be trained kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-27 03:51:37', 85, '2022-07-27 05:57:16', 0, NULL, 1),
(9605, 'Hemamalini', '2', '8754628874', '', 'Hemamalini88075@gmail.com', '2000-06-22', 22, '2', '2', 'Saravanan', 'Farmers', 8000.00, 2, 0.00, 17000.00, 'Tiruvannamalai', 'Chennai', '2207270015', '1', '1', 'upload_files/candidate_tracker/87520018719_HEMAMALINI_RESUME.pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Final round reject by Gokul Will not pick up', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-27 03:52:43', 85, '2022-07-27 05:57:37', 0, NULL, 1),
(9606, 'g sarankumar', '13', '8883599515', '9698960073', 'sarankumar909562@gmail.com', '2000-06-09', 22, '1', '2', 't govindan', 'farmer', 10000.00, 1, 0.00, 15000.00, 'valnaickanpalayam kandampalyam p velur namakkal', 'sridhaaram apartment t nagar', '2207270016', '', '1', 'upload_files/candidate_tracker/87473250038_SARANKUMAR RESUME.pdf', NULL, '1', '2022-07-28', 0, '66667', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-27 06:46:16', 1, '2022-07-28 03:02:37', 0, NULL, 1),
(9607, 'M.Asha', '6', '9003481148', '8220351148', 'asha132000@gmail.com', '2000-08-13', 21, '1', '2', 'D.munusami/M.kumari', 'Labour', 20000.00, 2, 0.00, 15000.00, 'Villanallur', 'Kanchipuram', '2207280001', '', '2', 'upload_files/candidate_tracker/38079699975_ASHA M.pdf', NULL, '1', '2022-07-28', 0, 'P1191', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok , kindly confirm the joining date ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-28 10:58:05', 60, '2022-07-28 06:32:49', 88, '2022-09-13 05:50:48', 0),
(9608, 'Karthikeyan', '23', '9087685991', '', 'karthiknotiee03@gmail.com', '2001-11-18', 20, '2', '2', 'Parent\'s : Manickavel', 'Fabricator', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2207280002', '1', '1', 'upload_files/candidate_tracker/79751181201_CV_2022071112401592.pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long distance not much strong in basic skills will not run in a long ', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-28 10:58:16', 1, '2022-07-28 11:05:58', 0, NULL, 1),
(9609, 'R S Kamalesh', '4', '9344992718', '', 'rskamalesh1004@gmail.com', '2002-03-10', 20, '2', '2', 'R shankar', 'Government P.W.D', 20000.00, 1, 0.00, 16000.00, 'chennai', 'chennai', '2207280003', '1', '1', 'upload_files/candidate_tracker/93927032762_resum2.pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Telesales not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-28 10:58:59', 1, '2022-07-28 11:09:52', 0, NULL, 1),
(9610, 'Rajesh M', '2', '9952042463', '8754840204', 'rajumohan1998@gmail.com', '1998-07-23', 24, '2', '2', 'p. mohan', 'Tailor', 30000.00, 2, 0.00, 400000.00, 'No:17, Mukkiamman Kovil Street Chintadripet', 'Chennai', '2207280004', '1', '1', 'upload_files/candidate_tracker/79290855926_Rajesh _resume (2).pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Thinking a lot on TxxampC requested time to give his confirmation,if he comes back need to have a technical round and check', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-28 11:01:08', 92, '2022-07-28 11:12:58', 0, NULL, 1),
(9611, 'V.DINESH KUMAR', '13', '9159205620', '', 'dineshdr1999@gmail.com', '1999-06-18', 23, '2', '2', 'K.VELUCHAMY', 'Farmer', 200000.00, 2, 0.00, 15000.00, 'Dindigul', 'Koyambedu,chennai', '2207280005', '1', '1', 'upload_files/candidate_tracker/62101632090_RESUME_DINESH (1).pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have internship Exp but no basic skills need to come back with his confirmation,if he comes back need to analyse and confirm again', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-28 11:01:31', 92, '2022-07-28 11:13:14', 0, NULL, 1),
(9612, '', '0', '7401029259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207280006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-28 11:28:00', 0, NULL, 0, NULL, 1),
(9613, '', '0', '6374447866', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207280007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-28 11:28:26', 0, NULL, 0, NULL, 1),
(9614, '', '0', '7200951503', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207280008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-28 11:28:51', 0, NULL, 0, NULL, 1),
(9615, 'M ANBAZHAGAN', '13', '9489439020', '9159041421', 'anbazhagan1100@gmail.com', '1998-12-24', 23, '2', '2', 'Mohan C', '-', 50000.00, 1, 0.00, 10000.00, 'Pudukkottai', 'Triplicane', '2207280009', '1', '1', 'upload_files/candidate_tracker/89720494746_Anbazhagan Resume (1) (2).pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much comfort with TxxampC no family need  is there ,will not sustain ina long run', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-28 11:41:14', 92, '2022-07-28 11:54:41', 0, NULL, 1),
(9616, 'Ragavan.R', '2', '7010247927', '9385390161', 'ragavanravi7699@gmail.com', '1999-06-07', 23, '2', '2', 'Ravichandran', 'Farmer', 72000.00, 1, 17.00, 20.00, 'Thanjavur', 'Thoraipakkam', '2207280010', '1', '2', 'upload_files/candidate_tracker/25777164179_Resume_Ragavaravi-1.pdf', NULL, '1', '2022-08-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-28 01:11:33', 85, '2022-08-02 04:07:43', 0, NULL, 1),
(9617, 'Devaraj. T', '6', '7871467001', '9344526465', 'Deva0078raj@gmail.com', '2001-12-12', 20, '1', '2', 'Thangaraj. S', 'Own business', 70000.00, 1, 0.00, 15000.00, 'Erode-638009', 'Erode-638009', '2207280011', '', '1', 'upload_files/candidate_tracker/49772790615_Resume_Devaraj resume_Format1.pdf', NULL, '1', '2022-07-28', 0, 'P1311', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-28 02:48:23', 1, '2022-07-28 03:06:53', 0, NULL, 1),
(9618, 'S. DINESH', '6', '6383931188', '7871472701', 'dsp25052002@gmail.com', '2002-05-25', 20, '1', '2', 'M. SENTHIL', 'Own business', 50000.00, 1, 0.00, 15000.00, 'Erode -638009', 'Erode-6388009', '2207280012', '', '1', 'upload_files/candidate_tracker/77052941917_jesti.pdf', NULL, '1', '2022-07-28', 0, 'P1311', '3', '59', '2022-07-29', 180000.00, '', '4', '2022-11-01', '1', 'Selected for Suthagar Team in PF/ESI/PT,Fresher  Need to be trained,Check and approve in 7 days', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-28 02:51:54', 60, '2022-07-28 05:46:13', 0, NULL, 1),
(9619, 'Devaraj. T', '6', '7871467001', '9344526465', 'Deva0078raj@gmail.com', '2001-12-12', 20, '1', '2', 'Thangaraj. S', 'Own business', 70000.00, 1, 0.00, 15000.00, 'Erode-638009', 'Erode-638009', '2207280013', '', '1', 'upload_files/candidate_tracker/68278277852_Resume_Devaraj resume_Format1.pdf', NULL, '1', '2022-07-28', 0, 'P1311', '3', '59', '2022-07-29', 180000.00, '', '6', '2023-02-26', '1', 'Selected for RE Suthagar Team with PF/ESI/PT  Fresher Need to analyse in 7 Days Training', '5', '2', '1', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-28 02:59:41', 60, '2022-07-28 06:17:26', 0, NULL, 1),
(9620, 'G.balaji', '5', '8825993707', '9940010052', 'Balajiharinath08@gmail.com', '2001-08-27', 20, '3', '2', 'G.penchalaiah', 'Bed shop', 30000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2207280014', '', '1', 'upload_files/candidate_tracker/17241477456_Balajiresume.pdf', NULL, '1', '2022-07-28', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'not sustained in any job more than a year', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-28 03:09:37', 1, '2022-07-28 03:28:55', 0, NULL, 1),
(9621, 'B. Sridharan', '23', '7904800489', '', 'sridharan2k@gmail.com', '2000-06-10', 22, '2', '2', 'Balaraman', 'farmer', 8000.00, 1, 0.00, 12000.00, 'villupuram', 'kundrathur, chennai', '2207280015', '1', '1', 'upload_files/candidate_tracker/72883408016_SRIDHAR B-compressed (1) (1)-1.pdf', NULL, '1', '2022-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ideas With The Skills, Not answering Need To Open A Lot Will Not Sustain And Not Suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-28 03:15:57', 85, '2022-07-29 11:57:49', 0, NULL, 1),
(9622, 'u.gayathri', '13', '6369480160', '', 'ugayathri13121999@gmail.com', '1999-12-13', 22, '2', '2', 'ulaganathan', 'watchman', 8000.00, 0, 0.00, 10000.00, 'chennai', 'Chennai', '2207280016', '1', '1', 'upload_files/candidate_tracker/48522559952_1655371054760_1653483322417_Gayathri Resume.pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very Worst Candidate no basic ideas not showing interest on the profile keep on using mobile in the interview', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-28 03:35:10', 1, '2022-07-28 04:04:00', 0, NULL, 1),
(9623, 'P.Nandha Kumar', '23', '9491090406', '', 'pommidhinandha@gmail.com', '2000-03-21', 22, '2', '2', 'Basavaiah', 'Farmer', 18000.00, 2, 0.00, 15.00, 'Nagari -Aandhra pradhesh', 'Thuraipakkam,Chennai', '2207280017', '1', '1', 'upload_files/candidate_tracker/36911715716_NANDHA KUMAR RESUME.pdf', NULL, '1', '2022-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No ideas in the JS not clear with his studies not suitable will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-28 04:07:16', 85, '2022-07-28 06:21:00', 0, NULL, 1),
(9624, '', '0', '9840468565', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207280018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-28 05:24:01', 0, NULL, 0, NULL, 1),
(9625, '', '0', '7550235379', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207280019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-28 06:08:35', 0, NULL, 0, NULL, 1),
(9626, 'Vignesh k', '13', '7358648649', '', 'vigneshkasi861@gmail.com', '2000-06-13', 22, '2', '2', 'Kasi p', 'Farmer', 8000.00, 1, 0.00, 14000.00, 'Tiruvannamalai', 'Kundrathur', '2207280020', '1', '1', 'upload_files/candidate_tracker/19921126341_VK.resume_compressed.pdf', NULL, '1', '2022-07-29', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have some basic knowledge Can give a try kindly check and let me know your interest', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-28 06:38:55', 85, '2022-07-29 12:03:03', 0, NULL, 1),
(9627, '', '0', '9384015362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207280021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-28 07:33:15', 0, NULL, 0, NULL, 1),
(9628, 'NIVEDITHA.S', '6', '8939957788', '9445300909', 'ssnive2001@gmail', '2001-11-01', 20, '1', '2', 'SENTHIL KUMAR. R', 'Driver', 10000.00, 1, 0.00, 15000.00, 'No. 59,Karikalan street,G.s.Nagar, R.A.Puram,Ch-28', '59, Karikalan street, G. S. Nagar, R.A.Puram,Ch 28', '2207290001', '', '1', 'upload_files/candidate_tracker/19392470521_NIVE RESUME.docx', NULL, '1', '2022-07-29', 0, 'CA130', '4', '89', NULL, 0.00, '', '0', NULL, '2', 'Have Parttime Calling Exp can be trained kindly check and let me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-29 10:41:57', 1, '2022-07-29 11:01:21', 0, NULL, 1),
(9629, 'SARANKUMAR M', '6', '8667291116', '', 'sarankumar1116@gmail.com', '2001-02-24', 21, '2', '2', 'MANOGARAN', 'Carpenter', 100000.00, 1, 0.00, 15000.00, 'Pallikaranai', 'Pallikaranai', '2207290002', '1', '1', 'upload_files/candidate_tracker/28375047465_Resume_29_07_2022_11_09_59_am.pdf', NULL, '1', '2022-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Accounts profile,he is very clear with  the job change if he get any accounts postion', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-29 11:03:53', 92, '2022-07-29 11:33:48', 0, NULL, 1),
(9630, 'Hariharan', '23', '9176120037', '', 'haridevapmgr@gmail.com', '1999-05-26', 23, '2', '2', 'S/o,s.Govindarajan', 'Poultry& farmer', 20.00, 1, 0.00, 20000.00, 'Thanjavur', 'Mogappair east,Chennai', '2207290003', '1', '1', 'upload_files/candidate_tracker/9974164091_CV_2022072818371315.pdf', NULL, '1', '2022-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not open with TxxampC Earlier he received 4 offers and didnt join due to SA only will not joinus and Sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-29 11:24:42', 92, '2022-07-29 11:38:28', 0, NULL, 1),
(9631, 'LINGARAJ M', '2', '9080166311', '', 'lingaimus143@gmail.com', '1998-04-02', 24, '2', '2', 'Bagyalakshmi', 'House wife', 10000.00, 2, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2207290004', '1', '1', 'upload_files/candidate_tracker/45319700892_LINGA-RAJ.pdf', NULL, '2', '2022-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ideas with the skills,need to open a lot will not sustain and not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-29 11:39:47', 85, '2022-07-29 11:56:46', 0, NULL, 1),
(9632, 'Nirmalraj.k', '23', '9360628431', '', 'nirmalrajdevil@gmail.com', '2002-02-20', 20, '2', '2', 'Karuthan.k', 'Farmar', 12000.00, 2, 0.00, 15000.00, 'Valayamadevi,attur,salem,636121', 'Madha collage,Kundrathur,chennai', '2207290005', '1', '1', 'upload_files/candidate_tracker/65305616699_nirmalraj resume (1).docx', NULL, '1', '2022-07-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to  come for the Task 2nd level', '2', '2', '', '1', '1', '', '2', '2022-08-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-29 11:41:14', 85, '2022-07-29 11:57:21', 0, NULL, 1),
(9633, 'ARAVINDARJ M', '13', '7200246981', '7538855737', 'aravindrajskpm@gmail.com', '1996-11-03', 25, '2', '2', 'Murugan M', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Vilupuram', 'Chennai', '2207290006', '1', '1', 'upload_files/candidate_tracker/11777420423_aravind resume.pdf', NULL, '1', '2022-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to leasrn a lot Career Gap sustinability doubts in long run', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-29 11:41:53', 85, '2022-07-29 11:57:06', 0, NULL, 1),
(9634, 'Moorthy', '17', '9710012952', '8072378865', 'moorthyeee2013@gmail.com', '1990-12-10', 31, '3', '1', 'Sekar', 'Private', 40000.00, 1, 24000.00, 30000.00, 'Avadi', 'Avadi', '2207290007', '', '2', 'upload_files/candidate_tracker/78405117579_MOORTHY RESUME.pdf', NULL, '1', '2022-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-29 11:45:04', 1, '2022-07-29 11:52:53', 0, NULL, 1),
(9635, 'Mani bharathi a c', '13', '8838512972', '', 'manibharathi78911@gmail.com', '2000-08-21', 21, '2', '2', 'Chinnakkannu', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2207290008', '1', '1', 'upload_files/candidate_tracker/77477802095_Resume_13_04_2022_08_57_42_AM (1) (1).pdf', NULL, '1', '2022-07-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have basic Skills Can be trained asked candidate to wait for final round but left without attending if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-08-01', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-29 12:14:35', 1, '2022-07-29 12:17:26', 0, NULL, 1),
(9636, 'Shobana Micheal', '13', '6374412307', '', 'michealshobana3@gmail.com', '2001-03-14', 21, '2', '2', 'Micheal.J', 'Driver', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2207290009', '1', '1', 'upload_files/candidate_tracker/19690440817_SHOBANA RESUME.docx', NULL, '1', '2022-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-29 12:14:42', 1, '2022-07-29 12:17:44', 0, NULL, 1),
(9637, 'Sudhakar R', '5', '8190807889', '', 'Sudhakarvijay616@gmail.com', '1997-04-23', 25, '1', '2', 'Ravi k', 'Plumbuer', 120000.00, 2, 3.00, 25000.00, '67 pillayar kovil Jafferkhanpet chennai 600083', '31vasudevan nagar jafferkhanpet Chennai-600083', '2207290010', '', '2', 'upload_files/candidate_tracker/66280760369_resume 2022 2 16-Jul-2022 17-30-45.pdf', NULL, '1', '2022-07-29', 15, '55565', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '1', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-29 12:22:57', 60, '2022-07-29 05:00:21', 0, NULL, 1),
(9638, 'Barathi Raja.k', '6', '9790826769', '9176452087', 'baraathiraaja@gmail.com', '2002-02-08', 20, '2', '2', 'Sakthi.k', '12th', 40000.00, 1, 0.00, 20000.00, 'Tambaram ,chennai', 'Tambaram, chennai', '2207290011', '1', '1', 'upload_files/candidate_tracker/7141594162_Resume.pdf', NULL, '1', '2022-07-29', 0, '', '3', '59', '2022-08-03', 182000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team - Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-29 02:08:50', 60, '2022-08-03 11:05:54', 0, NULL, 1),
(9639, 'P.gokulraj', '4', '7339097704', '9965617915', 'P.gokulrajgokulraj@gmail.com', '2002-05-17', 20, '4', '2', 'Yasothadevi', 'Coolie', 7000.00, 1, 0.00, 13000.00, '35,ndar street, rayapalayam, Nasiyanur', '35, nadar street, rayapalayam, Nasiyanur', '2207290012', '', '1', 'upload_files/candidate_tracker/49751722863_RESUME.docx', NULL, '1', '2022-07-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-29 03:57:38', 1, '2022-07-29 04:15:06', 0, NULL, 1),
(9640, 'Hema. R', '6', '9361480688', '9095146291', 'Hemaramesh200211@gmail.com', '2002-07-11', 20, '1', '2', 'Ramesh', 'Farmer', 48000.00, 2, 0.00, 15000.00, 'Ariyalur', 'Chennai saithapettai', '2207300001', '', '1', 'upload_files/candidate_tracker/50206819116_DocScanner 30-Jul-2022 9-28 am.pdf', NULL, '2', '2022-07-30', 0, 'P1331', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Internal Reference Fresher Communication Sounds,5050 profiles, sustainability doubts ina long run Kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-30 09:18:12', 60, '2022-07-30 05:39:20', 88, '2022-09-13 05:50:48', 0),
(9641, 'R Praval raaj', '23', '9790913502', '', 'pravalraaj@gmail.com', '2000-05-20', 22, '2', '2', 'G Raju gajaraj', 'Standard chartered team leader', 70.00, 1, 0.00, 18.00, 'Chennai', 'Chennai', '2207300002', '1', '1', 'upload_files/candidate_tracker/83884798027_praval cv1.pdf', NULL, '1', '2022-07-30', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'Fresher have completed course in Designing, have basic skills in Designing can be trained ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-30 09:41:47', 1, '2022-07-30 09:47:57', 0, NULL, 1),
(9642, 'Santhiya s', '13', '9003442702', '9047862261', 'sandysivasj@gmail.com', '1999-05-17', 23, '2', '2', 'Mother - siyamala', 'Pudukkottai', 17000.00, 1, 0.00, 8000.00, 'Illuppur', 'Illuppur', '2207300003', '1', '1', 'upload_files/candidate_tracker/51035709827_santhiya cv.pdf', NULL, '2', '2022-07-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-30 10:19:59', 1, '2022-07-30 10:27:43', 0, NULL, 1),
(9643, 'Jino x', '2', '9487716549', '', 'jinoxavier0803@gmail.com', '1999-03-08', 23, '2', '2', 'Xavier', 'Mesan', 20000.00, 1, 0.00, 20000.00, 'Kanyakumari', 'Arumbakkam, chennai', '2207300004', '1', '1', 'upload_files/candidate_tracker/9867272929_Jino_Resume.pdf', NULL, '1', '2022-07-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open with the TxxampC, No basic ideas in the Skills', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-30 10:28:24', 1, '2022-07-30 10:33:42', 0, NULL, 1),
(9644, 'C m sai chand', '5', '7799334405', '6301450943', 'cmsaichand1994@gmail.com', '1994-06-02', 28, '1', '2', 'C v murali', 'GST AEO', 60000.00, 1, 22000.00, 25000.00, 'Bangalore', 'Bangalore', '2207300005', '', '2', 'upload_files/candidate_tracker/80799240453_sai chand Resume.pdf', NULL, '1', '2022-07-30', 0, 'P1328', '1', '56', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-30 11:16:32', 1, '2022-07-30 11:25:18', 0, NULL, 1),
(9645, 'Madhavan', '5', '6380191741', '8939099990', 'mithunmaddy188@gmail.com', '2001-10-14', 20, '3', '2', 'Jayakumar', 'Senior Executive', 40000.00, 0, 0.00, 25000.00, 'Nungambakam', 'Nungambakam', '2207300006', '', '1', 'upload_files/candidate_tracker/65546406950_PDFCREATED_1452022849.pdf', NULL, '1', '2022-07-30', 0, '', '3', '59', '2022-08-08', 252100.00, '', '5', '1970-01-01', '2', 'Selected for Staff Role  - Manikandan Team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-30 11:31:06', 60, '2022-08-01 07:31:20', 0, NULL, 1),
(9646, 'Ramesh V', '4', '9025338046', '9095188573', 'rame82830@gmail.com', '2001-04-15', 21, '1', '2', 'Veeran V', 'Seizing mill', 400000.00, 3, 0.00, 15000.00, '41/valliyammai nagar,kizh thindal,Erode', '41/Valliyammai Nagar,Kizh Thindal,Erode', '2207300007', '', '1', 'upload_files/candidate_tracker/83914280621_Ramesh resume.pdf', NULL, '1', '2022-07-30', 0, 'P1311', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-30 12:13:10', 1, '2022-07-30 12:27:21', 0, NULL, 1),
(9647, 'Sagaya Selva Vasanth. A', '13', '9176209282', '', 'vasanthd020@gmail.com', '2001-03-15', 21, '4', '2', 'Kuzhandhai Therasa', 'House Keeping work', 18000.00, 2, 0.00, 16000.00, 'Madipakkam, Chennai', 'Madipakkam, Chennai', '2207300008', '', '1', 'upload_files/candidate_tracker/46361669865_Vasanth.Resume.pdf', NULL, '1', '2022-07-30', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Need to be trained, need time to confirm on the TxxampC', '2', '1', '0', '1', '1', '0', '2', '2022-08-01', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-30 02:02:12', 1, '2022-07-30 02:12:55', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9648, '', '0', '8838538137', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207300009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-30 04:48:05', 0, NULL, 0, NULL, 1),
(9649, '', '0', '8940185685', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207300010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-30 07:31:26', 0, NULL, 0, NULL, 1),
(9650, 'Gajendiran C P', '13', '8148735341', '', 'gajacp511@gmail.com', '2000-11-05', 21, '2', '2', 'Ponnambalam C N', 'Public welfare officer', 72000.00, 2, 0.00, 20000.00, 'Ammaiyarkuppam, Thiruvallur District, TN - 631301', 'T Nagar, Chennai', '2208010001', '1', '1', 'upload_files/candidate_tracker/921389816_Gajendiran C P_CSE_2022 Passed Out Fresher_Resume.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up no ideas in the basic skills not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-01 09:48:29', 1, '2022-08-01 09:56:40', 0, NULL, 1),
(9651, 'DESIC ALWAR K', '13', '8825562937', '', 'desicalwar998@gmail.com', '1998-07-29', 24, '2', '2', 'KUMAR', 'Medical rep', 20000.00, 1, 0.00, 180000.00, 'KANCHEEPURAM', 'KANCHEEPURAM', '2208010002', '1', '1', 'upload_files/candidate_tracker/85792401918_Desic_Alwar_resume[1].docx', NULL, '1', '2022-08-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic skills Focusing much in Dot net not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-01 09:49:59', 1, '2022-08-01 09:55:46', 0, NULL, 1),
(9652, 'Asish Kumar mishra', '5', '9078245963', '', 'mishraasish25@gmail.com', '1995-02-11', 27, '1', '2', 'Bhalabhadra mishra', '+3continue', 5000.00, 4, 14000.00, 16000.00, 'Odisha', 'Hsr lay out', '2208010003', '', '2', 'upload_files/candidate_tracker/41120210407_Adobe Scan Jul 19, 2022 (1).pdf', NULL, '1', '2022-08-01', 0, 'P1328', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-01 10:16:10', 1, '2022-08-01 10:26:42', 0, NULL, 1),
(9653, 'J.kowsika', '4', '8098707425', '7868974268', 'kowsikowsika33@gmail.com', '2001-03-03', 21, '3', '2', 'P.jaisangar', 'Farmer', 6000.00, 1, 0.00, 8000.00, 'Kalimedu', 'Kalimedu', '2208010004', '', '1', 'upload_files/candidate_tracker/71131648680_kowsika resume.pdf', NULL, '1', '2022-08-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-01 10:43:15', 1, '2022-08-01 11:05:26', 0, NULL, 1),
(9654, 'E.priya', '4', '6383384332', '8056399216', 'Priyapriya52111@gmail.com', '2000-10-31', 21, '3', '2', 'T.Elangovan', 'Cooli', 6000.00, 1, 0.00, 8000.00, 'Seetha Nagar, memballam', 'Seetha Nagar, memballam', '2208010005', '', '1', 'upload_files/candidate_tracker/15083251944_E.Priya.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped not interested much with telecalling and not interested in Target ', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-01 10:43:27', 1, '2022-08-01 11:34:11', 0, NULL, 1),
(9655, 'D.kannaki', '4', '9361029588', '7502699804', 'kannakidharshi@gmail.com', '2000-04-02', 22, '3', '2', 'Durai.v', 'Farmer', 6000.00, 1, 0.00, 7000.00, 'KARUKKA KOTTAI', 'KARUKKA KOTTAI', '2208010006', '', '1', 'upload_files/candidate_tracker/77621038868_kannaki resume.pdf', NULL, '1', '2022-08-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-01 10:44:01', 1, '2022-08-01 11:05:27', 0, NULL, 1),
(9656, 'Thanikaivel', '3', '6380549379', '8838275684', 'thanikaics17@gmail.com', '1999-03-17', 23, '2', '2', 'Arumugam B', 'Medical shop', 30000.00, 0, 0.00, 20000.00, 'Kallakurichi', 'Kallakurichi', '2208010007', '1', '1', 'upload_files/candidate_tracker/53109772656_Thanikaivel_CV.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No ideas in Javascript,Long Run doubts 2nd round reject by Tamilmani', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-01 11:14:18', 85, '2022-08-01 11:27:36', 0, NULL, 1),
(9657, 'S. Prakash', '2', '8056442513', '', 'Prakashprakash77260@gmail.com', '2002-01-07', 20, '2', '2', 'P. Settu', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Thiruvannamalai', 'Madhuravoyal', '2208010008', '1', '1', 'upload_files/candidate_tracker/69333834213_prakash.docx', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Worst Profile, no basic skills knowledge not open for the timings', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-01 11:44:39', 85, '2022-08-01 12:01:58', 0, NULL, 1),
(9658, 'Devipriya G', '13', '8825908788', '8925017468', 'gdevipriya2000@gmail.com', '2000-05-18', 22, '2', '2', 'Ganesh kumar k', 'Cooli', 96000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2208010009', '1', '1', 'upload_files/candidate_tracker/92633497898_ resume (18).pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance ,Not Ready To Relocate Looking For CAB Facilities', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-01 11:59:00', 85, '2022-08-01 12:10:56', 0, NULL, 1),
(9659, 'MANISHA R', '13', '8668007450', '7305741686', 'Jerocelin@gmail.com', '2000-05-19', 22, '2', '2', 'RAMA CHANDRAN A', 'HVF', 200000.00, 2, 0.00, 18000.00, 'Chennai(avadi)', 'Chennai(avadi)', '2208010010', '1', '1', 'upload_files/candidate_tracker/87079655651_Manisha Resume.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too Long Distance ,not ready to relocate looking for CAB facilities', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-01 11:59:07', 85, '2022-08-01 12:21:56', 0, NULL, 1),
(9660, 'Mouleeswaran', '2', '9942860155', '6369535428', 'mouleesjilla235@gmail.com', '2000-09-26', 21, '2', '2', 'Senniyappan', 'Farmer', 12000.00, 0, 0.00, 20000.00, 'Gobichettipalayam, Erode.', 'Gobichettipalayam, Erode.', '2208010011', '1', '1', 'upload_files/candidate_tracker/63624395807_MOULEES RESUME (4).pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No ideas in Javascript,just started learning Notice 30-40 days if he come back let us try for our Roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-01 12:05:06', 85, '2022-08-01 12:10:37', 0, NULL, 1),
(9661, 'R.Divya', '30', '9176470756', '', 'divyapavi2006@gmail.com', '2000-06-19', 22, '2', '2', 'Ramamoorthy', '20000', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208010012', '1', '1', 'upload_files/candidate_tracker/63279162082_Divya-6.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up no basic ideas on the skills not suitable', '9', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-01 12:18:49', 1, '2022-08-01 12:33:55', 0, NULL, 1),
(9662, 'Stella.P', '29', '7358615342', '7299410172', 'agine245@gmail.com', '1997-02-06', 25, '2', '2', 'K.Ponnayan', 'Clerk', 120000.00, 2, 12500.00, 14000.00, 'Pallavaram', 'Pallavaram', '2208010013', '1', '2', 'upload_files/candidate_tracker/74812551813_Stella (2).pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Writing skills poor not suitable for our role', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-01 12:29:01', 85, '2022-08-01 12:56:02', 0, NULL, 1),
(9663, '', '0', '8608693248', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208010014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-01 03:14:38', 0, NULL, 0, NULL, 1),
(9664, '', '0', '8778127662', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208010015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-01 04:37:04', 0, NULL, 0, NULL, 1),
(9665, 'K.Tamilarasi', '4', '7449216207', '', 'tamilar621@gmail.com', '2000-07-17', 22, '2', '2', 'K.Neela', 'House maid', 8000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai(Sowcarpet)', '2208010016', '1', '1', 'upload_files/candidate_tracker/30734615634_Resume.pdf', NULL, '1', '2022-08-04', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-01 04:45:17', 85, '2022-08-02 04:07:25', 0, NULL, 1),
(9666, 'Naresh kumar', '4', '6382862275', '7871797041', 'nareshkumarmohan2000@Gmail.com', '2000-09-04', 21, '2', '2', 'Mohan', 'Self', 30000.00, 3, 0.00, 14000.00, 'Thanjavur', 'Thanjavur', '2208010017', '1', '1', 'upload_files/candidate_tracker/39939009164_M NARESHKUMAR.docx', NULL, '1', '2022-08-02', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-01 06:11:52', 85, '2022-08-02 11:10:51', 0, NULL, 1),
(9667, 'Piritha R', '4', '9003687083', '', 'pritharamamoorthy865@gmail.com', '2000-08-10', 21, '2', '2', 'Ramamoorthy', 'Farmer', 120000.00, 2, 0.00, 15000.00, 'Karaikudi', 'Velachery chennai', '2208020001', '1', '1', 'upload_files/candidate_tracker/96536951450_Piritha R CV.pdf', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 132000.00, '', '3', '2022-12-01', '2', 'Selected for Arumbakkam - Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 09:22:04', 60, '2022-08-03 11:04:00', 0, NULL, 1),
(9668, 'Thavamani', '6', '6379418891', '7339618836', 'nivimani4199@gmail.comcom', '1999-01-04', 23, '2', '2', 'Sivaraman', 'Tiles work', 11000.00, 1, 0.00, 15000.00, 'Karaikudi', 'Chennai', '2208020002', '1', '1', 'upload_files/candidate_tracker/93891638628_Thavamani.pdf', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team  - Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 09:22:18', 60, '2022-08-03 06:58:37', 0, NULL, 1),
(9669, 'Tamil mullai .S', '4', '7868099014', '', 'Tamilmullairaj812000@gmail.com', '2000-01-08', 22, '2', '2', 'Selvaraj .MR', 'Cooking master', 150000.00, 2, 0.00, 15000.00, 'Karaikudi', 'Velachery', '2208020003', '1', '1', 'upload_files/candidate_tracker/30146661593_Tamil mullai .pdf', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 132000.00, '', '3', '2022-12-01', '2', 'Selected for Arumbakkam - Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 09:29:00', 60, '2022-08-03 11:02:00', 0, NULL, 1),
(9670, 'Suhasini v', '4', '7397405707', '', 'suhavivek290518@gmail.com', '1996-08-27', 25, '2', '1', 'Vivek', 'Hair dresser', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2208020004', '2', '1', 'upload_files/candidate_tracker/72856436719_SuhasiniResume.docx', NULL, '1', '2022-08-02', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Tamil only she preferred,Can be trained need to come back with her confirmation on the TxxampC, kindly check and update', '1', '2', '0', '1', '1', '0', '2', '2022-08-04', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-02 09:42:48', 1, '2022-08-02 09:45:39', 0, NULL, 1),
(9671, 'iyyappan g', '13', '8056384649', '', 'iyyappan9813@gmail.com', '1998-04-13', 24, '2', '2', 'gnanasekaran k', 'business', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208020005', '2', '1', 'upload_files/candidate_tracker/8779217315_iyyappan resume 2.pdf', NULL, '1', '2022-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance no basic ideas in PHP Skills will not sustain for a long  not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-02 09:48:55', 1, '2022-08-02 09:50:42', 0, NULL, 1),
(9672, 'akmal parvez a', '4', '9884224699', '', 'aakmalparvez@gmail.com', '2001-05-22', 21, '2', '2', 'gulzar ahmed', 'labour', 7000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208020006', '2', '1', 'upload_files/candidate_tracker/91571211151_Resume (1).pdf', NULL, '1', '2022-08-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-02 09:53:09', 1, '2022-08-02 01:11:54', 0, NULL, 1),
(9673, 'abiramy s', '4', '9361467562', '7558134960', 'abiramysekar@gmail.com', '1999-08-05', 22, '2', '2', 'p. sekar', 'farmer', 9000.00, 2, 0.00, 10000.00, 'ammapettai', 'ammapettai', '2208020007', '1', '1', 'upload_files/candidate_tracker/47446292696_ABIRAMY -- RESUME.docx', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 126312.00, '', '3', '2022-08-26', '2', 'Selected for Thanjavur- Consultant Role', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 10:24:23', 60, '2022-08-03 02:42:16', 0, NULL, 1),
(9674, 'Kamalakannan', '4', '9092432250', '9865042250', 'jkamalkannanj@gmail.com', '2001-10-26', 20, '3', '2', 'Loganathan', 'Labour', 30000.00, 1, 0.00, 10000.00, 'Surampatti, erode', 'Surampatti, erode', '2208020008', '', '1', 'upload_files/candidate_tracker/23046253873_kamalannan.docx', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 126312.00, '', '4', '2022-12-01', '2', 'Selected for  erode - Muthu Team  - Consultant Role', '1', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-02 10:27:21', 60, '2022-08-03 04:21:40', 0, NULL, 1),
(9675, 'Sabari Duraikannu', '5', '7418681007', '7010302458', 'sabarivasan14@gmail.com', '2007-08-02', 0, '3', '2', 'Duraikannu', 'Driver', 60000.00, 2, 26000.00, 32000.00, 'Chennai', 'Chennai', '2208020009', '', '2', 'upload_files/candidate_tracker/48911650609_Sabari_resume_New.docx', NULL, '1', '2022-08-02', 0, '', '1', '44', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-02 10:36:56', 1, '2022-08-02 10:47:01', 0, NULL, 1),
(9676, 'vinotha', '4', '6384917079', '9361467562', 'vinothavinotha282@gmail.com', '1999-05-23', 23, '2', '2', 'a. veeramani', 'tneb', 15000.00, 3, 0.00, 10000.00, 'panayakottai', 'panayakottai', '2208020010', '1', '1', 'upload_files/candidate_tracker/38522979215_VINOTHA RESUME.pdf', NULL, '1', '2022-08-02', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 10:44:07', 85, '2022-08-02 10:51:33', 0, NULL, 1),
(9677, 'M. Vijayakumar', '4', '7305307921', '9444009704', 'Vijayakumar19052000@gmail.com', '2000-05-19', 22, '2', '2', 'M. Mahadevan', 'Labour in Asian paint company', 200000.00, 1, 0.00, 13000.00, 'No. 7,8th street k. S nagar ipuzhal chennai- 66', 'No. 7,8th street k. S nagar kavangarai puzhal', '2208020011', '1', '1', 'upload_files/candidate_tracker/58379821212_RESUME.docx', NULL, '1', '2022-08-02', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Continuous RNR', '1', '1', '', '1', '3', '', '2', '2022-08-09', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-02 10:51:18', 85, '2022-08-02 11:49:04', 0, NULL, 1),
(9678, 'abinaya r', '4', '9566832280', '9750415683', 'rabinayarabinaya14@gmail.com', '1999-07-16', 23, '3', '2', 'ravichandran v', 'labour', 10000.00, 2, 0.00, 10000.00, 'kandithampattu', 'kandithampattu', '2208020012', '', '1', 'upload_files/candidate_tracker/44276112044_abinaya resume.pdf', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 126312.00, '', '4', '2022-11-01', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-02 10:58:13', 60, '2022-08-03 04:33:43', 0, NULL, 1),
(9679, 'Kamarudeen.B', '13', '7339502007', '9080477272', 'babukamarudeen@gmail.com', '2000-11-07', 21, '2', '2', 'Babu.A', 'Former', 1.50, 2, 0.00, 2.00, 'Chennai.', 'Chennai', '2208020013', '1', '1', 'upload_files/candidate_tracker/31664056577_Kamarudeen-CV.pdf', NULL, '1', '2022-08-02', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Have interest to learn can be trained kindly check and let me know your interest', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-02 11:15:39', 85, '2022-08-02 11:28:42', 0, NULL, 1),
(9680, 'M.Marikumar', '4', '6383735088', '9750266185', 'mrmarikumar02@gmail.com', '2002-10-23', 19, '2', '2', 'G.Moorthy', 'Own Business', 25000.00, 1, 0.00, 15000.00, 'Perundurai,Erode', 'Perundurai,Erode', '2208020014', '1', '1', 'upload_files/candidate_tracker/54055008502_M.Marikumar resume.pdf', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 126312.00, '', '3', '2022-08-10', '1', 'Selected for Erode - Muthu Team - Consultant Role', '1', '2', '1', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 11:30:45', 60, '2022-08-02 06:15:01', 0, NULL, 1),
(9681, 'Vignesh S', '13', '9344374298', '', 'vickyprema1998@gmail.com', '1998-08-16', 23, '2', '2', 'Sundaraj', 'BUSINESS', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208020015', '1', '1', 'upload_files/candidate_tracker/26907527032_VIGNESH-converted.docx', NULL, '1', '2022-08-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not strong with the basic skills too long distance will not sustain in a along run', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-02 11:45:57', 85, '2022-08-02 12:05:59', 0, NULL, 1),
(9682, 'Ajith Kumar V', '13', '8608412648', '', 'ajithvij682@gmail.com', '1998-05-10', 24, '2', '2', 'Vinayagam', 'Business', 20000.00, 1, 180000.00, 200000.00, 'Chennai', 'Kundrathur', '2208020016', '1', '2', 'upload_files/candidate_tracker/73033281523_AJITH RESUME.pdf', NULL, '1', '2022-08-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Strong With The Basic Skills Too Long Distance Will Not Sustain In A Along Run', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-02 11:46:12', 85, '2022-08-02 12:14:57', 0, NULL, 1),
(9683, 'Sriram', '4', '9344501907', '9487059520', 'srir53274@gmail.com', '1999-03-18', 23, '2', '2', 'Sundararajan', 'Land', 40000.00, 0, 0.00, 15.00, 'Chengam mullai nagar', 'Ambattur kallikuppam', '2208020017', '1', '1', 'upload_files/candidate_tracker/37728084229_Sriram.S.doc', NULL, '1', '2022-08-02', 0, '', '1', '14', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-08-02 12:24:15', 1, '2022-08-02 03:36:22', 0, NULL, 1),
(9684, '', '0', '9176769116', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208020018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-02 12:30:37', 0, NULL, 0, NULL, 1),
(9685, 'Abdul rahman p', '5', '9884022055', '', 'fayazfyz23@gmail.com', '1997-06-23', 25, '4', '1', 'Peer mohammed m', 'Cycle mechanic', 32000.00, 0, 0.00, 600000.00, 'Chennai', 'Chennai', '2208020019', '', '2', 'upload_files/candidate_tracker/59180567242_My resume.doc', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-09-12', 410000.00, '', NULL, '2023-11-25', '1', 'Selected for Santhosh Team, - Team will give a task and based on completion may get the increment', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-02 02:29:12', 60, '2022-08-03 12:59:01', 0, NULL, 1),
(9686, 'MOHAMMED ANSARI SALIM', '4', '8610912829', '', 'appuansar3@gmail.com', '2000-09-23', 21, '2', '2', 'SALIM', 'Worker', 34000.00, 0, 12500.00, 20000.00, 'Tiruppur', 'Tiruppur', '2208020020', '1', '2', 'upload_files/candidate_tracker/62003621285_IMG_20220720_094517 (2).pdf', NULL, '3', '2022-08-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 03:38:11', 85, '2022-08-02 03:48:21', 0, NULL, 1),
(9687, '', '0', '9171277037', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208020021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-02 04:04:56', 0, NULL, 0, NULL, 1),
(9688, 'S.Fathima Sifara', '6', '8056673439', '8807436385', 'smfsifara@gmail.com', '1999-07-15', 23, '2', '1', 'Sirajudeen', 'Telecaller', 15000.00, 0, 15000.00, 12500.00, 'Erode', 'Erode', '2208020022', '1', '2', 'upload_files/candidate_tracker/35820980316_RESUME OF SIFARA 3.pdf', NULL, '1', '2022-08-03', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she no need for target related job. ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 04:22:40', 85, '2022-08-03 12:43:24', 0, NULL, 1),
(9689, '', '0', '7092236019', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208020023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-02 04:39:06', 0, NULL, 0, NULL, 1),
(9690, 'Shamini t', '5', '6381232486', '9940150908', 'shaminithavamani@gmail.com', '2001-10-19', 22, '1', '2', 'Thavamani', 'Mason', 30000.00, 1, 24000.00, 30000.00, 'Thirupathur', 'Annanur', '2208020024', '', '2', 'upload_files/candidate_tracker/28645005930_DOC20240902WA0006..pdf', NULL, '1', '2024-09-12', 0, '55807', '2', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for Next Round, \nDue to PC manpower hold \nwe can hold for some time ', '5', '1', '', '1', '8', '', '2', '2024-11-06', '3', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2022-08-02 06:01:24', 104, '2024-09-12 05:07:46', 0, NULL, 1),
(9691, 'Sathesh. K', '5', '6374426801', '9597106214', 'Satheshk1817@gmail.com', '2000-08-27', 21, '1', '2', 'Saraswathi. K', 'Cooly', 17000.00, 1, 12000.00, 15000.00, 'Srivillliputtur', 'Srivilliputtur', '2208020025', '', '2', 'upload_files/candidate_tracker/89439370372_sathesh resume.pdf', NULL, '3', '2022-08-03', 0, '55565', '3', '59', '2022-08-17', 240000.00, '', '4', '2022-11-04', '2', 'Selected for Manikandan team - Staff Role', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-02 06:26:28', 60, '2022-08-16 04:19:42', 0, NULL, 1),
(9692, 'V. Bharathi Shankari', '11', '7358597526', '7550157494', 'bharathivinayagam20@gmail.com', '1998-08-20', 23, '2', '2', 'Vinaayaga moorthy', 'Watchman', 15.00, 1, 0.00, 12.00, 'Chennai', 'Chennai', '2208020026', '1', '1', 'upload_files/candidate_tracker/76317465312_Bharathi', NULL, '1', '2022-08-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average, No basic ideas in the recruitment ,will not sustain in a long run', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 06:43:12', 85, '2022-08-03 09:39:46', 0, NULL, 1),
(9693, 'Prithika.k', '6', '9176122000', '', 'Prithika2605@GMAIL.COM', '2003-05-26', 19, '2', '2', 'Kumar', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Jayankondam', 'Mylappur', '2208030001', '1', '1', 'upload_files/candidate_tracker/43458411740_PRITHIKA.K.pdf', NULL, '1', '2022-08-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Fresher Came Along With Friend Can Be Trained Kindly Check And Let Me Know Your Inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-03 08:51:20', 60, '2022-08-03 06:09:58', 0, NULL, 1),
(9694, 'Srigayathri Baskaran', '6', '9361530652', '9865228011', 'srigayathrivignesh@gamil.com', '2001-08-18', 20, '2', '2', 'Baskaran', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Jayankondam', 'Mylappur', '2208030002', '1', '1', 'upload_files/candidate_tracker/52879726288_Srigayathri . Pdf.pdf', NULL, '1', '2022-08-03', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Fresher Came along with friend can be trained kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-03 09:26:16', 60, '2022-08-03 06:09:43', 0, NULL, 1),
(9695, 'giri', '2', '9025128843', '', 'giriksiru@gmail.com', '2001-03-23', 21, '2', '2', 'gopi', 'farmer', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208030003', '2', '1', 'upload_files/candidate_tracker/29242758330_CV_2022071220381811.pdf', NULL, '1', '2022-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very Slow No basic Skills knowledge Not suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-03 10:39:44', 1, '2022-08-03 10:41:46', 0, NULL, 1),
(9696, 'Dhananjezhian j', '31', '8072449033', '9514297858', 'Djvicky141@gmail.com', '2001-04-21', 21, '2', '2', 'Janarthanan p', 'Driver', 20000.00, 1, 0.00, 28000.00, 'Chennai', 'Chennai', '2208030004', '1', '1', 'upload_files/candidate_tracker/86198748009_Document 4.pdf', NULL, '1', '2022-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much good with the Skills fresher already attended and waiting for the final update from some other company,Sustainability doubts a lot ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-03 11:03:00', 1, '2022-08-03 11:46:11', 0, NULL, 1),
(9697, 'pradeep raj', '13', '7385931173', '', 'pradeepna2000@gmail.com', '2000-05-13', 22, '2', '2', 'palane samy', 'news paper distributor', 8000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208030005', '2', '1', 'upload_files/candidate_tracker/94931262996_PradeepResume.pdf', NULL, '1', '2022-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Career Gap not shown interest towards the career inn between not much strong with the skills not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-03 11:06:00', 1, '2022-08-03 11:07:50', 0, NULL, 1),
(9698, '', '0', '9094224111', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208030006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-03 11:26:10', 0, NULL, 0, NULL, 1),
(9699, 'Abiraj', '23', '8754754860', '9488732052', 'abirajabi1999@gmail.com', '1999-12-04', 22, '3', '2', 'Subburaj', 'Accountant', 20000.00, 1, 0.00, 15000.00, 'Viruthunagar', 'Chennai', '2208030007', '', '1', 'upload_files/candidate_tracker/66451496975_Abiraj\'s Resume.pdf', NULL, '1', '2022-08-03', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Have basic knowledge can be trained kindly check and let me know your interest', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-03 12:06:34', 1, '2022-08-03 12:11:03', 0, NULL, 1),
(9700, 'R.Seethala Devi', '4', '9629638467', '6369384263', 'seethalaraju15@gmail.com', '1997-06-21', 25, '2', '1', 'S.Raja', 'Senior sales executive', 80000.00, 2, 12000.00, 15000.00, 'Thanjavurr', 'Thanjavur', '2208030008', '1', '2', 'upload_files/candidate_tracker/32671450093_seethala resume new-1.pdf', NULL, '1', '2022-08-08', 0, '', '3', '59', '2022-08-10', 151584.00, '', '6', '2022-09-05', '1', 'Selected for Consultant Role - Thanjavur Locaiton', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-03 02:44:43', 60, '2022-08-08 08:06:33', 0, NULL, 1),
(9701, 'Umapathy', '5', '9884367733', '9025528059', 'umapathydeepam222@gmail.com', '1991-07-08', 31, '1', '1', 'Kavitha', 'Housewife', 40000.00, 1, 23000.00, 28000.00, 'Chennai', 'Chennai', '2208030009', '', '2', 'upload_files/candidate_tracker/95653214863_1659523035044_resume .pdf', NULL, '1', '2022-08-03', 15, 'P1315', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate was not showing interest  didnt share the required documents and not responding the calls\n', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-03 04:39:10', 60, '2022-08-11 03:50:41', 0, NULL, 1),
(9702, 'Natarajan S', '13', '9894809467', '9025934070', 'sn309022@gmail.com', '2000-05-16', 22, '2', '2', 'Srinivasan J', 'Business man', 35000.00, 1, 0.00, 25000.00, 'Chidambaram', 'Chidambaram', '2208040001', '1', '1', 'upload_files/candidate_tracker/91393827729_nataraj.docx', NULL, '1', '2022-08-04', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to be trained Sustainability Doubt in a long run Need to come back with his confirmation if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-08-06', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-04 10:31:14', 1, '2022-08-04 10:36:51', 0, NULL, 1),
(9703, 'VIGNESH U', '16', '6374552047', '8939140085', 'vikiudaya309@gmail.com', '1999-09-30', 22, '2', '2', 'R UDAYAKUMAR', 'Chennai Corporation Driver', 50000.00, 0, 11000.00, 20000.00, 'Chennai', 'Chennai', '2208040002', '1', '2', 'upload_files/candidate_tracker/26333782668_Vignesh Resume .docx', NULL, '1', '2022-08-04', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok can be trained but not open with Docu Submission,need to confirm  with his father', '3', '1', '', '1', '1', '', '2', '2022-08-05', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-04 10:40:23', 85, '2022-08-04 11:43:41', 0, NULL, 1),
(9704, 'Sakthivel v', '6', '6381420830', '7397415356', 'sakthivaradhan2001@gmail.com', '2002-12-23', 19, '1', '2', 'Sumithra', 'Tailoring company', 20000.00, 1, 15000.00, 17000.00, 'Kundrathur', 'Kundrathur', '2208040003', '', '2', 'upload_files/candidate_tracker/1125007359_Untitled document.docx', NULL, '1', '2022-08-04', 0, 'P1302', '3', '59', '2022-08-08', 198000.00, '', '4', '2022-09-24', '1', 'Selected for Staff Role - Syed Team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-04 12:00:37', 60, '2022-08-08 12:10:06', 0, NULL, 1),
(9705, 'Karthik.M', '5', '7010996464', '', 'karthikram2369@gmail.com', '1991-12-13', 30, '4', '1', 'Keerthana', 'Home maker', 30000.00, 1, 400000.00, 4.50, 'Chennai', 'Chennai', '2208040004', '', '2', 'upload_files/candidate_tracker/38759606084_0_Karthik.M RESUME.pdf', NULL, '1', '2022-08-04', 0, '', '3', '59', '2022-09-05', 400000.00, '', '7', '1970-01-01', '1', 'Selected for Manikandan - Staff Role Document has been verified based on that we offered him 14%', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-04 12:42:32', 60, '2022-08-08 06:00:43', 0, NULL, 1),
(9706, 'gayathri v', '4', '8248122869', '', 'gayathrigaysbca@gmail.com', '2001-10-21', 20, '2', '2', 'venkatesh', 'business', 15000.00, 1, 0.00, 11000.00, 'chennai', 'chennai', '2208040005', '2', '1', 'upload_files/candidate_tracker/29719889471_gayumaresume.pdf', NULL, '1', '2022-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate was not interested dropped ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-04 02:03:19', 1, '2022-08-04 02:05:27', 0, NULL, 1),
(9707, 'gayathri v', '4', '6374636958', '', 'gayusundaram2001@gmail.com', '2001-09-13', 20, '2', '2', 'vinayaga sundaram', 'sales manager', 15000.00, 1, 0.00, 11000.00, 'chennai', 'chennai', '2208040006', '2', '1', 'upload_files/candidate_tracker/67201976699_gayures-1.pdf', NULL, '1', '2022-08-04', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', 'Fresher can be trained kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-04 02:07:22', 1, '2022-08-04 02:08:47', 0, NULL, 1),
(9708, 'Hariharan', '4', '9944498413', '8072005127', 'dusterkinghari@gmail.com', '1997-08-04', 25, '3', '2', 'Balakrishnan', 'Govt(Rtd)', 20000.00, 0, 7000.00, 15000.00, 'Kavindapadi', 'KAVINDAPADI', '2208040007', '', '2', 'upload_files/candidate_tracker/81361132620_hari resume.docx', NULL, '1', '2022-08-04', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Salary Exp is high being a fresher ave his own family business Sustainability Doubts min Exp is 12K\n', '1', '1', '0', '4', '7', '0', '2', '2022-08-11', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-04 04:31:16', 1, '2022-08-04 04:36:08', 0, NULL, 1),
(9709, 'Abdul Samathu', '6', '9443044002', '', 'arasamath@gmail.com', '1985-07-30', 37, '2', '2', 'Abdul', 'Rtd', 10000.00, 1, 0.00, 12000.00, '12000', 'Chennai', '2208050001', '2', '1', 'upload_files/candidate_tracker/180087241_Resume.pdf', NULL, '1', '2022-08-05', 0, '', '1', '85', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-05 10:54:42', 1, '2022-08-05 10:57:35', 0, NULL, 1),
(9710, 'Ganesh', '4', '9994238481', '', 'ganeshprabhu500@gmail.com', '1997-11-06', 24, '2', '2', 'Balaganesan', 'Farmer', 10000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2208050002', '2', '2', 'upload_files/candidate_tracker/57046695618_GANESH RESUME PDF.123.pdf', NULL, '1', '2022-08-05', 0, '', '1', '85', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-05 11:00:50', 1, '2022-08-05 11:04:19', 0, NULL, 1),
(9711, 'Sukhel M', '4', '7708498974', '', 'Sukhelsuki@gmail.com', '2002-05-26', 20, '2', '2', 'Mohammed shathik basha', 'Painter', 14000.00, 1, 0.00, 15000.00, 'Kalliyampudur road,Perundurai', 'Kalliyampudur Road,Perundurai', '2208060001', '1', '1', 'upload_files/candidate_tracker/47743125805_SUKHEL M resume 1.pdf', NULL, '1', '2022-08-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-06 03:04:05', 85, '2022-08-06 06:00:11', 0, NULL, 1),
(9712, 'Vaishnavi M K', '16', '9444784919', '9940953957', 'Vaishukrishnan0110@gmail.com', '2001-09-10', 20, '2', '2', 'Murali krishnan', 'Farmer', 50000.00, 2, 0.00, 15000.00, 'Uthukottai', 'Ambattur, chennai', '2208060002', '1', '1', 'upload_files/candidate_tracker/9487620305_VAISHNAVI RESUME(2).pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance will not sustain and not  much suitable for this Role\n', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-06 07:13:20', 85, '2022-08-08 05:02:02', 0, NULL, 1),
(9713, 'Revathi.H', '16', '7358751934', '9094870751', 'harirevathi44@gmail.com', '2002-02-16', 20, '2', '2', 'Haridoss.G', 'pettyshop keeper', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Ambattur,Chennai', '2208060003', '1', '1', 'upload_files/candidate_tracker/9357842479_Document from Revathi.pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Managable but long distance sustainability doubts a lot not suitable', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-06 08:24:02', 85, '2022-08-08 05:01:47', 0, NULL, 1),
(9714, 'Ramyasri S', '2', '9361360522', '9003229890', 'ramyasrishivakumar@gmail.com', '2002-07-17', 20, '3', '2', 'Sivakumar', 'Turner', 18000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2208060004', '', '1', 'upload_files/candidate_tracker/79343096275_RAMYASRI RESUME.PDF.pdf', NULL, '1', '2022-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-06 09:56:43', 1, '2022-08-06 10:02:21', 0, NULL, 1),
(9715, '', '0', '9715561368', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208060005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-06 10:07:31', 0, NULL, 0, NULL, 1),
(9716, 'Sharmila S', '16', '9361380620', '', 'sharmiclamantin@gmail.com', '2001-10-09', 20, '2', '2', 'Selvaraj S', 'Carpenter', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208070001', '1', '1', 'upload_files/candidate_tracker/74261457_Sharmila B. com.pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Distancenot open with telecalling looking for MIS but not much clear with the skills and will not sustian', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-07 09:30:19', 85, '2022-08-08 05:01:31', 0, NULL, 1),
(9717, 'Kanniammal M', '16', '9791066925', '9677262937', 'rajikutty1017@gmail.com', '2001-10-17', 20, '4', '2', 'Munusami E', 'Cooli work', 10000.00, 1, 0.00, 15000.00, 'No:3 \'P\' Block, Ramakamathupuram, T, Nagar, Ch17.', 'No:3 \'P\' Block, Ramakamathupuram, T, Nagar, Ch 17.', '2208070002', '', '1', 'upload_files/candidate_tracker/95641290206_Kanniammal M (Resume).pdf', NULL, '1', '2022-08-08', 0, '', '1', '85', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-07 09:02:41', 1, '2022-08-07 09:10:24', 0, NULL, 1),
(9718, 'S. Prakash', '16', '8939462151', '9092611012', 'Prakashthanish01@gmail.com', '2001-06-11', 21, '2', '2', 'Saravanan. K', 'driver', 12000.00, 1, 0.00, 13500.00, 'Chennai', 'Chennai', '2208080001', '1', '1', 'upload_files/candidate_tracker/52019591533_prakash resume.pdf', NULL, '1', '2022-08-08', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'poor communication ....no understanding... Donxquott have any idea about mIS xxamp Lookups...', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-08 09:53:14', 85, '2022-08-08 07:04:34', 0, NULL, 1),
(9719, 'Raguram.S', '4', '9176906470', '', 'raguram13800@gmail.com', '2001-09-19', 20, '2', '2', 'Selvaraj', 'Sales executive manager', 5000.00, 0, 0.00, 12000.00, 'Ayanavaram', 'Chennai', '2208080002', '1', '1', 'upload_files/candidate_tracker/48735650649_Raguram CV 1.pdf', NULL, '1', '2022-08-08', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50-50 profile job need... has Interest in sales ...average in convincing skills ..let you check and give your inputs...', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-08 10:14:27', 85, '2022-08-08 07:11:42', 0, NULL, 1),
(9720, 'Nikitha.A', '25', '6382545557', '7338921314', 'nikidalsweety@gmail.com', '2000-07-18', 22, '2', '2', 'Anbazhagan', 'Railway contract', 200000.00, 1, 18000.00, 25000.00, 'No.61 Chengalvarayan Street Perambur Chennai 52', 'No.114 kamachi amman nagar vadakarai redhills', '2208080003', '1', '2', 'upload_files/candidate_tracker/52749361462_Intelligent CV Document (2).pdf', NULL, '1', '2022-08-08', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher to sales ... good communication ... average convicing skills...  sal expt  too high ..not suit for our process', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-08 10:24:06', 85, '2022-10-08 10:26:36', 0, NULL, 1),
(9721, 'Ravivarma. B', '4', '8883826218', '8778717125', 'ravivarmab2@gmail.com', '1992-05-18', 30, '2', '2', 'A. Balakrishnan', 'Cooli', 12.00, 1, 15.00, 18.00, 'erode', 'erode', '2208080004', '1', '2', 'upload_files/candidate_tracker/11595832504_RAVIVARMA(1.pdf', NULL, '1', '2022-08-08', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for tele sales', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-08 10:28:00', 92, '2022-08-08 10:54:45', 0, NULL, 1),
(9722, 'Rosebeena.S', '6', '9150974507', '', 'beenus292002@gmail.com', '2002-09-02', 19, '2', '2', 'A.Samsan', 'Driver', 13000.00, 1, 0.00, 12000.00, '84/kongu Nagar, Ellapalayam main Road, Erode', '84/Kongu Nagar, Ellapalayam Main Road, Erode', '2208080005', '1', '1', 'upload_files/candidate_tracker/37857102815_Rosebeena resume.docx.pdf', NULL, '1', '2022-08-08', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate okay but she told discuss with family for this job.. so we want to rejected', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-08 10:28:54', 92, '2022-08-08 03:18:07', 0, NULL, 1),
(9723, '', '0', '9894159895', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208080006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-08 10:31:00', 0, NULL, 0, NULL, 1),
(9724, 'Bairavi', '23', '6385702331', '', 'bairavivelit22@gmail.com', '2000-08-22', 21, '2', '2', 'velmurugan', 'farmer', 50000.00, 2, 0.00, 20000.00, 'Pattukottai', 'Chennai', '2208080007', '1', '1', 'upload_files/candidate_tracker/51458689860_BAIRAVIRESUME1.pdf', NULL, '1', '2022-08-08', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have basic Knowledge Of hTML xxamp CSS ... want to learn more...', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-08 10:34:45', 85, '2022-08-08 07:17:54', 0, NULL, 1),
(9725, 'Kumaraguru k', '5', '7904348262', '9994717549', 'kkumaraguru143@gmail.com', '2002-04-05', 20, '1', '2', 'Kumar R', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Saidhapet', 'Saidhapet', '2208080008', '', '1', 'upload_files/candidate_tracker/26112441465_kumaraguru RESUME (1) (1).pdf', NULL, '1', '2022-08-08', 0, 'P1279', '3', '59', '2022-08-10', 264000.00, '', '3', '2022-10-05', '2', 'Shanmugam team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-08 10:54:14', 60, '2022-08-10 10:13:48', 0, NULL, 1),
(9726, 'M.yazhini', '4', '9345026023', '9600860697', 'Manisekaran98@gmail.com', '1998-02-08', 24, '3', '2', 'Manisekaran', 'Farmer', 5000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur Nedar', '2208080009', '', '1', 'upload_files/candidate_tracker/99833831091_yazhini.pdf', NULL, '1', '2022-08-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 11:07:27', 1, '2022-08-08 11:25:22', 0, NULL, 1),
(9727, 'Usha .s', '4', '6379180391', '9940790295', 'Sankarusha375@gmail.com', '2002-11-10', 19, '3', '2', 'S.s.sankar', 'Weaving', 8000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2208080010', '', '1', 'upload_files/candidate_tracker/69516024027_usha.pdf', NULL, '1', '2022-08-08', 0, '', '3', '59', '2022-08-10', 126312.00, '', '3', '2022-11-09', '2', 'Selected for Thanjavur Consultant Role', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-08 11:09:20', 60, '2022-08-08 08:20:15', 0, NULL, 1),
(9728, 'M.karthika', '4', '8531048362', '9751010483', 'mkarthika421@gmail.com', '2002-01-21', 20, '3', '2', 'A.Murugesan', 'Work in Aavin', 8000.00, 1, 0.00, 8000.00, 'Thanjavur', 'Thanjavur', '2208080011', '', '1', 'upload_files/candidate_tracker/16006111138_KARTHIKA.docx', NULL, '1', '2022-08-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not going to join she is relocating back to native', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 11:11:12', 1, '2022-08-08 11:39:23', 0, NULL, 1),
(9729, 'R.subha', '4', '6374033573', '6384669761', 'subharaj0905@gmail.com', '2002-05-09', 20, '3', '2', 'G.raja', 'Farmer', 7000.00, 2, 0.00, 10000.00, '1/174 South Street vilar thanjavur', '1/174 South Street vilar thanjavur', '2208080012', '', '1', 'upload_files/candidate_tracker/65827093078_subha.pdf', NULL, '1', '2022-08-08', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 11:12:11', 1, '2022-08-08 11:43:44', 0, NULL, 1),
(9730, 'S.Eswari', '13', '7395999625', '7358574511', 'eswariblogmca@gmail.com', '1997-09-23', 24, '2', '2', 'Singaravelu', 'Retried bank Employee', 8000.00, 1, 0.00, 20000.00, 'Thirumagalam', 'Thirumagalam', '2208080013', '1', '1', 'upload_files/candidate_tracker/45947001589_ESW _RES.pdf', NULL, '1', '2022-08-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfort with TxxampC  Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-08 11:27:18', 1, '2022-08-08 11:38:02', 0, NULL, 1),
(9731, 'Deepa priya p', '13', '7358192676', '', 'deepapriya23061998@gmail.com', '1998-06-23', 24, '2', '2', 'Pandiyan p g', 'Tenant business', 20000.00, 1, 0.00, 20000.00, 'Ambattur', 'Ambattur', '2208080014', '1', '1', 'upload_files/candidate_tracker/83012641632_priya.resume.pdf', NULL, '1', '2022-08-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain for a long may get marry next year,also not comfort much with the TxxampC Salary', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-08 11:27:26', 1, '2022-08-08 11:38:17', 0, NULL, 1),
(9732, 'B. makesh kumar', '31', '9003218320', '', 'mukeshkrishnan2603@gmail.com', '2002-03-26', 20, '2', '2', 'B.Hema kumari', 'Employee', 30000.00, 1, 0.00, 15000.00, 'Collector nagar', 'Koyambedu', '2208080015', '1', '1', 'upload_files/candidate_tracker/97009598243_CV_2022071610593443.pdf', NULL, '1', '2022-08-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Wil not sustain for a long not open much with TxxampC not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-08 11:28:25', 1, '2022-08-08 11:33:35', 0, NULL, 1),
(9733, 'Kanimozhi.v', '4', '9786307875', '9994313662', 'Jenivincent22@gmail.com', '1998-03-22', 24, '3', '2', 'K.vincent', 'Farmer', 7000.00, 2, 0.00, 10000.00, 'Thanjavur', '1/174 South Street vilar thanjavur', '2208080016', '', '1', 'upload_files/candidate_tracker/71596069696_Adobe Scan Aug 05, 2022.pdf', NULL, '1', '2022-08-08', 0, '', '3', '59', '2022-08-10', 126312.00, '', '3', '2022-08-25', '2', 'Consultant role Thanjavur Loca', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-08 11:37:18', 60, '2022-08-09 08:51:37', 0, NULL, 1),
(9734, '', '0', '8681813231', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208080017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-08 11:42:35', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9735, 'Asha.R', '4', '9751764908', '9360353585', '2000asharavikumar@gmail.com', '2000-06-10', 22, '3', '2', 'Ravikumar.k', 'Daily wages', 5000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2208080018', '', '1', 'upload_files/candidate_tracker/55804374857_2022_08_01 9_03 pm Office Lens.pdf', NULL, '1', '2022-08-08', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 11:43:15', 1, '2022-08-08 11:57:57', 0, NULL, 1),
(9736, 'Ramajayam k', '31', '8778405446', '9382875101', 'ramr65007@gmail.com', '2002-02-11', 20, '3', '2', 'Kasi', 'Mechanic', 80000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208080019', '', '1', 'upload_files/candidate_tracker/24576827976_Ramajayam Resume.pdf', NULL, '1', '2022-08-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 11:52:06', 1, '2022-08-08 12:03:42', 0, NULL, 1),
(9737, 'vasudevan', '4', '9344900572', '', 'vasu05593@gmail.com', '2001-12-01', 20, '2', '2', 'e.chakkaravathi', 'welder', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2208080020', '1', '1', 'upload_files/candidate_tracker/33157889263_CV_2022070415144373.pdf', NULL, '1', '2022-08-08', 0, '', '3', '59', '2022-08-11', 126312.00, '', '5', '1970-01-01', '1', 'Selected for Consultant Role - Arumbakkam', '1', '2', '1', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-08 11:56:06', 60, '2022-08-09 03:57:38', 0, NULL, 1),
(9738, 'paul marshal', '4', '8015104865', '', 'fpaulmarshal5@gmail.com', '2001-12-16', 20, '2', '2', 'francis', 'real estate', 12000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2208080021', '1', '1', 'upload_files/candidate_tracker/92435443292_CV_2022072919243238 (1).pdf', NULL, '1', '2022-08-08', 0, '', '3', '59', '2022-08-11', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Arumbakkam - Consultant Role', '1', '2', '1', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-08 11:56:14', 60, '2022-08-11 12:16:04', 0, NULL, 1),
(9739, 'R.Balaji', '13', '9566456992', '', 'balajiravi0510@gmail.com', '1997-04-10', 25, '2', '2', 'S.Ravi', 'Bus Condractor', 20000.00, 1, 0.00, 18000.00, 'Arakkonam', 'Arakkonam', '2208080022', '1', '1', 'upload_files/candidate_tracker/38369801821_Resume - BALAJI.R.pdf', NULL, '1', '2022-08-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to Relocate Fresher no basic skills family need is there if he come back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-08 12:30:03', 92, '2022-08-08 02:36:35', 0, NULL, 1),
(9740, 'Surya N', '4', '7339510792', '7448952840', 'vinisurya8531@gmail.com', '2001-02-02', 21, '2', '2', 'Narayanasamy', 'Farmer', 10000.00, 2, 0.00, 14000.00, 'Meliruppu', 'kK.nagar', '2208080023', '1', '1', 'upload_files/candidate_tracker/66724556803_Surya_cse_software.pdf', NULL, '1', '2022-08-08', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up.  not suit for telecalling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-08 12:47:27', 85, '2022-08-08 01:33:48', 0, NULL, 1),
(9741, 'Boopathi R', '4', '9976087755', '9659193856', 'boopathiraja731@gmail.com', '1992-05-24', 30, '1', '2', 'Raman', 'Labour', 10000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2208080024', '', '1', 'upload_files/candidate_tracker/44627571742_Boopathi .pdf', NULL, '1', '2022-08-08', 0, 'CI139', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 01:04:54', 1, '2022-08-08 01:11:41', 0, NULL, 1),
(9742, 'S RANJITH KUMAR', '5', '8489342468', '9443103060', 'ranjithpeter12@gmail.com', '2000-06-12', 22, '1', '2', 'R SANKAR', 'Sales man', 12000.00, 1, 0.00, 15000.00, 'Bangalore', 'Bangalorr', '2208080025', '', '1', 'upload_files/candidate_tracker/1577406877_ranjithkumar.docx', NULL, '1', '2022-08-08', 0, 'P1322', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 02:15:40', 1, '2022-08-08 02:31:56', 0, NULL, 1),
(9743, 'fahath', '14', '9884383159', '', 'fahathifa@gmail.com', '1993-04-30', 29, '3', '1', 'yasmin', 'homemaker', 15000.00, 1, 0.00, 15000.00, 'chennai', 'old washermenpet', '2208080026', '', '1', 'upload_files/candidate_tracker/43985457163_Fahath Resume - Flutter Developer.pdf', NULL, '1', '2022-08-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain in our domain fresher he was into core for 5 yrs not suitable ', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 03:25:20', 1, '2022-08-08 03:35:40', 0, NULL, 1),
(9744, 'NITHYANANTHAM. D', '4', '7092415513', '9962755138', 'massnithyanandam@gmail.com', '2000-08-09', 21, '2', '2', 'Dhana gopi. D', 'Driver', 30000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2208080027', '1', '2', 'upload_files/candidate_tracker/22776688931_NITHYANANDAM resume(1)-1.pdf', NULL, '1', '2022-08-09', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'average in convincing skills... salary expt high...', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-08 05:44:44', 85, '2022-08-09 04:52:29', 0, NULL, 1),
(9745, '', '0', '8939645989', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208080028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-08 06:32:18', 0, NULL, 0, NULL, 1),
(9746, 'Kalvath T', '16', '9600020891', '', 'kalvath18@gmail.com', '1990-09-12', 31, '2', '1', 'Thameem Ansari K', 'NA', 10000.00, 1, 19500.00, 20000.00, 'Chennai', 'Chennai', '2208090001', '1', '2', 'upload_files/candidate_tracker/71510879847_Kalvath_CV.pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Much focussed on Accounts position,will not handle our pressure', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-09 06:10:26', 85, '2022-08-09 09:28:10', 0, NULL, 1),
(9747, 'Deepak.R', '2', '7092665480', '9566178348', 'iamdeepakdd04@gmail.com', '2000-12-04', 21, '2', '2', 'K.Ramalingam', 'Business', 35000.00, 1, 0.00, 25000.00, 'No.73/1, 1st Mettu Street, Ernavoor, Chennai-57', 'No.73/1, 1st Mettu Street, Ernavoor, Chennai-57', '2208090002', '1', '1', 'upload_files/candidate_tracker/18869669950_deepakresume (2).pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance will not sustain in our roles', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-09 09:58:00', 1, '2022-08-09 10:03:58', 0, NULL, 1),
(9748, 'Ragul.R', '2', '7338998660', '', 'ragulrragulr15@gmail', '2002-03-30', 20, '2', '2', 'Ramesh.C', 'Supervisor', 30000.00, 1, 0.00, 15000.00, '3/241, marikolundhu street, mannivakkam', 'Mannivakkam', '2208090003', '1', '1', 'upload_files/candidate_tracker/27829064845_ragul.docx', NULL, '1', '2022-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance almost 54kms up and down will not run in a long show', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-09 09:58:59', 1, '2022-08-09 10:07:57', 0, NULL, 1),
(9749, 'Gopinath K', '2', '6374846404', '9626172667', 'gosopinath@gmail.com', '1999-02-16', 23, '2', '2', 'Kandhasamy V', 'Former', 4000.00, 1, 8000.00, 20000.00, 'Salem', 'Anna nagar', '2208090004', '1', '2', 'upload_files/candidate_tracker/47119260925_gopinathk.pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Exp is high not much stable with his previous exp  not much comfort with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-09 10:19:11', 1, '2022-08-09 10:43:35', 0, NULL, 1),
(9750, 'M.nithiya', '20', '8667574691', '9360864820', 'mnithya517@gmail.com', '1990-06-22', 32, '3', '1', 'Mahendran', 'Telecaller', 14000.00, 2, 13000.00, 15000.00, 'Thenampettai', 'Thenampet', '2208090005', '', '2', 'upload_files/candidate_tracker/69957003270_TapScanner 08-09-2022-10?45 (1).pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Long Career Gap Fresher to this domain age around 32 wil not run in a long show', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-09 10:35:59', 1, '2022-08-09 10:58:20', 0, NULL, 1),
(9751, 'Usharani.J', '4', '8939635689', '8248301614', 'Ushasunthari29@gmail.com', '2001-03-29', 21, '2', '2', 'Parent', 'Peller', 15000.00, 1, 0.00, 17000.00, 'Poonthamalli', 'Poonthamalli', '2208090006', '1', '1', 'upload_files/candidate_tracker/2299054650_resume.docx', NULL, '1', '2022-08-09', 0, '', '2', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expecting high salary and asking one month time to join need to try this month last week', '1', '1', '', '1', '3', '', '2', '2022-08-29', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-09 10:45:06', 85, '2022-08-09 01:36:51', 0, NULL, 1),
(9752, 'Karthick raja R', '23', '8098801454', '9994226521', 'karthickraja5598@gmail.com', '2007-08-09', 0, '2', '2', 'Ramesh m', 'Cooli', 22000.00, 1, 0.00, 20000.00, 'ARUPPUKOTTAI', 'ARUPPUKOTTAI', '2208090007', '1', '2', 'upload_files/candidate_tracker/29421547503_Karthick Raja_Resume.pdf', NULL, '1', '2022-08-09', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher kindly check and let me know your inputs', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-09 10:45:08', 1, '2022-08-09 10:53:29', 0, NULL, 1),
(9753, 'BALAKRISHNAN V', '4', '6374279757', '9003604825', 'balakrishtnj422@gmail.com', '2000-10-24', 21, '2', '2', 'Viji', 'Housewife', 20000.00, 1, 0.00, 15000.00, '11A MATHAVARAO NAGAR 1ST TREET N.K ROAD THANJAVUR', 'Thanjavur', '2208090008', '1', '1', 'upload_files/candidate_tracker/55265086360_BALA RESUME.pdf', NULL, '1', '2022-08-09', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-09 11:09:38', 92, '2022-08-09 12:12:06', 0, NULL, 1),
(9754, 'Kuralan', '4', '6385882862', '9080977522', 'kussikural23@gmail.com', '2000-03-23', 22, '2', '2', 'A.Ravichandran', 'Tea shop', 15000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2208090009', '1', '1', 'upload_files/candidate_tracker/5011379344_My resume _ CV - Jofibo.pdf', NULL, '1', '2022-08-09', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-09 11:09:57', 92, '2022-08-09 11:24:02', 0, NULL, 1),
(9755, 'nelson', '4', '9360883500', '', 'nk3579600@gamil.com', '2000-10-23', 21, '2', '2', 'rajakumar', 'railway', 200000.00, 2, 0.00, 12000.00, 'thajavur', 'thajavur', '2208090010', '1', '1', 'upload_files/candidate_tracker/64335737837_nelson.pdf', NULL, '1', '2022-08-09', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-09 11:24:18', 92, '2022-08-09 12:12:39', 0, NULL, 1),
(9756, 'Manimaran', '4', '7092610929', '', 'pjstylezz1997@gmail.cim', '1997-08-07', 25, '2', '2', 'Elumalai', 'Farmer', 1500.00, 2, 0.00, 13000.00, 'Chrompet', 'Chrompet', '2208090011', '1', '1', 'upload_files/candidate_tracker/56018613998_Resume for mani.doc', NULL, '1', '2022-08-09', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suit for sales... no convincing skill', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-09 12:19:53', 85, '2022-08-09 05:47:28', 0, NULL, 1),
(9757, 'Suruthi', '4', '9500745974', '9789668327', 'shruthiezhumalai2002@gmail.com', '2002-07-22', 20, '2', '2', 'Elumalai', 'Rice mill', 15000.00, 1, 0.00, 13000.00, 'Maduranthagam', 'Maduranthagam', '2208090012', '1', '1', 'upload_files/candidate_tracker/90236716781_suruthi.pdf', NULL, '1', '2022-08-09', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-09 12:20:09', 85, '2022-08-09 05:45:21', 0, NULL, 1),
(9758, 'vanaja', '4', '9884162486', '', 'vanajaelango2@gmail.com', '2002-03-20', 20, '2', '2', 'elango', 'tea shop', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2208090013', '1', '1', 'upload_files/candidate_tracker/34550664573_WhatsApp Image 2022-08-09 at 2.35.52 PM.pdf', NULL, '1', '2022-08-09', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Understanding...not suit for our process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-09 12:20:10', 85, '2022-08-09 05:42:55', 0, NULL, 1),
(9759, 'Sundar Chandrasekaran', '4', '9087643430', '', 'sundarc0102@gmail.com', '1998-12-01', 23, '3', '2', 'Chandrasekaran', 'Carpenter', 200000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2208090014', '', '1', 'upload_files/candidate_tracker/45213356215_SUNDAR CV .pdf', NULL, '1', '2022-08-09', 0, '', '1', '14', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-09 12:35:50', 1, '2022-08-09 12:39:57', 0, NULL, 1),
(9760, 'Dhivya Bharathi.R', '25', '8248639805', '8608278244', 'dhivyabharathi4508@gmail.com', '2001-11-15', 20, '2', '2', 'Sujatha R', 'Housekeeping', 8000.00, 2, 0.00, 15000.00, 'Korukkupet', 'Vysarpadi', '2208100001', '1', '1', 'upload_files/candidate_tracker/32813515220_Dhivya Bharathi.pdf', NULL, '1', '2022-08-10', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no idea about telesales... no Convincing  skill..   not suit for sales', '8', '2', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-10 09:45:48', 85, '2022-08-10 03:31:51', 0, NULL, 1),
(9761, 'D. Sangeetha', '20', '9150703338', '9003217569', 'sangeetha.adm12@gmail.com', '1995-07-18', 27, '2', '1', 'S.Sathyaraj', 'Salried', 30000.00, 0, 20000.00, 25000.00, 'Chennai', 'West mambalam', '2208100002', '1', '2', 'upload_files/candidate_tracker/17105871031_CURRICULAM VITAE 1.pdf', NULL, '3', '2022-11-22', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok have exp in backend but can give a try for B2B,only thing she is not much ok with Spencer  kindly check and let   us know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-10 09:53:30', 85, '2022-11-22 04:14:08', 0, NULL, 1),
(9762, 'N C SWARAPOORNIMA', '4', '6382139244', '7603824617', 'swarapoornima201@gmail.com', '2001-11-16', 20, '2', '2', 'N C BABU', 'Shutter machine', 9000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208100003', '1', '1', 'upload_files/candidate_tracker/97942350527_N C SWARAPOORNIMA.docxg.pdf', NULL, '1', '2022-08-10', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'average in convincing skill..voice too low .... will not handle pressure', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-10 10:19:46', 85, '2022-08-10 03:24:15', 0, NULL, 1),
(9763, 'Karthika', '6', '9384705383', '7305423174', 'karthuma21@gmail.com', '2002-03-21', 20, '1', '2', 'K.babu', 'Auto driver', 15000.00, 1, 0.00, 12000.00, 'Royapettah', 'Royapettah', '2208100004', '', '1', 'upload_files/candidate_tracker/42884693327_Resume_Karthika_Format7.pdf 1.pdf', NULL, '1', '2022-08-10', 0, 'P1287', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NO', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-10 10:20:09', 85, '2022-08-10 11:53:56', 0, NULL, 1),
(9764, 'D. Sangeetha', '25', '9003727916', '', 'sangeetha.adm12@gmail.com', '1995-07-07', 27, '2', '1', 'Sathyaraj. S', 'Central government', 30000.00, 1, 19000.00, 12000.00, 'T. Nagar', 'T. Nagar', '2208100005', '1', '2', 'upload_files/candidate_tracker/29491738131_pdfconverter202208101457.pdf', NULL, '1', '2022-08-10', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication .... Ok with sales xxamp Convincing Skills..  need to check sustainability...kindly check  and confirm', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-10 10:29:16', 85, '2022-08-10 12:14:44', 0, NULL, 1),
(9765, 'Yeshwanth', '4', '8072941091', '', 'ryeshwanth999@gmail.com', '1999-07-25', 23, '1', '2', 'M.Ramachandran', 'Eletrition', 15000.00, 1, 12000.00, 15000.00, 'Chennai,chetpet', 'chennai', '2208100006', '', '2', 'upload_files/candidate_tracker/45789890908_Document 4.pdf', NULL, '1', '2022-08-10', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-10 10:45:46', 1, '2022-08-10 12:31:58', 0, NULL, 1),
(9766, 'Abdul jaffar.m', '4', '9025321266', '8760129838', 'thahir78612@gmail.com', '2002-06-04', 20, '3', '2', 'Mohammed hussain', 'Tailor', 10000.00, 1, 0.00, 10000.00, '100/298, kollupettai street, kellavasal,thanjavur', '100/298, kollupettai street, kellavasal,thanjavur', '2208100007', '', '1', 'upload_files/candidate_tracker/53896896088_jaf res.pdf', NULL, '1', '2022-08-10', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-10 11:17:39', 1, '2022-08-10 11:29:43', 0, NULL, 1),
(9767, 'Ramadoss.A', '2', '9843754033', '7904136897', 'ramadoss9843@gmail.com', '1999-04-02', 23, '2', '2', 'Adhinarayanan', 'Former', 8000.00, 2, 0.00, 30000.00, 'Tindivanam', 'Chengalpattu', '2208100008', '1', '1', 'upload_files/candidate_tracker/90916574271_Ramadoss.A.doc', NULL, '2', '2022-08-10', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no understanding ... have Knowledge in html xxamp CSS ...presently Studying in besant technology... need to learn more ..no idea about react', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-10 12:02:15', 85, '2022-08-10 04:04:56', 0, NULL, 1),
(9768, 'Pavithra', '4', '8220789951', '9842592517', 'pavithra123merlin@gmail.com', '1999-06-07', 23, '1', '2', 'James muthu', 'Former', 8000.00, 2, 0.00, 10000.00, 'Thiruvallur', 'Thiruvallur', '2208100009', '', '1', 'upload_files/candidate_tracker/3130628631_IMG20220810123429.pdf', NULL, '1', '2022-08-10', 0, 'Jobs', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not selected', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-10 12:06:49', 85, '2022-08-10 03:15:07', 0, NULL, 1),
(9769, 'Devadharshini. G', '5', '9884960952', '9962933395', 'Devadharshini1001@gmail.com', '2001-06-04', 21, '2', '2', 'J. Ganapathy', 'electrician', 13000.00, 1, 15000.00, 20000.00, 'injambakkam', 'Injambakkam', '2208100010', '1', '2', 'upload_files/candidate_tracker/10800400939_Devadharshini.pdf', NULL, '1', '2022-08-10', 8, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'average in sales .... not much good in Convincing ...sal expt high ..will not suit for our telesales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-10 12:12:23', 85, '2022-08-10 03:14:14', 0, NULL, 1),
(9770, 'S gnana sekar', '6', '8946087929', '7305855320', 'sekarsathish1024@gmail.com', '1997-02-10', 25, '1', '2', 'Selvam k', 'Painter', 18000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai - moolakadai', '2208100011', '', '2', 'upload_files/candidate_tracker/53014409333_Sekar resume.docx.pdf', NULL, '1', '2022-08-10', 0, 'Jobs', '3', '59', '2022-08-12', 252000.00, '', '4', '2023-06-29', '2', 'Selected for Syed Team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-10 12:42:20', 60, '2022-08-11 03:50:04', 0, NULL, 1),
(9771, 'Akash s', '13', '9159903152', '', 'Akakvc@gmail.com', '1998-05-21', 24, '4', '2', 'Senthil kumar c', 'Teacher', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Velapanchavadi, ponammalle, chennai', '2208100012', '', '1', 'upload_files/candidate_tracker/87623975537_Akash web developer.pdf', NULL, '1', '2022-08-10', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Idea about PHP ...will not sustain', '2', '1', '', '4', '5', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-10 01:06:55', 85, '2022-08-10 01:33:00', 0, NULL, 1),
(9772, 'Gayathri.K', '4', '7358626177', '', 'gayathri8398@gmail.com', '1998-03-08', 24, '2', '2', 'K.Kumar', 'Stationary Business', 15000.00, 1, 180000.00, 200000.00, 'Chennai', 'Chennai', '2208100013', '1', '2', 'upload_files/candidate_tracker/52106836172_Resume (1).pdf', NULL, '1', '2022-08-10', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good communication ...ok with sales ... average in convincing skills.. sal expt too high ..will not sustain ...', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-10 01:27:03', 85, '2022-08-10 03:10:43', 0, NULL, 1),
(9773, 'Abdul Basith', '4', '8220609139', '7448623757', 'abdulbashik48@gmail.com', '1998-05-07', 24, '3', '2', 'Sri laky', 'Work', 40000.00, 1, 0.00, 15.00, 'Solinganallur', 'Medavakkam', '2208100014', '', '1', 'upload_files/candidate_tracker/83112094008__Template_1659165121656.pdf', NULL, '1', '2022-08-10', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not open up...will not suit for our process...', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-10 01:53:51', 85, '2022-08-10 03:09:01', 0, NULL, 1),
(9774, 'S . Shyam', '23', '8778230852', '', 'shyamsivakumar2@gmail.com', '2000-12-19', 21, '2', '2', 'B . SIVAKUMAR', 'Student', 10000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2208110001', '1', '1', 'upload_files/candidate_tracker/40779582465_CV.pdf', NULL, '1', '2022-08-11', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no understanding... need to learn lot...', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-11 09:49:34', 85, '2022-08-16 09:58:43', 0, NULL, 1),
(9775, 'PRAVEEN P', '4', '9025985136', '7448377687', 'palanipraveen10@gmail.com', '1991-05-25', 31, '2', '2', 'pappa P', 'OA @DISTRICT POLICE OFFICE TIRUVARUR', 25000.00, 1, 15000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2208110002', '1', '2', 'upload_files/candidate_tracker/6542887295_RESUME 2022.docx', NULL, '1', '2022-08-11', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-11 10:52:53', 92, '2022-08-11 11:06:29', 0, NULL, 1),
(9776, 'Aarthi', '4', '8248045930', '9047717644', 'aarthibaskar109@gmail.com', '2002-01-22', 20, '2', '2', 'Baskaran', 'Farmer', 10000.00, 2, 5000.00, 15000.00, '50/1nariyanpalayam', 'Pattukkottai', '2208110003', '1', '2', 'upload_files/candidate_tracker/84356002692_aarthi2022.docx', NULL, '1', '2022-08-11', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-11 11:03:35', 85, '2022-08-11 11:51:49', 0, NULL, 1),
(9777, 'vallal peruman v', '4', '9842149426', '', 'v.vallal1997@gmail.com', '1997-06-10', 25, '2', '2', 'vadivel', 'farmer', 12000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2208110004', '2', '1', 'upload_files/candidate_tracker/14058946049_vallal resume2.0.pdf', NULL, '1', '2022-08-11', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Understanding... not suit for our process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-11 11:15:47', 85, '2022-08-11 05:54:24', 0, NULL, 1),
(9778, 'Praveen kumar p', '4', '9626397998', '', 'praveenkumar1162000@gmail.com', '2002-04-03', 20, '3', '2', 'Parthiban.A', 'Farmer', 10000.00, 0, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2208110005', '', '1', 'upload_files/candidate_tracker/76510503030_praveen 2.pdf', NULL, '1', '2022-08-11', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-11 11:47:39', 1, '2022-08-11 12:10:38', 0, NULL, 1),
(9779, '', '0', '8220540422', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208110006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-11 11:54:19', 0, NULL, 0, NULL, 1),
(9780, 'U. Elavarasan', '4', '9360227488', '9944581293', 'elavarasanuk05@gmail.com', '2001-07-21', 21, '2', '2', 'R. Udhayakumar', 'Security', 9000.00, 1, 0.00, 13000.00, 'Thiruvannamalai, Vandavasi', 'Villivakkam, Chennai', '2208110007', '1', '1', 'upload_files/candidate_tracker/57926557336_Elavarasan Resume .docx', NULL, '1', '2022-08-11', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he will not suit for telesales...', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-11 12:24:57', 85, '2022-08-11 06:22:29', 0, NULL, 1),
(9781, 'K. pradeepkumar', '4', '9345138402', '9884105456', 'pradeepkumar.kdhanasekar.v@gmail.com', '1998-04-07', 24, '2', '2', 'K.kannan K.meena', 'Plumber', 30000.00, 1, 0.00, 10000.00, 'Villivakkam chennai', 'Villivakkam chennai', '2208110008', '1', '1', 'upload_files/candidate_tracker/46902512961_CV_2022070420060097.pdf', NULL, '1', '2022-08-11', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He Will Not Suit For Telesales...', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-11 12:25:12', 85, '2022-08-11 06:22:51', 0, NULL, 1),
(9782, 'Jayasurya K', '6', '8248236070', '', 'jsuryakk@gmail.com', '2000-07-19', 22, '2', '2', 'Kannan K', 'Technician', 20000.00, 1, 0.00, 275000.00, 'Mayiladuthurai', 'Tambaram sanatorium', '2208110009', '1', '1', 'upload_files/candidate_tracker/17733759664_jayasurya resume figma .pdf', NULL, '1', '2022-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate didnt turn back with his confirmation  not responding the calls\n', '5', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-11 04:41:37', 85, '2022-08-11 05:40:32', 0, NULL, 1),
(9783, 'Kelwin', '4', '8939982427', '', 'anukelwin@gmail.com', '2002-05-17', 20, '3', '2', 'Balajoji', 'Telecally', 100000.00, 1, 18000.00, 18000.00, 'Korukkupet', 'Korukkupet', '2208120001', '', '2', 'upload_files/candidate_tracker/64302357325_kelwin.pdf', NULL, '1', '2022-08-12', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suit For Telesales...long distance too', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-12 10:37:01', 85, '2022-08-13 12:19:02', 0, NULL, 1),
(9784, 'Abhishek P', '23', '9092240206', '7401153273', 'abhishekpunithan@gmail.com', '1998-08-05', 24, '3', '2', 'Punithan', 'State govt employee', 300000.00, 1, 0.00, 250000.00, 'Chennai', 'Chembarambakkam', '2208120002', '', '1', 'upload_files/candidate_tracker/28966605847_AbhiCV.pdf', NULL, '1', '2022-08-12', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'high salary expectation\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-12 10:44:02', 85, '2022-08-13 01:40:50', 0, NULL, 1),
(9785, 'ranjithkumar', '4', '9659104172', '', 'ranjithrs365@gmail.com', '1997-10-03', 24, '4', '2', 'thangavel', 'bussiness', 30000.00, 0, 0.00, 15000.00, 'tirupur', 'choolaimedu', '2208120003', '', '1', 'upload_files/candidate_tracker/2391813989_Ranjith Kumar Resume.docx', NULL, '3', '2022-08-12', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Interested in voice process and  not suit for our process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-12 10:56:57', 85, '2022-08-13 01:00:34', 0, NULL, 1),
(9786, 'Anija', '4', '8939982426', '', 'anijaanija899@gamil.com', '2001-04-04', 21, '3', '2', 'Abraham', '100000', 3.00, 3, 18000.00, 18000.00, 'Korukkupet', 'Korukkupet', '2208120004', '', '2', 'upload_files/candidate_tracker/72571789399_anija resume.pdf', NULL, '1', '2022-08-12', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for telesales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-12 11:05:36', 85, '2022-08-13 12:18:31', 0, NULL, 1),
(9787, 'Karthikeyan', '4', '7871311373', '8754518499', 'karthisubramaniyan33709@gmail.com', '2002-03-08', 20, '2', '2', 'Karpagam', 'NIL', 10.00, 0, 0.00, 12000.00, '10/55 Raju St , West Mambalam', '10/55 Raju St, West Mambalam', '2208120005', '1', '1', 'upload_files/candidate_tracker/30017800340_Karthikeyan resume.docx', NULL, '1', '2022-08-12', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for telesales..', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-12 11:32:33', 85, '2022-08-16 12:20:30', 0, NULL, 1),
(9788, 'Tamilselvan N', '13', '7094018645', '9843949673', 'tamilselvanant5@gmail.com', '1997-11-11', 24, '2', '2', 'Nithiyanantham', 'Job searching', 7000.00, 2, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2208120006', '1', '1', 'upload_files/candidate_tracker/5050005291_N. Tamilselvan Resume - Fresher.pdf', NULL, '1', '2022-08-12', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need To learn lot... Sustainability Doubt ....', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-12 11:36:37', 85, '2022-08-13 01:39:10', 0, NULL, 1),
(9789, 'celocious alltrin', '2', '8939401189', '', 'celouciousalltrinmf@gmail.com', '1999-12-15', 22, '2', '2', 'fraklin', 'teacher', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2208120007', '1', '1', 'upload_files/candidate_tracker/31405109225_Celocious Alltrin MF.pdf', NULL, '1', '2022-08-12', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good at skills... seems like no job Needs...not okay With  our TxxampC .. will not sustain ..', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-12 11:52:58', 85, '2022-08-13 12:14:54', 0, NULL, 1),
(9790, 'P.reddi prasad', '5', '7671040410', '', 'reddiprasad4612@gmail.com', '1997-01-03', 25, '1', '2', 'P Reddappa', 'Farmer', 15000.00, 1, 15000.00, 20000.00, 'Madanapalli', 'Bangalore', '2208120008', '', '2', 'upload_files/candidate_tracker/55655233389_Resume reddy.pdf', NULL, '1', '2022-08-12', 0, 'P1328', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-12 11:58:51', 1, '2022-08-12 12:13:19', 0, NULL, 1),
(9791, 'Prasanna', '4', '6383689762', '', 'prasannajeeva21@gmail.com', '1997-07-09', 25, '2', '2', 'Ragunathan', 'Farmers', 300000.00, 1, 12500.00, 13000.00, 'Thanjavur', 'Thanjavur', '2208120009', '1', '2', 'upload_files/candidate_tracker/38845210313_PRASANNA RESUME-converted (1).docx', NULL, '1', '2022-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-12 07:05:44', 85, '2022-08-13 10:58:38', 0, NULL, 1),
(9792, 'Premkumar', '31', '9345572923', '', 'premkumar93455@gmail.com', '2002-05-04', 20, '2', '2', 'RAMADASS G', 'Coolie', 35000.00, 1, 0.00, 15000.00, 'Perumbakkam', 'Perumbakkam', '2208130001', '1', '1', 'upload_files/candidate_tracker/46718986872_RESUME-1.pdf', NULL, '1', '2022-08-13', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'currently doing his1m  intern in react..  ... but he is not much good in react ..has more Interest  in DevOps...need to learn lot.... long distance too', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-13 09:44:18', 85, '2022-08-13 01:22:59', 0, NULL, 1),
(9793, 'MOHAMED IBRAHIM M', '31', '9500920916', '', 'mdibrahim3057@gmail.com', '1998-11-22', 23, '2', '2', 'NASARATH BEGAM M', 'HOME MAKER', 25000.00, 2, 0.00, 15000.00, '691/1 PUDHUMANAI STREET, POONTHOTTAM,THIRUVARUR', '1/32A BHARATHIDASAN ST,PSR NAGAR,PALAVAKKAM', '2208130002', '1', '1', 'upload_files/candidate_tracker/50456959427_Mohamed new frontend cv 10.3.22-1.pdf', NULL, '1', '2022-08-13', 0, '', '3', '59', '2022-08-23', 96000.00, '', '', '2022-10-12', '1', 'Selected for React Internship cum employment', '2', '1', '', '1', '1', '', '2', '2022-08-16', '1', '2', '2nd Kaviya Technical Round\n3rd round Gokul - Confirmed', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-13 10:21:37', 60, '2022-08-23 09:52:52', 0, NULL, 1),
(9794, 'MOHAMED SATHIK ALI S', '6', '7904593883', '', 'msasms3786@gmail.com', '1997-06-01', 25, '2', '2', 'FATHIMA', 'Administration', 90000.00, 2, 18000.00, 20000.00, 'ERODE', 'ERODE', '2208130003', '1', '2', 'upload_files/candidate_tracker/14630458142_SMS. A (CV) ....pdf', NULL, '1', '2022-08-13', 1, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-13 10:39:24', 85, '2022-08-13 10:59:03', 0, NULL, 1),
(9795, 'Gunaseelan E', '23', '8056207676', '7397490204', 'egunaseelan210@gmail.com', '1997-04-02', 25, '2', '2', 'Elumalai V', 'Business', 40000.00, 2, 15000.00, 20000.00, 'West Tambaram, Chennai', 'West Tambaram, Chennai', '2208130004', '1', '2', 'upload_files/candidate_tracker/20785093353_GunaResume - Frontend Developer.pdf', NULL, '1', '2022-08-13', 1, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Average communication ... but Has skills in uI developer. has 10m exp in uI developer ...reason for changing job learning xxamp sal hike... will not sustain  A long ... sal expt  also high...', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-13 10:57:04', 92, '2022-08-13 03:17:49', 0, NULL, 1),
(9796, 'Sabtha Rishi', '2', '8072197822', '8637429427', 'sabtharishi01@gmail.com', '2001-07-19', 21, '2', '2', 'Kanmani a', 'Nil', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2208130005', '1', '1', 'upload_files/candidate_tracker/22457335027_Resume_Sabtha_Rishi (3).pdf', NULL, '1', '2022-08-13', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication...not that much good in js ...seems like no job need .....will not sustain', '2', '1', '', '4', '6', '', '2', '2022-08-16', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-13 11:26:02', 85, '2022-08-18 11:07:29', 0, NULL, 1),
(9797, 'Akash B M', '6', '8608602529', '', 'Akashbm14@gmail.com', '1998-12-14', 23, '3', '2', 'Amudhavalli', 'House wife', 10000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2208130006', '', '2', 'upload_files/candidate_tracker/48078702905_Akash Resume.pdf', NULL, '1', '2022-08-13', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suit for sales.... voice too low', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-13 12:19:39', 85, '2022-08-13 01:35:35', 0, NULL, 1),
(9798, 'SURIYA M', '4', '6379261590', '9994723739', 'suriyachem27@gmail.com', '2000-03-27', 22, '2', '2', 'MARIMUTHU C', 'FARMERS', 10000.00, 1, 0.00, 12000.00, 'THANJAVUR', 'THANJAVUR', '2208130007', '1', '1', 'upload_files/candidate_tracker/84403528450_SURIYA M.pdf', NULL, '1', '2022-08-16', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-13 04:35:02', 85, '2022-08-16 10:03:36', 0, NULL, 1),
(9799, 'SRIRAM', '4', '9976646876', '7402437764', 'sriramrajn@gmail.cpm', '1994-10-25', 27, '4', '2', 'Nagaraj', 'Accountant', 40000.00, 1, 13500.00, 15000.00, '69, senkottayan nagar,vairapalay,erode', '69, senkottayan nagar, vairapalay,erode', '2208130008', '', '2', 'upload_files/candidate_tracker/95434069637_resume-1.pdf', NULL, '1', '2022-08-13', 1, '', '5', '13', NULL, 0.00, '', '0', NULL, '1', 'not suitable for tele sales', '1', '2', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-13 05:06:44', 1, '2022-08-13 05:18:23', 0, NULL, 1),
(9800, '', '0', '8940749654', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-14 06:56:24', 0, NULL, 0, NULL, 1),
(9801, '', '0', '9486092405', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208150001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-15 11:49:15', 0, NULL, 0, NULL, 1),
(9802, '', '0', '8838780180', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208150002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-15 09:52:19', 0, NULL, 0, NULL, 1),
(9803, 'Manikandan M', '23', '8056107482', '', 'manikandanvalli098@gmail.com', '1998-06-01', 24, '2', '2', 'Muthusamy', 'carpenter', 30000.00, 1, 0.00, 20000.00, '41 Karpagam Nagar ponniammanmedu chennai 600110', '41 Karpagam Nagar Ponniammanmedu Chennai 600110', '2208160001', '1', '1', 'upload_files/candidate_tracker/56475383875_Manikandan Resume.pdf', NULL, '1', '2022-08-16', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is not clear... has  Knowledge in front end developer... Sustainability doubts', '2', '1', '', '1', '1', '', '2', '2022-08-18', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-16 10:04:08', 85, '2022-08-18 09:48:42', 0, NULL, 1),
(9804, 'Krishna Priya k', '4', '9361968719', '', 'Priyakumar2171@gmail.com', '2000-01-28', 22, '2', '2', 'K.saroja', 'No', 10000.00, 4, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2208160002', '1', '1', 'upload_files/candidate_tracker/2677808727_krishna .pdf', NULL, '1', '2022-08-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped  - Parents are not ok with the profile', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 10:26:58', 85, '2022-08-16 11:28:59', 0, NULL, 1),
(9805, 'Karthika s', '4', '9361551346', '', 'Karthikakarthik182000@gmail.com', '2000-03-18', 22, '2', '2', 'S. Selvaraj', 'No', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2208160003', '1', '1', 'upload_files/candidate_tracker/62989159387_karthikaresume.pdf', NULL, '1', '2022-08-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped  - Plan to go in the core domain', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 10:27:14', 85, '2022-08-16 11:29:17', 0, NULL, 1),
(9806, 'Nathiya R', '5', '9940658434', '7397278238', 'smartnathiyar@gmail.com', '1999-12-08', 22, '2', '2', 'Ravichandran P', 'MTC Bus machanic', 100000.00, 1, 10719.00, 25000.00, 'CHENNAI', 'CHENNAI', '2208160004', '1', '2', 'upload_files/candidate_tracker/47714432307_Nathiya new resume.pdf', NULL, '1', '2022-08-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,have exp in non voice Much Focus on the salary Will not run in a long show', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 10:53:32', 85, '2022-08-16 11:09:10', 0, NULL, 1),
(9807, 'Dineshkumar D', '6', '9715047498', '', 'dineshcse1218@gmail.com', '1995-04-14', 27, '2', '2', 'Dhirumalai', 'Building worker', 5000.00, 1, 13000.00, 18000.00, 'Periyamanali', 'Periyamanali', '2208160005', '1', '2', 'upload_files/candidate_tracker/20542394791_DINESHKUMAR RESUME-Exp.pdf', NULL, '1', '2022-08-16', 10, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expecting high sal', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 10:55:52', 85, '2022-08-16 12:56:45', 0, NULL, 1),
(9808, 'C.siva shankari', '4', '8778139715', '9994728137', 'mahashiva2052002@gamil.com', '2002-05-20', 20, '2', '2', 'MurgaSelvi', 'Cooperative', 10000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2208160006', '1', '1', 'upload_files/candidate_tracker/51017759808_CV.pdf', NULL, '1', '2022-08-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 11:36:31', 85, '2022-08-16 06:46:26', 0, NULL, 1),
(9809, 'Sneha.H', '25', '8867135579', '8088092288', 'Snehaharish1999@gmail.com', '1999-01-14', 23, '1', '1', 'Naveen kumar', 'Driver', 20000.00, 0, 18000.00, 20000.00, 'Bangalore', 'Bangalore', '2208160007', '', '2', 'upload_files/candidate_tracker/20388363477_PDF 20220721_200748.pdf', NULL, '1', '2022-08-16', 0, 'P1328', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Shortlisted communication is good already worked in bpo real estate sales and receptionist in hotel \nPrevious salary 18k \nAsking for the same we can negotiate with her i told hr will call you regarding same', '8', '1', '', '2', '2', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-16 12:32:27', 60, '2022-08-16 05:26:33', 0, NULL, 1),
(9810, 'Savitha G', '6', '8072460575', '9600104203', 'savitha080502@gmail.com', '2002-05-08', 20, '1', '2', 'Gananpraksam T', 'Provision store', 50000.00, 1, 0.00, 12.00, 'Pudupet', 'Pudupet', '2208160008', '', '1', 'upload_files/candidate_tracker/51488503399_1660546068083_SAVITHA RESUM.docx', NULL, '1', '2022-08-16', 0, 'P1302', '3', '59', '2022-08-18', 156000.00, '', NULL, '2023-11-25', '2', 'Have 3 Months Exp 5050 Can Be Trained Kindly Check And Let Me Know Your Inputs', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-16 12:53:47', 60, '2022-08-17 05:07:10', 0, NULL, 1),
(9811, 'Shakthivel', '23', '8825656952', '8939757549', 'Shakthi7608@gmail.com', '1999-10-24', 22, '2', '2', 'R.Kolangiappan', 'Police', 50000.00, 1, 0.00, 10000.00, 'Teynampet', 'Teynampet', '2208160009', '1', '1', 'upload_files/candidate_tracker/64788763509_shakthivel resume.pdf', NULL, '1', '2022-08-17', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 3m intern exp ... no job need...  Sustainability doubts..', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 04:02:18', 85, '2022-08-17 12:15:57', 0, NULL, 1),
(9812, 'Krishnaveni. P', '4', '6381497583', '', 'Krishkrish476476@gmail.com', '2000-04-16', 22, '3', '2', 'N. Palaniyappan', 'Farmer', 20000.00, 2, 14000.00, 15000.00, 'Pallipalaiyam', 'Sillankadu', '2208160010', '', '2', 'upload_files/candidate_tracker/79578153944_krishnaveni.docx', NULL, '1', '2022-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-16 04:12:57', 1, '2022-08-16 04:18:24', 0, NULL, 1),
(9813, 'Sri Dhanush', '2', '9940996155', '9840287214', 'sdreddy1920@gmail.com', '2000-08-19', 21, '2', '2', 'Chandrasekaran V', 'Agriculture', 80000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2208160011', '1', '1', 'upload_files/candidate_tracker/64221644061_SRI DHANUSH_Resume.pdf', NULL, '1', '2022-08-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have a plan to go with full time masters just for an exp he is looking for job will not sustainxquot', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 04:24:08', 85, '2022-08-17 12:16:13', 0, NULL, 1),
(9814, '', '0', '6381487583', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-16 04:37:31', 0, NULL, 0, NULL, 1),
(9815, 'Vinothini', '13', '7824981107', '', 'vinothinikply@gmail.com', '2001-12-19', 20, '2', '2', 'Maheshwari', 'Tailor', 40000.00, 1, 0.00, 300000.00, 'Salem', 'Salem', '2208160013', '1', '1', 'upload_files/candidate_tracker/41882499983_VinothiniS_Resume.docx', NULL, '3', '2022-08-17', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not ok with our terms', '2', '2', '', '1', '1', '', '2', '2022-08-18', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 05:39:30', 85, '2022-08-16 06:46:09', 0, NULL, 1),
(9816, 'Gunasekaran', '23', '9751143913', '8248973068', 'gunapalani19@outlook.com', '2002-01-06', 20, '2', '2', 'Palani', 'Farmar', 50000.00, 0, 0.00, 10000.00, 'Thiruvannamalai', 'Chennai', '2208160014', '1', '1', 'upload_files/candidate_tracker/37383731138_Guna c#.pdf', NULL, '1', '2022-08-17', 0, '', '3', '59', '2022-08-22', 96000.00, '', '', '1970-01-01', '1', 'Internship + Employment', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 07:56:24', 85, '2022-08-17 12:30:53', 0, NULL, 1),
(9817, 'Gokulnath S', '2', '9789697257', '', 'gn98169@gmail.com', '1999-10-30', 22, '2', '2', 'Saravanan', 'Self employed', 20000.00, 1, 0.00, 2.60, 'Vellore', 'Chennai, Velachery', '2208170001', '1', '1', 'upload_files/candidate_tracker/95705447988_GOKULNATH_2021_B.E_MECHANICAL_FRONTEND.pdf', NULL, '1', '2022-08-17', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'From besant technologies ...not much good in skills.. need to learn ...', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-17 09:50:46', 97, '2022-08-17 06:51:22', 0, NULL, 1),
(9818, 'Saranraj M', '2', '9585916471', '', 'saranred565@gmail.com', '1998-05-17', 24, '2', '2', 'Murugesan A', 'Cooli', 10000.00, 2, 0.00, 2.60, 'Gandhi Nagar,padur,Ullunthur pet,Kallakurichi', 'Velachery,chennai', '2208170002', '1', '1', 'upload_files/candidate_tracker/86776508941_Saranraj Resume.docx', NULL, '1', '2022-08-17', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has some Theoretical knowledge in reactjs... so sNR but not much good  technical round so rejected by kaviya..', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-17 09:51:07', 85, '2022-08-17 10:21:55', 0, NULL, 1),
(9819, '', '0', '7418666102', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208170003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-17 09:57:44', 0, NULL, 0, NULL, 1),
(9820, 'Mohnish kumar', '13', '7418667102', '', 'mohnish101998@gmail.com', '1998-12-10', 23, '2', '1', 'Srinivasan', 'Tailor', 20000.00, 1, 0.00, 15000.00, '26 sadayappan lane, saidapet', '26, sadayappan lane, saidapet', '2208170004', '1', '1', 'upload_files/candidate_tracker/81320433875_mohnish resume 1.pdf', NULL, '1', '2022-08-17', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher can be trained 2nd round interviewed by Latha kindly check and let me know your inputs\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 09:58:47', 85, '2022-08-17 10:36:22', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9821, 'M.kurinjipavai', '4', '8667317067', '9952164293', 'kurinjipavai1998@gmail.com', '1998-06-13', 24, '4', '2', 'Murugan', 'Mechanic man', 30000.00, 1, 8000.00, 10000.00, '25, kancreat street,Pasur(po),pasur erode .', 'Erode', '2208170005', '', '2', 'upload_files/candidate_tracker/91560382705_kurinji RESUME.docx', NULL, '1', '2022-08-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Manager rejected - Wrongly updated\n', '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-17 10:09:57', 1, '2022-08-17 10:19:54', 0, NULL, 1),
(9822, 'Sankari', '23', '9094435959', '', 'sankarimanoeee@gmail.com', '1998-07-15', 24, '2', '2', 'Manoharan', 'Electrician', 30000.00, 1, 0.00, 35000.00, 'Erukkancherry', 'Erukkancherry', '2208170006', '1', '1', 'upload_files/candidate_tracker/85233697180_Sankari1.pdf', NULL, '1', '2022-08-17', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Average communication..... fresher to ui/ux designer but sal expt high ... long distance too', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-17 10:12:09', 92, '2022-08-18 05:49:31', 0, NULL, 1),
(9823, 'MERLIN. F', '25', '7338776069', '7358549615', 'merlinedwina2000@gmail.com', '2000-08-29', 21, '1', '2', 'Francis', 'CNC machine operator', 20000.00, 1, 15000.00, 17000.00, 'Chennai', '10th street valluvar nagar sithalapakkam', '2208170007', '', '2', 'upload_files/candidate_tracker/39896978213_MERLIN doc.docx', NULL, '1', '2022-08-17', 0, 'CI112', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 1yr exp in telecalling .. long distance .... have to check sustainability...', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-17 10:13:32', 97, '2022-08-17 06:48:58', 0, NULL, 1),
(9824, 'R. Umamaheswari', '5', '6379667171', '8608348531', 'Umamahi2299@gmail.com', '2001-04-25', 21, '1', '2', 'Ramesh', 'Electrician', 18000.00, 1, 15000.00, 17000.00, 'Mandaveli', 'Mandaveli', '2208170008', '', '2', 'upload_files/candidate_tracker/89400750702_resume..pdf', NULL, '1', '2022-08-17', 0, 'CI112', '3', '59', '2022-09-01', 204000.00, '', '3', '2022-10-03', '2', 'Selected for ESales Karthika Team Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-17 10:13:34', 60, '2022-08-25 04:26:28', 0, NULL, 1),
(9825, 'Kishore', '31', '9790872524', '', 'kishoreranganathan60@gmail.com', '2000-09-11', 21, '2', '2', 'L.Ranganathan', 'Business', 50000.00, 1, 0.00, 30000.00, '7/1 lalbahadur shastra Street Kanagam ch-113', '7/1 lalbahadur shastra Street kanagam ch-113', '2208170009', '1', '1', 'upload_files/candidate_tracker/28793316292_Kishore_cv.pdf', NULL, '1', '2022-08-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much comfort with TxxampC need time to confirm if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-17 10:26:49', 1, '2022-08-17 10:31:42', 0, NULL, 1),
(9826, 'Leelavathi', '2', '9566245323', '6369367015', 'leelavathi0121@gmail.com', '2001-05-21', 21, '2', '2', 'Ravi', 'Pharmacist', 30000.00, 1, 0.00, 10000.00, 'Teynampet', 'Teynampet', '2208170010', '1', '1', 'upload_files/candidate_tracker/5098009169_Leelavathi', NULL, '1', '2022-08-17', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate need to get trained 2nd round interviewed by Kaviya,if candidate comes back let us try', '2', '2', '', '1', '1', '', '2', '2022-08-24', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 10:33:30', 85, '2022-08-17 12:16:43', 0, NULL, 1),
(9827, 'SHARATH KUMAR', '4', '8220864687', '9080252756', 'snssharath304@gmail.com', '2000-04-03', 22, '4', '2', 'Dhanasekaran', 'Electrician', 200000.00, 0, 13000.00, 14000.00, 'Chennai', 'Chennai', '2208170011', '', '2', 'upload_files/candidate_tracker/86126915586_Sharath', NULL, '1', '2022-08-17', 0, '', '3', '59', '2022-08-18', 138948.00, '', '3', '2022-10-17', '2', 'Selected for Arumbakkam - Consultant Role', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-17 11:05:10', 60, '2022-08-17 05:05:12', 0, NULL, 1),
(9828, 'L. Jeevika', '11', '8939565913', '8682058140', 'jeevi063@gmail.com', '2001-06-09', 21, '3', '2', 'Lachiyavathi', 'Civil', 10000.00, 1, 0.00, 10000.00, 'No:100, pachaiappan street, Jafferkhanpett.', 'Chennai', '2208170012', '', '1', 'upload_files/candidate_tracker/6909573006_Jeevika resume.pdf', NULL, '1', '2022-08-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-17 11:34:37', 1, '2022-08-17 12:02:24', 0, NULL, 1),
(9829, 'R.RAJSRI', '11', '9150856194', '7448301515', 'rajsri04038@gmail.com', '2001-04-04', 21, '3', '2', 'S.RAJ', 'Kribhco', 20000.00, 2, 0.00, 10000.00, 'Madipakkam', 'Madipakkam', '2208170013', '', '1', 'upload_files/candidate_tracker/64417074014_rajsri resume-1.pdf', NULL, '1', '2022-08-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-17 11:34:50', 1, '2022-08-17 11:50:50', 0, NULL, 1),
(9830, '', '0', '6379173034', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208170014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-17 11:35:36', 0, NULL, 0, NULL, 1),
(9831, 'Thiyagu', '23', '8248973068', '9751143913', 'thiyagubaskaran359@gmail.com', '2002-06-15', 20, '2', '2', 'Baskaran', 'Farmar', 50000.00, 1, 0.00, 10000.00, 'Tiruvannamalai', 'Chennai', '2208170015', '1', '1', 'upload_files/candidate_tracker/6909604024_thiyagu Res.pdf', NULL, '1', '2022-08-17', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Final round interviewed by gokul profile on Hold candidate not seems to be much active', '2', '1', '', '1', '1', '', '2', '2022-08-25', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 11:37:27', 85, '2022-08-17 12:17:30', 0, NULL, 1),
(9832, 'Ajith', '4', '9842250806', '', 'Ajithfrank2002@gmail.com', '1996-02-17', 26, '2', '2', 'Jayabalan', 'Bussiness', 10000.00, 1, 0.00, 160000.00, 'Thanjavur', 'Thanjavur', '2208170016', '1', '1', 'upload_files/candidate_tracker/25120775841_AJITH RESUME.docx', NULL, '1', '2022-08-17', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for team and not suite for telesales high attitude', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-08-17 11:39:47', 1, '2022-08-17 01:31:43', 0, NULL, 1),
(9833, 'Komathi G', '11', '6360191697', '9360191697', 'sriramkomathi13@gmail.com', '2001-09-13', 20, '1', '2', 'Ganesh-Saraswathi', 'Tailer', 13500.00, 1, 0.00, 10000.00, 'No:1, Bharathi nagar main road ,Nesapakkam.', 'Chennai', '2208170017', '', '1', 'upload_files/candidate_tracker/18077373589_Resume_Komathi_Format1.pdf', NULL, '1', '2022-08-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-17 11:43:34', 1, '2022-08-17 11:46:20', 0, NULL, 1),
(9834, 'CAJETAN RAHUL', '31', '9791523186', '7448877165', 'cajetanrahul55555@gmail.com', '1999-10-30', 22, '2', '2', 'SIBI', 'Fisherman', 20000.00, 2, 0.00, 20000.00, 'Poothurai, Kanyakumari', 'Perungudi,Chennai', '2208170018', '1', '1', 'upload_files/candidate_tracker/98679926674_Resume_16_08_2022_12_26_57_pm.pdf', NULL, '1', '2022-08-17', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Have Interested in  python  ... no stability mind.. ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-17 11:47:43', 1, '2022-08-17 11:52:10', 0, NULL, 1),
(9835, 'Manokaran.M', '4', '9600238202', '9600238203', 'kumarsurya8133@gmail.com', '2001-09-20', 20, '3', '2', 'Manickadurai', 'Farmer', 12000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2208170019', '', '1', 'upload_files/candidate_tracker/39314260986_CV_2022071915201065.pdf', NULL, '1', '2022-08-17', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to give his confirmation', '1', '2', '', '1', '1', '', '2', '2022-08-22', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-17 12:17:30', 85, '2022-08-17 12:25:35', 0, NULL, 1),
(9836, 'Gokul', '6', '6381247561', '7448449454', 'krishg492@gmail.com', '1999-09-25', 22, '2', '2', 'Kumar.m', 'Driver', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2208170020', '25', '1', 'upload_files/candidate_tracker/9187198260_GOKUL RESUME.docx', NULL, '1', '2022-08-17', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-17 01:00:28', 60, '2022-08-17 07:16:24', 0, NULL, 1),
(9837, 'S. Kulothungan', '4', '8925204107', '8925205232', 'harihari66052@gamil.com', '2002-03-23', 20, '2', '2', 'T. Subramaniyan', 'Farmer', 18000.00, 2, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2208170021', '1', '1', 'upload_files/candidate_tracker/25972908898_kuloth resume.pdf', NULL, '1', '2022-08-18', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 03:05:31', 85, '2022-08-18 11:37:14', 0, NULL, 1),
(9838, 'Justine', '16', '6382722234', '', 'jjustine74970@gmail.com', '2000-05-23', 22, '2', '2', 'Jebamani', 'Home maker', 15000.00, 1, 15000.00, 17000.00, 'Chennai', 'Kottur', '2208170022', '1', '2', 'upload_files/candidate_tracker/69866979057_jjustine_resume exp_PG (1).pdf', NULL, '1', '2022-08-18', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 03:49:48', 85, '2022-08-18 09:31:05', 0, NULL, 1),
(9839, 'Divya sri T', '4', '9790262344', '7845052644', 'Navinkumarnavindivya@gmail.com', '2000-06-06', 22, '4', '1', 'Navin kumar M', 'Employee', 10000.00, 2, 8500.00, 10000.00, 'Erode', 'Erode', '2208170023', '', '2', 'upload_files/candidate_tracker/13518302267_PDFGallery_20220817_160900.pdf', NULL, '1', '2022-08-17', 0, '', '3', '59', '2022-08-19', 126312.00, '', '3', '2022-08-22', '2', 'Selected for Erode - Consultant Role', '1', '1', '1', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-17 04:00:36', 60, '2022-08-17 07:39:13', 0, NULL, 1),
(9840, 'deepak s', '16', '7448950410', '9551201471', 'deepaksachu1998@gmail.com', '1998-06-09', 24, '2', '2', 'sachuthanantham v', 'tailor', 20000.00, 1, 18000.00, 18000.00, 'oragadam', 'mugalivakkam', '2208170024', '1', '2', 'upload_files/candidate_tracker/38491835741_Deepak Resume New (1).pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication no,poor writing skills will not sustain and not suitable for our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 04:23:08', 85, '2022-08-18 09:31:21', 0, NULL, 1),
(9841, 'N.Pavithra', '6', '9363288688', '9715928501', 'pavikuttypk7@gmail.com', '1999-05-07', 23, '2', '2', 'K.natarajan', 'Marriage Broker', 15000.00, 1, 13000.00, 18000.00, 'Erode', 'Erode', '2208170025', '1', '2', 'upload_files/candidate_tracker/16187633547_Resume_01_08_2022_01_27_25_PM-1.pdf', NULL, '1', '2022-08-18', 3, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for telecalling sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 07:57:28', 85, '2022-08-18 01:16:41', 0, NULL, 1),
(9842, 'RAJASEKAR S R', '31', '8778454342', '', 'rajasekarsr2001@gmail.com', '2001-07-29', 21, '2', '2', 'Sivakumar.R', 'Field worker', 20000.00, 1, 0.00, 3.00, 'Tiruvannamalai , vandavasi', 'Tiruvannamalai, vandavasi', '2208180001', '1', '1', 'upload_files/candidate_tracker/43096159579_RAJASEKER IT RESUME.pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge in skills,Need to get trained a lot ongoing with the class need time to get learn with technnologies if he comes back let us try', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-18 09:57:22', 1, '2022-08-18 10:03:46', 0, NULL, 1),
(9843, 'VIJAYARAJ S', '2', '6385873946', '', 'vijayarajselladurai@gmail.com', '2001-04-26', 21, '2', '2', 'SELLADURAI R', 'Farmer', 15000.00, 2, 0.00, 4.00, 'Melapanchanallur, Cuddalore, Tamilnadu 608 301', 'MelapazhanchanallurCuddalore , Tamilnadu 608301', '2208180002', '1', '1', 'upload_files/candidate_tracker/35089196590_VIJAYARAJ IT RESUME.pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Knowledge In Skills,Need To Get Trained A Lot Ongoing With The Class Need Time To Get Learn With Technnologies If He Comes Back Let Us Try', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-18 09:57:51', 1, '2022-08-18 10:05:57', 0, NULL, 1),
(9844, 'R. Aravindhan', '2', '6385873437', '', 'aravindhan0811@gmail.com', '2002-01-24', 20, '2', '2', 'Rajendran . S', 'Farmer', 14000.00, 2, 0.00, 3.50, 'palanchanallur, kattumannarkoil, cuddalore-608301', 'palanchanallur, kattumannarkoil,cuddalore_608301', '2208180003', '1', '1', 'upload_files/candidate_tracker/92778436426_ARAVINDHAN IT RESUME.pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Knowledge In Skills,Need To Get Trained A Lot Ongoing With The Class Need Time To Get Learn With Technnologies If He Comes Back Let Us Try', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-18 09:57:51', 1, '2022-08-18 10:08:29', 0, NULL, 1),
(9845, '', '0', '9551201471', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208180004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-18 09:59:36', 0, NULL, 0, NULL, 1),
(9846, 'harbet stephenson', '31', '9994891095', '', 'stephenson86@gmail.com', '1986-03-25', 36, '2', '1', 'kiruba joy', 'it', 100000.00, 3, 0.00, 100000.00, 'chennai', 'chennai', '2208180005', '1', '1', 'upload_files/candidate_tracker/4927738893_Harbet Fullstack Resume.docx', NULL, '2', '2022-08-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-18 10:06:57', 92, '2022-08-19 09:54:37', 0, NULL, 1),
(9847, 'Arunkumar S', '31', '9790474529', '9080168396', 'arunkumaa6@gmail.com', '1999-10-26', 22, '2', '2', 'Muthumari S', 'farmer', 6000.00, 2, 0.00, 2.50, 'Sattur, Virudhunagar (dist)', 'Chennai, thoraipakkam', '2208180006', '1', '1', 'upload_files/candidate_tracker/74330662677_Arunkumar S_resume.pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not open up much Family need is there need time to check with his brother and confirm, if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-18 10:07:44', 1, '2022-08-18 10:26:25', 0, NULL, 1),
(9848, 'V.Dhamodharan', '5', '9176517125', '', 'vdhamodharanv@gmail.com', '2002-09-21', 19, '2', '2', 'D.venkatesan', 'Plumber', 27000.00, 2, 0.00, 17000.00, 'Pallavan salai', 'mylapore', '2208180007', '1', '1', 'upload_files/candidate_tracker/76009727251_Dhamodharan V Resume.pdf', NULL, '3', '2022-08-18', 0, '', '3', '59', '2022-08-22', 185000.00, '', '5', '1970-01-01', '1', 'Selected for Babu Team - staff Role', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-18 10:22:18', 60, '2022-08-20 05:52:06', 0, NULL, 1),
(9849, 'M.Gayathri', '4', '9943269744', '8610156391', 'sweetygayu03@gmail.com', '2001-10-30', 20, '2', '2', 'r.mathiyazhagan', 'farmer', 7000.00, 1, 0.00, 12000.00, 'New street nadukkavery,thiruvaiyaru(t.k),', 'new street nadukkavery,thiruvaiyaru(t.k)', '2208180008', '1', '1', 'upload_files/candidate_tracker/31876915948_Gayathri.docx', NULL, '1', '2022-08-18', 0, '', '3', '59', '2022-08-22', 126312.00, '', '4', '2022-11-01', '2', 'Selected for Thanjavur  - Consultant Role - 1 hr travel need to check her sustainability', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-18 10:39:38', 60, '2022-08-20 10:29:33', 0, NULL, 1),
(9850, 'D.THEEPTHI', '4', '7010307385', '9786663084', 'theepthidcsc@gmail.com', '2001-08-08', 21, '2', '2', 'S.DHANABAL', 'Farmer', 5000.00, 1, 0.00, 12000.00, 'VADUVUR THENPATHI', 'VADUVUR THENPATHI', '2208180009', '1', '1', 'upload_files/candidate_tracker/65314698058_Theepthi-2.docx', NULL, '1', '2022-08-18', 0, '', '3', '59', '2022-08-22', 126312.00, '', '3', '2022-10-03', '2', 'Selected for thanjavur Location - Consultant Role', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-18 10:41:38', 60, '2022-08-20 10:13:20', 0, NULL, 1),
(9851, 'Jeeva', '6', '9385374403', '', 'lovelyjeevaj@gmail.com', '2001-04-15', 21, '1', '2', 'Mathiyalagan', 'Home business', 70000.00, 1, 0.00, 15000.00, 'Chithode', 'Chithode', '2208180010', '', '1', 'upload_files/candidate_tracker/93923896915_Jeeva-WPS Office.docx', NULL, '1', '2022-08-18', 0, 'P1352', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'not suitable for sales', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-18 11:18:03', 1, '2022-08-18 11:23:12', 0, NULL, 1),
(9852, 'Sathish D', '31', '7418557265', '', 'sathish19981127@outlook.com', '1998-11-27', 23, '2', '2', 'Devakumar.K', 'Business', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2208180011', '1', '1', 'upload_files/candidate_tracker/44732052797_SathishResume.pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not showing much interest on the jobs due to family pressure on the job he is looking for a job not much active', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-18 11:23:33', 92, '2022-08-18 11:38:48', 0, NULL, 1),
(9853, 'Poovizhi', '4', '9566952587', '7358852587', 'Poovizhiajith@gmail.com', '2000-06-24', 22, '3', '2', 'Vengatesh', 'Daily wager', 20000.00, 2, 9000.00, 10000.00, 'Bhavani', 'Bhavani', '2208180012', '', '2', 'upload_files/candidate_tracker/49872888562_poovizhi RResume.doc', NULL, '1', '2022-08-18', 0, '', '3', '59', '2022-08-22', 126312.00, '', '3', '2022-08-22', '2', 'Selected for Elite - Erode Location', '1', '1', '1', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-18 11:49:39', 60, '2022-08-18 07:02:20', 0, NULL, 1),
(9854, 'M.vichithra', '4', '9345379892', '9159452684', 'vichithraviji526@gmail.com', '2001-11-01', 20, '3', '2', 'M.uma', 'Agriculture', 60000.00, 1, 0.00, 10000.00, '41,perumal kovil street Ambathumelnagaram', '41 perumal kovil street ambathumelnagaram', '2208180013', '', '1', 'upload_files/candidate_tracker/29300740411_CV_2022070214521433.pdf', NULL, '1', '2022-08-18', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-18 11:49:54', 1, '2022-08-18 12:02:13', 0, NULL, 1),
(9855, 'G.dhivya', '4', '8825431899', '9787655357', 'Divigajendran5357@gmail.com', '2002-01-12', 20, '3', '2', 'S.gajendran', 'Agriculture', 60000.00, 2, 0.00, 10000.00, 'South Street allur(613101)', 'South Street allur(610101)', '2208180014', '', '1', 'upload_files/candidate_tracker/3083093527_G.dhivya.pdf', NULL, '3', '2022-08-18', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'unfit', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-18 11:50:44', 1, '2022-08-18 12:15:37', 0, NULL, 1),
(9856, 'Bharath', '2', '7339518948', '', 'Barathakash733@gmail.com', '2001-03-18', 21, '2', '2', 'Ganaprakash', 'Electrician', 180000.00, 1, 0.00, 3000000.00, 'Chennai', 'Chennai', '2208180015', '1', '1', 'upload_files/candidate_tracker/43338481089_Barath CV.pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open a lot not open with TxxampC Salary Exp is high not suitable for our roles', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-18 12:54:02', 1, '2022-08-18 01:04:20', 0, NULL, 1),
(9857, 'k. hari Prakash', '4', '9524883834', '', 'harisathish2001@gmail.com', '2001-05-07', 21, '2', '2', 'D. saravanan', 'Ro purified', 15000.00, 0, 0.00, 15000.00, 'Mannargudi', 'Mannargudi', '2208180016', '1', '1', 'upload_files/candidate_tracker/19495577091_RESUME 3333.pdf', NULL, '1', '2022-08-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-18 02:37:56', 85, '2022-08-18 02:47:55', 0, NULL, 1),
(9858, '', '0', '9442566592', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208180017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-18 04:03:37', 0, NULL, 0, NULL, 1),
(9859, '', '0', '9585477916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208180018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-18 04:09:31', 0, NULL, 0, NULL, 1),
(9860, 'Archanamurugan', '16', '9159019370', '7708990887', 'archanacivil00@gmail.com', '2000-06-03', 22, '2', '2', 'M. Pappu', 'Farmer', 2.00, 1, 0.00, 12.00, 'Vellore', 'Chennai', '2208180019', '1', '1', 'upload_files/candidate_tracker/53421648371_Archana Murugan Resume.pdf', NULL, '1', '2022-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communicaiton not open for Sales not suits for MIS roles will not sustain and handle our pressure\n', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-18 04:59:06', 85, '2022-08-19 10:37:43', 0, NULL, 1),
(9861, 'N.priyadharshini', '4', '9342037743', '', 'Priyanagendran2001@gmail.com', '2000-05-12', 22, '2', '2', 'G.Nagendran', 'Telecalling', 45000.00, 3, 9000.00, 11000.00, 'Papanasam', 'Papanasam', '2208180020', '1', '2', 'upload_files/candidate_tracker/25103671551_Priya Resume.pdf', NULL, '1', '2022-08-19', 0, '', '3', '59', '2022-09-01', 138000.00, '', '', '2022-09-05', '2', 'Selected for Thanjavur Location - Consultant Role,thinking a lot on the target', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-18 05:08:35', 60, '2022-08-20 03:59:36', 0, NULL, 1),
(9862, '', '0', '6381231766', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208180021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-18 06:33:50', 0, NULL, 0, NULL, 1),
(9863, 'Prasanna Kumar K', '16', '9344255155', '', 'veerabhathranprasanna9876@gmail.com', '1998-10-07', 23, '2', '2', 'Kandhasamy', 'Data maintenance', 65000.00, 1, 12000.00, 18000.00, 'Trichy', 'Chennai', '2208180022', '1', '2', 'upload_files/candidate_tracker/51341247831_Prasannakumar_IT_resume.pdf', NULL, '2', '2022-08-19', 60, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-18 09:49:10', 85, '2022-08-19 10:04:57', 0, NULL, 1),
(9864, 'Nivedha.s', '4', '8870408654', '', 'nivedhasiva94@gmail.com', '1998-02-10', 24, '2', '2', 'Visagaselvi.s', 'Tellecaller', 45000.00, 3, 9000.00, 11000.00, 'Papanasam', 'Papanasam', '2208190001', '1', '2', 'upload_files/candidate_tracker/89533604664_MY RESUME NIVEDHA PDF.pdf', NULL, '1', '2022-08-19', 0, '', '3', '59', '2022-09-01', 138000.00, '', '', '2022-09-19', '2', 'Selected for Thanjavur Elite - Consultant Role', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-19 09:44:11', 60, '2022-08-26 03:24:33', 0, NULL, 1),
(9865, 'M Nanthakumar', '22', '6384122598', '6382912006', 'msnkumar1503@gmail.com', '2001-03-15', 21, '1', '2', 'murugesan', 'father', 10000.00, 1, 0.00, 15000.00, 'north street North ayvoipulipatti tenkasi', 'saidapet', '2208190002', '', '1', 'upload_files/candidate_tracker/96854704551_0_nanthu res10-converted (1).pdf', NULL, '1', '2022-08-19', 0, 'p1321', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication no basic ideas in Digital not suitable \n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-19 10:02:29', 1, '2022-08-19 10:11:59', 0, NULL, 1),
(9866, 'SULTHAN SEYED IBRAHIM KABEER S A', '11', '9381070421', '', 'kabeersulthan50@gmail.com', '2000-06-29', 22, '2', '2', 'SHAJAHAN ALI S A', 'BUSINESS', 50000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2208190003', '1', '1', 'upload_files/candidate_tracker/24585666487_414b0ae1-92bf-4812-95bf-621efdeff409.pdf', NULL, '1', '2022-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much strong with thbasics in hiring,will not run in a long show Family need is not much Sustainability doubts', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-19 10:13:34', 92, '2022-08-19 10:31:50', 0, NULL, 1),
(9867, 'Viswanathan', '4', '9789403303', '6369282355', 'govindvichu04@gmail.com', '2001-10-04', 20, '3', '2', 'Govindan', 'No', 40000.00, 2, 0.00, 15000.00, 'Pudur', 'Pudur', '2208190004', '', '1', 'upload_files/candidate_tracker/79268041542_vichu resume.docx', NULL, '1', '2022-08-19', 0, '', '3', '59', '2022-08-22', 132000.00, '', '5', '1970-01-01', '2', 'Selected for Arumbakkam  - Consultant Role', '1', '2', '1', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-19 10:21:17', 60, '2022-08-19 03:24:04', 0, NULL, 1),
(9868, 'Deepak S', '4', '8825849371', '8248221962', 'deepaksri8825@gmail.com', '2002-05-25', 20, '2', '2', 'Malathi S', 'Housekeeping', 17000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2208190005', '1', '1', 'upload_files/candidate_tracker/94728459165_Deepak S (3).pdf', NULL, '1', '2022-08-19', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for telesales', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-19 10:27:34', 92, '2022-08-19 11:12:00', 0, NULL, 1),
(9869, 'Mohideen Abdul rishwan', '2', '8610760684', '', 'Mohideenbca21@gmail.com', '2000-08-22', 21, '2', '2', 'Rahamathulla', 'Security', 25000.00, 2, 0.00, 350000.00, 'Chennai', 'Chennai', '2208190006', '1', '1', 'upload_files/candidate_tracker/4580046174_mohideen fresh.pdf', NULL, '1', '2022-08-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'up and down 34kms need time to confirm if he comes back let us try for React', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-19 11:23:31', 1, '2022-08-19 11:52:08', 0, NULL, 1),
(9870, 'Afrose banu', '4', '8610819818', '', 'afrose0809@gmail.com', '2000-02-09', 22, '2', '2', 'Plureakhan', 'Farmer', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2208190007', '2', '1', 'upload_files/candidate_tracker/94494708014_afrose banu RS.pdf', NULL, '1', '2022-08-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much open up even though asked her to wait for 2nd round but she left', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-19 11:27:15', 1, '2022-08-19 11:29:13', 0, NULL, 1),
(9871, 'Amar jothi j', '2', '8939293716', '', 'jamarjothi1@gmail.com', '2000-04-02', 22, '2', '2', 'Jesudoss s', 'Driver', 12000.00, 2, 0.00, 10000.00, 'Pallikaranai,chennai.', 'Pallikaranai,Chennai.', '2208190008', '1', '1', 'upload_files/candidate_tracker/3405229154_Amar jothi.pdf', NULL, '1', '2022-08-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Final Round reject by Gokul Will not sustain not much active', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-19 11:50:40', 1, '2022-08-19 11:58:14', 0, NULL, 1),
(9872, 'Nandha kumar. L', '6', '9976039910', '7092078989', 'Nandhakumarnk1510@gmail.com', '1999-10-15', 22, '2', '2', 'Radha. L', 'Agriculture', 10000.00, 1, 0.00, 15000.00, 'Sankagiri', 'Sankagiri', '2208190009', '1', '1', 'upload_files/candidate_tracker/86464721469_nandhakumar resume.pdf', NULL, '1', '2022-08-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested in sales.. discuss with family', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-19 11:53:52', 85, '2022-08-19 12:32:17', 0, NULL, 1),
(9873, 'Akash V', '6', '7010416265', '9788765155', 'akashkingg@gmail.com', '1999-11-17', 22, '2', '2', 'Velmurugan', 'Agriculture', 10000.00, 1, 0.00, 18000.00, 'Erode', 'Erode', '2208190010', '1', '1', 'upload_files/candidate_tracker/72895636038_Akash Resume .docx', NULL, '1', '2022-08-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not interested in sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-19 11:54:37', 85, '2022-08-19 12:05:18', 0, NULL, 1),
(9874, 'THIYAGARAJAN k', '5', '8122456299', '', 'thiyagarajanr1992@gmail.com', '1992-10-10', 29, '4', '1', 'Sankareswari', 'House wife', 43000.00, 1, 41000.00, 60000.00, 'Chennai', 'Mogappair', '2208190011', '', '2', 'upload_files/candidate_tracker/58104042365_Resume - thiyagarajan.pdf', NULL, '1', '2022-08-19', 15, '', '3', '59', '2022-09-01', 580000.00, '', '7', '1970-01-01', '1', 'Gaurav sir got appproval for the candidate from Suresh sir with the condition of giving 20K hike round of 6 LPA  if he achieve the target of 3.5L within Sept 2022', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-19 12:03:44', 60, '2022-08-27 03:02:46', 0, NULL, 1),
(9875, 'salman khan', '5', '8124577667', '8939445647', 'salmansallu875@gmail.com', '1999-12-22', 22, '2', '2', 'mohamed alikhan', 'exu', 10000.00, 0, 12000.00, 15000.00, 'moolakadai', 'Moolakadai', '2208190012', '1', '2', 'upload_files/candidate_tracker/49432767100_Biodata - Salman Khan.pdf', NULL, '1', '2022-08-19', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'ok', '5', '1', '', '1', '1', '', '2', '2022-08-20', '2', '1', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-19 12:06:45', 60, '2022-08-20 07:01:59', 0, NULL, 1),
(9876, 'noor mohamed', '5', '9176278771', '7010728693', 'noornm7864321@gmail.com', '1998-11-13', 23, '2', '2', 'mohamed yunus', 'auto driver', 15000.00, 1, 0.00, 15000.00, 'moolakadai', 'moolakadai', '2208190013', '1', '1', 'upload_files/candidate_tracker/51262967610_Resume of Noor Mohamed.pdf', NULL, '1', '2022-08-19', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no', '5', '1', '', '1', '1', '', '2', '2022-08-20', '2', '1', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-19 12:06:46', 60, '2022-08-20 07:02:23', 0, NULL, 1),
(9877, 'Vasanthasena', '4', '9025357739', '6381830912', 'vasanthasenavasanthasena497@gmail.com', '2001-01-07', 21, '1', '2', 'Subramaniyam', 'Gun man', 15000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2208190014', '', '1', 'upload_files/candidate_tracker/14555777915_VASANTHA SENA.S-B.TECH-IT.pdf', NULL, '1', '2022-08-19', 0, 'CI135', '3', '59', '2022-08-22', 126312.00, '', '4', '2022-12-01', '2', 'Selected for Erode - Muthu Team Consultant. Seems not much active need to check with her sustainability', '1', '2', '1', '4', '7', '1', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-19 12:17:21', 60, '2022-08-20 03:44:51', 0, NULL, 1),
(9878, '', '0', '9940384320', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208190015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-19 01:07:56', 0, NULL, 0, NULL, 1),
(9879, 'G.viveka', '16', '9176591138', '', 'vivegndk@gmail.com', '2000-11-13', 21, '2', '2', 'G.Ganesh Kumar', 'Airport authority of India retirement', 20000.00, 2, 0.00, 15000.00, 'No:3/25d Ponniamman Koil Street.', 'Pallavaram, Chennai -600043', '2208190016', '1', '1', 'upload_files/candidate_tracker/73531336996_Viveka resume 1 (1).pdf', NULL, '1', '2022-08-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No understanding capacity will not handle our pressure not openfor taking calls', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-19 03:04:04', 85, '2022-08-19 04:46:00', 0, NULL, 1),
(9880, '', '0', '8848521153', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208190017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-19 04:08:54', 0, NULL, 0, NULL, 1),
(9881, 'Pradeeshkumar.A', '16', '6383027892', '7358599424', 'pradeeshkumarggg@gmail.com', '1994-12-23', 27, '2', '1', 'Priyanka', 'Teacher', 30000.00, 1, 18500.00, 20000.00, 'Chennai', 'Chennai', '2208190018', '1', '2', 'upload_files/candidate_tracker/18710500508_A.PRADEESH KUMAR-2.docx', NULL, '1', '2022-08-20', 0, '', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'checked his knowledge in MIS.\n50% ok with his communication .', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-19 05:17:27', 85, '2022-08-20 10:22:52', 0, NULL, 1),
(9882, 'Gayathri subaschandrabose', '11', '9944069651', '', '16106030.ece@gmail.com', '1998-10-30', 23, '2', '2', 'subaschandrabose', 'recruiter', 80000.00, 1, 20000.00, 30000.00, 'theni', 'chennai', '2208190019', '1', '2', 'upload_files/candidate_tracker/62986692430_Gayathri updatedresume (1) (1).pdf', NULL, '2', '2022-08-20', 20, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-19 10:43:30', 1, '2022-08-20 09:56:45', 0, NULL, 1),
(9883, 'Vimal', '31', '9600408017', '', 'vimalselvam3@gmail.com', '1997-11-06', 24, '2', '2', 'Selvaraj', 'Labour', 30000.00, 1, 2.40, 4.50, 'Kumbakonam', 'Kumbakonam', '2208200001', '1', '2', 'upload_files/candidate_tracker/4100381711_vimal resume (1).pdf', NULL, '1', '2022-08-20', 60, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-20 09:47:40', 1, '2022-08-20 09:50:28', 0, NULL, 1),
(9884, 'Sivabala Moorthy T', '16', '7299109910', '9841438490', 'tsbmsiva35@gmail.com', '1998-09-28', 23, '2', '2', 'Thanga Kumar D', 'Daily wages', 20000.00, 1, 15000.00, 18000.00, 'Pattabiram', 'Pattabiram', '2208200002', '1', '2', 'upload_files/candidate_tracker/75874760440_Sivabala Moorthy.pdf', NULL, '1', '2022-08-20', 0, '', '5', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very poor communication . has knowledge in Excel !', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-20 10:19:00', 92, '2022-08-20 10:35:22', 0, NULL, 1),
(9885, 'Tendilkar E', '23', '7358304066', '', 'etendilkar2111@gmail.com', '1997-11-21', 24, '2', '2', 'Elumalai', 'Working as supervisor', 30000.00, 2, 20000.00, 30000.00, 'Chennai', 'Chennai', '2208200003', '1', '2', 'upload_files/candidate_tracker/99138697201_Tendilkar E.pdf', NULL, '1', '2022-08-20', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1 yr exp in uiux  and his current salary is 20KTH,Distance need to focus he is from Tambaram not open with TxxampC Will not sustain in a long run', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-20 10:24:14', 92, '2022-08-20 10:38:21', 0, NULL, 1),
(9886, 'Balaji', '16', '9003227426', '', '20balajis@gmail.com', '2001-12-15', 20, '2', '2', 'Selvamani', 'Private company', 15000.00, 1, 0.00, 15000.00, 'Madhavaram', 'Madhavaram', '2208200004', '1', '1', 'upload_files/candidate_tracker/91972916282_balaji resume-2.docx', NULL, '1', '2022-08-20', 0, '', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher - Interested to learn, good self confident  ,', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-20 10:51:28', 98, '2022-08-20 06:52:37', 0, NULL, 1),
(9887, 'Subin', '5', '8220475893', '', 'subin2000152@gmail.com', '2000-02-15', 22, '2', '2', 'Vinitha', 'HouseWife', 20000.00, 2, 0.00, 15000.00, 'Kanyakumari', 'Chennai', '2208200005', '1', '1', 'upload_files/candidate_tracker/65454637752_SUBIN', NULL, '1', '2022-08-20', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'ok', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-20 10:57:20', 60, '2022-08-20 06:43:02', 0, NULL, 1),
(9888, 'Santhanakrishnan', '26', '9514198528', '', 'kichaminism@gmail.com', '2000-05-29', 22, '2', '2', 'Sampath.j', 'Tailor', 8000.00, 0, 15000.00, 18000.00, 'Saidapet', 'Saidapet', '2208200006', '1', '2', 'upload_files/candidate_tracker/91656378171_Santhanakrishnan resume.pdf', NULL, '1', '2022-08-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No  communication,have exp in Justdial Sales but not interested to go again,checked for other roles in operations but not open with TxxampC,will not handle the work pressure', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-20 11:26:40', 92, '2022-08-20 11:50:58', 0, NULL, 1),
(9889, 'kiranprasath', '4', '8870322206', '6380782606', 'kiranprasath222@gmail.com', '2000-06-22', 22, '1', '1', 'kumrasen', 'Government bus conductor', 30000.00, 1, 0.00, 15000.00, 'bhavani', 'bhavani', '2208200007', '', '2', 'upload_files/candidate_tracker/59494284965_Resume.doc', NULL, '1', '2022-08-20', 0, '', '3', '59', '2022-08-24', 151584.00, '', '', '2022-09-05', '1', 'Selected for Erode- Muthu Team Consultant Role  Focus on the salary much family need is there', '1', '1', '1', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-20 11:29:59', 60, '2022-08-20 05:15:58', 0, NULL, 1),
(9890, 'S.Parthipan', '6', '6369922610', '9585186331', 'Civilparthi697@gmail.com', '1995-09-19', 26, '1', '2', 'Subramaniyan', 'Civil engineer', 20000.00, 1, 15.00, 20.00, 'Perambalur', 'Mgr Nagar Chennai', '2208200008', '', '2', 'upload_files/candidate_tracker/3013143150_parthipan resume1.pdf', NULL, '1', '2022-08-20', 0, 'CA130', '3', '59', '2022-09-01', 219600.00, '', '4', '2023-01-19', '2', 'Have Exp But No Sustainability In His Previous Exp,Bit Attitude Issue Internal Team Reference Salary Exp Is High Kindly Check And Let Me Know Your Inputs , Candidate submitted the fake document ,also he accepted the same.Need to analyse his performance  and decide the candidate in 7 days training', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-20 11:40:58', 60, '2022-08-29 05:06:33', 0, NULL, 1),
(9891, '', '0', '9514298528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-20 11:44:37', 0, NULL, 0, NULL, 1),
(9892, 'Saravanan. C', '11', '9790847738', '7092526805', 'mrthanos668@gmail.com', '1999-12-02', 22, '2', '2', 'Jothilakshmi. C', 'Cooking', 25000.00, 2, 0.00, 2.50, 'No', 'No. 28/18 kandhaswamy kovil street purasaiwakkam', '2208200010', '1', '1', 'upload_files/candidate_tracker/90484465062_SARAVANAN', NULL, '1', '2022-08-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok Salary expectation is high being a fresher,holding 2 offers with Ramsol and six sigma,will not join and sustain with us focus much on the salary\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-20 11:55:46', 85, '2022-08-20 12:06:02', 0, NULL, 1),
(9893, '', '0', '9360999297', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208200011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-20 06:15:37', 0, NULL, 0, NULL, 1),
(9894, 'Ezhumalai', '23', '8754305360', '9003817675', 'ezhumalaip107@gmail.com', '2002-09-11', 19, '3', '2', 'Perumal', '.', 100000.00, 0, 0.00, 17000.00, 'KALLAKURUCHI DT', 'KALLAKURUCHI DT', '2208220001', '', '1', 'upload_files/candidate_tracker/66913219075_elumalai(1).pdf', NULL, '1', '2022-08-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open a lot not much good in skills theoritically says only practical but not seems to be ok.Given him time to learn  if he comes back let us try', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-22 10:03:48', 1, '2022-08-22 10:49:06', 0, NULL, 1),
(9895, 'VijayKanth', '5', '8125870680', '9677140200', 'herovijay88@gmail.com', '1988-01-19', 34, '1', '1', 'Rubi', 'House wife', 10000.00, 1, 540000.00, 7.00, 'Chennai', 'Chennai', '2208220002', '', '2', 'upload_files/candidate_tracker/4885546597_vijaykanth,july 13th sep updated.doc', NULL, '1', '2022-08-22', 0, '55585', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shortlisted, but he Didnxquott respond to any calls and sms, Donxquott hire him in future also ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-22 11:09:43', 60, '2022-08-22 06:49:37', 0, NULL, 1),
(9896, 'R. Vijaya kumar', '16', '9042762678', '9566209599', 'Vijayakumsr2071998@gmail.com', '1998-07-20', 24, '2', '2', 'L. Rajendran', 'Taxi driver', 60000.00, 1, 24000.00, 24000.00, 'Chennai', 'Chennai', '2208220003', '1', '2', 'upload_files/candidate_tracker/71269697011_R.vijayakumar.pdf', NULL, '1', '2022-08-22', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no Communication not comfort with TxxampC Pushed him for sales but not much comfort will not sustain and handle our sales pressure', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-22 11:10:25', 85, '2022-08-22 12:29:08', 0, NULL, 1),
(9897, 'Sudarmani V', '31', '6383531430', '', 'sudarmanivv@gmail.com', '2001-02-01', 21, '2', '2', 'Venkatachalam R', 'Farmer', 12000.00, 1, 0.00, 20000.00, 'Tiruvannamalai', 'Perungalathur', '2208220004', '1', '1', 'upload_files/candidate_tracker/85690272244_Sudarmani_resume.pdf', NULL, '1', '2022-08-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much active need time to confirm on txxampC Will not sustain in a long run', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-22 11:40:16', 85, '2022-08-23 11:26:17', 0, NULL, 1),
(9898, 'JAWAHAR.k', '17', '7358074410', '9087039077', 'jawahark406@gmail.com', '1997-02-06', 25, '2', '2', 'Kamaraj .p', 'DEPUTY MANAGER', 40000.00, 1, 400000.00, 650000.00, 'Chennai', 'Chennai', '2208220005', '1', '2', 'upload_files/candidate_tracker/54386068808_Jawahar Resume 2022 Updated.docx', NULL, '1', '2022-08-22', 90, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking only for Team lead profile 90 days notice', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-22 11:44:49', 85, '2022-08-23 11:25:55', 0, NULL, 1),
(9899, 'Umar Abdullah', '11', '9840127372', '7010363481', 'uaia98@gmail.com', '2001-09-14', 20, '2', '2', 'T. A. Hassan Quddus', 'N/A', 120000.00, 1, 0.00, 1.00, '13/2 27 Surappa Street Triplicane Chennai -5', '13/2 27 Surappa Street Triplicane Chennai -5', '2208220006', '1', '1', 'upload_files/candidate_tracker/20238104750_Original resume-1.pdf', NULL, '1', '2022-08-22', 0, '', '3', '59', '2022-08-29', 146052.00, '', '0', NULL, '2', 'Selected for Mutual fund Coordinator final round interviewed by Gokul', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-22 12:01:05', 1, '2022-08-22 12:04:39', 0, NULL, 1),
(9900, '', '0', '7010363481', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208220007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-22 12:50:13', 0, NULL, 0, NULL, 1),
(9901, 'Rajeswari', '4', '8925414067', '', 'Rajidhanushas@gmail.com', '2001-11-19', 20, '2', '2', 'Sreenevasan', 'Late', 15000.00, 1, 11000.00, 15000.00, 'Tambaram', 'Tambaram', '2208220008', '1', '2', 'upload_files/candidate_tracker/52044165399_rajeswari .pdf.pdf', NULL, '1', '2022-08-22', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'long distance ... Sustainability doubts', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-22 01:53:03', 97, '2022-08-23 03:18:28', 0, NULL, 1),
(9902, 'Vijayaraj', '23', '6380707680', '', 'vijayaraj638070tvm@gmail.com', '2002-05-10', 20, '2', '2', 'Ganesan', 'Farmer', 12000.00, 0, 0.00, 17000.00, 'MMDA colony,koyambedu', 'Chennai', '2208220009', '1', '1', 'upload_files/candidate_tracker/81243222975_vijay-wb- casp (Repaired).pdf', NULL, '1', '2022-08-23', 0, '', '4', '63', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher can be trained kindly check and let me knwo your inputs', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-22 06:04:38', 85, '2022-08-23 10:52:07', 0, NULL, 1),
(9903, '', '0', '8754711973', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208220010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-22 07:37:11', 0, NULL, 0, NULL, 1),
(9904, 'M.Hariharan', '16', '8610636536', '8428158436', 'hari8610636536@gmail.com', '2001-07-02', 21, '2', '2', 'J.Munusamy', 'Daily wages', 108000.00, 1, 18000.00, 16000.00, 'Chennai', 'Chennai', '2208220011', '1', '2', 'upload_files/candidate_tracker/55672972803_Resume..1[1].docx.pdf', NULL, '1', '2022-08-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not suitable for MIS not open for Sales', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-22 09:15:15', 85, '2022-08-23 10:52:24', 0, NULL, 1),
(9905, 'Mohammed Qasim .S', '16', '9384690262', '', 'mohammedqasim0523@gmail.com', '2000-06-05', 22, '2', '2', 'Mohammed Shahid', 'Carpenter', 15000.00, 3, 0.00, 18000.00, 'Chennai, Triplicane', 'Chennai', '2208230001', '1', '1', 'upload_files/candidate_tracker/13614407618_Qasim Resume-1.pdf', NULL, '1', '2022-08-23', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good Fresher can be trained  final round interviewed by gokul if he comes back let us confirm with his joinig', '3', '1', '0', '1', '1', '0', '2', '2022-08-24', '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-23 11:20:37', 1, '2022-08-23 11:30:45', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9906, 'Kather Sulthan Moideen B', '4', '9791710820', '6385092008', 'katharbe007@gmail.com', '1999-06-20', 23, '4', '2', 'B.Barath Begum', 'Home Maker', 15000.00, 4, 0.00, 16000.00, 'Virugampakkam', 'Virugampakkam', '2208230002', '', '1', 'upload_files/candidate_tracker/55837242912_Kather Sulthan Moideen .pdf', NULL, '1', '2022-08-23', 0, '', '3', '59', '2022-08-29', 126312.00, '', '2', '1970-01-01', '2', 'Selected for  Arumbakkam -  consultant role', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-23 12:25:06', 60, '2022-08-24 03:45:39', 0, NULL, 1),
(9907, 'Faizus shareef', '4', '9360931061', '9360908303', 'fshareef05@gmail.com', '1994-05-05', 28, '2', '2', 'Rajeya Begum', 'Homemaker', 15000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2208230003', '1', '1', 'upload_files/candidate_tracker/67856905387_FAIZUS SHAREEF E.pdf', NULL, '1', '2022-08-26', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-23 04:06:18', 85, '2022-08-25 11:46:27', 0, NULL, 1),
(9908, 'Nandha.B', '26', '9360807418', '6382046446', 'nandha19102001@gmail.com', '2001-10-19', 20, '2', '2', 'Babu.S', 'Business (Late)', 8500.00, 1, 0.00, 250000.00, 'string:Chennai', 'string:Chennai', '2208230004', '1', '1', 'upload_files/candidate_tracker/83898006893_Nandha.B-Curriculum-Vitae.pdf', NULL, '1', '2022-08-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-23 04:43:02', 85, '2022-08-24 11:20:14', 0, NULL, 1),
(9909, 'logesh p', '23', '7358548176', '8056171369', 'logeshkumar18320@gmail.com', '2002-03-18', 20, '2', '2', 'palani kumar', 'driver', 20000.00, 1, 0.00, 15000.00, 'ambattur', 'ambattur', '2208230005', '1', '1', 'upload_files/candidate_tracker/79363738880_My Resume (1).pdf', NULL, '1', '2022-08-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to be trained almost 1 hr travel 5050 on TxxampC If he comes back let us try', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-23 06:24:41', 85, '2022-08-25 09:57:46', 0, NULL, 1),
(9910, 'G.Akshaya', '5', '6374915861', '', 'akshayaganesh475@gmail.com', '2001-12-27', 22, '2', '2', 'Ganesh V', 'Labour', 12000.00, 1, 18800.00, 23000.00, 'Chennai', 'Chennai', '2208230006', '1', '2', 'upload_files/candidate_tracker/5859796407_My 2024 resume.pdf', NULL, '1', '2024-01-30', 1, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for Santhosh Team. Nice Candidate. Can give the salary which she asked and need notoce period to Join', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2022-08-23 08:33:52', 108, '2024-01-30 11:53:50', 0, NULL, 1),
(9911, 'Vaitheeswari', '13', '9344460205', '8870219748', 'vaithiniki1199@gmail.com', '1999-04-11', 23, '3', '2', 'Dhanarasu', 'Business', 35000.00, 1, 0.00, 18000.00, 'Pondicherry', 'Chennai', '2208230007', '', '1', 'upload_files/candidate_tracker/77322533633_vaithi resume.docx (2).pdf', NULL, '1', '2022-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-23 08:34:17', 1, '2022-08-23 08:40:35', 0, NULL, 1),
(9912, 'Kavichelvy. k', '13', '7339440532', '8220262845', 'kavichelvy127@gmail.com', '1999-07-12', 23, '2', '2', 'Kathavarayan', 'Farmer', 10000.00, 1, 0.00, 18000.00, 'Puducherry', 'Chennai', '2208230008', '1', '1', 'upload_files/candidate_tracker/20637414232_KAVICHELVY.K.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas need to open a lot  will not sustain in our Roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-23 09:27:09', 85, '2022-08-24 10:57:09', 0, NULL, 1),
(9913, 'Vishal e', '4', '9003632811', '', 'Vishalyoung03@gmail.com', '2001-02-03', 21, '2', '2', 'Elayaraja', 'Engineer', 15000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2208240001', '2', '1', 'upload_files/candidate_tracker/38331919341_Resume Vishal.pdf', NULL, '1', '2022-08-24', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'From trichy ...no job need and  he will not sustain..', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-24 10:03:04', 1, '2022-08-24 10:04:48', 0, NULL, 1),
(9914, 'Ajay varalal', '4', '9003769654', '', 'Thangamaganvijay6@gmail.com', '2001-05-17', 21, '2', '2', 'Arul raj', 'Watchman', 8000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2208240002', '2', '1', 'upload_files/candidate_tracker/85862788765_Ajay resume .pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking much for the inbound calls,Focus towards the media roles will not run in a long no bike and no laptop', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-24 10:05:54', 1, '2022-08-24 10:07:47', 0, NULL, 1),
(9915, 'Riyaskhan', '4', '9865572247', '', 'Manavairiyas2002@gmail.com', '2002-07-17', 20, '2', '2', 'Sathick batcha', 'Cooli', 5000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2208240003', '2', '1', 'upload_files/candidate_tracker/35056840132_Resume .pdf', NULL, '1', '2022-08-24', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'From trichy....will not suit for our process... sal expt also high...', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-24 10:09:26', 1, '2022-08-24 10:10:57', 0, NULL, 1),
(9916, 'Ramprasath', '4', '9788016092', '', 'Prasathram255@gmail.com', '1993-09-22', 28, '2', '2', 'Arumugam', 'Gov', 30000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2208240004', '2', '2', 'upload_files/candidate_tracker/15670215799_ram2022_updated_resume_.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Seems not much to be active Pronunciation no seems to experienced pressure in his previous ,sustainability doubts ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-24 10:12:46', 1, '2022-08-24 10:14:18', 0, NULL, 1),
(9917, 'Vishnu m', '5', '9629003203', '', 'vishnuvp261405@gmail.com', '1997-08-26', 24, '2', '2', 'Murugandham p', 'Entrepreneur', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208240005', '2', '2', 'upload_files/candidate_tracker/73474524133_Vishnu Resume.pdf', NULL, '1', '2022-08-24', 0, '', '3', '59', '2022-09-05', 250000.00, '', '6', '2022-11-09', '1', 'Selected for Manikandan Team - PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-24 10:18:08', 60, '2022-08-30 05:54:08', 0, NULL, 1),
(9918, '', '0', '6385759830', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208240006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-24 10:23:37', 0, NULL, 0, NULL, 1),
(9919, 'ABDUR RAHMAN', '31', '7395998312', '', 'abdurrahman100800@gmail.com', '2000-08-10', 22, '2', '2', 'SHAHUL HAMEED', 'Business', 10000.00, 2, 0.00, 400000.00, 'Chennai', 'Chennai', '2208240007', '1', '1', 'upload_files/candidate_tracker/55680175090_abdur_NewResume.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Need to be trained but sustainability doubts he may get some reference and move out Long run doubts on this profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-24 10:26:19', 85, '2022-08-24 05:59:57', 0, NULL, 1),
(9920, 'T S PRAKASH BABU', '13', '9884323353', '8124868683', 'tsprakashbabu1@gmail.com', '1999-09-18', 22, '2', '2', 'Srinivasan', 'Student', 30000.00, 2, 0.00, 25000.00, 'Kodungaiyur', 'M k b nagar', '2208240008', '1', '1', 'upload_files/candidate_tracker/69736551758_prakash resume(2).pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Distance to be focused Need time to confirm on TxxampC Thinking a lot on TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-24 10:26:46', 85, '2022-08-24 05:59:34', 0, NULL, 1),
(9921, 'Lakshmi shree', '16', '7975904943', '', 'Lakshmisrit99@gmail.com', '1999-04-30', 23, '2', '2', 'Yanadaiah', 'Business', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208240009', '1', '1', 'upload_files/candidate_tracker/66035876859_Resume_document_converted.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050 profile processed for 2nd round but left without attending the interview ', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-24 10:40:13', 1, '2022-08-24 10:57:45', 0, NULL, 1),
(9922, 'H. naveen kumar', '13', '7358763529', '', 'Kumarnav070@gmail.com', '2000-08-08', 22, '2', '2', 'N. Hemanth kumar', 'Chat shop', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208240010', '1', '1', 'upload_files/candidate_tracker/28170056502_Naveen Kumar resume.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher no basic ideas in the skills too long distance no JS/PHP Skills not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-24 11:01:43', 85, '2022-08-24 05:59:03', 0, NULL, 1),
(9923, 'M. Gopi', '31', '8122714003', '', 'majagopi143@gmail.com', '2001-12-12', 20, '2', '2', 'V. Moorthy', 'Construction work', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2208240011', '1', '1', 'upload_files/candidate_tracker/71763016675_gopi final resume.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher No Basic Ideas In The Skills No JS/PHP Skills Not Suitable Not Open For TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-24 11:02:57', 85, '2022-08-24 05:57:50', 0, NULL, 1),
(9924, 'Gurubharani.p', '13', '9345825369', '', 'gurubharani45@gmail.com', '2001-06-11', 21, '2', '2', 'Palanivel.s', 'Security', 13000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2208240012', '1', '1', 'upload_files/candidate_tracker/86743443368_guru 3.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basic Ideas In The Skills No JS/PHP Skills Not Suitable not open for TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-24 11:06:17', 85, '2022-08-24 05:58:14', 0, NULL, 1),
(9925, 'Vaitheeswari', '13', '9994479826', '9514770713', 'vaithiniki1199@gmail.com', '1999-04-11', 23, '2', '1', 'Dhanarasu', 'Business', 60000.00, 1, 0.00, 18000.00, 'Pondicherry', 'Chennai', '2208240013', '1', '1', 'upload_files/candidate_tracker/16519973236_vaithi resume.docx (2).pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher no basic ideas  in the skills she is clear that will focus on high pay positions ,EB in Amazon and looking for references too will not run in a long', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-24 11:09:46', 85, '2022-08-24 11:18:04', 0, NULL, 1),
(9926, 'R. Esther Rani', '13', '9884713148', '', 'estherrani110201@gmail.com', '2001-02-11', 21, '2', '2', 'T. Raju', 'Welder', 12000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2208240014', '1', '1', 'upload_files/candidate_tracker/42337384715_esther resume.pdf', NULL, '1', '2022-08-24', 0, '', '4', '63', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher 5050 profile sustainability doubts,kindly check and let me know your interest', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-24 11:18:56', 85, '2022-08-24 05:58:42', 0, NULL, 1),
(9927, 'Gayathri', '6', '8122576814', '', 'GAYATHRIKOUSHIK10@GMAIL.COM', '1994-03-21', 28, '2', '1', 'Vignesh G', 'Working in transport', 200000.00, 0, 18000.00, 20000.00, 'Chennai', 'Chennai', '2208240015', '1', '2', 'upload_files/candidate_tracker/33104611771_Gayathri final.pdf', NULL, '1', '2022-08-24', 0, '', '3', '59', '2022-08-29', 218496.00, '', '', '2022-09-14', '2', 'Selected for Renewals - Health Insurance 5 yrs Exp', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '7', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-24 01:54:48', 60, '2022-08-27 05:55:08', 0, NULL, 1),
(9928, 'Parthiban.s', '4', '6381830192', '9361017073', 'sparthi146@gamil.con', '1999-03-04', 23, '4', '2', 'PARTHIBAN', 'Supervisor', 20000.00, 1, 0.00, 10000.00, 'Veerappan Chathiram', 'Veerappan Chathiram', '2208240016', '', '1', 'upload_files/candidate_tracker/22497010461_PARTHIBAN RESUME-converted.pdf', NULL, '1', '2022-08-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-24 03:11:51', 1, '2022-08-24 03:19:15', 0, NULL, 1),
(9929, 'sandhya p', '16', '6300108037', '9492531995', 'sandhyapalla96@gmail.com', '1995-07-27', 27, '2', '2', 'dasaiah', 'farmer', 10000.00, 2, 215000.00, 280000.00, 'nellore andra pradesh', 'chennai tamilnadu', '2208240017', '1', '2', 'upload_files/candidate_tracker/944345544_CURRICULUM VITAE.Sandhya P.pdf', NULL, '1', '2022-08-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No understanding ,Pronunciation not good No local Language Writing skills also not upto the mark as we expected not suitable will not handle our pressure\n', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-24 03:44:00', 85, '2022-08-25 09:58:01', 0, NULL, 1),
(9930, '', '0', '8870086426', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208240018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-24 04:44:46', 0, NULL, 0, NULL, 1),
(9931, 'Punitha', '16', '9884784167', '', 'punithpuni0408@gmail.com', '2000-08-04', 22, '2', '2', 'Sivakumar', 'Tailor', 6000.00, 1, 15300.00, 16000.00, 'East Tambaram', 'East Tambaram', '2208240019', '1', '2', 'upload_files/candidate_tracker/22681874446_updated resume-punitha.pdf', NULL, '1', '2022-08-25', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No stability in her previous Exp, Currently working and looking for opportunities just for salary growth will not sustain in our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-24 06:45:43', 85, '2022-08-25 12:09:51', 0, NULL, 1),
(9932, 'Harshini', '6', '9788908888', '9698709900', 'hari27551@gmail.com', '1999-06-16', 23, '2', '1', 'Jagadeesh', 'Office admin', 20.00, 2, 0.00, 15.00, 'Senguttaipalayam', 'Senguttaipalayam', '2208250001', '1', '1', 'upload_files/candidate_tracker/58108559537_Harshini Resume.docx', NULL, '1', '2022-08-25', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for Profile ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-25 09:59:18', 85, '2022-08-25 11:08:28', 0, NULL, 1),
(9933, 'Thejaswin', '4', '9840247227', '9894990123', 'thejas16496@gmail.com', '1996-04-16', 26, '2', '2', 'Ganesh C S', 'Retired', 30000.00, 1, 35000.00, 43000.00, 'Chennai', 'Chennai', '2208250002', '1', '2', 'upload_files/candidate_tracker/60256935593_Thejaswin RESUME Updated.pdf', NULL, '1', '2022-08-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good,Checked for MF but the salary exp is very high his last drawn MCTC 35K,Not open for Sales Calls not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-25 10:15:28', 1, '2022-08-25 10:20:18', 0, NULL, 1),
(9934, 'murali dharan k', '4', '7904416765', '', 'diomurali8818@gmail.com', '1998-11-12', 23, '2', '2', 'krishna murthy', 'hotel supervisor', 20000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2208250003', '2', '2', 'upload_files/candidate_tracker/61395024497_RESUME (1).pdf', NULL, '1', '2022-08-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '30 days notice 1.10 months 2 companies and looking for 3rd one .Focusing only on the salary much,Will not sustain in a long run,also felt pressure with the previous Exp not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-25 10:28:19', 1, '2022-08-25 10:35:44', 0, NULL, 1),
(9935, 'kanimozhi rajendran', '4', '9486073780', '', 'kasthurikani21@gmail.com', '1996-11-21', 25, '2', '2', 'rajendran', 'farmer', 8000.00, 2, 0.00, 14000.00, 'chennai', 'chennai', '2208250004', '2', '1', 'upload_files/candidate_tracker/76895387625_KANI.RESUME.pdf', NULL, '1', '2022-08-25', 0, '', '4', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile no communication for recruitment,for Telecaller little doubtful on sustainability kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-25 10:40:05', 60, '2022-08-25 06:51:00', 0, NULL, 1),
(9936, 'dinesh kumar m', '6', '9003308129', '', 'dineshkumar.m1228@gmail.com', '1999-10-12', 22, '2', '2', 'murugan', 'business man', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2208250005', '2', '1', 'upload_files/candidate_tracker/25745801484_Dinesh resume.pdf', NULL, '1', '2022-08-25', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile need to be trained kindly check and let me know your interest', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-25 10:44:17', 60, '2022-08-25 06:59:29', 0, NULL, 1),
(9937, 'ajay a', '6', '7338703127', '', 'ajaysmartajay55@gmail.com', '2000-02-18', 22, '2', '2', 'annappan', 'nil', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208250006', '2', '1', 'upload_files/candidate_tracker/45807800783_Ajay.docx', NULL, '1', '2022-08-25', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to be trained no bike Laptop Yes 5050 Profile kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-25 10:48:25', 60, '2022-08-25 06:35:48', 0, NULL, 1),
(9938, 'Janavisha N', '16', '9840358469', '', 'janavisha77@gmail.com', '2000-01-07', 22, '2', '2', 'Natarajan', 'Chasier', 11000.00, 1, 0.00, 16000.00, 'Valasaravakkam', 'Valasaravakkam', '2208250007', '1', '1', 'upload_files/candidate_tracker/38518465849_wp.pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok fresher not open for TxxampC  not even for an year will not sustain', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-25 03:27:14', 85, '2022-08-26 10:08:10', 0, NULL, 1),
(9939, 'muthu manikandan', '4', '9626617616', '', 'manirockz616@gmail.com', '1996-07-25', 26, '2', '2', 'subburaman', 'own business', 16000.00, 1, 13000.00, 14000.00, 'chennai', 'chennai', '2208250008', '2', '2', 'upload_files/candidate_tracker/5722597337_My Resume1.pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-25 06:25:16', 1, '2022-08-25 06:28:25', 0, NULL, 1),
(9940, 'hariharan r', '4', '6374814755', '', 'haran9457@gmail.com', '1995-01-15', 27, '2', '2', 'radhakrishnan n', 'farmer', 20000.00, 1, 12000.00, 14000.00, 'chennai', 'chennai', '2208250009', '2', '2', 'upload_files/candidate_tracker/78712269651_Resume 1_1658784027774_Hari Haran.R-2.pdf', NULL, '2', '2022-08-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-25 06:32:06', 1, '2022-08-25 06:37:51', 0, NULL, 1),
(9941, 'Vijay', '2', '9566126814', '8883781813', 'vijay19g133@gmail.com', '2001-10-10', 20, '2', '2', 'Sudha. A', 'Care Taker', 10000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2208250010', '1', '1', 'upload_files/candidate_tracker/34704400370_Vijay.Resume.docx', NULL, '1', '2022-08-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come back with his confirmation,5050 if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-08-29', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-25 06:39:55', 85, '2022-08-26 10:08:27', 0, NULL, 1),
(9942, 'subha', '4', '7397279781', '', 'subha20001@gmail.com', '2001-05-05', 21, '2', '2', 'anandhan', 'nil', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2208250011', '2', '1', 'upload_files/candidate_tracker/51169344911_vnd.openxmlformats-officedocument.wordprocessingml.pdf', NULL, '1', '2022-08-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-25 06:40:57', 1, '2022-08-26 08:40:38', 0, NULL, 1),
(9943, 'bebadic a', '4', '7603880541', '', 'benadictmessi2231@gmail.com', '2000-10-22', 21, '2', '2', 'arulappa', 'nil', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2208260001', '2', '1', 'upload_files/candidate_tracker/61485451676_Resume_1661186148093.pdf', NULL, '1', '2022-08-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-26 08:41:58', 1, '2022-08-26 08:44:07', 0, NULL, 1),
(9944, 'sundaram g', '4', '7339064496', '', 'sundarssa76@gmail.com', '2000-05-12', 22, '2', '2', 'guruvaiya', 'cooli', 6000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2208260002', '2', '1', 'upload_files/candidate_tracker/67247947545_sundar new-con-converted (1)-compressed.pdf', NULL, '1', '2022-08-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'will not suit for our process not open up..', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-26 08:45:14', 1, '2022-08-26 08:47:19', 0, NULL, 1),
(9945, 'prabhakaran', '4', '7538858821', '', 'prabakarancool04@gmail.com', '2000-04-04', 22, '2', '2', 'palani', 'nil', 14000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2208260003', '2', '1', 'upload_files/candidate_tracker/10500218981_Resume .pdf', NULL, '1', '2022-08-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'NO Sustainabilites in previous companies..  he will not suit for telesales also.. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-26 08:51:57', 1, '2022-08-26 08:55:09', 0, NULL, 1),
(9946, 'gowtham', '6', '6382629454', '', 'abgcomputers22@gmail.com', '2002-01-29', 20, '2', '2', 'sivathanu d', 'driver', 10000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2208260004', '2', '2', 'upload_files/candidate_tracker/99185709008_gowtham sivathanu.pdf', NULL, '1', '2022-08-26', 0, '', '3', '59', '2022-08-30', 193000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team - RE - Stsff role no previous Exp Documents, should check in 7 days', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-26 10:12:11', 60, '2022-08-30 09:51:44', 0, NULL, 1),
(9947, 'M.prakash', '31', '9342446250', '', 'prakashmeiyanathan@gmail.com', '1999-06-03', 23, '2', '2', 'Meiyanathan', 'Developer', 10000.00, 2, 0.00, 150000.00, 'Pudukkottai', 'Chennai', '2208260005', '1', '1', 'upload_files/candidate_tracker/90326822107_prakash.pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'not open for TxxampC,Fresher,Not much strong in the Skills', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-08-26 10:20:47', 1, '2022-08-26 10:49:15', 0, NULL, 1),
(9948, 'Pradeep N', '31', '8667556829', '9489561100', 'pradeep.osr28@gmail.com', '1995-10-28', 26, '2', '2', 'Nesamani', 'Show producer in Bs value OTT', 50.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2208260006', '1', '1', 'upload_files/candidate_tracker/91271769770_Pradeep_N_Resume_V0.1.pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Java Openings he was into media earlier not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-26 10:33:59', 1, '2022-08-26 10:40:29', 0, NULL, 1),
(9949, 'Jaya aswin', '4', '9384755947', '6385907975', 'jayaashwin01@gmail.com', '2001-02-01', 21, '2', '2', 'Senthil Kumar', 'Fire department', 50000.00, 1, 0.00, 20000.00, '5 moovendar street anna mgr nagar pallikaranai', '5 moovendar street anna mgr nagar pallikaranai', '2208260007', '1', '1', 'upload_files/candidate_tracker/33093502100_Aswin Resume.pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for outbound calls need to get in the networking profile not suitable will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-26 10:44:51', 92, '2022-08-26 10:51:21', 0, NULL, 1),
(9950, '', '0', '9751764362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208260008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-26 10:46:09', 0, NULL, 0, NULL, 1),
(9951, 'Selvaraja K', '4', '8668166893', '9751764362', 'kselvaraja999@gmail.com', '1997-09-04', 24, '2', '2', 'Karungappan', 'Agriculture', 50000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Pallikarnai', '2208260009', '1', '1', 'upload_files/candidate_tracker/29050695873_KSelvaraja-2(1).pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Convincing Not showing interest towards the job,Focus only for collections will not sustain ina long run', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-26 10:54:02', 92, '2022-08-26 11:08:04', 0, NULL, 1),
(9952, 'Bharath R', '2', '9080534491', '8939690027', 'bharath7brad@gmail.com', '2002-05-30', 20, '2', '2', 'R Rajeev', 'Business', 15000.00, 1, 0.00, 260000.00, '12/9, Mangalapuram 6th st , Chetpet, Chennai-31', '12/9, Mangalapuram 6th St , Chetpet, Chennai-31', '2208260010', '1', '1', 'upload_files/candidate_tracker/63153301071_Bharath.pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not open for Internship and SA,Focus only on the salary will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-26 11:24:42', 85, '2022-08-26 11:48:37', 0, NULL, 1),
(9953, 'SURYA S', '4', '9025687593', '9786383330', 'arishkhaneee@gmail.com', '2000-07-16', 22, '4', '2', 'SIVANANDHAM', 'Student', 36000.00, 1, 0.00, 200000.00, 'Thiruvarur', 'T nager', '2208260011', '', '1', 'upload_files/candidate_tracker/77841920485_SURYA RESUME-converted-signed (1).pdf', NULL, '1', '2022-08-26', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Fresher need to open a lot 5050 kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-26 11:26:52', 1, '2022-08-26 11:41:52', 0, NULL, 1),
(9954, 'Y.mukesh raj', '4', '7603981453', '9840167715', 'mukeshrajyuvaraj.211903179@gamil.com', '2002-01-30', 20, '1', '2', 'Yuvaraj', 'Transport', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Kolathur', '2208260012', '', '1', 'upload_files/candidate_tracker/45107317565_Adobe Scan Aug 23, 2022.pdf', NULL, '1', '2022-08-26', 0, 'P1275', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-26 12:04:49', 1, '2022-08-26 12:10:52', 0, NULL, 1),
(9955, 'Thirumalai e', '23', '9944174932', '9786287809', 'thiruaalvin123@gmail.com', '2000-06-03', 22, '2', '2', 'egambaram', 'farmer', 15.00, 2, 0.00, 22000.00, 'villupuram', 'tambaram', '2208260013', '1', '1', 'upload_files/candidate_tracker/83590661302_Resume.pdf', NULL, '1', '2022-08-26', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic knowledge in the UI UX skills can be trained kindly check and let me know your interest', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-26 03:15:22', 60, '2024-03-25 12:01:32', 0, NULL, 1),
(9956, 'Arunkumar', '23', '9360822570', '', 'mkarunpeace@gmail.com', '2007-08-27', 0, '2', '2', 'Kannan', 'Handloom', 15000.00, 1, 0.00, 220000.00, 'Paramakudi, Ramanathapuram', 'Avadi, chennai', '2208270001', '1', '1', 'upload_files/candidate_tracker/60537114731_ARUN KUMAR (2).pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance ready to relocate but not much comfort in TxxampC Will not sustain and handle our work pressure', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-27 09:14:23', 85, '2022-08-27 09:52:27', 0, NULL, 1),
(9957, 'siva sakthi kumaran', '4', '9865273041', '', 'sivasakthikumara@gmail.com', '1991-03-11', 31, '2', '2', 'santharam', 'crack workers', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2208270002', '2', '1', 'upload_files/candidate_tracker/12293810403_sivasakthi (1)-1.docx', NULL, '1', '2022-08-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-27 09:37:56', 1, '2022-08-27 09:40:54', 0, NULL, 1),
(9958, 'akash s', '11', '6382109166', '', 'akashsankar.r@gmail.com', '2000-08-22', 22, '2', '2', 'sankar', 'salesman', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208270003', '2', '1', 'upload_files/candidate_tracker/51161168940_Akash S (7).pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Preparing for UPSCxxamp police jobs will not sustain not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-27 09:41:58', 1, '2022-08-27 09:44:18', 0, NULL, 1),
(9959, 'NANDHINI', '23', '8056259377', '9840397158', 'nandhinisy2k@gmail.com', '2000-05-19', 22, '2', '2', 'Subramani. A', 'System analyst', 30000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2208270004', '1', '1', 'upload_files/candidate_tracker/56356652601_NANDHINI.S RESUME.pdf', NULL, '1', '2022-08-27', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Task  output is terrible', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-27 09:50:30', 1, '2022-08-27 09:58:31', 0, NULL, 1),
(9960, 'KALAIMATHI SEKAR', '23', '9500443627', '9486258260', 'kalaimathisekar6@gmail.com', '1999-06-09', 23, '2', '2', 'Sekar', 'Police', 200000.00, 2, 0.00, 1.50, 'Namakkal', 'Sollinganallur', '2208270005', '1', '1', 'upload_files/candidate_tracker/85485764515_Front end developer kalaimathi Resume .pdf', NULL, '1', '2022-08-27', 0, '', '3', '59', '2022-08-29', 96000.00, '', '', '2022-09-13', '2', '15 Days Free Intern then 5K for 5 month 8-12 for Employment', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-27 09:57:52', 1, '2022-08-27 10:05:11', 0, NULL, 1),
(9961, 'Mageshwari', '2', '8637465734', '', 'mageshwariviji6@gmail.com', '1999-06-06', 23, '2', '2', 'Ravichandran', 'Labor', 12000.00, 1, 0.00, 25000.00, 'Avadi', 'Avadi', '2208270006', '1', '1', 'upload_files/candidate_tracker/49310522408_R. Mageswari_cv.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java Profile and not open for TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-27 10:19:36', 1, '2022-08-27 10:32:02', 0, NULL, 1),
(9962, 'Pechi Thangam S', '20', '6381761867', '', 'pechithangamsbca@gmail.com', '2001-09-10', 20, '2', '2', 'Sivaperumal', 'Monthly wager', 95000.00, 2, 0.00, 15000.00, '16, Rajiv Gandhi 2 Cross Street, Mgr Nagar, Ch 78', '16, Rajiv Gandhi 2 cross street, mgr nagar, ch 78', '2208270007', '1', '1', 'upload_files/candidate_tracker/13006991818_Resume PDF.pdf', NULL, '1', '2022-08-27', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Fresher  5050  discussed for noth Arumbakam xxamp Tnagar do check and let me know your interest', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-27 10:27:05', 1, '2022-08-27 10:35:32', 0, NULL, 1),
(9963, 'P.s kathar masthan ali', '23', '9367636945', '9790307799', 'katharmasthan1437@gmail.com', '1999-05-27', 23, '2', '2', 'P.m syed Mohideen', 'Auto driver', 27000.00, 2, 0.00, 18000.00, 'Tirunelveli', 'Guindi', '2208270008', '1', '1', 'upload_files/candidate_tracker/97760811533_kathar resume.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills and need time to give his confirmation if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-27 10:43:32', 85, '2022-08-27 11:43:34', 0, NULL, 1),
(9964, 'Viswanathan.j', '23', '9787473358', '9943789510', 'vishvanathan.jsp@gmail.com', '1997-10-20', 24, '2', '2', 'Jothilingam', 'Farmer', 25000.00, 1, 0.00, 15000.00, 'Melmaruvathur', 'Guindi', '2208270009', '1', '1', 'upload_files/candidate_tracker/72629462719_Sample Resume-converted-2.docx', NULL, '1', '2022-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking only for the Salary growth no basic ideas he is from Core filed', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-27 10:43:53', 85, '2022-08-27 11:44:05', 0, NULL, 1),
(9965, 'Mohamed tharul kutha', '31', '9600952673', '', 'Tharulkutha98@gmail.com', '1998-09-14', 23, '2', '2', 'S.p.Abdul Raheem', 'Business', 25000.00, 2, 0.00, 20000.00, 'Ramanathapuram', 'Tambaram', '2208270010', '1', '1', 'upload_files/candidate_tracker/57002247944_Recent1.docx', NULL, '1', '2022-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basic Ideas In The Skills Not Much Comfort In TxxampC Will Not Sustain need time to confirm', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-27 10:50:11', 85, '2022-08-27 11:43:53', 0, NULL, 1),
(9966, 'NISHANTHINI M', '6', '9626649778', '8940888120', 'nishanthinimmarappan@gmail.com', '2001-11-16', 20, '2', '2', 'MARAPPAN K', 'Agriculture', 20000.00, 2, 0.00, 10000.00, 'Gobichettipalayam', 'Gobichettipalayam', '2208270011', '1', '1', 'upload_files/candidate_tracker/45306255725_nisha resume.pdf', NULL, '1', '2022-08-27', 0, '', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '2', 'Selected for Erode - Suthagar  - Staff Role', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-27 10:54:36', 60, '2022-08-27 05:02:57', 0, NULL, 1),
(9967, 'Balaji', '2', '9940168928', '', 'balajivedas25@gmail.com', '2001-09-25', 20, '2', '2', 'Vedhachalam', 'Business', 30000.00, 1, 0.00, 18000.00, 'Madambakam', 'Madambakam', '2208270012', '1', '1', 'upload_files/candidate_tracker/38261810637_Balaji Resume.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher his EB in IT Pune he is looking for positions through reference too long distance will not sustina', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-27 11:01:06', 1, '2022-08-27 11:26:33', 0, NULL, 1),
(9968, 'Vishva D', '31', '9092009680', '8056561289', 'vishvabai320@gmail.com', '2000-05-17', 22, '2', '2', 'Dhayalan', 'Driver', 20000.00, 1, 0.00, 20000.00, 'Gingee , Villupuram', 'Indira street,Indira nagar, sithalapakkam,chennai', '2208270013', '1', '1', 'upload_files/candidate_tracker/22217912606_Vishva D resume.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long distance will not run in a long 2nd reject by manikandan', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-27 11:01:38', 1, '2022-08-27 11:07:01', 0, NULL, 1),
(9969, 'Vijayakumar Seenivasan', '31', '6374062307', '', 'vijay.kumarjs02@gmail.com', '2002-07-06', 20, '2', '2', 'Seenivasan', 'Printer', 15000.00, 1, 0.00, 20000.00, 'Perumbakkam, chennai', 'Perumbakkam, chennai', '2208270014', '1', '1', 'upload_files/candidate_tracker/91867288532_Resume-1.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no basic ideas in the skills not much comfort in TxxampC Will not sustain', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-27 11:53:30', 85, '2022-08-27 12:22:10', 0, NULL, 1),
(9970, 'sriram', '31', '9361118016', '7401494330', 'sriramtj1201@gmail.com', '2000-01-12', 22, '2', '2', 'surendran', 'driver', 15000.00, 1, 0.00, 200000.00, 'chennai', 'chennai', '2208270015', '1', '1', 'upload_files/candidate_tracker/2542660371_SRIRAM_S_Full_Stack_Developer _Resume (1).pdf', NULL, '1', '2022-09-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-27 12:54:02', 85, '2022-09-03 09:47:01', 0, NULL, 1),
(9971, 'Hariharan V', '14', '8220065580', '8300224025', 'Harishkamsan778@gmail.com', '2000-06-05', 22, '4', '2', 'Vengatesan T', 'GoldSmith', 10000.00, 1, 0.00, 16000.00, 'Cuddalore', 'Ambathur', '2208270016', '', '1', 'upload_files/candidate_tracker/68025348962_Hariharan.v (2)-1-3.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills in Flutter not much importance on job will not run in a long show', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-27 12:55:02', 1, '2022-08-27 12:59:57', 0, NULL, 1),
(9972, 'Govardhanan', '14', '6380571978', '9362368824', 'GovardhananGovardhanan740@gmail.com', '2000-01-11', 22, '4', '2', 'G.Gopinathan', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Kadambathur', 'Perambur', '2208270017', '', '1', 'upload_files/candidate_tracker/67856749304_GovardhananGopinathan.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No ideas in the Mobile App Skills nust came along with his friend', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-27 12:55:24', 1, '2022-08-27 01:00:11', 0, NULL, 1),
(9973, 'Logeshwari.s', '15', '9025056175', '9445317220', 'logisaravanan20@gmail.com', '2000-12-09', 21, '2', '2', 'Saravanan.M', 'Carpenter', 80000.00, 1, 0.00, 16000.00, 'Ernavoor', 'Ernavoor', '2208270018', '1', '1', 'upload_files/candidate_tracker/96496504839_COPY OF RESUME.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance not open with TxxampC Looking for Time being preparing UPSC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-27 12:56:11', 85, '2022-08-27 01:09:43', 0, NULL, 1),
(9974, 'Jone kingsley', '13', '9003179249', '7598010053', 'Kingstechit2018@gmail.com', '2000-03-16', 22, '4', '2', 'Benny. J', 'Accountant', 25000.00, 1, 0.00, 300000.00, 'Thanjavur', 'Chrompet', '2208270019', '', '1', 'upload_files/candidate_tracker/36469698576_JK CV.pdf', NULL, '1', '2022-08-27', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050Profile Open for TxxampC already attended lot of interviews and finally come down for TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-27 02:03:32', 1, '2022-08-27 02:08:34', 0, NULL, 1),
(9975, '', '0', '9176241334', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208270020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-27 03:50:09', 0, NULL, 0, NULL, 1),
(9976, '', '0', '9962692793', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208270021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-27 06:08:07', 0, NULL, 0, NULL, 1),
(9977, 'fathima afrin', '22', '9677141254', '', 'afrinsyed30@gmail.com', '2000-11-08', 21, '2', '2', 'basheer', 'business', 35000.00, 3, 0.00, 24000.00, 'mannady', 'mannady', '2208280001', '1', '1', 'upload_files/candidate_tracker/6889343584_afrin resume.pdf', NULL, '1', '2022-08-30', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, Salary Exp is high,Communication is Good,Family need is not there kindly check and give your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-28 03:19:46', 85, '2022-08-30 09:47:18', 0, NULL, 1),
(9978, 'john merito at', '4', '8778110510', '', 'hayatalnajah07@gmail.com', '1998-06-07', 24, '2', '2', 'arul rajan s', 'wimming pool engineer', 20000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2208290001', '2', '1', 'upload_files/candidate_tracker/69742022813_PRIMI (2).docx', NULL, '1', '2022-08-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher need to be trained a lot left without attending the 2nd round 5050 ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-29 09:35:37', 1, '2022-08-29 09:37:44', 0, NULL, 1),
(9979, 'chandru s', '11', '9600692412', '', 'suryachandru99@gmail.com', '1998-01-16', 24, '2', '2', 'sundramurthy c', 'cashier', 12000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2208290002', '2', '1', 'upload_files/candidate_tracker/11736975759_chandru(mba).pdf', NULL, '1', '2022-08-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication average,No basic Ideas in the recruitment,will not run in a long,sustainability doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-29 09:39:05', 1, '2022-08-29 09:41:01', 0, NULL, 1),
(9980, 'anusuya m', '11', '9790029827', '', 'anusuyaanuu1998@gmail.com', '1998-09-08', 23, '2', '2', 'munisamy', 'army', 30000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2208290003', '2', '1', 'upload_files/candidate_tracker/59211999058_Document (2).docx', NULL, '1', '2022-08-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '6 months Exp but not much good in Skills wil not sustain for a long not much suitable for our roles', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-29 09:47:59', 1, '2022-08-29 09:50:13', 0, NULL, 1),
(9981, 'Malini', '6', '9791166373', '9150480373', 'mmalini220@gmail.com', '2001-10-13', 20, '1', '2', 'Sameema', 'Nil', 20000.00, 2, 0.00, 17000.00, 'Saidapet', 'Saidapet', '2208290004', '', '1', 'upload_files/candidate_tracker/37603252506_malini.docx', NULL, '3', '2022-08-29', 0, 'P1070', '3', '59', '2022-09-02', 164208.00, '', '4', '2022-12-03', '1', 'Selected for Babu Team - Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-29 10:46:45', 60, '2022-09-02 10:03:36', 0, NULL, 1),
(9982, 'Ajay Kumar R', '23', '9600903123', '', 'ajay14rs@gmail.com', '2007-08-29', 0, '2', '2', 'RANGANATHAN R', 'Village bank appraiser', 12000.00, 2, 0.00, 250000.00, 'Ranipet District', 'Ranipet District', '2208290005', '1', '1', 'upload_files/candidate_tracker/57292628294_AJAY KUMAR R new1.pdf', NULL, '1', '2022-08-29', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for UIUX Can be trained have skills knowledge kindly check and let me know your inputs', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-29 10:55:40', 92, '2022-08-29 04:52:24', 0, NULL, 1),
(9983, 'vallarasu', '16', '9597831454', '9597831455', 'vallarasug642000@gmail.com', '2000-04-06', 22, '2', '2', 'Govinthan', 'farmar', 10000.00, 4, 0.00, 15000.00, 'thirukovilur', 'pallikkaranai', '2208290006', '1', '1', 'upload_files/candidate_tracker/96003052894_valter.pdf', NULL, '1', '2022-08-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication not suitable for our roles', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-29 11:12:56', 92, '2022-08-29 12:04:51', 0, NULL, 1),
(9984, 'Celsheya', '22', '9941573525', '', 'celsheyarema@gmail.com', '2001-10-01', 20, '2', '2', 'R. Prabhukumar', 'Tailor', 20000.00, 1, 0.00, 300000.00, 'Urapakkam', 'Urapakkam', '2208290007', '1', '1', 'upload_files/candidate_tracker/48940509805_9941573525 (1)(1).pdf', NULL, '1', '2022-08-29', 0, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate Didnxquott turn up', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-29 11:16:47', 60, '2022-08-29 07:33:37', 0, NULL, 1),
(9985, 'balaji', '5', '8148434134', '7871022673', 'balaragu72@gmail.com', '1991-10-05', 30, '2', '2', 'ragu', 'indian oil', 30000.00, 1, 360000.00, 400000.00, 'chennai', 'chennai', '2208290008', '1', '2', 'upload_files/candidate_tracker/25417630144_Balaji- 2022.pdf', NULL, '1', '2022-08-29', 15, '', '3', '59', '2022-09-14', 380000.00, '', '4', '2023-03-08', '1', 'Selected for Manikandan Team in Staff Role', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-29 11:34:09', 60, '2022-09-07 07:08:59', 0, NULL, 1),
(9986, 'Surajkiran.j', '16', '7338947699', '9092624414', 'surajkiranmech1602@gmail.com', '1997-02-16', 25, '2', '2', 'P.D Jayakumar', 'Buisness', 25.00, 0, 0.00, 15.00, 'Chennai', 'Chennai', '2208290009', '1', '1', 'upload_files/candidate_tracker/2635215481_Suraj resume-25.07 (1).pdf', NULL, '1', '2022-08-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok Can be trained but long run doubts professional Cricket player if he comes back let us try', '3', '1', '', '1', '1', '', '2', '2022-08-31', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-29 11:34:58', 92, '2022-08-29 12:04:14', 0, NULL, 1),
(9987, 'Priyanka', '11', '7550031363', '', 'PRIYANKAPRIYANKA76419@gmail.com', '1999-09-27', 22, '2', '2', 'Mayavan', 'Farmer', 100000.00, 1, 16000.00, 18000.00, 'Kilpauk', 'Kilpauk', '2208290010', '1', '2', 'upload_files/candidate_tracker/28974369301_e74ad282-b892-43a4-803f-73ecf6dc35bc (1) (1).pdf', NULL, '1', '2022-08-29', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average Left without completing the task not suitable Drop', '6', '1', '', '1', '3', '', '2', '1970-01-01', '2', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-29 12:01:05', 60, '2022-08-29 07:22:07', 0, NULL, 1),
(9988, 'Abdur Raheem', '31', '9384875431', '', 'raheemabdur1712@gmail.com', '2002-12-17', 19, '3', '2', 'Muhammad Ayub', 'Student - Final year', 40000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2208290011', '', '1', 'upload_files/candidate_tracker/88961962611_AbdurRaheemResume.pdf', NULL, '1', '2022-08-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '9 months to complete the graduation looking for Internship', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-29 01:45:15', 1, '2022-08-29 01:49:08', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9989, 'Naseeb Ali N', '31', '7550125988', '', 'alinaseeb1233@gmail.com', '2002-04-04', 20, '3', '2', 'Nasir Ali', 'Painter', 18000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2208290012', '', '1', 'upload_files/candidate_tracker/8416201141_NaseebAliResume.pdf', NULL, '1', '2022-08-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '9 Months To Complete The Graduation Looking For Internship', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-29 01:45:18', 1, '2022-08-29 01:50:31', 0, NULL, 1),
(9990, 'Manjula Manju', '4', '9962869201', '9551527511', 'ammumanju48@gmail.com', '1994-01-03', 28, '2', '2', 'Om prakash', 'Electrion', 150000.00, 2, 13000.00, 16000.00, 'Chennai', 'Chennai', '2208290013', '1', '2', 'upload_files/candidate_tracker/56216027735_1661085170689_1655186803283_Resume (manju).docx', NULL, '1', '2022-08-29', 0, '', '3', '59', '2022-09-01', 180000.00, '', '7', '1970-01-01', '2', 'Selected for Banu Team  - B2B role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-29 02:19:50', 60, '2022-08-30 04:27:07', 0, NULL, 1),
(9991, 'Dhanushkarna', '16', '9677093113', '', 'dhanushkarna2015@gmail.com', '1998-10-27', 23, '2', '2', 'Srinivasan', 'Daily wages', 120000.00, 1, 17.00, 25.00, 'Chennai', 'Chennai', '2208290014', '1', '2', 'upload_files/candidate_tracker/20426178382_DHANUSH-2022.pdf', NULL, '2', '2022-09-03', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-29 05:10:20', 85, '2022-09-03 09:47:15', 0, NULL, 1),
(9992, 'madhumathi', '16', '9025000731', '', 'cmmadhumathi@gmail.com', '2000-03-17', 22, '2', '2', 'mariyappan', 'vendor', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2208300001', '1', '1', 'upload_files/candidate_tracker/96864306282_madhumathi resume.doc', NULL, '1', '2022-08-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Preparing for CMA, Focus much on CMA positions only in next 3 months exams Will not handle our Pressure not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-08-30 09:36:13', 1, '2022-08-30 10:09:13', 0, NULL, 1),
(9993, 'Ashwin R', '16', '7338788717', '8939061692', 'ashwinraja1717@gmail.com', '2002-08-17', 20, '2', '2', 'Raja k', 'Sarry designer', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai, kolathur', '2208300002', '1', '1', 'upload_files/candidate_tracker/78506753215_ashwin resume pdf.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic ideas in MIS, will not handle our pressure not suitable ', '3', '2', '', '1', '3', '', '2', '1970-01-01', '1', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 09:54:08', 92, '2022-08-30 10:11:22', 0, NULL, 1),
(9994, 'manishbalajee m', '11', '8939101795', '', 'manish.balajee.ds@gmail.com', '1997-12-19', 24, '2', '2', 'mohan kumar', 'photographer', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208300003', '2', '1', 'upload_files/candidate_tracker/25013201729_resume (2).pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresh for Recruiter role,Have Exp in Collections/Retentions tried for Renewals Calling but candidate is not interested, need time to give  his confirmation on TxxampC', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-30 09:56:17', 1, '2022-08-30 09:58:37', 0, NULL, 1),
(9995, 'mohammed sharukh', '11', '8939110405', '', 'mohammedaakam111@gmail.com', '1998-05-11', 24, '2', '2', 'kamal basha', 'not working', 1000.00, 4, 0.00, 12000.00, 'chennai', 'chennai', '2208300004', '2', '1', 'upload_files/candidate_tracker/5906334115_MOHAMMED SHARUKH 1.pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has Non-Voice exp ..no idea about Recruiting...long distance too...no communication', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-30 10:00:59', 1, '2022-08-30 10:02:44', 0, NULL, 1),
(9996, 'Aishwarya M', '23', '7449119580', '9710873758', 'aishwaryaofcl@gmail.com', '2000-09-22', 21, '2', '2', 'Mahendran M', 'Self Employee - Metal Moulding', 100000.00, 1, 0.00, 250000.00, 'Porur, Chennai', 'Chennai', '2208300005', '1', '1', 'upload_files/candidate_tracker/52302585600_M Aishwarya.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Stipend Exp is more, Just started learning  JS,Preferred to work in Java Profile Will not sustain she may get reference ,sustainability doubts', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 10:05:06', 85, '2022-08-30 10:13:11', 0, NULL, 1),
(9997, 'Mathubalan a', '23', '9087569167', '', 'mathubalanayyasamy@gmail.com', '2000-09-15', 21, '2', '2', 'Ayyasamy T', 'Former', 8000.00, 2, 0.00, 15000.00, 'Velluer Siruvarai, Manamelkudi TK, Pudukkottai DT', 'Paranoor, Mahendra Nova,C1 Block,Flat no 203', '2208300006', '1', '1', 'upload_files/candidate_tracker/19914186253_MATHU RESUME.pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'from chengalpattu....not ready to relocate.. no basic skills in ui/ux', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-30 10:28:34', 1, '2022-08-30 10:49:58', 0, NULL, 1),
(9998, 'Vishwa.c', '6', '9094868973', '9962588011', 'vishwac2405@gmail.com', '2001-05-24', 21, '2', '2', 'Chandran.s', 'driver', 12000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2208300007', '1', '1', 'upload_files/candidate_tracker/63082965345_vishwa.c resume-converted.pdf', NULL, '1', '2022-08-30', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher can be trained no bike no laptop Sustainability doubts Need to check later', '5', '1', '', '1', '1', '', '2', '2022-09-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 10:28:44', 60, '2022-08-30 07:07:52', 0, NULL, 1),
(9999, 'Vishwa s', '6', '9080931062', '9176946755', 'vishea2442@gmail.com', '2002-04-24', 20, '2', '2', 'Saminathan k', 'Colie', 120000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2208300008', '1', '1', 'upload_files/candidate_tracker/32577592390_RESUME.pdf', NULL, '1', '2022-08-30', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher ,5050 profile have 1 month exp in Data Entry, Kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 10:28:45', 60, '2022-08-30 07:08:04', 0, NULL, 1),
(10000, 'Agnel kennadi.A', '26', '9994505141', '', 'Kennadi1998@gmail.com', '1998-05-21', 24, '2', '2', 'Anthony samy', 'Businessman', 30000.00, 1, 0.00, 18000.00, '108,voc street nagar,tirukovilur.', '1st cross street,bhuvaneshwari nagar,velachery', '2208300009', '1', '1', 'upload_files/candidate_tracker/45945460251_Kennady-IT-26.06.2022.pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no communication ..prefer to talk in tamil.. no idea about mIS .. will not suit for our process', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 10:43:00', 85, '2022-08-30 10:50:03', 0, NULL, 1),
(10001, 'SABEEK AHAMED N', '23', '9788883209', '', 'sabeekahamed21@gmail.com', '2000-11-17', 21, '2', '2', 'M.NANNAPPA', 'Abroad', 250000.00, 0, 0.00, 14000.00, 'Pattukottai', 'Mannadi,Chennai -600001', '2208300010', '1', '1', 'upload_files/candidate_tracker/63575498471_SABEEK AHAMED2000.pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '3m of intern exp  .. not much good in ui/ux.... will not sustain ..', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 11:10:51', 92, '2022-08-30 12:52:21', 0, NULL, 1),
(10002, 'Vallarasu', '4', '8344892728', '9597263580', 'pollardvallarasu3@gmail.com', '1999-11-12', 22, '3', '2', 'Vasanthi', 'No', 1000.00, 2, 0.00, 13000.00, '111,ponnumsamy Street,karungal Palayam, erode.3', '111,Ponnumsamy Street,Karungal Palayam, Erode.3', '2208300011', '', '1', 'upload_files/candidate_tracker/54853349668_0_VALLARASU .pdf', NULL, '1', '2022-08-30', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not suitable for telesales', '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-30 11:12:10', 1, '2022-08-30 11:20:38', 0, NULL, 1),
(10003, 'Arulmani.B', '6', '7604975234', '9655182379', 'arulmanibala40@gmail.com', '2001-06-21', 21, '1', '2', 'Balachandran.p', 'Telecaller', 7000.00, 1, 13500.00, 15500.00, 'West kk nagar', 'West kk nagar', '2208300012', '', '2', 'upload_files/candidate_tracker/92966465543_amcv.pdf', NULL, '1', '2022-08-30', 15, 'P3157', '3', '59', '2022-09-05', 192000.00, '', NULL, '2023-11-25', '2', 'Selected for Syed Team  - Staff Role', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-30 11:14:36', 60, '2022-09-03 03:49:05', 0, NULL, 1),
(10004, 'gavaskar', '23', '8668084720', '', 'gavashabish953@gmail.com', '1997-06-18', 25, '2', '2', 'ragupathi', 'farmer', 10000.00, 1, 0.00, 250000.00, 'thiruvarur', 'chennai', '2208300013', '1', '1', 'upload_files/candidate_tracker/33011976409_gavash.pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'has some Knowledge in html, and CSS. moved to sNR. but he left middle of the interview.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-08-30 11:36:02', 1, '2022-08-30 12:00:12', 0, NULL, 1),
(10005, '', '0', '8344892738', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208300014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-30 11:39:05', 0, NULL, 0, NULL, 1),
(10006, 'Manikandan A', '23', '9003993474', '', 'amanikandan141@gmail.com', '1999-05-12', 23, '3', '2', 'Annadurai M', 'Former', 10000.00, 1, 0.00, 17000.00, '1/81A, veppur, Selliyampalaiyam, Cuddalore 606304', 'Chennai', '2208300015', '', '1', 'upload_files/candidate_tracker/90422855380_Resume .pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'no idea about ui/ux ... will not suit for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-30 11:39:53', 1, '2022-08-30 11:47:50', 0, NULL, 1),
(10007, 'Aarthi.R', '4', '8438305269', '', 'aarthiravikumar1999@gmail.com', '1999-10-22', 22, '3', '2', 'Ravikumar. K', 'Farmer', 10000.00, 2, 10700.00, 10000.00, 'Thanjavur', 'Thanjavur', '2208300016', '', '2', 'upload_files/candidate_tracker/90138969495_Old resume.pdf', NULL, '1', '2022-08-30', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'unfit', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-30 11:46:15', 1, '2022-08-30 12:04:10', 0, NULL, 1),
(10008, 'Vijayakumar', '23', '7010290487', '', 'vijayakumar26121999@gmail.com', '1999-12-26', 22, '2', '2', 'Thiruvengadam', 'Former', 20000.00, 1, 0.00, 15000.00, 'Thiruvannamalai', 'Chennai', '2208300017', '1', '1', 'upload_files/candidate_tracker/55283105808_vijayakumar-resume  (2) (2).pdf', NULL, '1', '2022-08-30', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher have basic skills knowledge in backend also but prefer to work in Front End Can give a try kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '2022-09-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 12:08:41', 92, '2022-08-30 12:28:02', 0, NULL, 1),
(10009, 'Ajithkumar', '23', '7845274520', '', 'Ahithudhaya9650@gmail.com', '2000-06-02', 22, '2', '2', 'Udhayakumar', 'Former', 15000.00, 1, 0.00, 15000.00, 'Kovilpuraiyur', 'Ambattur', '2208300018', '1', '1', 'upload_files/candidate_tracker/2890402006_ajith18.docx', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Distance Need to see,No basic ideas in the skills not suitable will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 12:11:35', 92, '2022-08-30 12:27:40', 0, NULL, 1),
(10010, 'Chandru D', '23', '9150175181', '', 'chandru44443@gmail.com', '2001-05-16', 21, '2', '2', 'Dhamodaran', 'Former', 15000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2208300019', '1', '1', 'upload_files/candidate_tracker/55194299589_Chandru_D.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,have basic exp in Skills need to be trained a lot,2nd round reject by Kavya', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 12:11:38', 92, '2022-08-30 12:27:05', 0, NULL, 1),
(10011, 'Magna Yadlapalli', '16', '9952905762', '', 'magnamaggi9626@gmail.com', '1999-07-13', 23, '2', '1', 'Niranjan G', 'Data Entry Operator', 15000.00, 1, 0.00, 30000.00, 'No 5/73, Nethaji Nagar, 4 th street, Thirumul', 'No 5/73, Nethaji Nagar, 4 Th Street, Thirumul', '2208300020', '1', '1', 'upload_files/candidate_tracker/25924410428_ResumeMagna.pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher sal expt too high long distance too..', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 12:37:06', 92, '2022-08-30 12:52:46', 0, NULL, 1),
(10012, 'Ankit Panwar', '23', '6397046528', '', 'ankitpanwar0707@gmail.com', '1998-07-07', 24, '2', '2', 'Mrs. Kavita panwar', 'No', 50000.00, 2, 200000.00, 350000.00, 'Chennai', 'Chennai', '2208300021', '1', '2', 'upload_files/candidate_tracker/85758257905_ankit-resume-07.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open with TxxampC,No local language will not suits in our work environment Salary exp is high,not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 01:10:29', 92, '2022-08-30 01:29:37', 0, NULL, 1),
(10013, 'Murugesh Raj M S', '23', '9500025609', '', 'murugeshrajms@gmail.com', '2000-03-27', 22, '2', '2', 'Jayalakshmi', 'Teacher', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2208300022', '1', '1', 'upload_files/candidate_tracker/64626045822_M1 Resume.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Seems not much active,no basic JS skills,will not run in long not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 02:55:22', 92, '2022-08-30 03:17:50', 0, NULL, 1),
(10014, 'Sharmila', '23', '9884954247', '', 'Sharmila12kavi@gmail.com', '2002-10-27', 19, '2', '2', 'ARUMUGAM G', 'Building contractor', 12000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2208300023', '1', '1', 'upload_files/candidate_tracker/74229175992_CV_2022081910285687.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'yet to complete her graduation not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 02:57:12', 92, '2022-08-30 03:17:33', 0, NULL, 1),
(10015, 'keerthana arul', '22', '7418181442', '', 'keerthanaarul1807@gmail.com', '2000-07-18', 22, '2', '2', 'mala', 'tailor', 250000.00, 2, 0.00, 15000.00, 'kachipuram', 'Chennai', '2208300024', '1', '1', 'upload_files/candidate_tracker/31703646996_KEERTHANA_ ARUL.pdf', NULL, '1', '2022-08-30', 0, '', '4', '69', NULL, 0.00, '', '0', NULL, '2', 'Fresher have Designing Skills Can be trained kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-08-30 02:59:22', 1, '2022-08-30 03:03:45', 0, NULL, 1),
(10016, 'VISHNU PRIYA R', '23', '8122522481', '9962359246', 'rvishnupriyar99@gmail.com', '1999-06-12', 23, '2', '2', 'V RAVI', 'ENGINEER', 50000.00, 1, 0.00, 30000.00, 'MaraimalaiNagar', 'MaraimalaiNagar', '2208300025', '1', '1', 'upload_files/candidate_tracker/21931773499_VISH-resume.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance(Maraimalainagar) No basic ideas in Javascript looking for Bank openings Not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 03:09:56', 92, '2022-08-30 03:18:39', 0, NULL, 1),
(10017, 'Gowtham', '14', '9500604801', '9043494473', 'gowtham950060@gmail.com', '2000-03-16', 22, '3', '2', 'Mayil', 'Flutter', 10000.00, 2, 0.00, 10000.00, 'Tirupattur', 'Tirupur', '2208300026', '', '1', 'upload_files/candidate_tracker/56138492768_GOWTHAM-V.doc', NULL, '3', '2022-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-30 03:31:56', 1, '2022-08-30 03:49:57', 0, NULL, 1),
(10018, 'bala', '6', '8939467959', '', 'subramaniyanbala176@gmail.com', '1998-05-25', 24, '2', '2', 'chandrasekar', 'sequence', 15000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2208310001', '2', '2', 'upload_files/candidate_tracker/31005272018_bala resume.pdf', NULL, '1', '2022-09-01', 0, '', '3', '59', '2022-09-06', 199000.00, '', '2', '1970-01-01', '2', 'Selected for Babu Team  - Staff Role', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-31 10:07:28', 60, '2022-09-02 04:48:06', 0, NULL, 1),
(10019, 'Suresh', '31', '7358631600', '7299625740', 'sureshravi369369@gmail.com', '1999-06-03', 23, '2', '2', 'Suresh', 'Kuli', 200000.00, 2, 0.00, 15000.00, 'Medavakkam', 'Medavakkam', '2209010001', '1', '1', 'upload_files/candidate_tracker/54232472239_front-End developer suresh.pdf', NULL, '1', '2022-09-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher 36kms up and down not open for TxxampC not much good in skills not suitable salary exp is high', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-01 09:48:06', 85, '2022-09-01 10:09:43', 0, NULL, 1),
(10020, 'uvarani k', '4', '9600713755', '', 'yuvaranikannan64@gmail.com', '1999-05-31', 23, '2', '2', 'kannan k', 'nil', 15000.00, 1, 0.00, 10000.00, 'thirukovilur', 'thirukovilur', '2209010002', '2', '1', 'upload_files/candidate_tracker/57262710126_CV_2022082417363872.pdf', NULL, '2', '2022-09-01', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'From villupuram .no idea about telecalling, not ok with sales..', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-01 10:49:48', 1, '2022-09-01 10:53:40', 0, NULL, 1),
(10021, 'pavithra v', '4', '8807639273', '', 'pavithra27061999@gmail.com', '1999-06-27', 23, '2', '2', 'veeramani b', 'driver', 13000.00, 1, 0.00, 10000.00, 'mugaiyur', 'mugaiyur', '2209010003', '2', '1', 'upload_files/candidate_tracker/70005842877_PAVITHRA RESUME.pdf', NULL, '1', '2022-09-01', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'from villupuram .. average in Convincing skills... will not sustain in our process', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-01 10:55:16', 1, '2022-09-01 12:42:28', 0, NULL, 1),
(10022, 'Sneha.S', '11', '8825847260', '7339504827', 'iamsneha1812@gmail.com', '2000-12-18', 21, '2', '2', 'Selva Kumar.R', 'Business Man', 20000.00, 2, 15000.00, 15000.00, 'No.3,Vallal Pari Nagar 9th St,Pallikaranai, Ch-100', 'No.3, Vallal Pari Nagar 9th St,Pallikaranai,Ch-100', '2209010004', '1', '2', 'upload_files/candidate_tracker/47021495521_Sneha Updated Resume.pdf', NULL, '1', '2022-09-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have 3 months exp in Recruitment,no proper reasons for relieving,not open with TxxampC will not sustain not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-01 11:17:20', 85, '2022-09-01 11:39:30', 0, NULL, 1),
(10023, 'Gowtham kannan .R', '2', '8344334848', '', 'gauthamk12111995@gmail.com', '1995-11-12', 26, '2', '2', 'Ravi.S', 'Farmer', 25000.00, 1, 0.00, 18000.00, 'Theni', 'Porur', '2209010005', '1', '1', 'upload_files/candidate_tracker/24164278621_Gowtham1_Resume.pdf', NULL, '1', '2022-09-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT,Career Gap Not much good in skills,not open with TxxampC Will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-01 11:36:51', 1, '2022-09-01 11:42:25', 0, NULL, 1),
(10024, 'Jaswanth', '31', '7397498525', '', 'Jaswanthtrg537@gmail.com', '2002-04-05', 20, '2', '2', 'Giri TR', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Ponneri', 'Thiruvallur', '2209010006', '1', '1', 'upload_files/candidate_tracker/21633194588_RESUMENEW.pdf', NULL, '1', '2022-09-01', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'From ponneri 2hrs travel not ready to shifting.. not much good in html xxampcss', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-01 12:31:47', 1, '2022-09-01 01:08:28', 0, NULL, 1),
(10025, 'Keerthana', '31', '6381411101', '', 'Keerthi180923@gmail.com', '2007-09-01', 15, '2', '2', 'Ragupathy', 'Fruit shop', 15000.00, 2, 0.00, 25000.00, 'Poonthanmalee', 'Poonthanmalee', '2209010007', '1', '1', 'upload_files/candidate_tracker/22758877021_keerthanaresume.pdf', NULL, '1', '2022-09-01', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1hr travel ...will not sustain in our role ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-01 12:32:09', 85, '2022-09-01 01:07:13', 0, NULL, 1),
(10026, 'Mir mohamed moin Abbas', '11', '7010033836', '7299179021', 'Mm7928@srmist.edu.in', '1999-07-05', 23, '2', '2', 'Mir Ali', 'Hr', 50000.00, 1, 0.00, 17000.00, 'Royapettah', 'Royapettah', '2209010008', '1', '1', 'upload_files/candidate_tracker/1644749020_ABBAS RESUME.pdf', NULL, '1', '2022-09-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good, have a plan to travel abroad for the studies,willnot sustain more than 7 months', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-01 12:32:25', 85, '2022-09-01 03:37:11', 0, NULL, 1),
(10027, 'Tamilarasi v', '4', '9360554452', '', 'Tamilvengadesan9360@gmail.com', '2000-07-15', 22, '2', '2', 'Vengadesan', 'Shop keeper', 15000.00, 1, 0.00, 10000.00, 'Thirukovilur', 'Chennai', '2209010009', '2', '1', 'upload_files/candidate_tracker/759755356_CV_2022082417363872.pdf', NULL, '1', '2022-09-01', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not suit for telecalling ... no convincing skill...', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-01 12:36:34', 1, '2022-09-01 12:41:07', 0, NULL, 1),
(10028, 'Prakash Raja S', '22', '7338952826', '9150939498', 'prakashrajasegaran082@gmail.com', '1998-04-09', 24, '1', '2', 'D. shantha Kumari', 'House wife', 30000.00, 2, 25000.00, 30000.00, 'Chennai', 'Chennai', '2209010010', '', '2', 'upload_files/candidate_tracker/38971859257_Prakash Raja Segaran - Resume - Copy.docx.pdf', NULL, '1', '2022-09-01', 0, 'JOBS', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Will come for a final round - Product Support,Can be trained ', '2', '1', '0', '1', '1', '0', '2', '2022-09-02', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-01 12:45:26', 1, '2022-09-01 12:52:22', 0, NULL, 1),
(10029, 'Azra Nausheen Khanam', '16', '9940611372', '', 'azrakhanam26@gmail.com', '1998-03-26', 24, '2', '2', 'Khaleel Ahmed Baig', 'Working', 40000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2209010011', '1', '2', 'upload_files/candidate_tracker/30728459730_1_Azra Resume(2).pdf', NULL, '1', '2022-09-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-01 12:45:31', 85, '2022-09-02 09:40:44', 0, NULL, 1),
(10030, '', '0', '9840366452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209010012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-01 01:30:15', 0, NULL, 0, NULL, 1),
(10031, 'RUPAN', '16', '9566084754', '', 'rupanm21111997@gmail.com', '1997-11-27', 24, '2', '1', 'Heera', 'House wife', 15000.00, 2, 11000.00, 18000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2209010013', '1', '2', 'upload_files/candidate_tracker/73899426033_Rupan M (CV) .pdf', NULL, '1', '2022-09-02', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-01 04:19:43', 85, '2022-09-02 09:41:03', 0, NULL, 1),
(10032, 'THIRUMALAI S', '16', '9962692693', '', 'thirumalaithiru06@gmail.com', '1999-06-13', 23, '3', '2', 'Sivalingam s', 'Farmer', 100000.00, 2, 9000.00, 12000.00, 'Medavakkam', 'Chennai', '2209010014', '', '2', 'upload_files/candidate_tracker/7782013705_t cv.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Database Management No Communication not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-01 08:19:47', 1, '2022-09-07 12:18:06', 0, NULL, 1),
(10033, 'Sanjay Kumar', '6', '9361065707', '', 'Sureshsanjaykumar296@gmail.com', '2001-01-03', 21, '1', '2', 'Suresh.V', 'Tea shop', 20000.00, 1, 0.00, 18000.00, 'Erode', 'Erode', '2209020001', '', '1', 'upload_files/candidate_tracker/52728080283_sanjay.pdf', NULL, '1', '2022-09-02', 0, 'P1351', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'rejected not fit for us', '5', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-02 09:35:52', 1, '2022-09-02 10:06:45', 0, NULL, 1),
(10034, 'Balaji k', '6', '9944013383', '9791219509', 'hardikbala3344@gmail.com', '1996-07-30', 26, '1', '2', 'Kaliyappan', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Paruvachi', 'Paruvachi', '2209020002', '', '1', 'upload_files/candidate_tracker/67465560058_BALAJI (1).docx', NULL, '1', '2022-09-02', 0, 'P1352', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'not suitable..', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-02 11:21:35', 1, '2022-09-02 11:26:49', 0, NULL, 1),
(10035, 'Nithish K', '4', '9344115194', '9566103028', 'nithishkanthan25032000@gmail.com', '2000-03-25', 22, '3', '2', 'Kanthan D', 'Driver', 25000.00, 1, 0.00, 12000.00, 'No.60/1,New street, Sirukarumbur, ranipet', 'G9 new police line(TNPHC),Pudupet', '2209020003', '', '1', 'upload_files/candidate_tracker/28393338669_NITHISH K .pdf', NULL, '1', '2022-09-02', 0, '', '3', '59', '2022-09-05', 126312.00, '', '3', '2022-10-17', '2', 'Selected for Elite - Arumbakkam - Consultant role Need to analyse in 7 days of training', '1', '2', '1', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-02 02:52:00', 60, '2022-09-03 10:20:01', 0, NULL, 1),
(10036, 'Anitha Arokiamary I', '16', '8056131469', '9840382975', 'anithairudhayaraj2000@gmail', '2000-05-10', 22, '2', '2', 'Irudhayaraj M', 'Carpenter', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209020004', '1', '1', 'upload_files/candidate_tracker/50037707095_Anitha Resume2022.pdf', NULL, '1', '2022-09-03', 0, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok,5050 on sustainability can be trained in the Renewals/MIS kindly check and let me know your inputs', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-02 03:13:10', 85, '2022-09-03 10:12:39', 0, NULL, 1),
(10037, 'SIVAPRASANTH. C', '6', '9578507914', '', 'Sivaprasanth5566@gmail.com', '2002-03-25', 20, '2', '2', 'Chandran L', 'Farmar', 10000.00, 0, 0.00, 15000.00, 'Sathiyamangalam', 'Sathiyamangalam', '2209020005', '1', '1', 'upload_files/candidate_tracker/31242479975_siva resume (1).docx', NULL, '1', '2022-09-03', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected for sustainibilty doubt', '5', '1', '', '4', '7', '', '2', '2022-09-07', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-02 03:29:24', 85, '2022-09-03 09:48:48', 0, NULL, 1),
(10038, 'Riyaz Ahamed', '22', '9080253629', '', 'riyazahamed_g@hotmail.com', '1982-10-19', 39, '2', '1', 'Ashrafunnisa Begum', 'Bpo', 30000.00, 1, 26000.00, 15000.00, '11, 1St st., Anjaneya nagar, Zamin Pallavaram', 'Chennai', '2209020006', '1', '2', 'upload_files/candidate_tracker/34993555889_Resume_Riyaz.docx', NULL, '1', '2022-09-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-02 03:32:29', 85, '2022-09-03 09:49:07', 0, NULL, 1),
(10039, 'K Tamilselvan', '6', '8248452216', '', 'limattamil2k@gmail.com', '2007-09-03', 0, '1', '2', 'P.krishnan', 'Retired printing press', 20000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2209030001', '', '1', 'upload_files/candidate_tracker/75053727948_k.tamilselvan resume.docx', NULL, '1', '2022-09-03', 0, 'P1333', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for us..', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-03 10:16:45', 60, '2022-09-03 01:43:17', 0, NULL, 1),
(10040, 'Pradeep m', '16', '9108273928', '', 'Pradeepmiskcon@gmail.com', '1991-06-29', 31, '2', '2', 'Mohan', 'Auto body builder', 10000.00, 1, 16000.00, 18000.00, 'Chennai', 'Chennai', '2209030002', '2', '2', 'upload_files/candidate_tracker/31610764870_Pradeep_resumee_15 (4).docx', NULL, '1', '2022-09-03', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for our domain can be trained should come for final round this Monday(03/Sep/2022)', '3', '2', '0', '1', '1', '0', '2', '2022-09-05', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-03 10:25:31', 1, '2022-09-03 10:27:36', 0, NULL, 1),
(10041, 'Sukumar R', '16', '7358409959', '7358664748', 'sugumaran2025@gmail.com', '1999-05-06', 23, '2', '2', 'Ramu S', 'Daily Labour', 18000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2209030003', '1', '2', 'upload_files/candidate_tracker/71824317855_Sukumar Resume.pdf.pdf', NULL, '1', '2022-09-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-03 10:33:23', 1, '2022-09-03 10:36:21', 0, NULL, 1),
(10042, 'Ajithkumar', '31', '8870585766', '9095528501', 'Ajithjr173@gmail.com', '1996-01-05', 26, '2', '2', 'Pandurangan', 'Father', 30000.00, 1, 0.00, 20000.00, 'Krishnagiri', 'Krishnagiri', '2209030004', '1', '1', 'upload_files/candidate_tracker/21835105641_pdf_converter_202209034325.pdf', NULL, '1', '2022-09-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'no basic skills  not suitable long career gap will not sustain\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-03 10:35:38', 1, '2022-09-03 10:44:14', 0, NULL, 1),
(10043, 'Venkatesh P', '31', '7401682809', '', 'Venkyparamasivam18@gmail.com', '1999-06-21', 23, '2', '2', 'Paramasivam A', 'Salesman', 15000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2209030005', '1', '1', 'upload_files/candidate_tracker/21163167403_Venkatesh.pdf', NULL, '1', '2022-09-03', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good at html, CSS xxamp JS. Sustainability doubts.\nso.. SNR To kavya  then 3rd round by tamilmani .. finally rejected by gokul.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-03 11:21:38', 85, '2022-09-09 03:08:34', 0, NULL, 1),
(10044, 'Babu', '16', '6304282588', '', 'jvbabu1998@gmail.com', '1998-04-18', 24, '2', '2', 'Vinayagam', 'Bussiness', 10000.00, 0, 0.00, 16000.00, 'Chithoor', 'Villivakkam', '2209030006', '1', '1', 'upload_files/candidate_tracker/9882509476_Babu. Pdf.pdf', NULL, '1', '2022-09-03', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not suit for our process .. no idea about mIS .. not open up', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-03 11:51:14', 1, '2022-09-03 12:47:33', 0, NULL, 1),
(10045, 'Rajagopal', '16', '9032537223', '', 'Skrajagopal2000@gmail.com', '2000-07-09', 22, '2', '2', 'Kumar', 'Cotton fabric', 20000.00, 3, 0.00, 15000.00, 'Chithoor', 'Villivakkam', '2209030007', '1', '1', 'upload_files/candidate_tracker/78833091496_rajagopal SK.doc', NULL, '1', '2022-09-03', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'no communication, not open up. Career gap too', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-03 11:52:31', 1, '2022-09-03 12:37:34', 0, NULL, 1),
(10046, '', '0', '8344862728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209030008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-03 01:07:14', 0, NULL, 0, NULL, 1),
(10047, 'JEEVA V', '4', '7373277021', '8838792282', 'v.jeeva.jana@gmail.com', '1999-11-30', 22, '3', '2', 'Venakatesh TR', 'DRIVER', 12000.00, 2, 0.00, 15000.00, 'Arakkonam', 'Ambattur', '2209030009', '', '1', 'upload_files/candidate_tracker/3672745710_RESUME NEW.pdf', NULL, '1', '2022-09-03', 0, '', '3', '59', '2022-09-12', 132000.00, '', '7', '1970-01-01', '2', 'selected for Arumbakkam - Consultant Role', '1', '2', '1', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-03 02:25:57', 60, '2022-09-03 04:40:08', 0, NULL, 1),
(10048, 'Sheeja M', '22', '8854531976', '9176190046', 'Sheejasri65@gmail.com', '2000-11-22', 21, '2', '2', '-', '-', 150000.00, 2, 0.00, 15000.00, 'thiruvottiyur, Chennai', 'Thiruvottiyur, Chennai', '2209050001', '1', '1', 'upload_files/candidate_tracker/35161386034_Sheeja_Color Format – 03.pdf', NULL, '1', '2022-09-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for TxxampC also not comfort in timings not suitable will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-05 09:53:49', 85, '2022-09-05 10:14:24', 0, NULL, 1),
(10049, 'Jayaharini.P', '16', '8925756708', '8072190191', 'p.harinipanju2k@gmail.com', '2000-07-18', 22, '3', '2', 'Packrisamy.P', 'Chellammal\'s college(junior.asst)', 200000.00, 0, 0.00, 15000.00, 'Thiruninravur', 'Thiruninravur', '2209050002', '', '1', 'upload_files/candidate_tracker/96714078404_JayaHarini @ RESUME.pdf', NULL, '1', '2022-09-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too Long Distance Fresher Will not sustain in our Roles', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-05 09:55:03', 1, '2022-09-05 10:16:13', 0, NULL, 1),
(10050, 'Praveen.s', '23', '6380137909', '9380044233', 'Pravin0899@gmail.com', '1999-08-22', 23, '2', '2', 'Shankar s', 'Bike machnic', 12000.00, 1, 0.00, 13000.00, 'Chennai-5', 'No 18 Krishnappa Street,triplicane,chennai-5', '2209050003', '1', '1', 'upload_files/candidate_tracker/35990471043_Praveen_s Resume.pdf', NULL, '1', '2022-09-05', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Can be trained need some time to give his confirmation', '2', '1', '', '1', '1', '', '2', '2022-09-07', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-05 09:56:32', 85, '2022-09-05 10:14:16', 0, NULL, 1),
(10051, 'A. Abdul Razzaq', '4', '8220728868', '6379951053', 'Abdulrazzaq98404@gmail.com', '2003-04-10', 19, '2', '2', 'A. Faritha bee', 'House wife', 11000.00, 1, 15000.00, 16000.00, '5b/17 sagar apartment, Anna street, Gandhinagar', '5b/17 Sagar Apartment, Anna Street, Gandhinagar', '2209050004', '1', '2', 'upload_files/candidate_tracker/87313084457_Abdul Razaq.pdf', NULL, '1', '2022-09-05', 0, '', '3', '59', '2022-09-09', 138948.00, '', '4', '2023-02-04', '2', 'Selected for Arumbakkam -  Consultant Role', '1', '2', '1', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-05 10:06:39', 60, '2022-09-08 04:00:30', 0, NULL, 1),
(10052, 'hariharan pandian', '22', '8056079752', '', 'harimdc@outlook.com', '1991-01-03', 31, '2', '2', 'm.pandian', 'retd navy', 2.00, 1, 20000.00, 30000.00, 'chrompet', 'chrompet', '2209050005', '1', '2', 'upload_files/candidate_tracker/49634159292_Hariharan Pandian CV(Content Writing).pdf', NULL, '1', '2022-09-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Aged Had his higher studies in Abroad,also his salary Exp is high', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-05 10:23:34', 85, '2022-09-05 10:50:20', 0, NULL, 1),
(10053, 'Shankaran', '23', '6369213300', '', 'Shankaran1912@gmail.com', '2000-12-19', 21, '2', '2', 'Selvam', 'Carpenter', 10000.00, 1, 0.00, 25000.00, 'Chrompet', 'Chrompet', '2209050006', '1', '1', 'upload_files/candidate_tracker/85402579944_Shankaran Resume .pdf', NULL, '1', '2022-09-05', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Seems not much ok with TxxampC if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-09-08', '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-05 10:32:22', 1, '2022-09-05 10:54:23', 0, NULL, 1),
(10054, 'Ravikumaran Elango', '23', '9489574373', '', 'Kuttyravikumaran@gmail.com', '1996-05-20', 26, '2', '2', 'Elango', 'Driver', 20000.00, 1, 0.00, 20000.00, '3/17, konur(po),namakkal.637207', 'Plot No.929 TNHB colony, Velachery 2', '2209050007', '1', '1', 'upload_files/candidate_tracker/69415093205_ravikumaran elango.pdf', NULL, '1', '2022-09-05', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for UIUX Can be trained kindly check and let me know your interest', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-05 10:33:18', 85, '2022-09-05 10:50:43', 0, NULL, 1),
(10055, 'M.Marieswari', '31', '6379709902', '9791735808', 'mariesrittu1123@gmail.com', '2001-12-11', 20, '2', '2', 'A Muniyasamy', 'Driver', 15000.00, 3, 0.00, 13000.00, 'Kovilpatti', 'Chengalpattu', '2209050008', '1', '1', 'upload_files/candidate_tracker/1997523739_Marieswari .pdf', NULL, '1', '2022-09-05', 0, '', '3', '59', '2022-09-12', 96000.00, '', '0', NULL, '2', 'Fresher Can be Trained have basic skills Final round interviewed by Gokul and selected', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-05 11:00:29', 1, '2022-09-05 11:25:52', 0, NULL, 1),
(10056, 'THULASI.P', '16', '9840627286', '9710813737', 'MAILATTHULASI@GMAIL.COM', '1999-10-23', 22, '2', '2', 'PERUMAL.G', 'Auto driver', 12000.00, 1, 13000.00, 16000.00, 'Ashok nagar', 'Ashok nagar', '2209050009', '1', '2', 'upload_files/candidate_tracker/30828245970_RESUME-.pdf 1.pdf', NULL, '1', '2022-09-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-05 11:15:47', 85, '2022-09-05 12:16:14', 0, NULL, 1),
(10057, 'Sriram.S', '21', '8056066126', '', 'Sriramsrinivasan1990@gmail.com', '1990-07-24', 32, '2', '1', 'Nithya.S', 'Housewife', 2.00, 1, 18.00, 25000.00, 'No 10 andal nagar 4th cross streets Adambakkam', 'Chenn', '2209050010', '1', '2', 'upload_files/candidate_tracker/49975645957_S.SRIRAM RESUME Admin.PDF', NULL, '1', '2022-09-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-09-05 11:17:58', 1, '2022-09-05 11:45:17', 0, NULL, 1),
(10058, 'Shalin G', '4', '8610199740', '9176117252', 'shalinshynath79@gmail.com', '1995-01-10', 27, '2', '2', 'Gunasekaran', 'Retired Chennai Port Trust', 25000.00, 2, 470000.00, 650000.00, '128/76/3C village street, sathuma nagar, ch -19', '128/76/3C Village Street, Sathuma Nagar, Ch -19', '2209050011', '1', '2', 'upload_files/candidate_tracker/4874910167_1660239821534_Resume.docx', NULL, '1', '2022-09-05', 35, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Working in Byjuxquots Salary Ex p is 6 LPA Not suitable for our Roles Will not sustain\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-05 11:18:16', 85, '2022-09-05 11:35:26', 0, NULL, 1),
(10059, 'S. Suganthan', '4', '9360721655', '9965419905', 'Suganthrashmika996691@gmail.com', '2002-05-10', 20, '4', '2', 'P. Senthil', 'Conductor', 13000.00, 1, 0.00, 12000.00, 'Anthiyur', 'Anthiyur', '2209050012', '', '1', 'upload_files/candidate_tracker/66883471566_pdf_converter_202209053136.pdf', NULL, '1', '2022-09-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-05 11:22:11', 1, '2022-09-05 12:14:19', 0, NULL, 1),
(10060, 'P.Kavitha', '6', '9384143626', '9445238921', 'kavithasathya2001@gmail.com', '2001-06-22', 21, '4', '2', 'T.Prakash Sathya', 'Daily Wager', 15000.00, 1, 0.00, 12000.00, '457, Vasantha nagar ,kaveri rs Road, Pallipalayum', '457, Vasantha Nagar ,Kaveri Rs Road, Pallipalayum', '2209050013', '', '1', 'upload_files/candidate_tracker/59274268855_Kavitha resume-compressed.pdf', NULL, '1', '2022-09-05', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for us', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-05 11:22:34', 85, '2022-09-06 02:50:24', 0, NULL, 1),
(10061, 'A.Bharani', '6', '7639340792', '9865181722', 'bharanianbarasu383@gmail.com', '2002-04-03', 20, '4', '2', 'N.Anbarasu', 'Daily Wager', 12000.00, 1, 0.00, 12000.00, '44/53,M.G.R.Nagar ,Veerappan Chatram (PO),Erode-04', '44/53,M.G.R.Nagar ,Veerappan Chatram (PO),Erode-04', '2209050014', '', '1', 'upload_files/candidate_tracker/37564758141_A.Bharani Resume.pdf', NULL, '1', '2022-09-05', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-05 11:22:54', 85, '2022-09-06 02:45:15', 0, NULL, 1),
(10062, 'Ashokraj S', '23', '9360351732', '9585406074', 'sashokraj4824157007@gmail.com', '2007-09-05', 0, '2', '2', 'Shanmugam', 'Farmer', 72000.00, 3, 15000.00, 16000.00, 'Ariyalur', 'Ariyalur', '2209050015', '1', '2', 'upload_files/candidate_tracker/5918950230_Ashokraj.s.pdf', NULL, '1', '2022-09-05', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas not suitable will not work it out for our Roles', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-05 11:32:02', 85, '2022-09-05 11:45:14', 0, NULL, 1),
(10063, 'balaji.R', '16', '9344545372', '7548823596', 'balajiuma2712@gmail.com', '2000-12-27', 21, '2', '2', 'Ramesh', 'Two wheeler mechanical', 10000.00, 1, 0.00, 20000.00, '28 Selva vinayagar koil St, Kilvenpakkam ranipet', '28 Selva vinayagar koil St kilvenpakkam ranipet', '2209050016', '1', '1', 'upload_files/candidate_tracker/11986398340_RESUMEbalaji.pdf', NULL, '1', '2022-09-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills not suitable for our roles will not sustain\n', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-05 11:40:20', 85, '2022-09-05 12:16:44', 0, NULL, 1),
(10064, 'p Ashok', '6', '9698311530', '6380228991', 'anashok31@gmail.com', '1999-10-26', 22, '1', '2', 'V Periyasami', 'formar', 60000.00, 0, 13.50, 18000.00, '1/131 Kallur,west street,Cuddalore dt -606108', 'Nandanam,chamiers road -35', '2209050017', '', '2', 'upload_files/candidate_tracker/66651912545_My Resume..docx', NULL, '1', '2022-09-05', 0, 'CA 156', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has one yr of exp in hathway bB sales... okay with process check and update your feedback', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-05 11:42:48', 97, '2022-09-05 05:32:03', 0, NULL, 1),
(10065, 'Roshan Kumar P', '23', '9087277628', '', 'rkpraveen1276@gmail.com', '2000-05-17', 22, '2', '2', 'Prem Kumar P', 'General manager', 700000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2209050018', '1', '1', 'upload_files/candidate_tracker/50078322902_Resume.pdf', NULL, '1', '2022-09-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher in UIUX Salary exp is Very high also not much comfort in TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-05 12:15:48', 1, '2022-09-05 12:22:22', 0, NULL, 1),
(10066, 'R.Divya', '20', '9360249506', '9710793416', 'Jannuelis1209@gmail.com', '2002-03-25', 20, '2', '2', 'R.Kokila', 'Tailer', 13000.00, 0, 0.00, 13000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2209050019', '1', '1', 'upload_files/candidate_tracker/17693514859_DIVYA RESUME FINAL PDF.pdf', NULL, '1', '2022-09-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-05 12:42:16', 1, '2022-09-05 01:01:41', 0, NULL, 1),
(10067, 'r.elizabeth', '20', '8939503286', '9360249506', 'jannuelis1209@gmail.com', '2002-01-08', 20, '2', '2', 'S.Raj kumar', 'Coolie', 20000.00, 2, 0.00, 16000.00, 'Tondiarpet', 'Tondiarpet', '2209050020', '1', '1', 'upload_files/candidate_tracker/96564228695_Elis resume 2.pdf', NULL, '1', '2022-09-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-05 12:45:37', 1, '2022-09-05 12:59:57', 0, NULL, 1),
(10068, 'Swetha aldrine', '5', '8428553222', '9940465587', 'swethaaldrine97@gmail.com', '1997-12-18', 24, '2', '2', 'Aldrine David', 'Purchase Manager', 40000.00, 1, 17500.00, 22000.00, 'Chennai', 'Chennai', '2209050021', '1', '2', 'upload_files/candidate_tracker/12846633110_updatedresume.pdf', NULL, '1', '2022-09-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok Fresh to our domain,5050 profilebut she was not interested much in the profile', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-05 01:02:17', 1, '2022-09-05 01:06:42', 0, NULL, 1),
(10069, 'S.Ruby', '6', '9944059967', '8754863229', 'rubinaruby6156@gmail.com', '2000-06-15', 22, '2', '1', 'A.sagayappan', 'Telecalling', 12000.00, 1, 10.00, 15000.00, 'Nadarmedu,jothi hospital back side', 'Pasur, kilambadi', '2209050022', '2', '2', 'upload_files/candidate_tracker/32852991505_IMG_20220116_123801_946.pdf', NULL, '1', '2022-09-05', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-05 03:57:45', 85, '2022-09-06 02:52:37', 0, NULL, 1),
(10070, '', '0', '8939200701', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209050023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-05 04:57:55', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10071, 'RAJESWARI', '6', '8015139832', '', 'rajekulasekaran999@gmail.com', '1999-10-10', 22, '2', '1', 'W/o v. HARIKRISHNAN', 'Graphic designer', 40000.00, 1, 15000.00, 18000.00, 'Ramapuram Chennai', 'Ramapuram Chennai', '2209050024', '1', '2', 'upload_files/candidate_tracker/96260986557_Raji', NULL, '1', '2022-09-07', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile have 10  months Exp in Telecalling Salary Exp is somewhat high kindly check and let me know your interest', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-05 05:10:56', 85, '2022-09-07 01:07:40', 0, NULL, 1),
(10072, 'r saran', '31', '8248629031', '', 'ramusaran99999@gmail.com', '1998-10-30', 23, '2', '2', 'm ramu', 'nil', 65000.00, 1, 0.00, 4.00, 'Chennai', 'Chennai', '2209060001', '1', '1', 'upload_files/candidate_tracker/17385807304_saran cv..pdf', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Sal Exp is high Nt much comfort in TxxampC Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-06 10:04:47', 1, '2022-09-06 10:10:00', 0, NULL, 1),
(10073, 'iyyapan', '4', '8124582364', '', 'iyyappant205685@gmail.com', '1995-05-01', 27, '2', '2', 'vembuli', 'farmer', 10000.00, 5, 14000.00, 15000.00, 'chennai', 'chennai', '2209060002', '2', '2', 'upload_files/candidate_tracker/16684708645_CV_2022082417363872.pdf', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Sales Calls and the customer Visit For CRM Role  age and the Exp not getting mapped', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 10:09:57', 1, '2022-09-06 10:14:43', 0, NULL, 1),
(10074, 'Jothi Esakiammal', '23', '6383341173', '9489163437', 'jothij1998@gmail.com', '1998-06-27', 24, '2', '2', 'Jeya Durai', 'Daily wages', 20000.00, 3, 250000.00, 300000.00, 'Thenkasi', 'Chennai', '2209060003', '1', '2', 'upload_files/candidate_tracker/51281035540_JOTHI RESUME (1) (1).pdf', NULL, '1', '2022-09-06', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp for 10 months with 18K only HTML CSS  non knowledge in JS Not suitable Salary exp is high\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-06 10:25:35', 1, '2022-09-06 10:59:15', 0, NULL, 1),
(10075, 'Nivetha', '2', '9677524954', '', 'Nivethasumathi1999@gmail.com', '1999-11-10', 22, '2', '2', 'Anbalagan', 'Farmer', 25000.00, 1, 0.00, 25000.00, 'Namakkal', 'Perumbakkam', '2209060004', '1', '1', 'upload_files/candidate_tracker/71767430112_A.Nivetha_Resume.pdf', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills knowledge seems to be very slow not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-06 10:26:28', 1, '2022-09-06 11:23:42', 0, NULL, 1),
(10076, 'naresh kumar s', '4', '9345794173', '', 'nareshvasan579@gmail.com', '2001-11-21', 20, '2', '2', 'srinivasan', 'business', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2209060005', '2', '1', 'upload_files/candidate_tracker/56678560323_Praveen resume.pdf', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 10:30:44', 1, '2022-09-06 10:33:06', 0, NULL, 1),
(10077, '', '0', '9566022277', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209060006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-06 10:35:16', 0, NULL, 0, NULL, 1),
(10078, 'R saravanan Rajendheran', '2', '6380707901', '9363190029', 'saravanan807901@gmail.com', '1999-05-30', 23, '3', '2', 'Rajendheran', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Cheyyar', 'Chennai', '2209060007', '', '1', 'upload_files/candidate_tracker/68204370394_SARAVANAN_RESUME_001__1_ (1).pdf', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for JAva Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 11:30:29', 1, '2022-09-06 11:38:23', 0, NULL, 1),
(10079, 'Divya. N', '16', '8122181335', '9940453976', 'divyaraj2899@gmail.com', '1999-07-28', 23, '2', '2', 'Nagaraj. V', 'Labour', 15000.00, 2, 14.50, 17000.00, 'Chennai', 'Chennai', '2209060008', '1', '2', 'upload_files/candidate_tracker/78343779645_Divya (1).docx', NULL, '1', '2022-09-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need time to give her confirmation,Have Exp in Renewal Calls but no English communication if she comes back let us try', '3', '1', '', '1', '1', '', '2', '2022-09-08', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-06 11:33:57', 85, '2022-09-06 12:17:58', 0, NULL, 1),
(10080, 'Sakthivel S', '13', '6374058281', '', 'sakthinaveen8489@gmail.com', '2001-02-23', 21, '3', '2', 'S. Latha', 'Former', 10000.00, 1, 0.00, 200000.00, 'Perambalur', 'Perambalur', '2209060009', '', '1', 'upload_files/candidate_tracker/90476727440_sakthi (1).docx', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 11:35:45', 1, '2022-09-06 11:50:14', 0, NULL, 1),
(10081, 'M.Ganesh kumar', '13', '9363291098', '9600556118', 'Ganeshkumarengg18@gmail.com', '2000-08-02', 22, '3', '2', 'Murugesan.G', 'Formar', 60000.00, 4, 0.00, 20000.00, 'Kumbakonam', 'Chennai', '2209060010', '', '1', 'upload_files/candidate_tracker/58542613440_Ganesh kumar1.docx', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 11:51:46', 1, '2022-09-06 12:12:27', 0, NULL, 1),
(10082, 'Lisy sophia. A', '4', '8637450608', '8637440608', 'Lisysophia.a@gamil.com', '1999-07-06', 23, '4', '2', 'Arockia Mary. A', 'Cooking', 15000.00, 1, 15000.00, 15000.00, '29,19,th street anna nager thanjavur', '29,19th street anna nager thanhavur', '2209060011', '', '2', 'upload_files/candidate_tracker/47219402790_resume for lisy-1.docx', NULL, '1', '2022-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 11:52:18', 1, '2022-09-06 11:59:25', 0, NULL, 1),
(10083, 'Janani.L', '4', '9342048807', '8098903483', 'Vasuki17janani@gmail.com', '2000-07-17', 22, '4', '2', 'Loganathan.A', 'building contract', 15000.00, 2, 15000.00, 20000.00, 'Thanjavur', 'thanjavur', '2209060012', '', '2', 'upload_files/candidate_tracker/75643749153_Janani-Resume.pdf', NULL, '1', '2022-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 11:52:40', 1, '2022-09-06 11:59:31', 0, NULL, 1),
(10084, 'R.suganya', '6', '9698205351', '', 'rachelpricilla123@gmail.com', '1987-11-23', 34, '1', '2', 'Rajendran', 'Ret.conducter', 15000.00, 2, 10000.00, 11000.00, 'Erode', 'Erode', '2209060013', '', '2', 'upload_files/candidate_tracker/12096447063_1662446613552_1662446600748_1662446590316_1662446569492_suganya msc resume..docx', NULL, '1', '2022-09-06', 0, 'P1333', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for us', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-06 11:59:23', 85, '2022-09-06 02:43:28', 0, NULL, 1),
(10085, 'S .mugunthan', '4', '7558179688', '9962891401', 'mugunthanmac98@gmail.com', '1998-08-22', 24, '2', '2', 'A.Sivalingam', 'Experience in 1and half year customer supportive', 20000.00, 1, 15500.00, 20000.00, 'Chennaii Nungambakkam Tamilnadu', 'Chennai tamilnadu', '2209060014', '1', '2', 'upload_files/candidate_tracker/23830358641_mugunth.docx', NULL, '1', '2022-09-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic Skills,not suits for our Sales Got terminated in the last company not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-06 12:14:49', 85, '2022-09-06 12:35:54', 0, NULL, 1),
(10086, 'R. Mahalakshmi', '6', '6380793551', '', 'mahalakshmikabilesh@gmail.com', '1986-08-16', 0, '1', '1', 'Kalimuthu', 'Computer work', 25000.00, 2, 0.00, 12000.00, 'Erode', 'Erode', '2209060015', '', '1', 'upload_files/candidate_tracker/59313385702_1662447769656_1662447767717_1662447765582_maha resume.docx', NULL, '1', '2022-09-06', 0, 'P1333', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for us', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-06 12:25:26', 85, '2022-09-06 02:37:59', 0, NULL, 1),
(10087, 'M. Vanitha', '6', '9688229471', '9750459237', 'vanirajikavi@gmail.com', '1989-06-08', 33, '1', '1', 'Nandha kumar. N', 'Quality controller', 20000.00, 2, 0.00, 12000.00, 'Erode', 'Erode', '2209060016', '', '1', 'upload_files/candidate_tracker/52418422423_1662446925912_1662446921707_vani[1].m(1) (1).doc', NULL, '1', '2022-09-06', 0, 'P333', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-06 12:25:52', 85, '2022-09-06 02:33:54', 0, NULL, 1),
(10088, 'C.kirubasankari', '6', '9600986669', '9944207372', 'kirubasankari92it@gmail.com', '1992-07-17', 30, '1', '1', 'Panneerselvam', 'Farmer', 25000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2209060017', '', '1', 'upload_files/candidate_tracker/8012109197_resume1.docx', NULL, '1', '2022-09-06', 0, 'P333', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-06 12:26:21', 85, '2022-09-06 02:42:16', 0, NULL, 1),
(10089, 'Kishore', '31', '9344993287', '7395998119', 'kishoreyeager@gmail.com', '1999-11-16', 22, '2', '2', 'selvaraj', 'business', 30000.00, 2, 0.00, 25000.00, 'chennai', 'chennai', '2209060018', '1', '1', 'upload_files/candidate_tracker/65885889055_Resume_Kishore_Format6.pdf', NULL, '1', '2022-09-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', '5050 Profile Distance need to check sustainability doubts if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-09-08', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-06 12:31:05', 1, '2022-09-06 12:35:20', 0, NULL, 1),
(10090, 'Salman khan', '31', '9176781013', '9940175824', 'salmanaakhan19@gmail.com', '2000-12-19', 21, '3', '2', 'Shiri begum', 'Housewife', 20000.00, 1, 0.00, 20000.00, '33 laskar street alandur chennai', 'Chennai', '2209060019', '', '1', 'upload_files/candidate_tracker/56412385367_salman khan resume-4.docx', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Java Openings', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 12:42:05', 1, '2022-09-06 12:48:32', 0, NULL, 1),
(10091, 'Harisundar S', '5', '7667610063', '', 'harisundar218@gmail.com', '2000-05-14', 22, '3', '2', 'Saravanan s', 'Weavee', 15000.00, 1, 23050.00, 25000.00, 'W.pudupatti', 'Chennai', '2209060020', '', '2', 'upload_files/candidate_tracker/55799474212_237.PDF', NULL, '1', '2022-09-06', 0, '', '3', '59', '2023-02-01', 330000.00, '', '3', '2023-09-05', '1', 'Selected for Manikandan Team in Staff Role', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-06 12:47:39', 1, '2023-01-30 02:40:40', 0, NULL, 1),
(10092, 'Rethu', '23', '7338718119', '7401551599', 'rethu018@gmail.com', '2000-11-18', 21, '1', '2', 'Ravi kannan sudha', 'Fresher', 20000.00, 1, 0.00, 15000.00, 'West mambalam', 'West mambalam', '2209060021', '', '1', 'upload_files/candidate_tracker/94120368983_cv.2022.docx', NULL, '1', '2022-09-06', 0, 'M', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain have skills knowledge in designningleft her previous due to salary Exp ', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 02:20:45', 1, '2022-09-06 02:33:28', 0, NULL, 1),
(10093, 'Hari Haran M K', '14', '9345258156', '8220065580', 'itsmegarudan06@gmail.com', '1998-12-06', 23, '3', '2', 'Kubenduran', 'Textaill sales man', 10000.00, 1, 0.00, 15000.00, 'Madurai', 'West Saidapet', '2209060022', '', '1', 'upload_files/candidate_tracker/33952997883_Resume.pdf', NULL, '1', '2022-09-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to come back woht his confirmation Gokul Interviewed in the final Round', '2', '1', '0', '1', '1', '0', '2', '2022-09-07', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 02:21:02', 1, '2022-09-06 02:24:47', 0, NULL, 1),
(10094, 'ABDUL RAWOOF', '5', '9384656616', '', 'rawoof.abdul@rocketmail.com', '1988-04-20', 34, '1', '2', 'ABDUL HAKIM', 'Retd property tax collector', 30000.00, 4, 16000.00, 25000.00, '6/20 PENSIONERS LANE OLDWASHEARMANPET CHENNAI', 'CHENNAI', '2209060023', '', '2', 'upload_files/candidate_tracker/94856708511_Abdul resume.pdf', NULL, '1', '2022-09-06', 0, 'Vinoth', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for our industry', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-06 02:52:39', 60, '2022-09-06 07:42:57', 0, NULL, 1),
(10095, '', '0', '7338952052', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209060024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-06 05:32:13', 0, NULL, 0, NULL, 1),
(10096, 'Vaideeswari.T', '23', '8939790542', '', 'vaideeyd2000@gmail.com', '2000-08-21', 22, '2', '2', 'K. Thirumalai', 'Courier service', 10000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2209070001', '1', '1', 'upload_files/candidate_tracker/66862334915_VAIDEE-RESUME.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher  for UI UX Not much open with TxxampC,Waiting for the Inteview results with other 4 companies will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-07 10:35:54', 85, '2022-09-07 01:08:45', 0, NULL, 1),
(10097, 'Babu P', '5', '7358309592', '', 'israelmano011@gmail.com', '1993-02-11', 29, '3', '2', 'PENCILLAIH', 'cooli', 30000.00, 2, 26500.00, 32000.00, 'Chennai', 'Chennai', '2209070002', '', '2', 'upload_files/candidate_tracker/52864356305_pdf_20220907_090645_0000.pdf', NULL, '1', '2022-09-07', 20, '', '3', '59', '2022-09-26', 399000.00, '', '', '2022-10-05', '1', 'Selected for Manikandan Team  - Staff Role Commitment will be give by the manager on the day of joining', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-07 10:46:00', 60, '2022-09-08 06:05:20', 0, NULL, 1),
(10098, 'Mahalakshmi', '31', '7904068846', '', 'Kmahalakshmi1713@gmail.com', '2002-07-13', 20, '3', '2', 'Krishna moorthy', 'Auto driver', 15000.00, 1, 0.00, 16000.00, 'T.Nagar, chennai', 'T.Nagar, chennai', '2209070003', '', '1', 'upload_files/candidate_tracker/22890297679_Mahalakshmi.pdf', NULL, '1', '2022-09-07', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050 Can give a try for React Need time to confirm', '2', '2', '0', '1', '1', '0', '2', '2022-09-09', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 10:47:59', 1, '2022-09-07 11:24:24', 0, NULL, 1),
(10099, 'Sanjay S', '4', '8220432183', '9994541179', 'sanjaysasikumars@outlook.com', '2002-07-29', 20, '1', '2', 'Julie S', 'Tailor', 12000.00, 1, 0.00, 14000.00, 'Perundurai', 'Thoppupalayam', '2209070004', '', '1', 'upload_files/candidate_tracker/42868126359_sanjay.pdf', NULL, '1', '2022-09-07', 0, 'P1333', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 10:55:23', 1, '2022-09-07 11:01:05', 0, NULL, 1),
(10100, 'ANTONY SAMY', '13', '9384598217', '', 'antonysamy26387@gamil.com', '1997-04-16', 25, '3', '2', 'SAVARIMUTHU', 'Farmer', 15000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2209070005', '', '1', 'upload_files/candidate_tracker/70878117957_Antony AAA.pdf', NULL, '1', '2022-09-07', 0, '', '4', '63', NULL, 0.00, '', '0', NULL, '2', 'Fresher have a career Gap 5050 profile kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 11:03:52', 1, '2022-09-07 11:19:11', 0, NULL, 1),
(10101, 'NANISHAK', '31', '9949872701', '9032809265', 'Nanisha.doc@GMAIL.COM', '1998-03-28', 24, '3', '2', 'Govindharajulu', 'Agriculture work', 6000.00, 2, 0.00, 20000.00, 'Pannur village', 'Pannur church', '2209070006', '', '1', 'upload_files/candidate_tracker/22813301755_88878159300_1662532253309_1662532245373_Narmadha_Resume.docx', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Came Along with her sister Self Learning thinking a lot on TxxampC Need Time to check with her brother if she comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 11:46:36', 1, '2022-09-07 12:09:20', 0, NULL, 1),
(10102, 'Kabilan', '31', '7010588439', '9751212926', 'Kabilan25feb@gmail.com', '1999-02-25', 23, '3', '2', 'Pitchaimuthu', 'Business man', 30000.00, 1, 0.00, 40000.00, '151/A South Street, Uppidamangalam,karur', '151/A South Street, uppidamangalam, karur.', '2209070007', '', '1', 'upload_files/candidate_tracker/7143257376_Kabilan Pichaimuthu - CV.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic skills in JS Not suitable will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 11:49:49', 1, '2022-09-07 11:59:06', 0, NULL, 1),
(10103, 'V sethu pathy', '31', '6374948418', '', 'Sethupathy425@gmail.com', '1999-08-30', 23, '3', '2', 'M.venkatesan', 'Contractor', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2209070008', '', '1', 'upload_files/candidate_tracker/98873767321_RESUME-1.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills not open for a long term not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 12:00:05', 1, '2022-09-07 12:22:42', 0, NULL, 1),
(10104, 'Surya K', '31', '6382735583', '', 'Suryakamaraj20p1@gmail.com', '2001-07-07', 21, '3', '2', 'Kamaraj.P', 'Farmer', 20000.00, 1, 0.00, 25000.00, 'Salem', 'Chennai', '2209070009', '', '1', 'upload_files/candidate_tracker/6763511927_Resume_06_09_2022_05_31_42_pm.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Skills in JS only HTML CSS Will not sustain for a long in our roles', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 12:01:18', 1, '2022-09-07 12:09:48', 0, NULL, 1),
(10105, 'Selvin Prabhakaran.F', '31', '8110076863', '', 'selvinprabhakaran2@gmail.com', '2001-04-09', 21, '3', '2', 'Felixrajakumar.v', 'Conductor', 35000.00, 1, 0.00, 25000.00, 'Sivagangai', 'Chennai', '2209070010', '', '1', 'upload_files/candidate_tracker/86383706673_Resume_06_09_2022_06_16_51_PM.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher looking for Exp only will have some reference in the future will not run with us for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 12:04:14', 1, '2022-09-07 12:17:24', 0, NULL, 1),
(10106, 'nARMADHAG', '31', '9962890345', '9032809265', 'Gnarmadha1908@gmail.com', '2001-08-19', 21, '3', '2', 'Govindharajulu', 'Agriculture work', 6000.00, 2, 0.00, 15000.00, 'Pannur village', 'Chennai', '2209070011', '', '1', 'upload_files/candidate_tracker/54349107168_1662532253309_1662532245373_Narmadha_Resume.docx', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Came Along With Her Sister Self Learning Thinking A Lot On TxxampC Need Time To Check With Her Brother If She Comes Back Let Us Try', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 12:16:18', 1, '2022-09-07 12:19:32', 0, NULL, 1),
(10107, 'Ragul.D', '31', '7305290528', '7338708061', 'raguld1999@gmail.com', '1999-04-29', 23, '3', '2', 'Renugadevi D', 'Medical sales', 10000.00, 2, 0.00, 15000.00, 'Trichy', 'Chennai', '2209070012', '', '1', 'upload_files/candidate_tracker/6849415053_CV Ragul-2022.pdf.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'too long Distance friends are working in React to get exp looking for Job he has reference too will not run in a long not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 12:21:47', 1, '2022-09-07 12:26:37', 0, NULL, 1),
(10108, 'Sindhiya ellofar.D', '16', '9360392319', '9094467547', 'ellofarsindhiya@gmail.com', '2001-10-01', 20, '3', '2', 'Daniel than raj.S', 'Tailor', 20000.00, 1, 0.00, 13000.00, 'Ayanavaram', 'Ayanavaram', '2209070013', '', '1', 'upload_files/candidate_tracker/20893142918_SINDHIYAELLOFAR.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication  for our MIS Role not interested in Sales', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 01:30:49', 1, '2022-09-07 01:42:39', 0, NULL, 1),
(10109, 'S.SANTHOSH KUMAR', '16', '9360578439', '8428840048', 'santhoshsk0511@gmail.com', '2001-11-05', 20, '3', '2', 'SRINIVASAN', 'PRINTER', 30000.00, 1, 0.00, 15000.00, 'Vyasarpady', 'Redhills', '2209070014', '', '1', 'upload_files/candidate_tracker/32865340618_SANTHOSH RESUME.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Checked his writing skills not upto the mark,Will not sustain in our roles came along with his friend', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 01:31:49', 1, '2022-09-07 01:37:29', 0, NULL, 1),
(10110, 's.punitha nithi', '6', '8148262389', '9840108360', 'nithipunitha995@gmail.com', '2001-04-11', 21, '2', '2', 'A .salamon', 'Driver', 15000.00, 1, 0.00, 13000.00, 'Vysarpadi', 'Nanganallur', '2209070015', '1', '1', 'upload_files/candidate_tracker/87107952900_JayaHarini @ RESUME.pdf', NULL, '1', '2022-09-08', 0, '', '3', '59', '2022-09-12', 164208.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team - consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-07 03:18:38', 60, '2022-09-09 11:14:44', 0, NULL, 1),
(10111, 'Antony Vijaya Adshai J', '13', '8056541991', '', 'vijayantony294@gmail.com', '2001-05-03', 21, '2', '2', 'Ani Seetan', 'Cashier', 25000.00, 0, 0.00, 200000.00, 'Kanyakumari', 'Chennai', '2209080001', '1', '1', 'upload_files/candidate_tracker/61318266011_Resume (1).pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not open for TxxampC ok with 1 yrs not more than ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 12:10:27', 85, '2022-09-08 12:42:55', 0, NULL, 1),
(10112, 'Dixson G', '13', '6382733692', '', 'dixsondixson42@gmail.com', '2001-01-29', 21, '2', '2', 'Kala p', 'Nil', 12000.00, 0, 0.00, 200000.00, 'Kanyakumari', 'Chennai', '2209080002', '1', '1', 'upload_files/candidate_tracker/63313540038_Resume_08_09_2022_10_01_55_am.pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not open for TxxampC,No basic skills too will not sustain in our roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 12:12:33', 85, '2022-09-08 12:42:25', 0, NULL, 1),
(10113, 'Ajay Prakash P', '11', '8939054018', '', 'ajayprakash532@gmail.com', '1999-08-09', 23, '2', '2', 'V Jaya Prakash', 'Accountant', 50000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2209080003', '1', '1', 'upload_files/candidate_tracker/15321366916_Ajay Prakash Resume (005).pdf', NULL, '1', '2022-09-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 07:39:09', 85, '2022-09-08 12:19:55', 0, NULL, 1),
(10114, 'S. Santhosh', '4', '7418445556', '9962416091', 'Ssanthosh4464@gmail.com', '1999-04-21', 23, '2', '2', 'Ruby. S', 'Home maker', 30000.00, 1, 19000.00, 23000.00, 'No 32, Devaki nagar 2st street, Ch - 600110', 'No 32, Devaki Nagar 2st Street, Ch - 600110', '2209080004', '1', '2', 'upload_files/candidate_tracker/88883242388_SANTHOSH RESUME.pdf', NULL, '2', '2022-09-08', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 07:51:21', 85, '2022-09-08 11:05:31', 0, NULL, 1),
(10115, 'Lawrancekirubakaran R', '17', '9080695035', '', 'lawrbl311@gmail.com', '1996-06-19', 27, '2', '2', 'Rethinasamy S', 'Agriculture', 15000.00, 2, 20000.00, 35000.00, 'Pudukottai', 'Saidapet', '2209080005', '1', '2', 'upload_files/candidate_tracker/36515528830_RESUME_1712673093301_LAWRANCE KIRUBAKARAN.pdf', NULL, '1', '2024-04-10', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2022-09-08 09:59:16', 112, '2024-04-10 05:08:52', 0, NULL, 1),
(10116, 'Lawrancekirubakaran R', '6', '9080605035', '', 'lawrbl311@gmail.com', '1996-06-19', 26, '1', '2', 'Rethinasamy', 'Former', 15000.00, 2, 15000.00, 18000.00, 'Puddukottai', 'Saidapet, chennai', '2209080006', '', '2', 'upload_files/candidate_tracker/30270899433_new resume.pdf', NULL, '1', '2022-09-08', 1, 'P1330', '3', '59', '2022-09-12', 230000.00, '', '5', '1970-01-01', '1', 'Selected for Babu Team inStaff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-08 10:24:29', 60, '2022-09-09 05:24:19', 0, NULL, 1),
(10117, 'S. Santhosh', '5', '7418445556', '9962416081', 'ssanthosh4464@gmail.com', '1999-04-21', 23, '2', '2', 'Saravana S', 'Auto driver', 32000.00, 1, 19000.00, 23000.00, 'No 32, Devaki nagar 2st street, Ch - 600110', 'No 32, Devaki Nagar 2st Street, Ch - 600110', '2209080007', '1', '2', 'upload_files/candidate_tracker/57518189373_SANTHOSH RESUME.pdf', NULL, '2', '2022-09-08', 0, '', '3', '59', '2022-09-14', 288000.00, '', '4', '2022-12-01', '1', 'Selected for Santhosh Team  - Staff Role', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 10:29:36', 60, '2022-09-12 05:47:08', 0, NULL, 1),
(10118, 'Ananthakumar V', '7', '9786054921', '', '11ananth23@gmail.com', '2000-12-23', 21, '3', '2', 'Manikanda Ayyanar', 'Information Technology', 25000.00, 2, 10000.00, 16000.00, 'SIVAKASI', 'SAIDAPET', '2209080008', '', '2', 'upload_files/candidate_tracker/65707379199_ANANTHAKUMAR V.pdf', NULL, '1', '2022-09-08', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in CAMS,No Communication not suitable for our roles ', '7', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 10:31:20', 1, '2022-09-08 10:49:55', 0, NULL, 1),
(10119, 'Abisha P', '16', '7558110691', '8270979233', 'abishacse147@gmail.com', '1998-07-10', 24, '2', '2', 'Paramasivam', 'Farmer', 7000.00, 1, 0.00, 17000.00, 'Thanjavur', 'Vadapalani', '2209080009', '1', '1', 'upload_files/candidate_tracker/89459739901_Abisha p.pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication no basic knowledge in the skills not suitable for our roles', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-08 10:32:09', 1, '2022-09-08 11:02:44', 0, NULL, 1),
(10120, 'Samuel kushal N', '31', '8807692966', '9841147591', 'Samuelkushaln@gmai', '2002-04-19', 20, '3', '2', 'R Premalatha', 'Store Manager', 20000.00, 0, 0.00, 20000.00, 'No 16, Jayaraman Street, Chennai-600044', 'No 16,Jayaraman Street, Chennai-600044', '2209080010', '', '1', 'upload_files/candidate_tracker/31882805672_samuel kushal\'s - resume.pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have Offers with Wipro Mindtree,since joining date is not yet confirmed looking for opportunities will not join and sustain with us\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 10:35:34', 1, '2022-09-08 10:51:21', 0, NULL, 1),
(10121, 'M. Thasleem Rahman', '31', '9500786917', '9629012786', 'Thasleem738@gmail.com', '1999-07-08', 23, '3', '2', 'Mohammad sadhik', 'Former', 12000.00, 2, 0.00, 30000.00, 'Nagapattinam', 'Chennai, velachery', '2209080011', '', '1', 'upload_files/candidate_tracker/98639905390_thasleem new resume.pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Comfortable to work inJava Need time to confirm will not join and run in our roles for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 10:35:37', 1, '2022-09-08 10:43:20', 0, NULL, 1),
(10122, 'A.Ramkalyan', '31', '9344348316', '', 'akularam606@gmail.com', '2000-05-26', 22, '3', '2', 'A.Rathinaiah', 'Coolie', 36000.00, 2, 0.00, 2.50, '27A, seevaram 3rd Street perungudi Chennai-96', 'Chennai', '2209080012', '', '1', 'upload_files/candidate_tracker/72268149953_ramKalyanResume_compressed (1).pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher just started learning JS EB in infosys need time to confirm on the TxxampC if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 10:44:09', 1, '2022-09-08 10:47:49', 0, NULL, 1),
(10123, 'Vijaya kumar k', '31', '6374103483', '', 'vijayakumar29be@gmail.com', '2001-04-29', 21, '2', '2', 'Kumaravelan t', 'Unoccupied', 10000.00, 1, 0.00, 22000.00, 'Thiruninravur', 'Thiruninravur', '2209080013', '', '1', 'upload_files/candidate_tracker/76638551624_Ganesh kumar1.docx', NULL, '1', '2022-09-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance 64kms up and down also not much strong in the basic skills Feels 3yrs too long and comfort to sign max 1.5 yrs not suitable\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 11:21:27', 1, '2022-09-08 11:46:24', 0, NULL, 1),
(10124, 'Karthik s', '5', '8428271219', '9941562493', 'tinkosri@gmail.com', '1992-12-03', 29, '1', '2', 'Premavathi', 'Banking', 25000.00, 2, 0.00, 26000.00, 'Triplicane', 'Pallavaram', '2209080014', '', '2', 'upload_files/candidate_tracker/94328199508_KARTHI.RESUME.docx', NULL, '1', '2022-09-08', 0, 'P1258', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-08 11:29:06', 60, '2022-09-08 03:28:51', 0, NULL, 1),
(10125, 'Ajay sai', '23', '7550142217', '', 'theajaysai@gmail.com', '1999-09-22', 22, '3', '2', 'Amauthavalli', 'Pune', 17000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209080015', '', '1', 'upload_files/candidate_tracker/46917166741_Blue Lines Simple Resume-9.pdf', NULL, '1', '2022-09-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Given him the Task for UIUX Fresher can be trained once done with task will confirm ', '2', '1', '', '1', '1', '', '2', '2022-09-12', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-08 01:25:08', 60, '2022-09-08 02:58:35', 0, NULL, 1),
(10126, 'Dhivahar', '2', '8778261740', '', 'baskarandhivahar@gmailcom', '1996-01-15', 26, '4', '2', 'Baskaran', 'Auditor', 400000.00, 1, 0.00, 300000.00, 'Thanjavur', 'Thanjavur', '2209080016', '', '1', 'upload_files/candidate_tracker/63548922346_CV 123_1661961304390_B.dhivahar.pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic skills very long careerGap Will not sustain and handle our pressure not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 02:39:21', 1, '2022-09-08 02:42:59', 0, NULL, 1),
(10127, 'Dhivahar', '2', '8778261640', '', 'baskarandhivahar@gmail.com', '1996-01-15', 26, '4', '2', 'Baskaran', 'Auditor', 400000.00, 1, 0.00, 300000.00, 'Thanjavur', 'Thanjavur', '2209080017', '', '1', 'upload_files/candidate_tracker/77914828335_CV 123_1661961304390_B.dhivahar.pdf', NULL, '1', '2022-09-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 02:44:44', 1, '2022-09-08 02:47:30', 0, NULL, 1),
(10128, '', '0', '6382532679', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209080018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-08 03:43:30', 0, NULL, 0, NULL, 1),
(10129, 'Akash', '31', '9363312176', '9944711288', 'Rosegold060402@gmail.com', '2002-09-14', 19, '2', '2', 'Senthil', 'Self employed', 10000.00, 2, 0.00, 10000.00, 'Pennadam, Cuddalore dt', 'Guindy,Chennai', '2209080019', '1', '1', 'upload_files/candidate_tracker/60440585352_1661260140421_Akash CV-1.pdf', NULL, '1', '2022-09-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Can be trained but her sister in react for 3 yrs Doubtful on the sustainability ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 04:17:59', 85, '2022-09-09 12:21:08', 0, NULL, 1),
(10130, 'U.C.SANDOSHKUMAAR', '11', '6382598558', '9940116635', 'sandoshkumaa@gmail.com', '2000-02-09', 22, '2', '2', 'Chandrakala', 'leather garments', 13000.00, 1, 0.00, 20000.00, 'Palanai andavar koil street ayanavaram chennai 23', 'No.35 kanaga durga nagar thiruverkadu', '2209080020', '1', '1', 'upload_files/candidate_tracker/28465497368_SANDOSH_CV.pdf', NULL, '1', '2022-09-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Sal Exp is high need to be trained having Dog Kennel and focusing much on the same will not sustain in our roles\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 06:26:43', 85, '2022-09-09 09:44:51', 0, NULL, 1),
(10131, 'Kiruthika', '16', '6381527017', '9342115401', 'Kiruvani05@gmail.com', '2000-04-27', 22, '3', '2', 'Padmanaban', 'TNEB', 300000.00, 1, 25000.00, 27000.00, 'Chennai', 'Chennai', '2209080021', '', '2', 'upload_files/candidate_tracker/53617699339_RESUME-Kiruthika.docx', NULL, '1', '2022-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 06:36:04', 1, '2022-09-08 06:57:55', 0, NULL, 1),
(10132, '', '0', '9791184966', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-09 09:29:29', 0, NULL, 0, NULL, 1),
(10133, 'Suryapraba R', '6', '8940410896', '', 'suryaravikumar309@gmail.com', '1998-05-09', 24, '1', '2', 'Ravikumar R', 'Passed away', 10000.00, 1, 13000.00, 17000.00, 'Sivagangai', 'Chennai', '2209090002', '', '2', 'upload_files/candidate_tracker/86049557995_SURYA PRABA RESUME (1) (1).docx', NULL, '1', '2022-09-09', 0, 'P1070', '3', '59', '2022-09-14', 174000.00, '', '3', '2022-10-03', '2', 'selected for Babu Team Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-09 11:09:25', 60, '2022-09-13 12:43:58', 0, NULL, 1),
(10134, 'S.Karthiyayini', '6', '8270578438', '', 'karthiyayinis80@gmail.com', '1999-11-22', 22, '1', '2', 'Senthil kumar', 'Driver', 15000.00, 1, 0.00, 13500.00, 'Sivagangai', 'Chennai', '2209090003', '', '1', 'upload_files/candidate_tracker/11153220930_karthiyayini resume.pdf', NULL, '1', '2022-09-09', 0, 'P1070', '3', '59', '2022-09-14', 156000.00, '', '4', '2022-09-26', '2', 'Selected for Kannan Team - consultant Role Need to analyse in the 7 days training', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-09 11:10:43', 60, '2022-09-13 06:41:45', 0, NULL, 1),
(10135, 'Logeshwari. J', '4', '9361461517', '7810029269', 'logeshwari1803@gmail.com', '2002-03-18', 20, '3', '2', 'R. Joseph', 'Milk man', 72000.00, 1, 0.00, 17000.00, 'Sevvapet', 'Sevvapet', '2209090004', '', '1', 'upload_files/candidate_tracker/66753625041_Logeshwari .pdf', NULL, '1', '2022-09-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Internal Reference GK Sir,Too Long Distance Fresher 5050 sustainability left without attending the 2nd round', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-09 11:28:50', 1, '2022-09-09 11:47:31', 0, NULL, 1),
(10136, 'Vigneshwaran T', '31', '7200657909', '8072628909', 'vigneshviky23700@gmail.com', '2000-07-23', 22, '2', '2', 'Thiyagarajan.N', 'RMC Ready mix Pvt Ltd (pump operator)', 26000.00, 1, 0.00, 300000.00, 'chromepet chennai', 'Chromepet Chennai', '2209090005', '1', '1', 'upload_files/candidate_tracker/41542136290_Vigneshwaran.T (Amtex).pdf', NULL, '1', '2022-09-09', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher 5050 Need to check his sustainability need time to check with his father Family need is there if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-09-12', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-09 12:04:57', 1, '2022-09-09 12:11:55', 0, NULL, 1),
(10137, 'logeswaran', '31', '9500351513', '', 'logeshwaranvadivel@gmail.com', '2000-09-09', 22, '2', '2', 'vadivelu', 'bussiness', 13000.00, 1, 0.00, 20000.00, 'vilupuram', 'mount', '2209090006', '1', '1', 'upload_files/candidate_tracker/82710392453_Logeshwaran-BE-2021.pdf', NULL, '1', '2022-09-09', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher 5050 Need Time to check with his family if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-09-12', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-09 12:05:17', 1, '2022-09-09 02:57:52', 0, NULL, 1),
(10138, 'gokul saran', '31', '7092220372', '', 'gokulsaran095@gmail.com', '2000-05-09', 22, '2', '2', 'vijayakumar', 'web developer', 30000.00, 2, 0.00, 300000.00, 'Pattabiram', 'pattabiram', '2209090007', '1', '1', 'upload_files/candidate_tracker/60989094542_NEW RESUME .pdf', NULL, '1', '2022-09-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Basic Skills Sustainability Doubts too long distance up  and down 60kms will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-09 12:08:45', 85, '2022-09-09 12:22:01', 0, NULL, 1),
(10139, 'Thamarai chelvan S', '13', '8838617837', '', 'thamaraichelvan1996@gmail.com', '1996-06-29', 26, '2', '2', 'Selvaraj B', 'Building Contractor', 16000.00, 1, 21000.00, 30000.00, 'Namakkal', 'Namakkal', '2209090008', '1', '2', 'upload_files/candidate_tracker/34840506367_Thamarai..pdf', NULL, '1', '2022-09-09', 4, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'working in Java for 7 months good PAckage and looking for change only for Salary growth not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-09 12:47:07', 1, '2022-09-09 12:54:19', 0, NULL, 1),
(10140, 'Santhiya.K', '4', '6369752842', '', 'santhiyacsesanthiya0208@gmail.com', '2001-08-02', 21, '2', '2', 'Ponselvi', 'School nutrition assistant', 72000.00, 2, 0.00, 13000.00, 'Tirunelveli', 'Saithapet', '2209090009', '1', '1', 'upload_files/candidate_tracker/13197014834_Santhiya.K .pdf', NULL, '1', '2022-09-09', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', '5050 Profile Family need is there Can give a try kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-09-09 01:02:23', 1, '2022-09-09 01:07:17', 0, NULL, 1),
(10141, 'S.Bhuvaneswari', '4', '9150425778', '9751787037', 'bhuvanabhuvi2507@gmail.com', '2001-07-25', 21, '2', '2', 'S.Indhumathi', 'Labour', 8000.00, 2, 0.00, 13000.00, 'Tirunelveli', 'Saidapet', '2209090010', '1', '1', 'upload_files/candidate_tracker/82791093654_bhuvi.pdf', NULL, '1', '2022-09-09', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050 Can be trained Family need is there kindly check and let me know your inputs', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-09-09 01:11:55', 1, '2022-09-09 01:15:43', 0, NULL, 1),
(10142, 'Rekha', '6', '9500932318', '', 'rekha03699@gmail.com', '1999-06-03', 23, '1', '2', 'Pichai', 'Non employee', 12000.00, 2, 13000.00, 15000.00, 'Kodabakkam', 'Kodabakkam', '2209090011', '', '2', 'upload_files/candidate_tracker/28907243117_resume-3.pdf', NULL, '1', '2022-09-09', 0, 'p1357', '3', '59', '2022-09-12', 174000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team - Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-09 01:22:27', 60, '2022-09-09 05:42:35', 0, NULL, 1),
(10143, 'Rajeswari.B', '31', '7358360201', '9840795614', 'reshmasubramanian3783@gmail.com', '1998-11-16', 23, '3', '2', 'M.Balasubramanian', 'Administrative in NIIT', 100000.00, 2, 0.00, 25000.00, 'urappakkam Chennai', 'Urappakkam Chennai', '2209090012', '', '1', 'upload_files/candidate_tracker/6563714624_Resume_Rajeswari.pdf', NULL, '1', '2022-09-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much strong in the skills 30 days Notice Currently in Sutherland too long distance Not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-09 01:25:34', 1, '2022-09-09 01:52:25', 0, NULL, 1),
(10144, 'Yuvashree T', '31', '7358795230', '7397434790', 'Uvi.167casendra@gmail.com', '2000-06-16', 22, '1', '2', 'Thambuswamy v k', 'Fresher', 80000.00, 0, 0.00, 25000.00, 'Ayanavaram, Chennai', 'Ayanavaram, Chennai', '2209090013', '', '1', 'upload_files/candidate_tracker/95020524412_Yuvashree T Resume.pdf', NULL, '1', '2022-09-09', 0, 'Direct walk in', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Much Strong In The Skills 30 Days Notice Currently In Sutherland Salary Exp min 16 K being Fresher will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-09 01:26:52', 1, '2022-09-09 01:52:30', 0, NULL, 1),
(10145, 'sunil kumar', '4', '8072681164', '', 'mssunil217mk@gmail.com', '1997-07-21', 25, '2', '2', 'munusamy', 'farmer', 12000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2209100001', '2', '1', 'upload_files/candidate_tracker/7608180743_resume-1.pdf', NULL, '1', '2022-09-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 09:46:26', 1, '2022-09-10 09:48:40', 0, NULL, 1),
(10146, 'amarnath', '4', '6382965275', '', 'amarnathmajim27@gmail.com', '1996-06-27', 26, '2', '2', 'manikandan', 'farmer', 15000.00, 2, 0.00, 10000.00, 'tenkasi', 'tenkasi', '2209100002', '2', '1', 'upload_files/candidate_tracker/70767486000_amarnath_eng_resume -2.pdf', NULL, '2', '2022-09-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 09:55:40', 1, '2022-09-10 09:57:20', 0, NULL, 1),
(10147, 'Priyadharshini', '23', '9566100325', '7010686302', 'priyadharshini64285@gmail.com', '2002-04-11', 20, '2', '2', 'Sankara muthu', 'LED Designer', 30000.00, 1, 0.00, 14000.00, 'Kanchipuram', 'Kodambakkam', '2209100003', '1', '1', 'upload_files/candidate_tracker/35929782626_Priyadharshini Resume 2022.pdf', NULL, '1', '2022-09-10', 0, '', '4', '69', NULL, 0.00, '', '0', NULL, '2', 'has more intersted in uiux .. average communication.. some knowledge in web designs.. check and update your feedback', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-10 10:24:49', 1, '2022-09-10 10:35:15', 0, NULL, 1),
(10148, '', '0', '9566108325', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209100004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-10 10:36:31', 0, NULL, 0, NULL, 1),
(10149, 'Mohammed ibunu', '23', '9360104073', '9551559624', 'sibunumohammed@gmail.com', '2001-04-10', 21, '3', '2', 'Sirajudeen', 'Diploma in computer science engineering', 40000.00, 2, 0.00, 20000.00, 'Mangadu', 'Mangadu', '2209100005', '', '1', 'upload_files/candidate_tracker/74426153401_Mohammed_ibunu_July_22 (2).pdf', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has one yr of exp in react as a trainee because of sal changing his job sal expt too high .. sustainbility doubts..', '2', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 10:47:27', 1, '2022-09-10 10:58:51', 0, NULL, 1),
(10150, 'om Jain', '5', '9346199710', '', 'komaljaind2000@gmail.com', '2000-09-22', 21, '2', '2', 'dileep Kumar gadiya jain', 'business', 350000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2209100006', '1', '1', 'upload_files/candidate_tracker/17144703790_Komal Jain Resume.pdf', NULL, '1', '2022-09-10', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-10 10:48:03', 1, '2022-09-10 11:03:42', 0, NULL, 1),
(10151, 'Edwin Jerald', '31', '8248452504', '', 'edwinjeraldp@gmail.com', '1998-12-13', 23, '3', '2', 'S.Paulraj/ P.Dorathy Paul', 'Veggers/Clark', 50000.00, 1, 0.00, 20000.00, 'Avadi, indria nagar RTO', 'avadi, Indria Nagar RTO', '2209100007', '', '1', 'upload_files/candidate_tracker/54999845158_Edvin.pdf', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'no understanding.. sal expt too high .long distance too', '2', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 10:48:52', 1, '2022-09-10 11:04:20', 0, NULL, 1),
(10152, 'Surendhar.. B', '31', '9566172353', '', 'Surendharb72@gmail.com', '2001-11-28', 20, '3', '2', 'K. BABU', 'Ashok leyland', 25000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2209100008', '', '1', 'upload_files/candidate_tracker/21481180123_surendhar.B RESUME (1).docx', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has 1m of intern exp because of his training performance they rejected..', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 11:16:24', 1, '2022-09-10 11:21:11', 0, NULL, 1),
(10153, 'Arun', '23', '9087265815', '', 'aroon2k29@gmail.com', '2000-06-29', 22, '2', '2', 'Sellaiah', 'Unemployed', 20000.00, 1, 0.00, 16000.00, 'Velachery', 'Velachery', '2209100009', '1', '1', 'upload_files/candidate_tracker/45221679190_0_RESUME ARUN.pdf', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'recently joined one org as ui/ux ..coz of sal releving ,, has freelancer exp in graphic des.. no idea about ui/ux.. not suit for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-10 11:17:11', 1, '2022-09-10 11:50:22', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10154, 'Joice.A', '31', '9345989832', '9487942282', 'Joice221906464@gmail.com', '2002-07-16', 20, '3', '2', 'Amal Raj.A', 'Coolie', 15000.00, 2, 0.00, 15000.00, 'No.10,kattapomman street,maduravayil', 'No.10,Kattapomman Street,Maduravayil', '2209100010', '', '1', 'upload_files/candidate_tracker/72821514790_CV_2022-08-31-102907.pdf', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'fresher .. has knowledege in html xxamp css .. recently got offer .. coz of sal .. not joined', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 11:18:17', 1, '2022-09-10 11:24:11', 0, NULL, 1),
(10155, 'Ajith v s', '31', '8778683246', '', 'ajithvs0072002@gmail.com', '2002-07-15', 20, '3', '2', 'Shanmuganathan V', 'Receptionist', 15000.00, 0, 0.00, 250000.00, 'Dindigul', 'Chennai', '2209100011', '', '1', 'upload_files/candidate_tracker/37949192376_Ajith resume-1.docx', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'beginer level in technical skills no idea about framewroks have to learn more..', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 11:27:29', 1, '2022-09-10 11:49:43', 0, NULL, 1),
(10156, 'Vignesh.D', '31', '9150103325', '', 'vigneshe19ca022@gmail.com', '2001-05-29', 21, '3', '2', 'Abinesh.D', 'Private company', 200000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2209100012', '', '1', 'upload_files/candidate_tracker/82907766539_newresume.docx', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'no understanding ..beginer level in technical skills..will not suit for process ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 11:27:44', 1, '2022-09-10 11:34:46', 0, NULL, 1),
(10157, 'R.S. Vignesh', '11', '9551294290', '9710964414', 'vigneshvicky1807@gmail.com', '1996-07-18', 26, '3', '2', 'I Ravi', 'Sales executive', 60000.00, 1, 25000.00, 25000.00, 'Villivakkam', 'Villivakkam', '2209100013', '', '2', 'upload_files/candidate_tracker/25290620488_R.S Vignesh.pdf', NULL, '1', '2022-09-10', 1, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has 6m exp in us it recruiter..because of health xxamp commitments looking for job change ..sal expt high will not sustain with us long run', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 11:44:10', 1, '2022-09-10 11:48:24', 0, NULL, 1),
(10158, 'Ravi Kumar Yadav', '31', '7352746905', '', 'Ravi943117@gmail.com', '1999-02-05', 23, '3', '2', 'Rameshwar yadav', 'Small business man', 20000.00, 3, 0.00, 300000.00, 'Jharkhand', 'Chennai', '2209100014', '', '1', 'upload_files/candidate_tracker/82192917934_Ravi_Kumar_yadav.pdf', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'long distance. his brother working 6yrs in react.. so he has some knowledege.. no understanding .. only know hindi  average in tamil.. xxamp looking job in core role also', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 01:19:16', 1, '2022-09-10 01:23:01', 0, NULL, 1),
(10159, 'D.Pushpalatha', '8', '8682044402', '', 's.pushpalatha0407@gmail.com', '2000-07-04', 22, '2', '2', 'D.Srinivasulu', 'Private employee', 15000.00, 2, 13000.00, 18000.00, 'Royapuram', 'Royapuram', '2209100015', '1', '2', 'upload_files/candidate_tracker/57311837628_PUSHPALATHA RESUME.pdf', NULL, '1', '2022-09-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication. Not ready to taking Calls Looking for MF,NISM certified but no basics knowledge about SIP/AMCxquots  Backend roles only she preferred,Not ready totake renewal calls again', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '4', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-10 07:31:07', 85, '2022-09-12 10:19:02', 0, NULL, 1),
(10160, 'SHANMUGAPRIYA MURUGESAN', '22', '7550131030', '', 'shanmuggapriyamurugesan2001@gmail.com', '2001-11-15', 20, '2', '2', 'MURUGESAN', 'Provisional shop', 450000.00, 2, 0.00, 250000.00, 'Pallavaram', 'Pallavaram', '2209110001', '1', '1', 'upload_files/candidate_tracker/48922794179_RESUME.pdf', NULL, '1', '2022-09-12', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good, Open  for Content Writing Need to analyse the contient writing skills kindly check and let me know your interest ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-11 10:47:36', 85, '2022-09-12 01:27:58', 0, NULL, 1),
(10161, 'praveen kumar k', '4', '6383459658', '', 'praveenvishal5222@gmail.com', '2002-02-05', 20, '2', '2', 'kuppan g', 'farmer', 8000.00, 1, 0.00, 12000.00, 'tindivanam', 'kodambakkam', '2209120001', '2', '1', 'upload_files/candidate_tracker/32120390416_praveenkumar k resume.pdf', NULL, '1', '2022-09-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Pressure Free Profile, Fresher Sustainability Doubts a lot', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 07:20:23', 1, '2022-09-12 07:24:26', 0, NULL, 1),
(10162, 'naveen kumar k', '4', '9944722476', '', 'naveenyamuna555@gmail.com', '2002-01-16', 20, '2', '2', 'karuppasamy', 'farmer', 8000.00, 3, 0.00, 12000.00, 'chennai', 'guindy', '2209120002', '2', '1', 'upload_files/candidate_tracker/85435043602_naveenkumar.pdf', NULL, '1', '2022-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 07:26:21', 1, '2022-09-12 07:28:22', 0, NULL, 1),
(10163, 'saran m', '4', '9003984526', '', 'saran262002@gmail.com', '2002-06-02', 20, '2', '2', 'marimuthu', 'farmer', 8000.00, 5, 0.00, 12000.00, 'chennai', 'kodambakkam', '2209120003', '2', '1', 'upload_files/candidate_tracker/42370701089_saran resume.docx', NULL, '1', '2022-09-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped Candidate didnt respond the call got an update from Thinkfinity that the candidate was not interested in the profile\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-12 07:29:54', 60, '2022-09-14 06:37:27', 0, NULL, 1),
(10164, 'janakiraman s', '4', '9677314174', '', 'sjanakiraman613@gmail.com', '2002-02-10', 20, '2', '2', 'selvam', 'famer', 10000.00, 1, 0.00, 12000.00, 'thindivanam', 'porur', '2209120004', '2', '1', 'upload_files/candidate_tracker/81615489794_JANAKIRAMAN.pdf', NULL, '1', '2022-09-12', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Need to be trained a lot ,Much Focus in Accounts Profiles Need time to confirm on this profile', '1', '1', '0', '1', '1', '0', '2', '2022-09-14', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 07:32:38', 1, '2022-09-12 07:34:24', 0, NULL, 1),
(10165, 'vijayasarathy a', '5', '8760812875', '', 'analsarathy@gmail.com', '2000-05-11', 22, '2', '2', 'arumugam', 'farmer', 8000.00, 1, 0.00, 10000.00, 'chennai', 'mount road', '2209120005', '2', '1', 'upload_files/candidate_tracker/64234205653_SARATHY RESUME.docx', NULL, '1', '2022-09-12', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Satisfied', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-12 07:35:32', 60, '2022-09-12 12:25:49', 0, NULL, 1),
(10166, 'devayani s', '4', '6382033179', '', 'devayanisiva1403@gmail.com', '2002-03-14', 20, '2', '2', 'sivaprakasam v', 'farmer', 10000.00, 2, 0.00, 10000.00, 'thindivanam', 'nallavur', '2209120006', '2', '1', 'upload_files/candidate_tracker/64449223483_S DEVAYANI RESUME.pdf', NULL, '1', '2022-09-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable Need to open a lot ,will not handle our sales Pressure Very clear that if ssiter refer any IT openings will move for that', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 07:38:57', 1, '2022-09-12 07:40:45', 0, NULL, 1),
(10167, 'Hariharasudhan l', '6', '8754062472', '9487166247', 'hanithcharan@gmail.com', '1997-06-25', 25, '3', '1', 'Indhumathi', 'House wife', 10000.00, 1, 18000.00, 15000.00, 'Konganapuram', 'Konganapuram', '2209120007', '', '2', 'upload_files/candidate_tracker/70557783460_HARI CV 21.pdf', NULL, '1', '2022-09-12', 1, '', '3', '59', '2022-09-14', 199500.00, '', '3', '2022-11-30', '1', 'Selected for Suthagar Team Staff Role', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-12 10:55:45', 60, '2022-09-13 06:14:21', 0, NULL, 1),
(10168, 'thilagavathi', '4', '7695967662', '9600021953', 'thilaga812@gmail.com', '1996-12-08', 25, '2', '1', 'solaimuthu', 'flower decorator', 30000.00, 1, 0.00, 17000.00, 'chennai', 'chennai', '2209120008', '1', '2', 'upload_files/candidate_tracker/51301173618_Thilagavathi -updated resume.pdf', NULL, '1', '2022-09-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-12 10:56:16', 85, '2022-09-14 09:56:06', 0, NULL, 1),
(10169, 'Ponraja k', '13', '8695452701', '7904730419', 'prcode2903@gmail.com', '1996-03-29', 26, '3', '1', 'Arafath roja', 'Web developer', 50000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Chennai vadapalani', '2209120009', '', '1', 'upload_files/candidate_tracker/43300131608_new RESUME PON RAJA.pdf', NULL, '1', '2022-09-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for IT Have Exp in Sales Not open for Sales again Looking for IT only Wife working in IT Need time to confirm on the TxxampC with 3yrs SA, if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 12:06:35', 1, '2022-09-12 12:10:17', 0, NULL, 1),
(10170, 'Ajith kumar G', '5', '9884669220', '9360715462', 'ak2517715@gmail.com', '1998-10-05', 23, '2', '2', 'Selvi', 'Homemakar', 15000.00, 3, 19000.00, 21000.00, '43 David puram kilpauk chennai 600010', '64/64 kuttiyappan street kilpauk chennai 10', '2209120010', '1', '2', 'upload_files/candidate_tracker/89013240377_AJITH RESUME.pdf', NULL, '2', '2022-09-12', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-12 12:07:50', 60, '2022-09-12 02:48:30', 0, NULL, 1),
(10171, 'Arthi', '28', '8668199597', '9751852454', 'Arthibas0@gmail.com', '1991-06-02', 31, '1', '1', 'Baskar', 'Production employee', 40000.00, 1, 15000.00, 20000.00, 'Flat No.69 ford union city nenmeli Chengalpattu', 'Chengalpattu', '2209120011', '', '2', 'upload_files/candidate_tracker/9315940944_Arthi _Resume JULY\'22.docx', NULL, '1', '2022-09-12', 0, '0000', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'From Chengalpet married looking for Admin Role Non Voice have exp in CSE,but not open for Sales Calls and not ready to handle the pressure', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 01:20:37', 1, '2022-09-12 01:38:32', 0, NULL, 1),
(10172, 'PRAVEEN G', '4', '8098894234', '6385415435', 'praveenpraveen62950@gmail.com', '1998-12-21', 23, '2', '2', 'KAMALA', 'Home maker', 5000.00, 1, 0.00, 15000.00, 'Mayiladuthurai', 'Virugambbakam', '2209120012', '1', '1', 'upload_files/candidate_tracker/41320196000_Praveen G resume.pdf', NULL, '1', '2022-09-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot not speaking will not sustain in our roles', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-12 01:35:49', 85, '2022-09-12 01:51:43', 0, NULL, 1),
(10173, 'Salman Khan', '22', '9787973420', '', 'Salmananvar21@gmail.com', '1997-02-21', 25, '2', '2', 'malik basha', 'work', 100000.00, 3, 0.00, 2.20, 'Kallakurichi', 'chennai', '2209120013', '1', '1', 'upload_files/candidate_tracker/42569685401_Salmankhan Resume.pdf', NULL, '1', '2022-09-12', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Digital Marketing,have a career gap  Seems 5050 for the profile Sustainability Doubts in the profile kindly check and let me know your interest', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-12 02:20:43', 85, '2022-09-12 02:35:19', 0, NULL, 1),
(10174, 'Pradeep', '4', '8124566780', '8220889495', 'Pk6835433@email.com', '2001-12-10', 20, '3', '2', 'Marimuthu', 'Auto driver', 80000.00, 1, 12500.00, 15000.00, 'Redhills', 'Vyasarpadi', '2209120014', '', '2', 'upload_files/candidate_tracker/40280866503_M.Pradeep CV.pdf', NULL, '1', '2022-09-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 10:29:44', 1, '2022-09-12 10:34:21', 0, NULL, 1),
(10175, 'Indira Devi', '4', '8189809887', '9840295085', 'yamini14122001@gmail.com', '2001-12-14', 20, '2', '2', 'Elumalai', 'Photographer', 150000.00, 1, 0.00, 15000.00, 'No 61/50 nehru street voc nagar anna nagar east', 'Anna nagar', '2209130001', '1', '1', 'upload_files/candidate_tracker/67500700400_Indira Resume.pdf', NULL, '1', '2022-09-13', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Fresher Communication is good Can be trained Kindly check and let me kbow your inputs for B2B', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-13 09:50:30', 1, '2022-09-13 10:01:05', 0, NULL, 1),
(10176, 'K. Suruthy', '5', '8754719563', '7373219138', 'suruthy496@gmail.com', '2000-04-08', 22, '2', '2', 'Kannadasan. A', 'Farmer', 400000.00, 2, 0.00, 150000.00, 'Mannagudi', 'Chormpet', '2209130002', '1', '1', 'upload_files/candidate_tracker/9258270572_SURUTHY.docx', NULL, '1', '2022-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Target based profiles,her brother wont allow to work in Target based jobs also her brothers are there in singapore  and looking  for opportunities in their company she is very clear that will travel to singapore once every process is done will not sustain for a long', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-13 09:59:08', 85, '2022-09-13 10:04:23', 0, NULL, 1),
(10177, 'Deepika S', '11', '7397497630', '', 'Deepiswami1608@gmail.com', '2000-08-16', 22, '3', '2', 'Swaminathan', 'Machine operator', 30000.00, 1, 16000.00, 25000.00, 'Chennai', 'Chennai', '2209130003', '', '2', 'upload_files/candidate_tracker/54325154032_Deepika latest.pdf', NULL, '1', '2022-09-13', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have 8 months Exp in IT recruitment,Current Salary is 2.6LPA and her exp is min 18K - 20K TH  Will not sustain in our roles  ', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-13 10:46:08', 1, '2022-09-13 11:03:07', 0, NULL, 1),
(10178, 'Benita J', '11', '9176234986', '', 'benita2394@gmail.com', '1994-06-23', 28, '3', '1', 'Novell', 'Team Lead', 50000.00, 2, 29000.00, 35000.00, 'Chennai', 'Chennai', '2209130004', '', '2', 'upload_files/candidate_tracker/61656557049_Benita J.pdf', NULL, '1', '2022-09-13', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good Have 1yrs 2 months Exp in recruitment and her salary exp is very high,current is 31K and Exp is 35K', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-13 10:46:38', 1, '2022-09-13 10:50:07', 0, NULL, 1),
(10179, 'S. Shakith Khan', '5', '8838120625', '9677051684', 'shakithsk99@gmail.com', '1999-06-27', 23, '3', '2', 'parent', 'no', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2209130005', '', '1', 'upload_files/candidate_tracker/28043051458_SK RESUME 1.docx', NULL, '1', '2022-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,Freshernot much comfort to go  for the appointments and beyond the official timings too,Need time to confirm with his parents Will not sustain and distance around 34 kms up and down', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-13 10:47:29', 60, '2022-09-13 11:23:45', 0, NULL, 1),
(10180, 'Rajeshkumar D', '5', '9600024961', '8884154243', 'madhan.madhan11@gmail.com', '1982-03-21', 40, '2', '1', 'Pushpa R', 'Writer', 30000.00, 1, 30000.00, 40000.00, 'Thiruninravur', 'Thiruninravur', '2209130006', '1', '2', 'upload_files/candidate_tracker/53803902183_MADAN.pdf', NULL, '1', '2022-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Age around 40 yrs toally into media field worked earlier in Sales during 2000-2006 Looking for Film Industry as a director will not sustain and handle our Roles', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-13 11:08:56', 60, '2022-09-13 12:23:42', 0, NULL, 1),
(10181, 'Mohammed Hassan M', '22', '9952084715', '', 'mdhassan2206@gmail.com', '1993-06-22', 29, '2', '2', 'Mohideen A', 'Driver', 25000.00, 1, 21000.00, 23000.00, 'Ranipet', 'Chennai, porur', '2209130007', '1', '2', 'upload_files/candidate_tracker/50626889232_MH-Resume.pdf', NULL, '1', '2022-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication have exp in non voice process No ideas in the Digital marketing will not sustain and not open for SAles profiles too', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-13 11:09:12', 85, '2022-09-13 11:22:30', 0, NULL, 1),
(10182, 'Edward Ebin', '5', '9500730061', '', 'Edwardedward327@gmail.com', '2001-03-16', 21, '2', '2', 'Ebin', 'Electrician', 23000.00, 2, 24890.00, 16000.00, 'Palavaram', 'Palavaram', '2209130008', '1', '2', 'upload_files/candidate_tracker/561403875_Resume.pdf', NULL, '1', '2022-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '10th Completed no proper sustainability in  the positons,fresher to our roles will not handle our sales long run doubts 5050 if he comes back let us try', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-13 11:25:22', 60, '2022-09-13 12:48:15', 0, NULL, 1),
(10183, 'S.Mohaideen abdul kadhar', '6', '9600193736', '9444642544', 'Kadharhero5@gmail.com', '1998-08-03', 24, '4', '2', 'S ,SYED AHAMED KABEER', 'Self employed', 20000.00, 1, 0.00, 15000.00, 'Chrompet', 'Chrompet', '2209130009', '', '1', 'upload_files/candidate_tracker/54506774343_kadhar_resume-1.pdf', NULL, '1', '2022-09-13', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sales Sustainability Doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-13 11:35:37', 60, '2022-09-13 01:33:36', 0, NULL, 1),
(10184, 'Jayaraj.c', '5', '6369773776', '9444642544', 'Jayarajcharles20@gmail.vom', '1997-07-20', 25, '4', '2', 'Charles', 'Self employed', 50000.00, 3, 0.00, 15000.00, 'Chennai', 'Chrompet', '2209130010', '', '1', 'upload_files/candidate_tracker/85679117810_Jaya Raj.pdf', NULL, '1', '2022-09-13', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sales Sustainability Doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-13 11:37:49', 60, '2022-09-13 01:33:54', 0, NULL, 1),
(10185, 'Abubakker siddique', '5', '9790972458', '', 'abubakkersiddiqu@gmail.com', '1994-10-15', 27, '1', '1', 'Fathima shifana', 'Sales and service customer care executive', 40000.00, 1, 0.00, 4.50, 'Pudupet', 'Pudupet', '2209130011', '', '2', 'upload_files/candidate_tracker/9738363010_Abubakker Siddique.resume.pdf', NULL, '1', '2022-09-13', 30, 'Vinothkumar', '3', '59', '2022-10-10', 360000.00, '', '2', '1970-01-01', '1', 'selected for GK Sir Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-13 12:40:50', 60, '2022-09-19 06:33:18', 0, NULL, 1),
(10186, 'tamizhan.c', '6', '9884344021', '9094339340', 'mrtamizhan97@gmail.com', '2001-11-19', 20, '1', '2', 'chandran.s', 'auto diver', 12000.00, 1, 0.00, 18000.00, 'puliyathope', 'Puliyathope', '2209130012', '', '1', 'upload_files/candidate_tracker/44371195802_Tamizhan.pdf', NULL, '1', '2022-09-13', 0, 'p1066', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'Sales Sustainability Doubts', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-13 01:27:01', 1, '2022-09-13 02:01:50', 0, NULL, 1),
(10187, 'Arshad Azmath', '16', '9445431548', '', 'arshadazmath30@gmail.com', '1994-12-03', 27, '2', '2', 'Md Azmathullah', 'Retired', 30000.00, 2, 18000.00, 22000.00, 'Annanagar', 'Annanagar', '2209130013', '1', '2', 'upload_files/candidate_tracker/28902814170_31-8-2022 Arshad Azmath Resume.pdf', NULL, '1', '2022-09-14', 0, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Good Have Exp in Sales Telecall biut not interested to go in the same,Discussed for MIS/Technical Support Kindly check and let me know your inputs', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-13 03:39:19', 85, '2022-09-14 09:56:34', 0, NULL, 1),
(10188, '', '0', '8248643713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209130014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-13 05:19:29', 0, NULL, 0, NULL, 1),
(10189, 'Karankumar s', '5', '9025471749', '', 'karankumartushar@gmail.com', '2001-06-18', 21, '2', '2', 'Kavitha', 'Tailor', 25000.00, 1, 21000.00, 25000.00, 'Peravurani', 'St Thomas mount', '2209130015', '1', '2', 'upload_files/candidate_tracker/70704466941_Karankumar S updated resume ....pdf', NULL, '1', '2022-09-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-13 11:14:42', 85, '2022-09-19 10:04:30', 0, NULL, 1),
(10190, 'arunachalam s', '4', '9087405531', '', 'sekar.arun80@gmail.com', '1997-05-16', 25, '2', '2', 'sekar', 'farmer', 8000.00, 1, 0.00, 12000.00, 'thiruvannamalai', 'thiruvannamalai', '2209140001', '2', '1', 'upload_files/candidate_tracker/42370747799_arun resume.docx', NULL, '2', '2022-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-14 09:15:32', 1, '2022-09-14 09:17:36', 0, NULL, 1),
(10191, 'yakala prasanth', '4', '9361542835', '', 'prasanthyakala1999@gmail.com', '1999-06-01', 23, '2', '2', 'ramaiah', 'farmer', 10000.00, 1, 0.00, 12000.00, 'chennai', 'perambur', '2209140002', '2', '1', 'upload_files/candidate_tracker/18318041085_YAKALA PRASANTH 1Resume.pdf', NULL, '1', '2022-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-14 09:19:37', 1, '2022-09-14 09:23:19', 0, NULL, 1),
(10192, 'sheikoli m', '4', '8940321241', '', 'm.shekoli14072@gmail.com', '1997-06-03', 25, '2', '2', 'mohamed raja', 'nil', 10000.00, 1, 0.00, 10000.00, 'virudhunagar', 'tambaram', '2209140003', '2', '1', 'upload_files/candidate_tracker/91587394536_updated resume.docx', NULL, '3', '2022-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-14 09:25:08', 1, '2022-09-14 09:29:31', 0, NULL, 1),
(10193, 'Balaji', '6', '8903139203', '', 'balaji10perumal@gmail.com', '1998-01-05', 24, '2', '2', 'Perumal', 'Hari cutting', 40000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2209140004', '1', '1', 'upload_files/candidate_tracker/44153313936_BALAJI RESUME-1.docx', NULL, '1', '2022-09-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected and offered him 192000 LPA being a fresher but the candidate is not comfortable with the pay and expects more long distance too', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-14 10:45:02', 60, '2022-09-14 11:54:04', 0, NULL, 1),
(10194, 'Santhosh Kumar.S', '5', '6374697119', '6385853448', 'santhoshab8813@gmail.com', '2000-09-08', 22, '2', '2', 'Saravanan. K', 'Business man', 17000.00, 1, 23000.00, 20.00, 'Chennai', 'Chennai', '2209140005', '1', '2', 'upload_files/candidate_tracker/51664503486_Santhosh kumar updated resume.docx', NULL, '1', '2022-09-14', 0, '', '3', '59', '2022-09-19', 276000.00, '', '5', '1970-01-01', '1', 'Selected for Shanmugam Team in Staff Role need to analyze in 7 days of training', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-14 11:22:02', 60, '2022-09-14 05:48:19', 0, NULL, 1),
(10195, 'S Anitha', '5', '8939754153', '', 'aammu6438@gmail.com', '2000-10-18', 21, '2', '2', 'Parent', 'Cooli', 80000.00, 0, 0.00, 15000.00, 'Pattalam', 'Pattalam', '2209140006', '1', '1', 'upload_files/candidate_tracker/65933819124_anitha.docx', NULL, '1', '2022-09-14', 0, '', '3', '59', '2022-09-15', 156000.00, '', '5', '1970-01-01', '2', 'Selected for ESales  - Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-14 12:06:27', 60, '2022-09-14 05:59:40', 0, NULL, 1),
(10196, 'Deepika. O', '5', '8838951219', '7418105611', 'deepikanarayanan1409@gmail.com', '2001-09-14', 21, '2', '2', 'Father: kanna narayanan. O, Mother: Manjula devi. O', 'Electrician', 15000.00, 1, 0.00, 15000.00, 'Near Mr nagar', 'No . 5/555, 126th street, Muthamizh Nagar.', '2209140007', '1', '1', 'upload_files/candidate_tracker/381379419_Resume_Deepika-1.pdf', NULL, '1', '2022-09-14', 0, '', '3', '59', '2022-09-15', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-14 12:07:26', 60, '2022-09-14 05:59:56', 0, NULL, 1),
(10197, 'Vetrivel', '5', '6380940215', '', 'vvel842.cc@gmail.com', '2001-07-22', 21, '2', '2', 'Selvam V', 'Labour', 72000.00, 1, 0.00, 15000.00, 'No 11 othavadai street Mamallapuram', 'Vadapalani', '2209140008', '1', '1', 'upload_files/candidate_tracker/26847736847_CV_2022090917500584.pdf', NULL, '1', '2022-09-14', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher 5050 Can be trained in our roles open for Field Kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-14 12:36:08', 60, '2022-09-14 01:23:22', 0, NULL, 1),
(10198, 'Mohana Krishnan T', '5', '7904596305', '9884169723', 'mohanthirumoorthy28@yahoo.com', '2002-02-28', 20, '2', '2', 'Kanaga T', 'Housewife', 72000.00, 0, 0.00, 15000.00, 'No :108/98 TKM road Mamallapuram', 'Kk nagar', '2209140009', '1', '1', 'upload_files/candidate_tracker/63494528459_Mohan resume1-1.pdf', NULL, '1', '2022-09-14', 0, '', '4', '57', NULL, 0.00, '', '0', NULL, '1', 'Fresher 5050 Can Be Trained In Our Roles Open For Field Kindly Check And Let Me Know Your Inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-14 12:36:10', 1, '2022-09-14 12:40:08', 0, NULL, 1),
(10199, 'RajaRajeswari A', '4', '9840110577', '7092461122', 'rajarajeswari1013@gmail.com', '2001-12-10', 20, '2', '2', 'Anandan', 'Driver', 20000.00, 2, 0.00, 20000.00, 'Villivakkam', 'Villivakkam', '2209140010', '1', '1', 'upload_files/candidate_tracker/65416938609_CV_2021-10-02-103505.pdf', NULL, '1', '2022-09-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', '5050 profile much focus for Java openings For time being looking for other openings need to clear 2 arrear papers if she comes back let us try', '1', '1', '0', '1', '1', '0', '2', '2022-09-16', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-14 12:57:13', 1, '2022-09-14 01:01:51', 0, NULL, 1),
(10200, '', '0', '7010060397', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209140011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-14 04:06:36', 0, NULL, 0, NULL, 1),
(10201, 'Veshleena', '20', '6385137189', '', 'sheebashasha@gmail.com', '1999-04-21', 23, '2', '2', 'Karpagam', 'House wife', 50000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2209140012', '1', '2', 'upload_files/candidate_tracker/56983675796_0_VESHLEENA RESUME_1662535934497_Veshleena.pdf', NULL, '1', '2022-09-16', 1, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication have exp in retail medical Sales bit worried with the Telesales Candidate need time to confirm  on the position, if she \ncomes back let us try', '5', '1', '', '1', '1', '', '2', '2022-09-19', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-14 04:47:21', 85, '2022-09-16 11:09:46', 0, NULL, 1),
(10202, 'Harini', '4', '9361785078', '', 'Harinigayu9710@gmail.com', '1999-06-16', 23, '2', '2', 'Kothandan', 'Steelworker', 20000.00, 1, 13500.00, 18000.00, 'Ponniamedu', 'Ponniamedu', '2209140013', '1', '2', 'upload_files/candidate_tracker/99804030969_DOC-20210826-WA0002.pdf', NULL, '1', '2022-09-15', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Much Focused to work in non voice  nit stability in the previous Exp,will hold this profile need time to confirm', '1', '1', '', '1', '1', '', '2', '2022-09-19', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-14 05:09:21', 85, '2022-09-15 01:07:52', 0, NULL, 1),
(10203, 'Dhakshayini r', '5', '7395942767', '7904089232', 'Naidudhakshu@gmail.com', '1999-08-09', 23, '2', '2', 'Suguna', 'Supervisor', 15000.00, 1, 13500.00, 15000.00, 'Ennore', 'Ennore', '2209140014', '1', '2', 'upload_files/candidate_tracker/53026346495_Dhak Resume.docx', NULL, '1', '2022-09-15', 1, '', '3', '59', '2022-09-19', 164208.00, '', '', '2022-09-20', '2', 'Selected for esales karthika team Consultant role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-14 05:14:19', 60, '2022-09-18 07:37:52', 0, NULL, 1),
(10204, 'Reju', '11', '8524052556', '', 'rejusai143@gmail.com', '1997-12-26', 24, '4', '2', 'Vanaja', 'Government employees', 50000.00, 1, 28000.00, 30000.00, 'CHENNAI', 'CHENNAI', '2209150001', '', '2', 'upload_files/candidate_tracker/65495502664_IMG_20220915_104430.pdf', NULL, '1', '2022-09-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much prefer to work in non voice process but no communication have 6 yrs in NGO based Govt project not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-15 10:19:26', 1, '2022-09-15 10:47:33', 0, NULL, 1),
(10205, 'Naresh.G', '6', '6379161095', '', 'naresh9392official@gmail.com', '2001-12-13', 20, '1', '2', 'Gothandaram.R', 'Vessel polished', 45000.00, 3, 0.00, 180000.00, 'Tondiarpet', 'Tondiarpet', '2209150002', '', '1', 'upload_files/candidate_tracker/58155742543_NARESH.pdf', NULL, '1', '2022-09-15', 0, 'P1253', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'Not Fit For Sale', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-15 10:19:42', 1, '2022-09-15 10:31:18', 0, NULL, 1),
(10206, 'premibalakrishnan', '4', '7603937225', '', 'saipremi1706@gmail.com', '1999-06-17', 23, '2', '2', 'balakrishnan', 'farmer', 7000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2209150003', '2', '1', 'upload_files/candidate_tracker/26002504139_PREMI B RESUME.docx', NULL, '1', '2022-09-15', 0, '', '3', '59', '2022-09-20', 138948.00, '', '', '2022-09-21', '2', 'Selected for Arumbakkam Location in consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-15 10:47:55', 60, '2022-09-17 06:15:00', 0, NULL, 1),
(10207, 'Aloshiya f', '4', '7397049617', '7395942767', 'aloshiyamothwani@gmail.com', '1999-11-26', 22, '2', '2', 'Anthony priya', 'House keeping', 15000.00, 1, 13500.00, 15000.00, 'Vyasarpadi', 'Vyasarpadi', '2209150004', '1', '2', 'upload_files/candidate_tracker/2971106677_Document.docx', NULL, '1', '2022-09-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'final Round reject by gaurav sir she came along with her friend only 1 selected and her friend joined us on 19Sep Dhakshayinin\n\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-15 11:02:56', 60, '2022-09-16 06:52:56', 0, NULL, 1),
(10208, 'Abinesh', '5', '9943267326', '', 'Abineshsanthakumar10@gmail.com', '2000-05-26', 22, '2', '2', 'Sankar', 'Farmer', 25000.00, 1, 0.00, 25000.00, 'Arakkonam', 'Arakkonam', '2209150005', '1', '1', 'upload_files/candidate_tracker/84645898348_Abinesh santhakumar.s resume PDF.pdf', NULL, '1', '2022-09-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher 1 month he need to travel from Arakonnam only,Having Health issue plus vison sight problem sustainability in our role doubts not suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-15 11:08:33', 1, '2022-09-15 11:49:35', 0, NULL, 1),
(10209, 'Manimegalai', '23', '8056293529', '', 'manimegalai.uxui@gmail.com', '1994-04-01', 28, '2', '1', 'Prasanna kumar', 'Visual designer', 70000.00, 0, 0.00, 300000.00, 'Royapettah', 'Royapettah', '2209150006', '1', '1', 'upload_files/candidate_tracker/18934058427_updated resume_compressed.pdf', NULL, '1', '2022-09-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for UI UX Have Exp in Ar Caller for 7 yrs Salary Exp is high Need time to confirm this profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-15 11:09:26', 1, '2022-09-15 11:16:39', 0, NULL, 1),
(10210, 'JEEVITHA', '4', '8939513946', '7358553040', 'Jeejeevima@gmail.com', '2001-04-15', 21, '2', '2', 'Gardian(grandfather)', 'Plumber', 15000.00, 0, 0.00, 20000.00, 'Vanagaram', 'Vanagaram', '2209150007', '1', '1', 'upload_files/candidate_tracker/52359049005_jeevitha resume.docx', NULL, '1', '2022-09-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate dropped Being a fresher Saalry Exp is very high and not ready to come down got another offer too', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-15 11:40:09', 1, '2022-09-15 11:59:54', 0, NULL, 1),
(10211, 'Mageshwaran', '6', '9444674595', '9841411173', 'mageshkd2314@gmail.com', '1996-09-08', 26, '1', '2', 'Karuppusamy', 'Mtc conductor', 50000.00, 2, 16000.00, 17000.00, 'Chennai', 'Chennai', '2209150008', '', '2', 'upload_files/candidate_tracker/96612248416_MageshwaranRESUME.docx', NULL, '1', '2022-09-15', 0, '55574', '3', '59', '2022-09-19', 199000.00, '', '', '2022-09-20', '1', 'Selected for  Thiyagu team with PF/eSI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-15 12:22:06', 60, '2022-09-16 06:40:44', 0, NULL, 1),
(10212, 'T.Santhoshkumar', '6', '9344640479', '', 'santhosh3214kumar@gmail.com', '1998-12-30', 23, '4', '2', 'S.Thiruvavukarsu', 'Carbondaer', 75000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209150009', '', '1', 'upload_files/candidate_tracker/53967590501_TapScanner 09-06-2022-15?06.pdf', NULL, '1', '2022-09-15', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit For Sale', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-15 12:53:22', 60, '2022-09-15 01:42:45', 0, NULL, 1),
(10213, 'GOKUL K', '6', '7200322745', '9489938288', 'goksssmk77@gmail.com', '2000-09-12', 22, '1', '2', 'Kathirvel', 'Textile', 15000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2209150010', '', '1', 'upload_files/candidate_tracker/29613836897_Gokul Resume.pdf', NULL, '1', '2022-09-15', 0, 'P1333', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-15 01:15:16', 1, '2022-09-15 01:19:46', 0, NULL, 1),
(10214, 'S.Monika', '5', '8637675812', '', 'monikasivabalan@gmail.com', '2001-11-10', 20, '2', '2', 'Sivabalan', 'Firshermen', 30000.00, 1, 250000.00, 35000.00, 'Puducherry', 'Kodambakkam', '2209150011', '1', '2', 'upload_files/candidate_tracker/36530685763_Naukri_MonikaSivabalan[3y_8m].docx', NULL, '1', '2022-09-15', 0, '', '3', '59', '2022-10-10', 300000.00, '', NULL, '2023-05-06', '2', 'Selected for Santhosh Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-15 03:32:46', 60, '2022-10-01 10:14:31', 0, NULL, 1),
(10215, 'Siva sankaran', '4', '9345664474', '6382071946', 'Sivalf410@gmail.com', '2000-07-29', 22, '2', '2', 'Manikandan', 'Graphic design', 50000.00, 0, 0.00, 12000.00, '12a/14 Appolo study centre nandhi loop strt west', 'chennai', '2209160001', '1', '1', 'upload_files/candidate_tracker/17878279211_SIVA SANKARAN S.pdf', NULL, '1', '2022-09-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no communication Poor understanding not suitable  for out Telecaller roles also very clear he will move out if he get a suitable opportunity in his design interest.We also checked for our UX design,Portfolio design not upto the mark as we expected will not sustain in our IT tole not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-16 10:23:14', 85, '2022-09-16 11:13:41', 0, NULL, 1),
(10216, 'Madhumitha', '5', '9047026609', '7639549769', 'mithamadhu943@gmail.com', '1999-11-17', 22, '1', '2', 'M.vijaya', 'Farming', 9000.00, 0, 0.00, 20000.00, 'Vellore', 'Bangalore', '2209160002', '', '1', 'upload_files/candidate_tracker/25160355046_Mathumitha.pdf', NULL, '1', '2022-09-16', 0, '555555', '3', '59', '2022-09-21', 168000.00, '', '3', '2022-11-05', '2', 'Selected for ESales Mohanraj Team in Consultant Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-16 10:38:10', 60, '2022-09-20 04:04:12', 0, NULL, 1),
(10217, 'Hema dharshini S', '5', '6382199794', '9965702497', 'hemahema8654@gmail.com', '2001-10-11', 20, '3', '2', 'Shanmugam(late)', 'Late', 1000.00, 1, 0.00, 20000.00, 'Rasipuram', 'Rasipuram', '2209160003', '', '1', 'upload_files/candidate_tracker/93118986974_Hema.pdf', NULL, '1', '2022-09-16', 0, '', '3', '59', '2022-09-21', 168000.00, '', '4', '2022-11-01', '2', 'Selected for ESales Mohanraj Team in Consultant Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-16 10:38:27', 60, '2022-09-20 03:47:30', 0, NULL, 1),
(10218, 'YUVARAJ R', '5', '9789003498', '8778102477', 'yuvarajyuvaraj0702@gmail.com', '2002-02-07', 20, '2', '2', 'Rajendran R', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'OTTERI Chennai', 'Chennai tamilnadu', '2209160004', '1', '1', 'upload_files/candidate_tracker/4626252518_yuvaraj resume.pdf', NULL, '1', '2022-09-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher  not open for Sales No Communication Need time to think and confirm Looking for flexibility in timings and the salary', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-16 11:53:01', 1, '2022-09-16 12:03:21', 0, NULL, 1),
(10219, 'Heena Farien M', '25', '9003297755', '9003262602', 'heenafarien2020@gmail.com', '1997-07-30', 25, '2', '1', 'V Syed Ibrahim', 'Personal Gym Trainer', 20.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2209160005', '1', '2', 'upload_files/candidate_tracker/38933046008_heena_generated_resume (1).pdf', NULL, '1', '2022-09-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our roles have exp as AR caller Married and have a 1yr kid not open for Voice process looking for Non voice and pressure free will not sustain in our roles', '8', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-16 12:13:10', 85, '2022-09-16 12:31:07', 0, NULL, 1),
(10220, 'ARSHAD PARVES K S', '5', '8428298853', '', 'arshadparves@gmail.com', '1998-03-13', 24, '2', '2', 'KAREEM S', 'Tutor', 200000.00, 1, 0.00, 18000.00, 'Kalpakkam', 'Chennai', '2209160006', '1', '1', 'upload_files/candidate_tracker/47127563567_ARSHAD', NULL, '1', '2022-09-16', 0, '', '3', '59', '2022-09-26', 182496.00, '', '', '1970-01-01', '1', 'Selected for Technical Support - 15K TH post 3 months based onperformance 18K Need to check for the SA', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '4', 'Final Round interviewed by Gokul and Shortlisted for Technical Support Role', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-16 12:28:03', 60, '2022-09-16 03:19:51', 0, NULL, 1),
(10221, 'Anusuya', '4', '9566630291', '9080374304', 'anukuttyavks@gmail.com', '2000-02-22', 22, '2', '2', 'Menaka', 'Bussiness', 291000.00, 1, 0.00, 18000.00, 'Viduthalai nagar s kolathur', 'Viduthalai Nagar 6 th Street s kolathur', '2209160007', '23', '2', 'upload_files/candidate_tracker/79780171319_anu.pdf.pdf', NULL, '1', '2022-09-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average not much comfort to work in Pressure Too long Distance and not ready to relocate,not suitable Need to open a lot', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-16 12:34:13', 60, '2022-09-16 01:19:05', 0, NULL, 1),
(10222, 'arunadevi', '4', '8754029272', '', 'arunadevig04@gmail.com', '2001-04-25', 21, '2', '2', 'ganesan', 'farmer', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2209160008', '2', '1', 'upload_files/candidate_tracker/64566077950_arunadevi.docx', NULL, '1', '2022-09-16', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', '5050 Profile Communication Average,Sustainability Doubt Came along with Friend Kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-16 01:19:53', 1, '2022-09-16 01:21:22', 0, NULL, 1),
(10223, 'abarna a', '4', '7010151452', '', 'abarna.arivu@gmail.com', '2002-02-23', 20, '2', '2', 'arivazhagan', 'business', 15000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2209160009', '2', '1', 'upload_files/candidate_tracker/54594183611_ABARNA.pdf', NULL, '1', '2022-09-16', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', 'Communication ok Fresher Can be trained in our role kindly check and let me know your interest\n', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-16 01:23:22', 1, '2022-09-16 01:25:02', 0, NULL, 1),
(10224, '', '0', '9600015805', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209160010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-16 02:26:19', 0, NULL, 0, NULL, 1),
(10225, 'Dhivya', '31', '8608497502', '9988066753', 'mvdivya683@gmail.com', '2000-06-20', 22, '2', '2', 'Murugesan', 'Nothing', 15000.00, 2, 0.00, 15000.00, 'Ariyalur DT', 'Chennai', '2209160011', '1', '1', 'upload_files/candidate_tracker/37105011030_DHIVYA BCA.pdf', NULL, '1', '2022-09-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much strong in the basics skills also not comfort with the TxxampC Need time to check with her family if she comes back let us try\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-16 06:15:37', 85, '2022-09-17 10:06:06', 0, NULL, 1),
(10226, 'Murugesa Pandi K', '16', '9087528711', '8056488904', 'pandi21pandi06@gmail.com', '1999-06-21', 23, '2', '2', 'M Kadarkarai Thangam', 'Business', 30000.00, 2, 16500.00, 25000.00, 'Chennai', 'Chennai', '2209160012', '1', '2', 'upload_files/candidate_tracker/28280435641_pandi resume .pdf', NULL, '1', '2022-09-17', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication No Have exp as DA,Focusing on the salary growth,not much confident to speak in english,hold and let us try later', '3', '1', '', '1', '1', '', '2', '2022-09-19', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-16 08:01:22', 85, '2022-09-17 10:06:32', 0, NULL, 1),
(10227, 'Swathy', '16', '9384685994', '', 'Swathyjmj28@gmail.com', '1998-08-28', 24, '2', '2', 'Gokulan', 'Plumber', 30000.00, 1, 130000.00, 16000.00, 'Chennai', 'Chennai', '2209170001', '1', '2', 'upload_files/candidate_tracker/16634111766_Swathy Resume.pdf', NULL, '1', '2022-09-17', 20, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication  is Good have exp in insurance sales not open for sales again comfort in renewals can be trained kindly check and let me know your interest', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-17 09:41:13', 85, '2022-09-17 10:06:19', 0, NULL, 1),
(10228, 'Dharshika M', '6', '8344053457', '6383140227', 'm.dharshika2000@gmail.com', '2000-03-01', 22, '2', '2', 'Muthukumar C', 'Agriculture', 10000.00, 1, 0.00, 10000.00, 'Erode', 'Modakkurichi', '2209170002', '1', '1', 'upload_files/candidate_tracker/85819038093_DHARSHIKA.M RESUME.pdf', NULL, '1', '2022-09-17', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'distance 22km... so not suitable for our timing.. so rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-17 10:26:55', 85, '2022-09-17 10:43:21', 0, NULL, 1),
(10229, 'Fayaz Ahmed Khan', '5', '9094329025', '8668183657', 'fayaz6561@gmail.com', '2007-09-17', 0, '2', '2', 'Habibunisha begum', 'Housewife', 50.00, 1, 0.00, 38.00, 'Madhavaram', 'Chennai', '2209170003', '1', '2', 'upload_files/candidate_tracker/26939284797_fayaz resume CV-1.pdf', NULL, '1', '2022-09-17', 15, '', '3', '59', '2023-02-01', 400000.00, '', '', '2023-02-07', '1', 'Selected for Shanmugam sir Team with PF/PT', '5', '2', '4', '1', '1', '', '2', '2022-09-19', '2', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-17 11:46:49', 60, '2023-01-31 05:07:40', 0, NULL, 1),
(10230, 'S.Ajay', '5', '6382225188', '', 'ajaykumarajaykumar92401@gmail.com', '2007-09-17', 0, '2', '2', 'K.sankar', 'Driver', 12000.00, 703, 17500.00, 20000.00, 'Chennai', 'Chennai', '2209170004', '1', '2', 'upload_files/candidate_tracker/49698601526_RESUME_S.AJAY.pdf', NULL, '1', '2022-09-17', 1, '', '3', '59', '2022-09-20', 252000.00, '', '', '2022-09-21', '1', 'Selected for GK Sir Team Staff Role', '5', '2', '1', '1', '3', '1', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-17 12:08:34', 60, '2022-09-19 05:24:47', 0, NULL, 1),
(10231, 'VIVEDHA P', '11', '8825872642', '', 'vivedha26@gmail.com', '2000-01-26', 22, '2', '2', 'Prem Kumar M', 'Highway department', 30000.00, 1, 20000.00, 20000.00, 'PUDUKKOTTAI', 'Chennai , Ekkattuthangal', '2209170005', '1', '2', 'upload_files/candidate_tracker/81212941193_Vivedha Resume.pdf', NULL, '1', '2022-09-17', 0, '', '3', '59', '2022-09-26', 90000.00, '', '', '2022-09-27', '2', '5 months Intern 7.5K then 2yrs SA 12-14K need to finalise', '6', '1', '', '1', '1', '', '2', '2022-09-19', '3', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-17 03:06:41', 60, '2022-09-26 10:50:28', 0, NULL, 1),
(10232, '', '0', '8098806672', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209170006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-17 04:45:27', 0, NULL, 0, NULL, 1),
(10233, 'Lakshmanan', '4', '9578497295', '6374079099', 'lakshmanan22141@gmail.com', '1994-10-06', 27, '3', '2', 'R . jayalakshmi', 'House wife', 130000.00, 3, 14000.00, 18000.00, 'Namakkal', 'Chennai', '2209170007', '', '2', 'upload_files/candidate_tracker/83491782750_LAKSHMANAN (1).docx', NULL, '1', '2022-09-19', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-17 05:20:19', 1, '2022-09-18 05:42:22', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10234, 'Silambarasan T', '23', '6382269783', '9751782017', 'silambukural13@gmail.com', '2000-06-15', 22, '2', '2', 'Tamilarasan', 'Farmer', 10000.00, 3, 0.00, 350000.00, '10A East Street, Srinivasapuram, Ariyalur-621705', '19/2 Devi Karumariamman nagar , Velachery 60042', '2209170008', '1', '1', 'upload_files/candidate_tracker/20104799990_Silambarasan-Resume.pdf', NULL, '1', '2022-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills Need to learn a lot not comfortable with the pay need time to check and confirm', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-17 05:26:12', 85, '2022-09-19 10:04:03', 0, NULL, 1),
(10235, 'David Raghul', '16', '8220095162', '', 'Davidraghul2003@gmail.com', '1999-06-25', 23, '2', '2', 'A.Antony christy', 'Two wheeler mechanic', 18000.00, 1, 0.00, 19000.00, 'Uthukottai', 'Uthukottai', '2209170009', '1', '1', 'upload_files/candidate_tracker/65143611428_david .pdf', NULL, '1', '2022-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication no not open up to speak in english no ideas in the profession to go sustainability doubts in our role,declined several offers based onthe salary,High Exp on Salary', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-17 05:38:44', 85, '2022-09-19 12:16:39', 0, NULL, 1),
(10236, 'B.Akilandeswari', '4', '6374700178', '8870353260', 'akilaakil812@gmail.com', '1997-10-08', 24, '3', '2', 'T. Balaiyan', 'VAO Assistant( RTD )', 15000.00, 4, 5000.00, 10000.00, 'Ammapet', 'Ammapet', '2209190001', '', '2', 'upload_files/candidate_tracker/94724285124_Document-WPS Office.pdf', NULL, '1', '2022-09-19', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-19 10:41:26', 1, '2022-09-19 11:08:27', 0, NULL, 1),
(10237, 'Eswari', '4', '9790458609', '9787848266', 'eswariselladurai2000@gmail.com', '2000-06-02', 22, '3', '2', 'Selladurai', 'Farmer', 20000.00, 1, 5000.00, 10000.00, 'Ammapet', 'Ammapet', '2209190002', '', '2', 'upload_files/candidate_tracker/40322469798_Eswari (1).pdf', NULL, '1', '2022-09-19', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-19 10:41:39', 1, '2022-09-19 11:02:11', 0, NULL, 1),
(10238, 'Roopa Lakshmi S', '11', '9962351767', '', 'mailtoroopa758@gmail.com', '1999-04-30', 23, '2', '2', 'Sathappan', 'Business', 25000.00, 1, 15000.00, 20000.00, 'Nungambakkam', 'Nungambakkam', '2209190003', '1', '2', 'upload_files/candidate_tracker/83156520114_Roopa', NULL, '1', '2022-09-19', 0, '', '3', '59', '2022-09-21', 182496.00, '', '', '1970-01-01', '1', 'Selected for Recruiter Role Have 8 months Exp in IT,Can give a try,Final round interviewed by Gokul and got selected  15K TH 2yrs SA No document Submission', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-19 11:05:24', 60, '2022-09-19 01:10:00', 0, NULL, 1),
(10239, '', '0', '9962959095', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-19 12:46:44', 0, NULL, 0, NULL, 1),
(10240, 'Kannan', '16', '9176268134', '', 'gkannan997@gmail.com', '1997-05-09', 25, '2', '2', 'Ganesan yasothai', 'Labour house wife', 120000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2209200001', '1', '1', 'upload_files/candidate_tracker/2598703850_KANNAN-converted.pdf', NULL, '1', '2022-09-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills communication Average will not sustain in our roles not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-20 10:33:05', 60, '2022-09-20 01:25:31', 0, NULL, 1),
(10241, 'sunil kumar', '4', '9677064303', '', 'sunilkumareakambaram@gmail.com', '1990-08-03', 32, '2', '2', 'eakamabaram', 'nil', 13000.00, 4, 0.00, 12000.00, 'chennai', 'chennai', '2209200002', '2', '1', 'upload_files/candidate_tracker/31932848972_pdf Sunil Kumar 1.pdf', NULL, '1', '2022-09-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance up and down 70kms not ready to relocate Long Career Gap No sustainability in the previous exp will not sustain and not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-20 10:45:46', 1, '2022-09-20 10:48:40', 0, NULL, 1),
(10242, 'T.J.BEENA RUBY', '6', '7395928257', '9840300177', 'tjpeter0305@gmail.com', '1996-09-03', 26, '1', '2', 'J.bagyalakshmi', 'House wife', 30000.00, 2, 14000.00, 16000.00, 'CHENNAI', 'CHENNAI', '2209200003', '', '2', 'upload_files/candidate_tracker/67781311932_Beena Ruby Resume-1.pdf', NULL, '1', '2022-09-20', 10, 'P1357', '3', '59', '2022-09-26', 202104.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team - Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-20 11:12:54', 60, '2022-09-23 06:05:41', 0, NULL, 1),
(10243, 'SathishKumar S', '5', '9500611084', '9092463049', 's.n.sarathsathish@gmail.com', '1996-06-14', 26, '2', '2', 'Navaneetham S', 'Farmer', 2.50, 3, 0.00, 150000.00, 'Mayiladuthurai', 'Saidapet', '2209200004', '1', '1', 'upload_files/candidate_tracker/21640984275_Sathish1996.docx', NULL, '1', '2022-09-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher cAreer Gap Need to train a lot Candidate need to speak focusing much with the non voice process', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-20 11:13:58', 60, '2022-09-20 01:27:43', 0, NULL, 1),
(10244, 'Shalini', '6', '8667896522', '9444330145', 'Gshalinishalu15@mail.com', '1998-04-15', 24, '1', '2', 'Santhi', 'House wife', 30.00, 1, 0.00, 18.00, 'Avadi', 'Avadi', '2209200005', '', '2', 'upload_files/candidate_tracker/19821811512_DocScanner 20-Sep-2022 11-23 am.pdf', NULL, '1', '2022-09-20', 1, 'Jobs', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have xp but no sustainability in the previous exp Can give a try Too long Distance Up and down 50kms kindly check and let me know your interest', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-20 11:15:41', 60, '2022-09-20 12:01:38', 88, '2022-11-15 06:22:42', 0),
(10245, 'Roshan R', '5', '9342647535', '9789930408', 'roshanappu93@gmail.com', '2003-03-09', 19, '2', '2', 'Ravindran', 'Hotel manager', 20000.00, 1, 0.00, 22000.00, '38/20 Cross Road, New Washermenpet', '38/20 Cross Road, New Washermenpet', '2209200006', '1', '2', 'upload_files/candidate_tracker/44155856085_Roshan Resume1.pdf', NULL, '1', '2022-09-20', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '19 yrs no Graduation 12 passed 1.2yrs 3 companies this is  the 4th one looking only for the salary growth Have 3 months exp in telecaller wiht 15K salary looking for a change just for the salary hike', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-20 11:17:46', 60, '2022-09-20 01:26:03', 0, NULL, 1),
(10246, 'Shalinithiyagarajan', '25', '6382889856', '8124814441', 'thiyagarajanshalini877@gmail.com', '2001-04-05', 21, '1', '2', 'Thiyagarajan', 'Painter', 15000.00, 0, 0.00, 15000.00, '27/15 TN Nagar palnipet Arakkonam vellore', 'Madiwala Bangalore', '2209200007', '', '1', 'upload_files/candidate_tracker/76337779496_resume from sis lap Image to PDF 20220408 13.15.19.pdf', NULL, '1', '2022-09-20', 0, '5326', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-20 11:59:48', 1, '2022-09-20 12:32:23', 0, NULL, 1),
(10247, 'RAGHUL', '6', '7708741044', '', 'raghulthangaraj95@gmail.com', '1995-10-23', 26, '4', '1', 'NIRMALADEVI', 'NILL', 12000.00, 1, 16000.00, 18000.00, 'Erode', 'Erode', '2209200008', '', '2', 'upload_files/candidate_tracker/11840472828_raghul resume 2019-converted-1.pdf', NULL, '3', '2022-09-20', 0, '', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'Not fit for sales..', '5', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-20 12:25:42', 1, '2022-09-20 12:32:48', 0, NULL, 1),
(10248, 'Pavithra M', '13', '9361811348', '', 'Pavithravj01042001@gmail.com', '2001-04-01', 21, '2', '2', 'S .munivel', 'Tailor', 15000.00, 2, 0.00, 18000.00, 'chennai', 'Chennai', '2209200009', '1', '1', 'upload_files/candidate_tracker/21046577339_Pavithra M.pdf', NULL, '1', '2022-09-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-20 01:01:48', 1, '2022-09-20 01:07:00', 0, NULL, 1),
(10249, 'Lenin.v', '4', '8248767396', '8110922362', 'lenineee531@gmail.com', '1996-05-03', 26, '2', '2', 'Veerapandiyan', 'Former', 12000.00, 5, 15000.00, 16000.00, 'Chidambaram', 'Tharamani', '2209210001', '1', '2', 'upload_files/candidate_tracker/92991316939_LENIN RESUME-1.pdf', NULL, '1', '2022-09-21', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to speak a lot  have exp in core Electrical for 3yrs fresher for Telecaller handling pressure doubt will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-21 09:57:03', 85, '2022-09-21 10:22:15', 0, NULL, 1),
(10250, 'karthikeyan d', '4', '8838338770', '', 'in.karthi1234@gmail.com', '1999-07-28', 23, '2', '2', 'dhanasekar a', 'welder', 10000.00, 1, 0.00, 12000.00, 'chennai', 'tenampet', '2209210002', '2', '1', 'upload_files/candidate_tracker/47157690693_Karthik resume.docx', NULL, '1', '2022-09-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking much for inbound calls ave exp in non voice process Frequent Job Changes will not sustain and handle our pressure\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-21 10:03:55', 1, '2022-09-21 10:05:38', 0, NULL, 1),
(10251, 'durga ganesh s', '4', '9361589948', '', 'smartganesh0108@gmail.com', '2000-05-01', 22, '2', '2', 'srinivasan rao', 'tailor', 13000.00, 1, 0.00, 12000.00, 'chennai', 'west mambalam', '2209210003', '2', '1', 'upload_files/candidate_tracker/33821279446_Durga Ganesh S - 1663137232.pdf', NULL, '1', '2022-09-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much in outbound calls have exp in non voice process not ok much with sales calls will not sustain', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-21 10:07:00', 1, '2022-09-21 10:11:13', 0, NULL, 1),
(10252, 'dhilip kumar b', '4', '8610008669', '', 'dhiliprohith7399@gmail.com', '1999-03-07', 23, '2', '2', 'balaguru', 'farmer', 20000.00, 1, 0.00, 12000.00, 'chennai', 'perungulathur', '2209210004', '2', '1', 'upload_files/candidate_tracker/31196104018_Dhilip kumar(CV) (1)-2.pdf', NULL, '1', '2022-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-21 10:12:27', 1, '2022-09-21 10:13:51', 0, NULL, 1),
(10253, 'Swetha', '6', '7092993728', '', 'Govidhansangavi@gmail.com', '1992-05-13', 30, '1', '1', 'Father', 'Teacher', 300000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209210005', '', '1', 'upload_files/candidate_tracker/59064689486_N Srividhya.PDF', NULL, '1', '2022-09-21', 0, 'Jobs', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher 12th discontinued Need to open a lot internal team referene do check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-21 10:29:31', 60, '2022-09-21 11:31:48', 88, '2022-11-15 06:22:42', 0),
(10254, 'Pavithra', '6', '9941562773', '', 'Riyanpavi2022@gmail.com', '2002-04-04', 20, '1', '1', '1', '20000', 300000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2209210006', '', '1', 'upload_files/candidate_tracker/78020580796_N Srividhya.PDF', NULL, '1', '2022-09-21', 0, 'Jobs', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher 12th Discontinued Need To Open A Lot Internal Team Referene Do Check And Let Me Know Your Inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-21 10:33:45', 60, '2022-09-21 11:32:02', 88, '2022-11-15 06:22:42', 0),
(10255, 'Nandhini', '11', '9840396223', '9719295221', 'nandhiniraj27121997@gmail.com', '1997-12-27', 24, '1', '2', 'Ananda raj', 'Painter', 19000.00, 1, 19000.00, 24000.00, 'Aminjaikarai chennai', 'Aminjaikarai chennai', '2209210007', '', '2', 'upload_files/candidate_tracker/21877872741_NANDHINI RESUME 18.7.2021 (1).docx', NULL, '1', '2022-09-21', 30, 'P1121', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Having Exp in PF/ESI/PT  compliance only 4.2 yrs Exp in same company Mandatory 30 days notice  Salary Exp is min 23-24K TH\n', '6', '2', '0', '1', '1', '0', '2', '2022-09-24', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-21 11:22:27', 1, '2022-09-21 11:27:01', 0, NULL, 1),
(10256, 'C.soundharam', '4', '8667847041', '8270889756', 'soundharam28@gmail.com', '1994-01-28', 28, '4', '1', 'Chidambaram', 'Customer service Associate', 45000.00, 1, 0.00, 20000.00, 'Chennai', 'Velechery', '2209210008', '', '1', 'upload_files/candidate_tracker/95087777128_ PGCMS.pdf', NULL, '1', '2022-09-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very Slow open for non voice only will not handle and sustain our pressure lot of personal issue will not sustain for a long not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-21 11:47:05', 60, '2022-09-21 12:54:19', 0, NULL, 1),
(10257, 'Amanullah S', '11', '9345722037', '', 'amann032000@gmail.com', '2000-01-03', 22, '2', '2', 'Safeeyullah Baig K', 'Private company', 40000.00, 1, 0.00, 18000.00, 'No:22 6/6 B old well street ts gopal Nagar TVT', 'Chennai', '2209210009', '1', '1', 'upload_files/candidate_tracker/40645967795_A resume 1.pdf', NULL, '1', '2022-09-21', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher  Have 4 months Exp in Networking,Looking for HR Recruitment Pursuing MBA  Correspondance Not much ok wiht TxxampC candidate\nNeed time to confirm', '6', '1', '', '1', '1', '', '2', '2022-09-23', '2', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-21 11:50:26', 60, '2022-09-21 01:01:09', 0, NULL, 1),
(10258, '', '0', '6381146515', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209210010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-21 09:32:40', 0, NULL, 0, NULL, 1),
(10259, 'Nagaraj G', '31', '7826956973', '9659327977', 'mithunaga14@gmail.com', '2001-02-14', 21, '2', '2', 'Gurusamy S', 'Mill manager', 30000.00, 1, 0.00, 2.50, 'Kovilpatti', 'Kovilpatti', '2209220001', '1', '1', 'upload_files/candidate_tracker/46336685126_G.Nagaraj-Resume (2022).pdf', NULL, '1', '2022-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Counds Good Have basic skills knowledge candidate ok with TxxampC but his parents are not ok,If he comes back can give a try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-22 10:03:11', 85, '2022-09-22 10:11:46', 0, NULL, 1),
(10260, 'R. Keerthana', '28', '7358447532', '', 'Keerthanaragunathan207@gmail.com', '2000-12-03', 21, '3', '2', 'Ragunathan', 'Mechanic', 40000.00, 1, 18000.00, 24000.00, 'Chennai', 'chennai', '2209220002', '', '2', 'upload_files/candidate_tracker/98877912270_R. keerthana resume updated.docx', NULL, '1', '2022-09-22', 2, '', '4', '98', NULL, 0.00, '', '0', NULL, '2', 'Communication Good Fresher for our Roles can give a try 6-0 days notice, waiting for accenture interview sustainability Doubts kindly check and let me know your interest', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 10:27:35', 1, '2022-09-22 10:59:15', 0, NULL, 1),
(10261, '', '0', '7904369456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209220003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-22 11:00:47', 0, NULL, 0, NULL, 1),
(10262, 'A . Arun francis', '23', '7397663407', '9080761967', 'arunancis1112@gmail.com', '1998-06-11', 24, '2', '2', 'I jancy rani', 'Home maker', 6000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Maraimalai nagar', '2209220004', '1', '1', 'upload_files/candidate_tracker/13917152408_Arun BE(MCT).pdf', NULL, '1', '2022-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT, No  basics skills in JS understanding is poor will not sustain in our roles and long run doubts .focus to work in Angular openings much', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-22 11:32:10', 60, '2022-09-22 12:07:13', 0, NULL, 1),
(10263, 'Mohan.m', '23', '8778977197', '', 'Mohangwthm@gmail.com', '1997-09-02', 25, '3', '2', 'Vijayanirmala', 'Home maker', 7000.00, 1, 0.00, 17000.00, 'Thiruvarur', 'Thooraipakkam', '2209220005', '', '1', 'upload_files/candidate_tracker/47829463885_MOHAN BE(MCT).pdf', NULL, '1', '2022-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Testing Profile no ideas in development fresher for IT Sounding very low will not sustain and handle our pressure', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 11:33:20', 1, '2022-09-22 11:40:44', 0, NULL, 1),
(10264, 'Pooja B', '17', '6374536611', '', 'poojabaskar22699@gmail.com', '1999-06-22', 23, '2', '2', 'Baskar', 'Businessman', 60000.00, 1, 20000.00, 25000.00, 'Arni', 'Chennai', '2209220006', '1', '2', 'upload_files/candidate_tracker/63275100378_POOJA- pdf.docx', NULL, '1', '2022-09-22', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good Can give a try for POS,Have Exp in BDE in recruitment firm will schedule with Bharathi Axa Gajendra 2nd round interviewed by Gokul and move forwarded', '5', '1', '', '1', '1', '', '2', '2022-09-23', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-22 11:47:51', 85, '2022-09-22 12:05:20', 0, NULL, 1),
(10265, 'Ashok s', '23', '9047746929', '', 'ashokrathinam@outlook.com', '1995-01-13', 27, '2', '2', 'SELVARATHINAM M', 'Teacher', 60000.00, 3, 0.00, 240000.00, 'Vedaranyam Tamilnadu', 'Bangalore', '2209220007', '1', '1', 'upload_files/candidate_tracker/57478436397_Ashok.s-Resume.pdf', NULL, '1', '2022-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude issue Holding several offers and looking for more most preferred location to work is bangalore not ready to learn additional Skills on UI Development and not ready to stay more than an year', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-22 01:01:42', 1, '2022-09-22 01:06:02', 0, NULL, 1),
(10266, 'J. Aishwariya', '5', '8072618318', '9884147420', 'aishwariyaaice13122001@gmail.com', '2001-12-13', 20, '3', '2', 'Jayashankar', 'Business', 30000.00, 1, 0.00, 15000.00, 'Pallavaram', 'Pallavaram', '2209220008', '', '1', 'upload_files/candidate_tracker/36412090988_ais.pdf', NULL, '1', '2022-09-22', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Telecaller Sales 5050 Profile Came along with friend Sustainability Doubts Need to analyse in 7 days training will confirm once again the interest of the candidate and schedule her for the telephonic', '5', '1', '0', '1', '1', '0', '2', '2022-09-23', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 01:25:02', 1, '2022-09-22 01:33:09', 0, NULL, 1),
(10267, 'Anish kumar', '14', '9344482493', '9626064549', 'anishkumar200204@gmail.com', '2002-12-04', 19, '3', '2', 'T.Ganesan', 'Bussiness', 25000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2209220009', '', '1', 'upload_files/candidate_tracker/34796239219_ANISH RESUME PYTHON (1).docx', NULL, '1', '2022-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic knowledge in Javascript Scheduled them for 2nd level but left without attending ', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 01:26:09', 1, '2022-09-22 01:33:54', 0, NULL, 1),
(10268, 'Sakthi pragadeesh', '14', '9360514137', '9344482493', 'Mr.sakthipragadeesh@gmail.com', '2002-01-13', 20, '3', '2', 'A.selvaganapathy', 'Business man', 50000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2209220010', '', '1', 'upload_files/candidate_tracker/24364352254_SAKTHI RESUME PYTHON (1).docx', NULL, '1', '2022-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Knowledge In Javascript Scheduled Them For 2nd Level But Left Without Attending ', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 01:26:11', 1, '2022-09-22 01:34:20', 0, NULL, 1),
(10269, 'Praveen Kumar', '31', '9176045519', '8072154183', 'pravinaustin619@gmail.com', '1998-09-13', 24, '2', '2', 'Venkatesan E', 'Driver', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2209220011', '1', '1', 'upload_files/candidate_tracker/25030441029_PRAVEEN.pdf', NULL, '1', '2022-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT, Not much strong in basic JS Skills,Looking for Direct Employment not much comfort in Internship Role,Need time to check with family on the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-22 01:53:16', 60, '2022-09-22 03:31:45', 0, NULL, 1),
(10270, 'Lokeshkumar', '16', '8778111388', '8678974541', 'lokeshavi.1904@gmail.com', '1996-04-19', 26, '3', '2', 'Kamalakannan', 'Labour', 400000.00, 1, 370000.00, 425000.00, 'Chennai', 'Chennai', '2209220012', '', '2', 'upload_files/candidate_tracker/82188513228_Lokesh resume 2022- 2023.pdf', NULL, '2', '2022-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 04:04:36', 1, '2022-09-22 05:54:26', 0, NULL, 1),
(10271, 'Shravan ponnappa', '5', '7619591637', '9481140299', 'shravanponnappa451@gmail.com', '1997-04-30', 25, '2', '2', 'Thirthakumar DA', 'Agriculture', 100000.00, 2, 0.00, 25000.00, 'Kodagu', 'Bangalore', '2209220013', '1', '1', 'upload_files/candidate_tracker/48871655724_SHRAVAN PONNAPPA Resume1.pdf', NULL, '1', '2022-09-22', 0, '', '1', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-22 04:53:32', 85, '2022-09-22 05:23:45', 0, NULL, 1),
(10272, 'k kumar', '16', '7708990912', '8248331344', 'kumaransanthosh554@gmail.com', '1994-05-25', 28, '3', '2', 'ragava kuppan', 'construction', 25000.00, 2, 25000.00, 30000.00, 'gerukkambakkam uthukottai tiruvallur', 'villivakkam chennai', '2209220014', '', '2', 'upload_files/candidate_tracker/62186806458_resume.docx', NULL, '3', '2022-09-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 05:12:13', 1, '2022-09-22 05:34:48', 0, NULL, 1),
(10273, '', '0', '6383904474', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209220015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-22 06:11:31', 0, NULL, 0, NULL, 1),
(10274, 'Jenifer', '4', '8148493161', '7010471521', 'jj2709905@gmail.com', '2000-04-02', 22, '2', '2', 'Ramalingam (parent)', 'Driver', 35000.00, 2, 16000.00, 18000.00, 'Chennai', 'Chennai', '2209220016', '1', '2', 'upload_files/candidate_tracker/3721712828_Adobe Scan Sep 17, 2022.pdf', NULL, '1', '2022-09-24', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-22 08:11:38', 85, '2022-09-24 10:23:59', 0, NULL, 1),
(10275, '', '0', '9150615620', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 08:12:26', 0, NULL, 0, NULL, 1),
(10276, '', '0', '6381659585', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 08:32:15', 0, NULL, 0, NULL, 1),
(10277, 'Shilpa Muthusamy', '31', '7305291049', '9943629668', 'shilpamuthusamy07@gmail.com', '2000-03-07', 22, '2', '2', 'Muthusamy', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Salem', 'Chennai', '2209230003', '1', '1', 'upload_files/candidate_tracker/71823055987_Shilpa_Muthusamy_Resume_.docx', NULL, '1', '2022-09-23', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need time to confirm with the parents if she comes back let us try can be trained', '2', '1', '', '1', '1', '', '2', '2022-09-26', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 10:12:42', 96, '2022-09-23 03:37:03', 0, NULL, 1),
(10278, 'Resun Richard J', '13', '7358441419', '9791018596', 'resunrichard007@gmail.com', '1998-12-14', 23, '2', '2', 'John Kumar R', 'Auto driver', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2209230004', '1', '1', 'upload_files/candidate_tracker/67780881909_Resun Richard J. Resume.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long distance around 40 kms up and down Looking much on the salary growth He was into civil earlier will not sustain in our roles', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-23 10:27:17', 1, '2022-09-23 10:33:20', 0, NULL, 1),
(10279, 'Yogapriya', '31', '9080942012', '9885664534', 'yogapriyamoorthi121199@gmail.com', '2007-09-23', 0, '2', '2', 'Parent', 'Farmer', 200000.00, 1, 0.00, 15000.00, 'Salem', 'Pallavaram, chennai', '2209230005', '1', '1', 'upload_files/candidate_tracker/36506317234_Yogapriya.doc', NULL, '1', '2022-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Dot Net Profile,Have reference in multiple companies and looking for some more', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 10:50:15', 96, '2022-09-23 03:38:20', 0, NULL, 1),
(10280, 'Christine Poulose', '16', '9941260680', '', 'christinepoulose152@gmail.com', '2002-03-15', 20, '2', '2', 'T. P. Poulose', 'Petrol station (supervisor)', 400000.00, 1, 0.00, 18000.00, 'Thekinedath house, Aluva, kerala', 'No. 4 , Divya homes, Ambattur, Chennai 53.', '2209230006', '1', '1', 'upload_files/candidate_tracker/35932521726_pdf_20220909_125503_0000.pdf', NULL, '1', '2022-09-24', 0, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to be trained a lot thinking a lot on TxxampC May travel to native,5050 Profile do check and let me know your interest', '3', '2', '', '1', '3', '', '2', '1970-01-01', '1', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 11:01:03', 60, '2022-09-24 01:31:28', 0, NULL, 1),
(10281, 'manobala', '4', '8220426031', '', 'dmanosiva5@gmail.com', '1999-01-24', 23, '3', '2', 'dhanabal', 'farmer', 10000.00, 1, 0.00, 10000.00, 'orathanadu', 'orathanadu', '2209230007', '', '1', 'upload_files/candidate_tracker/70036931310_manobala.pdf', NULL, '1', '2022-09-23', 0, '', '3', '59', '2022-09-28', 126312.00, '', '4', '2022-10-10', '2', 'Selected for Thanjavur  - Consultant Role', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-23 11:14:16', 60, '2022-09-27 07:10:14', 0, NULL, 1),
(10282, 'mukilarasi', '4', '7339320189', '', 'mugilarasi1906@gmail.com', '1999-06-19', 23, '3', '2', 'elamaran', 'farmer', 12000.00, 3, 0.00, 10000.00, 'orathanadu', 'orathanadu', '2209230008', '', '1', 'upload_files/candidate_tracker/43539895689_M.MUGILARASI .docx', NULL, '1', '2022-09-23', 0, '', '3', '59', '2022-09-28', 126312.00, '', '4', '2022-10-10', '2', 'Selected for Thanjavur Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-23 11:16:09', 60, '2022-09-27 06:49:10', 0, NULL, 1),
(10283, 'Kumaresan.M', '31', '9384721596', '', 'kumaresanmpi@gmail.com', '1997-11-08', 24, '2', '2', 'Mariappan', 'Coolie', 10000.00, 3, 0.00, 300000.00, 'Tirunelveli', 'Chennai', '2209230009', '1', '1', 'upload_files/candidate_tracker/61105295574_kumaresan2.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher  Have Project Exp in HTML CSS No Javascript in depth Need to be trained a lot ,they need time to confirm on the TxxampC if they come back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 11:19:44', 60, '2022-09-23 02:53:33', 0, NULL, 1),
(10284, 'Barathraj K', '23', '9025092281', '9944914045', 'barathbeiem@gmail.com', '1999-05-18', 23, '2', '2', 'Seethalakshmi', 'House wife', 20000.00, 1, 0.00, 300000.00, '3/109,North st, sivanadanoor apnadanoor post', 'Athanancherry', '2209230010', '1', '1', 'upload_files/candidate_tracker/70009230077_barathraj.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher  Have Project Exp In HTML CSS No Javascript In Depth Theoritically ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 11:22:23', 96, '2022-09-23 03:39:10', 0, NULL, 1),
(10285, 'SATHIS KUMAR', '23', '8870586620', '9150871910', 'sathishvivis6620@gmail.com', '1998-06-02', 24, '2', '1', 'Srinivasan', 'Work', 20000.00, 2, 0.00, 25000.00, 'Thoraipakkam', 'Thoraipakkam', '2209230011', '1', '1', 'upload_files/candidate_tracker/80243351674_SATHISHKUMAR S RESUME.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher  Have Project Exp In HTML CSS No Javascript In Depth Theoritically Ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', '2', '1', '', '1', '1', '', '2', '2022-09-26', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 11:23:56', 96, '2022-09-23 03:39:43', 0, NULL, 1),
(10286, 'Raghul Raj B', '23', '7708043136', '', 'Raghulnov13@gmail.com', '1993-11-13', 28, '2', '2', 'Balasubramanian', 'no work', 10000.00, 1, 0.00, 25000.00, 'Thoraipakam', 'thoraipakam', '2209230012', '1', '1', 'upload_files/candidate_tracker/94610626942_Resume.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher  Have Project Exp In HTML CSS No Javascript In Depth Theoritically Ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 11:26:48', 96, '2022-09-23 03:40:40', 0, NULL, 1),
(10287, 'Vignesh.C', '23', '7385830782', '9578979211', 'vickykasthu@gmail.com', '1997-12-29', 24, '2', '2', 'Chella Pandian.S', 'Daily worker', 18000.00, 1, 0.00, 250000.00, 'Tenkasi', 'Chennai', '2209230013', '1', '1', 'upload_files/candidate_tracker/60257126832_VigneshUpdatedResume (1).pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher  Have Project Exp In HTML CSS No Javascript In Depth Theoritically Ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 11:27:03', 96, '2022-09-23 03:41:24', 0, NULL, 1),
(10288, 'kristiya', '4', '7826985904', '9843564882', 'kristiya0905@gmail.com', '2000-05-09', 22, '3', '2', 'arulsamy', 'farmer', 20000.00, 2, 0.00, 10000.00, 'pudukkottai', 'thanjavur', '2209230014', '', '1', 'upload_files/candidate_tracker/44053347274_krish.docx', NULL, '1', '2022-09-23', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for team and not that much professional', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-23 11:30:29', 1, '2022-09-23 11:59:11', 0, NULL, 1),
(10289, 'Syed Aarif', '6', '9944503062', '', 'aarifhasan073@gmail.com', '1999-09-29', 22, '1', '2', 'Bakkiral Begam', 'House wife', 15000.00, 3, 0.00, 15000.00, 'Tenkasi', 'Chrompet', '2209230015', '', '2', 'upload_files/candidate_tracker/30903956826_Aarif resume(1)(1).pdf', NULL, '1', '2022-09-23', 0, 'P1330', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-23 11:37:07', 60, '2022-09-23 12:39:36', 0, NULL, 1),
(10290, 'Srinath senthilkumar', '14', '8940113720', '', 'sribros0307@gmail.com', '2000-07-13', 22, '3', '2', 'Senthilkumar V', 'Business', 30000.00, 2, 0.00, 3.25, 'Aranthangi', 'Aranthangi', '2209230016', '', '1', 'upload_files/candidate_tracker/3760883101_srinath resume.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-23 11:40:11', 1, '2022-09-23 11:58:12', 0, NULL, 1),
(10291, 'Muganth k', '14', '8056756958', '8754717457', 'muganthkvs@gmail.com', '2000-05-11', 22, '4', '2', 'Kanagaraj', 'Business', 30000.00, 1, 0.00, 3.50, 'Karaikudi', 'Thoraipakkam', '2209230017', '', '1', 'upload_files/candidate_tracker/3367370740_Muganth K Resume.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Andriod /Java positions no ideas in the Flutter also need time to confirm on the positions he id interested', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-23 11:40:17', 1, '2022-09-23 11:46:34', 0, NULL, 1),
(10292, 'R.karthick', '6', '9176482897', '9092186477', 'Karthickrajendren08012001@gmail.com', '2001-01-08', 21, '1', '2', 'Kasthuri', 'House wife', 10000.00, 1, 10000.00, 15000.00, 'Villivakkam', 'Villivakkam', '2209230018', '', '2', 'upload_files/candidate_tracker/45521856671_karthikrajendiran resume-1.pdf', NULL, '1', '2022-09-23', 0, 'P1330', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-23 11:51:55', 60, '2022-09-23 12:39:05', 0, NULL, 1),
(10293, 'j. verginiya', '4', '9585170261', '', 'verginiyakuttyma@gmail.com', '2000-04-09', 22, '3', '2', 'g. jesuraj', 'farmer', 20000.00, 1, 0.00, 12000.00, 'pudukottai', 'thanjavur', '2209230019', '', '1', 'upload_files/candidate_tracker/82358231764_Verginiya Resume.pdf', NULL, '1', '2022-09-23', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'no voice clarity and high expectation', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-23 11:55:13', 1, '2022-09-23 12:08:32', 0, NULL, 1),
(10294, 'MOSES JESURAJ', '4', '9176833779', '', 'gmvahan1961@gmail.com', '1994-12-03', 27, '1', '2', 'Mayilvahan', 'Business', 30000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2209230020', '', '2', 'upload_files/candidate_tracker/28304352656_Moses M.pdf', NULL, '2', '2022-09-23', 0, '55577', '3', '59', '2022-09-26', 189468.00, '', '', '2022-10-03', '2', 'Selected for B2b in consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Banu commited incerment based on  performance in 6 months', '', '', '', NULL, NULL, NULL, 1, '2022-09-23 11:56:28', 85, '2022-09-23 06:06:19', 0, NULL, 1),
(10295, 'Vignesh', '13', '8344424233', '9865976574', 'Vignesh200297@gmail.com', '1997-02-20', 25, '2', '2', 'Subramanian', 'Farmar', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209230021', '1', '1', 'upload_files/candidate_tracker/99441910255_vignesh cv.pdf', NULL, '1', '2022-09-23', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 12:52:49', 96, '2022-09-23 03:43:21', 0, NULL, 1),
(10296, '', '0', '9176700964', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 05:21:53', 0, NULL, 0, NULL, 1),
(10297, 'Lekha', '28', '9940315953', '', 'sujatharajasekar1997@gmail.com', '1997-11-14', 24, '3', '2', 'Rangaraj', 'Late', 1.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2209230023', '', '2', 'upload_files/candidate_tracker/2545651397_LEKHA R RESUME 02.pdf', NULL, '3', '2022-09-24', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-23 05:33:41', 1, '2022-09-23 05:40:03', 0, NULL, 1),
(10298, 'Rajesh B', '5', '9677121901', '', 'Rajesh.balakrish.9598@gmail.com', '1998-05-09', 24, '2', '2', 'Balakrishnan', 'Self employed', 40000.00, 1, 351000.00, 550000.00, 'Tambaram East', 'Ambattur', '2209230024', '1', '2', 'upload_files/candidate_tracker/76869070480_Resume.pdf', NULL, '1', '2022-09-24', 15, '', '3', '59', '2022-10-06', 450000.00, '', '', '2022-10-12', '1', 'Communication Is Good Not Sure On Making The Calls Currently As Asst Manager 5050 Profile Ctc Ok Can Give A Try Kindly Check And Let Me Know Your Inputs - - - -Selected for BDM Role - Sriram Sir Reporting', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-23 05:45:56', 60, '2022-10-07 05:23:08', 0, NULL, 1),
(10299, '', '0', '7358754405', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 06:01:41', 0, NULL, 0, NULL, 1),
(10300, '', '0', '8870224095', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 06:07:55', 0, NULL, 0, NULL, 1),
(10301, '', '0', '6364712801', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 06:09:30', 0, NULL, 0, NULL, 1),
(10302, '', '0', '6382350994', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 06:13:34', 0, NULL, 0, NULL, 1),
(10303, '', '0', '9384615001', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 06:48:18', 0, NULL, 0, NULL, 1),
(10304, 'K.Anitha', '5', '8428519984', '7448445858', 'anithakalai2017@gmail.com', '1998-11-19', 23, '2', '2', 'p.kalaimani', 'Daily wages', 20000.00, 1, 2.00, 20000.00, 'Jeeva Nagar 4th Street New Washermenpet Chennai-81', 'Jeeva nagar 4th Street new washermenpet chennai-81', '2209230030', '1', '2', 'upload_files/candidate_tracker/14176227803_Document (2) (3)-1.pdf', NULL, '1', '2022-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-09-23 07:04:07', 1, '2022-09-23 07:06:45', 0, NULL, 1),
(10305, '', '0', '6379833724', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 07:38:11', 0, NULL, 0, NULL, 1),
(10306, '', '0', '8838922408', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 07:56:19', 0, NULL, 0, NULL, 1),
(10307, '', '0', '8686506186', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 07:57:20', 0, NULL, 0, NULL, 1),
(10308, '', '0', '7550260136', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 07:58:08', 0, NULL, 0, NULL, 1),
(10309, 'K. Raheema Begum', '22', '7448838964', '9751166927', 'raheemabegumk@gmail.com', '2001-02-18', 21, '2', '2', 'A. Kamal Basha', 'Imam', 15000.00, 1, 0.00, 25000.00, 'Erode', 'Erode', '2209230035', '1', '1', 'upload_files/candidate_tracker/77643232673_CV_2022080219423075.pdf', NULL, '3', '2022-09-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-23 08:20:20', 85, '2022-09-24 09:53:09', 0, NULL, 1),
(10310, 'C Jaya Chara', '25', '9666511802', '', 'jayachandrajaychu007@gmail.com', '1998-09-09', 24, '2', '2', 'C Sunkanna', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Bengaluru', 'Bengaluru', '2209230036', '1', '1', 'upload_files/candidate_tracker/15637476473_Jaya Chandra Resume-converted (2).pdf', NULL, '1', '2022-09-24', 0, '', '1', '93', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '8', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 08:40:55', 85, '2022-09-24 05:13:16', 0, NULL, 1),
(10311, 'Yaswanth Kumar', '5', '9515256053', '', 'yaswanthk42@gmail.com', '1993-03-12', 29, '2', '2', 'B S Jayantha Lakshmi', 'Retd. Teacher', 10000.00, 1, 30000.00, 45000.00, 'Peapully', 'Bengaluru', '2209230037', '1', '2', 'upload_files/candidate_tracker/98892146311_Resume CSA.docx', NULL, '1', '2022-09-24', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he doesnxquott have same field experience but expecting 5lac ctc', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 08:46:31', 85, '2022-09-24 05:14:09', 0, NULL, 1),
(10312, '', '0', '6385527224', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230038', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 09:04:04', 0, NULL, 0, NULL, 1),
(10313, '', '0', '9100637479', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230039', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 09:45:02', 0, NULL, 0, NULL, 1),
(10314, '', '0', '8870873996', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230040', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 10:28:37', 0, NULL, 0, NULL, 1),
(10315, '', '0', '8534872063', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230041', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 11:24:50', 0, NULL, 0, NULL, 1),
(10316, '', '0', '7010945339', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230042', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 11:37:24', 0, NULL, 0, NULL, 1),
(10317, 'Surekha', '4', '9789956576', '9791149670', 'surekhah1997@gmail.com', '1997-08-30', 25, '3', '2', 'Hussain', 'Driver', 54000.00, 1, 18000.00, 25000.00, 'Chennai', 'Villivakkam', '2209230043', '', '2', 'upload_files/candidate_tracker/45507748417_Surekha Resume (6).pdf', NULL, '3', '2022-09-26', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-23 11:42:23', 1, '2022-09-23 11:48:21', 0, NULL, 1),
(10318, '', '0', '8870873995', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209240001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-24 08:22:14', 0, NULL, 0, NULL, 1),
(10319, 'Nurul Hassan', '5', '9113896831', '8723093937', 'Nurulhassanlaskar132@gmail.com', '1994-12-14', 27, '3', '2', 'Abdul Mannaf Laskar', 'Farmer', 10000.00, 1, 26000.00, 35000.00, 'Hailakandi', 'Murheshpalya', '2209240002', '', '2', 'upload_files/candidate_tracker/33456609406_mostRecent.pdf', NULL, '1', '2022-09-24', 0, '', '5', '56', NULL, 0.00, '', '0', NULL, '1', 'Looking for inside sales job', '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-24 08:32:03', 1, '2022-09-24 11:15:18', 0, NULL, 1),
(10320, 'Monika PM', '13', '9000903616', '', 'monika.pm566@gmail.com', '1998-02-13', 24, '3', '2', 'PP mahadevan', 'Weaver', 50000.00, 1, 20000.00, 25000.00, 'Nagari, Andhra Pradesh', 'Bengaluru', '2209240003', '', '2', 'upload_files/candidate_tracker/80108090374_P M MONIKA (1).pdf', NULL, '3', '2022-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-24 09:34:00', 1, '2022-09-24 09:42:22', 0, NULL, 1),
(10321, 'Hari Prasath M', '23', '8270542724', '', 'hariprasath2724@gmail.com', '2007-09-24', 0, '2', '2', 'Malaiyalam P', 'Carpenter', 1.50, 1, 0.00, 3.00, 'Karur', 'Karur', '2209240004', '1', '1', 'upload_files/candidate_tracker/6107254523_pdf_20220902_121354_0000.pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Distance Neeed to see stating along with his brother should check with brother on TxxampC,Basics in React.He need time to confirm his interest on the profile ,also looking for some more stipend ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 09:44:06', 85, '2022-09-24 09:53:25', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10322, 'BALAN.E', '13', '8270113271', '6379925301', 'balan98in@gmail.com', '1998-05-20', 24, '4', '2', 'Elumalai', 'Farmer', 7000.00, 0, 0.00, 25000.00, 'TIRUVANNAMALAI', 'Chennai', '2209240005', '', '1', 'upload_files/candidate_tracker/97532910242_CV1.pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills in PHP,have only Java Python Will not handle our pressure and sustain Given time to learn', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-24 11:16:06', 1, '2022-09-24 11:20:13', 0, NULL, 1),
(10323, 'SALMAAN KHAN A', '5', '7418835331', '', 'dwaynesalman@gmail.com', '1997-04-23', 25, '2', '2', 'Na', 'Na', 30000.00, 3, 35000.00, 45000.00, 'CHENNAI', 'CHENNAI', '2209240006', '1', '2', 'upload_files/candidate_tracker/68495143685_SALMAAN KHAN.docx', NULL, '1', '2022-09-24', 45, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good Fresher for our domain have exp in  calling activity can be trained candudate need time to think on his expectations 4.5 LPA Current due to night shift we suggested 3.5 LPA', '5', '1', '', '1', '1', '', '2', '2022-09-26', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 11:16:58', 85, '2022-09-24 12:41:29', 0, NULL, 1),
(10324, 'Vijayalaskhmi', '6', '6383180259', '', 'Vijiguna2610@gmail.com', '2001-10-26', 20, '1', '2', 'Gunasekaran', 'Painter', 20000.00, 1, 15000.00, 17000.00, 'Anna nagar west', 'Anna nagar west', '2209240007', '', '2', 'upload_files/candidate_tracker/15958271549_pdf_20220913_231951_0000.pdf', NULL, '1', '2022-09-24', 30, 'P1325', '3', '59', '2022-09-29', 198000.00, '', '3', '2022-12-01', '2', 'Selected for Kannan Team  - Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-24 11:55:44', 60, '2022-09-27 06:35:52', 0, NULL, 1),
(10325, 'ISSAC RAJA SINGH S', '5', '8778086071', '9445231620', 'issacrajasinghsalamanv@gmail.com', '2000-11-09', 21, '2', '2', 'SALAMAN V', 'Deiver', 96000.00, 2, 0.00, 20000.00, 'New washermenpet', 'New washermenpet', '2209240008', '1', '1', 'upload_files/candidate_tracker/99528179314_curriculum vitae new1..pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to speak out looking for Non Voice Process will not handle the sales pressure', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 12:16:01', 85, '2022-09-24 12:41:54', 0, NULL, 1),
(10326, 'ROHITH', '4', '9962165847', '', 'ROHITHSATHYAN31@GMAIL.COM', '2007-09-24', 15, '2', '2', 'Parents', 'Carpenter', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2209240009', '1', '1', 'upload_files/candidate_tracker/12329113377_Image to PDF 20220918 09.51.57.pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 12:20:28', 85, '2022-09-24 12:50:17', 0, NULL, 1),
(10327, 'S. Tajun Nisha', '11', '7010548037', '9940487525', 'tajunnisha19@gmail.com', '2001-04-19', 21, '3', '2', 'Father', 'Carpenter', 20000.00, 1, 0.00, 12000.00, 'No.110 A Union Carbide Colony kodungaiyur', 'No.110A union carbide colony kodungaiyur', '2209240010', '', '1', 'upload_files/candidate_tracker/89979836769_Tajun Nisha S Resume-1.docx', NULL, '1', '2022-09-24', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need to be trained not open for 2 yrs convicnced on 1 yrs but need to check with her family on TxxampC if she comes back let us try', '6', '1', '', '1', '1', '', '2', '2022-09-27', '2', '8', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-24 12:21:55', 1, '2022-09-24 12:49:46', 0, NULL, 1),
(10328, 'ohqmmed sajjad basha', '4', '7358622487', '7010926596', 'bashasajjad4@gmail.com', '2001-11-16', 20, '2', '2', 'azeez basha', 'real estate', 30000.00, 0, 0.00, 15000.00, 'mount road', 'mount road', '2209240011', '1', '1', 'upload_files/candidate_tracker/59868708637_mohammed sajjad basha (1).pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Comfort to work in non voice not ready to handle the pressure communication Average', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 12:28:16', 85, '2022-09-24 12:53:47', 0, NULL, 1),
(10329, '', '0', '7010548036', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209240012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-24 12:48:49', 0, NULL, 0, NULL, 1),
(10330, 'Nivedha', '4', '7603808367', '', 'Nivedhanithya12344@gmail.com', '2002-09-24', 20, '2', '2', 'Suresh kumar', 'Late', 16000.00, 1, 16000.00, 18000.00, 'Thondairyarpet', 'Thondairyarpet', '2209240013', '1', '2', 'upload_files/candidate_tracker/92801452155_nivedha.pdf.pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher For Our Sales,Have Real Estate Exp,But No Proof And No Clarity From The Candidate On Her Employment. she is performing part time beautician Focusing Only On The Salary And Not Ready To Negotiate ,Family Need Is There But Need To Open A Lot ,Will Not Handle Our Pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-24 02:25:40', 1, '2022-09-24 03:02:36', 0, NULL, 1),
(10331, 'Aathi lakshmi', '4', '8015088916', '', 'Adhilakshmia674@gmail.com', '1999-08-06', 23, '2', '2', 'Antony', 'Late', 16000.00, 0, 16000.00, 18000.00, 'Thondairpet', 'Thodaiyarpet', '2209240014', '1', '2', 'upload_files/candidate_tracker/52238529795_aathi lakshmi .pdf.pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for our Sales,Have Real Estate Exp,but no proof and no clarity from the candidate on her employment.Focusing only on the salary and not ready to negotiate ,Family need is there but need to open a lot ,will not handle our pressue', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-24 02:26:05', 1, '2022-09-24 03:10:31', 0, NULL, 1),
(10332, 'Katika Ganesh', '5', '9182941650', '9515195854', 'ganeshkatika89@gmail.com', '1999-06-14', 23, '2', '2', 'Katika vengamuni', 'farmer', 350000.00, 1, 21000.00, 27000.00, 'Kadiri', 'Bangalore', '2209240015', '1', '2', 'upload_files/candidate_tracker/80296032371_0_Ganesh.Cv...pdf', NULL, '1', '2022-09-24', 15, '', '3', '59', '2022-09-29', 336000.00, '', '5', '1970-01-01', '1', 'Selected for Manivel Team - Madiwaala Location', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 02:36:29', 60, '2022-09-28 05:48:52', 0, NULL, 1),
(10333, 'susmith sirivella', '5', '9133704584', '', 'www.susmithbhai786@gmail.com', '2000-08-28', 22, '2', '2', 'ravi shekar sirivella', 'mechanical engineer', 25000.00, 1, 23000.00, 28000.00, 'Cuddapah', 'kudlugate', '2209240016', '1', '2', 'upload_files/candidate_tracker/47716747373_Sushmith_CV (2).pdf', NULL, '1', '2022-09-24', 0, '', '3', '59', '2022-09-29', 345696.00, '', '', '2022-09-30', '1', 'Selected for Muppudathy Mani - Staff Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 02:36:37', 60, '2022-09-27 06:59:26', 0, NULL, 1),
(10334, 'Sri Ram', '11', '7550190616', '9344346307', '054sriram@gmail.com', '1997-04-30', 25, '2', '2', 'M Swaminathan', 'Bank employee', 350000.00, 0, 17000.00, 18000.00, 'Chennai', 'Chennai', '2209240017', '1', '2', 'upload_files/candidate_tracker/37926835417_Sriram Resume.pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 02:54:16', 96, '2022-09-27 04:13:26', 0, NULL, 1),
(10335, 'Varsha', '5', '9360291976', '9566005141', 'varshasanthoshkumar08@gmail.com', '2000-04-08', 23, '2', '1', 'Narayan', 'Bussines', 12000.00, 2, 14999.00, 17000.00, 'Kodungaiyur', 'Kodungaiyur', '2209240018', '1', '2', 'upload_files/candidate_tracker/18437890902_VARSHA RESUME.docx', NULL, '1', '2023-06-22', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile have exp in calling kindly check and let meknow your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2022-09-24 03:17:56', 101, '2023-06-21 04:46:08', 0, NULL, 1),
(10336, '', '0', '7708190064', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209240019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-24 04:29:40', 0, NULL, 0, NULL, 1),
(10337, 'Santhosh bharathi S', '4', '9344107985', '', 'Santhoshh4053@gmail.com', '2000-10-25', 21, '2', '2', 'Sathiyamoorthy C', 'Manager', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2209240020', '1', '1', 'upload_files/candidate_tracker/97004639886_SANTHOSH BHARATHI SATHIYAMOORTHY.docx', NULL, '1', '2022-09-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-24 06:12:45', 85, '2022-09-26 10:06:47', 0, NULL, 1),
(10338, '', '0', '7358287166', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209240021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-24 06:17:03', 0, NULL, 0, NULL, 1),
(10339, '', '0', '9962444112', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209240022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-24 06:45:25', 0, NULL, 0, NULL, 1),
(10340, 'Vignesh', '5', '9840207097', '', 'Vbavani79@gmail.com', '1995-08-19', 27, '2', '2', 'Uma', 'Homemaker', 1000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2209240023', '1', '2', 'upload_files/candidate_tracker/39001158993_vignesh-cv.pdf', NULL, '1', '2022-09-27', 10, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'p', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-24 06:58:43', 60, '2022-09-27 12:32:57', 0, NULL, 1),
(10341, 'Dillybabu S', '5', '8610658807', '9176211556', 'Pandian0193@gmail.com', '1994-07-11', 28, '2', '2', 'Selvaraj A', 'Loadman', 30000.00, 1, 34000.00, 37000.00, 'Ennore', 'Ennore', '2209240024', '1', '2', 'upload_files/candidate_tracker/68271255428_RESUME.pdf', NULL, '1', '2022-09-26', 0, '', '3', '59', '2022-09-28', 345696.00, '', '', '2022-10-06', '1', 'Have Exp In Sales,Can Be Trained Ready To Negotaite On The Salary Only Thing Is Distance Need To See Do Check And Let Me Know Your Interest - -Selected for  Shanmugam Team ,final round interviewed by gaurav and got selected', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-24 10:39:00', 60, '2022-09-26 07:49:58', 0, NULL, 1),
(10342, 'Thamemul Ansari M M I', '16', '9087741163', '', 'MMIANsari05@gmail.com', '1997-10-05', 24, '2', '2', 'Mohamed Iqbal', 'Driver', 23000.00, 0, 300000.00, 400000.00, 'Chennai', 'Chrnnai', '2209240025', '1', '2', 'upload_files/candidate_tracker/31057231187_ThamemulAnsari.pdf', NULL, '1', '2022-09-27', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 1yr Exp and his current CTC 3LPA Exp 3.5-4 LPA and much looking for IT Domain need to learn additional skills will not sustain in our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-24 10:57:06', 85, '2022-09-27 10:12:26', 0, NULL, 1),
(10343, '', '0', '9150100856', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-25 10:33:30', 0, NULL, 0, NULL, 1),
(10344, 'Akash NB', '26', '9841659959', '', 'akash28901@gmail.com', '2001-09-28', 20, '3', '2', 'Balaji', 'Business', 40000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2209260001', '', '1', 'upload_files/candidate_tracker/56936071881_AKASH .pdf', NULL, '2', '2022-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 01:22:48', 1, '2022-09-26 04:26:52', 0, NULL, 1),
(10345, 'Sathish Kumar. P', '23', '9342101760', '9787182758', 'sathishsrisri978@gmail.com', '1998-07-17', 24, '3', '2', 'Ponnusamy. M', 'Trichy', 10000.00, 2, 0.00, 15000.00, 'Trichy', 'Thambaram', '2209260002', '', '1', 'upload_files/candidate_tracker/80455073514_SATHISH RESUME.pdf', NULL, '1', '2022-09-26', 0, '', '3', '59', '2022-09-29', 120000.00, '', '0', NULL, '2', 'Selected For Internship Cum Employment - 5months 5K Then 8-12K Salary Based On Performance  3yr Employment SA', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 11:29:14', 1, '2022-09-26 11:42:45', 0, NULL, 1),
(10346, 'Sandhiya', '6', '9150642890', '', 'kssandy97@gmail.com', '2000-08-14', 22, '1', '2', 'Karthikeyan', 'Labour', 15000.00, 2, 0.00, 15000.00, 'Villupuram', 'Chennai', '2209260003', '', '1', 'upload_files/candidate_tracker/4695301828_sandy newwwww.pdf', NULL, '1', '2022-09-26', 0, 'Ca146', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'low voice , We suggested for arumbakkam branch but she s willing to join tnagar oly', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 11:40:53', 1, '2022-09-26 11:45:18', 0, NULL, 1),
(10347, 'gayathri mariappan', '4', '8778218274', '', 'gayathrimariappan00@gmail.com', '2000-05-23', 22, '2', '2', 'mariappan', 'coli', 9000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2209260004', '2', '1', 'upload_files/candidate_tracker/7771560517_Gayatri.pdf', NULL, '1', '2022-09-26', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'having 1yr experience but she doesnt suit for telecalling. exp 15k', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 11:43:39', 1, '2022-09-26 11:45:44', 0, NULL, 1),
(10348, 'durga k', '4', '9384613499', '', 'durgadivya53@gmail.com', '2000-03-24', 22, '2', '2', 'krishnan', 'no', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2209260005', '2', '1', 'upload_files/candidate_tracker/21160129942_Share', NULL, '1', '2022-09-26', 0, '', '3', '59', '2022-09-28', 138948.00, '', '5', '1970-01-01', '2', '5050 Have Exp In Collection Too Long Distance Can Check For Arumbakkam Sustainanbility Doubts Kindly Check And Let Me Know Your Inputs - - Selected for arumbakkam  consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-26 11:46:56', 60, '2022-09-26 07:12:16', 0, NULL, 1),
(10349, 'Akash', '6', '9361054952', '', 'arunakash93610@gmail.com', '2002-05-19', 20, '1', '2', 'Suresh Kumar  V', 'Dham tea', 20000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2209260006', '', '1', 'upload_files/candidate_tracker/76646460749_Akash resume.pdf', NULL, '1', '2022-09-26', 0, 'P1311', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 12:02:28', 1, '2022-09-26 12:07:25', 0, NULL, 1),
(10350, 'V.Suganya', '11', '8072461819', '7358471871', 'karthicksuganya977@gmail.com', '2001-03-01', 21, '2', '2', 'G.venkatesan', 'Auto driver', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209260007', '1', '1', 'upload_files/candidate_tracker/61599154623_suganya.pdf', NULL, '1', '2022-09-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication need to open a lot will not handle our Pressure and not clear with the opportunities she want to get in', '6', '1', '', '1', '3', '', '2', '1970-01-01', '2', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-26 12:03:29', 60, '2022-09-26 12:29:32', 0, NULL, 1),
(10351, 'S.Pooja', '11', '7358390325', '7338806898', 'poojasivakumar029@gmail.com', '2000-11-29', 21, '2', '2', 'S . Dhanalakshmi', 'Park gaudier', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209260008', '1', '1', 'upload_files/candidate_tracker/59314585603_Resume pooja_POOJA. S.pdf', NULL, '1', '2022-09-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average Can be trained fresher for recruitment 5050 Can give a try if she comes back let us try', '6', '1', '', '1', '3', '', '2', '2022-09-27', '2', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-26 12:06:52', 60, '2022-09-26 12:39:13', 0, NULL, 1),
(10352, 'Thulasiram R', '4', '6369749541', '8056937007', 'Thulasiram.R07@gmail.com', '2007-09-26', 0, '2', '2', 'Ravichandran G', 'Business', 80000.00, 1, 400000.00, 600000.00, 'KARUR', 'Chennai', '2209260009', '1', '2', 'upload_files/candidate_tracker/42810698965_THULASIRAM-RESUME.docx', NULL, '1', '2022-09-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped - Have Exp in B2B Sales and not looking for high Salary focusing only on the salary, processed him for  Bharathi Axa but didnt turn for interview not interested to get into sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-26 12:37:18', 85, '2022-09-26 12:56:28', 0, NULL, 1),
(10353, 'Jenifer', '4', '7010471521', '8148493161', 'jj2709905@gmail.com', '2000-04-02', 22, '2', '2', 'Ramalingam (parent)', 'Driver', 35000.00, 2, 15000.00, 17000.00, 'Chennai', 'Chennai', '2209260010', '1', '2', 'upload_files/candidate_tracker/13959572964_Adobe Scan Sep 17, 2022.pdf', NULL, '1', '2022-09-26', 0, '', '3', '59', '2022-09-27', 189468.00, '', '', '2022-10-03', '2', 'Selected for B2B consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-26 01:03:37', 60, '2022-09-26 06:55:45', 0, NULL, 1),
(10354, 'Bhagath', '5', '9600147547', '9444242948', 'bhagath.sr@gmail.com', '2007-09-26', 0, '2', '2', 'Santhanam', 'Sales', 350000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2209260011', '1', '2', 'upload_files/candidate_tracker/87855594096_Bhagath Resume.pdf', NULL, '1', '2022-09-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our Sales Have Exp in B2B Medical Equipment Sales 33 yrs Too long Distance up and down 60kms sustainability doubts if he comes back let us try', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-26 01:20:17', 85, '2022-09-26 01:38:05', 0, NULL, 1),
(10355, 'Bala Devi M', '11', '8072189529', '7448483656', 'balaammu2016@gmail.com', '1999-05-13', 23, '2', '2', 'Murugan', 'Business', 10000.00, 1, 0.00, 1.75, 'Chennai', 'Chennai', '2209260012', '1', '1', 'upload_files/candidate_tracker/18118167868_BALA DEVI (resume).pdf', NULL, '1', '2022-09-26', 0, '', '3', '59', '2022-09-29', 144000.00, '', '', '1970-01-01', '2', 'Selected for Internship cum Employment - 3months 7.5 K then 12-14K salary based on Performance  1yr employment SA', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-26 01:45:44', 60, '2022-09-26 04:02:58', 0, NULL, 1),
(10356, 'Savithasomu', '11', '9150265364', '', 'Savithasomu94@gmail.com', '1994-06-15', 28, '2', '2', 'Somu', 'Former', 12.00, 2, 18.00, 22.00, 'Thiruvarur', 'Vadapalani', '2209260013', '1', '2', 'upload_files/candidate_tracker/83677282798_RESUME NEW.pdf', NULL, '1', '2022-09-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending the interview', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-26 01:51:13', 85, '2022-09-26 03:46:25', 0, NULL, 1),
(10357, 'Sandhiya', '17', '6380666267', '', 'Sandy156999@gmail.com', '1999-06-15', 23, '2', '2', 'Murugan k', 'Business', 35000.00, 1, 24000.00, 30000.00, 'Muthapudatet', 'Muthapudapet', '2209260014', '1', '2', 'upload_files/candidate_tracker/8373597422_Resume - Sandhiya(new).pdf', NULL, '1', '2022-09-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance not ready to relocate around 68kms up and down Fresher will not sustain due to distance', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-26 01:57:22', 1, '2022-09-27 11:57:07', 0, NULL, 1),
(10358, 'Udayakumar', '5', '9677007857', '', 'jacobpat004@gmail.com', '1997-04-16', 25, '2', '2', 'Mani', 'Tailor', 25.00, 2, 15000.00, 220000.00, 'Putlur', 'Pattabiram', '2209260015', '1', '2', 'upload_files/candidate_tracker/57468341085_Udaya experience resume new.docx', NULL, '1', '2022-09-28', 10, '', '3', '59', '2022-10-03', 261696.00, '', '', '2022-10-17', '2', 'Selected for Sarath Team - Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-26 02:18:17', 60, '2022-09-30 06:18:51', 0, NULL, 1),
(10359, '', '0', '9159775152', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209260016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-26 02:34:44', 0, NULL, 0, NULL, 1),
(10360, 'T.SREENIVASULU', '22', '8499004766', '7981504101', 'tsreenivasulu77@gmail.com', '1996-05-29', 26, '3', '2', 'Venkatesh achari', 'Farmer', 85000.00, 0, 17000.00, 25000.00, 'Chittoor', 'Chittoor', '2209260017', '', '2', 'upload_files/candidate_tracker/11775435144_Sreenivasulu Resume 8499004766.docx', NULL, '3', '2022-10-15', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 05:02:11', 1, '2022-09-26 05:20:10', 0, NULL, 1),
(10361, '', '0', '9345634052', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209260018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-26 05:49:15', 0, NULL, 0, NULL, 1),
(10362, 'Vetamoorthy', '31', '6380081425', '', 'moorthydcse@gmail.com', '1996-10-26', 25, '2', '2', 'Gomathisundari V', 'Teacher', 600000.00, 1, 0.00, 250000.00, 'Tirunelveli', 'Chennai', '2209260019', '1', '1', 'upload_files/candidate_tracker/23158203912_CVupdated.pdf', NULL, '1', '2022-10-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have basic knowledge and 6 months internship Exp but need to be trained a lot,2nd round interviewed by gokul and  given time to confirm his interest if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-10-10', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-26 06:51:47', 85, '2022-10-03 11:40:31', 0, NULL, 1),
(10363, 'Nancy', '4', '6379617285', '8148207785', 'nancylivingzton@gmail.com', '2000-08-21', 22, '3', '2', 'John', 'Quality analyst', 200000.00, 1, 13000.00, 20000.00, 'Tamabaram', 'Tamabaram', '2209260020', '', '2', 'upload_files/candidate_tracker/50921601826_Nancy Resume.docx', NULL, '3', '2022-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 07:46:07', 1, '2022-09-26 07:53:05', 0, NULL, 1),
(10364, '', '0', '7305763508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209260021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-26 08:09:22', 0, NULL, 0, NULL, 1),
(10365, 'Karthik', '4', '8220230149', '8220102171', 'vkarthik859@gmail.com', '2001-08-13', 21, '4', '2', 'Vaithiyanathan', 'Daily Wager', 84000.00, 1, 20000.00, 18000.00, 'Mayiladuthurai', 'Chennai', '2209270001', '', '2', 'upload_files/candidate_tracker/19388820642_Resume WE - 1663954609.pdf', NULL, '3', '2022-10-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-27 12:36:36', 1, '2022-10-03 05:22:47', 0, NULL, 1),
(10366, 'Arun Ananth', '4', '8925211670', '', 'arunananth7009@gmail.com', '1996-05-10', 26, '2', '2', 'Murugasamy', 'Coolie', 15000.00, 1, 0.00, 20000.00, 'thoothukudi', 'Chennai', '2209270002', '1', '2', 'upload_files/candidate_tracker/99468443871_Arun resume.pdf', NULL, '1', '2022-09-27', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Non Voice No Communicaiton Will not sustain and handle our pressure not suitable', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-27 07:20:08', 85, '2022-09-27 09:34:37', 0, NULL, 1),
(10367, '', '0', '7871030180', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209270003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-27 08:32:10', 0, NULL, 0, NULL, 1),
(10368, 'Sowndhariya A', '6', '9843476113', '7395986113', 'sowndhariyaarjunan@gmail.com', '1999-07-09', 23, '2', '2', 'Arjunan V', 'Business', 350000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2209270004', '1', '1', 'upload_files/candidate_tracker/24441577490_sowndhariya A.pdf', NULL, '1', '2022-09-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested to join She Dragged a lot for giving her confirmation  to our roles', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-27 10:26:43', 85, '2022-09-27 10:51:59', 0, NULL, 1),
(10369, 'Vignesh.r', '5', '8807506180', '8807506189', 'vv288966@gmail.com', '2001-04-24', 21, '2', '2', 'Nithya nathan', 'Moter mechanic', 21000.00, 1, 0.00, 20000.00, 'K block hll nagar tondiar pet chennai-81', 'Tondiar pet chennai-81', '2209270005', '25', '1', 'upload_files/candidate_tracker/45833727755_vignesh RES.pdf', NULL, '1', '2022-09-27', 0, '', '5', '86', NULL, 0.00, '', '0', NULL, '2', 'Not Satisfied. ', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-27 10:30:03', 1, '2022-09-27 10:40:43', 0, NULL, 1),
(10370, 'R.Arunagiri', '6', '6380655547', '9698730411', 'arunagiri07112001@gmail.com', '2001-11-07', 20, '2', '2', 'K.Ramasamy', 'Office Assistant', 50000.00, 0, 10000.00, 19000.00, 'Erode', 'Erode', '2209270006', '1', '2', 'upload_files/candidate_tracker/8853650374_Arunagiri.Resume.pdf', NULL, '1', '2022-09-27', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Voice not suitable for our profile', '5', '2', '', '4', '7', '', '1', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-27 11:18:58', 85, '2022-09-27 12:50:05', 0, NULL, 1),
(10371, 'Suresh V', '13', '9566433593', '', 'sureshpostbox003@gmail.com', '1999-06-25', 23, '2', '2', 'Velu', 'Nil', 10000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2209270007', '1', '1', 'upload_files/candidate_tracker/92661254085_MY_RESUME_1.pdf', NULL, '1', '2022-09-27', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher only basic knowledge 5050 can give  a try kindly check and let me know your interest\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-27 11:40:25', 60, '2022-09-27 03:46:11', 0, NULL, 1),
(10372, 'S.Esther', '4', '9360757250', '7401641364', 'esthersolomon146@gmail.com', '2001-10-06', 20, '2', '2', 'G.Solomon', 'Painter', 13000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209270008', '1', '1', 'upload_files/candidate_tracker/18084378069_resume.docx', NULL, '1', '2022-09-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Ok with the caller profile,but need to confirm with the family on the position if she comes back let us try', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-27 11:45:29', 1, '2022-09-27 12:05:27', 0, NULL, 1),
(10373, 'maayavan', '5', '7373610943', '', 'mayavanvikraman1989@gmail.com', '1989-05-17', 33, '2', '1', 'vikraman', 'no', 14000.00, 4, 20000.00, 24000.00, 'salem', 'salem', '2209270009', '2', '2', 'upload_files/candidate_tracker/43304783583_MAYAVAN.docx', NULL, '3', '2022-09-29', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average fresher for our Domain,5050 kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-27 11:48:59', 60, '2022-09-29 10:33:43', 0, NULL, 1),
(10374, 'RAJAPANDIYAN J', '5', '8838605336', '', 'rajapandiyan597@gmail.com', '1997-05-20', 27, '2', '1', 'Jakkaiyan', 'Nil', 25000.00, 1, 25000.00, 30000.00, 'Aranmanaipudhur Theni 625531', 'Ennore - Chennai 600057', '2209270010', '1', '2', 'upload_files/candidate_tracker/73773357067_RAJAPANDIYANUPDATE.docx', NULL, '1', '2024-08-19', 30, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he candidate struggled to effectively convey their thoughts and ideas during the interview and candidatexquots technical knowledge fell short of the requirements for the position so i decided final status is rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55634', '55557', '1970-01-01', 1, '2022-09-27 11:49:03', 104, '2024-08-19 03:52:56', 0, NULL, 1),
(10375, 'Dilipkumar G', '5', '9962093003', '7338950544', 'ajaykumar955136@gmail.com', '2000-10-23', 21, '3', '2', 'Vennila G', 'Sales', 20000.00, 1, 18000.00, 25000.00, '240 kandhasami nagar 6th Street maduravoyal', '240 kandhasami nagar 6th Street maduravoyal', '2209270011', '', '2', 'upload_files/candidate_tracker/2981345651_ajay-2.pdf', NULL, '1', '2022-09-27', 15, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'ol', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-27 11:50:04', 60, '2022-09-27 01:23:00', 0, NULL, 1),
(10376, 'Birundha', '11', '9080718824', '', 'Biundhabass21@gmail.com', '2001-10-21', 20, '2', '2', 'Baskaran', 'Driver', 22000.00, 2, 0.00, 18000.00, 'Guindy', 'Guindy', '2209270012', '1', '1', 'upload_files/candidate_tracker/48393037367_Birundha resume 2022-1.pdf', NULL, '1', '2022-09-27', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Looking for Accounts Profile,Need to train a lot have knowledge in tally,will check and confirm ', '6', '1', '', '1', '1', '', '2', '2022-09-30', '2', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-27 12:11:17', 60, '2022-09-27 01:03:43', 0, NULL, 1),
(10377, '', '0', '9360366044', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209270013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-27 12:17:06', 0, NULL, 0, NULL, 1),
(10378, '', '0', '9344159629', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209270014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-27 01:29:49', 0, NULL, 0, NULL, 1),
(10379, 'sandeep bachu', '5', '9390858468', '9494342038', 'bachusandeep89@gmail.com', '1991-02-23', 31, '2', '2', 'bachu vijay kumar', 'rice shop', 30000.00, 0, 40000.00, 40000.00, 'hyderabad', 'bangalore', '2209270015', '1', '2', 'upload_files/candidate_tracker/365612425_BachuSandeepKumarResume.pdf', NULL, '1', '2022-09-27', 0, '', '1', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-27 01:31:54', 60, '2022-09-27 06:54:27', 0, NULL, 1),
(10380, 'Burru suresh kumar', '5', '8106393182', '8247495009', 'Maheshburra430@gmial.com', '1994-06-10', 28, '2', '2', 'B. Anjineyulu', 'Farmer', 30000.00, 2, 23000.00, 30000.00, 'Anantapur', 'Bangalore', '2209270016', '1', '2', 'upload_files/candidate_tracker/67848460755_Suresh Burra_Updated_Resume.pdf', NULL, '1', '2022-09-27', 0, '', '1', '56', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-27 01:32:31', 1, '2022-09-27 01:46:14', 0, NULL, 1),
(10381, 'Girija R', '17', '7550151503', '7550151504', 'girijasureshkumar2602@gmail.com', '1991-06-04', 31, '2', '1', 'V Suresh Kumar', 'Officer in Engineering department in DP World CCTL', 40000.00, 2, 15000.00, 20000.00, 'No.1, 6th street Asirvadhapuram Pulianthope Ch-12', 'No.1, 6th Street Asirvadhapuram Pulianthope Ch-12', '2209270017', '1', '2', 'upload_files/candidate_tracker/39593798792_Girija R - Resume - 22-Sep-2022.pdf', NULL, '1', '2022-09-27', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok can give a try for POS caller profile,need to check with gajendra ,once done will let the candidate  know the status\n', '5', '1', '0', '1', '1', '0', '2', '2022-09-28', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-27 03:03:48', 1, '2022-09-27 03:26:08', 0, NULL, 1),
(10382, 'SENTHIL KUMAR V', '5', '9789136236', '8124271820', 'senthilkumarkamala97@gmail.com', '1997-04-10', 25, '2', '2', 'KAMALA V', 'Gardeniar', 19000.00, 1, 10000.00, 18000.00, 'Vilathikulam', 'Vandalur', '2209270018', '1', '2', 'upload_files/candidate_tracker/78848026854_Resume.pdf', NULL, '1', '2022-09-28', 13, '', '3', '59', '2022-10-12', 192000.00, '', '7', '1970-01-01', '1', 'Selected for Manikandan Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-27 03:55:20', 60, '2022-10-05 01:13:33', 0, NULL, 1),
(10383, '', '0', '8660155437', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209270019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-27 06:42:57', 0, NULL, 0, NULL, 1),
(10384, 'Asmath fathima', '4', '9962031934', '8667651169', 'asmathrz204@gmail.com', '2000-10-20', 21, '2', '1', 'Mohammed Yasin', 'Business', 25000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2209270020', '1', '1', 'upload_files/candidate_tracker/73372804102_Resume.docx', NULL, '1', '2022-09-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped Candidate is not interested with the profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-27 06:45:56', 85, '2022-09-28 10:07:21', 0, NULL, 1),
(10385, 'divya e', '4', '7299042143', '8124417612', 'divyamariappan97@gmail.com', '1997-12-07', 24, '3', '1', 'mariappan k', 'hp sales and service', 50000.00, 1, 15500.00, 23000.00, 'chennai', 'chennai', '2209270021', '', '2', 'upload_files/candidate_tracker/99522146129_Divya resume updated copy.pdf', NULL, '1', '2022-10-01', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-27 06:50:43', 1, '2022-09-27 06:56:02', 0, NULL, 1),
(10386, '', '0', '1234456789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209270022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-27 08:36:18', 0, NULL, 0, NULL, 1),
(10387, '', '0', '8681057070', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209270023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-27 08:41:03', 0, NULL, 0, NULL, 1),
(10388, 'S.Bose', '5', '9962413816', '8825805170', 'boseuixdesigner@gmail.com', '2001-09-26', 21, '1', '2', 'B.Sasikumar', 'Driver', 14000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2209270024', '', '1', 'upload_files/candidate_tracker/31724859187_Bose_Resume.pdf', NULL, '1', '2022-09-30', 0, '12345', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Pressure handling no have knowledge in UIUX but want to get into Sales,too long distance up and down 78 kms sustainability doubts', '5', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-27 10:46:22', 1, '2022-09-27 10:57:00', 0, NULL, 1),
(10389, '', '0', '7683905641', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-28 12:19:08', 0, NULL, 0, NULL, 1),
(10390, 'Magesh E', '4', '8056109159', '9380413201', 'mageshwill1999@gmail.com', '1999-03-02', 23, '2', '2', 'Elumalai P', 'House broker', 12000.00, 1, 11000.00, 15000.00, 'Chennai', 'Chennai', '2209280002', '2', '2', 'upload_files/candidate_tracker/55190250040_MAGESH2RESUMEE.pdf', NULL, '1', '2022-09-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Insurance domain  not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-28 09:57:28', 1, '2022-09-28 10:26:11', 0, NULL, 1),
(10391, 'HEERA LOGANATHAN', '11', '9790611506', '9498303629', 'heera4101999@gmail.com', '1999-10-04', 22, '2', '2', 'Loganathan S', 'Lining Works', 10000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2209280003', '1', '1', 'upload_files/candidate_tracker/22440967405_HEERA L.pdf', NULL, '1', '2022-09-28', 0, '', '3', '59', '2022-09-30', 90000.00, '', '', '2023-01-19', '2', 'Communication sounds good can be trained fresher 2nd round interviewed by gokul and shortlisted for the recruiter role - Internship cum employment 2yrs SA 3 months Intern', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-28 10:36:58', 60, '2022-09-30 07:15:04', 0, NULL, 1),
(10392, 'mythyli', '4', '8148790704', '', 'mythilimalu1997@gmail.com', '1997-06-10', 25, '2', '1', 'dharani', 'driver', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2209280004', '2', '1', 'upload_files/candidate_tracker/46379171685_Mythili new resume 15.docx', NULL, '1', '2022-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped Not responding the calls and got an update from consultancy that she is not interested', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-28 10:38:05', 1, '2022-09-29 09:40:02', 0, NULL, 1),
(10393, 'Nishanth G', '11', '8939443481', '8939104074', 'nishanth8gopi@gmail.com', '1999-06-09', 23, '2', '2', 'Gopinathan E', 'Auuto driver', 20000.00, 1, 0.00, 13000.00, 'No.3/100 Bajanai Koil Street,Madipakkam,chennai', 'No.3/100 Bajanai Koil Street,Madipakkam,Chennai', '2209280005', '1', '1', 'upload_files/candidate_tracker/73550397377_Nishanth resume.pdf', NULL, '1', '2022-09-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Non Voice Process Will not sustain in our roles', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-28 11:00:32', 60, '2022-09-28 05:46:32', 0, NULL, 1),
(10394, 'vijay', '5', '7092500297', '8754443494', 'vijayjoe0500@gmail.com', '1997-07-21', 25, '1', '2', 'subburaj', 'own business', 18000.00, 2, 0.00, 22000.00, 'chennai', 'chennai', '2209280006', '', '1', 'upload_files/candidate_tracker/4638606618_cphxj-50k9b.pdf', NULL, '1', '2022-09-28', 0, '55585', '3', '59', '2022-10-03', 240000.00, '', '5', '1970-01-01', '1', 'Selected for GK Sir Team with the commitment - Commitment - 1L Target in Oct,completes then 20K Net from Nov', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-28 11:02:02', 60, '2022-09-30 06:17:01', 0, NULL, 1),
(10395, 'deepa lakshmi', '5', '7550011346', '9677224762', 'nattobokki@gmail.com', '1995-11-30', 26, '3', '2', 'thirunavakkarasu', 'media', 30000.00, 1, 45000.00, 50000.00, 'perambur', 'perambur', '2209280007', '', '2', 'upload_files/candidate_tracker/4477057820_DEEPA LAKSHMI.docx', NULL, '1', '2022-09-28', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good Have frequent Job Changes Sustainability Doubts on this profile Need to check with Bharati Axa', '5', '2', '0', '1', '1', '0', '2', '2022-09-30', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-28 11:43:48', 1, '2022-09-28 11:58:37', 0, NULL, 1),
(10396, 'Ananda prabu', '5', '8344491636', '', 'Anandprabu060@gmail.com', '1997-01-31', 25, '1', '2', 'Kannimuthu', 'Supervisor', 260000.00, 1, 220000.00, 25000.00, 'Tamabaram', 'Tambaram', '2209280008', '', '2', 'upload_files/candidate_tracker/1992890277_Anandprabu.pdf', NULL, '1', '2022-09-28', 30, 'P1329', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'Not satisfied', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-28 11:52:54', 1, '2022-09-28 02:20:59', 0, NULL, 1),
(10397, 'Rajesh', '5', '7502194235', '', 'rajesekar210@gmail.com', '1997-10-02', 24, '2', '2', 'Sekar', 'Farmer', 12000.00, 2, 24000.00, 28000.00, 'Porur', 'Porur', '2209280009', '1', '2', 'upload_files/candidate_tracker/57314418498_mcg5g-wj9zy.pdf', NULL, '1', '2022-09-28', 30, '', '3', '59', '2022-11-09', 340000.00, '', '7', '1970-01-01', '1', 'Selected for Shanmugam Team - Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-28 11:53:53', 60, '2022-09-30 06:19:34', 0, NULL, 1),
(10398, 'Revathi', '16', '7305587284', '8939655989', 'revathi24071989@gmail.com', '1989-07-24', 33, '2', '1', 'Ranjan', 'B.com', 10000.00, 1, 22000.00, 22000.00, 'Chennai', 'Chennai', '2209280010', '1', '2', 'upload_files/candidate_tracker/15266228867_Revathi -resume new.docx', NULL, '1', '2022-09-28', 0, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average Have 7 yrs of Exp in Financial Pre/Post Dispersal can be trained kindly check and let me know your interest', '3', '2', '', '4', '6', '', '2', '1970-01-01', '2', '5', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-28 12:01:52', 60, '2022-09-28 06:24:08', 0, NULL, 1),
(10399, 'Periyasamy', '5', '9688012657', '', 'periyasamys16@gmail.com', '1995-08-16', 27, '2', '2', 'Saravanan', 'Investors', 12000.00, 1, 0.00, 25000.00, 'Kalackurichi', 'Chennai', '2209280011', '1', '2', 'upload_files/candidate_tracker/90372272346_Resume (2) (1) (1).pdf', NULL, '1', '2022-09-28', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested in insurance selling', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-28 01:00:55', 96, '2022-09-28 01:14:14', 0, NULL, 1),
(10400, 'BALAKUMAR ANANDAN', '5', '8883335125', '', 'balakumaranandan@gmail.com', '1994-12-06', 27, '2', '2', 'K ANANDAN', 'Trader', 30000.00, 1, 0.00, 18000.00, 'Udumalaipettai', 'Ekkatuthangal', '2209280012', '1', '1', 'upload_files/candidate_tracker/26489438942_Balakumar resume hd.pdf', NULL, '1', '2022-09-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No confidence to speak and much preferred to be in nonvoice and pressure Free Career Gap Will not sustain', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-28 01:01:07', 96, '2022-09-28 01:13:20', 0, NULL, 1),
(10401, 'Ghaanesh Prakash', '11', '7010404339', '', 'ghaaneshp@gmail.com', '1996-08-27', 26, '2', '2', 'Prakash T', 'Daily wage', 12000.00, 0, 250000.00, 280000.00, 'Kolathur', 'Kolathur', '2209280013', '1', '2', 'upload_files/candidate_tracker/306417491_Ghaanesh Prakash HR.pdf', NULL, '1', '2022-09-28', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication sound s good but have an attitude issue will not sustain in our roles and long run doubts 2nd Round Rejected', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-28 01:48:27', 60, '2022-09-28 03:39:42', 0, NULL, 1),
(10402, 'Siddhi', '11', '8925305403', '', 'Sriddhi124@gmail.com', '2001-04-24', 21, '2', '2', 'Yaswant singh', 'Business', 16000.00, 2, 0.00, 200000.00, 'Vyasarpadi, Chennai', 'Vyasarpadi,chennai', '2209280014', '1', '1', 'upload_files/candidate_tracker/56408957347_Siddhi__.pdf', NULL, '1', '2022-09-28', 0, '', '3', '59', '2022-09-29', 90000.00, '', '0', NULL, '2', 'Communication Sounds Good Can Be Trained Fresher 2nd Round Interviewed By Gokul And Shortlisted For The Recruiter Role - Internship Cum Employment 2yrs Sa 3 Months Intern', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-09-28 02:34:28', 1, '2022-09-28 02:38:20', 0, NULL, 1),
(10403, 'Riddhi', '11', '9941603335', '', 'Rsiddhi124@gmail.com', '2001-04-24', 21, '2', '2', 'Yaswant singh', 'Business', 16000.00, 2, 0.00, 200000.00, 'Vyasarpadi, Chennai', 'Vyasarpadi,chennai', '2209280015', '1', '1', 'upload_files/candidate_tracker/21522175747_Riddhi__.pdf', NULL, '1', '2022-09-28', 0, '', '3', '59', '2022-09-29', 90000.00, '', '0', NULL, '2', 'Communication Sounds Good Can Be Trained Fresher 2nd Round Interviewed By Gokul And Shortlisted For The Recruiter Role - Internship Cum Employment 2yrs Sa 3 Months Intern', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-09-28 02:37:59', 1, '2022-09-28 02:43:14', 0, NULL, 1),
(10404, '', '0', '9789987694', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209280016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-28 04:06:24', 0, NULL, 0, NULL, 1),
(10405, '', '0', '9789820733', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209280017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-28 04:14:48', 0, NULL, 0, NULL, 1),
(10406, 'Britto raja', '11', '8778102372', '9941342841', 'brittoraja1999@gmail.com', '1999-11-15', 22, '2', '2', 'Joseph Mangalraj', 'Dms', 40000.00, 1, 0.00, 20000.00, 'No:16/95 LDG Road Little mount Saidapet Chennai15', 'No:16/95 LDG Road Little Mount Saidapet Chennai15', '2209280018', '1', '1', 'upload_files/candidate_tracker/73314994315_R.N_BRITTO_Raja_(1).pdf', NULL, '1', '2022-09-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,Being Frehser Salary Exp is very high will not sustain in our roles not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-28 04:24:27', 60, '2022-09-28 05:06:54', 0, NULL, 1),
(10407, '', '0', '9940301808', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209280019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-28 06:24:12', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10408, 'Dharshana', '6', '8072121741', '9865568235', 'dharshanakul52@gmail.com', '2000-10-05', 21, '2', '2', 'Kulansaisamy', 'textile', 25000.00, 1, 0.00, 15000.00, 'erode', 'erode', '2209280020', '1', '1', 'upload_files/candidate_tracker/31173813762_Dharshana', NULL, '1', '2022-09-29', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'shexquots take own time for interview so sustainability doubt', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-28 06:24:46', 85, '2022-09-28 07:23:13', 0, NULL, 1),
(10409, 'Praveenkumar.v', '5', '9361270207', '6380484887', 'PRAVEENKUMARPAPU007@GMAIL.COM', '2001-07-07', 21, '2', '2', 'Venkatesan. P', 'Store employee', 12000.00, 0, 23000.00, 25000.00, 'No.54 c.s nagar pb road pattalam chennai.12', 'No.144/a n.m.k 1st lane ayanavaram chennai 23', '2209280021', '1', '2', 'upload_files/candidate_tracker/95943677349_1623856768621Resume_Praveen.pdf', NULL, '1', '2023-01-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our Domain looking for Recruiter role and not much comfort in sales and Salary Exp is very high already holds an offer for 40K', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-28 06:24:50', 85, '2023-01-24 05:39:42', 0, NULL, 1),
(10410, 'Jothimani C', '13', '9994138014', '', 'jothimani2347@gmail.com', '1999-02-04', 23, '3', '2', 'D. Chithiraivel, C. Vijayalakshmi', 'School Attender, House wife', 36800.00, 4, 14800.00, 25000.00, 'Thoothukudi', 'Chennai', '2209280022', '', '2', 'upload_files/candidate_tracker/34597197112_C Jothimani Resume (2).pdf', NULL, '3', '2022-10-11', 45, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-28 10:40:43', 1, '2022-09-28 10:51:50', 0, NULL, 1),
(10411, 'G Rajasekaran', '6', '8248774553', '9943349887', 'grajasekaranvg@gmail.com', '1997-05-20', 25, '3', '2', 'Na', '.', 15.00, 2, 18.00, 4.00, 'Vellore', 'Bangalore', '2209280023', '', '2', 'upload_files/candidate_tracker/82443826593_RAJASEKARAN RESUME.pdf', NULL, '3', '2022-09-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-28 11:44:06', 1, '2022-09-28 11:48:04', 0, NULL, 1),
(10412, 'Subasree', '28', '8925312127', '', 'subasree2871@gmail.com', '1997-02-08', 25, '4', '2', 'PARTHASARATHY', 'Nil', 1000.00, 2, 23000.00, 35000.00, 'Chennai', 'Chennai', '2209290001', '', '2', 'upload_files/candidate_tracker/62831932717_Subasree Resume - mail.pdf', NULL, '3', '2022-10-02', 11, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 02:24:39', 1, '2022-09-29 02:31:25', 0, NULL, 1),
(10413, 'vishal', '6', '8825975254', '', 'vishalkanchana5@gmail.com', '1995-03-24', 27, '2', '1', 'venugopal', 'security', 14000.00, 0, 12000.00, 13000.00, 'chennai', 'chennai', '2209290002', '2', '2', 'upload_files/candidate_tracker/43249568048_Sundar-1.docx', NULL, '1', '2022-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Stability and no Sales Exp frequent job changes not suitable and will not sustain', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 09:41:55', 1, '2022-09-29 09:44:46', 0, NULL, 1),
(10414, 'Subash s', '13', '8883412899', '9345045217', 'subash03061999@gmail.com', '1999-06-03', 23, '2', '2', 'Soundharrajan', 'Farmer', 60000.00, 2, 0.00, 12000.00, 'Kallakurichi', 'Villivakkam', '2209290003', '1', '1', 'upload_files/candidate_tracker/203104069_Subash.pdf', NULL, '1', '2022-09-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very fresh candidate need to train a lot not open for TxxampC No basic skills knowledge', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-29 09:50:19', 85, '2022-09-29 10:07:51', 0, NULL, 1),
(10415, 'manimozhi d', '4', '7604968744', '', 'mozhi.mani14@gmail.com', '1993-09-14', 29, '2', '2', 'devaraj', 'farmer', 16000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2209290004', '2', '2', 'upload_files/candidate_tracker/8447668132_Mani resume.pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'no idea about telecalling, will not suit for our process', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:07:48', 1, '2022-09-29 10:10:12', 0, NULL, 1),
(10416, '', '0', '9566789536', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209290005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-29 10:11:15', 0, NULL, 0, NULL, 1),
(10417, 'B JANAKIRAMAN', '13', '9962404206', '9789847069', 'janakiraman171201@gmail.com', '2001-12-17', 20, '3', '2', 'D BASKAR', 'Carpenter', 60000.00, 0, 0.00, 15000.00, 'pallavaram', 'pallavaram', '2209290006', '', '1', 'upload_files/candidate_tracker/13578463433_JANAKIRAMAN RESUME (1).docx', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'has some Knowledge in php. not Open up... Sustainability doubts. not ok with txxampc too', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:19:46', 1, '2022-09-29 10:23:11', 0, NULL, 1),
(10418, 'Sundari Rajendran', '2', '6379375803', '9578063561', 'sundari12012019@gmail.com', '2000-01-24', 22, '3', '2', 'Rajendran', 'Working in grocery shop', 14000.00, 1, 0.00, 18000.00, 'Tirunelveli', 'Chennai', '2209290007', '', '1', 'upload_files/candidate_tracker/4641594486_SUNDARI R_Formal Resume.pdf', NULL, '1', '2022-09-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:21:23', 1, '2022-09-29 10:40:38', 0, NULL, 1),
(10419, 'K.Selsiya', '2', '7094307310', '', 'selsiyakoilpitchai@gmail.com', '2000-09-28', 22, '3', '2', 'P.Koilpitchai', 'Weaver', 15000.00, 1, 0.00, 18000.00, 'Tirunelveli', 'Chennai', '2209290008', '', '1', 'upload_files/candidate_tracker/12112119781_selsiya.pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the interview', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:22:32', 1, '2022-09-29 10:33:45', 0, NULL, 1),
(10420, 'Suriyaprakash k', '11', '7395836673', '9360151457', 'Suriya1604003@gmail.com', '1999-04-16', 23, '3', '2', 'Kannan', 'Farmer', 200000.00, 2, 0.00, 23000.00, '31 PERUMALAGARAM salai koradachery 613703', '113, Yadava St, Adambakkam, Chennai, 600088', '2209290009', '', '1', 'upload_files/candidate_tracker/47598594773_Suriyaprakash.pdf', NULL, '1', '2022-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication no basic ideas in the skills will not sustain in our roles', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:43:48', 1, '2022-09-29 11:28:55', 0, NULL, 1),
(10421, 'Vishalini', '13', '6374389950', '9566852815', 'vishalinibe2000@gmail.com', '2007-09-29', 0, '3', '2', 'Manikkavasagam', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Chennai', '2209290010', '', '1', 'upload_files/candidate_tracker/52131542766_VISHALINI RESUME.pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'good at  skills but no stability ... her brother already working in IT., fresher sal expt high xxamp not ok with terms too. ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:47:15', 1, '2022-09-29 10:50:12', 0, NULL, 1),
(10422, 'Pushparaj. V', '13', '9080549731', '6374994324', 'pushparaj16092@gmail.com', '1999-12-02', 22, '3', '2', 'Vemban. R', 'Plastic Worker', 18000.00, 1, 0.00, 25000.00, 'PUDUCHERRY', 'Velachery', '2209290011', '', '1', 'upload_files/candidate_tracker/22829779044_Pushparaj Resume .pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Left Without Attending The Interview', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:54:11', 1, '2022-09-29 11:05:11', 0, NULL, 1),
(10423, 'Mugilan', '13', '8870325677', '', 'mugilanar666@gmail.com', '1997-07-21', 25, '2', '2', 'NA', 'Unemployee', 10000.00, 1, 0.00, 20000.00, 'Dharmapuri', 'Tamabaram,chennai', '2209290012', '1', '1', 'upload_files/candidate_tracker/73119964470_ResumeD22.pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Hv Basic Skills, no stability mind .. focusing on sal. ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-29 11:12:31', 85, '2022-09-29 11:29:55', 0, NULL, 1),
(10424, 'Pagalavan P', '13', '9894159831', '9444987260', 'pagalavanweb@gmail.com', '2002-10-07', 19, '3', '2', 'Periyasami Raja.G', 'Driver', 300000.00, 1, 0.00, 200000.00, 'Sevelimedu, kanchipuram.', 'K.K.Nagar, Chennai.', '2209290013', '', '1', 'upload_files/candidate_tracker/33851660052_Pagalavanweb(1).pdf', NULL, '1', '2022-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher SCheduled him for 2nd round basic skills have knowledge not  open with TxxampC and left without attending the 2nd round', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 11:18:18', 1, '2022-09-29 11:27:26', 0, NULL, 1),
(10425, '', '0', '9003627977', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209290014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-29 11:20:57', 0, NULL, 0, NULL, 1),
(10426, 'T. Gokulakrishnan', '13', '6380322171', '9943213704', 'gg527839@gmail.com', '2002-09-16', 20, '3', '2', 'M. Tamilmani', 'Former', 22000.00, 1, 0.00, 200000.00, 'Mannargudi, vattar, kezhaputhu(st), 614717.', 'Chennai, Tambaram', '2209290015', '', '1', 'upload_files/candidate_tracker/25190776268_Org. Gokul.pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'doing course. one week more but already got offer for 15k.  focusing on salary. will not suit for our company', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 11:21:32', 1, '2022-09-29 11:29:03', 0, NULL, 1),
(10427, 'Umavathi.k', '13', '8825971278', '9626598180', 'umakathiresanmca@gmail.com', '1997-03-14', 25, '3', '2', 'Kathiresan .s', 'Former', 40000.00, 3, 13000.00, 16000.00, 'Trichy', 'Chennai', '2209290016', '', '2', 'upload_files/candidate_tracker/58052518488_UMAVATHI.K.docx', NULL, '1', '2022-09-29', 3, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for our roles no basic skills will not sustain and not suitable ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 11:22:58', 1, '2022-09-29 11:32:11', 0, NULL, 1),
(10428, 'Kavitha Subramani', '13', '9655229953', '9487718892', 'kavithasmv14@gmail.com', '1998-06-14', 24, '3', '2', 'Saraswathi', 'House wife', 2000.00, 2, 15000.00, 20000.00, 'Virudhunagar', 'Chennai', '2209290017', '', '2', 'upload_files/candidate_tracker/37295831650_Kavitha Subramani.pdf', NULL, '1', '2022-09-29', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher SCheduled Him For 2nd Round Basic Skills Have Knowledge high CTC Exp 2nd round reject by gokul', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 11:52:32', 1, '2022-09-29 12:00:10', 0, NULL, 1),
(10429, 'SUDHA BHARATHI KESAVAN', '13', '9385322371', '', 'sudhabharathikesavan@gmail.com', '2000-02-23', 22, '3', '2', 'KESAVAN', 'FARMER', 7000.00, 2, 0.00, 20000.00, 'Chennai', 'Thoothukudi', '2209290018', '', '1', 'upload_files/candidate_tracker/78029010450_CV- Sudha Bharathi K.pdf', NULL, '2', '2022-09-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 11:55:28', 1, '2022-09-29 12:10:28', 0, NULL, 1),
(10430, 'Muthukumar', '15', '6379375976', '9600417687', 'Muthukumarkrish1999@gmail.com', '2007-09-29', 0, '3', '2', 'Krishnamooorthi', 'Farming', 7.00, 2, 2.30, 3.00, 'Kumbakonam', 'Adayar', '2209290019', '', '2', 'upload_files/candidate_tracker/79341720198_Muthukumar Resume.pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'no understanding, has 8m exp as a graphic designer ..sal exp high .. Sustainability doubts..', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 12:25:20', 1, '2022-09-29 12:48:16', 0, NULL, 1),
(10431, 'M SURIYAPRAKASH', '5', '7358674939', '9962702424', 'suryaprakash23296@gmail.com', '1996-02-23', 26, '1', '2', 'M Madhavan', 'Daily wages', 40000.00, 0, 24000.00, 25000.00, 'Mugalivakkam', 'Mugalivakkam', '2209290020', '', '2', 'upload_files/candidate_tracker/4407482361_Suriya resume.pdf', NULL, '1', '2022-09-29', 0, 'P1377', '3', '59', '2022-10-10', 300000.00, '', '4', '2023-02-01', '1', 'Selected for RM Role,SAnthosh Team - STAFF ROLE - Have Exp In Sales But Not A Relevant One Can Be Trained', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-29 03:13:29', 60, '2022-10-07 06:09:22', 0, NULL, 1),
(10432, '', '0', '6383483234', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209290021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-29 06:35:11', 0, NULL, 0, NULL, 1),
(10433, 'Deepthi R', '13', '8524823419', '8489658015', 'deepyoon16@gmail.com', '2000-06-01', 22, '3', '2', 'Roland', 'Store supervisor', 15000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2209290022', '', '1', 'upload_files/candidate_tracker/39353839944_deepresume-1-5.pdf', NULL, '2', '2022-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 08:59:04', 1, '2022-09-29 09:01:54', 0, NULL, 1),
(10434, 'Nikhil s', '13', '8489658015', '8524823419', 'nikhilnithin1970@gmail.com', '1999-09-29', 23, '3', '2', 'Sundar', 'Gold Smith', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2209290023', '', '1', 'upload_files/candidate_tracker/58910466331_nikhilresume-1.pdf', NULL, '2', '2022-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 09:03:04', 1, '2022-09-29 09:06:57', 0, NULL, 1),
(10435, 'Niranjani.K', '13', '9176719552', '8778105754', 'niranjani.k2015@gmail.com', '1997-01-06', 25, '3', '2', 'M.Karthikeyan', 'Branch Post Master', 65000.00, 1, 0.00, 20000.00, 'No.80 Karumar street,Pasumathur,Gudiyattam,RS', '82A Villivakkam rd,kalpalayam,Vinayakapuram,Chenna', '2209300001', '', '1', 'upload_files/candidate_tracker/8302026344_Niranjanik_resume.pdf', NULL, '1', '2022-09-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '5050 Profile,seems to be slow have basic skills knowledge,long rund doubts 2nd round interviewed by kaviiya,Candidate need time to learn if she comes back after 2 months can be considered based on her learnings', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 09:49:33', 1, '2022-09-30 10:03:24', 0, NULL, 1),
(10436, 'Priyadarshini', '31', '9843699633', '9843216950', 'Priyankakviya10@gmail.com', '2000-09-14', 22, '3', '2', 'Ramesh.A', 'Father', 25.00, 2, 0.00, 18000.00, 'Thiruvannamalai', 'Vadapazani', '2209300002', '', '1', 'upload_files/candidate_tracker/93267551494_ Resume-Resume (1).pdf', NULL, '1', '2022-09-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not strong with the skills she learnt, need to speak out, not much comfort with TxxampC Will not sustain in our roles', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-30 11:08:43', 60, '2022-09-30 11:58:44', 0, NULL, 1),
(10437, 'S Ajithkumar', '13', '9597173123', '', 'Ajithcse2001@gmail.c', '2001-04-27', 21, '3', '2', 'Subramanium', 'Fisherman', 15000.00, 2, 0.00, 17000.00, 'Tirunelveli', 'Chennai', '2209300003', '', '1', 'upload_files/candidate_tracker/38682015477_ajith.resume (1).pdf', NULL, '1', '2022-09-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic Skllls,not much open with TxxampC,Need time to confirm also need to learn a lot', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 12:32:54', 1, '2022-09-30 12:39:17', 0, NULL, 1),
(10438, 'Kalaivani N', '14', '7094898826', '9159769940', 'Kalai712007@gmail.com', '2002-12-09', 19, '4', '2', 'Natarajan', 'Farmer', 5000.00, 1, 0.00, 20000.00, 'Thiruvannamalai', 'Porur', '2209300004', '', '1', 'upload_files/candidate_tracker/42161338759_kalai kom.pdf', NULL, '1', '2022-09-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic skills will not sustain and handle our  Roles not suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 01:33:52', 1, '2022-09-30 01:47:51', 0, NULL, 1),
(10439, 'Komathi', '14', '9047541044', '9585666432', 'komathipriya1507@gmail.com', '2002-06-07', 20, '4', '1', 'Ulaganathan', 'Former', 7000.00, 3, 0.00, 20000.00, 'Thiruvannamalai', 'Porur', '2209300005', '', '1', 'upload_files/candidate_tracker/70428460107_kom.pdf', NULL, '1', '2022-09-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Will Not Sustain And Handle Our  Roles Not Suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 01:36:22', 1, '2022-09-30 01:48:10', 0, NULL, 1),
(10440, 'Yuvan Shankar Balaji A', '13', '8825837598', '', 'yuvan141999@gmail.com', '1999-10-14', 22, '3', '2', 'Anna Pugazhendhi A', 'Field officer', 15000.00, 1, 205000.00, 350000.00, 'Chennai', 'Chennai', '2209300006', '', '2', 'upload_files/candidate_tracker/36175293938_Professional resume 2.pdf', NULL, '1', '2022-09-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for IT Roles  have Exp in Non voice Looking only for the salary growth will not sustain ', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 02:48:00', 1, '2022-09-30 02:52:09', 0, NULL, 1),
(10441, 'prasanth I', '13', '9626991361', '9042556018', 'prasanth080896@gmail.com', '1996-08-08', 26, '2', '2', 'iyappan', 'farmer', 20000.00, 2, 0.00, 15000.00, 'kumbakonam', 'chennai', '2209300007', '1', '1', 'upload_files/candidate_tracker/2712692427_Prasanth.pdf', NULL, '1', '2022-09-30', 0, '', '3', '59', '2022-10-03', 120000.00, '', '', '1970-01-01', '2', 'selected for PHP 3-5 months 10K Salary then 13K based on performance 2yrs SA', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-30 03:01:14', 85, '2022-09-30 03:11:00', 0, NULL, 1),
(10442, 'Radhalakshmi', '13', '9159431874', '9677233915', 'radhakannan31595@gmail.com', '1995-05-31', 27, '4', '1', 'Hemachandran', 'B. E', 50000.00, 1, 0.00, 15000.00, 'Perumbakkam, Chennai', 'Perumbakkam, Chennai', '2209300008', '', '1', 'upload_files/candidate_tracker/43793576289_Radhalakshmi_updatedresume.pdf', NULL, '2', '2022-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 07:23:15', 1, '2022-09-30 07:37:01', 0, NULL, 1),
(10443, '', '0', '7760670542', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209300009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-30 08:38:57', 0, NULL, 0, NULL, 1),
(10444, 'Navya P R', '13', '8870156294', '', 'navyapr081998@gmail.com', '1998-08-08', 24, '3', '2', 'Raajasaker . A. K', 'Farmer', 100000.00, 1, 0.00, 250000.00, 'Thalaivasal', 'Chennai', '2209300010', '', '1', 'upload_files/candidate_tracker/27368298181_Navya P.R Resume.docx', NULL, '1', '2022-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 08:57:54', 1, '2022-10-07 10:05:11', 0, NULL, 1),
(10445, 'ALBERT MICHAEL KIRUBAGARAN', '31', '6369565088', '', 'albert11.srk@gmail.com', '2001-04-11', 21, '2', '2', 'Solomon Raj Kumaresan', 'Nil', 100000.00, 1, 0.00, 200000.00, 'Lalgudi tiruchirapalli', 'Chengalpattu chennai', '2202210011', '1', '1', 'upload_files/candidate_tracker/71487171956_ALBERT.pdf', NULL, '1', '2022-10-01', 0, '', '3', '59', '2022-10-03', 120000.00, '', '2', '1970-01-01', '2', '3-5 months 5K then 2.7 yrs Emp 10-12K Salary after intern - Fresher have basic skills and interested to learn final round by Gokul', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-01 09:51:34', 60, '2022-10-14 12:56:29', 0, NULL, 1),
(10446, 'NIVASS S V', '13', '7739683293', '', 'nivass2all@gmail.com', '2000-05-19', 22, '3', '2', 'S VELMURUGAN', 'FORMER', 100000.00, 1, 0.00, 15000.00, 'MUDUKULATHUR', 'MUDUKULATHUR', '2202210012', '', '1', 'upload_files/candidate_tracker/2405555075_NIVASS.pdf', NULL, '1', '2022-10-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not much strong in basic skills not open for TxxampC will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-01 10:37:24', 1, '2022-10-01 11:05:14', 0, NULL, 1),
(10447, 'UDHISH.PP', '13', '9747200243', '', 'Udhishpp2000@gmail.com', '2000-11-01', 21, '3', '2', 'Unnikrishnan.PP', 'Tailor', 100000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2202210013', '', '1', 'upload_files/candidate_tracker/29992637990_UDHISH_PP_1664163130562.pdf', NULL, '1', '2022-10-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic ideas in PHP looking for Java C++', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-01 10:38:11', 1, '2022-10-01 10:44:52', 0, NULL, 1),
(10448, 'S v Issac Joshua', '5', '9941825100', '8680817544', 'issacjoshua96@gmail.com', '1996-04-23', 26, '2', '2', 'S p venkatesan', 'Paniting contractor', 25000.00, 1, 30000.00, 30000.00, 'Chennai', 'Chennai', '2202210014', '1', '2', 'upload_files/candidate_tracker/2351951398_ISSAC Vital.docx', NULL, '1', '2022-10-01', 5, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-01 11:18:24', 60, '2022-10-01 12:12:15', 0, NULL, 1),
(10449, 'K. Azhagulakshmi', '13', '9789687273', '', 'azhagulakshmi2000@gmail.com', '2000-05-14', 22, '3', '2', 'R. Karuppaiya', 'Auto driver', 25000.00, 2, 0.00, 300000.00, 'Virudhunagar', 'Chennai', '2202210015', '', '1', 'upload_files/candidate_tracker/80100681337_Azhagu update resume.pdf', NULL, '1', '2022-10-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for PHP no basic skills need to train a lot but salary exp is high and not open for T7C', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-01 12:33:19', 1, '2022-10-01 12:40:16', 0, NULL, 1),
(10450, 'oswald singh', '13', '8962189387', '', 'jebasio@yahoo.com', '1983-09-11', 39, '3', '2', 'ambrose nallathambi', 'intern', 10000.00, 0, 0.00, 10000.00, 'chennai', 'chennai', '2202210016', '', '1', 'upload_files/candidate_tracker/97259501727_Resume.pdf', NULL, '1', '2022-10-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-01 02:29:09', 1, '2022-10-01 02:46:54', 0, NULL, 1),
(10451, 'Bardhul Nisha J', '16', '9025204693', '7200425426', 'bardhulnj@gmail.com', '1998-07-26', 24, '3', '2', 'Jaheer Hussain M', 'Business', 20000.00, 2, 17000.00, 22000.00, 'Avadi', 'Avadi', '2202210017', '', '2', 'upload_files/candidate_tracker/68511016031_Bardhul Nisha J Resume new.docx', NULL, '1', '2022-10-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance communication average and writing skills not upto the mark as we expected', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-01 03:00:40', 1, '2022-10-01 03:09:11', 0, NULL, 1),
(10452, 'Bhuvana.J', '13', '7598838740', '9786468749', 'bhuvana.jk261@gmail.com', '2002-01-26', 20, '2', '2', 'N.Jayakumar', 'Company staff', 25000.00, 1, 0.00, 100000.00, 'Chennai', 'Chrompet', '2202210018', '1', '1', 'upload_files/candidate_tracker/8708517274_Bhuvana.j Resume.pdf', NULL, '1', '2022-10-10', 0, '', '3', '59', '2022-10-11', 96000.00, '', '3', '2022-10-12', '2', '8K Stipend,based on performance will get revised 3yrs SA,Need to analyse the candidate in 7 Days,Final round interviewed by Gokul and Selected', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-01 07:07:38', 60, '2022-10-14 12:58:17', 0, NULL, 1),
(10453, '', '0', '8709661462', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-02 12:30:05', 0, NULL, 0, NULL, 1),
(10454, '', '0', '8760726289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-02 08:43:04', 0, NULL, 0, NULL, 1),
(10455, 'Shiek Dawood', '13', '9514336251', '', 'shiekdawoodofficial@gmail.com', '2001-12-18', 20, '2', '2', 'Meer Dawood Ali', 'Shop keeper', 15000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2012210032', '1', '1', 'upload_files/candidate_tracker/81896857824_Sheik dawood PDF.pdf', NULL, '1', '2022-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Handling work pressure doubtful will not sustain in long run  not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-03 10:06:33', 96, '2022-10-03 11:23:14', 0, NULL, 1),
(10456, 'Ajay venkatesh', '31', '6383315976', '9488061871', 'ajay19990115@gmail.com', '1999-01-15', 23, '2', '2', 'Annadurai', 'Business', 100000.00, 2, 0.00, 2.50, 'Pudukkottai', 'Chennai', '2012210033', '1', '1', 'upload_files/candidate_tracker/93346124549_AJAY%20Resume%203.docx', NULL, '1', '2022-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance ,not much comfort in TxxampC Need time to give his confirmation ,sustainability doubts a lot ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-03 10:15:34', 96, '2022-10-03 11:23:39', 0, NULL, 1),
(10457, 'Kavin T', '31', '8056274866', '9789950444', 'Kavin08011998@gmail.com', '1998-01-08', 24, '2', '2', 'Thirunama Selvan', 'Business', 100000.00, 1, 0.00, 300000.00, 'No 1 pmd nagar sakthi nagar, chennai, 600063', 'No 1 Pmd Nagar Sakthi Nagar, Chennai, 600063', '2012210034', '1', '1', 'upload_files/candidate_tracker/1582676712_Resume (6).pdf', NULL, '1', '2022-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too Long Distance ,Not Much Comfort In TxxampC Need Time To Give His Confirmation ,Sustainability Doubts A Lot If He Comes Back Can Give A Try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-03 10:18:35', 96, '2022-10-03 11:24:05', 0, NULL, 1),
(10458, 'Sathish Kumar', '13', '8778473179', '9087601140', 'psathishkumar179@gmail.com', '2001-09-17', 21, '2', '2', 'Rajathi', 'Coolie', 15000.00, 1, 0.00, 12000.00, 'Sivaganga', 'Chennai', '2012210035', '1', '1', 'upload_files/candidate_tracker/46055401811_Sathish Resume.pdf', NULL, '1', '2022-10-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic knowledge in Skills need time to confirm his position in TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-10-06', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-03 10:37:46', 85, '2022-10-08 01:28:14', 0, NULL, 1),
(10459, 'ASHOK.A', '13', '9080412585', '9894316736', 'aa5500067ashok@gmail.com', '2007-10-03', 0, '3', '2', 'ANANDHAN.R', 'Farmer', 15000.00, 1, 0.00, 25000.00, 'Mannargudi', 'Velachery', '2012210036', '', '1', 'upload_files/candidate_tracker/95979126839_Ashok.pdf', NULL, '1', '2022-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills not comfort in TxxampC need to learn a lot will not sustain for a long', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-03 01:26:56', 85, '2022-10-03 03:07:03', 0, NULL, 1),
(10460, 'S.ARAVINTHAN', '4', '9361191681', '8220230149', 'saravinthan775@gmail.com', '2002-02-03', 20, '4', '2', 'SAMIDHURAI.T', 'Former', 10000.00, 2, 0.00, 18000.00, 'Adambakkam', 'Adambakkam', '2012210037', '', '1', 'upload_files/candidate_tracker/71871015181_Aravindhan Resume - 1658067152.pdf', NULL, '3', '2022-10-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-03 05:29:16', 1, '2022-10-03 05:39:44', 0, NULL, 1),
(10461, 'Thenmozhi', '16', '9345857489', '', 'thenupriyacivil@gmail.com', '1997-06-18', 25, '2', '2', 'Muruganandham', 'Mason', 35000.00, 2, 25000.00, 25000.00, 'Tindivanam', 'Chrompet', '2210040001', '1', '2', 'upload_files/candidate_tracker/3177072374_Thenmozhi resume updated (1).pdf', NULL, '1', '2022-10-06', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, Writing skills not up to the mark as we expected fresher for our roles personal family issue are there will not sustain in long run', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-04 01:12:41', 85, '2022-10-06 03:54:03', 0, NULL, 1),
(10462, 'deepika', '11', '6384390341', '9841772231', 'deepikanchanathanika@gmail.com', '2002-03-05', 20, '3', '2', 'sivanathan', 'car driver', 9000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2210040002', '', '1', 'upload_files/candidate_tracker/93808197410_Deepika Resume .docx', NULL, '3', '2022-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-04 03:46:03', 1, '2022-10-04 04:36:53', 0, NULL, 1),
(10463, 'Vengateswaran k', '13', '9597338434', '', 'vengatestamilsevi@gmail.com', '2002-06-14', 20, '2', '2', 'KARUPPAIYA r', 'Former', 10000.00, 2, 0.00, 10.00, 'Pudukkottai', 'Pudukkottai', '2210050001', '1', '1', 'upload_files/candidate_tracker/18972580683_vengat1new (2).pdf', NULL, '1', '2022-10-05', 0, '', '3', '60', '2022-10-10', 0.00, '', '', '2022-11-18', '1', 'Selected as a trainee with 8k salary per month and 3 years service agreement.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '8K Salary based on performance may get inerement in 6 months 3yrs SA', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-05 09:19:05', 60, '2022-10-19 10:16:05', 0, NULL, 1),
(10464, 'B HARIHARAN', '13', '8072137754', '', 'sonjohn52685@gmail.com', '2001-05-27', 21, '2', '2', 'R Baskar', 'Auto driver', 30000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2210050002', '1', '1', 'upload_files/candidate_tracker/83022746456_CV_2022-10-04-074917.pdf', NULL, '1', '2022-10-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills too long distance  will not sustain in our roles for a long', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-05 09:37:05', 85, '2022-10-05 09:48:41', 0, NULL, 1),
(10465, 'Kowshikraj', '13', '9150152632', '', 'kowshiksaravanan925@gmail.com', '2002-04-21', 20, '2', '2', 'Saravanan', 'dirver', 15000.00, 1, 0.00, 15000.00, 'Panruti', 'Panruti', '2210050003', '1', '1', 'upload_files/candidate_tracker/15089763461_resume (1).pdf', NULL, '1', '2022-10-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic skills knowledge Fresher SAlary exp is high and not open with TxxampC also not comfort with 8-10K Salary', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-05 11:22:02', 85, '2022-10-08 01:27:48', 0, NULL, 1),
(10466, 'Sneha', '13', '8667034619', '', 'snehamunusamii@gmail.com', '2001-09-14', 21, '3', '2', 'Munusamy R', 'Driver', 75000.00, 2, 0.00, 15000.00, 'Karaikal', 'Chennai', '2210050004', '', '1', 'upload_files/candidate_tracker/42669434707_sneha resume.pdf', NULL, '1', '2022-10-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java openings', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-05 11:29:37', 1, '2022-10-05 11:33:47', 0, NULL, 1),
(10467, 'Lakshmi kanthan', '4', '8939395271', '', 'viruchagakanthan@gmail.com', '1994-06-07', 28, '2', '2', 'Arunchala sundram', 'Late', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2210050005', '2', '1', 'upload_files/candidate_tracker/43560407050_Resume - Lakshmi Kanthan.pdf', NULL, '1', '2022-10-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No sustainability in his previous Exp much focused with non voice Career Gap  need to open a lot for our sales and Salary Exp is high', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-05 02:02:39', 1, '2022-10-05 02:05:19', 0, NULL, 1),
(10468, 'suriya.b', '31', '7358744376', '', 'bbsuriya649@gmail.com', '1998-03-31', 24, '2', '2', 'parent name- santhi.p', 'sweeper', 15000.00, 3, 0.00, 13000.00, 'madhavaram', 'madhavaram', '2210050006', '1', '1', 'upload_files/candidate_tracker/58757008899_SuriyaResume.pdf', NULL, '2', '2022-10-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher not much strong in the basic skills,Not answering much checked for technical round with Manikandan and got rejected ', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-05 05:31:05', 60, '2022-10-08 01:17:06', 0, NULL, 1),
(10469, 'Hesmapriya', '4', '7358012318', '9176333903', 'priyapsk23@gmail.com', '1999-04-23', 23, '2', '2', 'Karpagam', 'No', 200000.00, 2, 13000.00, 18000.00, 'Chennai', 'Chennai', '2210050007', '1', '2', 'upload_files/candidate_tracker/48505906718_CV_2022-09-30-114603.pdf', NULL, '1', '2022-10-06', 0, '', '3', '59', '1970-01-01', 176844.00, '', '2', '1970-01-01', '1', 'Selected for B2B - Consultant Role\nCommunication Ok Have Exp In Calling But Not A Relevant One Can Give A Try', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-05 06:22:18', 60, '2022-10-06 04:39:43', 0, NULL, 1),
(10470, 'Afrin Fathima Abdul Samadu', '13', '9080519020', '9159575716', 'afrin11099@gmail.com', '1999-10-01', 23, '2', '1', 'H.Mohammed Minnathullah', 'Business', 25000.00, 2, 1.50, 3.00, 'Chennai', 'Chennai', '2210060001', '1', '2', 'upload_files/candidate_tracker/9037071601_CV_2022092909140491.pdf', NULL, '1', '2022-10-06', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have a months exp in PHP,can be trained open for TxxampC need to be trained can give a try kindly check and let me know your inpts', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-06 09:27:56', 85, '2022-10-08 01:27:13', 0, NULL, 1),
(10471, 'Vineeth K', '13', '8072601621', '9514563219', 'vineethvini004@gmail.com', '1999-04-22', 23, '2', '2', 'Kannan S', 'Farmer', 200000.00, 0, 0.00, 200000.00, 'Surulipatti', 'Triplicane', '2210060002', '1', '1', 'upload_files/candidate_tracker/51705824098_resumeX-2022.08.25.17.01.12.pdf', NULL, '1', '2022-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for ASP.Net profile', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 09:46:28', 96, '2022-10-06 04:07:36', 0, NULL, 1),
(10472, 'Ramkumar R', '13', '8667398661', '', 'ajiram1999@gmail.com', '1999-06-24', 23, '2', '2', 'Ravi M', 'Daily wager', 10000.00, 1, 0.00, 3.00, 'Pudukkottai', 'Ekkathuthangal', '2210060003', '1', '1', 'upload_files/candidate_tracker/33793702340_Ramkumar', NULL, '1', '2022-10-06', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Can give a try for PHP kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 10:35:32', 96, '2022-10-06 04:07:07', 0, NULL, 1),
(10473, 'KALIDOSS', '13', '6381484142', '', 'kalidoss4142@gmail.com', '2000-06-05', 22, '2', '2', 'SUBBAIAH', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Pudukkottai', 'Porur', '2210060004', '1', '1', 'upload_files/candidate_tracker/59323138407_KALIDOSS S .pdf', NULL, '1', '2022-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher have basic knowledge in JS ,5050 not much comfort with TxxampC 2nd round reject by manikandan', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-06 10:59:00', 85, '2022-10-08 01:27:23', 0, NULL, 1),
(10474, 'Jeevanandham S G', '31', '8056475275', '9965059423', 'Jeevasg0311@gmail.com', '2000-11-03', 21, '2', '2', 'S gopi', 'Tractor mechanic', 20000.00, 1, 0.00, 25000.00, 'Ponneri', 'Ponneri', '2210060005', '1', '1', 'upload_files/candidate_tracker/41546002105_jeeva 1 resume.docx', NULL, '1', '2022-10-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much active too long Distance ,he says that can relocate but not sure on that,will not handle our work pressure and sustainability doubts,5050 if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-10-10', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 11:28:52', 96, '2022-10-06 04:06:16', 0, NULL, 1),
(10475, 'Karthikeyan', '13', '6385897474', '9659764711', 'karthickrishna006@gmail.com', '2002-01-19', 20, '2', '2', 'Krishnan', 'Farmer', 68000.00, 1, 0.00, 12000.00, 'Sivaganga', 'Chennai', '2210060006', '1', '1', 'upload_files/candidate_tracker/66594406557_karthikeyan (resume) .pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher 5050 not much ok with the Skills Can give a try Discussed with Gokul on the same and dropped the profile,if he comes back after few more interviews let us decide this profile', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-06 11:41:19', 96, '2022-10-07 05:04:29', 0, NULL, 1),
(10476, 'Nivedha ov', '7', '6382146491', '7845737398', 'waralunivedha78@gmail.com', '2000-07-30', 22, '2', '2', 'Saradha', 'House wife', 50000.00, 3, 19500.00, 25000.00, 'At Thomas mount', 'St Thomas mount Chennai', '2210060007', '1', '2', 'upload_files/candidate_tracker/28321239132_RESUME-O-V-NIVETHA(edited)(2).pdf', NULL, '1', '2022-10-06', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average but sounding good have Exp in policy bazaar for 9 months looking for MF roles only not open for Sales 5050 Can give a try,writing skills Average need to check with gokul and confirm', '5', '2', '', '1', '1', '', '2', '2022-10-08', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-06 11:47:10', 60, '2022-10-06 04:08:56', 0, NULL, 1),
(10477, 'Gayathri', '13', '9629892684', '', 'gayathrik14899@gmail.com', '1999-08-14', 23, '2', '1', 'Aswin', 'DME', 25000.00, 2, 0.00, 18000.00, 'Thanjavur', 'Kodampakkam', '2210060008', '1', '1', 'upload_files/candidate_tracker/23683562937_gayathri resume.pdf', NULL, '1', '2022-10-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic skills in PHP have Exp for Few months Recently married and husband in singapore,need to check and confirm us for the TxxampC is she comes back let us try\n', '2', '2', '0', '1', '1', '0', '2', '2022-10-08', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-06 12:45:03', 1, '2022-10-06 12:49:08', 0, NULL, 1),
(10478, 'Jeevanandam d', '13', '7845786028', '7708789500', 'Jeevadeva10@gmail.com', '2000-09-10', 22, '2', '2', 'Devarajan', 'Weaver', 7000.00, 2, 0.00, 250000.00, 'Kanchipuram', 'Kanchipuram', '2210060009', '1', '1', 'upload_files/candidate_tracker/24089610443_Jeevanandam D Resume.pdf', NULL, '1', '2022-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for JAVA openings only\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 01:08:26', 96, '2022-10-06 04:05:13', 0, NULL, 1),
(10479, '', '0', '8838282780', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210060010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-06 01:16:42', 0, NULL, 0, NULL, 1),
(10480, 'Venkadesan tl', '31', '8695184222', '', 'Venkateshtl7871@gmail.com', '2002-10-10', 19, '2', '2', 'Letchumanan tl', 'Weaver', 20000.00, 1, 0.00, 1.80, 'Paramakudi', 'Paramakudi', '2210060011', '1', '1', 'upload_files/candidate_tracker/59200860183_resume (4) - 2022-09-30T080851.159.pdf', NULL, '1', '2022-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much active,will not handle our work  pressure will not sustain not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 01:16:48', 96, '2022-10-06 04:04:38', 0, NULL, 1),
(10481, 'Revathi A', '13', '8300836584', '6383336586', 'Revacse007@gmail.com', '1997-07-31', 25, '2', '2', 'Andiyappan K', 'Formar', 5000.00, 2, 7000.00, 12000.00, 'Karaikudi', 'Thiruvanmiyur', '2210060012', '1', '2', 'upload_files/candidate_tracker/24247700356_Resume.pdf', NULL, '1', '2022-10-06', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in PHP,5050 for us can give a try kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 01:36:23', 96, '2022-10-06 04:04:01', 0, NULL, 1),
(10482, 'Karthick C', '11', '7358761107', '', 'ckarthick0192@gmail.com', '2001-04-25', 21, '2', '2', 'A.Chinna pandian', 'Chief chef', 100000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2210060013', '1', '1', 'upload_files/candidate_tracker/1457766290_karthick CV.pdf', NULL, '1', '2022-10-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,5050 profile can give a try sustainability doubts have basic knowledge in recruitment,father is chief chef in china', '6', '1', '', '1', '1', '', '2', '2022-10-08', '3', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-10-06 01:40:04', 60, '2022-10-06 04:04:56', 0, NULL, 1),
(10483, 'Hariram.P', '13', '9025669652', '9150480181', 'hariramhdmp@gmail.com', '2001-04-03', 21, '3', '2', 'Padmanaban.B', 'Trader', 120000.00, 1, 0.00, 400000.00, 'No.61,4th street,js nagar, Walajahbad, kanchipuram', 'Walajahbad', '2210060014', '', '1', 'upload_files/candidate_tracker/89590738001_hrm Resume.pdf', NULL, '1', '2022-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-06 02:32:30', 1, '2022-10-06 02:37:51', 0, NULL, 1),
(10484, 'Hariram.P', '13', '9025669662', '9150480181', 'hariramhdmp@gmail.com', '2001-04-03', 21, '2', '2', 'Padmanaban.B', 'Trader', 120000.00, 1, 0.00, 370000.00, 'Walajahbad', 'Walajahbad', '2210060015', '1', '1', 'upload_files/candidate_tracker/27318427590_hrm Resume.pdf', NULL, '1', '2022-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no basic skills knowledge relocation not sure he is from kanchipuram sustainability doubts in this profile need to learn a lot', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 02:40:27', 96, '2022-10-06 04:03:15', 0, NULL, 1),
(10485, 'B.h.shri akshaya', '4', '9789931825', '', 'akshayashri95@gmail.com', '1999-03-29', 23, '2', '2', 'B.himachalam', 'Business', 120000.00, 1, 0.00, 16000.00, 'Mandavali', 'Mandavali', '2210060016', '1', '1', 'upload_files/candidate_tracker/5309420131_Shri.pdf', NULL, '1', '2022-10-07', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok fresher, can be trained kindly check and let me know your interest', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-06 06:19:35', 96, '2022-10-07 05:04:50', 0, NULL, 1),
(10486, 'A.vinnarasi', '13', '6369544157', '', 'vinnarasijeni01@gmail.com', '2001-03-30', 21, '2', '2', 'Z .Amalraj', 'Assistant Chef', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2210060017', '1', '1', 'upload_files/candidate_tracker/47518008493_Vinnarasi .pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have learnt skills from ingenuine,need to travel from tambaram,not much comfort with the TxxampC Need time to check  with her family and confirm if she comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-06 07:31:26', 1, '2022-10-07 11:44:29', 0, NULL, 1),
(10487, 'Dhibishna .v', '2', '8637690361', '', 'dhibishna17@gmail.com', '2007-10-07', 0, '3', '2', 'Vijayan.N,chitra Devi.v', 'Formar', 15000.00, 1, 0.00, 20000.00, 'Naranamangalam', 'Chennai', '2210070001', '', '1', 'upload_files/candidate_tracker/89395394971_0_Dhibishna-1 (1).pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge in skills from perambur need to train a lot no ideas in PHP/CRUD Will not sustain ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 09:31:22', 1, '2022-10-07 09:48:08', 0, NULL, 1),
(10488, 'SINDHUJA V', '6', '9791785483', '9487253030', 'Sindhuvasudevan24@gmail.com', '1999-10-24', 22, '2', '2', 'VASUDEVAN', 'BUSINESS', 30000.00, 1, 0.00, 12000.00, 'Siruvalur', 'Siruvalur', '2210070002', '1', '1', 'upload_files/candidate_tracker/63031940884_sindhu_resume_Sindhuja.pdf', NULL, '1', '2022-10-07', 0, '', '3', '59', '2022-10-13', 156000.00, '', '3', '2022-12-08', '2', 'Selected for Suthagar Team - Staff Role', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-07 09:39:42', 60, '2022-10-12 03:57:59', 0, NULL, 1),
(10489, 'jothi', '4', '6380247729', '', 'sjothi.vnb@gmail.com', '2000-10-23', 21, '2', '2', 'samu', 'farmer', 5000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2210070003', '2', '1', 'upload_files/candidate_tracker/41323606189_JOTHI CV.pdf', NULL, '1', '2022-10-07', 0, '', '3', '59', '2022-10-10', 151584.00, '', '3', '2022-11-08', '2', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-07 09:40:15', 60, '2022-10-07 04:19:18', 0, NULL, 1),
(10490, 'surya n', '4', '7550157065', '', 'leosuryaleosurya@gmail.com', '2003-07-20', 19, '2', '2', 'nagappan', 'cooli', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210070004', '2', '1', 'upload_files/candidate_tracker/50286524742_Surya_Resume.docx', NULL, '1', '2022-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 09:45:17', 1, '2022-10-07 09:46:44', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10491, 'aarthi m', '4', '9710520973', '', 'baluswamymanikandanbmanikandan@gmail.com', '2001-12-27', 20, '2', '2', 'manikandan', 'cooli', 11000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210070005', '2', '1', 'upload_files/candidate_tracker/19874965993_Aarthi - Resume.pdf', NULL, '1', '2022-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 09:48:04', 1, '2022-10-07 09:49:27', 0, NULL, 1),
(10492, 'karthika k', '4', '7299888187', '', 'karthikakanniyappan1815@gmail.com', '2000-12-15', 21, '2', '2', 'kanniyappan k', 'corp', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210070006', '2', '1', 'upload_files/candidate_tracker/72493874639_karthika.pdf', NULL, '1', '2022-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 09:50:39', 1, '2022-10-07 09:54:21', 0, NULL, 1),
(10493, 'Anu devadas', '11', '7907404225', '9789656068', 'anudevadas2@gmail.com', '1998-02-22', 24, '2', '2', 'Devadas', 'Business', 30000.00, 1, 28000.00, 25000.00, 'Palakkad, kerala', 'Chennai', '2210070007', '1', '2', 'upload_files/candidate_tracker/79763934994_anudevresume.pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok fresher for recruitment Salary Exp is very high not open for TxxampC will not sustain', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-07 10:28:01', 85, '2022-10-08 01:26:43', 0, NULL, 1),
(10494, 'Poorivizhi', '13', '7708025791', '', 'Poovizhi.alex@gmail.com', '1997-12-14', 24, '2', '2', 'Alexander', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Porur', 'Pourur', '2210070008', '1', '1', 'upload_files/candidate_tracker/95006288164_Poovizhi_MCA_Resume.pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance 1.30 min travel,no basic ideas in the skills not open for TxxampC not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-07 10:55:34', 1, '2022-10-07 11:23:19', 0, NULL, 1),
(10495, 'Vijay', '13', '8056147634', '8681008319', 'vijay18884@gmail.com', '2001-11-04', 20, '3', '2', 'Sanjeevi', 'Lathe operator', 25000.00, 1, 0.00, 20000.00, '21/19, kothaval street, alandur, chennai', '21/19, kothaval street, Alandur, Chennai', '2210070009', '', '1', 'upload_files/candidate_tracker/56743398446_VJ resume.pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to open Seems to be slow in learning No basic Skills knowledge have Internship Exp in Ingenuine but not answering not suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 10:58:14', 1, '2022-10-07 11:08:25', 0, NULL, 1),
(10496, 'M. Selvam', '13', '9025954763', '8939288734', 'Vijayvicky11m@gmail.com', '2002-05-11', 20, '3', '2', 'M. Mugurtha valli', 'House wife', 20000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2210070010', '', '1', 'upload_files/candidate_tracker/15628618288_Selvam resume .pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic ideas in skills,will not sustain in our roles and not suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 10:59:09', 1, '2022-10-07 11:07:52', 0, NULL, 1),
(10497, 'Nandhakumar R', '4', '6382402733', '', 'nandhakumar4897@gmail.com', '1997-08-04', 25, '3', '2', 'Makeshwari', 'Farmer', 20000.00, 0, 0.00, 13000.00, 'Namakkal', 'Mogapair Chennai', '2210070011', '', '1', 'upload_files/candidate_tracker/17099226826_NK.pdf', NULL, '1', '2022-10-07', 0, '', '3', '59', '2022-10-10', 126312.00, '', '', '2022-10-11', '2', 'Selected for Arumbakkam,Fresher Can give a try Consultant Role', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-07 11:25:51', 60, '2022-10-07 04:36:53', 0, NULL, 1),
(10498, 'R.Ramya', '13', '7338782653', '7338782654', 'angleramya291@gmail.com', '2000-07-11', 22, '3', '2', 'T.Robert', 'Painter', 25000.00, 3, 0.00, 25000.00, 'Chennai', 'Chennai', '2210070012', '', '1', 'upload_files/candidate_tracker/62239695097_RAMYA (2).pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very fresher just learn basics in ingenuine,not much comfort with the fresher salary need time to check and confirm with her parents if she comes back let us try\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 11:34:40', 1, '2022-10-07 11:40:48', 0, NULL, 1),
(10499, 'ABDUL RASHEED S', '4', '9176482119', '7305740295', 'www.alrasheed017@gmail.com', '2002-11-19', 19, '3', '2', 'Father', '10000', 10000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2210070013', '', '1', 'upload_files/candidate_tracker/12902432930_Abdul Rasheed Resume.docx', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice No Communication', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 11:54:25', 1, '2022-10-07 12:11:37', 0, NULL, 1),
(10500, 'A.Arjun', '4', '9600122198', '', 'lionelarjun@gmail.com', '1994-12-18', 27, '1', '1', 'B.Arutselvam', 'Rice merchant', 50000.00, 1, 30000.00, 40000.00, 'Ayanavaram', 'Ayanavaram', '2210070014', '', '2', 'upload_files/candidate_tracker/40656134194_Resume (1).pdf', NULL, '1', '2022-10-07', 0, '55579', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Sales Calling and looking for support roles checked for Technical support but left without attending the 2nd level Current Salary is 30K\n', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 11:57:06', 1, '2022-10-07 12:07:49', 0, NULL, 1),
(10501, 'Ramyasree V', '6', '7806871839', '', 'ramyarajan2022@gmail.com', '1997-08-09', 25, '2', '1', 'Varadharaj G', 'Finance', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Bhavani', '2210070015', '1', '1', 'upload_files/candidate_tracker/59179888972_Ramya Resume.docx', NULL, '1', '2022-10-08', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She is scared for Target so rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-07 12:29:37', 85, '2022-10-08 12:11:27', 0, NULL, 1),
(10502, 'Sivabalan G', '23', '9080285071', '7338714210', 'sivabalang1999@gmail.com', '1999-05-20', 23, '2', '2', 'Ganesan A', 'Watchman', 20000.00, 1, 0.00, 25000.00, '55, Eden Street, Balaji Nagar, Ambattur, Chennai', '55, Eden Street, Balaji Nagar, Ambattur, Chennai', '2210070016', '1', '1', 'upload_files/candidate_tracker/54750131609_SIVABALAN G Resume (1).pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Stipend fresher for React,have internship in Sales force  min Exp being a fresher is  15K not ready to come down Will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-07 12:44:42', 85, '2022-10-08 01:26:56', 0, NULL, 1),
(10503, 'Nirmal kumar', '4', '7092818926', '9043783757', 'Nirmalkumarvel06@gmail.com', '1999-09-15', 23, '3', '2', 'N. Selvam', 'Driver', 25000.00, 1, 0.00, 15000.00, 'C-105,cheran street, mmda colony, arumbakkam', 'C-105,cheran street, mmda colony, arumbakkam', '2210070017', '', '1', 'upload_files/candidate_tracker/53963288593_Resume_29_09_2022_12_44_11_PM.pdf', NULL, '1', '2022-10-07', 0, '', '3', '59', '2022-10-13', 126312.00, '', '', '2022-10-14', '1', 'Selected for Arumbakkam - Consultant role', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-07 01:28:36', 60, '2022-10-12 06:50:05', 0, NULL, 1),
(10504, 'Tamilselvan', '6', '9043784474', '', 'tamilselvan2456@gmail.com', '2002-02-04', 20, '1', '2', 'Ponmudi', 'Sales man', 20000.00, 1, 25000.00, 20000.00, 'Egmore', 'Pudupet', '2210070018', '', '2', 'upload_files/candidate_tracker/78583770931_Tamilselvan resume.doc', NULL, '1', '2022-10-07', 0, 'P1370', '4', '57', NULL, 0.00, '', '0', NULL, '2', 'Have 3 months Agent Exp in Insurance, no fixed pay only commission based,Holds an IRDA Code,Need to inactive the same,kindly check and let me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 01:31:14', 1, '2022-10-07 01:35:33', 0, NULL, 1),
(10505, '', '0', '9597813638', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 02:18:51', 0, NULL, 0, NULL, 1),
(10506, '', '0', '8508227181', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 03:53:24', 0, NULL, 0, NULL, 1),
(10507, '', '0', '7207299366', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 07:32:56', 0, NULL, 0, NULL, 1),
(10508, 'Sana Mehreen', '4', '8296299909', '', 'misba3679@gmail.com', '2002-02-20', 20, '3', '2', 'Rabiya Basri', 'House wife', 40000.00, 1, 23000.00, 30000.00, 'Shivajinagar', 'Shivajinagar', '2210070022', '', '2', 'upload_files/candidate_tracker/73356833280_Resume..pdf', NULL, '1', '2022-10-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 07:34:43', 1, '2022-10-07 07:58:32', 0, NULL, 1),
(10509, 'Sinchana s', '25', '8088964565', '9606545613', 'sinchanask2002@gmail.com', '2002-02-08', 20, '4', '2', 'Satish B Kotian', 'Graduate', 40000.00, 1, 0.00, 250000.00, 'Sringeri', 'Sringeri', '2210070023', '', '1', 'upload_files/candidate_tracker/21797232849_CV_202210031109014.pdf', NULL, '2', '2022-10-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 07:45:21', 1, '2022-10-07 07:53:57', 0, NULL, 1),
(10510, '', '0', '7349183004', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 07:54:48', 0, NULL, 0, NULL, 1),
(10511, 'Sadiya Banu', '4', '9632092240', '', 'sadiya050801@gmail.com', '2001-08-05', 21, '2', '2', 'Fayaz', 'Tinker', 30000.00, 4, 23000.00, 28000.00, 'Tasker town shivaji nagar bangalore', 'Tasker town shivaji nagar bangalore', '2210070025', '1', '2', 'upload_files/candidate_tracker/97599002430_sadiyaa.pdf', NULL, '1', '2022-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-07 07:55:23', 85, '2022-10-17 10:00:50', 0, NULL, 1),
(10512, '', '0', '9952392530', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 07:57:49', 0, NULL, 0, NULL, 1),
(10513, '', '0', '9014009648', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 08:07:41', 0, NULL, 0, NULL, 1),
(10514, '', '0', '9113258889', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 08:33:28', 0, NULL, 0, NULL, 1),
(10515, '', '0', '8076281783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 08:38:26', 0, NULL, 0, NULL, 1),
(10516, '', '0', '8682061193', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 08:56:47', 0, NULL, 0, NULL, 1),
(10517, '', '0', '9700919911', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 10:48:04', 0, NULL, 0, NULL, 1),
(10518, 'neha parveen', '4', '9693983915', '8884454400', 'nehaparveen201@gmail.com', '1994-01-20', 28, '3', '1', 'nausad alam', 'banking', 80000.00, 4, 23000.00, 35000.00, 'Srivatsam, 1347, , Begur, Bangalore, 560076.', 'Srivatsam, 1347, bangalore', '2210070032', '', '2', 'upload_files/candidate_tracker/49384297915_Document (1).pdf', NULL, '2', '2022-10-10', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 11:00:25', 1, '2022-10-07 11:14:57', 0, NULL, 1),
(10519, 'Eshan Ulla khan', '4', '8123006176', '', 'eshanuk12@gmail.com', '2001-08-24', 21, '3', '2', 'Yaseen ulla', 'Business', 300000.00, 2, 17000.00, 20000.00, 'Shanthi Nagar, Shimoga', '14, Galaxy homes, VP road, Madivala, Bengaluru', '2210070033', '', '2', 'upload_files/candidate_tracker/596862684_eshan_resume.docx.pdf', NULL, '1', '2022-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 11:08:58', 1, '2022-10-07 11:14:14', 0, NULL, 1),
(10520, '', '0', '9492841303', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 11:19:47', 0, NULL, 0, NULL, 1),
(10521, 'Lokesh', '23', '6382876294', '8072399982', 'lokesh1892k@gmail.com', '2000-09-18', 22, '2', '2', 'Dhanalakshmi', 'Housewife', 45000.00, 1, 0.00, 20000.00, 'Chidambaram', 'Chidambaram', '2210080001', '1', '1', 'upload_files/candidate_tracker/57023525353_resume.pdf', NULL, '1', '2022-10-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Only basic knowledge in the Designing skills need to train in Development, Given task if he completes and get back let us try,Long run with txxampC doubts a lot  ', '2', '1', '', '1', '1', '', '2', '2022-10-10', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-08 09:10:56', 85, '2022-10-08 01:11:47', 0, NULL, 1),
(10522, '', '0', '8550835571', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 09:22:37', 0, NULL, 0, NULL, 1),
(10523, 'Thirugnanasambandam M', '13', '9787139854', '9884482465', 'thirugnanasambandammurugaiyan@gmail.com', '1999-02-05', 23, '2', '2', 'Murugaiyan S', 'Farmer', 15000.00, 1, 0.00, 3.50, 'Chennai', 'Villivakkam', '2210080003', '1', '1', 'upload_files/candidate_tracker/58334928694_DOC-20220805-WA0013..docx', NULL, '1', '2022-10-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preferred to go in Java Openings since getting delay in getting ready to go for PHP,not much open with TxxampC,long run doubts he has plan to go with  own business too,will not sustain and not suitable', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-08 09:59:12', 85, '2022-10-08 01:11:15', 0, NULL, 1),
(10524, 'Subash', '31', '9952672749', '', 'subashsv03@gmail.com', '1996-12-06', 25, '2', '2', 'Ayyanar', 'Kapildev', 200000.00, 1, 0.00, 20000.00, 'Villupuram', 'Chennai', '2210080004', '1', '1', 'upload_files/candidate_tracker/13578708497_subashsv.pdf', NULL, '1', '2022-10-08', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-08 10:32:32', 85, '2022-10-08 01:12:16', 0, NULL, 1),
(10525, 'Abubakkar A', '5', '8825921866', '9940856866', 'abu836@yahoo.in', '1994-06-23', 28, '3', '1', 'Sumaiya', 'Home Maker', 25000.00, 2, 25000.00, 25000.00, 'Krishnagiri, Tamilnadu', 'Bangalore, Karnataka', '2210080005', '', '2', 'upload_files/candidate_tracker/86498012148_cv abu.pdf', NULL, '1', '2022-10-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 10:39:06', 1, '2022-10-08 10:49:00', 0, NULL, 1),
(10526, 'Kavinilavan', '31', '6383252563', '8248287517', 'nkavinilavan22@gmail.com', '2001-01-22', 21, '2', '2', 'Nadimuthu', 'Farmer', 5000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2210080006', '1', '1', 'upload_files/candidate_tracker/13746515020_Kavinilavan - Resume - Fresher.pdf', NULL, '1', '2022-10-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have internship Exp in Java,his sister is also in Frontend earning around 45K in 1.5 yrs He need time to check with his family and confirm, but sustainability doubts a lot', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-08 10:41:16', 85, '2022-10-08 01:12:26', 0, NULL, 1),
(10527, 'Karan.A', '31', '9176142373', '8072445870', 'akaran3007@gmail.com', '1999-07-30', 23, '3', '2', 'Anandan.V', 'Press', 500000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2210080007', '', '1', 'upload_files/candidate_tracker/37387449360_KARAN RESUME 06-10-2022 (1).pdf', NULL, '1', '2022-10-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher did some projects in React,Had a course from GUVI spent around 60K and the salary Exp is min 20-25K not much comfort with TxxampC based on the salary if he comes back can give a try with our TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 10:42:39', 1, '2022-10-08 10:45:29', 0, NULL, 1),
(10528, '', '0', '8608159534', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 11:00:40', 0, NULL, 0, NULL, 1),
(10529, '', '0', '9014038522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 11:11:48', 0, NULL, 0, NULL, 1),
(10530, '', '0', '8618489279', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 11:13:29', 0, NULL, 0, NULL, 1),
(10531, 'arivazhagan p', '4', '7092397334', '', 'arivumech50@gmail.com', '1996-06-08', 26, '2', '2', 'pichapillai', 'farmer', 8000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2210080011', '2', '1', 'upload_files/candidate_tracker/74958544275_P.ArivuResume1 pdf.pdf', NULL, '1', '2022-10-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Sales Calls just looking for inbound and non voice Process,will not sustain and handle our pressure not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 11:45:21', 1, '2022-10-08 11:48:34', 0, NULL, 1),
(10532, 'Bhuvaneswari K', '6', '9840975940', '7094323864', 'bhuvaneswarikalidass@gmail.com', '1995-05-03', 27, '3', '1', 'Magesh S', 'Plumber', 25000.00, 1, 25000.00, 35000.00, '21 Annai Sathya Nagar 2 nd street Arumbakkam', '4A/7 Loganathan Nagar 1 St street Choolaimedu', '2210080012', '', '2', 'upload_files/candidate_tracker/97599818117_BHUVANESWARI.pdf', NULL, '1', '2022-10-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 11:58:32', 1, '2022-10-08 12:13:29', 0, NULL, 1),
(10533, 'V Bharathraj', '5', '8248428781', '', 'bharathrajv26@gmail.com', '2000-12-26', 21, '1', '2', 'N Viswanathan', 'Embroidery', 14000.00, 1, 0.00, 14000.00, 'Solaiamman Kovil street thiruvallur nagar', 'Solaiamman Kovil Street Thiruvallur Nagar', '2210080013', '', '1', 'upload_files/candidate_tracker/49175899894_bharath resume pdf 222 (1)-1.pdf', NULL, '1', '2022-10-08', 0, 'Job', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice Process no Communication', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 11:59:31', 1, '2022-10-08 12:15:56', 0, NULL, 1),
(10534, 'J. Naga Rupa', '11', '6304144809', '9019904462', 'jnrupa9@gmail.com', '1999-05-31', 23, '3', '2', 'Rama Kumar . J', 'Business', 40000.00, 1, 2.60, 2.80, 'Bazzar Street, Punganur', 'Sri Manjunatha pg, Kudlu Gate , Bangalore', '2210080014', '', '2', 'upload_files/candidate_tracker/38963658425_Naga Rupa . J.docx', NULL, '1', '2022-10-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 12:01:24', 1, '2022-10-08 12:08:43', 0, NULL, 1),
(10535, 'Gopinath settu', '4', '9080552212', '9043814711', 'gopinathsgs1996@gmail.com', '1996-02-03', 26, '4', '2', 'Settu', 'Driver', 22000.00, 1, 22000.00, 28000.00, 'No:420,23rd St, NSK nagar,ArumbakkamChennai-600106', 'No:420,23rd St, NSK Nagar,ArumbakkamChennai-600106', '2210080015', '', '2', 'upload_files/candidate_tracker/73968806052_RESUME Gopinath Settu.docx', NULL, '1', '2022-10-08', 0, '', '1', '14', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 12:02:11', 1, '2022-10-08 12:15:15', 0, NULL, 1),
(10536, 'Suresh kumar bp', '6', '7338778587', '9150858587', 'Hiphopsuresh2429@gmail.com', '1999-10-24', 22, '1', '2', 'Prem', 'Business', 30000.00, 0, 12000.00, 17000.00, '12/15 school road pearmbur Chennai 600011', 'Pearmbur', '2210080016', '', '2', 'upload_files/candidate_tracker/13307447753_BALAJI (1) (1).docx', NULL, '3', '2022-10-08', 0, 'No', '3', '59', '2022-10-17', 216000.00, '', '5', '1970-01-01', '1', 'Have Calling Exp In Sales Need To Check His Previous Exp Documents,5050 Profile Sustainability Doubts On This Profile,Need To Groom Them A Lot  Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-08 12:06:42', 60, '2022-10-13 05:57:03', 0, NULL, 1),
(10537, 'K.vimal', '6', '7200295505', '6380193380', 'Darkweb7401@gmail.com', '1999-12-27', 22, '1', '2', 'Ammulu', 'House wife', 20000.00, 1, 12000.00, 17000.00, 'Chennai', 'Chennai', '2210080017', '', '2', 'upload_files/candidate_tracker/48735093791_vimal3.pdf', NULL, '1', '2022-10-08', 0, '2210080017', '3', '59', '2022-10-17', 198000.00, '', '5', '1970-01-01', '2', 'selected for Thiyagu,internal reference,lond back candidate attended here and hot rejected by banu,we have processed again need to analyse and confirm in 7 days training alos the re was no proper documents of his previous Exp holds an IRDA certificate need to provide NOC or should close the certificate', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-08 12:08:03', 60, '2022-10-13 05:55:18', 0, NULL, 1),
(10538, '', '0', '9841189149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 01:28:41', 0, NULL, 0, NULL, 1),
(10539, 'PRAVEEN G', '6', '9789939697', '8111026311', 'g.praveensi123@gmail.com', '1999-08-22', 23, '1', '2', 'GAJENDRAN', 'IMRB', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2210080019', '', '1', 'upload_files/candidate_tracker/24275319107_1655104607002_Praveen resume (1).pdf', NULL, '1', '2022-10-08', 0, '2210080019', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sales Sustainability Doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-08 01:37:27', 60, '2022-10-08 02:59:28', 0, NULL, 1),
(10540, 'Ancilla A', '5', '9611720206', '', 'ancillaa99@gmail.com', '1999-04-06', 23, '2', '2', '-', '-', 1.00, 1, 0.00, 1.00, 'mysore', 'Mysore', '2210080020', '1', '1', 'upload_files/candidate_tracker/25477638939_Ancilla .pdf', NULL, '3', '2022-10-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-08 02:16:58', 1, '2022-10-08 02:24:45', 0, NULL, 1),
(10541, '', '0', '6369041060', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 02:26:36', 0, NULL, 0, NULL, 1),
(10542, '', '0', '9840612458', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 02:33:31', 0, NULL, 0, NULL, 1),
(10543, '', '0', '8825890244', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 05:30:43', 0, NULL, 0, NULL, 1),
(10544, '', '0', '7395952872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 09:04:46', 0, NULL, 0, NULL, 1),
(10545, 'Shiburaj V', '16', '9840826045', '', 'Shiburajnsb@gmail.com', '1995-07-19', 27, '2', '2', 'Janaki v', 'House wife', 25000.00, 2, 18000.00, 25000.00, 'Triplicane', 'Triplicane', '2210080025', '1', '2', 'upload_files/candidate_tracker/51675223590_Shiburaj CV.pdf', NULL, '1', '2022-10-12', 90, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication, Notice Period is 90 days,no sustainability in his previous exp looking for change only for the salary growth will not sustain and not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-08 10:18:30', 85, '2022-10-12 10:20:17', 0, NULL, 1),
(10546, 'Mohamed Mujahid', '5', '6383093514', '', 'mujahidbiker@gmail.com', '1999-08-06', 23, '4', '2', 'Sathick Batcha', 'Business', 25000.00, 2, 21000.00, 30000.00, 'Kumbakonam', 'Chennai', '2210090001', '', '2', 'upload_files/candidate_tracker/80277736082_MOHAMED MUJAHID.pdf', NULL, '1', '2022-10-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-09 05:52:02', 1, '2022-10-09 06:00:21', 0, NULL, 1),
(10547, 'Balaji.M', '16', '7010046906', '', 'balaji12394@gmail.com', '1994-03-12', 0, '6', '2', 'Mani.R', 'Private Sector', 30000.00, 1, 25000.00, 28000.00, '9/5 Erusappan street Mint', 'Chennai', '2210100001', '', '2', 'upload_files/candidate_tracker/63113238951_Resume(1).pdf', NULL, '1', '2023-11-28', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles holding several offers and looking for more', '3', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-10 07:09:27', 1, '2023-11-28 08:10:50', 0, NULL, 1),
(10548, 'Yaddala Arun Kumar Reddy', '4', '8050307603', '8884980764', 'arunreddy143sunny@gmail.com', '2000-05-16', 22, '3', '2', 'Y Ramachandra reddy', 'Farming', 10000.00, 1, 0.00, 17000.00, 'Kadiri', 'Marathalli', '2210100002', '', '1', 'upload_files/candidate_tracker/92551542525_ARUN.docx', NULL, '3', '2022-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-10 09:38:30', 1, '2022-10-10 09:41:53', 0, NULL, 1),
(10549, 'Alphy Joseph', '5', '7510689858', '', 'alphyjoseph737@gmail.com', '1998-04-10', 24, '2', '2', 'Joseph KM', 'Agriculture', 25000.00, 2, 25000.00, 30000.00, 'Bengaluru', 'Bengaluru', '2210100003', '1', '2', 'upload_files/candidate_tracker/52208533899_My resume _updated .pdf', NULL, '1', '2022-10-11', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is looking inside sales job salary expectaion 30k in hand he looking cab specility also', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-10 09:41:02', 96, '2022-10-12 10:01:30', 0, NULL, 1),
(10550, 'Sujitha', '31', '9345289718', '', 'sujisujitha135@gmail.com', '1998-08-10', 24, '2', '2', 'George', 'Fisherman', 15000.00, 1, 0.00, 15000.00, 'Kanyakumari', 'Chennai,saitapet', '2210100004', '1', '1', 'upload_files/candidate_tracker/16495482742_suji.pdf', NULL, '1', '2022-10-10', 0, '', '3', '59', '2022-10-11', 120000.00, '', '3', '2022-10-12', '2', '5K Stipend,3yrs SA,10-12K post internship,2nd round interviewed by Gokul, Need to be finalised for React or Node', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-10 10:46:41', 60, '2022-10-14 12:58:04', 0, NULL, 1),
(10551, 'Ramkumar', '31', '9092464431', '', 'civiler.kumar19@gmail.com', '1996-08-20', 26, '2', '2', 'Mahalakshmi', 'Engineer', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2210100005', '1', '1', 'upload_files/candidate_tracker/64609017113_RamkumarR_CV (2).pdf', NULL, '1', '2022-10-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-10 11:21:48', 96, '2022-10-10 01:27:26', 0, NULL, 1),
(10552, 'ramalingam', '5', '9789370619', '', 'riovicky67089@gmail.com', '2000-02-24', 22, '2', '2', 'ravi', 'sales executive', 40000.00, 1, 19000.00, 20000.00, 'villupuram', 'nungambakkam', '2210100006', '1', '2', 'upload_files/candidate_tracker/33174476183_resume 2022 pdf.pdf', NULL, '1', '2022-10-10', 0, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'worked 7 months with Justdial', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-10 11:22:41', 60, '2022-10-10 12:56:41', 0, NULL, 1),
(10553, 'Aswini', '4', '7904601399', '9789370619', 'Aswiniramesh02@gmail.com', '2001-02-20', 21, '2', '2', 'Ramesh', 'Farmer', 40000.00, 2, 25000.00, 25000.00, 'Tindivanama', 'Nungambakkam', '2210100007', '1', '2', 'upload_files/candidate_tracker/21743553151_Aswini Resume [final].pdf', NULL, '1', '2022-10-10', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Telecalling Worked in Justdial for 7 months,reasons for relieving was not clear,can give a try 5050 kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-10 11:23:30', 96, '2022-10-10 12:47:09', 0, NULL, 1),
(10554, 'Prasanth M', '4', '8300202415', '', 'prasanthm29gym@gmail.com', '2000-03-29', 22, '4', '2', 'Murali', 'Photographer', 20000.00, 2, 22.00, 22.00, '6/47A Nathamedu melalathur post Gudiyatham.', 'Kodambakam', '2210100008', '', '2', 'upload_files/candidate_tracker/87278724004_M.PRASANTH.pdf', NULL, '1', '2022-10-10', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-10 11:35:02', 1, '2022-10-10 11:42:20', 0, NULL, 1),
(10555, 'R. Hariharan', '4', '9342541552', '', 'harilonely66@gmail.com', '2001-07-24', 21, '4', '2', 'R. Devi', 'R. Devi', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2210100009', '', '1', 'upload_files/candidate_tracker/74963993900_HARI RESUME.pdf', NULL, '1', '2022-10-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-10 11:38:46', 1, '2022-10-10 11:52:22', 0, NULL, 1),
(10556, '', '0', '7598838746', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210100010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-10 11:41:01', 0, NULL, 0, NULL, 1),
(10557, 'RAMKUMAR.R', '13', '8111087792', '7708218103', 'ramkumarraja753@gmail.com', '1998-10-31', 23, '2', '2', 'RAJA.M', 'Fisherman', 15000.00, 3, 0.00, 15.00, 'Sirkali, Mayiladuthurai', 'Sirkali, Mayiladuthurai', '2210100011', '1', '1', 'upload_files/candidate_tracker/82841109996_RAMKUMAR_2021_BTECH(IT).pdf.pdf', NULL, '1', '2022-10-10', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher have 3 months Exp in PHP,Need to be trained a lot Need time to confirm his opportunity in our PHP,will check with Sathish and confirm his employment later', '2', '1', '', '1', '1', '', '2', '2022-10-14', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-10 12:05:19', 96, '2022-10-10 01:27:51', 0, NULL, 1),
(10558, 'Rajesh G', '4', '9003031825', '6383677583', 'rajeshrajeshg2@gmail.com', '2001-06-25', 21, '3', '2', 'Jayanthi', 'Student', 300000.00, 0, 0.00, 18000.00, 'Tiruvallur', 'Anna nagar', '2210100012', '', '1', 'upload_files/candidate_tracker/88221970422_Resume job .pdf', NULL, '1', '2022-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed with the candidate not ok with salary also not open for Field calls but salary Exp is high and pressure handling doubts', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-10 12:07:20', 60, '2022-10-10 02:52:42', 0, NULL, 1),
(10559, 'Satheesh s', '31', '9080861057', '', 'satheeshpsr41@gmail.com', '1999-05-28', 23, '3', '2', 'Sunder Raj', 'Construction site working', 40000.00, 1, 25000.00, 40000.00, '15/50c, colachel, kanyakumari district', 'Ram nagar, madipakkam, Chennai', '2210100013', '', '2', 'upload_files/candidate_tracker/60907542600_Satheesh\'s Resume (1).pdf', NULL, '1', '2022-10-10', 35, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT have exp as process Associate in HP his current salary is 25K Need time to give his confirmation on the TxxampC and the stipend if he comes back let us try.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-10 12:57:04', 1, '2022-10-10 02:25:55', 0, NULL, 1),
(10560, 'Dionysius Ivan Odell I', '4', '8939234218', '', 'ivandanny887@gmail.com', '1999-07-28', 23, '1', '2', 'Isaac Arulkumar .Y', 'DISTRICT HEALTH EDUCATOR', 50000.00, 2, 0.00, 14000.00, 'Chennai', 'Chennai', '2210100014', '', '1', 'upload_files/candidate_tracker/18562908977_Resume.docx', NULL, '1', '2022-10-10', 0, 'P1002', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-10 03:21:19', 1, '2022-10-10 03:28:45', 0, NULL, 1),
(10561, '', '0', '9514171357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210100015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-10 04:45:11', 0, NULL, 0, NULL, 1),
(10562, '', '0', '9789908493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210100016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-10 05:48:06', 0, NULL, 0, NULL, 1),
(10563, '', '0', '7448792633', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210100017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-10 05:48:18', 0, NULL, 0, NULL, 1),
(10564, '', '0', '9344937715', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210100018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-10 06:51:17', 0, NULL, 0, NULL, 1),
(10565, '', '0', '9688172524', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210110001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-11 09:21:41', 0, NULL, 0, NULL, 1),
(10566, 'vignesh', '31', '9384609073', '', 'Vigneesh.vic05@gmail.com', '2001-05-18', 21, '2', '2', 'elvizhi', 'house keeping', 9000.00, 1, 0.00, 23000.00, 'semmenjeri', 'kumara nagur', '2210110002', '1', '1', 'upload_files/candidate_tracker/70690772423_RESUME Vignesh .pdf', NULL, '1', '2022-10-11', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp as PC Builder,not much comfort in TxxampC need to learn a lot in basics of JS,if he comes back we can give a try ', '2', '1', '', '1', '1', '', '2', '2022-10-14', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 09:22:00', 85, '2022-10-11 03:49:24', 0, NULL, 1),
(10567, 'Lawnce Harrington', '14', '9787934735', '9486244690', 'harringtonlawnce@gmail.com', '2000-07-24', 22, '2', '2', 'Christdoss premkumar M', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Trichy', 'Trichy', '2210110003', '1', '1', 'upload_files/candidate_tracker/35405018076_Share_LAWENCE_RESUME_FINAL__1_.pdf', NULL, '1', '2022-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher ,Looking for High Salary and tier level companies have a plan to go abroad,got opportunity with high salary but not joined as he felt that as a less pay will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 09:22:14', 85, '2022-10-11 03:46:32', 0, NULL, 1),
(10568, 'SHATHISH V', '31', '9360996923', '8056236970', 'shathish3099@gmail.com', '1999-12-30', 22, '2', '2', 'VETRIVEL D', 'Retried', 15000.00, 1, 0.00, 10000.00, 'No.2, Thirumoorthy Nagar, Ernavoor,chennai-57', 'No.2, Thirumoorthy Nagar, Ernavoor , Chennai -57', '2210110004', '1', '1', 'upload_files/candidate_tracker/20277597855_Shathish - Resume.pdf', NULL, '1', '2022-10-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 09:22:17', 85, '2022-10-11 03:49:48', 0, NULL, 1),
(10569, '', '0', '7010453961', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210110005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-11 09:23:15', 0, NULL, 0, NULL, 1),
(10570, 'KEERTHIKANNAN D', '23', '9500962057', '', 'keerthikanan03@gmail.com', '2001-04-27', 21, '2', '2', 'Devendran', 'Sales Man', 120000.00, 0, 0.00, 15000.00, 'Pattukkottai', 'Chennai', '2210110006', '1', '1', 'upload_files/candidate_tracker/99606283259_keerthi resume.pdf', NULL, '1', '2022-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic Skills not open for txxampC will not sustain not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 09:32:09', 85, '2022-10-11 03:46:57', 0, NULL, 1),
(10571, 'Rahul Srinivasan', '31', '7338822084', '', 'rahulsrinivasan30@gmail.com', '2000-11-30', 21, '3', '2', 'A Srinivasan', 'Front End Developer', 30000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2210110007', '', '2', 'upload_files/candidate_tracker/2486208730_S-Rahul-Resume.pdf', NULL, '1', '2022-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-11 09:56:40', 1, '2022-10-11 09:59:31', 0, NULL, 1),
(10572, 'Arun P', '23', '9843292727', '', 'arunmessi54@gmail.com', '1998-04-05', 24, '2', '2', 'A.Pandi', 'Farmer', 125000.00, 2, 0.00, 15000.00, 'Manamadurai', 'Velachery', '2210110008', '1', '1', 'upload_files/candidate_tracker/71184571251_Arunpandi.pdf', NULL, '1', '2022-10-11', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher have exp in Credit Card Sales now looking for opportunites in IT Need to be trained if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-10-14', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 10:12:40', 85, '2022-10-11 03:47:49', 0, NULL, 1),
(10573, 'Parkavan', '31', '9080450116', '', 'ipark.avan@gmail.com', '1997-08-22', 25, '2', '2', 'Suriya Prakasam', 'React Developer', 25000.00, 1, 19500.00, 40000.00, 'Pallikaranai', 'Pallikaranai', '2210110009', '1', '2', 'upload_files/candidate_tracker/74491571912_Parkavan Resume (2).pdf', NULL, '1', '2022-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 1 yrs Exp in React Exp Min 25K Not open to work on Saturday have other commitments  Will not sustain in our roles not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 10:18:01', 85, '2022-10-11 03:45:54', 0, NULL, 1),
(10574, 'Arun R', '5', '8870707733', '', 'arunravichand19@gmail.com', '1998-07-19', 24, '2', '2', 'V Ravichandran', 'Working', 20000.00, 0, 20000.00, 40000.00, 'Chennai', 'Chennai', '2210110010', '1', '2', 'upload_files/candidate_tracker/97434794392_resume Arun R-converted.pdf', NULL, '1', '2022-10-11', 0, '', '3', '59', '1970-01-01', 297696.00, '', '2', '1970-01-01', '1', 'Have Exp In B2b Sales Communication Is Ok Fresh For Our Sales Can Be Trained Kindly Check And Let Me Know Your Inputs Sir - Selected for GK sir Team  - Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-11 10:27:04', 60, '2022-10-12 03:48:21', 0, NULL, 1),
(10575, 'Stephin', '13', '9597030522', '', 'stephinsr1998@gmail.com', '1998-11-18', 23, '2', '2', 'Stellus', 'Fisher mam', 20000.00, 1, 15000.00, 20000.00, 'Kanyakumari', 'Velachery', '2210110011', '1', '2', 'upload_files/candidate_tracker/58198913232_stephinresume.pdf', NULL, '1', '2022-10-11', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Using the existing code to do the task.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 11:14:43', 85, '2022-10-11 03:45:17', 0, NULL, 1),
(10576, 'Mahalakshmi', '5', '9677093022', '9710326964', 'maha19091995@gmail.com', '1995-09-19', 27, '2', '1', 'Husband', 'Bussiness', 30000.00, 2, 190000.00, 22000.00, 'Saidapet', 'Saidapet', '2210110012', '1', '2', 'upload_files/candidate_tracker/1375241151_B MAHALAKSHMI2022.docx', NULL, '3', '2022-10-11', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Telecalling Asked them to wait for 2nd round with banu but left without attending ', '5', '1', '', '1', '1', '', '2', '2022-10-14', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-11 11:37:39', 85, '2022-10-11 11:58:32', 0, NULL, 1),
(10577, 'Lavanya. T', '4', '8428391510', '6382544914', 'Lavanyathirupal@gmail.com', '1996-06-04', 26, '2', '1', 'Harish. S', 'Bilding Contracter', 20000.00, 0, 18000.00, 20000.00, 'Saidapet', 'Saidapet', '2210110013', '1', '2', 'upload_files/candidate_tracker/15087610310_Lavanya Resume. (NEW) doc(1).doc', NULL, '1', '2022-10-11', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp In Telecalling Asked Them To Wait For 2nd Round With Banu But Left Without Attending ', '1', '1', '', '1', '1', '', '2', '2022-10-14', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-11 11:37:48', 85, '2022-10-11 11:58:14', 0, NULL, 1),
(10578, 'prajeesh a', '6', '8072814977', '8608302018', 'prajua21@gmail.com', '2000-09-21', 22, '2', '2', 'appunni as', 'father', 10000.00, 1, 13750.00, 16000.00, 'velachery', 'velachery', '2210110014', '1', '2', 'upload_files/candidate_tracker/52621045983_Prajeesh', NULL, '1', '2022-10-11', 0, '', '3', '59', '2022-10-17', 199000.00, '', '5', '1970-01-01', '1', 'Have Exp In Calling Fresher For Our Domain,Can Give A Try Kindly Check And Let Me Know Your Inputs - selected for Syed Team in Staff ROle', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-11 11:53:59', 60, '2022-10-12 04:10:09', 0, NULL, 1),
(10579, 'B.Prashant Kumar', '5', '9345188372', '7603951284', 'rockprashant99@gmail.com', '1999-10-06', 23, '2', '2', 'Raju', 'Sub-inspector (ex)', 400000.00, 2, 17500.00, 20000.00, 'Avadi', 'Avadi', '2210110015', '1', '2', 'upload_files/candidate_tracker/29658342465_20960_prashant_resume.pdf', NULL, '1', '2022-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-11 01:23:16', 1, '2022-10-11 01:41:10', 0, NULL, 1),
(10580, 'Kokila K', '5', '7603951284', '9345188372', 'kokilakumar2010@gmail.com', '2001-12-06', 20, '2', '2', 'M.Kumaraguru', 'Own business', 40000.00, 0, 16000.00, 20000.00, 'Chennai', 'Chennai', '2210110016', '1', '2', 'upload_files/candidate_tracker/85636049078_KOKILA RESUME.pdf', NULL, '1', '2022-10-11', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'have Exp in Calling Can be trained ,open for B2B kindly check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-11 01:24:08', 1, '2022-10-11 01:35:16', 0, NULL, 1),
(10581, 'Chokkam varun Teja', '5', '9346634311', '8519931233', 'varunroyal547@gmail.com', '2000-06-15', 22, '1', '2', 'Harsha', 'Employe', 32000.00, 1, 17800.00, 25000.00, 'Mydukur kadapa dist andhra pradesh', 'Banglore Btm laylout', '2210110017', '', '2', 'upload_files/candidate_tracker/18955026060_VARUN 11-1.docx', NULL, '1', '2022-10-11', 0, 'P1322', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-11 04:08:41', 1, '2022-10-11 04:15:12', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10582, 'Sriram R', '4', '7397347946', '9789088154', 'sriram73973@gmail.com', '2001-06-18', 21, '2', '2', 'Hemalatha R', 'Home Maket', 17000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2210110018', '1', '1', 'upload_files/candidate_tracker/20397721957_1913141096056- R.Sriram-Resume (1) (1).docx', NULL, '1', '2022-10-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-11 05:53:33', 85, '2022-10-12 10:19:54', 0, NULL, 1),
(10583, 'Sathish.S', '25', '8270125262', '', 'manisathish4921@gmail.com', '1999-04-02', 23, '3', '2', 'Sivasankar.V', 'Customer relationship manager', 20000.00, 2, 15000.00, 20000.00, 'Kizhkuppam,Tiruvannamalai.606705', 'Thirumazhisai,Chennai.600124', '2210110019', '', '2', 'upload_files/candidate_tracker/69163861703_Sathishresume.pdf', NULL, '1', '2022-10-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-10-11 06:34:46', 1, '2022-10-11 07:08:52', 0, NULL, 1),
(10584, 'Jothika.G', '28', '6381521118', '', 'jothikag4@gmail.com', '2000-12-04', 21, '3', '2', 'Sujatha', 'House wife', 100000.00, 1, 11000.00, 18000.00, 'Chennai', 'Vanagaram, chennai', '2210110020', '', '2', 'upload_files/candidate_tracker/21847844170_JOTHIKA.G RESUME.docx', NULL, '3', '2022-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-11 07:56:45', 1, '2022-10-11 08:58:37', 0, NULL, 1),
(10585, 'Raghavendra', '23', '6374179478', '', 'raghavrjkr@gmail.com', '2001-11-11', 20, '2', '2', 'Parents:Ravi chandran, Prema jothi laksmi', 'Buisness', 40000.00, 1, 0.00, 20000.00, 'Rajapalayam', 'Chennai', '2210120001', '1', '1', 'upload_files/candidate_tracker/67463810855_Resume pdf.pdf', NULL, '1', '2022-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher ,Need to train a lot only basic knowledge in Figma,XD.Not much comfort in TxxampC need to travel for along not able to relocate', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-12 09:34:38', 85, '2022-10-12 02:34:48', 0, NULL, 1),
(10586, 'Faisal Ali Khan', '31', '9443491625', '7010480348', 'ahamedali9842060423@gmail.com', '2000-05-02', 22, '2', '2', 'Ahamed Ali', 'Farmer', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2210120002', '1', '1', 'upload_files/candidate_tracker/99650543566_KhanCv.pdf', NULL, '1', '2022-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills in Javascript,Looking much for Java openings not open for TxxampC will not sustain not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-12 09:35:25', 85, '2022-10-12 02:35:40', 0, NULL, 1),
(10587, 'Sabari Anand.S', '4', '9080927629', '9865689922', 'sabarianand2782@gmail.com', '2000-01-13', 22, '1', '2', 'Siva.k', 'Two wheeler machnical', 20000.00, 1, 0.00, 12.00, 'Erode', 'Erode', '2210120003', '', '1', 'upload_files/candidate_tracker/89583693471_sabari anand.s Resume (2).pdf', NULL, '1', '2022-10-12', 0, 'CA131', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-12 09:42:11', 1, '2022-10-12 09:49:05', 0, NULL, 1),
(10588, 'Selva Ganesh .v', '16', '7358475473', '9380949471', 'selvad22@gmail.com', '1997-06-29', 25, '2', '2', 'Vadivel murugan', 'Department store', 50000.00, 1, 15000.00, 22000.00, '19/17 South boag road .t.nagar ch.17', '19/17 South Boag Road .T.Nagar Ch.17', '2210120004', '1', '2', 'upload_files/candidate_tracker/56979355817_Selva Resume.docx', NULL, '1', '2022-10-12', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication ,Average only,Focus only on the salary growth,will not sustain in our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-12 10:09:08', 85, '2022-10-12 10:52:21', 0, NULL, 1),
(10589, '', '0', '7550155274', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210120005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-12 11:13:28', 0, NULL, 0, NULL, 1),
(10590, 'Muthu', '27', '7708813728', '9751614890', 'muthuram1501010@gmail.com', '1996-07-29', 26, '2', '2', 'Velmurugan', 'Farmer', 20000.00, 2, 0.00, 2.50, 'Ulundurpet', 'Chennai', '2210120006', '1', '1', 'upload_files/candidate_tracker/81721906567_Muthu Resume.pdf', NULL, '1', '2022-10-12', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT have Exp in Sales,have a basic knowledge in JS,Need to train a lot if available can have a final round on saturday with gokul and check', '2', '1', '', '1', '1', '', '2', '2022-10-15', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-12 11:50:05', 85, '2022-10-12 02:34:37', 0, NULL, 1),
(10591, 'Manivannan', '31', '6374371082', '8870221104', 'Manivannanparimel@gmail.com', '1997-06-05', 25, '2', '2', 'Parimelazhagan', 'Former', 100000.00, 2, 0.00, 10.00, 'Ariyalur', 'Velachery', '2210120007', '1', '1', 'upload_files/candidate_tracker/45744939622_mani_vannanan_resume.docx', NULL, '1', '2022-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in react support Exp 6 months left due to overtime work not open for SA, Not open for our Salary too,got another opportunity but didnt join due to SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-12 12:09:42', 85, '2022-10-12 02:36:04', 0, NULL, 1),
(10592, 'Johnson', '31', '9489587024', '8870221104', 'johnsontherasa24@gmail.com', '1999-06-15', 23, '2', '2', 'Stalin s', 'Labour', 10000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Vellachery', '2210120008', '1', '1', 'upload_files/candidate_tracker/76557561819_JOHNSON RESUME (AutoRecovered) (1)-converted.pdf', NULL, '2', '2022-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp In React Support Exp 6 Months Left Due To Overtime Work Not Open For SA, Not Open For Our Salary Too', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-12 12:11:00', 85, '2022-10-12 02:35:02', 0, NULL, 1),
(10593, '', '0', '7603944649', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210120009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-12 12:20:13', 0, NULL, 0, NULL, 1),
(10594, 'Surya Narayana Rao', '13', '7550154998', '8056216181', 'suryashinde2510@gmail.com', '1999-10-25', 22, '2', '2', 'S. Ravichandran', 'Private sector', 300000.00, 0, 0.00, 350000.00, 'Tiruvallur', 'Tiruvallur', '2210120010', '1', '1', 'upload_files/candidate_tracker/47308222100_Surya Narayana Rao resume.pdf', NULL, '1', '2022-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'up and down 40 kms,,Fresher have only Internship but in different skills not open for SA,Not suitable will not sustain in our role for a long', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-12 12:30:43', 85, '2022-10-12 02:35:16', 0, NULL, 1),
(10595, '', '0', '8508833227', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210120011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-12 12:39:18', 0, NULL, 0, NULL, 1),
(10596, '', '0', '6385666209', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210120012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-12 12:39:38', 0, NULL, 0, NULL, 1),
(10597, 'Deepak.A', '20', '8072708887', '6382145656', 'arun@cafsindia.com', '1993-02-24', 29, '3', '1', 'Gayathri', 'Accounted', 13000.00, 2, 17500.00, 21000.00, 'No40 thandavan street pursaiwalkam Chennai600007', 'No40 Thandavan Street PursaiwalkamChennai- 600007', '2210120013', '', '2', 'upload_files/candidate_tracker/38273980113_Resume_February 2022.pdf', NULL, '1', '2022-10-12', 0, '', '3', '59', '2022-10-26', 228000.00, '', '3', '2022-11-14', '1', 'Selected for B2B Consultant Role', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'deepak.arulmani007@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-12 01:04:22', 60, '2022-10-22 10:48:23', 0, NULL, 1),
(10598, 'S. Pavithra', '4', '8073207694', '7200751719', 'pavishasekar7@gmail.com', '1999-09-11', 23, '2', '2', 'P.Sekaran', 'Auto Driver', 18000.00, 1, 15.00, 18.00, 'Saidapet', 'Saidapet', '2210120014', '1', '2', 'upload_files/candidate_tracker/42649925901_S PAVITHRA - Resume-1.pdf', NULL, '1', '2022-10-13', 0, '', '3', '59', '2022-10-17', 204000.00, '', NULL, '2024-06-25', '2', 'Selected for B2B staff Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-12 03:48:59', 60, '2022-10-13 05:20:07', 0, NULL, 1),
(10599, 'Morrison Fernando', '4', '9941914017', '', 'mjfernando0194@gmail.com', '1994-05-11', 28, '4', '1', 'Vaishali', 'House wife', 23125.00, 1, 23125.00, 30000.00, 'Chennai', 'Chennai', '2210120015', '', '2', 'upload_files/candidate_tracker/22787836225_Morrison resume new.pdf', NULL, '1', '2022-10-14', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-12 04:13:24', 1, '2022-10-12 04:21:45', 0, NULL, 1),
(10600, '', '0', '9789250855', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210130001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-13 08:58:40', 0, NULL, 0, NULL, 1),
(10601, 'illakiya s', '4', '9176415744', '', 'ilakiyaselvam22@gmail.com', '2001-06-19', 21, '2', '2', 'selvam', 'auto driver', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210130002', '2', '1', 'upload_files/candidate_tracker/97122907529_Share', NULL, '1', '2022-10-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ready to speak need to open a lot will not sustain and handle the work pressure not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-13 09:46:34', 60, '2022-10-15 01:11:02', 0, NULL, 1),
(10602, 'Kamaleshkan', '4', '9384657807', '9384657808', 'KAMALESHKAN025@GMAIL.COM', '1998-02-25', 24, '2', '2', 'R.Kannan', 'Land broker', 30000.00, 2, 0.00, 20000.00, 'Maddampakkam', 'Maddampakkam', '2210130003', '1', '2', 'upload_files/candidate_tracker/35711537864_CV_202210081629277.pdf', NULL, '1', '2022-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our Sales,Salary exp is very high and the distance is too long will not sustain in our roles not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-13 11:39:41', 85, '2022-10-13 11:53:15', 0, NULL, 1),
(10603, 'G. Malini', '5', '7397249363', '9884738825', 'malinidevi2297@gmail.com', '1997-11-22', 24, '2', '2', 'G. Devi', 'House wife', 12000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2210130004', '1', '2', 'upload_files/candidate_tracker/19892858417_Malini resume.pdf', NULL, '1', '2022-10-13', 0, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication is Good Have Exp in Telecalling But too long Distance open to travel kindly check for ESalea and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-13 11:56:13', 60, '2022-10-13 01:12:25', 0, NULL, 1),
(10604, 'EBENEZER .Y', '4', '9363225628', '9025370570', 'abenezy13@gmail.com', '1998-07-13', 24, '3', '2', 'YESU DASS', 'Auto driver', 20000.00, 2, 16000.00, 18000.00, 'Mugappair west', 'Mugappair west', '2210130005', '', '2', 'upload_files/candidate_tracker/91067801430_CV_202210100158437.pdf', NULL, '3', '2022-10-13', 0, '', '1', '14', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-13 03:02:13', 1, '2022-10-13 03:07:41', 0, NULL, 1),
(10605, 'thamil arasan', '23', '6381210426', '', 'thamiladhanush@gmail.com', '2003-05-19', 19, '2', '2', 'sundharam', 'tiles contract', 25000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2210140001', '1', '1', 'upload_files/candidate_tracker/90736948174_DocScanner 14-Oct-2022 11-18 am.pdf', NULL, '1', '2022-10-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills too long distance not much active will not sustain not suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-10-14 10:58:28', 1, '2022-10-14 11:26:33', 0, NULL, 1),
(10606, 'Sathis Kumar', '4', '8072984886', '', 'sathiskumarsk1998@gmail.com', '1998-01-05', 24, '3', '2', 'Dharanisekaran', 'Shopkeeper', 30000.00, 1, 110000.00, 110000.00, 'Thanjavur', 'Thanjavur', '2210140002', '', '2', 'upload_files/candidate_tracker/42403215075_Resume.pdf', NULL, '1', '2022-10-14', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-14 11:04:47', 1, '2022-10-14 11:12:09', 0, NULL, 1),
(10607, 'Deepika Saravanan', '4', '7708640183', '9343363520', 'deepibee@gmail.com', '1994-07-27', 28, '2', '1', 'Ramajayam K', 'Relationship manager', 25.00, 1, 20000.00, 23000.00, 'Denkanikottai, krishnagiri', 'Kelambakkm, chennai', '2210140003', '1', '2', 'upload_files/candidate_tracker/18243820054_Resume (1).pdf', NULL, '1', '2022-10-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot Career Gap too long and need to relocate husband in HDB financial,will not handle the pressure not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-14 11:40:26', 60, '2022-10-14 12:32:13', 0, NULL, 1),
(10608, 'R santhosh', '5', '9360502448', '9094571162', 'Santhoshadhi1305@gmail.com', '1999-05-13', 23, '2', '2', 'A Joyssagayarani', '10th', 20000.00, 3, 18500.00, 20000.00, 'Tiruvallur', 'Tiruvallur', '2210140004', '1', '2', 'upload_files/candidate_tracker/2235002335_santhosh-1.pdf', NULL, '1', '2022-10-14', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-14 01:05:00', 60, '2022-10-14 04:25:11', 0, NULL, 1),
(10609, 'mamtha', '5', '8925483214', '', 'mamthajoshe@gmail.com', '1999-07-18', 23, '2', '2', 'joseph', 'sales', 30000.00, 1, 13500.00, 15000.00, 'chennai', 'chennai', '2210140005', '1', '2', 'upload_files/candidate_tracker/12788863579_DOC-20220903-WA0003. (2).docx', NULL, '1', '2022-10-14', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in HDB Recovery, Need to see the distance but she worked somewhere near our location ready to travel 5050 sustainability kindly check and let me know your interest', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-14 01:31:03', 1, '2022-10-14 01:34:12', 0, NULL, 1),
(10610, 'karthika', '5', '6380369664', '', 'karthigakarthiga313@gmail.com', '1999-11-22', 22, '2', '2', 'gangatharan', 'welder', 20000.00, 1, 10500.00, 15000.00, 'chennai', 'chennai', '2210140006', '1', '2', 'upload_files/candidate_tracker/79644233214_KARTHIGA RESUME.pdf', NULL, '1', '2022-10-14', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Have Exp In HDB Recovery, Need To See The Distance But She Worked Somewhere Near Our Location Ready To Travel 5050 Sustainability Kindly Check And Let Me Know Your Interest', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-14 01:37:01', 1, '2022-10-14 01:39:38', 0, NULL, 1),
(10611, 'Thilagavathy', '5', '6380670412', '7358448001', 'thilagavathysara1804@gmail.com', '2000-09-04', 22, '2', '1', 'Saravanan', 'Sales executive', 40000.00, 1, 15000.00, 20000.00, 'Ambattur', 'Ambattur', '2210140007', '1', '2', 'upload_files/candidate_tracker/50284310047_thilagavathy resume 2022.docx', NULL, '1', '2022-10-15', 15, '', '3', '59', '2022-11-01', 246000.00, '', '5', '1970-01-01', '2', 'Selected for Karthika Team - Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-14 04:04:25', 60, '2022-10-19 01:30:39', 0, NULL, 1),
(10612, '', '0', '9789839641', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-14 07:26:21', 0, NULL, 0, NULL, 1),
(10613, 'Kuraloviya A', '23', '7358370699', '9952730339', 'Kuraloviya07@gmail.com', '1999-07-12', 23, '2', '2', 'Deivayanai', 'Scenario associate in wipro', 15000.00, 3, 0.00, 2.00, 'Rampuram chennai', 'Ramapuram chennai', '2210150001', '1', '1', 'upload_files/candidate_tracker/10727763293_Resume 3.pdf', NULL, '1', '2022-10-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT ,no strong in the skills not much comfort in TxxampC will not sustain not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-15 09:56:55', 85, '2022-10-15 10:35:52', 0, NULL, 1),
(10614, 'Kavipriya. D', '13', '9176856122', '9150615620', 'kavipriya68187@gmail.com', '2000-09-03', 22, '2', '2', 'Dhasarathan. N', 'Farmer', 300000.00, 1, 15000.00, 20000.00, 'No. 12,Main Road, sevalapurai village, Gingee', 'No. 2/666, mogappair west, chennai-35', '2210150002', '1', '2', 'upload_files/candidate_tracker/83516687068_Resume- Kavi.pdf', NULL, '1', '2022-10-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas in PHP,only into support and earning 15K Now ,looking for more salary and not open for TxxampC will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-15 10:34:59', 85, '2022-10-15 11:33:16', 0, NULL, 1),
(10615, 'M Ramcharan', '26', '9840786764', '', 'm.ramcharanashok@gmail.com', '1994-09-28', 28, '2', '2', 'M Ashok', 'Self employed', 70000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2210150003', '1', '2', 'upload_files/candidate_tracker/50496422922_RamcharanM.pdf', NULL, '1', '2022-10-15', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Earlier attended and not joined due to salary,now again looking for the salary hike in an year not much comfort in TxxampC not suitable', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-15 10:35:30', 85, '2022-10-15 11:32:52', 0, NULL, 1),
(10616, 'Magalakshmi', '31', '7010035701', '9894863417', 'maganeelakandan7@gmail.com', '1999-06-18', 23, '2', '1', 'Arun Ganesh', 'Warehouse', 35.00, 2, 0.00, 3.50, 'Chennai', 'Chennai', '2210150004', '1', '1', 'upload_files/candidate_tracker/60504939021_MAGALAKSHMI NEELAKANDAN-Resume-2.pdf', NULL, '1', '2022-10-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in React for 6 months Intern Stipend is 15K  she may get the offer in the same company for 3.5 LPA,Just Looking fr a change,no much strong in skills married will not sustain and not open for TxxampC', '2', '1', '', '4', '6', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-15 11:05:59', 85, '2022-10-15 11:33:05', 0, NULL, 1),
(10617, 'Ramesh T', '5', '9500022651', '6374408583', 'rishramesh007@gmail.com', '1998-12-21', 23, '2', '2', 'Sagayarani', 'Homemaker', 25000.00, 0, 25000.00, 29000.00, 'No.9/45, West Aarasamaram Street,Aminjikari,Ch-29', 'No. 9/45, west aarasamaram Street,aminjikari,Ch-29', '2210150005', '1', '2', 'upload_files/candidate_tracker/47515689598_CamScanner 09-08-2021 18.47.pdf', NULL, '1', '2022-10-15', 15, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'ok', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-15 11:08:19', 85, '2022-10-15 11:32:37', 0, NULL, 1),
(10618, 'Balaguru', '4', '9952184506', '9092684506', 'gurubalaguru1997@gmail.com', '1997-09-21', 25, '2', '2', 'MARIAPPAN', 'Farmer', 15000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2210150006', '1', '1', 'upload_files/candidate_tracker/73819974882_BALAGURU', NULL, '1', '2022-10-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-15 02:55:36', 85, '2022-10-18 10:11:07', 0, NULL, 1),
(10619, '', '0', '7397496103', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210150007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-15 07:26:59', 0, NULL, 0, NULL, 1),
(10620, 'Hari Babu P', '4', '8367714980', '', 'hariroyal836@gmail.com', '2007-10-17', 0, '2', '2', 'Jayapal P', 'Farmer', 25000.00, 0, 0.00, 19000.00, 'Chittoor', 'Banglore', '2210170001', '1', '1', 'upload_files/candidate_tracker/19595937420_Hari_Resume_PDF.pdf', NULL, '1', '2022-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-17 09:20:30', 85, '2022-10-17 10:01:00', 0, NULL, 1),
(10621, 'Arun kasi', '5', '9176283803', '', 'Arun.Miracal@Gmail.Com', '1993-02-01', 29, '1', '2', 'Kasi L', 'Plumber', 360000.00, 2, 3600000.00, 4500000.00, 'Chennai', 'Chennai', '2210170002', '', '2', 'upload_files/candidate_tracker/52061226678_Arun Kasi Resume (2).pdf', NULL, '1', '2022-10-17', 30, 'P1377', '3', '59', '2022-11-07', 400000.00, '', '4', '2023-02-04', '1', 'Selected for Sarath Team - Staff Role', '5', '1', '4', '1', '1', '1', '2', '1970-01-01', '2', '1', 'arun.miracal@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-17 11:39:27', 60, '2022-11-01 10:22:22', 0, NULL, 1),
(10622, 'Satish Aravindan. A', '16', '8939630443', '7010060397', 'satishchakko001@gmail.com', '1997-12-04', 24, '2', '2', 'Aravind', 'Retried', 15000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2210170003', '1', '1', 'upload_files/candidate_tracker/45948065224_SATHISH.pdf', NULL, '1', '2022-10-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication too long distance  not open for Sales profile no ideas in MIS not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-17 12:14:24', 85, '2022-10-17 06:04:36', 0, NULL, 1),
(10623, 'arifa banu', '31', '9342982945', '7708443084', 'arifabanu72@gmail.com', '1999-04-28', 23, '2', '2', 'noor mohammed a g', 'business', 100000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2210170004', '1', '1', 'upload_files/candidate_tracker/90422623225_Arifa Banu Resume.pdf', NULL, '1', '2022-10-18', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Having basic skills not much ok with Stipend pay exp some thing more 2nd Interviewed by manikandan xxamp 3rd round by Kavya,given time to her if she is ok with the TxxampC will come for final round on Saturday', '2', '1', '', '1', '1', '', '2', '2022-10-22', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-17 12:28:06', 85, '2022-10-18 10:11:24', 0, NULL, 1),
(10624, 'T janani', '16', '9841562728', '', 'Jananikaviya2499@gmail.com', '1999-08-24', 23, '2', '2', 'Thiruvalluvan', 'Auto driver', 10000.00, 4, 0.00, 15000.00, 'Chennai', 'Chennai', '2210170005', '1', '1', 'upload_files/candidate_tracker/82046268824_1663242572857_RESUME JANU.docx', NULL, '1', '2022-10-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication no sustainability in the previous exp not open for TxxampC Not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-17 01:02:03', 85, '2022-10-17 06:04:58', 0, NULL, 1),
(10625, 'Vishwanathan', '16', '7358403422', '', 'vishwaa810@gmail.com', '2001-10-08', 21, '2', '2', 'S D SANKAR', 'Shop owner', 30000.00, 0, 25000.00, 25000.00, '3/5, Chella pillayar koil 1st , Royapettah, Ch- 14', 'Same as permanent address', '2210170006', '1', '2', 'upload_files/candidate_tracker/5748822451_Resume.pdf', NULL, '1', '2022-10-17', 0, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communicaiton is Good Fresher for MIS,Sustainability doubts in our role kindly check and let me know your interest,i have spoken for both MIS xxamp Technical Support', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-17 01:24:22', 85, '2022-10-17 02:26:31', 0, NULL, 1),
(10626, '', '0', '8110024655', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210170007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-17 03:08:20', 0, NULL, 0, NULL, 1),
(10627, 'kingsle Richard R', '31', '8825997385', '8508786856', 'iam.kingsleyrichard@gmail.com', '1997-08-01', 25, '2', '2', 'R. Rajan babu', 'teacher', 27000.00, 0, 10000.00, 20000.00, 'chennai', 'thiruvanmiyur', '2210180001', '1', '2', 'upload_files/candidate_tracker/15990496610_Kingsley-Richard-CV-React-1.pdf', NULL, '1', '2022-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-18 09:37:38', 85, '2022-10-18 11:33:59', 0, NULL, 1),
(10628, 'dhanasekar', '4', '7539981204', '', 'dhanasekar012723@gmail.com', '2002-07-01', 20, '2', '2', 'janaikiraman', 'sales person', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210180002', '2', '1', 'upload_files/candidate_tracker/34160838635_new resume (1).pdf', NULL, '1', '2022-10-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-18 10:00:59', 1, '2022-10-18 10:03:52', 0, NULL, 1),
(10629, 'dinakaran g', '4', '9087062763', '', 'dkdkroman2424@gmail.com', '2000-10-11', 22, '2', '2', 'gopinath d', 'business', 12000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210180003', '2', '1', 'upload_files/candidate_tracker/80853760339_a2ef6782-3bbd-4466-a09f-8f194290dd53.pdf', NULL, '1', '2022-10-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-18 10:04:57', 1, '2022-10-18 10:06:42', 0, NULL, 1),
(10630, 'naveen k', '5', '9944332353', '', 'nvnrjofficial@gmail.com', '1997-06-30', 25, '2', '2', 'kailasam', 'tneb', 20000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2210180004', '2', '1', 'upload_files/candidate_tracker/12339975307_Resume 0000.docx', NULL, '1', '2022-10-18', 0, '', '3', '59', '2022-11-14', 231000.00, '', '2', '2022-11-15', '1', 'Selected for MAnikandan team with PF/PT', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-18 10:07:32', 60, '2022-11-10 01:22:43', 0, NULL, 1),
(10631, 'riyajudeen k', '6', '7402073663', '', 'Riyajudeenecejks05@Gmail.Com', '1998-05-20', 24, '2', '2', 'kaja hussain', 'cooli', 12000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2210180005', '2', '1', 'upload_files/candidate_tracker/1327773895_RIYAJUDEEN resume .pdf', NULL, '1', '2022-10-18', 0, '', '3', '59', '2022-10-27', 185000.00, '', '4', '2023-02-09', '2', 'Selected for Syed Team in staff Role', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', 'riyajudeenecejks05@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-18 10:11:43', 60, '2022-10-27 12:27:58', 0, NULL, 1),
(10632, 'DM prakash', '11', '7569233766', '', 'dmprakash1993@gmail.com', '1993-05-15', 29, '2', '1', 'Bhargavi', 'Volntree', 13000.00, 3, 0.00, 16000.00, 'Nagari', 'Thirumulavoil', '2210180006', '1', '1', 'upload_files/candidate_tracker/52429063210_prakash resume 17-08-2022.pdf', NULL, '1', '2022-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication Working in HDB Sales but not interested towards the same, not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-18 10:36:24', 60, '2022-10-18 11:34:18', 0, NULL, 1),
(10633, 'Anand.k', '4', '9600172881', '', 'anandkarunanidhi2906@gmail.xom', '2000-06-29', 22, '2', '2', 'R.Karunanidhi', 'Driver', 17000.00, 4, 15000.00, 20000.00, 'Saidapet', 'Saidapet', '2210180007', '1', '2', 'upload_files/candidate_tracker/30926749839_Anand resume.pdf', NULL, '1', '2022-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in Sales and Recovery process too already he has exp in receovery but not open to go in the same will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-18 10:51:25', 85, '2022-10-18 11:20:05', 0, NULL, 1),
(10634, 'Gokul Doss', '4', '8095135842', '', 'gokuldoss.777@gmail.com', '1989-02-28', 33, '4', '1', 'Sudha K', 'Salaried', 45000.00, 1, 35000.00, 40000.00, 'Chennai', 'Bangalore', '2210180008', '', '2', 'upload_files/candidate_tracker/63863145382_Gokul-Resume(1).pdf', NULL, '1', '2022-10-18', 10, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'have 11 yrs exp in ERP Sales new to our domain,need to check with gokul and decide the profile', '1', '2', '0', '1', '3', '0', '2', '2022-10-22', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-18 11:01:18', 1, '2022-10-18 11:05:32', 0, NULL, 1),
(10635, 'Yoganandhan.A', '4', '6380871916', '', 'ayogaanandhan@gmail.com', '2007-10-18', 0, '3', '2', 'Anandhan.A', 'Carpenter', 11500.00, 1, 0.00, 18000.00, 'Perambur,chennai', 'Chennai', '2210180009', '', '1', 'upload_files/candidate_tracker/80444439475_Yoganandhan.pdf', NULL, '1', '2022-10-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate didnt come back with his confirmation', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-18 12:08:52', 1, '2022-10-18 12:13:25', 0, NULL, 1),
(10636, 'Mohamad tharic', '4', '6384259506', '', 'mohamadtharic5@gmail.com', '2000-10-14', 22, '3', '2', 'Rahamathullah', 'Chef', 30000.00, 3, 0.00, 18000.00, 'Arakandanallur', 'Madhuravoyal', '2210180010', '', '1', 'upload_files/candidate_tracker/30537606717_mdtharic...Cv Doc.pdf', NULL, '1', '2022-10-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-18 03:57:04', 1, '2022-10-18 04:06:28', 0, NULL, 1),
(10637, 'S ABARNA', '5', '7639216474', '', 'abarna2628@gmail.com', '1999-02-27', 23, '2', '2', 'Saravanan', 'Farmers', 10000.00, 2, 16000.00, 20000.00, 'Villupuram', 'Saidapet', '2210180011', '1', '2', 'upload_files/candidate_tracker/35330518104_ABRANA.pdf', NULL, '1', '2022-10-19', 10, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Telecalling and retail sales in GRT 5050 profile Salary exp was high, kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-18 07:10:54', 85, '2022-10-19 10:37:24', 0, NULL, 1),
(10638, '', '0', '9578911352', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210180012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-18 07:11:13', 0, NULL, 0, NULL, 1),
(10639, 'Vijayan', '23', '6383907565', '', 'mvm6383@gmail.com', '2001-03-13', 21, '4', '2', 'Murugaiyan', 'Farmer', 10000.00, 0, 0.00, 15000.00, '1-15 mela Sethi street ,seruvamani ,610205', 'Tripilicane chennai', '2210180013', '', '1', 'upload_files/candidate_tracker/87331259046_resume new .pdf', NULL, '3', '2022-11-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-18 08:08:30', 1, '2022-10-18 11:21:49', 0, NULL, 1),
(10640, 'Tharanitha S', '3', '6380968028', '9361156628', 'tharanisengodan2002@gmail.com', '2002-08-25', 20, '1', '2', 'Sengodan. C', 'Driver', 10000.00, 1, 0.00, 12000.00, 'Namakkal', 'Namakkal', '2210190001', '', '1', 'upload_files/candidate_tracker/17167107420_tharaniResume.pdf', NULL, '2', '2022-10-19', 0, 'No', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-19 11:43:57', 1, '2022-10-19 11:49:59', 0, NULL, 1),
(10641, 'Varadhammal', '4', '7338988229', '9176980941', 'varadhammalr6044@gmail.com', '1999-03-02', 23, '2', '2', 'Parent', 'Senior telecaller', 70000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2210190002', '1', '2', 'upload_files/candidate_tracker/48704843481_CV_2022090212043157.pdf', NULL, '1', '2022-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long Distance 74kms up and down will not sustain and not suitable ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-19 11:53:02', 85, '2022-10-19 12:27:40', 0, NULL, 1),
(10642, 'E.Easwari', '4', '8608872737', '9790830771', 'easu296@gmail.com', '2000-06-29', 22, '2', '2', 'E.janaki', 'Koli', 15000.00, 2, 12000.00, 15000.00, 'Chrompet', 'Chennai', '2210190003', '1', '2', 'upload_files/candidate_tracker/66469174187_Adobe Scan Sep 02, 2022.pdf', NULL, '1', '2022-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not comfort to get back into sales calls,looking much for non  voice for time being looking for Voice will not sustian and she is very clear that she will move to non voice if she get any', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-19 11:54:05', 85, '2022-10-19 12:27:50', 0, NULL, 1),
(10643, 'Swetha', '4', '9884722273', '', 'Swetharaja021@gmail.com', '1994-05-13', 28, '3', '1', 'Raja', 'Driver', 13000.00, 1, 0.00, 15000.00, 'Teynapet', 'Teynapet', '2210190004', '', '1', 'upload_files/candidate_tracker/32106001796_swetha.pdf.pdf', NULL, '1', '2022-10-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '12th Dropout long career gap last month attended and got rejected,she got opportunity in Mount road and left due to timing and distance not suitable will not sustain', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-19 12:07:24', 1, '2022-10-19 12:23:46', 0, NULL, 1),
(10644, 'Vignesh Kumar', '20', '9629828135', '8678975614', 'vkvijay511424@gmail.com', '2001-07-17', 21, '2', '2', 'Subramani', '56', 20000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2210190005', '1', '1', 'upload_files/candidate_tracker/97436059720_Vigneshkumar_Resume.docx', NULL, '1', '2022-10-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-19 12:52:13', 85, '2022-10-19 02:42:49', 0, NULL, 1),
(10645, '', '0', '9894830379', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-19 12:52:27', 0, NULL, 0, NULL, 1),
(10646, 'Sasikumar', '6', '6374954568', '8870992503', 'gsasikumar331@gmail.com', '2001-06-19', 21, '2', '2', 'Govintharaj', 'Drawing', 15000.00, 2, 0.00, 15000.00, '5/46gajalnaikkenpatty, poimankaradu salem', 'Poimankaradu', '2210190007', '1', '1', 'upload_files/candidate_tracker/917263958_SASIKUMAR G RESUME.docx', NULL, '1', '2022-10-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-19 12:52:49', 85, '2022-10-19 02:43:01', 0, NULL, 1),
(10647, '', '0', '9345500785', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210190008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-19 01:13:08', 0, NULL, 0, NULL, 1),
(10648, 'Rajesh', '16', '9047974188', '9655394278', 'rajesh0699@yahoo.com', '1999-06-03', 23, '2', '2', 'Raju', 'Agriculture', 30000.00, 1, 0.00, 150000.00, 'Nilgiris', 'Chennai', '2210190009', '1', '1', 'upload_files/candidate_tracker/40017916410_Rajesh-Resume.pdf', NULL, '1', '2022-10-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for mIS', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-19 01:59:26', 85, '2022-10-20 06:16:24', 0, NULL, 1),
(10649, '', '0', '9047874188', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210190010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-19 02:16:48', 0, NULL, 0, NULL, 1),
(10650, 'Deepankumar', '4', '9840879627', '', 'Deepankumarr@g', '2000-02-25', 22, '3', '2', 'Rajendran.s', 'Bc', 10000.00, 8, 15000.00, 20000.00, 'Chennai', 'Chintadripet', '2210190011', '', '2', 'upload_files/candidate_tracker/66927732417_RES-converted.pdf', NULL, '3', '2022-10-19', 8, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-19 05:39:01', 1, '2022-10-19 05:48:24', 0, NULL, 1),
(10651, 'gobinath r', '11', '8610336042', '', 'gobishaju777@gmail.com', '1999-07-13', 23, '2', '2', 'ravi s', 'labor work', 14000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210200001', '2', '1', 'upload_files/candidate_tracker/23993671132_DOC-20220924-WA0007..pdf', NULL, '1', '2022-10-20', 0, '', '2', '97', NULL, 0.00, '', '0', NULL, '2', 'good communication.. have 3m of intern exp in sales non it.. txxampc want to confirm with his parents if he come back let us try ...', '6', '1', '0', '1', '1', '0', '2', '2022-10-21', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-20 10:26:03', 1, '2022-10-20 10:27:34', 0, NULL, 1),
(10652, 'S.madhavan', '4', '7810030441', '8110841660', 'S.madhavan5112001@gmail.com', '2001-11-05', 20, '3', '2', 'K.subramaniyan', 'Former', 15000.00, 1, 0.00, 15000.00, 'Kalancheri', 'Kalancheri', '2210200002', '', '1', 'upload_files/candidate_tracker/81625373027_MADDY RESUME,45.pdf', NULL, '1', '2022-10-20', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not profiled and not fit for telesales', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-20 11:34:46', 1, '2022-10-20 11:59:34', 0, NULL, 1),
(10653, 'S.SANTHOSH SIVASAMY', '4', '8825927887', '9244393132', 'santhossivasamy076@gmail.com', '1996-02-23', 26, '3', '2', 'S.SRIDHAR AYYASAMY', 'Office work', 16000.00, 1, 0.00, 12000.00, 'THANJAVUR', 'THANJAVUR', '2210200003', '', '1', 'upload_files/candidate_tracker/31367983966_S.Santhosh Sivasamy Resume.pdf', NULL, '1', '2022-10-20', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'sustainability issue and 10years not working out of the field not fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-20 11:34:58', 1, '2022-10-20 11:50:27', 0, NULL, 1),
(10654, 'J.jagadeesan', '4', '8110941632', '9047525202', 'arun@cafsindia.com', '2002-07-21', 20, '3', '2', 'N.jaisankar', 'Former', 15000.00, 1, 0.00, 15000.00, 'Manganoor', 'Manganoor', '2210200004', '', '1', 'upload_files/candidate_tracker/98930438554_jagadeesan resume 01.pdf', NULL, '1', '2022-10-20', 0, '', '3', '59', '2022-10-31', 126312.00, '', '3', '2022-12-03', '1', 'Selected for Thanjavur - Consultant Role', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '2', '9', 'jagadees655@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-20 11:35:01', 60, '2022-10-29 06:09:30', 0, NULL, 1),
(10655, 'R.Suresh', '4', '7010332623', '9789372720', 'sureshkrishna661@gmail.com', '1991-04-13', 31, '3', '2', 'T.R.Ramanujam', 'Red. Office assistant', 15000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2210200005', '', '1', 'upload_files/candidate_tracker/12684012263_R.SURESH Resume.pdf', NULL, '1', '2022-10-20', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'candidate have some speaking issue voice not that much flow and not fit', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-20 11:35:06', 1, '2022-10-20 11:51:04', 0, NULL, 1),
(10656, 'T Santhosh Kumar', '4', '6385700720', '7305198846', 'santhoshkumarthangarasu1999@gmail.com', '1999-03-10', 23, '3', '2', 'Thangarasu V', 'Former', 15000.00, 2, 0.00, 15000.00, 'Kurungulam (East)', 'Kurungulam (East)', '2210200006', '', '1', 'upload_files/candidate_tracker/69334492351_T Santhosh Kumar.pdf', NULL, '1', '2022-10-20', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'candidate not fit for tele sales and not profiled', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-20 11:35:26', 1, '2022-10-20 11:49:32', 0, NULL, 1),
(10657, 'Bharathi', '4', '9940820109', '9092650313', 'bharathiaki007@gmail.com', '1997-04-20', 25, '4', '2', 'JAGANATHAN', 'Painter', 22000.00, 1, 15000.00, 20000.00, '1/57, West Street Ukkaram sathyamangalam', 'Ukkaram', '2210200007', '', '2', 'upload_files/candidate_tracker/27959650657_Share J.Bharathi paayal 2021.pdf', NULL, '3', '2022-10-21', 10, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-20 12:35:07', 1, '2022-10-20 12:40:47', 0, NULL, 1),
(10658, '', '0', '9566225557', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210210001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-21 07:55:56', 0, NULL, 0, NULL, 1),
(10659, 'Yokesh', '2', '9965255929', '', 'yokesh2102@gmail.com', '1998-02-21', 24, '2', '2', 'Ramalingam', 'Retired government staff', 30000.00, 1, 0.00, 20000.00, 'Om Shakthi Nagar, Kondur Post', 'Velachery', '2210210002', '1', '1', 'upload_files/candidate_tracker/7803622515_Yokesh_Resume.pdf', NULL, '1', '2022-10-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have a basic skills knowledge holding an offer for 15K,Fresher not much comfort in TxxampC Will not sustain ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-21 10:53:18', 85, '2022-10-21 11:11:35', 0, NULL, 1),
(10660, 'Ahamed Kabeer', '23', '7448751101', '7305882475', 'kabeerahd875@gmail.com', '2000-03-20', 22, '2', '2', 'Abdul rahman', 'Business', 50000.00, 1, 0.00, 15000.00, 'No.14, Govindaraj Nagar, Moulivakkam, Chennai', 'Chennai', '2210210003', '1', '1', 'upload_files/candidate_tracker/32480115_kabeer-RESUME 04-docs.pdf', NULL, '1', '2022-10-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 6 months intern Exp distance too long and he is not much comfort in this distance and his min exp is 15K already holds an offer for 10K', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-21 10:59:51', 85, '2022-10-21 11:11:45', 0, NULL, 1),
(10661, 'Navin raj s', '6', '8015479134', '9840686956', 'arun@cafsindia.com', '1998-07-07', 24, '1', '2', 'Soundar', 'Farmer', 40000.00, 3, 19000.00, 25000.00, 'No:3, school road,everady colony,Kodungaiyur', 'No:3, School Road,Everady Colony,Kodungaiyur', '2210210004', '', '2', 'upload_files/candidate_tracker/21614968602_DocScanner 21-Oct-2022 11-15 am.pdf', NULL, '1', '2022-10-21', 0, 'p1251', '3', '59', '2022-10-27', 260000.00, '', '6', '2023-04-01', '1', 'Selected for Syed Team in staff Role,based on the managers Suggestions we proceed with the high salary', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', 'navinraj7798@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-21 11:02:57', 60, '2022-10-27 12:26:16', 0, NULL, 1),
(10662, 'S. Nithyasri', '4', '6374775272', '8526106611', 'nithyasri1102@gmail.com', '2007-10-21', 0, '3', '2', 'S. Nithyasri', 'Farmer', 1000.00, 2, 0.00, 10000.00, '77, keezha street, nagachi.', '77,keezha street, nagachi', '2210210005', '', '1', 'upload_files/candidate_tracker/45685623393_nithyasri.resume.pdf', NULL, '1', '2022-10-21', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'rejected not fit for telesales voice not clear', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-21 11:55:15', 1, '2022-10-21 12:20:40', 0, NULL, 1),
(10663, 'A. Sivasakthi', '4', '7094994266', '9976091066', 'sivasakthiashok126@gmail.com', '2007-10-21', 15, '3', '2', 'K. Ashokkumar', 'Own business', 15000.00, 2, 0.00, 12000.00, '36 east street nagachi poondi (po)thirukattupalli', '36 East street nagachi poondi(po) thirukattupalli', '2210210006', '', '1', 'upload_files/candidate_tracker/19406236908_SIVA RESUME.pdf', NULL, '1', '2022-10-21', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for team and telesales ', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-21 11:55:59', 1, '2022-10-21 12:08:20', 0, NULL, 1),
(10664, 'R.vinisha', '4', '6381263427', '9047548472', 'arun@cafsindia.com', '2002-03-03', 20, '3', '2', 'Ramesh.k', 'Farmer', 100.00, 2, 0.00, 12000.00, 'K.Ramesh 1/206 North Street thanjavur', 'Same as permanent address', '2210210007', '', '1', 'upload_files/candidate_tracker/11104200662_VINISHA.R RESUME.docx', NULL, '1', '2022-10-21', 0, '', '3', '59', '2022-10-28', 126312.00, '', '', '2022-11-10', '2', 'Selected for Thanjavur  - Consultant Role', '1', '2', '1', '4', '5', '1', '2', '1970-01-01', '2', '9', 'vinisharamesh02@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-21 11:55:59', 60, '2022-10-27 02:36:57', 0, NULL, 1),
(10665, 'M.pavithra', '4', '9342759956', '', 'pavimuniyaiya@gmail.com', '2002-06-28', 20, '3', '2', 'M.muniyaiyan', 'Farmer', 15000.00, 3, 0.00, 10000.00, 'Kela mariyamman kovil Street panaveli Thanjavur', 'Kela mariyamman kovil Street panaveli Thanjavur', '2210210008', '', '1', 'upload_files/candidate_tracker/67732349411_pavithra resume.pdf', NULL, '1', '2022-10-21', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not profiled and not fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-21 11:57:03', 1, '2022-10-21 12:16:52', 0, NULL, 1),
(10666, 'Hemalatha', '16', '7904000516', '', 'hemamohan2712@gmail.com', '1996-12-27', 25, '2', '2', 'Mohan', 'Tailor', 35000.00, 1, 15000.00, 17000.00, 'Kk Nagar', 'Kk Nagar', '2210210009', '1', '2', 'upload_files/candidate_tracker/68342511410_CV-Hema.pdf', NULL, '1', '2022-10-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication have exp in collections,age around 26 yrs and sustainability doubts as she will get marry in 1yr,not much convincing will not sustain and handle our pressure', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-21 12:18:28', 85, '2022-10-21 12:25:20', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10667, 'Naresh Kumar R', '5', '9710625147', '9710117372', 'naresh13296@gmail.com', '1996-02-13', 26, '2', '2', 'Nagalakshmi', 'House wife', 500000.00, 1, 0.00, 450000.00, 'Chennai', 'Chennai', '2210210010', '1', '2', 'upload_files/candidate_tracker/4276267612_NARESH KUMAR updated.docx', NULL, '1', '2022-10-21', 20, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Willing to Out side source.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-21 12:19:47', 97, '2022-10-21 06:36:01', 0, NULL, 1),
(10668, '', '0', '8110951632', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210210011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-21 01:03:14', 0, NULL, 0, NULL, 1),
(10669, 'S.Roja', '4', '7200062343', '8189990133', 'rojarose2515@gmail.com', '1994-03-25', 28, '2', '1', 'Vimal raja', 'corporate employee', 23000.00, 1, 20000.00, 20000.00, 'MGR Nagar', 'K.K nagar', '2210210012', '1', '2', 'upload_files/candidate_tracker/93105599985_Roja CV-1 (1).pdf', NULL, '1', '2022-10-21', 1, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'married ..sal expt high .. average in convincing.. not suit for our role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-21 01:14:50', 85, '2022-10-21 03:33:05', 0, NULL, 1),
(10670, 'ANANDHAN E', '6', '8525043155', '9025078224', 'anandhsane@gmail.com', '1998-02-02', 24, '2', '2', 'ESWARAN V', 'Former', 40000.00, 1, 0.00, 18000.00, 'Erode', 'Erode', '2210220001', '1', '1', 'upload_files/candidate_tracker/28480325578_ANANDHAN_RESUME.pdf', NULL, '1', '2022-10-22', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-22 10:15:41', 85, '2022-10-22 10:41:11', 0, NULL, 1),
(10671, 'saravanan b', '14', '9789996444', '9840487025', 'saravananakash1996@gmail.com', '1996-08-30', 26, '3', '2', 'Baskaran B', 'Retired', 15000.00, 0, 280000.00, 320000.00, 'chennai-600075', 'chennai-600075', '2210220002', '', '2', 'upload_files/candidate_tracker/85312016371_RESUME IT-1.pdf', NULL, '1', '2022-10-22', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-22 11:24:08', 1, '2022-10-22 11:29:33', 0, NULL, 1),
(10672, '', '0', '8197096182', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210240001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-24 02:42:49', 0, NULL, 0, NULL, 1),
(10673, 'Santhanakrishnan A', '2', '9489623700', '', 'inovsandy@gmail.com', '1998-12-05', 23, '2', '2', 'Anantha Sayanam', 'Farmer', 20000.00, 2, 0.00, 500000.00, 'Panruti', 'Chennai', '2210240002', '1', '1', 'upload_files/candidate_tracker/8009089615_Santhanakrishnan - Resume-1_1665641548517_Santhanakrishnan A.pdf', NULL, '1', '2022-10-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have basic skills but not much strong,Saalry Exp is very high holding several offers will not sustain ,explained him about the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-24 06:42:56', 85, '2022-10-25 09:45:49', 0, NULL, 1),
(10674, 'MAHALAKSHMI Ayyappan', '13', '9363217623', '8610303731', 'maha02ayyappan@gmail.com', '1999-11-02', 24, '3', '2', 'Parent', 'Pothys security', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai Tnagar', '2210250001', '', '1', 'upload_files/candidate_tracker/88645794415_Mahalakshmi ayyappan as of 1.4.24.pdf', NULL, '1', '2024-05-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-25 09:22:36', 112, '2024-05-13 11:23:32', 0, NULL, 1),
(10675, 'Thajunisha j', '4', '7200087702', '7871657902', 'thajunisha5665@gmail.com', '2001-03-09', 21, '1', '1', 'Vicky', 'Khazana jewellery office admin', 25000.00, 1, 22000.00, 28000.00, 'T.nagar', 'T.nagar', '2210250002', '', '2', 'upload_files/candidate_tracker/42719499210_resume update thajunisha.pdf', NULL, '1', '2022-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Telesales,have 3 months showroom sales Salary Exp is min 25K not ready to negotiate will not sustain', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-25 10:50:27', 1, '2022-10-25 11:11:42', 0, NULL, 1),
(10676, 'Navin R', '16', '8608714843', '7395929651', 'Navinrosario01@gmail.com', '1996-11-12', 25, '2', '2', 'Ravichandran R', 'Buliding contractor', 25000.00, 1, 23000.00, 24000.00, 'Chennai', 'Chennai', '2210250003', '1', '2', 'upload_files/candidate_tracker/37592119329_DOC-20221016-WA0011..pdf', NULL, '1', '2022-10-26', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude, Left his previous job due to work pressure,2yrs in Muthoot finance, No Communication,will not sustain not suitable ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-25 02:23:15', 85, '2022-10-26 09:42:09', 0, NULL, 1),
(10677, 'Fizal shariff', '4', '9360163057', '7358362417', 'fizalshariff@gmail.com', '2000-07-28', 22, '2', '2', 'Meharunnusa', 'House wife', 30000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2210260001', '1', '2', 'upload_files/candidate_tracker/22125121412_Fizal Resume 1.docx', NULL, '1', '2022-10-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok Can give a try for MIS/Renewals Sustainability Doubts as he has plan to move IT after an year,2nd round interviewed by gokul and on hold candidate need to give his confirmation if he comes back let us try,15K TH plus TDS', '1', '1', '', '1', '1', '', '2', '2022-10-28', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-26 10:55:08', 85, '2022-10-26 11:05:21', 0, NULL, 1),
(10678, 'Vignesh', '4', '6382122206', '8489879348', 'vv583120@gmail.com', '2001-04-27', 21, '1', '2', 'Bhavani', 'Telecalling', 12000.00, 1, 0.00, 13000.00, 'Villupuram', 'Chentharipet', '2210260002', '', '1', 'upload_files/candidate_tracker/20691708337_RESUME.doc', NULL, '1', '2022-10-26', 0, 'P1122', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-26 11:02:50', 1, '2022-10-26 11:08:33', 0, NULL, 1),
(10679, 'Yeswanth Kumar T V', '4', '8925093554', '7305516579', 'yeshmack19jack@gmail.com', '1992-09-05', 30, '2', '2', 'T v Bhagya Lakshmi', 'Home maker', 15000.00, 1, 15000.00, 22000.00, 'Villivakkam', 'Villivakkam', '2210260003', '1', '2', 'upload_files/candidate_tracker/80747835293_TVY Resume 2022.doc', NULL, '1', '2022-10-26', 5, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average Have Exp but no sustaianability 2nd interviewed by gokul and shortlisted for 13K TH plus TDS Candidate need time to give his confirmation on the joining\n', '1', '1', '', '1', '1', '', '2', '2022-10-28', '1', '5', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-10-26 11:22:40', 60, '2022-10-26 03:01:53', 0, NULL, 1),
(10680, 'Jeyanthi.J', '4', '7094618858', '', 'arun@cafsindia.com', '2001-07-06', 21, '3', '2', 'Jaishankar.N', 'Farmer', 18000.00, 1, 0.00, 12000.00, 'Gandharvakkottai', 'Gandharvakkottai', '2210260004', '', '1', 'upload_files/candidate_tracker/37805797361_J.JEYANTHI RESUME.docx', NULL, '1', '2022-10-26', 0, '', '3', '59', '2022-10-28', 126312.00, '', '3', '2022-12-03', '2', 'Selected for Consultant - Thanjavur', '1', '2', '1', '4', '5', '1', '2', '1970-01-01', '2', '9', 'jeyanthij905@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-26 11:44:02', 60, '2022-10-27 08:02:13', 0, NULL, 1),
(10681, 'M.RAMYA', '4', '8524950283', '', 'mramya8110047656@gmail.com', '1999-12-03', 22, '3', '2', 'a.mathiyazhagan', 'Farmer', 15000.00, 2, 10000.00, 13000.00, 'Needamangalam', 'Needamangalam', '2210260005', '', '2', 'upload_files/candidate_tracker/68072969180_Resume-1.pdf', NULL, '1', '2022-10-26', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate not interested in the profile', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-26 11:44:05', 1, '2022-10-26 11:50:15', 0, NULL, 1),
(10682, 'R.Thamarai', '4', '9789838915', '', 'arun@cafsindia.com', '2000-07-10', 22, '3', '2', 'P.Ravichandran', 'Formar', 15000.00, 2, 0.00, 15000.00, 'Kovilvenni', 'Kovilvenni', '2210260006', '', '1', 'upload_files/candidate_tracker/49086888993_LOTUS RESUME.docx', NULL, '1', '2022-10-26', 0, '', '3', '59', '2022-10-28', 126312.00, '', '3', '2023-03-31', '2', 'Selected for Consultant Thanjavur', '1', '1', '1', '4', '6', '', '2', '1970-01-01', '2', '9', 'vennithamarai@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-26 11:44:08', 60, '2022-10-27 06:49:16', 0, NULL, 1),
(10683, 'P.Santhiya', '4', '9791524116', '9629548295', 'Sarathyparthan331@gmail.com', '2000-04-04', 22, '3', '2', 'N.Parthasarathy', 'Painter', 10000.00, 0, 0.00, 10000.00, 'Kovilvenni', 'Kovilvenni', '2210260007', '', '1', 'upload_files/candidate_tracker/30643799752_LOTUS RESUMEEE.docx', NULL, '1', '2022-10-26', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'voice not that much clear andnot fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-26 11:55:13', 1, '2022-10-26 11:59:07', 0, NULL, 1),
(10684, 'P. sivaparanika', '4', '6380538601', '9159212638', 'Baranikapalanisami@gmail.com', '2002-06-15', 20, '3', '2', 'Palanisami.o', 'Farmer', 15000.00, 2, 0.00, 13000.00, 'Thattamanaipatti', 'Thattamanaipatti', '2210260008', '', '1', 'upload_files/candidate_tracker/23602190105_BARANIKA RESUME.pdf', NULL, '1', '2022-10-26', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'voice clarity is not good and not fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-26 11:55:29', 1, '2022-10-26 12:00:07', 0, NULL, 1),
(10685, 'Vignesh M', '4', '7603874047', '9941083037', 'vigneshmm531@gmail.com', '2000-10-24', 22, '1', '2', 'Muniyasamy', 'Former', 20000.00, 1, 15000.00, 17000.00, 'Ramanathapuram', 'Chennai', '2210260009', '', '2', 'upload_files/candidate_tracker/10569835194_NEW RESUME (2) 19-10-2022.pdf', NULL, '1', '2022-10-26', 0, '55577', '4', '53', NULL, 0.00, '', '0', NULL, '2', '5050 Profile have exp in backend can give a try he is open much for appointment fixing seems not much ok with Sales kindly check and let me know  your inputs', '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-26 01:50:14', 1, '2022-10-26 03:13:41', 0, NULL, 1),
(10686, 'Chakradhar Rao P', '16', '8667597223', '', 'crao96@gmail.com', '1996-11-23', 25, '2', '2', 'Sudhakara Rao P', 'Quality analyst', 30000.00, 0, 18000.00, 25000.00, '45/68, Azghar perumal kovil St., Vadapalani,ch-26.', '45/68, Azghar perumal kovil st., Vadapalani,ch-26.', '2210260010', '1', '2', 'upload_files/candidate_tracker/39599868808_DOC-20220919-WA0000..pdf', NULL, '1', '2022-10-27', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'good communication .. no sustainbility.. attitude issue.. not suit for our role.. sal expt high..', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-26 06:10:20', 85, '2022-10-27 11:12:09', 0, NULL, 1),
(10687, '', '0', '8681906586', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210260011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-26 11:42:28', 0, NULL, 0, NULL, 1),
(10688, 'Swetha Azhagesan', '4', '9342638959', '', 'swetha90255@gmail.com', '2000-11-25', 21, '2', '2', 'Azhagesan M R', 'Agriculture', 200000.00, 1, 10000.00, 150000.00, 'Kodaikanal', 'Chennai', '2210270001', '1', '2', 'upload_files/candidate_tracker/14823081735_SWETHA A - CV (2).pdf', NULL, '1', '2022-10-27', 30, '', '3', '59', '2022-11-28', 156000.00, '', '5', '1970-01-01', '1', 'Selected for Renewals/MIS Role 2nd round interviewed by Gokul have exp in Renewal for 1 yr in Vizza Insurance Can give a try 2yrs SA', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-27 10:23:21', 60, '2022-11-03 07:07:29', 0, NULL, 1),
(10689, 'Hyder Ali Khan', '20', '7975781579', '7975781570', 'hyderalikhan7975@gmail.com', '2001-07-06', 21, '2', '2', 'Nasir khan', 'Driver', 120000.00, 2, 32000.00, 35000.00, 'Nagvara', 'Nagvara', '2210270002', '1', '2', 'upload_files/candidate_tracker/60960263177_Resume _hyder.docx', NULL, '1', '2022-10-27', 0, '', '1', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-27 10:58:15', 85, '2022-10-27 11:10:45', 0, NULL, 1),
(10690, 'Kousar N', '25', '7829067180', '9740380194', 'kousarsiddika@gmail.com', '1997-05-11', 25, '2', '2', 'Noor Ahmed', 'Tailor', 15000.00, 2, 34000.00, 36000.00, 'Madivala', 'Bommanahalli', '2210270003', '1', '2', 'upload_files/candidate_tracker/29585963538_inbound1686627333896516039.pdf', NULL, '1', '2022-10-27', 15, '', '1', '93', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '8', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-27 11:24:39', 85, '2022-10-27 06:58:24', 0, NULL, 1),
(10691, 'ABINESH.A', '4', '9159367638', '6385745766', 'abinesha71@gmail.com', '2001-07-24', 21, '3', '2', 'ANBALAGAN.S', 'Former', 25000.00, 3, 0.00, 11000.00, 'Ammapetai', 'Ammapetai', '2210270004', '', '1', 'upload_files/candidate_tracker/89657495511_RESUME...Abinesh...pdf', NULL, '1', '2022-10-27', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'unfit', '1', '1', '0', '4', '5', '0', '2', '2022-11-07', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 11:30:35', 1, '2022-10-27 11:36:41', 0, NULL, 1),
(10692, 'VIGNESH M', '4', '9150141697', '', 'arunderose@gmail.com', '2002-04-14', 20, '3', '2', 'Murugesan PR', 'Own business', 25000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2210270005', '', '1', 'upload_files/candidate_tracker/66252604901_MY RESUME (2).pdf', NULL, '1', '2022-10-27', 0, '', '3', '59', '2022-10-31', 126312.00, '', '3', '2022-12-03', '1', 'Selected for Thanjavur Consultant Role', '1', '2', '1', '4', '5', '1', '2', '1970-01-01', '2', '9', 'vigneshmkgp22@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-27 11:30:45', 60, '2022-10-29 06:19:39', 0, NULL, 1),
(10693, 'A. Punitha', '4', '7868827764', '', 'punithaammu15700@gmail.com', '2000-07-15', 22, '3', '2', 'Anbazhagan', 'Farmer', 10000.00, 1, 0.00, 10000.00, '397,west Street adhanur, needamangalam Tk.', '397,west Street, adhanur, needamangalam tk.', '2210270006', '', '1', 'upload_files/candidate_tracker/79959057680_punitha resume pdf.pdf', NULL, '1', '2022-10-27', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'voice is not clear and not fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 11:30:58', 1, '2022-10-27 11:56:24', 0, NULL, 1),
(10694, 'S.VIGNESH KUMAR', '4', '8270531660', '', 'vickyVignesh1660@gmail.com', '1999-01-11', 23, '3', '2', 'G.Selvam raj', 'Business', 20000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2210270007', '', '1', 'upload_files/candidate_tracker/93895273960_vigneshkumar.pdf', NULL, '1', '2022-10-27', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'not fit for team and no exposure no voice fluency', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 11:31:03', 1, '2022-10-27 11:46:52', 0, NULL, 1),
(10695, 'PRAVEEN K', '4', '7402179830', '', 'pravensince@gmail.com', '2002-01-29', 20, '3', '2', 'N.Kannadhasan', 'Trailer', 13000.00, 1, 0.00, 15000.00, 'Ammapet', 'Ammapet', '2210270008', '', '1', 'upload_files/candidate_tracker/12135460103_PRAVIN MY RESUME.pdf', NULL, '1', '2022-10-27', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'over attitude and expected high and not fit for telesales', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 11:31:05', 1, '2022-10-27 11:43:20', 0, NULL, 1),
(10696, 'K. Ganga devi', '4', '8489696042', '8526893858', 'Gangadevi1411@gmail.com', '1999-11-14', 22, '3', '2', 'G. Kumar', 'Farmer', 20000.00, 1, 0.00, 12000.00, '649/adi diravidar street. Senthalai', '649/adi diravidar street. Senthalai', '2210270009', '', '1', 'upload_files/candidate_tracker/63358988444_resume.final.docx', NULL, '1', '2022-10-27', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for team and telesales also', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 11:35:02', 1, '2022-10-27 11:45:46', 0, NULL, 1),
(10697, 'V prasanth balaji', '23', '8939183415', '9080135535', 'Prasanthbalajiv@gmail.com', '1998-03-21', 24, '2', '2', 'B.vadivelu', 'Petrol bunk manger', 200000.00, 0, 0.00, 25000.00, 'No.1 c.g.colony 1st street royapuram', 'Chennai-13', '2210270010', '1', '1', 'upload_files/candidate_tracker/8145841018_resume-6.pdf', NULL, '1', '2022-10-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills he was into core for 3 yrs and looking much on the salary explained on the TxxampC he needs time to give his confirmation', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-27 12:05:22', 85, '2022-10-27 12:26:24', 0, NULL, 1),
(10698, '', '0', '8974090526', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 04:43:03', 0, NULL, 0, NULL, 1),
(10699, '', '0', '6300060373', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 04:44:06', 0, NULL, 0, NULL, 1),
(10700, '', '0', '8500133321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 05:12:29', 0, NULL, 0, NULL, 1),
(10701, 'Uday kumar. N', '24', '8296046378', '8296378369', 'udy9152000@gmail.com', '2000-09-15', 22, '4', '2', 'Uday kumar. N', 'Labour', 17000.00, 1, 0.00, 17000.00, 'Hassan', 'Mysore', '2210270014', '', '1', 'upload_files/candidate_tracker/18675397752_Resume 1.pdf', NULL, '3', '2022-11-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 05:20:38', 1, '2022-10-27 05:50:28', 0, NULL, 1),
(10702, 'Selvakumar M', '16', '9514149662', '7299721548', 'msselvakathir@gmail.com', '1999-06-25', 23, '3', '2', 'Murugesan', 'coolie', 150000.00, 4, 0.00, 216000.00, 'Kundrathur', 'Kundrathur', '2210270015', '', '1', 'upload_files/candidate_tracker/64030748265_selvakumar curriculum vitae.pdf', NULL, '3', '2022-10-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 06:03:46', 1, '2022-10-27 06:14:56', 0, NULL, 1),
(10703, 'Sri lakshmi maalai k', '16', '9677917155', '', 'k.srilakshmi95@gmail.com', '1995-10-24', 27, '2', '1', 'Mariappan', 'IT employee', 40000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2210270016', '1', '2', 'upload_files/candidate_tracker/45873460501_sri_resume-1.pdf', NULL, '2', '2022-10-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for our MIS roles,Career Gap have exp as a quality analyst,married and 2yrs kid,Travelling is bit difficult will not sustain not suitable', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-10-27 06:05:08', 1, '2022-10-27 06:11:41', 0, NULL, 1),
(10704, '', '0', '9159755075', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 06:05:24', 0, NULL, 0, NULL, 1),
(10705, 'Madasamy Kumaran', '4', '8056187744', '', 'smakkumar@gmail.com', '1996-05-20', 26, '3', '2', 'Indira S', 'House Wife', 30000.00, 0, 400000.00, 500000.00, 'Tirunelveli', 'Chennai', '2210270018', '', '2', 'upload_files/candidate_tracker/23101660727_Madasamy Kumaran - Resume.pdf', NULL, '1', '2022-10-30', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 06:06:55', 1, '2022-10-27 06:11:57', 0, NULL, 1),
(10706, 'L.viswanathan', '4', '9003055206', '', 'guruguha94@gmail.com', '1994-09-10', 28, '2', '2', 'V.Laksgminarayanan', 'IT', 100000.00, 1, 17000.00, 30000.00, 'Chennai', 'Chennai', '2210270019', '1', '2', 'upload_files/candidate_tracker/10552893141_Resume 1.pdf', NULL, '1', '2022-10-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Retail sales exp but no sustainability,Clarity on communication is poor will not sustain also not comfort to go into insurance domain', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-10-27 06:17:16', 1, '2022-10-28 11:31:27', 0, NULL, 1),
(10707, '', '0', '9600214654', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 06:17:23', 0, NULL, 0, NULL, 1),
(10708, '', '0', '8248681204', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 06:41:02', 0, NULL, 0, NULL, 1),
(10709, '', '0', '8466990242', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 07:56:44', 0, NULL, 0, NULL, 1),
(10710, '', '0', '9159755076', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 09:25:42', 0, NULL, 0, NULL, 1),
(10711, '', '0', '8939677528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-28 12:08:49', 0, NULL, 0, NULL, 1),
(10712, '', '0', '7708171033', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210280002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-28 08:54:23', 0, NULL, 0, NULL, 1),
(10713, '', '0', '9676199190', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210280003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-28 11:01:27', 0, NULL, 0, NULL, 1),
(10714, 'SARATHKUMAR.P', '13', '8056527244', '7092027244', 'sarath.be2@gmail.com', '1991-07-20', 31, '2', '1', 'Rajalakshmi', 'House wife', 200000.00, 1, 17000.00, 20000.00, 'Krishnagiri', 'Chemmencherry', '2210280004', '1', '2', 'upload_files/candidate_tracker/20972580072_SARATHKUMAR aws Resume (1).pdf', NULL, '1', '2022-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills age around 29 have 6 months exp in front end, need to learn a lot  will not sustain for a long married sustainability doubts in a long run', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-28 11:59:00', 85, '2022-10-28 12:22:53', 0, NULL, 1),
(10715, 'ANANDHKUMAR R', '4', '9176544645', '', 'anandkumarmadurai@gmail.com', '1993-05-04', 29, '1', '2', 'Rameshbabu R', 'postoffice security', 20000.00, 0, 18000.00, 15000.00, 'Perambur Loco works', 'Chennai', '2210280005', '', '2', 'upload_files/candidate_tracker/31142696175_Anandh Resume. (5).docx', NULL, '3', '2022-10-28', 0, 'p1275', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in telecalling ,understandin poor will not sustain and handle our pressure not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-28 12:22:30', 1, '2022-10-28 12:31:54', 0, NULL, 1),
(10716, 'nithosh arokia raj', '32', '7395950204', '8861782142', 'nithoshraj@gmail.com', '1992-07-10', 30, '1', '1', 'joyce iitisha', 'housewife', 30000.00, 1, 28000.00, 35000.00, 'chennai', 'chennai', '2210280006', '', '2', 'upload_files/candidate_tracker/43678949746_updated CV NITHOSH .docx', NULL, '1', '2022-10-28', 0, '55567', '3', '59', '2022-11-02', 420000.00, '', '3', '2022-11-05', '1', 'Selected for Santhosh Team with PF/ESI/PT', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-28 12:46:55', 60, '2022-11-02 09:41:34', 0, NULL, 1),
(10717, 'Jasmin', '4', '9597570611', '', 'Jasleethi19@gmail.com', '2001-02-19', 21, '3', '2', 'Aramainayagam', 'Late', 10000.00, 1, 0.00, 12000.00, 'Vellachery', 'Vellachery', '2210280007', '', '1', 'upload_files/candidate_tracker/88451923856_jasmine leethi resume.pdf', NULL, '1', '2022-10-28', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Communication ok sounding low in voice,Family need is there can be trained kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-28 12:47:29', 1, '2022-10-28 01:00:39', 0, NULL, 1),
(10718, 'Ashraf', '32', '7200493932', '7200746177', 'rehaanashraf12@gmail.com', '1990-12-12', 31, '3', '1', 'Arifa', 'House wife', 65000.00, 1, 90000.00, 45000.00, 'Chennai', 'Chennai', '2210280008', '', '2', 'upload_files/candidate_tracker/34155874462_Ashraf\'s Resume (5).pdf', NULL, '1', '2022-10-28', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'high salary expectation', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-28 12:55:25', 1, '2022-10-28 12:59:46', 0, NULL, 1),
(10719, 'Selvasurya S', '23', '9751157495', '8248909928', 'selvasuryasabapathi@gmail.com', '2000-07-11', 22, '2', '2', 'Sabapathi', 'Farmer', 100000.00, 0, 0.00, 200000.00, 'Dharapuram', 'Guindy, Chennai', '2210280009', '1', '1', 'upload_files/candidate_tracker/45389191851_Resume(New).pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very Basic Skills Not Much Comfort With The TxxampC Will Not Sustain ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-28 05:11:09', 85, '2022-10-31 03:06:58', 0, NULL, 1),
(10720, 'Joice.A', '2', '9487942282', '9345989832', 'Joice221906464@gmail.com', '2002-07-16', 20, '2', '2', 'A.amalraj', 'Coolie', 20000.00, 2, 0.00, 10000.00, '10,kovarathana nagar,kattapoman st,Maduravayoul', '10,Kovarathana Nagar,Kattapoman St,Maduravayoul', '2210280010', '1', '1', 'upload_files/candidate_tracker/49247040552_CV_2022102817142632.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Basic Skills Sustainability Doubts Need time to confirm with her parents if she comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-28 06:57:51', 85, '2022-10-31 03:07:10', 0, NULL, 1),
(10721, 'THARANI KUMAR M', '23', '8754781381', '7373094563', 'tharanikumarns@Gmail.com', '2001-10-28', 21, '3', '2', 'Mangalanathan p', 'Teacher', 25000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'Velacherry,chennai', '2210290001', '', '1', 'upload_files/candidate_tracker/99301066775_MYRESUME4 (1).pdf', NULL, '1', '2022-10-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fita Academy Profile interviewed by Gokul  Kaviya Need to finalise the Profile ', '2', '1', '0', '1', '1', '0', '2', '2022-11-04', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 09:36:25', 1, '2022-10-29 10:06:57', 0, NULL, 1),
(10722, 'Vivek G', '23', '8678996429', '8220524230', 'vivek10841230@gmail.com', '2001-02-03', 21, '3', '2', 'R.Gunasekaran', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Theni', 'Velacherry', '2210290002', '', '1', 'upload_files/candidate_tracker/88876857870_VIivekresume (2).pdf', NULL, '1', '2022-10-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fita Profile Seems to be very SLow Group Interview done by Gokul ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 09:36:28', 1, '2022-10-29 09:54:19', 0, NULL, 1),
(10723, 'S.sivasurya', '23', '8220524230', '8678996429', 'sivasurya2330@gmail.com', '2002-09-23', 20, '3', '2', 'M.sethupathy', 'Revenue inspector', 25000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2210290003', '', '1', 'upload_files/candidate_tracker/73991496928_resume5.pdf', NULL, '1', '2022-10-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fita Profile Group Interview done by Gokul Not much strong with the skills ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 09:37:25', 1, '2022-10-29 09:53:55', 0, NULL, 1),
(10724, 'K.santhosh kumar', '23', '7373094563', '8754781381', 'Santhosmvp333@gmail.com', '2001-04-21', 21, '3', '2', 'K.karuppiah', 'Fisher man', 20000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2210290004', '', '1', 'upload_files/candidate_tracker/2189286723_RESUME5 (1) (1).pdf', NULL, '1', '2022-10-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'FITA Profile Seems to be slow Group interviewed by Gokul ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 09:37:30', 1, '2022-10-29 09:54:31', 0, NULL, 1),
(10725, 'Sharmila', '7', '9941246241', '', 'Sharmilaramesh305@gmail.com', '2001-04-07', 21, '2', '2', 'Mani', 'Can supply', 15000.00, 1, 11000.00, 15000.00, 'Old washerpet', 'Old washerpet', '2210290005', '1', '2', 'upload_files/candidate_tracker/62904216000_sharmi.pdf', NULL, '1', '2022-10-29', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication no understanding Very Poor in the Skills not suitable will not sustain', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '4', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-29 09:47:30', 85, '2022-10-29 11:58:17', 0, NULL, 1),
(10726, 'Syed Rahamathullah', '23', '8667717864', '9025490586', 'syedraha41@gmail.com', '2001-01-21', 21, '3', '2', 'Syed Faheem', 'Auto Driver', 40000.00, 2, 174000.00, 360000.00, 'No 21 1st floor West saidapet chennai 600015', 'Chennai', '2210290006', '', '2', 'upload_files/candidate_tracker/42028804918_Syed Rahamathullah 8667717864.pdf', NULL, '1', '2022-10-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Basic Skills Holding an offer for 25K have 1 yr exp in UX Focus on the salary much,Asked him to wait for the task but he left without attending', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 10:11:17', 1, '2022-10-29 10:15:55', 0, NULL, 1),
(10727, 'Maheshwaran M', '23', '9677730953', '', 'maheswaranvms25@gmail.com', '2000-09-25', 22, '3', '2', 'Muthukrishnan', 'Driver', 15000.00, 2, 0.00, 13000.00, 'Thoothukudi District', 'Perambur, Chennai', '2210290007', '', '1', 'upload_files/candidate_tracker/1457972654_Resume_Maheswaran M.pdf', NULL, '1', '2022-10-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Interviewed by Viswa Candidate is having 1 month course pending asked him to come back after the completion of course', '2', '2', '0', '1', '1', '0', '2', '2022-11-30', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 11:15:59', 1, '2022-10-29 11:18:40', 0, NULL, 1),
(10728, 'Dinesh kumar m', '26', '9176213296', '', 'dineshkumarm2462000@gmail.com', '2000-06-24', 22, '2', '2', 'Murugesan', 'PHE DESIGNER', 20000.00, 1, 0.00, 30000.00, '4/589, panaiyur,thruvanmalai -632 518', '2/18, Kannigapuram, kattupakkam,Chennai', '2210290008', '1', '1', 'upload_files/candidate_tracker/8252262560_DINESHKUMAR_M-1.pdf', NULL, '1', '2022-10-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no Communication travel distance is high will not handle our work pressure not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-29 11:25:48', 85, '2022-10-29 11:36:39', 0, NULL, 1),
(10729, '', '0', '7358591605', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210290009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-29 12:34:23', 0, NULL, 0, NULL, 1),
(10730, 'S.KAVIYA', '13', '6374977027', '8778305449', 'kaviyakk161@gmail.com', '1998-11-27', 23, '3', '2', 'SUBRAMANIAN', 'Carpenter', 30.00, 2, 0.00, 18.00, 'Chennai', 'Iyyappanthangal', '2210290010', '', '1', 'upload_files/candidate_tracker/54875838256_1667008535891_1666925089478_0_Updated_Kaviya_Resume1 oct (1)(1)(1).pdf', NULL, '1', '2022-10-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fita Profile have basic skills,need to give her confirmation on the txxampC if she comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-10-31', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 12:47:18', 1, '2022-10-29 12:51:27', 0, NULL, 1),
(10731, 'Durgadevi S', '4', '8610961914', '', 'durgarani712@gmail.com', '1999-08-30', 23, '3', '2', 'Selvarani', 'Housemaid Woman', 10000.00, 1, 0.00, 12000.00, 'EB Colony, Nanjikottai Road, Thanjavur', 'EB Colony, Nanjikottai Road, Thanjavur', '2210290011', '', '1', 'upload_files/candidate_tracker/38371648828_S.DURGA CV.pdf', NULL, '1', '2022-10-29', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-29 12:53:16', 85, '2022-10-29 01:16:34', 0, NULL, 1),
(10732, 'Lisy sophia. A', '4', '8637440608', '', 'Lisysophia.a@gamil.com', '1999-09-06', 23, '3', '2', 'Arockia Mary. A', 'Cooking', 15000.00, 1, 0.00, 15000.00, '29,19,th street anna nager thanjavur', '29,19th street anna nager thanhavur', '2210290012', '', '2', 'upload_files/candidate_tracker/68409237911_resume for lisy-1-1.docx', NULL, '1', '2022-10-29', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 12:53:42', 1, '2022-10-29 12:56:24', 0, NULL, 1),
(10733, 's j sivaraman', '5', '8124817513', '9677415409', 'Ram.Sri1082@Gmail.Com', '1996-07-15', 26, '2', '2', 'jothilingam s', 'clerk', 15.00, 2, 25000.00, 22000.00, 'chennai', 'chennai', '2210290013', '1', '2', 'upload_files/candidate_tracker/58311096373_Sriram Resume.pdf', NULL, '1', '2022-10-31', 0, '', '3', '59', '2022-11-07', 288000.00, '', '4', '2024-07-16', '1', 'Selected for Sarath Team with PF/PT', '5', '1', '4', '1', '1', '1', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-29 03:56:09', 60, '2022-11-04 04:07:23', 0, NULL, 1),
(10734, 'Aravind B', '22', '7200867616', '', 'Aravindbalaji2k1@gmail.com', '2001-02-01', 21, '2', '2', 'Balaji L', 'Photographer', 350000.00, 1, 15000.00, 23000.00, 'Gowrivakkam, East tambaram', 'Gowrivakkam, East Tambaram', '2210290014', '1', '2', 'upload_files/candidate_tracker/9861927521_Updated resume.pdf', NULL, '1', '2022-11-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-29 04:03:04', 85, '2022-11-01 09:51:58', 0, NULL, 1),
(10735, 'Vijay', '5', '9677441776', '', 'vijaysekar678@gmail.com', '1997-11-16', 24, '4', '2', 'Rajasekar', 'Driver', 22000.00, 1, 180000.00, 325000.00, 'Aruppukottai', 'Aruppukottai', '2210290015', '', '2', 'upload_files/candidate_tracker/8763971478_R.vijay B.E 2019.pdf', NULL, '2', '2022-10-29', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '1', 'candidate okay.  sent for salary negotiation and verify his prevous payslip', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 04:42:30', 1, '2022-10-29 05:04:50', 0, NULL, 1),
(10736, 'Deepak Ashokan', '5', '8825765173', '', 'dpkhot07@gmail.com', '1999-08-28', 23, '1', '2', 'Ashokan K', 'Business', 180000.00, 1, 0.00, 24000.00, 'Karur', 'Karur', '2210290016', '', '1', 'upload_files/candidate_tracker/37165489880_Deepak Ashokan (1).pdf', NULL, '2', '2022-10-29', 0, '55565', '3', '59', '2022-11-15', 330000.00, '', '4', '2023-06-26', '1', 'Selected for Manikandan Team with Pf/PT', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-29 05:51:57', 60, '2022-11-03 07:53:14', 0, NULL, 1),
(10737, '', '0', '7609073466', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210290017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-29 09:39:00', 0, NULL, 0, NULL, 1),
(10738, '', '0', '7200030816', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210290018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-29 10:34:20', 0, NULL, 0, NULL, 1),
(10739, 'Deepa M', '22', '7200784354', '9941524354', 'deepam31596@gmail.com', '1996-05-31', 26, '2', '1', 'Magesh Kumar J', 'IT', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2210300001', '1', '1', 'upload_files/candidate_tracker/30524699077_Deepa resume document writer.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average Not much Good in the Skills Will not sustain and not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-30 01:09:58', 85, '2022-10-31 10:55:47', 0, NULL, 1),
(10740, '', '0', '9840161506', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210300002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-30 12:13:44', 0, NULL, 0, NULL, 1),
(10741, 'Ragunath', '13', '8610491568', '9585624955', 'ragunath616@gmail.com', '1996-06-05', 26, '2', '2', 'Elanchezhiyan', 'Farmer', 1.50, 2, 0.00, 2.00, 'Mayiladuthurai', 'Chennai', '2210310001', '1', '1', 'upload_files/candidate_tracker/48048351728_ragunathcv.pdf', NULL, '1', '2022-10-31', 0, '', '4', '27', '1970-01-01', 0.00, '', '4', '2023-11-27', '2', 'Basic Skills  Need to learn a lot not much ok with TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'Selected for 7 Days Analysis then 6K Stipend continuous with employment', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-31 10:29:42', 60, '2022-11-03 08:01:46', 0, NULL, 1),
(10742, 'karthikeyan s', '5', '9962625558', '8220182158', 'karthisaravanan259@gmail.com', '1993-09-28', 29, '2', '2', 'saravanan', 'buisness', 30000.00, 1, 20000.00, 22000.00, 'chennai', 'chennai', '2210310002', '1', '2', 'upload_files/candidate_tracker/40033975255_Karthi Resume.docx', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Taking Sales alls', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-31 10:31:12', 85, '2022-10-31 10:56:55', 0, NULL, 1),
(10743, 'rajadurai ramajeyam m', '23', '8344723405', '', 'rajadurai619@gmail.com', '1998-12-03', 23, '2', '2', 'muthukumar d', 'business', 25000.00, 1, 0.00, 3.00, 'tuticorin', 'chennai', '2210310003', '1', '1', 'upload_files/candidate_tracker/20244260888_Rajadurai Ramajeyam Resume.docx', NULL, '3', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 10:33:03', 85, '2022-10-31 11:06:13', 0, NULL, 1),
(10744, 'Saraneya R', '6', '7708922249', '', 'saraneyarajasekar.18@gmail.com', '1991-11-18', 30, '1', '1', 'Nithyakumar G', 'Trainer in Reliance', 25000.00, 1, 12000.00, 15000.00, 'Kanchipuram', 'Chennai', '2210310004', '', '2', 'upload_files/candidate_tracker/92079875140_Saraneya New Resume-1.docx', NULL, '1', '2022-10-31', 0, 'Sangeetha p1074', '3', '59', '2022-11-10', 180000.00, '', NULL, '2023-11-25', '1', 'Selected for Renewals With PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-31 10:36:59', 60, '2022-11-03 08:03:47', 0, NULL, 1),
(10745, 'S.DHEEPAK', '31', '8428515013', '8122815541', 'dheepsgdc@gmail.com', '1998-01-22', 24, '2', '2', 'V.SHANMUGAM', 'Rtd Lab asst', 25000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2210310005', '1', '1', 'upload_files/candidate_tracker/96191552168_DHEEPAK RESUME.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Basic Skills Sustainability Doubts Need Time To Confirm With Her Parents If She Comes Back Let Us Try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 10:54:44', 85, '2022-10-31 11:06:47', 0, NULL, 1),
(10746, 'Surya', '2', '7639038052', '8667459044', 'suryaravi9743@gmail.com', '1997-06-02', 25, '2', '2', 'Ravichandran', 'Driver', 30000.00, 1, 0.00, 200000.00, 'Trichy', 'Sholinganallur', '2210310006', '1', '1', 'upload_files/candidate_tracker/43061608015_SURYA R.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking For Java Openings', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 11:15:50', 85, '2022-10-31 03:07:44', 0, NULL, 1),
(10747, 'selvaganapathy B', '2', '9952082789', '', 'selvaganapathysarjune@gmail.com', '1998-12-28', 23, '2', '2', 'Baskaran', 'Business', 20000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2210310007', '1', '1', 'upload_files/candidate_tracker/62398448737_Selva', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Java Openings', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 11:16:04', 85, '2022-10-31 03:07:54', 0, NULL, 1),
(10748, 'Rathinakavin B', '23', '9597139398', '8526431002', 'rathinakavinbalakrishnan@gmail.com', '1999-05-20', 23, '2', '2', 'Balakrishnan', 'Farmer', 100000.00, 0, 0.00, 250000.00, 'Coimbatore', 'Guindy, Chennai', '2210310008', '1', '1', 'upload_files/candidate_tracker/24444707476_Rathinakavin Update.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Only Basic Skills Not Much Comfort With The TxxampC Will Not Sustain ,If he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 11:17:31', 85, '2022-10-31 03:08:08', 0, NULL, 1),
(10749, 'Kalaiarasan R', '23', '9087989547', '6369733882', 'kalaimech1999@gmail.com', '1999-08-26', 23, '2', '2', 'Rajendran C', 'Milk Supplyer', 200000.00, 1, 0.00, 400000.00, 'Salem', 'Chennai', '2210310009', '1', '1', 'upload_files/candidate_tracker/289453008_KALAIARASAN R.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Basic Skills not much comfort with the TxxampC Will not sustain ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 11:18:43', 85, '2022-10-31 03:09:12', 0, NULL, 1),
(10750, '', '0', '8248909928', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210310010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-31 11:40:06', 0, NULL, 0, NULL, 1),
(10751, 'Muthu Lakshmi', '31', '7904571627', '8754830018', 'muthusml2001@gmail.com', '2001-11-05', 20, '3', '2', 'A.Selvaraj', 'Driver', 120000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2210310011', '', '1', 'upload_files/candidate_tracker/7448115472_SML.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking much for Java openings Poor Understanding will not sustain and not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 12:32:36', 1, '2022-10-31 12:55:41', 0, NULL, 1),
(10752, 'EMILJEBARAJ G', '4', '6380463312', '8838076472', 'emilprakash004@gmail.com', '1996-11-08', 25, '2', '2', 'Gnanaprakasam s', 'Former', 46000.00, 1, 0.00, 23000.00, 'Chittivarai estate o. C. Division yellapatty (P.o)', 'Ambattur', '2210310012', '1', '2', 'upload_files/candidate_tracker/45354985103_EMIL RESUME.NEW.pdf', NULL, '1', '2022-11-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp but Many job changes not open for Field but Exp min 23K', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 12:39:38', 99, '2022-11-17 05:37:52', 0, NULL, 1),
(10753, 'Rathi Shanthi M', '22', '9361004620', '', 'mrathishanthi@gmail.com', '1998-03-15', 24, '3', '2', 'Mala M', 'Null', 30000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2210310013', '', '1', 'upload_files/candidate_tracker/94055474575_Resume - Associate Technical engineer( Rathi shanthi).docx', NULL, '3', '2022-11-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 01:12:13', 1, '2022-10-31 01:18:11', 0, NULL, 1),
(10754, 'Saravanan Jayaraman', '5', '9003155676', '', 'mastersarava@gmail.com', '2007-10-31', 0, '3', '1', 'Divya', 'Housewife', 50000.00, 2, 25000.00, 35000.00, 'Chennai', 'Chennai', '2210310014', '', '2', 'upload_files/candidate_tracker/42900752540_Saravanan_Jayaraman_Resume (1) (1).PDF', NULL, '1', '2022-10-31', 7, '', '3', '59', '2022-11-21', 320000.00, '', '5', '1970-01-01', '1', 'Selected for Sarath Team with PF/PT', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-31 01:38:06', 60, '2022-11-03 07:55:24', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10755, 'Suhail Ahmed', '4', '8122341476', '', 'Suhail.amd23@yahoo.com', '1991-10-23', 31, '1', '1', 'Jasmeen', 'Housewife', 30000.00, 0, 25000.00, 30000.00, 'Perambur', 'perambur', '2210310015', '', '2', 'upload_files/candidate_tracker/5526752946_Suhail new CV 2022 deal.pdf', NULL, '3', '2022-10-31', 0, 'P1122', '3', '59', '2022-11-01', 182496.00, '', '0', NULL, '1', 'Selected for Technical Support with Insurance SAles Communication is Good Can be trained Final round interviewed by Gokul', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 02:44:00', 1, '2022-10-31 02:48:37', 0, NULL, 1),
(10756, 'Wilson P', '21', '8754556116', '7299124217', 'christowilson111@gmail.com', '1997-11-16', 24, '1', '2', 'L peter', 'office boy', 20000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2210310016', '', '2', 'upload_files/candidate_tracker/76683022631_dtp cer.PDF', NULL, '1', '2022-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Very High CTC Expectation Will not sustain for a long', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 02:44:52', 1, '2022-10-31 03:23:28', 0, NULL, 1),
(10757, 'Santhoshmuthuraj.R', '5', '8825584472', '9600168886', 'santhoshgracy2514@gmail.com', '2000-08-25', 22, '1', '2', 'Raja', 'Driver', 15000.00, 1, 0.00, 22000.00, 'Perambur', 'Perambur', '2210310017', '', '1', 'upload_files/candidate_tracker/94767704295_SANTHOSH MUTHURAJ .R.pdf', NULL, '1', '2022-10-31', 0, 'P1299', '4', '88', NULL, 0.00, '', '0', NULL, '1', 'Syed Team Reference,No Communication Need to open a lot not suitable much being internal reference kindly check and let me know your interest', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 02:55:19', 1, '2022-10-31 03:01:24', 88, '2022-11-15 06:22:42', 0),
(10758, '', '0', '9943749329', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210310018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-31 03:57:32', 0, NULL, 0, NULL, 1),
(10759, '', '0', '8825943629', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210310019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-31 04:16:48', 0, NULL, 0, NULL, 1),
(10760, 'Nagarajan k', '31', '7338923601', '9884825754', 'nagarajan10102000@gmail.com', '2000-10-10', 22, '2', '2', 'Karunanidhi', 'Building contractor', 50000.00, 2, 0.00, 3.00, 'No:17, karikalan street, mgr nagar, chennai-78', 'Chennai', '2210310020', '1', '1', 'upload_files/candidate_tracker/29763896394_Nagarajan resume.pdf', NULL, '1', '2022-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preparing for Govt Exams full focus into exams and for time being looking for opportunities, he is very clear that he will sustain in a long in  IT', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 05:08:22', 99, '2022-12-19 11:46:03', 0, NULL, 1),
(10761, 'S.Bhuvaneshwari', '29', '7200210326', '', 'charuhari79@gmail.com', '1992-03-27', 30, '2', '1', 'husband name Srihariharan', 'IT', 50000.00, 0, 0.00, 20000.00, 'Perungalathur', 'Perungalathur', '2210310021', '1', '1', 'upload_files/candidate_tracker/67543057014_Bhuvaneswari_S.pdf', NULL, '1', '2022-11-01', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for our roles.. long distance too', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 05:11:16', 85, '2022-11-01 10:11:57', 0, NULL, 1),
(10762, 'R.haji yaseena fathima', '22', '9944629252', '9840235624', 'yaseenafathima@gmail.com', '1999-10-20', 23, '2', '2', 'Parents', 'Business', 10000.00, 1, 0.00, 12000.00, '10,muthunaikan, Broadway,chennai 01', 'Chennai', '2210310022', '1', '1', 'upload_files/candidate_tracker/64749433214_haji yaseena fathima.R....pdf', NULL, '1', '2022-11-02', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok Have internship Exp in DM,given her task to analyse the writing skills need to give her feedback,should go for Internship cum employment', '2', '1', '', '1', '1', '', '2', '2022-11-04', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-31 05:14:47', 85, '2022-11-02 09:48:19', 0, NULL, 1),
(10763, 'Siva prasadh', '6', '9655011762', '9677017780', 'rajendhransiva@gmail.com', '1997-09-07', 25, '2', '2', 'Nagalakshmi', 'Amma canteen', 40000.00, 1, 17000.00, 20000.00, 'Bhavani', 'Bhavani', '2210310023', '1', '2', 'upload_files/candidate_tracker/30543472753_SIVA PRASADH 2022 FINAL (1).pdf', NULL, '1', '2022-11-01', 10, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sal expect high 20k and field work not interested', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 05:15:02', 85, '2022-11-01 12:11:25', 0, NULL, 1),
(10764, 'Priyanka', '4', '8300769688', '9442036068', 'rpr1410@gmail.com', '2001-10-14', 21, '4', '2', 'Raja', 'Photographer', 10000.00, 1, 12000.00, 20000.00, 'Tindivanam', 'Tindivanam', '2210310024', '', '2', 'upload_files/candidate_tracker/24139962972_Priyanka resume.pdf', NULL, '1', '2022-11-04', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 05:15:10', 1, '2022-11-13 08:33:34', 0, NULL, 1),
(10765, 'Naveen kumar V B', '31', '9884295853', '', 'naveensends@gmail.com', '1999-10-13', 23, '2', '2', 'Balakrishnan V', 'Special educator', 40000.00, 1, 0.00, 0.00, 'Chennai', 'Chennai', '2210310025', '1', '1', 'upload_files/candidate_tracker/16467242419_NAVEEN KUMAR V B-RESUME.pdf', NULL, '1', '2022-11-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-31 05:47:51', 85, '2022-11-03 06:50:14', 0, NULL, 1),
(10766, '', '0', '6381190255', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210310026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-31 06:37:32', 0, NULL, 0, NULL, 1),
(10767, 'SURYA P', '14', '9080306740', '', 'suryaparthipan38@gmail.com', '2000-07-02', 22, '3', '2', 'Parthiban R', 'Formar', 6000.00, 1, 0.00, 20000.00, 'Thirupathur', 'Chennai', '2210310027', '', '1', 'upload_files/candidate_tracker/71212916149_Surya chf.pdf', NULL, '1', '2022-11-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 06:40:48', 1, '2022-10-31 06:44:48', 0, NULL, 1),
(10768, '', '0', '8867784016', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210310028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-31 08:01:55', 0, NULL, 0, NULL, 1),
(10769, 'Naveen Kumar', '4', '8610522873', '9087761108', 'naveen7550264381@gmail.com', '2002-06-17', 20, '4', '2', 'M suresh', 'Car driver', 20000.00, 1, 20000.00, 20000.00, 'No;36 corporation colony Kodambakkam ch 24', 'Kodambakkam', '2210310029', '', '2', 'upload_files/candidate_tracker/16418119295_S. Naveen Kumar.pdf', NULL, '1', '2022-11-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 09:02:39', 1, '2022-10-31 09:07:17', 0, NULL, 1),
(10770, 'indu mathi', '4', '9361016960', '9597386276', 'indumate3@gmail.com', '2007-10-31', 0, '2', '2', 'mohan', 'teacher', 4500.00, 0, 0.00, 250000.00, 'pudhucherrymedu', 'pudhucherrymedu', '2210310030', '1', '1', 'upload_files/candidate_tracker/44578419522_Indu Mathi (1).pdf', NULL, '2', '2022-11-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-31 09:22:37', 85, '2022-11-01 09:55:51', 0, NULL, 1),
(10771, 'Vanipriya J', '4', '9361332157', '8248223805', 'vanipriya2308@gmail.com', '2000-08-23', 22, '3', '1', 'Mahesh kumar', 'PPMS (Field marketing supervisor)', 20000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2210310031', '', '2', 'upload_files/candidate_tracker/38662453672_vani resume.-converted.pdf', NULL, '1', '2022-11-15', 60, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in CAMS Communication ok just 10 months in cAMS looking for Salary growth also she is in checkup recently married will not sustain for a long she is clear with that', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 09:51:03', 1, '2022-11-12 06:41:58', 0, NULL, 1),
(10772, 'vivek p', '16', '9600177995', '9600154483', 'vivekvinai7@gmail.com', '1994-01-21', 28, '2', '2', 'paramasivam', 'isherman', 50000.00, 1, 530000.00, 590000.00, 'palani amman kovil south', 'chennai', '2211010001', '1', '2', 'upload_files/candidate_tracker/47142097043_Vivek Resume.doc', NULL, '1', '2022-11-01', 30, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 7m of exp in MIS .. Sal expt High...', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-01 10:19:34', 85, '2022-11-01 12:07:42', 0, NULL, 1),
(10773, 'Merlin Christopher', '31', '6385870842', '7904452457', 'merlinchristopher196@gmail.com', '2000-10-19', 22, '3', '2', 'Arul Xavier', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'T.nagar', '2211010002', '', '1', 'upload_files/candidate_tracker/65909854474_DOC-20221028-WA0042..pdf', NULL, '1', '2022-11-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', ' Will Not Sustain Not Much Comfort With TxxampC if she comes back let us try', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-01 10:49:15', 1, '2022-11-01 10:59:20', 0, NULL, 1),
(10774, 'K.jothi', '20', '6383014526', '8682041483', 'jothik1412@gmail.com', '1996-12-14', 25, '2', '1', 'Dinesh Kumar', 'Metro water filling point', 35000.00, 1, 15000.00, 20000.00, 'No 234 1st street B kalyanapuram Vyasarpadi Ch-39', 'No 234 1st Street B Kalyanapuram Ch-39', '2211010003', '1', '2', 'upload_files/candidate_tracker/17297101031_Jothi.pdf', NULL, '1', '2022-11-01', 15, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Has 3mexp in sales ... simultaneously changing job ..sustainbility doubts.. newly married .. sal exp high', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-01 02:32:29', 85, '2022-11-01 02:49:14', 0, NULL, 1),
(10775, '', '0', '9025137005', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211010004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-01 05:44:53', 0, NULL, 0, NULL, 1),
(10776, '', '0', '8122109024', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211010005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-01 06:04:19', 0, NULL, 0, NULL, 1),
(10777, 'CHARUMATHI', '5', '7904037181', '', 'charuelamathi78@gmail.com', '1999-12-18', 22, '2', '1', 'MURUGAN', 'BUILDING PAINTING CONTRACTOR', 215000.00, 1, 11000.00, 17000.00, 'nO56BRINDAVANNAGAR2NDCROSSSTREETVALASARAVAKKAM', 'CHENNAI', '2211010006', '1', '2', 'upload_files/candidate_tracker/39529335019_CHARUMATHI RESUME .2022.pdf', NULL, '1', '2022-11-02', 20, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-01 08:03:21', 85, '2022-11-02 09:48:00', 0, NULL, 1),
(10778, 'Pavithra S', '16', '9940324622', '9841499201', 'Pavithrasasikumar2607@gmail.com', '1998-07-26', 24, '2', '2', 'Sasikumar', 'Builder', 30000.00, 1, 18000.00, 23000.00, 'Triplicane', 'Triplicane', '2211010007', '1', '2', 'upload_files/candidate_tracker/69870918480_Pavithra_resume- 20226.docx', NULL, '1', '2022-11-03', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Collections can be trained but her salary Exp is high long run doubts if she come back for same salary we can', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-01 10:24:40', 85, '2022-11-03 11:07:48', 0, NULL, 1),
(10779, 'Shakthi J', '20', '8608499832', '9087054006', 'jshakthi25@gmail.com', '2000-04-17', 22, '2', '2', 'Jayakumar M', 'Sample tailor', 30000.00, 1, 16600.00, 18000.00, 'Chennai', 'Chennai', '2211020001', '1', '2', 'upload_files/candidate_tracker/97041453527_shakthi resume.pdf', NULL, '1', '2022-11-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-11-02 10:02:18', 1, '2022-11-02 10:08:57', 0, NULL, 1),
(10780, 'ashok kumar', '4', '8838935208', '', 'ashaasj@gmail.com', '1998-06-02', 24, '2', '2', 'alli muthu', 'kooli', 12000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2211020002', '2', '1', 'upload_files/candidate_tracker/21343326523_ashok kumar.pdf', NULL, '1', '2022-11-02', 0, '', '3', '59', '2022-11-03', 151584.00, '', '4', '2022-11-30', '1', 'Selected for Elite Arumbakkam,Should analyse in 7 days,Communication Ok ,Fresher For Telecaller Not A Graduate Have 6 Yrs Exp In Mobile Showroom Sales Can Be Trained', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-02 10:32:27', 60, '2022-11-02 05:19:48', 0, NULL, 1),
(10781, 'divya dharshini', '4', '7305924203', '', 'divyamoshikpraveen@gmail.com', '1997-08-30', 25, '2', '1', 'praveen kumar', 'cargo agent', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2211020003', '2', '1', 'upload_files/candidate_tracker/17834179800_001 - 2022-10-21T171610.982.pdf', NULL, '1', '2022-11-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 10:35:50', 1, '2022-11-02 10:38:34', 0, NULL, 1),
(10782, 'J.Motchaka Maria Alwin', '16', '8939601765', '9025137005', 'mmalwinjo@gmail.com', '2001-11-10', 20, '2', '2', 'Joseph Arokiya Dass', 'Nil', 18000.00, 1, 0.00, 15000.00, 'No:50,N.S.K STREET,MOONGILIRI,PAMMAL, CHENNAI -75', 'No:50,N.S.K STREET,MOONGILIRI,PAMMAL, CHENNAI -75', '2211020004', '1', '1', 'upload_files/candidate_tracker/86493179761_CV_Alwin.pdf', NULL, '1', '2022-11-02', 0, '', '3', '59', '2022-11-03', 180000.00, '', '', '1970-01-01', '2', '3 months intern with  7.5K Need to train from basic ,after intern 1.8 LPA if he join let us proceed', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-02 10:43:58', 85, '2022-11-02 10:53:53', 0, NULL, 1),
(10783, 'Gokulnath', '31', '9361137271', '8270977059', 'mgokulnathmuruganshanthi@gmail.com', '2000-03-06', 22, '2', '2', 'K. Murugan', 'Farmer', 1000.00, 1, 0.00, 200000.00, 'Chennai chrompet', 'Chennai chrompet', '2211020005', '1', '1', 'upload_files/candidate_tracker/79125066511_M.GOKULNATH RESUME (1) (1).docx', NULL, '1', '2022-11-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills no ideas in JS, Not suitable will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 10:46:09', 85, '2022-11-02 11:17:09', 0, NULL, 1),
(10784, '', '0', '8124482115', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 10:49:48', 0, NULL, 0, NULL, 1),
(10785, 'Vengadesan Murugesan', '4', '9962046264', '', 'romanvenkat57@gmail.com', '2000-07-30', 22, '3', '2', 'Vengadesan Murugesan', 'Weekly incom', 30000.00, 0, 0.00, 25000.00, 'No 900/70 S A Colony 10 th Street Sharma Nagar', 'No 900/70 S A Colony 10 th Street Sharma nagar', '2211020007', '', '1', 'upload_files/candidate_tracker/94001503897_VengadesanMurugesan (1).pdf', NULL, '1', '2022-11-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 10:57:06', 1, '2022-11-02 11:04:26', 0, NULL, 1),
(10786, 'Rohith', '16', '8428775443', '', 'sivarohith2412@gmail.com', '1998-11-17', 23, '2', '2', 'Paramasivam', 'Business', 120000.00, 1, 18500.00, 20000.00, 'Chennai', 'Chennai', '2211020008', '1', '2', 'upload_files/candidate_tracker/51363193583_Resume 3.1 (1).pdf', NULL, '1', '2022-11-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, will not handle our work pressure  no ideas in Excel not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 11:16:43', 85, '2022-11-03 12:08:59', 0, NULL, 1),
(10787, 'PRIYANKA', '16', '7397273441', '', 'priyankakrishnan1512@gmail.com', '1995-12-15', 26, '2', '1', 'PRAKASH', 'Collection Executive', 25000.00, 1, 264000.00, 350000.00, 'CHENNAI', 'CHENNAI', '2211020009', '1', '2', 'upload_files/candidate_tracker/47509076276_Priyanka Resume Oct.pdf', NULL, '1', '2022-11-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, have Exp in MIS for 4+ yrs ,Recently married and sustainability Doubts a lot Exp min  20K TH,Handling Work Pressure and Sustainability Doubts', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-02 11:58:27', 85, '2022-11-02 12:53:10', 0, NULL, 1),
(10788, 'B.mangaiyarkarasi', '4', '8754661844', '', 'Mangaiboomi@gmail.com', '1992-10-16', 30, '2', '2', 'T.boominathan', 'Farmer', 20000.00, 3, 15000.00, 16000.00, 'Madurai', 'Ambathur', '2211020010', '1', '2', 'upload_files/candidate_tracker/52066364525_RESUME.docx', NULL, '3', '2022-11-02', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication Ok Need to open up in sales a lot also she is very clear that will not join if her friend who came along for the interview  isrejected', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 12:30:35', 85, '2022-11-02 01:13:39', 0, NULL, 1),
(10789, 'Shanmuganathi. S', '4', '9585040063', '', 'Shanmuganathis75@gmail.com', '1999-05-29', 23, '2', '2', 'Fathee', 'Father', 300000.00, 0, 0.00, 13000.00, 'Chennai', 'Chennai', '2211020011', '1', '1', 'upload_files/candidate_tracker/97611097838_my (1).pdf', NULL, '3', '2022-11-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No Need To Open Up In Sales A Lot Also She Is Very Clear That Will Not Join If Her Friend Who Came Along For The Interview  Is rejected will not sustain and handle our sales pressure', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 12:31:46', 85, '2022-11-02 01:13:27', 0, NULL, 1),
(10790, 'Gajula Bhagya Lakshmi', '20', '9640142451', '', 'gajula2122@gmail.com', '2000-10-22', 22, '3', '2', 'Gajula Siva Prasad', 'Tailor', 10000.00, 1, 20000.00, 30000.00, 'Bangalore', 'Bangalore', '2211020012', '', '2', 'upload_files/candidate_tracker/53730888052_G.Bhagya Lakshmi.pdf', NULL, '2', '2022-11-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 03:48:51', 1, '2022-11-02 03:58:01', 0, NULL, 1),
(10791, 'Sweety R', '11', '9790378449', '', 'tikkusharon@gmail.com', '1997-05-24', 25, '3', '2', 'Ranjan dass', 'Chef', 20000.00, 1, 25000.00, 29000.00, 'Vellore', 'Chennai, Kodambakkam', '2211020013', '', '2', 'upload_files/candidate_tracker/49908609634_Sweetyy_cv.pdf', NULL, '3', '2022-11-03', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 03:52:35', 1, '2022-11-02 04:00:04', 0, NULL, 1),
(10792, '', '0', '9790378448', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 04:16:32', 0, NULL, 0, NULL, 1),
(10793, 'priya', '14', '6382272072', '8428400335', 'priyaesther2419@gmail.com', '1999-04-22', 23, '4', '2', 'ravi k', 'labour', 15000.00, 2, 0.00, 200000.00, 'sriperumbudur', 'sriperumbudur', '2211020015', '', '1', 'upload_files/candidate_tracker/12256028517_Priya.22.pdf', NULL, '3', '2022-11-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 04:48:33', 1, '2022-11-05 07:07:18', 0, NULL, 1),
(10794, 'Karoline', '31', '7358160547', '', 'fernandourmitha2@gmail.com', '2001-04-25', 21, '4', '2', 'Latha', 'Business manager', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2211020016', '', '1', 'upload_files/candidate_tracker/44559757748_Karoline Urmitha Resume.pdf', NULL, '2', '2022-11-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 04:48:47', 1, '2022-11-02 04:52:01', 0, NULL, 1),
(10795, 'Karthikeyan.R', '23', '6380908932', '', 'karthik.r0135@gmail.com', '2002-05-03', 20, '2', '2', 'Ravi', 'Ternor', 15000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2211020017', '1', '1', 'upload_files/candidate_tracker/40535203196_Karthikeyan R - Resume - 29-Aug-2022.pdf', NULL, '1', '2022-11-05', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need to be trained a lot he need time to confirm with his family on the Terms and conditons if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-11-08', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 04:49:33', 85, '2022-11-07 01:26:16', 0, NULL, 1),
(10796, 'Gedi Jayakumar', '27', '7330807712', '', 'gedijayakumar14@gmail.com', '1999-11-14', 22, '2', '2', 'G. Muni shekar', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'Siddapuram, sathyavedu, chittoor district', 'Urappakkam, chennai', '2211020018', '1', '1', 'upload_files/candidate_tracker/64341669899_jhon RESUME (3).pdf', NULL, '1', '2022-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills much open for Java only', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 04:54:43', 85, '2022-11-04 03:26:48', 0, NULL, 1),
(10797, '', '0', '9894168960', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 05:04:04', 0, NULL, 0, NULL, 1),
(10798, 'Rangarajan A', '13', '8124050100', '', 'rangarajanstar100@gmail.com', '2001-03-25', 21, '3', '2', 'Ashokan', 'Business', 20000.00, 1, 0.00, 400000.00, 'Villupuram', 'Chennai', '2211020020', '', '1', 'upload_files/candidate_tracker/76172627504_Rangarajan_Resume.pdf', NULL, '2', '2022-11-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 05:04:39', 1, '2022-11-02 05:09:31', 0, NULL, 1),
(10799, 'Abisha S', '4', '9025746127', '', 'abishasasi27@gmail.com', '2000-01-02', 22, '3', '2', 'G.Sasi', 'Self employed', 20000.00, 1, 0.00, 18000.00, 'Kanyakumari', 'Anna nagar', '2211020021', '', '1', 'upload_files/candidate_tracker/24685749140_ABISHA RESUME-2.pdf', NULL, '1', '2022-11-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 05:06:20', 1, '2022-11-02 05:10:40', 0, NULL, 1),
(10800, 'Nagalakshmi', '5', '7338886741', '9578318392', 'lakshmimaha26508@gmail.com', '1997-08-26', 25, '3', '1', 'Sakthikumar', 'Medical transcriptionst', 15000.00, 1, 15000.00, 15000.00, 'Erode', 'Erode', '2211020022', '', '2', 'upload_files/candidate_tracker/87226371626_Nagalakshmi resume ????????????.docx', NULL, '1', '2022-11-03', 15, '', '3', '59', '2022-11-10', 176844.00, '', '3', '2022-11-14', '2', 'Selected for Erode Location,Consultant Role,Husband looking for opportunities if he get any in chennai may relocate sustainability need to check and analyse in 7 days training have a 9 month old baby', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-02 05:09:07', 60, '2022-11-05 03:41:56', 0, NULL, 1),
(10801, '', '0', '7550371652', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 05:19:51', 0, NULL, 0, NULL, 1),
(10802, '', '0', '7395909727', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 05:22:55', 0, NULL, 0, NULL, 1),
(10803, 'kshetrimayum anand singh', '14', '6380348519', '', 'kshanand1999@gmail.com', '1999-06-20', 23, '3', '2', 'kshetrimayum itocha singh', 'farmers', 10000.00, 2, 0.00, 150000.00, 'thoubal', 'chennai', '2211020025', '', '1', 'upload_files/candidate_tracker/58305690815_Ksh.Anand Singh.Resume.pdf', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 05:28:13', 1, '2022-11-02 05:37:53', 0, NULL, 1),
(10804, 'Guru Moorthy. S', '23', '6379065296', '7708705107', 'gurumoorthy.sakthivel@gmail.com', '2001-06-10', 21, '2', '2', 'Sakthivel. P', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Cuddalore', 'Chennai', '2211020026', '1', '1', 'upload_files/candidate_tracker/34201819486_Gurumoorty resume.pdf', NULL, '1', '2022-11-03', 0, '', '3', '59', '2022-11-04', 120000.00, '', '3', '2023-07-19', '2', 'Selected for Front End Fresher need to be trained ,final round interviewed by Gokul an dgot selected Internship for 5 months 5K then 10-12K  3yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 05:33:01', 60, '2022-12-26 03:29:28', 0, NULL, 1),
(10805, '', '0', '6374601408', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 05:48:18', 0, NULL, 0, NULL, 1),
(10806, '', '0', '9487721545', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 05:49:41', 0, NULL, 0, NULL, 1),
(10807, 'Manojkumar M', '23', '8015713954', '', 'mk391982@gmail.com', '1998-05-04', 24, '4', '2', 'Meyyapparaj R', 'Self employed', 30000.00, 1, 0.00, 18000.00, 'Gummidipoondi', 'Gummidipoondi', '2211020029', '', '1', 'upload_files/candidate_tracker/52419710370_Resume_oct_22 (2).pdf', NULL, '1', '2022-11-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 06:10:40', 1, '2022-11-02 06:37:09', 0, NULL, 1),
(10808, '', '0', '7397278486', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 06:43:34', 0, NULL, 0, NULL, 1),
(10809, 'M. Alagar samy', '13', '8610828420', '', 'alagar3773@gmail.com', '2000-09-11', 22, '2', '2', 'Murugan', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Pudukkottai', 'Chennai', '2211020031', '1', '1', 'upload_files/candidate_tracker/25662746421_Alagar resume.pdf', NULL, '1', '2022-11-03', 0, '', '3', '59', '2022-11-07', 120000.00, '', '', '1970-01-01', '2', 'Selected for PHP, need to be trained a lot final round interviewed by gokul 7 days analysis then 5 months intern 5K,then 10-12K 3yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 07:26:17', 85, '2022-11-03 02:31:30', 0, NULL, 1),
(10810, 'R. SURYA', '29', '7094528454', '', 'suryaudr02@gmail.com', '2001-05-25', 21, '4', '2', 'Raman', 'Farmer', 72000.00, 3, 0.00, 20000.00, 'Thoothukudi', 'Chennai', '2211020032', '', '1', 'upload_files/candidate_tracker/65064361789_SURYA R.docx', NULL, '3', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 08:19:11', 1, '2022-11-02 08:30:22', 0, NULL, 1),
(10811, '', '0', '7449002292', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 08:28:49', 0, NULL, 0, NULL, 1),
(10812, '', '0', '9597723986', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 09:10:21', 0, NULL, 0, NULL, 1),
(10813, '', '0', '6369740005', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020035', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 09:22:31', 0, NULL, 0, NULL, 1),
(10814, 'Vinitha B', '3', '9445627070', '', 'vinidama14@gmail.com', '1997-03-15', 25, '4', '2', 'M.Balasubramaniam', 'Retired', 300000.00, 1, 0.00, 300000.00, 'CHENNAI TAMIL NADU', 'CHENNAI TAMIL NADU', '2211020036', '', '1', 'upload_files/candidate_tracker/11030766504_Bvinitharesume (3).pdf', NULL, '2', '2022-11-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 09:53:40', 1, '2022-11-02 10:02:55', 0, NULL, 1),
(10815, '', '0', '9384479652', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020037', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 10:15:41', 0, NULL, 0, NULL, 1),
(10816, '', '0', '6379050335', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020038', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 10:32:29', 0, NULL, 0, NULL, 1),
(10817, 'Jamuna', '23', '8525916628', '9361637938', 'Jamunadevajamunadeva162@gmail.com', '1999-06-30', 23, '3', '2', 'Rajan', 'Farmer', 7000.00, 3, 0.00, 300000.00, 'Kallakurichi', 'Kallakurichi', '2211030001', '', '1', 'upload_files/candidate_tracker/81787393907_R.Jamuna - resume.pdf', NULL, '2', '2022-11-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 08:14:23', 1, '2022-11-03 08:18:31', 0, NULL, 1),
(10818, '', '0', '9360739588', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 08:57:39', 0, NULL, 0, NULL, 1),
(10819, '', '0', '9952066084', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 09:04:22', 0, NULL, 0, NULL, 1),
(10820, 'abul faizal s', '4', '8056354505', '', 'abulfaizal2001@gmail.com', '2001-02-19', 21, '2', '2', 'sheik mujibar rahman', 'driver', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2211030004', '2', '1', 'upload_files/candidate_tracker/39397507431_AF resume-1-2.pdf', NULL, '1', '2022-11-03', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok Can be trained fresher need to open up can give a try he is from vadapalani,kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 09:21:30', 1, '2022-11-03 09:23:15', 0, NULL, 1),
(10821, '', '0', '7358510578', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 09:26:08', 0, NULL, 0, NULL, 1),
(10822, 'Lokeshraj.R', '6', '8825963569', '', 'lraj9824@gmail.com', '2002-01-22', 20, '1', '2', 'Rajendran.N', 'Mechanic', 10000.00, 1, 0.00, 18000.00, '14/48, nagoji street,triplicane,chennai-5', 'Triplicane', '2211030006', '', '1', 'upload_files/candidate_tracker/82783191621_Lokeshraj- RESUME.pdf', NULL, '3', '2022-11-03', 0, 'P1066', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'Sales Sustainability Doubts', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 09:50:08', 1, '2022-11-03 09:56:11', 0, NULL, 1),
(10823, 'K Nirmal Kumar', '14', '9502108841', '', 'nirmalnaikar233@gmail.com', '2001-12-14', 20, '3', '2', 'Karthikeyan', 'Buisness', 700000.00, 1, 0.00, 40000.00, 'Chittoor', 'Chennai', '2211030007', '', '1', 'upload_files/candidate_tracker/64368412828_Nirmal Resume (1).pdf', NULL, '1', '2022-11-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 10:33:30', 1, '2022-11-03 10:38:15', 0, NULL, 1),
(10824, 'Thendral. R. T', '4', '9751178587', '9843022156', 'thendralthiravidan@gmail.com', '2002-04-23', 20, '3', '2', 'Meenakshi', 'Health Department', 10000.00, 2, 0.00, 12000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2211030008', '', '1', 'upload_files/candidate_tracker/51121990432_THENDRAL R.T.doc', NULL, '1', '2022-11-03', 0, '', '3', '59', '2022-11-10', 126312.00, '', '4', '2023-01-05', '2', 'Selected for Sithy - Thanjavur Team - consultant Role', '1', '2', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-03 10:34:38', 60, '2022-11-08 06:07:20', 0, NULL, 1),
(10825, 'Archana', '14', '9080916767', '', 'archanaammucs@gmail.com', '2001-12-27', 20, '3', '2', 'Sekar', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Kallakurichi', 'Bangalore', '2211030009', '', '1', 'upload_files/candidate_tracker/49075442586_Archana_Web Developer.pdf', NULL, '3', '2022-11-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 10:35:24', 1, '2022-11-03 10:40:08', 0, NULL, 1),
(10826, 'Priyadharshini. S', '4', '9003475245', '9047724634', 'Priyadharshinisethuraman2001@gmail.com', '2001-12-15', 20, '3', '2', 'Jayanthi. S', 'Hotel cook', 8000.00, 1, 0.00, 10000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2211030010', '', '1', 'upload_files/candidate_tracker/93868793247_priya resume 0.1.pdf', NULL, '1', '2022-11-03', 0, '', '3', '59', '2022-11-10', 126312.00, '', '3', '2022-12-03', '2', 'Selected for Consultant Role - Thanjavur', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-03 10:35:31', 60, '2022-11-08 04:19:44', 0, NULL, 1),
(10827, 'RAJESHKANNAN', '5', '7305869698', '', 'rajeshmba909@gmail.com', '1987-03-20', 35, '2', '1', 'Sowmya', 'Housewives', 15000.00, 1, 27000.00, 30000.00, 'Chennai', 'Chennai', '2211030011', '25', '2', 'upload_files/candidate_tracker/53714038031_NRAJ resume-1 (1).docx', NULL, '1', '2022-11-03', 0, '', '3', '59', '1970-01-01', 345696.00, '', '8', '1970-01-01', '1', 'Selected for GK sir Team with PF/ESI', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '3,4', NULL, NULL, NULL, 1, '2022-11-03 10:53:16', 60, '2022-11-05 02:32:08', 0, NULL, 1),
(10828, 'Roahit Vijay', '23', '9487721544', '', 'roahitvijay@gmail.com', '2000-01-24', 22, '4', '2', 'Gouthaman', 'Business', 60000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Chennai', '2211030012', '', '1', 'upload_files/candidate_tracker/79939567346_Resumeupdated_compressed.pdf', NULL, '2', '2022-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 11:08:51', 1, '2022-11-03 11:13:39', 0, NULL, 1),
(10829, 'Ranjith', '31', '8778831611', '', 'bowbotox@gmail.com', '1995-06-09', 27, '4', '2', 'Meenakshi', 'Coolie', 10000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2211030013', '', '1', 'upload_files/candidate_tracker/19431406080_CV_2022103119070548.pdf', NULL, '1', '2022-11-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 11:21:38', 1, '2022-11-03 11:25:03', 0, NULL, 1),
(10830, '', '0', '7305324783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 12:03:00', 0, NULL, 0, NULL, 1),
(10831, 'Saranbabu', '6', '8610367952', '', 'Ashwini377@gmail.com', '2002-02-20', 20, '3', '2', 'Sarathbabu', 'Manager', 12000.00, 1, 18000.00, 18000.00, 'Ashoknagar', 'Ashoknagar', '2211030015', '', '2', 'upload_files/candidate_tracker/49950022152_Saran.pdf', NULL, '1', '2022-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Sales Calling not interested\n', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 12:17:07', 1, '2022-11-03 01:34:33', 0, NULL, 1),
(10832, 'Karthik.c', '6', '9790276850', '8903045045', 'karthik612001@gmail.com', '2001-01-05', 21, '1', '2', 'Chelladurai.k', 'Conductor', 1.00, 1, 0.00, 15.00, '2nd pilliyar Kovil street Ashok Nagar Chennai', '2nd Pilliyar Kovil Street Ashok Nagar Chennai', '2211030016', '', '1', 'upload_files/candidate_tracker/7537837821_Karthik resume.pdf', NULL, '1', '2022-11-03', 0, 'P1066', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Sales and looking for IT but inJava', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 12:18:54', 1, '2022-11-03 12:25:41', 0, NULL, 1),
(10833, '', '0', '8680964239', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 12:41:46', 0, NULL, 0, NULL, 1),
(10834, 'Gokulakrishnan. V', '23', '8940028967', '', 'gokulakrishnan.v10@gmail.com', '1996-07-10', 26, '2', '2', 'Valu', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Dharampuri', 'Kundrathur', '2211030018', '1', '1', 'upload_files/candidate_tracker/61781401290_Gokulakrishnana v.doc', NULL, '1', '2022-11-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills need to learn a lot not much enthu will not sustain ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-03 12:44:17', 85, '2022-11-03 01:10:07', 0, NULL, 1),
(10835, 'Keerthana V', '13', '6380444214', '', 'keerthanapbt@gmail.com', '2007-11-03', 0, '3', '2', 'VINAYAGAM S', 'Cooley', 20000.00, 3, 0.00, 15000.00, 'Vellore', 'Vellore', '2211030019', '', '1', 'upload_files/candidate_tracker/56707511757_V KEERTHANA- Resume.pdf', NULL, '2', '2022-11-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 03:31:12', 1, '2022-11-03 03:34:44', 0, NULL, 1),
(10836, '', '0', '9840297689', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 04:04:45', 0, NULL, 0, NULL, 1),
(10837, 'Enaiyathulla M', '31', '6382040679', '9943845505', 'Enaiyamj@gmail.com', '1995-07-19', 27, '2', '2', 'Fathima', 'Farmar', 5000.00, 1, 0.00, 17.00, 'Pudukkottai', 'Thambaram', '2211030021', '1', '1', 'upload_files/candidate_tracker/42668960778_Enaiyathulla Resume-1.pdf', NULL, '1', '2022-11-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills Career Gap Will not sustain in our roles not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-03 05:22:25', 99, '2022-11-05 02:35:46', 0, NULL, 1),
(10838, 'Arumugam S', '14', '7397267078', '7358466219', 'arusudalai2000@gmail.com', '2000-09-15', 22, '4', '2', 'Sudalai Muthu A', 'Contractor', 40000.00, 1, 0.00, 25.00, 'Chennai', 'Chennai', '2211030022', '', '1', 'upload_files/candidate_tracker/74776272308_ARUMUGAM\'s Resume.pdf', NULL, '1', '2022-11-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 05:23:27', 1, '2022-11-03 06:34:38', 0, NULL, 1),
(10839, 'Ranjith', '31', '9176883663', '8778831611', 'bowbotox@gmail.com', '1995-06-09', 27, '2', '2', 'Deenadhayalan', 'Coolie', 25000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2211030023', '1', '1', 'upload_files/candidate_tracker/18863846958_CV_2022103119070548.pdf', NULL, '1', '2022-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Salary Exp is high Will not sustain for a long not much strong in basics', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-03 05:29:59', 85, '2022-11-04 10:20:19', 0, NULL, 1),
(10840, '', '0', '9384479752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 11:26:45', 0, NULL, 0, NULL, 1),
(10841, 'Jeyasri K', '4', '9597188379', '8056564028', 'Sri887152@gmail.c', '1994-07-22', 28, '3', '1', 'Karthikeyan', 'Hr manager', 16000.00, 0, 16000.00, 16000.00, 'Erode', 'Erode', '2211040001', '', '2', 'upload_files/candidate_tracker/92809836123_K.JAYASHREE Resume-1-1.doc', NULL, '1', '2022-11-04', 10, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 10:34:59', 1, '2022-11-04 10:46:47', 0, NULL, 1),
(10842, 'PRIYATHARISINI E', '2', '9361736879', '', 'priyaeka1213@gmail.com', '1999-06-12', 23, '3', '2', 'K Ekambaram', 'Retired District Education Officer', 100000.00, 2, 0.00, 300000.00, 'Tindivanam', 'Chennai', '2211040002', '', '1', 'upload_files/candidate_tracker/78738710965_CV_2022110211091697.pdf', NULL, '1', '2022-11-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very High CTC exp Crampete Student Not open for Term Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 10:51:54', 1, '2022-11-04 11:01:39', 0, NULL, 1),
(10843, 'Shri Janani', '2', '8667256092', '', 'jananisambath11@gmail.com', '1999-07-11', 23, '3', '2', 'Sampath Rajan', 'Retired', 40000.00, 1, 0.00, 300000.00, 'Madurai', 'Chennai', '2211040003', '', '1', 'upload_files/candidate_tracker/26676662074_Shri Janani S.pdf', NULL, '1', '2022-11-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC Crampete Student Exp around 20-25 not ready to come down', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 10:52:34', 1, '2022-11-04 11:04:41', 0, NULL, 1),
(10844, 'Jeghadish', '2', '9345470683', '', 'Jeghsiva10@gmail.com', '1998-07-10', 24, '3', '2', 'Kavitha', 'Teacher', 50000.00, 1, 0.00, 25000.00, 'Madurai near thiruppuvanam', 'Velachery, Baby Nagar', '2211040004', '', '1', 'upload_files/candidate_tracker/58855727192_Jeghadish_Resume_Sep_202.pdf', NULL, '1', '2022-11-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Crampete No basic Skills not suitable will not sustain interviewed by Bharath', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 11:02:57', 1, '2022-11-04 11:13:40', 0, NULL, 1),
(10845, '', '0', '9551266616', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211040005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-04 11:12:30', 0, NULL, 0, NULL, 1),
(10846, 'Shankar n', '21', '7826940436', '9551266616', 'Shankarhrd1978@gmail.com', '1978-02-10', 44, '3', '1', 'Vijayalakshmi', 'Home maker', 35000.00, 1, 35000.00, 35000.00, 'Thiruvalangadu', 'Thiruvallur', '2211040006', '', '2', 'upload_files/candidate_tracker/71954435711_a09ecd45-0039-427b-83ef-ae513854aa57.pdf', NULL, '1', '2022-11-04', 15, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Experienced HR profile,Interviewed by Gokul  and on hold', '3', '2', '0', '1', '1', '0', '2', '2022-11-11', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 11:37:10', 1, '2022-11-04 12:01:15', 0, NULL, 1),
(10847, 'Vishva D', '31', '6385625133', '9092009680', 'vishvabai320@gmail.com', '2000-05-17', 22, '4', '2', 'Dhayalan', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2211040007', '', '1', 'upload_files/candidate_tracker/12162524926_CV vishva.pdf', NULL, '3', '2022-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 05:16:27', 1, '2022-11-04 05:20:09', 0, NULL, 1),
(10848, 'Priyadharshini', '6', '9944524334', '9360534814', 'priyadharshini7862000@gmail.com', '1999-02-22', 23, '2', '2', 'Balasubramaniyam', 'Powerloom', 30000.00, 2, 12000.00, 16000.00, 'Komarapalayam', 'Komarapalayam', '2211040008', '1', '2', 'upload_files/candidate_tracker/79742309157_PRIYADHARSHINI (1).pdf', NULL, '1', '2022-11-05', 5, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'next round selected, but ramesh sir told low confident so we hold this profile.', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-04 05:32:52', 60, '2022-11-07 02:35:06', 88, '2022-11-15 06:22:42', 0);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10849, 'karthicksurya.r', '6', '6369402759', '9750054727', 'karthicksurya126@gmail.com', '2001-10-06', 21, '2', '2', 'rajasekar.a', 'accountant', 18000.00, 1, 0.00, 15000.00, 'erode', 'erode', '2211040009', '1', '1', 'upload_files/candidate_tracker/10142646336_resume.pdf', NULL, '1', '2022-11-05', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sales not interested', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-04 05:34:06', 60, '2022-11-07 02:35:44', 0, NULL, 1),
(10850, 'R.dhivya', '6', '9360534814', '9944524334', 'dhivy1411@gmail.com', '2002-11-14', 19, '2', '2', 'Ramasamy', 'Powerloom', 28000.00, 2, 11500.00, 15000.00, 'Komarapalayam', 'Komarapalayam', '2211040010', '1', '2', 'upload_files/candidate_tracker/68896838571_DHIVI_RESUME2_(1)_1666076416252_DHIVYA_R.pdf', NULL, '1', '2022-11-05', 5, '', '3', '59', '2022-11-08', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Suthagar Team with TDS 5%', '5', '2', '1', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-04 05:44:49', 60, '2022-11-07 06:29:25', 0, NULL, 1),
(10851, 'Karthikeyan', '2', '9840917544', '7358325214', 'karthi242000@gmail.com', '2000-04-02', 22, '3', '2', 'Shanmugaraj', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2211040011', '', '1', 'upload_files/candidate_tracker/3025625559_Karthikeyan-2.pdf', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 05:53:29', 1, '2022-11-04 05:56:49', 0, NULL, 1),
(10852, 'Ramkumar M', '6', '9789892369', '8682095180', 'vijay.ram340@gmail.com', '1990-05-25', 32, '1', '1', 'Manjula', 'Hw', 12000.00, 1, 15000.00, 150000.00, 'Chennai', 'Chennai', '2211050001', '', '2', 'upload_files/candidate_tracker/19687938751_RESUME 2.docx', NULL, '1', '2022-11-05', 0, 'P1066', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'Sales Sustainability Doubts', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-05 11:03:49', 1, '2022-11-05 11:10:33', 0, NULL, 1),
(10853, 'Mohamed Shakeel', '23', '9384469652', '9840337899', 'shakeelmohamed1999@gmail.com', '1999-09-28', 23, '2', '2', 'Badusha', 'Driving', 19000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2211050002', '1', '1', 'upload_files/candidate_tracker/36364057941_DOC-20221021-WA0010..pdf', NULL, '1', '2022-11-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Basic Skills Not open for TxxampC Will Not Sustain In Our Roles Not Suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-05 11:28:36', 99, '2022-11-05 02:42:23', 0, NULL, 1),
(10854, '', '0', '8056820871', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211050003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-05 12:13:39', 0, NULL, 0, NULL, 1),
(10855, 'Balamurugan b', '32', '9788809796', '8939774611', 'Bala.bvprofessional@gmail.com', '1989-05-10', 33, '1', '1', 'Savithri', 'House wife', 10000.00, 5, 520000.00, 600000.00, 'Chennai', 'Chennai', '2211050004', '', '2', 'upload_files/candidate_tracker/59471150640_BALA RESUME 2021_compressed.pdf', NULL, '2', '2022-11-05', 15, '55634', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Very High CTC Min Exp is 5.4 LPA Jagadeesh REference\n', '5', '1', '0', '1', '1', '0', '2', '2022-11-08', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-05 01:19:37', 1, '2022-11-05 02:37:41', 0, NULL, 1),
(10856, 'kalaiselvi', '5', '9884589973', '', 'kannamma752@gmail.com', '1999-08-27', 23, '2', '2', 'saravanna k', 'thinker', 12000.00, 1, 15000.00, 15000.00, 'chennai', 'chennai', '2211050005', '1', '2', 'upload_files/candidate_tracker/8864275884_Kalaiselvidocuments.pdf', NULL, '1', '2022-11-05', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok Have Exp in NOn Voice Data Entry not much comfort in Target Internal Reference Kindly check and let me know your inputs', '5', '2', '', '', '', '', '2', '1970-01-01', '3', '3', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-11-05 04:25:55', 60, '2022-11-05 06:36:30', 0, NULL, 1),
(10857, 'Stella M', '13', '9597053359', '9865078136', 'stellastella29669@gmail.com', '1999-08-30', 23, '3', '2', 'Muthu kutti P', 'Farmer cooli', 75.00, 2, 0.00, 15.00, 'Tirunelveli', 'Chennai', '2211050006', '', '1', 'upload_files/candidate_tracker/4887945632_STELLA RESUME (1)_31-Aug-22_16.26.38.docx', NULL, '1', '2022-11-07', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-05 05:54:13', 85, '2022-11-07 10:08:04', 0, NULL, 1),
(10858, 'R.THAMARAI SELVAN', '6', '9597105296', '7010768756', 'thamaraiselvanvlr@gmail.com', '1995-07-31', 27, '3', '2', 'RAMESH', 'Self working', 45000.00, 2, 15000.00, 17000.00, 'Vellore', 'Tnagar', '2211050007', '', '2', 'upload_files/candidate_tracker/61363281951_RTS RESUME 2022..doc', NULL, '1', '2022-11-07', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile need to open a lot Have Exp in Telecalling sustainability and handle our pressure is doubt,kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-05 06:14:36', 60, '2022-11-07 04:43:54', 0, NULL, 1),
(10859, 'Vengadajalapathi J', '4', '7339378331', '7904103821', 'vengadajalapathivijay9894@gmail.com', '1995-10-04', 27, '3', '2', 'Jayaraman s s', 'Business', 30000.00, 0, 225000.00, 300000.00, 'Cuddalore', 'Chennai', '2211050008', '', '2', 'upload_files/candidate_tracker/90741995007_Vijay9894 Resume.docx', NULL, '1', '2022-11-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much active Few months as telecaller nght shift will not sustain and handle our pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-05 06:15:54', 1, '2022-11-07 01:42:09', 0, NULL, 1),
(10860, 'Madhumitha.D', '26', '9840585224', '', 'madhumitha30111999@gmail.com', '1999-11-30', 22, '3', '2', 'M.Devarajana', 'Senior officer', 41000.00, 0, 16500.00, 35000.00, 'Chennai', 'Chennai', '2211050009', '', '2', 'upload_files/candidate_tracker/52688871589_Madhumitha D Resume.pdf', NULL, '1', '2022-11-10', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-05 06:26:24', 1, '2022-11-05 06:30:26', 0, NULL, 1),
(10861, '', '0', '8637679165', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211050010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-05 07:07:58', 0, NULL, 0, NULL, 1),
(10862, 'Surya', '6', '9344616641', '9244898039', 'Suryahandsome15@gmail.com', '2001-04-23', 21, '2', '2', 'Velumani', 'Farmer', 20000.00, 1, 11000.00, 120000.00, 'Sankagiri', 'Sankagiri', '2211050011', '1', '2', 'upload_files/candidate_tracker/49261108895_SURYA V.docx', NULL, '1', '2022-11-07', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for this role', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-05 08:47:52', 85, '2022-11-07 03:56:27', 0, NULL, 1),
(10863, '', '0', '7339146264', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211060001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-06 11:26:29', 0, NULL, 0, NULL, 1),
(10864, 'Venkadesh', '31', '9789528043', '9994119223', 'venkat.tv.raja@gmail.com', '1999-08-25', 23, '2', '2', 'Thirugnanam', 'Farmer', 50000.00, 3, 0.00, 300000.00, 'Thanjavur', 'Chennai', '2211060002', '1', '1', 'upload_files/candidate_tracker/59778471796_VenkatResume-2.pdf', NULL, '1', '2022-11-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher  basic skills all 3 sisters are in IT and have a lot of reference not much open with TxxampC will not sustain in a long run not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-06 06:15:57', 85, '2022-11-07 10:03:14', 0, NULL, 1),
(10865, '', '0', '7708770089', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211060003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-06 07:40:46', 0, NULL, 0, NULL, 1),
(10866, '', '0', '1312321321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211060004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-06 09:04:03', 0, NULL, 0, NULL, 1),
(10867, 'sathish kumar p', '14', '8940878796', '', 'sathishraje18@gmail.com', '2001-06-12', 21, '2', '2', 'parthasarathi', 'kooli', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2211070001', '2', '1', 'upload_files/candidate_tracker/68799405213_sathish.doc', NULL, '1', '2022-11-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Java openings not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 09:33:29', 1, '2022-11-07 09:36:34', 0, NULL, 1),
(10868, 'Soundharya A', '4', '7871282100', '', 'soundharyamenaka@gmail.com', '1998-10-07', 24, '3', '2', 'Arumugam p', 'Conductor', 30000.00, 2, 0.00, 12000.00, 'Erode', 'Erode', '2211070002', '', '1', 'upload_files/candidate_tracker/46716204649_CV.pdf', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 10:36:34', 1, '2022-11-07 10:42:13', 0, NULL, 1),
(10869, 'R.Yuvapriya', '4', '9442451400', '', 'yuvapriyait2111@gmail.com', '1998-11-21', 23, '3', '2', 'G. Rangasamy', 'Own Business', 20000.00, 2, 0.00, 10000.00, 'Erode', 'Erode', '2211070003', '', '1', 'upload_files/candidate_tracker/35407687790_yuva resume.pdf.pdf', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 10:36:37', 1, '2022-11-07 10:42:49', 0, NULL, 1),
(10870, 'Vikram T', '6', '8940442098', '', 'vikrampandi1971@gmail.com', '2002-02-13', 20, '3', '2', 'Thangapandi A', 'Security', 15000.00, 1, 0.00, 20000.00, 'Chengalpattu.', 'Mount, Adambakkam', '2211070004', '', '1', 'upload_files/candidate_tracker/56999019726_Curiculam vitae 10.pdf', NULL, '1', '2022-11-07', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for next round', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-07 10:48:46', 60, '2022-11-07 04:47:04', 0, NULL, 1),
(10871, 'Rajadurai.d', '4', '7094327422', '', 'rajadurai9024@gmail.com', '1989-06-07', 33, '3', '2', 'Seenivasan.r', 'Sales', 15000.00, 1, 0.00, 12000.00, 'Kumbakonam', 'Kumbakonam', '2211070005', '', '2', 'upload_files/candidate_tracker/67425413830_resum.pdf', NULL, '1', '2022-11-07', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 11:31:06', 1, '2022-11-07 11:41:56', 0, NULL, 1),
(10872, 'Rajadurai', '6', '7094327421', '', 'rajadurai9024@gmail.com', '2007-11-14', 15, '2', '2', 'Gather', 'Father', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2211070006', '25', '1', 'upload_files/candidate_tracker/13974064905_RAJADURAI RESUME.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication for Sales is not ok Attitude, Not suitable for our insurance Sales ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-07 11:45:46', 60, '2022-11-15 03:22:09', 0, NULL, 1),
(10873, 'A. Mohamed', '4', '6385826563', '9025872372', 'Mohamedasik775@gmail.com', '2002-05-26', 20, '3', '2', 'P. Abdul kadhar', 'Driver', 20000.00, 2, 0.00, 12000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2211070007', '', '1', 'upload_files/candidate_tracker/22529156375_mohamed.pdf', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 11:47:51', 1, '2022-11-07 11:54:54', 0, NULL, 1),
(10874, 'T. Siva shangari', '4', '9361438792', '9585776052', 'sshangari61@gmail.com', '2000-02-10', 22, '3', '2', 'Thirugnanam. R', 'Kooli', 85000.00, 3, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211070008', '', '1', 'upload_files/candidate_tracker/57635330265_T.SIVA SHANGARI.docx', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 11:48:20', 1, '2022-11-07 12:00:18', 0, NULL, 1),
(10875, 'Keerthi', '4', '6374401592', '', 'keerthikeerthi53675@gmail.com', '1999-05-15', 23, '3', '2', 'Chinnayan', 'Kuli', 60000.00, 1, 0.00, 10000.00, 'Nattarasankottai', 'Nattarasankottai', '2211070009', '', '1', 'upload_files/candidate_tracker/15911055382_keerthi my resume.pdf', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 11:48:24', 1, '2022-11-07 12:24:14', 0, NULL, 1),
(10876, '', '0', '8977600904', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 03:13:11', 0, NULL, 0, NULL, 1),
(10877, 'nivedha.v', '3', '6383298540', '', 'nivedhavengadesh3001@gmail.com', '2000-01-30', 22, '2', '2', 'vengadesh.g', 'engineer', 30000.00, 1, 0.00, 30000.00, 'karaikal', 'chennai', '2211070011', '1', '1', 'upload_files/candidate_tracker/82448798541_Nivedha.V_Resume.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for multiple profile ... seems like no job need .. not suit for our roles..', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-07 03:21:46', 99, '2022-11-21 06:28:18', 0, NULL, 1),
(10878, '', '0', '6380677381', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 03:28:51', 0, NULL, 0, NULL, 1),
(10879, 'Aravindhan M', '23', '6382630189', '7868926217', 'aravindhandm29@gmail.com', '2001-03-29', 21, '3', '2', 'Datchayaini', 'Daily worker', 10000.00, 1, 0.00, 250000.00, 'Arani', 'Chennai', '2211070013', '', '1', 'upload_files/candidate_tracker/90279559632_aravindhan_resume.pdf', NULL, '3', '2022-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 03:39:45', 1, '2022-11-07 03:45:37', 0, NULL, 1),
(10880, 'Sathiyapriya', '21', '8825555086', '', 'g.sathiyapriya399@gmail.com', '1999-01-03', 23, '4', '2', 'Gopal.M', 'Welder', 12000.00, 2, 18000.00, 22000.00, 'Chennai', 'Chennai', '2211070014', '', '2', 'upload_files/candidate_tracker/32357113511_Sathiya Priya resume.docx', NULL, '3', '2022-11-15', 45, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 03:55:05', 1, '2022-11-07 03:58:28', 0, NULL, 1),
(10881, 'Sachin', '23', '8939296608', '7358611348', 'sachin2272000@gmail.com', '2000-07-22', 22, '4', '2', 'Mallika', 'Daily wasage', 7500.00, 1, 0.00, 300000.00, 'Mamallapuram', 'Mamallapuram', '2211070015', '', '1', 'upload_files/candidate_tracker/6650005905_SachinResume (2).pdf', NULL, '3', '2022-11-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 03:58:56', 1, '2022-11-07 04:06:37', 0, NULL, 1),
(10882, 'gokul', '23', '8778083398', '', 'gokulsuresh0603@gmail.com', '2000-03-06', 22, '4', '2', 'sureshbabu', 'business', 50000.00, 1, 0.00, 250000.00, 'chennai', 'chennai', '2211070016', '', '1', 'upload_files/candidate_tracker/40061187646_Gokul_Resume.pdf', NULL, '1', '2022-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Java openings not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 05:45:34', 1, '2022-11-07 05:48:38', 0, NULL, 1),
(10883, 'Suriya prakash', '11', '9094686164', '', 'suriyaprakash6164@gmail.com', '2001-03-22', 21, '3', '2', 'Srinivasan', 'Self employed', 200000.00, 1, 0.00, 15000.00, 'Nungambakkam chennai', 'Nungambakkam Chennai', '2211070017', '', '1', 'upload_files/candidate_tracker/35047149924_Suriya_Prakash_(1)-859de538fd72a99a436162a3d46d8fd7-1.pdf', NULL, '1', '2022-11-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 05:50:27', 1, '2022-11-07 06:14:17', 0, NULL, 1),
(10884, '', '0', '7305846872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 05:55:20', 0, NULL, 0, NULL, 1),
(10885, 'Syed rasool bukhari', '28', '8680835869', '8667528400', 'suhailbukhari229@gmail.com', '2001-08-11', 21, '3', '2', 'Syed adil basha', 'B. Com c/s', 7000.00, 7, 0.00, 20000.00, 'Chennai triplicane', 'Triplicane chennai', '2211070019', '', '1', 'upload_files/candidate_tracker/41519417697_bukhari20fresh20resume201 (1).pdf', NULL, '1', '2022-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 05:59:47', 1, '2022-11-07 06:04:53', 0, NULL, 1),
(10886, 'K R NIRMAL KUMAR RAO', '17', '9360655013', '', 'nirmal192001@gmail.com', '2001-01-19', 21, '2', '2', 'K S RAMESH RAO', 'Retired Government Employee', 17000.00, 1, 0.00, 180000.00, 'No. 1/10 5th street P G AVENUE KATTUPAKKAM', 'No. 1/10 5th Street P G AVENUE KATTUPAKKAM', '2211070020', '1', '1', 'upload_files/candidate_tracker/87886661036_resume nirmal (1).pdf', NULL, '1', '2022-11-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable he is focusing on CMA preparing for that.Time being he is looking for Accounts will not sustain for a long', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-07 06:01:40', 85, '2022-11-08 11:32:34', 0, NULL, 1),
(10887, '', '0', '9963039080', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 06:08:42', 0, NULL, 0, NULL, 1),
(10888, '', '0', '9360164791', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 06:10:36', 0, NULL, 0, NULL, 1),
(10889, '', '0', '7401073600', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 06:11:57', 0, NULL, 0, NULL, 1),
(10890, '', '0', '9962633624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 06:13:51', 0, NULL, 0, NULL, 1),
(10891, 'divya s', '16', '9080567169', '9551472547', 'divyabeula@gmail.com', '1993-10-02', 29, '2', '1', 'saravanan k', 'gym trainer', 30000.00, 1, 38000.00, 30000.00, 'jafferkhapet', 'jafferkhanpet', '2211070025', '1', '2', 'upload_files/candidate_tracker/85745986176_Divya CV.doc', NULL, '1', '2022-11-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No,Have 8+ yrs Exp Writting Skills not upto the mark not suitable will not sustain Have 7 month old baby', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-07 06:24:58', 99, '2022-11-08 02:37:02', 0, NULL, 1),
(10892, 'Balaji R', '17', '9500645558', '', 'balajiravi250@gmail.com', '1999-05-04', 23, '3', '2', 'Ravi and shenbagam', 'Business', 25000.00, 2, 0.00, 27000.00, 'Dharmapuri', 'Chennai', '2211070026', '', '1', 'upload_files/candidate_tracker/10248017227_Balaji R.pdf', NULL, '1', '2022-12-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 06:28:27', 1, '2022-11-07 08:59:05', 0, NULL, 1),
(10893, '', '0', '6379712761', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 06:31:44', 0, NULL, 0, NULL, 1),
(10894, 'Sarath G', '5', '7358612288', '8807673288', 'sarathhrithikj@gmail.com', '2001-03-29', 21, '2', '2', 'Komathi G', 'House wife', 240000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2211070028', '1', '1', 'upload_files/candidate_tracker/39142286128_Sarath resume.pdf', NULL, '1', '2022-11-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication not suitable for our Sales /operation Roles', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-07 06:32:40', 99, '2022-11-08 02:39:29', 0, NULL, 1),
(10895, '', '0', '9538461713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 06:41:14', 0, NULL, 0, NULL, 1),
(10896, 'N.alagappan', '5', '7092343885', '9710039441', 'alagappan0713@gmail.com', '2001-07-13', 21, '2', '2', 'N.narayanan', 'Marketing', 20000.00, 4, 0.00, 15000.00, 'Arumbakkam', 'Chennai', '2211070030', '1', '1', 'upload_files/candidate_tracker/75211076571_N ALAGAPPAN RESUME-converted.pdf', NULL, '1', '2022-11-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable no communication no basic ideas in the accounts will not sustain', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-07 06:46:12', 85, '2022-11-08 11:32:59', 0, NULL, 1),
(10897, 'Yugabharathi S', '5', '9159458996', '', 'sobaugabharathi2000@gmail.com', '2000-11-11', 21, '2', '2', 'Sonaipandi', 'Artist', 6000.00, 1, 0.00, 15000.00, 'Manamadurai', 'Choolaimedu , Chennai', '2211070031', '1', '1', 'upload_files/candidate_tracker/32872810495_my resume.pdf', NULL, '1', '2022-11-08', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-07 06:47:57', 60, '2022-11-08 07:21:06', 0, NULL, 1),
(10898, 'Divya darshini S.D', '16', '8056093008', '8248399551', 'divyadarshini15112001@gmail.com', '2001-11-15', 20, '2', '2', 'G. Shankar', 'ICF', 50000.00, 1, 0.00, 15000.00, '56/138 Nageshwara guru swamy Street , Ayanavaram', '56/138 Nageshwara Guru Swamy Street, Ayanavaram', '2211070032', '1', '1', 'upload_files/candidate_tracker/56239647028_Divya darshini.SDresume.pdf', NULL, '1', '2022-11-08', 0, '', '3', '59', '2022-11-10', 156000.00, '', '5', '1970-01-01', '2', 'Selected for MIS Role,Communication ok can be trained Gokul interviewed the final round', '3', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-07 07:03:58', 60, '2022-11-08 07:37:45', 0, NULL, 1),
(10899, '', '0', '9176457598', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 07:16:36', 0, NULL, 0, NULL, 1),
(10900, '', '0', '7010505573', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 07:54:43', 0, NULL, 0, NULL, 1),
(10901, '', '0', '6381112703', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070035', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 08:01:00', 0, NULL, 0, NULL, 1),
(10902, 'Hemamalini S', '4', '8428139922', '', 'hemamalini2799@gmail.com', '1999-03-27', 23, '2', '2', 'Shri sai sivakumaran', 'Business', 40000.00, 1, 14000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2211070036', '1', '2', 'upload_files/candidate_tracker/40625414763_Hemamalini S Resume.pdf', NULL, '1', '2022-11-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Calling Communication Ok ,but sustainability doubts 2.5 yrs 4 companies changed and even gap is there initiated SA need to check with her family and confirm', '1', '1', '', '1', '1', '', '2', '2022-11-10', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-07 09:26:41', 85, '2022-11-09 11:21:44', 0, NULL, 1),
(10903, '', '0', '7299381234', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070037', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 11:17:10', 0, NULL, 0, NULL, 1),
(10904, '', '0', '9363510270', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070038', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 11:32:45', 0, NULL, 0, NULL, 1),
(10905, '', '0', '7200447543', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 12:03:50', 0, NULL, 0, NULL, 1),
(10906, '', '0', '9840723228', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 08:42:57', 0, NULL, 0, NULL, 1),
(10907, 'Dharani Poosala', '16', '8074159436', '9490255266', 'pdharani2@gmail.com', '1992-06-07', 30, '2', '1', 'K. Lokanadhan', 'Accountent', 2.50, 4, 250000.00, 300000.00, 'Andhara pradesh', 'Chennai', '2211080003', '1', '2', 'upload_files/candidate_tracker/25628110287_DHARANIP-RESUME.pdf', NULL, '1', '2022-11-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok Have Exp in MIS ,can be trained 2nd round interviewed by Gokul need to go with the same pay if she is ok for 19K includes PF/ESI/PT we can proceed', '3', '1', '', '1', '1', '', '2', '2022-11-09', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-08 09:58:57', 99, '2022-11-08 02:42:47', 0, NULL, 1),
(10908, 'janani g', '22', '7200930630', '', 'jananigglow19@gmail.com', '1998-04-19', 24, '3', '2', 'govind', 'mechanical technician', 60000.00, 2, 0.00, 250000.00, 'chennai', 'chennai', '2211080004', '', '1', 'upload_files/candidate_tracker/23275092229_J resume - Copy.pdf', NULL, '2', '2022-11-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 10:06:18', 1, '2022-11-08 10:09:25', 0, NULL, 1),
(10909, 'Kaviya.s', '4', '7395818461', '9578481236', 'Kjkowsalya1621@gmail.com', '1997-10-21', 25, '1', '2', 'Selvam.k', 'Driver', 18000.00, 1, 15000.00, 18000.00, 'Cuddalore', 'Chennai', '2211080005', '', '2', 'upload_files/candidate_tracker/9546257405_Adobe Scan 08 Nov 2022.pdf', NULL, '1', '2022-11-08', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 10:23:53', 1, '2022-11-08 10:42:06', 0, NULL, 1),
(10910, '', '0', '7092691798', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 10:43:49', 0, NULL, 0, NULL, 1),
(10911, '', '0', '9363034936', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 10:57:38', 0, NULL, 0, NULL, 1),
(10912, '', '0', '9043012762', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 10:59:58', 0, NULL, 0, NULL, 1),
(10913, 'Ayyappan k', '4', '8072419066', '9698185389', 'goodfellaschn@gmail.com', '1993-07-09', 29, '2', '2', 'Devi k', 'Agriculture', 200000.00, 0, 18000.00, 21000.00, 'Chennai', 'Chennai', '2211080009', '1', '2', 'upload_files/candidate_tracker/38221848103_RESUME_AYYAPPAN[.pdf', NULL, '1', '2022-11-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok Have Exp 2nd round interiewed by GK sir as Shanmugam is not available in office will come for final round tomorrow', '1', '1', '', '1', '1', '', '2', '2022-11-09', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-08 11:08:40', 85, '2022-11-08 11:31:52', 0, NULL, 1),
(10914, 'VIGNESHKUMAR KANNAN', '7', '6379712791', '', 'kvicky2706@gmail.com', '1995-06-27', 27, '2', '2', 'Kannan', 'HOTEL', 25000.00, 2, 18000.00, 25000.00, 'Madurai', 'Chennai', '2211080010', '1', '2', 'upload_files/candidate_tracker/19553275893_Updated Resume.doc', NULL, '1', '2022-11-08', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication not open for Sales', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '4', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-08 12:13:15', 85, '2022-11-08 12:39:08', 0, NULL, 1),
(10915, 'S balaji', '6', '7358385808', '8608921696', 'balajibj85973@gmail.com', '1998-07-09', 24, '2', '2', 'Parent', 'Business', 30000.00, 3, 18000.00, 23000.00, 'Perungundi railways road', 'Perungundi railways road', '2211080011', '1', '2', 'upload_files/candidate_tracker/6912678656_Resume_Balaji resume_Format1.pdf', NULL, '1', '2022-11-08', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Telecalling 5050 Profile Can give a try Will come for 2nd round tomorrow', '5', '1', '', '1', '1', '', '2', '2022-11-09', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-08 12:13:17', 85, '2022-11-08 12:39:20', 0, NULL, 1),
(10916, 'Balaji.s', '33', '7338972321', '', 'Balajisrini2108@gmail.com', '2001-08-21', 21, '2', '2', 'K.srinivasan', 'Quality checker in mepz', 12000.00, 1, 0.00, 180000.00, 'Chennai', 'Maraimalai nagar', '2211080012', '1', '1', 'upload_files/candidate_tracker/77361861945_resume.1.pdf', NULL, '1', '2022-11-16', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance Fresher need to train a lot,ready to relocate need time to confirm the TxxampC if he comes back let us try', '4', '1', '', '1', '1', '', '2', '2022-11-18', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-08 12:16:19', 85, '2022-11-16 10:44:26', 0, NULL, 1),
(10917, 'Vasanth', '4', '7418082794', '', 'vasanthvasanth0460@gmail.com', '2003-11-24', 18, '3', '2', 'Vanitha', 'Sales', 15000.00, 4, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211080013', '', '1', 'upload_files/candidate_tracker/33349411465_20221105_160922_0000.pdf', NULL, '1', '2022-11-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 12:18:47', 1, '2022-11-08 12:26:48', 0, NULL, 1),
(10918, '', '0', '9600175221', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 02:53:08', 0, NULL, 0, NULL, 1),
(10919, 'Angel', '11', '9360776354', '9841177948', 'angelnivi02@gmail.com', '2001-07-02', 21, '3', '2', 'Parent', 'Employer in company', 12.00, 2, 0.00, 15.60, 'Chennai', 'Chennai', '2211080015', '', '1', 'upload_files/candidate_tracker/96774635322_angelgp.pdf', NULL, '1', '2022-11-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 03:06:23', 1, '2022-11-08 03:11:12', 0, NULL, 1),
(10920, 'Mathesh k', '33', '9962502166', '', 'Km75009@gmail.com', '2000-11-19', 21, '2', '2', 'Karthikeyan', 'Business', 25000.00, 1, 0.00, 15000.00, '32/18 kasipuram b block royapuram ch 13', '89/2butchammal Street New washernmenpet ch-81', '2211080016', '1', '1', 'upload_files/candidate_tracker/72102522661_I am sharing', NULL, '1', '2022-11-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is in internship till Nov end can give a try if he comes back let us try', '4', '1', '', '1', '1', '', '2', '2022-11-30', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-08 03:40:57', 85, '2022-11-09 11:58:02', 0, NULL, 1),
(10921, '', '0', '9092129339', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 04:37:21', 0, NULL, 0, NULL, 1),
(10922, 'Vineeth C', '5', '9360492936', '8270918649', 'vineethvava40@gmail.com', '1999-11-13', 22, '2', '1', 'Varsha', 'B.ed holder', 17000.00, 1, 17000.00, 22000.00, '19/12 pazhayapadi, Cherambadi the NILGIRIS 643205', 'Chennai', '2211080018', '1', '2', 'upload_files/candidate_tracker/95586115717_VINEETH.C ... RESUME.pdf', NULL, '1', '2022-11-09', 0, '', '3', '59', '2022-11-21', 246000.00, '', '', '2022-11-22', '1', 'Seleted for Manikandan Team with Pf/ESI/PT', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-08 04:45:25', 60, '2022-11-17 06:10:09', 0, NULL, 1),
(10923, 'Nithishkumar', '6', '8760569812', '', 'nithishkumarnithi02@gmail.com', '2000-07-23', 22, '2', '2', 'Ravi R', 'Bulding Work', 40000.00, 1, 18000.00, 18000.00, 'Erode', 'Erode', '2211080019', '1', '2', 'upload_files/candidate_tracker/92651094995_1661606975369_Nithish CV-1 (2).pdf', NULL, '1', '2022-11-09', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for this profile', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-08 04:46:52', 85, '2022-11-09 12:43:08', 0, NULL, 1),
(10924, 'Vivekha', '33', '8248531150', '', 'vivekha1999@gmail.com', '1999-08-06', 23, '2', '2', 'V. Kamala kannan', 'TV technician', 15000.00, 1, 0.00, 12000.00, 'Ambattur', 'Ambattur', '2211080020', '1', '1', 'upload_files/candidate_tracker/86366133248_Resume_Vivekha resume_Format7.pdf', NULL, '1', '2022-11-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok need to travel from ambattur ,have a trainee exp,checked for other profiles but not open for those', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-08 04:47:44', 85, '2022-11-09 03:36:05', 0, NULL, 1),
(10925, 'Sanjay', '33', '6374632088', '', 'Sanjaysanjay@gmail.com', '2001-07-16', 21, '3', '2', 'Panjamoorthi', 'Former', 30000.00, 1, 0.00, 18000.00, 'Kumbakonam', 'Thuraipakkam', '2211080021', '', '1', 'upload_files/candidate_tracker/6351523765_SANJAY-1 (1).docx', NULL, '1', '2022-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 04:54:15', 1, '2022-11-09 10:59:05', 0, NULL, 1),
(10926, 'Mohamed Afsar s', '33', '9585188956', '', 'afsardn04@gmail.com', '2002-01-04', 20, '2', '2', 'Shahul hameed D', 'Left', 10000.00, 0, 0.00, 13000.00, 'Thiruvarur', 'Triplicane chennai', '2211080022', '1', '1', 'upload_files/candidate_tracker/47955701229_VICAPRI RES_1667392937841_Mohamed afsar.pdf', NULL, '1', '2022-11-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Roles, Will Not Sustain ', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-08 05:04:46', 85, '2022-11-10 11:15:10', 0, NULL, 1),
(10927, 'Dhivya Bharathi.B', '4', '8754270603', '', 'dhivyabharathi0802@gmail.com', '2001-02-08', 21, '3', '2', 'Shantha gowri.B', 'ICDS worker', 10000.00, 0, 0.00, 20000.00, 'Vellore', 'Chennai', '2211080023', '', '1', 'upload_files/candidate_tracker/55069542694_Document (2).docx', NULL, '1', '2022-11-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 06:15:06', 1, '2022-11-10 10:53:53', 0, NULL, 1),
(10928, 'Pavithra M', '21', '9150838135', '', 'pavi.m562002@gmail.com', '2002-06-05', 0, '3', '2', 'murugan', 'vegtable business', 30000.00, 2, 0.00, 15000.00, 'choolaimedu', 'choolaimedu', '2211080024', '', '1', 'upload_files/candidate_tracker/49598976316_Pavithra\'s Resume.docx', NULL, '1', '2022-11-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 07:59:05', 1, '2022-11-08 08:07:08', 0, NULL, 1),
(10929, 'GANESAN S', '4', '7904555641', '9710585747', 'ganganesh10@gmail.com', '1992-08-31', 30, '2', '2', 'SUBRAMANI M', 'Book Binder', 20000.00, 1, 0.00, 17000.00, 'Avadi', 'Avadi', '2211090001', '1', '1', 'upload_files/candidate_tracker/29090017129_GAnesan resume .pdf', NULL, '3', '2022-11-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NO ideas in Accounts too long distance  will not sustain not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-09 07:58:09', 60, '2022-11-09 08:05:48', 0, NULL, 1),
(10930, '', '0', '7812878996', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211090002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-09 08:41:24', 0, NULL, 0, NULL, 1),
(10931, 'Pooventhan E', '6', '9629056285', '8489382309', 'pooventhan80@gmail.com', '1994-02-09', 28, '2', '2', 'A.Elayappan', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2211090003', '1', '1', 'upload_files/candidate_tracker/33087462613_Pooventhiran resume.pdf', NULL, '1', '2022-11-09', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for our job', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-09 09:49:25', 85, '2022-11-09 03:38:48', 0, NULL, 1),
(10932, 'Udaya Kumar', '33', '6383546330', '7904419881', 'udaya7414@gmail.com', '1997-08-30', 25, '2', '2', 'Kothandaraman', 'Farmer', 20000.00, 1, 14000.00, 22000.00, 'Chengalpattu', 'Chengalpattu', '2211090004', '1', '2', 'upload_files/candidate_tracker/5601164501_Udaya Kumar K UPDATED RESUME (2).pdf', NULL, '1', '2022-11-09', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas in Account Skills too long distance will not sustain not suitable', '4', '1', '', '1', '1', '', '2', '1970-01-01', '3', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-09 09:56:03', 85, '2022-11-09 03:34:57', 0, NULL, 1),
(10933, 'P.punithamozhi', '6', '9677020954', '', 'Pmozhi.sp@gmail.com', '1990-05-21', 32, '3', '1', 'S.nagendran', 'Cad cam engineer', 30000.00, 3, 13000.00, 15000.00, 'Chennai', 'Chennai', '2211090005', '', '2', 'upload_files/candidate_tracker/56472732507_PUNITHA RESUME.docx', NULL, '1', '2022-11-09', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our Sales not much open for Sales calls your own direct reference do check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-09 10:07:59', 60, '2022-11-09 07:57:06', 88, '2022-11-15 06:22:42', 0),
(10934, '', '0', '9698469913', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211090006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-09 10:26:59', 0, NULL, 0, NULL, 1),
(10935, 'Yogeswari. S', '4', '9080327436', '', 'yogeswari192002@gmail.com', '2002-05-19', 20, '3', '2', 'Somasundaram. J', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211090007', '', '1', 'upload_files/candidate_tracker/39048167784_shalu resume.pdf', NULL, '1', '2022-11-09', 0, '', '3', '59', '2022-11-21', 126312.00, '', '3', '2022-11-24', '2', 'selected for  Thanjavur Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-09 11:46:29', 60, '2022-11-17 06:17:13', 0, NULL, 1),
(10936, 'S. Vidhya', '4', '9597339528', '', 'Svidhiyav813@gmail.com', '2001-12-02', 20, '3', '2', 'Sathiya moorthi', 'Former', 30000.00, 0, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211090008', '', '1', 'upload_files/candidate_tracker/82105135384_vidhya resume.pdf', NULL, '1', '2022-11-09', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'she not fit for telesales and voice is not clear and not much profile', '1', '2', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-09 11:46:32', 1, '2022-11-09 12:04:34', 0, NULL, 1),
(10937, 'R. Suriya', '4', '7305838635', '', 'suriyaramalingam112@gmail.com', '1998-02-12', 24, '3', '2', 'A. Ramalingam', 'Driver', 12000.00, 1, 0.00, 12000.00, 'Old kumbagonam road. Palliaharagaram Thanjavur', 'Thanjavur', '2211090009', '', '1', 'upload_files/candidate_tracker/79605706716_Suriya Ramalingam (1).pdf', NULL, '1', '2022-11-09', 0, '', '3', '59', '2022-11-21', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Thanjavur Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-09 11:46:38', 60, '2022-11-17 06:21:34', 0, NULL, 1),
(10938, 'X. Aarthi', '4', '8428589568', '', 'xavieraarthi1907@gmail.com', '2002-07-19', 20, '3', '2', 'D. S. Xavier', 'Former', 30000.00, 3, 0.00, 9000.00, 'Thanjavur', 'Thanjavur', '2211090010', '', '1', 'upload_files/candidate_tracker/37280950005_AARTHI.RESUME.pdf', NULL, '1', '2022-11-09', 0, '', '3', '59', '2022-11-12', 126312.00, '', '', '2022-11-15', '2', 'Selected for Thanjavur - 5050 Communication Need to open a lot', '1', '2', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-09 11:46:51', 60, '2022-11-12 10:46:46', 0, NULL, 1),
(10939, 'K.shalini', '4', '7418911716', '', 'Shalinivaralakshmi@gmail.com', '2002-04-19', 20, '3', '2', 'A.kumaran', 'Painter', 110000.00, 2, 0.00, 10000.00, '1200,Jabamalai puram kalimedu Post Thanjavur', 'Thanjavur', '2211090011', '', '1', 'upload_files/candidate_tracker/56531335564_shalu resume.docx', NULL, '1', '2022-11-09', 0, '', '3', '59', '2022-11-21', 126312.00, '', '3', '2022-11-24', '2', 'selected for consultant role thanjavur', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-09 11:47:52', 60, '2022-11-16 06:56:37', 0, NULL, 1),
(10940, 'KISHORE sundar', '5', '9080280910', '6379905465', 'kishoresundar70@gmail.com', '1999-03-15', 23, '2', '2', 'T.s.thangaraj', 'Bsnl', 30000.00, 1, 23500.00, 26000.00, 'Royapuram', 'Royapuram', '2211090012', '1', '2', 'upload_files/candidate_tracker/9055402503_Kishore Sundar updated resume.pdf', NULL, '3', '2022-11-09', 0, '', '3', '59', '2022-11-14', 288000.00, '', '2', '2022-11-15', '1', 'Selected for Manikandan Team with PF/ESI', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-09 01:11:38', 60, '2022-11-14 10:13:36', 0, NULL, 1),
(10941, '', '0', '9994643173', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211090013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-09 01:42:28', 0, NULL, 0, NULL, 1),
(10942, 'Sathishkumar', '21', '6382201544', '9843779650', 'Sathishkumar17ucm36@gmail.com', '2000-05-07', 22, '3', '2', 'Arjunan', 'Labour', 12000.00, 1, 0.00, 13000.00, 'Kallakurichi', 'Aminjikarai', '2211090014', '', '1', 'upload_files/candidate_tracker/1936629318_SK Resume with image.docx', NULL, '1', '2022-11-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles, Will Not Sustain ', '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-09 05:53:46', 1, '2022-11-09 06:51:31', 0, NULL, 1),
(10943, 'gopala krishnan', '23', '9345047842', '', 'gopalakrishnan86317@gmail.com', '2001-05-14', 21, '3', '2', 'kumaran', 'bronze business', 30000.00, 1, 0.00, 20000.00, 'kumbakonam', 'shollinganalore', '2211090015', '', '2', 'upload_files/candidate_tracker/68185785291_Gopala Krishnan k-1.pdf', NULL, '1', '2022-11-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-09 06:41:34', 1, '2022-11-09 06:50:40', 0, NULL, 1),
(10944, 'Yash Nichani M', '33', '7550252394', '9840246620', 'yashnichani9999@gmail.com', '1999-11-10', 22, '2', '2', 'Mukesh Nichani', 'Real estate broker and vastu consultant', 25000.00, 0, 0.00, 15000.00, 'Tnagar Chennai', 'Tnagar Chennai', '2211090016', '1', '1', 'upload_files/candidate_tracker/82803371003_Yash Nichani Resume.pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude issue,will not sustain and handle our roles not suitable', '4', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-09 06:54:15', 99, '2022-11-16 02:41:07', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10945, 'Yokeshwaran J', '6', '8754178320', '9344766807', 'yokeshdcruze@gmail.com', '2000-11-27', 21, '3', '2', 'Jayakumar', 'Sales executive', 50000.00, 0, 20000.00, 25000.00, 'Kallakurichi', 'Chennai', '2211090017', '', '2', 'upload_files/candidate_tracker/56224486839_DOC-20221031-WA0000..pdf', NULL, '3', '2022-11-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-09 07:13:19', 1, '2022-11-10 10:20:41', 0, NULL, 1),
(10946, '', '0', '8838848407', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211100001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-10 07:48:28', 0, NULL, 0, NULL, 1),
(10947, '', '0', '9177000886', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211100002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-10 08:43:19', 0, NULL, 0, NULL, 1),
(10948, 'SADHASIVAM M', '4', '9715777126', '6380194080', 'sadhasivam.erd33@gmail.com', '2001-02-15', 21, '3', '2', 'MAGUDAPATHI', 'Electric contractor', 20.00, 1, 0.00, 20000.00, 'Erode', 'Vadapalani (Chennai)', '2211100003', '', '1', 'upload_files/candidate_tracker/99239910985_SADHASIVAM_CV.pdf', NULL, '1', '2022-11-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-10 10:51:38', 1, '2022-11-10 10:56:19', 0, NULL, 1),
(10949, 'mohamed afthaf', '33', '8870911835', '', 'mohamedafthaf2001@gmail.com', '2001-10-25', 21, '2', '2', 'nina mohamed', 'water purification', 400000.00, 2, 0.00, 12000.00, 'thiruvarur', 'chennai', '2211100004', '1', '1', 'upload_files/candidate_tracker/65694502481_afthaf res 55.pdf', NULL, '1', '2022-11-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Roles, Will Not Sustain ', '4', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-10 10:53:31', 85, '2022-11-10 11:30:13', 0, NULL, 1),
(10950, 'Jayalakshmi g', '4', '9677712739', '', 'jayalakshmi642429@gmail.com', '2001-03-06', 21, '3', '2', 'Govindharaj', 'auto driver', 10000.00, 1, 0.00, 9000.00, 'M chavady', 'M chavdy', '2211100005', '', '1', 'upload_files/candidate_tracker/13044407815_jayalakshmi (1).pdf', NULL, '1', '2022-11-10', 0, '', '3', '59', '2022-11-28', 126312.00, '', '3', '2023-01-09', '2', 'Selected for Thanjavur Consultant Role 5050 Profile sustainability doubts', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-10 11:00:08', 60, '2022-11-24 06:26:09', 0, NULL, 1),
(10951, 'Shinthiyasharan s', '4', '8248107641', '', 'shinthiyasharan@gmail.com', '2002-11-10', 20, '3', '2', 'Samuel inbakumar', 'Labour', 7000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211100006', '', '1', 'upload_files/candidate_tracker/94257716734_Priyanka Resume-1.pdf', NULL, '1', '2022-11-10', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for telesales and voice not clear and not fit for telesales', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-10 11:00:11', 1, '2022-11-10 11:26:07', 0, NULL, 1),
(10952, 'Ranjani r', '4', '9042996684', '', 'ranjani15042002@gmail.com', '2002-04-15', 20, '3', '2', 'Ravi', 'Labour', 3500.00, 1, 0.00, 8000.00, 'Soorakkottai', 'Soorakottai', '2211100007', '', '1', 'upload_files/candidate_tracker/20404458241_ranjani.pdf', NULL, '1', '2022-11-10', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'very poor and less knownedlege not fit for team and tele sales', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-10 11:01:10', 1, '2022-11-10 11:16:38', 0, NULL, 1),
(10953, 'Pradeepa', '4', '8122373374', '', 'tkpradeepa28@gmail.com', '2002-03-28', 20, '3', '2', 'Thiyagarajan', 'Labour', 6000.00, 1, 0.00, 10000.00, 'Sivajinagar', 'Sivajinagar', '2211100008', '', '1', 'upload_files/candidate_tracker/69910091128_IMG_20221110_112916 (1).pdf', NULL, '1', '2022-11-10', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'no exposure and dont have clear voice clarity for telesales not suite for team', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-10 11:05:49', 1, '2022-11-10 11:36:33', 0, NULL, 1),
(10954, 'akashjohn', '4', '9791337285', '', 'akashjohnak7@gmail.com', '1997-09-27', 25, '2', '2', 'john', 'fisherman', 20000.00, 4, 0.00, 16000.00, 'rc street thalakulam kanayakumari', 't.nagar chennai.', '2211100009', '2', '1', 'upload_files/candidate_tracker/95011029567_akash bio data.doc', NULL, '1', '2022-11-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-10 02:19:13', 85, '2022-11-10 02:44:48', 0, NULL, 1),
(10955, 'gokul sundar', '23', '7358734571', '', 'gokulsundar2108@gmail.com', '1998-08-21', 24, '2', '2', 'venkatesan', 'senior dgm marketing', 100000.00, 1, 0.00, 400000.00, 'chennai', 'chennai', '2211100010', '1', '1', 'upload_files/candidate_tracker/86189727505_Gokul_Sundar_CV.pdf', NULL, '1', '2022-11-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-10 06:42:42', 1, '2022-11-10 06:57:13', 0, NULL, 1),
(10956, 'Hariharan J', '23', '6383830850', '', 'hariharan03102001@gmail.com', '2001-03-10', 21, '4', '2', 'G Jothi', 'Driver', 20000.00, 1, 0.00, 20000.00, 'THANJAVUR', 'THANJAVUR', '2211100011', '', '1', 'upload_files/candidate_tracker/96981083376_hariharan resume.pdf', NULL, '1', '2022-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-10 07:18:59', 1, '2022-11-10 07:22:42', 0, NULL, 1),
(10957, '', '0', '8870530448', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211100012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-10 07:28:08', 0, NULL, 0, NULL, 1),
(10958, 'Praveen kumar', '4', '8940382806', '6374290887', 'praveenspl096@gmail.com', '1996-02-15', 26, '2', '2', 'Anandhi', 'Housewife', 30000.00, 1, 18000.00, 20000.00, 'Avadi', 'Avadi', '2211100013', '1', '2', 'upload_files/candidate_tracker/95964443889_Praveen Resume NEW.docx', NULL, '1', '2022-11-12', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-10 09:14:13', 99, '2022-11-13 09:19:59', 0, NULL, 1),
(10959, '', '0', '9176230633', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211100014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-10 10:10:04', 0, NULL, 0, NULL, 1),
(10960, '', '0', '7358296204', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211100015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-10 10:54:43', 0, NULL, 0, NULL, 1),
(10961, 'Hemanthkumar R', '31', '7092254942', '9943291776', 'hemanthkumar28111999@gmail.com', '1999-11-28', 22, '3', '2', 'Rajapandi R', 'No', 48000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2211100016', '', '1', 'upload_files/candidate_tracker/4524453954_Hemanthkumar Resume.pdf', NULL, '1', '2022-11-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-10 11:42:32', 1, '2022-11-10 11:51:06', 0, NULL, 1),
(10962, 'Irappa B Chougala', '11', '7892135145', '9964213683', 'Irappachougala24@gmail.com', '1995-10-15', 27, '3', '1', 'Irappa chougala', 'E&c Engineering', 21000.00, 2, 300000.00, 400000.00, 'At post kotabagi tq: hukeri Dis: belagum 591310', 'Madiwal', '2211110001', '', '2', 'upload_files/candidate_tracker/82503560840_irappa chougala 2.docx', NULL, '3', '2022-11-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-11 10:20:46', 1, '2022-11-11 10:40:17', 0, NULL, 1),
(10963, 'N.sunil', '22', '8903547057', '6383797314', 'sunildas7a@gmail.com', '1996-04-11', 26, '3', '2', 'K.nethas', 'Manager', 35000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2211110002', '', '2', 'upload_files/candidate_tracker/31664563256_CV_2022081221005651.pdf', NULL, '1', '2022-11-16', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-11 07:26:33', 1, '2022-11-11 07:34:29', 0, NULL, 1),
(10964, '', '0', '7094705424', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211110003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-11 10:42:03', 0, NULL, 0, NULL, 1),
(10965, 'Mansoor Musthafa', '23', '6385126545', '', 'msmansoor523@gmail.com', '2000-11-14', 21, '2', '2', 'Musthafa', 'Fresher', 15000.00, 2, 0.00, 25000.00, 'No 272/183 Narayanapuram Nandhivaram Guduvancheri', '7/204A Omsakthi Nagar Mainroad kovilambakkam', '2211120001', '1', '1', 'upload_files/candidate_tracker/20637731642_Mansoor_2021_OMR.pdf', NULL, '1', '2022-11-12', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-12 09:33:54', 99, '2022-11-13 09:19:41', 0, NULL, 1),
(10966, '', '0', '9710116776', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211120002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-12 10:18:39', 0, NULL, 0, NULL, 1),
(10967, 'Keerthana M', '14', '9486480196', '', 'keerthanamohan09@gmail.com', '2001-07-09', 21, '1', '2', 'Mohan', 'Business', 15000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Velachery', '2211120003', '', '1', 'upload_files/candidate_tracker/28984036676_CV_2022110811430516.pdf', NULL, '1', '2022-11-14', 0, 'NA', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-12 10:19:50', 1, '2022-11-14 12:52:18', 0, NULL, 1),
(10968, 'Sachin Yadav', '5', '9686035294', '', 'sachinyadavgn@gmail.com', '1994-11-04', 28, '2', '2', 'Anusha (sister)', 'Talent Acquisition Executive', 10000.00, 2, 245000.00, 350000.00, 'Bangalore', 'Vijayanagara', '2211120004', '1', '2', 'upload_files/candidate_tracker/80717655026_Sachin Yadav_CV-2.docx', NULL, '2', '2022-11-14', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Tried couple of times RNR,but got an update for Recruiter that he will join only if his salary is around 20K TH', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-12 10:30:02', 60, '2022-11-26 07:23:24', 0, NULL, 1),
(10969, '', '0', '8675452323', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211120005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-12 10:35:25', 0, NULL, 0, NULL, 1),
(10970, 'Ganesan k', '23', '9150581644', '9941788196', 'ganesank4444@gmail.com', '2000-11-04', 22, '2', '2', 'Alamelu K', 'Housewife', 7000.00, 0, 0.00, 28000.00, 'Chennai', 'Chennai', '2211120006', '', '1', 'upload_files/candidate_tracker/99840633353_CV_2022111213251441.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 round Question task completed and technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-12 10:51:40', 1, '2022-11-12 01:26:14', 0, NULL, 1),
(10971, '', '0', '7868880192', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211120007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-12 11:00:32', 0, NULL, 0, NULL, 1),
(10972, 'DHANANJAYA MOOLAMUDU', '2', '8686661692', '6302259502', 'dhananjayad0302@gmail.com', '2000-02-03', 22, '3', '2', 'Narashimhulu', 'Painter', 18000.00, 2, 0.00, 350000.00, 'TIRUPATI', 'Chennai', '2211120008', '', '1', 'upload_files/candidate_tracker/64725352981_DHANANJAYA _M.pdf', NULL, '1', '2022-11-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-12 12:05:21', 1, '2022-11-12 03:47:22', 0, NULL, 1),
(10973, 'V.sarumathi', '6', '6382099914', '9841803155', 'saru37011@gmail.com', '1999-10-24', 23, '3', '2', 'V manjula', 'House keeping', 13000.00, 1, 13000.00, 13000.00, '13 cross streets Indira Nagar Adyar Chennai 20', '13 Cross Streets Indira Nagar Adyar Chennai 20', '2211120009', '', '2', 'upload_files/candidate_tracker/62846788007_CV_2022111212260780.pdf', NULL, '1', '2022-11-12', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sales Sustainability Doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-12 01:31:18', 85, '2022-11-12 02:56:34', 0, NULL, 1),
(10974, '', '0', '9444038780', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211120010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-12 04:13:09', 0, NULL, 0, NULL, 1),
(10975, '', '0', '6383924754', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211120011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-12 06:36:46', 0, NULL, 0, NULL, 1),
(10976, 'Bavani. B', '23', '6382147894', '9787723315', 'bbavanichandra@gmail.com', '2002-05-18', 20, '3', '2', 'Chandraleka. B', 'Farmer', 14000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2211120012', '', '1', 'upload_files/candidate_tracker/57319459701_Bavani.B.pdf', NULL, '1', '2022-11-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation after 20 Days', '2', '2', '0', '1', '1', '0', '2', '2022-12-05', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-12 06:50:44', 1, '2022-11-13 08:20:33', 0, NULL, 1),
(10977, 'Jagan. E', '23', '9789170367', '', 'Jaganjag556@gmail.com', '2002-01-08', 20, '2', '2', 'Latha', 'Home maker', 15000.00, 1, 0.00, 4.50, 'Arumbakkam. kallakurichi dist', 'Kovur', '2211130001', '1', '1', 'upload_files/candidate_tracker/16179719454_Resume_02_11_2022_09_12_07_pm.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-13 08:11:06', 1, '2022-11-14 12:11:20', 0, NULL, 1),
(10978, 'Kishore Kumar', '6', '9080297458', '', 'kishorekumar131999@gmail.com', '1999-12-13', 22, '2', '2', 'Yuvarajan', 'Tailor', 13000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2211130002', '1', '1', 'upload_files/candidate_tracker/92989645911_Resume Kis.pdf', NULL, '1', '2022-11-14', 0, '', '3', '59', '2022-11-15', 204000.00, '', '5', '1970-01-01', '2', 'Selected for Thiyagu Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-13 12:10:38', 60, '2022-11-15 07:55:13', 0, NULL, 1),
(10979, 'THAMEEMANSARI M', '33', '8939708602', '9840586981', 'thameem8452@gmail.com', '2000-05-29', 22, '3', '2', 'MUTHU PEER MOHAMED S', 'Student', 20000.00, 2, 0.00, 15000.00, 'Ambattur estate', 'Ambattur estate', '2211130003', '', '1', 'upload_files/candidate_tracker/35029620304_Thameem-|Resume|.pdf', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 02:17:46', 1, '2022-11-13 02:24:44', 0, NULL, 1),
(10980, 'Prabhakar R', '23', '7708823321', '', 'prabhakar958504@gmail.com', '2000-03-17', 22, '2', '1', 'Ezhilarasi R', 'Homeworker', 30000.00, 2, 0.00, 400000.00, 'nagapattinam', 'Porur ,Chennai', '2211130004', '1', '1', 'upload_files/candidate_tracker/25620434548_prabhakar-resume.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-13 05:40:05', 1, '2022-11-13 06:00:20', 0, NULL, 1),
(10981, 'manipriyan', '31', '6383050062', '', 'manipriyangopalan@gmail.com', '1998-07-07', 24, '4', '2', 'gopalan', 'conductor', 25000.00, 1, 2.00, 5.00, 'chennai', 'chennai', '2211130005', '', '2', 'upload_files/candidate_tracker/94833940831_RESUME-CC.pdf', NULL, '1', '2022-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 05:41:30', 1, '2022-11-13 05:43:37', 0, NULL, 1),
(10982, 'Manoj Kumar.U', '3', '6369108003', '8220143967', 'manoharsh598@gmail.com', '2001-04-13', 21, '1', '2', 'Udhayakumar.M', 'Taylor', 45000.00, 1, 0.00, 30000.00, 'Kallakurichii', 'Chennai', '2211130006', '', '1', 'upload_files/candidate_tracker/33535769416_Manoj Kumar_Copy(1).pdf', NULL, '1', '2022-11-14', 0, '1', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-13 05:42:16', 60, '2022-11-14 07:10:48', 0, NULL, 1),
(10983, 'gunaseelan m', '23', '7871291815', '7010187003', 'gunaseelanengineer@gmail.com', '1998-09-14', 24, '3', '1', 'mathavan', 'wholesale medical shop worker', 14000.00, 1, 0.00, 2.50, 'thanjavur', 'chennai', '2211130007', '', '1', 'upload_files/candidate_tracker/47689089852_Gunaseelan-2020- Fullstack.docx', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 05:48:18', 1, '2022-11-13 05:50:16', 0, NULL, 1),
(10984, '', '0', '8072261676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 06:00:04', 0, NULL, 0, NULL, 1),
(10985, 'sethuraman', '23', '7530017790', '', 'sethuraman2321@gmail.com', '2001-03-02', 21, '3', '2', 'sathiyabama', 'taylor', 15000.00, 1, 0.00, 20000.00, 'puthur', 'velachery', '2211130009', '', '1', 'upload_files/candidate_tracker/80012109423_Sethuraman.pdf', NULL, '1', '2022-11-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation after 2 days', '2', '1', '0', '1', '1', '0', '2', '2022-11-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 06:11:03', 1, '2022-11-13 06:46:33', 0, NULL, 1),
(10986, '', '0', '8428516806', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 06:21:36', 0, NULL, 0, NULL, 1),
(10987, 'Monisha infanta B. S', '23', '9092094014', '9566195819', 'Monisha.infanta@gmail.com', '1998-07-30', 24, '2', '2', 'B. j. Siluvappa', 'Business', 30000.00, 0, 0.00, 16000.00, 'St. Anthony church,Mapakkam, Chennai-600125', 'St. Antony Church,Manapakkam, Chennai-600125', '2211130011', '1', '1', 'upload_files/candidate_tracker/85028199097_MONISHA INFANTA.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-13 06:34:54', 99, '2022-11-14 10:23:43', 0, NULL, 1),
(10988, 'Leka. B', '4', '9500937020', '', 'leka71195@gmail.com', '1995-11-07', 27, '3', '2', 'P. Balasubramani', 'Skilled officer, Rajagopal polytechnic college', 1500000.00, 1, 26000.00, 35000.00, '190-D, V. O. C street, Vinayagapuram, Gudiyattam', '4th cross street,Judge colony,Tambaram sanatorium', '2211130012', '', '2', 'upload_files/candidate_tracker/15344008672_Resume_Leka_Logistics Executive.pdf', NULL, '3', '2022-11-19', 60, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 06:40:26', 1, '2022-11-13 06:53:27', 0, NULL, 1),
(10989, 'arthi s', '33', '7548888637', '9884179096', 'arthi.soka@gmail.com', '1995-07-26', 27, '3', '2', 'k sudersan babu', 'customer relations executive', 384000.00, 0, 34000.00, 40000.00, 'chennai', 'chennai', '2211130013', '', '2', 'upload_files/candidate_tracker/98058362945_ARTHI SUDERSAN UPDATED RESUME.pdf', NULL, '1', '2022-11-19', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 06:48:59', 1, '2023-05-06 03:46:39', 0, NULL, 1),
(10990, 'THENNARASAN G', '23', '8940769855', '9786561442', 'thennarasug297@gmail.com', '2001-07-29', 21, '3', '2', 'GANESAN', 'TAILOR', 50000.00, 1, 0.00, 300000.00, 'VIRUVEEDU', 'CHENNAI', '2211130014', '', '1', 'upload_files/candidate_tracker/61383840421_Thennarasan resume.pdf', NULL, '1', '2022-11-15', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher need to train a lot candidate need time to give his conformation on TxxampC if he comes back let us try\n', '2', '1', '0', '1', '1', '0', '2', '2022-11-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 06:52:53', 1, '2022-11-13 06:57:02', 0, NULL, 1),
(10991, '', '0', '9791123813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 06:54:01', 0, NULL, 0, NULL, 1),
(10992, '', '0', '8270901514', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 06:58:56', 0, NULL, 0, NULL, 1),
(10993, '', '0', '7989330921', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:02:14', 0, NULL, 0, NULL, 1),
(10994, 'Mestika J', '33', '9087420678', '', 'mestikamary@gmail.com', '1999-10-10', 23, '3', '1', 'A Easu babu', 'IT', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2211130018', '', '1', 'upload_files/candidate_tracker/88198463024_1665115050055_1664447029866_Mestika Resume.docx', NULL, '2', '2022-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 07:03:29', 1, '2022-11-13 08:07:20', 0, NULL, 1),
(10995, '', '0', '9789041116', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:10:48', 0, NULL, 0, NULL, 1),
(10996, 'Priyanka D Majithia', '33', '9119111682', '', 'priyankadm11@gmail.com', '2000-06-11', 22, '3', '2', 'Deepak R Majithia', 'Manager', 30000.00, 1, 0.00, 18000.00, 'Kozhikode', 'Bangalore', '2211130020', '', '1', 'upload_files/candidate_tracker/74328200831_priyanka resume.pdf', NULL, '3', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 07:14:52', 1, '2022-11-13 07:21:22', 0, NULL, 1),
(10997, 'muthulakshmi d', '21', '6385920728', '', 'harshinibsc20@gmail.com', '2000-10-20', 22, '3', '2', 'danaradje s', 'no', 0.00, 1, 0.00, 300000.00, 'KARAIKAL', 'KARAIKAL', '2211130021', '', '1', 'upload_files/candidate_tracker/946052775_Resume.pdf', NULL, '3', '2022-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 07:21:20', 1, '2022-11-14 02:08:35', 0, NULL, 1),
(10998, '', '0', '6382360197', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:22:39', 0, NULL, 0, NULL, 1),
(10999, '', '0', '7871694795', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:22:49', 0, NULL, 0, NULL, 1),
(11000, 'Gunasekar', '33', '7550275301', '', 'yuvaguna2000@gmail.com', '2000-09-01', 22, '3', '2', 'ANANDAN C', 'Farmer', 8000.00, 1, 14500.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2211130024', '', '2', 'upload_files/candidate_tracker/61730234744_Gunasekar resume.pdf', NULL, '2', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 07:25:34', 1, '2022-11-13 07:30:48', 0, NULL, 1),
(11001, '', '0', '9789870526', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:26:10', 0, NULL, 0, NULL, 1),
(11002, '', '0', '7358166512', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:31:00', 0, NULL, 0, NULL, 1),
(11003, '', '0', '7993152076', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:35:44', 0, NULL, 0, NULL, 1),
(11004, 'Hemaa U R', '33', '9677165728', '', 'hemaranve24@gmail.com', '1999-07-24', 23, '4', '2', 'Ravi p a', 'Entrepreneur', 50000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2211130028', '', '1', 'upload_files/candidate_tracker/80693720174_Hemaa_Resume.pdf', NULL, '1', '2022-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 07:51:40', 1, '2022-11-13 07:56:12', 0, NULL, 1),
(11005, '', '0', '6385452051', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:55:12', 0, NULL, 0, NULL, 1),
(11006, '', '0', '8056063282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:59:02', 0, NULL, 0, NULL, 1),
(11007, 'Melwin Abishva', '23', '8610406798', '8870419720', 'Melwinabishva@gmail.com', '1999-09-25', 23, '3', '2', 'Bastin', 'Monthly wages employee', 15000.00, 0, 0.00, 3.50, 'Dindigul', 'Dindigul', '2211130031', '', '1', 'upload_files/candidate_tracker/95024270569_MELWIN RESUME (1) (1).pdf', NULL, '1', '2022-11-15', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate need to come back with his confirmation on TxxampC Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', '2022-11-18', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 08:00:02', 1, '2022-11-13 08:45:54', 0, NULL, 1),
(11008, '', '0', '8903193390', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 08:02:07', 0, NULL, 0, NULL, 1),
(11009, 'Deepika', '23', '6381060882', '6374302168', 'deepiselvamselvam@gmail.com', '2002-06-22', 20, '3', '2', 'Selvam M', 'Business', 12000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2211130033', '', '1', 'upload_files/candidate_tracker/22453854893_Deepika selvam Resume.pdf', NULL, '1', '2022-11-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Based On The Task Interviewed By Gokul, Candidate Need To Come Back With The Confirmation after 20 days', '2', '2', '0', '1', '1', '0', '2', '2022-12-05', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 08:02:29', 1, '2022-11-13 08:14:50', 0, NULL, 1),
(11010, '', '0', '7550207908', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 08:02:43', 0, NULL, 0, NULL, 1),
(11011, 'Vinoth', '23', '9113632816', '', 'vinothwebdesigner10@gmail.com', '2001-04-12', 21, '3', '2', 'Raman', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Tharamangalam,Salem', 'Chennai', '2211130035', '', '1', 'upload_files/candidate_tracker/63404182618_VEL_VINOTH R_2021_B.A.ECONOMICS..pdf', NULL, '1', '2022-11-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Based on the task interviewed by Gokul,Candidate need to come back with the confirmation', '2', '1', '0', '1', '1', '0', '2', '2022-11-17', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 08:31:57', 1, '2022-11-13 08:36:44', 0, NULL, 1),
(11012, 'VISHESH. A', '33', '9483244985', '9481172985', 'vishugpet985@gmail.com', '1998-10-11', 24, '4', '2', 'ARASANAYAKA C', 'KOOLI', 5000.00, 0, 0.00, 350000.00, 'GUNDLUPET', 'MYSORE', '2211130036', '', '1', 'upload_files/candidate_tracker/24803294724_VI (CV).pdf', NULL, '2', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 08:34:12', 1, '2022-11-13 08:36:57', 0, NULL, 1),
(11013, 'abdul fahath j', '33', '9952835620', '', 'abdulfahathj@gmail.com', '2000-05-24', 22, '3', '2', 'parent', 'm.com', 120000.00, 1, 0.00, 15000.00, 'kattumannar kovil', 'mayiladuthurai', '2211130037', '', '1', 'upload_files/candidate_tracker/39035293502_Abdul Fahath CV_Accountant.docx', NULL, '3', '2022-11-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 08:49:11', 1, '2022-11-13 09:02:11', 0, NULL, 1),
(11014, 'g Aparna', '11', '9123575681', '', 'aparnakrish00@gmail.com', '1999-05-16', 23, '4', '2', 'v gokulakrishnan', 'business', 30000.00, 1, 0.00, 300000.00, 'chennai', 'chenn', '2211130038', '', '1', 'upload_files/candidate_tracker/81759953369_40410020_G.APARNA_MBA - Google Docs.pdf', NULL, '2', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 09:29:44', 1, '2022-11-13 10:31:03', 0, NULL, 1),
(11015, 'Sarumathi M A', '33', '9361642899', '7826081514', 'sarumathimanivannan@gmail.com', '1999-08-25', 23, '3', '2', 'Manivannan', 'Accountant', 15000.00, 1, 0.00, 20000.00, 'Trichy', 'Trichy', '2211130039', '', '1', 'upload_files/candidate_tracker/15506875955_SARUMATHI M A. -1.pdf', NULL, '2', '2022-11-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 09:55:18', 1, '2022-11-13 10:02:29', 0, NULL, 1),
(11016, 'M mUTHUPRIYA', '28', '6382873026', '', 'priyamurugan2920@gmail.com', '2000-09-29', 22, '3', '2', 'P. Murugan', 'Cooli', 15000.00, 2, 0.00, 17000.00, 'Madurai', 'Madurai', '2211130040', '', '1', 'upload_files/candidate_tracker/91741463999_Resume Priya.pdf', NULL, '3', '2022-11-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 10:35:02', 1, '2022-11-13 10:40:32', 0, NULL, 1),
(11017, '', '0', '9514871449', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 12:56:47', 0, NULL, 0, NULL, 1),
(11018, 'Ibrahim', '31', '6369055373', '', 'ibrahimibu303@gmail.com', '2000-05-30', 23, '6', '2', 'ismail', 'bussiness', 15000.00, 0, 0.00, 300000.00, 'arumbakkam,chennai-600106', 'chennai', '2211140002', '', '1', 'upload_files/candidate_tracker/63785410208_ibrahim-res.pdf', NULL, '1', '2023-09-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much Comfort In TxxampC Fresher Need To Train A Lot If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-14 02:16:40', 104, '2023-09-29 04:52:58', 0, NULL, 1),
(11019, 'DINAKARAN R', '23', '8825956563', '', 'dinakaran2216@gmail.com', '2000-06-01', 22, '3', '2', 'Rajendran', 'Civil work', 400000.00, 1, 300000.00, 500000.00, '5/82A,4th st,wimco nagar,ch-600057', '5/82A,4th St,Wimco Nagar,Ch-600057', '2211140003', '', '2', 'upload_files/candidate_tracker/72995687037_Dinakaran R.pdf', NULL, '1', '2022-11-14', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 02:52:22', 1, '2022-11-14 11:36:12', 0, NULL, 1),
(11020, 'Vimalraj m', '33', '7530093166', '', 'vimalrajbcomca2288@gmail.com', '2000-12-22', 21, '3', '2', 'Muthusamy', 'Former', 25000.00, 1, 0.00, 18000.00, 'Tittakudi, Cuddalore (Dt)', 'Tittakudi', '2211140004', '', '1', 'upload_files/candidate_tracker/2566725937_Vimal.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 07:22:22', 1, '2022-11-14 07:30:39', 0, NULL, 1),
(11021, '', '0', '9566810133', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 07:34:49', 0, NULL, 0, NULL, 1),
(11022, '', '0', '6383117524', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 07:50:35', 0, NULL, 0, NULL, 1),
(11023, '', '0', '9441804261', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 08:43:06', 0, NULL, 0, NULL, 1),
(11024, '', '0', '7871331604', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 09:21:57', 0, NULL, 0, NULL, 1),
(11025, 'chaitali ramesh shelke', '33', '9405339343', '8805339343', 'chaitalishelke3033@gmail.com', '2000-04-18', 22, '3', '2', 'ramesh shelke', 'farmer', 30000.00, 1, 0.00, 30000.00, 'nanded', 'nanded', '2211140009', '', '1', 'upload_files/candidate_tracker/36874852385_Chaitali Shelke.pdf', NULL, '3', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 09:38:29', 1, '2022-11-14 11:40:58', 0, NULL, 1),
(11026, 'DINESH.S', '23', '9360689892', '', 'dineshragul15@gmail.com', '1999-05-01', 23, '3', '2', 'BharathaSelvi', 'Mother', 10000.00, 0, 0.00, 300000.00, 'KRISHNAGIRI', 'CHENNAI', '2211140010', '', '1', 'upload_files/candidate_tracker/78885887339_DINESH KUMAR RESUME .pdf', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 09:59:34', 1, '2022-11-14 10:14:17', 0, NULL, 1),
(11027, '', '0', '9390816867', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 10:06:54', 0, NULL, 0, NULL, 1),
(11028, 'Manivannan', '23', '6380261153', '', 'Manivvannan43@gmail.com', '2000-12-22', 21, '3', '2', 'Balu', 'Musician', 20.00, 2, 0.00, 280000.00, 'Mayiladuthurai', 'Chennai', '2211140012', '', '1', 'upload_files/candidate_tracker/75044628311_CV_2022111409531644.pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Round Reject - Written Task -  Besant ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 10:09:40', 1, '2022-11-14 10:14:56', 0, NULL, 1),
(11029, 'Prakash gaddigoudar', '33', '9632573862', '', 'gaddigoudarprakash@gmail.com', '1993-07-31', 29, '4', '2', 'Ningangouda', 'Retired principal', 30.00, 1, 0.00, 16.00, 'Banglore', 'Banglore', '2211140013', '', '1', 'upload_files/candidate_tracker/61635503957_prakash (1)-converted (1)-1.pdf', NULL, '2', '2022-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 11:02:53', 1, '2022-11-14 11:07:35', 0, NULL, 1),
(11030, 'P. V. Naveen', '23', '9597489390', '9952833323', 'Pvnaveen21@gmail.com', '2000-04-21', 22, '2', '2', 'Vasu.p', 'Car workshop', 20000.00, 2, 0.00, 20000.00, 'Erode', 'Chennai', '2211140014', '1', '1', 'upload_files/candidate_tracker/24812108719_cv.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-14 11:08:37', 1, '2022-11-14 11:13:55', 0, NULL, 1),
(11031, 'MOHAN S', '23', '6374057479', '', 'mohans26601@gmail.com', '2007-11-14', 15, '3', '2', 'Saravanan', 'Farmers', 10000.00, 1, 0.00, 18000.00, 'Thiruvannamalai', 'Velachery', '2211140015', '', '1', 'upload_files/candidate_tracker/65859191621_final mohan resume.pdf', NULL, '1', '2022-11-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation', '2', '1', '0', '1', '1', '0', '2', '2022-11-17', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 11:08:54', 1, '2022-11-14 11:14:12', 0, NULL, 1),
(11032, 'Kanniyappan', '23', '8754692807', '', 'inboxtokani14@gmail.com', '2000-05-11', 22, '3', '2', 'Kumar', 'Farmer', 10000.00, 1, 0.00, 3.00, 'Arani', 'Kandachavadi', '2211140016', '', '1', 'upload_files/candidate_tracker/13451905823_PYTHON_FULLSTACK_KANNIYAPPAN_MCA_2022..pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 11:33:37', 1, '2022-11-14 11:37:41', 0, NULL, 1),
(11033, 'S.SARAN', '31', '9003268774', '9345286410', 'saranlawrence35@gmail.com', '2000-10-12', 22, '2', '2', 'KR.subbiah', 'Business', 30000.00, 2, 0.00, 3.50, 'Chennai ,medavakk', 'Medavakkam', '2211140017', '1', '1', 'upload_files/candidate_tracker/80179008571_sresume word (2).pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-14 11:40:45', 1, '2022-11-14 11:48:09', 0, NULL, 1),
(11034, 'Lokesh B', '31', '7904953529', '9791157230', 'lokeshbaskaran001@gmail.com', '2001-05-22', 21, '3', '2', 'Baskaran S', 'Own business', 30000.00, 2, 0.00, 3.50, 'Chennai', 'Chennai', '2211140018', '', '1', 'upload_files/candidate_tracker/44705505840_Lokesh Resume.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 11:40:57', 1, '2022-11-14 11:50:20', 0, NULL, 1),
(11035, 'Velmurugan K', '23', '9524537983', '', 'velmurugankvel0@gmail.com', '2002-12-08', 19, '2', '2', 'Chithra', 'Farmer', 15000.00, 1, 0.00, 3.00, 'Kallakurichi', 'Chennai', '2211140019', '1', '1', 'upload_files/candidate_tracker/95572004985_Velmurugan,,,Resume.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-14 11:43:10', 1, '2022-11-14 11:52:56', 0, NULL, 1),
(11036, 'IYYANAR V', '23', '8925047144', '', 'iyyanarv3@gmail.com', '2002-03-14', 20, '3', '2', 'VEERAN R', 'Farmer', 21.00, 1, 0.00, 18.00, 'Kallakurichi', 'Chennai', '2211140020', '', '1', 'upload_files/candidate_tracker/48876058178_Resume. IYYANAR.V.fit for the job.pdf', NULL, '1', '2022-11-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation after 2 days', '2', '1', '0', '1', '1', '0', '2', '2022-11-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 11:43:29', 1, '2022-11-14 11:51:27', 0, NULL, 1),
(11037, 'BOYA RAMESWARI', '33', '9550534515', '8790543054', 'boyarameswari99@gmail.com', '1999-08-18', 23, '4', '2', 'B.Lingamaiah', 'Former', 10000.00, 4, 0.00, 25000.00, '9/419 soganur ,road Yemmiganur, kurnool district', 'Hyderabad', '2211140021', '', '1', 'upload_files/candidate_tracker/25171736967_Rameswari Updated Resume.B.pdf', NULL, '2', '2022-11-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:00:18', 1, '2022-11-14 12:08:45', 0, NULL, 1),
(11038, 'Nithish', '2', '6383748487', '', 'nithishvarun54321@gmail.com', '2001-05-14', 21, '1', '2', 'SURESH.R', 'ELECTRICIAN', 10000.00, 1, 0.00, 30000.00, 'Kallakurichi', 'Kallakurichi', '2211140022', '', '1', 'upload_files/candidate_tracker/81624365749_CV_2022-11-13-033723.pdf', NULL, '2', '2022-11-14', 0, '2630', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:12:13', 1, '2022-11-14 01:38:08', 0, NULL, 1),
(11039, 'Reema jayamani', '14', '7448471559', '', 'Jayareema2001@gmail.com', '2001-04-08', 21, '1', '2', 'Jayamani .P', 'Fisherman', 15000.00, 2, 0.00, 20000.00, 'Vedaranyam', 'Velachery', '2211140023', '', '1', 'upload_files/candidate_tracker/85025831255_reema resume.pdf', NULL, '1', '2022-11-14', 0, 'NA', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:30:49', 1, '2022-11-14 01:04:05', 0, NULL, 1),
(11040, 'Shanu S', '14', '7358914883', '', 'ss8939659@gmail.com', '2001-09-09', 21, '1', '2', 'Subramaniyan k', 'Bussiness', 15000.00, 1, 0.00, 20000.00, 'Salem', 'Velachery', '2211140024', '', '1', 'upload_files/candidate_tracker/27468961252_shanu resume.1.pdf', NULL, '1', '2022-11-14', 0, 'NA', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:32:05', 1, '2022-11-14 12:42:06', 0, NULL, 1),
(11041, 'Naveen', '5', '9791091261', '', 'naveenchordia091@gmail.com', '1991-12-31', 30, '3', '1', 'Navratan mal', 'Salaried', 15000.00, 2, 324540.00, 600000.00, 'Chennai', 'Chennai', '2211140025', '', '2', 'upload_files/candidate_tracker/71501692863_NAVEEN (3) (1).pdf', NULL, '2', '2022-11-20', 60, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:40:13', 1, '2022-11-14 12:50:05', 0, NULL, 1),
(11042, 'Rohithd', '22', '8667001657', '8428950245', 'rohithd300900@gmail.com', '2000-09-30', 22, '3', '2', 'K delhibatcha', 'Retired staff', 30000.00, 1, 22000.00, 20000.00, 'Chromepet', 'Chromepet', '2211140026', '', '2', 'upload_files/candidate_tracker/22222379091_Rohith resume 2022.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' Will Not Sustain Not Much Comfort With TxxampC  Not open for freelance for full time salary Exp is high', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:41:50', 1, '2022-11-14 12:46:55', 0, NULL, 1),
(11043, 'Godvinvijay', '23', '9500819252', '9791072759', 'godvinvijay2225@gmail.com', '2002-12-25', 19, '3', '2', 'Lawrence k', 'Business', 25000.00, 1, 0.00, 250000.00, 'Kanyakumari', 'Chennai', '2211140027', '', '1', 'upload_files/candidate_tracker/15196561464_godvinvijay-1.pdf', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:46:44', 1, '2022-11-14 12:53:18', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11044, 'Balaji kumar', '23', '7871913243', '8072656676', 'balajikumart07@gmail.com', '2000-03-20', 22, '3', '2', 'Thirupati', 'Trade man', 40000.00, 1, 0.00, 25000.00, 'Tirunelveli', 'Chennai', '2211140028', '', '1', 'upload_files/candidate_tracker/87147652282_BALA RESUME (1).pdf', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 01:13:06', 1, '2022-11-14 01:25:18', 0, NULL, 1),
(11045, 'Sowmya DK', '33', '9035514633', '', 'sowmyadkdk@gmail.com', '1999-07-31', 23, '3', '2', 'Krishnamraju DE', 'Weaver', 40000.00, 0, 230000.00, 280000.00, 'Bangalore rural', 'Bangalore rural', '2211140029', '', '2', 'upload_files/candidate_tracker/7897886188_Sowmya CV-3.pdf', NULL, '3', '2022-11-19', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 01:44:09', 1, '2022-11-14 01:47:36', 0, NULL, 1),
(11046, '', '0', '9606375759', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 02:38:45', 0, NULL, 0, NULL, 1),
(11047, 'Purushothaman', '31', '6383458529', '9884292306', 'Purushothamanmanimaran@gmail.com', '2000-09-01', 22, '4', '2', 'Manimaran', 'Clerk', 40000.00, 1, 245000.00, 30000.00, 'Chennai', 'Chennai', '2211140031', '', '2', 'upload_files/candidate_tracker/80395393268_M.purushothaman-1_new.pdf', NULL, '1', '2022-11-16', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 04:18:56', 1, '2022-11-14 04:22:32', 0, NULL, 1),
(11048, 'Ananda Babu P', '6', '9843647032', '', 'babuanand142000@gmail.com', '1988-06-15', 34, '3', '1', 'Palchamy', 'Delivery executive', 45000.00, 2, 40000.00, 40000.00, 'rajapalayam', 'Chennai', '2211140032', '', '2', 'upload_files/candidate_tracker/54256398329_Anand latest resume.docx', NULL, '1', '2022-11-14', 0, '', '4', '29', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Sales but a long career Gap Due to family situation he is into Zomato,Internal Team GK Sir reference,kindly check andlet me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 04:39:44', 1, '2022-11-14 04:43:45', 0, NULL, 1),
(11049, 'Divya', '4', '8637431076', '7200405319', 'divyaramesh0312@gmail.com', '1993-12-03', 28, '3', '1', 'John Bosco', 'Jio supervisor', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2211140033', '', '2', 'upload_files/candidate_tracker/40413996510_0_Divya CV new.docx', NULL, '3', '2022-11-17', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 04:42:29', 1, '2022-11-14 04:46:39', 0, NULL, 1),
(11050, 'G.karunakaran', '31', '6383702512', '8754399608', 'kk1136361@gmail.com', '2000-08-15', 22, '3', '2', 'S.Ganesan', 'Farmer', 13000.00, 2, 0.00, 15000.00, 'Thoothukudi', 'Chennai', '2211140034', '', '1', 'upload_files/candidate_tracker/82077883187_Resume_Karunakaran_Format3-1.docx', NULL, '1', '2022-11-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', '2', '1', '0', '1', '1', '0', '2', '2022-11-19', '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-14 06:05:23', 1, '2022-11-14 06:54:49', 0, NULL, 1),
(11051, 'Swathi s', '14', '7305181284', '9442558643', 'gchilly99@gmail.com', '2000-12-21', 21, '2', '2', 'Shanmugavelumurugan S', 'Headmaster (retired)', 100000.00, 2, 0.00, 360000.00, 'Karaikudi', 'Karaikudi', '2211140035', '1', '1', 'upload_files/candidate_tracker/65085047155_swathi s .Resume.pdf', NULL, '2', '2022-12-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-14 06:08:19', 99, '2022-12-10 12:20:36', 0, NULL, 1),
(11052, 'venkatprasanna', '31', '6380465556', '', 'prasannavenkat222@gmail.com', '1998-03-10', 24, '3', '2', 'prabhvathi', 'housewife', 20000.00, 1, 0.00, 30000.00, 'madurai', 'chennai', '2211140036', '', '1', 'upload_files/candidate_tracker/10075568036_Venkatprasanna N.pdf', NULL, '1', '2022-11-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', '2', '1', '0', '1', '1', '0', '2', '2022-11-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:09:07', 1, '2022-11-14 06:42:32', 0, NULL, 1),
(11053, 'Rajeev', '31', '7358606291', '', 'steverajeev2001@gmail', '2002-03-22', 20, '3', '2', 'Rajagopal', 'Business', 20000.00, 2, 0.00, 20000.00, 'No 1, Gangai amman Nagar,5th Street Hasthinapuram', 'Chrompet', '2211140037', '', '1', 'upload_files/candidate_tracker/9121612621_Rajeev R.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has basic knowledege in html,xxampcss.. sustainbility doubts.. and trying govt  job..sal expt high', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:11:04', 1, '2022-11-14 06:21:47', 0, NULL, 1),
(11054, 'Sridharan.s', '23', '8610960549', '', 'iamsridharansivasamy@gmail.com', '1999-12-10', 22, '3', '2', 'Sivasamy.p', 'Business', 500000.00, 1, 0.00, 400000.00, 'Velachary', 'Salem', '2211140038', '', '1', 'upload_files/candidate_tracker/14668585325_Velachery_Sridharan_2021_Python.pdf', NULL, '1', '2022-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Round Reject(Written Test) - Besant  Not ok with  TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:12:49', 1, '2022-11-15 10:45:43', 0, NULL, 1),
(11055, 'shahul hameed', '2', '9384264660', '', 'ameenhameed143@gmail.com', '2000-06-22', 22, '3', '2', 'mohamed', 'driver', 40000.00, 2, 0.00, 300000.00, 'kadayanallur', 'velachery', '2211140039', '', '1', 'upload_files/candidate_tracker/89124967517_Ameen\'s Resume.pdf', NULL, '1', '2022-11-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:20:56', 1, '2022-11-14 10:16:30', 0, NULL, 1),
(11056, 'santhoshkumar b', '31', '9500430022', '9514140022', 'santhoshkumar040701@gmail.com', '2001-07-04', 21, '3', '2', 'balakrishnan', 'Agriculture', 30000.00, 2, 0.00, 20000.00, 'manthali kalayarkoil sivaganga', 'chennai', '2211140040', '', '1', 'upload_files/candidate_tracker/43333797462_Santhosh Resume.pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject - Besant Technologies', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:21:32', 1, '2022-11-16 11:41:40', 0, NULL, 1),
(11057, 'srinath.p.p', '31', '9159060068', '9360272420', 'srenath0501@gmail.com', '2001-07-05', 21, '3', '2', 'pattabiraman', 'lic-aao', 500000.00, 1, 0.00, 300000.00, 'THIRUVANNAMALAI', 'chennai', '2211140041', '', '1', 'upload_files/candidate_tracker/71203887812_SRINATH\'s Resume FE.pdf', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:23:56', 1, '2022-11-14 06:34:08', 0, NULL, 1),
(11058, 'J.Rajkumar', '2', '7708442854', '9629762005', 'arpjrajjayakumar@gmail.com', '2002-04-11', 20, '3', '2', 'P.Jayakumar', 'silverSmith', 15000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2211140042', '', '1', 'upload_files/candidate_tracker/76781067391_resume .docx', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:30:16', 1, '2022-11-14 06:52:14', 0, NULL, 1),
(11059, 'achappan k', '31', '8072604600', '9486505737', 'achappan_k@yahoo.com', '1997-12-06', 24, '3', '2', 'kannan', 'police', 45000.00, 1, 0.00, 30000.00, 'thoothukudi', 'chennai', '2211140043', '', '1', 'upload_files/candidate_tracker/2285672560_achappan_k_2022_omr.pdf', NULL, '1', '2022-11-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', '2', '1', '0', '1', '1', '0', '2', '2022-11-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:39:10', 1, '2022-11-14 06:47:53', 0, NULL, 1),
(11060, '', '0', '9344596213', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140044', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 06:40:39', 0, NULL, 0, NULL, 1),
(11061, 'Sathish Kumar S', '33', '9025089620', '', 'sathishsaravanan259@gmail.com', '1999-09-25', 23, '3', '2', 'Saravanan G', 'Rice merchant', 15000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2211140045', '', '1', 'upload_files/candidate_tracker/24490198456_RESUME sathish.pdf', NULL, '1', '2022-11-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 07:00:04', 1, '2022-11-14 07:07:38', 0, NULL, 1),
(11062, '', '0', '6381574302', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140046', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 07:00:22', 0, NULL, 0, NULL, 1),
(11063, '', '0', '7092124758', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140047', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 07:50:26', 0, NULL, 0, NULL, 1),
(11064, '', '0', '9384567789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140048', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 07:51:42', 0, NULL, 0, NULL, 1),
(11065, '', '0', '9787076267', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140049', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 07:53:30', 0, NULL, 0, NULL, 1),
(11066, 'B. Venkat ramana', '3', '9962918348', '', 'Kvramanaelumalai@gmail.com', '2003-03-03', 19, '3', '2', 'E. Balachander', 'Student', 250000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2211140050', '', '1', 'upload_files/candidate_tracker/30668312708_venkatram-1.pdf', NULL, '1', '2022-11-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-14 08:19:31', 99, '2022-11-17 09:41:58', 0, NULL, 1),
(11067, 'Suganthan k', '33', '9629385829', '', 'Suganthansugan16@gmail.com', '1999-06-16', 23, '3', '2', 'Karunanithi p', 'Interior decorator', 30.00, 1, 0.00, 300000.00, 'Karaikal pondicherry', 'Chennai', '2211140051', '', '1', 'upload_files/candidate_tracker/82738260845_suganthan k resume.docx', NULL, '2', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 08:58:36', 1, '2022-11-14 10:56:33', 0, NULL, 1),
(11068, 'Sathya seelan', '23', '6380650929', '', 'sathyaseelan5676@gmail.com', '1998-12-18', 23, '3', '2', 'Umapathi', 'Ex checking inspection', 300000.00, 2, 0.00, 3500000.00, 'Dindigul', 'Tambaram', '2211140052', '', '1', 'upload_files/candidate_tracker/23291120502_sathya seelan resume.pdf', NULL, '1', '2022-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject(Written Test) - Besant ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 10:28:27', 1, '2022-11-14 10:33:42', 0, NULL, 1),
(11069, 'Durga', '11', '9444513830', '9092235318', 'Durgadevi29111998@gmail.com', '1998-11-29', 23, '2', '2', 'Sivakami', 'Home maker', 700000.00, 1, 24000.00, 20000.00, 'Chennai', 'Chennaj', '2211150001', '1', '2', 'upload_files/candidate_tracker/52046348382_Durga Devi resume.pdf', NULL, '1', '2022-11-15', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is Good,Sustainability Doubts frequent job changes and giving lot of reasons Exp around 20K if she comes back let us try\n', '6', '1', '', '1', '1', '', '2', '2022-11-18', '2', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-15 12:09:08', 85, '2022-11-15 06:03:25', 0, NULL, 1),
(11070, 'RAJASWETHA', '7', '9444127064', '9840410548', 'rajaswethaganesan@gmail.com', '1999-01-11', 23, '3', '1', 'ramachandiran p', 'HDFC sales manager', 35000.00, 1, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2211150002', '', '1', 'upload_files/candidate_tracker/50735282487_rajaswetha resume.pdf', NULL, '2', '2022-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 09:30:16', 1, '2022-11-15 09:35:11', 0, NULL, 1),
(11071, 'Abishek', '4', '7397018138', '7904819779', 'Abisathya65@gmail.com', '2002-03-19', 20, '1', '2', 'MadeswaranA', 'Driver', 20000.00, 1, 0.00, 12000.00, 'Tiruchengode', 'Tiruchengode', '2211150003', '', '1', 'upload_files/candidate_tracker/83936812170_CV_2022070817324660.pdf', NULL, '1', '2022-11-15', 0, 'No', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 10:01:56', 1, '2022-11-15 10:11:08', 0, NULL, 1),
(11072, 'KASEELAN A', '23', '9003112908', '9551645737', 'kaseelankavi@gmail.com', '2000-04-24', 22, '3', '2', 'Arumugam M', 'Daily vacanger', 10000.00, 3, 12000.00, 20000.00, 'Villupuram', 'Chennai', '2211150004', '', '2', 'upload_files/candidate_tracker/84564188410_Kaseelan Resume.pdf', NULL, '1', '2022-11-15', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject(written Test)', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 10:33:22', 1, '2022-11-15 10:36:16', 0, NULL, 1),
(11073, '', '0', '8610588422', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211150005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-15 10:59:11', 0, NULL, 0, NULL, 1),
(11074, 'Shajahan V.S', '6', '9150627874', '9597979927', 'Shajqhan1999@gmail.com', '2000-03-26', 22, '2', '2', 'SYED MAGDHOOM', 'Driver', 20000.00, 3, 0.00, 15000.00, 'Tenkasi district', 'Sent Thomas mount', '2211150006', '1', '1', 'upload_files/candidate_tracker/50807727646_RESUME (2).pdf', NULL, '3', '2022-11-15', 0, '', '3', '59', '2022-11-16', 185000.00, '', '5', '1970-01-01', '2', 'Selected for Thiyagu Team with PF/ESI/PT,	Communication Ok Fresher Need To Train A Lot Can Give A Try Kindly Check And Let Me Know Your Inputs Have 3 Months Tecalling Exp With 9k Th', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-15 11:05:15', 60, '2022-11-15 07:53:49', 0, NULL, 1),
(11075, 'N.mohamed yasin', '14', '8637431026', '9659369237', 'mohamednyasin@gmail.com', '1999-09-04', 24, '3', '2', 'Father', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2211150007', '', '1', 'upload_files/candidate_tracker/75917977472_Mohamed .pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-15 11:24:16', 112, '2024-03-23 06:11:37', 0, NULL, 1),
(11076, 'T.Atchaya', '4', '9342652731', '7550192398', 'atchayathanapal15@gmail.com', '2002-03-24', 20, '3', '2', 'Thanapal', 'Catering', 30000.00, 2, 0.00, 15000.00, 'Mannargudi', 'Mannargudi', '2211150008', '', '1', 'upload_files/candidate_tracker/52104015015_resume_1658303251674-1.pdf', NULL, '1', '2022-11-15', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 11:24:26', 1, '2022-11-15 11:34:10', 0, NULL, 1),
(11077, '', '0', '9786093241', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211150009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-15 11:24:26', 0, NULL, 0, NULL, 1),
(11078, 'X.AROCKIA EDISON', '23', '7010398838', '9786134387', 'arockiaedison00@gmail.com', '1999-09-08', 23, '3', '2', 'Xavier lourdhu raj', 'Army DSC diffence', 40000.00, 1, 0.00, 250000.00, 'Thiruvarangam ,Ramanathapuram', 'Thiruvanmaiyur', '2211150010', '', '1', 'upload_files/candidate_tracker/61277727666_RESUME .docx', NULL, '1', '2022-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Round Reject(Written Test) - Besant ', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 11:24:38', 1, '2022-11-15 11:32:51', 0, NULL, 1),
(11079, 'Syed Akram', '23', '9384993292', '6369282037', 'syedakramitsme@gmail.com', '2002-04-22', 20, '3', '2', 'S.Abuthair', 'Fisherman', 25000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Guindy', '2211150011', '', '1', 'upload_files/candidate_tracker/44338589068_Vel_Syed Akram.A_2022_BCA_Full stack.pdf', NULL, '1', '2022-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject(written Test) - Besant ', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 11:27:41', 1, '2022-11-15 11:35:38', 0, NULL, 1),
(11080, 'Sathish Kumar', '1', '9677259704', '', 'spidyboy9677@gmail.com', '1998-09-10', 24, '3', '2', 'Sekar M', 'Construction work', 30000.00, 1, 235000.00, 350000.00, 'Chennai', 'Chennai', '2211150012', '', '2', 'upload_files/candidate_tracker/37403317050_sathish resume.docx', NULL, '1', '2022-11-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 11:47:43', 1, '2022-11-15 11:53:28', 0, NULL, 1),
(11081, 'Dinesh Kumar', '11', '9345742948', '7094205823', 'dinureshu2122@gmail.com', '1996-06-22', 26, '1', '1', 'Sivakumar', 'Silk sarees', 50000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Ambattur', '2211150013', '', '1', 'upload_files/candidate_tracker/87938619632_Resume DINESHKUMAR.pdf', NULL, '1', '2022-11-15', 0, 'P1372', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average no basic knowledge in Recruitment Not suitable for our roles', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 12:40:09', 1, '2022-11-15 12:47:29', 0, NULL, 1),
(11082, 'gopi Shankar', '11', '7010970704', '', 'gopishankar309@gmail.com', '1996-11-18', 25, '1', '2', 'vijaya lakshmi', 'home maker', 50000.00, 1, 500000.00, 600000.00, 'chennai', 'chennai', '2211150014', '', '2', 'upload_files/candidate_tracker/41344402644_Gopi Shankar.B-HR.pdf', NULL, '1', '2022-11-15', 0, 'p137', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good High CTC Exp Min 5 LPA,4 yrs of Exp in Recruitment will not sustain ', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 12:42:32', 1, '2022-11-15 12:48:57', 0, NULL, 1),
(11083, '', '0', '9361323978', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211150015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-15 12:58:04', 0, NULL, 0, NULL, 1),
(11084, '', '0', '8522837409', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211150016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-15 01:44:52', 0, NULL, 0, NULL, 1),
(11085, 'Manikandan', '31', '6369978260', '9629019751', 'Manikandanravi631@gmail.com', '2000-06-15', 22, '3', '2', 'Ravi', 'Farmer', 5000.00, 2, 0.00, 15000.00, 'Thiruvannamalai district', 'Velacherry', '2211150017', '', '1', 'upload_files/candidate_tracker/97984355520_mani resume 2.docx', NULL, '1', '2022-11-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 05:06:26', 1, '2022-11-15 05:11:58', 0, NULL, 1),
(11086, 'S.Kalairanjan', '31', '9080519090', '7010757055', 'kalairanjan2001@gmail.com', '2001-11-23', 20, '3', '2', 'Sakthi.G', 'Radiograper', 15000.00, 1, 0.00, 20000.00, 'No.33,8th Street,Anna Nagar, Pattabiram, Ch-72', 'No.33,8th Street,Anna Nagar, Pattabiram, Ch-72', '2211150018', '', '1', 'upload_files/candidate_tracker/93720543091_kalairanjan.pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject - Besant Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 06:01:35', 1, '2022-11-15 07:34:40', 0, NULL, 1),
(11087, '', '0', '9043383970', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211150019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-15 06:30:50', 0, NULL, 0, NULL, 1),
(11088, '', '0', '9940683087', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211150020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-15 06:56:06', 0, NULL, 0, NULL, 1),
(11089, 's.sanjay kumar', '31', '8870011480', '9751454748', 'sanjaytevez@gmail.com', '2001-07-10', 21, '3', '1', 'b.srinivasan', 'farmer', 6600.00, 1, 0.00, 17000.00, 'TIRUVALLUR', 'TIRUVALLUR', '2211150021', '', '1', 'upload_files/candidate_tracker/2964009447_sanjay_kumar_resume.pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject - Written Task -  Besant ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 08:38:33', 1, '2022-11-15 08:50:38', 0, NULL, 1),
(11090, 'T Greeshma', '33', '7340028568', '9515715445', 'tgreeshma2000@gmail.com', '2000-09-12', 22, '3', '2', 'V Thirumala reddy', 'Labour', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'Nagari Chittoor district', '2211150022', '', '1', 'upload_files/candidate_tracker/44950650430_greeshma resume.docx', NULL, '3', '2022-11-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 09:19:41', 1, '2022-11-15 09:24:39', 0, NULL, 1),
(11091, 'T Greeshma', '33', '7330028568', '9515715445', 'tgreeshma2000@gmail.com', '2000-09-12', 22, '4', '2', 'V Thirumala reddy', 'Labour', 50000.00, 1, 0.00, 20000.00, 'Nagari Chittoor district', 'Nagari Chittoor district', '2211150023', '', '1', 'upload_files/candidate_tracker/20578825647_greeshma resume.docx', NULL, '3', '2022-11-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 09:25:47', 1, '2022-11-15 09:28:24', 0, NULL, 1),
(11092, 'Bharath Raj', '4', '9597354774', '6362136272', 'bharathraj56565@gmail.com', '2000-10-06', 22, '3', '2', 'Murugesan. M. K', 'Business', 30000.00, 1, 20000.00, 25000.00, 'Karur', 'Karur', '2211150024', '', '2', 'upload_files/candidate_tracker/20314630527_BharathRajCV.pdf', NULL, '1', '2022-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 09:32:42', 1, '2022-11-15 09:38:44', 0, NULL, 1),
(11093, 'Prakasam v', '6', '8144529820', '8939182272', 'vprakasam1993@gmail.com', '1993-07-25', 29, '3', '2', 'Varatharajan', 'Former', 10000.00, 1, 15000.00, 18000.00, 'Namakkal', 'Namakkal', '2211150025', '', '2', 'upload_files/candidate_tracker/40615446901_sri prakash2022.pdf', NULL, '1', '2022-11-16', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '29yrs old.. not speaking well.. ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-15 09:37:29', 85, '2022-11-16 06:20:24', 0, NULL, 1),
(11094, 'Manisankar k', '31', '6383524552', '', 'manisankark2007@gmail.com', '2000-09-30', 22, '3', '2', 'Krishnan k', 'Cooli', 10000.00, 1, 0.00, 25000.00, '36/3, Vengakkalpatti, Thanthonimalai, Karur-7', 'Chennai', '2211150026', '', '1', 'upload_files/candidate_tracker/63895756073_My Resume.pdf', NULL, '1', '2022-11-16', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical task cleared,Candiddate need to give his confirmation for the TxxampC,if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-11-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 10:26:45', 1, '2022-11-16 11:07:49', 0, NULL, 1),
(11095, 'PRABHAKAR P', '33', '8072073157', '8179299215', 'prabhakar.pajarla134@gmail.com', '1998-05-10', 24, '2', '2', 'Srihari', 'Daily wage worker', 400000.00, 1, 0.00, 15000.00, 'Kavali', 'Kavali', '2211160001', '1', '1', 'upload_files/candidate_tracker/22559643814_Resume - Prabhakar_11-Nov-22_13.08.58.pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Accounts Preparing for CA inter,time being he is looking for job will not sustain in a long', '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-11-16 10:28:36', 1, '2022-11-16 10:33:33', 0, NULL, 1),
(11096, 'Naveenkumar M', '31', '9344166358', '', 'naveenmurugan185@gmail.com', '2000-05-18', 22, '3', '2', 'Murugan A', 'Cooli', 10000.00, 1, 0.00, 25000.00, '2/22,gokule street,Narayanapuram,madurai-14', 'Chennai', '2211160002', '', '1', 'upload_files/candidate_tracker/67637172576_Resume (1).pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Round Reject - Written Task -  Besant ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-16 10:42:50', 1, '2022-11-16 10:59:03', 0, NULL, 1),
(11097, '', '0', '8248417731', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211160003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-16 11:28:46', 0, NULL, 0, NULL, 1),
(11098, 'veeraraghvan g', '6', '8754478636', '', 'ragavwax@gmail.com', '1992-04-06', 30, '2', '2', 'g', 'business', 15000.00, 1, 16000.00, 18000.00, 'chennai', 'chennai', '2211160004', '2', '2', 'upload_files/candidate_tracker/36129664906_Kiran.resume.doc', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for our Sales Long Career Have some Psychological Problems he was into treatment earlier he will not be able to handle the pressure not suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-16 12:12:41', 1, '2022-11-16 12:14:33', 0, NULL, 1),
(11099, '', '0', '9514191875', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211160005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-16 12:36:36', 0, NULL, 0, NULL, 1),
(11100, 'ajith v', '5', '9940115321', '', 'ajithnaidu98@gmail.com', '1998-10-13', 24, '2', '2', 'hajarathiah', 'business painter', 15000.00, 2, 15000.00, 18000.00, 'chennai', 'chennai', '2211160006', '2', '2', 'upload_files/candidate_tracker/44785211755_AJITH.V. RESUME.docx', NULL, '1', '2022-11-16', 0, '', '3', '59', '1970-01-01', 262000.00, '', '2', '1970-01-01', '1', 'Selected for GK Sir with PF/ESI/PT', '5', '1', '4', '1', '3', '1', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-16 12:40:17', 60, '2023-02-09 05:16:03', 0, NULL, 1),
(11101, 'MALLIKARJUNA BAGILI', '33', '8867141672', '8184857701', 'bmalli299@gmail.com', '1999-05-15', 23, '3', '2', 'B Umesh', 'Employee contact', 25000.00, 0, 20000.00, 25000.00, 'Adoni', 'Bengaloru', '2211160007', '', '2', 'upload_files/candidate_tracker/37819599140_mv123.docx', NULL, '1', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-16 01:00:10', 1, '2022-11-16 01:05:45', 0, NULL, 1),
(11102, 'R.SUNDAR', '17', '9962069281', '', 'rajagopalsundar141@gmail.com', '1985-09-17', 37, '4', '2', 'Mrs.R.JANAKI', 'HOUSE WIFE', 5000.00, 0, 19000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2211160008', '', '2', 'upload_files/candidate_tracker/74615620586_Resume (1).pdf', NULL, '1', '2022-11-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-16 02:28:12', 85, '2022-11-16 03:42:16', 0, NULL, 1),
(11103, 'Sandhiya Devi.K', '14', '6382389747', '', 'devisandhiya602@gmail.com', '2000-10-12', 22, '2', '2', 'Jayanthi Kannan', 'Tailor', 15000.00, 1, 0.00, 364000.00, '108c, Indra nagar, perumbakam road, Tiruvannamalai', '108c, Indra Nagar, Perumbakam Road, Tiruvannamalai', '2211160009', '1', '1', 'upload_files/candidate_tracker/72829331585_sandhiya.pdf', NULL, '2', '2022-12-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-16 05:25:30', 99, '2022-12-10 12:21:01', 0, NULL, 1),
(11104, '', '0', '8110074381', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211160010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-16 06:06:37', 0, NULL, 0, NULL, 1),
(11105, 'Punitha M', '6', '8508452782', '8610317619', 'punitha16051998@gmail.com', '1998-05-16', 24, '3', '2', 'Shanthi', 'Worker', 80000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2211160011', '', '1', 'upload_files/candidate_tracker/39461721807_Punitha Resume.pdf', NULL, '1', '2022-11-17', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '4', '7', '', '2', '2022-11-28', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-16 07:33:51', 85, '2022-11-17 05:29:47', 0, NULL, 1),
(11106, '', '0', '6381982062', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-16 09:56:53', 0, NULL, 0, NULL, 1),
(11107, 'VIVEK S N', '5', '9113802341', '7795718554', 'vivekshet1234@gmail.com', '1999-04-28', 23, '2', '2', 'L. NAGABHUSHAN', 'Retired person', 5000.00, 2, 2.20, 3.30, 'Bengaluru', 'Bengaluru', '2211160013', '1', '2', 'upload_files/candidate_tracker/78605235975_VIVEK S N RESUME 22092022.pdf', NULL, '1', '2022-11-17', 0, '', '3', '59', '2022-12-07', 250000.00, '', '3', '2023-03-16', '1', 'Selected for Sutharsan Bangalore with the confirmation on the revised CTC 2.5 LPA Candidate Prefer to go in Non Voice but interested to go in the same voice process need to analyse the candidate in 7 days', '5', '1', '4', '2', '2', '1', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-16 10:39:11', 60, '2022-11-24 06:32:11', 0, NULL, 1),
(11108, 'Dhivan Rajab S', '23', '6374068001', '8072426881', 'dhivanrajab0910@gmail.com', '2000-10-09', 22, '2', '2', 'Shahul hameed', 'Driver', 20000.00, 4, 15000.00, 20000.00, 'Tenkasi', 'Chennai', '2211160014', '1', '2', 'upload_files/candidate_tracker/48911601537_Full Stack Developer.pdf', NULL, '1', '2022-11-21', 15, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected in aptitude round', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-16 11:08:42', 99, '2022-11-21 06:29:59', 0, NULL, 1),
(11109, 'Vignesh sb', '11', '7092947174', '7395963164', 'Vksb24@gmail.com', '1994-07-24', 28, '2', '2', 'Suresh s', 'Team lead', 30000.00, 1, 15000.00, 17000.00, 'Thousand lights', 'Valasaravakkam', '2211170001', '2', '2', 'upload_files/candidate_tracker/43755385471_cv_vignesh sb - Copy.pdf', NULL, '1', '2022-11-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Good in Communication have Exp in Recruitment,looking for Same but we tried for Tech Support Mutual fund he needs to come back with his confirmation', '6', '1', '0', '1', '1', '0', '2', '2022-11-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 10:24:11', 1, '2022-11-17 10:28:37', 0, NULL, 1),
(11110, 'Nivethitha. V', '2', '7708895896', '8754954352', 'nivishthitha1425@gmail.com', '1999-07-25', 23, '3', '2', 'No', 'None', 15000.00, 3, 0.00, 20000.00, 'Chidambaram', 'Velachery, Chennai', '2211170002', '', '1', 'upload_files/candidate_tracker/15159680101_1664302992703Resume_Nivethitha.pdf', NULL, '1', '2022-11-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Round Reject', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 10:36:53', 1, '2022-11-17 10:46:40', 0, NULL, 1),
(11111, 'Buvanesh B', '5', '8148165817', '6382498568', 'bubaraina@gmail.com', '1996-01-19', 26, '1', '2', 'Balasaraswathy', 'Building contractors', 20000.00, 1, 0.00, 20000.00, 'Buttroad', 'Buttroad', '2211170003', '', '1', 'upload_files/candidate_tracker/23402942144_BUVANESH RESUME.docx', NULL, '1', '2022-11-17', 0, 'Jobs', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile Fresher For Sales Can Train And Give A Try For Our Role Kindly Check And Let Me Know Your Inputs - Dropped Candidate Salary Expectation is very high being fresher also he is in need of Leave on Saturday sunday will  not sustain and not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-17 11:15:58', 60, '2022-11-23 05:18:01', 0, NULL, 1),
(11112, 'Ebinesar', '6', '9840288926', '', 'macnesar302@gmail.com', '1997-12-02', 24, '1', '2', 'Sagayamary fathima', 'Substaff', 11000.00, 0, 16000.00, 22000.00, 'Santhome,chennai', 'Thoraipakkam,chennai', '2211170004', '', '2', 'upload_files/candidate_tracker/42974922151_ Ebinesar new resume.pdf', NULL, '1', '2022-11-17', 0, '5557', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 11:19:21', 1, '2022-11-17 11:27:03', 0, NULL, 1),
(11113, 'J.Nandhini Priya', '6', '8148492552', '9840021142', 'nandhinibala1318@gmail.com', '1998-03-18', 24, '1', '2', 'J.Balakesavalu/J.Anuradha', 'Pensioner', 20000.00, 2, 15000.00, 17000.00, 'No.112/10 Gandhi Street Cornation Nagar', 'No.112/10 Gandhi Street Cornation Nagar', '2211170005', '', '2', 'upload_files/candidate_tracker/98525428789_Nandhini Priya Resum.docx', NULL, '1', '2022-11-17', 0, '5557', '3', '59', '2022-11-18', 204000.00, '', NULL, '2023-05-31', '2', 'Selected for thiyagarajan Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-17 11:19:45', 60, '2022-11-17 08:28:31', 0, NULL, 1),
(11114, 'Kamala bharathy', '6', '8015319612', '8015910869', 'sarobharathy4@gmail.com', '1997-09-23', 25, '1', '2', 'Latha', 'House wife', 10000.00, 1, 18000.00, 22000.00, 'Ramalingaeshwar Kovil street,eldams road', 'Ramalingaeshwar Kovil street, eldams road', '2211170006', '', '2', 'upload_files/candidate_tracker/62657937470_KAMALABHARATHY.B resume .doc', NULL, '1', '2022-11-17', 0, '5557', '3', '59', '2022-11-18', 240000.00, '', NULL, '2023-11-25', '2', 'Selected for Thiyagu Team Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-17 11:20:03', 60, '2022-11-17 08:29:47', 0, NULL, 1),
(11115, 'Arivazhagan.R', '21', '9787837674', '8940165174', 'ariarish0@gmail.com', '2000-06-25', 22, '3', '2', 'Ramar.V', 'Former', 15000.00, 3, 0.00, 18000.00, 'Kallakurichi', 'Chennai', '2211170007', '', '1', 'upload_files/candidate_tracker/86833779578_Arivazhagan__Resume.pdf', NULL, '1', '2022-11-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Skills Exp Need to come back with his confirmation on TxxampC if he comes back let us try', '3', '1', '0', '1', '1', '0', '2', '2022-11-19', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 11:32:18', 1, '2022-11-17 11:45:25', 0, NULL, 1),
(11116, 'Muthukrishnan E', '31', '6381448204', '', 'muthue6381@gmail.com', '2000-04-11', 22, '3', '2', 'Elumalai', 'Farmer', 18000.00, 1, 0.00, 18000.00, 'Kallakurichi', 'Chennai,Thoraipakkam', '2211170008', '', '1', 'upload_files/candidate_tracker/899500794_Muthukrishnan E Profile.docx', NULL, '1', '2022-11-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', '2', '1', '0', '1', '1', '0', '2', '2022-11-19', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 11:33:29', 1, '2022-11-17 11:43:47', 0, NULL, 1),
(11117, 'A. Dhivyalakshmi', '6', '9940347207', '8681903472', 'adhivya392@gmail.com', '2002-07-21', 20, '1', '2', 'Ayyadurai', 'Pwd', 25000.00, 2, 0.00, 15000.00, 'Perungudi', 'Perungudi', '2211170009', '', '1', 'upload_files/candidate_tracker/70179140997_Resume_A.Dhivyalaksmi_Format7.pdf', NULL, '1', '2022-11-17', 0, 'P1066', '3', '59', '2022-11-18', 162000.00, '', '3', '2023-02-04', '2', 'Selected for Thiyagu Team - Staff role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-17 11:45:50', 60, '2022-11-17 08:30:11', 0, NULL, 1),
(11118, 'Aardev', '4', '9715705382', '8015407091', 'aardev1706@gmail.com', '2007-11-17', 0, '2', '2', 'Arumugam', 'Worker', 15000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2211170010', '1', '1', 'upload_files/candidate_tracker/63380199788_CV_2022092712224824.pdf', NULL, '1', '2022-11-18', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-17 03:46:05', 85, '2022-11-18 02:59:15', 0, NULL, 1),
(11119, 'vignesh.k', '13', '9943960298', '', 'k.vignesh6665@gmail.com', '1998-08-09', 24, '3', '2', 'k.santhi', 'shop keeper', 20000.00, 0, 0.00, 15000.00, 'avadi', 'avadi', '2211170011', '', '1', 'upload_files/candidate_tracker/12046618012_VIGNESH.K.pdf', NULL, '1', '2022-11-18', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has basic knowledege in php... sustainbility doubts .. sal exp too high..', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 05:26:22', 1, '2022-11-17 05:30:34', 0, NULL, 1),
(11120, 'dhanalakshmi', '31', '7305462964', '', 'dhanalp019@gmail.com', '2001-05-19', 21, '3', '2', 'palani', 'business', 70000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2211170012', '', '1', 'upload_files/candidate_tracker/47704351336_Dhanalakshmi.pdf', NULL, '1', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 05:56:22', 1, '2022-11-17 06:16:54', 0, NULL, 1),
(11121, 'John Prijin', '4', '7094758527', '6369060726', 'johnprijin@gmail.com', '1999-03-08', 23, '2', '2', 'John', 'Fisherman', 200000.00, 3, 0.00, 17000.00, 'Bangalore', 'Bangalore', '2211170013', '1', '1', 'upload_files/candidate_tracker/29872045397_Edited johnprijin CV.pdf', NULL, '1', '2022-11-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-17 06:41:47', 99, '2022-11-18 12:12:55', 0, NULL, 1),
(11122, '', '0', '8098987485', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211170014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-17 06:54:17', 0, NULL, 0, NULL, 1),
(11123, 'Bhuvaneshwaran', '22', '9094116616', '8668152460', 'bhuvaneshsureshbabu@gmail.com', '1998-11-15', 24, '2', '2', 'Sureshbabu', 'Personal driver', 240000.00, 0, 0.00, 400000.00, 'Chennai', 'Chennai', '2211170015', '1', '1', 'upload_files/candidate_tracker/3880996870_bhuvanesh updated resume2.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no idea about digital marketing .. communication ok.. but dont have idea about content ,sEOxxamp SEM.. SAL Ext high expt min.. ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-17 06:56:48', 99, '2022-11-21 06:32:12', 0, NULL, 1),
(11124, 'Bhuvaneshwaran', '22', '9094116615', '8668152460', 'bhuvaneshsureshbabu@gmail.com', '1998-11-15', 24, '4', '2', 'Sureshbabu', 'Personal driver', 240000.00, 0, 0.00, 400000.00, 'Chennai', 'Chennai', '2211170016', '', '1', 'upload_files/candidate_tracker/88158549328_bhuvanesh updated resume2.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 07:02:57', 1, '2022-11-17 07:50:40', 0, NULL, 1),
(11125, 'K.rajamanickam', '11', '8825854843', '', 'rmanickam324@gmail.com', '2000-02-04', 22, '3', '2', 'Karthikeyan m', 'Steel company labour', 20000.00, 1, 0.00, 17009.00, 'Salem', 'Salem', '2211170017', '', '1', 'upload_files/candidate_tracker/45715934181_RAJAMANICKAM_JEEVA (1).pdf', NULL, '3', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 07:13:09', 1, '2022-11-17 07:16:07', 0, NULL, 1),
(11126, 'Abdul Mukthalif Subair', '23', '9025039885', '7708291590', 'subairsr04705@gmail.com', '2000-03-27', 22, '2', '2', 'Mohamed iqbal', 'Labour', 20000.00, 2, 0.00, 18000.00, 'Tenkasi', 'Chennai', '2211170018', '1', '1', 'upload_files/candidate_tracker/39848741521_Subair Resume - 28 - 1668315179.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected In Aptitude Round', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-17 07:52:20', 99, '2022-11-21 06:34:55', 0, NULL, 1),
(11127, 'Janarthanan S', '31', '9629927725', '', 'janarthanans741@gmail.com', '1999-10-19', 23, '3', '2', 'Sureah', 'React JS Developer', 25000.00, 3, 0.00, 350000.00, 'KRISHNAGIRI', 'KRISHNAGIRI', '2211170019', '', '1', 'upload_files/candidate_tracker/97166354241_JANARTHANAN_S_Resume.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 08:04:22', 1, '2022-11-17 08:09:03', 0, NULL, 1),
(11128, '', '0', '9080743962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211170020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-17 09:38:38', 0, NULL, 0, NULL, 1),
(11129, 'Atchaya', '7', '7358693080', '9789076447', 'atchayasaravanan1113@gmail.com', '1999-01-13', 23, '3', '2', 'Saravanan', 'Carpenter', 40000.00, 1, 12000.00, 20000.00, 'No:6, Thiruvalluvar street, mathialagan nagar.', 'No:6, Thiruvalluvar Street, Mathialagan Nagar', '2211180001', '', '2', 'upload_files/candidate_tracker/22496054370_ATCHAYA.pdf', NULL, '1', '2022-11-18', 1, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in CAMS need to train a lot Communication Average,she will come for final round', '7', '1', '0', '1', '1', '0', '2', '2022-11-23', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-18 10:59:26', 1, '2022-11-18 11:04:16', 0, NULL, 1),
(11130, 'T.Dharshini', '16', '7397416496', '8825901472', 'dharshinithangarasa@gmail.com', '2000-09-30', 22, '2', '2', 'Amaravathi', 'Oc', 10000.00, 2, 0.00, 18000.00, 'Kelambakkam', 'Kelambakkam', '2211180002', '1', '2', 'upload_files/candidate_tracker/65670886534_PDFGallery_20221113_183838.pdf', NULL, '1', '2022-11-21', 2, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'long distance.. dont have idea about excel .. no communication... not suit our process', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-18 11:24:45', 99, '2022-11-21 06:37:00', 0, NULL, 1),
(11131, 'Abinaya k', '4', '6385246074', '', 'abikutty3501@gmail.com', '2002-01-29', 20, '3', '2', 'Kaliyamoorthy', 'Driver', 8000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211180003', '', '1', 'upload_files/candidate_tracker/24019637228_Resume_RESUME_Format2.pdf', NULL, '1', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-18 11:45:35', 1, '2022-11-18 11:59:51', 0, NULL, 1),
(11132, 'RAJARAJESHWARI.N', '4', '9486263490', '', 'rajiraji78934@gmail.com', '2002-03-07', 20, '3', '2', 'NATARAJAN.N', 'FORMAR', 10000.00, 1, 0.00, 10000.00, 'REDDIPALAYAM', 'REDDIPALAYAM', '2211180004', '', '1', 'upload_files/candidate_tracker/15360894966_Resume_RESUME_Format2.pdf', NULL, '1', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-18 11:45:50', 1, '2022-11-18 11:55:26', 0, NULL, 1),
(11133, '9944688517', '4', '9944688517', '', 'knirubha3@gmail.com', '2002-10-19', 20, '3', '2', 'R. Karumel nather', 'Farmer', 40000.00, 3, 0.00, 10000.00, 'Anna Nager Avalivanallur', 'Anna Nager Avalivanallur', '2211180005', '', '1', 'upload_files/candidate_tracker/57356725998_niru resum.pdf', NULL, '1', '2022-11-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-18 11:46:00', 1, '2022-11-18 12:09:33', 0, NULL, 1),
(11134, 'Mythili.B', '4', '9443262034', '', 'mythilibaskar114@gmail.com', '1984-04-11', 38, '3', '1', 'Baskar.S', 'Head Clarck', 80000.00, 2, 0.00, 10000.00, 'Tiruvarur', 'Thanjavur', '2211180006', '', '1', 'upload_files/candidate_tracker/78211547413_DocScanner 18-Nov-2022 12-14 pm.pdf', NULL, '1', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-18 11:46:05', 1, '2022-11-18 12:27:08', 0, NULL, 1),
(11135, 'G Jaya ranjini', '4', '8778708061', '9500494147', 'ranjinisvylouidc@gmail.com', '1987-12-26', 34, '3', '1', 'Louis Alexander', 'Own business', 8000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211180007', '', '1', 'upload_files/candidate_tracker/44920084220_ranjini.pdf', NULL, '1', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-18 11:46:58', 1, '2022-11-18 12:17:24', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11136, '', '0', '6383612068', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211180008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-18 11:54:30', 0, NULL, 0, NULL, 1),
(11137, 'sneha s', '4', '9789956305', '', 'sneha0450278@gmail.com', '2002-03-29', 20, '2', '2', 'senguttuvan', 'tailor', 10000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2211180009', '2', '1', 'upload_files/candidate_tracker/22831463926_Sneha Resume 2.pdf', NULL, '1', '2022-11-18', 0, '', '3', '59', '2022-11-21', 138948.00, '', '5', '1970-01-01', '2', 'Selected for B2B - T.Nagar Staff Role however will confirm again the role', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-18 11:57:26', 60, '2022-11-19 11:13:27', 0, NULL, 1),
(11138, 'Ravivarma. B', '6', '8778717125', '8883826218', 'ravivarmab2@gmail.com', '1992-05-18', 30, '2', '2', 'A. Balakrishnan', 'Cooli', 12.00, 1, 0.00, 18.00, 'erode', 'erode', '2211180010', '1', '1', 'upload_files/candidate_tracker/92622218036_RAVIVARMA(1.pdf', NULL, '1', '2022-11-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-18 12:26:18', 85, '2022-11-19 09:57:10', 0, NULL, 1),
(11139, 's.ramya', '6', '8220417948', '', 'ramyaselvam5151@gmail.com', '1999-06-23', 23, '2', '2', 'selvam', 'business', 20000.00, 0, 0.00, 15000.00, 'arachalur', 'arachalur', '2211180011', '1', '1', 'upload_files/candidate_tracker/78237738706_S.RAMYA RESUME.pdf', NULL, '1', '2022-11-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'logout time not comfortable so rejectedd', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-18 01:32:07', 99, '2022-11-19 06:44:06', 0, NULL, 1),
(11140, 'Boobalan', '31', '7695018927', '', 'r.boobalan111@gmail.com', '1998-04-22', 24, '2', '2', 'S.T.Ravi', 'Business', 25000.00, 1, 0.00, 15000.00, '12/22, Muthurengan Street Thirumangalam Madurai', 'Chennai', '2211180012', '1', '1', 'upload_files/candidate_tracker/17845247414_boobalan_Resume.pdf', NULL, '1', '2022-11-19', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have basic knowledge ..sustainbility doubts.. he want to check his family..if he come back.. let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-18 06:22:00', 99, '2022-11-19 11:10:10', 0, NULL, 1),
(11141, 'Mohammed Yahya', '31', '6382388315', '9025361630', 'yahya209812@gmail.com', '1998-07-20', 24, '2', '2', 'Perumal Samy', 'Labour', 20000.00, 2, 0.00, 25000.00, 'Kovilpatti', 'Triplicane', '2211190001', '1', '1', 'upload_files/candidate_tracker/81258451301_Mohammed Yahya Resume.pdf', NULL, '1', '2022-11-19', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainbility  doubts.... not ok with txxampc ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-19 09:28:14', 99, '2022-11-19 06:39:22', 0, NULL, 1),
(11142, 'Madhumitha', '6', '8056508421', '', 'madhumithaarc@gmail.com', '2001-05-01', 21, '2', '2', 'Rajendran', 'Teavels', 300000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2211190002', '1', '1', 'upload_files/candidate_tracker/30463335250_MADHUMITHA R (1).pdf', NULL, '1', '2022-11-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - logout time not comfortable', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-19 10:16:05', 99, '2022-11-19 06:40:58', 0, NULL, 1),
(11143, 'Reshma h', '4', '9361667044', '7845973593', 'Saisreebl2018@gmail.com', '1999-07-22', 23, '2', '1', 'Manesh Kumar S', 'Working as supervisor in hundai company', 30.00, 2, 13.00, 15.00, 'Ambattur', 'Ambattur', '2211190003', '2', '2', 'upload_files/candidate_tracker/70417072110_Resh Resume22.pdf', NULL, '1', '2022-11-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-19 10:20:37', 85, '2022-11-19 11:11:28', 0, NULL, 1),
(11144, '', '0', '8056508429', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-19 10:58:57', 0, NULL, 0, NULL, 1),
(11145, 'rajkumar', '5', '6382690567', '', 'rajuu.kumar.rk@gmail.com', '1994-03-14', 28, '2', '2', 'rangasamy', 'late', 10000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2211190005', '2', '1', 'upload_files/candidate_tracker/82710794593_DOC-20221119-WA0000..pdf', NULL, '1', '2022-11-19', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has 6yrs of sales exp .. sal exp high .. not much good in convincing..', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-19 11:00:37', 1, '2022-11-19 11:04:20', 0, NULL, 1),
(11146, 'duraimurugan', '4', '8122319953', '', 'duraik357@gmail.com', '1994-04-07', 28, '2', '2', 'kajendran', 'farmer', 10000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2211190006', '2', '1', 'upload_files/candidate_tracker/48535512636_DURAIMURUGAN RESUME.PDF', NULL, '1', '2022-11-19', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'from electrical background.. fresher to our domain.. no convincing skill.. ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-19 11:06:42', 1, '2022-11-19 11:08:32', 0, NULL, 1),
(11147, 'Lokesh', '4', '9363243227', '', 'Lokesh93440@gmail.com', '2000-07-16', 22, '1', '2', 'Venkateshan', 'Corporate employee', 25000.00, 2, 0.00, 15000.00, 'Pernambut', 'Saidapet', '2211190007', '', '1', 'upload_files/candidate_tracker/15953012187_DocScanner Nov 2, 2022 12-43.pdf', NULL, '1', '2022-11-19', 0, 'P1321', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-19 11:32:15', 1, '2022-11-19 12:51:47', 0, NULL, 1),
(11148, 'Gokulkumar S', '23', '8825469382', '', 'gokulgs8825@gmail.com', '2000-10-07', 22, '2', '2', 'Selavaraj', 'Rice business', 20000.00, 1, 0.00, 15000.00, 'Melmaruvathur', 'Chengalpet', '2211190008', '1', '1', 'upload_files/candidate_tracker/99281595210_Resume2.pdf', NULL, '1', '2022-11-21', 0, '', '2', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'From chengalpatu ready to relocate near by..has idea about ui/ux designer.... sustainbility doubts.. if he come back let us try ', '2', '1', '', '1', '1', '', '2', '2022-11-23', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-19 05:39:28', 99, '2022-11-22 11:09:50', 0, NULL, 1),
(11149, 'Ajith', '23', '8489638136', '', 'cmajithkumar742@gmail.com', '2000-04-07', 22, '2', '2', 'chitra', 'school cleaner', 10.00, 3, 0.00, 18.00, 'ramanathapuram', 'avadi', '2211190009', '1', '1', 'upload_files/candidate_tracker/84378624959_ajith.resumefinal92 (1).pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'from avadi not ready to relocate... no idea about ui/ux .. sal expt high', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-19 05:45:52', 99, '2022-11-21 06:39:06', 0, NULL, 1),
(11150, 'Raghul Ram S', '7', '7358403279', '', 'VINODHINISRINI27@GMAIL.COM', '1999-05-26', 23, '2', '2', 'Kalyani', 'Home Maker', 10000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2211190010', '1', '2', 'upload_files/candidate_tracker/70209501441_Raghul Ram-Resume (1) (1).pdf', NULL, '1', '2022-11-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas inMF No communication not open for Sales positions too not suitable', '7', '1', '', '1', '3', '', '2', '1970-01-01', '2', '4', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-19 08:13:51', 99, '2022-11-22 02:35:08', 0, NULL, 1),
(11151, 'Arun Kumar', '31', '9677470849', '', 'pgarunperumal1999@gmail.com', '1999-12-19', 22, '2', '2', 'Perumal', 'Farmer', 10000.00, 2, 0.00, 3.50, 'VILLUPURAM', 'Chrompet', '2211200001', '1', '1', 'upload_files/candidate_tracker/4509088585_Upd Resume Arun.pdf', NULL, '1', '2022-11-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic Skills Not much comfort in TxxampC Need to train a lot if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-20 12:40:22', 99, '2022-11-24 11:47:32', 0, NULL, 1),
(11152, 'Arun Ramasamy', '23', '6381873526', '', 'arunramasamy46@gmail.com', '2001-11-17', 21, '2', '2', 'Ramasamy', 'Chennai', 200000.00, 1, 0.00, 300000.00, 'Aruppukottai', 'Chennai', '2211200002', '1', '1', 'upload_files/candidate_tracker/58721547617_Arun.R-RESUME.-1 (1) (1) (1) (1) (1).pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected In Aptitude Round', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-20 07:23:35', 99, '2022-11-24 03:49:48', 0, NULL, 1),
(11153, 'Ashif Ali', '31', '8870723721', '8610446375', 'ashifali112@gmail.com', '1998-01-10', 24, '2', '2', 'Nisar Ali', '12th', 20000.00, 2, 0.00, 20000.00, 'Ramnathapuram', 'Chennai', '2211210001', '1', '1', 'upload_files/candidate_tracker/25044282369_Ashif-Resume (1).pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long distance.. need to learn lot... ongoing classes..and thinking about txxampc too ..once he complete the course will check again..', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 09:42:05', 99, '2022-11-21 06:44:57', 0, NULL, 1),
(11154, 'Shahul Hameed', '4', '7418306712', '', 'sh5784698@gmail.com', '2000-06-07', 22, '2', '2', 'Mohamed Sulthan', 'Hazrath', 12000.00, 1, 0.00, 12000.00, 'JMS nagar , Railady , Ayyampet', 'JMS nagar , Railady , Ayyampet', '2211210002', '1', '1', 'upload_files/candidate_tracker/76212978867_shahul MG_20221121_100637.pdf', NULL, '1', '2022-11-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-21 10:00:32', 85, '2022-11-21 10:16:48', 0, NULL, 1),
(11155, 'Jagan m', '4', '7810010229', '', 'Jaganjpdskkn6381@gmail.com', '2001-10-23', 21, '3', '2', 'Murugesan', 'Company work', 10000.00, 1, 0.00, 10000.00, 'Erode', 'Erode', '2211210003', '', '1', 'upload_files/candidate_tracker/95728149653_Adobe Scan 21 Nov 2022 (1).pdf', NULL, '3', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 10:20:50', 1, '2022-11-21 10:36:22', 0, NULL, 1),
(11156, 'Kalaiyarasan A', '31', '9095022301', '8122300652', 'kalaiofficial12@gmail.com', '1997-06-12', 25, '2', '2', 'Allimuthu', 'Daily wages', 18000.00, 1, 0.00, 25000.00, 'Vellore', 'Chennai', '2211210004', '1', '1', 'upload_files/candidate_tracker/94240648700_kalaiyarasan.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected In Aptitude Round', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 10:27:45', 99, '2022-11-21 06:46:30', 0, NULL, 1),
(11157, 'manojkumar m', '23', '8838022898', '', 'mk391982@gmail.com', '1998-05-04', 24, '3', '2', 'poornima m', 'unemployed', 30000.00, 1, 0.00, 250000.00, 'gummidipoondi', 'Gummidipoondi', '2211210005', '', '1', 'upload_files/candidate_tracker/40128677946_Software_developer_R.pdf', NULL, '2', '2022-11-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 10:28:32', 1, '2022-11-21 10:52:50', 0, NULL, 1),
(11158, 'Y. AROCKIA ABISHEK', '31', '6381245194', '9842991433', 'arofrank2001@gmail.com', '2001-07-22', 15, '2', '2', 'C.YESU DAS', 'Business', 20000.00, 2, 0.00, 170000.00, '528 Merry street, Sengadu, Villupuram', 'Sai aatchara hostel , perungalathur ,chennai', '2211210006', '1', '1', 'upload_files/candidate_tracker/84331300586_Abishek.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'attitude issue .. sal expt too high.. long distance too..', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 10:47:56', 99, '2022-11-21 06:48:02', 0, NULL, 1),
(11159, 'Kannan', '4', '7708119740', '', '19coc144kannan.s@gmail.com', '2001-10-20', 21, '3', '2', 'Srinivasan k', 'Unemployed', 6000.00, 1, 0.00, 10000.00, 'Keelavasal', 'Keelavasal', '2211210007', '', '1', 'upload_files/candidate_tracker/94433676956_pdf&rendition=1-1.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 11:32:39', 1, '2022-11-21 11:55:21', 0, NULL, 1),
(11160, 'Priyanka', '4', '6382760137', '', 'msharmipriya1996@gmail.com', '2002-10-12', 20, '3', '2', 'Malaisamy', 'farmer', 7500.00, 2, 0.00, 8000.00, 'Ammanpettai', 'Ammanpettai', '2211210008', '', '1', 'upload_files/candidate_tracker/18068774824_priyanka pff.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 11:32:54', 1, '2022-11-21 12:09:31', 0, NULL, 1),
(11161, 'Shalini', '4', '8270658672', '', 'B.shaliniraja@gmail.com', '2002-04-24', 20, '3', '2', 'Benjamin raj', 'Farmer', 5000.00, 1, 0.00, 8000.00, 'Thirukattupalli', 'Thirukattupalli', '2211210009', '', '1', 'upload_files/candidate_tracker/39483072824_SHALINI RESUME-1.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 11:33:09', 1, '2022-11-21 12:05:02', 0, NULL, 1),
(11162, 'Sowmiya', '4', '6381902997', '', 'mirugansowmi637@gmail.com', '2000-03-15', 22, '3', '2', 'Murugan', 'farmer', 10000.00, 2, 0.00, 10000.00, 'THANJAVUR', 'THANJAVUR', '2211210010', '', '1', 'upload_files/candidate_tracker/92210064791_pdf&rendition=1.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 11:37:24', 1, '2022-11-21 11:40:19', 0, NULL, 1),
(11163, 'Vignesh. S', '33', '7449210534', '6379763077', 'Vigneshvinoth744921@gmail.com', '1999-06-11', 23, '2', '2', 'Srinivasan', 'Auto driver', 3.60, 1, 220000.00, 3.00, 'West mambalam', 'West mambalam', '2211210011', '1', '2', 'upload_files/candidate_tracker/64095843833_Resume_Vignesh_1668854890413_vignesh s.pdf', NULL, '1', '2022-11-21', 2, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '2yrs of exp  as a acc ass..but not relavant  to our role... sal exp high ', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 11:42:38', 99, '2022-11-21 06:49:55', 0, NULL, 1),
(11164, 'Sneha', '4', '9361446440', '9965341411', 'Snehasneha8534@gmail.com', '2001-10-01', 21, '3', '2', 'Rajkumar', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Thirukattupalli near puthuchathiram', 'Thirukaatupalli', '2211210012', '', '1', 'upload_files/candidate_tracker/50611606264_SNEHA RESUME-2.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 11:46:24', 1, '2022-11-21 12:02:08', 0, NULL, 1),
(11165, 'Radha.k', '4', '8825794025', '8760270480', 'radharagul558@gmail.com', '2000-06-08', 22, '2', '2', 'KALYANARAMAN .K', 'Farmer', 15000.00, 0, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2211210013', '1', '1', 'upload_files/candidate_tracker/47009918769_Resume_Radha_Format2.pdf', NULL, '1', '2022-11-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-21 11:55:13', 85, '2022-11-21 06:33:30', 0, NULL, 1),
(11166, 'Mufid', '3', '9943766365', '7708928804', 'mufidmass04@gmail.com', '2000-03-07', 22, '2', '2', 'Musthafa', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2211210014', '1', '1', 'upload_files/candidate_tracker/99723618547_Mufid_resume.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected In Aptitude Round', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 11:57:57', 99, '2022-11-21 06:51:38', 0, NULL, 1),
(11167, 'Jamaludeen A', '3', '9361572947', '7708928804', '172jamal@gmail.com', '2001-02-17', 21, '2', '2', 'Abdul samsudeen J', 'driver', 15000.00, 2, 0.00, 17.00, 'Tirunelveli', 'chennai', '2211210015', '1', '1', 'upload_files/candidate_tracker/15436785892_JAMAL_resume.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected In Aptitude Round', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 12:08:24', 99, '2022-11-21 06:53:14', 0, NULL, 1),
(11168, 'MNiyas Mohammed', '33', '6374143724', '6374170913', 'niyasmohammed26082000@gmail.com', '2000-06-26', 22, '3', '2', 'Mohammed isamil', 'Tea shop', 15000.00, 0, 0.00, 15000.00, 'Old washermenpet', 'Old washermenpet', '2211210016', '', '1', 'upload_files/candidate_tracker/27310713103_niyas (Resume).pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not much active.. has exp in acc from cAMS.. Not much good in acc ...', '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 12:30:33', 1, '2022-11-21 12:38:29', 0, NULL, 1),
(11169, 'Thenmozhi', '11', '9025810711', '', 'thenmozihbose35@gmail.com', '1999-06-15', 23, '3', '2', 'Brother\'Vinoth', '2,0000', 12000.00, 6, 0.00, 16000.00, 'Nungambakkam', 'Nungambakkam', '2211210017', '', '1', 'upload_files/candidate_tracker/8975334836_THENMOZHI RESUME (UPDATED).pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'no communication .. prefer to talk in tamil.. no idea about recruitment', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 02:19:10', 1, '2022-11-21 02:27:53', 0, NULL, 1),
(11170, '', '0', '8754752397', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211210018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-21 06:18:13', 0, NULL, 0, NULL, 1),
(11171, 'Ashwin Kumar S R', '23', '9789983474', '', 'srashwin99@gmail.com', '1999-08-05', 23, '2', '2', 'Renuka', 'Service', 100000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2211210019', '1', '1', 'upload_files/candidate_tracker/56543878014_Ashwin kumar.pdf', NULL, '1', '2022-11-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Bit Attitude,not much open for TxxampC Long run doubts have some references too not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 07:44:36', 99, '2022-11-22 02:38:05', 0, NULL, 1),
(11172, '', '0', '8056373321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211220001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-22 07:15:12', 0, NULL, 0, NULL, 1),
(11173, 'VINOTHKUMAR. S', '2', '7502007010', '6382838043', 'kumarvinoth6448@gmail.com', '2000-12-10', 21, '2', '2', 'PUNITHA', 'Former', 20000.00, 1, 0.00, 10000.00, 'Tiruppur', 'chennai', '2211220002', '1', '1', 'upload_files/candidate_tracker/88970243930__Template_1668325574387.pdf', NULL, '1', '2022-11-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher have basic knowledge long run doubts candidate need time to give his confirmation', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-22 10:28:11', 99, '2022-11-22 02:43:23', 0, NULL, 1),
(11174, 'akash', '23', '8508035087', '9842176615', 'akashravichandran1999@gmail.com', '1999-04-17', 23, '2', '2', 'ravichandran', 'advocate', 900000.00, 1, 0.00, 200000.00, 'madurai', 'urapakkam', '2211220003', '1', '1', 'upload_files/candidate_tracker/98781914814_Akash__Resume.pdf', NULL, '1', '2022-11-22', 0, '', '3', '59', '2022-11-24', 120000.00, '', '', '2023-04-10', '1', '5 month intern with 5K stipend then 10-12K 3 yrs SA Initially Dropped due to TxxampC as he confirmed we processed', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '5 Month Intern With 5K Stipend Then 10-12K 3 Yrs SA Initially Dropped Due To TxxampC As He Confirmed We Processed', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-22 10:28:35', 60, '2022-11-25 07:19:59', 0, NULL, 1),
(11175, 'Saravanan', '4', '9940517582', '8778409574', 'saravanavelu121@gmail.com', '1998-08-18', 24, '2', '2', 'Parents', 'Labour', 100000.00, 0, 0.00, 14000.00, 'Thiruvallur', 'Veppampattu', '2211220004', '1', '1', 'upload_files/candidate_tracker/52874521100_saravana resume.pdf', NULL, '1', '2022-11-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance Looking much for non voice no communication no suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-22 01:09:22', 99, '2022-11-22 02:51:13', 0, NULL, 1),
(11176, 'akash j', '16', '9445020219', '9443762219', 'jtakash03@gamil.com', '1999-05-03', 23, '2', '2', 'john s', 'daily wages', 70000.00, 3, 0.00, 2.40, 'tiruvannamalai', 'chennai', '2211220005', '1', '1', 'upload_files/candidate_tracker/87790601170_Akash (CV).pdf', NULL, '1', '2022-11-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication Understanding is Poor Will not sustain and not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-22 06:14:56', 99, '2022-11-24 11:48:19', 0, NULL, 1),
(11177, 'Dhivagar', '4', '8438925232', '9443451405', 'Dhivagarsekar96@gmail.com', '1996-10-23', 26, '2', '2', 'Sekar', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2211220006', '1', '1', 'upload_files/candidate_tracker/53767008955_DHIVAGAR.docx', NULL, '1', '2022-11-23', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-22 06:33:10', 85, '2022-11-23 10:20:17', 0, NULL, 1),
(11178, '', '0', '7538892399', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211220007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-22 09:12:20', 0, NULL, 0, NULL, 1),
(11179, 'pirahadeesh', '14', '8754154503', '7904391461', 'pirahadeesh@gmail.com', '2000-12-21', 21, '1', '2', 'Ashok', 'Rice shop ( business)', 25000.00, 1, 0.00, 35000.00, 'Thanjavur', 'Thanjavur', '2211220008', '', '1', 'upload_files/candidate_tracker/46110701040_PirahadeeshCvResume.pdf', NULL, '2', '2022-11-22', 0, '2222', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-22 09:54:48', 1, '2022-11-22 11:06:59', 0, NULL, 1),
(11180, 'mohamed amjathkhan', '33', '9789819748', '', 'akamjath791@gmail.com', '1993-06-02', 29, '3', '1', 'abdul kadhar', 'employee', 60000.00, 2, 27000.00, 35000.00, 'chennai', 'chennai', '2211230001', '', '2', 'upload_files/candidate_tracker/84931469139_Amjath CV.pdf', NULL, '1', '2022-11-23', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-23 10:20:35', 1, '2022-11-23 10:29:46', 0, NULL, 1),
(11181, 'Radha krishnan j', '13', '7871981223', '', 'Radhakrishnanj12@gmail.com', '2000-06-12', 22, '2', '2', 'Jayabalan A', 'Plumber', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2211230002', '1', '1', 'upload_files/candidate_tracker/54295632875_RADHA KRISHNAN J_RESUME 15-11-2022 .pdf', NULL, '1', '2022-11-23', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate need to learn a lot if he comes back let us try after 10-15 days', '2', '1', '', '1', '1', '', '2', '2022-12-05', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-23 10:52:05', 99, '2022-11-24 11:46:38', 0, NULL, 1),
(11182, 'sudhandira devi p', '4', '8939009700', '', 'dsudhanra@gmail.com', '1998-08-15', 24, '2', '2', 'periyasami', 'real easte', 30000.00, 2, 20000.00, 25000.00, 'gerugambakkam', 'virugambakkam', '2211230003', '1', '2', 'upload_files/candidate_tracker/36508465282_Devi resume new.docx', NULL, '1', '2022-11-23', 7, '', '3', '59', '2022-12-10', 227364.00, '', '4', '2023-01-30', '2', 'Selected for Banu team in Consultant Role', '1', '1', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-23 12:23:36', 60, '2022-11-28 07:16:42', 0, NULL, 1),
(11183, '', '0', '9629012786', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211230004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-23 01:36:51', 0, NULL, 0, NULL, 1),
(11184, 'Surendran A', '13', '6382698887', '', 'asurendhar49@gmail.com', '2000-10-22', 22, '3', '2', 'Pappa', 'House wife', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2211230005', '', '1', 'upload_files/candidate_tracker/55465727562_A.Surendran (1).pdf', NULL, '1', '2022-11-23', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Appeared for IT but too long distance he is open for sales but need time to give his confirmation if he comes back for sales we can give a try', '2', '1', '0', '1', '1', '0', '2', '2022-11-24', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-23 01:49:06', 1, '2022-11-23 01:51:04', 0, NULL, 1),
(11185, '', '0', '6379936432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211230006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-23 06:05:41', 0, NULL, 0, NULL, 1),
(11186, 'Pradeep Sangamreddy', '31', '9347902928', '', 'pradeepmobile09@gmail.com', '1999-06-10', 23, '3', '2', 'Ramana', 'Agriculture', 8000.00, 1, 4.00, 6.00, 'Vootapalli,Merakamudidam AP,535102', 'Thoraipakam,chennai', '2211230007', '', '2', 'upload_files/candidate_tracker/27095045565_pradeeplr.pdf', NULL, '2', '2022-11-26', 7, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-23 06:13:20', 1, '2022-11-23 06:22:04', 0, NULL, 1),
(11187, 'Kavihasa', '5', '6363128462', '', 'Mkavihasa01@gmail.com', '1996-11-26', 25, '2', '2', 'Muniswamy', 'Unemploye', 200000.00, 0, 0.00, 15000.00, 'Bangalore', 'Bangalore', '2211240001', '1', '1', 'upload_files/candidate_tracker/85076402160_123kavi.pdf', NULL, '1', '2022-11-24', 0, '', '1', '42', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-11-24 09:41:10', 1, '2022-11-24 06:55:41', 0, NULL, 1),
(11188, 'praveen kumar', '4', '6382496628', '', 'praveennsit18@gmail.com', '2000-03-18', 22, '2', '2', 'natarajan', 'farmer', 8000.00, 2, 0.00, 12000.00, 'salem', 'salem', '2211240002', '2', '1', 'upload_files/candidate_tracker/70220468384_Praveen.docx', NULL, '2', '2022-11-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:03:19', 1, '2022-11-24 10:05:38', 0, NULL, 1),
(11189, 'akash p', '2', '8220553838', '', 'akashpoovan983@gmail.com', '2000-03-24', 22, '2', '2', 'poovan', 'sales man', 15000.00, 1, 0.00, 13000.00, 'kallakurchi', 'kallakuchi', '2211240003', '2', '1', 'upload_files/candidate_tracker/30828620620_Akash Resumè.pdf', NULL, '2', '2022-11-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:06:52', 1, '2022-11-24 10:08:49', 0, NULL, 1),
(11190, 'Maharajan K', '16', '6380087229', '', 'tmlraja7@gmail.com', '1992-08-10', 30, '2', '1', 'Nishanthi M', 'Assistant Process officer', 30.00, 2, 23785.00, 30000.00, 'Korukkupet', 'Korukkupet', '2211240004', '3', '2', 'upload_files/candidate_tracker/65277917031_Maharaja Resume updated-New.doc', NULL, '1', '2022-11-24', 45, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication Frequent Job Changes Not much strong with the skills not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:08:19', 1, '2022-11-24 10:16:28', 0, NULL, 1),
(11191, 'balaji m', '4', '7667846557', '', 'balajimaari9@gmail.com', '1998-11-14', 24, '2', '2', 'markabandhu', 'own business', 20000.00, 1, 0.00, 12000.00, 'chennai', 'kolapakkam', '2211240005', '2', '1', 'upload_files/candidate_tracker/98453772801_1667807346162_Work Resume-1.docx', NULL, '1', '2022-11-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:09:59', 1, '2022-11-24 10:11:51', 0, NULL, 1),
(11192, 'gopinath s', '4', '9677534167', '', 'gopinathsoundararajan@yahoo.com', '1995-10-16', 27, '2', '2', 'soundarajan', 'business', 20000.00, 1, 0.00, 15000.00, 'cuddalore', 'cuddalore', '2211240006', '2', '2', 'upload_files/candidate_tracker/39367316948_GOPINATH fINAL RESUME 2022.pdf', NULL, '1', '2022-12-05', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok have exp in core Mechanical domain fresher for our roles 5050 kindly check andlet me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-24 10:12:52', 99, '2022-12-05 09:43:23', 0, NULL, 1),
(11193, 'rajeev e', '13', '9488065438', '', 'rajeevdpt92@gmail.com', '1997-01-02', 25, '2', '2', 'elumalai', 'late', 15000.00, 1, 0.00, 12000.00, 'thiruvannamalai', 'chennai', '2211240007', '2', '1', 'upload_files/candidate_tracker/11131332910_Rajresume.pdf', NULL, '1', '2022-11-24', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Given task for UI UX need to analyse and based on the output will check\n', '2', '2', '0', '1', '1', '0', '2', '2022-11-26', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:43:18', 1, '2022-11-24 10:45:12', 0, NULL, 1),
(11194, 'kaviya', '2', '8973317122', '', 'kaviyaradha2000@gmail.com', '2000-06-03', 22, '2', '2', 'radhakrishnan', 'loco', 20000.00, 1, 0.00, 12000.00, 'thiruvallur', 'thiruvallur', '2211240008', '2', '1', 'upload_files/candidate_tracker/64944535278_kavya.pdf', NULL, '2', '2022-11-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:47:09', 1, '2022-11-24 10:49:58', 0, NULL, 1),
(11195, 'Subash Paramasivam', '16', '9962670212', '9514776229', 'subisubash04@gmail.com', '1998-01-26', 24, '2', '2', 'Paramasivam', 'Electrition', 20000.00, 597, 13.00, 15.00, 'Perungudi Chennai', 'Perungudi Chennai', '2211240009', '3', '2', 'upload_files/candidate_tracker/48835204856_Resume.pdf', NULL, '1', '2022-11-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Have Exp in Sales but not open for that,Need to open up a lot will not sustain in our roles not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:54:54', 1, '2022-11-24 11:09:16', 0, NULL, 1),
(11196, 'Mathew D', '11', '7092213157', '9094427672', 'mathewdennis2505@gmail.com', '1998-07-25', 24, '2', '2', 'S. Dennis chelladurai', 'Cnc computer operator', 50000.00, 1, 15000.00, 17000.00, 'chennai', 'chennai', '2211240010', '1', '2', 'upload_files/candidate_tracker/75381103912_Mathew Updated Cv-.docx', NULL, '1', '2022-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,Having plan to travel abroad  and  plan to do safety engineer Course will not sustain  in our roles', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-24 11:01:01', 99, '2022-11-24 05:16:18', 0, NULL, 1),
(11197, 'K.Thamaraikannan', '23', '9787867982', '9344520352', 'thamaraikannank2000@gmail.com', '2000-09-14', 22, '2', '2', 'Karuppasamy', 'Farmer', 20000.00, 3, 0.00, 20000.00, 'Thoothukudi', 'Guindy', '2211240011', '1', '1', 'upload_files/candidate_tracker/40404574725_TRHAMARAIKANNAN RESUME.docx', NULL, '1', '2022-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills knowledge worked and left the company in 3 months due to less pay of 5K not much comfort in TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-24 11:09:56', 99, '2022-11-25 09:14:26', 0, NULL, 1),
(11198, 'devadarshini d', '11', '9445140423', '', 'devadharshini989@gmail.com', '1998-08-12', 24, '3', '2', 'devendran p', 'business', 200000.00, 0, 250000.00, 250000.00, 'tirupur', 'chennai', '2211240012', '', '2', 'upload_files/candidate_tracker/16267790251_Resume - Devadarshini.pdf', NULL, '1', '2022-11-24', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Selected For Tech Support Need To Be Trained Final Round With Gokul Selected For 132000 With PT Deduction', '6', '1', '0', '1', '1', '0', '2', '2022-11-28', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 11:22:42', 1, '2022-11-24 11:26:32', 0, NULL, 1),
(11199, 'Indhuja p k', '11', '7094433525', '', 'indhujabalki@gmail.com', '1998-08-14', 24, '3', '2', 'A.Balakrishnan', 'Business', 300000.00, 1, 0.00, 15000.00, 'Tirupur', 'Chennai', '2211240013', '', '1', 'upload_files/candidate_tracker/88399744516_indhuja resume new.pdf', NULL, '1', '2022-11-24', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Selected for Tech Support Need to be trained Final round with Gokul selected for 132000 with PT deduction', '6', '1', '0', '1', '1', '0', '2', '2022-11-28', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 11:23:03', 1, '2022-11-24 11:28:00', 0, NULL, 1),
(11200, '', '0', '6372390130', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211240014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-24 11:26:15', 0, NULL, 0, NULL, 1),
(11201, 'Ajai', '11', '7397412932', '', 'ajaitv06@gmail.com', '2001-03-07', 21, '2', '2', 'Thangadurai', 'Tea shop', 160000.00, 1, 13000.00, 16000.00, 'Pallavaram', 'Pallavaram', '2211240015', '1', '2', 'upload_files/candidate_tracker/94386755318_AJAI RESUME.docx', NULL, '1', '2022-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average have few months exp in recruitment will not sustain in our roles', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-24 11:28:05', 99, '2022-11-24 05:17:12', 0, NULL, 1),
(11202, 'Sharmila. J', '16', '7358095977', '7397445576', 'Sharmilajaishankar11032001@gmail.com', '2001-03-11', 21, '2', '2', 'Suganthi. J', 'House wife', 100000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2211240016', '1', '1', 'upload_files/candidate_tracker/49620731434_resume for sir (1).pdf', NULL, '1', '2022-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication,not open for Telesales too,not suitable for our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-24 11:32:00', 99, '2022-11-24 05:17:44', 0, NULL, 1),
(11203, 'Keerthika V', '16', '7397360148', '7200689637', 'kv4keerthi@gmail.com', '2001-02-04', 21, '2', '2', 'Venkatavarathan', 'Cooli', 80000.00, 1, 13000.00, 15000.00, 'No 9 kabilar st madama nagar chennai 11', 'ChennaiNo 9 Kabilar St Madama Nagar Chennai 11', '2211240017', '3', '2', 'upload_files/candidate_tracker/55512757906_Keerthika - Resume .pdf', NULL, '1', '2022-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication have Exp in Accounts and much prefer for the same, Long back attended and got rejected for the same.Not suitable', '4', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-24 02:05:00', 60, '2022-11-24 08:08:49', 0, NULL, 1),
(11204, 'SK JAMEER', '33', '9951207490', '8072073157', 'jameershaik2018@gmail.com', '1997-07-01', 25, '2', '2', 'Rahamthulla', 'Daily wage worker', 600000.00, 2, 0.00, 15000.00, 'Andhrapradesh, nellore', 'Ayanavaram', '2211240018', '1', '1', 'upload_files/candidate_tracker/92397559610_Jameer Shaik Resume.pdf', NULL, '1', '2022-11-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-11-24 05:12:00', 1, '2022-11-24 05:15:40', 0, NULL, 1),
(11205, 'Chinnadurai P', '6', '6383353791', '', 'Yamahachinna123@gmail.com', '2000-03-03', 22, '2', '2', 'Palani S', 'Farmer', 13000.00, 1, 0.00, 15000.00, 'Avalpoondurai', 'Avalpoondurai', '2211240019', '1', '1', 'upload_files/candidate_tracker/34269225121_My Resume.pdf', NULL, '1', '2022-11-30', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for telecalling sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-24 05:13:13', 99, '2022-12-01 11:17:37', 0, NULL, 1),
(11206, 'revathy', '4', '9566036251', '', 'revathyveeravel@gmail.com', '2000-09-30', 22, '3', '2', 'veeravel', 'kooli', 1000.00, 1, 0.00, 15000.00, 'pattalam', 'pattalam', '2211240020', '', '1', 'upload_files/candidate_tracker/13974743735_revathy.pdf', NULL, '1', '2022-11-25', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'low confidence..not fit for our process', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 09:33:15', 1, '2022-11-25 12:38:14', 0, NULL, 1),
(11207, '', '0', '8610832337', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-25 10:45:14', 0, NULL, 0, NULL, 1),
(11208, 'vignesh waran', '6', '7358020565', '8610832336', 'anishmaha7602@gmail.com', '1999-10-26', 23, '2', '2', 'manjula', 'system management', 15000.00, 1, 15000.00, 14000.00, 'thiruchengode', 'thiruchengode', '2211250002', '1', '2', 'upload_files/candidate_tracker/67705156287_Aneesh Resume.pdf', NULL, '1', '2022-11-25', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-25 10:48:01', 85, '2022-11-25 06:11:57', 0, NULL, 1),
(11209, 'Vanitha', '4', '7358326312', '', 'vaithakumaravel24@gmail.com', '2001-06-24', 21, '3', '2', 'Vasantha k', 'Home maker', 17000.00, 1, 17000.00, 20000.00, 'Chennai iyyanavaram', 'Chennai', '2211250003', '', '2', 'upload_files/candidate_tracker/2799513331_DOC-20221108-WA0001..pdf', NULL, '1', '2022-11-25', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'from aynavaram but from candiadate side not ok with our location..  in 1yr worked 2compaines.. focusing on sal .. ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-25 11:05:39', 1, '2022-11-25 11:55:39', 0, NULL, 1),
(11210, 'NIRUBAN CHAKRAVARTHY M', '2', '8610440679', '', 'Niruban746@gmail.com', '1994-10-24', 28, '3', '2', 'Muniyandi', 'Buisness', 20000.00, 2, 0.00, 3.00, 'Madurai', 'Chennai', '2211250004', '', '1', 'upload_files/candidate_tracker/87438445887_Niruban.docx (1).pdf', NULL, '1', '2022-11-25', 0, '', '2', '97', NULL, 0.00, '', '0', NULL, '2', 'from guvi ins.. has basic knowledege in front end.. he need to check  TxxampC with his family .. If he come back  will check again', '2', '1', '0', '1', '1', '0', '2', '2022-11-28', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-25 11:08:55', 1, '2022-11-25 11:11:53', 0, NULL, 1),
(11211, 'Vinod kumar Patrick', '16', '9840801888', '9003127355', 'vinodkumat.t287@gmail.com', '1987-04-24', 35, '3', '1', 'Sagaya mary', 'House wife', 40000.00, 1, 35000.00, 35000.00, 'Perambur', 'Perambur', '2211250005', '', '2', 'upload_files/candidate_tracker/18239113421_C U R R I C U L U M V I T A E -  Vinod Kumar. T.doc', NULL, '1', '2022-11-25', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-25 11:58:23', 1, '2022-11-25 02:38:12', 0, NULL, 1),
(11212, 'Thowfeek Rahman', '33', '8056329238', '8667347545', 'Thowfeek7@gmail.com', '2000-04-15', 22, '2', '2', 'Fowziya', 'None', 7000.00, 1, 0.00, 14000.00, 'purasaiwalkam', 'purasaiwalkam', '2211250006', '1', '1', 'upload_files/candidate_tracker/25829630610_Resume_Thowfeek Rahman_Format7(1).pdf', NULL, '1', '2022-11-25', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'zero understanding.. not suit for our roles..', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-25 11:59:45', 85, '2022-11-25 06:08:32', 0, NULL, 1),
(11213, 'CELSI ALOYSIUS A', '4', '9025893674', '', 'jensijensi1515@gmail.com', '2000-08-21', 22, '3', '2', 'Amalanathan J', 'Tailor', 20000.00, 0, 16000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2211250007', '', '2', 'upload_files/candidate_tracker/78200278106_CELSI ALOYSIUS A (Resume).pdf', NULL, '1', '2022-11-25', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-25 12:18:40', 1, '2022-11-25 12:23:32', 0, NULL, 1),
(11214, 'Archana', '4', '9360753142', '', 'Archanavenkat2001@gmail.com', '2001-08-13', 21, '2', '2', 'Venkatesan', 'Cooli', 11000.00, 1, 12000.00, 15000.00, 'Chrompet', 'Chrompet', '2211250008', '3', '2', 'upload_files/candidate_tracker/9361464877_Archana. V resume.pdf', NULL, '1', '2022-11-25', 0, '', '3', '59', '2022-11-28', 151584.00, '', '5', '1970-01-01', '2', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-25 02:13:45', 60, '2022-11-25 07:22:45', 0, NULL, 1),
(11215, 'Ranjitha', '5', '7806840763', '', 'ranjib126200@gmail.com', '2000-06-12', 22, '2', '2', 'Babu', 'Farmer', 80000.00, 1, 12000.00, 14000.00, 'Thiruvanamalai', 'Chennai', '2211250009', '3', '2', 'upload_files/candidate_tracker/77195033153_Ranjitha B.pdf', NULL, '1', '2022-11-25', 0, '', '3', '59', '2022-11-28', 151584.00, '', '5', '1970-01-01', '2', 'Selected for B2B Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-25 02:14:12', 60, '2022-11-25 07:23:15', 0, NULL, 1),
(11216, 'K E Priya', '33', '7075833749', '', 'Priyaekambaram2000@gmail.com', '2000-02-23', 22, '3', '2', 'K V Ekambaram', 'Labour', 200000.00, 2, 0.00, 15000.00, 'Andhrapradesh', 'Andhrapradesh', '2211250010', '', '1', 'upload_files/candidate_tracker/37091328294_1_Share K E PRIYA_1659359610346_Priya_1664633231086_Priya.doc', NULL, '3', '2022-11-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-25 05:06:03', 1, '2022-11-25 05:13:31', 0, NULL, 1),
(11217, 'J.vimal devi', '16', '7550238461', '8148998428', 'vimaldevijanakiraman@gmail.com', '2002-08-03', 20, '2', '2', 'Amul.J', 'Gaudern', 10000.00, 1, 0.00, 15000.00, 'Singaperumal kovil', 'Singaperumal kovil', '2211260001', '3', '1', 'upload_files/candidate_tracker/85303052623_Vimal Devi.J_Resume_1667653228309_J.Vimal Devi_1667654025854_J.Vimal Devi.pdf', NULL, '1', '2022-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-26 10:29:16', 1, '2022-11-30 09:57:12', 0, NULL, 1),
(11218, '', '0', '8925429529', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211260002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-26 02:01:13', 0, NULL, 0, NULL, 1),
(11219, '', '0', '9962944517', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211260003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-26 05:48:58', 0, NULL, 0, NULL, 1),
(11220, '', '0', '7338844974', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211260004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-26 05:50:40', 0, NULL, 0, NULL, 1),
(11221, '', '0', '6369675262', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211260005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-26 11:30:47', 0, NULL, 0, NULL, 1),
(11222, 'Vennila.R', '4', '9626542215', '', 'vennilamalar1998@gmail.com', '1998-04-01', 24, '2', '2', 'N.Rajendran', 'Farmer', 35000.00, 3, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2211280001', '1', '1', 'upload_files/candidate_tracker/36588395816_venila resume.pdf', NULL, '3', '2022-11-28', 0, '', '3', '59', '2022-12-09', 138948.00, '', '3', '2022-11-24', '2', 'Selected for Sithyvinayagam team  in Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 09:38:10', 60, '2022-12-06 06:33:54', 0, NULL, 1),
(11223, 'sathish Kumar.S', '2', '9444579525', '', 'sathishsk25501@gmail.com', '2001-05-25', 21, '2', '2', 'c.sekar', 'worker', 20000.00, 1, 0.00, 180000.00, 'sholinghur', 'kodambakkam', '2211280002', '1', '1', 'upload_files/candidate_tracker/14788963721_Sathish-kumar resume.pdf', NULL, '1', '2022-11-28', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Internship Exp Certificate is on hold with Agaram infotech,He need time to confirm the TxxampC if he comes back with his confirmation let us try', '2', '1', '', '1', '1', '', '2', '2022-11-30', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 09:43:02', 99, '2022-11-29 09:20:36', 0, NULL, 1),
(11224, 'Deepika', '16', '8939767761', '', 'Deepikaguna1107@gmail.com', '2000-07-11', 22, '3', '2', 'Gunasekaran', 'Hinduja foundries', 360000.00, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2211280003', '', '2', 'upload_files/candidate_tracker/13805597198_Deepika.pdf', NULL, '1', '2022-11-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication  no Checked for Sales Not open for that too', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 09:56:39', 1, '2022-11-28 10:55:50', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11225, 'A.S.PRASSHANTH', '6', '9445455694', '7904865184', 'asprasshanth@yahoo.com', '1997-05-26', 25, '3', '2', 'R.G.SIVAKKUMAR', 'SUPERVISOR', 25000.00, 1, 0.00, 12000.00, 'MADHAVARAM MILK COLONY', 'MADHAVARAM MILK COLONY, CHENNAI', '2211280004', '', '1', 'upload_files/candidate_tracker/54597155108_PDF Scanner 28-11-22 10.34.52.pdf', NULL, '1', '2022-11-28', 0, '', '3', '59', '2022-12-08', 186000.00, '', '', '2022-12-23', '1', 'Selected for Thiyagu Team in Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-28 10:15:40', 60, '2022-12-05 03:55:13', 0, NULL, 1),
(11226, 'Arunkumar S', '31', '8072624834', '9790474529', 'arunkumaa6@gmail.com', '1999-10-26', 23, '2', '2', 'Muthumari S', 'farmer', 6000.00, 2, 0.00, 200000.00, 'Sattur, Virudhunagar (dist)', 'Perungudi, Chennai.', '2211280005', '1', '1', 'upload_files/candidate_tracker/59096367798_Arunkumar S_resume.pdf', NULL, '1', '2022-11-28', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic knowledge can be trained need time to check with parents and confirm the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-11-30', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 10:20:24', 99, '2022-11-29 09:21:14', 0, NULL, 1),
(11227, 'Jothika. G', '16', '7449253950', '9176881127', 'jothikagopi27@gmail.com', '2001-09-27', 21, '2', '2', 'Gopi k', 'Carpenter', 10000.00, 1, 0.00, 15000.00, 'Nil', 'Purasaiwalkam', '2211280006', '3', '1', 'upload_files/candidate_tracker/64703792167_CV. jo.pdf', NULL, '1', '2022-11-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication not suitable for MIS and not open for telecaller ', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 10:52:48', 1, '2022-11-28 10:58:10', 0, NULL, 1),
(11228, 'Vinotha k', '4', '9150951994', '', 'vinovinotha64@gmail.com', '2001-06-06', 21, '3', '2', 'Karunanithi', 'Labour', 30000.00, 2, 0.00, 10000.00, 'Kalaingar nagar', 'Kalaingar nagar', '2211280007', '', '1', 'upload_files/candidate_tracker/31978719301_vinotha.k Resume.pdf', NULL, '1', '2022-11-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 10:53:30', 1, '2022-11-28 11:05:10', 0, NULL, 1),
(11229, 'Akash. V', '4', '8056107718', '9042603598', 'vgakash9042@gmail', '2001-02-03', 21, '2', '2', 'Venkatesan', 'Coolie', 140000.00, 1, 0.00, 14000.00, 'No.10/19,sathani pet 2nd st,Guindy, ch-32', 'Chennai', '2211280008', '3', '1', 'upload_files/candidate_tracker/65283728270_DOC-20221107-WA0002..pdf', NULL, '1', '2022-11-28', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Communication ok Have 6 months Exp but seems to be slow kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 10:56:41', 1, '2022-11-28 11:21:53', 0, NULL, 1),
(11230, 'r subi', '4', '7094221713', '9159256177', 'subirengaraj226@gmail.com', '2001-04-22', 21, '3', '2', 'rengaraj l', 'cooli', 20000.00, 2, 0.00, 10000.00, 'vallam', 'vallam', '2211280009', '', '1', 'upload_files/candidate_tracker/46999765199_SUBI Resume .pdf', NULL, '1', '2022-11-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 11:05:57', 1, '2022-11-28 11:32:21', 0, NULL, 1),
(11231, 'Harini', '4', '9952245601', '9025198702', 'harinirenga79@gmail.com', '2000-09-07', 22, '2', '2', 'Parent', 'Working', 15000.00, 0, 15000.00, 20000.00, 'Srivilliputhur', 'Kodambakkam chennai', '2211280010', '1', '2', 'upload_files/candidate_tracker/22696773522_1669614179854_1669614175991_Harini Resume-1.pdf', NULL, '1', '2022-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok very high exp will take several leaves and will not sustain in a long on our roles not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 11:10:08', 99, '2022-11-29 09:21:57', 0, NULL, 1),
(11232, 'Bhuvaneswari M', '4', '8754132211', '9952245601', 'bhuvaneswarimurugan25@gmail.com', '2000-11-22', 22, '2', '2', 'Murugan S', 'highersecondary education', 20000.00, 1, 0.00, 12000.00, 'Virudhunagar', 'Kodambakkam', '2211280011', '1', '1', 'upload_files/candidate_tracker/62157686334_Resume Bhuvaneswari.docx', NULL, '1', '2022-11-28', 0, '', '3', '59', '2022-12-01', 138948.00, '', '3', '2023-03-13', '2', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 11:10:33', 60, '2022-11-29 10:32:34', 0, NULL, 1),
(11233, 'Madhusri Malaisamy', '4', '9025198702', '9952245601', 'malaimadhusri@gmail.com', '2001-02-04', 21, '2', '2', 'E.Malaisamy', 'Driver', 20000.00, 2, 0.00, 14000.00, 'Virudhunagar', 'Kodampakkam', '2211280012', '1', '1', 'upload_files/candidate_tracker/32933663975_resume.pdf', NULL, '1', '2022-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice no communication', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 11:11:07', 99, '2022-11-29 09:22:25', 0, NULL, 1),
(11234, 'Sakthipriya S', '6', '9688475817', '', 'sakthipriyap812@gmail.com', '2002-12-20', 19, '2', '2', 'Subramaniam S', 'Labour', 17000.00, 1, 0.00, 10000.00, 'Erode', 'Erode', '2211280013', '1', '1', 'upload_files/candidate_tracker/80452975296_Document.docx', NULL, '1', '2022-11-29', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability doubt and also she  is not hold the pressure', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-28 11:20:48', 85, '2022-11-29 11:58:18', 0, NULL, 1),
(11235, 'Thaiamma', '4', '9884984187', '', 'mahimahiaravind40866@gmail.com', '2001-10-06', 21, '2', '2', 'Mohammad noushath', 'Real estate', 20000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2211280014', '1', '2', 'upload_files/candidate_tracker/98218840328_kutty swe.pdf', NULL, '3', '2022-11-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-11-28 11:22:26', 1, '2022-11-28 11:30:35', 0, NULL, 1),
(11236, 'Bakkiyaraj', '7', '9751612154', '6382595530', 'hellobakkiyaraj@gmail.com', '1988-07-18', 34, '2', '1', 'Elumalai', 'T', 75000.00, 0, 20000.00, 5.00, 'Chennai', 'Thiruvanmiyur', '2211280015', '1', '2', 'upload_files/candidate_tracker/67032982277_BAKKIYARAJ E.docx', NULL, '1', '2022-11-28', 5, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-11-28 11:26:27', 1, '2022-11-28 11:43:37', 0, NULL, 1),
(11237, 'Y.Ruby', '4', '7695802004', '7871238518', 'yruby2223@gmail.com', '1999-11-08', 23, '1', '1', 'P. Rajamani', 'CRM in vidal health insurance', 18000.00, 1, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2211280016', '', '1', 'upload_files/candidate_tracker/2998285859_DocScanner 22-Nov-2022 7-12 am-1.pdf', NULL, '1', '2022-11-28', 0, 'Environment', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice no communication not suitable for our  roles', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 11:43:55', 1, '2022-11-28 12:02:14', 0, NULL, 1),
(11238, 'Bakkiyaraj.e', '7', '6382595530', '9751612154', 'hellobakkiyaraj@gmail.com', '1988-07-18', 34, '2', '1', 'Elumalai', 'Kuli', 100000.00, 3, 20000.00, 5.00, 'Chennai', 'Thiruvanmiyur', '2211280017', '1', '2', 'upload_files/candidate_tracker/20575424075_BAKKIYARAJ E.docx', NULL, '1', '2022-11-28', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Not suitable for our MF Roles not open for telesales', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-11-28 11:50:11', 1, '2022-11-28 11:55:22', 0, NULL, 1),
(11239, 'Chinnaraj', '4', '7338889278', '9940208301', 'chinnaraj632@gmail.com', '2001-03-02', 21, '3', '2', 'Durai', 'Toys', 14000.00, 1, 0.00, 15000.00, 'Chennai', 'Nanganallur', '2211280018', '', '1', 'upload_files/candidate_tracker/13583639994_Chinnaraj Resume.pdf', NULL, '1', '2022-11-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for Voice Process will not handle pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 12:17:02', 1, '2022-11-28 12:35:40', 0, NULL, 1),
(11240, 'ARIVENTHAN', '4', '9344096320', '', 'aarivu550@gmail.com', '2002-02-06', 20, '3', '2', 'K. VEERAPPAN', 'Agriculture', 8000.00, 1, 0.00, 15000.00, 'Kubakonam', 'Gunidy', '2211280019', '', '1', 'upload_files/candidate_tracker/20344259908_ARIVENTHAN (1).docx', NULL, '1', '2022-11-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Flow of Communication Much comfort in non voice he is not much open with target not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 12:18:43', 1, '2022-11-28 12:48:14', 0, NULL, 1),
(11241, 'Vishwapriya', '16', '7200185542', '', 'priyakp690@gmail.com', '1999-05-16', 23, '2', '1', 'Kumar', 'Business', 30000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2211280020', '1', '2', 'upload_files/candidate_tracker/56561696073_Viswapriya.pdf', NULL, '1', '2022-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for MIS checked for Telecaller and asked her to come for 2nd round but she didnt appear', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 12:38:08', 99, '2022-11-28 01:24:32', 0, NULL, 1),
(11242, 'VINITHA P', '16', '7338786813', '', 'vinithaece2013@gmail.com', '1996-08-13', 26, '1', '2', 'Parent', 'Farmer', 40000.00, 3, 22500.00, 35000.00, 'Kallakkurichi', 'Sholinganallur', '2211280021', '', '2', 'upload_files/candidate_tracker/43807190636_MY RESUME Oct22.pdf', NULL, '1', '2022-11-28', 15, 'P1269', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average and not much comfort in written communication Exp is min 25-20K Will not sustain in our roles', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 12:58:35', 1, '2022-11-28 01:04:57', 0, NULL, 1),
(11243, 'Neha Gupta', '11', '8145338884', '', 'nehagrullzz@gmail.com', '1992-05-31', 30, '3', '2', 'Self', 'Freelancer in private tutoring Since 7+ yrs', 80000.00, 0, 0.00, 30000.00, 'Siliguri, West Bengal', 'Chepauk, chennai', '2211280022', '', '1', 'upload_files/candidate_tracker/77282731987_neha\'s resume.docx', NULL, '1', '2022-11-28', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Product No Local Communication 2nd round with Gokul need to confirm the candidate later', '6', '2', '0', '1', '1', '0', '2', '2022-11-30', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 02:36:32', 1, '2022-11-28 02:47:18', 0, NULL, 1),
(11244, 'Farisha A', '33', '9597209756', '', 'Farishaa_com@spiher.ac.in', '1999-09-06', 23, '3', '2', 'Parent', 'Nil', 30000.00, 1, 0.00, 15000.00, '15c karukuzhai street periyakuppam thiruvallur', 'Thiruvallur', '2211280023', '', '1', 'upload_files/candidate_tracker/15757552661_FARISHA-1 resume.docx', NULL, '1', '2022-12-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '3', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 05:17:30', 1, '2022-11-28 05:21:39', 0, NULL, 1),
(11245, 'Gowtham a', '6', '9677361998', '9626332833', 'gowtham14197@gmail.com', '1997-05-30', 25, '2', '1', 'M.ARIVALAGAZAN', 'Jobless', 50000.00, 1, 23000.00, 20000.00, 'Erode', 'Erode', '2211280024', '1', '2', 'upload_files/candidate_tracker/46087611824_Gowtham Resume.docx', NULL, '1', '2022-11-29', 15, '', '3', '59', '2022-12-14', 202104.00, '', '6', '2023-02-17', '1', 'Selected for Suthagar Team in Consultant Role', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-28 06:29:51', 60, '2022-12-09 06:07:43', 0, NULL, 1),
(11246, 'Vignesh sampath', '20', '9087554972', '8682913728', 'mancomputer88@gmail.com', '1998-02-19', 24, '2', '2', 'Parent', 'Saree seller', 100000.00, 1, 2.00, 27000.00, 'Kanchipuram', 'Kanchipuram', '2211280025', '1', '2', 'upload_files/candidate_tracker/51367841756_Vignesh Sampath Resume .pdf', NULL, '2', '2023-09-29', 30, '', '4', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile have exp in sales but sustainability doubts in our profile kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2022-11-28 07:15:01', 104, '2023-09-29 04:53:23', 0, NULL, 1),
(11247, 'Dineshkumar G', '6', '6369633289', '6374619269', 'dinukutty03@gmail.com', '2002-01-03', 20, '2', '2', 'Gopal A', 'Tailor', 16000.00, 2, 0.00, 12000.00, 'Bhavani', 'Bhavani', '2211280026', '1', '1', 'upload_files/candidate_tracker/42652155254_dineshkumar.GJ.pdf', NULL, '1', '2022-11-29', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected with ramesh sir,  he told not suitable for sales', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-28 07:50:29', 85, '2022-11-29 12:11:29', 0, NULL, 1),
(11248, 'Muniyaraj', '13', '9750588413', '', 'smuniyaraja98@gmail.com', '1998-04-18', 24, '3', '2', 'Saravanan', 'IT', 20000.00, 3, 12000.00, 25000.00, 'Rajapalayam', 'Choolaimedu', '2211280027', '', '2', 'upload_files/candidate_tracker/81782861766_updated-resume-1.pdf', NULL, '1', '2022-12-03', 2, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 09:14:24', 1, '2022-11-28 09:19:24', 0, NULL, 1),
(11249, '', '0', '9363537752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-29 09:51:44', 0, NULL, 0, NULL, 1),
(11250, 'lavanesh', '4', '8825744276', '', 'lavaneshsank@gmail.com', '1996-05-30', 26, '2', '2', 'sankar', 'police', 40000.00, 1, 18000.00, 20000.00, 'tambaram', 'tambaram', '2211290002', '1', '2', 'upload_files/candidate_tracker/54480127633_LAVANESH S-3.pdf', NULL, '1', '2022-11-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-29 10:37:43', 85, '2022-11-30 10:22:45', 0, NULL, 1),
(11251, 'Mohamed anas', '31', '7094209939', '', 'mdanas1899@gmail.com', '1999-08-18', 23, '2', '2', 'Zahir hussain', 'Abroad', 20000.00, 1, 0.00, 13000.00, '3/158bismi street, sankaranpandal', 'Madras mansion, triplicane', '2211290003', '1', '1', 'upload_files/candidate_tracker/13123551907_Anas (2).pdf', NULL, '1', '2022-11-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very fresher no basic knowledge in  skills need time to confirm his interest,long run need to check if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-29 10:39:26', 99, '2022-11-29 04:13:30', 0, NULL, 1),
(11252, 'Jagan narayanan k', '4', '6383275016', '', 'jagannarayanan6@gmail.com', '2000-08-13', 22, '2', '2', 'Kathavarayan', 'Sewing machine centre', 200000.00, 1, 14500.00, 20000.00, 'Choolaimedu', 'Choolaimedu', '2211290004', '3', '2', 'upload_files/candidate_tracker/47748256992_WorkIndia Resume - Jagan narayanan.pdf', NULL, '1', '2022-11-29', 10, '', '3', '59', '2022-12-01', 183156.00, '', '0', NULL, '2', 'Selected for Banu Team need to confirm the Role', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 10:40:05', 1, '2022-11-29 10:52:48', 0, NULL, 1),
(11253, 'A Karthick priyan', '4', '9345133938', '6369661412', 'priyankarthick923@gmail.com', '2000-06-04', 22, '2', '2', 'Anguraj', 'Daily income', 18000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2211290005', '1', '1', 'upload_files/candidate_tracker/96664251333_karthik.pdf', NULL, '1', '2022-11-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable need to open a lot will not sustain in our roles', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-29 11:03:18', 85, '2022-11-29 11:56:45', 0, NULL, 1),
(11254, 'B.annamqlai', '6', '9884073211', '', 'Annamalaianna1994@gmail.com', '2007-11-29', 0, '2', '1', 'N.jayanthi', 'House wife', 14000.00, 0, 14000.00, 18000.00, 'Aminjikarai', 'Aminjikaram', '2211290006', '3', '2', 'upload_files/candidate_tracker/63425680153_Doc3.docx', NULL, '1', '2022-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open a lot Communication not upto the mark for  Telecaller will not sustain and handle our Pressure', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 11:17:21', 1, '2022-11-29 11:24:50', 0, NULL, 1),
(11255, 'arshad husham', '20', '7092830470', '', 'arshadhushamhussainibrahim297@gmail.com', '1998-11-23', 24, '2', '2', 'hussain basha', 'pumbler', 17000.00, 0, 0.00, 14000.00, 'chennai', 'chennai', '2211290007', '1', '1', 'upload_files/candidate_tracker/99789835161_Arshad_Resume.pdf', NULL, '1', '2022-11-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills need to learn a lot let him learn and come', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-29 11:17:59', 99, '2022-11-30 09:43:13', 0, NULL, 1),
(11256, 'Rajashree', '4', '6382588421', '', 'rjsri02@gmail.com', '2002-03-30', 20, '2', '2', 'Thirunavukkarasu', 'Daily wages', 60000.00, 2, 0.00, 13000.00, 'Kumbakonam', 'Poonamallee', '2211290008', '1', '1', 'upload_files/candidate_tracker/53195464933_CV_2022112219334141.pdf', NULL, '1', '2022-11-29', 0, '', '3', '59', '2022-12-01', 138948.00, '', '4', '2023-02-01', '2', 'Selected for Consultant Role B2B', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-29 12:22:06', 60, '2022-11-29 05:58:38', 0, NULL, 1),
(11257, 'Panjalai', '11', '7358187821', '', 'susivelnu38@gmail.com', '1999-08-03', 23, '2', '2', 'Palanivel', 'Security @', 200000.00, 3, 240000.00, 280000.00, '3/14, Vellaiyur, Ulundurpet , Kallakurich', '1st Cross street, Sathya Nagar, Ramapuram, Mumbai', '2211290009', '1', '2', 'upload_files/candidate_tracker/40521255688_Panjalai.pdf', NULL, '1', '2022-11-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok have exp in recruitment but no sustainability need to check ', '6', '1', '', '1', '1', '', '2', '2022-12-01', '2', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-29 12:23:32', 99, '2022-11-29 04:14:10', 0, NULL, 1),
(11258, 'Deepa', '16', '9940079319', '9003131105', 'deepavaradhan686@gmail.com', '1994-07-18', 28, '4', '1', 'Naga Dhana sekhar', 'Software', 30000.00, 1, 15000.00, 23000.00, 'Chrompet', 'Chrompet', '2211290010', '', '2', 'upload_files/candidate_tracker/19919653657_Deepa resume updates-MIS-converted.pdf', NULL, '1', '2022-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communicaiton Average no written skills   not open for telecaller profile too', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 12:26:58', 1, '2022-11-29 12:33:12', 0, NULL, 1),
(11259, 'Durgadevi', '4', '6374265524', '', 'durgakrishnan1910@gmail.com', '2001-10-19', 21, '2', '2', 'Gopalakrishnan', 'Daily wages', 60000.00, 1, 0.00, 13000.00, 'Mayilaadudurai', 'Poonamallee', '2211290011', '1', '1', 'upload_files/candidate_tracker/61146342766_CV_2022112215445695.pdf', NULL, '1', '2022-11-29', 0, '', '3', '59', '2022-12-01', 138948.00, '', '4', '2023-02-01', '2', 'Selected for Consultant Role B2B', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-29 12:35:28', 60, '2022-11-29 05:56:30', 0, NULL, 1),
(11260, 'Mohamed eliyas', '16', '8072172350', '', 'Liyasag25@gmail.com', '1998-06-25', 24, '2', '2', 'Abitha (mother)', 'House wife', 12500.00, 1, 14500.00, 25000.00, 'Kodungaiyur', 'Kodungaiyur', '2211290012', '1', '2', 'upload_files/candidate_tracker/49715962828_Mohamed.pdf', NULL, '1', '2023-02-16', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication Have Non voice Exp Will not handle our work pressure and sustainability doubts not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-29 12:49:16', 85, '2023-02-16 10:52:16', 0, NULL, 1),
(11261, 'Mahaprabu M', '14', '7904653247', '', 'mahaprabu9008@gmail.com', '2007-11-29', 0, '3', '2', 'Mayilsamy', 'Farmer', 15000.00, 1, 0.00, 350000.00, 'Salem', 'Salem', '2211290013', '', '1', 'upload_files/candidate_tracker/74033792113_Resume updated.pdf', NULL, '1', '2022-11-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Came forJob Fair no basic ideas in Javascript,need to learn only SQL knowledge if he comes back let us try', '2', '2', '0', '2', '2', '0', '2', '2022-12-02', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 03:31:09', 1, '2022-11-29 03:34:28', 0, NULL, 1),
(11262, 'Kavin J', '31', '7530092574', '6383604044', 'kavinj8969@gmail.com', '1999-04-11', 23, '3', '2', 'JAYAMANI T', 'Power Loom', 10000.00, 1, 0.00, 25000.00, 'Salem', 'Chennai', '2211290014', '', '1', 'upload_files/candidate_tracker/49739123117_KAVIN. J_RESUME.pdf', NULL, '1', '2022-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Very fresher no basic skills need time to learn later after a month if he come let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 03:48:25', 1, '2022-11-29 03:54:13', 0, NULL, 1),
(11263, 'Karthi', '4', '9361399021', '9150709869', 'rkarthi7321@gmail.com', '2001-07-03', 21, '2', '2', 'Ravichandran', 'Farmer', 50000.00, 2, 0.00, 20000.00, '158 Che Naachipattu chengam 606709Tiruvannamalai', 'No 5 thangam colony Anna Nagar Chennai 600040', '2211290015', '1', '1', 'upload_files/candidate_tracker/14233030349_Karthi R CV.docx', NULL, '1', '2022-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non  voice not suitable', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-29 06:31:07', 85, '2022-11-30 12:53:33', 0, NULL, 1),
(11264, 'Shobana', '22', '9841272365', '', 'shobanaparamasivan07@gmail.com', '2000-07-10', 22, '3', '2', 'Paramasivan', 'Electrician', 15000.00, 0, 0.00, 15000.00, 'Taramani chennai', 'Taramani chennai', '2211290016', '', '1', 'upload_files/candidate_tracker/30194372496_CV_2022112313475585.pdf', NULL, '1', '2022-12-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 06:47:58', 1, '2022-11-29 06:52:55', 0, NULL, 1),
(11265, '', '0', '7358505450', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211290017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-29 08:03:28', 0, NULL, 0, NULL, 1),
(11266, 'Rajasekar', '4', '7092863033', '', 'rajasekar19011998@gmail.com', '1998-01-19', 24, '3', '2', 'Ramesh kumar', 'Agriculture', 20000.00, 2, 0.00, 15000.00, 'Vandhavasi, thellar', 'Tambaram', '2211290018', '', '1', 'upload_files/candidate_tracker/90699817329_my resume.docx', NULL, '1', '2022-11-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 09:06:11', 1, '2022-11-29 09:16:14', 0, NULL, 1),
(11267, '', '0', '9743323456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211300001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-30 08:49:54', 0, NULL, 0, NULL, 1),
(11268, 'B.krithiga', '16', '9751061778', '9444068431', 'krithiga261@gmail.com', '2002-01-26', 20, '2', '2', 'Balasundram', 'Farmer', 17000.00, 2, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2211300002', '3', '1', 'upload_files/candidate_tracker/38580401831_B.KRITHIGA (RESUME ).docx', NULL, '1', '2022-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-30 09:36:34', 1, '2022-11-30 09:51:33', 0, NULL, 1),
(11269, 'N.Muthumari', '26', '7358892958', '9940351248', 'muthumariece42@gmail.com', '1994-06-07', 28, '2', '1', 'm.ramesh', 'working in pvt company', 30000.00, 2, 14000.00, 18000.00, 'ramapuram', 'ramapuram', '2211300003', '3', '2', 'upload_files/candidate_tracker/87142276646_muthumari.pdf', NULL, '1', '2022-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication not suitable for MIS not open for telecaller profile too', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-30 10:17:32', 1, '2022-11-30 10:34:48', 0, NULL, 1),
(11270, 'S. Umadevi', '4', '9944388890', '', 'umadevi12051999@gmail.com', '1999-05-12', 23, '2', '2', 'U. Sokkar', 'Daily wages', 17000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2211300004', '1', '1', 'upload_files/candidate_tracker/60294095414_5_6068637919931795160.pdf', NULL, '1', '2022-11-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice process only', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-30 10:22:28', 85, '2022-11-30 10:56:19', 0, NULL, 1),
(11271, 'Victrin bella sony', '11', '8939636370', '', 'victrinsony@gmail.com', '1986-08-04', 36, '2', '1', 'Raja paul', 'Soft Engineer', 70000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2211300005', '1', '1', 'upload_files/candidate_tracker/64311623180_Victrin_HR.docx', NULL, '1', '2022-11-30', 0, '', '3', '59', '2022-12-06', 144000.00, '', '4', '2023-03-27', '1', 'Selected for MF 3 months intern 8K Stipend then 12-14K 1.5-2yrs SA', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-11-30 10:55:48', 60, '2022-12-07 05:05:37', 0, NULL, 1),
(11272, 'NAVEENDRAN. C', '24', '9841186542', '7010363700', 'Naveendran2244@gmail.com', '1999-02-10', 23, '2', '2', 'Chinnaswamy.m', 'Office admin', 38000.00, 1, 0.00, 15000.00, 'Padi', 'Padi', '2211300006', '3', '1', 'upload_files/candidate_tracker/21911847566_NAVEENDRAN RESUME.pdf', NULL, '1', '2022-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Calling Will not sustain and not suitable', '8', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-30 11:11:50', 60, '2022-11-30 08:36:17', 0, NULL, 1),
(11273, 'Poornima', '4', '8148546571', '', 'P80592606@gmail.com', '1994-07-10', 28, '2', '1', 'Kanchana', 'BSC clinical nutrition and dietician', 60.00, 3, 0.00, 20.00, '37/64 vanniyampathi Street RA puram chennai-28', '37/64 vanniyampathi Street RA puram chennai-28', '2211300007', '1', '1', 'upload_files/candidate_tracker/59276028062_Poornima.N-1.pdf', NULL, '1', '2022-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up a lot not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-30 11:43:32', 99, '2022-12-01 11:17:03', 0, NULL, 1),
(11274, 'Swapna b c', '5', '8792114960', '8861545735', 'Swapnachandra203@gmail.com', '2000-04-04', 22, '1', '2', 'Chandrakanth', 'Diplom', 100000.00, 1, 15000.00, 18000.00, 'Hassan', 'Rajajinagar', '2211300008', '', '2', 'upload_files/candidate_tracker/12723814489_Swapna Resume.doc', NULL, '1', '2022-11-30', 30, 'CA168', '3', '59', '2022-12-08', 216000.00, '', '4', '2023-04-19', '2', 'Selected for ESales Mohanraj Team in Consultant Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-30 11:47:00', 60, '2022-12-05 03:33:26', 0, NULL, 1),
(11275, 'VALLARASU V', '4', '9597588497', '9500479664', 'dineshvallaa77@gmail.com', '2000-10-10', 22, '2', '2', 'VIJENDIRAN', 'FARMER', 60000.00, 2, 0.00, 15000.00, 'Vaiyacheri,purakkudi', 'Vaiyacheri,purakkudi', '2211300009', '1', '1', 'upload_files/candidate_tracker/62799709764_Resume_MY RESUME_Format2 (1).pdf', NULL, '1', '2022-11-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not intrested in job sustainablity issue', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-30 12:15:22', 85, '2022-11-30 12:33:53', 0, NULL, 1),
(11276, 'RANJITH.L', '4', '7418616169', '8525968814', 'rranjith6884@gmail.com', '2001-07-17', 21, '2', '2', 'Loganathan', 'Farmer', 60000.00, 2, 0.00, 15000.00, 'Annapanpettai', 'Annapanpettai', '2211300010', '1', '1', 'upload_files/candidate_tracker/79775327762_imgtopdf_3011221237020.pdf', NULL, '1', '2022-11-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not talkactive and not fit for team also ', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-30 12:15:55', 85, '2022-11-30 02:37:10', 0, NULL, 1),
(11277, 'Pavithra', '4', '7871395513', '8015577745', 'Pavithamana11@gmail.com', '1999-03-11', 23, '2', '1', 'Mohanraj', 'Electrical supervisor', 30000.00, 1, 14500.00, 19000.00, 'Tirupattur district', 'Palavaram', '2211300011', '3', '2', 'upload_files/candidate_tracker/54465167678_pavithra Resumae.pdf', NULL, '1', '2022-11-30', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in calling but not much comfort in distance Sustainability doubts check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-30 12:16:03', 1, '2022-11-30 12:34:18', 0, NULL, 1),
(11278, 'Sathish Kumar. S', '6', '8973630482', '', 'Sathishranjith8@gmail.com', '2000-07-09', 22, '2', '2', 'Sanmugam', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Avalpoondhurai', 'Avalpoondhurai', '2211300012', '1', '1', 'upload_files/candidate_tracker/45619282203_sv.pdf', NULL, '1', '2022-11-30', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for telecalling', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-30 12:24:51', 99, '2022-12-01 11:18:03', 0, NULL, 1),
(11279, 'Nandhini J', '4', '6382609107', '9597816495', 'nandhinijayaraman98@gmail.com', '1998-11-03', 24, '2', '2', 'Jayaraman', 'Farmer', 25000.00, 2, 0.00, 11000.00, 'Karur', 'Thanjavur', '2211300013', '1', '1', 'upload_files/candidate_tracker/94113966867__NANDHINI.J resume PDF.pdf', NULL, '1', '2022-11-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'due to low confidence in job ready to move any time native karur', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-30 02:23:26', 85, '2022-11-30 02:37:26', 0, NULL, 1),
(11280, 'Prasad. A', '6', '8428863732', '', 'Prasadsai3646@gmail.com', '2002-01-06', 20, '3', '2', 'Annamalai', 'Car driver', 25000.00, 2, 14000.00, 15000.00, 'Chennai', 'Aminjakari', '2211300014', '', '2', 'upload_files/candidate_tracker/6018953983_prasad.pdf', NULL, '1', '2022-11-30', 0, '', '5', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-30 02:36:20', 60, '2022-11-30 08:33:25', 0, NULL, 1),
(11281, 'Gengamirdham. J', '4', '9514324267', '', 'gengamirdham@gmail.com', '1999-08-28', 23, '1', '2', 'B. Jayakumar', 'Business', 30000.00, 1, 15000.00, 20000.00, 'Old washermenpet', 'Old washermenpet', '2211300015', '', '2', 'upload_files/candidate_tracker/88119604163_CV_2022110907482571.pdf', NULL, '1', '2022-11-30', 0, 'Direct walk in', '3', '59', '2022-12-07', 240000.00, '', '5', '1970-01-01', '2', 'Selected for Banu in Staff Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-30 02:52:31', 60, '2022-12-03 04:09:12', 0, NULL, 1),
(11282, 'Pavithra', '4', '7395843309', '', 'Annamalaikumar8084@gmail.com', '2001-08-01', 21, '2', '2', 'Annamalai', 'Daily wages', 10000.00, 2, 18000.00, 20000.00, 'Polur(Thiruvannamalai)', 'Ekkattuthangal', '2211300016', '3', '2', 'upload_files/candidate_tracker/85398160145_Pavithra.docx', NULL, '1', '2022-11-30', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', '5050 Profile have Exp in calling but much preferred for Non Voice Kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-30 03:10:26', 1, '2022-11-30 03:26:40', 0, NULL, 1),
(11283, 'KISHORE KUMAR R', '4', '9360690878', '9087262828', 'erohsik105@gmail.com', '2002-05-01', 20, '2', '2', 'RAJA V', 'BUISNESS', 16000.00, 1, 0.00, 15000.00, 'VADAPALANI', 'VADAPALANI', '2211300017', '1', '1', 'upload_files/candidate_tracker/7492174235_kishore resume 2.docx', NULL, '1', '2022-12-01', 0, '', '3', '59', '2022-12-07', 138948.00, '', '5', '1970-01-01', '2', 'Seleceyd for Banu in Consultant Role', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-30 07:02:25', 60, '2022-12-03 04:10:06', 0, NULL, 1),
(11284, 'Lalitha s', '11', '7305500136', '8122555864', 'Lalithasambasivam3@gmail.com', '2001-05-22', 21, '4', '2', 'Sambasivam', 'Coolie', 30000.00, 1, 14000.00, 25000.00, 'Chennai', 'Chennai', '2211300018', '', '2', 'upload_files/candidate_tracker/2727072326_Lalitha S Resume.docx', NULL, '1', '2022-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-30 07:20:04', 1, '2022-11-30 07:32:32', 0, NULL, 1),
(11285, 'abdul fasith', '31', '7373833534', '7010236003', 's.abdulfasith@gmail.com', '2001-07-16', 21, '2', '2', 'sheik abdullah', 'business', 40000.00, 0, 0.00, 300000.00, 'chennai', 'chennai', '2211300019', '1', '1', 'upload_files/candidate_tracker/41224264484_Resume.pdf', NULL, '1', '2022-12-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-30 08:28:03', 99, '2022-12-01 03:07:00', 0, NULL, 1),
(11286, 'Lingeshwaran M', '10', '6369273221', '9176508621', 'havocnaveen1806@gmail.com', '2001-06-18', 21, '2', '2', 'MANI A', '96000', 25000.00, 0, 0.00, 18000.00, 'Vyasarpadi Chennai 39', 'Vyasarpadi Chennai 39', '2212010001', '1', '1', 'upload_files/candidate_tracker/61420405077_lingesh resum.pdf', NULL, '1', '2022-12-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for nonvoice no communication not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-01 04:21:22', 99, '2022-12-02 04:48:39', 0, NULL, 1),
(11287, 'pransthini', '4', '8925109642', '', 'prashtmk@gmail.com', '1997-10-23', 25, '2', '2', 'annamalai', 'farmer', 10000.00, 2, 0.00, 12000.00, 'thanjavur', 'chennai', '2212010002', '2', '1', 'upload_files/candidate_tracker/35010327355_DOC-20220530-WA0001..pdf', NULL, '1', '2022-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 09:32:11', 1, '2022-12-01 09:33:50', 0, NULL, 1),
(11288, 'PRADHAP J', '4', '6381235091', '8940107875', 'prathapj483@gamil.com', '2000-01-22', 22, '2', '2', 'JAYAVEL. M', 'EB', 25000.00, 1, 0.00, 16000.00, 'Marakkanam', 'Vadapalani', '2212010003', '1', '1', 'upload_files/candidate_tracker/274841702_Pradhap new Resume-1.pdf', NULL, '3', '2022-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much focused in nonvoice will not sustain and not suitable for telecaller', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-01 09:55:06', 1, '2022-12-01 10:18:30', 0, NULL, 1),
(11289, 'Sandeep M', '27', '9500654277', '', 'sandeepabi1999@gmail.com', '2000-04-25', 22, '3', '2', 'Radha m', 'Labour', 60000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2212010004', '', '1', 'upload_files/candidate_tracker/96613964182_Sandeep resume1(3).pdf', NULL, '1', '2022-12-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 10:23:16', 1, '2022-12-01 10:27:11', 0, NULL, 1),
(11290, 'S. Gunaseelan', '16', '9087339145', '8056082870', 'Sgunaseelan1992@gmail.com', '1992-01-18', 30, '4', '2', 'T. Sukumar', 'Retrd govt employee', 10000.00, 1, 180000.00, 240000.00, 'Vanagaram', 'Vanagram', '2212010005', '', '2', 'upload_files/candidate_tracker/78415988625_S. Gunaseelan resume pdf.pdf', NULL, '1', '2022-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communicaiton not suitable', '3', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 10:23:33', 1, '2022-12-01 10:36:24', 0, NULL, 1),
(11291, 'diviya', '4', '7358306684', '', 'dhivikutty7358@gmail.com', '2001-04-10', 21, '3', '2', 'manikanan', 'fruit seller', 10000.00, 1, 16000.00, 17000.00, 'chennai', 'chennai', '2212010006', '', '2', 'upload_files/candidate_tracker/51240609437_Divi_Resume.PDF', NULL, '1', '2022-12-01', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'looking non voice, she cant handle pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 10:25:27', 1, '2022-12-01 11:03:46', 0, NULL, 1),
(11292, 'Atchaya.N', '5', '9080157824', '', 'atchuvani123@gmail.com', '2001-10-10', 21, '3', '2', 'Natarajan.R', 'Hotel', 10000.00, 2, 0.00, 12000.00, 'Mayiladuthurai', 'Poonnamallee', '2212010007', '', '1', 'upload_files/candidate_tracker/1798993279_CV_202211222014082.pdf', NULL, '1', '2022-12-01', 0, '', '3', '59', '2022-12-08', 138948.00, '', '4', '2023-02-01', '2', 'Selected for Banu Team in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-01 10:36:21', 60, '2022-12-03 04:11:18', 0, NULL, 1),
(11293, '', '0', '9894774362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212010008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-01 10:54:43', 0, NULL, 0, NULL, 1),
(11294, 'Sangeetha n', '4', '9952955069', '8056173751', 'sanghi1608n@gmail.com', '2000-08-16', 22, '2', '2', 'Santha.n', 'Chennai', 10000.00, 1, 0.00, 15000.00, 'Thomas mount Chennai 16', 'Thomas mount', '2212010009', '1', '1', 'upload_files/candidate_tracker/6246566374_SANGEETHA RESUME.docx', NULL, '1', '2022-12-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot will not handle our work pressure not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-01 11:10:53', 85, '2022-12-01 11:45:11', 0, NULL, 1),
(11295, 'k yeswanth', '20', '9398714146', '', 'sunnyyeswanth313@gmail.com', '1999-10-15', 23, '2', '2', 'k venkataramanachari', 'granite business', 400000.00, 1, 0.00, 18000.00, 'chittoor', 'chittoor', '2212010010', '3', '1', 'upload_files/candidate_tracker/72555572151_YESWANTH RESUME.pdf', NULL, '1', '2022-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He is looking for finance and also very clear that he will not sustain in Telecaller for a long not suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 11:17:04', 1, '2022-12-01 11:25:26', 0, NULL, 1),
(11296, 'Srirangaram.A', '2', '8667555096', '8675621904', 'Sriranga6198@gmail.com', '1998-01-06', 24, '2', '2', 'Ayachammy', 'Cooley', 10000.00, 2, 0.00, 13000.00, 'Chennai', 'Velachery', '2212010011', '1', '1', 'upload_files/candidate_tracker/16245266471_Srirangaram _Professional Resume – 02.pdf', NULL, '1', '2022-12-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic Skills 2nd round interviewed by manikandan and rejected', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-01 12:40:10', 99, '2022-12-02 03:54:33', 0, NULL, 1),
(11297, 'Fajul Rahuman S', '4', '9944979571', '7010653920', 'fajulrahuman95@gmail.com', '1995-06-09', 27, '2', '2', 'Shahul hameed A', 'Farmer\'s', 25000.00, 1, 17000.00, 25000.00, 'Salem', 'Salem', '2212010012', '3', '2', 'upload_files/candidate_tracker/63745493506_Resume Fajul (1) (2).docx', NULL, '1', '2022-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Career Gap have exp in Post office no sustainability in the previous roles no telecalling Exp will not sustain', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 12:59:49', 1, '2022-12-01 01:03:27', 0, NULL, 1),
(11298, 'Thiyagarajan', '33', '9940340284', '', 'thiyagu2595@gmail.com', '1995-10-25', 27, '3', '1', 'Balamoorthy', 'Corporation', 12000.00, 0, 20000.00, 38000.00, 'Guduvancheri', 'Guduvancheri', '2212010013', '', '2', 'upload_files/candidate_tracker/54326272337_Resume-Thiyagarajan B.pdf', NULL, '1', '2022-12-01', 1, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'From guduvanchery...\nprefer to talk in tamil.. not suit for our MF .. Not  Ok with sales process.. ', '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 01:20:31', 1, '2022-12-01 01:26:56', 0, NULL, 1),
(11299, '', '0', '9790832452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212010014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-01 01:40:35', 0, NULL, 0, NULL, 1),
(11300, 'Muthukumar v', '2', '9360089918', '', 'kumarvpnr12@gmail.com', '1997-05-30', 25, '2', '2', 'Veeman', 'Farmer', 30000.00, 4, 0.00, 20000.00, 'Tenkasi', 'Ekkattuthagal', '2212010015', '1', '1', 'upload_files/candidate_tracker/57435593912_MUTHU V RESUME .pdf', NULL, '1', '2022-12-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have teaching exp and much focus for Java Django Career Gap will not sustain and not open for TxxampC', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-01 03:49:50', 99, '2022-12-02 03:54:58', 0, NULL, 1),
(11301, 'Akshaya.S', '22', '8778700745', '9445057092', 'akshayasai1924@gmail.com', '1998-07-19', 24, '2', '2', 'Poongothai.S', 'Self-employed', 150000.00, 1, 25000.00, 28000.00, 'Chennai', 'Chennai Shenoy nagar', '2212010016', '1', '2', 'upload_files/candidate_tracker/66443726797_Ak resume(1)-converted (1).pdf', NULL, '1', '2022-12-03', 15, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,Have Exp in Content Writing  But sustainability doubt in our role kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-01 04:15:55', 85, '2022-12-03 09:51:25', 0, NULL, 1),
(11302, 'jeeva t', '13', '9894417462', '', 'jeevathangaraj19@gmail.com', '2000-06-19', 22, '2', '1', 'thomson', 'business', 20000.00, 0, 0.00, 15000.00, 'chennnai', 'chennai', '2212010017', '2', '1', 'upload_files/candidate_tracker/7402571464_Cv-jeeva-M.Sc(Cs)-1.docx', NULL, '1', '2022-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 06:27:04', 1, '2022-12-01 06:31:33', 0, NULL, 1),
(11303, 'ashok kumar s', '5', '8667884235', '', 'hardyjaanu@gmail.com', '1994-06-02', 28, '2', '2', 'sekar', 'business', 13000.00, 2, 18000.00, 21000.00, 'chennai', 'chennai', '2212010018', '2', '2', 'upload_files/candidate_tracker/12467801808_ASHOK RESUME 2022 PDF.pdf', NULL, '1', '2022-12-02', 0, '', '3', '59', '2022-12-05', 298000.00, '', NULL, '2024-01-18', '1', 'Selected for GK sir Team', '5', '1', '4', '1', '1', '1', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-01 06:33:25', 99, '2022-12-19 09:54:51', 0, NULL, 1),
(11304, 'aravindha kumar a', '5', '9444452885', '', 'aravinthakumar@gmail.com', '1995-03-01', 27, '2', '2', 'ashok kumar', 'farme', 17000.00, 2, 16000.00, 18000.00, 'chennai', 'chennai', '2212010019', '2', '2', 'upload_files/candidate_tracker/38843471297_Aravinth November Resume 22.pdf', NULL, '1', '2022-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 06:40:06', 1, '2022-12-01 06:43:15', 0, NULL, 1),
(11305, 'M. Mahalakshmi', '4', '8838635276', '7200149421', 'mahalaksh0111@gmail.com', '1999-09-10', 23, '2', '2', 'Murugan', 'Telecaller', 150000.00, 1, 0.00, 18000.00, 'Kottivakkam', 'Kottivakkam', '2212010020', '1', '1', 'upload_files/candidate_tracker/7233984545_2 pages resumes new (2).pdf', NULL, '1', '2022-12-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-01 06:43:23', 99, '2022-12-05 10:27:40', 0, NULL, 1),
(11306, 'vijayaraghavan p', '13', '9360981227', '', 'vijayaragavan2781999@gmail.com', '1999-08-27', 23, '2', '2', 'padmanaban c', 'business', 25000.00, 1, 0.00, 12000.00, 'madurai', 'madurai', '2212010021', '2', '1', 'upload_files/candidate_tracker/61582789651_vijaya ragavan.pdf.pdf', NULL, '2', '2022-12-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 06:45:34', 1, '2022-12-01 06:49:00', 0, NULL, 1),
(11307, 'Joshua', '31', '7639035386', '', 'yoshva2018@gmail.com', '2001-12-23', 20, '2', '2', 'Marirathanam', 'Farmer', 20000.00, 4, 0.00, 12000.00, 'Chennai', 'Chennai', '2212010022', '1', '1', 'upload_files/candidate_tracker/69303968152_joshua-resume.docx', NULL, '1', '2022-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Technical Round reject by Manikandan not much comfort in TxxampC will not sustain, need to learn a lot', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-01 10:29:13', 99, '2022-12-06 01:08:15', 0, NULL, 1),
(11308, 'THENDRAL BHARATHI', '11', '9080343507', '', 'thendral180901@gmail.com', '2001-09-18', 21, '2', '2', 'Palanisamy', 'Inspector of police', 80000.00, 1, 0.00, 20000.00, 'Porur', 'Porur', '2212010023', '1', '1', 'upload_files/candidate_tracker/42926876137_Thendral Resume-4.pdf', NULL, '1', '2022-12-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good,Pressure Handling Doubt,Fresher Looking for CTC growth Will not run in a long', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-01 10:29:20', 99, '2022-12-02 03:55:27', 0, NULL, 1),
(11309, 'P.N Niranjann', '11', '9677010753', '', 'niranjann.padala@gmail.com', '2001-07-03', 21, '3', '2', 'DATTATHREYA p', 'Manager', 300000.00, 0, 0.00, 20000.00, 'Kk nagar', 'Kk nagar', '2212010024', '', '1', 'upload_files/candidate_tracker/27895682878_P.N. Niranjann.pdf', NULL, '1', '2022-12-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Yet to complete his graduation Average Communication Will not sustain for a long not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 10:35:39', 1, '2022-12-02 11:21:25', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11310, 'A S NAGARAJAN', '13', '9440352610', '9533372944', 'asnagararajanbtech@gmail.com', '1992-03-15', 30, '3', '2', 'A N sampath', 'Weaver\'s', 15000.00, 0, 0.00, 18000.00, 'Ekambarakuppam', 'Chennai villivakkam', '2212020001', '', '1', 'upload_files/candidate_tracker/61724396234_Nagarajan AS.docx', NULL, '1', '2022-12-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-02 09:34:56', 1, '2022-12-02 09:37:54', 0, NULL, 1),
(11311, '', '0', '8056103340', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212020002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-02 10:27:06', 0, NULL, 0, NULL, 1),
(11312, 'T VIJAYARAGAVAN', '16', '7092804678', '', 'ragavanvels@gmail.com', '2007-12-02', 0, '2', '2', 'B Thangavelu', 'Business', 25000.00, 3, 160000.00, 250000.00, 'Chennai', 'Chennai', '2212020003', '3', '2', 'upload_files/candidate_tracker/51800906729_CV - WE.pdf', NULL, '1', '2022-12-02', 45, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication just Managable No written Skills will not sustain notice 45 days not suitable', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-02 10:50:53', 1, '2022-12-02 10:57:29', 0, NULL, 1),
(11313, 'ishwarya', '33', '9941833124', '', 'ishwarya100798@gmail.com', '1998-07-10', 24, '2', '2', 'ammachi', 'homemaker', 30000.00, 4, 14200.00, 20000.00, 'chennai', 'chennai', '2212020004', '1', '2', 'upload_files/candidate_tracker/71905120254_ISHWARYA RESUME.docx.pdf', NULL, '1', '2022-12-02', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Looking only for Salary increase Fresher for Telecaller will not sustain not suitable', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-02 11:17:28', 99, '2022-12-02 03:56:02', 0, NULL, 1),
(11314, 'Vijay i', '17', '7558854812', '6380623775', 'ananyavijoy@gmail.com', '1991-03-15', 31, '3', '1', 'Jasmin', 'Sales', 25000.00, 0, 25000.00, 25000.00, 'Nilgiri', 'Ashoknagar', '2212020005', '', '2', 'upload_files/candidate_tracker/72995129290_1667465692926_vijoy CV.pdf', NULL, '1', '2022-12-02', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'Not suitable candidate', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-02 11:20:55', 1, '2022-12-02 12:03:11', 0, NULL, 1),
(11315, '', '0', '7558854813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212020006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-02 11:50:35', 0, NULL, 0, NULL, 1),
(11316, 'vallarasu', '16', '9600284565', '', 'vallarasug642000@gmail.com', '2000-04-06', 22, '3', '2', 'Govinthan', 'cashier', 17000.00, 4, 15000.00, 17000.00, 'thirukoilur', 'pallikaranai', '2212020007', '', '2', 'upload_files/candidate_tracker/28624488884_valter.pdf', NULL, '1', '2022-12-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication not suitable will not sustain in our roles', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-02 11:55:47', 1, '2022-12-02 12:09:45', 0, NULL, 1),
(11317, 'prasanth', '16', '9176626214', '', 'itsmeprashanph07@gmail.com', '1996-11-07', 26, '2', '2', 'unnikrishanan', 'electrician', 200000.00, 0, 16500.00, 30000.00, 'chennai', 'chennai', '2212020008', '1', '2', 'upload_files/candidate_tracker/45763268881_prashanth.docx Main resume.pdf', NULL, '1', '2022-12-02', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No sustainability Looking only for salary increase will not sustain', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-02 12:14:38', 99, '2022-12-02 03:56:33', 0, NULL, 1),
(11318, 'Rama moorthy', '5', '9361421175', '9025347240', 'sakthimubi27@gmail.com', '2001-08-27', 21, '2', '2', 'Murugan', 'Farmar', 30000.00, 0, 25000.00, 25000.00, 'kalamarudur ulundhurpet kallakurichi', 'Thooraipaakam, chennai', '2212020009', '1', '2', 'upload_files/candidate_tracker/48051905505_RAMAMOORTHY M (1) (1).docx', NULL, '1', '2022-12-02', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable candidate', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-02 12:37:53', 60, '2022-12-02 07:37:26', 0, NULL, 1),
(11319, 'Viji S', '33', '9176232091', '7358741373', 'svijayviji2001@gmail.com', '2001-05-24', 21, '2', '2', 'Sundaram', 'Auto driver', 15000.00, 1, 0.00, 15000.00, 'Medavakam, Chennai', 'Medavakam, Chennai', '2212020010', '1', '1', 'upload_files/candidate_tracker/33733878742_1643793784481_Resume.VIJI.pdf', NULL, '1', '2022-12-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,have  6  month internship exp in backend no basics in Accounts too long distance will not sustain and handle our pressure not suitable', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-02 04:06:01', 85, '2022-12-03 12:35:11', 0, NULL, 1),
(11320, 'Muffin Rashith', '11', '7010468149', '9842584000', 'muffinrashith22@gmail.com', '1997-07-30', 25, '2', '2', 'sathique', 'Former', 300000.00, 1, 0.00, 13000.00, 'sirkali', 'Thomas Mount', '2212020011', '1', '1', 'upload_files/candidate_tracker/11914361899_Muffin rashith resume .pdf', NULL, '1', '2022-12-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,will travel to singapore in 1 yr will not sustain in a long lot of personal issues going on will take lot of leaves not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-02 08:35:16', 99, '2022-12-03 11:25:13', 0, NULL, 1),
(11321, 'D Praveen', '16', '9884872846', '7550207154', 'praveendaya1994@gmail.com', '1995-07-11', 27, '2', '2', 'C Dayalan', 'Business', 14000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2212030001', '1', '2', 'upload_files/candidate_tracker/31640088290_Praveen (1) (2).doc', NULL, '1', '2022-12-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-03 10:34:44', 99, '2022-12-03 11:25:41', 0, NULL, 1),
(11322, 'Siva', '4', '6382563588', '', 'sivaramesh.dpche@gmail.com', '2000-06-04', 22, '2', '2', 'Ramesh', 'Bank', 30000.00, 1, 15000.00, 15000.00, 'Ayyampettai', 'Ayyampettai', '2212030002', '1', '2', 'upload_files/candidate_tracker/71073254318_siva resume word.docx', NULL, '1', '2022-12-05', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not intrested in sales field and telecalling', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-03 10:49:01', 85, '2022-12-05 03:19:01', 0, NULL, 1),
(11323, 'Harrison Gabriel Alexander', '4', '9176129345', '9962789052', 'harry071298@gmail.com', '1998-12-07', 23, '2', '2', 'Maxwell Alexander', 'Retaired', 25000.00, 1, 18000.00, 19000.00, 'VN lane pudupet Chennai', 'Pudupet Chennai', '2212030003', '3', '2', 'upload_files/candidate_tracker/47749305783_Harry Resume (1).docx', NULL, '1', '2022-12-03', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Communication ok Have Telecalling Exp but in different domain can give a try for our sales kindly check and confirm', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-03 11:01:33', 1, '2022-12-03 11:06:10', 0, NULL, 1),
(11324, 'Surya', '6', '9790929204', '', 'Suryausaa@gmail.com', '2001-12-26', 20, '1', '2', 'Ulaganathan', 'Late', 25000.00, 0, 18000.00, 18000.00, 'Royapuram', 'Royapuram', '2212030004', '', '2', 'upload_files/candidate_tracker/64594850627_surya pdf.pdf', NULL, '1', '2022-12-03', 0, 'P1258', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for Sales Calls will not sustain', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-03 12:03:07', 1, '2022-12-03 12:17:56', 0, NULL, 1),
(11325, 'SujithSampath', '4', '6381275934', '9514376095', 'Sujithgeorge1999@gmail.com', '1999-11-30', 23, '2', '2', 'Sambanth', 'Ex army', 10000.00, 1, 20000.00, 25000.00, 'Vandalur', 'Vandalur', '2212030005', '1', '2', 'upload_files/candidate_tracker/88765602553_Resume. .pdf', NULL, '1', '2022-12-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 8 months Exp in Just Dial Calling Too long distance ,of  Career Gap  Wil not sustain he is into bike racing will not run in a long', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-03 12:13:39', 85, '2022-12-03 12:35:34', 0, NULL, 1),
(11326, 'Ravi Kumar Yadav', '31', '6203974317', '', 'ravi943117@gmail.com', '1999-02-05', 23, '2', '2', 'Rameshwar yadav', 'Small business', 20000.00, 3, 10000.00, 15000.00, 'Hazaribagh, Jharkhand', 'Urrapakam, Chennai', '2212030006', '1', '2', 'upload_files/candidate_tracker/72875486204_Ravi Kumar resume@.pdf', NULL, '1', '2022-12-03', 0, '', '3', '59', '2022-12-05', 120000.00, '', '', '1970-01-01', '1', 'Have basic knowledge in JS and React Can be trained no local Language  only english and hindi 3-5 months Intern with Stipend 5K then Employment overall 3yrs SA salary start 10-12K', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-03 01:29:14', 99, '2022-12-03 02:31:00', 0, NULL, 1),
(11327, '', '0', '6203974327', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212030007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-03 01:41:51', 0, NULL, 0, NULL, 1),
(11328, 'Abishek v', '23', '9092592598', '6369610368', 'abishekvenkat22@yahoo.com', '1995-01-21', 27, '2', '2', 'Venkatachalam', 'Powerloom', 6000.00, 0, 0.00, 1.50, 'Erode', 'Chennai', '2212030008', '1', '1', 'upload_files/candidate_tracker/93077277990_web design.pdf', NULL, '1', '2022-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very Slow,Long Career Gap not much strong in basics of  JS  will not adapt to our working conditions not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-03 03:15:54', 99, '2022-12-15 09:31:04', 0, NULL, 1),
(11329, 'Karthikeshwar K A', '31', '8807379177', '', 'keshwarkarthi914@gmail.com', '1998-09-04', 24, '2', '2', 'P.Arumugam', 'Shop keeper', 300000.00, 2, 13500.00, 22000.00, 'Kanchipuram', 'Chennai', '2212030009', '1', '2', 'upload_files/candidate_tracker/38964713622_Karthik_Resume.pdf', NULL, '1', '2022-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 6 months in React have a huge expectation with the salary will not sustain in a long Final round reject by Gokul', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-03 03:25:55', 99, '2022-12-10 12:18:36', 0, NULL, 1),
(11330, 'rohit', '6', '9841886814', '', 'vrohith984188@gmail.com', '2001-12-11', 20, '2', '2', 'venkatraman', 'auto driver', 8000.00, 1, 0.00, 18000.00, 'chennai', 'cheenai', '2212030010', '1', '1', 'upload_files/candidate_tracker/52677420097_Emailing Rohith.pdf', NULL, '1', '2022-12-07', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sales Sustainability Doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-03 05:35:50', 60, '2022-12-07 03:48:44', 0, NULL, 1),
(11331, 'nowfal riswan', '23', '9843071997', '8667747146', 'nowfalriswan1976@gmail.com', '1997-07-19', 25, '4', '2', 'mohamed haja', 'office helper', 20000.00, 1, 0.00, 15000.00, 'mayiladuthurai', 'mayiladuthurai', '2212030011', '', '1', 'upload_files/candidate_tracker/3445371464_Nowfal Resume-2.pdf', NULL, '2', '2022-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-03 07:33:26', 1, '2022-12-05 12:33:00', 0, NULL, 1),
(11332, '', '0', '9944397148', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212040001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-04 04:33:44', 0, NULL, 0, NULL, 1),
(11333, 'Abishek', '23', '6369610368', '9092592598', 'abishekvenkat21@outlook.com', '1995-01-21', 27, '3', '1', 'Venkatachalam j', 'Powerloom', 6000.00, 0, 0.00, 1.50, 'Erode sivagiri', 'Chennai', '2212040002', '', '1', 'upload_files/candidate_tracker/30299083654_web design.pdf', NULL, '1', '2022-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-04 07:03:06', 1, '2022-12-04 07:06:33', 0, NULL, 1),
(11334, 'Sumathy', '4', '8148484112', '', 'sumathysree1409@gmail.com', '1994-04-30', 28, '2', '2', 'Santhana Pandi T', 'Driver', 55000.00, 2, 0.00, 14000.00, 'Chennai', 'Chennai', '2212040003', '1', '1', 'upload_files/candidate_tracker/16336114163_SUMATHY S.docx', NULL, '1', '2022-12-05', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Career Gap No highest Graduation fresher for Telecalling need to train a lot kindly check andlet me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-04 09:58:28', 85, '2022-12-05 03:15:30', 0, NULL, 1),
(11335, 'L. Guganeshwaran', '2', '8681872352', '', 'guganeshwarangugan@gmail.com', '2000-09-12', 22, '2', '2', 'S. Lingesan', 'Office assistant', 12000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2212050001', '1', '1', 'upload_files/candidate_tracker/30675228822_Screenshot_20221127_214438.pdf', NULL, '1', '2022-12-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT domain,Currently working as Document specialist 45 days notice not much strong in basics given him time to learn sustainabilty doubts', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-05 10:09:25', 99, '2022-12-05 10:28:03', 0, NULL, 1),
(11336, '', '0', '8681872353', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212050002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-05 10:13:32', 0, NULL, 0, NULL, 1),
(11337, 'Mohan.M', '4', '6369853425', '9382826111', 'mnike850@gmail.com', '2001-06-27', 21, '2', '2', 'Muthu.N', 'Mechanic', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2212050003', '1', '1', 'upload_files/candidate_tracker/95694312560_photo pc1.pdf', NULL, '1', '2022-12-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Career Gap Seems much preferred with non voice process not suitable for calling will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-05 10:59:34', 85, '2022-12-05 03:16:15', 0, NULL, 1),
(11338, 'K. Harudamathi', '4', '9940626705', '', 'Harudamathy.2906@gmail.com', '1999-06-29', 23, '2', '2', 'Kasirajan', 'Sales', 50000.00, 2, 0.00, 15000.00, 'Palavaram', 'Palavaram', '2212050004', '1', '1', 'upload_files/candidate_tracker/64847688569_628c0d1c-1739-4c26-88c9-c50f446355d2_1670064854128_K. Harudamathi .pdf', NULL, '1', '2022-12-05', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Too long Distance Fresher for roles Have interest to work in voice process kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-05 10:59:53', 99, '2022-12-07 09:19:52', 0, NULL, 1),
(11339, 'Rajesh .N', '4', '8939446462', '', 'RAJESHN020920@GMAIL.COM', '2000-09-02', 22, '2', '2', 'J.Nagaraj', 'Office Attender', 18000.00, 1, 0.00, 15000.00, 'No 44 Pudupet Garden Street Royapettah Chennai 14', 'No 44 Pudupet Garden Street Royapettah Chennai 14', '2212050005', '1', '1', 'upload_files/candidate_tracker/57825063276_Resume_26_10_2022_08_41_44_pm.pdf', NULL, '1', '2022-12-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Clear Communication not suitable for our customer communication  will not sustain and not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-05 11:00:04', 85, '2022-12-05 03:17:05', 0, NULL, 1),
(11340, 'sudha', '4', '8608199504', '', 'sudhasridevi97@gmail.com', '1997-05-28', 25, '3', '2', 'samynathan', 'security', 30000.00, 3, 0.00, 16000.00, 'chennai', 'chennai', '2212050006', '', '2', 'upload_files/candidate_tracker/64846757313_sudha.pdf', NULL, '1', '2022-12-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication not open for Target based positions not suitable for our roles', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-05 11:08:49', 1, '2022-12-05 11:43:04', 0, NULL, 1),
(11341, 'Arun. S', '11', '6369760591', '', 'ramarun1510@gmail.com', '2000-10-15', 22, '2', '2', 'Sundharam', 'Daily wages', 5000.00, 0, 166000.00, 300000.00, 'Thanjavur', 'Gundy', '2212050007', '3', '2', 'upload_files/candidate_tracker/31001836037_ARUN S1.doc', NULL, '1', '2022-12-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication no written skills not suitable for MIS roles will not sustain', '6', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-05 11:09:59', 1, '2022-12-05 11:19:51', 0, NULL, 1),
(11342, 'Rajesh. R', '2', '8778254927', '8825851481', 'samuravi2@gmail.com', '1998-03-15', 24, '3', '2', 'Ravi.R', 'House keeping', 13000.00, 1, 0.00, 13000.00, 'Tiruvallur', 'Tiruvallur', '2212050008', '', '1', 'upload_files/candidate_tracker/3856579154_Rajesh 24-20221030-WA0001.pdf', NULL, '1', '2022-12-05', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic knowledge in IT Skills Given a month time to learn if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2023-01-07', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-05 11:32:51', 1, '2022-12-05 11:37:17', 0, NULL, 1),
(11343, 'Sriram', '4', '9500442258', '9688922184', 'sriram66928@gamil.com', '1998-08-12', 24, '2', '2', 'Sivakumar J', 'Shop keeper', 30000.00, 2, 10000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2212050009', '1', '2', 'upload_files/candidate_tracker/19996198332_SRIRAM S-2.pdf', NULL, '1', '2022-12-05', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Asked for a time to join due to exams but not responding the calls later\n', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-05 12:29:09', 85, '2022-12-05 03:18:42', 0, NULL, 1),
(11344, 'Keerthana.M', '4', '6374610571', '9940282903', 'keerthanamuthu29@gmail.com', '1999-08-05', 23, '2', '2', 'Muthu', 'Business', 30000.00, 1, 11000.00, 15000.00, 'Valasaravakkam', 'Valasaravakkam', '2212050010', '1', '2', 'upload_files/candidate_tracker/2988192291_keerthi.pdf', NULL, '1', '2022-12-05', 0, '', '3', '59', '2022-12-15', 168000.00, '', '4', '2023-01-05', '1', 'Selected for B2B in staff Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-05 12:34:49', 60, '2022-12-10 01:23:44', 0, NULL, 1),
(11345, 'Santhoshkumar G', '14', '8754096745', '', 'gsanthoshkumar406@gmail.com', '2000-07-06', 22, '3', '2', 'Gopal', '5', 2000.00, 1, 0.00, 10000.00, 'THANJAVUR', 'THANJAVUR', '2212050011', '', '1', 'upload_files/candidate_tracker/80398938268_RESUME(santhosh1)-5.pdf', NULL, '1', '2023-01-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-05 03:47:30', 1, '2023-01-05 06:13:13', 0, NULL, 1),
(11346, '', '0', '9940584071', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212050012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-05 04:31:44', 0, NULL, 0, NULL, 1),
(11347, '', '0', '9514620199', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212050013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-05 04:49:59', 0, NULL, 0, NULL, 1),
(11348, '', '0', '7010985201', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212050014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-05 06:51:12', 0, NULL, 0, NULL, 1),
(11349, 'M. Mahalakshmi', '4', '9092247280', '7200149421', 'mahalaksh0111@gmail.com', '1999-09-10', 23, '2', '2', 'Murugan', 'Telecaller', 150000.00, 1, 0.00, 18000.00, 'Kottivakkam', 'Kottivakkam', '2212060001', '1', '1', 'upload_files/candidate_tracker/50718132347_2 pages resumes new (2).pdf', NULL, '1', '2022-12-06', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 09:07:13', 99, '2022-12-06 01:08:38', 0, NULL, 1),
(11350, 'Mohammed Azeezur Rahman', '4', '9514620499', '8682820717', 'smartajis12292@gmail', '1997-08-02', 25, '2', '2', 'Abdul Rasheed', 'Tailor', 35000.00, 2, 0.00, 20000.00, 'No 17/A teeds garden 2st perumbur Venus', 'No 17/A Teeds Garden 2st Perumbur Venus', '2212060002', '1', '2', 'upload_files/candidate_tracker/52780347587_AJIS RESUM (1) (1).docx', NULL, '1', '2022-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to open a lot will not handle our Sales calls not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 10:01:55', 99, '2022-12-06 01:09:01', 0, NULL, 1),
(11351, 'Arifunissa', '11', '8148856365', '7448304740', 'zeenathunissa2013@gmail.com', '1997-12-30', 24, '2', '2', 'Gulam mohammed', 'Own business', 50000.00, 3, 17000.00, 27000.00, '5/454 phase 1 dwaraka nagar, manali new town', '5/454 Phase 1 Dwaraka Nagar, Manali New Town', '2212060003', '1', '2', 'upload_files/candidate_tracker/24799010895_arifa resume (1).pdf', NULL, '1', '2022-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Recruitment but not much strong with that lot of job changes also did some certification in bridal make up her focus is towards that sustainability doubts in our profile', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 10:48:30', 99, '2022-12-06 06:38:56', 0, NULL, 1),
(11352, 'Venkadesh', '4', '6383239383', '', 'Venkatmass264@gmail.com', '1999-04-26', 23, '2', '2', 'Murugaiyan', 'Conductor', 50000.00, 1, 10500.00, 13000.00, 'Thirukkanurpatti', 'Thirukanurpatti', '2212060004', '1', '2', 'upload_files/candidate_tracker/61986933566__venkat264vks (1).pdf', NULL, '1', '2022-12-06', 30, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not ok with the profile and have sustainability issue', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-06 11:09:57', 85, '2022-12-06 11:34:32', 0, NULL, 1),
(11353, 'Sravani', '11', '9551713845', '', 'sravanistuffy4@gmail.com', '1998-08-04', 24, '3', '2', 'Parent', 'Business', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2212060005', '', '1', 'upload_files/candidate_tracker/9983865586_Sravani_Resume2020.pdf', NULL, '1', '2022-12-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-06 11:40:52', 1, '2022-12-06 11:43:26', 0, NULL, 1),
(11354, 'Mani muthu', '11', '7358057814', '', 'manimuthunagarajan@gmail.com', '1999-06-30', 23, '3', '2', 'NAGARAJAN.M', 'Kulli', 25000.00, 1, 0.00, 13000.00, 'Poonamallee', 'Poonamallee', '2212060006', '', '1', 'upload_files/candidate_tracker/67136831934_ManiMuthu_CV.docx', NULL, '1', '2022-12-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-06 12:13:47', 1, '2022-12-06 12:21:40', 0, NULL, 1),
(11355, 'Immanuel Joshua .A', '23', '8526626245', '', 'viratjosh4@gmail.com', '2002-02-20', 20, '2', '2', 'A.Arish', 'Farmer', 20.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2212060007', '1', '1', 'upload_files/candidate_tracker/6039622705_Joshua Resume new.pdf', NULL, '1', '2022-12-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic knowledge in Node, Seems to be playful technical round with Viswa Should schedule the next round with Gokul based on his availability', '2', '1', '', '1', '1', '', '2', '2022-12-10', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 12:15:32', 99, '2022-12-07 09:20:40', 0, NULL, 1),
(11356, 'Thangamanikandan', '27', '8525800836', '9865237365', 'manikandanparamaa@gmail.com', '1999-07-30', 23, '2', '2', 'Thiruselvi', 'House wife', 10000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2212060008', '1', '1', 'upload_files/candidate_tracker/69078295131_NEW RESUME.docx', NULL, '1', '2022-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'His preferred skill is dotnet Give him time for Learning  if he comes back after a month can check', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 01:07:23', 99, '2022-12-06 02:51:49', 0, NULL, 1),
(11357, 'S Venkatachalam', '13', '9791243615', '', 'developervenkat16@gmail.com', '1998-12-06', 24, '2', '2', 'S anantha mathangi', 'Teacher', 15000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2212060009', '1', '1', 'upload_files/candidate_tracker/50713147150_CV_cafs_resume.pdf', NULL, '1', '2022-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much active will not sustain and handle our pressure Not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 02:17:47', 99, '2022-12-06 02:52:10', 0, NULL, 1),
(11358, 'A.ABDUL RAHMAN', '5', '7358527822', '9597587129', 'abdulrahman1751992@gmail.com', '1992-05-17', 30, '3', '2', 'Yashme', 'Driver', 20000.00, 2, 20000.00, 23000.00, 'Chennai', 'Chennai', '2212060010', '', '2', 'upload_files/candidate_tracker/97228123397_RESUME..pdf', NULL, '1', '2022-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'too long distance up and down 54kms not open for relocation will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-06 02:42:26', 60, '2022-12-06 05:27:16', 0, NULL, 1),
(11359, 'Naveen Raj', '4', '9791090964', '9500141875', 'naveenrajn9@gmail.com', '1996-04-17', 26, '2', '2', 'indra', 'self employed', 35000.00, 1, 22000.00, 26000.00, 'chennai', 'chennai', '2212060011', '1', '2', 'upload_files/candidate_tracker/62711296201_Copy of NAVEEN RAJ updated.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our sales no sustainability in his previous exp,Pressure handling doubt,asked him to wait for the 2nd round but left without attending', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-06 04:26:16', 99, '2022-12-07 02:24:55', 0, NULL, 1),
(11360, 'xavier s', '11', '9003837287', '', 'xaviersagayam03@gmail.com', '1999-11-15', 23, '2', '2', 'arockiam s', '-', 15000.00, 2, 18.60, 21.00, 'chennai', 'chennai', '2212060012', '1', '2', 'upload_files/candidate_tracker/43036591389_Xavier S updated cv.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Just 7 months exp in recruitment with the high Pay and looking for more and the same, location need to check,Long run doubts in our roles', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 04:45:15', 99, '2022-12-07 02:29:50', 0, NULL, 1),
(11361, 'Vigneshwaran', '4', '9566642234', '', 'vigneshwaran18p@gmail.com', '1996-03-24', 26, '2', '2', 'Palanisamy', 'Shop', 14000.00, 1, 10000.00, 12000.00, 'Reddipalayam', 'Reddipalayam', '2212060013', '1', '2', 'upload_files/candidate_tracker/7269405528_Resume-Vigneshwaran.pdf', NULL, '1', '2022-12-07', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he not fit for telesales tounge slip problem ', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-06 05:26:51', 99, '2022-12-07 02:26:08', 0, NULL, 1),
(11362, 'raheem', '20', '8939473023', '', 'syed.abdul.raheem28@gmail.com', '1996-10-28', 26, '3', '2', 'syed mohammed s', 'daily wages', 25000.00, 1, 15000.00, 20000.00, 'pattur mangadu', 'pattur mangadu', '2212070001', '', '2', 'upload_files/candidate_tracker/56247927190_Raheem CV.pdf', NULL, '1', '2022-12-07', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have a solid exp in backend but no communication not much suitable for sales will not sustain in our Sales ', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-07 10:31:57', 1, '2022-12-07 10:45:57', 0, NULL, 1),
(11363, 'Arun.d', '5', '9600300977', '8124817513', 'aruntorres3@gmail.com', '1996-12-05', 26, '1', '2', 'Dominic rajan', 'Non', 30000.00, 1, 20000.00, 25000.00, 'Vyasarpadi', 'Vyasarpadi', '2212070002', '', '2', 'upload_files/candidate_tracker/53575836927_D Arun - Resume Updated 2022.pdf', NULL, '1', '2022-12-07', 0, 'CAFSUSR00483', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Internal team Reference,Long Career Gap he is into sports No sustainability in the previous exp checked with sales Manager sarath and rejecetd the profile', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-07 10:41:27', 1, '2022-12-07 10:46:26', 0, NULL, 1),
(11364, '', '0', '8667356753', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212070003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-07 10:50:52', 0, NULL, 0, NULL, 1),
(11365, 'Gowtham', '4', '8778563012', '', 'Gowthambelieve@gmail.com', '1997-10-23', 25, '2', '2', 'Malliga', 'Garments', 40000.00, 0, 15000.00, 17000.00, 'Chennai', 'Chennai', '2212070004', '1', '2', 'upload_files/candidate_tracker/2528347739_Gowtham resume.pdf', NULL, '2', '2022-12-07', 0, '', '3', '59', '2022-12-08', 189468.00, '', '3', '2022-12-29', '2', 'Selected for Banu Team in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 10:59:59', 60, '2022-12-07 04:55:58', 0, NULL, 1),
(11366, 'Abinaya', '4', '6379384346', '', 'abinayaabu971@gmail.com', '2007-12-07', 0, '2', '2', 'Kammalakannan', 'Business man', 24000.00, 1, 0.00, 12000.00, 'Kanyakumari', 'Chennai', '2212070005', '1', '1', 'upload_files/candidate_tracker/34806919231_Resume_15_11_2022_10_17_38_AM.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Sales,', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-07 11:23:47', 99, '2022-12-07 02:41:43', 0, NULL, 1),
(11367, 'bharathidasan r', '4', '7708177690', '', 'bharathidasan998@gmail.com', '1998-09-14', 24, '2', '2', 'raju t', 'farmer', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2212070006', '2', '1', 'upload_files/candidate_tracker/13116322472_das cv 2.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Final Round reject, Only 3 months exp in Byjuxquots No Sales Exp rejected in the final round', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-07 11:46:02', 1, '2022-12-07 11:48:49', 0, NULL, 1),
(11368, 'GOPI R', '23', '9600691072', '9952602466', 'gopi33449@gmail.com', '1999-12-31', 22, '2', '2', 'Ramesh P', 'Farmer', 10000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2212070007', '1', '1', 'upload_files/candidate_tracker/78489597865_Gopi Resume0.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Technical Round reject by Manikandan,Fresher for Javascript have exp in dotnet Sustainability doubts as he was around 8K earlier and looking for more', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 12:05:29', 99, '2022-12-07 02:43:49', 0, NULL, 1),
(11369, 'satheesh p', '23', '9095666728', '', 'satheesharun0822@gmail.com', '1998-08-11', 24, '2', '2', 'paneerselvan', 'bakery shop', 16000.00, 0, 0.00, 18000.00, 'chennai', 'cheenai', '2212070008', '1', '1', 'upload_files/candidate_tracker/8925689602_Satheesh resume.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT ,Have 1,5 yrs desktop Support exp not much strong with the basic skills need to train a lot he need time to confirm the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 12:06:52', 99, '2022-12-07 02:44:11', 0, NULL, 1),
(11370, 'Grace jenifer', '11', '9884655736', '9840186642', 'gracejenifer0118@gmail.com', '2000-07-18', 22, '2', '2', 'Lucas', 'Plumber', 30000.00, 1, 18000.00, 21000.00, 'Sarma nagar', 'Sarma nagar', '2212070009', '1', '2', 'upload_files/candidate_tracker/98619857665_Grace Jenifer L-2.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in IT Recruitment and 7  months exp with 2.6 LPA Communicaiton Average Handling our sales hiring pressure doubts not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 12:20:48', 99, '2022-12-07 02:41:54', 0, NULL, 1),
(11371, 'G. Praven kumar', '33', '9566260395', '', 'kumarpraving8@gmail.com', '1999-01-15', 23, '2', '2', 'Indhira. G', 'Housewife', 400000.00, 1, 18000.00, 22000.00, 'Kanchipuram', 'Kanchipuram', '2212070010', '1', '2', 'upload_files/candidate_tracker/34719233939_Praven kumar resume (1).pdf', NULL, '1', '2022-12-07', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-07 02:07:34', 1, '2022-12-07 02:12:16', 0, NULL, 1),
(11372, '', '0', '9710177330', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212070011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-07 02:23:59', 0, NULL, 0, NULL, 1),
(11373, '', '0', '9092910632', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212070012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-07 04:46:41', 0, NULL, 0, NULL, 1),
(11374, 'Akash E', '13', '9176090107', '6369532134', 'e.akash07042000@gmail.com', '2000-04-07', 22, '2', '2', 'Ekambaram T', 'carbandar', 15000.00, 2, 15000.00, 20000.00, 'Selaiyur', 'Selaiyur', '2212070013', '1', '2', 'upload_files/candidate_tracker/31750826368_Akash resume.pdf', NULL, '1', '2022-12-08', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance around 54kms up and down not much comfort in taking 150 Calls will not sustain and not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 06:43:43', 99, '2022-12-08 03:52:38', 0, NULL, 1),
(11375, 'Hariharan k', '33', '7395944432', '6381166341', 'hariharan12102000@gmail.com', '2001-12-10', 20, '2', '2', 'D kuppan', 'House keeping', 25000.00, 2, 12000.00, 18000.00, 'Thuraipakkam', 'Thuraipakkam', '2212070014', '1', '2', 'upload_files/candidate_tracker/29574975543_HARIHARAN Resume (1).pdf', NULL, '1', '2022-12-08', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics in accounts No Communication will not sustain', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 06:55:22', 99, '2022-12-08 03:53:11', 0, NULL, 1),
(11376, 'Yogesh A', '31', '6369769953', '9791132715', 'yogeshyog488@gmail.com', '2000-08-11', 22, '2', '2', 'V.Arjunan', 'Mechanic', 15000.00, 1, 0.00, 2.60, 'Chennai', 'Chennai', '2212070015', '1', '1', 'upload_files/candidate_tracker/43721297294_A.yogesh-resume.pdf', NULL, '1', '2022-12-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no basics in JS,Need time to confirm on the TxxampC Sustainability doubts with us if he comes back let us try for technical', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 07:22:25', 99, '2022-12-08 03:53:46', 0, NULL, 1),
(11377, 'Jegatheeswari. N', '4', '7695889171', '', 'nithyajega04@gmail.com', '1997-06-10', 25, '2', '2', 'Naganathan', 'Farmer', 8000.00, 1, 0.00, 16000.00, 'Sivagangai', 'Chennai', '2212070016', '1', '1', 'upload_files/candidate_tracker/21127679625_Jegatheeswari resume.pdf', NULL, '1', '2022-12-08', 0, '', '3', '59', '2022-12-15', 138948.00, '', '5', '1970-01-01', '2', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 10:17:29', 60, '2022-12-08 06:14:20', 0, NULL, 1),
(11378, 'mahalakshimi', '31', '9884389597', '', 'magalakeshmi@gmail.com', '1997-06-08', 25, '2', '2', 'gandhi', 'driver', 20000.00, 1, 12000.00, 20000.00, 'chennai', 'chennai', '2212080001', '1', '2', 'upload_files/candidate_tracker/52838403080_Magalakshmi\'s Resume (1).pdf', NULL, '1', '2022-12-08', 15, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Appeared for IT but no skills in Javascript Have Exp in Mutual funds backend for 2.5 yrs,open for MF role but communication Average can give a try for MF Coordinator need to check with Gokul and confirm', '2', '1', '0', '1', '1', '0', '2', '2022-12-10', '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-08 11:26:39', 1, '2022-12-08 11:58:10', 0, NULL, 1),
(11379, 'Jeevitha.k', '4', '9087548278', '9841330101', 'Jeevithabsc33@gmail.com', '1999-09-20', 23, '2', '1', 'Raja.p', 'Driving', 30000.00, 1, 0.00, 12000.00, 'Pallikaranai', 'Pallikaranai', '2212080002', '1', '1', 'upload_files/candidate_tracker/65427616072_Jeevitha. K_Resume.pdf', NULL, '1', '2022-12-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice not suitable no communication', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-08 11:58:24', 99, '2022-12-08 03:56:31', 0, NULL, 1),
(11380, 'Jeeva.R', '4', '9944089201', '9994449201', 'Jeevainmail176@gmail.com', '2001-06-10', 21, '2', '1', 'Sivaraj.k', 'AR caller', 20000.00, 1, 0.00, 12000.00, 'Tharamani', 'Tharamani', '2212080003', '1', '1', 'upload_files/candidate_tracker/41565584437_R.Jeeva.docx', NULL, '1', '2022-12-08', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile have 4 months exp in collection calling ,sounds to be low kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-08 12:09:05', 99, '2022-12-08 03:57:53', 0, NULL, 1),
(11381, 'Mohammed Ashar Shahir', '5', '7358718221', '9150050133', 'mohammedasharshahir@gmail.com', '2001-05-01', 21, '2', '2', 'Rahamatulla', 'Sales man', 30000.00, 1, 24000.00, 29000.00, 'chennai', 'chennai', '2212080004', '1', '2', 'upload_files/candidate_tracker/2605401956_Mohammed Ashars resume', NULL, '1', '2022-12-09', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication Ok Have exp in B2B,not open for Sales again he is looking for Recruitment but will not sustain much in that will schedule him for MIS Need to check and final with Gokul', '5', '1', '', '1', '1', '', '2', '2022-12-10', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-08 12:51:55', 85, '2022-12-09 10:58:13', 0, NULL, 1),
(11382, 'Jagathgururaju', '20', '8122266335', '', 'M.jagathgururaju987@gmail.com', '1998-05-17', 24, '2', '1', 'Mohan', 'Business', 20000.00, 2, 15000.00, 25000.00, 'Tiruvannamalai', 'Chennai', '2212080005', '1', '2', 'upload_files/candidate_tracker/27289742603_JAGATH GURU RAJU M.pdf', NULL, '1', '2022-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-08 04:51:31', 1, '2022-12-08 04:55:36', 0, NULL, 1),
(11383, 'Arjunan', '2', '8072270813', '6380021058', 'arjunrex1@gmail.com', '2000-09-17', 22, '2', '2', 'Mariappan D', 'Cooli', 7000.00, 2, 0.00, 250000.00, 'Puliyangudi', 'Chennai', '2212080006', '1', '1', 'upload_files/candidate_tracker/51690438170_Resume_Arjunan_Format3 (5)-1.pdf', NULL, '1', '2022-12-09', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-08 05:14:11', 85, '2022-12-09 10:57:37', 0, NULL, 1),
(11384, 'SUDHAHAR', '31', '9342797229', '', 'suthaharanrajandran@gmail.com', '2000-05-17', 22, '2', '2', 'Rajandran', 'Laborer', 15000.00, 4, 0.00, 15000.00, 'Kumbakonam', 'Velachery', '2212080007', '1', '1', 'upload_files/candidate_tracker/8940939865_pdf_20221127_091823_0000.pdf', NULL, '1', '2022-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Java openings no basic knowledge in Javascript', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-08 05:27:25', 99, '2022-12-30 04:25:20', 0, NULL, 1),
(11385, 'tamil selvan', '31', '9551406767', '8667741224', 'Tamizh.n006@gmail.com', '1997-12-30', 24, '2', '2', 'nagrajan', 'worker', 4.00, 2, 0.00, 30000.00, 'Kundrathur Chennai', 'Kundrathur Chennai', '2212080008', '1', '1', 'upload_files/candidate_tracker/68275675231_Resume_2022-10-11_1263702 (1) (1).pdf', NULL, '1', '2022-12-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in other domain and looking for Javascript Salary Exp is high too long distance will not sustain in our roles not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-08 11:50:50', 99, '2022-12-13 12:11:49', 0, NULL, 1),
(11386, '', '0', '6385911509', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-09 07:59:45', 0, NULL, 0, NULL, 1),
(11387, 'Prakash', '4', '8870644880', '', 'gprakash0135@gmail.com', '1999-03-10', 23, '2', '2', 'Govindaraj', 'Farmar', 10000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2212090002', '1', '1', 'upload_files/candidate_tracker/54812534259_Resume.docx', NULL, '1', '2022-12-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'profile not fit for sales have no exposure and knowledge for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-09 11:09:26', 85, '2022-12-09 11:28:44', 0, NULL, 1),
(11388, 'N.jeyaseeli', '4', '7358690792', '', 'Jeyaseeli1998@gmail.com', '1998-07-11', 24, '2', '2', 'Nagasone', 'Paster', 10000.00, 1, 0.00, 200000.00, 'Manali', 'Manali', '2212090003', '3', '1', 'upload_files/candidate_tracker/96907146923_Seeli.pdf', NULL, '1', '2022-12-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance looking for non voice\n', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-09 11:43:50', 1, '2022-12-09 12:05:04', 0, NULL, 1),
(11389, '', '0', '9150767533', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212090004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-09 11:49:53', 0, NULL, 0, NULL, 1),
(11390, 'Guhan', '5', '8681064292', '', 'guhanlee6155@gmail.com', '2001-04-01', 21, '2', '2', 'Pramila', 'Company', 100000.00, 0, 0.00, 12000.00, 'Porur', 'Porur', '2212090005', '1', '1', 'upload_files/candidate_tracker/50336924217_guhan resume .pdf', NULL, '1', '2022-12-09', 0, '', '3', '59', '2022-12-12', 185000.00, '', '', '2022-12-16', '1', 'Selected for  Babu Team for staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-09 12:28:57', 60, '2022-12-10 07:31:52', 0, NULL, 1),
(11391, '', '0', '7708903268', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212090006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-09 03:31:43', 0, NULL, 0, NULL, 1),
(11392, '', '0', '6379136778', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212090007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-09 04:12:27', 0, NULL, 0, NULL, 1),
(11393, 'S sahaya Gijiro', '6', '9025193805', '9597947729', 'gijiros@gmail.con', '1998-02-24', 24, '2', '2', 'Suresh', 'Teacher', 200000.00, 1, 0.00, 18000.00, 'Anna nagar', 'Anna nagar', '2212100001', '1', '1', 'upload_files/candidate_tracker/14766740115_SG Resume without pic .docx', NULL, '1', '2022-12-10', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sales Sustainability Doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-10 08:23:15', 60, '2022-12-10 03:09:28', 0, NULL, 1),
(11394, 'Hari TR', '4', '8248722587', '8903282136', 'haritr289127@gmail.com', '1996-11-15', 26, '2', '2', 'Rajendran TR', 'retried', 300000.00, 1, 0.00, 15000.00, 'shollinganalur', 'shollinganalur', '2212100002', '3', '1', 'upload_files/candidate_tracker/31524474609_hari-1.docx', NULL, '1', '2022-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance no Graduation  Long Career Gap Not much suitable for Sales Calls will not sustain ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-10 10:44:15', 60, '2022-12-10 02:57:35', 0, NULL, 1),
(11395, 'Abirami k', '4', '9344404785', '9894858520', 'abikrishna1308@gmail.com', '2001-08-13', 21, '2', '2', 'Velammal', 'Housewife', 15000.00, 2, 0.00, 15000.00, 'Tirunelveli', 'Saidapet', '2212100003', '1', '1', 'upload_files/candidate_tracker/39460077631_K.Abirami Resume.pdf', NULL, '1', '2022-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Comfort to work in non voice process,not open for targets will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-10 11:30:21', 85, '2022-12-10 12:34:17', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11396, 'Prabhu Ravi', '5', '8754314260', '', 'prabhuravi1113@gmail.com', '1995-05-23', 27, '2', '2', 'Ravi T', 'Printer', 20000.00, 1, 180000.00, 300000.00, 'Erode', 'Erode', '2212100004', '1', '2', 'upload_files/candidate_tracker/63555275561_Prabhu BPO Resume.pdf', NULL, '1', '2022-12-10', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is looking non voice', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-10 11:31:46', 99, '2022-12-10 03:00:52', 0, NULL, 1),
(11397, 'S.Bhuvaneswari', '4', '8754988365', '', 'Bhuvanabhuvi2507@gmail.com', '2001-07-25', 21, '2', '2', 'Sasikumar', 'Late', 15000.00, 2, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2212100005', '1', '1', 'upload_files/candidate_tracker/527750878_Bhuvaneswari resume.pdf', NULL, '1', '2022-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice not suitable no Communication', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-10 11:39:36', 85, '2022-12-10 12:34:30', 0, NULL, 1),
(11398, 'V. Theivalakshmi', '13', '9363481996', '', 'Theivalakshmi1998@gmail.com', '1998-08-15', 24, '2', '2', 'S. Valavanthan', 'Cooly', 72000.00, 2, 0.00, 20000.00, 'Aruppukottai', 'Velachery', '2212100006', '1', '2', 'upload_files/candidate_tracker/26058674330_NewResume.pdf', NULL, '1', '2022-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No sustainability Career Gap not showing self interest on the job,Not much open with TxxampC too not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-10 11:51:38', 85, '2022-12-10 12:34:04', 0, NULL, 1),
(11399, 'nandhini', '4', '9952094616', '', 'nandhinivcms98@gmail.com', '1998-08-02', 24, '2', '2', 'veeramuthu', 'security', 8000.00, 0, 12000.00, 18000.00, 'chennai', 'chennai', '2212100007', '1', '2', 'upload_files/candidate_tracker/88691739529_NANDHINI RESUME (1).pdf', NULL, '1', '2022-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Telecalling but not open for Telecalling agaiin and for MIS No Communication not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-10 04:16:27', 1, '2022-12-10 04:31:38', 0, NULL, 1),
(11400, 'Sanjai Kumar K', '31', '6380377589', '8870577917', 'sanjaikumaresan2002@gmail.com', '2002-01-20', 20, '2', '2', 'Kumaresan A', 'Police', 700000.00, 2, 0.00, 400000.00, 'Gingee', 'Chennai', '2212100008', '1', '1', 'upload_files/candidate_tracker/79845258658_Sanjaikumar_resume.PDF-1 (2).pdf', NULL, '1', '2022-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Testing Profile', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-10 04:42:53', 99, '2022-12-12 12:08:01', 0, NULL, 1),
(11401, 'Vikkash V A', '6', '7550233760', '', 'vavikkash@gmail.com', '2001-06-20', 21, '2', '2', 'Arun D S', 'Carpenter', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Ambattur', '2212100009', '1', '1', 'upload_files/candidate_tracker/60629324771_Vikkash Resume.pdf', NULL, '1', '2022-12-10', 0, '', '5', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-10 05:19:05', 60, '2022-12-12 06:37:05', 0, NULL, 1),
(11402, 'Abishek Perumal', '22', '8248923326', '', 'akifs2001@hotmail.com', '2001-08-19', 21, '2', '2', 'Annachi', 'UCS Cargo Solution', 20000.00, 1, 0.00, 20000.00, 'Pozhichalur, Pallavaram, Chennai', 'Pozhichalur, Pallavaram, Chennai', '2212100010', '1', '1', 'upload_files/candidate_tracker/78851863054_Resume - Abishek Perumal-1.pdf', NULL, '1', '2022-12-12', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good both orally and written,Distane need to see 40kms up and down he need time to confirm ', '2', '1', '', '1', '1', '', '2', '2022-12-14', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-10 06:40:18', 85, '2022-12-12 10:44:09', 0, NULL, 1),
(11403, 'syed rizwan', '31', '9036897807', '', 'rizwansyednasroddin@gamil.com', '1998-06-15', 24, '3', '2', 'imambee', 'work', 50000.00, 6, 0.00, 25000.00, 'anantapur andhra pradesh', 'anantapur', '2212100011', '', '1', 'upload_files/candidate_tracker/50985072037_RIZWAN.pdf', NULL, '3', '2022-12-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-10 07:30:24', 1, '2022-12-10 07:35:34', 0, NULL, 1),
(11404, 'Thirumalai. S', '33', '9710892458', '8148910711', 'Thirumalai.s0711@gmail.com', '1991-11-07', 31, '4', '2', 'Loganayaki', 'Housewife', 10000.00, 0, 0.00, 600000.00, 'Chennau', 'Madipakkam', '2212100012', '', '2', 'upload_files/candidate_tracker/952589419_S.Thirumalai CV.pdf', NULL, '3', '2022-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-10 07:56:41', 1, '2022-12-10 07:58:58', 0, NULL, 1),
(11405, 'Monika', '27', '9360476347', '', 'monima1730@gmail.com', '1999-07-17', 23, '3', '2', 'Narayan', 'Coolie', 15000.00, 4, 13000.00, 15000.00, 'Thodaiyarpet', 'Thodaiyarpet', '2212110001', '', '2', 'upload_files/candidate_tracker/12141567336_monica resume.pdf', NULL, '1', '2022-12-13', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-11 12:27:57', 1, '2022-12-13 12:06:28', 0, NULL, 1),
(11406, 'magesh', '14', '9080133299', '8124008834', 'magesh21899@gmail.com', '1999-08-21', 23, '2', '2', 'balaiya', 'coolie', 200000.00, 1, 0.00, 350000.00, 'chennai', 'chennai', '2212110002', '1', '1', 'upload_files/candidate_tracker/25946320665_Magesh_CV.pdf', NULL, '1', '2022-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills in JS  Have  lookin for testing  and Java profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-11 12:33:18', 99, '2022-12-12 11:13:38', 0, NULL, 1),
(11407, 'sabash joseph walls d', '23', '9600197317', '', 'sabashwall@gmail.com', '2000-03-07', 22, '2', '2', 'eugen d', 'house wife', 184000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2212110003', '1', '1', 'upload_files/candidate_tracker/54516022932_test 2.pdf', NULL, '1', '2022-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Basic Skills In JS  Have  Looking  For Testing  And Java Profile.If he is coming back after learning  will give a try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-11 12:42:17', 99, '2022-12-12 11:14:02', 0, NULL, 1),
(11408, 'V.lakshmi prabha', '4', '9025685521', '', 'prabhavenkat97@gmail.com', '1997-10-17', 25, '2', '2', 'Venkatesan', 'Manager BOB', 30.00, 1, 0.00, 15.00, 'Anna nagar east', 'Anna nagar east', '2212110004', '1', '1', 'upload_files/candidate_tracker/76123908314__prabha (3).docx', NULL, '1', '2022-12-14', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Long career Gap seems to be over confident  need to train a lot kindly check and let me know your inputs\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-11 03:00:14', 85, '2022-12-14 02:30:20', 0, NULL, 1),
(11409, 'Lohesh J', '31', '8248746939', '9095503045', 'Loheshjayabal@gmail.com', '1998-03-03', 24, '2', '2', 'Jayabal ganapathy', 'TV service', 15000.00, 1, 0.00, 25000.00, 'Salem', 'chennai', '2212120001', '1', '1', 'upload_files/candidate_tracker/49099198886_Lohesh J MT.pdf', NULL, '1', '2022-12-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Testing or Java openings', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-12 09:39:21', 99, '2022-12-14 09:16:13', 0, NULL, 1),
(11410, 'Sriaravind V', '4', '8637486686', '7358968091', 'sriaravind907@gmail.com', '2002-04-11', 20, '2', '2', 'V.Mahaswari', 'Employee in textile company', 100000.00, 1, 0.00, 16000.00, 'Dindigul', 'Dindigul', '2212120002', '3', '1', 'upload_files/candidate_tracker/90970680407_sriaravind V .pdf', NULL, '1', '2022-12-12', 0, '', '3', '59', '2022-12-22', 138948.00, '', '5', '1970-01-01', '2', 'Selected for B2B - Banu Team in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-12 09:52:10', 60, '2022-12-13 03:18:15', 0, NULL, 1),
(11411, 'Salamon Moses', '6', '9566222461', '', 'salamonmoses24@gmail.com', '1998-06-24', 24, '1', '2', 'D.thomas', 'Fisherman', 18000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2212120003', '', '1', 'upload_files/candidate_tracker/22610002440_WhatsApp Image 2022-12-12 at 11.02.32 AM.pdf', NULL, '1', '2022-12-12', 0, 'P1066', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'Sales Sustainability Doubts', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-12 11:04:11', 1, '2022-12-12 11:09:28', 0, NULL, 1),
(11412, 'Vigneshraja', '16', '8098387662', '9994391838', 'vraj321123@gmail.com', '1996-07-02', 26, '2', '2', 'Solaimuthu', 'Gold Smith', 40000.00, 1, 12000.00, 14000.00, 'Pudukkottai dt, Rayavaram', 'Puzhuthivakkam', '2212120004', '3', '2', 'upload_files/candidate_tracker/69175470224_Resume.docx', NULL, '1', '2022-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication for MIS not open for sales Calls too not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-12 11:07:21', 99, '2022-12-12 01:00:20', 0, NULL, 1),
(11413, 'Balamurugan', '4', '9080443132', '8148394308', 'muruganbala7471@gmail.com', '1999-03-31', 23, '1', '1', 'Prema', 'Home maker', 20000.00, 1, 21000.00, 20000.00, '23/11b kulasekaren street Gandhi nagar nagelkeni', 'Chennai', '2212120005', '', '2', 'upload_files/candidate_tracker/8988122812_BALAMURUGAN RAJENDRAN(GE10896).pdf', NULL, '2', '2022-12-12', 0, 'Nil', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Have few months exp in Star Health Career Gap is there he is focusing  much on the distance to be travelled', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-12 11:37:52', 1, '2022-12-12 11:42:31', 0, NULL, 1),
(11414, 'ARUNPANDI', '4', '8072240682', '9655692075', 'arunpandi1744@gmail.com', '1999-12-26', 22, '2', '1', 'Karuppaiah', 'Farmar', 18000.00, 1, 0.00, 18000.00, 'Kariapatti', 'Ekkattudhangal', '2212120006', '1', '1', 'upload_files/candidate_tracker/93524595088_P.K.ARUNPANDI2 (1).docx', NULL, '1', '2022-12-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile,fresher career gap need to be trained a lot kindly check and let meknow your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-12 11:53:49', 85, '2022-12-13 11:06:59', 0, NULL, 1),
(11415, 'Syed Hussain', '4', '9361449801', '6380489201', 'Syedhussainn0708@gmail.com', '2001-08-07', 21, '2', '2', 'Syed Abdul Majid', 'Painter', 19000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2212120007', '1', '1', 'upload_files/candidate_tracker/19162115940_SYED', NULL, '1', '2022-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance  Will not sustain in our roles fresher not ssuitale', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-12 12:52:48', 99, '2022-12-12 01:13:31', 0, NULL, 1),
(11416, '', '0', '7424061213', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212120008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-12 03:09:42', 0, NULL, 0, NULL, 1),
(11417, '', '0', '9686041912', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212120009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-12 03:46:42', 0, NULL, 0, NULL, 1),
(11418, '', '0', '8925417027', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212120010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-12 05:03:25', 0, NULL, 0, NULL, 1),
(11419, 'Saranraj V', '4', '8489475503', '9345374031', 'saranrajv2000@gmail.com', '2000-09-17', 22, '2', '2', 'K veluchamy', 'Pattern master', 20000.00, 1, 0.00, 18000.00, 'Theni', 'St Thomas mount', '2212120011', '1', '1', 'upload_files/candidate_tracker/85374394768_saranraj.v resume.pdf', NULL, '1', '2022-12-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Target based roles will not sustain in other roles too not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-12 06:43:50', 85, '2022-12-13 11:07:16', 0, NULL, 1),
(11420, 'SIVAKUMAR S', '26', '7358617564', '9840781067', 'sivakuma1731999@gmail.com', '1999-03-17', 23, '2', '2', 'Parents', 'Mother maths tutor and father retired', 20000.00, 1, 0.00, 20000.00, 'Chennai-602024', 'Thiruninravur', '2212120012', '1', '1', 'upload_files/candidate_tracker/93145510734_siva__NewRESUME.pdf', NULL, '1', '2022-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance ,no communication,not suitable for our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-12 06:43:57', 99, '2022-12-15 10:39:15', 0, NULL, 1),
(11421, 'Deblina saha', '4', '9903639625', '7424061213', 'Sandipbabu1990@gmail.com', '1994-03-29', 28, '3', '1', 'Sandip Kumar Singhababu', 'Service', 15000.00, 2, 25000.00, 30000.00, 'West Bengal', 'Minjur', '2212120013', '', '2', 'upload_files/candidate_tracker/11792947080_DEBLINA SAHA.pdf', NULL, '1', '2022-12-13', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-12 07:07:31', 1, '2022-12-12 07:15:03', 0, NULL, 1),
(11422, '', '0', '8838840494', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212130001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-13 10:03:53', 0, NULL, 0, NULL, 1),
(11423, 'Periyasamy kumar', '26', '9344883161', '', 'periyasamy8840@gmail.com', '2007-12-13', 0, '2', '2', 'No', 'No', 15000.00, 0, 10500.00, 13000.00, 'Pallikaranai', 'Chennai', '2212130002', '3', '2', 'upload_files/candidate_tracker/24259567553_Periyasamy Resume.pdf', NULL, '1', '2022-12-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication too long distance too not suitable', '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-13 10:45:27', 1, '2022-12-13 10:51:03', 0, NULL, 1),
(11424, 'riyajutheen', '16', '7401022830', '', 'mohamedriyaj22@gmail.com', '1997-11-11', 25, '2', '2', 'alayutheen', 'gerogery shop', 20000.00, 1, 0.00, 400000.00, 'chennai', 'cheenai', '2212130003', '1', '1', 'upload_files/candidate_tracker/94934624274_riyaz.pdf', NULL, '1', '2022-12-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for core Data scientist profile,will not sustain in our roles', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-13 10:46:10', 1, '2022-12-13 11:18:39', 0, NULL, 1),
(11425, 'Barkavi.M', '28', '8939260076', '', 'barkavi7510@gmail.com', '1999-06-01', 23, '2', '2', 'Moorthy.s', 'Auto driver', 25000.00, 2, 14000.00, 21000.00, 'No.1 Anna street tv nagar, ayanavaram, chennai-23', 'Chennai', '2212130004', '3', '2', 'upload_files/candidate_tracker/38863739301_RESUME.pdf', NULL, '1', '2022-12-13', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Looking For Salary Growth Only Have Exp In MIS Long Run Doubts', '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-13 10:50:15', 1, '2022-12-13 11:02:49', 0, NULL, 1),
(11426, 'M.Monisha', '28', '7401091999', '7358795258', 'monishamani1909@gmail.com', '1998-09-19', 24, '2', '2', 'Jayanthi', 'Housewife', 25000.00, 2, 14000.00, 21000.00, '40/99 baracka road Nammalwarpet', 'Chennai', '2212130005', '3', '2', 'upload_files/candidate_tracker/71274840839_Monisha.pdf', NULL, '1', '2022-12-13', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication looking for Salary growth only have exp in MIS long run doubts', '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-13 10:50:53', 1, '2022-12-13 10:58:19', 0, NULL, 1),
(11427, '', '0', '7010122830', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212130006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-13 11:07:32', 0, NULL, 0, NULL, 1),
(11428, 'Rajeshwari', '4', '8124674730', '', 'rajeshwari8694@gmail.com', '1995-06-06', 27, '2', '2', 'Nagaraj', 'Business', 25000.00, 1, 26000.00, 28000.00, 'Chennai', 'Chennai', '2212130007', '1', '2', 'upload_files/candidate_tracker/55160236104_Resume13compressed.pdf', NULL, '1', '2022-12-13', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Insurance Domain but focusing much in Renewals Collections,Have exp in sales calling too Salary is high than our budget Multi Language Kindly check and let  me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-13 11:30:50', 99, '2022-12-13 11:45:14', 0, NULL, 1),
(11429, 'A.Nirmal anand', '11', '8838830494', '9840746298', 'nirmalanand.a99@gmail.com', '1999-09-29', 23, '2', '1', 'R.Ashok rajagopalan', 'Artist,writer', 80000.00, 1, 0.00, 15000.00, 'Korattur', 'Korattur', '2212130008', '1', '1', 'upload_files/candidate_tracker/5506049838_resume nirmalanand-1.pdf', NULL, '1', '2022-12-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication Seems to be very slow not active will not sustain in our roles and handle our pressure', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-13 11:39:53', 99, '2022-12-13 12:08:49', 0, NULL, 1),
(11430, 'V shalini', '4', '7305534050', '8190857330', 'shalinivenkatesan0109@gmail.com', '2000-09-01', 22, '3', '2', 'T.venkatesan', 'The Hindu press', 40000.00, 1, 13000.00, 15000.00, 'Kandhanjavadi', 'Kandhanjavadi', '2212130009', '', '2', 'upload_files/candidate_tracker/27161091549_V.Shalini resume (1).pdf', NULL, '1', '2022-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-13 12:10:10', 1, '2022-12-13 12:15:31', 0, NULL, 1),
(11431, '', '0', '8925622051', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-13 12:30:41', 0, NULL, 0, NULL, 1),
(11432, 'Sanjay C', '11', '7305316399', '', 'sanjayc260501@gmail.com', '2001-05-26', 21, '2', '2', 'Chandrasekaran V', 'Auto Driver', 15000.00, 1, 260000.00, 320000.00, 'Chennai', 'Chennai', '2212130011', '1', '2', 'upload_files/candidate_tracker/35373598645_Sanjay C Resume (1) (1).pdf', NULL, '1', '2022-12-14', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is Good Have 8 months Exp in Recruitment but only IT exp Need to train a lot in non IT,long run doubts will confirm the profile later', '6', '1', '', '1', '1', '', '2', '2022-12-21', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-13 06:25:12', 99, '2022-12-14 10:14:57', 0, NULL, 1),
(11433, 'Flora Lazar', '11', '8248339114', '', 'floralazar98@gmail.com', '1998-01-10', 24, '3', '2', 'lazar Joseph', 'daily wages', 12000.00, 1, 12000.00, 15000.00, 'chennai', 'chennai', '2212130012', '', '2', 'upload_files/candidate_tracker/86264139797_Flora Lazar CV.docx', NULL, '1', '2022-12-17', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-13 06:31:23', 1, '2022-12-13 06:38:56', 0, NULL, 1),
(11434, 'Loga priya', '4', '8072830680', '9688368937', 'Logapriyaramanathan12@gmail.com', '2000-02-12', 22, '2', '2', 'Ramanathan', 'Account manager', 25000.00, 1, 21000.00, 22000.00, 'Thanjavur', 'Thanjavur', '2212130013', '1', '2', 'upload_files/candidate_tracker/21215704217_Priya Resume 1.pdf', NULL, '3', '2022-12-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-13 06:35:34', 99, '2022-12-14 10:15:24', 0, NULL, 1),
(11435, 'Om vignesh. U', '4', '9171325927', '9080000503', 'vickydme1998@gmail.com', '1998-03-04', 24, '2', '2', 'Udaya kumar', 'Agriculture business', 10000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2212140001', '3', '1', 'upload_files/candidate_tracker/96517462225_RESUME.pdf', NULL, '1', '2022-12-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for telecaller Sales profile looking much for non voice and inbound callings\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-14 09:39:18', 1, '2022-12-14 09:50:09', 0, NULL, 1),
(11436, 'Arun Ramasamy', '31', '8220199911', '', 'arunramasamy46@gmail.com', '2001-11-17', 21, '2', '2', 'Ramasamy', 'Chennai', 200000.00, 1, 0.00, 200000.00, 'Aruppukottai', 'Madurai road', '2212140002', '1', '1', 'upload_files/candidate_tracker/38125956589_Arun.R-RESUME.-1 (2).pdf', NULL, '1', '2022-12-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Already attended and got rejected in Technical written task,Not open for TxxampC Need time to confirm need to train a lot if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-14 09:52:36', 99, '2022-12-14 10:15:50', 0, NULL, 1),
(11437, 'Muthulakshmi. S', '11', '8939575004', '9840696038', 'muthulakshmianton12@gmail.com', '2000-06-14', 22, '2', '2', 'Sankar. C', 'Painter', 20000.00, 1, 0.00, 15000.00, 'ECR Kottivakkam, chennai', 'ECR Kottivakkam, chennai', '2212140003', '3', '1', 'upload_files/candidate_tracker/17989304824_NEW MUTHU RESUME.docx', NULL, '1', '2022-12-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location constraint Processed for CRM but she is looking for Sales ,scheduled her for 2nd round but left without attending the next round and later understood that she is not ok with Target', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-14 10:37:51', 1, '2022-12-14 10:46:44', 0, NULL, 1),
(11438, 'Bhuvaneswari.V', '11', '9940511028', '9790826031', 'bhuvanavelubhuvana@gmail.com', '2001-08-29', 21, '2', '2', 'G.Velu', 'Auto driver', 20000.00, 1, 0.00, 15000.00, 'Kottivakkam,ECR', 'Chennai', '2212140004', '3', '1', 'upload_files/candidate_tracker/10017379133_NEW RESUME BH.docx', NULL, '1', '2022-12-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location Constraint Processed For CRM But She Is Looking For Sales ,Scheduled Her For 2nd Round But Left Without Attending The Next Round And Later Understood That She Is Not Ok With Target', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-14 10:38:37', 1, '2022-12-14 10:45:48', 0, NULL, 1),
(11439, '', '0', '8969575004', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212140005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-14 10:49:42', 0, NULL, 0, NULL, 1),
(11440, 'M. Hemalatha', '4', '9363348195', '', 'hemalatha18051@Gmail.com', '2002-05-18', 20, '3', '2', 'Devaki', 'Farmer', 75000.00, 1, 0.00, 10000.00, 'Vadakal', 'Vadakal', '2212140006', '', '1', 'upload_files/candidate_tracker/8551778679_Hemalatha RESUME (5).docx', NULL, '1', '2022-12-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-14 11:49:05', 1, '2022-12-14 11:57:40', 0, NULL, 1),
(11441, 'K.Abirami', '4', '8072325598', '', 'chithuammu12@gmail.com', '1998-04-12', 24, '3', '2', 'K.Tamilarasi', 'House Wife', 30000.00, 1, 12000.00, 12000.00, 'Nemam', 'Thanjavur', '2212140007', '', '2', 'upload_files/candidate_tracker/64592988347_Abirami.k-1.pdf', NULL, '1', '2022-12-14', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-14 11:49:50', 1, '2022-12-14 11:57:01', 0, NULL, 1),
(11442, '', '0', '8248219041', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-14 11:50:04', 0, NULL, 0, NULL, 1),
(11443, 'P. Suhail', '25', '9966859504', '', 'suhail.pslv225@gmail.com', '1999-02-24', 23, '2', '2', 'P. Reddy Mahaboob', 'Farmer', 20000.00, 3, 24000.00, 30000.00, 'Mulakalacheruvu, Andhar Pradesh -517390', 'Mahadevapura, Bangalore', '2212140009', '1', '2', 'upload_files/candidate_tracker/37401980715_Suhail Resume_1.docx', NULL, '1', '2022-12-15', 7, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '8', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-14 11:53:28', 85, '2022-12-14 05:12:44', 0, NULL, 1),
(11444, '', '0', '8610604944', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212140010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-14 02:28:19', 0, NULL, 0, NULL, 1),
(11445, 'damodharan p s', '13', '9344766424', '6379361056', 'damodharan287@gmail.com', '2000-07-28', 22, '3', '2', 'srinivasan', 'fresher', 100.00, 0, 0.00, 4.00, 'chennai', 'kumbakonam', '2212140011', '', '1', 'upload_files/candidate_tracker/67289541342_DamodharanResume.pdf', NULL, '1', '2022-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-14 04:28:28', 1, '2022-12-14 04:54:04', 0, NULL, 1),
(11446, 'Venkatesh', '4', '9791039577', '9677023983', 'Venkateshvenkatesh97148@gmail.com', '1999-07-09', 23, '2', '2', 'Narayanan', 'Sales man', 25000.00, 2, 15000.00, 20000.00, 'R a puram', 'Chennai', '2212140012', '1', '2', 'upload_files/candidate_tracker/26315448552_vengu+resume.pdf', NULL, '1', '2022-12-15', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-14 04:42:53', 99, '2022-12-15 10:16:17', 0, NULL, 1),
(11447, 'mukesh', '4', '9677269452', '', 'mukesh18jun@gmail.com', '1999-06-18', 23, '2', '2', 'p.k.murali', 'sales engineer', 200000.00, 1, 28785.00, 28785.00, 'chennai', 'chennai', '2212140013', '1', '2', 'upload_files/candidate_tracker/36221057195_mukesh-MURALI-Resume (2).pdf', NULL, '3', '2022-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'too long Distance up and down 46kms also holding an offer for 20K in Testing  Role will not join us not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-14 04:49:19', 99, '2022-12-19 01:22:12', 0, NULL, 1),
(11448, '', '0', '6382921910', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212140014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-14 05:21:54', 0, NULL, 0, NULL, 1),
(11449, '', '0', '9790955359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212140015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-14 06:11:14', 0, NULL, 0, NULL, 1),
(11450, 'Sowmiya', '4', '8220930824', '8675165421', 'ksowmiya33@gmail.com', '1999-08-21', 23, '2', '2', 'Kumar', 'Conductor', 30000.00, 1, 0.00, 17000.00, 'Ulundurpet', 'Tambaram', '2212140016', '1', '1', 'upload_files/candidate_tracker/34720952281_CV_2022071115541568.pdf', NULL, '3', '2022-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-14 06:18:17', 1, '2022-12-14 06:24:35', 0, NULL, 1),
(11451, '', '0', '7639985089', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212140017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-14 06:26:23', 0, NULL, 0, NULL, 1),
(11452, 'rajarajeshwari', '31', '7639985087', '', 'rajarajeshwari.mng@gmail.com', '2001-02-02', 21, '2', '2', 'nagarajan', 'famer', 15000.00, 2, 0.00, 2.50, 'chennai', 'chennai', '2212140018', '1', '1', 'upload_files/candidate_tracker/5068947966_rajeshwari (1).pdf', NULL, '1', '2022-12-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher  Looking for Java as a prior position,not much  comfort with Stipend her expectation is minimum 2.5LPA will not sustain in a long run', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-14 06:52:15', 1, '2022-12-15 02:50:03', 0, NULL, 1),
(11453, 'PARTHIBAN U', '31', '9150940944', '', 'parthiuk482@gmail.com', '2007-12-15', 0, '2', '2', 'Uthira kumaran G', 'Business', 20000.00, 1, 0.00, 18000.00, 'CHENNAI MADURAVOYAL', 'CHENNAI MADURAVOYAL', '2212150001', '1', '1', 'upload_files/candidate_tracker/75998676926_Parthiban1 (1).pdf', NULL, '1', '2022-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics in Javascript Ned to train a lot asked the candidate to wait for 2nd level to check with Gokul but he left without informing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-15 12:50:11', 99, '2022-12-16 11:02:54', 0, NULL, 1),
(11454, 'g deepak', '4', '9003878277', '', 'deepak017hp@gmail.com', '1999-08-29', 23, '2', '2', 'gandhi', 'cooli', 15000.00, 1, 0.00, 20000.00, 'theni', 'taramani', '2212150002', '1', '1', 'upload_files/candidate_tracker/33492522972_deepak resume-converted-converted (1).docx', NULL, '1', '2023-01-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up no communication will not handle our sales calls', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-15 09:48:30', 99, '2023-01-09 04:38:56', 0, NULL, 1),
(11455, 'T.Surya', '4', '6382395698', '6382752385', 'suryasan4929@gmail.com', '2001-02-11', 21, '1', '2', 'V.Thangaraj', 'Farmer', 20000.00, 1, 0.00, 15000.00, '27, palanigoundan palayam, pasur,erode-638154', '27, palanigoundan palayam, pasur,erode-638154', '2212150003', '', '1', 'upload_files/candidate_tracker/43313620082_surya resume 1.docx', NULL, '1', '2022-12-15', 0, '-', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-15 11:05:56', 1, '2022-12-15 11:20:22', 0, NULL, 1),
(11456, 'Priyanka', '6', '9884243558', '', 'sravapriya@gmail.com', '2002-12-15', 20, '1', '2', 'Devi', 'Export', 30000.00, 0, 13000.00, 15000.00, 'Tiruvottiyur', 'Tiruvottiyur', '2212150004', '', '2', 'upload_files/candidate_tracker/75447163253_priyanka srinivasan.pdf', NULL, '1', '2022-12-15', 0, 'P1269', '4', '53', NULL, 0.00, '', '0', NULL, '2', '5050 Profile Sustainability Doubts family need is there,No highest graduation only 10th  have 8 months exp in telecalling kindly check and let me jknow your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-15 11:51:29', 1, '2022-12-15 12:15:40', 0, NULL, 1),
(11457, 'V.Rakesh', '4', '9361436585', '', 'rr5512474@gmail.com', '2001-11-13', 21, '2', '2', 'V.Leelarani', 'Tailor', 10000.00, 1, 0.00, 12000.00, 'No:244/8 south west boag road,t.nagar, Chennai -11', 'Nandanama', '2212150005', '3', '1', 'upload_files/candidate_tracker/90286358140_Rakesh-resume 2.pdf', NULL, '1', '2022-12-15', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher communication Ok Need to train a lot can give a try kindly check and let me know your interest.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-15 11:55:26', 85, '2022-12-15 12:31:53', 0, NULL, 1),
(11458, 'Mohamed Thoufeek', '33', '9524050866', '9875488915', 'mohamedthoufeek80@gmail.com', '2000-06-22', 22, '2', '2', 'MOHAMED IQBAL BATCHA T.M', 'MBA', 75000.00, 0, 0.00, 15000.00, '1/122 East Street vadakkumagudi Thanjavur 614303', 'Valachey, pallikaranai', '2212150006', '1', '1', 'upload_files/candidate_tracker/79686969502_tk.pdf', NULL, '1', '2022-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication no basics in the acounts not suitable for our roles', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-15 11:56:03', 85, '2022-12-16 11:33:44', 0, NULL, 1),
(11459, 'radha k', '4', '9940640613', '', 'radhayuvi@gmail.com', '1987-07-22', 35, '2', '1', 'sathish', 'railway', 30000.00, 3, 0.00, 12000.00, 'chennai', 'chennai', '2212150007', '2', '1', 'upload_files/candidate_tracker/51264441059_S.Radha1 Resume.doc', NULL, '1', '2022-12-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice process, have a long career gap not open for Sales Calls will not run in a long\n', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-15 12:01:49', 1, '2022-12-15 12:04:48', 0, NULL, 1),
(11460, 'Saranya', '4', '9345789466', '', 'Saranyasaranyq9522@gmail.com', '2002-05-27', 20, '2', '2', 'Saravanan', 'Farmer', 45000.00, 1, 0.00, 18000.00, 'Trichy', 'Tnagar', '2212150008', '3', '1', 'upload_files/candidate_tracker/52217153639_Saranya.pdf', NULL, '1', '2022-12-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up not suitable for telesales will not handle our Sales pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-15 12:55:43', 1, '2022-12-15 01:07:48', 0, NULL, 1),
(11461, 'Varsha', '11', '9342059675', '9176389270', 'varsham261999@gmail.com', '1999-09-26', 23, '2', '2', 'Suresh', 'Export worker', 40.00, 2, 15000.00, 18000.00, 'Tambaram', 'Tambaram', '2212150009', '1', '2', 'upload_files/candidate_tracker/72480097174_varsha new resume .pdf', NULL, '1', '2022-12-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication, but speaking sounds good,too long distance up and down 50 kms,No Wrtten Skills have exp in telecalling but not open for the same again and looking for recruiter role.Will not sustain in our Roles not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-15 01:51:49', 99, '2022-12-20 09:36:08', 0, NULL, 1),
(11462, '', '0', '8072120248', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212150010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-15 07:58:31', 0, NULL, 0, NULL, 1),
(11463, 'Bharath V', '20', '6379483879', '', 'bharathveera11@gmail.com', '1997-07-15', 25, '2', '2', 'S.M. Veerapathiran', 'Weaver', 18000.00, 1, 14500.00, 18000.00, 'Vediyangadu, Thiruvallur', 'Madurvoyal chennai', '2212150011', '1', '2', 'upload_files/candidate_tracker/99596860949_Bharath RESUME .docx', NULL, '1', '2022-12-16', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile fresher for Telesales have Exp in backend kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-15 09:46:47', 99, '2022-12-16 11:34:59', 0, NULL, 1),
(11464, 'Abdul Hameed', '14', '9841459993', '7358240460', 'abdulhameedj6@gmail.com', '2001-06-06', 21, '3', '2', 'Jaleel ahamed', 'Business', 20000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2212150012', '', '1', 'upload_files/candidate_tracker/11002734878_inbound6229277872592527224.pdf', NULL, '2', '2022-12-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-15 10:32:16', 1, '2022-12-15 10:46:03', 0, NULL, 1),
(11465, 'Balamurali M', '31', '7708594323', '', 'balamurali00721@gmail.com', '1999-07-18', 23, '2', '2', 'murugesan g', 'cable operator', 40000.00, 1, 0.00, 20000.00, 'sirkali', 'sirkali', '2212160001', '1', '1', 'upload_files/candidate_tracker/56197957401_Resume.pdf', NULL, '2', '2022-12-16', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 1 yr gap 3 months exp in IT with 16K had some certification course in Front end have basics in javascript open for internship and employment  but need some  time to  confirm his next schedule will check once and confirm ', '2', '1', '', '1', '1', '', '2', '2022-12-19', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-16 10:52:04', 99, '2022-12-16 11:03:16', 0, NULL, 1),
(11466, 'K.priyanka', '4', '9025368054', '9787096693', 'Pp1277402@gmail.com', '1998-12-02', 24, '2', '2', 'Kalidoss Gowri', 'Teaching', 10000.00, 1, 0.00, 15000.00, 'Thindivana', 'V Nallalam , Thindivana TK, Villupuram DT .', '2212160002', '1', '1', 'upload_files/candidate_tracker/18398008914_Priyanka4.pdf', NULL, '3', '2022-12-16', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Had a telephonic discussion with the candidate fresher can be trained Ready to relocate chennai can give a try kindly have a virtual round and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-16 10:55:17', 99, '2022-12-16 06:09:09', 0, NULL, 1),
(11467, 'Rohith', '31', '7639028819', '6393131997', 'rohith1452002@gmail.com', '1999-11-07', 23, '2', '2', 'Senthil Kumar', 'Driver', 120000.00, 1, 0.00, 4.00, 'Vaniyambadi', 'Vaniyambadi', '2212160003', '1', '1', 'upload_files/candidate_tracker/97345050015_Rohith_finalized..pdf', NULL, '2', '2022-12-16', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He was outside should call later\n', '2', '1', '', '1', '1', '', '2', '2022-12-17', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-16 10:57:09', 99, '2022-12-16 11:23:30', 0, NULL, 1),
(11468, 'Sivakailash', '4', '6374089846', '', 'Sivasiva16012001@gmail.com', '2001-01-16', 21, '2', '2', 'Siva', 'Frencher', 20000.00, 15000, 0.00, 1.00, 'Karaikal', 'Chennai', '2212160004', '1', '1', 'upload_files/candidate_tracker/11543522305_SIVAKAILASH RESUME NEW.pdf', NULL, '1', '2022-12-16', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Can give a try for B2B Calling need to be trained kindly check and let me know your interest', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-16 11:46:02', 85, '2022-12-16 11:53:35', 0, NULL, 1),
(11469, 'Srikiran.E', '4', '7379274073', '6379274073', 'Kiransri07102000@gmail.com', '2000-10-07', 22, '2', '2', 'Mythili', 'Accountants', 50000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2212160005', '1', '1', 'upload_files/candidate_tracker/34642415585_RESUME FILE KIRAN (1).pdf', NULL, '1', '2022-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'His Focus is into Non voice process and not much ideas into voice process Long distance and asked him to wait for 2nd level but left without attending the round', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-16 12:22:01', 99, '2022-12-16 12:30:15', 0, NULL, 1),
(11470, 'Srikiran.E', '4', '6379274073', '9500369957', 'Kiransri07102000@gmail.com', '2000-10-07', 22, '3', '2', 'Mythili m', 'Accountants', 50000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2212160006', '', '1', 'upload_files/candidate_tracker/52292100089_RESUME FILE KIRAN.docx', NULL, '1', '2022-12-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-16 12:28:36', 1, '2022-12-16 12:30:27', 0, NULL, 1),
(11471, '', '0', '7603886709', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212160007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-16 03:18:21', 0, NULL, 0, NULL, 1),
(11472, 'S.Balashanmugam', '31', '9962178671', '7010981151', 'shanmugambala906@gmail.com', '2000-06-17', 22, '2', '2', 'A.Sarathy', 'Mechanic', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2212160008', '1', '1', 'upload_files/candidate_tracker/61191013744_S.Balashanmugam Resume.pdf', NULL, '1', '2022-12-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-16 04:47:40', 130, '2024-06-03 03:38:46', 0, NULL, 1),
(11473, 'gomathi', '16', '9444386935', '', 'gomug97@gmail.com', '1997-12-07', 25, '2', '1', 'sathish', 'assistant manager', 50000.00, 1, 20000.00, 20000.00, 'chennai', 'kavarapettai', '2212160009', '1', '2', 'upload_files/candidate_tracker/57213437682_GomathiResnew.pdf', NULL, '1', '2022-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication orally managable no relevant Exp have exp in sales but not interested towards that.she is into medical treatment will not sustain in a long ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-16 04:49:30', 99, '2022-12-17 11:55:31', 0, NULL, 1),
(11474, 'Rafiha R. K', '14', '9952275622', '', 'Rafiharajan@gmail.com', '2000-12-10', 22, '4', '2', 'M. Rajan', 'Driver', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Guindy', '2212160010', '', '1', 'upload_files/candidate_tracker/97627860123_Rafiha resume.pdf', NULL, '3', '2023-01-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-16 04:50:55', 1, '2022-12-16 05:18:50', 0, NULL, 1),
(11475, 'chiranjeevi', '5', '9025209661', '', 'chiranjeevi902520@gmail.com', '1999-12-14', 23, '1', '2', 'suburamani', 'landury', 25000.00, 1, 20000.00, 20000.00, 'chennai', 'chennai', '2212160011', '', '2', 'upload_files/candidate_tracker/59837284085_Document from Cj 01.pdf', NULL, '1', '2022-12-16', 0, 'p1377', '3', '59', '2022-12-26', 234000.00, '', '5', '1970-01-01', '1', 'Selected for Mani Team    Staff Role \n                 Communication Ok Have Exp As Medical Rep For An Year,Need To Be Trained In Our Domain Kindly Check And Let Me Know Your Inputs', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-16 04:51:23', 60, '2022-12-23 04:48:12', 0, NULL, 1),
(11476, '', '0', '8220573232', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-16 04:52:19', 0, NULL, 0, NULL, 1),
(11477, '', '0', '8056018536', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212170001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-17 08:52:54', 0, NULL, 0, NULL, 1),
(11478, 'S.Balashanmugam', '31', '7010981151', '9962178671', 'shanmugambala906@gmail.com', '2000-06-17', 22, '2', '2', 'A.Sarathy', 'Mechanic', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2212170002', '1', '1', 'upload_files/candidate_tracker/80513711230_S.Balashanmugam Resume.pdf', NULL, '1', '2022-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much strong in Basic Skills can be trained a lot not much open with TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-12-26', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-17 09:16:03', 130, '2024-06-03 03:39:02', 0, NULL, 1),
(11479, 'T.Prabakaran', '23', '8056018535', '', 'Prabakar.tamizh23@gmail.com', '1996-08-23', 26, '2', '2', 'D.Tamizhaelvan', 'Laundry man', 20000.00, 1, 0.00, 15000.00, 'Urapakam', 'Urapakam', '2212170003', '1', '1', 'upload_files/candidate_tracker/41759307043_Praba resume IT.2022-1.pdf', NULL, '1', '2022-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher no basics in  Javascript too long distance but can relocate and stay in aunt home near by  need to learn a lot let him come back after learning', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-17 10:43:20', 99, '2022-12-17 11:53:06', 0, NULL, 1),
(11480, 'nikhil narayan s', '4', '9884168204', '', 'nikhilchippala@gmail.com', '1997-09-09', 25, '2', '2', 'sasikumar', 'bank manager', 45000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2212170004', '3', '1', 'upload_files/candidate_tracker/63142827714_DOC-20221025-WA0030..docx', NULL, '1', '2022-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Having medical issue a lot will not suit in telecalling voice not clear not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-17 11:14:32', 99, '2022-12-17 11:53:59', 0, NULL, 1),
(11481, 'Visuvalingam', '4', '9080601067', '', 'Bad14god@gmail.com', '1998-12-17', 24, '2', '2', 'Balakrishnan', 'Farmer', 15000.00, 4, 0.00, 18000.00, 'Bhuvanagiri', 'Ambattur', '2212170005', '3', '1', 'upload_files/candidate_tracker/65025733592_IMG_20221217_114218.pdf', NULL, '1', '2022-12-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open a lot will not sustain and handle the sales pressure not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-17 11:32:29', 1, '2022-12-17 11:48:36', 0, NULL, 1),
(11482, 'hemam manoranjan singh', '4', '9600219856', '', 'manoranjanhemam@gmail.com', '1991-12-31', 30, '2', '1', 'akoijam rebika devi', 'house wife', 40000.00, 1, 484000.00, 550000.00, 'moirang manipur', 'kovur chennai', '2212170006', '1', '2', 'upload_files/candidate_tracker/53246156835_Manoranjan Singh_Hemam Logistics_RS.docx', NULL, '1', '2022-12-19', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have a long Exp in Customer Support mostly inbound Fresh to insurance Domain Local Language Just Manageable Current Salary is very high 4.84 LPA,Will not sustain and handle our Sales not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-17 12:17:22', 99, '2022-12-19 09:47:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11483, 'Logesh prabhu B', '16', '9677282925', '9962652570', 'Logeshprabhu23@gmail.com', '1993-04-23', 29, '2', '1', 'Devika s', 'House wife', 20000.00, 0, 300000.00, 400000.00, 'Chennai', 'Chennai', '2212170007', '1', '2', 'upload_files/candidate_tracker/92112105853_DOC-20221217-WA0000.docx', NULL, '1', '2022-12-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance  up and down 60 kms a month back he joined a company and looking for change with the salary hike', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-17 04:02:06', 99, '2022-12-19 09:57:59', 0, NULL, 1),
(11484, 'Thilakavathi M', '31', '9148227581', '', 'thilakaggts14@gmail.com', '2000-06-14', 22, '2', '1', 'ARUNACHALAM A', 'Accounts executive', 25000.00, 1, 0.00, 17000.00, '#32/98 old mambalam road saidapet chennai 600015', '#32/98 old mambalam road saidapet chennai 600015', '2212180001', '1', '1', 'upload_files/candidate_tracker/759592604_Thilaka Resume-Final.docx', NULL, '1', '2022-12-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'married xxamp have 1yr kid not much strong in html xxamp CSS.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-18 08:48:58', 99, '2022-12-24 10:16:49', 0, NULL, 1),
(11485, '', '0', '8300958112', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212180002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-18 11:15:08', 0, NULL, 0, NULL, 1),
(11486, 'C.thennavan', '4', '9361269748', '9944702024', 'thennuthennavan@gmail.com', '2004-04-01', 18, '2', '2', 'V.chandrasekar', 'Driver', 35000.00, 1, 12000.00, 15.00, '259 tps nager mc road thanjavur', '72/4 lic colony West extension mc road thanjavur', '2212190001', '1', '2', 'upload_files/candidate_tracker/77231773262_thennvan resume .pdf', NULL, '1', '2022-12-19', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 09:12:28', 99, '2022-12-19 10:57:15', 0, NULL, 1),
(11487, 'Prasenjeet mandal', '11', '9019823632', '8861744385', 'prasenjitmndl9@gmail.com', '1997-07-01', 25, '3', '2', 'Govinda mandal', 'Farmer', 25000.00, 0, 420000.00, 450000.00, 'RAICHUR', 'Bengaluru', '2212190002', '', '2', 'upload_files/candidate_tracker/83367290296_Prasanjit Mandal.pdf', NULL, '2', '2022-12-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-19 10:12:33', 1, '2022-12-19 10:21:16', 0, NULL, 1),
(11488, '', '0', '7530044759', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 10:19:39', 0, NULL, 0, NULL, 1),
(11489, '', '0', '8197075788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 10:20:56', 0, NULL, 0, NULL, 1),
(11490, '', '0', '8015676534', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 10:23:02', 0, NULL, 0, NULL, 1),
(11491, 'Kalaivani', '11', '9600168249', '7401090377', 'kalaivanigowri1203@gmail.com', '1996-03-27', 26, '2', '1', 'Sumathi', 'IT FIELD', 60000.00, 1, 10850.00, 20000.00, 'No:56/24 Bajani Koil Street ,t.nagar, Chennai', 'Chennai', '2212190006', '1', '2', 'upload_files/candidate_tracker/36547229693_kalai_Resume.pdf', NULL, '1', '2022-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Just 3 months Exp in IT recrutiment(2018) 2 yrs in Bank Clerical Profile 2 yrs gap due to marriage now looking for recruitment very high Salary Exp not ready to come down.Communication Average no basics in the recruitment Need to train from Scratch Will not handle our work pressure', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 10:39:36', 99, '2022-12-19 10:58:46', 0, NULL, 1),
(11492, '', '0', '9360668331', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 11:02:07', 0, NULL, 0, NULL, 1),
(11493, 'kumaresan', '33', '7305334086', '', 'gokulkumaresan22@gmail.com', '2000-10-19', 22, '2', '2', 'dhamodharan', 'soletrader', 30000.00, 1, 12000.00, 15000.00, 'chennai', 'chennai', '2212190008', '1', '2', 'upload_files/candidate_tracker/37755646793_kumaresan .pdf', NULL, '1', '2022-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas in the accounts average communicaiton no Bike Looking only for salary hike in 6 months looking for opportunity only for salary not suitable', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 11:16:14', 99, '2022-12-19 11:47:55', 0, NULL, 1),
(11494, '', '0', '8939408182', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 11:32:55', 0, NULL, 0, NULL, 1),
(11495, 'Nirmala Saravanan', '4', '7823959144', '9789181398', 'nithyasri2398@gmail.com', '1998-01-23', 24, '2', '2', 'M.saravanan', 'Carbendar', 15000.00, 1, 15000.00, 16000.00, 'Chrompet', 'Chrompet', '2212190010', '1', '2', 'upload_files/candidate_tracker/52016691224_1571303541176Resume_Nirmala.docx', NULL, '1', '2022-12-22', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Calling Exp with several companies can be trained in our roles,Distance need to focus,kindly check and let me know you interest', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-19 11:44:57', 85, '2022-12-22 11:25:36', 0, NULL, 1),
(11496, 'Vishwavinoth', '21', '8754945221', '', 'vishwavinothbca@gmail.com', '1998-05-20', 24, '4', '2', 'Vedhanayagi J', 'BCA', 300000.00, 1, 0.00, 15000.00, 'Nagapattinam', 'Chennai', '2212190011', '', '1', 'upload_files/candidate_tracker/74559078196_viswa vin Resume (1).pdf', NULL, '3', '2022-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-19 12:22:25', 1, '2022-12-19 12:26:53', 0, NULL, 1),
(11497, 'jinu baby', '33', '8289951075', '', 'jinukoyickan@gmail.com', '1994-07-04', 28, '1', '1', 'mathai k a', 'junior sales officer', 75000.00, 2, 0.00, 35000.00, 'kerala', 'bangalore', '2212190012', '', '2', 'upload_files/candidate_tracker/787229094_JINU BABY RESUME.docx', NULL, '2', '2022-12-21', 0, 'km0079', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-19 12:56:49', 1, '2022-12-19 01:05:25', 0, NULL, 1),
(11498, 'Vimal raj', '6', '9659634759', '6384175129', 'vimalvimmu965963@gmail.com', '1997-12-09', 25, '2', '2', 'Prabhakaran', 'Driver', 25000.00, 0, 0.00, 15000.00, 'Erode', 'Erode', '2212190013', '1', '1', 'upload_files/candidate_tracker/12555657067_Vimalraj resume.pdf', NULL, '1', '2022-12-20', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-19 01:55:09', 85, '2022-12-20 02:54:54', 0, NULL, 1),
(11499, '', '0', '9884745316', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 02:20:48', 0, NULL, 0, NULL, 1),
(11500, 'Divya .K', '4', '9159299112', '9585920602', 'divyasambath2319@gmail.com', '1998-05-19', 24, '3', '2', 'Kamalakannan', 'Labour', 7000.00, 0, 0.00, 15000.00, 'Tindivanam', 'Tindivanam', '2212190015', '', '1', 'upload_files/candidate_tracker/98092314993_K.DIVYA - 1-1.pdf', NULL, '3', '2022-12-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-19 03:25:38', 1, '2022-12-19 03:49:33', 0, NULL, 1),
(11501, 'Prithviraj', '23', '9176550425', '9840781573', 'prithviak57@gmail.com', '2000-11-28', 22, '2', '2', 'babu m', 'customs clearance', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2212190016', '1', '1', 'upload_files/candidate_tracker/76656650992_PRITHVI RAJ RESUME NEW.docx', NULL, '1', '2022-12-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for IT Need time  to confirm the TxxampC no basics  Family settled willl not sustain in our roles not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 04:50:49', 99, '2022-12-20 11:11:34', 0, NULL, 1),
(11502, 'Gowtham P', '23', '8056129724', '', 'gowtham1582000@gmail.com', '2000-08-15', 22, '2', '2', 'R.Prem Kumar', 'Data base administrator.', 400000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2212190017', '1', '1', 'upload_files/candidate_tracker/35587975468_Gowtham Resume (5).pdf', NULL, '1', '2022-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain holding 3 offers in hand with min 2.2 LPA to 4.5 LPA Looking for CMMI Level companies will not join and sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 04:55:10', 99, '2022-12-21 10:42:02', 0, NULL, 1),
(11503, 'Ponkumar P', '2', '8248735741', '', 'ponkumar321@gmail.com', '2007-12-19', 0, '2', '2', 'Ponraj G', 'Business', 30000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2212190018', '1', '1', 'upload_files/candidate_tracker/92721842046_CV_2022112611133865-1.pdf', NULL, '1', '2022-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No basics in JS,Stammering a lot will not sustain and handle our work  not suitable not much comfort in TxxampC', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 05:02:19', 99, '2022-12-21 10:43:45', 0, NULL, 1),
(11504, 'raghavendhra', '2', '9566247684', '', 'raghulramesh843@gmail.com', '2000-05-15', 22, '2', '2', 'ramesh', 'welder', 20000.00, 2, 0.00, 400000.00, 'chennai', 'chennai', '2212190019', '1', '1', 'upload_files/candidate_tracker/53793495514_Raghavendhra MCA resume.pdf', NULL, '1', '2022-12-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Have basic skills in JS,Need to check for his sustainability his sister is in Accenture Need time to confirm on the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-12-22', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 05:08:11', 99, '2022-12-20 09:29:13', 0, NULL, 1),
(11505, 'Sivaperumal', '20', '8524910708', '8778081584', 'ferruperumal@gmail.com', '1995-02-03', 27, '2', '2', 'Sadaiyandi', 'Tea maker', 20000.00, 1, 24000.00, 30000.00, '2/80 Nadu st , Authoor,Mallaiyapuram ,Dindigul', '2/80 Nadu St, authoor, Mallaiyapuram, Dindigul,', '2212190020', '1', '2', 'upload_files/candidate_tracker/8492981616_new edited cv dec20.pdf', NULL, '3', '2022-12-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Sales but not a longer one.Worked in 3 companies 3 different domain and have a health issue he is into treatment for Rheumatoid arthritis. He left bajaj due to work pressure. Kindly hold this profile, will confirm the status. Salary Exp is more than his expeirence', '5', '2', '', '1', '3', '', '2', '2022-12-27', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 05:24:58', 99, '2022-12-20 09:30:44', 0, NULL, 1),
(11506, 'Sugadev', '16', '8754332195', '', 'sugadevbalasubramanian637@gmail.com', '1999-10-29', 23, '2', '2', 'Balasubramanian', 'Farmer', 5000.00, 1, 0.00, 400000.00, 'Manamadurai', 'Velachery,chennai', '2212190021', '1', '1', 'upload_files/candidate_tracker/7897406247_sugadsnow.pdf', NULL, '1', '2022-12-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 05:39:04', 99, '2022-12-20 09:31:24', 0, NULL, 1),
(11507, 'aslam', '4', '7306170150', '', 'aslambasha2225@gmail.com', '1994-05-09', 28, '2', '1', 'Shahid Basha', 'business', 28000.00, 1, 3.60, 28000.00, 'bangalore', 'bangalore', '2212190022', '1', '2', 'upload_files/candidate_tracker/65375870816_Aslam Resume (1).pdf', NULL, '1', '2022-12-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 06:09:47', 99, '2022-12-20 01:12:12', 0, NULL, 1),
(11508, '', '0', '9751661446', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 06:11:01', 0, NULL, 0, NULL, 1),
(11509, '', '0', '8428987497', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 06:51:11', 0, NULL, 0, NULL, 1),
(11510, '', '0', '8870464349', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 08:04:00', 0, NULL, 0, NULL, 1),
(11511, 'R RANJITH KUMAR', '31', '8122739465', '', 'rajaranjithkumar17@gmail.com', '1998-05-20', 24, '2', '2', 'Raja K', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'dharmapuri', 'Thoraipakkam', '2212190026', '1', '1', 'upload_files/candidate_tracker/27938931646_R Ranjith Kumar .pdf', NULL, '1', '2022-12-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher have a knowledge in React Can be trained 2nd round interviewed by manikandan,he was ok with TxxampC but need to confirm once, Need to schedule him for final round with Gokul', '2', '1', '', '1', '1', '', '2', '2022-12-22', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 10:15:28', 99, '2022-12-20 12:05:30', 0, NULL, 1),
(11512, '', '0', '6382026819', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 11:24:19', 0, NULL, 0, NULL, 1),
(11513, 'Malavan', '31', '9788539254', '7708751573', 'malavan235@gmail.com', '2001-04-22', 21, '4', '2', 'Madhiyazhagan', 'Farmer', 8000.00, 1, 0.00, 12000.00, '269, South Street, Sri Aadhivaraganallur post,', 'Chennai', '2212200001', '', '1', 'upload_files/candidate_tracker/34842215063__M Malavan new Resume.pdf', NULL, '1', '2022-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot no basics in skills will not handle our work pressure and not suitable for our position', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-20 09:05:10', 99, '2022-12-21 01:04:34', 0, NULL, 1),
(11514, 'Manikandan K', '23', '6369982019', '', 'manidhiyamech07167@gmail.com', '1998-05-15', 24, '2', '2', 'Kandasamy', 'Former', 6000.00, 1, 0.00, 15000.00, 'Salem', 'Chennai', '2212200002', '1', '1', 'upload_files/candidate_tracker/99347747510_manikandan.pdf', NULL, '1', '2022-12-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Skills in React Can be trained but he need time to confirm on the TxxampC if he comes back let us try\n', '2', '1', '', '1', '3', '', '2', '2022-12-22', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-20 09:07:54', 99, '2022-12-20 12:05:52', 0, NULL, 1),
(11515, 'Bharath Gouthaman J', '16', '8056156227', '8015189938', 'Gouthamwolverine3@gmail.com', '1997-10-08', 25, '2', '2', 'Jayaraj', 'Turnner', 45000.00, 1, 23000.00, 28000.00, 'Chennai', 'Chennai', '2212200003', '1', '2', 'upload_files/candidate_tracker/98559623524_Final Updated Goutham .pdf', NULL, '1', '2022-12-20', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance up and down 50kms Have Exp in Sales but not open for same and looking for MIS Average Communication will not sustain', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-20 10:21:35', 99, '2022-12-20 10:31:50', 0, NULL, 1),
(11516, 'jaya durga p', '4', '8939425832', '', 'jayadurga2629@gmail.com', '2001-09-26', 21, '2', '2', 'pushaparaj', 'chef', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2212200004', '2', '1', 'upload_files/candidate_tracker/22009673058_WhatsApp Image 2022-12-19 at 11.18.32 AM.pdf', NULL, '1', '2022-12-20', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Have 6 months Exp in Telecalling Collection Can be trained for our role,Can give a try  kindly check and let  me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-20 10:38:14', 1, '2022-12-20 10:40:31', 0, NULL, 1),
(11517, 'N.ASHWIN BARATH', '6', '7904027379', '', 'ashwinbarath096@gmail.com', '1996-10-23', 26, '2', '2', 'S.G NANTHAKUMAR', 'Own', 25.00, 1, 15000.00, 20000.00, 'Erode', 'Erode', '2212200005', '1', '2', 'upload_files/candidate_tracker/57257524719_ashwin barath.docx', NULL, '3', '2022-12-20', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '1st round selected but 2nd round abscond , number RNR', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-20 10:38:30', 85, '2022-12-20 02:53:19', 0, NULL, 1),
(11518, 'nirendran g', '6', '6382220547', '', 'dannymarley8@gmail.com', '1997-11-30', 25, '2', '2', 'gnanavel', 'business', 15000.00, 2, 14000.00, 17000.00, 'chennai', 'chennai', '2212200006', '2', '2', 'upload_files/candidate_tracker/24774398209_Nirendran G Resume 1.pdf', NULL, '1', '2022-12-20', 0, '', '3', '59', '2022-12-26', 230000.00, '', '4', '2023-04-27', '1', 'Selected for Syed Team in Staff Role          \n       Have Exp In Insurance Sales Can Be Trained For Our Profile Kindly Check And Let Me Know Your Inputs', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-20 10:42:01', 60, '2022-12-22 03:49:15', 0, NULL, 1),
(11519, 'bhuvaneshwari l', '4', '8667743972', '', 'kbsan202011@gmail.com', '1998-07-02', 24, '2', '2', 'loganthan g', 'driver', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2212200007', '2', '1', 'upload_files/candidate_tracker/43198609315_WhatsApp Image 2022-12-19 at 11.18.32 AM.pdf', NULL, '1', '2022-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-20 10:47:56', 1, '2022-12-20 10:49:55', 0, NULL, 1),
(11520, 'vaishnavi m', '4', '9841523074', '', 'mvaishnavi589@gmail.com', '2002-05-08', 20, '2', '2', 'mohan', 'painter', 13000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2212200008', '2', '1', 'upload_files/candidate_tracker/24000624745_WhatsApp Image 2022-12-19 at 11.18.32 AM.pdf', NULL, '1', '2022-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have 6 months Exp in Collection Calls but not much flow with the communication will not sustain and handle our pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-20 10:52:10', 1, '2022-12-20 10:54:32', 0, NULL, 1),
(11521, '', '0', '8327224011', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-20 10:58:53', 0, NULL, 0, NULL, 1),
(11522, 'priyadharshini', '4', '7358518513', '', 'priyadharshiniarumugam1420@gmail.com', '2002-02-14', 20, '1', '2', 'arumugam', 'painter', 10000.00, 0, 0.00, 13000.00, 'chennai', 'chennai', '2212200010', '', '1', 'upload_files/candidate_tracker/23534209266_Priya resume.pdf', NULL, '1', '2022-12-20', 0, 'p1269', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance not much comfortable with the distance will not sustain ', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-20 11:02:01', 1, '2022-12-20 11:58:19', 0, NULL, 1),
(11523, 'B.varsha', '4', '8220329285', '', 'varshabala15@gmail.com', '1998-03-16', 24, '2', '2', 'D.balasubramaniyan', 'Driver', 15000.00, 1, 0.00, 10000.00, 'Karaimeendar kottai', 'Karaimeendar kottai', '2212200011', '1', '1', 'upload_files/candidate_tracker/16775501245_CV_2022111311592873.pdf', NULL, '1', '2022-12-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is not ok with the profile and not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-20 11:13:01', 85, '2022-12-20 11:44:43', 0, NULL, 1),
(11524, '', '0', '7363639499', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212200012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-20 11:14:29', 0, NULL, 0, NULL, 1),
(11525, 'Angel Jalwin', '4', '9659823097', '8072365397', 'angeljalwin11193@gmail.com', '1993-11-01', 29, '1', '2', 'Sahayaraj', 'Hotel supervisor', 15000.00, 1, 18600.00, 25000.00, '12/115 kanmalai Illam old post office mukuperi', '2c/112 bazaar road saidapet chennai', '2212200013', '', '2', 'upload_files/candidate_tracker/23335184775_angel resum.docx', NULL, '1', '2022-12-20', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', '6 months back we offered and she didnt respond the calls later  now she appeared for the role and asking for huge salary hike  earlier we offered 2.04 LPA', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-20 11:31:57', 1, '2022-12-20 11:37:10', 0, NULL, 1),
(11526, '', '0', '9900896379', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212200014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-20 03:20:16', 0, NULL, 0, NULL, 1),
(11527, '', '0', '9952937289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212200015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-20 04:30:12', 0, NULL, 0, NULL, 1),
(11528, 'Ajith kumar.E', '4', '8838336339', '', 'antoajith833@gmail.com', '1997-10-15', 25, '2', '2', 'Escakkiappan', 'Self employeee', 1.00, 1, 25000.00, 30000.00, 'Tirunelveli', 'Velacherry chennai', '2212200016', '1', '2', 'upload_files/candidate_tracker/15657869323_Ajith Resume.pdf', NULL, '1', '2022-12-22', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Sales Calling,holding 2 offers in hand no sustainability in the previous Exp Salary Exp is high than his experience', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-20 04:43:40', 99, '2022-12-22 10:24:56', 0, NULL, 1),
(11529, 'Princy maria deepa', '22', '8428996225', '', 'princy.anto96@gmail.com', '1996-06-09', 26, '3', '2', 'Antony samy', 'Farmer', 25000.00, 2, 0.00, 30000.00, 'Tiruvannamalai', 'Chennai', '2212200017', '', '1', 'upload_files/candidate_tracker/45411416974_Princy A.docx', NULL, '2', '2022-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-20 05:00:12', 1, '2022-12-20 05:02:54', 0, NULL, 1),
(11530, '', '0', '8056129725', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212200018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-20 10:33:46', 0, NULL, 0, NULL, 1),
(11531, '', '0', '7299371583', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 08:31:16', 0, NULL, 0, NULL, 1),
(11532, 'nithiyashree k', '4', '7806870393', '', 'nithiyashree940@gmail.com', '2002-01-11', 20, '2', '2', 'karuna karan', 'driver', 20000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2212210002', '2', '1', 'upload_files/candidate_tracker/47797333931_CV_2022121510550878.pdf', NULL, '1', '2022-12-21', 0, '', '3', '59', '2022-12-29', 138948.00, '', '5', '1970-01-01', '2', 'Selected for B2B Consultant Role', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-21 10:21:06', 60, '2022-12-23 05:02:52', 0, NULL, 1),
(11533, '', '0', '8489162975', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 01:06:43', 0, NULL, 0, NULL, 1),
(11534, 'Sathish kumar. K', '23', '7373260032', '9360109074', 'Sathishkumar24032000@gmail.com', '2000-03-24', 22, '2', '2', 'Kumarasamy. R', 'Police', 40000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2212210004', '1', '1', 'upload_files/candidate_tracker/9316817794_Sathishkumar-Resume.pdf', NULL, '1', '2022-12-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-21 02:39:07', 99, '2022-12-23 12:58:36', 0, NULL, 1),
(11535, 'Selvamani R', '13', '8675879527', '9940642661', 'selvamani1045@gmail.com', '2000-03-27', 22, '2', '2', 'Ramalingam M', 'Farmers', 13000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2212210005', '1', '1', 'upload_files/candidate_tracker/88333590732_Selvamani_Resume (1).pdf', NULL, '1', '2022-12-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-21 02:39:10', 99, '2022-12-23 12:59:09', 0, NULL, 1),
(11536, '', '0', '9952639353', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 03:26:49', 0, NULL, 0, NULL, 1),
(11537, '', '0', '8925659187', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 04:51:27', 0, NULL, 0, NULL, 1),
(11538, 'Johnson', '31', '8870221104', '9489587024', 'johnsontherasa24@gmail.com', '1999-06-15', 23, '2', '2', 'Stalin s', 'Labour', 10000.00, 1, 0.00, 18000.00, 'Tirunelveli', 'Vellachery', '2212210008', '1', '1', 'upload_files/candidate_tracker/61755614793_Johnson S.pdf', NULL, '1', '2022-12-22', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he  already Attends interview 2m back. has exp in react js.  Sustainability doubts. ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-21 05:51:41', 99, '2022-12-22 11:46:14', 0, NULL, 1),
(11539, '', '0', '6374081868', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 06:29:04', 0, NULL, 0, NULL, 1),
(11540, '', '0', '7306927768', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 07:33:28', 0, NULL, 0, NULL, 1),
(11541, 'Shek Mohammed Fazil', '14', '9790334986', '', 'mmohammedfazil3@gmail.com', '2000-11-19', 22, '1', '2', 'Mohammed Iqbal', 'Business', 25000.00, 1, 0.00, 20000.00, 'Hosur', 'Hosur', '2212210011', '', '1', 'upload_files/candidate_tracker/28164798223_mmohammed fazil CV.pdf', NULL, '1', '2022-12-22', 0, 'Fresher', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-21 09:08:32', 1, '2022-12-21 09:14:20', 0, NULL, 1),
(11542, '', '0', '9962183159', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 10:15:05', 0, NULL, 0, NULL, 1),
(11543, 'Yukesh', '17', '8838246319', '', 'yukesh2018srm@gmail.com', '2000-10-04', 22, '2', '2', 'Palani', 'Technician', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2212220001', '1', '1', 'upload_files/candidate_tracker/43842399198_resume Yukesh .pdf', NULL, '2', '2022-12-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Preferably  looking for non voice Process no communication as per the expectation for the sales not suitable', '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-12-22 07:43:50', 1, '2022-12-22 07:52:15', 0, NULL, 1),
(11544, 'Mohamed Rilwan', '13', '9788678945', '7358562761', 'rilwan.207@gmail.com', '1994-01-18', 28, '2', '2', 'Mohamed aboobacker', 'Civil engineer', 40000.00, 2, 0.00, 15000.00, 'Kadayanallur', 'Chennai', '2212220002', '1', '1', 'upload_files/candidate_tracker/38317576112_Resume.docx', NULL, '1', '2022-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not clear with th skills he want to work, not much active no focus  Long career Gap he got terminated during the training period due to poor performance not suitable for us will not sustain ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-22 10:25:00', 99, '2022-12-22 10:46:53', 0, NULL, 1),
(11545, 'Vijay Prakash M', '23', '9025273414', '9042077189', 'munnavijayprakash@gmail.com', '2000-10-22', 22, '2', '2', 'Hazaratha Reddy M', 'Rice Business', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2212220003', '1', '1', 'upload_files/candidate_tracker/99930712304_my resume (2).pdf', NULL, '1', '2022-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Basic knowledge,having a plan to go for higher studies full time and looking for opportunities in time being not open for TxxampC ,his siblings both in CTS amazon will not run in a long not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-22 10:31:10', 99, '2022-12-22 11:32:34', 0, NULL, 1),
(11546, '', '0', '6382944168', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212220004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-22 11:03:35', 0, NULL, 0, NULL, 1),
(11547, 'Renukadevi arokkiam', '4', '7550162089', '6382333590', 'renumoshitha07@gmail.com', '1999-02-07', 23, '2', '2', 'Kala', 'House wife', 20000.00, 1, 17000.00, 18000.00, 'Chennai', 'Chennai', '2212220005', '1', '2', 'upload_files/candidate_tracker/98677318074_Renuka-1.docx', NULL, '1', '2022-12-22', 15, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Calling Exp With Several Companies Can Be Trained In Our Roles,Distance Need To Focus,Kindly Check And Let Me Know You Interest', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-22 11:23:51', 85, '2022-12-22 11:47:52', 0, NULL, 1),
(11548, 'Ravi Chandra', '4', '9620324550', '', 'chandraravi18@gmail.com', '1990-07-29', 32, '2', '2', 'Srinivas', 'Farmer', 60000.00, 2, 27000.00, 35000.00, 'Bangalore', 'Chennai', '2212220006', '1', '2', 'upload_files/candidate_tracker/36470649373_Ravi resume updated new.docx', NULL, '1', '2022-12-22', 30, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Gppd Communication having multi language skills Have exp in Collections Renewals Calling and open for Sales Calling too but his current salary is too high for Renewals 25K and Exp is min 4.2 LPA  30 days notice period Left  without attending  the 2nd level due to emergency if he comes back let us try in our roles', '1', '2', '', '1', '1', '', '2', '2022-12-26', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-22 11:24:09', 85, '2022-12-22 11:48:08', 0, NULL, 1),
(11549, 'Swathi', '28', '7550186306', '9789867657', 'swathiswa808@gmail.com', '1999-02-08', 23, '3', '2', 'Sivasankaran', 'Cooly', 10000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2212220007', '', '2', 'upload_files/candidate_tracker/82920365267_Swathi Resume.docx', NULL, '1', '2022-12-22', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-22 12:25:49', 1, '2022-12-22 12:29:35', 0, NULL, 1),
(11550, 'Divakar', '5', '6369757123', '8148808081', 'divakarboopathy@yahoo.com', '1995-12-14', 27, '2', '2', 'Boopathy A', 'Cooking', 20.00, 1, 28000.00, 35000.00, 'TIRUTTANI', 'Chennai', '2212220008', '1', '2', 'upload_files/candidate_tracker/77025056808_Divakar-Resume (1).pdf', NULL, '1', '2022-12-22', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Continuously change his job  yearly once.  no Sustainability. has some career gap...', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-22 01:20:33', 85, '2022-12-22 03:37:24', 0, NULL, 1),
(11551, 'Dharshan', '23', '8428416404', '', 'dharshanwilsonraj@gmail.com', '2001-05-19', 21, '2', '2', 'Raj', 'X-army', 25000.00, 2, 0.00, 30000.00, 'Chennai', 'Chennai', '2212220009', '1', '1', 'upload_files/candidate_tracker/17491801264_R.Dharshan.pdf', NULL, '1', '2022-12-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not much strong with basics,Need to learn have some basics is Figma Need time to confirm the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-22 06:17:00', 99, '2022-12-27 10:17:03', 0, NULL, 1),
(11552, '', '0', '9500182576', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212220010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-22 06:21:22', 0, NULL, 0, NULL, 1),
(11553, 'Thangamariyappan', '16', '8248915672', '', 'thangamarimd@gmail.com', '1999-03-26', 23, '2', '2', 'Nagaraj', 'Sale news paper', 20000.00, 2, 0.00, 20.00, 'Arumbakkam, chennai', 'Arumbakkam, chennai', '2212220011', '1', '1', 'upload_files/candidate_tracker/27340546958_Resume.pdf', NULL, '1', '2022-12-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-22 06:27:27', 99, '2022-12-23 12:59:35', 0, NULL, 1),
(11554, '', '0', '9003630312', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212220012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-22 06:57:17', 0, NULL, 0, NULL, 1),
(11555, 'Kowsalya S', '4', '9092846783', '9597111327', 'kowsi172001@gmail.com', '2001-07-18', 21, '4', '2', 'Radha S', 'Handloom weaving', 42000.00, 1, 16000.00, 15000.00, 'Erode', 'Erode', '2212220013', '', '2', 'upload_files/candidate_tracker/9274601901_kowsalya s.docx', NULL, '3', '2022-12-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-22 09:05:28', 1, '2022-12-22 09:11:44', 0, NULL, 1),
(11556, 'Sathish Rajendran', '5', '9003083465', '8610262649', 'Sathishrajendran181995@gmail.com', '1995-10-18', 27, '2', '1', 'rajendran', 'eb', 40.00, 1, 25.00, 25.00, 'ennore', 'ennore', '2212230001', '1', '2', 'upload_files/candidate_tracker/33392994775_Commercial (1) copy.pdf', NULL, '1', '2022-12-23', 0, '', '3', '59', '2023-01-06', 252500.00, '', '', '2023-01-13', '1', 'Selected for  Sarath Team in staff Role', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-23 08:36:43', 60, '2023-01-05 01:36:10', 0, NULL, 1),
(11557, 'Akash V', '23', '7094030554', '', 'akashdivi.444@gmail.com', '2001-02-19', 21, '2', '2', 'Viswanthan', 'Cable operator', 30000.00, 1, 0.00, 30000.00, 'kovilpatti', 'kovilpatti', '2212230002', '1', '1', 'upload_files/candidate_tracker/96560252856_Akash.v Resume.pdf', NULL, '2', '2022-12-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '6', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-23 11:08:21', 99, '2022-12-27 10:17:51', 0, NULL, 1),
(11558, 'Rubinath D', '23', '8523938818', '', 'rubinath.d@gmail.com', '2000-05-17', 22, '2', '2', 'Dhachanna moorthi k', 'Driver', 10000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2212230003', '1', '1', 'upload_files/candidate_tracker/12701382278_Rubinath D.pdf', NULL, '1', '2022-12-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics in JS,Need to open a lot not much comfort in TxxampC Need to train him from scratch if he comes back let us try\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-23 11:08:49', 99, '2022-12-27 02:50:59', 0, NULL, 1),
(11559, 'Sandiya', '31', '9361643085', '', 'sandiya.p@yahoo.com', '2002-05-09', 20, '2', '2', 'Prabhu', '-', 20000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2212230004', '1', '1', 'upload_files/candidate_tracker/52487234301_sandiya-1.pdf', NULL, '1', '2022-12-23', 0, '', '3', '59', '2023-01-02', 120000.00, '', '', '1970-01-01', '2', 'Selecetd for Node in internship for  5 months with 5K with 3yrs SA 10-12K', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-23 11:26:08', 99, '2022-12-23 12:25:28', 0, NULL, 1),
(11560, 'S.Lavanya', '31', '8056100362', '', 'lencylava16@gmail.com', '2002-01-16', 20, '2', '2', 'S.sumathi', 'Tailor', 8000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2212230005', '1', '1', 'upload_files/candidate_tracker/23375054404_S.Lavanya.pdf', NULL, '1', '2022-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills in JS not much active will not sustain and not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-23 11:32:23', 99, '2022-12-23 02:37:24', 0, NULL, 1),
(11561, 'Sheik Ismail', '23', '7010674988', '', 'sheikismail431@gmail.com', '2001-03-11', 21, '2', '2', 'Kalimulla', 'Tea Shop', 20000.00, 2, 0.00, 35000.00, 'Vellore', 'Chennai', '2212230006', '1', '1', 'upload_files/candidate_tracker/82555676144_Fullstack.pdf', NULL, '1', '2023-01-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-23 01:31:54', 99, '2023-01-02 09:48:47', 0, NULL, 1),
(11562, '', '0', '9025557872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212230007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-23 06:24:04', 0, NULL, 0, NULL, 1),
(11563, '', '0', '7904247687', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212230008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-23 06:33:24', 0, NULL, 0, NULL, 1),
(11564, 'bindu shree m', '5', '9108529746', '', 'bindushree289@gmail.com', '1991-05-04', 31, '3', '1', 'darryl maskell', 'user research', 3000000.00, 0, 1800000.00, 1800000.00, 'bangalore', 'Bangalore', '2212240001', '', '1', 'upload_files/candidate_tracker/16963591231_Bindu - Resume.pdf', NULL, '2', '2022-12-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '1', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-24 10:01:39', 99, '2022-12-26 11:14:33', 0, NULL, 1),
(11565, 'P.Sankar', '6', '9360382185', '', 'sankarponnusamy49@gmail.com', '2001-10-30', 21, '2', '2', 'Palaniammal', 'Fresher', 15000.00, 1, 0.00, 12000.00, 'Tiruchengode', 'Tiruchengode', '2212240002', '1', '1', 'upload_files/candidate_tracker/38498608399_P.Sankar (4).pdf', NULL, '3', '2022-12-26', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is not interested in sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-24 10:42:38', 85, '2022-12-26 12:06:50', 0, NULL, 1),
(11566, '', '0', '9514056972', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212240003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-24 10:50:41', 0, NULL, 0, NULL, 1),
(11567, '', '0', '9933711381', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212240004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-24 11:03:13', 0, NULL, 0, NULL, 1),
(11568, '', '0', '9092227858', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212240005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-24 11:04:17', 0, NULL, 0, NULL, 1),
(11569, 'nisha.g', '31', '8072420898', '9941415118', 'nishagopal1226@gmail', '2001-04-12', 21, '2', '2', 'gopal.g', 'daily wages', 13000.00, 1, 0.00, 15000.00, 'chennai', 'chennai   old washermenpet', '2212240006', '1', '1', 'upload_files/candidate_tracker/97348792009_Nisha.G  CV.pdf', NULL, '1', '2022-12-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-24 06:20:03', 99, '2022-12-26 10:18:30', 0, NULL, 1),
(11570, 'Kalaivani', '16', '7010218150', '', 'vanirk98@gmail.com', '1998-06-15', 24, '2', '2', 'Malarvizhi', 'Tailor', 180000.00, 0, 285000.00, 500000.00, 'Korattur', 'Korattur', '2212240007', '1', '2', 'upload_files/candidate_tracker/23699583914_KALAIVANI R resume 2022.pdf', NULL, '1', '2022-12-27', 45, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain have exp in MIS in  TCS current Pay is 2.8 LPA looking for change due to the need in salary hike Service notice 14 Feb 2023 is LWD will not sustain and not suitable in our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-24 06:30:33', 99, '2022-12-27 10:16:35', 0, NULL, 1),
(11571, 'Ajithkumar S', '31', '9962059203', '', 'ajithkumars1521@gmail.com', '2001-05-01', 21, '2', '2', 'Sugumar s', 'Mechanic', 10000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2212240008', '1', '1', 'upload_files/candidate_tracker/75721841502_AJITHKUMARSugumar_RESUME.pdf', NULL, '1', '2022-12-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Self learn in MERN can give a try for NodeJs Candidate need to come back with his confirmation on TxxampC if he comes let us try', '2', '1', '', '1', '1', '', '2', '2022-12-28', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-24 06:32:13', 99, '2022-12-26 10:17:36', 0, NULL, 1),
(11572, 'sivaprakash murugan', '31', '7708064488', '9486207953', 'sivaprakash2923@gmail.com', '1999-11-26', 23, '2', '2', 'nagaeshwari', 'dairy framing', 45000.00, 1, 0.00, 25000.00, 'Aruppukopttai', 'Aruppukopttai', '2212240009', '1', '1', 'upload_files/candidate_tracker/32027444873_SIVAPRAKASH', NULL, '2', '2022-12-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have basics skills in JS know basics in PHP Python too have 8 months internship Exp Min exp is 10K in the beginning can give a try for our roles need to schedule him for the virtual based on Gokulxquots Availability', '2', '1', '', '1', '3', '', '2', '2023-01-02', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-24 06:49:57', 99, '2022-12-26 10:18:05', 0, NULL, 1),
(11573, 'Karthikeyan R', '13', '9940682910', '7299220420', 'karthikeyan29101999@gmail.com', '1999-10-29', 24, '3', '2', 'Chitra R', 'Housewife', 25000.00, 1, 0.00, 3.50, 'Chennai', 'Avadi,chennai', '2212240010', '', '1', 'upload_files/candidate_tracker/17607217449_new resume 2023.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '2', '2', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude round', '', '', '', NULL, NULL, NULL, 1, '2022-12-24 09:27:30', 110, '2024-02-09 06:27:21', 0, NULL, 1),
(11574, '', '0', '8884794273', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-25 01:14:39', 0, NULL, 0, NULL, 1),
(11575, 'Prem Raj G', '4', '8110093833', '7092434614', 'premji1612@gmail.com', '1992-12-16', 30, '2', '2', 'Govindaraj.P', 'Working', 35000.00, 2, 13000.00, 17000.00, 'Gummidipoondi', 'Gummidipoondi', '2212250002', '1', '2', 'upload_files/candidate_tracker/4719168394_Prem 2022 exp (1).pdf', NULL, '1', '2022-12-28', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Very Average Too long distance just a month back joined a company and looking for Salary Growthif he relocate and open for the same CTC we can try', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-25 09:03:21', 99, '2022-12-28 12:38:17', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11576, 'Vasudeva.p', '4', '9553557967', '8317584684', 'vdeva3523@gmail.com', '2000-06-13', 22, '4', '2', 'BPO', 'B.com', 50000.00, 0, 0.00, 15000.00, 'Bangalore', 'Chittoor Andhra Pradesh', '2212260001', '', '1', 'upload_files/candidate_tracker/50759456346_VASU doc.docx', NULL, '3', '2023-06-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-26 12:38:58', 1, '2023-06-12 05:10:39', 0, NULL, 1),
(11577, 'Monisha', '4', '7550135180', '', 'monisuresh2698@gmail.com', '1998-06-02', 24, '3', '2', 'Suresh', 'Chennai', 75000.00, 1, 18000.00, 19000.00, 'Chennai', 'Chennai', '2212260002', '', '2', 'upload_files/candidate_tracker/13234454520_Monisha.pdf', NULL, '1', '2022-12-26', 15, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok Bit Attitude No relevant Exp in Sales 5050 Can give a try kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-26 01:14:00', 60, '2022-12-26 06:40:30', 0, NULL, 1),
(11578, '', '0', '9597812266', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212260003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-26 02:34:15', 0, NULL, 0, NULL, 1),
(11579, '', '0', '9952988353', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212260004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-26 06:00:02', 0, NULL, 0, NULL, 1),
(11580, 'Prashanth', '27', '9791025475', '', 'rgprashanth97@gmail.com', '1997-06-09', 25, '2', '2', 'Ravi', 'Tailor', 120000.00, 1, 0.00, 300000.00, 'No.2 murugesan street', 'Jafferkhanpet', '2212260005', '1', '1', 'upload_files/candidate_tracker/78284761856_1671704305393_Prasanth MCA.pdf', NULL, '1', '2022-12-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basics in Javascript holding an offer for 12.5K but not yet released looking for some more and open for learning if he comes back later will check his profile for next level', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-26 06:28:28', 1, '2022-12-26 06:36:46', 0, NULL, 1),
(11581, 'Bhuvanesh S', '31', '7539916781', '8925034230', 'bhuvanesh0600@gmail.com', '2000-06-18', 22, '2', '2', 'Senthil Kumar', 'Former', 20000.00, 1, 0.00, 20000.00, '4/92-b, kovilpathu, vedharanyam, nagapattinam', 'Aditi Mens Hostel, Thoraipakkam, chennai', '2212260006', '1', '1', 'upload_files/candidate_tracker/80292216133_BHUVANESH RESUME-1.pdf', NULL, '1', '2023-01-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic knowledge in  the skills can be trained need to give his confirmation on the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2023-01-05', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-26 06:30:28', 99, '2023-01-03 09:18:45', 0, NULL, 1),
(11582, '', '0', '9600288463', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212260007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-26 06:32:04', 0, NULL, 0, NULL, 1),
(11583, '', '0', '9629218853', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212260008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-26 06:33:33', 0, NULL, 0, NULL, 1),
(11584, 'jennifer joseph', '2', '9551900802', '9080773259', 'Jenniferjoseph1198@gmail.com', '1998-12-11', 24, '2', '2', 'joseph', 'driver', 20000.00, 2, 0.00, 650000.00, 'chennai', 'chennai', '2212260009', '1', '1', 'upload_files/candidate_tracker/86663666846_Jennifer_V4.pdf', NULL, '1', '2022-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic knowledge in React their expectations are very high they have commitment of 3L payment to the institute post joining the job will not sustain and not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-26 06:39:59', 99, '2022-12-30 09:38:13', 0, NULL, 1),
(11585, 'Varshapandian', '8', '8056127096', '9952937514', 'varshapandian12@gmail.com', '1999-02-12', 23, '2', '2', 'Pandian', 'Fisherman', 18000.00, 2, 260000.00, 400000.00, 'Chennai', 'Chennai', '2212260010', '1', '2', 'upload_files/candidate_tracker/39640679185_Varshapandian2022 -Resume 1.pdf', NULL, '1', '2022-12-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '4', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-26 08:32:46', 99, '2022-12-29 09:46:06', 0, NULL, 1),
(11586, 'han', '5', '7358453393', '7904987895', 'dhanushyajohnson6@gmail.com', '1998-05-02', 24, '2', '2', 'umathi', 'eacher', 14000.00, 0, 700000.00, 800000.00, 'hennai', 'Chennai', '2212260011', '1', '2', 'upload_files/candidate_tracker/43270136386_Dhanushya J.docx', NULL, '1', '2022-12-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-12-26 09:05:18', 1, '2022-12-26 09:09:58', 0, NULL, 1),
(11587, 'Adhithyan.S', '6', '8072875726', '8681907255', 'get.aadhisk@gmail.com', '1999-08-02', 23, '1', '2', 'C.Sekar', 'Farming', 16000.00, 1, 0.00, 15000.00, 'Piranmalai- sivagangai', 'Mogapair', '2212270001', '', '1', 'upload_files/candidate_tracker/57181619647_Aadhi Resume.pdf', NULL, '1', '2022-12-27', 0, '5174', '3', '59', '2023-01-03', 216000.00, '', NULL, '2025-10-30', '1', 'Selected for Thiyagarajan Team in Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-27 10:34:02', 60, '2023-01-02 07:18:00', 0, NULL, 1),
(11588, '', '0', '9952446743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212270002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-27 11:20:34', 0, NULL, 0, NULL, 1),
(11589, 'N.Srinidhi', '6', '9566280003', '', 'srinidhinathan2001@gmail.com', '2007-12-27', 0, '1', '2', 'S nathan', 'Catring', 25000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2212270003', '', '1', 'upload_files/candidate_tracker/92939114872_Srinidhi resume-1.docx', NULL, '2', '2022-12-27', 0, 'P1066', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Average Communication not  open for sales calls checked her for Operations written skills not upto the mark she has some interest in Tailoring and doing a part time work too will not sustain and not suitable in our roles', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-27 11:22:20', 1, '2022-12-27 11:28:18', 0, NULL, 1),
(11590, 'Naveenkumar', '5', '8695958643', '', 'naveen4699@gmail.com', '1993-02-10', 29, '2', '1', 'Vijayakumar', 'Manager in Consst', 50000.00, 1, 0.00, 25000.00, 'Erode', 'Erode', '2212270004', '1', '1', 'upload_files/candidate_tracker/67577522447_DOC-20221227-WA0016..pdf', NULL, '1', '2022-12-27', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expext salary high 25k, so rejecte with ramesh sir', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-27 11:45:01', 99, '2022-12-27 12:07:22', 0, NULL, 1),
(11591, '', '0', '7395930357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212270005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-27 02:36:24', 0, NULL, 0, NULL, 1),
(11592, 'naga ashwin', '31', '8838439985', '', 'nagaashwin1996@gmail.com', '2001-06-09', 21, '2', '2', 'nagarajan', 'b.com', 20000.00, 1, 0.00, 200000.00, 'chennai', 'chennai porur', '2212270006', '1', '1', 'upload_files/candidate_tracker/26040671188_Naga Ashwin RESUME.pdf', NULL, '1', '2022-12-28', 0, '', '3', '59', '2023-01-09', 120000.00, '', '3', '2023-01-10', '1', '5M Intern 5 K then overall 3 yr SA 10   12K', '2', '1', '', '1', '1', '', '2', '2023-01-03', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-27 06:28:36', 60, '2023-01-11 11:02:26', 0, NULL, 1),
(11593, 'dineshkumar', '6', '6382936748', '9790660072', 'dineshkumar860867@gmail.com', '2001-04-20', 21, '2', '2', 'ramesh', 'Business', 25000.00, 1, 0.00, 15000.00, 'erode', 'erode', '2212270007', '1', '1', 'upload_files/candidate_tracker/35778432710_Dinesh.pdf', NULL, '1', '2023-01-07', 0, '', '3', '59', '2023-01-12', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Suthagar Team in Staff Role', '5', '2', '1', '4', '7', '1', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-27 06:51:55', 60, '2023-01-16 01:09:38', 0, NULL, 1),
(11594, '', '0', '7348942042', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212270008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-27 10:03:46', 0, NULL, 0, NULL, 1),
(11595, '', '0', '9972790269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212270009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-27 10:10:00', 0, NULL, 0, NULL, 1),
(11596, 'Mano P', '31', '8220720985', '', 'manopandian2606@gmail.com', '1997-06-26', 25, '2', '2', 'Paul pandian S', 'Teacher', 58000.00, 1, 0.00, 300000.00, 'Udumalpet', 'Chennai', '2212280001', '1', '1', 'upload_files/candidate_tracker/87844497875_[Mano] - [Python Developer] - [Resume].pdf', NULL, '1', '2022-12-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-28 09:22:32', 99, '2022-12-29 09:46:31', 0, NULL, 1),
(11597, 'S.DHEEPAK', '31', '9500369022', '8428515013', 'dheepsgdc@gmail.com', '1998-01-22', 24, '2', '2', 'V.SHANMUGAM', 'Rtd Lab asst', 25000.00, 1, 0.00, 250000.00, 'Villupuram', 'Villupuram', '2212280002', '1', '1', 'upload_files/candidate_tracker/88905225228_DHEEPAK RESUME 1..pdf', NULL, '1', '2022-12-28', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'already attended a month back 5050 gave him a joining but he didnxquott not he is looking again and seems doubtful Lets hold and try need to check with Gokul', '2', '1', '', '1', '1', '', '2', '2023-01-03', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-28 10:17:01', 99, '2022-12-28 10:21:06', 0, NULL, 1),
(11598, 'Sruthi.M', '4', '9655808020', '8525820195', 'sruthi259303@gmail.com', '2001-12-13', 21, '1', '2', 'Manivannan', 'Garden Management In Abroad', 30000.00, 1, 0.00, 15000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2212280003', '', '1', 'upload_files/candidate_tracker/44406063665_sruthi .M resume.pdf', NULL, '1', '2022-12-28', 0, 'CAFSUSR00481', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Area Manager Round Reject', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-28 11:19:58', 1, '2022-12-28 11:37:54', 0, NULL, 1),
(11599, '', '0', '9779289522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212280004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-28 11:38:08', 0, NULL, 0, NULL, 1),
(11600, 'Gokulapriyan Dhandabani', '5', '9976945101', '9003013959', 'gokulapriyand97@gmail.com', '1997-12-16', 25, '2', '2', 'dhandapani d', 'farmer', 300000.00, 1, 250000.00, 350000.00, 'dharmapuri', 'chennai', '2212280005', '1', '2', 'upload_files/candidate_tracker/11138224743_GOKULAPRIYAN._D_Resume_3.pdf', NULL, '1', '2023-01-05', 0, '', '3', '59', '2023-01-18', 285696.00, '', '3', '2023-07-26', '1', 'Selected for Manikandan team in Staff Role', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-28 03:55:54', 60, '2023-01-07 03:32:58', 0, NULL, 1),
(11601, '', '0', '9629870680', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212280006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-28 06:50:40', 0, NULL, 0, NULL, 1),
(11602, '', '0', '7358612117', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212280007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-28 07:00:06', 0, NULL, 0, NULL, 1),
(11603, '', '0', '9778598515', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212280008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-28 07:01:06', 0, NULL, 0, NULL, 1),
(11604, 'Aravindan', '31', '9841663379', '9840380580', 'aravind25mani@gmail.com', '1997-08-25', 25, '2', '2', 'S. Subbulakshmi', 'Teacher', 26000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2212280009', '1', '1', 'upload_files/candidate_tracker/78726450379_Aravindan Resume (1).pdf', NULL, '1', '2023-01-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for IT Domain and his last drawn MCTC was 38K He is not ok with the pay like internship and Employment Salary also he will not  sustain and will not join', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-28 07:06:19', 99, '2023-01-02 11:16:37', 0, NULL, 1),
(11605, 'Hamsavathi.k', '4', '8939211701', '', 'khamsavathi14@gmail.com', '1998-03-14', 24, '2', '2', 'Parent', 'Retired', 10000.00, 0, 0.00, 15000.00, 'Chetpet', 'Chetpet', '2212280010', '1', '1', 'upload_files/candidate_tracker/52718175213_RESUME-1.pdf', NULL, '1', '2022-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Career Gap Having Medical Issue Spinal Problem preparing for bank exams will not sustain in a long for Sales Even she got some offer in telecalling and not joined   due to health scenario', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-28 07:07:19', 99, '2022-12-29 09:47:18', 0, NULL, 1),
(11606, 'Jayanth', '31', '9884140064', '', 'jayanthjackson1312@gmail.com', '2000-10-12', 22, '2', '2', 'Jesuadimai', 'Security', 20000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2212280011', '1', '1', 'upload_files/candidate_tracker/95959903594_Jayanth (1).pdf', NULL, '1', '2023-01-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher have 6 months internship Exp Having basic knowledge can give a try for our React open for TxxampC Based on Gokulxquots availability need to schedule him for the interview', '2', '1', '', '1', '1', '', '2', '2023-01-09', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-28 07:36:22', 99, '2023-01-06 12:31:51', 0, NULL, 1),
(11607, 'Surendhar V', '16', '9176029454', '', 'surendharkrs1606@gmail.com', '2001-06-16', 21, '2', '2', 'k.velayutham', 'electrition', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2212280012', '1', '1', 'upload_files/candidate_tracker/90013026903_surendhar resume.pdf', NULL, '1', '2023-02-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preparing for Polica exams and time being looking for a job will not sustain and not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-28 09:01:53', 85, '2023-02-01 02:52:35', 0, NULL, 1),
(11608, 'Arun Kumar', '31', '6374323635', '', 'arunanbu10012001@gmail.com', '2001-01-10', 21, '2', '2', 'Anbalagan', 'Former', 150000.00, 1, 0.00, 2.50, 'Kottaivilayur, Tenkasi', 'Pallavaram, Chennai', '2212290001', '1', '1', 'upload_files/candidate_tracker/68101259900_arunn kumar.pdf', NULL, '1', '2022-12-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Having basis knowledge in JS Can be trained candidate need time to give his confirmation on the TxxampC if he comes back let us try ', '2', '2', '', '1', '1', '', '2', '2023-01-03', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 10:33:18', 99, '2022-12-29 10:41:38', 0, NULL, 1),
(11609, 'vignesh b', '2', '9080773259', '7904515572', 'vickybharath410@gmail.com', '1998-07-12', 24, '2', '2', 'baskar', 'daily wages', 150000.00, 1, 270000.00, 600000.00, 'chennai', 'chennai', '2212290002', '1', '2', 'upload_files/candidate_tracker/50604809161_Vignesh', NULL, '1', '2022-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Basic Knowledge In React Their Expectations Are Very High They Have Commitment Of 3L Payment To The Institute Post Joining The Job Will Not Sustain And Not Suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 12:22:19', 99, '2022-12-30 09:38:44', 0, NULL, 1),
(11610, 'Dinesh s', '8', '9791171702', '8939204816', 'sivad0702@gmail.com', '1999-07-22', 23, '1', '2', 'Saraswathi', 'Home Maker', 2.50, 1, 0.00, 20000.00, 'Thiruvottiyur', '23/31a,bkn colony,kaladipet,tvt', '2212290003', '', '1', 'upload_files/candidate_tracker/77809762155_DOC-20220407-WA0004.pdf', NULL, '1', '2022-12-29', 0, 'P1279', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication only back end Exp will not sustain and not suitable', '7', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-29 12:37:52', 1, '2022-12-29 12:50:58', 0, NULL, 1),
(11611, 'Arun Vignesh M', '14', '9884723892', '', 'arunvignesh.m18@gmail.com', '2001-01-18', 21, '3', '2', 'Marimuthu P', 'Business', 15000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2212290004', '', '1', 'upload_files/candidate_tracker/53251251328_Arun VigneshM_Resume.pdf', NULL, '1', '2022-12-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for internship  cum Employment  or Project in Java Python They are in final semester yet to complete the graduation Need to  confirm the profile', '2', '1', '0', '1', '1', '0', '2', '2023-01-03', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-29 12:48:33', 1, '2022-12-29 12:53:04', 0, NULL, 1),
(11612, 'Roja', '14', '9092353868', '', 'rojakubendiran890@gmail.com', '2001-05-06', 21, '3', '2', 'Kubendiran', 'Labour', 15000.00, 1, 0.00, 2.50, 'Guindy', 'Guindy', '2212290005', '', '1', 'upload_files/candidate_tracker/26363870326_Resume_ROJA - (nov).pdf', NULL, '1', '2022-12-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Internship  Cum Employment  Or Project In Java Python They Are In Final Semester Yet To Complete The Graduation Need To  Confirm The Profile', '2', '1', '0', '1', '1', '0', '2', '2023-01-03', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-29 12:48:56', 1, '2022-12-29 12:52:58', 0, NULL, 1),
(11613, 'Mohaideen Abdul Khadar M', '13', '9941010167', '', 'mohaideenabdulkhadar006@gmail.com', '2000-10-27', 22, '2', '2', 'Noorjahan M', 'House Wife', 12000.00, 1, 5000.00, 12000.00, 'Chennai', 'Chennai', '2212290006', '1', '2', 'upload_files/candidate_tracker/54079479573_Resume.pdf', NULL, '1', '2023-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT, Family need is there  but not much comfortable in TxxampC  sustainability Doubts on this Profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 03:20:50', 99, '2023-01-04 09:35:34', 0, NULL, 1),
(11614, 'Kamaleshwaran M', '2', '9361869836', '', 'Kamaleshwaran0304@gmail.com', '2001-04-03', 21, '3', '2', 'Moorthy', 'Private occupation', 30000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2212290007', '', '1', 'upload_files/candidate_tracker/44793428650_kamalesh.pdf', NULL, '1', '2022-12-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Internship  Cum Employment  Or Project In MERN They Are In Final Semester Yet To Complete The Graduation Need To  Confirm The Profile', '2', '1', '0', '1', '1', '0', '2', '2023-01-03', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-29 03:43:40', 1, '2022-12-29 03:55:49', 0, NULL, 1),
(11615, 'Deviyani', '2', '6379004947', '', 'deviyani492@gmail.com', '2000-09-04', 22, '3', '2', 'Parthiban', 'Ex-army', 30000.00, 1, 0.00, 30000.00, 'Tirupattur', 'Tirupattur', '2212290008', '', '1', 'upload_files/candidate_tracker/94218994480_Devi-2.pdf', NULL, '1', '2022-12-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Internship  Cum Employment  Or Project In Node They Are In Final Semester Yet To Complete The Graduation Need To  Confirm The Profile', '2', '1', '0', '1', '1', '0', '2', '2023-01-03', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-29 03:44:14', 1, '2022-12-29 03:48:36', 0, NULL, 1),
(11616, 'Sneha', '16', '8056052462', '9791217095', 'snehajofficial@gmail.com', '2000-01-17', 22, '2', '1', 'Anthony Suresh', 'Working in IT', 32000.00, 1, 0.00, 15.00, 'Ramapuram', 'Ramapuram', '2212290009', '1', '1', 'upload_files/candidate_tracker/70212627584_CV_SNEHA.pdf', NULL, '2', '2023-01-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-29 04:38:54', 85, '2023-01-03 07:16:54', 0, NULL, 1),
(11617, 'Suriya Prakash', '31', '9943085749', '7094591358', 'suriyathennarasu@gmail.com', '2000-12-21', 22, '2', '2', 'Thennarasu', 'Farmer', 25000.00, 2, 0.00, 250000.00, 'Madurai', 'Chennai', '2212290010', '1', '1', 'upload_files/candidate_tracker/42302936893_Suriya prakash thennarasu Resume.pdf', NULL, '1', '2022-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for TxxampC Sustainabilty Doubts on the profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 05:06:52', 99, '2022-12-30 09:39:10', 0, NULL, 1),
(11618, 'Selvakumar N', '3', '6369504498', '', 'kumar20032001@gmail.com', '2001-03-20', 21, '2', '2', 'C.Nagarajan', 'Farmer', 10000.00, 2, 0.00, 25000.00, 'Peraiyur, Madurai', 'Tambaram, Chennai', '2212290011', '1', '1', 'upload_files/candidate_tracker/95593894071_Selvakumar N.pdf', NULL, '1', '2022-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher just started learning python and the distance is too long need time to confirm on the TxxampC if he comes back let us check', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 06:27:44', 99, '2022-12-30 11:14:37', 0, NULL, 1),
(11619, 'EZHILARASAN S', '23', '8124550549', '9884883618', 'ezhilarasans1305@gmail.com', '2002-05-13', 20, '2', '1', 'r SUKUMAR', 'MRF (worker)', 40000.00, 1, 0.00, 3.30, 'Chennai', 'Chennai', '2212290012', '1', '1', 'upload_files/candidate_tracker/83706731954_Ezhilarasan.pdf', NULL, '1', '2022-12-30', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Having basic skills knowledge need to train a lot 36kms up and down need time to confirm with his parents if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2023-01-03', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 09:42:02', 99, '2022-12-30 10:46:05', 0, NULL, 1),
(11620, 'Habeeb Rilwan', '2', '8056204972', '', 'rhrrilwan619@gmail.com', '2000-05-29', 22, '2', '2', 'Riyasudeen', 'Business', 30000.00, 2, 180000.00, 300000.00, 'Chennai', 'Chennai', '2212290013', '1', '2', 'upload_files/candidate_tracker/3242329898_Habeeb_resume.pdf', NULL, '3', '2022-12-31', 14, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has yr of exp in mern. not much good xxamp sal expt too high... Sustainability doubts..', '2', '1', '', '2', '2', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 10:29:04', 99, '2022-12-31 09:19:42', 0, NULL, 1),
(11621, '', '0', '7395981853', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212300001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-30 08:57:38', 0, NULL, 0, NULL, 1),
(11622, '', '0', '9113433701', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212300002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-30 10:54:09', 0, NULL, 0, NULL, 1),
(11623, 'Chetan jadar', '5', '9113074287', '6360197808', 'Cajadar@gmail.com', '1998-11-23', 24, '2', '2', 'Ashok jadar', 'Former', 80000.00, 1, 24000.00, 30000.00, 'Kaliwal tq - Savanur, Dist- haveri', 'Hosa road, electronic city banglore', '2212300003', '1', '2', 'upload_files/candidate_tracker/44538057915_Resume.CHETAN_JADAR 2022.docx', NULL, '1', '2022-12-31', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-30 11:02:41', 99, '2022-12-31 09:19:59', 0, NULL, 1),
(11624, '', '0', '7842774281', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212300004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-30 12:04:47', 0, NULL, 0, NULL, 1),
(11625, '', '0', '9059270626', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212300005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-30 12:28:59', 0, NULL, 0, NULL, 1),
(11626, 'Mohammed Jafar', '4', '6379087202', '8939371441', 'mjaf89394@gmail.com', '1999-01-23', 23, '2', '2', 'Yes', 'Sales associate manager', 200000.00, 2, 17000.00, 21000.00, '2/195 adam Nagar kovur', 'Porur', '2212300006', '1', '2', 'upload_files/candidate_tracker/59102705174_CV_2022112418301424.pdf', NULL, '1', '2022-12-31', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Has exp in direct sales .. no calling exp .. no understanding skills.  and 1hr travel to our place', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-30 12:31:01', 1, '2022-12-31 10:30:50', 0, NULL, 1),
(11627, 'Reshma', '4', '7868920805', '9361151705', 'reshmamanimaran31@gmail.com', '1998-03-31', 24, '2', '2', 'Manimaran', 'Farmer', 200000.00, 1, 500000.00, 600000.00, 'Chennai', 'Chennai', '2212300007', '1', '2', 'upload_files/candidate_tracker/78531603462_RESUME - RESHMA.pdf', NULL, '3', '2023-01-05', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very high Salary Package with 50K and not open to come down', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-30 02:09:25', 99, '2023-01-05 10:26:05', 0, NULL, 1),
(11628, '', '0', '8546858063', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212300008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-30 02:43:52', 0, NULL, 0, NULL, 1),
(11629, 'Chintala Saikiran', '4', '6301541748', '', 'chintalasaikiran978@gmail.com', '2001-12-28', 21, '2', '2', 'Ramesh', 'Self employed', 25000.00, 1, 20000.00, 30000.00, 'Khammam', 'Chennai', '2212300009', '1', '2', 'upload_files/candidate_tracker/7784902998_SAIKIRAN CV.doc', NULL, '2', '2023-01-02', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-12-30 07:02:32', 1, '2022-12-30 07:06:19', 0, NULL, 1),
(11630, '', '0', '6369740417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212300010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-30 10:41:53', 0, NULL, 0, NULL, 1),
(11631, 'Shaik Asif Basha', '4', '9490400986', '', 'shaikasifbasha04@gmail.com', '1995-06-07', 27, '3', '1', 'S Jabeen', 'Teacher', 18000.00, 0, 18000.00, 25000.00, 'Banaganapalle', 'Banaganapalle', '2212310001', '', '2', 'upload_files/candidate_tracker/40506273776_resume986.docx', NULL, '2', '2023-01-02', 4, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-31 07:07:24', 1, '2022-12-31 07:11:19', 0, NULL, 1),
(11632, 'Vignesh B', '5', '6383197563', '9962888637', 'vickybruce3518@gmail.com', '1998-05-04', 24, '2', '2', 'Rameena', 'House keeper', 12.00, 1, 0.00, 22000.00, 'St.thomas mount', 'St Thomas mount', '2212310002', '1', '2', 'upload_files/candidate_tracker/69865677963_Vicky6383.pdf', NULL, '1', '2023-01-02', 0, '', '3', '59', '2023-01-05', 252100.00, '', NULL, '2025-01-27', '1', 'Selected for Sarath Team in Staff Role', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-31 10:41:14', 60, '2023-01-04 10:22:09', 0, NULL, 1),
(11633, 'yalini', '16', '6381939277', '', '1412yalini@gmail.com', '2001-12-14', 21, '2', '2', 'shanmugam', 'cable operator', 30000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2212310003', '1', '1', 'upload_files/candidate_tracker/45587756901_S.YALINI RESUME (1).pdf', NULL, '1', '2022-12-31', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'long distance 1hr travel .... no communication not suit for MIS ', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-31 12:01:56', 1, '2022-12-31 12:21:29', 0, NULL, 1),
(11634, 'Sankavi S V', '22', '8778092101', '', 'sankavisupa@gmail.com', '1996-01-31', 26, '2', '2', 'Sampath P', 'Co-operative secretary', 50000.00, 1, 0.00, 12000.00, 'villupuram', 'villupuram', '2212310004', '1', '1', 'upload_files/candidate_tracker/25015663509_CV Resume Photo (24)-3 (1)-1 (1).pdf', NULL, '2', '2023-01-02', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-31 03:28:28', 99, '2023-01-02 10:52:12', 0, NULL, 1),
(11635, 'Dhivan Rajab S', '3', '8072426881', '6374068001', 'dhivanrajab0910@gmail.com', '2000-10-09', 22, '2', '2', 'Shahull hameed', 'Farmer', 10000.00, 4, 0.00, 20000.00, 'Tenkasi', 'Chennai', '2212310005', '1', '1', 'upload_files/candidate_tracker/753404028_FullStackDeveloperResume.pdf', NULL, '1', '2023-01-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much strong with basics too long distance and ready to relocate but  his exp is high and will not sustain in our roles.long run doubts ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-31 04:50:46', 99, '2023-01-02 09:43:26', 0, NULL, 1),
(11636, 'Anbarasan K', '13', '8838124480', '', 'anbarasank5050@gmail.com', '2000-07-15', 22, '2', '2', 'Kanagaraj', 'Agriculture', 6000.00, 1, 0.00, 30000.00, 'Dharmapuri', 'Kilpauk, chennai', '2212310006', '1', '1', 'upload_files/candidate_tracker/67333656446_Anbarasan_resume.pdf', NULL, '1', '2023-01-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher MSc graduate and his min Exp is 25K and not ready to come down will not sustain in our roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-31 05:47:58', 99, '2023-01-02 09:44:59', 0, NULL, 1),
(11637, 'Thamizhselvan pandiyan', '5', '9361715300', '9205559491', 'thamizh400@gmail.com', '1999-06-24', 23, '2', '2', 'Pandiyan s', 'Sales executive', 30000.00, 1, 24000.00, 28000.00, 'Sholingur', 'Adhambakkam', '2301010001', '1', '2', 'upload_files/candidate_tracker/6477683106_Thamizh resume.docx', NULL, '1', '2023-01-02', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOt fit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-01 04:00:26', 60, '2023-01-02 07:28:00', 0, NULL, 1),
(11638, 'Raman', '6', '7401422957', '', 'ramanraman2037@gmail.com', '1999-08-02', 23, '2', '2', 'Parent', 'Two wheeler mechanic', 10000.00, 2, 10000.00, 18000.00, 'No.32, CHETTY THOTTAM, SAIDAPET, CHENNA-600015', 'No.32, CHETTY THOTTAM, SAIDAPET CHENNAI-600015', '2301010002', '50', '2', 'upload_files/candidate_tracker/21023030805_pdf&rendition=1-2.pdf', NULL, '1', '2025-02-10', 30, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not worth of his asking salary', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2023-01-01 08:11:24', 153, '2025-02-10 12:27:31', 0, NULL, 1),
(11639, 'Hariharan N', '14', '9003257591', '', 'harih47@gmail.com', '1997-12-17', 25, '2', '2', 'P Narayanan', 'Buisness', 20000.00, 1, 0.00, 300000.00, '1 St Cross Street, Anadha Nagar, Santhosapuram', '1 St Cross Street, Anadha Nagar, Santhosapuram,', '2301020001', '1', '1', 'upload_files/candidate_tracker/37054754792_Hari_Haran_Resume_01-11-2022-14-46-39.pdf', NULL, '1', '2023-01-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for MIS Fresher Too long Distance Attitude issues  salary exp is min 3.5 LPA not suitable ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-02 10:21:11', 99, '2023-01-02 11:12:58', 0, NULL, 1),
(11640, '', '0', '6382634657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301020002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-02 10:28:08', 0, NULL, 0, NULL, 1),
(11641, '', '0', '8015923449', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301020003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-02 12:29:47', 0, NULL, 0, NULL, 1),
(11642, 'F.Abdul Hameed', '23', '9566120634', '', 'abdulhameedqudsi98@gmail.com', '1998-12-25', 24, '2', '2', 'Kamar nisha', 'Admin executive', 18000.00, 2, 0.00, 200000.00, 'Chrompet chennai', 'chrompet chennai', '2301020004', '1', '1', 'upload_files/candidate_tracker/26610057647_ResumeDec 2022.pdf', NULL, '1', '2023-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for IT Long Career Gap had his own business for 1.5 yrs  not much strong with the basics Salary Exp is very high not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-02 12:32:48', 99, '2023-01-04 09:34:31', 0, NULL, 1),
(11643, 'Selciya M', '4', '9600632787', '', 'selciyaselci143@gmail.com', '2000-03-14', 22, '2', '2', 'Maharaja', 'Driver', 1.00, 2, 2.00, 3.00, 'Rameswaram', 'Coimbatore', '2301020005', '1', '2', 'upload_files/candidate_tracker/85220137510_Selciyadec1.pdf', NULL, '1', '2023-01-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-02 12:55:29', 99, '2023-01-04 09:35:12', 0, NULL, 1),
(11644, 'Sheik baridh', '23', '9092883517', '', 'sheikbaridh30@gmail.com', '2000-02-20', 22, '3', '2', 'Abbas Ali', 'Farmar', 10000.00, 1, 0.00, 20000.00, 'Theni', 'Theni', '2301020006', '', '1', 'upload_files/candidate_tracker/65875723432_Sheikbaridhà.pdf', NULL, '1', '2023-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-02 01:20:51', 1, '2023-01-02 01:26:43', 0, NULL, 1),
(11645, 'P . Kanimozhi', '14', '8220611397', '', 'kanimozhipriya.p771999@gmail.com', '1999-07-07', 23, '3', '2', 'Palanivel', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Vadalur', 'Tnagar Chennai', '2301020007', '', '1', 'upload_files/candidate_tracker/5945478781_Kani (1)-1.pdf', NULL, '1', '2023-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-02 02:11:36', 1, '2023-01-02 02:18:49', 0, NULL, 1),
(11646, 'lingam b', '3', '9360647922', '', 'shivalingam261201@gmail.com', '2001-12-26', 21, '2', '2', 'basker', 'van driver', 40000.00, 0, 0.00, 25000.00, 'chennai', 'chennai', '2301020008', '1', '1', 'upload_files/candidate_tracker/88007609711_permanent resume (1).pdf', NULL, '1', '2023-01-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much strong with Basics Sustainability doubts in this profile not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-02 03:05:55', 85, '2023-11-11 10:25:06', 0, NULL, 1),
(11647, 'Fathima jensila.D', '16', '6379369039', '7448938225', 'fathimajensila.mumtaj@gmail.com', '2000-08-16', 22, '2', '2', 'Nil', 'Nil', 30000.00, 0, 0.00, 13000.00, 'Chennai redhills', 'Chennai redhills', '2301020009', '1', '1', 'upload_files/candidate_tracker/45074047749_unnati jensila resume.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas in Skills too long Distance not suitable for our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-02 06:00:26', 85, '2023-01-03 09:39:44', 0, NULL, 1),
(11648, 'Baskar', '31', '9003610890', '8220799718', 'Baskarvsni74@gmail.com', '2000-04-19', 22, '2', '2', 'Vasudevan', 'Hindhu', 2.00, 0, 0.00, 20000.00, 'Kallakurichi', 'Velachery', '2301020010', '1', '1', 'upload_files/candidate_tracker/85357568959_Baskar.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas in the skills will not sustain and handle our work not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-02 06:23:42', 85, '2023-01-03 11:04:29', 0, NULL, 1),
(11649, '', '0', '6379940664', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301020011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-02 07:37:57', 0, NULL, 0, NULL, 1),
(11650, 'Kumaravadivel K', '16', '8939709194', '9940208037', 'kumaravadivel1303@gmail.com', '1999-03-13', 0, '2', '2', 'P. Kumaresan', 'Business', 20000.00, 2, 17000.00, 20000.00, 'Chennai', 'Chennai', '2301020012', '1', '2', 'upload_files/candidate_tracker/69897752294_Kumaravadivel resume as on 10-11-2022.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication need to open a lot no basic ideas in MIS and not suitable for other openings too ', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-02 11:05:49', 99, '2023-01-03 09:19:37', 0, NULL, 1),
(11651, 'Manikandan K', '32', '9176468729', '', 'manilak20@gmail.com', '2000-05-10', 22, '2', '2', 'Krishnan A', 'Farmer & catering', 20000.00, 2, 0.00, 17000.00, '16/145 B, Nethaji street, Nedungal, Chengalpatt DT', 'No: 10 , Gurusamy nagar, 5th Street, Pulianthope', '2301030001', '1', '2', 'upload_files/candidate_tracker/64693984775_Manikandan 1ENG.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not open for telesales too appeared for MF but no basic ideas will not sustain and not suitable', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '4', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-03 09:41:41', 99, '2023-01-03 10:52:56', 0, NULL, 1),
(11652, 'MAFFAZ ALI', '14', '9597146439', '6382741687', 'alimaffaz55@gmail.com', '2000-09-16', 22, '2', '2', 'M.jafar Ali', 'Business Man', 15000.00, 3, 0.00, 2.00, 'Lalpet, Cuddalore', 'Pallavaram,Chennai', '2301030002', '1', '1', 'upload_files/candidate_tracker/635705681_MAFFAZ ALI.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much strong with the basics in python Came along with the Friends sustainability doubts on the profile Not much comfort with TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-01-03 11:56:52', 60, '2023-01-03 02:40:34', 0, NULL, 1),
(11653, 'Mohamed Niyas', '14', '7825058540', '8610140512', 'niyasmohamed66251@gmail.com', '2001-06-18', 21, '2', '2', 'Mohed iliyas', 'Former', 15000.00, 1, 0.00, 2.00, 'Lalpet', 'Pallavaram', '2301030003', '1', '1', 'upload_files/candidate_tracker/22829286425_resume niyas.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much Strong With The Basics In Python Came Along With The Friends Sustainability Doubts On The Profile Not Much Comfort With TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-01-03 11:57:19', 60, '2023-01-03 02:40:51', 0, NULL, 1),
(11654, 'Halith Ahamed', '13', '8428958679', '8778494449', 'halithahamed340@gmail.com', '2001-12-07', 21, '2', '2', 'Habeeb rahman', 'Former', 12000.00, 0, 0.00, 10000.00, 'Kumbakonam', 'Pallavaram', '2301030004', '1', '1', 'upload_files/candidate_tracker/59960208770_Halith Resume.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much Strong With The Basics In Python Came Along With The Friends Sustainability Doubts On The Profile Not Much Comfort With TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-01-03 11:57:44', 60, '2023-01-03 02:41:07', 0, NULL, 1),
(11655, '', '0', '6382700458', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301030005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-03 12:02:52', 0, NULL, 0, NULL, 1),
(11656, 'V ramesh', '6', '6381557992', '', 'Rame82830@gmail.com', '2001-04-15', 21, '1', '2', 'Veeran v', 'Seizing mill', 40000.00, 3, 0.00, 15000.00, '41,valliammai nagar,palayapalayam,erode', 'Palayapalayam erode', '2301030006', '', '1', 'upload_files/candidate_tracker/88222210209_Ramesh resume.pdf', NULL, '1', '2023-01-03', 0, 'P1352', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-03 01:07:40', 1, '2023-01-03 01:17:36', 0, NULL, 1),
(11657, 'Subhasri D', '4', '9600915413', '9600915412', 'subashankar23@gmail.com', '1998-11-23', 24, '4', '2', 'Dhiravia Shankar', 'CNC operator', 250000.00, 1, 450000.00, 480000.00, 'Coimbatore', 'Chennai', '2301030007', '', '2', 'upload_files/candidate_tracker/5567762892_Resume_SubhasriD.pdf', NULL, '1', '2023-01-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-03 03:12:04', 1, '2023-01-03 03:17:28', 0, NULL, 1),
(11658, 'Subhasri D', '4', '9600915412', '9952705273', 'subashankar23@gmail.com', '1998-11-23', 24, '2', '2', 'Dhiravia Shankar', 'CNC operator', 250000.00, 1, 450000.00, 450000.00, 'Coimbatore', 'Chennai', '2301030008', '1', '2', 'upload_files/candidate_tracker/50108093522_Resume_SubhasriD.pdf', NULL, '1', '2023-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Very high Salary Exp Fresher for our Sales Calls will not sustain in our roles and handle our pressure Communication is Good checked for operations too but Salary Exp is very high', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-03 03:22:19', 99, '2023-01-04 09:36:25', 0, NULL, 1),
(11659, '', '0', '8681849103', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301030009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-03 04:12:38', 0, NULL, 0, NULL, 1),
(11660, 'Jaseen J', '23', '7502985224', '9865067086', 'jjaseen2812@gmail.com', '2001-12-28', 21, '2', '2', 'Jakir Hussain', 'Farmer', 6000.00, 3, 0.00, 500000.00, 'Villupuram', 'Vanagaram', '2301030010', '1', '1', 'upload_files/candidate_tracker/15642764840_jaseen.docx', NULL, '1', '2023-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up No basic Skills also will not handle our work pressure not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-03 07:21:58', 85, '2023-01-04 09:40:11', 0, NULL, 1),
(11661, 'Thanga karuppasamy t', '13', '8056805580', '', 'tkaruppasamy35@gmail.com', '1989-04-08', 33, '3', '2', 'Thanga mani', 'Cooli', 15000.00, 3, 22000.00, 35000.00, 'Chennai', 'Chennai', '2301040001', '', '2', 'upload_files/candidate_tracker/82460538704_thangam (1).docx', NULL, '1', '2023-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Handicapped and Frequent Job Changes Handling our work and long run will not be. not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-04 09:46:57', 1, '2023-01-04 09:51:24', 0, NULL, 1),
(11662, 'ramesh kumar', '4', '6381450392', '', 'rameshashwin77r@gmail.com', '1994-05-27', 28, '2', '1', 'ramalingam', 'farmer', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2301040002', '2', '1', 'upload_files/candidate_tracker/4463606327_Resume ramesh New 2022 2.docx', NULL, '1', '2023-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no relevant Exp he was into QC Have a lot of personal Family issue will not have a focus into work will not sustain in long  not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-04 11:02:49', 1, '2023-01-04 11:04:59', 0, NULL, 1),
(11663, 'kalaiselvan k', '4', '7339220967', '', 'kalai30selvan@gmail.com', '1993-01-25', 29, '2', '2', 'pavanambal k', 'house wife', 10000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2301040003', '2', '1', 'upload_files/candidate_tracker/52046917497_kalai It CV.doc', NULL, '1', '2023-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Long Career Gap No Relevant Exp Will not sustain and handle Calls not suitable for our roles', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-04 11:06:15', 1, '2023-01-04 11:08:15', 0, NULL, 1),
(11664, 'Mukesh Kumar M', '13', '8667817783', '9025009281', 'mukeshmano1698@gmail.com', '1998-01-16', 24, '3', '2', 'Manoharan S', 'Salesman in Market', 40000.00, 1, 15000.00, 20000.00, 'Dinamani Nagar', 'Kolathur', '2301040004', '', '2', 'upload_files/candidate_tracker/58246713538_Mukesh Kumar - Resume.pdf', NULL, '1', '2023-01-04', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not Complete the task', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-04 12:30:36', 1, '2023-01-04 12:39:20', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11665, 'Nihal Ahmed P', '4', '7418229413', '', 'Nihaalahmed15@gmail.com', '1994-05-10', 28, '2', '1', 'Afrah Suman', 'Senior Customer Support Executive', 20000.00, 1, 17000.00, 25000.00, 'Vaniyambadi', 'Chennai', '2301040005', '1', '2', 'upload_files/candidate_tracker/83232112827_Nihal Curriculum Vitae.docx', NULL, '1', '2023-01-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Operations Calling Bit of Attitude final round reject by gokul.Doubtful Profile', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2023-01-04 12:36:25', 1, '2023-01-04 12:41:46', 0, NULL, 1),
(11666, 'Jayasree', '4', '9952038271', '', 'kjeya21251@gmail.com', '2001-11-21', 21, '1', '2', 'Dhanalakshmi', 'House wife', 7000.00, 1, 16000.00, 14000.00, 'Chennai', 'Chennai', '2301040006', '', '2', 'upload_files/candidate_tracker/24742504630_jeya resume.pdf', NULL, '1', '2023-01-04', 0, 'P1275', '3', '59', '2023-01-06', 170532.00, '', '5', '1970-01-01', '2', 'Selected for Bhavani Team - Consultant  Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-04 12:46:24', 60, '2023-01-05 05:52:26', 0, NULL, 1),
(11667, '', '0', '8940911702', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301040007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-04 01:35:17', 0, NULL, 0, NULL, 1),
(11668, 'Elakkiya', '4', '8248577508', '', 'elakkiyacivi11@gmail.com', '1996-06-11', 26, '2', '2', 'Muneeswaran', 'Farmer', 20000.00, 1, 10000.00, 13000.00, 'Thanjavur', 'Thanjavur', '2301040008', '1', '2', 'upload_files/candidate_tracker/86603996495_ELAKKIYA RESUME (1).pdf', NULL, '1', '2023-01-05', 0, '', '3', '59', '2023-01-09', 151584.00, '', '', '2023-01-10', '1', 'Selected for Thanjavur - Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-04 02:57:05', 60, '2023-01-05 05:52:44', 0, NULL, 1),
(11669, 'Bharathiraja D', '13', '7904936679', '9345992872', 'bharathiteejay@gmail.com', '2001-11-25', 21, '2', '2', 'Kamalavalli D', 'Tailor', 10000.00, 1, 0.00, 25000.00, 'Neyveli', 'Chennai', '2301040009', '1', '1', 'upload_files/candidate_tracker/62612153437_bharathiraja resume update (1).docx.pdf', NULL, '2', '2023-01-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-04 05:41:50', 99, '2023-01-10 09:26:50', 0, NULL, 1),
(11670, 'Vignesh Karthick', '3', '7448644272', '7810083740', 'sudhakarvigneshkarthick@gmail.com', '2001-01-05', 22, '2', '2', 'S.muthu lakshmi', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2301050001', '1', '1', 'upload_files/candidate_tracker/90545333381_MY RESUME (2).pdf', NULL, '1', '2023-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher not much strong in basics need to be trained a lot  not much comfort in TxxampC Need time to confirm from his side if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 12:11:43', 99, '2023-01-05 09:48:29', 0, NULL, 1),
(11671, 'deepalakshmi b', '4', '9500742779', '', 'deepanandhini16@gmail.com', '1988-07-16', 34, '2', '1', 'baskar', 'busniess', 30000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2301050002', '2', '2', 'upload_files/candidate_tracker/74946048861_DEEPALAKSHMI\'s Resume.pdf', NULL, '1', '2023-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-05 10:55:07', 1, '2023-01-05 10:57:27', 0, NULL, 1),
(11672, 'lohithraj prasad', '4', '8248686386', '', 'p.lohithraj7311@gmail.com', '1998-11-04', 24, '2', '2', 'prakash', 'working', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2301050003', '2', '1', 'upload_files/candidate_tracker/44352449456_Lohithraj Prasad P.pdf', NULL, '1', '2023-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-05 11:02:11', 1, '2023-01-05 11:15:01', 0, NULL, 1),
(11673, '', '0', '7338777351', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301050004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-05 11:16:53', 0, NULL, 0, NULL, 1),
(11674, 'Gokul sarachandran', '4', '9940265226', '8248900745', 'gokulkrish410@gmail.com', '1995-12-10', 27, '2', '2', 'Sarachandran', 'Private car driver', 15.00, 1, 22700.00, 25.00, 'No : 9 cannal st Triplicane, ch-05', 'No : 16/72 karikalan St, R.A Pura ch-28', '2301050005', '1', '2', 'upload_files/candidate_tracker/80019084146_Gokul Sarachandran.pdf', NULL, '1', '2023-01-05', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our sales not suitable for B2B can give a try in PC need to be trained  salart exp is high candidate need time to give his confirmation on the profile if he comes back let us try', '1', '1', '', '1', '1', '', '2', '2023-01-09', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 11:21:54', 99, '2023-01-05 11:44:04', 0, NULL, 1),
(11675, 'subilesh s', '5', '9562741857', '', 'subhileshsubhi44@gmail.com', '1996-09-08', 26, '2', '2', 'surendran', 'clerk', 15000.00, 2, 18000.00, 20000.00, 'chennai', 'chennai', '2301050006', '2', '2', 'upload_files/candidate_tracker/35237278115_subhilesh_cv.pdf', NULL, '1', '2023-01-05', 0, '', '3', '59', '2023-01-11', 345696.00, '', '3', '2023-07-08', '1', 'Selected for Sarath Team  - PF PT', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-05 11:44:02', 60, '2023-01-09 06:21:16', 0, NULL, 1),
(11676, 'Sathishkumar. D', '31', '9384467367', '9942890426', 'Sathish.Drs07@gmail.com', '1996-01-07', 26, '2', '2', 'Durairaj', 'Contract painting', 16000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2301050007', '1', '1', 'upload_files/candidate_tracker/3352433261_Resume_05_01_2023_12_21_01_pm.pdf', NULL, '1', '2023-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basics will not sustain in our roles for a long not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 12:11:40', 99, '2023-01-05 12:28:29', 0, NULL, 1),
(11677, 'Steepen Raj D', '14', '8608693210', '', 'steepenraj15@gmail.com', '2000-10-15', 22, '2', '2', 'David', 'Driver', 14000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2301050008', '1', '1', 'upload_files/candidate_tracker/66384172483_Steepen', NULL, '1', '2023-01-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have a basic Python skills can be trained open for TxxampC need to schedule for final round with Gokul based on his availability', '2', '1', '', '1', '1', '', '2', '2023-01-09', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 01:34:43', 99, '2023-01-06 09:24:24', 0, NULL, 1),
(11678, 'athi sivaram', '31', '6382834963', '9787841530', 'sivaramathi2001@gmail.com', '2001-07-22', 21, '2', '2', 'shanmuganathan', 'farmer', 15000.00, 1, 0.00, 3.50, 'uthankulam', 'chennai', '2301050009', '1', '1', 'upload_files/candidate_tracker/44963576684_AthiSivaramSResume.pdf', NULL, '1', '2023-01-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have a knowledge in Oracle and focusing much in that for time being he is looking  in react and no basic skills will not sustain and not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 04:36:11', 99, '2023-01-06 09:32:20', 0, NULL, 1),
(11679, '', '0', '9840311448', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301050010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-05 04:43:47', 0, NULL, 0, NULL, 1),
(11680, '', '0', '8940050241', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301050011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-05 04:45:15', 0, NULL, 0, NULL, 1),
(11681, 'Gopinath', '23', '8754221148', '8925078311', 'gmgopinath918@gmail.com', '1998-04-22', 25, '3', '2', 'Arjunan', 'UI Developer', 200000.00, 1, 220000.00, 300000.00, 'Vellore', 'Tambaram', '2301050012', '', '2', 'upload_files/candidate_tracker/20961448439_Gopinath_new_resume-1.pdf', NULL, '1', '2024-01-05', 15, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-05 05:02:12', 1, '2024-01-05 06:53:02', 0, NULL, 1),
(11682, '', '0', '9003058785', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301050013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-05 05:19:37', 0, NULL, 0, NULL, 1),
(11683, 'GOKULAKRISHNAN R', '31', '8270474806', '', 'rgokulamd@gmail.com', '2001-12-04', 21, '2', '2', 'RENGANATHAN G', 'FARMER', 100000.00, 1, 0.00, 200000.00, 'Vadapalani', 'vadapalani', '2301050014', '1', '1', 'upload_files/candidate_tracker/77098860325_Gokulakrishnan', NULL, '1', '2023-01-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not answering any thing no basics skills too not suitable will not handle our work pressure', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 05:32:22', 99, '2023-01-07 09:23:55', 0, NULL, 1),
(11684, 'Umarjaffarhussian S', '14', '7010043371', '7871485567', 'umarjaffer56@gmail.com', '2000-04-25', 22, '2', '2', 'Samsul Arif A', 'working for shoes shop', 20000.00, 1, 0.00, 17000.00, 'Virudhunagar', 'Chennai', '2301050015', '1', '1', 'upload_files/candidate_tracker/49148741333_Umar jaffar Resume.docx.pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Active Seems to be slow in the pace have basic knowledge in python but suitability doubts on the profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 06:32:47', 99, '2023-01-09 09:44:28', 0, NULL, 1),
(11685, '', '0', '8778819166', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301050016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-05 06:53:40', 0, NULL, 0, NULL, 1),
(11686, 'Priyadarsini J', '23', '9746756500', '6282465313', 'darsinijp26@gmail.com', '2000-10-26', 22, '3', '1', 'A Jayakumar', 'Business', 65000.00, 1, 0.00, 40000.00, 'Thiruvananthapuram', '19-B maruthi nagar parvathi Nagar chennai-68', '2301050017', '', '1', 'upload_files/candidate_tracker/22773560057_Priyadarsini\'s Resume (3)(1).pdf', NULL, '2', '2023-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-05 07:09:31', 1, '2023-01-05 07:15:30', 0, NULL, 1),
(11687, 'Sivasakthivel S', '31', '8524015985', '', 'sakthisekar2001@gmail.com', '2001-06-21', 21, '2', '2', 'Sekar N', 'Daily wages', 30000.00, 4, 0.00, 300000.00, 'Ariyalur', 'Ariyalur', '2301050018', '1', '1', 'upload_files/candidate_tracker/87026778017_Reusme_Sivasakthivel S.pdf', NULL, '2', '2023-01-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 08:00:27', 99, '2023-01-06 09:35:01', 0, NULL, 1),
(11688, 'P. Keerthana', '20', '8680954103', '9962815510', 'Keerthanakeerthana291@gmail.com', '2000-07-26', 22, '2', '2', 'Paramasivam. V', 'Printer', 15000.00, 1, 16000.00, 16000.00, 'Chennai', 'Chennai', '2301050019', '1', '2', 'upload_files/candidate_tracker/65313637558_KEERTHANA RESUME.docx', NULL, '1', '2023-01-06', 0, '', '3', '59', '2023-01-09', 230500.00, '', '', '2023-01-12', '2', 'Selected for Babu Team in PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-05 08:15:58', 60, '2023-01-09 10:10:46', 0, NULL, 1),
(11689, 'vignesh n', '31', '8428330485', '', 'vigneshnarayanan2962001@gmail.com', '2001-06-29', 21, '3', '2', 'narayanasamy v', 'farmar', 60000.00, 1, 0.00, 3.50, 'Perambalur', 'Porur', '2301050020', '', '1', 'upload_files/candidate_tracker/16424886725_Resume_Vignesh N.pdf', NULL, '1', '2023-01-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-05 08:20:33', 1, '2023-01-05 08:26:05', 0, NULL, 1),
(11690, 'GOPINATH S', '2', '6381247746', '9585915076', 'gopinathseeniappan19@gmail.com', '1999-05-19', 23, '3', '2', 'S SEENIAPPAN', 'rtd VAO', 500000.00, 2, 0.00, 300000.00, 'Madurai', 'Chennai', '2301050021', '', '1', 'upload_files/candidate_tracker/32275947295_Gopinath S.pdf', NULL, '2', '2023-01-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basics in the skills will not get adapt with our work  and not suitable', '2', '1', '', '4', '5', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-05 10:01:49', 85, '2023-01-06 11:45:56', 0, NULL, 1),
(11691, 'KARUNANIDHI C', '31', '8124061984', '9952717599', 'sureshkarunan22@gmail.com', '1998-06-14', 24, '2', '2', 'Chandra Sekaran P & Jayanthi C', 'Bus conductor', 13000.00, 2, 0.00, 20000.00, 'Tiruvannamalai', 'Medavakkam,Chennai', '2301050022', '1', '1', 'upload_files/candidate_tracker/1424561298_Resume 2022.doc', NULL, '3', '2023-01-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'appeared for React have exp in sales checked with 2nd round in IT manikandan but not suitable pushed him for sales too.he needs to come back with his confirmation', '2', '1', '', '1', '1', '', '2', '2023-01-09', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 10:30:12', 99, '2023-01-06 09:36:03', 0, NULL, 1),
(11692, 'venkadesh', '4', '7094815161', '', 'mkvenkat1999@gmail.com', '1999-05-08', 23, '2', '2', 'lekkan', 'farmer', 10000.00, 3, 0.00, 12000.00, 'karur', 'chennai', '2301060001', '2', '1', 'upload_files/candidate_tracker/96926757550_AS pro 40988.pdf', NULL, '1', '2023-01-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much open for Telecaller Sales looking for inbound calls will not handle the work pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-06 10:03:23', 1, '2023-01-06 10:05:36', 0, NULL, 1),
(11693, 'Tamilarasu R', '2', '8344493562', '', 'rtatamilarasu123@gmail.com', '2000-11-23', 22, '3', '2', 'Raja', 'Employee in textile industry', 15000.00, 1, 0.00, 4.00, 'Tiruchengode, Namakkal', 'Paranur', '2301060002', '', '1', 'upload_files/candidate_tracker/43651841583_Resume.pdf', NULL, '1', '2023-01-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,Preferred Java and salary Exp is very high not ready to come down not open for TxxampC not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-06 10:52:41', 1, '2023-01-06 10:56:30', 0, NULL, 1),
(11694, 'Sangeetha M', '13', '9094816712', '', 'sangeethait1997@gmail.com', '1997-02-04', 25, '4', '2', 'Murugesan,Saroja', 'Merchant', 20000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2301060003', '', '1', 'upload_files/candidate_tracker/56477230560_Resume_1670675006549_M._Sangeetha.doc', NULL, '1', '2023-01-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much strong with the basics getting married in a year 2 EB are working in IT  sustainability doubts in this profile   not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-06 11:02:07', 1, '2023-01-06 11:16:40', 0, NULL, 1),
(11695, 'S.Premkumar', '31', '8940058241', '', 'dharshan1620@gmail.com', '1999-07-16', 23, '2', '2', 'M.sekar', 'Former', 7000.00, 2, 0.00, 12000.00, 'Thiruvotriyut', 'Thiruvotriyur', '2301060004', '1', '1', 'upload_files/candidate_tracker/9208704913_PREM KUMAR S.pdf', NULL, '1', '2023-01-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much good with the basics will not run in a  long not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-06 11:14:51', 99, '2023-01-06 11:29:04', 0, NULL, 1),
(11696, 'Rabinson A', '4', '8124529591', '9344929655', '550rabinson@gmail.com', '1994-06-03', 28, '2', '1', 'Sharmila', 'Working', 25000.00, 1, 15000.00, 20000.00, 'Ramanathapuram', 'Vettuvankeni, chennai', '2301060005', '1', '2', 'upload_files/candidate_tracker/64897111373_rabin 03.06.1994.docx', NULL, '1', '2023-01-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable not open up will not sustain in our roles ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-06 11:21:12', 99, '2023-01-06 11:30:21', 0, NULL, 1),
(11697, 'yuvarani', '16', '6374249456', '', 'yuvarani77998@gmail.com', '1998-05-04', 24, '2', '1', 'magesh', 'own business', 25000.00, 3, 0.00, 15000.00, 'chennai', 'perambur', '2301060006', '1', '1', 'upload_files/candidate_tracker/95274242717_Yuvarani+Resume (1) (1).pdf', NULL, '1', '2023-01-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Career Gap not open up will not sustain and not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2023-01-06 11:25:46', 1, '2023-01-06 11:48:53', 0, NULL, 1),
(11698, 'Narmadha devi', '28', '8682099372', '8939171546', 'Narmadhasivakumar15@gmail.com', '2000-06-15', 22, '2', '2', 'Siva Kumar', 'Plumber', 20000.00, 1, 16500.00, 18000.00, 'Chennai', 'Chennai', '2301060007', '1', '2', 'upload_files/candidate_tracker/24452999015_Narmadha resume.docx', NULL, '1', '2023-01-06', 7, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no communication .. for renewals .. she ok with sales again has exp too.. average convincing skills.. not suit for roles..', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-06 12:28:37', 99, '2023-01-06 12:47:21', 0, NULL, 1),
(11699, '', '0', '7358408634', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301060008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-06 12:36:03', 0, NULL, 0, NULL, 1),
(11700, 'Narmadha devi', '5', '8682099382', '9962200801', 'narmadhasivakumar15@gmail.com', '2000-06-15', 24, '2', '2', 'Siva Kumar', 'Plumber', 30000.00, 1, 18000.00, 23000.00, 'Chennai old washermenpet', 'Chennai old washermenpet', '2301060009', '50', '2', 'upload_files/candidate_tracker/74084728762_NARMADHARESUME.pdf', NULL, '1', '2024-09-05', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested work in sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2023-01-06 12:40:52', 104, '2024-09-05 03:35:53', 0, NULL, 1),
(11701, 'Prakash', '13', '9047686523', '', 'prakashramasamy2201@gmail.com', '2001-01-22', 21, '4', '2', 'Ramasamy', 'Shop keeper', 15000.00, 1, 0.00, 18000.00, 'Dindigul', 'Dindigul', '2301060010', '', '1', 'upload_files/candidate_tracker/55058110762_prakash_resume.pdf', NULL, '1', '2023-01-06', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'have a 3months internship know basics can analyse the candidate in Task kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-06 01:19:03', 1, '2023-01-06 01:30:58', 0, NULL, 1),
(11702, '', '0', '8939092563', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-06 02:30:58', 0, NULL, 0, NULL, 1),
(11703, '', '0', '9790256890', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301060012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-06 02:38:25', 0, NULL, 0, NULL, 1),
(11704, 'Santhosh K', '31', '9629473782', '', 'Santhoshk1925@gmail.com', '1999-05-25', 23, '3', '2', 'Karaimelazhagan', 'Masan', 15000.00, 2, 0.00, 2.50, 'Medavakkam, Chennai', 'Medavakkam, Chennai', '2301060013', '', '1', 'upload_files/candidate_tracker/43810120092_santhosh.pdf', NULL, '1', '2023-01-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have basic skills in React having freelance exp open for TxxampC need to check with Gokul based on his availability', '2', '1', '0', '1', '1', '0', '2', '2023-01-09', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-06 02:51:39', 1, '2023-01-06 02:57:39', 0, NULL, 1),
(11705, 'Syed', '31', '6384900162', '9382092360', 'syedmass7868@gmail.com', '2002-08-14', 20, '2', '2', 'Bhadhusha', 'Coolie', 25000.00, 2, 0.00, 20000.00, 'Thiruvannamalai, Dt, venniyanthal village', 'Chennai, urappagam', '2301060014', '1', '1', 'upload_files/candidate_tracker/25774707645_New doc2023.pdf', NULL, '1', '2023-01-07', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to train alot too long distance ready to relocate but not much comfort in TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2023-01-10', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-06 03:07:12', 99, '2023-01-07 09:24:17', 0, NULL, 1),
(11706, 'Shalini G', '22', '6381666420', '', 'simplishalu@gmail.com', '1997-07-12', 25, '2', '2', 'P S Ganesan', 'SEO Analyst/Content writer', 50000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2301060015', '1', '1', 'upload_files/candidate_tracker/89158247997_shaliniresume (3).pdf', NULL, '1', '2023-01-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-06 03:13:48', 85, '2023-01-07 09:49:59', 0, NULL, 1),
(11707, 'Kishore v', '13', '8807279847', '', 'kishore1999kumar@gmail.com', '1999-12-13', 24, '3', '2', 'Vijayakumar', 'Weaver', 20000.00, 1, 0.00, 450000.00, 'Kanchipuram', 'Kanchipuram', '2301060016', '', '1', 'upload_files/candidate_tracker/80671218765_KISHORE-V.pdf', NULL, '1', '2023-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-06 06:10:32', 1, '2023-12-15 07:33:06', 0, NULL, 1),
(11708, 'Ajay Joseph Rayen', '31', '8610687317', '', 'ajayjoseph455@gmail.com', '2000-07-29', 22, '2', '2', 'cyril rayen', 'visa travel agent', 50000.00, 1, 0.00, 3.00, 'chennai', 'chennai', '2301070001', '1', '1', 'upload_files/candidate_tracker/72935921083_AJAY JOSEPH RAYEN UPDATED.pdf', NULL, '1', '2023-01-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher  Need to train a lot he was interested in several domain earlier worked in Cine Field Sustainability doubts  Need time to confirm his profile,Bit Attitude not ready to accept seems to have a head weight', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-07 09:20:32', 99, '2023-01-07 09:33:19', 0, NULL, 1),
(11709, 'Subramani V', '31', '7871733243', '', 'subramaniv0110@gmail.com', '2000-10-01', 22, '2', '2', 'Vasamuthu S', 'Sales', 250000.00, 1, 0.00, 2.40, 'Chennai', 'Chennai', '2301070002', '1', '1', 'upload_files/candidate_tracker/96943665572_SubramaniV-resume (1).pdf', NULL, '1', '2023-01-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not strong with the basics, not much comfort with the TxxampC Long run doubts if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-07 09:39:16', 99, '2023-01-07 09:49:42', 0, NULL, 1),
(11710, 'G.vivek', '31', '8760478873', '8678996429', 'vivek10841230@gmail.com', '2001-02-03', 21, '2', '2', 'R.Gunasekaran', 'Farmer', 6500.00, 1, 0.00, 200000.00, 'Theni', 'Velachery Chennai', '2301070003', '1', '1', 'upload_files/candidate_tracker/51163781429_VIivekresume (2).pdf', NULL, '1', '2023-01-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for TxxampC No basic skills nothing learnt in the lst 2 months gap not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-07 10:03:38', 85, '2023-01-07 10:48:31', 0, NULL, 1),
(11711, 'Kishor', '2', '9655415661', '', 'Kishorkaruna20@gmail.com', '2000-11-04', 22, '3', '2', 'Karuna', 'Mechanic', 20.00, 0, 0.00, 2.00, 'Namakkal', 'Chennai', '2301070004', '', '1', 'upload_files/candidate_tracker/74024052717_ kishor.pdf', NULL, '1', '2023-01-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher have a basic  knowledge in Java only,Tried for training but technical round reject by Gokul', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-07 12:19:19', 1, '2023-01-07 12:32:17', 0, NULL, 1),
(11712, 'Rohit', '6', '9677159673', '9514965835', 'rohitmuralidharan11@gmail.com', '2000-03-11', 22, '1', '2', 'Muralitharan', 'Tiles wroker', 30000.00, 4, 17000.00, 20000.00, '52/77 sudalai Muthu street new washermenpet', '52/77 Sudalai Muthu Street New Washermenpet', '2301070005', '', '2', 'upload_files/candidate_tracker/50444035272_RESUME MODIFY.pdf', NULL, '1', '2023-01-07', 15, 'P1417', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed and suggested the salary breakup and they were not ready alos looking for high salary', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-07 12:22:02', 60, '2023-01-07 04:04:43', 0, NULL, 1),
(11713, 'Tamil Selvam', '6', '7550202278', '8754593978', 'mersaltamil046@gamil.com', '2000-07-22', 22, '1', '2', 'Kalavathi', 'House wife', 10000.00, 3, 0.00, 15000.00, '04/38 pillaiyar Kovil street tollgate', '04/38 Pillaiyar Kovil Street Tollgate', '2301070006', '', '1', 'upload_files/candidate_tracker/49237086664_1.pdf', NULL, '1', '2023-01-07', 0, 'P1417', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher language and skills problem', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-07 12:22:27', 60, '2023-01-07 04:03:57', 0, NULL, 1),
(11714, 'Sarathkumar', '6', '9150298892', '', 'arun@cafsindia.com', '2000-10-27', 22, '1', '2', 'Sennivaaan', 'Tailor', 10000.00, 0, 17000.00, 20000.00, '79/149 AA garden 5tstreet Newwashermenpet', '79/149 A. A Garden 5th Street Newwashermenpet', '2301070007', '', '2', 'upload_files/candidate_tracker/13532357331_DOC-20221128-WA0006..pdf', NULL, '1', '2023-01-07', 15, 'P1417', '3', '59', '2023-02-10', 230000.00, '', '7', '1970-01-01', '1', 'HRMS Issue Testing', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-07 12:24:04', 60, '2023-02-09 09:58:54', 0, NULL, 1),
(11715, 'SUDHAKAR V', '5', '8667325768', '9092936193', 'dinesh55577@Gmail.com', '1995-10-10', 27, '1', '2', 'Sarala v', 'Housewife', 360000.00, 2, 295000.00, 400000.00, 'Chromepet', 'Chromepet', '2301070008', '', '2', 'upload_files/candidate_tracker/44827075093_0_0_Sudhakar CV.docx', NULL, '1', '2023-01-07', 15, 'P1279', '3', '59', '2023-01-17', 340000.00, '', '5', '1970-01-01', '1', 'Selected for Shanmugam Team in PF PT', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-07 01:23:34', 60, '2023-01-09 06:23:09', 0, NULL, 1),
(11716, 'Dhivya', '20', '6381744896', '8056754591', 'diyadhivi600@gmail.com', '2008-01-07', 0, '2', '2', 'Dhivi dina brothers', 'Painter and shef', 15000.00, 2, 19.50, 30000.00, 'Pondicherry', 'Chennai', '2301070009', '1', '2', 'upload_files/candidate_tracker/18813910583_dhivya resume ????.pdf', NULL, '1', '2023-01-11', 1, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Telecalling Can give a try for our sales but candidate need a time to confirm family need is there', '5', '2', '', '2', '2', '', '2', '2023-01-13', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-07 03:46:48', 85, '2023-01-11 02:28:57', 0, NULL, 1),
(11717, 'Udhayalakshmi', '22', '8148518083', '', 'udhayalakshmi004@gmail.com', '1997-02-05', 25, '2', '2', 'Mahalingam', 'Coconut selling', 80000.00, 3, 0.00, 12000.00, 'Chennai', 'Chennai', '2301070010', '1', '1', 'upload_files/candidate_tracker/70021018335_DOC-20230105-WA000..pdf', NULL, '3', '2023-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Long Career Gap not suitable for Digital Marketing Checked for Telecalling but not open for that', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-07 04:36:10', 85, '2023-01-18 12:58:46', 0, NULL, 1),
(11718, 'mahalakshmi', '16', '7305698708', '', 'mahalakshmiguhan01@gmail.com', '2001-08-19', 21, '2', '2', 'guhan c', 'retired', 40000.00, 2, 15000.00, 25000.00, 'chennai', 'chennai', '2301080001', '1', '2', 'upload_files/candidate_tracker/57174415312_Mahalakshmi G .pdf', NULL, '1', '2023-01-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Final Round Completed with Gokul Have Exp but not a relevant one Salary Exp is very high we have commited her 17K if she comes back let us try', '3', '1', '', '1', '1', '', '2', '2023-01-11', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-08 11:40:08', 99, '2023-01-09 10:40:36', 0, NULL, 1),
(11719, 'Mohammed Azees', '2', '7904104626', '9677730508', 'mohammedazees3@gmail.com', '1997-06-20', 25, '2', '2', 'YOUSUF', 'Hvac technician', 60000.00, 2, 0.00, 300000.00, 'Coimbatore', 'Chennai', '2301090001', '1', '1', 'upload_files/candidate_tracker/22299377958_ResumE_Azees..pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for IT not much strong with the basics in Python salary exp is high and not open for TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-09 10:44:03', 99, '2023-01-09 11:11:06', 0, NULL, 1),
(11720, 'niyamaththullah beg', '4', '7824042788', '', 'niyamaththulla20@gmail.com', '2001-11-20', 21, '2', '2', 'musthafa beek', 'late', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2301090002', '2', '1', 'upload_files/candidate_tracker/26256961886_RESUME NIYATHTHULLAH .pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude Not suitable for sales Telesales will not sustain and handle our pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-09 10:46:10', 1, '2023-01-09 11:25:34', 0, NULL, 1),
(11721, '', '0', '8754187436', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301090003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-09 10:49:02', 0, NULL, 0, NULL, 1),
(11722, 'Swetha', '4', '8925241221', '', 'Swethachandran1701@gmail.com', '2001-11-17', 21, '3', '2', 'M.chandraan', 'Catering', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2301090004', '', '1', 'upload_files/candidate_tracker/3378418194_RESUME - SWETHA.C.docx.pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher need to open a lot will not handle our work pressure not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-09 11:07:18', 1, '2023-01-09 11:29:39', 0, NULL, 1),
(11723, 'J.priyadharsini', '31', '9445217784', '9444851317', 'priyadharsinij.10@gmail.com', '1990-06-10', 32, '3', '1', 'S.sureshkumar', 'Swiggy', 30000.00, 1, 0.00, 1.50, 'Chennai', 'Chennai', '2301090005', '', '1', 'upload_files/candidate_tracker/14654529826_priyaresum.pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance looking for Core Java she is from Manali Married will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-09 11:17:11', 1, '2023-01-09 11:24:03', 0, NULL, 1),
(11724, 'Meena Mohandhas', '31', '6379199220', '', 'meenamohandhas600@gmail.com', '1999-04-07', 23, '3', '2', 'M.Sundari', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Aranthangi', '7/20, Annapoorna hostel , Kodambakkam, Chennai', '2301090006', '', '1', 'upload_files/candidate_tracker/51338288715_meena+Bio+Data(2).docx', NULL, '1', '2023-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'looking for Java and no basics in Javascript will not sustain not much comfort in TxxampC Family well settled Govt staff vAO', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-09 11:17:21', 1, '2023-01-09 11:25:20', 0, NULL, 1),
(11725, 'sameyulla', '4', '7358594805', '', 'sameyulla61@gmail.com', '2001-09-21', 21, '2', '2', 'yusuf', 'tailor', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2301090007', '2', '1', 'upload_files/candidate_tracker/79671799792_Samiyullah Resume .pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the interview\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-09 11:26:23', 1, '2023-01-09 11:27:43', 0, NULL, 1),
(11726, 'Benedict Jude', '5', '8220758785', '8056930661', 'benedictaashiq@gmail.com', '1996-05-02', 26, '2', '2', 'Krishanthini', 'House wife', 20000.00, 1, 0.00, 4.50, 'Chennai', 'Chennai', '2301090008', '1', '1', 'upload_files/candidate_tracker/46383958116_Benedict_Resume-1.pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Telecalling Exp but in different domain and his current pay is 4 LPA for just 4 months exp not ready to come down will not join us', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-09 11:34:27', 85, '2023-01-09 11:43:09', 0, NULL, 1),
(11727, '', '0', '9791924504', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301090009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-09 02:50:54', 0, NULL, 0, NULL, 1),
(11728, 'Sathish S', '31', '6383361261', '', 'sathish3rs385@gmail.com', '2000-05-21', 22, '2', '2', 'SANKAR', 'Farmer', 25000.00, 2, 0.00, 15000.00, 'Nerkunram', 'Nerkunram', '2301090010', '1', '1', 'upload_files/candidate_tracker/14755418316_SATHISH RESUME.pdf', NULL, '1', '2023-01-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Much comfort in TxxampC,sustaianability  doubts  not much strong with the basics too', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-09 06:10:48', 99, '2023-01-10 09:27:50', 0, NULL, 1),
(11729, '', '0', '9840708931', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301090011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-09 08:51:51', 0, NULL, 0, NULL, 1),
(11730, 'Murugesan', '13', '8428535391', '8438915391', 'Vijaynivi5268@gmail.com', '1999-05-10', 23, '2', '2', 'Amsavalli', 'Teacher', 15000.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2301100001', '1', '1', 'upload_files/candidate_tracker/95817792490_k MURUGESAN K-1.pdf', NULL, '1', '2023-01-10', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher  not strong with PHP but have a 3 months internship earlier Ready to learn kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-10 07:51:04', 99, '2023-01-10 01:05:08', 0, NULL, 1),
(11731, 'vaishakh dinesh', '5', '8531857160', '', 'vaishakhdinesh0@gmail.com', '1998-03-21', 24, '2', '2', 'Dineshan', 'Central government staff', 20000.00, 1, 17000.00, 23000.00, 'Chennai', 'Chennai', '2301100002', '1', '2', 'upload_files/candidate_tracker/48456968814_DINESH RESUME.pdf', NULL, '1', '2023-01-10', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable candidate', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-10 09:01:57', 60, '2023-01-10 03:53:37', 0, NULL, 1),
(11732, 'rakesh a', '31', '7401305766', '9962755899', 'rakesharun95@gmail.com', '1995-06-02', 27, '4', '2', 'arunachalam', 'retiered', 50000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2301100003', '', '1', 'upload_files/candidate_tracker/17727510423_Rakesh Resume.pdf', NULL, '1', '2023-01-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have Solid Exp in sales but no open again looking for IT React JS ,sustainability doubts and his last drawn also high. Technical Round reject by Kaviya', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-10 10:06:37', 1, '2023-01-10 10:10:09', 0, NULL, 1),
(11733, '', '0', '8248739023', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301100004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-10 10:07:50', 0, NULL, 0, NULL, 1),
(11734, 'Mohan balan', '6', '9994036984', '9715215915', 'mohankannu561997@gmail', '1997-06-05', 25, '1', '2', 'S.k.balan', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Erode', 'Erode', '2301100005', '', '1', 'upload_files/candidate_tracker/84056816763_Mohan resume New 2.pdf', NULL, '1', '2023-01-10', 0, 'P1311', '3', '59', '2023-01-18', 198000.00, '', '5', '1970-01-01', '1', 'Selected fir Staff Role - Erode', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-10 10:18:19', 60, '2023-01-11 05:45:05', 0, NULL, 1),
(11735, 'Hemanathan k', '4', '8072711560', '7092827927', 'hemanathcharlie27@gmail.com', '1998-09-27', 24, '2', '2', 'Parent', 'Driver', 150000.00, 1, 0.00, 150000.00, 'Thiruttani', 'Ambattur', '2301100006', '1', '1', 'upload_files/candidate_tracker/94783787872_K.Hemanathan (1).pdf', NULL, '1', '2023-01-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have exp xxamp  interest in non voice process,will not sustain in Telecaller roles', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-10 10:18:23', 99, '2023-01-10 10:29:29', 0, NULL, 1),
(11736, 'Subuhan deen', '5', '8148605665', '8248739023', 'Subu199230@gmail.com', '1992-12-02', 30, '2', '1', 'Mahaboob Ali', 'Business', 30000.00, 0, 16000.00, 18000.00, 'Chennai', 'Chennai', '2301100007', '1', '2', 'upload_files/candidate_tracker/24990922224_SUBUHAN DEEN RESUME 2022.doc', NULL, '1', '2023-01-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Sustainability in the previous Exp, not open up will not sustain and handle our work pressure', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-10 10:27:29', 99, '2023-01-10 10:37:24', 0, NULL, 1),
(11737, 'Karthikraj .G', '2', '9092490289', '', 'Karthikrajkarthikraj19@gmail.com', '2000-07-19', 22, '4', '2', 'GNANASUNDARAM', 'Workshop attender', 40000.00, 1, 0.00, 30000.00, 'GUINDY', 'GUINDY', '2301100008', '', '1', 'upload_files/candidate_tracker/47202406971_CV_2022110714011868.pdf', NULL, '1', '2023-01-10', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate no basic skills knowledge but interested to learn can give a try  Need time to confirm on the TxxampC if he comes bacnk let is try', '2', '1', '0', '1', '1', '0', '2', '2023-01-12', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-10 11:12:18', 1, '2023-01-10 11:18:43', 0, NULL, 1),
(11738, 'Vishnu c', '4', '9080623731', '9176496333', 'Vishnuskfc45@gmail.com', '1998-03-21', 24, '3', '2', 'C.latha rani', 'Medicine shop ayuvedic', 40000.00, 2, 0.00, 15000.00, 'tharamani chennai', 'Tharamani Chennai', '2301100009', '', '1', 'upload_files/candidate_tracker/37010464645_VISHNU RESUME.docx', NULL, '1', '2023-01-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Telesales but in different Domain and also looking much for Non voice Process, Not suitablle for other openings\n', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-10 02:29:11', 1, '2023-01-10 02:39:26', 0, NULL, 1),
(11739, 'Gokul', '6', '8838712918', '', 'gokulsujith264@gmail.com', '2000-06-28', 22, '2', '2', 'K. Jayaraj', 'Non- employed', 20000.00, 1, 14000.00, 15000.00, 'Erode', 'Erode', '2301100010', '1', '2', 'upload_files/candidate_tracker/99854100662_GOKUL SUJITH.pdf', NULL, '1', '2023-01-11', 0, '', '3', '59', '2023-01-18', 192000.00, '', '6', '2023-02-26', '2', 'Selected for Staff RoleErode Laocation RE', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-10 03:35:34', 60, '2023-01-11 01:14:29', 0, NULL, 1),
(11740, '', '0', '8190805434', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301100011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-10 04:13:41', 0, NULL, 0, NULL, 1),
(11741, 'K JAYAMEENA', '6', '9003573696', '', 'jayakalai2706@gmail.com', '1999-09-27', 23, '2', '2', 'Kalaivani', 'Accountant', 100000.00, 1, 0.00, 10000.00, 'Erode(Dt)', 'Erode(Dt)', '2301100012', '1', '1', 'upload_files/candidate_tracker/64264677099_Resume.pdf', NULL, '1', '2023-01-11', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for our role', '5', '1', '', '4', '7', '', '2', '2023-01-12', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-10 06:30:45', 85, '2023-01-11 12:59:11', 0, NULL, 1),
(11742, 'Hari Prakash', '5', '9600712798', '8825553449', 'haritony21@gmail.com', '1996-11-01', 26, '2', '2', 'Marimuthu', 'Farmer', 22000.00, 1, 350000.00, 400000.00, 'Chennai', 'Thiruvarur', '2301110001', '1', '2', 'upload_files/candidate_tracker/57281064316_HariResume1.pdf', NULL, '2', '2023-01-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-11 10:37:15', 99, '2023-01-11 11:35:21', 0, NULL, 1),
(11743, 'Saravanan', '14', '6383048161', '', 'ssakthisaravanan25072001@gmail.com', '2001-07-25', 21, '3', '2', 'Subramanian', 'Cooli', 20000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Perungalathur, Chennai', '2301110002', '', '1', 'upload_files/candidate_tracker/1779197537_Saravanan Resume.pdf', NULL, '1', '2023-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher For IT  No Basic Skills Knowledge  Not Much Comfort In TxxampC Will Not Sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-11 10:58:36', 1, '2023-01-11 11:06:35', 0, NULL, 1),
(11744, 'Karuppusamy P', '14', '9080587041', '', 'karuppu141997@gmail.com', '1997-02-14', 25, '4', '2', 'Pandiyan P', 'Farmer', 10000.00, 2, 0.00, 25000.00, 'Ariyalur', 'Tambram', '2301110003', '', '1', 'upload_files/candidate_tracker/46616204483_Karuppusamy Resume.pdf', NULL, '1', '2023-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for IT have Exp in Production no basic skills knowledge  not much comfort in TxxampC will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-11 10:59:01', 1, '2023-01-11 11:18:44', 0, NULL, 1),
(11745, 'N.santhosh', '14', '9962724021', '', 'Santhosh1509n@gmail.com', '2000-09-15', 22, '3', '2', 'Dharani', 'Cooli', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2301110004', '', '1', 'upload_files/candidate_tracker/44498554011_Santhosh.pdf', NULL, '1', '2023-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher For IT  having Basic Skills Knowledge  Not Much Comfort In TxxampC Will Not Sustain Too Long Distance ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-11 10:59:18', 1, '2023-01-11 11:32:24', 0, NULL, 1),
(11746, 'Yuva Akash R', '14', '8870287783', '9444705479', 'yuvaakash.ya@gmail.com', '2000-03-26', 22, '3', '2', 'Raja C', 'Mechanic', 12000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2301110005', '', '1', 'upload_files/candidate_tracker/1333608267_YuvaAkash CV.pdf', NULL, '1', '2023-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher For IT  No Basic Skills Knowledge  Not Much Comfort In TxxampC Will Not Sustain too long Distance ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-11 11:23:34', 1, '2023-01-11 11:27:09', 0, NULL, 1),
(11747, 'Suganya G', '13', '8189928192', '', 'suganprakash907@gmail.com', '1995-04-27', 27, '3', '1', 'Ganapapthy', 'Farmer', 50000.00, 4, 0.00, 20000.00, 'Chennai', 'Chennai', '2301110006', '', '1', 'upload_files/candidate_tracker/68039564725_Resume SUGANYA G.pdf', NULL, '1', '2023-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long distance  huge career Gap Married and family commitments will not sustain in our roles not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-11 01:11:22', 1, '2023-01-11 01:17:11', 0, NULL, 1),
(11748, 'Blessing', '4', '9384996261', '', 'blsyrjohn967@gmail.com', '1996-09-07', 26, '2', '2', 'Johnson', 'Unemployer', 100000.00, 1, 13500.00, 15000.00, 'Marthandam', 'Tnagar', '2301110007', '1', '2', 'upload_files/candidate_tracker/41595721332_BlessyCv.pdf.pdf', NULL, '1', '2023-01-11', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have telecalling Exp but will not sustain more than a year Engaged,Can give a try for your roles kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-11 01:29:25', 85, '2023-01-11 05:48:37', 0, NULL, 1),
(11749, 'ARUL JUDSON', '23', '6385600579', '9994321859', 'aruljudson160@gmail.com', '2000-07-13', 22, '2', '2', 'PETER A', 'Fishermen', 10000.00, 3, 0.00, 25000.00, '5/3025,thangachimadam, ramanathapuram (Dis)', 'Choolaimedu, Bajanakovil 5th-street', '2301110008', '1', '1', 'upload_files/candidate_tracker/64995082702_Judson Resume.pdf', NULL, '1', '2023-01-12', 0, '', '3', '59', '2023-02-06', 0.00, '', '', '2023-02-10', '1', 'Fresher need to train a lot not open for TxxampC will not sustain and not open for our roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '7 days analysis then 5 month 5K and 3yrs 10-12K SA', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-11 03:05:30', 60, '2023-02-06 12:08:05', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11750, 'jeyaseelan', '31', '9094106468', '9344238502', 'jeyaseelan.2399@gmail.com', '1999-03-20', 23, '2', '2', 'mani', 'driver', 25000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2301110009', '1', '1', 'upload_files/candidate_tracker/72612878287_JEYASEELAN_RESUME.pdf', NULL, '1', '2023-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have basic knowledge in skills but the salary exp is very high need time to check with his family and confirm the terms if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2023-01-11 03:50:18', 1, '2023-01-11 03:57:19', 0, NULL, 1),
(11751, 'Sriyanka s', '31', '9080875450', '9943114005', 'sriyankas96@gmail.com', '1999-11-18', 23, '2', '2', 'Srinivasan s', 'Farmer', 25000.00, 1, 0.00, 20000.00, 'Chengalpat', 'Chengalpat', '2301110010', '1', '1', 'upload_files/candidate_tracker/56924758157_Sriyanka Resume-1.pdf', NULL, '1', '2023-01-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher no basics however we tried by giving for 2nd round on analysing  the training required but got rejected in 2nd round with kavya', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-11 05:36:59', 85, '2023-01-12 12:05:11', 0, NULL, 1),
(11752, '', '0', '9597601211', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301110011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-11 05:56:45', 0, NULL, 0, NULL, 1),
(11753, '', '0', '9363220322', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301110012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-11 05:58:57', 0, NULL, 0, NULL, 1),
(11754, 'THIRUMALAI KRISHNA KUMAR C V', '14', '9677013545', '', 'krishnathiru378@gmail.com', '2000-04-12', 22, '2', '2', 'Jayanthi', 'Nil', 18000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2301120001', '1', '1', 'upload_files/candidate_tracker/15047081747_THIRUMALAI KRISHNA.pdf', NULL, '1', '2023-01-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Family need is there he is currently earning 18K in home tution career Gap not much strong with the basics he will not able to join on our TxxampC ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-12 08:56:52', 99, '2023-01-12 11:46:37', 0, NULL, 1),
(11755, 'aravind kumar', '31', '9677216386', '', 'aravindkumars1202@gmail.com', '2000-02-12', 22, '2', '2', 'selvakumar', 'driver', 25000.00, 2, 0.00, 25000.00, 'chennai', 'chennai', '2301120002', '1', '1', 'upload_files/candidate_tracker/4330578854_Aravind\'s Resume.pdf', NULL, '1', '2023-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have 6 months Exp in React But not much strong  based on the 2nd round interview his focus is only on the salary and he is looking for change only for the salary growth will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2023-01-12 09:01:40', 1, '2023-01-12 11:56:47', 0, NULL, 1),
(11756, 'MANIKANDAN', '4', '9566266479', '9444203638', 'kannanmanikandan605@gmail.com', '2001-12-12', 21, '2', '2', 'Kannan', 'Police', 20000.00, 1, 0.00, 15000.00, 'Egmore Chennai', 'Egmore Chennai', '2301120003', '1', '1', 'upload_files/candidate_tracker/54488274785_mani resume (1).docx', NULL, '1', '2023-01-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Voice Process looking for non voice Process not suitable and no communication for non voice ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-12 11:04:59', 85, '2023-01-12 11:15:50', 0, NULL, 1),
(11757, '', '0', '9677013544', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301120004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-12 11:11:11', 0, NULL, 0, NULL, 1),
(11758, 'Prabha', '33', '8925275729', '', 'prabhaperumal2001@gmail.com', '2001-04-24', 21, '2', '2', 'A.perumal', 'Tree cutter', 45000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2301120005', '1', '2', 'upload_files/candidate_tracker/6970191420_Prabha Resume.pdf', NULL, '1', '2023-01-12', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Need time to give her confirmation for the voice process if she comes should give a try', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-01-12 12:00:29', 60, '2023-01-12 04:47:52', 0, NULL, 1),
(11759, 'Mohit V T', '13', '8056215005', '9444872037', 'mohitcandy2728@gmail.com', '1999-12-28', 23, '4', '2', 'Thilagavathi V', 'Housewife', 10000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2301120006', '', '1', 'upload_files/candidate_tracker/82684756261_New Resume1.docx', NULL, '1', '2023-01-12', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Having basic knowledge in PHP skills Sustainability need to check open  for TxxampC but seems to be doubtful with his futuristic plans', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-01-12 12:30:45', 60, '2023-01-12 04:47:33', 0, NULL, 1),
(11760, 'Alyan Raza O H', '4', '9488646975', '', 'alyanoosiraza@gmail.com', '2000-09-17', 22, '2', '2', 'Hifzur Rahman Oosi', 'Business', 50000.00, 3, 12000.00, 18000.00, 'Vaniyambadi', 'Chennai', '2301120007', '1', '2', 'upload_files/candidate_tracker/91588823236_Alyan Raza Resume.docx', NULL, '1', '2023-01-13', 30, '', '2', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '50-50 profile Has 3m of calling exp ..fresher to our role... communication ok.. have to give some training..  ', '1', '1', '', '1', '1', '', '2', '2023-01-16', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-12 01:14:32', 99, '2023-01-13 09:39:30', 0, NULL, 1),
(11761, 'pranav', '2', '8248694224', '', 'pranavf16@gmail.com', '1999-05-05', 23, '3', '2', 'n.dhanabagyam', 'teacher', 20000.00, 0, 0.00, 200000.00, 'chennai', 'chennai', '2301120008', '', '1', 'upload_files/candidate_tracker/16401808753_cv.pdf', NULL, '1', '2023-01-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-12 04:56:40', 1, '2023-01-12 05:12:43', 0, NULL, 1),
(11762, '', '0', '8238694224', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301120009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-12 05:13:47', 0, NULL, 0, NULL, 1),
(11763, 'Sasikesan', '16', '6379077683', '9952089852', 'Sasikesan2403@gmail.com', '2002-03-24', 20, '4', '2', 'Viswanathan', 'Labour ( steel company)', 10000.00, 2, 0.00, 13000.00, '51/81 thiruppalli street, sowcarpet, Chennai -1', '51/81 Thiruppalli Street, Sowcarpet, Chennai -1', '2301130001', '', '1', 'upload_files/candidate_tracker/24063558849_Sasikesan%20resume.docx', NULL, '1', '2023-01-13', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'No Communicaton... not suit for our role', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-13 10:40:40', 1, '2023-01-13 10:50:04', 0, NULL, 1),
(11764, 'arun pandiyan', '4', '8825804414', '9789928915', 'Aruntomm.30@gmail.com', '1998-05-30', 24, '2', '2', 'samy', 'retired', 20000.00, 1, 21000.00, 25000.00, 'chennai', 'chennai', '2301130002', '1', '2', 'upload_files/candidate_tracker/40216466964_resume.pdf.Arun (002).pdf', NULL, '1', '2023-01-13', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher to our role .. too much attitude.. sal exp high .. not suitable for our  profile...', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-13 10:58:56', 85, '2023-01-14 02:59:53', 0, NULL, 1),
(11765, 'Praveen kumar M', '14', '9952956573', '', 'praveensundaram98@gmail.com', '1998-01-08', 25, '2', '2', 'Meenakshi sundaram S', 'Pharmacist', 80000.00, 0, 0.00, 25000.00, 'Ayanavaram,chennai', 'Ayanavaram,chennai', '2301130003', '1', '1', 'upload_files/candidate_tracker/98755947957_Resume Praveen kumar-1.pdf', NULL, '1', '2023-01-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending the next level and i have given him a task to check his writing skills but left without any information\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-13 11:51:12', 99, '2023-01-14 10:07:53', 0, NULL, 1),
(11766, 'mohamed fazil', '31', '8838198998', '', 'fazilrommie@gmail.com', '1997-09-21', 25, '3', '2', 'shafaath nissa', 'desktop support', 30000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2301130004', '', '2', 'upload_files/candidate_tracker/90988120208_MOHAMED\'s Resume.pdf', NULL, '1', '2023-01-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-13 06:15:44', 1, '2023-01-13 08:09:28', 0, NULL, 1),
(11767, 'Antony Jerome D', '14', '9080816760', '', 'antony07061999@gmail.com', '1999-06-07', 23, '2', '2', 'David Emmanuel A', 'security', 500000.00, 1, 0.00, 15000.00, 'Kalugumalai', 'Chennai', '2301140001', '1', '1', 'upload_files/candidate_tracker/34046505714_resume1.pdf', NULL, '1', '2023-01-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Having internship Exp but not much strong with the basics not open for TxxampC will not  sustain not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-14 04:47:10', 85, '2023-01-16 11:34:25', 0, NULL, 1),
(11768, 'Jegan Kumar W', '31', '9360266196', '', 'jeganjorden33@gmail.com', '2000-03-29', 22, '2', '2', 'William Doss M', 'Supervisor', 120000.00, 2, 0.00, 15000.00, 'Trichy', 'Vellacherry, Chennai', '2301140002', '1', '1', 'upload_files/candidate_tracker/82270289319_jegan_kumar_resume.pdf', NULL, '1', '2023-02-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much strong with the basics need time to give his confirmation on the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-14 05:31:31', 85, '2023-02-15 10:40:32', 0, NULL, 1),
(11769, 'abrar mohamed a', '14', '9789943164', '9500174077', 'abrarcastro74@gmail.com', '1993-12-07', 29, '2', '1', 'syed rabiyammal', 'housewife', 40000.00, 3, 0.00, 20000.00, 'parrys, chennai', 'parrys, chennai', '2301140003', '1', '1', 'upload_files/candidate_tracker/69281480866_Abrar_Cv.pdf', NULL, '1', '2023-01-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Almost7.8 yrs Exp in different domian totally fresher to the IT,Need to train a lot ,will not sustain due to lot of commitments Married and joining in the role of internship Employment for 3yrs will not sustain and not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-14 07:22:50', 85, '2023-01-16 09:43:58', 0, NULL, 1),
(11770, 'Prakash', '14', '9790800679', '7299501094', 'prakashmalar24@gmail.com', '2001-04-24', 21, '3', '2', 'malar', 'house wife', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2301150001', '', '1', 'upload_files/candidate_tracker/7473419570_Prakash Resume.pdf', NULL, '1', '2023-01-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-15 08:51:41', 1, '2023-01-15 08:58:05', 0, NULL, 1),
(11771, 'Arshiya Rizwana', '20', '8939785236', '9884842143', 'arshiyarizwana@yahoo.com', '1991-07-23', 31, '2', '1', 'Fahad hussain', 'Interiors', 40000.00, 1, 0.00, 25000.00, 'Royapettah', 'Royapettah', '2301160001', '1', '2', 'upload_files/candidate_tracker/28481467662_arshiya resume.docx', NULL, '1', '2023-01-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-16 12:53:13', 85, '2023-01-18 09:36:27', 0, NULL, 1),
(11772, '', '0', '9789644624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301160002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-16 08:39:48', 0, NULL, 0, NULL, 1),
(11773, 'vignesh n', '13', '9176367987', '', 'vv917636@gmail.com', '1998-05-29', 24, '4', '2', 'Narayanan', 'rtd officer', 20000.00, 2, 25000.00, 35000.00, 'chennai', 'chennai', '2301170001', '', '2', 'upload_files/candidate_tracker/12464199495_RESUME_VIKI.pdf', NULL, '1', '2023-01-17', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance Fresher for Python have Exp in PHP but not open for the same,Attitude Salary exp is high 60 Days notice not suitable will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-17 10:30:36', 1, '2023-01-17 10:41:02', 0, NULL, 1),
(11774, 'Malarvizhi', '23', '9940648297', '9994024583', 'manikandanwon@gmail.com', '1990-03-07', 32, '3', '1', 'Manikandan', 'Software engineer', 50.00, 1, 0.00, 10.00, 'Shanthi Nagar, Ramapuram', 'Shanthi Nagar, Ramapuram', '2301170002', '', '1', 'upload_files/candidate_tracker/1639547981_MalarCV.pdf', NULL, '1', '2023-01-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for IT have Exp in teaching field long Career Gap due to marriage,no basics need to train from the beginning,Husband is into IT  and high earnings will not sustain and not suitable\n', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-17 02:33:04', 1, '2023-01-17 02:41:17', 0, NULL, 1),
(11775, 'Balasubramani R', '14', '8610264248', '', 'balaaero4693@gmail.com', '1993-07-04', 29, '2', '2', 'Rajagopal', 'Retired police officer', 30000.00, 1, 0.00, 5000.00, 'Karur', 'Karur', '2301170003', '1', '1', 'upload_files/candidate_tracker/16953648854_Bala 1.pdf', NULL, '1', '2023-01-18', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT have Exp in core Not much open for TxxampC if he comes back let us try ', '2', '1', '', '1', '1', '', '2', '2023-01-20', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-17 06:20:38', 85, '2023-01-18 09:36:42', 0, NULL, 1),
(11776, '', '0', '8147257154', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301180001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-18 10:10:38', 0, NULL, 0, NULL, 1),
(11777, 'Badhri Nath', '6', '8610324291', '9944417881', 'www.badhrinath04092000@gmail.com', '2000-09-04', 22, '1', '2', 'Koteeswaran', 'Cloth business', 120000.00, 1, 13000.00, 16000.00, 'Vellore', 'Vellore', '2301180002', '', '2', 'upload_files/candidate_tracker/29325587608_BADHRINATH-1.pdf', NULL, '1', '2023-01-18', 0, 'P1370', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50-50 Profile ...internal  ref.. has some exp in collection .. long distance..  can be trained.. have sustainability doubts.. let you check and update your inputs..', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-18 11:10:20', 85, '2023-01-18 05:08:06', 0, NULL, 1),
(11778, 'Hariharan A', '13', '6381117205', '', 'harimanachai77@gmail.com', '2002-05-16', 20, '3', '1', 'Sp.Ananthan', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Karaikudi', '2301180003', '', '1', 'upload_files/candidate_tracker/95832222671_Hariharan_A_Resume_15-12-2022-07-36-50.pdf', NULL, '1', '2023-01-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-18 11:28:47', 1, '2023-01-18 11:36:22', 0, NULL, 1),
(11779, 'tharun raj y', '23', '8428897599', '', 'tharunyuvarajan28@gmail.com', '2001-07-28', 21, '3', '2', 'm g yuvaraj', 'supervisor', 350000.00, 1, 0.00, 350000.00, 'chennai', 'chennai', '2301180004', '', '1', 'upload_files/candidate_tracker/39658897898_Resumeac.pdf', NULL, '2', '2023-12-26', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-18 12:30:48', 104, '2023-12-26 01:06:27', 0, NULL, 1),
(11780, 'RajaRajeswari A', '4', '6380082818', '9840110577', 'rajarajeswari1013@gmail.com', '2001-12-10', 21, '2', '2', 'Anandan', 'Driver', 30000.00, 2, 15000.00, 20000.00, 'No.55,5th Street north Jaganathan Nagar Villivakam', 'No.55,5th Street north Jaganathan Nagar Villivakam', '2301180005', '1', '2', 'upload_files/candidate_tracker/14744801055_RajaRajeswari Anandan.pdf', NULL, '1', '2023-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sustainability 4 months 2 companies travelled this is the 3rd one salary Exp is very high than her exp will not sustain and not suitable\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-18 12:37:25', 85, '2023-01-18 12:59:09', 0, NULL, 1),
(11781, 'Karthik S', '4', '9080887676', '', 'karthiksrinaga26@gmail.com', '1998-10-26', 24, '2', '2', 'Srinivasan R', 'Chef', 37000.00, 2, 0.00, 27000.00, 'Chennai', 'Vadapalani', '2301180006', '1', '1', 'upload_files/candidate_tracker/71815365087_CV_2023011717035764.pdf', NULL, '1', '2023-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our Domain have 6 months Exp as ground staff,looking for IT but no basic skill knowledge checked for Telecalling but not open for that Salary Exp is very high for all the profiles will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-18 01:02:00', 85, '2023-01-18 01:14:26', 0, NULL, 1),
(11782, 'Vences Laus F', '5', '9150122154', '', 'ernestovences96@gmail.com', '1996-04-06', 26, '2', '2', 'Felix and Malar', 'Fishing', 15000.00, 2, 18000.00, 23000.00, 'Karankadu, Ramanathapuram', 'Choolaimedu, Chennai', '2301180007', '1', '2', 'upload_files/candidate_tracker/13674312330_vences resume updated.pdf', NULL, '1', '2023-01-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-18 01:22:04', 85, '2023-01-18 06:27:21', 0, NULL, 1),
(11783, 'Vishwajith K R', '2', '8300728274', '9080729039', 'vishwakr1998@gmail.com', '1998-01-08', 25, '2', '2', 'Krishnan C', 'Driver', 3000.00, 1, 0.00, 15000.00, 'Kanniyakumari', 'Chennai', '2301180008', '1', '1', 'upload_files/candidate_tracker/43897541672_vishwajith (1).pdf', NULL, '1', '2023-01-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for TxxampC,Fresher for IT Min Salary Exp is very high as his freinds are into same React with pay around 20K will not sustain in our roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-18 03:29:00', 85, '2023-01-20 09:45:49', 0, NULL, 1),
(11784, 'Vijay Kumar r', '4', '8148115351', '', 'Vijaykumar041@gmail.com', '1998-11-06', 24, '2', '1', 'Chv Raghu', 'Business', 200000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2301190001', '1', '2', 'upload_files/candidate_tracker/31362747394_vijay Updated resume.pdf', NULL, '1', '2023-01-19', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average Have Exp in Calling for Loan Collections 5050 Can give a try for our sales but left without Attending the interview 2nd round', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-19 11:02:50', 85, '2023-01-20 09:46:07', 0, NULL, 1),
(11785, '', '0', '8148115353', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301190002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-19 11:09:42', 0, NULL, 0, NULL, 1),
(11786, 'Gopalakrishnan', '4', '6384988351', '', 'kgopal66@gmail.com', '1994-01-14', 29, '2', '2', 'Mangdran', 'Drive', 20000.00, 1, 0.00, 12000.00, 'Pattukkottai', 'Pattukkittai', '2301190003', '1', '1', 'upload_files/candidate_tracker/63883742926__Resume.pdf', NULL, '1', '2023-01-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for team non profile domin also not suite mechanical field only expected field', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-19 11:46:42', 85, '2023-01-20 09:46:21', 0, NULL, 1),
(11787, 'Vijay v', '31', '6383364769', '', 'viratvijay2401@gmail.com', '2000-01-24', 22, '3', '2', 'Venkatesh', 'Farmer', 25000.00, 2, 0.00, 10000.00, 'Chennai', 'Velachery', '2301190004', '', '1', 'upload_files/candidate_tracker/59119273070_vijay.v 2 (2) (2).doc', NULL, '1', '2023-01-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-19 01:28:45', 1, '2023-01-19 01:32:56', 0, NULL, 1),
(11788, 'Mahalakshmi Murugesan', '31', '7338917520', '', 'mahalakshmimurugesan493@gmail.com', '2002-05-19', 20, '2', '2', 'N.Murugesan', 'Steel polished (daily wages)', 8000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2301190005', '1', '1', 'upload_files/candidate_tracker/3190371140_Resume.pdf', NULL, '1', '2023-01-20', 0, '', '3', '59', '2023-01-25', 120000.00, '', '', '1970-01-01', '2', '7 days analysis then 5 month 5K and 3yrs 10-12K SA final round interviewed by Gokul', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-19 07:01:55', 85, '2023-01-20 09:48:52', 0, NULL, 1),
(11789, '', '0', '9150264357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-19 11:05:59', 0, NULL, 0, NULL, 1),
(11790, '', '0', '8122107509', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301200001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-20 06:04:22', 0, NULL, 0, NULL, 1),
(11791, 'Karmugilan P', '13', '6385390781', '', 'karmugilanp611@gmail.com', '2001-05-10', 21, '3', '2', 'Palanivel', 'Daily wages', 10500.00, 2, 0.00, 18000.00, 'Cuddalore', 'Chennai', '2301200002', '', '1', 'upload_files/candidate_tracker/58626547462_Karmugilan P.docx', NULL, '1', '2023-01-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-20 06:06:23', 1, '2023-01-20 06:14:18', 0, NULL, 1),
(11792, 'Amjath Abdul Sadhar', '23', '7667911901', '8667515441', 'amjathabdul970@gmail.com', '1997-06-03', 25, '4', '2', 'Shahul Hameed', 'Cooking master', 20000.00, 2, 0.00, 20000.00, 'Tirunelveli', 'Tirunelveli', '2301200003', '', '1', 'upload_files/candidate_tracker/25165223581_AmjResume.pdf', NULL, '3', '2023-01-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-20 06:31:37', 1, '2023-01-20 06:37:10', 0, NULL, 1),
(11793, '', '0', '7871991111', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301200004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-20 06:33:10', 0, NULL, 0, NULL, 1),
(11794, 'dheepakraaj r', '13', '9360737038', '', 'rdheepakraaj123@gmail.com', '2001-07-28', 21, '2', '2', 'ramesh', 'civil supervisor', 25000.00, 0, 0.00, 30000.00, 'chennai', 'chennai', '2301200005', '21', '1', 'upload_files/candidate_tracker/67906531181_Dheepak\'s Resume.pdf', NULL, '1', '2023-01-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-20 06:45:03', 1, '2023-01-22 07:32:38', 0, NULL, 1),
(11795, '', '0', '6381903104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301200006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-20 08:17:51', 0, NULL, 0, NULL, 1),
(11796, 'Durga shankar Mohanty', '13', '7970034740', '', 'dsmdurga00@gmail.com', '2000-04-14', 22, '3', '2', 'Saraswati Mohanty', 'House maker', 4500.00, 5, 0.00, 300000.00, 'Korba Chhattisgarh', 'Chennai', '2301210001', '', '1', 'upload_files/candidate_tracker/64601650436_Durga shankar Resume.pdf', NULL, '2', '2023-01-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-21 12:57:18', 1, '2023-01-21 01:01:57', 0, NULL, 1),
(11797, 'Hariprasath K', '23', '9750728039', '', 'Hariprasath2912@gmail.com', '1999-12-29', 23, '2', '2', 'M.Krishnasamy', 'Labour', 95000.00, 2, 0.00, 15000.00, 'Salem', 'Salem', '2301220001', '1', '1', 'upload_files/candidate_tracker/49514563496_hp resume.docx', NULL, '1', '2023-01-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 6 months Exp in Angular not much comfort in TxxampC seems to be slow Sustainability doubts not suitable \n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-22 08:54:55', 85, '2023-01-23 04:42:04', 0, NULL, 1),
(11798, 'R. KABILAN', '6', '9087799882', '', 'KabiPriya100@gmail.com', '2000-08-07', 22, '2', '2', 'V. RAVI', 'Former', 20000.00, 1, 18000.00, 23000.00, 'Kallakurichi', 'Thambaram, chennai', '2301230001', '1', '2', 'upload_files/candidate_tracker/29315079415_KABILAN RESUME 2 (1).pdf', NULL, '1', '2023-01-23', 20, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-23 11:24:12', 85, '2023-01-23 03:23:29', 0, NULL, 1),
(11799, 'anusha s', '14', '9360002174', '', 'anushasugumar2001@gmail.com', '2001-06-19', 21, '3', '2', 'sugumar t', 'provisional store', 12000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2301230002', '', '1', 'upload_files/candidate_tracker/42385525829_Anusha_S_CV_.docx', NULL, '2', '2023-01-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-23 11:54:08', 1, '2023-01-23 12:08:41', 0, NULL, 1),
(11800, 'David s', '6', '8300843807', '7418013267', 'aerod85@gmail.com', '1996-11-07', 26, '2', '2', 'S chithra', 'House wife', 15000.00, 6, 0.00, 15000.00, '5/76, karaikalam, Poyyamani, kulithalai, karur(dt)', '40/9b,ranganathapuram, Tambaram', '2301230003', '2', '1', 'upload_files/candidate_tracker/86447890326_david resume new 2023.pdf', NULL, '1', '2023-01-23', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-23 12:02:32', 85, '2023-01-23 03:21:38', 0, NULL, 1),
(11801, 'creek marshall dhanapal', '11', '8667499623', '9940643999', 'marshyrx@gmail.com', '2000-08-23', 22, '1', '2', 'prabaakaran', 'ashok leyland', 50000.00, 1, 15000.00, 20000.00, 'perambur', 'perambur', '2301230004', '', '2', 'upload_files/candidate_tracker/50879967793_Maharaja Resume (4).docx', NULL, '1', '2023-01-23', 0, '2301230004', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-23 12:10:00', 1, '2023-01-23 12:33:51', 0, NULL, 1),
(11802, 'Balaji.s', '5', '9952410663', '6379793007', 'Balajibala2119@gmail.com', '1995-01-21', 28, '3', '2', 'R. Srinivasan', 'Register office', 35000.00, 1, 0.00, 18000.00, 'Trichy', 'Cromepet', '2301230005', '', '2', 'upload_files/candidate_tracker/64751753935_BALAJI RESUME 1.pdf', NULL, '1', '2023-01-23', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-23 02:30:30', 60, '2023-01-23 06:55:58', 0, NULL, 1),
(11803, 'Aswin E', '31', '9444378001', '9087386065', 'aswin9277@gmail.com', '1999-01-09', 24, '2', '2', 'S.E.Edwin Sam', 'Ex-servicemen', 25000.00, 1, 0.00, 30000.00, 'Nagercoil', 'Annanager, chennai', '2301230006', '1', '1', 'upload_files/candidate_tracker/39238699391_ASWIN RESUME 1.pdf', NULL, '1', '2023-01-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basics looking only for the salary growth will not sustain in a long run not much comfort in TxxampC not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-23 04:16:37', 85, '2023-01-24 05:40:11', 0, NULL, 1),
(11804, 'BOMMU SURENDAR S', '31', '9952473793', '', 'surendarms1999@gmail.com', '1999-09-27', 23, '3', '2', 'SRINIVASAN', 'Weaver', 300000.00, 1, 0.00, 17000.00, 'Salem', 'Chennai', '2301230007', '', '1', 'upload_files/candidate_tracker/69803556489_White Simple Student Cv Resume (5).pdf', NULL, '1', '2023-01-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-23 09:35:23', 1, '2023-01-24 02:42:41', 0, NULL, 1),
(11805, 'Prasanth p', '4', '9840337132', '', 'prasanthrockca66@gmail.com', '2002-03-07', 20, '1', '2', 'Pushparaj k', 'Tinkerer', 20000.00, 1, 0.00, 16000.00, 'Mylapore Chennai', 'Mylapore', '2301240001', '', '1', 'upload_files/candidate_tracker/26200617725_50036_prasanthresume..docx', NULL, '1', '2023-01-24', 0, 'P1394', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication Sustainability and pressure handling doubts in our roles Not suitable\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-24 10:00:46', 1, '2023-01-24 10:04:32', 0, NULL, 1),
(11806, 'Raghul V', '11', '8939215172', '9962830763', 'Raghulraghav2000@gmail.com', '2000-11-23', 22, '3', '2', 'Veera Ragavan', 'Part of big organization', 45000.00, 1, 15000.00, 15000.00, 'Tondiarpet, Chennai', 'Tondiarpet, Chennai', '2301240002', '', '2', 'upload_files/candidate_tracker/47840095636_Raghul New Resume (2).docx', NULL, '1', '2023-01-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No ideas in the recruitment but worked for 6 months in recruitment,not suitable will not sustain', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-24 11:07:06', 1, '2023-01-24 11:33:10', 0, NULL, 1),
(11807, '', '0', '9884883618', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301240003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-24 11:07:09', 0, NULL, 0, NULL, 1),
(11808, 'madhan kumar', '6', '9003732996', '', 'madhanpavithra@gmail.com', '2001-04-05', 21, '2', '2', 'ramar', 'business', 30000.00, 1, 20000.00, 15000.00, 'erode', 'erode', '2301240004', '1', '2', 'upload_files/candidate_tracker/97348456423_madhan kumar resume.pdf', NULL, '1', '2023-01-25', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-24 06:21:53', 85, '2023-01-25 03:24:53', 0, NULL, 1),
(11809, 'Asmath nisha', '6', '7339375396', '9585215402', 'Abdulasmah892@gmail.com', '2002-07-10', 20, '2', '2', 'Abdul azeez.M', 'Driver', 6000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2301240005', '1', '1', 'upload_files/candidate_tracker/45372302899_asmathnisha3.docx', NULL, '1', '2023-01-25', 0, '', '3', '59', '2023-01-30', 138948.00, '', '4', '2023-03-23', '1', 'Selected for Thanjavur Consultant Role', '5', '2', '1', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-24 06:46:12', 60, '2023-01-27 07:08:26', 0, NULL, 1),
(11810, '', '0', '8825977365', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301240006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-24 09:05:47', 0, NULL, 0, NULL, 1),
(11811, 'M. Hemavathi', '29', '9941837907', '', 'hemamvathi5@gmail.com', '2001-09-14', 21, '2', '2', 'G. Mohan', 'Rks', 25000.00, 0, 25000.00, 25000.00, 'Chennai', 'Chennai', '2301240007', '24', '2', 'upload_files/candidate_tracker/38249130044_HEMA RESUME (1).pdf', NULL, '1', '2023-01-27', 28, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '3', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-24 11:12:43', 1, '2023-01-25 07:48:35', 0, NULL, 1),
(11812, '', '0', '9080870774', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-25 09:38:25', 0, NULL, 0, NULL, 1),
(11813, 'Balaji D', '31', '7871552105', '9381883469', 'balajiofficial1437@gmail.com', '2000-10-05', 22, '2', '2', 'Parent', 'Daily wages', 25000.00, 1, 0.00, 15000.00, 'Choolaipallam,m.g.r nagar , chennai', 'Choolaipallam,m.g.r nagar , chennai', '2301250002', '1', '1', 'upload_files/candidate_tracker/99278992040_pdf_20230102_070344_0000.pdf', NULL, '1', '2023-01-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Basic Skills Seems to be slow and will handle our work pressure not suitable will not sustain', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-25 09:49:05', 85, '2023-01-25 10:30:25', 0, NULL, 1),
(11814, 'Renold A', '13', '7395836125', '8778800829', 'Renoldoantony143@gmail.com', '1997-04-28', 25, '4', '2', 'Antony', 'Fisherman', 15000.00, 4, 0.00, 15000.00, 'Kanniya kumari', 'Velachery', '2301250003', '', '1', 'upload_files/candidate_tracker/76320232974_renoldo cv.pdf', NULL, '1', '2023-01-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not open for TxxampC No basics Focusing only on the salary not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-25 12:29:30', 1, '2023-01-25 12:34:26', 0, NULL, 1),
(11815, 'Aravind S', '16', '9087380976', '', 'aravind20@gmail.com', '1984-04-15', 38, '3', '2', 'Sethuraman', 'Retired', 50000.00, 1, 13000.00, 17000.00, 'Trichy', 'Chennai', '2301250004', '', '2', 'upload_files/candidate_tracker/77056663808_Resume.docx', NULL, '1', '2023-01-25', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Frequent job changes aged not suitable for our roles will not sustain and handle our work roles', '3', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-25 01:36:07', 1, '2023-01-25 02:14:08', 0, NULL, 1),
(11816, '', '0', '9344910737', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301250005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-25 03:09:09', 0, NULL, 0, NULL, 1),
(11817, 'A. Hassan Mubarak', '6', '9500367342', '8870964355', 'hassanmubarak2002@gmail.com', '2002-12-09', 20, '2', '2', 'M. Abdul Rahman', 'Dubai', 30000.00, 1, 0.00, 20000.00, 'No1 Anna nager 10th street Vallam Thanjavur', 'Vallam', '2301250006', '1', '1', 'upload_files/candidate_tracker/46656788890_hassan mubarak resume.docx', NULL, '1', '2023-01-27', 0, '', '3', '59', '2023-02-03', 156000.00, '', '4', '2023-05-06', '1', 'Selected for Thanjavur Consultant role', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-25 06:07:51', 60, '2023-02-01 07:20:15', 0, NULL, 1),
(11818, 'Powlina', '20', '8838301226', '', 'Pwlnramya@gmail.com', '1997-06-10', 25, '2', '2', 'Muralikumar', 'Welder', 40000.00, 1, 17000.00, 23000.00, 'Chennai', 'Chennai', '2301270001', '1', '2', 'upload_files/candidate_tracker/47786283216_Resume Powlina M-2.pdf', NULL, '1', '2023-01-27', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Customer Support Backend Can be trained for our roles,need to conduct the final round with Gokul ', '5', '1', '', '1', '8', '', '2', '2023-01-28', '1', '7', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-01-27 10:24:48', 60, '2023-01-27 10:38:01', 0, NULL, 1),
(11819, 'Akshay EK', '6', '7449088019', '', 'akshay18a145@gmail.com', '2001-05-17', 21, '1', '2', 'Hari E', 'Clerk', 11000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2301270002', '', '1', 'upload_files/candidate_tracker/69873923947_AKSHAY .E.K ( Resume).docx', NULL, '1', '2023-01-27', 0, 'P1394', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'FIELD NOT INTERESTED', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-27 12:13:20', 85, '2023-01-27 04:49:01', 0, NULL, 1),
(11820, 'V M Deepak Kumar', '6', '9444356367', '', 'Kdeepak00974@gmail.com', '2001-02-24', 21, '1', '2', 'V. Manickam', 'Business', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2301270003', '', '1', 'upload_files/candidate_tracker/56159260066_V M Deepak Kumar _January13-035014PM.pdf', NULL, '1', '2023-01-27', 0, '', '5', '57', NULL, 0.00, '', '0', NULL, '1', 'already have offer another company , fresher exp 16k', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-27 12:14:44', 1, '2023-01-27 12:30:44', 0, NULL, 1),
(11821, '', '0', '7358355362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301270004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-27 05:54:10', 0, NULL, 0, NULL, 1),
(11822, 'kishore', '6', '9360879393', '', 'kishorerenu17@gmail.com', '2002-04-17', 20, '2', '2', 'renugopal', 'farmer', 12000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2301280001', '2', '1', 'upload_files/candidate_tracker/67751107536_Kishore20new.docx', NULL, '1', '2023-01-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Discussed And Suggested The Salary Breakup And he  Not Ready and  Looking For High Salary', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-28 09:18:58', 60, '2023-01-30 03:05:27', 0, NULL, 1),
(11823, 'Swetha V', '4', '7010091216', '8072758617', 'swethavijayan98@gmail.com', '1998-11-10', 24, '2', '1', 'S.Johnson', 'Electrical & plumbing', 30000.00, 1, 15000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2301280002', '1', '2', 'upload_files/candidate_tracker/98666129579_Resume_15_03_2022_02_17_05_PM (1).pdf', NULL, '1', '2023-01-28', 0, '', '4', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our roles sustainability doubts in a long Communication ok 5050 Kindly check and let me know your ijnputs', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-28 10:26:15', 60, '2023-01-30 03:44:22', 0, NULL, 1),
(11824, 'Mohamed Wajid', '13', '7708750358', '9600430175', 'mmdwajid@gmail.com', '1995-04-02', 27, '3', '2', 'Mohamed Muneer', 'Rtd Govt officer', 10000.00, 3, 0.00, 20000.00, 'Chennai', 'Bengaluru', '2301280003', '', '1', 'upload_files/candidate_tracker/88380419205_MOHAMED WAJID .docx', NULL, '1', '2023-01-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for IT,Lot of Previous Exp in Calling but no sustainability,Looking out for bangalore will not sustain for a long in Chennai Not suitable', '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-28 11:06:07', 1, '2023-01-28 11:09:59', 0, NULL, 1),
(11825, '', '0', '8889990012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301280004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-28 03:40:57', 0, NULL, 0, NULL, 1),
(11826, 'Praveen Kumar', '5', '8122383938', '', 'praveenramesh33@gmail.com', '1999-12-01', 23, '2', '2', 'Latha', 'Export company', 30000.00, 0, 23000.00, 26000.00, 'Chennai', 'Chennai', '2301280005', '1', '2', 'upload_files/candidate_tracker/88246882498_praveen resume.docx', NULL, '1', '2023-01-30', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-28 05:16:20', 85, '2023-01-31 02:45:59', 0, NULL, 1),
(11827, 'Swetha', '11', '9025662943', '8637640190', 'Swethashankar3012@email.com', '1998-12-30', 24, '2', '1', 'Shankar', 'Vekateshvara enterprises', 20000.00, 0, 15000.00, 25000.00, 'Chennai', 'Chennai', '2301290001', '1', '2', 'upload_files/candidate_tracker/42476150577_SWETHA S RESUME.pdf', NULL, '3', '2023-01-30', 10, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-29 07:01:22', 85, '2023-01-31 02:46:12', 0, NULL, 1),
(11828, 'R.Bhavitha', '14', '9384148239', '9080745760', 'bhavithar165@gmail.com', '2001-03-17', 21, '3', '2', 'R.Ganga Prasad Reddy', 'Employee', 35000.00, 1, 0.00, 45000.00, 'Chennai', 'Chennai', '2301300001', '', '1', 'upload_files/candidate_tracker/30835513813_R.Bhavitha_Resume.pdf', NULL, '1', '2023-01-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to complete her graduation final semester Holding several offers with good pay will not sustain and not suitable for our positions', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-30 12:10:53', 1, '2023-01-30 12:19:26', 0, NULL, 1),
(11829, 'PAVITHRA.M', '4', '8778514655', '7358006435', 'PaviPavithra5793@gmail.com', '2008-01-30', 0, '2', '2', 'Velakanni .m', 'Cooli', 8000.00, 2, 13000.00, 14000.00, 'Vyasarpadi', 'Vyasarpadi', '2301300002', '1', '2', 'upload_files/candidate_tracker/5895091191_pavithra30thjan.pdf', NULL, '3', '2023-01-30', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have a few months exp in calling sustainability doubts on the profile family need is there Can give a try kindly check and let me know your inputs', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-30 12:53:20', 85, '2023-01-31 04:38:03', 0, NULL, 1),
(11830, 'Richard diwakar E', '5', '9092388124', '7358505838', 'Richarddiwakare@gmail.com', '1996-11-18', 26, '3', '2', 'ebenezer', 'security', 20000.00, 1, 25000.00, 28000.00, 'henna', 'chennai', '2301300003', '', '2', 'upload_files/candidate_tracker/73816980817_richard resume June 21.docx', NULL, '1', '2023-01-30', 0, '', '3', '59', '2023-02-06', 345696.00, '', '7', '1970-01-01', '1', 'Selected for Sarath Team with PF/PT', '5', '1', '4', '1', '1', '1', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-30 02:32:49', 60, '2023-02-01 07:18:02', 0, NULL, 1),
(11831, 'Sowmiya', '11', '7550271615', '8925291613', 'abisowmiya98@gmail.com', '1998-06-16', 24, '2', '2', 'Sekar', 'Self employee', 20000.00, 1, 0.00, 25000.00, 'Mogiappar East', 'Mogiappar East', '2301300004', '1', '2', 'upload_files/candidate_tracker/85941398060_sowmiya+resume+(2).pdf', NULL, '1', '2023-02-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 10 months Exp in IT Recruitment and looking for 23K CTC holding an offer for 20K,looking for a salary hike will not join and not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-30 02:41:45', 85, '2023-02-01 02:53:32', 0, NULL, 1),
(11832, 'Mohamed Ibrahim. A', '31', '7845422016', '9360174646', 'Mohamedibm2016@gmail', '2000-03-31', 22, '2', '2', 'Anwar khan', 'Driver', 8000.00, 2, 0.00, 30000.00, 'Thanjavur', 'Chennai', '2301300005', '1', '1', 'upload_files/candidate_tracker/2439369954_Mohamed Ibrahim.pdf', NULL, '1', '2023-01-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Technical Round Rejected by Kaviya Fresher seems to be slow not suitable\n', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-30 06:54:27', 85, '2023-01-31 10:08:04', 0, NULL, 1),
(11833, 'MOHAMMED HUSSAIN', '16', '9345043403', '9003143583', 'askarajju105@gmail.com', '1999-03-23', 23, '2', '2', 'Mohamed Habibullah ( father )', 'Waiter', 12000.00, 1, 13000.00, 16000.00, 'Old washermenpet chennai 21', 'Old washermenpet chennai 21', '2301310001', '1', '2', 'upload_files/candidate_tracker/52197178029_New Updated resume.docx', NULL, '1', '2023-01-31', 0, '', '3', '59', '2023-02-01', 200100.00, '', '', '1970-01-01', '2', 'Selected for MIS Role by Gokul final round have 8 months exp in customer support then career Gap Salary Exp is min 15-16K TH,candidate didnt give his confirmation for joining', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-31 09:51:39', 85, '2023-01-31 10:07:53', 0, NULL, 1),
(11834, 'geetha', '4', '9176403622', '', 'skgeethu19@gmail.com', '1992-11-01', 30, '2', '1', 'baskar', 'business', 25000.00, 3, 18000.00, 18000.00, 'chennai', 'chennai', '2301310002', '2', '2', 'upload_files/candidate_tracker/38861390198_Geetha Resume.pdf', NULL, '1', '2023-01-31', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have a long career Gap 5050 Interviewed by Banu in 2nd round  Need to check for MF B2B too\n', '1', '2', '0', '1', '8', '0', '2', '2023-02-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-31 10:51:13', 1, '2023-01-31 11:01:00', 0, NULL, 1),
(11835, 'B Tamizharasu', '6', '9789556422', '9965626422', 'rbtamizh@gmail.com', '1997-07-31', 25, '2', '2', 'Balan', 'Driver', 30000.00, 1, 22000.00, 18000.00, 'Namakkal', 'Namakkal', '2301310003', '1', '2', 'upload_files/candidate_tracker/82081582724_tamizh 2023 res.pdf', NULL, '1', '2023-02-01', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-31 10:51:35', 85, '2023-02-01 02:54:31', 0, NULL, 1),
(11836, 'Israth yasmin.K', '4', '6385924076', '6385924071', '18co2256@gmail.com', '2001-04-03', 21, '2', '2', 'Khather khan.R', 'None', 10000.00, 1, 12000.00, 15000.00, '11A Akilangarai street Vallam, Thanjavur', 'Vallam ,Thanjavur', '2301310004', '1', '2', 'upload_files/candidate_tracker/22746176395_pdf.pdf', NULL, '1', '2023-02-01', 20, '', '3', '59', '2023-02-06', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-31 11:58:29', 60, '2023-02-04 03:36:35', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11837, 'Harish', '4', '8124437021', '', 'harishjustin3@gmail.com', '2001-11-07', 21, '2', '2', 'S Tamil Selvan', 'Typewriting Services', 10000.00, 1, 0.00, 14000.00, 'Saidapet', 'Saidapet', '2301310005', '1', '1', 'upload_files/candidate_tracker/53028595960_Harish.pdf', NULL, '1', '2023-02-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preparing For Polica Exams And Time Being Looking For A Job Will Not Sustain And Not Suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-31 01:09:02', 85, '2023-02-01 02:56:35', 0, NULL, 1),
(11838, 'karan', '4', '9498020674', '', 'karanvenkatb1539@gmail.com', '2002-02-01', 21, '2', '2', 'baskar', 'sub inspector', 40000.00, 2, 0.00, 14000.00, 'saidapet', 'saidapet', '2301310006', '1', '1', 'upload_files/candidate_tracker/17049246471_B.V.KARAN VENKAT(1) (1).pdf', NULL, '1', '2023-02-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Preparing For Polica Exams And Time Being Looking For A Job Will Not Sustain And Not Suitable', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-01-31 01:19:32', 1, '2023-02-01 12:06:04', 0, NULL, 1),
(11839, 'varshini', '5', '7550015244', '', 'vpughaelendhi@g.mail.com', '2000-06-07', 22, '2', '2', 'pughalendhi', 'late', 20000.00, 1, 210000.00, 25000.00, 'chennai', 'chennai', '2301310007', '1', '2', 'upload_files/candidate_tracker/90493510300_varshini .pdf', NULL, '1', '2023-02-04', 30, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to schedule for a virtual round have exp in telecalling credit card Sales Need to check with Karthika for ESales 30 days notice', '5', '1', '0', '1', '8', '0', '2', '2023-02-06', '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-01-31 03:30:20', 1, '2023-02-04 11:03:23', 0, NULL, 1),
(11840, 'Arif mohamed', '26', '9940027900', '', 'josepharif379@gmail.com', '2001-02-20', 21, '2', '2', 'Khader fizal', 'Working', 20000.00, 2, 25000.00, 27000.00, 'Chennai', 'Chennai', '2302010001', '1', '2', 'upload_files/candidate_tracker/38281668652_CV_2023013119300250.pdf', NULL, '1', '2023-02-01', 0, '', '3', '59', '2023-02-09', 240000.00, '', '', '2023-02-14', '1', 'Selected for MIS Life Renewal in Staff Role', '3', '1', '1', '1', '8', '', '2', '2023-02-03', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-01 07:45:15', 60, '2023-02-08 12:39:41', 0, NULL, 1),
(11841, 'G.Richards', '16', '7299231481', '', 'richardsgodson1998@gmail.com', '1998-05-29', 24, '2', '2', 'D.George', 'Driver', 20000.00, 1, 10000.00, 15000.00, 'Chennai,Mylapore', 'Chennai,Mylapore', '2302010002', '1', '2', 'upload_files/candidate_tracker/96887179215_Richards Resume New.docx', NULL, '1', '2023-02-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Average Communication Lack of interest towards the work Long Career gap focus only on the salary will not sustain and not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '4', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-01 10:30:28', 85, '2023-02-01 02:58:40', 0, NULL, 1),
(11842, 'G. Iwin Franklin', '16', '9080345662', '', 'iwinfranklin@gmail.com', '1996-11-07', 26, '2', '2', 'D. George', 'Driver', 20000.00, 1, 13500.00, 20000.00, 'Chennai', 'Chennai', '2302010003', '1', '2', 'upload_files/candidate_tracker/5599597387_Iwin Franklin Resume_edited.pdf', NULL, '1', '2023-02-01', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication was not clear Long Career Gap not much active will not sustain and handle our pressure not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-01 10:33:06', 85, '2023-02-01 02:59:43', 0, NULL, 1),
(11843, 'Ahalya', '13', '8300447131', '', 'ahalyakaran6@gmail.com', '2001-09-15', 21, '2', '2', 'Manoharan.v', 'Farmer', 100000.00, 2, 12000.00, 20000.00, '1/15,North Street, thirunattiyathangud ,thiruvarur', 'Chrompet chennai', '2302010004', '1', '2', 'upload_files/candidate_tracker/10006209061_AHALYA (7).pdf', NULL, '1', '2023-02-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 6 months Exp in PHP but not much comfort in TxxampC Asked for a time to confirm but left without informing will not sustain', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-01 11:17:17', 85, '2023-02-01 03:00:20', 0, NULL, 1),
(11844, 'Mahalakshmi Madhan', '4', '7845393362', '8667071362', 'Mahalakshmimadhan.2000@gmail.com', '2000-01-07', 23, '3', '2', 'Parent', 'Telecalling', 20.00, 1, 16.50, 19.00, 'Avadi', 'Avadi', '2302010005', '', '2', 'upload_files/candidate_tracker/43143845904_1664555858973_Maha Resume papa.docx', NULL, '1', '2023-02-01', 30, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Star Health but too long distance need to have a background verification Caniddate need to come back wiht her confirmation', '1', '1', '0', '1', '8', '0', '2', '2023-02-06', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-01 12:12:38', 1, '2023-02-01 12:31:09', 0, NULL, 1),
(11845, 'Deepika.N', '4', '9150448628', '9952929257', 'deeps@gmail.com', '2002-06-04', 20, '3', '2', 'Nagaraj.M', 'Driver', 35.00, 1, 16500.00, 18.00, 'Washermanpet', 'Washermanpet', '2302010006', '', '2', 'upload_files/candidate_tracker/50311727660_Deepika N.pdf', NULL, '1', '2023-02-01', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Calling Too long Distance need to check her previous exp Candidate need to come back with her confirmation', '1', '1', '0', '1', '8', '0', '2', '2023-02-06', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-01 12:15:54', 1, '2023-02-01 12:50:42', 0, NULL, 1),
(11846, 'Abinaya. K', '4', '7806922426', '', 'abinayakamaraj17@gmail', '1999-12-17', 23, '2', '2', 'Kamaraj. A', 'Farmer', 36000.00, 4, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2302010007', '1', '1', 'upload_files/candidate_tracker/83823222972_RESUME ABINAYA.K.pdf', NULL, '1', '2023-02-01', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not ok with the profile not suit for team and sustainability issue also', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-01 01:23:28', 85, '2023-02-01 03:02:17', 0, NULL, 1),
(11847, 'mohan', '4', '7305559825', '', 'mohanchana795@gmail.com', '2002-10-04', 20, '2', '2', 'vasu', 'fruit shop', 30000.00, 1, 14000.00, 18000.00, 'Chennai', 'Chennai', '2302010008', '1', '2', 'upload_files/candidate_tracker/80205052361_MOHAN NEW RESUME DEC - 2023_pdf.pdf', NULL, '1', '2023-02-01', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have telecalling Exp in Collection process Scheduled them for F2F in Tnagar but they didnt turn Need to check and confirm once.', '1', '1', '0', '1', '8', '0', '2', '2023-02-06', '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-01 02:05:20', 1, '2023-02-01 02:44:57', 0, NULL, 1),
(11848, 'Saravanan', '4', '9384673589', '', 'Saravanan18340@gmail.com', '1999-02-05', 23, '2', '2', 'No', 'Diploma in computer science', 20000.00, 1, 20000.00, 20000.00, 'Saidapet', 'Saidapet', '2302010009', '1', '2', 'upload_files/candidate_tracker/35116196523_Resume new.docx', NULL, '1', '2023-02-01', 10, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Telecalling Exp In Collection Process Scheduled Them For F2F In Tnagar But They Didnt Turn Need To Check And Confirm Once.', '1', '1', '', '1', '8', '', '2', '2023-02-06', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-01 02:05:47', 85, '2023-02-01 03:02:35', 0, NULL, 1),
(11849, '', '0', '8056139623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302010010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-01 02:31:19', 0, NULL, 0, NULL, 1),
(11850, 'K.ASARAPNISHA', '4', '9715376037', '9688714747', 'kuthbudeensaliba@gmail.com', '2000-07-10', 22, '3', '2', 'KUTHBUDEEN M', 'DRIVER', 20000.00, 2, 0.00, 12000.00, 'ORATHANADU', 'ORATHANADU', '2302020001', '', '1', 'upload_files/candidate_tracker/9491390612_2022091213.pdf', NULL, '1', '2023-02-02', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-02 09:57:27', 1, '2023-02-02 10:07:44', 0, NULL, 1),
(11851, 'A. Sivaranjini', '4', '6374633722', '', 'sivaveera98@gmail.com', '1998-06-10', 24, '3', '2', 'R. Annadurai', 'Farmer', 25000.00, 2, 0.00, 10000.00, 'Cholapuram', 'Cholapuram', '2302020002', '', '1', 'upload_files/candidate_tracker/27899151612_sivaranjani annadurai.pdf', NULL, '1', '2023-02-02', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-02 09:57:46', 1, '2023-02-02 10:08:17', 0, NULL, 1),
(11852, 'S. Sakthivel', '4', '7708055924', '', 'Shansakthi1001@gmail.com', '1993-06-06', 29, '2', '2', 'M. Shanmugam', 'Farmer', 30000.00, 2, 0.00, 20000.00, 'Krishnagiri', 'Chennai', '2302020003', '1', '2', 'upload_files/candidate_tracker/26009498315_sakthi resume 17.12.2022.docx', NULL, '1', '2023-02-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have 1 yr exp in telecalling but nor open for Targets much thinking a lot on the same will not handle our work pressure not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-02 10:40:42', 85, '2023-02-02 02:54:11', 0, NULL, 1),
(11853, 'Mahalakshmi. J', '31', '9500542907', '', 'Brindhajeyaseelan21@gmail.com', '1997-12-21', 25, '2', '2', 'Jeyaseelan.k', 'Farmer', 20000.00, 0, 0.00, 15000.00, 'Kovilpatti', 'Chennai', '2302020004', '1', '1', 'upload_files/candidate_tracker/22156316279_Maha-Frontend-Resume.docx', NULL, '1', '2023-02-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic knowledge in skills bu not much open for TxxampC Career Gap his BIL is into IT sustainability doubts a lot', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-02 11:39:18', 85, '2023-02-03 10:04:13', 0, NULL, 1),
(11854, 'Vishnusankar', '31', '7092644210', '8667235443', 'vishnusankarv9596@gmail.com', '1995-09-01', 27, '2', '2', 'Perumalsamy', 'Shopkeeper', 15000.00, 1, 0.00, 15000.00, 'Sri rengapuram ,Theni', 'Mugalivakam, Porur, Chennai', '2302020005', '1', '1', 'upload_files/candidate_tracker/16462547434_vishnu.resume.pdf', NULL, '1', '2023-02-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic knowledge not much open with TxxampC Need time to give his confirmation if he comes back let us try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-02 04:09:31', 85, '2023-02-03 10:43:35', 0, NULL, 1),
(11855, 'Dhanush K', '14', '7397273437', '8124410254', 'dhanushkarunanidhi@gmail.com', '2000-11-02', 22, '2', '2', 'Karunanidhi', 'Seller', 450000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2302020006', '1', '1', 'upload_files/candidate_tracker/94257596031_Dhanush\'s Resume_1674480392178_Dhanush K.pdf', NULL, '1', '2023-02-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Distance he feels to be long not much strong with the skills will not sustain in a long ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-02 06:02:51', 1, '2023-02-02 07:03:45', 0, NULL, 1),
(11856, 'nagaraj m', '23', '9629613024', '', 'nagarajm1504@gmail.com', '1999-04-15', 23, '2', '2', 'mariappan', 'barber', 25000.00, 1, 0.00, 25000.00, 'kovilpatti', 'medavaakam', '2302020007', '1', '1', 'upload_files/candidate_tracker/7376799365_Nagaraj_M FD.pdf', NULL, '1', '2023-02-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '2023-02-27', '1', 'Need to check with gokul 2nd round interviewed by Manikandan not much strong in basics can be analysed in 7 days', '2', '1', '', '1', '8', '', '2', '2023-02-08', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-02 06:08:10', 85, '2023-02-03 10:03:59', 0, NULL, 1),
(11857, 'Nivashini B', '4', '9345869265', '', 'nivashininivashini@gmail.com', '2000-09-28', 22, '3', '2', 'Balasubramaniyan', 'Farmer', 5000.00, 1, 0.00, 8000.00, 'Talakkudi', 'Thalakkudi', '2302030001', '', '1', 'upload_files/candidate_tracker/37646474853_nivasini.pdf', NULL, '1', '2023-02-03', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-03 10:20:44', 1, '2023-02-03 10:58:58', 0, NULL, 1),
(11858, 'Priya selvam', '4', '7397530307', '9865664475', 'Selvamsadhana40@gmail.com', '1992-02-10', 30, '3', '1', 'Selvam', 'Rice mill manager', 15000.00, 1, 0.00, 8000.00, 'Kondavattamthital', 'Kondavattamthital', '2302030002', '', '1', 'upload_files/candidate_tracker/17632740825_Resume by s.priya (1)(5)_1.pdf', NULL, '1', '2023-02-03', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2023-02-03 10:21:03', 1, '2023-02-03 10:56:46', 0, NULL, 1),
(11859, 'Amega. K', '4', '8110080680', '9751948593', 'amegakumar38@gmail.com', '2001-05-20', 21, '3', '2', 'Kumar. M', 'Farmer', 36000.00, 2, 0.00, 12000.00, 'Aymbathumelnagarm', 'Aymbathumelnagaram', '2302030003', '', '1', 'upload_files/candidate_tracker/15178158115_amega resume 2001.pdf', NULL, '1', '2023-02-03', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-03 10:24:55', 1, '2023-02-03 10:36:08', 0, NULL, 1),
(11860, 'sudharasan', '6', '8754759353', '', 'amrsudharsan89@gmail.com', '2002-09-20', 20, '2', '2', 'ravichandran', 'grocery store', 30000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2302030004', '2', '1', 'upload_files/candidate_tracker/26059654605_sudhrasan.pdf', NULL, '1', '2023-02-03', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher need to train a lot can give a try for our Roles 5050 kindly check and let me know  your inputs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-03 12:20:11', 60, '2023-02-03 07:30:46', 0, NULL, 1),
(11861, 'R.Shamli kutti', '6', '9677449323', '9790322034', 'shamlikarthi03@gmail.com', '1990-11-26', 32, '2', '1', 'M.Ram Venkat Karthi', 'Supervisor', 24000.00, 2, 9.50, 11000.00, 'Erode', 'Erode', '2302040001', '1', '2', 'upload_files/candidate_tracker/15264305550_Resume -shamli.pdf', NULL, '1', '2023-02-04', 1, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She was too scared for the target', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-04 10:08:10', 85, '2023-02-04 11:07:24', 0, NULL, 1),
(11862, 'Sai Ganesh', '5', '9176337525', '', 'saiganesh39@gmail.com', '1987-09-02', 35, '2', '2', 'Shri Ram', 'Retired govt employee', 2.50, 0, 0.00, 5.00, 'Chennai', 'Chennai', '2302040002', '1', '2', 'upload_files/candidate_tracker/23811087245_Resumme.pdf', NULL, '1', '2023-02-04', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-04 10:08:47', 60, '2023-02-04 07:07:12', 0, NULL, 1),
(11863, 'SANTHOSHKUMAR P', '6', '7449287150', '', 'santhoshkumar7sks@gmail.com', '2001-05-19', 21, '3', '2', 'Palani.K & Shanthi.P', 'cooli', 40000.00, 2, 12000.00, 15000.00, 'Chennai', 'Chennai', '2302040003', '', '2', 'upload_files/candidate_tracker/31198098138_Santhosh kumar.pdf', NULL, '1', '2023-02-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed And Suggested The Salary Breakup And They Were Not Ready Alos Looking For High Salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-04 11:23:10', 60, '2023-02-04 07:01:50', 0, NULL, 1),
(11864, 'arun r', '13', '8870286664', '', 'rarun2999@gmail.com', '1999-06-29', 23, '3', '2', 'amutha r', 'house wife', 15000.00, 1, 0.00, 350000.00, 'srivilliputhur', 't nagar', '2302040004', '', '1', 'upload_files/candidate_tracker/1215331101_new resume.docx', NULL, '1', '2023-02-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT have 1 yr in Digital Marketing but the role played was not exactly into that lookin for IT but not open for Terms Need time to confirm with Parents if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-04 03:32:48', 1, '2023-02-04 03:37:17', 0, NULL, 1),
(11865, 'Surya e', '6', '9176358114', '9884012602', 'iamsurya199819@gmail.com', '1998-01-19', 25, '1', '2', 'Elumalai', 'Carpenter', 25000.00, 1, 13000.00, 16000.00, 'Virugambakkam', 'Virugambakkam', '2302040005', '', '2', 'upload_files/candidate_tracker/8699808939_SURIYA CV.pdf', NULL, '1', '2023-02-04', 15, '55655', '3', '59', '2023-02-06', 216000.00, '', NULL, '2025-01-06', '1', 'Selected for Kannan Team in Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', 'Have Exp in Vizza Insurance 1.2 yrs in Health Can give a try for Health', '', '', '', NULL, NULL, NULL, 1, '2023-02-04 04:41:39', 60, '2023-02-04 07:22:43', 0, NULL, 1),
(11866, 'Bharanitharan K', '16', '8825883314', '9962510720', 'bharanitharan2468@gmail.com', '1998-08-14', 24, '4', '2', 'Lalitha K', 'Customer Service Representative', 20000.00, 1, 250000.00, 300000.00, 'Chennai', 'Chennai', '2302040006', '', '2', 'upload_files/candidate_tracker/23757510746_bharani prf resume.pdf', NULL, '2', '2023-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-04 05:03:14', 1, '2023-02-05 11:05:21', 0, NULL, 1),
(11867, '', '0', '8825883214', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302040007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-04 08:32:09', 0, NULL, 0, NULL, 1),
(11868, 'Roshini M', '6', '8668008680', '', 'mroshini2705@gmail.com', '2000-05-27', 22, '1', '2', 'Muthu', 'Driver', 15000.00, 3, 15000.00, 18000.00, 'Kumbakonam', 'Chennai', '2302060001', '', '2', 'upload_files/candidate_tracker/73767396678_CV_202302051613377.doc', NULL, '1', '2023-02-06', 15, 'P1330', '3', '59', '2023-02-10', 216000.00, '', NULL, '2024-01-19', '2', 'Selected for Babu Team in Consultant Role', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-06 09:34:02', 60, '2023-02-09 11:56:05', 0, NULL, 1),
(11869, 'M. Tamil arasan', '4', '8248387746', '9840761552', 'Tamilarasantamil461@gmail', '1993-06-29', 29, '2', '2', 'V. Manoharan', 'Lorry sed', 30.00, 1, 15.00, 20.00, 'Mint, chennai', 'Mint', '2302060002', '1', '2', 'upload_files/candidate_tracker/15737872823_Tamilarasan.pdf', NULL, '1', '2023-02-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No understanding no communication not open at all will not handle our pressure', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-06 01:21:39', 85, '2023-02-07 07:04:25', 0, NULL, 1),
(11870, 'Nethaji venkatraman', '6', '6382989636', '', 'Venkatnethaji@gmail.com', '1997-06-10', 25, '2', '2', 'Venkatraman', 'Cooli', 25000.00, 1, 12000.00, 15000.00, 'Vepdai', 'Vepdai', '2302060003', '1', '2', 'upload_files/candidate_tracker/30332916046_Resume_NETHAJI VENKATRAMAN_Format1.pdf', NULL, '1', '2023-02-08', 0, '', '4', '88', NULL, 0.00, '', '0', NULL, '1', 'selected for next round expt salary 15k but not worth for 15k, 13k is okay for him and also need of analysis in 7 days', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-06 01:25:20', 1, '2023-02-08 11:27:30', 0, NULL, 1),
(11871, 'THANGARAJ', '6', '9360365405', '8838912653', 'Goldkingchandru@gmail.com', '2000-12-31', 22, '1', '2', 'Ganesan', 'Private employee', 20000.00, 2, 0.00, 15000.00, 'Athipatti', 'Saidapet', '2302070001', '', '1', 'upload_files/candidate_tracker/73252565855_Thangaraj Resume_07.02.docx', NULL, '1', '2023-02-07', 0, 'P1321', '1', '89', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-07 10:44:29', 1, '2023-02-07 10:48:19', 0, NULL, 1),
(11872, 'Swapnali ashok salaskar', '16', '7796773628', '9940570367', 'swapnalizoya@gmail.com', '1993-02-22', 29, '2', '2', 'Ashwini', 'House wife', 0.00, 4, 17000.00, 22000.00, 'Maharashtra', 'Sevvapet', '2302070002', '1', '2', 'upload_files/candidate_tracker/34833912621_DOC-20230207-WA0000. (1).pdf', NULL, '1', '2023-02-07', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance have communication but no sustainability in her prebvious Exp will not sustain not able to relocate', '3', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-07 11:37:13', 85, '2023-02-07 04:57:07', 0, NULL, 1),
(11873, 'Mohd Azim', '16', '8667719624', '7796773628', 'Mohdazim126913@gmail.com', '1997-02-15', 25, '2', '2', 'Ghulam Rahmani', 'Arabic tutor', 10000.00, 1, 16000.00, 21000.00, 'Chennai', 'Chennai', '2302070003', '1', '2', 'upload_files/candidate_tracker/9425086212_downloadfile.PDF', NULL, '1', '2023-02-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No sustainability Local Language Average Not open for Terms and conditions will not sustain in a long', '3', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-07 11:38:34', 85, '2023-02-07 04:58:00', 0, NULL, 1),
(11874, 'balaji', '11', '9003227423', '', '20balajis@gmail.com', '2001-02-07', 22, '2', '2', 'selvamani', 'bussiness', 20000.00, 1, 12000.00, 15000.00, 'vadapeumbakkam', 'Vadapeumbakkam', '2302070004', '1', '2', 'upload_files/candidate_tracker/8350257811_null (2).docx', NULL, '1', '2023-02-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas in recruitment, no understanding and not open for terms will not sustain in our roles already we offered and he declined the same', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-07 11:43:28', 85, '2023-08-01 03:36:15', 0, NULL, 1),
(11875, 'Rekha', '6', '9677277297', '', 'Rekhasmile793@gmail.com', '1994-01-10', 29, '1', '2', 'Kannan', 'Painter', 20000.00, 1, 12000.00, 15000.00, 'No-5/6 Subra Mani Garden Main Street Perambur', 'No-5/6 Subra Mani Garden Main Street Perambur', '2302070005', '', '2', 'upload_files/candidate_tracker/9868333382_REKHA(1).pdf', NULL, '1', '2023-02-07', 0, '55574', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-07 12:27:13', 1, '2023-02-07 12:47:56', 0, NULL, 1),
(11876, 'M.Tamil Selvi', '6', '7358724227', '9150799676', 'mtamilselvi1810@gmail.com', '1994-10-18', 28, '1', '1', 'Kanaga', 'House keeping', 35000.00, 1, 15000.00, 18000.00, 'NO:5,Shanthi Nagar1st street,perambur,chennai .', 'Perambur', '2302070006', '', '2', 'upload_files/candidate_tracker/77838031696_Resume Tamilselvi-1.docx', NULL, '1', '2023-02-07', 0, '55574', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-07 12:27:54', 1, '2023-02-07 12:51:04', 0, NULL, 1),
(11877, 'Mahalakshmi G', '11', '7904702369', '', 'mahagovindh252001@gmail.com', '2001-06-25', 21, '2', '2', 'Govindhan', 'Carpenter', 1800000.00, 2, 0.00, 20000.00, 'Cuddalore', 'Chennai', '2302070007', '1', '1', 'upload_files/candidate_tracker/10868902648_RESUMEE.pdf', NULL, '1', '2023-03-15', 0, '', '3', '59', '2023-03-22', 151584.00, '', '', '2023-05-22', '2', '3 months 6K then 3 months 8K then 10-15K 3yrs SA', '6', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-07 10:07:37', 60, '2023-05-04 07:08:45', 0, NULL, 1),
(11878, 'Ramachandra prabhu', '6', '7299524871', '9941107094', 'dastagirbaasha067@gmail.com', '1995-10-24', 27, '4', '2', 'A.mani', 'Painter', 40000.00, 1, 18000.00, 19000.00, 'No 8 Begum Shahid makish garden 3rd Street greams', 'No 18 Rangoon Street greams road thousands lights', '2302080001', '', '2', 'upload_files/candidate_tracker/31142442675_DOC-20221109-WA0003. (1).pdf', NULL, '1', '2023-02-08', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', '5050 Need to groom a lot not sure with his sustainability but can give a try If candidate come back let us try', '5', '1', '0', '1', '8', '0', '2', '2023-02-09', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-08 10:55:44', 1, '2023-02-08 11:08:24', 0, NULL, 1),
(11879, 'KIRTHIKA M', '28', '6369137817', '8778087184', 'kirthika437@gmail.com', '2001-11-22', 21, '3', '2', 'MuthuKumar', 'AC Trainer', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2302080002', '', '1', 'upload_files/candidate_tracker/33990341711_KIRTHIKA.M Resume.pdf', NULL, '1', '2023-02-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Focusing much on Data science will not sustain in a long in our roles will not handle our work pressure not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-08 11:31:19', 1, '2023-02-08 11:41:31', 0, NULL, 1),
(11880, '', '0', '8072216886', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302080003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-08 11:39:18', 0, NULL, 0, NULL, 1),
(11881, '', '0', '8344498155', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302080004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-08 01:29:10', 0, NULL, 0, NULL, 1),
(11882, '', '0', '9080384159', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302080005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-08 07:37:59', 0, NULL, 0, NULL, 1),
(11883, 'P.sasikala', '6', '9994363282', '9361586118', 'sasiammu322@gmail.com', '2002-07-03', 20, '2', '2', 'P.periyasamy', 'Former', 20000.00, 1, 10000.00, 12000.00, 'Sivagiri', 'Sivagiri', '2302090001', '1', '2', 'upload_files/candidate_tracker/96284915757_SasiResume.pdf', NULL, '1', '2023-02-09', 0, '', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'Rejected ', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-09 07:18:54', 1, '2023-02-09 11:28:38', 0, NULL, 1),
(11884, '', '0', '9360350017', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302090002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-09 07:48:54', 0, NULL, 0, NULL, 1),
(11885, 'SANDHIYA K', '4', '9698146933', '9176819628', 'Sandhyasandy25511@gmail.com', '1998-03-03', 24, '2', '1', 'KARTHIK S', 'Sales executive', 15000.00, 1, 15000.00, 20000.00, 'No 72 E Block DR. Thomas road T. nagar Chennai -17', 'T. Nagat', '2302090003', '1', '2', 'upload_files/candidate_tracker/71507034987_sandhiya resume-3 (1).docx', NULL, '1', '2023-02-09', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in credit card sales 5050 for our roles can give a try kindly check and let me know your interest', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-09 11:51:47', 85, '2023-02-10 11:06:11', 0, NULL, 1),
(11886, 'AJITH V', '5', '6379554116', '9940115321', 'Ajithnaidu98@gmail.com', '1998-10-13', 24, '3', '2', 'Hajarathiah V', 'Business', 20000.00, 0, 18000.00, 20000.00, 'Chennai', 'Chennai', '2302090004', '', '2', 'upload_files/candidate_tracker/46822913030_AJITH.V. RESUME.pdf', NULL, '1', '2023-02-09', 0, '', '3', '59', '2023-02-10', 262000.00, '', '4', '2023-03-04', '1', 'We Offered Him In The Month Of November But Candidate  Not Joined. Later In The Month Of Feb 2023  He Saw Our Job Post And Messaged Us .He Appeared Again And Got Selected For The Same Team  - GK Sir', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-09 12:25:31', 60, '2023-02-09 05:23:12', 0, NULL, 1),
(11887, 'Umar Riyaz F', '4', '6382786780', '', 'umarschovas@gmail.com', '2002-09-07', 20, '2', '2', 'Nasreen Fathima F', 'Homemaker', 12000.00, 1, 15000.00, 25000.00, 'Royapuram, Chennai', 'Royapuram, Chennai', '2302090005', '1', '2', 'upload_files/candidate_tracker/10970177606_Umar Updated resume.pdf', NULL, '1', '2023-02-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-09 02:27:21', 85, '2023-02-10 10:31:40', 0, NULL, 1),
(11888, '', '0', '8778349650', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302090006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-09 03:52:47', 0, NULL, 0, NULL, 1),
(11889, 'M.Ganesh Raghavendra', '11', '9962160953', '9962160423', 'ganeshraghavendhran@gmail.com', '1998-06-24', 24, '2', '1', 'R. Manivannan', 'Auto driver', 5000.00, 1, 0.00, 15000.00, 'Villivakkam', 'Villivakkam', '2302090007', '1', '1', 'upload_files/candidate_tracker/45565352630_Ganesh_CV.pdf', NULL, '1', '2023-02-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas in recruitment no communication will not handle our work pressure not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-09 05:25:43', 85, '2023-02-10 10:31:27', 0, NULL, 1),
(11890, 'Balaji K', '6', '9361107818', '', 'k71076061@gmail.com', '2001-05-10', 21, '2', '2', 'Karuna karan', 'Auto driver', 25000.00, 1, 20000.00, 20000.00, 'Chenai', 'Chenai', '2302100001', '1', '2', 'upload_files/candidate_tracker/17441814441_RESUME-converted (2)-2.pdf', NULL, '1', '2023-02-10', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile Have basic calling exp seems to be doubtful kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-10 10:42:22', 60, '2023-02-10 06:20:12', 0, NULL, 1),
(11891, 'Thenmozhi P', '16', '7603919038', '', 'THENMOZHIP600@GMAIL.COM', '1999-12-06', 23, '2', '2', 'Saraswathi', 'House wife', 22000.00, 1, 16000.00, 16000.00, 'Korukkupet', 'Korukkupet', '2302100002', '1', '2', 'upload_files/candidate_tracker/66655635232_Thenmozhi Resume.pdf', NULL, '1', '2023-02-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not open for Telecalling looking for non voice process only', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-02-10 11:02:56', 60, '2023-02-10 06:00:23', 0, NULL, 1),
(11892, '', '0', '6374773321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302100003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-10 11:29:18', 0, NULL, 0, NULL, 1),
(11893, 'Jayaseelan', '11', '9543768028', '', 'jayaseelanrt01@gmail.com', '2000-10-01', 22, '2', '1', 'Parents', 'Labour', 30000.00, 3, 0.00, 15000.00, 'Namakkal', 'Tambaram', '2302100004', '1', '1', 'upload_files/candidate_tracker/49465628010_Jayaseelan resume (1) (1).pdf', NULL, '1', '2023-02-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication no basic ideas in recruitment not open for Terms will not handle and sustainability doubts', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-10 12:26:12', 85, '2023-02-10 03:49:38', 0, NULL, 1),
(11894, '', '0', '9566390753', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-10 12:27:28', 0, NULL, 0, NULL, 1),
(11895, '', '0', '8122629774', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302100006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-10 12:43:24', 0, NULL, 0, NULL, 1),
(11896, '', '0', '9566390743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302100007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-10 12:45:38', 0, NULL, 0, NULL, 1),
(11897, 'tamil selvi', '4', '9884708130', '', 'ammutamilselvi2668@gmail.com', '1998-10-22', 24, '2', '2', 'govindan', 'cooli', 20000.00, 3, 0.00, 12000.00, 'korukpet', 'Korukpet', '2302100008', '1', '1', 'upload_files/candidate_tracker/70082512377_IMG20221107094240compressed.pdf', NULL, '1', '2023-02-10', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to check for telephonic again no graduation long career gap 7yrs sustainability doubts', '1', '1', '', '1', '8', '', '2', '2023-02-11', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-10 01:15:38', 85, '2023-02-11 09:53:13', 0, NULL, 1),
(11898, 'Sumiyabanu A', '23', '7200137886', '9994371458', 'sumi79797@gmail.com', '2000-03-07', 22, '2', '2', 'Ahmed Basha', 'Own business', 12.00, 1, 2.00, 3.00, 'Chennai', 'Chennai', '2302100009', '1', '2', 'upload_files/candidate_tracker/83020095988_SumiyaResume.pdf', NULL, '1', '2023-02-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills looking for salary growth Long Career Gap will not sustain in our roles', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-10 01:16:51', 1, '2023-02-10 01:19:29', 0, NULL, 1),
(11899, 'VIGNESH M', '5', '9750524937', '', 'pravinapravina130@gmail.com', '1995-08-12', 27, '3', '1', 'PRAVEENA v', 'Home maker', 25000.00, 1, 16000.00, 20000.00, '21/D INDIRA NAGAR RAMANATHAPURAM', 'SOORIYA HOSPITAL NEAR SALAI GRAMAM', '2302100010', '', '2', 'upload_files/candidate_tracker/61674094561_VIGNESH1 (1).pdf', NULL, '1', '2023-02-10', 0, '', '3', '59', '2023-02-13', 285696.00, '', '4', '2023-04-18', '2', 'Selected for Shanmugam Team with PF/PT', '5', '1', '4', '1', '8', '1', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-10 02:10:20', 60, '2023-02-11 03:33:44', 0, NULL, 1),
(11900, '', '0', '7338980164', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302100011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-10 04:52:14', 0, NULL, 0, NULL, 1),
(11901, 'Janani', '4', '9840739277', '', 'jananikrithika@gmail.com', '1998-09-03', 24, '2', '2', 'Ganesan', 'Businesses', 15000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2302100012', '1', '2', 'upload_files/candidate_tracker/93415923859_Janani Resume.pdf', NULL, '1', '2023-02-13', 30, '', '3', '59', '2023-02-22', 228000.00, '', '', '2023-02-27', '2', 'Selected for Backend  Health Renewal need to analyse in 7 days', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '5', 'In consultant Role', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-10 08:15:08', 60, '2023-02-21 03:45:32', 0, NULL, 1),
(11902, 'gowtham m', '4', '9025383778', '', 'gowthammohan812@gmail.com', '1994-07-10', 28, '2', '2', 'mohan', 'carpender', 20000.00, 3, 15000.00, 16000.00, 'chennai', 'chennai', '2302110001', '2', '2', 'upload_files/candidate_tracker/56113967844_CV_2022-11-06-081519.pdf', NULL, '1', '2023-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open  for Field Visit,have exp in KYC verification will not sustain and handle our sales pressure not suitabl', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-11 11:08:44', 60, '2023-02-22 12:47:33', 0, NULL, 1),
(11903, 'Manoj kumar', '4', '7448859500', '', 'manojkumarpride@gmail.com', '1995-11-14', 27, '3', '2', 'Muruganantham', 'Searching for job', 20000.00, 1, 17000.00, 20000.00, 'Erode', 'Erode', '2302110002', '', '2', 'upload_files/candidate_tracker/60384657425_Resume_12_02_2023_12_04_39_pm.pdf', NULL, '1', '2023-02-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-11 10:38:40', 1, '2023-02-12 12:22:52', 0, NULL, 1),
(11904, '', '0', '9988770022', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302150001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-15 10:22:04', 0, NULL, 0, NULL, 1),
(11905, 'Aravind raj', '5', '8124573734', '9962338669', 'Maverickraj76@gmail.com', '1997-09-21', 25, '3', '2', 'K. Raju', 'Farmer', 20000.00, 1, 31500.00, 35000.00, 'Thiruporur', 'Thiruporur', '2302150002', '', '2', 'upload_files/candidate_tracker/57585444219_Aravind Resume 1.pdf', NULL, '1', '2023-02-15', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Saw his Resume and Rejected with arun', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-15 10:22:58', 1, '2023-02-15 10:31:59', 0, NULL, 1),
(11906, 'Emmanuvel Ramaraj', '5', '9042089420', '7639755184', 'remanujacob@gmail.com', '1995-11-21', 27, '2', '2', 'Ramaraj', 'Plumber', 300000.00, 2, 39000.00, 42000.00, 'Tiruvarur', 'Palavakkam Chennai', '2302150003', '1', '2', 'upload_files/candidate_tracker/16652042858_EMMAN New.docx', NULL, '1', '2023-02-15', 0, '', '3', '59', '2023-02-15', 500000.00, '', '7', '1970-01-01', '1', 'Communication Is Good Having Good Exp In Sales Souding Good For Our Profile But Fresher For Insurance Can Give A Try Looking For Lead Role Kindly Check And Let Me Know Your Interest Sir\n\nSelected for  Manikandan Team with PF PT', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-15 10:24:08', 60, '2023-02-15 10:51:51', 0, NULL, 1),
(11907, 'GANESH T', '4', '8056263132', '9551577636', 'ganesh23051990@gmail.com', '1990-05-23', 32, '2', '2', 'THIRUNAVUKARASU P', 'Na', 17800.00, 2, 17800.00, 20000.00, 'CHENNAI', 'CHENNAI', '2302150004', '1', '2', 'upload_files/candidate_tracker/96676628080_Ganesh resume - Updated.pdf', NULL, '1', '2023-02-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Good Exp in Insurance but frequent job changes  and now he is looking for loan or credit sales not much comfort to go again in insurance domain', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-15 10:55:13', 85, '2023-02-15 11:04:33', 0, NULL, 1),
(11908, '', '0', '6379044754', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302150005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-15 11:13:49', 0, NULL, 0, NULL, 1),
(11909, '', '0', '6383726513', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302150006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-15 11:16:39', 0, NULL, 0, NULL, 1),
(11910, 'Preetha sree. S', '4', '6374291112', '9994360085', 'preethasree81@gmail.com', '1999-03-12', 23, '3', '2', 'Parent', 'Buisness', 50000.00, 2, 0.00, 12000.00, '632,kondi Raja palayam, Thanjavur', '2655/1 North main , Thanjavur', '2302150007', '', '1', 'upload_files/candidate_tracker/94883792654_preetha sree resume.docx', NULL, '1', '2023-02-15', 0, '', '3', '59', '2023-02-23', 138948.00, '', '4', '2023-03-18', '2', 'Selected fr Thanjavur Consultant Role', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-15 11:25:18', 60, '2023-02-20 10:32:26', 0, NULL, 1),
(11911, 'mohan Raj', '13', '8056226131', '8838675377', 'fikmohan@gmail.com', '1999-02-03', 24, '2', '2', 'ramesh', 'accounted', 20000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2302150008', '1', '1', 'upload_files/candidate_tracker/6117280837_resume (2).pdf', NULL, '1', '2023-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Python Not open for TxxampC Looking for Salary only already got offered with 18K 3yrs SA but not joined he is not open in Internship role also', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-15 03:37:04', 85, '2023-02-17 10:37:17', 0, NULL, 1),
(11912, 'Abirama Sundaram', '31', '9655720946', '', 'Abiramrajan19@gmail.com', '1999-08-09', 23, '2', '2', 'Sundar', 'Fish Farm', 40000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Chennai', '2302160001', '1', '1', 'upload_files/candidate_tracker/43688923545_Abiram Resume 1 (1).pdf', NULL, '1', '2023-02-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Basic Skills Family need is no Sustainability doubts not open for TxxampC Need time to check with family and confirm if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-16 11:22:20', 85, '2023-02-16 11:31:47', 0, NULL, 1),
(11913, 'Hariharan L', '6', '7010954849', '', 'harishthegame97@gmail.com', '1996-05-22', 26, '1', '2', 'Manjula l', 'House wife', 20.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2302160002', '', '2', 'upload_files/candidate_tracker/57706902936_Resume_Hariharan.pdf', NULL, '2', '2023-02-16', 0, '55659', '3', '59', '2023-02-20', 350000.00, '', NULL, '2023-11-30', '1', 'Selected for Santhosh Team with PF/PT', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-16 11:22:49', 60, '2023-02-20 10:44:56', 0, NULL, 1),
(11914, 'U. Abiram', '11', '9791186156', '', 'abiramguptha@gmail.com', '2002-01-01', 21, '3', '2', 'K. Unnirajan', 'Business', 20000.00, 1, 13000.00, 17000.00, '16/10 kandappan steet Ice house triplicane', '16/10 Kandappan Steet Ice House Triplicane', '2302160003', '', '2', 'upload_files/candidate_tracker/41224445588_Abiram Resume.docx (1).pdf', NULL, '1', '2023-02-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have 3 months Exp in recruitment  and his salary exp is very high.Not much strong with the recruitment Skills SustainabilityDoubts and he need time to confirm on the txxampC if he comes back let us try', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-16 03:17:34', 1, '2023-02-16 03:49:20', 0, NULL, 1),
(11915, 'Deepika', '4', '7395942848', '', 'Vishnutgala2608@gmail.com', '1997-12-08', 25, '2', '1', 'Vishnu', 'Finance', 30000.00, 2, 16000.00, 20000.00, 'Puthupet', 'Puthupet', '2302160004', '1', '2', 'upload_files/candidate_tracker/91855385916_CV_2022-03-13-105257.pdf', NULL, '1', '2023-02-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ready to join post selection for the profile ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-16 05:17:58', 85, '2023-02-24 02:53:54', 0, NULL, 1),
(11916, 'Vaishnavi s', '16', '7418585435', '', 'vaishu42002@gmail', '2002-01-04', 21, '2', '2', 'V senthil Kumar', 'Cab service', 300000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2302160005', '1', '1', 'upload_files/candidate_tracker/54120154384_RESUME .pdf', NULL, '1', '2023-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok  witten skills ok but not open for 2yrs SA and the timing also prefer 10 in the morning and 6 in the evening from porur Sustainability doubts if she come back let us try', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-16 11:30:44', 85, '2023-02-17 11:08:09', 0, NULL, 1),
(11917, 'Prasath', '13', '9962925623', '9094587226', 'Prasathprasath21263@gmail.com', '2001-06-27', 21, '2', '2', 'Murugan', 'Auto driver', 100000.00, 1, 15000.00, 16000.00, 'CHENNAI', 'CHENNAI', '2302170001', '1', '2', 'upload_files/candidate_tracker/19082187259_Prasath resume.pdf', NULL, '1', '2023-02-18', 0, '', '2', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Basic Knowledge In Html ,Css xxamp Js .. He Want To Discuss With His Parents about txxampc .. If He Come Let Us Try ', '2', '1', '', '1', '8', '', '2', '2023-02-22', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-17 01:02:46', 85, '2023-02-18 10:35:01', 0, NULL, 1),
(11918, 'THANGAVEL', '16', '9003507614', '8072486176', 'thangavelvaradharajan@gmail.com', '1997-05-21', 25, '2', '2', 'Varadharajan S', 'Operator', 16000.00, 1, 16000.00, 35000.00, 'Chennai', 'Chennai', '2302170002', '1', '2', 'upload_files/candidate_tracker/44701745084_Resume - Thangavel Varadarajan 97_1676741353306_Thangavel V.pdf', NULL, '1', '2023-02-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Comfortable with the distance average Communication will not sustain and handle our work pressure', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-17 04:40:59', 85, '2023-02-20 09:41:46', 0, NULL, 1),
(11919, 'Vedavalli V', '27', '7358656258', '9840092704', 'Vedavalli0313@gmail.com', '2000-03-13', 22, '2', '2', 'Vadivel', 'Plumber', 30000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2302170003', '1', '2', 'upload_files/candidate_tracker/56804226498_Vedavalli .pdf', NULL, '1', '2023-02-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-17 05:02:40', 85, '2023-02-18 10:35:48', 0, NULL, 1),
(11920, '', '0', '8605214235', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302170004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-17 10:04:22', 0, NULL, 0, NULL, 1),
(11921, 'Gunasekar E', '6', '9025398253', '7358501554', 'gunasid01@gmail.com', '1998-05-01', 24, '2', '2', 'Ekambaram K', 'Load worker', 20.00, 2, 17500.00, 15500.00, 'No33 Kothandam nagar 2nd street chrompet', 'Chennai', '2302180001', '1', '2', 'upload_files/candidate_tracker/996228502_gunasekar resume.docx', NULL, '1', '2023-02-18', 1, '', '3', '59', '2023-02-24', 204000.00, '', '', '2023-02-25', '1', 'Selected for Suthagar Team Spencer in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-18 10:39:42', 85, '2023-02-23 10:12:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11922, 'Varshini.G', '11', '6383441706', '9884105980', 'varshinig07@gmail.com', '2000-06-07', 22, '2', '2', 'Gopinathan.A', 'MTC Bus driver', 300000.00, 1, 0.00, 15000.00, 'Erukkancherry, Chennai', 'Erukkancherry,Chennai', '2302180002', '1', '1', 'upload_files/candidate_tracker/81325345688_Varshini .pdf', NULL, '1', '2023-02-18', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no commuication .. not suit for our role.', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-18 10:49:09', 85, '2023-02-18 12:47:58', 0, NULL, 1),
(11923, 'manirathanam', '4', '7358422814', '', 'manirathnamv1995@gmail.com', '1995-08-26', 27, '2', '2', 'veerangan', 'nil', 10000.00, 1, 0.00, 12000.00, 'kodungaiyur', 'chennai', '2302180003', '2', '1', 'upload_files/candidate_tracker/59622894532_Resume.pdf', NULL, '1', '2023-02-18', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Has Various Job Experience .. Not Suit For Our Process.', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-18 11:35:24', 1, '2023-02-18 12:41:01', 0, NULL, 1),
(11924, 'SONIA', '4', '7871242102', '9788488420', 'bhuvanasonia2123@gmail.com', '1997-11-21', 25, '4', '2', 'Bhuvana', 'Homemaker', 20000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2302180004', '', '2', 'upload_files/candidate_tracker/67283694478_SONI RESUME397-converted (1)-1 (2).pdf', NULL, '1', '2023-02-18', 15, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-18 01:02:26', 85, '2023-02-18 02:34:12', 0, NULL, 1),
(11925, 'MANJU BASHINI.S', '6', '8754736680', '', 'manjusampath471@gmail.com', '2002-03-25', 20, '3', '2', 'S.AMUDHA', 'HOUSE RENT', 10000.00, 1, 0.00, 8000.00, 'THANJAVUR', 'THANJAVUR', '2302200001', '', '1', 'upload_files/candidate_tracker/22596203160_Manju_1676256456127.pdf', NULL, '1', '2023-02-20', 0, '', '3', '59', '2023-03-01', 132000.00, '', '', '1970-01-01', '1', 'Selected for Thanjavur Role - Consultant ', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-20 11:13:27', 85, '2023-02-20 07:14:06', 0, NULL, 1),
(11926, 'K. Parkavi', '4', '9626012079', '', 'kparkavi150@gmail.com', '2002-11-17', 20, '3', '2', 'K. Chandra', 'Coolie', 20000.00, 1, 0.00, 8000.00, '32 pookkara muslim street thanjavur', '32 Pookkara Muslim Street Thanjavur', '2302200002', '', '1', 'upload_files/candidate_tracker/6786350320_K.PARKAVI resume.docx', NULL, '1', '2023-02-20', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'she is not fit for team and not suite for telecalling choosing only data entry like that job', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-20 11:13:33', 1, '2023-02-20 11:21:37', 0, NULL, 1),
(11927, 'V.janani', '4', '8531840164', '', 'jananivijayakumar655@gmail.com', '2001-06-09', 21, '3', '2', 't.k.vijayakumar', 'No', 3000.00, 1, 0.00, 9000.00, 'Thanjavur', 'Thanjavur', '2302200003', '', '1', 'upload_files/candidate_tracker/19467446240_janani resume.pdf', NULL, '1', '2023-02-20', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'she is not fit for team not active and ready to move any city any time so sustainability issue also', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-20 11:13:35', 1, '2023-02-20 11:28:41', 0, NULL, 1),
(11928, '', '0', '6478464885', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302200004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-20 11:14:17', 0, NULL, 0, NULL, 1),
(11929, 'vidhyalakshmi', '4', '8778742787', '', 'shanthividhya885@gmail.com', '1999-08-19', 23, '3', '2', 'ravichandran', 'lab ass', 30000.00, 0, 19500.00, 22000.00, 'kovilambakkam', 'Kovilambakkam', '2302200005', '', '2', 'upload_files/candidate_tracker/34166156030_VIDHYALAKSHMI R S_ (1).pdf', NULL, '1', '2023-02-20', 0, '', '3', '59', '2023-02-24', 252000.00, '', '5', '1970-01-01', '2', 'Selected for B2B Need to analyse in 7 days in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-20 11:42:09', 60, '2023-02-22 05:18:46', 0, NULL, 1),
(11930, 'Bharathi', '4', '7540030811', '', 'bharathi26032001@gmail.com', '2001-03-26', 21, '3', '2', 'Alamelu', 'Former', 15000.00, 2, 15000.00, 15000.00, 'Kallakurichi', 'Chennai', '2302200006', '', '2', 'upload_files/candidate_tracker/29369497531_Bharathi Resume new.doc', NULL, '1', '2023-02-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not showing interest in the job  will not sustain and handle the pressure', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-20 01:02:06', 1, '2023-02-20 01:22:50', 0, NULL, 1),
(11931, 'FERINA MARIA MICHAEL', '11', '7358084855', '7845983003', 'ferimaria05@gmail.com', '1999-09-05', 23, '3', '2', 'Kevin michael', 'Civil engineer', 32000.00, 1, 0.00, 16000.00, 'perambur , Chennai', 'Perambur , chennai', '2302200007', '', '1', 'upload_files/candidate_tracker/63592435982_Ferina resume-1.docx', NULL, '1', '2023-02-20', 0, '', '3', '59', '2023-02-22', 120000.00, '', '0', NULL, '2', 'Selected for Recruiter role final round interviewed by gokul communication is good can be trained  for Recruitment 3months intern 7.5K stipend then 13-15 overall 2yrs SA No certificate', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-20 02:08:38', 1, '2023-02-20 02:15:23', 0, NULL, 1),
(11932, 'P B Madhu Sree', '11', '9502381974', '8778953545', 'madhukutty16204@gmail.com', '2000-09-20', 22, '3', '2', 'Saroja', 'None', 35000.00, 1, 0.00, 15000.00, 'Vysarpadi, Chennai', 'Vysarpadi, Chennai', '2302200008', '', '1', 'upload_files/candidate_tracker/64109180148_DOC-20220927-WA0001..pdf', NULL, '1', '2023-02-20', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Final round interviewed by gokul and the profile is on hold Pressure handling and not seems to be fast will check after a week her friend got seleceted ', '6', '1', '0', '1', '8', '0', '2', '2023-02-27', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-20 02:11:45', 1, '2023-02-20 02:19:57', 0, NULL, 1),
(11933, 'THIYOL FRANKLIN', '11', '9791647593', '', 'franklinthiyol@gmail.com', '1997-06-02', 25, '2', '2', 'Irudhaya raj', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Vellore', 'Chennai', '2302200009', '1', '1', 'upload_files/candidate_tracker/55568355649_Thiyol Franklin-1.pdf', NULL, '1', '2023-02-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication no basics will not handle the pressure', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-20 04:53:13', 85, '2023-02-21 10:01:55', 0, NULL, 1),
(11934, 'Dinesh Kumar', '4', '7871646037', '', 'dineshthalaphathy1998@gmail.com', '1998-12-23', 24, '2', '2', 'Thirsha', 'Farmer', 10000.00, 0, 0.00, 17000.00, 'Gingee', 'Vadapalani', '2302200010', '1', '1', 'upload_files/candidate_tracker/2038425865_dinesh1613470433160.pdf', NULL, '1', '2023-02-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-20 05:38:05', 85, '2023-02-23 09:57:20', 0, NULL, 1),
(11935, 'R.gowthami', '6', '7358340434', '', 'gowthami199176@gmail.com', '1991-07-06', 31, '2', '2', 'E Ramamurthy', 'Business', 25000.00, 0, 0.00, 14000.00, 'Choolai high roads', 'Choolai high roads', '2302200011', '1', '1', 'upload_files/candidate_tracker/78837483608_gowthami.doc', NULL, '1', '2023-02-21', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Long Career Gap Team Apna Data reference sustainability and pressure handling doubts kindly check and let meknow your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-20 09:02:48', 85, '2023-02-21 06:45:11', 0, NULL, 1),
(11936, 'Dhanalakshmi.v', '6', '9150570903', '9551414409', 'dl913065@gmail.com', '2001-12-16', 21, '2', '2', 'Veerasami', 'Business', 60000.00, 2, 12000.00, 15000.00, 'Korukkupet', 'Korukkupet', '2302200012', '1', '2', 'upload_files/candidate_tracker/50317664080_Dhanalakshmi resume.docx', NULL, '1', '2023-02-21', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No proper response discussed on the salary and she requested time to confirm with parents but didnt turn and not responding the calls too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-20 09:10:40', 85, '2023-02-21 06:45:01', 0, NULL, 1),
(11937, 'Shalini. S', '4', '8754969466', '', 'shalusakthi7774@gmail.com', '2000-07-22', 22, '2', '2', 'Sakthivel. M', 'Farmer', 8000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2302210001', '1', '1', 'upload_files/candidate_tracker/22648185889_shalini resume....pdf', NULL, '1', '2023-02-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-21 11:19:18', 85, '2023-02-21 11:43:51', 0, NULL, 1),
(11938, 'Vinitha.s', '4', '7358933990', '', 'vincivil2016@gmail.com', '1999-03-10', 23, '2', '2', 'Sekar.r', 'Farmer', 10000.00, 2, 0.00, 10000.00, 'Thuraiundar kottai', 'Thuraiundar kottai', '2302210002', '1', '1', 'upload_files/candidate_tracker/42513764308_S.Vinitha resume....pdf', NULL, '1', '2023-02-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-21 11:19:31', 85, '2023-02-21 11:44:02', 0, NULL, 1),
(11939, 'Karthika. S', '4', '8610747703', '', 'karthikasuyampirakasam@gmail.com', '2000-12-02', 22, '2', '2', 'Suyamprakasam', 'Farmer', 6000.00, 2, 0.00, 10000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2302210003', '1', '1', 'upload_files/candidate_tracker/89771449125_Karthika resume...pdf', NULL, '1', '2023-02-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-21 11:19:32', 85, '2023-02-21 11:44:19', 0, NULL, 1),
(11940, 'Vishwa', '4', '9025834372', '9791526558', 'Vishva.mech99@gmail.com', '1999-05-06', 23, '2', '2', 'Sivakumar', 'Electrician', 15000.00, 1, 12000.00, 18000.00, 'Navalur', 'Madipakkam', '2302210004', '1', '2', 'upload_files/candidate_tracker/51203547165_Resume_19_10_2022_08_39_57_pm.pdf', NULL, '1', '2023-02-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable will not travel will not handle the pressure ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-21 11:32:42', 85, '2023-02-21 12:10:32', 0, NULL, 1),
(11941, '', '0', '9171113176', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302210005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-21 11:51:59', 0, NULL, 0, NULL, 1),
(11942, 'Abinaya', '4', '8939770682', '9790252290', 'sindhusumathik@gmail.com', '1997-09-08', 25, '3', '2', 'Karunanithi.k', 'He is no more', 50000.00, 2, 17000.00, 19000.00, 'Kandanchavadi', 'Thiruvanmaiyur', '2302210006', '', '2', 'upload_files/candidate_tracker/30456437075_1675849983380_Abinaya Resume new.pdf', NULL, '1', '2023-02-21', 30, '', '3', '59', '2023-02-27', 240000.00, '', '4', '2023-03-27', '2', 'Selected for B2B in Consultant Role Need to Analyse in 7 days training', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-21 02:17:20', 60, '2023-02-22 05:22:14', 0, NULL, 1),
(11943, 'KEERTHANA M', '4', '8056812253', '9751217138', 'Keerthanamohan930@gmail.com', '1999-06-11', 23, '3', '2', 'Saraswathi m', 'Home Maker', 10000.00, 1, 15000.00, 18000.00, 'Pudukkottai', 'Chennai', '2302210007', '', '2', 'upload_files/candidate_tracker/63595112907_pdf_20230123_152521_0000.pdf', NULL, '1', '2023-02-21', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'have exp in inbound for an year but no sure with outbound sustainability doubts kindly check and let me know your interest', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-21 02:19:49', 1, '2023-02-21 02:43:18', 0, NULL, 1),
(11944, 'Kiran Kumar m', '22', '8015197632', '9884413096', 'Kirankumar.muvvala@gmail.com', '1984-10-17', 38, '3', '1', 'Niharika', 'House wife', 5.90, 3, 5.90, 9.00, 'CHENNAI', 'CHENNAI', '2302210008', '', '2', 'upload_files/candidate_tracker/40444737745_Resume.doc', NULL, '1', '2023-02-21', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'not open for our sales, 10yrs exp in other domain not suitable', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-21 02:32:46', 1, '2023-02-21 02:35:52', 0, NULL, 1),
(11945, 'Praveen Kumar.B', '4', '8825924075', '9360377920', 'praveenkumarbabu117@gmail.com', '2002-05-17', 20, '2', '2', 'Babu .M', 'Coolie', 10000.00, 0, 0.00, 15000.00, 'Avadi', 'Avadi', '2302210009', '1', '1', 'upload_files/candidate_tracker/69005329220_B.PRAVEEN KUMAR - resume 1.doc', NULL, '1', '2023-02-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending the interview', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-21 10:49:32', 85, '2023-02-28 12:10:28', 0, NULL, 1),
(11946, 'SUDHARSAN', '6', '8870088347', '', 'bsudhar024@gmail.com', '2001-04-02', 21, '1', '2', 'BHARATHITHASAN', 'Former', 200000.00, 1, 13000.00, 17000.00, 'Thiruvarur', 'Saidapet', '2302220001', '', '2', 'upload_files/candidate_tracker/75288411528_new resem.pdf', NULL, '1', '2023-02-22', 0, 'P1330', '3', '59', '2023-03-03', 200400.00, '', NULL, '2024-01-31', '1', 'Selected for Babu Team in Staff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-22 10:35:07', 60, '2023-03-02 05:11:19', 0, NULL, 1),
(11947, 'rajesh.', '4', '9962478922', '', 'Rajeshseven7777@gmail.com', '1995-03-19', 27, '4', '2', 'elumalai', 'auto driver', 200000.00, 1, 0.00, 18000.00, 'royapettah', 'royapettah', '2302220002', '', '1', 'upload_files/candidate_tracker/97051050899_H.pdf', NULL, '3', '2023-02-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Field Sales Telecalling will not sustain no sustainability in the previous exp Not suitable', '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-22 10:41:08', 1, '2023-02-22 10:59:23', 0, NULL, 1),
(11948, 'Aravind', '11', '6382653283', '9171113176', 'chinnaaravind175@gmail.com', '1996-05-21', 26, '2', '2', 'Jayakumar', 'HR recruitment', 25000.00, 2, 3.50, 4.50, 'Vellore', 'Vellore', '2302220003', '1', '2', 'upload_files/candidate_tracker/88491370240_Aravind CV-3.docx', NULL, '1', '2023-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for IT recruitment only and the current Salary is 3.5 LPA not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-22 11:05:59', 85, '2023-02-23 09:56:04', 0, NULL, 1),
(11949, 'naveen kumar s', '16', '7397297497', '8122822558', 'naveenkumars0510@gmail.com', '1995-10-10', 27, '2', '2', 'maheshwari', 'salaried', 50000.00, 0, 18000.00, 25000.00, 'chennai', 'chennai', '2302220004', '1', '2', 'upload_files/candidate_tracker/34419675065_Naveen.docx', NULL, '1', '2023-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Not open for Sales Calling Not suitable for our MIS operations roles', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-22 11:31:06', 85, '2023-02-23 09:56:25', 0, NULL, 1),
(11950, '', '0', '9701069271', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302220005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-22 01:59:17', 0, NULL, 0, NULL, 1),
(11951, 'Vimal raj k', '11', '7904007904', '8925083085', 'vimalraj13579@gmail.com', '2000-09-18', 22, '2', '2', 'Kumar G', 'TNEB', 50000.00, 2, 0.00, 15000.00, 'Chennai', 'Ponnamllee', '2302220006', '1', '1', 'upload_files/candidate_tracker/66726033519_Vimal CV_2021-12-09-053927.docx', NULL, '1', '2023-02-23', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much knowledge in Recruitment need to be trained a lot distance need to focus need confirmation from candidate on TxxampC 2nd round interviewed by gokul', '6', '1', '', '1', '8', '', '2', '2023-02-28', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-22 03:00:58', 85, '2023-02-23 10:40:05', 0, NULL, 1),
(11952, 'J Prashanth', '16', '9047950762', '8428100357', 'prashanthjothi04@gmail.com', '1999-02-04', 24, '2', '2', 'Jothi N', 'Farmer', 15000.00, 1, 17500.00, 25000.00, 'Cheyyar', 'Nandanam, Chennai', '2302220007', '1', '2', 'upload_files/candidate_tracker/66184959152_DOC-20211106-WA0014..pdf', NULL, '1', '2023-02-23', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Came for Voice Process suthagar reference but not open for sales voice have exp in non voice and much focus on that Salary need to think and bit attitude Gokul need to have the final round', '3', '1', '', '1', '8', '', '2', '2023-03-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-22 03:39:49', 85, '2023-02-23 03:26:07', 0, NULL, 1),
(11953, 'Sowmiya', '6', '8668136875', '', 'Sowmiyasowmi968@gmail.com', '2008-02-22', 0, '1', '2', 'Loganadhan', 'Business', 20000.00, 1, 26000.00, 22000.00, '3rd Street sriram nagar adyar Chennai', '4th street, sriram Nagar, tharamani,chennai.', '2302220008', '', '2', 'upload_files/candidate_tracker/37883124041_sowmiya.pdf', NULL, '1', '2023-02-22', 20, 'CA164', '3', '59', '2023-03-01', 240000.00, '', '4', '2024-10-07', '2', 'Selected for Syed Team in Consultant Role', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-22 03:49:22', 60, '2023-02-28 05:01:53', 0, NULL, 1),
(11954, 'Prashanth Jothi', '6', '8428100357', '9047959762', 'prashanthjothi04@gmail.com', '1999-02-04', 24, '3', '2', 'Jothi Nadarajan', 'Welding', 15000.00, 1, 17500.00, 25000.00, 'Cheyyar', 'Cheyyar', '2302220009', '', '2', 'upload_files/candidate_tracker/18180837632_DOC-20211106-WA0014..pdf', NULL, '1', '2023-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-22 08:09:29', 1, '2023-02-22 08:14:18', 0, NULL, 1),
(11955, 'GEORGE DOMINIC M', '6', '7092381704', '7904051696', 'georgedominic3@gmail.com', '1992-08-24', 30, '3', '2', 'MICHAEL', 'NIL', 18000.00, 1, 20000.00, 25000.00, 'VILLIVAKKAM', 'VILLIVAKKAM', '2302230001', '', '2', 'upload_files/candidate_tracker/76857296870_0_0_George Resume 1.docx', NULL, '1', '2023-02-23', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '8 yrs admin exp communication not clear having health issue will not sustain and not suitable', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-23 01:27:00', 85, '2023-02-23 03:50:30', 0, NULL, 1),
(11956, 'Sangeetha', '6', '9884102945', '9841701500', 'Sangeethas1710@gmail.com', '2000-01-10', 23, '2', '2', 'Sakthivel', 'BCA', 25000.00, 1, 15000.00, 17000.00, 'Mylapore', 'Mylapore', '2302230002', '1', '2', 'upload_files/candidate_tracker/12103181771_Sangeetha Resume.pdf', NULL, '3', '2023-02-23', 1, '', '3', '59', '2023-02-27', 204000.00, '', '2', '1970-01-01', '2', 'Selected for Suthagar Team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-23 02:52:59', 60, '2023-02-28 05:00:21', 0, NULL, 1),
(11957, 'Rajasree', '4', '7338975013', '9344047963', 'rajasree1304@gmail.com', '2001-02-13', 22, '2', '2', 'Kumararaja', 'Driver', 50000.00, 1, 12500.00, 18000.00, 'Chennai', 'Chennai', '2302240001', '1', '2', 'upload_files/candidate_tracker/4381032312_28841934-7ba6-4997-88c1-255896eacba7.pdf', NULL, '1', '2023-02-24', 0, '', '3', '59', '2023-03-15', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Banu Team in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-24 10:20:12', 60, '2023-02-27 07:36:49', 0, NULL, 1),
(11958, 'Kathiravan', '6', '9597517171', '7598978203', 'Mkmkathirkpk5@gmail.com', '2002-02-25', 20, '2', '2', 'Kannan', 'Farmer', 15000.00, 3, 0.00, 20000.00, 'Ariyalur', 'Mint street', '2302240002', '1', '1', 'upload_files/candidate_tracker/36385039802_kathiravan resume.pdf', NULL, '1', '2023-02-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Yet To Complete Their Graduation Still 4 Months To Go', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-24 10:35:03', 85, '2023-02-24 12:38:43', 0, NULL, 1),
(11959, 'LAYONAL JENISTON. J', '6', '7598978203', '9597517171', 'layonalmitha1423@gmail.com', '2002-03-14', 20, '2', '1', 'John', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Trichy', 'Ashok nagar', '2302240003', '1', '1', 'upload_files/candidate_tracker/85926397991_Layonal Jeniston.J - Resume.pdf', NULL, '1', '2023-02-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Yet To Complete Their Graduation Still 4 Months To Go', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-24 10:40:29', 85, '2023-02-24 12:38:52', 0, NULL, 1),
(11960, 'vimal kumar.k', '5', '9080844902', '', 'vimalkumar101998@gmail.com', '1998-01-10', 25, '2', '2', 'kamalakannan', 'driver', 15000.00, 0, 3.25, 4.00, 'chennai', 'chennai', '2302240004', '1', '2', 'upload_files/candidate_tracker/86747641829_Vimal Kumar Resume-11.pdf', NULL, '1', '2023-02-24', 0, '', '3', '59', '2023-03-01', 350000.00, '', '5', '1970-01-01', '1', 'Selected for GK sir Tem with Commtment 2L in 1 month', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-24 11:12:28', 60, '2023-02-27 07:38:59', 0, NULL, 1),
(11961, 'R.Bakiya', '31', '8754850128', '9940834936', 'nanthinirathinam3001@gmail.com', '2001-10-23', 21, '3', '2', 'Rathinam', 'Carpenter', 30000.00, 2, 0.00, 20000.00, 'No6, kuyavr street Thirukalukundram Chengalpattu', 'Chengalpattu', '2302240005', '', '1', 'upload_files/candidate_tracker/59079734354_Bakiya. R[Linux, AWS, Devops]-9.pdf', NULL, '1', '2023-02-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance no basic skills will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-24 11:56:54', 1, '2023-02-24 12:31:23', 0, NULL, 1),
(11962, 'Sharath M', '32', '9071125212', '9742207515', 'sharathblaze5@gmail.com', '1999-05-05', 23, '1', '2', 'Bhagyalakshmi', 'Project Manager at marketing company', 60000.00, 1, 26500.00, 28000.00, 'Jp Nagar 6th phase', 'Jp Nagar 6th phase', '2302240006', '', '2', 'upload_files/candidate_tracker/87762015397_DOC-20230221-WA0002..docx', NULL, '1', '2023-02-24', 0, '2302240006', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'HR Round Reject Had a initial discussion but there is no response later ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-24 01:39:29', 85, '2023-02-24 03:43:55', 0, NULL, 1),
(11963, 'Vishwaleo', '6', '9361956253', '7550386487', 'thalapathileo11@gmail.com', '2001-07-17', 21, '2', '2', 'Vidhya', 'Organiser', 140000.00, 1, 0.00, 12000.00, 'Regunathapuram', 'Thanjavur', '2302250001', '1', '1', 'upload_files/candidate_tracker/49957474840_0_vishawleo.pdf', NULL, '1', '2023-02-27', 0, '', '3', '59', '2023-03-01', 138948.00, '', '', '2023-03-08', '2', 'Selected for Thanjavur  - Consultant', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-25 10:10:06', 60, '2023-02-28 04:49:30', 0, NULL, 1),
(11964, 'Bhuvaneswari E', '14', '8489440406', '', 'bhuvanabca36@gmail.com', '1993-10-06', 29, '4', '1', 'Manikandan', 'Site engineer', 17000.00, 1, 12000.00, 20000.00, 'Jayankondam', 'Chennai', '2302250002', '', '2', 'upload_files/candidate_tracker/35384261194_BHUVANA RESUME.docx', NULL, '1', '2023-02-25', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long back 1 yr Exp  career Gp in between looking for IT openings but will not sustain not more than a year', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-25 10:29:37', 85, '2023-02-25 10:40:44', 0, NULL, 1),
(11965, 'S prema', '4', '9791718495', '', 'pp2107261@gmail.com', '2002-11-07', 20, '3', '2', 'Sundharam', 'Server', 7500.00, 2, 0.00, 10000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2302250003', '', '1', 'upload_files/candidate_tracker/65615174607_Prema Resume.pdf', NULL, '1', '2023-02-27', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for team voice not have the flow .....struggle to speak fluently...', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-25 02:50:55', 1, '2023-02-27 11:27:29', 0, NULL, 1),
(11966, 'Mahesh kumar b', '5', '9789849039', '', 'maheshsep45@gmail.com', '1991-03-01', 31, '3', '2', 'Elamathi mother', 'CSE', 18.00, 0, 16.00, 22.00, 'Chennai', 'Chennai', '2302250004', '', '2', 'upload_files/candidate_tracker/16394410162_1557411489877_1557411468574_1_10106 (3) (1) (1) (3).pdf', NULL, '1', '2023-03-01', 0, '', '1', '52', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-25 03:03:38', 85, '2023-03-01 11:50:30', 0, NULL, 1),
(11967, 'Naveen Kumar', '6', '8825579045', '', 'bovasnaveen@gmail.com', '1993-09-11', 30, '2', '2', 'Joseph', 'Painter', 100000.00, 2, 2.41, 3.50, 'Chennai', 'Chennai', '2302250005', '1', '2', 'upload_files/candidate_tracker/24127390577_naveenkumar j(1)(2) (1) (1).docx', NULL, '1', '2024-02-22', 10, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-02-25 03:52:32', 104, '2024-02-22 12:47:43', 0, NULL, 1),
(11968, 'Bharath. B', '5', '9500541862', '8838940426', 'bharathbaskar0619@gmail.com', '2000-06-19', 22, '2', '2', 'Parent', 'Spares incharge', 20000.00, 1, 0.00, 15000.00, 'No:225 bala murugan nagar TV puram PONNERI 601 204', 'No:225 Bala Murugan Nagar TV Puram PONNERI 601 204', '2302250006', '1', '2', 'upload_files/candidate_tracker/25189130798_BHARATH RESUME New 4.pdf', NULL, '1', '2023-02-27', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communicaiton Ok have Exp in Tracttor Sales can give a try for our roles kindly check and let me know your interest', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-25 04:30:34', 60, '2023-02-27 07:07:20', 0, NULL, 1),
(11969, 'D.E.Manikandan', '5', '9566086606', '', 'vikemani@gmail.com', '1992-08-13', 30, '2', '2', 'D.Elangovan', 'Asst manager project', 45000.00, 1, 40000.00, 45000.00, 'Chennai', 'Chennai', '2302250007', '1', '2', 'upload_files/candidate_tracker/13534097308_Resume.docx', NULL, '1', '2023-02-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance 11 yrs in manufacturing sales not suitable will not take calls', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-25 04:44:14', 85, '2023-02-27 10:37:00', 0, NULL, 1),
(11970, '', '0', '9751672699', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-27 01:10:36', 0, NULL, 0, NULL, 1),
(11971, 'Sivasubramani', '6', '7667192954', '7904889514', 'aaragsiva@gmail.com', '1999-08-27', 23, '2', '2', 'AYYANAN', 'Revenue Supervisor TNEB', 40000.00, 2, 21000.00, 25000.00, 'Madurai', 'Thoraipakkam chennai', '2302270002', '1', '2', 'upload_files/candidate_tracker/84310367179_RESUME Sivasubramani.docx', NULL, '1', '2023-03-23', 20, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for our process ... long run doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-27 08:37:34', 85, '2023-03-23 05:05:25', 0, NULL, 1),
(11972, 'nitesh kumar', '6', '7780550124', '', 'niteshjelohari@gmail.com', '1996-07-04', 26, '2', '2', 'ariya raj', 'late', 20000.00, 1, 15000.00, 25000.00, 'avadi', 'Ramapuram', '2302270003', '1', '2', 'upload_files/candidate_tracker/18608870107_Nithesh Kumar CV (3).pdf', NULL, '1', '2023-02-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Target not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-27 09:23:07', 1, '2023-02-27 12:37:01', 0, NULL, 1),
(11973, 'Syedu Waheed m', '5', '8608871964', '7639913354', 'masoodwaheed231@gmail.com', '2000-01-09', 23, '2', '2', 'Syed Masood ahmed', 'Assistant manager', 20000.00, 3, 0.00, 31000.00, '58/40 Khan sahib Street tirupattur 635601', 'Ambattur chennai', '2302270004', '1', '2', 'upload_files/candidate_tracker/1943141841_Waheed Masood.pdf', NULL, '1', '2023-02-27', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not ok with sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-27 10:12:50', 60, '2023-02-27 07:34:40', 0, NULL, 1),
(11974, 'Jayashree.J', '31', '7094908789', '8144210438', 'jjayashree15598@gmail.com', '1998-05-15', 24, '3', '2', 'Jayavel', 'Chennai Port trust (painter)', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chengalpattu', '2302270005', '', '1', 'upload_files/candidate_tracker/42362711016_Fresher resume-1.pdf', NULL, '1', '2023-02-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too Long Distance No Basics In Web Development Not Suitable Looking For Testing Only', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-27 10:40:50', 1, '2023-02-27 10:46:25', 0, NULL, 1),
(11975, 'Umamageswari', '31', '8220502164', '', 'umamageswari161999@gmail.com', '1999-06-01', 23, '3', '2', 'Kumar', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2302270006', '', '1', 'upload_files/candidate_tracker/39688834616_uma new.pdf', NULL, '1', '2023-02-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance no basics in Web development not suitable looking for Testing only', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-27 10:41:10', 1, '2023-02-27 10:45:46', 0, NULL, 1),
(11976, 'Preethi', '6', '9629679812', '6381802950', 'Cutepreethu591@gmail.com', '2001-04-10', 21, '2', '1', 'Priya', 'Worker', 20000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2302270007', '1', '2', 'upload_files/candidate_tracker/53732665987_Resume (1).docx', NULL, '1', '2023-02-27', 0, '', '3', '59', '2023-03-15', 240000.00, '', '3', '2023-05-02', '2', 'Selected for Suthagar Team in Consultant Role', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-27 10:49:20', 60, '2023-03-14 10:04:04', 0, NULL, 1),
(11977, 'kaviya', '13', '8754090972', '', 'kaviyaravi257@gmail.com', '2002-01-03', 21, '2', '2', 'ravichandran', 'farmer', 40000.00, 0, 12000.00, 15000.00, 'teynapet', 'Teynapet', '2302270008', '1', '2', 'upload_files/candidate_tracker/15837079671_CV_2022112314125543 (1).pdf', NULL, '1', '2023-02-27', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come back with her confrmation 2nd round interviewed by sathish IT and was on hold candidate looking for Telesales Profile too', '2', '1', '0', '1', '8', '0', '2', '2023-03-01', '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-27 11:02:32', 1, '2023-02-27 11:55:26', 0, NULL, 1),
(11978, 'vembarasi c', '5', '6374630182', '8608871964', 'chandruvembarasi1234@gmail.com', '2000-03-27', 22, '2', '2', 'Chandru', 'Assistant manager', 15000.00, 3, 26000.00, 32000.00, 'Melbatchapet selvaganapathi street harur', 'Mogapapair west', '2302270009', '1', '2', 'upload_files/candidate_tracker/27725925102_vembarasi CV.docx', NULL, '1', '2023-02-27', 15, '', '3', '59', '2023-04-11', 380000.00, '', NULL, '2025-10-08', '2', 'Selected for Santhosh Team with PF/PT', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-27 11:19:30', 60, '2023-03-16 05:13:23', 0, NULL, 1),
(11979, 'Rajesh', '2', '7358721596', '', 'Rajeshsaravanan01@gmAil.com', '1999-10-10', 23, '3', '2', 'M.saravanan', 'Travel', 30000.00, 1, 14000.00, 20000.00, 'Chennai', 'Chennai', '2302270010', '', '2', 'upload_files/candidate_tracker/37938417378_rajesh  resume (3) - Copy.pdf', NULL, '1', '2023-02-27', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have basic knowledge in NodeJS need time to confirm the TxxampC if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', '2023-03-01', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-27 01:01:49', 1, '2023-02-27 02:53:34', 0, NULL, 1),
(11980, 'Karthikeyan G', '4', '9047749492', '', 'Karthimask1995@gmail.com', '1995-09-17', 27, '2', '1', 'Gunasekaran M', 'Bank employee', 12.00, 1, 20000.00, 15000.00, 'Thirumanur', 'Thirumanur', '2302270011', '1', '2', 'upload_files/candidate_tracker/42947145262_KARTHIKEYAN NEW RESUME(1).pdf', NULL, '1', '2023-02-27', 1, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-27 01:02:02', 85, '2023-02-27 01:17:04', 0, NULL, 1),
(11981, '', '0', '9360320716', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302270012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-27 04:35:58', 0, NULL, 0, NULL, 1),
(11982, 'Dharun p', '20', '9840664491', '9884754491', 'dharuncristino@gmail.com', '2002-10-10', 20, '4', '2', 'Gomathi', 'Self employed', 30000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2302270013', '', '2', 'upload_files/candidate_tracker/48638314810_Dharun resume.pdf', NULL, '3', '2023-03-04', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-27 04:45:05', 1, '2023-03-13 03:23:19', 0, NULL, 1),
(11983, 'Arumuga Priya Thiyagarajan', '5', '6381507480', '7598523034', 'priyathiyagarajan0521@gmail.com', '1999-04-05', 23, '2', '2', 'Thiyagarajan (parent)', 'Supervisor At PMT', 20000.00, 2, 20000.00, 25000.00, 'Arumbakkam', 'Arumbakkam', '2302280001', '1', '2', 'upload_files/candidate_tracker/65956650911_Arumuga Priya Thiyag_Resume.docx', NULL, '1', '2023-02-28', 1, '', '3', '59', '2023-04-06', 277920.00, '', '', '2023-04-07', '1', 'Selected for ESales in Consultant ROle', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 10:04:33', 60, '2023-03-11 04:38:43', 0, NULL, 1),
(11984, 'S. VIGNESH KUMAR', '14', '8124523794', '', 'svigneshkumar720@gmail.com', '2002-01-05', 21, '2', '2', 'Shanmugam k', 'Typist', 35000.00, 1, 0.00, 15000.00, 'Tiruvarur', 'Chennai', '2302280002', '1', '1', 'upload_files/candidate_tracker/58186881357_vignesh cv (2).pdf', NULL, '1', '2023-02-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Already attended and not open for TxxampC No basic knowledge too', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 10:44:59', 85, '2023-02-28 12:10:42', 0, NULL, 1),
(11985, 'Santhosh.A', '6', '9344670305', '8939349084', 'asanthoshaf@gmail.com', '2002-04-12', 20, '2', '2', 'Arul.K', 'Tellicaller outbound', 10.00, 1, 0.00, 18000.00, 'Pallikaranai', 'Pallikaranai', '2302280003', '1', '1', 'upload_files/candidate_tracker/81593514024_SANTHOSH', NULL, '1', '2023-02-28', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 11:03:38', 60, '2023-02-28 07:28:44', 0, NULL, 1),
(11986, 'Panditi Nageswara Rao', '4', '9360377920', '8825924075', 'nageswararao5426@gmail.com', '2002-07-12', 20, '2', '2', 'Thomas. A', 'Watch man', 8000.00, 2, 0.00, 15000.00, 'perambur', 'Perambur', '2302280004', '1', '1', 'upload_files/candidate_tracker/4313186980_PANDITI NAGESWARA RAO (1) (1).pdf', NULL, '1', '2023-02-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communicaiton Ok fresher for our roles left with out attending the 2nd level interview', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 11:27:30', 85, '2023-02-28 12:11:12', 0, NULL, 1),
(11987, 'Venkatesan B', '5', '9944166426', '6382531033', 'venkatesanbaskar21@gmail.com', '1998-12-21', 24, '2', '2', 'Suseela', 'Self employed', 7000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2302280005', '1', '2', 'upload_files/candidate_tracker/78749011024_Venkatesan.B_Resume.docx', NULL, '1', '2023-02-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude will not sustain in our roles and handle not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 11:30:25', 85, '2023-02-28 11:51:25', 0, NULL, 1),
(11988, 'Kannapiran T', '13', '8668052997', '9500809734', 'kannapiran0007@gmail.com', '1999-07-11', 23, '3', '2', 'T mani', 'Software developer', 20.00, 1, 0.00, 18.00, 'Trichy', 'Adyar', '2302280006', '', '1', 'upload_files/candidate_tracker/95974624726_KannapiranResume 2.pdf', NULL, '1', '2023-02-28', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'Fresher for IT, Need to be trained 5050 kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-28 11:42:54', 1, '2023-02-28 11:47:12', 0, NULL, 1),
(11989, 'Shabee', '5', '6382531033', '9944166426', 'Shabeestrixx6@gmail.com', '1999-05-20', 23, '2', '2', 'Barkath begum', 'House wife', 15000.00, 3, 20000.00, 25000.00, 'Chennai', 'Chennai', '2302280007', '1', '2', 'upload_files/candidate_tracker/69896255353_SHABEER. A.pdf', NULL, '1', '2023-02-28', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected, not suitable for our role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 11:50:31', 85, '2023-02-28 12:10:07', 0, NULL, 1),
(11990, 'Mohamed Arshath', '31', '7358654365', '', 'mdarsath620@gmail.com', '2001-06-05', 21, '4', '2', 'Sathik Ali', 'B.com', 25000.00, 0, 0.00, 350000.00, 'Chennai', 'Chennai', '2302280008', '', '1', 'upload_files/candidate_tracker/11380007240_Mohamed Arshad - Front end developer resume (Fresher) (1) (1).pdf', NULL, '1', '2023-02-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher having lot of reference outside will not run in a long self learned not much comfort with TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-28 12:47:35', 1, '2023-02-28 12:56:33', 0, NULL, 1),
(11991, 'Shahul Hameed', '10', '8124791375', '', 'shahulgeelax@gmail.com', '1996-12-16', 26, '3', '2', 'Parveen Nisha', 'House Wife', 1000.00, 2, 25000.00, 35000.00, 'Ulundurpet', 'chennai', '2302280009', '', '2', 'upload_files/candidate_tracker/17369102395_Shahul Hameed TL.pdf', NULL, '1', '2023-04-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'few months ago  attend the interview in our company for sales..  now came for mis no communication xxamp not suit for our role', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-28 02:13:34', 1, '2023-04-26 01:03:35', 0, NULL, 1),
(11992, 'Shahul Hameed', '4', '8124791775', '', 'shahulgeelax@gmail.com', '1996-12-16', 26, '3', '2', 'Ameer Jan', 'Not working', 10.00, 2, 19.00, 25.00, 'Villupuram', 'Villupuram', '2302280010', '', '2', 'upload_files/candidate_tracker/13733440865_Shahul Hameed.pdf', NULL, '1', '2023-02-28', 0, '', '4', '11', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Non voice Open for Telecalling sALES 5050 profile kindly check and let me know your inputs', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-28 02:14:46', 1, '2023-02-28 02:20:30', 0, NULL, 1),
(11993, 'Mohammed Faisal', '5', '7540025932', '7845810744', 'mfp199507@gmail.com', '1995-11-03', 27, '2', '2', 'Mohammed Suhail', 'Business man', 75000.00, 2, 35000.00, 36000.00, 'Vaniyambadi', 'Chennai', '2302280011', '1', '2', 'upload_files/candidate_tracker/17214651520_Mohammed Faisal_Resume.pdf', NULL, '1', '2023-03-01', 0, '', '3', '59', '2023-03-06', 321696.00, '', '7', '1970-01-01', '2', 'Selected for Sarath Team PF/PT with Commitment  2L in march then 2K increment in April 2023', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 04:56:51', 60, '2023-03-02 07:15:38', 0, NULL, 1),
(11994, '', '0', '7339411286', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303010001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-01 05:15:52', 0, NULL, 0, NULL, 1),
(11995, 'Priyadarsini C', '6', '9791341679', '', 'cpriyadharsini23@gmail.com', '1998-04-23', 24, '2', '2', 'Chandramohan', 'Daily worker', 10000.00, 3, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2303010002', '1', '2', 'upload_files/candidate_tracker/16365000778_priya .pdf', NULL, '1', '2023-03-01', 0, '', '3', '59', '2023-03-03', 138948.00, '', '4', '2023-04-25', '2', 'Selected for Thanjavur Consultant Role', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-01 11:23:21', 60, '2023-03-02 05:44:53', 0, NULL, 1),
(11996, 'Naveen Nayagam', '33', '8681839497', '8681006402', 'agnasnaveenoffice@gmail.com', '2001-07-02', 21, '2', '2', 'Reeta J', 'House Keeping', 250000.00, 2, 10000.00, 15000.00, 'Thousand Lights', 'Thousand Lights', '2303010003', '1', '2', 'upload_files/candidate_tracker/44906446229_Naveen Nayagam Resume.pdf', NULL, '1', '2023-03-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics in Accounts looking only for the salary growth will not sustain and handle pressure if he comes back let us try later', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-01 12:38:04', 85, '2023-03-02 11:03:06', 0, NULL, 1),
(11997, 'mounika srinivasan', '13', '9715277883', '9629718047', 'mounikasrinivasan21@gmail.com', '2002-05-21', 20, '4', '2', 'r.srinivasan', 'business', 45000.00, 1, 0.00, 20000.00, 'kumbakonam', 'kumbakonam', '2303010004', '', '1', 'upload_files/candidate_tracker/73908677878_mounika.pdf', NULL, '1', '2023-03-01', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher Yet to complete her graduation have basic knowledge kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-01 01:33:36', 1, '2023-03-01 01:47:04', 0, NULL, 1),
(11998, 'Rishanth B', '11', '9176271928', '7200081932', 'Rishanthoff@gmail.com', '2000-08-23', 22, '2', '2', 'Balasubramanian', 'Marketing', 300000.00, 0, 0.00, 180000.00, 'Chennai', 'Chennai', '2303020001', '1', '1', 'upload_files/candidate_tracker/57105917853_RISHANTH.pdf', NULL, '1', '2023-03-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,no basics in reruitment will not handle our profiles not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-02 10:46:06', 85, '2023-03-02 11:03:23', 0, NULL, 1),
(11999, '', '0', '7878787676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303020002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-02 11:29:59', 0, NULL, 0, NULL, 1),
(12000, 'MOHAMMED FAYAS', '31', '8778897963', '', 'Asmifayas12345@gmail.com', '1997-08-16', 25, '3', '2', 'MOHAMMED NIZAR', 'Business', 30000.00, 4, 0.00, 15000.00, 'Gingee', 'Chromepet', '2303020003', '', '1', 'upload_files/candidate_tracker/75804534297_CURRICULUM VITAE.docx', NULL, '1', '2023-03-02', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT have other Exp interested to learn open for TxxampC can be trained kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-02 11:38:00', 1, '2023-03-02 11:41:43', 0, NULL, 1),
(12001, 'Faritha Banu', '4', '9080949181', '', 'faritha1999banu@gmail.com', '1999-12-05', 23, '4', '2', 'Sabura beevi', 'Fresher', 15000.00, 2, 0.00, 15000.00, 'Thiruvottiyur Chennai', 'Chennai', '2303020004', '', '1', 'upload_files/candidate_tracker/15350624045_Faritha Banu - B.E (4).pdf', NULL, '1', '2023-03-02', 0, '', '3', '59', '2023-03-06', 144000.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-02 01:16:05', 60, '2023-03-04 06:05:59', 0, NULL, 1),
(12002, 'R.kalyani', '4', '8667272406', '9176238376', 'kalyanirk711@gmail.com', '2000-08-25', 22, '4', '2', 'RAVINDRAN', 'Plumber', 15000.00, 1, 15000.00, 16000.00, 'THIRUVOTTIYUR CHENNAI', 'THIRUVOTTIYUR CHENNAI', '2303020005', '', '2', 'upload_files/candidate_tracker/56184449062_KALYANI(1).pdf', NULL, '1', '2023-03-02', 0, '', '3', '59', '2023-03-06', 216000.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team  yet to confirm the role Staff or Consultant', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-02 01:16:09', 60, '2023-03-04 06:07:56', 0, NULL, 1),
(12003, 'Poomalai A', '13', '9698450678', '9943690678', 'poomalaianbu136@gmail.com', '2000-06-13', 22, '3', '2', 'Susila Anbalagan', 'Business', 40000.00, 1, 0.00, 20000.00, '123, Gandhi Nagar, Karikadu Pattukkottai - 614601', '123, Gandhi Nagar, Karikadu Pattukkottai - 614601', '2303020006', '', '1', 'upload_files/candidate_tracker/5921107042_Poomalai-IT.pdf', NULL, '1', '2023-03-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT Long career gap No basic skills knowledge her sister in IT not  open for TxxampC will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-02 02:23:20', 1, '2023-03-02 02:31:16', 0, NULL, 1),
(12004, 'Dhiyaneshwaran T', '13', '9500039964', '', 'dhiyanesh0509@gmail.com', '2001-09-05', 21, '2', '2', 'Thiruppathi Kumar L', 'Sales Representative', 14000.00, 2, 0.00, 350000.00, 'Chennai', 'Chennai', '2303030001', '1', '1', 'upload_files/candidate_tracker/21365173542_Resume__.pdf', NULL, '1', '2023-03-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Holding an offer for 4LPA with Mphasis,since its taking time to join looking for someother opportunities with 3-3.5 LPA Fresher candidate too', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-03 10:53:55', 85, '2023-03-03 11:15:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12005, 'Vaitheeshwarimohan', '13', '9361774406', '7540032623', 'vaitheeshwarimohan@gmail.com', '2001-11-02', 21, '3', '2', 'V. Mohan', 'Business', 20000.00, 1, 0.00, 15.00, 'Cuddalore', 'Chennai', '2303030002', '', '1', 'upload_files/candidate_tracker/57093162645_vaithee7-1.pdf', NULL, '1', '2023-03-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'fresher need to train a lot Not open for TxxampC already rejected other offer due to SA', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-03 01:48:12', 1, '2023-03-03 01:56:30', 0, NULL, 1),
(12006, '', '0', '9361756554', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303030003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-03 03:16:27', 0, NULL, 0, NULL, 1),
(12007, 'sathiya priya k', '13', '9361392257', '8248179676', 'sathiyapriyak211@gmail.com', '2002-01-21', 21, '2', '2', 'kalimuthu', 'student', 50000.00, 1, 0.00, 20000.00, 'dindigul', 'chennai vadapalani', '2303030004', '1', '1', 'upload_files/candidate_tracker/82548817761_Sathiya priya all resume.docx', NULL, '1', '2023-03-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no basics in PHP need to train a lot not open for TxxampC not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-03 06:27:49', 85, '2023-03-06 11:52:06', 0, NULL, 1),
(12008, 'madhavan p', '4', '7708563522', '9894244699', 'madhavanp2000@gmail.com', '2000-07-20', 22, '3', '2', 'Pandurangan v', 'Viewer', 15000.00, 2, 13000.00, 20000.00, 'sholingur', 'sholingur', '2303030005', '', '2', 'upload_files/candidate_tracker/77052712253_Madhavan resume (1).pdf', NULL, '1', '2023-03-04', 15, '', '3', '59', '2023-03-08', 176844.00, '', '5', '1970-01-01', '1', 'Selected for  Consultant Role  in B2B', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-03 09:22:14', 60, '2023-03-06 03:47:17', 0, NULL, 1),
(12009, 'Ramesh', '4', '7904280905', '9840449893', 'Arrownetcafe03@gmail.com', '1994-03-28', 28, '3', '1', 'Abirami', 'Mba', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2303040001', '', '1', 'upload_files/candidate_tracker/54868573942_103120000000007917 (1).pdf', NULL, '1', '2023-03-04', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Communication Average not seems to be suitable no sustainability in his previous exp own reference do check and let me know your inputs', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-04 11:12:45', 1, '2023-03-04 11:54:48', 0, NULL, 1),
(12010, 'Sneka Mary', '22', '8838533168', '', 'snekamary75@gmail.com', '2002-05-07', 20, '3', '2', 'Antony Michael Prabhakar', 'Sales Man', 15000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Vadapalani', '2303050001', '', '1', 'upload_files/candidate_tracker/23475488371_Sneka Mary A Resume.pdf', NULL, '1', '2023-03-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-05 09:04:36', 1, '2023-03-05 09:11:51', 0, NULL, 1),
(12011, 'Susil kumar ck', '11', '9600105386', '9791036620', 'susil99ck@gmail.com', '1999-07-25', 23, '2', '2', 'Kuppuswamy cs', 'Business', 500000.00, 2, 0.00, 25000.00, 'Chrompet - chennai', 'Chrompet- chennai', '2303060001', '1', '1', 'upload_files/candidate_tracker/1833581866_Updated CV.pdf', NULL, '1', '2023-03-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have 6 months exp in recruitment already holds an offer with several companies min exp 20K will not sustain and not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-06 10:17:03', 85, '2023-03-07 10:24:14', 0, NULL, 1),
(12012, 'Titus Praveen', '11', '6369864698', '', 'tituspraveen1201@gmail.com', '2001-02-12', 22, '2', '2', 'Maglin', 'House wife', 240000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2303060002', '1', '2', 'upload_files/candidate_tracker/44798795012_Titus Praveen updated resume.docx', NULL, '1', '2023-03-07', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 6 Months Exp In Recruitment Already Holds An Offer With Several Companies Min Exp 20K Will Not Sustain And Not Suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-06 10:21:46', 85, '2023-03-07 10:24:27', 0, NULL, 1),
(12013, 'Arafath Nisha', '4', '6382115158', '9344005901', 'Arafathnisha1199@gmail.com', '1996-09-11', 26, '3', '2', 'kuthupdeen', 'tailor', 120000.00, 1, 15.00, 18.00, 'chennai', 'parrys', '2303060003', '', '2', 'upload_files/candidate_tracker/4551863261_Arafath Nisha resume 2023.docx', NULL, '1', '2023-03-06', 0, '', '3', '59', '2023-03-13', 216000.00, '', '5', '1970-01-01', '2', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-06 12:12:49', 60, '2023-03-11 05:01:24', 0, NULL, 1),
(12014, 'HARI KRISHNAN.E', '4', '8940390336', '8925674336', 'harielango272@gmail.com', '2002-04-29', 20, '2', '2', 'ELANGOVAN.L', 'FARMER', 10000.00, 1, 0.00, 12000.00, 'Reddipalayam', 'Thanjavur', '2303060004', '1', '1', 'upload_files/candidate_tracker/14289562357_1676561437056Resume (1).pdf', NULL, '1', '2023-03-07', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-06 12:24:44', 85, '2023-03-07 10:24:01', 0, NULL, 1),
(12015, 'Madhumithra', '11', '9962744735', '', 'mithra.madhuu@gmail.com', '2001-11-09', 21, '2', '2', 'Maheshkumar', 'Bcom', 20000.00, 1, 0.00, 13000.00, 'Venkatachalam street old washernmenpet', 'Venkatachalam street old washernmenpet', '2303060005', '1', '1', 'upload_files/candidate_tracker/20955948213_Madhumithra RE.pdf', NULL, '1', '2023-03-07', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for Recruitment need to train alot can give a try for recruitment if she comes back let us try', '6', '1', '', '1', '8', '', '2', '2023-03-09', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-06 05:07:01', 85, '2023-03-07 10:24:42', 0, NULL, 1),
(12016, 'Bharath.G', '11', '7305857502', '', 'bharathjii1507@gmail.com', '2002-07-15', 20, '2', '2', 'Gangatharan.C', 'Driver', 18000.00, 1, 0.00, 12000.00, '83B velmurugan nagar kolathur chennai-99', '83B Velmurugan Nagar Kolathur Chennai-99', '2303060006', '1', '1', 'upload_files/candidate_tracker/21090525706_BHARATH G resume...pdf', NULL, '1', '2023-03-07', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher not much strong with the basics need to train a lot  if he come back with the confirmation for TxxampC let us try', '6', '1', '', '1', '8', '', '2', '2023-03-09', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-06 05:11:21', 85, '2023-03-07 10:21:58', 0, NULL, 1),
(12017, 'Shyam Akash P V', '11', '8778471703', '', 'aa0123akash@gmail.com', '2001-06-01', 0, '3', '2', 'Sasikala', 'Nurse', 16000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2303070001', '', '1', 'upload_files/candidate_tracker/85880295171_Resume edited.pdf', NULL, '1', '2023-03-07', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher  education yet to complete he is into final sem open for TxxampC but seems doubtful cam e along with friends sustaianability doubts if he comes back let us try', '6', '2', '0', '1', '8', '0', '2', '2023-03-10', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-07 10:31:37', 1, '2023-03-07 10:36:56', 0, NULL, 1),
(12018, 'Saravanan L', '4', '9361058596', '9342008933', 'saravanansrs212@gmail.com', '2000-05-02', 22, '3', '2', 'Linga pandi', 'Own business', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2303070002', '', '2', 'upload_files/candidate_tracker/73124794593_saravanan Resume 2 (1) (2).pdf', NULL, '1', '2023-03-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have exp HDB looking for IT positions too not open for TxxampC Left without attending the 2nd level B2B interview', '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-07 11:31:48', 1, '2023-03-07 11:37:47', 0, NULL, 1),
(12019, 'Tabbrez', '4', '7299680388', '', 'mst31795@gmail.com', '1995-07-31', 27, '2', '2', 'Samadh', 'Leather Technician', 5000.00, 1, 0.00, 20000.00, 'Mylapore', 'Mylapore', '2303070003', '2', '2', 'upload_files/candidate_tracker/13796540980_Tabbrez Resume-1.pdf', NULL, '1', '2023-03-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude No graduation have Content writing Exp checked with Reyaz 2nd round and got rejected will not sustain in our other roles', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-07 11:45:47', 85, '2023-03-07 06:36:03', 0, NULL, 1),
(12020, 'Neelakandan Gunasekaran', '23', '6381691103', '', 'gneelakandan99@gmail.com', '1999-04-08', 23, '2', '2', 'Gunasekaran', 'Former', 300000.00, 3, 20000.00, 20000.00, 'Pattukkottai', 'Mathuranthagam', '2303070004', '1', '2', 'upload_files/candidate_tracker/79473476066_G.Neelakandan Resume .pdf', NULL, '1', '2023-03-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Basics skills just 3 months with 20K seems to be doubtful  and will not sustain in our roles not suitable ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-07 12:06:43', 85, '2023-03-08 03:57:13', 0, NULL, 1),
(12021, 'yunanesh', '2', '8825918047', '', 'yuvanesh0075@gmail.com', '1998-10-07', 24, '2', '2', 'balakrishanan', 'police', 35000.00, 2, 0.00, 15000.00, 'chengalpattu', 'Chengalpattu', '2303080001', '1', '1', 'upload_files/candidate_tracker/45760998158_YUVANESH B.pdf', NULL, '1', '2023-03-08', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No basic skills ideas Can be trained candidate need time to check with his family and confirm Father in Egmore Head Constable Family in Chengalpet need to confirm if he comes back let us try\n', '2', '1', '0', '1', '8', '0', '2', '2023-03-11', '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-03-08 11:51:58', 1, '2023-03-08 12:34:24', 0, NULL, 1),
(12022, 'Snekha k', '22', '6379450694', '9342009011', 'snekha84@gmail.com', '2000-11-09', 22, '2', '2', 'Kathirasen', 'Driver', 8000.00, 1, 22817.00, 25000.00, 'Chennai', 'Chennai', '2303080002', '1', '2', 'upload_files/candidate_tracker/70374392612_RESUME (U) .pdf', NULL, '1', '2023-03-09', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok fresher for Digital marketing Content Writing having exposure is customer support inside sales but not interested to get back into the same,Can give a try for our Content Writer Profile kindly check and let me know your inputs ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-08 10:01:55', 85, '2023-03-09 10:12:37', 0, NULL, 1),
(12023, 'Deepalakshmi V', '16', '9384623220', '9361345695', 'deepa01081999@gmail.com', '1999-08-01', 23, '3', '2', 'Vilvamani', 'MTC', 30000.00, 1, 20000.00, 15000.00, 'Chennai', 'Chennai', '2303090001', '', '2', 'upload_files/candidate_tracker/26311344019_Resume.pdf', NULL, '1', '2023-03-09', 0, '', '4', '98', NULL, 0.00, '', '0', NULL, '1', 'Average Communication.. Fresher To Our Role Can Be Trained ..Let Us Try ..', '3', '1', '0', '1', '8', '0', '2', '2023-03-13', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-09 02:01:22', 1, '2023-03-09 02:13:39', 0, NULL, 1),
(12024, 'Dilliganesh P', '16', '9003185702', '', 'Dilliganesh223@gmail.com', '1998-10-15', 24, '3', '2', 'Pallvannan d', 'Eletrition', 40000.00, 1, 23000.00, 15000.00, 'Perambur Chennai', 'Perambur chennai', '2303090002', '', '2', 'upload_files/candidate_tracker/97310481569_Dilliganesh resume new.docx', NULL, '1', '2023-03-09', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'no clarity while talking ...not suit for our process..', '3', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-09 02:08:00', 1, '2023-03-09 02:13:54', 0, NULL, 1),
(12025, 'Nagasanthabai. M. G', '2', '9597271001', '9043692190', 'Nagumurali533@gmail.com', '1999-11-11', 23, '4', '1', 'Gopi. V', 'Customer executive', 25000.00, 0, 0.00, 18000.00, 'Arumbakkam', 'Arumbakkam', '2303090003', '', '1', 'upload_files/candidate_tracker/79190252264_M.G.Naga resume.pdf', NULL, '1', '2023-03-09', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'married xxamp not much comfortable with our txxampc.. ', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-09 04:21:59', 1, '2023-03-09 04:32:50', 0, NULL, 1),
(12026, 'Madhavan. A', '31', '9080013969', '', 'madhumadhavan669@gmail.com', '2000-06-08', 22, '2', '2', 'Annamalai/saradha', '5', 15000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2303090004', '1', '1', 'upload_files/candidate_tracker/92816593023_Madhavan-A-goodcv.com-050323.133050.pdf', NULL, '1', '2023-03-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not much strong in basics he himself telling that he is good in practical knowledge 2nd round interviewed by Manikandan and was not comfortable in our profile will not sustain and not suitable', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-09 06:34:42', 85, '2023-03-13 10:48:08', 0, NULL, 1),
(12027, 'A SHAHITH', '23', '9943674873', '', 'shahithbca301@gmail.com', '1997-09-08', 25, '3', '2', 'Ariff jhan', 'Shop keeper', 10000.00, 1, 0.00, 25000.00, 'Chengam, thiruvannamalai district', 'Pallikaranai, chennai', '2303090005', '', '1', 'upload_files/candidate_tracker/75910896584_Shahith Resume01.pdf', NULL, '1', '2023-03-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT have worked in Bahrain in different domain min  exp in IT 10-15K and not much comfort in TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-09 07:18:41', 1, '2023-03-10 12:03:25', 0, NULL, 1),
(12028, 'Mohamed abbas', '4', '9123584162', '7092935198', 'mohamedabbas4162@gmail.com', '1998-01-10', 25, '3', '2', 'Sahul hameed', 'Father', 18000.00, 2, 15000.00, 17000.00, 'Puliyangudi tenkasi', 'Chennai thirumangalam', '2303100001', '', '2', 'upload_files/candidate_tracker/9122040174_mohamed abbas-1.pdf', NULL, '1', '2023-03-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable and no communication ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-10 10:38:23', 1, '2023-03-10 01:00:20', 0, NULL, 1),
(12029, 'Pavithran', '31', '9025730913', '8438970190', 'pavithranpavi747@gmail.com', '1997-03-04', 26, '3', '2', 'Venugopal', 'Mechanic', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2303100002', '', '1', 'upload_files/candidate_tracker/74104163320_NewResume3112023.docx', NULL, '1', '2023-03-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT have exposure in other domain not much comfirt in TxxampC  if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-10 12:28:53', 1, '2023-03-10 12:34:59', 0, NULL, 1),
(12030, 'Ramji', '13', '9080799858', '4424332142', 'ramjirajendran1985@gmail.com', '1985-01-09', 38, '4', '1', 'R Malliga', 'Housewife', 15000.00, 0, 500000.00, 600000.00, 'Chennai', 'Chennai', '2303100003', '', '2', 'upload_files/candidate_tracker/42077352595_Resume%20%286%29.docx', NULL, '1', '2023-03-10', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have PHP skills 6 yrs exp kindly give a task and check', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-10 12:33:17', 85, '2023-03-10 07:05:50', 0, NULL, 1),
(12031, 'Sulaima fayaz', '11', '8667071846', '9159935619', 'Fayazsulaiman25@gmail.com', '1998-05-26', 24, '2', '2', 'Sadiq', 'Leather merchant', 50000.00, 0, 12000.00, 18000.00, 'Periyanna maistry street periamet chennai', 'Periyanna maistry street periamet chennai', '2303100004', '1', '2', 'upload_files/candidate_tracker/17050349673_Sulaiman Fayaz (2).docx', NULL, '1', '2023-03-10', 0, '', '3', '59', '2023-03-20', 168000.00, '', '', '2023-03-22', '2', 'Selected for Recruitment with PT only', '6', '1', '', '1', '8', '', '2', '2023-03-13', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-10 03:28:06', 85, '2023-03-18 03:18:50', 0, NULL, 1),
(12032, '', '0', '7904017266', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-10 04:13:37', 0, NULL, 0, NULL, 1),
(12033, 'Selvaganapathy N', '13', '7871397027', '9994482762', 'selvaganapathy683@gmail.com', '1999-04-15', 23, '3', '2', 'Natarajan N', 'Lab Technician', 50000.00, 1, 0.00, 300000.00, 'Chidambaram', 'Chennai', '2303110001', '', '1', 'upload_files/candidate_tracker/61012666963_selvaganapathy new resume (2).pdf', NULL, '1', '2023-03-11', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher have exp in his core domain have basic knowledge in SQL can give a try for PHP kindly check  and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-11 11:21:02', 1, '2023-03-11 11:27:54', 0, NULL, 1),
(12034, 'Vignesh babu k', '13', '9843669433', '', 'vinmasvicky@gmail.com', '1998-03-12', 24, '3', '2', 'M. kalimuthu', 'Teacher', 40000.00, 1, 0.00, 3.50, 'PUDUKKOTTAI', 'Vadapalani', '2303110002', '', '1', 'upload_files/candidate_tracker/43970837434_VICKYRE.pdf', NULL, '1', '2023-03-11', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have exp in his core domain have a basic knowledge in Javascript an keen to learn both father and mum is govt teacher family need is not much sustainability in long run doubts manikandan interviewed and gave a positive feedback on the same', '2', '1', '0', '1', '8', '0', '2', '2023-03-13', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-11 11:21:33', 1, '2023-03-11 11:29:39', 0, NULL, 1),
(12035, 'Nishanth S', '13', '9629925457', '', 'ssnishanths001@gmail.com', '2008-03-11', 0, '3', '2', 'Settu', 'Famer', 10000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2303110003', '', '1', 'upload_files/candidate_tracker/1236005671_resume1.pdf', NULL, '1', '2023-03-11', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have knowledge in SQl Java and open for PHP learning but need time to check and confirm the TxxampC if he comes back let us try', '2', '2', '0', '1', '8', '0', '2', '2023-03-13', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-11 11:22:25', 1, '2023-03-11 11:28:06', 0, NULL, 1),
(12036, 'Bowan Richard', '22', '7305879270', '9710495670', 'richardbbowan@gmail.com', '2001-06-02', 21, '3', '2', 'Boniface', 'Supervisor', 40000.00, 1, 0.00, 18000.00, 'Chennai, perambur', 'Chennai, Perambur', '2303130001', '', '1', 'upload_files/candidate_tracker/17934242121_Resume.pdf', NULL, '1', '2023-03-13', 0, '', '4', '69', NULL, 0.00, '', '0', NULL, '1', 'Communication ok fresher for Digital MArketing can be trained kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-13 10:15:01', 1, '2023-03-13 10:19:49', 0, NULL, 1),
(12037, 'Prakash M', '13', '7094625535', '9342446250', 'Prakashmeiyanathan@gmail.com', '1999-06-03', 23, '3', '2', 'Meiyanathan.A', 'Agriculture', 10000.00, 2, 0.00, 15000.00, 'Pudukkottai', 'chennai', '2303130002', '', '1', 'upload_files/candidate_tracker/31003934508_prakash new.pdf', NULL, '1', '2023-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC Not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-13 11:16:19', 1, '2023-03-13 11:22:07', 0, NULL, 1),
(12038, 'Priya', '16', '9789092374', '', 'Spriyamirdhulla1979@gmail.com', '1979-03-31', 43, '3', '1', 'Karthikeyan', 'Business', 30000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2303130003', '', '2', 'upload_files/candidate_tracker/28959589915_priya.pdf', NULL, '1', '2023-03-13', 1, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Selected for MIS Gokul final round age around 44 yrs but seems to good to handle the position Need to negotiate on the salary and to proceed with th final move', '3', '2', '0', '1', '8', '0', '2', '2023-03-15', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-13 12:05:36', 1, '2023-03-13 12:24:06', 0, NULL, 1),
(12039, '', '0', '9787918774', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303130004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-13 12:21:54', 0, NULL, 0, NULL, 1),
(12040, 'dhanush', '13', '9710670399', '9080330142', 'rgdhanush2015@gmail.com', '1999-09-26', 23, '3', '2', 'kumar', 'manager', 500000.00, 1, 150000.00, 300000.00, 'senthil nagar seevaram perungudi chennai', 'metha nagar kundrathur chennai', '2303130005', '', '2', 'upload_files/candidate_tracker/96059474030_Dhanush. k.pdf', NULL, '1', '2023-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance he is in final year college will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-13 12:22:11', 1, '2023-03-13 12:30:20', 0, NULL, 1),
(12041, 'Yugeshwaran', '28', '9500124609', '', 'yugeshwarang@gmail.com', '2000-07-14', 22, '3', '2', 'Gopal', 'Driver', 15000.00, 1, 0.00, 350000.00, '5/50 nethaji street okkiyam thuraipakkam Chennai', 'Chennai', '2303130006', '', '1', 'upload_files/candidate_tracker/712344989_Resume Yugesh.pdf', NULL, '1', '2023-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too Long distance not interested to go in the Javascript not much comfort in TxxampC not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-13 12:22:39', 1, '2023-03-13 12:30:22', 0, NULL, 1),
(12042, 'Chittibabu', '4', '9884678470', '7092736042', 'chittibabujohn@gmail.com', '1995-08-15', 27, '2', '2', 'Rajamma', 'Sweeper', 144000.00, 2, 13000.00, 18000.00, 'Ap', 'Thiruvottiyur, chennai', '2303130007', '2', '2', 'upload_files/candidate_tracker/62016013387_Chitti Babu Resume-New.pdf', NULL, '1', '2023-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'long career Gap not showing much interest on the job long back attended and got rejected on the same will not sustain and handle our pressure', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-13 02:42:49', 1, '2023-03-13 02:47:14', 0, NULL, 1),
(12043, 'S.Divya manohari', '5', '8940759027', '', 'divyaselvaraj77@gmail.com', '1997-07-07', 25, '4', '2', 'J. Selvaraj', 'Agriculture', 20000.00, 1, 18500.00, 28000.00, 'Kadapakkam', 'Chennai', '2303140001', '', '2', 'upload_files/candidate_tracker/10286499260_Divya resume.pdf', NULL, '1', '2023-03-14', 0, '', '3', '59', '2023-03-20', 297696.00, '', '', '2023-04-05', '2', 'Selected for GK Sir team in consultant Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-14 10:26:50', 60, '2023-03-20 11:47:38', 0, NULL, 1),
(12044, 'Sarathkumar', '5', '9962469801', '8939451936', 'rohitsarath.cafs@gmail.com', '1996-09-17', 26, '3', '2', 'Annaduri', 'Business man', 30000.00, 1, 25000.00, 25000.00, 'Royapuram', 'Royapuram', '2303140002', '', '2', 'upload_files/candidate_tracker/71060262855_Rohit.pdf', NULL, '1', '2023-03-14', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'We Offered Him The Package But Candidate Didnt Turn With His Confirmation Asked him to submit the previous exp documents but nothing he has and also he is our exp employee   Earlier feedback was not much good This is Banu reference', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-14 10:39:22', 1, '2023-03-14 11:19:55', 0, NULL, 1),
(12045, 'Cyrus emmanuel', '4', '8122978276', '8778201359', 'cyrusemmanuel1289@gmail.com', '1999-07-01', 23, '3', '2', 'Mercy', 'Teacher', 20000.00, 1, 17000.00, 19000.00, 'Otteri', 'Chennai', '2303140003', '', '2', 'upload_files/candidate_tracker/51472897066_RESUME-G.CYRUS EMMANUEL.pdf', NULL, '1', '2023-03-14', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'We offered him the package but candidate didnt turn with his confirmation not responded the calls too Banu Reference through Ex employee who appeared again', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-14 10:41:22', 1, '2023-03-14 10:59:00', 0, NULL, 1),
(12046, 'SUKITHA J', '4', '8825837849', '7845896398', 'Sukithajawahar2000@gmail.com', '1999-10-22', 23, '3', '2', 'Jawahar l', 'Farmer', 20000.00, 1, 15000.00, 17000.00, 'Thoothukudi', 'St Thomas Mount', '2303140004', '', '2', 'upload_files/candidate_tracker/58024421998_Resume-Sukitha-2.pdf', NULL, '1', '2023-03-14', 15, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'HAving 6 months experience, pronounciation problem', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-14 10:42:24', 1, '2023-03-14 11:29:09', 0, NULL, 1),
(12047, 'M. Suganthi', '4', '9345008628', '8778201359', 'Suganthymoorthy2313@gamil.com', '1998-08-13', 24, '3', '2', 'T. Moorthy', 'Farmer', 20000.00, 1, 15000.00, 16000.00, 'No 2/115 voc street kanniyammanpet', 'No 2/115 voc street kanniyammanpet', '2303140005', '', '2', 'upload_files/candidate_tracker/17567509966_imgtopdf_1403231114041 (1).pdf', NULL, '1', '2023-03-14', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'We Offered Him The Package But Candidate Didnt Turn With His Confirmation Not Responded The Calls Too Banu Reference Through Ex Employee Who Appeared Again', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-14 10:48:31', 1, '2023-03-14 11:18:39', 0, NULL, 1),
(12048, 'P.preethika Mary', '4', '8072263733', '8939682028', 'cutepapapreethi1001@gmail.com', '2002-09-01', 20, '2', '2', 'Mary Cristina.p', 'Housewife', 13000.00, 1, 14000.00, 14000.00, 'Chennai', 'Chennai', '2303140006', '1', '2', 'upload_files/candidate_tracker/48171004932_103120000000007917 (1).pdf', NULL, '1', '2023-03-14', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 5m of exp in sales  average in convincing .. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-14 11:05:06', 85, '2023-03-14 05:20:25', 0, NULL, 1),
(12049, 'Shamitha Shri.S', '11', '9840950393', '9940590282', 'shamitha.222001@gmail.com', '2001-08-22', 21, '2', '2', 'K.Sivakumar', 'Cement marketing', 45000.00, 2, 0.00, 20000.00, 'Nungambakkam', 'Nungambakkam', '2303140007', '1', '1', 'upload_files/candidate_tracker/25509907961_Shamithacv1.pdf', NULL, '1', '2023-03-14', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher looking for recruitment can be trained in our roles Need time to give her confirmation on TxxampC if she comes back let us try', '6', '1', '', '1', '8', '', '2', '2023-03-15', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-14 11:06:57', 85, '2023-03-14 05:19:40', 0, NULL, 1),
(12050, '', '0', '9092584964', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-14 11:33:19', 0, NULL, 0, NULL, 1),
(12051, 'Madhubala S', '5', '9884938782', '', 'madhubala1296@gmail.com', '1996-02-01', 27, '1', '2', 'Sankar p', 'Farmer', 30000.00, 2, 21000.00, 23000.00, 'Ramanathapuram', 'Chennai', '2303140009', '', '2', 'upload_files/candidate_tracker/71445438385_103120000000007917 (1).pdf', NULL, '1', '2023-03-14', 20, 'Jobs', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-14 11:51:58', 85, '2023-03-14 01:06:11', 0, NULL, 1),
(12052, 'Rishith', '11', '8939635360', '', 'cmrishith2001@gmail.com', '2001-03-12', 22, '2', '2', 'Madan kumar', 'Commission agent', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2303140010', '1', '1', 'upload_files/candidate_tracker/48798245697_Curriculum vitae (CV).pdf', NULL, '1', '2023-03-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Long Career Gap Salary Exp is high looking much for banking exams will not sustain and handle our work pressure', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-14 04:45:35', 85, '2023-03-15 10:52:07', 0, NULL, 1),
(12053, 'Keerthana S', '2', '6369915157', '', 'skeerthana0072001@gmail.com', '2001-06-20', 21, '2', '2', 'Selvaraj T', 'Warger', 18000.00, 2, 0.00, 15000.00, '123, Mangapuram main road', 'Chennai', '2303150001', '1', '1', 'upload_files/candidate_tracker/55711825346_K.pdf', NULL, '1', '2023-03-15', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-15 10:49:45', 85, '2023-03-15 11:26:30', 0, NULL, 1),
(12054, 'Rajkumar J', '2', '6382572627', '', 'jrajkumar806@gmail.com', '2000-09-26', 22, '2', '2', 'Jeyakumar K', 'Wager', 75000.00, 1, 0.00, 15000.00, '41B/1, Keelapatti last street, srivilliputtur.', 'Chennai', '2303150002', '1', '1', 'upload_files/candidate_tracker/63862836174_18ME030 Rajkumar. J ME8694.pdf', NULL, '1', '2023-03-15', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-15 10:51:04', 85, '2023-03-15 11:26:46', 0, NULL, 1),
(12055, 'Parameswari V', '23', '9344019908', '7639490756', 'v.parameswari2001@gmail.com', '2001-06-17', 21, '2', '2', 'Velusamy', 'Painting Contractor', 30000.00, 2, 0.00, 20000.00, 'Cuddalore', 'Chennai', '2303150003', '1', '1', 'upload_files/candidate_tracker/37219051579_Parameswari resume . pdf.pdf', NULL, '1', '2023-03-15', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-15 11:48:24', 85, '2023-03-15 05:19:42', 0, NULL, 1),
(12056, 'Keerthana M', '14', '7639490756', '9344740276', 'kubhu5500@gmail.com', '2001-12-27', 0, '3', '2', 'Sivagami', 'Farmer', 12000.00, 0, 15000.00, 20000.00, 'Chennai', 'Chennai', '2303150004', '', '1', 'upload_files/candidate_tracker/62245402356_KEERTHANA MURUGAN.pdf', NULL, '1', '2023-03-15', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-03-15 11:54:43', 1, '2023-03-15 11:59:12', 0, NULL, 1),
(12057, 'Pavithra.s', '4', '7604997924', '9176435761', 'Pl1503865@gamil.com', '1996-07-27', 26, '4', '1', 'G.lakshminathan', 'Famer', 10000.00, 1, 10000.00, 20000.00, 'Pallikarani', 'Pallikarani', '2303150005', '', '2', 'upload_files/candidate_tracker/10617607642_Resume_Pavithra.l_Format1.pdf', NULL, '3', '2023-03-15', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication seems not much active will not handle our work pressure not suitable', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2023-03-15 01:56:23', 1, '2023-03-15 02:05:09', 0, NULL, 1),
(12058, 'Aakash kumar.M', '17', '9884706164', '8608457858', 'miaaaku36@gmail.com', '2000-05-03', 22, '1', '1', 'Subhashini.A', 'House wife', 60000.00, 2, 30000.00, 35000.00, 'Chennai', 'Chennai', '2303150006', '', '2', 'upload_files/candidate_tracker/93090110942_DOC-20230308-WA0004..pdf', NULL, '1', '2023-03-15', 0, '55580', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance Fresher for Telesales only field exp will not sustain', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-15 03:05:52', 1, '2023-03-15 03:16:10', 0, NULL, 1),
(12059, 'DEVA G', '17', '7338954544', '9789859393', 'devaganapathy1@gmail.com', '1998-07-16', 24, '1', '2', 'HARI', 'IT', 50000.00, 2, 30000.00, 35000.00, 'Kattankulathur', 'Kattankulathur', '2303150007', '', '2', 'upload_files/candidate_tracker/7598239306_Deva Resume New.pdf', NULL, '1', '2023-03-15', 0, '55580', '5', '59', NULL, 0.00, '', '0', NULL, '1', '	Too Long Distance Fresher For Telesales Only Field Exp Will Not Sustain', '5', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-15 03:06:22', 1, '2023-03-15 03:19:50', 0, NULL, 1),
(12060, 'Cheran c', '17', '7708447327', '9080416208', 'cheran091@gmail.com', '1990-04-15', 32, '1', '1', 'Vidya', 'Teacher', 50000.00, 5, 48700.00, 52000.00, 'Sriperumbudur', 'Sriperumbudur', '2303150008', '', '2', 'upload_files/candidate_tracker/56398414658_DOC-20230302-WA0002..pdf', NULL, '1', '2023-03-15', 0, '55580', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'okay candidate.  But dont have relevant industry experience and also expecting higher package.', '5', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-15 03:06:38', 1, '2023-03-15 03:17:27', 0, NULL, 1),
(12061, 'Sathya Priya V M', '14', '9677753077', '', 'sathyapriyamuthu18@gmail.com', '2001-06-14', 21, '1', '2', 'K. Veeraputhiran', 'Grocery shop', 500000.00, 1, 0.00, 15000.00, 'Rajapalayam, viruthunagar district', 'Chennai', '2303160001', '', '1', 'upload_files/candidate_tracker/88656355677_Sathya Priya Resume Fresher MCA .pdf', NULL, '1', '2023-03-16', 0, '2303160001', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Yet to complete her graduation no basics in PHP need to train if she come back with TxxampC will check India First Veeramani reference\n', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-16 10:49:45', 1, '2023-03-16 10:57:21', 0, NULL, 1),
(12062, 'Sathishkumar.v', '4', '8838337912', '7010364821', 'sathishkumar09654@gmail.com', '1999-05-18', 23, '3', '2', 'Vignesh.p', 'Cooli', 20000.00, 1, 14000.00, 15000.00, 'No 158 rajangam Street vysarpadi chen-39', 'Door No 17/7 Jagadambal street perambure Chen-11', '2303160002', '', '2', 'upload_files/candidate_tracker/90580542549_Resume_Sathish_Format1.pdf', NULL, '1', '2023-03-16', 1, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Calling CARE Health insurance but seems to be slow pressure handling doubts a lot kindly check and let me know your inputs', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-16 11:21:57', 1, '2023-03-16 11:35:13', 0, NULL, 1),
(12063, '', '0', '6369535428', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303160003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-16 06:12:10', 0, NULL, 0, NULL, 1),
(12064, 'Saravana kumar durai p', '14', '9003302039', '6382716672', 'Saravananpalani401@gmail.com', '1996-07-13', 26, '4', '2', 'Palani k', 'Retired', 40000.00, 2, 0.00, 16000.00, 'Salem', 'Velacherry, chennai.', '2303170001', '', '1', 'upload_files/candidate_tracker/71093334561_Saravanan Updated resume.pdf', NULL, '1', '2023-03-17', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-17 10:06:02', 85, '2023-03-17 11:32:26', 0, NULL, 1),
(12065, 'Manikandan Rajendran', '31', '8754334715', '8778729341', 'manikandanmech8754@gmail.com', '1999-08-07', 23, '3', '2', 'S.Rajendran', 'Vegetables shop', 25000.00, 2, 0.00, 200000.00, 'Devakottai', 'Chennai', '2303170002', '', '1', 'upload_files/candidate_tracker/58123276624_ManiResume.pdf', NULL, '1', '2023-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no t much strong with the basics not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-17 12:14:15', 1, '2023-03-17 12:18:13', 0, NULL, 1),
(12066, 'Sankar ganesh R', '31', '9655961420', '9790067696', 'sankarganesh665@gmail.com', '1998-04-30', 24, '3', '2', 'Jayalakshmi R', 'Home maker', 8000.00, 0, 0.00, 15000.00, 'AVUDAIYARKOIL, Pudukkottai -614618', 'Mogappair West', '2303170003', '', '1', 'upload_files/candidate_tracker/82225885498_Resume_sankar.pdf', NULL, '1', '2023-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Strong With The Basics Not Open For TxxampC Will Not Sustain And Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-17 12:15:35', 1, '2023-03-17 12:20:39', 0, NULL, 1),
(12067, 'Kavibharathi', '4', '9363100532', '7397567454', 'kavibharathiond@gmail.com', '2000-12-10', 22, '2', '2', 'Elangovan', 'Tailoring', 25000.00, 2, 13000.00, 11000.00, 'orathanadu', 'orathanadu', '2303170004', '1', '2', 'upload_files/candidate_tracker/5971645173_Kavibharathi.pdf', NULL, '1', '2023-03-18', 20, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-17 12:22:20', 85, '2023-03-18 02:56:14', 0, NULL, 1),
(12068, 'Manjunathan', '16', '6369690144', '9790934273', 'Manjunathanm11191@gmail.com', '1991-01-11', 32, '2', '1', 'Mani G', 'House keeping work', 20000.00, 1, 16000.00, 16000.00, 'Tiruvannamalai', 'Chennai', '2303170005', '1', '2', 'upload_files/candidate_tracker/63093988602_1644495635214_1644495628687_new resume (1).pdf', NULL, '1', '2023-03-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication will not sustain and handle our work pressure not suitable ', '3', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-17 12:43:53', 85, '2023-03-17 03:48:05', 0, NULL, 1),
(12069, 'R. Keerthana', '4', '7708647352', '8300919787', 'rkkerthana64@gmail.com', '2000-01-30', 23, '2', '2', 'M. Ramesh', '-', 20.00, 0, 0.00, 8.00, 'Papanadu', 'Papanadu', '2303170006', '1', '1', 'upload_files/candidate_tracker/83894892059_KIRTHANA TTT.pdf.PDF', NULL, '1', '2023-03-18', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-17 12:53:47', 85, '2023-03-18 02:56:27', 0, NULL, 1),
(12070, '', '0', '7358323078', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303170007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-17 01:27:12', 0, NULL, 0, NULL, 1),
(12071, 'hiba fathima', '11', '7760167712', '', 'mirzahibafathima@gmail.com', '1993-09-23', 29, '4', '1', 'Mir Hassan abbas', 'HR manager', 50000.00, 1, 22000.00, 28000.00, 'Chennai', 'Royapettah', '2303170008', '', '2', 'upload_files/candidate_tracker/79557120628_Hiba New updated CV.pdf', NULL, '1', '2023-03-17', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Recruiter role no local language and the salary exp is very high will not sustain in our roles', '6', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-17 02:55:50', 1, '2023-03-17 03:07:07', 0, NULL, 1),
(12072, 'Selva Kumar k', '13', '8508082926', '', 'selvesselva12165@gmail.com', '1999-12-06', 23, '4', '2', 'Kuppu Samy k', 'Software developer', 10000.00, 1, 0.00, 200000.00, 'Tiruppur', 'Velachery', '2303180001', '', '1', 'upload_files/candidate_tracker/25300760695_Selva Kumar.pdf', NULL, '1', '2023-03-18', 0, '', '3', '59', '2023-03-20', 120000.00, '', '3', '2024-04-29', '2', '3 months 6K then 3 months 8K then 10-15K 3yrs SA', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-18 10:11:44', 60, '2023-04-19 04:37:20', 0, NULL, 1),
(12073, 'Madhumitha.S', '13', '6374056310', '8148848858', 'Sakthimathu50@gmail.com', '2002-05-18', 20, '4', '2', 'Sakthivel', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Kovilpatti', 'Chennai', '2303180002', '', '1', 'upload_files/candidate_tracker/28119187280_Madhu Resume-1.pdf', NULL, '1', '2023-03-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-18 11:03:47', 1, '2023-03-18 11:59:05', 0, NULL, 1),
(12074, 'Jaffar sadiq ali M', '11', '9791953945', '9940231506', 'Jaffaralikhan8633@gmail.com', '1995-12-17', 27, '4', '2', 'Madhina Begum M', 'House wife', 10000.00, 1, 0.00, 17000.00, 'Royapettah chennai', 'Royapettah chennai', '2303180003', '', '2', 'upload_files/candidate_tracker/78922074563_u8xmq-9b7wc.pdf', NULL, '1', '2023-03-18', 0, '', '3', '59', '2023-03-20', 120000.00, '', '', '2023-03-22', '1', 'Selected for Reruitment interviewed by Gokul with the commitment for 6 months 1.2 LPA then based on performance 1.8 to 2 LPA', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 11:07:33', 1, '2023-03-18 11:27:31', 0, NULL, 1),
(12075, 'M.raghul', '13', '7904758773', '', 'raghuljagadeesh23@gmail.com', '2000-11-23', 22, '3', '2', '13c/70 Gopal street perambur chennai 39', 'Labour work', 25000.00, 1, 0.00, 20000.00, 'Perambur', 'perambur', '2303180004', '', '1', 'upload_files/candidate_tracker/16879052898_raghul(resume).pdf', NULL, '1', '2023-03-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 11:51:17', 1, '2023-03-18 11:57:10', 0, NULL, 1),
(12076, 'GOBINATH', '13', '9344016255', '8940061078', 'ggopinath37745@gmail.com', '1999-10-20', 23, '3', '2', 'Dhandapani', 'Mason', 30000.00, 1, 0.00, 25000.00, 'Ambattur', 'Ambattur', '2303180005', '', '1', 'upload_files/candidate_tracker/19489166898_GOBINATH.D RESUME .pdf', NULL, '1', '2023-03-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 11:52:39', 1, '2023-03-18 12:24:26', 0, NULL, 1),
(12077, 'ANEESH KUMAR', '13', '6382103859', '9514524111', 'aneee020@gmail.com', '2001-02-02', 22, '3', '2', 'Ragavan', 'Civil', 15000.00, 0, 0.00, 20000.00, 'No.209 thirukkovil salai balaji nagar pattabiram', 'Pattabiram', '2303180006', '', '1', 'upload_files/candidate_tracker/41087960014_Aneesh Resume-1.docx', NULL, '1', '2023-03-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 11:53:31', 1, '2023-03-18 11:59:31', 0, NULL, 1),
(12078, 'R . Gomathy', '4', '9344089558', '', 'gomathyram2021@gmail.com', '2001-09-02', 21, '3', '2', 'Ramadoss', 'Driver', 30000.00, 2, 11000.00, 11000.00, ', naalukaal mandapam, Thanjavur, 613009', 'naalukaal mandapam, Thanjavur , 613009', '2303180007', '', '2', 'upload_files/candidate_tracker/53837400286_resume.docx', NULL, '1', '2023-03-18', 20, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 12:12:48', 1, '2023-03-18 12:45:04', 0, NULL, 1),
(12079, 'R. Kàmalí', '4', '9360279282', '', 'kamaliravi2021@gmail.com', '2000-11-05', 22, '3', '2', 'N. Ramasamy', 'Cloth bussiness', 10000.00, 1, 0.00, 12000.00, 'Melàvethí kàmachan ammañ Kovil Opposite thànjavur', 'Mélavethi kàmachan Amman Kovil opposite thanjavur', '2303180008', '', '2', 'upload_files/candidate_tracker/92624317967_KAMALÍ RESUME-compressed.pdf', NULL, '1', '2023-03-18', 1, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 12:12:55', 1, '2023-03-18 12:38:48', 0, NULL, 1),
(12080, '', '0', '9334089558', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303180009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-18 12:31:08', 0, NULL, 0, NULL, 1),
(12081, 'Mohammed irfan T', '4', '8098079154', '9940669616', 'irfankalimiaamiri786@gmail.com', '2002-10-17', 20, '3', '2', 'Logaiyama', 'P. A of doctor', 20000.00, 2, 1.20, 15000.00, 'Triplicane', 'Chennai', '2303180010', '', '2', 'upload_files/candidate_tracker/35125035281_IMG_20230315_020909.pdf', NULL, '1', '2023-03-20', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 05:08:52', 1, '2023-03-20 03:59:26', 0, NULL, 1),
(12082, 'Varalakshmi A', '11', '6369264367', '8248871127', 'varsha06081999@gmail.com', '1999-08-06', 23, '2', '2', 'Arumugasamy B', 'Labour', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303200001', '1', '1', 'upload_files/candidate_tracker/2918148058_TRY Resume .pdf', NULL, '1', '2023-03-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average looking for recruitment but not much suits for the role will not handle our work pressure', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-20 10:46:47', 85, '2023-03-20 10:55:25', 0, NULL, 1),
(12083, 'SNEHA.R', '6', '9962616395', '8939054482', '11bbb069sneha.r@gamil.com', '2001-12-15', 21, '3', '2', 'MALANI', 'Cooli', 8000.00, 1, 13000.00, 14000.00, 'No:19 1st line Neval haspital road periyamet Ch -3', 'No:19 1st Line Neval Haspital Road Periyamet Ch -3', '2303200002', '', '2', 'upload_files/candidate_tracker/41921791670_s 3.pdf', NULL, '1', '2023-03-20', 10, '', '3', '59', '2023-06-01', 164208.00, '', '', '1970-01-01', '2', 'Selected for Banu Team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-20 10:57:44', 85, '2023-03-21 04:03:01', 0, NULL, 1),
(12084, 'DEEPA LAKSHMI', '4', '8925623546', '9360286515', 'babystardeepa115@gmail.com', '2001-11-14', 21, '3', '2', 'VELAGANNI.A', 'HOUSE WIFE', 15000.00, 1, 15000.00, 14000.00, 'NO:8/15 N.H.road 6th Street periyamet Chennai -3', 'NO:8/15 N.H.Road 6th Street Periyamet Chennai -3', '2303200003', '', '2', 'upload_files/candidate_tracker/53803165613_Resume_Deepa lakshmi.A_Format1.pdf', NULL, '1', '2023-03-20', 0, '', '3', '59', '2023-03-23', 164208.00, '', '', '2023-03-28', '2', 'Selected for B2B Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-20 10:57:53', 60, '2023-03-21 06:14:46', 0, NULL, 1),
(12085, 'Keerthana.s', '4', '9514338336', '8608899779', 'Keerthanasan26@gmail.com', '2002-06-02', 20, '3', '2', 'M.santha kumar', 'Cooli', 13000.00, 1, 14500.00, 15000.00, 'No.3\'A ponnan street 3td lane purasaiwalkam ch-7', 'No.3\'A Ponnan Street 3td Lane Purasaiwalkam Ch-7', '2303200004', '', '2', 'upload_files/candidate_tracker/18100251005_Resume_Keerthana s_Format1.pdf', NULL, '1', '2023-03-20', 0, '', '3', '59', '2023-03-23', 176844.00, '', '', '2023-03-28', '2', 'Selected for B2B Consultant Role ', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2023-03-20 11:00:06', 1, '2023-03-20 11:17:14', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12086, 'jerry champbell', '11', '9941896563', '', 'jerrychamp97@gmail.com', '1997-01-20', 26, '3', '2', 'johnson', 'self employef', 35000.00, 1, 16500.00, 19500.00, 'egmore', 'egmore', '2303200005', '', '2', 'upload_files/candidate_tracker/95186806642_JERRY CHAMPBELL LOBO J.pdf', NULL, '1', '2023-03-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'has 8m of exp in Recruitment..communication good.. sustainbility doubts.. holding one offer and sal expt high.', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 11:35:13', 1, '2023-03-20 11:39:06', 0, NULL, 1),
(12087, 'ajay kumar l', '11', '8189910500', '', 'ajaygames99@gmail.com', '1999-11-30', 23, '3', '2', 'loganathan m', 'assistant in anna university', 35000.00, 1, 21500.00, 25000.00, 'chennai', 'chennai', '2303200006', '', '2', 'upload_files/candidate_tracker/80484081018_Ajay_CV.pdf', NULL, '1', '2023-03-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has 1y3m of exp as a hR Executive . fresher to our role..sal expt high and he not ok with our txxampc... ', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 11:48:23', 1, '2023-03-20 11:55:06', 0, NULL, 1),
(12088, 'keerthana s', '16', '9962012770', '8939073640', 'keerthisundar158@gmail.com', '2000-10-07', 22, '3', '1', 'rangasamy r', 'painter', 14000.00, 1, 0.00, 13000.00, 'sharma nagar', 'perambur', '2303200007', '', '1', 'upload_files/candidate_tracker/87802073151_KEERTHANA S resume.docx', NULL, '1', '2023-03-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for backend but no communication will not sustain in our roles not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 12:24:09', 1, '2023-03-20 12:32:47', 0, NULL, 1),
(12089, 'Kaviya', '4', '7358499633', '', 'Kaviya12sk@gmail.com', '2000-12-12', 22, '3', '2', 'Shankar', 'Fisherman', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303200008', '', '1', 'upload_files/candidate_tracker/40121523883_Resume-Kaviya.pdf', NULL, '1', '2023-03-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Calling not suitable will not sustain', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 12:54:01', 1, '2023-03-20 01:14:03', 0, NULL, 1),
(12090, 'Ashok', '14', '6383642455', '', 'Anbalaganashok2455@gmail.com', '2001-06-08', 21, '3', '2', 'Anbalagan', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Panruti', 'Chennai', '2303200009', '', '1', 'upload_files/candidate_tracker/12063520476_Ashok\'s Resume.pdf', NULL, '1', '2023-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 12:56:12', 1, '2023-03-20 01:01:16', 0, NULL, 1),
(12091, '', '0', '7708116003', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303200010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-20 12:56:13', 0, NULL, 0, NULL, 1),
(12092, 'Mohammed ajiwath N', '14', '7708471299', '', 'mohammedajiwath12@gmail.com', '1999-12-12', 23, '3', '2', 'Noor Mohammed', 'Business', 50000.00, 2, 0.00, 18000.00, 'Chennai', 'Tambaram', '2303200011', '', '1', 'upload_files/candidate_tracker/16408976593_mohammed ajiwath n (1).pdf', NULL, '1', '2023-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 12:57:17', 1, '2023-03-20 01:08:40', 0, NULL, 1),
(12093, 'Monishkumar', '4', '9092172740', '9884838194', 'monishkumar200117@gmail.com', '2001-12-08', 21, '4', '2', 'Ranganathan', 'Tailor', 18000.00, 1, 0.00, 13000.00, '6/7 narayanan Street ayanavaram Chennai 23', '6/7 narayanan Street ayanavaram Chennai 23', '2303200012', '', '1', 'upload_files/candidate_tracker/58456919944_MONISH KUMAR R CV Latest 2.pdf', NULL, '1', '2023-03-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open a lot sounding low for the profile will not sustain and not suitable', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 01:14:18', 1, '2023-03-20 01:20:57', 0, NULL, 1),
(12094, 'Hemalatha.k', '4', '6381247670', '8680934641', 'hemakrishnamoorthy151@gmail.com', '2001-11-08', 21, '4', '2', 'Krishnamoorthy', 'Driver', 100000.00, 2, 0.00, 13000.00, 'Pudupet', 'Pudupet', '2303200013', '', '1', 'upload_files/candidate_tracker/59714246455_hema resume.docx', NULL, '1', '2023-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 01:33:39', 1, '2023-03-20 01:40:33', 0, NULL, 1),
(12095, 'Hemalatha.k', '4', '6380314642', '8680934641', 'hemakrishnamoorthy151@gmail.com', '2001-11-08', 0, '4', '2', 'Krishnamoorthy', 'Driver', 100000.00, 2, 0.00, 13000.00, 'Pudupet', 'Pudupet', '2303200014', '', '1', 'upload_files/candidate_tracker/55340886526_chandrumaran.docx', NULL, '1', '2023-03-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'fresher to our role sal expt high', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 01:43:22', 1, '2023-03-20 01:48:07', 0, NULL, 1),
(12096, 'VIKASH UDAYAVANAN', '6', '7092077014', '8939898422', 'vikashvanan07@gmail.com', '2002-03-12', 21, '1', '2', 'ANANDHI U', 'HOUSE WIFE', 15000.00, 1, 0.00, 17500.00, 'NEW WASHERMEN PET', 'TONDIARPET', '2303200015', '', '2', 'upload_files/candidate_tracker/62853858894_DOC-20230316-WA0007..pdf', NULL, '3', '2023-03-20', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile sounding low for our roles internal reference kindly check and let me know your inputs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-20 02:08:04', 85, '2023-03-21 04:27:40', 0, NULL, 1),
(12097, 'Sharon Vini', '6', '8056256518', '', 'Sharonvini133@gmail.com', '2001-11-19', 21, '3', '2', 'Selvam', 'Velder', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2303200016', '', '1', 'upload_files/candidate_tracker/65664562514_Document of Sharon vini resum.docx', NULL, '1', '2023-03-20', 0, '', '4', '88', NULL, 0.00, '', '0', NULL, '2', 'has 3m of exp in renewals.. good in convincing skills.. sustainbility doubts .. need to check .. kindly review and update your inputs.', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 02:34:44', 1, '2023-03-20 02:43:14', 0, NULL, 1),
(12098, 'R.swetha', '6', '9176794597', '', 'Shwetha.charu2017@gmail.com', '2001-05-02', 21, '4', '2', 'S.Rajan', 'Printer', 100000.00, 2, 0.00, 13000.00, 'Aminjikarai, chennai', 'Aminjikarai', '2303200017', '', '1', 'upload_files/candidate_tracker/5181675043_Shwetha Resume, Aug, 2022.pdf', NULL, '1', '2023-03-20', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile muh focused for non voice internal team reference open for Calling too kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-20 02:35:16', 85, '2023-03-21 04:06:36', 0, NULL, 1),
(12099, 'Joel Reubenraj. C', '4', '7305346290', '9444265628', 'jreubenraj@gmail.com', '2002-09-27', 20, '3', '2', 'Charles Kanakaraj', 'Chief Accountant', 40000.00, 1, 0.00, 25000.00, 'Aminjikarai', 'Aminjikarai', '2303210001', '', '1', 'upload_files/candidate_tracker/42063506352_DOC-20230316-WA0015. (1).pdf', NULL, '1', '2023-03-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attended Job Fair and much focused with Teaching domain will not sustain more than a month just for office exposure he is looking but a good and neat candidate', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-21 10:00:10', 85, '2023-03-21 10:26:08', 0, NULL, 1),
(12100, 'Goutham R J', '13', '9080274341', '', 'gouthamchandran785@gmail.com', '1999-09-06', 23, '3', '2', 'Jayachandran', 'Business(retail)', 10000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2303210002', '', '1', 'upload_files/candidate_tracker/21325533431_Resume1.pdf', NULL, '1', '2023-03-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Career Gap not much strong with the basics will not sustain and not open for Terms and conditions', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-21 10:02:57', 85, '2023-03-21 10:23:59', 0, NULL, 1),
(12101, 'Kaviyarasan k', '13', '6380803143', '9719752369', 'skkaviyarasan2001@gmail.com', '2001-09-28', 21, '2', '2', 'Nagarathinam k', 'Null', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2303210003', '1', '1', 'upload_files/candidate_tracker/48412506371_DOC-20230310-WA0010.pdf', NULL, '1', '2023-03-21', 0, '', '3', '59', '2023-03-22', 120000.00, '', '4', '2023-04-03', '1', '3 months 6K then 3 months 8K then 10-15K 3yrs SA', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-21 10:26:31', 60, '2023-04-19 04:39:14', 0, NULL, 1),
(12102, 'Keerthana.A', '13', '7305310166', '9710472552', 'keerthuebi2001@gmail.com', '2001-03-26', 21, '3', '2', 'Arasa Kumar', 'Cooli', 15000.00, 1, 0.00, 10.00, 'Chennai', 'Chennai', '2303210004', '', '1', 'upload_files/candidate_tracker/77978285453_keerthana res (1).pdf', NULL, '1', '2023-03-21', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050 profile have basic knowledge can give a try kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:05:13', 1, '2023-03-21 11:11:27', 0, NULL, 1),
(12103, 'Magesh B', '13', '9941392334', '9500196179', 'magesh.b2210@gmail.com', '2000-10-22', 22, '3', '2', 'Balakrishnan', 'Manager in private consultant', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303210005', '', '1', 'upload_files/candidate_tracker/72991995847_Magesh\'s Resume.pdf', NULL, '1', '2023-03-21', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'Fresher have basic knowledge in MySQL 5050 profile for us kindly check and let me know your inputs on the same ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:05:35', 1, '2023-03-21 11:10:30', 0, NULL, 1),
(12104, 'Rengesh kannan', '14', '9659628668', '9159548173', 'rengeshkannanramar01@gmail.com', '1998-07-04', 24, '1', '2', 'Ramar', 'Farmer', 20000.00, 0, 0.00, 15000.00, 'Ramanathapuram', 'Tambaram,Chennai', '2303210006', '', '1', 'upload_files/candidate_tracker/66844895737_Rngesh kannan java3.pdf', NULL, '1', '2023-03-21', 0, 'Sathish', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Strong With The Basics Not Open For TxxampC Will Not Sustain And Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:07:09', 1, '2023-03-21 11:18:45', 0, NULL, 1),
(12105, 'Ajay', '16', '9952718075', '', 'ajayoyo47@gmail.com', '1999-07-22', 23, '1', '2', 'Iyalarasan M', 'Painter', 120000.00, 1, 250000.00, 350000.00, 'Chennai', 'Chennai T.nagar', '2303210007', '', '2', 'upload_files/candidate_tracker/68442959628_Ajay Resume New One (1)-1.pdf', NULL, '1', '2023-03-21', 30, '2303210007', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication very average not much good with MIS but the salary Pack and expectation is high will not sustain and not suitable ', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:17:23', 1, '2023-03-21 11:26:02', 0, NULL, 1),
(12106, 'sujitha', '4', '9360665385', '', 'bsujji123@gmail.com', '1993-05-14', 29, '3', '2', 'bernadshaw', 'lawyer', 50000.00, 1, 23500.00, 25000.00, 'velachery', 'Velachery', '2303210008', '', '2', 'upload_files/candidate_tracker/65291128214_SUJITHA B 001.pdf', NULL, '1', '2023-03-21', 15, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'not suit for telecalling', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:17:33', 1, '2023-03-21 12:02:34', 0, NULL, 1),
(12107, 'Chitthirai selvi Palani', '13', '9597272122', '9600203513', 'chitthiraiselvi2023@gmail.com', '1996-05-03', 26, '3', '2', 'Palani S', 'Daily wages', 20000.00, 1, 0.00, 200000.00, 'Guindy', 'Guindy', '2303210009', '', '1', 'upload_files/candidate_tracker/62570789174_Chitthirai_selvi.pdf', NULL, '1', '2023-03-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT Career Gap have a reference in Tier level companies will not sustain in a long family is looking for marriage proposals have intern exposure in Python for 8 months 8K stipend', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:34:46', 1, '2023-03-21 11:39:31', 0, NULL, 1),
(12108, 'riyaz mohamed', '4', '8072902234', '', 'riazee59@gmail.com', '2000-09-05', 22, '3', '2', 'fathima jan', 'house wife', 10000.00, 1, 0.00, 10000.00, 'thiruvaiyaru', 'thiruvaiyaru', '2303210010', '', '1', 'upload_files/candidate_tracker/55839026591_CV_2023032010281077.pdf', NULL, '1', '2023-03-21', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:45:22', 1, '2023-03-21 11:50:00', 0, NULL, 1),
(12109, 'Manikandan', '31', '9080542319', '', 'maniakashkalai23@gmail.com', '2000-03-23', 22, '3', '2', 'Karthikeyan', 'OA', 20000.00, 1, 0.00, 10000.00, 'Aduthurai', 'Velachery', '2303210011', '', '1', 'upload_files/candidate_tracker/17578439566_Manikandan.resume.html.doc', NULL, '1', '2023-03-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher not much strong with the basics not open for TxxampC will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 12:00:45', 1, '2023-03-21 12:13:54', 0, NULL, 1),
(12110, 'V Dhinakaran', '13', '8940844598', '', 'vdhinakaran300@gmail.com', '2001-03-13', 22, '3', '2', 'T Vadivel', 'Business', 25000.00, 1, 0.00, 300000.00, 'Tiruvannamalai', 'Chennai', '2303210012', '', '1', 'upload_files/candidate_tracker/80497042899_DHINAKARAN V-1.pdf', NULL, '1', '2023-03-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Skills not much active seems to be slow will not handle our work pressure not suitable\n', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 12:25:54', 1, '2023-03-21 12:30:21', 0, NULL, 1),
(12111, 'Kalaiarasan R', '13', '6369733882', '9087989547', 'kalaimech1999@gmail.com', '1999-08-26', 23, '3', '2', 'Rajendran C', 'Milk Supplyer', 200000.00, 1, 0.00, 400000.00, 'Salem', 'Chennai', '2303210013', '', '1', 'upload_files/candidate_tracker/27081937114_Kalaiarasan R My Resume-2.pdf', NULL, '1', '2023-03-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Strong with Basics already attended ang got rejected not open for TxxampC Not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 12:33:51', 1, '2023-03-21 12:39:37', 0, NULL, 1),
(12112, 'Dinesh Kumar V', '31', '8925181105', '9789677612', 'dineshark33@gmail.com', '1997-05-16', 25, '3', '2', 'Vazhivittan T', 'Daily wage', 15000.00, 3, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2303210014', '', '1', 'upload_files/candidate_tracker/5558332715_Resume-Dineshkumar V (1).pdf', NULL, '1', '2023-03-21', 0, '', '3', '59', '2023-03-22', 120000.00, '', '0', NULL, '1', 'Selected for Mern need to confirm for React orNode after 7 days 2nd round with Kavya and final round with Gokul Min Stipend 8K ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 12:39:17', 1, '2023-03-21 12:42:33', 0, NULL, 1),
(12113, 'Hariharan M', '14', '9345499783', '9025520719', 'mhari4519@gmail.com', '2001-01-20', 22, '3', '2', 'Mariyappan', 'Farmer', 30000.00, 2, 0.00, 10000.00, 'Thoothukudi', 'Tambaram', '2303210015', '', '1', 'upload_files/candidate_tracker/33618526721_Hari haran_Resume 1.1 (1).pdf', NULL, '3', '2023-03-21', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Interestedto learn Python open for TxxampC will check with gokul and confirm', '2', '1', '0', '1', '8', '0', '2', '2023-03-23', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 02:11:24', 1, '2023-03-21 02:20:07', 0, NULL, 1),
(12114, 'Shivani S', '13', '9962442750', '', 'fathi19498@gmail.com', '1998-04-19', 24, '2', '2', 'Siva Kumar p', 'Sub inspector of police', 60000.00, 2, 0.00, 18000.00, 'Pudupet', 'Pudupet', '2303210016', '1', '1', 'upload_files/candidate_tracker/4673164558_Shivani CV-1.pdf', NULL, '1', '2023-03-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Career Gap Father is Sub Inspector and not much comfort with TxxampC if she come back let us try and sustainability doubts', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-21 04:39:47', 85, '2023-03-22 10:48:35', 0, NULL, 1),
(12115, 'Mohamed sufair', '6', '6369888269', '', 'kadarhassan999@gmail.com', '2001-04-21', 21, '2', '2', 'Sathakathulla', 'Cook', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303210017', '1', '1', 'upload_files/candidate_tracker/82416006681_Mohamed sufair resume.pdf', NULL, '1', '2023-03-23', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'select for next round to Ramesh sir, but candidate absent for interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-21 05:10:24', 97, '2023-03-23 06:21:02', 0, NULL, 1),
(12116, 'Chandra Prakash', '13', '9360267204', '9025597490', 'schandra2002prakash@gmail.com', '2002-03-22', 21, '3', '2', 'Selvam', 'Farmer', 60.00, 2, 0.00, 1.70, 'dindigul', 'Chennai', '2303220001', '', '1', 'upload_files/candidate_tracker/20614543304_Chandru Resume 17-sep-2022 (1).pdf', NULL, '1', '2023-03-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC Fresher Not Much strong with the basics much comfort to work in Java', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-22 10:13:03', 1, '2023-03-22 10:43:33', 0, NULL, 1),
(12117, 'PRASANNA. R', '6', '8072423963', '8870088347', 'ramanprasanna4@gmail.com', '2000-12-22', 22, '1', '2', 'Raman.s', 'Farmer', 75000.00, 1, 15000.00, 20000.00, 'Villupuram', 'Saidapet', '2303220002', '', '2', 'upload_files/candidate_tracker/49554246402_R. Prasanna-2.pdf', NULL, '1', '2023-03-22', 15, 'P1426', '3', '59', '2023-03-30', 199800.00, '', '', '2023-04-13', '1', 'Selected for Suthagar Team 5050profile need to confirm Staff or consultant', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-22 12:13:39', 60, '2023-03-25 07:05:36', 0, NULL, 1),
(12118, '', '0', '8082423963', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303220003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-22 12:28:58', 0, NULL, 0, NULL, 1),
(12119, 'b.anitha pushpam', '31', '6383785099', '9344651347', 'anithapushpam13500@gmail.com', '2000-05-13', 22, '2', '2', 'a.balasubramanian', 'farmer', 7000.00, 2, 0.00, 15000.00, 'panjayathu office street keelapavoor', 'chennai', '2303220004', '1', '1', 'upload_files/candidate_tracker/14253806660_ANITHA RESUME.pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need to train alot Not much strong in the basics Came as a group not open for TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-22 01:29:53', 85, '2023-03-23 05:06:33', 0, NULL, 1),
(12120, 'M. Shanmuga piriya', '31', '7904931581', '9943085905', 'priyamuthuraman2002@gmail.com', '2002-02-21', 21, '2', '2', 'S. Muthuraman M. Meena', 'Farmer', 5000.00, 0, 0.00, 15000.00, 'Tenkasi', 'Velachery', '2303220005', '1', '1', 'upload_files/candidate_tracker/11958721505_shanmuga piriya.pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train Alot Not Much Strong In The Basics Came As A Group Not Open For TxxampC', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-22 01:29:59', 85, '2023-03-23 05:06:44', 0, NULL, 1),
(12121, 'B. Aruna Pushpam', '31', '8072864073', '9344651347', 'arunaani2000@gmail.com', '2000-05-13', 22, '2', '2', 'A. Balasubramanian, B.petchiammal', 'Farmer', 7000.00, 2, 0.00, 17000.00, '53 panchayathu office Street,Keelapavoor,Tenkasi', 'Chennai', '2303220006', '1', '1', 'upload_files/candidate_tracker/64252703927_aruna resume.pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train Alot Not Much Strong In The Basics Came As A Group Not Open For TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-22 01:34:37', 85, '2023-03-23 05:06:56', 0, NULL, 1),
(12122, 'Narasimhulu Dappili', '13', '8384352563', '8147975342', 'dappilinarasimha020@gmail.com', '1996-04-15', 26, '1', '2', 'Krishnaiah', 'BC-D', 15000.00, 2, 0.00, 10000.00, 'YSR DISTRICT', 'YSR DISTRICT', '2303220007', '', '1', 'upload_files/candidate_tracker/44464160190_Narassimha(MBA).pdf', NULL, '1', '2023-03-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Skills Career Gap No local language difficult to understand will not sustain and not suitable', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-22 01:40:05', 1, '2023-03-22 02:32:14', 0, NULL, 1),
(12123, 'Burrepalli nagendra', '13', '9177581219', '7842351398', 'burrepallinagendra12@gmail.com', '1996-06-01', 26, '1', '2', 'B.seshaiah', 'Bc d', 20000.00, 2, 0.00, 10000.00, 'Badvel kadapa district AP', 'Badvel kadapa district AP pin number 516227', '2303220008', '', '1', 'upload_files/candidate_tracker/66161861639_DocScanner 11 Oct 2022 11-46 am.pdf', NULL, '1', '2023-03-22', 0, 'Smartronic Technical solution', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Skills Career Gap No Local Language Difficult To Understand Will Not Sustain And Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-22 01:44:01', 1, '2023-03-22 02:31:17', 0, NULL, 1),
(12124, 'Durga.j', '31', '8870620696', '9543735273', 'durgajeyakrishnan@gmail.com', '2001-12-18', 21, '2', '2', 'K.jeyakrishnan', 'Shopkeeper', 18000.00, 1, 0.00, 20000.00, 'Thirunelveli', 'Chennai', '2303220009', '1', '1', 'upload_files/candidate_tracker/19097840605_durga.j (6) (2).pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train Alot Not Much Strong In The Basics Came As A Group Not Open For TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-22 01:51:57', 85, '2023-03-23 05:07:11', 0, NULL, 1),
(12125, 'soorya m', '6', '9789875799', '8056995548', 'sooryamoses1042@gmail.com', '2002-04-10', 20, '3', '2', 'manivannan', 'mechanical foreman', 40000.00, 1, 17000.00, 18000.00, 'srinivasa perumal koil st periyathoppu manali', 'manali chennai', '2303220010', '', '2', 'upload_files/candidate_tracker/26609604448_Resume Soorya.pdf', NULL, '1', '2023-03-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long distance for sales sounding low wil not run in along pressure handling doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-22 02:41:39', 85, '2023-03-22 04:00:57', 0, NULL, 1),
(12126, 'Monish', '6', '8682034140', '9710271059', 'shyammonish72@gmail.com', '2002-09-25', 20, '3', '2', 'Manjula', 'House wife', 40000.00, 1, 21000.00, 21000.00, 'Manali', 'Manali', '2303220011', '', '2', 'upload_files/candidate_tracker/43673055243_monish resum 2022.pdf', NULL, '1', '2023-03-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp but not a relevant Too long Distance will not handle our pressure left without attending the 2nd level inteview', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-22 02:43:06', 85, '2023-03-22 04:00:48', 0, NULL, 1),
(12127, 'KARTHICK R', '5', '9123595313', '7871536427', 'karthiraj496@gmail.com', '1996-10-04', 26, '2', '2', 'RAJAMUTHU P', 'Agriculture', 100000.00, 1, 21000.00, 27000.00, 'SALEM', 'SALEM', '2303220012', '1', '2', 'upload_files/candidate_tracker/10506538658_CV_2023031119264559.pdf', NULL, '1', '2023-03-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication Average no basic knowledge in MIS Preferred to be in non voice not suitable in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-22 04:45:59', 85, '2023-03-29 11:19:42', 0, NULL, 1),
(12128, '', '0', '9789997211', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303220013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-22 05:21:54', 0, NULL, 0, NULL, 1),
(12129, 'Yogeshwar.b', '11', '6383923846', '', 'insyogeiii@gmail.com', '2000-04-24', 22, '3', '2', 'Balaraman.k', 'Electrician', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2303220014', '', '1', 'upload_files/candidate_tracker/77375059354_MY RESUME.PDF', NULL, '1', '2023-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-22 05:34:37', 1, '2023-03-22 05:37:33', 0, NULL, 1),
(12130, 'Tamilselvan P', '13', '8489056566', '', 'tamilselvan.p9894@gmail.com', '2001-02-10', 22, '2', '2', 'Palanivel', 'Weaving', 15000.00, 1, 0.00, 20000.00, 'Rajapalayam', 'Chennai-guindy.', '2303220015', '1', '1', 'upload_files/candidate_tracker/24211670458_Tamilselvan.pdf', NULL, '1', '2023-03-23', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have basic skills in prog.lau .. he want to discuss with his family .. if he come back.. let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-22 09:42:21', 85, '2023-03-23 05:10:46', 0, NULL, 1),
(12131, 'Kabilan', '31', '7338711679', '7339019965', 'kabilanu192205@gmail.com', '2001-12-06', 21, '3', '2', 'Gokul', 'Associate', 25000.00, 1, 0.00, 120000.00, 'Puthur', 'Trivotriyour', '2303230001', '', '1', 'upload_files/candidate_tracker/46514329328_kabilan.pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills knowledge will not sustain in our roles not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 10:28:24', 1, '2023-03-23 10:50:09', 0, NULL, 1),
(12132, 'arthick manikandan', '2', '8190918942', '', 'Karthiju012@gmail.com', '1999-04-09', 23, '3', '2', 'janakiraman', 'business', 40000.00, 2, 12000.00, 20000.00, 'madurai', 'madurai', '2303230002', '', '2', 'upload_files/candidate_tracker/3227410303_resume with wok.pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Strong with the basic skills have exp in UI for 10 months not much comfort in TxxampC Will  not sustain and handle work pressure no not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 10:39:54', 1, '2023-03-23 10:44:12', 0, NULL, 1),
(12133, 'Deepan S', '13', '9791260055', '8754176015', 'deepanuca007@gmail.com', '1998-10-30', 24, '4', '2', 'Senrayaperumal', 'Micro business', 30000.00, 1, 0.00, 15000.00, 'Madurai', 'Madurai', '2303230003', '', '1', 'upload_files/candidate_tracker/63096166038_Deepan_Resume.pdf', NULL, '1', '2023-03-23', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'he is intersted in buss. sustainbility doubts.', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 10:40:32', 1, '2023-03-23 10:44:48', 0, NULL, 1),
(12134, 'deivanai', '2', '9940195564', '', 'deivanailoganathan@gmail.com', '2000-01-14', 23, '3', '2', 'loganathan', 'auto driver', 20000.00, 1, 0.00, 150000.00, 'Chennai', 'Chennai', '2303230004', '', '1', 'upload_files/candidate_tracker/24514931836_SodaPDF-converted-RESUME+single+page+-+Copy+(1) (1).pdf', NULL, '1', '2023-03-23', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'intersted in Front- end dev ..  but not ok with our txxampc ..focusing on sal..', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 10:42:18', 1, '2023-03-23 05:22:00', 0, NULL, 1),
(12135, '', '0', '9965990685', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303230005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-23 11:15:10', 0, NULL, 0, NULL, 1),
(12136, 'Naveenkumar', '13', '8524841769', '6369088663', 'naveen.sekaran01@gmail.com', '2001-07-30', 21, '3', '2', 'Sekar', 'Labour', 20000.00, 1, 0.00, 12000.00, '286/b, Ambalakara Street, Naduvalur, Trichy', 'West Mambalam, Chennai', '2303230006', '', '1', 'upload_files/candidate_tracker/75953628093_Naveenkumar-BCA.pdf', NULL, '1', '2023-03-23', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'have basic skills html ,cssxxamp js..not ok with our txxampc.. ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 11:21:14', 1, '2023-03-23 11:27:19', 0, NULL, 1),
(12137, 'Abishek', '13', '9940198729', '6382285758', 'abishekhari183@gmail.com', '2001-02-09', 22, '4', '2', 'Hari Krishnan M', 'Board desiner', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303230007', '', '1', 'upload_files/candidate_tracker/98938536886_ABISHEK H Resume-1.pdf', NULL, '1', '2023-03-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-23 12:16:18', 85, '2023-03-24 05:51:15', 0, NULL, 1),
(12138, 'V.PRABAKARAN', '13', '6382285758', '9940198729', 'prabakarankc22@gmail.com', '2001-12-09', 21, '4', '2', 'Malliga', 'House wife', 20000.00, 2, 0.00, 240000.00, 'Keelkattalai', 'Keelkattalai', '2303230008', '', '1', 'upload_files/candidate_tracker/83756079701_Resume_Prabakaran1_Format4 (2).pdf', NULL, '1', '2023-03-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-23 12:17:31', 85, '2023-03-24 05:51:21', 0, NULL, 1),
(12139, 'Subash J', '13', '7010220622', '', 'subashvgm1717@gmail.com', '2001-02-20', 22, '3', '2', 'Jayachandiran', 'Farmer', 70000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2303230009', '', '1', 'upload_files/candidate_tracker/43779175880_SUBASH JAYACHANDIRAN RESUME.pdf', NULL, '1', '2023-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 01:01:34', 1, '2023-03-23 04:50:53', 0, NULL, 1),
(12140, 'richard lenin', '2', '6384925940', '', 'mail.richardlenin@gmail.com', '2002-03-15', 21, '3', '2', 'David Anthony leo', 'Electrician', 60000.00, 2, 0.00, 30000.00, 'Thanjavur', 'periyar pathai, choolaimedu, Chennai', '2303230010', '', '1', 'upload_files/candidate_tracker/7313667533_Richard Lenin - Resume (2).pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not open for TxxampC Min Salary Exp is 25K have a reference in Zoho and continously looking for Zoho will not sustain', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 01:32:12', 1, '2023-03-23 01:46:22', 0, NULL, 1),
(12141, 'Satheesh Thangaraj', '31', '9092558944', '', 'satheesht2110@gmail.com', '1996-10-21', 26, '1', '2', 'Thangaraj K', 'Building Contractor', 300000.00, 1, 0.00, 180000.00, 'Theni', 'Chennai', '2303240001', '', '1', 'upload_files/candidate_tracker/82566281527_Satheesh.pdf', NULL, '1', '2023-03-24', 0, 'Sathish', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no Basic skills looking for Devops and not much comfort in TxxampC', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 10:28:53', 1, '2023-03-24 10:58:37', 0, NULL, 1),
(12142, 'Manikandan', '31', '9025583807', '', 'amanikandan141@gmail.com', '1999-05-12', 23, '3', '2', 'Annadurai', 'Former', 20000.00, 1, 0.00, 300000.00, 'Cuddalore', 'Chennai', '2303240002', '', '1', 'upload_files/candidate_tracker/49713241653_Manikandan resume.pdf', NULL, '1', '2023-03-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Holding an offer for PHP with 15K after 3months intern just looking for some more opportunities will not join anf not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 11:22:59', 1, '2023-03-24 12:02:06', 0, NULL, 1),
(12143, 'Vetrivel', '13', '9342927182', '', 'svetrivel002@gmail.com', '2002-04-16', 20, '3', '2', 'Sasikumar', 'Farmar', 100000.00, 1, 0.00, 200000.00, 'Dindugal', 'Guindy Chennai', '2303240003', '', '1', 'upload_files/candidate_tracker/83055828570_Svetrivel..resume (4).pdf', NULL, '1', '2023-03-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '2nd round reject by manikandan no skills knowledge not suitable ', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 11:26:05', 1, '2023-03-24 11:29:18', 0, NULL, 1),
(12144, 'F. Lourthu prasanth', '23', '8220104117', '', 'lourthuprasanth20@gmail.com', '1997-12-05', 25, '3', '2', 'Francis Xavier', 'Pharmacy', 15000.00, 2, 0.00, 13000.00, 'Tirunelveli', 'Chennai', '2303240004', '', '1', 'upload_files/candidate_tracker/67182561322_Prasanth_ Profile (1)-1.pdf', NULL, '1', '2023-03-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic skills but the salary exp is high and not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 11:46:01', 1, '2023-03-24 12:01:01', 0, NULL, 1),
(12145, 'maha lakshmi  m', '23', '9994920320', '9940161666', 'mahalakshmim598@gmail.com', '2003-01-31', 20, '2', '2', 'm suresh kumar', 'transport manager', 30000.00, 1, 0.00, 20000.00, '28, Basin Road, Tiruvottiyur, Chennai', '28, Basin Road, Tiruvottiyur, Chennai', '2303240005', '1', '1', 'upload_files/candidate_tracker/92831584228_Resum Maha.pdf', NULL, '1', '2023-03-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for TxxampC no basic knowledge will not sustain and not suitable', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-24 11:48:11', 85, '2023-03-25 09:52:23', 0, NULL, 1),
(12146, 'Rajesh kannan', '13', '9380942056', '7358495178', 'rajeshkannan1999.rk@gmail.com', '1999-05-26', 23, '4', '2', 'Kumar', 'Business', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2303240006', '', '1', 'upload_files/candidate_tracker/65060444086_Rajeshkannank_14-03-23.pdf', NULL, '1', '2023-03-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '2nd time appearing for the interview remains the same no basic skills knowledge not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 11:48:18', 1, '2023-03-24 11:52:49', 0, NULL, 1),
(12147, 'V Nithish', '11', '9791059336', '9123568823', 'nithishtoro@gmail.com', '1999-11-09', 23, '2', '2', 'V abirami', 'Business', 20000.00, 1, 0.00, 20000.00, 'Nungambakkam, Chennai', 'Nungambakkam, Chennai', '2303240007', '1', '1', 'upload_files/candidate_tracker/86661565653_NITHISH UPDATED..docx', NULL, '1', '2023-03-27', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for MIS Candidate yet to give his confirmation appeared fr HR then converted to MIS final round with Gokul', '6', '1', '', '1', '8', '', '2', '2023-03-29', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-24 02:57:27', 85, '2023-03-27 10:07:37', 0, NULL, 1),
(12148, 'Gowtham', '31', '8056119397', '9677185961', 'gowthamfs7@gmail.com', '1996-03-29', 26, '3', '2', 'Parent', 'Tailor', 180000.00, 1, 0.00, 180000.00, 'No:4 nellaiyappar Street chrompet', 'No:4 nellaiyappar Street chrompet', '2303240008', '', '1', 'upload_files/candidate_tracker/93636000697_Resume.pdf', NULL, '1', '2023-03-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic ideas in JS will not sustain with us and not suitable ', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 03:21:18', 1, '2023-03-24 03:24:20', 0, NULL, 1),
(12149, 'Bharathi kannan', '11', '6383067990', '', 'kannan2bharathikpm@gmail.com', '2000-08-28', 22, '2', '2', 'Panneer selvam K', 'Business man', 100000.00, 1, 0.00, 23000.00, 'Chennai', 'Chennai', '2303240009', '1', '1', 'upload_files/candidate_tracker/73329227258_Bharathi Resume Docx.pdf', NULL, '1', '2023-03-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average too long distance yet to complete his graduation not suitable\n', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-24 03:33:50', 85, '2023-03-24 04:58:08', 0, NULL, 1),
(12150, '', '0', '9791559359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303240010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-24 03:55:44', 0, NULL, 0, NULL, 1),
(12151, 'Raj kumar', '13', '9840240545', '9942936979', 'rishirich181818@gmail.com', '2000-09-02', 22, '1', '2', 'Arumugam', 'Auto Driver', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2303240011', '', '1', 'upload_files/candidate_tracker/43064806104_Raj kumar (Resume) (1).pdf', NULL, '1', '2023-03-24', 0, 'Jobs', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Eager to learn requested time to learn and come back in JS,if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', '2023-03-31', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 04:23:01', 1, '2023-03-24 04:40:08', 0, NULL, 1),
(12152, 'emerson samuel', '13', '8946069921', '9940072548', 'emerson001samuel@gmail.com', '1998-04-01', 24, '2', '2', 'madhavan', 'business', 40000.00, 1, 0.00, 400000.00, 'mogappair', 'mogappair', '2303240012', '1', '1', 'upload_files/candidate_tracker/45447758557_Emerson Samuel .pdf', NULL, '1', '2023-03-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Not much strong in prog.skills ok with txxampc .sNR Rejected by kaviya ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-03-24 04:58:10', 1, '2023-03-24 05:07:17', 0, NULL, 1),
(12153, 'SathishR', '13', '9710308547', '', '118csa33sathish@gmail.com', '2001-05-16', 21, '2', '2', 'ramesh', 'torner', 25000.00, 1, 0.00, 20000.00, 'chennai', 'chenna', '2303240013', '1', '1', 'upload_files/candidate_tracker/7828111052_SATHISHR RESUME (10).pdf', NULL, '1', '2023-03-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-24 08:46:58', 85, '2023-03-27 10:11:51', 0, NULL, 1),
(12154, 'Soniya', '4', '7708832691', '', 'soniyaganabathi@gmail.com', '1985-05-31', 37, '3', '1', 'Ganabathi', 'Private ltd', 10000.00, 2, 15000.00, 16000.00, 'Teynapet', 'Teynapet', '2303250001', '', '2', 'upload_files/candidate_tracker/13639997186_1679479202622_SONIYA RESUME.pdf', NULL, '1', '2023-03-25', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in teaching family need is there but 5050 internal reference kindly check and let me know your inputs', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-25 11:14:50', 60, '2023-03-25 07:01:22', 0, NULL, 1),
(12155, 'sivarama chandar', '13', '9790668813', '', 'sivaramachandar@gmail.com', '2008-03-25', 0, '3', '2', 'ramesh', 'Farmer', 12000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2303250002', '', '1', 'upload_files/candidate_tracker/33571218211_SIVARAMA CHANDAR - Resume.pdf', NULL, '1', '2023-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance no basic skills will not handle our work pressure not suitable', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-25 11:28:20', 1, '2023-03-25 11:32:44', 0, NULL, 1),
(12156, 'Mohamed imthiyas', '13', '9025054710', '8531054710', 'Imthiyasmohamed083@gmail.com', '2002-05-26', 20, '3', '2', 'independent', 'Web developer', 30000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Mannady', '2303250003', '', '1', 'upload_files/candidate_tracker/67170728942_imthiyas 1resum.pdf', NULL, '1', '2023-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher need to train a lot souding low if come back with confirmation on TxxampC let us check', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-25 11:52:45', 1, '2023-03-25 11:59:05', 0, NULL, 1),
(12157, 'Nagammal V', '11', '7708137516', '', 'vaithegi103@gmail.com', '1996-03-10', 27, '2', '2', 'Mourouvammal', 'House wife', 20000.00, 2, 30000.00, 350000.00, 'Pondicherry', 'Ekatuthagal,chennai', '2303250004', '1', '2', 'upload_files/candidate_tracker/63774146667_Nagammal.Veerappan.pdf', NULL, '1', '2023-03-25', 10, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communicaiton Average Have Exp for 2yrs Final Sala Exp is 20K Need to come back with her confirmation', '6', '1', '', '1', '8', '', '2', '2023-03-28', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-25 12:09:28', 85, '2023-03-25 03:37:14', 0, NULL, 1),
(12158, 'Afrose Nainamohamed', '11', '9962272736', '', 'Afroseshin@gmail.com', '2002-04-04', 20, '2', '2', 'Nainamohamed', 'Fresher', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2303250005', '1', '1', 'upload_files/candidate_tracker/90072714946_ROSE RESUME.pdf', NULL, '1', '2023-03-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good Have Several Offers In Hand Sustainability Doubts With Us', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-25 01:29:19', 85, '2023-03-25 02:30:52', 0, NULL, 1),
(12159, 'Gaurav A', '11', '9884760213', '', 'gaurav.jangid1309@gmail.com', '1997-09-13', 25, '4', '1', 'Anil Kumar', 'Accountant', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2303250006', '', '1', 'upload_files/candidate_tracker/74622560975_Resume Gaurav.doc', NULL, '1', '2023-03-25', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Good Salary Exp is min 20K just 3 months Exp if he comes back let us try Sustainability Doubts With Us', '6', '1', '0', '1', '8', '0', '2', '2023-03-28', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-25 02:53:02', 1, '2023-03-25 02:56:18', 0, NULL, 1),
(12160, 'abarna', '5', '8220809281', '', 'abarnasree13@gmail.com', '1998-04-13', 24, '1', '1', 'rajeshbabu', 'salaried', 80000.00, 2, 360000.00, 550000.00, 'porur chennai', 'porur chennai', '2303250007', '', '2', 'upload_files/candidate_tracker/35455782517_ABARNA_VELMURUGAN_Resume_23-02-2023-14-50-14.pdf', NULL, '1', '2023-03-27', 0, 'CA164', '4', '29', NULL, 0.00, '', '0', NULL, '1', 'has 4yrs 6m of exp in ins. sector.\nsal expt high .. kindly  check and update your feedback', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-25 07:32:19', 1, '2023-03-27 08:44:16', 0, NULL, 1),
(12161, 'Nishal', '13', '9381111923', '', 'rajanishal1999@gmail.com', '1999-01-13', 24, '3', '2', 'Rajan', 'Farmer', 15000.00, 0, 0.00, 600000.00, 'Chennai', 'Chennai', '2303270001', '', '2', 'upload_files/candidate_tracker/30457931362_Nishal resume copy.docx-1.pdf', NULL, '1', '2023-03-27', 2, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'long distance .. 1yr exp as a full stack developer with 2.9lpa .. because of sal ..looking for job change expt min 6lpa.', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 09:48:11', 1, '2023-03-27 10:00:14', 0, NULL, 1),
(12162, 'Priyatharisini C', '11', '8939237112', '', 'priyankadurai1999@gmail.com', '1999-05-04', 23, '2', '2', 'Chinnadurai C', 'Farmer', 8000.00, 1, 0.00, 22000.00, 'Ariyalur', 'Anna nagar', '2303270002', '1', '1', 'upload_files/candidate_tracker/13745993378_RESUME.pdf', NULL, '1', '2023-03-27', 0, '', '3', '59', '2023-03-28', 180000.00, '', NULL, '2023-09-01', '2', 'Fresher interviewed by Gokul in the final round Career Gap can be trained in our roles', '6', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-27 09:54:22', 60, '2023-04-28 03:04:42', 0, NULL, 1),
(12163, 'Tamizhvanan sakthivel', '31', '9597037346', '8072216262', 'tamizhvananstv@gmail.com', '1998-02-23', 25, '3', '2', 'Sakthivel', 'Village assistant', 17000.00, 2, 0.00, 2.00, 'Cuddalore', 'Chennai', '2303270003', '', '1', 'upload_files/candidate_tracker/78712170753_linux tamizh1.pdf', NULL, '1', '2023-03-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'he much intersted in buss ... Not Ok With TxxampC ..not suit for role', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 10:07:21', 1, '2023-03-27 10:12:59', 0, NULL, 1),
(12164, 'Thenmozhi', '13', '6382453708', '', 'thenmozhi270302@gmail.com', '2002-03-27', 21, '3', '2', 'Vengatasalam', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303270004', '', '1', 'upload_files/candidate_tracker/72602856252_Resume ( hr ).pdf', NULL, '1', '2023-03-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'long distance.. she not ok with our txxampc ..', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 10:15:11', 1, '2023-03-27 10:19:30', 0, NULL, 1),
(12165, 'NOORUL AMEEN', '2', '8760408029', '', 'noorulameen544@gmail.com', '1999-06-04', 23, '3', '2', 'Sarbudeen', 'Retired', 10000.00, 4, 0.00, 15000.00, 'Kadayanallur', 'Chennai', '2303270005', '', '1', 'upload_files/candidate_tracker/54800489665_Rezume__2_.pdf', NULL, '1', '2023-03-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'attitude issue .. not suit for role', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 10:25:03', 1, '2023-03-27 10:39:32', 0, NULL, 1),
(12166, 'CHANDRU R', '14', '8270893909', '9786639522', 'bikecar172001@gmail.com', '2001-01-17', 22, '4', '2', 'Rajendran', 'Supervisor', 150000.00, 1, 0.00, 20000.00, 'Minambakam', 'Guduvanchery', '2303270006', '', '1', 'upload_files/candidate_tracker/34526349346_Chandru Resume Feb.pdf', NULL, '1', '2023-03-27', 0, '', '3', '59', '2023-03-30', 120000.00, '', '', '2023-05-20', '2', 'Selected for Flutter with 2 months 5K then 8K then overll 3yrs SA', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 10:46:34', 1, '2023-03-27 10:50:36', 0, NULL, 1),
(12167, 'Vasanth', '14', '9500825882', '9360111547', 'vasanthsundar26@gmail.com', '2000-05-26', 22, '3', '2', 'Sundaramurthy', 'Weaver', 15000.00, 1, 0.00, 15000.00, 'Kalambur, Tiruvannamalai', 'Vandalur, chennai', '2303270007', '', '1', 'upload_files/candidate_tracker/66431919009_VasanthCV.pdf', NULL, '1', '2023-03-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Final Round hold by Gokul not strong with the basic ideas pressure handling doubts in our role', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 10:47:57', 1, '2023-03-27 10:54:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12168, 'Shanu', '13', '8098484174', '', 'shanu5692@gmail.com', '1999-02-25', 24, '1', '2', 'Asgar', 'Auto driver', 12000.00, 2, 0.00, 15000.00, 'Trichrappalli', 'Trichrappalli', '2303270008', '', '1', 'upload_files/candidate_tracker/33077310263_SHANU.pdf', NULL, '1', '2023-03-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Basic Skills too long career Gap not suitableb Will Not Sustain In Our Roles', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 10:51:00', 1, '2023-03-27 11:03:22', 0, NULL, 1),
(12169, 'Kalaiselvi', '13', '6383194740', '', 'kalaiselviusha1994@gmail.com', '1994-02-16', 29, '1', '2', 'Sekar', 'Daily wages', 10000.00, 1, 0.00, 10000.00, 'Panruti', 'Panruti', '2303270009', '', '1', 'upload_files/candidate_tracker/35879259984_Blue and White Modern Professional Resume (5) (2).pdf', NULL, '1', '2023-03-27', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Long Career Gap 29yrs will get marry next year will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 11:54:16', 1, '2023-03-27 12:02:40', 0, NULL, 1),
(12170, 'Arunpandi P', '13', '6369726275', '7904303309', 'arundeva609@gmail.com', '2000-05-25', 22, '3', '2', 'Pandiyan G', 'Farmer', 15000.00, 3, 0.00, 20000.00, 'Vijayakarisalkulam,626131', 'Poonamalle,600056', '2303270010', '', '1', 'upload_files/candidate_tracker/8003597900_P.ARUNPANDI.pdf', NULL, '1', '2023-03-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'long distance .. not much good in skills and yet not complete his cls ..Not Ok With TxxampC ..', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 12:01:38', 1, '2023-03-27 12:10:50', 0, NULL, 1),
(12171, 'Vinoth m', '31', '7339149047', '6369726275', 'm.vinoth9159@gmail.com', '1999-03-15', 0, '3', '2', 'Minor.s', 'Cooli', 20000.00, 3, 0.00, 20000.00, 'Tenkasi shencottai', 'Chennai poonamalli', '2303270011', '', '1', 'upload_files/candidate_tracker/50950069905_name_Vinoth; 2020, react.js-1.pdf', NULL, '1', '2023-03-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC have a basic skills but not much comfort', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 12:02:10', 1, '2023-03-27 12:10:23', 0, NULL, 1),
(12172, 'Dinesh Kumar E', '13', '8754409322', '', 'dineshkumarcr567@gmail.com', '2000-08-17', 22, '3', '2', 'NA', 'NA', 200000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2303270012', '', '1', 'upload_files/candidate_tracker/54863279251_DINESHKUMARCURRICULUMVITTAE.pdf', NULL, '1', '2023-03-27', 0, '', '3', '59', '2023-03-30', 120000.00, '', '0', NULL, '1', '3M 5K then 8K then overall 3yrs SA 2nd round interviewed by Tamilmani', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 12:07:12', 1, '2023-03-27 12:11:01', 0, NULL, 1),
(12173, 'Madhankumar', '13', '6379468445', '7629368445', 'mrmadhankumar232000@gmail.com', '2000-03-03', 23, '3', '2', 'Shanthi', 'Homemaker', 12000.00, 2, 0.00, 15000.00, 'Karur', 'Ambattur', '2303270013', '', '1', 'upload_files/candidate_tracker/6799622785_New Resume.docx', NULL, '1', '2023-03-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic Skills will not sustain not suitable long run doubts with us', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 01:14:42', 1, '2023-03-27 01:27:38', 0, NULL, 1),
(12174, 'Cheran R', '13', '9952622921', '', 'cheranr42@gmail.com', '1997-10-11', 25, '3', '2', 'RAMASAMY N', 'Former', 10000.00, 2, 0.00, 15000.00, 'Chidambaram', 'Chidambaram', '2303270014', '', '1', 'upload_files/candidate_tracker/29825690218_cheran.pdf', NULL, '1', '2023-03-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic skilss not much comfort in TxxampC will not sustain', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 01:26:26', 1, '2023-03-27 01:30:10', 0, NULL, 1),
(12175, 'Jaivignesh G', '14', '9445714789', '8489245809', 'gjaivignesh2002@gmail.com', '2002-06-26', 20, '3', '2', 'V Ganesan', 'Electrian', 12000.00, 0, 0.00, 10000.00, '40,South street,V.P.Colony,Ayanavaram, Chennai', '40,South Street,V.P.Colony,Ayanavaram,chennai', '2303270015', '', '1', 'upload_files/candidate_tracker/96076039499_JAIVIGNESH fin RESUME.pdf', NULL, '1', '2023-03-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Yet to complete his graduation will not sustain in our roles', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 01:27:45', 1, '2023-03-27 01:34:32', 0, NULL, 1),
(12176, 'Bharanidaran S', '14', '9176643286', '8056204245', 'bharanidaran9588@gmail.com', '2000-10-14', 22, '4', '2', 'Sivakumar T', 'Retired', 25000.00, 1, 0.00, 1000.00, '2 kamaraj street mathiyalagan nagar saligrammam', '2 kamaraj street mathiyalagan nagar saligrammam', '2303270016', '', '1', 'upload_files/candidate_tracker/7015829759_BHARANI DARAN RESUME.docx', NULL, '1', '2023-03-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Yet To Complete His Graduation Will Not Sustain In Our Roles', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 01:34:56', 1, '2023-03-27 01:37:55', 0, NULL, 1),
(12177, 'Vishwa Vengadesh D', '13', '7339220084', '', 'vishwavengadeshdurairaj@gmail.com', '2001-04-01', 21, '1', '2', 'Durairaj A', 'Driver', 200000.00, 2, 0.00, 300000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2303270017', '', '1', 'upload_files/candidate_tracker/38471243276_Vishwa Resume.pdf', NULL, '1', '2023-03-27', 0, 'Sathish', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Yet To Complete His Graduation Will Not Sustain In Our Roles', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-27 02:35:55', 1, '2023-03-27 02:39:21', 0, NULL, 1),
(12178, 'Prasanth k', '21', '8667554645', '9597865686', 'prasanthsilambarasan@gmail.com', '1994-09-13', 28, '4', '2', 'Kuppan', 'Farmer', 10000.00, 1, 15000.00, 18000.00, 'Gummidipoondi', 'Gummidipoondi', '2303280001', '', '2', 'upload_files/candidate_tracker/15758415175_1.prasanth APRL 22.pdf', NULL, '1', '2023-03-28', 5, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Long Distance..looking for backend ..no communication... not suit our roles.. ', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 10:01:49', 1, '2023-03-28 10:08:13', 0, NULL, 1),
(12179, '', '0', '9629813112', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303280002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-28 10:03:22', 0, NULL, 0, NULL, 1),
(12180, 'Martin', '31', '9597893992', '8838523866', 'martin.enoch.caleb@gmail.coM', '1999-09-08', 23, '3', '2', 'Martin', 'Daily wages', 12000.00, 1, 0.00, 20000.00, 'Tiruvallur', 'Tiruvallur', '2303280003', '', '1', 'upload_files/candidate_tracker/48469186774_Martin developer resume-2.pdf', NULL, '1', '2023-03-28', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'long distance.. focusing on sal.. long run doubts. ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 10:13:06', 1, '2023-03-28 10:16:57', 0, NULL, 1),
(12181, 'Priyadharshini A', '13', '9344891970', '', 'sudhapriya762001@gmail.con', '2001-07-06', 0, '3', '2', 'Arumugam K', 'Tailor', 10000.00, 1, 0.00, 18000.00, 'Erode', 'Erode', '2303280004', '21', '1', 'upload_files/candidate_tracker/51476872548_priyadharshini a (3) (1).pdf', NULL, '1', '2023-03-28', 0, 'Nil', '2', '97', NULL, 0.00, '', '0', NULL, '2', 'good in skills ..from erode ready to relocate.. snr interviewed by vishwa have to confirm with gokul  for final round', '2', '2', '0', '4', '7', '0', '2', '2023-03-31', '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2023-03-28 10:23:25', 1, '2023-03-28 10:24:45', 0, NULL, 1),
(12182, 'Selvaganapathy k', '14', '9629823112', '6381079509', 'selvakathir32@gmail.com', '1999-04-16', 23, '4', '2', 'Parvathy', 'Coolie', 6000.00, 1, 0.00, 12000.00, 'Thiruvallur', 'Velachery', '2303280005', '', '1', 'upload_files/candidate_tracker/66303819812_selva .pdf', NULL, '1', '2023-03-28', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'looking for java developer....', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 10:24:04', 1, '2023-03-28 10:32:38', 0, NULL, 1),
(12183, 'B.velmurugan', '31', '9384717495', '6380846584', 'velmuruganece001@gmail.com', '1999-09-29', 23, '3', '2', 'Balasubramanian', 'Cooli', 15000.00, 2, 0.00, 15000.00, 'Tenkasi', 'Saidapet', '2303280006', '', '1', 'upload_files/candidate_tracker/83751117806_velmurugan resume 1.pdf', NULL, '1', '2023-03-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have exp in core not much comfort in TxxampC need tme to confirm his interest if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 10:36:58', 1, '2023-03-28 10:42:18', 0, NULL, 1),
(12184, 'Raghul R', '31', '9047511951', '', 'raghulrajeswari@gmail.com', '2000-11-06', 22, '3', '2', 'Rajendran.R', 'Farmer', 15000.00, 1, 0.00, 13000.00, 'Perambalur', 'Saidapet, chennai', '2303280007', '', '1', 'upload_files/candidate_tracker/70750830700_RAGHUL R.pdf', NULL, '1', '2023-03-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Preferred to work in Java only not suitable', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 10:38:24', 1, '2023-03-28 10:43:00', 0, NULL, 1),
(12185, 'Pooja', '4', '9025230442', '', 'poojanira2019@gmail.com', '1999-06-20', 23, '2', '2', 'D/O T . Selvam', 'Army', 1000000.00, 1, 0.00, 15000.00, '739, bharathiyar street , EB Colony , Thanjavur.', 'Thanjavur', '2303280008', '1', '1', 'upload_files/candidate_tracker/69953447364_pdf resume.pdf', NULL, '1', '2023-03-28', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-28 10:42:05', 85, '2023-03-28 04:53:16', 0, NULL, 1),
(12186, 'Ananthalakshmi', '4', '8248193226', '', 'ananthalakshmi.r1997@gmail.com', '1997-09-26', 25, '2', '2', 'Rajendran', 'Junior Assistant', 10000.00, 0, 10000.00, 15000.00, 'No 3 rasi nagar, m.c road thanjavur', 'Thanjavur', '2303280009', '1', '2', 'upload_files/candidate_tracker/86430337297_ananthi resume.pdf', NULL, '1', '2023-03-28', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-28 10:44:57', 85, '2023-03-28 04:53:29', 0, NULL, 1),
(12187, 'Balaji.M', '14', '9003618061', '7708956921', 'balajibabu6645@gmail.com', '2000-09-26', 22, '3', '2', 'M.Kala', 'Daily wages', 10000.00, 1, 0.00, 15000.00, 'Salem', 'Chennai', '2303280010', '', '1', 'upload_files/candidate_tracker/21334175425_BALAJI_RUSUME.pdf', NULL, '1', '2023-03-28', 0, '', '3', '59', '2023-03-29', 120000.00, '', '0', NULL, '2', '1 month unpaid intern then 5months 6+8K Stipend then overall 3yrs SA Fresher no basic skills but can be trained', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 11:13:26', 1, '2023-03-28 11:31:19', 0, NULL, 1),
(12188, 'R.Mahavishnu', '14', '9944925653', '', 'vishnumaha664@gmail.com', '2000-04-27', 22, '3', '2', 'K.Radhakriahnan', 'Daily wages', 10000.00, 1, 0.00, 16000.00, 'Salem', 'Chennai', '2303280011', '', '1', 'upload_files/candidate_tracker/24913020082_MAHAVISHNU_R (2).pdf', NULL, '1', '2023-03-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills need time to give his confirmation on TxxampC\n', '2', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 11:14:02', 1, '2023-03-28 11:32:13', 0, NULL, 1),
(12189, 'Narendra', '2', '6281534461', '9666182660', 'Chintanarendra370@gmail.com', '2000-05-23', 22, '3', '2', 'Sambasiva rao', 'Farmer', 13000.00, 2, 0.00, 300000.00, 'Nuzvid', 'Chennai', '2303280012', '', '1', 'upload_files/candidate_tracker/47506946601_CHINTA NARENDRA.pdf', NULL, '1', '2023-03-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Testing Profiles only ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 11:14:57', 1, '2023-03-28 11:38:13', 0, NULL, 1),
(12190, 'VASANTH KUMAR S', '23', '9360402216', '', 'Vasanthsankar1405@gmail.com', '2000-11-18', 22, '1', '2', 'Sankar', 'Driver', 75000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303280013', '', '1', 'upload_files/candidate_tracker/24584317772_Resume..pdf', NULL, '1', '2023-03-28', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Came for Job Fair and 2nd round interviewed by Manikandan not much skilled will not sustain need to get trained a lot ', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 11:18:15', 1, '2023-03-28 11:32:47', 0, NULL, 1),
(12191, 'Sivaraman U', '23', '7339680140', '9942228675', 'iamsivatn63@gmail.com', '2002-06-26', 20, '3', '2', 'Udaiyappan k', 'Farmers', 12000.00, 1, 0.00, 15000.00, 'Devakottai', 'Chennai', '2303280014', '', '1', 'upload_files/candidate_tracker/57120012735_Siva Resume.pdf', NULL, '1', '2023-03-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Basic  knowledge in the skills not much comfort with the TxxampC Sustainability Doubts on the profile', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 11:41:36', 1, '2023-03-28 11:47:31', 0, NULL, 1),
(12192, 'Sanjeevkumar S', '13', '6374542977', '', 'sakthikumaran162008@gmail.com', '2000-08-25', 22, '3', '2', 'Senthilkumar K', 'Agriculture', 25000.00, 1, 0.00, 15000.00, 'TANJORE', 'Chennai', '2303280015', '', '1', 'upload_files/candidate_tracker/46102878526_Sanjeev Resume.pdf', NULL, '1', '2023-03-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He is into treatment no Basic skills wil not sustain for a long with us  not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 11:44:36', 1, '2023-03-28 11:56:05', 0, NULL, 1),
(12193, 'Abel Reddy', '13', '9840459619', '9710089619', 'Abelrdd9@gmail.com', '1998-01-26', 25, '3', '2', 'Nagarajan', 'Business', 15000.00, 2, 0.00, 20000.00, 'Madipakkam', 'Chennai', '2303280016', '', '1', 'upload_files/candidate_tracker/55348302550_Abel Reddy.pdf', NULL, '1', '2023-03-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have exp in different domain fresher for IT Have basic knowledge in Node but the expectations is high and not open for TxxampC and Internship', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 12:11:05', 1, '2023-03-28 12:47:23', 0, NULL, 1),
(12194, 'Abel Reddy', '13', '9840450619', '9710089619', 'Abelrdd9@gmail.com', '1998-01-26', 25, '3', '2', 'Nagarajan', 'Business', 15000.00, 2, 0.00, 20000.00, 'Madipakkam', 'Chennai', '2303280017', '', '1', 'upload_files/candidate_tracker/73499278394_Abel Reddy.pdf', NULL, '1', '2023-03-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-28 12:42:46', 1, '2023-03-28 12:44:33', 0, NULL, 1),
(12195, 'Gokul kumar S', '14', '8344780095', '', 'gokulwatson6@gmail.com', '1999-06-23', 23, '3', '2', 'T Siva kumar', 'Assitant BDO', 100000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Chrompet', '2303290001', '', '1', 'upload_files/candidate_tracker/15352427568_Gokul Resume.pdf', NULL, '1', '2023-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attended Job Fair looking much for Java Positions and no basic in Javascript  candidate need to come back  with his confirmation', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-29 09:49:34', 1, '2023-03-29 10:03:35', 0, NULL, 1),
(12196, 'S Hemamalini', '16', '9514410221', '8220717202', 'malini2328hema@gmail.com', '1997-01-23', 26, '3', '2', 'Sriraman', 'Binder', 16000.00, 1, 15000.00, 25000.00, 'Kanchipuram', 'Kanchipuram', '2303290002', '', '2', 'upload_files/candidate_tracker/12599296928_Malini Resume New.docx', NULL, '1', '2023-03-29', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance not comfort with the timing not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-29 10:57:36', 85, '2023-03-29 07:14:40', 0, NULL, 1),
(12197, 'D. SATHISHKUMAR', '4', '9884879304', '', 'SATHISHKUMARDB77@GMAIL.COM', '2004-02-03', 19, '1', '2', 'Deenadayalan', 'Cooli', 15000.00, 2, 19000.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2303290003', '', '2', 'upload_files/candidate_tracker/3844666879_SodaPDF-converted-RESUME+single+page+-+Copy+(1) (1).pdf', NULL, '1', '2023-03-29', 0, 'Banu', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Not Suit For Our Roles xxamp Long Distance..', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-29 12:03:30', 1, '2023-03-29 12:15:35', 0, NULL, 1),
(12198, 'Ameer hamza', '31', '9944836384', '', 'hamza211902@gmail.com', '2001-02-21', 22, '1', '2', 'Parent', 'Shop', 20000.00, 0, 0.00, 120000.00, 'Chennai', 'Chennai', '2303290004', '', '1', 'upload_files/candidate_tracker/95097366423_Ameer hamza Resume.pdf', NULL, '1', '2023-03-29', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher not much strong with the basic skills need to train a lot if he comes back let us try', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-29 12:03:53', 1, '2023-03-29 12:18:49', 0, NULL, 1),
(12199, 'Mohamed Iburahim', '31', '9361059290', '', 'mohamediburahim89@gmail.com', '2000-12-14', 22, '6', '2', 'Abdul kader', 'Daily wager', 6000.00, 2, 0.00, 10000.00, 'Ilayangudi, sivagangai district ,630702', 'Chennai triplecane', '2303290005', '', '1', 'upload_files/candidate_tracker/21295326733_pdf_20230213_154329_0000.pdf', NULL, '1', '2023-03-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'doing his course in accord one month more.. hv basic knowledge .. not ok with our txxampc..', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-29 12:03:54', 1, '2023-03-29 12:16:23', 0, NULL, 1),
(12200, 'Selva Pandi', '13', '9962002600', '9047205844', 'selvasureshkumar486@gmail.com', '1995-07-05', 27, '6', '1', 'Dhivya.G', 'HR Executive', 23000.00, 1, 13000.00, 15000.00, '104/2,DR.Ambedkar Street, Virudhunagar -626001', 'No.4, Stunt Somu Street, KK Nagar, Chennai -600078', '2303290006', '', '2', 'upload_files/candidate_tracker/43172629458_Selvapandi_Cv.pdf', NULL, '1', '2023-03-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-29 12:04:03', 1, '2023-03-29 12:16:17', 0, NULL, 1),
(12201, 'S. YOVAN', '4', '7449099086', '8778286759', 'yovaansam@gmail.com', '2000-10-11', 22, '3', '2', 'S.JANSIRANI', 'Production work', 15000.00, 1, 21500.00, 22000.00, 'Thiruvallur', 'Thiruvallur', '2303290007', '', '2', 'upload_files/candidate_tracker/59709548677_Yovanresume.pdf', NULL, '1', '2023-03-29', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for our roles xxamp long distance..', '1', '1', '', '1', '8', '', '1', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-29 12:05:14', 85, '2023-03-29 01:13:14', 0, NULL, 1),
(12202, 'Abirami', '23', '7259943460', '', 'sssabi15@gmail.com', '1994-02-15', 29, '6', '2', 'R sivanandam', 'Retire police', 25000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2303290008', '', '1', 'upload_files/candidate_tracker/10311904573_S.ABIRAMI Resume.pdf', NULL, '1', '2023-03-29', 0, '', '3', '59', '2023-04-13', 120000.00, '', '4', '2023-07-18', '1', 'Selected for React Kavya Team with Stipend 3 months 6K then 2 months 8K then 3yrs overall SA need ot collect the cheque', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-29 12:14:43', 60, '2023-04-13 03:07:00', 0, NULL, 1),
(12203, '', '0', '9840643347', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303290009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-29 12:30:55', 0, NULL, 0, NULL, 1),
(12204, 'B.Nandhakumar', '13', '7448516897', '9442018103', 'nandhakumarid023@gmail.com', '1998-07-23', 24, '6', '2', 'K.Bharathi', 'Builder', 300000.00, 0, 120000.00, 190000.00, 'Coimbatore', 'Annur', '2303290010', '', '2', 'upload_files/candidate_tracker/82944919218_B.Nandhakumar (Update Resume).pdf', NULL, '1', '2023-03-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'not much good in prog.lau .. not ok with our txxampc', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-29 12:32:37', 1, '2023-03-29 12:46:54', 0, NULL, 1),
(12205, 'Iyyappan M', '13', '6384741049', '', 'ramiyyappan2001@gmail.com', '2002-07-17', 20, '6', '2', 'Murugesan M', 'Farmer', 15000.00, 1, 0.00, 10000.00, 'Pudukkottai', 'Navalaur Chennai', '2303290011', '', '1', 'upload_files/candidate_tracker/44664226813_Iyyappan (resume).pdf', NULL, '1', '2023-03-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'have to learn more .. long distance ', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-29 02:47:06', 1, '2023-03-29 02:53:28', 0, NULL, 1),
(12206, 'Rajesh', '16', '9791179399', '', 'rajeskelly1992@gmail.com', '1991-07-23', 31, '3', '2', 'Subramani', 'Daily labhour', 10000.00, 2, 18000.00, 19000.00, 'Avadi', 'Avadi', '2303290012', '', '2', 'upload_files/candidate_tracker/86197952262_RajeshMscIT1.pdf', NULL, '1', '2023-03-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'no communication xxamp long distance', '3', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-29 03:02:27', 1, '2023-03-29 03:24:37', 0, NULL, 1),
(12207, 's.Uthayan', '6', '7305265260', '', 'rsri94967@gmail.com', '1999-09-29', 23, '2', '2', 'Sandilyan', 'Farmer', 15000.00, 1, 0.00, 13000.00, '10/148,vaduvur, needamgalam(tk), Thiruvarur(DT)', '10/148,vaduvur,needamgalam(tk),thiruvarur(DT)', '2303290013', '1', '2', 'upload_files/candidate_tracker/90123014109_Resume_05_02_2023_12_41_17_pm.pdf', NULL, '1', '2023-03-30', 0, '', '3', '59', '1970-01-01', 144000.00, '', '8', '1970-01-01', '2', 'Selected for Thanjavur Team in Consultant Role', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '1', NULL, NULL, NULL, 1, '2023-03-29 05:05:41', 60, '2023-04-01 03:50:39', 0, NULL, 1),
(12208, 'M. Nandhini', '16', '9150950933', '', 'nandhinimanivannan2002@gmail.com', '2002-03-02', 21, '3', '2', 'P. Manivannan', 'Daily wages', 12000.00, 1, 0.00, 15000.00, 'Kodungaiyur', 'Kodungaiyur', '2303290014', '', '1', 'upload_files/candidate_tracker/20898646020_0_nandhini resume ;new.doc', NULL, '1', '2023-03-30', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'long distance no communication\nnot suit for our roles', '3', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-29 11:18:21', 1, '2023-03-30 12:36:27', 0, NULL, 1),
(12209, 'Banu Mathi', '13', '9361127723', '', 'mathi817@gmail.com', '2000-03-20', 23, '4', '2', 'P.Ramar', 'Driver', 40000.00, 2, 0.00, 300000.00, 'Virudhunagar', 'Virudhunagar', '2303300001', '', '1', 'upload_files/candidate_tracker/11045217043_Banu+New+Resume.pdf', NULL, '1', '2023-03-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Strong with the basics poor understanding sustainability doubts in our role not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-30 10:03:46', 1, '2023-03-30 10:08:19', 0, NULL, 1),
(12210, 'Surya', '3', '8754876944', '8608257546', 'suryaravi65486@gmail.com', '1998-11-10', 24, '6', '2', 'Rajamoorthy', 'Shopkeeper', 25000.00, 1, 15000.00, 20000.00, 'Cuddalore', 'Chennai', '2303300002', '', '2', 'upload_files/candidate_tracker/45184712596_SURYA17.pdf', NULL, '1', '2023-03-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'too long Distance Not much comfort in TxxampC No basic skills not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-30 10:34:49', 1, '2023-03-30 10:50:52', 0, NULL, 1),
(12211, 'Mukesh', '16', '9941853688', '', 'mugeshbrock@gmail.com', '1996-07-28', 26, '3', '2', 'Dilipkumar M', 'Accountant', 20000.00, 1, 16000.00, 21000.00, 'Chennai', 'Chennai', '2303300003', '', '2', 'upload_files/candidate_tracker/61078533291_Mukesh resume- updated.docx', NULL, '1', '2023-03-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for our domain SAlary exp is high will not sustain', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-30 10:35:15', 1, '2023-03-30 10:39:50', 0, NULL, 1),
(12212, 'Dhinesh', '13', '9025052325', '', 'dhinesh1267@gmail.com', '2001-07-11', 21, '6', '2', 'Nagarajan.M', 'Driver', 10000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2303300004', '', '1', 'upload_files/candidate_tracker/11672005230_Dhinesh resume .pdf', NULL, '1', '2023-03-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skill Will not handle our work Pressure not suitable', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-30 10:35:52', 1, '2023-03-30 10:41:09', 0, NULL, 1),
(12213, 'Rubee pandey km', '6', '7871802078', '8608278960', 'Rubeep99@gmail.com', '1999-02-05', 24, '3', '2', 'Jiyaram pandey', 'Business', 20000.00, 2, 22000.00, 25000.00, 'Thiruvattiyur', 'Thiruvattiyur', '2303300005', '', '2', 'upload_files/candidate_tracker/33344212554_RUBEE PANDEY K.pdf', NULL, '3', '2023-03-30', 15, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expection highe no experience is sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-30 10:40:40', 97, '2023-03-31 06:37:23', 0, NULL, 1),
(12214, 'K G NAGENDRA KALKI', '13', '8428641383', '7904608021', 'shivayadhav142@gmail.com', '1999-02-14', 24, '2', '2', 'K G Manjula', 'Daily labour', 11000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2303300006', '26', '1', 'upload_files/candidate_tracker/48376553720_Nagendra kalki K G.docx', NULL, '1', '2023-03-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance not much comfrt in TxxampC ', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-30 10:49:57', 1, '2023-03-30 10:55:08', 0, NULL, 1),
(12215, 'GOKULNATH M', '13', '9715684599', '9566587002', 'gokul2951998@gmail.com', '1998-05-29', 24, '2', '2', 'Madasamy', 'Electrician', 20000.00, 1, 0.00, 15000.00, 'Gummidipoondi', 'Vadapalani/chennai', '2303300007', '26', '1', 'upload_files/candidate_tracker/81343488983_Gokul resume-1.pdf', NULL, '1', '2023-03-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much comfrt in TxxampC previous exp Terminated for continous leaves', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-30 10:50:01', 1, '2023-03-30 10:55:41', 0, NULL, 1),
(12216, 'Usuff khan', '14', '9361671986', '', 'usuffjamin14@gmail.com', '2000-01-14', 23, '3', '2', 'Nizam khan', 'Electrician', 15000.00, 1, 0.00, 12000.00, 'Rajapalayam', 'Chennai', '2303300008', '', '1', 'upload_files/candidate_tracker/1919423492_Usuff.Resume.pdf', NULL, '1', '2023-03-30', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'looking for java dev.. ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-30 11:15:47', 1, '2023-03-30 11:22:16', 0, NULL, 1),
(12217, 'Kalai Arasan T', '23', '9791539655', '', 'kalaiarasan23499@gmail.com', '1999-04-23', 23, '6', '2', 'Jothi', 'House wife', 25000.00, 2, 0.00, 10000.00, 'Kovilpatti', 'Chennai', '2303300009', '', '1', 'upload_files/candidate_tracker/14214786970_kalaiarasan new.pdf.1.pdf', NULL, '1', '2023-03-30', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'not much good in skills xxamp not ok with our txxampc .. ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-30 11:16:30', 1, '2023-03-30 11:22:30', 0, NULL, 1),
(12218, 'Sathish kumar S', '31', '8525957428', '', 'sathizzkumarr@gmail.com', '1995-02-10', 28, '6', '1', 'Subramanian S', 'Farmer', 18000.00, 1, 0.00, 250000.00, 'Erode', 'Erode', '2303300010', '', '1', 'upload_files/candidate_tracker/8220718796_2023_CV SATHISH_KUMAR.pdf', NULL, '1', '2023-03-30', 0, '', '2', '97', '1970-01-01', 0.00, '', '3', '2024-03-09', '2', 'have knowledge in reactjs xxamp nodejs.. he want to confirm with his parents txxampc.. ', '2', '1', '', '4', '7', '', '2', '2023-04-03', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-30 11:23:14', 97, '2023-03-31 06:47:07', 0, NULL, 1),
(12219, 'victor', '16', '9790560670', '', 'Epremvictor1999@gmail.com', '1999-06-12', 23, '3', '2', 'sahaya mary', 'farmer', 10000.00, 3, 15000.00, 18000.00, 'Taramani', 'taramani', '2303300011', '', '2', 'upload_files/candidate_tracker/78509345458_Eprem victor.pdf', NULL, '1', '2023-03-30', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication No Not strong witg Accounts 5050 if he comes back let us try', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-30 11:46:31', 1, '2023-03-30 12:43:30', 0, NULL, 1),
(12220, 'Uma Mageswari V', '13', '7810081092', '8098066580', 'umaragavan0305@gmail.com', '2002-05-03', 20, '3', '2', 'Veeraragavan P', 'Driver', 20000.00, 3, 0.00, 15000.00, 'Tiruvannamalai', 'Mandhaveli', '2303300012', '', '1', 'upload_files/candidate_tracker/11290918284_Mageswari-Resume 1 (wecompress.com) (1).pdf', NULL, '1', '2023-03-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance Not open for TxxampC not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-30 11:56:18', 1, '2023-03-30 12:02:36', 0, NULL, 1),
(12221, 'M. Shivani', '11', '7603922044', '7904807121', 'shivanimuralidhar99@gmail.com', '1999-06-09', 23, '2', '2', 'A. C. MURALIDHAR', 'Private', 40000.00, 1, 15000.00, 15000.00, 'Vellore', 'Chennai', '2303300013', '1', '2', 'upload_files/candidate_tracker/93447838870_Shivani Feb 2023.pdf', NULL, '1', '2023-03-30', 0, '', '3', '59', '2023-04-10', 194496.00, '', '3', '2023-11-11', '2', 'Selected for Mutual fund candidate communication is good final round interviewed by gokul candidate need to give her confirmation on Salary', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-30 12:57:37', 85, '2023-08-26 02:34:00', 0, NULL, 1),
(12222, 'SELVA PRIYA S', '13', '6369073656', '', 'priyariya4101@gmail.com', '2001-01-04', 22, '6', '2', 'SUBASH CHANDRA BOSE R', 'Borewell worker', 10000.00, 2, 0.00, 20000.00, 'Kanyakumari', 'Chennai', '2303300014', '', '1', 'upload_files/candidate_tracker/73844995645_SELVA PRIYA S RESUME.pdf', NULL, '1', '2023-03-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need time to check with family and confirm on TxxampC Sustainability doubts Salary exp high', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-30 01:16:19', 1, '2023-03-30 01:39:17', 0, NULL, 1),
(12223, '', '0', '7708872863', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303300015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-30 01:36:24', 0, NULL, 0, NULL, 1),
(12224, 'Uma Shankari Ilango', '11', '9597635533', '', 'siumashankari@protonmail.com', '1992-01-18', 31, '3', '1', 'Ilango S', 'IT Recruiter', 300000.00, 0, 156000.00, 240000.00, 'Chennai', 'Chennai', '2303300016', '', '2', 'upload_files/candidate_tracker/25863083798_Uma Shankari-Resume.pdf', NULL, '1', '2023-03-31', 30, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'has 9m of exp in recruitment..sal  expt too high', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-30 05:15:38', 1, '2023-03-31 09:47:12', 0, NULL, 1),
(12225, '', '0', '9094831195', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303300017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-30 06:06:02', 0, NULL, 0, NULL, 1),
(12226, '', '0', '9094831185', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303300018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-30 06:25:07', 0, NULL, 0, NULL, 1),
(12227, 'Padmanandhan G', '13', '9176076700', '', 'padmanandhan9790@gmail.com', '1999-10-02', 23, '1', '2', 'R GEETHAKRISHNAN', 'Security', 120000.00, 1, 3.50, 3.50, 'Chennai Sithalapakkam', 'Chennai Sithalapakkam', '2303310001', '', '2', 'upload_files/candidate_tracker/60988180230_Padmanandhan_Resume_Document.docx', NULL, '1', '2023-04-03', 0, 'N/A', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance not much strong in the basics not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-31 12:23:37', 1, '2023-04-03 10:40:43', 0, NULL, 1),
(12228, 'KarthickKrishna', '11', '6382165503', '', 'kaarthickpakk@gmail.com', '2000-02-14', 23, '3', '2', 'Bharanetharar MPS', 'Government Employee', 55000.00, 0, 0.00, 25000.00, 'Trichy', 'Vadapalani', '2303310002', '', '1', 'upload_files/candidate_tracker/14736105371_Resumee.pdf', NULL, '1', '2023-03-31', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'no job need ...sal expt high', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-31 09:13:40', 1, '2023-03-31 09:19:13', 0, NULL, 1),
(12229, 'Ajay', '13', '8939436925', '9841928296', 'majayamurugan123@gmail.com', '1995-12-31', 27, '6', '2', 'Karuippayee', 'House keeping', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2303310003', '', '1', 'upload_files/candidate_tracker/66894777157_Resume Ajay (2).pdf', NULL, '1', '2023-03-31', 0, '', '3', '59', '2023-04-03', 120000.00, '', '0', NULL, '2', 'Selected for Node/React,final round interviewed by gokuland selected Family need is there 3months 5K then 8K then Overall SA Node', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-31 10:23:12', 1, '2023-03-31 10:27:31', 0, NULL, 1),
(12230, 'Kalidoss C', '14', '6369685759', '7200959809', 'kalidoss7676@gmail.com', '2000-10-18', 22, '6', '2', 'Chakkaravarthy', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Poonthamalle', '2303310004', '', '1', 'upload_files/candidate_tracker/56882921339_KALIDOSS RESUME.pdf', NULL, '1', '2023-03-31', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'long distance...has 3m of exp.. long run doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-31 10:37:18', 1, '2023-03-31 10:39:27', 0, NULL, 1),
(12231, 'SANJAY S', '14', '7418257902', '', 'Sanjaysiva1529@gmail.com', '2001-08-15', 21, '6', '2', 'Sivakumar A', 'Daily wages', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303310005', '', '1', 'upload_files/candidate_tracker/59002678274_cafs resume.pdf', NULL, '1', '2023-03-31', 0, '', '3', '59', '2023-04-03', 120000.00, '', '0', NULL, '1', 'Selected For FLutter,Final Round Interviewed By Gokul and Selected Need Is There 3months 5K Then 8K Then Overall SA ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-31 10:52:40', 1, '2023-03-31 11:00:34', 0, NULL, 1),
(12232, 'Ruba Jenifa', '16', '9344984047', '', 'rubajenifa@gmail.com', '1999-11-30', 23, '3', '2', 'Natchathram', 'House wife', 25000.00, 2, 13000.00, 22000.00, 'Chennai', 'Chennai', '2303310006', '', '2', 'upload_files/candidate_tracker/97103426360_Ruba Exp22.pdf', NULL, '1', '2023-03-31', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', '. fresher to our role.. no communication.. sal expt high', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-31 10:54:21', 1, '2023-03-31 11:16:25', 0, NULL, 1),
(12233, 'Sivakesavan s', '13', '9489151435', '6374724900', 'kesavansiva515@gmail.com', '1998-05-15', 24, '2', '2', 'Sivanandi s', 'Farmer', 72000.00, 2, 0.00, 12.00, 'Madurai', 'Chennai', '2303310007', '26', '1', 'upload_files/candidate_tracker/57396276684_DOC-20230319-WA0005..pdf', NULL, '1', '2023-03-31', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'looking for java', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-31 11:04:27', 1, '2023-03-31 11:11:11', 0, NULL, 1),
(12234, 'Arun T', '13', '8072542168', '9566811677', 'aruntlb12@gmail.com', '1999-02-12', 24, '2', '2', 'Thiruvenkata subramanian', 'Government officer', 80000.00, 1, 0.00, 12000.00, 'Erode', 'Chennai', '2303310008', '26', '1', 'upload_files/candidate_tracker/95035528360_DOC-20230305-WA0000..pdf', NULL, '1', '2023-03-31', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'no job need ... intersted in java...', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-31 11:05:03', 1, '2023-03-31 11:11:26', 0, NULL, 1),
(12235, 'N. CHINNA THAMBI', '31', '6380538274', '', 'nambimech01@gmail.com', '1999-10-08', 23, '1', '2', 'P.Navaneetha krishnan', 'Farmer', 20000.00, 1, 0.00, 2.00, 'Tenkasi , district. sundarapandiya puram', 'Trplicane', '2303310009', '', '1', 'upload_files/candidate_tracker/96111852816_Chinnathmbi Front_End_Trainee.pdf', NULL, '1', '2023-03-31', 0, 'Fresher', '3', '97', '2023-05-15', 0.00, '', '', '2023-05-31', '2', 'not much good in skills..', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-31 11:29:22', 60, '2023-05-15 09:22:21', 0, NULL, 1),
(12236, 'Murali M', '16', '8608467768', '9841211716', 'muralimurugan275@gmail.com', '1999-05-27', 23, '3', '2', 'MURUGAN', 'Daily Wages', 10000.00, 2, 12000.00, 17000.00, 'Ulundurpet', 'Thiruvanmiyur', '2303310010', '', '2', 'upload_files/candidate_tracker/77178219628_Murali Resume.pdf', NULL, '1', '2023-03-31', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'no communication ... not  suit for our process', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-31 12:52:26', 1, '2023-03-31 12:58:59', 0, NULL, 1),
(12237, '', '0', '7305331522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303310011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-31 01:19:56', 0, NULL, 0, NULL, 1),
(12238, 'Ganesh N', '13', '9345871394', '6383421606', 'maran03071999@gmail.com', '2001-11-09', 21, '6', '2', 'Narayanan', 'Accountant', 450000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2303310012', '', '1', 'upload_files/candidate_tracker/94235927150_GANESH RESUME (1).pdf', NULL, '1', '2023-03-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic skills knowledge not suitable for our roles ', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-31 03:35:40', 1, '2023-03-31 03:42:49', 0, NULL, 1),
(12239, 'Sona.A', '3', '9940213631', '', 'Sonamacline783@gmail.com', '2001-07-08', 21, '3', '2', 'A.arumainayagam', 'Gun man', 15000.00, 1, 0.00, 18000.00, 'No.53, padison Puram line, pulianthope, chennai 12', 'No.34/16 mannar Swamy street, pattalam, chennai 12', '2303310013', '', '1', 'upload_files/candidate_tracker/58259598843_sona new.pdf', NULL, '1', '2023-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-31 06:55:24', 1, '2023-03-31 07:35:40', 0, NULL, 1),
(12240, 'sudhakar r', '11', '7695984310', '', 'sudhakarravi98@gmail.com', '1998-09-09', 24, '3', '2', 'ravichandran', 'dgm - lucas tvs', 70000.00, 1, 0.00, 500000.00, 'chennai', 'chennai', '2304010001', '', '1', 'upload_files/candidate_tracker/40870896877_Sudhakar R.pdf', NULL, '1', '2023-04-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average sustainability doubts in our role Salary exp is very high being a fresher', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-01 09:28:18', 1, '2023-04-01 09:37:25', 0, NULL, 1),
(12241, '', '0', '9600456892', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304010002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-01 09:38:13', 0, NULL, 0, NULL, 1),
(12242, 'Santhiya A', '11', '8190836666', '', 'sandhyasakthi2001@gmail.com', '2001-04-28', 21, '2', '2', 'M Anandan', 'Employee', 18000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2304010003', '1', '1', 'upload_files/candidate_tracker/67837645756_my new resume .pdf', NULL, '1', '2023-04-24', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to complete her exams salary exp is high if she comes back will negotiate and try ', '6', '1', '', '1', '8', '', '2', '2023-05-02', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-01 10:03:13', 85, '2023-04-24 12:11:27', 0, NULL, 1),
(12243, 'David Raja', '13', '9159578900', '7373485969', 'davidraja4013@gmail.com', '2001-06-25', 21, '6', '2', 'Thomas', 'Farmer', 500000.00, 7, 0.00, 25000.00, 'Kalakad Tirunelveli', 'Maraimalainager Chennai', '2304010004', '', '1', 'upload_files/candidate_tracker/79965203219_David Raja-Resume.pdf', NULL, '1', '2023-04-01', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not much good in prog . lau... not comfort with our txxampc', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-01 10:49:26', 1, '2023-04-01 10:55:35', 0, NULL, 1),
(12244, 'B santhosh kumar', '11', '6381250132', '9597928995', 'santhoshsoin56@gmail.com', '1999-03-04', 24, '3', '1', 'Bakiya Lakshmi', 'Bank Clerk', 20000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2304010005', '', '1', 'upload_files/candidate_tracker/99329447730_account resume.pdf', NULL, '1', '2023-04-01', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'no communication .. not suit for our roles', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-01 11:06:17', 1, '2023-04-01 11:47:08', 0, NULL, 1),
(12245, 'Anusree', '16', '7299880448', '7299795213', 'anusree81098@gmail.com', '1998-10-08', 24, '2', '2', 'C.Ravi', 'Driver', 25000.00, 1, 17000.00, 25000.00, 'Chennai-81', 'Chennai-81', '2304010006', '1', '2', 'upload_files/candidate_tracker/86978360646_DOC-20230401-WA0000.anusree.docx', NULL, '1', '2023-04-03', 0, '', '3', '59', '2023-04-06', 228000.00, '', '', '1970-01-01', '2', 'Selectd for MIS Renewals joining doubts as the candidate exp is very high have 1 yr exp in Non voice process but not a relevant one', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-01 02:02:20', 85, '2023-04-06 09:57:25', 0, NULL, 1),
(12246, 'Moushmi. B', '11', '9566099264', '9360278223', 'moushminair6@gmail.com', '2000-06-08', 22, '3', '2', 'B. Uma mageshwari', 'House wife', 30000.00, 0, 0.00, 360000.00, 'Chennai', 'Chennai', '2304010007', '', '1', 'upload_files/candidate_tracker/76991487084_Resume(B.Moushmi).docx', NULL, '1', '2023-04-03', 0, '', '3', '59', '2023-04-05', 180000.00, '', '0', NULL, '2', 'Selected for Recruiter Role final round with Gokul candidate need to confirm her role Staff Consultant', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-01 04:42:11', 1, '2023-04-01 04:47:46', 0, NULL, 1),
(12247, 'Laila', '16', '6379181032', '9710350519', 'lailaravi562@gmail.com', '2001-08-16', 21, '6', '2', 'Ravikumar', 'Whitewasher', 12000.00, 1, 16000.00, 20000.00, 'Muthamizh Nagar, Kodungaiyur,Chennai-600118', 'Muthamizh Nagar, Kodungaiyur,Chennai-600118', '2304020001', '', '2', 'upload_files/candidate_tracker/68550539540_RESUME LAILA.pdf', NULL, '1', '2023-04-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-02 05:35:23', 1, '2023-04-03 11:50:58', 0, NULL, 1),
(12248, 'GUBERAN B', '11', '9840866257', '', 'balajiguberan7@gmail.com', '2000-10-09', 22, '3', '2', 'Balaji S', 'Business', 20000.00, 0, 0.00, 25000.00, 'Mmda colony Arumbakkam', 'Mmda Colony Arumbakkam', '2304030001', '', '1', 'upload_files/candidate_tracker/70588391912_Guberan\'s Resume.pdf', NULL, '1', '2023-04-03', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'not suit for our role.. ', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-03 08:04:15', 1, '2023-04-03 12:02:13', 0, NULL, 1),
(12249, 'Soniya', '11', '9884591974', '9042674139', 'sonikabiebez27@gmail.com', '2001-06-14', 21, '4', '2', 'Suresh Kumar', 'Barbar', 20000.00, 1, 16000.00, 17000.00, 'Chennai', 'Chennai', '2304030002', '', '2', 'upload_files/candidate_tracker/50092127675_ Soniya-HR Executive.pdf', NULL, '1', '2023-04-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-03 10:29:24', 1, '2023-04-03 10:35:14', 0, NULL, 1),
(12250, 'Munusamy', '2', '8870971538', '8637641571', 'ms105686@gmail.com', '1995-03-05', 28, '6', '2', 'Selvi S', 'Daily wager', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Tirupur', '2304030003', '', '1', 'upload_files/candidate_tracker/21999752241_resume.pdf', NULL, '1', '2023-04-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-03 10:35:08', 1, '2023-04-03 10:38:39', 0, NULL, 1),
(12251, 'Indhumathi', '13', '8754989371', '', 'indhuela25@gmail.com', '1995-05-10', 27, '1', '1', 'Elangovan', 'Farmers', 20000.00, 1, 0.00, 27000.00, 'Chennai', 'Chennai', '2304030004', '', '1', 'upload_files/candidate_tracker/11721565411_CV_indhumathi_2023.pdf', NULL, '1', '2023-04-03', 0, '12345', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Career Gap Married and lot of personal issue will not sustain and handle our work roles not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-03 10:55:48', 85, '2023-04-03 11:07:03', 0, NULL, 1),
(12252, 'Srilekha', '11', '9043912722', '', 'Sriilekhaa.s@gmail.com', '1996-02-08', 27, '3', '1', 'SRINIVASAN', 'Software engineering', 800000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2304030005', '', '1', 'upload_files/candidate_tracker/87274894726_Srilekha Resume (1).docx', NULL, '1', '2023-04-03', 0, '', '3', '59', '2023-04-04', 180000.00, '', '', '1970-01-01', '1', 'Seleted for HR recruiter Fresher too long distance ready to relocate can give a try for our role final round interviewed by gokul', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-03 11:03:45', 85, '2023-04-03 11:48:18', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12253, 'Sasi kumar', '13', '6383201475', '', 'sasikumar150500@gmail.com', '2000-05-15', 22, '6', '2', 'Siva prakash', 'driver', 30000.00, 1, 0.00, 15000.00, 'Nagercoil', 'Thambram', '2304030006', '', '1', 'upload_files/candidate_tracker/22002318040_Resume.pdf', NULL, '1', '2023-04-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for TxxampC Need to learn a lot  will not sustain and handle our workroles not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-03 11:11:43', 1, '2023-04-03 11:17:12', 0, NULL, 1),
(12254, '', '0', '7358592596', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304030007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-03 11:11:46', 0, NULL, 0, NULL, 1),
(12255, 'Ziyauddeen Unais', '13', '6381548788', '', 'unaisziyauddeen@gmail.com', '2000-02-15', 23, '3', '2', 'Abdul kader', 'Business', 40000.00, 1, 0.00, 280000.00, '10,perumal Kulam Street Edalakudy Nagercoil', 'East tambaram Chennai', '2304030008', '', '1', 'upload_files/candidate_tracker/76035303705_Unais Final Resume.pdf', NULL, '1', '2023-04-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Saalry Exp is very high Settled will not sustain in our roles not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-03 11:12:32', 1, '2023-04-03 11:15:40', 0, NULL, 1),
(12256, 'R.Gopi', '11', '9585264816', '9095677152', 'gopi.gr2106@gmail.com', '2000-06-21', 22, '2', '2', 'G.Rajendran', 'Farmer', 25000.00, 1, 0.00, 20000.00, 'Kaikalathur, Perambalur', 'Alandur, Chennai', '2304030009', '26', '1', 'upload_files/candidate_tracker/52972824667_Gopi.R.pdf', NULL, '1', '2023-04-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need To Learn A Lot  Will Not Sustain And Handle Our Work roles Not Suitable', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-03 11:46:07', 1, '2023-04-03 11:52:43', 0, NULL, 1),
(12257, '', '0', '6369199504', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304030010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-03 11:46:45', 0, NULL, 0, NULL, 1),
(12258, 'ARIYAA R J', '13', '8072190552', '', 'ariyaa1546@gmail.com', '1998-02-13', 25, '6', '2', 'JOTHIRAMALINGAM', 'Farmer', 10000.00, 2, 0.00, 13000.00, 'Salem,gangavalli,anaiyampatti', 'Velachery', '2304030011', '', '1', 'upload_files/candidate_tracker/44994060616_Ariyaa_Jothiramalingam.pdf', NULL, '1', '2023-04-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-03 12:21:49', 1, '2023-04-03 12:47:48', 0, NULL, 1),
(12259, 'Manikandan', '13', '8838660613', '9087697242', 'manikandanmurugesan1102@gmail.com', '1998-02-11', 25, '6', '2', 'Alamelu', 'House wife', 8000.00, 1, 0.00, 13000.00, 'GANGAVALLI,SALEM', 'Velachery, Chennai', '2304030012', '', '1', 'upload_files/candidate_tracker/84593567230_RESUME_MANIKANDAN.pdf', NULL, '1', '2023-04-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-03 12:22:15', 1, '2023-04-03 12:28:44', 0, NULL, 1),
(12260, 'Avinash Tallapaneni', '13', '8148567569', '', 'avinashtallapaneni@gmail.com', '1992-10-16', 30, '6', '2', 'Venkataramaiah', 'Merchant', 10.00, 2, 0.00, 600000.00, 'Chennai', 'Chennai', '2304030013', '', '1', 'upload_files/candidate_tracker/14911109206_Avinash_Tallapaneni_F_E.pdf', NULL, '1', '2023-04-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-03 12:22:22', 1, '2023-04-03 12:26:54', 0, NULL, 1),
(12261, '', '0', '8838485386', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304030014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-03 01:52:34', 0, NULL, 0, NULL, 1),
(12262, 'tharakesh', '13', '9003675107', '', 'tarakesh.k.2000@gmail.com', '2000-10-28', 22, '3', '2', 'karthikeyan', 'medical inspector', 900000.00, 1, 0.00, 300000.00, 'Chennai', 'chennai', '2304030015', '', '1', 'upload_files/candidate_tracker/4384692880_Tarakesh K.pdf', NULL, '1', '2023-04-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'not strong wiht the basics not suitable will not sustain in our roles', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-03 02:24:26', 1, '2023-04-03 03:31:45', 0, NULL, 1),
(12263, 'Berlin joe l', '2', '8525021648', '8903338000', 'l.berlinjoe@hotmail.com', '2001-03-25', 22, '3', '2', 'leon joseph raj', 'daily wages', 35000.00, 1, 0.00, 3.00, 'chennai', 'chennai', '2304030016', '', '1', 'upload_files/candidate_tracker/8684463625_Berlin Resume.pdf', NULL, '1', '2023-04-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to come back with his confirmation too long distance need to relocate will not sustain and handle our pressure', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-03 02:51:29', 1, '2023-04-03 02:58:10', 0, NULL, 1),
(12264, 'supriya sugumaran', '11', '7397232312', '9789039925', 'supriyasugumaran0831@gmail.com', '1996-08-31', 26, '4', '2', 'sugumaran k', 'rte', 35000.00, 2, 21000.00, 25000.00, 'o. th street nehru colony nanganallur chennai', 'O. Th Street Nehru Colony Nanganallur Chennai', '2304030017', '', '2', 'upload_files/candidate_tracker/16439041879_Supriya Sugu 2023.pdf', NULL, '1', '2023-04-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-03 06:41:18', 1, '2023-04-03 06:50:33', 0, NULL, 1),
(12265, 'berlin joe l', '2', '8903338000', '', 'l.berlinjoe@hotmail.com', '2001-03-25', 22, '3', '2', 'leon joseph raj', 'daily Wages', 30000.00, 1, 0.00, 15000.00, 'Nagercoil', 'chennai', '2304040001', '', '1', 'upload_files/candidate_tracker/11786305301_Berlin Joe Resume.pdf', NULL, '1', '2023-04-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 08:56:47', 1, '2023-04-04 09:02:19', 0, NULL, 1),
(12266, 'Sankar Ram R', '13', '8870936438', '9994864992', 'rsram1998@gmail.com', '1998-01-23', 25, '3', '2', 'A.S. Raveendran', 'Accountant Officer', 100000.00, 0, 0.00, 30000.00, 'Aruppukottai', 'chennai', '2304040002', '', '1', 'upload_files/candidate_tracker/65635270444_SANKAR RAM RESUME 2.pdf', NULL, '1', '2023-04-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 10:53:53', 1, '2023-04-04 11:16:03', 0, NULL, 1),
(12267, 'Saravanan S', '13', '9344419119', '9655760995', 'saravanan74489@gmail.com', '1999-11-14', 23, '6', '2', 'Selvam S', 'Farmer', 25000.00, 2, 0.00, 18000.00, 'Arni', 'Navalur, Chennai', '2304040003', '', '1', 'upload_files/candidate_tracker/80597193741_Saravanans85-Resume (1).pdf', NULL, '1', '2023-04-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 10:54:27', 1, '2023-04-04 11:04:04', 0, NULL, 1),
(12268, 'Rajagururavi', '13', '9361928595', '9894915945', 'rajagururavi1998@gmail.com', '1998-01-29', 25, '6', '2', 'Ravi chandran', 'Business', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2304040004', '', '1', 'upload_files/candidate_tracker/74185611823_Rajagururavi Updated Resume (2) (1) (2).pdf', NULL, '1', '2023-04-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 11:05:30', 1, '2023-04-04 11:10:14', 0, NULL, 1),
(12269, 'Mukundan', '11', '9360706626', '7395916687', 'Mukundansuresh1996@gmail.com', '1996-12-02', 26, '3', '2', 'Vr suresh', 'Driver', 500000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2304040005', '', '2', 'upload_files/candidate_tracker/90811632670_mukundan cv,.pdf', NULL, '1', '2023-04-04', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', '1yr3m  of exp good communication sal expt high', '6', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 11:38:33', 1, '2023-04-04 11:43:39', 0, NULL, 1),
(12270, 'DINESH KUMAR G', '16', '7092446209', '', 'dineshkumarg5553@gmail.com', '2000-02-26', 23, '3', '2', 'Gangatharan k', 'Security', 15000.00, 1, 0.00, 20000.00, 'Arumbakkam, Chennai', 'Chennai', '2304040006', '', '1', 'upload_files/candidate_tracker/54555951444_DINESH KUMAR _G_RESUME_Analyst.pdf', NULL, '1', '2023-04-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication not open for our roles not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 11:40:25', 1, '2023-04-04 11:45:23', 0, NULL, 1),
(12271, 'Jakan P', '16', '8344465848', '', 'jakancsc2000@gmail.com', '2000-03-03', 23, '3', '2', 'Palani V', 'Tailor', 20000.00, 1, 0.00, 20000.00, 'Arumbakkam, Chennai', 'Arumbakkam, Chennai', '2304040007', '', '1', 'upload_files/candidate_tracker/64066201707_JAKAN P_ RESUME.pdf', NULL, '1', '2023-04-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 11:41:19', 1, '2023-04-04 11:49:30', 0, NULL, 1),
(12272, 'Karthik S', '13', '6369788360', '9884137622', 'karthiksiva1286@gmail.com', '2001-05-14', 21, '6', '2', 'Sivakumar', 'Carpenter', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2304040008', '', '1', 'upload_files/candidate_tracker/81057319282_Karthik CV.pdf', NULL, '1', '2023-04-05', 0, '', '', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-04 12:07:47', 85, '2023-04-05 07:45:29', 0, NULL, 1),
(12273, 'Kishorekumar', '31', '9791709765', '', 'kishorekumar19102@gmail.com', '2000-10-19', 22, '6', '2', 'Kannan', 'Business', 160000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2304040009', '', '1', 'upload_files/candidate_tracker/51084207135_Kishore kumar k.pdf', NULL, '1', '2023-04-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 12:17:17', 1, '2023-04-04 12:23:54', 0, NULL, 1),
(12274, 'Deepika.V', '13', '9786695870', '9655556328', 'deepipavi.24@gmail.com', '2000-06-24', 22, '3', '2', 'Venu Gopal.K', 'Milk Man', 15000.00, 2, 0.00, 20000.00, 'Vellore', 'Saidapet', '2304040010', '', '1', 'upload_files/candidate_tracker/6152393588_Deepika _ Eagle Infotech New.pdf', NULL, '1', '2023-04-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 12:41:51', 1, '2023-04-04 12:46:40', 0, NULL, 1),
(12275, 'Raman s', '13', '9600207938', '', 'Sivaraman8253@gmail.com', '2002-11-24', 20, '6', '2', 'Sivanathem.A', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Chengalbattu', 'Chengalbattu', '2304040011', '', '1', 'upload_files/candidate_tracker/16394589941_RAMAN S-1.pdf', NULL, '1', '2023-04-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 12:43:23', 1, '2023-04-04 01:04:34', 0, NULL, 1),
(12276, 'Bharathan', '2', '8248849911', '', 'bharathan655@gmail.com', '1995-01-28', 28, '6', '2', 'Bagyaraj', 'Real estate', 50000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2304040012', '', '1', 'upload_files/candidate_tracker/82224429960_bharathan resume.pdf', NULL, '1', '2023-04-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 12:55:56', 1, '2023-04-04 01:00:16', 0, NULL, 1),
(12277, 'Karthikeyan', '14', '9659764711', '6385897474', 'karthickrishna006@gmail.com', '2002-01-19', 21, '6', '2', 'Krishnan', 'Farmer', 6000.00, 1, 0.00, 12000.00, 'Sivaganga', 'Chennai', '2304040013', '', '1', 'upload_files/candidate_tracker/68299628451_karthikeyan (resume).pdf', NULL, '1', '2023-04-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC Need To Learn A Lot  Will Not Sustain And Handle Our Workroles Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 01:06:56', 1, '2023-04-04 01:09:52', 0, NULL, 1),
(12278, 'nirmal balaji t u', '13', '6381455279', '', 'nirmalbalaji224@gmail.com', '2001-09-22', 21, '3', '2', 'thukkaramulu b j', 'business', 60000.00, 1, 0.00, 20000.00, 'arakkonam ranipet', 'perambur chennai', '2304040014', '', '1', 'upload_files/candidate_tracker/91323334515_ResumeN.pdf', NULL, '1', '2023-04-04', 0, '', '4', '27', NULL, 0.00, '', '3', '2024-10-23', '1', 'Have 3 months Exp in IT with high Salary 5L but layoff from the company and now looking for oppourtnities and ready to come down with the stipend kindly check and let me know your interest', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-04 01:31:05', 1, '2023-04-04 01:37:49', 0, NULL, 1),
(12279, 'Shanmugam', '13', '8778220663', '9585208803', 'rockstarshanmugam1999@gmail.com', '1999-04-01', 24, '6', '2', 'Stalin', 'Cooking', 10000.00, 2, 0.00, 10000.00, 'No:32, kallurani, sivagangai, pin code:630 559', '23,1st pillayarkovil street,ekattuthangal,chennai', '2304050001', '', '1', 'upload_files/candidate_tracker/91198566970_shanmugam 1 (1).docx', NULL, '1', '2023-04-05', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-05 09:30:33', 85, '2023-04-06 09:58:39', 0, NULL, 1),
(12280, 'Sathees Kumar S', '32', '9987555667', '', 'Satheesparthi@gmail.com', '1995-02-28', 28, '3', '2', 'Sundararaj', 'Weaver', 5000.00, 1, 0.00, 23000.00, 'Srivilliputhur', 'Chennai', '2304050002', '', '1', 'upload_files/candidate_tracker/87990394133_Sathees Profile.pdf', NULL, '1', '2023-04-05', 0, '', '5', '86', NULL, 0.00, '', '0', NULL, '2', 'Not Satisfied', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-05 10:29:13', 1, '2023-04-05 11:08:46', 0, NULL, 1),
(12281, 'Aravinth M', '13', '7540053031', '9626049779', 'aravinthbca06@gmail.com', '2001-01-07', 22, '6', '2', 'Ananthi', 'Works at retail shop', 30000.00, 1, 0.00, 300000.00, 'Tambaram', 'Tambaram', '2304050003', '', '1', 'upload_files/candidate_tracker/13015175175_Aravinth+M_compressed+(1)+(1).pdf', NULL, '1', '2023-04-05', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Not Much Strong in  HTMLxxampCSS, JS... ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-05 10:38:18', 1, '2023-04-05 10:40:48', 0, NULL, 1),
(12282, 'Surya Mu', '13', '8778266185', '9894487844', 'mu.surya99@gmail.com', '1999-12-17', 23, '6', '2', 'Muthuselvan', 'Farmer', 10000.00, 0, 0.00, 15000.00, 'Mannargudi', 'Vadapalani,chennai', '2304050004', '', '1', 'upload_files/candidate_tracker/19396352152_surya101.pdf', NULL, '1', '2023-04-05', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not much good in prog lau. snr rejected by manikandan frontend', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-05 10:57:31', 1, '2023-04-05 11:10:04', 0, NULL, 1),
(12283, 'VIVEK M', '13', '9585094990', '9585854990', 'vivek050301@gmail.com', '2001-03-05', 22, '6', '2', 'MURUGESAN', 'Private staff', 60000.00, 2, 0.00, 400000.00, 'Palani', 'Chennai', '2304050005', '', '1', 'upload_files/candidate_tracker/96263372114_Vivek resume.pdf', NULL, '1', '2023-04-05', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'focusing on salary ...long run doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-05 11:15:34', 1, '2023-04-05 11:24:08', 0, NULL, 1),
(12284, 'Akash.p', '11', '8124988440', '7826832672', 'akashakash92953@gmail.com', '2001-07-08', 21, '6', '2', 'Panneerselvm', 'Hotel', 100000.00, 2, 0.00, 20000.00, 'Oragadam, kanchipuram.', 'Oragadam , industrial corridor, kanchipuram.', '2304050006', '', '1', 'upload_files/candidate_tracker/97152452259_Akash Resume.docx', NULL, '1', '2023-04-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-05 11:37:23', 85, '2023-04-05 05:00:19', 0, NULL, 1),
(12285, 'Rahul M', '13', '7826832672', '8438172234', 'rahulmahalingam01@gmail.com', '2001-03-12', 22, '6', '2', 'Mahalingam K', 'MTC Staff', 300000.00, 1, 0.00, 25000.00, 'Marai Malai Nagar', 'Marai Malai Nagar', '2304050007', '', '1', 'upload_files/candidate_tracker/9070049162_Rahul M (1).pdf', NULL, '1', '2023-04-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-05 11:38:16', 1, '2023-04-05 11:43:08', 0, NULL, 1),
(12286, 'Pratibha desai', '25', '9353254929', '8970502772', 'pratibhadesai029@gmail', '2002-07-18', 20, '1', '2', 'Krishna gouda Desai', 'Deploma', 100000.00, 0, 0.00, 16000.00, 'Sadalaga', 'Madiwala', '2304050008', '', '1', 'upload_files/candidate_tracker/8081128088_pdf_converter_202212295732.pdf', NULL, '1', '2023-04-05', 0, 'CA168', '1', '93', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-05 12:41:10', 1, '2023-04-05 12:53:30', 0, NULL, 1),
(12287, 'Rutuja Raju Maggennavar', '5', '9148557478', '8904253747', 'rutujamaggennavar@gamil.com', '2001-06-01', 21, '1', '2', 'Raju Maggennavar', 'Diploma', 100000.00, 0, 0.00, 16000.00, 'Old ratnakr bank shirguppi to', 'Madiwala', '2304050009', '', '1', 'upload_files/candidate_tracker/54297604040_raj.pdf', NULL, '1', '2023-04-05', 0, 'CA168', '5', '42', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Non performing in interview ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-05 12:41:29', 85, '2023-04-08 12:25:14', 0, NULL, 1),
(12288, 'Sarasraman', '13', '6374160983', '9597415629', 'sarath0826@yahoo.com', '1995-07-26', 27, '6', '2', 'Nambiraj', 'Shop keeper', 10000.00, 1, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2304050010', '', '1', 'upload_files/candidate_tracker/35767027872_Sarasraman\'s Resume (1).pdf', NULL, '1', '2023-04-05', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'have financial problems... he is not ok with  our txxampc', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-05 01:24:12', 1, '2023-04-05 01:30:02', 0, NULL, 1),
(12289, 'sundaraganapathy', '26', '7092674761', '', 'cpsundar1999@gmail.com', '1999-04-17', 23, '3', '2', 'C.P.P. Murthy', 'Boiler service', 5000.00, 2, 13500.00, 18500.00, 'Chennai', 'Chennai', '2304050011', '', '2', 'upload_files/candidate_tracker/82103112234_Resume - Sundaraganapathy CP.pdf', NULL, '1', '2023-04-05', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'No Communication Not Suit For Roles', '7', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-05 01:24:22', 1, '2023-04-05 01:30:56', 0, NULL, 1),
(12290, 'Vijayalakshmi G', '26', '9500043190', '9514761171', 'vijayalakshmim107@gmail.com', '1993-01-06', 30, '3', '2', 'Maniyammal', 'Homemaker', 25000.00, 1, 21000.00, 24000.00, 'Chennai', 'Chennai', '2304050012', '', '2', 'upload_files/candidate_tracker/83480250825_Vijayalakshmi G Resume.pdf', NULL, '1', '2023-04-05', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'no communication not suit for roles', '7', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-05 01:29:35', 1, '2023-04-05 01:33:09', 0, NULL, 1),
(12291, '', '0', '7358777782', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304060001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-06 12:20:39', 0, NULL, 0, NULL, 1),
(12292, 'Ashanth.M', '13', '6369270698', '', 'ashanthjan7@gmail.com', '2000-08-01', 22, '3', '2', 'Maria Epran', 'Fisherman', 20000.00, 2, 0.00, 20000.00, 'Kottilpadu,colachel,kanyakumari', 'Vijaya Nagar , Velachery', '2304060002', '', '1', 'upload_files/candidate_tracker/97648741086_Ashanth1.pdf', NULL, '1', '2023-04-06', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for our role....', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-06 10:09:23', 85, '2023-04-06 05:20:45', 0, NULL, 1),
(12293, 'Naveen Kumar.A', '2', '8608270670', '', 'naveenthiwary20@gmail.com', '1996-07-20', 26, '6', '2', 'Parent', 'Driving', 40000.00, 3, 0.00, 20000.00, 'Tiruchirapalli', 'Tiruchirapalli', '2304060003', '', '1', 'upload_files/candidate_tracker/93577140561_Naveen_web_resume.pdf', NULL, '1', '2023-04-06', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'from guvi ..have basic knowledge...sal expt high long run doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-06 10:22:37', 1, '2023-04-06 10:46:03', 0, NULL, 1),
(12294, 'Raj Kumar', '13', '6369035051', '', 'rajappu1435@gmail.com', '1999-11-06', 23, '1', '2', 'Parent', 'Leather company', 72000.00, 3, 0.00, 23000.00, 'chennai', 'chennai', '2304060004', '', '1', 'upload_files/candidate_tracker/27706604166_rajkumar resume (1).pdf', NULL, '1', '2023-04-06', 0, 'job', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'have basic knowledge.. focusing on sal not ok with our txxampc', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-06 10:28:40', 1, '2023-04-06 10:43:48', 0, NULL, 1),
(12295, 'Aravind C', '13', '7339438825', '', 'cuaravind2001@gmail.com', '2001-07-22', 21, '1', '2', 'Chandramohan', 'Former', 15000.00, 2, 8.00, 8.00, 'PERAVURANI/THANJAVUR', 'PERAVURANI/THANJAVUR', '2304060005', '', '2', 'upload_files/candidate_tracker/31545339912_Aravind', NULL, '1', '2023-04-06', 0, 'job', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 3m of exp in it  with 8lpa..expt  same', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-06 10:59:44', 85, '2023-04-08 06:24:36', 0, NULL, 1),
(12296, 'GOPINATH ELANGO', '13', '9345247638', '8760879533', 'gopinov1999@gmail.com', '1999-11-15', 23, '6', '2', 'ELANGO', 'Fisherman', 8000.00, 2, 252000.00, 350000.00, 'Chennai', 'Chennai', '2304060006', '', '2', 'upload_files/candidate_tracker/15982795879_Gopinath 1.8 years technical suport updated.pdf', NULL, '1', '2023-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '2nd round technical reject not suitable manikandan interviewed', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-06 11:30:55', 1, '2023-04-06 11:53:04', 0, NULL, 1),
(12297, 'Gokul SS', '6', '8825804660', '8940109736', 'gokulsavg@gmail.com', '2000-07-30', 22, '1', '2', 'Somasudharam S', 'Farmer', 15000.00, 1, 0.00, 17000.00, 'Salem', 'Salem', '2304060007', '', '1', 'upload_files/candidate_tracker/13750565334_gokul s s resume. (1).pdf', NULL, '1', '2023-04-06', 0, 'P1066', '3', '59', '2023-04-13', 185000.00, '', '4', '2023-08-14', '2', 'Selected for Charles Team in Staff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-06 11:44:11', 60, '2023-04-12 05:46:53', 0, NULL, 1),
(12298, 'Raju S', '6', '8838635544', '', 'rajusrinivasan070@gmail.com', '2000-07-19', 22, '1', '2', 'Srinivasan R', 'Farmer', 20000.00, 3, 0.00, 17000.00, 'Neyveli', 'Sholiganallur', '2304060008', '', '1', 'upload_files/candidate_tracker/28569986480_TapScanner 03-01-2023-12.30.pdf', NULL, '1', '2023-04-06', 0, 'P1066', '5', '16', NULL, 0.00, '', '0', NULL, '2', 'not fit for sales', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-06 11:44:41', 1, '2023-04-06 12:08:52', 0, NULL, 1),
(12299, 'Sowmya', '13', '9385448432', '', 'saisaran2035@gmail.com', '2000-01-17', 23, '6', '2', 'S. annnadurai', 'Welding supervisor', 14000.00, 1, 0.00, 15000.00, 'Nagercoil', 'Chennai', '2304060009', '', '1', 'upload_files/candidate_tracker/19699075201_sowmya cv1.docx', NULL, '1', '2023-04-06', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'holding offer for 15k  but not joined because of sal .. long run doubts..', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-06 11:46:01', 1, '2023-04-06 12:15:14', 0, NULL, 1),
(12300, 'rexarockiyaraj', '6', '9788684517', '', 'rexarockiyaraj@gmail.com', '1996-02-21', 27, '1', '2', 'kumar', 'bank', 50000.00, 1, 15000.00, 23000.00, 'mettur salem', 'kodambakkam chennai', '2304060010', '', '2', 'upload_files/candidate_tracker/7672511560_Rexresume1.pdf', NULL, '1', '2023-04-06', 0, 'p1426', '3', '59', '2023-04-10', 204000.00, '', '5', '1970-01-01', '1', 'Selected for Babu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-06 12:51:46', 60, '2023-04-08 05:39:57', 0, NULL, 1),
(12301, 'Subetha A', '6', '8778036042', '', 'mailforsubetha@gmail.com', '1999-10-25', 23, '1', '2', 'Arumainayagam', 'Threater', 40000.00, 2, 13000.00, 23000.00, 'K k nagar Chennai', 'K k nagar Chennai', '2304060011', '', '2', 'upload_files/candidate_tracker/7707188672_resume.pdf', NULL, '1', '2023-04-06', 0, 'P1422', '3', '59', '2023-04-12', 204000.00, '', '', '2023-04-20', '1', 'Selected for Suthagar Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-06 12:56:48', 60, '2023-04-08 05:40:27', 0, NULL, 1),
(12302, 'Sath keerthi teja Randhi', '11', '8008223435', '', 'teja.rsk@gmail.com', '2008-04-06', 0, '2', '2', 'Ravi satya siva srinivas', 'Business', 400000.00, 1, 29000.00, 20000.00, 'Rajahmundry', 'Rajahmundry', '2304060012', '1', '2', 'upload_files/candidate_tracker/56069300449_Teja%20CV%202.docx', NULL, '1', '2023-04-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-06 02:37:22', 85, '2023-04-08 06:19:43', 0, NULL, 1),
(12303, 'AJAI KUMAR V', '13', '9489953255', '', 'ajaikumarva@gmail.com', '1998-04-10', 24, '3', '2', 'S Vishnu Kumar', 'Coolie', 8000.00, 1, 0.00, 15000.00, 'Kanyakumari', 'Chennai', '2304060013', '', '1', 'upload_files/candidate_tracker/37944488328_resumeAj.pdf', NULL, '1', '2023-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC Not ready to relocate will not sustain not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-06 04:28:36', 1, '2023-04-06 04:31:07', 0, NULL, 1),
(12304, 'A udaykumar', '11', '9952077719', '9791164043', 'draganapple912@gmail.com', '1996-03-21', 27, '4', '2', 'E aruldoss', 'Maintanence', 160000.00, 2, 0.00, 17000.00, '18/59 Gopalapuram 1st Street tvk Nagar Chennai 82', '18/59 Gopalapuram 1st Street Tvk Nagar Chennai 82', '2304060014', '', '1', 'upload_files/candidate_tracker/63638579427_Resume_01_12_2022_02_50_15_pm.pdf', NULL, '1', '2023-04-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-06 04:31:11', 1, '2023-04-06 04:37:15', 0, NULL, 1),
(12305, 'mohamed sharhan m.s', '11', '8825985663', '', 'sharhansha99@gmail.com', '2001-09-30', 21, '4', '2', 'mohamed sathik a.m', 'driver', 50000.00, 2, 0.00, 20000.00, 'sirkali', 'tambaram', '2304060015', '', '1', 'upload_files/candidate_tracker/4310837627_MohamedSharhanM.S Resume.pdf', NULL, '1', '2023-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for Recruitment Checked for MIS too but not much suitable', '6', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-06 04:42:39', 1, '2023-04-07 11:57:19', 0, NULL, 1),
(12306, '', '0', '9025187850', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304060016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-06 04:52:52', 0, NULL, 0, NULL, 1),
(12307, 'R .Maheswari', '11', '7348092178', '', 'mahi25092k@gmail.com', '2000-09-25', 22, '2', '2', 'G.Rajasekar', 'Non IT recruitment position zZ', 1500000.00, 1, 17000.00, 16000.00, 'Old washermenpet', 'Old washermenpet', '2304060017', '1', '2', 'upload_files/candidate_tracker/24604624057_Maheswari Resume Real R-1.docx', NULL, '1', '2023-04-07', 15, '', '3', '59', '2023-04-27', 180000.00, '', '', '1970-01-01', '2', 'selected for HR profile need to come back wiht her confirmation 15 days notice', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-06 05:26:29', 85, '2023-04-07 08:10:32', 0, NULL, 1),
(12308, '', '0', '7358092178', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304060018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-06 05:43:51', 0, NULL, 0, NULL, 1),
(12309, 'Hariharan k', '4', '6383736681', '9946300349', 'hariharanksu@gmail.com', '2000-08-30', 22, '2', '2', 'Krishnan', 'Supervisor', 25000.00, 1, 14000.00, 18000.00, 'Trichy', 'Chennai', '2304060019', '1', '2', 'upload_files/candidate_tracker/95744743797_Resume (2).pdf', NULL, '1', '2023-04-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Sales no Communication not open for other Profiles too', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-06 07:56:10', 85, '2023-04-07 08:11:10', 0, NULL, 1),
(12310, 'Yuvansankar s', '11', '7200280579', '', 'Yuvansankar.21012001@gmail.com', '2001-01-21', 22, '3', '2', 'Sivasankaran m', 'Admin', 30000.00, 1, 0.00, 20000.00, 'Pallikaranai', 'Pallikaranai', '2304060020', '', '1', 'upload_files/candidate_tracker/5379775670_YUVANSANKAR_2021_BS.c_java.pdf', NULL, '1', '2023-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic ideas in recruitment No Communicaiton not suitable\n', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-06 07:57:59', 1, '2023-04-07 10:08:01', 0, NULL, 1),
(12311, 'MANIKANDAN T', '30', '9994948693', '9047043003', 'manikarthikmanitpvmkarthik@gmail.com', '1997-06-01', 25, '6', '2', 'Thandeeswaran m', 'Foreign Employe', 200000.00, 1, 0.00, 20000.00, 'Thiruppuvanam', 'Thiruppuvanam', '2304070001', '', '1', 'upload_files/candidate_tracker/49887838086_manikandan resume.pdf', NULL, '1', '2023-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to learn a lot need to check with family on TxxampC ', '9', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-07 10:02:20', 1, '2023-04-07 10:06:20', 0, NULL, 1),
(12312, 'charan', '23', '9666425690', '', 'charanpspk02657@gmail.com', '2002-02-17', 21, '1', '2', 'ramesh', 'Mother', 10000.00, 4, 0.00, 20000.00, 'kollagunta', 'chennai', '2304070002', '', '1', 'upload_files/candidate_tracker/39299332658_resume.pdf', NULL, '1', '2023-04-07', 0, 'jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'came along with his brother fresher need to learn a lot not much comfort in TxxampC', '2', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-07 10:55:14', 1, '2023-04-07 11:08:57', 0, NULL, 1),
(12313, 'p karthik', '13', '7893925848', '', 'pachapakarthik46@gmail.com', '1999-12-12', 23, '1', '2', 'p swanalatha', 'Mother', 10000.00, 4, 0.00, 18000.00, 'kollagunta', 'kollagunta', '2304070003', '', '1', 'upload_files/candidate_tracker/75836604426_Full Stack.docx', NULL, '1', '2023-04-07', 0, 'jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC looking much in bangalore location will not sustain in our roeles', '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-07 10:56:11', 1, '2023-04-07 11:20:12', 0, NULL, 1),
(12314, 'Jazeer Muhammad', '26', '8220236431', '', 'jazeer.hk@gmail.com', '2001-12-24', 21, '2', '2', 'Hassan Kuthoos', 'Abroad', 15000.00, 1, 0.00, 18000.00, 'Thiruvarur, Tamil Nadu', 'Chennai, Tamil Nadu', '2304070004', '1', '1', 'upload_files/candidate_tracker/20824329096_Jazeer Muhammad Resume.pdf', NULL, '1', '2023-04-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to come back with the confirmation on TxxampC can be trained in our MIS Herash 2nd interview done', '7', '2', '', '1', '8', '', '2', '2023-04-10', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-07 11:00:48', 85, '2023-04-08 10:40:07', 0, NULL, 1),
(12315, 'Hariharan s', '11', '8825419689', '7305939689', 'harihararajan123456@gmail.com', '1999-12-25', 23, '4', '2', 'Selvarajan t', 'Secretary at kcp society', 400999.00, 0, 0.00, 500000.00, 'Chennai', 'Chennai', '2304070005', '', '1', 'upload_files/candidate_tracker/51666561306_HARIHARAN S 1 pdf.pdf', NULL, '1', '2023-04-07', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'interviewed by priyatharisini..\nfeedback: sal expt 5lpa .. long run doubts', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-07 11:01:02', 1, '2023-04-07 01:09:20', 0, NULL, 1),
(12316, 'Baikuntha Panda', '11', '7894081859', '', 'hi.baikunthapanda1998@gmail.com', '2008-04-07', 0, '3', '2', 'Kedarnath Panda', 'Farmer', 10000.00, 1, 380000.00, 380000.00, 'Odisha', 'Chennai', '2304070006', '', '2', 'upload_files/candidate_tracker/56346284298_Panda CV24.docx', NULL, '1', '2023-04-07', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Round reject by herash not suitable', '6', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-07 12:40:17', 1, '2023-04-07 12:47:55', 0, NULL, 1),
(12317, 'Karthick', '6', '8148805744', '7305460416', 'mr.kk9614@gmail.com', '1995-07-28', 27, '4', '1', 'Bennetta', 'Home maler', 300000.00, 2, 24000.00, 28000.00, 'Chennai', 'Chennai', '2304070007', '', '2', 'upload_files/candidate_tracker/6235130308_DOC-resume.docx', NULL, '1', '2023-04-07', 14, '', '4', '44', NULL, 0.00, '', '0', NULL, '1', '5050 Profile have exp in sales but in credit card kindly check andlet me know your inputs', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-07 12:42:15', 1, '2023-04-07 12:47:24', 0, NULL, 1),
(12318, 'Suresh', '13', '9080903748', '', 'rajsuresh348@gmail.com', '1998-06-27', 24, '6', '2', 'Kalaivani', 'Farmer', 12000.00, 1, 0.00, 24000.00, 'Tindivanam', 'Velachery', '2304070008', '', '1', 'upload_files/candidate_tracker/84069730446_Suresh_RESUME (1).pdf', NULL, '1', '2023-04-07', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'should come for F2f if ok with TxxampC ', '2', '1', '0', '1', '8', '0', '2', '2023-04-10', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-07 12:57:09', 1, '2023-04-07 01:04:02', 0, NULL, 1),
(12319, 'Sudharsanann K N', '13', '6385536352', '', 'knsudhar0@gmail.com', '2000-01-27', 23, '6', '2', 'Nagendran', 'Veevar', 30000.00, 2, 0.00, 30000.00, 'Ramanathapuram', 'Tambaram sanatorium', '2304070009', '', '1', 'upload_files/candidate_tracker/10047664291_SUDHARSANAN K N.pdf', NULL, '1', '2023-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance not open fr TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-07 12:58:07', 1, '2023-04-07 01:06:13', 0, NULL, 1),
(12320, 'Vijay V', '13', '9840694411', '', 'vijayvidyadharan4803@gmail.com', '1999-11-24', 23, '1', '2', 'K V Rajeswari', 'Sound engineer', 18000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2304070010', '', '1', 'upload_files/candidate_tracker/72081702345_VIJAY V.pdf', NULL, '1', '2023-04-07', 0, 'JOBS', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-07 01:21:09', 1, '2023-04-07 01:25:35', 0, NULL, 1),
(12321, 'Alla Srinivasulu', '13', '8790012618', '', 'srinivasalla109@gmail.com', '1999-11-16', 23, '6', '2', 'Alla venkateshwarulu', 'Fruits seller', 10000.00, 2, 0.00, 40000.00, 'Nellore', 'Nellore', '2304070011', '', '1', 'upload_files/candidate_tracker/28309433721_CIT-Srinivasulu-A.pdf', NULL, '1', '2023-04-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-07 01:34:37', 1, '2023-04-07 01:40:47', 0, NULL, 1),
(12322, '', '0', '7377683809', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304070012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-07 02:39:28', 0, NULL, 0, NULL, 1),
(12323, 'jayasuriyan', '13', '9176999892', '8072238144', 'jayasuriya892@gmail.com', '2008-04-07', 0, '3', '2', 'Sivakumar', 'Assistant security Officer at anna University', 30000.00, 0, 400000.00, 400000.00, 'velachery ,chennai', 'Velachery, chennai', '2304070013', '', '2', 'upload_files/candidate_tracker/42199824779_Jai_resume-1.pdf', NULL, '1', '2023-04-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-07 03:44:38', 1, '2023-04-07 03:49:46', 0, NULL, 1),
(12324, 'Sanjai G', '13', '7338702810', '8072161575', 'sanjai.g1407@gmail.com', '2000-07-14', 22, '6', '2', 'Chella muthu', 'Full stack developer', 500000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2304080001', '', '1', 'upload_files/candidate_tracker/77159409824_Sanjai G-1.pdf', NULL, '1', '2023-04-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher have basic skills in UIUX not open for TxxampC if he comes back let us try his brother in flutter working', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-08 10:39:50', 85, '2023-04-08 11:03:53', 0, NULL, 1),
(12325, 'Shamini .s.k', '13', '6379689119', '', 'Shaminisk123@gmail.com', '2001-11-28', 21, '6', '2', 'Sekhar.c', 'Milk vendor', 15000.00, 2, 0.00, 10000.00, 'Nagercoil', 'Kodambakkam', '2304080002', '', '1', 'upload_files/candidate_tracker/74050690727_12.pdf', NULL, '1', '2023-04-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Yet to complete her graduation looking for Python will not sustain and she is an athlete', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-08 12:17:46', 1, '2023-04-08 12:35:58', 0, NULL, 1),
(12326, 'Abishek s', '5', '8667471106', '9940685623', 'abisheksri04@gmail.com', '1996-10-04', 0, '2', '2', 'Gajalakshmi s', 'Housewife', 35000.00, 1, 25200.00, 29000.00, 'Chennai', 'Chennai', '2304080003', '1', '2', 'upload_files/candidate_tracker/29479791915_AbishekResume2.pdf', NULL, '1', '2023-04-08', 0, '', '3', '59', '2023-04-11', 345696.00, '', '', '2023-04-19', '1', 'Selected for Santhosh Team in Staff Role, Not interviewed by Sriram as he was on a long leave but discussed and given him joining', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-08 12:26:29', 60, '2023-04-10 04:17:04', 0, NULL, 1),
(12327, 'Vasanth Kumar', '11', '7358664516', '9360059939', 'vasanthkumar9854@gmail.com', '1998-04-01', 25, '1', '2', 'S Durai raj', 'Auto driver', 45900.00, 0, 0.00, 23000.00, 'Redhills', 'Redhills', '2304080004', '', '2', 'upload_files/candidate_tracker/82336440459_1628574579292Resume_D Vk Don.docx', NULL, '1', '2023-04-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication not suitable for our other roles too', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-08 02:39:37', 1, '2023-04-08 02:58:32', 0, NULL, 1),
(12328, 'Balaji parthipan', '5', '7358269167', '8608499857', 'balaparthipanips@gmail.com', '1998-05-25', 24, '2', '2', 'Parthipan G', 'Post man', 18000.00, 1, 20000.00, 25000.00, '21/4 velnagar first street, adambakkam, chennai', '21/4 Velnagar First Street, Adambakkam,chennai', '2304080005', '1', '2', 'upload_files/candidate_tracker/91946421244_Balaji parthipan p (1).pdf', NULL, '1', '2023-04-08', 5, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-08 03:11:23', 85, '2023-04-08 04:16:06', 0, NULL, 1),
(12329, 'Gomathi', '33', '9840278468', '', 'nickysri1922@gmail.com', '1997-10-22', 25, '2', '2', 'Parent', 'Rental cycle repairing shop', 35000.00, 1, 2.40, 3.25, 'Chennai', 'Chennai', '2304090001', '1', '2', 'upload_files/candidate_tracker/98446478976_Resume-1.pdf', NULL, '1', '2023-04-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Saturday no basic ideas in the recruitment high Salary Exp', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-09 10:09:59', 85, '2023-04-11 11:30:39', 0, NULL, 1),
(12330, '', '0', '9578620955', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304100001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-10 09:40:37', 0, NULL, 0, NULL, 1),
(12331, 'R GANESH', '4', '8778802574', '', 'Gana361996@gmail.co', '1996-06-03', 26, '2', '2', 'Hemavathy', 'Working book shop', 15000.00, 1, 15000.00, 15000.00, 'Thayar shaibi Street', 'Thayar sahib Street Ellis road', '2304100002', '1', '2', 'upload_files/candidate_tracker/50928461971_Ganesh RESUME.docx', NULL, '1', '2023-04-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Sales Callings looking much for inbound calling process no Pronunciation   not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-10 10:01:56', 85, '2023-04-10 03:34:29', 0, NULL, 1),
(12332, 'Bhavani', '13', '9588620855', '', 'bhavanipandiyan2001@gmail.com', '2001-12-05', 21, '6', '2', 'Pandiyan', 'Farming', 20000.00, 2, 0.00, 15000.00, 'Ulundurpet', 'Chennai', '2304100003', '', '1', 'upload_files/candidate_tracker/89836164478_bhavani resume.pdf', NULL, '1', '2023-04-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Yet to complete her graduation candidate is in final semester Pressure handling doubts will not sustain for long not suitable', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-10 10:19:47', 1, '2023-04-10 10:22:57', 0, NULL, 1),
(12333, 'Yukesh P', '33', '9176234518', '', 'yukesh2018srm@gmail.com', '2000-10-04', 22, '2', '2', 'Palani', 'Technician', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2304100004', '1', '1', 'upload_files/candidate_tracker/85657860578_Yukesh_resume0.pdf', NULL, '1', '2023-04-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-10 10:53:03', 85, '2023-04-11 10:34:12', 0, NULL, 1),
(12334, 'imayavarman', '4', '9344572185', '', 'imayaniviimaya143@gmail.com', '2000-11-26', 22, '2', '2', 'Daniel', 'SSLC', 100000.00, 1, 15000.00, 18000.00, '28/13 4th Street Ambedkar Nagar korukkupet', '28/13 4th Street Ambedkar Nagar korukkupet', '2304100005', '1', '2', 'upload_files/candidate_tracker/75662958329_DOC-imaya.docx', NULL, '1', '2023-04-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Non Voice Process No Communication long career gap he was without work for 3+ yrs will not sustain and not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-10 11:18:50', 85, '2023-04-10 03:35:03', 0, NULL, 1),
(12335, 'Kanmani', '16', '7200961811', '', 'kanmanianbu97@gmail.com', '1997-05-22', 25, '2', '2', 'Balraj', 'Site supervisor', 300000.00, 1, 204000.00, 300000.00, 'Kattunannar koil', 'Thiruvanmiyur', '2304100006', '1', '2', 'upload_files/candidate_tracker/32082880994_KANMANI resume new.pdf', NULL, '1', '2023-04-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-10 11:25:28', 60, '2023-04-11 07:05:00', 0, NULL, 1),
(12336, 'Harini K', '13', '9361565667', '9629805774', 'hari.nikal.24@gmail.com', '2002-02-24', 0, '6', '2', 'A Kalaivaanan', 'Clerk', 12000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2304100007', '', '1', 'upload_files/candidate_tracker/96173237496_Resume.pdf', NULL, '1', '2023-04-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Too long Distance Already referred in HP and the process is going on  No ideas in JS will not sustain and not suitable\n', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-10 11:33:11', 1, '2023-04-10 11:36:58', 0, NULL, 1),
(12337, 'amrutha varshini k r', '16', '9087691484', '', 'amrutha_krk@hotmailcom', '1994-04-15', 28, '2', '1', 'h hari krishnan', 'private employee', 50000.00, 0, 390000.00, 420000.00, 'chennai', 'chennai', '2304100008', '1', '2', 'upload_files/candidate_tracker/79662613840_Amruthavarshini KR- order management.docx', NULL, '1', '2023-04-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '4+yrs Exp in Client Coordination with tier level companies not sure on sustainability in our roles salary exp is very high  should have a hold min Exp is 4.2 LPA', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-10 12:28:09', 101, '2023-04-11 04:54:02', 0, NULL, 1),
(12338, '', '0', '9003271938', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304100009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-10 12:46:53', 0, NULL, 0, NULL, 1),
(12339, 'R. Preethi', '13', '7339199895', '6382988850', 'preethirajavel06@gmail.com', '2001-05-26', 21, '6', '2', 'R. Rajavel', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Cuddalore', 'Cuddalore', '2304100010', '', '1', 'upload_files/candidate_tracker/79378655983_Preethi Resume.pdf', NULL, '1', '2023-04-10', 0, '', '3', '59', '2023-04-17', 120000.00, '', '', '1970-01-01', '2', 'Selected for Node Tamilmani Team with Stipend 3 months 6K then 2months 8K then overall 3yrs SA ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-10 12:48:56', 85, '2023-04-10 01:05:33', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12340, 'Surya E', '33', '7358587533', '7094644717', 'Suryasurya735858@gmail.com', '2000-12-03', 22, '2', '2', 'Ellumalai M', 'Product manager', 25000.00, 1, 12000.00, 18000.00, 'Chennai', 'Chennai', '2304100011', '1', '2', 'upload_files/candidate_tracker/67704733422_Resume.pdf', NULL, '1', '2023-04-12', 7, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic knowledge in MF,Too long distance will not handle our roles 30 days notice', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-10 01:14:17', 101, '2023-04-12 10:15:31', 0, NULL, 1),
(12341, 'Sivalingam', '5', '8072231898', '7092423095', 'Sivaelumalai2023@gmail.com', '1999-11-06', 23, '1', '2', 'Elumalai', 'Painter', 10000.00, 2, 23000.00, 28000.00, 'Chennai', 'Chennai', '2304100012', '', '2', 'upload_files/candidate_tracker/88529581929_CV_2023040514105231.pdf', NULL, '1', '2023-04-10', 0, '55580', '3', '59', '2023-04-13', 333696.00, '', '', '1970-01-01', '1', 'Selected for GK sir Team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-10 02:00:18', 60, '2023-04-10 06:03:20', 0, NULL, 1),
(12342, '', '0', '7305338361', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304100013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-10 02:08:13', 0, NULL, 0, NULL, 1),
(12343, 'Dhanush', '5', '7358734158', '8012227401', 'dhanush7358vr@gmail.com', '2000-02-02', 23, '1', '2', 'Kalaivani', 'House wife', 10000.00, 1, 25000.00, 28000.00, 'CHENNAI', 'CHENNAI', '2304100014', '', '2', 'upload_files/candidate_tracker/22555181970_Dhanush Resume .pdf', NULL, '1', '2023-04-10', 0, '55580', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interest to sell insurance ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-10 02:30:59', 60, '2023-04-10 06:03:34', 0, NULL, 1),
(12344, 'Sreenath S', '31', '9962263984', '', 'sreenath0492001@gmail.com', '2001-09-04', 21, '2', '2', 'Sathyakumar', 'Employee ITC', 18000.00, 1, 300000.00, 300000.00, 'Chennai', 'Chennai', '2304100015', '1', '2', 'upload_files/candidate_tracker/21353512410_Sreenath Resume1.pdf', NULL, '1', '2023-04-11', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No ideas in JS Not much comfort in TxxampC not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-10 04:40:57', 101, '2023-04-11 04:54:13', 0, NULL, 1),
(12345, 'Ram Kumar', '4', '9698255381', '', 'ramkumarcricket97@gmail.com', '1997-02-28', 26, '4', '2', 'Saravanan', 'Employer', 25000.00, 2, 0.00, 20000.00, 'Karaikudi', 'Karaikudi', '2304100016', '', '1', 'upload_files/candidate_tracker/99106431057_Ramkumar 0023.pdf', NULL, '1', '2023-04-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Sales Calling and Cant handle the work pressure will not sustain and not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-10 04:59:43', 1, '2023-04-19 12:46:35', 0, NULL, 1),
(12346, 'SARANYA K', '11', '6374507812', '', 'saranya.k.kumaresan@gmail.com', '2001-02-26', 22, '2', '2', 'Kumaresan', 'Mechanic', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2304100017', '1', '1', 'upload_files/candidate_tracker/10838576759_saruresumenew.pdf', NULL, '1', '2023-04-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-10 05:04:57', 85, '2023-04-11 06:24:46', 0, NULL, 1),
(12347, 'Priyadharsini B', '11', '7358558695', '', 'priya123dharsini456@gmail.com', '2000-06-10', 22, '2', '2', 'RK Bakthakumaran', 'Business', 30000.00, 1, 0.00, 20000.00, 'Madhavaram , Chennai', 'Madhavaram, Chennai', '2304100018', '1', '1', 'upload_files/candidate_tracker/27281757549_priyadharsini resume - Compressed-Copy-1.pdf', NULL, '1', '2023-04-12', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no communication xxamp understanding ..long distance', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-10 06:38:04', 101, '2023-04-12 11:01:28', 0, NULL, 1),
(12348, 'Manikandan', '4', '8428575820', '', 'kamarajmani44@gmail.com', '1999-03-04', 24, '3', '2', 'Kamaraj', 'Daily wages', 7000.00, 2, 0.00, 25000.00, 'Virudhunagar', 'Chengalpattu', '2304100019', '', '2', 'upload_files/candidate_tracker/11816022021_manikandan biodata12.docx', NULL, '1', '2023-04-12', 30, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'not suit for roles..', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-10 07:10:44', 1, '2023-04-12 11:55:47', 0, NULL, 1),
(12349, 'manoj .j', '16', '9962404494', '9841549929', 'mbenny333@gmail.com', '2000-08-01', 22, '2', '2', 'anitha', 'housewife', 15000.00, 1, 15000.00, 19000.00, 'anna nagar f block', 'anna nagar', '2304100020', '1', '2', 'upload_files/candidate_tracker/37452355684_Manoj J.docx', NULL, '1', '2023-04-11', 2, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile Interviewed by Gokul in  the Final round not much suits but if he is ok for 1.8 LPA may try need to check for other Profiles later we can decide', '3', '1', '', '1', '8', '', '2', '2023-04-17', '3', '7', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-10 07:23:56', 101, '2023-04-11 07:03:10', 0, NULL, 1),
(12350, 'Sebastin Raj.C', '11', '9080120913', '', 'Sebastinraj2000@gmail.com', '2000-10-10', 22, '2', '2', 'Charles (father)', 'Driver', 35000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2304110001', '1', '1', 'upload_files/candidate_tracker/44004870998_Resume.PDF', NULL, '1', '2023-04-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Sales Looking for Recruitment but no skills in recruitment long career Gap  will not sustain not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-11 07:31:58', 101, '2023-04-11 04:56:18', 0, NULL, 1),
(12351, '', '0', '8667043624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304110002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-11 10:27:17', 0, NULL, 0, NULL, 1),
(12352, 'Sharansg', '23', '8056272677', '', 'Sgsharan199_@gmail.com', '1996-08-10', 26, '6', '2', 'R subramanian', 'Air India', 50000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2304110003', '', '1', 'upload_files/candidate_tracker/9992690711_pdf_converter_202304110139.pdf', NULL, '1', '2023-04-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much family need Salary Exp is high Will not sustain ', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-11 10:47:03', 1, '2023-04-11 11:06:03', 0, NULL, 1),
(12353, 'Eby Isaac Emmanuel', '23', '7448649681', '', 'ebyisaac.r.e@gmail.com', '2001-04-05', 22, '6', '2', 'Emmanuel', 'Farming', 35000.00, 1, 0.00, 25000.00, 'Kumily', 'Chennai', '2304110004', '', '1', 'upload_files/candidate_tracker/34218665680_Resume-1.pdf', NULL, '1', '2023-04-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Designing Skills  seems to be settled family not much importance he too having a business mindset will not sustain in a long with us not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-11 10:47:08', 1, '2023-04-11 10:54:24', 0, NULL, 1),
(12354, 'R. KAILASH KUMAR', '13', '7395889129', '', 'rkailashkumar1797@gmail.com', '1997-07-02', 25, '6', '2', 'K.Ramalingam', 'Farmer', 12.00, 0, 0.00, 2.50, 'PG, Hostel, perumbakkam', 'PG, Hostel, perumbakkam', '2304110005', '', '1', 'upload_files/candidate_tracker/2828663819_Kailash Resume-3.pdf', NULL, '1', '2023-04-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Basics Will not handle our work Pressure not suitable for our roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-11 11:00:45', 60, '2023-04-11 07:03:38', 0, NULL, 1),
(12355, 'Agnes Treesa J', '13', '7538812473', '9600930293', 'rjagnesjasmine2001@gmail.com', '2001-05-12', 21, '2', '2', 'Rosy J', 'Daily wages', 80000.00, 1, 0.00, 3.50, 'Kallakurichi', 'Tambaram,Chennai.', '2304110006', '1', '1', 'upload_files/candidate_tracker/62289748276_Agnes_CV_Jan_4_2023 (1) (3).pdf', NULL, '1', '2023-04-11', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need time to check with her family and confirm not much strong with the basics interested to learn can give a try', '2', '1', '', '1', '8', '', '2', '2023-04-17', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-11 11:22:47', 85, '2023-04-11 05:00:01', 0, NULL, 1),
(12356, 'r.janakiraman', '23', '9677190978', '9677209379', 'johnnysangeeetha2411@gmail.com', '1998-11-24', 24, '2', '2', 'm.ravi', 'building contracter', 30000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2304110007', '26', '1', 'upload_files/candidate_tracker/49514814963_RESUME OF R. JANAKIRAMAN.pdf', NULL, '1', '2023-04-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much with the Skills not much comfort inTxxampC will not sustain and handle our work Pressure', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-11 11:25:15', 1, '2023-04-11 11:32:03', 0, NULL, 1),
(12357, 'Pandivel G', '5', '8940431392', '6369261841', 'pandivelganesh1994@gmail.com', '1993-12-12', 29, '2', '2', 'Vasanthi G', 'Sales', 23000.00, 3, 23000.00, 32000.00, 'Aranthangi', 'Porur', '2304110008', '1', '2', 'upload_files/candidate_tracker/58753449949_Pandivel_Ganesh_Resume_Phonepe.pdf', NULL, '1', '2023-04-11', 0, '', '3', '59', '2023-04-19', 345696.00, '', '', '2023-04-20', '1', 'Selected for GK sir team in Staff Role', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-04-11 01:43:05', 60, '2023-04-18 05:51:45', 0, NULL, 1),
(12358, 'Shajitha Banu A', '5', '8939580188', '6379511037', 'shajithashaji340@gmail.com', '1998-09-06', 24, '2', '2', 'Abdul Samad', 'Stationary Shop', 25000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2304110009', '1', '2', 'upload_files/candidate_tracker/92034197274_resume latest-.pdf', NULL, '1', '2023-04-12', 0, '', '3', '59', '2023-04-24', 214740.00, '', '5', '1970-01-01', '2', 'Selected for Karthika Team in Consultant Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-11 02:52:30', 60, '2023-04-22 12:19:14', 0, NULL, 1),
(12359, '', '0', '8825616108', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304110010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-11 04:21:26', 0, NULL, 0, NULL, 1),
(12360, '', '0', '8825616107', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304110011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-11 04:24:24', 0, NULL, 0, NULL, 1),
(12361, 'Bhasharath Mohamed', '11', '9342900499', '', 'bhasharathmohamed@gmail.com', '1999-02-04', 24, '2', '2', 'Mother', 'School teacher', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai Tambaram', '2304110012', '1', '1', 'upload_files/candidate_tracker/52612803189_Bhasharath Mohamed -Lapiz.docx', NULL, '1', '2023-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for HR profile have exp in sales and haing an final round interview with Skilllync tomorrow mostly he preferred to go for that.will not sustain', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-11 04:37:17', 85, '2023-04-12 11:00:02', 0, NULL, 1),
(12362, 'Sundar Nathan', '6', '9342102061', '9150247119', 'sundarsandy112001@gmail.com', '2001-08-11', 21, '2', '2', 'Rajeshwari. B', 'Home maker', 10000.00, 1, 17000.00, 16000.00, 'Kottur Puram', 'Kottur Puram', '2304110013', '1', '2', 'upload_files/candidate_tracker/96427527304_Sundar resume (1).docx', NULL, '1', '2023-04-12', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Has calling exp. 50 - 50profile. can be trained.  kindly check and update your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-11 05:25:17', 101, '2023-04-12 07:48:19', 0, NULL, 1),
(12363, 'suriya', '5', '7904034540', '', 'suriyajustin004@gmail.com', '1999-05-21', 23, '2', '2', 'palanivel', 'building contract', 50000.00, 1, 24000.00, 220000.00, 'Chennai', 'Chennai', '2304110014', '1', '2', 'upload_files/candidate_tracker/64667992685_Adobe Scan 30 Nov 2022 (3).pdf', NULL, '1', '2023-04-11', 0, '', '3', '59', '2023-04-13', 297696.00, '', '4', '2023-05-17', '1', 'Selected for Manikandan Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-11 06:10:24', 60, '2023-04-13 02:35:52', 0, NULL, 1),
(12364, 'andrew', '4', '9342206211', '', 'andrewchandru0206@gmail.com', '2006-01-06', 17, '2', '2', 'jaichandrew', 'auto driver', 30000.00, 1, 0.00, 15000.00, 'korukpet', 'Korukpet', '2304110015', '1', '1', 'upload_files/candidate_tracker/14275242700_photo.pdf', NULL, '1', '2023-04-12', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Fresher job need. can give a try.\nhave to train ..kindly check and update your feedback', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-04-11 06:56:27', 1, '2023-04-12 11:41:07', 0, NULL, 1),
(12365, 'shek rahman', '3', '7539929893', '', 'Shekrahman09@gmail.com', '2000-12-09', 22, '6', '2', 'shek kadhar hussain', 'tailor', 20000.00, 2, 0.00, 1200000.00, 'Chennai', 'saidapet', '2304110016', '', '1', 'upload_files/candidate_tracker/74473655741_Shek resume.pdf.pdf', NULL, '1', '2023-04-11', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Have Basic knowledge in PHP ready to learn kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-11 07:14:36', 1, '2023-04-11 07:23:49', 0, NULL, 1),
(12366, '', '0', '6374795032', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304120001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-12 10:25:15', 0, NULL, 0, NULL, 1),
(12367, 'V PARTHIBAN', '6', '9566048134', '9566041538', 'mrparthibanv@gmail.com', '1995-12-23', 27, '2', '2', 'M V RAGHAVAN', 'ELECTRICIAN', 25000.00, 0, 21000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2304120002', '1', '2', 'upload_files/candidate_tracker/871611284_PARTHI RESUME1.pdf', NULL, '1', '2023-04-12', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile have Exp in credit card sales kindly check andlet me know your inputs for DM team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-12 10:52:36', 60, '2023-04-12 06:34:57', 0, NULL, 1),
(12368, 'Anitha M', '7', '9715912054', '', 'anitha1997.vdl@gmail.com', '1997-06-25', 25, '2', '2', 'Muthukrishnan V', 'Tv Mechanic', 2000.00, 2, 15000.00, 18000.00, 'Vadalur, Cuddalore', 'Saidapet, Chennai', '2304120003', '1', '2', 'upload_files/candidate_tracker/9336509488_Anitha Resume Updated.pdf', NULL, '1', '2023-04-12', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Backend  Colections asked her to wait for 2nd llevel but left without attending need to check and schedule again', '7', '1', '', '1', '1', '', '2', '2023-04-13', '2', '4', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-04-12 10:55:51', 85, '2023-04-12 11:29:00', 0, NULL, 1),
(12369, 'Aswini', '4', '9710281580', '', 'vaswini.282000@gmail.com', '2000-08-02', 22, '2', '2', 'Brahmaiah', 'Tailor', 20000.00, 2, 11000.00, 18000.00, 'Kannikapuram chennai -12', 'Kannikapuram chennai -12', '2304120004', '1', '2', 'upload_files/candidate_tracker/40107983538_resume-1 (1) (1) (1) (1) (1) (1).pdf', NULL, '1', '2023-04-12', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot will not handle our work pressure not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-12 10:56:35', 85, '2023-04-12 11:51:35', 0, NULL, 1),
(12370, 'yoga lakshmi', '4', '6347495032', '', 'yogachalam4298@gmail.com', '1998-02-04', 25, '2', '2', 'arunachalam', 'loading', 200000.00, 2, 0.00, 180000.00, 'thiruvottiyur', 'Thiruvottiyur', '2304120005', '1', '1', 'upload_files/candidate_tracker/55758934495_Yoga pdf.pdf', NULL, '1', '2023-04-12', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok have exp in Accounts fresher for telecalling can give a try kindly check and let me lknow your inputs', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-04-12 11:17:46', 1, '2023-04-12 11:20:23', 0, NULL, 1),
(12371, 'Bala Krishnan', '31', '7397012565', '9787298842', 'balakrishnan0tech@gmail.com', '2001-03-10', 22, '3', '2', 'Dharmaraj', 'Full stack', 20000.00, 1, 0.00, 200000.00, 'Dindigul', 'Thoraipakkam', '2304120006', '', '1', 'upload_files/candidate_tracker/75614058102_Bala Krishnan. Resume.pdf', NULL, '1', '2023-04-12', 0, '', '3', '59', '2023-04-13', 120000.00, '', '', '2023-04-17', '2', 'Seleted for Node JS Viswa Team internship stpnd 6K 3months then 8K 2 months then overall 3yrs SA', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-12 11:58:46', 1, '2023-04-12 12:02:18', 0, NULL, 1),
(12372, 'S.murugavel', '13', '9488511751', '9514172592', 'murugavms@gmail.com', '1997-10-17', 25, '6', '2', 'M  shanmugam', 'Cuddalore', 15000.00, 3, 0.00, 20000.00, 'Chennai', 'Tambaram', '2304120007', '', '1', 'upload_files/candidate_tracker/29418060210_Murugavel CV 2-1.pdf', NULL, '1', '2023-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance not ready to relocate too long career Gap will not sustain and  not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-12 12:04:38', 1, '2023-04-12 12:08:29', 0, NULL, 1),
(12373, 'Atthaur Rahman', '16', '8610037688', '9962613050', 'atthaur06@gmail.com', '2001-03-16', 22, '4', '1', 'Sakina Sultana', 'Housewife', 40000.00, 3, 16000.00, 22000.00, 'Chennai', 'Chennai', '2304120008', '', '2', 'upload_files/candidate_tracker/29610255325_1681285707229_Atthaur Resume.pdf', NULL, '1', '2023-04-12', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Support/MIS interviewed by gokul candidate need to come back wiht his confirmation on the salary ', '3', '1', '', '1', '8', '', '2', '2023-04-17', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-12 01:14:39', 60, '2023-04-12 06:52:30', 0, NULL, 1),
(12374, 'Musthaq sheriff', '4', '9962091822', '', 'musthaqshariff82@gmail.com', '1999-09-02', 23, '1', '2', 'Ghouse sheriff', 'Gas dr', 10000.00, 1, 15000.00, 17000.00, 'No 12 B block Pensioners lane pattlam Chennai 12', 'No 12 B Block Pensioners Lane Pattlam Chennai 12', '2304120009', '', '2', 'upload_files/candidate_tracker/2467174188_musthaq123.pdf', NULL, '1', '2023-04-12', 0, '55577', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'fresher to our role.. have to train a lot.. kindly check and update your inputs.', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-12 02:17:56', 1, '2023-04-12 02:32:17', 0, NULL, 1),
(12375, 'ARJUN CHAKRAVARTHY A', '4', '8110986330', '7305863452', 'arjunchakravathy2@gmail.com', '2000-08-24', 22, '2', '2', 'R ARAVINDH KUMAR', 'Advocate', 200000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2304120010', '1', '1', 'upload_files/candidate_tracker/40130896447_arjun cv pdf.pdf', NULL, '1', '2023-04-13', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher need to open a lot...can be trained... let me know your inputs.', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-12 04:19:28', 85, '2023-04-13 10:13:53', 0, NULL, 1),
(12376, 'abijith', '4', '7338953730', '', 'abijith.g.2018.chem@rajalakshmi.edu.in', '2001-02-11', 22, '2', '2', 'prameela', 'house wife', 15000.00, 2, 0.00, 15000.00, 'thiruvottiyur', 'Thiruvottiyur', '2304120011', '1', '1', 'upload_files/candidate_tracker/20553574288_DOC-20230322-WA0000..pdf', NULL, '1', '2023-04-13', 0, '', '3', '59', '2023-04-17', 138948.00, '', '5', '1970-01-01', '2', 'Sleected for B2b In consultant role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-12 07:05:18', 60, '2023-04-15 03:21:02', 0, NULL, 1),
(12377, 'Praveen K', '11', '8072229437', '', 'kpraveen2924@gmail.com', '1999-08-24', 23, '4', '2', 'Sasireka', 'House maker', 25000.00, 1, 18000.00, 23000.00, 'Veppambaattu', 'Veppambaattu', '2304120012', '', '2', 'upload_files/candidate_tracker/29169417659_K.praveen CV-updated.pdf', NULL, '1', '2023-04-12', 14, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-12 10:36:14', 1, '2023-04-12 10:44:52', 0, NULL, 1),
(12378, 'Shivani Thakur', '5', '9150940527', '', 'shivanishivani3177@gmail.com', '1999-12-26', 24, '2', '2', 'Vimlesh thakur', 'Senior traffic Manager', 7.00, 2, 3.00, 4.50, 'Chennai', 'chennai', '2304130001', '49', '2', 'upload_files/candidate_tracker/2212161497_Shareshiva1.pdf', NULL, '1', '2024-09-17', 30, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Hold beacuse of our Internal Issues', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55567', '55557', '1970-01-01', 1, '2023-04-13 08:41:33', 104, '2024-09-17 12:34:05', 0, NULL, 1),
(12379, 'Stephen Heart I', '1', '7540028212', '', 'Stephenhearti2001@gmail.com', '2001-12-24', 21, '2', '2', 'Irudhayasamy Edmond R', 'Self employed', 15000.00, 2, 0.00, 250000.00, 'Trichirapalli', 'Trichirapalli', '2304130002', '1', '1', 'upload_files/candidate_tracker/32144178651_Stephen Heart RESUME (1).docx', NULL, '1', '2023-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to complete his graduation Salary exp is high being a fresher and not much comfort in travel\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '6', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-13 09:38:22', 101, '2023-04-13 01:03:42', 0, NULL, 1),
(12380, '', '0', '7550251316', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304130003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-13 10:07:11', 0, NULL, 0, NULL, 1),
(12381, 'Mohamed Raseen Ali', '11', '8531972424', '', 'raseenali92@gmail.com', '1997-01-04', 26, '2', '1', 'Junaidha Begam', 'NA', 25000.00, 3, 0.00, 400000.00, 'Thiruvarur district', 'Royapettah', '2304130004', '1', '1', 'upload_files/candidate_tracker/28671183927_Raseen CV1_2023-02-03.pdf', NULL, '1', '2023-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He holds several offers and looking for some more he can join only based on the other offer conslusions not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-04-13 10:09:50', 85, '2023-04-13 01:03:40', 0, NULL, 1),
(12382, '', '0', '7550286400', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304130005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-13 11:31:36', 0, NULL, 0, NULL, 1),
(12383, 'B.Mohsin', '33', '8056205810', '7550276400', 'jobimohsin@gmail.com', '2001-10-02', 0, '2', '2', 'Parent', 'Muslim', 30000.00, 4, 0.00, 15.00, 'No 19/2 nainiappan garden old washermenpet ch21', 'No 2/3 nainiappan garden', '2304130006', '1', '1', 'upload_files/candidate_tracker/62742690284_Mohsin nawaz-2.pdf', NULL, '1', '2023-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Field travel no Communication Pressure handling no not suitable', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-13 11:36:09', 85, '2023-04-13 01:03:13', 0, NULL, 1),
(12384, 'Pradeep Kumar', '11', '8608358228', '', 'pradeepkumar_prof@outlook.com', '1998-08-16', 24, '2', '2', 'Prabhakaran', 'Bus Conductor', 60000.00, 1, 0.00, 17000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2304130007', '1', '1', 'upload_files/candidate_tracker/66087690433_CV-Me.pdf', NULL, '1', '2023-04-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-13 11:44:49', 101, '2023-04-15 11:57:33', 0, NULL, 1),
(12385, 'Ramya', '4', '6380150117', '', 'Ramyajaya1234@Gmail.Com', '1996-05-23', 26, '2', '1', 'Husband', 'Senior manager', 35.00, 2, 17.00, 25.00, 'CHENNAI', 'CHENNAI', '2304130008', '1', '2', 'upload_files/candidate_tracker/23525080897_Resume_Customer Support Executive_Format2-1.pdf', NULL, '1', '2023-04-13', 0, '', '3', '59', '2023-04-17', 240000.00, '', NULL, '2023-07-26', '2', 'Selected for B2B in staff Role', '1', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', 'ramyajaya1234@gmail.com', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-04-13 12:28:54', 60, '2023-04-20 09:59:48', 0, NULL, 1),
(12386, 'loganathan s', '31', '8270604240', '', 'loga1831@gmail.com', '1999-04-07', 24, '6', '2', 'srinivasan', 'farmer', 20000.00, 2, 0.00, 15000.00, 'dharmapuri', 'mylapore', '2304130009', '', '1', 'upload_files/candidate_tracker/46020998581_loganathan s.pdf', NULL, '1', '2023-04-13', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not much good in prog. lau. SNR rejected by kavya', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-13 12:35:30', 85, '2023-04-13 01:04:08', 0, NULL, 1),
(12387, 'Vignesh', '5', '9342285422', '9543422007', 'Vickythiru201@gmail.com', '1999-03-29', 24, '1', '2', 'Parithimarkalaiganan', 'Driver', 30000.00, 3, 0.00, 20000.00, '24,tamil nagar, salem road, vriddhachalam', 'Chennai', '2304130010', '', '1', 'upload_files/candidate_tracker/9275003695_Vignesh Resume.pdf', NULL, '1', '2023-04-13', 0, '55653', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-13 01:10:11', 97, '2023-04-13 05:59:04', 0, NULL, 1),
(12388, 'shaik abdul kaader', '5', '9940204220', '', 'sameerkaader@gmail.com', '1992-01-22', 31, '2', '1', 'sugaina afrose', 'house wife', 30000.00, 1, 24000.00, 35000.00, 'madipakkam', 'mannady', '2304130011', '1', '2', 'upload_files/candidate_tracker/47873424390_SHAIK ABDUL KAADER_Resume $.pdf', NULL, '1', '2023-04-13', 15, '', '3', '59', '2023-05-10', 321696.00, '', '', '2023-05-16', '1', 'Selected for GK Sir Team', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-04-13 02:41:47', 60, '2023-04-18 07:17:20', 0, NULL, 1),
(12389, 'Sanjay Kumar S', '11', '6383795558', '', 'sanjaykumar2001.srinivasan@gmail.com', '2001-11-26', 21, '2', '2', 'Srinivasan D', 'Student', 240000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2304130012', '1', '1', 'upload_files/candidate_tracker/66089203719_SANJAY KUMAR S pdf.pdf', NULL, '1', '2023-04-15', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication average have internship Exp in Recruitment 5050 can give a try Need to check in the final round ', '6', '2', '', '1', '8', '', '2', '2023-04-17', '2', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-13 04:04:52', 101, '2023-04-15 03:00:54', 0, NULL, 1),
(12390, 'Preetha S', '5', '7639193850', '', 'preethaselvakumar733@gmail.com', '1999-05-24', 23, '2', '2', 'Selvakumar P', 'Business man', 100000.00, 1, 0.00, 15.00, 'Tiruvannamalai', 'Velachery, Chennai', '2304130013', '1', '1', 'upload_files/candidate_tracker/37276928970_resume pdf.pdf', NULL, '1', '2023-04-17', 0, '', '3', '59', '2023-04-24', 176844.00, '', '5', '1970-01-01', '2', 'Selected for Karthika Team in Consultant role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-13 05:00:55', 60, '2023-04-22 12:20:29', 0, NULL, 1),
(12391, 'Lekapriya', '11', '6383225044', '', 'Lekasree3006@gmail.com', '1997-06-30', 25, '2', '2', 'Selvaraj', 'Bsnl retired', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2304130014', '1', '2', 'upload_files/candidate_tracker/39164775713_lekapriya selvaraj profile1.pdf', NULL, '1', '2023-04-19', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '3 Mon Of Exp In Rec..Long Distance Sustainbility Doubts..Sal Expt High', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-13 05:13:11', 101, '2023-04-19 12:37:12', 0, NULL, 1),
(12392, 'smrithy p b', '11', '8608567099', '8122170213', 'pbsmrithy1602@gmail.com', '2001-02-16', 22, '2', '2', 'babu', 'aily wage', 15000.00, 1, 18000.00, 20000.00, 'madhavaram', 'madhavaram', '2304130015', '1', '2', 'upload_files/candidate_tracker/19988940327_smrithy.pdf', NULL, '1', '2023-04-15', 0, '', '2', '97', NULL, 0.00, '', '0', NULL, '2', 'communication ok... need to check sustainbility..have to come  final round on monday..', '6', '2', '0', '1', '8', '0', '2', '2023-04-17', '2', '0', NULL, NULL, 'H1015', '0', NULL, NULL, NULL, 1, '2023-04-13 06:51:46', 1, '2023-04-15 12:23:24', 0, NULL, 1),
(12393, 'prasath', '22', '7358279667', '9789842564', 'prasathsimiyon2@gmail.com', '1999-12-07', 23, '1', '2', 'shanthi', 'house wife', 30000.00, 0, 0.00, 25000.00, 'chennai', 'chennai', '2304130016', '', '2', 'upload_files/candidate_tracker/34178179270_Resume - Prasath.docx', NULL, '1', '2023-04-15', 30, '2304130016', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-13 07:14:54', 1, '2023-04-15 10:05:29', 0, NULL, 1),
(12394, '', '0', '9789305884', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304130017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-13 07:24:12', 0, NULL, 0, NULL, 1),
(12395, 'Hariharan .G', '4', '9629116314', '9361155960', 'hariharan29012001@gmail.com', '2001-01-29', 22, '2', '2', 'P.Govindharasan', 'Former', 10000.00, 2, 0.00, 18000.00, 'Teynampet', 'Teynampet', '2304140001', '1', '1', 'upload_files/candidate_tracker/53150850569_ hari .G resume .docx', NULL, '1', '2023-04-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic knowledge and understanding skills is poor will not sustain and not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-14 09:59:22', 85, '2023-04-15 10:58:05', 0, NULL, 1),
(12396, 'Shyam Balaji R', '14', '8825981937', '', 'rshyambalaji@gmail.com', '2000-02-02', 23, '6', '2', 'Ramadoss', 'Government', 1000000.00, 1, 350000.00, 450000.00, 'Chennai', 'Chennai', '2304150001', '', '2', 'upload_files/candidate_tracker/18767647032_Shyam Resume 2023 Flutter.pdf', NULL, '1', '2023-04-15', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '6 months Ep in flutter and the curent Salary and the exp is very high will not sustain and much focus in the salary only not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-15 10:12:29', 85, '2023-04-15 10:58:18', 0, NULL, 1),
(12397, 'Monika', '14', '8972962783', '', 'monilatha54@gmail.com', '1996-06-02', 26, '6', '2', 'Siva', 'Farmer', 30000.00, 1, 4.00, 5.00, 'Chinnamandali,Perambakkam(p.t), Thiruvallur', 'Kanthachavad', '2304150002', '', '2', 'upload_files/candidate_tracker/61488160317_MoniResume.pdf', NULL, '1', '2023-04-15', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much strong in the skills Sustainability and work pressure handling doubtful Salary Exp is high not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-15 10:14:46', 85, '2023-04-15 10:58:12', 0, NULL, 1),
(12398, 'Surya m', '5', '9677166149', '9514495012', 'suryafara@gmail.com', '1993-11-06', 29, '2', '2', 'K MOHAN DASS', 'Police', 80000.00, 1, 19000.00, 25000.00, 'N BLOCK NO 2 NARIYANGADU QTS PUDUPET CHENNAI', 'N BLOCK NO 2 NARIYANGADU POLICE qts pudupet', '2304150003', '1', '2', 'upload_files/candidate_tracker/45380646004_surya updated resume.docx', NULL, '1', '2023-04-15', 30, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile have Exp in Showroom Sales and Home Loan Sales Sustainability doubts kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-04-15 11:37:51', 60, '2023-04-15 03:50:28', 0, NULL, 1),
(12399, 'asfar nisha', '13', '7548894367', '', 'asfarnisha1252001@gmail.com', '2001-05-12', 21, '6', '2', 'sheik salim n', 'mechanic', 25000.00, 1, 0.00, 20000.00, 'madurai', 'tambaram', '2304150004', '', '1', 'upload_files/candidate_tracker/84691605916_asfar resume (1).pdf', NULL, '1', '2023-04-15', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come for Technical Round interested to learn PHP Have basic knowledge in SQL open for TxxampC will come for final round and we need decide', '2', '1', '', '1', '8', '', '2', '2023-04-17', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-15 12:11:52', 101, '2023-04-15 03:54:35', 0, NULL, 1),
(12400, '', '0', '7548894467', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304150005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-15 12:14:05', 0, NULL, 0, NULL, 1),
(12401, 'Bharath.G', '4', '9043093713', '9384424525', 'Bharathsana96@gmail.com', '1994-05-10', 28, '3', '2', 'Govindan', 'Contractor', 30000.00, 1, 22000.00, 25000.00, 'Arakkonam,vellore dist', 'Perambur, Chennai', '2304150006', '', '2', 'upload_files/candidate_tracker/68142860372_Bharath resume.pdf', NULL, '1', '2023-04-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-15 06:48:34', 1, '2023-04-15 06:53:37', 0, NULL, 1),
(12402, 'S. Prakash', '6', '9025731849', '7826991820', 'prakash.s2320@gmail.com', '2000-04-15', 23, '2', '2', 'R. Subramaniyan', 'Farmer', 25000.00, 1, 0.00, 18500.00, 'Perambalur', 'Chennai', '2304150007', '1', '1', 'upload_files/candidate_tracker/38972571265_Resume - Prakash 2.pdf', NULL, '1', '2023-04-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication seems to be slow will not sustain adn not suitable', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-15 07:24:08', 101, '2023-05-26 05:07:53', 0, NULL, 1),
(12403, '', '0', '6385265515', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304150008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-15 07:35:06', 0, NULL, 0, NULL, 1),
(12404, '', '0', '6369841524', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304160001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-16 12:58:01', 0, NULL, 0, NULL, 1),
(12405, 'Mohamed Azeem A K', '5', '9940261421', '', 'mohamedazeem0077@gmail.com', '2002-02-18', 21, '2', '2', 'Ahmed Kabeer A K', 'Business', 20000.00, 1, 0.00, 25000.00, 'Pudupet, chennai', 'Chennai', '2304170001', '1', '1', 'upload_files/candidate_tracker/46122629154_Azeem_RESUME.pdf', NULL, '1', '2023-04-17', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher to our role.. sal expt high ...  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-17 07:14:57', 101, '2023-04-17 09:57:45', 0, NULL, 1),
(12406, 'Hemapriya V', '11', '9344189588', '', 'HEMAPRIYAVENKATESH7@gmail.com', '1999-09-07', 23, '2', '2', 'D. Venkatesan', 'Police', 30000.00, 2, 14500.00, 18000.00, 'Vellore', 'Royapettah', '2304170002', '1', '2', 'upload_files/candidate_tracker/68129527070_Hemapriya V-Resume.pdf', NULL, '1', '2023-04-18', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Recruitment Can be trained in our roles will come back for the final round', '6', '1', '', '1', '8', '', '2', '2023-04-19', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-17 10:26:24', 85, '2023-04-18 10:08:22', 0, NULL, 1),
(12407, '', '0', '9150237642', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304170003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-17 10:31:16', 0, NULL, 0, NULL, 1),
(12408, 'Angel Roshini E', '11', '9600634088', '8072167137', 'angeleben29@gmail.Com', '1997-10-19', 25, '3', '2', 'Ebenezer Samuel', 'Working in Bank', 20000.00, 2, 16000.00, 25000.00, 'Nazareth', 'Arumbakkam', '2304170004', '', '2', 'upload_files/candidate_tracker/54074164821_Angel\'s Resume.docx', NULL, '1', '2023-04-18', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-17 10:35:15', 1, '2023-04-17 10:40:37', 0, NULL, 1),
(12409, 'Palani Bharathi', '31', '9080396836', '9585069287', 'palanibharathi200@gmail.com', '2000-07-28', 22, '1', '2', 'C.chelladurai', 'Farmour', 20000.00, 2, 0.00, 10000.00, 'Dindigul', 'Chennai', '2304170005', '', '1', 'upload_files/candidate_tracker/50837552429_PALANIBHARATHI C.pdf', NULL, '1', '2023-04-17', 0, 'Smartronic Technical solutions', '4', '27', NULL, 0.00, '', '0', NULL, '2', '5050 Interested to learn have basic but not able to explain kindly check and let me know your interest', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-17 10:37:23', 1, '2023-04-17 10:43:28', 0, NULL, 1),
(12410, '', '0', '9962813134', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304170006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-17 10:42:48', 0, NULL, 0, NULL, 1),
(12411, 'Gokulponraju M', '31', '9597977819', '', 'gokulraj18396@gmail.com', '1996-03-18', 27, '2', '2', 'Manickavasu P', 'AEEO office', 30000.00, 1, 0.00, 25000.00, 'Trichy', 'Chennai', '2304170007', '1', '1', 'upload_files/candidate_tracker/48247181236_Software Test Engineer (1).pdf', NULL, '1', '2023-04-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to come back with his confirmation on txxampC Sustainability Doubts', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-17 10:56:59', 85, '2023-04-18 06:18:22', 0, NULL, 1),
(12412, 'Jothiraj R', '13', '9941489453', '', 'jothirajravi27@gmail.com', '1994-05-02', 28, '6', '1', 'Gayathri GB', 'Engineer', 70000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2304170008', '', '2', 'upload_files/candidate_tracker/56729612096_DOC-20230417-WA0002..pdf', NULL, '1', '2023-04-17', 16, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-17 10:57:06', 1, '2023-04-17 11:06:29', 0, NULL, 1),
(12413, 'lakshmi priya', '11', '6382080552', '', 'dlakshmipriya2018@gmail.com', '2001-01-05', 22, '2', '2', 'dhamodaran', 'catering', 20000.00, 0, 0.00, 15000.00, 'vishnuvakkam village kilanur post thiruvallur', 'vishnuvakkam village kilanur post thiruvallur', '2304170009', '1', '1', 'upload_files/candidate_tracker/6701830499_Lakshmi Priya Resume.pdf', NULL, '1', '2023-04-20', 0, '', '3', '59', '2023-04-02', 180000.00, '', '', '1970-01-01', '2', 'Selected for HR Team in Staff Role', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-17 11:12:16', 101, '2023-04-21 09:44:43', 0, NULL, 1),
(12414, 'Aysha Thunnisa', '13', '9962758271', '', 'ayshathunnisa996@gmail.com', '2001-10-19', 21, '3', '2', 'Syed Nazir', 'Courier', 98000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2304170010', '', '1', 'upload_files/candidate_tracker/6490397008_resumeaysha.pdf', NULL, '1', '2023-04-17', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'trying for govt exam..not much good in prog.lau. long run doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-17 11:37:31', 1, '2023-04-17 11:52:51', 0, NULL, 1),
(12415, 'Susmitha', '13', '9789109009', '', 'susmithasivakumar31@gmail.com', '2001-01-31', 22, '6', '2', 'Vignesh', 'Logistics', 25000.00, 1, 0.00, 25000.00, 'Ramanathapuram', 'Medavakkam', '2304170011', '', '1', 'upload_files/candidate_tracker/95075660859_susmi resume 2.pdf', NULL, '1', '2023-04-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-17 11:37:56', 1, '2023-04-17 11:44:36', 0, NULL, 1),
(12416, 'VARSHINI J', '13', '8939787437', '', 'Varshinisasi937@gmail.com', '2001-08-14', 21, '3', '2', 'Sasirekha. J', 'Accountant', 96000.00, 0, 0.00, 3.00, 'Chennai', 'Chennai', '2304170012', '', '1', 'upload_files/candidate_tracker/10045119694_VARSHINI. J Resume.pdf', NULL, '1', '2023-04-17', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has exp in dm..with 4lpa..now looking for developer.. ', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-17 11:40:08', 1, '2023-04-17 11:52:50', 0, NULL, 1),
(12417, 'Andrew', '4', '9884196040', '', 'ndrwanitha@gmail.com', '1996-07-10', 26, '2', '2', 'No', 'No', 2.00, 1, 16500.00, 17000.00, 'Perambur', 'Perambur', '2304170013', '1', '2', 'upload_files/candidate_tracker/51373408892_Andrew.A resume 2022-2.docx', NULL, '1', '2023-04-17', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not suit for roles', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-04-17 11:54:55', 1, '2023-04-17 12:11:33', 0, NULL, 1),
(12418, 'Stella Mary S', '5', '9003285683', '9025269767', 'stellas9825m@gmail.com', '1998-12-25', 24, '3', '2', 'Selvam G', 'Late', 30000.00, 2, 12000.00, 20000.00, 'Chennai', 'Chennai', '2304170014', '', '2', 'upload_files/candidate_tracker/29325409155_Stella resume.pdf', NULL, '1', '2023-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-17 11:58:53', 1, '2023-04-17 12:07:13', 0, NULL, 1),
(12419, 'Ravi P', '4', '9788127709', '8610527284', 'rockravieee@gmail.com', '1997-06-15', 25, '2', '2', 'PADCHIRAJAN', 'Bank sub staff', 50000.00, 1, 15000.00, 18000.00, 'Tirunelveli', 'Chennai', '2304170015', '1', '2', 'upload_files/candidate_tracker/63484188908_CV_2023020121135143.pdf', NULL, '1', '2023-04-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Sales sustainability doubts will not handle our pressure', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-17 12:46:26', 85, '2023-04-17 02:29:28', 0, NULL, 1),
(12420, 'Aakash Mythrayan Y', '13', '6374353292', '9150044003', 'mythrayanaakash@gmail.com', '2000-08-01', 22, '6', '2', 'Yuvaraj', 'Fresher', 50000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2304170016', '', '1', 'upload_files/candidate_tracker/72513440629_AakashFINAlIN.pdf', NULL, '1', '2023-04-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Much focused for Java Openings only', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-17 12:47:13', 1, '2023-04-17 12:50:56', 0, NULL, 1),
(12421, 'Visvakaveen s', '22', '7708262459', '', 'visva997@gmail.com', '1998-08-17', 24, '3', '2', 'selvaraj', 'retail business', 25000.00, 1, 250000.00, 300000.00, 'dindigul', 'hennai', '2304170017', '', '2', 'upload_files/candidate_tracker/50603861682_VisvakaveenCV(1).pdf', NULL, '1', '2023-04-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'final round reject interviewed by gokul for Digital Marketing sustainability doubts and salary exp is high', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-17 01:10:41', 1, '2023-04-17 01:54:36', 0, NULL, 1),
(12422, 'Praveena D', '11', '9539763716', '', 'dspravee@gmail.com', '1996-06-23', 26, '2', '2', 'A Dhakshina Moorthy', 'Business', 1.00, 2, 20000.00, 20000.00, 'Kollam', 'Kollam', '2304170018', '1', '2', 'upload_files/candidate_tracker/3048291144_Praveena Resume_19082021 (1).pdf', NULL, '1', '2023-04-17', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-17 01:13:08', 101, '2023-04-17 01:39:56', 0, NULL, 1),
(12423, 'Sumithra', '5', '7397272425', '', 'sumirajendran0102@gmail.com', '1998-06-19', 24, '1', '2', 'Rajendran', 'Bsc cs', 50000.00, 1, 23000.00, 33000.00, 'Chennai', 'Chennai', '2304170019', '', '2', 'upload_files/candidate_tracker/32158862083_NEW CV DOCX.pdf', NULL, '1', '2023-04-17', 30, '2304170019', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has exp in Customer queries...looking for same..long distance too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-17 01:43:02', 85, '2023-04-17 06:17:51', 0, NULL, 1),
(12424, 'Venkatesh. V', '11', '7845165765', '', 'harivenkatesh1798@gmail.com', '1998-08-17', 24, '2', '2', 'K.Vijaya Kumar', 'Welder', 20000.00, 1, 0.00, 17000.00, 'Anna nagar', 'Anna nagae', '2304170020', '1', '1', 'upload_files/candidate_tracker/4314221471_venkatesh cv.pdf', NULL, '1', '2023-04-18', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no communication... not suit for our role. ', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-17 03:37:31', 101, '2023-04-18 12:31:32', 0, NULL, 1),
(12425, 'Urmila Sampath Kumar', '33', '6380995348', '9940143213', 'urmilask1996@gmail.com', '1996-11-13', 26, '3', '1', 'K. Sampath Kumar', 'Manager in subam Industries', 550000.00, 1, 300000.00, 380000.00, 'Maduravoiyal', 'Maduravoiyal', '2304170021', '', '2', 'upload_files/candidate_tracker/79322731873_Urmila Resume A.docx', NULL, '1', '2023-04-18', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'has exp as a process ass. sal expt high ..', '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-17 06:43:49', 1, '2023-04-17 06:49:16', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12426, 'Monisha.S', '11', '6374659928', '7639872521', 'gangow125@gamil.com', '1998-12-10', 24, '2', '2', 'Selvaraju', 'Business man', 40000.00, 2, 0.00, 25000.00, 'Pudukkottai', 'Chennai', '2304170022', '1', '1', 'upload_files/candidate_tracker/61825967016_Monisha', NULL, '1', '2023-04-18', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'currently doi her masterxquots  final yr... holding 3 offer but not joined .. because of sal ... expt high', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-17 07:26:12', 101, '2023-04-18 12:45:14', 0, NULL, 1),
(12427, 'Leelavathy', '11', '7358614016', '6374659928', 'riyaleela31@gmail.com', '2000-05-31', 22, '2', '2', 'Babu', 'Business man', 50000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2304170023', '1', '1', 'upload_files/candidate_tracker/63298796952_SIST-MBA-41410177-LEELAVATHY B ... (1).pdf', NULL, '1', '2023-04-18', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '3 mon of exp in rec..long distance sustainbility doubts..sal expt high', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-17 09:02:47', 101, '2023-04-18 12:45:46', 0, NULL, 1),
(12428, 'Abinaya M', '16', '8940756826', '', 'bbyjohn143@gmail.com', '1998-05-03', 24, '4', '2', 'Arunkumar M', 'Own Business', 25000.00, 1, 15000.00, 20000.00, 'Ranipet, Vellore 632401', 'Royapettah', '2304180001', '', '2', 'upload_files/candidate_tracker/24708760721_Abinaya Murali 101-1.pdf', NULL, '1', '2023-04-18', 30, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'has calling exp..good convincing skill.. can give a try..kindly check and update your feedback', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-18 10:04:45', 1, '2023-04-18 10:45:22', 0, NULL, 1),
(12429, 'Subbulakshmi R', '13', '9789940079', '', 'subbilakshmi.raman11@gmail.com', '2002-01-21', 21, '3', '2', 'Ramasubramanian N', 'Private company', 10000.00, 1, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2304180002', '', '1', 'upload_files/candidate_tracker/16249304344_SUBBULAKSHMI.R-1.pdf', NULL, '1', '2023-04-18', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Have basic knowledge in prog.lau... not ok with txxampc', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-18 10:06:05', 1, '2023-04-18 11:00:12', 0, NULL, 1),
(12430, 'Abhijith S', '13', '6382408738', '9487106336', 'abhijithsreekumar13@gmail.com', '2000-06-13', 22, '6', '2', 'Sreekumar M', 'Carpenter', 20000.00, 1, 0.00, 300000.00, '3-67F, KaramVilagam,Kodumkulam, Marthandam', '3-67F, KaramVilagam,Kodumkulam, Marthandam', '2304180003', '', '1', 'upload_files/candidate_tracker/99740032489_ABHIJITH S (1).pdf', NULL, '1', '2023-04-18', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not much Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-18 10:36:57', 1, '2023-04-18 10:43:50', 0, NULL, 1),
(12431, 'sivamanikandan', '5', '8637655789', '9864367890', 'sivamaniking49@gmail.com', '1997-10-25', 25, '2', '2', 'avathan', 'bussiness', 50000.00, 1, 38000.00, 45000.00, 'bangl', 'bang', '2304180004', '1', '2', 'upload_files/candidate_tracker/83084802023_Siva resume.pdf', NULL, '1', '2023-09-01', 0, '', '3', '59', '2023-09-05', 372000.00, '', '5', '1970-01-01', '2', 'Selected for Manikandan Team Sriram Sir shortlisted Have Exp in Star Health 2yrs', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-18 10:47:10', 60, '2023-09-05 10:45:56', 0, NULL, 1),
(12432, 'Prathap', '5', '7094161157', '9150059166', 'alliswellprathap@gmail.com', '1989-07-27', 33, '4', '1', 'Pattabi', 'former', 30000.00, 2, 360000.00, 420000.00, 'Tamilnadu', 'Bangalore', '2304180005', '', '2', 'upload_files/candidate_tracker/8705705872_prathap-3.pdf', NULL, '1', '2023-04-18', 5, '', '3', '59', '2023-04-24', 405696.00, '', '5', '1970-01-01', '1', 'Selected for Sudharsan team in Staff Role Madiwaala', '5', '2', '4', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-18 11:47:45', 60, '2023-04-22 06:22:12', 0, NULL, 1),
(12433, 'BHUVANESHWARI S', '31', '8508468529', '', 'bhuvanasri94@gmail.com', '1994-04-22', 28, '6', '1', 'MOOVENTHIRAN K', 'Airport Ramp Driver', 18000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2304180006', '', '1', 'upload_files/candidate_tracker/23585526078_Resume_bhuvi_bhuvaneshwari-s_1681793462 (1).pdf', NULL, '1', '2023-04-18', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'married fresher ..long run doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-18 12:01:11', 1, '2023-04-18 12:05:14', 0, NULL, 1),
(12434, 'RAGHUPATHI K', '4', '8122744209', '7200277349', 'raghurasoon123@gmail.com', '1988-05-10', 34, '6', '1', 'KESAVAN R', 'Own business', 25000.00, 3, 0.00, 35000.00, 'Kottarappatti', 'Moodalpalya', '2304180007', '', '1', 'upload_files/candidate_tracker/82649758162_Ragu Resume (2).pdf', NULL, '1', '2023-04-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-18 12:12:24', 1, '2023-04-18 12:20:05', 0, NULL, 1),
(12435, 'REVANTH S', '13', '6381333810', '8124223749', 'revanthrohith538@gmail.com', '1995-08-03', 27, '6', '2', 'Shanmugam', 'Tailor', 20000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2304180008', '', '1', 'upload_files/candidate_tracker/21713214652_resume revanth 8124 6381_1681315870563_REVANTH S.pdf', NULL, '1', '2023-04-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Salary only will not sustain and handle our work pressure', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-18 12:29:10', 1, '2023-04-18 12:35:08', 0, NULL, 1),
(12436, 'Ramanujam Y', '2', '9677041281', '', 'ramanujamdeva@gmail.com', '1998-04-25', 24, '3', '2', 'Yuvaraj.F', 'Plumber', 14000.00, 1, 0.00, 16000.00, 'Guduvancherry', 'Guduvancherry', '2304180009', '', '1', 'upload_files/candidate_tracker/53346285990_Ramanujam B.E .pdf', NULL, '1', '2023-04-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance not much strong with the basics having some references too', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-18 12:29:57', 1, '2023-04-18 12:35:24', 0, NULL, 1),
(12437, 'PRASANNA E', '22', '9600019707', '', 'prasannapeace3@gmail.com', '1997-06-24', 25, '3', '2', 'ESWARAN R', 'CUSTOMER RELATIONSHIP MANAGER', 40000.00, 1, 0.00, 20000.00, 'Teynampet', 'Teynampet', '2304180010', '', '1', 'upload_files/candidate_tracker/55315266279_PRASANNA E RESUME-min.pdf', NULL, '1', '2023-04-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication not open for Work Pressure will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-18 12:56:36', 1, '2023-04-18 01:10:14', 0, NULL, 1),
(12438, 'Baisnabi sahoo', '5', '8260844939', '8112164804', 'sahoobaisnabi@gmail.com', '2008-04-18', 0, '3', '2', 'Dillip Kumar sahoo', 'Business', 700000.00, 2, 0.00, 18000.00, 'Cuttack, odisha', 'Hosa road, Banglore', '2304180011', '', '1', 'upload_files/candidate_tracker/39421471634_CV_2023-04-17-060738.pdf', NULL, '1', '2023-04-18', 0, '', '3', '59', '2023-04-24', 189468.00, '', '5', '1970-01-01', '2', 'Selectde for Sudharsan team in Consultant role', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-18 01:01:49', 60, '2023-04-22 12:21:50', 0, NULL, 1),
(12439, '', '0', '8248234659', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304180012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-18 01:10:34', 0, NULL, 0, NULL, 1),
(12440, 'M.Abirami', '4', '6369027639', '9345457284', 'abiramimahendran@gamil.com', '2001-04-18', 22, '2', '2', 'V.Mahendran', 'Painter', 20000.00, 0, 12000.00, 15000.00, 'Manargudi', 'Ekatuthangal', '2304180013', '1', '2', 'upload_files/candidate_tracker/2490810512_ABIRAMI RESUME (1) (2).pdf', NULL, '1', '2023-04-18', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not suit for roles', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2023-04-18 02:15:50', 1, '2023-04-18 03:03:10', 0, NULL, 1),
(12441, 'Arunalakshmi', '4', '6374681551', '9786410025', 'arunagayuarunagayu15@gmail.com', '2001-12-26', 21, '2', '2', 'A.subramaniyan', 'Conceldency', 700000.00, 4, 14500.00, 16000.00, 'Thiruvarur', 'Ekatuthangal', '2304180014', '1', '2', 'upload_files/candidate_tracker/24192648176_ARUNA RESUME NEW (1)-1.pdf', NULL, '1', '2023-04-18', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Not Suit For  our Roles', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2023-04-18 02:16:23', 1, '2023-04-18 02:33:00', 0, NULL, 1),
(12442, 'Suganthi k', '4', '6380778238', '9095994335', 'Arunagayuarunagayu15@gmail.com', '2002-07-15', 20, '2', '2', 'Kandhavelu', 'Catering', 25000.00, 1, 15000.00, 15000.00, 'Nagapattinam', 'Chennai', '2304180015', '1', '2', 'upload_files/candidate_tracker/53368421581_SUGAN PDF-1-1.docx', NULL, '1', '2023-04-18', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Not Suit For Role', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2023-04-18 02:17:09', 1, '2023-04-18 02:50:44', 0, NULL, 1),
(12443, 'K. Lokesh Kumar', '7', '7338809833', '', 'sajismart27@gmail.com', '1996-01-27', 27, '4', '2', 'M.Kumaran', 'Paint contractor', 60000.00, 2, 17000.00, 25000.00, '-', 'Ni 12)25 Lakshmi nagar ext chrompet Ch-44', '2304180016', '', '2', 'upload_files/candidate_tracker/24377558761_Lokesh Kumar 2023.docx', NULL, '1', '2023-04-19', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no communication .. long run doubts sal expt high..', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '4', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-18 09:37:33', 97, '2023-04-19 07:26:18', 0, NULL, 1),
(12444, 'Vignesh D', '5', '8072461641', '', 'deenavicky06@gmail.com', '1999-08-06', 23, '3', '2', 'Deenadayalan M', 'Retire TNEB', 23000.00, 2, 21443.00, 21443.00, 'Chennai', 'Chennai', '2304190001', '', '2', 'upload_files/candidate_tracker/80205692516_CV_2023011912192727.pdf', NULL, '1', '2023-04-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-19 07:15:09', 1, '2023-04-19 08:04:37', 0, NULL, 1),
(12445, 'Vino Karthi', '13', '8668133924', '', 'vinokarthi577@gmail.com', '2000-11-20', 22, '2', '2', 'Mari muthu', 'Electrician', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2304190002', '1', '1', 'upload_files/candidate_tracker/60108083671_M.Vino karthi-2022-B.E(Mech)-Full stack.pdf', NULL, '1', '2023-04-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-19 09:52:11', 85, '2023-04-19 10:36:07', 0, NULL, 1),
(12446, 'MENATI BHARATH KUMAR', '13', '8919124083', '7702808778', 'menatibharath111@gmail.com', '1997-11-01', 25, '6', '2', 'M DHAMODARAM', 'Tailor', 25000.00, 1, 0.00, 250000.00, 'Pedda Thayyuru ,marri palli,Sr Puram,chittoor Dist', 'Pedda Thayyuru ,Marri Palli,Sr Puram,Chittoor Dist', '2304190003', '', '1', 'upload_files/candidate_tracker/69125892308_BHARATHKUMAR.pdf', NULL, '1', '2023-04-19', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', ' Good In Skills..long run doubts...He Want To Check With His Parents Abt TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-19 12:09:02', 1, '2023-04-19 12:18:25', 0, NULL, 1),
(12447, 'Udayakumar S', '23', '9843734053', '', 'msudayakumar06@gmail.com', '2000-06-01', 22, '6', '2', 'Sivalingam', 'Farmer', 20000.00, 1, 0.00, 280000.00, 'Dindigul', 'Dindigul', '2304190004', '', '1', 'upload_files/candidate_tracker/26310216806_S.UDAYAKUMAR RESUME.pdf', NULL, '1', '2023-04-19', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', ' Good In Skills..He Want To Check With His Parents Abt TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-19 02:57:55', 1, '2023-04-19 03:02:16', 0, NULL, 1),
(12448, 'Naveenkumar K', '13', '8903400737', '', 'knaveenmani1998@gmail.com', '1998-09-26', 24, '6', '2', 'Kumar S', 'Farmer', 10000.00, 1, 0.00, 2.70, '4/7213 Mallikal vi Krishnagiri dt', 'Pochampalli', '2304190005', '', '1', 'upload_files/candidate_tracker/95385598444_Naveenkumar K (1).pdf', NULL, '1', '2023-04-19', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not much good in skills..he want to check with his parents abt txxampc', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-19 02:58:36', 1, '2023-04-19 03:03:11', 0, NULL, 1),
(12449, 'ASHWIN RAJA', '23', '9677802107', '9842193963', 'ashwinoffcl09@gmail.com', '2001-09-09', 21, '6', '2', 'MAHENDRAN', 'Farmer', 10000.00, 1, 0.00, 400000.00, 'ANNUR', 'Chennai', '2304190006', '', '1', 'upload_files/candidate_tracker/47346107032_final .docx.pdf', NULL, '1', '2023-04-19', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'good in prog.lau... he need to check with his parents about txxampc', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-19 04:01:35', 1, '2023-04-19 04:21:24', 0, NULL, 1),
(12450, 'Gopinath D', '13', '8220541993', '8220440042', 'gopinath008.gt@gmail.com', '1998-01-12', 25, '6', '2', 'Dhanavel A', 'Farmer', 25000.00, 1, 12000.00, 35000.00, 'Cuddalore', 'Vandalur', '2304200001', '', '2', 'upload_files/candidate_tracker/77596143760_gopi-resume.pdf', NULL, '1', '2023-04-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not much Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-20 10:57:53', 1, '2023-04-20 11:05:07', 0, NULL, 1),
(12451, 'Charumadhi. D', '11', '8072829321', '9444631588', 'Charusmile004@gmail.com', '2001-01-09', 22, '2', '2', 'Anuradha. G', 'House wife', 15000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Old washermenpent', '2304200002', '1', '1', 'upload_files/candidate_tracker/56244657353_Charumadhi', NULL, '1', '2023-04-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much suitable for our roles Sustainability Doubts', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-20 11:21:53', 85, '2023-04-20 03:29:57', 0, NULL, 1),
(12452, 'Vinnarasan P', '13', '8270167509', '', 'vinnarasan2k@gmail.com', '2000-07-15', 22, '6', '2', 'M.Puthumai Raj', 'Painting Artist', 20000.00, 2, 0.00, 20000.00, 'Trichy', 'Chennai', '2304200003', '', '1', 'upload_files/candidate_tracker/4196660173_Vinnarasan.P.pdf', NULL, '1', '2023-04-20', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher to our role... not much good in prog lau  xxamp Not Ok With Our TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-20 11:31:56', 85, '2023-04-22 07:25:08', 0, NULL, 1),
(12453, 'Kayalvizhi', '13', '7558159002', '', 'Kayalvizhiasokan99@GMAIL.COM', '1999-09-21', 23, '3', '2', 'A.Mallika', 'Farmer', 30000.00, 3, 0.00, 2.50, 'Trichy', 'Anna nagar', '2304200004', '', '1', 'upload_files/candidate_tracker/2336727370_NEW KAYAL RESUME (1).pdf', NULL, '1', '2023-04-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', ' Fresher To Our Role... Not Much Good In Prog Lau  xxamp Not Ok With Our TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-20 11:52:30', 1, '2023-04-20 12:00:15', 0, NULL, 1),
(12454, 'M.Christal Selvin', '13', '7708927972', '', 'selvin472001@gmail.com', '2001-07-04', 21, '6', '2', 'M.Mary Shylaja', 'Studying .BE, Final year', 60000.00, 3, 0.00, 18000.00, '11/0 A.PandaraVilai, kandanvilai (p.o),Kanyakumari', 'Dmi College of engineering', '2304200005', '', '1', 'upload_files/candidate_tracker/77038462255_CHRISTAL_jerry-5.pdf', NULL, '2', '2023-04-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not yet complete his clg xxamp  not suit for our role .. focusing on sal', '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-20 11:59:40', 1, '2023-04-20 12:07:33', 0, NULL, 1),
(12455, '', '0', '7668159002', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304200006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-20 12:02:57', 0, NULL, 0, NULL, 1),
(12456, 'Durgaram B', '26', '7338960210', '', 'sam61915@gmail.com', '2000-02-25', 23, '2', '2', 'Bangarusamy', 'Non Voice', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2304200007', '1', '2', 'upload_files/candidate_tracker/29306041355_Resume Ba.pdf', NULL, '1', '2023-04-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected not suitable for our roles', '7', '1', '', '1', '8', '', '2', '1970-01-01', '3', '4', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-04-20 12:55:12', 85, '2023-04-20 03:31:21', 0, NULL, 1),
(12457, 'm.kowsalya', '13', '8220345751', '8825981492', 'kowsalyajoy@gmail.com', '1996-05-17', 26, '6', '2', 'murugan', 'farmer', 15000.00, 3, 0.00, 20000.00, 'pondicherry', 'saidapet', '2304200008', '', '1', 'upload_files/candidate_tracker/57961013309_KOWSI RESUME.docx', NULL, '1', '2023-04-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'fresher to our role... not ok with our txxampc', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-20 12:55:37', 1, '2023-04-20 01:21:18', 0, NULL, 1),
(12458, 'Sneha harigharun', '13', '8122884154', '9841008651', 'Snehaharigharun19062001@gmail.com', '2001-06-19', 21, '3', '2', 'HARIGHARUN', 'Photography', 60000.00, 1, 0.00, 30000.00, 'CHENNAI', 'CHENNAI', '2304200009', '', '1', 'upload_files/candidate_tracker/88688896847_Sneha Resume.pdf', NULL, '1', '2023-04-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'pursuing her Guvi online course  balance 3m more..she not ok with our txxampc', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-20 01:29:18', 1, '2023-04-20 01:38:31', 0, NULL, 1),
(12459, '', '0', '7550021141', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304200010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-20 06:36:30', 0, NULL, 0, NULL, 1),
(12460, 'RAKESH', '11', '9003127582', '8124072448', 'rakeshsparkers24@gmail.com', '2000-11-24', 22, '2', '2', 'Sathyanarayanan', 'Security Guard', 150000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2304200011', '1', '1', 'upload_files/candidate_tracker/29409573718_Official Resume.pdf', NULL, '1', '2023-04-21', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-20 06:39:48', 101, '2023-04-21 11:54:56', 0, NULL, 1),
(12461, 'Mohan', '11', '9361327851', '', 'Mohanmandy2625@gmail.com', '2001-06-26', 21, '2', '2', 'Kumar', 'Carpenter', 40000.00, 1, 0.00, 15000.00, 'Kolathur', 'Kolathur', '2304200012', '1', '1', 'upload_files/candidate_tracker/51018048980_mohan res mba.pdf', NULL, '1', '2023-04-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'average communication long run doubts.. looking for it recruitment', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-20 06:45:06', 101, '2023-04-21 11:55:15', 0, NULL, 1),
(12462, 'Ugendran s', '13', '8428882777', '9025815982', 'uga19082002@gmail.com', '2002-08-19', 20, '6', '2', 'Sakthivel B', 'Driver', 10000.00, 1, 0.00, 200000.00, 'Karur', 'Karur', '2304210001', '', '1', 'upload_files/candidate_tracker/63055238372_S.ugendran.pdf', NULL, '1', '2023-04-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'pursuing his final yr...focusing on sal long run doubts', '2', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-21 09:41:37', 1, '2023-04-21 09:44:58', 0, NULL, 1),
(12463, 'Mariya Preethi', '23', '8248313556', '', 'preethijustin16@gmail.com', '1999-04-16', 24, '6', '2', 'Justin', 'Centring', 80000.00, 1, 300000.00, 400000.00, 'Dindigul', 'Chennai', '2304210002', '', '2', 'upload_files/candidate_tracker/39334276382_MARIYA_2years_Exprience.pdf', NULL, '1', '2023-04-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Good In Prog.Lau... She Need Time To Check With  His Parents..About TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-21 09:42:41', 1, '2023-04-21 09:45:17', 0, NULL, 1),
(12464, 'JOTHIGA s', '11', '8870198479', '8976734439', 'Jothigajo07@gmail.com', '2001-07-07', 22, '2', '2', 'D. SENTHILKUMAR', 'Operator in private ltd', 15000.00, 1, 250000.00, 300000.00, 'Cuddalore', 'Chennai', '2304210003', '1', '2', 'upload_files/candidate_tracker/9717060659_JO Resume 1.pdf', NULL, '1', '2023-04-22', 7, '', '3', '59', '2023-05-02', 151584.00, '', NULL, '2026-03-31', '2', 'Selected for Recruitment team in consultant Role', '6', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-21 10:41:22', 104, '2023-07-18 10:40:24', 0, NULL, 1),
(12465, 'Karthick', '23', '8056179854', '9003573148', 'karthickyamkk2001@gmail.com', '2001-08-05', 21, '6', '2', 'Malliga . V (mother )', 'Tailor', 30000.00, 2, 0.00, 26000.00, 'Chennai', 'Chennai', '2304210004', '', '1', 'upload_files/candidate_tracker/5951660283_KARTHICK V (5).pdf', NULL, '1', '2023-04-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-21 11:34:56', 1, '2023-04-21 11:40:04', 0, NULL, 1),
(12466, 'Karthick M', '13', '6374395319', '9566515235', 'karthickmurugesan17@gmail.com', '1997-12-12', 25, '3', '2', 'Murugesan C', 'Former', 75000.00, 2, 0.00, 20000.00, 'Pudukkottai', 'Chennai', '2304210005', '', '1', 'upload_files/candidate_tracker/1254915221_KARTHICK M.pdf', NULL, '1', '2023-04-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-21 11:37:59', 1, '2023-04-21 11:47:24', 0, NULL, 1),
(12467, 'MANIVANNAN T.E', '13', '9566108473', '9566047846', 'mani.joe93@gmail.com', '1993-02-08', 30, '6', '2', 'Thenmozhi', 'House wife', 15.00, 2, 0.00, 20.00, 'Chennai', 'Chennai', '2304210006', '', '1', 'upload_files/candidate_tracker/80838970736_MANIVANNAN T E_RESUME_ (1).pdf', NULL, '1', '2023-04-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'not much Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-21 11:39:06', 1, '2023-04-21 11:44:03', 0, NULL, 1),
(12468, 'Sheebapreethy', '13', '8807435228', '', 'preethysathya2626@gmail.com', '2000-08-26', 22, '6', '2', 'Amutha', 'Business', 40000.00, 1, 0.00, 20000.00, 'Tiruchirapalli', 'Chennai', '2304210007', '', '1', 'upload_files/candidate_tracker/19079693633_preethy resume.pdf', NULL, '1', '2023-04-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Good In Prog.Lau... she Need Time To Check With  His Parents..About TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-21 12:48:54', 1, '2023-04-21 12:52:23', 0, NULL, 1),
(12469, '', '0', '7904911017', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304210008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-21 03:59:10', 0, NULL, 0, NULL, 1),
(12470, 'Nithya', '11', '8925323344', '9514114195', 'kannannithya619@gmail.com', '2001-01-20', 22, '2', '2', 'Kannan', 'Driver', 50000.00, 3, 18000.00, 23000.00, 'Alwarthirunagar, Chennai', 'Alwarthirunagar,chennai', '2304210009', '1', '2', 'upload_files/candidate_tracker/29709011085_NITHYA KANNAN CV.pdf', NULL, '1', '2023-04-22', 0, '', '3', '59', '2023-04-26', 194400.00, '', '5', '1970-01-01', '2', 'Selectd for Recruitment in Consultant Role', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-21 06:14:34', 60, '2023-04-26 10:43:46', 0, NULL, 1),
(12471, 'Vignesh.p', '11', '9659505829', '', 'vikey006.v0@gmail.com', '1996-04-26', 26, '2', '2', 'Purushothaman', 'BSNL', 20000.00, 2, 12000.00, 20000.00, 'VELLORE', 'VELLORE', '2304210010', '1', '2', 'upload_files/candidate_tracker/10560146479_Vignesh cv.pdf', NULL, '1', '2023-04-22', 0, '', '3', '59', '2023-04-26', 172800.00, '', '', '1970-01-01', '1', 'Selectde for HR Recruiter', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-21 06:15:44', 101, '2023-04-22 09:51:41', 0, NULL, 1),
(12472, 'Raghul Vignesh K', '6', '9840238355', '9444038677', 'raghul7798@gmail.com', '1998-11-07', 24, '3', '2', 'M.A.Kumaramani', 'Supervisor', 15000.00, 1, 27000.00, 25000.00, 'Chennai', 'Chennai', '2304220001', '', '2', 'upload_files/candidate_tracker/62491136970_Raghul Resume (Experience).pdf', NULL, '1', '2023-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-22 09:57:02', 1, '2023-04-22 10:31:50', 0, NULL, 1),
(12473, 'Kalaiselvi v', '4', '8056239932', '9600182721', 'selvivkalai7@gmail.com', '1996-07-13', 26, '1', '1', 'Dharmaraj', 'Metro train oprater', 30000.00, 0, 0.00, 30000.00, 'Aminjikarai', 'Aminjikarai', '2304220002', '', '2', 'upload_files/candidate_tracker/25334374384_KALAI SELVI NEW RESUME 1.pdf', NULL, '1', '2023-04-22', 0, '', '3', '59', '2023-05-15', 300000.00, '', '6', '2023-11-15', '1', 'Selecetd for B2B Staff Role', '1', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-22 11:28:54', 60, '2023-05-22 10:15:26', 0, NULL, 1),
(12474, 'Keerthikannan D', '13', '6383350680', '9500962057', 'keerthikanan03@gmail.com', '2001-04-27', 21, '6', '2', 'Devendran.M', 'Sales Man', 15000.00, 0, 0.00, 15000.00, 'Pattukkottai', 'Chennai', '2304220003', '', '1', 'upload_files/candidate_tracker/30187058469_KeerthiKannanResume.pdf', NULL, '1', '2023-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-22 11:48:05', 1, '2023-04-22 11:53:55', 0, NULL, 1),
(12475, 'Bavatharani', '13', '9791218073', '', 'bavatharanibavatharani48@gmail.com', '2008-04-22', 0, '6', '2', 'Chandru', 'Meson', 300000.00, 1, 0.00, 2.50, 'Mayiladuthurai', 'Chennai', '2304220004', '', '1', 'upload_files/candidate_tracker/20724371646_CV_2023041011034949.pdf', NULL, '1', '2023-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-22 01:03:42', 1, '2023-04-22 01:08:23', 0, NULL, 1),
(12476, 'DEEPIKA S', '13', '6385563095', '6379179029', 'deepikasakthivel592@gmail.com', '2000-09-03', 22, '6', '2', 'Sakthivel.k', 'Self employer', 20000.00, 1, 0.00, 200000.00, 'Maduravoyal', 'Maduravoyal', '2304220005', '', '1', 'upload_files/candidate_tracker/85364365947_objective.pdf', NULL, '1', '2023-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-22 01:10:59', 1, '2023-04-22 01:27:47', 0, NULL, 1),
(12477, '', '0', '6379027751', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304220006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-22 06:45:27', 0, NULL, 0, NULL, 1),
(12478, 'Karthikeyan', '23', '6379027752', '', 'Karthi08012002@gmail.com', '2001-08-20', 21, '3', '2', 'Velsamy.v', 'Farmer', 6000.00, 1, 0.00, 40000.00, 'Chennai', 'Mayiladuthurai', '2304220007', '', '1', 'upload_files/candidate_tracker/29040170854_Karthi_Resume.pdf', NULL, '2', '2023-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-22 06:50:05', 1, '2023-04-22 06:56:43', 0, NULL, 1),
(12479, 'susinthara', '11', '9677857670', '', 'susisivan98@gmail.com', '1998-01-05', 25, '2', '2', 'n sivanpatham', 'electrician', 25000.00, 2, 0.00, 15000.00, 'cuddalore', 'nsk', '2304220008', '1', '1', 'upload_files/candidate_tracker/14847879979_susinthara.pdf', NULL, '1', '2023-04-24', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to open a lot Prsssure handling doubts Final Round interviewed by Gokul 5050 can be hired as intern then employment if she agrees with document submission', '6', '1', '0', '1', '8', '0', '2', '2023-05-02', '2', '0', NULL, NULL, 'H1015', '0', NULL, NULL, NULL, 1, '2023-04-22 07:08:57', 1, '2023-04-24 01:18:45', 0, NULL, 1),
(12480, 'Kanchan.G', '11', '6383033865', '', 'rkkanchan26@gmail.com', '1999-01-26', 24, '2', '2', 'Gulab Chandra patel', 'Own business', 20000.00, 3, 0.00, 18000.00, 'Chennai', 'Chennai', '2304220009', '1', '1', 'upload_files/candidate_tracker/10294618917_kanchanresume_original.pdf', NULL, '1', '2023-04-24', 0, '', '3', '59', '2023-04-26', 180000.00, '', '', '1970-01-01', '2', 'Selected for Digital Marketing with 1.8LPA but for 3 months will pay 10K and based on performance she will get the rest of salary for 3 months along with the pay in 4th month salary', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-22 09:25:45', 85, '2023-04-24 09:53:12', 0, NULL, 1),
(12481, 'Shaik Amanulla Sharif', '33', '9052571623', '', 'shaikaamn@gmail.com', '1998-02-01', 25, '2', '2', 'Shaik meharunnisa', 'Banglore', 95000.00, 1, 21000.00, 25000.00, 'Nandyal, Andhrapradesh', 'btm layout, 2nd stage, banglore', '2304230001', '1', '2', 'upload_files/candidate_tracker/73533911840_Shaik Resume.docx', NULL, '3', '2023-05-01', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-04-23 08:57:43', 1, '2023-04-23 09:03:47', 0, NULL, 1),
(12482, 'Saran M R', '13', '8939074220', '', 'saranmraja97@gmail.com', '1997-04-13', 26, '3', '2', 'M Raja', 'Business', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2304240001', '', '1', 'upload_files/candidate_tracker/71488810329_Saranpy.pdf', NULL, '1', '2023-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Basics skills need to learn a lot not open for TxxampC if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-24 10:24:31', 1, '2023-04-24 10:29:13', 0, NULL, 1),
(12483, 'Karthika E', '11', '9710943804', '6369116625', 'Ekarthika2000@gmail.com', '2000-01-27', 23, '2', '2', 'Elumalai', 'Business man', 45000.00, 2, 0.00, 15000.00, 'Palavakkam, chennai', 'Palavakkam, chennai', '2304240002', '1', '1', 'upload_files/candidate_tracker/72746177966_Updated Resume KARTHIKA E.pdf', NULL, '1', '2023-04-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need to open a lot Pressure handling doubt will not sustain not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-24 10:33:22', 101, '2023-04-24 01:32:43', 0, NULL, 1),
(12484, 'Chandru Manohar', '13', '7418785876', '8300631576', 'chandrumanohar5@gmail.com', '1999-04-21', 24, '6', '2', 'Manohar', 'Mechanic', 20000.00, 1, 0.00, 20000.00, '83/67 Attukara st, palakarai, Trichy', 'Velachery, Chennai', '2304240003', '', '1', 'upload_files/candidate_tracker/93092217752_Chandru Manohar RESUME .pdf', NULL, '1', '2023-04-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open with TxxampC Need time to confirm with family Will not sustain and handle our pressure', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-24 10:56:58', 85, '2023-05-02 05:58:44', 0, NULL, 1),
(12485, 'Govindaraj OM', '13', '8012127109', '', 'govindarajomofficial@gmail.com', '2001-03-17', 22, '3', '2', 'Meena Om', 'Self work', 7000.00, 1, 0.00, 25000.00, 'Palliagraharam, Thanjavur', 'Palliagraharam, Thanjavur', '2304240004', '', '1', 'upload_files/candidate_tracker/21948743422_Govindaraj.Om.pdf', NULL, '1', '2023-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-24 11:16:26', 1, '2023-04-24 11:20:59', 0, NULL, 1),
(12486, 'Raghunathan g', '11', '9543048369', '', 'raghug2210@gmail.com', '1979-08-19', 43, '6', '1', 'Uma', 'Housewife', 76000.00, 2, 83000.00, 115000.00, '3 thirumurugan nagar', 'Chennai', '2304240005', '', '2', 'upload_files/candidate_tracker/42032350201_Raghunathan_Resume.pdf', NULL, '1', '2023-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Came for UI UX 42yrs Current CTC 85K onlydesigning skills Exp monthly 1L', '6', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-24 11:59:09', 1, '2023-04-24 12:04:18', 0, NULL, 1),
(12487, 'Sharmila s', '16', '7871150057', '', 'Sharmi15218@gmail.com', '1998-09-21', 24, '2', '2', 'Sivasankaran', 'Help desk', 18000.00, 1, 21000.00, 30000.00, 'pallikaranai', 'Pallikaranai', '2304240006', '1', '2', 'upload_files/candidate_tracker/46503777252_Resume New-2.docx', NULL, '1', '2023-04-25', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SAlary  high Exp30 days notice Will not sustain in a long', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-24 12:00:25', 85, '2023-04-25 03:28:54', 0, NULL, 1),
(12488, 'Priya.k', '4', '9499037569', '7299106405', 'priyakk2710@gmail.com', '2002-10-27', 20, '2', '2', 'Kesavan', 'Farmer', 10000.00, 1, 25000.00, 25000.00, 'Chennai', 'Chennai', '2304240007', '1', '2', 'upload_files/candidate_tracker/61142399522_Resume_Priya.pdf', NULL, '1', '2023-04-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-24 12:02:20', 101, '2023-04-26 07:02:06', 0, NULL, 1),
(12489, 'Aravindhan', '13', '9597887663', '8015471097', 'Aravindhan0111@gmail.com', '2001-01-15', 22, '6', '2', 'V. Jayashankar', 'Farmer', 8000.00, 1, 0.00, 2.50, 'Manmalai, kallakurichi', 'Manmalai, kallakurichi', '2304240008', '', '1', 'upload_files/candidate_tracker/89096103669_Aravindh J (1).pdf', NULL, '1', '2023-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC N basics Skills will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-24 12:24:37', 1, '2023-04-24 12:28:34', 0, NULL, 1),
(12490, 'D.Monisha', '6', '6374968607', '7358611173', 'shamoni159@gmail.com', '2000-12-17', 22, '1', '2', 'Padmini', 'Own business', 10000.00, 2, 13000.00, 15000.00, 'No.47/1 Rama Street Royapuram , Chennai', 'No.47/1 Rama Street Royapuram , Chennai', '2304240009', '', '2', 'upload_files/candidate_tracker/66541305464_Resume_Job resume_Format1.pdf', NULL, '1', '2023-04-24', 0, 'P1066', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'sustainability doubt so rejected', '5', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-24 01:12:52', 1, '2023-04-24 02:00:08', 0, NULL, 1),
(12491, 'K.Yogeshwari', '6', '7449174982', '8124375553', 'yogeshwariyogki66@gmail.com', '2000-01-05', 23, '1', '2', 'K.Thulasi', 'House keeping', 8000.00, 2, 14000.00, 15000.00, 'No.5 ,N.R.T Road Royapuram , Chennai -13', 'No.5 N.R.T Road Royapuram Chennai -13', '2304240010', '', '2', 'upload_files/candidate_tracker/33906650105_YOG RESUME.docx', NULL, '1', '2023-04-24', 0, 'P1066', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'charles team, sustainability doubt', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-24 01:13:03', 1, '2023-04-24 01:22:56', 0, NULL, 1),
(12492, '', '0', '7358432124', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304240011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-24 03:36:37', 0, NULL, 0, NULL, 1),
(12493, 'Murugan.M', '6', '8807003774', '9551193197', 'mg1136249@gmail.com', '1995-05-30', 27, '4', '2', 'Magesh.M', '2000', 25000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2304240012', '', '1', 'upload_files/candidate_tracker/11317715161_M Murugan.pdf', NULL, '1', '2023-04-24', 0, '', '4', '88', NULL, 0.00, '', '0', NULL, '1', '5050 Profile have exp in Field sales and installation internal reference sustainability doubts kindly check and let me know', '5', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-24 04:38:22', 1, '2023-04-24 04:57:45', 0, NULL, 1),
(12494, 'Ranganathan S', '5', '9962355827', '', 'st.ranga1998@gmail.com', '1998-03-16', 25, '2', '2', 'Subramaniam P', 'Coolie', 14000.00, 1, 26500.00, 30000.00, 'Chennai', 'Chennai', '2304240013', '1', '2', 'upload_files/candidate_tracker/49116883308_RANGANATHAN S RESUME-.pdf', NULL, '1', '2023-04-25', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending the inteerview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-24 05:01:26', 101, '2023-04-25 10:24:00', 0, NULL, 1),
(12495, 'jamima', '11', '9361137759', '', 'jamimaclara3@gmail.com', '2000-04-11', 23, '2', '2', 'santha kumar', 'retail buiness', 20000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2304240014', '1', '1', 'upload_files/candidate_tracker/85168948612_CV_2023-02-16-104530.pdf', NULL, '1', '2023-04-26', 0, '', '2', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good communication..has intern exp in recruitment. sal expt high. let us try.', '6', '1', '', '1', '8', '', '2', '2023-04-28', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-24 06:38:34', 101, '2023-04-26 07:01:44', 0, NULL, 1),
(12496, 'aishwerya govindaraju', '11', '6379363883', '', 'aishwerya2002@gmail.com', '2002-05-18', 20, '2', '2', 'Govindaraju.p', 'Student', 150000.00, 1, 0.00, 400000.00, 'chennai', 'chennai', '2304240015', '1', '1', 'upload_files/candidate_tracker/18303356731_final resume.pdf', NULL, '1', '2023-04-26', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'good communication has intern exp , sal expt too high ..min 4.5lpa.. seems like no job need', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-24 06:45:16', 101, '2023-04-25 10:30:41', 0, NULL, 1),
(12497, '', '0', '7904467827', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304240016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-24 08:56:06', 0, NULL, 0, NULL, 1),
(12498, 'Rajeshwaran', '22', '7339613519', '9489155621', 'rajeshwaran9489@gmail.com', '2008-04-24', 0, '3', '2', 'T.Arumugam', 'Driver', 10000.00, 3, 10000.00, 16000.00, 'Surandai/Tenkasi', 'Chennai', '2304240017', '', '2', 'upload_files/candidate_tracker/98329331887_Rajeshwaran resume-1.pdf', NULL, '1', '2023-04-29', 10, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-24 10:33:23', 101, '2023-04-25 10:30:03', 0, NULL, 1),
(12499, 'Pandiyan R', '16', '7358312594', '8754960844', 'pv186015@gmail.com', '2001-02-28', 22, '2', '2', 'Ravanan d', 'Coolie', 32000.00, 2, 17000.00, 22000.00, 'Kurinji poo Street,Mannivakkam,chennai 600048', 'Kurinji Poo Street,Mannivakkam,Chennai 600048', '2304250001', '1', '2', 'upload_files/candidate_tracker/50634402619_Resume Pandiyan Word 3.pdf', NULL, '1', '2023-04-25', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not suitable for our roles', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-25 09:39:11', 85, '2023-04-25 03:29:09', 0, NULL, 1),
(12500, 'Ganeshkumar V', '13', '6382751929', '', 'gk753778@gmail.com', '2001-06-11', 21, '6', '2', 'Venkatesan', 'Tailor', 15000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2304250002', '', '1', 'upload_files/candidate_tracker/79038300421_gk_resum (1)_compressed.pdf', NULL, '1', '2023-04-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfort with TxxampC Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-25 10:58:37', 1, '2023-04-25 11:31:27', 0, NULL, 1),
(12501, 'Indumathi S', '14', '6374588226', '9444458894', 'snmathi196@gmail.com', '2001-06-19', 21, '6', '2', 'Sampathkumar', 'Machine operator', 35000.00, 1, 25000.00, 25000.00, 'Tiruvallur', 'Tiruvallur', '2304250003', '', '2', 'upload_files/candidate_tracker/47984220056_Indumathi S - resume_compressed.pdf', NULL, '1', '2023-04-25', 60, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Much Comfort With TxxampC Sustainability Doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-25 10:59:25', 1, '2023-04-25 11:55:51', 0, NULL, 1),
(12502, '', '0', '8940414640', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304250004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-25 11:08:15', 0, NULL, 0, NULL, 1),
(12503, '', '0', '9940671306', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304250005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-25 11:30:46', 0, NULL, 0, NULL, 1),
(12504, 'shaqeel ahamed', '23', '9791238354', '', 'shaqeelahamed22@gmail.com', '1999-10-22', 23, '6', '2', 'nazeer ahamed', 'business', 100000.00, 1, 27000.00, 40000.00, 'anna nagar chennai', 'chennai', '2304250006', '', '2', 'upload_files/candidate_tracker/4880480520_shaqeel ahamed\'s cv +.pdf', NULL, '1', '2023-04-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Much Comfort With TxxampC Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-25 11:31:17', 1, '2023-04-25 11:34:23', 0, NULL, 1),
(12505, 'Pragatheeshwaran.R', '13', '6379952456', '9962413086', 'rpragatheeshwaran@gmail.com', '2001-11-15', 21, '6', '2', 'Rajkumar.M', 'Esab contract employee', 12000.00, 1, 0.00, 18000.00, 'Ayapakkam', 'Chennai', '2304250007', '', '1', 'upload_files/candidate_tracker/97877902231_Pragatheeshwaran resume.pdf', NULL, '1', '2023-04-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Much Comfort With TxxampC Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-25 11:41:05', 1, '2023-04-25 11:45:37', 0, NULL, 1),
(12506, 'M. Ganesan', '13', '6369871622', '9940671306', 'gmohan704@gmail.com', '2001-04-18', 22, '6', '2', 'M. Mohan', 'Bero Tinker', 30000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2304250008', '', '1', 'upload_files/candidate_tracker/15499844125_res-ganesan(4)_compressed.pdf', NULL, '1', '2023-04-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Much Comfort With TxxampC Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-25 12:11:07', 1, '2023-04-25 12:21:53', 0, NULL, 1),
(12507, 'udayaprakash.i', '6', '9597902521', '9787906651', 'udayaprakash84657@gmail.com', '2001-10-05', 21, '1', '2', 'iyyanar .a', 'ana', 350000.00, 2, 13000.00, 15000.00, 'cuddalore', 'velacherry', '2304250009', '', '2', 'upload_files/candidate_tracker/27985666544_Cv .pdf', NULL, '1', '2023-04-25', 0, 'p1357', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Not much importance on the job can give a try kindly check andlet me know your inputs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-25 12:49:01', 85, '2023-04-29 06:25:53', 0, NULL, 1),
(12508, '', '0', '7010188246', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304250010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-25 04:50:10', 0, NULL, 0, NULL, 1),
(12509, '', '0', '8925272050', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304250011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-25 06:03:28', 0, NULL, 0, NULL, 1),
(12510, '', '0', '7550181227', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304250012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-25 06:13:33', 0, NULL, 0, NULL, 1),
(12511, 'Subashree', '4', '6380565216', '', 'subashree97326@gmail.com', '1997-03-26', 26, '3', '2', 'Selvam', 'Hotel business', 20000.00, 1, 25000.00, 30000.00, '11/459 mogappair east, Chennai -37.', '11/459 mogappair east, Chennai -37.', '2304250013', '', '2', 'upload_files/candidate_tracker/96798346978_SubashreeProfile.docx', NULL, '1', '2023-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-25 07:10:06', 1, '2023-04-25 07:22:42', 0, NULL, 1),
(12512, 'Abinash', '4', '9962854325', '8682867745', 'Al.alee7312@gmail.com', '1999-12-20', 23, '2', '2', 'Asai Thambi', 'Driver', 20000.00, 0, 0.00, 18000.00, 'Puzhal Chennai', 'Puzhal Chennai', '2304260001', '1', '1', 'upload_files/candidate_tracker/23923519710_Scanned_20230426-1116.pdf', NULL, '1', '2023-04-26', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-26 01:06:05', 85, '2023-04-26 07:02:25', 0, NULL, 1),
(12513, 'Aravindh C', '13', '9345737576', '', 'aranbc95@gmail.com', '1995-07-31', 27, '6', '2', 'Chinnadurai B', 'Ventor', 20000.00, 2, 0.00, 30000.00, 'Edappadi(po), Salem(dt).', 'Edappadi(po), Salem(dt).', '2304260002', '', '1', 'upload_files/candidate_tracker/64117431589_ARAVINDH RESUME (1)-2.pdf', NULL, '1', '2023-04-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'good in prog. lau.. He  Wants  To Check His Parents About TxxampC ..', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-26 09:48:04', 1, '2023-04-26 09:57:03', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12514, 'Jeevaraj.M', '13', '7339642003', '', 'jmdedits007@gmail.com', '2003-11-27', 19, '6', '2', 'Mayilvaganan.C', 'Mesthri', 15000.00, 0, 0.00, 25000.00, 'Salem', 'Salem', '2304260003', '', '1', 'upload_files/candidate_tracker/904335723_Jeevaraj-Mayilvaganan-CV.pdf', NULL, '1', '2023-04-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'pursuing his course...he  wants to check his parents about txxampc ..', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-26 09:48:44', 1, '2023-04-26 09:53:15', 0, NULL, 1),
(12515, 'Venkatesh', '14', '7305835738', '9080243710', 'venkateshscientist512@email.com', '1999-10-10', 23, '6', '2', 'Vasantha', 'House keeping', 15000.00, 3, 0.00, 15.00, 'Chennai', 'Thuraipakkam', '2304260004', '', '1', 'upload_files/candidate_tracker/62469460469_Venkatesh_edited.pdf', NULL, '3', '2023-04-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'came for developer seems like intersted in testing ..', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-26 10:15:20', 1, '2023-04-26 10:20:13', 0, NULL, 1),
(12516, 'Saravanan.a', '23', '8428001535', '7373804387', 'shravanan786@gmail.com', '1993-01-30', 30, '6', '2', 'Father : Arichandran', 'Mechanical', 85000.00, 1, 4.90, 6.40, 'Chennai', 'Chennai', '2304260005', '', '2', 'upload_files/candidate_tracker/78637413553__Resume UI_UX .pdf', NULL, '1', '2023-04-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'has exp in 4.2yrs  ui/ux.. simultaneously changing his job every yr because of hike.. long run doubts', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-26 10:17:25', 1, '2023-04-26 11:12:13', 0, NULL, 1),
(12517, 'K. Soundarya', '14', '6379078006', '8939582125', 'soundmaths123@gmail.com', '2002-06-08', 20, '6', '2', 'Ponni K', 'House keeping', 15000.00, 1, 0.00, 15000.00, 'Mylapore', 'Mylapore', '2304260006', '', '1', 'upload_files/candidate_tracker/89686547697_soundarya 1.pdf', NULL, '1', '2023-04-26', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Yet to confirm the Profile for Joining', '2', '1', '0', '1', '8', '0', '2', '2023-05-03', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-26 10:21:25', 1, '2023-04-26 10:30:33', 0, NULL, 1),
(12518, 'Hari Prasad G', '5', '8122331586', '9789903686', 'harigee005@gmail.com', '1994-08-05', 28, '2', '1', 'Ravanamma', 'Home maker', 96000.00, 1, 250000.00, 375000.00, 'Chennai', 'Chennai', '2304260007', '1', '2', 'upload_files/candidate_tracker/46275966396_1682485084856_Resume_Hari_Prasad-30352126716135c6bf70a4e2621a32ce.docx', NULL, '1', '2023-04-26', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Shortlisted by guarav sir ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-26 10:24:20', 85, '2023-04-26 07:01:30', 0, NULL, 1),
(12519, 'Kamalesh Y', '4', '9025454726', '8149755185', 'Kamalesh2220@gmail.com', '2001-07-20', 21, '2', '2', 'Yuvaraj SK', 'Driver', 15000.00, 0, 0.00, 15000.00, 'Chennai', 'chennai', '2304260008', '1', '1', 'upload_files/candidate_tracker/13491314845_ Kamalesh Y resume ????.pdf', NULL, '1', '2023-04-26', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-26 11:09:12', 85, '2023-04-26 07:01:56', 0, NULL, 1),
(12520, 'SELVAPRAKASH', '13', '7708256647', '9894249986', 'SELVAPRAKASH.joe@gmail.com', '1999-12-04', 23, '6', '2', 'Antro arul joe', 'Kuli', 12000.00, 2, 0.00, 15000.00, 'Tuticorin', 'Tuticorin', '2304260009', '', '1', 'upload_files/candidate_tracker/93770297346_SELVAPRAKASHCV.pdf', NULL, '1', '2023-04-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has 3m exp  as a developer with 5k  beause of package he left the job..sustainbility doubts ...he wants to check with his parents', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-26 11:57:18', 1, '2023-04-26 12:01:51', 0, NULL, 1),
(12521, 'S.vetriselvan', '31', '9629807422', '', 'vetriselvanradha@gmail.com', '1999-03-13', 24, '3', '2', 'S.shanmugam', 'Agriculture', 20000.00, 1, 0.00, 2.40, 'Nagapattinam', 't nagar', '2304260010', '', '1', 'upload_files/candidate_tracker/23928886184_My Resume.pdf', NULL, '1', '2023-04-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Good In Prog.Lau (fita)... He Need Time To Check With  His Parents..About TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-26 01:31:47', 1, '2023-04-26 01:37:46', 0, NULL, 1),
(12522, 'Dhaara cb', '11', '8838675990', '', 'dhaarabhaskar@gmail.com', '2000-01-13', 23, '1', '2', 'Baskar p', 'Gas agency', 21000.00, 1, 0.00, 18000.00, 'Chennai tondiarpet', 'Chennai tondiarpet', '2304260011', '', '1', 'upload_files/candidate_tracker/6661689118_Resume_Dhaara_Format1.pdf', NULL, '1', '2023-04-26', 0, 'P1269', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'average communication... long run doubts..seems like no job need..', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-26 03:33:53', 1, '2023-04-26 03:40:06', 0, NULL, 1),
(12523, 'Dineshbabu S', '13', '9585339081', '', 'dineshbabu292001@gmail.com', '2001-01-29', 22, '3', '2', 'Shanmugam', 'Agriculture', 10000.00, 1, 0.00, 300000.00, 'Vellore', 'Vellore', '2304260012', '', '1', 'upload_files/candidate_tracker/75419889799_0_Document from @Dineshbabu.pdf', NULL, '1', '2023-04-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not ,much comfort with the TxxampC not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-26 04:37:21', 1, '2023-04-26 04:39:18', 0, NULL, 1),
(12524, 'Madhavan. K', '13', '6385116032', '9092445421', 'km045123@gmail.com', '2000-04-14', 23, '3', '2', 'R . Krishna moorthy', 'Scrab iron', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2304260013', '', '1', 'upload_files/candidate_tracker/9119175958_Madhavan k.docx', NULL, '1', '2023-04-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-26 04:51:42', 1, '2023-04-26 05:36:36', 0, NULL, 1),
(12525, 'abishek u', '2', '7550259062', '9841234789', 'uabishek6@gmail.com', '1996-12-06', 26, '3', '2', 'uma Shankar', 'business', 200000.00, 1, 180000.00, 200000.00, 'Chennai', 'Chennai', '2304260014', '', '2', 'upload_files/candidate_tracker/62086253524_RESUME - 2023 2.pdf', NULL, '1', '2023-04-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-26 05:09:04', 1, '2023-04-26 05:14:12', 0, NULL, 1),
(12526, 'Arulmozhi', '21', '8754537272', '8438244110', 'arulmozhibalajee@gmail.com', '1989-03-16', 34, '6', '1', 'Balaji', 'Mechanical Engineer', 60000.00, 1, 22000.00, 26000.00, 'Ponniammanmedu', 'Ponniammanmedu', '2304260015', '', '2', 'upload_files/candidate_tracker/27277468798_Arul latest res.pdf', NULL, '1', '2023-04-26', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-26 07:18:31', 1, '2023-04-26 07:25:29', 0, NULL, 1),
(12527, 'arun v', '23', '9626898328', '', 'vijayakumaarun01@gmail.com', '1999-05-28', 23, '3', '2', 'vijayakumar r', 'driver', 20000.00, 1, 0.00, 15000.00, 'perambalur', 'chennai ramapuram', '2304270001', '', '1', 'upload_files/candidate_tracker/83604005379_ARUN_Resume.pdf', NULL, '1', '2023-04-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-27 12:04:58', 1, '2023-04-27 12:23:08', 0, NULL, 1),
(12528, 'Ahmed Rashid A', '14', '8754407069', '', 'ahmedrashid619@gmail.com', '2001-12-01', 21, '6', '2', 'Ahamed Sabir', 'Retired', 20000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2304270002', '', '1', 'upload_files/candidate_tracker/23598607837_AHMEDRASHIDA-F.pdf', NULL, '1', '2023-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-27 07:19:52', 1, '2023-04-27 07:22:29', 0, NULL, 1),
(12529, 'Noorul sameena', '11', '9994704527', '', 'noorulsameena001@gmail.com', '1997-11-23', 25, '2', '1', 'Mohamed rabeek katharia', 'Fresher', 20000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Chennai, adayar', '2304270003', '1', '1', 'upload_files/candidate_tracker/24892508033_Sam_resume.docx', NULL, '1', '2023-04-27', 0, '', '3', '59', '2023-04-28', 144000.00, '', '3', '2023-06-28', '2', 'Selected for Operations team in consultant Role', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-27 09:56:21', 60, '2023-04-29 10:27:08', 0, NULL, 1),
(12530, 'Sadham', '13', '6383237078', '', 'sadham7937@gmail.com', '2001-11-09', 21, '6', '2', 'Aarun', 'Tailor', 20000.00, 2, 0.00, 15000.00, 'Tirupur', 'Chennai', '2304270004', '', '1', 'upload_files/candidate_tracker/42546953071_SADHAM.pdf', NULL, '1', '2023-04-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-27 10:04:37', 1, '2023-04-27 10:08:57', 0, NULL, 1),
(12531, 'Memme', '11', '9551360581', '', 'memmejayakumar1999@gmail.com', '1999-07-16', 23, '2', '2', 'Jayakumar', 'Cashier', 50000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2304270005', '1', '1', 'upload_files/candidate_tracker/56577368313_RESUME1.pdf', NULL, '1', '2023-04-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-27 10:25:41', 101, '2023-04-27 02:41:17', 0, NULL, 1),
(12532, 'NETHRA SHREE M', '13', '8072342085', '', 'narmadamaheshsdhana@gmail.com', '2000-02-27', 23, '6', '2', 'MAHES WARAN V', 'CONDUCTOR', 15000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2304270006', '', '1', 'upload_files/candidate_tracker/7987064233_NETHRASHREE_UPDATED_2023.pdf', NULL, '1', '2023-04-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Good In Prog.Lau... sHe Need Time To Check With  His Parent ....About TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-27 10:48:56', 1, '2023-04-27 10:52:48', 0, NULL, 1),
(12533, 'Venkatesh k', '13', '9585159058', '', 'shivavenkat03044@gmail.com', '1998-12-04', 24, '3', '2', 'Kannan D', 'Business', 20000.00, 2, 0.00, 250000.00, 'Kanchipuram', 'Kanchipuram', '2304270007', '', '1', 'upload_files/candidate_tracker/4262285292_venkatesh resume (1).pdf', NULL, '1', '2023-04-27', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-27 11:57:52', 101, '2023-04-28 07:06:39', 0, NULL, 1),
(12534, 'Karthick', '13', '7397632042', '', 'rkarthickr04@gmail.com', '1999-01-04', 24, '3', '2', 'Raju S', 'Farmer', 20000.00, 1, 0.00, 250000.00, 'Sivagiri, Tenkasi', 'Shenoy Nagar, Chennai', '2304270008', '', '1', 'upload_files/candidate_tracker/54028504006_KARTHICK (1).pdf', NULL, '1', '2023-04-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-27 11:59:58', 1, '2023-04-27 12:05:20', 0, NULL, 1),
(12535, 'neelavannan', '13', '9500300286', '', 'neela204060@gmail.com', '1998-06-09', 24, '6', '2', 'vasu', 'electrician', 15000.00, 2, 0.00, 21000.00, 'kanchipuram', 'kanchipuram', '2304270009', '', '1', 'upload_files/candidate_tracker/72512113806_neelaa.pdf', NULL, '1', '2023-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-27 12:01:00', 1, '2023-04-27 12:50:03', 0, NULL, 1),
(12536, 'Harini venkatesan', '11', '7358232613', '', 'hanihani2613@gmail.com', '2001-09-13', 21, '3', '2', 'Venkatesan', 'Employee', 200000.00, 1, 200000.00, 300000.00, 'Chennai', 'Chromepet', '2304270010', '', '2', 'upload_files/candidate_tracker/66365705837_cv.pdf', NULL, '1', '2023-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-27 12:17:53', 1, '2023-04-27 12:21:42', 0, NULL, 1),
(12537, 'Harish k', '13', '9080363542', '', 'harishspallers22@gmail.com', '2000-01-20', 23, '3', '2', 'Karuna nithi', 'Business', 50000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2304270011', '', '1', 'upload_files/candidate_tracker/81652377693_Harish Resume IT.pdf', NULL, '1', '2023-04-28', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'good in skills planning for higher studies in canada in next 2yrs.. long run doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-27 12:22:16', 1, '2023-04-27 12:36:56', 0, NULL, 1),
(12538, 'Vignesh v', '13', '9176811569', '', 'vvigneshvicky2001@gmail.com', '2001-10-06', 21, '3', '2', 'P. vinayagam', 'Daily wages', 72000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2304270012', '', '1', 'upload_files/candidate_tracker/22849173902_Vignesh New Resume (2) (1)_compressed.pdf', NULL, '1', '2023-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-27 12:38:10', 1, '2023-04-27 01:03:34', 0, NULL, 1),
(12539, 'B.praveen', '13', '8825977411', '9444683155', 'praveen.anusuyababu@gmail.com', '2001-04-29', 21, '3', '2', 'K.babu', 'BCA', 100000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2304270013', '', '1', 'upload_files/candidate_tracker/14409934700_PraveenB_CV-2.docx', NULL, '1', '2023-04-27', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'seems like not intersted in IT ... ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-27 12:40:23', 97, '2023-04-29 05:50:43', 0, NULL, 1),
(12540, 'Suresh kannan J', '31', '9080848246', '', 'sureshkannansk99@gmail.com', '1999-10-20', 23, '3', '2', 'Jeganathan V', 'Government retired teacher', 50000.00, 1, 0.00, 16000.00, 'Tiruchirappalli', 'Tambaram', '2304270014', '', '1', 'upload_files/candidate_tracker/28598171956_Suresh kannan.pdf', NULL, '1', '2023-05-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-27 02:55:58', 1, '2023-04-29 10:06:46', 0, NULL, 1),
(12541, 'Vishal Kumar K K', '5', '9788255848', '9843832584', 'vk660141@gmail.com', '1999-02-24', 24, '2', '2', 'Kumaraguruparan V', 'Ex-serviceman', 25000.00, 1, 27000.00, 27000.00, 'Manaparai,Trichy', 'Chennai', '2304270015', '1', '2', 'upload_files/candidate_tracker/4643201281_Vishal Kumar.resume (1).pdf', NULL, '1', '2023-04-29', 0, '', '3', '59', '2023-05-08', 280000.00, '', '', '2023-05-13', '1', 'Selected for Sarath Team with PF/PT', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-27 05:37:10', 60, '2023-05-08 09:44:15', 0, NULL, 1),
(12542, 'R.Madhankumar', '13', '9789613985', '9789403985', 'madhankumarraja6@gmail.com', '2002-05-06', 20, '6', '2', 'V.raja', 'Weaver', 15000.00, 2, 0.00, 2.00, '421/c, Ovaiyar street,ADB NAGER, sevoor', 'Arni', '2304280001', '', '1', 'upload_files/candidate_tracker/59468582110_Madhankumar.pdf', NULL, '1', '2023-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-28 08:01:32', 1, '2023-04-28 08:06:18', 0, NULL, 1),
(12543, '', '0', '9345264233', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304280002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-28 11:01:18', 0, NULL, 0, NULL, 1),
(12544, 'udayanan', '5', '9003141824', '', 'udayananvenkat@gmail.com', '1996-03-24', 27, '2', '2', 'venkatesan', 'fitter', 25000.00, 1, 360000.00, 450000.00, 'chennai tambaram', 'tambaram chennai', '2304280003', '1', '2', 'upload_files/candidate_tracker/93570993211_Uday_Resume.pdf', NULL, '1', '2023-04-28', 0, '', '3', '59', '2023-05-03', 400000.00, '', '3', '2023-06-29', '1', 'Selected for GK sir Team with commitment min 1.5L business in May 2023 then 4.2 L from June2023 onwards', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-04-28 11:24:27', 60, '2023-05-03 02:37:40', 0, NULL, 1),
(12545, 'J.DINESH KUMAR', '13', '8825434035', '', 'dhina1327@gmail.com', '1996-03-26', 27, '6', '2', 'C.JAWAHAR', 'Police', 70000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2304280004', '', '1', 'upload_files/candidate_tracker/14750558526_Dinesh IT Resume.pdf', NULL, '1', '2023-04-28', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-28 11:30:28', 1, '2023-04-28 12:15:22', 0, NULL, 1),
(12546, 'RAMKI M', '13', '9345319189', '', 'Sivaraman30598@gmail.com', '1998-05-30', 24, '6', '2', 'Murugan k', 'Coolie', 15000.00, 5, 0.00, 25000.00, 'Sankarankovil', 'Chennai', '2304280005', '', '1', 'upload_files/candidate_tracker/55365402518_RAMKI.pdf', NULL, '1', '2023-04-28', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-28 11:31:39', 1, '2023-04-28 12:15:56', 0, NULL, 1),
(12547, '', '0', '8072807533', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304280006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-28 11:52:17', 0, NULL, 0, NULL, 1),
(12548, 'K.mohan', '14', '9025289978', '5127192050', 'mohanlal408316@gmail.com', '2002-06-03', 20, '3', '2', 'Govinthammal', 'Student', 36.00, 1, 0.00, 25000.00, '410, salaiyanoor colony, Kalasapakkam', '410, salaiyanoor colony, Kalasapakkam', '2304280007', '', '1', 'upload_files/candidate_tracker/87023252825_Kmohan.pdf', NULL, '3', '2023-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-28 12:11:51', 1, '2023-04-28 01:53:45', 0, NULL, 1),
(12549, '', '0', '7806928020', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304280008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-28 12:23:49', 0, NULL, 0, NULL, 1),
(12550, 'mouli r', '13', '9677924016', '', 'moulir2426@gmail.com', '2000-01-24', 23, '6', '2', 'raja m', 'business', 20000.00, 1, 0.00, 350000.00, 'dharmapuri - tamilnadu', 'bangalore - karnataka', '2304280009', '', '1', 'upload_files/candidate_tracker/83703264759_Mouli_Full stack Developer_Python_2022.pdf', NULL, '1', '2023-04-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'has 6m internship exp in bang..now currently doi his internship with 15k ..sal exp 3.5lpa  above..long run doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-28 12:25:20', 1, '2023-04-28 12:49:18', 0, NULL, 1),
(12551, 'K.nithya', '13', '7604949371', '9677061970', 'Nithyasairamk@gmail.com', '2000-05-19', 22, '3', '2', 'K.padmini', 'Asstidant for admin', 50000.00, 1, 15000.00, 25000.00, 'T.Nagar', 'T.Nagar', '2304280010', '', '2', 'upload_files/candidate_tracker/30801389958_nitya.pdf', NULL, '1', '2023-04-28', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable for Our Roles no topen for TxxampC will not sustain', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-28 12:36:28', 97, '2023-04-29 06:03:02', 0, NULL, 1),
(12552, 'ishwarya k r', '13', '8754333190', '', 'ishwaryayou@gmail.com', '2000-12-31', 22, '6', '2', 'pandiyammal k', 'assistant - govt agricultural engineering dept', 28000.00, 0, 0.00, 350000.00, 'madurai', 'chennai', '2304280011', '', '1', 'upload_files/candidate_tracker/77982765043_Resume KR .pdf', NULL, '1', '2023-04-28', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Good In Prog.Lau... she Need Time To Check With  His Parents..About TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-28 12:50:06', 1, '2023-04-28 12:56:50', 0, NULL, 1),
(12553, '', '0', '8939247054', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304280012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-28 02:29:24', 0, NULL, 0, NULL, 1),
(12554, '', '0', '6369646140', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304280013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-28 03:13:29', 0, NULL, 0, NULL, 1),
(12555, 'Padmapriya D', '31', '8056295793', '', 'padmapriyadr2k@gmail.com', '2000-09-08', 22, '3', '2', 'Dhakshinamoorthy K', 'Sub - Inspector', 500000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2304280014', '', '1', 'upload_files/candidate_tracker/60898509883_PADMAPRIYA_D.pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have basic knowledge but not much family need is there settled focusing much on the salary only will not sustain and not suitable for our roles', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-28 03:15:32', 1, '2023-04-28 03:18:35', 0, NULL, 1),
(12556, '', '0', '9962909049', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304280015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-28 03:44:46', 0, NULL, 0, NULL, 1),
(12557, '', '0', '9629559508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304280016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-28 04:01:02', 0, NULL, 0, NULL, 1),
(12558, '', '0', '9840167811', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304280017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-28 04:39:54', 0, NULL, 0, NULL, 1),
(12559, 'Lokesh M', '13', '7395857170', '', 'lokesh40818@gmail.com', '2001-07-12', 21, '3', '2', 'Murugan M', 'Former', 30000.00, 1, 0.00, 15000.00, 'Arni, Sirumoor 632314', 'Arni, Sirumoor', '2304280018', '', '1', 'upload_files/candidate_tracker/63660241951_Lokesh M-RESUME.pdf', NULL, '1', '2023-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-28 04:50:52', 1, '2023-04-28 06:04:53', 0, NULL, 1),
(12560, 'Thamizhmagan G', '13', '9942773253', '', 'thamizhmagang2000@gmail.com', '2000-02-23', 23, '1', '2', 'Gandhi M', 'Farmar', 15000.00, 1, 0.00, 15000.00, 'Potharai', 'Potharai', '2304280019', '', '1', 'upload_files/candidate_tracker/80966445091_G.Thamizhmagan Resume.pdf', NULL, '1', '2023-04-29', 0, '2304280019', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-28 05:58:05', 1, '2023-04-28 06:13:26', 0, NULL, 1),
(12561, 'Senthilkumar P', '13', '7358803861', '9994220147', 'senthilkumar7358803861@gmail.com', '2001-04-23', 22, '3', '2', 'V.K.Palani', 'Motar Mechanic', 25000.00, 1, 0.00, 20000.00, 'Walajapet', 'Walajapet', '2304280020', '', '1', 'upload_files/candidate_tracker/11276973157_Senthilkumar-SBCEC ARNI-B.Tech IT (1).pdf', NULL, '1', '2023-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-28 06:21:22', 1, '2023-04-28 06:26:29', 0, NULL, 1),
(12562, 'Hariharan', '31', '7871559095', '', 'hariharan12671@gmail.com', '2000-11-30', 22, '3', '2', 'Selvi', '10000', 10000.00, 1, 0.00, 350000.00, 'Chennai', 'Perambalur', '2304280021', '', '1', 'upload_files/candidate_tracker/86510304303_HARIHARAN.pdf', NULL, '1', '2023-05-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-28 06:27:54', 1, '2023-04-28 06:30:18', 0, NULL, 1),
(12563, 'Dines Kumar', '31', '8489581580', '', 'dineshpct45@gmail.com', '1999-10-22', 23, '3', '2', 'Sankar.v', 'Driver', 50000.00, 1, 0.00, 25000.00, 'Kallaukichi', 'Kallaukichi', '2304290001', '', '1', 'upload_files/candidate_tracker/55372773683_pdf_20230410_202518_0000.pdf', NULL, '1', '2023-04-28', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-29 07:14:31', 101, '2023-05-02 11:58:48', 0, NULL, 1),
(12564, '', '0', '8939465767', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304290002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-29 10:07:27', 0, NULL, 0, NULL, 1),
(12565, 'PRAVEEN S', '13', '8124439303', '9500720993', 'praveensibi303@gmail.com', '2000-11-28', 22, '6', '2', 'SIBICHAKKARAVARTHY', 'RTD. Fire and Rescue service (Station Officer)', 20000.00, 2, 0.00, 15000.00, '12/11A, East Street no 9, Hasthampatti, Salem.', 'Salem', '2304290003', '', '1', 'upload_files/candidate_tracker/2474166075_PRAVEEN S.pdf', NULL, '1', '2023-04-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-29 10:41:03', 1, '2023-04-29 10:46:11', 0, NULL, 1),
(12566, 'Anitha. A', '13', '9025640122', '', 'anithadhanam205@gmail.com', '2000-10-12', 22, '3', '2', 'Ayyanar', 'Farmer', 8000.00, 2, 0.00, 250000.00, 'Ottampattu', 'Chennai', '2304290004', '', '1', 'upload_files/candidate_tracker/23317539858_Anitha.A(Resume).pdf', NULL, '1', '2023-04-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-29 10:55:44', 1, '2023-04-29 11:00:57', 0, NULL, 1),
(12567, 'Mariyam siddiqua', '5', '7305659189', '9500199443', 'Mariyamsid16@gmail.com', '2003-04-01', 20, '2', '1', 'Dhansheela', 'House wife', 100000.00, 2, 22000.00, 25000.00, 'Chennai', 'Chennai', '2304290005', '1', '2', 'upload_files/candidate_tracker/69748970729_mariyam update resume.pdf', NULL, '1', '2023-04-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok But Final Round Reject Gokul Salary High Exp ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-04-29 11:02:31', 101, '2023-04-29 04:03:46', 0, NULL, 1),
(12568, 'Isha.R', '4', '6380973472', '9962903212', 'ishu20513@gmail.com', '2003-01-13', 20, '3', '2', 'J.D.Ravi kumar', 'Screen printing', 15.00, 0, 0.00, 20000.00, 'Thiruvotriyur', 'Nellikaran st thiruvotriyur chennai-19', '2304290006', '', '1', 'upload_files/candidate_tracker/82394848911_Resume_ISHA.R_Format7 (4).pdf', NULL, '1', '2023-04-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-29 11:03:42', 1, '2023-04-29 11:16:48', 0, NULL, 1),
(12569, 'DILLIPUSHPAM C', '6', '7358570730', '9500003611', 'dillismart9841@gmail.com', '2002-01-02', 21, '3', '1', 'Rajesh.R', 'Clerk', 15000.00, 0, 0.00, 20000.00, 'MADHAVARAM CHENNAI 600051', 'MADHAVARAM CHENNAI 600051', '2304290007', '', '1', 'upload_files/candidate_tracker/55856296820_Resume_DILLI PUSHPAM.C_Format6 (2)-1.pdf', NULL, '1', '2023-04-29', 0, '', '3', '59', '2023-05-04', 164208.00, '', '3', '2023-05-30', '2', 'Selected for Suthagar Team in Staff Role', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-29 11:06:18', 60, '2023-05-03 05:58:15', 0, NULL, 1),
(12570, 'Prasanna Kumar sJ', '4', '7395979720', '9840223167', 'bsbprasannakumarsj@gmail.com', '2002-11-16', 20, '3', '2', 'Sagaria v.c sekar', 'Church pastor', 12000.00, 0, 0.00, 15000.00, 'No37 Veeragahavan Road tollgate chennai', 'No37 Veeragahavan road tollgate chennai', '2304290008', '', '1', 'upload_files/candidate_tracker/13061692624_resume prasanna .pdf', NULL, '1', '2023-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-29 11:06:30', 1, '2023-04-29 11:17:24', 0, NULL, 1),
(12571, 'Mugilarasan.R', '4', '7550018595', '9087736876', 'raghul2003007@gmail.com', '2003-03-20', 20, '3', '2', 'Rajamani.L', 'Steel polish', 18000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2304290009', '', '1', 'upload_files/candidate_tracker/15207404347_Resume_MUGILARASAN.R_Format6.pdf', NULL, '1', '2023-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-29 11:07:48', 1, '2023-04-29 11:16:38', 0, NULL, 1),
(12572, 'Hema.s', '6', '7358626574', '9884626574', 'kphema2000@gmail.com', '2000-06-06', 22, '4', '2', 'K.p.saratht', 'Printer', 50000.00, 1, 1.00, 18000.00, 'Chennai', 'Chennai', '2304290010', '', '2', 'upload_files/candidate_tracker/96937797897_ Kamalesh Y resume ????.pdf', NULL, '1', '2023-04-29', 1, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected, not suitable for our role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-29 11:25:49', 97, '2023-04-29 05:28:06', 0, NULL, 1),
(12573, 'R.vicithra', '6', '9384269107', '9710059955', 'vicithravici15@gmail.com', '2001-06-15', 21, '4', '2', 'Ravichandren', 'Chennai', 50000.00, 1, 12000.00, 18000.00, 'Chennai', 'Chennai', '2304290011', '', '2', 'upload_files/candidate_tracker/16772704273_RESUME.pdf', NULL, '1', '2023-04-29', 1, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate shortlist expect salary 18k he is already take home 14.5k ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-29 11:25:56', 97, '2023-04-29 06:01:27', 0, NULL, 1),
(12574, 'DHARMARAJ RK', '23', '8220679906', '', 'rajrkd50@gmail.com', '1998-05-16', 24, '6', '2', 'RAMASAMY', 'Tailor', 13000.00, 1, 0.00, 18000.00, 'Palladam', 'Porur', '2304290012', '', '1', 'upload_files/candidate_tracker/57003698548_resume-compressed.pdf', NULL, '1', '2023-04-29', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good In Prog.Lau... He Need Time To Check With  His Parents..About TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-29 12:48:54', 85, '2023-04-29 06:00:45', 0, NULL, 1),
(12575, 'Suriya Sugan. S', '23', '6369403908', '8098536643', 's.suryasugan@gmail.com', '1999-11-21', 23, '6', '2', 'V. K selvakumar', 'Farmers', 25000.00, 1, 0.00, 20000.00, 'Erode perundurai', 'Porur', '2304290013', '', '1', 'upload_files/candidate_tracker/57096079524_Result (3).pdf', NULL, '1', '2023-04-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'good in prog.lau... he need time to check with  his parents..about txxampc', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-29 12:48:55', 1, '2023-04-29 01:19:11', 0, NULL, 1),
(12576, 'Shaheen mubeen d', '6', '9677053894', '7695918159', 'shaheenmubeen15@gmail.com', '1994-07-15', 28, '3', '1', 'Syed Ajaz', 'Front office executive', 30000.00, 4, 20000.00, 25000.00, '33/1 tippu Street ROYAPPETHA', 'Chennai', '2304290014', '', '2', 'upload_files/candidate_tracker/49544062862_shah bba new 21-1.docx', NULL, '1', '2023-04-29', 30, '', '3', '59', '2023-05-08', 228000.00, '', '', '2023-05-09', '1', 'Selected for Consultant Role Suthagar Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-29 03:54:23', 60, '2023-05-06 07:38:59', 0, NULL, 1),
(12577, 'Mohamed Aslam', '6', '9655046336', '9486419128', 'Mdmohamedaslam16@gmail.com', '1998-01-16', 25, '4', '2', 'CHAN bASHA', 'Driver', 30000.00, 1, 17500.00, 18000.00, 'Sathyamangalam', 'Chennai', '2304290015', '', '2', 'upload_files/candidate_tracker/244218689_21298 res.docx', NULL, '1', '2023-04-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Suthagar Team but later he didnt respond the calls ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-29 04:06:44', 85, '2023-04-29 06:27:05', 0, NULL, 1),
(12578, '', '0', '9344224848', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2304290016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-04-29 06:12:32', 0, NULL, 0, NULL, 1),
(12579, 'Wasiullah', '22', '7010916842', '', 'wasiullah007wasi@gmail.com', '2001-12-07', 21, '3', '1', 'A. Chanbasha', 'Business', 20000.00, 1, 0.00, 18000.00, 'Tirupattur', 'Chennai vadapalani', '2304290017', '', '1', 'upload_files/candidate_tracker/98978812986_Wasiullah.C.V..pdf', NULL, '1', '2023-05-04', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communicaiton Average Have basic knowledge kindly check andlet me know your inputs', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-04-29 11:21:17', 101, '2023-05-04 10:50:10', 0, NULL, 1),
(12580, 'T.Arunsrianand', '22', '6380686511', '9940730643', 'arunsrianand@gmail.com', '2002-02-28', 21, '3', '2', 'Thanikachalam', 'School coruspondent', 100000.00, 2, 0.00, 150000.00, 'Vaniyambadi', 'Chennai', '2304300001', '', '1', 'upload_files/candidate_tracker/52884737818_Arun Sri Anand Resume 001.pdf', NULL, '1', '2023-05-03', 0, '', '4', '69', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok Fresher have basics in Digital Marketing can be trained kindly check and let meknow your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-04-30 04:46:04', 1, '2023-04-30 05:17:00', 0, NULL, 1),
(12581, 'K O VIJAY', '5', '8919166974', '', 'kovijay2000@gmail.com', '2000-06-09', 22, '2', '2', 'K g osuru', 'Weaving', 10000.00, 3, 0.00, 15000.00, '1-157/1, New kota street Narayanavanam. Tpt Dst.', 'Saidapet Chennai', '2305020001', '1', '1', 'upload_files/candidate_tracker/60012841441_K O VIJAY.pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Yet to complete his graduation 5 more months to go will not handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-02 06:32:16', 85, '2023-05-02 05:09:16', 0, NULL, 1),
(12582, 'Praveen', '4', '9003092425', '', 'praveendj15@gmail.com', '1998-11-04', 24, '3', '2', 'Jagan', 'Tellecaller', 40000.00, 1, 16000.00, 18000.00, 'Kundrathur', 'Kundrathur', '2305020002', '', '2', 'upload_files/candidate_tracker/72098023221_Bantu.Resume 4.docx', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left Without Attending', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 09:53:39', 1, '2023-05-02 12:10:47', 0, NULL, 1),
(12583, 'Surya', '13', '7358275084', '9841755011', 'suryasurya09926@gmail.com', '2000-07-28', 22, '3', '2', 'Kannathasan', 'Carpenter', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2305020003', '', '1', 'upload_files/candidate_tracker/67963071616_suryasurya0992@gmail FE (1).pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 10:11:28', 1, '2023-05-02 10:15:21', 0, NULL, 1),
(12584, 'Hariharan J', '13', '9578481300', '9080445960', 'hariharanj.jagan@gmail.com', '1999-04-22', 24, '3', '1', 'Jeganathan P', 'Agriculture', 15000.00, 0, 0.00, 17000.00, 'Tiruppur', 'Chennai', '2305020004', '', '1', 'upload_files/candidate_tracker/94743542203_Hariharan Resume (1).pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 10:13:28', 1, '2023-05-02 10:16:59', 0, NULL, 1),
(12585, 'santosh', '13', '8124739546', '9841618237', 'santoshrs191002@gmail.com', '2002-10-19', 20, '6', '2', 'varalakshmi s', 'ervuce', 250000.00, 2, 0.00, 15000.00, 'henna', 'chennai', '2305020005', '', '1', 'upload_files/candidate_tracker/40042487660_Santosh .pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 10:20:40', 1, '2023-05-02 10:25:40', 0, NULL, 1),
(12586, 'ragul m', '13', '8608214952', '', 'raguljack21@gmail.com', '2003-02-21', 20, '6', '1', 'g.madurai', 'auto dri', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2305020006', '', '1', 'upload_files/candidate_tracker/15794145107_Resume - Ragul.pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 10:21:38', 1, '2023-05-02 10:58:25', 0, NULL, 1),
(12587, 'P BOSEMANO', '13', '7550141668', '', 'bosepavi007@gmail.com', '2002-11-10', 20, '3', '2', 'S.PALANI', 'Lpg delivery man', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2305020007', '', '1', 'upload_files/candidate_tracker/62266637539_Resume - BOSE.pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 10:22:12', 1, '2023-05-02 10:29:33', 0, NULL, 1),
(12588, 'prabhudharan t', '13', '9840318929', '', 'prabhudharan.t@gmail.com', '1997-06-07', 25, '6', '2', 'thoppaganesan', 'farmer', 5000.00, 1, 0.00, 300000.00, 'salem', 'chennai', '2305020008', '', '1', 'upload_files/candidate_tracker/83777516202_Prabhudharan T.pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain Not interested', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 10:22:41', 1, '2023-05-02 10:30:33', 0, NULL, 1),
(12589, 'Prasanth. S', '23', '9751581267', '', 'prasanthsrinivasan2001@gmail.com', '2001-10-14', 21, '3', '2', 'Srinivasan', 'Ramco cement', 25000.00, 0, 0.00, 20000.00, 'Rajapalayam', 'Thousands lights', '2305020009', '', '1', 'upload_files/candidate_tracker/40165913712_Prasanth S RESUME.pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain not open for timings', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 10:29:44', 1, '2023-05-02 10:36:52', 0, NULL, 1),
(12590, 'Guhan Raj M', '13', '6374262700', '', 'guhanraj2112@gmail.com', '2002-12-02', 20, '6', '2', 'Malaikannan V', 'Tea shop', 120000.00, 2, 0.00, 15000.00, 'Karikalan Street voc Nagar,Pammal,ch-75', 'Karikalan Street voc nagar,pammal,ch-75', '2305020010', '', '1', 'upload_files/candidate_tracker/92806377278_GUHAN RESUME.docx', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 10:31:39', 1, '2023-05-02 10:48:05', 0, NULL, 1),
(12591, 'harrish prabhakaran', '13', '8220932321', '', 'harishfreeky027@gmail.com', '2001-12-12', 21, '3', '2', 'selvaraj s', 'daily wages', 24000.00, 1, 0.00, 20000.00, 'aruppukottai', 'thousand lights', '2305020011', '', '1', 'upload_files/candidate_tracker/74408917578_Harrish.pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1015', '0', NULL, NULL, NULL, 1, '2023-05-02 10:31:57', 1, '2023-05-02 12:37:38', 0, NULL, 1),
(12592, 'R.BARATH', '13', '6374264699', '', 'barath0643@gmail.com', '2002-12-26', 20, '3', '2', 'JT.RAMESH', 'Accountant', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2305020012', '', '1', 'upload_files/candidate_tracker/65929912541_Resume - Barath-1.pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 10:34:02', 1, '2023-05-02 10:37:56', 0, NULL, 1),
(12593, 'SARAVANAN M', '13', '7448754160', '9677960329', 'shikersaran403@gmail.com', '2003-08-10', 19, '6', '2', 'MADASAMY S', 'Small Grocery Store', 15000.00, 1, 0.00, 15000.00, 'Kanchipuram', 'Kanchipuram', '2305020013', '', '1', 'upload_files/candidate_tracker/1615422948_MY_RESUME SARAVANAN.pdf', NULL, '1', '2023-05-02', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have basic knowledge can be trained need to come with his confirmation on TxxampC if he comes back let us try\n', '2', '2', '0', '1', '1', '0', '2', '2023-05-04', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 11:48:54', 1, '2023-05-02 11:53:41', 0, NULL, 1),
(12594, 'Vasantha kumar', '13', '8012206032', '8608090967', 'vasanthmona.689@gmail.com', '1995-12-06', 27, '6', '1', 'Palaniyammal', 'Home marker', 10000.00, 1, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2305020014', '', '1', 'upload_files/candidate_tracker/27187391665_vasanth resume.pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 11:49:55', 1, '2023-05-02 11:59:13', 0, NULL, 1),
(12595, 'Muthukumar', '5', '6380445905', '', 'Muthukumat435@gmail.com', '1999-01-16', 24, '2', '2', 'Murugan', 'Police', 60000.00, 1, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2305020015', '1', '1', 'upload_files/candidate_tracker/46514417129_0_Muthu 99.pdf', NULL, '3', '2023-05-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Networking and system admin exp will not handle the work pressure will not sustain not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-02 11:55:47', 85, '2023-05-02 05:05:29', 0, NULL, 1),
(12596, 'Sathiyanarayanan E', '13', '7094549316', '6374391205', 'sathiya.e2000@gmail.com', '2000-08-12', 22, '6', '2', 'Elangovan k', 'Daily labour', 15000.00, 1, 0.00, 240000.00, '1/69, Avvaiyar street,V.palayam , Villupuram', 'No 24, Ramnagar 1street, Vijaya nagar , Velachery', '2305020016', '', '1', 'upload_files/candidate_tracker/58920812070_Sathiya CV.pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not much strong with basics need to learn a lot not open for TxxampC will not sustain if comes back with comfort on TxxampC let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 11:56:33', 1, '2023-05-02 12:04:52', 0, NULL, 1),
(12597, 'shaheera firdous', '4', '9345160890', '7338762677', 'shaheerafirdous5@gmail.com', '1999-09-03', 0, '3', '2', 'fathima', 'telecaller', 3000000.00, 1, 20000.00, 23000.00, 'henna', 'hennai', '2305020017', '', '2', 'upload_files/candidate_tracker/15212931841_Heera.resume.docx', NULL, '3', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 11:58:20', 1, '2023-05-02 12:06:08', 0, NULL, 1),
(12598, 'Arunprasath M', '13', '6374391205', '9789236387', 'imarunmac@gmail.com', '2000-03-01', 23, '6', '2', 'Muthuvel S', 'Fisherman', 50000.00, 2, 0.00, 2.00, 'Ramanathapuram', 'Chennai', '2305020018', '', '1', 'upload_files/candidate_tracker/94999198497_ArunPrasathM (2).pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 12:01:25', 1, '2023-05-02 12:04:56', 0, NULL, 1),
(12599, '', '0', '7358424011', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305020019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-02 12:18:20', 0, NULL, 0, NULL, 1),
(12600, 'Mohammed meeran.j', '27', '8754562589', '', 'Mohammedmeeran865@gmail.com', '1996-06-10', 26, '3', '2', 'Jalalmoideen.I', 'Auto driver', 45000.00, 1, 16000.00, 20000.00, '16/6round building Anna Nagar West Chennai 600101.', 'Mogappair west', '2305020020', '', '2', 'upload_files/candidate_tracker/57089957243_RESUME DATA PROFILE-1.pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication not suitable for Sales calling and not suits for backend operations role too', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 12:46:36', 1, '2023-05-02 12:55:52', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12601, 'SAIKHUL AMIN', '4', '8249064937', '8763364671', 'saikhul027@gmail.com', '1994-06-23', 28, '2', '2', 'Amanulla khan', 'Shopkeeper', 30000.00, 4, 400000.00, 500000.00, 'Odisha', 'Chennai', '2305020021', '1', '2', 'upload_files/candidate_tracker/20674974440_SAIKHUL AMIN.pdf', NULL, '1', '2023-05-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Local language have exp in calling but no sustainability in the previous exp Pressure handling doubts not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-02 01:01:46', 85, '2023-05-02 05:08:18', 0, NULL, 1),
(12602, 'Muralidhar Kulkarni', '4', '8296964796', '', 'murlikulkarni33@gmail.com', '1998-04-30', 25, '4', '2', 'Shridhar Kulkarni', 'PUC', 40000.00, 1, 18000.00, 25000.00, 'House no 329 Kumarswamy Layout Belagavi', 'No 3 Garavepallya', '2305020022', '', '2', 'upload_files/candidate_tracker/53276125064_Muralidhar-Kulkarni-Process-Executive-resume-2023-04-07-080336.pdf', NULL, '1', '2023-05-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-02 01:34:30', 1, '2023-05-02 01:40:19', 0, NULL, 1),
(12603, 'K. Pandidurai', '4', '7397022873', '7339338138', 'Pandidurai1905@gmail.com', '1999-05-09', 23, '2', '1', 'Revathi', 'Former', 30000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2305020023', '1', '1', 'upload_files/candidate_tracker/24014109571_TemplateCoverLetter1658784151237.pdf', NULL, '1', '2023-05-03', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-02 06:18:56', 101, '2023-05-03 09:38:23', 0, NULL, 1),
(12604, '', '0', '7010574570', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305020024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-02 08:17:39', 0, NULL, 0, NULL, 1),
(12605, 'N.Swetha', '6', '9629235319', '7010497789', 'swethasowmi2001@gmail.com', '2001-09-06', 21, '2', '2', 'A .Nalachakkaravarthi -N.Muthamilselvi', 'Auto Driver', 12000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2305020025', '1', '1', 'upload_files/candidate_tracker/70851086450_Swetha.N-2.docx', NULL, '1', '2023-05-03', 0, '', '3', '59', '2023-05-08', 144000.00, '', '', '2023-05-10', '1', 'Selected for Thanjavur Team in Consultant role', '5', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-02 08:42:59', 60, '2023-05-04 06:46:19', 0, NULL, 1),
(12606, 'Karthick I', '13', '9080078494', '6384803235', 'Karthickkarthi0139@gmail.com', '2000-08-15', 22, '6', '2', 'Inbaraj', 'Full stack developer', 7000.00, 2, 0.00, 20000.00, 'Thiruvalangadu, Thiruvallur(Dist).', 'Thiruvalangadu, Thiruvallur(Dist).', '2305030001', '', '1', 'upload_files/candidate_tracker/49179691782_Karthick resume.pdf', NULL, '1', '2023-05-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics In Javascript Not Much Comfort In TxxampC Need To Come Back With Her ConfirmationNo understanding', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-03 09:11:36', 1, '2023-05-03 09:20:58', 0, NULL, 1),
(12607, 'Sudarshan K', '13', '9003232479', '9176578859', 'sudarshan.tri1994@gmail.com', '1999-07-08', 23, '6', '2', 'Kamalakkannan R', 'RTO PA', 12.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2305030002', '', '1', 'upload_files/candidate_tracker/59104262252_Resume (2).pdf', NULL, '2', '2023-05-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basics In Javascript Not Much Comfort In TxxampC Need To Come Back With Her Confirmation', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-03 11:55:26', 1, '2023-05-03 11:57:56', 0, NULL, 1),
(12608, 'Arun', '13', '7397063785', '7418785876', 'arunmohan0622@gmail.com', '2001-06-22', 21, '3', '2', 'Mohan', 'Former', 20000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2305030003', '', '1', 'upload_files/candidate_tracker/2926906701_Arun Mohan RESUME.pdf', NULL, '1', '2023-05-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basics In PHP Javascript Not Much Comfort In TxxampC Need To Come Back With Her Confirmation', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-03 11:55:33', 1, '2023-05-03 12:00:06', 0, NULL, 1),
(12609, 'Balachandran', '23', '9444328330', '', 'gjbalan@gmail.com', '1967-05-26', 55, '6', '1', 'Kavitha', 'Housewife', 70000.00, 0, 1350000.00, 1000000.00, 'Chennai', 'Chennai', '2305030004', '', '2', 'upload_files/candidate_tracker/61862047982_Resume-1.docx', NULL, '1', '2023-05-03', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Aged Canddiate Very High CTC 13.85 LPA', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-03 11:57:22', 1, '2023-05-03 12:22:27', 0, NULL, 1),
(12610, 'Karthick.m', '14', '9080134122', '6369739624', 'karthickboy859@gmail.com', '1997-05-16', 25, '6', '2', 'Murugan', 'Former', 12000.00, 1, 18000.00, 28000.00, 'Panruti', 'CHENNAI', '2305030005', '', '2', 'upload_files/candidate_tracker/49341046258_karthick cv -2023.pdf', NULL, '1', '2023-05-03', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher  have 6 months Fluter Not Much Comfort In TxxampC Need To Come Back With Her Confirmation Left with out attending the next round', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-03 12:10:58', 1, '2023-05-03 12:22:48', 0, NULL, 1),
(12611, '', '0', '9787950087', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305030006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-03 12:11:20', 0, NULL, 0, NULL, 1),
(12612, 'Gopalakrishnan Ravi', '13', '9952111559', '8248604246', 'Krishna43835@gmail.com', '1999-09-21', 23, '3', '2', 'Ravi', 'Fullstack Web Developer.', 20000.00, 0, 0.00, 25000.00, 'Karaikudi, Sivagangai.', 'Perungalathur, Chennai.', '2305030007', '', '1', 'upload_files/candidate_tracker/5997366267_gopalakrishnanravi-resume(1).pdf', NULL, '1', '2023-05-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-03 12:22:06', 1, '2023-05-03 12:41:59', 0, NULL, 1),
(12613, 'Sasikala.m', '13', '8531052717', '', 'Sasikalai2109@gmail.com', '2000-07-12', 22, '6', '2', 'Murugaiya', 'Ayanavaram', 15000.00, 1, 0.00, 20000.00, 'Thiruvadanai', 'Ayanavaram', '2305030008', '', '1', 'upload_files/candidate_tracker/32486987919_sasikalamurugaiya-resume(1)(1)-1.pdf', NULL, '1', '2023-05-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Basics In Javascript Not Much Comfort In TxxampC Need To Come Back With Her Confirmation Salary exp is high and looking for Campus opportunities', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-03 12:23:58', 1, '2023-05-03 12:28:45', 0, NULL, 1),
(12614, '', '0', '9360200359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305030009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-03 12:27:23', 0, NULL, 0, NULL, 1),
(12615, 'Nirmala', '13', '9344543706', '9787950087', 'snirmala54321@gmail.com', '1994-03-31', 29, '6', '1', 'Kaviyarasan', 'Business', 40000.00, 1, 0.00, 15000.00, 'Sivagangai', 'Chennai', '2305030010', '', '1', 'upload_files/candidate_tracker/85693427303_Nirmalang.pdf', NULL, '1', '2023-05-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics In Javascript Not Much Comfort In TxxampC Need To Come Back With Her Confirmation', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-03 12:42:24', 1, '2023-05-03 12:56:16', 0, NULL, 1),
(12616, 'Prem raj s v', '4', '8939281193', '9940202811', 'premrajsp68@gmail.com', '1999-05-15', 23, '1', '2', 'Venkatesh', 'Job', 120000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2305030011', '', '1', 'upload_files/candidate_tracker/83578530338_SV PREMRAJ.docx-1.pdf', NULL, '1', '2023-05-03', 0, '55577', '3', '59', '2023-05-05', 180000.00, '', '5', '1970-01-01', '1', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-03 01:39:01', 60, '2023-05-04 06:08:51', 0, NULL, 1),
(12617, 'Arunkumar R', '16', '6380529822', '9789697600', 'arunkumar.ravi8299@gmail.com', '1999-02-08', 24, '2', '2', 'Ravi N', 'Carpenter', 40000.00, 1, 15647.00, 20000.00, 'Chennai', 'Chennai', '2305030012', '1', '2', 'upload_files/candidate_tracker/57196838930_ARUNKUMAR R_RESUME_NEW.pdf', NULL, '1', '2023-05-04', 31, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communciaiton Average Not much comfort in Semivoice need to come back with his confiormaiton', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-03 02:05:37', 85, '2023-05-04 10:14:22', 0, NULL, 1),
(12618, 'Sahira ahmed', '5', '9361404151', '', 'Sahiraahmed95@gmail.com', '1995-04-30', 28, '3', '2', 'Thahira', 'B. Com (CA) computer application', 20000.00, 5, 20000.00, 25.00, 'Mount road', 'Greams road', '2305030013', '', '2', 'upload_files/candidate_tracker/55391804970_Sahira CV.docx', NULL, '1', '2023-09-07', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude Have Exp in calling scheduled with Shanmugam sir for 2nd level but left without attending', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-03 03:10:18', 108, '2023-09-07 06:32:55', 0, NULL, 1),
(12619, 'L.Swarnalakshxmi', '13', '8122074920', '', 'sowmiyaswarna97@gmail.com', '1997-10-14', 25, '3', '2', 'Loganathan Malathi', 'Retired', 10000.00, 0, 0.00, 18000.00, 'Chennai', 'Tnagar', '2305030014', '', '1', 'upload_files/candidate_tracker/54646717766_soumiyaswarna97gmail.com (1) 98945 (1).pdf', NULL, '1', '2023-05-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No basics in Javascript Need to  train a lot Not much comfort in TxxampC Need to come back with her confirmation', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-03 04:08:57', 1, '2023-05-03 04:13:36', 0, NULL, 1),
(12620, 'Ahamed Saifullah', '13', '9514469146', '', 'ahamed.saif2527@gmail.com', '1998-12-27', 24, '3', '2', 'habeeb hussain', 'business', 50000.00, 2, 25000.00, 50000.00, 'tirunelveli', 'Chennai', '2305030015', '', '2', 'upload_files/candidate_tracker/47417128134_Resume-0922-new (1).pdf', NULL, '1', '2023-05-04', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Very High CTC Exp Holding Several Offers Have 2 yrs Exp sustainability Doubts need to check  via task', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-03 05:01:33', 1, '2023-05-03 05:15:22', 0, NULL, 1),
(12621, '', '0', '8217581554', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305030016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-03 06:18:56', 0, NULL, 0, NULL, 1),
(12622, '', '0', '8870983368', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305030017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-03 09:27:29', 0, NULL, 0, NULL, 1),
(12623, '', '0', '8778111328', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305030018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-03 09:51:40', 0, NULL, 0, NULL, 1),
(12624, 'JOHN ROHITH.T', '4', '8220123763', '7092443299', 'johnrohith1006@gmail.com', '2001-05-10', 21, '2', '2', 'THOMAS', 'Driver', 13000.00, 1, 0.00, 18.00, 'Chennai', 'Chennai', '2305040001', '1', '1', 'upload_files/candidate_tracker/30420113885_JOHN new .pdf', NULL, '1', '2023-05-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Non Voice No Communication willl not sustain and not suitable for our roles', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-04 01:20:30', 85, '2023-05-04 10:14:38', 0, NULL, 1),
(12625, 'Vishal', '16', '9025190164', '7092311476', 'vvvishal717@gmail.com', '2000-11-13', 22, '2', '2', 'Kandhan', 'Painter', 40000.00, 1, 10000.00, 17000.00, 'No 156 e block s.v.m nager otteri Chennai-600012', 'No 156 E Block S.V.M Nager Otteri Chennai-600012', '2305040002', '1', '2', 'upload_files/candidate_tracker/53311866469_DOC Vishal resume.docx', NULL, '1', '2023-05-05', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not suitable for Operations not open for Sales too', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-04 07:44:35', 85, '2023-05-05 05:52:09', 0, NULL, 1),
(12626, 'Govindaraj S', '23', '7094309494', '', 'govindarajcs103@gmail.com', '2000-03-10', 23, '3', '2', 'Shanmugam', 'Farmer', 5000.00, 0, 0.00, 15000.00, '2 Murugan street, Aadambakkam,chennai', 'Aadambakkam', '2305040003', '', '1', 'upload_files/candidate_tracker/71567463957_Govindaraj Resume.pdf', NULL, '1', '2023-05-04', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not much strong with basics  need to come bac with his confirmation', '2', '1', '0', '1', '8', '0', '2', '2023-05-17', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 09:57:43', 1, '2023-05-04 10:09:25', 0, NULL, 1),
(12627, 'Kathirvel P', '13', '9514584161', '', 'kathir1999kathir@gmail.com', '1999-12-26', 23, '6', '2', 'Palani.A', 'Driver', 15000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2305040004', '', '1', 'upload_files/candidate_tracker/37060896996_KathirvelResume.pdf', NULL, '1', '2023-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Java Profile Not Open For TxxampC Will Not Sustaina', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 10:19:09', 1, '2023-05-04 10:35:54', 0, NULL, 1),
(12628, 'Yasotha C', '13', '9363310578', '', 'yasotha791@gmail.com', '2000-06-17', 22, '6', '2', 'Chandran K', 'Farmer', 30000.00, 2, 0.00, 15000.00, 'Perambalur', 'Tambaram', '2305040005', '', '1', 'upload_files/candidate_tracker/7444141764_Resume_Yasotha C.pdf', NULL, '1', '2023-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java Profile not open for TxxampC will not sustaina', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 10:20:29', 1, '2023-05-04 10:28:25', 0, NULL, 1),
(12629, 'Indhumathi V', '13', '8056789258', '', 'indhumathi682000@gmail.com', '2000-08-06', 22, '6', '2', 'Vaithiyanathan T', 'Farmer', 38000.00, 2, 0.00, 15000.00, 'Mayiladuthurai', 'Tambaram', '2305040006', '', '1', 'upload_files/candidate_tracker/45363541888_CV_202304212234073.pdf', NULL, '1', '2023-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Java Profile Not Open For TxxampC Will Not Sustaina', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 10:21:17', 1, '2023-05-04 10:26:48', 0, NULL, 1),
(12630, 'Pooja B', '13', '6381934398', '6382055701', 'poojakbalasubramaniyan@gmail.com', '1999-11-28', 23, '3', '2', 'Balasubramaniyan k,Kavitha B', 'Merchant', 20000.00, 1, 0.00, 350000.00, 'Nagapattinam', 'Chennai', '2305040007', '', '1', 'upload_files/candidate_tracker/48150965353_Resume Pooja.pdf', NULL, '1', '2023-05-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 10:21:35', 1, '2023-05-04 10:27:19', 0, NULL, 1),
(12631, 'GOVARSHNI.P', '13', '7695899765', '', 'varshnigo@gmail.com', '2000-01-11', 23, '6', '2', 'PAZHAMALAI', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'ARIYULAR', 'CHENNAI', '2305040008', '', '1', 'upload_files/candidate_tracker/24376914561_GOVARSHNI.P.pdf', NULL, '1', '2023-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Java Profile Not Open For TxxampC Will Not Sustaina', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 10:22:15', 1, '2023-05-04 10:29:55', 0, NULL, 1),
(12632, 'K Subiya sri', '13', '6369946178', '9626478556', 'kannansubiyasri@gmail.com', '2002-09-19', 20, '3', '2', 'Kanann', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Thiruvannamalai', 'Tambaram', '2305040009', '', '1', 'upload_files/candidate_tracker/76691877015_K. Ssubiya.pdf', NULL, '1', '2023-05-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 10:27:20', 1, '2023-05-04 10:35:47', 0, NULL, 1),
(12633, 'Yesu Pragasa Ajith', '14', '7397299493', '', 'yesupragasaajith@gmail.com', '1999-09-02', 23, '3', '2', 'Paul Raj', 'Business', 10000.00, 4, 0.00, 200000.00, 'Thoothukudi', 'Chennai', '2305040010', '', '1', 'upload_files/candidate_tracker/81221735202_Yesu Update Res.pdf', NULL, '1', '2023-05-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 10:35:25', 1, '2023-05-04 10:39:51', 0, NULL, 1),
(12634, 'Mohamed Nameer', '13', '9345400255', '', 'nameer688@gmail.com', '2001-07-11', 21, '1', '2', 'Abdul kareem', 'Cheif', 15000.00, 1, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2305040011', '', '1', 'upload_files/candidate_tracker/368564710_Nameer\'s Resume.pdf', NULL, '1', '2023-05-04', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Need To Learn A Lot In Basics Not Much Comfort In TxxampC Need Time To Check And Confirm If Coming Back Let Us Try Manikandan 2nd round interviewed\n', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 11:14:49', 1, '2023-05-04 11:22:14', 0, NULL, 1),
(12635, 'Deepa', '20', '9344894342', '9345787836', 'Deepaedison42@gmail.com', '1997-12-12', 25, '2', '1', 'Edison', 'Telecaller', 15000.00, 0, 15000.00, 20000.00, 'Kallakurichi', 'Mogappair west', '2305040012', '1', '2', 'upload_files/candidate_tracker/80823405339_DEEPA RESUM-1.pdf', NULL, '1', '2023-05-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped Final HR Round not responding the calls sent her message and there was no revert till date', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-04 11:23:26', 1, '2023-05-04 12:44:14', 0, NULL, 1),
(12636, 'SIVASANGARN', '13', '9514014695', '8778560992', 'sangarankarthi@gmail.com', '2001-03-20', 22, '6', '2', 'MUTHU K', 'Supervisor', 30000.00, 2, 0.00, 15000.00, 'Cuddalore', 'Velachery', '2305040013', '', '1', 'upload_files/candidate_tracker/73402040657_My Resume.pdf', NULL, '1', '2023-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Need To Learn A Lot In Basics Not Much Comfort In TxxampC Need Time To Check And Confirm If Coming Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 11:42:42', 1, '2023-05-04 11:47:50', 0, NULL, 1),
(12637, 'SUBA SARGURU A', '13', '8072510596', '9942113100', 'sarguru1110@gmail.com', '2000-11-10', 22, '3', '2', 'Ambalavanan k', 'agri forman(retired)', 40000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Velachery', '2305040014', '', '1', 'upload_files/candidate_tracker/34286457627_Suba\'s Resume (2).pdf', NULL, '1', '2023-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Need To Learn A Lot In Basics Not Much Comfort In TxxampC Need Time To Check And Confirm Will not sustain ', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 11:51:26', 1, '2023-05-04 12:03:07', 0, NULL, 1),
(12638, 'Z.PremSolomon', '4', '9840589420', '7299865938', 'premsolomon579@gmail.com', '1990-08-21', 32, '2', '2', 'Z.Maryglory', 'House -wife', 12000.00, 1, 11000.00, 13000.00, 'No 10 Ekangipuram 3rd Street Ayanavaram Chennai', 'Ayanavaram', '2305040015', '1', '2', 'upload_files/candidate_tracker/36284511673_DOC-20230408-WA0011..docx', NULL, '3', '2023-05-05', 90, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication will not sustain with us no sustainability', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2023-05-04 01:21:39', 1, '2023-05-04 01:48:43', 0, NULL, 1),
(12639, 'J.MADHULA VERONICA', '13', '9840379653', '9445664167', 'madhula.veronica@gmail.com', '2000-09-22', 22, '6', '2', 'J.JOSEPH CYRIL BABU', 'Asst Divisional Manager in LIC OF INDIA', 300000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2305040016', '', '1', 'upload_files/candidate_tracker/58777712596_Madhula Resume (1).pdf', NULL, '1', '2023-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Need to learn a lot in basics not much comfort in TxxampC need time to check and confirm if coming back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 02:12:38', 1, '2023-05-04 02:17:56', 0, NULL, 1),
(12640, 'Bharathi Bharathi', '4', '6369517657', '8428474388', 'Kuttyponnubharathi@gmail.com', '1993-12-14', 29, '3', '2', 'Sivagamisunderamoorthi. S', 'Telecaller', 28.00, 1, 16.00, 18.00, 'CHENNAI', 'CHENNAI', '2305040017', '', '2', 'upload_files/candidate_tracker/62376933932_resume.pdf', NULL, '1', '2023-05-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-04 04:17:03', 1, '2023-05-04 04:24:03', 0, NULL, 1),
(12641, '', '0', '8122112893', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305040018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-04 04:44:37', 0, NULL, 0, NULL, 1),
(12642, 'Sasikala k', '5', '9787273440', '', 'sasikalarasipuram92@gmail.com', '1991-04-05', 32, '2', '1', 'Mailavan', 'Bpo', 25000.00, 2, 17000.00, 22000.00, 'Madipakkam', 'Madipakkam', '2305040019', '1', '2', 'upload_files/candidate_tracker/66718250964_RESUME Sasikala pdf.pdf', NULL, '1', '2023-05-06', 0, '', '3', '59', '2023-05-10', 234000.00, '', '5', '1970-01-01', '2', 'Selected for Karthika Team in ESales', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-04 06:00:28', 60, '2023-05-09 07:15:30', 0, NULL, 1),
(12643, 'Sayan chakraborty', '5', '9663491091', '', 'scapdj666@gmail.com', '1996-01-20', 27, '2', '2', 'Jaba chakraborty', 'Family business', 50000.00, 0, 320000.00, 550000.00, 'Alipurduar,west Bengal', 'Bangalore,india', '2305040020', '1', '2', 'upload_files/candidate_tracker/77939144081_1 (1).pdf', NULL, '1', '2023-05-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-04 07:56:47', 85, '2023-05-05 09:59:42', 0, NULL, 1),
(12644, '', '0', '6379263105', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305040021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-04 09:42:48', 0, NULL, 0, NULL, 1),
(12645, 'Anupallavi', '16', '9677065036', '', 'anukalaiselvi23@gmail.com', '1997-12-23', 25, '2', '2', 'Arumugam', 'Business', 200000.00, 1, 260000.00, 375000.00, 'Moolakadai', 'Moolakadai', '2305050001', '1', '2', 'upload_files/candidate_tracker/38559464374_Anupallaviresume.PDF', NULL, '1', '2023-05-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Processeed for 2nd level Operation but left without attending the interview', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1015', '0', NULL, NULL, NULL, 1, '2023-05-05 09:52:56', 1, '2023-05-05 10:00:57', 0, NULL, 1),
(12646, 'K RAJESH', '13', '9629261718', '', 'rajsmart30579@gmail.com', '2000-12-20', 22, '6', '1', 'Kumar', 'Lorry driver', 25000.00, 1, 0.00, 2.50, 'Gudiyatam Vellore', 'Chennai', '2305050002', '', '1', 'upload_files/candidate_tracker/38759747084_Edited Resume.pdf', NULL, '1', '2023-05-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not ,Much Comfort With The TxxampC Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-05 10:21:46', 1, '2023-05-05 10:26:53', 0, NULL, 1),
(12647, '', '0', '9626261718', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305050003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-05 10:30:56', 0, NULL, 0, NULL, 1),
(12648, 'Saravanan S', '2', '6374548793', '8675539479', 'Saravanans2806@gmail.com', '1996-06-28', 26, '3', '2', 'Sundaram v', 'Farming', 300000.00, 0, 0.00, 240000.00, 'Erode', 'Chennai', '2305050004', '', '1', 'upload_files/candidate_tracker/65078704368_SAR29 IT-WP-4.pdf', NULL, '1', '2023-05-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not ,Much Comfort With The TxxampC Not Suitable', '2', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-05 10:54:33', 1, '2023-05-05 10:58:31', 0, NULL, 1),
(12649, 'S.Mahesh', '16', '7448658773', '', 'maheshmaddy0702@gmail.com', '2001-04-02', 22, '2', '2', 'S.sankar', 'MTC bus conductor', 40000.00, 1, 17000.00, 19000.00, 'Kilpuak', 'Kilpuak', '2305050005', '1', '2', 'upload_files/candidate_tracker/28210092713_Mahesh PDF.pdf', NULL, '1', '2023-05-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication no open for Sales too will not sustain', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-05 10:56:06', 85, '2023-05-05 05:50:45', 0, NULL, 1),
(12650, 'B Roselin', '5', '9360633351', '9176894889', 'roselin436519@gmail.com', '2002-10-19', 20, '2', '2', 'G Baskar Daniel', 'Own company', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2305050006', '1', '1', 'upload_files/candidate_tracker/44771475822_AF33DABA-7929-4F1F-989B-6AB446A2996F.pdf', NULL, '1', '2023-05-06', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-05 11:05:15', 85, '2023-05-06 10:49:18', 0, NULL, 1),
(12651, 'Hari Hara Subramanian S', '5', '8754749715', '', 'hariharasubramanian19@gmail.com', '1994-12-19', 28, '4', '2', 'S Sivakumar', 'Insurance Advisor', 50000.00, 1, 340000.00, 700000.00, 'Thanjavur', 'Thanjavur', '2305050007', '', '2', 'upload_files/candidate_tracker/61146867468_S Hari Hara Subramanian CV.pdf', NULL, '1', '2023-05-05', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Long EXp Holding several IRDA certi Holding an offer with Bajaj for 5.5 will not sustain not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-05 11:55:17', 1, '2023-05-05 12:01:26', 0, NULL, 1),
(12652, 'P VIJAYA KUMAR', '13', '7550129141', '7401624574', 'vjvijay260600@gmail.com', '2000-06-26', 22, '6', '2', 'T PRAKASH', 'Kothanar', 16000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2305050008', '', '1', 'upload_files/candidate_tracker/35049632315_Vijay update resume 2023 fullstack_compressed.pdf', NULL, '1', '2023-05-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not ,Much Comfort With The TxxampC Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-05 11:56:28', 1, '2023-05-05 12:07:24', 0, NULL, 1),
(12653, 'Udhaya G', '6', '6380893873', '', 'udhaymanish707@gmail.com', '1998-04-20', 25, '3', '2', 'Govindharaj', 'Former', 15000.00, 3, 0.00, 18000.00, 'Tiruvallur', 'Tiruvallur', '2305050009', '', '2', 'upload_files/candidate_tracker/11079273628_UDHAYA - RESUME.pdf', NULL, '3', '2023-05-05', 15, '', '3', '59', '2023-06-01', 232332.00, '', '0', NULL, '1', 'Selected for Charles Team DM in Staff Role', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-05 11:57:19', 1, '2023-05-05 12:00:48', 0, NULL, 1),
(12654, '', '0', '8895524745', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305050010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-05 12:18:16', 0, NULL, 0, NULL, 1),
(12655, 'Pushpalatha V', '5', '8248106686', '9841678866', 'poojatrisha2020@gmail.com', '2002-04-05', 21, '2', '2', 'Devi. V', 'Sales Woman in showroom', 7000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2305050011', '1', '1', 'upload_files/candidate_tracker/32866822844_Pushpalatha - CV (1) 1.pdf', NULL, '1', '2023-05-06', 0, '', '3', '59', '2023-05-15', 151584.00, '', '5', '1970-01-01', '2', 'Selected for B2B in consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-05 12:51:46', 60, '2023-05-12 06:00:28', 0, NULL, 1),
(12656, 'VIGNESH M', '4', '9342164966', '9962347560', 'vicky100m@gmail.com', '1991-04-18', 32, '2', '1', 'Afrin', 'Self', 24000.00, 1, 24000.00, 30000.00, 'Chennai', 'Chennai', '2305050012', '1', '2', 'upload_files/candidate_tracker/6855075314_VIGNESH M Curiculam vitae.docx', NULL, '1', '2023-05-06', 0, '', '3', '59', '2023-05-10', 375000.00, '', '5', '1970-01-01', '1', 'Selected for backend operations have 10+ yrs exp worked in Satr heakth can be trained', '1', '2', '4', '1', '8', '1', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-05 01:13:50', 60, '2023-05-23 05:29:50', 0, NULL, 1),
(12657, 'M Divya', '22', '8778281236', '9003615278', 'divya.mahalingam5@gmail.com', '1998-11-28', 24, '6', '2', 'S Mahalingam', 'Ex Income Tax', 100000.00, 1, 25000.00, 32000.00, 'No 108, 6th cross street, senthil nagar, Kolathur', 'No 108, 6th Cross Street, Senthil Nagar, Kolathur', '2305050013', '', '2', 'upload_files/candidate_tracker/21947341169_Resume04052023.pdf', NULL, '1', '2023-05-05', 0, '', '4', '69', NULL, 0.00, '', '0', NULL, '1', 'Communication is good have exp in Digital  Can give a try kindly check and let me know your inputs', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-05 01:19:28', 1, '2023-05-05 01:23:49', 0, NULL, 1),
(12658, '', '0', '6361003854', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305050014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-05 02:31:10', 0, NULL, 0, NULL, 1),
(12659, '', '0', '9025986738', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305050015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-05 02:48:23', 0, NULL, 0, NULL, 1),
(12660, 'Mohammed Nayeem J', '8', '8056820052', '9710293325', 'jmdnayeem65@gmail.com', '1997-01-06', 26, '2', '2', 'Aliya', 'House wife', 24000.00, 2, 14000.00, 25000.00, '25/6 Alexander road dashamakkan otteri chennai', '25/6 Alexander Road Dashamakkan Otteri Chennai', '2305050016', '1', '2', 'upload_files/candidate_tracker/76427037379_Mohamed Resume.docx', NULL, '1', '2023-05-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sal exp is high not much strong with the basics', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '4', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-05 04:59:10', 85, '2023-05-06 10:49:33', 0, NULL, 1),
(12661, '', '0', '8072006350', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305050017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-05 05:51:12', 0, NULL, 0, NULL, 1),
(12662, 'Vignesh', '5', '8220023096', '', 'vgnshmoorthy@gmail.com', '1993-12-31', 29, '2', '2', 'Chandramoorthy', 'Unemployed', 40000.00, 0, 30000.00, 40000.00, 'Mannargudi', 'Adambakkam,Chennai', '2305050018', '1', '2', 'upload_files/candidate_tracker/1413533851_vignesh business development excecutive.pdf', NULL, '1', '2023-05-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-05 10:36:00', 85, '2023-05-06 10:50:08', 0, NULL, 1),
(12663, 'Saranya H', '5', '9176563523', '8190815326', 'saransaranyaa446@gmail.com', '2002-07-03', 20, '2', '2', 'Hari Babu .R', 'Driver', 9000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2305060001', '1', '1', 'upload_files/candidate_tracker/95555391032_Document (1).docx', NULL, '1', '2023-05-06', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'bit nervous fresher can be trained kindly check and confirm the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-06 09:43:11', 101, '2023-05-06 10:27:26', 0, NULL, 1),
(12664, 'Nandhini. J', '5', '8248102161', '7871620331', 'nandhinijayakumar863@gmail.com', '2003-10-17', 19, '2', '2', 'Jayakumar. G', 'Self employee', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2305060002', '1', '1', 'upload_files/candidate_tracker/80557391670_DOC-20230105-WA0004.pdf', NULL, '1', '2023-05-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher will not sustain need to checj with familt and confirm', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-06 10:09:03', 101, '2023-05-06 10:27:43', 0, NULL, 1),
(12665, 'Edwin j', '6', '7358226083', '9283774621', 'edwinedwin8953@gmail.com', '1998-05-30', 24, '1', '2', 'Joseph, sagayamary', 'Artist', 15000.00, 2, 0.00, 17000.00, '42,Dinesh nagar ayanamppakam Chennai 95', '42,Dinesh Nagar Ayanamppakam Chennai 95', '2305060003', '', '1', 'upload_files/candidate_tracker/93697865818_CV_2023041221204734.pdf', NULL, '1', '2023-05-06', 0, 'P1066', '5', '102', NULL, 0.00, '', '0', NULL, '2', 'Not suitable sale ', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-06 10:29:34', 1, '2023-05-06 10:42:22', 0, NULL, 1),
(12666, 'Hari haran', '6', '9597182439', '', 'Hari.mohanaaeangan@gmail.com', '1999-09-06', 23, '4', '2', 'Mohanaarangan  , parimala', 'Farmer', 15000.00, 2, 0.00, 15000.00, '7/1 , balaji nagar, Attaiyam patti, salem', '6 , amudha street, velachery', '2305060004', '', '1', 'upload_files/candidate_tracker/11322428888_Hariharan Resume.pdf', NULL, '1', '2023-05-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-06 10:29:52', 1, '2023-05-06 10:37:00', 0, NULL, 1),
(12667, 'Manoj kumar', '13', '9952093427', '', 'mk7864842@gmail.com', '2008-05-06', 0, '3', '2', 'Baskaran', 'Security', 13.00, 1, 0.00, 350000.00, 'Minjur, Chennai', 'Minjur, Chennai', '2305060005', '', '1', 'upload_files/candidate_tracker/10738021686_Manojkumar.pdf', NULL, '1', '2023-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Opend For TxxampC Will Not Sustain', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-06 10:41:21', 1, '2023-05-06 10:46:50', 0, NULL, 1),
(12668, 'dhivya k', '16', '8925620914', '7904012355', 'dhivyakathiravan69@gmail.com', '2000-04-14', 23, '1', '2', 'Kathiravan', 'self employed', 19000.00, 1, 200000.00, 300000.00, 'chennai', 'puzhal chennai', '2305060006', '', '2', 'upload_files/candidate_tracker/83158155108_DhivyaK1y_3m-Updated Resume.pdf', NULL, '1', '2023-05-06', 0, '55577', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance Looking for non voice will  not sustain', '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-06 10:45:48', 1, '2023-05-06 11:02:35', 0, NULL, 1),
(12669, 'M.keerthika', '16', '9361845419', '7550242057', 'keerthika2420@gmail.com', '2001-01-01', 22, '1', '2', 'J.manoharan', 'Coolie', 20000.00, 1, 0.00, 300000.00, '5/304 pasumpon st, Ottiyambakkam ch-126', '5/304 pasumpon st, Ottiyambakkam ch-126', '2305060007', '', '1', 'upload_files/candidate_tracker/33274323774_keerthika resume.pdf', NULL, '1', '2023-05-06', 0, '55577', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Opend For TxxampC Will Not Sustain', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-06 10:47:47', 1, '2023-05-06 11:08:58', 0, NULL, 1),
(12670, 'Sanjay Deivanathan', '16', '7550242057', '9361845419', 'sanjaydeivanathan@gmail.com', '2002-07-01', 20, '3', '2', 'Deivanathan', 'Ship (foreman)', 30000.00, 0, 0.00, 3.00, 'Chennai', 'Chennai', '2305060008', '', '1', 'upload_files/candidate_tracker/25571258623_Sanjay Resume.pdf', NULL, '1', '2023-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Opend For TxxampC Will Not Sustain', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-06 10:49:41', 1, '2023-05-06 11:09:00', 0, NULL, 1),
(12671, 'VIGNESH', '4', '9962347560', '', 'rm2275346@gmail.com', '1991-04-18', 32, '3', '1', 'V afrin', 'Self', 24000.00, 1, 0.00, 31000.00, 'Chennai', 'Chennai', '2305060009', '', '2', 'upload_files/candidate_tracker/86501668787_VIGNESH M Curiculam vitae.docx', NULL, '1', '2023-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-06 10:55:44', 1, '2023-05-06 10:58:34', 0, NULL, 1),
(12672, 'Yogeswaran S', '13', '8778683560', '', 'Ywaran500@gmail.com', '1999-05-31', 23, '3', '2', 'Shanmugam G', 'Salesman', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2305060010', '', '1', 'upload_files/candidate_tracker/46827507967_Yogeswaran Resume.pdf', NULL, '1', '2023-05-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-06 11:04:56', 101, '2023-05-17 05:52:58', 0, NULL, 1),
(12673, 'RAGINI S', '6', '9003062870', '', 'rahinishanmugam18@gmail.com', '2000-04-18', 23, '2', '2', 'Shanmugam c', 'Mason', 15000.00, 0, 0.00, 20000.00, 'Chennai', 'chennai', '2305060011', '1', '1', 'upload_files/candidate_tracker/39521410940_Resume Ragini.pdf', NULL, '1', '2023-05-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no JS basics came as a group and will not join if others are not joining Sustainability doubts not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-06 11:06:00', 104, '2024-02-17 12:56:26', 0, NULL, 1),
(12674, 'Aishwarya', '4', '7397267699', '', 'aishwaryamuniraj22511@gmail.com', '1998-11-05', 24, '1', '2', 'Muniyaraj', 'Printing press', 18000.00, 0, 16000.00, 20000.00, 'Guindy', 'Guindy', '2305060012', '', '2', 'upload_files/candidate_tracker/1862213_Aishu .M Resume 21.04.23.pdf', NULL, '1', '2023-05-06', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-06 11:35:24', 1, '2023-05-06 11:50:30', 0, NULL, 1),
(12675, 'Benisha', '13', '8148737552', '8270809060', 'benishabeni21@gmail.co', '1996-12-21', 26, '6', '2', 'S .Bennet', 'Business', 25000.00, 2, 11000.00, 15000.00, 'Kanyakumari. TamilNadu', 'Vadapalani,chennai', '2305060013', '', '2', 'upload_files/candidate_tracker/61238654073_1683205069353_newresume.docx', NULL, '1', '2023-05-06', 7, '', '3', '59', '2023-05-17', 120000.00, '', '0', NULL, '2', 'Selected for Backend node with stipend Viswa', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-06 12:16:33', 1, '2023-05-06 12:27:00', 0, NULL, 1),
(12676, 'ramya', '13', '8680056578', '8883972494', 'ramyasiva161@gmail.com', '1998-06-03', 24, '6', '2', 'ravikumar', 'borewells driver', 50000.00, 2, 0.00, 400000.00, 'trichy', 'chennai', '2305060014', '', '1', 'upload_files/candidate_tracker/9439999978_RAMYA R.pdf', NULL, '1', '2023-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not opend for TxxampC will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-06 12:18:39', 1, '2023-05-06 12:22:57', 0, NULL, 1),
(12677, 'Mahalakshmi', '4', '9940539431', '9962559965', 'laksmiraj111@gmail.com', '2001-01-01', 22, '3', '2', 'Rajendiran', 'Auto driver', 15000.00, 2, 15000.00, 20000.00, 'Jafferkhan pet', 'Jafferkhan pet', '2305060015', '', '2', 'upload_files/candidate_tracker/73410456463_Maha new resume pdf .pdf', NULL, '1', '2023-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-06 12:20:36', 1, '2023-05-06 12:29:12', 0, NULL, 1),
(12678, '', '0', '7676324827', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305060016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-06 04:42:38', 0, NULL, 0, NULL, 1),
(12679, '', '0', '8190815343', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305060017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-06 05:01:17', 0, NULL, 0, NULL, 1),
(12680, 'Akash', '5', '7449117995', '9176185620', 'akashvalentine03@gmail.com', '2001-02-02', 22, '2', '2', 'Akash', 'Sales', 15000.00, 2, 130000.00, 20000.00, 'Chennai', 'Chennai', '2305060018', '1', '2', 'upload_files/candidate_tracker/66139472715_resume (1).pdf', NULL, '1', '2023-05-08', 0, '', '8', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '2nd round Abscond', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-06 05:52:03', 101, '2023-05-08 02:45:11', 0, NULL, 1),
(12681, 'S A Rajkumar', '28', '6381198363', '9629195326', 'rajrk4043@gmail.com', '1999-10-19', 23, '3', '2', 'A SELVI', 'Tailor', 30000.00, 1, 25000.00, 30000.00, 'Vellore', 'Vellore', '2305060019', '', '2', 'upload_files/candidate_tracker/57479336754_Rajkumar.pdf', NULL, '1', '2023-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for non voice only Communication will not be proper stamerring\n', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-06 10:12:46', 1, '2023-05-09 11:22:10', 0, NULL, 1),
(12682, 'Aswini M', '33', '9444785280', '', 'aswinimohan444@gmail.com', '2001-11-13', 21, '2', '2', 'Mohan A', 'Working in tea shop', 8000.00, 1, 0.00, 16000.00, 'Chengalpattu', 'Chengalpattu', '2305070001', '1', '1', 'upload_files/candidate_tracker/67355443075_ASWINI RESUME.pdf', NULL, '1', '2023-05-08', 0, '', '3', '59', '2023-05-15', 151584.00, '', '5', '1970-01-01', '1', 'Selected for B2B in Consultant Role', '4', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-07 10:35:04', 60, '2023-05-12 06:02:00', 0, NULL, 1),
(12683, 'M.sowmiya', '33', '7708698827', '', 'Sowmiyamuruganantham1234@gmail.com', '2001-07-28', 21, '2', '2', 'Muruganantham', 'Cooli', 8000.00, 1, 0.00, 16000.00, 'Chengalpattu', 'Chengalpattu', '2305070002', '1', '1', 'upload_files/candidate_tracker/35788333390_SowmiyaResume.pdf', NULL, '1', '2023-05-08', 0, '', '3', '59', '2023-05-15', 151584.00, '', '5', '1970-01-01', '1', 'Selected for B2B in Consultant Role', '4', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-07 10:48:01', 104, '2023-06-24 05:51:55', 0, NULL, 1),
(12684, '', '0', '9566213395', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305080001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-08 01:54:06', 0, NULL, 0, NULL, 1),
(12685, 'Krushna Jagdale', '13', '7350427701', '', 'krushjagdale@gmail.com', '2001-12-22', 21, '6', '2', 'NA', 'Mechanical Engineering', 35000.00, 2, 0.00, 3.50, 'Aurangabad Maharashtra', 'Aurangabad', '2305080002', '', '1', 'upload_files/candidate_tracker/94307530229_Krushna Jagdale resume.pdf', NULL, '2', '2023-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication no local language only hindi and  marathi', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-08 09:26:57', 1, '2023-05-08 09:31:48', 0, NULL, 1),
(12686, 'Harish Kumar', '13', '9659078358', '9003830837', 'usernameissharish@gmail.com', '1998-10-12', 24, '4', '2', 'Alagar samy', 'Coolie', 120000.00, 2, 0.00, 15000.00, 'Madurai', 'Madurai', '2305080003', '', '1', 'upload_files/candidate_tracker/90303465593_Final resume(1).pdf', NULL, '1', '2023-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-08 10:04:22', 1, '2023-05-08 10:10:06', 0, NULL, 1),
(12687, 'M. Tamil arasan', '6', '8015765726', '9840761552', 'Tamilarasantamil461@gmail', '1993-06-29', 29, '1', '2', 'V. Manoharan', 'Lorry sed', 30.00, 1, 0.00, 20.00, 'Mint, chennai', 'Mint', '2305080004', '', '2', 'upload_files/candidate_tracker/8068319969_tamil arasan.pdf', NULL, '3', '2023-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-08 10:08:45', 1, '2023-05-08 10:17:45', 0, NULL, 1),
(12688, 'M Josly hamash', '5', '9962893382', '9345435892', 'josleewiz10101997@gmail.com', '1997-10-10', 25, '2', '2', 'Sheela', 'Teacher', 30000.00, 1, 25000.00, 25000.00, 'Neyveli', 'Chennai', '2305080005', '1', '2', 'upload_files/candidate_tracker/76568971874_HAMASH RESUME NEW.pdf', NULL, '1', '2023-05-08', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'earlier profile also not in proper sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-08 10:10:00', 60, '2023-05-08 08:45:28', 0, NULL, 1),
(12689, 'Priyanka Devidas Misal', '13', '8830913742', '9421664420', 'priyankamisal127@gmail.com', '2001-07-12', 21, '3', '2', 'Devidas misal', 'Nokari', 300000.00, 2, 0.00, 5.00, 'Aurangabad', 'Aurangabad', '2305080006', '', '1', 'upload_files/candidate_tracker/32477477887_Priyanka_misal.pdf', NULL, '3', '2023-05-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-08 10:23:41', 1, '2023-05-08 10:29:13', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12690, 'Vignesh', '13', '9715224616', '9715625274', 'vigneshvikash1524@gmail.com', '2000-05-15', 22, '6', '2', 'Murugan', 'Wages worker', 8000.00, 1, 0.00, 15000.00, '21,thattara street,Musiri (TK), Trichy (DT).', 'Musiri', '2305080007', '', '1', 'upload_files/candidate_tracker/20913260263_Profile.pdf', NULL, '1', '2023-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have 1 yr Exp but fresher for react and not ope for TxxampC open only for 1-2 yrs', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-08 10:38:52', 1, '2023-05-08 10:45:49', 0, NULL, 1),
(12691, 'Sivasankar D.S', '5', '8778734638', '', 'sivasar1511@gmail.com', '2000-02-07', 0, '2', '1', 'Saranya', 'Team leader load department', 30000.00, 0, 21000.00, 23000.00, 'Chennai', 'Chennai', '2305080008', '1', '2', 'upload_files/candidate_tracker/79379506529_DOC-20230417-WA0004.(1) (1) (2).pdf', NULL, '1', '2023-05-08', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-08 10:48:02', 85, '2023-05-08 03:05:12', 0, NULL, 1),
(12692, 'Pushpa Latha s', '13', '9940788776', '', 'pushpala76@gmail.com', '2001-03-11', 22, '6', '2', 'Santhanam s', 'Electrician', 150000.00, 1, 0.00, 200000.00, 'Thiruvallur', 'Thiruvallur', '2305080009', '', '1', 'upload_files/candidate_tracker/37083799390_profile_SzGKzl1dOvYo_1682753687010.pdf', NULL, '1', '2023-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Yet to complete the graduation  not open for TxxampC will not sustain\n', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-08 11:48:32', 1, '2023-05-08 11:51:26', 0, NULL, 1),
(12693, 'SARAVANAN G', '5', '9952047968', '', 'Saravanang445@gmail.com', '1988-05-19', 34, '1', '1', 'JOTHI E', 'Sales', 30000.00, 2, 300000.00, 30000.00, 'Chennai', 'Chennai', '2305080010', '', '2', 'upload_files/candidate_tracker/36355115107_Saravanan G new resume.pdf', NULL, '1', '2023-05-08', 0, 'P1066', '3', '59', '2023-05-10', 345696.00, '', '', '2023-05-15', '1', 'Selected for GK Sir Team with Gaurav Sir Commitment 2L biz in May June will increse the pay', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-08 11:57:33', 101, '2023-05-10 09:57:15', 0, NULL, 1),
(12694, 'VISHNU RAJ .C', '13', '9176446947', '9087493829', 'VISHNURAJ24RAJ@GMAIL.COM', '2002-10-24', 20, '6', '2', 'Sharmila.c', 'Developer', 5000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2305080011', '', '1', 'upload_files/candidate_tracker/79010082856_vishnui_resume[2] (1).pdf', NULL, '1', '2023-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for TxxampC will not sustain', '2', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-08 12:05:12', 1, '2023-05-08 12:22:56', 0, NULL, 1),
(12695, 'Karan S', '13', '6382490453', '9597200983', 'karan110102@gmail.com', '2000-06-12', 22, '6', '2', 'Shanmugam T P', 'Farmer', 80000.00, 1, 0.00, 120000.00, 'Nambiyur,Erode(dt)', 'Kolathur,chennai', '2305080012', '', '1', 'upload_files/candidate_tracker/37789486127_KARAN S RESUME.pdf', NULL, '1', '2023-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher  Not Open For TxxampC Will Not Sustain Not Suitable', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-08 12:06:03', 1, '2023-05-08 12:35:05', 0, NULL, 1),
(12696, 'Barathkumar S', '2', '9444851526', '', 'barathkumarshiva@gmail.com', '2001-01-14', 22, '2', '2', 'Sivanesan R', 'Exports', 20000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2305080013', '1', '1', 'upload_files/candidate_tracker/7484530768_BarathKumar.pdf', NULL, '1', '2023-05-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher  not open for TxxampC will not sustain not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1016', '', NULL, NULL, NULL, 1, '2023-05-08 12:06:05', 103, '2023-05-08 07:14:07', 0, NULL, 1),
(12697, 'Abinaya', '13', '9360769335', '7092073388', 'Abinayae93@gmail.com', '2002-04-28', 21, '6', '2', 'Elumalai', 'Driver', 27000.00, 1, 0.00, 200000.00, '57/88, medavakkam main road adambakkam', 'Chennai adambakkam', '2305080014', '', '1', 'upload_files/candidate_tracker/35969652785_Abinaya Elumalai _CV_1-1_122556.pdf', NULL, '1', '2023-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-08 12:14:52', 1, '2023-05-08 12:27:15', 0, NULL, 1),
(12698, 'Mehraj Fathima', '4', '8015526515', '7448672701', 'Mehrajfathima1410@gmail.com', '2001-10-14', 21, '3', '2', 'Khaleelur Rahman', 'Sale\'s man', 10000.00, 1, 14000.00, 15000.00, 'Chennai', 'Chennai', '2305080015', '', '2', 'upload_files/candidate_tracker/91801604357_Resume_08_05_2023_01_21_24_pm.pdf', NULL, '1', '2023-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-08 01:24:52', 1, '2023-05-08 01:30:15', 0, NULL, 1),
(12699, 'Vinithra .M', '4', '6380606820', '7094922126', 'vinim2158@gmail.com', '2001-08-01', 21, '2', '2', 'Vinotha', 'Daily wages', 60000.00, 1, 18000.00, 20000.00, 'Tharangambadi', 'Santhome', '2305080016', '1', '2', 'upload_files/candidate_tracker/51612371288_Vinithra M Resume.pdf', NULL, '1', '2023-05-09', 21, '', '3', '59', '2023-06-01', 204000.00, '', '5', '1970-01-01', '2', 'Selected for B2B in consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '6', '', '', 'H1016', '', NULL, NULL, NULL, 1, '2023-05-08 01:34:47', 60, '2023-05-12 06:12:29', 0, NULL, 1),
(12700, '', '0', '6382082723', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305080017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-08 01:34:52', 0, NULL, 0, NULL, 1),
(12701, 'RUKKUMANI', '4', '9080184970', '', 'rukmanirukmani806@gmail.com', '1999-04-30', 24, '2', '2', 'Mannathan', 'Farmer', 10000.00, 2, 0.00, 15.00, 'Vayalur', 'Sholinganallur', '2305080018', '1', '1', 'upload_files/candidate_tracker/78138023547_rukkumani Ressume (1) (1).docx', NULL, '1', '2023-05-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-08 04:00:09', 101, '2023-05-08 07:00:02', 0, NULL, 1),
(12702, 'Sanjay V', '5', '9791039514', '9514519283', 'sanjay10082001@gmail.com', '2001-08-10', 21, '2', '2', 'Vijayakumar S', 'Indane Gas agency Godown Manager', 60000.00, 1, 350000.00, 375000.00, 'Chennai', 'Chennai', '2305080019', '1', '2', 'upload_files/candidate_tracker/2522849132_Sanjay V Resume Newly Updated.pdf', NULL, '1', '2023-05-09', 20, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-08 05:05:11', 101, '2023-05-08 06:50:57', 0, NULL, 1),
(12703, '', '0', '8217511864', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305080020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-08 05:48:05', 0, NULL, 0, NULL, 1),
(12704, 'Daniel raj A', '33', '8838326182', '9952205165', 'danielraj5194@gmail.com', '1994-01-05', 29, '2', '2', 'AROCKIYASAMY S', 'Retired railway employee', 20000.00, 1, 15000.00, 20000.00, 'Trichy', 'Chennai', '2305080021', '1', '2', 'upload_files/candidate_tracker/97208629055_DANIE.pdf', NULL, '1', '2023-05-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Average Communication No sustainability too long career gap not suitble', '4', '2', '', '4', '5', '', '2', '1970-01-01', '2', '7', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-08 05:50:33', 101, '2023-05-08 06:51:35', 0, NULL, 1),
(12705, 'CB MANOJBALA', '33', '9629463326', '', 'baluram123@gmail.com', '1993-10-12', 29, '2', '2', 'CB VALARMATHI', 'HOUSE WIFE', 20000.00, 1, 340000.00, 450000.00, 'TRICHY', 'KARAIKUDI', '2305080022', '1', '2', 'upload_files/candidate_tracker/37341360921_mano resume .doc', NULL, '1', '2023-05-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not open for Sales calls veryhigh CTC Exp Not suitable will not sustain', '4', '1', '', '4', '5', '', '2', '1970-01-01', '3', '7', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-08 05:54:05', 101, '2023-05-08 06:51:58', 0, NULL, 1),
(12706, 'A WAJID ALI', '5', '9514529710', '7338969124', 'Wajid00792@gmail.com', '2000-05-12', 22, '2', '2', 'ASAD Ali', 'Tailor', 25000.00, 2, 18000.00, 25000.00, '13 sardar Jung garden tank street Royapettah', '13 sardar Jung garden tank street Royapettah', '2305080023', '1', '2', 'upload_files/candidate_tracker/58610833438_Wajid resume new 2022 1.pdf', NULL, '3', '2023-05-09', 0, '', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Tried Couple of times not able to reach him. Please refix', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-08 06:09:21', 60, '2023-05-09 08:56:16', 0, NULL, 1),
(12707, 'Sugumar S', '4', '7397447963', '6379159758', 'sugumar0410@gmail.com', '2001-10-04', 21, '2', '2', 'Mother name: anjugam', 'Tailor', 20000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2305080024', '1', '1', 'upload_files/candidate_tracker/3061971838_Sugumar AP.pdf', NULL, '1', '2023-05-10', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile have exp for 2 months kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-08 06:53:11', 101, '2023-05-10 12:10:30', 0, NULL, 1),
(12708, '', '0', '8897535984', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-09 10:35:35', 0, NULL, 0, NULL, 1),
(12709, 'Dharani anbalagan', '14', '9940984716', '', 'dharani20900@gmail.com', '2000-09-20', 22, '3', '2', 'Anbalagan', 'Driver', 20000.00, 3, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2305090002', '', '1', 'upload_files/candidate_tracker/19096415390_DHARANI UPDATED RESUME.pdf', NULL, '1', '2023-05-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Open For TxxampC Fresher Much Focused On Java  Need To Check Via Task', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-09 10:45:52', 1, '2023-05-09 10:49:53', 0, NULL, 1),
(12710, 'Gopikrishna.R', '13', '8667589291', '9952289289', 'gopirajappan226@gmail.com', '2001-11-05', 21, '6', '2', 'Rajappan,Malarkodi', 'Farmer', 30000.00, 0, 0.00, 20000.00, 'Theni', 'Theni', '2305090003', '', '1', 'upload_files/candidate_tracker/33162343120_Gopikrishna resume.pdf', NULL, '1', '2023-05-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for TxxampC will not sustain not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-09 10:46:07', 1, '2023-05-09 11:47:04', 0, NULL, 1),
(12711, 'Mahalalkshmi subramanian', '14', '9585133411', '8825528681', 'mahalakshmics03@gmail.com', '2000-03-29', 23, '3', '2', 'Subramanian', 'Farmer', 12000.00, 1, 0.00, 150000.00, 'Deavakottai, sivaganagai', 'Cit Nagar, chennai', '2305090004', '', '1', 'upload_files/candidate_tracker/19127104735_maha FE 9 5 resume.docx', NULL, '1', '2023-05-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'open for TxxampC Fresher much focused on Java  need to check via task', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-09 10:46:18', 1, '2023-05-09 10:51:20', 0, NULL, 1),
(12712, 'Karthick vel .s', '5', '6383525867', '9025653240', 'karthickvel439@gmail.com', '1998-04-20', 25, '2', '2', 'Subramani', 'Tailor', 20000.00, 3, 0.00, 15000.00, 'Old washermenpet', 'Chennai -21', '2305090005', '1', '1', 'upload_files/candidate_tracker/88735752695_karthick vel2 .docx', NULL, '3', '2023-05-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not handle the work pressure long career gap will not sustain an not suitable\n', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-09 11:06:53', 101, '2023-05-09 11:35:30', 0, NULL, 1),
(12713, 'Parvesh Raisinghani', '4', '9940090795', '', 'parveshraisinghania99@gmail.com', '2001-05-12', 21, '2', '2', 'rajesh.k', 'business', 100000.00, 1, 0.00, 21000.00, 'central street kilpauk chennai', 'central street kilpauk chennai', '2305090006', '1', '1', 'upload_files/candidate_tracker/89994939598_20052576450_Parvesh Resume.docx', NULL, '1', '2023-05-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Local communication 12th will not handle our work pressure not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1016', '', NULL, NULL, NULL, 1, '2023-05-09 11:50:01', 1, '2023-05-09 02:58:23', 0, NULL, 1),
(12714, 'Saravanapandian', '14', '8428804905', '8681811719', 'Saravanakani96@gmail.com', '1996-02-16', 27, '6', '2', 'Alaguvel', 'Shopkeeper', 30000.00, 2, 0.00, 10000.00, 'Perungudi', 'Perungudi', '2305090007', '', '1', 'upload_files/candidate_tracker/51534053151_saravanapandian_resume.pdf', NULL, '1', '2023-05-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Flutter fresher interviewed by bharath and checked for node for training but candidate not interested', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-09 11:54:25', 1, '2023-05-09 12:01:53', 0, NULL, 1),
(12715, 'Jebitha Angel J', '13', '7418106568', '9385876568', 'angeljebitha@gmail.com', '1998-10-22', 24, '3', '1', 'Ajin L', 'Private job', 20000.00, 1, 0.00, 20000.00, 'Kanyakumari', 'Medavakkam', '2305090008', '', '1', 'upload_files/candidate_tracker/53702132242_jebitha-resume-1.pdf', NULL, '1', '2023-05-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance not open for TxxampC will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-09 11:56:34', 1, '2023-05-09 12:02:20', 0, NULL, 1),
(12716, 'Gayathri.T', '22', '8925748962', '9962489638', 'bgayathri059@gmail.com', '2001-10-30', 21, '3', '2', 'Latha.T', 'Cooking', 20000.00, 0, 0.00, 18000.00, 'Triplicane', 'Triplicane parthasarthy temple', '2305090009', '', '1', 'upload_files/candidate_tracker/54566339823_gayu.pdf', NULL, '1', '2023-05-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice process no Communication will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-09 12:30:59', 1, '2023-05-09 12:35:24', 0, NULL, 1),
(12717, 'Sneha', '22', '7904309603', '8807714408', 'sneharavichandran2002@gmail.com', '2002-02-16', 21, '3', '2', 'Ravi Chandran', 'Driver', 12000.00, 1, 0.00, 18000.00, 'Mandaveli', 'Mandaveli', '2305090010', '', '2', 'upload_files/candidate_tracker/59807511239_pdf_20230420_164042_0000.pdf', NULL, '1', '2023-05-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Average Communicaiton no basic ideas in Digital and not open for Sales too', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-09 12:31:06', 1, '2023-05-09 12:34:40', 0, NULL, 1),
(12718, '', '0', '9176784133', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305090011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-09 12:47:03', 0, NULL, 0, NULL, 1),
(12719, 'shantha rupa', '22', '8754745696', '', 'shantharupa.a@gmail.com', '1995-11-15', 27, '6', '2', 'anandan', 'business', 100000.00, 3, 480000.00, 540000.00, 'vellore', 'chennai', '2305090012', '', '2', 'upload_files/candidate_tracker/81141378347_Shantharupa resume.pdf', NULL, '1', '2023-05-09', 7, '', '4', '69', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in DM Communication Good Kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-09 01:24:35', 1, '2023-05-09 01:28:04', 0, NULL, 1),
(12720, 'Parkavi AN', '16', '6374605001', '8525074546', 'paruparkavi1006@gmail.com', '2000-06-10', 22, '2', '2', 'Anandhan M', 'Hashtag private limited', 30000.00, 1, 24000.00, 25000.00, 'Arakkonam', 'Villivakam', '2305090013', '1', '2', 'upload_files/candidate_tracker/41791798982_Paru-2.docx', NULL, '1', '2023-05-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher comunicaiton Ok Not open for Sales Calls open for Operations but the salary exp is very high', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1016', '', NULL, NULL, NULL, 1, '2023-05-09 01:29:58', 60, '2023-05-09 08:52:58', 0, NULL, 1),
(12721, '', '0', '7550303712', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305090014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-09 01:33:14', 0, NULL, 0, NULL, 1),
(12722, 'Akash DC', '5', '7639303712', '7550303712', 'akashdc860@gmail.com', '2000-09-15', 22, '2', '2', 'Christopher.D', 'Driver', 30000.00, 1, 0.00, 15000.00, 'Kaniyakumari', 'tambram', '2305090015', '1', '1', 'upload_files/candidate_tracker/27502250685_akash resume-2.pdf', NULL, '1', '2023-05-09', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-09 02:41:17', 60, '2023-05-09 08:17:16', 0, NULL, 1),
(12723, 'Hema Narayanan', '5', '9363535962', '9600030124', 'hemanarayanan338@gmail.com', '1998-02-10', 25, '2', '2', 'Anandan', 'Vice president', 25000.00, 2, 18000.00, 30000.00, 'Chennai', 'Chennai', '2305090016', '1', '2', 'upload_files/candidate_tracker/52029314229_Hema Narayanan RM.23.docx', NULL, '1', '2023-05-09', 1, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Expecting higher package\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1016', '', NULL, NULL, NULL, 1, '2023-05-09 02:43:26', 60, '2023-05-09 08:15:53', 0, NULL, 1),
(12724, 'TAMILSELVAN', '13', '7448675512', '', 'kuttytamil1502@gmail.com', '1999-04-02', 24, '6', '2', 'Devendiran', 'Seniors writer', 200000.00, 2, 0.00, 250000.00, 'Thiruvannamalai', 'Chennai', '2305090017', '', '1', 'upload_files/candidate_tracker/40927058028_Resume_Tamil.pdf', NULL, '1', '2023-05-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-09 06:35:16', 1, '2023-05-09 06:39:06', 0, NULL, 1),
(12725, 'BALAJI A', '4', '6382503482', '6385873696', 'balajiadhi20@gmail.com', '2000-08-10', 22, '2', '2', 'Adhirajan v', 'Business', 25000.00, 2, 0.00, 17000.00, 'Cuddalore', 'Chennai', '2305090018', '1', '1', 'upload_files/candidate_tracker/5540667371_BALAJI A.docx', NULL, '1', '2023-05-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1015', '0', NULL, NULL, NULL, 1, '2023-05-09 06:48:04', 1, '2023-05-09 06:52:59', 0, NULL, 1),
(12726, 'hemavathy i', '5', '7904010611', '', 'hemavathi2001iyyapan@gmail.com', '2001-06-24', 21, '2', '2', 'parimala', 'house keeping', 8000.00, 3, 0.00, 15000.00, 'chengalpet', 'chengalpet', '2305090019', '1', '1', 'upload_files/candidate_tracker/66387523958_HEMAVATHY_2022_BCA_JAVA_TESTING.pdf', NULL, '1', '2023-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance Will not sustain communication Average will not handle the work pressure', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1015', '0', NULL, NULL, NULL, 1, '2023-05-09 07:16:20', 1, '2023-05-10 12:19:43', 0, NULL, 1),
(12727, 'santhaseelan', '31', '9176327269', '', 'santhaseelanka2025@gmail.com', '2000-02-10', 23, '3', '2', 'kalaimani', 'painter', 23000.00, 1, 0.00, 15000.00, 'perungundi', 'Perungundi', '2305090020', '', '1', 'upload_files/candidate_tracker/46314207157_Resume (29).pdf', NULL, '1', '2023-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Disability cant communicate bit difficult to work not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-09 10:38:09', 1, '2023-05-10 10:33:09', 0, NULL, 1),
(12728, 'JEEVANAANTHAM K', '14', '9344470354', '8489038362', 'karthijeeva4440@gmail.com', '2000-11-04', 22, '6', '2', 'KARTHIKEYAN', 'Weaver', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Velachery Chennai', '2305100001', '', '1', 'upload_files/candidate_tracker/77869013933_JEEVA.pdf', NULL, '1', '2023-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 09:29:51', 1, '2023-05-10 09:40:04', 0, NULL, 1),
(12729, 'Hari Haran', '6', '7598148582', '7448582147', 'harihari28267@gmail.com', '2000-09-25', 22, '2', '2', 'Ganakasundaram', 'Farmer', 48000.00, 5, 0.00, 22000.00, 'Thiruvarur', 'Chennai', '2305100002', '1', '1', 'upload_files/candidate_tracker/90649636538_HARI MBA.docx', NULL, '1', '2023-05-10', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-10 10:18:42', 85, '2023-05-10 06:26:54', 0, NULL, 1),
(12730, 'NandhiniDevi C', '13', '9677183675', '9940550724', 'nandhini.c19@gmail.com', '1993-01-19', 30, '6', '1', 'R. KalaiSelvan', 'Manager - Zee5', 91000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2305100003', '', '1', 'upload_files/candidate_tracker/53600194136_Nandhinidevi_C_Resume_1.pdf', NULL, '1', '2023-05-10', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to come back with her confirmation if she comes let us try', '2', '2', '0', '1', '1', '0', '2', '2023-05-15', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 10:36:29', 1, '2023-05-10 10:46:07', 0, NULL, 1),
(12731, 'Balaji Eswaran', '13', '9994423899', '6379759719', 'balajieswarank@gmail.com', '1998-06-30', 24, '6', '2', 'Eswaran', 'Shopkeeper', 18000.00, 2, 13000.00, 18000.00, 'Madurai', 'Madurai', '2305100004', '', '2', 'upload_files/candidate_tracker/57722911190_DpZCQhaOWElEkRS9-722.pdf', NULL, '1', '2023-05-10', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Open For TxxampC Much Preferred For Java Only Will Not Sustain And Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 10:41:01', 1, '2023-05-10 11:10:13', 0, NULL, 1),
(12732, 'K. Venkatesan', '3', '9710925892', '8526707701', 'kvenkatesh8907@gmail.com', '2001-11-20', 21, '3', '2', 'Thavamani', 'Housekeeping', 20.00, 2, 0.00, 4.00, 'Chennai', 'Chennai', '2305100005', '', '1', 'upload_files/candidate_tracker/70688307498_venkatesan2.pdf', NULL, '2', '2023-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Open For TxxampC Much Too long Distance not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 10:41:02', 1, '2023-05-10 10:48:49', 0, NULL, 1),
(12733, 'Stella mary.s', '4', '7904190191', '8056435443', 'Stellamary0525@gmail.com', '2003-04-05', 20, '2', '2', 'Suresh Stephen .s', 'Driver', 17000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2305100006', '1', '1', 'upload_files/candidate_tracker/25802652981_STELLA MARY.pdf', NULL, '1', '2023-05-10', 0, '', '3', '59', '2023-05-15', 151584.00, '', '3', '2023-10-11', '2', 'Selected For B2B In Consultant Role', '1', '2', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-10 10:41:59', 60, '2023-05-22 10:16:00', 0, NULL, 1),
(12734, 'Mohammed Ali Hasan S', '14', '9361585561', '', 'smohammedalihasan@gmail.com', '2000-09-02', 22, '6', '2', 'Sadhak Ali Jinnah M', 'Footwear Shop', 120000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2305100007', '', '1', 'upload_files/candidate_tracker/20472252759_Resume.pdf', NULL, '1', '2023-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Open For TxxampC Much Preferred For flutter Only Will Not Sustain And Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 11:06:53', 1, '2023-05-10 11:32:52', 0, NULL, 1),
(12735, 'MANI MUTHU', '13', '6383407553', '', 'manimuthuofficial@gmail.com', '1991-04-09', 32, '3', '1', 'GOVINDAN', 'FARMER', 10000.00, 3, 24000.00, 36000.00, 'Chennai', 'Chennai', '2305100008', '', '2', 'upload_files/candidate_tracker/68488022108_MANI-MUTHU-CV.pdf', NULL, '1', '2023-05-10', 10, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in PHP but no sustainability need to check via task and check', '2', '2', '0', '1', '3', '0', '2', '2023-05-15', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 11:07:14', 1, '2023-05-10 11:12:29', 0, NULL, 1),
(12736, 'Aravind A', '13', '8825840501', '', 'aravindnrm29@gmail.com', '2000-09-29', 22, '6', '2', 'K.Ashok Kumar', 'Business', 20000.00, 1, 0.00, 3.00, '3/26, East Street, Nirthanamangalam, Nagapattinam', 'Chennai', '2305100009', '', '1', 'upload_files/candidate_tracker/43797446561_Aravindn.resume.pdf', NULL, '1', '2023-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Open For TxxampC Much Preferred For Java Only Will Not Sustain And Not Suitable', '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 11:28:08', 1, '2023-05-10 11:32:19', 0, NULL, 1),
(12737, 'K Deepak', '4', '8680858117', '9361172609', 'heartflow76@gmail.com', '1997-07-15', 25, '1', '2', 'Parent', 'Late', 15000.00, 4, 22360.00, 24000.00, 'Chennai', 'Chennai', '2305100010', '', '2', 'upload_files/candidate_tracker/11226290871_Deepak Resume.pdf', NULL, '1', '2023-05-10', 0, 'P1121', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 12:09:34', 1, '2023-05-10 12:28:09', 0, NULL, 1),
(12738, 'Dheebakkumar V', '13', '6374586002', '9003534599', 'Deepak.cbe04@gmail.com', '2001-06-04', 21, '6', '2', 'Venkatachalam', 'Driver', 16000.00, 1, 0.00, 20000.00, '98/2, Ambothi, Annur, Coimbatore', 'Coimbatore', '2305100011', '', '1', 'upload_files/candidate_tracker/82729159306_DHEEBAKKUMAR V.pdf', NULL, '1', '2023-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher not open for TxxampC much preferred for Java only will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 12:57:01', 1, '2023-05-10 01:02:54', 0, NULL, 1),
(12739, 'Jeyakumar M', '14', '9600540355', '8248170837', 'jeyakumar1714@gmail.com', '2001-07-17', 21, '6', '2', 'Manikandan V', 'Student fresher', 12000.00, 1, 0.00, 4.00, 'Chennai', 'Chennai', '2305100012', '', '1', 'upload_files/candidate_tracker/9311000638_JEYAKUMAR M RESUME-compressed.pdf', NULL, '1', '2023-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Open For TxxampC Much Preferred For Java Only Will Not Sustain And Not Suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 01:41:22', 1, '2023-05-10 02:12:39', 0, NULL, 1),
(12740, 'Archana', '28', '6381986988', '', 'kannagi21021957@gmail.com', '2000-03-21', 23, '4', '2', 'Nagendran', 'Data analytics', 20000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2305100013', '', '2', 'upload_files/candidate_tracker/24076303899_S.Archana resume.pdf', NULL, '1', '2023-05-11', 38, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 02:05:20', 1, '2023-05-10 02:09:02', 0, NULL, 1),
(12741, 'Anish subramanian', '13', '9840192802', '', 'anishflorida@gmail.com', '2001-05-31', 21, '6', '2', 'Subramanian', 'Software engineer', 1500000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2305100014', '', '1', 'upload_files/candidate_tracker/81747650059_Anish\'s Resume (2)-1.pdf', NULL, '1', '2023-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Open For TxxampC Much Preferred For Node Only Will Not Sustain  father is in HCL US citizen Have a plan to travel abroad', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 02:17:15', 1, '2023-05-10 02:23:23', 0, NULL, 1),
(12742, 'Rahini P', '5', '7339154890', '9791599692', 'rahini.haridwar@gmail.com', '1999-08-16', 23, '3', '2', 'Piradheesh Kumar R', 'Farmer', 25000.00, 1, 0.00, 20000.00, 'Haridwaramangalam', 'Thanjavur', '2305100015', '', '1', 'upload_files/candidate_tracker/75825993170_Resume-1 (1).pdf', NULL, '1', '2023-05-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '4', '5', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 05:13:32', 1, '2023-05-10 05:20:28', 0, NULL, 1),
(12743, 'Shri Kumaran R K', '4', '9003846386', '8098417661', 'shrikumaran123@gmail.com', '1997-09-17', 25, '6', '2', 'Radha Krishnan', 'farmer', 10000.00, 0, 0.00, 15000.00, 'Paramathi, velur(TK)', 'Paramathi, velur(TK)', '2305100016', '', '2', 'upload_files/candidate_tracker/39483546218_shri kumaran resume.....docx', NULL, '3', '2023-05-12', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 05:54:11', 1, '2023-05-10 05:57:28', 0, NULL, 1),
(12744, 'dhanush k', '5', '6382197889', '9087237983', 'dhanush090803@gmail.com', '2003-08-09', 19, '2', '2', 'kumar s', 'employe', 30000.00, 1, 15100.00, 20000.00, 'chennai', 'new washermenpet', '2305100017', '1', '2', 'upload_files/candidate_tracker/25154289272_Resume_Dhanush_Format1.pdf', NULL, '1', '2023-05-11', 0, '', '8', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '2nd Round Abscond', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-10 06:33:24', 85, '2023-05-11 09:35:06', 0, NULL, 1),
(12745, 'VIGNESH K', '6', '7449071753', '', 'vigneshkishore956@gmail.com', '2001-12-01', 21, '2', '2', 'Parents', 'ELECTRICAN', 90000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2305100018', '1', '1', 'upload_files/candidate_tracker/88431040639_VIGNESH RESUME (3).pdf', NULL, '1', '2023-05-11', 0, '', '8', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '2nd Round Abscond', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-10 07:33:54', 85, '2023-05-11 08:15:04', 0, NULL, 1),
(12746, 'Prasana babu', '6', '6380971392', '9790897318', 'Prasanab28@gmail.com', '1999-12-01', 23, '3', '2', 'Government employees', 'Unemployed', 60000.00, 0, 0.00, 18000.00, 'Avadi', 'Avadi', '2305100019', '', '1', 'upload_files/candidate_tracker/31609832958_resume .pdf', NULL, '1', '2023-05-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 07:34:04', 1, '2023-05-10 07:44:32', 0, NULL, 1),
(12747, 'K. Suventhini', '5', '6374036362', '', 'ksuventhini7@gmail.com', '2002-09-21', 20, '3', '2', 'Mother name- K. Sivananthy', 'Business', 15000.00, 0, 0.00, 20000.00, 'Madipakkam Chennai-91', 'Madipakkam, Chennai91', '2305100020', '', '1', 'upload_files/candidate_tracker/99611678848_suventhini .K _cv..docx', NULL, '1', '2023-05-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Exams yet to complete not much comfort in Telecalling not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-10 11:24:01', 1, '2023-05-11 12:08:41', 0, NULL, 1),
(12748, 'Suresh Nandyal', '4', '7032476196', '', 'nsuri360@gmail.com', '1999-12-15', 23, '3', '2', 'Pullaiah', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Kurnool', 'Marathahalli', '2305110001', '', '1', 'upload_files/candidate_tracker/97620509317_suresh-1.pdf', NULL, '1', '2023-05-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-11 07:17:19', 1, '2023-05-11 07:21:28', 0, NULL, 1),
(12749, 'Deepak jadav', '1', '9663852245', '', 'jadavdeepak139@gmail.com', '1993-11-25', 29, '1', '2', 'Mother', 'Mother', 20000.00, 2, 25000.00, 30000.00, '202 surya ELLANACE opposite apollo Pharmacy', 'Chandapura', '2305110002', '', '2', 'upload_files/candidate_tracker/56732409643_DEEPAK RESUME 2.pdf', NULL, '1', '2023-05-11', 0, 'P1244', '1', '56', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-11 10:00:10', 1, '2023-05-11 10:06:42', 0, NULL, 1),
(12750, 'S S RAYHUN', '6', '7299792766', '8148427330', 'rayhunssr@gmail.com', '2002-10-11', 20, '4', '2', 'C S SURESH BABU', 'TNSCB', 50000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2305110003', '', '1', 'upload_files/candidate_tracker/75969258687_Rayhun resume.pdf', NULL, '1', '2023-05-11', 0, '', '3', '59', '2023-05-15', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Babu Team in Staff Role', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-11 10:33:17', 60, '2023-05-13 07:55:17', 0, NULL, 1),
(12751, 'R.sneha', '5', '7448421283', '9884449781', 'Sneharajkumar04@gmail.com', '2002-08-04', 20, '2', '2', 'Rajkumar', 'Driver', 14000.00, 1, 0.00, 11000.00, '11/6 city queens flat 2 nd floor Minortrustpuram', 'Choolaimedu', '2305110004', '1', '1', 'upload_files/candidate_tracker/31787432253_Sneha Resume.docx', NULL, '1', '2023-05-11', 0, '', '3', '59', '2023-05-15', 151584.00, '', '5', '1970-01-01', '2', 'Selected for B2B in Consultant Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-11 11:03:30', 60, '2023-05-12 06:10:25', 0, NULL, 1),
(12752, 'S Jaganathan', '13', '9677265212', '9344632535', 'jaganathan2499@gmail.com', '1999-08-24', 23, '6', '2', 'R srinivasan', 'Machine operator', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2305110005', '', '1', 'upload_files/candidate_tracker/96906668918_JAGANATHAN RESUME-3.docx', NULL, '1', '2023-05-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have 6 months Exp but not into projevct in Bench not open for TxxampC ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-11 11:03:33', 1, '2023-05-11 11:09:05', 0, NULL, 1),
(12753, 'Sindhuja R', '5', '7845977676', '7200016636', 'Shinysindhuja1006@gmail.com', '2003-01-10', 20, '2', '2', 'Ramesh', 'Driver', 15000.00, 1, 0.00, 11000.00, 'Hansa Courtyard, E-block, E-308.', 'Thiruvottiyur', '2305110006', '1', '1', 'upload_files/candidate_tracker/1824418268_Sindhuja Ramesh (8).pdf', NULL, '1', '2023-05-11', 0, '', '3', '59', '2023-05-15', 151584.00, '', '', '1970-01-01', '2', 'Selected for B2B in Consultant Role', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-11 11:03:54', 85, '2023-05-11 11:33:04', 0, NULL, 1),
(12754, 'Ananth', '2', '9159979066', '8667426553', 'ananthcivil9876@gmail.com', '1997-03-26', 26, '3', '2', 'Thandavaraya moorthy', 'Masson', 20000.00, 2, 25000.00, 30000.00, 'Cuddalore', 'Cuddalore', '2305110007', '', '2', 'upload_files/candidate_tracker/65415132508_Ananth resume -it new.pdf', NULL, '1', '2023-05-11', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Technical not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-11 12:06:00', 1, '2023-05-11 12:09:04', 0, NULL, 1),
(12755, 'E. Thangam', '13', '6383233292', '', 'thangamrohith7671@gmail.com', '2001-07-27', 21, '6', '2', 'E.Kannagi', 'Hotel labour', 48000.00, 1, 0.00, 200000.00, 'Mayiladuthurai, tamilnadu', 'Siruseri,Chennai', '2305110008', '', '1', 'upload_files/candidate_tracker/3185509362_Thangam (2).pdf', NULL, '1', '2023-05-11', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need To Come Back With His Confirmation On The TxxampC Interviewed By Gokul', '2', '1', '0', '1', '8', '0', '2', '2023-05-12', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-11 12:42:48', 1, '2023-05-11 01:15:42', 0, NULL, 1),
(12756, '', '0', '8608236616', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305110009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-11 12:43:54', 0, NULL, 0, NULL, 1),
(12757, 'Balaji. S', '13', '6369389427', '', 'balaji15062001@gmail.com', '2001-06-15', 21, '6', '2', 'Sagadevan. V', 'Conductor', 40000.00, 1, 0.00, 20000.00, 'TIRUVANNAMALAI', 'TIRUVANNAMALAI', '2305110010', '', '1', 'upload_files/candidate_tracker/14808122767_BALAJI S.pdf', NULL, '1', '2023-05-11', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to come back with his confirmation on the TxxampC interviewed by Gokul', '2', '1', '0', '1', '8', '0', '2', '2023-05-12', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-11 12:45:34', 1, '2023-05-11 01:12:00', 0, NULL, 1),
(12758, '', '0', '9176430157', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305110011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-11 02:39:17', 0, NULL, 0, NULL, 1),
(12759, 'Mahalakshmi', '13', '9344253061', '9788536227', 'maha0805lakshmi@gmail.com', '2000-05-08', 23, '6', '1', 'Selva kannan', 'Licence surveyor in chennai metro rail limited', 30000.00, 0, 0.00, 25000.00, '45/4, kamala Nehru 2nd street, choolaimedu-600094', '45/4,Kamala Nehru 2nd Street, Choolaimedu-600094', '2305110012', '', '1', 'upload_files/candidate_tracker/26488890124_A216.doc', NULL, '1', '2023-05-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not open for TxxampC have basic knowledge will not sustain not more than a year', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-11 02:47:55', 1, '2023-05-11 02:56:07', 0, NULL, 1),
(12760, 'Kesavan M', '13', '6380294589', '9688143156', 'mslkesavan4444@gmail.com', '1998-05-01', 25, '6', '2', 'P.mohan', 'Driving', 16000.00, 1, 0.00, 20000.00, 'Erode', 'Chennai', '2305110013', '', '1', 'upload_files/candidate_tracker/19743598683_My Web Resume.pdf', NULL, '1', '2023-05-11', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-11 02:59:07', 1, '2023-05-11 03:02:59', 0, NULL, 1),
(12761, 'rajkumar a', '6', '9176431057', '9677131143', 'rajkumarktm6643@gmail.com', '1997-06-11', 25, '3', '2', 'arulmozhi', 'indian navy', 30000.00, 1, 0.00, 15000.00, 'new washermanpet', 'New Washermanpet', '2305110014', '', '1', 'upload_files/candidate_tracker/43701201128_Rajkumar-Resume1.pdf', NULL, '1', '2023-05-11', 0, '', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'He is looking for non voice . not suitable for our profile', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-11 03:08:49', 1, '2023-05-11 03:15:32', 0, NULL, 1),
(12762, 'Sivaramakrishnan', '13', '7639356202', '', 'Sivaramakrishnans63@gmail.com', '1997-06-09', 25, '3', '2', 'Sriramamuralikrishnan', 'Teacher', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2305110015', '', '1', 'upload_files/candidate_tracker/20304360024_resume thenna.pdf', NULL, '1', '2023-05-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Much Comfort With The TxxampC Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-11 03:31:50', 1, '2023-05-12 12:32:54', 0, NULL, 1),
(12763, 'Getsiyal', '4', '9361903163', '9444047607', 'getsiyal0716@gmail.com', '2002-09-07', 20, '2', '2', 'Gracy', 'House wife', 40.00, 1, 17000.00, 18000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2305110016', '1', '2', 'upload_files/candidate_tracker/69985033424_DocScanner Jun 27, 2022 6-04 PM.pdf', NULL, '1', '2023-05-13', 20, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Have 6 months Exp can give a try kindly checj and let me know your inputs', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-11 03:37:42', 85, '2023-05-13 05:29:24', 0, NULL, 1),
(12764, 'S.kavinaya', '4', '6384324671', '7448340514', 'kavinayas09@gmail.com', '1999-06-09', 23, '2', '2', 'M.senthilkumar', 'Farmer', 10000.00, 1, 13.00, 20.00, 'Pappireddipatti', 'Pappireddipatti', '2305110017', '1', '2', 'upload_files/candidate_tracker/8864531946_report.pdf', NULL, '1', '2023-05-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have exp in sales but not open for the same  for non voice no communication', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-11 03:59:18', 85, '2023-05-13 10:47:44', 0, NULL, 1),
(12765, '', '0', '9384406784', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305110018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-11 08:52:29', 0, NULL, 0, NULL, 1),
(12766, 'Sabarirajan', '13', '7449011472', '', 'sabarirajan042@gmail.vom', '1999-03-14', 24, '3', '1', 'Alamelu srinivasan', 'Former', 20000.00, 2, 0.00, 15000.00, 'Tindivanam', 'Velachery', '2305110019', '', '1', 'upload_files/candidate_tracker/55666317920_Resume for js.pdf', NULL, '1', '2023-05-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Comfort With The TxxampC Not Suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-11 10:55:16', 1, '2023-05-11 11:09:23', 0, NULL, 1),
(12767, 'Siva.S', '13', '8754822078', '', 'sivasandhanamahalingam@gmail.com', '2000-02-08', 23, '3', '2', 'R.Sandhanamahalingam', 'Viver', 15000.00, 1, 0.00, 15000.00, 'S.Ramachandrapuram', 'Velachery', '2305120001', '', '1', 'upload_files/candidate_tracker/27273936685_FrontEnd Resume.pdf', NULL, '1', '2023-05-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Comfort With The TxxampC Not Suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-12 12:49:42', 1, '2023-05-12 12:01:30', 0, NULL, 1),
(12768, 'Madheswari', '5', '8525008210', '8148321410', 'Madheswaripalani8525@gmail.com', '1999-04-21', 24, '2', '1', 'Elumalai', 'Salaried', 35000.00, 4, 16000.00, 18000.00, 'Tamilnadu', 'Bangalore', '2305120002', '1', '2', 'upload_files/candidate_tracker/72259011063_maadhu[1199]-1(1).pdf', NULL, '3', '2023-05-12', 0, '', '3', '59', '2023-05-15', 214740.00, '', '6', '2023-11-23', '2', 'Selected for Sudharsan Team in Consultant Role', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '2', '6', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-12 08:14:20', 60, '2023-05-22 03:41:16', 0, NULL, 1),
(12769, 'Praveen Kumar', '13', '8754319023', '8903204802', 'praveenrilcyy@gmail.com', '1994-11-25', 28, '3', '2', 'Senthil', 'Labour', 30000.00, 1, 0.00, 35000.00, 'Kotagiri', 'Kotagiri', '2305120003', '', '1', 'upload_files/candidate_tracker/6749441879_S. Praveen - Resume.pdf', NULL, '1', '2023-05-12', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '1', 'Selected for React Profile Should join on Monday 15 May long career Gap 4yrs tnpsc ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-12 09:44:44', 1, '2023-05-12 09:50:07', 0, NULL, 1),
(12770, 'Gokul r', '2', '7092251617', '9994235746', 'rgokulravichandran@gmail.com', '2008-05-12', 15, '6', '2', 'Bharathamani', 'Accounts', 30000.00, 1, 0.00, 25000.00, 'Tiruppur', 'Chennai', '2305120004', '', '1', 'upload_files/candidate_tracker/36785782867_Gokul_Resume.pdf', NULL, '1', '2023-05-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher and the Exp is high need to come back with the confirmation on TxxampC Good Candidate if he comes back can give a try', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-12 10:08:04', 1, '2023-05-12 10:14:39', 0, NULL, 1),
(12771, 'Praveen Kumar B', '5', '9632126754', '', 'Pk152798@gmail.com', '1993-09-23', 29, '2', '2', 'Babu s', 'Retired', 100000.00, 1, 1.00, 18000.00, 'Bangalore', 'Bangalore', '2305120005', '1', '2', 'upload_files/candidate_tracker/47633950405_ok resume.docx', NULL, '1', '2023-05-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not shown interest post sales round interview ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '6', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-12 10:55:31', 60, '2023-05-13 06:07:11', 0, NULL, 1),
(12772, 'Jabeen banu', '4', '9080780983', '', 'Jabeenbanu1998@gmail.com', '1998-08-19', 24, '2', '2', 'Mohamed Azeem', 'Tailor', 40000.00, 0, 18000.00, 25000.00, '35 jawahar nagar 1st main road', '35 Jawahar Nagar 1st Main Road', '2305120006', '1', '2', 'upload_files/candidate_tracker/3559124100_Jabeen Resume-3 (1).pdf', NULL, '1', '2023-05-12', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for operations backend if she come back should give a try for it salary yet to finalise', '1', '1', '', '1', '8', '', '2', '2023-05-15', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-12 11:45:41', 85, '2023-05-12 12:14:42', 0, NULL, 1),
(12773, 'R PRIYANKA', '13', '7395937515', '9940269721', 'preethiravi287@gmail.com', '2000-07-15', 22, '6', '2', 'K.RAVI', 'Electrician', 10000.00, 0, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2305120007', '', '1', 'upload_files/candidate_tracker/75665500205_PRIYANKA RAVI RESUME.pdf', NULL, '1', '2023-05-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not much comfort with the TxxampC not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-12 11:46:20', 1, '2023-05-12 11:49:15', 0, NULL, 1),
(12774, 'Avinash Paul V', '13', '8667839690', '7868909221', 'avinash.paul2031@gmail.com', '2008-05-12', 0, '6', '2', 'Vasanth', 'Hostel supervisor', 30000.00, 0, 300000.00, 4.50, 'conoor', 'conoor', '2305120008', '', '2', 'upload_files/candidate_tracker/80480270352_Avinash Paul.V (1).pdf', NULL, '1', '2023-05-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in React 1yr and the min Exo in25K not much comfort in TxxampC', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-12 11:49:03', 1, '2023-05-12 11:55:14', 0, NULL, 1),
(12775, 'Shahina Begam G', '20', '8778412485', '9962783762', 'shahinabegamsulthana123@gmail.com', '2000-03-27', 23, '2', '2', 'A Sulthana', 'Madras coffee house', 50000.00, 1, 0.00, 18000.00, 'Kundrathur', 'Kundrathur', '2305120009', '1', '1', 'upload_files/candidate_tracker/91319826586_SHAHINA BEGAM RESUME-1.docx', NULL, '3', '2023-05-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance need to open a lot will not sustain and not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-12 01:00:18', 104, '2023-05-13 03:09:35', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12776, 'elayakumar', '20', '9962783762', '8778412485', 'elayakumar0412@gmail.com', '2001-08-27', 21, '2', '2', 'valarmathi', 'export company', 40000.00, 1, 0.00, 18000.00, 'ayanavaram', 'ayanavaram', '2305120010', '1', '1', 'upload_files/candidate_tracker/87437372711_elayakumar resume 01.pdf', NULL, '1', '2023-05-12', 0, '', '3', '59', '2023-05-15', 204000.00, '', '', '1970-01-01', '1', 'Selected for Suthagar Team in staff Role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-12 01:00:53', 104, '2023-05-13 03:10:06', 0, NULL, 1),
(12777, 'Mathan Abishek R', '13', '6382887431', '', 'mathanabishekr@gmail.com', '2001-10-13', 21, '6', '2', 'Ravi sankar', 'Textile Agent', 50000.00, 1, 0.00, 300000.00, 'Kovilpatti', 'Kovilpatti', '2305120011', '', '1', 'upload_files/candidate_tracker/4596653867_Mathan Abishek R.pdf', NULL, '1', '2023-05-12', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Fresher open for TxxampC need to join on monday 15May Can be trained in Node', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-12 01:13:29', 1, '2023-05-12 01:17:48', 0, NULL, 1),
(12778, 'Devi S', '13', '9600535402', '', 'devi.sd008@gmail.com', '1998-11-18', 24, '6', '2', 'Shanmugam', 'Driver', 30000.00, 1, 0.00, 300000.00, 'Tiruvallur', 'Tiruvallur', '2305120012', '', '1', 'upload_files/candidate_tracker/36079843250_Devi Resume-1.pdf', NULL, '1', '2023-05-12', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Fresher Open For TxxampC Need To Join On Monday 15May Can Be Trained In Node', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-12 01:24:56', 1, '2023-05-12 01:37:24', 0, NULL, 1),
(12779, 'D.Sarumathy', '13', '9677470164', '', 'ishumathy816@gmail.com', '2000-11-16', 22, '6', '2', 'Devanathan', 'Working in temple', 14000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'poonamalle', '2305120013', '', '1', 'upload_files/candidate_tracker/55014636281_SARU resume.pdf', NULL, '1', '2023-05-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Comfort With The TxxampC Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-12 01:25:39', 1, '2023-05-12 01:41:28', 0, NULL, 1),
(12780, 'Pravin K', '13', '6380731126', '', 'pravin1999kumar7@gmail.com', '1999-04-30', 24, '3', '2', 'Kumar s', 'Coolie', 20000.00, 1, 0.00, 200000.00, 'Kanyakumari', 'Chennai', '2305120014', '', '1', 'upload_files/candidate_tracker/17663567727_21 _ A _ 3492.pdf', NULL, '1', '2023-05-12', 0, '', '7', '60', NULL, 0.00, '', '', '2023-06-02', '1', 'Fresher Open For TxxampC Need To Join On Monday 15May Can Be Trained In Node', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-12 02:47:35', 1, '2023-05-12 02:57:07', 0, NULL, 1),
(12781, 'jagadeesh kumar', '13', '7708454112', '', '18jkumar99@gmail.com', '1999-01-18', 24, '6', '2', 'ramanathan', 'rtd superintendent', 20000.00, 1, 20000.00, 35000.00, 'srimushnam', 'chennai', '2305120015', '', '2', 'upload_files/candidate_tracker/61698095767_Jagadeesh kumar.pdf', NULL, '1', '2023-05-12', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Much Comfort With The TxxampC Not Suitable', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-12 02:48:55', 1, '2023-05-12 03:01:35', 0, NULL, 1),
(12782, 'IYAPPA S', '5', '9360390549', '', 'sanlee252@gmail.com', '1990-12-10', 32, '2', '1', 'E Shankar', 'BUILDING COTRACTOR', 50000.00, 4, 29000.00, 32000.00, '7A Anjali illam 4th street Thangaraj nagar', 'Astalakshmi nagar, color homes', '2305120016', '1', '2', 'upload_files/candidate_tracker/22869801382_Iyyappa Resume (1) (2).pdf', NULL, '2', '2023-05-15', 15, '', '3', '59', '2023-06-02', 429696.00, '', '3', '2023-11-17', '1', 'Selected for Shanmugam Team with Gaurav Final round Commitment May 50K June 1.5 Then 35K Net But the candidate is joining on 02 June only', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-12 07:23:43', 60, '2023-06-02 10:05:00', 0, NULL, 1),
(12783, 'M.Sivaprakash', '13', '7094352375', '', 'sivaprakash.mariappan@gmail.com', '1999-04-06', 24, '6', '2', 'P.Mariappan', 'Turner', 45000.00, 1, 30000.00, 35000.00, 'Chennai', 'Chennai', '2305130001', '', '2', 'upload_files/candidate_tracker/39466241493_SivaPrakash_Resume0000_sign.pdf', NULL, '1', '2023-05-13', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not open for txxampC min Exp is 15K fresher in IT', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-13 10:51:34', 1, '2023-05-13 10:58:56', 0, NULL, 1),
(12784, 'Akbar basha', '20', '9003191855', '9962417668', 'akbarbasha302302@gmail.com', '1998-11-27', 24, '2', '2', 'Enayathulla', 'Leather industry', 20000.00, 1, 0.00, 18000.00, 'Chennai vyasarpadi', 'Chennai vyasarpadi', '2305130002', '1', '2', 'upload_files/candidate_tracker/50468786044_akbar .pdf.docx', NULL, '1', '2023-05-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Field will not sustain in our roles focusin in boxing will not run  in along', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-13 11:24:40', 104, '2023-05-13 03:08:00', 0, NULL, 1),
(12785, 'SURESH S', '6', '9344787958', '7395968805', 'Sureshdivya1998.98@gmail.com', '1998-04-13', 25, '3', '2', 'SELVAKUMAR G', 'Auto driver', 50000.00, 1, 25000.00, 18000.00, 'Chennai Arumbakkam', 'Chennai Arumbakkam', '2305130003', '', '2', 'upload_files/candidate_tracker/91286502420_SURESH-PDF resume.pdf', NULL, '1', '2023-05-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-13 11:58:22', 1, '2023-05-13 12:03:55', 0, NULL, 1),
(12786, 'Boomika K', '4', '7299883398', '9884976944', 'kboomika055@gmail.com', '2003-02-26', 20, '2', '2', 'Kannan k', 'Mechanical technician', 40000.00, 1, 17000.00, 18000.00, 'Thiruvottriyur', 'Thiruvottriyur', '2305130004', '1', '2', 'upload_files/candidate_tracker/90816044676_Adobe Scan 13-May-2023.pdf', NULL, '1', '2023-05-13', 20, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Have 6 Months Exp Can Give A Try Kindly Checj And Let Me Know Your Inputs', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-13 12:06:46', 85, '2023-05-13 05:29:16', 0, NULL, 1),
(12787, 'L. Deva prasad', '5', '9940437082', '7200905112', 'devaspark7@gmail.com', '1995-10-25', 27, '1', '1', 'Divya', 'House wife', 10000.00, 0, 25000.00, 30000.00, 'No.2 /1A, Krishna Nagar main road porur chennai', 'No.2/1A, Krishna Nagar main road porur chennai', '2305130005', '', '2', 'upload_files/candidate_tracker/7870908056_Deva_Resume_March2023.pdf', NULL, '1', '2023-05-13', 7, '55634', '3', '59', '2023-05-26', 345696.00, '', '5', '1970-01-01', '1', 'Selected for Santhosh Team Staff Role', '5', '1', '4', '1', '1', '1', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-13 12:13:29', 60, '2023-05-22 04:18:40', 0, NULL, 1),
(12788, 'Bhavya Shree V', '5', '7349020590', '', 'bhavyashreev592@gmail.com', '1997-03-12', 26, '2', '2', 'vasu', 'business', 500000.00, 1, 33000.00, 40000.00, 'jaynagar banglore', 'jaynagar banglore', '2305130006', '1', '2', 'upload_files/candidate_tracker/62112168887_ResumeBhavyaShreeV11.pdf', NULL, '1', '2023-05-13', 0, '', '1', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-13 12:37:56', 104, '2023-05-13 06:49:32', 0, NULL, 1),
(12789, 'E Mohamed Yusuff', '5', '8124265695', '9445296557', 'bhaai2503@gmail.com', '2000-11-25', 22, '2', '2', 'Ibrahim A', 'Rice merchant', 18000.00, 4, 0.00, 30000.00, 'Chennai', 'Chennai', '2305130007', '1', '1', 'upload_files/candidate_tracker/57490880908_MOHAMED YUSUFF .E (1) (1) (1).doc', NULL, '1', '2023-05-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NO', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-13 05:43:39', 101, '2023-05-15 02:40:39', 0, NULL, 1),
(12790, '', '0', '9513132598', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305130008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-13 06:27:44', 0, NULL, 0, NULL, 1),
(12791, 'pooja', '5', '9148980843', '', 'poojadass81937@gmail.com', '1999-07-21', 23, '4', '1', 'santhosh', 'business', 40000.00, 1, 17000.00, 20000.00, 'hassa', 'kudlu bangalore', '2305130009', '', '2', 'upload_files/candidate_tracker/26166407667_Pooja resume.pdf', NULL, '1', '2023-05-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-13 06:32:34', 1, '2023-05-13 06:39:01', 0, NULL, 1),
(12792, 'MOHANRAJ V', '5', '9150467400', '', 'mohanraj11299@gmail.com', '1999-12-01', 23, '2', '2', 'Venkatesan R', 'Nil', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2305140001', '1', '1', 'upload_files/candidate_tracker/41807676006_RESUME 001.pdf', NULL, '1', '2023-05-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our sales not open up will not sustain and handle our work pressure not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-14 08:17:35', 101, '2023-05-15 09:52:24', 0, NULL, 1),
(12793, 'Kowsika Rani', '5', '9345498281', '8098103012', 'kowsikar33@gmail.com', '1997-08-30', 25, '2', '2', 'Kandasamy', 'Business', 35000.00, 1, 16.50, 22000.00, 'Sattur', 'Chennai', '2305140002', '1', '2', 'upload_files/candidate_tracker/69307589005_kowsika resume.pdf', NULL, '1', '2023-05-15', 30, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Telecalling But not a relevant one can be trained in our roles kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-14 11:12:00', 60, '2023-05-16 10:16:18', 0, NULL, 1),
(12794, 'b venkata nandini', '5', '9346090849', '', 'venkatanandini15@gmail.com', '2002-08-12', 20, '2', '2', 'ramchandra', 'business', 15000.00, 1, 0.00, 18000.00, 'andrapradesh', 'banglore', '2305150001', '1', '1', 'upload_files/candidate_tracker/22125249485_RESUME (1).docx', NULL, '1', '2023-05-15', 0, '', '1', '42', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-15 08:37:51', 104, '2023-05-15 03:59:15', 0, NULL, 1),
(12795, 'SANTOSH KUMAR', '4', '9488774690', '8122879874', 'santhoshsekar1994@gmail.com', '1995-10-24', 27, '2', '2', 'SEKAR.C', 'BSNL (RET)', 35000.00, 1, 0.00, 15000.00, '6663E, THEATER STREET MADHURAPURI, THURAIYUR', 'Singapermal Kovil', '2305150002', '1', '1', 'upload_files/candidate_tracker/45850183245_Santhoshkumar Resume (1).docx', NULL, '1', '2023-05-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Active will not handle our work Not suitable for our roles', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-15 09:46:54', 101, '2023-05-15 10:55:45', 0, NULL, 1),
(12796, 'Sethupathi', '13', '9360349862', '', 'sethupathirkss2@gmail.com', '2001-05-20', 21, '3', '2', 'Rajasekaran K', 'Swiggy', 12000.00, 1, 0.00, 10000.00, 'Villupuram', 'Chennai', '2305150003', '', '1', 'upload_files/candidate_tracker/47768286743_Resume.pdf', NULL, '1', '2023-05-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher not much strong in the skills final round reject by Gokul', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-15 09:51:19', 1, '2023-05-15 09:58:10', 0, NULL, 1),
(12797, 's.logesh', '6', '7358424971', '9790865679', 'logeshsmart24@gmail.com', '2000-03-10', 23, '2', '2', 'e.sridharan', 'lic staff', 40000.00, 0, 0.00, 20000.00, 'lic staff quarters kk nagar', 'lic staff quarters kk nagar', '2305150004', '1', '1', 'upload_files/candidate_tracker/66838350954_CV of Logesh S.pdf', NULL, '1', '2023-05-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-15 10:22:26', 60, '2023-05-16 10:44:04', 0, NULL, 1),
(12798, 'Mohammed Fiverose', '33', '8825517108', '6380512114', 'fiverosemohammed@gmail.com', '2001-11-21', 21, '3', '2', 'ohammed shafiullah', 'police officer', 50000.00, 2, 0.00, 20000.00, 'chennai', 'nungambakkam', '2305150005', '', '1', 'upload_files/candidate_tracker/33006891592_FIVEROSE New.docx', NULL, '1', '2023-05-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basics skills will not sustain in a long and not showing much interest in the Profile', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-15 10:24:37', 1, '2023-05-15 10:32:57', 0, NULL, 1),
(12799, 'GOKULAKRISHNAN R', '2', '9344536168', '', 'rgokulamd@gmail.com', '2001-12-04', 21, '3', '2', 'RENGANATHAN G', 'FARMER', 10000.00, 1, 0.00, 15000.00, 'Vadapalani', 'vadapalani', '2305150006', '', '1', 'upload_files/candidate_tracker/42932157034_Gokulakrishnan\'s Resume.pdf', NULL, '1', '2023-05-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT Not much strong with the basics need to come back with his confirmation on TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-15 10:36:25', 1, '2023-05-15 10:40:30', 0, NULL, 1),
(12800, '', '0', '9445296557', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305150007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-15 10:52:02', 0, NULL, 0, NULL, 1),
(12801, 'Suganthi', '14', '9042194016', '9344449323', 'sugasrii1998@gmail.com', '1998-12-28', 24, '6', '2', 'Panja', 'Driver', 12000.00, 3, 0.00, 350000.00, 'Walajapet, ranipet dt.', 'Walajapet, ranipet dt.', '2305150008', '', '2', 'upload_files/candidate_tracker/18774482923_suganthiresumeNew.pdf', NULL, '1', '2023-05-15', 0, '', '3', '59', '2023-06-07', 189468.00, '', '5', '1970-01-01', '2', 'Selected for Flutter Profile in employment role for 2yrs SA', '2', '1', '2', '1', '8', '', '2', '2023-05-19', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-15 11:06:15', 60, '2023-06-07 10:16:22', 0, NULL, 1),
(12802, 'B.Surendran', '5', '9840713581', '9840963581', 'surenderwithsmile@gmail.com', '1997-03-11', 26, '2', '1', 'Meenakshi', 'Business man', 60000.00, 0, 25000.00, 30000.00, 'Redhills', 'Redhills', '2305150009', '1', '2', 'upload_files/candidate_tracker/12508188876_null.docx', NULL, '1', '2023-05-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Sales can be trained but left without attending the interview 2nd level', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-15 11:10:25', 85, '2023-05-15 12:30:50', 0, NULL, 1),
(12803, 'Moses Prabakaran M', '6', '9600812769', '', 'moseszmc756@gmail.com', '2001-05-31', 21, '1', '2', 'Murugesan', 'Barber', 20000.00, 1, 0.00, 14000.00, 'Thanjavur', 'Thanjavur', '2305150010', '', '1', 'upload_files/candidate_tracker/53135027871_CV_202212190954284.pdf', NULL, '1', '2023-05-15', 0, 'P1023', '3', '59', '2023-05-22', 164208.00, '', '6', '2023-08-29', '1', 'Selected for Thanjavur Consultant Role', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-15 11:15:42', 60, '2023-05-20 07:39:55', 0, NULL, 1),
(12804, 'Akash', '5', '9087223361', '', 'akash4144350@gmail.com', '1998-12-02', 24, '3', '2', 'Balaraman', 'Xerox shop', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2305150011', '', '2', 'upload_files/candidate_tracker/33962860881_Akash latest Resume.pdf', NULL, '1', '2023-05-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication No Will not sustain in our roles not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-15 11:16:12', 1, '2023-05-15 11:32:38', 0, NULL, 1),
(12805, 'Yuvasree B', '4', '8124798311', '9551558128', 'Sreeyuva72@gmail.com', '1999-06-27', 23, '2', '2', 'Kaliswari B', 'Housewife', 20000.00, 1, 21000.00, 25000.00, 'Tondiarpet', 'Tondiarpet', '2305150012', '1', '2', 'upload_files/candidate_tracker/59283579074_yuva resume(1).pdf', NULL, '1', '2023-05-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-15 12:51:29', 101, '2023-05-16 02:54:28', 0, NULL, 1),
(12806, '', '0', '9025243489', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305150013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-15 05:19:58', 0, NULL, 0, NULL, 1),
(12807, 'Manojkumar jain', '4', '8778505859', '', 'mmanojkumar.vlr@gmail.com', '1971-06-28', 51, '6', '2', 'Manojkumar', 'Job', 25000.00, 3, 11000.00, 20000.00, 'Vellore', 'Vellore', '2305150014', '', '2', 'upload_files/candidate_tracker/63458435427_resume (1).pdf', NULL, '1', '2023-05-16', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Aged candidate long career gap not suitable will not sustain and need to travel a long', '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-15 07:21:15', 1, '2023-05-15 09:36:40', 0, NULL, 1),
(12808, 'praveen kumar', '8', '9790780840', '7448341825', 'remo619praveen@gmail.com', '1998-07-20', 24, '3', '1', 'sharumathi', 'housewife', 15000.00, 1, 2.00, 35000.00, 'erukkancherry', 'erukkancherry', '2305150015', '', '2', 'upload_files/candidate_tracker/47912962945_1590123185066_praveen 2020 resume.docx', NULL, '1', '2023-05-20', 31, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-15 09:11:36', 1, '2023-05-15 09:16:47', 0, NULL, 1),
(12809, '', '0', '8056435443', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305150016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-15 09:30:29', 0, NULL, 0, NULL, 1),
(12810, 'Rachana shetty', '5', '8310534579', '', 'rachanashetty399@gmail.com', '2000-02-15', 23, '2', '2', 'Geetha shetty', 'Student', 50000.00, 1, 415000.00, 530000.00, '#123/5, 3rd main road 7th cross chamrajpet', '#123/5, 3rd Main Road 7th Cross Chamrajpet', '2305150017', '1', '2', 'upload_files/candidate_tracker/70965138775_NaukriRachanaShetty2y0m.pdf', NULL, '1', '2023-05-16', 0, '', '3', '59', '2023-05-26', 450000.00, '', '5', '1970-01-01', '1', 'Selected for Sutharsan Team in Staff ROle', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-15 09:49:12', 60, '2023-05-24 04:09:49', 0, NULL, 1),
(12811, 'P. Vignesh', '4', '8270630791', '', 'Vicky941999@gmail.com', '1999-04-09', 24, '1', '2', 'Palanivel', 'Farmer', 30000.00, 1, 15000.00, 12000.00, 'Budalur', 'Budalur', '2305160001', '', '2', 'upload_files/candidate_tracker/10112601350_Vicky resume.pdf', NULL, '1', '2023-05-16', 20, 'P1023', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team ...very lazy and not that much profile he not fit for sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-16 10:56:58', 85, '2023-05-16 02:57:06', 0, NULL, 1),
(12812, 'Suraj Kumar', '5', '7301624694', '', 'Sjbarnwal@gmail.com', '1995-08-02', 27, '6', '2', 'Shambhu Prasad', 'Business', 30000.00, 3, 430000.00, 510000.00, 'Marathahalli', 'Marathahalli', '2305160002', '', '2', 'upload_files/candidate_tracker/54655613336_Suraj Kumar Resume.pdf', NULL, '1', '2023-05-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-16 11:28:08', 1, '2023-05-16 11:39:33', 0, NULL, 1),
(12813, 'Subash k', '13', '8489004846', '6382410814', 'subashkaruppaiah20@gmail.com', '2000-07-14', 22, '6', '2', 'Karuppaiah', 'Farmer', 25000.00, 1, 0.00, 20000.00, 'Thiruvadanai, Ramanathapuram', 'Vadapalani,Chennai', '2305160003', '', '1', 'upload_files/candidate_tracker/28180421354_ Subash.kUPFResume.pdf', NULL, '1', '2023-05-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic skills technical round reject by tamilmani', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-16 11:58:35', 1, '2023-05-16 12:39:58', 0, NULL, 1),
(12814, '', '0', '7845828896', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305160004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-16 12:36:58', 0, NULL, 0, NULL, 1),
(12815, 'Susai Raj', '6', '7829925941', '8088214389', 'susair65@gmail.com', '2001-05-06', 22, '2', '2', 'Joseph', 'Self employe', 40000.00, 1, 30000.00, 30000.00, 'Koramangala', 'Hosa road', '2305160005', '1', '2', 'upload_files/candidate_tracker/74038420692_Resume -SUSAI RAJ J-2.0.pdf', NULL, '1', '2023-05-16', 0, '', '5', '42', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suit for our profile ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-16 12:47:26', 104, '2023-05-16 01:07:05', 0, NULL, 1),
(12816, 'Akshay shrenik', '6', '8970619648', '', 'shrenikakshay@gmail.com', '2000-01-18', 23, '2', '2', 'SHANTHI', 'Teacher', 50000.00, 1, 30000.00, 30000.00, 'Ecity', 'Ecity', '2305160006', '1', '2', 'upload_files/candidate_tracker/74774974954_Akshay_Wakefit- Resume.docx', NULL, '1', '2023-05-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not showing interest to the job followed for a  month but there is no proper communication from candidate end', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-16 12:47:28', 60, '2023-05-16 04:37:27', 0, NULL, 1),
(12817, 'saket raj', '6', '7303599036', '9504541824', 'prohandsaketbhoi@gmail.com', '2002-09-19', 20, '2', '2', 'aman raj', 'na', 111111.00, 1, 36000.00, 40000.00, 'patna bihar', 'madiwala bangalore', '2305160007', '1', '2', 'upload_files/candidate_tracker/13291076912_Resume After Bounce.pdf', NULL, '1', '2023-05-16', 0, '', '3', '59', '2023-05-17', 381600.00, '', '6', '2023-08-24', '1', 'Selected for Sutharsan Team in Staff Role', '5', '1', '4', '2', '2', '1', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-16 12:51:05', 60, '2023-06-02 10:16:27', 0, NULL, 1),
(12818, 'Sushmitha Shiva Kumar', '4', '9566208637', '8056193551', 'sushmithashivakumar060@gmail.com', '2001-04-13', 22, '2', '2', 'ambiga s', 'others', 8000.00, 1, 0.00, 15000.00, 'amjakarai', 'amjakarai', '2305160008', '1', '1', 'upload_files/candidate_tracker/44708061357_21679835942_sushmitha.S cv.docx', NULL, '1', '2023-05-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much open to handle the target long back she sttended and got rejected', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1015', '0', NULL, NULL, NULL, 1, '2023-05-16 02:55:37', 1, '2023-05-16 02:59:49', 0, NULL, 1),
(12819, 'Suganya s', '5', '9361486684', '9500149726', 'suganya.e2093@gmail.com', '1993-05-17', 29, '2', '1', 'Suresh', 'Digital marketting web developer', 35000.00, 2, 25000.00, 35000.00, 'Uthiramerur', 'T nagar', '2305160009', '1', '2', 'upload_files/candidate_tracker/95964121114_suganya_S.pdf', NULL, '1', '2023-05-16', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-16 03:22:12', 60, '2023-05-16 07:30:09', 0, NULL, 1),
(12820, 'PRAMOTH', '5', '9566209955', '', 'promothdevaraj@gmail.com', '1995-06-07', 27, '2', '2', 'Vadivammal', 'Salared', 50000.00, 1, 450000.00, 600000.00, 'Avadi', 'Avadi', '2305160010', '1', '2', 'upload_files/candidate_tracker/19611800591_promoth 2023 cv.docx', NULL, '1', '2023-05-17', 25, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance Have Exp in Life insurance Sales looking for change only because of his distance he is currently working in TNagar also very high CTC exp will not sustain', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-16 03:56:05', 85, '2023-05-17 11:58:09', 0, NULL, 1),
(12821, 'Hruthika SN', '6', '9740109203', '7899261967', 'hruthuhrithu@gmail', '2002-04-19', 21, '2', '2', 'Nenjesh', 'Farmer', 125000.00, 0, 14500.00, 20000.00, 'T dasarahalli', 'T dasarahalli', '2305170001', '1', '1', 'upload_files/candidate_tracker/24326534546_hruthu.docx', NULL, '1', '2023-05-17', 0, '', '5', '42', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not good in English ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-17 09:13:16', 104, '2023-05-17 12:29:13', 0, NULL, 1),
(12822, 'Ajithkumar', '5', '8124069163', '9019234437', 'ajithguna199@gmail.com', '1999-07-02', 23, '2', '2', 'Gunaseelan', 'Daily wages', 25000.00, 1, 25000.00, 30000.00, 'No45 srivarinivasa kaveri lay out marathahalli', 'No 45 srivarinivasa kaveri lay out marathahalli', '2305170002', '1', '2', 'upload_files/candidate_tracker/66428386708_Ajithkumar . resume_1682351295348_Ajithkumar.docx', NULL, '1', '2023-05-17', 0, '', '5', '42', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is lying that he worked in icici', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-17 09:28:12', 104, '2023-05-17 11:52:46', 0, NULL, 1),
(12823, 'Paul Antony', '5', '8680085596', '9150456193', 'Paulantony192000@Gmail.Com', '1998-01-09', 25, '2', '2', 'Barnabas', 'Salaried', 35000.00, 2, 0.00, 15000.00, 'Poonamallee', 'Poonamallee', '2305170003', '1', '1', 'upload_files/candidate_tracker/50455211952_Resume_Paul Antony B_Format2.pdf', NULL, '1', '2023-05-17', 0, '', '3', '59', '2023-05-19', 261696.00, '', '', '2023-05-26', '1', 'Selected for GK sir team in Staff Role', '5', '1', '4', '1', '8', '1', '2', '1970-01-01', '1', '1', 'paulantony192000@gmail.com', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-17 09:58:50', 60, '2023-05-19 10:50:47', 0, NULL, 1),
(12824, 'Arul Manikandan R', '31', '9094030845', '7094030845', 'arulramalingam06@gmail.com', '1998-07-15', 24, '6', '2', 'Ramalingam', 'Farmer', 15000.00, 2, 300000.00, 400000.00, 'Cuddalore', 'Pondicherry', '2305170004', '', '2', 'upload_files/candidate_tracker/65331565130_Arul frontEnd.pdf', NULL, '1', '2023-05-17', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have 3 months Exp but min exp is 20K and not less than that but a good candidate ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-17 10:40:35', 1, '2023-05-17 10:55:09', 0, NULL, 1),
(12825, 'Johnraj', '13', '9788962711', '', 'johnrajs2425@gmail.com', '2000-06-25', 22, '3', '2', 'Sekar', 'Daily wages', 10000.00, 4, 0.00, 15000.00, 'Ponneri', 'Ponneri', '2305170005', '', '1', 'upload_files/candidate_tracker/50527675539_John-2.pdf', NULL, '1', '2023-05-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC not ready to relocate will not sustain and too long distance\n', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-17 10:42:22', 1, '2023-05-17 10:52:34', 0, NULL, 1),
(12826, 'S. V. karthickvarman', '4', '7824035705', '9094177935', 'Karthickvarman@outlook.com', '1991-11-16', 31, '3', '2', 'Vinayagam', 'Carpenter', 20000.00, 1, 20000.00, 20000.00, 'No 75/183 not street ayanavaram Chennai', 'No 75/183 Not Street Ayanavaram Chennai', '2305170006', '', '2', 'upload_files/candidate_tracker/88677321770_karthickvarman nov 2nd 2019.mmm (2).doc', NULL, '1', '2023-05-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-17 11:10:17', 1, '2023-05-17 11:15:59', 0, NULL, 1),
(12827, 'Sriraman t', '26', '9962768344', '', 'thangamunna777@gmail.com', '1995-12-28', 27, '2', '2', 'THANGADURAI s', 'Contract labour', 20000.00, 1, 18000.00, 18000.00, 'No -6 , Neidhal nagar , chennai -600057', 'Thiruvotriyur', '2305170007', '1', '2', 'upload_files/candidate_tracker/34125018688_Sri resume.docx', NULL, '1', '2023-05-17', 1, '', '3', '59', '2023-05-18', 216000.00, '', '3', '2023-07-08', '1', 'Selected for Mutual Fund Role Fresher need to be trained have exp in different domain final round interviewed by Gokul', '3', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '4', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-05-17 11:32:46', 60, '2023-05-20 04:23:18', 0, NULL, 1),
(12828, '', '0', '8524023687', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305170008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-17 11:56:08', 0, NULL, 0, NULL, 1),
(12829, 'Mohanraj', '6', '9150242616', '9840416257', 'smashmohan03@gmail.com', '1999-03-03', 24, '1', '2', 'Eswari', 'Chennai', 25000.00, 1, 18000.00, 23000.00, 'Chenai', 'Chennai', '2305170009', '', '2', 'upload_files/candidate_tracker/62260780318_Mohan Resume edited.docx', NULL, '1', '2023-05-17', 0, 'P129', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-17 12:46:37', 1, '2025-12-23 06:51:12', 0, NULL, 1),
(12830, 'lokesh.m', '6', '8248630270', '8939411345', 'smilelokesh32@gmail.com', '2001-10-05', 21, '1', '2', 'munusamy.c', 'fisherman', 30000.00, 2, 0.00, 17000.00, 'royapuram', 'royapuram', '2305170010', '', '1', 'upload_files/candidate_tracker/97221695221_RESUME.pdf', NULL, '1', '2023-05-17', 0, 'p1357', '3', '59', '2023-05-18', 186000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-17 01:10:42', 60, '2023-05-18 11:30:59', 0, NULL, 1),
(12831, 'Sathish Kumar', '5', '7358194135', '', 'sk8868486@gmail.com', '2000-09-14', 22, '2', '2', 'chandrasekaran', 'driver', 20000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2305170011', '1', '1', 'upload_files/candidate_tracker/9536491132_SATHISH KUMAR RESUME.pdf', NULL, '1', '2023-05-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-17 04:46:56', 101, '2023-05-18 07:55:04', 0, NULL, 1),
(12832, 'satyam singh', '5', '9523617545', '', 'Satyampdhn2013@gmail.com', '1996-06-30', 26, '2', '2', 'yogendra singh', 'private job', 60000.00, 1, 400000.00, 500000.00, 'bangalore', 'bangalore', '2305180001', '1', '2', 'upload_files/candidate_tracker/34407140985_Satyam Singh.pdf', NULL, '1', '2023-05-18', 0, '', '1', '42', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-18 07:46:51', 104, '2023-06-05 07:33:12', 0, NULL, 1),
(12833, 'Ramesh Pachiyappan', '13', '9150806310', '9345003681', 'rameshkadambai1234@Gmail.com', '2002-07-05', 20, '6', '2', 'Pachiyappan G', 'Farmer', 50000.00, 1, 0.00, 300000.00, 'Thiruvannamalai', 'Chennai', '2305180002', '', '1', 'upload_files/candidate_tracker/67017979933_Updae1.pdf', NULL, '1', '2023-05-18', 0, '', '3', '59', '2023-05-22', 120000.00, '', '0', NULL, '2', 'Selected for Node Profile with stipend 6-8 then 3yrs overall 3.5 yrs SA', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-18 09:44:16', 1, '2023-05-18 09:53:51', 0, NULL, 1),
(12834, 'Sandhiya. V', '6', '9952915207', '1234567890', 'sandhiyavijayan.2001@gmail.com', '2001-10-03', 21, '1', '2', 'Vijayan', 'Kooli', 20000.00, 0, 14000.00, 14000.00, 'Teynampet', 'Teynampet', '2305180003', '', '2', 'upload_files/candidate_tracker/20503709559_sandhiyavijayan.pdf', NULL, '1', '2023-05-18', 0, '', '3', '59', '2023-06-01', 176844.00, '', '', '2023-06-06', '2', 'Selected for Charles Team in consultant ROle', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-18 10:00:41', 60, '2023-06-01 09:58:18', 0, NULL, 1),
(12835, 'C deepadharshini', '6', '9176564412', '', 'Devakideepadharshini@gmail.com', '2001-08-25', 21, '1', '2', 'Devaki', 'Housekeeping', 15000.00, 0, 0.00, 12000.00, 'Pudupet', 'Pudupet', '2305180004', '', '1', 'upload_files/candidate_tracker/38301075211_DEEPA RESUME.docx', NULL, '1', '2023-05-18', 0, 'P1404', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-18 10:25:39', 60, '2023-05-18 08:30:15', 0, NULL, 1),
(12836, 'Siddiqua khanum', '6', '8951679045', '', 'siddiquakhan7.sk@gmail.com', '1990-01-01', 33, '2', '2', 'Dilshad begum', 'Home maker', 30000.00, 3, 0.00, 20000.00, '1st stage BTM layout bangalore', '1st stage BTM layout bangalore', '2305180005', '1', '1', 'upload_files/candidate_tracker/55001584997_Siddi(1).pdf', NULL, '1', '2023-05-18', 0, '', '1', '42', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-18 10:25:45', 104, '2023-05-18 02:41:16', 0, NULL, 1),
(12837, 'Farzana Banu', '4', '9500139252', '8124735052', 'Farzanawaz04@gmail.com', '1997-06-16', 25, '2', '1', 'S. Tauseef Ahmed', 'Customs. Clearance', 192000.00, 1, 13000.00, 15000.00, 'Royapuram', 'Royapuram', '2305180006', '1', '2', 'upload_files/candidate_tracker/4501601432_FARZANA BANU Y RESUME.pdf', NULL, '1', '2023-05-18', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Have Exp in calling career gap can give a try for our roles kindly check and let me know your inputs', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-18 12:47:59', 85, '2023-05-18 04:39:09', 0, NULL, 1),
(12838, '', '0', '9585531260', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305180007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-18 01:11:16', 0, NULL, 0, NULL, 1),
(12839, '', '0', '8072250505', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305180008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-18 01:44:57', 0, NULL, 0, NULL, 1),
(12840, 'Syed Abuthakir', '13', '9500592297', '9367780156', 'syedabuthakir2000@gmail.com', '2000-08-24', 22, '6', '2', 'Syed Ibrahim', 'Auto driver', 10000.00, 2, 0.00, 20000.00, 'Erode', 'Vadapalani, Chennai', '2305180009', '', '1', 'upload_files/candidate_tracker/47890433553_syed\'s Resume (1).pdf', NULL, '1', '2023-05-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfort with TxxampC  fresher salary exp is more kindly check and let me know your inputs', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-18 02:36:17', 1, '2023-05-18 02:40:25', 0, NULL, 1),
(12841, 'Tamizharasan', '5', '8610983744', '', 'tamilp1671@gmail.com', '2001-07-16', 21, '2', '2', 'Periyasami', 'Farmer', 96000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Anna nagar Chennai', '2305180010', '1', '1', 'upload_files/candidate_tracker/80938767000_tamizharsan.pdf', NULL, '1', '2023-05-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our sales calling will not sustain and handle our pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-18 07:19:35', 104, '2023-05-19 09:36:18', 0, NULL, 1),
(12842, 'Kotteswaran S R', '5', '8939438574', '', 'srkotteswaran@gmail.com', '1997-08-29', 25, '2', '2', 'Ravichandran', 'Babaji shivaram shipping', 40000.00, 1, 25000.00, 30000.00, 'Chennai Anna Nagar', 'Chennai', '2305180011', '1', '2', 'upload_files/candidate_tracker/79330993305_S.R.KOTTESWARAN.pdf', NULL, '1', '2023-05-19', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile have exp in calling byjus need to be trained a lot kindly check and let me know yourinpuyts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-18 08:20:43', 104, '2023-05-19 09:36:48', 0, NULL, 1),
(12843, 'Vasanthkumar', '4', '9791856105', '8148564569', 'vasanthkumar979185@gmail.com', '2001-10-08', 21, '2', '2', 'Senthil Kumar', 'Palmbur', 12000.00, 1, 15000.00, 19000.00, 'Thanjavur', 'Thanjavur', '2305190001', '1', '2', 'upload_files/candidate_tracker/12439448956_vasanth resume.docx', NULL, '1', '2023-05-19', 0, '', '3', '59', '2023-05-22', 176844.00, '', '4', '2023-07-06', '1', 'Selected for Thanjavur Consultant ROle', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-05-19 09:37:18', 101, '2023-06-01 10:17:52', 0, NULL, 1),
(12844, 'Periya Samy', '13', '6382591208', '9159008358', 'Periyasamy06p@gmail.com', '2002-04-06', 21, '6', '2', 'Panneeraselvam', 'Farmer', 28000.00, 1, 15000.00, 18000.00, 'Tindivanam', 'Perugudi', '2305190002', '', '2', 'upload_files/candidate_tracker/22952221522_Resume_New.pdf', NULL, '1', '2023-05-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have exp in Dot net not open for TxxampC will not sustain for a lonfg', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-19 10:23:16', 1, '2023-05-19 10:27:43', 0, NULL, 1),
(12845, '', '0', '9360931861', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305190003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-19 10:30:06', 0, NULL, 0, NULL, 1),
(12846, 'BHUVANESHWARI', '4', '7339589825', '', 'faibhuv@gmail.com', '2008-05-19', 0, '2', '1', 'Faizus shareef', 'Business', 10000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2305190004', '1', '1', 'upload_files/candidate_tracker/49636125648_bhuvi resume.pdf', NULL, '1', '2023-05-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not fit for sales....expected HR profile due to family situation she is choosing  as a tellecaller so sustainability issue.....newly married, love marriage so regularity issues also there.......no laptop, expected salary high as a fresher15k ...very long gap she came for a job', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-19 10:40:32', 85, '2023-05-19 03:02:05', 0, NULL, 1),
(12847, 'Sathishkumar', '5', '8072460750', '7639673764', 'sathishbt777@gmail.com', '1999-07-06', 23, '2', '2', 'Raveendran', 'Sales', 500000.00, 1, 18500.00, 22000.00, 'Namakkal', 'Keelkattalai', '2305190005', '1', '2', 'upload_files/candidate_tracker/69417120627_resume 2023.pdf', NULL, '1', '2023-05-19', 0, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profiles have exp in housing  finance sustainability doubts kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-19 10:58:14', 85, '2023-05-19 11:43:37', 0, NULL, 1),
(12848, 'Raj rampragash', '2', '7418123499', '8939579293', 'rajrampragash0208@gmail.com', '2000-08-02', 22, '3', '2', 'Rampragash', 'Small business', 50000.00, 1, 0.00, 37000.00, 'Chennai', 'Chennai', '2305190006', '', '1', 'upload_files/candidate_tracker/54238406734_Raj_FSD_Resume.pdf', NULL, '1', '2023-05-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher salary exp is very high will not run in a long not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-19 11:51:24', 1, '2023-05-19 11:57:12', 0, NULL, 1),
(12849, 'Balaji Raja shekar', '5', '9600151812', '9940489804', 'balaji.444.com@gmail.com', '1997-02-07', 26, '2', '2', 'K.pandiyaraj', 'Scrap metal business', 25000.00, 1, 18000.00, 25000.00, '45/20 subhedar Hussain st Royappettah ch-14', '14/18 Hussain mulk st royappettah ch-14', '2305190007', '1', '2', 'upload_files/candidate_tracker/16939284584_1786150740603050.pdf', NULL, '1', '2023-05-20', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Poor Communication and understanding is poor will not sustain and handle our roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-19 03:55:17', 85, '2023-05-20 09:43:04', 0, NULL, 1),
(12850, 'm.yash kumar', '5', '7338782281', '9363690910', 'yashgandhi952@gmail.com', '2003-02-24', 20, '2', '2', 'p. mangal chand', 'business man', 400000.00, 1, 0.00, 22000.00, 't.h. road new washermenpet', 't.h road new washermenpet', '2305190008', '1', '1', 'upload_files/candidate_tracker/65140936293_resume 1 (1).pdf', NULL, '1', '2023-05-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile fresher need to check his sustainability salary exp is high being a fresher\n', '5', '2', '', '1', '8', '', '2', '2023-05-23', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-19 05:10:50', 101, '2023-05-20 11:40:55', 0, NULL, 1),
(12851, '', '0', '7483636879', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305190009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-19 06:24:59', 0, NULL, 0, NULL, 1),
(12852, 'Isaivani', '5', '8667280304', '', 'isaivanithillainathan@gmail.com', '1989-02-07', 34, '1', '2', 'Thillainathan', 'No more', 0.00, 2, 21500.00, 25000.00, 'Saidapet', 'Chennai', '2305200001', '', '2', 'upload_files/candidate_tracker/66064661507_isaivani resume 2023.docx', NULL, '1', '2023-05-20', 0, '', '3', '59', '2023-06-01', 252636.00, '', '3', '2023-06-30', '1', 'Selected for Consultant role ESales Team', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-20 11:11:09', 60, '2023-05-31 06:26:59', 0, NULL, 1),
(12853, 'Ahamed Sohail', '13', '7448617380', '', 'ahamedsohail18@gmail.com', '2001-10-04', 21, '3', '2', 'Jahabar Ali', 'Abroad', 15000.00, 1, 0.00, 12000.00, 'Madukkur', 'Mount Road,Anna Salai, Triplicane', '2305200002', '', '1', 'upload_files/candidate_tracker/21807956239_Ahamed\'s.pdf', NULL, '1', '2023-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basics need time to confirm the TxxampC will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-20 12:14:14', 1, '2023-05-20 12:18:47', 0, NULL, 1),
(12854, 'Bala Murugan y', '13', '9962390838', '9486001446', 'balamuruga1120@gmail.com', '2000-11-20', 22, '1', '2', 'Yuvaraj v', 'Two wheeler mechanic', 22836.00, 1, 0.00, 18000.00, 'No.6 , Velu Street, Jafferkhanpet, Chennai -600083', 'No.6 , Velu Street, Jafferkhanpet, Chennai -600083', '2305200003', '', '1', 'upload_files/candidate_tracker/28558405411_Bala Murugan.y-full stack.docx', NULL, '1', '2023-05-20', 0, 'Sathish', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basics Need Time To Confirm The TxxampC Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-20 01:27:49', 1, '2023-05-20 01:39:20', 0, NULL, 1),
(12855, 'Yogesh R', '33', '9600134284', '9952948516', 'yogeshpugal1320@gmail.com', '2000-03-01', 23, '1', '2', 'Rajkumar G', 'Security', 26000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2305200004', '', '2', 'upload_files/candidate_tracker/54894174305_Resume-Yogesh-R.pdf', NULL, '1', '2023-05-20', 15, '55655', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication not suitable for our roles will not sustain', '4', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-20 02:40:59', 1, '2023-05-20 02:44:59', 0, NULL, 1),
(12856, 'hashini s', '5', '9940615827', '', 'hashinisivakumar2652001@gmail.com', '2001-05-26', 21, '2', '2', 'sivakumar', 'driver', 25000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2305200005', '1', '2', 'upload_files/candidate_tracker/89775044891_Hashinis Resume_1684509183354_Hashini S.pdf', NULL, '1', '2023-05-20', 1, '', '3', '59', '2023-06-01', 277896.00, '', '5', '1970-01-01', '2', 'Selected for ESales Karthika Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '6', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-20 02:50:09', 60, '2023-05-24 04:04:45', 0, NULL, 1),
(12857, '', '0', '8098891116', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305200006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-20 03:56:46', 0, NULL, 0, NULL, 1),
(12858, 'Balaji.M', '5', '6379070365', '', 'mdnbalaji4012@gmail.com', '2001-05-10', 22, '2', '2', 'B.Manivel', 'Grocery store', 85000.00, 1, 240000.00, 320000.00, 'No 331, New Street, Cuddalore, Tamilnadu.', 'Leonardo mens PG, 3rd Street, madipakkam, Chennai.', '2305200007', '1', '2', 'upload_files/candidate_tracker/56650461921_Resume File - Balaji.M.pdf', NULL, '2', '2023-05-31', 20, '', '3', '59', '2023-06-26', 240000.00, '', '5', '1970-01-01', '2', 'Selected for Consultant Role for Kannan Team', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-20 06:32:19', 60, '2023-06-09 06:38:37', 0, NULL, 1),
(12859, '', '0', '9113863490', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305200008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-20 07:34:04', 0, NULL, 0, NULL, 1),
(12860, '', '0', '9176172128', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-20 07:34:15', 0, NULL, 0, NULL, 1),
(12861, '', '0', '8838017686', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305210001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-21 07:19:37', 0, NULL, 0, NULL, 1),
(12862, 'Sowmya', '13', '8015979702', '', 'Sowmyaolimathy@gmail.com', '2001-06-18', 21, '3', '2', 'Dharani Babu', 'Businesw', 100000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2305210002', '', '1', 'upload_files/candidate_tracker/63720987504_Sowmya 111518107024 resume.pdf', NULL, '1', '2023-05-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-21 07:22:46', 1, '2023-05-21 07:26:06', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12863, 'kaviya k', '11', '7397352181', '', 'kaviyakumar2030@gmail.com', '2000-09-20', 22, '3', '2', 'kumar.a', 'bsnl je', 60000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2305210003', '', '1', 'upload_files/candidate_tracker/86181258255_kaviya cv..pdf', NULL, '2', '2023-05-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-21 07:47:53', 1, '2023-05-21 08:36:47', 0, NULL, 1),
(12864, 'Thulasi babu R', '4', '9843568492', '9159210693', 'thulasibabu.r9843@gmail.com', '2000-06-02', 22, '2', '1', 'Arthi', 'Cooli', 6000.00, 1, 0.00, 20000.00, 'Tiruvallur', 'Bengaluru', '2305210004', '1', '1', 'upload_files/candidate_tracker/45308199875_ThulasiBabuRapooriJ2.pdf', NULL, '2', '2023-05-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-21 11:38:36', 85, '2023-05-22 10:36:05', 0, NULL, 1),
(12865, 'Hemalatha Elumalai', '13', '6381562092', '', 'hema18eg@gmail.com', '2002-05-18', 21, '6', '2', 'Elumalai R', 'Driver', 15000.00, 2, 0.00, 12000.00, 'Tindivanam', 'Chennai', '2305220001', '', '1', 'upload_files/candidate_tracker/42698561471_Aadhaar Card .pdf', NULL, '1', '2023-05-22', 0, '', '3', '59', '2023-05-24', 120000.00, '', '', '2023-05-27', '2', 'Selected for PHP Have a good skills knowledge in PHP Can be trained open for TxxampC', '2', '1', '2', '4', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-22 09:38:41', 60, '2023-05-24 06:26:16', 0, NULL, 1),
(12866, 'Koushik B.R', '4', '9380956657', '8892060101', 'brkoushik38@gmail.com', '2008-05-22', 0, '2', '2', 'Raghunath Bg', 'Shop', 52000.00, 1, 24000.00, 24000.00, 'Brahmin Street Kolar', 'Na', '2305220002', '1', '2', 'upload_files/candidate_tracker/13594821136_Resume pdf-1.pdf', NULL, '1', '2023-05-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-22 10:02:09', 85, '2023-05-22 10:43:58', 0, NULL, 1),
(12867, 'Karuppasamy', '14', '6374547087', '9025453508', 'karuppasamy9599@gmail.com', '1999-05-09', 24, '6', '2', 'Karthikeyan', 'EB', 60000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2305220003', '', '1', 'upload_files/candidate_tracker/8614442837_VICKY (1).pdf', NULL, '1', '2023-05-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Basic Skills Have Exp In Different Domain Will Not Sustain And Not Open For TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-22 10:21:23', 1, '2023-05-22 10:32:04', 0, NULL, 1),
(12868, 'Nandhini R', '5', '7397375214', '9840054111', 'nandhiniravi817@gmail.com', '1999-05-02', 24, '2', '2', 'K Ravi', 'Autu driver', 15000.00, 1, 15000.00, 16000.00, 'Adyar', 'Chennai', '2305220004', '1', '2', 'upload_files/candidate_tracker/5922764027_RAVI NANDHINI.docx', NULL, '1', '2023-05-22', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not comfort in the target based profile will not sustain and handle the work pressure not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-22 10:34:33', 85, '2023-05-22 11:14:11', 0, NULL, 1),
(12869, 'pravin kumar s', '4', '7339425584', '6383386011', 'jaypravinselvaraj92@gmail.com', '2000-07-11', 22, '2', '2', 'mariyammal S', 'House Wife', 14000.00, 1, 14000.00, 17000.00, 'Thanjavur', 'chennai', '2305220005', '1', '2', 'upload_files/candidate_tracker/16791883441_resume.pdf', NULL, '1', '2023-05-23', 6, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open up Will not handle the work pressure not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-05-22 11:12:35', 101, '2023-06-01 10:20:21', 0, NULL, 1),
(12870, 'RASHMI G', '13', '9445700514', '', 'rashmi.gajapathy@gmail.com', '2000-05-15', 23, '3', '2', 'Gajapathy V', 'Police', 50000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2305220006', '', '1', 'upload_files/candidate_tracker/23043701150_RASHMI G-1.pdf', NULL, '1', '2023-05-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not much comfort in TxxampC not much strong with the basics', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-22 11:37:21', 1, '2023-05-22 11:41:06', 0, NULL, 1),
(12871, 'Sheeba M', '13', '9952994675', '9962175065', 'sheebamurugesan89@gmail.com', '2001-07-20', 21, '3', '2', 'Sudha', 'Hostel Warden', 10000.00, 1, 0.00, 4.00, 'Chennai', 'Chennai', '2305220007', '', '1', 'upload_files/candidate_tracker/83285455090_Sheeba Resume.pdf', NULL, '1', '2023-05-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not open for TxxampC not much god with the basic skills too', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-22 11:43:42', 1, '2023-05-22 11:48:55', 0, NULL, 1),
(12872, '', '0', '9080647276', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305220008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-22 12:28:09', 0, NULL, 0, NULL, 1),
(12873, 'SATHISH M', '6', '9360171660', '7845550533', 'sathishsa9393@gmail.com', '2000-03-07', 23, '2', '2', 'Murugan', 'wage labor', 15000.00, 1, 16000.00, 18000.00, 'THENI', 'Thiruverkadu', '2305220009', '1', '2', 'upload_files/candidate_tracker/46022186896_resume pap.pdf', NULL, '1', '2023-05-22', 12, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable sales ', '5', '1', '', '4', '6', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-22 12:42:20', 60, '2023-05-23 07:12:10', 0, NULL, 1),
(12874, 'Mohammed Suhail', '13', '9566201312', '9840605096', 'mohammedsuhail323@gmail.com', '1999-09-20', 23, '1', '2', 'siraj basha a w', 'acting driver', 25000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2305220010', '', '1', 'upload_files/candidate_tracker/86091064915_AT Resume Suhail.docx', NULL, '1', '2023-05-22', 0, '01', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Testing profile only', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-22 12:47:15', 1, '2023-05-22 12:53:50', 0, NULL, 1),
(12875, 'kanagavalli', '4', '7358307191', '', 'kanagavalliraja2@gmail.com', '1999-06-09', 23, '2', '2', 'ramachandran', 'cooli', 10000.00, 1, 0.00, 20000.00, '20000', 'Villivakkam', '2305220011', '1', '1', 'upload_files/candidate_tracker/91076390973_WhatsApp Image 2023-05-22 at 1.06.10 PM.pdf', NULL, '1', '2023-05-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance Looking much for non voice process not open for sales callings', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-05-22 01:09:19', 1, '2023-05-22 01:15:27', 0, NULL, 1),
(12876, 'Lathafath Ali', '5', '9493164141', '', 'lafya97@gmail.com', '1997-07-17', 25, '6', '2', 'Shaik mastan malik', 'EX ARMY', 30000.00, 5, 40000.00, 45000.00, 'Kanchipuram', 'Habbal', '2305220012', '', '2', 'upload_files/candidate_tracker/57074283441_resume pr.pdf', NULL, '1', '2023-05-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-22 01:09:31', 1, '2023-05-22 01:12:07', 0, NULL, 1),
(12877, 'Surya', '13', '9626250475', '', 'surikhokho5@gmail.com', '1996-06-16', 26, '6', '2', 'Gunasekaran', 'Former', 12000.00, 1, 0.00, 15000.00, 'Peravurani', 'Chennai, t. Nagar', '2305220013', '', '1', 'upload_files/candidate_tracker/19501821690_Surya.pdf', NULL, '1', '2023-05-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basics and not open with the txxampC will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-22 01:13:32', 1, '2023-05-22 01:18:31', 0, NULL, 1),
(12878, 'J.sripriya', '4', '8668184694', '', 'premalathajagan8493@gmail.com', '2002-03-04', 21, '2', '2', 'Premalatha', 'House wife', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2305220014', '1', '1', 'upload_files/candidate_tracker/78575842684_DocScanner 07-Oct-2022 2-21 pm.pdf', NULL, '1', '2023-05-23', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-05-22 02:37:45', 101, '2023-06-01 10:19:42', 0, NULL, 1),
(12879, 'Ajay Kumar A', '5', '7539917563', '6383787725', 'ajaykumarabi545@gmail.com', '1996-01-06', 27, '2', '1', 'Anandhan R', 'Physical Education Teacher', 50000.00, 1, 0.00, 37000.00, 'Papanasam', 'Papanasam', '2305220015', '1', '1', 'upload_files/candidate_tracker/9753918259_Resume-Ajay-Kumar.pdf', NULL, '1', '2023-05-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-05-22 02:46:45', 101, '2023-06-01 10:21:23', 0, NULL, 1),
(12880, 'Ajay S', '5', '7305507754', '9551250544', 'Moniajay28@gmail.com', '2001-06-26', 21, '2', '2', 'Sankar p', 'Ennore', 30000.00, 4, 15000.00, 30000.00, 'Chennai', 'Chennai', '2305220016', '1', '2', 'upload_files/candidate_tracker/18265993416_Ajay S.pdf', NULL, '1', '2023-05-23', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for target based profile and too long distance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-05-22 04:38:57', 101, '2023-06-01 10:04:28', 0, NULL, 1),
(12881, '', '0', '7867065669', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305220017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-22 05:15:20', 0, NULL, 0, NULL, 1),
(12882, 'Diwakar s', '4', '9941789706', '', 'divasree13@gmail.com', '1997-08-11', 25, '3', '1', 'Kiruthika', 'House wife', 25000.00, 1, 20000.00, 20000.00, 'Mylapore', 'Mylapore', '2305220018', '', '2', 'upload_files/candidate_tracker/90048040096_diwakar (2023).pdf', NULL, '1', '2023-05-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-22 06:51:47', 1, '2023-05-22 06:54:43', 0, NULL, 1),
(12883, 'Hari Hara Sai.U', '5', '9043529926', '8939798595', 'harisai37@gmail.com', '1993-07-19', 29, '2', '2', 'Uvaraj', 'Na', 6000.00, 1, 26000.00, 330000.00, 'Nearby moolakkadai', 'Moolakakdai', '2305220019', '1', '2', 'upload_files/candidate_tracker/48876013620_Resume (2).pdf', NULL, '1', '2023-05-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left with out attending the 2nd level interview Fresher for our sales can give  atry', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-22 08:00:42', 85, '2023-05-24 12:46:51', 0, NULL, 1),
(12884, '', '0', '7204581855', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305220020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-22 11:11:25', 0, NULL, 0, NULL, 1),
(12885, '', '0', '6380561848', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305230001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-23 09:05:44', 0, NULL, 0, NULL, 1),
(12886, 'Imamhusain', '25', '7090001310', '8546925516', 'taufeeqmira1050@gmail.com', '1989-08-20', 33, '2', '1', 'Abida begum', 'P', 22490.00, 100, 24000.00, 28000.00, '# 209 kille oni mundgod uttar kannads', 'No 10 12th cross 14th main begur main R', '2305230002', '1', '2', 'upload_files/candidate_tracker/31045369906_DOC-20230328-WA0007. (4).pdf', NULL, '1', '2023-05-23', 30, '', '1', '93', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '8', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-05-23 09:56:13', 85, '2023-05-23 07:12:56', 0, NULL, 1),
(12887, 'Muthu M', '14', '8940261865', '9944680155', 'billammuthu@gmail.com', '1999-07-21', 23, '3', '2', 'Mariyappan K', 'Farmer', 10000.00, 1, 0.00, 13000.00, 'acharapakkam', 'CHENNAI', '2305230003', '', '1', 'upload_files/candidate_tracker/98372406780_MUTHU RESUME Magic_Bus.pdf', NULL, '1', '2023-05-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-23 10:00:00', 1, '2023-05-23 10:11:03', 0, NULL, 1),
(12888, 'Ranjith. S', '14', '6383141821', '9600394926', 'Ranjithcherry31@gmail.com', '1999-12-31', 23, '3', '2', 'Seenuvasan', 'TNEB', 20000.00, 1, 0.00, 2.50, 'Chengalpattu', 'Urapakkam', '2305230004', '', '1', 'upload_files/candidate_tracker/55685289871_S Ranjith - Resume.pdf', NULL, '1', '2023-05-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-23 10:04:09', 1, '2023-05-23 10:11:29', 0, NULL, 1),
(12889, 'S.pavithra', '4', '6374792209', '9789397913', 'Selvamganesh72@gmail.com', '2002-05-22', 21, '3', '2', 'Selvakumar kavitha', 'House wife', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2305230005', '', '1', 'upload_files/candidate_tracker/7805517074_DocScanner May 23, 2023 10-31 AM.pdf', NULL, '1', '2023-05-23', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-23 10:33:21', 1, '2023-05-23 10:38:59', 0, NULL, 1),
(12890, 'Purandaranarayanan E', '13', '9282228349', '', 'purandaranarayanan.e@gmail.com', '2000-12-19', 22, '6', '2', 'Mohanapriya', 'Government Staff', 18.00, 1, 0.00, 3.00, 'Chennai', 'Chennai, Mylapore', '2305230006', '', '1', 'upload_files/candidate_tracker/39839861301_Resume.pdf', NULL, '1', '2023-05-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basics looking for Govt Exams parents into govt will not sustain in a long not much comfort in TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-23 10:34:29', 1, '2023-05-23 10:37:15', 0, NULL, 1),
(12891, 'Silambarasan P', '13', '8760975965', '', 'silambarasansss3@gmail.com', '1994-06-15', 28, '3', '2', 'Perumal', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Palacode', 'Palacode', '2305230007', '', '1', 'upload_files/candidate_tracker/35427357862_Silambarasan resume.pdf', NULL, '1', '2023-05-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basics long Career Gap will not sustain in our roles not much comfrt in TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-23 10:42:39', 1, '2023-05-23 10:46:47', 0, NULL, 1),
(12892, 'Yogesh Srinivasan', '13', '8428343296', '7448913837', 'nsv.yogesh8@gmail.com', '2000-09-08', 22, '3', '2', 'Srinivasan N', 'Frontend Trainer', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2305230008', '', '1', 'upload_files/candidate_tracker/41074863088_Yogesh_Srinivasan_Resume_May22(Frontend).pdf', NULL, '1', '2023-05-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the interview', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-23 11:08:10', 1, '2023-05-23 11:16:57', 0, NULL, 1),
(12893, 'Mukesh', '13', '8939363609', '', 'mukeshde97@gmail.com', '1997-07-09', 25, '3', '2', 'Bhuvaneswari', 'NA', 15000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2305230009', '', '1', 'upload_files/candidate_tracker/81101490175_Mukesh Resume updated on 22.05.23.pdf.docx', NULL, '1', '2023-05-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-23 11:08:55', 1, '2023-05-23 11:15:02', 0, NULL, 1),
(12894, 'Archana', '4', '9884779077', '', 'archu7601@gmail.com', '1998-11-01', 24, '2', '2', 'Geetha', 'Working', 18000.00, 3, 20000.00, 24000.00, 'Chennai', 'Chennai', '2305230010', '1', '2', 'upload_files/candidate_tracker/16540768439_Archu new update resume.docx', NULL, '1', '2023-05-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for sales and appointment calling will not sustain', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-23 12:09:04', 85, '2023-05-23 07:11:45', 0, NULL, 1),
(12895, 'sameer', '13', '8939781943', '9940441362', 'sameerrr243@gmail.com', '2002-07-30', 20, '6', '2', 'shahawar', 'house wife', 25.00, 1, 0.00, 18.00, 'nandanam', 'nandanam chennai', '2305230011', '', '1', 'upload_files/candidate_tracker/8633187338_Sameer.pdf', NULL, '1', '2023-05-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Basics In JS/PHP Not Much Comfort In TxxampC Will Not Sustain In A Long Run have exp in Desktop Support', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-23 12:26:27', 1, '2023-05-23 12:31:58', 0, NULL, 1),
(12896, 'Zuber.i', '13', '8072385781', '8745774446', 'zuberzubermail13@gmail.com', '2001-11-29', 21, '6', '2', 'Dilshat', 'House wife', 50000.00, 2, 0.00, 10000.00, 'Thousand light', 'Thousand light', '2305230012', '', '1', 'upload_files/candidate_tracker/42392302751_ZUEBR-RESUME.pdf', NULL, '1', '2023-05-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basics in JS/PHP not much comfort in TxxampC will not sustain in a long run', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-23 12:28:55', 1, '2023-05-23 12:35:59', 0, NULL, 1),
(12897, 'Micheal Andrew', '4', '9840573128', '', 'michealandrew912@gmail.com', '1994-12-09', 28, '2', '2', 'Antony Raj', 'Cookie', 18000.00, 2, 0.00, 20000.00, 'Chennai', 'Thiruvottriyur', '2305230013', '1', '1', 'upload_files/candidate_tracker/29436068224_Andrew', NULL, '1', '2023-05-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Career Gap not much comfort in taking calls and handling the work pressure', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-23 01:49:07', 85, '2023-05-24 07:42:41', 0, NULL, 1),
(12898, 'Durgai samy.E', '4', '6379179527', '', 'praempraemkumar@gmail.com', '2002-06-14', 20, '2', '2', 'L.Essaki appan', 'Former', 75000.00, 0, 0.00, 15000.00, 'Tirunelveli', 'Porur chennai', '2305230014', '1', '1', 'upload_files/candidate_tracker/99104044519_Durgaisamy.doc', NULL, '1', '2023-05-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-23 04:39:07', 85, '2023-05-30 12:09:22', 0, NULL, 1),
(12899, '', '0', '7011068367', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305230015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-23 04:48:04', 0, NULL, 0, NULL, 1),
(12900, 'Mohammed shahrukh', '4', '9019292077', '9035819094', 'mdshahrukh2817@gmail.com', '1994-08-09', 28, '3', '2', 'Sahil', '50000', 20000.00, 5, 26200.00, 30000.00, 'Bangalore', 'Silk board', '2305230016', '', '2', 'upload_files/candidate_tracker/11632063657_Mohammed__Shahrukh__1684079624322.docx', NULL, '1', '2023-05-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-23 06:00:40', 85, '2023-05-23 07:10:29', 0, NULL, 1),
(12901, 'Nandhini Priya A P', '5', '7010858536', '', 'nandhini.ayyanar142@gmail.com', '1998-09-27', 24, '2', '2', 'Ayyanarappan R', 'Driver', 15000.00, 1, 18000.00, 25000.00, 'Thellar', 'Triplicane', '2305230017', '1', '2', 'upload_files/candidate_tracker/7598745404_Nandhini_cv.pdf', NULL, '1', '2023-05-24', 3, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have exp in calling but sal exp seems to be high 5050 profile can give a try kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-23 09:54:19', 85, '2023-05-24 10:02:31', 0, NULL, 1),
(12902, 'Mathi P', '5', '6379434549', '', 'mathi.pandian142@gmail.com', '1998-10-16', 24, '2', '2', 'Pandian A', 'Business', 20000.00, 2, 18000.00, 25000.00, 'Vandavasi', 'Chennai', '2305230018', '1', '2', 'upload_files/candidate_tracker/94402768047_mathi_cv.doc', NULL, '1', '2023-05-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 1 yr Exp in Calling Salary high Exp much preferred is non voice will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-23 10:09:39', 85, '2023-05-24 07:23:55', 0, NULL, 1),
(12903, 'Madhan D', '2', '9655992565', '9626064950', 'madhandayalan1999@gmail.com', '1999-11-02', 23, '3', '2', 'Dayalan', 'Private Driver', 18000.00, 1, 300000.00, 400000.00, 'Ranipet', 'Ranipet', '2305240001', '', '2', 'upload_files/candidate_tracker/14496922622_Madhan_2023-05-06-1.pdf', NULL, '1', '2023-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Salary Exp is high 1yr Exp but not good with the skills 2nd round reject Tamilmani', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-24 09:48:28', 1, '2023-05-24 09:59:29', 0, NULL, 1),
(12904, 'Sowbarnika', '13', '8608116681', '9942149038', 'sowbarnikabca@gmail.com', '2002-07-05', 20, '6', '2', 'Yoganathan', 'Driver', 15000.00, 1, 0.00, 18000.00, 'Perumanallur,Tiruppur', 'Perumanallur', '2305240002', '', '1', 'upload_files/candidate_tracker/65908347369_sowbarnika-resume-web copy-1.pdf', NULL, '1', '2023-05-24', 0, '', '3', '59', '2023-06-01', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Intern with 3.5yrs SA MERN', '2', '1', '2', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-24 09:49:25', 60, '2023-06-07 10:17:10', 0, NULL, 1),
(12905, 'Thanveer Mohamed S', '13', '7339100423', '9360798788', 'thanveermohamed2106@gmail.com', '2002-06-21', 20, '6', '2', 'Sickandar patcha', '12th', 25000.00, 1, 0.00, 250000.00, '3/785 jinna street, paramakudi', '669 H block 9th Street Anna nagar-600040', '2305240003', '', '1', 'upload_files/candidate_tracker/30369063933_resume (4)_compressed-8.pdf', NULL, '1', '2023-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basics In Javascript Not Much Comfort In TxxampC Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-24 10:42:23', 1, '2023-05-24 10:47:23', 0, NULL, 1),
(12906, 'Kesav Rooban', '13', '9087144500', '9442281964', 'kesav830@gmail.com', '1998-03-23', 25, '6', '2', 'Appadurai', 'Teacher', 50000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2305240004', '', '1', 'upload_files/candidate_tracker/17303433107_KESAV ROOBAN A.pdf', NULL, '1', '2023-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basics in Javascript Not much comfort in TxxampC will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-24 10:42:55', 1, '2023-05-24 10:49:37', 0, NULL, 1),
(12907, 'Azarudin', '23', '6382493293', '9942531632', 'azarudin08122000@gmail.com', '2000-12-08', 22, '2', '2', 'A. NAZEER', 'Tailor', 12000.00, 0, 0.00, 10000.00, 'Salem', 'Chennai', '2305240005', '27', '1', 'upload_files/candidate_tracker/13909969926_Azarudin Resume 3.pdf', NULL, '1', '2023-05-24', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task has been assigned for UI UX based on the task we can decide', '2', '2', '', '1', '8', '', '2', '2023-05-27', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-24 10:43:35', 104, '2023-06-27 03:02:26', 0, NULL, 1),
(12908, 'kuberan j', '2', '6369460554', '', 'jkuberan758@gmail.com', '2001-09-29', 21, '6', '2', 'jayakumar', 'farmer', 20000.00, 3, 0.00, 15000.00, 'thanjavur', 'keelkattalai', '2305240006', '', '1', 'upload_files/candidate_tracker/49877272484_KUBERAN.pdf', NULL, '1', '2023-05-24', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Wealthy Family will not handle the role for a long will not sustain', '2', '2', '0', '1', '8', '0', '2', '2023-05-31', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-24 11:09:17', 1, '2023-05-24 12:23:29', 0, NULL, 1),
(12909, 'Fathima Foumiya M', '13', '6380509603', '', 'foumiya8020@gmail.com', '2000-05-08', 23, '3', '2', 'Mohamed Ibrahim', 'Driver', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2305240007', '', '1', 'upload_files/candidate_tracker/30248215447_foumi cv (2).pdf', NULL, '1', '2023-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basics InJS Came As A Group And Looking For Job As A Group Will Not Run In A Long Not Suitable', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-24 12:08:16', 1, '2023-05-24 12:13:47', 0, NULL, 1),
(12910, 'Saran C', '13', '9688690945', '9361211118', 'iamsaransekar@gmail.com', '2000-03-05', 23, '3', '2', 'Chandrasekar s', 'Driver', 25000.00, 1, 0.00, 300000.00, 'Madurai South', 'Madurai South', '2305240008', '', '1', 'upload_files/candidate_tracker/54273340799_saran cv (1).pdf', NULL, '1', '2023-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basics inJS came as a group and looking for job as a group will not run in a long not suitable', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-24 12:08:19', 1, '2023-05-24 12:14:28', 0, NULL, 1),
(12911, 'RAJESHKUMAR S', '13', '9626034671', '9626034659', 'rajeshsrk34671@gmail.com', '2000-04-11', 23, '6', '2', 'S.SELVAM', 'Cooli', 50000.00, 2, 0.00, 20000.00, 'Madurai', 'Madurai', '2305240009', '', '1', 'upload_files/candidate_tracker/10692716558_RAJESH_Mar-2023.pdf', NULL, '1', '2023-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Basics InJS Came As A Group And Looking For Job As A Group Will Not Run In A Long Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-24 12:08:23', 1, '2023-05-24 12:14:36', 0, NULL, 1),
(12912, 'Thandabani V', '13', '9786406044', '9626034671', 'thandabaniv1999@gmail.com', '1999-12-09', 23, '3', '2', 'P.Velmurugan', 'Driver', 20000.00, 1, 0.00, 20000.00, 'Madurai', 'Chennai', '2305240010', '', '1', 'upload_files/candidate_tracker/27992031723_THANDABANI.pdf', NULL, '1', '2023-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basics InJS Came As A Group And Looking For Job As A Group Will Not Run In A Long Not Suitable', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-24 12:21:25', 1, '2023-05-24 12:26:16', 0, NULL, 1),
(12913, 'Sangeetha R', '13', '9361329958', '', 'sangeetharajan300@gmail.com', '2000-06-12', 22, '6', '2', 'Rajan S', 'Printing', 15000.00, 2, 0.00, 20.00, 'Sivakasi', 'Karappakam', '2305240011', '', '1', 'upload_files/candidate_tracker/95510329611_RESUME BY R.SANGEETHA.pdf', NULL, '1', '2023-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basics Will Not Handle Our Work Pressure Not Much Comfort In TxxampC Not Suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-24 12:27:50', 1, '2023-05-24 12:47:52', 0, NULL, 1),
(12914, 'Veerakumar m', '13', '6369318320', '', 'mmveerakumar24@gmail.com', '2000-06-24', 22, '6', '2', 'Marimuthu m', 'Former', 12000.00, 5, 0.00, 3.00, 'Pudukkottai', 'Singaperumalkoil', '2305240012', '', '1', 'upload_files/candidate_tracker/40331994298_Veerakumar M_Resume.pdf', NULL, '1', '2023-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basics will not handle our work pressure not much comfort in TxxampC not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-24 12:56:28', 1, '2023-05-24 01:00:05', 0, NULL, 1),
(12915, 'Pavithra.k', '2', '8667211256', '8667211255', 'pavichithra2121@gmail.com', '1999-04-27', 24, '3', '1', 'Loganathan.R', 'IT', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2305240013', '', '1', 'upload_files/candidate_tracker/15230688464_K.PAVITHRA-1.pdf', NULL, '1', '2023-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basics Will Not Handle Our Work Pressure Not Much Comfort In TxxampC Not Suitable married ', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-24 01:48:28', 1, '2023-05-24 01:53:02', 0, NULL, 1),
(12916, 'Mohamed Abubacker Shibly', '13', '6383322643', '', 'shibly2522@gmail.com', '2002-08-22', 20, '6', '2', 'hasan basheer', 'accountant', 50000.00, 2, 0.00, 12000.00, 'broadway', 'broadway', '2305240014', '', '1', 'upload_files/candidate_tracker/18792675828_Resume (2).pdf', NULL, '1', '2023-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basics Will Not Handle Our Work Pressure Not Much Comfort In TxxampC Not Suitable', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-24 02:44:33', 1, '2023-05-24 03:10:15', 0, NULL, 1),
(12917, 'Nanabala Yamuna', '4', '9704687045', '', 'yamunananabala@gmail.com', '1999-06-28', 23, '2', '2', 'Sreenivasulu', 'Former', 20000.00, 1, 0.00, 18000.00, 'Kadiri', 'Madiwala, banglore', '2305240015', '1', '1', 'upload_files/candidate_tracker/57727938402_yamuna resume-1 to.docx', NULL, '3', '2023-05-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-05-24 11:59:32', 101, '2023-06-01 09:48:40', 0, NULL, 1),
(12918, '', '0', '8110058713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-25 08:38:48', 0, NULL, 0, NULL, 1),
(12919, 'SANTHOSH .M', '4', '8681036842', '6385239273', 'santhoshsanthosh89530@gmail.com', '2001-08-11', 21, '2', '2', 'Punitha', 'Housewife', 30000.00, 3, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2305250002', '1', '1', 'upload_files/candidate_tracker/57420644602_1670915166802_1 page bio data with diclaration.pdf', NULL, '1', '2023-05-25', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-05-25 10:05:43', 101, '2023-06-01 10:22:03', 0, NULL, 1),
(12920, 'Rohith Krishnan K', '13', '9360276257', '', 'rohithkrishnan2006@gmail.com', '2002-06-20', 20, '3', '2', 'Kavitha K', 'House Wife', 10000.00, 1, 0.00, 2.50, 'Bhavani', 'Bhavani', '2305250003', '', '1', 'upload_files/candidate_tracker/20651134346_Rohith Krishnan K - CV.pdf', NULL, '1', '2023-05-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher For Our Role Not Much Comfort With The TxxampC  Need To Train A Lot', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-25 10:32:10', 1, '2023-05-25 10:41:59', 0, NULL, 1),
(12921, 'ABINESH a', '31', '7639431048', '', 'abinesh8264@gmail.com', '2000-03-03', 23, '6', '2', 'ASHOKKUMAR', 'Farmar', 48000.00, 1, 0.00, 3.50, 'Sirkali Mayiladuthurai', 'Vandalur Chennai', '2305250004', '', '1', 'upload_files/candidate_tracker/30240351199_ABINESH A.pdf', NULL, '1', '2023-05-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our role not much comfort with the TxxampC  need to train a lot', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-25 10:35:42', 101, '2023-05-25 10:51:20', 0, NULL, 1),
(12922, 'SANDHIYA S', '23', '6381852789', '', 'sandhiyasubramaniyan15@gmail.com', '2000-09-15', 22, '6', '2', 'Subramaniyan V', 'Constructor', 25000.00, 1, 0.00, 15000.00, 'Thathaiengarpettai', 'Chennai', '2305250005', '', '1', 'upload_files/candidate_tracker/76163119807_Sandhiya Resume (1).pdf', NULL, '1', '2023-05-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher For Our Role Not Much Comfort With The TxxampC  Looking for Java', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-25 10:47:46', 1, '2023-05-25 10:58:40', 0, NULL, 1),
(12923, 'praveena s', '23', '9790224653', '', 'praveenasuresh00@gmail.com', '1999-12-09', 23, '6', '2', 'suresh kumar j', 'driver', 30000.00, 1, 0.00, 15000.00, 'perambalur', 't.nagar', '2305250006', '', '1', 'upload_files/candidate_tracker/50056958714_Praveena_Resume.pdf', NULL, '1', '2023-05-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher For Our Role Not Much Comfort With The TxxampC  Looking fir Java Profile', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-25 10:53:19', 1, '2023-05-25 11:30:48', 0, NULL, 1),
(12924, 'Mohammed Sadiq Isham A S', '13', '9042469302', '8680043287', 'sadiqisham08@gmail.com', '2003-07-08', 19, '6', '2', 'Abubakkar Sithik M', 'Business', 24000.00, 2, 0.00, 12000.00, '23/1, sabapathy st, neelam gardern, perambur-11', '23/1, Sabapathy St, Neelam Gardern, Perambur-11', '2305250007', '', '1', 'upload_files/candidate_tracker/10848550226_RESUME.pdf', NULL, '1', '2023-05-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher For Our Role Not Much Comfort With The TxxampC  ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-25 11:16:19', 1, '2023-05-25 11:20:13', 0, NULL, 1),
(12925, 'John Judah S', '13', '9176112005', '9445704770', 'johnjudah90@gmail.com', '2001-04-18', 22, '3', '2', 'Samuel Raj K', 'Social Worker', 20000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Perungalathur', '2305250008', '', '1', 'upload_files/candidate_tracker/82418365106_john_judah_cv.docx', NULL, '1', '2023-05-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance Fresher For Our Role Not Much Comfort With The TxxampC  Need To Train A Lot', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-25 11:17:21', 1, '2023-05-25 11:23:41', 0, NULL, 1),
(12926, 'viswash', '4', '8438376959', '9345942295', 'vishwasdhennamma@gmail.com', '2002-10-09', 20, '2', '2', 'dennamma', 'Cooli', 96000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2305250009', '1', '1', 'upload_files/candidate_tracker/48937035309_VISWASH CV LATEST.pdf', NULL, '1', '2023-05-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open  up will not sustain in our roles not suitable', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-25 11:24:15', 85, '2023-05-26 09:54:01', 0, NULL, 1),
(12927, 'Srikanth.R', '33', '6380129710', '', 'sri811348@gmail.com', '2003-06-22', 19, '2', '2', 'Rajendiran.m', 'Agriculture', 20000.00, 1, 0.00, 15000.00, 'Kodambakkam', 'Kodambakkam', '2305250010', '1', '1', 'upload_files/candidate_tracker/25914017914_SRIKANTH..pdf', NULL, '3', '2023-05-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open  Up Will Not Sustain In Our Roles Not Suitable', '4', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-25 11:39:14', 85, '2023-05-26 07:41:11', 0, NULL, 1),
(12928, 'Yuvaraj LR', '13', '8428480807', '', 'yuvarajrama121@gmail.com', '2002-08-17', 20, '6', '2', 'Ramalingam L', 'IDLE', 8000.00, 1, 0.00, 25000.00, 'Thanjavur', 'Thanjavur', '2305250011', '', '1', 'upload_files/candidate_tracker/72302203041_YUVARAJ_LR_Resume_12-05-2023-23-54-29.pdf', NULL, '1', '2023-05-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for High Salary fresher have an offer for 3.5 LPA in testing role fresher for Development looking for high pay', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-25 11:51:59', 1, '2023-05-25 11:57:42', 0, NULL, 1),
(12929, 'Yuvarani.k', '4', '9361138804', '', 'Ammuyuva2398@gmail.com', '1998-03-20', 25, '1', '2', 'Kittappa n', 'Former', 10000.00, 2, 11000.00, 11000.00, '44,keela street, valathamangalam, papanasam', '44, keela street, valathamangalam, papanasam', '2305250012', '', '2', 'upload_files/candidate_tracker/390596280_DOC-20230413-WA0000.(4)(1).pdf', NULL, '1', '2023-05-25', 30, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-25 11:54:13', 1, '2023-05-25 12:14:48', 0, NULL, 1),
(12930, 'ajith k', '13', '8144495701', '', 'ajithsillai377@gmail.com', '1996-05-24', 27, '6', '2', 'kanagaraj a', 'daily wages', 15000.00, 1, 0.00, 15000.00, 'theni', 'chromepet', '2305250013', '', '1', 'upload_files/candidate_tracker/64113627636_Resume - Ajith.pdf', NULL, '1', '2023-05-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher For Our Role Not Much Comfort With The TxxampC  No basics will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-25 12:06:14', 1, '2023-05-25 12:53:16', 0, NULL, 1),
(12931, 'vishnu l', '4', '9677098576', '9345942295', 'vv092898@gmail.com', '2002-10-25', 20, '2', '2', 'lingeshwaran', 'Service oriented', 48000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2305250014', '1', '1', 'upload_files/candidate_tracker/90993831331_Vishnu CV.pdf', NULL, '1', '2023-05-26', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile fresher need to open up a lot but canbe trained in our roles kindly check and let me know you r inputs', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-25 12:17:29', 85, '2023-05-26 07:41:28', 0, NULL, 1),
(12932, 'Sweta hari sawoond', '4', '6382561383', '9884161409', 'Swethasaud14@gmail.com', '2000-05-14', 23, '2', '2', 'Hari saud', 'Chef', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Kilpauk garden', '2305250015', '1', '1', 'upload_files/candidate_tracker/67570071921_SWETHA CV.pdf', NULL, '1', '2023-05-26', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile  Nepali but Tamil managable Fresher Need To Open Up A Lot But Canbe Trained In Our Roles Kindly Check And Let Me Know You R Inputs', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-25 12:27:42', 85, '2023-05-26 07:41:45', 0, NULL, 1),
(12933, 'mohamed ibrahim', '31', '9360174646', '7845422016', 'mohamedibm2016@gmail.com', '2000-03-31', 23, '3', '2', 'anwar khan', 'developer', 10000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2305250016', '', '1', 'upload_files/candidate_tracker/6161488909_Mohamed Ibrahim.pdf', NULL, '1', '2023-05-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-25 12:42:18', 1, '2023-05-25 12:49:02', 0, NULL, 1),
(12934, 'Nanabala Yamuna', '25', '9381671724', '', 'yamunananabala@gmail.com', '1999-06-28', 23, '3', '2', 'Sreenivasulu', 'Former', 200000.00, 1, 0.00, 18000.00, 'Kadiri', 'Madiwala', '2305250017', '', '1', 'upload_files/candidate_tracker/18252001107_yamuna resume-1 to.docx', NULL, '3', '2023-05-26', 0, '', '1', '93', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '8', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-25 01:25:09', 85, '2023-05-26 07:31:06', 0, NULL, 1),
(12935, 'chandran c', '13', '6384687838', '', 'chandran.cp1998@gmail.com', '1998-01-21', 25, '6', '2', 'chandrapaul', 'farmer', 20000.00, 5, 0.00, 150000.00, 'tirunelveli', 'central', '2305250018', '', '1', 'upload_files/candidate_tracker/23560184685_software testing resume.pdf', NULL, '1', '2023-05-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Java profile only', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-25 01:49:32', 1, '2023-05-25 03:54:52', 0, NULL, 1),
(12936, 'sri saranya r', '16', '9940312048', '9345942295', 'mail2saranyasakthi@gmail.com', '1994-04-13', 29, '4', '2', 'sakthi vel', 'Assistant programmer', 35000.00, 0, 18000.00, 25000.00, 'chennai', 'chennai', '2305250019', '', '2', 'upload_files/candidate_tracker/37265729479_saranya resume updated May\'22.pdf', NULL, '1', '2023-05-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-25 02:42:10', 1, '2023-05-25 03:00:09', 0, NULL, 1),
(12937, '', '0', '8925373842', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305250020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-25 03:50:17', 0, NULL, 0, NULL, 1),
(12938, '', '0', '9344199293', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305250021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-25 04:42:05', 0, NULL, 0, NULL, 1),
(12939, '', '0', '7401065545', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305250022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-25 06:34:25', 0, NULL, 0, NULL, 1),
(12940, 'Lavanya a', '4', '8300584914', '', 'Lavalavanya847@gmail.com', '2001-07-15', 21, '2', '2', 'Anthony das', 'Meson', 200000.00, 3, 12000.00, 14000.00, 'Budhalur', 'Budalur', '2305250023', '1', '2', 'upload_files/candidate_tracker/61702220726_RESUME-3.pdf', NULL, '1', '2023-05-26', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Going to proceed with the higher studies as her E.Sister got opportuity in core', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-25 07:24:06', 101, '2023-05-26 10:16:42', 0, NULL, 1),
(12941, 'Deepak E', '6', '8056166544', '', 'deemarley10@gmail.com', '2003-03-22', 20, '2', '2', 'Ezhilarasu', 'Real Estate', 14000.00, 1, 0.00, 18000.00, 'Tiruttani', 'Vyasarpadi', '2305260001', '1', '1', 'upload_files/candidate_tracker/92227116339_Deepak Resume .pdf', NULL, '1', '2023-05-26', 0, '', '3', '59', '2023-06-05', 192000.00, '', '', '1970-01-01', '2', 'Selected for Kannan Team in Staff Role', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-26 09:04:01', 60, '2023-05-30 10:15:25', 0, NULL, 1),
(12942, 'C.H.Pushpa kumari', '13', '9444476383', '9444476382', 'Pushpakumari212003@gmail.com', '2003-02-21', 20, '6', '2', 'C.V.Hari', 'Gardner (parttime contigent)', 60000.00, 1, 0.00, 35000.00, '148/21, Pullapuram, Kilpauk, Chennai-10', '148/21, Pullapuram, Kilpauk, Chennai', '2305260002', '', '1', 'upload_files/candidate_tracker/99254245064_C.H.Pushpa Kumari- Resume.pdf', NULL, '1', '2023-05-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-26 10:39:58', 1, '2023-05-26 10:47:45', 0, NULL, 1),
(12943, '', '0', '9444476382', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305260003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-26 10:51:00', 0, NULL, 0, NULL, 1),
(12944, 'K.Dhinesh', '31', '7092879039', '9841304280', 'dineshkdinesh25@gmail.com', '1998-12-25', 24, '6', '2', 'E.Kumar', 'Daily wages', 15000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2305260004', '', '1', 'upload_files/candidate_tracker/16133448416_Front_End_Developer.pdf', NULL, '1', '2023-05-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-26 10:59:40', 1, '2023-05-26 11:04:03', 0, NULL, 1),
(12945, 'Suganya', '13', '6380066874', '9003051634', 'sugusudhar19@gmail.com', '1991-06-14', 31, '6', '1', 'Sudharsan', 'Trading', 40000.00, 1, 0.00, 20000.00, 'Thiruverkadu', 'Thiruverkadu', '2305260005', '', '1', 'upload_files/candidate_tracker/96182612681_suganyaresume2023.pdf', NULL, '1', '2023-05-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts long Career Gap Salary Exp is high', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-26 11:01:57', 1, '2023-05-26 11:05:31', 0, NULL, 1),
(12946, 'Arivazhagan R', '13', '7418277829', '8489600844', 'RAJUARIVAZHAGAN@GMAIL.COM', '1995-05-12', 28, '6', '2', 'Raji s', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'No.68,kongarapattu rd,rettanai po&vil,Tindivanam', 'Srp tools,tiruvanmiyur', '2305260006', '', '1', 'upload_files/candidate_tracker/36219100033_mca.docx', NULL, '1', '2023-05-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'good in prog. lau.. he need to confirm with his parents about txxampc... ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-26 11:12:51', 1, '2023-05-26 11:26:15', 0, NULL, 1),
(12947, 'Sakthivel.b', '13', '9025174389', '', 'sakthisakthi3617@gmail.com', '1999-06-30', 23, '6', '2', 'Murugammal', 'House wife', 30000.00, 2, 0.00, 200000.00, 'kirushnagri (dt)pin 635306', 'Chennai', '2305260007', '', '1', 'upload_files/candidate_tracker/2715965042_SAKTHIVEL.PDF', NULL, '1', '2023-05-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'only knowledge in html .. need to learn a lot..', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-26 11:28:41', 1, '2023-05-26 11:39:59', 0, NULL, 1),
(12948, 'Mohamed rizwan', '4', '6381337652', '9600318634', 'mohamedrizwan75257@gmail.com', '2003-08-04', 19, '1', '2', 'A.RAJA BAHADUR', 'FARMER', 20000.00, 2, 0.00, 10000.00, 'Ayyampettai thanjavur', 'Ayyampettai thanjavur', '2305260008', '', '1', 'upload_files/candidate_tracker/66053780190_MOHAMED RIZWAN RESUME.pdf', NULL, '1', '2023-05-26', 0, 'P1023', '3', '59', '2023-07-03', 138948.00, '', '5', '1970-01-01', '2', 'Selected for Thanjavur in Consutlant Role', '1', '2', '4', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-26 11:48:42', 60, '2023-07-03 11:06:10', 0, NULL, 1),
(12949, 'Suriya M', '13', '6380714768', '', 'suriya10596@gmail.com', '2000-06-10', 22, '3', '2', '25, Dhanalakshmi Nagar Madhuravayol Chennai', 'Farmer', 19000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2305260009', '', '1', 'upload_files/candidate_tracker/61541891024_Resume D.pdf', NULL, '1', '2023-05-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-26 12:05:18', 1, '2023-05-26 12:11:04', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12950, 'Sakthi. I', '13', '9790380835', '7904535897', 'isakthi542001@gamil.com', '2001-04-05', 22, '3', '2', '10/35 kazi(kaaji) street, aalandhur, metro station', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Madurai', 'Chennai', '2305260010', '', '1', 'upload_files/candidate_tracker/43314579536_Grey Clean CV Resume Photo (1).pdf', NULL, '1', '2023-05-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-26 12:05:47', 1, '2023-05-26 12:10:46', 0, NULL, 1),
(12951, 'R.Gayathri', '13', '7339056802', '', 'gayathri.rg2000@gmail.com', '2000-01-19', 23, '3', '2', 'J.Ravi', 'Electrician', 10000.00, 0, 0.00, 3.00, 'Uthiramerur', 'Chennai', '2305260011', '', '1', 'upload_files/candidate_tracker/97205385251_GAYATHRI.pdf', NULL, '1', '2023-05-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-26 02:11:38', 1, '2023-05-26 02:15:39', 0, NULL, 1),
(12952, 'Sriyanka s', '23', '9943114005', '9080875450', 'sriyankas96@gmail.com', '1999-11-18', 23, '3', '2', 'Srinivasan.s', 'Farmer', 25000.00, 1, 0.00, 2.50, 'Chengalpat', 'Chennai', '2305260012', '', '1', 'upload_files/candidate_tracker/20599758738_sriyanka resume pdf.pdf', NULL, '1', '2023-05-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'average in js can be trained ..she needs to confirm with her parents if she come back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-26 02:17:24', 1, '2023-05-26 02:49:59', 0, NULL, 1),
(12953, 'R.Gayathri', '13', '9025061332', '7339056802', 'gayathri.rg2000@gmail.com', '2000-01-19', 23, '3', '2', 'J.Ravi', 'Electrician', 10000.00, 0, 0.00, 2.50, 'Uthiramerur', 'Kolathur', '2305260013', '', '1', 'upload_files/candidate_tracker/96599480489_GAYATHRI.pdf', NULL, '1', '2023-05-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Not much good lau.. ', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-26 02:22:34', 1, '2023-05-26 02:25:21', 0, NULL, 1),
(12954, 'Imaan ali', '4', '7200959987', '', 'imaanali3422@gmail.com', '1995-07-13', 27, '6', '2', 'Rahamath nisha', 'House wife', 15000.00, 4, 13000.00, 17000.00, 'Sirkali', 'Chennai', '2305260014', '', '2', 'upload_files/candidate_tracker/12046792775_IMAAN RESUME_094613.docx', NULL, '1', '2023-05-30', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles', '1', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-26 06:00:52', 1, '2023-05-30 03:43:07', 0, NULL, 1),
(12955, 'Yukesh', '4', '7358301895', '', 'Yukesh447@gmail.com', '2001-12-15', 21, '2', '2', 'Swamynathan S', 'Temple Gurukkal', 50000.00, 0, 0.00, 20000.00, 'No.55.mettu street', 'CHENNAI', '2305260015', '1', '1', 'upload_files/candidate_tracker/32230233638_Resume_24_05_2023_03_11_07_pm.pdf', NULL, '1', '2023-05-27', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher 50-50 Profile... average in convincing skill ..need to train a lot.. kindly check and update your feed back', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-26 08:56:57', 97, '2023-06-05 04:42:09', 0, NULL, 1),
(12956, 'Arunkumar R', '13', '6385736439', '', 'arunkumar310520@gmail.com', '2000-05-31', 22, '6', '2', 'Ravi', 'Cooking master', 12000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2305270001', '', '1', 'upload_files/candidate_tracker/18860738981_Arunkumar_Resume.pdf', NULL, '1', '2023-05-27', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-27 10:45:43', 1, '2023-05-27 10:49:50', 0, NULL, 1),
(12957, 'Indhiran V', '13', '8870123584', '', 'sowndharrandy23@gmail.com', '1999-11-23', 23, '6', '2', 'Velu', 'Former', 20000.00, 1, 0.00, 250000.00, 'Thirukkazhukkundram', 'T.Nagar,Chennai', '2305270002', '', '1', 'upload_files/candidate_tracker/97997768368_dhiran resume Li.pdf', NULL, '1', '2023-05-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-27 11:11:24', 1, '2023-05-27 11:17:09', 0, NULL, 1),
(12958, 'Yasmeen', '4', '8220981170', '', 'yasmeenashu2025@gmail.com', '2002-04-25', 21, '3', '2', 'Anwar', 'Taj travels', 95000.00, 1, 0.00, 20000.00, 'Trichy', 'Chepauk', '2305270003', '', '1', 'upload_files/candidate_tracker/34602202209_DocScanner 27-May-2023 12-04 PM.pdf', NULL, '1', '2023-05-27', 0, '', '3', '59', '2023-06-15', 151584.00, '', '5', '1970-01-01', '2', 'Selected for B2B team in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-27 11:47:52', 60, '2023-06-07 07:28:55', 0, NULL, 1),
(12959, 'Sridharshnavi M', '4', '8248139625', '', 'sridharshnamoorthy@gmail.com', '2002-09-21', 20, '3', '2', 'MOORTHY S', 'Driver', 10000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2305270004', '', '1', 'upload_files/candidate_tracker/20507355432_DocScanner May 27, 2023 12-00 PM.pdf', NULL, '1', '2023-05-27', 0, '', '3', '59', '2023-06-02', 151584.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-27 11:48:06', 60, '2023-06-02 10:14:34', 0, NULL, 1),
(12960, 'Ruxshana taj fathima R', '13', '8925701129', '9944794127', 'rasulruxs@gmail.com', '1999-04-30', 24, '6', '1', 'Rasavu mohamed M', 'DCW worker', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2305270005', '', '1', 'upload_files/candidate_tracker/33015829900_ruxshana+resume.pdf', NULL, '1', '2023-05-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-27 12:08:19', 1, '2023-05-27 12:20:04', 0, NULL, 1),
(12961, 'R Honestraj', '23', '9841517648', '', 'honestjack2@gmail.com', '1994-01-27', 29, '6', '2', 'k. raja', 'railway rty', 38.00, 3, 0.00, 300000.00, 'Ranipet', 'Ranipet', '2305270006', '', '1', 'upload_files/candidate_tracker/85459793973_Honestraj UI developer.pdf', NULL, '1', '2023-05-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-27 12:13:54', 1, '2023-05-27 12:19:15', 0, NULL, 1),
(12962, 'Sakthivel V', '13', '6380533962', '', 'sakthivelvenkat@outlook.com', '2001-10-30', 21, '3', '2', 'Vengatesan', 'Farmer', 100000.00, 1, 0.00, 300000.00, 'Tiruvannamalai', 'Thiruvarkadu Chennai', '2305270007', '', '1', 'upload_files/candidate_tracker/11820005408_new resume exp.pdf', NULL, '1', '2023-05-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-27 12:24:05', 1, '2023-05-27 01:00:44', 0, NULL, 1),
(12963, 'DAYANA K', '23', '8825980009', '', 'dayanakannan25@gmail.com', '2000-07-15', 22, '3', '2', 'Kannan', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Perambalur', 'Choolaimedu', '2305270008', '', '1', 'upload_files/candidate_tracker/29691404210_dayana.pdf', NULL, '1', '2023-05-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-27 02:47:11', 1, '2023-05-27 02:51:09', 0, NULL, 1),
(12964, '', '0', '9042542681', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305270009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-27 03:37:09', 0, NULL, 0, NULL, 1),
(12965, '', '0', '9698192285', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305270010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-27 07:04:47', 0, NULL, 0, NULL, 1),
(12966, 'Nithya', '4', '6380173131', '9791794202', 'nithyanithi3701@gmail.com', '2001-07-03', 21, '2', '2', 'Muthuraman', 'Employed', 20000.00, 1, 0.00, 15000.00, 'Gummidipundi', 'Gummidipundi', '2305270011', '1', '1', 'upload_files/candidate_tracker/39336960562_Nithya latest.pdf', NULL, '1', '2023-05-29', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance Can relocate Career gap shewas into her own business now lookin for a job can give atry\n', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-27 09:44:50', 85, '2023-05-29 09:47:21', 0, NULL, 1),
(12967, 'BADRINATH D', '5', '7904710066', '7208049061', 'badribadrinath21@gmail.com', '2001-11-09', 21, '2', '2', 'Doss', 'Mounding operator', 200000.00, 1, 21000.00, 30000.00, 'Tindivanam', 'Royapetta', '2305280001', '1', '2', 'upload_files/candidate_tracker/33958624099_My Resume.pdf', NULL, '1', '2023-05-30', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our sales profile will not handle our work pressure not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-28 08:44:38', 85, '2023-05-30 11:56:21', 0, NULL, 1),
(12968, 'Keerthiga', '4', '9500142038', '', 'bcakeerthi627@gmail.com', '2001-03-10', 22, '2', '2', 'Ravi.C', 'Electrion', 20000.00, 2, 0.00, 15000.00, 'Thirukovilur (t.k) kallakurichi', 'Thirukovilur (t.k) kallakurichi', '2305280002', '1', '1', 'upload_files/candidate_tracker/54942926873_Resume_Keerthiga bca_Format1.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up will not suit our roles ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-28 11:36:42', 85, '2023-05-29 10:22:53', 0, NULL, 1),
(12969, 'Aakash N', '4', '8072161730', '', 'natarajanaakash228@gmail.com', '2000-01-01', 23, '3', '2', 'Natarajan', 'Farmer', 30000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2305290001', '', '1', 'upload_files/candidate_tracker/51321828009_Aakash.docx', NULL, '1', '2023-05-29', 0, '', '7', '59', NULL, 0.00, '', '0', NULL, '1', 'he is ok with the profile completed mba and looking for finance related job due to opening of hr in very less in thanjavur....already working in muthoot finance 3 months and releived due to health issue .....and expected 13k take home and father is farmer and have laptop and expected to join immediately....kindly check and confirm once', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 09:54:51', 1, '2023-05-29 09:58:31', 0, NULL, 1),
(12970, 'Vinayak P', '5', '7200483431', '7200481854', 'vinumech91@gmail.com', '1991-02-10', 32, '2', '1', 'Janani S', 'Manager', 80000.00, 0, 18000.00, 25000.00, 'Chennai', 'Chennai', '2305290002', '1', '2', 'upload_files/candidate_tracker/42001778884_103120000000007917 (1).pdf', NULL, '1', '2023-05-29', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-29 09:58:37', 101, '2023-05-29 03:13:36', 0, NULL, 1),
(12971, 'Ajay Mathesh B', '13', '6384945201', '7826011817', 'ajbalasubramanian2002@gmail.com', '2002-12-17', 20, '6', '2', 'Balasubramanian M', 'Accountant', 30000.00, 1, 0.00, 300000.00, 'Madurai', 'Madurai', '2305290003', '', '1', 'upload_files/candidate_tracker/66254798988_Zoho-Resume.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills knowledge need to train a lot but not open for TxxampC Need time to think and confirm from the candidate end Sustainability doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 10:13:21', 1, '2023-05-29 10:18:37', 0, NULL, 1),
(12972, 'B.Roshan Britto', '13', '8056543774', '9585888221', 'roshan1209britto@gmail.com', '2002-09-12', 20, '6', '2', 'V.Bilavendran', 'Business man', 80000.00, 1, 0.00, 30000.00, '2/627-5,G.R.Nagar, Madurai - 625007', 'Madurai', '2305290004', '', '1', 'upload_files/candidate_tracker/37241643942_B.Roshan Britto Resume.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 10:13:26', 1, '2023-05-29 10:19:22', 0, NULL, 1),
(12973, 'Dhadi Naga Poojitha', '11', '7799262798', '7075262798', 'dhadinagapoojitha@gmail.com', '2002-03-29', 21, '6', '2', 'Dhadi Anil Kumar', 'Farmer', 15000.00, 1, 0.00, 4.00, 'GUNTUR', 'GUNTUR', '2305290005', '', '1', 'upload_files/candidate_tracker/80813152359_CV_2023052714161826.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts she appeared for IT openings', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 10:17:09', 1, '2023-05-29 10:23:09', 0, NULL, 1),
(12974, 'Jabez kershom paul T', '2', '7358088340', '', 'jabpaul99@gmail.com', '2000-12-15', 22, '6', '2', 'Thomas M', 'Shop keeper', 20000.00, 0, 0.00, 5.00, 'CHENNAI.', 'CHENNAI.', '2305290006', '', '1', 'upload_files/candidate_tracker/21091573604_ Jabez.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 10:34:14', 1, '2023-05-29 10:37:40', 0, NULL, 1),
(12975, 'Mahammad asif Ali', '13', '8610794156', '', 'Mahammadasifali.ish@gmail.com', '2002-12-25', 20, '6', '2', 'Mohammad Malik', 'Labouror', 18000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2305290007', '', '1', 'upload_files/candidate_tracker/25542284800_A\'Ali\'s cv.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts Salary High Exp', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 10:42:03', 1, '2023-05-29 10:48:28', 0, NULL, 1),
(12976, 'Gowtham. R', '13', '8610519520', '8883343937', 'Gowtham555000@gmail.com', '1998-01-17', 25, '6', '2', 'Ramachanran. C', 'Construction', 20000.00, 1, 0.00, 10000.00, 'tiruppur', 'Perambur', '2305290008', '', '1', 'upload_files/candidate_tracker/82936102398_Gowtham_resume.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 10:59:18', 1, '2023-05-29 11:16:35', 0, NULL, 1),
(12977, 'Bhuvaneshwari P', '13', '8925633070', '', 'bhuvanaminion46@gmail.com', '2001-12-06', 21, '6', '2', 'Panner Selvam', 'Mechine Operator', 130000.00, 1, 0.00, 4.00, 'Tirupur', 'Chennai', '2305290009', '', '1', 'upload_files/candidate_tracker/42842842816_bhuvaneshwari-2.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 11:01:02', 1, '2023-05-29 11:06:39', 0, NULL, 1),
(12978, 'Tiyara raja', '13', '9003972552', '9092590069', 'tiyarabhaiyaa@gmail.com', '1998-03-10', 25, '3', '2', 'Raja', 'Tailor', 15000.00, 2, 0.00, 10000.00, 'tiruppur', 'Perambur', '2305290010', '', '1', 'upload_files/candidate_tracker/95534531446_CV_202305210838524.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 11:18:21', 1, '2023-05-29 11:24:58', 0, NULL, 1),
(12979, 'Manikandan c P', '13', '8838249195', '9524862089', 'cpmrajan21@gmail.com', '1998-11-21', 24, '6', '2', 'Palanirajan c', 'Former', 10.00, 2, 420000.00, 550000.00, 'Chennai', 'Chennai', '2305290011', '', '2', 'upload_files/candidate_tracker/78018678167_CV_cpmanikandan.pdf', NULL, '1', '2023-05-29', 45, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 11:19:32', 1, '2023-05-29 11:23:50', 0, NULL, 1),
(12980, 'Surendhar M', '13', '8608907668', '', 'surendharmkns@gmail.com', '2001-07-14', 21, '6', '2', 'Marimuthu J', 'Electrician', 40000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2305290012', '', '1', 'upload_files/candidate_tracker/71282888029_Surendhar Resume-1 (1).pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts too long Distance\n', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 11:42:15', 1, '2023-05-29 11:48:05', 0, NULL, 1),
(12981, 'Sivapriya.S', '13', '9360515894', '', 'Sivapriyasivakumar2000@gmail.com', '2000-10-07', 22, '3', '2', 'S.Neelavathi', 'Weaver', 20000.00, 2, 0.00, 40000.00, 'Chennai', 'Chennai', '2305290013', '', '1', 'upload_files/candidate_tracker/1059273912_Copy of Copy of Sivapriya Sivakumar.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 11:42:39', 1, '2023-05-29 12:13:54', 0, NULL, 1),
(12982, 'Gayathri P', '13', '7305568568', '', 'gayathri45palani@gmail.com', '2000-12-29', 22, '3', '2', 'Palani', 'Self employee', 25000.00, 1, 0.00, 40000.00, 'Chennai', 'Chennai', '2305290014', '', '1', 'upload_files/candidate_tracker/66498155434_Gayathri_P.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts too long distance', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 11:42:39', 1, '2023-05-29 11:50:25', 0, NULL, 1),
(12983, 'Jayakanth R', '31', '9360659065', '8778715374', 'jayakanth1812@gmail.com', '2001-12-18', 21, '3', '2', 'Ramadoss', 'Lathe Operator', 20000.00, 1, 0.00, 16000.00, 'Thiruvallur', 'Thiruvallur', '2305290015', '', '1', 'upload_files/candidate_tracker/44006797781_Jayakanth_Resume.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 12:03:53', 1, '2023-05-29 12:09:56', 0, NULL, 1),
(12984, 'Nithish Kumar E', '13', '9360323795', '', 'nithishvj2605@gmail.com', '2002-05-26', 21, '3', '2', 'Elangeswaran', 'Farmer', 15000.00, 1, 0.00, 16000.00, 'Arakkonam', 'Tiruvallur', '2305290016', '', '1', 'upload_files/candidate_tracker/51880598801_UPDATED RESUME (1).pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts too long Distane\n', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 12:04:21', 1, '2023-05-29 12:10:39', 0, NULL, 1),
(12985, 'Housia nassima', '13', '8667858749', '9940704104', 'Housianassima@gmail.com', '1998-12-30', 24, '3', '2', 'Siddhika', 'House wife', 20000.00, 0, 20000.00, 35000.00, 'Chennai', 'Chennai', '2305290017', '', '2', 'upload_files/candidate_tracker/95075374806_devhousia.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for REact No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 12:10:36', 1, '2023-05-29 12:28:08', 0, NULL, 1),
(12986, 'K santhosh', '13', '7825949461', '', 'www.santhoshk3@gmail.com', '2002-07-18', 20, '6', '2', 'Kannan', 'Painter', 30000.00, 1, 0.00, 200000.00, 'Chengalpat', 'Chennai', '2305290018', '', '1', 'upload_files/candidate_tracker/78312324990_Santhosh_resume.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 12:24:11', 1, '2023-05-29 12:29:36', 0, NULL, 1),
(12987, 'J Felix varun', '3', '7550038569', '', 'Felixvarun4321@gmail.com', '2002-05-23', 21, '6', '2', 'Jesudass', 'Mason', 20000.00, 1, 0.00, 30000.00, 'Tambaram', 'Tambaram', '2305290019', '', '1', 'upload_files/candidate_tracker/29974627164_felixresume.pdf', NULL, '1', '2023-05-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 12:24:21', 1, '2023-05-29 12:41:58', 0, NULL, 1),
(12988, 'VIMAL G', '13', '6374495255', '8940054105', 'vimalgvimalg2277@gmail.com', '2003-06-04', 19, '3', '2', 'Govindharaj', 'Farmar', 6000.00, 2, 0.00, 20000.00, 'Tiruvannamalai', 'Pallavaram', '2305290020', '', '1', 'upload_files/candidate_tracker/48005699571_RESUME VIMAL2001.pdf', NULL, '1', '2023-05-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 12:25:21', 1, '2023-05-29 12:36:00', 0, NULL, 1),
(12989, 'Ramesh S', '31', '8190022423', '', 'rameshsekar6698@gmail.com', '1998-06-06', 24, '6', '1', 'Sekar', 'Painter', 200000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2305290021', '', '1', 'upload_files/candidate_tracker/39482737608_S Ramesh - CV word (1).pdf', NULL, '1', '2023-05-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Basic skills sustainability doubts if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', '2023-06-02', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 12:32:29', 1, '2023-05-29 12:36:19', 0, NULL, 1),
(12990, 'Vengateshwaran', '2', '7397350312', '9443732524', 'vengateshwaran.1994@gmail.com', '1994-11-29', 28, '3', '1', 'rajamanickam', 'farmer', 10000.00, 1, 0.00, 40000.00, 'thiruvarur', 'chennai', '2305290022', '', '2', 'upload_files/candidate_tracker/83024121612_vengateshwaran_mern.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 12:36:18', 1, '2023-05-29 12:41:05', 0, NULL, 1),
(12991, 'Dilli Babu', '13', '9786274976', '', 'dillib440@gmail.com', '2001-12-05', 21, '3', '2', 'Venkatesalu', 'Police', 45000.00, 2, 0.00, 16000.00, 'Ranipet(town)', 'Ranipet(town)', '2305290023', '', '1', 'upload_files/candidate_tracker/18786331511_Dilli_Babu Venkatesalu_Resume_03-05-2023-11-44-41.pdf', NULL, '1', '2023-05-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 02:29:28', 1, '2023-05-29 02:32:59', 0, NULL, 1),
(12992, 'Arsath Ahamed M', '13', '7339326841', '', 'ahamedarsath580@gmail.com', '2001-12-11', 21, '3', '2', 'Parent', 'Business Man', 12000.00, 1, 0.00, 200000.00, 'Nagapattinam', 'Chennai', '2305290024', '', '1', 'upload_files/candidate_tracker/57174819500_Arsath_Resume1_2.pdf', NULL, '1', '2023-05-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 02:32:56', 1, '2023-05-29 02:35:38', 0, NULL, 1),
(12993, '', '0', '9381513822', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305290025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-29 07:13:46', 0, NULL, 0, NULL, 1),
(12994, 'R. Roshini', '33', '9150597283', '9790647008', 'roshinirajan27@gmail.com', '2000-10-27', 22, '3', '2', 'A. Rajan', 'Electrician', 15000.00, 1, 0.00, 20000.00, 'Tuticorin', 'Tuticorin', '2305290026', '', '1', 'upload_files/candidate_tracker/9808456089_CV (1).docx', NULL, '3', '2023-05-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-29 07:35:45', 1, '2023-05-29 07:53:16', 0, NULL, 1),
(12995, 'Pradeepa Amutha E', '6', '8939878890', '7358581784', 'pradeepaamutha1@gmail.com', '2003-03-25', 21, '2', '2', 'Amutha', 'Export company supervisor', 25000.00, 0, 12000.00, 1500.00, 'Chennai', 'Chennai', '2305290027', '50', '2', 'upload_files/candidate_tracker/23525230213_CV2024062323024314.pdf', NULL, '1', '2024-08-02', 1, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected  - 15k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2023-05-29 08:26:21', 104, '2024-08-17 09:59:18', 0, NULL, 1),
(12996, 'r.srinidhi', '5', '9597102735', '9597102835', 'srinidhimdu98@gmail.com', '1998-11-09', 24, '3', '1', 'nambisrinivasan', 'service engineer', 30000.00, 0, 120000.00, 250000.00, 'nanganallur', 'nanganallur', '2305300001', '', '2', 'upload_files/candidate_tracker/6762430629_Srinidhi resume (3).docx', NULL, '1', '2023-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Open for Accounts profile have exp in accounts but not more than a year she will work preparing  for Govt exams too will not sustain and not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 09:44:05', 1, '2023-05-30 09:53:33', 0, NULL, 1),
(12997, 'RanjithMunusamy', '13', '6374681412', '9629764819', 'ranjithmunusamy@gmail.com', '2001-11-13', 21, '6', '2', 'Munusamy', 'Cooli', 10000.00, 2, 0.00, 250000.00, 'Salem', 'Chennai', '2305300002', '', '1', 'upload_files/candidate_tracker/30920579884_Ranjith(2)Resume.pdf', NULL, '1', '2023-05-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 10:02:11', 1, '2023-05-30 10:06:06', 0, NULL, 1),
(12998, 'Suwetha', '13', '9940127734', '', 'suwedhashna23@gmail.com', '2001-04-23', 22, '6', '2', 'Dhashnamoorthy', 'Business', 50000.00, 1, 0.00, 17000.00, 'Manampoondi, Villupuram', 'Chennai', '2305300003', '', '1', 'upload_files/candidate_tracker/34382642863_Suwetha_WebDeveloper_Immediate_Joiner.pdf', NULL, '1', '2023-05-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 10:27:45', 1, '2023-05-30 11:39:37', 0, NULL, 1),
(12999, 'Varalakshmi P', '5', '9150445685', '', 'Varalakshmiprathapkumar@gmail.com', '2001-09-16', 21, '1', '2', 'Prathap Kumar', 'Food stall', 23000.00, 1, 0.00, 16000.00, 'Anna Nagar', 'Chennai', '2305300004', '', '1', 'upload_files/candidate_tracker/93989406398_Varalakshmi.pdf', NULL, '1', '2023-05-30', 0, 'P1269', '3', '59', '2023-06-05', 164208.00, '', '0', NULL, '2', 'Selecetd for Kannan team in consutlant Role', '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 10:29:33', 1, '2023-05-30 11:43:33', 0, NULL, 1),
(13000, 'Veera A', '13', '8778564954', '', 'veeraofficial22@gmail.com', '2002-06-26', 20, '6', '2', 'Jeeva A(Mother)', 'House Wife', 2500.00, 0, 0.00, 200000.00, 'Medavakkam, Chennai', 'Medavakkam, Chennai', '2305300005', '', '1', 'upload_files/candidate_tracker/19858958810_Veera\'s Resume (2).pdf', NULL, '1', '2023-05-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 10:38:08', 1, '2023-05-30 10:41:06', 0, NULL, 1),
(13001, 'Naveen Mekala', '13', '9652774101', '', 'navikumar7036@gmaik.com', '2001-06-25', 21, '6', '2', 'Ramanamma Mekala(Mother)', 'Home maker', 15000.00, 2, 0.00, 3.00, 'Nellore', 'Chennai', '2305300006', '', '1', 'upload_files/candidate_tracker/89978600098_NAVEEN_MEKALA_Resume_26-05-2023-17-21-02.pdf', NULL, '1', '2023-05-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 10:40:23', 1, '2023-05-30 10:46:09', 0, NULL, 1),
(13002, 'SANJAY KRISHNA', '13', '9645917895', '', 'sanjup980@gmail.com', '2000-12-11', 22, '6', '2', 'Sreedharan palat', 'Bank employee', 100000.00, 1, 0.00, 300000.00, 'THRISSUR', 'THRISSUR', '2305300007', '', '1', 'upload_files/candidate_tracker/64898932552_Sanjay Krishna Updated Resume.pdf', NULL, '1', '2023-05-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 10:54:59', 1, '2023-05-30 11:01:41', 0, NULL, 1),
(13003, 'KARTHICK', '13', '9600825535', '9445347202', 'mkarthick537@gmail.com', '1999-11-19', 23, '3', '2', 'Mohan', 'Daily wages', 62000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2305300008', '', '1', 'upload_files/candidate_tracker/44211358492_Resume.pdf', NULL, '1', '2023-05-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 11:12:47', 1, '2023-05-30 11:16:19', 0, NULL, 1),
(13004, 'Kamalam', '13', '9840586480', '', 'kamalamsankar142000@gmail.com', '2000-11-14', 22, '6', '2', 'Sankar', 'Business', 30000.00, 1, 0.00, 28000.00, '1e,indus farm,balaji Nagar,Iyyapanthangal', 'chennai', '2305300009', '', '1', 'upload_files/candidate_tracker/70111432397_kamalam S.pdf', NULL, '1', '2023-05-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 11:38:23', 1, '2023-05-30 11:42:11', 0, NULL, 1),
(13005, 'Sangeetha. B', '4', '7401721198', '7401123666', 'sabgeethabalakrishnan963@gmail.com', '2003-06-09', 19, '3', '2', 'Balakirshnan. D', 'Coolie', 14000.00, 1, 0.00, 15000.00, '821,6th block, 145 st, muthamizh nagar ch-118', 'Spencer plaza', '2305300010', '', '1', 'upload_files/candidate_tracker/64422670703_2 page format.doc', NULL, '1', '2023-05-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 11:54:28', 1, '2023-05-30 12:27:27', 0, NULL, 1),
(13006, 'Gunasundari.s', '4', '9361632671', '9789820464', 'gunasundarishanmugam02@gmail.com', '2002-09-02', 20, '3', '2', 'Shanmugam.c', 'Carpenter', 14000.00, 1, 0.00, 15000.00, 'Vyasarpadi', 'Vyasarpadi', '2305300011', '', '1', 'upload_files/candidate_tracker/46875914001_1685376320271_GUNA.pdf', NULL, '1', '2023-05-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 11:56:40', 1, '2023-05-30 12:37:48', 0, NULL, 1),
(13007, 'Akshaya N', '4', '9150104964', '', 'akshayamohan179@gmail.com', '2002-08-28', 20, '3', '2', 'Neelamegam.p', 'Lawyer', 16000.00, 2, 0.00, 15000.00, 'Perambur', 'Perambur', '2305300012', '', '1', 'upload_files/candidate_tracker/34003017808_resume (1).pdf', NULL, '1', '2023-05-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 11:57:05', 1, '2023-05-30 12:44:13', 0, NULL, 1),
(13008, 'K s Harikrishnan', '31', '7806946112', '', 'harikrishnansubash356@gmail.com', '2000-06-04', 22, '6', '2', 'M k subash', 'Business', 20000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2305300013', '', '1', 'upload_files/candidate_tracker/17498965882_Harikrishnanks.pdf', NULL, '1', '2023-05-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 12:03:34', 1, '2023-05-30 12:18:20', 0, NULL, 1),
(13009, '', '0', '9080372340', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305300014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-30 12:12:10', 0, NULL, 0, NULL, 1),
(13010, 'Vilyazhon R', '23', '9087006462', '9344162191', 'vilyazhon@gmail.com', '1997-05-09', 26, '6', '2', 'Ramamurthy', 'Carpenter', 300000.00, 1, 0.00, 36000.00, 'Chennai', 'Chennai', '2305300015', '', '1', 'upload_files/candidate_tracker/9728250882_Product Designer_compressed.pdf', NULL, '1', '2023-05-30', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for UI/UX he has exp in Graphic Design and looking for UI UX Salary Exp min 30K 2nd Hold need to give him the confirmation based on other profiles\n', '2', '1', '0', '1', '8', '0', '2', '2023-06-06', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 12:30:51', 1, '2023-05-30 12:35:09', 0, NULL, 1),
(13011, '', '0', '9789791276', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305300016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-30 12:36:35', 0, NULL, 0, NULL, 1),
(13012, 'Dhinaharan thangavelu', '14', '9487559618', '', 'dhinaharan0304@gmail.com', '2008-05-30', 0, '3', '2', 'Thangavelu', 'Business', 50000.00, 1, 0.00, 3.50, 'Tiruchirappalli', 'Chennai', '2305300017', '', '1', 'upload_files/candidate_tracker/14039224102_dhinamain.pdf', NULL, '1', '2023-05-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 01:19:51', 1, '2023-05-30 01:23:45', 0, NULL, 1),
(13013, 'vimalraj g', '5', '7339542859', '', 'vimalraj751993@gmail.com', '1993-05-07', 30, '2', '1', 'gajendran', 'farmer', 2500.00, 2, 26000.00, 30000.00, 'thiruvannamalai', 'pallikaranai', '2305300018', '1', '2', 'upload_files/candidate_tracker/92379430812_Vimalraj resume pdf.pdf', NULL, '1', '2023-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for calling activities no sustainability will not work in a company more than 6 months', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1015', '0', NULL, NULL, NULL, 1, '2023-05-30 01:51:37', 1, '2023-05-31 12:41:18', 0, NULL, 1),
(13014, 'ANOOP Ts', '5', '6282434213', '', 'TSANOOP62117@GMAIL.COM', '1996-01-29', 27, '2', '1', 'T K soman', 'Farmer', 32000.00, 2, 32000.00, 32000.00, 'Pathanamthitta', 'Bangalore', '2305300019', '1', '2', 'upload_files/candidate_tracker/99450625137_anoop 111.docx', NULL, '1', '2023-05-31', 0, '', '3', '59', '2023-06-12', 500000.00, '', '5', '1970-01-01', '1', 'Selected for Manivel Team', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-05-30 01:54:57', 60, '2023-06-12 11:41:10', 0, NULL, 1),
(13015, 'Renold', '13', '8778800829', '7395836125', 'renoldoantony143@gmail.com', '1997-04-28', 26, '3', '2', 'Antony', 'Fisherman', 25000.00, 4, 0.00, 12000.00, 'Kanniya kumari', 'Velachery', '2305300020', '', '1', 'upload_files/candidate_tracker/69856301308_renoldo cv (1).pdf', NULL, '1', '2023-05-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC  Will Not Sustain rejected in 2nd round Gokul', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-30 03:17:33', 1, '2023-05-30 03:23:14', 0, NULL, 1),
(13016, 'Imaan Ali F', '4', '8608229987', '', 'imaanali3422@gmail.com', '1995-07-13', 27, '3', '2', 'Rahamath nisha', 'House wife', 15000.00, 4, 13000.00, 17000.00, 'Mayiladudhurai DT', 'Mayiladudhurai', '2305300021', '', '2', 'upload_files/candidate_tracker/29374049895_IMAANALI.pdf', NULL, '1', '2023-05-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our sales roles will not handle the work pressure not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-30 03:35:00', 101, '2023-06-01 09:57:56', 0, NULL, 1),
(13017, 'N. VISHWA', '25', '6382937183', '', 'vishwank1907@gmail.com', '2001-07-19', 21, '2', '2', 'K. NAVANEETHAKANNAN', 'DRIVER', 35000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'THANJAVUR', '2305300022', '1', '1', 'upload_files/candidate_tracker/65474952213_vishwa NK.pdf', NULL, '1', '2023-05-31', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '8', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-05-30 05:26:26', 101, '2023-06-01 10:23:16', 0, NULL, 1),
(13018, 'Yuvaani', '5', '7305693740', '7502033241', 'dineshammu241@gmail.com', '2000-07-13', 22, '2', '1', 'Dinesh', 'Sales executive', 4.00, 2, 3.00, 25.00, 'Chennai', 'Chennai', '2305300023', '1', '2', 'upload_files/candidate_tracker/83506260637_Yuvaani Raja resume latest.docx', NULL, '1', '2023-05-31', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Attended', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-05-30 05:29:27', 101, '2023-05-31 03:32:18', 0, NULL, 1),
(13019, 'Jameela. A', '4', '6383339625', '9043356680', 'jameelaa.2309@gmail.com', '2000-09-23', 22, '2', '2', 'Abdul kareem', 'Tailor', 12000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2305300024', '1', '1', 'upload_files/candidate_tracker/81669503948_JAMEELA Resume.pdf', NULL, '1', '2023-05-31', 0, '', '3', '59', '2023-06-02', 151584.00, '', '', '1970-01-01', '2', 'Selected for Banu in Consultant Role', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-05-30 06:57:13', 101, '2023-06-01 09:47:10', 0, NULL, 1),
(13020, 'V. Udhayasuriyan', '25', '6384172898', '', 'suriyavijay1501@gmail.com', '2001-01-15', 22, '2', '2', 'S. Vijayakumar', 'Teacher', 60000.00, 0, 0.00, 20000.00, 'Budalur', 'Budalur', '2305300025', '1', '1', 'upload_files/candidate_tracker/61599349473_UDHAYASURIYAN.V.pdf', NULL, '1', '2023-05-31', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '8', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-05-30 09:11:17', 101, '2023-06-01 10:23:48', 0, NULL, 1),
(13021, '', '0', '8508887521', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2305310001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-05-31 12:08:00', 0, NULL, 0, NULL, 1),
(13022, 'MANIKANDAN M', '13', '6383872697', '', 'riddlerider1997@gmail.com', '1997-10-25', 25, '6', '2', 'MANIMARAN', 'Self Employed', 15000.00, 2, 0.00, 240000.00, 'Chinnakumarpatti,Tenkasi , Tamilnadu - 627415', 'Chinnakumarpatti,Tenkasi , Tamilnadu - 627415', '2305310002', '', '1', 'upload_files/candidate_tracker/14308367494_Resume 15.5.2023.pdf', NULL, '1', '2023-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-31 10:42:07', 1, '2023-05-31 10:48:46', 0, NULL, 1),
(13023, 'Praveen Kumar M', '13', '9025385815', '8220464420', 'praveenkumarm24901@gmail.com', '2001-09-24', 21, '6', '2', 'Mahendran M', 'Conductor', 30000.00, 1, 0.00, 25000.00, 'Kanchipuram', 'Kanchipuram', '2305310003', '', '1', 'upload_files/candidate_tracker/34978120854_CV_2023053020582034.pdf', NULL, '1', '2023-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No basic skills in JS Not much comfort with the TxxampC if he comes back let  us try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-31 10:46:43', 1, '2023-05-31 10:53:07', 0, NULL, 1),
(13024, 'g.sri dinesh', '13', '7538875836', '6383647018', 'sridineshit@gmail.com', '2000-12-06', 22, '6', '2', 'gnanasekaran', 'business', 40.00, 1, 0.00, 240000.00, 'chennai', 'kanchipuram', '2305310004', '', '1', 'upload_files/candidate_tracker/83857924163_Dinesh Resume (1).pdf (1).pdf', NULL, '2', '2023-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-31 10:59:36', 1, '2023-05-31 11:04:16', 0, NULL, 1),
(13025, 'Premkumar', '2', '6379654978', '7418240379', 'premkumart3103@gmail.com', '2001-03-31', 22, '6', '2', 'Thirumalai.R', 'Farmer', 10000.00, 0, 0.00, 10000.00, 'Cuddalore', 'Cuddalore', '2305310005', '', '1', 'upload_files/candidate_tracker/86233306293_Prem-resume-my23.pdf', NULL, '1', '2023-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-31 10:59:57', 1, '2023-05-31 11:06:35', 0, NULL, 1),
(13026, 's.punitha', '3', '8754075623', '9791616245', 's.punitha18.cs570@gmail.com', '2000-06-06', 22, '3', '2', 'n.sivasubramaniyan', 'farmer', 10000.00, 1, 0.00, 15000.00, 'karakkottai', 'karakkottai', '2305310006', '', '1', 'upload_files/candidate_tracker/39149256792_punitha2023.pdf', NULL, '1', '2023-05-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-31 11:21:13', 1, '2023-05-31 12:01:21', 0, NULL, 1),
(13027, 'maria faustina j', '4', '6382046016', '6381995404', 'mariafaustina1011@gmail.com', '2000-07-20', 22, '3', '2', 'jayaraj v', 'farmer', 10000.00, 1, 0.00, 15000.00, 'thiruvaiyaru', 'thiruvaiyaru', '2305310007', '', '1', 'upload_files/candidate_tracker/28305242471_MariaFaustina resume_.pdf', NULL, '1', '2023-05-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-31 11:21:46', 1, '2023-05-31 11:53:32', 0, NULL, 1),
(13028, 'Narmatha K', '3', '6374188520', '9751979528', 'narmatha.k425@gmail.com', '2001-09-11', 21, '3', '2', 'Krishnasamy G', 'Farmer', 8000.00, 1, 0.00, 15000.00, 'Thirukkattupalli', 'Thirukkattupalli', '2305310008', '', '1', 'upload_files/candidate_tracker/59940656245_NARMATHA K 1.pdf', NULL, '1', '2023-05-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '4', '5', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-31 11:21:50', 1, '2023-05-31 11:50:02', 0, NULL, 1),
(13029, 'ramya.b', '4', '9698212218', '9003536714', 'ramya18.cs571@gmail.com', '2008-05-31', 15, '3', '2', 'balu.g', 'farmer', 8000.00, 1, 0.00, 18000.00, 'ayyampet', 'ayyampet', '2305310009', '', '1', 'upload_files/candidate_tracker/59365514936_RAMYA B resume2.pdf', NULL, '1', '2023-05-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-31 11:45:58', 1, '2023-05-31 12:00:54', 0, NULL, 1),
(13030, 'Nandhini J', '13', '6383255144', '', 'Priyapriya65776@gmail.com', '2002-02-06', 21, '3', '2', 'Jagannadhan S', 'Photographer', 25000.00, 2, 0.00, 3.50, 'Vellore', 'Saidapet', '2305310010', '', '1', 'upload_files/candidate_tracker/72299683714_Nandhini J Resume .pdf', NULL, '1', '2023-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-31 11:53:56', 1, '2023-05-31 12:00:00', 0, NULL, 1),
(13031, 'S Shifa Barveen', '13', '8489997017', '', 'shifuaasa785@gmail.com', '2000-11-22', 22, '3', '2', 'Syed Rahim', 'Business Man', 5000.00, 1, 0.00, 3.00, 'Tenkasi', 'Chennai', '2305310011', '', '1', 'upload_files/candidate_tracker/21197210210_Shifa WD resume.pdf', NULL, '1', '2023-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-31 11:55:22', 1, '2023-05-31 12:01:12', 0, NULL, 1),
(13032, 'Hemanathan', '13', '6381049001', '9962380962', 'hemnathan4699@gmail.com', '1999-06-04', 23, '3', '2', 'Gowri', 'Home maker', 15000.00, 1, 0.00, 300000.00, '39,south Street, thandarai, Villupuram district', '14,A, Akkarai , sholinganallur', '2305310012', '', '1', 'upload_files/candidate_tracker/28994645649_hemaresume.pdf1.pdf', NULL, '1', '2023-05-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-31 12:13:56', 1, '2023-05-31 12:19:59', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13033, 'p.Kishorekumar', '2', '7339540836', '', 'Kishorekumarpp20@gmail.com', '2001-03-20', 22, '3', '2', 'Parent', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Chennai', '2305310013', '', '1', 'upload_files/candidate_tracker/59742651355_Kishore Kumar P-compressed.docx', NULL, '1', '2023-05-31', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to schedule the cndidate for the final round with Gokul have basic knowledge 2nd round interviewed by Tamilmani\n', '2', '1', '0', '1', '8', '0', '2', '2023-06-06', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-05-31 01:01:48', 1, '2023-05-31 02:37:24', 0, NULL, 1),
(13034, 'JAGADEESH K', '13', '8754053474', '', 'jagankannamma@gmail.com', '2000-03-29', 23, '3', '2', 'Karunakaran', 'Cooli', 15000.00, 2, 0.00, 15000.00, 'Karikalavakkam, Thiruvallur', 'Karikalavakkam, Thiruvallur', '2305310014', '', '1', 'upload_files/candidate_tracker/56625520564_Jagan Updated CV.pdf', NULL, '1', '2023-05-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-31 01:40:48', 101, '2023-05-31 03:01:31', 0, NULL, 1),
(13035, 'Navinkumar', '13', '8248438535', '', 'navinnatraj2001@gmail.com', '2001-07-21', 21, '6', '2', 'Natarajan', 'Farmer', 10000.00, 5, 0.00, 120000.00, 'Trichy', 'Chrompet', '2305310015', '', '1', 'upload_files/candidate_tracker/49766102576_Navin.resume.pdf', NULL, '1', '2023-05-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let  Us Try Will Not Sustain', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-05-31 02:45:38', 112, '2024-03-25 06:28:56', 0, NULL, 1),
(13036, 'Deepika.T', '5', '9566210343', '', 'Dipikathirugnanam@gmail.com', '1999-08-28', 23, '2', '2', 'Megala.T', 'Hostel warden', 100000.00, 0, 0.00, 25000.00, '6/14 Indira Gandhi nagar 1st Street,aminjikarai,', '115 gill nagar extension', '2305310016', '1', '1', 'upload_files/candidate_tracker/51155999711_Deepika Resume.pdf', NULL, '1', '2023-06-02', 0, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '6m of exp in byjus.. good communication skill.. sustainbility doubts.. kindly check xxamp update your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-05-31 05:10:12', 85, '2023-06-02 04:42:52', 0, NULL, 1),
(13037, 'M. Gunasekaran', '13', '9344283215', '', 'gunaguna4545496@gmail.com', '2000-10-09', 22, '6', '2', 'M. Markandan', 'Farmer', 78000.00, 1, 0.00, 15000.00, 'Sholinghur', 'Chennai', '2306010001', '', '1', 'upload_files/candidate_tracker/13387246727_M.GUNASEKARAN RESUME.pdf', NULL, '1', '2023-06-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Not Open For TxxampC Will Not Sustain And Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-01 10:15:23', 1, '2023-06-01 10:19:49', 0, NULL, 1),
(13038, 'S.Dinesh', '13', '7871669406', '9600083621', 'dineshdheena709@gmail.com', '2000-12-05', 22, '6', '2', 'A.Srinivasan', 'Welding', 120000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2306010002', '', '1', 'upload_files/candidate_tracker/69153526349_Dinesh resume.pdf', NULL, '1', '2023-06-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic Skills not open for TxxampC will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-01 10:15:35', 1, '2023-06-01 10:37:27', 0, NULL, 1),
(13039, 'J.Jerome', '13', '9710759065', '9710485562', 'jeromejerry2710@gmail.com', '2000-09-27', 22, '6', '2', 'D.John Edwin Raj', 'Driver', 120000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2306010003', '', '1', 'upload_files/candidate_tracker/14286715972_JEROME_BE_CSE_2022_JAVA DEVELOPER.PDF', NULL, '1', '2023-06-01', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-01 10:15:38', 1, '2023-06-01 10:20:57', 0, NULL, 1),
(13040, 'Priyanka P', '13', '9841784605', '', 'priyanka.palani@gmail.com', '1995-07-04', 27, '6', '1', 'Vignesh', 'Design Engineer', 30000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2306010004', '', '1', 'upload_files/candidate_tracker/81133883532_Priyanka. CV.pdf', NULL, '1', '2023-06-01', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-01 10:50:16', 1, '2023-06-01 11:02:17', 0, NULL, 1),
(13041, 'Sathish KumarS', '13', '8190074992', '7299820636', 'ksathish9660@gmail.com', '2003-12-30', 19, '3', '2', 'Shanmugam', 'Farmer', 96000.00, 1, 0.00, 2.00, 'Pugalur, Karur dt', 'Govinda samy street, MGR Nagar, Chennai', '2306010005', '', '1', 'upload_files/candidate_tracker/27701195650_resume.pdf', NULL, '1', '2023-06-01', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-01 10:59:35', 1, '2023-06-01 11:07:55', 0, NULL, 1),
(13042, 'senthil S', '23', '9788425850', '9629186565', 'senthilsakthi3597@gmail.com', '1997-05-03', 26, '6', '2', 'P.Subramanian', 'Textile Work', 20000.00, 4, 0.00, 20000.00, 'Trichy', 'Velachery', '2306010006', '', '1', 'upload_files/candidate_tracker/48064269643_SENTHIL Resume -2023(updated).pdf', NULL, '1', '2023-06-01', 0, '', '3', '59', '2023-06-16', 120000.00, '', '', '2023-07-24', '1', 'Selected for IT Team in Internship ', '2', '1', '0', '1', '8', '0', '2', '2023-06-15', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-01 10:59:41', 1, '2023-06-01 11:05:04', 0, NULL, 1),
(13043, 'SHAKTHI Arjun', '6', '8925271753', '9943494875', 'shakthiarjun24@gmail.com', '2008-06-01', 0, '2', '2', 'Akila', '2', 2.00, 1, 17500.00, 25000.00, 'Tiruvallur', 'Tiruvallur', '2306010007', '1', '2', 'upload_files/candidate_tracker/42191410026_PDFGallery_20230528_143329.pdf', NULL, '1', '2023-06-01', 15, '', '3', '59', '2023-06-06', 216000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team in Staff Role', '5', '2', '4', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-01 11:43:59', 60, '2023-06-05 08:07:05', 0, NULL, 1),
(13044, 'Yamini S', '4', '9025740629', '', 'yaminis1092002@gmail.com', '2002-09-10', 20, '2', '2', 'Sugumar Jayachitra', 'Working', 15000.00, 1, 0.00, 16000.00, 'Koodananal, thirukkattuppalli', 'Koodananal, thirukkattuppalli', '2306010008', '1', '1', 'upload_files/candidate_tracker/74162393591_resume.pdf', NULL, '1', '2023-06-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-06-01 12:25:22', 85, '2023-06-07 03:05:50', 0, NULL, 1),
(13045, '', '0', '9445012620', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306010009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-01 12:38:51', 0, NULL, 0, NULL, 1),
(13046, 'DIVYA V', '2', '8778151638', '', 'divyareya250100@gmail.com', '2000-02-25', 23, '3', '2', 'VENKATACHALAM', 'Business', 30000.00, 0, 0.00, 25000.00, 'Madurai', 'Chennai', '2306010010', '', '1', 'upload_files/candidate_tracker/39937654231_NEW (5).pdf', NULL, '1', '2023-06-01', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-01 12:52:21', 1, '2023-06-01 12:54:57', 0, NULL, 1),
(13047, 'N KARTHIKEYAN', '5', '6381747568', '9962114987', 'keyan0020@gmail.com', '1995-09-17', 27, '1', '2', 'N uma', 'Own house', 10000.00, 1, 0.00, 15000.00, '8/68bajanai kovil street pozhichalur Chennai 74', '8/68bajanai kovil street pozhichalur Chennai 74', '2306010011', '', '1', 'upload_files/candidate_tracker/25232380558_N. KARTHIKEYAN.doc', NULL, '1', '2023-06-01', 0, 'P1269', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Collection kyc document colection roles not open for sales call not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-01 01:16:05', 1, '2023-06-01 01:27:21', 0, NULL, 1),
(13048, 'Jaganathan P', '4', '8610388551', '8220544747', 'jaganathanking98@gmail.com', '2003-07-14', 19, '1', '2', 'Amutha P', 'Passed out in 2023', 72000.00, 1, 0.00, 19000.00, 'Chinnasalem', 'Chinnasalem', '2306010012', '', '1', 'upload_files/candidate_tracker/40502458813_CV_2023060114031443.pdf', NULL, '1', '2023-06-01', 0, 'Jobs', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'CommunicationOk can be trained but sustainability doubts as he is looking for core opportunities too Job fair follow up kindly check and let me know your inputs', '1', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-01 02:48:05', 1, '2023-06-01 02:57:50', 0, NULL, 1),
(13049, '', '0', '9880277414', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306010013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-01 04:21:04', 0, NULL, 0, NULL, 1),
(13050, 'Nithya', '4', '8056034618', '6379487248', 'nithyapapa420@gmail.com', '1997-01-06', 26, '2', '1', 'Vignesh', 'Stone design', 25000.00, 0, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2306010014', '1', '1', 'upload_files/candidate_tracker/32792485010_Print.pdf', NULL, '1', '2023-06-02', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher 5yrs gap.. not suit for our process', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-01 05:47:22', 85, '2023-06-02 04:49:47', 0, NULL, 1),
(13051, 'Pavithra', '4', '9345437803', '9551887066', 'Pavithra260602@gmail.com', '2002-06-26', 20, '2', '2', 'Devalolan', 'Supervisor', 90000.00, 2, 15000.00, 20000.00, 'Chennai pattabiram', 'Chennai pattabiram', '2306010015', '1', '2', 'upload_files/candidate_tracker/74599111146_RESUME-2.pdf', NULL, '1', '2023-06-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left Without Attending The Interview', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-01 08:10:35', 85, '2023-06-05 06:46:20', 0, NULL, 1),
(13052, 'Shyam sunder j', '5', '7010415202', '9787572163', 'mjshyam31436@gmail.com', '1997-06-19', 25, '3', '1', 'Janakiraman', 'Formar', 10000.00, 1, 270000.00, 450000.00, 'Chennai', 'Chennai', '2306020001', '', '2', 'upload_files/candidate_tracker/81823726534_SHYAM_SUNDAR_Resume.pdf', NULL, '1', '2023-06-02', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-02 09:57:49', 85, '2023-06-13 05:28:23', 0, NULL, 1),
(13053, 'Sathish Kumar', '13', '8678904897', '9094352578', 'mail2sathishsk@gmail.com', '1996-09-27', 26, '6', '2', 'Kulasekaran', 'Father', 70000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2306020002', '', '1', 'upload_files/candidate_tracker/42465410229_sathishresume.pdf', NULL, '1', '2023-06-02', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-02 10:42:46', 1, '2023-06-02 10:46:35', 0, NULL, 1),
(13054, 'rajesh', '33', '8056742229', '9884821361', 'rajeshshaji15@gmail.com', '1985-10-15', 37, '6', '1', 'sumathi', 'business', 30.00, 1, 23.00, 25.00, 'mandaveli', 'mandaveli', '2306020003', '', '2', 'upload_files/candidate_tracker/95663783128_Resume - Rajesh_new_13 yrs.doc', NULL, '1', '2023-06-02', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-02 10:47:09', 1, '2023-06-02 10:50:40', 0, NULL, 1),
(13055, 'Wasim Akram K', '4', '7358292225', '9940345574', 'wmakram2002@gmail.com', '2002-11-09', 20, '2', '2', 'Kaja moideen N', 'Oil company', 18000.00, 2, 0.00, 15000.00, '41,S.A.colony, erukkancheri, chennai-39', 'No.41,S.A.Colony, Erukkancheri, Chennai-39', '2306020004', '1', '1', 'upload_files/candidate_tracker/30905879245_Resume 2023.pdf', NULL, '1', '2023-06-02', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher...pressure handling doubts.good in convincing skill...let us try...', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-02 11:07:04', 1, '2023-06-02 12:17:23', 0, NULL, 1),
(13056, 'Thaveen.v', '4', '9176912039', '9840671143', 'thaveenv@gmail.com', '2001-04-15', 22, '1', '2', 'Vetri.m', 'Cooli', 90000.00, 2, 0.00, 25000.00, 'Purasaiwakam', 'Bricklin road', '2306020005', '', '1', '', NULL, '1', '2023-06-02', 0, 'P1269', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-02 12:15:15', 85, '2023-06-02 01:11:21', 0, NULL, 1),
(13057, 'G Yokesh', '14', '9790819263', '9003587081', 'yokeshdihino80@gmail.com', '2008-06-02', 0, '6', '2', 'Ganesan', 'Bus driver', 30000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2306020006', '', '1', 'upload_files/candidate_tracker/18789678098_Yokesh CV-3.pdf', NULL, '1', '2023-06-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-02 12:19:16', 1, '2023-06-02 12:25:23', 0, NULL, 1),
(13058, '', '0', '9353289595', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306020007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-02 01:17:01', 0, NULL, 0, NULL, 1),
(13059, 'Thaveen.v', '6', '9789918141', '9840816711', 'thaveenv@gmail.com', '2001-04-15', 22, '1', '2', 'Vetri', 'Coolie', 90000.00, 2, 0.00, 25000.00, 'Purasaiwakam', 'Bricklin road', '2306020008', '', '1', 'upload_files/candidate_tracker/13553935042_Thaveen resume(3).pdf', NULL, '1', '2023-06-02', 0, 'P1269', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-02 01:18:20', 60, '2023-06-27 10:43:54', 0, NULL, 1),
(13060, 'Manvizhi.M', '29', '8870773270', '9943944147', 'manvizhi355@gmail.com', '2000-01-21', 23, '3', '2', 'T.Mathivanan', 'Farmer', 48000.00, 0, 0.00, 15000.00, 'Thennangudi', 'Thennangudi', '2306020009', '', '1', 'upload_files/candidate_tracker/83865382087_maathi.pdf', NULL, '1', '2023-06-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-02 02:10:02', 1, '2023-06-02 02:23:40', 0, NULL, 1),
(13061, 'Praveena.R', '29', '7826946770', '9786789866', 'Ravimala1996@gmail.com', '1996-06-17', 26, '3', '2', 'RAVICHANDRAN.N', 'Family', 72000.00, 3, 0.00, 15000.00, 'Budhalur', 'Budhalur', '2306020010', '', '1', 'upload_files/candidate_tracker/63096383100_PRAVEENA R.pdf', NULL, '1', '2023-06-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-02 02:11:02', 1, '2023-06-02 02:19:06', 0, NULL, 1),
(13062, 'Dayana B', '21', '9025097955', '9385802776', 'b.dayanamail@gmail.com', '2001-04-18', 22, '3', '2', 'Balakrishnan S', 'Tea Shop', 72000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2306020011', '', '1', 'upload_files/candidate_tracker/17322538848_Dayana_Resume Final.pdf', NULL, '1', '2023-06-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-02 02:37:37', 1, '2023-06-02 02:45:36', 0, NULL, 1),
(13063, 'M.Bhuvaneswari', '4', '9042590080', '9048590080', 'm.bhuvaneswari18.cs532@gmail.com', '2001-08-23', 21, '3', '2', 'K.Muthusamy', 'Farmer', 7000.00, 2, 0.00, 10000.00, 'No, 60 AYA nader road, east gate, thanjavur', 'No,60 AYA nader road, East Gate, Thanjavur', '2306020012', '', '1', 'upload_files/candidate_tracker/59253366487_1685499797801_Bhuvaneswari Resume.docx', NULL, '1', '2023-06-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-02 02:37:56', 1, '2023-06-02 02:53:24', 0, NULL, 1),
(13064, 'J Pranav', '13', '8838523681', '8056095388', 'pranavworkss@gmail.com', '2000-11-21', 22, '6', '2', 'S.Jayakumar', 'Welder', 30000.00, 1, 0.00, 20000.00, 'No.3 Murugan Kovil 1st cross street,Ayyapanagar', 'Chennai', '2306030001', '', '1', 'upload_files/candidate_tracker/70861563240_J.Pranav Full Stack Developer.pdf (1)-1.pdf', NULL, '1', '2023-06-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-03 12:41:06', 1, '2023-06-03 12:44:14', 0, NULL, 1),
(13065, '', '0', '7338942460', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306040001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-04 11:30:05', 0, NULL, 0, NULL, 1),
(13066, 'NANDHAKUMAR', '4', '8098200415', '6374498760', 'assultnandha@gmail.com', '1994-08-15', 28, '2', '1', 'Kesavasakthi', 'Studying', 30000.00, 3, 25000.00, 35000.00, 'Gingee', 'Audica nagar kattupakam Chennai', '2306040002', '1', '2', 'upload_files/candidate_tracker/43354041580_NANDHAKUMAR RESUME LATEST_1.pdf', NULL, '1', '2023-06-05', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have exp in Store Sales will not take calls and handle our workpressure not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-04 12:39:32', 85, '2023-06-05 10:02:53', 0, NULL, 1),
(13067, '', '0', '9150320959', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306050001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-05 09:27:21', 0, NULL, 0, NULL, 1),
(13068, 'R.ARAVIND RAJ', '8', '9176766191', '', 'aravindrajr.123@gmail.com', '1999-09-07', 23, '3', '2', 'E.RAJENDRAN', 'BUSINESS', 250000.00, 2, 0.00, 400000.00, 'chennai', 'Chennai', '2306050002', '', '1', 'upload_files/candidate_tracker/22981033381_R.ARAVIND RAJ.pdf', NULL, '1', '2023-06-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He is a NISM certified being a fresher salary exp is very high holding several offers and looking for additional will not sustain', '7', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 09:52:54', 1, '2023-06-05 09:57:00', 0, NULL, 1),
(13069, 'SATHISH S', '4', '8778749730', '8940383468', 'sankarsathish036@gmail.com', '2001-04-28', 22, '2', '2', 'D.Sankar , S.Indira', 'Building contractor', 30000.00, 1, 0.00, 25000.00, 'Kanchipuram', 'Chennai', '2306050003', '27', '1', 'upload_files/candidate_tracker/15438333926_CV_2023060309333314.pdf', NULL, '1', '2023-06-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Sales Not ready to go with Target will not sustain and not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 10:23:06', 104, '2023-06-09 11:44:52', 0, NULL, 1),
(13070, 'rakesh', '4', '6382595972', '', 'rakeyrock001@gmail.com', '2000-03-08', 23, '1', '1', 'm shanmugam', 'Business', 30000.00, 1, 0.00, 250000.00, 'Kanchipuram', 'chenn', '2306050004', '', '1', 'upload_files/candidate_tracker/3825497064_Rakesh s (curriculum vitae).pdf', NULL, '1', '2023-06-05', 0, 'jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher 2nd round rejected by syed not much good candidate 5050 will not sustain', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 10:25:53', 1, '2023-06-05 10:34:17', 0, NULL, 1),
(13071, 'Naresh N', '3', '6382102978', '9600077164', 'Nareshraina04@gmail.com', '2000-06-26', 22, '3', '2', 'Parents', 'Corporation worker', 26000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2306050005', '', '1', 'upload_files/candidate_tracker/2341287135_NARESH RESUME.docx', NULL, '1', '2023-06-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left Without Attending The Interview', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 10:28:25', 1, '2023-06-05 10:33:47', 0, NULL, 1),
(13072, 'Padmanaban S', '25', '9841967646', '7358400118', 'padmanaban.amjc@gmail.com', '2003-01-20', 20, '2', '2', 'Prema Saravanan', 'Tailor', 50000.00, 1, 0.00, 350000.00, 'No.31A,5th Street Ranganathapuram, West Tambaram', 'Chennai', '2306050006', '27', '1', 'upload_files/candidate_tracker/58363892215_kt.pdf', NULL, '1', '2023-06-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice process no communication not suitable', '8', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 10:31:46', 104, '2023-06-09 11:40:11', 0, NULL, 1),
(13073, 'Petharaj V', '6', '6369568162', '9380925160', 'pethrajvlp2002@gmail.com', '2002-09-06', 20, '2', '2', 'Velraj R', 'Chef', 25000.00, 0, 18000.00, 21000.00, '2/255, Kamarajar st,M.A.Nagar, Redhills,Chennai 52', '2/255,Kamarajar st,M.A.Nagar,Redhills,chennai 52', '2306050007', '27', '2', 'upload_files/candidate_tracker/82306932005__Resume UI_UX .pdf', NULL, '1', '2023-06-05', 0, '', '3', '59', '2023-06-13', 202104.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in Consultant Role \n	Communication Ok Have Parttime Exp He Is Into Marshial Atrs Timing Much Focused 5050 Kindly Check And Let Me Know You Inputs', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 10:45:55', 60, '2023-06-13 10:00:39', 0, NULL, 1),
(13074, 'E.SARAVANAN', '4', '9942628703', '9597340779', 'saro12031999om@gmail.com', '1999-03-12', 24, '3', '2', 'R. ELANGO', 'Retired conductor', 15000.00, 3, 20000.00, 23000.00, 'THANJAVUR', 'THANJAVUR', '2306050008', '', '2', 'upload_files/candidate_tracker/62267274051_Resume_Saravanan resume_Format4 (1).pdf', NULL, '1', '2023-06-05', 30, '', '3', '59', '2023-07-07', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Sithy Team in Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 11:00:14', 60, '2023-06-27 02:52:07', 0, NULL, 1),
(13075, 'Balasubramanian M', '23', '7200492017', '', 'balasubramanian2017@gmail.com', '1998-01-20', 25, '3', '2', 'Murugan M', 'Site Engineer', 20000.00, 1, 0.00, 18000.00, 'Tirunelveli', 'Chennai', '2306050009', '', '1', 'upload_files/candidate_tracker/22442535928_bala_resume.pdf', NULL, '1', '2023-06-05', 0, '', '3', '59', '2023-06-08', 120000.00, '', '0', NULL, '1', 'Selected for Node Js Tamilmani in internship employment conditions ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 11:02:46', 1, '2023-06-05 11:21:50', 0, NULL, 1),
(13076, 'Dinesh.S', '4', '6381503626', '9382300059', 'dineshsandy9597@gmail.com', '2001-08-25', 21, '2', '2', 'Parents', 'Electricals shop', 15000.00, 0, 10000.00, 15000.00, '75/95 Thulasingam street perambur, Chennai 11', '75/95 Thulasingam street perambur, Chennai 11', '2306050010', '1', '2', 'upload_files/candidate_tracker/54678870336_dinesh.docx', NULL, '1', '2023-06-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left Without attending the interview', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-05 11:28:19', 85, '2023-06-05 01:27:09', 0, NULL, 1),
(13077, 'Ganesh', '4', '9025515220', '9789475200', 'sivakumarganesh62@gmail.com', '2008-06-05', 0, '2', '2', 'Parents', 'Driver', 10000.00, 1, 10000.00, 15000.00, 'Thiruvalluvar Nagar 4th main road', 'Thiruvalluvar nagar 4th main road', '2306050011', '1', '2', 'upload_files/candidate_tracker/67952474637_Ganesh S .pdf', NULL, '1', '2023-06-05', 0, '', '8', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending the interview', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-05 11:29:25', 85, '2023-06-05 01:26:53', 0, NULL, 1),
(13078, 'S.Mohamed Haroon', '6', '7401368910', '', 'mohamedharoon438@gmail.com', '2002-09-09', 20, '2', '2', 'S.Rabiyathul basaria', 'Non teaching staff in school', 5000.00, 0, 0.00, 18000.00, 'Kodungaiyur', 'Kodungaiyur', '2306050012', '27', '1', 'upload_files/candidate_tracker/96238659338_MOHAMED', NULL, '1', '2023-06-05', 0, '', '3', '59', '2023-06-15', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Charles Team in stff role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 11:32:57', 104, '2023-06-27 03:09:08', 0, NULL, 1),
(13079, 'Sanjay', '6', '9344088506', '9884518362', 'itsmesanjayrs@gmail.com', '2000-06-26', 22, '2', '2', 'Sukumar', 'Swiggy delivery partner', 15000.00, 1, 10000.00, 18000.00, 'Chennai', 'Chennai', '2306050013', '27', '2', 'upload_files/candidate_tracker/47857055355_CV S.SANJAY Apr-2023 ++.docx', NULL, '1', '2023-06-05', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 11:35:21', 104, '2023-06-09 11:35:22', 0, NULL, 1),
(13080, 'Ishwarya K', '4', '8248824062', '9788542225', 'ishwaryakrishna99@gmail.com', '1999-06-27', 23, '4', '2', 'T.krishnamoorthi', 'Labour', 10000.00, 1, 18000.00, 18000.00, 'Pudukkottai', 'Pudukkottai', '2306050014', '', '2', 'upload_files/candidate_tracker/9937616651_Ishwaryakrishnamoorthi.pdf', NULL, '1', '2023-06-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '60kms 1 hr travel,Previous Exp in Vodafone in native itself,For 1 day interview travel itself she got tired and she need time to give her confirmation\n\nParents are not ok with the distance', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 11:36:10', 1, '2023-06-05 11:40:36', 0, NULL, 1),
(13081, 'Akshay sudheer', '6', '9445020089', '', 'akshayvolt@gmail.com', '2000-04-09', 23, '1', '2', 'Sudheer k k', 'Itc notebook designer', 30000.00, 1, 0.00, 15000.00, 'Kannur', 'Chennai', '2306050015', '', '1', 'upload_files/candidate_tracker/57527506076_AKSHAY SUDHEER 2 copy.pdf', NULL, '1', '2023-06-05', 0, 'P1404', '3', '59', '2023-06-08', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Charles TEam in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 11:52:20', 60, '2023-06-07 06:23:53', 0, NULL, 1),
(13082, 'Santhiya G', '4', '7826913894', '', 'gsanthiya175@gmail.com', '2002-08-01', 20, '2', '2', 'Govindhan k', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Sanikiri', 'Chengalpatt', '2306050016', '1', '1', 'upload_files/candidate_tracker/70096505129_Santhiya resume new.pdf', NULL, '1', '2023-06-05', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2023-06-05 11:56:20', 1, '2023-06-05 12:08:56', 0, NULL, 1),
(13083, 'Gayathri.k', '11', '9840743833', '9003039990', 'kgayathri129@gmail.com', '2000-07-19', 22, '3', '2', 'Kannan.G', 'Pharma', 12000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2306050017', '', '1', 'upload_files/candidate_tracker/3708714001_GAYATHRI . K RESUME.pdf', NULL, '1', '2023-06-05', 0, '', '3', '59', '2023-06-08', 151584.00, '', '6', '2024-05-31', '1', 'Communication Ok can be trained in our HR profile and also can be trained in accounts need to come back with her confirmation on the DOJ', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 12:04:36', 60, '2023-06-08 02:46:34', 0, NULL, 1),
(13084, 'PRIYADHARSHINI V', '4', '8940227792', '9788029415', 'poojapri2228@gmail.com', '2002-04-28', 21, '3', '2', 'Vadivel', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Namakkal', 'Chengalpattu', '2306050018', '', '1', 'upload_files/candidate_tracker/86640281537_PRIYADHARSHINI V.pdf', NULL, '1', '2023-06-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 12:06:29', 1, '2023-06-05 12:13:23', 0, NULL, 1),
(13085, 'S.Rahul', '6', '6380867512', '', 'rahulbcom27@gmail.com', '2000-10-27', 22, '2', '2', 'M.sankar', 'Private company', 30000.00, 0, 0.00, 15000.00, 'Kundrathur chennai-69', 'Kundrathur chennai-69', '2306050019', '27', '1', 'upload_files/candidate_tracker/3293383648_my new resume.pdf', NULL, '1', '2023-06-05', 0, '', '3', '59', '2023-06-12', 195000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 12:26:02', 60, '2023-06-12 06:58:08', 0, NULL, 1),
(13086, 'Praveen.m', '13', '9003194805', '9840124954', 'praveenmurugesan13@gmail.com', '2001-04-13', 22, '1', '2', 'S.murugesan', 'Law book seller', 17000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2306050020', '', '1', 'upload_files/candidate_tracker/80644026930_CV_202306031009369.pdf', NULL, '1', '2023-06-05', 0, 'JOBS', '3', '59', '2023-06-08', 120000.00, '', '0', NULL, '1', 'Selected for PHP Role with Stipend and employment', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 12:38:46', 1, '2023-06-05 01:17:26', 0, NULL, 1),
(13087, 'Srimathi. K', '4', '9962611464', '9176716578', 'srimathi2702@gmail.com', '2002-07-02', 20, '2', '2', 'Kumar.t', 'Driver', 120000.00, 3, 0.00, 15000.00, '26/16, purusothamman street, Saligramam', '26/16, purusothamman street, saligramam', '2306050021', '27', '1', 'upload_files/candidate_tracker/54411888330_CHIYA RESUME .pdf', NULL, '1', '2023-06-05', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 12:42:26', 104, '2023-06-09 11:52:50', 0, NULL, 1),
(13088, 'S SUJITHA', '4', '9789012235', '9003171144', 'karthisuji2004@gmail.com', '2002-10-22', 20, '2', '2', 'Saravanan', 'Mechanic', 120000.00, 1, 0.00, 15000.00, 'Vellapanchavadi', 'Vellapanchavadi', '2306050022', '27', '1', 'upload_files/candidate_tracker/97128928258_CV_2023060309263723.pdf', NULL, '1', '2023-06-05', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 12:42:40', 104, '2023-06-09 11:53:08', 0, NULL, 1),
(13089, 'Z.praveen', '11', '9092395429', '9962424520', 'Saipraveenking23@gmail.com', '1997-10-23', 25, '1', '2', 'K.zaviar', 'Sand brick business', 20000.00, 0, 0.00, 25000.00, 'Chennai', 'Nemilichery , avadi', '2306050023', '', '1', 'upload_files/candidate_tracker/95179687042_Resume.pdf', NULL, '1', '2023-06-05', 0, 'P1600', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'too long Distance will not sustain and not suitable', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 12:55:11', 1, '2023-06-05 01:50:46', 0, NULL, 1),
(13090, 'Yuvaraj p', '11', '9962424520', '9444528055', 'yuvaraj07yj@gmail.com', '1997-10-07', 25, '1', '2', 'Parthiban V', 'ICF', 400000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2306050024', '', '1', 'upload_files/candidate_tracker/16866492030_YUVARAJ RESUME (1).docx', NULL, '1', '2023-06-05', 0, 'P1066', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance not suitable for our roles', '6', '2', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 12:55:33', 1, '2023-06-05 01:05:42', 0, NULL, 1),
(13091, '', '0', '8681079930', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306050025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-05 12:56:59', 0, NULL, 0, NULL, 1),
(13092, 'Akash', '2', '8300503407', '8300503409', 'akashbaskaran83@gmail.com', '1999-09-14', 23, '6', '2', 'Baskaran', 'Farmer', 20000.00, 1, 0.00, 25000.00, 'Nagapattinam', 'Chennai', '2306050026', '', '1', 'upload_files/candidate_tracker/10611001041_Akash.pdf', NULL, '1', '2023-06-05', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come with the knowledge 5050 profile if he comes back let us try ', '2', '1', '0', '1', '8', '0', '2', '2023-06-12', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 01:24:49', 1, '2023-06-05 01:29:25', 0, NULL, 1),
(13093, 'Padmapriya', '4', '9585090484', '6383118520', 'Priya140700@gmail.com', '2000-07-14', 22, '2', '2', 'Manoharan', 'Sales man', 25000.00, 1, 0.00, 15000.00, 'No. 635 sannathistreet, New mathur, thanjavur DT', 'No. 635 Sannathistreet, New Mathur, Thanjavur DT', '2306050027', '1', '1', 'upload_files/candidate_tracker/46380629836_padmapriya.doc', NULL, '1', '2023-06-03', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is ok with the profile ..already worked in assistant for registering process and getting 8k + regular 3 k incentives new to sales field but ready to learn and she performed good in interview expect 12k and she ready to join immediately....have no laptop.... kindly check and confirm once ', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '6', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-06-05 01:38:24', 85, '2023-06-06 03:48:05', 0, NULL, 1),
(13094, 'Sooraj Nivesh', '32', '9087153076', '8525971889', 'soorajnivesh@gamil.com', '2001-12-21', 21, '2', '1', 'D. Padmaraj', 'Business', 200000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2306050028', '27', '1', 'upload_files/candidate_tracker/48417157692_SOORAJ NIVESH P RESUME.pdf', NULL, '1', '2023-06-05', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not satisfied', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 02:05:55', 104, '2023-06-09 11:53:27', 0, NULL, 1),
(13095, 'Barath R', '13', '9840572917', '', 'bharath200186@gmail.com', '2001-06-15', 21, '3', '2', 'D ramesh', 'Medical field', 300000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2306050029', '', '1', 'upload_files/candidate_tracker/59644197941_R barath updated resume with linked in.docx', NULL, '1', '2023-06-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 02:14:50', 1, '2023-06-05 02:21:52', 0, NULL, 1),
(13096, 'Vigneshwaran S', '13', '9840392329', '', 'Vigneshwarans3010@gmail.com', '1998-10-30', 24, '3', '2', 'Seetharaman E', 'Own business', 50000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2306050030', '', '1', 'upload_files/candidate_tracker/50111667753_VIGNESH-MCA-2023-FULL STACK-1.pdf', NULL, '1', '2023-06-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 02:15:20', 1, '2023-06-05 02:20:03', 0, NULL, 1),
(13097, 'Ramani. V', '4', '7358595347', '', 'Ramaramani165@gmail.com', '2000-05-16', 23, '2', '2', 'Parent', 'Kabaddi Coache', 100000.00, 1, 0.00, 15000.00, '44 chellammal Garden', 'Chennai', '2306050031', '1', '1', 'upload_files/candidate_tracker/15572560179_Ramani_.Resume.pdf', NULL, '1', '2023-06-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2023-06-05 02:36:45', 1, '2023-06-05 02:55:32', 0, NULL, 1),
(13098, 'hariharan .r', '20', '9176911003', '7358493677', '2kmysterious@gmail.com', '2001-06-19', 21, '2', '2', 'ravi k', 'tailor', 50000.00, 2, 0.00, 22000.00, 'chennai', 'chennai', '2306050032', '1', '1', 'upload_files/candidate_tracker/67033238794_HARI HARAN.pdf', NULL, '1', '2023-06-06', 0, '', '3', '59', '2023-06-12', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan TEam in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-05 06:40:42', 60, '2023-06-12 10:07:59', 0, NULL, 1),
(13099, 'Tauseef', '5', '9880824393', '', 'tauseefnabeel609@gmail.com', '1994-05-06', 29, '3', '2', 'Nabi', 'Business', 100000.00, 0, 0.00, 30000.00, 'Shimoga', 'Shimoga', '2306050033', '', '1', 'upload_files/candidate_tracker/34043222596_new RESUME.pdf', NULL, '1', '2023-06-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-05 06:56:39', 1, '2023-06-05 06:59:55', 0, NULL, 1),
(13100, 'N.Ijas ahamed', '25', '9176724200', '', 'ija5865315@gmail.com', '2001-06-02', 22, '6', '2', 'Noor mohammed', 'Sales manager', 27000.00, 1, 0.00, 15000.00, 'Chennai (Anna nagar)', 'Anna nagar', '2306050034', '', '1', 'upload_files/candidate_tracker/92302405149_cv_6_1683899800694.pdf', NULL, '3', '2023-06-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '8', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-05 07:16:24', 85, '2023-06-06 10:32:23', 0, NULL, 1),
(13101, 'Jisha Sunny S', '13', '9962894747', '', 'Jishasuny24@gmail.com', '2000-04-02', 23, '2', '2', 'Sunny G', 'Business', 200000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2306060001', '27', '1', 'upload_files/candidate_tracker/8785488092_Jisha_Sunny_Resume.pdf', NULL, '1', '2023-06-06', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-06 09:39:40', 85, '2023-06-06 10:31:40', 0, NULL, 1),
(13102, 'Meenakshi S', '13', '8939197614', '', 'meenakshis542001@gmail.com', '2001-04-05', 22, '3', '2', 'Santhana kumar K', 'Fresher', 200000.00, 2, 0.00, 300000.00, 'chennai', 'chennai', '2306060002', '', '1', 'upload_files/candidate_tracker/20779046247_Meenakshi Resume.pdf', NULL, '1', '2023-06-06', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-06 09:39:48', 1, '2023-06-06 09:44:07', 0, NULL, 1),
(13103, 'MADHANAGOPAL D', '4', '9514128502', '9176946298', 'devarajmadhan85@gmail.com', '2001-09-16', 21, '1', '2', 'Devaraj R', 'Daily wages', 80000.00, 2, 15000.00, 25000.00, 'Readhills', 'Readhills', '2306060003', '', '2', 'upload_files/candidate_tracker/89696426849_madhan (1).pdf', NULL, '1', '2023-06-06', 0, 'Jobs', '1', '53', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-06 10:08:54', 1, '2023-06-06 10:26:32', 0, NULL, 1),
(13104, 'Joseph Annes Raja A', '22', '9962752088', '', 'josephraja57@gmail.com', '2000-11-13', 22, '2', '2', 'Albert Raju C', 'Pastor', 30000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2306060004', '27', '1', 'upload_files/candidate_tracker/53329761789_Joseph RESUME-compressed.pdf', NULL, '1', '2023-06-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for Digital Marketing no ideas in DM but the salary exp is min 25K and not ready to come down', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-06 10:19:45', 85, '2023-06-06 10:32:51', 0, NULL, 1),
(13105, 'TARUN A', '22', '8248936098', '', 'pjtssv2009@gmail.com', '2002-02-05', 21, '2', '2', 'Kondaiah A', 'Private Worker', 240000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2306060005', '27', '1', 'upload_files/candidate_tracker/88961847501_Tarun A_Resume.pdf', NULL, '1', '2023-06-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher have basic skills in designing but ready to go with that and looking for Digital marketing and not open for TxxampC being a fresher', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-06 10:20:32', 85, '2023-06-06 10:33:07', 0, NULL, 1),
(13106, 'Purushothaman s', '6', '9361588827', '', 'purushoth8853@gmail.com', '2003-01-03', 20, '2', '2', 'K.Sankar', 'Shopkeeper', 20000.00, 1, 0.00, 18000.00, 'Ariyalur', 'Ariyalur', '2306060006', '27', '1', 'upload_files/candidate_tracker/24419218186_Purushothamman.doc', NULL, '1', '2023-06-06', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok pls confirm the joining date and salary. thanks', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-06 10:35:22', 104, '2023-06-27 03:01:54', 0, NULL, 1),
(13107, 'Divya', '13', '9150440801', '', 'divyapalani1306@gmail.com', '2001-06-13', 21, '3', '2', 'Palani', 'Null', 8000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2306060007', '', '1', 'upload_files/candidate_tracker/63279113419_DIVYA PALANI FINAL (2).docx', NULL, '1', '2023-06-06', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Interviewed xxamp Rejected By  Kavya', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-06 10:41:47', 1, '2023-06-06 10:46:25', 0, NULL, 1),
(13108, 'BHUVANESH R', '13', '6383098834', '', 'rbhuvanesh102@gmail.com', '2001-06-08', 21, '1', '2', 'Ravichandran p', 'Teacher', 50000.00, 1, 0.00, 25000.00, 'Kattumannarkoil, Chidambaram', 'Medavakkam,Chennai', '2306060008', '', '1', 'upload_files/candidate_tracker/62145132234_BHUVANESH NEW RESU.pdf', NULL, '1', '2023-06-06', 0, 'NA', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-06 10:56:37', 1, '2023-06-06 11:03:23', 0, NULL, 1),
(13109, '', '0', '8883815580', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306060009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-06 10:56:53', 0, NULL, 0, NULL, 1),
(13110, '', '0', '9629092547', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306060010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-06 10:57:16', 0, NULL, 0, NULL, 1),
(13111, '', '0', '9677502549', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-06 10:57:20', 0, NULL, 0, NULL, 1),
(13112, 'Sheela. L', '13', '8754267993', '7550386737', 'sheelalakshmanan1410@gmail.com', '2001-10-14', 21, '3', '2', 'Lakshmananan', 'Farmer', 40000.00, 2, 0.00, 500000.00, 'Kumbakonam', 'Chennai', '2306060012', '', '1', 'upload_files/candidate_tracker/16043837517_SHEELA.pdf', NULL, '1', '2023-06-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-06 11:01:04', 1, '2023-06-06 11:11:30', 0, NULL, 1),
(13113, 'RAM KUMAR', '14', '7550110511', '', 'ramdhasramkumar@gmail.com', '2000-08-04', 22, '1', '2', 'RAMDAS', 'Fancy store', 18000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2306060013', '', '1', 'upload_files/candidate_tracker/4254897653_RESUMAE(RK).pdf', NULL, '1', '2023-06-06', 0, 'Jobs', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Interviewed xxamp Rejected By  Bharath', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-06 11:09:39', 1, '2023-06-06 11:20:47', 0, NULL, 1),
(13114, 'MOHAMMED WASIM', '14', '8122714156', '', 'ohammedvasim07@gmail.com', '2000-07-27', 22, '1', '2', 'gulam rasul khan', 'business', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2306060014', '', '1', 'upload_files/candidate_tracker/36876157781_Resume2.pdf', NULL, '1', '2023-06-06', 0, 'jobs', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Interviewed xxamp Rejected By  Bharath', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-06 11:09:55', 1, '2023-06-06 11:22:06', 0, NULL, 1),
(13115, 'VEMBU SENGAMUTHU', '13', '9342041528', '6374232936', 'muthuvembu1508@gmail.com', '2000-06-15', 22, '3', '2', 'BAKKIYARAJ', 'Farmar', 5000.00, 1, 0.00, 3.00, 'Ariyalur', 'Chennai', '2306060015', '', '1', 'upload_files/candidate_tracker/51630528941_vembuRESUME.pdf', NULL, '1', '2023-06-06', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Interviewed xxamp Rejected By Manikandan', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-06 11:11:31', 1, '2023-06-06 11:15:59', 0, NULL, 1),
(13116, 'Aathif', '5', '9500205043', '9994435942', 'Bilalaathif894@gmail.com', '1994-12-08', 28, '2', '2', 'akbar basha', 'Nil', 20000.00, 6, 5.00, 30000.00, 'Ambur', 'Periamet', '2306060016', '1', '2', 'upload_files/candidate_tracker/48564816702_AathifsResume1.docx', NULL, '2', '2023-06-06', 0, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok Not relevant Exp but in sales 5050 Profile can be trained kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-06 11:25:59', 101, '2023-06-10 11:08:17', 0, NULL, 1),
(13117, 'navin k', '31', '6380067070', '9445106060', 'k.jamesnavin9820@gmail.com', '2000-08-09', 22, '3', '2', 'anandhi b', 'chief accountant', 30000.00, 0, 0.00, 25000.00, 'chennai', 'chennai', '2306060017', '', '1', 'upload_files/candidate_tracker/81869248920_Navin Kumar .CV update.docx', NULL, '1', '2023-06-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-06 12:07:33', 1, '2023-06-06 12:11:29', 0, NULL, 1),
(13118, 'kothandam c', '31', '9080803788', '9176911003', 'kothandamvijay007@gmail.com', '2001-06-30', 21, '3', '2', 'chinnadurai c', 'tailor', 15000.00, 1, 0.00, 20000.00, 'gingee', 'medvakkam', '2306060018', '', '1', 'upload_files/candidate_tracker/17706882414_kothandam resume or (1).pdf', NULL, '1', '2023-06-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-06 12:08:03', 1, '2023-06-06 12:13:47', 0, NULL, 1),
(13119, 'VENKATESAN', '6', '9965496994', '7339126858', 'esanv34@gmail.com', '1999-10-12', 23, '1', '2', 'MATHU', 'DAILY WAGES', 240000.00, 1, 24000.00, 240000.00, 'SALEM', 'CHENNAI', '2306060019', '', '2', 'upload_files/candidate_tracker/88046504414_VENKATESAN RESUME.docx', NULL, '1', '2023-06-06', 0, '5266', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not a relevant Profile will not handle our sales roles and not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-06 12:40:56', 1, '2023-06-06 12:56:37', 0, NULL, 1),
(13120, 'Shaziya Hyder khan', '5', '9894085803', '', 'Shaziyahyderkhan@gmail.com', '1996-02-12', 27, '1', '1', 'Mir Tanveer Hyder', 'Network engineer', 20000.00, 1, 29000.00, 35000.00, 'Royapettah', 'Royapettah', '2306060020', '', '2', 'upload_files/candidate_tracker/99860210728_SHAZ CV .pdf', NULL, '1', '2023-06-06', 0, 'P-1287', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'rEJECTED', '5', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-06 02:55:15', 1, '2023-06-06 03:39:33', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13121, '', '0', '9894084803', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306060021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-06 03:26:37', 0, NULL, 0, NULL, 1),
(13122, 'Srivasan', '13', '9445344392', '', 'Srinivasanh48@gmail.com', '1997-10-15', 25, '3', '2', 'Harikrishanan', 'Driver', 22000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2306060022', '', '1', 'upload_files/candidate_tracker/37572967851_Resume32.pdf', NULL, '1', '2023-06-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basics skills not much comfort in TxxampC looking for salary growth will not sustain and not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-06 04:30:58', 85, '2023-06-06 05:00:07', 0, NULL, 1),
(13123, 'Shaheydha Banu', '4', '7094477231', '9841564239', 'shaheydhabanu@gmail.com', '2005-05-07', 18, '2', '2', 'Muktiyar Begum', 'Fresher', 74000.00, 2, 0.00, 18000.00, 'Near by chennai city centre', 'Lamy cafe', '2306060023', '1', '1', 'upload_files/candidate_tracker/48627097198_Kaagaz_20230607_111840179334.pdf', NULL, '1', '2023-06-07', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Passed 12th std and looking for job as her family need is there kindly check andlet me know your inputs', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-06 06:26:56', 85, '2023-06-07 05:20:53', 0, NULL, 1),
(13124, '', '0', '6380308078', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306070001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-07 12:03:19', 0, NULL, 0, NULL, 1),
(13125, 'Dhanes kotti.k', '2', '9710530132', '9176247813', 'dhaneskotti.k@gmail.com', '2002-12-29', 20, '6', '2', 'Kannan.k', 'Welder', 15000.00, 0, 0.00, 20000.00, '11/12 chidhambaranar st East Tambaram', '11/12 Chidhambaranar St East Tambaram', '2306070002', '', '1', 'upload_files/candidate_tracker/73347223907_DHANES KOTTI\'s Resume.pdf', NULL, '1', '2023-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Strong With The Basics Sustainability Doubts Not  Ok With The TxxampC', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-07 10:21:28', 1, '2023-06-07 10:25:37', 0, NULL, 1),
(13126, 'Aravind S', '13', '9962989886', '9789855148', 'aravindprime123@gmail.com', '2002-04-24', 21, '2', '2', 'P Saravanan', 'Swiggy Employe', 15000.00, 1, 0.00, 300000.00, 'Tambaram', 'Tambaram', '2306070003', '27', '1', 'upload_files/candidate_tracker/93504027081_Aravind_S_Resume.pdf', NULL, '1', '2023-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Strong With The Basics Sustainability Doubts Not  Ok With The TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-07 10:38:32', 1, '2023-06-07 10:44:00', 0, NULL, 1),
(13127, 'R. Marimuthu', '20', '9677418361', '9677357841', 'mrengamari@gmail.com', '1982-12-22', 40, '4', '1', 'Kannagi', 'Pvt company employee', 50000.00, 0, 37000.00, 30000.00, 'Kumbakonam', 'Maraimalai Nagar', '2306070004', '', '2', 'upload_files/candidate_tracker/62507766266_Resume Stores (PA).pdf', NULL, '1', '2023-06-07', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles ', '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-07 10:41:21', 1, '2023-06-07 10:56:25', 0, NULL, 1),
(13128, 'Sowmya', '4', '6385402796', '', 'Sowmiyavasu2001@gmail.com', '2001-05-11', 22, '1', '2', 'G. Vasudevan', 'Former', 10000.00, 2, 0.00, 15000.00, 'Ammapettai', 'Ammapettai', '2306070005', '', '1', 'upload_files/candidate_tracker/57902808341_sowmya resume.pdf', NULL, '1', '2023-06-07', 0, 'P1023', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'sustainability issue no job need', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-07 11:30:47', 1, '2023-06-07 11:39:58', 0, NULL, 1),
(13129, 'sneha a', '4', '9962341476', '', 'snehamargret2020@gmail.com', '2003-02-20', 20, '3', '2', 'appusamy', 'business', 6250.00, 1, 0.00, 15000.00, 'new college opp', 'New College Opp', '2306070006', '', '1', 'upload_files/candidate_tracker/78512882389_CV_2023042911500746.pdf', NULL, '1', '2023-06-07', 0, '', '3', '59', '2023-06-08', 151584.00, '', '5', '1970-01-01', '2', 'Selected for B2b Consultant Role', '1', '2', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-07 11:34:27', 60, '2023-06-08 11:10:36', 0, NULL, 1),
(13130, 'Muthuselvi. M', '2', '7094096045', '9344354439', 'mselvi1116@gmail.com', '1999-11-16', 23, '6', '2', 'M. Rojamalar', 'Business', 20000.00, 0, 0.00, 20000.00, 'Madurai', 'Chennai', '2306070007', '', '1', 'upload_files/candidate_tracker/36348374190_Muthuselvi M FSD.pdf', NULL, '1', '2023-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not much strong with the basics sustainability doubts not  ok with the TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-07 11:52:12', 1, '2023-06-07 11:56:46', 0, NULL, 1),
(13131, 'premkumar k', '5', '9962950220', '7904691312', 'premkumar021092@gmail.com', '1992-10-02', 30, '2', '2', 'kuppuswamy v', 'private sector', 30000.00, 1, 30000.00, 31000.00, 'perambur', 'Perambur', '2306070008', '25', '2', 'upload_files/candidate_tracker/70972247443_DOC-20230607-WA0008. (2).pdf', NULL, '1', '2023-06-07', 0, '', '3', '59', '2023-06-08', 333696.00, '', '5', '1970-01-01', '1', '5050 Profile Have Exp In Insurance For Around 2 Yrs Sustainability Doubts Have Exposure In Different Domain Kindly Check And Let Me Know Your Inputs Sir Selected for Shanmugam team based on Gaurav sir inputs', '5', '2', '4', '1', '8', '1', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-07 12:16:09', 60, '2023-06-08 10:26:19', 0, NULL, 1),
(13132, 'sathya k', '4', '6380128365', '', 'sp4587255@gmail.com', '1998-12-02', 24, '2', '2', 'kannan p', 'driver', 20000.00, 1, 0.00, 15000.00, 'chennai', 'velachery', '2306070009', '1', '1', 'upload_files/candidate_tracker/10656958936_sathya resume doc copy 2.docx', NULL, '1', '2023-06-12', 0, '', '3', '59', '2023-06-15', 151584.00, '', '3', '2023-07-12', '2', 'Selected for Banu Team in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-07 12:56:45', 60, '2023-06-15 09:40:14', 0, NULL, 1),
(13133, 'thrishna sukumar', '4', '8939356332', '7358625251', 'thrishnamike6540@gmail.com', '2001-01-25', 22, '3', '2', 'sukumar p', 'retired', 45000.00, 1, 15000.00, 20000.00, 'chennai', 'chennai', '2306070010', '', '2', 'upload_files/candidate_tracker/5966782172_Thrishna S Resume .pdf', NULL, '1', '2023-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '5050 Profile fresher asked him to come for 2nd level post lunch but didnt appear', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-07 01:01:19', 1, '2023-06-07 01:18:16', 0, NULL, 1),
(13134, 'Vignesh.k', '13', '9944521892', '6369167229', 'vigneshkjo1998@gmail.com', '1998-11-07', 24, '2', '2', 'Kumar.G', 'Driver', 15000.00, 1, 0.00, 25000.00, 'Thiruvika nagar', 'Thiruvika nagar', '2306070011', '1', '1', 'upload_files/candidate_tracker/89293411944_VIGNESHK(1).docx', NULL, '1', '2023-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for High CTC Fresher will not sustain no basics skills not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-07 01:36:54', 85, '2023-06-08 10:36:24', 0, NULL, 1),
(13135, 'Ranjithkumar', '13', '7200645329', '8072974576', 'ranjithkumarb8072@gmail.com', '2000-09-01', 22, '6', '2', 'Baskar', 'Farmer', 15000.00, 1, 0.00, 180000.00, 'Arrakonam', 'Minjur', '2306080001', '', '1', 'upload_files/candidate_tracker/28323103218_ranjith fullstack resume.pdf', NULL, '1', '2023-06-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050 Technical reject by manikandan not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-08 10:09:02', 1, '2023-06-08 10:12:56', 0, NULL, 1),
(13136, 'Manivasagam', '13', '6383493618', '', 'abineshabinesh379@gmail.com', '2001-05-24', 22, '3', '2', 'Manickam', 'Buisness', 30000.00, 2, 0.00, 180000.00, 'Trichy', 'Chennai', '2306080002', '', '1', 'upload_files/candidate_tracker/1954075773_manivasagam.pdf', NULL, '1', '2023-06-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basics Very SLow will not handle our work sustainability doubts not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-08 10:09:05', 1, '2023-06-08 10:35:41', 0, NULL, 1),
(13137, 'sangeetha k', '5', '9176294170', '8056137791', 'sangeethakarnan9@gmail.com', '2001-05-16', 22, '2', '1', 'karnan', 'daily wages', 25000.00, 1, 12000.00, 15000.00, 'vyasarpadi', 'vyasarpadi', '2306080003', '1', '2', 'upload_files/candidate_tracker/59582017841_Adobe Scan 08-Jun-2023 (1).pdf', NULL, '1', '2023-06-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Clear Communication no sustainability not suitable will not handle our presssure', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1015', '0', NULL, NULL, NULL, 1, '2023-06-08 10:10:57', 1, '2023-06-08 10:16:19', 0, NULL, 1),
(13138, 'Dafney', '22', '9677030492', '9176749754', 'dafneyveronicka@gmail.com', '2002-11-09', 20, '3', '2', 'Benjamin s', 'Welding', 120000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2306080004', '', '1', 'upload_files/candidate_tracker/64449610655_Dafney Resume .pdf', NULL, '1', '2023-06-08', 0, '', '3', '59', '2023-06-08', 151584.00, '', '5', '1970-01-01', '2', 'Selected for Operation Renewals will give an option to get trained in Digital Marketing later Good Profile Fresher Can be trained in our roles final round by gokul', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-08 11:02:33', 60, '2023-06-08 07:13:18', 0, NULL, 1),
(13139, 'Gunaseelan. T', '6', '9789941436', '9360828905', 'gunalgunal3708@gmail.com', '2000-11-05', 22, '3', '2', 'Parent', 'Coollie', 150000.00, 1, 18000.00, 21000.00, 'Minjur', 'Mylapore', '2306080005', '', '2', 'upload_files/candidate_tracker/22698907345_Gunaseelan T_ Resume (1) (1).pdf', NULL, '1', '2023-06-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for our Insurance Sales have exp in credit card sales communicative asked him to come for final round post lunch but didnt appear ', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-08 01:03:14', 1, '2023-06-08 01:20:34', 0, NULL, 1),
(13140, 'Rajeswari Sri J', '4', '8015666242', '9043570807', 'sriraji0808@gmail.com', '2003-07-08', 19, '1', '2', 'M.Jayaraj', 'Business', 40.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2306080006', '', '1', 'upload_files/candidate_tracker/31288613106_rajeswari resume .docx', NULL, '1', '2023-06-08', 0, 'Ca126', '3', '59', '2023-06-09', 165600.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team in Staff Role', '1', '1', '4', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-08 02:08:41', 60, '2023-06-09 10:06:54', 0, NULL, 1),
(13141, 'R.Deepika', '20', '9092285297', '9566136642', 'Deepikasri293025@gmail.com', '2003-09-29', 19, '1', '2', 'Rajendran.V', 'Security', 40.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2306080007', '', '1', 'upload_files/candidate_tracker/57180675565_ Kamalesh Y resume ????.pdf', NULL, '1', '2023-06-08', 0, 'Ca126', '3', '59', '2023-06-15', 151584.00, '', '3', '2023-07-03', '2', 'Selected for Banuteam in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-08 02:16:15', 60, '2023-06-15 09:46:23', 0, NULL, 1),
(13142, 'Prasanna Kumar S', '13', '9342465971', '', 'pk5816889@gmail.com', '2002-04-15', 21, '2', '2', 'Srinivasan S', 'Employee in Ashoke Leyland', 15000.00, 1, 0.00, 28000.00, 'Chennai', 'Chennai', '2306080008', '27', '1', 'upload_files/candidate_tracker/52769477923_Prasanna', NULL, '1', '2023-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Looking for IT and not open for TxxampC salary exp is min 3LPA will not sustain not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-08 04:10:35', 85, '2023-06-08 07:14:46', 0, NULL, 1),
(13143, '', '0', '9655293491', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306080009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-08 05:18:34', 0, NULL, 0, NULL, 1),
(13144, 'M I ZAIN KHAN', '5', '9025352813', '', 'zainkhanjameela@gmail.com', '2002-05-11', 21, '2', '2', 'M IMTIAZ KHAN', 'DRIVER', 30000.00, 1, 0.00, 22000.00, 'S.NO.76/1,SRS NAGAR,KOVUR, CHENNAI -600128', 'S.NO.76/1,SRS NAGAR,KOVUR, CHENNAI -600128', '2306080010', '1', '1', 'upload_files/candidate_tracker/55176572156_ResumeNew.pdf', NULL, '1', '2023-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Average Communication 5050 Profile asked the candidate to come for the interview post lunch  but didnt appear', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-06-08 07:46:51', 85, '2023-06-09 04:55:46', 0, NULL, 1),
(13145, 'Kalaiselvi', '6', '8754473134', '', 'logeswaripandiyan3@gmail.com', '2001-05-17', 22, '1', '2', 'M.pandiyan', 'Former', 60000.00, 2, 0.00, 15000.00, 'Thiruvannamalai', 'Chennai', '2306090001', '', '1', 'upload_files/candidate_tracker/35108860254_DocScanner Jun 9, 2023 9-53 AM.pdf', NULL, '1', '2023-06-09', 0, 'P1404', '3', '59', '2023-06-12', 164196.00, '', '5', '1970-01-01', '2', 'Selected for Charles Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-09 09:44:40', 60, '2023-06-12 10:37:49', 0, NULL, 1),
(13146, 'Karthik M', '6', '9514006592', '6382241006', 'Kd84477@gmail.com', '2000-09-21', 22, '2', '2', 'Bhuvaneswari', 'Ration staff', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2306090002', '1', '1', 'upload_files/candidate_tracker/76706819654_2 pages Resume.docx', NULL, '3', '2023-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Kannan Rejected ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-09 10:58:04', 60, '2023-06-09 06:55:25', 0, NULL, 1),
(13147, 'Monalisa', '13', '9384312326', '', 'mmonalisa020997@gmail.com', '1997-09-02', 25, '6', '2', 'Madhusudhan', 'Business', 25000.00, 1, 0.00, 150000.00, 'Puttur', 'Puttur ,Chennai', '2306090003', '', '1', 'upload_files/candidate_tracker/61126568018_Monalisa (1) (2) (1).pdf', NULL, '1', '2023-06-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Good In Basics Will Not Sustain And Handle Our Roles If she comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-09 11:06:27', 1, '2023-06-09 11:17:23', 0, NULL, 1),
(13148, '', '0', '9789846438', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306090004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-09 11:41:31', 0, NULL, 101, '2023-06-09 11:42:11', 0),
(13149, 'manivannan', '4', '9840966372', '7094124402', 'Mj427315@gmail.com', '1999-12-27', 23, '4', '2', 'Saravanan', 'Telecaller', 30000.00, 1, 14000.00, 20000.00, 'Athipattu', 'Korukkupet', '2306090005', '', '2', 'upload_files/candidate_tracker/98966680729_mani.docx', NULL, '1', '2023-06-09', 15, '', '4', '53', NULL, 0.00, '', '0', NULL, '1', '5050 Profile no sustainability in the previous exp B2B relevancy no kindly check and let me know your inputs', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-09 11:49:33', 1, '2023-06-09 12:10:38', 0, NULL, 1),
(13150, 'Mohana sundaram p', '5', '9791780164', '', 'peacockfeather8618@gmail.com', '1999-01-07', 24, '2', '2', 'Partha sarathy', 'Back office', 50000.00, 0, 300000.00, 400000.00, 'Chengalpattu', 'Chengalpattu', '2306090006', '1', '2', 'upload_files/candidate_tracker/54897152173_Resume_09_06_2023_10_41_33_am.pdf', NULL, '1', '2023-06-09', 45, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-09 12:22:25', 101, '2023-06-09 01:34:05', 0, NULL, 1),
(13151, 'Praveen Balasubramani', '13', '9342165604', '', 'praveenshiva916@gmail.com', '2000-09-27', 22, '3', '2', 'Balasubramani', 'Shop keeper', 16000.00, 1, 0.00, 2.00, 'Madurai', 'Chennai', '2306090007', '', '1', 'upload_files/candidate_tracker/15199747006_Resume.pdf', NULL, '1', '2023-06-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Holding 2 offers with 8K and 10K and looking for more will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-09 12:37:51', 1, '2023-06-09 12:41:21', 0, NULL, 1),
(13152, 'VINOTHKUMAR E', '31', '7305228015', '', 'vinothkumar8220324258@gmail.com', '2002-05-27', 21, '6', '2', 'ELUMALAI K', 'Farmar', 20000.00, 1, 0.00, 15000.00, 'Tiruvannamalai', 'Chennai', '2306090008', '', '1', 'upload_files/candidate_tracker/46623342827_VINOTHKUMAR E.pdf', NULL, '1', '2023-06-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not much good in basics will not sustain and handle our roles not open for TxxampC not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-09 12:56:41', 1, '2023-06-09 01:01:58', 0, NULL, 1),
(13153, 'Chandralega', '6', '8807632322', '7845913068', 'chandralega701@gmail.com', '1994-05-07', 29, '2', '1', 'Sivakumar', 'Salaried', 35000.00, 1, 13000.00, 18000.00, '7/128,pudhuchatram,namakkal', '3/36, ramapuram,chennai', '2306090009', '1', '2', 'upload_files/candidate_tracker/40098854643_Resume.docx.pdf', NULL, '1', '2023-06-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-09 03:03:13', 104, '2023-06-27 03:01:35', 0, NULL, 1),
(13154, 'ramana', '13', '6381462780', '', 'ramanabecse@gmail.com', '2000-07-27', 22, '2', '2', 'ramachandiran', 'daily worker', 10000.00, 3, 0.00, 15000.00, 'Kumananchavadi', 'Kumananchavadi', '2306090010', '27', '1', 'upload_files/candidate_tracker/30687533347_Ramana (1).docx', NULL, '1', '2023-06-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basics skills in PHP seems to be slow will not handle our work pressure not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-09 03:12:08', 1, '2023-06-09 03:29:17', 0, NULL, 1),
(13155, '', '0', '6382604556', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306090011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-09 05:31:09', 0, NULL, 0, NULL, 1),
(13156, 'avinash', '5', '8680847088', '', 'avinashkarthick98@gmail.com', '1998-03-07', 25, '3', '2', 'ananthan', 'carp', 45000.00, 3, 30400.00, 40000.00, 'kuthalam', 'chennai', '2306090012', '', '2', 'upload_files/candidate_tracker/49807284392_AVINASH FINAL RESUME new.pdf', NULL, '1', '2023-06-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-09 06:31:22', 1, '2023-06-09 06:34:54', 0, NULL, 1),
(13157, 'Rudhrapathi.K', '4', '9344459836', '', 'rudhrapathi8@gmail.com', '2003-03-21', 20, '2', '2', 'Kodhandapani.T', 'Driver', 15000.00, 1, 0.00, 16000.00, 'Mrc Complex Anna Colony Thanjavur', 'Mrc Complex Anna colony Thanjavur', '2306090013', '1', '1', 'upload_files/candidate_tracker/15789905541_RUDHRAPATHI.pdf', NULL, '1', '2023-06-10', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-06-09 07:08:25', 85, '2023-06-10 11:04:41', 0, NULL, 1),
(13158, 'Sermadurai P', '2', '9042877292', '', 'sidharthserma@gmail.com', '1997-04-08', 26, '6', '2', 'Paranjothi A', 'Truck Driver', 20000.00, 4, 0.00, 18000.00, 'Tuticorin', 'Chennai', '2306100001', '', '1', 'upload_files/candidate_tracker/94440371581_My Resume.pdf', NULL, '1', '2023-06-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher to our role...has knowledge in prog.lau..Second round interviewed by kavya..Final round interviewedxxampSelected by gokul', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-10 09:49:52', 104, '2023-06-27 03:04:59', 0, NULL, 1),
(13159, 'Thilagavathy', '5', '9538125642', '8884767288', 'thilagaani08@gmail.com', '2008-06-10', 0, '2', '1', 'Rajini', 'sales Exectutive', 25000.00, 2, 15000.00, 18000.00, 'Bangalore', 'Bangalore', '2306100002', '1', '2', 'upload_files/candidate_tracker/87977084750_Thilagavathi Resume.docx', NULL, '1', '2023-06-10', 0, '', '1', '42', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-10 10:06:22', 104, '2023-06-14 10:11:27', 0, NULL, 1),
(13160, 'S Siva vinayak', '4', '8072194077', '', 'sivavinayak96@gmail.com', '1996-10-27', 26, '2', '2', 'Selvam', 'Brokerage', 15000.00, 1, 21000.00, 250000.00, 'Tenkasi', 'Chetpat', '2306100003', '1', '2', 'upload_files/candidate_tracker/1392837800_sivavinayak resume.docx', NULL, '1', '2023-06-10', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'good communication skill... has exp in collection .. holding many offer expt high from that. will not sustain in our roles', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-10 10:54:01', 85, '2023-06-10 11:03:53', 0, NULL, 1),
(13161, 'MOOVAZHAGAN G', '4', '9952614827', '', 'moovazhagang@gmail.com', '2003-06-14', 19, '1', '2', 'GANESAN M', 'Wages', 9000.00, 2, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2306100004', '', '1', 'upload_files/candidate_tracker/95915095120_White Classic Clean Resume (3).pdf', NULL, '1', '2023-06-10', 0, 'P1023', '1', '97', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-10 11:15:16', 1, '2023-06-10 11:21:49', 0, NULL, 1),
(13162, '', '0', '9042234255', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-10 11:19:01', 0, NULL, 0, NULL, 1),
(13163, 'mohammed azmal', '5', '6382226480', '', 'aazmal55@gmail.com', '2001-08-15', 21, '2', '2', 'abdullah', 'business', 30000.00, 2, 23000.00, 23000.00, 'ambattur', 'ambattur', '2306100006', '1', '2', 'upload_files/candidate_tracker/41051719395_CV_2023060718044253.pdf', NULL, '1', '2023-06-10', 0, '', '3', '59', '2023-06-15', 285696.00, '', '5', '1970-01-01', '1', 'Selected for Sarath Team Commitment by Gaurav June July overall 1.5 L then Aug 22K Net Take Home', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-10 11:28:49', 104, '2023-06-27 03:11:42', 0, NULL, 1),
(13164, 'Sivasankari', '13', '7598686542', '', 'sivasankari0279@gmail.com', '1996-05-29', 27, '3', '1', 'Rajasekaran', 'Php developer', 15000.00, 2, 15000.00, 25000.00, 'Thiruninravur', 'Thiruninravur', '2306100007', '', '2', 'upload_files/candidate_tracker/24762586138_Sivasankari\'s Resume (11).pdf', NULL, '1', '2023-06-10', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-10 11:31:56', 1, '2023-06-10 11:46:38', 0, NULL, 1),
(13165, 'Vijay', '5', '9840441286', '9789024818', 'Vijayd2d2@gmail.com', '1997-12-14', 25, '2', '2', 'Parent', 'House wife', 500000.00, 1, 17500.00, 23000.00, 'CHENNAI AMBATTUR', 'CHENNAI AMBATTUR', '2306100008', '1', '2', 'upload_files/candidate_tracker/22641099539_updated resume - Vijay-converted Final (2).pdf', NULL, '1', '2023-06-10', 15, '', '3', '59', '2023-07-03', 309696.00, '', '5', '1970-01-01', '1', 'Selected for Sarath Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-10 11:49:21', 60, '2023-06-30 06:12:06', 0, NULL, 1),
(13166, 'M.siva', '22', '7358060310', '9361976595', 'Thaladonsivasiva6622@gmail.com', '2000-06-02', 23, '3', '2', 'Muniyan', 'Formar', 10000.00, 1, 0.00, 15.00, 'Kothandavadi', 'Viyasarpadi', '2306100009', '', '1', 'upload_files/candidate_tracker/47517576963_pdf_converter_202306095242.pdf', NULL, '1', '2023-06-10', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-10 03:47:41', 1, '2023-06-10 04:03:32', 0, NULL, 1),
(13167, 'Vivek Kumar', '25', '9789051472', '9003075386', 'mailme.vivekkumar04@gmail.com', '1997-04-17', 26, '3', '2', 'Sureshkumar', 'Johnson lift pvt ltd', 50000.00, 1, 0.00, 21000.00, 'Chennai', 'Chennai', '2306110001', '', '1', 'upload_files/candidate_tracker/60624640142_Vivek Resume.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communicaiton not clear will not handle our work roles not suitable', '8', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-11 08:52:42', 1, '2023-06-11 08:57:50', 0, NULL, 1),
(13168, 'hari prasanth a', '6', '9840793052', '', 'harriprasanth08@gmail.com', '2002-08-08', 20, '2', '2', 'g antony', 'railways', 25000.00, 1, 0.00, 20000.00, 'icf south colony annanagar chennai', 'icf south colony annanagar chennai', '2306120001', '1', '1', 'upload_files/candidate_tracker/58361128939_hari resume1.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ready to join for the voice process', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-12 07:39:04', 85, '2023-06-12 07:38:53', 0, NULL, 1),
(13169, 'Shamitha.S', '4', '9344944732', '9486533023', 'shamithasomu2825@gmail.com', '2002-08-25', 20, '3', '2', 'Somu.R', 'Former', 80000.00, 1, 0.00, 15000.00, 'Thiruvarur', 'Chennai', '2306120002', '', '1', 'upload_files/candidate_tracker/67077712868_PDF Gallery_20230610_102426.pdf', NULL, '1', '2023-06-12', 0, '', '3', '59', '2023-06-15', 151584.00, '', '', '1970-01-01', '2', 'Selected for Banu Team in Consultnt ROle', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-12 10:00:17', 85, '2023-06-12 07:39:05', 0, NULL, 1),
(13170, 'Nitish Kumar', '32', '8610673212', '', 'nitish1978053@gmail.com', '2001-05-08', 22, '3', '2', 'Arumugam', 'Tailor', 15000.00, 1, 0.00, 400000.00, 'Adyar,Chennai', 'Adyar, Chennai', '2306120003', '', '1', 'upload_files/candidate_tracker/17061779051_NitishKumar_A_Resume_04-04-2023-12-45-01 (1) (1).pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the 2nd level interview salary eXp is high\n', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:14:06', 1, '2023-06-12 10:18:35', 0, NULL, 1),
(13171, 'M.SARAVANAN', '14', '9841252344', '9791094548', 'saravanans98427@gmail.com', '2002-04-09', 21, '1', '2', 'J.MURUGAN', 'Father', 20000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2306120004', '', '1', 'upload_files/candidate_tracker/74938036055_Resume 99 - Copy.docx', NULL, '1', '2023-06-12', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher no basics and not open for TxxampC not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:14:41', 1, '2023-06-12 10:19:37', 0, NULL, 1),
(13172, 'Naveen Ganesh', '13', '6379337601', '', 'Naveenganesh241@gmail.com', '2001-11-24', 21, '6', '2', 'Muthupandi', 'Electrician', 30000.00, 0, 0.00, 300000.00, 'No 1 , Sadaiyandi Nagar, Bodinayakanur, Theni', 'No 8 durairaj street, devaraj nagar, saligramam', '2306120005', '', '1', 'upload_files/candidate_tracker/52385157033_NAVEEN GANESH S M - Resume.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Ok With The TxxampC Fresher If he come back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:15:46', 1, '2023-06-12 10:22:24', 0, NULL, 1),
(13173, 'Jayaprakash', '23', '6374124071', '', 'Prakashjaya449@gmail.com', '1997-02-06', 26, '6', '1', 'Wife', 'House wife', 15000.00, 1, 0.00, 15000.00, 'Karaikalam settiyur po salem', 'Karaikapam sollinganallur', '2306120006', '', '1', 'upload_files/candidate_tracker/51795928340_Jaya Resume - 2023 (2).pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Aptitude Cleared Profile But Not Ok With The TxxampC if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:35:31', 1, '2023-06-12 10:40:34', 0, NULL, 1),
(13174, 'Naveen raj R', '13', '7904807326', '8072906412', 'naveenrajvimal@gmail.com', '2002-02-06', 21, '6', '2', 'C N Raja', 'Service manager', 25000.00, 1, 0.00, 25000.00, 'No:33, Sowcar st, Walaja Pet, Ranipet Dist-632513', 'No:37 Balu Mudaliar Street, Kelambakkam, Chennai.', '2306120007', '', '1', 'upload_files/candidate_tracker/22705533323_Rezume.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics And Not Open For TxxampC Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:40:35', 1, '2023-06-12 10:48:51', 0, NULL, 1),
(13175, '', '0', '9500151058', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306120008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-12 10:40:51', 0, NULL, 0, NULL, 1),
(13176, 'Gowtham R', '13', '8248895326', '9962899412', 'gowthamr1117@gmail.com', '2001-08-17', 21, '6', '2', 'Ramesh S', 'Welder', 22000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2306120009', '', '1', 'upload_files/candidate_tracker/74114526973_new resumer.pdf', NULL, '1', '2023-06-12', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Freshr need to come back with his confirmation for the TxxampC', '2', '1', '0', '1', '8', '0', '2', '2023-06-15', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:40:58', 1, '2023-06-12 10:56:39', 0, NULL, 1),
(13177, 'Madanraj P', '31', '8072441294', '', 'madanraj0519@gmail.com', '2001-05-19', 22, '6', '2', 'Pichumani T', 'Glossary shop', 25000.00, 1, 0.00, 25000.00, '205 4th Floor E block kakkan Colony Besant Nagar', '43/3 Brother\'s Avenue vannandurai Adyar Chennai', '2306120010', '', '1', 'upload_files/candidate_tracker/81299515216_Rezume (2).pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Aptitude Cleared Profile but no ok with the TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:41:21', 1, '2023-06-12 10:50:11', 0, NULL, 1),
(13178, 'Saranraj V', '2', '9789685039', '9445106299', 'saran1212raj@gmail.com', '1999-12-12', 23, '6', '2', 'Vinayagam', 'Farmer', 15000.00, 1, 0.00, 25000.00, 'Tiruttani', 'Tiruttani', '2306120011', '', '1', 'upload_files/candidate_tracker/63821925607_saranresume.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics And Not Open For TxxampC Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:43:42', 1, '2023-06-12 10:48:17', 0, NULL, 1),
(13179, 'Devi', '5', '6383606018', '8939520866', 'devinandhakumar09@gmail.com', '2002-09-26', 20, '2', '2', 'Nandhakumar', 'Paninter', 100000.00, 1, 0.00, 17000.00, 'Ambattur', 'Ambattur', '2306120012', '27', '1', 'upload_files/candidate_tracker/30744416841_Resume_27_02_2023_08_50_17_am.pdf', NULL, '1', '2023-06-12', 0, '', '3', '59', '2023-06-15', 151584.00, '', '', '1970-01-01', '1', 'Selected for Banu Team in Consultant Role Fresher', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-12 10:44:49', 104, '2023-06-27 03:10:48', 0, NULL, 1),
(13180, 'Gokul', '13', '9363593130', '', 'gokulrajendran037@gmail.com', '2000-09-13', 22, '6', '2', 'Rajendran', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Pattukkottai', 'Chennai', '2306120013', '', '1', 'upload_files/candidate_tracker/17259726510_Gokul Resume.pdf', NULL, '1', '2023-06-12', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'rejected in the aptitude round', '2', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:50:12', 1, '2023-06-12 11:03:41', 0, NULL, 1),
(13181, 'Lara S', '13', '9884951058', '9094350258', 'larasam508@gmail.com', '2002-07-16', 20, '6', '2', 'Samuel P', 'Bus driver', 25000.00, 1, 0.00, 20000.00, '3/354,kamarajar street,perumbakkam', 'Chennai', '2306120014', '', '1', 'upload_files/candidate_tracker/82927524314_CV_2023051823311599.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', ' Not Ok With The TxxampC too long distance\n', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:52:27', 1, '2023-06-12 10:57:43', 0, NULL, 1),
(13182, 'Mohamed Shamsudeen N', '13', '9080008302', '9445129267', 'mohamedshamsu2000@gmail.com', '2000-09-01', 22, '3', '2', 'Mohamed Noorullah k', 'Tailor', 10000.00, 1, 0.00, 20000.00, 'Redhills chennai', 'Redhills chennai', '2306120015', '', '1', 'upload_files/candidate_tracker/53812952972_CV_2023052723112929.pdf', NULL, '1', '2023-06-12', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Rejected In The Aptitude Round', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:56:05', 1, '2023-06-12 11:02:54', 0, NULL, 1),
(13183, 'Akash', '13', '7358388633', '9551866424', 'akashaakash1999@gmail.com', '1999-11-01', 23, '6', '2', 'Ambika', 'Tailer', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2306120016', '', '1', 'upload_files/candidate_tracker/61862558630_9 JUN 2023 Akash.r resume .pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Ok With The TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:56:20', 1, '2023-06-12 11:02:59', 0, NULL, 1),
(13184, 'Greese Gilbert Vijay J', '13', '9566574232', '7904238254', 'greesevijaygilbert18@gmail.com', '1998-08-18', 24, '3', '2', 'Jesu Raj', 'Entrepreneur', 15000.00, 2, 0.00, 15000.00, 'TRICHY', 'Chennai', '2306120017', '', '1', 'upload_files/candidate_tracker/83766125483_GGVijay.pdf', NULL, '1', '2023-06-12', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Rejected In The Aptitude Round', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:57:45', 1, '2023-06-12 11:03:10', 0, NULL, 1),
(13185, 'G.sherly Benita', '13', '7708829360', '6374811859', 'sherlygnanam231@gmail.com', '2002-07-16', 20, '3', '2', 'Parent', 'Driver', 190000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Anna nagar', '2306120018', '', '1', 'upload_files/candidate_tracker/65404820791_Sherly Benita-C.V-2.pdf', NULL, '1', '2023-06-12', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 10:58:11', 1, '2023-06-12 11:07:06', 0, NULL, 1),
(13186, 'Mohamed aadhil', '31', '9786911132', '', 'mohamedaadhil23@gmail.com', '1999-06-13', 23, '2', '2', 'Samsul hutha', 'Teacher', 50000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Perambur', '2306120019', '27', '1', 'upload_files/candidate_tracker/96122993222_resume-2023.pdf', NULL, '1', '2023-06-12', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher 2nd Round interviewed by manikandan can be trained in our profile need to confirm his presence for the final round', '2', '1', '', '1', '8', '', '2', '2023-06-14', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-12 10:58:20', 101, '2023-06-27 03:19:16', 0, NULL, 1),
(13187, 'Ganapathy Sundaram G', '31', '6380206301', '9486634972', 'ganapathysundaramg2000@gmail.com', '2000-12-31', 22, '6', '2', 'Gomathi nayagam G', 'Retired teachee', 50000.00, 1, 0.00, 20000.00, '51th nalmeippar nagar thachanallur tirunelveli', 'T nagar', '2306120020', '', '1', 'upload_files/candidate_tracker/87890025612_ganapathy sundaram.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'First Round with Sathish but left without attending the 2nd roudn', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 11:04:29', 1, '2023-06-12 11:14:35', 0, NULL, 1),
(13188, 'Selva Ganesh', '31', '9080786617', '9600964798', 'selvaganesh0809@gmail.com', '1999-09-08', 23, '6', '2', 'Vijaya Kumar', 'Jail warden (retired)', 20000.00, 1, 0.00, 250000.00, 'Tirunelveli', 'Chennai', '2306120021', '', '1', 'upload_files/candidate_tracker/46604563837_selva Ganesh-1.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Have Basics but Not Open For TxxampC Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 11:05:14', 1, '2023-06-12 11:21:34', 0, NULL, 1),
(13189, 'Manoj Kumar T', '31', '6383784113', '', 'manojk030401@gmail.com', '2001-04-03', 22, '6', '2', 'Tharmar T', 'farmer', 20000.00, 3, 0.00, 250000.00, 'tirunelveli', 'Chennai', '2306120022', '', '1', 'upload_files/candidate_tracker/89136380293_Manoj Fresher Resume.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Aptitude Cleared Profile But No Ok With The TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 11:06:09', 1, '2023-06-12 11:48:11', 0, NULL, 1),
(13190, 'umamaheshwari', '4', '6380835300', '', 'umamagi1122@gmail.com', '2001-08-12', 21, '2', '2', 'ghandhi', 'cool man', 75000.00, 3, 0.00, 150000.00, 'chennai', 'chennai', '2306120023', '27', '1', 'upload_files/candidate_tracker/35509252681_DOC20220816WA0022..pdf', NULL, '1', '2023-06-12', 0, '', '3', '59', '2023-06-15', 164196.00, '', '', '1970-01-01', '2', 'Selected for Banu Team 3months Exp', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-12 11:06:24', 104, '2023-06-27 03:09:37', 0, NULL, 1),
(13191, 'BARATH RAJ D', '13', '6369011212', '9843179598', 'd.barath7639@gmail.com', '2002-07-14', 20, '6', '2', 'DURAI RAJ G', 'Farmer', 20000.00, 1, 0.00, 250000.00, 'Villupuram', 'Chennai', '2306120024', '', '1', 'upload_files/candidate_tracker/64853267852_BARATH.pdf', NULL, '1', '2023-06-12', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 11:06:36', 1, '2023-06-12 11:11:52', 0, NULL, 1),
(13192, 'Nandhakumar', '13', '9962631587', '', 'nandhakumar25012001@gmail.com', '2001-01-25', 22, '3', '2', 'Velmurgan', 'Gooli', 15000.00, 3, 0.00, 20000.00, '41 m.g.r nagar 7th Street kodungaiyur Chennai 118', '41 M.G.R Nagar 7th Street Kodungaiyur Chennai 118', '2306120025', '', '1', 'upload_files/candidate_tracker/33855621711_nk.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics And Not Open For TxxampC Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 11:18:06', 1, '2023-06-12 11:22:09', 0, NULL, 1),
(13193, 'Mohammed Ali Hasan S', '13', '8608292067', '9361585561', 'smohammedalihasan@gmail.com', '2000-09-03', 22, '6', '2', 'Sadhak Ali Hasan', 'Daily Wages', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2306120026', '', '1', 'upload_files/candidate_tracker/78579898542_Resume.docx', NULL, '1', '2023-06-12', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Rejected In The Aptitude Round', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 11:20:13', 1, '2023-06-12 11:23:14', 0, NULL, 1),
(13194, 'T.Arun', '13', '9047462949', '9994949367', 'applearun5047@gmail.com', '2001-03-01', 22, '3', '2', 'T.Lakshmi', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2306120027', '27', '1', 'upload_files/candidate_tracker/92494776191_CV_2023061211264839.pdf', NULL, '1', '2023-06-12', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2023-06-12 11:28:37', 1, '2023-06-12 11:32:59', 0, NULL, 1),
(13195, 'esakkiram', '13', '8754277960', '6380206301', 'brightonram360@gmail.com', '2000-07-06', 22, '6', '2', 'jeganathan', 'iob appraiser', 30000.00, 2, 0.00, 200000.00, 'tirunelveli', 'chennai', '2306120028', '', '1', 'upload_files/candidate_tracker/90285213444_EsakkiRamJ.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Ok With The TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 11:41:53', 1, '2023-06-12 11:46:24', 0, NULL, 1),
(13196, '', '0', '8637442798', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306120029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-12 11:45:13', 0, NULL, 0, NULL, 1),
(13197, 'NAFIZA BEGUM.S', '13', '9791056904', '7448833757', 'nafizabegum01@gmail.com', '2001-01-01', 22, '6', '2', 'M.MOHAMED SALEEM', 'Fresher', 10000.00, 1, 0.00, 37500.00, 'Perambur', 'Perambur', '2306120030', '', '1', 'upload_files/candidate_tracker/51400259647_NAFIZA RESUME-2.pdf', NULL, '1', '2023-06-12', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Rejected  by bharath', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 11:52:02', 1, '2023-06-12 12:00:49', 0, NULL, 1),
(13198, 'Charan T', '13', '9677190104', '', 'charan242003@gmail.com', '2003-04-02', 20, '3', '2', 'Thirunavukarasu', 'Electricals', 7000.00, 1, 0.00, 12000.00, 'Teynampet', 'Teynampet', '2306120031', '', '1', 'upload_files/candidate_tracker/8645350775_CHARAN edit12345.pdf', NULL, '1', '2023-06-12', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'rejected by vishwa', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 12:15:55', 1, '2023-06-12 12:19:21', 0, NULL, 1),
(13199, 'Mohana prasad P', '13', '6381311545', '8489709272', 'mohaniitjee@gmail.com', '2002-01-04', 21, '6', '2', 'Purushothama Kumar B', 'Fresher', 25000.00, 1, 0.00, 6.00, 'Theni', 'Chennai', '2306120032', '', '1', 'upload_files/candidate_tracker/5025529922_MohanaPrasad_Resume.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Aptitude Cleared Profile But No Ok With The TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 12:22:54', 1, '2023-06-12 12:25:32', 0, NULL, 1),
(13200, 'Abdul khiyum', '4', '6383334276', '', 'abdulkhiyum31@gmail.com', '1994-01-03', 29, '1', '2', 'No', 'Father', 15000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2306120033', '', '1', 'upload_files/candidate_tracker/21942672445_PVS Certificate 22-12-2022 04:14 pm.pdf', NULL, '1', '2023-06-12', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left Without Attending', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 12:36:56', 1, '2023-06-12 12:53:21', 0, NULL, 1),
(13201, '', '0', '7904238254', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306120034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-12 12:46:32', 0, NULL, 0, NULL, 1),
(13202, 'Mathavan T', '13', '6382536171', '', 'mathavantamilselvan83@gmail.com', '2001-02-09', 22, '6', '2', 'A.G.Tamilselvan', 'Ex army\'s', 30000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2306120035', '', '1', 'upload_files/candidate_tracker/11545604935_Mathavan N3 resume.pdf', NULL, '1', '2023-06-12', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Rejected In The Aptitude Round', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 12:59:40', 1, '2023-06-12 01:02:38', 0, NULL, 1),
(13203, 'Mahendhiran', '13', '9080683255', '8754514515', 'mahendran.sjc@gmail.com', '1987-05-17', 36, '3', '1', 'Angamuthu', 'Agriculture', 60000.00, 1, 4.00, 4.00, 'Chennai', 'Chennai', '2306120036', '', '2', 'upload_files/candidate_tracker/79552564000_1686555729433_AA_Update CV.docx', NULL, '1', '2023-06-12', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Rejected In The Aptitude Round', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 01:02:38', 1, '2023-06-12 01:13:33', 0, NULL, 1),
(13204, '', '0', '9345920893', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306120037', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-12 01:23:14', 0, NULL, 0, NULL, 1),
(13205, 'sabari kishore rk', '23', '9361255538', '', 'sabaei26kishore26@gmail.com', '2002-06-02', 21, '6', '2', 'kumaresan', 'ex serviceman', 30000.00, 1, 0.00, 300000.00, 'karaikudi', 'chennai', '2306120038', '', '1', 'upload_files/candidate_tracker/29380858140_sabari kishore 921319104161_11zon.pdf', NULL, '1', '2023-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Aptitude Cleared Profile But No Ok With The TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 02:31:48', 1, '2023-06-12 03:34:50', 0, NULL, 1),
(13206, 'Jaisundhar', '6', '9380816009', '9789148365', 'srjsjaisundhar18@gmail.com', '2001-12-18', 21, '3', '2', 'Radhika s', 'Teacher', 28000.00, 1, 14000.00, 14000.00, 'Mint police quarters', 'Mannady Broadway', '2306120039', '', '2', 'upload_files/candidate_tracker/96500869341_RESUME-JAISUNDHAR.pdf', NULL, '1', '2023-06-12', 0, '', '3', '59', '2023-06-13', 195000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Teammin Staff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-12 03:16:19', 60, '2023-06-13 10:23:39', 0, NULL, 1),
(13207, 'Tamilarasi', '31', '9345251366', '', 'Tamiltj88@gmail.com', '1995-12-19', 27, '3', '2', 'Jayakodi', 'Homemaker', 5000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2306120040', '', '1', 'upload_files/candidate_tracker/48255276469_Tamil3CV_2023-02-19-084629.pdf', NULL, '1', '2023-06-12', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', '2nd round interviewed by kavya candidate need to come back after learning will check ', '2', '1', '0', '1', '8', '0', '2', '2023-06-28', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 04:34:15', 1, '2023-06-12 04:39:06', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13208, 'Karpagam', '4', '6382509347', '', 'Karpagamramesh22@gmail.com', '2001-11-05', 21, '1', '2', 'Ramesh', 'Business', 100000.00, 1, 0.00, 110000.00, 'Madurai', 'Madurai', '2306120041', '', '1', 'upload_files/candidate_tracker/66817308860_KARPAGAM R.pdf', NULL, '1', '2023-06-29', 0, '2023', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-12 06:50:14', 1, '2023-06-12 07:05:43', 0, NULL, 1),
(13209, 'Vasanth D', '5', '8610499498', '7094001166', 'vasanthedvin333@gmail.com', '1999-06-24', 23, '2', '2', 'Dhanaraji K', 'Government employee', 25000.00, 1, 0.00, 30000.00, 'SALEM', 'Bangalore', '2306120042', '1', '1', 'upload_files/candidate_tracker/199077090_Vasanth Resume.pdf', NULL, '1', '2023-06-13', 0, '', '1', '42', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-12 09:09:26', 101, '2023-06-13 10:58:25', 0, NULL, 1),
(13210, 'Sridhar s', '5', '9790504066', '8667723926', 'Sridharj8034@gmail.com', '1998-11-28', 24, '2', '2', 'Sakthivel', 'Wet grinder labour', 60000.00, 2, 0.00, 360000.00, 'Salem', 'Bangalore', '2306130001', '1', '1', 'upload_files/candidate_tracker/76326615053_SRIDHAR^ RESUME.pdf', NULL, '1', '2023-06-13', 0, '', '1', '42', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-13 09:12:20', 104, '2023-06-13 11:26:47', 0, NULL, 1),
(13211, 'Logeshwari', '13', '8015517365', '9677017365', 'Logi.bcs@gmail.com', '2001-09-08', 21, '6', '2', 'Sathya. V', 'No. 8, Sivaraj Street, Thiruneermalai.', 700000.00, 3, 0.00, 400000.00, 'Chennai', 'Chennai', '2306130002', '', '1', 'upload_files/candidate_tracker/90801641932_ Logeshwari.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics In Javascript Not Much Comfort With The TxxampC Willnot Sustain Long Distancce', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 10:27:23', 1, '2023-06-13 10:36:10', 0, NULL, 1),
(13212, 'Divya.R', '33', '9840728810', '', 'Divyaravi042@gmail.com', '2002-12-12', 20, '3', '2', 'Ravi. V', 'Car driver', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2306130003', '', '1', 'upload_files/candidate_tracker/10542820369_DIVYA RAVI C.V.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Account profile Fresher no basics in Tally not open for telecalling too', '4', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 10:32:08', 1, '2023-06-13 10:48:02', 0, NULL, 1),
(13213, 'Vignesh G', '13', '8667520104', '', 'vigneshtpr99@gmail.com', '1999-10-19', 23, '6', '2', 'Ganesan S', 'Nil', 40000.00, 1, 0.00, 20000.00, 'Thiruporur', 'Thiruporur', '2306130004', '', '1', 'upload_files/candidate_tracker/92604822305_Vignesh_Resume (1).c2e72fda3a2f8b1f5b7c.pdf', NULL, '1', '2023-06-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come back with his confirmation on the TxxampC', '2', '1', '0', '1', '8', '0', '2', '2023-06-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 10:37:28', 1, '2023-06-13 10:42:44', 0, NULL, 1),
(13214, 'Naresh A', '22', '8056193922', '', 'nareshnk2407@gmail.com', '1999-07-24', 23, '6', '2', 'Anand K', 'Business', 20000.00, 1, 407400.00, 600000.00, 'Chennai', 'Chennai', '2306130005', '', '2', 'upload_files/candidate_tracker/12293177532_Naresh.Resume.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Sustainability in previous Exp looking only for salary growth no strong knowledge not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 10:47:24', 1, '2023-06-13 10:52:10', 0, NULL, 1),
(13215, 'Rakhi Gupta.M', '33', '6381174572', '7338846069', 'rakhigupta2062@gmail.com', '2003-08-12', 19, '3', '2', 'Mukesh Gupta', 'Cooking', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2306130006', '', '1', 'upload_files/candidate_tracker/71532237452_DIVYA RAVI C.V.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Accounts but no basics in Accounts not open for Calling Profile', '4', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 10:50:54', 1, '2023-06-13 11:04:43', 0, NULL, 1),
(13216, 'Antony Karan Raj M', '13', '7871686643', '', 'antonykaranraj@gmail.com', '2000-02-01', 23, '6', '2', 'Michael Raj', 'Automobile salesman', 60000.00, 3, 0.00, 2.50, 'Nagercoil, kanniyakumari', 'Mugalivakkam, Chennai', '2306130007', '', '1', 'upload_files/candidate_tracker/11533878429_Update Resume-1.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics In Javascript Not Much Comfort With The TxxampC Willnot Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 11:06:11', 1, '2023-06-13 11:14:42', 0, NULL, 1),
(13217, 'Aravindh R', '13', '8077743189', '', 'aravindhr.in@gmail.com', '1999-02-15', 24, '6', '2', 'Ragothaman k', 'Farmer', 15000.00, 2, 0.00, 250000.00, 'Kovil st, eraiyur po, kallakurichi dt -607201', 'Velachery', '2306130008', '', '1', 'upload_files/candidate_tracker/30942526105_Aravindh resume .pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basics In Javascript Not Much Comfort With The TxxampC Will not Sustain  Looking much for Java', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 11:24:00', 1, '2023-06-13 11:31:17', 0, NULL, 1),
(13218, 'Vasanthakumar', '13', '9150806597', '', 'vasanthakumar8098124@gmail.com', '2002-10-09', 20, '6', '2', 'T. Rajaraman', 'Farmer', 15000.00, 1, 0.00, 200000.00, 'Thiruvanamalai', 'Velachery, Chennai', '2306130009', '', '1', 'upload_files/candidate_tracker/97987437203_Vasanthakumar.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basics In Javascript Not Much Comfort With The TxxampC Willnot Sustain looking muchfir a  java', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 11:26:29', 1, '2023-06-13 11:45:53', 0, NULL, 1),
(13219, 'Sadham hussain f', '5', '8870400109', '8220476416', 'Sadhamsuhel6819@gmail.com', '1999-02-02', 24, '2', '2', 'Mumtaj', 'Fish business', 15000.00, 1, 20000.00, 22000.00, '5/1445, , Arambakkam, gummidipoondi Thiruvallur', 'C.10.thalankuppam , beach road, ennore, chennai-57', '2306130010', '25', '2', 'upload_files/candidate_tracker/4354315396_sadham hussain F.pdf', NULL, '1', '2023-06-13', 7, '', '3', '59', '2023-06-19', 291696.00, '', '5', '1970-01-01', '1', 'Selected for Shanmugam team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-13 11:54:01', 60, '2023-06-19 11:19:07', 0, NULL, 1),
(13220, 'Dass Fernick S', '2', '9677729829', '7012519531', 'fernickdass@gmail.com', '2001-03-31', 22, '6', '2', 'Savaridass.A', 'Driver', 25000.00, 2, 0.00, 18000.00, 'Kodaikanal', 'Chennai', '2306130011', '', '1', 'upload_files/candidate_tracker/36326726497_Fernick.S -Resume-1.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher mentioned Basics In Javascript but not answering  Not Much Comfort With The TxxampC Willnot Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 11:57:06', 1, '2023-06-13 12:05:11', 0, NULL, 1),
(13221, 'Nithruja', '2', '9585276672', '8807093046', 'nithuthanjai1605@gmail.com', '2001-02-16', 22, '3', '2', 'Rajalakshmi', 'Labour', 15000.00, 0, 0.00, 17000.00, 'Tirupur', 'Tirupur', '2306130012', '', '1', 'upload_files/candidate_tracker/95469843740_NITHRUJA (1)-5.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left Without Attending The Interview', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 11:57:44', 1, '2023-06-13 12:03:15', 0, NULL, 1),
(13222, 'Vidhya R', '2', '9865449103', '9940927093', 'vidhyaabi2183@gmail.com', '2001-01-07', 22, '3', '2', 'Ramesh.s', 'Business', 15000.00, 1, 0.00, 18000.00, 'Tirupur', 'Tirupur', '2306130013', '', '1', 'upload_files/candidate_tracker/43299369253_vidhya resume 3.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no Basics in Javascript not much comfort with the TxxampC Willnot sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 11:58:40', 1, '2023-06-13 12:03:20', 0, NULL, 1),
(13223, 'Vijay S V', '13', '7845833103', '9840450382', 'vijayrocz31@gmail.com', '1997-12-10', 25, '3', '2', 'Viswanathan', 'Fitter', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2306130014', '', '1', 'upload_files/candidate_tracker/94003296843_VIJAY S V.docx', NULL, '1', '2023-06-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to come back after learning', '2', '1', '0', '1', '8', '0', '2', '2023-06-19', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 12:22:13', 1, '2023-06-13 12:57:42', 0, NULL, 1),
(13224, 'ananthakrishnan s', '13', '7904968727', '9840687691', 'ananthasrinis@gmail.com', '1999-09-02', 23, '6', '2', 'selvi s', 'phone operater', 45000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2306130015', '', '1', 'upload_files/candidate_tracker/7930940699_AnanthaKrishnan.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left Without Attending The Interview', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 12:31:20', 1, '2023-06-13 12:46:00', 0, NULL, 1),
(13225, 'BABU', '20', '6379557284', '', 'Babubuddy94@gmail.com', '1994-08-07', 28, '3', '1', 'Samathanam', 'Retired', 25000.00, 1, 30000.00, 35000.00, 'Vyasarpadi', 'Vyasarpadi', '2306130016', '', '2', 'upload_files/candidate_tracker/46184125832_Hathway resume-1.docx', NULL, '1', '2023-06-13', 2, '', '3', '59', '2023-06-20', 459600.00, '', '5', '1970-01-01', '1', 'Selected for Manikandan Team in Staff Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-13 12:44:32', 60, '2023-06-20 10:18:18', 0, NULL, 1),
(13226, 'Mahalakshmi K', '5', '6381049426', '8072995168', 'mahajothi94201@gmail.com', '2000-07-21', 22, '1', '2', 'Kondraiyandi', 'Hotel supplier', 180000.00, 1, 15000.00, 18000.00, 'Srivilliputtur', 'West mambalam', '2306130017', '', '2', 'upload_files/candidate_tracker/64137676043_Mahalakshmi resume update .pdf', NULL, '1', '2023-06-13', 0, 'P1291', '3', '59', '2023-06-15', 225000.00, '', '5', '1970-01-01', '2', 'Communicaiton Ok Have Exp In Sales Seems To Be A Good Profile Kindly Check And Let Me Knwo Your Inputs\nSelected for Manikandan Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-13 12:52:41', 60, '2023-06-15 10:12:59', 0, NULL, 1),
(13227, '', '0', '8220315844', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306130018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-13 01:13:08', 0, NULL, 0, NULL, 1),
(13228, '', '0', '7550224173', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306130019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-13 01:14:31', 0, NULL, 0, NULL, 1),
(13229, '', '0', '8680990661', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306130020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-13 01:23:47', 0, NULL, 0, NULL, 1),
(13230, 'C M KESAVA KUMAR', '11', '7093190347', '9441887204', 'ramkesava448@gmail.com', '2000-04-04', 23, '6', '2', 'C N Mani', 'Mason', 60000.00, 1, 0.00, 20000.00, 'Puttur', 'Chennai', '2306130021', '', '1', 'upload_files/candidate_tracker/66458324737_Kesava 777.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the interview', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 02:04:11', 1, '2023-06-13 02:08:31', 0, NULL, 1),
(13231, 'Dilli babu', '11', '9390187477', '', 'arjunaringolam@gmail.com', '2008-06-13', 0, '3', '2', 'Krishna Reddy', 'Former', 50000.00, 2, 0.00, 25000.00, 'Puttur', 'Chennai', '2306130022', '', '1', 'upload_files/candidate_tracker/91770584042_Dilli-Fresher.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable no basics will not sustain', '6', '2', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 02:08:42', 1, '2023-06-13 02:14:28', 0, NULL, 1),
(13232, 'T.Muniraj', '13', '9014489329', '6305686065', 'tmuniraju2610@gmail.com', '1999-10-26', 23, '3', '2', 'T.kumari', 'Housewife', 50000.00, 1, 0.00, 25000.00, 'Puttur', 'Chennai', '2306130023', '', '1', 'upload_files/candidate_tracker/10332377769_GMURESUME.pdf', NULL, '1', '2023-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left Without Attending The Interview', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 02:16:51', 1, '2023-06-13 02:25:41', 0, NULL, 1),
(13233, '', '0', '8328072121', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306130024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-13 02:27:06', 0, NULL, 0, NULL, 1),
(13234, 'R siva prakash', '13', '8667645699', '', 'Sivaprakash270798@gmail.com', '1998-07-27', 24, '6', '2', 'Raveendran', 'Load mam', 180000.00, 1, 15000.00, 18000.00, 'No. 2 Reddy Street, Nerkundram, Chennai', 'No. 2 Reddy Street, Nerkundram, Chennai', '2306130025', '', '2', 'upload_files/candidate_tracker/92176269944_R SIVAPRAKASH MCA CV.docx', NULL, '1', '2023-06-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Technical round reject by Gkul', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-13 02:27:54', 104, '2023-06-27 03:10:04', 0, NULL, 1),
(13235, 'A.vanitha', '13', '8610531877', '8344236877', 'vanithaarul408@gmail.com', '2001-06-11', 22, '3', '2', 'Arulraj', 'Nil', 70000.00, 1, 0.00, 400000.00, 'Nagapattinam', 'Chrompet Chennai', '2306130026', '', '1', 'upload_files/candidate_tracker/66684684708_VANITHA CV.pdf', NULL, '1', '2023-06-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to come back after learning\n', '2', '1', '0', '1', '8', '0', '2', '2023-06-19', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-13 02:30:11', 1, '2023-06-13 02:33:44', 0, NULL, 1),
(13236, 'A. Priyadharsini', '4', '9943253105', '9751493947', 'priyaarjunankandiyar@gmail.com', '1997-11-24', 25, '3', '2', 'K. Arjunan', 'Farmer', 3000.00, 1, 0.00, 13000.00, 'karuppa Muthaliyar kottai , thanjavur', 'Thanjavur', '2306130027', '', '1', 'upload_files/candidate_tracker/15632458901_priyadharsini banking resume.pdf', NULL, '1', '2023-06-14', 0, '', '3', '59', '2023-06-19', 164208.00, '', '6', '2023-08-07', '1', 'Seleted for Thanjavur consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-13 02:58:01', 60, '2023-06-17 07:07:49', 0, NULL, 1),
(13237, 'Chetan Patil', '5', '8073032214', '9535740477', 'chetanpatil8073@gmail.com', '1999-08-08', 23, '2', '2', 'Hanamagouda K Patil', 'Agri Dept', 50000.00, 2, 0.00, 2.70, 'Vijayapura', 'Bangalore', '2306130028', '1', '1', 'upload_files/candidate_tracker/13019235615_Chetanpatil resume.pdf', NULL, '1', '2023-06-14', 0, '', '1', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-13 05:08:24', 104, '2023-07-04 10:16:27', 0, NULL, 1),
(13238, 'KALYANA RAMAN L', '4', '9840811025', '9345755772', 'kalyanaraman3134@gmail.com', '1990-11-24', 32, '1', '2', 'LAKSHMI NARASIMHAN A', 'TAX CONSULTANT', 60000.00, 2, 25000.00, 27000.00, 'Chennai', 'Chennai', '2306130029', '', '2', 'upload_files/candidate_tracker/47824833522_pdfresizer.com-pdf-resize.pdf', NULL, '1', '2023-06-13', 30, 'P1146', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Frequent Job Changes will not sustain and not suitable ', '1', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-13 05:23:40', 104, '2023-06-13 05:57:53', 0, NULL, 1),
(13239, 'K.Rahul', '4', '9080598594', '9840857657', 'raj899575@gmail.com', '2000-01-20', 23, '2', '2', 'J.Krishna kumar', 'Business', 400000.00, 1, 0.00, 15000.00, 'No 1A Selvam nagar kolathur Chennai-99', 'No 1A Selvam Nagar, Kolathur chennai-600099', '2306130030', '1', '1', 'upload_files/candidate_tracker/31257890659_DOC-20220815-WA0016.-1.docx', NULL, '1', '2023-06-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communicaiton no understanding not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-13 06:59:49', 85, '2023-06-14 05:04:12', 0, NULL, 1),
(13240, 'Vijay Krishnan', '4', '8838959621', '9789953674', 'vijaykrishnan883895@gmail.com', '1999-01-03', 24, '2', '2', 'gajendran', 'driver', 16000.00, 1, 26000.00, 40000.00, 'chennai', 'chennai', '2306130031', '1', '2', 'upload_files/candidate_tracker/9708855087_Vijay resume2. Pdf.pdf', NULL, '1', '2023-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Very high CTC exp not a relevant profile will not handle our sales', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1015', '0', NULL, NULL, NULL, 1, '2023-06-13 10:24:33', 1, '2023-06-13 10:28:09', 0, NULL, 1),
(13241, 'Madhumitha M', '13', '8610290211', '6379093708', 'mmadhumitha832001@gmail.com', '2001-03-08', 22, '6', '2', 'Magalingam.A', 'Carpenter', 150000.00, 2, 0.00, 5000.00, 'Cuddalore', 'Chennai', '2306140001', '', '1', 'upload_files/candidate_tracker/66619600633_madhumitha m (1).pdf', NULL, '1', '2023-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not open for TxxampC no basic ideas in JS will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 09:11:27', 1, '2023-06-14 09:19:07', 0, NULL, 1),
(13242, '', '0', '9840857657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306140002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-14 09:17:56', 0, NULL, 0, NULL, 1),
(13243, 'N.Srinivasan', '13', '9940428928', '9840055806', 'geethanaras2018@gmail.com', '1999-11-03', 23, '6', '2', 'Narasimhan', 'Marketing manager', 5.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2306140003', '', '1', 'upload_files/candidate_tracker/78048248352_Srinivasan.Resume.pdf', NULL, '3', '2023-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Open For TxxampC No Basic Ideas In JS Will Not Sustain And Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 10:01:45', 1, '2023-06-14 10:19:38', 0, NULL, 1),
(13244, '', '0', '8778658450', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306140004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-14 10:02:21', 0, NULL, 0, NULL, 1),
(13245, 'shubhamkumar', '5', '6202351842', '', 'subhamkumar1942@gmail.com', '2003-08-06', 19, '2', '2', 'anil kumar', 'bussiness', 200000.00, 0, 20000.00, 3500000.00, 'Bangalore', 'electronic citY', '2306140005', '1', '2', 'upload_files/candidate_tracker/49226818298_ResumeShubham1.pdf', NULL, '1', '2023-06-14', 30, '', '1', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-06-14 10:08:32', 1, '2023-06-14 06:41:47', 0, NULL, 1),
(13246, 'K. Muthu lakshmi', '33', '9677165027', '9962468802', 'muthulakshmibliss@gmail.com', '1997-12-27', 25, '3', '2', 'P. Kumaresan', 'Business', 30000.00, 2, 15000.00, 20000.00, 'Pozhichalur', 'Pozhichalur', '2306140006', '', '2', 'upload_files/candidate_tracker/96654451613_Muthulakshmi Resume-1 (2) (1).pdf', NULL, '1', '2023-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our roles long distance', '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 11:06:05', 1, '2023-06-14 11:35:03', 0, NULL, 1),
(13247, '', '0', '8925174369', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-14 11:11:40', 0, NULL, 0, NULL, 1),
(13248, 'Kumaravadivel K', '33', '9940208037', '9962468802', 'kumaravadivel1303@gmail.com', '1999-03-13', 24, '3', '2', 'P. Kumaresan', 'Business', 30000.00, 2, 0.00, 14000.00, 'Plotno.8,7thcross street, Agatheeswarar Nagar,', 'Plotno.8,7thcross Street, Agatheeswarar Nagar,', '2306140008', '', '1', 'upload_files/candidate_tracker/79876065241_Kumaravadivel resume.pdf', NULL, '1', '2023-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable will not handle our roles', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 11:19:16', 1, '2023-06-14 11:28:41', 0, NULL, 1),
(13249, 'Satheeshkumar', '2', '9578432770', '', 'satheesh1290@gmail.com', '1990-06-10', 33, '6', '1', 'J. Shanmugapriya', 'Farmer', 5000.00, 2, 0.00, 15000.00, 'Dharmapuri', 'Chennai', '2306140009', '', '1', 'upload_files/candidate_tracker/13239804634_Satheesh Resume 2023.pdf', NULL, '1', '2023-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Aged Have huge Exp in Core and will not sustain in our roles not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 11:26:26', 1, '2023-06-14 11:30:13', 0, NULL, 1),
(13250, 'Vijay Kanth N', '8', '8548836162', '', 'vijaykanthntr567@gmail.com', '1998-05-05', 25, '3', '2', 'Nanjundappa C v', 'Farmer', 11000.00, 3, 0.00, 25.00, 'Chikballapur', 'Chikballapur', '2306140010', '', '1', 'upload_files/candidate_tracker/92720317500_Resume_Vijay kanth N_Format1 (1) (1).docx', NULL, '1', '2023-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 11:34:26', 1, '2023-06-14 11:36:43', 0, NULL, 1),
(13251, 'Kumaravadivel K', '33', '9962468802', '9940208037', 'kumaravadivel1303@gmail.com', '1999-03-13', 24, '3', '2', 'P. Kumaresan', 'Business', 30000.00, 2, 17000.00, 14000.00, 'Plotno.8,7thcross street, Agatheeswarar Nagar,', 'Plotno.8,7thcross Street, Agatheeswarar Nagar,', '2306140011', '', '2', 'upload_files/candidate_tracker/42446842212_Kumaravadivel resume.pdf', NULL, '1', '2023-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication to long distance will not sustain in our roles not suitable', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 11:47:39', 1, '2023-06-14 11:51:35', 0, NULL, 1),
(13252, 'Iniyavan', '4', '8667529373', '9841528195', 'Iniyavanuso@gmail.com', '1996-01-27', 27, '1', '1', 'Nagaraja', 'Nill', 25000.00, 1, 19500.00, 25000.00, 'chennai', 'chennai', '2306140012', '', '2', 'upload_files/candidate_tracker/9178019430_11zon_JPEG-to-PDF.pdf', NULL, '1', '2023-06-14', 0, 'P1146', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our sales calling ', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 11:50:55', 1, '2023-06-14 12:27:47', 0, NULL, 1),
(13253, 'Vignesh', '23', '9342396856', '', 'vigneshgurusamy262714@gmail.com', '1998-10-26', 24, '4', '1', 'Gurusamy', '10', 30000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2306140013', '', '1', 'upload_files/candidate_tracker/71605517886_Vignesh_MCA_2020_ANGULAR-1.pdf', NULL, '1', '2023-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Open For TxxampC No Basic Ideas In JS Will Not Sustain And Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 11:52:25', 1, '2023-06-14 12:04:56', 0, NULL, 1),
(13254, 'Alex Joseph', '13', '8608671543', '', 'alexjosephbtech@gmail.com', '2000-04-28', 23, '6', '2', 'John Terry', 'Electrical technician', 25000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2306140014', '', '1', 'upload_files/candidate_tracker/36955675765_Alexjoseph.resume.pdf', NULL, '1', '2023-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Open For TxxampC No Basic Ideas In JS Will Not Sustain And Not Suitable', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 12:23:53', 1, '2023-06-14 12:32:10', 0, NULL, 1),
(13255, 'RAJESH R', '13', '8678921001', '9487887226', 'rajesh1173414@gmail.com', '2001-05-20', 22, '6', '2', 'RAJKUMAR S', 'Driver', 25000.00, 1, 0.00, 300000.00, 'Theni', 'Chennai', '2306140015', '', '1', 'upload_files/candidate_tracker/31564019016_RAJESH RESUME JUNE 14.pdf', NULL, '1', '2023-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Not Open For TxxampC No Basic Ideas In JS Will Not Sustain And Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 12:24:29', 1, '2023-06-14 12:28:27', 0, NULL, 1),
(13256, 'Vikram A', '6', '7604955429', '9092650173', 'vikramwhite13@gmail.com', '2002-12-26', 20, '1', '2', 'Arun Nithi', 'Daily Wages', 5000.00, 2, 0.00, 15000.00, 'Chennai', 'Triplicane', '2306140016', '', '1', 'upload_files/candidate_tracker/58577158265_VIKRAM resume.docx', NULL, '1', '2023-06-14', 0, 'P1146', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable not open for sales calling', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 01:03:40', 1, '2023-06-14 01:07:02', 0, NULL, 1),
(13257, 'Palanimalai V', '5', '9659077440', '8825523887', 'vtvkavi3693@gmail.com', '1994-06-03', 29, '2', '2', 'Vembaiyan', 'Farmer', 300000.00, 0, 21500.00, 24000.00, 'No2/41 vellathevan viduthy Thanjavur 614614', 'No24/B6 postal colony 1st Street West Mamabalam 33', '2306140017', '25', '2', 'upload_files/candidate_tracker/39460733730_DOC-20230607-WA0003..pdf', NULL, '1', '2023-06-14', 2, '', '3', '59', '2023-06-19', 300000.00, '', '5', '1970-01-01', '1', 'Selected for Staff Role Manikandan Team', '5', '1', '4', '1', '8', '2', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-14 01:26:56', 104, '2023-06-30 03:43:48', 0, NULL, 1),
(13258, 'Lakshmanan Nagaraj', '5', '7871043003', '8072093096', 'lakzaninfo@gmail.com', '1994-04-09', 29, '2', '1', 'Divya.L', 'House wife', 70000.00, 2, 24000.00, 28000.00, 'Villupuram', 'Chennai', '2306140018', '25', '2', 'upload_files/candidate_tracker/64786038677_DOC-20230614-WA0005..pdf', NULL, '1', '2023-06-14', 2, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not satisfied', '5', '2', '', '1', '3', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-14 01:29:12', 60, '2023-06-14 08:11:07', 0, NULL, 1),
(13259, 'Jamuna rani', '4', '8056054336', '', 'Jamunarani20cm021@gmail.com', '2002-10-14', 20, '1', '2', 'C.Murugan', 'Fruit shop', 20000.00, 2, 0.00, 15000.00, 'Chennai Adyar', 'Chennai Adyar', '2306140019', '', '1', 'upload_files/candidate_tracker/47128969361__Resume UI_UX .pdf', NULL, '1', '2023-06-14', 0, 'Rajeswari sri (CA 126)', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 03:44:10', 1, '2023-06-14 04:08:37', 0, NULL, 1),
(13260, 'a. Tina Neslien', '5', '7806848219', '6383563162', 'tinudoll13@gmail.com', '1996-11-13', 26, '2', '2', 'Mother:Lilly Therasa', 'House wife', 35000.00, 2, 25000.00, 33000.00, 'No 19/37 trustpuram 9th cr st Kodambakkam ch-24', 'No 19/37 trustpuram 9th Cr st Kodambakkam ch-24', '2306140020', '1', '2', 'upload_files/candidate_tracker/6315135703_tinaresume1.pdf', NULL, '1', '2023-06-14', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Frequent Job Changes not suitable will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-14 04:06:48', 85, '2023-06-14 05:05:50', 0, NULL, 1),
(13261, 'Arivu Selvan', '4', '8111093883', '', 'arivu300901@gmail.com', '2001-09-30', 21, '3', '2', 'K.Mathi Kumar', 'Farmer', 70000.00, 2, 8000.00, 14000.00, 'Kovilvenni', 'Kovilvenni', '2306140021', '', '2', 'upload_files/candidate_tracker/67821431091_Arivuselvan Resume.pdf', NULL, '1', '2023-06-15', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-14 06:46:52', 1, '2023-06-14 06:51:28', 0, NULL, 1),
(13262, 'Shivakumar S', '5', '7483721471', '', 'shivus1022@gmail.com', '2001-12-20', 21, '2', '2', 'Somanna', 'Agriculture', 25000.00, 1, 18000.00, 20000.00, '7th Cross Sakambari Nagar JP Nagar 1st Phase', '7th Cross Sakambari Nagar JP Nagar 1st Phase', '2306140022', '1', '2', 'upload_files/candidate_tracker/63028031646_Shivu cv.pdf', NULL, '1', '2023-06-16', 30, '', '1', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '6', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-14 07:46:32', 104, '2023-06-16 05:11:28', 0, NULL, 1),
(13263, '', '0', '9092777302', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306140023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-14 10:37:42', 0, NULL, 0, NULL, 1),
(13264, 'girisankar', '13', '9345351731', '', 'girisankarramraj@gmail.com', '2001-11-22', 21, '6', '2', 'ramraj', 'late', 20000.00, 1, 0.00, 250000.00, 'trichy', 'chennai', '2306150001', '', '1', 'upload_files/candidate_tracker/94681195376_girisankar-cv.pdf', NULL, '1', '2023-06-15', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Rejected In Aptitude Test', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-15 09:24:20', 1, '2023-06-15 09:29:02', 0, NULL, 1),
(13265, 'Chandu S', '13', '8686586997', '7799672505', 'chandusukumar17@gmail.com', '2001-06-17', 21, '6', '2', 'R Sukumar', 'Manager', 400000.00, 1, 0.00, 25000.00, 'Tirupati', 'Tirupati', '2306150002', '', '1', 'upload_files/candidate_tracker/37368251031_C (4).pdf', NULL, '1', '2023-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-15 09:24:28', 1, '2023-06-15 09:29:28', 0, NULL, 1),
(13266, 'Akash V', '13', '9360351608', '8610962361', 'akashmoorthy2002@gmail.com', '2002-06-03', 21, '6', '2', 'Vinayaka Moorthy', 'Sales man', 18000.00, 0, 0.00, 25000.00, 'Trichy', 'Trichy', '2306150003', '', '1', 'upload_files/candidate_tracker/94102239655_Akash.V (C.V).pdf', NULL, '1', '2023-06-15', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come back with his confirmation on TxxampC fresher need to trained a lot', '2', '1', '0', '1', '8', '0', '2', '2023-06-20', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-15 09:24:40', 1, '2023-06-15 09:29:28', 0, NULL, 1),
(13267, 'NOORMOHAMED A', '13', '9445711831', '6374358011', 'noormohamedazar20@gmail.com', '2001-01-20', 22, '6', '2', 'ABDULHAMEED H M', 'Daily Wages', 120000.00, 2, 0.00, 16000.00, 'C-2 new police quarters, chidambaram', 'C-2 New Police Quarters, Chidambaram', '2306150004', '', '1', 'upload_files/candidate_tracker/57219545233_noorresume-3.pdf', NULL, '1', '2023-06-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-15 10:05:24', 1, '2023-06-15 10:12:07', 0, NULL, 1),
(13268, 'Rohan', '6', '6369924401', '9360781849', 'Www.urapakkam@gmail.com', '2001-11-09', 21, '2', '2', 'Kumudha naglingam', 'Tailoring', 30000.00, 1, 0.00, 20000.00, 'Urapakkam', 'Urapakkam', '2306150005', '1', '1', 'upload_files/candidate_tracker/11505406493_Rohan_resum_2_1685779307527_Rohan.pdf', NULL, '1', '2023-06-15', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candiate is ok, Kindly confirm the joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-06-15 10:52:10', 104, '2023-06-27 03:08:44', 0, NULL, 1),
(13269, 'harikrishnan s', '13', '6382380381', '', 'harikriss16@gmail.Com', '2001-07-16', 21, '3', '2', 'sakthivel r', 'farmer', 25000.00, 1, 0.00, 250000.00, 'tirupur', 'banglore', '2306150006', '', '1', 'upload_files/candidate_tracker/19010721411_Harikrishnan S 2.pdf', NULL, '1', '2023-06-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'TEchnical Round Reject', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-15 10:53:20', 1, '2023-06-15 10:58:57', 0, NULL, 1),
(13270, 'SREEVIKNESH BASKER', '4', '9962075508', '8124514581', 'Vickyvp921@gmail.com', '2000-05-28', 23, '3', '2', 'Basker. A', 'Welder', 40000.00, 1, 15000.00, 16000.00, 'Annanur', 'Annanur', '2306150007', '', '2', 'upload_files/candidate_tracker/7975447131_VIGNESH RESUME(2 (1).docx (1)_compressed (1).pdf', NULL, '1', '2023-06-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable Profile will not handle our sales calls not suitable', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-15 11:01:32', 1, '2023-06-15 11:10:58', 0, NULL, 1),
(13271, 'Thariq Akram', '22', '9791017130', '', 'thariqakram3@gmail.com', '1996-10-03', 26, '6', '2', 'Jegaper Sadik', 'Entrepreneur', 250000.00, 2, 35000.00, 40000.00, 'Chennai', 'chennai', '2306150008', '', '2', 'upload_files/candidate_tracker/51303364564_Thariq Resume (1) (1) (1) (2) (1).pdf', NULL, '1', '2023-06-15', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Digital Marketing but sustainability doubts a lot 5050 Profile need to analyse ', '2', '1', '0', '1', '8', '0', '2', '2023-06-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-15 11:05:37', 1, '2023-06-15 11:08:45', 0, NULL, 1),
(13272, 'crystal glory', '13', '6382388014', '', 'crystalrichard0602@gmail.com', '2002-01-06', 21, '6', '2', 'richard anbudurai', 'freelance artist', 100000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2306150009', '', '1', 'upload_files/candidate_tracker/72541594645_CRYSTAL GLORY CV.pdf', NULL, '1', '2023-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-15 11:11:36', 1, '2023-06-15 11:15:12', 0, NULL, 1),
(13273, 'agan kumar m', '22', '7200205497', '', 'aganak596@gmail.com', '2001-02-08', 22, '1', '2', 'mari muthu', 'business', 50000.00, 1, 0.00, 20000.00, 'nerkundram', 'nerkundram', '2306150010', '', '1', 'upload_files/candidate_tracker/41437968576_AGAN_KUMAR M_Resume_20-05-2023-23-20-56.pdf', NULL, '1', '2023-06-15', 0, 'jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Digital Marketing no basics ideas need to learn a lot will not run in a long ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-15 11:17:54', 1, '2023-06-15 11:26:49', 0, NULL, 1),
(13274, 'Mohammad Shaffan A', '22', '9489184426', '9445152245', 'mohammedshaffan26@gmail.com', '2000-09-25', 22, '2', '2', 'ALTAF R', 'SALESMAN', 25000.00, 1, 0.00, 20000.00, 'Pallavaram', 'Pallavaram', '2306150011', '27', '1', 'upload_files/candidate_tracker/14851878027_MOHAMMAD_SHAFFAN A_Resume_10-06-2023-00-44-17.pdf', NULL, '1', '2023-06-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher For Digital Marketing No Basics Ideas Need To Learn A Lot Will Not Run In A Long', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-15 11:17:55', 101, '2023-06-27 03:33:17', 0, NULL, 1),
(13275, 'Vijayalakshmi A', '22', '9791137702', '9384659669', 'vijiarumugam2000@gmail.com', '2000-06-29', 0, '2', '2', 'Arumugam', 'electrician', 20000.00, 1, 0.00, 20000.00, 'Maduravoyal', 'Maduravoyal', '2306150012', '27', '1', 'upload_files/candidate_tracker/22856167420_viji resume b (1).pdf', NULL, '1', '2023-06-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-15 11:18:28', 101, '2023-06-27 03:44:58', 0, NULL, 1),
(13276, 'Gojul raj. J', '13', '9840751001', '7305863374', 'Gokigokul.k@gmail.com', '2002-11-24', 20, '3', '2', 'Jambulingam', 'IT', 150000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2306150013', '', '1', 'upload_files/candidate_tracker/3385897071_Gokulraj Resume .pdf', NULL, '1', '2023-06-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-15 11:38:17', 1, '2023-06-15 11:47:42', 0, NULL, 1),
(13277, '', '0', '9940241107', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306150014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-15 11:46:40', 0, NULL, 0, NULL, 1),
(13278, 'Sanjay B', '4', '6380678551', '', 'rcchocoboy@gmail.com', '2004-09-01', 18, '1', '2', 'Balusubramaniyam S', 'Tailor', 30000.00, 1, 0.00, 15000.00, 'Avadi', 'Avadi', '2306150015', '', '1', 'upload_files/candidate_tracker/23033591530_report-1.pdf', NULL, '1', '2023-06-15', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for Telecalling Sales too long Distance', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-15 11:55:07', 1, '2023-06-15 12:07:52', 0, NULL, 1),
(13279, 'Bhuvaneshwari p', '6', '9360311902', '8848837229', 'Bhuvithamizhachi07@gmail.com', '2001-11-09', 21, '3', '2', 'Pandiyan K', 'Driver', 300000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2306150016', '', '1', 'upload_files/candidate_tracker/28384280859_BHUVANESHWARI.pdf', NULL, '1', '2023-06-15', 0, '', '3', '59', '2023-06-20', 164208.00, '', '5', '1970-01-01', '2', 'Selected for Gopinath Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-15 11:56:31', 60, '2023-06-20 10:01:23', 0, NULL, 1),
(13280, 'Keerthika.M', '6', '7338977706', '9884885777', 'keerthika2329@gmail.com', '2001-09-29', 21, '3', '2', 'Munusamy', 'Driver', 23000.00, 1, 0.00, 15000.00, 'Nungambakkam', 'Chennai', '2306150017', '', '1', 'upload_files/candidate_tracker/94532363205_Keerthi.pdf', NULL, '1', '2023-06-15', 0, '', '3', '59', '2023-06-20', 164208.00, '', '5', '1970-01-01', '2', 'Selected for Gopinath Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-15 11:57:14', 104, '2023-06-27 03:12:59', 0, NULL, 1),
(13281, 'Ramya', '5', '9092761143', '', 'ramyaram1204@gmail.com', '2001-12-04', 21, '1', '2', 'Meenakshi', 'House wife', 5000.00, 0, 23000.00, 18000.00, 'No 17 2nd street Srinath Nagar Nemilichery', 'Avadi', '2306150018', '', '2', 'upload_files/candidate_tracker/23490190833_RESUME.docx', NULL, '1', '2023-06-15', 0, 'p1391', '3', '59', '2023-06-20', 204000.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-15 12:10:24', 104, '2023-06-27 03:07:58', 0, NULL, 1),
(13282, 'Saravanan', '13', '9500167912', '6383048161', 'saravanansj25072001@gmail.com', '2001-07-15', 21, '3', '2', 'S.subramaniyan', 'Cooli', 15000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Perungalathur', '2306150019', '', '1', 'upload_files/candidate_tracker/62208320602_5_6260163349317683507.pdf', NULL, '1', '2023-06-15', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-15 12:18:50', 104, '2023-06-15 07:08:52', 0, NULL, 1),
(13283, 'Kokila', '4', '9688992181', '', 'gkokila339@mail.com', '2000-01-21', 23, '3', '2', 'Gandhi', 'Work for backary', 30000.00, 1, 0.00, 20000.00, 'Sivagangai', 'Nungambakkam', '2306150020', '', '1', 'upload_files/candidate_tracker/60997753891_Dhanalakshmi T.pdf', NULL, '1', '2023-06-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for Sales calls left without attending the 2nd level', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-15 12:32:21', 1, '2023-06-15 12:47:43', 0, NULL, 1),
(13284, 'V.ANUJA', '31', '6381898572', '9381126866', 'anujavasu03@gmail.com', '2001-11-03', 21, '3', '2', 'Vasudevan', 'Readymade business', 72000.00, 1, 0.00, 15.00, 'K.K nagar', 'Chennai', '2306150021', '', '1', 'upload_files/candidate_tracker/3471418022_DOC-20230601-WA0010.-1.docx', NULL, '1', '2023-06-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher no basics in Javascript Need to train a lot if she come back after confirmation on TxxampC let us try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-15 12:55:16', 104, '2023-06-15 07:05:25', 0, NULL, 1),
(13285, 'Kiran sri G', '6', '8754555969', '6383263930', 'kiransri0823@gmail.com', '2002-08-23', 20, '3', '2', 'Gowrishankar', 'Work', 12000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2306150022', '', '1', 'upload_files/candidate_tracker/92969995703_Kiran Sri_Resume.pdf', NULL, '1', '2023-06-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit for Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-15 02:50:30', 101, '2023-06-15 07:46:24', 0, NULL, 1),
(13286, 'Edison Raj. S', '4', '7010925303', '8939289935', 'rockyedison8939@gmail.com', '1992-12-30', 30, '4', '2', 'Father', 'Cycle mechanic', 20000.00, 1, 16000.00, 18000.00, 'No : 13, udhyasuritan 2nd street,Gandhinagar', 'Chennai', '2306150023', '', '2', 'upload_files/candidate_tracker/14920359813_Edison resume.docx', NULL, '1', '2023-06-15', 3, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable low Profile will not take and convert calls', '1', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-15 02:59:16', 101, '2023-06-27 03:45:10', 0, NULL, 1),
(13287, '', '0', '7305863374', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306150024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-15 03:29:19', 0, NULL, 0, NULL, 1),
(13288, '', '0', '6281628625', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306150025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-15 06:00:39', 0, NULL, 0, NULL, 1),
(13289, 'KARTHIKEYAN.K', '4', '9360776426', '', 'karthikeyan0163@gmail.com', '2001-12-03', 21, '1', '2', 'Karupasamy', 'home appliances seller', 120000.00, 1, 0.00, 20000.00, 'Redhills', 'redhills', '2306160001', '', '1', 'upload_files/candidate_tracker/80888356092_new_document (1).pdf', NULL, '1', '2023-06-16', 0, 'P1349', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable Rejected profile in Job Fair', '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-16 09:51:45', 1, '2023-06-16 10:01:14', 0, NULL, 1),
(13290, 'Vijayalakshmi', '13', '9629112918', '', 'seethaviji636941@gmail.com', '2000-09-29', 22, '3', '2', 'Bagavathi', 'House wife', 13000.00, 2, 0.00, 250000.00, 'Tirunelveli', 'Chennai', '2306160002', '', '1', 'upload_files/candidate_tracker/37902862538_updated resume(2).pdf', NULL, '1', '2023-06-16', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to come back after learning', '2', '1', '0', '1', '8', '0', '2', '2023-06-26', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-16 10:26:16', 1, '2023-06-16 10:31:04', 0, NULL, 1),
(13291, 'Hariharan R', '13', '8778650565', '', 'haritvr2015@gmail.com', '2000-08-07', 22, '6', '2', 'Radha.S', 'Junior assistant tahdco thiruvarur', 300000.00, 1, 0.00, 250000.00, 'Thiruvarur', 'Chennai', '2306160003', '', '1', 'upload_files/candidate_tracker/48692844838_HARIRESUME.pdf', NULL, '1', '2023-06-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics in JS much preferrd Java PRofile need to learn and come', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-16 10:31:37', 101, '2023-06-27 03:21:44', 0, NULL, 1),
(13292, 'Mathan kumar', '13', '8248108193', '', 'mathankimar542001@gmail.com', '2001-04-05', 22, '6', '2', 'Parents', 'Tailor', 45000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2306160004', '', '1', 'upload_files/candidate_tracker/53349375484_My resume.pdf', NULL, '1', '2023-06-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance not ope n for TxxampC will not sustain', '2', '1', '', '4', '6', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-16 11:13:02', 101, '2023-06-27 03:20:32', 0, NULL, 1),
(13293, 'A.keerthana', '4', '9361958510', '8124594968', 'sridharkeerthi1528@gmail.com', '2002-10-15', 20, '3', '2', 'A.arumugam', 'Auto liner', 15000.00, 1, 0.00, 15000.00, 'Chennai royapettah', 'Chennai royapettah', '2306160005', '', '1', 'upload_files/candidate_tracker/28965137530_Document-WPS Office.pdf', NULL, '1', '2023-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Sales manager round reject just a try being a fresher not suitable', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-16 12:09:00', 1, '2023-06-16 12:25:43', 0, NULL, 1),
(13294, 'Chandramouli Jokada', '23', '8555008435', '', 'chandramoulijokada@gmail.com', '2000-06-10', 23, '6', '2', 'Seetharam Jokada', 'Farmer', 20000.00, 2, 0.00, 300000.00, 'Vizag', 'Chennai', '2306160006', '', '1', 'upload_files/candidate_tracker/80900276378_Chandramouli\'s Resume(f1).pdf', NULL, '1', '2023-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher andhra native communication barrier Need to train a lot not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-16 12:34:49', 1, '2023-06-16 12:40:45', 0, NULL, 1),
(13295, '', '0', '6369557459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306160007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-16 01:37:52', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13296, 'D.Janet Febi', '5', '6383968161', '7825060953', 'febijanet70@gmail.com', '2002-05-03', 21, '2', '2', 'A.Dinesh', 'Fisherman', 100000.00, 0, 20000.00, 22000.00, 'Chennai', 'Chennai', '2306160008', '1', '2', '0', NULL, '1', '2023-06-17', 0, '', '3', '59', '2023-06-21', 252636.00, '', '5', '1970-01-01', '2', 'Selected for Sarath Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-16 06:24:50', 104, '2023-06-27 03:01:03', 0, NULL, 1),
(13297, 'Parimala', '4', '8438396152', '8754551785', 'Parimalajesuschrist@gmail.com', '2003-03-18', 20, '2', '2', 'Anthoni.s', 'Construction manager', 55000.00, 1, 0.00, 13000.00, 'No 4 3rd Unit Potroom Madhavaram Milk Colony', 'No 4 3rd unit potroom madhavaram milk colony', '2306160009', '1', '1', 'upload_files/candidate_tracker/2224975635_Resume_Parimala_Format2.pdf', NULL, '1', '2023-06-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-16 06:37:18', 101, '2023-06-17 11:27:13', 0, NULL, 1),
(13298, 'Chandru C', '5', '9384110742', '', 'chandru.c2000@gmail.com', '2000-10-25', 22, '2', '2', 'Chakaravarthi', 'Weaver', 60000.00, 0, 0.00, 23000.00, 'Villupuram', 'Kovilambakkam chennai', '2306160010', '1', '1', 'upload_files/candidate_tracker/33571398242_Resume_3 (1).pdf', NULL, '1', '2023-06-20', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok pls confirm  the joining date Thanks\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-16 06:52:42', 101, '2023-06-20 09:56:49', 0, NULL, 1),
(13299, 'Rajkumar', '31', '9710129943', '9841272667', 's.rajtamiladvik@gmail.com', '1992-04-19', 31, '3', '1', 'Tamilarasi', 'Home maker', 15000.00, 1, 0.00, 15000.00, 'Perambur , Chennai', 'Perambur , Chennai', '2306170001', '', '1', 'upload_files/candidate_tracker/24145280647_RAJ KUMAR_RESUME.pdf', NULL, '1', '2023-06-17', 0, '', '5', '107', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has basic knowledge in html, CSS, javascript...Let us try...Selected for next round...Interviewed and rejected by Kavya', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-17 11:07:18', 101, '2023-06-17 06:29:44', 0, NULL, 1),
(13300, 'Anand Udhayam', '5', '9884982478', '', 'kvasanthamtv2017@gmail.com', '2000-02-19', 23, '2', '2', 'vasanthai', 'house wife', 30000.00, 1, 26000.00, 35000.00, 'kundrathur', 'kundrathur', '2306170002', '1', '2', 'upload_files/candidate_tracker/75706308656_anand .pdf', NULL, '1', '2023-06-17', 15, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Has Experience in sales...good communication skills...Good convincing skills...Kindly check and update your feedback', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-17 11:52:12', 101, '2023-06-17 06:29:52', 0, NULL, 1),
(13301, 'Prabhu P', '31', '9688720520', '8300409520', 'P.prabhu.pb@gmail.com', '1996-03-07', 27, '3', '2', 'Panneerselvam', 'Student', 10000.00, 1, 0.00, 20000.00, 'Ariyalur', 'Pallikaranai', '2306170003', '', '1', 'upload_files/candidate_tracker/87074692686_prabhu IT.pdf', NULL, '1', '2023-06-17', 0, '', '5', '107', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher... Will Not Handle Our Work Pressure ....Not Much Comfort In TxxampC ....Not Suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-17 12:15:33', 101, '2023-06-17 06:30:07', 0, NULL, 1),
(13302, 'Bharathkumar V', '31', '7868940215', '', 'bharathvel606084@gmail.com', '1999-08-30', 23, '3', '2', 'Velmurugan T', 'Student', 10000.00, 1, 0.00, 20000.00, 'Tittakudi', 'Pallikaranai', '2306170004', '', '1', 'upload_files/candidate_tracker/81814374561_resume-compressed.pdf', NULL, '1', '2023-06-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-17 12:17:16', 1, '2023-06-17 12:25:01', 0, NULL, 1),
(13303, 'PREETHI A', '13', '9361264487', '', 'preethiprema2000@gmail.com', '1999-09-23', 23, '3', '1', 'Sivanandham . M', 'Police', 20000.00, 0, 0.00, 3.00, 'Krishnagiri', 'Chennai', '2306170005', '', '1', 'upload_files/candidate_tracker/19466930823_PREETHI RESUME.pdf', NULL, '1', '2023-06-17', 0, '', '5', '107', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher... Not Open For TxxampC... Will Not Sustain And Not Suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-17 12:20:59', 101, '2023-06-17 06:30:45', 0, NULL, 1),
(13304, 'Prabakar', '13', '8681071796', '', 'Sibiprabakar912@gmail.com', '1994-01-01', 29, '3', '2', 'Poomani', 'Civil supplier', 18000.00, 1, 0.00, 20000.00, 'No.10 mettu street periya colony thiruninravur', 'Chennai', '2306170006', '', '1', 'upload_files/candidate_tracker/19885154519__Resume UI_UX .pdf', NULL, '1', '2023-06-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-17 12:49:36', 1, '2023-06-17 04:15:47', 0, NULL, 1),
(13305, 'Jeba. Selvi', '5', '8939258475', '', 'Jebaselvi7777@gamli.com', '2002-01-17', 21, '6', '2', 'R. Easudoss', 'Chennai', 20000.00, 3, 15000.00, 16000.00, 'Egmore', 'Chennai', '2306170007', '', '2', 'upload_files/candidate_tracker/67550307478_Prov_Cert (3).pdf', NULL, '1', '2023-06-17', 140, '', '5', '107', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Has experience in calling...difficulty in opening up..will not sustain..not suitable..', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-17 01:02:03', 101, '2023-06-17 06:31:01', 0, NULL, 1),
(13306, '', '0', '7010805838', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306170008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-17 01:30:06', 0, NULL, 0, NULL, 1),
(13307, 'Rakshaka. S', '5', '9962972078', '8015991265', 'rakshakarakshaka@gmail.com', '2000-04-29', 23, '2', '2', 'salman', 'Corporation', 10000.00, 2, 19500.00, 22.00, 'Chennai', 'Chennai', '2306170009', '1', '2', 'upload_files/candidate_tracker/53708857155_Pdf_17Jun23_29.pdf', NULL, '1', '2023-06-17', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SHE SAID TO JOIN ON JULY 1ST , AND SHE IS IS EXPECTING 20K, BUT WE WILL PROVIDE 16.5 TO 17K IN TDS FROMATE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-17 01:32:20', 101, '2023-06-17 06:58:29', 0, NULL, 1),
(13308, 'Monisha.vs', '4', '9360128574', '9094336467', 'sasikumarmonisha176@gmail.com', '2000-06-12', 23, '2', '2', 'Sasikumar.vs', 'Cooly', 10000.00, 3, 13000.00, 22000.00, 'Chennai', 'Chennai', '2306170010', '1', '2', 'upload_files/candidate_tracker/10928398689_volojunelikuf (1).pdf', NULL, '1', '2023-06-17', 1, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come for Sales interview Round 1st round intervewed by priya and processed for Renewal', '1', '1', '', '1', '8', '', '2', '2023-06-30', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-17 05:10:14', 101, '2023-06-20 05:16:08', 0, NULL, 1),
(13309, 'Nimesh M', '5', '7708534914', '', 'sainimesh23@gmail.com', '2002-11-12', 20, '2', '2', 'Chithra', 'House wife', 20000.00, 1, 20000.00, 20000.00, 'Chennai', 'Velachery', '2306190001', '27', '2', 'upload_files/candidate_tracker/30163110311_2222.pdf', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 10:41:09', 104, '2023-06-27 03:17:58', 0, NULL, 1),
(13310, 'Yuvaraj', '5', '9600119576', '', 'rajiyuvaraj5@gmail.com', '2003-04-20', 20, '2', '2', 'Thanigaivel', 'Fruit Merchant', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Velachery', '2306190002', '27', '1', 'upload_files/candidate_tracker/1236227476_CV_2023061317542334.pdf', NULL, '1', '2023-06-19', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come back with his conirmation on the profile if he comes back can give try fir sales', '5', '2', '', '1', '1', '', '2', '2023-06-22', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 10:41:57', 104, '2023-06-27 03:19:02', 0, NULL, 1),
(13311, 'G. Uvasri', '5', '7305313301', '9942393845', 'Uvasrig07@gmail.com', '2003-08-07', 19, '2', '2', 'G.Gopi', 'Coolie', 8000.00, 3, 0.00, 20000.00, '50/1, subbrayan street, old Washermenpet, ch-21.', '50/1, Subbrayan Street, Old Washermenpet, Ch-21', '2306190003', '27', '1', 'upload_files/candidate_tracker/34716062266_resume (2).pdf', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up not suitable for our roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 10:42:27', 104, '2023-06-27 03:17:20', 0, NULL, 1),
(13312, 'Ramya .s', '33', '9942393845', '', 's7555610@gmail.com', '2003-07-26', 19, '1', '2', 'S. Priya', 'House keeping', 9000.00, 2, 0.00, 20000.00, '155/50, ellaya street, korukupet, Chennai 21', '155/50, ellaya street, korukupet, Chennai 21', '2306190004', '', '1', 'upload_files/candidate_tracker/27275172107_Resume.pdf', NULL, '1', '2023-06-19', 0, 'Nil', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-19 10:43:48', 1, '2023-06-19 11:17:02', 0, NULL, 1),
(13313, 'Suresh K', '5', '8667443027', '9629772533', 'Sureshksk2097@gmail.com', '1998-05-20', 25, '2', '2', 'Saraswathi', 'Mother', 35000.00, 3, 19000.00, 23000.00, '3/21 nasurthin kollai street ambur 635802', 'Ambur', '2306190005', '1', '2', 'upload_files/candidate_tracker/21110321937_Suresh resume-1.pdf', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Profile out of Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-06-19 11:03:21', 108, '2023-06-29 10:58:05', 0, NULL, 1),
(13314, '', '0', '9940369576', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-19 11:44:02', 0, NULL, 0, NULL, 1),
(13315, 'Ajith Kumar G', '5', '9344608569', '7010708194', 'gajithkumar768@gmail.com', '2002-09-08', 20, '2', '2', 'Kalavathi', 'Agriculture', 20000.00, 3, 0.00, 15000.00, 'Meesanallur', 'Adambakkam', '2306190007', '27', '1', 'upload_files/candidate_tracker/33180932921_AJITH KUMAR RESUME (1)-1.docx', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non Voice', '5', '2', '', '4', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 11:46:12', 104, '2023-06-27 03:15:36', 0, NULL, 1),
(13316, 'Swetha', '6', '7358291791', '7397311963', 'swethausha182002@gmail', '2002-08-01', 20, '2', '2', 'Pasupathi', 'Tiles layer', 35000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2306190008', '27', '1', 'upload_files/candidate_tracker/90962562247_swetha resume^^.pdf', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Sal Exp is high will not join less than 20K', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 11:51:49', 104, '2023-06-27 03:16:37', 0, NULL, 1),
(13317, 'JAGATHESWARI', '6', '9600123088', '', 'jayashree05official@gmail.com', '2003-02-05', 20, '2', '2', 'PERIYASAMY S', 'Self - Employer', 48000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2306190009', '27', '1', 'upload_files/candidate_tracker/42175143055_Jagatheswari Periyasamy .pdf', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok Left with out attending the 2nd level salary exp is high', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 11:52:33', 104, '2023-06-27 03:14:25', 0, NULL, 1),
(13318, 'Ebinesh J', '31', '7339547090', '9994960512', 'jebinesh8@gmail.com', '2001-11-02', 21, '2', '2', 'J.Joseph karunanithi', 'Working in spinning Mills', 10000.00, 1, 0.00, 2.50, 'Dindigul', 'Chennai', '2306190010', '27', '1', 'upload_files/candidate_tracker/25990910437_pdf_20230315_124331_0000.pdf', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no basics in the Javascript Need to train a lot not much open for TxxampC if they come back in future let us try based on their skills at the time', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 12:06:10', 104, '2023-06-27 03:19:26', 0, NULL, 1),
(13319, 'Shree Kartheesh S', '22', '9962298438', '8072180702', 'shreekartheesh@gmail.com', '2003-07-26', 19, '2', '2', 'Suresh Kumar V', 'Accountant', 30000.00, 1, 0.00, 20000.00, 'Peruny', 'Perungudi', '2306190011', '27', '1', 'upload_files/candidate_tracker/25342426655_Resume-3.docx', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 12:13:14', 104, '2023-06-27 03:15:04', 0, NULL, 1),
(13320, 'ROHINEESWARAN V', '22', '9342264538', '9941450775', 'Rohithvishwa2002@gmail.com', '2002-06-20', 20, '2', '2', 'VISWANATHAN M', 'Sales man', 15000.00, 1, 0.00, 15000.00, 'PERAMBUR', 'PERAMBUR', '2306190012', '27', '1', 'upload_files/candidate_tracker/92541536936_Screenshot_2023-06-17-13-03-40-71_63.pdf', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 12:13:47', 104, '2023-06-27 03:20:00', 0, NULL, 1),
(13321, 'M.PRABU DEVA', '4', '9786394071', '', 'prabudevatnj2002@gmail.com', '2002-08-11', 20, '6', '2', 'Manogaran', 'Farmar', 15000.00, 2, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2306190013', '', '1', 'upload_files/candidate_tracker/72766877950_prabudeva.pdf', NULL, '1', '2023-06-19', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-19 12:20:51', 1, '2023-06-19 12:37:28', 0, NULL, 1),
(13322, 'MITHULRAM A R', '5', '7395954979', '9940209220', 'mithulramdiwakar123@gmail.com', '2003-02-17', 20, '2', '2', 'A RAMESH', 'CAR DRIVER', 360000.00, 1, 0.00, 25000.00, 'No:05, BAJANAI KOIL STREET,NADUVANKARAI,ANNA NAGAR', 'NO:05,BAJANAI KOIL STREET,NADUVANKARAI,ANNA NAGAR', '2306190014', '27', '1', 'upload_files/candidate_tracker/29042478230_DOC-20230224-WA0008.(1).pdf', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Accounts Role fresher doing CMA will not sustain', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 12:28:29', 104, '2023-06-27 03:20:30', 0, NULL, 1),
(13323, 'SATHYAMOORTHY S', '6', '7397365799', '', 'sssathyamoorthy800@gmail.com', '2003-02-15', 20, '2', '2', 'SARAVANAN V', 'CONTRACT WORKER', 10000.00, 0, 0.00, 20000.00, 'NO.49 KANNU NAGAR 1ST, NESAPAKKAM,CHENNAI', 'NO.49 KANNU NAGAR 1ST, NESAPAKKAM,CHENNAI', '2306190015', '27', '1', 'upload_files/candidate_tracker/33149228356_Sathyamoorthy Resume.pdf', NULL, '1', '2023-06-19', 0, '', '3', '59', '2023-06-26', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team Hired from Jo Fair Can give a try in our roles Need to analyse in 7 days', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 12:28:35', 104, '2023-06-27 03:35:03', 0, NULL, 1),
(13324, 'Rahulnath K', '13', '7639247131', '', 'rahulrahul682000@gmail.com', '2000-08-06', 22, '3', '2', 'Kanakaraj R', 'Farmer', 60000.00, 1, 0.00, 2.50, 'Trichy', 'Triplicane, Chennai', '2306190016', '', '1', 'upload_files/candidate_tracker/32731022881_rkrk.pdf', NULL, '1', '2023-06-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-19 12:50:09', 1, '2023-06-19 12:58:48', 0, NULL, 1),
(13325, 'Vinith', '13', '6381357946', '', 'lvinith903@gmail.com', '2000-11-13', 22, '2', '2', 'Logaraj', 'Farmer', 20000.00, 2, 0.00, 18000.00, 'Moovarayam palayam Trichy', 'Triplicane Chennai', '2306190017', '27', '1', 'upload_files/candidate_tracker/37715380107_VINITH_CV.pdf', NULL, '2', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 12:51:12', 104, '2023-06-27 03:21:34', 0, NULL, 1),
(13326, 'S Gopinath', '13', '7299695108', '', 'gopinaths7299@gmail.com', '2002-08-20', 20, '2', '2', 'S Meenakshi', 'Cooli', 15000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2306190018', '27', '1', 'upload_files/candidate_tracker/8682692163_S. Gopinath_Resume.docx', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 01:32:33', 104, '2023-06-27 03:22:28', 0, NULL, 1),
(13327, 'Murali', '13', '7305741683', '', 'muralimessi3454@gmail.com', '2003-05-10', 20, '2', '2', 'K.devaraj and D.prema', 'Kooli', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2306190019', '27', '1', 'upload_files/candidate_tracker/52507825929_D. Murali Resume.docx', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 01:34:37', 104, '2023-06-27 03:21:58', 0, NULL, 1),
(13328, 'R.HARI HARAN', '13', '8925354981', '9677028669', 'hhari628118@gmail.com', '2003-01-19', 20, '2', '2', 'Ravi,latha', 'Car driver,house wife', 25000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2306190020', '27', '1', 'upload_files/candidate_tracker/41606776661_Hariharan_Resume.docx', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 01:35:58', 104, '2023-06-27 03:22:54', 0, NULL, 1),
(13329, 'Dinakaran', '6', '8428787048', '', 'chandhrug05@gmail.com', '2002-03-14', 21, '2', '2', 'Govindan', 'Worker', 40000.00, 1, 18000.00, 19.00, 'Poonamalle', 'Poonamalle', '2306190021', '1', '2', 'upload_files/candidate_tracker/15240710750_Dinakaran_Team Leader_Profile.docx', NULL, '1', '2023-06-19', 0, '', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok . pls confirm the joining data and salary', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-19 02:50:20', 104, '2023-06-19 05:16:00', 0, NULL, 1),
(13330, 'Abdul Ajees A', '13', '6379817407', '', 'abdulazees6079@gmail.com', '2003-08-22', 19, '2', '2', 'Ramzan Beevi', 'House Wife', 12000.00, 0, 0.00, 15000.00, 'Vandalur', 'Vandalur', '2306190022', '27', '1', 'upload_files/candidate_tracker/76584971860_Abdul Ajees A Resume.pdf', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 02:58:11', 104, '2023-06-27 03:25:02', 0, NULL, 1),
(13331, 'Nirmal B R', '13', '7305590588', '', 'nirmalsimba7146@gmail.com', '2002-08-16', 20, '2', '2', 'Babu', 'Veterinary Doctor', 25000.00, 1, 0.00, 15000.00, 'Urapakkam', 'Urapakkam', '2306190023', '27', '1', 'upload_files/candidate_tracker/77770321209_White Simple Student CV Resume.pdf', NULL, '1', '2023-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-19 03:11:19', 104, '2023-06-27 03:25:46', 0, NULL, 1),
(13332, 'kamal', '5', '7904164834', '', 'sivaparvathi0205@gmail.com', '1995-10-16', 27, '2', '2', 'sugumar', 'printer', 10000.00, 1, 16000.00, 20000.00, 'thiruvarkadu', 'thiruvarkadu', '2306200001', '1', '2', 'upload_files/candidate_tracker/96975520573_KAMAL', NULL, '1', '2023-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communicaiton not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-06-20 11:03:13', 108, '2023-06-29 10:58:48', 0, NULL, 1),
(13333, 'Mohamed Arshath', '13', '8098136438', '', 'mohamedarshath979@gmail.com', '2003-01-02', 20, '2', '2', 'Sheikmohamed', 'Chennai', 20000.00, 1, 0.00, 14000.00, 'Ramanathapuram', 'Ramanathapuram', '2306200002', '27', '1', 'upload_files/candidate_tracker/36651206466_Resume.pdf', NULL, '1', '2023-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no basics skills knowledge not open with the TxxampC will not sustain', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-20 11:05:28', 104, '2023-06-27 02:53:21', 0, NULL, 1),
(13334, 'Navin Kumar J', '13', '6374877463', '8754321258', 'zernnavier@gmail.com', '1998-08-29', 24, '2', '2', 'Jeyasekar S', 'Project Officer', 30000.00, 1, 360000.00, 400000.00, 'Rajakilpakkam', 'Rajakilpakkam', '2306200003', '27', '2', 'upload_files/candidate_tracker/70290369912_Navin_Kumar_CV___Professional (1).pdf', NULL, '1', '2023-06-20', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-20 11:10:52', 104, '2023-06-27 02:50:38', 0, NULL, 1),
(13335, 'Navinsri.P', '5', '9884087949', '8939782854', 'nsri57389@gmail.com', '2003-02-20', 20, '2', '2', 'Pugazhendhi', 'Shopkeeper', 10000.00, 1, 0.00, 25000.00, 'No.6/2, Duraisamy garden, Nanganallur,', 'Chennai-600061', '2306200004', '27', '1', 'upload_files/candidate_tracker/53611015416_DOC-20230422-WA0001..pdf', NULL, '1', '2023-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communicaiton not suitble for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-20 11:20:40', 104, '2023-06-27 02:59:51', 0, NULL, 1),
(13336, 'J.Raghu Ram', '6', '9445077268', '', 'raghujagan8@gmail.com', '1999-10-10', 23, '2', '2', 'K.jaganthana,j.jayanthi', 'Business', 50000.00, 1, 14000.00, 19000.00, 'Chennai', 'Chennai', '2306200005', '1', '2', 'upload_files/candidate_tracker/86670329794_Resume_Resume_Format7.pdf', NULL, '1', '2023-06-20', 1, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-20 11:42:31', 104, '2023-06-27 02:46:14', 0, NULL, 1),
(13337, 'Mohamed Rishwan', '31', '8531819815', '7397644830', 'rishwan637@gmail.com', '2001-12-17', 21, '3', '2', 'Rifaya Nafrin', 'Developer', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2306200006', '', '1', 'upload_files/candidate_tracker/9036480502_Rishwan Resume (1).pdf', NULL, '1', '2023-06-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-20 12:06:20', 1, '2023-06-20 12:09:46', 0, NULL, 1),
(13338, 'Ashwin Kumar', '4', '7871586005', '7871586006', 'ashwinbalaji2310@gmail.com', '2002-10-23', 20, '3', '2', 'mariyammal', 'House wife', 12000.00, 1, 0.00, 18000.00, 'Pallavaram', 'Pallavaram', '2306200007', '', '1', 'upload_files/candidate_tracker/35471314889_Copy of Ashwin Kumar (1).pdf', NULL, '1', '2023-06-20', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '2', 'Needs time to learn...Let us try if he comes back', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-20 12:16:30', 1, '2023-06-20 01:05:43', 0, NULL, 1),
(13339, '', '0', '7395974868', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306200008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-20 12:19:23', 0, NULL, 0, NULL, 1),
(13340, '', '0', '8825403031', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-20 12:19:52', 0, NULL, 0, NULL, 1),
(13341, 'Dinesh aravind.m', '4', '9150106783', '7338989589', 'dinesh62dinesh62@gmail.com', '2003-07-10', 19, '2', '2', 'Murugan', 'driver', 20000.00, 1, 0.00, 20000.00, 'Chromepet', 'Chromepet', '2306200010', '27', '1', 'upload_files/candidate_tracker/69857787412_SIDDHARTH RESUME.pdf', NULL, '1', '2023-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Calling not suitable for our roels', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-20 12:21:03', 104, '2023-06-27 02:50:03', 0, NULL, 1),
(13342, 'Vijayasarathy D', '13', '6383470514', '', 'vijayapartha3@gmail.com', '2001-10-25', 21, '3', '2', 'Dhanasekaran B', 'Farmer', 45000.00, 1, 0.00, 250000.00, 'Aravalli nagar, chunampet, chengalpattu dt', 'Maaran garden, Kattupakkam, Chennai', '2306200011', '', '1', 'upload_files/candidate_tracker/13484609600_vijay cv.pdf', NULL, '1', '2023-06-20', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '2', 'Needs time to learn...Let us try if he comes back...', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-20 12:32:14', 1, '2023-06-20 12:35:39', 0, NULL, 1),
(13343, 'S.Sujima', '4', '9003197153', '9003138839', 'sujimasathishkumar25@gmail.com', '1999-06-25', 23, '1', '2', 'Sathish kumar', 'Nope', 15000.00, 2, 0.00, 12000.00, 'Broadway', 'Broadway', '2306200012', '', '1', 'upload_files/candidate_tracker/92439912910__Resume UI_UX .pdf', NULL, '1', '2023-06-20', 0, 'Jobs', '5', '107', NULL, 0.00, '', '0', NULL, '2', 'Left without attending', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-20 12:36:45', 1, '2023-06-20 12:59:12', 0, NULL, 1),
(13344, 'M.Rohith', '6', '7358536641', '', 'rohith.murali2002@gmail.com', '2002-08-14', 20, '2', '2', 'Murali', 'Business man', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Royapuram', '2306200013', '27', '1', 'upload_files/candidate_tracker/9381107522_Rohith.pdf', NULL, '1', '2023-06-20', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-20 12:37:01', 60, '2023-09-06 06:32:51', 0, NULL, 1),
(13345, 'K.Nandhini', '11', '7305552470', '8939376952', 'nandhinik4678@gmail.com', '2008-06-20', 0, '2', '2', 'Govindhammal', 'Housekeeping', 20000.00, 3, 0.00, 15000.00, 'Royapuram', 'Royapuram', '2306200014', '27', '1', 'upload_files/candidate_tracker/4686743714_Nandhini K CV.pdf', NULL, '1', '2023-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not suitable for our roles will not sustain', '6', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-20 12:37:36', 104, '2023-06-27 02:46:37', 0, NULL, 1),
(13346, 'J.vimaladevi', '11', '8056209328', '9790781389', 'vimaladevi507@gmail.com', '2000-11-13', 22, '2', '2', 'Kanagalakshmi', 'Cooly', 20000.00, 1, 0.00, 15000.00, 'Vanniyar 1st choolaimedu Chennai 94', 'Vanniyar 1st choolaimedu Chennai 94', '2306200015', '27', '1', 'upload_files/candidate_tracker/28266630503_DOC-20230616-WA0010..pdf', NULL, '1', '2023-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot will not sustain', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-20 12:39:47', 104, '2023-06-27 02:46:53', 0, NULL, 1),
(13347, 'praveen raj', '31', '8489080752', '9843083296', 's.praveenraj.msc@gmail.com', '2000-01-20', 23, '3', '2', 'senthil', 'bussniess', 30000.00, 1, 0.00, 20000.00, 'karaikudi', 'chennai', '2306200016', '', '1', 'upload_files/candidate_tracker/54816410496_praveen raj ss.pdf', NULL, '1', '2023-06-20', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '1', 'looking for testing...not suitable for our roles...', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-20 12:40:56', 1, '2023-06-20 12:42:42', 0, NULL, 1),
(13348, 'Surendar', '13', '8526512385', '', 'Surendar1404@gmail.com', '1995-04-14', 28, '3', '2', 'Sivakumar', 'Mechanic', 18000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2306200017', '', '1', 'upload_files/candidate_tracker/38363538974_RESUME_SQLb-1 01.06.23.docx', NULL, '2', '2023-06-20', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '1', 'Rejected in Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-06-20 12:41:54', 1, '2023-06-20 01:22:47', 0, NULL, 1),
(13349, 'S Rajesh', '31', '7993665615', '', 'srajesh0322@gmaul.com', '2000-03-22', 23, '6', '2', 'Bala Krishna', 'Farmer', 7000.00, 0, 0.00, 3.00, 'Puttur', 'Chennai', '2306200018', '', '1', 'upload_files/candidate_tracker/27431758613_Rajesh.pdf', NULL, '1', '2023-06-20', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '2', 'Rejected In Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-20 12:57:52', 1, '2023-06-20 01:02:19', 0, NULL, 1),
(13350, 'S.Jayakumar', '13', '9384507097', '', 'jayakumarselvaraj01@gmail.com', '2001-09-19', 21, '3', '2', 'Selvaraj P', 'Tomato export', 20000.00, 1, 0.00, 2.50, 'Thiruvannamalai', 'Chennai', '2306200019', '', '1', 'upload_files/candidate_tracker/40247963481_Jayakumar s Resume.pdf', NULL, '1', '2023-06-20', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '2', 'Rejected In Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-20 01:01:56', 1, '2023-06-20 01:07:07', 0, NULL, 1),
(13351, 'Janani Aruldass', '13', '9566542116', '', 'Janani116ycd@gmail.com', '2000-11-30', 22, '6', '2', 'Aruldass', 'Electrician', 20000.00, 1, 290000.00, 400000.00, 'Salem', 'Chennai', '2306200020', '', '2', 'upload_files/candidate_tracker/840592256_CV_2023062010280415.pdf', NULL, '1', '2023-06-20', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in TCS will not sustain in our roles not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-20 01:02:40', 1, '2023-06-20 01:14:40', 0, NULL, 1),
(13352, 'Mohammed Imran', '4', '7200063386', '', 'mohammedimran.e20ca028@gmail.com', '2008-06-20', 0, '3', '2', 'Abdul ayub', 'Real estate', 25000.00, 1, 0.00, 17000.00, 'chennai', 'chennai', '2306200021', '', '1', 'upload_files/candidate_tracker/72728524817_Mohammad Imran-1.pdf', NULL, '1', '2023-06-20', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '2', 'Left without attending', '1', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-20 01:09:00', 1, '2023-06-20 01:12:30', 0, NULL, 1),
(13353, 'Manikandan.E', '22', '9150775446', '8754439787', 'manimk18082002@gmail.com', '2002-08-18', 20, '2', '2', 'K.elumalai', 'Carpenter', 20000.00, 2, 0.00, 25000.00, 'Medavakkam', 'Medavakkam', '2306200022', '27', '1', 'upload_files/candidate_tracker/31904504481_Manikandan E Resume.pdf', NULL, '1', '2023-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-20 02:06:21', 104, '2023-06-27 02:41:47', 0, NULL, 1),
(13354, 'SIVA SURYA S A', '4', '9629594118', '6369931845', 'www.sivasurya54200@gmail.Com', '2000-04-05', 23, '2', '2', 'ARUNACHALAM S', 'BUSSINESSMAN', 15000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2306200023', '27', '1', 'upload_files/candidate_tracker/43077911453_Resume2.docx', NULL, '1', '2023-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up will not sustain in our roles', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-20 02:19:54', 104, '2023-06-27 02:49:15', 0, NULL, 1),
(13355, 'Durga S', '13', '6382712706', '', 'durgasofficial@gmail.com', '2001-01-17', 22, '3', '2', 'A Selvakumar', 'Advocate', 20000.00, 1, 0.00, 3.00, '29, Yagasalai mandabam street, kanchipuram', 'Kanchipuram', '2306200024', '', '1', 'upload_files/candidate_tracker/93350136284_Durga_Resume-2.pdf', NULL, '1', '2023-06-20', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '2', 'Rejected In Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-20 02:54:17', 1, '2023-06-20 03:02:27', 0, NULL, 1),
(13356, 'Vimalasando', '6', '7338779626', '6381434336', 'sairachu2015@gmail.com', '1994-05-13', 29, '1', '1', 'Hari', 'Welding', 25000.00, 2, 30000.00, 30000.00, 'Chennai', 'Chennai', '2306200025', '', '2', 'upload_files/candidate_tracker/66980737870_vimala double PAGE RESUME (2).docx', NULL, '1', '2023-06-20', 0, 'p1404', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-20 03:08:48', 104, '2023-06-27 02:40:22', 0, NULL, 1),
(13357, 'kathir s', '13', '8870755626', '', 'droptokathir@gmail.com', '2000-12-10', 22, '2', '2', 'sivakumar m', 'associate professor', 150000.00, 1, 0.00, 3.00, 'tirunelveli', 'chennai', '2306200026', '27', '1', 'upload_files/candidate_tracker/88207969684_kathir.pdf', NULL, '1', '2023-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-20 03:12:04', 104, '2023-06-27 02:42:28', 0, NULL, 1),
(13358, 'R. Lokesh', '4', '6369750817', '', 'Lokeshmukesh007@gmail.com', '2003-01-13', 20, '6', '2', 'Paresnt', 'Carpenter', 15000.00, 1, 16000.00, 20000.00, '46 a block pachaikal veera Samy street ayanavaram', 'Chennai 600023', '2306200027', '', '2', 'upload_files/candidate_tracker/44852868964_Resume_Resume_Format2.pdf', NULL, '1', '2023-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-20 05:35:11', 1, '2023-06-22 11:45:17', 0, NULL, 1),
(13359, 'Ayesha Fathima', '6', '8939055363', '', 'ayeshaubaid1120@gmail.com', '1997-11-29', 26, '1', '2', 'Mohammad nasrullah', 'Watch shop', 20000.00, 1, 17500.00, 20000.00, 'Triplicane', 'Triplicane', '2306200028', '', '2', 'upload_files/candidate_tracker/49030717003_ayesharesume.pdf', NULL, '1', '2024-07-31', 0, 'Katherin - 77878', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Oral communication good but convincing ratio low and previous experience customer support salary expt high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2023-06-20 06:26:56', 104, '2024-07-31 04:39:24', 0, NULL, 1),
(13360, 'Poornima.J', '4', '7339522953', '8825992459', 'Poornima2002@gmail', '2002-11-03', 20, '1', '2', 'Parents', 'Employee', 100000.00, 2, 0.00, 160000.00, 'No 114 perumal Kovil Sm Thiruvallur district', 'Thiruvallur', '2306210001', '', '1', 'upload_files/candidate_tracker/76802241425_null.pdf', NULL, '1', '2023-06-21', 0, 'Jobs', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Fresher can be trained in our roles kindly check and let me know your inputs too long distance ', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-21 10:41:16', 1, '2023-06-21 10:50:12', 0, NULL, 1),
(13361, 'Vijay', '6', '9962037921', '', 'vijayakumar29be@gmail.com', '1998-06-19', 25, '1', '1', 'Father', 'Father', 20000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2306210002', '', '1', 'upload_files/candidate_tracker/84821617939_bala_resume.pdf', NULL, '1', '2023-06-21', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication not much suits for our roles', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-21 11:24:39', 1, '2023-06-21 12:10:55', 0, NULL, 1),
(13362, 'Sahana', '6', '9884000591', '', 'yesdyes13@gmail.com', '2000-11-06', 22, '3', '2', 'V.Durgalakshmi', 'Court officer,High court', 80000.00, 0, 0.00, 10000.00, 'Thirumullaivoyal chenani', 'Chenani', '2306210003', '', '1', 'upload_files/candidate_tracker/2636742987_Sahana Resume (2).pdf', NULL, '1', '2023-06-21', 0, '', '3', '59', '2023-06-23', 164196.00, '', '5', '1970-01-01', '2', 'Selected for Staff Role Syed Team', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-21 12:14:15', 60, '2023-06-23 10:04:22', 0, NULL, 1),
(13363, '', '0', '8903652607', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306210004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-21 12:17:44', 0, NULL, 0, NULL, 1),
(13364, 'C VIGNESH', '5', '9789883107', '9841797853', 'challchal302@gmail.com', '2000-08-23', 22, '2', '2', 'K CHANDAR', 'Car Driver', 50000.00, 2, 13500.00, 15000.00, 'Chennai', 'Chennai', '2306210005', '1', '2', 'upload_files/candidate_tracker/87294830160_VIGNESH RESUME WORD.pdf', NULL, '1', '2023-06-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Frequent Job chnages Will not handle our work pressure not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-21 04:37:31', 101, '2023-06-22 11:50:14', 0, NULL, 1),
(13365, 'Swathi Bharathidasan', '4', '6379244989', '', 'bswathi061@gmail.com', '2001-02-14', 22, '3', '2', 'Bharathidasan', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2306210006', '', '1', 'upload_files/candidate_tracker/58924430932_Resume_Job Resume_Format6.pdf', NULL, '1', '2023-06-22', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-21 05:13:41', 101, '2023-06-22 10:07:11', 0, NULL, 1),
(13366, 'Saba', '5', '8618731851', '8105275706', 'ssaba11102003@gmail.com', '2003-05-10', 20, '2', '2', 'Shaikshavali', 'Tailor', 15000.00, 0, 0.00, 25000.00, 'Kesri sing street Millerpet ballari', 'Ballari', '2306210007', '27', '1', 'upload_files/candidate_tracker/47097123718_Resume_Saba_Format1-1.pdf', NULL, '1', '2023-06-21', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for e-sales but joining after three months kindly release the confirmation mail', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-21 06:59:39', 60, '2023-06-29 05:22:15', 0, NULL, 1),
(13367, 'tousiff ali l', '5', '9035350723', '', 'tousiffbhai@gmail.com', '2002-06-21', 21, '2', '2', 'saleem basha', 'business', 50000.00, 0, 0.00, 27000.00, 'balari', 'blari', '2306210008', '27', '1', 'upload_files/candidate_tracker/9375579914_ResumeTousiffAliLFormat1.pdf', NULL, '1', '2023-06-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for RM ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-21 07:01:27', 1, '2023-06-29 06:19:06', 0, NULL, 1),
(13368, 'R Rupesh', '5', '8886236375', '', 'raminenirupesh97@gmail.com', '1997-06-13', 26, '2', '2', 'r rajasekhar naidu', 'formar', 15000.00, 1, 300000.00, 450000.00, 'pakala', 'pakala', '2306210009', '1', '2', 'upload_files/candidate_tracker/4618029383_Rupesh Marketing Resume.pdf', NULL, '1', '2023-06-22', 0, '', '1', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-21 09:25:30', 101, '2023-06-22 10:30:08', 0, NULL, 1),
(13369, 'Swathi S', '4', '8925304929', '9840905138', 'Swathisuresh1617@gmail.com', '2003-04-17', 21, '2', '2', 'V.suresh kumar', 'Painter', 22000.00, 1, 180000.00, 270000.00, 'Chennai', 'Chennai', '2306210010', '1', '2', 'upload_files/candidate_tracker/67271479395_SWATHICV.pdf', NULL, '1', '2024-12-17', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'ok for E sales \nneed to fix the salary ', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55824', '55560', '1970-01-01', 1, '2023-06-21 11:48:37', 154, '2024-12-17 12:09:11', 0, NULL, 1),
(13370, 'Buvaneswari Ramachandran', '13', '6374384783', '9894461117', 'bhuviram1597@gmail.com', '1997-06-15', 26, '6', '1', 'Jayabalan A', 'Senior Production Engineer', 30000.00, 1, 0.00, 15000.00, 'Mayiladuthurai District', 'Ambattur', '2306220001', '', '1', 'upload_files/candidate_tracker/33735337252_Buvaneswari SR - Resume (1).pdf', NULL, '1', '2023-06-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic JS skills not suitable will not sustain in our Roles', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-22 09:45:21', 1, '2023-06-22 09:50:27', 0, NULL, 1),
(13371, 'V. Sehwag', '14', '8248863259', '', 'sehwagsp2002@gmail.com', '2002-12-10', 20, '2', '2', 'Viji', 'Farmers', 80.00, 2, 0.00, 16000.00, '271 new kuilam tiruvannamalai dt chengam tk', '20/33 pallapan street Triplicane', '2306220002', '27', '1', 'upload_files/candidate_tracker/40902597713_PrintStudentExamApplication (5).pdf', NULL, '1', '2023-06-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-22 09:46:04', 101, '2023-06-27 03:03:57', 0, NULL, 1),
(13372, 'BOOBATHY S', '4', '9384659574', '8056037912', 'boopathyvicky44@gmail.com', '1996-04-09', 27, '2', '2', 'sekar mala', 'bulding Con create', 50000.00, 1, 20000.00, 25000.00, 'pallavaram', 'pallavaram', '2306220003', '1', '2', 'upload_files/candidate_tracker/5376286117_20230307053230.pdf', NULL, '3', '2023-06-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication Not Suitable For Our Roles Will Not Sustain stammering a lot ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-22 10:05:18', 85, '2023-06-22 02:51:43', 0, NULL, 1),
(13373, 'Balamurugan K', '4', '6381377217', '', 'balaeswaran5@gmail.com', '2003-07-05', 19, '2', '2', 'Kotteeswaran G', 'Business', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2306220004', '1', '1', 'upload_files/candidate_tracker/30680925802_Balamurugan k Resume.pdf', NULL, '1', '2023-06-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not sustain and handle our work pressure', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-06-22 10:05:21', 108, '2023-06-29 11:02:25', 0, NULL, 1),
(13374, 'Vigneshkumar S', '2', '6383454061', '8098318834', 'vickysakthi8834@gmail.com', '1999-05-29', 24, '3', '2', 'Sakthivel V', 'Farmer', 15000.00, 2, 0.00, 20000.00, 'Pudukottai', 'Anna Nagar, chennai', '2306220005', '', '1', 'upload_files/candidate_tracker/3084998359_vignesh-resume.doc', NULL, '1', '2023-06-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-22 10:41:53', 1, '2023-06-22 10:55:43', 0, NULL, 1),
(13375, 'Swetha', '13', '9080635702', '', 'swethaeswaran2002@gmail.com', '2002-12-15', 20, '6', '2', 'Eswaran', 'Mason', 75000.00, 1, 0.00, 1.50, 'Karaikudi', 'Chennai', '2306220006', '', '1', 'upload_files/candidate_tracker/57363654739_E SWETHA.pdf', NULL, '1', '2023-06-22', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Given Task for the design based on that we can decide fresher', '2', '1', '0', '1', '8', '0', '2', '2023-06-26', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-22 10:46:08', 1, '2023-06-22 11:31:22', 0, NULL, 1),
(13376, 'Ravichandran GR', '33', '7358497012', '', 'ravichandranr0112@gmail.com', '2002-12-01', 20, '3', '2', 'RAMESH G', 'Sales man', 12000.00, 0, 0.00, 13000.00, 'Purasaiwalkam', 'Chennai', '2306220007', '', '1', 'upload_files/candidate_tracker/26646071725_CV_2023061915335087.pdf', NULL, '1', '2023-06-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication Not Suitable For Our Roles Will Not Sustain', '4', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-22 11:07:40', 1, '2023-06-22 11:23:11', 0, NULL, 1),
(13377, 'R.KARTHICK', '33', '6383301787', '', 'karthick812pet@gmail.com', '2002-12-08', 20, '2', '2', 'N.ramesh', 'Warden', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2306220008', '27', '1', 'upload_files/candidate_tracker/75108806547_KARTHICK RESUME (1)-1.pdf', NULL, '1', '2023-06-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Not Suitable For Our Roles Will Not Sustain', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-22 11:12:43', 101, '2023-06-27 03:03:02', 0, NULL, 1),
(13378, 'Balaji.R', '14', '7092677467', '6369074038', 'balajiramesh298@gmail.com', '2002-08-18', 20, '3', '2', 'Kannagi .R', 'House keeping', 16000.00, 3, 0.00, 12000.00, 'Chennai', 'Chennai', '2306220009', '', '1', 'upload_files/candidate_tracker/51140428150_balaji .pdf', NULL, '1', '2023-06-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-22 11:14:47', 1, '2023-06-22 12:23:13', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13379, 'LAVANYA B', '22', '6369074038', '9789934861', 'lavanyabala0208@gmail.com', '2002-08-02', 20, '2', '2', 'M.R.Balasundaram', 'camera man', 19000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2306220010', '27', '1', 'upload_files/candidate_tracker/93725783956_LAVANYA-1.pdf', NULL, '1', '2023-06-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-22 11:17:38', 101, '2023-06-27 03:02:22', 0, NULL, 1),
(13380, 'N. Nandhakumar', '2', '6383825842', '', 'nandha20030613@gmail.com', '2003-06-13', 20, '3', '2', 'Natarajan', 'Tailor', 20000.00, 5, 0.00, 17000.00, 'Chennai', 'Chennai', '2306220011', '', '1', 'upload_files/candidate_tracker/50238848256_Nandhakumar Resume.docx', NULL, '1', '2023-06-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-22 11:29:10', 1, '2023-06-22 11:33:00', 0, NULL, 1),
(13381, 'Vijayalakshmi M', '22', '7358185016', '', 'varshaviji688@gmail.com', '2002-11-21', 20, '2', '2', 'Mohan G', 'Driver', 15000.00, 2, 0.00, 23000.00, 'Chennai', 'Chennai', '2306220012', '27', '1', 'upload_files/candidate_tracker/41774677205_VIJAYALAKSHMIRESUME.pdf', NULL, '1', '2023-06-22', 0, '', '5', '107', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-22 12:51:32', 101, '2023-06-27 03:05:26', 0, NULL, 1),
(13382, 'Rajapriya', '22', '7358420247', '', 'rajapriyar58@gmail.com', '2002-11-16', 20, '2', '2', 'Anandan', 'Driver', 20000.00, 1, 0.00, 23000.00, 'Chennai', 'Chennai', '2306220013', '27', '1', 'upload_files/candidate_tracker/66831742794_CV_2023020706421357.pdf', NULL, '1', '2023-06-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-22 12:51:40', 101, '2023-06-27 03:04:35', 0, NULL, 1),
(13383, 'Stephannie Judith', '14', '7904580125', '9941852050', 'stephanniejudith@gmail.com', '2002-04-29', 21, '2', '2', 'Andrews V', 'Pastor', 100000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2306220014', '27', '1', 'upload_files/candidate_tracker/72292979100_CV_2023-05-19-110517.pdf', NULL, '1', '2023-06-22', 0, '', '5', '107', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'left without attending', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-22 12:53:51', 101, '2023-06-27 03:04:55', 0, NULL, 1),
(13384, 'Vishwa t', '5', '8838259309', '8072064240', 'joovishwa@gmail.com', '2001-12-13', 21, '1', '2', 'Desam', 'Fishing', 10000.00, 3, 0.00, 17.00, 'Tada', 'Tada', '2306220015', '', '1', 'upload_files/candidate_tracker/96110805620_vishvaresume-2.docx', NULL, '1', '2023-06-22', 0, '55582', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication not suitable for our roles will not sustain', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-22 01:16:33', 1, '2023-06-22 01:22:30', 0, NULL, 1),
(13385, 'M.MANOJ', '4', '9150864132', '7358228702', 'manojmanoj68355@gmail.com', '2003-10-20', 19, '3', '2', 'K.MALAYADHRI', 'Civil contractor 60000', 80000.00, 2, 18000.00, 19000.00, 'No:55/22 2nd Street sion nagar ennore Chennai-57', 'No:55/22 2nd Street Sion Nagar Ennore Chennai-57', '2306220016', '', '2', 'upload_files/candidate_tracker/40859752874_MANOJ RESUME.docx', NULL, '1', '2023-06-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Not Suitable For Our Roles Will Not Sustain', '1', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-22 01:23:55', 1, '2023-06-22 02:38:26', 0, NULL, 1),
(13386, 'Sanjay Daniel', '23', '9677131083', '', 'danielranswick@gmail.com', '2001-03-08', 22, '3', '2', 'Siva', 'Ot', 150000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2306220017', '', '1', 'upload_files/candidate_tracker/28864309011_Sanjay+Daniel+2023.pdf', NULL, '1', '2023-06-22', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '2', 'Looking for java', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-22 02:33:45', 1, '2023-06-22 02:36:34', 0, NULL, 1),
(13387, 'Gayathri', '28', '9629197314', '9629187314', 'gayathrinagasai05@gmail.com', '1994-08-22', 28, '4', '1', 'Keerthivasan', 'Clerk', 19000.00, 1, 20000.00, 18000.00, 'Chennai', 'Chennai', '2306220018', '', '2', 'upload_files/candidate_tracker/44824945119_gayathri-1.pdf', NULL, '1', '2023-06-22', 1, '', '5', '107', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'left without attending', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-22 02:41:22', 101, '2023-06-22 03:17:43', 0, NULL, 1),
(13388, 'Keerthana', '5', '9344083148', '8428573248', 'keerthanasekar2310@gmail.com', '2002-10-23', 20, '2', '2', 'Sekar', 'Coolie', 15000.00, 1, 0.00, 15000.00, '154/2 Postal Nagar, Chrompet, Chennai', '154/2 postal Nagar, chrompet, Chennai', '2306220019', '27', '1', 'upload_files/candidate_tracker/34771888885_CV 2023.pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-22 06:36:42', 101, '2023-06-27 02:54:24', 0, NULL, 1),
(13389, 'Sarath', '5', '6369819138', '8754383403', 'saraththillainathan844@gmail.com', '2002-03-09', 21, '2', '2', 'Manikandan', 'T.k.s construction', 200000.00, 2, 0.00, 20000.00, 'Kumbakonam', 'Kumbakonam', '2306230001', '27', '1', 'upload_files/candidate_tracker/4846417061_CV_2023040418365883.doc', NULL, '1', '2023-06-23', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 10:04:42', 101, '2023-06-27 03:01:13', 0, NULL, 1),
(13390, 'Sriharan', '13', '9360632998', '9952836477', 'sriharantamilselvan@gmail.com', '2002-05-06', 21, '3', '2', 'Thamizh selvan', 'Typist', 10000.00, 0, 12000.00, 20000.00, 'Mannargudi', 'Mannargudi', '2306230002', '', '2', 'upload_files/candidate_tracker/99251938644_SRIHARAN56.pdf', NULL, '1', '2023-06-23', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to come for final round by next week with Gokul', '2', '1', '', '1', '3', '', '2', '2023-06-28', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 10:56:04', 101, '2023-06-23 07:47:36', 0, NULL, 1),
(13391, 'Sheik Riyas H', '23', '9360606179', '7402475636', 'sheikriyas92@gmail.com', '2002-05-29', 21, '2', '2', 'Hyderali M', 'Driver', 15000.00, 0, 0.00, 300000.00, 'Thanjavur', 'Chennai', '2306230003', '27', '1', 'upload_files/candidate_tracker/38189957568_RESUME_.pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much open for TxxampC if he comes back let us try fresher no basics', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 10:56:18', 101, '2023-06-27 02:50:07', 0, NULL, 1),
(13392, 'Keerthana R', '5', '9150628866', '', 'Keerthukarpagam@gmail.com', '2002-12-15', 20, '2', '2', 'Ravichandran', 'Driver', 1200000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2306230004', '27', '1', 'upload_files/candidate_tracker/4443323577_KEERTHANARAVICHANDRAN(1).pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 11:19:31', 101, '2023-06-27 02:55:52', 0, NULL, 1),
(13393, 'Sivaramakrishnan', '13', '9840492635', '', 'sanjaysiva9840@gmail.com', '2002-02-16', 21, '2', '2', 'Thamaraiselvan', 'MTC', 1500000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2306230005', '27', '1', 'upload_files/candidate_tracker/58297177893_KEERTHANARAVICHANDRAN(1).pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Basics not suitable in our positions', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 11:23:33', 101, '2023-06-27 02:58:28', 0, NULL, 1),
(13394, 'Sathish Kumar', '13', '8838387322', '', 'sathishrsk2001@gmail.com', '2001-07-16', 21, '6', '2', 'Rajadurai', 'Tailor', 15000.00, 1, 0.00, 20000.00, 'tuticorin', 'Tuticorin', '2306230006', '', '1', 'upload_files/candidate_tracker/99788775581_Resume (8).pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-23 12:00:07', 1, '2023-06-23 12:10:07', 0, NULL, 1),
(13395, 'Hemamalini G', '22', '9790903453', '9940649778', 'hemamalinigunasekaran950@gmail.com', '2002-10-02', 20, '3', '2', 'Deivanayaki G', 'Home maker', 50000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2306230007', '', '1', 'upload_files/candidate_tracker/57716751363_Hemamalini Resume.docx', NULL, '1', '2023-06-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Ideas In Digital Marketing Not Open For Telecalling ', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-23 12:00:52', 1, '2023-06-23 12:12:37', 0, NULL, 1),
(13396, 'Rekha G', '22', '7338903378', '', 'rekhagopal2162@gmail.com', '2002-06-21', 21, '3', '2', 'Gopal k', 'Car driver', 15000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2306230008', '', '1', 'upload_files/candidate_tracker/40881141688_Rekha G resume.docx', NULL, '1', '2023-06-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No ideas in digital marketing not open for telecalling ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-23 12:01:51', 1, '2023-06-23 12:09:18', 0, NULL, 1),
(13397, 'S. Thenmozhi', '14', '7305544783', '9994219743', 'thenmozhisubburaj@gmail.com', '2002-07-30', 20, '2', '2', 'S. Subburaj', 'Garden maintenance', 175000.00, 0, 0.00, 3.00, '3/276A Veeranam Road, Ganapathy Nagar, Kelambakkam', '3/276 veeranam road, ganapathy nagar, kelambakkam', '2306230009', '27', '1', 'upload_files/candidate_tracker/17625006983_IMG-20230617-WA0008.pdf', NULL, '3', '2023-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long Distance no basic skills not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 12:09:52', 101, '2023-06-27 03:00:05', 0, NULL, 1),
(13398, 'S.Renuga', '5', '9150351101', '', 'renukarenuka72729@gmail.com', '2003-06-11', 20, '2', '2', 'Santha kumar', 'Business', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2306230010', '27', '1', 'upload_files/candidate_tracker/49255038822_CV_2023051008200329.pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance not much open up will not sustain and not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 12:34:40', 101, '2023-06-27 02:52:01', 0, NULL, 1),
(13399, 'R Mogana Ramanan', '25', '9150998928', '', 'karateramanan@gmail.com', '2003-06-07', 20, '3', '2', 'Ravikumar', 'Karate instructor', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2306230011', '', '1', 'upload_files/candidate_tracker/54636117545_CV_2023060918364071.pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Calling profile Holding an offer for 2.5LPA will not sustain ', '8', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-23 12:35:15', 1, '2023-06-23 12:50:41', 0, NULL, 1),
(13400, 'Janapriyan', '13', '7094684525', '', 'janajana6527@gmail.com', '1999-12-11', 23, '6', '2', 'Karthikeyan', 'Fresher', 7000.00, 0, 0.00, 15000.00, '3/128,kudi street, Kopurappatti, Manachanalur', '3/128,Kudi Street, Kopurappatti, Manachanalur', '2306230012', '', '1', 'upload_files/candidate_tracker/78403573585_JANAPRIYAN K resume3.docx', NULL, '1', '2023-06-23', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to come back with his confirmation on TxxampC', '2', '1', '0', '1', '8', '0', '2', '2023-06-28', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-23 12:37:25', 1, '2023-06-23 12:48:17', 0, NULL, 1),
(13401, 'Priyadharshini.C', '5', '7397390670', '', 'priyadharshini1462003@gmail.com', '2003-06-14', 20, '2', '2', 'Chandrasekaran', 'Lic agent', 18000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2306230013', '27', '1', 'upload_files/candidate_tracker/40298034367_CV_2023051008315779.pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 12:47:31', 101, '2023-06-27 02:49:33', 0, NULL, 1),
(13402, 'RAGHUL.K', '13', '7358414334', '9884392329', 'raghulkalai2002@gmail.com', '2002-11-04', 20, '3', '2', 'KALAIVANAN.R', 'Electrician', 18000.00, 1, 0.00, 20000.00, 'Pallikaranai, Chennai', 'Pallikaranai, Chennai', '2306230014', '', '1', 'upload_files/candidate_tracker/2635985763_RAGHUL.K.pdf', NULL, '1', '2023-06-23', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to come back with his confirmation on TxxampC', '2', '2', '0', '1', '8', '0', '2', '2023-06-28', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-23 12:47:56', 1, '2023-06-23 01:22:06', 0, NULL, 1),
(13403, '', '0', '9150368158', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306230015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-23 12:48:15', 0, NULL, 0, NULL, 1),
(13404, 'R Mogana Ramanan', '5', '9150998929', '', 'karateramanan@gmail.com', '2003-06-07', 20, '2', '2', 'Ravikumar R', 'Karate instructor', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2306230016', '27', '1', 'upload_files/candidate_tracker/47634392218_CV_2023060918364071.pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance not open for telecalling Sales not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 12:53:56', 101, '2023-06-27 02:48:59', 0, NULL, 1),
(13405, 'Vignesh J', '13', '9941751109', '9840737821', 'Jkvickysvk3102@gmail.com', '1998-12-31', 24, '3', '2', 'Kamala janakiraman', 'Shoe maker', 16000.00, 1, 0.00, 20000.00, 'Chennai', 'Jafferkhanpet', '2306230017', '', '1', 'upload_files/candidate_tracker/30564640628_VigneshJ .pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic Skills if he comes after learning we can give a try', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-23 01:22:48', 1, '2023-06-23 01:26:47', 0, NULL, 1),
(13406, '', '0', '7358424338', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306230018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-23 02:21:41', 0, NULL, 0, NULL, 1),
(13407, 'sahana hr', '5', '9019402851', '9481077328', 'hrsanusahana1999@gmail.com', '1999-11-17', 23, '3', '2', 'vasantha tk', 'homemaker', 25000.00, 0, 0.00, 30000.00, 'pension mohalla hoesaline road hassan', 'pension mohalla hoesaline road hassan', '2306230019', '', '1', 'upload_files/candidate_tracker/25780887867_SAHANA HR NEW RESUME (1) (1) (2).pdf', NULL, '2', '2023-06-23', 0, '', '3', '59', '2023-07-03', 240000.00, '', '5', '1970-01-01', '1', 'Selected for Esales Team Sudharsan team', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 02:42:01', 60, '2023-06-27 08:01:21', 0, NULL, 1),
(13408, 'K Ayyanar', '5', '9080117581', '9159061675', 'ayyanarabi007@gmail.com', '2003-11-12', 19, '2', '2', 'P Krishnan', 'Watch man', 12000.00, 3, 0.00, 18000.00, 'Tharamani', 'Tharamani', '2306230020', '27', '1', 'upload_files/candidate_tracker/54331668411_resume.abi.pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 03:00:13', 101, '2023-06-27 02:51:03', 0, NULL, 1),
(13409, 'Sasikumar.k', '5', '7305462882', '9791075798', 'sasikumar28082@gmail.com', '2002-08-28', 20, '2', '2', 'Kannan.B', 'Painter', 15000.00, 2, 0.00, 18000.00, 'Perungudi', 'Perungudi', '2306230021', '27', '1', 'upload_files/candidate_tracker/3379666362_Resume_Sasi_Format7.pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 03:12:30', 101, '2023-06-27 02:50:38', 0, NULL, 1),
(13410, 'K.Kalaiyarasi', '5', '8124699679', '9087979263', 'sathiyakathick@gmail.com', '2003-06-12', 20, '2', '2', 'E.Karthick,K.Sathiya', 'Daily Wages', 15000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2306230022', '27', '1', 'upload_files/candidate_tracker/38897470447_Resume_Kalai_Format7 (2).pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 03:12:36', 101, '2023-06-27 02:52:20', 0, NULL, 1),
(13411, 'Syed mohamed abdulla', '4', '9840865862', '', 'syedcrazy984019@gmail.com', '2003-03-30', 20, '2', '2', 'Ramjan kani', 'Cooking', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai saidapet', '2306230023', '27', '1', 'upload_files/candidate_tracker/20997999650_CV_2023051222110743.pdf', NULL, '1', '2023-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non Voice', '1', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-23 03:36:33', 101, '2023-06-27 03:09:31', 0, NULL, 1),
(13412, '', '0', '8925422031', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306230024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-23 04:21:04', 0, NULL, 0, NULL, 1),
(13413, 'Jasmine Thaslima. M', '4', '7401354617', '6374632838', 'jasminethaslima2003@gmail', '2003-01-25', 20, '2', '2', 'K.A.Mohammed meera kani', 'Tailor', 96000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2306230025', '1', '1', 'upload_files/candidate_tracker/9966429997_Jasmine_resume_03-Jun-23_10.07.17.pdf', NULL, '1', '2023-06-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles ', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-23 07:09:48', 85, '2023-06-24 11:55:22', 0, NULL, 1),
(13414, 'Kamali v', '5', '7904496123', '', 'kamalikamali25926@gmail.com', '2003-06-29', 19, '2', '2', 'Tamil selvi v', 'House wife', 10000.00, 1, 0.00, 1.00, 'Shenoy Nagar', 'Shenoy Nagar', '2306230026', '1', '1', 'upload_files/candidate_tracker/32022560791_V Kamali Resume.pdf', NULL, '1', '2023-06-24', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Doubt To Join', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-23 11:43:27', 101, '2023-06-24 10:06:15', 0, NULL, 1),
(13415, 'Abishiek P', '4', '9176244796', '9176370660', 'Abishiek23092003@gmail.com', '2003-09-23', 19, '2', '2', 'Pandian.G.S', 'Watch man', 8000.00, 2, 0.00, 20000.00, 'Injambakkam,Chennai', 'Injambakkam,Chennai', '2306240001', '27', '1', 'upload_files/candidate_tracker/25082507648_abi 202.pdf', NULL, '1', '2023-06-24', 0, '', '3', '59', '2023-07-03', 151584.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team in Consultant Role Too long Distance If he joins let us try', '1', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-24 10:00:31', 60, '2023-06-30 05:48:26', 0, NULL, 1),
(13416, 'A.vikram', '33', '9363068551', '8973478084', 'Vikramak949830@gmail.com', '2002-07-07', 20, '3', '2', 'Annamalai.k', 'Auto driver', 6000.00, 2, 0.00, 20000.00, 'Mandaveli chennai', 'Mandaveli chennai', '2306240002', '', '1', 'upload_files/candidate_tracker/67024498008_VIKRAM RESUME-6.docx', NULL, '1', '2023-06-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Calling activities Fresher in accounts not much strong with the basics communication Average', '4', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-24 10:05:43', 1, '2023-06-24 10:09:19', 0, NULL, 1),
(13417, 'Suryaprakash V', '23', '6374442643', '', 'surya1962003@gmail.com', '2003-06-19', 20, '3', '2', 'Venkatesan J', 'Student', 12000.00, 1, 0.00, 150000.00, 'Chrompet,Chennai', 'Chrompet,Chennai', '2306240003', '', '1', 'upload_files/candidate_tracker/54490620199_SURYA RESUME (1).pdf', NULL, '1', '2023-06-24', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come back wiht his confirmation on the TxxampC', '2', '2', '0', '1', '8', '0', '2', '2023-07-03', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-24 10:20:00', 1, '2023-06-24 10:25:48', 0, NULL, 1),
(13418, 'Ganesh r', '4', '9940287154', '', 'Iamganesh2002@gmail.com', '2002-08-06', 20, '1', '2', 'Ravi', 'Tea shop', 7000.00, 1, 0.00, 12000.00, 'Pattukkottai', 'Pattukkottai', '2306240004', '', '1', 'upload_files/candidate_tracker/49415649986_Ganesh+Resume+(1).pdf', NULL, '1', '2023-06-24', 0, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-24 12:02:10', 1, '2023-06-24 12:08:31', 0, NULL, 1),
(13419, 'Lakshana.p', '4', '8838635960', '', 'ammulakshana517@gmail.com', '2002-07-05', 20, '1', '2', 'Periyasami', 'Labour', 20000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2306240005', '', '1', 'upload_files/candidate_tracker/31717788593_lakshana resume.doc.docx', NULL, '1', '2023-06-24', 0, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-24 12:02:19', 1, '2023-06-24 12:09:41', 0, NULL, 1),
(13420, 'Girisha JB', '31', '9345609281', '', 'girishajb2003@gmail.com', '2003-06-01', 20, '6', '2', 'Jayanthi M', 'Business', 15000.00, 1, 0.00, 30000.00, 'Erode', 'Chennai', '2306240006', '', '1', 'upload_files/candidate_tracker/81350507722_GIRISHAJB_RESUME.pdf', NULL, '1', '2023-06-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'have internship exp and not much comfort with 3yrs SA If she comeback let us try', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-24 01:25:15', 1, '2023-06-24 01:29:14', 0, NULL, 1),
(13421, '', '0', '7092412209', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306240007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-24 01:40:27', 0, NULL, 0, NULL, 1),
(13422, 'S. syed Jaffer Ali', '6', '9025756925', '', 'syedjaffer7244@gmail.com', '1998-11-08', 24, '2', '2', 'Syed Jalaldeen', 'Electrition', 20000.00, 2, 20000.00, 23000.00, 'Madurai', 'Vadapalani, chennai', '2306240008', '1', '2', 'upload_files/candidate_tracker/40154417993_Jaffers resume.pdf', NULL, '1', '2023-06-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not suitable for voice processwill not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-24 02:12:40', 101, '2023-06-24 02:33:49', 0, NULL, 1),
(13423, 'Sudharsan g', '20', '8838408937', '9597865346', 'Sudharsanroki2013@gmail.com', '1998-07-25', 24, '2', '2', 'Govindaraj', 'Welding', 30000.00, 2, 23000.00, 25000.00, 'Madurai', 'Vadapalani', '2306240009', '1', '2', 'upload_files/candidate_tracker/21016582550_SUDHARSAN_DOC.1_(1)[1].docx', NULL, '1', '2023-06-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Pronunciation no clarity in speech will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-24 02:16:03', 101, '2023-06-24 02:34:08', 0, NULL, 1),
(13424, 'Karthick u', '11', '7824044549', '', 'karthickaju@gmail.com', '2000-11-01', 22, '2', '2', 'Amudha u', 'House wife', 20000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2306240010', '27', '1', 'upload_files/candidate_tracker/26359613958_RESUME_karthi.docx', NULL, '1', '2023-06-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-24 03:20:10', 101, '2023-06-27 02:46:23', 0, NULL, 1),
(13425, 'K Lokesh', '11', '9344225439', '', 'lokeshrahul38823@gmail.com', '2001-05-22', 22, '2', '2', 'E.Krishnan', 'Tea stall', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2306240011', '27', '1', 'upload_files/candidate_tracker/70728950512_RESUME.pdf', NULL, '1', '2023-06-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much good with the communication too long distance not suitable for our roles', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-24 03:20:39', 101, '2023-06-27 02:46:38', 0, NULL, 1),
(13426, 'sasitharan', '5', '8825799861', '', 'sasi3092001@gmail.com', '2001-09-30', 21, '2', '2', 'veerapan', 'clerk', 12000.00, 1, 0.00, 200000.00, 'mannady', 'mannady', '2306240012', '1', '1', 'upload_files/candidate_tracker/99703790954_DOC-20230617-WA0018..pdf', NULL, '1', '2023-06-26', 0, '', '3', '59', '2023-07-05', 204000.00, '', '5', '1970-01-01', '2', 'SElected for Syed Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-24 06:25:17', 60, '2023-06-29 05:53:53', 0, NULL, 1),
(13427, 'Naveen', '5', '9363402979', '9790596681', 'naveenramadevan@gmail.com', '2000-03-21', 23, '2', '2', 'Ramadevan', 'Tailor', 20000.00, 2, 20000.00, 25000.00, 'Tiruppur', 'Chennai', '2306260001', '1', '2', 'upload_files/candidate_tracker/6342417875_naveen ramadevan.pdf', NULL, '1', '2023-06-26', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in Insurance Domain ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-26 10:45:16', 85, '2023-06-26 01:35:01', 0, NULL, 1),
(13428, 'Mari Muthu', '13', '9344673248', '', 'jmarimuthu143@gmail.com', '2002-06-10', 21, '3', '2', 'Jeyaram', 'Former', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2306260002', '', '1', 'upload_files/candidate_tracker/90778205000_Resumemari.pdf', NULL, '1', '2023-06-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java Only', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-26 10:46:41', 1, '2023-06-26 11:13:54', 0, NULL, 1),
(13429, 'Divakar Chereddy', '13', '8106537063', '9705327984', 'chereddydivakar@gmail.com', '2001-06-14', 0, '6', '2', 'Venkateswarlu', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Nellore', 'Nellore', '2306260003', '', '1', 'upload_files/candidate_tracker/88512658083_divakar resume.docx', NULL, '1', '2023-06-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to learn a lot not much comfort in TxxampC will not sustain and language barrier', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-26 10:47:06', 1, '2023-06-26 11:02:12', 0, NULL, 1),
(13430, 'Johndi Rhodse.G', '13', '9087821699', '', 'johndirhodes@gmail.com', '1998-11-24', 24, '3', '2', 'Gnanasekaran.v', 'Electrician', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Kundrathur', '2306260004', '', '1', 'upload_files/candidate_tracker/36265500151_johndi upd 12apr.docx', NULL, '1', '2023-06-26', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '2', 'Rejected in aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-26 11:36:17', 1, '2023-06-26 11:59:15', 0, NULL, 1),
(13431, 'Sivakesavan s', '13', '6374724900', '', 'kesavansiva515@gmail.com', '1998-05-15', 25, '3', '2', 'Sivanandi', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Velachery', '2306260005', '', '1', 'upload_files/candidate_tracker/72858138166_DOC-20230319-WA0005..pdf', NULL, '1', '2023-06-26', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '1', 'rejected in aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-26 11:37:28', 1, '2023-06-26 11:57:19', 0, NULL, 1),
(13432, 'Surya M', '31', '8680019223', '', 'Suriyamohan47@outlook.com', '1998-07-04', 24, '3', '2', 'Parent', 'Cab driver', 24000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2306260006', '', '1', 'upload_files/candidate_tracker/99037454513_Surya_M_BE_Frontendpdf.docx', NULL, '1', '2023-06-26', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '1', 'rejected in aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-26 11:51:23', 1, '2023-06-26 12:22:40', 0, NULL, 1),
(13433, 'Surya.s', '13', '7305432275', '9444203919', 'suryasuuru@gmail.com', '2002-03-06', 21, '3', '2', 'Sivaraj', 'Driver', 20000.00, 1, 0.00, 300000.00, 'No:03,S.S.Sahib Street, Aminjikarai, Chennai 29', 'No:03,S.S.Sahib Street, Aminjikarai, Chennai 29', '2306260007', '', '1', 'upload_files/candidate_tracker/54015547823_resume 4.doc', NULL, '1', '2023-06-26', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Should come after a month post learning if he comes let us try', '2', '1', '0', '1', '8', '0', '2', '2023-07-28', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-26 11:51:52', 1, '2023-06-26 12:14:10', 0, NULL, 1),
(13434, 'VIKNESWARAN S', '31', '9159561882', '', 'viknesw314@gmail.com', '2003-02-13', 20, '3', '2', 'Shanmugam', 'Farmer', 20000.00, 0, 0.00, 300000.00, 'Thiruvarur', 'Thiruvanmiyur', '2306260008', '', '1', 'upload_files/candidate_tracker/37486053370_vikneswaran RESUME.docx', NULL, '1', '2023-06-26', 0, '', '5', '107', NULL, 0.00, '', '0', NULL, '1', 'rejected in aptitude', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-26 11:51:53', 1, '2023-06-26 12:10:34', 0, NULL, 1),
(13435, 'Pavithra', '4', '9003218396', '', 'pavithra260602@gmail.com', '2003-02-19', 20, '2', '2', 'Rangan.k', 'Milk business', 90000.00, 1, 0.00, 12000.00, '24/23 railway station road thiruvttiyur Chennai', '24/23 railway station road thiruvttiyur Chennai', '2306260009', '27', '1', 'upload_files/candidate_tracker/23704742047_Pavithra resume.pdf', NULL, '1', '2023-06-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left wothout attending the interview', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-26 11:54:19', 101, '2023-06-27 02:47:54', 0, NULL, 1),
(13436, 'Priyadharshini .v', '5', '9150724602', '9840806307', 'priyalavanya602@gmail.com', '2003-08-29', 19, '2', '2', 'Venkatesan r', 'Auto driver', 92.00, 1, 0.00, 12000.00, 'No,44/66 old Amaranji puram royapuram', 'No.44/66 old amaranji puram royapuram', '2306260010', '27', '1', 'upload_files/candidate_tracker/97518027794_Priyadharshini.pdf', NULL, '1', '2023-06-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice only', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-26 11:55:04', 101, '2023-06-27 02:47:23', 0, NULL, 1),
(13437, 'Lakshmi chellammal', '5', '8838041303', '9941449807', 'V.lakshmichellammal@gmail.com', '1999-10-21', 23, '2', '2', 'Vijaykumar', 'Business', 70000.00, 1, 30000.00, 35000.00, 'chennai', 'Chennai', '2306260011', '1', '2', 'upload_files/candidate_tracker/13476646228_Lakshmi.pdf.pdf', NULL, '1', '2023-06-26', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-26 01:51:06', 85, '2023-06-26 03:44:48', 0, NULL, 1),
(13438, 'Madhubalan. R', '5', '8015463882', '', 'rammadhubalan@gmail.com', '2003-01-20', 20, '2', '2', 'Ramdhaas', 'Driver', 15000.00, 1, 19000.00, 20000.00, 'Tirupatur', 'Chennai', '2306260012', '1', '2', 'upload_files/candidate_tracker/16700530961_madhubalan. R (resume) (1).pdf', NULL, '1', '2023-06-26', 0, '', '3', '59', '2023-06-29', 225000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team Staff Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-26 02:54:20', 60, '2023-06-29 05:47:13', 0, NULL, 1),
(13439, 'Eniyan Sambath', '22', '8072413128', '', 'ssambath23@gmail.com', '1989-07-30', 33, '3', '1', 'Selva Kumar', 'Farmer', 20.00, 2, 40000.00, 60000.00, 'Chennai', 'Chennai', '2306260013', '', '2', 'upload_files/candidate_tracker/13775416917_DOC-20230623-WA0000..pdf', NULL, '1', '2023-06-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-26 02:55:16', 1, '2023-06-26 03:11:52', 0, NULL, 1),
(13440, 'anusuya', '4', '9940954758', '', 'anusuyaalagu@gmail.com', '1999-05-24', 24, '2', '2', 'alaguraja', 'farmer', 80000.00, 1, 15000.00, 16000.00, 'theni', 'chennai', '2306260014', '1', '2', 'upload_files/candidate_tracker/63085342475_anusuya resume.pdf', NULL, '1', '2023-06-26', 0, '', '3', '59', '2023-07-03', 176844.00, '', '5', '1970-01-01', '2', 'Slected for Banu Team in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-26 03:03:04', 60, '2023-06-30 05:35:07', 0, NULL, 1),
(13441, 'Hindu prasath', '5', '9566366671', '9585223093', 'hinpras1866@gmail.com', '1996-06-18', 27, '2', '2', 'Selvam', 'Ex-tntpatc', 300000.00, 1, 18000.00, 25000.00, 'Vellore', 'Vellore', '2306260015', '1', '2', 'upload_files/candidate_tracker/18505795973_Update resume .pdf', NULL, '1', '2023-06-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sustainability will not sustain and handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-26 05:12:00', 101, '2023-06-27 10:11:49', 0, NULL, 1),
(13442, '', '0', '9677070276', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306260016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-26 05:17:35', 0, NULL, 0, NULL, 1),
(13443, 'Sowmiya. B', '5', '9360451304', '9360451304', 'sowmiya9922@gmail.com', '1999-11-22', 23, '2', '2', 'Balasubramani. C', 'Printing', 12000.00, 1, 15000.00, 18000.00, 'Ayanavaram', 'Ayanavaram', '2306260017', '1', '2', 'upload_files/candidate_tracker/59883064964_SOWMIYA.docx', NULL, '1', '2023-06-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Nt openf for SAles callings', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2023-06-26 05:23:46', 154, '2025-05-15 01:09:46', 0, NULL, 1),
(13444, 'Sujithakumaresan', '6', '7904544918', '8946062860', 'sujitha11.31@gmail.com', '2001-03-11', 22, '2', '2', 'P.kumaresan', 'Photo grapher', 15000.00, 0, 0.00, 18000.00, 'Dindigul', 'Chennai', '2306260018', '1', '1', 'upload_files/candidate_tracker/96311236198_document 5.pdf', NULL, '1', '2023-06-27', 0, '', '3', '59', '2023-07-03', 164208.00, '', '2', '1970-01-01', '2', 'Selected for Syed Team in Consultant Role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'Not Comfort with fresher salary Exp high Cost and there is no reply later', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-06-26 06:37:16', 60, '2023-06-30 05:44:04', 0, NULL, 1),
(13445, 'BALASUNDHAR G', '4', '9360417932', '', 'gksundhar2001@gmail.com', '2001-07-06', 21, '2', '2', 'Ganeshamoorthi N', 'Farmer', 10000.00, 1, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2306260019', '1', '1', 'upload_files/candidate_tracker/17429277316_BALASUNDHAR G .pdf', NULL, '1', '2023-06-28', 0, '', '3', '59', '2023-07-03', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Consultant role in Thanjavur', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-26 07:39:11', 60, '2023-06-30 05:37:02', 0, NULL, 1),
(13446, 'vaira muthu', '5', '9176737335', '', 'rjranjith791@gmail.com', '1993-03-30', 30, '2', '1', 'saranya', 'house wife', 35000.00, 1, 22000.00, 27000.00, 'chennai', 'chennai', '2306260020', '1', '2', 'upload_files/candidate_tracker/94439082048_Vaira muthu.docx', NULL, '1', '2023-06-28', 20, '', '3', '59', '2023-07-17', 324000.00, '', '5', '1970-01-01', '2', 'Selected for Manikandan Team in staff Role', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-26 09:55:32', 60, '2023-07-13 07:02:59', 0, NULL, 1),
(13447, '', '0', '9910121347', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-27 09:28:34', 0, NULL, 0, NULL, 1),
(13448, 'Ashwini Yokeshvaran', '5', '7305737003', '9840160320', 'vickyashwini6@gmail.com', '2002-10-22', 20, '2', '1', 'Vicky Yokeshwaran', 'Gym Trainer', 30000.00, 1, 19000.00, 19000.00, 'Chennai', 'Chennai', '2306270002', '1', '2', 'upload_files/candidate_tracker/85544240884_Resume - Ashwini Chetty-1.docx', NULL, '1', '2023-06-27', 1, '', '3', '59', '2023-07-03', 189480.00, '', '3', '2023-08-09', '1', 'Selected for Syed Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-27 10:00:40', 60, '2023-07-01 12:03:57', 0, NULL, 1),
(13449, 'Raja sekar', '6', '9384146179', '', 'rajasekarmsd07@gmail.com', '1999-08-16', 23, '2', '2', 'Mahendiran', 'Farmer', 15000.00, 1, 12.00, 16.00, 'Jayankondam', 'Shenoy Nagar', '2306270003', '1', '2', 'upload_files/candidate_tracker/18780569092_Raja Resume .pdf', NULL, '1', '2023-06-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 not much open in sales looking for salary growht will not handle our work pressire', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-27 10:35:39', 85, '2023-06-27 10:54:47', 0, NULL, 1),
(13450, 'vinith', '14', '8220950250', '', 'vinivinith327241@gmail.com', '1998-05-09', 25, '3', '2', 'veerasu', 'Farmer', 25000.00, 1, 0.00, 15000.00, 'thanjavur', 'adyar', '2306270004', '', '1', 'upload_files/candidate_tracker/64893347669_vinithnew.pdf - Documents copy.pdf', NULL, '1', '2023-06-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java openings only', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-27 11:25:07', 1, '2023-06-27 11:32:38', 0, NULL, 1),
(13451, '', '0', '9884587671', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306270005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-27 11:49:13', 0, NULL, 0, NULL, 1),
(13452, 'Srisanjay v', '6', '7010361411', '9962890466', 'Srisanjay3030@gmail.com', '2002-07-30', 20, '1', '2', 'Vijaya Kumar', 'Leather technician', 17000.00, 2, 0.00, 15000.00, 'No 07 ETM building 6th cross street', 'Amanjikari', '2306270006', '', '1', 'upload_files/candidate_tracker/42065170694_Sanjay Resume.pdf', NULL, '2', '2023-06-27', 0, 'P1370', '3', '59', '2023-06-29', 195000.00, '', '5', '1970-01-01', '1', 'Selected for Staff Role Syed Team', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-27 12:44:16', 60, '2023-06-29 11:33:16', 0, NULL, 1),
(13453, 'kamesh', '5', '9080039224', '9962823139', 'mohankamesh4@gmail.com', '2002-10-26', 20, '1', '2', 'mohan', 'own bussines', 20000.00, 1, 0.00, 15000.00, 'east vannier st', 'kk nagar', '2306270007', '', '1', 'upload_files/candidate_tracker/13923283335_KAMESH RESUME.pdf', NULL, '1', '2023-06-28', 0, 'p1370', '3', '59', '2023-06-30', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-27 12:44:19', 60, '2023-06-30 10:45:51', 0, NULL, 1),
(13454, 'Fayana Fathima S', '5', '9176741202', '7358644244', 'fathimafayana72@gmail.com', '1999-06-12', 24, '1', '2', 'Syed Shafiuddin', 'Private Service', 35000.00, 2, 23000.00, 23000.00, 'Mount Road', 'Mount Road', '2306270008', '', '2', 'upload_files/candidate_tracker/39735103246_Fayana resume new .pdf', NULL, '1', '2023-06-27', 1, '77776', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in CASA grande sales salry is very high exp is also high of she comes back let us try for B2B', '5', '1', '', '1', '8', '', '2', '2023-06-29', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-27 12:49:32', 101, '2023-06-27 03:51:05', 0, NULL, 1),
(13455, 'A sara', '5', '7305686591', '7358421030', 'Saravaayadi159@gmail.com', '2002-09-09', 20, '2', '2', 'Arul anand', 'Mason', 65000.00, 1, 0.00, 16500.00, 'No 1028 anna street reddy kuppam kanathur chennai', 'No 1028 anna street redddy kanathur chennai', '2306270009', '1', '1', 'upload_files/candidate_tracker/43844498995_A sara .pdf', NULL, '1', '2023-06-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance up and down 50kms will not sustain in our roles fresher', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-27 04:00:19', 104, '2023-06-28 10:30:55', 0, NULL, 1),
(13456, 'M S Mohan Raj', '5', '6381159451', '8122798689', 'mohanrajms7302@gmail.com', '1998-11-13', 24, '2', '1', 'Sandhiya', 'House wife', 15000.00, 1, 0.00, 20000.00, 'Perambur', 'Perambur', '2306270010', '1', '1', 'upload_files/candidate_tracker/99594378566_pj resume 3 (1).pdf', NULL, '1', '2023-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suitable for our voice process have exp in non voice and he can handle only that will not sustain and handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-27 04:31:18', 101, '2023-07-05 10:35:11', 0, NULL, 1),
(13457, 'Reshma n a', '5', '6374517606', '9600087410', 'Nandhipogureshma@gmail.com', '2000-07-12', 22, '3', '2', 'Yashika N A', 'B.A. English Literature', 15.00, 1, 16.00, 18.00, 'Kilpauk', 'Kilpauk', '2306270011', '', '2', 'upload_files/candidate_tracker/66207285485_pdf_converter_202304055622.pdf', NULL, '1', '2023-06-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Final Round Reject by Gopi mistkely moved as a shortlisted', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-27 05:08:46', 1, '2023-06-28 03:17:13', 0, NULL, 1),
(13458, 'S. Yoganath', '5', '8925264190', '', 'Yoganath619@gmail.com', '2003-01-29', 20, '2', '2', 'R.Saivaraj', 'Real estate', 8000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2306270012', '1', '1', 'upload_files/candidate_tracker/83784412498_CV_2023062304570376.pdf', NULL, '1', '2023-06-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Multipleoffer holding an interview with byjus will not sustain in our roles for a long', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-27 05:14:15', 104, '2023-06-28 10:31:05', 0, NULL, 1),
(13459, '', '0', '8248835508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306270013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-27 05:19:31', 0, NULL, 0, NULL, 1),
(13460, 'Akash.N', '5', '9962862311', '9092767625', 'akashsurya34@gmail.com', '1999-11-23', 23, '2', '2', 'Parents', 'Business', 50000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2306280001', '1', '1', 'upload_files/candidate_tracker/14079242250_Resume N AKASH.pdf', NULL, '1', '2023-06-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much job importance Salary Exp is very high not much quality for RM level will not handle the pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-28 08:15:17', 101, '2023-06-28 04:41:11', 0, NULL, 1),
(13461, 'Kumaravel BM', '13', '9360520932', '', 'kumarabm11@gmail.com', '2001-12-30', 0, '6', '2', 'Muralidharan B', 'Electrician', 48000.00, 1, 0.00, 25000.00, '16th, othavadai Street, kaveripakkam, Ranipet.', 'Kaveripakkam', '2306280002', '', '1', 'upload_files/candidate_tracker/12052366689_kumara502.pdf', NULL, '1', '2023-06-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No ideas in JS need time to learn', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-28 10:05:12', 1, '2023-06-28 10:08:24', 0, NULL, 1),
(13462, 'Pavithra C', '13', '7397153051', '9786883925', 'paviballer77@gmail.com', '2000-02-02', 23, '3', '2', 'Chandrasekar', 'Business', 120000.00, 1, 0.00, 250000.00, 'Dindigul', 'Chennai', '2306280003', '', '1', 'upload_files/candidate_tracker/36535566527_Adobe Scan Jun 27, 2023.pdf', NULL, '1', '2023-06-28', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Holding several offers very talkative if she come back let us try', '2', '1', '0', '1', '8', '0', '2', '2023-07-03', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-28 12:59:37', 1, '2023-06-28 01:02:24', 0, NULL, 1),
(13463, 'Janagiraman. D', '5', '6379080483', '6379398808', 'janagiraman04453@gmail.com', '2001-01-24', 22, '1', '2', 'Rajeshwari. D', 'House keeping', 15.00, 1, 15.00, 18.00, 'Vyasarbadi', 'Vyasarbadi', '2306280004', '', '2', 'upload_files/candidate_tracker/31777857546_JANAKI RAMAN-1.pdf', NULL, '1', '2023-06-28', 0, 'P1287', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Low Profile internal refernece fr Kannan Team kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-28 02:34:37', 101, '2023-06-28 04:43:56', 0, NULL, 1),
(13464, 'Reshma sheikh', '5', '8754536217', '6379080483', 'reshma170899@gmail.com', '1999-08-17', 23, '3', '2', 'Hasina', 'House wife', 10000.00, 3, 16000.00, 18000.00, 'Chennai', 'Chennai', '2306280005', '', '2', 'upload_files/candidate_tracker/81767964140_RESHMA.pdf', NULL, '1', '2023-06-28', 1, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate ok , pls move', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-28 02:57:40', 101, '2023-06-28 04:43:43', 0, NULL, 1),
(13465, '', '0', '6382466576', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306280006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-28 04:55:12', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13466, 'Divya bharathi .S', '5', '7395919113', '9962714831', 'divyabharathisenthilkumar2001@gmail.com', '2001-01-01', 22, '4', '2', 'Senthilkumar. C', 'Auto driver', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2306280007', '', '1', 'upload_files/candidate_tracker/7644639204_Resume 12062023 -1.pdf', NULL, '1', '2023-06-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-28 06:50:40', 104, '2023-06-30 06:22:44', 0, NULL, 1),
(13467, 'Heera. P', '5', '9025549322', '', 'heeramalliesh2003@gmail.com', '2003-07-01', 19, '2', '2', 'Malleeswary. P', 'Admin secretary', 25000.00, 0, 0.00, 18000.00, '131 Devi flats vivekananda nagar main road ch-99', '131 Devi Flats Vivekananda Nagar Main Road Ch-99', '2306280008', '1', '1', 'upload_files/candidate_tracker/28668101678_Heera P resume.pdf', NULL, '1', '2023-06-30', 0, '', '3', '59', '2023-07-10', 164208.00, '', '', '1970-01-01', '2', 'Selected for Gopi team in consultant Role', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-28 06:54:43', 101, '2023-06-29 05:27:21', 0, NULL, 1),
(13468, 'Kalaiyarasan G', '5', '8531047754', '', 'brilliantkalaiyarasan@gmail.com', '2001-07-21', 21, '2', '2', 'Guru Bala murugan', 'Small business', 25000.00, 1, 0.00, 20000.00, 'Ponneri', 'Ponneri', '2306280009', '1', '1', 'upload_files/candidate_tracker/27849337426_DOC-20230425-WA0053..pdf', NULL, '1', '2023-06-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles will not sustain not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-06-28 07:30:08', 101, '2023-06-29 05:25:25', 0, NULL, 1),
(13469, '', '0', '9840326145', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-29 08:45:34', 0, NULL, 0, NULL, 1),
(13470, 'SURYA A', '4', '9751870416', '9360417932', 'rasuryaa@gmail.com', '2001-05-05', 22, '2', '2', 'AZHAGAR SAMY', 'former', 10000.00, 0, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2306290002', '1', '1', 'upload_files/candidate_tracker/30866217972_SURYA', NULL, '1', '2023-06-29', 0, '', '3', '59', '2023-07-03', 164208.00, '', '5', '1970-01-01', '2', 'Selected for Sithy Team Thanjavur Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-29 09:37:20', 60, '2023-06-30 05:41:27', 0, NULL, 1),
(13471, 'Subasri.T', '5', '9940389851', '9994904433', 'subasri499@gmail.com', '1999-09-04', 23, '2', '2', 'K.Thiyagarajan', 'Sales executive (retired)', 25000.00, 1, 0.00, 20000.00, '2nd Street punithavathy colony,gowrivakkam', '2nd Street punithavathy Colony, Gowriwakkam', '2306290003', '1', '1', 'upload_files/candidate_tracker/80051526151_Subasri T CV.pdf', NULL, '1', '2023-06-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Calling Looking for Accounts Payable roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-29 10:31:29', 101, '2023-06-29 05:25:50', 0, NULL, 1),
(13472, 'Reshma N', '5', '6382466576', '9940690689', 'mohamednoor78609@gmail.com', '2002-09-28', 20, '2', '2', 'Noor Mohammad', 'Driver', 17000.00, 2, 0.00, 15000.00, '47 thiruvalluvar salai chinadi madam kodungaiyur', 'Chennai kodungaiyur', '2306290004', '1', '1', 'upload_files/candidate_tracker/30703601320_CV_2023032807561970.pdf', NULL, '1', '2023-06-29', 0, '', '3', '59', '2023-07-03', 164208.00, '', '3', '2025-02-07', '2', 'Seleceted for Gopinath Team in Consultant TRole', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-29 10:54:51', 60, '2023-06-30 05:57:29', 0, NULL, 1),
(13473, 'Sarama Varghese', '5', '8807443330', '9021124455', 'blessysaramavarghese008@gmail.com', '1997-02-08', 26, '2', '2', 'Ezhilarasi', 'Housewife', 20000.00, 1, 18000.00, 20000.00, 'Avadi', 'Avadi', '2306290005', '1', '2', 'upload_files/candidate_tracker/84298083896_SARAMA VARGHESE resume.docx', NULL, '1', '2023-06-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long distance have exp in calling but not in sales 5050 if she comes back let us try', '5', '1', '', '1', '8', '', '2', '2023-07-03', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-06-29 12:24:43', 101, '2023-06-29 05:24:41', 0, NULL, 1),
(13474, 'Manojkumar', '5', '9159393659', '6369939905', 'trichymanoj80@gmail.com', '2004-05-16', 19, '2', '2', 'g.loganthan', 'Business', 100000.00, 2, 0.00, 15000.00, 'Trichy', 'Guindy', '2306290006', '1', '1', 'upload_files/candidate_tracker/64454852242_MANOJ KUMAR L _RESUME.pdf', NULL, '1', '2023-06-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not open for target based openings will not sustain and not suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-29 01:18:56', 101, '2023-06-29 05:21:53', 0, NULL, 1),
(13475, 'Manojkumar D', '23', '6374001419', '', 'msmano235@gmail.com', '1999-08-23', 23, '3', '2', 'Dharmalingam R', 'Not applicable', 2.50, 1, 0.00, 200000.00, 'Tiruvannamalai', 'Chennai', '2306290007', '', '1', 'upload_files/candidate_tracker/4203087895_MAN_D-RESUME.pdf', NULL, '1', '2023-06-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC Fresher Not Much Knowledge In Basics', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-29 02:13:11', 1, '2023-06-29 02:16:52', 0, NULL, 1),
(13476, 'RAMANATHAN SUBRAMANIAN', '13', '9715718922', '8270798973', 'ramanathan105777@gmail.com', '1998-02-28', 25, '3', '2', 'SUBRAMANIAN R', 'LABOUR WORKER', 6000.00, 2, 0.00, 2.50, 'DEVAKOTTAI', 'CHENNAI', '2306290008', '', '1', 'upload_files/candidate_tracker/38469577107_RAMANATHAN_S_Resume2023-1.pdf', NULL, '1', '2023-06-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC fresher not much knowledge in basics', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-29 02:17:08', 1, '2023-06-29 02:22:50', 0, NULL, 1),
(13477, '', '0', '9840225024', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306290009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-29 06:23:55', 0, NULL, 0, NULL, 1),
(13478, 'Yuvashakthi', '5', '6382827204', '9597426455', 'shakthiyuva26@gmail.com', '2001-08-26', 21, '2', '2', 'Gandhi K', 'Real estate business', 20000.00, 1, 0.00, 300000.00, 'Thakkolam, Ranipet', 'Ambattur, chennai', '2306290010', '1', '1', 'upload_files/candidate_tracker/60388061732_YUVASHAKTHI-RESUME.pdf', NULL, '1', '2023-06-30', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come back with her confirmation salary exp is very high if she comes back let us try', '5', '1', '', '1', '8', '', '2', '2023-07-04', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-29 08:35:18', 104, '2023-06-30 04:08:55', 0, NULL, 1),
(13479, 'Jagadeeshwaran', '33', '7358011557', '9043366479', 'jagadeeshwaran0211@gmail.com', '2002-11-11', 20, '3', '2', 'MANIKANDAN', 'Private', 20000.00, 1, 0.00, 18000.00, '211, bhavani nagar, Kundrathur,Chennai -600069', '211, Bhavani Nagar, Kundrathur,Chennai -600069', '2306290011', '', '1', 'upload_files/candidate_tracker/27712452886_jagadeeshwaran resume 1.docx', NULL, '1', '2023-07-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-29 08:36:44', 1, '2023-06-29 08:42:12', 0, NULL, 1),
(13480, 'Ruban Mathew', '5', '7299854293', '9092400506', 'rubanmathew1804@gmail.com', '1997-04-18', 26, '2', '2', 'Mathew', 'Business', 20000.00, 2, 15000.00, 25000.00, '15/15, Canal Street, kanigapuram, Chennai-600012', 'Chennai', '2306300001', '1', '2', 'upload_files/candidate_tracker/854522286_RUBAN MATHEW_2023.pdf', NULL, '1', '2023-07-04', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to open a lot will not handle our work pressure not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-30 08:31:45', 101, '2023-07-04 11:10:35', 0, NULL, 1),
(13481, 'S. JothiRamaKrishnan', '5', '8610238023', '8124977463', 'srinivasanyuvaraj83@gmail.com', '2003-08-11', 19, '2', '2', 'K. Srinivasan', 'Building work', 30000.00, 1, 0.00, 20000.00, 'Periyar Nagar 4th Street kundurthur Chennai -69', 'Periyar Nagar 4th Street Kundurthur Chennai -69', '2306300002', '1', '1', 'upload_files/candidate_tracker/47073511213_jothi resume.docx', NULL, '1', '2023-06-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Non Voice process no communication', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-30 09:24:26', 104, '2023-06-30 05:30:06', 0, NULL, 1),
(13482, 'Narkish Banu.S', '5', '7305130376', '9003109665', 'narkishbanu38@gmail.com', '2002-12-19', 20, '2', '2', 'Sulaiman.N', 'Banking', 20000.00, 1, 0.00, 15000.00, 'Gunidy Chennai', 'Gunidy Chennai', '2306300003', '1', '1', 'upload_files/candidate_tracker/54898215072_https___egovernance.unom.ac.in_results_ugresultpage.asp.pdf', NULL, '1', '2023-06-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Non Voice No Communication not much suitable for our roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-30 09:54:10', 101, '2023-06-30 11:10:50', 0, NULL, 1),
(13483, 'Jeevitha', '13', '6369134783', '9361153205', 'mjeevitha021@gmail.com', '2003-06-17', 20, '6', '2', 'Mahadevan', 'Clerk', 120000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2306300004', '', '1', 'upload_files/candidate_tracker/53636557204_SMART HRMS resume.pdf', NULL, '1', '2023-06-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to learn a lot no basics not comfirt in TxxampC', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-30 09:58:25', 1, '2023-06-30 10:17:13', 0, NULL, 1),
(13484, 'D.R Jai siddharth', '5', '8838498531', '8608080184', 'www.simmasiddhu360@gmail.com', '1998-11-24', 24, '2', '2', 'G.D Ravi', 'Advocate', 20000.00, 1, 14500.00, 18000.00, 'Korukkupet', 'Perambur', '2306300005', '1', '2', 'upload_files/candidate_tracker/6894978607_JAI RESUME (1).docx', NULL, '1', '2023-06-30', 0, '', '3', '59', '2023-07-03', 216000.00, '', '5', '1970-01-01', '1', 'Selected for Syed TEam in Staff ROles', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-06-30 10:14:09', 60, '2023-07-03 10:35:10', 0, NULL, 1),
(13485, 'Nandhini.A', '5', '9361308170', '8150740741', 'anandhini002@gmail.com', '2002-01-21', 21, '1', '2', 'Anandhan.k', 'Cooli', 13000.00, 1, 18000.00, 20000.00, 'Ayanavaram', 'Ayanavaram', '2306300006', '', '2', 'upload_files/candidate_tracker/54925346172_Nandhini Resume Update .pdf', NULL, '1', '2023-06-30', 0, 'Ca126', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Internal Reference Have Exp in calling kindly check and let me know your inputs Can be trained in our positions', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-06-30 10:27:46', 101, '2023-06-30 10:59:06', 0, NULL, 1),
(13486, 'Rangaramanujam', '13', '8110897222', '', 'prr68118@gmail.com', '2000-10-26', 22, '2', '2', 'Prabakaran', 'Mechanic', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2306300007', '26', '1', 'upload_files/candidate_tracker/2120304509_ranga (1) (1).pdf', NULL, '1', '2023-06-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java opening only', '2', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-06-30 11:10:21', 1, '2023-06-30 11:13:47', 0, NULL, 1),
(13487, 'Sandhiya.A', '33', '7092766649', '9710981641', 'sandhiya.ayyappan2003@gmail.com', '2003-02-04', 20, '2', '2', 'Ayyappan.V', 'Photographer', 100000.00, 1, 0.00, 20000.00, 'No.73 kalasathamman kovil street selavyoil', 'No.73 kalasathamman kovil street selavayoil', '2306300008', '1', '1', 'upload_files/candidate_tracker/39111885524_A.Sandhiya resume.pdf', NULL, '1', '2023-06-30', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-06-30 12:01:46', 104, '2023-06-30 01:09:28', 0, NULL, 1),
(13488, 'Manoj Kumar. T', '33', '9345874254', '7010727347', 'manojthangam2002@gmail.com', '2002-05-19', 21, '2', '2', 'Thangam', 'Printing press', 30000.00, 2, 0.00, 18000.00, '183/2 solaiappan street oldwashermenpet chennai 21', '183/2 solaiappan street oldwashermenpet chennai 21', '2306300009', '1', '1', 'upload_files/candidate_tracker/37971111707_Kaagaz_20231008_192517135622 (1).pdf', NULL, '1', '2023-10-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Sutible for our roles will not handle our work pressure', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-06-30 03:36:40', 108, '2023-10-25 03:49:05', 0, NULL, 1),
(13489, '', '0', '9600333890', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306300010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-30 04:26:02', 0, NULL, 0, NULL, 1),
(13490, 'saronika', '5', '8778940368', '9585892002', 'saronika3008@gmail.com', '1999-08-30', 23, '2', '2', 'jamal mohamed', 'business', 15000.00, 1, 17500.00, 20000.00, 'cuddalore', 'mogappair east', '2306300011', '1', '2', 'upload_files/candidate_tracker/73027940642_Resume_Shaluma_Format6 (4).pdf', NULL, '1', '2023-07-03', 15, '', '3', '59', '2023-07-05', 192000.00, '', '', '1970-01-01', '2', 'Selected for Gopinath Team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-30 04:40:53', 101, '2023-07-03 05:01:33', 0, NULL, 1),
(13491, '', '0', '9551338436', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306300012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-30 05:52:46', 0, NULL, 0, NULL, 1),
(13492, '', '0', '6282466576', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2306300013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-06-30 06:17:12', 0, NULL, 0, NULL, 1),
(13493, 'R.Suji', '5', '6381137276', '9884969654', 'sujirsujir63@gmail.com', '2003-02-09', 20, '2', '2', 'Rajan', 'Cooli Worker', 17000.00, 1, 0.00, 15000.00, 'No10 1st floor Dblock kp.park Pulliyanthope ch-12', 'No10 1st Floor Dblock Kp.Park Pulliyanthope Ch-12', '2306300014', '1', '1', 'upload_files/candidate_tracker/7111088974_RESUMew.pdf', NULL, '1', '2023-07-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Will Not Sustain', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-06-30 06:17:15', 101, '2023-07-01 10:55:58', 0, NULL, 1),
(13494, 'NAGASHRUTHI V', '13', '8148525958', '', 'nagashruthi99@gmail.com', '1999-02-23', 24, '6', '1', 'VENKATESAN M', 'BUSSINESS', 40000.00, 2, 0.00, 22000.00, 'CHENNAI', 'GUDALUR', '2307010001', '', '1', 'upload_files/candidate_tracker/19928894380_Resume_Nagashruthi V (1).pdf', NULL, '1', '2023-07-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-01 09:42:59', 1, '2023-07-01 09:47:20', 0, NULL, 1),
(13495, 'M.Mohammed Anees', '6', '9384627956', '9080365083', 'mohammedaneesu10@gmail.com', '2001-11-01', 21, '1', '2', 'Noorunnisa', 'House Wife', 14000.00, 1, 0.00, 18000.00, 'Chennai Pulianthope', 'Chennai Pulianthope', '2307010002', '', '1', 'upload_files/candidate_tracker/82989835987_MOHAMMAD ANEES.docx', NULL, '1', '2023-07-01', 0, 'P1349', '3', '59', '2023-07-03', 195000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-01 12:24:05', 60, '2023-07-03 10:33:42', 0, NULL, 1),
(13496, 'Pugazhenthi', '33', '9566811905', '', 'Pppugazhenthi2000@gmail.com', '2000-01-17', 23, '3', '2', 'Poovan', 'farmer', 10000.00, 1, 0.00, 20000.00, 'Tindivanam', 'Chromepate', '2307010003', '', '1', 'upload_files/candidate_tracker/3624281170__Pugazhenthi p.docx', NULL, '1', '2023-07-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-01 03:28:11', 1, '2023-07-01 03:34:05', 0, NULL, 1),
(13497, 'Reema', '5', '9362690182', '9962611271', 'reemayasmin10@gmail.com', '2002-10-27', 20, '2', '2', 'Moideen.k', 'B.com Bank management', 120000.00, 2, 0.00, 20000.00, 'No.2c, Bhpudhur Ambattur Chennai -600053', 'No.2c, BhPudhur Ambattur Chennai -600053', '2307010004', '1', '1', 'upload_files/candidate_tracker/10626849340_11.06.2023.pdf', NULL, '1', '2023-07-03', 0, '', '3', '59', '2023-07-05', 168000.00, '', '5', '1970-01-01', '1', 'Selected for Gopinath Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-01 04:52:19', 60, '2023-07-05 11:10:59', 0, NULL, 1),
(13498, 'VELMURUGAN R', '13', '8056306278', '9092049578', 'velmuruganramesh278@gmail.com', '2003-06-10', 20, '6', '2', 'RAMESH D', 'cooli', 12000.00, 2, 0.00, 120000.00, '13/4/44,Sengottai Road,Surandai- 627859', 'Saligramam,vadapalani ,Chennai', '2307030001', '', '1', 'upload_files/candidate_tracker/78405791362_VEL_resume.pdf', NULL, '1', '2023-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher need to come back with his confirmation if he comes back let us tryu', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-03 10:28:23', 1, '2023-07-03 10:38:14', 0, NULL, 1),
(13499, 'V.RAGHUL', '13', '8610697436', '9047459297', 'raghulravit8610@gmail.com', '2003-08-31', 19, '6', '2', 'S.VELMURUGAN', 'Business', 10000.00, 1, 0.00, 18000.00, 'Saidapet', 'Saidapet', '2307030002', '', '1', 'upload_files/candidate_tracker/9496396811_ Kamalesh Y resume ????.pdf', NULL, '1', '2023-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher open fr TxxampC attended 2nd level interview didnt come for final round ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-03 10:29:40', 1, '2023-07-03 11:07:46', 0, NULL, 1),
(13500, 'Aravind.R', '5', '8124616402', '9342559490', 'aravindraju207@gmail.com', '1999-07-20', 23, '2', '2', 'Manoj', 'FedEx', 15000.00, 1, 16500.00, 17000.00, '41/9 varadhapuram 2nd Street kottur chennai 85', '41/9 Varadhapuram 2nd Street Kottur Chennai 85', '2307030003', '1', '2', 'upload_files/candidate_tracker/80248607624_CV_2023033112012371-1.pdf', NULL, '1', '2023-07-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-03 10:30:36', 101, '2023-07-03 11:23:08', 0, NULL, 1),
(13501, 'Vimala R', '4', '7695865615', '7338973476', 'vimala2803rameshkumar@gmail.com', '2001-12-28', 21, '2', '2', 'M .Rameshkumar', 'Electretion', 15000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2307030004', '50', '1', 'upload_files/candidate_tracker/45554061698_R vimala resume.pdf', NULL, '1', '2023-07-03', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2023-07-03 10:37:01', 154, '2024-12-09 09:54:56', 0, NULL, 1),
(13502, 'Mohamed Ejas Rahman', '4', '8870911473', '7871861473', 'ejasr25@gmail.com', '2001-11-01', 21, '4', '2', 'Rafik Ahamed', 'Driver', 12000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2307030005', '', '1', 'upload_files/candidate_tracker/83804450979_Resume of Ejas .pdf', NULL, '1', '2023-07-03', 0, '', '3', '59', '2023-07-07', 144000.00, '', '5', '1970-01-01', '1', 'Selected for Sithy Team with TDS consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-03 11:16:45', 60, '2023-07-05 07:12:42', 0, NULL, 1),
(13503, 'Varshini', '33', '8608574747', '6369129200', 'varshinimagi14@gmail.com', '2003-01-14', 0, '3', '2', 'Mageshwari', 'Business', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2307030006', '', '1', 'upload_files/candidate_tracker/32902473095_varshini resume.pdf', NULL, '1', '2023-07-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-03 11:29:27', 1, '2023-07-03 11:48:01', 0, NULL, 1),
(13504, 'JAWAHAR V', '13', '6381507493', '9445243844', 'jawahar.v20@gmail.com', '2001-03-20', 22, '6', '2', 'R. VIJAYAKUMAR', 'Machine fitter', 20000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2307030007', '', '1', 'upload_files/candidate_tracker/14607221584_WebDesign-Blue Neutral Simple Minimalist Professional Web Developer Resume_compressed.pdf', NULL, '1', '2023-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round reject by Tamilmani Sustainability doubts', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-03 11:30:32', 1, '2023-07-03 11:41:27', 0, NULL, 1),
(13505, 'Bulasara anil kumar', '13', '9542844986', '9916567090', 'anilkumarbulasara3@gmail.com', '2008-07-03', 15, '1', '2', 'Padma', 'Weaver', 20000.00, 1, 0.00, 200000.00, 'Bangalore', 'Chennai', '2307030008', '', '1', 'upload_files/candidate_tracker/33600368651_B Anil Kumar(Resume)-1.pdf', NULL, '1', '2023-07-03', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication barrier Will not sustain and handle our work pressure in IT ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-03 11:41:19', 1, '2023-07-03 11:44:25', 0, NULL, 1),
(13506, 'Surya', '21', '9080027764', '7548863207', 'surya80818@gmail.com', '2008-07-03', 0, '3', '2', 'S/o Kumar', 'Driver', 25000.00, 1, 18000.00, 25000.00, 'Trichy', 'Trichy', '2307030009', '', '2', 'upload_files/candidate_tracker/7111311496_cv (7).pdf', NULL, '1', '2023-07-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-03 11:42:28', 1, '2023-07-03 11:47:07', 0, NULL, 1),
(13507, 'Sri Nath P', '5', '9361780745', '', 'srinathsri2k2@gmail.com', '2002-05-09', 21, '2', '2', 'Prabakaran.K', 'Farmer', 72000.00, 1, 0.00, 15000.00, 'Arni', 'Arni', '2307030010', '1', '1', 'upload_files/candidate_tracker/83060467089_Sri Nath.P Resume(new).pdf', NULL, '1', '2023-07-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to see his distance not open for field visit will not sustain and handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-03 06:27:56', 101, '2023-07-04 10:30:50', 0, NULL, 1),
(13508, 'Allahbaksh.S', '5', '9092410028', '8838346695', 'anasallah@gmail.com', '1999-11-16', 23, '3', '2', 'Thamizh banu', 'Accountant', 22000.00, 1, 17000.00, 18000.00, 'chennai Ennore Voc nagar 3rd block no.67', 'Chennai Ennore Voc Nagar 3rd Block no.67', '2307040001', '', '2', 'upload_files/candidate_tracker/99465706689_Resume.pdf', NULL, '1', '2023-07-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance Focusing only on the salary exp more than 22K 1yr exp but not sure on previous exp not open for field visit too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-04 09:55:24', 101, '2023-07-04 10:33:31', 0, NULL, 1),
(13509, 'Sridevi s', '9', '8610838981', '', 'sridevi11095@gmail.com', '1995-01-10', 28, '3', '1', 'Saravanan I.', 'Manager', 20000.00, 0, 0.00, 17000.00, 'Perunkalathur', 'Tondiarpet', '2307040002', '', '2', 'upload_files/candidate_tracker/88718192384_new sri devi resume-1.docxggg.docx', NULL, '1', '2023-07-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preferred to work in non voice will not handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-04 10:10:32', 101, '2023-07-04 06:14:09', 0, NULL, 1),
(13510, 'Ruba S', '4', '8610488377', '9943677473', 'rubasivarama007@gmail.com', '1998-08-30', 24, '2', '2', 'Sivaraman', 'Welding', 40000.00, 2, 20000.00, 15000.00, 'Budalur thanjavur dr', 'Budalur', '2307040003', '1', '2', 'upload_files/candidate_tracker/9730219124_RESUME (2).pdf', NULL, '1', '2023-07-04', 20, '', '3', '59', '2023-07-10', 186000.00, '', '5', '1970-01-01', '2', 'Selected for Sithy Team in Consultant Role Can be trained in  our roles have 1 yr exp in Casa Grande 20K was last MCTC', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-04 10:24:37', 60, '2023-07-08 04:21:42', 0, NULL, 1),
(13511, 'Mahendra', '5', '6382614417', '7695830271', 'mahikavi2000@gmail.com', '2000-10-18', 22, '2', '2', 'Mariappan', 'Agriculture', 20000.00, 2, 20000.00, 25000.00, 'Tirunelveli', 'Triplecan', '2307040004', '1', '2', 'upload_files/candidate_tracker/72208319567_5_6080120665321505894 (1).pdf', NULL, '1', '2023-07-04', 30, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Attended', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-04 10:42:45', 60, '2023-07-07 02:38:13', 0, NULL, 1),
(13512, 'SRIHARINIVAS', '13', '7639272177', '', 'sriharinivas2000@gmail.com', '2000-09-10', 22, '6', '2', 'SUBRAMANIYAN U', 'Formar', 75000.00, 1, 0.00, 400000.00, 'Kallakurichi', 'Chennai', '2307040005', '', '1', 'upload_files/candidate_tracker/13213959221_Resume.pdf', NULL, '1', '2023-07-04', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-04 10:51:00', 1, '2023-07-04 10:57:32', 0, NULL, 1),
(13513, 'SAKTHIVEL K', '13', '9344995597', '9942190890', 'sakthivelkamaraj01@gmail.com', '2001-01-29', 22, '3', '2', 'KAMARAJ D', 'HAND LOOM WORK', 10000.00, 0, 0.00, 15000.00, 'SALEM', 'Chennai', '2307040006', '', '1', 'upload_files/candidate_tracker/42015035659_Resume.pdf', NULL, '1', '2023-07-04', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-04 10:52:05', 1, '2023-07-04 11:16:25', 0, NULL, 1),
(13514, 'G VISHVANATH', '6', '6379094884', '', 'viswanathgopal55@gmail.com', '2000-02-15', 0, '4', '2', 's Gopal', 'interior project\'s', 85000.00, 1, 65000.00, 40000.00, 'theni', 'theni', '2307040007', '1', '2', 'upload_files/candidate_tracker/57839968012_Vishvanath resume (2).pdf', NULL, '1', '2023-07-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Syed interviewed and got rejeccted in the 1st round', '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2023-07-04 10:52:08', 1, '2023-07-04 10:54:46', 0, NULL, 1),
(13515, 'Vasanthakumar S', '13', '8940404212', '', 'vasikaran199920@gmail.com', '1999-10-20', 23, '3', '2', 'Srinivasan', 'Cable operator', 14000.00, 1, 0.00, 3.50, 'Ulundurpet', 'Chennai', '2307040008', '', '1', 'upload_files/candidate_tracker/30530923460_Vasanth resume.pdf', NULL, '1', '2023-07-04', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-04 10:52:28', 1, '2023-07-04 11:07:16', 0, NULL, 1),
(13516, 'Gokul', '13', '9629349343', '', 'gokulgo2001@gmail.com', '2001-04-16', 22, '3', '2', 'Ganesan', 'Driver', 25000.00, 3, 0.00, 3.50, 'Salem', 'Guindy', '2307040009', '', '1', 'upload_files/candidate_tracker/17611614249_GOKUL CV.pdf', NULL, '1', '2023-07-04', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-04 10:53:28', 1, '2023-07-04 11:00:01', 0, NULL, 1),
(13517, '', '0', '8056279206', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307040010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-04 12:01:12', 0, NULL, 0, NULL, 1),
(13518, 'Ishwarya', '6', '8056267730', '8825770803', 'ishums7828@gmail.com', '1999-08-07', 23, '2', '1', 'Srinivasan', 'Driver', 20000.00, 2, 20000.00, 22000.00, 'Chennai', 'Chennai', '2307040011', '1', '2', 'upload_files/candidate_tracker/36575433026_MY RESUME NEW.pdf', NULL, '1', '2023-07-04', 0, '', '3', '59', '2023-07-11', 285000.00, '', '5', '1970-01-01', '2', 'Selected for Manikandan team in Staff Role', '5', '1', '4', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-04 01:05:31', 60, '2023-07-11 05:51:28', 0, NULL, 1),
(13519, '', '0', '9791045679', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307040012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-04 01:22:54', 0, NULL, 0, NULL, 1),
(13520, 'Soundarajan k', '5', '7358228249', '9080970150', 'innocenticon10@gmail.com', '2001-01-30', 22, '1', '2', 'Chandramathi', 'Nill', 30000.00, 2, 17000.00, 18000.00, 'Perambur', 'Perambur', '2307040013', '', '2', 'upload_files/candidate_tracker/18642869840_Soundar-RESUME.docx', NULL, '1', '2023-07-04', 0, 'P1287', '3', '59', '2023-07-07', 216000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-04 01:26:49', 60, '2023-07-07 10:18:16', 0, NULL, 1),
(13521, 'Kaleeswaran T', '5', '6383138079', '9080970150', 'godsonkalees50@gmail.com', '1998-12-07', 24, '1', '2', 'Vijayalaxmi', 'Nill', 15000.00, 2, 15000.00, 18000.00, 'Madurai', 'Perambu', '2307040014', '', '2', 'upload_files/candidate_tracker/15097470242_Kaleeswaran Resume.doc', NULL, '1', '2023-07-04', 0, 'P1287', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit for Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-04 01:49:53', 101, '2023-07-04 04:11:08', 0, NULL, 1),
(13522, '', '0', '9150998557', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307040015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-04 04:58:54', 0, NULL, 0, NULL, 1),
(13523, 'Harish S', '23', '7010910647', '9962945069', 'harish.sampath752@gmail.com', '1999-04-07', 24, '3', '2', 'Sampath Kumar PT', 'Business', 100000.00, 1, 294700.00, 525000.00, 'Chennai', 'Chennai', '2307040016', '', '2', 'upload_files/candidate_tracker/31483335350_Harish_S_Resume_SoftwareTesting.pdf', NULL, '1', '2023-07-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for IT testing profile', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-04 06:42:23', 1, '2023-07-04 06:49:15', 0, NULL, 1),
(13524, 'Vennila Agasti R', '4', '8973931467', '9514742185', 'agastivennila754@gmail.com', '1997-06-03', 26, '2', '2', 'Rajendran', 'Farmer', 8000.00, 2, 0.00, 15000.00, 'Palamarneri', 'Palamarneri', '2307040017', '1', '1', 'upload_files/candidate_tracker/52656311308_VENNILA RESUME(1)_1.pdf', NULL, '1', '2023-07-05', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not ok with the profile and not fit for team, non profile', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-04 07:28:55', 101, '2023-07-05 10:06:16', 0, NULL, 1),
(13525, 'Mohammed Ghouse. P', '6', '8870779331', '', 'tanutanveer644@gmail.com', '2000-04-29', 23, '2', '2', 'Aejaz ahmed. P', 'Employee', 12000.00, 3, 15.00, 22.00, 'Tamil nadu. Vaniyambadi', 'Chennai', '2307040018', '1', '2', 'upload_files/candidate_tracker/62787093250_ghouse.pdf', NULL, '1', '2023-07-05', 1, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile no exp in calling have exp in store sales pressure handling doubts kindly check once and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-04 11:03:34', 108, '2023-07-05 12:32:25', 0, NULL, 1),
(13526, 'lakshana j v', '2', '9092551110', '', 'lakshanajv@yahoo.com', '1999-12-19', 23, '4', '2', 'vijayalakshami j', 'business', 120000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2307050001', '', '1', 'upload_files/candidate_tracker/57624033015_lakshanajvcvweb.pdf', NULL, '2', '2023-07-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-05 09:58:03', 1, '2023-07-05 10:07:49', 0, NULL, 1),
(13527, '', '0', '9994427158', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307050002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-05 10:27:52', 0, NULL, 0, NULL, 1),
(13528, 'Tarunika', '13', '6383166362', '6380575223', 'tarunikajayananthan@gmail.com', '2008-07-05', 0, '1', '2', 'Jayananthan', 'Molding contract', 15000.00, 1, 0.00, 18000.00, 'Pollachi', 'Guindy', '2307050003', '', '1', 'upload_files/candidate_tracker/73242344506_TarunikajayananthanCV.pdf', NULL, '1', '2023-07-05', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic skills knowledge first interview need to explore a lot ', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-05 10:30:23', 1, '2023-07-05 10:43:21', 0, NULL, 1),
(13529, 'Poovarasan', '5', '9092492723', '6383304910', 'poovarasansakthivel549@gmail.com', '1999-01-13', 24, '2', '2', 'Sakthivel', 'Farmer', 150000.00, 1, 22000.00, 26000.00, 'Thiruvannamalai', 'Chennai', '2307050004', '1', '2', 'upload_files/candidate_tracker/82523347994_Resume_06_05_2023_12_25_50_pm.docx', NULL, '1', '2023-07-05', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-05 10:37:13', 60, '2023-07-05 06:02:11', 0, NULL, 1),
(13530, 'Rajasri.K', '20', '9994417158', '', 'rajasrirajasri69288@gmail.com', '2000-06-12', 0, '2', '2', 'Kuraravel Valli', 'Sales', 25000.00, 6, 10000.00, 20000.00, 'Chennai', 'Chennai', '2307050005', '1', '2', 'upload_files/candidate_tracker/39876790692_1686644938268_12_118501-3.pdf', NULL, '1', '2023-07-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'HAVE GOOD SKILL AND EXPERIANCE ,BUT JOINING DATE IS TOO LONG', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-05 10:40:17', 108, '2023-07-05 11:32:18', 0, NULL, 1),
(13531, 'M ARUNACHALAM', '6', '7448686066', '7092667017', 'smartarun6513@gmail.com', '2003-12-07', 19, '1', '2', 'P MURUGAN', 'Driver', 20000.00, 4, 0.00, 22000.00, '1a sandaveli street kattukovil mylapore chennai 04', '1a sandaveli street kattukovil mylapore Chennai 04', '2307050006', '', '1', 'upload_files/candidate_tracker/86877875502_Karthik Resume.pdf', NULL, '1', '2023-07-05', 0, '2307050006', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Internal reference communication average pressure handling doubts will not sustain ', '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-05 11:19:20', 1, '2023-07-05 11:34:21', 0, NULL, 1),
(13532, 'Sethuraman g', '6', '6369914647', '', 'sethuroman2002@gmail.com', '2002-10-18', 20, '3', '2', 'ganesan', 'carpenter', 30000.00, 2, 0.00, 20000.00, 'chrompet', 'chrompet', '2307050007', '', '1', 'upload_files/candidate_tracker/54605524419_Sethuraman Resume.pdf', NULL, '1', '2023-07-05', 0, '', '5', '57', NULL, 0.00, '', '0', NULL, '1', 'Communication not well', '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-05 11:58:43', 1, '2023-07-05 12:08:45', 0, NULL, 1),
(13533, 'Sriram.m.r', '6', '9025305825', '8056963925', 'sriramking9445@gmail.com', '1999-03-21', 24, '2', '2', 'Mrs.Ramakumari', 'House wife', 25000.00, 1, 0.00, 18000.00, 'Nagercoil', 'Chennai', '2307050008', '1', '1', 'upload_files/candidate_tracker/15016600192_SRIRAM resume.pdf', NULL, '1', '2023-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher have exp is studio process need to open a lot pressure handling doubt willl not sustain in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-05 02:33:15', 104, '2023-07-05 02:44:06', 0, NULL, 1),
(13534, 'Pradeeba', '5', '7806879261', '7550127606', 'Johnbabu73583@gmail.com', '1996-12-04', 26, '2', '1', 'Thirunanukarasu', 'Driver', 30000.00, 2, 15000.00, 15000.00, 'Purasaiwakkam', 'Purasaiwakkam', '2307050009', '1', '2', 'upload_files/candidate_tracker/13531213246_DOC-20230512-WA0001..doc', NULL, '1', '2023-07-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SELECTED', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-05 08:20:26', 101, '2023-07-06 12:13:29', 0, NULL, 1),
(13535, 'SREEJA J', '5', '9940771110', '9043848110', 'srijajagan@gmail.com', '2002-11-29', 20, '2', '2', 'Jeganbabu', 'Labour', 6000.00, 1, 0.00, 20000.00, 'walajapet', 'walajapet', '2307050010', '1', '1', 'upload_files/candidate_tracker/17389174782_sreeja resume final.pdf', NULL, '1', '2023-07-17', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Reject', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-05 09:07:08', 101, '2023-07-17 11:19:02', 0, NULL, 1),
(13536, 'Vishnu kumar', '5', '6383182632', '7358787146', 'vishnukumarnanda@gmail.com', '2000-07-27', 23, '2', '2', 'Nandakumar', 'School attender', 18000.00, 2, 21000.00, 22000.00, 'Thiruvottiyur, Chennai', 'Thiruvottiyur, chennai', '2307060001', '1', '2', 'upload_files/candidate_tracker/17950873292_vishnu resume oct.pdf', NULL, '1', '2023-12-12', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-06 06:57:19', 104, '2023-12-12 05:08:06', 0, NULL, 1),
(13537, 'Augustin Jebaraj M', '13', '8122802633', '', 'augusteynaugus8998@gmail.com', '1998-09-08', 24, '3', '2', 'Mohan A', 'Coolie', 12000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2307060002', '', '1', 'upload_files/candidate_tracker/54132297_Augustin Resume(2).pdf', NULL, '1', '2023-07-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basics skills in IT will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-06 10:51:08', 1, '2023-07-06 10:55:28', 0, NULL, 1),
(13538, 'Surendar', '13', '7550256801', '', 'surendarraj87@gmail.com', '1998-05-23', 25, '3', '2', 'Raj.M', 'Centring', 12000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2307060003', '', '1', 'upload_files/candidate_tracker/76932439964_CV_2023070514264119.pdf', NULL, '1', '2023-07-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Basics Skills In IT Need to come back after learning', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-06 10:51:29', 1, '2023-07-06 10:55:25', 0, NULL, 1),
(13539, 'PAVITHRA SRINIVASAN', '6', '9884472437', '', 'Pavithrasrinivasan1507@gmail.com', '2000-07-15', 22, '2', '2', 'T.SRINIVASAN', 'SUPERVISOR', 90000.00, 1, 11500.00, 20000.00, 'VYASARPADI', 'VYASARPADI', '2307060004', '1', '2', 'upload_files/candidate_tracker/54813673144_pavithra s.doc', NULL, '1', '2023-07-06', 10, '', '3', '59', '2023-07-07', 195000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team in Staff Role Have Exp in HDB Financial direct payroll for 1,5 yrs', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-06 11:06:05', 60, '2023-07-07 10:06:18', 0, NULL, 1),
(13540, 'balaji s', '5', '9150979880', '', 'balaji95503@gmail.com', '2002-09-08', 20, '3', '2', 'subramani e', 'late', 10000.00, 1, 0.00, 16000.00, 'chennai', 'chennai', '2307060005', '', '1', 'upload_files/candidate_tracker/78723664647_Document 2 (1).pdf', NULL, '1', '2023-07-06', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Not openup  not suit for our process', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-06 11:28:04', 1, '2023-07-06 12:46:33', 0, NULL, 1),
(13541, 'mahesh', '2', '9751165321', '', 'mahesonraj231@outlook.com', '2001-05-02', 22, '6', '2', 'veyilraj', 'farmer', 20000.00, 1, 0.00, 150000.00, 'Solighanallur', 'Solighanallur', '2307060006', '', '1', 'upload_files/candidate_tracker/62212850173_Scan06Jul23130616.pdf', NULL, '1', '2023-07-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-06 12:17:49', 104, '2023-07-06 01:16:00', 0, NULL, 1),
(13542, 'swathi', '33', '9080995416', '', 'swathivelayutham15@gmail.com', '2002-10-17', 20, '1', '2', 'velayutham', 'buliding construction', 20000.00, 10, 0.00, 18000.00, 'karukku main road ambattur', 'karukku main road ambattur', '2307060007', '', '1', 'upload_files/candidate_tracker/33604210638_SWATHI resume.pdf', NULL, '1', '2023-07-06', 0, 'cA130', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking  for accounts', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-06 12:18:00', 104, '2023-07-06 01:14:31', 0, NULL, 1),
(13543, 'krithika.', '33', '7406046865', '', 'krithikaganesh92@gmail.com', '2000-03-31', 23, '1', '2', 'do ganesh kumar', 'railway Engineer', 20.00, 0, 0.00, 18.00, 'fmz dental clinic koyambedu', 'fmz dental clinic koyambedu', '2307060008', '', '1', 'upload_files/candidate_tracker/7811046171_resume01.pdf', NULL, '1', '2023-07-06', 0, 'cA130', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking  For Accounts', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-06 12:25:25', 104, '2023-07-06 01:15:08', 0, NULL, 1),
(13544, 'Joseph', '5', '9159159519', '', 'josephchitty.email@gmail.com', '1995-05-14', 28, '2', '1', 'Priya ki', 'Hr', 50000.00, 4, 24000.00, 26000.00, '108 vaikuntapuram nungambakkam chennai 34', 'Kk nager', '2307060009', '1', '2', 'upload_files/candidate_tracker/62489673719_updated 2023 pdf.docx', NULL, '1', '2023-07-07', 0, '', '3', '59', '2023-07-10', 240000.00, '', '5', '1970-01-01', '1', 'SElected for Kanna Team in Staff Role    5050 Profile Long Career Gap Mentioned Exp But No Sustainability Have Worked With Care Health Insurance Kindly Check And Let Me Know Your Inputs Need To Initiate Agreement For Sustainability', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-06 12:29:51', 60, '2023-07-08 05:09:58', 0, NULL, 1),
(13545, 'Soundarya Devi', '4', '9025920594', '9790956518', 'lathavasan2015@gmail.com', '2008-07-06', 0, '1', '1', 'Manoj kiran', 'Kodambakkam', 40000.00, 0, 25000.00, 30000.00, 'Kodambakkam', 'Kodambakkam', '2307060010', '', '2', 'upload_files/candidate_tracker/87950908204_SOUNDARYA-DEVI-S-Senior-Sales-Manager-resume-2023-05-09-232539 (1).pdf', NULL, '3', '2023-07-06', 0, 'P1349', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-06 12:54:37', 1, '2023-07-06 01:16:47', 0, NULL, 1),
(13546, '', '0', '9080314832', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-06 01:52:09', 0, NULL, 0, NULL, 1),
(13547, 'Lokeswari D', '6', '7550134104', '', 'lokeswari0403@gmail.com', '2003-04-04', 20, '1', '2', 'Dhana sekaran', 'Business', 200000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2307060012', '', '1', 'upload_files/candidate_tracker/78246331342_Cv.pdf', NULL, '1', '2023-07-06', 0, 'P1422', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for team ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-06 02:36:11', 97, '2023-07-08 03:12:35', 0, NULL, 1),
(13548, 'Roshini K', '5', '7550285813', '9790979638', 'roshu0608@gmail.com', '2002-08-06', 20, '1', '2', 'Kalyana Kumar', 'Medical shop', 100000.00, 1, 0.00, 18.00, 'Ayanavaram', 'Ayanavaram', '2307060013', '', '1', 'upload_files/candidate_tracker/52668852180_ROSHINI K CV-1.pdf', NULL, '1', '2023-07-06', 0, 'P1422', '3', '59', '2023-07-10', 164400.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-06 02:36:22', 60, '2023-07-08 05:08:25', 0, NULL, 1),
(13549, 'Monisha M', '6', '7339125378', '', 'moni27082003@gmail.com', '2003-08-27', 19, '1', '2', 'Megaraj', 'Painter', 15000.00, 2, 0.00, 13000.00, '5/3 Seniamman Kovil 4 Th Street Tondiarpet', '5/3 seniamman Kovil 4 th Street Tondiarpet', '2307060014', '', '1', 'upload_files/candidate_tracker/18931147528_Monisha.pdf', NULL, '1', '2023-07-06', 0, 'P 1418', '3', '59', '2023-07-10', 164400.00, '', '5', '1970-01-01', '2', 'Selected for Gopinath Team in Consultant Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-06 02:53:45', 60, '2023-07-08 06:17:25', 0, NULL, 1),
(13550, 'Sachin Pavar', '5', '8197781527', '8957870558', 'pavarsachin513@gmail.com', '2002-06-07', 21, '2', '2', 'Manappa Pavar', 'Farmer', 20000.00, 2, 336000.00, 550000.00, 'Vijayapura', 'Vijayapura', '2307060015', '1', '2', 'upload_files/candidate_tracker/16209573279_DOC-20230706-WA0037..pdf', NULL, '1', '2023-07-07', 0, '', '3', '59', '2023-08-15', 403200.00, '', '5', '1970-01-01', '1', 'Selected for Bangalore Sathish Reporting Staff ROle', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-06 06:53:27', 60, '2023-07-17 07:02:38', 0, NULL, 1),
(13551, 'Swapna devi', '5', '9150612317', '', 'swapnasrini0402@gmail.com', '2003-02-04', 20, '2', '2', 'Srinivasan e', 'Electrical supervisor', 240000.00, 1, 0.00, 18000.00, 'Kottur', 'Kottur', '2307060016', '1', '1', 'upload_files/candidate_tracker/38383741095_Deepika Resume-1.pdf', NULL, '1', '2023-07-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-06 08:15:16', 101, '2023-07-07 11:51:00', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13552, 'Varshini', '13', '9941992578', '8056006074', 'varshiniravikumar28@gmail.com', '2001-04-28', 22, '6', '2', 'Ravikumar R', 'Turner', 96000.00, 1, 0.00, 16000.00, 'Thiruninravur', 'Thiruninravur', '2307070001', '', '1', 'upload_files/candidate_tracker/35997195735_resume1.pdf', NULL, '1', '2023-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance up and down 70 kms will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-07 11:01:15', 1, '2023-07-07 11:11:41', 0, NULL, 1),
(13553, 'Bhuvaneswari v', '13', '9345313675', '8122960787', 'bhuvaneswariv2306@hmail.com', '2000-06-23', 23, '6', '2', 'Rani V', 'Private employee', 9500.00, 1, 0.00, 15000.00, 'Pattukkottai', 'chennai', '2307070002', '', '1', 'upload_files/candidate_tracker/67079887509_Bhuvaneswari-v--resume updated.pdf', NULL, '1', '2023-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Good enthu but not much comfort in TxxampC if she comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-07 11:02:13', 1, '2023-07-07 11:43:54', 0, NULL, 1),
(13554, 'Anitha', '15', '9087555899', '', 'rajenthiranvdm6198@gmail.com', '2001-01-30', 22, '6', '2', 'Rajenthiran', 'Farmer', 10000.00, 0, 0.00, 2.00, 'Vedaraniyam', 'Chennai', '2307070003', '', '1', 'upload_files/candidate_tracker/78886090997_Anitha R.pdf', NULL, '1', '2023-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too fresher no basics in skills will not sustain and not suitable ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-07 11:02:49', 1, '2023-07-07 11:10:10', 0, NULL, 1),
(13555, 'Ramya', '11', '7550141426', '', 'rramya50928@gmail.com', '1999-10-10', 23, '3', '2', 'Sankar', 'Cable operator', 15000.00, 1, 20000.00, 28000.00, 'Chennai', 'Chennai', '2307070004', '', '2', 'upload_files/candidate_tracker/16080320935_Ramya.pdf', NULL, '1', '2023-07-07', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok have 1 yr exp in recruitment but the salary exp is high and not much comfort to come down with the package', '6', '1', '0', '1', '8', '0', '2', '2023-07-14', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-07 12:07:25', 1, '2023-07-07 12:11:20', 0, NULL, 1),
(13556, 'REVATHI RS', '29', '9884417718', '9943998378', 'coolrevathi@gmail.com', '1984-05-01', 39, '2', '1', 'VijaiBabu', 'Salaried', 35000.00, 2, 400000.00, 520000.00, 'Chromepet', 'Chromepet', '2307070005', '25', '2', 'upload_files/candidate_tracker/3462533582_Resume%202023.docx', NULL, '1', '2023-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok have exp in backend operation not much in sales will not sustain and not suitable for Trainer profile', '3', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-07 12:13:12', 1, '2023-07-07 12:17:59', 0, NULL, 1),
(13557, 'Javeeth S. A', '13', '9043585900', '9043966924', 'Javeethsa1@gmail.con', '2002-05-03', 21, '6', '2', 'Apsar S. N', 'Driving', 17000.00, 2, 0.00, 18000.00, 'Hasanalipet, dharnampet, Gudiyatham 632602', 'Triplicane, Chennai, Tamil Nadu 600014', '2307070006', '', '1', 'upload_files/candidate_tracker/71747503134_JAVEETH RESUME(1).pdf', NULL, '1', '2023-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-07 12:14:22', 1, '2023-07-07 12:32:47', 0, NULL, 1),
(13558, 'Abirami R', '4', '6382483574', '9003766255', 'abiramiravi2701@gmail.com', '2001-12-27', 21, '2', '2', 'Ravi S', 'Appraiser', 20000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2307070007', '1', '1', 'upload_files/candidate_tracker/34884212690_Abi resume.pdf', NULL, '1', '2023-07-08', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-07 12:44:51', 101, '2023-07-08 04:25:03', 0, NULL, 1),
(13559, 'S Iniya', '5', '7358353618', '8778371110', 'siniyas1012@gmail.com', '2000-12-10', 22, '1', '2', 'S Sivasankaran', 'Business', 70000.00, 1, 21000.00, 22000.00, 'Pallavakkam, chennai 41', 'Pallavakkam, chennai 41', '2307070008', '', '2', 'upload_files/candidate_tracker/89795502998_INIYA ADITYARAM RESUME.docx', NULL, '1', '2023-07-07', 0, '77776', '3', '59', '2023-07-11', 297696.00, '', '5', '1970-01-01', '2', 'Selected for Gaurav Sir team in Staff Role', '5', '1', '4', '1', '8', '1', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-07 02:52:19', 60, '2023-07-11 10:54:38', 0, NULL, 1),
(13560, 'Vinnarasi.S', '5', '8939587918', '9841312815', 'vincyalaya29@gmail.com', '2000-12-29', 22, '1', '2', 'Sylvester.U', 'Retired person', 12000.00, 2, 25200.00, 27000.00, 'Chennai', 'Chennai', '2307070009', '', '2', 'upload_files/candidate_tracker/43568852239_Vincy-resume_1688663412831_S.Vinnarasi.pdf', NULL, '1', '2023-07-07', 0, '77776', '3', '59', '2023-07-11', 309696.00, '', '5', '1970-01-01', '2', 'Selected for Gaurav Sir team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-07 03:01:44', 60, '2023-07-10 05:17:36', 0, NULL, 1),
(13561, 'S. Pavithra', '5', '8807558856', '', 'Pavithravijaya1807@gmail.com', '1998-06-05', 25, '2', '2', 'S. Vijaya', 'House Wife', 2000.00, 2, 15000.00, 18000.00, 'No, 31,mulli village, maduranthakam.', 'No, 70,classic ladies hostel, saidapet. 600015', '2307070010', '1', '2', 'upload_files/candidate_tracker/72706783319_Pavi Resume (1).pdf', NULL, '1', '2023-07-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-07 03:31:13', 101, '2023-07-08 09:48:05', 0, NULL, 1),
(13562, 'Venkatesan', '22', '9003844454', '7339336802', 'Venkyindia365@gmail.com', '1991-06-01', 32, '2', '1', 'Vadivel', 'Retd. Railway Employed', 50000.00, 1, 18000.00, 23000.00, 'Arakkonam', 'Ambattur', '2307070011', '1', '2', 'upload_files/candidate_tracker/86949576459_1687242766318_Digital Marketer Resume (1).pdf', NULL, '1', '2023-07-08', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much good in communication no wriiten communication salary exp is high not much good in skills also will not sustain and handle our work pressure', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-07 06:40:39', 85, '2023-07-08 10:18:12', 0, NULL, 1),
(13563, 'Vijay Veeramani', '13', '9790595936', '7708460438', 'cmvjd0505@gmail.com', '2001-02-01', 22, '6', '2', 'V.chitra', 'Farmer', 15000.00, 2, 0.00, 350000.00, '293,keezha street, maravanur, Ariyalur-621704', 'Radha Nager Main Road, Chrompet, Chennai - 600044', '2307080001', '', '1', 'upload_files/candidate_tracker/46448144242_VijayV_Resume.doc', NULL, '1', '2023-07-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basics Need to learn a lot need time to give his confiramtion on TxxampC if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-08 09:44:05', 1, '2023-07-08 09:57:40', 0, NULL, 1),
(13564, 'B. Nandhini', '5', '7397442261', '8248567083', 'nandhinilatha29@gmail.com', '2002-12-31', 20, '1', '2', 'B. Latha', 'cooli', 120000.00, 1, 0.00, 15.00, '24.TK garden 5th street old Washermenpet', '24,TK garden 5th street old Washermenpet', '2307080002', '', '1', 'upload_files/candidate_tracker/50339250188_Nandhini resume new model .pdf', NULL, '1', '2023-07-08', 0, '77796', '3', '59', '2023-07-10', 164400.00, '', '5', '1970-01-01', '2', 'Selected for Gopinath Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-08 11:02:35', 60, '2023-11-17 04:13:14', 0, NULL, 1),
(13565, 'sudha l', '5', '8637427048', '9176395558', 'sudhagsk123@gmail.com', '2001-06-02', 22, '3', '2', 'loganathan e', 'coolie', 8000.00, 1, 0.00, 15000.00, 'new washermenpet', 'new washermenpet', '2307080003', '', '1', 'upload_files/candidate_tracker/50116692177_1688795830914.pdf', NULL, '1', '2023-07-08', 0, '', '5', '105', NULL, 0.00, '', '0', NULL, '2', 'COMMUNICATION IS NOT GOOD , ALSO pronunciation IS WORST ', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-08 11:16:41', 1, '2023-07-08 12:19:48', 0, NULL, 1),
(13566, 'E Sangeetha', '22', '9176830633', '', '1726sangeetha@gmail.com', '2000-06-26', 23, '2', '2', 'Elangovan', 'Coolie', 15000.00, 1, 18000.00, 22000.00, 'TONDIARPET,CHENNAI', 'TONDIARPET,CHENNAI', '2307080004', '1', '2', 'upload_files/candidate_tracker/55757308221_sangeetha.Resume-1 (1).pdf', NULL, '1', '2023-07-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average No much good in Digital MArketing Have Exp for few months  and she is into sales but not interested to get into sales again.Written communicaiton Poor will not sustain and not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-08 11:26:07', 85, '2023-07-08 01:07:24', 0, NULL, 1),
(13567, 'Priyadarshini.D', '5', '9150799145', '9976995413', 'ppriyadarshini649@gmail.com', '2003-07-18', 19, '2', '2', 'Dharuman.G', 'Catering', 10000.00, 1, 0.00, 15000.00, '53 Mariamman koil Street Villupuram tamilnadu', '19/24 Saiva muthaiya 6th Royapettah Chennai 14', '2307080005', '1', '1', 'upload_files/candidate_tracker/45232060433_PRIYADHARSHINI_D_RESUIME.docx', NULL, '1', '2023-07-08', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1008', '', NULL, NULL, NULL, 1, '2023-07-08 11:29:08', 101, '2023-07-08 04:26:06', 0, NULL, 1),
(13568, 'ABIRAMI.S', '21', '7871939797', '7305441895', 'bcs03abirami@gmail.com', '2003-04-10', 20, '2', '2', 'Sheshathri .t', 'Gold smith', 15000.00, 1, 0.00, 20000.00, '27 ovm street triplicane chennai 600005', '27 Ovm Street Triplicane Chennai 600005', '2307080006', '1', '1', 'upload_files/candidate_tracker/50033841632_abi resume 2.docx', NULL, '1', '2023-07-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice process only not open to handle the pressure will not sustain', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1008', '0', NULL, NULL, NULL, 1, '2023-07-08 11:30:38', 1, '2023-07-08 11:39:56', 0, NULL, 1),
(13569, 'Ayyappa', '13', '8838543538', '', 'piab902@gmail.com', '1999-06-30', 24, '3', '2', 'Parthasarathy', 'Auto driver', 15000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2307080007', '', '1', 'upload_files/candidate_tracker/99132880921_AYYAPPA_FSResume.pdf', NULL, '1', '2023-07-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-08 11:33:20', 1, '2023-07-08 11:48:03', 0, NULL, 1),
(13570, '', '0', '7871939787', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307080008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-08 11:51:52', 0, NULL, 0, NULL, 1),
(13571, 'Akilesh sudarsanan', '5', '9840755452', '9094802796', 'akileshstonecold@gmail.com', '2001-07-30', 21, '2', '2', 'Sudarsanan', 'Musician', 10000.00, 1, 20000.00, 30000.00, 'Chennai', 'Chennai', '2307080009', '1', '2', 'upload_files/candidate_tracker/24321444143_akilesh resume (1).pdf', NULL, '1', '2023-07-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Sales exp with Bankbazaar Long career Gap recently joined YEs bank and now he is lookin for change in 3 months  again for the salary growth asked him to wait for second level but left wothout attending ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-08 12:13:53', 108, '2023-07-08 12:26:41', 0, NULL, 1),
(13572, 'N.udhaya chandru', '5', '7448671735', '9092985344', 'rishi2345rr7564827@gmail.com', '2003-02-18', 20, '3', '2', 'A.nataraj', 'Driver', 30000.00, 2, 0.00, 15.00, 'Tondaiyarpet', 'Tondaiyarpet', '2307080010', '', '1', 'upload_files/candidate_tracker/82929370038_Resume_Udhaya_Format3.pdf', NULL, '3', '2023-07-08', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-08 12:15:46', 101, '2023-07-08 04:26:18', 0, NULL, 1),
(13573, 'P.Ojaswinkrishna', '5', '7338828494', '', 'ojaskrish2709@gmail.com', '2002-09-27', 20, '3', '2', 'S.Premkumar', 'Nil', 15500.00, 1, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2307080011', '', '1', 'upload_files/candidate_tracker/12588732158_resume (1).pdf', NULL, '3', '2023-07-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance Looking for Non voice process will not sustain and handle our work pressure not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-08 12:15:49', 101, '2023-07-08 04:20:43', 0, NULL, 1),
(13574, 'Murugan', '5', '7845986598', '8124081478', 'muruganmurugan17824@gmail.com', '2003-07-22', 19, '3', '2', 'Ramesh', 'Driver', 30.00, 2, 0.00, 15.00, 'Thiruvetriyur', 'Thiruvetriyur', '2307080012', '', '1', 'upload_files/candidate_tracker/69435606194_RESUME MURUGAN 01.pdf', NULL, '3', '2023-07-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable Will Not Sustain', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-08 12:15:49', 101, '2023-07-08 04:20:31', 0, NULL, 1),
(13575, 'Bharathi', '5', '7358171145', '7200116144', 'www.bharathikasthuri2001@gmail.com', '2001-09-24', 21, '2', '2', 'M.vadivel', 'Nil', 150000.00, 1, 14000.00, 18000.00, 'Nungambakkam', 'Nungambakkam', '2307080013', '1', '2', 'upload_files/candidate_tracker/60027925186_bharathi_resume_new.docx', NULL, '1', '2023-07-10', 5, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not opening her mouth, ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-08 12:48:39', 101, '2023-07-10 09:54:04', 0, NULL, 1),
(13576, 'Keerthika. B', '5', '6374108368', '', 'Keerthikakeerthi982@gmail.com', '2001-06-11', 22, '2', '2', 'Maheshwari. B', 'KG Teacher', 150000.00, 1, 14000.00, 18000.00, 'Thiruvottiyur chennai 19', 'RajaShanmugam Nagar 3rd Street Thiruvottiyur Ch19', '2307080014', '1', '2', 'upload_files/candidate_tracker/69575990318_keerthi resume-1-1.docx', NULL, '1', '2023-07-10', 5, '', '3', '59', '2023-07-11', 186000.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-08 12:49:36', 60, '2023-07-17 04:00:35', 0, NULL, 1),
(13577, '', '0', '8680857517', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307080015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-08 07:03:44', 0, NULL, 0, NULL, 1),
(13578, 'Amarnath rajan D', '5', '8072047169', '8838567281', 'amarnathrajan30@gmail.com', '2002-11-07', 20, '2', '2', 'DEVENDRAN K', 'retail shop', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2307100001', '1', '1', 'upload_files/candidate_tracker/36113998979_Amarnath rajan D ^^.docx', NULL, '1', '2023-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-10 09:44:57', 108, '2023-07-11 06:54:08', 0, NULL, 1),
(13579, 'B . Sudha sravanthi', '11', '8939794058', '7305314996', 'sudhabeemagunta@gmail.com', '2000-09-11', 22, '3', '2', 'Malakondaiah', 'Working', 25000.00, 1, 0.00, 23000.00, 'Perambur', 'Pulliyanthop', '2307100002', '', '1', 'upload_files/candidate_tracker/82678631723_BEEMAGUNTA SUDHA SRAVANTHI RESUME-1.pdf', NULL, '1', '2023-07-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Not Much comfort in office timing got another offer and not joined due to timing local tamil language she is having issues', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-10 10:25:04', 101, '2023-07-10 03:27:40', 0, NULL, 1),
(13580, 'Barath B.N.K', '13', '8489730805', '8883107800', 'bnkbarath@gmail.com', '2000-03-19', 23, '3', '2', 'Karthikeyan.N', 'Accountent', 360000.00, 1, 0.00, 18000.00, 'Bhavani', 'Bhavani', '2307100003', '', '1', 'upload_files/candidate_tracker/3883381381_bnk.barath cv.pdf', NULL, '1', '2023-07-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic Skills knowledge Preferred JAVA and will not sustain and handle our work pressure', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-10 10:25:18', 101, '2023-07-10 03:24:55', 0, NULL, 1),
(13581, 'Sivakumar', '13', '9597018169', '', 'Siva44838@gmail.com', '1998-11-29', 24, '6', '2', 'Muruganandham', 'farmer', 12000.00, 1, 0.00, 25000.00, '176/5,south Street,pappampatti,palani', 'chennai', '2307100004', '', '1', 'upload_files/candidate_tracker/12536067084_Sivakumar.M-BE.pdf', NULL, '1', '2023-07-10', 0, '', '3', '59', '2024-01-03', 0.00, '', '5', '1970-01-01', '2', 'Fresher no basic skills knowledge preferred to strat his career in Java', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', 'reappeared for interview on 02Jan2024 and got selected', '', '', '', NULL, NULL, NULL, 1, '2023-07-10 10:48:58', 60, '2024-01-03 10:24:56', 0, NULL, 1),
(13582, 'daniel.s', '4', '8754307095', '8608935090', 'sddani2002@gmail.com', '2002-02-08', 21, '1', '2', 'rokiya selvi', 'house keeping', 20000.00, 2, 11500.00, 13000.00, 'abraham pandither nagar thanjavur', 'abraham pandither nagar thanjavur', '2307100005', '', '2', 'upload_files/candidate_tracker/11580922618_ASHOKKUMAR RESUME.pdf', NULL, '1', '2023-07-10', 10, 'p1023', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-10 11:27:09', 101, '2023-07-10 05:18:09', 0, NULL, 1),
(13583, 'Stephanie', '5', '9940146487', '9710476413', 'lorrainefurnell@yahoo.com', '1993-09-20', 29, '2', '2', 'Nil', 'Telecaller', 40000.00, 0, 0.00, 30000.00, 'Madhavaram', 'Madhavaram', '2307100006', '1', '1', 'upload_files/candidate_tracker/70645212540_Steffy7.docx', NULL, '1', '2023-07-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not sustain in our roles over confidence Communication Good she will not sustain in a company previous exp lot of issue with the management', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-10 11:53:24', 85, '2023-07-10 12:03:23', 0, NULL, 1),
(13584, 'Manoj', '5', '8939678212', '', 'manoahsamuel.jd@gmail.com', '2002-07-25', 20, '2', '2', 'S.Arasan', 'Building Demolition', 50.00, 2, 0.00, 15.00, 'No:12 Sundarapuram 1st main road choolai', 'Chennai', '2307100007', '1', '1', 'upload_files/candidate_tracker/97715993082_MY RESUME.pdf', NULL, '1', '2023-07-10', 0, '', '3', '59', '2023-07-12', 195000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team in Staff role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-10 01:14:04', 60, '2023-07-12 10:24:34', 0, NULL, 1),
(13585, 'P. Jenifer', '5', '8015719104', '9344074907', 'prasathjeni051@gmail.com', '2003-08-05', 19, '1', '1', 'Prasath', 'Artist', 25000.00, 1, 0.00, 15000.00, 'Purusaiwakkam', 'Chennai purusaiwakkam', '2307100008', '', '1', 'upload_files/candidate_tracker/35720809279_Image to PDF 20230710 14.17.29.pdf', NULL, '1', '2023-07-10', 0, 'P1370', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher 12th graduate need to train a lot candidate need to open a lot internal team reference kindly check and let me know your inputs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-10 02:07:29', 101, '2023-07-10 03:14:43', 0, NULL, 1),
(13586, 'Naveen Kumar V', '22', '9943283782', '', 'naveenkumarv2000.mba@gmail.com', '2000-09-05', 22, '4', '2', 'Vinayagam B', 'Auto Driver', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2307100009', '', '1', 'upload_files/candidate_tracker/12726467883_DM Resume - Naveen - PDF.pdf', NULL, '1', '2023-07-10', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Very fresher written communication Average need to train from the scratch post hiring of exp can give a try', '2', '1', '0', '1', '8', '0', '2', '2023-07-20', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-10 03:45:00', 1, '2023-07-10 04:00:26', 0, NULL, 1),
(13587, 'SIVAGANESH', '5', '7339640445', '8675458419', 'sivaganesh102000@gmail.com', '2000-10-24', 22, '2', '2', 'R.pitchaikani', 'Mill', 150000.00, 2, 0.00, 150000.00, 'Virudhunagar', 'Chennai', '2307100010', '1', '1', 'upload_files/candidate_tracker/68030033274_SivaGanesh-B.E-Aeronautical-2022-Java.pdf', NULL, '1', '2023-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Scope in work will not handle the work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-10 04:39:52', 108, '2023-07-11 06:54:29', 0, NULL, 1),
(13588, 'Devajeet Panda', '5', '6371381513', '8249718833', 'pandadebajit@gmail.com', '1994-05-27', 29, '3', '1', 'Minakhi Bisoyee', 'Priest', 25000.00, 2, 24000.00, 32000.00, 'Behrampur', 'Marathahalli, Bangalore', '2307100011', '', '2', 'upload_files/candidate_tracker/36259972498_Devajeet Panda.CC.docx', NULL, '1', '2023-07-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-10 04:48:53', 104, '2023-07-12 09:57:05', 0, NULL, 1),
(13589, 'Pradeep', '16', '8939656211', '', 'pradeepdeep477@gmail.com', '1997-11-10', 25, '2', '2', 'Usharani', 'Housewife', 10000.00, 0, 20000.00, 20000.00, 'Chennai', 'Chennai', '2307100012', '1', '2', 'upload_files/candidate_tracker/53381113404_pradeep - CORRECTED -pdf.pdf', NULL, '1', '2023-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for nonvoice process', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-10 04:53:46', 108, '2023-07-11 06:54:48', 0, NULL, 1),
(13590, 'Gokulraj Vinayagam', '13', '6382756973', '8682938773', 'gsfreaky5@gmail.com', '2000-02-21', 23, '3', '2', 'Vinayagam', 'Farmer', 60000.00, 2, 0.00, 30000.00, 'No 389, Kovil kuppam Vedal, vandavasi,tvm .604501', 'Porur , Chennai', '2307100013', '', '1', 'upload_files/candidate_tracker/35296124358_Gokulraj Vinayagam resume.pdf', NULL, '1', '2023-07-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Basic Skills not suitable not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-10 05:10:21', 1, '2023-07-10 05:15:44', 0, NULL, 1),
(13591, 'Poojitha G', '6', '9150860080', '7904995741', 'poojithagowrinath@gmail.com', '1993-09-17', 29, '4', '1', 'Krishnamoorthy', 'Team leader for Sales', 55000.00, 2, 24000.00, 30000.00, 'Porur', 'Porur', '2307100014', '', '2', 'upload_files/candidate_tracker/11140372681_Poojitha Resume-3.docx', NULL, '1', '2023-11-23', 30, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-10 05:53:45', 108, '2023-11-23 07:12:09', 0, NULL, 1),
(13592, '', '0', '6380730981', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307100015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-10 06:11:47', 0, NULL, 0, NULL, 1),
(13593, 'Silambarasan P', '5', '9025542118', '7502640895', 'simbumaruthi1354@gmail.com', '2001-03-29', 22, '2', '2', 'Perumal', 'Vessels work', 30000.00, 1, 16000.00, 20000.00, 'Thirukovilur', 'Thirukovilur', '2307100016', '1', '2', 'upload_files/candidate_tracker/73395643500_CV_2023060515341255.pdf', NULL, '1', '2023-07-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-10 07:33:23', 108, '2023-07-11 12:42:12', 0, NULL, 1),
(13594, 'Devalingam', '5', '7868866428', '', 'devalingam2000@gmail.com', '2000-08-17', 22, '2', '2', 'Rajamani.c', 'driver', 10000.00, 1, 18000.00, 18000.00, '325 ,jj nagar iyangarkulam ,kancheepuram 631502', '21/10 ameerjan st, choolaimedu High road ,Chennai', '2307110001', '1', '2', 'upload_files/candidate_tracker/16728601030_deva resume updated.docx', NULL, '1', '2023-07-11', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-11 12:19:57', 101, '2023-07-11 12:13:18', 0, NULL, 1),
(13595, 'Prashant sanjay katkar', '31', '9503149021', '8754688857', 'prashant.katkar2021@gmail.com', '2000-10-09', 22, '2', '2', 'Sanjay', 'Worker', 30000.00, 1, 0.00, 30000.00, 'Satara maharashtra', 'Perambalur tamilnadu', '2307110002', '1', '1', 'upload_files/candidate_tracker/68519296007_prashant resume 9.pdf (2).pdf', NULL, '1', '2023-07-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basics Communication Barrier not sutiable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2023-07-11 10:45:07', 1, '2023-07-11 10:54:32', 0, NULL, 1),
(13596, 'M.Anusuya', '5', '8148828606', '', 'anusuyaanu2702@gmail.com', '2002-07-02', 21, '1', '2', 'Marimuthu .A', 'Kuli', 20000.00, 1, 0.00, 14000.00, 'No:59 Gandhi street rajaji nagar tvt Chennai 19', 'No:59 Gandhi Street Rajaji Nagar Tvt Chennai 19', '2307110003', '', '1', 'upload_files/candidate_tracker/53233748058_ Kamalesh Y resume ????.pdf', NULL, '1', '2023-07-11', 0, 'P1287', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT SELECTED', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-11 10:58:37', 101, '2023-07-11 12:22:08', 0, NULL, 1),
(13597, 'Selvapriya.N', '5', '9150824223', '', 'priyanageswaran008@gmail.com', '2003-06-01', 20, '1', '2', 'Nageswaran.R', 'Driver', 20000.00, 1, 0.00, 14000.00, '54, Kamaraj Street rajaji Nagar TVT chennai 600019', '54, Kamaraj Street Rajaji Nagar TVT Chennai 600019', '2307110004', '', '1', 'upload_files/candidate_tracker/57650783732_Selvapriya resume .pdf', NULL, '1', '2023-07-11', 0, 'P1287', '3', '59', '2023-07-13', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team in Consultant Role', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-11 11:00:41', 60, '2023-07-13 11:10:28', 0, NULL, 1),
(13598, 'Vignesh. S', '5', '6383446356', '9962073951', 'vicky1932001@gmail.com', '2002-03-19', 21, '2', '2', 'Sakthivel. M', 'Fisherman', 30000.00, 0, 12000.00, 15000.00, 'No 2 YMCA 4th street Thondairpet chennai-81', 'No 2 YMCA 4th Street Thondairpet Chennai-81', '2307110005', '1', '2', 'upload_files/candidate_tracker/67462675596_Vicky Resume PDF.pdf', NULL, '3', '2023-07-12', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-11 11:04:47', 101, '2023-07-12 10:33:15', 0, NULL, 1),
(13599, 'M Sathish', '5', '8012840886', '', 'samsathishm8@gmail.com', '1997-07-09', 26, '2', '2', 'Mani', 'Agriculture', 15000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2307110006', '1', '1', 'upload_files/candidate_tracker/37988722871_SATHISH M.pdf', NULL, '1', '2023-07-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-11 11:15:46', 108, '2023-07-11 06:55:17', 0, NULL, 1),
(13600, 'Ragunapriya V', '23', '7401110510', '', 'ragunapriya@gmail.com', '1997-01-02', 26, '3', '2', 'K.vadivel(passed away)', 'Farmer', 60000.00, 2, 17000.00, 20000.00, '3/263Thiruchitrambalam west,post, Pattukkottai t.k', 'Y block,Shri ladies women hostel Anna nagar', '2307110007', '', '2', 'upload_files/candidate_tracker/75050535959_Raguna.pdf', NULL, '1', '2023-07-11', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not strong with UI basics not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-11 11:16:42', 1, '2023-07-11 11:27:17', 0, NULL, 1),
(13601, 'Ezhiloviya Y', '5', '7397455448', '9176238258', 'ezhilmary@6gamil.com', '2002-02-20', 21, '2', '2', 'Yoogaraj R', 'Security officer', 12000.00, 3, 0.00, 18000.00, 'Chennai', 'Chennai', '2307110008', '1', '1', 'upload_files/candidate_tracker/20916510801__Resume UI_UX .pdf', NULL, '1', '2023-07-11', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-11 11:32:07', 108, '2023-07-11 03:12:47', 0, NULL, 1),
(13602, 'nirmal kumar', '16', '7845885145', '', 'mrnirmal05nk@gmail.com', '1994-11-05', 28, '2', '2', 'ambigapathy', 'salaried', 50000.00, 2, 350000.00, 350000.00, 'tiruvottiyur chennai', 'tiruvottiyur chennai', '2307110009', '1', '2', 'upload_files/candidate_tracker/44404760149_Resume of Nirmal Kumar.pdf', NULL, '1', '2023-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left wothout attending', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-11 11:53:20', 108, '2023-07-11 06:52:31', 0, NULL, 1),
(13603, 'Aman', '33', '8056283491', '', 'Amamvijay23@gmail.com', '2008-07-11', 0, '1', '2', 'Vijakumar', 'Accountant', 30000.00, 1, 10000.00, 25000.00, 'Chrompet', 'Chrompet', '2307110010', '', '2', 'upload_files/candidate_tracker/61297167450_Aman\'s Resume-3.pdf', NULL, '1', '2023-07-11', 1, '55645', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Account Financial Analyst role only CMA Inter', '4', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-11 12:26:22', 1, '2023-07-11 12:41:19', 0, NULL, 1),
(13604, 'DHIVYA H', '6', '6374256549', '9363271323', 'divyaharikrishnan23@gmail.com', '2000-03-23', 23, '2', '2', 'Harikrishnan R', 'Labour', 60000.00, 2, 18000.00, 25000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2307110011', '1', '2', 'upload_files/candidate_tracker/16320733596_Dhivya Harikrishnan Resume 2023.pdf', NULL, '1', '2023-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Need to open a lot but have 1 yyr customer support roles kindly check and let mekow your interest', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-11 12:27:31', 108, '2023-07-11 03:13:39', 0, NULL, 1),
(13605, 'Leena Shree P', '4', '7395833212', '8892941969', 'pleenashree@gmail.com', '1996-07-02', 27, '2', '1', 'Charles', 'Working', 35000.00, 1, 32500.00, 35000.00, 'Thanjavur', 'Thanjavur', '2307110012', '1', '2', 'upload_files/candidate_tracker/27214567490_Leena Shree - Resume .pdf', NULL, '1', '2023-07-11', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-11 12:32:26', 108, '2023-07-17 06:20:11', 0, NULL, 1),
(13606, 'Akash S', '5', '8122426041', '9791911974', 'asyakash50@gmail.com', '1998-07-04', 25, '2', '2', 'sudharsanan k', 'business', 30000.00, 1, 19500.00, 25000.00, 'oragadam', 'oragadam', '2307110013', '1', '2', 'upload_files/candidate_tracker/96219459060_I am sharing', NULL, '1', '2023-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance up and down 90 kms not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-11 12:47:24', 108, '2023-07-11 03:13:02', 0, NULL, 1),
(13607, 'rajan c', '5', '9791911974', '', 'rajanchandiran006@gmail.com', '1996-01-02', 27, '2', '2', 'chandiran', 'former', 35000.00, 4, 21000.00, 25000.00, 'oragadam', 'oragadam', '2307110014', '1', '2', 'upload_files/candidate_tracker/55410986281_CamScanner_11-07-2023_13-39-06_DwknN6e5.pdf', NULL, '1', '2023-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too Long Distance Up And Down 90 Kms Not Suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-11 01:13:30', 108, '2023-07-11 03:13:13', 0, NULL, 1),
(13608, 'Murugappan', '22', '9940637650', '9445968666', 'saimurugappan2002@gmail.com', '2002-03-09', 21, '3', '2', 'Mr.Nagappan', 'Salesman', 10000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2307110015', '', '1', 'upload_files/candidate_tracker/96446718295_RESUME MURUGAPPAN.pdf', NULL, '1', '2023-07-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication will not sustain and no basics ', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-11 01:35:20', 1, '2023-07-11 01:45:15', 0, NULL, 1),
(13609, 'Sharankumar', '11', '7358499138', '9952653197', 'shrankumar99@gmail.com', '2001-11-01', 21, '3', '2', 'Rajasekaran', 'Reporter', 50000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2307110016', '', '1', 'upload_files/candidate_tracker/52872980742_Sharan Resume_1689058059827_Sharan Kumar.docx', NULL, '1', '2023-07-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average not much suitable in our roles will not sustain', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-11 01:46:34', 1, '2023-07-11 01:48:58', 0, NULL, 1),
(13610, 'Kishore Kumar', '2', '9841510416', '9360714802', 'kishorekumarmuthu0906@gmail.com', '1985-06-18', 38, '3', '1', 'Rekha R', 'pHP developer', 35000.00, 1, 23000.00, 35000.00, 'Chennai', 'Chennai', '2307110017', '', '2', 'upload_files/candidate_tracker/5205836577_KISHORE_KUMAR_MUTHU_Resume.docx', NULL, '1', '2023-07-11', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject - Tamilmani', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-11 03:06:25', 1, '2023-07-11 03:10:04', 0, NULL, 1),
(13611, 'Sadam Hussain P', '5', '9789865594', '', 'Hsadam758@gmail.com', '1994-05-05', 29, '4', '1', 'Shameema', 'House wife', 20000.00, 2, 20000.00, 20000.00, 'Adambakkam', 'Adambakkam', '2307110018', '', '2', 'upload_files/candidate_tracker/39580855624_Sadam.pdf', NULL, '1', '2023-07-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Long Career Gap No sustainability Not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-11 04:39:17', 1, '2023-07-11 04:47:30', 0, NULL, 1),
(13612, '', '0', '9113843506', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307110019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-11 08:00:31', 0, NULL, 0, NULL, 1),
(13613, 'dixitha', '5', '6379312213', '', 'jaindixitha8@gmail.com', '1999-04-15', 24, '3', '2', 'ranjeet k jain', 'business men', 180000.00, 2, 33000.00, 37000.00, 'chennai', 'chennai', '2307120001', '', '2', 'upload_files/candidate_tracker/82644249359_Dixitha\'s Resume.pdf', NULL, '1', '2023-07-12', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-12 01:12:13', 1, '2023-07-12 01:22:27', 0, NULL, 1),
(13614, 'MATHESHWARAN B', '13', '6374939689', '', 'matheshranji665@gmail.com', '2001-04-11', 22, '2', '2', 'Baskaran R', 'Former', 8000.00, 1, 0.00, 10000.00, '115/2, keela st, seventhalingapuram, trichy 621202', 'Chennai', '2307120002', '26', '1', 'upload_files/candidate_tracker/37363221589_Matheshwaran.pdf', NULL, '1', '2023-07-12', 0, '', '3', '59', '2023-07-17', 120000.00, '', '0', NULL, '1', 'Selected for Intern React', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-12 10:03:04', 1, '2023-07-12 10:06:55', 0, NULL, 1),
(13615, 'L.Anushya', '5', '9940096304', '9363110543', 'aanukutty301@gmail.com', '2003-04-29', 20, '1', '2', 'L.Annalakshmi', 'House wife', 96000.00, 1, 0.00, 18000.00, 'No.25, Masthan Kovil Street, Thiruvottiyur Ch-19', 'No.25, Masthan Kovil Street, Thiruvottiyur Ch-19', '2307120003', '', '1', 'upload_files/candidate_tracker/34642448335_ANU.pdf', NULL, '1', '2023-07-12', 0, 'P1066', '3', '59', '2023-07-13', 164400.00, '', '5', '1970-01-01', '2', 'Selected for Charles TEam in consultant Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-12 10:05:19', 60, '2023-07-13 11:07:00', 0, NULL, 1),
(13616, 'Mohana', '5', '9360480576', '7200647809', 'mohanamonisha7777@gmail.com', '2001-03-09', 22, '1', '2', 'S Murugan', 'Housekeeping', 15000.00, 2, 0.00, 15000.00, 'No.5/8 East cemetery Road Oldwasmenpet', 'Oldwasmenpet, Chennai', '2307120004', '', '1', 'upload_files/candidate_tracker/73876039609_DOC-20230315-WA0003..pdf', NULL, '1', '2023-07-12', 0, 'P1066', '3', '59', '2023-07-13', 164400.00, '', '5', '1970-01-01', '2', 'Selected for Charles Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-12 10:05:20', 60, '2023-07-13 11:07:31', 0, NULL, 1),
(13617, 'K.Nasiha', '7', '9176434253', '9025108100', 'sowthoonnasiha0611@gmail.com', '2000-11-06', 22, '3', '2', 'O.S. kithru Nawas', 'Labour', 14000.00, 1, 13000.00, 16000.00, 'Villivakkam, Chennai', 'Villivakkam, Chennai', '2307120005', '', '2', 'upload_files/candidate_tracker/39422467877_Nasiha resume.pdf', NULL, '1', '2023-07-12', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '2nd Round Reject in MIS Sustainability will not n', '7', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-12 10:14:20', 1, '2023-07-12 10:19:30', 0, NULL, 1),
(13618, 'Rajesh', '5', '7358423275', '', 'rajeshs1212s@gmail.com', '2000-01-12', 23, '2', '2', 'subramani', '-', 45000.00, 0, 15000.00, 19000.00, 'vadapalani', 'vadapalani', '2307120006', '1', '2', 'upload_files/candidate_tracker/88878765203_RAJESH resume 5 -1.pdf', NULL, '1', '2023-07-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok pls check with Pay slip and offer letter. pls confirm the joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-12 10:55:31', 108, '2023-07-12 11:15:52', 0, NULL, 1),
(13619, 'Mohamed Nabeel', '13', '9080554110', '9500655778', 'mohamednabeel163@gmail.com', '2000-05-02', 23, '1', '2', 'Mohamed nisar basha', 'Hotel', 30000.00, 2, 0.00, 400000.00, 'Vellore', 'Chennai', '2307120007', '', '1', 'upload_files/candidate_tracker/22057746795_resume n.pdf', NULL, '1', '2023-07-12', 0, 'Sathish', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Open Or TxxampC If He Comes Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-12 12:07:18', 1, '2023-07-12 12:11:56', 0, NULL, 1),
(13620, 'Krishna Kumar', '5', '9944407494', '', 'madhankrishna2002@gmail.com', '2002-12-19', 20, '2', '2', 'Muthukumar', 'Farmer', 5000.00, 1, 0.00, 13000.00, '331/1 vellar Street, kabishthalam, Papanasam.', 'Chennai,porur', '2307120008', '1', '1', 'upload_files/candidate_tracker/31413826546_RESUME 1.pdf', NULL, '3', '2023-07-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Voice Process Much', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-12 12:07:22', 108, '2023-07-12 03:06:36', 0, NULL, 1),
(13621, 'Babu', '5', '6385589202', '6382684351', 'babu09102000@gmail.com', '2000-10-09', 22, '2', '2', 'Mani', 'Vegetable Shop', 21000.00, 2, 16000.00, 19000.00, 'Tindivanam', 'Chennai', '2307120009', '1', '2', 'upload_files/candidate_tracker/74531361714_RESUM 1.pdf', NULL, '1', '2023-07-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-12 01:46:34', 101, '2023-07-13 05:04:26', 0, NULL, 1),
(13622, 'Mathesvaran k', '5', '7339461716', '', 'mathesvaranms@gamil.com', '2001-01-16', 22, '2', '2', 'Karthikeyan', 'Driver', 72000.00, 1, 0.00, 15000.00, 'Thiruppathur,sivangangai', 'Ramapuram', '2307120010', '1', '1', 'upload_files/candidate_tracker/71363030008_Mathesh resume.docx', NULL, '3', '2023-07-17', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-12 03:30:36', 104, '2023-07-18 09:40:27', 0, NULL, 1),
(13623, 'P.Stefy Arputha Mary', '5', '8056276479', '9566291326', 'stefyarputhamary@gmail.con', '2002-10-19', 20, '2', '2', 'Jayarathinam.P', 'Typist', 30000.00, 1, 0.00, 20000.00, 'No.98/58,Mandaveli street,Mandaveli,Chennai.28', 'No.98/58,Mandaveli Street,Mandaveli,Chennai.28', '2307120011', '1', '1', 'upload_files/candidate_tracker/64902358576_CV_202302250930498.pdf', NULL, '1', '2023-07-13', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-12 04:08:57', 101, '2023-07-13 05:05:12', 0, NULL, 1),
(13624, 'Arputha joe jerald', '4', '9042772377', '', 'Jojerald97@gmail.com', '1996-07-12', 27, '2', '1', 'Augustin maria', 'Mrd department anu hospital', 20000.00, 0, 0.00, 15000.00, 'THANJAVUR', 'THANJAVUR', '2307130001', '1', '2', 'upload_files/candidate_tracker/47564958084_jeo.pdf', NULL, '1', '2023-07-13', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-13 10:07:15', 101, '2023-07-13 04:59:59', 0, NULL, 1),
(13625, 'A. Siva suriyan', '23', '7010868798', '', 'wrathsuriya@gmail.com', '1995-10-31', 27, '2', '2', 'V. Asaithambi', 'Farmer', 10000.00, 1, 15000.00, 22000.00, 'Cuddalore', 'Adambakkam', '2307130002', '1', '2', 'upload_files/candidate_tracker/92188643177_sivasuriyanUlektz-1.pdf', NULL, '1', '2023-07-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Long Career Gap no basics knowledge will not sustain in our roles', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2023-07-13 10:18:42', 1, '2023-07-13 10:22:29', 0, NULL, 1),
(13626, 'Arunkumar', '13', '9677134220', '9094593828', 'arunkumar01051994@gmail.com', '1994-05-01', 29, '2', '2', 'Manimaran', 'Catering business', 10000.00, 3, 0.00, 8000.00, 'Chennai', 'Chennai', '2307130003', '26', '1', 'upload_files/candidate_tracker/25496884086_arun resume 2023 (2).pdf', NULL, '1', '2023-07-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'should come after learning\n', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-13 10:20:56', 1, '2023-07-13 10:26:08', 0, NULL, 1),
(13627, 'Paulkani.R', '5', '9498068329', '', 'Paulkani2002@gmail.com', '2002-08-04', 20, '1', '2', 'V.Ramar', 'Coolie', 10000.00, 2, 0.00, 15000.00, '149/187 main st,Neduzaliyan Nagar,Tondairpet', '149/187 Main St,Neduzaliyan Nagar,Tondairpet', '2307130004', '', '1', 'upload_files/candidate_tracker/30303784152_paulkani.pdf', NULL, '1', '2023-07-13', 0, 'P1287', '3', '59', '2023-07-14', 164400.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team in consultant role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-13 10:36:31', 104, '2023-08-04 12:16:16', 0, NULL, 1),
(13628, 'RAMYA VALARMATHI C', '5', '6383308197', '8870165412', 'rcrach98@gmail.com', '1998-12-13', 24, '2', '2', 'Chinnasami', 'Farmer', 25000.00, 4, 0.00, 15000.00, 'Dindigul', 'Ngo colony', '2307130005', '1', '1', 'upload_files/candidate_tracker/1452986203_ramya new resum.pdf', NULL, '1', '2023-07-13', 0, '', '3', '59', '2023-07-14', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team in Consultant role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-13 11:19:00', 60, '2023-07-14 11:37:01', 0, NULL, 1),
(13629, 'SANJAY', '16', '6383877668', '9677099180', 'sanjaymatthew607@gmail.com', '2002-04-13', 21, '2', '2', 'Appanraj', 'Hotel supervisor', 30000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2307130006', '1', '1', 'upload_files/candidate_tracker/55432975946_Sanjay Resume-1.pdf', NULL, '1', '2023-07-13', 0, '', '3', '59', '2023-07-17', 180000.00, '', '5', '1970-01-01', '2', 'Selected for MIS Renewal 2yrs NDA Communication Good Final Round Gokul', '3', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-13 11:20:58', 60, '2023-07-14 06:23:17', 0, NULL, 1),
(13630, 'PraveenKumar.R', '5', '7305776018', '7092851218', 'praveenkarthi1012@gmail.com', '2000-06-12', 23, '2', '1', 'Sangeetha', 'House wife', 23000.00, 1, 23000.00, 20000.00, 'Ayyapakkam', 'Ayyapakkam', '2307130007', '25', '2', 'upload_files/candidate_tracker/44510707264_Praveen Resume.pdf', NULL, '1', '2023-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending the interview', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-13 11:22:25', 101, '2023-07-13 05:08:02', 0, NULL, 1),
(13631, 'ARUNKUMAR.B', '5', '6380934530', '8939212180', 'arunsagi61302@gamil.com', '1996-04-27', 27, '2', '1', 'Sagayamary', 'Dress shop', 20.00, 1, 19.00, 20.00, 'No 604 T BLOCK old watchmenpet', 'No604 t block old watchmenpet', '2307130008', '25', '2', 'upload_files/candidate_tracker/80027301634_CURRICULUM VITAE-1.pdf', NULL, '1', '2023-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left Without Attending The Interview', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-13 11:22:59', 101, '2023-07-13 05:06:43', 0, NULL, 1),
(13632, 'Narayanakumar T', '13', '8754711175', '9994752916', 'ntnkumar2002@gmail.com', '2002-02-10', 21, '3', '2', 'Thangaraj N', 'Business man', 30000.00, 3, 0.00, 25000.00, 'Tirunelveli', 'Coimbatore', '2307130009', '', '1', 'upload_files/candidate_tracker/84921781904_kumar.resume.pdf', NULL, '1', '2023-07-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Basics Knowledge Will Not Sustain In Our Roles', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-13 11:50:39', 1, '2023-07-13 11:54:50', 0, NULL, 1),
(13633, 'Hena.H', '5', '9677268615', '', 'henamus2404@gmail.com', '2003-04-24', 20, '2', '2', 'S Mohammed Hassain', 'Water agency', 20000.00, 1, 0.00, 17000.00, '70/201 Thiru Vi ka nagar 5th Street pulianthope', '70/201 Thiru Vika Nagar 5th Street Pulianthope', '2307130010', '1', '1', 'upload_files/candidate_tracker/38452164045_Hena H - Resume.pdf', NULL, '1', '2023-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '2nd round hold and reject not much comfort in calling', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-13 11:51:41', 101, '2023-07-13 05:06:02', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13634, 'Jansi rani', '5', '7305711730', '', 'ranijansi633@gmail.com', '2001-09-15', 21, '2', '2', 'Raja', 'Wellder', 30000.00, 2, 0.00, 15.00, '60/2 ,9th main road Sashi reaka Nagar kkd Nagar', '60/2 ,9th main road Sashi reaka Nagar kkd Nagar', '2307130011', '1', '1', 'upload_files/candidate_tracker/80252853232_Jansi Rani.R_Resume-740.pdf', NULL, '1', '2023-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left Without Attending The Interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-13 12:11:14', 101, '2023-07-13 05:06:11', 0, NULL, 1),
(13635, 'Naveen Kumar V', '31', '7550022796', '', 'naveensriramv2000@gmail.com', '2000-12-23', 0, '6', '2', 'Venkatraman K', 'Gold smith', 15000.00, 1, 600000.00, 800000.00, 'Chennai', 'Chennai', '2307130012', '', '2', 'upload_files/candidate_tracker/57213429777_NaveenKumar(1).pdf', NULL, '1', '2023-07-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have 1 yr exp min exp 7 LPA will not sustain', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-13 12:34:42', 1, '2023-07-13 12:43:22', 0, NULL, 1),
(13636, 'Thirupurasundari', '5', '9789454350', '', 'mthiripurasundari1818@gmail.com', '1997-04-06', 26, '2', '1', 'Vasanth', 'Accounts', 200000.00, 0, 22000.00, 25000.00, 'thiruninravur', 'Thiruniravur', '2307130013', '1', '2', 'upload_files/candidate_tracker/80127608092_THIRIPURASUNDARI.docx', NULL, '1', '2023-07-17', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Satisfied', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-13 02:38:35', 101, '2023-07-17 01:08:13', 0, NULL, 1),
(13637, 'Ram Kumar S', '5', '9361825130', '9025041311', 'ramkumar22802@gmail.com', '2002-08-22', 20, '2', '2', 'Sankar', 'Farmer', 10000.00, 3, 0.00, 16000.00, '1/131, pillayar Kovil Street Anmarudai TVM dt', '18, Alayamman kovil Street Teynampet Chennai 18', '2307130014', '1', '1', 'upload_files/candidate_tracker/13507536391_Ram Kumar S Resume.pdf', NULL, '3', '2023-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not good with Communicaiton and will not sustain and handle our pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-13 02:45:48', 108, '2023-07-13 03:13:50', 0, NULL, 1),
(13638, 'Parthiban k', '5', '9443439629', '', 'Parthikajenderan@gmail.com', '1990-09-19', 32, '2', '1', 'Dhivya', 'Home maker', 25000.00, 2, 29000.00, 36000.00, 'Chennai', 'Porur', '2307140001', '1', '2', 'upload_files/candidate_tracker/49028733402_parthi resume-co (1).pdf', NULL, '1', '2023-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Long Career Gap Ditance he is not comfortable new for Insurance Sales will not sustain and handle our work pressure', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-14 09:12:05', 108, '2023-07-15 10:40:30', 0, NULL, 1),
(13639, 'Kandasamy', '5', '9345374176', '', 'cekandasamy@gmail.com', '1986-04-06', 37, '2', '2', 'Yasothai', 'Home Maker', 5000.00, 2, 15000.00, 20000.00, '2-9 Keelasinganodai Thirukadaiyur Mayiladuthurai', 'Chennai', '2307140002', '1', '2', 'upload_files/candidate_tracker/43372239739_Kandasamy 2023.docx', NULL, '1', '2023-07-14', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in operations but not much suitable with the work pressure will not sustain and handle the pressure', '5', '2', '', '1', '8', '', '2', '2023-07-21', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-14 10:08:04', 108, '2023-07-14 10:40:09', 0, NULL, 1),
(13640, 'Yogesh', '14', '8248159970', '7708039129', 'yogeshthirumeni2414@gmail.com', '1999-01-14', 24, '3', '2', 'V.P.Thirumeni', 'Barbar shop', 12000.00, 1, 0.00, 25000.00, 'Mulanur', 'Mulanur', '2307140003', '', '1', 'upload_files/candidate_tracker/79097074260_Yogesh besant.pdf', NULL, '1', '2023-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left with out attending', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-14 10:59:14', 1, '2023-07-14 11:03:58', 0, NULL, 1),
(13641, 'Pavithra.s', '6', '7299183430', '', 'pavithrasaravanan86@gmail.com', '2003-07-12', 20, '1', '2', 'M.Saravanan', 'Coolie', 10000.00, 2, 0.00, 12000.00, 'No:3/2,3rd, Street, Chandra sekar Nagar', 'Chennai', '2307140004', '', '1', 'upload_files/candidate_tracker/61992937551_Resume_Pavithra.S_Format1-1.pdf', NULL, '1', '2023-07-14', 0, '101609', '5', '105', NULL, 0.00, '', '0', NULL, '2', 'COMMUNICATION ERROR ITS VERY HARD TO TRAIN HER', '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-14 11:17:39', 1, '2023-07-14 11:22:27', 0, NULL, 1),
(13642, 'sathish kumar a', '13', '8667727201', '9087356563', 'websathish52@gmail.com', '2000-09-22', 22, '6', '2', 'anandha babu', 'software developer', 25000.00, 1, 15000.00, 25000.00, 'anna nagar', 'anna nagar', '2307140005', '', '2', 'upload_files/candidate_tracker/28579057935_Adobe Scan 14-Jul-2023.pdf', NULL, '1', '2023-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 1 yr exp in web developer but the salary exp is very high and not ready to come down', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-14 11:18:23', 101, '2023-07-25 10:44:44', 0, NULL, 1),
(13643, '', '0', '9787323682', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307140006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-14 11:42:19', 0, NULL, 0, NULL, 1),
(13644, '', '0', '9976634212', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-14 12:27:45', 0, NULL, 0, NULL, 1),
(13645, 'Latshumi narayanan', '33', '8667883402', '', 'latshumi2006narayanan@gmail.com', '2002-10-22', 20, '3', '2', 'Venkatasan g', 'Car driver', 30000.00, 2, 15000.00, 17000.00, 'Chennai', 'Chennai', '2307140008', '', '2', 'upload_files/candidate_tracker/85244744559_Resume_Latshumi Narayanna.pdf', NULL, '1', '2023-07-14', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basics knowledge will not sustain in our roles not suitable', '4', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-14 12:43:48', 1, '2023-07-14 01:24:40', 0, NULL, 1),
(13646, '', '0', '7358034530', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307140009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-14 12:48:27', 0, NULL, 0, NULL, 1),
(13647, 'Karthick', '5', '9789988352', '', 'karthi5123.rk@gmail.com', '1995-12-05', 27, '2', '1', 'Sailaja', 'Labour', 20000.00, 2, 23000.00, 28000.00, 'Chennai', 'Chennai', '2307140010', '1', '2', 'upload_files/candidate_tracker/2805362163_CV_2023062209165095.pdf', NULL, '1', '2023-07-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-14 12:54:16', 101, '2023-07-14 03:29:22', 0, NULL, 1),
(13648, 'Parthiban k', '4', '6369680180', '9600244419', 'guru.parthi7@gmail.com', '1990-02-27', 33, '2', '1', 'Puvinilavu', 'House wife', 40000.00, 0, 380000.00, 40000.00, 'Thanjavur', 'Thanjavur', '2307140011', '1', '2', 'upload_files/candidate_tracker/2624792313_PARTHIBAN_QA_Resume.pdf', NULL, '1', '2023-07-14', 10, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-14 12:54:40', 85, '2023-07-15 10:41:05', 0, NULL, 1),
(13649, 'A.Jayarani', '28', '7397352612', '9841162465', 'jayarani2107@gmail.com', '1999-07-29', 23, '4', '2', 'M.Arul', 'LIC Agent', 20000.00, 1, 14500.00, 17500.00, 'Chennai', 'Chennai', '2307140012', '', '2', 'upload_files/candidate_tracker/53930047279_jaya resume.doc', NULL, '1', '2023-07-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-14 12:58:15', 1, '2023-07-14 01:08:20', 0, NULL, 1),
(13650, 'Devadharshini', '23', '8667092386', '9952750300', 'dharshini171299@gmail.com', '1999-12-17', 23, '4', '2', 'Karthikeyan', 'Driver', 30000.00, 1, 192000.00, 350000.00, 'Madurai', 'Madurai', '2307140013', '', '2', 'upload_files/candidate_tracker/85628794698_Devadharshini.pdf', NULL, '1', '2023-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp but not much ideas in Javascript will not sustain and handle our work roles need to train a lot', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-14 01:49:54', 1, '2023-07-14 02:10:41', 0, NULL, 1),
(13651, 'D.Arnold', '5', '9094520949', '8015233805', 'ammuarnold@gmail.com', '2002-04-17', 21, '2', '2', 'Ammu. P(Single parent)', 'Office Assistant', 15000.00, 0, 0.00, 22000.00, 'Tolgate- chennai', 'Tolgate- chennai', '2307140014', '1', '2', 'upload_files/candidate_tracker/1857868444_Arnold. D, Resume.pdf', NULL, '1', '2023-07-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-14 04:34:42', 104, '2023-07-15 03:41:06', 0, NULL, 1),
(13652, 'Ezhilarasi v', '4', '7358618527', '', 'kasthuriezhilv@gmail.com', '2000-01-16', 23, '1', '2', 'Vinayagam v', 'Sales management', 120000.00, 2, 23000.00, 25000.00, 'Saidapet', 'Saidapet', '2307140015', '', '2', 'upload_files/candidate_tracker/22923830738_ezhil 16.pdf', NULL, '1', '2023-07-14', 1, 'CA126', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No sustainability 1.7 yrs 3 companies no communication no clarity inher previous emp will not sustain', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-14 04:47:50', 1, '2023-07-14 05:08:38', 0, NULL, 1),
(13653, 'GODWIN L', '5', '9025880287', '8939780652', 'godwinantalus12@gmail.com', '2003-01-07', 20, '2', '2', 'LENIN D', 'Business', 360000.00, 1, 0.00, 20000.00, 'No 4/378, rangarajapuram 1st main road, medavakkam', 'Vishalakshi nagar, arumbakkam', '2307140016', '1', '1', 'upload_files/candidate_tracker/2326866606_CV_2023071418470551.pdf', NULL, '1', '2023-07-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-14 06:35:49', 104, '2023-07-15 03:44:54', 0, NULL, 1),
(13654, 'Nandhini Devi. D', '5', '9361607293', '9360053432', 'nandhinid265@gmail.com', '2002-05-26', 21, '2', '2', 'Devendhiran. M', 'Commercial artist', 35000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2307140017', '1', '1', 'upload_files/candidate_tracker/11599271835_Resume Nandhini. D.pdf', NULL, '1', '2023-07-15', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our domain have exp in B2B Calling kindly check an dlet me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-14 06:52:21', 101, '2023-07-15 04:23:54', 0, NULL, 1),
(13655, 'Priya p', '5', '9363325634', '9842530752', 'priyaperumal507@gmail.com', '2003-08-09', 19, '2', '2', 'M.perumal', 'Weaver', 6000.00, 2, 0.00, 20000.00, 'No.46 iyyanarappan Kovil street valapandal', 'No.46 iyyanarappan Kovil street valapandal', '2307150001', '1', '1', 'upload_files/candidate_tracker/21092648390_resume..pdf', NULL, '1', '2023-07-17', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-15 08:58:51', 101, '2023-07-17 11:19:15', 0, NULL, 1),
(13656, 'Kalai selvi', '5', '9344688404', '8675582955', 'Kalaiselvimuthuraman1@gmail.Com', '2001-06-13', 22, '2', '2', 'Muthuraman', 'Farmer', 75000.00, 1, 0.00, 15000.00, 'Sivagangai', 'Thamparam', '2307150002', '1', '1', 'upload_files/candidate_tracker/90043791341_kalai selvi.M,-1.pdf', NULL, '1', '2023-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Pronunciation Poor will not handle the ork pressure not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-15 09:17:44', 101, '2023-07-15 12:58:23', 0, NULL, 1),
(13657, 'Nandhini', '5', '7550120683', '', 'Nandychristhu@gmail.com', '1998-10-23', 24, '2', '1', 'Christhuvaraj', 'Assistant manager', 25000.00, 1, 15000.00, 18000.00, 'Old washermenpet', 'Chennai-21', '2307150003', '1', '2', 'upload_files/candidate_tracker/54269219036_nandhini resume new...pdf', NULL, '1', '2023-07-15', 1, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Calling can be trained in our roles kindly check anc let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-15 10:00:57', 108, '2023-07-15 10:41:46', 0, NULL, 1),
(13658, 'Bhavadharani.R.N', '5', '7871803019', '7338961045', 'Deena.bhavya2016@gmail.com', '2001-11-19', 21, '2', '2', 'R.Ramesh Kumar', 'Security Officer', 13000.00, 1, 14000.00, 17000.00, '73/82, Village Road,Thiruvottiyur', 'Chennai 19', '2307150004', '1', '2', 'upload_files/candidate_tracker/38309500422_bhavya resume.pdf', NULL, '1', '2023-07-15', 1, '', '3', '59', '2023-07-17', 180000.00, '', '', '1970-01-01', '2', 'Selected for Syed Team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-15 10:01:21', 108, '2023-07-15 12:43:38', 0, NULL, 1),
(13659, 'B.Monika', '5', '8072381115', '9940677501', 'monibalu2001@gmail.com', '2001-12-07', 21, '2', '2', 'S.Balasubramani', 'Vegetable shop', 15000.00, 0, 0.00, 17000.00, 'No 2 rathinam street kondithope chennai 01', 'Chennai 01', '2307150005', '1', '2', 'upload_files/candidate_tracker/83335798857_B.MONIKA RESUME NEW.pdf', NULL, '1', '2023-07-15', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Operations team Gokul final round selected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-15 10:01:28', 108, '2023-07-15 10:42:57', 0, NULL, 1),
(13660, 'Meshak A', '23', '7200471755', '', 'meshak.designer@gmail.com', '2001-04-13', 22, '6', '2', 'Ramesh A', 'Ui Ux Designer', 40000.00, 1, 380000.00, 800000.00, 'Chennai', 'Chennai', '2307150006', '', '2', 'upload_files/candidate_tracker/43925008438_Meshak CV.pdf', NULL, '1', '2023-07-15', 7, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Holding an offer for 6 LPA', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-15 10:24:46', 101, '2023-07-17 12:53:54', 0, NULL, 1),
(13661, 'DEENADHAYALAN M B', '13', '8825993743', '', 'deenadhayalanmb@gmail.com', '2000-04-03', 23, '3', '2', 'BALARAMAN M S', '6 Lakhs', 60000.00, 1, 0.00, 300000.00, '22, Gangaiyamman Kovil Street, Podaturpet-631208', 'C34,Vanavil Apartment,patravakkam -600053.', '2307150007', '', '1', 'upload_files/candidate_tracker/14492911739_DEENADHAYALAN M B- Resume.pdf', NULL, '1', '2023-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to learn Looking for Java profile if he comes back let  us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-15 10:45:25', 1, '2023-07-15 10:56:44', 0, NULL, 1),
(13662, 'Deepak', '4', '8190013475', '', 'Skdeepak501@gmail.com', '1997-05-30', 26, '1', '2', 'Malathi', 'House wife', 15000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2307150008', '', '1', 'upload_files/candidate_tracker/16374855149_Jagadeesan.resume - Copy.pdf', NULL, '1', '2023-07-15', 0, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-15 12:10:28', 1, '2023-07-15 12:20:19', 0, NULL, 1),
(13663, 'Athilakshmi l', '5', '9092828711', '', 'alakshmil82@yahoo.com', '1982-11-12', 40, '3', '1', 'R leelatharan', 'Exserviceman', 360000.00, 0, 360000.00, 500000.00, 'Iaf avadi', 'Iaf avadi', '2307150009', '', '2', 'upload_files/candidate_tracker/88125849499_CURRICULAM VITAE1.docx', NULL, '1', '2023-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance Have high Exp age around 40 Not suitable', '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-15 12:37:15', 1, '2023-07-15 12:44:48', 0, NULL, 1),
(13664, 'Madhavan R', '5', '6369745556', '8428664085', 'madhavanca125@gmail.com', '1990-02-28', 33, '2', '1', 'Ravi chandran', 'Upriser', 30000.00, 0, 0.00, 23000.00, 'Jaferhanpet ashok nagar', 'Ashok nagar', '2307150010', '1', '2', 'upload_files/candidate_tracker/17871850885_Madhavan resume net.docx', NULL, '1', '2023-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for Sales will not sustain ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-15 12:41:24', 101, '2023-07-15 04:23:22', 0, NULL, 1),
(13665, 'Shalini. M', '5', '9600808861', '9500910562', 'Shalusweety61@gmail.com', '1997-03-06', 26, '2', '1', 'Manogharan', 'Salesman', 15000.00, 1, 10000.00, 15000.00, 'No. 20,ellaipillai street guindy', 'No. 20,ellaipillai street guindy', '2307150011', '1', '2', 'upload_files/candidate_tracker/56184320926_Shalini', NULL, '1', '2023-07-15', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice process only not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-15 01:25:30', 101, '2023-07-15 04:23:03', 0, NULL, 1),
(13666, 'Swaminathan S', '13', '6381721061', '', 'swaminathansoff@gmail.com', '1999-09-19', 23, '6', '2', 'Senthilkumar', 'Daily worker', 200000.00, 1, 0.00, 300000.00, 'Udumalpet', 'Chennai', '2307150012', '', '1', 'upload_files/candidate_tracker/26862228549_RESUME-3.pdf', NULL, '1', '2023-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain Holding an offer with CTS ', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-15 03:03:57', 1, '2023-07-15 03:06:46', 0, NULL, 1),
(13667, 'M.Deepa priya', '4', '7449043576', '7010908638', 'lonilinessqueen0907@gmail.com', '2002-07-09', 21, '2', '2', 'V.Murali Krishnan', 'Car Driver', 15000.00, 0, 0.00, 16.00, '3/302,nakkeran street, mogappair east, Chennai 37', '3/302,Nakkeran Street, Mogappair East, Chennai 37', '2307160001', '1', '2', 'upload_files/candidate_tracker/73535741818_DEEPA (RSM) (1).pdf', NULL, '1', '2023-07-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sustainbility will not sustain and not suitable', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-16 10:54:26', 104, '2023-07-18 09:39:51', 0, NULL, 1),
(13668, 'P.Divya', '5', '8220459096', '7845664183', 'divyapvpl03@gmail.com', '2003-06-15', 20, '2', '2', 'A.perumal', 'Weaver', 6000.00, 2, 0.00, 20000.00, 'No.799 Housing board,valapandal,ranipet dt', 'No.799 Housing Board,Valapandal,Ranipet Dt', '2307160002', '1', '1', 'upload_files/candidate_tracker/53701762311__Resume UI_UX .pdf', NULL, '1', '2023-07-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Poor Proninciation will not sustain and handle our work pressure', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-16 11:13:16', 101, '2023-07-17 11:19:34', 0, NULL, 1),
(13669, 'ELANGOVAN E', '5', '8489659946', '', 'e.elangovan16@gmail.com', '2001-03-16', 22, '2', '2', 'ELUMALAI D', 'Health Department', 26000.00, 1, 21000.00, 30000.00, '5/82, pooncholai nagar, Tiruvallur', '5/82, Pooncholai Nagar, Tiruvallur', '2307170001', '1', '2', 'upload_files/candidate_tracker/73275632351_Resume.PDF', NULL, '1', '2023-07-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have exp in semivoce and holding an offer for 18K and lookin for same semivoice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-17 09:55:30', 108, '2023-07-17 12:12:58', 0, NULL, 1),
(13670, 'Chithra Prasanna', '6', '7010664505', '8056071176', 'prasannadhanu0228@gmail.com', '2000-12-28', 22, '2', '2', 'Parents', 'Bag business', 25000.00, 1, 0.00, 15000.00, 'Erode', 'Anna nagar, Chennai', '2307170002', '1', '1', 'upload_files/candidate_tracker/30067020363_Chithra prasanna S D-2.pdf', NULL, '1', '2023-07-19', 0, '', '3', '59', '2023-07-25', 195000.00, '', '5', '1970-01-01', '1', 'Selected for KAnnan Tema in staff Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-17 10:14:25', 60, '2023-07-22 06:41:21', 0, NULL, 1),
(13671, 'Samidurai', '5', '8122659697', '9176359697', 'samiduraicr7@gmail.com', '2002-12-10', 20, '2', '2', 'Thangamani.s', 'Account', 15000.00, 1, 0.00, 20000.00, 'Adyar', 'Adyar', '2307170003', '1', '1', 'upload_files/candidate_tracker/43154612694_Resume.SD.pdf', NULL, '1', '2023-07-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non Voice Process no Communicaiton', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-17 11:07:27', 101, '2023-07-17 12:20:39', 0, NULL, 1),
(13672, 'Jamuna. S', '5', '8608664509', '', 'Janunarajeshwari297@gmail.com', '1999-10-18', 23, '2', '2', 'Shanmugam, rajeshwari', '40000', 40000.00, 1, 15000.00, 18000.00, 'Perambur', 'Perambur', '2307170004', '1', '2', 'upload_files/candidate_tracker/77170777556_CV_2023-07-16-064348.pdf', NULL, '1', '2023-07-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'HOlding SP code with SBI and not ready to cancel the same not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-17 11:35:56', 101, '2023-07-17 12:56:00', 0, NULL, 1),
(13673, 'Sandhiya.s', '5', '8681982485', '8056004860', 'sandysekarsandy@gmail.com', '1999-08-29', 23, '2', '2', 'Sekar.N', 'Corbender', 100000.00, 1, 15000.00, 17000.00, 'Perambur', 'Perambur', '2307170005', '1', '2', 'upload_files/candidate_tracker/80099066725_CV_2023-07-16-063541.pdf', NULL, '1', '2023-07-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'HOlding SP Code With SBI And Not Ready To Cancel The Same Not Suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-17 11:36:18', 101, '2023-07-17 12:57:29', 0, NULL, 1),
(13674, 'Deepak', '5', '9344055383', '6385295141', 'deepakvr462001@gmail.com', '2001-02-25', 22, '2', '2', 'A.Mahendran', 'Nil', 45000.00, 1, 0.00, 17000.00, 'Srivilliputhur', 'Chennai', '2307170006', '1', '1', 'upload_files/candidate_tracker/51150522435_resume Deepak.pdf', NULL, '1', '2023-07-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Shoulder injury communication Ok asked him to come post lunch but he didmt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-17 11:45:24', 60, '2023-07-18 07:20:49', 0, NULL, 1),
(13675, 'Logesh s', '5', '9384652529', '7904381321', 'smartlogesh219@gmail.com', '1995-07-21', 27, '2', '2', 'Sarala s', 'Diploma', 20000.00, 0, 17000.00, 30000.00, 'Chennai', 'Chennai', '2307170007', '1', '2', 'upload_files/candidate_tracker/59390713360_Resume_Logesh.pdf', NULL, '1', '2023-07-18', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not satisfied', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-17 07:08:35', 101, '2023-07-18 10:52:19', 0, NULL, 1),
(13676, 'HEPZIBHA. S', '5', '9789823010', '9710181828', 'hepzibhaselvaraj18@gmail.com', '2000-01-18', 23, '2', '2', 'Selvaraj.S', 'Bank canteen supervisor', 13000.00, 2, 17000.00, 20000.00, 'Chennai', 'Chennai', '2307170008', '1', '2', 'upload_files/candidate_tracker/72798240025_Hepzibha Selvaraj.pdf', NULL, '1', '2023-07-18', 0, '', '3', '59', '2023-07-20', 228000.00, '', '5', '1970-01-01', '1', 'Selected for Sarath Team', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-17 09:58:21', 60, '2023-07-20 10:13:42', 0, NULL, 1),
(13677, '', '0', '8148920894', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307170009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-17 11:24:26', 0, NULL, 0, NULL, 1),
(13678, 'A.SHARON NANCY', '5', '6374869667', '8015071194', 'nano010710@gmail.com', '2001-07-10', 22, '2', '2', 'Parent', 'Export', 10000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2307180001', '1', '2', 'upload_files/candidate_tracker/87805727101_Sharon Nancy RESUME-1-1 (1).pdf', NULL, '1', '2023-07-18', 0, '', '3', '59', '2023-07-24', 180000.00, '', '5', '1970-01-01', '2', 'Selecetd for Kannan Team Consutlant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-18 09:50:07', 60, '2023-07-22 06:39:23', 0, NULL, 1),
(13679, 'Kennady Abishake', '5', '8015913132', '', 'kennadyabishake1729@gmail.com', '1998-10-17', 24, '2', '2', 'johny', 'customer Service', 25000.00, 0, 0.00, 25000.00, 'chennai', 'chennai', '2307180002', '1', '2', 'upload_files/candidate_tracker/52805140746_New Abi resume.pdf', NULL, '1', '2023-07-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication not open fir Telecalling will not sustain not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-18 10:27:00', 108, '2023-07-18 03:32:13', 0, NULL, 1),
(13680, 'kamali', '6', '7448429985', '', 'kamalisuresh050@gmail.com', '2002-05-05', 21, '2', '2', 'suresh', 'dailywages', 150000.00, 1, 0.00, 15000.00, 'royapuram', 'royapuram', '2307180003', '1', '1', 'upload_files/candidate_tracker/81572578413_CV_2023062922510976 (1).pdf', NULL, '1', '2023-07-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Reject', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-18 11:23:03', 60, '2023-07-18 07:20:08', 0, NULL, 1),
(13681, 'bhuvaneshwari', '6', '9344843446', '', 'Bhuvaneshwarir526@gmail.com', '2002-06-26', 21, '2', '2', 'rajarathinam', 'late', 10000.00, 1, 0.00, 150000.00, 'royapuram', 'royapuram', '2307180004', '1', '1', 'upload_files/candidate_tracker/64475630786_CV_2023062922510976 (2).pdf', NULL, '1', '2023-07-18', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Fresher Need To Train A Lot Kindly Check And Let Me Knwo Your Inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-18 11:23:28', 60, '2023-07-18 07:20:34', 0, NULL, 1),
(13682, '', '0', '8189966299', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307180005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-18 12:15:57', 0, NULL, 0, NULL, 1),
(13683, 'Natheeshwaran', '31', '8072740053', '', 'natheeshwaran28@gmail.com', '2000-09-28', 22, '2', '2', '9843259095', 'Driver', 8000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2307180006', '28', '1', 'upload_files/candidate_tracker/68985063506_nathesh resume .pdf', NULL, '1', '2023-07-18', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come back after learning if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', '2023-07-29', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-18 12:19:58', 1, '2023-07-18 12:24:47', 0, NULL, 1),
(13684, 'Irfanbaig', '6', '7094714028', '', 'Irfanbaig1208@gmail.com', '2008-07-18', 0, '3', '2', 'Rashid', 'Tailor', 6500.00, 1, 17000.00, 18000.00, 'Avalurpet', 'Vadapalani', '2307180007', '', '2', 'upload_files/candidate_tracker/9347942055_Irfan CURRICULUM VITAE.docx', NULL, '1', '2023-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Telecalling', '5', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-18 03:15:01', 1, '2023-07-18 03:23:23', 0, NULL, 1),
(13685, 'MANOVA D', '4', '9176217961', '9884652357', 'manodoss4@gmail.com', '2001-07-24', 21, '2', '2', 'DEVA DOSS A', 'Ship welding', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2307180008', '1', '1', 'upload_files/candidate_tracker/4230475995_MANOVA D_17_07_2023_06_24_41_pm.pdf', NULL, '1', '2023-07-19', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'looking job  into IT ..long run doubts.. ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-18 10:04:42', 104, '2023-07-19 03:33:56', 0, NULL, 1),
(13686, 'Vignesh E', '5', '8056103768', '9894210196', 'Vicky93rox@gmail.com', '1993-05-22', 30, '2', '2', 'Shanthi E', 'Housewife', 40000.00, 1, 15000.00, 35000.00, 'Chennai', 'Chennai', '2307190001', '1', '2', 'upload_files/candidate_tracker/35238752794_vig resume.pdf', NULL, '1', '2023-07-19', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok. has  some  exp in sales xxamp Renewals. final round interviewed by gokul  xxamp Selected for Renewals.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-19 01:52:22', 85, '2023-07-19 03:05:48', 0, NULL, 1),
(13687, 'Yugeshwar', '4', '9789895160', '9600138851', 'Yugeshwar999@gmail.com', '2000-02-28', 23, '2', '2', 'Eswar', 'Story writer', 35000.00, 1, 23000.00, 21000.00, 'Mandaveli', 'Pallavaram', '2307190002', '1', '2', 'upload_files/candidate_tracker/49874788294_CV_2023071119113489.pdf', NULL, '1', '2023-07-19', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Has exp in sales. long run doubts xxamp Not suit for our process.', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-19 08:12:21', 85, '2023-07-19 03:06:00', 0, NULL, 1),
(13688, 'chandru kumar', '13', '8248189464', '', 'chandrukumar@gmail.com', '2001-03-23', 22, '3', '2', 'shanmugam', 'driver', 20000.00, 1, 0.00, 15000.00, 'iyyapanthangal', 'Iyyapanthangal', '2307190003', '', '1', 'upload_files/candidate_tracker/40401051288_web design resume.pdf', NULL, '1', '2023-07-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-19 11:12:33', 1, '2023-07-20 10:25:20', 0, NULL, 1),
(13689, 'Afrin', '4', '9600201287', '', 'afrinm869@gmail.com', '2003-01-11', 20, '2', '2', 'Mohamed Nazir', 'Driver', 30000.00, 1, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2307190004', '1', '1', 'upload_files/candidate_tracker/21085155266_afrin cv.pdf', NULL, '1', '2023-07-19', 0, '', '3', '59', '2023-07-24', 144000.00, '', '5', '1970-01-01', '2', 'Selected for Sithy Team Consultant Role', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-19 11:23:35', 60, '2023-07-20 10:44:24', 0, NULL, 1),
(13690, 'lavanya', '6', '9940313782', '', 'lavanya050512@gmail.com', '2001-01-04', 22, '3', '1', 'selvaraj', 'spenzer plaza supervisor', 25000.00, 2, 0.00, 25000.00, 'manali', 'omr', '2307190005', '', '1', 'upload_files/candidate_tracker/58080958774_Scan 19 Jul 23 12·06·48.pdf', NULL, '1', '2023-07-19', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for our process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-19 11:41:34', 85, '2023-07-19 03:06:46', 0, NULL, 1),
(13691, 'aakash.k', '5', '6383739270', '7200370901', 'aakashcr216@gmail.com', '2002-09-29', 20, '2', '2', 'krishna kumar', 'cooking', 240000.00, 0, 0.00, 20000.00, 'triplicane', 'triplicane', '2307200001', '1', '1', 'upload_files/candidate_tracker/29825630058_Resume.docx', NULL, '1', '2023-07-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable Will Not Sustain', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-20 11:11:52', 101, '2023-07-20 06:46:47', 0, NULL, 1),
(13692, 'Tarunika', '13', '6380575223', '', 'tarunikajayanthan@gmail.com', '2003-07-26', 19, '2', '2', 'Jayananthan', 'Molding contracted', 15000.00, 1, 0.00, 16000.00, 'Pollachi', 'Guindy', '2307200002', '28', '1', 'upload_files/candidate_tracker/63811041320_TarunikajayananthanCV-1-2.pdf', NULL, '1', '2023-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills not much comfort in TxxampC if she comes after learning let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-20 11:35:10', 1, '2023-07-20 06:55:06', 0, NULL, 1),
(13693, 'Mohamed yasin', '4', '8667561904', '', 'MohammedYasin@gmail.com', '2002-03-16', 21, '1', '2', 'Mohamed esack', 'Shop', 10000.00, 0, 0.00, 12000.00, 'Vallam', 'Vallam', '2307200003', '', '1', 'upload_files/candidate_tracker/30004177442_yasss.pdf', NULL, '1', '2023-07-20', 0, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-20 11:44:56', 1, '2023-07-20 12:14:10', 0, NULL, 1),
(13694, 'Priyangathirisha', '16', '8939128887', '9176217980', 'thirisha005@gmail.com', '2002-05-28', 21, '2', '2', 'Lakshmanan', 'Daily wages', 12000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2307200004', '1', '1', 'upload_files/candidate_tracker/60689637057_Resume-2.pdf', NULL, '1', '2023-07-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable will not sustain', '3', '1', '', '1', '3', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-20 12:07:23', 85, '2023-07-21 11:10:30', 0, NULL, 1),
(13695, 'Pooja.S', '16', '7305939887', '9176349057', 'pooja00sp@gmail.com', '2001-01-01', 22, '2', '2', 'Suresh', 'Mechanic', 12000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2307200005', '1', '1', 'upload_files/candidate_tracker/71940707372_Pooja Suresh.pdf', NULL, '1', '2023-07-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Will Not Sustain', '3', '1', '', '1', '3', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-20 12:07:39', 85, '2023-07-21 11:10:57', 0, NULL, 1),
(13696, 'T.vasudevaprabhu', '13', '9361241353', '', 'thirudeva2000@gmail.com', '2000-07-10', 23, '3', '2', 'Thirupathi', 'Own business', 20000.00, 1, 0.00, 180000.00, '546a/Srirengapalayam , rajapalayam', 'Guindy', '2307200006', '', '1', 'upload_files/candidate_tracker/91882165467_DEVA1007Resume.pdf', NULL, '1', '2023-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-20 12:18:39', 1, '2023-07-20 06:51:09', 0, NULL, 1),
(13697, 'hemalatha k', '7', '8667547885', '', 'abihema2244@gmail.com', '2002-11-25', 20, '2', '2', 'kumar', 'coolie', 12000.00, 1, 0.00, 17000.00, 'tondiarpet', 'Tondiarpet', '2307200007', '27', '1', 'upload_files/candidate_tracker/37668782562_Hemalatha Resume.pdf', NULL, '1', '2023-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for telecalling not much suits to our roles will not sustain and not suitable', '7', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-20 02:50:00', 1, '2023-07-20 03:11:48', 0, NULL, 1),
(13698, 'MOHAN P', '13', '7200723064', '6384091017', 'mohanss073@gmail.com', '2001-11-09', 21, '2', '2', 'Periyasamy', 'Farmer', 12000.00, 2, 0.00, 300000.00, 'Perambalur', 'Chennai', '2307210001', '27', '1', 'upload_files/candidate_tracker/93659781987_MOHAN P (1).pdf', NULL, '1', '2023-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basics in Javascript need to come back with his confirmation on TxxampC if he comes back after learning let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-21 09:50:18', 1, '2023-07-21 09:55:25', 0, NULL, 1),
(13699, 'G.Pavithra', '5', '6383839586', '9842219563', 'gopipavithra518@gmail.com', '2002-10-10', 20, '2', '2', 'Gopinath', 'Cooli', 20000.00, 2, 0.00, 15000.00, 'Madurai', 'Alwarthirunager, Chennai', '2307210002', '27', '1', 'upload_files/candidate_tracker/21522790737_Pavithra resume.docx', NULL, '1', '2023-07-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice only', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-21 09:51:36', 101, '2023-07-21 06:32:01', 0, NULL, 1),
(13700, 'John Clinton A', '13', '9750639658', '7806869802', 'johnclinton1604@gmail.com', '2000-04-16', 23, '6', '2', 'Arockiya dass A', 'Farmer', 7000.00, 1, 0.00, 300000.00, 'Cuddalore', 'Tambaram', '2307210003', '', '1', 'upload_files/candidate_tracker/16429775178_Resume.PDF', NULL, '1', '2023-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-21 09:53:30', 1, '2023-07-21 10:00:07', 0, NULL, 1),
(13701, 'Mohan P', '13', '6384091017', '7200723064', 'mohanss073@gmail.com', '2001-11-09', 22, '3', '2', 'Periyasamy', 'Farmer', 7500.00, 2, 0.00, 300000.00, 'Perambalur', 'Chennai', '2307210004', '', '1', 'upload_files/candidate_tracker/45777448035_Mohan_Resume(CV).pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '2024-02-12', '2', '2', '', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2023-07-21 10:03:06', 110, '2024-02-07 05:25:52', 0, NULL, 1),
(13702, 'Purushothaman', '13', '9578881927', '8344557340', 'jppurushothaman2002@gmail.com', '2002-03-01', 21, '6', '2', 'J Palani', 'Private worker', 120000.00, 1, 0.00, 300000.00, 'Arakkonam', 'Arakkonam', '2307210005', '', '1', 'upload_files/candidate_tracker/38582936171_DOC-20230711-WA0001..pdf', NULL, '1', '2023-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-21 10:06:01', 1, '2023-07-21 10:14:19', 0, NULL, 1),
(13703, 'R.santhosh', '4', '7418497114', '', 'vvalimaisanthosh@gmail.com', '2001-08-11', 21, '1', '2', 'R.kanagasundaram', 'R.Raman', 6000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2307210006', '', '1', 'upload_files/candidate_tracker/62188239432_22.04 23 (1).pdf', NULL, '1', '2023-07-21', 0, 'p1023', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-21 10:55:14', 1, '2023-07-21 11:06:11', 0, NULL, 1),
(13704, 'Samraj p', '13', '7299285025', '', 'samie.officl@gmail.com', '2003-07-11', 20, '3', '2', 'Hepziba p', 'House wife', 92000.00, 2, 0.00, 20000.00, 'Chennai', 'Purasawalkam, chennai', '2307210007', '', '1', 'upload_files/candidate_tracker/8217191192_SamRaj_InternshalaResume.pdf', NULL, '1', '2023-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-21 11:01:27', 1, '2023-07-21 11:07:26', 0, NULL, 1),
(13705, 'Sivaneshwaran', '13', '7338911462', '9094811462', 'sivaneshwaranb@gmail.com', '2002-10-18', 20, '3', '2', 'Boobalan', 'Travels accountant', 200000.00, 1, 0.00, 300000.00, 'Perumal 1st Street Purasaiwalkam Chennai 7', 'Perumal 1st Street Purasaiwalkam Chennai', '2307210008', '', '1', 'upload_files/candidate_tracker/76132405014_SIVANESHWARAN\'s Resume current.pdf', NULL, '1', '2023-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-21 11:02:24', 1, '2023-07-21 11:06:56', 0, NULL, 1),
(13706, 'sureshkumar ganesan', '13', '8825910515', '9159810967', 'sureshkumarsept0427@gmail.com', '1997-09-04', 25, '6', '2', 'ganesan', 'labour', 25000.00, 2, 15000.00, 20000.00, 'thirunallar', 'virugambakkam', '2307210009', '', '2', 'upload_files/candidate_tracker/92360880931_Resume (16).pdf', NULL, '1', '2023-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-21 11:03:34', 1, '2023-07-21 11:24:38', 0, NULL, 1),
(13707, 'V.Nivetha', '4', '9710297938', '', 'nivethavenkatesan19@gmail.com', '2003-04-19', 20, '2', '2', 'Venkatesan.N', 'Coolie', 11000.00, 1, 0.00, 15000.00, 'Kaladipet', 'Kaladipet', '2307210010', '1', '1', 'upload_files/candidate_tracker/38375520561_V.NIVETHA.pdf', NULL, '1', '2023-07-22', 0, '', '3', '59', '2023-07-26', 151584.00, '', '5', '1970-01-01', '2', 'Selected for Banu Teaam Consultant Tole', '1', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-21 11:47:52', 60, '2023-07-26 09:51:25', 0, NULL, 1),
(13708, 'ahamed hassan hinaf', '5', '6382940221', '', 'ahamedhin01@gmail.com', '2001-02-23', 22, '2', '2', 'mohamed bitial', 'computer tech', 200000.00, 3, 18000.00, 25000.00, 'chennai', 'nungabakkam', '2307210011', '1', '2', 'upload_files/candidate_tracker/67085965051_HINAF ESE CV DEC 2021 (1).pdf', NULL, '1', '2023-07-21', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1022', '', '', '', '1970-01-01', 1, '2023-07-21 03:49:35', 126, '2024-07-08 10:43:43', 0, NULL, 1),
(13709, '', '0', '6382940224', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307210012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-21 04:01:44', 0, NULL, 0, NULL, 1),
(13710, 'nivedha m', '5', '9094681362', '', 'niveneethu988@gmail.com', '2002-09-13', 20, '3', '2', 'munusamy', 'construction', 18000.00, 0, 0.00, 15000.00, 'chintadripet', 'chintadripet', '2307210013', '', '1', 'upload_files/candidate_tracker/88355983412_Nivedha.pdf', NULL, '1', '2023-07-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice and not open for Calling profile not suitble', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-21 04:26:03', 101, '2023-07-21 06:32:31', 0, NULL, 1),
(13711, '', '0', '8124742999', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307210014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-21 04:45:07', 0, NULL, 0, NULL, 1),
(13712, 'Savetha. S', '5', '7338839697', '8939169697', 'Savethaselvaraj2143@gmail.com', '2002-09-21', 20, '2', '2', 'Selvaraj. S', 'Electrician', 25000.00, 1, 0.00, 20000.00, 'Medavakkam, Chennai', 'Medavakkam, chennai', '2307210015', '1', '1', 'upload_files/candidate_tracker/79462708747_Savetha Resume[46][51] 2_230724_103453.pdf', NULL, '1', '2023-07-24', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Discussed with the candidate and she is not much comfort also family is not much comfort with the distance\n', '5', '1', '', '1', '8', '', '2', '2023-08-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-21 05:07:24', 104, '2023-07-24 03:28:26', 0, NULL, 1),
(13713, 'Jawahar Rathna', '5', '8248663616', '9840531792', 'jawaharrathna835@gmail.com', '2000-11-16', 22, '2', '2', 'Papmythili', 'Data Operater', 20000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2307210016', '1', '2', 'upload_files/candidate_tracker/95804830833_Resume. (1).pdf', NULL, '1', '2023-07-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-21 05:09:00', 85, '2023-07-24 10:51:14', 0, NULL, 1),
(13714, 'MOHANA PRIYA. B', '4', '9940377998', '7418947998', 'Monapriya1802@gmail.com', '2003-02-18', 20, '2', '2', 'P.Devi', 'Hardware store(Billing)', 180000.00, 1, 0.00, 15000.00, 'No.59Aadi thiravidar colony 8th street,Ernavore-57', 'Chennai,Ernavvor', '2307210017', '1', '1', 'upload_files/candidate_tracker/3315476944_downloadfile(1).PDF', NULL, '1', '2023-07-22', 0, '', '3', '59', '2023-07-26', 151584.00, '', '5', '1970-01-01', '2', 'Selelcted fpr Banu Team Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-21 06:25:15', 60, '2023-07-26 09:51:52', 0, NULL, 1),
(13715, 'abishek l', '5', '7358321131', '8220121067', 'abishekwatson772@gmail.com', '1998-12-30', 24, '2', '2', 'loganathan k', 'self employed', 200000.00, 1, 18500.00, 26000.00, 'valasaravakkam', 'valasaravakkam', '2307210018', '1', '2', 'upload_files/candidate_tracker/57614217170_DOC-20230505-WA0015..docx', NULL, '1', '2023-07-24', 10, '', '3', '59', '2023-07-31', 270000.00, '', '5', '1970-01-01', '1', 'Selected for Manikandan Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-21 06:55:13', 104, '2023-08-10 04:13:18', 0, NULL, 1),
(13716, '', '0', '9710207938', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307210019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-21 07:57:02', 0, NULL, 0, NULL, 1),
(13717, 'Vaishnavi', '5', '6383922252', '6384543439', 'vaishuvaishnavi146@gmail.com', '2000-06-14', 23, '2', '2', 'Ramasamy', 'Farmer', 15000.00, 3, 10000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2307220001', '1', '2', 'upload_files/candidate_tracker/91832985897_Vaishnavi Resume 2023.pdf', NULL, '1', '2023-07-22', 20, '', '3', '59', '2023-08-07', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Sithy Team Consultant Role', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-22 10:49:19', 60, '2023-08-02 06:42:39', 0, NULL, 1),
(13718, 'Sumaitha Banu', '6', '6380040739', '8608502350', 'banuquinn840@gmail.com', '2002-04-18', 21, '2', '2', 'Rahamathulla', 'Cooking Master', 15000.00, 2, 0.00, 15000.00, 'Padappai', 'Padappai', '2307220002', '1', '1', 'upload_files/candidate_tracker/85994088094_banu RESUME-1.pdf', NULL, '1', '2023-07-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-22 11:10:26', 85, '2023-07-22 01:17:16', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13719, '', '0', '7406855022', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307220003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-22 11:15:14', 0, NULL, 0, NULL, 1),
(13720, 'dhinesh', '5', '9150628950', '', 'dhineshm877@gmail.com', '1996-05-31', 27, '2', '2', 'ramamoorthy', 'electrical', 20000.00, 4, 0.00, 20000.00, 'chennai', 'chennai', '2307220004', '1', '1', 'upload_files/candidate_tracker/37842175155_dinesh. pdf.pdf', NULL, '1', '2023-07-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-22 11:16:04', 85, '2023-07-22 05:33:36', 0, NULL, 1),
(13721, 'murugan s', '13', '9342462258', '', 'morgan.s6382@gmail.com', '2001-04-23', 22, '6', '2', 'settu k', 'farmer', 30000.00, 3, 0.00, 20000.00, 'thiruvannamalai', 'chennai', '2307220005', '', '1', 'upload_files/candidate_tracker/65183563217_MURUGAN.S Resume.docx', NULL, '1', '2023-07-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-22 11:32:23', 1, '2023-07-22 11:46:48', 0, NULL, 1),
(13722, 'ramesh mohan', '22', '9080787645', '9840974005', 'ramesh98409740@gmail.com', '1998-03-12', 25, '6', '1', 'sathya', 'admin', 45000.00, 2, 350000.00, 450000.00, 'chennai', 'chennai', '2307220006', '', '2', 'upload_files/candidate_tracker/96226657806_Ramesh updated resume.pdf', NULL, '1', '2023-07-22', 14, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-22 01:11:54', 1, '2023-07-22 01:19:32', 0, NULL, 1),
(13723, 'Manisha', '4', '8248565950', '9840519783', 'malimanisha284@gmail.com', '2002-07-13', 21, '3', '2', 'Laxman mali', 'Business man', 45000.00, 4, 0.00, 22000.00, 'Sowcarpet', 'Sowcarpet', '2307220007', '', '2', 'upload_files/candidate_tracker/17702873999_Manisha Resume_Resume_Format4.pdf', NULL, '1', '2023-07-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-22 01:21:06', 1, '2023-07-22 01:43:43', 0, NULL, 1),
(13724, 'Sanskruti.T', '4', '9087831213', '9150262213', 'sanskrutijain23@gmail.com', '2001-09-03', 21, '3', '2', 'Tejraj.H', 'Business man', 40000.00, 1, 20000.00, 25000.00, 'Sowcarpet', 'Sowcarpet', '2307220008', '', '2', 'upload_files/candidate_tracker/83486209467_Sanskruti Resume_Resume_Format2.pdf', NULL, '1', '2023-07-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-22 01:21:51', 1, '2023-07-22 01:43:39', 0, NULL, 1),
(13725, 'Preethy', '5', '9043675501', '9840358053', 'preethygunase28@gmail.com', '1999-08-28', 23, '2', '2', 'Gunasekaran', 'Courier service', 15000.00, 1, 16000.00, 20000.00, 'Guduvancherry', 'Madambakkam', '2307220009', '1', '2', 'upload_files/candidate_tracker/52995012028_Preethy+cv pdf.pdf', NULL, '1', '2023-07-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for our process.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-22 05:16:27', 104, '2023-07-24 04:31:00', 0, NULL, 1),
(13726, '', '0', '6282412251', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307220010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-22 06:33:49', 0, NULL, 0, NULL, 1),
(13727, 'Harish Ragavendar J D', '4', '6374775066', '9904423681', 'Harishragavendar2001@gmail', '2001-11-07', 21, '2', '2', 'P jagadeesan', 'Mtc', 25000.00, 0, 0.00, 17000.00, 'No41a,2ndstreet,singaravelan Nagar,kolathur,ch-99', 'No41a,2ndstreet,Singaravelan Nagar,Kolathur,Ch-99', '2307240001', '27', '1', 'upload_files/candidate_tracker/89480681048_resume555.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable Will Not Sustain', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 10:12:34', 104, '2023-07-24 05:53:02', 0, NULL, 1),
(13728, 'Murshida shreen M', '14', '9840937585', '', 'murshidamohideen33@gmail.com', '2003-03-26', 20, '3', '2', 'Mohideen M', 'tailor', 18000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2307240002', '', '1', 'upload_files/candidate_tracker/5375113106_Murshida-Resume.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 10:12:52', 104, '2023-07-24 05:55:21', 0, NULL, 1),
(13729, 'JANANI MARAGATHAVEL', '13', '7502085927', '', 'jananisibi1997@gmail.com', '1997-08-16', 25, '6', '1', 'Aathi Selvakumar', 'ASSISTANT ENGINEER - TVS BRAKES INDIA', 20000.00, 1, 0.00, 18000.00, 'Pudukkottai', 'Nanjangud', '2307240003', '', '1', 'upload_files/candidate_tracker/2750083822_Jan resume IT.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 10:12:52', 104, '2023-07-24 05:38:25', 0, NULL, 1),
(13730, 'Srinivasan', '2', '7305692539', '', 'srinivascenaa@gmail.com', '2008-07-24', 0, '6', '2', 'Narayanan', 'Flat maintenance', 20.00, 1, 0.00, 1.50, 'Chennai', 'Chennai', '2307240004', '', '1', 'upload_files/candidate_tracker/57971253314_Srinivasan Resume-Updated (2).pdf', NULL, '2', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 10:13:27', 104, '2023-07-24 05:54:09', 0, NULL, 1),
(13731, 'Fedrick ideon', '13', '8668068924', '6369179591', 'Fedrickyzf46@gmail.com', '2002-01-06', 21, '6', '2', 'rita john', 'customer care executive', 20000.00, 0, 0.00, 20000.00, 'ambattur chennai', 'ambattur hennai', '2307240005', '', '1', 'upload_files/candidate_tracker/86022584458_Resume.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 10:18:46', 104, '2023-07-24 05:52:08', 0, NULL, 1),
(13732, 'Abdul basith R', '23', '8098921602', '9976686961', 'basiabd9@gmail.com', '2000-04-10', 23, '2', '2', 'Raja hussian', 'Mechanic', 30000.00, 2, 0.00, 15000.00, 'Paramakudi', 'Chennai', '2307240006', '27', '1', 'upload_files/candidate_tracker/65619855596_Basi Resume New.pdf', NULL, '1', '2023-07-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much good in prog lau . xxamp Not ok with txxampc', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 10:44:33', 104, '2023-07-24 04:59:43', 0, NULL, 1),
(13733, 'anbazhagan k', '29', '8838709066', '9444563483', 'anbu.samy.88@gmail.com', '1988-10-26', 34, '2', '2', 'kuppusami k', 'supervisor', 420000.00, 2, 240000.00, 400000.00, 'mandaveli', 'pallikaranai', '2307240007', '27', '2', 'upload_files/candidate_tracker/80772128261_Anbazhagan Resume (1).pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Rejected by Gk Sir 2nd round', '3', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-24 10:45:30', 1, '2023-07-24 12:25:25', 0, NULL, 1),
(13734, 'Ganesan G', '13', '9344149937', '', 'ganeshghy0@gmail.com', '2000-12-29', 22, '6', '2', 'K.B Gnana prakasam', 'Passed away', 7000.00, 2, 0.00, 3.50, 'Vellore', 'Chennai', '2307240008', '', '1', 'upload_files/candidate_tracker/54672076744_Ganesan.G MCA.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 10:45:32', 104, '2023-07-24 05:46:11', 0, NULL, 1),
(13735, 'Govindaprasath E', '23', '9629996352', '', 'govindaprasathe@gmail.com', '1992-11-09', 30, '6', '1', 'Jayashree J', 'Home maker', 50000.00, 1, 50000.00, 70000.00, 'Trichy, Tamil Nadu', 'Bangalore, Karnataka', '2307240009', '', '2', 'upload_files/candidate_tracker/61734654692_Govindaprasath Product Design Resume 2023.pdf', NULL, '1', '2023-07-24', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-24 10:45:53', 1, '2023-07-24 10:51:25', 0, NULL, 1),
(13736, 'M.Snega', '16', '6382412251', '9176135545', 'msnega909@gmail.com', '2001-06-23', 22, '2', '2', 'Malaraj', 'Cooli', 15000.00, 4, 18000.00, 25000.00, 'Tondiarpet', 'Ioc', '2307240010', '1', '2', 'upload_files/candidate_tracker/32500294119_Resume_Snega malairaj_Format1.pdf', NULL, '1', '2023-07-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suit For Our Process.', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-24 10:45:56', 104, '2023-07-24 04:31:30', 0, NULL, 1),
(13737, 'Saravanan S', '13', '6380236299', '', 'saravanansv17899@gmail.com', '1999-08-17', 23, '6', '2', 'Selvam', 'Farmer', 15000.00, 2, 0.00, 25000.00, 'Ariyur', 'Chennai', '2307240011', '', '1', 'upload_files/candidate_tracker/24703931468_Saravanan.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 10:50:43', 104, '2023-07-24 05:53:38', 0, NULL, 1),
(13738, 'Saran Raj', '5', '7092281080', '', 'saranraj70922@gmail.com', '2000-09-24', 22, '2', '2', 'Saravanan', 'Driver', 200000.00, 2, 17000.00, 20000.00, 'Redhills', 'Redhills', '2307240012', '1', '2', 'upload_files/candidate_tracker/85556167379_2d8266f0-ca8b-4536-82ab-e9efc45aa195.docx', NULL, '1', '2023-07-24', 30, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for our process ...sustainbility doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-24 10:52:19', 104, '2023-07-24 04:57:11', 0, NULL, 1),
(13739, 'Krishnapandi', '13', '6383101337', '', 'krishnapandi.m.g55@gmail.com', '2002-10-23', 20, '2', '2', 'Vinishathenarasi', 'IT', 30000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2307240013', '27', '1', 'upload_files/candidate_tracker/9569530415_KRISHNAPANDI MG RESUME.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'TEchnical Round Reject', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 11:05:10', 104, '2023-07-24 05:40:28', 0, NULL, 1),
(13740, 'Azees Rahman', '13', '9600691181', '', 'azeesbindeen1997@gmail.com', '1997-10-13', 0, '2', '2', 'Rameja', 'NA', 10000.00, 2, 0.00, 250000.00, 'Theni (Dt)', 'Theni (Dt)', '2307240014', '27', '1', 'upload_files/candidate_tracker/9388394352_My Resume-Software.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 11:14:07', 104, '2023-07-24 05:50:20', 0, NULL, 1),
(13741, 'Thilak S', '13', '8903383932', '', 'thilaksekarsun@gmail.com', '2000-03-07', 23, '6', '2', 'Sekar', 'Driver', 840000.00, 1, 0.00, 250000.00, '118 C M nagar Padma Nagar vandiyur, Madurai', 'Shollinganallur, chennai', '2307240015', '', '1', 'upload_files/candidate_tracker/10750872202_THILAK S - RESUME.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-24 11:33:51', 1, '2023-07-24 11:38:09', 0, NULL, 1),
(13742, 'nisha', '32', '8248752716', '7358567941', 'nishanis8796@gmail.com', '1996-07-08', 27, '2', '1', 'navaneetha krishana', 'employee', 35000.00, 0, 25500.00, 35000.00, 'surapet', 'surapet', '2307240016', '27', '2', 'upload_files/candidate_tracker/77866728942_nisha resume 23.pdf', NULL, '1', '2023-07-24', 0, '', '3', '59', '2023-08-07', 405000.00, '', '5', '1970-01-01', '1', 'Selected for Manikandan Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 11:35:37', 60, '2023-08-01 06:42:40', 0, NULL, 1),
(13743, 'Mugeshwari. R', '13', '7358599059', '8825889512', 'mugi237ragu@gmail.com', '2001-07-23', 22, '3', '2', 'Ragupathy. P', 'Sale Executive', 24000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2307240017', '', '1', 'upload_files/candidate_tracker/2206688477_MUGESHWARI_Resume Mar_2023.pdf', NULL, '1', '2023-07-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance no basics in JS will not sustain in our roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 11:43:51', 104, '2023-07-31 10:56:06', 0, NULL, 1),
(13744, 'Ghayaz Ahamed Khan', '33', '9952031657', '7338883851', 'ghayazkhan30@gmail.com', '1981-11-14', 41, '2', '1', 'Sumaiya', 'Housewife', 25000.00, 2, 25000.00, 30000.00, 'Chennai', 'Chennai', '2307240018', '27', '2', 'upload_files/candidate_tracker/47353881820_GHAYAZ_CV.docx', NULL, '1', '2023-07-24', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking For Non Voice Only', '4', '2', '', '4', '6', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 11:56:21', 104, '2023-07-24 05:43:57', 0, NULL, 1),
(13745, 'HASWATH', '13', '9095554942', '9080619422', 'haswath66@gmail.com', '2002-06-06', 21, '6', '2', 'Raja Basha', 'Driver', 12000.00, 1, 0.00, 300000.00, 'CHENNAI', 'CHENNAI', '2307240019', '', '1', 'upload_files/candidate_tracker/88132224530_Haswath-resume.pdf', NULL, '1', '2023-07-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-24 12:05:21', 1, '2023-07-24 12:10:18', 0, NULL, 1),
(13746, 'A.Abilesh', '13', '9514724682', '7871250680', 'abileshabilesh360@gmail.com', '2002-02-10', 21, '6', '2', 'Anok', 'Contract worker', 12000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2307240020', '', '1', 'upload_files/candidate_tracker/46674398085_Resume_Resume_Format3.pdf', NULL, '1', '2023-07-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-24 12:06:01', 1, '2023-07-24 12:20:43', 0, NULL, 1),
(13747, 'Gopinath', '33', '8754542524', '', 'gopin8367@gmail.com', '2000-01-11', 23, '2', '2', 'P.kumar', 'Business man', 30000.00, 1, 0.00, 3.50, 'Chennal', 'Royapettah', '2307240021', '27', '1', 'upload_files/candidate_tracker/57101782788_Gopinath', NULL, '1', '2023-07-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50-50 profile  average convinving skills..let us try ... left without attending next round', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 12:09:41', 104, '2023-07-24 05:02:05', 0, NULL, 1),
(13748, 'Mohamed Azharuddeen A', '30', '7010262317', '9840856449', 'mdazharuddeen18@gmail.com', '1998-06-18', 25, '2', '2', 'Abdul Hameed asskeen', 'Buisness', 50000.00, 1, 3.50, 5.50, 'Chennai', 'Chennai', '2307240022', '27', '2', 'upload_files/candidate_tracker/1299592733_Azhar resume 01 2023.pdf', NULL, '1', '2023-07-24', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for Digital Marketing high salary exp', '9', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 12:09:55', 104, '2023-07-24 06:00:41', 0, NULL, 1),
(13749, 'Mohamed Hanifa S', '5', '8524093929', '8098056528', 'hanifmohamed7777@gmail.com', '1999-04-26', 24, '2', '2', 'Sheik Mideen M', 'Driver', 15.00, 1, 20000.00, 20000.00, 'Tirunelveli', 'Chennai', '2307240023', '27', '2', 'upload_files/candidate_tracker/55024314262_MOHAMED HANIFA CV.pdf', NULL, '1', '2023-07-24', 5, '', '3', '59', '2023-08-03', 252000.00, '', '5', '1970-01-01', '2', 'Selected for GK sir Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 12:31:12', 60, '2023-07-31 07:37:52', 0, NULL, 1),
(13750, 'Fazil Samson M', '4', '9344217389', '8124482938', 'samsunfazil05@gmail.com', '1999-09-05', 23, '2', '2', 'Muthuraj K', 'AC Mechanic', 15000.00, 1, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2307240024', '27', '1', 'upload_files/candidate_tracker/20729552100_CV_2023072409425982.pdf', NULL, '1', '2023-07-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'low confidence .. not suit for our roles sal expt high', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 12:32:15', 104, '2023-07-24 05:00:06', 0, NULL, 1),
(13751, 'Parthiban', '13', '8838579036', '', 'parthiba2906@gmail.com', '1999-06-29', 24, '2', '2', 'Sasikala', 'HR', 11000.00, 2, 11000.00, 17000.00, 'Chennai', 'Chennai', '2307240025', '27', '2', 'upload_files/candidate_tracker/76544342346_Gen 2 .pdf', NULL, '1', '2023-07-24', 30, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected In Aptitude Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 12:32:55', 104, '2023-07-24 05:16:11', 0, NULL, 1),
(13752, 'Mohammed faheem', '13', '9361777295', '9042315513', 'faheemkf85@gmail.com', '2001-11-03', 21, '2', '2', 'K.M.Fayaz ahames', 'Sales man', 25000.00, 3, 0.00, 18000.00, 'Chennai', 'Ambattur', '2307240026', '27', '1', 'upload_files/candidate_tracker/79322842055_DOC-20230710-WA0004. (1).pdf', NULL, '1', '2023-07-24', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 12:44:22', 104, '2023-07-24 05:07:11', 0, NULL, 1),
(13753, 'Karthikeyan', '13', '9790886186', '9710737703', 'karthick31122000sk@gmail.com', '2000-12-31', 22, '2', '2', 'Selvaraj', 'Electrician', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2307240027', '27', '1', 'upload_files/candidate_tracker/99274349827_Resume.pdf', NULL, '1', '2023-07-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected In Aptitude Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 12:46:16', 104, '2023-07-24 05:15:16', 0, NULL, 1),
(13754, 'sowkhya', '6', '7358118639', '9941829323', 'sowkhya1508@gmail.com', '2002-01-11', 21, '2', '1', 'narasimma', 'clirk', 11000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2307240028', '27', '1', 'upload_files/candidate_tracker/84708601971_sowkhya resume...pdf', NULL, '1', '2023-07-24', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 12:52:46', 1, '2023-07-24 06:01:42', 0, NULL, 1),
(13755, 'Thajudeen H', '13', '8110932437', '', 'thajuthaju777@gmail.com', '1998-07-15', 25, '2', '2', 'Habeeb A', 'business', 15000.00, 1, 0.00, 2.60, 'Chennai', 'Chennai', '2307240029', '27', '1', 'upload_files/candidate_tracker/46669514075_Thajudeen H Pro.pdf', NULL, '1', '2023-07-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected In Aptitude Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 01:07:43', 104, '2023-07-24 05:13:27', 0, NULL, 1),
(13756, 'Syedmalk', '6', '8973410586', '', 'syedmalkmydeen@gmail.com', '1997-05-14', 26, '2', '1', 'Mydeen meeran', 'Labour', 20000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2307240030', '27', '2', 'upload_files/candidate_tracker/52286016575_M.SYED MALK CV.pdf', NULL, '1', '2023-07-24', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '50-50 PROFILE sustainbility doubts..check and update your feedbacks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 01:08:37', 97, '2023-07-29 05:35:23', 0, NULL, 1),
(13757, 'Laiqa Tasneem', '5', '9042084272', '8072461592', 'laiqasheik0107@gmail.com', '2003-07-08', 20, '2', '1', 'Sheik sahabudeen', 'Sales executive', 15000.00, 1, 0.00, 20000.00, 'Mannadi', 'Mannadi', '2307240031', '1', '1', 'upload_files/candidate_tracker/51135240090_resume 1.pdf', NULL, '1', '2023-07-24', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-24 01:21:51', 108, '2023-07-24 01:36:15', 0, NULL, 1),
(13758, 'Krithika veepethu M', '33', '9176095299', '7200613493', 'krithikaraj612@gmail.com', '2003-04-25', 20, '2', '2', 'Rajeshwari', 'Tailor', 15000.00, 1, 0.00, 20000.00, '11, rajarathinam nagar, thiruverkadu, Chennai', '11, Rajarathinam Nagar, Thiruverkadu, Chennai', '2307240032', '27', '1', 'upload_files/candidate_tracker/33837404021_Krithika veepethu c.v .pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice only', '4', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 01:32:25', 104, '2023-07-24 05:56:56', 0, NULL, 1),
(13759, 'Kiruthika', '33', '9962012818', '', 'keerthumysi@gmail.com', '2003-06-03', 20, '2', '2', 'M.Sivaprakasam', 'Sales officer', 15000.00, 1, 0.00, 20000.00, '153,Ashoka nagar, Arumbakkam, Chennai-600106.', '153,Ashoka nagar, Arumbakkam, Chennai-600106.', '2307240033', '27', '1', 'upload_files/candidate_tracker/13818394233_PDF_1690186563952.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking For Non Voice Only', '4', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 01:33:11', 104, '2023-07-24 05:59:10', 0, NULL, 1),
(13760, 'S.PRIYADHARSHINI', '33', '9790817267', '9080483939', 'priyadharshini6617@gmail.com', '2003-07-06', 20, '2', '2', 'R SURESH BABU', 'Electrician', 10000.00, 2, 0.00, 17000.00, 'No: 21/127A, mariamman kovil,korattur, Chennai-80.', 'No:21/127A, mariamman kovil, korattur, chennai-80.', '2307240034', '27', '1', 'upload_files/candidate_tracker/86380232558_RESUME.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Non Voice Only', '4', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-24 01:34:05', 1, '2023-07-24 01:41:07', 0, NULL, 1),
(13761, 'hemalatha', '5', '9840209151', '9841697673', 'hemalatha83svv@gmail.com', '1983-01-28', 40, '2', '1', 'sathya narayanan', 'shop', 35000.00, 2, 20000.00, 23000.00, 'washermenpet', 'Washermenpet', '2307240035', '27', '2', 'upload_files/candidate_tracker/53384200690_CV_2023042017153653.pdf', NULL, '1', '2023-07-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for our roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 01:44:57', 108, '2023-07-24 02:56:25', 0, NULL, 1),
(13762, 'Yogesh raj', '4', '8489559781', '', 'yogesh2102002@gmail.com', '2002-10-02', 20, '5', '2', 'Maruthamuthu', 'Farmer', 10000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2307240036', '', '1', 'upload_files/candidate_tracker/44559820904_yogesh resume present.pdf', NULL, '1', '2023-07-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected in appitutude round', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2023-07-24 01:45:33', 104, '2025-02-27 10:37:11', 0, NULL, 1),
(13763, 'Muhammad Ibrahim', '5', '9952912610', '', 'ibrasim.04092000@gmail.com', '2000-09-04', 22, '2', '2', 'niyamathullah', 'car mechanic', 20000.00, 2, 0.00, 18000.00, 'perambur', 'perambur', '2307240037', '27', '1', 'upload_files/candidate_tracker/67647562081_IBRAHIM_N.updated resume.pdf', NULL, '1', '2023-07-24', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'not suit for our process', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-24 01:55:31', 1, '2023-07-24 03:08:43', 0, NULL, 1),
(13764, 'Dinesh N', '13', '9791034268', '9176864270', 'natdinesh2020@gmail.com', '2002-08-15', 20, '2', '2', 'Natarajan', 'Plumber', 15000.00, 1, 0.00, 18000.00, 'Neelangarai,chennai', 'Neelangarai,Chennai', '2307240038', '27', '1', 'upload_files/candidate_tracker/6920636294_dinesh n p2.pdf', NULL, '1', '2023-07-24', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 01:56:20', 104, '2023-07-24 05:13:08', 0, NULL, 1),
(13765, 'vishwa', '5', '8838247015', '9384741318', 'vishwabalakrishnan24@gmail.com', '2002-03-24', 21, '1', '2', 'Balakrishnan', 'Driver', 15000.00, 1, 0.00, 18000.00, 'Vridhachalam 606001', 'Alwarpet 3rd Street chennai', '2307240039', '', '1', 'upload_files/candidate_tracker/44099065996_vishwa pdf 1.pdf', NULL, '1', '2023-07-25', 0, 'Priya HR', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 02:01:17', 60, '2023-07-27 05:53:12', 0, NULL, 1),
(13766, 'Soundhar', '13', '6385948894', '', 'soundharsiva2002@gmail.com', '2001-07-10', 22, '2', '2', 'Siva', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Ranipettai', 'Perumbur, Chennai.', '2307240040', '27', '1', 'upload_files/candidate_tracker/98754324768_SOUNDHAR.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 02:01:52', 104, '2023-07-24 05:14:10', 0, NULL, 1),
(13767, '', '0', '8220121067', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307240041', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-24 02:14:07', 0, NULL, 0, NULL, 1),
(13768, 'MD ZUHAIB AHMED S', '4', '9962748012', '7305652707', 'zuhaibahmed1607@gmail.com', '2001-07-16', 22, '2', '2', 'SHAKEEL PARVEEZ', 'Real estate', 14000.00, 2, 0.00, 2.00, 'Chennai', 'Chennai', '2307240042', '27', '1', 'upload_files/candidate_tracker/88053058295_Resume_MD ZUHAIB AHMED S_Format7 (4).pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Will Not Sustain', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 02:24:22', 104, '2023-07-24 05:08:18', 0, NULL, 1),
(13769, 'Balakrishnan G', '16', '9994459738', '', 'Bala_12@live.com', '1980-06-10', 43, '2', '1', 'B Vimala', 'Unemployed', 1000.00, 2, 650000.00, 900000.00, 'Viruthachalam', 'Chennai', '2307240043', '27', '2', 'upload_files/candidate_tracker/9923144328_Bala_CV_PM.pdf', NULL, '1', '2023-07-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Exp profile.. sal expt too high for renewals.', '3', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 02:32:13', 104, '2023-07-24 05:04:10', 0, NULL, 1),
(13770, 'Mohammed Azad', '17', '8610039766', '', 'jmohammedazad27197@gmail.com', '1997-01-27', 26, '2', '2', 'Jaffarali', 'Librarian', 60000.00, 1, 425000.00, 450000.00, 'Chengalpattu', 'Chengalpattu', '2307240044', '27', '2', 'upload_files/candidate_tracker/32327358830_MOHAMMED AZAD J.pdf', NULL, '1', '2023-07-24', 0, '', '4', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Insurance Domain but no sustainability Can give a try kindly check and let me know your inouts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 02:39:06', 104, '2023-07-24 06:02:27', 0, NULL, 1),
(13771, 'mohamed adNAN', '23', '9123559556', '', 'ADNANBAIG.DRAGKING@GMAIL.COM', '2001-07-17', 22, '2', '2', 'Gaffarbaig', 'business', 500000.00, 1, 28000.00, 35000.00, 'adaYAR', 'ADAYAR', '2307240045', '27', '2', 'upload_files/candidate_tracker/2239877555_AdnanBaigResume1.pdf', NULL, '1', '2023-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 02:53:19', 104, '2023-07-24 05:58:16', 0, NULL, 1),
(13772, 'Arabsha', '14', '6381203022', '', 'arabsha07@gmail.com', '2001-10-09', 21, '2', '2', 'Sayed Ishaq', 'Property consultant', 9000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2307240046', '27', '1', 'upload_files/candidate_tracker/99294816714_Shah_CV.pdf', NULL, '1', '2023-07-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected In aptitude round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 02:53:42', 104, '2023-07-24 05:12:01', 0, NULL, 1),
(13773, 'Dilip kumar', '6', '7299543825', '8778721566', 'dilipkumar4540@gmail.com', '2000-07-23', 23, '2', '2', 'Maragatham', 'Household Work', 12000.00, 1, 21000.00, 23000.00, 'Chennai', 'Chennai', '2307240047', '27', '2', 'upload_files/candidate_tracker/54725982768_TapScanner 07-24-2023-14?59.pdf', NULL, '1', '2023-07-24', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-24 02:53:49', 104, '2023-07-24 05:19:08', 0, NULL, 1),
(13774, '', '0', '9962194285', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307240048', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-24 03:11:31', 0, NULL, 0, NULL, 1),
(13775, 'Sruthi Messia J', '16', '9361961567', '', 'sruthy1206@gmail.com', '2000-09-12', 22, '2', '2', 'Joe lal bahadur', 'None', 50000.00, 2, 0.00, 20000.00, 'Tirunelveli', 'Tirunelveli', '2307240049', '1', '2', 'upload_files/candidate_tracker/5709663676_SRUTHI MESSIA J_Resume.pdf', NULL, '1', '2023-07-24', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '3', '1', '', '1', '8', '', '2', '2023-08-02', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-24 03:51:04', 108, '2023-07-24 05:22:32', 0, NULL, 1),
(13776, 'poonkodi', '5', '7812835503', '', 'poonkodiarumugam@gmail.com', '2000-05-23', 23, '2', '2', 'arumugam', 'hotel', 40000.00, 2, 18000.00, 18000.00, 'thirunelveli', 'crompet', '2307240050', '1', '2', 'upload_files/candidate_tracker/86291018637_1678342677067_1678342670111_1678275380329_POONKODI.docx', NULL, '1', '2023-07-24', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile can give a try kindly check and let me knwo your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-24 03:59:52', 60, '2023-07-27 05:57:44', 0, NULL, 1),
(13777, '', '0', '9500834191', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307240051', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-24 07:14:05', 0, NULL, 0, NULL, 1),
(13778, 'Sindhuja', '13', '6385616106', '8883332457', 'sindhuja1106@gmail.com', '2000-12-06', 22, '6', '2', 'Anbalagan', 'Mason', 120000.00, 1, 0.00, 170000.00, 'Kumbakonam', 'Kumbakonam', '2307250001', '', '1', 'upload_files/candidate_tracker/38708746127_Sindhuja A resume.pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 09:04:17', 1, '2023-07-25 09:08:59', 0, NULL, 1),
(13779, '', '0', '9841383026', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307250002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-25 09:47:00', 0, NULL, 0, NULL, 1),
(13780, 'Paul giftson.n', '5', '8925270067', '9941185572', 'paulgiftsonn063@gmail.com', '2003-05-24', 20, '2', '2', 'Nirmal Kumar', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2307250003', '1', '1', 'upload_files/candidate_tracker/43392598142_Paul-2.pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sounding Vey Low will not handle the work pressure not suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-25 10:34:52', 108, '2023-07-25 10:51:28', 0, NULL, 1),
(13781, 'ASWINKUMAR S', '13', '8778946692', '9940143199', 'aswin4441062@gmail.com', '1999-11-11', 23, '6', '2', 'Saravana kumar', 'Project cordinator', 45000.00, 1, 26000.00, 40000.00, 'Chennai', 'Chennai', '2307250004', '', '2', 'upload_files/candidate_tracker/16035532873_Aswin\'s Resume (1) (1).pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try too long distance too', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 11:23:00', 1, '2023-07-25 11:34:00', 0, NULL, 1),
(13782, 'GOWRI', '13', '7845813863', '', 'Gowrikumarcse@gmail.com', '1997-01-07', 26, '6', '2', 'Kumar', 'Contractor', 30000.00, 2, 180000.00, 300000.00, 'Cuddalore', 'Chennai', '2307250005', '', '2', 'upload_files/candidate_tracker/28335595916_Gowri RESUME .pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 11:28:41', 1, '2023-07-25 12:24:56', 0, NULL, 1),
(13783, 'Sangeetha S', '27', '9003172231', '6382101366', 'sangeesa588@gmail.com', '1998-06-27', 25, '4', '2', 'P Sasi', 'Labour', 8000.00, 2, 363516.00, 450000.00, 'Chennai', 'Chennai', '2307250006', '', '2', 'upload_files/candidate_tracker/49648115292_Resume.pdf', NULL, '1', '2023-07-25', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'For Dot net only', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 11:39:28', 1, '2023-07-25 11:49:27', 0, NULL, 1),
(13784, 'Srinath B', '13', '9894780975', '', 'b.srinath027@gmail.com', '2001-05-18', 22, '3', '2', 'Balamurugan K', 'Accountant', 25000.00, 0, 0.00, 350000.00, 'Erode', 'Chennai', '2307250007', '', '1', 'upload_files/candidate_tracker/24852199333_Srinath_B_CV.pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java only', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 11:43:00', 1, '2023-07-25 11:56:54', 0, NULL, 1),
(13785, 'R. Mohammed. Ashiq', '17', '8608623746', '9043590204', 'mohammed0265ashiq@gmail.com', '2001-03-26', 22, '3', '2', 'Rafideen', 'Private sector', 20000.00, 0, 0.00, 20000.00, 'Tirupur', 'Chennai', '2307250008', '', '1', 'upload_files/candidate_tracker/39559092570_Mohammed Ashiq Cv.pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'time being looking for opportunities', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-25 11:43:03', 108, '2023-07-25 12:46:16', 0, NULL, 1),
(13786, 'Aishwarya V', '27', '8248394240', '8939104342', 'aishupriya296@gmail.com', '1999-07-11', 24, '4', '2', 'Vinayagam', 'Sub inspector of police', 750000.00, 1, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2307250009', '', '1', 'upload_files/candidate_tracker/96594978940_new resume 1 (1).pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable and will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 11:44:45', 1, '2023-07-25 11:48:14', 0, NULL, 1),
(13787, 'ANISH FATHIMA.R', '5', '7200118353', '9791112845', 'anishfathima252@gmail.com', '2003-02-26', 20, '2', '2', 'RAJA MOHAMMED .S', 'LABOUR', 180000.00, 2, 0.00, 2.50, 'Moolakadai', 'Moolakadai', '2307250010', '27', '1', 'upload_files/candidate_tracker/83853820777_resume (1).docx', NULL, '2', '2023-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NotMcuh open up not suitable for our Roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-25 11:55:03', 101, '2023-07-27 05:41:50', 0, NULL, 1),
(13788, 'Dhanakumari.AP', '6', '9677285958', '7339311220', 'Dhanakumari26@gmail.com', '1986-12-26', 36, '4', '1', 'Pachaimuthu.A', 'Retired', 25000.00, 1, 0.00, 35000.00, '33/11 Bank Colony 1st Street MMC Post Chennai', 'Vadapalani', '2307250011', '', '1', 'upload_files/candidate_tracker/99961431585_DOC-20230707-WA0006..pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles will not sustain ', '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 01:09:05', 1, '2023-07-25 01:20:17', 0, NULL, 1),
(13789, 'Vino', '23', '9361320725', '9790063247', 'Vinosomasundaram2702@gmail.com', '2002-07-02', 21, '1', '2', 'Somasundaram', 'Cooly', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Thiruvanmiyur', '2307250012', '', '1', 'upload_files/candidate_tracker/88379154157__Resume UI_UX .pdf', NULL, '1', '2023-07-25', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 01:34:38', 1, '2023-07-25 01:42:47', 0, NULL, 1),
(13790, 'stella jayarani.j', '5', '8148586722', '', 'stellajayarani02@gmail.com', '2008-07-25', 0, '1', '2', 'Parent', 'Electrition', 10000.00, 1, 0.00, 15.00, 'Permabur', 'Ambattur', '2307250013', '', '1', 'upload_files/candidate_tracker/39658326698_stella jayarani.pdf', NULL, '3', '2023-07-25', 0, 'P1287', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Reject', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-25 02:13:44', 101, '2023-07-25 04:19:58', 0, NULL, 1),
(13791, 'Jenifer.J', '5', '9150567615', '8608236981', 'jenijosh8@gmail.Com', '2003-06-16', 20, '1', '2', 'Parents', 'Icecream shop', 50000.00, 1, 15000.00, 16000.00, '17/36 Bunder Garden 3rd Street Preambur Chennai 11', 'Preambur', '2307250014', '', '2', 'upload_files/candidate_tracker/40431462129_Jenifer .pdf', NULL, '3', '2023-07-25', 1, 'P1287', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No sustainability will not sustain not suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-25 02:14:39', 101, '2023-07-25 04:19:34', 0, NULL, 1),
(13792, 'Alkalif M', '13', '8870708560', '', 'alkalif347@gmail.com', '2002-07-10', 21, '3', '2', 'Mohamed Ali jinnah', 'Driver', 10000.00, 1, 0.00, 250000.00, 'Mayiladuthurai', 'Triplicane, Chennai', '2307250015', '', '1', 'upload_files/candidate_tracker/50786215836_Alkalif resume .pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 02:52:03', 1, '2023-07-25 02:57:57', 0, NULL, 1),
(13793, 'Mohamed Rifayath', '13', '7502732342', '', 'rifayathrishath239@gmail.com', '2003-02-16', 20, '3', '2', 'Parent', 'Driver', 15000.00, 1, 0.00, 2.50, 'Mayiladuthurai', 'Chennai', '2307250016', '', '1', 'upload_files/candidate_tracker/87851612181_Rifayath.pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 02:52:05', 1, '2023-07-25 02:57:32', 0, NULL, 1),
(13794, 'Jawahirullah', '13', '7708280590', '7502732342', 'Jawahirullah481@gmail.com', '2003-01-20', 20, '3', '2', 'Mohamed Siddik', 'Labour', 15000.00, 1, 0.00, 250000.00, 'Mayiladuthurai', 'Chennai', '2307250017', '', '1', 'upload_files/candidate_tracker/6203270077_Resume.pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Not Much Comfort In TxxampC If the candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 02:52:29', 1, '2023-07-25 02:58:09', 0, NULL, 1),
(13795, 'D Ajilin Jeffry', '5', '6382257408', '7358730428', 'jeffrypop23@gmail.com', '1998-04-28', 25, '2', '2', 'DHARMARAJ M', 'Inspector Of Police', 2.00, 1, 350000.00, 450000.00, 'Chennai', 'Chennai', '2307250018', '1', '2', 'upload_files/candidate_tracker/52342754797_Ajilin Jeffry Resume3.pdf', NULL, '1', '2023-07-29', 2, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-25 03:26:32', 85, '2023-07-29 10:59:55', 0, NULL, 1),
(13796, 'Bala Ganesh', '16', '9840950386', '8939557428', 'bala.ganesh982431@gmail.com', '1998-08-24', 24, '3', '2', 'selvaraj s', 'retired banker', 35000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2307250019', '', '1', 'upload_files/candidate_tracker/87569686430_Balaganesh s.pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 03:39:53', 1, '2023-07-25 03:46:01', 0, NULL, 1),
(13797, 'Jayaraman S', '31', '9751990421', '', 'raman28081994@gmail.com', '1994-08-28', 28, '3', '2', 'Usha K', 'House wife', 13700.00, 2, 0.00, 17000.00, 'Tirunelveli', 'Poonamalle', '2307250020', '', '1', 'upload_files/candidate_tracker/60742242944_Jayaraman_BE_MECH_2016_FULLSTACK_DEVELOPER.pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 04:32:35', 1, '2023-07-25 04:40:33', 0, NULL, 1),
(13798, 'Siva Kumar R', '31', '7092946280', '9841175277', 'shivakumar47756@gmail.com', '2000-03-08', 23, '3', '2', 'D ravi', 'Two wheeler mechanic', 20000.00, 1, 0.00, 250000.00, 'Pudupet', 'Pudupet', '2307250021', '', '1', 'upload_files/candidate_tracker/61686380816_siva kumar front end developer 2022.pdf', NULL, '1', '2023-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-25 04:36:43', 1, '2023-07-25 04:43:00', 0, NULL, 1),
(13799, 'rajakumaran', '5', '8667322902', '', 'rajakumaran1994mca@gmail.com', '1994-01-05', 29, '2', '2', 'vishwanathan', 'self empolyee', 40000.00, 5, 300000.00, 350000.00, 'velachery', 'velachery', '2307250022', '1', '2', 'upload_files/candidate_tracker/25320123890_Rajakumara.pdf', NULL, '1', '2023-07-26', 0, '', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'Rejected', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-07-25 05:54:08', 1, '2023-07-26 12:08:53', 0, NULL, 1),
(13800, 'Vigneshwara vasanth s', '5', '8438494819', '', 'vigneshwaravasanth7@gmail.com', '1996-11-26', 26, '2', '2', 'A sekar', 'Cable operator', 40.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2307250023', '1', '1', 'upload_files/candidate_tracker/24957884065_Wilson (1).pdf', NULL, '1', '2023-07-26', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fir for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-25 06:31:10', 108, '2023-07-27 12:20:55', 0, NULL, 1),
(13801, '', '0', '8428205286', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307250024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-25 10:14:53', 0, NULL, 0, NULL, 1),
(13802, '', '0', '9043444440', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307250025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-25 10:15:47', 0, NULL, 0, NULL, 1),
(13803, 'Sweety G N', '5', '6382418115', '7401495988', 'sweetynehamya09@gmail.com', '2002-09-06', 20, '2', '2', 'Nehamya G', 'Coolie', 13000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2307260001', '1', '1', 'upload_files/candidate_tracker/17923785507_Resume_Sweety Nehamya_Format2 (6).pdf', NULL, '1', '2023-07-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-26 05:53:38', 101, '2023-07-26 10:33:59', 0, NULL, 1),
(13804, 'karthikram.s', '31', '8110831511', '7339649609', 'karthikmechbe98@gmail.com', '1998-05-27', 25, '2', '2', 'n.saravanan', 'be', 80000.00, 0, 0.00, 180000.00, 'edaiyur/thiruthuraipoondi-tk-thiruvarur-dt', 'guindy', '2307260002', '27', '1', 'upload_files/candidate_tracker/67900158046_Resume (1).pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not ok with Technical round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:20:10', 104, '2023-07-27 02:40:44', 0, NULL, 1),
(13805, '', '0', '8778892146', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307260003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-26 10:25:07', 0, NULL, 0, NULL, 1),
(13806, 'mohanaprasanth', '13', '8124333966', '9750007902', 'mohanaprasanth20013@gmail.com', '2000-05-13', 23, '3', '1', 'selvaraj v', 'hindu', 40000.00, 1, 18000.00, 17000.00, 'tiruppur', 'anna nagar chennai', '2307260004', '', '2', 'upload_files/candidate_tracker/22649065359_mohan resume.pdf', NULL, '1', '2023-07-26', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', '2023-08-01', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 10:26:54', 1, '2023-07-26 10:34:43', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13807, 'E.Shanmugavalli', '13', '8754065662', '', 'shanmugavalli218@gmail.com', '2008-07-26', 0, '2', '2', 'Vijayalakshmi', 'Homemaker', 15000.00, 2, 0.00, 15000.00, 'Ammapatty, Karisalpatty(Po),Sivaganga(Dt)', '1/309 kalaththumettu street,Kottivakkam, Chennai', '2307260005', '27', '1', 'upload_files/candidate_tracker/81669722643_Shanmugavalli.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ok with technical round', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:32:41', 108, '2023-07-27 02:45:15', 0, NULL, 1),
(13808, '.mohamed sheik ismail', '4', '8124110223', '', 'sheikismail1999@gmail.com', '1999-11-11', 23, '2', '2', 'kamsa mohideen', 'auto driver', 13000.00, 1, 20000.00, 25000.00, 'villivakkam', 'villivakkam', '2307260006', '1', '2', 'upload_files/candidate_tracker/52953664634_Resume.pdf', NULL, '1', '2023-07-26', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-26 10:36:57', 101, '2023-07-27 07:23:36', 0, NULL, 1),
(13809, 'Pavithra', '4', '9363273102', '', 'Pavikk2019@gmail.com', '2002-07-23', 21, '1', '2', 'Paramasivam', 'Dailywages', 15000.00, 3, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2307260007', '', '1', 'upload_files/candidate_tracker/26340949855_Pavithra P.pdf', NULL, '1', '2023-07-26', 0, 'P1023', '7', '59', NULL, 0.00, '', '0', NULL, '2', 'she is ok with the profile father daily wages .....but she is active and good profile so fit for team also....have laptop refered by new candidate vaishnavi and ready to join is not finanalised because he is joining in tailoring class so kindly check once and confirm...expected 12k', '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 10:38:42', 1, '2023-07-26 11:01:57', 0, NULL, 1),
(13810, 'Sangavai', '4', '7868846327', '', 'Sangavai2003@gmail.com', '2003-04-03', 20, '3', '2', 'Chandrakala', 'Dailywages', 15000.00, 3, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2307260008', '', '1', 'upload_files/candidate_tracker/7381668466_sangavai9116265616925.pdf', NULL, '1', '2023-07-26', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:39:58', 108, '2023-07-28 05:50:58', 0, NULL, 1),
(13811, 'Ajitha.A', '4', '6374567683', '', 'ajithaajithaazhagar@gmail.com', '2001-08-06', 21, '3', '2', 'Alagar.c', 'Farmer', 15000.00, 4, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2307260009', '', '1', 'upload_files/candidate_tracker/67458064196_AJITHA.pdf', NULL, '1', '2023-07-26', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:40:56', 108, '2023-07-28 05:50:37', 0, NULL, 1),
(13812, 'A.v sireesha', '13', '9840588360', '', 'Sireeshavenkatesh813@gmail.com', '2000-08-19', 22, '2', '2', 'A .Venkatesh', 'Business', 15000.00, 2, 0.00, 15000.00, '13/31 Arumugam street,sowcarpet, Chennai -1', '13/31 Arumugam street,sowcarpet, Chennai -1', '2307260010', '27', '1', 'upload_files/candidate_tracker/17545674659_Sireesha (Bcom)Python,front end developer.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:42:11', 108, '2023-07-27 02:44:07', 0, NULL, 1),
(13813, 'VIVEKA RAVICHANDRAN', '13', '8754472800', '9003174781', 'viveka.egg@gmail.com', '1994-03-19', 29, '2', '2', 'ravichandran', 'Business', 15000.00, 0, 0.00, 2.00, 'CHENNAI', 'CHENNAI', '2307260011', '27', '1', 'upload_files/candidate_tracker/99163697673_Viveka Resume - Latest.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:43:03', 104, '2023-07-27 02:43:13', 0, NULL, 1),
(13814, 'Tejasree C', '13', '8925311750', '9884767804', 'tejasree.c555@gmail.com', '2002-04-10', 21, '2', '2', 'N.V Chandrasekar', 'Daily wage worker', 10000.00, 1, 0.00, 15000.00, '24/11 Kamaraj nagar, Ernavoor,chennai-57', '24/11 Kamaraj Nagar, Ernavoor,Chennai-57', '2307260012', '27', '1', 'upload_files/candidate_tracker/46098686680_Tejasree C (1).pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:43:54', 104, '2023-07-27 02:44:01', 0, NULL, 1),
(13815, 'Subash s', '13', '6369028470', '', 'ssubash1010@gmail.com', '2000-10-10', 22, '2', '2', 'Saravanan p', 'Driver', 25000.00, 1, 0.00, 22000.00, '2,Mottankuruchi , pappireddipatti ,dharmapuri .', '468, suthanthira nagar,thousand lights,chennai.', '2307260013', '27', '1', 'upload_files/candidate_tracker/7069154975_Resume Subash.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:47:25', 108, '2023-07-27 02:37:55', 0, NULL, 1),
(13816, 'leena', '4', '8610500652', '9094696903', 'leenakannaiyan@gmail.com', '2000-06-27', 23, '6', '2', 'devi', 'caretaker', 13.00, 1, 350000.00, 400000.00, 'chennai', 'chennai', '2307260014', '', '2', 'upload_files/candidate_tracker/14743478683_Leena_Resume_2K.pdf', NULL, '1', '2023-07-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 10:50:56', 1, '2023-07-26 10:56:15', 0, NULL, 1),
(13817, 'Mohammed Samsudeen M', '2', '7305883013', '', 'mohammedtdk@gmail.com', '2002-01-16', 21, '2', '2', 'Mohideen Abdul Kadhar', 'Software developer', 70000.00, 2, 0.00, 30000.00, 'Chennai', 'Chennai', '2307260015', '27', '1', 'upload_files/candidate_tracker/32545036620_RESUMET.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:51:15', 108, '2023-07-27 02:43:39', 0, NULL, 1),
(13818, 'Gowtham S', '14', '9362219643', '8270808032', 'gowthamsangesh2001@gmail.com', '2001-03-02', 22, '2', '2', 'Lakshmi', 'Tailor', 10000.00, 0, 0.00, 15000.00, 'Pondicherry', 'Chennai', '2307260016', '27', '1', 'upload_files/candidate_tracker/55676625343_GS_Resume_A111.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:51:27', 108, '2023-07-27 02:38:14', 0, NULL, 1),
(13819, 'M.mugundan', '14', '8610305109', '7338794671', 'mugundan.balu99@gmail.com', '1999-01-07', 24, '2', '2', 'K.muthuaiah', 'Fiter', 50000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2307260017', '27', '1', 'upload_files/candidate_tracker/13729628983_resume 6-compressed.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:51:28', 104, '2023-07-27 02:37:13', 0, NULL, 1),
(13820, 'VARUN', '13', '7810047454', '9080109688', 'varunshri72@gmail.com', '2002-07-07', 21, '2', '2', 'HARIRAM', 'Salesman', 25000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2307260018', '27', '1', 'upload_files/candidate_tracker/82551088310_Varun professional resume.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:51:55', 108, '2023-07-27 02:41:59', 0, NULL, 1),
(13821, 'Thaslima banu A.R', '4', '9840526675', '9840890455', 'thaslimabanua.r@gmail.com', '2002-11-05', 20, '3', '2', 'Parents/ j.A rahuman', 'Supervisor', 15000.00, 1, 0.00, 25000.00, 'Tollgate', 'Tollgate', '2307260019', '', '2', 'upload_files/candidate_tracker/66674708401_resume file pdf.pdf', NULL, '1', '2023-07-26', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 10:52:05', 1, '2023-07-26 11:12:20', 0, NULL, 1),
(13822, 'Hariharan', '13', '8489911622', '8270996537', 'hariharanp1912@gmail.com', '2001-12-19', 21, '2', '2', 'Palanivel', 'Teacher', 30000.00, 1, 0.00, 3.00, 'Kumbakonam', 'Chennai', '2307260020', '27', '1', 'upload_files/candidate_tracker/37222761469_Hariharan.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:53:38', 104, '2023-07-27 02:42:24', 0, NULL, 1),
(13823, 'Arishraaj K G', '13', '9360328968', '', 'arishraaj251201@gmail.com', '2001-12-25', 21, '2', '2', 'Geetha', 'Tailor', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2307260021', '27', '1', 'upload_files/candidate_tracker/43972557440_Arishraaj Professional Resume 2023.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:53:46', 104, '2023-07-27 02:38:16', 0, NULL, 1),
(13824, 'Deena M', '31', '6382737925', '', 'daviddeena1919@gmail.com', '2001-08-25', 21, '2', '2', 'Manikandan', 'Painter', 15000.00, 2, 0.00, 250000.00, 'Chennai', 'Chennai', '2307260022', '27', '1', 'upload_files/candidate_tracker/3487078883_Deena___Resume.pdf', NULL, '1', '2023-07-26', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for apptitude test', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:55:29', 108, '2023-07-27 02:35:21', 0, NULL, 1),
(13825, 'Sree Raghavendra', '13', '9444412269', '9840401692', 'sreeraghav7781@gmail.com', '2002-04-02', 21, '2', '2', 'Saroja', 'Stenographer', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2307260023', '27', '1', 'upload_files/candidate_tracker/48903869523_CV_2023072520123780.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:56:24', 108, '2023-07-27 02:42:54', 0, NULL, 1),
(13826, 'Arun V', '13', '8072505918', '8754206017', 'arunbtech2019@gmail.com', '2002-04-05', 21, '3', '2', 'Veerappan', 'Farmer', 11000.00, 2, 0.00, 3.00, 'Ariyalur', 'Chennai', '2307260024', '', '1', 'upload_files/candidate_tracker/66152941430_ARUN V B.TECH IT (1).pdf (3).pdf', NULL, '1', '2023-07-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 10:56:39', 1, '2023-07-26 11:23:42', 0, NULL, 1),
(13827, 'Reby Royan N B', '31', '7358468226', '7358618873', 'rebyroyan18@gmail.com', '2001-05-18', 22, '2', '2', 'Balraj N R', 'Driver', 20000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2307260025', '27', '1', 'upload_files/candidate_tracker/32900930824_Reby Royan Resume.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 10:58:18', 108, '2023-07-27 02:45:51', 0, NULL, 1),
(13828, 'Dinakaran. K', '11', '9025408585', '', 'dinakaran6156@gmail.com', '2003-08-26', 19, '6', '2', 'Kothandaraman. V', 'Office boy', 8000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2307260026', '', '1', 'upload_files/candidate_tracker/42165607356_Dina Resume.pdf', NULL, '1', '2023-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance will not sustain and not suitable', '6', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 11:00:52', 1, '2023-07-26 11:09:39', 0, NULL, 1),
(13829, 'Mohammad suhail', '14', '9940284719', '8754424821', 'mdsuhail2803@gmail.com', '2008-07-26', 0, '2', '2', 'T.k.jaweed', 'Construction shop manager', 180000.00, 1, 0.00, 300000.00, '47, walaja Street pattur mangadu Chennai', '47, Walaja Street Pattur Mangadu Chennai', '2307260027', '27', '1', 'upload_files/candidate_tracker/15113342186_Mohammad suhail.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 11:04:41', 104, '2023-07-27 02:42:42', 0, NULL, 1),
(13830, 'Sumaiya Fathima', '23', '9176307789', '', 'sumaiyafathima600@gmail.com', '2001-04-13', 22, '2', '2', 'Akbar Ali', 'Business', 100000.00, 1, 400000.00, 500000.00, 'Chennai', 'Chennai', '2307260028', '27', '2', 'upload_files/candidate_tracker/87540649067_2022- Sumaiya Fathima.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 11:16:39', 104, '2023-07-27 02:42:52', 0, NULL, 1),
(13831, 'Sasikumar P', '2', '7448788879', '', 'Sasikumarp2207@gmail.com', '2001-12-22', 21, '6', '2', 'Palani K', 'Civil work', 72000.00, 1, 0.00, 35000.00, 'Mettur, Salem', 'Mettur, Salem', '2307260029', '', '1', 'upload_files/candidate_tracker/10162570400_Sasikumar P Professional Resume.pdf', NULL, '1', '2023-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'very Slow not open up', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 11:25:22', 1, '2023-07-26 11:37:31', 0, NULL, 1),
(13832, 'M.Manikandan', '13', '9176081874', '6380923325', 'Valliramkumar0818@gmail.com', '1999-07-08', 24, '3', '2', 'S. Murugan', 'Painter', 1.50, 1, 20000.00, 270000.00, 'CHENNAI', 'CHENNAI', '2307260030', '', '2', 'upload_files/candidate_tracker/83607604329_Manikandan.M.pdf', NULL, '1', '2023-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try Min Exp is 20-25K', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 11:26:42', 1, '2023-07-26 11:34:20', 0, NULL, 1),
(13833, 'Vikash S', '31', '9361000544', '', 'vikashkumar000568@gmail.com', '2001-10-07', 21, '3', '2', 'Satheesh Kumar', 'Office Management', 500000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2307260031', '', '1', 'upload_files/candidate_tracker/51296107894_Vikash.pdf', NULL, '1', '2023-07-26', 0, '', '4', '59', NULL, 0.00, '', '0', NULL, '1', 'Selected for apptitude test', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 11:33:25', 1, '2023-07-26 12:07:29', 0, NULL, 1),
(13834, 'Fairose k', '14', '7305126542', '9488660024', 'fairosefairose80@gmail.com', '2001-03-22', 22, '2', '2', 'A. Kaleelrahaman', 'Tailor', 60000.00, 1, 0.00, 20000.00, 'Tiruvannamalai', 'Thiruvanmiyur', '2307260032', '27', '1', 'upload_files/candidate_tracker/54781434472_My Resume.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 11:34:18', 104, '2023-07-27 02:45:21', 0, NULL, 1),
(13835, 'Sumaiya Farveen', '14', '9944962691', '', 'Sumaiyanasser1@gmail.com', '2002-06-22', 21, '2', '2', 'Nasser Ali', 'Driver', 20000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Ekkatuthangal', '2307260033', '27', '1', 'upload_files/candidate_tracker/54285330297_resume sumiii.pdf', NULL, '1', '2023-07-26', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for apptitude', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 11:34:26', 104, '2023-07-27 02:45:04', 0, NULL, 1),
(13836, 'Gunal', '31', '9094111524', '9840712226', 'Gunalgk0801@gmail.com', '2001-01-08', 22, '2', '2', 'Thiyagarajan', 'Sales Man', 18000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2307260034', '27', '1', 'upload_files/candidate_tracker/46033347459_Gunal CV_compressed.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 11:34:30', 104, '2023-07-27 02:41:13', 0, NULL, 1),
(13837, 'Sivaraman S', '31', '8939001488', '', 'sivaraman8939@icloud.com', '1999-08-02', 23, '2', '2', 'K sankar', 'Builder', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2307260035', '27', '1', 'upload_files/candidate_tracker/52819223235_sivaraman MBA(General)2022 FULL STACK-1.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 11:39:16', 104, '2023-07-27 02:37:49', 0, NULL, 1),
(13838, 'Gowtham m', '31', '6384398918', '9344685724', 'gowthammayan111@gmail.com', '1998-01-11', 25, '2', '1', 'N.mayan', 'ex-service man', 300000.00, 1, 0.00, 300000.00, 'Tharumathupatti, vuruveedu(po), dindugal (dt)', 'Poonamallee, chennai', '2307260036', '27', '1', 'upload_files/candidate_tracker/18524532460_Gowtham BE(CSE) 2020 REACT.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 11:39:42', 108, '2023-07-27 02:39:09', 0, NULL, 1),
(13839, 'Karthikeyan', '31', '6381482514', '8098031430', 'Karthiksmartkp007@gmail.com', '1998-08-17', 24, '2', '2', 'Murugnantham', 'Business', 50000.00, 1, 0.00, 300000.00, 'Theni', 'Poonamalle', '2307260037', '27', '1', 'upload_files/candidate_tracker/92013199869_ karthikeyan 2020 BE(ECE) React js.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 11:41:54', 104, '2023-07-27 02:41:40', 0, NULL, 1),
(13840, 'Mohanbabu', '2', '8610762594', '', 'massmassmohan09@gmail.com', '2001-03-09', 22, '3', '2', 'Ramkumar', 'Senior chief chemist', 30000.00, 1, 336000.00, 500000.00, 'Trichy', 'Trichy', '2307260038', '', '2', 'upload_files/candidate_tracker/36657446361_MOHANBABU CV.pdf', NULL, '1', '2023-07-26', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Min Exp 4.5 LPA exp 1yr', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 11:43:28', 1, '2023-07-26 11:48:27', 0, NULL, 1),
(13841, 'Mahalakshimi v', '11', '8220873690', '', 'shaas1225@gmail.com', '2000-06-19', 23, '3', '2', 'Vaithiyanathan', 'Tasmac Supervisor', 50000.00, 1, 0.00, 15000.00, 'THANJAVUR', 'Chennai', '2307260039', '', '1', 'upload_files/candidate_tracker/27353159549_RESUME mahalakshmi.pdf', NULL, '1', '2023-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 11:43:45', 1, '2023-07-26 12:27:22', 0, NULL, 1),
(13842, 'Vishal Kumar S', '13', '7695831818', '7695841818', 'svishalkumar756@gmail.com', '2001-11-03', 21, '2', '2', 'P. Siva Kumar', 'Welder', 15000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2307260040', '27', '1', 'upload_files/candidate_tracker/57927866211_DOC-20230505-WA0011..pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '1', '', '4', '6', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 11:43:46', 108, '2023-07-27 02:41:28', 0, NULL, 1),
(13843, 'SAHEERA BANU S', '11', '7339417255', '', 'shaas1225@gmail.com', '2000-08-12', 22, '3', '2', 'Sheik kareem', 'Medical staff', 40000.00, 0, 0.00, 15000.00, 'THANJAVUR', 'Anna nagar', '2307260041', '', '1', 'upload_files/candidate_tracker/16155050044_cv sha.pdf', NULL, '1', '2023-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 11:43:47', 1, '2023-07-26 11:49:45', 0, NULL, 1),
(13844, 'Vazhathipandi S', '31', '6374924801', '8525089301', 'billapandibillapandi5@gmail.com', '2002-02-15', 21, '2', '2', 'Shanmugam', 'Driver', 15000.00, 0, 0.00, 20000.00, 'Madurai', 'Chennai', '2307260042', '27', '1', 'upload_files/candidate_tracker/58510556981_Vazhathipandi , BCA(2022), React js.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 11:48:25', 108, '2023-07-27 02:39:57', 0, NULL, 1),
(13845, 'P. Sakthivel', '31', '9360324911', '', 'sakthi271602@gmail.com', '2002-01-27', 21, '2', '2', 'N. Periyasamy', 'Coolie', 15000.00, 1, 0.00, 15000.00, 'Poonamallee, chennai', 'Poonamallee', '2307260043', '27', '1', 'upload_files/candidate_tracker/36053460218_SAKTHIVEL P B.sc (c.s) 2022 React js frontend.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 11:52:35', 104, '2023-07-27 02:39:02', 0, NULL, 1),
(13846, 'Kanishkar', '2', '9080876930', '', 'kanishkar1502@gmail.com', '1999-04-24', 24, '2', '2', 'BASKARAN', 'Clerk', 25000.00, 1, 0.00, 18000.00, 'Thanjavur', 'Chennai', '2307260044', '27', '1', 'upload_files/candidate_tracker/93564579532_kanishkarFullstackdeveloper2404.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 12:03:28', 104, '2023-07-27 02:39:19', 0, NULL, 1),
(13847, 'Mohanaprasath T', '13', '9342141764', '', 'prasaththangamani551@gmail.com', '2002-06-17', 21, '6', '2', 'Thangamani T', 'Kooli', 96000.00, 1, 0.00, 150000.00, 'Mylapore, Chennai.', 'Mylapore, Chennai.', '2307260045', '', '1', 'upload_files/candidate_tracker/17673575977_Resume_Mohanaprasath.pdf', NULL, '1', '2023-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 12:06:06', 1, '2023-07-26 12:16:21', 0, NULL, 1),
(13848, 'Prem Raj', '23', '7373648725', '', 'Premraj17147@gmail.com', '2000-08-19', 22, '3', '2', 'Selvaraj', 'Driver', 30000.00, 1, 0.00, 1.80, 'RAMANATHAPURAM', 'RAMANATHAPURAM', '2307260046', '', '1', 'upload_files/candidate_tracker/11983216996_premraj resume.pdf', NULL, '1', '2023-07-26', 0, '', '4', '59', NULL, 0.00, '', '0', NULL, '2', 'selected for apptitude test', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 12:09:17', 1, '2023-07-26 12:16:17', 0, NULL, 1),
(13849, 'Jeevitha', '29', '8939590754', '', 'Jeevitha.jeejee@gmail.com', '1989-11-06', 33, '3', '1', 'Sathish kumar', 'Engineer', 60000.00, 2, 20000.00, 28000.00, 'Anna nagar', 'Anna nagar', '2307260047', '', '2', 'upload_files/candidate_tracker/51366785132_DOC-20230608-WA0017.(1).pdf', NULL, '1', '2023-07-26', 0, '', '3', '59', '2023-08-01', 240000.00, '', '0', NULL, '1', 'Selected for Operation Team Final Round interviewed by gokul and selected', '3', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 12:15:29', 1, '2023-07-26 12:39:12', 0, NULL, 1),
(13850, '', '0', '7092060839', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307260048', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-26 12:17:02', 0, NULL, 0, NULL, 1),
(13851, 'Bala sakthi k', '31', '6369538511', '6369538511', 'balaabimanyugnc@gmail.com', '2001-12-09', 0, '2', '2', 'Karuppaiah.u', 'Fisher man', 12000.00, 1, 0.00, 15000.00, 'Rameswaram', 'Chennai', '2307260049', '27', '1', 'upload_files/candidate_tracker/38876343241_Bala.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Ok With Technical Round', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 12:22:09', 104, '2023-07-27 02:40:59', 0, NULL, 1),
(13852, 'Abinash S', '13', '8825894932', '', 'abinash-s@outlook.com', '2001-07-16', 22, '2', '2', 'Solaiyan V', 'Mechanic', 25000.00, 2, 0.00, 3.00, 'Chennai', 'Chennai', '2307260050', '27', '1', 'upload_files/candidate_tracker/68319701031_Resume.pdf', NULL, '1', '2023-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ok With Technical Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-26 12:28:07', 104, '2023-07-27 02:38:43', 0, NULL, 1),
(13853, 'TEJASRI S R', '21', '9600099839', '', 'tejasri0907@gmail.com', '2003-07-09', 20, '3', '2', 'RAJASEKHAR S', 'Clerk', 10000.00, 2, 0.00, 20000.00, 'Kodungaiyur , chennai', 'Kodungaiyur, chennai', '2307260051', '', '1', 'upload_files/candidate_tracker/36241140149_f39dee41-6260-4a60-90a3-88a6b21d99e9.pdf', NULL, '1', '2023-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice in accounts only tally but sustainability doubt', '3', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 12:46:52', 1, '2023-07-26 12:56:56', 0, NULL, 1),
(13854, 'Jithin Noble P', '13', '7448975318', '9791587566', 'jithinn40@gmail.com', '1998-02-16', 25, '6', '2', 'Noble George P', 'Railways', 50000.00, 1, 0.00, 15000.00, 'COIMBATORE', 'COIMBATORE', '2307260052', '', '1', 'upload_files/candidate_tracker/91274527789_Jithin_noble_fs.pdf', NULL, '1', '2023-07-26', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', '2023-08-02', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 12:59:18', 1, '2023-07-26 01:02:35', 0, NULL, 1),
(13855, 'Divya.N.R', '6', '7708716346', '9894763096', 'divyarenuka377@gmail.com', '2002-03-14', 21, '1', '2', 'M.Natrajan', 'Electrician', 8000.00, 1, 0.00, 15000.00, 'Ranipet', 'Kaveripakkam', '2307260053', '', '1', 'upload_files/candidate_tracker/36451563400_New doc Jun 9, 2023 6.40 PM (1).pdf', NULL, '1', '2023-07-26', 0, 'P1269', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Not Suit For Our Process.', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 01:07:30', 1, '2023-07-26 01:29:28', 0, NULL, 1),
(13856, 'Kiruthiga K', '6', '7200142333', '8807887714', 'kirithikakeerthana@gmail.com', '2003-01-05', 20, '1', '2', 'Kumaresan', 'Farming', 8000.00, 1, 0.00, 15000.00, 'Ranipet', 'Melapazhandai', '2307260054', '', '1', 'upload_files/candidate_tracker/8823904829_bab resumr.pdf', NULL, '1', '2023-07-26', 0, 'P1269', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Not Suit For Our Process.', '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 01:08:13', 1, '2023-07-26 01:55:04', 0, NULL, 1),
(13857, 'sakthivignesh', '2', '9003817379', '9629130388', 'sakthisvsp01@gmail.com', '1999-06-14', 24, '3', '2', 'parimalam', 'supervisor', 250000.00, 0, 0.00, 15000.00, 'coimbatore', 'coimbatore', '2307260055', '', '1', 'upload_files/candidate_tracker/10191089307_SakthiVignesh 2.pdf', NULL, '1', '2023-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-26 01:39:20', 1, '2023-07-26 02:19:04', 0, NULL, 1),
(13858, '', '0', '8939388160', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307260056', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-26 04:15:18', 0, NULL, 0, NULL, 1),
(13859, 'Gomathi', '5', '8056282177', '', 'ggomati88@gmail.com', '2001-11-23', 21, '2', '2', 'Susila', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'No 6 annapurani nagar,pooniyaman madu, chennai', 'No 6 annapurani nagar pooniyaman madu chennai', '2307260057', '1', '1', 'upload_files/candidate_tracker/62030276665_enc=encoded=WVYDMr6iQpoG5cDotq3XWatKo_BlxmKm3XW-m_E-U-7m-oa65SlgWoA=.pdf', NULL, '1', '2023-07-28', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50-50 profile.... Fresher need to open a lot .. kindly  check ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-26 04:25:41', 104, '2023-07-28 05:45:48', 0, NULL, 1),
(13860, 'Pooja. S', '5', '9840710190', '9840744192', 's92400582@gmail.com', '2003-07-07', 20, '2', '2', 'Sathyanarayanan', 'Tailor', 12000.00, 1, 0.00, 250000.00, 'Perambur, Chennai', 'Perambur, Chennai', '2307260058', '1', '1', 'upload_files/candidate_tracker/72413920183_Resume_24_07_2023_11_45_06_am.pdf', NULL, '1', '2023-07-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-26 06:57:42', 101, '2023-07-27 06:31:39', 0, NULL, 1),
(13861, 'Shoban Raj', '5', '7358331061', '9566104770', 'shobanr21@gmail.com', '2001-10-01', 21, '2', '2', 'Venkatesan .V', 'FLT OPERATOR', 16000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2307260059', '1', '1', 'upload_files/candidate_tracker/91798486016_SHOBAN Raj.docx', NULL, '1', '2023-07-27', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok Can be trained in our roles kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-26 07:15:41', 101, '2023-07-27 10:45:30', 0, NULL, 1),
(13862, 'Barani.J', '13', '8248792430', '', 'barani2252@gmail.com', '2000-04-24', 23, '2', '2', 'Jayanthi', 'NA', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2307270001', '27', '1', 'upload_files/candidate_tracker/18210984277_Barani2023.pdf', NULL, '1', '2023-07-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Selectedc For Apptitude Test', '2', '1', '', '1', '8', '', '2', '2023-08-10', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-27 10:25:37', 108, '2023-07-27 06:40:46', 0, NULL, 1),
(13863, 'FAIZUL HASSAN S', '14', '8939665843', '9444674350', 'hassanfaizul24@gmail.com', '2002-03-31', 21, '2', '2', 'Syed ibrahim.A', 'Labour', 12000.00, 2, 0.00, 3.00, 'CHENNAI', 'CHENNAI', '2307270002', '27', '1', 'upload_files/candidate_tracker/78687734521_Faizul-Hassan-goodcv.com-150623.74842-2.pdf', NULL, '1', '2023-07-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Selectedc For Apptitude Test', '2', '1', '', '1', '8', '', '2', '2023-08-10', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-27 10:27:48', 108, '2023-07-27 06:41:19', 0, NULL, 1),
(13864, 'Sevugamoorthi.R', '20', '7530034457', '', 'Ajithpmp38@gmail.com', '1999-07-27', 24, '4', '2', 'Ramesh', 'Farmer', 20000.00, 1, 17000.00, 19000.00, 'Madurai', 'Chennai', '2307270003', '', '2', 'upload_files/candidate_tracker/84725605337_CV_2023071710201462.pdf', NULL, '1', '2023-07-29', 9, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 10:27:48', 1, '2023-07-27 10:32:24', 0, NULL, 1),
(13865, 'Abdul Rahman', '14', '9150992081', '', 'rahmansajitha007@gmail.com', '2001-08-20', 21, '2', '2', 'Vajith Basha. H', 'Tailor', 12000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2307270004', '27', '1', 'upload_files/candidate_tracker/69211052780_ABDUL RAHMAN_RESUME..pdf', NULL, '1', '2023-07-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Selectedc For Apptitude Test', '2', '1', '', '1', '8', '', '2', '2023-08-10', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-27 10:29:30', 108, '2023-07-27 06:41:04', 0, NULL, 1),
(13866, 'Abdul Vahith', '13', '9941337856', '', 'vahithone1999@gmail.com', '2002-10-02', 20, '3', '2', 'Parent - Abdul lathif', 'Sale\'s man', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2307270005', '', '1', 'upload_files/candidate_tracker/48112569630_Abdul vahith resume.pdf', NULL, '1', '2023-07-27', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Not Selectedc For Apptitude Test', '2', '1', '0', '1', '8', '0', '2', '2023-08-10', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 10:31:45', 1, '2023-07-27 10:33:06', 0, NULL, 1),
(13867, '', '0', '9941206961', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307270006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-27 10:44:28', 0, NULL, 0, NULL, 1),
(13868, 'Michael Antony', '31', '7010315294', '9952985222', '2907.michael@gmail.com', '1997-07-29', 25, '2', '2', 'Arokiya samy', 'Labour', 500000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2307270007', '26', '1', 'upload_files/candidate_tracker/90748451436_My CV.pdf', NULL, '1', '2023-07-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Selectedc For Apptitude Test', '2', '1', '', '1', '8', '', '2', '2023-08-10', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-27 11:13:35', 108, '2023-07-27 06:40:27', 0, NULL, 1),
(13869, 'Ajay', '31', '9360367710', '', 'ajay.balaraman02@gmail.com', '2002-04-01', 21, '2', '2', 'Balaraman', 'Working in bike finance', 70000.00, 1, 0.00, 200000.00, 'Erode', 'Erode', '2307270008', '27', '1', 'upload_files/candidate_tracker/23166430811_Resume1.pdf', NULL, '1', '2023-07-27', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected in apptitude test', '2', '2', '', '1', '8', '', '2', '2023-08-10', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-27 11:16:44', 108, '2023-07-27 06:39:52', 0, NULL, 1),
(13870, 'P.sharmila', '33', '9789733200', '8870062891', 'sharmiperumal11@gmail.com', '2001-11-28', 21, '1', '2', 'Perumal', 'Farmer', 10000.00, 1, 0.00, 17000.00, 'Ahoskpillar', 'Chennai', '2307270009', '', '1', 'upload_files/candidate_tracker/34161918293_Sharmila Resume (2)-1.docx', NULL, '1', '2023-07-27', 0, '55686', '5', '59', NULL, 0.00, '', '0', NULL, '2', ' Not suitable for our roles will not sustain and handle the work pressure', '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 11:18:14', 1, '2023-07-27 11:30:16', 0, NULL, 1),
(13871, 'S. Rajeshwari', '33', '8870064593', '9789524001', 'rajeseenu1@gmail.con', '2001-08-23', 21, '1', '2', 'Seenu', 'Farmer', 10000.00, 1, 0.00, 17000.00, 'Ashokpillar', 'Chennai', '2307270010', '', '1', 'upload_files/candidate_tracker/25486480665_rajeshwari-1.docx', NULL, '1', '2023-07-27', 0, '55686', '5', '59', NULL, 0.00, '', '0', NULL, '2', ' Not Suitable For Our Roles Will Not Sustain And Handle The Work Pressure', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 11:18:24', 1, '2023-07-27 11:57:13', 0, NULL, 1),
(13872, 'Sneka M', '13', '9566498260', '', 'sneka048@gmail.com', '2002-05-16', 21, '6', '2', 'Madasamy', 'Work in departmental store', 20000.00, 1, 0.00, 240000.00, 'Tenkasi (Alangulam)', 'Chennai (mugapeer)', '2307270011', '', '1', 'upload_files/candidate_tracker/94668110485_snekam_CV.pdf', NULL, '1', '2023-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 11:21:58', 1, '2023-07-27 11:27:30', 0, NULL, 1),
(13873, 'Akash', '13', '9080931046', '', 'akash18h032@gmail.com', '2000-02-19', 23, '2', '2', 'Mohankumar', 'Farmer', 200000.00, 1, 0.00, 200000.00, 'Vendalur', 'Vandalur', '2307270012', '27', '1', 'upload_files/candidate_tracker/78785712134_Akash resume.docx-1.pdf', NULL, '1', '2023-07-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Selectedc For Apptitude Test', '2', '1', '', '1', '8', '', '2', '2023-08-10', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-27 11:23:49', 104, '2023-07-27 06:38:01', 0, NULL, 1),
(13874, 'R Vanaja Kothai', '13', '9344358569', '', 'vanajakothai0019@gmail.com', '2000-11-19', 22, '2', '2', 'BOOMA R', 'Home maker', 500000.00, 1, 0.00, 300000.00, 'Tirunelveli', 'Chennai', '2307270013', '27', '1', 'upload_files/candidate_tracker/36592791024_VanajaKothai-1-1-2.pdf', NULL, '1', '2023-07-27', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected for apptitude test', '2', '1', '', '1', '8', '', '2', '2023-08-10', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-27 11:24:17', 108, '2023-07-27 06:38:46', 0, NULL, 1),
(13875, 'Thameem Shahul Hameed M', '16', '9940565609', '', 'tsh061997@gmail.com', '1997-06-06', 26, '3', '2', 'Mohammed Abubakker', 'Painter', 20000.00, 1, 375000.00, 450000.00, 'Chennai', 'Chennai', '2307270014', '', '2', 'upload_files/candidate_tracker/11353045308_Thameem Resum-compressed.pdf', NULL, '1', '2023-07-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 11:28:05', 1, '2023-07-27 12:09:18', 0, NULL, 1),
(13876, 'Lalitha B', '30', '9361853149', '', 'lalithabv74@gmail.com', '2000-04-12', 0, '3', '2', 'Venkateswarlu', 'Working in transport office', 30000.00, 2, 0.00, 25000.00, 'No.91,4th st mariammal Nagar, kavangarai, ch-66', 'No.91,4th st Mariammal Nagar, kavangarai, ch-66', '2307270015', '', '1', 'upload_files/candidate_tracker/74148920203_LalithaResume.pdf', NULL, '1', '2023-07-27', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Sounding Low written communicaiton Ok can give a try', '9', '2', '0', '1', '8', '0', '2', '2023-08-02', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 11:44:39', 1, '2023-07-27 11:52:33', 0, NULL, 1),
(13877, 'Nisha.s', '5', '7305877808', '9791803258', 'Nishasampath0103@gmail.com', '2003-01-01', 20, '2', '2', 'Sampath kumar', 'Bus conductor in MTC', 40000.00, 3, 0.00, 20000.00, 'Thiruvanmiyur', '14/90 pammal hl colony pallavaram Chennai 70', '2307270016', '1', '2', 'upload_files/candidate_tracker/84103954058_Nisha Resume.pdf', NULL, '1', '2023-07-27', 0, '', '3', '59', '2023-08-01', 227364.00, '', '5', '1970-01-01', '2', 'Selected for GK Sir Team consultant Role', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-27 12:02:35', 60, '2023-08-01 09:55:40', 0, NULL, 1),
(13878, 'Prakash. P', '13', '7094340905', '9626039986', 'prakashponnusamy97@gmail.com', '1997-11-27', 25, '2', '2', 'Parent', 'Farmer', 10000.00, 1, 0.00, 1.80, 'Karur', 'Chennai', '2307270017', '27', '1', 'upload_files/candidate_tracker/97594209487_pk.pdf', NULL, '1', '2023-07-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Selectedc For Apptitude Test', '2', '1', '', '1', '8', '', '2', '2023-08-10', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-27 12:05:44', 108, '2023-07-27 06:39:05', 0, NULL, 1),
(13879, 'Parthasarathy.S', '13', '9597074607', '', 'sarathicr7@gmail.com', '1996-12-03', 26, '2', '1', 'SemalaiyappanR.p', 'Tailor', 40000.00, 1, 0.00, 20000.00, '10/5 Indhira Nagar Rakkiyapalayam Pirivu,Tirupur', 'Chennai', '2307270018', '27', '1', 'upload_files/candidate_tracker/67301017583_Parthasarathy - B.E.pdf', NULL, '1', '2023-07-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Selectedc For Apptitude Test', '2', '1', '', '1', '8', '', '2', '2023-08-10', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-27 12:11:25', 108, '2023-07-27 06:39:24', 0, NULL, 1),
(13880, 'Sajjath hussen. S', '13', '9087310365', '9344103609', 'sajjadhussain.it13@gmail.com', '2002-04-13', 21, '6', '2', 'Siddique', 'Business', 12000.00, 2, 0.00, 30000.00, 'Vellore', 'Vellore', '2307270019', '', '1', 'upload_files/candidate_tracker/15167401191_Sajjad_Hussain_Resume1.docx', NULL, '1', '2023-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '8610762', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 12:24:38', 1, '2023-07-27 12:34:38', 0, NULL, 1),
(13881, 'Stenith P Roach', '13', '9626236530', '', 'stenithstellus57@gmail.com', '1999-11-26', 23, '6', '2', 'Stellus', 'Fisherman', 80000.00, 3, 0.00, 15000.00, 'Kanyakumari', 'Velachery', '2307270020', '', '1', 'upload_files/candidate_tracker/47354285007_STENITH STELLUS.pdf', NULL, '1', '2023-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 12:25:21', 1, '2023-07-27 12:38:18', 0, NULL, 1),
(13882, 'Stejo w', '14', '6384825858', '', 'Stejowilfred@gmail.com', '2000-02-11', 23, '3', '2', 'Wilfred', 'fisherman', 10000.00, 4, 0.00, 15000.00, 'Kanniyakumari,Tamilnadu.', 'Velachery,chennai', '2307270021', '', '1', 'upload_files/candidate_tracker/56955143308_Stejo w (1).pdf.pdf', NULL, '1', '2023-07-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Java only', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-27 12:25:54', 101, '2023-07-27 02:34:36', 0, NULL, 1),
(13883, 'Aravinth A M', '13', '7708241659', '8667624292', 'aravinthatr12@gmail.com', '2002-03-12', 21, '6', '2', 'MURUGADASS R', 'Bank Manager', 600000.00, 1, 0.00, 400000.00, '12/23,Thayumanavar Street, Attur,Salem-636102', 'Attur,Salem', '2307270022', '', '1', 'upload_files/candidate_tracker/30749615717_rere (3).pdf', NULL, '1', '2023-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very Slow not open up will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 01:17:12', 1, '2023-07-27 01:23:56', 0, NULL, 1),
(13884, 'Sharvin R', '13', '6369232747', '7339582655', 'dsharvin2001@gmail.com', '2001-10-03', 21, '6', '2', 'Ravi', 'Tvs', 25000.00, 1, 0.00, 400000.00, 'Ranipet', 'Ranipet', '2307270023', '', '1', 'upload_files/candidate_tracker/73390253406_Sharvin resume (1) (2) (1) (2) (1).pdf', NULL, '1', '2023-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 01:19:49', 1, '2023-07-27 01:23:29', 0, NULL, 1),
(13885, 'Selva chithra', '23', '8825477277', '7092920522', 'Chithrapethuraja@gmail.com', '2002-04-27', 21, '3', '2', 'K.pethuraja', 'Machanic', 13000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2307270024', '', '1', 'upload_files/candidate_tracker/37462079280_chithra-1.pdf', NULL, '1', '2023-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 01:21:06', 1, '2023-07-28 10:35:40', 0, NULL, 1),
(13886, '', '0', '9025399499', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307270025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-27 01:33:01', 0, NULL, 0, NULL, 1),
(13887, 'Stejo w', '13', '9787321696', '6384825858', 'Stejowilfred@gmail.com', '2000-02-11', 23, '6', '2', 'Wilfred', 'fisherman', 10000.00, 4, 0.00, 15000.00, 'Kanniyakumari,Tamilnadu.', 'Velachery,chennai', '2307270026', '', '1', 'upload_files/candidate_tracker/21618080230_Stejo w (1).pdf.pdf', NULL, '1', '2023-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java only', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 02:35:24', 1, '2023-07-27 02:41:16', 0, NULL, 1),
(13888, 'mohamed asraf', '2', '8610300388', '', 'ajithasraf@gmail.com', '1999-06-15', 24, '2', '2', 'mohamed faruk', 'shop keeper', 700000.00, 3, 0.00, 15000.00, 'triplicane', 'chennai', '2307270027', '27', '1', 'upload_files/candidate_tracker/36847907582_MyResume (1).pdf', NULL, '1', '2023-07-27', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Not Selected For Apttitude Test.', '2', '1', '0', '1', '8', '0', '2', '2023-08-10', '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-27 03:07:31', 1, '2023-07-27 03:14:39', 0, NULL, 1),
(13889, 'Shawkathulla s.j', '13', '9361400338', '9360306988', 'amshawkath@gmail.com', '2002-06-14', 21, '2', '2', 'Jakeer Hussain', 'House wife', 15000.00, 2, 0.00, 300000.00, 'Velachery', 'Velachery', '2307270028', '27', '1', 'upload_files/candidate_tracker/80856073797_CV_2023072114350578.pdf', NULL, '1', '2023-07-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Selected For Apttitude Test.', '2', '1', '', '1', '8', '', '2', '2023-08-10', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-27 03:12:09', 104, '2023-07-27 06:38:41', 0, NULL, 1),
(13890, 'G.Fazil', '13', '9360306988', '9361400338', 'FAZILBASHA387@GMAIL.COM', '2002-04-20', 21, '2', '2', 'H.Ghoush Basha', 'Tailor', 15000.00, 1, 0.00, 250000.00, '181,TNSCB,Ezhil nagar,perumbakkam', '181,TNSCB,Ezhil Nagar,Perumbakkam', '2307270029', '27', '1', 'upload_files/candidate_tracker/22523675156_Fazil G - Curriculum vitae.pdf', NULL, '1', '2023-07-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not selected for apttitude test.', '2', '2', '', '1', '8', '', '2', '2023-08-10', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-27 03:23:22', 108, '2023-07-27 06:41:35', 0, NULL, 1),
(13891, 'NAGOMI L', '5', '8525897235', '9677535450', 'win.nagomilinga@gmail.com', '1994-02-07', 29, '2', '2', 'LINGAN', 'Farmer', 20000.00, 2, 10000.00, 15000.00, 'Kanchipuram', 'Urapakkam', '2307270030', '1', '2', 'upload_files/candidate_tracker/47253134678_Nago Resume.docx', NULL, '1', '2023-07-28', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Long distance.. candidate not interested in sales...', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-27 04:27:32', 104, '2023-07-28 10:28:50', 0, NULL, 1),
(13892, 'saravanakumar r', '16', '9786603199', '', 'saravana.hds@gmail.com', '1997-12-12', 25, '2', '1', 'yazhini b', 'state public health consultant', 60000.00, 2, 29000.00, 40000.00, 'vaniyambadi', 'chennai', '2307270031', '1', '2', 'upload_files/candidate_tracker/93273090714_Saravanakumar R - CV.pdf', NULL, '1', '2023-07-29', 2, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-27 09:03:15', 85, '2023-07-29 11:01:18', 0, NULL, 1),
(13893, '', '0', '9884366734', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307270032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-27 11:34:14', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13894, 'R.Vaishnavi', '6', '9384307024', '', 'kuttyvaishu0@gmail.com', '2003-03-11', 20, '2', '2', 'R.Vijaya', 'Security guard', 120000.00, 1, 0.00, 180000.00, 'Chennai', 'Chennai', '2307280001', '1', '1', 'upload_files/candidate_tracker/67170550743_Vaishnavi Ravi ... Resume pdf.pdf', NULL, '1', '2023-07-28', 0, '', '3', '59', '2023-07-31', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team Consultant Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-28 09:03:56', 60, '2023-07-31 10:01:19', 0, NULL, 1),
(13895, 'Goventhan N', '13', '9789862757', '9884280859', 'goventhan30@gmail.com', '2000-12-30', 22, '3', '2', 'Nedunchezhiyan A', 'Driver', 35000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2307280002', '', '1', 'upload_files/candidate_tracker/91242924751_GOVENTHAN N Resume_compressed (1).pdf', NULL, '1', '2023-07-28', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Not Selected For Apttitude Test.', '2', '1', '0', '1', '8', '0', '2', '2023-08-10', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 09:34:07', 1, '2023-07-28 10:11:19', 0, NULL, 1),
(13896, 'Sasidharan.P', '13', '7358535990', '9840691773', 'sasip0286@gmail.com', '2001-01-30', 22, '3', '2', 'Pachamuthu.R', 'Daily wages', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2307280003', '', '1', 'upload_files/candidate_tracker/64490409790_Scan 22 Jul 23 · 01·20·27.pdf', NULL, '1', '2023-07-28', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Not Selected For Apttitude Test.', '2', '1', '0', '1', '8', '0', '2', '2023-08-10', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 09:36:09', 1, '2023-07-28 09:42:33', 0, NULL, 1),
(13897, 'Kaavyaa chandran', '15', '9566202451', '', 'kaavyaachandran23@gmail.com', '2002-12-20', 20, '3', '2', 'G.Chandran', 'Driver', 15000.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2307280004', '', '1', 'upload_files/candidate_tracker/29340798928_Kaavyaa Resume May2023.pdf', NULL, '1', '2023-07-28', 0, '', '3', '59', '2023-07-31', 150000.00, '', '5', '1970-01-01', '1', 'Selected for Operations  staff role', '2', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-28 10:07:11', 60, '2023-07-29 04:52:28', 0, NULL, 1),
(13898, 'Rajesh D', '13', '9384615664', '8428287804', 'raj13101999@gmail.com', '1999-10-13', 23, '6', '2', 'Indumathi', 'Housemaid', 20000.00, 1, 0.00, 220000.00, 'No:132, , kalaivanar colony, chennai-101', 'No:132, , Kalaivanar Colony, Chennai-101', '2307280005', '', '1', 'upload_files/candidate_tracker/78410773055_Rajesh-Full Stack-Developer.pdf', NULL, '1', '2023-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open with the TxxampC fresher looking only on the salary\n', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-28 10:08:50', 108, '2023-07-28 11:00:06', 0, NULL, 1),
(13899, 'Hemnath', '13', '9080942049', '7092402834', 'hemnath453@gmail.com', '2008-07-28', 0, '6', '2', 'V.Natarajan', 'Electrician', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2307280006', '', '1', 'upload_files/candidate_tracker/37521810641_Resume 2023.pdf', NULL, '1', '2023-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'too long Distance up and down 50kms will not sustain', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 10:13:48', 1, '2023-07-28 10:16:55', 0, NULL, 1),
(13900, 'GOBINATH K', '13', '9176417897', '6379245497', 'gobik240@gmail.com', '2001-09-29', 21, '2', '2', 'Kumar V', 'No', 10000.00, 2, 0.00, 200000.00, 'Perambaalur', 'Perambaalur', '2307280007', '27', '1', 'upload_files/candidate_tracker/34241525127_gobinath.k-resume (4).pdf', NULL, '1', '2023-07-28', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'Not Selected For Apttitude Test.', '2', '1', '0', '1', '3', '0', '2', '2023-08-10', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 10:19:00', 1, '2023-07-28 10:25:44', 0, NULL, 1),
(13901, 'Geetha.V', '13', '8248079115', '', 'geetha007261@gmail.com', '2002-07-09', 21, '2', '2', 'Vaidyanathan', 'Govt employees', 30000.00, 1, 0.00, 2.00, 'Ramadasar salai,parasakthi nagar, Thiruverkadu', '26/31,natesanar street,thiruverkadu', '2307280008', '27', '1', 'upload_files/candidate_tracker/22175123319_RESUME -MAGIC BUS 2.docx', NULL, '1', '2023-07-28', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Not Selected For Apttitude Test.', '2', '1', '0', '1', '8', '0', '2', '2023-08-10', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 10:20:12', 1, '2023-07-28 10:27:44', 0, NULL, 1),
(13902, 'Gobisri M', '13', '9342578966', '', 'gobisri182@gmail.com', '2002-09-30', 20, '2', '2', 'Manoharan V', 'Farmer', 20000.00, 1, 0.00, 3.00, 'Krishnagiri', 'Chennai', '2307280009', '27', '1', 'upload_files/candidate_tracker/29733210363_updated Resume.pdf', NULL, '1', '2023-07-28', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Not Selected For Apttitude Test.', '2', '2', '0', '1', '8', '0', '2', '2023-08-10', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 10:20:20', 1, '2023-07-28 10:46:16', 0, NULL, 1),
(13903, 'M Subalakshmi', '13', '9344446092', '9791796175', 'charmingsubalakshmi04@gmail.com', '2002-02-04', 21, '6', '2', 'C.Indiragandhi', 'Panchayat', 15000.00, 1, 0.00, 17000.00, 'Theni', 'Chennai', '2307280010', '', '1', 'upload_files/candidate_tracker/20777737392_MSubalakshmi2002.pdf', NULL, '1', '2023-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basics not suitable not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 10:23:14', 1, '2023-07-28 10:28:56', 0, NULL, 1),
(13904, 'Godwin Jose.D', '13', '7338792570', '9941299918', 'godwinjose17@gmail.com', '2001-08-17', 21, '2', '2', 'David.J', 'Security', 10000.00, 0, 0.00, 400000.00, 'Chennai', 'Chennai', '2307280011', '27', '1', 'upload_files/candidate_tracker/7086498618_CV_2023072718183682.pdf', NULL, '1', '2023-07-28', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Not Selected For Apttitude Test.', '2', '1', '0', '1', '8', '0', '2', '2023-08-10', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 10:25:08', 1, '2023-07-28 10:28:47', 0, NULL, 1),
(13905, 'S.Subathira', '6', '9442544735', '9600477611', 'subathiras200301@gmail.com', '2001-03-20', 22, '2', '1', 'Syed Tariq Ali', 'Supervisor', 16000.00, 2, 14000.00, 16000.00, 'Ponniammanmedu, kulathoor', 'Ponniammanmedu, Kulathoor', '2307280012', '1', '2', 'upload_files/candidate_tracker/95057702741_Suba Resume.pdf', NULL, '1', '2023-07-28', 30, '', '3', '59', '2023-07-31', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-28 10:55:47', 60, '2023-07-29 04:50:17', 0, NULL, 1),
(13906, 'M.Abdul kalam', '4', '9087278198', '9047872828', 'mabdulkalam01052003@gmail.com', '2003-05-01', 20, '2', '2', 'N.Mohamed Ali jinna', 'Daily salary worker', 18000.00, 1, 0.00, 14000.00, 'Thanjavur', 'Thanjavur', '2307280013', '1', '1', 'upload_files/candidate_tracker/12977113968_Abdul kalam resume.docx', NULL, '1', '2023-07-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is ok with the profile father doing work labour in market rental house have one brother studying college .....have good in fluency speech and high aim of thoughts related to job college topper ...expected  14k due to family issue kindly check and confirm once from your side ...have no laptop ready  to manage ', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-28 11:23:33', 85, '2023-07-28 11:43:13', 0, NULL, 1),
(13907, 'Deepika S', '13', '7010307380', '9442357081', 'deepishamshiva07@gmail.com', '1999-07-04', 24, '6', '2', 'Sivakumar', 'Electrical engineer', 350000.00, 1, 0.00, 20000.00, 'Ranipet', 'Ranipet', '2307280014', '', '1', 'upload_files/candidate_tracker/60437017216_deepika_cv (1).pdf', NULL, '1', '2023-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Yet to complete her graduation post completion if she comes let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 11:27:34', 1, '2023-07-28 11:44:53', 0, NULL, 1),
(13908, 'gokul', '13', '7200380717', '', 'massgokul202@gmail.com', '2001-11-07', 21, '6', '2', 'thiyagarajan', 'fabrication engineer', 70000.00, 1, 0.00, 500000.00, 'chennai', 'chennai', '2307280015', '', '1', 'upload_files/candidate_tracker/53615270817_GOKUL T RESUME .pdf', NULL, '1', '2023-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance not much comfort in TxxampC too ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 11:36:42', 1, '2023-07-28 11:48:10', 0, NULL, 1),
(13909, 'Surya', '13', '7639747288', '9965832220', 'dponraj330@gmail.com', '2008-07-28', 0, '3', '2', 'ponraj', 'madura coats', 20000.00, 1, 0.00, 20000.00, 'thoothukudi', 'velachery', '2307280016', '', '1', 'upload_files/candidate_tracker/98818220107_SURYA P M 3.pdf', NULL, '1', '2023-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 12:11:59', 1, '2023-07-28 12:19:37', 0, NULL, 1),
(13910, 'kalieswaran.B', '13', '8124572328', '7358826157', 'kaliesw17@gmail.com', '2000-05-28', 23, '6', '2', 'balamurugan', 'Gov emp', 30000.00, 1, 0.00, 240000.00, 'velachery,chennai', 'velachery,chennai', '2307280017', '', '1', 'upload_files/candidate_tracker/87531463264_Kalieswaran.JavaDeveloper.resume-2.pdf', NULL, '1', '2023-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 12:15:05', 1, '2023-07-28 12:20:46', 0, NULL, 1),
(13911, 'Purusothaman B', '13', '6369112829', '', 'purusoth570@gmail.com', '1996-07-18', 27, '3', '2', 'Balachandran', 'Tax Driver', 20000.00, 1, 14000.00, 25000.00, 'Chennai', 'Chennai', '2307280018', '', '2', 'upload_files/candidate_tracker/24363472291_1688563700400_Resume_Purusoth (1).pdf', NULL, '1', '2023-07-28', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 12:17:30', 1, '2023-07-28 12:20:47', 0, NULL, 1),
(13912, '', '0', '9884232170', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307280019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-28 12:20:04', 0, NULL, 0, NULL, 1),
(13913, '', '0', '8122543665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307280020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-28 12:24:29', 0, NULL, 0, NULL, 1),
(13914, '', '0', '6374420976', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307280021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-28 12:26:36', 0, NULL, 0, NULL, 1),
(13915, 'Prasanna Kumari.R', '6', '9840602742', '7395920021', 'prasanprasanjoy@gmail.com', '2002-08-10', 20, '3', '2', 'Raji.K', 'Auto driver', 25.00, 3, 16000.00, 20000.00, 'Ayanavaram', 'Ayanavaram', '2307280022', '', '2', 'upload_files/candidate_tracker/80967720342_prasanna Kumari.R(1)-1.pdf', NULL, '1', '2023-07-28', 2, '', '1', '85', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 12:26:42', 1, '2023-07-28 12:38:35', 0, NULL, 1),
(13916, '', '0', '8838451966', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307280023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-28 12:32:32', 0, NULL, 0, NULL, 1),
(13917, 'Ajaykumar s', '13', '7448839571', '', 'ajaykumarsiva2000@gmail.com', '2000-06-06', 23, '6', '2', 'Parent', 'Buliding contractor', 30000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2307280024', '', '1', 'upload_files/candidate_tracker/71584222959_Ajaykumar_Btech_CSE_2022_Full Stack .pdf', NULL, '1', '2023-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 12:46:25', 1, '2023-07-28 12:50:38', 0, NULL, 1),
(13918, 'Keerthivasan S', '13', '8940623679', '', 'rskeerthi18@gmail.com', '2001-10-08', 21, '6', '2', 'Pareant', 'Farmer', 30000.00, 1, 0.00, 20000.00, 'Pudukkotai', 'Chennai', '2307280025', '', '1', 'upload_files/candidate_tracker/36814562874_keerthivasan resume.pdf', NULL, '1', '2023-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 12:53:44', 1, '2023-07-28 12:58:36', 0, NULL, 1),
(13919, 'sulthana banu', '5', '6374145406', '9080227011', 'Sulthanaj2105@gmail.com', '2000-04-05', 23, '2', '1', 'khan shareef jinna', 'bussiness', 20000.00, 1, 12000.00, 16000.00, 'dharmapuri', 'chennai', '2307280026', '1', '2', 'upload_files/candidate_tracker/55625671895_mine bio data.pdf', NULL, '1', '2023-07-28', 0, '', '3', '59', '2023-07-31', 198000.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team Consultant role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-28 01:14:41', 60, '2023-07-29 04:55:53', 0, NULL, 1),
(13920, 'KARTHICK A', '13', '9952237466', '9751137459', 'karthiklarance55@gmail.com', '1997-07-14', 26, '4', '2', 'Amulraj M', 'Tailor', 40000.00, 2, 0.00, 20000.00, 'Tiruppur', 'Tiruppur', '2307280027', '', '1', 'upload_files/candidate_tracker/56903936068_Karthick - BE (word file)-1.pdf', NULL, '2', '2023-08-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-28 02:13:06', 1, '2023-07-28 02:16:03', 0, NULL, 1),
(13921, 'Kishore V', '5', '8667367410', '', 'kishorecool20@gmail.com', '1994-11-20', 28, '2', '2', 'Vijayakumar G', 'ICF contract', 12000.00, 1, 0.00, 14000.00, 'Ponneri', 'Ponneri', '2307280028', '1', '1', 'upload_files/candidate_tracker/9347837394_kishore.vj.pdf', NULL, '1', '2023-07-28', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile fresher for our sales sustainability doubts kindly check and let me know your inputs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-28 03:13:03', 60, '2023-07-31 06:50:25', 0, NULL, 1),
(13922, 'Deepak', '4', '9380842204', '9080357819', 'deepak219bma06@gmail.com', '2001-05-01', 22, '2', '2', 'Ananda Babu.R', 'Auto driver', 15000.00, 1, 17000.00, 18000.00, 'Chennai', 'Chennai', '2307280029', '1', '2', 'upload_files/candidate_tracker/85625378115_Deepak.A resume 2023.docx', NULL, '1', '2023-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles every 6 months jumped companies not in sales too ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-28 05:23:00', 104, '2023-07-29 06:48:03', 0, NULL, 1),
(13923, 'Soorya k', '13', '6282601831', '9562861630', 'sooryasurya6282@gmail.com', '1996-12-14', 26, '6', '2', 'Sunil', 'Un employd', 10000.00, 2, 0.00, 18000.00, 'Kannur,kerala', 'Kannur', '2307290001', '', '1', 'upload_files/candidate_tracker/28544397925_Soorya Update new CV 2023.pdf', NULL, '1', '2023-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basics No communication only speaks malayalam not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-29 10:08:02', 1, '2023-07-29 10:13:48', 0, NULL, 1),
(13924, 'Ganesh M', '31', '9629085290', '6374356050', 'mganeshdame1007@gmail.com', '2000-06-19', 23, '6', '2', 'Thirumalaiyachi', 'PeetiWorker', 80000.00, 3, 0.00, 400000.00, 'tenkasi', 'tenkasi', '2307290002', '', '1', 'upload_files/candidate_tracker/65340447249_Ganesh_M_Resume.pdf', NULL, '1', '2023-07-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic skills but not comfort in TxxampC if he comes back let  us try', '2', '1', '', '1', '8', '', '2', '2023-08-07', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-29 11:03:24', 104, '2023-07-29 06:50:00', 0, NULL, 1),
(13925, 'Joel J', '3', '7092824762', '9597451320', 'joeljustin259200@gmail.com', '2001-09-25', 21, '6', '2', 'John Selva peruman', 'TV mechanic', 10000.00, 2, 8000.00, 20000.00, 'Ambasamudram', 'Ambasamudram', '2307290003', '', '2', 'upload_files/candidate_tracker/6447008256_Joel_Resume.pdf', NULL, '1', '2023-07-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come back with his confirmation already working and time being he is just looking for his safe employment', '2', '1', '', '1', '8', '', '2', '2023-08-07', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-29 11:04:38', 104, '2023-07-29 06:50:10', 0, NULL, 1),
(13926, 'Parthiban. J', '13', '9360161151', '9444270012', 'vishnuraj24102002@gmail.com', '2002-10-06', 20, '3', '2', 'Jagannath ah.j', 'Electriction', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2307290004', '', '1', 'upload_files/candidate_tracker/52050741163_Adobe Scan 01-Apr-2021.pdf', NULL, '2', '2023-07-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-29 11:08:09', 1, '2023-07-29 12:13:58', 0, NULL, 1),
(13927, '', '0', '9444270012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307290005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-29 11:36:22', 0, NULL, 0, NULL, 1),
(13928, 'VISHNU RAJ .C', '13', '9087493829', '9176446947', 'VISHNURAJ24RAJ@GMAIL.COM', '2002-10-24', 20, '6', '2', 'Sharmila', 'Teacher', 8000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2307290006', '', '1', 'upload_files/candidate_tracker/74220001186_White Simple Student CV Resume (2).pdf', NULL, '1', '2023-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not much comfort in TxxampC fresher if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-29 11:38:55', 104, '2023-07-29 06:51:04', 0, NULL, 1),
(13929, 'Mehachwa solomon shylla', '11', '8837208423', '9862365495', 'mehachwa1110@gmail.com', '2000-10-11', 22, '6', '2', 'G.S Dkhar', 'Govt. Servant', 180000.00, 3, 0.00, 15000.00, 'EKHD', 'Tambaram', '2307290007', '', '1', 'upload_files/candidate_tracker/8086278066_mehachwa solomon shylla CV-1.docx', NULL, '1', '2023-07-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Good Communication No local communication only english and hindi can give a try for other roles if he is ok \n', '6', '1', '0', '1', '8', '0', '2', '2023-08-07', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-29 02:49:10', 1, '2023-07-29 03:15:53', 0, NULL, 1),
(13930, 'Nasreen H', '4', '6382117639', '', 'nasreenhsh@gmail.com', '2000-09-16', 22, '3', '2', 'Syed Hussain H', 'Driver', 2.50, 0, 18000.00, 25000.00, 'Panruti', 'Porur', '2307290008', '', '2', 'upload_files/candidate_tracker/20242678971_2023 CV nasreen.pdf', NULL, '1', '2023-07-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-29 05:48:09', 1, '2023-07-29 05:55:34', 0, NULL, 1),
(13931, '', '0', '9976332196', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307290009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-29 06:01:31', 0, NULL, 0, NULL, 1),
(13932, 'Ashwin manivannan', '5', '9790742745', '8939225448', 'ashwinx1998@gmail.com', '1998-08-13', 24, '2', '2', 'Vatchala', 'Home maker', 13000.00, 1, 0.00, 240000.00, 'Chennai', 'Chennai', '2307300001', '1', '1', 'upload_files/candidate_tracker/73623295114_ASHWIN-1.pdf', NULL, '1', '2023-07-31', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-07-30 01:39:28', 104, '2023-07-31 05:10:55', 0, NULL, 1),
(13933, 'sneha', '5', '9025958588', '8754316386', 'snehabalaraman24@gmal.com', '2002-02-10', 21, '2', '2', 'balaraman', 'farmer', 30000.00, 4, 0.00, 20000.00, 'thiruvannamalai', 'chennai', '2307300002', '1', '1', 'upload_files/candidate_tracker/39411627198_SnehabalaramanResume.pdf', NULL, '1', '2023-08-01', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left With Out Attending The Final Round Due To Emergeny If She Comes Back Let Us Try For Operations', '5', '1', '', '1', '8', '', '2', '2023-08-08', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-07-30 09:48:16', 108, '2023-08-01 03:19:42', 0, NULL, 1),
(13934, 'Dhivya L', '4', '7708372054', '9486823692', 'ldhivyasri2112@gmail.com', '2000-12-16', 22, '2', '2', 'Lakshmi Narayanan R', 'Temple Archagar', 35000.00, 0, 0.00, 250000.00, 'Kumbakonam', 'Kumbakonam', '2307310001', '1', '1', 'upload_files/candidate_tracker/25413101043_Dhivya L Resume 2023.pdf', NULL, '1', '2023-07-31', 0, '', '3', '59', '2023-08-10', 152400.00, '', '5', '1970-01-01', '2', 'Selected for Sithy Team Consultant', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-31 09:58:04', 60, '2023-08-09 11:02:47', 0, NULL, 1),
(13935, 'Yuvarani S', '4', '6382600736', '9361021251', 'yuvasri563@gmail.com', '2000-11-27', 22, '2', '2', 'M. Saravanan', 'Jewelry shop', 32000.00, 1, 0.00, 30000.00, 'Kumbakonam', 'Kumbakonam', '2307310002', '1', '1', 'upload_files/candidate_tracker/34429037269_YUVARANI UPDATED RESUME.pdf', NULL, '1', '2023-07-31', 0, '', '3', '59', '2023-08-10', 152400.00, '', '5', '1970-01-01', '2', 'selected for Sithy Team Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-31 09:58:07', 60, '2023-08-09 11:03:10', 0, NULL, 1),
(13936, 'm.Kavitha', '5', '9003252485', '7598311614', 'kavithamathi444@gmail.com', '2002-06-21', 21, '2', '2', 'r.mathiyalagan', 'travels manager', 15000.00, 0, 0.00, 15000.00, 'kodambakkam', 'kodambakkam', '2307310003', '1', '1', 'upload_files/candidate_tracker/95793432972_kavitha Resume.pdf', NULL, '1', '2023-07-31', 0, '', '3', '59', '2023-08-01', 151584.00, '', '5', '1970-01-01', '2', 'Selected for B2Bconsultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-31 10:25:25', 60, '2023-08-01 09:58:11', 0, NULL, 1),
(13937, 'MONISHA N', '5', '6380527815', '9344643631', 'monishamonisha8152@gmail.com', '2003-05-12', 20, '2', '2', 'Sangeetha', 'Export company', 9000.00, 2, 0.00, 15000.00, 'SAIDAPET', 'SAIDAPET', '2307310004', '1', '1', 'upload_files/candidate_tracker/29543630866_Monisha.pdf', NULL, '1', '2023-07-31', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Need to open up a lot kindly check and let me know your inputs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-31 10:25:38', 101, '2023-07-31 10:44:41', 0, NULL, 1),
(13938, 'S. Roshini', '5', '7871611704', '7200208321', 'roshinishanmugam06@gmail.com', '2003-02-22', 20, '2', '2', 'Shanmugam. S', 'Driver', 7000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2307310005', '1', '1', 'upload_files/candidate_tracker/20578326600_DOC-20230724-WA0000..pdf', NULL, '1', '2023-07-31', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Speaking but seems to be 5050 kindly check and let me know your inputs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-31 10:26:15', 101, '2023-07-31 10:45:03', 0, NULL, 1),
(13939, 'dp.kavishree', '5', '9360511153', '8056019697', 'kavishree416@gmail.com', '2002-09-15', 20, '2', '2', 'd.perumal', 'tailor', 13000.00, 0, 0.00, 15000.00, 'saidapet', 'saidapet', '2307310006', '1', '1', 'upload_files/candidate_tracker/82274282442_kavishree Resume.docx', NULL, '1', '2023-07-31', 0, '', '3', '59', '2023-08-01', 151584.00, '', NULL, '2024-05-04', '2', 'Selected for B2B Consultant Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-31 10:27:38', 60, '2023-08-01 09:59:25', 0, NULL, 1),
(13940, 'Keerthana.E', '5', '9087572556', '9940426556', 'Keert4750@gmail.com', '2002-01-16', 21, '2', '2', 'Elumalai.G', 'Clerk', 11000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2307310007', '1', '1', 'upload_files/candidate_tracker/23827121404_Resume .pdf', NULL, '1', '2023-07-31', 0, '', '3', '59', '2023-08-01', 151584.00, '', '5', '1970-01-01', '2', 'Selected for Operations Renewal final round by gokul', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', 'Moved to B2B Channel as she is interested in that role', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-31 10:28:55', 60, '2023-08-02 09:58:02', 0, NULL, 1),
(13941, 'Jayaprakash J', '13', '9790840415', '9487114956', 'jayaprakashmat@gmail.com', '2001-05-11', 22, '1', '2', 'Jaganathan', 'Coolie', 12000.00, 1, 0.00, 20000.00, 'Salem', 'Salem', '2307310008', '', '1', 'upload_files/candidate_tracker/72228571172_JAYAPRAKASHJ(resume).docx', NULL, '2', '2023-07-31', 0, 'Job', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 10:34:12', 1, '2023-07-31 10:38:37', 0, NULL, 1),
(13942, 'iyaz', '31', '7010603024', '', 'iyazuuuuu@gmail.com', '2000-06-05', 23, '3', '1', 'lubna', 'tailor', 20000.00, 3, 0.00, 350000.00, 'chennai', 'chennai', '2307310009', '', '1', 'upload_files/candidate_tracker/24028397359_Riyaz_CV_.pdf', NULL, '1', '2023-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left With Out Attending The Interview', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 10:39:42', 1, '2023-07-31 10:42:37', 0, NULL, 1),
(13943, 'Raja Ganesan', '31', '6380400560', '', 'mr.raja.g12@gmail.com', '1997-06-29', 26, '3', '2', 'Rani G', 'Cooli', 20000.00, 2, 0.00, 350000.00, 'Chennai', 'Chennai', '2307310010', '', '1', 'upload_files/candidate_tracker/85478934727_RAJA G__B.com (CS)_2019__FRONDEND DEVELOPER__RESUME.pdf', NULL, '1', '2023-07-31', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 10:41:50', 1, '2023-07-31 10:50:17', 0, NULL, 1),
(13944, 'Rishi kesav P', '20', '8940367662', '9965278103', 'prishikesav@gmail.com', '1999-10-16', 23, '2', '2', 'Palani', 'Business', 10000.00, 1, 0.00, 300000.00, 'Villupuram', 'Chennai', '2307310011', '1', '1', 'upload_files/candidate_tracker/37239915322_Rishi Kesav (DA) Resume.pdf', NULL, '1', '2023-07-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Over confidence Will not sustain and handle our work pressure this attitude will not work it out in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-31 10:45:54', 85, '2023-07-31 11:23:12', 0, NULL, 1),
(13945, 'Niranjan.J', '4', '9092865374', '', 'Niranjan22081998@gmail.com', '1998-08-22', 24, '2', '2', 's.jayaraj', 'Driver', 45000.00, 1, 25000.00, 40000.00, 'Chennai-puzhal', 'Chennai-puzhal', '2307310012', '1', '2', 'upload_files/candidate_tracker/18248967274_pdf&rendition=1.pdf', NULL, '1', '2023-07-31', 25, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Clarity in his communication Salary exp is high his current is 25K TH will not sustain and handle our work pressure', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-31 10:46:01', 85, '2023-07-31 02:48:07', 0, NULL, 1),
(13946, 'Maria Celena P', '11', '7337593493', '9841026493', 'Pmariacelena01@gmail.com', '2000-10-21', 22, '3', '2', 'G. Palmer', 'Admin', 70000.00, 1, 0.00, 18000.00, 'Nungambakkam', 'Nungambakkam', '2307310013', '', '1', 'upload_files/candidate_tracker/43335121697_Maria\'s Resume (1).pdf', NULL, '1', '2023-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left with out attending the interview', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 10:53:07', 1, '2023-07-31 10:59:48', 0, NULL, 1),
(13947, 'Rebecca Andrea. a', '11', '9962383314', '', 'fabbecky555@gmail.com', '2001-07-26', 22, '3', '2', 'Alex', 'Business', 40000.00, 1, 0.00, 18000.00, 'Purasaiwalkam', 'Purasaiwalkam', '2307310014', '', '1', 'upload_files/candidate_tracker/76864084446_Rebecca\'s Resume (3).pdf', NULL, '1', '2023-07-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 10:55:22', 1, '2023-07-31 11:01:29', 0, NULL, 1),
(13948, 'Arul mani G', '23', '9384279046', '8610031780', 'arulmani3302@gmail.com', '2002-03-03', 21, '2', '2', 'Gopal R', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Tiruvannamalai', 'Chennai', '2307310015', '27', '1', 'upload_files/candidate_tracker/98691042249_ARUL MANI G ,BE(CSE-2023).pdf', NULL, '1', '2023-07-31', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Selected For Apttitude Test.', '2', '1', '', '1', '8', '', '2', '2023-08-10', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-31 10:59:38', 104, '2023-07-31 05:20:04', 0, NULL, 1),
(13949, 'Mohamed Hameed N', '23', '7092863772', '9840113364', 'smarthameed79@gmail.com', '2002-01-08', 21, '2', '2', 'Mohamed ahamed Noorulla S K', 'Business', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2307310016', '27', '1', 'upload_files/candidate_tracker/34371104301_Resume main new.pdf', NULL, '1', '2023-07-31', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Selected For Apttitude Test.', '2', '1', '', '1', '8', '', '2', '2023-08-10', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-07-31 10:59:39', 104, '2023-07-31 05:19:20', 0, NULL, 1),
(13950, 'Mugeshwari. R', '31', '8825889512', '7358599059', 'mugi237ragu@gmail.com', '2001-07-23', 22, '3', '2', 'Ragupathy. P', 'Sale Executive', 24000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2307310017', '', '1', 'upload_files/candidate_tracker/47831428837_MUGESHWARI_Resume Mar_2023.pdf', NULL, '1', '2023-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Duplicated Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 11:00:07', 1, '2023-07-31 11:25:38', 0, NULL, 1),
(13951, 'Gayathree.R', '33', '6374377018', '9092283354', 'gayathree2003@gmail.com', '2003-03-16', 20, '2', '2', 'Rajamanickam .S', 'Fitter', 120000.00, 1, 0.00, 17000.00, 'No 23 Vrd nagar 5 cross street madhavaram cH-60', 'No 3775 43rd Street 2nd main road mathur MMDA ch68', '2307310018', '1', '1', 'upload_files/candidate_tracker/18217076599_Black and White Minimalistic Simple Resume.pdf', NULL, '1', '2023-07-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much interested in calling much focus in Accounts but no ideas in that too long distance sustainability doubts', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-07-31 11:03:45', 101, '2023-07-31 11:31:13', 0, NULL, 1),
(13952, 'Ayarulla N', '13', '8667657367', '9677700988', 'abuayalla@gmail.com', '1997-04-22', 26, '6', '2', 'Noordeen A', 'Hotel', 200000.00, 5, 0.00, 300000.00, 'Ambal nagar,Guindy, Chennai', 'Ambal nagar Guindy Chennai', '2307310019', '', '1', 'upload_files/candidate_tracker/3348670647_Ayarulla.N.pdf', NULL, '1', '2023-07-31', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 11:16:21', 1, '2023-07-31 11:24:19', 0, NULL, 1),
(13953, 'Sharmila banu', '4', '8056689476', '', 'Ssharmilabanuu@gmail.com', '2001-10-22', 21, '1', '2', 'Sheik dawood', 'Clerk', 7000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2307310020', '', '1', 'upload_files/candidate_tracker/69863017836_RESUME-4.pdf', NULL, '1', '2023-07-31', 0, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 11:17:24', 1, '2023-07-31 11:59:43', 0, NULL, 1),
(13954, 'HARIHARAN', '27', '6381625669', '', 'hariharanchandran321@gmail.com', '2008-07-31', 0, '6', '2', 'Chandran', 'Wages', 12000.00, 2, 10000.00, 15000.00, 'Nungambakkam', 'Chennai', '2307310021', '', '2', 'upload_files/candidate_tracker/86693804816_Hariharan C (1).pdf', NULL, '1', '2023-07-31', 1, '', '1', '97', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 11:25:04', 1, '2023-07-31 11:31:13', 0, NULL, 1),
(13955, 'Prathap s', '2', '8870782623', '8870782523', 'Prathaptamil8@gmail.com', '1995-05-20', 28, '3', '2', 'INDIRA S', 'Wages', 12000.00, 2, 0.00, 15000.00, '150/5 pulikuttai(vig)tirupattur(tk),Tirupattur(dt)', 'Anna Nager', '2307310022', '', '1', 'upload_files/candidate_tracker/63339381233_MERN.Course Complete.docx', NULL, '1', '2023-07-31', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 11:25:50', 1, '2023-07-31 12:46:30', 0, NULL, 1),
(13956, 'Ayyansangili.k', '13', '8870550479', '', 'ayyansangilik@gmail.com', '2001-05-20', 22, '6', '2', 'Kannadisamy', 'Farmer', 18000.00, 2, 0.00, 20000.00, 'Madurai', 'Chennai', '2307310023', '', '1', 'upload_files/candidate_tracker/45337817995_AYYANSANGILI\'s Resume (3).pdf', NULL, '1', '2023-07-31', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Rejected In Aptitude Round', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 11:26:52', 1, '2023-07-31 11:30:51', 0, NULL, 1),
(13957, 'Amreta', '28', '6374667939', '', 'amretabhaskar22@gmail.com', '2001-05-22', 22, '3', '2', 'Bhaskar', 'Business', 50000.00, 1, 23000.00, 30000.00, 'Chennai', 'Chennai', '2307310024', '', '2', 'upload_files/candidate_tracker/30953792864_AMRETA BHASKAR RESUME.pdf', NULL, '1', '2023-07-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 11:30:04', 1, '2023-07-31 11:38:04', 0, NULL, 1),
(13958, 'Sandhiya', '31', '9629637190', '', 'Sandysingaravelan@gmail.com', '1999-08-27', 23, '3', '2', 'Singaravelan. K', 'Own business', 15000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2307310025', '', '1', 'upload_files/candidate_tracker/36067823159_sandhiya Resume.pdf', NULL, '1', '2023-07-31', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Not Much Good In Prog.Laug....xxampNot Ok With Our TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 11:31:56', 1, '2023-07-31 11:37:07', 0, NULL, 1),
(13959, 'Harish', '31', '8925738300', '6369546560', 'info.mr.harish@gmail.com', '2002-04-07', 21, '6', '2', 'Shanmuga sundharam', 'Buisness', 20000.00, 2, 0.00, 3.50, 'Chennai', 'Pallavaram', '2307310026', '', '1', 'upload_files/candidate_tracker/3518403101_HARISH_S_Resume_2.pdf', NULL, '1', '2023-07-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 11:32:19', 1, '2023-07-31 11:37:23', 0, NULL, 1),
(13960, '', '0', '7502637232', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307310027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-31 11:35:08', 0, NULL, 0, NULL, 1),
(13961, 'kesavanraj A', '31', '8525905774', '', 'kesavanraj0506@gmail.com', '1999-06-05', 24, '6', '2', 'Antonysami N', 'salesman', 15000.00, 3, 0.00, 20000.00, 'Neyveli', 'chennai', '2307310028', '', '1', 'upload_files/candidate_tracker/31342137856_kesavanraj.pdf', NULL, '1', '2023-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have 6 months intern exp but not open for TxxampC more than 1 yr not much good with basics too', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 11:39:02', 1, '2023-07-31 11:43:09', 0, NULL, 1),
(13962, 'Sulthan Beevi.S', '4', '7358653915', '', 'kimngapoi17@gmail.com', '2002-11-17', 20, '2', '2', 'Sabura Beevi', 'Beautician', 90000.00, 1, 0.00, 200000.00, 'Porur', 'Porur', '2307310029', '1', '1', 'upload_files/candidate_tracker/74644303550_Resume_Sulthan Beevi S_Format1 (1).pdf', NULL, '1', '2023-07-31', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-07-31 11:50:58', 85, '2023-07-31 02:48:26', 0, NULL, 1),
(13963, 'Sakthimathan k', '31', '9500812633', '', 'sakthimathan007sm@gmail.com', '1998-10-28', 24, '3', '2', 'Kumar m', 'Wages', 13000.00, 0, 0.00, 10000.00, 'Erode', 'Chenni', '2307310030', '', '1', 'upload_files/candidate_tracker/28308703264_SAKTHIMATHAN k.docx', NULL, '1', '2023-07-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 12:44:52', 1, '2023-07-31 12:54:13', 0, NULL, 1),
(13964, 'Vishnu', '13', '8072053481', '', 'Vishnusmart2212@gmail.com', '1999-12-22', 23, '3', '2', 'Ganesh', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Puducherry', 'Puducherry', '2307310031', '', '1', 'upload_files/candidate_tracker/76514430195_VishnuGResume.pdf', NULL, '1', '2023-07-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 01:19:22', 1, '2023-07-31 02:06:54', 0, NULL, 1),
(13965, '', '0', '7806911620', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2307310032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-07-31 01:38:35', 0, NULL, 0, NULL, 1),
(13966, 'DEIVA SIVAM', '31', '9487937818', '', 'a.s.deiva@gmail.com', '1998-06-03', 25, '6', '2', 'SIVAM', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Pudukkottai', 'Chennai', '2307310033', '', '1', 'upload_files/candidate_tracker/42534002267_DEIVA_SIVAM_RESUME (1).pdf', NULL, '1', '2023-07-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-07-31 02:35:38', 1, '2023-07-31 02:38:43', 0, NULL, 1),
(13967, 'Subash', '5', '8610920685', '9500809724', 'sekarsubash29@gmail.com', '1997-09-19', 25, '2', '2', 'Chandra sekaran', 'Teacher', 300000.00, 1, 20000.00, 20000.00, 'Tiruvallur', 'Tiruvallur', '2308010001', '1', '2', 'upload_files/candidate_tracker/20279743023_Subash_Resume (1).pdf', NULL, '1', '2023-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance will not handle our work roles not suitable updown 80kms', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-01 09:49:40', 104, '2023-08-01 01:25:23', 0, NULL, 1),
(13968, '', '0', '8525099493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308010002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-01 10:18:31', 0, NULL, 0, NULL, 1),
(13969, 'Chandru', '14', '6382928410', '9843911805', 'chandrubabi0000@gmail.com', '2002-02-16', 21, '6', '2', 'Rajini', 'Farmer', 10000.00, 0, 0.00, 12000.00, 'Kallakurichi', 'Tambaram', '2308010003', '', '1', 'upload_files/candidate_tracker/68982899880_Chandru resume-2 (1).pdf', NULL, '1', '2023-08-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills knowledge need to opena lot', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-01 10:56:05', 1, '2023-08-01 11:01:25', 0, NULL, 1),
(13970, 'gaYathri', '5', '7806863575', '9710843305', 'kothandangayu1412@gmail.com', '2002-11-12', 20, '2', '2', 'kothandan', 'team worker', 50000.00, 1, 15000.00, 18000.00, 'kolathur', 'kolathur', '2308010004', '1', '2', 'upload_files/candidate_tracker/45272435265_NEWRESUME41312.pdf', NULL, '1', '2023-08-01', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Reject', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-01 10:57:16', 108, '2023-08-01 03:19:59', 0, NULL, 1),
(13971, 'Dilwez khan', '6', '9003389473', '9677040167', 'dilwezkhan123@gmail.com', '1996-12-13', 26, '2', '2', 'H. Rahima bee', 'House wife', 50000.00, 3, 15000.00, 19000.00, 'egappan naicken street. Chennai 21', 'Egappan Naicken Street. Chennai 21', '2308010005', '1', '2', 'upload_files/candidate_tracker/59619763049_IMG_20210120_114924_pdf.pdf', NULL, '1', '2023-08-01', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Need for job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-01 10:57:17', 104, '2023-08-01 01:24:58', 0, NULL, 1),
(13972, 'PRAVIN M', '13', '8610155485', '9094497181', 'Pravinwin18121998@gmail.com', '1998-12-18', 24, '6', '2', 'M.SHENBAGA PRIYA', 'TEACHER', 18000.00, 2, 220000.00, 250000.00, 'Chennai', 'Chennai', '2308010006', '', '2', 'upload_files/candidate_tracker/85214827582_PRAVIN RESUME.pdf', NULL, '1', '2023-08-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'very slow candidate have system admin exp will not sustain in our roles', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-01 11:40:36', 1, '2023-08-01 11:57:11', 0, NULL, 1),
(13973, 'Sherin Gilber Tony N', '13', '8940460850', '8870038967', 'tony02ns@gmail.com', '1999-10-02', 23, '6', '2', 'K S Nathan', 'Teacher', 35000.00, 2, 0.00, 3.50, 'Ulundurpet', 'Velachery', '2308010007', '', '1', 'upload_files/candidate_tracker/59289275964_Sherin Gilber Tony.N _ 2021 _ BE(CSE) _ JAVA FULL STACK DEV - Sherin Gilber Tony.pdf', NULL, '1', '2023-08-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much comfort in Bond', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-01 11:47:25', 101, '2023-08-10 11:37:18', 0, NULL, 1),
(13974, 'Balaji k', '13', '7373535379', '', 'balaji03082k@gmail.com', '2000-08-03', 23, '6', '2', 'P Krishna Kumar', 'Photographer', 10000.00, 3, 0.00, 3.00, 'Ulundurpet', 'Chennai', '2308010008', '', '1', 'upload_files/candidate_tracker/69020274633_BALAJI_2021_BE(ECE).Pdf', NULL, '1', '2023-08-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need time to confirm on TxxampC if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-01 11:48:21', 101, '2023-08-10 11:37:45', 0, NULL, 1),
(13975, 'Abdul Razik U', '31', '9360226476', '9444732786', 'abdulrashik678@gmail.com', '2002-06-29', 21, '6', '2', 'Uthuman Ali', 'Daily Wages', 10000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2308010009', '', '1', 'upload_files/candidate_tracker/32184138870_abdul.pdf', NULL, '1', '2023-08-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-01 11:55:16', 1, '2023-08-01 12:19:22', 0, NULL, 1),
(13976, 'Aswin', '31', '6379606140', '', 'aswinselvan3@gmail.com', '2002-02-18', 21, '6', '2', 'Selvan', 'Business', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'chennai', '2308010010', '', '1', 'upload_files/candidate_tracker/60568098655_Resume.pdf', NULL, '1', '2023-08-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-01 11:57:22', 1, '2023-08-01 12:05:07', 0, NULL, 1),
(13977, 'Baranika', '4', '8870753814', '', 'baranikakalyanakumar@gmail.com', '2001-03-28', 22, '3', '2', 'Kalyana kumar', 'Kooli', 72000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2308010011', '', '1', 'upload_files/candidate_tracker/35806338295_BaraniResume.pdf', NULL, '1', '2023-08-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-01 12:08:54', 1, '2023-08-01 12:12:02', 0, NULL, 1),
(13978, 'Jayashree', '23', '7305559152', '9566270821', 'Jayaraveena2002@gmail.com', '2002-01-13', 21, '6', '2', 'NITHIYANANTHAM', 'Late', 70000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2308010012', '', '1', 'upload_files/candidate_tracker/88667676959_Jayashree_N_-_ (2).pdf', NULL, '1', '2023-08-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Career Gap not much good with basics will not sustain if she comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-01 12:10:17', 1, '2023-08-01 12:20:09', 0, NULL, 1),
(13979, 'Ramya', '4', '9962993621', '', 'ramyarohith9962@gmail.com', '2002-09-21', 20, '2', '2', 'Murugan m', 'Kooli', 10000.00, 2, 0.00, 14000.00, 'Mylapore', 'Adyar', '2308010013', '1', '1', 'upload_files/candidate_tracker/81891711711_Resume(1) 23-Jul-2023 11-25-46(1).pdf', NULL, '1', '2023-08-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot will not handle our work pressure not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-01 04:49:58', 104, '2023-08-02 03:25:38', 0, NULL, 1),
(13980, '', '0', '9344438080', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308010014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-01 04:55:27', 0, NULL, 0, NULL, 1),
(13981, 'Suriya', '5', '9043938044', '', 'Suriyal081999@gmail.com', '1999-06-03', 24, '2', '2', 'Lurthusamy', 'Farmer', 40000.00, 2, 16000.00, 18000.00, 'Thiruvannamalai', 'Chennai', '2308010015', '1', '2', 'upload_files/candidate_tracker/19338650528_resume (1)-1.pdf', NULL, '1', '2023-08-02', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-01 05:13:39', 60, '2023-08-03 10:17:04', 0, NULL, 1),
(13982, 'Ajay v', '6', '9080227011', '9940654126', 'ajayvijayajay11@gmail.com', '1999-09-21', 23, '3', '2', 'Vasanth raj', 'Driver', 30000.00, 2, 0.00, 14000.00, 'Valasaravakkam', 'Valasaravakkam', '2308010016', '', '1', 'upload_files/candidate_tracker/99980563885_Aj Resume.pdf', NULL, '1', '2023-08-02', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Reject', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-01 08:37:20', 60, '2023-08-03 10:14:04', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13983, 'Arul kumar.j', '23', '7094617296', '7639233623', 'axoarul2628@gmail.com', '2001-08-26', 21, '1', '2', 'Parent', 'Cleark', 20000.00, 1, 0.00, 15000.00, 'Kallakurchi', 'Tambram', '2308020001', '', '1', 'upload_files/candidate_tracker/7444390275_Gunaresume.pdf', NULL, '1', '2023-08-02', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Notopen for TxxampC No basics Skills too need to learn a lot', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-02 10:50:06', 1, '2023-08-02 10:56:57', 0, NULL, 1),
(13984, 'VASU.SK', '13', '8778199679', '', 'vasusk26@gmail.com', '2001-04-26', 22, '6', '2', 'SENTHIL KUMAR', 'Textile business', 30000.00, 1, 0.00, 25000.00, 'Salem', 'Chennai', '2308020002', '', '1', 'upload_files/candidate_tracker/67971545100_Update resume.pdf', NULL, '1', '2023-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Searching for Java Opening only not open for other proifles', '2', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-02 11:15:37', 1, '2023-08-02 11:25:02', 0, NULL, 1),
(13985, 'Lingeswaran', '13', '9361559280', '9875466726', 'lingesh20032003@gmail.com', '2003-05-02', 20, '6', '2', 'Murugan', 'Former', 1.50, 3, 0.00, 300000.00, 'Chennai', 'Chennai', '2308020003', '', '1', 'upload_files/candidate_tracker/41459739451_Lingeswaran_Web developer_ Resume (2).pdf', NULL, '1', '2023-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Skills No understanding not suitable for our roles ', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-02 11:27:24', 1, '2023-08-02 12:07:41', 0, NULL, 1),
(13986, 'JUSTIN A', '4', '6369606371', '9486593683', 'christianojustin7@gmail.com', '1999-06-15', 24, '2', '2', 'ANDRWES A', 'Farmer', 60000.00, 2, 18000.00, 24000.00, 'Chennai', 'Chennai', '2308020004', '1', '2', 'upload_files/candidate_tracker/12990895125_JUSTIN A-4.pdf', NULL, '1', '2023-08-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude Issue not open for taking target and also not comfortable in field too not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-02 11:33:34', 104, '2023-08-02 03:21:33', 0, NULL, 1),
(13987, 'Ravi Raj R', '5', '6369853591', '9043683132', 'ravireigns2442@gmail.com', '2000-12-20', 22, '2', '2', 'Ramesh', 'Bus Tinker', 50000.00, 1, 23000.00, 27000.00, 'Maduravoyal', 'Maduravoyal', '2308020005', '1', '2', 'upload_files/candidate_tracker/7224396467_RAVI 2023 RESUME .pdf', NULL, '1', '2023-08-02', 0, '', '3', '59', '2023-08-16', 285696.00, '', '5', '1970-01-01', '1', 'Selected for Staff Role GK SIR Team with Cmmitment - In aug 1.5L Life plus 10 MF then Sept onwards 21K Net Salary', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-02 11:43:38', 60, '2023-08-16 10:37:56', 0, NULL, 1),
(13988, 'Lokesh k', '5', '9498484451', '9087002731', 'bmaklokesh@gmail.com', '2002-09-26', 20, '2', '2', 'Krishna Kumar', 'Driver', 10000.00, 0, 7500.00, 19000.00, 'Anna nagar East', 'Anna nagar East', '2308020006', '1', '2', 'upload_files/candidate_tracker/31634476657_Resume-4.pdf', NULL, '1', '2023-08-02', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Calling Exp Can be trained in our roles Kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-02 11:58:11', 108, '2023-08-02 12:20:35', 0, NULL, 1),
(13989, 'Kiran raj s j', '6', '9384684810', '8608929264', 'kiranraj221202@gmail.com', '2002-11-22', 20, '2', '2', 'Surendra babu h', 'Supervisor in ti cycles of india', 325000.00, 1, 0.00, 14000.00, 'Tiruvallur', 'Tiruvallur', '2308030001', '1', '1', 'upload_files/candidate_tracker/87664987881_KIRAN RESUME-1.doc', NULL, '1', '2023-08-03', 0, '', '3', '59', '2023-08-07', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team in consultant Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-03 08:55:31', 60, '2023-08-09 04:46:48', 0, NULL, 1),
(13990, 'Priyanka G', '16', '7667272811', '', 'priyankagovindaraj22@gmail.com', '2001-10-21', 21, '2', '2', 'Govindaraj', 'Driver', 40000.00, 1, 20000.00, 30000.00, 'Chennai', 'Chennai', '2308030002', '1', '2', 'upload_files/candidate_tracker/5531108509_Resume_18_07_2022_01_42_51_pm.pdf', NULL, '1', '2023-08-03', 60, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Final Round Reject Salary Exp is high being a fresher for our Operations Role will not sustain andhandle our pressure', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-03 09:06:51', 104, '2023-08-03 11:24:44', 0, NULL, 1),
(13991, 'Sheeba s', '5', '9940616547', '9940616547', 'sheeba2000s@gmail.com', '2000-04-08', 23, '2', '2', 'V sathyaseelan', 'Welder', 18000.00, 1, 16500.00, 18000.00, 'No 5/2 rettai kuzhi lane tondiarpet Chennai 81', 'No 5/2 rettai kuzhi lane tondiarpet Chennai 81', '2308030003', '1', '2', 'upload_files/candidate_tracker/90092018151_SHEEBA RESUME UPDATE.pdf', NULL, '1', '2023-08-03', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Checked for MIS Roles Written Communication not upto the expectations and sustainability no will not handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', '', '', '1970-01-01', 1, '2023-08-03 10:49:07', 60, '2025-03-03 05:58:45', 0, NULL, 1),
(13992, 'BABJI', '5', '9499017038', '', 'babjivelu98@gmail.com', '1998-06-09', 25, '2', '2', 'VELU', 'Employed', 300000.00, 0, 16000.00, 24000.00, '89 kudiyanavar St podattur pet Thiruvallur dt', 'C34 Krishna gnanamoorthy nagar Ambattur chennai', '2308030004', '1', '2', 'upload_files/candidate_tracker/53046150692_ RESUME babji BABJI .docx', NULL, '1', '2023-08-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Calling uch and not ready to go for field too will not sustain and not suitable no Communication too ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-03 10:49:17', 108, '2023-08-03 12:34:07', 0, NULL, 1),
(13993, 'Jepri pramoth', '13', '9289046982', '9787323682', 'jepripramoth77@gmail.com', '1997-07-08', 26, '4', '2', 'Selvaraj', 'Former', 10000.00, 1, 0.00, 12000.00, 'Villupuram', 'chennai', '2308030005', '', '1', 'upload_files/candidate_tracker/54837364319__Resume UI_UX .pdf', NULL, '1', '2023-08-03', 0, '', '3', '59', '2023-08-07', 120000.00, '', '', '2023-09-26', '1', 'Selected for IT intern Employment 5 months 6-8K then emplpyment 10-14k 10% increment every year', '2', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-03 10:57:12', 60, '2023-08-07 10:27:36', 0, NULL, 1),
(13994, 'Suraj S', '13', '6383047779', '9787523305', 'surajsujay1442002@gmail.com', '2002-04-14', 21, '1', '2', 'Santosh S', 'Farmer', 60000.00, 1, 0.00, 300000.00, 'Karapakkam', 'Karapakkam', '2308030006', '', '1', 'upload_files/candidate_tracker/97175188131_SURAJ S CV 1_compressed (2) (1)-2.pdf', NULL, '1', '2023-08-03', 0, 'JOBS', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not much comfortable with the TxxampC will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-03 11:16:49', 1, '2023-08-03 11:19:11', 0, NULL, 1),
(13995, 'Ramanan B', '13', '9361026958', '9363287637', 'ramananbtssr3032@gmail.com', '2002-03-30', 21, '3', '2', 'Balu s', 'Printing press', 120000.00, 2, 0.00, 300000.00, 'Kalavai', 'Chennai', '2308030007', '', '1', 'upload_files/candidate_tracker/45588547960_DOC-20230803-WA0006..pdf', NULL, '1', '2023-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Comfortable With The TxxampC Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-03 11:16:50', 1, '2023-08-03 11:28:03', 0, NULL, 1),
(13996, 'Krishnaraj B', '13', '8870482229', '', 'krishnarajvik11@gmail.com', '2001-10-08', 21, '3', '2', 'Bagavathi R', 'Self employed', 30000.00, 1, 0.00, 350000.00, 'Tirupur', 'Karapakkam,Chennai', '2308030008', '', '1', 'upload_files/candidate_tracker/48893787143_Krish resume updated.pdf', NULL, '1', '2023-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Comfortable With The TxxampC Will Not Sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-03 11:17:01', 1, '2023-08-03 11:23:38', 0, NULL, 1),
(13997, 'koushika', '5', '7305735041', '7871912963', 'kousikousi18072001@gmail.com', '2001-07-18', 22, '2', '2', 'karnan', 'electrician', 15000.00, 1, 13000.00, 15000.00, 'vyasarpadi', 'Vyasarpadi', '2308030009', '1', '2', 'upload_files/candidate_tracker/10087151314_PDF Reader 1691045843134_compressed.pdf', NULL, '1', '2023-08-03', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has exp in telecalling... sustainbility doubts....', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-03 11:43:01', 108, '2023-08-03 01:11:36', 0, NULL, 1),
(13998, 'Bharanidharan J', '13', '9659929873', '', 'bharani230721@gmail.com', '2000-12-18', 22, '3', '2', 'Jaganathan', 'Mechanic', 20000.00, 1, 0.00, 300000.00, 'Erode', 'Chennai', '2308030010', '', '1', 'upload_files/candidate_tracker/86097685784_Bharanidharan Resume.pdf', NULL, '1', '2023-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', ' Not Much Comfortable With The TxxampC Will Not Sustain Exp high Salary too', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-03 12:24:25', 1, '2023-08-03 12:27:37', 0, NULL, 1),
(13999, 'gayathri s', '4', '7200913023', '', 'gayathrijerry3023@gmail.com', '2002-09-23', 20, '2', '2', 'sekar', 'kooli', 10000.00, 3, 0.00, 15000.00, 'basin bridge', 'Basin Bridge', '2308030011', '1', '1', 'upload_files/candidate_tracker/84362339949_Gayathri Resume (1).docx', NULL, '1', '2023-08-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-03 12:34:52', 85, '2023-08-08 08:01:20', 0, NULL, 1),
(14000, 'vinitha', '5', '9840678742', '9710892664', 'viniv9441@gmail.com', '2001-12-01', 21, '2', '2', 'veeramani', 'welder', 15000.00, 2, 13000.00, 15000.00, 'vyasarpadi', 'Vyasarpadi', '2308030012', '1', '2', 'upload_files/candidate_tracker/85720334172_PDF Reader 1691046018834_compressed.pdf', NULL, '1', '2023-08-03', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has exp in telecalling ... but sustainbility doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-03 12:50:25', 108, '2023-08-03 01:11:09', 0, NULL, 1),
(14001, 'Karthick', '5', '8940289953', '', 'karthickm2504@gmail.com', '2001-04-25', 22, '2', '2', 'Malar', 'Fresher', 80000.00, 1, 0.00, 15000.00, 'Kk nagar', 'Padur', '2308030013', '1', '1', 'upload_files/candidate_tracker/58899636200_Resume.pdf', NULL, '1', '2023-08-03', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'need to open a lot ... ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-03 02:51:04', 108, '2023-08-03 05:11:39', 0, NULL, 1),
(14002, 'Arunkumar S', '13', '7867956005', '9080830928', 'aryakutty2001@gmail.com', '2000-04-11', 23, '6', '2', 'Selvam', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'Ariyalur', 'Korattur', '2308040001', '', '1', 'upload_files/candidate_tracker/94632569645_CV-Arunkumar Resume.pdf', NULL, '1', '2023-08-04', 0, '', '3', '59', '2023-08-14', 120000.00, '', '', '2023-09-20', '2', '5months intern then 3 yrs employment', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-04 10:22:24', 60, '2023-08-14 10:25:22', 0, NULL, 1),
(14003, 'A. NITHIN', '6', '9087844201', '8015759621', 'nithina1626@gmail.com', '2003-01-16', 20, '2', '2', 'D. ANNA DURAI', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Anna Nagar', 'Anna nagar', '2308040002', '1', '1', 'upload_files/candidate_tracker/60287717597_Resume_2023-07-25_3169032.pdf', NULL, '1', '2023-08-04', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher need to train a lot ...kindly check and update your feedback.', '5', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-04 10:39:58', 97, '2023-08-05 03:45:50', 0, NULL, 1),
(14004, 'Anushiya k', '6', '6369783014', '9176556010', 'luckyshaam1809@gmail.com', '1998-12-03', 24, '2', '1', 'Megala k', 'House wife', 11000.00, 1, 13000.00, 18000.00, 'No:42, kummalamman koil st, tondiarpet,ch - 81', 'Tondiarpet', '2308040003', '1', '2', 'upload_files/candidate_tracker/18009785625_ANUSUYA. K (1).docx', NULL, '1', '2023-08-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '2', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-04 10:52:19', 104, '2023-08-08 10:51:15', 0, NULL, 1),
(14005, 'Jayashree', '16', '8056160179', '', 'Jayashreeshree488@gmail.com', '1999-12-11', 23, '2', '2', 'Durga devi', 'House wife', 19.00, 1, 14000.00, 20000.00, 'Mylapore', 'Mylapore', '2308040004', '1', '2', 'upload_files/candidate_tracker/96777548171_JAYASHREE RESUME.pdf', NULL, '1', '2023-08-04', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'RENEWALS OK .KINDLY CHECK THE SUSTAINABLILITY  .OK WILL TRY', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-04 11:08:56', 97, '2023-08-05 03:38:22', 0, NULL, 1),
(14006, 'Sangeeta v', '6', '9363335116', '', 'Shaamvishal9622@gmail.com', '1999-05-29', 24, '2', '1', 'Venkatesan', 'Vao Assistant', 18000.00, 1, 13500.00, 20000.00, 'Thirutani', 'Tondaiyarpet', '2308040005', '1', '2', 'upload_files/candidate_tracker/9388553365_SANGEETHA.docx', NULL, '1', '2023-08-04', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sal expt high...not suit for our role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-04 11:13:46', 108, '2023-08-04 11:25:43', 0, NULL, 1),
(14007, 'Rajesh kannan', '31', '8754212069', '6383429869', 'Rajeshkannan8734@gmail.com', '2003-06-10', 20, '6', '2', 'Murugan', 'Farmer', 10000.00, 2, 0.00, 20000.00, 'Theni', 'Tambaram', '2308040006', '', '1', 'upload_files/candidate_tracker/13578279742_RAJESH_KANNAN.M_Resume_21-07-2023-18-40-41.pdf', NULL, '1', '2023-08-04', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Not Much Good In Prog.Laug....xxampNot Ok With Our TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-04 11:50:26', 1, '2023-08-04 12:57:53', 0, NULL, 1),
(14008, 'Saran P', '31', '6383429869', '', 'saranmse77@gmail.com', '1999-07-18', 24, '3', '2', 'Paulraj S', 'Bike Mechanic', 25000.00, 2, 0.00, 20000.00, 'Tiruppur', 'Chrompet, Chennai', '2308040007', '', '1', 'upload_files/candidate_tracker/61151409878_CV_2023072118503253.pdf', NULL, '1', '2023-08-04', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Not Much Good In Prog.Laug....xxampNot Ok With Our TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-04 12:02:28', 1, '2023-08-04 12:17:07', 0, NULL, 1),
(14009, 'Esswari K', '5', '9884928323', '', 'K.esswaride1806@gmail.com', '2000-06-06', 23, '2', '2', 'Karthikeyan R', 'Dunzo delivery', 15000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2308040008', '1', '2', 'upload_files/candidate_tracker/82435671634_current ORINGINAL RESUME (1) (1).pdf', NULL, '1', '2023-08-05', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-04 03:38:59', 97, '2023-08-08 07:29:48', 0, NULL, 1),
(14010, 'keerthanaasri', '20', '9360997685', '', 'kkerthanaasri@gmail.com', '2001-09-29', 21, '2', '2', 'durairaj', 'self employed', 15000.00, 1, 20000.00, 25000.00, 'chennai', 'chennai', '2308040009', '1', '2', 'upload_files/candidate_tracker/23413126866_Keerthana Sri D Resume.pdf', NULL, '1', '2023-08-05', 30, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'for a time being... looking for job', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-04 04:50:53', 85, '2023-08-05 10:34:27', 0, NULL, 1),
(14011, '', '0', '9789461377', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308040010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-04 04:58:11', 0, NULL, 0, NULL, 1),
(14012, 'Kishore kumar D', '4', '9962568108', '9840835565', 'krrishkisho@gmail.com', '2000-10-21', 22, '2', '2', 'Kamatchi', 'House wife', 30000.00, 2, 23000.00, 25000.00, 'Chennai', 'Chennai', '2308040011', '1', '2', 'upload_files/candidate_tracker/32576321473_Kisho.doc', NULL, '1', '2023-08-05', 1, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '50 -50 profile . little attitude.. sustainbility doubts..', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-04 06:57:52', 97, '2023-08-08 10:51:17', 0, NULL, 1),
(14013, 'Jayasri Ruthradayalan', '5', '6382537117', '7094370174', 'jayasridaya1997@gmail.com', '1997-04-07', 26, '2', '2', 'Ruthradayalan', 'Farmer', 5000.00, 1, 15.00, 18.00, 'Thanjavur', 'Saidapet', '2308050001', '1', '2', 'upload_files/candidate_tracker/50373681084_JayaSri Resume-1.pdf', NULL, '1', '2023-08-05', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is From Thanjavur...For a time being looking for a job  in chennai.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-05 10:32:49', 101, '2023-08-08 10:59:45', 0, NULL, 1),
(14014, 'Gayathri B', '16', '8667718721', '9710195664', 'gayathribabu433@gmail.com', '2003-03-04', 20, '2', '2', 'J.Babu', 'Coolie', 12000.00, 3, 0.00, 15000.00, 'Chennai -Kolathur', 'Chennai - kolathur', '2308050002', '1', '1', 'upload_files/candidate_tracker/7828533063_Resume - Gayathri B .pdf', NULL, '1', '2023-08-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Has some knowledge in our proudcts... let us try for our role Final round interviewed by gokul and selected for Renewals.', '3', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-05 10:53:53', 85, '2023-08-08 07:54:26', 0, NULL, 1),
(14015, 'Amala Bharathi B', '16', '9360385806', '9841559316', 'Amalabernard.0109@gmail.com', '2003-09-01', 19, '2', '2', 'Bernard xavier', 'Coolie', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2308050003', '1', '1', 'upload_files/candidate_tracker/9030944787_Amala resume.pdf', NULL, '1', '2023-08-05', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'purely fresher .. need to train a lot .. Voice is too low .. Job need .. Final round interviewed  xxamp Rejected by gokul ', '3', '2', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-05 10:54:28', 85, '2023-08-08 07:55:24', 0, NULL, 1),
(14016, 'Asban Sijo', '13', '7639047909', '', 'asban.sijo@gmail.com', '2002-09-22', 20, '6', '2', 'Selvin Thoma', 'Pastor', 40000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2308050004', '', '1', 'upload_files/candidate_tracker/83543898204_cv_sijo.pdf', NULL, '1', '2023-08-05', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'not much good in prog .lau.. he wants to discuss with his parent ..if he come back let us try', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-05 10:59:01', 1, '2023-08-05 11:02:08', 0, NULL, 1),
(14017, 'Magesh Varan', '2', '9360155586', '', 'mageshvaran16@gmail.com', '2000-12-23', 22, '6', '2', 'Thala murugan', 'Grocery store', 20000.00, 2, 0.00, 400000.00, 'vellore', 'vellore', '2308050005', '', '1', 'upload_files/candidate_tracker/58280867682_DOC-20230805-WA0010..pdf', NULL, '1', '2023-08-05', 0, '', '7', '59', NULL, 0.00, '', '0', NULL, '1', 'Has knowledge in prog lau. SNR interviewd by tamilmani and final round interview by gokul ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-05 11:05:28', 1, '2023-08-05 11:15:46', 0, NULL, 1),
(14018, 'Haroon Rashied s', '5', '7904962131', '9952988765', 'haroonrashied2328@gmail.com', '1998-07-13', 25, '2', '2', 'Shajahan', 'Business', 30000.00, 2, 17000.00, 23000.00, 'Pudhur, Ambattur', 'Pudhur Ambattur', '2308050006', '1', '2', 'upload_files/candidate_tracker/89393269539_Resume_28_02_2023_09_46_15_pm.PDF', NULL, '1', '2023-08-05', 0, '', '3', '59', '2023-08-09', 285696.00, '', '5', '1970-01-01', '1', 'Selected for Sarath Team with Commitment given by Gaurav sir', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-05 11:25:08', 60, '2023-08-09 10:31:18', 0, NULL, 1),
(14019, 'Sajith.S', '13', '7871109880', '7871790025', 'sethumadi30@gmail.com', '1997-08-14', 25, '6', '2', 'Sethu Madhavan', 'Electrican', 600000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2308050007', '', '1', 'upload_files/candidate_tracker/67900462566_Sajith_0705.pdf', NULL, '1', '2023-08-05', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not much good in prog.laug....xxampnot ok with our txxampc', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-05 11:32:07', 1, '2023-08-05 11:34:25', 0, NULL, 1),
(14020, 'Hasina begam', '6', '8838194806', '9442544735', 'begamhasina335@gmail.com', '2001-02-26', 22, '1', '2', 'Mohamed hamza', 'Helper', 16000.00, 3, 0.00, 15000.00, 'Thoothukudi', 'Thoothukudi', '2308050008', '', '2', 'upload_files/candidate_tracker/22387550166_Hazina begam(resume) -1.pdf', NULL, '1', '2023-08-05', 0, '', '3', '59', '2023-08-11', 168000.00, '', '5', '1970-01-01', '2', 'Selected for charles Team Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-05 11:42:32', 60, '2023-08-11 10:03:54', 0, NULL, 1),
(14021, 'Sushil', '20', '9176235292', '7550282856', 'Sushil909286@gmail.com', '1991-12-31', 31, '1', '1', 'GOWRI wife', 'Manager', 23000.00, 0, 23000.00, 25000.00, 'Sidco nagar villivakkam', 'Spencer plaza', '2308050009', '', '2', 'upload_files/candidate_tracker/98681448817_Resume Sushil.docx', NULL, '1', '2023-08-05', 0, 'P1418', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'not suit for our roles... ', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-05 12:04:08', 1, '2023-08-05 12:23:25', 0, NULL, 1),
(14022, 'MANIKANDAN S', '4', '9361669491', '', 'manikandanshanmugam2003@gmail.com', '2003-08-02', 20, '3', '2', 'SHANMUGAM S', 'Cooli', 15000.00, 1, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2308050010', '', '1', 'upload_files/candidate_tracker/40526915340_Manikandan S.pdf', NULL, '1', '2023-08-05', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not open for sales', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-05 12:09:11', 1, '2023-08-05 12:19:47', 0, NULL, 1),
(14023, 'Jegadeesh.s', '4', '9940092384', '', 'jegan5846@gmail.com', '2002-11-23', 20, '3', '2', 'Sivakumar.k', 'Daily wages', 7000.00, 2, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2308050011', '', '1', 'upload_files/candidate_tracker/25267863443_CV_2023072308252817.pdf', NULL, '1', '2023-08-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-05 12:11:26', 1, '2023-08-05 12:20:56', 0, NULL, 1),
(14024, '', '0', '8610507763', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308050012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-05 01:28:34', 0, NULL, 0, NULL, 1),
(14025, 'BHARKAVIB', '25', '9150754337', '', 'kavibharkavi11@gmail.com', '1999-03-11', 24, '2', '2', 'Bakthavachalam', 'Own grocery shop', 13000.00, 2, 18000.00, 26000.00, 'Chennai', 'Chennai', '2308050013', '1', '2', 'upload_files/candidate_tracker/23400355994_Gray Clean Professional Resume (1).pdf', NULL, '1', '2023-08-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good Too lon Distance not  open for target based job', '8', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-05 03:46:26', 104, '2023-08-07 04:24:15', 0, NULL, 1),
(14026, 'Vijay', '5', '9176994867', '', 'vijayvishwanathan0010@gmail.com', '2000-03-30', 23, '2', '2', 'Vijayalakshmi', 'SPRS', 25000.00, 1, 1.00, 12000.00, 'Kolathur', 'Kolathur', '2308050014', '1', '2', 'upload_files/candidate_tracker/74494737083_Vijay (Resume).pdf', NULL, '3', '2023-08-07', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile for sales left without attending the 2nd level interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-05 03:49:08', 101, '2023-08-07 10:00:39', 0, NULL, 1),
(14027, 'surendar', '5', '7397361469', '', 'surendarmurugan456@gmail.com', '2002-03-17', 21, '2', '2', 'murugan s', 'crane operator', 20000.00, 1, 19600.00, 23000.00, 'kolathur chennai', 'kolathur chennai', '2308050015', '1', '2', 'upload_files/candidate_tracker/16582062356_81a6a2e5-06cc-4ed7-a9dc-40b98022a18b (1).pdf', NULL, '1', '2023-08-07', 0, '', '4', '31', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in sales but not a relevant one can give a try kindly check and let me know your inputs', '5', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2023-08-05 05:14:19', 1, '2023-08-07 01:10:27', 0, NULL, 1),
(14028, '', '0', '9087002731', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308050016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-05 08:56:45', 0, NULL, 0, NULL, 1),
(14029, 'Naina Mohamed', '13', '9150343695', '7598839207', 'nainamohmed111@gmail.com', '2002-12-14', 20, '6', '2', 'Varsai Mohamed', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Veeracholan', 'Chennai', '2308070001', '', '1', 'upload_files/candidate_tracker/44630476651_Resume (1).pdf', NULL, '1', '2023-08-07', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to come back after learning if he comes back let us try', '2', '2', '0', '1', '8', '0', '2', '2023-08-16', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-07 09:53:25', 1, '2023-08-07 09:56:28', 0, NULL, 1),
(14030, 'Surya R', '5', '9787669908', '6369567009', 'samsurya143r@gmail.com', '1996-12-20', 26, '2', '2', 'Ramadas', 'Chennai', 30000.00, 2, 16000.00, 23000.00, 'Thiruvallur', 'Park Town Chennai Central', '2308070002', '1', '2', 'upload_files/candidate_tracker/16429664974_Surya-1.pdf', NULL, '1', '2023-08-07', 30, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile have exp in calling but not in relevant one can give a try kindly check and let me kow your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-07 09:54:49', 101, '2023-08-07 10:28:26', 0, NULL, 1),
(14031, '', '0', '9150342695', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308070003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-07 09:58:07', 0, NULL, 0, NULL, 1),
(14032, 'Elavarasan R', '31', '9345448925', '', 'elavarasan241020@gmail.com', '2002-10-24', 20, '3', '2', 'Ravichandran', 'Farmer', 25000.00, 2, 0.00, 15000.00, 'Trichy, Tamilnadu', 'Ekatuthangal chennai', '2308070004', '', '1', 'upload_files/candidate_tracker/11190657895_Elavarasan Resume.pdf', NULL, '1', '2023-08-07', 0, '', '3', '59', '2023-08-14', 120000.00, '', '5', '1970-01-01', '2', 'Interviewed by Gokul final round and selected for React with Intern Emplyment conditions direct reporting to Udhay', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-07 10:25:46', 60, '2023-08-10 09:52:52', 0, NULL, 1),
(14033, 'Sudhandhiradevi', '13', '9600772997', '8940881804', 'devinehru1999@gmail.com', '1999-07-15', 24, '6', '2', 'Nehru', 'Farmer', 20000.00, 3, 0.00, 20000.00, 'Mayiladuthurai', 'chennai', '2308070005', '', '1', 'upload_files/candidate_tracker/48016144318_Ndevi-Resume.pdf', NULL, '1', '2023-08-07', 0, '', '3', '59', '2023-08-14', 120000.00, '', '5', '1970-01-01', '2', '5months intern then 3 yrs employment - React Profile', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-07 10:46:38', 60, '2023-08-14 10:25:51', 0, NULL, 1),
(14034, 'Desi Ganesh V', '13', '7200669779', '', 'desiganeshvenkatesan@gmail.com', '2000-03-21', 23, '6', '2', 'Venkatesan T', 'Teacher', 120000.00, 1, 26000.00, 30000.00, 'Nagercoil, TamilNadu', 'Nanganallur, Chennai', '2308070006', '', '2', 'upload_files/candidate_tracker/32075775438_Desi Ganesh_V Resume.pdf', NULL, '1', '2023-08-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking only for Tier level companies with high pay', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-07 10:46:44', 1, '2023-08-07 10:51:06', 0, NULL, 1),
(14035, 'S.Uma Mageshwari', '5', '7358578944', '9566094066', 'umageshwari382@gmail.com', '2001-09-09', 21, '2', '2', 'Sugumar parents', 'Cooli', 7500.00, 0, 0.00, 16.00, 'Perambur', 'Perambur', '2308070007', '1', '1', 'upload_files/candidate_tracker/74731350891_Uma resume.pdf', NULL, '3', '2023-08-07', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-07 10:48:31', 101, '2023-08-07 11:40:04', 0, NULL, 1),
(14036, 'Yuva shree Baskar', '5', '9080253361', '6379441207', 'yuvashreebaskar1005@gmail.com', '2001-05-10', 22, '2', '2', 'S.Baskar', 'Driver', 30000.00, 1, 14000.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2308070008', '1', '2', 'upload_files/candidate_tracker/8838458485_YUVASHREE B RESUME.pdf', NULL, '1', '2023-08-07', 0, '', '3', '59', '2023-08-09', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Operations Team Consultant Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-07 10:55:15', 60, '2023-08-08 04:57:37', 0, NULL, 1),
(14037, 'Kishore Roshan M', '5', '9003136447', '', 'kishoreronaldokr7@gmail.com', '2003-08-12', 19, '2', '2', 'Mohan c', 'CBWE', 30000.00, 1, 10000.00, 15000.00, 'Mylapore chennai', 'Mylapore chennai', '2308070009', '1', '2', 'upload_files/candidate_tracker/17721980707_kishore roshan Resume update.pdf', NULL, '3', '2023-08-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-07 11:22:17', 101, '2023-08-07 04:15:25', 0, NULL, 1),
(14038, 'Kalai selvi', '4', '7395921688', '8939447053', 'kselvi088@gmail.com', '1998-10-10', 24, '1', '1', 'Ganesh', 'Driver', 20000.00, 1, 16000.00, 23000.00, 'Choolaimedu', 'Choolaimedu', '2308070010', '', '2', 'upload_files/candidate_tracker/41839385648_kalai selvi A.pdf', NULL, '1', '2023-08-07', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'looking for non voice', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-07 11:23:08', 1, '2023-08-07 11:30:51', 0, NULL, 1),
(14039, 'vignesh', '13', '8248208405', '', 'vigneshvenkatesan0612@gmail.com', '2001-06-12', 22, '6', '2', 'venkatesan v', 'project coordinator', 350000.00, 1, 0.00, 300000.00, 'chennai', 'porur', '2308070011', '', '1', 'upload_files/candidate_tracker/15817097448_Vikky.pdf', NULL, '1', '2023-08-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate need time to confirm on TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-07 11:33:15', 1, '2023-08-07 11:37:30', 0, NULL, 1),
(14040, 'K.DURAIRAJ', '5', '9150003384', '', 'Duraimeena695@gmail.com', '1999-01-22', 24, '1', '1', 'Meena', 'Telecaller', 20000.00, 2, 24000.00, 26000.00, 'St Thomas mount', 'St Thomas mount', '2308070012', '', '2', 'upload_files/candidate_tracker/16256372260_YUVASHREE B RESUME.pdf', NULL, '1', '2023-08-07', 0, '55660', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-07 11:54:36', 60, '2023-08-08 07:18:55', 0, NULL, 1),
(14041, 'Santhiya', '4', '8056407221', '', 'Santhiya8327@gmail.com', '2002-05-21', 21, '1', '2', 'Ramesh kumar', 'farmer', 14000.00, 2, 0.00, 10000.00, 'Ukkadai', 'Ukkadai', '2308070013', '', '1', 'upload_files/candidate_tracker/403689496_santhiya.pdf', NULL, '1', '2023-08-07', 0, 'P1023', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-07 01:01:25', 1, '2023-08-07 01:17:00', 0, NULL, 1),
(14042, 'S.vidhya', '4', '9894229872', '', 'Vithya989422@gmail.com', '2002-06-02', 21, '1', '2', 'Sangarmoorthi', 'Farmer', 60000.00, 1, 0.00, 15000.00, 'Ammapettai ukkadai', 'Ukkadai', '2308070014', '', '1', 'upload_files/candidate_tracker/24186683087_VIJALIKASHMI.doc', NULL, '3', '2023-08-07', 0, 'P1023', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-07 01:01:34', 104, '2023-08-09 10:30:27', 0, NULL, 1),
(14043, 'Philomina', '4', '9043115532', '', 'philominaselvakumar99@gmail.com', '2002-04-30', 21, '1', '2', 'Selvakumar', 'farmer', 8000.00, 2, 0.00, 10000.00, 'Saliyamangalam', 'Saliyamanagalam', '2308070015', '', '1', 'upload_files/candidate_tracker/70058203527_PHILOMINA CV NEW.pdf', NULL, '1', '2023-08-07', 0, 'P1023', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-07 01:02:15', 1, '2023-08-07 01:23:46', 0, NULL, 1),
(14044, 'M.Richard kumar', '2', '8838815230', '8903986964', 'richardlevi1720@gmail.com', '2000-06-18', 23, '2', '2', 'P.Mariappan', 'Mechanic', 100000.00, 1, 0.00, 12000.00, '187 indira nagar 11 street', 'Adyar', '2308070016', '1', '1', 'upload_files/candidate_tracker/71848193172_Richard resume.pdf', NULL, '1', '2023-08-07', 0, '', '3', '59', '2023-09-14', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Intern with Employment Direct reporting to  Uday Node', '2', '1', '4', '1', '8', '', '2', '2023-08-16', '3', '2', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-07 02:37:00', 60, '2023-09-14 09:49:27', 0, NULL, 1),
(14045, 'Rajesh R', '4', '9342036912', '7397341642', 'rajesh7151164@gmail.com', '1999-11-19', 23, '2', '2', 'Ravindran P', 'Sales man', 12000.00, 0, 12500.00, 20000.00, 'Chennai', 'Chennai', '2308070017', '1', '2', 'upload_files/candidate_tracker/72039433519_Rajesh1 resume.pdf', NULL, '1', '2023-08-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking only for the salary not much comfort in Sales calling Holding Offer with 2 companies and looking for something more will not sustain and not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-07 04:16:35', 104, '2023-08-08 06:39:01', 0, NULL, 1),
(14046, 'Pavithra T', '6', '8610601144', '9245125002', 'ptspavithra1@gmail.com', '1999-12-01', 23, '2', '2', 'Thirugnanasambandam P', 'Sales', 25000.00, 1, 12000.00, 20000.00, 'Kumbakonam', 'T nagar', '2308070018', '1', '2', 'upload_files/candidate_tracker/88694682195_PAVITHRA T = RESUME.pdf', NULL, '1', '2023-08-07', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'DUE TO SHExquotS  NOT PROPERLY ANSWERED ALSO VOICE IS VERY LOW', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-07 05:06:44', 60, '2023-08-08 07:07:53', 0, NULL, 1),
(14047, 'Liyakath khan', '20', '8667867743', '', 'liyakathpopz8117@gmail.com', '2000-01-17', 23, '2', '2', 'Banu begum', 'Senior Customer Executive Officer', 30000.00, 1, 17000.00, 23000.00, 'Chennai, perambur', 'Chennai, perambur', '2308070019', '1', '2', 'upload_files/candidate_tracker/31253664105_CV_2023-07-11-084624.pdf', NULL, '1', '2023-08-08', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Mutual fund Interviewed by Gokul and max we can offer till 2.3 LPA', '7', '1', '', '1', '8', '', '2', '2023-08-14', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-07 10:31:14', 104, '2023-08-09 10:19:41', 0, NULL, 1),
(14048, 'A. Keerthiga', '33', '7448452921', '6374846422', 'Keerthizx@gmail.con', '2003-02-01', 20, '2', '2', 'S. Anbazhagan', 'Farmer', 20000.00, 3, 0.00, 15000.00, 'Tiruvanamalai, vettavalam', 'Chennai, korattur', '2308080001', '1', '1', 'upload_files/candidate_tracker/14701472054_KEERTHI RESUME (3).pdf', NULL, '1', '2023-08-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preferred to work in non voice but no communication not suitable for our roles', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-08 09:20:32', 104, '2023-08-08 06:39:49', 0, NULL, 1),
(14049, 'Prasanna PS', '20', '9840801078', '8838052519', 'prasannasamyogin@gmail.com', '1991-09-02', 31, '1', '1', 'Tharani P', 'Home maker', 24900.00, 1, 346152.00, 420000.00, 'Tambaram', 'Chengalpattu.', '2308080002', '', '2', 'upload_files/candidate_tracker/54917718525_PRASANNA 20-23.pdf', NULL, '1', '2023-08-08', 0, 'P1090', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance Looking only for Senior level Profile no Relevant Exp will not sustain in our sales not suitable', '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-08 10:06:21', 1, '2023-08-08 10:13:27', 0, NULL, 1),
(14050, 'A. Derrick', '4', '7550281456', '9840469642', 'Reach.derrick.2016@gmail', '1999-08-04', 24, '3', '2', 'S . Arnold', 'Software engineer', 100000.00, 1, 0.00, 15000.00, 'Gandhinagar adyar Chennai 600020', 'Gandhinagar Adyar Chennai 600020', '2308080003', '', '1', 'upload_files/candidate_tracker/2186511095_DOC-20230808-WA0003..pdf', NULL, '1', '2023-08-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'for time being looking for Job Not much importance towards the jobs planning to go with own venture will not sustain and not suitable', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-08 10:54:24', 1, '2023-08-08 11:49:50', 0, NULL, 1),
(14051, 'Naveen.S', '13', '9585290702', '6381981496', 'naveen300601@gmail.com', '2001-06-30', 22, '6', '2', 'Sundararajan', 'Office Assistant', 30000.00, 1, 0.00, 20000.00, '2/324,Gandhi street, kabilarmalai, Namakkal.', 'Chennai', '2308080004', '', '1', 'upload_files/candidate_tracker/92703455691_Naveen_Cv 1.pdf', NULL, '1', '2023-08-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for TxxampC No proper focus in the Career will not sustain and not suitbale', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-08 11:15:30', 1, '2023-08-08 11:24:05', 0, NULL, 1),
(14052, 'Shifa Nikath H', '16', '7539940191', '8825897065', 'shifasheriff21@gmail.com', '2002-09-21', 20, '3', '2', 'Parent', 'Business', 20000.00, 1, 0.00, 15000.00, 'Vellore', 'Vellore', '2308080005', '', '1', 'upload_files/candidate_tracker/1169389959_Shifa Nikath Resume-1.pdf', NULL, '1', '2023-08-08', 0, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile have interest towards IT but not on coding open for other positions too kindly check and let me know your inputs', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-08 11:26:38', 104, '2023-08-08 06:40:52', 0, NULL, 1),
(14053, 'Mathan R', '13', '9361012047', '', 'mathan03032002@gmail.com', '2002-03-03', 21, '4', '2', 'Ramar R', 'Coolie work', 15000.00, 2, 0.00, 300000.00, 'Tenkasi', 'Tenkasi', '2308090001', '', '1', 'upload_files/candidate_tracker/48319394298_pdf_20230723_233716_0000.pdf', NULL, '1', '2023-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Java', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 09:57:35', 1, '2023-08-09 10:00:43', 0, NULL, 1),
(14054, 'Sanjay.A', '13', '8608908842', '', 'sanjaycr1606@gmail.com', '2001-06-16', 22, '6', '2', 'Annadurai', 'Painting contractor', 18000.00, 1, 0.00, 15000.00, 'Chennai', 'Vyasarpadi , Chennai', '2308090002', '', '1', 'upload_files/candidate_tracker/48062870609_A.Sanjay_2023_porur.pdf', NULL, '1', '2023-08-09', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need Time to Learn if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', '2023-08-15', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 10:21:31', 1, '2023-08-09 10:32:48', 0, NULL, 1),
(14055, 'Mohamed Marwan', '13', '6382535107', '9442041851', 'almarwan387@gmail.com', '2000-11-28', 22, '6', '2', 'Mohamed ibrahim', 'business', 200000.00, 2, 0.00, 20000.00, 'ramnathapuram', 'chennai', '2308090003', '', '1', 'upload_files/candidate_tracker/65651738743_MARWAN RESUME .pdf', NULL, '1', '2023-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basics not much ok with TxxampC if he comes back let us try family settled in Saudi\n', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 10:36:35', 1, '2023-08-09 10:40:55', 0, NULL, 1),
(14056, 'Naveeen T', '4', '9941072189', '7397272912', 'naveenmaddy1404@gmail.com', '2002-04-14', 21, '3', '2', 'Pascalmary T', 'Accounting in printing press', 25000.00, 1, 12000.00, 18000.00, '29/2 Ammayappan lane royapettah chennai 600014', '29/2 Ammayappan Lane Royapettah Chennai 600014', '2308090004', '', '2', 'upload_files/candidate_tracker/10442708963_NAVEEN RESUME-3.pdf', NULL, '1', '2023-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability will not handle the work pressure seems to give false information not suitable', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 10:53:53', 1, '2023-08-09 10:58:41', 0, NULL, 1),
(14057, 'Hema .R', '6', '9361480688', '', 'hemaramesh200211@gmail.com', '2002-07-11', 21, '1', '2', 'Kalaimani', 'Farmer', 48000.00, 2, 15000.00, 18000.00, 'Saidapet', 'Saidapet', '2308090005', '', '2', 'upload_files/candidate_tracker/59303585077_CV_2022080119563231.pdf', NULL, '1', '2023-08-09', 0, 'P142', '3', '59', '2023-08-10', 192000.00, '', NULL, '2024-09-25', '2', 'Selected for Charles Team Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-09 11:01:09', 60, '2023-08-10 11:20:06', 0, NULL, 1),
(14058, 'S Selvi', '13', '7339696046', '', 'selviidharu@gmail.com', '1996-02-21', 27, '3', '2', 'Sampath', 'Retaired electrician', 8500.00, 1, 15000.00, 20000.00, 'No-52/1, E B Colony, Gingee', 'No-52/1,E B Colony, Gingee', '2308090006', '', '2', 'upload_files/candidate_tracker/86625349618_Resume - Selvi(1).pdf', NULL, '1', '2023-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain marriage fixed will not run in a long', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 11:08:42', 1, '2023-08-09 11:14:36', 0, NULL, 1),
(14059, 'Bharathan B', '5', '9677192064', '', 'bharathanakash@gmail.com', '2002-03-04', 21, '1', '2', 'Balamurugan p', 'Driver', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2308090007', '', '1', 'upload_files/candidate_tracker/9139442635_bharathan-resume.pdf', NULL, '1', '2023-08-09', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Accounts but no basics skills in that  Not Interested On The Jobs Will Not Sustain', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 11:16:40', 1, '2023-08-09 11:43:55', 0, NULL, 1),
(14060, 'Sharukh', '32', '7338955702', '', '02sharukhan2002@gmail.com', '2002-10-02', 20, '3', '2', 'Muzafar Ali khan', 'Manager', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2308090008', '', '1', 'upload_files/candidate_tracker/99254119158_SHARUKH RESUME _.pdf', NULL, '1', '2023-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for non voice not interested on the jobs will not sustain', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 11:17:41', 1, '2023-08-09 11:32:40', 0, NULL, 1),
(14061, 'Christina F', '13', '9790988223', '', 'christyxavier2002@gmail.com', '2002-02-15', 21, '3', '1', 'Francis xavier', 'Driver', 20000.00, 2, 0.00, 15000.00, 'chennai', 'Chennai', '2308090009', '', '1', 'upload_files/candidate_tracker/30088190053_Christina resume-2.pdf', NULL, '1', '2023-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 11:24:11', 1, '2023-08-09 11:33:57', 0, NULL, 1),
(14062, 'GUHA IYISHVARYA.V.P', '13', '9940174500', '9940553600', 'guhaiyishvarya@gmail.com', '2001-07-19', 22, '6', '2', 'Punnia kotti.v', 'railway', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2308090010', '', '1', 'upload_files/candidate_tracker/77517825876_guha-iyishvarya-updated.pdf', NULL, '1', '2023-08-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 11:24:31', 1, '2023-08-09 11:34:34', 0, NULL, 1),
(14063, 'Yuvaraj S', '13', '7358664225', '9710989891', 'yuvi.srinivasan31@gmail.com', '2000-10-31', 22, '6', '2', 'Srinivasan P', 'Security', 30000.00, 2, 0.00, 20000.00, 'Tambaram', 'Tambaram', '2308090011', '', '1', 'upload_files/candidate_tracker/37996478385_Yuvaraj_S_Resume_09-08-2023-10-28-22.pdf', NULL, '1', '2023-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 11:26:31', 1, '2023-08-09 11:37:53', 0, NULL, 1),
(14064, 'Manoj kumar', '31', '9080460726', '9094965455', 'manojkumar.jlingam@gmail.com', '1999-07-16', 24, '3', '2', 'Jothi lingam.M', 'Daily wage', 15000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2308090012', '', '1', 'upload_files/candidate_tracker/73931764925_Manoj Kumar (2).pdf', NULL, '1', '2023-08-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need time to confirm his availability may relocate to avadi', '2', '1', '', '1', '8', '', '2', '2023-08-23', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-09 11:40:54', 104, '2023-08-09 12:23:42', 0, NULL, 1),
(14065, 'HEMANTH H', '2', '9003258624', '', 'hemanth26800@gmail.com', '2000-08-26', 22, '6', '2', 'HARIDOSS R', 'Carpenter', 15000.00, 0, 320000.00, 600000.00, 'CHENNAI', 'CHENNAI', '2308090013', '', '2', 'upload_files/candidate_tracker/46526767915_Hemanth MERN RESUME.pdf', NULL, '1', '2023-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for high CTC already holding several offers for 4LPA 3LPA', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 11:59:35', 1, '2023-08-09 12:01:50', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14066, 'Chandru', '13', '9361485981', '', 'Chandru.subramani19@gmail.con', '2002-09-19', 20, '3', '2', 'Subramani', 'Labour', 15000.00, 1, 0.00, 25000.00, 'Dindigul', 'Chennai', '2308090014', '', '1', 'upload_files/candidate_tracker/92705837259_RESUME-1.pdf', NULL, '1', '2023-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Disance will not relocate sustainability dounts', '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 01:26:19', 1, '2023-08-09 02:50:17', 0, NULL, 1),
(14067, 'Priya S', '13', '7339486642', '9629338520', 'priyasureshkumar01@gmail.com', '2000-01-08', 23, '6', '2', 'Sureshkumar M', 'Driver(TNSTC)', 40.00, 1, 0.00, 2.00, 'Kovilpatti', 'Perumbakkam', '2308090015', '', '1', 'upload_files/candidate_tracker/93611689494_priya Resume.pdf', NULL, '1', '2023-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'to long Distance Sister in node will not relocate not comfrt in TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 01:42:56', 1, '2023-08-09 01:47:26', 0, NULL, 1),
(14068, '', '0', '9940584042', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308090016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-09 03:17:16', 0, NULL, 0, NULL, 1),
(14069, 'Keerthana S', '4', '7305461328', '7358491187', 'skrthi2703@gmail.com', '2003-03-27', 20, '1', '2', 'Srinivasan', 'Export company', 120000.00, 2, 0.00, 15000.00, 'Chennai tvt', 'Chennai thiruvottiyur', '2308090017', '', '1', 'upload_files/candidate_tracker/82686085734_CV_2023063017120612.pdf', NULL, '1', '2023-08-10', 0, 'NA', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Much Preferred non voice but internal reference kindly check', '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-09 11:05:51', 1, '2023-08-09 11:09:59', 0, NULL, 1),
(14070, 'M.Lilly', '4', '9962608433', '9566082021', 'mlilly1008@gmail.com', '2002-06-08', 21, '3', '2', 'M.Sujatha', 'House wife', 20000.00, 1, 0.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2308100001', '', '1', 'upload_files/candidate_tracker/73962307998_Lilly Resume.pdf', NULL, '1', '2023-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Accounts and for Voice not mcuh comfort', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-10 11:11:40', 1, '2023-08-10 11:17:31', 0, NULL, 1),
(14071, 'GANESHKUMAR S', '4', '9385640933', '7200951720', 'ganeshid2525@gmail.com', '1993-06-25', 30, '3', '2', 'Sanjeeviraj', 'Selfemployed', 6000.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Triplicane', '2308100002', '', '1', 'upload_files/candidate_tracker/88946389683_GANESH BIO DATA PDF.pdf', NULL, '1', '2023-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-10 11:27:08', 1, '2023-08-10 11:37:22', 0, NULL, 1),
(14072, 'Giriprasath', '13', '9578649724', '', 'giriprasathrk@gmail.com', '2000-12-01', 22, '6', '2', 'Radhakrishnan', 'Preist', 10000.00, 1, 260000.00, 650000.00, 'Thingalur, Erode', 'Erode', '2308100003', '', '2', 'upload_files/candidate_tracker/50609987617_Giriprasath R Resume.pdf', NULL, '1', '2023-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Salary Exp is very high will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-10 11:32:20', 1, '2023-08-10 11:38:15', 0, NULL, 1),
(14073, 'Sherin Gilber Tony N', '13', '8870038967', '8940460850', 'tony02ns@gmail.com', '1999-10-02', 24, '6', '2', 'K S Nathan', 'Farmer', 70000.00, 3, 0.00, 15000.00, 'Ulundurpet', 'Velachery', '2308100004', '', '1', 'upload_files/candidate_tracker/86859463931_RESUME _CV_2023-09-12-051036.pdf', NULL, '1', '2023-12-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-10 11:34:59', 1, '2023-12-14 05:59:14', 0, NULL, 1),
(14074, 'Sathiya priya', '14', '9941377934', '', 'sathiyarajan0805@gmail.com', '2008-08-10', 0, '1', '2', 'Rajan', 'Welder', 10000.00, 1, 0.00, 15000.00, 'Vsm garden Street jafferkhanpet saidaptet chennai', 'Saidaptet', '2308100005', '', '1', 'upload_files/candidate_tracker/55020975744_SATHIYA.R CV.pdf', NULL, '1', '2023-08-10', 0, 'P1391', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice only', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-10 11:51:42', 1, '2023-08-10 12:04:00', 0, NULL, 1),
(14075, 'N.Nithyaa', '14', '9344085800', '9952950623', 'nithyaanavaneethan16@gmail.com', '2002-08-16', 20, '1', '2', 'Navaneetha krishnan', 'Security', 10000.00, 1, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2308100006', '', '1', 'upload_files/candidate_tracker/29172796396_NITHYAA.N(2).pdf', NULL, '1', '2023-08-10', 0, 'P1391', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-10 11:57:32', 1, '2023-08-10 12:04:17', 0, NULL, 1),
(14076, 'vijay', '14', '8220290618', '', 'vijaygopi8220@gmail.com', '2001-08-31', 21, '6', '2', 'kumar', 'own shop', 15000.00, 1, 0.00, 300000.00, 'kallakurichi', 'anna nagar chennai', '2308100007', '', '1', 'upload_files/candidate_tracker/23262774742_Vijay Resume1.pdf', NULL, '1', '2023-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need tp come after learning', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-10 12:11:34', 1, '2023-08-10 12:14:45', 0, NULL, 1),
(14077, 'Srinivasan m', '11', '9025532942', '', 'Vasuvasuvasuvasu71@gmail.com', '2000-06-26', 23, '3', '2', 'Murugan', 'Othres', 25000.00, 1, 18000.00, 20000.00, 'Chennai', 'Velarchyi', '2308100008', '', '2', 'upload_files/candidate_tracker/22872233215_SriniVasan M (2)-1.pdf', NULL, '1', '2023-08-10', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'he is medically unstable will not sustain', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-10 01:34:37', 1, '2023-08-10 02:12:23', 0, NULL, 1),
(14078, 'Afreena S', '5', '9360038203', '', 'afru2002@gmail.com', '2002-12-15', 20, '1', '2', 'Parent', 'Security officer', 20000.00, 1, 15000.00, 20000.00, 'Hindu College', 'Hindu College', '2308100009', '', '2', 'upload_files/candidate_tracker/40311423299_W.Afreena.pdf', NULL, '3', '2023-08-10', 0, 'CAFSUSR00556', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile have exp in calling internal team reference kindly chek and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-10 02:04:23', 60, '2023-08-10 07:41:35', 0, NULL, 1),
(14079, 'Shayam. M', '2', '9087095331', '', 'mshayam41@gmail.com', '2001-06-01', 22, '3', '2', 'Murali', 'Daily wages', 40000.00, 0, 200000.00, 320000.00, 'Chennai', 'Chennai', '2308100010', '', '2', 'upload_files/candidate_tracker/81863060363_Shyam. M original-1.pdf', NULL, '1', '2023-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude will not sustain not suitbale', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-10 02:57:38', 1, '2023-08-10 03:05:05', 0, NULL, 1),
(14080, 'Ganesh k', '23', '9087588812', '', 'ganeshk201099@gmail.com', '1999-10-20', 23, '3', '2', 'Kumar M', 'Weaver', 15000.00, 1, 250000.00, 360000.00, 'Thiruvanamalai', 'Chennai', '2308100011', '', '2', 'upload_files/candidate_tracker/53778208440_GANESH K-15.pdf', NULL, '1', '2023-08-10', 20, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-10 02:57:55', 1, '2023-08-10 03:08:05', 0, NULL, 1),
(14081, 'Ganesh k', '23', '9087508812', '', 'ganeshk201099@gmail.com', '1999-10-20', 24, '6', '2', 'Kumar M', 'Weaver', 30000.00, 1, 240000.00, 550000.00, 'Thiruvanamalai', 'Chennai', '2308100012', '', '2', 'upload_files/candidate_tracker/15132927590_resumeganesh.pdf', NULL, '1', '2024-09-25', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-10 03:14:10', 1, '2024-09-25 05:29:27', 0, NULL, 1),
(14082, '', '0', '9345364501', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308110001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-11 08:17:45', 0, NULL, 0, NULL, 1),
(14083, 'Ruthrasri Sudhakar', '13', '9790118324', '', 'ruthrasris2906@gmail.com', '2001-06-29', 22, '6', '2', 'Sudhakar', 'Farmer', 15000.00, 1, 0.00, 3.00, 'Krishnagiri', 'Chennai', '2308110002', '', '1', 'upload_files/candidate_tracker/3244779645_RUTHRASRI.S - Resume-compressed.pdf', NULL, '1', '2023-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No ideas in Javascript need time to learn if she comes back after learning need to check', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-11 10:08:36', 108, '2023-08-11 04:23:15', 0, NULL, 1),
(14084, 'Vaishnavi E', '13', '9384995657', '', 'vaishnavies23@gmail.com', '2000-05-16', 23, '6', '2', 'Elumalai', 'Farmer', 20000.00, 2, 0.00, 3.00, 'Chengam', 'Chennai', '2308110003', '', '1', 'upload_files/candidate_tracker/18132384556_Vaishnavi E - Resume (2).pdf', NULL, '1', '2023-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No ideas in skills not open up will not handle our work pressure', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-11 10:09:25', 108, '2023-08-11 04:22:22', 0, NULL, 1),
(14085, 'Balaji', '5', '8939436521', '6380934774', 'mrbalaji2310@gmail.com', '1998-07-10', 25, '2', '2', 'Ayyanar', 'Electrical work', 15000.00, 1, 16000.00, 18000.00, 'Chennai', 'Chennai', '2308110004', '1', '2', 'upload_files/candidate_tracker/92941909196_BALAJI A.pdf', NULL, '1', '2023-08-11', 0, '', '3', '59', '2023-08-16', 258600.00, '', '5', '1970-01-01', '1', 'Selected for shanmugam sir Team in Staff Role with commitment 1.5 L each for 3 months min 3.5 L with 5K SIP then 2K Hike after 3months', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-11 10:33:40', 60, '2023-08-16 10:43:00', 0, NULL, 1),
(14086, 'Prema', '5', '9677043912', '8056053921', 'vijiprema.912@gmail.com', '2003-02-26', 20, '2', '2', 'Vijaya', 'OA govt office', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2308110005', '1', '1', 'upload_files/candidate_tracker/69034620446_DocScanner 2 Mar 2023 8-55 pm_compressed_compressed (2).pdf', NULL, '1', '2023-08-11', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Have A Week Exp In  Calling Kindly Check And  Let Us Know ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-11 11:04:52', 101, '2023-08-11 02:58:49', 0, NULL, 1),
(14087, 'YUVASRI K', '13', '9789955012', '', 'yuvasri1617@gmail.com', '1998-04-17', 25, '6', '1', 'Tamilarasan', 'AC services', 15000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2308110006', '', '1', 'upload_files/candidate_tracker/2259438507_YUVASRI.K.pdf', NULL, '1', '2023-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Married Long career Gap will not sustain and handle the work pressure ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-11 11:19:16', 108, '2023-08-11 04:24:14', 0, NULL, 1),
(14088, 'Sarathkumar P', '13', '8838989742', '9865730782', 'sarathkumar.padmanaban@gmail.com', '1996-03-29', 27, '6', '2', 'Padmanaban', 'Daily wages', 15000.00, 1, 0.00, 360000.00, 'Arani', 'Chennai', '2308110007', '', '1', 'upload_files/candidate_tracker/3244337203_Sarathkumar_Resume.pdf', NULL, '1', '2023-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our domain have exp in core but the salary exp is very high min 3LPA', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-11 11:45:17', 108, '2023-08-11 04:15:18', 0, NULL, 1),
(14089, 'Swetha N', '5', '9840740581', '9840745581', 'Swethaswea143@gmail.com', '2002-12-14', 20, '2', '2', 'Narayanan', 'Borewell', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2308110008', '1', '1', 'upload_files/candidate_tracker/66096447283_Swetha Resume.pdf', NULL, '1', '2023-08-11', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Have a week exp in  calling kindly check and  let us know ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-11 11:49:15', 101, '2023-08-11 02:48:22', 0, NULL, 1),
(14090, 'Aysha Begum.A', '5', '9514410280', '', 'Ayshabegu022003@gmail.com', '2003-04-02', 20, '2', '2', 'Koswer Begum.A', 'B.A economics', 20000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2308110009', '1', '1', 'upload_files/candidate_tracker/998313866_ABINESH R - Resume.pdf', NULL, '1', '2023-08-11', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher communication Ok Sustainability doubts she was into  Dance and wall painting need to check her sustainability kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-11 11:54:22', 101, '2023-08-11 02:58:20', 0, NULL, 1),
(14091, 'Sanjog kumar', '13', '8248578911', '9677185925', 'Sanjogkumar1810@gmail.com', '2001-09-01', 21, '3', '2', 'Rajender parsad', 'Shop', 30000.00, 3, 0.00, 250000.00, 'Chennai', 'Chennai', '2308110010', '', '1', 'upload_files/candidate_tracker/96014110995_resume-1.pdf', NULL, '1', '2023-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills will not sustain in our roles not much comfrt in TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-11 12:14:21', 108, '2023-08-11 04:08:09', 0, NULL, 1),
(14092, 'Hemanth Kumar S', '13', '7550212504', '', 'hemanthsrinivasan21@gmail.com', '2000-10-21', 22, '6', '2', 'Srinivasan R', 'Private sector', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2308110011', '', '1', 'upload_files/candidate_tracker/21670057024_Hemanth Kumar S (Full stack).pdf', NULL, '1', '2023-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance  not open to relocate will not sustain', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-11 12:52:12', 108, '2023-08-11 04:10:49', 0, NULL, 1),
(14093, 'Ravi Rahul A', '13', '9514431216', '', 'ravirahula237@gmail.com', '2000-12-20', 22, '6', '2', 'Anandhan k', 'Business', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2308110012', '', '1', 'upload_files/candidate_tracker/6401979812_FD_RaviRahulA_resume-1.pdf', NULL, '1', '2023-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for TxxampC will not sustain and not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-11 12:52:33', 108, '2023-08-11 04:15:04', 0, NULL, 1),
(14094, 'Chellappan P', '13', '9384969546', '', 'chellappan9090@gmail.com', '2000-11-20', 22, '6', '2', 'Poongavanam', 'Daily wages work', 10000.00, 1, 0.00, 100000.00, 'Chennai', 'Chennai', '2308110013', '', '1', 'upload_files/candidate_tracker/12425744626_CHELLAPPAN FSJD.pdf', NULL, '3', '2023-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking only for Java Developer Role', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-11 01:22:42', 101, '2023-08-11 02:54:42', 0, NULL, 1),
(14095, 'Lavanya', '16', '7305447834', '', 'Lavanya24996@gmail.com', '1996-06-24', 27, '2', '1', 'Vigneshwaran', 'Rf engineer', 28000.00, 2, 23143.00, 29000.00, 'Ambattur', 'Ambattur', '2308110014', '1', '2', 'upload_files/candidate_tracker/38637596336_Resume CSE 3.pdf', NULL, '1', '2023-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good Have Expin Backend operations but the sustainability doubts checked with Gokul sir and rejected the profile', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-11 02:37:44', 85, '2023-08-11 03:07:39', 0, NULL, 1),
(14096, '', '0', '9344481134', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308110015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-11 08:44:54', 0, NULL, 0, NULL, 1),
(14097, 'shameema nisha', '11', '7358320073', '9841821125', 'shameemanisha743@gmail.com', '2001-05-19', 22, '6', '2', 'kuthus raja', 'courier service', 400000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2308120001', '', '1', 'upload_files/candidate_tracker/92257135155_Shameema Resume .pdf', NULL, '1', '2023-08-12', 0, '', '3', '59', '2023-08-14', 100000.00, '', '5', '1970-01-01', '2', 'Selected for Recruitment intern 1st month free then based onthe performance will pay and we may onboard after 3 months', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-12 09:58:35', 60, '2023-08-16 11:21:34', 0, NULL, 1),
(14098, 'vaaraghi. s', '13', '9361585861', '6381462218', 'vaaraghisaravanan14@gmail.com', '2002-05-14', 21, '6', '2', 'saravanan', 'business', 30000.00, 1, 0.00, 20000.00, 'nolambur', 'nolambur', '2308120002', '', '1', 'upload_files/candidate_tracker/42043818864_VAARAGHI RESUME (5).pdf', NULL, '1', '2023-08-12', 0, '', '5', '107', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not knowing Basics....Will not sustain', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-12 10:15:50', 108, '2023-08-12 02:41:59', 0, NULL, 1),
(14099, 'M.kumaravel', '5', '6369869685', '9943071137', 'Kunaravel1048@gmail.com', '2003-01-05', 20, '2', '2', 'Mahalingam', 'Farmer', 8000.00, 1, 0.00, 15000.00, '8/46 bajanai Kovil street puthur village', 'Pallavaram, chennai', '2308120003', '1', '1', 'upload_files/candidate_tracker/31895026256_Kumaravel M resume.pdf', NULL, '1', '2023-08-12', 0, '', '5', '107', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher..Not opening up...poor communication skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-12 10:24:50', 107, '2023-08-12 04:44:52', 0, NULL, 1),
(14100, 'Harikrishnan', '20', '7550106320', '', 'harikrishnan.aisect@gamil.com', '2001-10-11', 21, '2', '2', 'Kumaravel', 'painter', 13000.00, 0, 18000.00, 19000.00, 'chennai', 'nanganallur,chennai', '2308120004', '1', '2', 'upload_files/candidate_tracker/17337748511_Harikrishnan K 2.0.pdf', NULL, '1', '2023-08-12', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'good communication...Good convincing skills...Not relevant experience', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-12 10:57:59', 101, '2023-08-12 02:47:22', 0, NULL, 1),
(14101, 'Kalai selvi', '4', '9003169121', '9445878018', 'rakshithaanand25@gmaill.com', '1996-07-04', 27, '2', '1', 'Anand Manohar', 'Wast oil Business', 25000.00, 2, 0.00, 18000.00, 'T.Nager', 'T.nager', '2308120005', '1', '1', 'upload_files/candidate_tracker/26956827827_PDF Gallery_20230812_121152.pdf', NULL, '1', '2023-08-12', 0, '', '5', '107', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good communication...career gap of 6 years...will not sustain in the long run', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-12 11:45:48', 107, '2023-08-12 06:21:39', 0, NULL, 1),
(14102, 'Sakthivel .R', '5', '9363459117', '6379617400', 'sivaravisakthi@gmail.com', '1998-06-03', 25, '2', '2', 'D.Ravi', 'Jio faiber', 30000.00, 1, 19500.00, 22000.00, 'Tindivnam', 'Santhom', '2308120006', '1', '2', 'upload_files/candidate_tracker/54766920635_PeopleFirstPDF_2023_08_05T17_12_45.pdf', NULL, '1', '2023-08-12', 0, '', '5', '107', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not active...Career gap...Not suitable for our role ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-12 11:48:32', 108, '2023-08-12 12:19:35', 0, NULL, 1),
(14103, 'Varikuti karthik', '13', '9963634821', '9515036262', 'karthikvarikuti21@gmail.com', '1997-06-10', 26, '6', '2', 'Varikuti Ramaiah', 'Looking for a job', 15000.00, 2, 0.00, 300000.00, 'Andhra Pradesh', 'Chennai', '2308120007', '', '1', 'upload_files/candidate_tracker/63035000881_Resumefresher (2).pdf', NULL, '1', '2023-08-12', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'over attitude.. holding offer 3lpa', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-12 11:51:13', 108, '2023-08-12 12:20:36', 0, NULL, 1),
(14104, 'Emmanuel M', '22', '8428555214', '', 'emmanyabi@gmail.com', '1997-11-07', 25, '3', '2', 'Father: Manogaran , mother: July', 'Forming', 25000.00, 2, 0.00, 350000.00, 'Thiruvanamalai', 'Chennai', '2308120008', '', '1', 'upload_files/candidate_tracker/34837170564_Emmanuel M - Resume-1.pdf', NULL, '1', '2023-08-12', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'verbal comm..good... has exp in freelancing...written ok ...', '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-12 12:09:02', 1, '2023-08-12 01:04:15', 0, NULL, 1),
(14105, 'Seethapathy. D', '6', '7010350586', '9600074241', 'Seethapathy2002@gmail.com', '2002-08-23', 20, '2', '2', 'Devarajulu. C', 'Business', 75000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2308120009', '1', '1', 'upload_files/candidate_tracker/18181447231_CV_2023052415064154.pdf', NULL, '3', '2023-08-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-12 03:14:46', 108, '2023-08-18 10:39:06', 0, NULL, 1),
(14106, 'Rajaranjith v', '13', '6379968823', '9080223049', 'rajaranjith0007@gmail.com', '2000-05-31', 23, '2', '2', 'R venkatachalam', 'Farmer', 30000.00, 1, 0.00, 25000.00, 'Thanjavur', 'Chennai', '2308140001', '27', '1', 'upload_files/candidate_tracker/12417304819_Raja_Ranjith-1.pdf', NULL, '1', '2023-08-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Good With The JS Basics Not Much Comfort In TxxampC  Came As A Group And Sustainability Doubts if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-14 09:49:13', 108, '2023-08-16 10:13:27', 0, NULL, 1),
(14107, 'Balakumaran s', '14', '8940873939', '', 'balavineeth98@gmail.com', '1998-09-29', 24, '2', '2', 'Sivakumar', 'Farmer', 40000.00, 1, 0.00, 3.00, 'Dharmapuri', 'Chennai', '2308140002', '27', '1', 'upload_files/candidate_tracker/82526687086_BALAKUMARAN S CV (1) (1).pdf', NULL, '1', '2023-08-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Good With The JS Basics Not Much Comfort In TxxampC  Came As A Group And Sustainability Doubts looking  much for AWS', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-14 09:49:25', 108, '2023-08-16 10:12:39', 0, NULL, 1),
(14108, 'Vinoth S', '13', '9715918388', '6383708353', 'vinothkuruvi007@gmail.com', '2001-06-23', 22, '2', '2', 'Sella Durai R', 'Passed away', 160000.00, 2, 0.00, 300000.00, 'Thanjavur', 'Perungalathur', '2308140003', '27', '1', 'upload_files/candidate_tracker/7684738371_S.Vinoth resume-1.pdf', NULL, '1', '2023-08-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Good With The JS Basics Not Much Comfort In TxxampC  Came As A Group And Sustainability Doubts', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-14 09:49:26', 108, '2023-08-16 10:14:48', 0, NULL, 1),
(14109, 'Nivashini B', '13', '7094241988', '9095251593', 'nivashinib66@gmail.com', '1999-09-16', 23, '2', '2', 'Baskaran', 'Farmer', 50000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Saidapet', '2308140004', '27', '1', 'upload_files/candidate_tracker/68756465225_B.Nivashini Resume .pdf', NULL, '1', '2023-08-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-14 09:49:57', 108, '2023-08-16 10:11:42', 0, NULL, 1),
(14110, 'B.Dinesh', '23', '8111062077', '', 'dineshbsc.cs2106@gmail.com', '2002-06-21', 21, '3', '2', 'Bala krishnan', 'Farmer', 13000.00, 1, 0.00, 13000.00, 'Arakkonam', 'Arakkonam', '2308140005', '', '1', 'upload_files/candidate_tracker/86019095553_Dinesh( Resume ).pdf', NULL, '1', '2023-08-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Good with the JS basics not much comfort in TxxampC  Came as a group and sustainability doubts', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-14 10:47:21', 1, '2023-08-14 10:51:40', 0, NULL, 1),
(14111, 'P.Tamilarasan', '23', '9159691397', '8807456100', 'Tamilarasan915969@gmail.com', '2002-06-09', 21, '6', '2', 'Periyasay', 'Farmar', 13000.00, 1, 0.00, 15000.00, 'Arakkonam', 'Arakkonam', '2308140006', '', '1', 'upload_files/candidate_tracker/81674889645_tamilarasan.pdf', NULL, '1', '2023-08-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Good With The JS Basics Not Much Comfort In TxxampC  Came As A Group And Sustainability Doubts', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-14 10:53:16', 108, '2023-08-16 10:13:57', 0, NULL, 1),
(14112, '', '0', '8056027194', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-14 12:06:54', 0, NULL, 0, NULL, 1),
(14113, 'Nirisha S', '13', '9176075611', '', 'Nirishaselvaraj2003@gmail.com', '2003-08-07', 20, '3', '2', 'selvaraj', 'contractor', 15000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2308140008', '', '1', 'upload_files/candidate_tracker/67053861781_S.Nirisha resume.pdf', NULL, '3', '2023-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-14 12:49:31', 1, '2023-08-14 12:55:27', 0, NULL, 1),
(14114, 'Keerthika', '4', '9751933569', '', 'Keerthikaazhagar@gmail.com', '1998-06-17', 25, '1', '2', 'Azhagar', 'Farmer', 10000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2308140009', '', '1', 'upload_files/candidate_tracker/30316199293_keerthika resume.docx', NULL, '1', '2023-08-14', 0, 'P1023', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'to long gap and not fit for team and sales', '1', '1', '0', '4', '5', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-14 04:23:14', 1, '2023-08-14 04:25:28', 0, NULL, 1),
(14115, 'BOOBATHY S', '22', '9384650574', '9566116864', 'boopathy0904@gmail.com', '1996-04-09', 27, '3', '2', 'mala', 'house wife', 50000.00, 1, 25000.00, 27000.00, 'pallavaram', 'Pallavaram', '2308160001', '', '2', 'upload_files/candidate_tracker/29842884854_20230307053230.pdf', NULL, '1', '2023-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-16 01:13:15', 1, '2023-08-16 01:18:28', 0, NULL, 1),
(14116, 'Priyadharshini', '20', '7358012024', '7358155915', 'rspriyadurga13226@gmail.com', '1998-07-26', 25, '2', '2', 'Rajasekar', 'Tailor', 20000.00, 0, 22000.00, 25000.00, 'Ramapuram, Chennai', 'Ramapuram, Chennai', '2308160002', '1', '2', 'upload_files/candidate_tracker/96240778016_Priyadharshini Resume (3).pdf', NULL, '1', '2023-08-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-16 08:05:28', 85, '2023-08-16 10:17:07', 0, NULL, 1),
(14117, 'Srimathi.c', '4', '6369697099', '9444672021', 'srim46375@gmail.com', '2003-12-23', 19, '2', '2', 'Chandrasekaran.C', 'Reporter', 15000.00, 1, 0.00, 13000.00, 'Ponneri', 'Ponneri', '2308160003', '27', '1', 'upload_files/candidate_tracker/85192856550_Srimathi resume.pdf', NULL, '1', '2023-08-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok Can be trained in our roles but too long distance up and down 80kms will not sustain', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-16 09:57:36', 108, '2023-08-16 11:28:30', 0, NULL, 1),
(14118, 'dharmaprakash d', '22', '9940574324', '', 'dharmaprakash9827@gmail.com', '2000-12-21', 22, '2', '2', 'parent', 'real estate', 250000.00, 2, 0.00, 180000.00, 'chennai thiruvanmiyur', 'chennai thiruvanmiyur', '2308160004', '27', '1', 'upload_files/candidate_tracker/84383543183_DHARMAPRAKASH Resume 2023.pdf', NULL, '1', '2023-08-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not so good wiht the basics in Digital MArketing  not open for long Run and focus only in the salary', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-16 10:37:16', 108, '2023-08-16 11:27:33', 0, NULL, 1),
(14119, 'Varun Shankar', '6', '8428324142', '', 'Vv852697@gmail.com', '2002-02-21', 21, '1', '2', 'M.veeramuthu', 'Delivery person', 10000.00, 1, 15000.00, 18000.00, '3/6 s spuram m k Radha nagar teynampet Chennai 17', '3/6 S Spuram M K Radha Nagar Teynampet', '2308160005', '', '2', 'upload_files/candidate_tracker/1365293633_Varun Shankar.V (Resume).docx', NULL, '1', '2023-08-16', 0, '55692', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much good profile internal team reference kindly check and let me knwo your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-16 11:36:56', 104, '2023-08-16 07:17:58', 0, NULL, 1),
(14120, 'Arun N', '5', '6383704775', '9962766468', 'arunarunkk92@gmail.com', '2003-01-14', 20, '2', '2', 'Narayanan', 'Tailor', 12000.00, 1, 0.00, 20000.00, 'Thirumulaivoyal', 'Thriumulaivoyal', '2308160006', '1', '1', 'upload_files/candidate_tracker/46346447973_AJAY resume-6.pdf', NULL, '1', '2023-08-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-16 12:08:05', 104, '2023-08-17 10:11:31', 0, NULL, 1),
(14121, 'Edison', '6', '9789724251', '', 'edisonedi060@gmail.com', '2001-05-18', 22, '2', '2', 'Amalraj', 'Business', 50000.00, 2, 14000.00, 18000.00, 'Tenkasi', 'Nunkampakkam', '2308160007', '1', '2', 'upload_files/candidate_tracker/95957585665_Edison Resume.pdf', NULL, '1', '2023-10-09', 0, '', '3', '59', '2023-10-13', 210000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team opted Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-16 01:01:28', 104, '2023-10-13 04:21:48', 0, NULL, 1),
(14122, 'Mythili', '4', '9025844884', '9442237556', 'mythiliv18@gmail.com', '1999-12-26', 23, '3', '1', 'Ravichandran', 'Farmer', 6000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2308160008', '', '1', 'upload_files/candidate_tracker/76841277297_CURRICULAM VITAE (Mythili).pdf', NULL, '1', '2023-08-16', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'not fit for telesales', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-08-16 01:29:36', 1, '2023-08-16 01:35:59', 0, NULL, 1),
(14123, '', '0', '6383965019', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308160009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-16 01:29:44', 0, NULL, 0, NULL, 1),
(14124, 'Premalatha S', '4', '8270905752', '6383965019', 'premalatha240401@gmail.com', '2001-04-24', 22, '3', '2', 'Suppaian P', 'Daily Wages', 10000.00, 1, 0.00, 10000.00, 'Nayakkar street Mappilai nayakkan Patti', 'Nayakkar street Mappilai nayakkan Patti', '2308160010', '', '1', 'upload_files/candidate_tracker/25654735101_PREMA BHARATHI RESUME.pdf', NULL, '1', '2023-08-16', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'expected high and not profile not fit for sales', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-08-16 01:38:20', 1, '2023-08-16 01:45:48', 0, NULL, 1),
(14125, 'Tamilselvan', '4', '8148495498', '', 'ltamilselvan2000@gmail.com', '2000-04-11', 23, '2', '2', 'Lakshmanamoorthy P', 'Security', 15000.00, 3, 0.00, 3.00, 'Chengam,Thiruvannamalai', 'ECR,Injambakkam, Chennai 115', '2308160011', '27', '1', 'upload_files/candidate_tracker/26564665594_pdf_20230606_130318_0000.pdf', NULL, '3', '2023-08-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance Very slow will not sustain and not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-16 01:45:40', 104, '2023-08-16 06:34:32', 0, NULL, 1),
(14126, 'yasmin', '6', '7358583642', '9940335760', 'ymin57359@gmail.com', '2002-04-06', 21, '2', '2', 'misiriya banu', 'Garmance', 30000.00, 1, 15000.00, 20000.00, 'Chennai,Pallavaram', 'Chennai,Pallavaram', '2308160012', '1', '2', 'upload_files/candidate_tracker/74819937835_YASMIN .pdf', NULL, '1', '2023-08-16', 0, '', '3', '59', '2023-08-17', 164400.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-16 02:17:06', 60, '2023-08-17 10:07:10', 0, NULL, 1),
(14127, 'Indhu mathi N', '13', '9597154667', '9487458087', 'nindhu1999@gmail.com', '1999-05-23', 24, '3', '2', 'Nainar P', 'Finance', 15.00, 2, 17.00, 25.00, 'Tirunelveli', 'Chennai', '2308160013', '', '2', 'upload_files/candidate_tracker/43705604210_Resume3-1.pdf', NULL, '1', '2023-08-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Sustainability looking only for Salary will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-16 03:05:46', 1, '2023-08-16 03:11:03', 0, NULL, 1),
(14128, 'Sanjay', '6', '7539963017', '9150950029', 'sanjaymano753@gmail.com', '2001-02-27', 22, '2', '2', 'Baskaran', 'Farmer', 15000.00, 3, 18000.00, 23000.00, 'Trichy', 'Chennai', '2308160014', '1', '2', 'upload_files/candidate_tracker/53058330843_sanjay (2).docx', NULL, '1', '2023-08-17', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Seems not much active but have 2 yrs exp in calling kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-16 05:26:33', 104, '2023-08-17 10:11:46', 0, NULL, 1),
(14129, '', '0', '8939382872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308160015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-16 05:58:38', 0, NULL, 0, NULL, 1),
(14130, 'Mahasri', '13', '7010664996', '7373986271', 'mahasrimeyyar@gmail.com', '2002-04-22', 21, '2', '2', 'Shanthi menaga', 'Clerk', 17000.00, 1, 0.00, 300000.00, 'No, 6592 jeyam nagar kalaiyarkovil, sivagangai', 'Veerapuram, mahindra world city, chengalpat', '2308160016', '1', '1', 'upload_files/candidate_tracker/55748402509_Mahasrimeyyar.pdf', NULL, '1', '2023-08-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for TxxampC too long Distance will not sustain came along wiht the friends not good in basics', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-16 06:31:00', 104, '2023-08-17 10:12:10', 0, NULL, 1),
(14131, 'Mahammad Aslam', '5', '7411847819', '', 'mahammad1234mulla@gmail.com', '1997-06-09', 26, '2', '2', 'Altaf husen', 'Lorry driver', 400000.00, 5, 400000.00, 500000.00, 'Haveri', 'Madiwala', '2308160017', '1', '2', 'upload_files/candidate_tracker/55258204714_Aslammadavara1.pdf', NULL, '1', '2023-08-21', 0, '', '1', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-16 06:39:25', 126, '2024-06-13 06:33:35', 0, NULL, 1),
(14132, 'Vidhiya S', '2', '8608219780', '7868849732', 'ksvidhiya7@gmail.com', '2002-05-14', 21, '3', '2', 'K.R.Selvam', 'Framer', 30.00, 1, 0.00, 3.00, 'Karaikudi', 'Chennai', '2308160018', '', '1', 'upload_files/candidate_tracker/5361971359_Vidhiya Selvam 2023 Resume (1).pdf', NULL, '1', '2023-08-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For TxxampC Too Long Distance Will Not Sustain Came Along Wiht The Friends Not Good In Basics', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-16 06:47:58', 104, '2023-08-17 04:59:25', 0, NULL, 1),
(14133, 'Divyamugi M', '2', '9787520355', '', 'divyamugi577@gmail.com', '2001-10-06', 21, '3', '2', 'Murugan', 'Farmer', 80000.00, 2, 0.00, 3.00, 'Sivagangai', 'Chennai', '2308160019', '', '1', 'upload_files/candidate_tracker/77658578832_Divyamugi murugan.pdf', NULL, '1', '2023-08-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC Too Long Distance Will Not Sustain Came Along Wiht The Friends Not Good In Basics', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-16 06:48:56', 1, '2023-08-16 06:53:31', 0, NULL, 1),
(14134, 'Srinivasan E', '4', '7092257134', '9884403939', 'sri.seena92@gmail.com', '1993-05-17', 30, '2', '2', 'ETHIRAJAN', 'Accountant', 12500.00, 0, 13000.00, 14000.00, 'RajaGopal naicken street,Chintadripet', 'RajaGopal naicken street,Chintadripet', '2308160020', '1', '2', 'upload_files/candidate_tracker/45328777009_DOC-20230809-WA0004..pdf', NULL, '1', '2023-08-17', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very slow no sustainability in his previous exp will not handle the pressure', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-16 06:51:47', 85, '2023-08-17 10:11:45', 0, NULL, 1),
(14135, 'Rahul', '6', '6369007681', '9841968429', 'Rahulfu889@gmail.com', '2001-03-22', 22, '2', '2', 'Babukannan', 'Government employer', 60000.00, 2, 0.00, 2.71, 'Chennai', 'Chennai', '2308160021', '1', '1', 'upload_files/candidate_tracker/95755504176_Rahul.B Resume (1).pdf', NULL, '1', '2023-08-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left Without Attending The Interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-16 07:30:43', 104, '2023-08-17 01:16:36', 0, NULL, 1),
(14136, 'G.Kalaivani', '4', '9962194573', '8778164945', 'kalaivanikalaivani5167@gmail.com', '2001-03-10', 22, '1', '2', 'K.Gopi', 'Auto Driver', 40000.00, 2, 0.00, 18000.00, '8/17, Thanappa street, triplicane, chennai-5', '8/17, Thanappa street, triplicane, Chennai -5', '2308170001', '', '1', 'upload_files/candidate_tracker/2028085227_kalaivani resume.docx', NULL, '1', '2023-08-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Lookin for non voice need to open a lot will not sustain', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-17 10:24:29', 1, '2023-08-17 10:55:20', 0, NULL, 1),
(14137, 'Lijish Wilson s', '13', '8056753142', '', 'lijishwilson@gmail.com', '2001-12-21', 21, '3', '2', 'Wilson Nesaraj P', 'Mechanic', 15000.00, 0, 0.00, 20000.00, 'Nagercoil', 'Vadapalani', '2308170002', '', '1', 'upload_files/candidate_tracker/47024472636_resume.pdf', NULL, '1', '2023-08-17', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Failed in Apptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-17 10:26:02', 1, '2023-08-17 10:33:11', 0, NULL, 1),
(14138, 'Ajith B', '13', '8870280961', '', 'ajithbl7474@gmail.com', '2002-06-07', 21, '3', '2', 'S Babu', 'Mason', 15000.00, 1, 0.00, 20000.00, 'Nagercoil', 'Vadapalani', '2308170003', '', '1', 'upload_files/candidate_tracker/62818126949_Resume.pdf', NULL, '1', '2023-08-17', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Failed in Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-17 10:26:18', 1, '2023-08-17 10:33:20', 0, NULL, 1),
(14139, 'Mercy b', '5', '9840995244', '', 'MERCYDAVULUR07@GMAIL.COM', '2001-06-15', 22, '2', '2', 'Baburao', 'Cooly', 20000.00, 1, 14000.00, 16000.00, 'Chennai', 'Chennai', '2308170004', '1', '2', 'upload_files/candidate_tracker/47566018609_Mercy.B Resume .pdf', NULL, '1', '2023-08-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'communication Ok But need to check for Operations will check with Gokul and confirm the profiles', '5', '1', '0', '1', '8', '0', '2', '2023-08-21', '2', '0', NULL, NULL, 'H1015', '0', NULL, NULL, NULL, 1, '2023-08-17 10:44:21', 1, '2023-08-17 12:12:27', 0, NULL, 1),
(14140, 'SURYA PRAKASH R', '11', '6380100244', '9962262661', 'suryaprakash17111999@gmail.com', '1999-11-17', 23, '2', '2', 'Ravisankar', 'Lic', 40000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2308170005', '27', '1', 'upload_files/candidate_tracker/75506902111_Surya prakash Resume.pdf', NULL, '1', '2023-08-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Sounding is not good will not sustain and not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-17 10:55:05', 104, '2023-08-17 05:02:33', 0, NULL, 1),
(14141, 'Karthik V', '13', '9500450671', '7299675067', 'karthikv4545@gmail.com', '2000-10-09', 22, '2', '2', 'S venu', 'Business', 20000.00, 0, 0.00, 35000.00, 'Chennai', 'Chennai', '2308170006', '27', '1', 'upload_files/candidate_tracker/29870452020_Karthik V Resume -1.pdf', NULL, '1', '2023-08-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking only for Python and not open fr TxxampC settled family and not much importance on the job', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-17 11:38:56', 104, '2023-08-17 04:56:55', 0, NULL, 1),
(14142, 'K.Anitha', '4', '9840361932', '7448445858', 'anithakalai2017@gmail.com', '1998-11-19', 24, '2', '2', 'p.kalaimani', 'Daily wages', 20000.00, 1, 17000.00, 20000.00, 'Jeeva Nagar 4th Street New Washermenpet Chennai-81', 'New washermenpet', '2308170007', '1', '2', 'upload_files/candidate_tracker/22975728228_Anitha.k CV.pdf', NULL, '1', '2023-08-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in calling Communication Ok can be trained in our roles asked her to come after lunch but she didnt', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-08-17 11:43:20', 1, '2023-08-17 11:46:40', 0, NULL, 1),
(14143, 'Benazir Nisha', '4', '9176809924', '', 'benazirnisha.a@gmail.com', '1989-06-03', 34, '2', '1', 'Mohamed mohaideen', 'Home appliances servicing', 20000.00, 1, 0.00, 15000.00, 'Thiruvotriyur', 'Thiruvotriyur', '2308170008', '27', '1', 'upload_files/candidate_tracker/78771901946_Nisha resume (1).docx', NULL, '1', '2023-08-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left Without Attending The Interview', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-17 11:50:10', 104, '2023-08-17 04:55:24', 0, NULL, 1),
(14144, 'ABINESWARAN U', '4', '7867998117', '6380446862', 'abineswaran561999@gmail.com', '1999-06-05', 24, '1', '2', 'Mariyammal', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'PUDUKKOTTAI', 'Thanjavur', '2308170009', '', '2', 'upload_files/candidate_tracker/42905645101_RESUME @ .pdf', NULL, '1', '2023-08-17', 0, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-17 12:00:58', 1, '2023-08-17 12:06:05', 0, NULL, 1),
(14145, 'Arjun', '13', '8667484170', '', 'arjunaariya007@gmail.com', '2008-08-17', 0, '2', '2', 'Prakash', 'Farmer', 30000.00, 2, 18000.00, 25000.00, 'Ranipet', 'Ranipet', '2308170010', '27', '2', 'upload_files/candidate_tracker/87682006194_Arjun_CV-1.pdf', NULL, '1', '2023-08-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Testing Role only slight ok for sales if he comes back let us try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-17 12:05:37', 104, '2023-08-17 04:54:41', 0, NULL, 1),
(14146, 'Vikram P', '28', '8925385189', '', 'vikramprasath098@gmail.com', '2001-06-19', 22, '3', '2', 'No', 'No', 35000.00, 0, 0.00, 1.00, 'Chennai', 'Chennai', '2308170011', '', '1', 'upload_files/candidate_tracker/96848981263_RESUME - VIKRAM (19) (1) (1).pdf', NULL, '1', '2023-08-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-17 12:11:28', 1, '2023-08-17 12:22:57', 0, NULL, 1),
(14147, 'Dravid Vasanth', '5', '9159558344', '', 'dravidvasanth17@gmail.com', '1999-12-17', 23, '2', '1', 'avithra', 'ank manager', 60000.00, 0, 33500.00, 42000.00, 'iruva', 'hennai', '2308170012', '27', '2', 'upload_files/candidate_tracker/26248345235_DRAVID VASANTH RESUME...pdf', NULL, '1', '2023-08-17', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok Have Exp in Sales bit Attitude Sustainability doubts in our roles need to check based on the manager availability', '5', '1', '', '1', '8', '', '2', '2023-08-21', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-17 12:24:30', 108, '2023-08-17 04:55:50', 0, NULL, 1),
(14148, 'RAJ KANNAN N', '23', '7358455260', '9894052012', 'rajkannannatarajan2001@gmail.com', '2001-03-29', 22, '2', '2', 'Natarajan M', 'Chief Electrician', 350000.00, 1, 0.00, 330000.00, 'Mayiladuthurai', 'Chennai', '2308170013', '27', '1', 'upload_files/candidate_tracker/86952930568_RAJ', NULL, '1', '2023-08-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very high Exp he had an offer with Honeywell for 8.4LPA due to recession it was dropped and he was expecting something similar\n', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-17 12:33:00', 104, '2023-08-17 05:07:13', 0, NULL, 1),
(14149, 'Lavanya', '4', '9444926191', '', 'gurusamymutharasi@gmail.com', '2008-08-17', 0, '1', '2', 'Gurusamy', 'Business', 12000.00, 1, 0.00, 15000.00, 'ekkattuthangal Chennai', 'No 15 Bharathi street Gandhi nagar ekkattuthangal', '2308170014', '', '1', 'upload_files/candidate_tracker/93298288344_lavanya application.pdf', NULL, '1', '2023-08-17', 0, '77807', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much focus on non voice internal reference from Banu team not suitable for our roles ', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-17 12:47:04', 1, '2023-08-17 12:51:27', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14150, 'Jeevanantham. R', '31', '6380241214', '8939039895', 'timeloop64@yahoo.com', '1999-09-20', 23, '6', '2', 'Ramesh (Father )', 'Indian airforce', 400000.00, 1, 0.00, 12000.00, 'chennai', 'Tambaram', '2308170015', '', '1', 'upload_files/candidate_tracker/61577232049_Jeevanantham CV_1.pdf', NULL, '1', '2023-08-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sounding Low too long Distance Need to come back with his confirmation on TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-17 02:45:44', 1, '2023-08-17 02:50:12', 0, NULL, 1),
(14151, 'Deepalakshmi', '4', '9361345695', '9384623220', 'deepa01081999@gmail.com', '1999-08-01', 24, '3', '2', 'vilvamani', 'mtc', 35000.00, 1, 21000.00, 15000.00, 'chennai', 'chennai', '2308170016', '', '2', 'upload_files/candidate_tracker/71023434878_Resume mba.pdf.pdf', NULL, '1', '2023-08-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-17 02:50:16', 1, '2023-08-17 02:55:23', 0, NULL, 1),
(14152, 'Dilliganesh p', '4', '9344211951', '', 'Dilliganesh223@gmail.com', '1998-10-15', 24, '3', '2', 'pallvannav', 'electrician', 200000.00, 1, 0.00, 18000.00, 'perambur', 'perambur', '2308170017', '', '1', 'upload_files/candidate_tracker/54195981386_Dilliganesh resume.pdf', NULL, '1', '2023-08-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left Without Attending The Interview', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-17 02:50:24', 1, '2023-08-17 03:00:44', 0, NULL, 1),
(14153, '', '0', '8939213740', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308170018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-17 04:31:37', 0, NULL, 0, NULL, 1),
(14154, 'Mohammed Sadham', '16', '9361676649', '9677254043', 'mdsadham0904@gmail.com', '2004-04-09', 19, '2', '2', 'Mohideen Shahul Hameed', 'Salesman', 25000.00, 1, 0.00, 15000.00, 'Nanganallur', 'Nanganallur', '2308170019', '1', '1', 'upload_files/candidate_tracker/40089813596_Mohammed sadham resume.pdf', NULL, '1', '2023-08-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending\n', '3', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-17 05:48:08', 85, '2023-08-18 07:15:20', 0, NULL, 1),
(14155, 'ESAKKIMUTHU P', '5', '9600465424', '', 'esakkimuthup7879@gmail.com', '2000-12-30', 22, '2', '2', 'PERUMAL P', 'DRIVER', 20000.00, 1, 0.00, 250000.00, 'TIRUNELVELI', 'CHENNAI', '2308170020', '1', '1', 'upload_files/candidate_tracker/75204708307_ESAKKIMUTHU.P CV.pdf', NULL, '1', '2023-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for Callings will not sustain and handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-17 06:52:13', 104, '2023-08-21 04:16:25', 0, NULL, 1),
(14156, 'Krishna S', '5', '8754787137', '9894895932', 'krishkrish39591@gmail.com', '1999-10-07', 23, '2', '2', 'Selvam M', 'Senior Branch manager', 1100000.00, 1, 400000.00, 480000.00, 'Tirunelveli', 'Chennai', '2308170021', '1', '2', 'upload_files/candidate_tracker/50901718667_KRISHNA', NULL, '1', '2023-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking only for Operations 6 months Exp in  Kotak with 4LPA not open much to come down will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-17 06:52:28', 104, '2023-08-21 04:16:37', 0, NULL, 1),
(14157, 'vignesh', '31', '9025071513', '', 'vigneshr121998@gmail.com', '1998-12-31', 24, '3', '2', 'radhakrishnan p', 'driver', 20000.00, 1, 0.00, 200000.00, 'vellore', 'vellore', '2308170022', '', '1', 'upload_files/candidate_tracker/29652727279_Vignesh R--B.E(EEE)2022 (1).pdf', NULL, '1', '2023-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Hearning issue understanding pooor will not sustain and not suitable ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-17 08:49:57', 1, '2023-08-18 11:23:49', 0, NULL, 1),
(14158, 'Surya R', '6', '7358608629', '', 'ravisurya0876@gmail.com', '2003-02-09', 20, '2', '2', 'Ravi', 'Wages', 20000.00, 1, 0.00, 15000.00, 'No: 138 4th block Udhatasuriyan nagar Vyasarpadi', 'No 138 4th Block, Udhatasuriyan Nagar, Vyasarpadi', '2308180001', '1', '1', 'upload_files/candidate_tracker/87619727132_CV_2023070316072893.pdf', NULL, '1', '2023-08-19', 0, '', '3', '59', '2023-08-22', 210000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in Staff ROle', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-18 10:29:01', 60, '2023-08-22 09:51:51', 0, NULL, 1),
(14159, '', '0', '9629335969', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308180002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-18 10:31:38', 0, NULL, 0, NULL, 1),
(14160, 'Vidya', '13', '9676790651', '9182853889', 'vidyavirathuru@gmail', '2001-04-01', 22, '6', '2', 'Indeed', 'Software', 30000.00, 1, 0.00, 14000.00, 'Amasareddy kandriga,sathyavedu(m),thirupathi', 'Madhurvoyal ration kadai , Chennai', '2308180003', '', '2', 'upload_files/candidate_tracker/27332826965_vidhya.pdf', NULL, '1', '2023-08-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no basics skills will not sustain and not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-18 10:47:26', 104, '2023-08-18 02:47:02', 0, NULL, 1),
(14161, 'Vishal', '14', '8072470992', '8039405013', 'vishalganesan207@gmail.com', '1998-07-20', 25, '2', '2', 'H. Ganesh', 'Driver', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2308180004', '26', '1', 'upload_files/candidate_tracker/19817875751_Vishal.g.pdf1.pdf', NULL, '1', '2023-08-18', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'Have basics skill in MySQL open for PHP learning open for TxxampC kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-18 10:55:51', 1, '2023-08-18 11:00:07', 0, NULL, 1),
(14162, 'yakhoob sk', '23', '9515650116', '', 'yakhoobshaik9@gmail.com', '2002-04-02', 21, '6', '2', 'shaik pashagiri', 'farmer', 20000.00, 1, 0.00, 200000.00, 'nellore', 'vellacherry chennai', '2308180005', '', '1', 'upload_files/candidate_tracker/19686877082_YAKHOOBresumeweb.pdf', NULL, '1', '2023-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No local language only telugu Fresher need to learn a lot need confirmation on TxxampC if he come back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-18 11:16:56', 1, '2023-08-18 12:13:59', 0, NULL, 1),
(14163, 'Santhiya K', '13', '9791974363', '', 'santhiyakaruthapillai@gmail.com', '2001-04-01', 22, '6', '2', 'Karuthapillai V', 'Electrician', 150000.00, 2, 0.00, 200000.00, 'Cuddalore', 'Saidapet, Chennai', '2308180006', '', '1', 'upload_files/candidate_tracker/21513508154_Sandhya.pdf', NULL, '1', '2023-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not much comfrt in TxxampC will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-18 11:33:56', 1, '2023-08-18 11:37:58', 0, NULL, 1),
(14164, 'Vimaladavincy R', '20', '9003981830', '7639291977', 'vimaladavincy2712@gmail.com', '2000-12-28', 22, '2', '2', 'Rayar I', 'Engineering contractor', 20000.00, 2, 0.00, 20000.00, 'Pudukkottai', 'Thambaram', '2308180007', '27', '1', 'upload_files/candidate_tracker/57020475347_CV_2023081114213476.pdf', NULL, '1', '2023-08-18', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need To Come Back With His Confirmation Open For Non IT Positions Discussed For Our Operations Need To Come Back With Her Confirmation ', '5', '1', '', '1', '8', '', '2', '2023-08-23', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-18 11:36:32', 104, '2023-08-18 02:48:30', 0, NULL, 1),
(14165, 'Magthalin Ashneth A', '20', '9994787483', '9003981830', 'maggyishu13@gmail.com', '2001-06-13', 22, '2', '2', 'Abraham Mathew S', 'Interior Decoration', 30000.00, 1, 0.00, 20000.00, 'Trichy', 'Tambaram', '2308180008', '27', '1', 'upload_files/candidate_tracker/53721704401_Magthalin Ashneth R .pdf', NULL, '1', '2023-08-18', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come back with his confirmation open for non IT positions discussed for our operations need to come back with her confirmation ', '5', '1', '', '1', '8', '', '2', '2023-08-23', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-18 11:43:04', 104, '2023-08-18 02:48:59', 0, NULL, 1),
(14166, 'Omprakash', '23', '8754539962', '9962133452', 'omprakashlott@gmail.com', '1997-12-03', 25, '6', '2', 'Kannan', 'BE Mechanical', 30000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2308180009', '', '2', 'upload_files/candidate_tracker/91249296083_Omprakash Resume.pdf', NULL, '1', '2023-08-18', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Given Task for UI UX long back attended interview fresher at the time now exp in front end with the pay 25K', '2', '1', '', '1', '8', '', '2', '2023-08-23', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-18 12:13:48', 104, '2023-08-18 02:49:41', 0, NULL, 1),
(14167, 'SURIYAPRAKASH.M', '4', '9710156854', '9790938578', 'suriyaprathiksha06@gmail.com', '1991-06-06', 32, '3', '2', 'Tamilselvi', 'Housewife', 9000.00, 2, 15000.00, 20000.00, 'Mylapore Chennai', 'Pattabiram', '2308180010', '', '2', 'upload_files/candidate_tracker/38307048397_suriyaprakash resume.docx', NULL, '1', '2023-08-18', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance Will relocate to mylapre after 3 months if he comes at that time let us check last year 2022 alos he attended', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-18 12:20:17', 1, '2023-08-18 12:25:41', 0, NULL, 1),
(14168, '', '0', '6361393916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308180011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-18 01:17:07', 0, NULL, 0, NULL, 1),
(14169, 'Yogashree', '6', '9500641256', '9994566399', 'yogashree1425@gmail.com', '1997-04-27', 26, '3', '2', 'Muruhesan. VS', 'Astrologer', 25000.00, 1, 30000.00, 40000.00, 'Chennai', 'Chennai', '2308180012', '', '2', 'upload_files/candidate_tracker/31210227513_Updated Yogashree Resume.pdf', NULL, '1', '2023-08-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Open for operation Last drwan CTC 3.7LPA just 11 months exp not ready to come down the package', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-18 03:21:15', 104, '2023-08-29 05:45:15', 0, NULL, 1),
(14170, '', '0', '8428664085', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308180013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-18 03:52:05', 0, NULL, 0, NULL, 1),
(14171, 'KARTHICK R', '5', '7358621023', '8056129197', 'karthickravi2210@gmail.com', '1999-10-22', 23, '2', '2', 'Mahalakshmi', 'Street vendor', 150000.00, 3, 0.00, 20000.00, '66/1 singanna chetty Street chintadripet Chennai', '66/1 singanna chetty Street chintadripet Chennai', '2308180014', '1', '1', 'upload_files/candidate_tracker/74856484409_KARTHI resume1.0.pdf', NULL, '1', '2023-08-19', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not intrest in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-18 05:30:32', 104, '2023-08-19 04:19:51', 0, NULL, 1),
(14172, 'Dravidan. J', '4', '8098550308', '9342182325', 'dravidanjayaseelan@gmail.com', '1996-05-11', 27, '2', '2', 'Jayaseelan', 'Agriculture', 20000.00, 3, 15000.00, 20000.00, 'Dharmapuri', 'Chennai', '2308180015', '1', '2', 'upload_files/candidate_tracker/89979473380_Dravidan Resume.pdf', NULL, '1', '2023-08-26', 7, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Frequent job changes...will not suit for our roles', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-18 09:02:53', 85, '2023-08-26 05:52:07', 0, NULL, 1),
(14173, 'Salai Agamiya Kamiyan N', '28', '8248257560', '', 'gowthamkamiyan@gmail.com', '1998-02-02', 25, '2', '2', 'G Nagalingam', 'Electrical Supervisor', 25000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2308190001', '27', '1', 'upload_files/candidate_tracker/15087278518_Salai Agamiya Kamiyan.pdf', NULL, '1', '2023-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exposure in data analysis and sustainability doubts in our roles His Exp is high\n', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-19 09:44:52', 104, '2023-08-19 10:00:59', 0, NULL, 1),
(14174, 'Vignesh Kumar A', '13', '6383689320', '9843696270', 'vigneshk1409@gmail.com', '2001-09-14', 21, '2', '2', 'Ayyappan pillai K', 'Shop keeper', 25000.00, 1, 0.00, 2.50, 'Chennai', 'Ambattur,chennai', '2308190002', '27', '1', 'upload_files/candidate_tracker/51704564113_vignesh kumar resume-1.pdf', NULL, '1', '2023-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'need time to confirm on the TxxampC not much strong in basics if he comes back after learning let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-19 09:46:33', 104, '2023-08-19 10:04:38', 0, NULL, 1),
(14175, 'Manoj M', '13', '9994112536', '9042166362', 'manojnishi7@gmail.com', '2001-07-03', 22, '2', '2', 'Mahalekshmi', 'Home kepper', 20000.00, 1, 0.00, 2.50, 'Kanniyakumari', 'Chennai', '2308190003', '27', '1', 'upload_files/candidate_tracker/44820876556_Manoj_Resume.pdf', NULL, '1', '2023-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-19 09:47:36', 104, '2023-08-19 10:04:22', 0, NULL, 1),
(14176, 'Karan', '13', '7092685286', '', 'Karanvj2001@gmail.com', '2001-12-30', 21, '6', '2', 'Srikanth', 'Om logistics pvt ltd', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2308190004', '', '1', 'upload_files/candidate_tracker/33677441519_resume..pdf', NULL, '1', '2023-08-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-19 10:39:44', 1, '2023-08-19 10:46:04', 0, NULL, 1),
(14177, 'RAGUL DAVID R', '4', '9094386859', '', 'raguldavid46@gmail.com', '2001-05-19', 22, '2', '2', 'RAJA R', 'Salesman', 18000.00, 1, 0.00, 15000.00, 'No. 73,7th St M.R.G nagar,kodungaiyur, Chennai', 'No. 73,7th St M.R.G Nagar,Kodungaiyur, Chennai', '2308190005', '1', '1', 'upload_files/candidate_tracker/75174099749_Raguldavid46.pdf', NULL, '1', '2023-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Much preferred for Non Voice will not sustain his friends got selected in DM roles', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-19 10:53:59', 104, '2023-08-19 04:17:32', 0, NULL, 1),
(14178, 'Vivekanandhan.v', '6', '9176750784', '', 'vishwavicky700@gmail.com', '2004-01-28', 19, '2', '2', 'Vishwanathan', 'Blue Star AC supervisor', 30000.00, 2, 0.00, 15000.00, 'Old 9new 5 2nd Street ,Thiruvallur nagar,Korukupet', 'Old 9new 5 2nd Street ,Thiruvallur Nagar,Korukupet', '2308190006', '1', '1', 'upload_files/candidate_tracker/75768931731_pdf_20230803_100857_0000.pdf', NULL, '1', '2023-08-19', 0, '', '3', '59', '2023-08-21', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Charles tEam Staff Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-19 10:54:13', 104, '2023-09-04 06:18:55', 0, NULL, 1),
(14179, 'Yuvani Monisha M', '11', '7397135700', '7305759967', 'maryyuvi8@gmail.com', '2001-08-14', 22, '6', '2', 'Mariya louis and Mary', 'Student', 25000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2308190007', '', '1', 'upload_files/candidate_tracker/74197694408_SIST_MBA_42410482_YUVANI-MONISHA-1-2 (1).pdf', NULL, '1', '2023-08-19', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'HR Intern Exp Stipend pay one year class to go', '6', '1', '0', '1', '8', '0', '2', '2023-08-22', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-19 11:57:29', 1, '2023-08-19 12:13:18', 0, NULL, 1),
(14180, 'Sakthi S', '6', '7373678459', '8608664509', 'sakthirj24@gmail.com', '2000-11-24', 22, '2', '2', 'Rajeshwari S', 'House wife', 10000.00, 1, 13500.00, 18000.00, 'No 6, pudhu nagar A block, vyasarpadi', 'No 6, pudhu nagar A block, vyasarpadi', '2308190008', '1', '2', 'upload_files/candidate_tracker/68741436001_Resume(1).pdf', NULL, '1', '2023-08-19', 0, '', '3', '59', '2023-08-21', 204000.00, '', '5', '1970-01-01', '2', 'Selected for Charles Team Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-19 12:02:49', 60, '2023-08-19 05:51:47', 0, NULL, 1),
(14181, 'A G Padmanabhan', '4', '9790744458', '9840481448', 'padmanabhan030590@gmail.com', '1990-05-03', 33, '2', '2', 'R Gopu', 'Insurance advisor', 15000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2308190009', '27', '2', 'upload_files/candidate_tracker/96900300982_Padhu_IT Resume - 13.09.21.docx', NULL, '1', '2023-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good age 33yrs Pressure handling doubts will not sustain', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-19 12:25:18', 104, '2023-08-19 04:16:29', 0, NULL, 1),
(14182, 'Spandhana.A', '4', '6385136802', '', 'sandeepspandhana@gmail.com', '2002-06-08', 21, '2', '2', 'K.Aseervadham', 'Coolie', 15000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai ,old washermenpet', '2308190010', '27', '1', 'upload_files/candidate_tracker/33699373185_CV_2023032510053245.pdf', NULL, '1', '2023-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for target based job', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-19 12:35:24', 104, '2023-08-19 04:15:14', 0, NULL, 1),
(14183, 'M. Raheema', '13', '9384491395', '9443482619', 'rraheema999@gmail.com', '2001-10-18', 21, '3', '2', 'M. Mohammed magthum', 'Business', 20000.00, 3, 0.00, 25000.00, '127,Harihara Vinayagar kovil street, Tenkasi', 'Urapakkam', '2308190011', '', '1', 'upload_files/candidate_tracker/86209084445_Resume.pdf', NULL, '1', '2023-08-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-19 12:54:55', 1, '2023-08-19 01:02:44', 0, NULL, 1),
(14184, 'S.Aafiya Nowreen', '13', '9488829194', '', 'aafiyaszj@gmail.com', '2001-05-18', 22, '6', '2', 'Shamshuddin', 'Unemploy', 20000.00, 2, 0.00, 25000.00, '2/77, Hasanallipet street, dharnampet, gudiyattam', 'Urappakkam', '2308190012', '', '1', 'upload_files/candidate_tracker/74258667607_Aafiya New Resume111.pdf', NULL, '1', '2023-08-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-19 12:55:09', 1, '2023-08-19 01:07:17', 0, NULL, 1),
(14185, 'S Mohamed Ramalan', '13', '8438904298', '9150803747', 'ms5909171@gmail.com', '2001-12-03', 21, '6', '2', 'Seeni Ibrahim', 'Office boy', 30000.00, 2, 0.00, 20000.00, 'Ramanathapuram', 'Crompet', '2308190013', '', '1', 'upload_files/candidate_tracker/97482340288_MOHAMED RAMALAN2 CV.pdf', NULL, '1', '2023-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-19 01:09:45', 104, '2023-08-19 04:13:16', 0, NULL, 1),
(14186, 'Manoj n', '4', '9677080183', '8825992459', 'Manoj20011701@gmail.com', '2001-01-17', 22, '2', '2', 'Narayanan', 'Massage man', 18000.00, 1, 0.00, 15000.00, 'Ashok nagar', 'Ashok nagar', '2308190014', '1', '1', 'upload_files/candidate_tracker/20284252807_manoj.pdf.pdf', NULL, '1', '2023-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Mentioned Exp having attitude too scheduled him for the 2nd level but left without attending', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-19 01:20:43', 108, '2023-08-21 04:17:40', 0, NULL, 1),
(14187, 'Surya.k', '13', '8667082707', '', 'surya981103@gmail.com', '1998-11-03', 24, '6', '2', 'Kumar.t', 'Business', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2308190015', '', '1', 'upload_files/candidate_tracker/58240897521_surya resume 1 (1).docx', NULL, '1', '2023-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'too long Distance will not sustain and not suitabe', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-19 02:16:16', 104, '2023-08-19 04:12:01', 0, NULL, 1),
(14188, 'KOTHAKOTA CHAITANYABALA GANGADHAR', '13', '9966990987', '7730094152', 'kcbgangadhar@gmail.com', '1999-06-26', 24, '6', '2', 'KOTHAKOTA PRASADU', 'B.Tech Mechanical Engineering', 15000.00, 1, 0.00, 350000.00, 'Chennai', 'Ganapavaram', '2308190016', '', '1', 'upload_files/candidate_tracker/1112901025_Chaitanya Kothakota CV PFSD .pdf', NULL, '1', '2023-08-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-19 02:29:13', 1, '2023-08-19 02:35:21', 0, NULL, 1),
(14189, 'Joshua M', '6', '6374480257', '', 'catcherd0311@gmail.com', '1999-11-03', 23, '2', '2', 'Susheela', 'Maid', 25000.00, 0, 15000.00, 17000.00, '58 ranganathapuram thiruvanmiyur chennai 41', 'Thiruvanmiyur', '2308190017', '1', '2', 'upload_files/candidate_tracker/23731149523_Resume_07_07_2023_05_34_53_PM.pdf', NULL, '1', '2023-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Moved for 2nd level with Kannan,but left without attending the interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-19 02:41:55', 85, '2023-08-22 10:23:11', 0, NULL, 1),
(14190, '', '0', '8754012441', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308190018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-19 04:24:48', 0, NULL, 0, NULL, 1),
(14191, 'Sandhiya.S', '5', '8072002850', '7094325968', 'Sandhiyasugumaran3@gmail.com', '1998-01-27', 25, '2', '2', 'K.Sugumaran', 'Driver', 38000.00, 2, 18000.00, 20000.00, 'Uthiramerur', 'Uthitamerur', '2308190019', '1', '2', 'upload_files/candidate_tracker/74254933880_Sandhiya S. resume New.pdf', NULL, '1', '2023-08-21', 0, '', '4', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile have Calling Exp but in native open to relocate can give a try kindly check and let me know your inputs sir check for shanmugam sir as he is not available', '5', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-19 04:47:38', 104, '2023-08-22 10:17:43', 0, NULL, 1),
(14192, 'Nirmala chandrasakeran', '16', '7358215174', '', 'nirmalachandrasaker@gmail.com', '1998-11-19', 24, '2', '2', 'Chandrasakeran', 'Auto driver', 15000.00, 1, 17500.00, 20000.00, 'Mugalivakkam', 'Mugalivakkam', '2308190020', '1', '2', 'upload_files/candidate_tracker/42501947003_Nirmala Chandrasaker_Functional Resume – 01.pdf', NULL, '1', '2023-08-21', 15, '', '3', '59', '2023-08-23', 200000.00, '', '', '1970-01-01', '2', 'Selected for Renewals have exp in collections calling and a career Gap she has good in communication.Need to share her exp documents', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-19 07:10:10', 104, '2023-08-21 05:06:42', 0, NULL, 1),
(14193, '', '0', '7548811082', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308190021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-19 07:12:14', 0, NULL, 0, NULL, 1),
(14194, 'Jai Chandru', '16', '9176022172', '', 'jaichandru149@gmail.com', '2002-09-14', 20, '2', '2', 'veera swamy', 'Business', 20000.00, 1, 0.00, 15000.00, 'kodambakkam chennai', 'kodambakkam chennai', '2308190022', '1', '1', 'upload_files/candidate_tracker/48356181080_Documents.pdf', NULL, '1', '2023-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-19 10:12:38', 108, '2023-08-21 04:55:36', 0, NULL, 1),
(14195, 'A. Gayathri', '6', '9940360626', '9176213633', 'gayathiri2803@gmail.com', '2003-03-28', 20, '2', '2', 'Arunagiri. K', 'Cooli', 10000.00, 2, 0.00, 15000.00, 'Kannigapuram', 'Kannigapuram', '2308190023', '1', '1', 'upload_files/candidate_tracker/21378724427_GAYATHRI.doc', NULL, '1', '2023-08-22', 0, '', '3', '59', '2023-08-24', 164400.00, '', '3', '2024-09-30', '2', 'Selected for Gopi Team in Consultant role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-19 10:19:49', 60, '2023-08-24 10:13:43', 0, NULL, 1),
(14196, 'N Surya Prasath', '4', '7358233327', '7338952240', 'suryaprasath364@gmail.com', '1997-05-24', 26, '2', '2', 'Divya Dharshini N', 'Ece', 500000.00, 1, 20000.00, 25000.00, 'Guduvancheri', 'Tambaram', '2308200001', '1', '2', 'upload_files/candidate_tracker/62449029553_Surya New Resume (2).docx', NULL, '1', '2023-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Field Sales Checked for Backend operations but not a quality for that and salary also high for backend', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-20 11:29:24', 108, '2023-08-21 04:55:19', 0, NULL, 1),
(14197, 'N Surya Prasath', '5', '7358263327', '7338952240', 'suryaprasath364@gmail.com', '1997-05-24', 27, '2', '2', 'R Nanda Gopal', 'Government employee', 65000.00, 1, 22000.00, 26000.00, 'No 1 Ambal Nagar Guduvancheri', 'Saidapet', '2308200002', '56', '2', 'upload_files/candidate_tracker/28317878867_SuryaNewResume.docx', NULL, '1', '2024-11-07', 0, '', '3', '59', '2024-11-11', 341000.00, '', '3', '2025-02-27', '1', 'Communication Ok have exp in sales calling give a try and check in training period', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55735', '55557', '2024-11-11', 1, '2023-08-20 11:37:23', 60, '2024-11-09 05:09:05', 0, NULL, 1),
(14198, 'Mohamed buhari', '7', '7094976623', '8122760667', 'messibuharimnb786@gmail.com', '2002-10-26', 20, '2', '2', 'Syed ibrahim', 'Student', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Triplicane chennai', '2308200003', '1', '1', 'upload_files/candidate_tracker/33588094382_Resume_06_08_2023_06_13_58_PM.pdf', NULL, '1', '2023-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Checked for Mutual Fund Final Round with Sarath and based on his input got rejected', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-20 07:13:25', 104, '2023-08-22 10:18:09', 0, NULL, 1),
(14199, 'azeem mohamed noordeen', '5', '7358597591', '', 'azuto1999@gmail.com', '1999-12-29', 23, '2', '1', 'raahalya roshini', 'employee', 30000.00, 1, 30000.00, 40000.00, 'chennai', 'chennai', '2308200004', '1', '2', 'upload_files/candidate_tracker/26840767843_Resume.docx', NULL, '1', '2023-08-21', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude Candidate Too long Distance having lot of personal issue will not focus in the work and also sustainability doubts asked him to come for 2nnd round post lunch but he left', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-20 10:01:21', 108, '2023-08-21 11:44:23', 0, NULL, 1),
(14200, 'HARIHARAN p', '6', '7373460627', '8489343697', 'hariharan15hr@gmail.com', '2000-11-15', 22, '2', '2', 'Lakshmi p', 'Farming', 40000.00, 2, 0.00, 15000.00, '265, thirumanavayal, devakottai,Sivaganga 600 302', '269, sarangabani street, shollinganallur chennai', '2308210001', '1', '1', 'upload_files/candidate_tracker/62246444325_HARI HARAN (1).pdf', NULL, '1', '2023-08-21', 0, '', '3', '59', '2023-08-23', 195000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team in Staff Role', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-21 09:30:58', 60, '2023-08-23 09:59:06', 0, NULL, 1),
(14201, 'Abinaya', '6', '8870143341', '', 'Abinayasri098@gmail.com', '1995-01-12', 28, '1', '2', 'VISWANATHAN M', 'Business', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Uthangarai', '2308210002', '', '1', 'upload_files/candidate_tracker/48010701316_ABINAYA RESUME.pdf', NULL, '1', '2023-08-21', 0, 'SR00593', '5', '86', NULL, 0.00, '', '0', NULL, '1', 'Not Satisfied', '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-21 10:01:13', 1, '2023-08-21 10:34:07', 0, NULL, 1),
(14202, 'N Surya Prasath', '4', '7358563327', '7338952240', 'suryaprasath364@gmail.com', '1997-05-24', 26, '6', '2', 'R Nanda Gopal', 'MTC Supervisor', 50000.00, 1, 20000.00, 250000.00, 'No 1 ambal Nagar mahalakshmi nagar guduvancheri', 'No 1 ambal Nagar mahalakshmi nagar guduvancheri', '2308210003', '', '2', 'upload_files/candidate_tracker/80446111021_Surya New Resume (2).docx', NULL, '1', '2023-08-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-21 10:40:28', 1, '2023-08-21 11:04:07', 0, NULL, 1),
(14203, 's.pooja', '16', '8428572612', '9710880628', 'poojaselvam126@gmail.com', '2003-02-26', 20, '2', '2', 's.Meenakshi', 'home make', 18000.00, 1, 0.00, 15000.00, 'urappakkam', 'Urappakkam', '2308210004', '1', '1', 'upload_files/candidate_tracker/71501005661_Document 122242 pm_065ef0 7.pdf', NULL, '1', '2023-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left Without Attending', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-21 10:57:43', 108, '2023-08-21 04:55:50', 0, NULL, 1),
(14204, 'S.praveena', '5', '7358508626', '', 'evanjalinemargreat@gmail.com', '1998-10-24', 24, '2', '2', 'S.anbu ( mother)', 'Nil', 15000.00, 0, 14500.00, 15000.00, 'Chennai', 'Avadi, Chennai', '2308210005', '1', '2', 'upload_files/candidate_tracker/72118997786_S. Praveena-3.pdf', NULL, '1', '2023-08-22', 0, '', '3', '59', '2023-08-24', 192000.00, '', '5', '1970-01-01', '2', 'Selected for GK Sir Team\nin consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-21 11:23:53', 60, '2023-08-24 10:03:43', 0, NULL, 1),
(14205, 'SIVASANKARAN', '13', '6385442400', '', 'Siva.sankaran.0110@gmail.com', '2002-01-26', 21, '2', '2', 'Ramu', 'Car driver', 8000.00, 1, 0.00, 16000.00, '36-rajapalayam street,Pattukkottai 614-601', 'Perungalathur', '2308210006', '27', '1', 'upload_files/candidate_tracker/13112108321_SIVASANKARAN_RESUME.pdf', NULL, '1', '2023-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much confort in TxxampC Need to learn a lot if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-21 11:25:27', 104, '2023-08-21 05:00:56', 0, NULL, 1),
(14206, 'Harishankar S', '4', '7200179149', '8056073155', 'gomshari637@gmail.com', '2001-01-09', 22, '2', '2', 'S.Sundaram', 'Retired', 15650.00, 1, 0.00, 27850.00, 'Chennai', 'Chennai', '2308210007', '1', '1', 'upload_files/candidate_tracker/53868712263_Resume_2023_02_28_090535__1_.pdf', NULL, '1', '2023-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'evry 6 months Job changes will not sustain and will not handle our work pressure', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-21 11:26:32', 108, '2023-08-21 04:56:32', 0, NULL, 1),
(14207, 'Venkita Krishnan.R', '33', '9655117057', '9994620404', 'rvenkitakrishnan1990@gmail.com', '1990-08-08', 33, '2', '2', 'R.Ragunathnan', 'Postman', 10000.00, 1, 20000.00, 25000.00, 'Royalty Hostel Mugrappair I west', 'Mugrappair west', '2308210008', '27', '2', 'upload_files/candidate_tracker/48712059288_ resume.pdf', NULL, '3', '2023-08-21', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain Frequent job changes will not sustain not a good quality profile', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-21 12:01:53', 108, '2023-08-21 01:32:15', 0, NULL, 1),
(14208, 'Manoj N', '4', '9678080183', '8825969939', 'Manoj20011701@gmail.com', '2001-01-17', 22, '2', '2', 'Narayanan B', 'Massage man', 18000.00, 1, 0.00, 15000.00, 'Ashok nagar', 'Ashok nagar', '2308210009', '1', '1', 'upload_files/candidate_tracker/92965391303_manoj.pdf.pdf', NULL, '1', '2023-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Duplicate Profile', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-21 12:19:19', 104, '2023-08-22 10:22:13', 0, NULL, 1),
(14209, 'VIJAYAKUMARI j', '6', '9444213486', '7449051598', 'vijayakumari3108@gmail.com', '2002-08-31', 20, '2', '2', 'Jeevarathinam', 'Auto driver', 9000.00, 2, 16000.00, 20000.00, 'Ambattur', 'Shanmugapuram', '2308210010', '1', '2', 'upload_files/candidate_tracker/91707957306_VIJI new.pdf', NULL, '1', '2023-08-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-21 03:26:39', 101, '2023-08-22 05:56:33', 0, NULL, 1),
(14210, '', '0', '6369401617', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308210011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-21 04:03:37', 0, NULL, 0, NULL, 1),
(14211, 'Barani', '4', '6382391410', '', 'barani1892899@gmail.com', '2000-11-28', 22, '6', '2', 'Sujatha', 'Daily wages', 10000.00, 0, 0.00, 15000.00, 'Walajabad', 'Vandalur', '2308210012', '', '1', 'upload_files/candidate_tracker/68893282151_RESUME barani 2.docx', NULL, '1', '2023-08-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-21 04:10:07', 1, '2023-08-21 04:13:25', 0, NULL, 1),
(14212, 'Sridhar', '5', '6369401671', '', 'Adamsrithar007@gmail.com', '1992-05-16', 31, '2', '2', 'Sivakami', '15000', 20000.00, 1, 22000.00, 30000.00, 'T nagar', 'T nagar', '2308210013', '1', '2', 'upload_files/candidate_tracker/88795262820_sridhar.pdf.pdf', NULL, '1', '2023-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude candidate mentioned exp relevant to us but no documents and the information what he give is not getting matched with the resume seems to be fake not suitable for our process and will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-21 04:13:33', 108, '2023-08-21 04:29:50', 0, NULL, 1),
(14213, 'Dinesh P', '31', '8681020094', '', 'dineshdheena182001@gmail.com', '2001-01-18', 22, '2', '2', 'Panneerselvam.ss', 'Power Loom', 15000.00, 0, 15000.00, 20000.00, 'Perungudi , chennai', 'Perungudi , Chennai', '2308210014', '27', '2', 'upload_files/candidate_tracker/445579881_Dinesh P CV.pdf', NULL, '1', '2023-08-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For TxxampC No Basic Skills\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-21 05:04:03', 104, '2023-08-22 04:12:29', 0, NULL, 1),
(14214, 'R. Swetha', '16', '7092869864', '', 'rameshswetha955@gmail.com', '2001-10-27', 0, '2', '2', 'Ramesh', 'Furniture maker', 10000.00, 1, 12000.00, 20000.00, 'Thondayarpet', 'Thondayarpet', '2308210015', '1', '2', 'upload_files/candidate_tracker/21935183367_Resume swe.docx', NULL, '1', '2023-08-22', 15, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Selected for Operations team  for 1.8LPA', '3', '2', '0', '1', '8', '0', '2', '2023-09-09', '1', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2023-08-21 07:04:32', 1, '2023-08-21 08:39:51', 0, NULL, 1),
(14215, 'vasikaran', '5', '8124081188', '', 'maarivasi@gmail.com', '2002-07-06', 21, '2', '2', 'sekar', 'auto driver', 30000.00, 1, 14500.00, 16000.00, 'adambakkam', 'Adambakkam', '2308210016', '1', '2', 'upload_files/candidate_tracker/89532865469_Vasikaran.pdf', NULL, '1', '2023-08-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Field Communication no not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1019', '0', NULL, NULL, NULL, 1, '2023-08-21 07:21:18', 1, '2023-08-22 01:00:08', 0, NULL, 1),
(14216, 'Premkumar R', '23', '6369854481', '8270328876', 'premerp1604@gmail.com', '1999-04-16', 24, '3', '2', 'Ramasamy m', 'Cooly', 20000.00, 0, 0.00, 200000.00, 'Virudhunagar', 'Sholinganallur', '2308210017', '', '1', 'upload_files/candidate_tracker/21181835885_Premkumar_R_Resume-1.pdf', NULL, '1', '2023-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-21 07:52:47', 1, '2023-08-21 08:06:53', 0, NULL, 1),
(14217, 'Haritha k', '5', '7845604055', '9884282670', 'harithakennady@gmail.com', '2001-02-06', 22, '2', '2', 'Kennady', 'Driver', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2308210018', '1', '1', 'upload_files/candidate_tracker/60119101181_Untitled design.pdf', NULL, '1', '2023-08-22', 0, '', '3', '59', '2023-08-24', 192000.00, '', '', '1970-01-01', '2', 'Selected for Shanmugam Team in ConsultantRole', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-21 08:57:33', 108, '2023-08-22 11:51:08', 0, NULL, 1),
(14218, 'gokulraj r', '23', '9597456268', '', 'gokul.ranjithkumar@gmail.com', '2001-07-20', 22, '2', '2', 'rajendran p', 'daily wages', 35000.00, 1, 16000.00, 21000.00, 'Erode', 'chennai', '2308210019', '27', '2', 'upload_files/candidate_tracker/18963386110_Resume A.pdf', NULL, '1', '2023-08-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for TxxampC no basic skills\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-21 09:33:10', 104, '2023-08-22 04:12:12', 0, NULL, 1),
(14219, 'Abishek', '5', '8056882566', '', 'abishekc937@gmail.com', '2001-08-29', 21, '2', '2', 'Chandrashekhar', 'Worker', 100000.00, 1, 0.00, 19000.00, 'Chennai', 'Chennai', '2308220001', '1', '1', 'upload_files/candidate_tracker/95094932997_download.pdf', NULL, '1', '2023-08-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain not suitable up and down 40kms', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-22 07:02:27', 101, '2023-08-22 05:57:03', 0, NULL, 1),
(14220, 'Pavithra. S', '6', '6369209479', '', 'Pavishanmugam13@gmail.com', '1999-02-13', 24, '2', '2', 'Shanmugam', 'Farmer', 20000.00, 1, 14000.00, 16000.00, 'No. 55,Bajanai kovil street, thiruvallur', 'No. 55,Bajanai kovil street, thiruvallur', '2308220002', '1', '2', 'upload_files/candidate_tracker/19035603760_pavi resume.pdf', NULL, '1', '2023-08-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance will not sustain\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-22 08:06:44', 104, '2023-08-22 04:09:38', 0, NULL, 1),
(14221, 'M.s.nandhakumar', '6', '9344486840', '7339416179', 'msnaresh947@gmail.com', '2002-04-01', 21, '2', '2', 'Parent', 'House keeping', 1.50, 0, 0.00, 13000.00, 'West mambalam , Chennai', 'West mambalam, Chennai', '2308220003', '1', '1', 'upload_files/candidate_tracker/37588418126_0_barath resume2.pdf', NULL, '1', '2023-08-22', 0, '', '3', '59', '2023-08-28', 195000.00, '', '5', '1970-01-01', '2', 'SElected for Kannan Team Stff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-22 10:10:42', 60, '2023-08-28 10:02:04', 0, NULL, 1),
(14222, 'Vaishali.D', '5', '7358295041', '9841793642', 'dvaishali0406@gmail.com', '1997-06-04', 26, '2', '2', 'N.dhamodharan', 'The Zigma Technologies', 50000.00, 2, 18000.00, 23000.00, 'Chennai', 'Chennai', '2308220004', '1', '2', 'upload_files/candidate_tracker/76324221698_vaishalai.pdf', NULL, '1', '2023-08-22', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-22 10:34:08', 108, '2023-08-22 11:29:37', 0, NULL, 1),
(14223, 'Manimegalai. M', '20', '9150993604', '', 'm.jeni102002@gmail.com', '2002-02-10', 21, '1', '2', 'Muralai. T. V', 'Cooli', 10.00, 3, 0.00, 13000.00, 'No:22, Rajashanmugam nagar 9th street', 'Thiruvettriyur', '2308220005', '', '1', 'upload_files/candidate_tracker/88866696587_my resume.pdf', NULL, '1', '2023-08-22', 0, '77795', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will Not Sustain And Not Suitable For Our Roles', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-22 10:38:47', 1, '2023-08-22 10:51:12', 0, NULL, 1),
(14224, 'S.jayashree', '20', '9150731510', '', 'jayashreejayashree7156@gmail.com', '2002-02-10', 21, '1', '2', 'N.srinivasan', 'Cooli', 7000.00, 1, 0.00, 12000.00, '565jj nager E cross street korukupet Chennai 21', '565jj nager e cross street korukupet Chennai 21', '2308220006', '', '1', 'upload_files/candidate_tracker/67077027222_jaya resume.docx', NULL, '1', '2023-08-22', 0, 'P1418', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain and not suitable for our roles', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-22 10:38:52', 1, '2023-08-22 10:51:10', 0, NULL, 1),
(14225, 'HEMALATHA. S', '6', '9176213633', '9940360626', 'hemalatha06367@gmail.com', '2002-07-12', 21, '2', '2', 'SRINIVASAN K', 'COOLI', 10000.00, 1, 0.00, 18000.00, 'Perambur', 'Perambur', '2308220007', '1', '1', 'upload_files/candidate_tracker/34513230585_CV_2023081712401354.pdf', NULL, '1', '2023-08-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-22 11:11:37', 104, '2023-08-22 11:34:21', 0, NULL, 1),
(14226, 'Nandhakumar', '33', '8925046995', '8825565820', 'nnandhakumar391@gmail.com', '2001-08-26', 21, '2', '2', 'Iyyanar', 'Farmer', 1.50, 2, 0.00, 2.00, 'Puzhuthivakkam', 'Puzhuthivakkam', '2308220008', '1', '1', 'upload_files/candidate_tracker/49267114979_ Nandhakumar _1683790215849.pdf', NULL, '1', '2023-08-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice process ', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-22 11:27:59', 101, '2023-08-22 12:10:35', 0, NULL, 1),
(14227, '', '0', '7358726718', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308220009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-22 11:29:35', 0, NULL, 0, NULL, 1),
(14228, 'Sneha kannan', '5', '9150441797', '9940249738', 'snehakannan1301@gmail.com', '2001-03-01', 22, '2', '2', 'Kannan', 'Security guard', 18000.00, 1, 22000.00, 40000.00, '45A,1 St crss street,sastri Nagar,vyasarpadi,ch-39', 'No 501 14 th east cross street ,m.k.b nagar ch 39', '2308220010', '1', '2', 'upload_files/candidate_tracker/19362478346_SNEHA K (Resume) (1) (1).pdf', NULL, '1', '2023-08-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very High CTC Holding Several offers will not sustain in our roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-22 11:29:38', 108, '2023-08-23 03:49:23', 0, NULL, 1),
(14229, 'Keerthana', '5', '7358250615', '6379783944', 'keerthanavijalakshmi52@gmail.com', '1998-05-25', 25, '2', '2', 'Krishnaraj', 'Late', 15000.00, 1, 17000.00, 19000.00, 'Chennai', 'Chennai', '2308220011', '1', '2', 'upload_files/candidate_tracker/44833399907_keerthanavijayalakshmi.docx', NULL, '1', '2023-08-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-22 11:51:31', 101, '2023-08-22 05:58:10', 0, NULL, 1),
(14230, 'K manjula', '5', '8680939005', '', 'manjuindira225@gmail.com', '1999-05-22', 24, '2', '2', 'M partha sarathy', 'Risk analysis', 20000.00, 1, 13500.00, 18000.00, 'Chennai', 'Chennai', '2308220012', '1', '2', 'upload_files/candidate_tracker/72019547186_Manjula resume.pdf', NULL, '1', '2023-08-22', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking For Non Voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-22 11:56:18', 101, '2023-08-22 05:57:46', 0, NULL, 1),
(14231, 'Esakki raja A vishal M', '2', '9751552005', '', 'esakkirajavishal@gmail.com', '2002-04-01', 21, '2', '2', 'manthiram', 'former', 80000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2308220013', '27', '1', 'upload_files/candidate_tracker/47520233390_Vishal resume....viii...pdf', NULL, '1', '2023-08-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For TxxampC No Basic Skills\n', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-22 12:07:52', 104, '2023-08-22 04:11:51', 0, NULL, 1),
(14232, '', '0', '9150929922', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308220014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-22 12:10:44', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14233, 'Manisha D', '5', '9150919922', '6380582238', 'manishaa2131@gmail.com', '2003-10-21', 19, '2', '2', 'Dharuman', 'Working in a crusher', 20000.00, 1, 0.00, 17000.00, 'Tambaram', 'Tambaram', '2308220015', '1', '1', 'upload_files/candidate_tracker/78267278633_Manisha CV.docx', NULL, '1', '2023-08-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much preferred to work in target will not sustain and handle our work pressure ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-22 12:12:24', 108, '2023-08-23 03:50:08', 0, NULL, 1),
(14234, 'Manikandan', '6', '9150607929', '7338982646', 'manikandan30092001@gmail.com', '2001-09-30', 21, '2', '2', 'Helen', 'Weaving', 3000.00, 0, 0.00, 15000.00, 'Elaiyur', 'Tambaram', '2308220016', '1', '1', 'upload_files/candidate_tracker/46082854481_Manikandan.pdf', NULL, '1', '2023-08-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking For Non Voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-22 12:24:24', 101, '2023-08-22 05:57:23', 0, NULL, 1),
(14235, 'Sathishkumar R', '4', '6369589696', '9626510849', 'sathishkumarganthi@gmail.com', '2001-09-06', 21, '2', '2', 'Rajendiran', 'Driver', 30000.00, 3, 0.00, 2.50, 'Karur', 'Chennai', '2308220017', '1', '1', 'upload_files/candidate_tracker/55360867665_SATHISHKUMAR R RESUME (1) (1) (1) (1) (2) (1).pdf', NULL, '1', '2023-08-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-22 12:46:36', 85, '2023-08-23 10:26:27', 0, NULL, 1),
(14236, '', '0', '8124638306', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308220018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-22 06:53:35', 0, NULL, 0, NULL, 1),
(14237, 'Navin Kumar', '5', '8220963039', '9865358906', 'navin_k1@icloud.com', '1998-11-19', 24, '2', '2', 'revathi.k', 'I am curious in it', 25000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2308220019', '1', '1', 'upload_files/candidate_tracker/1450338021_NAVIN KUMAR 2 Compressed.pdf', NULL, '1', '2023-08-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our roles will not handle our work roles not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-22 07:26:41', 108, '2023-08-23 03:40:52', 0, NULL, 1),
(14238, 'Anushya kumar', '5', '7708411731', '7358908530', 'anushyakumar1316@gmail.com', '2001-11-16', 21, '2', '2', 'Navaneetham', 'Working', 15000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Valluvar kottam', '2308230001', '1', '1', 'upload_files/candidate_tracker/29722207253_Aushiya(3).pdf', NULL, '1', '2023-08-23', 0, '', '3', '59', '2023-08-28', 186000.00, '', '6', '2023-12-07', '2', 'Selected for Syed Team Consultant tole', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-23 09:39:30', 60, '2023-08-28 10:03:24', 0, NULL, 1),
(14239, 'saranya', '5', '9159650119', '', 'saranyatrilochan@gmail.com', '1995-05-04', 28, '1', '1', 'suresh', 'auto cadd engineer', 30000.00, 3, 15000.00, 17000.00, 'trichy', 'chennai', '2308230002', '', '2', 'upload_files/candidate_tracker/65997375997_Saranya Resume.pdf', NULL, '1', '2023-08-23', 0, 'ca156', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking only for AR caller based profiles', '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-23 11:11:12', 1, '2023-08-23 12:02:22', 0, NULL, 1),
(14240, 'Kaviya s', '6', '6369878833', '', 'Kaviyashanmugam2023@gmail.com', '2002-05-14', 21, '1', '2', 'Shanmugam', 'Farmer', 10000.00, 2, 18000.00, 20000.00, 'Kallakurichi', 'Kk Nagar', '2308230003', '', '2', 'upload_files/candidate_tracker/42468952874_KAVIYA.pdf', NULL, '1', '2023-08-23', 0, 'CA156', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice only not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-23 11:14:30', 1, '2023-08-23 11:59:49', 0, NULL, 1),
(14241, 'Reethi. P', '5', '9087083282', '9092795429', 'reethiponnusamy232912@gmail.com', '2000-01-23', 23, '2', '2', 'Ponnusamy. K', 'Painter', 20000.00, 1, 18000.00, 18000.00, '1/245 othavadai street Kolapakkam Chennai 128', '1/245 othavadai street Kolapakkam Chennai 128', '2308230004', '27', '2', 'upload_files/candidate_tracker/5002045167_Reethi Resume-2.pdf', NULL, '1', '2023-08-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Sales much will not sustain not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-23 11:19:17', 108, '2023-08-23 03:52:27', 0, NULL, 1),
(14242, 'Mariyarebakka', '13', '8056755818', '8220191378', 'mariyarebakka1625@gmail.com', '2002-09-16', 20, '2', '2', 'SamuelRathinadurai', 'Farmer', 20000.00, 5, 0.00, 18000.00, 'Chengalpattu', 'Chengalpattu', '2308230005', '27', '1', 'upload_files/candidate_tracker/16410552499_MARIYA REBAKKA.S.pdf', NULL, '1', '2023-08-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open For TxxampC If He Come Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-23 11:28:29', 1, '2023-08-23 11:48:57', 0, NULL, 1),
(14243, 'saifudeen', '23', '8122596797', '', 'saifdin1100@gmail.com', '1997-03-31', 26, '2', '2', 'sirajudeen', 'business', 25000.00, 6, 0.00, 15000.00, 'thanjavur', 'chennai', '2308230006', '27', '1', 'upload_files/candidate_tracker/71265956785_Cv from Saif (1).docx', NULL, '1', '2023-08-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC If He Come Back After Learning Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-23 11:29:00', 1, '2023-08-23 12:43:11', 0, NULL, 1),
(14244, 'Saraswathy Swaminathan.S', '13', '9345779703', '', 'samiswaminathan23@gmail.com', '1998-10-23', 24, '6', '2', 'Santhi.S', 'Sweeper', 10000.00, 1, 0.00, 18000.00, 'Puducherry', 'Puducherry', '2308230007', '', '1', 'upload_files/candidate_tracker/10121368817_Saraswathy.pdf', NULL, '1', '2023-08-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC If He Come Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-23 11:54:25', 1, '2023-08-23 12:04:58', 0, NULL, 1),
(14245, 'L.Snegapriya', '4', '9360496967', '9940587377', 'iamsnega123@gmail.com', '2000-12-07', 22, '3', '2', 'Parent', 'Cooli', 30000.00, 2, 0.00, 12000.00, 'Chrompet', 'Chrompet', '2308230008', '', '1', 'upload_files/candidate_tracker/12765047208_Snega resume.docx', NULL, '1', '2023-08-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For Sales Much Will Not Sustain Not Suitable', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-23 11:56:01', 1, '2023-08-23 12:01:36', 0, NULL, 1),
(14246, 'ANJALI S', '6', '6374963255', '9444176730', 'anjalishanmugam2002@gmail.com', '2002-05-14', 21, '1', '2', 'Shanmugam', 'Farmer', 10000.00, 2, 0.00, 20000.00, 'Kallakurichi', 'Kk Nagar chennai', '2308230009', '', '2', 'upload_files/candidate_tracker/86859456433_ANJALI.pdf', NULL, '1', '2023-08-23', 0, 'CA156', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Non Voice Only Not Suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-23 11:57:02', 1, '2023-08-23 12:01:01', 0, NULL, 1),
(14247, 'Hareesh Hamed', '23', '9360159969', '', 'hareeshhamed5@gmail.com', '2001-12-22', 21, '2', '2', 'nathar basha', 'business', 30000.00, 0, 0.00, 25000.00, 'pondicherry', 'puducherry', '2308230010', '27', '1', 'upload_files/candidate_tracker/44839954656_it Resume.pdf', NULL, '1', '2023-08-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC If He Come Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-23 12:45:54', 1, '2023-08-23 12:57:02', 0, NULL, 1),
(14248, 'Thirukumaran r', '23', '9025808984', '', 'thiruramesh31@gmail.com', '2002-05-31', 21, '2', '2', 'ramesh', 'business', 30000.00, 1, 0.00, 25000.00, 'villupuram', 'villupuram', '2308230011', '27', '1', 'upload_files/candidate_tracker/26219600461_THIRUKUMARAN.pdf', NULL, '1', '2023-08-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC If He Come Back After Learning Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-23 12:46:00', 1, '2023-08-23 12:52:39', 0, NULL, 1),
(14249, 'Vigneshwaran J', '5', '9840734214', '8220070313', 'helen.ijobs27@gmail.com', '1993-01-01', 30, '3', '1', 'Sharmila', 'HR', 35000.00, 1, 25000.00, 35000.00, 'Kolathur', 'Kolathur', '2308230012', '', '2', 'upload_files/candidate_tracker/81176537003_DocScanner Aug 23, 2023 12-55 PM.pdf', NULL, '1', '2023-08-23', 0, '', '3', '59', '2023-09-05', 405696.00, '', '5', '1970-01-01', '1', 'Selected for Staff Role Santhosh Team', '5', '2', '4', '1', '8', '1', '2', '1970-01-01', '2', '3', 'vickyexplod@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2023-08-23 01:02:01', 60, '2023-09-05 10:02:58', 0, NULL, 1),
(14250, 'Zakir Hussain', '6', '9710582003', '9360705005', 'zakirhussainbcom069@gmail.com', '2003-03-02', 20, '2', '2', 'Allah bakesh', 'Auto driver', 14000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2308230013', '1', '1', 'upload_files/candidate_tracker/42837460038_zakir hussain.doc', NULL, '1', '2023-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles will not sustain and handle our pressure', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-23 01:02:13', 104, '2023-08-24 03:44:47', 0, NULL, 1),
(14251, 'Farzana', '5', '7338768798', '9962248035', 'farzana13122002@gmail.com', '2002-12-13', 20, '2', '2', 'Nisar ahamed', 'Coolie', 10000.00, 1, 0.00, 15000.00, 'Kolathur, Chennai', 'Kolathur, Chennai', '2308230014', '27', '1', 'upload_files/candidate_tracker/70426216194_Farzana resume.pdf', NULL, '1', '2023-08-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For Sales Much Will Not Sustain Not Suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-23 01:06:20', 108, '2023-08-23 03:55:59', 0, NULL, 1),
(14252, 'Janani', '15', '6383246554', '7299692743', 'jananisrinivasan1011@gmail.com', '2002-11-10', 20, '3', '2', 'Manimekalai', 'Coolie', 10000.00, 1, 0.00, 15000.00, 'Perambur Chennai', 'Tvk nagar , perambur, Chennai', '2308230015', '', '1', 'upload_files/candidate_tracker/67114253181_Janani.J.S .pdf', NULL, '1', '2023-08-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC If He Come Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-23 01:07:18', 1, '2023-08-23 01:12:02', 0, NULL, 1),
(14253, 'Ragavan R', '23', '6380073706', '9659878521', 'ramugiram1987@gmail.com', '2002-05-12', 21, '3', '2', 'Ramakrishnan R', 'Farmer', 25000.00, 1, 0.00, 25000.00, 'Dharmapuri', 'Chennai', '2308230016', '', '1', 'upload_files/candidate_tracker/1551638657_1692710973612_RAGAVAN RESUME EDITED.pdf', NULL, '1', '2023-08-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC If He Come Back After Learning Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-23 01:08:24', 1, '2023-08-23 01:13:53', 0, NULL, 1),
(14254, '', '0', '7200432710', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308230017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-23 04:49:59', 0, NULL, 0, NULL, 1),
(14255, 'megavarshini d', '5', '7305316545', '', 'megavarshinid2213@gmail.com', '2003-01-22', 20, '2', '2', 'dhandapani b', 'security', 8500.00, 0, 0.00, 2.50, 'mylapore', 'mylapore', '2308240001', '1', '1', 'upload_files/candidate_tracker/5204742936_DOC-20230624-WA0002. (1).pdf', NULL, '1', '2023-08-24', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Fresher can be trained kindly chekc and let me know your inputs', '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1015', '0', NULL, NULL, NULL, 1, '2023-08-24 09:14:09', 1, '2023-08-24 10:32:40', 0, NULL, 1),
(14256, 'Syed abuthahir.F', '6', '6382818657', '9789968475', 'Syedabu100007@gmail.com', '2002-09-11', 20, '2', '2', 'Furqan ali', 'Business man', 12000.00, 3, 0.00, 25000.00, 'Chennai chrompet', 'Chennai chrompet', '2308240002', '27', '1', 'upload_files/candidate_tracker/73135464759_Syed resume-2.pdf', NULL, '1', '2023-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-24 10:16:05', 104, '2023-08-24 03:32:58', 0, NULL, 1),
(14257, 'Inthiyaz A', '6', '7092058313', '6382818657', 'Afrid5763@gmail.com', '2002-01-21', 21, '2', '2', 'Appose A', 'Driver', 8000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2308240003', '27', '1', 'upload_files/candidate_tracker/28971168522_Inthiyaz resume.pdf', NULL, '1', '2023-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice only\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-24 10:16:27', 104, '2023-08-24 03:43:50', 0, NULL, 1),
(14258, 'ifran rahim', '2', '9626964576', '', 'ratizz007@gmail.com', '2000-03-22', 23, '6', '2', 'mohammed ibrahim', 'sales man', 10000.00, 1, 0.00, 15000.00, 'mannargudi', 'ashok nagar', '2308240004', '', '1', 'upload_files/candidate_tracker/95727286741_null (1).pdf', NULL, '1', '2023-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics not open for TxxampC will not sustain and not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-24 10:38:50', 104, '2023-08-24 03:37:19', 0, NULL, 1),
(14259, 'K .stalin', '6', '9789857253', '8248028762', 'staluv3@gmail.com', '1998-06-24', 25, '2', '2', 'R .kanamuthu', 'Fisherman', 15000.00, 2, 27178.00, 30000.00, 'Paramankeni', 'Pallavaram', '2308240005', '1', '2', 'upload_files/candidate_tracker/25229493760_stalin.docx', NULL, '3', '2023-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much Quality will not  sustain in our role not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-24 12:23:01', 1, '2023-08-24 01:22:30', 0, NULL, 1),
(14260, 'barkath babu', '5', '9043573688', '9047264094', 'babubarkath120@gmail.com', '1997-06-21', 26, '2', '2', 'shakila banu', 'recespenist', 15000.00, 0, 0.00, 18000.00, 'chennai', 'vellore', '2308240006', '1', '1', 'upload_files/candidate_tracker/60201883321_Barkath.pdf', NULL, '1', '2023-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not sustain fresher for our roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-24 12:37:53', 108, '2023-08-24 12:53:48', 0, NULL, 1),
(14261, 'mohamed al riyaz', '5', '9941391913', '', 'theririyaz7@gmail.com', '2002-09-07', 20, '2', '2', 'syed ameen', 'textiles business', 15000.00, 1, 0.00, 18000.00, 'vyasarpadi', 'vyasarpadi', '2308240007', '1', '1', 'upload_files/candidate_tracker/26283753122_RIYAZ RESUME.pdf', NULL, '1', '2023-08-24', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected Due To Pronunsation Issue', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-24 12:46:03', 101, '2023-08-24 02:57:59', 0, NULL, 1),
(14262, 'Sri Ranjani A', '6', '9840433460', '9940360626', 'SRIRANJANI0921@GMAIL.COM', '2002-09-21', 20, '2', '2', 'Anandan', 'Auto driver', 10000.00, 1, 0.00, 15000.00, 'Perambur', 'Spencer plaza', '2308240008', '1', '1', 'upload_files/candidate_tracker/62378634020_CV_2023080623350071.pdf', NULL, '1', '2023-08-24', 0, '', '3', '59', '2023-08-28', 164400.00, '', '5', '1970-01-01', '2', 'Selected for Charles Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-24 12:49:04', 60, '2023-08-28 09:53:35', 0, NULL, 1),
(14263, 'Pragathi A', '6', '8220417299', '9677733479', 'pragathiboo1628@gmail.com', '2001-01-28', 22, '2', '2', 'Boobalan C', 'Farmer', 10000.00, 1, 17000.00, 25000.00, 'Thanjavur', 'Chennai', '2308240009', '1', '2', 'upload_files/candidate_tracker/13025888341_CV_2023081702043529-compressed.pdf', NULL, '1', '2023-08-25', 1, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Worked As A HR Executive Past Few Months ... Ready To Work As Telecaller But Long Run Doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-24 01:48:40', 104, '2023-08-25 04:49:15', 0, NULL, 1),
(14264, 'Kalaiselvi p', '6', '9629401957', '', 'kalaiselvi850cse@gmail.com', '2001-12-02', 21, '2', '2', 'Periyasamy', 'Farmer', 10000.00, 2, 0.00, 10000.00, 'Kallakurichi', 'Chennai(Vadapalani)', '2308240010', '1', '1', 'upload_files/candidate_tracker/41043007531_kalai p.pdf', NULL, '1', '2023-08-25', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Focusing on python developer ...for a time being looking job ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-24 02:02:14', 104, '2023-08-25 04:50:33', 0, NULL, 1),
(14265, 'Madhumitha K', '6', '9790611477', '', 'srimadhum23@gmail.com', '2001-01-23', 22, '2', '2', 'Krishnasamy', 'Daily wages', 10000.00, 2, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2308240011', '1', '1', 'upload_files/candidate_tracker/65323990892_Madhukrish.pdf', NULL, '1', '2023-08-25', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'For a time being looking job in nON-IT... ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-24 02:02:50', 104, '2023-08-25 04:51:23', 0, NULL, 1),
(14266, 'rakshana. c', '6', '7010355720', '8608323060', 'rakshana0923@gmail.com', '1998-09-23', 24, '2', '2', 't.s. chandrasekaran', 'clinic attendee', 20000.00, 1, 0.00, 20000.00, 'coimbatore', 'chennai', '2308240012', '1', '1', 'upload_files/candidate_tracker/89306540174_Rakshana Resume.pdf', NULL, '1', '2023-08-25', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Worked as a HR Executive past few months ... ready to work as telecaller but long run doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-24 03:03:06', 104, '2023-08-25 04:52:23', 0, NULL, 1),
(14267, 'Sandhya S', '6', '8939152612', '', 'sandhya.srinivasan12@gmail.com', '1998-11-26', 24, '2', '2', 'K.Srinivasan', 'Photography', 120000.00, 1, 26200.00, 30000.00, 'ST.thomas Mount', 'ST.Thomas Mount', '2308240013', '1', '2', 'upload_files/candidate_tracker/48420119714_CV_2023030316022256(1) (1).pdf', NULL, '1', '2023-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our roles have exp in non voice night shift and salary exp is min27 and not ready to come down', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-24 03:11:48', 104, '2023-08-24 04:50:05', 0, NULL, 1),
(14268, 'KISHOR', '6', '7904746032', '6382383600', 'kingkishor546@gmail.com', '2000-05-06', 23, '2', '2', 'SELVAM', 'SALES', 40000.00, 0, 18000.00, 20000.00, '20 : SEMATHAMMAN NAGAR 3RD SECTOR KOYAMBEDU', 'CHENNAI 600107', '2308250001', '1', '2', 'upload_files/candidate_tracker/73519696906_KISHORE (1).pdf', NULL, '1', '2023-08-25', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Pronunciation issue also health issue sustain problem', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-25 09:47:08', 104, '2023-08-25 04:57:10', 0, NULL, 1),
(14269, 'Sournamalaya', '6', '7550132028', '6369257682', 'Sournamalaya10@gmail.com', '2000-11-10', 22, '2', '2', 'P.Suresh kumar', 'B.com(general)', 80000.00, 1, 0.00, 20000.00, 'No 4/7 venugopal swamy Kovil Street Perambur ch-11', 'No 20 smoke House Krishna nagar main road ch-82', '2308250002', '1', '1', 'upload_files/candidate_tracker/14081932384_sourna resume.pdf', NULL, '1', '2023-08-25', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Seems like no job need...Not suit for role sustainbility  xxamp pressure handling Doubts..  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-25 10:19:39', 104, '2023-08-25 04:56:35', 0, NULL, 1),
(14270, 'Nithyalakshmi. T', '6', '9962687078', '9962348676', 'lakshmitnithya@gmail.com', '2002-12-04', 20, '2', '2', 'T.A. Thambi Raaj', 'Pest control', 30000.00, 1, 0.00, 15000.00, '17/1 Pachayappan gramani st, Arumbakkam, Chennai', 'Chennai', '2308250003', '1', '1', 'upload_files/candidate_tracker/63062708583_Screenshot_20230825_103748.pdf', NULL, '1', '2023-08-25', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No stability ... sustainbilityxxamp Pressure handling \n doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-25 10:31:37', 104, '2023-08-25 04:56:06', 0, NULL, 1),
(14271, 'V.Pooja', '6', '6374689451', '', 'poojavenkatesan1311@gmail.com', '2002-11-13', 20, '2', '2', 'C.venkatesan', 'Cooli', 75000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2308250004', '1', '1', 'upload_files/candidate_tracker/93849553210_Pooja V Resume.pdf', NULL, '1', '2023-08-25', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'childish behavior... voice too low...', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-25 10:35:53', 104, '2023-08-25 04:54:43', 0, NULL, 1),
(14272, 'Yuvanesh M', '6', '8680023461', '', 'yuvanesh17052003@gmail.com', '2003-05-17', 20, '2', '2', 'R mohan', 'Cooliwork', 13000.00, 0, 0.00, 2.50, 'Pallavaram, chennai', 'Pallavaram, chennai', '2308250005', '1', '1', 'upload_files/candidate_tracker/10631236081_Yuvanesh resume.pdf', NULL, '1', '2023-08-25', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'focusing on IT... For a time being looking for job ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-25 10:47:26', 104, '2023-08-25 04:52:59', 0, NULL, 1),
(14273, 'R.Sathish Kumar', '2', '8825613900', '', 'hackersathish7@gmail.com', '2002-04-12', 21, '6', '2', 'Ravi', 'Agriculture', 20000.00, 1, 0.00, 20000.00, 'karur', 'karur', '2308250006', '', '1', 'upload_files/candidate_tracker/30468584312_Sathishkumar-Resume-1.docx', NULL, '1', '2023-08-25', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Holding offer 33k in non -it... but looking for IT not much good in prog.lau.... will not sustain in our role', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-25 12:04:20', 1, '2023-08-25 12:09:13', 0, NULL, 1),
(14274, 'Pavithra.h', '6', '7358369633', '9789870959', 'Pavithraprakasham123@gmail.com', '2003-02-19', 20, '2', '2', 'Prakasam.k', 'Construction business', 600000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2308250007', '1', '1', 'upload_files/candidate_tracker/85696197859_DOC-20230824-WA0004..pdf', NULL, '1', '2023-08-25', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'commu . good ..... pressure handling doubts...not openUP for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-25 12:07:24', 104, '2023-08-25 04:58:06', 0, NULL, 1),
(14275, 'Rhiyana S', '7', '9790719339', '', 's.rhiyana02@gmail.com', '1999-04-02', 24, '3', '2', 'Shanawaz H', 'Tailor', 25000.00, 1, 16000.00, 22000.00, 'Chennai', 'Chennai', '2308250008', '', '2', 'upload_files/candidate_tracker/25378626242_Rhiyana Resume 09.08.2023 (3).pdf', NULL, '1', '2023-08-25', 15, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not much Knowledege in MF ...', '7', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-25 12:23:50', 1, '2023-08-25 12:28:00', 0, NULL, 1),
(14276, 'Divya G', '7', '6381341876', '', 'divyagnanavel006@gmail.com', '2000-03-06', 23, '3', '2', 'Gnanavel. R', 'PVC operator', 28000.00, 1, 16000.00, 22000.00, 'Chennai', 'Chennai', '2308250009', '', '2', 'upload_files/candidate_tracker/98371409412_Updated Resume 2023.docx', NULL, '1', '2023-08-25', 15, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Frequent job changes xxamp sal expt high', '7', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-25 12:24:15', 1, '2023-08-25 12:33:47', 0, NULL, 1),
(14277, '', '0', '9962147379', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308250010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-25 12:25:07', 0, NULL, 0, NULL, 1),
(14278, 'Pavithra', '32', '7358488254', '8754854121', 'dhanupavi62@gmail.com', '1995-08-08', 28, '1', '2', 'Amudha', 'House wife', 30000.00, 0, 27000.00, 35000.00, 'Thiverkadu', 'Thiruverkadu', '2308250011', '', '2', 'upload_files/candidate_tracker/72499422838_PAVITHRA RAMALINGAM.pdf', NULL, '1', '2023-08-30', 0, '55700', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'Not Fit For Sales', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-25 03:58:33', 1, '2023-08-30 12:38:23', 0, NULL, 1),
(14279, '', '0', '8148752427', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308250012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-25 04:38:06', 0, NULL, 0, NULL, 1),
(14280, '', '0', '9840874401', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308250013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-25 05:59:59', 0, NULL, 0, NULL, 1),
(14281, '', '0', '8667595157', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308250014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-25 07:28:39', 0, NULL, 0, NULL, 1),
(14282, 'SURENDAR KOTHANDAM', '13', '6385853420', '', 'sureandarkothandam66@gmail.com', '2003-04-28', 20, '6', '2', 'KOTHANDAM', 'FARMER', 80000.00, 1, 0.00, 15.00, 'PATTUR(VG), CUDDALORE', 'MMDA, CHENNAI', '2308250015', '', '1', 'upload_files/candidate_tracker/18012795075_SURENDAR - RESUME.pdf', NULL, '1', '2023-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for TxxampC if he come back after learning let us try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-25 10:49:36', 108, '2023-08-26 05:37:53', 0, NULL, 1),
(14283, 'Anith Anith', '3', '6385590619', '', 'anithanish324@gmail.com', '2000-12-13', 22, '1', '2', 'Ranjith', 'ST', 10000.00, 4, 0.00, 18000.00, 'Nachiyarkoil', 'Nachiyarkoil', '2308260001', '', '1', 'upload_files/candidate_tracker/30295658702_Resume.pdf', NULL, '1', '2023-08-29', 0, '7838', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-26 08:52:34', 1, '2023-08-26 08:56:08', 0, NULL, 1),
(14284, '', '0', '9003272189', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308260002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-26 09:10:48', 0, NULL, 0, NULL, 1),
(14285, 'Sathish kumar', '14', '9087090080', '', 'Sk2121849@gmail.com', '1998-01-12', 25, '6', '2', 'Venkatesan g', 'Plumber', 150000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2308260003', '', '1', 'upload_files/candidate_tracker/88012383987_Sathishkumar V.docx', NULL, '1', '2023-08-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC If He Come Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-26 10:04:21', 1, '2023-08-26 10:07:33', 0, NULL, 1),
(14286, 'Velmurugan K', '13', '7358165919', '', 'vel82301@gmail.com', '1994-11-03', 28, '6', '2', 'Krishnan V', 'Mechanic', 30000.00, 1, 0.00, 18000.00, 'Thoothukudi', 'Velachery', '2308260004', '', '1', 'upload_files/candidate_tracker/26778035741_updtd.pdf', NULL, '1', '2023-08-26', 0, '', '3', '59', '2023-08-28', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Intern Employment Node Uday Team', '2', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-26 10:33:02', 60, '2023-08-28 10:05:58', 0, NULL, 1),
(14287, 'Umas', '5', '8667247506', '9080190842', 'subramaniuma975@gmail.com', '1998-09-01', 24, '2', '2', 'Ram', 'Private company', 30000.00, 1, 18000.00, 25000.00, 'Saidapet', 'Saidapet', '2308260005', '1', '2', 'upload_files/candidate_tracker/18317214355_S.Uma_6.pdf', NULL, '1', '2023-09-05', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will Not Sustain And Handle Our Work Pressure Not Suitable Getting married next week', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-26 10:46:58', 108, '2023-09-05 11:06:12', 0, NULL, 1),
(14288, 'Pavithra.V', '5', '8825932612', '', 'pavivarsha8@gmail.com', '1999-08-13', 24, '2', '1', 'P.S.Venkatesh', 'Royal Enfield showroom Manager', 25000.00, 1, 24000.00, 25000.00, 'Choolai', 'Choolai', '2308260006', '1', '2', 'upload_files/candidate_tracker/28688784238_WorkIndia Resume - Pavithra.V.pdf', NULL, '1', '2023-09-05', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Satisfied.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-26 10:59:32', 104, '2023-09-05 11:29:24', 0, NULL, 1),
(14289, 'Marudhu. K', '4', '6360054601', '8098550308', 'marudheruvan@gmail.com', '2000-06-01', 23, '2', '2', 'Karuran', 'Agriculture', 20000.00, 3, 0.00, 20000.00, 'Dharmapuri', 'Chennai', '2308260007', '1', '1', 'upload_files/candidate_tracker/19093848885_Maruthu Resume.pdf', NULL, '1', '2023-08-26', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for our role', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-26 11:20:16', 85, '2023-08-26 05:52:27', 0, NULL, 1),
(14290, '', '0', '7200033867', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308260008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-26 11:21:55', 0, NULL, 0, NULL, 1),
(14291, 'Yuvasree', '13', '9361936075', '', 'yuvasreeravi1002@gmail.com', '2001-05-10', 22, '6', '2', 'Ravi kumar', 'Electrician', 8000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2308260009', '', '1', 'upload_files/candidate_tracker/48735360405_YUVASREE RAVI RESUME .pdf', NULL, '1', '2023-08-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC If He Come Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-26 11:22:41', 1, '2023-08-26 11:25:17', 0, NULL, 1),
(14292, 'HabiburRahman Z', '13', '9361347510', '', 'smartyhurz@gmail.com', '2001-08-26', 22, '6', '2', 'Father: zakir Hussain, Mother : nafeesa sultana', 'Father ( self employed) mother ( accountant)', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2308260010', '', '1', 'upload_files/candidate_tracker/24617202723_Habib_Fresher_ECE_immediate Joinee.pdf', NULL, '1', '2023-08-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC If He Come Back After Learning Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-26 11:22:57', 1, '2023-08-26 11:29:01', 0, NULL, 1),
(14293, 'REVATHI S', '13', '7358695164', '', 'revathiemailid@gmail.com', '2002-04-26', 21, '6', '2', 'SURESH P', 'Operator', 40000.00, 0, 0.00, 400000.00, 'Chennai', 'Chennai', '2308260011', '', '1', 'upload_files/candidate_tracker/75532976860_Resume-RS-25-06-2023-r-PY.pdf', NULL, '1', '2023-08-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC holding several offers will not sustain', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-26 12:09:06', 1, '2023-08-26 12:12:20', 0, NULL, 1),
(14294, 'Sriram.B', '4', '8056195537', '9790749183', 'Sb5760023@gmail.com', '2000-01-13', 23, '2', '2', 'R.Balaji', 'Driving', 25000.00, 1, 13000.00, 15000.00, 'Chennai', 'Kodugaiyur', '2308260012', '1', '2', 'upload_files/candidate_tracker/62790719597_resume (1) (1) (1).docx', NULL, '1', '2023-08-26', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability doubts .', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-26 12:09:32', 85, '2023-08-26 05:34:19', 0, NULL, 1),
(14295, 'SRIDHAR R', '25', '6383343157', '', 'sridhar99r@gmail.com', '1999-01-30', 24, '2', '2', 'RAJENDIRAN', 'BUSINESS', 30000.00, 2, 290000.00, 330000.00, '42, South Street, keelmampattu ( post ), Panruti.', 'Madipakkam , Chennai.600091', '2308260013', '1', '2', 'upload_files/candidate_tracker/3500018602_Sri Resume 2023.pdf', NULL, '1', '2023-08-26', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude issue.. will not suit for our role..', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-26 12:15:55', 108, '2023-08-26 12:46:22', 0, NULL, 1),
(14296, '', '0', '7395842447', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-27 04:52:19', 0, NULL, 0, NULL, 1),
(14297, 'Getcy mano ranjitham', '6', '9003625035', '8939330421', 'gmranjitham10@gmail.com', '2002-06-10', 21, '2', '2', 'Daniel thomas', 'MTC driver', 30000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2308280001', '1', '1', 'upload_files/candidate_tracker/82947152028_RESUME.pdf', NULL, '1', '2023-08-28', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok But need to be trained in our roles fresher 5050 need to check with Gokul for operations', '5', '1', '', '1', '8', '', '2', '2023-08-30', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-28 10:12:43', 104, '2023-08-28 10:58:09', 0, NULL, 1),
(14298, 'Priyadharshini.y', '7', '7871671698', '8148096769', 'priyadharshini.y99@gmail.com', '1999-05-24', 24, '6', '2', 'Sheela y', 'Cooli', 10000.00, 1, 16000.00, 18.00, 'No 156 SA colony 3rd Street Sharma nagar chennai', 'No 156 SA Colony 3rd Street Sharma Nagar Chennai', '2308280002', '', '2', 'upload_files/candidate_tracker/75466580261_Resume_PriyaDharshini_Format2.pdf', NULL, '3', '2023-08-29', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-28 10:56:13', 1, '2023-08-28 12:23:37', 0, NULL, 1),
(14299, 'V.Gayathri', '33', '9962744102', '9384491856', 'gayathrivasudevan21@gmail.com', '1998-06-05', 25, '6', '2', 'V.Vellanganni', 'Housemaker', 25000.00, 1, 10000.00, 14000.00, 'Cheyyur', 'Perambur', '2308280003', '', '2', 'upload_files/candidate_tracker/57715875140_V.GAYATHRI _Resume (1).docx', NULL, '1', '2023-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-28 11:19:01', 1, '2023-08-28 11:29:24', 0, NULL, 1),
(14300, 'Deepalakshmi', '6', '6381246469', '8155099785', 'deepalakshmikant13@gmail.com', '1999-04-13', 24, '2', '2', 'Lakshmi kanthan', 'Railway clerk', 45000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2308280004', '1', '2', 'upload_files/candidate_tracker/41449440252_deepalakshmi resume-1-min.pdf', NULL, '1', '2023-08-28', 15, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile Sustainability seems to be doubt in our roles need to check from your end kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-28 11:29:06', 108, '2023-08-28 12:12:37', 0, NULL, 1),
(14301, 'Mohamed faizalkhan syedmohamed', '32', '8825620256', '', 'Mohamedfaizalkhan949@gmail.com', '1995-06-22', 28, '3', '1', 'Syed mohamed', 'Home maker', 65000.00, 1, 450000.00, 700000.00, 'Madurai', 'Chennai', '2308280005', '', '2', 'upload_files/candidate_tracker/95792565029_CV_2023082111434753.pdf', NULL, '1', '2023-08-28', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude Will not sustain in our roles not suitable holding an offer for 5.8 LPA', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-28 01:18:35', 1, '2023-08-28 01:30:37', 0, NULL, 1),
(14302, 'kishore', '5', '9030881292', '', 'akishore90382@gmail.com', '1992-12-08', 30, '2', '2', 'venkateswarlu', 'private ltd', 50000.00, 1, 4000000.00, 4000000.00, 'chennai', 'chennai', '2308280006', '1', '2', 'upload_files/candidate_tracker/73606948985_Kishore resumee updated (2).docx', NULL, '1', '2023-08-28', 0, '', '3', '59', '2023-09-11', 480000.00, '', '5', '1970-01-01', '1', 'Selected for Manikandan Team in Staff ROle   Good In Communication Can Be Trained In Our Roles Have Exp In Calling Kindly Check Andlet Me Know Your Inputs', '5', '1', '4', '1', '8', '1', '2', '1970-01-01', '3', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-28 02:36:23', 85, '2023-09-12 12:25:18', 0, NULL, 1),
(14303, 'Lakshmipriya A R', '5', '7305742031', '', 'lakshmipriyamamallan21@gmail.com', '2002-07-31', 21, '2', '2', 'Ravichandran A R', 'ITI technician', 20000.00, 1, 0.00, 16000.00, 'saidapet', 'Saidapet', '2308290001', '1', '1', 'upload_files/candidate_tracker/345412902_LAKSHMIPRIYA RESUME new.doc', NULL, '1', '2023-08-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Should come for F2F thursay with Gokul for Operation role can be trained in our roles', '5', '2', '', '1', '8', '', '2', '2023-08-31', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-29 09:18:06', 101, '2023-08-29 10:01:06', 0, NULL, 1),
(14304, 'Vanitha s', '5', '7010212516', '8148514026', 'Vani84210@gmail.com', '2008-08-29', 0, '2', '2', 'Senthilkumar', 'Driver', 40000.00, 1, 12000.00, 18000.00, 'Trichy', 'Chennai', '2308290002', '1', '2', 'upload_files/candidate_tracker/1584608879_CV_2023081813353238.pdf', NULL, '1', '2023-08-29', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-29 09:28:33', 101, '2023-08-29 10:00:44', 0, NULL, 1),
(14305, 'Mohamed Ali M', '4', '8428184254', '9789641728', 'mohamedyaserali079@gmail.com', '2001-01-25', 22, '1', '2', 'Mohamed arif', 'Labour', 20000.00, 1, 0.00, 18000.00, 'Vallam', 'Vallam', '2308290003', '', '1', 'upload_files/candidate_tracker/49707158089_Ali resume 261017.pdf', NULL, '1', '2023-08-29', 0, '77792', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'expectaion is high and not fit for team....purely expected accounts department sales is partially for just looking for a office environment ', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-29 09:37:18', 1, '2023-08-29 09:43:03', 0, NULL, 1),
(14306, 'MuJAHITHUL ISLAM', '6', '8525028789', '', 'muja2092@gmail.com', '2000-12-05', 22, '2', '2', 'gulam muhamed', 'hotel Business', 40000.00, 2, 0.00, 14000.00, 'chennai mannady boardway', 'chennai', '2308290004', '1', '1', 'upload_files/candidate_tracker/98197500099_Mujahithul_Islam_D .EEE_Fresher .doc', NULL, '1', '2023-08-29', 0, '', '3', '59', '2023-09-04', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team in Staff role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-29 09:55:46', 60, '2023-09-02 03:30:37', 0, NULL, 1),
(14307, 'Raghul R', '13', '9843540562', '9047511951', 'raghulrajeswari@gmail.com', '2000-11-06', 22, '6', '2', 'Rajendran.R', 'Farmer', 15000.00, 1, 0.00, 13000.00, 'Saidapet, Chennai', 'Saidapet, Chennai', '2308290005', '', '1', 'upload_files/candidate_tracker/23207749441_Raghul.pdf', NULL, '1', '2023-08-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'should come after learning', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-29 09:58:37', 104, '2023-08-29 05:41:12', 0, NULL, 1),
(14308, 'Vikram E', '5', '9344263751', '8072661165', 'vikrm2430@gmail.com', '1999-11-24', 23, '2', '2', 'Vijayalakshmi E', 'House keeping', 32000.00, 2, 20000.00, 30000.00, 'Otteri', 'Mandaveli', '2308290006', '1', '2', 'upload_files/candidate_tracker/83031637585_vikram new 1.docx', NULL, '1', '2023-08-29', 30, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communicaiton Average Sustainability Ok Should check with Gokul and confirm for operations\n', '5', '1', '', '1', '8', '', '2', '2023-08-31', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-29 10:28:35', 108, '2023-08-29 10:46:32', 0, NULL, 1),
(14309, 'M. Ganga lakshmi', '4', '8056360551', '8220426551', 'gangalakshmi511@gmail.com', '2008-08-29', 0, '2', '2', 'Uma', 'Farmer', 8000.00, 2, 0.00, 15000.00, 'Karandhai', 'Karandhai', '2308290007', '1', '1', 'upload_files/candidate_tracker/81751077798_CV_2023082823413470.pdf', NULL, '1', '2023-08-29', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for team and no exposure and no pressure handling', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-29 10:48:10', 85, '2023-08-29 11:46:27', 0, NULL, 1),
(14310, 'Vasudevan s', '16', '8428928270', '9116667666', 'Vasu101094@gmail.com', '1994-10-10', 28, '2', '2', 'Parent', 'House wife', 2.00, 4, 2.57, 3.50, '36/1 yadaval street aminjikarai Chennai 29', '36/1 Yadaval Street Aminjikarai Chennai 29', '2308290008', '1', '2', 'upload_files/candidate_tracker/62268567040_vasu resume-2.pdf', NULL, '1', '2023-08-29', 0, '', '3', '59', '2023-09-04', 257000.00, '', '5', '1970-01-01', '1', 'Selected for Operations Renewals Staff Role', '3', '1', '4', '1', '8', '', '2', '2023-08-31', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-29 10:48:58', 60, '2023-09-02 04:33:06', 0, NULL, 1),
(14311, 'Mithoon N S', '31', '8555034734', '', 'mithoonns@gmail.com', '2001-05-02', 22, '2', '2', 'Nagarajan K', 'Accountant', 35000.00, 1, 0.00, 200000.00, 'THIRUVELANGADU', 'Tiruninravur', '2308290009', '27', '1', 'upload_files/candidate_tracker/99742428454_mithoon_resume (1).pdf', NULL, '1', '2023-08-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come back woth his confirmation if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-29 12:48:25', 104, '2023-08-29 05:41:57', 0, NULL, 1),
(14312, '', '0', '9500689781', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308290010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-29 03:02:20', 0, NULL, 0, NULL, 1),
(14313, 'Bezaleel arther.s', '5', '8122163005', '', 'bezaleelarther@gmail.com', '2000-02-16', 23, '2', '2', 'Sathiyavan', 'Employee in l&T', 30000.00, 2, 0.00, 17000.00, 'No 10 gopalapuram poonamallee', 'No 10 gopalapuram poonamallee', '2308290011', '1', '1', 'upload_files/candidate_tracker/4532662527_Arther Resume (1).docx', NULL, '1', '2023-08-30', 0, '', '3', '59', '2023-09-04', 195000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team in staff role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-29 04:42:31', 60, '2023-09-04 09:50:34', 0, NULL, 1),
(14314, 'Varun Kumar R', '5', '6381326511', '', 'vkumarnaidur@gmail.com', '1998-06-05', 25, '2', '2', 'Ravi chandiran', 'Former', 10000.00, 0, 35000.00, 45000.00, 'Vellore', 'Chennai', '2308290012', '1', '2', 'upload_files/candidate_tracker/77399674890_Varun Kumar R Resume.Pdf.docx', NULL, '1', '2023-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Frequet job changes will not sustain in our roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-29 06:09:36', 85, '2023-08-30 10:20:25', 0, NULL, 1),
(14315, '', '0', '6385938213', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2308290013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-08-29 10:47:08', 0, NULL, 0, NULL, 1),
(14316, 'Rahamathulla', '4', '9944032408', '9486925486', 'T.rahamathulla.995@gmail.com', '2002-07-05', 21, '2', '2', 'Thajudeen', 'Driver', 150000.00, 2, 0.00, 15000.00, '1/2-vellaler st vadakkumangudi, Thanjavur', '1/2-vellaler st vadakkumangudi, Thanjavur', '2308300001', '1', '1', 'upload_files/candidate_tracker/14637488803_CV_2023061221495659.pdf', NULL, '1', '2023-08-30', 0, '', '3', '59', '2023-09-01', 152400.00, '', NULL, '2024-10-30', '1', 'Selected for Sithy Team Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-30 11:08:57', 60, '2023-08-31 06:46:10', 0, NULL, 1),
(14317, 'Ahamed Niyas', '31', '9487918294', '', 'Ahamedniyas2000@gmail.com', '2001-05-17', 22, '6', '2', 'Abdul malik', 'Business', 40000.00, 2, 0.00, 20000.00, 'Lalpet', 'Chennai', '2308300002', '', '1', 'upload_files/candidate_tracker/91636530432_AHAMEDNIYASRESUME2.pdf', NULL, '1', '2023-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude will not sustain in our roles not open for TxxampC if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-30 11:40:16', 104, '2023-08-30 04:12:15', 0, NULL, 1),
(14318, 'Gobinath m', '13', '6369669390', '', 'gobinathm240@gmail.com', '2001-12-31', 21, '3', '2', 'Murugan.p', 'Chemist in cement plant', 25000.00, 1, 0.00, 13000.00, 'Kovilpatti', 'West Mamabalm chennai', '2308300003', '', '1', 'upload_files/candidate_tracker/72338832853_GOBINATH .pdf', NULL, '1', '2023-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Frehsr need ti open a lot will not handle our work pressure', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-30 11:55:29', 104, '2023-08-30 04:10:53', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14319, 'K.ROYSON', '4', '8428561981', '', 'roy548780@gmail.com', '2001-12-15', 21, '2', '2', 'm.Kannan', 'Painting contractor', 20000.00, 2, 0.00, 17000.00, 'Thiruppatur,Sivagangai Dist,tamil Nadu', 'Ayanavaram,chennai', '2308300004', '1', '1', 'upload_files/candidate_tracker/19816513245_io6f4-vmmbn (1).pdf', NULL, '1', '2023-08-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot will not sustain and handle our work pressure not suitable', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-30 12:29:09', 101, '2023-08-31 11:20:23', 0, NULL, 1),
(14320, 'SEKAR K', '5', '9945475670', '9791445618', 'ksekar211@gmail.com', '1994-05-05', 29, '2', '1', 'HEMALATHA S', 'Accountant', 30000.00, 1, 24500.00, 30000.00, 'No 294/130 2nd Street Villivakkam Chennai 600049', 'No 47 Nagendra 1st block Srinagar Bangalore 560055', '2308300005', '1', '2', 'upload_files/candidate_tracker/90709555437_Resume_29_08_2023_07_55_56_AM.pdf', NULL, '1', '2023-08-30', 0, '', '3', '59', '2023-09-01', 350000.00, '', '5', '1970-01-01', '1', 'Selected for Bangalore in Staff Role', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-08-30 03:41:34', 60, '2023-08-31 07:09:52', 0, NULL, 1),
(14321, 'Ramnath Srinivasan', '16', '7092074296', '', 'ramnathvasan@gmail.com', '2000-01-07', 23, '2', '2', 'Srinivasan', 'Business', 200000.00, 1, 300000.00, 400000.00, 'Chennai', 'Chennai', '2308300006', '1', '2', 'upload_files/candidate_tracker/78433501549_Ramnath CV(1).pdf', NULL, '1', '2023-08-31', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for MIS Renewals not open for Sales Salary exp is high in Renewals mis will not sutain and handle the work pressure', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-30 07:39:11', 101, '2023-08-31 11:00:12', 0, NULL, 1),
(14322, 'AZARUDEEN A', '4', '9600569971', '8778785635', 'azarudeen02a@gmail.com', '2002-02-25', 21, '2', '2', 'ALLA BAKASH', 'Shopkeeper', 18000.00, 1, 0.00, 17000.00, 'Thirupattur sivangangai dist', 'Ayanavaram chennai', '2308310001', '1', '1', 'upload_files/candidate_tracker/73816667293_CV_202308291428449.pdf', NULL, '1', '2023-08-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitbable for our roles will not sustain', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-31 11:15:12', 85, '2023-08-31 02:40:03', 0, NULL, 1),
(14323, 'M.Mohamed Yasin', '4', '8825678595', '8428561981', 'yasin200231@gmail.com', '2002-05-31', 21, '2', '2', 'Mohamed Sarbudheen', 'Business', 25000.00, 2, 0.00, 17000.00, 'Atchu kattu,Thiruppathur,sivagangai district', 'Ayanavaram,chennai', '2308310002', '1', '1', 'upload_files/candidate_tracker/81229987739_Mohamed Yasin.pdf', NULL, '1', '2023-08-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles will not sustain', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-31 11:15:12', 85, '2023-08-31 02:40:21', 0, NULL, 1),
(14324, 'Mukesh L', '23', '6379194689', '', 'mukeshlaksmanan592@gmail.com', '2008-08-31', 0, '2', '1', 'Lakshmanan.P', 'Carpenter', 15000.00, 1, 0.00, 200000.00, 'Arakkonam', 'chennai', '2308310003', '27', '1', 'upload_files/candidate_tracker/4694046431_Resume-1.pdf', NULL, '1', '2023-08-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', ' Need To Learn A Lot If He Comes Back Let Us Try Not much comfort in TxxampC', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-31 11:41:36', 108, '2023-08-31 06:34:05', 0, NULL, 1),
(14325, 'Lingadharshini', '16', '9789024056', '8925732307', 'lingadharshini1@gmail.com', '2002-07-23', 21, '3', '2', 'Patturaj', 'Waste paper mart', 15000.00, 2, 13000.00, 20000.00, 'Chennai', 'Chennai', '2308310004', '', '2', 'upload_files/candidate_tracker/32093144119_Linga Dharshini_Resume.pdf', NULL, '1', '2023-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-31 11:47:43', 1, '2023-08-31 12:02:31', 0, NULL, 1),
(14326, 'S.kirthika', '5', '8939781552', '8681982279', 'Keerchennai@gmail.com', '2000-08-22', 23, '2', '2', 'Parent', 'Clerk', 15000.00, 1, 0.00, 15.00, 'Broadway', 'Broadway', '2308310005', '1', '1', 'upload_files/candidate_tracker/84017875761_Kirthi Resume New.pdf', NULL, '1', '2023-08-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', ' no understanding will not sustain in our roles Career Gap not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-08-31 11:54:47', 108, '2023-08-31 12:31:31', 0, NULL, 1),
(14327, 'Murugappan.v', '14', '6383783294', '', 'murugappan541@gmail.com', '2001-04-05', 22, '2', '2', 'Venkatesan.k', 'Farmer', 15000.00, 1, 0.00, 250000.00, 'Arakkonam', 'Chennai', '2308310006', '27', '1', 'upload_files/candidate_tracker/15287139029_Murugappan Resume.pdf', NULL, '1', '2023-08-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics Need to learn a lot if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-08-31 11:56:54', 108, '2023-08-31 06:30:00', 0, NULL, 1),
(14328, 'Poornima. R', '16', '9884602072', '', 'Jpoornima322000@gmail.com', '2000-02-03', 23, '2', '2', 'Dhanalakshmi', 'House wife', 80000.00, 1, 12000.00, 18000.00, 'Tondiarpet', 'Chennai', '2308310007', '1', '2', 'upload_files/candidate_tracker/97172531615_RESUME.pdf', NULL, '1', '2023-08-31', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable for Renewals calls not open for Sales too ', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-08-31 12:27:06', 85, '2023-08-31 02:31:45', 0, NULL, 1),
(14329, 'Sangeetha', '4', '8939068393', '7871424521', 'sangeethaneelavannan6@gmail.com', '1998-10-06', 24, '6', '2', 'Lakshmi', 'Home maker', 30000.00, 1, 0.00, 16000.00, 'Korratur', 'Korratur', '2308310008', '', '2', 'upload_files/candidate_tracker/54598897564_CV_2023071910454298.pdf', NULL, '1', '2023-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-08-31 12:34:15', 1, '2023-08-31 12:38:12', 0, NULL, 1),
(14330, 'Abishek.A', '6', '7871708801', '', 'abishekabishek9832@gmail.com', '2001-05-21', 22, '2', '2', 'Anbudoss.A', 'Security', 12000.00, 2, 0.00, 12000.00, 'Koluthur', 'Koluthur', '2308310009', '1', '1', 'upload_files/candidate_tracker/45009073130_ABI RESUME.pdf', NULL, '1', '2023-09-01', 0, '', '3', '59', '2023-09-04', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Gopinath team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-08-31 08:42:00', 60, '2023-09-02 03:32:23', 0, NULL, 1),
(14331, 'Shahid Afridi', '5', '9128238347', '9608209936', 'afridimallick9128@gmail.com', '2000-01-30', 23, '2', '2', 'Saba naaz', 'House wife', 22500.00, 4, 22000.00, 26000.00, 'Vill+post jamuk dist jehanabad bihar 804429', '5/1, Owliya Sahib Street, triplicane ch_5', '2309010001', '1', '2', 'upload_files/candidate_tracker/67412579904_shahid malik.pdf', NULL, '1', '2023-09-04', 30, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Bank Bazaar Bihari Candidate Tamil is Ok Can be trained in our roles kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-01 10:36:23', 104, '2023-09-04 05:17:32', 0, NULL, 1),
(14332, 'PRIYADHARSHINI R', '6', '9787141704', '7307508013', 'priyagayu47@gmail.com', '1997-03-11', 26, '2', '2', 'Rayadurai', 'Labour', 25000.00, 2, 18.50, 22.00, 'Perambalur', 'Chennai', '2309010002', '1', '2', 'upload_files/candidate_tracker/56109916733_DOC-20230810-WA0004..pdf', NULL, '1', '2023-09-01', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Excepted High Salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-01 11:57:13', 104, '2023-09-01 02:39:43', 0, NULL, 1),
(14333, 'Vignesh S', '6', '8072445761', '8925645895', 'vignesh.sv2598@gmail.com', '1996-02-25', 27, '2', '1', 'Bhuvaneshwari V', 'Student', 20000.00, 2, 18000.00, 25000.00, 'Thirunindravur', 'Thirunindravur', '2309010003', '1', '2', 'upload_files/candidate_tracker/97473130419_VICKY', NULL, '1', '2023-09-01', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile need to come back for the final round with Sales manager and the ARea Manager', '5', '1', '', '1', '8', '', '2', '2023-09-04', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-01 02:26:52', 104, '2023-09-01 02:45:19', 0, NULL, 1),
(14334, 'Elango', '4', '8939520447', '', 'elangosrinivasan63@gmail.com', '1997-04-26', 26, '2', '1', 'S Saraswathi', 'House wife', 12000.00, 0, 13000.00, 18000.00, 'No 42/29 Nair Varadha Pillai Street Royapettah', 'No 42/29 Nair Varadha Pillai Street Royapettah', '2309010004', '1', '2', 'upload_files/candidate_tracker/5907147503_ela resume.docx', NULL, '3', '2023-09-01', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For Sales Much Will Not Sustain not open to take work pressure Not Suitable', '1', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-01 03:37:18', 108, '2023-09-01 03:53:13', 0, NULL, 1),
(14335, '', '0', '6385437025', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309010005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-01 03:58:32', 0, NULL, 0, NULL, 1),
(14336, 'Preethi T', '6', '8124123399', '8248646924', 'preethik2197@gmail.com', '1999-10-21', 23, '2', '2', 'N.Thandavamoothy', 'Auto driver', 12000.00, 1, 0.00, 15000.00, 'Tiruvottiyur', 'Tiruvottiyur', '2309010006', '1', '1', 'upload_files/candidate_tracker/81685052375_Adobe Scan 15 Jun 2022 (2).pdf', NULL, '1', '2025-02-13', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1066', '5151', '1970-01-01', 1, '2023-09-01 05:35:20', 153, '2025-02-13 03:41:56', 0, NULL, 1),
(14337, 'NAVEEN KUMAR J', '6', '6384899433', '9345465200', 'naveenkumar29april@gmail.com', '2002-04-29', 21, '2', '2', 'JAYAMOORTHY C', 'Farmer', 25000.00, 1, 0.00, 18000.00, 'Panruti', 'Chennai', '2309020001', '1', '1', 'upload_files/candidate_tracker/23718866059_J.NAVEEN KUMAR RESUME.pdf', NULL, '1', '2023-09-02', 0, '', '3', '59', '2023-09-11', 192000.00, '', '', '1970-01-01', '1', 'Selected for Syed Team Staff Role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-02 08:32:51', 85, '2023-09-02 05:14:17', 0, NULL, 1),
(14338, 'Lingeshwaran gs', '4', '6374841668', '', 'Lingeshwarangs@gmail.com', '2001-01-05', 22, '2', '2', 'Gnana selvan', 'Archagar', 8500.00, 1, 13500.00, 14000.00, 'THANJAVUR', 'THANJAVUR', '2309020002', '1', '2', 'upload_files/candidate_tracker/11141738948_Naukri_LINGESHWARANGs[1y_0m].pdf', NULL, '1', '2023-09-02', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR TELESALES AND AVE NO DISCIPLINE', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-02 10:26:59', 108, '2023-09-04 03:43:40', 0, NULL, 1),
(14339, 'M.THIRUPPATHI RAJA', '4', '7010303694', '9677972976', 'Mtrm2552@gmail.com', '1999-12-19', 23, '1', '2', 'K.MURUGESAN', 'Former', 15000.00, 2, 25000.00, 25000.00, 'Thanjavur', 'Thanjavur', '2309020003', '', '2', 'upload_files/candidate_tracker/75724965794_MTR Resum.pdf', NULL, '1', '2023-09-02', 0, '77789', '3', '59', '2023-09-04', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Sithy Team in Consultant Role', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-02 11:02:28', 60, '2023-09-04 02:47:35', 0, NULL, 1),
(14340, 'H Mubarak basha', '5', '9551446229', '9789934224', 'mubarakbasha250@gmail.com', '1999-12-27', 23, '4', '2', 'Aameen', 'Labber', 12000.00, 4, 0.00, 16000.00, 'Ayanavaram', 'Ayanavaram', '2309020004', '', '1', 'upload_files/candidate_tracker/3616850933_Mubarak BASHA RESUME.pdf', NULL, '1', '2023-09-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-02 11:21:47', 1, '2023-09-02 11:53:58', 0, NULL, 1),
(14341, 'M.Sandhiya', '16', '7200232118', '9962907205', 'msandiya82@gmail.com', '1992-01-12', 31, '2', '1', 'B.Murali', 'Electrician', 30000.00, 2, 0.00, 19000.00, 'Chennai', 'Chennai', '2309020005', '1', '1', 'upload_files/candidate_tracker/99700967824_SANDIYA M_Resume-1.pdf', NULL, '1', '2023-09-02', 0, '', '3', '59', '2023-09-06', 192000.00, '', '5', '1970-01-01', '2', 'Selected for renewals in Staff role final round interviewed by Gokul 12th High Graduation long career Gap', '3', '2', '1', '1', '8', '1', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-02 11:54:40', 60, '2023-09-06 09:38:59', 0, NULL, 1),
(14342, 'M. Sanjai', '6', '9025670709', '', 'sanjai03sanjai@gmail.com', '2002-12-13', 20, '2', '2', 'Kokila', 'Pharmacy', 25000.00, 1, 0.00, 2.60, 'Chennai', 'Chennai', '2309020006', '1', '1', 'upload_files/candidate_tracker/48424094110_Sanjay Resume_1693128110920_M. SANJAI.pdf', NULL, '1', '2023-09-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Reject', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-02 04:00:43', 104, '2023-09-04 03:16:05', 0, NULL, 1),
(14343, 'Sivasakthi.S', '16', '8610267563', '7845668832', 'Sakthisivanandham@gmail.com', '1999-11-02', 23, '2', '2', 'Lakshmi.G', 'House wife', 14000.00, 1, 14000.00, 24000.00, 'Choolaimedu', 'Choolaimedu', '2309040001', '1', '2', 'upload_files/candidate_tracker/30833946128_RESUME.pdf', NULL, '1', '2023-09-04', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for MIS Final Round Gokul Reject', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-04 10:28:03', 85, '2023-09-04 10:38:27', 0, NULL, 1),
(14344, 'Mohamed aniba', '5', '6384932008', '', 'mohammedanibaasan2223@gmail.com', '2003-02-22', 20, '2', '2', 'Asan mydeen', 'Hotel Labour', 170000.00, 2, 0.00, 18000.00, '3a valiyapathi street pathamadai, tirunelveli', 'Alanthur', '2309040002', '1', '1', 'upload_files/candidate_tracker/18980392246_A.pdf', NULL, '1', '2023-09-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Pressure Handling Doubts Will not sustain and handle our work not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-04 10:55:51', 104, '2023-09-04 05:32:36', 0, NULL, 1),
(14345, 'Vignesh', '13', '9080748219', '9962351149', 'vigneshselvam1107@gmail.com', '2001-05-11', 22, '1', '2', 'Selvam', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2309040003', '', '1', 'upload_files/candidate_tracker/37946921355_Vignesh doc.docx', NULL, '1', '2023-09-04', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher long career gap no basics in JS Need to learn a lot if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-04 11:36:23', 1, '2023-09-04 11:42:21', 0, NULL, 1),
(14346, 'Rishika Rp', '6', '9176483543', '9940274354', 'rprishika03@gmail.com', '2002-12-03', 20, '1', '2', 'Parents', 'Auto driver', 7000.00, 1, 12000.00, 15000.00, 'Vysarpadi SM nagar Chennai', 'Vysarpadi SM Nagar Chennai', '2309040004', '', '2', 'upload_files/candidate_tracker/20546431300_Resume_R.P.Rishika_Format1.pdf', NULL, '1', '2023-09-04', 0, '77802', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-04 11:46:36', 104, '2023-09-04 05:30:24', 0, NULL, 1),
(14347, 'Jenifer M', '6', '9150111340', '7358373321', 'jenifermurugan97@gmail.com', '2003-11-14', 19, '1', '2', 'Sathya', 'House skipping', 15000.00, 1, 12000.00, 15000.00, 'Central Chennai Elephant gate', 'Vysarpady Chennai', '2309040005', '', '2', 'upload_files/candidate_tracker/39011470648_jenifer resume-1.docx', NULL, '1', '2023-09-04', 0, '77802', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-04 11:47:15', 104, '2023-09-04 05:30:14', 0, NULL, 1),
(14348, 'Ashwin', '5', '6380688931', '9952737809', 'ashwinthangaraj1999@gmail.com', '1999-05-02', 0, '2', '2', 'C.mohanraj ,m.parameshwari', 'Business', 18000.00, 1, 21160.00, 25000.00, 'Adambakkam', 'Adambakkam', '2309040006', '1', '2', 'upload_files/candidate_tracker/63206766704_ashwin resume 2-converted.docx', NULL, '1', '2023-09-04', 30, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate need to give his confirmation not much comfort in field sales having health issue s a lot sustainability doubts', '5', '2', '', '1', '8', '', '2', '2023-09-06', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-04 12:19:58', 1, '2023-09-04 12:49:02', 0, NULL, 1),
(14349, 'Tamilarasi', '4', '8870909237', '', 'Tamilarasiganesan42@gmail.com', '2002-10-13', 20, '3', '2', 'Ganeshan', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Vallam', 'Vallam', '2309040007', '', '1', 'upload_files/candidate_tracker/38782410715_RESUME- Tamilarasi.pdf', NULL, '1', '2023-09-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-04 12:21:12', 1, '2023-09-04 12:28:34', 0, NULL, 1),
(14350, '', '0', '7305447724', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309040008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-04 01:10:00', 0, NULL, 0, NULL, 1),
(14351, 'Deepa N', '6', '7871081465', '', 'deepanagarajan1932001@gmail.com', '2001-03-19', 22, '2', '2', 'Nagarajan S', 'Sales', 20000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2309040009', '1', '2', 'upload_files/candidate_tracker/95286972854_Deepa_2023_Resume.pdf', NULL, '1', '2023-09-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Clarity in her exp Will Not Sustain And Handle Our Work Pressure Not Suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-04 06:21:55', 104, '2023-09-05 11:29:36', 0, NULL, 1),
(14352, 'ANTONY AROCKIA RAILEY FDO', '5', '9944033690', '8072829157', 'rail_mech@yahoo.co.in', '1987-05-16', 36, '2', '1', 'RAIZA', 'HOUSE WIFE', 17000.00, 0, 18000.00, 20000.00, 'THOOTHUKUDI', 'CHENNAI', '2309040010', '1', '2', 'upload_files/candidate_tracker/64497105303_RESUME (3).pdf', NULL, '1', '2023-09-05', 3, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Frequent Job Changes will not sustain and handle our work pressure not suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-04 06:42:44', 104, '2023-09-05 04:24:56', 0, NULL, 1),
(14353, 'krishna koundinya', '5', '9704281807', '', 'krishnakoundinya1997@gmail.com', '1997-08-27', 26, '2', '2', 'g madhavi latha', 'housewife', 40000.00, 0, 320000.00, 350000.00, 'hyderabad', 'bangalore', '2309050001', '1', '2', 'upload_files/candidate_tracker/96536386060_Krishna Koundinya G (1).docx', NULL, '1', '2023-09-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-05 10:35:39', 85, '2023-09-05 03:06:51', 0, NULL, 1),
(14354, 'M.Rohith', '5', '7358463792', '', 'rohith.murali2002@gmail.com', '2002-08-14', 21, '2', '2', 'Murali.k', 'Business man', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Royapuram', '2309050002', '1', '1', 'upload_files/candidate_tracker/29378709559_Rohith.pdf', NULL, '1', '2023-09-05', 0, '', '3', '59', '2023-09-07', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-05 10:39:24', 60, '2023-09-06 06:35:10', 0, NULL, 1),
(14355, 'Anitha', '4', '6381730677', '6382607696', 'Jojessy2528@gmail.com', '1991-12-26', 31, '2', '1', 'Saravanan', 'Fisher man', 35000.00, 2, 18000.00, 22000.00, 'New washermenpet', 'New washermanpet', '2309050003', '1', '2', 'upload_files/candidate_tracker/30734155970_Anitha.pdf', NULL, '1', '2023-09-05', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Career Gap  Will Not Sustain And Handle Our Work Pressure Not Suitable no clarity', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-05 10:45:36', 104, '2023-09-05 11:30:02', 0, NULL, 1),
(14356, 'Yogesh waran.s', '6', '7401744582', '', 'Yoyo27061999@gmail.com', '1999-06-27', 24, '3', '2', 'Umamaheshwari', 'House wife', 96000.00, 0, 20000.00, 23000.00, 'Kaladipet thiruvottiyur', 'Kaladipet thiruvottiyur', '2309050004', '', '2', 'upload_files/candidate_tracker/79899654251_yogesh resume 1.pdf', NULL, '1', '2023-09-05', 7, '', '3', '59', '2023-09-11', 154200.00, '', '5', '1970-01-01', '1', 'Selected for Operationsin Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-05 11:12:31', 60, '2023-09-09 09:54:39', 0, NULL, 1),
(14357, 'Krishna Kumar M', '6', '9585335303', '', 'mkkumar18177@gmail.com', '2002-03-12', 21, '2', '2', 'Murugan', 'Self employe', 120000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2309050005', '1', '1', 'upload_files/candidate_tracker/89334606_pdf_20230816_162816_0000.pdf', NULL, '1', '2023-09-05', 0, '', '3', '59', '2023-09-07', 195000.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-09-05 11:25:06', 60, '2023-09-06 06:36:19', 0, NULL, 1),
(14358, 'Sanjay Kumar', '6', '7695841193', '', 'Sanjay2003vijay@gmail.com', '2002-03-20', 21, '1', '2', 'Father', 'Bussiness', 20000.00, 4, 18600.00, 20000.00, 'Chennai', 'Chennai', '2309050006', '', '2', 'upload_files/candidate_tracker/50266790818_sanjay resume.pdf', NULL, '1', '2023-09-05', 0, 'P1427', '3', '59', '2023-09-11', 216000.00, '', '', '2023-09-12', '2', 'Selected for Syed Team in Consultant Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-05 01:10:57', 60, '2023-09-09 04:37:31', 0, NULL, 1),
(14359, 'VIGNESH C', '6', '8072608644', '', 'vignesh294629@gmail.com', '2000-05-29', 23, '2', '2', 'P. Chinnasamy', 'Vegetable seller', 30000.00, 5, 0.00, 20000.00, 'Chennai', 'Chennai', '2309050007', '1', '1', 'upload_files/candidate_tracker/25176964320_VIGNESH RESUME.pdf', NULL, '1', '2023-09-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to open up a lot Will Not Sustain And Handle Our Work Pressure Not Suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-05 01:50:03', 104, '2023-09-05 04:12:02', 0, NULL, 1),
(14360, 'Naveen', '6', '9952053230', '9952067973', 'abinaveen68@gmail.com', '2000-07-12', 23, '2', '2', 'Dhanapalan', 'Accountant', 30000.00, 2, 15000.00, 16000.00, 'Chennai', 'Chennai', '2309050008', '1', '2', 'upload_files/candidate_tracker/6416413417_D.NAVEEN.pdf', NULL, '1', '2023-09-05', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'HIS GOAL IS DIFFERENT , SUSTAINABLE DOUUBT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-05 03:13:12', 104, '2023-09-05 04:24:22', 0, NULL, 1),
(14361, 'Lisy', '6', '8667794591', '', 'lisyalice671@gmail.com', '2001-07-05', 22, '2', '1', 'Prasanna', 'Documentation', 20000.00, 1, 16000.00, 18000.00, 'Chennai', 'Chennai', '2309050009', '1', '2', 'upload_files/candidate_tracker/87619200062_Lisy.pdf', NULL, '1', '2023-09-07', 0, '', '3', '59', '2023-09-11', 204000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', 'Consultant ROle', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-05 07:51:11', 60, '2023-09-09 04:20:58', 0, NULL, 1),
(14362, 'Snekha b', '11', '9123584409', '7845534409', 'snekhababu001@gmail.com', '2001-06-12', 22, '2', '2', 'Babu k', 'Auto mobile', 70000.00, 1, 0.00, 15000.00, 'Puzhal chennai 66', 'Same as above', '2309060001', '1', '1', 'upload_files/candidate_tracker/30311507619_snekha resume (1) (1) (1) (1).pdf', NULL, '1', '2023-09-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' Communication Ok Will Not Sustain to long distance ', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-06 10:46:05', 85, '2023-09-06 12:51:28', 0, NULL, 1),
(14363, 'Mohammad gouse', '4', '7204029184', '8792371275', 'mohammadgouse019@gmail.com', '2002-06-11', 21, '1', '2', 'Jubeda begum', 'Telecaller', 30000.00, 1, 16500.00, 18000.00, 'Harlur main road Near HSR 560102', 'Harlur HSR 560102', '2309060002', '', '2', 'upload_files/candidate_tracker/97702459818_resume (1).docx', NULL, '1', '2023-09-07', 0, '2309060002', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-06 11:26:52', 1, '2023-09-06 11:37:57', 0, NULL, 1),
(14364, 'Jeyasri natarajan', '11', '8124346414', '9074344586', 'Jeyasri229@gmail.com', '1999-03-30', 24, '2', '2', 'Natarajan.M', 'Runing lemon shop', 200000.00, 1, 15000.00, 17000.00, 'Shencottah', 'Chromepet', '2309060003', '1', '2', 'upload_files/candidate_tracker/37794026761_JEYASRI NATARAJAN RESUME PDF.pdf', NULL, '1', '2023-09-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for Recruiter Role 15K overall Need to check the documents and confirm seems to be doubtful final round by gokul', '6', '1', '', '1', '8', '', '2', '2023-09-08', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-06 12:37:19', 104, '2023-09-06 05:09:30', 0, NULL, 1),
(14365, 'SURYAPRAKASH S', '4', '6380947216', '9003296520', 'surya00242@gmail.com', '2000-07-22', 23, '3', '2', 'Subha', 'House keeping', 28000.00, 1, 0.00, 15000.00, 'No 75 Thiruvallur Puram, 1st Street, choolaimedu', 'Bharathiyar street, choolaimedu', '2309060004', '', '1', 'upload_files/candidate_tracker/64180565627_Surya Resume.docx', NULL, '1', '2023-09-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-06 12:47:29', 1, '2023-09-06 01:00:24', 0, NULL, 1),
(14366, 'Lal James', '13', '9659548919', '', 'laljames003@gmail.com', '1995-02-16', 28, '6', '2', 'Sundara Raj', 'Pastor', 300000.00, 1, 0.00, 25000.00, 'Kanyakumari', 'T.Nager', '2309060005', '', '1', 'upload_files/candidate_tracker/40868985778_Lal James Resume.pdf', NULL, '1', '2023-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles No basics Skills age 28 Long career gap Will Not Sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-06 01:18:00', 1, '2023-09-06 01:25:32', 0, NULL, 1),
(14367, 'ARUN. K', '11', '8526166221', '9488548481', 'arunkathir22@gmail.com', '2001-05-22', 22, '2', '2', 'K. KATHIRVEL', 'Driver', 48000.00, 1, 0.00, 23000.00, 'Kumbakonam', 'Triplicane, Chennai', '2309060006', '1', '1', 'upload_files/candidate_tracker/64270933963_RESUME-ARUN.K 1.pdf', NULL, '1', '2023-09-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles Communication No will not sustain', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-06 01:20:29', 104, '2023-09-06 05:10:17', 0, NULL, 1),
(14368, 'Malavan', '5', '6382240935', '8940836898', 's.m.malavan2001@gmail.com', '2001-02-10', 22, '2', '2', 'Sivakumar', 'Farmer', 3000.00, 1, 0.00, 18000.00, 'Keeranur', 'Keeranur', '2309060007', '1', '1', 'upload_files/candidate_tracker/10423098209_Malavan_Sivakumar_Resume (1).pdf', NULL, '1', '2023-09-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Roles Communication No Will Not Sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-06 01:21:27', 104, '2023-09-06 05:11:03', 0, NULL, 1),
(14369, 'V Aravindh', '11', '6380580843', '', 'aravindhroshan90@gmail.com', '1999-02-23', 24, '2', '2', 'M Velayutham', 'Driver', 18000.00, 4, 0.00, 23000.00, 'Kumabakonam', 'Chennai,Anna salai', '2309060008', '1', '1', 'upload_files/candidate_tracker/86332337378_Aravindh new 1.pdf', NULL, '1', '2023-09-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Roles Communication No Will Not Sustain', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-06 01:22:04', 104, '2023-09-06 05:09:57', 0, NULL, 1),
(14370, 'KARTHICK A', '5', '7708741912', '', 'karthi99629962@gmail.com', '2000-12-15', 22, '2', '2', 'Alliyappan E', 'Thiruvallur', 40000.00, 1, 0.00, 30000.00, 'Thiruvallur', 'Thiruvallur', '2309060009', '1', '2', 'upload_files/candidate_tracker/7864227053_DOC-20230806-WA0054..pdf', NULL, '1', '2023-09-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable For Our Roles Communication No Will Not Sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-06 01:29:29', 108, '2023-09-06 03:47:12', 0, NULL, 1),
(14371, 'Nithya srinivasan', '11', '7010156799', '', 'Nithyasrinivasan1999@gmail.com', '1999-06-26', 24, '2', '2', 'A T srinivasalu', 'Own business', 20000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2309060010', '1', '1', 'upload_files/candidate_tracker/60841186278_DOC-20230523-WA0004..pdf', NULL, '1', '2023-09-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come for Final Round with Gokul but location need to check for HR profile', '6', '1', '', '1', '8', '', '2', '2023-09-09', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-06 02:46:59', 104, '2023-09-06 05:09:04', 0, NULL, 1),
(14372, 'VASANTHAN. V', '14', '9047141072', '6369206417', 'vasanthanvrjpm321@gmail.com', '2000-08-24', 23, '6', '2', 'VIJAYKUMAR. S', 'ELECTRICIAN', 45000.00, 1, 0.00, 200000.00, 'RAJAPALAYAM', 'T Nagar- Chennai', '2309060011', '', '1', 'upload_files/candidate_tracker/62900654006_vasanthvresume.pdf', NULL, '1', '2023-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles No basic skills  Will Not Sustain not much cofmrt in TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-06 02:50:11', 1, '2023-09-06 02:58:46', 0, NULL, 1),
(14373, 'M .Ramkumar', '11', '7358516115', '9360546345', 'm.ramkumarcivil550@gmail.com', '1996-03-27', 27, '1', '2', 'Ram kumar', 'Father', 8000.00, 1, 0.00, 13000.00, 'Chennai', 'Velachery chennai', '2309060012', '', '1', 'upload_files/candidate_tracker/76930206655_DocScanner 6 Sept 2023 14-59.pdf', NULL, '1', '2023-09-06', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles Communication average Will Not Sustain in our roles  health issue he has ', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-06 03:04:57', 1, '2023-09-06 03:11:15', 0, NULL, 1),
(14374, 'Nivetha.S', '4', '8056017573', '', 'nivethasakthivel23@gmail.com', '2002-12-28', 20, '2', '2', 'Sakthivel.P', 'Transport-Superwisor', 15000.00, 2, 0.00, 15000.00, 'New washermenpet', 'New Washermenpet', '2309060013', '1', '1', 'upload_files/candidate_tracker/91173797811_Nivetha resume.pdf', NULL, '1', '2023-09-07', 0, '', '3', '59', '2023-09-11', 151584.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team Consultant Role', '1', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-06 06:10:03', 60, '2023-09-09 04:13:47', 0, NULL, 1),
(14375, 'Abdul Rahim.M', '22', '7604962517', '8925254259', 'sairasairabanu22@gmail.com', '2002-07-17', 21, '6', '2', 'Mohammed gani', 'Bussiness', 150000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2309060014', '', '1', 'upload_files/candidate_tracker/10147584522_CV_2023090610232922.pdf', NULL, '1', '2023-09-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-06 08:12:06', 1, '2023-09-06 09:06:45', 0, NULL, 1),
(14376, 'Arunadevi', '5', '6379588743', '', 'aruna152704@Gmail.com', '1990-04-15', 33, '2', '1', 'Ganesan', 'Business', 500000.00, 2, 20000.00, 280000.00, 'Chennai', 'Chennai', '2309070001', '1', '2', 'upload_files/candidate_tracker/70398865613_Curriculum vitae.pdf', NULL, '1', '2023-09-07', 15, '', '3', '59', '2023-09-19', 300000.00, '', '5', '1970-01-01', '2', 'Selected for GK Sir team Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-07 08:10:48', 60, '2023-09-14 04:33:48', 0, NULL, 1),
(14377, 'Mery b y', '5', '6364443199', '', 'msms13july@gmail.com', '1999-08-15', 24, '2', '2', 'Yosepu', 'Lorry driver', 17000.00, 1, 290000.00, 400000.00, 'Bellary', 'Chennai', '2309070002', '1', '2', 'upload_files/candidate_tracker/69366176748_Mery resume 2023.docx', NULL, '1', '2023-09-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in calling but no locl tamil language for operation high cTC exp will not sustain and handle our workroles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-07 09:47:27', 85, '2023-09-08 03:02:30', 0, NULL, 1),
(14378, 'A Naveen Kumar', '5', '9500193226', '8838332058', 'nk451164@gmail.com', '2000-11-09', 22, '1', '2', 'Chandraiah', 'Watch men', 12000.00, 3, 0.00, 15.00, 'No 96 Narayana Mudali Street', 'Sowcarpet', '2309070003', '', '1', 'upload_files/candidate_tracker/19553882256_Statement_685xxxx3006_01082023_144938.pdf', NULL, '1', '2023-09-07', 0, 'Jobs', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher internal team reference sustainability doubts will not handle our pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-07 10:43:06', 108, '2023-09-07 06:31:50', 0, NULL, 1),
(14379, 'Sudharsan S', '5', '6369449186', '9047347979', 'sudharsans.2000@gmail.com', '2000-03-09', 23, '2', '2', 'Sivakumar', 'Driver', 25000.00, 1, 0.00, 20000.00, 'Villupuram', 'Villupuram', '2309070004', '1', '2', 'upload_files/candidate_tracker/66412287922_new resume1.docx', NULL, '1', '2023-09-07', 0, '', '3', '59', '2023-09-11', 258000.00, '', '5', '1970-01-01', '1', 'Selected for Sarath Team in Staff Role with the oral approval from Gaurav Sir', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-07 10:49:09', 60, '2023-09-11 09:52:43', 0, NULL, 1),
(14380, 'Mohammed shaheen.S', '11', '9710731235', '', 'shaheen99828@gmail.com', '2002-12-21', 20, '3', '2', 'Syed Ibrahim K', 'Telecommunications field engineer', 25000.00, 1, 0.00, 18000.00, 'Sidco nagar villivakkam', '10/140, E- type,Sidco nagar , villivakkam, Ch -49', '2309070005', '', '1', 'upload_files/candidate_tracker/62275478088_RESUME_SHAHEEN_re_1693972093848.pdf', NULL, '1', '2023-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our recruitment role no communication', '6', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-07 11:31:24', 1, '2023-09-07 11:41:39', 0, NULL, 1),
(14381, 'rahul k s', '11', '9080221456', '', 'hulrasri100@gmail.com', '2003-05-22', 0, '6', '2', 'srinivasan p', 'cloth merchant', 25000.00, 1, 0.00, 216000.00, 'villivakkam', 'villivakkam', '2309070006', '', '1', 'upload_files/candidate_tracker/31957280749_Rahul\'s resume.pdf', NULL, '1', '2023-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain for a long have a plan to go with higher studies in canada will not sustain', '6', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-07 11:50:31', 1, '2023-09-07 11:55:31', 0, NULL, 1),
(14382, 'Vinoth', '5', '7639346092', '9080090644', 'vinothkarunanithi1994@gmail.com', '1994-04-09', 29, '3', '2', 'Karunanithi', 'Farmer (cooli)', 20000.00, 3, 18500.00, 19000.00, '279 Uchimettu Street Agaramangudi', 'Papanasam Thanjavur - 614303', '2309070007', '', '2', 'upload_files/candidate_tracker/28961839404_Vinoth 1 2.pdf', NULL, '1', '2023-09-07', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-07 12:06:08', 108, '2023-09-07 06:32:27', 0, NULL, 1),
(14383, 'Rani A', '5', '7094562810', '', 'raniarasu1998@gmail.com', '1993-06-22', 30, '1', '2', 'Arasu A', 'Farmer', 15000.00, 1, 20000.00, 24000.00, 'Thiruvannamalai', 'Ambalnagar', '2309070008', '', '2', 'upload_files/candidate_tracker/71819581080_Rani resume -word.docx', NULL, '1', '2023-09-07', 0, 'p1287', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-07 01:06:51', 108, '2023-09-07 06:30:08', 0, NULL, 1),
(14384, 'Rajan.R', '11', '7358660690', '', 'shamissac.4663@gmail.com', '2000-10-25', 22, '3', '2', 'Raja.R', 'Driver', 120000.00, 1, 0.00, 18.00, 'Redhills', 'Redhills', '2309070009', '', '1', 'upload_files/candidate_tracker/84352822751_RAJAN MBA Resume 2023.pdf', NULL, '1', '2023-09-07', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come back with his confirmation on Intern cum employment if he comes back let us try', '6', '1', '0', '1', '8', '0', '2', '2023-09-09', '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-07 04:14:43', 1, '2023-09-07 04:16:57', 0, NULL, 1),
(14385, 'Casper y', '4', '9688698568', '', 'Sandycasper09@gmail.com', '1998-09-04', 25, '2', '2', 'Yesuraj', 'Welder', 15000.00, 1, 0.00, 15000.00, 'Keelavasal', 'Keelavasal', '2309070010', '1', '1', 'upload_files/candidate_tracker/22365398934_Naukri_Casper[0y_0m].pdf', NULL, '1', '2023-09-08', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-07 05:00:43', 104, '2023-09-08 10:30:54', 0, NULL, 1),
(14386, '', '0', '9080542380', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309070011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-07 06:15:19', 0, NULL, 0, NULL, 1),
(14387, '', '0', '6374434059', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309070012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-07 06:27:52', 0, NULL, 0, NULL, 1),
(14388, '', '0', '7824016994', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309080001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-08 10:04:13', 0, NULL, 0, NULL, 1),
(14389, 'ANUSHIYA', '13', '6374143563', '8124438158', 'anucyber16@gmail.com', '2003-09-16', 19, '1', '2', 'ARUMUGAPANDI', 'Shop keeper', 12000.00, 1, 0.00, 15000.00, 'Pozhichalur', 'Pozhichalur', '2309080002', '', '1', 'upload_files/candidate_tracker/50767670397_Anushiya A Resume.pdf', NULL, '1', '2023-09-08', 0, '55692', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'has  min knowledge in sql .. need to learn a lot', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-08 10:38:57', 1, '2023-09-08 10:44:14', 0, NULL, 1),
(14390, 'R.Dineshan', '6', '9677187494', '', 'dinesdeva420@gmail.com', '1993-07-07', 30, '2', '2', 'G.ravi', 'Cse', 20000.00, 2, 20000.00, 20000.00, 'Koyambedu', 'Koyambedu', '2309080003', '1', '2', 'upload_files/candidate_tracker/38003032184_425.pdf', NULL, '1', '2023-09-08', 1, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-08 10:56:43', 104, '2023-09-08 03:06:41', 0, NULL, 1),
(14391, 'Kavitha', '16', '9150170566', '7904201457', 'kavi44803@gmail.com', '1998-09-29', 24, '2', '2', 'Saravanan', 'Own business', 60000.00, 2, 18000.00, 23000.00, 'Chennai', 'Chennai', '2309080004', '1', '2', 'upload_files/candidate_tracker/74339111904_Kaviya.pdf', NULL, '1', '2023-09-08', 1, '', '3', '59', '2023-09-11', 216000.00, '', '5', '1970-01-01', '2', 'Selected for Renewals  Consultant Role', '3', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-08 11:11:46', 60, '2023-09-09 04:18:18', 0, NULL, 1),
(14392, 'usha kiran sv', '5', '9972655203', '8861050653', 'ushakiransv@gmail.com', '1989-02-22', 34, '3', '1', 'vennila', 'it', 70000.00, 2, 7.00, 9.00, 'second cross club road anadapuram t.c.palya.', 'same the above', '2309080005', '', '2', 'upload_files/candidate_tracker/80603424785_Usha Kiran - CAFS.docx', NULL, '1', '2023-09-08', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-08 11:12:34', 104, '2023-09-08 03:12:51', 0, NULL, 1),
(14393, 'A. DHANUSH', '6', '6385120870', '', 'cm135dhanush@gmail.com', '2002-09-21', 20, '2', '2', 'K. ARUMUGAM', 'Contract labour', 30000.00, 1, 0.00, 15000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2309080006', '1', '1', 'upload_files/candidate_tracker/79682258745_CV_202309011011267.pdf', NULL, '1', '2023-09-08', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'OBSCONT AFTER INTERVIEW COMPLETED ALSO LONG DISTANCE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-08 11:13:06', 104, '2023-09-08 03:06:57', 0, NULL, 1),
(14394, 'Nishu shandilya', '5', '8252066503', '', 'shandilyanishu3@gmail.com', '1997-12-07', 25, '2', '1', 'Tarun baba', 'Team lead', 55000.00, 3, 300000.00, 400000.00, 'Deoghar Jharkhand', 'Btm 2nd stage banglore', '2309080007', '1', '2', 'upload_files/candidate_tracker/18505216093_Nishu shandilya updated CV.pdf', NULL, '1', '2023-09-08', 0, '', '3', '59', '2023-11-14', 270000.00, '', '5', '1970-01-01', '2', 'Selected for Sathish Bangalore in Consultant Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-08 11:19:58', 60, '2023-11-14 10:26:07', 0, NULL, 1),
(14395, 'Sumathi M', '11', '7904002745', '9566117989', 'sumapriya046@gmail.com', '2001-03-26', 22, '3', '2', 'Muniyandi P', 'Carpernder', 15000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2309080008', '', '1', 'upload_files/candidate_tracker/58504377306_sumathi M. resume.pdf', NULL, '1', '2023-09-08', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Not suit for Recruitment', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-08 11:26:27', 1, '2023-09-08 11:32:19', 0, NULL, 1),
(14396, 'Priyadharshini T', '11', '8778350349', '9841035435', 'priyadharshinithamodaran@gmail.com', '2000-10-06', 22, '3', '2', 'Thamodaran', 'Self employed', 35000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2309080009', '', '1', 'upload_files/candidate_tracker/42219634455_priyadharshini pd resume.pdf', NULL, '1', '2023-09-08', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Not Suit For Recruitment', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-08 11:28:01', 1, '2023-09-08 11:30:49', 0, NULL, 1),
(14397, 'Divya S', '6', '9840310008', '9566164512', 'divyajessy2002@gmail.com', '2002-06-09', 21, '2', '2', 'Father', 'Father', 20000.00, 1, 0.00, 15000.00, 'Chennal', 'Chennai', '2309080010', '1', '2', 'upload_files/candidate_tracker/49256662353_CV_2023-08-04-104617.pdf', NULL, '1', '2023-09-08', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'physically she have some problem... not suit for our roles', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-08 11:48:16', 85, '2023-09-08 03:00:26', 0, NULL, 1),
(14398, 'Jully jain', '11', '9916663980', '', 'Jullylunkar.jl@gmail.com', '1989-01-18', 34, '3', '1', 'Mohit jain', 'Private employee', 100000.00, 2, 40000.00, 42000.00, 'Perumbur', 'Perambur chennai', '2309080011', '', '2', 'upload_files/candidate_tracker/43585171766_My_resume.pdf', NULL, '1', '2023-09-08', 1, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Good exp xxamp comm..sal expt high ...', '6', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-08 12:13:14', 1, '2023-09-08 12:36:31', 0, NULL, 1),
(14399, 'Babyshalini', '11', '9445650255', '8248752128', 'babyshalini424@gmail.com', '2001-08-02', 22, '1', '2', 'Parent', 'Business', 15000.00, 1, 0.00, 18000.00, 'Kanchipuram', 'Kanchipuram', '2309080012', '', '1', 'upload_files/candidate_tracker/77558316080_Babyshalini Resume (1).pdf', NULL, '1', '2023-09-08', 0, 'Surya p1420', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Good communication skill.. but she already holding with 12k ... sal exp high', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-08 02:11:38', 1, '2023-09-08 02:15:34', 0, NULL, 1),
(14400, 'Kameshwaran v', '5', '9789945435', '9444851105', 'kamesh591999@gmail.com', '1999-09-05', 24, '2', '2', 'Velayutham', 'Cooly', 10000.00, 2, 19000.00, 25000.00, 'Chennai', 'Chenni', '2309090001', '1', '2', 'upload_files/candidate_tracker/70446015912_kamesh. pdf.pdf', NULL, '1', '2023-09-09', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok fresher for our roles can be trained have exp in salary account opening kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-09 07:46:26', 104, '2023-09-09 10:02:04', 0, NULL, 1),
(14401, 'V Karthick', '5', '7299746729', '', 'jimmuboy2000@gmail.com', '2000-05-24', 23, '2', '2', 'E venkatesan v Nithya', 'Auto driver', 25000.00, 1, 22000.00, 27000.00, 'Chennai', 'Chennai', '2309090002', '1', '2', 'upload_files/candidate_tracker/81799359903_ola resume.pdf', NULL, '1', '2023-09-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in OLA bike sales for 1 yr after that there is a gap for 1yr salary exp is high being a fresher for our roles if he comes back with negotiation can give  a try', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-09 08:16:57', 104, '2023-09-09 04:22:10', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14402, 'Azarudeen', '5', '7550047170', '', 'azarudeenab786@gmail.com', '2000-08-20', 23, '2', '2', 'Ansar basha', 'Auto driver', 30000.00, 1, 12200.00, 20000.00, 'Chennai', 'Chennai', '2309090003', '1', '2', 'upload_files/candidate_tracker/85727224942_Resume A.B. Azarudeen-1.docx', NULL, '1', '2023-09-09', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to open up a lot in sales focus in the salary only Pressure handling doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-09 09:52:52', 108, '2023-09-09 10:41:33', 0, NULL, 1),
(14403, 'Yashas', '5', '6362674559', '9886667404', 'yashasrao1425@gmail.com', '2002-05-01', 21, '2', '2', 'Saraswati', 'Cook', 55.00, 1, 25.00, 25.00, 'Care Of Hotel Rammanna Building. Panathur Dinne.', 'Care Of Hotel Rammanna Building. Panathur Dinne .', '2309090004', '1', '2', 'upload_files/candidate_tracker/35093567045_3.RESUME 3 (Single).pdf', NULL, '1', '2023-09-11', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-09 11:13:41', 104, '2023-09-11 11:54:04', 0, NULL, 1),
(14404, 'Kuna Sunthari. S', '11', '7299786484', '9952048180', 'kuna0801@gmail.com', '2001-01-08', 22, '2', '2', 'Sivamoorthi. A', 'Assistant Manager', 40000.00, 2, 0.00, 15000.00, 'No. 5.Vasu Devan street, Sembiyam, perambur', 'No. 5.Vasu Devan Street, Sembiyam, Perambur', '2309090005', '1', '1', 'upload_files/candidate_tracker/11017921759_KUNA RESUME 2023.pdf', NULL, '1', '2023-09-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not more than an year will not sustain in our roles need time to consider for our roles', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-09 11:23:20', 108, '2023-09-09 11:50:51', 0, NULL, 1),
(14405, 'Dhivya', '5', '9500318826', '', 'dhiyapapadhiya@gmail.com', '2000-08-07', 23, '2', '2', 'Rajan', 'Courier office', 20000.00, 2, 14000.00, 20000.00, 'salem', 'Chrompet', '2309090006', '1', '2', 'upload_files/candidate_tracker/94233965951_CV_2023-08-30-014005.pdf', NULL, '1', '2023-09-09', 2, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile communication Ok sustainability doubts looking for salary much kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-09 11:23:36', 108, '2023-09-09 11:53:37', 0, NULL, 1),
(14406, 'Indhirani.A', '5', '9360289250', '9894954818', 'kiindhu8@gmail.com', '1999-01-14', 24, '2', '2', 'Anbalagan', 'Kooli', 24000.00, 1, 16000.00, 20000.00, 'Salem', 'Chrombet', '2309090007', '1', '2', 'upload_files/candidate_tracker/99731408311_resume.pdf', NULL, '1', '2023-09-09', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain and handle our work pressure frequent job changes not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-09 11:27:22', 108, '2023-09-09 11:54:30', 0, NULL, 1),
(14407, 'Montford Vivek', '11', '9894025532', '6379572066', 'vivekfdo2001@gmail.com', '2001-01-13', 22, '1', '2', 'Benitton', 'Clerk in Shipping Company', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2309090008', '', '1', 'upload_files/candidate_tracker/8684034656_Montford Vivek HR Resume-3-1.pdf', NULL, '1', '2023-09-09', 0, 'JOBS', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have 3 Months Exp In Recruitment And The Salary Exp Is High More Than 18K His Current Is 18K Will Not Handle Our Work Pressure Too', '6', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-09 01:06:53', 1, '2023-09-09 01:11:18', 0, NULL, 1),
(14408, 'Sahithya K', '11', '9095460573', '', 'Ksahithya42@gmail.com', '2001-04-21', 22, '3', '2', 'Sangeetha k', 'Fresher', 70000.00, 1, 0.00, 20000.00, 'D_05, Trcl colony, Alathiyur, Ariyalur District', 'Ekkatuthangal', '2309090009', '', '1', 'upload_files/candidate_tracker/29509028271_Sahithya Resume.pdf', NULL, '1', '2023-09-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have 3 months exp in recruitment and the salary exp is high more than 18K her current is 18K will not handle our work pressure too', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-09 01:10:11', 1, '2023-09-09 01:25:17', 0, NULL, 1),
(14409, 'deepak kumar c', '5', '7358510471', '9043629275', 'deepaksinghaniya152@gmail.com', '2000-06-07', 23, '2', '2', 'chandrakesh kumar', 'sslc', 25000.00, 1, 24000.00, 32000.00, 'chennai', 'chennai', '2309090010', '1', '2', 'upload_files/candidate_tracker/23059216287_WhatsApp Image 2023-09-06 at 10.22.53.pdf', NULL, '1', '2023-09-11', 1, '', '4', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok can be trained in our roles have exp in Bank Bazaar Need to improve his sound can be trained kindly check', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-09 01:52:52', 104, '2023-09-11 10:35:16', 0, NULL, 1),
(14410, 'H sheik arif', '6', '8072645306', '9710322803', 'sheik.arif.1996@gmail.com', '1998-03-03', 25, '2', '2', 'Sheik hasim', 'Gas mechanic', 15000.00, 1, 19500.00, 25000.00, 'Plot no 5 sri lakshmi nagar 5th street', 'Valsarvakkam', '2309090011', '1', '2', 'upload_files/candidate_tracker/38668861500_sheik ARIF RESUME.pdf', NULL, '1', '2023-09-11', 1, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile for our sales have exp in calling Airtel kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-09 03:04:19', 104, '2023-09-11 10:35:55', 0, NULL, 1),
(14411, 'selvam', '6', '6381643100', '', 'selvammac93@gmail.com', '2000-06-01', 23, '3', '2', 'angappam', 'velding', 250000.00, 2, 0.00, 15000.00, 'west mambalam', 'West Mambalam', '2309110001', '', '1', 'upload_files/candidate_tracker/74482413348_Selvam_Resume.pdf', NULL, '1', '2023-09-11', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '1', 'ok than but call panrenu sollitu ipo vara entha pathilum illa so set agathu', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-11 10:43:43', 1, '2023-09-11 11:25:48', 0, NULL, 1),
(14412, '', '0', '7871861473', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309110002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-11 10:51:33', 0, NULL, 0, NULL, 1),
(14413, 'Sowmiya.K', '5', '9962219390', '', 'sowmiyakeshu2000@gmail.com', '2001-11-11', 21, '2', '2', 'Kesavan', 'Cooli', 12.00, 2, 0.00, 15.00, 'Choolai', 'Choolai', '2309110003', '1', '2', 'upload_files/candidate_tracker/34624602319_Sowmiya%20Resume.docx', NULL, '1', '2023-09-11', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile Have 6 Months Exp Incalling But Doubts On Sustainability Kindly Check And Let Me Know Your Inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-11 12:25:50', 60, '2023-09-11 07:27:37', 0, NULL, 1),
(14414, 'harini', '5', '7358931113', '', 'harinibalaji226@gmail.com', '2001-11-06', 21, '2', '2', 'balaji', 'driver', 30000.00, 1, 11800.00, 15000.00, 'kotturpuram', 'Kotturpuram', '2309110004', '1', '2', 'upload_files/candidate_tracker/46796007675_resume photoshop final  00001.pdf', NULL, '1', '2023-09-11', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', '5050 Profile have 6 months exp incalling but doubts on sustainability kindly check and let me know your inputs', '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1019', '0', NULL, NULL, NULL, 1, '2023-09-11 12:28:03', 1, '2023-09-11 12:54:26', 0, NULL, 1),
(14415, 'Bala Arunthathi', '6', '8870394141', '', 'balaarunthathiba12@gmail.com', '2001-08-18', 22, '2', '2', 'Siva', 'Driver', 25000.00, 1, 0.00, 18000.00, 'Virudhunagar', 'Tambaram', '2309110005', '1', '1', 'upload_files/candidate_tracker/69598540962_BALA ARUNTHATHI S new.pdf', NULL, '1', '2023-09-11', 0, '', '3', '59', '2023-09-20', 174000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-11 12:54:45', 60, '2023-09-16 04:40:24', 0, NULL, 1),
(14416, '', '0', '9150283324', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309110006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-11 02:05:50', 0, NULL, 0, NULL, 1),
(14417, 'Sivanithi B', '6', '9629217776', '6382371692', 'sivanithib@gmail.com', '2001-01-09', 22, '1', '2', 'Balasubramanian R', 'Self employee', 200000.00, 1, 0.00, 20000.00, 'Rajapalayam', 'Chennai', '2309110007', '', '1', 'upload_files/candidate_tracker/29800851635_siva resume 15.docx', NULL, '1', '2023-09-11', 0, 'Emp - 55694', '5', '57', NULL, 0.00, '', '0', NULL, '2', 'Not good', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-11 03:01:47', 1, '2023-09-11 03:09:45', 0, NULL, 1),
(14418, 'Saran s', '5', '8072516784', '8939537878', 'sarandanish18@gmail.com', '2001-07-17', 22, '2', '2', 'S Vijayalakshmi', 'Nil', 15000.00, 1, 16000.00, 22000.00, 'Chennai', 'Chennai', '2309120001', '1', '2', 'upload_files/candidate_tracker/27919812506_Saran Resume_(1).pdf', NULL, '1', '2023-09-12', 0, '', '4', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile for our roles have 8 months exp in calling kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-12 09:29:47', 104, '2023-09-12 10:33:33', 0, NULL, 1),
(14419, 'Rangaramanujam', '13', '8526886464', '', 'rangaramanujam2623@gmail.com', '2000-10-26', 22, '6', '2', 'Parent', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Velachery', '2309120002', '', '1', 'upload_files/candidate_tracker/6376445613_ranga (1) (1) (1).pdf', NULL, '1', '2023-09-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Already attended and got rejected not much comfort in TxxampC will not sustain and not suitable final round reject by Gokul', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-12 10:59:31', 104, '2023-09-12 04:07:19', 0, NULL, 1),
(14420, 'Saikumar.R', '13', '6385877923', '8678929257', 'saikumarsanjay9@gma.com', '1999-01-09', 24, '6', '2', 'Ravichandran.s', 'Loan verification officer', 60000.00, 0, 0.00, 10000.00, 'Thambaram', 'Thambaram', '2309120003', '', '1', 'upload_files/candidate_tracker/31250678432_SAIKUMAR RESUME.pdf', NULL, '1', '2023-09-12', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '2023-09-23', '2', 'Fresher for our Roles need to be trained a lot kindly check and let me know your inputs', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-12 11:03:58', 104, '2023-09-12 04:07:33', 0, NULL, 1),
(14421, 'E.keerthana', '6', '8925263710', '7358441506', 'keerthanaanandhi21@gmail.com', '2002-06-28', 21, '2', '2', 'G. Eswaran', 'Farmer', 100000.00, 1, 12000.00, 18000.00, 'Chennai', 'Chennai', '2309120004', '1', '2', 'upload_files/candidate_tracker/49643172078_Keerthana.cv.docx', NULL, '1', '2023-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice process will not handle our sales calling and not suitable for  our operations too', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-12 11:52:01', 85, '2023-09-13 07:26:28', 0, NULL, 1),
(14422, '', '0', '9150450365', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309120005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-12 11:56:25', 0, NULL, 0, NULL, 1),
(14423, 'Sneha. N', '5', '8939059717', '9150450375', 'Snehasmiley297@gmail.com', '2002-07-29', 21, '3', '2', 'Nagarajan. K', 'B. Com', 11000.00, 1, 2.50, 3.50, 'Sharmanagar Near to moolakadai', 'Sharmanagar Near to moolakadai', '2309120006', '', '2', 'upload_files/candidate_tracker/62874545809_SNEHA.N-1.pdf', NULL, '1', '2023-09-12', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '2', 'Rejected', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-12 11:56:39', 1, '2023-09-12 12:08:28', 0, NULL, 1),
(14424, 'Swetha R', '5', '9150450375', '8608433517', 'swetharamesh092002@gmail.com', '2002-05-09', 21, '3', '2', 'K Ramesh', 'Auto driver', 15000.00, 2, 16599.00, 20000.00, 'Chennai', 'Chennai', '2309120007', '', '2', 'upload_files/candidate_tracker/11433286671_20230808_183238.doc', NULL, '1', '2023-09-12', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice Process not much comfort in telecalling will not sustain not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-12 11:58:08', 1, '2023-09-12 12:11:22', 0, NULL, 1),
(14425, '', '0', '9176777674', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309120008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-12 02:34:24', 0, NULL, 0, NULL, 1),
(14426, 'Raman', '6', '8778188265', '', 'ramkumaar992@gmail.com', '1997-01-15', 26, '2', '2', 'R.Ramesh', 'Tnsc Bank chief manager', 50000.00, 1, 0.00, 18000.00, 'Kanchipuram', 'Kanchipuram', '2309120009', '1', '2', 'upload_files/candidate_tracker/95705967844_Ram.pdf', NULL, '1', '2023-09-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No will not sustain and handle our work pressure not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-12 02:52:23', 104, '2023-09-12 04:05:00', 0, NULL, 1),
(14427, 'Leenachristy', '4', '9360899687', '7358387841', 'leenachristy20@gmail.com', '2000-11-20', 22, '6', '2', 'Kasthuri', 'Koolie', 18000.00, 1, 14.50, 18000.00, 'K k nagar, CHENNAI', 'Kk nagar', '2309120010', '', '2', 'upload_files/candidate_tracker/66591113382_Resume_Leena.pdf', NULL, '1', '2023-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-12 04:59:44', 1, '2023-09-12 05:04:26', 0, NULL, 1),
(14428, 'Kalpana', '5', '7708513565', '', 'kalpana19980528@gmail.com', '1998-05-28', 25, '2', '1', 'P Ramesh', 'Operation theatre technician', 18000.00, 1, 275000.00, 380000.00, 'Chennai', 'Chennai', '2309120011', '1', '2', 'upload_files/candidate_tracker/61733502431_Kalpana Resume-3.pdf', NULL, '1', '2023-09-15', 15, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in sales can be trained in our roles kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-12 06:04:08', 104, '2023-09-16 05:11:29', 0, NULL, 1),
(14429, 'Monika S', '33', '7358451377', '9840403573', 'monikasugumar03@gmail.com', '2001-05-03', 22, '2', '2', 'Sugumar', 'Clerk', 25000.00, 1, 14000.00, 20000.00, 'Chennai', 'Teynampet', '2309130001', '1', '2', 'upload_files/candidate_tracker/37944695872_monika sugumar.doc.docx', NULL, '1', '2023-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok but no exp in voice process she need time to confirm her interest if she comes back let us try', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-13 06:04:32', 85, '2023-09-13 07:26:44', 0, NULL, 1),
(14430, 'S.nithya', '4', '9962161834', '9840575541', 'nithyanisha34@gmail.com', '2000-12-23', 22, '2', '2', 'A.Sivakumar', 'Auto Driver', 10000.00, 1, 15000.00, 17000.00, 'Chennai', 'Puthupet', '2309130002', '1', '2', 'upload_files/candidate_tracker/72870820065_S. NITHYA RESUME-2.pdf', NULL, '1', '2023-09-13', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication Mentioned Exp but the way speaks not clear with the roles will not sustain and not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-13 11:28:31', 104, '2023-09-13 12:41:09', 0, NULL, 1),
(14431, 'P.swetha', '6', '7305433658', '8680845347', 'swethasaro3602@gmail.com', '2002-06-03', 21, '2', '2', 'S.perumal', 'Cooli', 15000.00, 1, 11000.00, 15000.00, 'Kosapet,Chennai', 'Kosapet,Chennai', '2309130003', '1', '2', 'upload_files/candidate_tracker/58085637696_Swetha_Resume.pdf', NULL, '1', '2023-09-14', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not suitable  for  this sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-13 11:30:02', 104, '2023-09-14 03:32:02', 0, NULL, 1),
(14432, '', '0', '9940312636', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309130004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-13 11:43:18', 0, NULL, 0, NULL, 1),
(14433, 'thenmozhi', '6', '9344245653', '', 'thenmozhivt13@gmail.com', '2000-11-13', 22, '3', '2', 'uma g', 'domestic worker', 14000.00, 1, 13800.00, 18000.00, 'ayanavaram', 'ayanavaram', '2309130005', '', '2', 'upload_files/candidate_tracker/43159303859_thenmozhi resume.pdf', NULL, '1', '2023-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-13 11:43:21', 1, '2023-09-13 11:51:52', 0, NULL, 1),
(14434, '', '0', '6380757049', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309130006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-13 12:17:56', 0, NULL, 0, NULL, 1),
(14435, '', '0', '9150819438', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309130007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-13 08:03:01', 0, NULL, 0, NULL, 1),
(14436, 'Aasema begum', '5', '8610709435', '', 'aasemabegumf@gmail.com', '2000-09-10', 23, '2', '2', 'Ayesha begum', 'Nil', 40000.00, 2, 0.00, 15000.00, 'Dashamakkan', 'Otteri', '2309130008', '1', '1', 'upload_files/candidate_tracker/99624283386_1682784024337_AASEMA BEGUM 1 (1).pdf', NULL, '1', '2023-09-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No VOice Claroty Not open for Targets will not sustain not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-13 10:56:17', 108, '2023-09-14 11:48:43', 0, NULL, 1),
(14437, '', '0', '9176191470', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-14 05:41:40', 0, NULL, 0, NULL, 1),
(14438, 'Thilosha Rajkumar', '6', '8939119556', '9047115241', 'thilokutty2003@gmail.com', '2003-01-19', 20, '2', '2', 'Kamatchi S', 'Teacher', 1000000.00, 0, 0.00, 20000.00, 'Uthukottai', 'T nagar', '2309140002', '1', '1', 'upload_files/candidate_tracker/82339352089_thilo resume.docx', NULL, '1', '2023-09-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good Have a plan to travel abroad for higher studies MBA preparing for the exams time being looking for opportunities will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-14 10:49:51', 104, '2023-09-14 03:32:12', 0, NULL, 1),
(14439, 'Karthikeyan', '31', '8870185465', '', 'icekarthik001@gmail.com', '2001-07-09', 22, '2', '2', 'Kavitha', 'Homemaker', 10000.00, 1, 0.00, 15000.00, 'Trichy', 'Chennai', '2309140003', '26', '1', 'upload_files/candidate_tracker/29251845516_DOC-20230804-WA0003..pdf', NULL, '1', '2023-09-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to learn and come back if he comes let su try for Javascript', '2', '1', '0', '1', '8', '0', '2', '2023-10-01', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-14 11:39:31', 1, '2023-09-14 11:48:02', 0, NULL, 1),
(14440, 'Hemakumar', '5', '9566632056', '', 'hemakumar2905@gmail.com', '1998-05-29', 25, '2', '2', 'Mannar', 'Vegetable sales', 15000.00, 3, 12000.00, 16000.00, 'School street arni', 'Gvr pg Jain college bus stop thuraipakkam', '2309140004', '1', '2', 'upload_files/candidate_tracker/72360264916_KUMAR RES.pdf', NULL, '1', '2023-09-14', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Televerification not much comfort in Sales calling will not sustain not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-14 11:43:19', 108, '2023-09-14 12:01:06', 0, NULL, 1),
(14441, 'Nivetha.s', '6', '7305339131', '8754226612', 'Nivethaa676@gmail.com', '2001-04-12', 22, '2', '2', 'Selvam', 'Telecalling', 15000.00, 1, 15000.00, 18000.00, 'Thousand lights', 'Royapettah', '2309140005', '1', '2', 'upload_files/candidate_tracker/21522772288_NivethaResumeDoc.docx', NULL, '1', '2023-09-14', 0, '', '3', '59', '2023-09-19', 177600.00, '', '5', '1970-01-01', '2', 'Selected for Muthu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-14 12:01:32', 60, '2023-09-16 04:38:40', 0, NULL, 1),
(14442, 'reshma chandrasekar', '11', '9003063265', '', 'reshmachandrasekar76@gmail.com', '2001-02-07', 22, '3', '2', 'r chandrasekar', 'business', 500000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2309140006', '', '1', 'upload_files/candidate_tracker/86381411344_reshma\'s resume.pdf', NULL, '1', '2023-09-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to check for 2nd level with Gokul sustainability doubts in our roles need to check and confirm', '6', '1', '0', '1', '8', '0', '2', '2023-09-19', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-14 12:05:50', 1, '2023-09-14 12:18:30', 0, NULL, 1),
(14443, 'Karan Kumar', '5', '8778258196', '', 'karanbolt22308@gmail.com', '2001-05-26', 22, '2', '2', 'Palanj M', 'Gaurd', 200000.00, 1, 20000.00, 23000.00, 'Chennai', 'Chennai', '2309140007', '1', '2', 'upload_files/candidate_tracker/53899760036_Karan.pdf.png.PDF', NULL, '1', '2023-09-14', 0, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-14 12:46:25', 85, '2023-09-14 07:09:20', 0, NULL, 1),
(14444, 'Anjumara.A', '5', '7449177351', '9080553083', 'anjumara64667@gmail.com', '1999-07-09', 24, '1', '2', 'Zamruth begum', 'House wife', 15000.00, 2, 15000.00, 18000.00, 'Old washermenpet', 'Old washermenpet', '2309140008', '', '2', 'upload_files/candidate_tracker/27447415508_Anjum Ara.docx', NULL, '1', '2023-09-14', 0, '55655', '3', '59', '2023-09-15', 216000.00, '', '3', '2024-01-02', '2', 'Selected for Syed Team Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', 'Changed to Staff role on the day of joining based on candidate interest', '', '', '', NULL, NULL, NULL, 1, '2023-09-14 01:07:58', 60, '2023-09-15 10:54:53', 0, NULL, 1),
(14445, '', '0', '7810092683', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309140009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-14 06:59:05', 0, NULL, 0, NULL, 1),
(14446, 'Vishnu', '4', '9962225745', '9841519794', 'vishnustrikez01@gmail.com', '2001-09-28', 21, '3', '2', 'Ramesh', 'Tailor', 100000.00, 2, 13000.00, 20000.00, 'Korukkupet', 'Korukkupet', '2309140010', '', '2', 'upload_files/candidate_tracker/88124766875_VISHNU CV.pdf', NULL, '1', '2023-09-19', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-14 09:13:07', 1, '2023-09-14 09:17:16', 0, NULL, 1),
(14447, 'Gayathri k', '5', '8056221993', '7358015987', 'gayathrikumar019@gmail.com', '1993-12-19', 29, '2', '1', 'P.R.kumar', 'Retired', 50000.00, 1, 23500.00, 25000.00, 'Chennai', 'Chennai', '2309140011', '1', '2', 'upload_files/candidate_tracker/20466293552_resume 2023(1).pdf', NULL, '1', '2023-09-16', 0, '', '3', '59', '2023-09-19', 321696.00, '', '5', '1970-01-01', '1', 'Selected for Shanmugam Team with Staff Role  1 month 1.5L Business then 25K Net take Home', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-14 10:01:38', 60, '2023-09-19 10:29:40', 0, NULL, 1),
(14448, 'Sivadharshini.J', '6', '8248487357', '', 'Sivadharshinijodhi@gmail.com', '2001-06-23', 22, '2', '2', 'J.Jodhi ,Mala.J', 'Father is a Vegetable seller', 35000.00, 1, 0.00, 25000.00, 'Teynampet,chennai-18', 'Teynampet ,chennai -18', '2309150001', '1', '2', 'upload_files/candidate_tracker/1646533131_SIVADHARSHINI J.pdf', NULL, '1', '2023-09-15', 0, '', '3', '59', '2023-09-19', 177600.00, '', '5', '1970-01-01', '2', 'Selected fr Muthu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-15 09:34:46', 60, '2023-09-16 04:35:09', 0, NULL, 1),
(14449, 'M. Sai Shravan', '11', '8939413999', '8056207249', 'saishravan2002@gmail.com', '2002-03-21', 21, '2', '2', 'Pavan kumar', 'Business', 80000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2309150002', '1', '1', 'upload_files/candidate_tracker/36546197824_sai.pdf', NULL, '1', '2023-09-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is into graduation yet to complete his education bit attitude will not sustain for a long not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-15 10:40:34', 108, '2023-09-15 11:13:35', 0, NULL, 1),
(14450, 'maheswari', '5', '8122146255', '', 'srimahes1990@gmail.com', '1989-04-18', 34, '3', '1', 'mookkaiyan', 'farmer', 35000.00, 4, 35000.00, 35000.00, 'thanjavur', 'perunjudi', '2309150003', '', '2', 'upload_files/candidate_tracker/30590328061_Maheswari M Resume..pdf', NULL, '1', '2023-09-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Aged Career Gap much looking for non voice not suitable', '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-15 10:47:20', 1, '2023-09-15 10:54:52', 0, NULL, 1),
(14451, 'Mohammed Ismail Azath K', '2', '7010769239', '9566176406', 'azathkk@gmail.com', '1998-04-09', 25, '3', '2', 'U KALIDH', 'Mechanic', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2309150004', '', '1', 'upload_files/candidate_tracker/63565674775_MOHAMMED ISMAIL AZATH\'s Resume (1).pdf', NULL, '1', '2023-09-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have basic knowledge can be trained in our skills but not ok with TxxampC if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-15 11:53:22', 1, '2023-09-15 11:55:33', 0, NULL, 1),
(14452, '', '0', '8056207249', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309150005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-15 02:55:48', 0, NULL, 0, NULL, 1),
(14453, '', '0', '9597207766', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309150006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-15 07:23:58', 0, NULL, 0, NULL, 1),
(14454, 'Raja vadivelan', '6', '6385294252', '', '312006331rajavadivelan@gmail.com', '2003-07-05', 20, '2', '2', 'Saravanan', 'Marketing Executive', 30000.00, 1, 18000.00, 18000.00, 'Arumbakkam', 'Arumbakkam', '2309160001', '1', '2', 'upload_files/candidate_tracker/81104380266_Richard resume.pdf', NULL, '1', '2023-09-16', 0, '', '3', '59', '2023-09-20', 192000.00, '', '5', '1970-01-01', '1', 'selected for Gopinath team in Staff ROle', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-16 09:49:11', 60, '2023-09-19 04:13:43', 0, NULL, 1),
(14455, 'Mohammad Fazil j', '14', '7092827778', '9941297937', 'mohammedfazilj3@gmail.com', '2002-10-21', 20, '6', '1', 'Jakkir Hussain S', 'Daily wages', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2309160002', '', '1', 'upload_files/candidate_tracker/82118335217_FAZIL J.pdf', NULL, '1', '2023-09-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for TxxampC fresher will not sustain', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-16 10:37:19', 1, '2023-09-16 10:51:48', 0, NULL, 1),
(14456, 'SHOBA L', '6', '9003033826', '8056157976', 'shobaloganathan12@gmail.com', '2002-09-12', 21, '2', '2', 'SUMATHI', 'Servant', 8000.00, 1, 0.00, 17000.00, 'Pallavaram', 'Pallavaram', '2309160003', '1', '1', 'upload_files/candidate_tracker/12640717836_SHOBA RESUME 2-1 (1).pdf', NULL, '1', '2023-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance not much suitable for our voice process will not sustain and handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-16 11:24:47', 104, '2023-09-19 10:04:33', 0, NULL, 1),
(14457, 'Keerthana S', '6', '9042063142', '9790083641', 'keerthanarenuga2002@gmail.com', '2002-08-05', 21, '2', '2', 'Selvakumar', 'Driver', 8000.00, 1, 0.00, 15000.00, 'No:10/19 Kakkan street, H.L colony', 'Pammal', '2309160004', '1', '1', 'upload_files/candidate_tracker/59990179672_keerthana resume 2.docx', NULL, '1', '2023-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance Not Much Suitable For Our Voice Process Will Not Sustain And Handle Our Work Pressure', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-16 11:35:05', 104, '2023-09-19 01:14:59', 0, NULL, 1),
(14458, 'AKSHAYA G', '6', '7305760992', '8681923908', 'a2003627akshaya@gmail.com', '2003-06-27', 20, '2', '2', 'GOPI S', 'Coolie', 10000.00, 1, 0.00, 15000.00, 'No:51 Gandhi street thiruneermalai chennai', 'No:51 Gandhi street thiruneermalai chennai', '2309160005', '1', '1', 'upload_files/candidate_tracker/46528266570_akshaya.G Resume (2).docx', NULL, '1', '2023-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance Not Much Suitable For Our Voice Process Will Not Sustain And Handle Our Work Pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-16 11:49:17', 104, '2023-09-19 01:15:48', 0, NULL, 1),
(14459, 'A.Emmema', '4', '6379218413', '9941355920', 'emmemaanthony@gmail.com', '2001-05-30', 22, '6', '2', 'A.Anthony', 'Church paster', 10000.00, 2, 0.00, 15000.00, 'No.2 nalla thambi street thiru Nagar Nagalkeni', 'Nagalkeni', '2309160006', '', '1', 'upload_files/candidate_tracker/67449400122_emmema resume.pdf', NULL, '1', '2023-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-16 12:11:37', 1, '2023-09-16 12:26:37', 0, NULL, 1),
(14460, 'Shaik Malik M', '14', '7200972793', '9962026030', 'shaikmalik.web@gmail.com', '1990-07-25', 33, '3', '2', 'Shaik Mohamed A', 'Retired Marine Engineer', 360000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2309160007', '', '1', 'upload_files/candidate_tracker/64979023219_Shaik Malik M Resume.docx', NULL, '1', '2023-09-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude Long Career in Admin Roles 33 yrs will not sustain and not suits for TxxampC not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-16 12:56:49', 1, '2023-09-16 12:59:54', 0, NULL, 1),
(14461, 'Mohamed jehirudin.s', '5', '9952772128', '', 'Mohamedjehirudin@gmail.com', '2001-09-10', 22, '2', '2', 'Mohamed sirajudeen.s', 'Hazrath (masque)', 180000.00, 3, 0.00, 2.50, 'Tiruchirapalli', 'Iyyappanthangal, chennai', '2309160008', '1', '1', 'upload_files/candidate_tracker/42609973283_MOHAMED JEHIRUDIN.S RESUME .pdf', NULL, '1', '2023-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-16 07:22:34', 104, '2023-09-19 10:09:55', 0, NULL, 1),
(14462, 'K.logiya', '6', '9094958209', '7305354024', 'logiyalogiya913@gmail.com', '2001-10-05', 21, '2', '2', 'P.kumar', 'BBA', 400000.00, 2147483647, 19000.00, 17000.00, 'T.nagar', 'Dr Thomas road t.nagar', '2309190001', '1', '2', 'upload_files/candidate_tracker/61447160045_logiya.pdf.pdf', NULL, '1', '2023-09-19', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is Not fit for Tele sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-19 11:04:37', 1, '2023-09-19 12:06:24', 0, NULL, 1),
(14463, 'MOHAMMED ASHIQ', '23', '7358746251', '7299542312', 'ashikoffl13@gmail.com', '2002-12-13', 20, '3', '2', 'Iqbal Mohammad', 'Daily wages', 8500.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2309190002', '', '1', 'upload_files/candidate_tracker/27747027516_AQADvLQxG1WRQFR-.pdf', NULL, '1', '2023-09-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills need to come back after learning of he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-19 11:11:42', 1, '2023-09-19 11:23:39', 0, NULL, 1),
(14464, 'A.Emmema', '6', '6379218412', '9941355920', 'emmemaanthony@gmail.com', '2001-05-30', 22, '2', '2', 'A.Anthony', 'Church paster', 10000.00, 2, 0.00, 15000.00, 'No.2 nalla thambi street thiru Nagar', 'Nagalkeni', '2309190003', '1', '1', 'upload_files/candidate_tracker/24878107445_emmema resume.docx', NULL, '1', '2023-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance Not Much Suitable For Our Voice Process Will Not Sustain And Handle Our Work Pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-19 11:36:44', 104, '2023-09-19 06:15:37', 0, NULL, 1),
(14465, '', '0', '6380676210', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-19 07:24:49', 0, NULL, 0, NULL, 1),
(14466, 'Priyadharshini', '16', '8939476832', '9789832694', 'priyadharshinirajendran98@gmail.com', '1998-09-02', 25, '2', '2', 'Rajendran', 'Food delivery', 50000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2309190005', '1', '2', 'upload_files/candidate_tracker/27171303522_priya updated cv.pdf', NULL, '1', '2023-09-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not active No Communication will nothandle our work roles not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-19 09:03:00', 85, '2023-09-20 03:59:12', 0, NULL, 1),
(14467, 'Ashwathi', '16', '8939317815', '', 'ashwathik16@gmail.com', '1999-07-16', 24, '2', '2', 'Kalaivanan', 'Business', 15000.00, 3, 275000.00, 385000.00, 'Redhills, Chennai', 'Redhills, chennai', '2309200001', '1', '2', 'upload_files/candidate_tracker/60455374797_Ashwathi_Kalaivanan.pdf', NULL, '1', '2023-09-20', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Average Communication Have Exp in MIS but not much relevant sustainability doubts and high salary Exp', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2023-09-20 09:35:45', 1, '2023-09-20 09:49:24', 0, NULL, 1),
(14468, 'Nizar ahammed A', '2', '9003878122', '9003955305', 'nizarahammed85@gmail.com', '1999-05-21', 24, '3', '2', 'Anwar batcha M', 'Sales Man', 15000.00, 1, 0.00, 350000.00, 'Dindigul', 'Chennai', '2309200002', '', '1', 'upload_files/candidate_tracker/21680331982_CV_2023091919545141.pdf', NULL, '1', '2023-09-20', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to complete his graducation', '2', '1', '0', '1', '8', '0', '2', '2024-03-30', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-20 10:12:24', 1, '2023-09-20 10:24:01', 0, NULL, 1),
(14469, 'MAQSOOD AHAMED S', '13', '9150661669', '9940400859', 'maqsoodahamed3rd@gmail.com', '2002-03-03', 21, '3', '2', 'Shaffiq Ahamed K', 'Tailor', 13000.00, 2, 0.00, 25000.00, '36, Venkateshwara Nagar, Kodungaiyur, Ch-118', 'Chennai', '2309200003', '', '1', 'upload_files/candidate_tracker/65688030692_Maqsood resume 2023.pdf', NULL, '1', '2023-09-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Rejected In Aptitude Round', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-20 10:14:12', 1, '2023-09-20 10:24:08', 0, NULL, 1),
(14470, 'Vinotha', '2', '9344186604', '', 'vinothakrishnan18@gmail.com', '2000-11-02', 22, '3', '2', 'Krishnan', 'Farmer', 20000.00, 2, 0.00, 25000.00, 'East Street, ranasinapuram (po), Thirupathur (tk)', 'Keh olive castles,Royapettah.', '2309200004', '', '1', 'upload_files/candidate_tracker/96710829080_vinotha krishnan _resume (1).pdf', NULL, '1', '2023-09-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Rejected In Aptitude Round', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-20 10:14:18', 1, '2023-09-20 10:26:14', 0, NULL, 1),
(14471, 'Ahamed maiden B', '2', '9750751493', '9585406535', 'ahamedmaideen417@gmail.com', '2002-07-08', 21, '3', '2', 'Samsul Aarifa', 'House Wife', 10000.00, 2, 0.00, 25000.00, 'Thanjavur', 'Royapettah', '2309200005', '', '1', 'upload_files/candidate_tracker/58255632752_null.pdf', NULL, '1', '2023-09-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Rejected In Aptitude Round', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-20 10:14:33', 1, '2023-09-20 10:37:14', 0, NULL, 1),
(14472, 'Nisharudeen M', '2', '9585406535', '9487293316', 'nisarroman2@gmail.com', '2002-01-11', 21, '3', '2', 'Mohamed Hussain', 'Fisher Man', 15000.00, 5, 0.00, 25000.00, 'Thanjavur', 'Royappettah', '2309200006', '', '1', 'upload_files/candidate_tracker/14600508144_Resume.pdf', NULL, '1', '2023-09-20', 0, '', '2', '97', NULL, 0.00, '', '0', NULL, '2', 'Aptitude clear can try for next round of interview but candiate yet to complete his college will hold Now .if he come back let us check.', '2', '1', '0', '1', '8', '0', '2', '2024-06-21', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-20 10:14:42', 1, '2023-09-20 10:27:27', 0, NULL, 1),
(14473, 'Mohammed Aafaq Adeel PS', '13', '8754039746', '7448527316', 'aafaqjob@gmail.com', '2001-08-02', 22, '3', '2', 'Suhail Ahmed pS', 'Leather business', 15000.00, 2, 0.00, 350000.00, 'Vaniyambadi', 'Chennai', '2309200007', '', '1', 'upload_files/candidate_tracker/9159910224_Mohammed Aafaq Adeel 1.pdf', NULL, '1', '2023-09-20', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected In Aptitude Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2023-09-20 10:14:42', 154, '2026-04-13 04:08:30', 0, NULL, 1),
(14474, 'Mohamed Nalim', '13', '8508820985', '', 'mohamednalim8508@gmail.com', '2001-12-08', 21, '3', '2', 'usman ali', 'hsc', 40000.00, 2, 0.00, 20000.00, 'paramakudi', 'chennai', '2309200008', '', '1', 'upload_files/candidate_tracker/59516317731_MOHAMED NALIM RESUME.pdf', NULL, '1', '2023-09-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Rejected In Aptitude Round', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-20 10:15:55', 1, '2023-09-20 10:20:12', 0, NULL, 1),
(14475, 'Prithiv', '2', '9123513467', '', 'prithivmessi@gmail.com', '2002-05-28', 21, '3', '2', 'Gandhi', 'Business', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2309200009', '', '1', 'upload_files/candidate_tracker/40909228481_prithiv (1).pdf', NULL, '1', '2023-09-20', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected In Aptitude', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-20 10:19:05', 108, '2023-09-20 10:53:42', 0, NULL, 1),
(14476, 'Tamil Arasu', '5', '9940464959', '7448550155', 'Stamilarasuselvaraj@gmail.com', '2002-11-07', 20, '2', '2', 'Selvaraj', 'Fresher', 15000.00, 1, 0.00, 20000.00, 'Chennai ( pallavaram)', 'Pallavaram', '2309200010', '1', '1', 'upload_files/candidate_tracker/66222898704_Tamil Arasu S_Color Format – 04-1.pdf', NULL, '1', '2023-09-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance not open for Voice process much looking for non voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-20 10:27:00', 108, '2023-09-20 10:56:04', 0, NULL, 1),
(14477, 'Charles Daniel s', '5', '7200608311', '9962261046', 'charlesdaniel3232@gmail.com', '2003-03-29', 20, '2', '2', 'Stalinsugertharaj l', 'Driver', 10000.00, 1, 0.00, 20000.00, 'Chennai Pallavaram', 'Pammal', '2309200011', '1', '1', 'upload_files/candidate_tracker/53162106802_charles resume.docx', NULL, '1', '2023-09-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too Long Distance Not Open For Voice Process Much Looking For Non Voice', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-20 10:29:57', 108, '2023-09-20 10:56:42', 0, NULL, 1),
(14478, 'V Balaji', '4', '8015551255', '9787181388', 'Balajivbalaji8@gmail.com', '1999-12-30', 23, '2', '2', 'Vasanthakumar', 'Gold smith', 120000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2309200012', '1', '1', 'upload_files/candidate_tracker/50676172402_Balaji Resume.pdf', NULL, '1', '2023-09-20', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-20 10:30:09', 85, '2023-09-20 10:55:02', 0, NULL, 1),
(14479, 'Hariharan', '13', '9025130154', '8903458388', 'harikby09@gmail.com', '2001-01-09', 22, '3', '2', 'S Kumar', 'Business', 300000.00, 1, 0.00, 30000.00, 'cuddalore-607105', 'Chennai', '2309200013', '', '1', 'upload_files/candidate_tracker/16963504733_Entry Level Tech Professional Resume_20230901_170221_0000.pdf', NULL, '1', '2023-09-20', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected in Aptitude', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-20 10:33:51', 104, '2023-09-20 07:22:25', 0, NULL, 1),
(14480, 'Vaishali', '16', '9789832694', '9941672113', 'vaishalirajendran2108@gmail.com', '2002-10-21', 20, '3', '2', 'Rajendran', 'Food delivery', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2309200014', '', '1', 'upload_files/candidate_tracker/45204223615_Resume general.pdf', NULL, '1', '2023-09-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice only', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-20 11:24:09', 1, '2023-09-20 11:32:37', 0, NULL, 1),
(14481, 'Mohammed Nadeem', '4', '8667658136', '', 'nadeem29494@gmail.com', '1994-04-29', 29, '2', '1', 'Faseeha', 'Working', 32000.00, 1, 16000.00, 18000.00, 'Mudichur', 'Mudichur', '2309200015', '1', '2', 'upload_files/candidate_tracker/19085942151_Nadeem Resume.docx', NULL, '1', '2023-09-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sustainability too long distance will not handle our work roles not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-20 11:36:23', 104, '2023-09-20 03:16:04', 0, NULL, 1),
(14482, 'Ravi pa', '14', '9940304335', '', 'ravi83423@gmail.com', '1994-05-26', 29, '3', '2', 'Arumugam', 'Moulding work', 20000.00, 3, 0.00, 10000.00, 'Chennai', 'Chennai', '2309200016', '', '1', 'upload_files/candidate_tracker/75915397946_RAVI BRO (2).pdf', NULL, '1', '2023-09-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Yet to Complete Graduation Question Task Rejected', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-20 12:12:44', 1, '2023-09-20 12:19:00', 0, NULL, 1),
(14483, 'Aravind S', '14', '9361501491', '', 'aroonaravind23@gmail.com', '2001-05-11', 22, '3', '2', 'D. SHANMUGAM', 'ELECTRICIAN', 20000.00, 2, 0.00, 15000.00, 'Royapettah Chennai', 'Chennai', '2309200017', '', '1', 'upload_files/candidate_tracker/99818352084_Aravind.pdf', NULL, '1', '2023-09-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Yet To Complete Graduation Question Task Rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-20 12:13:06', 1, '2023-09-20 12:18:45', 0, NULL, 1),
(14484, 'Tharun Kumar P', '14', '9176858666', '9791548207', 'tharunkumar10032003@gmail.com', '2003-03-10', 20, '3', '2', 'Palavi. V', 'Plumber', 12000.00, 1, 0.00, 15000.00, 'Chennai 600101', '1/1 4th Street Padi Pudhu Nagar Mogappair Esat', '2309200018', '', '1', 'upload_files/candidate_tracker/31622298819_Minimalist White and Grey Professional Resume (2).pdf', NULL, '1', '2023-09-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Yet To Complete Graduation Question Task Rejected', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-20 12:13:32', 1, '2023-09-20 12:22:16', 0, NULL, 1),
(14485, 'JAGADEESWAR', '14', '9566152871', '', 'ajagadeeswar252@gmail.com', '2002-10-15', 20, '3', '2', 'Anand Raj', 'Aquarium buisness', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2309200019', '', '1', 'upload_files/candidate_tracker/79832770444_jack.pdf', NULL, '1', '2023-09-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Yet To Complete Graduation Question Task Rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-20 12:13:36', 1, '2023-09-20 12:34:47', 0, NULL, 1),
(14486, 'AKSHAYA. J', '14', '9791548207', '', 'akshayagj412@gmail.com', '2002-12-04', 20, '3', '2', 'JAYAVEL MURUGAN. K', 'Executive Supervisor', 18000.00, 0, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2309200020', '', '1', 'upload_files/candidate_tracker/26610549695_Professional Modern CV Resume (1).pdf', NULL, '1', '2023-09-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Yet To Complete Graduation Question Task Rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-20 12:16:11', 1, '2023-09-20 12:21:45', 0, NULL, 1),
(14487, '', '0', '9514761171', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309200021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-20 02:17:13', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14488, 'Shoaib Muhammad k', '13', '8939308173', '', 'Shoaibmd1104@gmail.com', '2001-04-11', 22, '6', '2', 'Khaleelullah', 'Business', 25000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2309210001', '', '1', 'upload_files/candidate_tracker/54381091956_1000016604.pdf', NULL, '1', '2023-09-21', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'Failed In Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-21 10:09:53', 1, '2023-09-21 10:27:51', 0, NULL, 1),
(14489, 'D.Dinesh perumal', '2', '9500944187', '', 'dineshprml@gmail.com', '2000-10-06', 22, '3', '2', 'P.Deva pandian', 'Student', 9000.00, 1, 0.00, 20000.00, 'Madurai', 'Chennai', '2309210002', '', '1', 'upload_files/candidate_tracker/2446165727_Dinesh\'s Resume.pdf', NULL, '1', '2023-09-21', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'Failed In Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-21 10:10:03', 1, '2023-09-21 10:22:15', 0, NULL, 1),
(14490, 'Ashfaque Ahmed N', '2', '7358264122', '', 'ashfaqueahmed.n200@gmail.com', '2002-03-27', 21, '3', '2', 'NOORUDEEN', 'Clerk', 15000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2309210003', '', '1', 'upload_files/candidate_tracker/52630159105_Ashfaq Resume-1.pdf', NULL, '1', '2023-09-21', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'Failed In Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-21 10:10:05', 1, '2023-09-21 10:26:55', 0, NULL, 1),
(14491, 'Srivatsan M M', '2', '9080100325', '', 'vatsan24sri@gmail.com', '2001-12-24', 21, '3', '2', 'Madhusudan Manjrekar', 'LIC agent', 1400000.00, 1, 0.00, 20000.00, 'Feroz sahib street, Royapettah, chennai - 14', 'Mohammed Hussain street, Royapettah, chennai -14', '2309210004', '', '1', 'upload_files/candidate_tracker/8590222268_Resume_vatsan.pdf', NULL, '1', '2023-09-21', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Failed In Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-21 10:10:09', 1, '2023-09-21 10:31:28', 0, NULL, 1),
(14492, 'Syed Mohammed Farhan Hussain', '13', '9342468125', '', 'syedfarhanmd18900@gmail.com', '2000-09-18', 23, '3', '2', 'Sabiha Banu', 'Call Centre', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2309210005', '', '1', 'upload_files/candidate_tracker/4856180895_InShot_20230921_102247806.pdf', NULL, '1', '2023-09-21', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'Failed In Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-21 10:10:14', 1, '2023-09-21 10:25:07', 0, NULL, 1),
(14493, 'IZAS AHAMED J', '2', '9003660492', '', 'izasahamed57@gmail.com', '2001-07-17', 22, '3', '2', 'JALALUDEEN.A', 'STUDENT', 15000.00, 1, 0.00, 20000.00, 'THANJAVUR', 'CHENNAI', '2309210006', '', '1', 'upload_files/candidate_tracker/92840055844_Resume.pdf.pdf', NULL, '1', '2023-09-21', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Failed In Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-21 10:10:17', 1, '2023-09-21 10:18:27', 0, NULL, 1),
(14494, 'Durga Devi', '5', '9585510164', '7825943173', 'durgadurga6548@gmail.com', '1998-01-13', 25, '2', '2', 'Mathiyazagan', 'Former', 25000.00, 2, 0.00, 20000.00, 'Mayiladuthurai', 'Ekkatuthangal', '2309210007', '1', '1', 'upload_files/candidate_tracker/90738956900_DURGA DEVI M.docx', NULL, '1', '2023-09-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Calling but very Less and the salary exp is high if she comes back let us try ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-21 10:11:32', 108, '2023-09-21 10:36:57', 0, NULL, 1),
(14495, 'Praveen J', '13', '6384289005', '', 'jp20001030@gmail.com', '2000-10-30', 22, '3', '2', 'Jayakumar D', 'Non-teaching Staff', 12000.00, 0, 0.00, 20000.00, '23, Vadian Street, Virudhunagar', 'Chennai', '2309210008', '', '1', 'upload_files/candidate_tracker/23322196365_Praveen .pdf', NULL, '1', '2023-09-21', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Failed In Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-21 10:14:27', 1, '2023-09-21 10:36:16', 0, NULL, 1),
(14496, 'Sivasankar R', '13', '7338925259', '', 'sivasankar280602@gmail.com', '2002-06-28', 21, '3', '2', 'Ramamoorthy S', 'Supervisor', 20000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2309210009', '', '1', 'upload_files/candidate_tracker/64098850731_SIVASANKAR.R CV (1).pdf', NULL, '1', '2023-09-21', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Failed In Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-21 10:17:49', 1, '2023-09-21 10:21:57', 0, NULL, 1),
(14497, 'SHAFEEQ AHAMED. M', '2', '8925126466', '', 'Shafeeqahamed763@gmail.com', '2001-09-28', 21, '3', '2', 'MOHAMED IQBAL.M', 'Business', 200000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2309210010', '', '1', 'upload_files/candidate_tracker/11584386790_DOC-20230920-WA0009..docx', NULL, '1', '2023-09-21', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'Not Selected For Apttitude Test.', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-21 10:24:23', 1, '2023-09-21 10:29:31', 0, NULL, 1),
(14498, 'SYED IRFAN', '31', '9080559475', '', 'syedirfan8079@gmail.com', '2001-02-10', 22, '3', '2', 'SYED FAROOK', 'Business', 20000.00, 0, 15000.00, 25000.00, 'Chennai, Chrompet', 'Chennai, Chrompet', '2309210011', '', '2', 'upload_files/candidate_tracker/39890074386_22IT110 Syed Irfan Resume.pdf', NULL, '1', '2023-09-21', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'Failed In Aptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-21 10:37:19', 1, '2023-09-21 10:41:45', 0, NULL, 1),
(14499, 'Sameema banu N', '5', '7708198431', '', 'Sameemuba043@gmail.com', '2002-03-04', 21, '2', '2', 'Navan jan', 'Sales', 15000.00, 1, 15000.00, 20000.00, 'Cuddalore', 'Ekkatthangal', '2309210012', '1', '2', 'upload_files/candidate_tracker/34079878040_DOC-20230612-WA0175..pdf', NULL, '1', '2023-09-21', 0, '', '3', '59', '2023-09-29', 186000.00, '', '5', '1970-01-01', '2', 'Selected for Muthu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-21 11:41:36', 60, '2023-09-28 05:43:23', 0, NULL, 1),
(14500, 'Priya dharshini', '11', '9360188402', '', 'Priyaraj071123@gmail.com', '1997-11-07', 25, '2', '2', 'Kanagaraj', 'Chef', 30000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2309210013', '1', '2', 'upload_files/candidate_tracker/34593712671_Resume Priyadharshini-1.pdf', NULL, '1', '2023-09-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Active  very slow will not sustain will not handle our pressure', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-21 12:17:01', 108, '2023-09-25 01:32:33', 0, NULL, 1),
(14501, 'Meganathan U', '13', '9361934637', '', 'usmeganathan007@gmail.com', '2000-07-14', 23, '3', '2', 'No.264,Chikkanankuppam (Village & Post), Ambalur (via), Vaniyambadi (T.K), Thirupattur (D.T)', 'Former', 18000.00, 2, 0.00, 15000.00, 'No.264,Chikkanankuppam, Vaniyambadi ,Thirupattur', 'Chennai,t nagar', '2309210014', '', '1', 'upload_files/candidate_tracker/90042640880_Grey & White Minimal Resume.pdf', NULL, '1', '2023-09-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come back with his confirmation on the TxxampC if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-21 12:17:30', 1, '2023-09-21 12:32:54', 0, NULL, 1),
(14502, 'Samuvel', '5', '7358240909', '7339627264', 'samuveljohnson30@gmail.com', '1998-06-30', 25, '2', '1', 'Deepa', 'Own business', 40000.00, 1, 23000.00, 25000.00, 'Perumbakkam', 'Thousand light', '2309210015', '1', '2', 'upload_files/candidate_tracker/70469403048_SAMUVEL new.pdf', NULL, '1', '2023-09-22', 0, '', '3', '59', '2023-09-26', 309696.00, '', '5', '1970-01-01', '1', 'Selected for shanmugam Sir Team in Staff Role Gaurav Sir Commitment 1.5L + 5mf then 23K th from Nov 2023', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-21 01:18:06', 60, '2023-09-26 10:20:45', 0, NULL, 1),
(14503, 'Sathish kumar M', '11', '6382204141', '9962408670', 'sathishkumar81633@gmail.com', '2001-11-23', 21, '3', '2', 'Murugan V', 'Own business', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2309210016', '', '1', 'upload_files/candidate_tracker/58950027493_SATHISH RESUME (1).pdf', NULL, '1', '2023-09-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication Looking only for the salary growth will not sustain and not suitable', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-21 02:37:47', 1, '2023-09-21 02:53:33', 0, NULL, 1),
(14504, 'shenbagapriya', '11', '7358167820', '7200277820', 'priyanabi212@gmail.com', '1997-11-27', 25, '2', '2', 'anuradha', 'hous wife', 50000.00, 1, 15000.00, 20000.00, 'chennai', 'chennai', '2309210017', '1', '2', 'upload_files/candidate_tracker/58218414719_CV_2023-08-31-060816.pdf', NULL, '1', '2023-09-22', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need time to confirm with her family for the salary Exp is high Sustainability no in the previous if she comes back let us try', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-21 06:56:50', 85, '2023-09-22 06:57:57', 0, NULL, 1),
(14505, 'Amey Kulkarni', '5', '8830997112', '', 'amkul.35@gmail.com', '1986-05-03', 37, '3', '2', 'Mukund Kulkarni', 'Service', 10000.00, 0, 450000.00, 500000.00, 'Bangalore', 'Bangalore', '2309220001', '', '2', 'upload_files/candidate_tracker/32518018722_New AMK Sales resume 24.03.2023 (1).pdf', NULL, '1', '2023-09-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-22 10:22:17', 1, '2023-09-22 10:26:36', 0, NULL, 1),
(14506, 'Harrison Mario', '5', '9176713839', '', 'harrisonmario46@gmail.com', '1994-09-02', 29, '1', '1', 'niketta', 'Designer', 800000.00, 1, 30000.00, 35000.00, 'Vanagaram', 'vanagaram', '2309220002', '', '2', 'upload_files/candidate_tracker/66264873516_HM resume .pdf', NULL, '1', '2023-09-22', 0, '44777', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit For Sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-22 10:42:35', 85, '2023-09-22 07:09:06', 0, NULL, 1),
(14507, 'hajira.m', '11', '9677199949', '', 'hajirafarook14@gmail.com', '2000-09-14', 23, '3', '2', 'rameeja beevi', 'home maker', 20000.00, 2, 0.00, 5000.00, 'triplicane', 'Triplicane', '2309220003', '', '1', 'upload_files/candidate_tracker/21494218466_Hajira Resume New.pdf', NULL, '1', '2023-09-22', 0, '', '3', '59', '2023-09-26', 15000.00, '', '0', NULL, '2', 'Selected for Internship Stipend Payout for 3 months ', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-22 10:42:35', 1, '2023-09-22 10:55:04', 0, NULL, 1),
(14508, 'Persis Daphne Dorathy S', '11', '7449146501', '', 'persis0605@gmail.com', '2001-05-06', 22, '3', '2', 'Samuel Sowrirajan M', 'Casual labour', 16000.00, 1, 0.00, 5000.00, 'Chennai', 'Chennai', '2309220004', '', '1', 'upload_files/candidate_tracker/82421662697_b0f6f300-de5e-4fd5-9ef4-2ecd1cb4c212 (1).pdf', NULL, '1', '2023-09-22', 0, '', '3', '59', '2023-09-26', 15000.00, '', '0', NULL, '2', 'Selected For Internship Stipend Payout For 3 Months ', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-22 10:45:16', 1, '2023-09-22 10:49:35', 0, NULL, 1),
(14509, 'Sridevadharshini S', '13', '7449084624', '9047126822', 'dharshinisri99@gmail.con', '1999-01-21', 24, '3', '2', 'Sudhakar S', 'Self employed', 20000.00, 1, 0.00, 25000.00, 'Thiruvallur', 'Thiruvallur', '2309220005', '', '1', 'upload_files/candidate_tracker/54341537339_dharhshini_resume.pdf', NULL, '1', '2023-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance not much comfort in  TxxampC will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-22 11:02:36', 1, '2023-09-22 11:06:33', 0, NULL, 1),
(14510, 'Alagumeena', '5', '9677892968', '', 'meenaraghav30446@gmail.com', '1998-11-30', 24, '2', '1', 'Sarathpandi', 'Marketing survey', 20000.00, 1, 15000.00, 18000.00, 'CHENNAI', 'CHENNAI', '2309220006', '1', '2', 'upload_files/candidate_tracker/64664071667_your_resume.pdf', NULL, '1', '2023-09-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-22 11:07:30', 104, '2023-09-22 06:36:40', 0, NULL, 1),
(14511, 'Priyadarshini k', '6', '8148025402', '', 'Dhashinipriya34@gmail.com', '2002-05-11', 21, '3', '2', 'R. kolanchikumar', 'Farmer', 15000.00, 2, 0.00, 16000.00, 'Chidambaram', 'Saidapet', '2309220007', '', '1', 'upload_files/candidate_tracker/24150666708_Resume_Priya dharshini_Format1.pdf', NULL, '1', '2023-09-22', 0, '', '5', '102', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable Sales ', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-22 11:09:39', 1, '2023-09-22 11:13:22', 0, NULL, 1),
(14512, 'Sangavi D', '11', '8667611548', '', 'sangavidurai08@yahoo.com', '1998-11-08', 24, '2', '2', 'Geetha D', 'Back end admin', 50000.00, 0, 17000.00, 20000.00, 'Chennai', 'Chennai', '2309220008', '1', '2', 'upload_files/candidate_tracker/98853010859_SANGAVI D Resume_1693750841214_Sangavi D-1.pdf', NULL, '1', '2023-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Holding an offer from CTS will not sustain not much comfrt in location too if she comes back let us try', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-22 11:18:28', 85, '2023-09-22 06:58:10', 0, NULL, 1),
(14513, '', '0', '9176364351', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309220009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-22 12:05:50', 0, NULL, 0, NULL, 1),
(14514, '', '0', '9176713829', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309220010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-22 12:15:54', 0, NULL, 0, NULL, 1),
(14515, 'Thasleem', '16', '8838573440', '9361384706', 'thasleemjahaangir@gmail.com', '1998-08-14', 25, '1', '2', 'Sheik Jahangir hussain', 'TWAB Board', 64000.00, 3, 17600.00, 25000.00, 'Nagapattinam', 'Chennai', '2309220011', '', '2', 'upload_files/candidate_tracker/38481707189_thasleem profile.docx', NULL, '1', '2023-09-22', 30, 'Gokul', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'below average communication. has exp in renewals in star health looking for MIS.. will not suit for MIS', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-22 12:21:37', 1, '2023-09-22 12:31:17', 0, NULL, 1),
(14516, 'Bhuvanasundar', '8', '9176374351', '', 'Bhuvanasundar008@gmail.com', '2000-03-01', 23, '2', '2', 'Dhanasekar', 'Blacksmith', 60000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2309220012', '1', '2', 'upload_files/candidate_tracker/73126670029_resume_compressed.pdf', NULL, '1', '2023-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Sales and communication no will not Sustain and not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-22 12:22:16', 104, '2023-09-22 06:17:09', 0, NULL, 1),
(14517, 'Meenalochani p', '11', '6382624112', '8695023778', 'Meenalochaniprabu24@gmail.com', '2000-10-24', 22, '1', '2', 'Praburam G', 'Student', 100000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2309220013', '', '1', 'upload_files/candidate_tracker/54539144000_Meenalochani_P_CV.pdf', NULL, '1', '2023-09-22', 0, 'NA', '2', '97', NULL, 0.00, '', '0', NULL, '1', 'good communication.. suit for Recruitment .. has intern exp .. will try ', '6', '1', '0', '1', '8', '0', '2', '2023-09-29', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-22 01:21:28', 1, '2023-09-22 01:27:45', 0, NULL, 1),
(14518, 'Fredina', '11', '9443131951', '7305779445', 'fredina.j77@gmail.com', '2000-10-09', 22, '2', '2', 'Willington sahaya james', 'Supervisor', 80000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2309220014', '1', '1', 'upload_files/candidate_tracker/55172776688_FREDINA.WSJ - CV.pdf', NULL, '1', '2023-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary exp is high have aplan to go with higher studies will not sustain for a long', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-22 06:23:13', 85, '2023-09-23 05:50:16', 0, NULL, 1),
(14519, '', '0', '8870293975', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309230001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-23 04:33:37', 0, NULL, 0, NULL, 1),
(14520, 'RAJESH', '6', '8838067536', '', 'rajeshpeter1992@gmail.com', '1992-10-30', 30, '2', '2', 'JAYAPAL', 'CRE', 400000.00, 2, 300000.00, 400000.00, 'Thiruvallur', 'Thiruvallur', '2309250001', '1', '2', 'upload_files/candidate_tracker/16087004384_DOC-20230912-WA0000..pdf', NULL, '1', '2023-09-25', 30, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Need to train a lot kindly check and let  mw know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-25 10:25:05', 108, '2023-09-25 01:28:44', 0, NULL, 1),
(14521, 'BHARATH', '5', '7338930502', '7338931031', 'bharathsbharaths5218@gmail.com', '2000-06-10', 23, '2', '2', 'SADAYANDI', 'Railway', 50000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2309250002', '1', '2', 'upload_files/candidate_tracker/18280781923_Bharath resume-1.pdf', NULL, '1', '2023-09-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Days Not open for Sales Calling will not sustain and not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-25 11:01:31', 108, '2023-09-25 01:30:38', 0, NULL, 1),
(14522, 'Sri Raghul.A', '5', '9952900197', '', 'asriraghul@gmail.com', '2002-06-04', 21, '2', '2', 'Anandan.s', 'Shop keeper', 75000.00, 0, 0.00, 13000.00, 'Thiruvallvur kovil street mylapore Chennai6000004', 'Thiruvallvur kovil street mylapore chennai 6000004', '2309250003', '1', '1', 'upload_files/candidate_tracker/97113821611_Sri rahul.docx', NULL, '1', '2023-09-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Sustainability will not handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-25 11:21:48', 108, '2023-09-25 11:53:40', 0, NULL, 1),
(14523, '', '0', '7550198714', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309250004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-25 03:27:01', 0, NULL, 0, NULL, 1),
(14524, 'Jothika S', '6', '8682876295', '9551127362', 'Jothikasenthil2024@gmail', '2000-06-20', 23, '2', '2', 'Selvi', 'House wife', 20000.00, 1, 18500.00, 23000.00, 'Korukkupet, Chennai', 'Korukkupet,Chennai', '2309250005', '1', '2', 'upload_files/candidate_tracker/36992540008_jothika resume.doc', NULL, '1', '2023-09-26', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication average . will not handle our pressure. sal expt high..', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-25 04:42:57', 104, '2023-09-26 05:52:49', 0, NULL, 1),
(14525, 'jithesh kumar', '20', '7010577631', '7200063386', 'jiteshkumar.e20ca017@gmail.com', '2001-05-13', 22, '2', '2', 'raj kumar', 'leather field', 20000.00, 2, 0.00, 15000.00, 'kattur sadayappan st periamet', 'periamet', '2309250006', '1', '1', 'upload_files/candidate_tracker/94985912271_Jithesh', NULL, '1', '2023-09-26', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'voice not bold and communication skill poor so he is not fit for tele sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-25 05:16:32', 85, '2023-09-26 03:51:24', 0, NULL, 1),
(14526, 'ABDUL SAMEER.R', '6', '9840266213', '', 'Abdsameer2107@gmail.com', '2003-07-21', 20, '2', '2', 'Abdul raheem.k', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Chemiers 1st lane , alwarpet,chennai-18', 'Chemiers 1st Lane , Alwarpet,Chennai-18', '2309250007', '1', '1', 'upload_files/candidate_tracker/90584810623_Abdul', NULL, '1', '2023-09-26', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he looking for Data analyst role.. for a time being looking for job not suit for in our roles...', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-25 05:28:23', 104, '2023-09-26 05:57:25', 0, NULL, 1),
(14527, 'Sriram K', '28', '8754430468', '9840576126', 'sriramkrishnakumar2@gmail.com', '1990-11-14', 32, '6', '1', 'Pavithra M', 'Unemployed', 500000.00, 1, 370000.00, 450000.00, 'Chennai', 'Chennai', '2309260001', '', '2', 'upload_files/candidate_tracker/68427597727_Sriram Resume-1.pdf', NULL, '1', '2023-09-26', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Salary Projected for MIS Role Shortlistde by Gokul Candidate yet to give his confirmation', '3', '2', '0', '1', '8', '0', '2', '2023-10-05', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-26 09:44:21', 1, '2023-09-26 09:46:29', 0, NULL, 1),
(14528, 'agil john bradman', '16', '9597377547', '', 'agiljohnbradmanp@gmail.com', '2000-09-11', 23, '6', '2', 'pughenthi', 'teacher', 100000.00, 1, 0.00, 200000.00, 'adambakkam', 'adambakkam', '2309260002', '', '1', 'upload_files/candidate_tracker/10689396933_Agiljohnbradman (1).pdf', NULL, '1', '2023-09-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Expis high will not sustain and handle our work roles ', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-26 10:36:07', 1, '2023-09-26 11:36:09', 0, NULL, 1),
(14529, 'g vaitheeswari', '5', '6382572417', '', 'vaitheeswarig26@gmail.com', '2002-10-26', 20, '2', '2', 'r ganesh', 'Private Company', 12000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2309260003', '1', '1', 'upload_files/candidate_tracker/48768310579_exe sale.pdf', NULL, '1', '2023-09-26', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher.. good communication xxamp convincing skill.. let us try ..', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-26 11:38:46', 104, '2023-09-26 05:59:50', 0, NULL, 1),
(14530, 'Imtiyaz Ahmed A', '6', '9551973676', '', 'ia20020703imtiyaz@gmail.com', '2002-03-07', 21, '2', '2', 'Ajaz Ahmed k', 'Tailor', 25000.00, 1, 0.00, 13000.00, '6/2,17 Haji Sheikh Hussain street, ice house', '6/2,17 Haji Sheikh Hussain Street, Ice House', '2309260004', '1', '1', 'upload_files/candidate_tracker/17328878618_A. Imtiyaz_1693833829266.pdf', NULL, '1', '2023-09-26', 0, '', '3', '59', '2023-09-29', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Muthu Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-26 11:44:49', 60, '2023-09-28 05:43:54', 0, NULL, 1),
(14531, 'Kalai Mathi P', '31', '8760735578', '8838495844', 'kalaiajipl@gmail.com', '1998-12-30', 24, '3', '2', 'Pazhaniyappan M', 'Retirement person', 20000.00, 3, 20000.00, 25000.00, 'Karaikudi', 'Chennai Tnagar', '2309260005', '', '2', 'upload_files/candidate_tracker/98970506006_KalaiMathi.pdf', NULL, '1', '2023-09-26', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Has exp in web dev. but not suit for our timing xxamp role. ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-26 11:47:35', 97, '2023-09-26 06:50:19', 0, NULL, 1),
(14532, 'Mohammed Imran', '6', '8825964948', '7200063386', 'mohammedatworkk@gmail.com', '2003-06-28', 20, '2', '2', 'Abdul Ayub', 'Real estate', 400000.00, 1, 0.00, 15000.00, '11/3 Anna samy 2nd lane, ellis road, mount road', '11/3 Anna Samy 2nd Lane, Ellis Road, Mount Road', '2309260006', '1', '1', 'upload_files/candidate_tracker/74253869133_Mohammed imran.pdf', NULL, '1', '2023-09-26', 0, '', '3', '59', '2023-09-29', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Muthu Team in staff Role', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-26 12:03:30', 60, '2023-09-28 05:44:41', 0, NULL, 1),
(14533, 'Augustine Raj', '5', '9791383683', '9710081294', 'augustinraj461998@gmail.com', '1998-06-04', 25, '2', '2', 'Charles .D', 'Driver', 15000.00, 1, 28500.00, 30000.00, 'No:54,1st block ,Ezhil nagar , perumbakkum , chenn', 'No:54,1st block, Ezhil nagar, Perumbakkum,chennai', '2309260007', '1', '2', 'upload_files/candidate_tracker/28733090586_Augustin Resume-1.pdf', NULL, '1', '2023-09-26', 15, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Have Exp but sustainability doubts can give a try in our roles kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-26 01:28:23', 60, '2023-09-27 08:19:11', 0, NULL, 1),
(14534, 'Muthulakshmi m', '5', '8680860740', '', 'lakshmimadasamy26@gmail.com', '1994-10-26', 28, '2', '2', 'madasamy', 'gold smith', 20000.00, 2, 15000.00, 16000.00, 'chennai', 'chennai', '2309260008', '1', '2', 'upload_files/candidate_tracker/26355579867_MUTHULAKSHMI resume-1 (1).pdf', NULL, '1', '2023-09-26', 0, '', '4', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communicaiton Ok Have Exp in Sales can be trained kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-26 02:39:55', 104, '2023-09-26 05:59:29', 0, NULL, 1),
(14535, 'Mohamed Athiqullah', '5', '8825696695', '', 'muhammadathiq03@gmail.com', '2001-03-03', 22, '2', '2', 'Mohamed Sulaiman', 'Labour', 20000.00, 1, 30000.00, 33000.00, 'Chennai', 'Chennai', '2309270001', '1', '2', 'upload_files/candidate_tracker/94768527596_New Resume 1.pdf', NULL, '1', '2023-09-27', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok Can be trained in our roles Attitude 5050 kindly check an dlet me knwo your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-27 05:23:19', 60, '2023-09-27 08:11:56', 0, NULL, 1),
(14536, 'Deepak', '5', '7673906196', '9441152436', 'deepakappu161@gmail.com', '1998-06-10', 25, '6', '2', 'babu', 'Andhra Pradesh', 250000.00, 1, 0.00, 30000.00, 'Sammaguttapalli cross Andhra Pradesh kuppam 517425', 'Sammaguttapalli Cross Andhra Pradesh Kuppam 517425', '2309270002', '', '1', 'upload_files/candidate_tracker/40303795503_DEEPAK B.pdf', NULL, '1', '2023-09-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Long distance xxamp Not suit for our process', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-27 09:23:46', 1, '2023-09-27 09:50:59', 0, NULL, 1),
(14537, 'Santhoshkumar', '33', '8072186745', '', 'santhoshk5676@gmail.com', '2002-07-12', 21, '6', '2', 'Kamaraj T', 'Mechanic', 12000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2309270003', '', '1', 'upload_files/candidate_tracker/13726601479_Santhoshkumar Resume.pdf', NULL, '1', '2023-09-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'No Knowledege in Tally xxamp no communication ', '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-27 09:58:38', 1, '2023-09-27 10:01:49', 0, NULL, 1),
(14538, 'Barath Kumar', '16', '9500154302', '8838757963', 'barathtommy@gmail.com', '1999-06-29', 24, '6', '2', 'Balakrishnan', 'Supervisor', 20000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2309270004', '', '1', 'upload_files/candidate_tracker/22157003794_Barath kumar.B_B.E_Mech_Data Science.pdf', NULL, '1', '2023-09-27', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'much interested in IT side.. for a time being looking for Data analyst', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-27 10:23:31', 97, '2023-09-27 07:26:00', 0, NULL, 1),
(14539, 'Sanjay s', '33', '9840499152', '', 'sanjaysanjay20062001@gmail.com', '2001-06-15', 22, '3', '2', 'G.saravanan', 'Self employment', 20000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2309270005', '', '2', 'upload_files/candidate_tracker/44626467812_sanjay s 2126.pdf', NULL, '1', '2023-09-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Not suit for our role exp in us acc .. ', '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-27 10:32:19', 1, '2023-09-27 10:36:06', 0, NULL, 1),
(14540, 'K.yogesh kumar', '33', '9941188898', '7299370379', 'k.yokeshkumar@gmail.com', '1991-09-17', 32, '6', '2', 'K.kesavan', 'Security', 12000.00, 3, 37500.00, 25000.00, 'Thiruvallur', 'Chennai', '2309270006', '', '2', 'upload_files/candidate_tracker/4899042106_yogii Resume.pdf', NULL, '1', '2023-09-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Has 11yrs of exp in acc .. long distance ..not suit for our role', '4', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-27 11:01:20', 1, '2023-09-27 11:06:57', 0, NULL, 1),
(14541, 'V R ARJUN', '16', '9092732636', '', 'arjunvijaya14@gmail.com', '2001-01-14', 22, '6', '2', 'VIJAYALAKSHMI D I', 'B.E. (Computer Science and Engineering)', 100000.00, 0, 0.00, 500000.00, 'Chennai', 'Chennai', '2309270007', '', '1', 'upload_files/candidate_tracker/59891843026_V R ARJUN - Resume.pdf', NULL, '1', '2023-09-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Has exp in web development.. not suit for our role..sal expt high', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-27 11:03:40', 1, '2023-09-27 11:21:16', 0, NULL, 1),
(14542, 'Vignesh', '26', '7449207282', '9840541375', 'vikki182000@gmail.com', '2000-09-18', 23, '6', '2', 'Gurumurthy. R', 'Catering Labour', 36000.00, 1, 18750.00, 20000.00, 'Periyar Nagar', 'Periya Nagar', '2309270008', '', '2', 'upload_files/candidate_tracker/54947798444_CV Vignesh .pdf', NULL, '1', '2023-09-27', 15, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come back with his confirmation  Fresher for our roles need to be trained a lot', '7', '1', '0', '1', '8', '0', '2', '2023-10-16', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-27 11:21:06', 1, '2023-09-27 11:26:45', 0, NULL, 1),
(14543, 'Akash.P', '33', '9940699651', '', 'akashpokkan18@gmail.com', '2002-08-18', 21, '6', '2', 'T.Pokkan', 'Working provision shop', 12000.00, 2, 0.00, 18000.00, 'Kovilambakkam', 'Kovilambakkam', '2309270009', '', '1', 'upload_files/candidate_tracker/58242868431_Akash resume.pdf', NULL, '1', '2023-09-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'has some knowledge in Tally but no communication ', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-27 11:26:10', 1, '2023-09-27 11:43:11', 0, NULL, 1),
(14544, 'Divyalakshmi. a', '33', '8015769615', '', 'divyanuid1319@gmail.com', '2002-07-19', 21, '6', '2', 'M. Arul', 'Daily wages', 20000.00, 1, 15000.00, 23000.00, 'Thiruvottiyur ajax back side', 'Thiruvottiyur ajax back side', '2309270010', '', '2', 'upload_files/candidate_tracker/41876990623_Divyalakshmi. A cv (1).pdf', NULL, '1', '2023-09-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Has exp in acc but need learn tally gST .. ', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-27 11:26:58', 1, '2023-09-27 11:30:48', 0, NULL, 1),
(14545, 'Kirthik dhanush.k', '6', '8608819801', '9080508551', 'Kirthikdhanush1@gmail.com', '2002-06-01', 21, '1', '2', 'Kumaraiah', 'Business', 20000.00, 1, 0.00, 12.00, '145 ms kovil st royapuram 600 013', '145 ms kovil st royapuram 600 013', '2309270011', '', '1', 'upload_files/candidate_tracker/51855741726_Kirthikdhanush.k.pdf', NULL, '1', '2023-09-27', 0, '77799', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '50-50 profile Sustainability doubts.. kindly check and update your inputs..', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-27 11:40:22', 97, '2023-09-27 07:19:17', 0, NULL, 1),
(14546, 'Babu M', '33', '7401604946', '', 'babum05072001@gmail.com', '2001-07-05', 22, '6', '2', 'mageshkumar K', 'Daily wages', 10000.00, 1, 0.00, 17000.00, '6/14 Sri Devi Karumari Amman Nagar, Velachery', '6/14 Sri Devi Karumari Amman Nagar, Velachery', '2309270012', '', '1', 'upload_files/candidate_tracker/551948244_Resume.pdf', NULL, '1', '2023-09-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'No knowledge \nIn Tally xxamp No Communication ', '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-27 01:16:52', 1, '2023-09-27 01:25:33', 0, NULL, 1),
(14547, 'Geethanjali R', '33', '9094937748', '9952033393', 'geethar0201@gmail.com', '1998-01-02', 25, '6', '2', 'Rukmangathan', 'Tax collector', 40000.00, 2, 300000.00, 450000.00, 'Old washermenpet', 'Old washermenpet', '2309270013', '', '2', 'upload_files/candidate_tracker/94389031059_CV GeethanjaliR.pdf', NULL, '1', '2023-09-27', 1, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Has exp in acc tax aud.. sal expt high .. no job need ', '4', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-27 02:17:15', 1, '2023-09-27 02:21:35', 0, NULL, 1),
(14548, 'J.manogaran', '4', '7358482207', '8778069016', 'manogaranjayaseelan@gmail.com', '1999-06-11', 24, '2', '2', 'Vijay Kumari.j mother', 'Tailor export', 20.00, 0, 15.00, 18.00, '28/1 ThandoniAmmanKovil 1st Street', 'Villivakkam', '2309270014', '1', '2', 'upload_files/candidate_tracker/94734734267_DOC-20230818-WA0004..pdf', NULL, '1', '2023-09-27', 1, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Has medical Billing exp new to our role and not suit for process', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-27 04:51:06', 108, '2023-09-28 05:05:02', 0, NULL, 1),
(14549, 'Rohit emmanul', '5', '8610271080', '8778069016', 'rockrohit440@gmail.com', '1999-06-24', 24, '2', '2', 'Lidya', 'Business', 200000.00, 1, 15000.00, 18000.00, 'No 5 pt Street mackeys garden thousand light', 'No 5 pt Street mackeys garden thousand light', '2309270015', '1', '2', 'upload_files/candidate_tracker/50466809074_ROHIT EMMANUL (1).pdf', NULL, '1', '2023-09-27', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp but seems to be not genuine asked for the documents if he comes back let  us try', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-27 05:00:55', 108, '2023-09-28 05:03:17', 0, NULL, 1),
(14550, 'Sowdhiya', '5', '8610119498', '9344537028', 'kswathy1995@gmail.com', '1995-11-22', 27, '2', '1', 'Saravanan', 'Admin', 15000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2309280001', '1', '2', 'upload_files/candidate_tracker/42178434899_Resumes.pdf', NULL, '1', '2023-09-28', 0, '', '4', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile hav a career gap have exp in calling kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-28 10:04:48', 104, '2023-09-28 06:06:37', 0, NULL, 1),
(14551, 'K. Vishnu', '33', '9884290649', '9600041975', 'vishnu140801@gmail.com', '2001-08-14', 22, '6', '2', 'B.Kamalakannan', 'Unemployed', 35000.00, 1, 22000.00, 28600.00, 'Kodungaiyur', 'Kodungaiyur', '2309280002', '', '2', 'upload_files/candidate_tracker/58762332931_DOC-20230907-WA0003..pdf', NULL, '1', '2023-09-28', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Selected for Acounts Team and projected the salary till 2.4LPA But he is not ready to accept it\n', '4', '1', '0', '1', '8', '0', '2', '2023-10-05', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-28 10:17:38', 1, '2023-09-28 10:25:38', 0, NULL, 1),
(14552, 'SARAVANA KUMAR P', '16', '9489483677', '', 'saravanaece203@gmail.com', '1997-06-01', 26, '6', '2', 'PERIYANNAN', 'SELF EMPLOYED', 30000.00, 1, 336000.00, 500000.00, 'Thuraiyur Trichy', 'Tambaram Chennai', '2309280003', '', '2', 'upload_files/candidate_tracker/24521858681_SaravanaKumar CV (2) (1).pdf', NULL, '1', '2023-09-28', 30, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustinability doubts need to look for other profiles and later willdecide n the profile', '3', '1', '0', '1', '8', '0', '2', '2023-10-02', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-28 12:20:52', 1, '2023-09-28 12:25:44', 0, NULL, 1),
(14553, 'Kowsalya Maran', '5', '7708583157', '9003208733', 'kowsalyamaran01@gmail.com', '1997-07-01', 26, '2', '2', 'Maran M', 'Farmer', 2000000.00, 1, 18.00, 20.00, 'Medavakkam', 'Medavakkam', '2309280004', '1', '2', 'upload_files/candidate_tracker/1756734347_DOC-20230824-WA0023..pdf', NULL, '1', '2023-09-28', 5, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 have calling exp can be trained kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-28 01:27:15', 60, '2023-09-28 04:58:16', 0, NULL, 1),
(14554, 'Shri Vishnupathy', '31', '7358485583', '9444707984', 'Vishnupathy132@gmail.com', '2002-02-13', 21, '2', '2', 'Gopi N', 'C.Govt employee', 70000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2309280005', '1', '1', 'upload_files/candidate_tracker/96951443472_Shrivishnupathy_ Resume (1).pdf', NULL, '1', '2023-09-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Much Comfort In TxxampC Fresher Need To Train A Lot If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-09-28 03:14:51', 104, '2023-09-29 04:50:41', 0, NULL, 1),
(14555, '', '0', '6374199254', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309280006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-28 03:37:35', 0, NULL, 0, NULL, 1),
(14556, 'Nareshshankar.A', '31', '6385439847', '', 'naresh161101@gmail.com', '2008-09-28', 0, '2', '2', 'Arumugam S', 'Junior manager(mines)', 50000.00, 0, 0.00, 300000.00, 'Ariyalur', 'Chennai', '2309280007', '1', '1', 'upload_files/candidate_tracker/95084477985_Nareshshankar A resume.pdf', NULL, '1', '2023-09-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much comfort in TxxampC Fresher need to train a lot if he comes back let us try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-09-28 04:37:24', 104, '2023-09-29 04:43:19', 0, NULL, 1),
(14557, 'kishore m', '13', '9087890504', '9444676329', 'navakishore020@gmail.com', '2003-01-04', 20, '2', '2', 'mani m', 'carpenter', 30000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2309280008', '1', '1', 'upload_files/candidate_tracker/79726695633_Resume_KISHORE M(pdf).pdf', NULL, '1', '2023-09-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for TxxampC He is a musician will not much comfort to work on Saturday sustainability doubts', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-09-28 05:02:26', 104, '2023-09-29 04:46:38', 0, NULL, 1),
(14558, '', '0', '9442331275', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309280009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-28 06:06:23', 0, NULL, 0, NULL, 1),
(14559, 'Inthiaz', '5', '8143503679', '9182656629', 'inthiazshaik87@gmail.com', '2001-07-12', 22, '2', '2', 'Karimulla', 'Business', 50000.00, 1, 18000.00, 22000.00, 'Ab colony penumuru, Chittoor, Andhra Pradesh', 'Silk Board, bangalore', '2309290001', '1', '2', 'upload_files/candidate_tracker/69363924967_Inthiaz Shaik CV.docx', NULL, '1', '2023-09-29', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-09-29 09:19:25', 104, '2023-09-29 11:27:13', 0, NULL, 1),
(14560, 'Om haresh', '5', '9003080547', '7338878211', 'omharesh21@gmail.com', '2004-07-13', 19, '2', '2', 'Ramakrishnan.A', 'Engineering', 35000.00, 1, 0.00, 15000.00, 'Meenambakkam', 'Chennai Meenambakkam', '2309290002', '1', '1', 'upload_files/candidate_tracker/55523033980_omhareshcv.docx', NULL, '1', '2023-09-29', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is not fit for tele sales and not pressure handling', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-29 09:47:03', 108, '2023-09-29 10:16:10', 0, NULL, 1),
(14561, 'Akash.M', '5', '6369880865', '', 'akashmax0512@gmail.com', '2001-08-05', 22, '2', '2', 'Mugunthan.M', 'Painter', 15000.00, 2, 0.00, 20000.00, 'Pulianthope', 'Pulianthope', '2309290003', '1', '1', 'upload_files/candidate_tracker/30234596752_AKASH resume.pdf', NULL, '1', '2023-09-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-29 10:18:58', 108, '2023-09-29 10:29:02', 0, NULL, 1),
(14562, 'Reshma R', '26', '9500167945', '', 'reshmaradha246@gmail.com', '2000-06-24', 23, '6', '2', 'Radhakrishnan P', 'Watchman', 96000.00, 2, 18000.00, 27000.00, 'Chennai', 'Chennai', '2309290004', '', '2', 'upload_files/candidate_tracker/3138758566_Reshma Resume (1).pdf', NULL, '1', '2023-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Lookin g for Accounts profile have exp in renewals salary exp is high Average Communication', '7', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-29 10:20:47', 1, '2023-09-29 10:41:05', 0, NULL, 1),
(14563, 'Yogesh b', '33', '9514218048', '', 'yogeshbalaji924@gmail.com', '2000-10-31', 22, '3', '2', 'P s Balaji', 'Medical shop', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2309290005', '', '1', 'upload_files/candidate_tracker/97313117300_YOGESH B RESUME-1.pdf', NULL, '1', '2023-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basics in Accounts 2yrs Gap  Will not handle our work pressure', '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-29 10:33:36', 1, '2023-09-29 10:36:29', 0, NULL, 1),
(14564, 'Dilli Babu A', '16', '7010791172', '6379212816', 'dillibabu2412@gmail.com', '1991-12-24', 31, '6', '2', 'A.Arivazhagan', 'Late', 120000.00, 1, 18000.00, 22000.00, 'Chennai', 'Chennai', '2309290006', '', '2', 'upload_files/candidate_tracker/9690145148_Resume.doc', NULL, '1', '2023-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Ideas in MIS No parents He is alone not muchactive will not handle our work pressure not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-29 11:27:34', 1, '2023-09-29 11:33:41', 0, NULL, 1),
(14565, 'Kowsalya', '31', '9894609083', '', 'kowsalyakowse17998@GMAIL.COM', '1998-09-17', 25, '2', '2', 'Balachander', 'Security', 16000.00, 1, 4.00, 4.00, 'Chennai', 'Chennai', '2309290007', '1', '2', 'upload_files/candidate_tracker/30751790812_Kowsalya Resume.pdf', NULL, '1', '2023-09-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much Comfort In TxxampC Fresher for Web Development have Exp in other profile  Need To Train A Lot If she Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-09-29 11:30:35', 104, '2023-09-29 04:50:16', 0, NULL, 1),
(14566, 'Meenaakshi', '16', '9790801744', '', 'meena.sivagami0709@gmail.com', '1989-09-07', 34, '3', '2', 'Rajarathinam', 'Operator', 30000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2309290008', '', '2', 'upload_files/candidate_tracker/73585078292_Resume1.pdf', NULL, '1', '2023-10-04', 10, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Much Active Have Exp as process Associate Can be trained Final Interview by Gokul and was on hold', '3', '2', '0', '1', '8', '0', '2', '2023-10-10', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-29 11:50:03', 1, '2023-10-04 11:39:47', 0, NULL, 1),
(14567, 'Yogesh j r', '16', '9840292009', '', 'yogesh12313@gmail.com', '1995-12-21', 27, '6', '2', 'Rajababu', 'Manager', 80000.00, 1, 24000.00, 35000.00, 'Chennai', 'Chennai', '2309290009', '', '2', 'upload_files/candidate_tracker/22523628360_Yogesh jr compressed .pdf', NULL, '1', '2023-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left Without Attending', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-29 12:26:34', 1, '2023-09-29 12:42:03', 0, NULL, 1),
(14568, 'Manikandan.M', '16', '9176041228', '', 'Wellmanish1989@gmail.com', '1989-02-06', 34, '6', '1', 'Nithya', 'House wife', 31000.00, 2, 31000.00, 40000.00, 'Padappai', 'Padappai', '2309290010', '', '2', 'upload_files/candidate_tracker/44568302065_Mani Resume 28 April 2023-1.docx', NULL, '1', '2023-09-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance No Sustainability in the previous Exp in Star Health for few months will not handle the pressure in our roles location constraint', '3', '2', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-29 12:40:15', 108, '2023-09-29 04:53:08', 0, NULL, 1),
(14569, 'ragavendiran', '16', '7373480617', '', 'ragaragaragul@gmail.con', '1999-06-07', 24, '6', '2', 'pichandi', 'weaver', 20000.00, 1, 28000.00, 35000.00, 'arani', 'chennai', '2309290011', '', '2', 'upload_files/candidate_tracker/51409880908_ragavendiran resume 2023.pdf', NULL, '1', '2023-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication no ideas will not handle our work roles not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-29 12:44:20', 1, '2023-09-29 12:51:24', 0, NULL, 1),
(14570, 'Suresh babu', '16', '9600198101', '9025120989', 'Sureshbabu09rsb@gmail.com', '1994-11-11', 28, '6', '2', 'Ponnusamy', 'Air india', 20000.00, 0, 24000.00, 28000.00, 'Adambakkam', 'Adambakkam', '2309290012', '', '2', 'upload_files/candidate_tracker/9214074765_Suresh Babu_CV - New Updated (2).pdf', NULL, '1', '2023-09-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in MIS Current CTC 3.5 LPA Exp is min 4LPA Need to confirm the profile', '3', '1', '', '1', '8', '', '2', '2023-10-05', '3', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-29 01:24:43', 104, '2023-09-29 04:51:28', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14571, 'mohammed bilal i', '33', '9176014619', '', 'mdbilalca484@gmail.com', '2002-01-16', 21, '6', '2', 'ismail h', 'tailor', 20000.00, 1, 25000.00, 30000.00, 'chennai', 'chennai', '2309290013', '', '2', 'upload_files/candidate_tracker/15641897334_Mohammed Bilal Resume.pdf', NULL, '1', '2023-09-29', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'have exp  CMA Inter Saalry Exp in high too long Distance will not sustain in a long', '4', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-29 02:42:05', 1, '2023-09-29 02:50:27', 0, NULL, 1),
(14572, 'Ishwarya', '5', '8973202322', '', 'ishwaryaammu13@gmail.com', '2008-09-29', 0, '2', '2', 'Veerabathiran', 'Fresher', 35000.00, 1, 0.00, 20000.00, 'Avadi', 'Avadi', '2309290014', '1', '1', 'upload_files/candidate_tracker/21511663040_Resume IYA (1)_compressed.pdf', NULL, '1', '2023-09-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance max 1yr she wlill work and move to higher studies will not sustain', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-09-29 03:04:11', 108, '2023-09-30 10:56:19', 0, NULL, 1),
(14573, 'Gunaseeli Esther.R', '31', '8667067719', '', 'gunaseeliesther022001@gmail', '2001-02-13', 22, '2', '2', 'Ravi rajan.v, vadivambal.R', 'Electrician', 6000.00, 1, 15000.00, 25000.00, '2/43, Nellikaran Street, Thiruvottiyur, Chennai-19', '98/9,Th road kaladipet Thiruvottiyur, Chennai-19', '2309290015', '1', '2', 'upload_files/candidate_tracker/8053536120_ESTHER Resume (1).pdf', NULL, '1', '2023-09-30', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Long Career Gap Not much comfort in TxxampC if she comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-09-29 03:22:38', 108, '2023-09-30 04:30:53', 0, NULL, 1),
(14574, '', '0', '9884413819', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309290016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-29 06:50:52', 0, NULL, 0, NULL, 1),
(14575, 'BAKKIYA B', '33', '9344268029', '9585483491', 'bakkiyalakshmi03102000@gmail.com', '2000-10-03', 22, '6', '2', 'BADRAJALAM P', 'Driver', 20000.00, 1, 0.00, 20000.00, 'Puducherry', 'Puducherry', '2309300001', '', '1', 'upload_files/candidate_tracker/93278126165_Bakkiya Resume(MBA).pdf', NULL, '1', '2023-09-30', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Accounts Can be trained not open for other roles need to confirm later', '4', '1', '0', '1', '8', '0', '2', '2023-10-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-30 10:47:20', 1, '2023-09-30 10:54:59', 0, NULL, 1),
(14576, 'Abinaya p', '33', '7358600204', '6381919470', 'Abinaya.p2202@gmail.com', '1999-08-22', 24, '2', '2', 'Parents', 'Tinkinering', 25000.00, 1, 18000.00, 25000.00, 'Ramapuram', 'Ramapuram', '2309300002', '1', '2', 'upload_files/candidate_tracker/65332013435_resume.docx', NULL, '1', '2023-09-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to be active Just Tally entry exp pressure hanlding doubt will not sustain in our presuure', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-30 11:16:19', 108, '2023-09-30 11:46:15', 0, NULL, 1),
(14577, 'boomiraj', '5', '9787850832', '', 'mboomiraj819@gmail.com', '2003-04-16', 20, '2', '2', 'mariyappan', 'farmer', 40000.00, 2, 14500.00, 15000.00, 'kovilpatti', 'vadapalani', '2309300003', '1', '2', 'upload_files/candidate_tracker/30303553111_BOOMIRAJ (1).pdf', NULL, '1', '2023-09-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average Telling as Exp but seems to be doubtfull and lot of false information in his family Will not sustain and not suitable', '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1019', '0', NULL, NULL, NULL, 1, '2023-09-30 11:36:02', 1, '2023-09-30 12:01:35', 0, NULL, 1),
(14578, 'jagadeesh kumar k s', '33', '9841949465', '9444851803', 'ksjagadeesh10@gmail.com', '2000-05-23', 23, '6', '2', 'k sampath', 'retired employee', 45000.00, 1, 0.00, 18000.00, 'perambur', 'perambur', '2309300004', '', '1', 'upload_files/candidate_tracker/38384816236_JAGADEESH KUMAR K S Resume.pdf', NULL, '1', '2023-09-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-30 01:19:13', 1, '2023-09-30 01:22:48', 0, NULL, 1),
(14579, 'Selvamani', '16', '9677634986', '', 'Mselva025@gmail.com', '1990-04-10', 33, '6', '2', 'Ealangovan', 'Farmer', 40000.00, 2, 40000.00, 35000.00, 'Arumbakkam', 'Arumbakkam', '2309300005', '', '2', 'upload_files/candidate_tracker/3172585730_Selvamani Resume..pdf', NULL, '1', '2023-09-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication Aged Very slow will not handle our work pressure', '3', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-09-30 03:57:22', 1, '2023-09-30 04:03:20', 0, NULL, 1),
(14580, 'Nandhini k', '5', '6379451617', '7200864742', 'Nandhinikumar3101@gmail.com', '1999-01-31', 24, '2', '2', 'Porkodi', 'Housekeeping', 60000.00, 2, 19000.00, 22000.00, 'Maduranthagam', 'Maduranthagam', '2309300006', '1', '2', 'upload_files/candidate_tracker/20694070406_Nandhini (1).doc', NULL, '1', '2023-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Frequent Job Changes Long Distance not sure on relocation will not sustain and handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-09-30 06:32:48', 108, '2023-10-03 05:41:45', 0, NULL, 1),
(14581, '', '0', '7010770295', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2309300007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-09-30 07:05:53', 0, NULL, 0, NULL, 1),
(14582, 'Divya', '33', '8220628614', '8939295435', 'ohdivya20@gmail.com', '1997-12-20', 25, '1', '1', 'Prakash', 'Internal Auditor', 50000.00, 1, 28000.00, 34000.00, 'No.22 Ramani Nagar new Lakshmipuram kolathur', 'No.22 Ramani Nagar New lakshmipuram kolathur', '2309300008', '', '2', 'upload_files/candidate_tracker/66494091257_Divya. M_CV.pdf', NULL, '1', '2023-10-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Accounts Need to confirm post screening of other profiles ', '4', '1', '', '1', '8', '', '2', '2023-10-10', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-09-30 10:04:48', 85, '2023-10-03 12:07:29', 0, NULL, 1),
(14583, 'Aravind Chavan', '5', '8197419549', '6363111941', 'aravindchavan83@gmail.com', '2002-06-01', 21, '3', '2', 'Vishwa . Rathod', 'Student', 15000.00, 0, 20000.00, 28000.00, 'Vijayapura', 'Adugodi, Bengaluru', '2310020001', '', '2', 'upload_files/candidate_tracker/94261300207_Aravind Chavan _28_09_2023_09_47_59_am.pdf', NULL, '1', '2023-10-03', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-02 12:40:50', 104, '2023-10-04 09:54:20', 0, NULL, 1),
(14584, 'ABDUL RAHMAN s', '4', '9345906639', '9600015795', 'abfulrahmansn96@gmail.com', '1996-12-12', 26, '4', '2', 'Syed Mohamed', 'Late', 30000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2310020002', '', '1', 'upload_files/candidate_tracker/36855080495_ABDUL RAHMAN S Resume.pdf', NULL, '1', '2023-10-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-02 06:44:59', 1, '2023-10-05 12:47:32', 0, NULL, 1),
(14585, 'Suji L', '20', '9342073805', '9710241765', 'sujilebaku99@gmail.com', '1999-04-04', 24, '2', '2', 'L.israyel', 'Cooli', 15000.00, 3, 20000.00, 25000.00, '28/18 chengalvarayan Street perambur Chennai 11', 'Chengalvarayan Street Perambur Chennai 600011', '2310020003', '1', '2', 'upload_files/candidate_tracker/15478428955_CV_2023071519171037.pdf', NULL, '1', '2023-10-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to confirm after reveiewing other profiles need time to confirm', '5', '1', '', '1', '8', '', '2', '2023-10-10', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-02 09:33:55', 108, '2023-10-03 03:18:19', 0, NULL, 1),
(14586, 'kowsalya', '5', '7358301104', '', 'kowsalyam675@gmail.com', '2001-05-27', 22, '2', '2', 'manivasagam', 'ngo mentor', 18000.00, 2, 12000.00, 18000.00, 'chennai', 'chennai', '2310030001', '1', '2', 'upload_files/candidate_tracker/50280562963_kowsalya resume.pdf', NULL, '1', '2023-10-03', 0, '', '3', '59', '2023-10-09', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Muthu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-03 10:03:42', 60, '2023-10-07 12:51:45', 0, NULL, 1),
(14587, 'Aswanth. R', '33', '8778413949', '9443341553', 'aswanthr4@gmail.com', '1999-05-04', 24, '6', '2', 'Navasuja', 'House wife', 20000.00, 1, 0.00, 22000.00, 'Trichy', 'Chenani', '2310030002', '', '1', 'upload_files/candidate_tracker/71870679032_aswanth cv (1).docx', NULL, '1', '2023-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for SAP FICO profile will not sustain in our roles not suitable', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-03 10:03:45', 108, '2023-10-03 03:21:03', 0, NULL, 1),
(14588, 'Jothy Krishnan M C', '31', '9994896108', '', 'mcjothykrishnan@gmail.com', '1999-01-20', 24, '3', '2', 'Murukan K', 'Gold appraiser', 12000.00, 1, 180000.00, 350000.00, 'Kanyakumari', 'Chennai', '2310030003', '', '2', 'upload_files/candidate_tracker/36426805150_JothyKrishnanMC-Dev.pdf', NULL, '1', '2023-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-03 10:46:49', 1, '2023-10-03 10:53:02', 0, NULL, 1),
(14589, 'PURUSOTHAMAN R', '4', '8248285560', '8680075770', 'purusothmurali555@gmail.com', '1997-06-30', 26, '2', '2', 'RAMALINGAM', 'Farmer', 150000.00, 0, 19000.00, 24000.00, 'Chennai', 'Chennai', '2310030004', '1', '2', 'upload_files/candidate_tracker/1043921106_DOC-20231002-WA0002..pdf', NULL, '1', '2023-10-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-03 10:59:04', 85, '2023-10-04 12:36:37', 0, NULL, 1),
(14590, '', '0', '9360035728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310030005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-03 11:11:59', 0, NULL, 0, NULL, 1),
(14591, 'Niyas ahamed', '4', '9626497776', '9677895304', 'Niyastrsmd@gmail.com', '2002-05-14', 21, '2', '2', 'Jamal Mohamed nasar', 'Telecaller', 30000.00, 2, 10000.00, 25000.00, 'No.9 ,Anna Street, sangliyandapuram, Trichy-1', 'No.9, Anna Street, sangliyandapuram, Trichy-1', '2310030006', '1', '2', 'upload_files/candidate_tracker/33722956017_niyas resume 0.docx', NULL, '1', '2023-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not sustain 10 diploma had own business wealth family will not sustain and handle our work pressure not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-03 11:30:22', 108, '2023-10-03 03:15:30', 0, NULL, 1),
(14592, '', '0', '9360045728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310030007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-03 11:53:49', 0, NULL, 0, NULL, 1),
(14593, 'michael', '16', '9600169793', '', 'sammichael007@gmail.com', '1999-05-21', 24, '3', '2', 'joseph', 'tailor', 35000.00, 1, 17000.00, 25000.00, 'mylapore', 'Mylapore', '2310030008', '', '2', 'upload_files/candidate_tracker/1013028187_R4 (1).pdf', NULL, '1', '2023-10-03', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', '5050 profile Have health disability Left hand Candidate Leg issue Can be trained need time to confirm', '3', '1', '0', '1', '8', '0', '2', '2023-10-10', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-03 12:01:12', 1, '2023-10-03 12:04:02', 0, NULL, 1),
(14594, 'Imran J', '16', '9840947823', '', 'imrantyson13@gmail.com', '1999-12-21', 23, '6', '2', 'Jaffar A', 'Labour', 15000.00, 2, 16000.00, 25000.00, 'Chennai', 'Chennai', '2310030009', '', '2', 'upload_files/candidate_tracker/73792900926_Resume-1.doc', NULL, '1', '2023-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No ideas in MIS looking for Hardware sort of profiles', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-03 12:01:13', 108, '2023-10-03 05:38:06', 0, NULL, 1),
(14595, 'Dhakshina moorthy k', '5', '9514772428', '', 'riodhakshina29@gmail.com', '2000-02-29', 23, '2', '2', 'kandaswamy', 'Retired govt staff', 14000.00, 0, 345000.00, 450000.00, 'Chennai', 'chennai', '2310030010', '1', '2', 'upload_files/candidate_tracker/90581023154_dhakshina New Resume.docx', NULL, '1', '2023-10-03', 30, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Insurance Broca Sales Can be trained kindly check andlet me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-03 01:05:25', 108, '2023-10-07 11:13:59', 0, NULL, 1),
(14596, 'Kishore J', '31', '7305592770', '', 'kishorejagadeesan2205@gmail.com', '2003-05-22', 20, '2', '2', 'R Jagadeesan', 'Web developer', 25000.00, 1, 0.00, 2.50, 'Avadi', 'Avadi', '2310030011', '1', '1', 'upload_files/candidate_tracker/55777359321_Kishore_J.pdf.pdf', NULL, '1', '2023-10-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too Long Distance Seems to be good Candidate Already into Intern with 12K exp min 10K stipend here but 3yrs doubts if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-03 01:05:50', 85, '2023-10-04 06:37:32', 0, NULL, 1),
(14597, 'sathish p', '13', '6382977343', '', 'sathishbe465@gmail.com', '2001-06-20', 22, '2', '2', 'Pachaiyappan', 'Farmer', 10000.00, 2, 0.00, 2.50, 'Chennai', 'Chennai', '2310030012', '1', '1', 'upload_files/candidate_tracker/92880862186_sathish p.pdf', NULL, '1', '2023-10-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need Time to Give his confirmation Already had an offer with Wipro for 3.5 LPA not yet onboarded Will not sustain in a long Run', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-03 01:19:44', 85, '2023-10-04 06:38:20', 0, NULL, 1),
(14598, 'vishali p', '5', '6382605539', '', 'vishalipandiyan65@gmail.com', '2000-05-06', 23, '2', '2', 'pandiyan k', 'farmer', 8000.00, 1, 0.00, 15000.00, 'perambalur', 'velachary', '2310030013', '1', '1', 'upload_files/candidate_tracker/39050733841_vishalipandiyan.pdf', NULL, '1', '2023-10-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Focusing much for IT opening but no basic skills Will not handle our work pressure in Sales Calling Not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-03 01:30:33', 108, '2023-10-04 05:08:23', 0, NULL, 1),
(14599, 'praveen B', '13', '6383549546', '9788939804', '8ipspraveen@gmail.com', '2001-12-09', 21, '2', '2', 'bagavath singh s', 'kulli', 13000.00, 2, 0.00, 600000.00, 'thiruthangal', 'Sivakasi', '2310030014', '1', '1', 'upload_files/candidate_tracker/85836137041_PRAVEEN.B.pdf', NULL, '1', '2023-10-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have knowledge in PHP Can give a try Need to check Sathish IT availability and schedule', '2', '1', '', '1', '8', '', '2', '2023-10-09', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-03 01:38:36', 108, '2023-10-06 04:14:11', 0, NULL, 1),
(14600, 'Suganya. S', '13', '7397260148', '9094779745', 'suganyashallu@email.com', '2001-02-20', 22, '6', '2', 'Jamuna rani', 'Housemade', 20000.00, 1, 0.00, 20000.00, 'Mugalivakkam, chennai', 'Mugalivakkam, chennai', '2310030015', '', '1', 'upload_files/candidate_tracker/531004400_Suganya_BCA_2022.pdf', NULL, '1', '2023-10-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not much open with the TxxampC Need to check with family and come back if comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-03 03:06:45', 85, '2023-10-25 11:21:08', 0, NULL, 1),
(14601, '', '0', '8637450658', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310030016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-03 04:13:41', 0, NULL, 0, NULL, 1),
(14602, 'Mahaboob basha', '31', '8838327252', '', 'mahaboobbasha.g23@gmail.com', '1999-11-13', 23, '2', '2', 'Gouse.k', 'Driver', 18000.00, 1, 0.00, 25000.00, 'CHENNAI', 'CHENNAI', '2310030017', '1', '1', 'upload_files/candidate_tracker/29368229173_Mahaboob basha.pdf', NULL, '1', '2023-10-05', 0, '', '3', '59', '2023-10-09', 120000.00, '', '', '1970-01-01', '1', 'Selected for IT 5months Intern 3yrs emp conditions', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-03 04:28:50', 85, '2023-10-05 06:01:37', 0, NULL, 1),
(14603, 'SARATHKUMAR T', '23', '6374198840', '7868818456', 'sarathkumart0521@gmail.com', '1999-11-05', 23, '3', '2', 'Thiruppathi', 'Farmer', 12000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2310030018', '', '1', 'upload_files/candidate_tracker/79581150603_Sarath.pdf', NULL, '1', '2023-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills will not sustain not open for TxxampC not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-03 04:56:33', 104, '2023-10-03 05:15:13', 0, NULL, 1),
(14604, '', '0', '8438390442', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310030019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-03 11:17:26', 0, NULL, 0, NULL, 1),
(14605, 'Venu D S', '5', '9449600224', '9483059935', 'desinavenu@gmail.com', '2002-03-26', 21, '3', '2', 'Shreenivas', 'Farmer', 100000.00, 1, 0.00, 20000.00, 'Davangere', 'Marathalli', '2310040001', '', '1', 'upload_files/candidate_tracker/15745335324_venu ds resume-1.pdf', NULL, '1', '2023-10-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-04 10:26:10', 1, '2023-10-04 10:34:19', 0, NULL, 1),
(14606, 'B.Ahamed Rila', '33', '8220067521', '9944450947', 'ahamedrilaharoon@gmail.com', '2001-06-22', 22, '6', '2', 'M.Burhan Noordeen', 'Sales man', 30000.00, 3, 16000.00, 20000.00, '2a Sethu Road Adirampattinam Tamil Nadu', 'Udayar mension mannadi', '2310040002', '', '2', 'upload_files/candidate_tracker/95362155670_B.Ahamed Rila.pdf', NULL, '1', '2023-10-04', 15, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Seems to be slow 5050 Virtual with Manikandan Auditor Final round Hold by Gokul not much active pressure handling doubts', '4', '1', '0', '1', '8', '0', '2', '2023-10-11', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-04 10:39:03', 1, '2023-10-04 10:51:54', 0, NULL, 1),
(14607, 'Purushothaman N', '33', '9626384747', '7904546154', 'purushothpush22@gmail.com', '2000-11-22', 22, '6', '2', 'Narayanasamy P', 'Daily wager', 15000.00, 2, 0.00, 20000.00, 'Puducherry', 'Puducherry', '2310040003', '', '1', 'upload_files/candidate_tracker/17783612893_blue professional modern CV resume.pdf', NULL, '1', '2023-10-04', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Accounts Virtual With Mani Auditor Left without attending the final round with Gokul', '4', '1', '', '1', '8', '', '2', '2023-10-11', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-04 11:03:04', 108, '2023-10-04 05:18:15', 0, NULL, 1),
(14608, 'Deepak S', '6', '8925700517', '9566127517', 'catchmeondeepak14112002@gmail.com', '2002-11-14', 20, '1', '2', 'Sasi Kumar S', 'Auto Driver', 12000.00, 1, 0.00, 15000.00, '40/36, Burrah Sahib Street, Mount Road, chennai 2', '40/36, Burrah Sahib Street, Mount Road , chennai 2', '2310040004', '', '1', 'upload_files/candidate_tracker/84693140040_Latest Resume Deepak 2.docx', NULL, '1', '2023-10-04', 0, '55466', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not sustain long term ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-04 11:07:49', 108, '2023-10-04 05:26:15', 0, NULL, 1),
(14609, 'T.R RIFAT MOHAMMED', '16', '9840664612', '', 'rifatmohammed777@gmail.com', '1999-07-21', 24, '3', '2', 'T.S RIZWAN MOHAMMED', 'Accountant', 60000.00, 2, 0.00, 24000.00, 'No:78/40 periyena Mudali st seven wells Chennai-1', 'No:78/40 Periyena Mudali St Seven Wells Chennai-1', '2310040005', '', '1', 'upload_files/candidate_tracker/80928238416_Resume - RIFAT MOHAMMED.pdf', NULL, '1', '2023-10-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Our Roles Attitude Issue  Final round rejected by gokul', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-04 11:17:04', 1, '2023-10-04 11:30:30', 0, NULL, 1),
(14610, 'Eshwar', '28', '6380665416', '', 'eshwar.utr@gmail.com', '2000-01-22', 23, '3', '2', 'saibaskaran', 'MBA business Analytics', 90000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2310040006', '', '1', 'upload_files/candidate_tracker/61359044558_Eshwar S resume (3) (6).pdf', NULL, '1', '2023-10-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Our roles Will not sustain and handle our pressure not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-04 11:18:44', 1, '2023-10-04 11:28:58', 0, NULL, 1),
(14611, 'Pushpavanakumar S', '28', '9500551606', '8072497405', 'pushpavanakumar@gmail.com', '1998-08-12', 25, '6', '1', 'Sattanathan', 'Food Safety officer', 80000.00, 1, 0.00, 20000.00, 'Virudhunagar', 'Virudhunagar', '2310040007', '', '1', 'upload_files/candidate_tracker/17254542404_Pushpavanakumar+resume-1.pdf', NULL, '1', '2023-10-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is in Dilemma Will not sustain and handle our work Pressure Final round Reject by Gokul', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-04 11:18:59', 1, '2023-10-04 11:31:00', 0, NULL, 1),
(14612, 'J.Mark Iraiarasan', '28', '9360975940', '', 'markramesh16@gmail.com', '1998-12-01', 24, '6', '2', 'Dje Davidson', 'Pastor', 130000.00, 1, 0.00, 20000.00, 'Enoore', 'Ennore', '2310040008', '', '1', 'upload_files/candidate_tracker/78345800161_Mark Resume.pdf', NULL, '1', '2023-10-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for MIS Not much family need settled Too long Distance Will not sustain in a long', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-04 11:20:15', 1, '2023-10-04 11:31:26', 0, NULL, 1),
(14613, 'Srilekha M R', '6', '7093629557', '6374972971', 'srisrilekha57@gmail.com', '1999-09-29', 24, '1', '1', 'Saravanan', 'Assistant manager', 50000.00, 1, 19400.00, 22000.00, 'Perambur', 'Perambur', '2310040009', '', '2', 'upload_files/candidate_tracker/55337906135_Resume_15_09_2023_12_38_49_pm.pdf', NULL, '1', '2023-10-04', 0, '77799', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-04 12:09:11', 85, '2023-10-04 06:34:11', 0, NULL, 1),
(14614, 'ABINESHKANNAN S', '5', '6385459486', '', 'abineshkannan05@gmail.com', '2002-05-17', 21, '4', '2', 'SIVAJI K', 'FORMER', 15.00, 2, 0.00, 17.00, '928 -NorthStreet, Arasapattu, Thanjavur -614019', '19/4,Mgr Street,Anandapuram , Tamabram , Chennai', '2310040010', '', '1', 'upload_files/candidate_tracker/74910214274_Resume_ABINESHKANNAN.S_Format6-1.pdf', NULL, '1', '2023-10-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long Distance Fresher Salary Exp is high not joined a company earlier as the salary offered was low and it was around 13K TH\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-04 12:23:52', 108, '2023-10-04 05:23:06', 0, NULL, 1),
(14615, '', '0', '7603914147', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310040011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-04 01:39:20', 0, NULL, 0, NULL, 1),
(14616, 'M.Karthikeyan', '5', '6382187475', '8248632469', 'Karthikeyanmsd777@gmail.com', '1999-06-13', 24, '3', '2', 'Mayilsamy', 'Daily wages', 10000.00, 1, 0.00, 20000.00, '154 Athitharavadar street Thammampatty salem', 'No 32 Bajanai kovil street, Nandapakam chennai 89', '2310040012', '', '1', 'upload_files/candidate_tracker/70858914621_Resume.pdf', NULL, '1', '2023-10-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Basic skills need to open a lot will not handle our work pressure not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '6', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-04 01:47:40', 108, '2023-10-04 05:24:40', 0, NULL, 1),
(14617, 'vikram', '13', '9176254750', '9941749240', 'vikramsathish1208@gmail.com', '2000-08-12', 23, '2', '2', 'sathish kumar', 'business', 30000.00, 1, 0.00, 26000.00, 'chennai', 'chennai', '2310040013', '1', '1', 'upload_files/candidate_tracker/42978197417_Vikram S-24.pdf', NULL, '1', '2023-10-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for TxxampC Father has his own web development PHP business will not sustain', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-04 02:15:17', 85, '2023-10-05 06:02:18', 0, NULL, 1),
(14618, '', '0', '9092580376', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310040014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-04 03:57:52', 0, NULL, 0, NULL, 1),
(14619, 'Sowmiya M', '5', '9940095842', '7299112858', 'ssowmiya960@gmail.com', '2003-07-05', 20, '2', '2', 'Sowmiya M', 'Team created', 10000.00, 1, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2310040015', '1', '1', 'upload_files/candidate_tracker/57185823918_Resume_Sowmiya M_Format1.pdf', NULL, '1', '2023-10-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication No understanding poor Communication not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-04 07:42:57', 108, '2023-10-09 12:07:03', 0, NULL, 1),
(14620, 'Kumar V', '5', '8248593147', '9790994626', 'kumarkumark804@gmail.com', '2000-03-12', 23, '2', '1', 'Devi', 'House wife', 15000.00, 0, 14500.00, 20000.00, 'Chennai', 'Chennai', '2310050001', '1', '2', 'upload_files/candidate_tracker/64330988793_A B O U T M E-1.docx', NULL, '1', '2023-10-05', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need To Give His Confirmation on the Salary 2.2 LPA max offer Final Round with Gokul for Renewal/operations have exp in star health for 2 yrs', '5', '1', '', '1', '8', '', '2', '2023-10-09', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-05 01:19:51', 108, '2023-10-05 12:03:53', 0, NULL, 1),
(14621, 'vignesh d', '31', '8668180840', '', 'vigneshdharuman01@gmail.com', '1999-09-13', 24, '2', '2', 'dharuman', 'carpenter', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2310050002', '1', '1', 'upload_files/candidate_tracker/40249886097_New Resume.pdf', NULL, '1', '2023-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance Up and down 60kms will not sustain\n', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-05 10:34:26', 108, '2023-10-06 04:28:22', 0, NULL, 1),
(14622, '', '0', '7550154958', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310050003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-05 11:05:36', 0, NULL, 0, NULL, 1),
(14623, 'Saravanan', '16', '9176297535', '', 'saravananshanmse2@yahoo.in', '1987-03-09', 36, '6', '2', 'K.Shanmugam', 'Mason', 18000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2310050004', '', '2', 'upload_files/candidate_tracker/93051322932_CURRICULAMVITAE-SARAVANAN - MIS.doc', NULL, '1', '2023-10-05', 7, '', '3', '59', '2023-10-09', 240000.00, '', '5', '1970-01-01', '2', 'Selected for MIS role in Consultant Role Have Exp in MIS Good Sustainability Communication Good Final Round with GOkul', '3', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-05 11:15:11', 60, '2023-10-07 11:33:20', 0, NULL, 1),
(14624, 'S sowmiya', '16', '7550159458', '9677208954', 'Sowmiyas@2418gmail.com', '2001-06-18', 22, '2', '2', 'N g Sankar', 'Auto driver', 15000.00, 1, 17000.00, 20000.00, 'T nagar', 'T nagar', '2310050005', '1', '2', 'upload_files/candidate_tracker/22296319376_cv 1 dox.pdf', NULL, '1', '2023-10-05', 7, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication OK Have Exp in CAMS Interested to learn in MF but exp ESI benefits checked for B2B she need to confirm her interest', '3', '1', '', '1', '8', '', '2', '2023-10-07', '2', '7', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-05 11:27:02', 104, '2023-10-11 09:37:49', 0, NULL, 1),
(14625, 'A.Nazreen', '5', '8124225516', '9677002168', 'Shabanazreen22@gmail.com', '1999-01-22', 24, '2', '1', 'A SIVASANKARAN', 'Private employee', 20000.00, 1, 15000.00, 20000.00, 'No:33D,1st unit,Madhavaram Milk Colony,Chennai', 'No:33D,1st Unit,Madhavaram Milk Colony, Chennai', '2310050006', '1', '2', 'upload_files/candidate_tracker/31562494193_AnyScanner_09_27_2023.pdf', NULL, '1', '2023-10-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Backend Much she is into treatment for pregnancy will not sustain for a long', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-05 11:55:59', 108, '2023-10-07 11:12:07', 0, NULL, 1),
(14626, 'Gayathri S', '5', '7358275061', '7358475061', 'gayathrisakthivel2327@gmail.com', '2002-01-27', 21, '6', '2', 'Sakthivel.A', 'Car painter', 25000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2310050007', '', '1', 'upload_files/candidate_tracker/41299604325_a64018274ce1c9__a64018274cd59b_Resume.pdf', NULL, '1', '2023-10-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up a lot will not handle the pressure not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-05 12:14:22', 108, '2023-10-05 04:12:49', 0, NULL, 1),
(14627, 'Deepa', '16', '9360906836', '7871999061', 'deepamani042@gmail.com', '1993-11-13', 29, '6', '1', 'Ramesh', 'Accounts executive', 30000.00, 2, 18000.00, 25000.00, 'Chennai', 'Vadapalani', '2310050008', '', '2', 'upload_files/candidate_tracker/83088349140_CURRICULUM VITAE- Deepa.docx', NULL, '1', '2023-10-05', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good in Communication Recently Married Sustainability Good in previous emp long run doubts in our roles', '3', '1', '', '1', '1', '', '2', '2023-10-12', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-05 12:49:11', 108, '2023-10-05 04:09:14', 0, NULL, 1),
(14628, '', '0', '8825873639', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310050009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-05 12:54:32', 0, NULL, 0, NULL, 1),
(14629, 'Gobi Krishna', '28', '8610964790', '', 'gobiguna19@gmail.com', '2001-10-10', 21, '6', '2', 'gunasekaran', 'senior techinician', 50000.00, 1, 0.00, 15000.00, 'neyveli', 'neyveli', '2310050010', '', '1', 'upload_files/candidate_tracker/42975354445_Gobi_krishna Resume.pdf', NULL, '1', '2023-10-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for our Roles ', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-05 01:06:13', 1, '2023-10-05 01:24:43', 0, NULL, 1),
(14630, 'gokul kannan', '13', '9790846803', '', 'gokulkannananand@gmail.com', '1999-11-27', 23, '3', '2', 'anand', 'security', 15000.00, 2, 0.00, 16000.00, 'chennai', 'chennai', '2310050011', '', '1', 'upload_files/candidate_tracker/84370291159_gokul (1).pdf', NULL, '1', '2023-10-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance Will not sustain and not much open with the TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-05 03:55:24', 1, '2023-10-06 03:22:12', 0, NULL, 1),
(14631, 'Swetha G', '4', '6374268788', '', 'g9333878@gmail.com', '2001-04-26', 22, '2', '2', 'gunasekar M', 'banca relationship associate', 20000.00, 2, 17000.00, 28000.00, 'Chennai vyasarpadi', 'Chennai vyasarpadi', '2310050012', '1', '2', 'upload_files/candidate_tracker/89009794391_DOC-20220921-WA0003.docx', NULL, '1', '2023-10-06', 15, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-05 05:10:10', 85, '2023-10-06 09:54:10', 0, NULL, 1),
(14632, 'Akash Srinivasan', '31', '8220399289', '', 'akashfullstackdeveloper@gmail.com', '2000-03-17', 23, '2', '2', 'Srinivasan', 'Unemployed', 10000.00, 1, 0.00, 16000.00, 'Thanjavur', 'Chennai', '2310060001', '1', '1', 'upload_files/candidate_tracker/66801600063_Akash', NULL, '1', '2023-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'holding an offer with the intern company and looking for something more on that', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-06 10:52:01', 108, '2023-10-06 04:26:46', 0, NULL, 1),
(14633, 'R.jagadesan', '5', '8825936764', '8122174063', 'jagavr2@gmail.com', '2002-03-09', 21, '2', '2', 'Raghunathan', 'Chicken shop', 20000.00, 1, 0.00, 17000.00, 'Velachey', 'Velachery', '2310060002', '1', '1', 'upload_files/candidate_tracker/7964863351_Jagadeesan Resume (1) (1).pdf', NULL, '1', '2023-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Career Gap Not explaining properly will not sustain Not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-06 11:03:09', 108, '2023-10-07 11:12:53', 0, NULL, 1),
(14634, 'G DINESHKUMAR', '13', '9597663123', '', 'arundineshkumar7msd@gmail.com', '1996-12-24', 26, '2', '2', 'Ganesan', 'Coolie', 12000.00, 1, 0.00, 15000.00, 'Tiruppur', 'Chennai', '2310060003', '26', '1', 'upload_files/candidate_tracker/60080457919_DINESHKUMAR,g RESUME.pdf', NULL, '1', '2023-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come back after learning can give a try if he comes back ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-06 11:07:01', 108, '2023-10-06 04:24:44', 0, NULL, 1),
(14635, 'B.soundar', '14', '9087855067', '8939097724', 'soundar2411@gmail.com', '2001-11-24', 21, '1', '2', 'N.Balraj', 'Student', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2310060004', '', '1', 'upload_files/candidate_tracker/45106270406_SOUNDAR - RESUME. copy (1).pdf', NULL, '1', '2023-10-06', 0, 'jobs', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'To long Distance up and down 52kms no basic knowledge in the JS skills if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-06 11:10:51', 108, '2023-10-06 04:23:28', 0, NULL, 1),
(14636, 'Jai Akash u', '14', '9600063649', '9941414962', 'jaiakashu275@gmail.com', '2001-04-05', 22, '1', '2', 'c B Udaya Sankar', 'Student', 20000.00, 0, 0.00, 20000.00, 'Kundrathur', 'Kundrathur', '2310060005', '', '1', 'upload_files/candidate_tracker/27449139586_jai resume 2530.docx', NULL, '1', '2023-10-06', 0, 'Job', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in non voice process Looking almost for the same roles will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-06 11:10:59', 1, '2023-10-06 11:24:29', 0, NULL, 1),
(14637, 'Ramana Priyan', '16', '9788808682', '', 'ramanapriyan05@gmail.com', '1998-02-05', 25, '6', '2', 'Kalaivanan', 'Business', 20000.00, 2, 240000.00, 400000.00, 'Trichy', 'Chennai', '2310060006', '', '2', 'upload_files/candidate_tracker/77332980279_Ramana+Priyan+Data+Analyst.pdf', NULL, '1', '2023-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Core Data Analyst Role Will not sustain', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-06 11:34:22', 108, '2023-10-06 04:18:40', 0, NULL, 1),
(14638, 'S.Asma Fathima', '33', '7358236011', '9176366394', 'sasmafathimas2020@gmail.com', '2002-10-24', 20, '6', '2', 'S.Shabir ahamed', 'Working in juice shop', 25000.00, 1, 0.00, 20000.00, 'Mannady, Chennai', 'Mannady , chennai', '2310060007', '', '1', 'upload_files/candidate_tracker/32904039810_Asma Fathima.pdf', NULL, '1', '2023-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Calling Roles will not sustain need to open up a lot', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-06 11:43:25', 108, '2023-10-06 04:16:51', 0, NULL, 1),
(14639, '', '0', '9597290464', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310060008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-06 12:02:35', 0, NULL, 0, NULL, 1),
(14640, 'M.pradeepkumar', '6', '9566901325', '9994334645', 'Pradeepmurugan2@gmail.com', '2001-06-07', 22, '4', '2', 'E.murugan', 'Farmer', 15000.00, 0, 0.00, 17000.00, 'Cheyyar', 'Chennai', '2310060009', '', '1', 'upload_files/candidate_tracker/50529556890_deep resume-3.pdf', NULL, '1', '2023-10-09', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-06 01:29:47', 104, '2023-10-09 06:48:04', 0, NULL, 1),
(14641, 'Ramkumar', '31', '9952013185', '9940249488', 'kram3253622@gmail.com', '2008-10-06', 0, '3', '2', 'Elumalai.R', 'Driver', 30000.00, 2, 0.00, 180000.00, 'Velachery Chennai', 'Velachery Chennai', '2310060010', '', '1', 'upload_files/candidate_tracker/92972794789_RAMKUMAR -Resume.pdf', NULL, '1', '2023-10-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non voice will not sustain in our roles not suitable\n', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-06 01:38:06', 1, '2023-10-06 01:52:23', 0, NULL, 1),
(14642, '', '0', '7395974616', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310070001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-07 02:36:08', 0, NULL, 0, NULL, 1),
(14643, 'Reshma.M', '5', '9360295681', '8870480211', 'Reshmarobert25@gmail.com', '2000-09-05', 23, '2', '2', 'Mariya Robert', 'Fishermen', 10000.00, 3, 0.00, 15000.00, '4/279 ,Xavier street, Keezha Manakudy ,Kanyakumari', 'Kodambakkam,chennai', '2310070002', '1', '1', 'upload_files/candidate_tracker/34372869222_Reshmaresume1.pdf', NULL, '1', '2023-10-07', 0, '', '3', '59', '2023-10-09', 164400.00, '', '5', '1970-01-01', '2', 'Selected for Muthu team in consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-07 08:22:08', 60, '2023-10-09 10:07:26', 0, NULL, 1),
(14644, 'Deen Mohamed N', '13', '9842765384', '9952790882', 'deenmoh0102@gmail.com', '2002-02-01', 21, '3', '2', 'Nizamudheen', 'Diver', 75000.00, 4, 0.00, 400000.00, 'Karaikal', 'Chennai', '2310070003', '', '1', 'upload_files/candidate_tracker/57468946593_Deen_ CV.pdf', NULL, '1', '2023-10-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-07 10:18:07', 1, '2023-10-07 10:22:08', 0, NULL, 1),
(14645, 'Ramani Ravichandiran', '5', '6385713693', '8681842853', 'ramaniravichandiran2952000@gmail.com', '2000-05-29', 23, '2', '2', 'Chenjilakshmi R', 'House wife', 40000.00, 5, 15000.00, 18000.00, 'Chidambaram', 'Chidambaram', '2310070004', '1', '2', 'upload_files/candidate_tracker/83785344414_Ramani Ravichandiran.docx', NULL, '1', '2023-10-07', 2023, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sustainability in her previous exp will not handle our work pressure Looking only for the salary growth', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-07 10:38:00', 108, '2023-10-07 04:04:52', 0, NULL, 1),
(14646, 'Balamurali G', '4', '7708969473', '', 'balamurali1557@gmail.com', '1992-04-23', 31, '2', '2', 'No', 'Farmer', 12000.00, 0, 25000.00, 30000.00, 'Nagapattinam', 'Saidapet', '2310070005', '1', '2', 'upload_files/candidate_tracker/91469389410_Balamurali.G CV.pdf', NULL, '1', '2023-10-10', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-07 12:26:49', 85, '2023-10-10 09:54:25', 0, NULL, 1),
(14647, 'G. EZHIL', '5', '8939980425', '', 'justinezhil@gmail.com', '2001-08-17', 22, '2', '2', 'A. JAYANTHI', 'Telesales', 25000.00, 3, 16000.00, 25000.00, 'Chennai', 'Chennai', '2310070006', '1', '2', 'upload_files/candidate_tracker/49976588806_CV_2023100418245251.pdf', NULL, '1', '2023-10-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-07 12:32:39', 108, '2023-10-07 12:51:45', 0, NULL, 1),
(14648, 'Harini m', '26', '8056724866', '8489550608', 'harinimathi815@gmail.com', '1998-02-08', 25, '6', '2', 'Mathiraj', 'Daily wages', 10000.00, 1, 25000.00, 45000.00, 'Trichirappalli', 'Trichirappalli', '2310070007', '', '2', 'upload_files/candidate_tracker/11497152965_Harini M _Resume.pdf', NULL, '1', '2023-10-07', 60, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude will not handle our work Roles Salary exp is very high not suitable', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-07 12:36:41', 108, '2023-10-07 04:08:04', 0, NULL, 1),
(14649, 'Gomathi', '3', '9500548924', '7397457995', 'balugomathi2000@gmail.com', '2000-11-06', 22, '2', '2', 'Balaji', 'Mtc', 300000.00, 1, 0.00, 200000.00, 'Poonamallee', 'Poonamallee', '2310070008', '1', '1', 'upload_files/candidate_tracker/5336822203_Gomathi frontend resume.pdf', NULL, '1', '2023-10-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance Technically Sounds Ok not comfort with the TxxampC not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-07 12:37:00', 108, '2023-10-07 04:05:34', 0, NULL, 1),
(14650, 'Sivagami. R', '31', '9025912040', '8754822918', 'Shivagami.Shanti@gmail.com', '1994-07-01', 29, '3', '2', 'Ranganathan', 'Farmer', 300000.00, 2, 0.00, 200000.00, 'Thiruvannamalai', 'Chennai', '2310070009', '', '1', 'upload_files/candidate_tracker/27040822398_Siva portfolio .pdf', NULL, '1', '2023-10-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-07 12:42:24', 108, '2023-10-07 04:09:58', 0, NULL, 1),
(14651, 'Abinaya Annadurai', '11', '7358340498', '9080020526', 'abinaya.annadurai2020@gmail.com', '2001-08-20', 22, '3', '2', 'Annadurai', 'Farmer', 80000.00, 2, 18200.00, 22000.00, 'Chennai', 'Chennai', '2310070010', '', '2', 'upload_files/candidate_tracker/1613554834_Hr.CV.pdf', NULL, '1', '2023-10-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance will not sustain 66kms up and down', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-07 12:44:47', 108, '2023-10-07 04:07:12', 0, NULL, 1),
(14652, '', '0', '9444107725', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310070011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-07 03:12:26', 0, NULL, 0, NULL, 1),
(14653, 'Jeya Stiffin Stuwart', '5', '9442331856', '', 'jssstiffin@gmail.com', '1998-10-19', 24, '2', '2', 'Chithirai Selvi - parent', 'Teacher', 400000.00, 2, 18000.00, 22000.00, 'Tirunelveli', 'Chennai', '2310070012', '1', '2', 'upload_files/candidate_tracker/70351974150_Resume (Jeya Stiffin BE) -1.pdf', NULL, '1', '2023-10-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Sales Exp Will not sustain and handle our calls not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-07 03:36:12', 108, '2023-10-07 04:09:01', 0, NULL, 1),
(14654, 'Nandhini.k', '6', '6383652500', '9176110393', 'Nandhinikmgn@gmail.com', '2001-07-17', 22, '2', '2', 'Mariammal', 'Cooli', 15000.00, 1, 0.00, 20000.00, 'Velechery', 'Velechery', '2310080001', '1', '1', 'upload_files/candidate_tracker/92516593116_CV K NANDHINI.docx', NULL, '1', '2023-10-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication skill and Product knowledge kindly confirm joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-08 04:12:30', 104, '2023-10-09 06:50:19', 0, NULL, 1),
(14655, 'Gopikrishnan.p', '13', '6374078292', '6389347531', 'kgopi7288@gmail.com', '2001-07-22', 22, '6', '2', 'Padmanaban.R', 'Framer', 10000.00, 2, 0.00, 30000.00, 'Cuddalore', 'Cuddalore', '2310090001', '', '1', 'upload_files/candidate_tracker/73942671252_GOPIKRISHNAN_P_CV-2-1.pdf', NULL, '1', '2023-10-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to learn a lot not much comfort in TxxampC if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-09 09:29:18', 104, '2023-10-09 06:50:35', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14656, 'Sathish Kumar', '33', '9025101388', '9500151158', 'sathishkannan0509@gmail.com', '1999-01-05', 24, '6', '2', 'Kamalakannan', 'Farmer', 50000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2310090002', '', '1', 'upload_files/candidate_tracker/89435968166_Sathishkumar_Resume.pdf', NULL, '1', '2023-10-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics Skills checked for Backend operations but not ok with that', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-09 10:09:26', 104, '2023-10-09 06:51:20', 0, NULL, 1),
(14657, 'Bharathi', '4', '7826945232', '', 'Bharathi050301@gmail.com', '2001-03-05', 22, '1', '2', 'Mahalingam', 'Centring', 15000.00, 2, 8000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2310090003', '', '2', 'upload_files/candidate_tracker/81853981392_RESUME BHARATHI.pdf', NULL, '1', '2023-10-09', 20, 'P1023', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for telesales', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-09 10:12:35', 1, '2023-10-09 10:32:06', 0, NULL, 1),
(14658, 'Arun T', '31', '9952047762', '', 'aswinarun17@gmail.com', '1999-06-21', 24, '6', '2', 'Thanapathi M', 'Retired person', 40000.00, 2, 0.00, 20000.00, 'Gingee', 'Chennai', '2310090004', '', '1', 'upload_files/candidate_tracker/36291995292_Arun T Resume.pdf', NULL, '1', '2023-10-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Need To Learn A Lot Not Much Comfort In TxxampC If He Comes Back Let Us Try', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-09 10:27:05', 104, '2023-10-09 06:51:35', 0, NULL, 1),
(14659, 'naveen kumar', '31', '9941762216', '9710256018', 'V.naveenkumar10012002@gmail.com', '2002-01-10', 21, '3', '2', 'veeraraghavan', 'printing press', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2310090005', '', '1', 'upload_files/candidate_tracker/93602786738_Naveen Resume.pdf', NULL, '1', '2023-10-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-09 11:20:46', 1, '2023-10-09 11:26:29', 0, NULL, 1),
(14660, 'Tamil Selvan', '31', '9087332846', '', 'Tamiltd1304@gmail.com', '2001-02-13', 22, '3', '2', 'e.panner selvam', 'fiter', 25000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2310090006', '', '1', 'upload_files/candidate_tracker/51261002834_Tamil Selvan_CV1.pdf', NULL, '1', '2023-10-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-09 11:20:49', 1, '2023-10-09 11:24:43', 0, NULL, 1),
(14661, 'K.Ganesh', '31', '7904708331', '', 'ganesh1861997@gmail.com', '2002-07-09', 21, '2', '2', 'C.kumar', 'Carpenter', 16000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2310090007', '1', '1', 'upload_files/candidate_tracker/73211146055_my resume (1).pdf', NULL, '1', '2023-10-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Need To Learn A Lot Not Much Comfort In TxxampC If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-09 11:20:59', 104, '2023-10-09 06:52:09', 0, NULL, 1),
(14662, 'PARAMESWARI NITHYA P', '16', '7397571127', '', 'sreenithya013@gmail.com', '1998-04-29', 25, '6', '2', 'PONNU DURAI S', 'kooli', 25000.00, 3, 18000.00, 22000.00, 'Tirunelveli', 'velchery', '2310090008', '', '2', 'upload_files/candidate_tracker/92820689968_Nithya resume.pdf', NULL, '1', '2023-10-09', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication.. has exp in MIS.', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-09 11:48:14', 104, '2023-10-09 06:17:58', 0, NULL, 1),
(14663, 'jonathan', '5', '7305436184', '', 'jonathanebenezer05@gmail.com', '2001-06-28', 22, '2', '2', 'ebenezer', 'printing press', 10000.00, 1, 0.00, 14000.00, 'royapuram', 'Royapuram', '2310090009', '1', '1', 'upload_files/candidate_tracker/35743816007_resume (6).pdf', NULL, '1', '2023-10-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication No understanding waste profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-09 11:56:23', 104, '2023-10-09 06:53:39', 0, NULL, 1),
(14664, 'Lakshmi sravani K', '33', '7092735234', '9444968315', 'kundamslakshmik98@gmail.com', '1998-08-13', 25, '6', '2', 'Surendra Babu K', 'Cheif security officer', 20000.00, 0, 25000.00, 30000.00, 'New no 10 Old no.232 8th block 3rd lane kkd nagar', 'New No 10 Old No.232 8th Block 3rd Lane Kkd Nagar', '2310090010', '', '2', 'upload_files/candidate_tracker/42902945354_Lakshmi Sravani K - Resume Updated August.pdf', NULL, '1', '2023-10-09', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Good communication.... has exp in acc but  fresher to our industry.. has  knowledege in tally gst tax.. sal expt high', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-09 11:59:35', 1, '2023-10-09 12:09:06', 0, NULL, 1),
(14665, 'PAVITHRA K', '6', '7449041178', '9176632873', 'pavithrakamaraj0@gmail.com', '2002-05-22', 21, '1', '2', 'Meenakshi', 'House wife', 84000.00, 4, 0.00, 20000.00, 'Chennai', 'Chennai', '2310090011', '', '1', 'upload_files/candidate_tracker/87693681841_Pavi resume final.docx', NULL, '1', '2023-10-09', 0, 'CA156', '3', '59', '2023-10-12', 168000.00, '', NULL, '2024-09-06', '2', 'Selected for Babu Team Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-09 12:04:16', 60, '2023-10-11 07:17:32', 0, NULL, 1),
(14666, 'Karunya R', '2', '6385638485', '', 'karunya.purasaloor@gmail.com', '2001-05-08', 22, '3', '2', 'Ragubalan U', 'Own business', 12000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2310090012', '', '1', 'upload_files/candidate_tracker/11188120196_Karunya R - Resume.pdf', NULL, '1', '2023-10-09', 0, '', '2', '97', NULL, 0.00, '', '0', NULL, '1', 'Has knowledge in prog.lau...she needs time to discuss with her parents  abt txxampc..', '2', '1', '0', '1', '8', '0', '2', '2023-10-10', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-09 12:40:07', 1, '2023-10-09 02:35:19', 0, NULL, 1),
(14667, 'Mohamed Nabeel', '21', '8531857290', '', 'mohamednabeel915@gmail.com', '2002-12-26', 20, '6', '2', 'Abushalibu', 'Stu', 30000.00, 2, 0.00, 20000.00, '122/A MAIN ROAD, MADUKKUR', '10/24, vigneshwarar, street maduvankkarai ,Guindy', '2310090013', '', '1', 'upload_files/candidate_tracker/54395085744_Nabeel resume .pdf', NULL, '1', '2023-10-09', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he much prefered logistic feild .. not suit for roles', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-09 01:19:28', 97, '2023-10-09 06:19:58', 0, NULL, 1),
(14668, 'Mahendran R', '2', '9786047798', '8248215974', 'Mahendran.ramar9797@gmail.com', '1997-07-09', 26, '3', '2', 'Ramar', 'Daily wages', 12000.00, 2, 0.00, 2.50, 'Theni', 'Chennai', '2310090014', '', '1', 'upload_files/candidate_tracker/22335622046_Mahendran_ramar.pdf', NULL, '1', '2023-10-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-09 02:26:18', 1, '2023-10-09 02:30:02', 0, NULL, 1),
(14669, 'RaviKumar L', '11', '7845912796', '8317455271', 'ravikumarlpg@gmail.com', '1979-12-14', 43, '6', '1', 'Latha V', 'House wife', 45000.00, 1, 40000.00, 45000.00, 'Hosur', 'Hosur', '2310090015', '', '2', 'upload_files/candidate_tracker/16600870844_RAVI_Resume.pdf', NULL, '1', '2023-10-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-09 02:38:41', 1, '2023-10-09 02:44:53', 0, NULL, 1),
(14670, 'janatha.s', '5', '8015223327', '', 'sjanatha30@gmail.com', '2001-07-26', 22, '2', '2', 'sanmugam.g', 'farmer', 500.00, 2, 0.00, 14000.00, 'villupuram', 'thousand lights', '2310090016', '1', '1', 'upload_files/candidate_tracker/95202436161_16968489771925695561175838719321 (1).pdf', NULL, '1', '2023-10-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication understanding poor will not handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-09 03:08:58', 104, '2023-10-09 06:54:19', 0, NULL, 1),
(14671, 'Narmadha', '5', '8838510029', '', 'narmadhavelmurugan29@gmail.com', '2001-09-02', 22, '2', '2', 'Velmurugan R', 'Business', 10000.00, 1, 0.00, 19000.00, 'Cuddalore (dis)', 'Cuddalore (dis)', '2310090017', '1', '1', 'upload_files/candidate_tracker/8037235476_tele cv.pdf', NULL, '1', '2023-10-12', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Sounding soft can be trained kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-09 03:54:02', 108, '2023-10-12 05:29:01', 0, NULL, 1),
(14672, 'Mohamed Jaserkhan', '5', '9360412896', '8056795458', 'Zaserkhan.pro@gmail.com', '1991-08-13', 32, '3', '1', 'Rasmiya banu', 'House wife', 10000.00, 1, 38000.00, 38000.00, 'Arasarkulam', 'Chennai', '2310090018', '', '2', 'upload_files/candidate_tracker/42609541742_JASAR_KHAN_pdf.pdf', NULL, '1', '2023-10-09', 0, '', '3', '59', '2023-10-10', 438000.00, '', '5', '1970-01-01', '1', 'Selected for Santhosh Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-09 04:01:36', 60, '2023-10-10 10:27:46', 0, NULL, 1),
(14673, 'karthik', '23', '9150345322', '', 'karthikfnf458@gmail.com', '2001-03-31', 22, '2', '2', 'Madhavan', 'Corpenter', 10000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'Chennai', '2310090019', '1', '1', 'upload_files/candidate_tracker/83808113759_Karthik .pdf', NULL, '1', '2023-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-09 05:26:07', 104, '2023-10-10 04:39:02', 0, NULL, 1),
(14674, 'Thendral t', '6', '7299385556', '', 'Thendraltamil2000@gmail.com', '2000-09-23', 23, '2', '2', 'D Tamil selvan', 'Daily wages', 15000.00, 0, 0.00, 12000.00, '8/181. Bharathidhasan 3rdcross street appavu nagar', '8/181. Bharathidhasan 3rdcross Street Appavu Nagar', '2310090020', '1', '1', 'upload_files/candidate_tracker/13642870930_thendral.pdf.pdf', NULL, '1', '2023-10-10', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher need to train a lot only thing is her physique need to check kindly look into the profile and let us know', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-09 05:54:27', 104, '2023-10-10 04:37:53', 0, NULL, 1),
(14675, 'VIDHYA R', '6', '8939403059', '9962960199', 'ammuvidhyaammu19419999@gmail.com', '1999-04-19', 24, '2', '2', 'Radhakrishnan', 'Mechine operator', 400000.00, 6, 17000.00, 20000.00, '2/132 perumal kovil Street budur Chennai 600067', '2/132 perumal kovil Street budur Chennai 600067', '2310090021', '1', '2', 'upload_files/candidate_tracker/49564646777_vidhya resume.docx', NULL, '1', '2023-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance 60kms up down will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-09 06:26:55', 104, '2023-10-10 09:33:09', 0, NULL, 1),
(14676, 'Tamilarasan A', '4', '9360493865', '8682969859', 'tamilmech110@gmail.com', '2001-06-08', 22, '3', '2', 'Annamalai K', 'Wages', 15000.00, 1, 0.00, 25000.00, 'Omalur', 'Omalur', '2310090022', '', '1', 'upload_files/candidate_tracker/23243836917_Resume (Tamilarasan A).pdf', NULL, '1', '2023-10-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-09 06:29:31', 1, '2023-10-09 06:35:48', 0, NULL, 1),
(14677, 'Lavanya R', '4', '7812880235', '9600579384', 'gopalavanya15@gmail.com', '2003-05-15', 20, '2', '2', 'Rajagopal M', 'Tailor', 10000.00, 1, 0.00, 13000.00, 'Kumbakonam', 'Kumbakonam', '2310090023', '1', '1', 'upload_files/candidate_tracker/86976630790_lavanya cv........pdf', NULL, '1', '2023-10-10', 0, '', '3', '59', '2023-10-16', 144000.00, '', '5', '1970-01-01', '2', 'Selected for Consultant Sustainability Doubts need to analyse in 7 days and confirm', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-09 06:32:35', 60, '2023-10-14 04:40:55', 0, NULL, 1),
(14678, 'Feroz Khan', '5', '9962374637', '8838339314', 'ferozkhan302k@icloud.com', '2002-01-30', 21, '2', '1', 'ashima', 'employee', 200000.00, 1, 18000.00, 25000.00, 'redhills', 'redh', '2310100001', '1', '2', 'upload_files/candidate_tracker/4934738151_Feroz_Khan.pdf', NULL, '3', '2023-10-10', 0, '', '3', '59', '2023-10-12', 297696.00, '', '5', '1970-01-01', '1', 'Selected for Shanmugam team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-10 10:20:53', 104, '2023-10-12 10:06:39', 0, NULL, 1),
(14679, 'Ariefraja A', '23', '9786198650', '9080632954', 'rajaarief28@gmail.com', '1999-08-28', 24, '2', '2', 'Abdul wakith', 'Work for texstails', 250.00, 1, 0.00, 250.00, 'Palani', 'Vellachery', '2310100002', '1', '1', 'upload_files/candidate_tracker/33365203340_Arief resume-2 (1).pdf', NULL, '1', '2023-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-10 10:33:51', 104, '2023-10-11 05:21:25', 0, NULL, 1),
(14680, 'P. Shanmuga Pandi', '31', '7010462795', '', 'pspandi03@gmail.com', '2000-01-29', 23, '3', '2', 'Pandiyan', 'Carpenter', 15000.00, 1, 0.00, 13000.00, 'Madurai', 'Chennai adambakkam', '2310100003', '', '1', 'upload_files/candidate_tracker/14597835098_SHANMUGA_PANDI P_Resume_21-08-2023-14-19-25.pdf', NULL, '1', '2023-10-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-10 10:41:37', 1, '2023-10-10 10:47:11', 0, NULL, 1),
(14681, 'Kalaiselvan B', '13', '8807070997', '9626074730', 'Krishkalai444@gmail.com', '1996-07-31', 27, '3', '2', 'Balakrishnan N', 'Farmer', 10000.00, 2, 0.00, 300000.00, 'Kallakurichi', 'Chennai', '2310100004', '', '1', 'upload_files/candidate_tracker/13117954118_DOC-20230912-WA0010..pdf', NULL, '1', '2023-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need to train a lot in JS Not Much ok with TxxampC If he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-10 11:12:08', 104, '2023-10-10 11:20:44', 0, NULL, 1),
(14682, 'Sathish kumar', '5', '8248048406', '9094053182', 'Sa2378046@gmail.com', '1996-08-26', 27, '2', '2', 'Suresh', 'Tailor', 15000.00, 1, 14000.00, 16000.00, 'Chenna', 'Chennai', '2310100005', '1', '2', 'upload_files/candidate_tracker/58728018464_sathishresume.pdf', NULL, '1', '2023-10-10', 0, '', '3', '59', '2023-10-12', 264000.00, '', '5', '1970-01-01', '1', 'Selected for Mani Team Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-10 11:35:37', 60, '2023-10-11 07:51:57', 0, NULL, 1),
(14683, 'Naveen kumar', '5', '8939079425', '', 'nk3417740@gmail.com', '2001-08-06', 22, '2', '2', 'Lalitha', 'Driver', 25.00, 0, 0.00, 15000.00, 'Chennai thiruvanmuiyer', 'Thiruvanmuiyer', '2310100006', '1', '1', 'upload_files/candidate_tracker/36165616986_naveenkumar resume .pdf', NULL, '1', '2023-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable No professional Candidate not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-10 11:41:29', 108, '2023-10-10 12:28:15', 0, NULL, 1),
(14684, 'Praveen B', '13', '9843739131', '9342165604', 'praveenshiva916@gmail.com', '2000-09-27', 23, '3', '2', 'Balasubramani R', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2310100007', '', '1', 'upload_files/candidate_tracker/82394262249_Praveen B Resume.pdf', NULL, '1', '2023-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-10 11:45:15', 104, '2023-10-10 04:34:39', 0, NULL, 1),
(14685, 'Ganesh. p', '4', '9360196720', '7305816400', 'pg0656235@gmail.com', '2002-03-12', 21, '3', '2', 'Prabakaran.p', 'Scrab shop', 50000.00, 1, 0.00, 12000.00, 'Chennai', 'Ayanavaram', '2310100008', '', '1', 'upload_files/candidate_tracker/7743902307_ganesh resume 1.pdf', NULL, '1', '2023-10-10', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '1', '5050 Profile fresher Need to train a lot referring your name do check and let me know your inputs', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-10 11:45:40', 1, '2023-10-10 12:44:33', 0, NULL, 1),
(14686, 'Johnson vasantharaj s', '31', '8925925566', '', 'johnsonvasantharaj47@gmail.com', '2001-10-04', 22, '2', '2', 'Siluvainathan', 'Spinning mill operator', 12000.00, 1, 0.00, 25000.00, 'Karaikal', 'Karaikal', '2310100009', '1', '1', 'upload_files/candidate_tracker/65317021447_Johnson_cv.pdf', NULL, '1', '2023-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Not Open For TxxampC If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-10 11:46:14', 85, '2023-10-12 03:03:03', 0, NULL, 1),
(14687, 'SaranyaG', '6', '8838967597', '9962619457', 'saranyaguruhema885@gmail.com', '1997-06-28', 26, '2', '1', 'Senthil Kumar.R', 'Southern railway ticket checking officer', 70000.00, 1, 10000.00, 20000.00, 'Chennai', 'Perungalathur', '2310100010', '1', '2', 'upload_files/candidate_tracker/56563432952_Resume_SaranyaG_Format1.pdf', NULL, '1', '2023-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance no sustainability not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-10 12:13:57', 108, '2023-10-10 12:27:39', 0, NULL, 1),
(14688, 'M.Jeyavel', '31', '8270960034', '9655974886', 'johnjeyavel2000@gmail.com', '2000-09-16', 23, '3', '2', 'V.Moorthy', 'Fresherman', 200000.00, 2, 0.00, 15000.00, 'Kalpakkam', 'Velachery', '2310100011', '', '1', 'upload_files/candidate_tracker/26511502750_johnjeyavel.resume (2).pdf', NULL, '1', '2023-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-10 12:26:43', 104, '2023-10-10 04:31:45', 0, NULL, 1),
(14689, 'Dinesh Kumar D', '13', '9360162075', '', 'dinesh.duvd@gmail.com', '2001-10-28', 21, '6', '2', 'Dhurai M', 'Farmer', 20000.00, 1, 0.00, 360000.00, 'Adiannamalai, Tiruvannamalai district - 606604', 'Tiruvanmiyur, Chennai - 600041', '2310100012', '', '1', 'upload_files/candidate_tracker/84895243801_Dinesh_Kumar_D_Fresher.pdf', NULL, '1', '2023-10-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-10 12:34:10', 1, '2023-10-10 12:49:30', 0, NULL, 1),
(14690, 'Sujith Karnan', '13', '6381046739', '', 'sujithraina17@gmail.com', '2002-02-20', 21, '3', '2', 'Karnan', 'Fisherman', 18000.00, 1, 0.00, 20000.00, 'Karaikal', 'Karaikal', '2310100013', '', '1', 'upload_files/candidate_tracker/42811049068_Sujith.K,resume.pdf', NULL, '3', '2023-10-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-10 01:25:21', 1, '2023-10-10 01:31:47', 0, NULL, 1),
(14691, '', '0', '8940387294', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310100014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-10 03:46:37', 0, NULL, 0, NULL, 1),
(14692, 'Kiristina Sthepan', '5', '9363659164', '7010670162', 'parthachristy124@gmail.com', '1999-09-25', 24, '2', '2', 'Stephen', 'Farmer', 12000.00, 1, 0.00, 14000.00, 'Thanjavur', 'Thanjavur', '2310100015', '1', '1', 'upload_files/candidate_tracker/24966593798_christy resume (1) (1).pdf', NULL, '1', '2023-10-12', 0, '', '3', '59', '2023-10-16', 144000.00, '', '5', '1970-01-01', '2', 'Selected for Thanjavur consultant Role Need to analyse in 7days Teacher profile focused candidate', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-10 04:05:19', 60, '2023-10-17 05:58:39', 0, NULL, 1),
(14693, '', '0', '6374271140', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310100016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-10 04:22:48', 0, NULL, 0, NULL, 1),
(14694, '', '0', '9345747485', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310100017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-10 06:07:18', 0, NULL, 0, NULL, 1),
(14695, 'Maruthu pandi.A', '5', '9342817998', '9962774010', 'maruthupandi7998@gmail.com', '2002-07-04', 21, '2', '2', 'Arumugam', 'Fisher', 125000.00, 1, 12000.00, 18000.00, 'Ramanathapuram', 'Ramanathapuram', '2310100018', '1', '2', 'upload_files/candidate_tracker/56215264987_Maruthu Pandi Resume.pdf', NULL, '1', '2023-10-11', 3, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics Sales Skills no Communication not suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-10 06:34:00', 108, '2023-10-11 11:54:53', 0, NULL, 1),
(14696, 'A.Noori', '6', '7395946022', '8825813352', 'Nooribakash@gmail.com', '2002-03-09', 21, '2', '2', 'Allahbakash', 'Auto Driver', 20000.00, 2, 0.00, 20000.00, 'Tondiarpet, Chennai', 'Durga Devi Nager Tondiarpet Chennai 600081', '2310100019', '1', '1', 'upload_files/candidate_tracker/73031610600_DOC-20230403-WA0046..docx', NULL, '1', '2023-10-11', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not fit for tele sales, voice is very low and communication skill not well', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-10 11:11:12', 104, '2023-10-11 04:46:51', 0, NULL, 1),
(14697, 'Madhivanan Madhansingh', '5', '7358266506', '', 'madhivanan.m90@gmail.com', '1990-12-20', 32, '1', '2', 'Madhan Singh', 'NA', 100000.00, 2, 320000.00, 360000.00, 'Teynampet', 'Teynamlet', '2310110001', '', '2', 'upload_files/candidate_tracker/12141079888_MMS RESUME.pdf', NULL, '1', '2023-10-11', 0, '55659', '3', '59', '2023-10-12', 360000.00, '', '5', '1970-01-01', '1', 'Seleted for Mani team in  staff role fresh for our domain', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-11 09:49:36', 104, '2023-10-12 10:02:03', 0, NULL, 1),
(14698, 'Susmitha.A', '6', '7358482657', '8939368528', 'susmitha25032003@gmail.com', '2003-03-25', 20, '2', '2', 'Ayyanar .s', 'Billing work', 20000.00, 0, 0.00, 13000.00, 'Kuriji Nagar,14 street, agaram then Chennai 126', 'Kuriji Nagar 14 street agaram then Chennai 126', '2310110002', '1', '1', 'upload_files/candidate_tracker/40339540847_Untitled document-2.pdf', NULL, '1', '2023-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance will not sustain', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-11 10:37:25', 104, '2023-10-11 04:42:36', 0, NULL, 1),
(14699, 'Kalaimathi V', '6', '7305539094', '9176662042', 'Kalaimathi2056@gmail.com', '2003-11-13', 19, '2', '2', 'Venkateson E', 'Driver', 20000.00, 2, 0.00, 14000.00, 'No.19 Lakshmi Nagar,MES road, East Tambaram,ch_59', 'No.19 Lakshmi Nagar,MES road,East Tambaram,ch_59', '2310110003', '1', '1', 'upload_files/candidate_tracker/22357192618_CV_2023070722032296.pdf', NULL, '1', '2023-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance Will Not Sustain', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-11 10:37:52', 104, '2023-10-11 06:24:40', 0, NULL, 1),
(14700, 'gowtham k', '28', '9884363085', '9380159443', 'gowthamkg7@gmail.com', '1997-03-19', 26, '6', '2', 'shanthi', 'other', 23500.00, 1, 23500.00, 26000.00, 'puzhal', 'puzhal', '2310110004', '', '2', 'upload_files/candidate_tracker/73397092020_ Naren gowtham resume.pdf', NULL, '1', '2023-10-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance Will Not Sustain No Communication not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-11 10:54:52', 1, '2023-10-11 11:14:46', 0, NULL, 1),
(14701, 'Manikandan B', '26', '8344310731', '', 'mmanikandan726@gmail.com', '1993-03-10', 30, '6', '2', 'Balakrishnan', 'Carpenter', 350000.00, 2, 17500.00, 23000.00, 'NAGAPATTINAM', 'Koyembedu', '2310110005', '', '2', 'upload_files/candidate_tracker/18261794129_MANIKANDAN NEW1.pdf', NULL, '1', '2023-10-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Fresher for our Roles holding an offer for 15K Will Not Sustain', '7', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-11 11:08:29', 1, '2023-10-11 11:19:16', 0, NULL, 1),
(14702, 'Sneha R', '5', '7810076770', '9514190574', 'sneharajan1119@gmail.com', '2000-01-11', 23, '1', '2', 'Ranjendhiran', 'Salaried person', 35000.00, 2, 20.00, 25.00, 'No.364 kamaraj Street,keezhedaiyalam.', 'Thiruverkadu Chennai 77', '2310110006', '', '2', 'upload_files/candidate_tracker/41119266217_Sneha resume-1..pdf', NULL, '1', '2023-10-11', 0, '55699', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is already experience in star ok but salary Exp is High kindly check ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-11 11:24:50', 104, '2023-10-11 04:38:30', 0, NULL, 1),
(14703, 'k saraswathi', '6', '7305628585', '', 'bcom6594@gmail.com', '1994-05-06', 29, '2', '1', 'muthukumar', 'driver', 20000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2310110007', '1', '2', 'upload_files/candidate_tracker/45963949280_resumesweatha3.docx', NULL, '1', '2023-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too Long Distance Will Not Sustain', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-11 11:26:19', 1, '2023-10-11 11:38:29', 0, NULL, 1),
(14704, 'VIJAYALAKSHMI S', '5', '9150148438', '', 'sankarvijayalakshmi33@gmail.com', '2001-03-28', 22, '3', '2', 'Sankar B', 'Auto driver', 20000.00, 1, 15500.00, 18000.00, 'Chennai', 'Chennai', '2310110008', '', '2', 'upload_files/candidate_tracker/96753998540_pdf_20230723_195122_0000.pdf', NULL, '1', '2023-10-11', 0, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Terminated Ex Emp since not getting jobs due to eduction drop looking for opportunities', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-11 11:26:57', 104, '2023-10-11 04:37:49', 0, NULL, 1),
(14705, 'Keerthika', '6', '9514254566', '', 'keerthikapraveen55@gmail.com', '2002-07-09', 21, '3', '2', 'Arumugam', 'Auto driver', 10000.00, 1, 0.00, 12.00, 'Chennai', 'Chennai', '2310110009', '', '1', 'upload_files/candidate_tracker/64607128893_CV_2022081314132995 (2).pdf', NULL, '1', '2023-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Average Communication left without attending the 2nd level', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-11 12:29:59', 104, '2023-10-11 04:36:40', 0, NULL, 1),
(14706, 'raphael', '16', '6381811200', '', 'raphaelranjith555@gmail.com', '1999-11-07', 23, '2', '2', 'raja', 'secruity', 30000.00, 1, 0.00, 20000.00, 'nungabakkam', 'Nungabakkam', '2310110010', '1', '1', 'upload_files/candidate_tracker/75096574884_My C V.pdf', NULL, '1', '2023-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitabke no sustainability', '3', '1', '', '1', '8', '', '2', '1970-01-01', '4', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-11 01:36:30', 112, '2024-04-24 02:58:23', 0, NULL, 1),
(14707, 'Daniel Paul L', '31', '9940478049', '', 'danielpaul1304@gmail.com', '1998-04-13', 25, '2', '1', 'Margret', 'House Wife', 15000.00, 0, 15000.00, 15000.00, 'Chennai Pallavaram', 'Chennai Pallavaram', '2310110011', '1', '2', 'upload_files/candidate_tracker/9128460704_Daniel Paul Resume_2023.pdf', NULL, '1', '2023-10-12', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Not  muchOpen For TxxampC If He Comes Back Let Us Try too long distance', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-11 02:54:09', 85, '2023-10-12 03:03:38', 0, NULL, 1),
(14708, 'Divya .v', '6', '8489630948', '9342832620', 'vdivyasree36@gmail.com', '1996-04-13', 27, '1', '2', 'Venkatesan', 'Farmer', 10000.00, 1, 20000.00, 20000.00, 'Vellore', 'Vellore', '2310110012', '', '2', 'upload_files/candidate_tracker/72927513810_16970180264004781370386792524218.pdf', NULL, '1', '2023-10-11', 0, 'babu', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Malpracticed in her previous Work will not sustain in our roles not suitabel', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-11 03:01:52', 104, '2023-10-11 04:33:04', 0, NULL, 1),
(14709, 'Duraimurugan m', '6', '8489335334', '', 'Duraimurugan.m96@gmail.com', '1996-03-20', 27, '1', '2', 'Mani', 'Farmer', 15000.00, 3, 20000.00, 20000.00, 'Vellore', 'Vellore', '2310110013', '', '2', 'upload_files/candidate_tracker/39770365204_16970184874868698709327898243372 (1).pdf', NULL, '1', '2023-10-11', 0, 'babu', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No suitable  for our role Will Not Sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-11 03:03:20', 104, '2023-10-11 04:32:44', 0, NULL, 1),
(14710, 'Rooban sankar.M', '31', '9944381709', '', 'rooban1752000@gmail.com', '2000-05-17', 23, '2', '2', 'P.Manoharan', 'Business man & Part time drawing teacher', 25000.00, 1, 0.00, 25000.00, 'Erode', 'Chennai - Velachery', '2310110014', '1', '1', 'upload_files/candidate_tracker/64833713139_Resume.pdf', NULL, '1', '2023-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not open for TxxampC if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-11 03:27:10', 85, '2023-10-12 03:04:29', 0, NULL, 1),
(14711, 'manicka vasagam d', '31', '6374117016', '', 'manickam115@gmail.com', '2000-05-11', 23, '2', '2', 'duraisamy', 'farmer', 25000.00, 1, 0.00, 300000.00, 'erode', 'velachery', '2310110015', '1', '1', 'upload_files/candidate_tracker/60369095233_Resume2.pdf', NULL, '1', '2023-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Not Open For TxxampC If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-11 03:29:18', 85, '2023-10-12 03:04:58', 0, NULL, 1),
(14712, 'R Deepika', '5', '9342327644', '9360034638', 'Ddeepikadeepzz1616@gmail.com', '2003-06-01', 20, '2', '2', 'Sudhersan', 'Sales', 120000.00, 2, 17000.00, 18000.00, 'Jothi nagar 4th street Thiruvottiyur Chennai 19', 'Jothi nagar 4th street Thiruvottiyur Chennai 19', '2310110016', '1', '2', 'upload_files/candidate_tracker/5645696857_DEEPIKA PDF FORMAT.pdf', NULL, '1', '2023-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left Without attending', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-11 04:22:36', 108, '2023-10-12 05:10:58', 0, NULL, 1),
(14713, 'Ashok', '4', '9840889703', '', 'ak23592@gmail.com', '1992-05-23', 31, '2', '1', 'Priyadarshini', 'Already quit', 300000.00, 2, 300000.00, 400000.00, 'Chennai', 'Chennai', '2310110017', '1', '2', 'upload_files/candidate_tracker/22445387658_Ashok resume 2023.pdf', NULL, '1', '2023-10-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-11 04:27:14', 104, '2023-10-12 05:14:09', 0, NULL, 1),
(14714, '', '0', '6374951205', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310110018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-11 04:37:13', 0, NULL, 0, NULL, 1),
(14715, 'Kaviya', '4', '8939795791', '9551933173', 'susikavi93@gmail.com', '2002-09-02', 21, '3', '2', 'Susila', 'Home maker', 5000.00, 0, 12000.00, 18000.00, 'Tondiarpet', 'Tondiarpet', '2310110019', '', '2', 'upload_files/candidate_tracker/81902300375_Kaviya 02 Resume.pdf', NULL, '1', '2023-10-13', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-11 04:37:39', 1, '2023-10-11 04:43:24', 0, NULL, 1),
(14716, 'sangeetha', '4', '8838094824', '', 'sangeethasangee259@gmail.com', '2000-06-03', 23, '3', '2', 'Kumar', 'Car driver', 30000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2310110020', '', '2', 'upload_files/candidate_tracker/13071663841_SANGEETHA- CV.pdf', NULL, '1', '2023-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-11 05:03:18', 1, '2023-10-11 05:21:21', 0, NULL, 1),
(14717, 'Aleem khan', '4', '9344663655', '', 'aleemimthiyaz2002@gmail.com', '2002-02-20', 21, '2', '2', 'Tajudeen khan', 'Auto driver', 25000.00, 1, 0.00, 18000.00, 'Tondiarpet', 'Tondiarpet', '2310110021', '1', '1', 'upload_files/candidate_tracker/53447919032_Document.docx', NULL, '1', '2023-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No voice Clarity Pronunciation poor not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-11 09:04:06', 104, '2023-10-12 05:14:43', 0, NULL, 1),
(14718, 'shaik asif ali a', '5', '7904795708', '', 'shaikasifali920@gmail.com', '1996-02-20', 27, '2', '2', 'dr. shaik aleem', 'doctor', 80000.00, 1, 300000.00, 400000.00, 'thiruverkadu', 'thiruverkadu', '2310110022', '1', '2', 'upload_files/candidate_tracker/19781774216_SHAIK', NULL, '2', '2023-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Frequent job changes career gap not much importance for the job not suitbale', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-11 09:23:38', 108, '2023-10-12 05:22:57', 0, NULL, 1),
(14719, '', '0', '8921195503', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310110023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-11 10:31:53', 0, NULL, 0, NULL, 1),
(14720, 'Vishali', '16', '9080970780', '', 'Vishalyv310@gmail.com', '2001-03-31', 22, '3', '2', 'Venkatesan S', 'Welder', 25000.00, 1, 14000.00, 20000.00, 'Ranipet', 'Chennai', '2310120001', '', '2', 'upload_files/candidate_tracker/92415825328_VISHALY V_compressed.pdf', NULL, '1', '2023-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '\nfor time being looking for the job will not sustain not suitbale', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-12 09:59:43', 108, '2023-10-12 05:25:22', 0, NULL, 1),
(14721, 'Selshiya', '5', '8248832920', '', 'yesudassselvaraj@gmail.com', '1999-07-21', 24, '2', '2', 'Yesudas', 'Cook', 35000.00, 0, 16000.00, 19000.00, 'Chennai', 'Chennai', '2310120002', '1', '2', 'upload_files/candidate_tracker/26943840702_selshiyayesudass - 1683202217 (1)_compressed.pdf', NULL, '1', '2023-10-12', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-12 10:08:40', 108, '2023-10-12 05:15:21', 0, NULL, 1),
(14722, 'BARATHKUMAR MUTHAIAH', '13', '7598325681', '7871302683', 'barathkumarmuthaiah@gmail.com', '1999-08-02', 24, '2', '2', 'Mrs. Mary. M', 'Supervisor', 12000.00, 1, 0.00, 200000.00, 'Thirunelveli', 'Chennai, Poonamallee', '2310120003', '1', '1', 'upload_files/candidate_tracker/81765626069_BARATHKUMAR_MUTHAIAH.pdf', NULL, '1', '2023-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to learn and come back Sustainability Doubts if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-12 10:29:34', 85, '2023-10-14 05:11:38', 0, NULL, 1),
(14723, 'Aishwarya Ravi', '5', '8870226439', '', 'raviaishwarya8022@gmail.com', '2002-03-22', 21, '6', '2', 'Meenakshi R', 'Teacher', 20000.00, 1, 0.00, 20000.00, '99 Rajendran street thirunagar Ch- 87', 'Chennai', '2310120004', '', '1', 'upload_files/candidate_tracker/41953597869_aishwarya ravi CV1 (1)-2.pdf', NULL, '1', '2023-10-12', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our role can give a try  kindly check  and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-12 10:38:04', 108, '2023-10-12 05:26:24', 0, NULL, 1),
(14724, '', '0', '9342440379', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310120005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-12 10:39:07', 0, NULL, 0, NULL, 1),
(14725, 'Ragul M', '14', '9790660740', '7339033894', 'ragul2000m@gmail.com', '2008-10-12', 0, '3', '2', 'Mupparam M', 'Electrician', 20000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2310120006', '', '2', 'upload_files/candidate_tracker/21134808365_RAGUL_M_Resume_06-10-2023-09-39-27.pdf', NULL, '1', '2023-10-12', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp but not much strong min exp is 30K', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-12 10:41:02', 1, '2023-10-12 10:45:42', 0, NULL, 1),
(14726, 'K.balaji', '5', '8939290055', '8438916737', 'k.balaji1993@gmail.com', '1993-12-24', 29, '3', '1', 'M.kesavan. K.rajeswari', 'Office assistant', 15000.00, 1, 16000.00, 18000.00, 'Chennai - 19', 'Chennai', '2310120007', '', '2', 'upload_files/candidate_tracker/67842672315_Balaji Resume_1679747978109_k. Balaji.pdf', NULL, '1', '2023-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our roles have admin exp will not sustain and not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-12 10:43:25', 108, '2023-10-12 05:21:41', 0, NULL, 1),
(14727, 'Kannan N', '14', '9443976954', '', 'kannanrathvalli@gmail.com', '1977-06-17', 46, '6', '1', 'Gohila K', 'House wife', 12000.00, 2, 1200000.00, 1500000.00, 'Chennai', 'Chennai', '2310120008', '', '2', 'upload_files/candidate_tracker/90431147366_Kannan Nagarathinam - 2023 (1).pdf', NULL, '2', '2023-10-12', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too age for our roles 47yrs not suitable', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-12 10:58:05', 108, '2023-10-12 05:19:21', 0, NULL, 1),
(14728, 'Princy N', '6', '9025498006', '7395911093', 'princysharon61@gmail.com', '2003-01-01', 20, '2', '2', 'Nivas S', 'Driver', 15000.00, 1, 16000.00, 19000.00, 'No.43/1,New magazine road, vyasarpadi', 'No.2/74,Kkd Nagar,kodungaiyur, Chennai 600118', '2310120009', '1', '2', 'upload_files/candidate_tracker/12070169587_CV_2023100409285833.pdf', NULL, '1', '2023-10-12', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is 7 Months Exp In Tele Calling, voice is bold and communication skill ok will be Trained our role so kindly confirm joining Date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-12 11:31:36', 108, '2023-10-12 05:09:17', 0, NULL, 1),
(14729, 'Thendral Deva selvi', '5', '9789984038', '9791214881', 'thendraldevaselvi@gmail.com', '1999-11-05', 23, '2', '2', 'Selvaraj', 'None', 20.00, 2, 0.00, 15.00, '3/40 D Type Sidco Nagar Villivakkam Chennai 49', 'Chennai', '2310120010', '1', '1', 'upload_files/candidate_tracker/51033769176_Image to pdf_07102023_174710.pdf', NULL, '1', '2023-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain and handle our work pressure Not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-12 11:31:48', 108, '2023-10-12 05:14:06', 0, NULL, 1),
(14730, '', '0', '9442976954', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310120011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-12 11:36:13', 0, NULL, 0, NULL, 1),
(14731, 'Nithya', '5', '9360811061', '', 'nn7740111@gmail.com', '1995-04-16', 28, '2', '1', 'Chandran', 'Farmer', 15000.00, 0, 0.00, 20000.00, 'Ooty', 'Moolakkadai', '2310120012', '1', '1', 'upload_files/candidate_tracker/26169681332_ACE Scanner_2023_10_12.pdf', NULL, '1', '2023-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles have super market exp will not sustain and handle our pressure', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-12 11:50:27', 108, '2023-10-12 05:16:23', 0, NULL, 1),
(14732, 'Keerthana Y', '33', '8248611253', '', 'yelchur.keerthi@gmail.com', '1998-06-23', 25, '6', '1', 'Rajesh R', 'Working as programmer Analyst in Cognizant', 50000.00, 1, 0.00, 414000.00, 'No. 19/37, Periyanna street, seven wells, ch - 01', 'No. 19/37, Periyanna Street, Seven Wells, Ch - 01', '2310120013', '', '1', 'upload_files/candidate_tracker/6641501697_Keerthana Resume.pdf', NULL, '1', '2023-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas in Accounts skills not suitable', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-12 11:50:38', 108, '2023-10-12 05:12:00', 0, NULL, 1),
(14733, 'Shri hari', '31', '9629820794', '9514713726', 'shrihari0150@gmail.com', '1997-10-28', 25, '2', '2', 'Mother - sumathi', 'Accounts', 300000.00, 0, 0.00, 2.50, 'Chennai', 'Chennai', '2310120014', '1', '1', 'upload_files/candidate_tracker/85145078418_Shri Hari ST Resume.pdf', NULL, '1', '2023-10-13', 0, '', '3', '59', '2023-11-03', 120000.00, '', '', '2023-11-24', '1', 'Intern With Employment 5months6K then 3yrs 10-14K', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-12 11:52:12', 60, '2023-11-03 10:13:47', 0, NULL, 1),
(14734, 'K JAYAPRAKASH', '16', '9841571404', '', 'kjayaprakash81@gmail.com', '1981-01-08', 42, '6', '1', 'PRIYA J', 'Salaried', 50000.00, 3, 50000.00, 60000.00, 'Chennai', 'Chennai', '2310120015', '', '2', 'upload_files/candidate_tracker/71280155915_Resume.pdf', NULL, '1', '2023-10-12', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable age around 42 yrs communication average his current earning 50K', '3', '2', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-12 12:22:40', 108, '2023-10-12 05:31:19', 0, NULL, 1),
(14735, 'Rajesh c', '26', '7402275159', '', 'c.rajeshec@gmail.com', '1991-04-09', 32, '3', '1', 'Chandran', 'Hotel work', 20000.00, 1, 37000.00, 39000.00, 'Komarapalayam, Namakkal', 'Chennai', '2310120016', '', '2', 'upload_files/candidate_tracker/70666628340_1697076406138_Rajesh_Resume.pdf', NULL, '1', '2023-10-12', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average will not handle our work pressure not suitable', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-12 12:24:19', 108, '2023-10-12 05:12:30', 0, NULL, 1),
(14736, '', '0', '8438795838', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310120017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-12 02:24:11', 0, NULL, 0, NULL, 1),
(14737, 'Karthikraja', '31', '8220293589', '8940029218', 'karthikrajav18@dsce.ac.in', '2001-06-11', 22, '2', '2', 'Veluchamy', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Sivagangai', 'Chennai', '2310120018', '1', '1', 'upload_files/candidate_tracker/32384929911_Karthikraja CV Resume.pdf', NULL, '1', '2023-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to learn and come not much comffort in TxxampC if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-12 03:34:40', 85, '2023-10-14 05:12:25', 0, NULL, 1),
(14738, '', '0', '8939466412', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310120019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-12 06:34:25', 0, NULL, 0, NULL, 1),
(14739, 'Pravin raj', '33', '8248774421', '7358483954', 'pravinraj31081998@gmail.com', '1998-07-31', 25, '3', '2', 'Rajendran', 'Retired post man', 20000.00, 2, 270000.00, 300000.00, 'Chennai', 'Chennu', '2310120020', '', '2', 'upload_files/candidate_tracker/68195254394_pravin update resume.pdf', NULL, '1', '2023-10-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-12 06:41:52', 1, '2023-10-12 06:45:34', 0, NULL, 1),
(14740, 'Jenifer M', '6', '8903038450', '7010266840', 'jeni2000angel@gmail.com', '2000-10-15', 22, '2', '2', 'Moses', 'Electrician', 20000.00, 1, 17000.00, 20000.00, 'Trichy', 'Chennai', '2310120021', '1', '2', 'upload_files/candidate_tracker/21488005383_Jenifer Resume-1.pdf', NULL, '1', '2023-10-13', 1, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Calling for 3months 5050 Sustainability doubts kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-12 06:54:16', 104, '2023-10-13 04:03:41', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14741, 'Sathya', '6', '8825781857', '', 'sathyasaravanan1829@gmail.com', '2000-03-29', 23, '2', '2', 'Saravanan', 'Car consulting', 20000.00, 3, 17000.00, 20000.00, 'Pudukkottai', 'Maylopre', '2310120022', '1', '2', 'upload_files/candidate_tracker/71207084634_docx(1).pdf', NULL, '1', '2023-10-13', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-12 06:54:26', 104, '2023-10-13 04:10:23', 0, NULL, 1),
(14742, 'S.mohamed irfan', '4', '8925222930', '', 'irfanpathan2432@gmail.com', '2002-03-24', 21, '3', '2', 'J.Sulthan dulkarnai', 'Hotel partner', 25000.00, 2, 0.00, 20000.00, 'Virugambakkam', 'Virugambakkam', '2310120023', '', '2', 'upload_files/candidate_tracker/52742022392_irfan cv (1).pdf', NULL, '3', '2023-10-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-12 09:23:46', 1, '2023-10-12 09:43:20', 0, NULL, 1),
(14743, 'kavin kumar a', '31', '9360786800', '9677405446', 'kavinfd0704@gmail.com', '2001-04-27', 22, '2', '2', 'arumugam', 'driver', 15000.00, 0, 0.00, 450000.00, 'chennai', 'chennai', '2310130001', '1', '1', 'upload_files/candidate_tracker/83172510148_Web Development (1).pdf', NULL, '1', '2023-10-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Salary Only Will not sustain in our roles Reference he has with other companies too', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-13 12:12:02', 85, '2023-10-14 05:14:50', 0, NULL, 1),
(14744, 'Twayyibah mansoor c p', '26', '9544014877', '', 'twayyibahcp252@gmail.com', '2008-10-13', 0, '6', '2', 'mansoor c p', 'bussiness', 500000.00, 2, 0.00, 30000.00, 'Calicut', 'chennai', '2310130002', '', '1', 'upload_files/candidate_tracker/27195856386_twayyibah resume.pdf', NULL, '1', '2023-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to train from scratch Salary Exp min 20K Will not sustain', '7', '2', '', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-13 12:13:53', 108, '2023-10-13 04:29:05', 0, NULL, 1),
(14745, 'Ramesh Kumar V', '16', '8939237692', '7397336820', 'RAMESHKVP18@GMAIL.COM', '1996-02-10', 27, '6', '2', 'N Velu', 'Plumber', 15000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2310130003', '', '2', 'upload_files/candidate_tracker/59083474714_Ramkumar.pdf', NULL, '1', '2023-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have some medical Issue Earlier Not much Relevant our roles will not handle', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-13 12:15:03', 108, '2023-10-13 04:24:08', 0, NULL, 1),
(14746, 'Venkateshperumal C', '33', '9698493961', '9080108886', 'venkateshperumal08167@gmail.com', '1997-08-15', 26, '6', '2', 'Rukkumani', 'Daily Wages', 15000.00, 4, 20656.00, 25000.00, 'Tiruvannamalai', 'Chennai', '2310130004', '', '2', 'upload_files/candidate_tracker/64585799609_Venkat Final Resume One (1).pdf', NULL, '1', '2023-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Accounts No Bike Need time to confirm if he comes back let us try', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-13 12:15:46', 108, '2023-10-13 04:25:01', 0, NULL, 1),
(14747, 'Manikandan', '13', '9360403494', '9159743744', 'manikandan071201@gmail.com', '2001-12-07', 21, '6', '2', 'Muniyandi', 'Driver', 48000.00, 1, 0.00, 15000.00, 'Dindigul', 'Chennai', '2310130005', '', '1', 'upload_files/candidate_tracker/68238066011_Manikandan php.pdf', NULL, '1', '2023-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for TxxampC Will not sustain looking for salary only', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-13 12:16:29', 108, '2023-10-13 04:27:55', 0, NULL, 1),
(14748, 'NISHA S', '14', '9025140179', '7904941100', 'Nishanowfal123@gmail.com', '2002-11-15', 20, '6', '2', 'Sundar M', 'Coolie', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2310130006', '', '1', 'upload_files/candidate_tracker/45633496154_My Resume (4).pdf', NULL, '1', '2023-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not Sustain not much comfort in TxxampC Flutter Fresher have reference in IT', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-13 12:22:03', 108, '2023-10-13 04:26:33', 0, NULL, 1),
(14749, 'Yuvaraj', '5', '8870422238', '', 'Yuvar516@gmail.com', '1995-09-30', 28, '2', '1', 'Kalai selvi', 'House wife', 50000.00, 1, 25000.00, 30000.00, 'Namakkal', 'Porur , chennai', '2310130007', '1', '2', 'upload_files/candidate_tracker/77308035112_G YUVARAJ RESUME.pdf', NULL, '1', '2023-10-13', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit For Sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-13 12:25:53', 104, '2023-10-13 02:44:12', 0, NULL, 1),
(14750, 'MANIKANDAN S', '13', '6380252260', '9445479291', 'sanjaysanjay67147@gmail.com', '2003-03-07', 20, '3', '2', 'Srinivasan A', 'Accountant', 35000.00, 2, 0.00, 30000.00, 'Chennai', 'Chennai', '2310130008', '', '1', 'upload_files/candidate_tracker/63295296918_downloadfile.pdf', NULL, '2', '2023-10-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-13 12:27:19', 1, '2023-10-13 12:37:30', 0, NULL, 1),
(14751, '', '0', '8601965660', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310130009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-13 12:33:39', 0, NULL, 0, NULL, 1),
(14752, 'Azhagumani K', '14', '8610965660', '', 'MANIKARTHI9909@GMAIL.COM', '2002-01-08', 21, '3', '2', 'Karthi K', 'Business', 15000.00, 1, 0.00, 450000.00, 'Chennai', 'Chennai', '2310130010', '', '1', 'upload_files/candidate_tracker/31308698483_AZHAGUMANI-resume.pdf', NULL, '1', '2023-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-13 12:38:49', 1, '2023-10-13 12:45:07', 0, NULL, 1),
(14753, '', '0', '7010775779', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310130011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-13 12:51:17', 0, NULL, 0, NULL, 1),
(14754, 'Indhu.T', '5', '9047925912', '', 'tindhu60@gmail.com', '2000-04-18', 23, '2', '2', 'Thinkararajan', 'Farmer', 7000.00, 2, 0.00, 17000.00, 'Sivagangai 630713', 'Guindy, Chennai 600032', '2310130012', '1', '1', 'upload_files/candidate_tracker/53217946638_INDHU_T_RESUME1.pdf', NULL, '1', '2023-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Souding low No Confidene Will not handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-13 01:37:07', 108, '2023-10-13 04:22:21', 0, NULL, 1),
(14755, 'Deepa. K', '5', '7810037748', '', 'djdeepa98@gmai.lcom', '1998-09-18', 25, '2', '2', 'Karuppu @ ilamaran', 'Farmer', 7000.00, 1, 0.00, 15000.00, 'Paramakudi, ramanathapuram', 'Guindy, chennai', '2310130013', '1', '1', 'upload_files/candidate_tracker/86908966460_Deepa.pdf', NULL, '1', '2023-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Understanding Will not handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-13 01:37:35', 108, '2023-10-13 04:23:03', 0, NULL, 1),
(14756, 'Vignesh A', '13', '9047372508', '6369066717', 'VIGNESHARUMUGAM2402@GMAIL.COM', '1996-02-24', 27, '1', '2', 'Shanthi A mother', 'Home maker', 25000.00, 1, 0.00, 20000.00, 'Sivagangai', 'Tambaram sanitorium', '2310130014', '', '1', 'upload_files/candidate_tracker/98874729499_viki new sql.docx', NULL, '1', '2023-10-13', 0, 'Magic bus janani', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic Skills in IT/Lookin for oracle SQL', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-13 02:53:01', 108, '2023-10-13 04:21:06', 0, NULL, 1),
(14757, 'akash.s', '31', '9585695404', '8300460431', 'pviakash125@gmail.com', '2002-01-05', 21, '2', '2', 'srirangam', 'Agriculture', 10000.00, 1, 0.00, 15000.00, 'thanjavur', 'chennai', '2310130015', '1', '1', 'upload_files/candidate_tracker/19707759361_Resume.akash.webtech.pdf', NULL, '1', '2023-10-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Mcuh Good in Basics Need to come back with his confirmation if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-13 03:10:26', 85, '2023-10-14 05:15:58', 0, NULL, 1),
(14758, 'Jai Surya', '31', '6369391891', '9150539070', 'jayasurya0713@gmail.com', '2002-06-13', 21, '3', '2', 'Jayakumar', 'Famer', 6000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai, ponnamalie', '2310130016', '', '1', 'upload_files/candidate_tracker/92123605172_JAI SURYA2023.pdf', NULL, '1', '2023-10-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-13 03:14:31', 1, '2023-10-13 11:25:42', 0, NULL, 1),
(14759, 'Karthik N', '31', '9962641775', '', 'karthikdhuruma04@gmail.com', '2002-12-04', 20, '3', '2', '9488351775', 'Former', 10000.00, 1, 0.00, 10000.00, 'Kovilpatti', 'Velachery,Chennai', '2310130017', '', '1', 'upload_files/candidate_tracker/82139856348_Karthik.pdf', NULL, '1', '2023-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-13 03:57:28', 1, '2023-10-13 04:03:40', 0, NULL, 1),
(14760, 'Swathi T', '5', '8939120588', '8838719499', 'Swathi.thiyagarajan23@gmail.com', '1996-11-23', 26, '2', '1', 'Thiyagarajan', 'Auto driver', 30000.00, 1, 320000.00, 450000.00, 'Chennai', 'Chennai', '2310130018', '1', '2', 'upload_files/candidate_tracker/76517599508_SWATHI_RESUME.pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have exp as process Asso Recently married and sustainability doubts if she comes back let us try', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-13 04:09:11', 108, '2023-10-14 06:06:36', 0, NULL, 1),
(14761, 'shri rahul raj', '31', '9629449700', '', 'skshrii66@gmail.com', '2000-12-06', 22, '2', '2', 'parent', 'driver', 20.00, 1, 0.00, 3.50, 'chennai', 'chennai', '2310130019', '1', '1', 'upload_files/candidate_tracker/26371434551_Front-end.pdf', NULL, '1', '2023-10-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much in basics Need to learn a lot if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-13 04:16:30', 85, '2023-10-14 05:16:51', 0, NULL, 1),
(14762, 'Kishore', '4', '8870677002', '', 'kaththikish@gmail.com', '1997-06-06', 26, '3', '1', 'Pandeeswari', 'House wife', 150000.00, 1, 14000.00, 18000.00, 'Virudhunagar', 'Thuraipakkam', '2310130020', '', '2', 'upload_files/candidate_tracker/37854647886_CV_2023030811582742.pdf', NULL, '1', '2023-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-13 04:55:27', 1, '2023-10-13 04:59:44', 0, NULL, 1),
(14763, 'Sivasankaran.O', '33', '8610391842', '9381254966', 'Sivasankaran6666@gmail.com', '2003-06-05', 20, '6', '2', 'T.Olivu', 'Business', 95000.00, 2, 0.00, 20000.00, '4/29 kovil street MGR nagar kottivakkam chennai', '4/29 Kovil Street MGR Nagar Kottivakkam Chennai', '2310140001', '', '1', 'upload_files/candidate_tracker/22989286047_Sivasankaran (1).pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sounding Low and no confidence will not sustain not suitable', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-14 10:44:17', 108, '2023-10-16 06:21:18', 0, NULL, 1),
(14764, 'S.Dhivyasree', '7', '9360987379', '9444860237', 'Dhivyasekar1896@gmail.com', '1996-03-18', 27, '6', '2', 'M.Sekar', 'Fresher', 50000.00, 1, 0.00, 20000.00, 'Bsnl telephone quarters valappady,salem', 'Padi pudhu nagar, 9th street anna nagar west', '2310140002', '', '1', 'upload_files/candidate_tracker/60383885316_resume_dhivya 2022.pdf', NULL, '1', '2023-10-14', 0, '', '3', '59', '2023-10-16', 150000.00, '', '5', '1970-01-01', '2', 'Selected for Mutual Fund Fresher in Staff no Stat Role need to train from Scratch', '7', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-14 10:59:58', 60, '2023-10-16 10:19:41', 0, NULL, 1),
(14765, 'Sankari', '14', '9003332952', '', 'jobforsankari@gmail.com', '2001-07-04', 22, '6', '2', 'Kolanchirajan', 'Weaver', 200000.00, 3, 100000.00, 300000.00, 'Ariyalur', 'Chennai', '2310140003', '', '2', 'upload_files/candidate_tracker/73654859840_sankari_cv.pdf', NULL, '1', '2023-10-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Flutter Exp for 8 months Salary Exp is very high min 25K Will not sustain and focus much for salary only', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-14 11:07:16', 104, '2023-10-14 05:08:41', 0, NULL, 1),
(14766, 'Arikaran K', '16', '8072411433', '', 'arikaran244510@gmail.com', '1998-12-06', 24, '6', '2', 'Malar K', 'House wife', 180000.00, 1, 15000.00, 30000.00, 'Kanchipuram', 'Kanchipuram', '2310140004', '', '2', 'upload_files/candidate_tracker/5682435343_Arikaran K.pdf', NULL, '1', '2023-10-14', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location constraint he is from Kanchipuram Not much comfort in Relocation will not sustain and over confidence', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-14 11:32:41', 1, '2023-10-14 11:35:31', 0, NULL, 1),
(14767, 'Rasith Ahamed', '33', '8807939250', '', 'rasithahamed18@gmail.com', '2003-02-18', 20, '3', '2', 'Kamarudeen', 'Salesman in shop', 28000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2310140005', '', '1', 'upload_files/candidate_tracker/68438995975_Resume_28_09_2023_04_13_16_pm.pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'VEry Slow Candidate not Aggressive will not sustain and handle our work pressure', '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-14 11:51:16', 1, '2023-10-14 11:55:53', 0, NULL, 1),
(14768, 'R Saravanan', '13', '7708690817', '', 'rsaravanan328@gmail.com', '2001-07-03', 22, '6', '2', 'A Raja', 'Farmer', 28000.00, 1, 21000.00, 30000.00, 'Avadi, Chennai', 'Avadi , Chennai', '2310140006', '', '2', 'upload_files/candidate_tracker/49644638198_Resume_saravanan.pdf', NULL, '1', '2023-10-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance Will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-14 11:55:29', 1, '2023-10-14 12:00:49', 0, NULL, 1),
(14769, 'Dhivakaran', '6', '8148298500', '', 'd.dhivakaran@gmail.com', '1991-12-08', 31, '6', '1', 'S.deenadayalan', 'Sales and marketing', 40000.00, 2, 32000.00, 35000.00, 'Arakkonam', 'Mm nagar', '2310140007', '', '2', 'upload_files/candidate_tracker/65981637016_DOC-20230728-WA0015.pdf', NULL, '1', '2023-10-14', 60, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance only to relocate to native looking for opportunities will not sustain', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-14 12:24:22', 104, '2023-10-14 05:07:15', 0, NULL, 1),
(14770, 'Manojkumar M', '31', '9597924004', '', 'manojkumarm1310@gmail.com', '2001-10-13', 22, '2', '2', 'G Muthukrishnan', 'Driver', 240000.00, 1, 0.00, 360000.00, 'Karaikkudi', 'Karaikkudi', '2310140008', '1', '1', 'upload_files/candidate_tracker/50088039314_MANOJKUMAR M.pdf', NULL, '1', '2023-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-14 12:46:12', 85, '2023-10-18 12:32:49', 0, NULL, 1),
(14771, '', '0', '6382071609', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310140009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-14 06:15:50', 0, NULL, 0, NULL, 1),
(14772, 'Karthikeyan T', '5', '8526495976', '8526495975', 'karthikeyan24082000@gmail.com', '2000-08-24', 23, '2', '2', 'Thangamani', 'Agriculture', 10000.00, 1, 0.00, 300000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2310140010', '1', '1', 'upload_files/candidate_tracker/85992940489_karthi.professional.resume.pdf', NULL, '1', '2023-10-16', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-14 06:16:53', 108, '2023-10-16 11:56:12', 0, NULL, 1),
(14773, 'A. Yogesh', '13', '9841812895', '', 'yogeshaasaithambi@gmail.com', '2001-01-21', 22, '6', '2', 'S. Aasaithambi', 'Business', 200000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2310140011', '', '1', 'upload_files/candidate_tracker/71973618788_A. Yogesh Resume (1).pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our roles Not open for TxxampC Need to learn a lot if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-14 06:35:35', 108, '2023-10-19 06:24:20', 0, NULL, 1),
(14774, 'Sudharsan', '6', '8667847045', '7708057478', 'sudharsan6625@gmail.com', '1997-06-06', 26, '2', '1', 'Sonali', 'House wife', 24000.00, 0, 24000.00, 30000.00, 'Madhavaram', 'Madhavaram', '2310140012', '1', '2', 'upload_files/candidate_tracker/77372481255_DOC-20230817-WA0009..pdf', NULL, '1', '2023-10-16', 3, '', '4', '31', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Sales but not a relevant one Sounding Good Can be trained in our roles sir kindly check and let me know your inputs', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2023-10-14 07:10:26', 1, '2023-10-16 07:51:33', 0, NULL, 1),
(14775, '', '0', '8147945040', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310150001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-15 10:42:26', 0, NULL, 0, NULL, 1),
(14776, 'Josephine Amala Rani', '4', '8015759099', '9841554485', 'josephine11165@gmail.com', '2002-05-16', 21, '2', '2', 'Sebastin joseph', 'Plastic machine operator', 35000.00, 2, 15000.00, 25000.00, 'Chennai', 'Chennai', '2310150002', '1', '2', 'upload_files/candidate_tracker/46447852250_JOSEPHINE AMALA RESUME_230723_165743.pdf', NULL, '1', '2023-10-20', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for salary rise only 9 months exp and min 18K Exp not relevant exp too not much comfort in Telesales', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-15 07:38:22', 108, '2023-10-20 11:11:47', 0, NULL, 1),
(14777, 'ARAVINDHAN A', '33', '6369009762', '', 'aravind060101@gmail.com', '2001-01-06', 22, '6', '2', 'Arumugam S', 'Daily wages', 10000.00, 1, 0.00, 225000.00, 'Chennai', 'Chennai', '2310160001', '', '1', 'upload_files/candidate_tracker/69539986508_ARAVINDHAN A Resume.PDF', NULL, '2', '2023-10-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance no bike Sustainability issue Not much strong with Accounts Skills', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-16 05:47:05', 108, '2023-10-16 06:21:01', 0, NULL, 1),
(14778, '', '0', '6381230923', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310160002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-16 08:48:19', 0, NULL, 0, NULL, 1),
(14779, 'Tulasi Raman', '4', '6380289314', '7094206246', 'tulasiraman90@gmail.com', '2001-10-29', 21, '2', '2', 'Kalaiyarasi', 'Home Maker', 180000.00, 1, 0.00, 21000.00, '21000', 'Thanjavur', '2310160003', '1', '1', 'upload_files/candidate_tracker/95671055937_Tulasi Raman CV.pdf', NULL, '1', '2023-10-17', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is ok with the profile father passed away 20 years back, now staying in uncles home in orathanadu, 1 hour travel, brother working in construction company earning 15k, mother cancer patient, highly job need and have rsponspility to take care of him, completed BE automobile and have little experience in automobile industry ....expected  15 to 18k, ready to join after pooja holidays,have laptop kindly confirm once not concluded about salary so cross check once, but candidate in good quaity fit for team and sales', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-16 09:08:09', 108, '2023-10-17 12:18:06', 0, NULL, 1),
(14780, 'Harsha Vardhan.k', '13', '9360322814', '', 'harshavardhan9754@gmail.com', '2001-10-11', 22, '3', '2', 'Kumar', 'Pharmacy', 200000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2310160004', '', '1', 'upload_files/candidate_tracker/76261614694_Harsha_Final (1).pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come back with his confirmation on TxxampC if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 09:40:08', 1, '2023-10-16 09:52:24', 0, NULL, 1),
(14781, 'Naga Arjun R', '13', '9489158923', '9361235673', 'nagaa696@gmail.com', '1998-12-23', 24, '3', '2', 'Ramu K', 'Farmer', 200000.00, 2, 0.00, 200000.00, 'Paramakudi', 'Chennai', '2310160005', '', '1', 'upload_files/candidate_tracker/1917566517_NagaArjunResume.pdf', NULL, '1', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 09:40:27', 1, '2023-10-16 09:44:55', 0, NULL, 1),
(14782, 'Prabhu raja.s', '31', '8072702905', '', 'Prabhuraja2002@gmail.com', '2002-06-18', 21, '3', '2', 'Siva kumar', 'Business', 200000.00, 1, 0.00, 25000.00, 'Vellore', 'Vellore', '2310160006', '', '1', 'upload_files/candidate_tracker/69510290580_raja.pdf', NULL, '1', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 09:43:50', 1, '2023-10-16 10:18:17', 0, NULL, 1),
(14783, 'Sabarish R', '13', '9487066421', '', 'sabarishr2002@gmail.com', '2002-04-02', 21, '3', '2', 'Ramanathan', 'Business', 200000.00, 1, 0.00, 300000.00, 'Karaikudi', 'Chennai', '2310160007', '', '1', 'upload_files/candidate_tracker/73698281863_SABARISH R.pdf', NULL, '1', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 10:02:45', 1, '2023-10-16 10:07:06', 0, NULL, 1),
(14784, 'S.Veerasenan', '13', '8508008348', '', 'veerasenan.vs@gmail.com', '1995-09-03', 28, '3', '2', 'R.Sitrarasan', 'Farmer', 100000.00, 2, 0.00, 250000.00, 'Kumbakonam', 'Chennai', '2310160008', '', '1', 'upload_files/candidate_tracker/98726238719_Veera_resume_vs.pdf', NULL, '1', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 10:03:50', 1, '2023-10-16 10:25:05', 0, NULL, 1),
(14785, 'M.soundarya', '13', '9025446753', '', 'soundaryasri25@gmail.com', '1998-06-25', 25, '3', '1', 'Sivaramakrishnan', 'Administrative', 20000.00, 2, 0.00, 20000.00, 'Rajapalaiyam', 'Chennai', '2310160009', '', '1', 'upload_files/candidate_tracker/38584804880_Soundarya M Resume.pdf', NULL, '1', '2023-10-16', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected', '', '', '', NULL, NULL, NULL, 1, '2023-10-16 10:03:54', 110, '2024-02-08 06:34:43', 0, NULL, 1),
(14786, 'Santhiya P', '13', '9344679662', '', 'Santhiyakbps@gmail.com', '1999-01-25', 24, '3', '2', 'Palanisamy A', 'Farmer', 30000.00, 4, 0.00, 20000.00, 'Salem', 'Chennai', '2310160010', '', '1', 'upload_files/candidate_tracker/66181231105_Your paragraph text (1) (1).pdf', NULL, '1', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 10:04:04', 1, '2023-10-16 10:09:35', 0, NULL, 1),
(14787, '', '0', '8675479448', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310160011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-16 10:05:30', 0, NULL, 0, NULL, 1),
(14788, 'D. Atchaya', '13', '6374086243', '', 'atchayadurai23@gmail.com', '1999-07-23', 24, '2', '2', 'Parent', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Sirkazhi', 'Vadapalani', '2310160012', '10', '1', 'upload_files/candidate_tracker/15743569423_Atchaya Durai.pdf', NULL, '2', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 10:05:35', 1, '2023-10-16 10:17:49', 0, NULL, 1),
(14789, 'Muthulakshmi', '13', '6374371358', '', 'muthulakshmimk8@gmail.com', '2002-11-25', 20, '2', '2', 'Mariyappan V', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2310160013', '10', '1', 'upload_files/candidate_tracker/79026978951_Muthu.Resume-4.pdf', NULL, '2', '2023-10-16', 0, '', '3', '59', '2023-10-19', 120000.00, '', '5', '1970-01-01', '2', 'SElected for ITintern 5m plus 3 yrs emp', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-16 10:14:00', 60, '2023-10-19 10:01:33', 0, NULL, 1),
(14790, 'Praveen Kumar', '31', '9894540307', '', 'praveenkumar9894540@gmail.com', '2002-03-07', 21, '2', '2', 'Subramani', 'Daily wages', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2310160014', '1', '1', 'upload_files/candidate_tracker/33555860947_Praveen Kumar.resume.pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to confirm his acceptance on the TxxampC if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-16 10:18:45', 85, '2023-10-17 03:46:05', 0, NULL, 1),
(14791, 'SABARIKUMAR', '4', '8838680362', '7639343739', 'sabarikumars2001@gmail.com', '2008-10-16', 0, '1', '2', 'SENTHILKUMAR', 'FORMEE', 20000.00, 1, 0.00, 15000.00, 'Mannargudi', 'Mannargudi', '2310160015', '', '1', 'upload_files/candidate_tracker/70266504917_SABARI.pdf', NULL, '1', '2023-10-16', 0, '77789', '3', '59', '2023-10-26', 156000.00, '', '', '2023-10-27', '2', 'Selected for Sithy Team in Consultant Role', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-16 10:36:47', 60, '2023-10-26 10:01:26', 0, NULL, 1),
(14792, 'Hemadhri k', '14', '6382696084', '', 'hemadhrikantam@gmail.com', '2002-05-07', 21, '6', '2', 'Rajendiran', 'Agriculturist', 10000.00, 2, 180000.00, 300000.00, 'KVR kandigai, Tiruttani,Tiruvallur district.', 'Velachery, Chennai.', '2310160016', '', '2', 'upload_files/candidate_tracker/94355422061_Hemadhri K.pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not Run in a long Mentioned Exp and the salary exp is high will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 11:05:11', 1, '2023-10-16 11:11:49', 0, NULL, 1),
(14793, 'Gokul R', '13', '7868908207', '9626035954', 'gokul17102001@gmail.com', '2001-10-17', 21, '6', '2', 'Rathakrishnan', 'Teacher', 20000.00, 0, 0.00, 15000.00, 'No:42/2 balu Nagar chengalpat', 'No:42/2 balu Nagar chengalpat', '2310160017', '', '1', 'upload_files/candidate_tracker/91701603247_Gokul Resume .pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance Will not sustain need to learn a lot ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-16 11:06:07', 108, '2023-10-16 06:23:19', 0, NULL, 1),
(14794, 'Arunkumar S', '13', '9843797753', '7868908207', 'arunvino1999@gmail.com', '1999-05-13', 24, '6', '2', 'Saravanan v', 'Former', 6000.00, 2, 0.00, 15000.00, 'Uthangarai', 'Tambaram', '2310160018', '', '1', 'upload_files/candidate_tracker/14616012509_Arun Resume (4).pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfort in TxxampC if he comes back let us try need to learn and come', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 11:06:15', 1, '2023-10-16 11:13:25', 0, NULL, 1),
(14795, 'E.Vasanth', '14', '7397631232', '', 'vasanthelayaraja25@gmail.com', '2002-01-25', 21, '6', '2', 'U.Elayaraja', 'Farmer', 16000.00, 1, 0.00, 250000.00, 'Mannargudi, Thiruvarur, Tamilnadu -614014', 'Mannargudi, Thiruvarur, Tamilnadu -614014', '2310160019', '', '1', 'upload_files/candidate_tracker/12532328568_Vasanth CV.pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC Need Time to think and confirm if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 11:07:09', 1, '2023-10-16 11:13:51', 0, NULL, 1),
(14796, 'hariharan', '13', '8098441061', '', 'hariharanselvip@gmail.com', '1999-12-02', 23, '6', '2', 'prakash', 'daily worker', 15000.00, 2, 0.00, 15000.00, 'villupuram', 'villupuram', '2310160020', '', '1', 'upload_files/candidate_tracker/32797894788_Hariharan resume java.pdf', NULL, '1', '2023-10-16', 0, '', '3', '59', '2023-11-09', 120000.00, '', '', '2023-11-15', '2', 'Node -6k-8k then 10-15K 3.5 yrs SA', '2', '1', '2', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-16 11:07:32', 60, '2023-11-09 10:10:44', 0, NULL, 1),
(14797, 'Revanth babu. G', '5', '7305492756', '', 'Revanthrisky396@gmail.com', '1995-09-11', 28, '2', '2', 'N. Giriraj', 'Driver', 30000.00, 1, 15000.00, 20000.00, 'Madipakkam', 'Madipakkam', '2310160021', '1', '2', 'upload_files/candidate_tracker/8822689641_Revanth.pdf.pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Mentioned Exp in relevant Attitude candidate frequent job changes will not suits for our role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-16 11:12:48', 108, '2023-10-16 11:55:41', 0, NULL, 1),
(14798, 'Shalini', '33', '7904284191', '6369550240', 'r.shalini2171@gmail.com', '2001-07-21', 22, '6', '2', 'Ravi', 'Fresher', 32000.00, 1, 0.00, 360000.00, 'Otteri, purasaiwakkam', 'Otteri, Purasaiwakkam', '2310160022', '', '1', 'upload_files/candidate_tracker/44829172265_Shalini Resume..pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left With Out Attending', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 11:29:41', 1, '2023-10-16 11:37:45', 0, NULL, 1),
(14799, '', '0', '6382819914', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310160023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-16 11:33:38', 0, NULL, 0, NULL, 1),
(14800, 'aakash n', '14', '9944810042', '9842345293', 'akashkr17197@gmail.com', '1997-01-17', 26, '6', '2', 'j narendra', 'b com', 20000.00, 1, 0.00, 400000.00, 'vellore', 'vellore', '2310160024', '', '1', 'upload_files/candidate_tracker/65776785356_Resume_Aakash_N.pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Active Profile will not sustain not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 11:33:42', 1, '2023-10-16 11:39:41', 0, NULL, 1),
(14801, 'Rajesh.p', '4', '9361528292', '9677340754', 'rajesh967734@gmail.com', '2002-11-25', 20, '2', '2', 'Ragupathi', 'Ambathur', 28000.00, 2, 0.00, 18000.00, 'Tuticorin', 'Tuticorin', '2310160025', '1', '1', 'upload_files/candidate_tracker/1633448649_Rajesh Resume.pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non Voice process only', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-16 11:51:51', 108, '2023-10-16 01:22:20', 0, NULL, 1),
(14802, 'Rajarathinam', '5', '7397022014', '8754057797', 'jillaraja613@gmail.com', '2002-07-22', 21, '2', '2', 'Sankar', 'Ambattur', 15000.00, 1, 19500.00, 21000.00, 'Tirunelveli', 'Ambattur', '2310160026', '1', '2', 'upload_files/candidate_tracker/80743382248_Raja Rathinam-1.pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles will not sustain and handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-16 11:51:58', 108, '2023-10-16 06:13:12', 0, NULL, 1),
(14803, 'Dinesh kumar.G', '3', '7401472129', '9380967772', 'Myid07071997@gmail.com', '1997-07-07', 26, '4', '1', 'Ranjitha.D', 'Housewife', 344000.00, 1, 25000.00, 340000.00, 'Chennai', 'Chennai', '2310160027', '', '2', 'upload_files/candidate_tracker/37554657588_UPDATED LATEST RESUME --2022.docx', NULL, '1', '2023-10-16', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left With Out Attending', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-16 12:03:18', 108, '2023-10-16 06:14:37', 0, NULL, 1),
(14804, 'Aashik kumaran', '33', '7358233347', '9840121556', 'aashikkumaran96@gmail.com', '1996-10-08', 27, '3', '2', 'Kumaran', 'Retired in bank', 1000000.00, 1, 0.00, 15000.00, 'KGEYES ASTER Lattice Bridge Road Thiruvanmiyur', 'KGEYES ASTER Latice Bridge road', '2310160028', '', '2', 'upload_files/candidate_tracker/84979070331_AASHIK RESUME.docx', NULL, '1', '2023-10-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable Low Quality Candidate will not sustain and handle our work pressure', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 12:06:01', 1, '2023-10-16 12:21:53', 0, NULL, 1),
(14805, 'Dinesh k', '31', '8610376895', '', 'dkdinesh2342@gmail.com', '2002-04-23', 21, '3', '2', 'Gowri', 'House wife', 8000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2310160029', '', '1', 'upload_files/candidate_tracker/72322462425_resume wd.pdf', NULL, '1', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 12:19:50', 1, '2023-10-16 12:26:53', 0, NULL, 1),
(14806, 'Manikandan j', '31', '8300642486', '', 'manikandan67542@gmail.com', '1999-01-09', 24, '3', '2', 'JAISANKAR', 'Business', 6000.00, 1, 0.00, 20000.00, 'No 1, kalayankatti Street , karaikal', 'Chennai Egmore', '2310160030', '', '1', 'upload_files/candidate_tracker/65719373188_MANIKANDAN j.pdf_20231016_114941_0000.pdf', NULL, '1', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 12:20:16', 1, '2023-10-16 12:32:04', 0, NULL, 1),
(14807, 'mohamed raasith', '14', '9597889053', '', 'raasithknr@gmail.com', '2001-03-09', 22, '6', '2', 'mohamed idris', 'upholster', 25000.00, 1, 16000.00, 28000.00, 'thiruvarur', 'thiruvarur', '2310160031', '', '2', 'upload_files/candidate_tracker/5797505698_Ras-Flutter(2)N.pdf', NULL, '1', '2023-10-16', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to come with his confirmation and yet to get his Github link for project access\n', '2', '1', '0', '1', '8', '0', '2', '2023-10-23', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 12:20:45', 1, '2023-10-16 12:36:53', 0, NULL, 1),
(14808, 'Dhavaselvan', '31', '8883347163', '9363312176', 'dhavaselvanpandiyan@gmail.com', '2002-07-03', 21, '3', '2', 'Pandiyan', 'Former', 6000.00, 6, 0.00, 20000.00, 'Cuddalore', 'Chennai', '2310160032', '', '1', 'upload_files/candidate_tracker/58922365623_Resume-Dhavaselvan-p 303.pdf', NULL, '1', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 12:21:17', 1, '2023-10-16 12:34:43', 0, NULL, 1),
(14809, 'Dhinesh S', '13', '8098263868', '8940153583', 'dhinesh8098dd@gmail.com', '1998-10-22', 24, '6', '2', 'Saravanan B', 'Car driver', 18000.00, 0, 0.00, 25000.00, 'Thanjavur', 'Chennai', '2310160033', '', '1', 'upload_files/candidate_tracker/55675043973_Dhinesh Saravanan.pdf', NULL, '1', '2023-10-16', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Will come for final round with Gokul 2nd Round sathish ok with the profile for backend node', '2', '1', '0', '1', '8', '0', '2', '2023-10-17', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 12:24:12', 1, '2023-10-16 12:32:28', 0, NULL, 1),
(14810, 'Vigneshkumar', '13', '8903669983', '6383621515', 'vigneshsa8903@gmail.com', '2000-12-30', 22, '2', '2', 'Karthickkumar', 'Bike mechanic', 200000.00, 2, 0.00, 25000.00, 'Coimbatore', 'Coimbatore', '2310160034', '1', '2', 'upload_files/candidate_tracker/14241722865_vigneshkumar.pdf', NULL, '1', '2023-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interview for Full Stack and the candidate is not much comfort with the txxampC if he comes back let su try.', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-16 12:24:19', 104, '2023-11-28 12:06:29', 0, NULL, 1),
(14811, 'Vengatesh.R', '13', '6374006953', '9894683603', 'smartvengatesh8@gmail.com', '1999-08-14', 24, '3', '2', 'Rajendran', 'Electrician', 17000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2310160035', '', '1', 'upload_files/candidate_tracker/25839159126_vengatesh developer.pdf', NULL, '1', '2023-10-16', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to come back with his confirmation on TxxampC\n', '2', '1', '', '1', '8', '', '2', '2023-10-17', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-16 12:24:37', 108, '2023-10-16 06:17:06', 0, NULL, 1),
(14812, 'Vengatesan c', '13', '9360181141', '', 'Vengatchina7@gmail.com', '2002-06-15', 21, '3', '2', 'Chinnapaiyan n', 'Farmer', 45000.00, 0, 0.00, 15000.00, 'Thiruvannamalai', 'Guindy', '2310160036', '', '1', 'upload_files/candidate_tracker/79571444313_Pink Simple Profile Resume (2).pdf', NULL, '1', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 12:25:40', 1, '2023-10-16 12:38:15', 0, NULL, 1),
(14813, 'Sanjay K', '31', '9597616349', '8825930893', 'sanjaykathiravan2001@gmail.com', '2001-09-05', 22, '2', '2', 'Kathiravan M', 'Former', 15000.00, 0, 0.00, 20000.00, 'Namakkal', 'Namakkal', '2310160037', '1', '1', 'upload_files/candidate_tracker/72839117523_SANJAY (1).Kpdf_compressed.pdf', NULL, '1', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2023-10-16 12:40:51', 1, '2023-10-16 02:56:36', 0, NULL, 1),
(14814, 'Haripriya.V', '13', '6374045677', '', 'haripriyavenkatesan27@gmail.cm', '2002-10-27', 20, '3', '2', 'Venkatesan.K', 'Gas Supplier', 150000.00, 1, 0.00, 15000.00, 'Mogappair East, Chennai 37', 'Mogappair East, Chennai 37', '2310160038', '', '1', 'upload_files/candidate_tracker/87530760863_Haripriya.V-2.pdf', NULL, '1', '2023-10-16', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come back after her confirmation from parents on TxxampC', '2', '1', '', '1', '8', '', '2', '2023-10-23', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-16 12:42:04', 108, '2023-10-16 06:15:49', 0, NULL, 1),
(14815, 'shrut p bhayani', '30', '9840317272', '9042207941', 'shrutbhayani017@gmail.com', '2000-03-28', 23, '3', '2', 'parulkumar bhayani', 'business', 900000.00, 1, 0.00, 400000.00, 'chennai', 'Chennai', '2310160039', '', '1', 'upload_files/candidate_tracker/24290859110_Shrut\'s Resume (1).pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left with out attending', '9', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 12:51:22', 1, '2023-10-16 01:35:00', 0, NULL, 1),
(14816, 'J yuveka', '31', '8667408775', '8124041938', 'yuvekaj20@gmail.com', '2000-05-20', 23, '2', '2', 'N Jayavelu', 'Electrical department', 25000.00, 1, 0.00, 200000.00, 'Vellore', 'Chennai', '2310160040', '27', '1', 'upload_files/candidate_tracker/98149387189_Yuveka J_ Software Tester CV.pdf', NULL, '1', '2023-10-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left With Out Attending', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-16 01:00:54', 108, '2023-10-16 06:19:13', 0, NULL, 1),
(14817, 'Nithish s', '5', '9025013675', '7094079835', 'nithishnithish94731@gmail.com', '2000-12-13', 22, '1', '2', 'Subramaniyan C', 'Labour', 37000.00, 1, 0.00, 20000.00, 'No. 7/72, East Street, Kadur, Perambalur -621-716', '7/13 , V. m Street Royapettah, Chennai -600014', '2310160041', '', '1', 'upload_files/candidate_tracker/17407574388_S.Nithish-2.pdf', NULL, '1', '2023-10-16', 0, 'P1404', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left With Out Attending', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 01:19:40', 1, '2023-10-16 01:36:36', 0, NULL, 1),
(14818, 'shanthi', '13', '6383819914', '', 'shanthi25b@gmail.com', '1996-10-20', 26, '3', '2', 'amulvanitha', 'home maker', 18000.00, 2, 0.00, 18000.00, 'chennai', 'chennai', '2310160042', '', '1', 'upload_files/candidate_tracker/68668549300_Shanthi.pdf.pdf', NULL, '1', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-16 01:24:12', 1, '2023-10-16 01:34:28', 0, NULL, 1),
(14819, 'Jeevan raj s', '31', '7825997470', '9788664154', 'JEEVANRAJPTM@GMAIL.COM', '2002-03-10', 21, '2', '2', 'K subramanian', 'ATC Conductor', 40000.00, 0, 0.00, 20000.00, 'Namakkal', 'Namakkal', '2310160043', '1', '1', 'upload_files/candidate_tracker/13652593327_CV_2023101211421855.pdf', NULL, '2', '2023-10-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2023-10-16 02:41:56', 1, '2023-10-16 02:46:21', 0, NULL, 1),
(14820, 'Reena', '6', '9361432146', '7871533864', 'reenathenmozhi51035@gmail.com', '1999-10-10', 24, '2', '1', 'Balaji', 'Service Technician', 20000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2310160044', '1', '2', 'upload_files/candidate_tracker/49679546227_RESUME REENA 2023 08.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sustainability in her previous exp will not sustain in our roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-16 06:37:13', 104, '2023-10-17 06:47:47', 0, NULL, 1),
(14821, 'Ganga supraja A', '13', '9346986782', '', 'Gangasupraja123@gmail.com', '1998-06-04', 25, '3', '2', 'Jayaram A', 'Railway employee', 25000.00, 3, 0.00, 10000.00, 'Chennai', 'Chennai', '2310170001', '', '1', 'upload_files/candidate_tracker/38039587524_GANGA SUPRAJA (3).pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 09:16:52', 1, '2023-10-17 10:06:52', 0, NULL, 1),
(14822, 'Dinesh Chennu', '13', '7448541572', '9342664036', 'dineshc0503@gmail.com', '1999-05-03', 24, '3', '2', 'Chennu', 'Daily wages', 25000.00, 2, 0.00, 15000.00, 'Krishnagiri', 'Krishnagiri', '2310170002', '', '1', 'upload_files/candidate_tracker/89643333783_Dinesh C.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 09:26:56', 1, '2023-10-17 09:33:09', 0, NULL, 1),
(14823, 'PRAVEEN KUMAR R', '13', '9159659314', '8667804367', 'kpravin649@gmail.com', '1997-06-14', 26, '3', '2', 'RAVI KUMAR P', 'DRIVER', 20000.00, 1, 0.00, 20000.00, 'VELLANUR, TRICHY-621712', 'CHROMPET, CHENNAI', '2310170003', '', '1', 'upload_files/candidate_tracker/52763071308_Resume an.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain if he comes back let us try in our roles', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 09:44:34', 1, '2023-10-17 09:52:27', 0, NULL, 1),
(14824, 'S.Angela Jenifer Mary', '31', '8608527213', '', 'angelajenifer13@gmail.com', '1996-02-13', 27, '3', '1', 'D. Ravendran', 'Logistics', 30000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2310170004', '', '1', 'upload_files/candidate_tracker/43624584955_newresume_change.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 09:56:31', 1, '2023-10-17 10:39:52', 0, NULL, 1),
(14825, 'ARRURI VENKATESH', '13', '8688908362', '', 'venkyarruri@gmail.com', '2000-11-05', 22, '3', '2', 'ARRURI NARSIMHA RAO', 'Government Employee', 45000.00, 1, 0.00, 400000.00, 'Hyderabad', 'Chennai', '2310170005', '', '1', 'upload_files/candidate_tracker/93465818422_ARRURI VENKATESH TECH.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 09:57:31', 1, '2023-10-17 10:25:23', 0, NULL, 1),
(14826, '', '0', '9080686063', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310170006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-17 10:09:11', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14827, 'Gokulnath Gnanavelan', '13', '9442456426', '6369028702', 'gokulshiv079@gmail.com', '2002-03-01', 21, '3', '2', 'Gnanavelan M', 'Welder', 120000.00, 1, 0.00, 300000.00, 'Vellore', 'Poonamallee', '2310170007', '', '1', 'upload_files/candidate_tracker/18578786503_GOKULNATH_GNANAVELAN.pdf', NULL, '1', '2023-10-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Final Round Pending 2nd round with Sathish', '2', '1', '0', '1', '8', '0', '2', '2023-10-23', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 10:12:46', 1, '2023-10-17 10:17:16', 0, NULL, 1),
(14828, 'Keeth Alocious', '13', '9176382789', '9597338842', 'keethalocious21@gmail.com', '2001-06-21', 22, '3', '2', 'Kulandai Yesuraj.K', 'hVF', 300000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2310170008', '', '1', 'upload_files/candidate_tracker/721709759_K.KEETH_ALOCIOUS_Resume_05-10-2023-11-25-40.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance Will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 10:14:37', 1, '2023-10-17 10:21:30', 0, NULL, 1),
(14829, 'Nangamuthu', '31', '7397038703', '8940988716', 'nangamuthu1999@gmail.com', '1999-11-13', 23, '2', '2', 'P. Alagumurugan', 'TNEB', 50000.00, 1, 0.00, 18000.00, 'PlotNo. 42E Ravi Sankar Nagar, Tirunelveli-627011', '36/147 vanniar 1st street, choolaimedu, chennai-94', '2310170009', '1', '1', 'upload_files/candidate_tracker/53991216521_NANGAMUTHU RESUME-1.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for TxxampC Will notSustain  not suitbale', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-17 10:16:10', 85, '2023-10-18 12:33:38', 0, NULL, 1),
(14830, 'Priyanka S', '31', '8870519755', '8883399921', 'priyankasekar2021@gmail.com', '1994-12-23', 28, '3', '1', 'Sarathkumar', 'Site Engineer', 15000.00, 1, 18000.00, 20000.00, 'Tindivanam', 'Medavakkam', '2310170010', '', '2', 'upload_files/candidate_tracker/38270583916_priyankaReact.pdf', NULL, '1', '2023-10-17', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Round Reject by Kavya', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 10:24:18', 1, '2023-10-17 10:29:56', 0, NULL, 1),
(14831, 'Saranya N R', '31', '9994817997', '9962915599', 'nrsaranya17@gmail.com', '1989-05-17', 34, '3', '1', 'Yathish kumar', 'Accounts', 50000.00, 0, 0.00, 25000.00, 'River oaks app Flat Af2 nanmangalam', 'Perambur', '2310170011', '', '1', 'upload_files/candidate_tracker/63901840521_Saranya NR\'s fresher fullstack resume.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 10:25:04', 1, '2023-10-17 10:47:25', 0, NULL, 1),
(14832, 'Dharshan', '31', '8940149280', '9003612377', 'dharshan2315@gmail.com', '2000-05-23', 23, '3', '2', 'Manikandan', 'Cooli', 15000.00, 1, 0.00, 30000.00, 'Kanyakumari', 'Chennai', '2310170012', '', '1', 'upload_files/candidate_tracker/5463373649_DHARSHAN Resume-3.pdf', NULL, '1', '2023-10-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 10:27:28', 1, '2023-10-17 10:39:40', 0, NULL, 1),
(14833, 'prassad raj r', '13', '7358622277', '9952036871', 'prassadpr10@gmail.com', '2001-06-01', 22, '3', '2', 'r ramachandran raju', 'artist', 50000.00, 1, 0.00, 3.00, 'mandaveli', 'chennai', '2310170013', '', '1', 'upload_files/candidate_tracker/4851060639_Prassad Raj.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 10:31:02', 1, '2023-10-17 10:42:05', 0, NULL, 1),
(14834, 'M.sankara narayana prasad', '13', '9003862451', '', 'sankarprasad4043@gmail.com', '1998-12-21', 24, '3', '2', 'S.Murugaprasad', 'Bussiness', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2310170014', '', '1', 'upload_files/candidate_tracker/71667114709_M.SANKARA NARAYANA PRASAD_B.E.MECHANICAL_PYTHON FULL-STACK (3).pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 10:45:44', 1, '2023-10-17 10:50:01', 0, NULL, 1),
(14835, 'Visweswaran R', '2', '9150613476', '', 'visweswarantomcruise@gmail.com', '2008-10-17', 0, '3', '2', 'Ravi', 'BE Graduate', 15000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2310170015', '', '1', 'upload_files/candidate_tracker/25608143900_Resume Visweswaran sept 2023.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 10:47:49', 1, '2023-10-17 10:50:52', 0, NULL, 1),
(14836, 'Prakash V S', '13', '9884479924', '', 'prakashvs.official@gmail.com', '2001-03-31', 22, '3', '2', 'Sekar M V', 'Business', 60000.00, 1, 0.00, 20000.00, 'Tambaram, Chennai', 'Tambaram, Chennai', '2310170016', '', '1', 'upload_files/candidate_tracker/32376194215_PRAKASH_V S(29-09-2023).pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 11:03:38', 1, '2023-10-17 11:11:52', 0, NULL, 1),
(14837, 'Aadithya R', '13', '9790817496', '', 'aadithya00018@gmail.com', '2002-11-15', 20, '3', '2', 'Ramu V', 'Loader', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2310170017', '', '1', 'upload_files/candidate_tracker/64285350740_techveel resume-2.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 11:03:59', 1, '2023-10-17 11:21:33', 0, NULL, 1),
(14838, 'Bharath R P', '13', '9344237017', '', 'bharathrbk5348@gmail.com', '2003-04-22', 0, '3', '2', 'Radhakrishnan D', 'Tailor', 9000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2310170018', '', '1', 'upload_files/candidate_tracker/1329315552_Bharath_resume.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Terms and conditions fresher for our roles not suitable will not sustain', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 11:06:00', 1, '2023-10-17 11:10:15', 0, NULL, 1),
(14839, '', '0', '9789450041', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310170019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-17 11:37:51', 0, NULL, 0, NULL, 1),
(14840, 'A.R.Karthikeyan', '16', '8124161518', '7200283843', 'remananthkarthi99@gmail.com', '1999-10-14', 24, '2', '2', 'LD.Rema devi', 'housewife', 20000.00, 1, 13000.00, 18000.00, '26/15 balakrishna nagar thiruvallur street tvt.', 'thiruvottiyur chennai', '2310170020', '1', '2', 'upload_files/candidate_tracker/63250059338_AR RESUME NEW-1.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non Voice Process only', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-17 11:39:01', 85, '2023-10-17 12:03:50', 0, NULL, 1),
(14841, 'Ajith Kumar', '31', '8248126769', '', 'ajithkvapr97@gmail.com', '1997-04-20', 26, '2', '2', 'S.krishnan', 'Non employee', 10000.00, 2, 0.00, 10000.00, 'Chennai', 'Kandigai', '2310170021', '27', '1', 'upload_files/candidate_tracker/66576284495_Ajithkumar Web resume.pdf', NULL, '1', '2023-10-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-17 11:46:31', 1, '2023-10-17 11:51:50', 0, NULL, 1),
(14842, 'Melvin sebastian raj', '11', '9940183275', '9444074799', 'rajmelvin35@gmail.com', '2002-07-20', 23, '2', '2', 'Peter amalopava raj. P', 'Cook', 50000.00, 1, 0.00, 1.00, 'CHENNAI', 'CHENNAI', '2310170022', '1', '1', 'upload_files/candidate_tracker/6081316392_resume.pdf.pdf', NULL, '1', '2026-04-15', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2023-10-17 12:13:20', 154, '2026-04-15 02:59:44', 0, NULL, 1),
(14843, 'Manoj M', '4', '7358489540', '', 'Manojkrishms33@gmail.com', '1999-12-05', 23, '2', '2', '-', '-', 45000.00, 1, 18000.00, 20000.00, 'No:17/A gangai amman kovil street kamaraj puram', 'No:17/A Gangai Amman Kovil Street Kamaraj Puram', '2310170023', '1', '2', 'upload_files/candidate_tracker/24706725860_CV_2023092116010249 Manoj New Resume.pdf', NULL, '1', '2023-10-17', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Seems to be not genuine with his exp will not sustain in our roles', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-17 12:17:32', 104, '2023-10-17 06:48:04', 0, NULL, 1),
(14844, 'M Ganesh', '5', '7092945306', '9444576336', 'ganesh.m2793@gmail.com', '1993-05-27', 30, '2', '2', 'M Amutha', 'Home maker', 12000.00, 0, 25000.00, 28000.00, 'Chennai', 'Chennai', '2310170024', '1', '2', 'upload_files/candidate_tracker/96709412087_ganesh resume (1) (1).pdf', NULL, '1', '2023-10-18', 0, '', '3', '59', '2023-10-26', 360000.00, '', NULL, '2024-09-16', '1', 'Selected for GK Sir Team in Staff Role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-17 05:09:43', 108, '2023-10-17 05:23:15', 0, NULL, 1),
(14845, 'ajithchandran', '16', '9677085471', '9566059638', 'ajithchandran601@gmail.com', '1996-08-02', 27, '2', '1', 'karthiga j', 'working', 40.00, 1, 27696.00, 35000.00, 'chennai', 'chennai', '2310170025', '1', '2', 'upload_files/candidate_tracker/21190708952_Ajith Chandran R (CV).pdf', NULL, '1', '2023-10-18', 30, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to check with Gokul for MIS Have Exp but need to finalise based on the final round Will confirm later', '3', '1', '', '1', '3', '', '2', '2023-10-23', '1', '7', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-17 06:50:29', 104, '2023-10-18 05:34:31', 0, NULL, 1),
(14846, 'Rohit Surya P K', '33', '9952945376', '9841991346', 'pkrohits26@gmail.com', '2000-06-26', 23, '3', '2', 'K kanniah', 'Inspector of income tax', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2310180001', '', '1', 'upload_files/candidate_tracker/68262345395_1693469423940_RohithSurya_Resume (1).pdf', NULL, '1', '2023-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable will not handle our work pressure profile will not sustain', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-18 09:11:05', 108, '2023-10-18 05:09:49', 0, NULL, 1),
(14847, 'Karthick Raj', '31', '8838226389', '', 'karthickhalraj1999@gmail.com', '1999-04-11', 24, '3', '2', 'Halraj .k', 'Farmer', 80000.00, 1, 350000.00, 350000.00, 'Ooty', 'Chennai', '2310180002', '', '2', 'upload_files/candidate_tracker/52084077708_Karthick_Raj_Resume_01-08-2023-15-38-06.pdf', NULL, '1', '2023-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need time to confirm the TxxampC if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-18 09:24:20', 108, '2023-10-18 05:15:10', 0, NULL, 1),
(14848, 'F CRISTOBER', '33', '7448314324', '8124454198', 'cvsm717@gamil.com', '2008-10-18', 0, '2', '2', 'Francis', 'painter', 40000.00, 1, 10000.00, 17000.00, 'no 10 sundaram power line vyasarpadi chennai 39', 'no 47/6 pattinampakkam chennai 28', '2310180003', '1', '2', 'upload_files/candidate_tracker/81945862635_Master Resume-2.pdf', NULL, '1', '2023-10-18', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking only for Salary Growth No ideas in MIS No Communication not suitable for our roles', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-18 09:56:53', 104, '2023-10-18 05:35:42', 0, NULL, 1),
(14849, 'Deepika R', '13', '9003196388', '9940576388', 'deepikaranjan854@gmail.com', '2001-09-16', 22, '2', '2', 'Ranjan S', 'Painting contractor', 30000.00, 1, 0.00, 250000.00, 'No.1/124,2nd cross street, puthur mappedu, Ch-126', 'No 1/124,2nd cross street, puthur mappedu, Ch- 126', '2310180004', '18', '1', 'upload_files/candidate_tracker/26747897341_Deepika.R (1).pdf', NULL, '1', '2023-10-18', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-18 10:03:28', 1, '2023-10-18 10:11:11', 0, NULL, 1),
(14850, 'Mahasri', '13', '9698467274', '9626427273', 'Smahasri@outlook.com', '2003-07-24', 20, '2', '2', 'Senthilnathan', 'Driver', 15000.00, 1, 0.00, 20000.00, '13/14 ram rao garden 1st street,Royapettah', 'Royapettah chennai', '2310180005', '23', '1', 'upload_files/candidate_tracker/52264624189_mahasri.pdf', NULL, '1', '2023-10-18', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', '5050 Profile open fr TxxampC Kindly chek an dlet me knwo your inputs', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-18 10:03:39', 1, '2023-10-18 10:08:47', 0, NULL, 1),
(14851, 'Sudhakar P', '13', '9360080308', '9940185940', 'sudhakarsdr11@gmail.com', '2003-01-11', 20, '2', '2', 'Prabhakaran M', 'Private sector', 14000.00, 1, 0.00, 20000.00, 'No: 16/15, railway border road, kodambakkam, ch-24', 'No: 16/15, Railway Border Road, Kodambakkam, Ch-24', '2310180006', '18', '1', 'upload_files/candidate_tracker/12104318771_SUDHAKAR resume.pdf', NULL, '1', '2023-10-18', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-18 10:04:25', 1, '2023-10-18 10:12:23', 0, NULL, 1),
(14852, 'Rupa Sree.S', '13', '9390589832', '7702406785', 'rupasreesalla@gmail.com', '2000-12-20', 22, '2', '2', 'Balasubramanyam Naidu.S', 'Farmer', 10000.00, 2, 0.00, 20000.00, 'Thalambadu cross(v),chittoor(D),AP', 'Chennai', '2310180007', '18', '1', 'upload_files/candidate_tracker/74652191475_rupaf2 @resume.pdf', NULL, '1', '2023-10-18', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-18 10:04:27', 1, '2023-10-18 10:31:24', 0, NULL, 1),
(14853, 'Swetha S', '13', '9345668951', '', 'sgk.swetha031@gmail.com', '2001-10-31', 21, '3', '2', 'Saravana Guru S', 'Business', 50000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2310180008', '', '1', 'upload_files/candidate_tracker/97829398476_SWETHA.pdf', NULL, '1', '2023-10-18', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-18 10:19:01', 108, '2023-10-18 05:04:35', 0, NULL, 1),
(14854, 'Srinath', '16', '9360349323', '8270760878', 'srinath19c117@gmail.com', '2002-05-30', 21, '3', '2', 'Kala', 'Housewife', 200000.00, 0, 200000.00, 215000.00, 'Chennai', 'Chennai', '2310180009', '', '2', 'upload_files/candidate_tracker/80205353859_Srinath', NULL, '1', '2023-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable fr our roles will not sustain', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-18 10:19:07', 108, '2023-10-18 05:14:26', 0, NULL, 1),
(14855, 'M.Dilip kumar', '13', '8608293131', '7299897583', 'dilipkumar08121998@gmail.com', '1998-12-08', 24, '3', '2', 'M . Bala Sundar rao', 'Private sector', 18000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2310180010', '', '1', 'upload_files/candidate_tracker/39042335849_Dilip Resume.pdf', NULL, '1', '2023-10-18', 0, '', '1', '108', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'left without attending', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-18 10:20:31', 108, '2023-10-18 05:37:55', 0, NULL, 1),
(14856, 'Manikandan', '16', '7695876880', '9840465358', 'Manikandanleo1995@gmail.com', '1995-01-19', 0, '3', '2', 'Ramachandran', 'Retired Conductor', 10000.00, 1, 15000.00, 16000.00, '398, chetty street, Panpakkam Village, Kavaraipet', '398, Chetty Street, Panpakkam Village, Kavaraipet', '2310180011', '', '2', 'upload_files/candidate_tracker/74678563301_Manikandan Resume File.pdf', NULL, '1', '2023-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Sustainability frequent Job Changes not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2023-10-18 10:20:59', 108, '2023-10-24 10:23:01', 0, NULL, 1),
(14857, 'Gowtham G', '13', '9840652028', '9952047136', 'gowthamgy8@gmail.com', '2002-01-27', 21, '3', '2', 'Yamuna G', 'N/a', 100000.00, 1, 0.00, 18000.00, 'Avadi, Chennai', 'Avadi, Chennai', '2310180012', '', '1', 'upload_files/candidate_tracker/99255180268_Gowtham G_Resume.pdf', NULL, '1', '2023-10-18', 0, '', '1', '108', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'left without attending', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-18 10:21:13', 108, '2023-10-18 05:36:46', 0, NULL, 1),
(14858, 'Gopinath M', '13', '8610415715', '', 'gopinathmurugan30@gmail.com', '2001-08-31', 22, '3', '2', 'Murugan', 'Teacher', 75000.00, 1, 0.00, 400000.00, '12/43,reddiyar colony,kurinjipadi, Cuddalore.', '10 Dhanapal Street, Gandhi Road ,Tambaram.', '2310180013', '', '1', 'upload_files/candidate_tracker/99153891658_Gopinath-1.pdf', NULL, '1', '2023-10-18', 0, '', '1', '108', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-18 10:21:18', 108, '2023-10-18 05:37:28', 0, NULL, 1),
(14859, 'Abdul Razik', '31', '9444732786', '', 'sit19cs130@sairamtap.edu.in', '2002-06-29', 21, '3', '2', 'Uthuman Ali', 'Daily Wages Worker', 11000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2310180014', '', '1', 'upload_files/candidate_tracker/83280713366_AbdulResume.pdf', NULL, '1', '2023-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not openf or TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-18 10:21:22', 108, '2023-10-18 05:26:10', 0, NULL, 1),
(14860, 'Aswin', '31', '8667311372', '6379606140', 'aswinselvan3@gmail.com', '2008-10-18', 0, '6', '2', 'Mala', 'Teacher', 200000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2310180015', '', '1', 'upload_files/candidate_tracker/65665162783_resume.pdf', NULL, '1', '2023-10-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-18 10:22:22', 1, '2023-10-18 10:28:32', 0, NULL, 1),
(14861, 'diwakar v', '13', '8072348616', '9710626021', 'divakar305@gmail.com', '2002-03-14', 21, '2', '2', 'venugopal p', 'driver', 50000.00, 0, 0.00, 200000.00, 'chennai', 'chennai', '2310180016', '18', '1', 'upload_files/candidate_tracker/10298982953_DIWAKAR RESUME (1)_removed (1).pdf', NULL, '1', '2023-10-18', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-18 10:37:53', 1, '2023-10-18 10:52:13', 0, NULL, 1),
(14862, 'Tharani C', '5', '7358651161', '7358539586', 'tharani.chellappan@gmail.com', '1999-09-26', 24, '2', '2', 'Chellappan', 'Tamil, English', 20000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2310180017', '1', '2', 'upload_files/candidate_tracker/98360878604_THARANI C - Resume.pdf', NULL, '1', '2023-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain up and down 50kms not in a stable mind will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-18 11:23:53', 108, '2023-10-18 05:20:22', 0, NULL, 1),
(14863, 'Ebin Anto', '31', '6374469288', '9597044159', 'ebinanto001@gmail.com', '2001-06-23', 22, '6', '2', 'S/O M.Claiment', 'Masion', 10000.00, 1, 0.00, 12000.00, 'Nagercoil', 'Thiruvallur', '2310180018', '', '1', 'upload_files/candidate_tracker/69582265113_Ebin', NULL, '1', '2023-10-18', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-18 11:25:43', 108, '2023-10-18 05:07:50', 0, NULL, 1),
(14864, 'Hari Sundar A', '13', '9789973720', '', 'hsundar02@gmail.com', '1991-01-02', 32, '6', '2', 'Alagarsamy AS', 'Agriculture', 10000.00, 1, 0.00, 20000.00, 'Madurai', 'Pammal', '2310180019', '', '2', 'upload_files/candidate_tracker/46553173022_Resume1.pdf', NULL, '1', '2023-10-18', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Should check for other profile if he comes back', '2', '1', '', '1', '8', '', '2', '2023-10-24', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-18 11:32:02', 108, '2023-10-18 05:13:38', 0, NULL, 1),
(14865, 'jothi', '5', '7397457424', '', 'joevky@gmail.com', '2001-03-07', 22, '2', '2', 'rathi', 'sales', 25000.00, 2, 15000.00, 18000.00, 'chennai', 'chennai', '2310180020', '1', '2', 'upload_files/candidate_tracker/43897765616_JOTHY 28.09.2023.pdf', NULL, '1', '2023-10-18', 0, '', '3', '59', '2023-11-16', 174000.00, '', '5', '1970-01-01', '2', 'Selected for Muthu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-18 11:54:19', 60, '2023-11-16 10:31:14', 0, NULL, 1),
(14866, 'Chinnarasu', '5', '9363043330', '', 'chinnarasu778900@gmail.com', '2002-08-28', 21, '2', '2', 'Chinnappan', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Villupuram', 'Keelkattalai', '2310180021', '1', '1', 'upload_files/candidate_tracker/5242748949_resume chinnarasu.pdf', NULL, '1', '2023-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher For Our Sales Need To Be Trained Kindly Check For Muthu Team And Let Me Know The Status', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1008', '', NULL, NULL, NULL, 1, '2023-10-18 12:15:25', 108, '2023-10-18 05:38:50', 0, NULL, 1),
(14867, 'Lavanya. P', '5', '7550264168', '9840881523', 'lavkomathi@gmail.com', '2003-05-19', 20, '1', '2', 'Muthulakshmi', 'Baroda labels company', 12000.00, 1, 0.00, 16000.00, 'Maduvankari guindy', 'Maduvankarai guindy', '2310180022', '', '1', 'upload_files/candidate_tracker/27766321907_CV_2023060306542721.pdf', NULL, '1', '2023-10-18', 0, 'CA130', '3', '59', '2023-10-26', 180000.00, '', NULL, '2025-09-09', '2', 'Selected for Babu Team in Consultant Role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-18 01:19:08', 108, '2023-10-18 05:21:55', 0, NULL, 1),
(14868, 'Ajithkumar', '1', '7358429864', '9176387134', 'Ajithkumarmanogaran1997@gmail.com', '1997-05-25', 26, '3', '2', 'Manoharan', 'Security', 15000.00, 1, 18000.00, 20000.00, 'Chennai', 'Pattabiram', '2310180023', '', '2', 'upload_files/candidate_tracker/11050789899_Ajith resume.pdf', NULL, '1', '2023-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance Looking for non voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1016', '', NULL, NULL, NULL, 1, '2023-10-18 01:23:02', 108, '2023-10-24 10:22:06', 0, NULL, 1),
(14869, 'RAMYA.M', '4', '9043668857', '', 'mramyaragu95@gmail', '1995-07-22', 28, '2', '1', 'B.prithivirajan', 'Civil engineer', 20000.00, 1, 0.00, 18000.00, 'Keelappattu, Needamangalam', 'Aiyanapuram,Budalur', '2310180024', '1', '1', 'upload_files/candidate_tracker/30600262175_DOC-20230812-WA0004..pdf', NULL, '1', '2023-10-19', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-18 06:41:52', 108, '2023-10-19 10:43:22', 0, NULL, 1),
(14870, 'Stephen', '33', '9551505752', '', 'stephen252001@gmail.com', '2001-01-25', 22, '2', '2', 'Bhavani', 'Auto driver', 17000.00, 0, 0.00, 13000.00, 'Chennai', 'Chennai', '2310180025', '1', '1', 'upload_files/candidate_tracker/86912424990_Stephen CV 08_2023.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Career Gap not much interest with the jobs will not sustain and handle our work pressure', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-18 08:13:24', 108, '2023-10-19 02:59:27', 0, NULL, 1),
(14871, 'Thangavel .K', '33', '7305825433', '', 'thangavelk764@gmail.com', '2003-04-09', 20, '2', '2', 'Kanniyappan', 'Painter', 85000.00, 2, 0.00, 13000.00, '15/16 periyar nagar thiruvanmiyur chennai -600041', '8543 ,16 main road kanagi near Thoraipakkam OMR', '2310180026', '1', '1', 'upload_files/candidate_tracker/98172027352_work ppdf.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable profile will not handle our roles', '4', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-18 10:34:16', 108, '2023-10-19 01:08:39', 0, NULL, 1),
(14872, 'Kishor M', '31', '7010190499', '9488760933', 'kishormahendran6@gmail.com', '2002-02-22', 21, '3', '2', 'Mahendran V', 'Farmer', 8000.00, 1, 0.00, 20000.00, 'Dharmapuri', 'Chennai', '2310190001', '', '1', 'upload_files/candidate_tracker/555198898_kishor M Resumes.pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for TxxampC Need to learn a lot Fresher if he comes back let us try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-19 07:28:01', 108, '2023-10-20 06:28:51', 0, NULL, 1),
(14873, 'vijay kumar', '31', '9843281623', '', 'mvijaykumar16031999@gmail.com', '1999-03-16', 24, '3', '2', 'munivel', 'provision store', 50000.00, 1, 0.00, 15000.00, 'thiruvallur', 'vadapalni', '2310190002', '', '1', 'upload_files/candidate_tracker/73238111239_VijayKumar-resume.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-19 09:27:11', 108, '2023-10-19 06:32:39', 0, NULL, 1),
(14874, 'Manikandan K', '31', '8056881158', '', 'manikandank3499@gmail.com', '1999-04-03', 24, '3', '2', 'Kannan C', 'Mason', 90000.00, 1, 0.00, 2.50, 'Madurai', 'Chennai', '2310190003', '', '1', 'upload_files/candidate_tracker/32747771006_Manikandan K Resume.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-19 10:03:28', 108, '2023-10-19 06:33:55', 0, NULL, 1),
(14875, 'KARTHICK N', '31', '8610012935', '', 'karthickdeva6800@gmail.com', '2001-07-29', 22, '3', '2', 'NACHIMUTHU N', 'FARMER', 15000.00, 0, 0.00, 180000.00, 'Palani', 'Vadapalani, Chennai', '2310190004', '', '1', 'upload_files/candidate_tracker/7023337471_karthick_resume.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-19 10:09:31', 108, '2023-10-19 06:33:18', 0, NULL, 1),
(14876, 'Thirunavookarasu', '13', '7649731133', '', 'thiruthirunavookarasu@gmail.com', '2001-11-09', 21, '2', '2', 'Parents', 'Pwd', 60000.00, 1, 0.00, 300000.00, 'Pondicherry', 'Chennai', '2310190005', '1', '1', 'upload_files/candidate_tracker/88097278370_Resume.pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-19 10:25:32', 85, '2023-10-20 10:14:55', 0, NULL, 1),
(14877, 'Rekha Santha kumar', '5', '6380922262', '6385161313', 'rekhaparthiv14@gmail.com', '1999-01-11', 24, '2', '2', 'Santha kumar', 'Life operator', 300000.00, 1, 17000.00, 20000.00, 'No 1/143 pudhu nagar 1st cross street', 'Ayanavaram', '2310190006', '1', '2', 'upload_files/candidate_tracker/15141738958_REKHA RESUME.docx', NULL, '1', '2023-10-19', 5, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'star la 2yrs experience irukku but basic terms kooda clear ah terila but communication skill ok   joining  Date confirm pannaum', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-19 10:27:03', 108, '2023-10-19 06:35:02', 0, NULL, 1),
(14878, 'Aafreen.A', '13', '6379849106', '', 'freen2795@gmail.com', '2003-03-04', 20, '4', '2', 'Aysha Banu', 'Iron business', 96000.00, 1, 0.00, 14000.00, '45/2c Raman Street Royapuram chennai-13', '45/2c Raman Street Royapuram Chennai-13', '2310190007', '', '1', 'upload_files/candidate_tracker/64453789780_aafreen.a.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-19 10:33:19', 108, '2023-10-19 06:30:39', 0, NULL, 1),
(14879, 'Harriat Linda L', '13', '7871266920', '', 'harriatlinda10@gmail.com', '2001-10-29', 21, '3', '2', 'Loovin Dominic J', 'Student', 450000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2310190008', '', '1', 'upload_files/candidate_tracker/83700025833_Harriat_Linda L_Resume_14-09-2023-01-43-58.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-19 10:37:20', 108, '2023-10-19 06:31:09', 0, NULL, 1),
(14880, 'Mathubalan A', '31', '8220023201', '', 'mathubalanayyasamy@gmail.com', '2000-09-15', 23, '2', '2', 'Ayyasamy T', 'Former', 5000.00, 2, 0.00, 16000.00, 'Vellure Siruvarai, Manamelkudi,Pudukkottai,618620', 'C1- 203,Nova , Mahendra World City,6036002', '2310190009', '27', '1', 'upload_files/candidate_tracker/75387817498_Mathu CV1.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-19 10:37:32', 1, '2023-10-19 10:52:56', 0, NULL, 1),
(14881, 'Sunilkumar s', '16', '6380338969', '', 'sunilsunilkumaran@gmail.com', '1999-08-31', 24, '3', '2', 'Saravanan G', 'Self employees', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2310190010', '', '1', 'upload_files/candidate_tracker/65141238832_DOC20221102WA0000..pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much active iwll not handle need to open up', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-19 11:03:32', 104, '2023-10-19 11:53:05', 0, NULL, 1),
(14882, 'Yogeshwari', '5', '7358055061', '', 'Yogeshyogi6247@gmail.com', '2000-04-23', 23, '2', '2', 'Thiruvalluvan', 'Mason', 25000.00, 1, 0.00, 15000.00, 'vanagaram', 'vanagaram', '2310190011', '1', '1', 'upload_files/candidate_tracker/27484959442_yogi resume model.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Roles need to open a lot will not sustain and not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-19 11:11:01', 108, '2023-10-19 06:15:26', 0, NULL, 1),
(14883, 'Sundareswari S', '13', '9791491536', '', 'sundareswari2307@gmail.com', '2002-07-23', 21, '3', '2', 'Somasundaram', 'Farmer', 20000.00, 1, 0.00, 400000.00, 'Avudaiyarkovil', 'Chennai', '2310190012', '', '1', 'upload_files/candidate_tracker/41926102544_Sundareswari-211419205162 RESUME-1.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-19 11:15:08', 108, '2023-10-19 06:31:58', 0, NULL, 1),
(14884, 'AKASH.A', '33', '9384314869', '8778558782', 'akashraina429@gmail.com', '2001-03-23', 22, '6', '2', 'Asokan.b', 'Store keeping', 20000.00, 3, 0.00, 25000.00, 'Thiruvarur', 'Chennai', '2310190013', '', '1', 'upload_files/candidate_tracker/16940755626_Akash Resume.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable need to open a lot will not handle our work pressure', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-19 11:17:05', 108, '2023-10-19 06:16:04', 0, NULL, 1),
(14885, 'Hariharan BG', '16', '6381263988', '', 'Hariharan.b.g@gmail.com', '1994-07-13', 29, '2', '1', 'Nitham YT', 'Home maker', 16000.00, 1, 242000.00, 300000.00, 'Chennai', 'Chennai', '2310190014', '1', '2', 'upload_files/candidate_tracker/39413583824_Muthu.Resume-4.pdf', NULL, '1', '2023-10-19', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Customer Support Salary exp is high will not sustain', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2023-10-19 11:28:37', 1, '2023-10-19 11:59:28', 0, NULL, 1),
(14886, 'Dillibai s', '5', '8939785823', '9884191148', 'dillibai31@gmail.com', '1998-05-31', 25, '2', '2', 'Banumathi', 'Teacher', 15000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2310190015', '1', '2', 'upload_files/candidate_tracker/72042660335_dillibai.pdf.pdf', NULL, '1', '2023-10-19', 0, '', '4', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Sales Calling Can be trained in our roles kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-19 11:28:41', 108, '2023-10-19 11:56:43', 0, NULL, 1),
(14887, '', '0', '8610016466', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310190016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-19 11:36:12', 0, NULL, 0, NULL, 1),
(14888, '', '0', '7358303616', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310190017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-19 12:07:40', 0, NULL, 0, NULL, 1),
(14889, 'Padmavathy', '4', '9940137404', '', 'dhanapathma97@gmail.com', '2008-10-19', 0, '2', '2', 'Kasi', 'Farmer', 20000.00, 1, 0.00, 18000.00, 'Guindy', 'chengalpettu', '2310190018', '1', '1', 'upload_files/candidate_tracker/61717253227_Pathmavathy Resume.docx', NULL, '1', '2023-10-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-19 12:40:53', 108, '2023-10-24 03:25:28', 0, NULL, 1),
(14890, 'Mohamed Basith', '13', '9080179448', '', 'abdbasi74@gmail.com', '2001-05-15', 22, '6', '2', 'Meeran', 'Business', 45000.00, 0, 0.00, 18000.00, 'Dindigul', 'Dindigul', '2310190019', '', '1', 'upload_files/candidate_tracker/74700855861_Resume-Mohamed Basith.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-19 12:42:25', 1, '2023-10-19 02:42:38', 0, NULL, 1),
(14891, 'Srilakshmi', '5', '9342395393', '9283272816', 'lakshmi.penquin@gmail.com', '1987-07-19', 36, '2', '1', 'Saradha', 'Lab technician', 50000.00, 1, 0.00, 37000.00, 'Chennai', 'Chennai', '2310190020', '1', '2', 'upload_files/candidate_tracker/5957312505_RESUME - Srilakshmi (1).doc', NULL, '1', '2023-10-20', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Attended', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-19 12:51:06', 104, '2023-10-26 07:02:35', 0, NULL, 1),
(14892, 'Praveen. R', '13', '8300944076', '6380108068', 'prawinravi5@gmail.com', '1999-12-01', 23, '3', '2', 'Ravindran', 'PRTC - checking inspector', 40000.00, 1, 0.00, 25000.00, 'Puducherry', 'Chennai', '2310190021', '', '1', 'upload_files/candidate_tracker/36324199699_praveen_CV.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-19 01:09:20', 108, '2023-10-19 06:13:15', 0, NULL, 1),
(14893, 'K.purusothaman', '13', '9361769350', '9840652028', 'manpurusotha16@gmail.com', '2002-05-22', 21, '3', '2', 'R.karthikeyan', 'Mason', 150000.00, 1, 0.00, 25000.00, 'Avadi', 'Avadi', '2310190022', '', '1', 'upload_files/candidate_tracker/61157989119_purusothaman k.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-19 01:10:12', 108, '2023-10-19 06:08:49', 0, NULL, 1),
(14894, 'DhuraiMurugan N', '33', '8248749344', '9626146559', 'dhuraimuruganns@gmail.com', '1999-07-17', 24, '6', '2', 'Navaneethan', 'Thiagarajar Mill Trainer', 17000.00, 1, 0.00, 20000.00, 'B/37 sundar street tirunagar madurai', 'Ashok nagar Chennai', '2310190023', '', '1', 'upload_files/candidate_tracker/14551444016_DhuraiMurugan MBA SAP-FICO resume.pdf', NULL, '1', '2023-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much active Very slow will not handle our roles', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-19 01:32:21', 108, '2023-10-19 06:11:36', 0, NULL, 1),
(14895, 'BARATHKUMAR', '33', '9940459707', '8056130184', 'barathkumargunalan@gmail.com', '2002-06-25', 21, '2', '2', 'R.Gunalan', 'Plumber', 8000.00, 1, 0.00, 15000.00, 'Choolaimedu, Chennai', 'Choolaimedu,chennai', '2310190024', '1', '1', 'upload_files/candidate_tracker/3757677295_RESUME barath kumar 2.pdf', NULL, '1', '2023-10-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Round with Manikandan Auditor Hold not much good with basics', '4', '2', '', '1', '8', '', '2', '2023-10-30', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-19 01:55:44', 108, '2023-10-21 10:39:56', 0, NULL, 1),
(14896, 'Abubakkar M', '31', '9787097785', '', 'siddiqkidzen@gmail.com', '1999-01-21', 24, '2', '2', 'Masthan S', 'Business', 25000.00, 2, 25000.00, 25000.00, 'Tiruttani', 'Avadi', '2310190025', '1', '2', 'upload_files/candidate_tracker/70597840106_CV.pdf', NULL, '1', '2023-10-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Much ok with the TxxampC  Will not sustain Fresher ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-19 05:00:35', 85, '2023-10-24 10:13:06', 0, NULL, 1),
(14897, 'chandru s', '31', '9047128117', '9360791417', 'mailtochan10@gmail.com', '2001-02-01', 22, '2', '2', 'selvarasu', 'self business', 25000.00, 1, 0.00, 17000.00, 'tittakudi cuddalore dt', 'velachery chennai', '2310190026', '1', '1', 'upload_files/candidate_tracker/75831015679_Chandru S.pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-19 05:32:01', 85, '2023-10-20 04:55:42', 0, NULL, 1),
(14898, 'dinesh kumar s', '31', '9360114322', '7305878337', 'dineshselva0304@gmail.com', '2001-04-03', 22, '2', '2', 'selva kumar s', 'business', 25000.00, 1, 0.00, 15000.00, 'karur', 'chennai', '2310190027', '1', '1', 'upload_files/candidate_tracker/75477275304_Resume final (1).pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-19 05:43:18', 85, '2023-10-20 05:13:11', 0, NULL, 1),
(14899, 'Jeeva Anandh R', '31', '9360472639', '', 'jeevaanandh33@gmail.com', '2001-07-07', 22, '2', '2', 'RASAPPAN k', 'Farmer', 20000.00, 1, 0.00, 300000.00, 'NAMAKKAL', 'Chennai', '2310190028', '1', '1', 'upload_files/candidate_tracker/4979320643_JEEVAANANDH_R_B.E_ECE_2023.pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-19 05:49:58', 85, '2023-10-20 05:13:40', 0, NULL, 1),
(14900, 'Anandhan.M', '33', '8754560158', '9840434846', 'Anand1912personal@gmail.com', '2002-12-19', 20, '2', '2', 'Murali', 'Driver in riyan export', 32000.00, 1, 0.00, 17000.00, 'Kovilambakkam chennai', 'Kovilambakkam chennai', '2310190029', '1', '1', 'upload_files/candidate_tracker/52656495730_Anandhan resume.pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-19 07:04:15', 108, '2023-10-21 10:44:00', 0, NULL, 1),
(14901, 'S. Sandhya', '5', '8825748361', '8825701074', 's4727386@gmail.com', '2002-04-25', 21, '2', '2', 'Shanker', 'Car driver', 20000.00, 1, 20000.00, 20000.00, 'Delhi', 'Triplicane', '2310190030', '1', '2', 'upload_files/candidate_tracker/97851655068_Resume Sandhiya Call.docx', NULL, '1', '2023-10-20', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Home healthcare based profile not suitable for us will not sustain in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-19 07:21:35', 108, '2023-10-20 11:19:56', 0, NULL, 1),
(14902, 'Dhilipkumar V G', '31', '9790090179', '', 'txtdlip@gmail.com', '2001-06-13', 22, '2', '2', 'Ganesan', 'Driver', 20000.00, 1, 0.00, 17000.00, 'Perambalur', 'Velachery, Chennai', '2310190031', '1', '1', 'upload_files/candidate_tracker/95360856123_DHILIP KUMAR V G.pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-19 07:47:54', 85, '2023-10-20 05:14:06', 0, NULL, 1),
(14903, 'Prithiv S R', '13', '8870540391', '9789192130', 'Prithivsr180@gmail.com', '2002-07-16', 21, '3', '2', 'ram Kumar S K', 'Weaver', 10000.00, 1, 0.00, 3.00, 'Kumbakonam', 'Kodambakkam', '2310200001', '', '1', 'upload_files/candidate_tracker/1306743754_Prithiv.pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-20 09:42:35', 1, '2023-10-20 10:38:33', 0, NULL, 1),
(14904, 'Praveen Kumar M', '31', '6383547041', '', 'praveenkumarm24901@gmail.com', '2001-09-24', 22, '3', '2', 'Mahendran M', 'Farmer', 20000.00, 1, 0.00, 25000.00, 'Kanchipuram', 'Kanchipuram', '2310200002', '', '1', 'upload_files/candidate_tracker/62600388169_Internship Experience (1).pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-20 09:43:40', 108, '2023-10-20 06:33:47', 0, NULL, 1),
(14905, 'Vignesh H', '13', '9626685248', '7604992246', 'sathvikkanishk@gmail.com', '2001-08-20', 22, '3', '2', 'Vani hemanthrao', 'Administrative department (clerk)', 74000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2310200003', '', '1', 'upload_files/candidate_tracker/38658937337_Vignesh Hemanth Rao cv .pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-20 10:29:32', 108, '2023-10-20 06:26:46', 0, NULL, 1),
(14906, 'Nithesh kumar S', '13', '9150273546', '6380719429', 'kumarnithesh738@gmail.com', '2002-03-05', 21, '3', '2', 'Ktishnaveni', 'Nurse', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2310200004', '', '1', 'upload_files/candidate_tracker/18741711744_S NITHESHKUMAR RESUME.pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-20 10:29:51', 108, '2023-10-20 06:29:32', 0, NULL, 1),
(14907, 'Robin Issac', '13', '8939787045', '9841156255', 'Robinisaac002@gmail.con', '2002-06-18', 21, '3', '2', 'Issac', 'Tailor', 200000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2310200005', '', '1', 'upload_files/candidate_tracker/92849999651_Robinresume(B.W) (1).pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-20 10:35:30', 108, '2023-10-20 06:32:49', 0, NULL, 1),
(14908, 'jeethan.s', '33', '9176066698', '7397371182', 'jeethan163@gmail.com', '2002-09-16', 21, '2', '2', 'shanmugam', 'Fisherman', 40.00, 1, 0.00, 20000.00, 'Royapuram', 'Royapuram', '2310200006', '1', '1', 'upload_files/candidate_tracker/1397505741_resume_1692594465092.pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lookin for AR Analyst Role not suitable', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-20 10:44:24', 108, '2023-10-20 11:07:40', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14909, 'D. Agnes', '4', '8220692171', '9994985187', 'agnesdenzil13@gmail.com', '2001-04-13', 22, '2', '2', 'Denzil Francis', 'Electronic', 12000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2310200007', '1', '1', 'upload_files/candidate_tracker/18561263731_Agnes resume.pdf', NULL, '1', '2023-10-20', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '6', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-20 10:48:29', 108, '2023-10-21 03:09:11', 0, NULL, 1),
(14910, 'Manikandan C', '13', '8124512643', '9150980096', 'mani75.kaththi@gmail.com', '1999-05-07', 24, '2', '2', 'Chinnasamy.N', 'Chief', 20000.00, 1, 0.00, 18000.00, 'Maduravoyal', 'Maduravoyal', '2310200008', '1', '1', 'upload_files/candidate_tracker/11536528995_Manikandan C-(BCA)-2022 Web developer.pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-20 10:49:02', 85, '2023-10-20 05:12:40', 0, NULL, 1),
(14911, 'siva p', '31', '7539903548', '', 'phoenixsiva24@gmail.com', '2001-08-24', 22, '3', '2', 'palanivel', 'farmer', 10000.00, 2, 0.00, 20000.00, 'perambalur', 'Velachery, Chennai', '2310200009', '', '1', 'upload_files/candidate_tracker/14997652785_SIVA RESUME R.pdf', NULL, '1', '2023-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-20 11:04:29', 1, '2023-10-20 11:09:33', 0, NULL, 1),
(14912, 'Premjit Singh', '13', '9081127641', '7574003476', 'singhpremjit111@gmail.com', '2000-03-05', 23, '1', '2', 'Gupteshwar', 'Government Employee', 50000.00, 2, 0.00, 25000.00, 'Porbandar-Gujarat', 'Chennai', '2310200010', '', '1', 'upload_files/candidate_tracker/71044665633_PREMJITSINGH_2023RESUME_FINAL.pdf', NULL, '1', '2023-10-20', 0, 'NA', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Local Language Gujarati Need To Learn A Lot Fresher If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-20 11:31:05', 108, '2023-10-20 06:10:54', 0, NULL, 1),
(14913, 'V Sariga', '4', '7604967176', '', 'saisarigav2002@gmail.com', '2002-09-01', 21, '2', '2', 'V Sumathi', 'Tailor', 10000.00, 0, 0.00, 15000.00, 'Purasawalkam', 'Chennai', '2310200011', '21', '1', 'upload_files/candidate_tracker/3855865273_Sariga V. Resume.docx', NULL, '1', '2023-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left wothout attending', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-20 11:31:10', 1, '2023-10-20 11:34:44', 0, NULL, 1),
(14914, 'Giri', '4', '7695964557', '', 'Shg03076@gmail.com', '2000-06-19', 23, '2', '2', 'Purna bahadur', 'Car drive', 200000.00, 1, 20.00, 26.00, 'Thangavelu street t nagar Chennai 17', 'Valluvar kottam', '2310200012', '1', '2', 'upload_files/candidate_tracker/98796635826_Resume_Giri_Format1.pdf', NULL, '1', '2023-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2023-10-20 11:31:27', 1, '2023-10-20 12:16:45', 0, NULL, 1),
(14915, 'Pavanraj R', '13', '9500616430', '9994214246', 'rpavanraj2606@gmail.com', '2002-06-26', 21, '6', '2', 'D Rajendran', 'Retired superintendent in TNATC', 50000.00, 1, 0.00, 25000.00, 'Venugopal Strt Bethany aprt;Mogappair ; Chennai', 'Chennai', '2310200013', '', '1', 'upload_files/candidate_tracker/85823257959_Pavan resume.pdf', NULL, '1', '2023-10-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to come back with his confirmation on the TxxampC if he comes back let us try Final round with Gokul Done he is almost ok with the candidate', '2', '1', '', '1', '8', '', '2', '2023-10-30', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-20 11:33:38', 108, '2023-10-20 06:07:37', 0, NULL, 1),
(14916, 'Kishore P', '13', '9585489652', '6369977940', 'prabakarkishore12@gmail.com', '2002-02-12', 21, '1', '2', 'Prabakar', 'Self employee', 25000.00, 1, 0.00, 35000.00, 'Ponneri,Chennai', 'Kodambakkam,Chennai', '2310200014', '', '1', 'upload_files/candidate_tracker/79512897545_KISHORE PRABAKAR RESUME.pdf', NULL, '1', '2023-10-20', 0, 'NA', '3', '59', '2023-10-30', 120000.00, '', '', '1970-01-01', '1', 'Selected for Intern with TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-20 11:34:06', 108, '2023-10-20 06:05:30', 0, NULL, 1),
(14917, 'vignesh', '33', '8925261988', '8778104995', 'vignesh892526@gmail.com', '2002-08-04', 21, '2', '2', 'velmurugan', 'vegetables selling', 25000.00, 1, 0.00, 15000.00, 'alwar thiru nagar chennai', 'valasaravakkam', '2310200015', '1', '1', 'upload_files/candidate_tracker/32601431814_vignesh v resume.pdf', NULL, '1', '2023-10-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance will not sustain and not suitbale', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-20 11:58:14', 108, '2023-10-21 10:41:50', 0, NULL, 1),
(14918, 'Saranraj K', '14', '6379324426', '9791029233', 'Saranrajcr777@gmail.com', '1999-06-10', 24, '6', '2', 'Gnanavalli', 'Labour', 10000.00, 2, 0.00, 2.00, 'Thiruvannamalai', 'Chennai, light house.', '2310200016', '', '1', 'upload_files/candidate_tracker/43586494794_saranraj k.pdf', NULL, '1', '2026-02-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Aptitude not cleared', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2023-10-20 12:11:03', 159, '2026-02-19 04:10:21', 0, NULL, 1),
(14919, 'Rebakkal', '4', '6380281909', '7299421371', 'lidirebakka@gmail.com', '1998-05-30', 25, '2', '2', 'A.kalep', 'Tailor', 10000.00, 1, 15000.00, 19000.00, '97/87 butchammal street New WASHERMENPET', 'Chennai', '2310200017', '1', '2', 'upload_files/candidate_tracker/55460838685_Rebakka CV.pdf', NULL, '1', '2023-10-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left Without attending the 2nd level interview with Muthu', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-20 03:27:03', 85, '2023-10-24 06:49:05', 0, NULL, 1),
(14920, '', '0', '6379785263', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310200018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-20 04:11:36', 0, NULL, 0, NULL, 1),
(14921, 'Santhosh', '20', '8072697960', '9884761404', 'Santhoshrio1729@gmail.com', '2000-08-17', 23, '2', '2', 'Gomathi', 'Tailore', 25000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2310210001', '1', '1', 'upload_files/candidate_tracker/65572801964_santhosh resume oct.pdf', NULL, '1', '2023-10-21', 0, '', '3', '59', '2023-10-30', 195000.00, '', '5', '1970-01-01', '1', 'Selected for Muthu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-21 10:31:25', 60, '2023-10-30 10:19:46', 0, NULL, 1),
(14922, 'Harish S R', '6', '9361658615', '', 'harishmailson654@gmail.com', '2002-09-05', 21, '6', '2', 'Selvam T', 'Fornt Office Executive in CPS Company', 28000.00, 1, 0.00, 22000.00, 'Adyar', 'Adyar', '2310210002', '', '1', 'upload_files/candidate_tracker/79786668119_Resume202307311019.pdf', NULL, '1', '2023-10-21', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come for final round fresher can give a try for MIS need to check with Gokul', '5', '2', '0', '1', '8', '0', '2', '2023-10-24', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-21 10:57:56', 1, '2023-10-21 11:08:45', 0, NULL, 1),
(14923, 'ranjith', '23', '8870529178', '', 'ranjithsurya02@gmail.com', '1999-06-03', 24, '6', '2', 'selvaraj', 'farmer', 15000.00, 2, 0.00, 300000.00, 'karur', 'chennai', '2310210003', '', '1', 'upload_files/candidate_tracker/79845552353_ranjith_new.pdf', NULL, '1', '2023-10-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for TxxampC He needs time to confirm if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-21 10:59:39', 1, '2023-10-21 11:41:43', 0, NULL, 1),
(14924, 'Amudha .N', '4', '9344720824', '', 'amudha042000@gmail.com', '2008-10-21', 0, '2', '2', 'Munilakshmi, nagaraj', 'Farmer', 30000.00, 3, 0.00, 17000.00, 'Dharmapuri', 'Saidapet', '2310210004', '1', '1', 'upload_files/candidate_tracker/43571560479_Resume - Amudha 03-02-2022.pdf', NULL, '1', '2023-10-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sustainability need to open up alot will not sustain and not suitbale', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-21 11:29:53', 104, '2023-10-21 04:36:04', 0, NULL, 1),
(14925, 'Karthick B', '33', '7338773714', '', 'karthick.b162@outlook.com', '2002-06-01', 21, '6', '2', 'Baskaran', 'Driver', 40000.00, 2, 6500.00, 18000.00, 'West Tambaram', 'West Tambaram', '2310210005', '', '2', 'upload_files/candidate_tracker/74256234242_Karthick_20231021_122047_0000.pdf', NULL, '1', '2023-10-24', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-21 05:12:46', 1, '2023-10-21 05:19:49', 0, NULL, 1),
(14926, 'harikrishnan', '13', '6382317664', '', 'harikrishnan05062000@gmail.com', '2000-06-05', 23, '3', '2', 'murugan', 'shop keeper', 15000.00, 1, 0.00, 24000.00, 'kanchipuram', 'kanchipuram', '2310220001', '', '1', 'upload_files/candidate_tracker/5087484881_RESUME (5) (2) (9).pdf', NULL, '1', '2023-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-22 08:37:22', 1, '2023-10-22 08:43:16', 0, NULL, 1),
(14927, 'gokul kannan a', '13', '6385585453', '6383526403', 'gkgokul5453@gmail.com', '2000-06-23', 23, '3', '2', 'anbalagan m', 'ex-army', 30000.00, 1, 0.00, 300000.00, 'theni', 'coimbatore', '2310220002', '', '1', 'upload_files/candidate_tracker/2910373066_Gokul Kannan A(Resume)...pdf', NULL, '1', '2023-10-24', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Ok with TxxampC Shortlisted by Gokul yet to confirm the DOJ', '2', '1', '', '1', '8', '', '2', '2023-10-31', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-22 03:15:49', 104, '2023-10-24 11:48:18', 0, NULL, 1),
(14928, 'arunvel n', '33', '7395934921', '', 'arunnagaraj2002@gmai.com', '2002-02-02', 21, '2', '2', 'nagarajan', 'mfl worker', 25000.00, 0, 19660.00, 25558.00, 'chennai', 'ernavoor thiruvottiyur', '2310220003', '1', '2', 'upload_files/candidate_tracker/65167721929_Arunvel Nagarajan Resume (1).pdf', NULL, '3', '2023-10-28', 45, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Virtual should be arranged Need to check for accounts', '4', '1', '', '1', '8', '', '2', '2023-11-08', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-22 04:47:59', 108, '2023-10-28 09:42:21', 0, NULL, 1),
(14929, 'nishanthini p', '13', '6383526403', '6385585453', 'nishanthini.jaya@gmail.com', '2000-12-23', 22, '3', '2', 'jaya p', 'tailor', 10000.00, 1, 0.00, 300000.00, 'DINDIGUL', 'DINDIGUL', '2310220004', '', '1', 'upload_files/candidate_tracker/4095846132_Nishanthini P.docx', NULL, '1', '2023-10-24', 0, '', '3', '59', '2023-11-06', 120000.00, '', '', '1970-01-01', '2', 'Selected for IT intern Employment', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-22 10:09:06', 104, '2023-10-24 11:48:30', 0, NULL, 1),
(14930, 'Rajesh R', '33', '7358406630', '', 'rajeshrio18303@gmail.com', '2003-03-18', 20, '2', '2', 'punitha', 'house maker', 40000.00, 2, 0.00, 15000.00, 'thirumullaivoyal', 'thirumullaivoyal', '2310230001', '1', '1', 'upload_files/candidate_tracker/83565795689_RAJESH RESUME.pdf', NULL, '1', '2023-10-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-23 11:58:44', 108, '2023-10-26 10:41:30', 0, NULL, 1),
(14931, 'Rehana', '4', '9150245052', '', 'riganrehana50@gmail.com', '2001-01-01', 22, '2', '2', 'Kurshith', 'Security', 5000.00, 1, 13000.00, 18000.00, 'Choolai', 'Choolai', '2310230002', '1', '2', 'upload_files/candidate_tracker/10276932356_cv_17_1692948633021.pdf', NULL, '1', '2023-10-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles not open for target based will not sustain', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-23 08:39:03', 108, '2023-10-25 12:06:13', 0, NULL, 1),
(14932, 'Sanjay Kumar C', '14', '9008304327', '', 'sanjaykumarnsk111777@gmail.com', '2002-03-15', 21, '3', '2', 'Chandramohan SK', 'Business', 10000.00, 1, 0.00, 600000.00, 'Theni', 'Theni', '2310240001', '', '1', 'upload_files/candidate_tracker/48725086766_SANJAY_KUMAR_C_RESUME.pdf', NULL, '1', '2023-10-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Much Ok With The TxxampC  Will Not Sustain Fresher ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-24 10:19:10', 1, '2023-10-24 10:22:10', 0, NULL, 1),
(14933, 'Tamilselvan', '13', '6374155387', '7094515144', 'tamil12031999@gmail.com', '1999-03-12', 24, '6', '2', 'Narasimman', 'Farmer', 15000.00, 1, 0.00, 25000.00, 'Sholinghur Walajapet tk, Ranipet dt', 'Ramapuram, Chennai', '2310240002', '', '1', 'upload_files/candidate_tracker/99253290830_Tamilselvan Resume.docx', NULL, '3', '2023-10-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Much Ok With The TxxampC  Will Not Sustain Fresher ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-24 10:20:12', 1, '2023-10-24 10:27:07', 0, NULL, 1),
(14934, 'Subhashini C', '4', '9841890308', '9710216279', 'Subhapapa465@gmail.com', '2001-04-23', 22, '2', '2', 'C.Devi', 'Tailor', 10000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2310240003', '1', '2', 'upload_files/candidate_tracker/2654595761_SUBHASHINI RESUME.docx', NULL, '1', '2023-10-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left Without Attending The 2nd Level Interview With Muthu', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-24 10:51:53', 85, '2023-10-24 06:50:06', 0, NULL, 1),
(14935, 'Ranjith', '20', '9940690694', '', 'ranjithromeoy95@gmail.com', '2001-12-13', 21, '2', '2', 'Ravishankar', 'fisherman', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2310240004', '1', '1', 'upload_files/candidate_tracker/29734889007_Ranjith RESUME.docx', NULL, '1', '2023-10-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left Without Attending The 2nd Level Interview With Muthu', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-24 10:52:11', 85, '2023-10-24 06:50:30', 0, NULL, 1),
(14936, 'nandha kumar', '6', '7845404354', '', 'nandha8800kumar@gmail.com', '2001-12-11', 21, '1', '2', 'jayalakashmi', 'house keeping', 15000.00, 1, 15000.00, 16000.00, 'porur', 'porur', '2310240005', '', '2', 'upload_files/candidate_tracker/56252684983_Resume.pdf', NULL, '1', '2023-10-24', 0, '77802', '3', '59', '2023-10-26', 204000.00, '', '3', '2025-08-20', '1', 'Selected for Syed Team in Consultant Role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-24 11:15:57', 60, '2023-10-24 07:44:58', 0, NULL, 1),
(14937, 'Ashadevi.k', '16', '7200599033', '', 'ASHAMOORTHY03@GMAIL.COM', '2000-12-03', 22, '3', '2', 'Krishna moorthy', 'Worker', 20000.00, 1, 0.00, 15000.00, 'Retteri', 'Spencer plaza', '2310240006', '', '1', 'upload_files/candidate_tracker/93911561942_K Ashadevi.pdf', NULL, '1', '2023-10-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for non voice Process ', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-24 11:33:20', 1, '2023-10-24 12:00:58', 0, NULL, 1),
(14938, 'Shabudeen T', '31', '9360339491', '', 'shabudeenshabu1607@gmail.com', '2002-07-16', 21, '2', '2', 'Thamisdeen J', 'Salesman', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2310240007', '1', '1', 'upload_files/candidate_tracker/51671392924_Shabudeen_resume.pdf', NULL, '1', '2023-10-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-24 11:48:06', 85, '2023-10-25 05:23:55', 0, NULL, 1),
(14939, 'Subash Chandra Bose A', '13', '8220936771', '', 'boseagmrs@gmail.com', '2000-01-14', 23, '2', '2', 'Anandhan', 'Engineer', 40000.00, 2, 0.00, 200000.00, 'Dharmapuri', 'Chennai', '2310240008', '1', '1', 'upload_files/candidate_tracker/7110153921_Subash.pdf', NULL, '1', '2023-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-24 11:52:51', 85, '2023-10-26 03:02:42', 0, NULL, 1),
(14940, 'Susmita shakshi J', '4', '9003762492', '', 'susicivil2509@gmail.com', '1997-12-03', 25, '3', '1', 'Kavitha J', 'Agriculture', 20000.00, 1, 0.00, 15000.00, 'Panruti', 'Chennai', '2310240009', '', '1', 'upload_files/candidate_tracker/93034794308_finalsusmitharesume.pdf', NULL, '1', '2023-10-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable for our roles', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-24 12:26:47', 1, '2023-10-24 12:45:02', 0, NULL, 1),
(14941, 'Sujitha', '23', '9894184416', '9345289718', 'sujisujitha135@gmail.com', '1998-08-10', 25, '6', '2', 'George', 'Fisherman', 18000.00, 1, 0.00, 15000.00, 'Kanyakumari', 'Saidapet', '2310240010', '', '1', 'upload_files/candidate_tracker/82282317616_cut.pdf', NULL, '1', '2023-10-24', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', '5050 Profile have a atttitude need time to confirm by Gokul', '2', '1', '0', '1', '8', '0', '2', '2023-11-06', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-24 12:28:21', 1, '2023-10-24 12:31:50', 0, NULL, 1),
(14942, 'Naveen', '13', '9566213873', '', 'naveenm73002@gmail.com', '2002-11-07', 20, '6', '2', 'Muruganantham', 'No', 200000.00, 1, 0.00, 15000.00, '17a/50 sherfudeen St, choolaimedu, chenna 600094', '17a/50 Sherfudeen St, Choolaimedu, Chenna 600094', '2310240011', '', '1', 'upload_files/candidate_tracker/10676432256_naveen_resume (1).pdf', NULL, '1', '2023-10-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Much Ok With The TxxampC  Will Not Sustain Fresher ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-24 12:30:18', 1, '2023-10-24 12:41:21', 0, NULL, 1),
(14943, 'E. Sneha', '6', '8015031810', '7299336098', 'snehahaggith1@gmail.com', '2001-10-18', 22, '1', '2', 'Elumalai. S', 'Auto', 30000.00, 1, 0.00, 15000.00, 'No. 359 9th street sasthri nagar', 'Chennai', '2310240012', '', '1', 'upload_files/candidate_tracker/56610652548_CV_2023061220270422.pdf', NULL, '1', '2023-10-24', 0, 'P1349', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-24 02:36:52', 60, '2023-10-24 07:40:53', 0, NULL, 1),
(14944, 'Josephine. L', '20', '9342176214', '9176765997', 'clarajosephinejo3@gmail.com', '2002-06-11', 21, '2', '2', 'Loudhu raj', 'Medimix company', 180000.00, 1, 0.00, 12000.00, 'Madhavaram Chennai', 'Madhavaram Chennai', '2310240013', '1', '1', 'upload_files/candidate_tracker/6391039662_1666098853340_Teach_English_Volunteer_Certificate.pdf', NULL, '1', '2023-10-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for ourroles will not handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-24 03:01:45', 104, '2023-10-24 03:59:13', 0, NULL, 1),
(14945, 'Abinesh.v', '33', '6369090886', '', 'abineshvenkatesan12@gmail.com', '2001-07-12', 22, '2', '2', 'Venkatesan', 'Electrition', 20000.00, 1, 18000.00, 240000.00, 'No:5-6,11th Street,madipakkam ,chennai -91', 'No:5-6,11th St,Madipakkam ,Chennai -91', '2310240014', '1', '2', 'upload_files/candidate_tracker/26230077387_Abinesh V.pdf', NULL, '1', '2023-10-25', 30, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to schedule virtual Round for the accounts salary Exp is high', '4', '1', '', '1', '1', '', '2', '2023-11-15', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-24 07:41:05', 108, '2023-10-25 12:45:51', 0, NULL, 1),
(14946, 'bharath kuma', '2', '6379468232', '', 'bharath91505@gmail.com', '2001-08-29', 22, '3', '2', 'ramesh k', 'sculptor', 12000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2310250001', '', '1', 'upload_files/candidate_tracker/72995281335_Bharath-MERN-stack-Dev.pdf', NULL, '1', '2023-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-25 10:32:07', 1, '2023-10-25 10:37:39', 0, NULL, 1),
(14947, 'Karthick k.r', '2', '6374001173', '8754569799', 'kmass8754@gmail.com', '2003-07-15', 20, '6', '2', 'Rajendran.k', 'Driver', 10000.00, 1, 0.00, 2.70, 'Mamallapuram', 'Mamallapuram', '2310250002', '', '1', 'upload_files/candidate_tracker/83107974557_Karthick\'s MERN DEV.pdf', NULL, '1', '2023-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-25 10:32:11', 1, '2023-10-25 10:37:14', 0, NULL, 1),
(14948, 'Sathees Kumar S', '33', '7868070279', '', 'Sathees78680@gmail.com', '1993-10-23', 30, '3', '2', 'M. Selvaraj', 'Retired', 20000.00, 2, 18000.00, 20000.00, 'Padukkottai', 'Pallavaram Chennai', '2310250003', '', '2', 'upload_files/candidate_tracker/35103598009_Sathees Kumar S.pdf', NULL, '1', '2023-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-25 11:25:00', 1, '2023-10-25 11:31:20', 0, NULL, 1),
(14949, 'Jahankir Kabeer', '13', '9791629648', '', 'jahakabeer@gmail.com', '2003-02-28', 20, '6', '2', 'Varusai Ibrahim', 'Farmer', 10000.00, 2, 0.00, 300000.00, 'Ramanathapuram', 'Bajanai koil Street, Kodambaakam 600024', '2310250004', '', '1', 'upload_files/candidate_tracker/39712101456_Jahankir_kabeer_Resume.pdf', NULL, '1', '2023-10-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-25 12:03:10', 104, '2023-10-26 12:29:01', 0, NULL, 1),
(14950, 'V. K Sudharsan', '13', '9360822042', '', 'vksudharsann@gmail.com', '2002-05-10', 21, '6', '2', 'Krishna kumari V', 'Nil', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2310250005', '', '1', 'upload_files/candidate_tracker/70358690338_Resume updated 07-09-2023.docx', NULL, '1', '2023-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-25 12:37:47', 1, '2023-10-25 12:41:35', 0, NULL, 1),
(14951, 'Vijay s', '13', '8667410978', '9940384475', 'Vijayk8071@gmail.com', '2002-12-18', 20, '6', '2', 'D subramani', 'Building contractor', 14000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2310250006', '', '1', 'upload_files/candidate_tracker/89597905885_Vijay Resume-1.pdf', NULL, '1', '2023-10-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-25 02:23:17', 1, '2023-10-25 02:29:40', 0, NULL, 1),
(14952, 'SAVEETHA K', '22', '9444788244', '9941544333', 'saveethaselvi96@gmail.com', '1999-10-29', 23, '3', '2', 'Selvi', 'Buisness', 30000.00, 0, 0.00, 2500000.00, 'Chennai', 'Chennai', '2310250007', '', '1', 'upload_files/candidate_tracker/16458430775_DOC-20231002-WA0005..pdf', NULL, '1', '2023-10-25', 0, '', '3', '59', '2023-10-30', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Mutual Fund Role in Staff No Stat fnal round with Gokul and got selecetd', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '4', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-25 03:01:47', 60, '2023-10-28 06:31:38', 0, NULL, 1),
(14953, 'lithibabu', '14', '7871062739', '6369182185', 'lithibabu6@gmail.com', '1998-03-31', 25, '3', '2', 'parent', 'home maid', 20000.00, 2, 0.00, 15000.00, 'anna nagar', 'padi', '2310250008', '', '1', 'upload_files/candidate_tracker/95715000099_Fresher resume.pdf', NULL, '1', '2023-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-25 04:02:59', 1, '2023-10-25 04:10:04', 0, NULL, 1),
(14954, 'Vignesh', '33', '7904604492', '', 'vigneshvadivelan2003@gmail.com', '2003-07-26', 20, '2', '2', 'Vadivelan', 'Business', 200000.00, 1, 0.00, 15000.00, 'Anna Nagar', 'Anna Nagar', '2310250009', '1', '1', 'upload_files/candidate_tracker/53994697623_Vignesh V RESUME.docx', NULL, '1', '2023-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-25 05:20:44', 108, '2023-10-26 10:40:10', 0, NULL, 1),
(14955, 'Yuvaraj.M', '4', '9600105817', '', 'yuvarajm5817@gmail.com', '2002-10-11', 21, '3', '2', 'Murugan.R', 'Carpenter', 10000.00, 1, 0.00, 15000.00, 'Rajiv Gandhi street Anna nagar West nathamedu tnr', 'Rajiv Gandhi street Anna nagar West nathamedu tnr', '2310250010', '', '1', 'upload_files/candidate_tracker/37383333266_RESUME UPDATE.pdf', NULL, '1', '2023-10-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-25 05:48:09', 1, '2023-10-25 05:55:53', 0, NULL, 1),
(14956, 'Manikandan S', '16', '8428066328', '8667270512', 'manisush1996@gmail.com', '1996-01-23', 27, '2', '2', 'Subbaiah C', 'Labour in Hardware Shop', 58000.00, 1, 198000.00, 300000.00, 'Pozhichalur', 'Pozhichalur', '2310250011', '1', '2', 'upload_files/candidate_tracker/67653372567_Manikandan S Resume (IFormat).pdf', NULL, '1', '2023-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', ' too long Distance will not sustain in our roles pressure handling Doubts not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-25 06:51:56', 104, '2023-10-26 04:35:08', 0, NULL, 1),
(14957, '', '0', '9444169046', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310250012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-25 06:54:16', 0, NULL, 0, NULL, 1),
(14958, 'Sarankumar.A', '16', '9092710702', '7092079696', 'saran11147@gmail.com', '2000-04-10', 23, '2', '2', 'M.arumugam', 'Construction worker', 20000.00, 3, 13812.00, 18000.00, 'Villivakkam', 'Villivakkam', '2310250013', '1', '2', 'upload_files/candidate_tracker/66704581566_Saran Resume1.docx', NULL, '1', '2023-10-26', 0, '', '3', '59', '2023-10-30', 192000.00, '', '5', '1970-01-01', '2', 'Selected for MIS role Final Round Shortlisted by Gokul Candidate need to give his confirmation on Roles', '3', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-25 06:56:23', 60, '2023-10-28 06:29:30', 0, NULL, 1),
(14959, 'Ranjith Kumar', '16', '9080169711', '9176522337', 'ranjithram229@gmail.com', '1999-09-20', 24, '2', '2', 'SUGUMAR', 'Time keeper', 18000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2310250014', '1', '2', 'upload_files/candidate_tracker/6613280291_Ranjith Resume .....pdf', NULL, '1', '2023-10-26', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too lon Distance will not sustain in our roles not suitable ', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-25 06:58:59', 104, '2023-10-26 04:34:56', 0, NULL, 1),
(14960, 'Mercy Serena .V', '6', '7305401744', '', 'mercyserena20@gmail.com', '2003-05-20', 20, '2', '2', 'G.Victor', 'Sports Shop', 17000.00, 1, 0.00, 15000.00, 'Chintadripet', 'Chintadripet', '2310250015', '1', '1', 'upload_files/candidate_tracker/96494582358_mercy.pdf', NULL, '1', '2023-11-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not even opening the mouth will not sustain and not suitable for our roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-25 09:46:31', 108, '2023-11-23 07:21:04', 0, NULL, 1),
(14961, 'Sathish.S', '16', '8754355938', '9943069848', 'sathish.sadhru181996@gmail.com', '1996-01-18', 27, '3', '2', 'Sankar.N', 'neyveli lignite corporation employee', 25000.00, 2, 18900.00, 23000.00, 'Neyveli', 'Vallacherry', '2310250016', '', '2', 'upload_files/candidate_tracker/71154680748_Resume_05_10_2023_12_03_46_AM.pdf', NULL, '1', '2023-10-27', 40, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-25 09:52:08', 1, '2023-10-25 10:05:28', 0, NULL, 1),
(14962, 'silambarasan j', '13', '7397140305', '9444477682', 'asilambu53@gmail.com', '2000-08-25', 0, '6', '2', 'jeyakumar m', 'auto driver', 25000.00, 2, 0.00, 18000.00, 'iyappanthangal', 'iyappanthangal', '2310260001', '', '1', 'upload_files/candidate_tracker/84312505420_resume 25.pdf', NULL, '1', '2023-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-26 04:31:23', 85, '2023-10-26 10:19:00', 0, NULL, 1),
(14963, 'Priyadharshini', '13', '9025504034', '6383685401', 'pri.yah0512@gmail.com', '2002-12-05', 20, '6', '2', 'Mr.Murali', 'MTC', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2310260002', '', '1', 'upload_files/candidate_tracker/43377705359_priyaaresume.pdf', NULL, '1', '2023-10-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-26 04:54:29', 1, '2023-10-26 05:00:02', 0, NULL, 1),
(14964, 'pamila dorthy', '13', '6383685401', '9025504034', 'pamiladorthy11@gmail.con', '2002-08-11', 21, '6', '2', 'terence charles', 'field Executive', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2310260003', '', '1', 'upload_files/candidate_tracker/74969491183_Pamiladorthy resume23.pdf', NULL, '1', '2023-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-26 04:54:55', 108, '2023-10-27 07:17:28', 0, NULL, 1),
(14965, 'John Alex', '27', '8122657582', '9344201282', 'JohnAlexrajofficial@gmail.com', '1998-09-06', 25, '3', '2', 'Sagayaraj', 'Carpenter', 20000.00, 0, 144000.00, 150000.00, 'Chennai', 'Chennai', '2310260004', '', '2', 'upload_files/candidate_tracker/30868039774_John_Alex full stack dotnet dev (1).pdf', NULL, '1', '2023-10-26', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-26 04:58:39', 108, '2023-10-27 07:09:30', 0, NULL, 1),
(14966, 'ARAVIND A', '23', '7397508797', '', 'aravindmaddy7383@gmail.com', '2002-02-14', 21, '6', '2', 'ANBU N', 'Driver', 20000.00, 2, 0.00, 250000.00, 'Chennai', 'Redhills', '2310260005', '', '1', 'upload_files/candidate_tracker/7260502741_White Minimalist Business Consultant Resume_20231026_103950_0000.pdf', NULL, '1', '2023-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-26 05:47:35', 1, '2023-10-26 05:54:12', 0, NULL, 1),
(14967, 'HASWATH', '23', '9080619422', '', 'haswath66@gmail.com', '2002-06-06', 21, '6', '2', 'Raja Basha', 'Driver', 12000.00, 1, 0.00, 250000.00, 'CHENNAI', 'CHENNAI', '2310260006', '', '1', 'upload_files/candidate_tracker/54179053427_Haswath R-resume.pdf', NULL, '1', '2023-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-26 05:47:59', 1, '2023-10-26 05:54:50', 0, NULL, 1),
(14968, 'syed imth.s', '5', '7305662919', '9884324768', 'syedimthiyas0222@gmail.com', '2002-07-27', 21, '1', '2', 'syed sadullah .m', 'hr', 30000.00, 2, 0.00, 16000.00, 'mathur', 'mathur', '2310260007', '', '1', 'upload_files/candidate_tracker/37362815333_syed resume.docx', NULL, '3', '2023-10-26', 0, '-', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher not suitable for Roles will not sustain', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-26 05:53:33', 108, '2023-10-27 07:07:40', 0, NULL, 1),
(14969, 'Parameswari M', '13', '9003911062', '', 'parameswarim1013@gmail.com', '2003-06-10', 20, '6', '2', 'Mariappan s', 'Driver', 10000.00, 1, 0.00, 10000.00, 'Tirunelveli', 'Chennai', '2310260008', '', '1', 'upload_files/candidate_tracker/73622955422_parameswari_BCA_2023_Java.pdf', NULL, '1', '2023-10-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate need to confirm her joining', '2', '1', '', '1', '8', '', '2', '2023-11-06', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-26 06:05:29', 108, '2023-10-27 07:04:22', 0, NULL, 1),
(14970, '', '0', '9025881005', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 06:06:37', 0, NULL, 0, NULL, 1),
(14971, 'SURENDER.G', '5', '7358289478', '', 'surender302004@gmail.com', '2004-09-30', 19, '3', '2', 'M.Ganesh', 'auto driver', 20000.00, 3, 0.00, 18000.00, 'Chennai', 'Chennai', '2310260010', '', '1', 'upload_files/candidate_tracker/86364328069_surender g resume.docx.pdf', NULL, '1', '2023-10-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-26 06:06:54', 108, '2023-10-27 07:08:16', 0, NULL, 1),
(14972, 'Thanigainathan R', '13', '9003188369', '', 'Thanigainathancse@gmail.cpm', '1987-11-07', 35, '4', '2', 'Lakshmi devi', 'web developer', 20000.00, 0, 0.00, 35000.00, 'Chennai', 'Chennai', '2310260011', '', '2', 'upload_files/candidate_tracker/55486340368_Thanigainathan_resume.pdf', NULL, '1', '2023-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Mentally he is not stable not suitable will not sustain', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-26 06:11:59', 108, '2023-10-27 07:12:46', 0, NULL, 1),
(14973, 'emran f', '5', '6381069552', '9789858672', 'appuemran@gmail.con', '1995-09-01', 28, '2', '2', 'fazuludin e', 'retried staff', 23600.00, 1, 27485.00, 32000.00, 'mathur manali', 'mathur manali', '2310260012', '1', '2', 'upload_files/candidate_tracker/55768072646_Resume_RESUME .EMRAN F_Format1 2.pdf', NULL, '1', '2023-10-26', 45, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Over Confidence Communication Ok but wuill not sustain and handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-26 06:17:09', 108, '2023-10-26 01:16:38', 0, NULL, 1),
(14974, '', '0', '6383330698', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 06:19:12', 0, NULL, 0, NULL, 1),
(14975, 'Abilesh', '23', '7871250680', '9514724682', 'Abileshabilesh360@gmail.com', '2002-02-10', 21, '6', '2', 'Anok', 'Contract work', 13000.00, 2, 0.00, 400000.00, 'Chennai', 'Chennai', '2310260014', '', '1', 'upload_files/candidate_tracker/67628460298_Adobe Scan Sep 22, 2023.pdf', NULL, '1', '2023-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-26 06:38:39', 1, '2023-10-26 06:44:41', 0, NULL, 1),
(14976, 'madhan kumar', '31', '9962334721', '', 'dsmadhankumar007@gmail.com', '2003-06-03', 20, '3', '2', 'vhatchinamoorthy', 'late', 8000.00, 1, 0.00, 14000.00, 'thiruvanamalai', 'Chennai', '2310260015', '', '1', 'upload_files/candidate_tracker/5897128615_D Madhan kumar B.sc computer science.pdf', NULL, '1', '2023-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-26 06:43:16', 1, '2023-10-26 06:49:33', 0, NULL, 1),
(14977, 'Mukesh M', '33', '6374116318', '', 'mukesh690876@gmail.com', '2001-02-01', 22, '6', '2', 'Muniyan K', 'Garments', 10000.00, 1, 0.00, 15000.00, 'No:39/36,Krishnappa Street, West Mambalam, Chennai', 'No:97, Krishnappa Street, west mambalam, Chennai', '2310260016', '', '1', 'upload_files/candidate_tracker/56051516191_Mukesh(Resume) .pdf', NULL, '1', '2023-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-26 06:59:49', 108, '2023-10-27 07:12:20', 0, NULL, 1),
(14978, '', '0', '7339671282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 07:02:57', 0, NULL, 0, NULL, 1),
(14979, '', '0', '7845374358', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 07:44:56', 0, NULL, 0, NULL, 1),
(14980, '', '0', '7339671282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 07:47:24', 0, NULL, 0, NULL, 1),
(14981, 'Yogeshwaran', '2', '8667868665', '', 'rjyogeshwaran@gmail.com', '2000-08-08', 23, '6', '2', 'Rathinam', 'Business', 50000.00, 1, 0.00, 10000.00, 'Madurai', 'Thuraipakkam, Chennai', '2310260020', '', '1', 'upload_files/candidate_tracker/29865241034_Resume.pdf', NULL, '1', '2023-10-26', 0, '', '3', '59', '2023-12-22', 120000.00, '', '5', '1970-01-01', '1', 'Selected for IT Team 3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-26 08:25:01', 60, '2023-12-22 05:52:51', 0, NULL, 1),
(14982, '', '0', '8667868665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 08:29:12', 0, NULL, 0, NULL, 1),
(14983, '', '0', '8667868665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 08:32:40', 0, NULL, 0, NULL, 1),
(14984, '', '0', '8667868665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 08:38:28', 0, NULL, 0, NULL, 1),
(14985, '', '0', '8667868665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 08:42:55', 0, NULL, 0, NULL, 1),
(14986, '', '0', '8667868665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 08:47:05', 0, NULL, 0, NULL, 1),
(14987, '', '0', '8667868665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 08:47:54', 0, NULL, 0, NULL, 1),
(14988, '', '0', '7845374358', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 08:54:34', 0, NULL, 0, NULL, 1),
(14989, '', '0', '8667868665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 09:00:10', 0, NULL, 0, NULL, 1),
(14990, '', '0', '8667868665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 09:03:45', 0, NULL, 0, NULL, 1),
(14991, '', '0', '8667868665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 09:19:02', 0, NULL, 0, NULL, 1),
(14992, '', '0', '6374116318', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 09:20:05', 0, NULL, 0, NULL, 1),
(14993, 'Naveen', '13', '9962491338', '7010481068', 'naveenrahul17@gmail.com', '1998-10-19', 25, '3', '2', 'Latha', 'Bank job', 40000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2310260032', '', '1', 'upload_files/candidate_tracker/76584851314_RESUME NAVEEN 23.docx', NULL, '1', '2023-10-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-26 09:39:35', 1, '2023-10-26 10:14:07', 0, NULL, 1),
(14994, 'Toney fransz', '5', '7010204911', '9789076110', 'toneybensam2793@gmail.com', '1995-02-25', 0, '2', '1', 'Bensam.c', 'Site engineer', 37000.00, 1, 29000.00, 37000.00, 'Royapuram chennai 13', 'Tondiarpet Chennai 81', '2310260033', '1', '2', 'upload_files/candidate_tracker/68506205957_Toney+fransz+sep+2023.docx', NULL, '1', '2023-10-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-26 12:58:25', 108, '2023-10-27 06:20:48', 0, NULL, 1),
(14995, 'Sachin Srinivasan', '33', '9080825142', '', 'sachinnsrinivasan27@gmail.com', '1998-12-27', 24, '6', '2', 'G V Somasumdaram', 'Car insurance agent/Light musician', 35000.00, 1, 10000.00, 25000.00, 'Chennai', 'Chennai', '2310260034', '', '2', 'upload_files/candidate_tracker/19148081462_Sachin_Srinivasan_Resume_04-08-2023-15-10-13.pdf', NULL, '1', '2023-10-27', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-26 01:00:45', 1, '2023-10-26 01:03:32', 0, NULL, 1),
(14996, '', '0', '7010204911', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310260035', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-26 01:12:54', 0, NULL, 0, NULL, 1),
(14997, 'V KARTHIKEYAN', '33', '9940109886', '', 'karthikeyanv819@gmail.com', '2002-03-11', 21, '3', '2', 'R.venkatesan', 'Typist', 16000.00, 1, 19000.00, 22000.00, 'No.47/120 Labour Colony, Guindy, Chennai-32.', 'No.47/120 Labour Colony, Guindy, Chennai-32.', '2310260036', '', '2', 'upload_files/candidate_tracker/75501770382_V.KARTHIKEYAN RESUME.pdf', NULL, '1', '2023-10-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-26 01:41:22', 1, '2023-10-26 01:50:35', 0, NULL, 1),
(14998, '', '', '', '', '', '1970-01-01', 0, '', '', '', '', 0.00, 0, 0.00, 0.00, '', '', '', '', '', '', NULL, '', '1970-01-01', 0, '', '6', '0', NULL, 0.00, '', '3', '2024-07-30', '', NULL, '', '2', '0', '', '', '0', '1', NULL, '', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-26 01:52:11', 1, '2023-10-26 01:52:14', 0, NULL, 1),
(14999, 'Aravindhan', '5', '8056665468', '', 'aravianbu744@gmail.com', '1999-02-02', 24, '2', '2', 'Lakshmi', 'N/A', 40000.00, 1, 24000.00, 29000.00, 'Chennai', 'Chennai', '2310260037', '1', '2', 'upload_files/candidate_tracker/98040866479_AD.pdf', NULL, '1', '2023-10-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-26 02:01:59', 108, '2023-10-27 06:21:12', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15000, 'M. Akash kumar', '33', '8248394189', '', 'akashbhuvan1998@gmail.com', '1998-09-22', 25, '3', '2', 'M. Porkodi', 'Home maker', 2000.00, 0, 0.00, 18000.00, '5a Arumugam St, sellankuppam, Cuddalore', '3/422 vendrasiamman Kovil st, karapakkam, chennai', '2310260038', '', '1', 'upload_files/candidate_tracker/70518793752_Akash 2023 New Resume.pdf', NULL, '1', '2023-10-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-26 02:23:47', 1, '2023-10-26 02:46:27', 0, NULL, 1),
(15001, 'Deena', '16', '9176725454', '', 'deenasmart2002@gmail.com', '2002-07-19', 21, '2', '2', 'Ravi Chandran', 'Machine Mechanic', 980000.00, 1, 0.00, 1.50, 'Washermenpet', 'Washermenpet', '2310260039', '1', '1', 'upload_files/candidate_tracker/43672077591_Grey Clean CV Resume Photo_20231026_084333_0000 (1).pdf', NULL, '1', '2023-10-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-26 03:24:55', 104, '2023-10-28 06:11:15', 0, NULL, 1),
(15002, 'Rahul B', '13', '6382868617', '', 'rahulbala286@gmail.com', '2002-09-09', 21, '2', '2', 'G.Bala Krishnan', 'electrician', 25000.00, 1, 0.00, 300000.00, 'Kallakurichi', 'Saidapet, Chennai', '2310270001', '1', '1', 'upload_files/candidate_tracker/43828584604_B.Rahul_Resume.pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-27 11:13:04', 85, '2023-10-28 10:11:23', 0, NULL, 1),
(15003, 'VIGNESH', '33', '9840443547', '', 'vignesh.s19122002@gmail.com', '2002-12-19', 20, '2', '2', 'Sathish Kumar', 'cooly', 13000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2310270002', '1', '1', 'upload_files/candidate_tracker/8246994442_vicky resume.pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-27 11:48:12', 108, '2023-10-27 06:51:01', 0, NULL, 1),
(15004, 'RITHIK RAJAN B', '33', '9444409094', '8778847833', 'rithikrajan48@gmail.com', '2002-12-01', 20, '2', '2', 'R.Bakiyarajan', 'Business', 12000.00, 1, 0.00, 20000.00, 'Royapuram , Chennai', 'Royapuram, Chennai', '2310270003', '1', '1', 'upload_files/candidate_tracker/20839428778_RITHIK RESUME.pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-27 11:51:29', 108, '2023-10-28 10:04:58', 0, NULL, 1),
(15005, 'Karthi k', '33', '7871552709', '', 'karthikjordan60@gmail.com', '1998-09-13', 25, '2', '2', 'Kuppusamy', 'Salesman', 300000.00, 1, 216000.00, 316000.00, 'Chennai', 'Chennai', '2310270004', '1', '2', 'upload_files/candidate_tracker/69895719331_Karthik CV (1).pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-27 12:17:30', 108, '2023-10-27 06:51:28', 0, NULL, 1),
(15006, '', '0', '9361312529', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310270005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-27 01:02:56', 0, NULL, 0, NULL, 1),
(15007, 'S KALEEMUDDIN', '5', '6374558808', '', 'kaleemyas2015@gmail.com', '1997-02-20', 26, '3', '2', 'S SHAMSHUDDIN', 'Sales Marketing', 30000.00, 1, 19000.00, 26000.00, 'Old Washermenpet', 'Old Washermenpet', '2310270006', '', '2', 'upload_files/candidate_tracker/29195796247_null.pdf', NULL, '1', '2023-10-28', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile have exp but need to check for roles kindly check ans let us know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-27 01:12:21', 108, '2023-10-28 03:50:35', 0, NULL, 1),
(15008, '', '0', '9384268064', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310270007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-27 01:23:58', 0, NULL, 0, NULL, 1),
(15009, '', '0', '6382417155', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310270008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-27 01:36:39', 0, NULL, 0, NULL, 1),
(15010, 'Thulasi raman. S', '4', '7806988801', '9442317807', 'thulasistr4693@gmail.com', '1998-10-22', 25, '2', '2', 'Subramanian', 'Supervisor', 25000.00, 1, 18000.00, 15000.00, '602, thiruvalluvar nagar, 4th Street', '602, thiruvalluvar nagar,4th Street , Thanjavur', '2310270009', '1', '2', 'upload_files/candidate_tracker/85584613900_DOC-20230929-WA0006 2.pdf', NULL, '1', '2023-10-28', 5, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-27 04:33:52', 108, '2023-10-28 03:51:35', 0, NULL, 1),
(15011, 'parvathi priya', '5', '8838940839', '', 'hapriya2020@gmail.com', '1993-01-03', 30, '2', '1', 'harikrishnan', 'driver', 21000.00, 1, 20000.00, 23000.00, 'chennai', 'chennai', '2310270010', '1', '2', 'upload_files/candidate_tracker/37482919743_PRIYA CV.pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not sustain in our roles not suitable pressure handling doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-27 08:55:57', 108, '2023-10-28 11:03:09', 0, NULL, 1),
(15012, 'Surendran R', '13', '7338758001', '', 'Surendranvinoth12@gmail.com', '2000-12-07', 22, '6', '2', 'Raju', 'Electrition', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2310280001', '', '1', 'upload_files/candidate_tracker/28906574057_Surendran_resume.pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-28 04:38:39', 108, '2023-10-28 03:47:09', 0, NULL, 1),
(15013, 'Thenmozhi M', '13', '9080757517', '', 'thenmozhi273@gmail.com', '1997-04-20', 26, '2', '1', 'Vinothkumar N', 'Admin', 30000.00, 1, 0.00, 20000.00, 'Chennai,madipaakam', 'Chennai,madipaakam', '2310280002', '1', '1', 'upload_files/candidate_tracker/49558581214_Thenmozhi v resume.pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-28 04:40:20', 85, '2023-10-28 10:49:36', 0, NULL, 1),
(15014, 'RAHUL', '33', '8637477756', '9940760992', 'rahulkeys16@gmail.com', '2000-05-16', 23, '2', '2', 'SACHITHANANDAM', 'PWD', 50000.00, 1, 0.00, 15000.00, 'Sevvapet', 'Sevvapet', '2310280003', '1', '1', 'upload_files/candidate_tracker/72669331551_Raghul Resume.pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-28 04:54:54', 108, '2023-10-28 03:43:41', 0, NULL, 1),
(15015, 'Dravid', '33', '9361396709', '9941616955', 'dravid9820@gmail.com', '2002-08-09', 21, '2', '2', 'Venkadesan', 'coolie', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2310280004', '1', '1', 'upload_files/candidate_tracker/42513170929_CV_2023091308185868.pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-28 04:57:42', 108, '2023-10-28 03:41:22', 0, NULL, 1),
(15016, 'Akilan B', '33', '9345656244', '', 'akilanb050@gmail.com', '2002-05-10', 21, '2', '2', 'Balasubramaniam', 'Private', 15000.00, 1, 0.00, 15000.00, 'Tondiarpet', 'Tondiarpet', '2310280005', '1', '1', 'upload_files/candidate_tracker/40888873799_Resume of Akilan.pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-28 05:08:33', 108, '2023-10-28 10:51:33', 0, NULL, 1),
(15017, '', '0', '8778735342', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310280006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-28 05:41:49', 0, NULL, 0, NULL, 1),
(15018, 'akash', '31', '9344055637', '9962370947', 'akashnive27@gmail.com', '2001-07-30', 22, '6', '1', 'babu', 'react developer', 20000.00, 2, 0.00, 3.00, 'annamalai nagar', 'minjur', '2310280007', '', '1', 'upload_files/candidate_tracker/34534161985_AKASH RESUME.pdf', NULL, '1', '2023-10-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-28 06:00:47', 1, '2023-10-28 06:05:15', 0, NULL, 1),
(15019, 'Kasirajan', '2', '8778635342', '9514088757', 'thiru.kasi.live.in@gmail.com', '1997-10-21', 26, '2', '2', 'Thirupathi', 'Business', 400000.00, 2, 250000.00, 400000.00, 'Madurai', 'Valachery', '2310280008', '1', '2', 'upload_files/candidate_tracker/33910545886_KASIRAJAN T 2023 Aug.docx (5).pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-28 06:08:30', 85, '2023-10-28 01:08:40', 0, NULL, 1),
(15020, 'Iswarya', '13', '6385686667', '9894923042', 'iswaryavk99@gmail.com', '1999-05-17', 24, '6', '2', 'Kannadasan v', 'Farmer', 60000.00, 1, 0.00, 12000.00, 'Thiruvarur', 'Thiruvarur', '2310280009', '', '1', 'upload_files/candidate_tracker/80121808588_iswarya k(new cv).pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-28 06:19:53', 108, '2023-10-28 03:37:43', 0, NULL, 1),
(15021, 'Agilaveni', '13', '9894923042', '6385686667', 'ashaagila@gmail.com', '2000-03-20', 23, '6', '2', 'Saminathan', 'Farmer', 80000.00, 3, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2310280010', '', '1', 'upload_files/candidate_tracker/71529999376_AGILAVENI_Resume.pdf', NULL, '1', '2023-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-28 06:28:03', 108, '2023-10-28 03:37:36', 0, NULL, 1),
(15022, 'Prarthana', '5', '9654813342', '8433152240', 'prarthanabutolia7057@gmail.com', '2008-10-28', 0, '2', '1', 'Ankit Singh Ratho', 'Working in Bank', 60000.00, 3, 25000.00, 32000.00, 'Delhi', 'BTM 1st stage, 2nd cross, Bangalore', '2310280011', '1', '2', 'upload_files/candidate_tracker/34912810755_Prarthana_CV (1).pdf', NULL, '1', '2023-10-28', 0, '', '1', '30', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', NULL, NULL, NULL, 1, '2023-10-28 06:30:38', 1, '2023-10-28 06:38:03', 0, NULL, 1),
(15023, 'Suresh', '33', '9677237189', '7904468357', 'Sureshbala825@gmail.com', '2000-09-17', 23, '2', '2', 'Moorthy', 'School Bus Driver', 15000.00, 1, 20000.00, 25000.00, '44/13 Arani Rangan Street Old Washermen pet', '44/13 Arani Rangan Street Old Washermen Pet', '2310280012', '1', '2', 'upload_files/candidate_tracker/35436803310_suresh(3).pdf', NULL, '1', '2023-10-30', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-28 11:48:46', 108, '2023-10-30 12:11:23', 0, NULL, 1),
(15024, 'Ravirajan', '33', '8825833867', '', 'ravirajanpalani02@gmail.com', '2000-07-04', 23, '2', '2', 'Palani', 'Carpenter', 50000.00, 1, 20000.00, 25000.00, 'Ravirajan annamalai nagar indra nagar kanchipuram', 'Kanchipuram', '2310280013', '1', '2', 'upload_files/candidate_tracker/63844472617_ravirajan resmue.pdf', NULL, '1', '2023-10-30', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to check for Virtual Accounts Profile', '4', '1', '', '1', '8', '', '2', '2023-11-08', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-28 12:19:27', 108, '2023-10-30 06:26:08', 0, NULL, 1),
(15025, 'Bharath waj .K.R', '21', '9345483738', '', 'bharathbadri1515@gmail.com', '2002-09-15', 21, '2', '2', 'K.R.Ramesh', 'Self employee', 120000.00, 1, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2310280014', '1', '1', 'upload_files/candidate_tracker/23340150460_White Clean Minimalist Business Real Estate Resume_20231004_190341_0000 (2).pdf', NULL, '1', '2023-10-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-28 12:30:00', 104, '2023-10-28 06:10:57', 0, NULL, 1),
(15026, '', '0', '7401241601', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310280015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-28 12:34:12', 0, NULL, 0, NULL, 1),
(15027, 'SELVAVINAYAGAMOORTHI', '33', '9344032584', '', 'Selvamoorthi443@gmail.com', '2003-06-30', 20, '2', '2', 'Chellappan', 'Former', 10000.00, 2, 0.00, 16000.00, 'Kallakurichi', 'Thambaram', '2310280016', '1', '1', 'upload_files/candidate_tracker/30096875787_resume updated october 2023.pdf', NULL, '1', '2023-10-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Appeared for Accounts Profile Not Much quality on the profile will not sustain and handle the pressure', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-28 01:36:50', 108, '2023-10-30 06:33:44', 0, NULL, 1),
(15028, 'Thinesh Kumar .s', '33', '8939783591', '', 'thineshkumar1810@gmail.com', '2001-10-18', 22, '6', '2', 'Subendiren s', 'Provision store', 35000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2310280017', '', '1', 'upload_files/candidate_tracker/58433193815_My Resume .pdf', NULL, '1', '2023-10-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-28 03:59:40', 1, '2023-10-28 04:02:20', 0, NULL, 1),
(15029, 'Ganeshkumar R', '33', '8883837032', '9095368053', 'rganeshkumar135@gmail.com', '1996-06-10', 27, '2', '2', 'S.Ravichandran', 'Farmer', 20000.00, 1, 252000.00, 327600.00, 'Andipatti,Theni District', 'Mugalivakkam', '2310280018', '1', '2', 'upload_files/candidate_tracker/87153795903_Ganeshkumar R CV.pdf', NULL, '1', '2023-10-31', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-28 05:34:06', 108, '2023-10-31 05:27:25', 0, NULL, 1),
(15030, 'Hakkani Mohamed', '33', '9789962243', '9994282685', 'hakkanimadhin@gmail.com', '1999-06-11', 24, '3', '2', 'No', 'Nil', 72000.00, 2, 0.00, 3.00, '18/106, Muslim Street Thogaimalai,karur', 'Nandhanam', '2310290001', '', '1', 'upload_files/candidate_tracker/48663008215_Resume-1.pdf', NULL, '1', '2023-10-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-29 07:05:36', 1, '2023-10-29 07:12:57', 0, NULL, 1),
(15031, 'Siddharth M', '31', '9840397106', '', 'Siddharth243.sm@gmail.com', '1988-11-01', 34, '6', '2', 'Kanmani Mahadevan(Parent)', 'Teacher', 50000.00, 0, 17000.00, 25000.00, 'Chennai', 'Chennai', '2310290002', '', '2', 'upload_files/candidate_tracker/59861427249_SIDDHARTH. M RESUME-4.pdf', NULL, '1', '2023-10-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-29 09:25:31', 108, '2023-10-30 06:30:23', 0, NULL, 1),
(15032, 'Akash a', '16', '6382203668', '', 'akashjhon333@gmail.com', '2000-05-25', 23, '3', '2', 'Adam', 'Mis executive', 14000.00, 1, 14000.00, 25000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2310290003', '', '2', 'upload_files/candidate_tracker/11151345834_11.pdf', NULL, '1', '2023-10-30', 30, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to confirm the DOj for MIS Final Roudn with Gokul if he comes abck let us try', '3', '1', '', '1', '8', '', '2', '2023-11-07', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-29 04:46:09', 108, '2023-10-30 06:29:46', 0, NULL, 1),
(15033, 'syed javith', '16', '9094986075', '', 'jatuf5@gmail.com', '1997-06-07', 26, '6', '2', 'syed kareem', 'tailor', 30000.00, 1, 21000.00, 25000.00, 'nayaniyappan garden second street oldwashermenpet', 'Nayaniyappan Garden Second Street Oldwashermenpet', '2310300001', '', '2', 'upload_files/candidate_tracker/36285080689_Syed-Resume.pdf', NULL, '1', '2023-10-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-30 04:10:44', 1, '2023-10-30 04:17:22', 0, NULL, 1),
(15034, 'Devipriya M', '13', '8015555738', '', 'devipriyamohanraj01@gmail.com', '2001-07-29', 22, '2', '2', 'Mohanraj', 'Auto Driver', 9000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2310300002', '1', '1', 'upload_files/candidate_tracker/25342410836_DEVIPRIYA M RESUME (1).pdf', NULL, '1', '2023-10-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-30 04:47:55', 85, '2023-10-30 10:44:47', 0, NULL, 1),
(15035, 'Jeyaseelan R', '13', '9698893001', '', 'jeyaseelan.work@gmail.com', '1998-10-03', 25, '6', '2', 'Rajendran G', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Sriperumbator', '2310300003', '', '1', 'upload_files/candidate_tracker/28589570878_Jeyaseelan_2023-10-29-104551 (2).pdf', NULL, '1', '2023-10-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-30 04:57:16', 108, '2023-10-30 06:31:14', 0, NULL, 1),
(15036, 'KISHORE', '13', '6369691652', '9994468750', 'kishore.2001.27@gmail.com', '2001-04-27', 22, '6', '2', 'Velmurugan', 'Cycle shop', 20000.00, 1, 0.00, 15000.00, 'VELLORE', 'VELLORE', '2310300004', '', '1', 'upload_files/candidate_tracker/47762289620_Resume.pdf', NULL, '1', '2023-10-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-30 05:39:53', 108, '2023-10-30 06:28:10', 0, NULL, 1),
(15037, 'Prabu M', '13', '9965918012', '6383502554', 'prabumuniyappan2000@gmail.com', '2000-02-23', 23, '6', '2', 'Muniyappan', 'Farmar', 15000.00, 2, 0.00, 300000.00, 'Arni Tiruvannamalai', 'Padi Chennai', '2310300005', '', '1', 'upload_files/candidate_tracker/30394743225_Prabu M_BE_CSE_2021_SOFT DEVELOPER-1.pdf', NULL, '1', '2023-10-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-30 06:16:19', 1, '2023-10-30 06:21:43', 0, NULL, 1),
(15038, 'Kalidass', '13', '9791875104', '', 'kalidassr280@gmail.com', '2003-05-21', 20, '6', '2', 'Ravi', 'Tailor', 30000.00, 1, 0.00, 350000.00, 'Ramanathapuram', 'Chennai', '2310300006', '', '1', 'upload_files/candidate_tracker/99041337869_kalidass_resume.pdf', NULL, '1', '2023-10-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-30 06:36:40', 108, '2023-10-30 06:34:16', 0, NULL, 1),
(15039, '', '0', '6379318742', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310300007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-30 06:45:29', 0, NULL, 0, NULL, 1),
(15040, '', '0', '6374689548', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310300008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-30 06:59:09', 0, NULL, 0, NULL, 1),
(15041, 'santhosh r', '7', '7904506646', '', 'santhosh98.19999@gmail.com', '1999-08-09', 24, '2', '2', 'c rajan', 'business', 50000.00, 1, 0.00, 420000.00, 'chennai', 'chennai', '2310300009', '1', '1', 'upload_files/candidate_tracker/65422703255_Santhosh R- new v1.pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles will not sustain in our profile ', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-30 07:00:55', 85, '2023-10-31 05:55:30', 0, NULL, 1),
(15042, 'Pavan kumar s', '13', '9080614429', '', 'pavankumar.s099@gmail.com', '2002-07-15', 21, '6', '2', 'MAHESWARA RAO s', 'Private employee', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Thiruvanmiyur', '2310300010', '', '1', 'upload_files/candidate_tracker/18540877907_pavan kumar resume.pdf', NULL, '1', '2023-10-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-30 11:18:33', 1, '2023-10-30 11:21:25', 0, NULL, 1),
(15043, 'Ajitha varnika.k', '5', '8190907473', '7550267010', 'ajithavarnika@gmail.com', '2000-11-23', 23, '3', '2', 'Kesavan', 'Executive chef', 35000.00, 1, 17000.00, 20000.00, '19&20 Govindan Street B&C Mill Quarters perambur', '19&20 Govindan Street B&C Mill Quarters perambur', '2310300011', '', '2', 'upload_files/candidate_tracker/56313102202_Aj.pdf', NULL, '1', '2024-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-30 11:56:16', 1, '2024-08-30 12:52:44', 0, NULL, 1),
(15044, 'jaisurya', '5', '7010399764', '', 'jaisurya05071998@gmail.com', '1998-07-05', 25, '2', '2', 'parent', 'real-estate', 20000.00, 1, 0.00, 17000.00, 'Pudukkottai', 'guindy', '2310300012', '1', '1', 'upload_files/candidate_tracker/49931854127_JAISURYA_2021_RESUME[1].pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Much focusin non voice process Will not run in a long', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-10-30 01:16:15', 108, '2023-10-31 10:09:34', 0, NULL, 1),
(15045, 'Palliboina Pavitra', '13', '9952007977', '9043064644', 'pavitrapalliboina23@gmail.com', '2000-04-24', 23, '6', '1', 'Venkatesh', 'Cab driver', 15000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2310300013', '', '1', 'upload_files/candidate_tracker/6387680870_Palliboina Pavitra.pdf', NULL, '1', '2023-11-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-30 04:28:52', 1, '2023-10-30 04:33:16', 0, NULL, 1),
(15046, '', '0', '6380379410', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2310310001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-10-31 02:57:58', 0, NULL, 0, NULL, 1),
(15047, 'Deepa Thirumalaikumar', '13', '6369537260', '', 'deept2107@gmail.com', '2000-07-21', 23, '6', '2', 'M.Thirumalaikumar', 'Mechanic', 12000.00, 1, 0.00, 10000.00, 'Tenkasi', 'Chennai', '2310310002', '', '1', 'upload_files/candidate_tracker/30094217487_DeepaThirumalaikumar.pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 04:58:48', 1, '2023-10-31 05:02:11', 0, NULL, 1),
(15048, 'Anusiya', '26', '8524826049', '', 'anusiyasuthakar19@gmail.com', '2008-10-31', 0, '2', '2', 'Akila', 'House wife', 20000.00, 1, 0.00, 15000.00, 'Perambalur', 'Teynampet', '2310310003', '21', '2', 'upload_files/candidate_tracker/12706292607_Resume.pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice process only not suitable for our other roles too', '7', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 05:01:43', 1, '2023-10-31 05:11:45', 0, NULL, 1),
(15049, 'Mukesh S', '13', '6380379418', '', 'mukeshselvam0820@gmail.com', '2001-08-20', 22, '2', '2', 'S.Krishnaveni', 'House maid', 10000.00, 1, 0.00, 150000.00, 'Chennai', 'Chennai', '2310310004', '1', '1', 'upload_files/candidate_tracker/14403776473_Resume.pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-31 05:25:41', 85, '2023-10-31 11:26:09', 0, NULL, 1),
(15050, 'Karthikeyan', '13', '9943857307', '', 'karthikeyan162001@gmail.com', '2001-06-01', 22, '2', '2', 'Anbumurugan', 'Private Employee', 180000.00, 2, 0.00, 200000.00, 'Uthiramerur', 'Uthiramerur', '2310310005', '1', '1', 'upload_files/candidate_tracker/60603454255_Karthikeyan_Resume.pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-10-31 05:28:39', 85, '2023-10-31 11:27:44', 0, NULL, 1),
(15051, 'Daniel Raj i', '13', '7339073125', '', 'danielraj.i2020@gmail.com', '2000-09-30', 23, '6', '2', 'S.irudhayanathan', 'Daily worker', 12000.00, 2, 0.00, 200000.00, 'Maduranthagam', 'Maduranthagam', '2310310006', '', '1', 'upload_files/candidate_tracker/30014887339_Danielraj resume1.pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 05:32:01', 1, '2023-10-31 05:38:56', 0, NULL, 1),
(15052, 'Chandru.S', '13', '9150617849', '', 'sivem151419@gmail.com', '2001-09-03', 22, '3', '2', 'Sankar', 'Farmer', 75000.00, 1, 0.00, 200000.00, 'Chengalpatu', 'Chengalpatu', '2310310007', '', '1', 'upload_files/candidate_tracker/51998077514_CHANDRU Resum.pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 05:34:29', 1, '2023-10-31 06:00:03', 0, NULL, 1),
(15053, 'Sivasubramani S', '2', '8610769549', '9952181046', 'sivapandiyan102@gmail.com', '2001-07-29', 22, '6', '2', 'Solairaj S', 'Building Contractor', 25000.00, 2, 0.00, 18000.00, 'Kalugumalai', 'Kalugumalai', '2310310008', '', '1', 'upload_files/candidate_tracker/94283743021_siva resume.docx', NULL, '1', '2023-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 05:43:48', 1, '2023-10-31 06:27:39', 0, NULL, 1),
(15054, 'Mary Sowmiya X', '13', '7358463991', '', 'sowmiya.vela777@gmail.com', '2001-07-14', 22, '6', '2', 'VELAGKANNI', 'House wife', 30000.00, 2, 0.00, 15000.00, 'Villupuram', 'Chennai, Kovilampakkam', '2310310009', '', '1', 'upload_files/candidate_tracker/10107707298_Mary Sowmiya.CV.pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 06:12:41', 1, '2023-10-31 06:17:20', 0, NULL, 1),
(15055, 'M.Rajapandi', '13', '9159779001', '7094906058', 'rajapandi5691@gmail.com', '2002-02-25', 21, '6', '2', 'S.Muruganandam', 'Mason', 12000.00, 2, 0.00, 15000.00, 'Sivagangai', 'Chennai', '2310310010', '', '1', 'upload_files/candidate_tracker/54323843599_Rajapandi\'s resume-6.docx', NULL, '1', '2023-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 06:25:56', 1, '2023-10-31 06:33:14', 0, NULL, 1),
(15056, 'dinesh', '4', '9025061635', '', 'dineshvaithe@gmail.com', '1997-12-08', 25, '2', '2', 'godinadarajan', 'retried', 30000.00, 1, 320000.00, 450000.00, 'chennai', 'chennai', '2310310011', '1', '2', 'upload_files/candidate_tracker/71787473891_Dinesh.pdf.pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp but not much suits for our sales call,will not take call not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-31 06:31:23', 85, '2023-10-31 05:56:03', 0, NULL, 1),
(15057, 'Preetha.E', '31', '9367707666', '9488535915', 'preethaeganathan@gmail.com', '1999-07-17', 24, '4', '2', 'Eganathan P', 'TNSTC', 300000.00, 1, 0.00, 15000.00, 'Vellore', 'Vellacherry', '2310310012', '', '1', 'upload_files/candidate_tracker/66457662379_E Preetha (1).pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 06:47:01', 1, '2023-10-31 06:57:11', 0, NULL, 1),
(15058, 'muthu aravindh v', '31', '6369754272', '', 'muthuaravindh2512001@gmail.com', '2001-01-25', 0, '6', '2', 'muthu priya', 'house wife', 15000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2310310013', '', '1', 'upload_files/candidate_tracker/17847008749_Resume.muthu_comp.pdf', NULL, '1', '2023-10-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 06:51:21', 1, '2023-10-31 07:06:14', 0, NULL, 1),
(15059, 'Shobana.s', '13', '8825530828', '9626906800', 'Shobaajeevaa@gmail.com', '2001-03-23', 22, '3', '2', 'Sudhakaran.v,suguna.s', 'Farmer', 50000.00, 2, 0.00, 15000.00, 'Vellore', 'Chennai', '2310310014', '', '1', 'upload_files/candidate_tracker/47284311700_SHOBANA S FRONTEND BESENT TECHNOLOGY (OMR BRANCH,THORAIPAKKAM).pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 06:55:02', 1, '2023-10-31 06:59:13', 0, NULL, 1),
(15060, 'Umamaheswari', '13', '7904613732', '', 'umashiva18@gmail.com', '1995-08-18', 28, '6', '2', 'Sivashanmugam', 'Retired BSNL', 20000.00, 2, 0.00, 300000.00, 'Trichy', 'Chennai', '2310310015', '', '1', 'upload_files/candidate_tracker/30227229575_S. UMA MAHESWARI. (2).pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 07:05:01', 1, '2023-10-31 07:10:21', 0, NULL, 1),
(15061, 'Sarvanakkumar SA', '13', '9080473442', '', 'saravanansankar163@gmail.com', '2001-03-16', 22, '3', '2', 'Sankaralingam S', 'Weaver', 15000.00, 1, 0.00, 250000.00, 'Aruppukottai', 'Chennai', '2310310016', '', '1', 'upload_files/candidate_tracker/95790407212_SA.saravanakkumarResume-1.pdf', NULL, '1', '2023-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 07:11:45', 1, '2023-10-31 07:23:17', 0, NULL, 1),
(15062, 'Priyadevi', '13', '9952210669', '6374194731', 'Priyadevi09404@gmail.com', '2000-08-12', 23, '3', '2', 'Madeshvaren', 'Viver', 24000.00, 3, 22000.00, 25000.00, 'Nammakkal', 'Chennai', '2310310017', '', '2', 'upload_files/candidate_tracker/94031168718_Priyadevi Resume (1).pdf', NULL, '1', '2023-10-31', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 09:37:50', 1, '2023-10-31 09:42:01', 0, NULL, 1),
(15063, 'Vimaleshwari', '13', '9025452110', '', 'vimalacsc16@gmail.com', '2000-03-12', 23, '3', '2', 'Dhanapal', 'Weever', 5000.00, 1, 22000.00, 25000.00, 'Erode', 'Chennai', '2310310018', '', '2', 'upload_files/candidate_tracker/79076207434_vimaleshwari.pdf', NULL, '1', '2023-10-31', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-10-31 09:39:16', 1, '2023-10-31 09:44:04', 0, NULL, 1),
(15064, 'Jayabharathi kumar', '5', '8124548976', '', 'jayabharathi3009@gmail.com', '1999-06-30', 24, '2', '1', 'Narendra kumar', 'Private company employe', 3.00, 1, 420000.00, 480000.00, 'Chennai', 'Chennai', '2310310019', '1', '2', 'upload_files/candidate_tracker/18635819540_jayabharathi k resume.pdf', NULL, '1', '2023-11-02', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-10-31 11:20:31', 85, '2023-11-02 07:09:34', 0, NULL, 1),
(15065, 'KESHAVANAATH. S', '5', '6382940175', '9384252041', 'Kesavansdknr@gmail.com', '2001-08-05', 22, '3', '2', 'Saravanan', 'Astrology', 23000.00, 1, 0.00, 150000.00, 'Trichy', 'Velachery', '2310310020', '', '1', 'upload_files/candidate_tracker/97018073051_Resume_31_10_2023_12_59_55_pm.pdf', NULL, '1', '2023-11-01', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-10-31 11:22:22', 108, '2023-11-01 06:24:47', 0, NULL, 1),
(15066, 'hemaraj', '26', '9789543031', '', 'hemarajkuppusamy@gmail.com', '2001-06-23', 22, '2', '2', 'm.kuppusamy', 'builder', 30000.00, 2, 0.00, 4.00, 'chennai', 'chennai', '2310310021', '1', '1', 'upload_files/candidate_tracker/71973494454_Hemaraj_Kuppusamy.pdf', NULL, '1', '2023-11-01', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-10-31 12:59:26', 104, '2023-11-07 12:16:10', 0, NULL, 1),
(15067, 'CHARLES A', '31', '9597417898', '6384634114', 'charlesanand10@gmail.com', '2000-08-25', 23, '3', '2', 'Arulandhu', 'Business', 25000.00, 0, 0.00, 15000.00, 'Tirupur', 'Tirupur', '2311010001', '', '1', 'upload_files/candidate_tracker/2284740625_Charles.A.pdf', NULL, '1', '2023-11-01', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-01 04:00:46', 108, '2023-11-01 06:28:47', 0, NULL, 1),
(15068, 'K.Abhishek', '31', '8925654244', '', 'abi44799@gmail.com', '2001-06-21', 22, '3', '2', 'K.Krishnan', 'Ex-Army', 30000.00, 1, 0.00, 15000.00, 'Perungudi,madurai', 'Velachery', '2311010002', '', '1', 'upload_files/candidate_tracker/27587567570_CV_2023100610251287.pdf', NULL, '1', '2023-11-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-01 04:01:19', 1, '2023-11-01 04:10:02', 0, NULL, 1),
(15069, 'Balamurugan.A', '31', '8110833597', '9894812944', 'balamurugan11200@gmail.com', '2000-11-04', 22, '3', '2', 'Arumugam.K', 'Self Employee', 16000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Saidapet', '2311010003', '', '1', 'upload_files/candidate_tracker/48798243621_BALAMURUGAN.A.pdf', NULL, '1', '2023-11-01', 0, '', '3', '59', '2023-11-03', 120000.00, '', '', '2023-11-07', '2', 'Intern with 5month 5K Stipend then 10-12K Salary', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-01 04:01:29', 60, '2023-11-03 10:14:18', 0, NULL, 1),
(15070, '', '0', '6380750961', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311010004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-01 04:01:30', 0, NULL, 0, NULL, 1),
(15071, 'N. Abisaya', '31', '6380750964', '', 'abisayanepolian03@gmail.com', '2003-07-14', 20, '3', '2', 'R.Nepolian', 'No', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Velachery, chennai', '2311010005', '', '1', 'upload_files/candidate_tracker/4353656431_Minimalist Modern Professional CV Resume (1).pdf', NULL, '1', '2023-11-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-01 04:01:50', 1, '2023-11-01 04:12:00', 0, NULL, 1),
(15072, 'JEEVA M', '31', '8072014147', '9659613549', 'jeeva.mani@hotmail.com', '1999-06-28', 24, '3', '2', 'MANI S', 'Ioom', 20000.00, 1, 0.00, 15000.00, 'S. Mani 186/1B1, Thokkavadi , namakkal 637215', 'Vadapalani', '2311010006', '', '1', 'upload_files/candidate_tracker/54463743560_CV_2023072602252569.pdf', NULL, '1', '2023-11-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-01 04:13:03', 1, '2023-11-01 04:35:30', 0, NULL, 1),
(15073, 'Ganesh Kumar s', '31', '8148469846', '', 'ganeshponni2002@gmail.com', '2002-10-06', 21, '3', '2', 'Ponnammal', 'Cooli', 7000.00, 1, 0.00, 6000.00, '5/245 Aungsangstreet MA nager redhills chennai-52', '5/245 Aungsangstreet MA Nager Redhills Chennai-52', '2311010007', '', '1', 'upload_files/candidate_tracker/21759093363_Document from Ganesh Kumar.pdf', NULL, '1', '2023-11-01', 0, '', '3', '59', '2023-11-02', 120000.00, '', '5', '1970-01-01', '1', 'Selected for IT intern and employment', '2', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-01 04:13:37', 60, '2023-11-03 07:11:07', 0, NULL, 1),
(15074, 'Dravidan', '5', '9952579246', '9445126721', 'dravidans29@gmail.com', '1998-10-22', 25, '2', '2', 'Senthil Kumar', 'Teacher', 80000.00, 1, 0.00, 16000.00, 'Acharapakkam', 'Kovilampakkam', '2311010008', '21', '1', 'upload_files/candidate_tracker/22832220588_Dravidan29.pdf', NULL, '1', '2023-11-01', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for inside sales sal expt high', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-01 04:22:19', 108, '2023-11-01 06:28:06', 0, NULL, 1),
(15075, 'Asmitha', '4', '7904934781', '8525964184', 'asmimoorthi@gmail.com', '2001-02-03', 22, '2', '2', 'Krishnamoorthy', 'Painting', 13000.00, 1, 13000.00, 17000.00, 'Kumbakonam', 'Kumbakonam', '2311010009', '1', '2', 'upload_files/candidate_tracker/97471082429_Asmitha Resume.pdf', NULL, '1', '2023-11-01', 300, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-01 04:36:56', 108, '2023-11-01 11:41:40', 0, NULL, 1),
(15076, 'Gokul R', '31', '7299292560', '9176333490', 'r.gokul1999@gmail.com', '1999-01-08', 24, '3', '2', 'M Raveshanker', 'Executive Manager', 30000.00, 1, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2311010010', '', '1', 'upload_files/candidate_tracker/40394441327_RESUME Updated.pdf', NULL, '1', '2023-11-01', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-01 04:37:35', 1, '2023-11-01 04:44:57', 0, NULL, 1),
(15077, 'IRUTHAYA SUWISTON', '13', '8220203128', '', 'suvistonsuviston575@gmail.com', '2001-08-20', 22, '6', '2', 'Keniston', 'Fisherman', 15000.00, 2, 0.00, 1.00, 'Tirunelveli', 'Chennai', '2311010011', '', '1', 'upload_files/candidate_tracker/77792601237_iruthaya suviston resume.pdf', NULL, '1', '2023-11-01', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-01 04:39:46', 108, '2023-11-01 06:26:34', 0, NULL, 1),
(15078, 'Thiyagu R', '2', '8838184073', '7598286678', 'thiyagutg07@gmail.com', '1999-09-21', 24, '6', '2', 'Ragu V', 'Security', 12000.00, 1, 0.00, 300000.00, 'Cuddalore', 'Chennai', '2311010012', '', '1', 'upload_files/candidate_tracker/19597297096_Thiyagu R FSD.pdf', NULL, '1', '2023-11-01', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Has knowledge in HTML,CSSxxampJS..SNR technical Interviewed by lokesh . xxamp Final Round interviewed xxamp Selected by Gokul ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-01 05:48:27', 108, '2023-11-01 06:31:17', 0, NULL, 1),
(15079, 'D.MANIKANNA', '23', '9865175067', '8903233492', 'manikanna812@gmail.com', '2000-08-21', 23, '6', '2', 'A.Dhatchina moorthy', 'Farmer', 10000.00, 1, 0.00, 200000.00, 'Devakottai', 'Royeppetai', '2311010013', '', '1', 'upload_files/candidate_tracker/30337283276_MANIKANNA CVV.pdf', NULL, '1', '2023-11-01', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-01 05:49:25', 108, '2023-11-01 06:22:24', 0, NULL, 1),
(15080, 'MAHADHIR MOHAMED A', '23', '9344181592', '', 'mahadhirnrk612@gmail.com', '1999-12-06', 23, '6', '2', 'Abdullah k', 'Tailer', 175000.00, 2, 0.00, 2.50, '4-6-3A pallivasal street Nerkuppai', 'Chennai Royapettai', '2311010014', '', '1', 'upload_files/candidate_tracker/15240422078_mahadhir resume (1) (1) (2).pdf', NULL, '1', '2023-11-01', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-01 05:50:15', 108, '2023-11-01 06:23:43', 0, NULL, 1),
(15081, 'M.vaishal', '5', '7200362187', '8072498270', 'vishalsairam0@gmail.com', '1994-11-16', 28, '1', '2', 'Mummoorthy', 'Artist', 100000.00, 1, 23000.00, 25000.00, 'Chennai', 'Korattur', '2311010015', '', '2', 'upload_files/candidate_tracker/25672476261_VISHAL M.pdf', NULL, '1', '2023-11-01', 0, 'CA130', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-01 05:51:58', 1, '2023-11-01 06:58:21', 0, NULL, 1),
(15082, 'Dharsini Priya M', '13', '9360333959', '', 'dharsinimanickam@gmail.com', '2001-03-13', 22, '3', '2', 'Manickam M', 'Bus Driver', 500000.00, 1, 0.00, 250000.00, 'Salem', 'Chennai', '2311010016', '', '1', 'upload_files/candidate_tracker/24133979960_Dharsinipriya.pdf', NULL, '1', '2023-11-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-01 06:19:07', 1, '2023-11-01 07:06:07', 0, NULL, 1),
(15083, 'Tiyara raja', '13', '9942185778', '9585238990', 'tiyarabhaiyaa@gmail.com', '1998-03-10', 25, '3', '2', 'Jayalakshmi', 'Housewife', 100000.00, 2, 0.00, 10000.00, 'tiruppur', 'Chennai', '2311010017', '', '1', 'upload_files/candidate_tracker/44530326851_Tiyaras.pdf', NULL, '1', '2023-11-01', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-01 06:20:16', 108, '2023-11-01 06:20:29', 0, NULL, 1),
(15084, 'Regubalan', '13', '6374293941', '8807749243', 'Regubalan02@gmail.com', '2002-03-04', 21, '6', '2', 'Karuppaiya', 'Fisherman', 10000.00, 3, 0.00, 15000.00, 'Ramanathapuram', 'Saidapet', '2311010018', '', '1', 'upload_files/candidate_tracker/5529734922_Regubalan_k_2023.pdf', NULL, '1', '2023-11-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-01 06:20:38', 1, '2023-11-01 06:26:12', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15085, 'Gowtham.R', '13', '6381919711', '8610519520', 'gowtham555000@gmail.com', '1998-06-17', 25, '3', '2', 'Ramachandran.c', 'Building work', 200000.00, 1, 0.00, 10000.00, 'Tiruppur', 'Chennai', '2311010019', '', '1', 'upload_files/candidate_tracker/5359308377_pdf_20230828_082014_0000.pdf', NULL, '1', '2023-11-01', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-01 06:20:47', 108, '2023-11-01 06:19:44', 0, NULL, 1),
(15086, 'Tamil selvi s', '13', '6374556506', '', 'Tamilselvi61088@gmail.com', '1999-05-16', 24, '3', '1', 'Dinesh', 'Driver', 15000.00, 2, 0.00, 15000.00, 'Dindigul', 'Chennai', '2311010020', '', '1', 'upload_files/candidate_tracker/51109134115_Tamill1.pdf', NULL, '1', '2023-11-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-01 06:23:53', 1, '2023-11-01 07:13:52', 0, NULL, 1),
(15087, 'R.Rohithkumar', '13', '9841509562', '', 'rohithroshan264@gmail.com', '2001-07-04', 22, '3', '2', 'Radhakrishnamoorthy', 'Tailor', 10000.00, 1, 0.00, 2.40, 'Chennai', 'Chennai', '2311010021', '', '1', 'upload_files/candidate_tracker/96678351361_R.Rohithkumar.pdf', NULL, '1', '2023-11-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-01 06:46:00', 1, '2023-11-01 06:49:24', 0, NULL, 1),
(15088, 'Rani thabethal', '4', '8682856517', '8939169020', 'ranithabetha95@gmail.com', '1995-03-03', 28, '2', '2', 'Amutha', 'Home maker', 17000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2311010022', '1', '2', 'upload_files/candidate_tracker/48821811666_Rani resume.pdf', NULL, '1', '2023-11-01', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without atten the interview', '1', '1', '', '1', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-01 07:15:42', 104, '2023-11-10 03:38:43', 0, NULL, 1),
(15089, 'v sivachandiran', '7', '7094620429', '8925227543', 'sivachandru2912@gmail.com', '1999-12-29', 23, '2', '2', 'velmurugan t', 'operation executive', 6000.00, 1, 0.00, 2.50, 'villupuram', 'chennai', '2311010023', '1', '2', 'upload_files/candidate_tracker/6230815902_Sivachandiran Resume 2023.pdf', NULL, '1', '2023-11-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skillls will not sustain in our roles not suitable', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-01 05:25:23', 104, '2023-11-02 05:15:48', 0, NULL, 1),
(15090, '', '0', '9962615873', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311020001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-02 03:48:53', 0, NULL, 0, NULL, 1),
(15091, '', '0', '7010193741', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311020002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-02 03:51:07', 0, NULL, 0, NULL, 1),
(15092, '', '0', '9344975963', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311020003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-02 04:29:36', 0, NULL, 0, NULL, 1),
(15093, '', '0', '7305877808', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311020004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-02 04:29:39', 0, NULL, 0, NULL, 1),
(15094, '', '0', '7010193741', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311020005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-02 04:33:22', 0, NULL, 0, NULL, 1),
(15095, '', '0', '7010193741', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311020006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-02 04:34:29', 0, NULL, 0, NULL, 1),
(15096, '', '0', '7010193741', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311020007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-02 04:35:12', 0, NULL, 0, NULL, 1),
(15097, 'Naresh kumar k', '16', '9566260258', '', 'Nareshkrishna98@gmail.com', '1998-06-09', 25, '6', '1', 'Suganya', 'House wife', 25000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2311020008', '', '2', 'upload_files/candidate_tracker/58995123621_NARESH RESUME.docx', NULL, '1', '2023-11-03', 30, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Hold by Gokul Direct Meet with Gokul and the Profile on Hold if he comes back let us try', '3', '1', '0', '1', '8', '0', '2', '2023-11-08', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-02 05:12:05', 1, '2023-11-03 02:25:40', 0, NULL, 1),
(15098, '', '0', '8765654534', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311020009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-02 05:58:10', 0, NULL, 0, NULL, 1),
(15099, 'Shyam Sundar V', '31', '7550156797', '', 'shyamsundar23301@gmail.com', '2001-03-23', 22, '3', '2', 'Velayutham S', 'Cab driver', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2311020010', '', '1', 'upload_files/candidate_tracker/35843255814_Shyam_CV (3).pdf', NULL, '1', '2023-11-02', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-02 07:02:35', 108, '2023-11-04 04:04:04', 0, NULL, 1),
(15100, 'Ashok M', '31', '9176532644', '7708002645', 'ashokmvy2000@gmail.com', '2000-11-09', 22, '6', '2', 'M.Mani', 'Daily work', 12000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2311020011', '', '1', 'upload_files/candidate_tracker/55523119488_Ashok_M_Resume_6.pdf', NULL, '1', '2023-11-02', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-02 07:05:52', 108, '2023-11-04 04:04:32', 0, NULL, 1),
(15101, 'Ramesh', '31', '9629146954', '', 'svramesh692@gmail.com', '2001-01-30', 22, '3', '2', 'Subramanian', 'Coolie', 25000.00, 1, 0.00, 25000.00, 'TENKASI', 'Velachery', '2311020012', '', '2', 'upload_files/candidate_tracker/946039647_Ramesh.pdf.pdf', NULL, '1', '2023-11-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-02 07:38:01', 108, '2023-11-04 04:04:43', 0, NULL, 1),
(15102, 'Aruljeyakumar', '31', '8778725370', '8940356133', 'aruljk007@gmail.com', '1997-06-27', 26, '6', '2', 'Samuthirapandi', 'Cooli', 15000.00, 1, 15000.00, 25000.00, 'Tenkasi', 'Velachery', '2311020013', '', '2', 'upload_files/candidate_tracker/57454387273_ArulJeyakumar_resume.pdf', NULL, '1', '2023-11-02', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-02 07:38:28', 1, '2023-11-02 07:43:47', 0, NULL, 1),
(15103, 'Vignesh', '16', '8270132846', '', 'Vigneshkv2001@gmail.com', '2001-12-28', 21, '2', '2', 'Kumar. K', 'Self Employement', 3.00, 1, 0.00, 2.30, 'Chennai', 'Chennai', '2311020014', '1', '1', 'upload_files/candidate_tracker/47598058988_Vignesh. Resume.pdf', NULL, '1', '2023-11-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles will not sustain', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-02 08:46:49', 108, '2023-11-04 04:04:50', 0, NULL, 1),
(15104, 'naveen', '16', '9092288430', '', 'ramunaveenkutty20@gmail.com', '1993-07-20', 30, '2', '2', 'ramu', 'music teacher', 200000.00, 1, 15000.00, 20000.00, 'ramapuram', 'Ramapuram', '2311020015', '1', '2', 'upload_files/candidate_tracker/45998694209_Naveenresume2023.pdf', NULL, '1', '2023-11-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable No sustainability Communication Average will not handle our roles', '3', '2', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-02 09:58:59', 108, '2023-11-04 04:04:55', 0, NULL, 1),
(15105, 'Raghul', '16', '8778606740', '', 'Raghulkamal26@gmail.com', '2001-07-26', 22, '2', '2', 'Kamalakannan R', 'Gold Appraiser', 200000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2311020016', '1', '2', 'upload_files/candidate_tracker/37448857751_Raghul', NULL, '1', '2023-11-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp fresher for our Roles Good Communication Final round with Gokul if he os ok for 1.8LPA for 3 month then 2.4 we can proceed', '3', '1', '', '1', '8', '', '2', '2023-11-07', '3', '7', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-02 10:27:58', 104, '2023-11-07 12:51:36', 0, NULL, 1),
(15106, 'C. Aravind Babu', '26', '7418632439', '', 'c.Aravindbabu04@gmail.com', '1990-11-04', 32, '4', '2', 'S. Chandra Babu', 'Retired Government Servant', 36000.00, 1, 300000.00, 360000.00, 'Chennai', 'Chennai', '2311020017', '', '2', 'upload_files/candidate_tracker/63943958222_Aravind-Resume.docx', NULL, '1', '2023-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '7', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-02 10:32:34', 1, '2023-11-02 10:37:54', 0, NULL, 1),
(15107, 'Jagadeesh JS', '16', '8883000409', '', 'jagadeeshrohit9@gmail.com', '1999-11-09', 23, '2', '2', 'Jagajeevanram', 'Teacher', 40000.00, 2, 14000.00, 20000.00, '1/20 paranur post keelakondur villipuram-605755', 'AM mansion Babu rajendra Prasad 1st St mamballam', '2311020018', '1', '2', 'upload_files/candidate_tracker/55704492911_resume.pdf', NULL, '1', '2023-11-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Final Round Reject by Gokull Will not sustain have Exp in BGV process Not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-02 11:31:32', 104, '2023-11-07 12:51:00', 0, NULL, 1),
(15108, 'Janakhiram', '16', '7550161675', '9150724617', 'janakhiram27@gmail', '2001-09-27', 22, '2', '2', 'Devaraj', 'Water cane supplier', 35000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2311020019', '1', '2', 'upload_files/candidate_tracker/86723341712_Janakhiram Resume New (1).pdf', NULL, '1', '2023-11-03', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-02 12:11:25', 104, '2023-11-07 12:45:06', 0, NULL, 1),
(15109, 'Arthika', '4', '9952884604', '6374087575', 'arthibalasubramanianarthi@gmail.com', '1997-07-29', 26, '2', '2', 'Balasubramaniam', 'Real estate', 30000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2311020020', '1', '1', 'upload_files/candidate_tracker/56436739138_Arthika Resume (1).docx', NULL, '1', '2023-11-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT FOR TEAM', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-02 01:25:36', 108, '2023-11-06 03:22:19', 0, NULL, 1),
(15110, 'Abdhul pari', '16', '9994099460', '', 'abdhulpari171@gmail.com', '2003-08-11', 20, '2', '2', 'Sheikh Abdhulla', 'Chef', 40000.00, 2, 0.00, 20000.00, 'Madurai', 'Chennai', '2311020021', '1', '1', 'upload_files/candidate_tracker/85848752104_MIS Executive Resume.pdf', NULL, '1', '2023-11-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Final Round Reject by Gokul Fresher will not sustain in our roles', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-02 01:57:28', 104, '2023-11-07 12:51:56', 0, NULL, 1),
(15111, 'karthik', '5', '9600603671', '', 'karthiktech1412@gmail.com', '1996-12-14', 26, '2', '2', 'raja', 'welding', 50000.00, 1, 18000.00, 22000.00, 'trichy', 'velachery', '2311020022', '1', '2', 'upload_files/candidate_tracker/90873557995_karthik 2023 september Experience (1).pdf', NULL, '1', '2023-11-07', 0, '', '4', '44', NULL, 0.00, '', '0', NULL, '2', '5050 Profile have exp in calling but doubts for our role kindly check and let me know your inputs', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1019', '0', NULL, NULL, NULL, 1, '2023-11-02 02:44:54', 1, '2023-11-07 09:46:13', 0, NULL, 1),
(15112, 'Elumalai', '16', '8072712611', '', 'elumalai221297@gmail.com', '1997-12-22', 25, '3', '2', 'Lakshmi - mother', 'Super Home maker', 280000.00, 1, 19000.00, 30000.00, 'Chennai', 'Chennai', '2311030001', '', '2', 'upload_files/candidate_tracker/81722012502_Elumalai_Resume.pdf', NULL, '1', '2023-11-03', 30, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Good Candidate have Exp in MIS Final Round with Gokul Candidate need to give his confirmation on the salary if he is ok for 3LPa we can proceed', '3', '1', '0', '1', '8', '0', '2', '2023-11-08', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-03 04:45:14', 1, '2023-11-03 04:51:26', 0, NULL, 1),
(15113, 'Akshaya', '13', '6383261040', '', 'ddanam716@gmail.com', '2000-09-30', 23, '6', '2', 'Dhanasekaran', 'Farmer', 20000.00, 0, 0.00, 20000.00, 'Mannargudi', 'Chennai', '2311030002', '', '1', 'upload_files/candidate_tracker/27119577702_Resume_Akshaya.D.docx', NULL, '1', '2023-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Team reject with Sathish group meet with sathish', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-03 05:01:01', 1, '2023-11-03 05:31:01', 0, NULL, 1),
(15114, 'Sandhiya senthilkumar', '6', '9789130963', '', 'sandhiyasandhiya7097@gmail.com', '2008-11-03', 0, '2', '2', 'Senthamilselvi', 'Wages', 30000.00, 1, 16000.00, 23000.00, 'Thanjavur', 'Chennai', '2311030003', '1', '2', 'upload_files/candidate_tracker/27549861831_sandhiya (1).pdf', NULL, '1', '2023-11-03', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is not fit for tele sales and voice is very low', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-03 05:18:06', 104, '2023-11-07 12:50:35', 0, NULL, 1),
(15115, 'Chandrasekaran Krishna moorthi', '2', '6385555688', '8754660599', 'chandrasekaranmca06@gmail.com', '2000-10-06', 23, '6', '2', 'Devi', 'House wife', 8000.00, 1, 0.00, 2.50, 'Puducherry', 'Puducherry', '2311030004', '', '1', 'upload_files/candidate_tracker/64176967867_Chandrasekaran Resume_compressed (1).pdf', NULL, '1', '2023-11-03', 0, '', '3', '59', '2023-11-09', 120000.00, '', '0', NULL, '2', 'React-6k-8k then 10-15K', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-03 06:03:14', 1, '2023-11-03 06:15:08', 0, NULL, 1),
(15116, 'Santhosh Kumar', '26', '7904935361', '', 'santhoshkumar30092002@gmail.com', '2002-09-30', 21, '2', '2', 'Kathiravan', 'Printing press', 20000.00, 1, 150000.00, 250000.00, 'Chennai', 'Chennai', '2311030005', '1', '2', 'upload_files/candidate_tracker/10139062034_santhosh kadiravan resume.pdf', NULL, '1', '2023-11-03', 1, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Final Round with Gokul and selected for MIS 30% Hike approved by Gokul notice he need to serve and confirm the Date', '7', '1', '', '1', '8', '', '2', '2023-11-06', '2', '7', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-03 06:03:28', 104, '2023-11-07 12:45:50', 0, NULL, 1),
(15117, 'venkadesh E', '2', '9361651726', '7548850887', 'venkijohn66@gmail.com', '2000-11-19', 22, '3', '2', 'Essaki', 'Developer', 100000.00, 1, 0.00, 150000.00, 'Tirunelveli', 'Tirunelveli', '2311030006', '', '1', 'upload_files/candidate_tracker/32008612127_Venkadesh-4.pdf', NULL, '1', '2023-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical round rejct with Sathish Group Meet with Sathish', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-03 06:07:07', 1, '2023-11-03 06:11:27', 0, NULL, 1),
(15118, 'Baskar B', '31', '8940644645', '', 'baskarofficial01@gmail.com', '2000-08-11', 23, '3', '2', 'Anandhi B', 'Farmer', 10000.00, 1, 0.00, 2.50, 'Melmaruvathur', 'Chennai', '2311030007', '', '1', 'upload_files/candidate_tracker/86212286460_BASKAR\'s Resume.pdf', NULL, '1', '2023-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject with Sathish Group Meet with Sathish', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-03 06:14:27', 1, '2023-11-03 06:21:21', 0, NULL, 1),
(15119, 'Aravindhan', '4', '9080652398', '7397523861', 'aravindhanp0106@gmail.com', '1999-06-01', 24, '2', '2', 'Paranthaman', 'Business', 30000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2311030008', '21', '1', 'upload_files/candidate_tracker/84936006282_aravinth11.pdf', NULL, '1', '2023-11-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-03 06:37:07', 1, '2023-11-03 06:44:23', 0, NULL, 1),
(15120, 'Gopinath S', '16', '7708979336', '9443775057', 's.gopinath2695@gmail.com', '1995-06-02', 28, '6', '2', 'Selvaganapathi S', 'Govt.Contractor', 200000.00, 1, 300000.00, 500000.00, '9, Pragara Street. Karaikal.', 'NAES men\'s hostel, karapakkam, Chennai.', '2311030009', '', '2', 'upload_files/candidate_tracker/37275464773_Gopinath Resume.pdf', NULL, '1', '2023-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok but the salary exp is high and sustainability doubts  A LOT', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-03 06:47:33', 1, '2023-11-03 06:53:01', 0, NULL, 1),
(15121, 'JENIFER', '6', '9384886150', '', 'jennyajit1993@gmail.com', '1993-02-22', 30, '2', '1', 'Ajit Kumar', 'House wife', 40000.00, 1, 0.00, 20000.00, 'Chintarepet', 'Chintarepet', '2311030010', '1', '1', 'upload_files/candidate_tracker/41571404801_Share jeni cv.pdf', NULL, '1', '2023-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for timing between 09-07 Will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-03 06:47:44', 108, '2023-11-04 05:58:36', 0, NULL, 1),
(15122, 'Anbanandan H', '4', '6384620789', '9677105529', 'anbuch77@gmail.com', '1997-07-27', 26, '3', '2', 'Harikrishnan', 'Gas delevery service', 15000.00, 2, 18500.00, 22000.00, 'No.372,12 th block, nagooran garden,', 'Chennai', '2311030011', '', '2', 'upload_files/candidate_tracker/1147803659_Anbanandan.resume.docx', NULL, '1', '2023-11-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-03 08:54:14', 1, '2023-11-03 09:00:35', 0, NULL, 1),
(15123, 'Tharani M', '11', '8668180631', '9698785891', 'tharani.hr2023@gmail.com', '2001-05-06', 22, '3', '2', 'Kavitha M', 'Nurse', 20000.00, 1, 0.00, 20.00, 'Trichy', 'Chennai', '2311030012', '', '2', 'upload_files/candidate_tracker/44292395968_Tharani 2023.pdf', NULL, '1', '2023-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Basic Skills in recruitment Have 6 months Exp and looking only for the salary growth', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-03 09:04:42', 1, '2023-11-03 09:26:06', 0, NULL, 1),
(15124, 'Aruna .p', '6', '8535835253', '8525835253', 'Cpsaruna2000@gmail.com', '2000-10-31', 23, '3', '2', 'Palanisamy', 'Mechanical supervisor', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai saligramam', '2311030013', '', '1', 'upload_files/candidate_tracker/546424879_ARUNA RESUME.pdf', NULL, '1', '2023-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Pressure handling No wll not sustain and handle our roles not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-03 10:07:15', 1, '2023-11-03 10:15:34', 0, NULL, 1),
(15125, '', '0', '8525835253', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311030014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-03 10:19:07', 0, NULL, 0, NULL, 1),
(15126, 'Jayavel M', '4', '9344138142', '7200415031', 'jayavel2998@gmail.com', '1998-01-29', 25, '2', '2', 'NA', 'TCS', 30000.00, 2, 24000.00, 40000.00, 'Saligramam Chennai', 'Saligramam', '2311030015', '1', '2', 'upload_files/candidate_tracker/27011861883_JAYAVEL M_18-Oct-23_18.01.34.docx', NULL, '1', '2023-11-04', 45, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-03 12:53:23', 85, '2023-11-04 05:41:53', 0, NULL, 1),
(15127, 'Hilda Joshi', '4', '8300036874', '9751434139', 'hildajoshi1@gmail.com', '2002-01-12', 21, '2', '2', 'Vimala motcha rani', 'Tailor', 8000.00, 2, 15000.00, 18000.00, 'Thanjavur', 'Thanjavur', '2311030016', '1', '2', 'upload_files/candidate_tracker/46891373402_Hilda Joshi resume .pdf', NULL, '1', '2023-11-04', 1, '', '3', '59', '2023-11-13', 160000.00, '', '5', '1970-01-01', '2', 'Selected for Sithy Team in Consultant Role', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-03 01:18:41', 60, '2023-11-11 05:40:11', 0, NULL, 1),
(15128, 'Sri Santhanalakshmi A P', '13', '6383000635', '', 'apsanthanam1999@gmail.com', '1999-02-19', 24, '6', '2', 'Prabhu', 'Electrician', 10000.00, 1, 0.00, 30000.00, 'Athani,Erode', 'Porur,Chennai', '2311030017', '', '1', 'upload_files/candidate_tracker/26345309698_Santhanalakshmi (Full stack developer).pdf.pdf', NULL, '3', '2023-11-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-03 05:16:17', 1, '2023-11-03 05:20:49', 0, NULL, 1),
(15129, 'Pavithra D', '13', '9087783368', '', 'dpavithra059@gmail.com', '1999-04-08', 24, '6', '2', 'Dhasaratharaman', 'Manager', 12000.00, 1, 0.00, 30000.00, 'Srivilliputhur', 'Porur,Chennai', '2311030018', '', '1', 'upload_files/candidate_tracker/88289601854_Pavithra Full-stack.pdf', NULL, '3', '2023-11-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-03 05:25:42', 1, '2023-11-03 05:28:25', 0, NULL, 1),
(15130, '', '0', '9087773386', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311040001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-04 04:11:43', 0, NULL, 0, NULL, 1),
(15131, 'Mahalakshmi', '6', '7358728266', '9940418585', 'Mahalakshmimano333@gmail.com', '2000-05-01', 23, '2', '2', 'Manogaran', 'Real Estate', 30000.00, 1, 0.00, 15000.00, 'Kamalammal Nagar, Ennore', 'Ennore, Chennai', '2311040002', '21', '1', 'upload_files/candidate_tracker/37755051336_RESUME MAHALAKSHMI.pdf', NULL, '1', '2023-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Long Career Gap medicall issue sustainability doubts a lot not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-04 05:12:24', 108, '2023-11-04 06:00:21', 0, NULL, 1),
(15132, 'L.Nihara Barveen', '6', '6385253712', '8012479749', 'Nihara2430@gmail.com', '2003-02-06', 20, '3', '2', 'Liyakathalikhan', 'Tea worker', 10000.00, 2, 0.00, 15000.00, '6/133 pallivasal south street veerasigamani', 'Sai women hostel ramanadhan street t.nager', '2311040003', '', '1', 'upload_files/candidate_tracker/31066480133_NIHARA BARVEENL.pdf', NULL, '1', '2023-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up Pronunciation not much ok not suitbale', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-04 05:31:24', 108, '2023-11-04 05:59:24', 0, NULL, 1),
(15133, 'Subasri', '5', '9345392378', '', 'elumalaisubasri92@gmail.com', '2000-05-18', 23, '2', '2', 'Elumalai', 'Construction works', 200000.00, 2, 0.00, 15000.00, 'Marakkanam', 'Saidapet', '2311040004', '21', '1', 'upload_files/candidate_tracker/96402559296_Subasri New Resume.pdf', NULL, '1', '2023-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up a lot pressure handling doubt not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-04 05:45:07', 108, '2023-11-04 05:56:53', 0, NULL, 1),
(15134, 'Pavithra Jayakumar', '11', '7338951995', '', 'pavijayakumar11@gmail.com', '2000-08-11', 23, '3', '2', 'Jayakumar', 'Gold Smith', 20000.00, 1, 0.00, 20000.00, 'Oldwashermenpet', 'Oldwashermenpet', '2311040005', '', '1', 'upload_files/candidate_tracker/99713542528_Pavi updated resume.pdf', NULL, '1', '2023-11-04', 0, '', '3', '59', '2023-11-06', 162000.00, '', '5', '1970-01-01', '2', 'Selecetd for Recruiter need to give her confirmation on Roles', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-04 05:54:10', 60, '2023-11-05 01:16:54', 0, NULL, 1),
(15135, 'Nirmal kumar Km', '13', '6383350703', '9176771175', 'nirmalkumarmohan2000@gmail.com', '2000-05-15', 23, '6', '2', 'Saraswathi M', 'Nil', 20000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2311040006', '', '1', 'upload_files/candidate_tracker/66676983377_Nirmal kumar km-1 (1) (1) (1) (1).pdf', NULL, '1', '2023-11-04', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-04 06:01:42', 108, '2023-11-04 05:52:58', 0, NULL, 1),
(15136, 'Maria nivetha', '5', '8072531241', '', 'Marianivetha04@gmail.com', '1997-04-04', 26, '2', '2', 'Father', 'Own business', 20000.00, 2147483647, 0.00, 20000.00, 'Thousand lights', '25/10 gmm street thousand lights', '2311040007', '1', '1', 'upload_files/candidate_tracker/93104944942_Maria Nivetha - Resume.pdf', NULL, '1', '2023-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Education only 10th long Career Gap 10 yrs blank no ideas in calling not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-04 06:11:35', 108, '2023-11-04 06:04:02', 0, NULL, 1),
(15137, 'Mahalakshmi', '5', '9159080653', '8056898735', 'mahalakshmi261900@gmail.com', '2000-09-26', 23, '2', '2', 'Nanthakumar', 'Painting contractor', 20000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2311040008', '21', '1', 'upload_files/candidate_tracker/19844473007_MAHALAKSHMI', NULL, '1', '2023-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No confidence need to open a lot not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-04 06:24:45', 108, '2023-11-04 05:54:47', 0, NULL, 1),
(15138, 'Mohamed Abubacker Shibly', '13', '9688940054', '9840874203', 'shibly2522@gmail.com', '2002-08-22', 21, '6', '2', 'hasan basheer', 'fifty thousand', 50000.00, 2, 0.00, 12000.00, 'ilayangudi sivagangai district', 'seven wells chennai', '2311040009', '', '1', 'upload_files/candidate_tracker/99938818499_Resume (2) (1).pdf', NULL, '1', '2023-11-04', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-04 06:25:11', 108, '2023-11-04 05:52:22', 0, NULL, 1),
(15139, 'Ananya KF', '13', '9444729935', '', 'ananyaelizabeth@gmail.com', '2023-11-04', 0, '6', '2', 'KC Francis', 'Sales Manager', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'No 23/16, Vasantham Garden, MKB Nagar, Chennai-39.', '2311040010', '', '1', 'upload_files/candidate_tracker/97653082912_Ananya', NULL, '1', '2023-11-04', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-04 06:34:04', 108, '2023-11-04 01:07:24', 0, NULL, 1),
(15140, 'Abdul kather N', '6', '9360807743', '6380870631', 'abdulkather0303@gmail.com', '2000-03-03', 0, '2', '2', 'Nazeer', 'Voice process', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Guduvancheri', '2311040011', '21', '1', 'upload_files/candidate_tracker/70815965480_Abdul Kather-1.docx', NULL, '1', '2023-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance Career Gap will not run in our roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-04 06:42:32', 108, '2023-11-04 06:03:00', 0, NULL, 1),
(15141, 'AA DIVIJA', '5', '6302297224', '9505399478', 'divijaarcot24@gmail.com', '1992-07-20', 0, '2', '2', 'Chandra sekar', 'Lecturer', 40000.00, 0, 0.00, 15000.00, 'Chennai', 'Korattur', '2311040012', '21', '2', 'upload_files/candidate_tracker/28079852041_Divija my.docx', NULL, '1', '2023-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-04 06:43:47', 85, '2023-11-04 06:59:09', 0, NULL, 1),
(15142, 'Ajith kumar A', '31', '9176308591', '', 'ajithkumar.rte@gmail.com', '1998-12-18', 0, '1', '2', 'Anandarajan', 'Business', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2311040013', '', '1', 'upload_files/candidate_tracker/64222462946_A_Ajith Kumar.pdf', NULL, '1', '2023-11-04', 0, 'P1315', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to check for Testing Role in IT final round pending with Gokul', '2', '1', '', '1', '8', '', '2', '2023-11-09', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-04 06:45:30', 108, '2023-11-04 06:02:05', 0, NULL, 1),
(15143, 'B.BALAJI', '6', '8608315498', '9941630405', 'balajibaskar10011996@gmailcom', '1996-01-10', 0, '2', '2', 'B.shanthi', 'House wife', 8000.00, 1, 20000.00, 24000.00, 'Parrys', 'Mannady', '2311040014', '1', '2', 'upload_files/candidate_tracker/94618132420_BALAJI .pdf', NULL, '1', '2023-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude Issue not suitable will not handle the work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-04 06:45:34', 85, '2023-11-04 06:58:44', 0, NULL, 1),
(15144, 'Sandhiya.N', '6', '8807379496', '6380927855', 'naveensandhiya77@gmail.com', '2008-11-04', 0, '2', '1', 'Naveenkumar', 'Auto driver', 20000.00, 1, 15000.00, 18000.00, 'Velachery', 'Velachery ,checkpost', '2311040015', '1', '2', 'upload_files/candidate_tracker/54098104669_Sandhiya Resume.docx', NULL, '1', '2023-11-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Reject', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-04 07:25:44', 104, '2023-11-07 12:52:11', 0, NULL, 1),
(15145, 'Rahul', '16', '8825806698', '7010702829', 'rahulpeaceboy8825@gmail.com', '1999-06-08', 0, '2', '2', 'Jayachandran', 'Business', 50000.00, 1, 18000.00, 25000.00, 'Madipakkam chennai', 'Madipakkam Chennai', '2311040016', '1', '2', 'upload_files/candidate_tracker/29961015626_CV_2023110319564846.pdf', NULL, '1', '2023-11-05', 0, '', '3', '59', '2023-11-09', 268800.00, '', '5', '1970-01-01', '1', 'Selected for MIS Role Role yet to confirm', '3', '1', '1', '1', '8', '', '2', '2023-11-06', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-04 09:57:05', 60, '2023-11-08 07:18:22', 0, NULL, 1),
(15146, 'MOHAMMED IMAZ N', '16', '9790361163', '', 'imazshshi@gmail.com', '2001-07-08', 0, '2', '2', 'Saleem N', 'MIS', 72000.00, 1, 18000.00, 25000.00, 'Periyamet, Chennai', 'Ambur, Tamilnadu', '2311040017', '1', '2', 'upload_files/candidate_tracker/93611624874_imaz.pdf (4).pdf', NULL, '1', '2023-11-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2023-11-04 12:22:30', 1, '2023-11-04 12:25:55', 0, NULL, 1),
(15147, 'MOHAMAD IMAZ', '16', '9790361153', '', 'Imazshshi@gmail.com', '2001-07-08', 0, '2', '2', 'Saleem', 'Mis', 72000.00, 1, 18000.00, 25000.00, 'Chennai', 'Ambur', '2311040018', '1', '2', 'upload_files/candidate_tracker/75045555974_imaz.pdf.pdf', NULL, '1', '2023-11-04', 0, '', '3', '59', '2023-11-06', 228000.00, '', '5', '1970-01-01', '2', 'Selected for MIS Role need to confirm his Role Staff or Consultant', '3', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-04 12:30:54', 60, '2023-11-04 06:22:49', 0, NULL, 1),
(15148, '', '0', '9677754363', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311040019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-04 01:21:10', 0, NULL, 0, NULL, 1),
(15149, 'Prasanth E', '25', '9344987442', '', 'prasanth28cp@gmail.com', '2002-03-28', 21, '2', '2', 'S elumalai', 'Car driver', 15000.00, 1, 0.00, 16000.00, 'T.nagar', 'T.nagar', '2311040020', '', '1', 'upload_files/candidate_tracker/58194989806_Pink Simple Profile Resume_20231026_145645_0000.pdf', NULL, '3', '2023-11-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-04 04:05:42', 1, '2023-11-05 05:15:19', 0, NULL, 1),
(15150, 'Divya', '4', '7010959106', '9626387996', 'divyakarnan2001@gmail.com', '2001-04-27', 22, '2', '2', 'Vembu', 'Telecaller', 120000.00, 1, 18000.00, 22000.00, 'Ariyalur dt', 'Guinty', '2311050001', '1', '2', 'upload_files/candidate_tracker/11503359830_dhivya résumé .pdf', NULL, '3', '2023-11-05', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our roles home nursing Exp Retail sales exp will not comfort in taking calls not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-05 05:01:47', 85, '2023-11-05 12:56:52', 0, NULL, 1),
(15151, 'Syed javith', '5', '8124706494', '', 'Javithsyed1@gmail.com', '1999-02-06', 24, '2', '2', 'Syed kalith', 'Medical reep', 22000.00, 2, 45000.00, 20000.00, 'thiruvannamalai', 'Saidapet', '2311050002', '1', '2', 'upload_files/candidate_tracker/31240426798_Javith.pdf.pdf', NULL, '1', '2023-11-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lookingonky for Salary have 18 months exp in ajman dubai have a plan to travel back if he is not getting suitable profile here will not sustain in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-05 07:13:40', 104, '2023-11-07 05:46:56', 0, NULL, 1),
(15152, 'A. Shalini', '4', '9789670780', '', 'krishikakrishi128@gmail.com', '2000-07-30', 23, '2', '2', 'D/O N. Arjunan', 'Farmer', 25.00, 2, 0.00, 17.00, '622302', '622302', '2311050003', '1', '1', 'upload_files/candidate_tracker/8700357418_shalini A resume.pdf', NULL, '1', '2023-11-06', 0, '', '3', '59', '2023-11-20', 150000.00, '', '5', '1970-01-01', '2', 'Selected for Sithy Tema in Consltant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-05 08:03:50', 60, '2023-11-08 07:25:29', 0, NULL, 1),
(15153, 'Mohamedmohideen Afrazkhan', '5', '8056316466', '9123594368', 'afrazkhankhan808@gmai', '1995-10-29', 28, '2', '1', 'M.f.razeeka', 'House wife', 30000.00, 3, 12000.00, 20000.00, 'Thoothukudi', 'Chennai triplicane', '2311050004', '1', '2', 'upload_files/candidate_tracker/91348587485_Afrazkhan CV.pdf', NULL, '1', '2023-11-06', 30, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Voice Clarity and Confident level is very low', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-05 04:26:26', 108, '2023-11-06 06:23:01', 0, NULL, 1),
(15154, 'Madhumitha V', '6', '9003159677', '', 'madhumithavijayakumar1703@gmail.com', '2000-03-17', 23, '2', '2', 'Vijayakumar B', 'Self employed', 20000.00, 2, 2460000.00, 360000.00, 'Chennai', 'Chennai', '2311050005', '1', '2', 'upload_files/candidate_tracker/71342725367_Madhu OCT.pdf', NULL, '1', '2023-11-06', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Comfort with the timings and 6 days work she need time to give her confirmation have exp in operations role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-05 04:50:03', 104, '2023-11-07 05:45:11', 0, NULL, 1),
(15155, 'Hemnath', '5', '9361535988', '9600028732', 'sammaja44@gmail.com', '0001-11-21', 2021, '2', '2', 'Dhamodharan', 'Watchman', 18000.00, 1, 15000.00, 20000.00, 'Guindy', 'Guindy', '2311060001', '1', '2', 'upload_files/candidate_tracker/71175772291_resume (1).pdf', NULL, '3', '2023-11-06', 1, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Voice and confident level is very low ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-06 04:23:13', 108, '2023-11-06 06:30:27', 0, NULL, 1),
(15156, 'Narmatha', '4', '9345606335', '', 'narmiparis@gmail.com', '2000-10-02', 23, '2', '2', 'AasaiPandian', 'bussiness', 40000.00, 1, 0.00, 15000.00, 'chennai', 'nungabakkam', '2311060002', '1', '1', 'upload_files/candidate_tracker/29738577872_NarmathaResume (2)-1.pdf', NULL, '1', '2023-11-06', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok Have 2 months exp in Byjus Can be trained in our roles kindly check and let me know your inputs', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-06 04:52:31', 108, '2023-11-06 06:19:07', 0, NULL, 1),
(15157, 'aarthi', '5', '7358826868', '', 'aarthiselvarajan24@gmail.com', '2000-12-18', 22, '2', '1', 'ashok', 'bank manager', 35000.00, 2, 0.00, 17000.00, 'porur', 'porur', '2311060003', '21', '1', 'upload_files/candidate_tracker/45284177887_aarthi resume.pdf', NULL, '1', '2023-11-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our roles have 25 days exp in calling and exp salary more will not sustain not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-06 05:24:52', 108, '2023-11-06 06:27:40', 0, NULL, 1),
(15158, '', '0', '9176503544', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311060004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-06 05:46:09', 0, NULL, 0, NULL, 1),
(15159, 'Rajeshwari kannan', '5', '6374033771', '7010580033', 'reenapapa99@gmail.com', '2003-06-10', 20, '2', '2', 'Jayalakshmi', 'Housekeeping work', 15000.00, 1, 0.00, 16000.00, 'Ganamoorthy nagar 4th cross street patravakkam', 'Ambattur', '2311060005', '21', '1', 'upload_files/candidate_tracker/27168225147_raji resume 1.pdf', NULL, '3', '2023-11-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles Notmuch serious with the jobs will not sustain', '5', '1', '', '4', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-06 06:03:57', 108, '2023-11-06 06:21:16', 0, NULL, 1),
(15160, 'M. nazreen Nisa', '6', '6374067534', '', 'nazreennisha8428@gmail.com', '2002-12-11', 20, '1', '2', 'mohammed rafiqq', 'bussiness', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2311060006', '', '1', 'upload_files/candidate_tracker/91822807375_Resume (7).pdf', NULL, '1', '2023-11-06', 0, '77799', '3', '59', '2023-11-13', 164400.00, '', '5', '1970-01-01', '2', 'Selected for Kannan \nTeam Consultant Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-06 06:18:36', 60, '2023-11-11 05:38:28', 0, NULL, 1),
(15161, 'RAHAMATH K', '5', '8524970686', '9003197365', 'krahamath920@gmail.com', '2002-07-28', 21, '2', '2', 'Kareemullah', 'Merchant shope', 20000.00, 2, 18000.00, 22000.00, 'Chennai', 'Chennai', '2311060007', '1', '2', 'upload_files/candidate_tracker/21829986080_KR RESUME NEW.pdf', NULL, '1', '2023-11-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-06 06:40:44', 108, '2023-11-06 06:31:39', 0, NULL, 1),
(15162, 'hemavathy', '26', '7358473039', '7200599504', 'hemahemavathy24@gmail.com', '2002-10-29', 21, '2', '2', 'selvam', 'painter', 80000.00, 1, 0.00, 14000.00, 'ambedkar street, gkm colony', 'jawahar nagar kolathur', '2311060008', '21', '1', 'upload_files/candidate_tracker/97037781091_hema\'s resume.pdf', NULL, '1', '2023-11-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending', '7', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-06 06:47:33', 1, '2023-11-06 06:57:50', 0, NULL, 1),
(15163, 'Sakthivel N', '27', '7397709724', '8675098600', 'sakthi.it73977@gmail.com', '2001-08-07', 22, '3', '2', 'Chitra P. K', 'Beautyparlor', 12000.00, 0, 144000.00, 195000.00, 'Ariyalur', 'Chennai', '2311060009', '', '2', 'upload_files/candidate_tracker/36343723622_SAKTHIVEL N _Resume.pdf', NULL, '1', '2023-11-06', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Dot Net Profile Not much comfort in TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-06 06:48:35', 1, '2023-11-06 07:15:54', 0, NULL, 1),
(15164, 'HANUMANTHA', '5', '7022390243', '7259696538', 'mammylover11@gmail.com', '2002-04-06', 21, '3', '2', 'Balappa rathod', 'Degree', 30000.00, 1, 0.00, 30000.00, 'Virat nagar bommanhalli bengaluru', 'Madival Bengaluru', '2311060010', '', '1', 'upload_files/candidate_tracker/27324571888_Screenshot_20231106_124136.pdf', NULL, '1', '2023-11-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-06 06:52:48', 1, '2023-11-06 07:16:21', 0, NULL, 1),
(15165, 'Hanamanta', '5', '7353270049', '9663151449', 'hanamanta.t1432@gmail', '1994-06-05', 29, '3', '2', 'Shivaputrappa', 'Icici finance', 15000.00, 3, 30000.00, 35000.00, 'Bommanahalli', 'Bommanahalli', '2311060011', '', '2', 'upload_files/candidate_tracker/4803097406_CV Hanamanta PDF.pdf', NULL, '1', '2023-11-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-06 06:53:08', 1, '2023-11-06 07:10:42', 0, NULL, 1),
(15166, 'Babika.R', '26', '9025884309', '7550199725', 'babikababy87@gmail.com', '2002-08-19', 21, '2', '2', 'Poomathi.R', 'Maid', 15000.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2311060012', '21', '1', 'upload_files/candidate_tracker/44475384078_Babika.R resume.docx', NULL, '1', '2023-11-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left Without Attending', '7', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-06 07:25:22', 1, '2023-11-06 08:01:19', 0, NULL, 1),
(15167, 'Guru Prasath', '2', '7397070399', '', 'prasathg519@gmail.com', '2000-06-22', 23, '6', '2', 'G. Kalaisamy', 'Business', 25000.00, 1, 0.00, 15000.00, 'Aruppukottai, Virudhnager', 'Aruppukottai, Virudhnager', '2311060013', '', '1', 'upload_files/candidate_tracker/13597002642_Guru', NULL, '1', '2023-11-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come with his confirmation on TxxampC if he comes back let us try', '2', '1', '', '1', '8', '', '2', '2023-11-07', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-06 07:41:34', 108, '2023-11-06 06:29:09', 0, NULL, 1),
(15168, '', '0', '8847805381', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311060014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-06 07:48:22', 0, NULL, 0, NULL, 1),
(15169, 'Haridas', '13', '9677709640', '6383865867', 'Harisivam999@gmail.com', '1990-05-29', 33, '6', '2', 'Sadasivam', 'Pontex (late)', 100000.00, 2, 60000.00, 400000.00, 'Pondicherry', 'Chennai', '2311060015', '', '2', 'upload_files/candidate_tracker/66258425010_hari.docx', NULL, '1', '2023-11-06', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable long career gap seems not much active', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-06 07:51:43', 108, '2023-11-06 06:26:23', 0, NULL, 1),
(15170, 'Prashith J Hegde', '33', '8296294965', '', 'prashithhegdejp@gmail.com', '2001-04-06', 22, '3', '2', 'Jayaprakash Hegde', 'Farmer', 150000.00, 1, 0.00, 300000.00, 'Donkubettu House Naravi post Belthangadi, D.K', 'Royal pg anatappalayout JP nagar 4,th Bangalore', '2311060016', '', '1', 'upload_files/candidate_tracker/96770290650_Prashith J Hegde _ resume.pdf', NULL, '1', '2023-11-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-06 09:34:16', 1, '2023-11-06 09:44:05', 0, NULL, 1),
(15171, 'DEEPAK MOHAN', '22', '9739477522', '9738174396', 'deepak.ee2@gmail.com', '1986-06-13', 37, '3', '2', 'Dinesh kumar', 'Trainer', 55000.00, 1, 28300.00, 30000.00, 'BANGLORE', 'BANGLORE', '2311060017', '', '2', 'upload_files/candidate_tracker/60667153477_deepak resum - Copy++(2).pdf', NULL, '1', '2023-11-06', 31, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-06 09:34:32', 1, '2023-11-12 02:26:53', 0, NULL, 1),
(15172, 'Nagaraja SG', '5', '9901505068', '9483923624', 'nagarajasg1611@gmail.com', '2001-03-29', 22, '4', '2', 'Subba', 'Agriculture', 20000.00, 1, 0.00, 20000.00, 'Shivamogga', 'Bilekahalli, Bengaluru', '2311060018', '', '1', 'upload_files/candidate_tracker/11808089551_CV_2023-09-28-080851-1 (1).pdf', NULL, '2', '2023-11-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-06 10:08:05', 1, '2023-11-06 10:16:37', 0, NULL, 1),
(15173, '', '0', '7871311765', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311060019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-06 10:37:56', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15174, 'M.syed Ali reffai', '33', '7872311765', '', 'Syedreffai48@gmail.com', '1995-11-13', 27, '1', '1', 'Nasrin', 'House wife', 16000.00, 1, 16000.00, 18000.00, '3rd street challandiamman koavil dindigul', 'Tambaram', '2311060020', '', '2', 'upload_files/candidate_tracker/32756708017_SYED - for merge.docx', NULL, '1', '2023-11-06', 0, 'C130', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to come for next round with Babu if he is not ok for that can try for Accounts', '4', '1', '', '1', '8', '', '2', '2023-11-07', '3', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-06 10:59:10', 108, '2023-11-06 06:34:10', 0, NULL, 1),
(15175, 'Abinaya', '4', '8778238721', '', 'dadslildevilabinaya@gmail.com', '2005-07-02', 18, '2', '2', 'Kumar K', 'Own business', 7000.00, 2, 15000.00, 15000.00, 'No 1 , 1st Cross, Mannaiyar Nagar, Mariamman Kovil', 'No 1 , 1st Cross, Mannaiyar Nagar, Mariamman Kovil', '2311060021', '1', '2', 'upload_files/candidate_tracker/12788710872_abiiiii.pdf', NULL, '1', '2023-11-07', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-06 01:56:45', 108, '2023-11-07 05:43:33', 0, NULL, 1),
(15176, '', '0', '8870363935', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311060022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-06 05:46:27', 0, NULL, 0, NULL, 1),
(15177, 'Anusuya T', '6', '6385304177', '', 'anusuyat2001@gmail.com', '2001-01-14', 22, '2', '2', 'P. Thangavel', 'Weaver', 60000.00, 1, 0.00, 18000.00, 'Purasaiwakkam', 'Purasaiwakkam', '2311070001', '1', '1', 'upload_files/candidate_tracker/5970600844_T.Anu_013023_compressed (1) (1).docx', NULL, '1', '2023-11-07', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is not fit for Tele sales and not sustainability', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-07 02:27:53', 108, '2023-11-07 05:39:49', 0, NULL, 1),
(15178, 'Rajesh.V', '6', '6379951229', '7305961229', 'rajesh16morgan@gmail.com', '2000-12-04', 22, '2', '2', 'P.Velayutham', 'Farmer', 20000.00, 2, 0.00, 180000.00, 'Egmore', 'Egmore', '2311070002', '1', '1', 'upload_files/candidate_tracker/73013488827_RAJESH_013051_compressed (1) (1).docx', NULL, '1', '2023-11-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresjer for our roles came along with her freind will not sustain with out freind', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-07 04:08:49', 108, '2023-11-07 05:39:11', 0, NULL, 1),
(15179, 'Manoj TM', '33', '9080556581', '9884253931', 'rr9006@gmail.com', '2000-08-25', 23, '3', '2', 'Indira', 'Logistics', 18000.00, 0, 0.00, 20000.00, 'Anagaputhur Mpty', 'Anagaputhur Mpty', '2311070003', '', '1', 'upload_files/candidate_tracker/51817854614_Manoj Resume updated.pdf', NULL, '1', '2023-11-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communicaiton OK Fresher for our roles Exp is more left without attending the 2nd level', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-07 05:17:45', 85, '2023-11-07 10:54:50', 0, NULL, 1),
(15180, 'Santhosh', '5', '8310702768', '9748867609', 'santhosh.santhu7799@gmail.com', '1995-07-04', 28, '6', '1', 'P kavirajan', 'Transport business', 30000.00, 2, 32000.00, 35000.00, 'Whitefield', 'Whitefield', '2311070004', '', '2', 'upload_files/candidate_tracker/88861017124_santhosh CV (1).pdf', NULL, '1', '2023-11-07', 30, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-07 06:13:12', 85, '2023-11-08 10:18:04', 0, NULL, 1),
(15181, 'Kousalya', '6', '9344626776', '', 'kousalya1603@gmail.com', '2008-11-07', 0, '2', '2', 'Arulanatham', 'Labour', 8000.00, 2, 25000.00, 30000.00, 'Ambattur', 'Ambattur', '2311070005', '1', '2', 'upload_files/candidate_tracker/15620701172_kousalya new copy (1) (2) (1) (1).pdf', NULL, '1', '2023-11-07', 0, '', '3', '59', '2023-11-20', 285600.00, '', '5', '1970-01-01', '1', 'Selected for Shanmugam Team in Staff Role', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-07 06:53:16', 60, '2023-11-20 10:28:35', 0, NULL, 1),
(15182, '', '0', '9150646910', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311070006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-07 08:03:35', 0, NULL, 0, NULL, 1),
(15183, 'Adharsh', '16', '6382665695', '', 'n.adharsh04@gmail.com', '2001-08-15', 22, '2', '2', 'Nil', 'Nil', 15000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2311070007', '1', '1', 'upload_files/candidate_tracker/43762381967_Resume Adharsh N.pdf', NULL, '1', '2023-11-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Final Round with Gokul hold for sometime if he comeback let us try exp min 15K TH', '3', '1', '', '1', '8', '', '2', '2023-11-10', '1', '7', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-07 12:45:47', 108, '2023-11-08 01:13:33', 0, NULL, 1),
(15184, 'Yeshvanth', '16', '7339684809', '', 'yesva.vasu.17@gmail.com', '1999-09-17', 24, '2', '2', 'Mohan', 'Daily wages', 10000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2311070008', '1', '1', 'upload_files/candidate_tracker/68079100789_yeshvanth_mohan_CV1.pdf', NULL, '1', '2023-11-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher min salary exp is 20K not open to negotiate will not sustain attitude already rejecctd several offers only for salary', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-07 01:08:41', 108, '2023-11-08 02:58:08', 0, NULL, 1),
(15185, 'Karthi', '5', '9677899042', '', 'kkarthick8833@gmail.com', '1993-04-24', 30, '2', '2', 'house belonging to parents', 'labour', 30000.00, 2, 22000.00, 30000.00, 'Sirkali', 'Chennai', '2311070009', '1', '2', 'upload_files/candidate_tracker/38484453411_RD-converted - karthickkkkkkkkk.pdf', NULL, '1', '2023-11-08', 45, '', '4', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile have exp in calling can give a try kindly check and let me know your inputs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-07 02:25:33', 85, '2023-11-08 01:12:31', 0, NULL, 1),
(15186, 'anushriya', '6', '7358919803', '', 'g.anushriya24@gmail.com', '2002-10-24', 21, '2', '2', 'gopal krishna', 'painter', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2311080001', '21', '1', 'upload_files/candidate_tracker/62373116410_Anushriya.pdf', NULL, '1', '2023-11-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up will nt sustain and not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-08 05:15:24', 108, '2023-11-08 01:14:52', 0, NULL, 1),
(15187, 'Vallarasu A', '5', '7204392944', '9535191812', 'vallarasua890@gmail.com', '2008-11-08', 0, '4', '2', 'Annamalai and uma.', 'No', 70000.00, 2, 16000.00, 20000.00, 'Bache Gowda layout gollahali Anjanapura560062', 'Bache Gowda layout gollahali anjanapura', '2311080002', '', '2', 'upload_files/candidate_tracker/99899447238_Vallarasu Resume.pdf', NULL, '3', '2023-11-08', 0, '', '1', '30', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-08 06:12:42', 1, '2023-11-08 06:20:03', 0, NULL, 1),
(15188, 'Sivaprakash', '5', '9342876445', '', 'avisanar1004@gmail.com', '2001-09-19', 22, '2', '2', 'Manickavasgam', 'Mason', 20000.00, 0, 0.00, 15000.00, 'Theni', 'Velachery', '2311080003', '1', '1', 'upload_files/candidate_tracker/66932582507_SIVA PRAKASH_resume.pdf', NULL, '1', '2023-11-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Field Sales No Communication will not sustain and not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-08 06:17:51', 108, '2023-11-08 01:15:49', 0, NULL, 1),
(15189, 'Dinesh Kumar R', '6', '9677330114', '', 'dineshkhan221@GMAIL.COM', '2001-02-24', 22, '3', '2', 'Ramachandran', 'Parents', 130000.00, 0, 0.00, 20000.00, 'Ranipet', 'Tiruvottiyur', '2311080004', '', '2', 'upload_files/candidate_tracker/34602993613_Resume.pdf', NULL, '1', '2023-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for accounts role but focus in salary already working for 15k and exp more will notsustain', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-08 06:18:24', 1, '2023-11-08 06:39:22', 0, NULL, 1),
(15190, 'Venukumar', '4', '9346926765', '', 'venu87514@gmail.com', '2002-07-07', 21, '3', '2', 'Venkata ramudu', 'Former', 15000.00, 1, 0.00, 18000.00, 'Kurnool', 'Bangalore', '2311080005', '', '1', 'upload_files/candidate_tracker/19175014200_Venukumar Resume. (1).pdf', NULL, '1', '2023-11-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-08 07:23:02', 1, '2023-11-08 07:26:00', 0, NULL, 1),
(15191, 'Nalini M', '5', '9363015794', '', 'nalini79415@gmail.com', '1994-07-15', 29, '3', '2', 'Malar M', 'Home Maker', 22000.00, 1, 22000.00, 27000.00, '4, 2nd cross St, Bharathi Nagar Avadi, Chn 600071', 'No 4 2nd Cross st Bharathi Nagar Avadi chennai 71', '2311080006', '', '2', 'upload_files/candidate_tracker/21657845174_Nalini M\'s Relationship Manager Resume.pdf', NULL, '1', '2023-11-08', 0, '', '4', '44', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Calling but frequent changes having health issues can be trained in our role too long distance check and let me know your inputs', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-08 08:43:28', 1, '2023-11-08 08:49:36', 0, NULL, 1),
(15192, 'AARTHIPARAMARASU', '4', '9384226334', '8523998460', 'arthir3paramaraj@gmail.com', '2002-12-04', 20, '2', '2', 'PARAMARASU', 'SOCIAL WELFARE DEPARTMENT', 50000.00, 1, 0.00, 15000.00, 'THANJAVUR', 'THANJAVUR', '2311080007', '1', '1', 'upload_files/candidate_tracker/17470770798_AARTHIPARAMARASU .pdf', NULL, '1', '2023-11-09', 0, '', '3', '59', '2023-11-13', 150000.00, '', '5', '1970-01-01', '1', 'selected for Sithy Team Consultant Tole', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-08 12:50:47', 60, '2023-11-11 05:37:45', 0, NULL, 1),
(15193, 'Arun Dinakaran', '16', '9080784158', '', 'dinakaran13698@gmail.com', '1998-06-13', 25, '2', '1', 'Jenimol', 'Housewife', 0.00, 3, 10.00, 400000.00, 'Thiruninravur', 'Thiruninravur', '2311080008', '1', '2', 'upload_files/candidate_tracker/59339930961_CV_2023022410113164.pdf', NULL, '1', '2023-11-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking only for non voice not open for customer Interactions will not sustain', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-08 01:06:06', 104, '2023-11-09 11:51:49', 0, NULL, 1),
(15194, 'nandhini', '6', '8925162744', '', 'saravanann949@gmail.com', '2003-01-09', 20, '2', '1', 'saravanan', 'labour', 18000.00, 2, 0.00, 15000.00, 'tiruvottiyur', 'Tiruvottiyur', '2311090001', '21', '1', 'upload_files/candidate_tracker/70813965743_Resume_RESUME_Format1.pdf', NULL, '1', '2023-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up will not handle the work pressure will not sustain in our roles', '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-09 05:00:12', 1, '2023-11-09 06:29:20', 0, NULL, 1),
(15195, 'Pavithra.B', '16', '6374408274', '8807213543', 'b.pavithra0208@gmail.com', '2003-08-02', 20, '2', '2', 'Baskar. M', 'Talior', 15000.00, 1, 0.00, 14000.00, 'Thiruvottriyur Chennai', 'Thiruvottriyur', '2311090002', '21', '1', 'upload_files/candidate_tracker/95883153673_Pavithra Baskar Resume.pdf', NULL, '1', '2023-11-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Final Round with Gokul Profile is on Hold need to give confirmation based on the manager input candidate is in dilemma', '3', '1', '', '1', '8', '', '2', '2023-11-14', '1', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-09 05:26:17', 108, '2023-11-09 06:18:43', 0, NULL, 1),
(15196, 'N. Krishna Sathvika', '33', '7397338024', '9092038866', 'krishnasathvika2105@gmail.com', '2003-05-21', 20, '2', '2', 'Gopala Krishna', 'Working as a accountant', 65000.00, 0, 0.00, 20.00, 'Flat no Qblock 105 vOG, cb road, korukkupet, ch-21', 'Flat No Qblock 105 VOG, Cb Road, Korukkupet, Ch-21', '2311090003', '1', '1', 'upload_files/candidate_tracker/98214970295_Sathvika resume.pdf', NULL, '2', '2023-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Accounts profile only fresher no basics in accounting skills not suitable', '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2023-11-09 05:29:47', 1, '2023-11-09 05:38:45', 0, NULL, 1),
(15197, 'Amirtha varshan.s', '7', '9003189890', '9003252064', 'amirsusee2001@gmail.com', '2001-01-14', 22, '2', '2', 'Sp sudha', 'Teacher', 98000.00, 1, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2311090004', '21', '1', 'upload_files/candidate_tracker/94875017228_VARSHAN RESUME (1).pdf', NULL, '1', '2023-11-09', 0, '', '3', '59', '2023-11-13', 180000.00, '', '5', '1970-01-01', '1', 'Selected for MF role in Staff No Stat Role Fresher need to be trained', '7', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-09 06:12:01', 60, '2023-11-10 04:37:21', 0, NULL, 1),
(15198, '', '0', '8098657648', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311090005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-09 06:13:24', 0, NULL, 0, NULL, 1),
(15199, 'sathish', '6', '8098657648', '', 'sathishboopathy1606@gmail.com', '2002-06-16', 21, '2', '2', 'boopathy', 'bus conductor', 45000.00, 1, 0.00, 16000.00, 'chengalpattu', 'Chengalpattu', '2311090006', '21', '1', 'upload_files/candidate_tracker/18878830809_sathish.pdf.pdf', NULL, '1', '2023-11-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance almost in the final round with ICICI willnot run in a long need to check later if he comes back', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-09 07:03:30', 108, '2023-11-09 12:49:56', 0, NULL, 1),
(15200, 'Anushiya B', '6', '8754460306', '9150304305', 'anushiya572000@gmail.com', '2000-07-05', 23, '2', '2', 'Balamurugan .n', 'Driver', 10000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2311090007', '21', '2', 'upload_files/candidate_tracker/59832524166_Resume.docx', NULL, '1', '2023-11-09', 1, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability is very less', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-09 07:19:44', 108, '2023-11-09 06:20:08', 0, NULL, 1),
(15201, 'V. VISHNUPIRIYA', '11', '9500085210', '', 'vishgeeth99@gmail.com', '1999-02-26', 24, '3', '2', 'T. Geethanjali', 'Teacher', 25000.00, 0, 0.00, 26000.00, 'Chennai', 'Chennai', '2311090008', '', '2', 'upload_files/candidate_tracker/4680774475_Gopika 29.pdf', NULL, '1', '2023-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-09 08:10:17', 1, '2023-11-09 08:12:56', 0, NULL, 1),
(15202, 'Prem kumar A', '13', '9361116233', '', 'prem09157@gmail.com', '2002-05-22', 21, '6', '2', 'M.Arul', 'Car driver', 14000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2311090009', '', '1', 'upload_files/candidate_tracker/60899139830_Prem_kumar_CV.pdf', NULL, '1', '2023-11-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not much Comfort in TxxampC will not sustain and not suitable for our roles too ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-09 08:21:03', 108, '2023-11-09 06:16:25', 0, NULL, 1),
(15203, 'MOHAMMED FAISAL.M', '6', '9894236488', '', 'faisalmohammedmsd@gamil.com', '2002-04-12', 21, '2', '2', 'Mohammed kasim', 'Steal work', 10000.00, 1, 11000.00, 15000.00, 'Muslim street Silaiman madurai', 'Seven well manadi Broadway Chennai', '2311090010', '1', '2', 'upload_files/candidate_tracker/56516135254_CV FAISAL.pdf', NULL, '1', '2023-11-09', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile check for Muthu Team only 3 months exp in imarque sustainability doubts kindly check for muthu team and let us know', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-09 09:32:24', 104, '2023-11-11 12:48:11', 0, NULL, 1),
(15204, 'A.Adaikkalam', '2', '7604894395', '6374361549', 'adaikkalarajaa@gmail.com', '2001-12-04', 21, '6', '2', 'K.Angamuthu', 'Farmer', 10000.00, 4, 0.00, 15000.00, 'Pudukkottai', 'pudukkottai', '2311090011', '', '1', 'upload_files/candidate_tracker/74450293349_Adaikkalam.pdf', NULL, '1', '2023-11-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to train from scratch not much comfort in TxxampC if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-09 09:39:43', 108, '2023-11-09 06:15:48', 0, NULL, 1),
(15205, 'Sumaiya', '5', '9344067674', '8122996623', 'nasirnajma2396@gmail.com', '1997-03-23', 26, '2', '2', 'Abdul nasir', 'Catering services', 6.00, 1, 3.30, 4.00, 'Chennai', 'Chennai', '2311090012', '1', '2', 'upload_files/candidate_tracker/1509491812_resume-1.pdf', NULL, '1', '2023-11-11', 15, '', '3', '59', '2023-12-01', 375000.00, '', '5', '1970-01-01', '1', 'Selected for Santhosh Team in Staff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-09 09:59:17', 60, '2023-11-24 03:56:20', 0, NULL, 1),
(15206, 'Kishore', '6', '9342142993', '8111021346', 'Kishore2001vellore@gmail.com', '2001-01-01', 22, '3', '2', 'Venkatesan', 'Business', 150000.00, 1, 14000.00, 13500.00, 'Chinna arumbakkam vellore', 'Padi lucas', '2311100001', '', '2', 'upload_files/candidate_tracker/74170866275_Kishore 012 resume.pdf', NULL, '1', '2023-11-10', 3, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not clear in the communication Mentioned 2 months exp in Hathway sustainability doubts in  our role will not handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-10 04:06:28', 108, '2023-11-10 03:19:15', 0, NULL, 1),
(15207, 'Titus Solomon', '5', '9113835042', '', 'tituzsizzler@gmail.com', '1996-03-24', 27, '2', '2', 'Angel', 'Telesales executive', 30000.00, 2, 27000.00, 32000.00, 'Bengaluru', 'Bengaluru', '2311100002', '1', '2', 'upload_files/candidate_tracker/96478617599_DOC-20231016-WA0003..docx', NULL, '1', '2023-11-10', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-10 05:17:26', 85, '2023-11-10 01:21:52', 0, NULL, 1),
(15208, 'Sethupathi', '13', '8610925301', '8270925301', 'as.sethupathi@gmail.com', '2002-05-29', 21, '6', '2', 'Saritha', 'Farmer', 15000.00, 2, 0.00, 18000.00, 'THIRUVANNAMALAI', 'THIRUVANNAMALAI', '2311100003', '', '1', 'upload_files/candidate_tracker/8590533836_Sethupathi_Junior_FullStack_Developer.pdf', NULL, '1', '2023-11-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Career Gap 1yr Not much comfort in TxxampC if he comes back let us try\n', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-10 06:30:02', 108, '2023-11-10 03:20:21', 0, NULL, 1),
(15209, 'Anand K', '13', '8122091802', '6385029142', 'anandkvijaya@gmail.com', '2002-07-09', 21, '6', '2', 'Vijayalakshmi K', 'AWW worker', 12000.00, 2, 0.00, 150000.00, 'Vandavasi, Thiruvannamalai Dt.', 'Avadi', '2311100004', '', '1', 'upload_files/candidate_tracker/32923239547_Anand - Resume(MySQL and PHP Developer) (1).pdf', NULL, '1', '2023-11-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to train from scratch not much comfort in  TxxampC if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-10 08:50:43', 108, '2023-11-10 03:19:50', 0, NULL, 1),
(15210, 'Yokeshwaaran.G', '16', '8526686823', '9080345553', 'yokeshwaranbca@gmail.com', '1993-06-01', 30, '2', '2', 'Govindharaj', 'Farmer', 10000.00, 0, 28000.00, 32000.00, 'Krishnagiri', 'Chennai', '2311100005', '1', '2', 'upload_files/candidate_tracker/24262571580_Yokesh_Resume.-1.docx', NULL, '1', '2023-11-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication written skills poor will not sustain and not suitabel', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-10 09:33:36', 104, '2023-11-14 09:45:50', 0, NULL, 1),
(15211, 'Jayanthi G', '4', '9597017144', '6369966183', 'jayanthigunasekar98@gmail.com', '1998-08-21', 25, '2', '2', 'Gunasekaran N', 'Daily wages', 20000.00, 3, 16500.00, 18000.00, '29 kaadu Vetti street kumbakonam', '29 kaadu Vetti street kumbakonam', '2311100006', '1', '2', 'upload_files/candidate_tracker/23427693869_2983798_Resume_-_G._Jayanthi.pdf', NULL, '1', '2023-11-11', 15, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-10 11:38:56', 108, '2023-11-13 11:37:03', 0, NULL, 1),
(15212, 'Lingam B', '16', '9841486663', '9360647922', 'Lingamloki2001@gmail.com', '2001-12-26', 21, '2', '2', 'Baskar p', 'Van driver', 85000.00, 1, 2.00, 3.50, 'Chennai', 'Chennai', '2311110001', '1', '2', 'upload_files/candidate_tracker/17454623965_LINGAM RESUME 26.pdf', NULL, '1', '2023-11-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average year back he appeared for IT and now for MIS Written Skills no will  not sustain and handle our work pressure', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-11 04:56:47', 104, '2023-11-11 12:34:59', 0, NULL, 1),
(15213, 'Vijayalakshmi', '5', '9360885466', '9282329401', 'saivijayalakshmi3999@gmail.com', '1999-03-08', 24, '2', '2', 'Mariyammal', 'Homemaker', 40000.00, 2, 300000.00, 500000.00, 'Chennai', 'Chennai', '2311110002', '1', '2', 'upload_files/candidate_tracker/78362845756_VIJAYALAKSHMI RESUME.pdf', NULL, '1', '2023-11-11', 60, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Notice 60 days looking for salary growth will not sustain in a long pressure handling in our roles doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-11 08:45:00', 108, '2023-11-13 10:26:25', 0, NULL, 1),
(15214, 'Naveen Kumar', '5', '8637640620', '8122462303', 'naveennjr001123@gmail.com', '1999-08-23', 24, '2', '1', 'Deepika', 'Diploma discontinue', 4.00, 0, 25000.00, 27000.00, 'Chennai', 'Chennai', '2311130001', '1', '2', 'upload_files/candidate_tracker/60115588199_Resume+(2)-1.pdf', NULL, '1', '2023-11-13', 0, '', '3', '59', '2023-11-27', 345696.00, '', '5', '1970-01-01', '1', 'Selected for Sarath Team Staff Roles', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-13 06:09:02', 60, '2023-11-25 06:09:36', 0, NULL, 1),
(15215, 'adithyan', '7', '9940118233', '', 's.v.adithyan90@gmail.com', '1990-05-18', 33, '2', '2', 'subbu', 'retired government employee', 32000.00, 1, 11000.00, 20000.00, 'chrompet', 'Chrompet', '2311130002', '1', '2', 'upload_files/candidate_tracker/34187551229_I am sharing', NULL, '1', '2023-11-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Career Gap will not sustain in our roles and not suitable', '7', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-13 07:10:57', 104, '2023-11-14 09:46:12', 0, NULL, 1),
(15216, 'A.yuva sree', '4', '7338919777', '7358092990', 'yuvasree1823@gmail.com', '2003-05-18', 20, '3', '2', 'Arunachalam', 'Car driver', 45000.00, 1, 0.00, 15000.00, 'Indra Nagar alwarthirunagar Chennai 87', 'Chennai', '2311140001', '', '1', 'upload_files/candidate_tracker/54356669462_yuva_resume.docx', NULL, '1', '2023-11-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-14 04:57:42', 1, '2023-11-14 05:03:03', 0, NULL, 1),
(15217, 'A.yuva sree', '5', '7338919744', '7358092990', 'yuvasree1823@gmail.com', '2003-05-18', 20, '2', '2', 'Arunachalam', 'Car driver', 45000.00, 1, 0.00, 15000.00, 'Indra Nagar alwarthirunagar Chennai 87', 'Chennai', '2311140002', '1', '1', 'upload_files/candidate_tracker/71931938103_yuva.docx', NULL, '1', '2023-11-14', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Communication Ok have 5 months justdial exp kindly check andlet me knwo your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-14 05:04:39', 108, '2023-11-14 05:51:58', 0, NULL, 1),
(15218, 'MariMuthu V', '13', '6383215776', '', 'ajayvijayann8@gmail.com', '2000-11-10', 23, '6', '2', 'Vijayan', 'Shop keeper', 300000.00, 2, 0.00, 300000.00, 'Valasaravakkam', 'Valasaravakkam', '2311140003', '', '1', 'upload_files/candidate_tracker/90535408630_Marimuthu.resume.file.pdf', NULL, '1', '2023-11-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher not much comfort in txxampC if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-14 06:37:27', 108, '2023-11-14 05:52:36', 0, NULL, 1),
(15219, 'Vinitha R', '31', '6383698183', '9566456629', 'vinitharamasamy39@gmail.com', '2002-12-30', 20, '6', '2', 'Sowdeeswari', 'Own Business', 15000.00, 2, 0.00, 150000.00, 'Dindigul', 'Thambaram', '2311140004', '', '1', 'upload_files/candidate_tracker/99714563513_VinithaRamasamy-1.pdf', NULL, '1', '2023-11-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher not much comfort with the terms and conditions if the candidate comes back let us try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-14 06:39:04', 108, '2023-11-14 05:53:01', 0, NULL, 1),
(15220, 'k.revathi', '33', '6374779088', '', 'revathineela512@gmail.com', '1999-12-05', 23, '6', '2', 'kandasamy', 'velder', 14000.00, 1, 23000.00, 24000.00, 'Chennai', 'chennai', '2311140005', '', '2', 'upload_files/candidate_tracker/53671944881_K.Revathi Resume (4).pdf', NULL, '1', '2023-11-14', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Poor no sustainability will not sustain for a long not suitable', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-14 06:50:22', 108, '2023-11-14 05:53:53', 0, NULL, 1),
(15221, '', '0', '9150116788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311140006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-14 10:52:47', 0, NULL, 0, NULL, 1),
(15222, 'A. Kavipriya', '5', '8925453450', '9047682083', 'kavithaanbu09@gmail.com', '2001-10-09', 22, '2', '2', 'E. Anbazhagan', 'Famer', 18.00, 1, 0.00, 15.00, 'Chennai', 'Maduranthakam', '2311140007', '1', '1', 'upload_files/candidate_tracker/73347716015_Kavipriya Res.pdf', NULL, '1', '2023-11-15', 0, '', '3', '59', '2023-11-20', 168000.00, '', '5', '1970-01-01', '2', 'Seleyed for Kannan Team in Staff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-14 01:02:59', 60, '2023-11-20 09:58:47', 0, NULL, 1),
(15223, 'parthiban', '5', '9344974505', '9159589146', 'lpparthiban07@gmail.com', '2008-11-14', 0, '2', '2', 'lp nagarani', 'homemaker', 50000.00, 6, 15000.00, 25000.00, 'kolathur pallipat', 'chennai', '2311140008', '1', '2', 'upload_files/candidate_tracker/79465119489_Parthiban_Resume.pdf', NULL, '1', '2023-11-15', 0, '', '3', '59', '2023-11-16', 204000.00, '', '5', '1970-01-01', '1', 'Selected for Muthu Team in Consultant role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-14 01:05:36', 60, '2023-11-16 10:03:47', 0, NULL, 1),
(15224, 'Sundar', '33', '8072673654', '', 'sundarsams27@gmail.com', '1998-11-27', 24, '6', '2', 'Elumalai', 'Supervisor', 30000.00, 1, 312000.00, 410000.00, 'Chennai', 'Chennai', '2311140009', '', '2', 'upload_files/candidate_tracker/77908884325_Sundar Resume.pdf', NULL, '1', '2023-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much comfort in Timings too long Distance will not sustain', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-14 01:15:37', 108, '2023-11-15 04:27:19', 0, NULL, 1),
(15225, 'Sathishkumar', '4', '8680882369', '7639703606', 'sathishlingam2703@gmail.com', '1998-03-27', 25, '2', '2', 'S.Nagalingam', 'Salesman', 30000.00, 0, 14000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2311140010', '1', '2', 'upload_files/candidate_tracker/18004696795_sathish kumar resume.pdf', NULL, '1', '2023-11-15', 2, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-14 01:35:41', 108, '2023-11-15 04:29:02', 0, NULL, 1),
(15226, '', '0', '6304258099', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311140011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-14 04:42:48', 0, NULL, 0, NULL, 1),
(15227, 'Dhivya R', '4', '6383151072', '9385447180', 'divyar4747@gmail.com', '2000-07-04', 23, '2', '2', 'Ramachandran', 'Ex police officer', 200000.00, 1, 10000.00, 14000.00, 'Thanjavur', 'Thanjavur', '2311150001', '1', '2', 'upload_files/candidate_tracker/41410058750_Dhivya R New.pdf', NULL, '1', '2023-11-15', 15, '', '3', '59', '2023-11-16', 150000.00, '', '5', '1970-01-01', '2', 'Selected for Sithy Team in Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-15 03:43:52', 60, '2023-11-15 07:38:44', 0, NULL, 1),
(15228, 'Sundararajan s', '6', '9790818569', '7338819656', 'Sundarkrish0508@gmail.com', '1999-11-05', 24, '1', '1', 'Chitra devi', 'Tailor', 15000.00, 2, 19300.00, 25000.00, 'Korukkupet chennai 600021', 'Korukkupet chennai 600021', '2311150002', '', '2', 'upload_files/candidate_tracker/79295324788_sundar resume (1).pdf', NULL, '1', '2023-11-15', 30, 'CA130', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have Exp but not much in sales salary is high sustainability internal referencekindly check and let me knowyour inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-15 04:39:47', 108, '2023-11-15 04:32:21', 0, NULL, 1),
(15229, 'Ranjini esakki thangam', '33', '8248321297', '9840650641', 'maliniasokan251986@gmail.com', '1986-05-02', 37, '3', '1', 'Esakki thangam', 'Sr.accounts manager', 45000.00, 0, 25000.00, 33000.00, 'Porur', 'Porur', '2311150003', '', '2', 'upload_files/candidate_tracker/30347788978_RANIJINI(CV).pdf', NULL, '1', '2023-11-15', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '4', '2', '', '1', '8', '', '2', '2023-11-16', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-15 04:48:02', 108, '2023-11-15 04:39:02', 0, NULL, 1),
(15230, 'Gokulakrishnan', '16', '9655866067', '', 'gokulz.rm@gmail.com', '1995-07-29', 28, '3', '2', 'Ramalingam', 'Civil engineer', 45000.00, 1, 280000.00, 400000.00, 'Cuddalore', 'Perungudi', '2311150004', '', '2', 'upload_files/candidate_tracker/1258136881_Gokulakrishnan (1).pdf', NULL, '1', '2023-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication Average MIS role Settled family sustainability doubts a lot  not much comfort in TxxampC', '3', '2', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-15 05:21:18', 108, '2023-11-15 04:34:32', 0, NULL, 1),
(15231, 'Arthi', '5', '9345020454', '7200304822', 'arthijessika5@gmail.com', '2003-06-11', 20, '2', '2', 'Selvan', 'Office worker', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2311150005', '1', '1', 'upload_files/candidate_tracker/14068823178_arthi resume.pdf', NULL, '1', '2023-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sounding low will not sustain and not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-15 05:25:14', 108, '2023-11-15 04:38:20', 0, NULL, 1),
(15232, 'Kannabiran s', '16', '9159962458', '9025264748', 'kannarub3567@gmail.com', '2001-06-06', 22, '2', '2', 'V soundararajan', 'Army (BSF)', 70000.00, 1, 0.00, 23000.00, 'Tirupattur', 'Saidapet', '2311150006', '1', '1', 'upload_files/candidate_tracker/63008557786_S KANNABIRAN RESUME.pdf', NULL, '1', '2023-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Bio Tech Opportunities will not sustain in our roles he is very clear to proceed  with that only', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-15 05:30:49', 104, '2023-11-15 12:09:17', 0, NULL, 1),
(15233, 'Preethi', '5', '9025163499', '', 'preethi5dhavamani@gmail.com', '2003-01-12', 20, '2', '2', 'Arjunan', 'Safety officer in abroad', 200000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2311150007', '1', '1', 'upload_files/candidate_tracker/27817922745_preethi doc.pdf', NULL, '1', '2023-11-15', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher souding high can give a try kindly check andlet me know your inputs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-15 05:39:27', 108, '2023-11-15 04:41:47', 0, NULL, 1),
(15234, 'Varsha', '6', '9150126788', '9600052788', 'varshachampchandvarsha@gmali.com', '2008-11-15', 0, '2', '1', 'Parent', 'Bpo', 15000.00, 0, 18000.00, 20000.00, 'Madhavaram 60', 'Madhavaram 60', '2311150008', '1', '2', 'upload_files/candidate_tracker/95961621772_raghul-1-1-1.docx', NULL, '1', '2023-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left Without attending', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-15 06:50:01', 108, '2023-11-15 04:44:19', 0, NULL, 1),
(15235, 'A.J.Jayasree', '6', '7338707427', '', 'jsree2700@gmail.com', '2002-05-03', 21, '2', '2', 'Parent', 'Bpo', 15000.00, 0, 13000.00, 15000.00, 'Kavangarai, Puzhal, ch -66', 'Kavangarai, Puzhal, ch-66', '2311150009', '1', '2', 'upload_files/candidate_tracker/77480065760_Jayasree Resume.pdf', NULL, '1', '2023-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left Without Attending', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-15 06:50:43', 108, '2023-11-15 04:45:03', 0, NULL, 1),
(15236, 'K. Thirumurugan', '5', '9514719979', '', 'kgayathri129@gmail.com', '1997-05-29', 26, '2', '2', 'Arulmani', 'Housewife', 18000.00, 3, 18000.00, 18000.00, 'Cuddalore district', 'Royapettah', '2311150010', '1', '2', 'upload_files/candidate_tracker/52357726745_Thirumurugan Resume new 1_1699508262309_Thirumurugan .pdf', NULL, '1', '2023-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Only B2B exp will not take calls and sustain our roles not suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-15 07:46:45', 108, '2023-11-15 04:45:49', 0, NULL, 1),
(15237, 'arul mani', '5', '8270178471', '', 'arulmanitarun@gmail.com', '1996-12-06', 26, '2', '2', 'Anbu', 'Business', 25000.00, 2, 16000.00, 18000.00, 'Pondicherry', 'Chennai', '2311150011', '1', '2', 'upload_files/candidate_tracker/84439912132_Resume_Arul mani yadav_Format1.pdf', NULL, '1', '2023-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Average Profile Scheduled for next round with Shanmugam but left without attending the interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-15 08:06:33', 108, '2023-11-15 04:46:33', 0, NULL, 1),
(15238, 'Karthik', '5', '6380093495', '', 'jkarthikeyan1945@gmail.com', '1999-06-14', 24, '3', '2', '-', '-', 30000.00, 1, 0.00, 17000.00, 'Porur chennai', 'Porur chennai', '2311150012', '', '1', 'upload_files/candidate_tracker/41743648456_karthik.doc', NULL, '1', '2023-11-16', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustain Problem, As Well as Slow Learning , Pitching Issue', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-15 10:03:15', 108, '2023-11-16 07:09:53', 0, NULL, 1),
(15239, 'Joel Thanga Simon', '16', '6380748512', '9842364036', 'Joelk6526@gmail.com', '1999-09-09', 24, '2', '2', 'Koil pitchai', 'Teacher', 80000.00, 2, 0.00, 20000.00, 'Thoothukudi', 'Chennai', '2311150013', '1', '1', 'upload_files/candidate_tracker/21535793429_Joel Resume DA.pdf', NULL, '1', '2023-11-16', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-15 01:16:17', 104, '2023-11-16 07:21:44', 0, NULL, 1),
(15240, 'Jenifer Harini. J', '4', '7708890028', '9003388009', 'jeniferharinij@gmail.com', '2003-01-19', 20, '2', '2', 'John Prabhu.S.A', 'Finance', 25000.00, 1, 0.00, 12000.00, '211, Fathima nagar, N.K. Road, Thanjavur', '1708, Solan Street, Thillai nagar, Villar Road', '2311150014', '1', '1', 'upload_files/candidate_tracker/16808847996_RESUME....pdf', NULL, '1', '2023-11-16', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-15 01:44:13', 108, '2023-11-16 07:10:33', 0, NULL, 1),
(15241, '', '0', '6381881348', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311150015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-15 02:03:36', 0, NULL, 0, NULL, 1),
(15242, '', '0', '8431230241', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311150016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-15 06:19:48', 0, NULL, 0, NULL, 1),
(15243, 'D.LEONY ELAVARASI', '5', '8015426264', '8915426264', 'leovivil2019@gmail.com', '2002-08-05', 21, '3', '2', 'G.Dhairiyam', 'B.E(CSE)', 20000.00, 3, 0.00, 15000.00, 'Nangathur, Villupuram', 'villivakkam , Chennai', '2311160001', '', '1', 'upload_files/candidate_tracker/98560539604_Resume_LEONY ELAVARASI D_Format7.pdf', NULL, '1', '2023-11-16', 0, '', '3', '59', '2023-11-20', 164400.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-16 05:04:20', 60, '2023-11-18 05:41:05', 0, NULL, 1),
(15244, '', '0', '8953428515', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311160002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-16 05:33:31', 0, NULL, 0, NULL, 1),
(15245, 'Yokeshwaran', '6', '8428632790', '', 'sy7122002@gmail.com', '2002-07-12', 21, '2', '2', 'Sundharamoorthy', 'Late', 15000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2311160003', '1', '1', 'upload_files/candidate_tracker/61245597710_MY RESUMEsy712002@gmail.com.docx', NULL, '1', '2023-11-16', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile Not much active pressure handling doubts in our role kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-16 06:44:18', 104, '2023-11-16 07:21:36', 0, NULL, 1),
(15246, 'Naveen Kumar', '16', '6374844304', '6369188892', 'naveenshan544@gmail.com', '2000-05-14', 23, '2', '2', 'Santhi mother', 'House keeping', 200000.00, 1, 0.00, 15000.00, 'Besant Nagar', 'Besant Nagar', '2311160004', '1', '1', 'upload_files/candidate_tracker/93608716457_CV_2023081823170245.pdf', NULL, '1', '2023-11-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Voice process Attitude got several offers and declined due to insurance sales will not sustain', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-16 07:13:06', 104, '2023-11-16 07:24:14', 0, NULL, 1),
(15247, 'Jothika', '6', '9176039475', '', 'jothikagovindaraj08@gmail.com', '2001-07-08', 22, '3', '2', 'Govindaraj r', 'Metro water', 80000.00, 1, 17000.00, 16000.00, 'New washermenpet chennai 600081', 'Chennai', '2311160005', '', '2', 'upload_files/candidate_tracker/43105198546_Jothika_Resume (1).docx', NULL, '1', '2023-11-16', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Calling Can give a try she need to come with her confirmation if she comes back let us try', '5', '1', '', '1', '8', '', '2', '2023-11-17', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-16 12:31:39', 85, '2023-11-16 07:07:14', 0, NULL, 1),
(15248, 'Vishva R', '16', '6379276608', '9597672739', 'vishvaraghu.v@gmail.com', '2003-01-16', 20, '2', '2', 'Raghu', 'Ex service man', 200000.00, 1, 0.00, 25000.00, 'Cuddalore', 'Thoraipakkam', '2311160006', '1', '1', 'upload_files/candidate_tracker/16503783210_Vishva.pdf', NULL, '1', '2023-11-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication very Average and writing skills poor will not sustain and handling doubts a lot not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-16 01:45:19', 108, '2023-11-17 06:13:44', 0, NULL, 1),
(15249, 'Saranya', '4', '7708754937', '9659812633', 'saransaranya.k97@gmail.com', '1997-10-23', 26, '2', '1', 'Saravanan', 'Fresher', 100000.00, 1, 0.00, 500000.00, 'Thanjavur', 'Thanjavur', '2311160007', '1', '1', 'upload_files/candidate_tracker/73612649866_Saranya Resume .docx', NULL, '1', '2023-11-17', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-16 01:49:58', 108, '2023-11-17 10:27:06', 0, NULL, 1),
(15250, 'Sundarjee', '5', '9566697106', '9751175767', 'vsundarjeeg@gmail.com', '1999-04-21', 24, '3', '2', 'venkatesan', 'Inspector of police', 90000.00, 1, 0.00, 22000.00, 'Banglore', 'LAA regency, Mica layout, (Hongsandra )', '2311170001', '', '1', 'upload_files/candidate_tracker/65640570506_sundar.pdf.2.pdf', NULL, '1', '2023-11-17', 0, '', '3', '59', '2023-11-27', 264000.00, '', '5', '1970-01-01', '1', 'Selected fir Madiwaala Consultant Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-17 04:37:52', 60, '2023-11-25 06:10:47', 0, NULL, 1),
(15251, 'Konduru Manoj kumar', '5', '9581361960', '', 'manojkonduru1999@gmail.com', '1999-08-12', 24, '3', '2', 'Konduru parndhama reddy', 'farmer', 15000.00, 1, 20000.00, 25000.00, 'vavilla, vilage, Vidavalur post, nellore Ap 524218', 'laa Resigency, mico layout, hongsandra', '2311170002', '', '2', 'upload_files/candidate_tracker/25967028018_manoj kumar new resume-converted (1).docx', NULL, '1', '2023-11-17', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Confirm the joining process', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-17 04:38:05', 85, '2023-11-17 06:06:19', 0, NULL, 1),
(15252, 'Dhanasri. K', '6', '8428356806', '', 'dhanasrikarthi18@gmail.com', '2003-07-18', 20, '2', '2', 'Karthi', 'Tea business', 30000.00, 2, 0.00, 15000.00, 'Kanchipuram', '217 indira nagar voc stree, kanchipuram.', '2311170003', '21', '1', 'upload_files/candidate_tracker/13435352645_Resume_K. Dhanasri.pdf', NULL, '1', '2023-11-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long Distance not sure on the relocation Sustainability Doubts need to open up  a lot not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-17 04:57:37', 108, '2023-11-17 06:10:49', 0, NULL, 1),
(15253, 'Nivetha .N', '6', '8637447640', '9345869162', 'nivethabcs2020@gmail.com', '2008-11-17', 0, '2', '2', 'Nagaraj', 'Car painting', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2311170004', '21', '1', 'upload_files/candidate_tracker/53569731740_Nivetha Resume (1)-1.docx', NULL, '1', '2023-11-17', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Shortlisted But Not Joining', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-17 06:12:24', 108, '2023-11-17 06:11:49', 0, NULL, 1),
(15254, 'Sathika T', '16', '8608235746', '9790027905', 'Sathika293@gmail.com', '2001-06-09', 22, '2', '2', 'Thirunavukkarasu', 'Manager', 150000.00, 1, 162000.00, 250000.00, 'Neelangarai', 'Neelangarai', '2311170005', '1', '2', 'upload_files/candidate_tracker/41071103617_Sathika.T resume .pdf', NULL, '1', '2023-11-17', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Final Round with Gokul Need to confirm the salary max we can go upto 1.9\n', '3', '1', '', '1', '8', '', '2', '2023-11-18', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-17 06:14:52', 85, '2023-11-17 06:08:16', 0, NULL, 1),
(15255, '', '0', '8566175510', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311170006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-17 06:26:13', 0, NULL, 0, NULL, 1),
(15256, 'Manoj singh', '6', '9444763809', '', 'manojsinghpundir0304@gmail.com', '2008-11-17', 0, '2', '1', 'Mangal singh', 'Ex inspector central government', 47000.00, 1, 23700.00, 2800029000.00, 'Chennai', 'Chennai', '2311170007', '1', '2', 'upload_files/candidate_tracker/46905471392_Share_Manoj_Resume (1).docx', NULL, '1', '2023-11-17', 0, '', '4', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile have exp in calling age around 37 yrs relevant exp need to check his sustainability kindly check and let me know your inputs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-11-17 08:55:58', 85, '2023-11-17 06:21:10', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15257, 'Srikanta das', '5', '7008242036', '7749954129', 'srikantadas240@gmail.com', '1997-05-13', 26, '4', '2', 'Jogendra das', 'Government job', 80000.00, 1, 998000.00, 1000000.00, 'Bhubaneswar', 'Btm stage 2', '2311170008', '', '2', 'upload_files/candidate_tracker/34444582545_CV_2023090413413964-1.pdf', NULL, '1', '2023-11-17', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discuss about salary part max 24k', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-17 09:36:10', 85, '2023-11-17 06:09:03', 0, NULL, 1),
(15258, 'Vignesh Velthangam', '4', '9150186097', '', 'Vign29063@gmail.com', '2000-07-01', 23, '3', '2', 'Velthangam R', 'Cooli work', 10000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2311170009', '', '1', 'upload_files/candidate_tracker/8233393125_Resume_Vignesh-4.pdf', NULL, '1', '2023-11-18', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-17 01:00:50', 1, '2023-11-17 01:14:20', 0, NULL, 1),
(15259, 'Kowsalya', '4', '9566036474', '6381437029', 'kowsakowsi@gmail.com', '2003-01-19', 20, '2', '2', 'Umapathy L', 'Driver', 19000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2311180001', '21', '1', 'upload_files/candidate_tracker/80591704653_DOC-20230822-WA0168..pdf', NULL, '1', '2023-11-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for insurance sales roles will not sustain and handle pressure', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-18 04:30:32', 85, '2023-11-18 01:23:35', 0, NULL, 1),
(15260, 'Ragunath N', '33', '9360191616', '9003072181', 'ragunath0810@gmail.com', '2001-10-08', 22, '3', '2', 'Parent', 'Farmer', 6000.00, 1, 175000.00, 275000.00, 'Kallakurichi', 'Chennai', '2311180002', '', '2', 'upload_files/candidate_tracker/78675737154_RAGUNATH RESUME (1).pdf', NULL, '1', '2023-11-24', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-18 05:25:20', 1, '2023-11-18 05:35:59', 0, NULL, 1),
(15261, 'Syed khadir Basha', '6', '8050888306', '', 'skhadirbasha@gmail.com', '1988-05-20', 35, '3', '1', 'Mohammed Ayan', 'Business', 35000.00, 1, 0.00, 45000.00, 'Mangamanapalya, Bommanahalli, Bangalore.', 'Mangamanapalya, Bommanahalli, Bangalore', '2311180003', '', '2', 'upload_files/candidate_tracker/54455416233_DOC-20231101-WA0034. (1).pdf', NULL, '1', '2023-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-18 05:38:06', 1, '2023-11-18 05:44:07', 0, NULL, 1),
(15262, 'Devi.S', '6', '9677105157', '8637440029', 'Devisiva2506@gmail.com', '2001-06-25', 22, '2', '1', 'Amudha', 'Housekeeping', 20000.00, 1, 20000.00, 20000.00, 'Th road', 'Th road', '2311180004', '1', '2', 'upload_files/candidate_tracker/6255335237_Resume_Resume_Format5.pdf', NULL, '1', '2023-11-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-11-18 06:03:12', 85, '2023-11-20 06:42:49', 0, NULL, 1),
(15263, 'Janani.M', '4', '8925123695', '9003054117', 'jananijana4346@gmail.com', '2002-01-04', 21, '3', '2', 'Kumari.M', 'Housekeeping', 20000.00, 1, 20000.00, 20000.00, 'Th road', 'Chennai', '2311180005', '', '2', 'upload_files/candidate_tracker/14935675703_ Janani - RESUME.pdf', NULL, '1', '2023-11-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-18 06:03:42', 1, '2023-11-18 06:26:10', 0, NULL, 1),
(15264, 'Maras', '16', '9176993489', '', 'marsdamian777@gmail.com', '1997-09-25', 26, '2', '2', 'Baskar', 'Business', 300000.00, 1, 180000.00, 250000.00, 'Chennai', 'Chennai', '2311180006', '1', '2', 'upload_files/candidate_tracker/62398753211_maras (2).pdf', NULL, '1', '2023-11-18', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to come for final round with Gokul if he comes back let us try', '3', '1', '', '1', '8', '', '2', '2023-11-28', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-18 06:27:33', 85, '2023-11-18 01:23:10', 0, NULL, 1),
(15265, '', '0', '9089444392', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311180007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-18 06:30:53', 0, NULL, 0, NULL, 1),
(15266, 'Abirami s', '28', '6382774461', '6383774461', 'abiramisampathabirami@gmail.com', '2001-11-30', 21, '3', '2', 'Sampath l', 'Building contractor', 18000.00, 1, 14000.00, 18000.00, 'Virugambakkam', 'Virugambakkam', '2311180008', '', '2', 'upload_files/candidate_tracker/99239985153_Abirami resume new-2.docx', NULL, '1', '2023-11-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-18 06:46:42', 1, '2023-11-18 07:09:07', 0, NULL, 1),
(15267, 'hariharan', '13', '9994309543', '', 'hariharan2432002@gmail.com', '2002-03-24', 21, '6', '2', 'rangaraja', 'cms operator', 30000.00, 1, 0.00, 300000.00, 'thanjavur', 'Chennai', '2311180009', '', '1', 'upload_files/candidate_tracker/30837692927_Hariharan Rpdf (1).pdf', NULL, '1', '2023-11-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-18 06:55:41', 1, '2023-11-18 07:38:34', 0, NULL, 1),
(15268, 'Vijayakumar.N', '28', '9363506738', '9840393118', 'vijayv04537@gmail.com', '2002-03-20', 21, '3', '2', 'Narayanan.R', 'Svs club', 16000.00, 1, 15000.00, 18000.00, 'guduvanchery', 'vadapalani', '2311180010', '', '2', 'upload_files/candidate_tracker/18895395368_New resume Vijay Kumar.N 110.docx', NULL, '1', '2023-11-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-18 06:58:55', 1, '2023-11-18 07:10:06', 0, NULL, 1),
(15269, 'Hariharan', '28', '9345397790', '', 'Hari131704@gmail.com', '1998-10-13', 25, '3', '2', 'E ananthi', 'House wife', 15000.00, 2, 14000.00, 18000.00, 'Mayiladuthurai', 'Triplicane', '2311180011', '', '2', 'upload_files/candidate_tracker/76563984774_Resume hari (1).pdf', NULL, '1', '2023-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-18 07:14:21', 1, '2023-11-18 07:18:03', 0, NULL, 1),
(15270, '', '0', '7204786673', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311180012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-18 07:37:40', 0, NULL, 0, NULL, 1),
(15271, 'Priya.j', '31', '9080444392', '', 'Priyapriya89226@gmail.com', '2001-06-26', 22, '3', '2', 'M.jaishankar', 'Former', 15000.00, 2, 0.00, 15000.00, 'Thiruvannmalai', 'Chennai', '2311180013', '', '1', 'upload_files/candidate_tracker/63153775999_Priya .pdf', NULL, '1', '2023-11-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interview For Full Stack And The Candidate Is Not Much Comfort With The TxxampC If He Comes Back Let Su Try.', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-18 07:45:03', 1, '2023-11-18 07:48:15', 0, NULL, 1),
(15272, 'Mohamed Asik', '6', '7868956721', '', 'asik.adhil@gmail.com', '1999-05-27', 24, '2', '2', 'Jahabar Nachiya', 'Housewife', 10000.00, 1, 16000.00, 16000.00, 'Thiruvarur', 'Chennai vadapalani', '2311190001', '1', '2', 'upload_files/candidate_tracker/33096680381_Asik resume.pdf', NULL, '1', '2023-11-20', 0, '', '3', '59', '2023-11-21', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-19 11:35:59', 60, '2023-11-21 10:11:00', 0, NULL, 1),
(15273, 'Harini Priyadarshini', '6', '9940205805', '', 'Harinipriyadharshini.official28@gmail.com', '2002-09-30', 21, '2', '2', 'Mullai vanavendhan M', 'Conductor', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2311200001', '1', '1', 'upload_files/candidate_tracker/33923825028_Harini.pdf', NULL, '1', '2023-11-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok but regular MBA going on Interested in IT opening sustainability doubts if she comes back let us try Left without attending the 2nd level', '5', '1', '', '1', '8', '', '2', '2023-11-22', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-20 01:31:44', 104, '2023-11-21 09:55:18', 0, NULL, 1),
(15274, 'Deepak A', '6', '9363343688', '8344453135', 'deepakabel001@gmail.com', '1999-01-21', 24, '2', '2', 'M Abel', 'Shop keeper', 15000.00, 0, 15000.00, 15000.00, 'Tiruvallur', 'Tiruvallur', '2311200002', '1', '2', 'upload_files/candidate_tracker/66954373246_D.IT Manager CV Resume.pdf', NULL, '1', '2023-11-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sounding low Sustainability Doubt Pressure handling doubt left without attending the 2nd lvel with Gopinath', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-20 03:34:37', 104, '2023-11-21 09:55:35', 0, NULL, 1),
(15275, 'Pasupathi R', '4', '8523904352', '', 'Rpasupathi21101995@gmail.com', '1995-10-02', 28, '2', '2', 'RAJENDRAN p', 'Farmer', 45000.00, 3, 0.00, 15000.00, 'Karambakudi', 'Karambakudi', '2311200003', '1', '1', 'upload_files/candidate_tracker/1127494703_Pasupathi R-1.pdf', NULL, '1', '2023-11-20', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-20 04:34:18', 108, '2023-11-20 05:55:23', 0, NULL, 1),
(15276, 'Saranya S', '6', '7397315609', '', 'saranyasukumar473@gmail.com', '2002-03-22', 23, '2', '2', 'Sukumar', 'Real estate', 50000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2311200004', '1', '2', 'upload_files/candidate_tracker/59526619984_RESUMESARANYA.pdf', NULL, '1', '2025-08-16', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2023-11-20 05:01:06', 154, '2025-08-16 12:33:47', 0, NULL, 1),
(15277, 'Anusuya M', '4', '6385590121', '9344789661', 'anusuyaml12@gmail.com', '1998-06-18', 25, '2', '2', 'Murugan A', 'Farmer', 20000.00, 1, 15000.00, 15000.00, 'Needamangalam', 'Needamangalam', '2311200005', '1', '2', 'upload_files/candidate_tracker/42880594836_anusuya resume.pdf', NULL, '1', '2023-11-20', 30, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-20 05:07:48', 104, '2023-11-21 09:55:57', 0, NULL, 1),
(15278, 'Pandi Prasath.S', '33', '6374927246', '9361901512', 'Pandilekha2928@gmail.com', '2003-01-29', 20, '6', '2', 'Sankar', 'Automobiles sales representative', 20000.00, 1, 18000.00, 25000.00, 'Villivakkam, chennai', 'Villivakkam, chennai', '2311200006', '', '2', 'upload_files/candidate_tracker/51061541506_resume_XMaN5LEpzcm1_1695133079183.pdf', NULL, '1', '2023-11-20', 45, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have  6 months ongoing exp in Accounts with the pay of 18K looking for change as he is not comfort with the current Salary will not sustain', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-20 05:26:41', 108, '2023-11-20 05:53:41', 0, NULL, 1),
(15279, 'Yamini P', '5', '7904334895', '8148282794', 'yaminiparihere@gmail.com', '1996-03-12', 27, '2', '1', 'Vinoth kumar', 'Tele consultant', 70000.00, 1, 2.30, 400000.00, 'Nanmangalam', 'Nanmangalam', '2311200007', '1', '2', 'upload_files/candidate_tracker/67996735112_Yamini CV.docx', NULL, '1', '2023-11-22', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-20 06:05:43', 85, '2023-11-22 06:57:46', 0, NULL, 1),
(15280, 'Manas Ranjan behera', '5', '8904220110', '7064500577', 'mbehera08@gmail.com', '1989-05-25', 34, '3', '1', 'Sangita Routa', 'Housewife', 45000.00, 2, 0.00, 30000.00, 'Bhanjanagar, Ganjam, odisha', 'Madiwala, Bangalore, karnataka', '2311200008', '', '2', 'upload_files/candidate_tracker/23453975263_Update_Manas_Resume - updated_marketing.doc', NULL, '1', '2023-11-20', 0, '', '3', '59', '2023-11-27', 276000.00, '', '5', '1970-01-01', '1', 'Selected for Bangalore Consultant Role', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-20 06:11:38', 60, '2023-11-27 03:06:59', 0, NULL, 1),
(15281, '', '0', '7200507649', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-20 06:57:20', 0, NULL, 0, NULL, 1),
(15282, 'Priyanka', '4', '9150450016', '9150195016', 'priyankagovardhanan27@gmail.com', '2001-01-27', 22, '2', '2', 'Govardhana Babu', 'Water suplier', 9000.00, 1, 0.00, 15000.00, 'Perambur Chennai', 'Perambur Chennai', '2311200010', '1', '1', 'upload_files/candidate_tracker/51358811733_CV 1.pdf', NULL, '1', '2023-11-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our roles can give a try need to check with 2nd level but left without attending need to come for final round', '1', '1', '', '1', '8', '', '2', '2023-11-21', '2', '3', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-11-20 07:06:07', 108, '2023-11-20 05:57:53', 0, NULL, 1),
(15283, 'ram pradeep', '13', '8939215673', '', 'rampp002@gmail.com', '2002-02-10', 21, '6', '2', 'ramesh', 'lic', 18000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2311200011', '', '1', 'upload_files/candidate_tracker/27671860025_Naukri_Rampradeep[0y_0m].pdf', NULL, '1', '2023-11-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much active will not handle our work pressure not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-20 07:08:14', 108, '2023-11-20 05:50:17', 0, NULL, 1),
(15284, '', '0', '7036741795', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311200012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-20 07:10:16', 0, NULL, 0, NULL, 1),
(15285, 'M J Suraaj', '33', '7395960288', '', 'suraajmj2002@gmail.com', '2002-07-04', 21, '6', '2', 'M K JaiGanesh', 'Accountant', 30000.00, 1, 0.00, 20000.00, 'Kattupakkam, Chennai', 'Kattupakkam, Chennai', '2311200013', '', '1', 'upload_files/candidate_tracker/24230873593_Resume M J Suraaj.pdf', NULL, '1', '2023-11-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher preparing for CA long run doubts  if he comes back let us try', '4', '1', '', '1', '8', '', '2', '2023-11-23', '3', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-20 07:41:38', 108, '2023-11-20 05:48:17', 0, NULL, 1),
(15286, 'V. Revathi', '5', '7845120909', '9789808181', 'venkatrevathi67@gmail.com', '1994-02-15', 29, '2', '1', 'Venkatesh', 'Real estate', 50000.00, 1, 20000.00, 30000.00, 'Chennai', 'Chennai', '2311200014', '1', '2', 'upload_files/candidate_tracker/38443382070_Resume.pdf', NULL, '1', '2023-11-20', 4, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have few months exp in insurance sales but left due to Continuous calls in Star health married and 2 kids sustainability in our domain doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-20 08:35:24', 85, '2023-11-20 02:30:23', 0, NULL, 1),
(15287, 'Karthikeyan', '6', '9092824784', '', 'karthicdm143@email.com', '2002-11-12', 21, '2', '2', 'Manikandan', 'Copper smith', 125000.00, 1, 0.00, 15000.00, 'Chidambaram', 'Sholinganallur', '2311200015', '21', '1', 'upload_files/candidate_tracker/96539941554_Karthik new Resume-1.pdf', NULL, '1', '2023-11-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Field much Attitude will not sustain in our roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-20 09:02:22', 108, '2023-11-20 05:46:04', 0, NULL, 1),
(15288, 'Harikaran', '5', '8610441480', '9092741481', 'harikaran1998k@gmail.com', '1998-08-21', 25, '2', '2', 'Kangaraj', 'Own business', 20000.00, 1, 16250.00, 20000.00, 'Pettavaithalai', 'Pettavaithalai', '2311200016', '1', '2', 'upload_files/candidate_tracker/5991031514_DOC-20231005-WA0014..pdf', NULL, '1', '2023-11-20', 10, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Attended', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-20 09:04:46', 108, '2023-11-20 05:54:25', 0, NULL, 1),
(15289, 'Bhanuprakash', '4', '9908922219', '', 'bhanuprakash5379@gmail.com', '2000-05-05', 23, '3', '2', 'Sriram', 'Farmer', 25000.00, 1, 20000.00, 30000.00, 'Andhrapradesh', 'Majestic', '2311200017', '', '2', 'upload_files/candidate_tracker/4201338572_K Bhanu Prakash (2).pdf', NULL, '1', '2023-11-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-20 09:08:27', 1, '2023-11-20 09:33:42', 0, NULL, 1),
(15290, '', '0', '9789833012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311200018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-20 12:30:45', 0, NULL, 0, NULL, 1),
(15291, 'Miltan', '4', '7548803223', '', 'miltan06082000@gmail.com', '2000-08-06', 23, '2', '2', 'Paul', 'Farmer', 10000.00, 0, 0.00, 20000.00, 'thanjavur', 'thanjavur', '2311200019', '1', '2', 'upload_files/candidate_tracker/23743951604_miltan.pdf', NULL, '1', '2023-11-21', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-20 12:57:30', 108, '2023-11-21 05:31:34', 0, NULL, 1),
(15292, 'vazim athnu', '4', '6381718223', '', 'athnuishaque0821@gmail.com', '1998-08-21', 25, '6', '2', 'ishaque', 'business man', 12000.00, 3, 22500.00, 26000.00, 'saidapet', 'saidapet', '2311200020', '', '2', 'upload_files/candidate_tracker/68876696165_athnu resume0609.pdf', NULL, '1', '2023-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-20 12:58:19', 1, '2023-11-20 01:04:14', 0, NULL, 1),
(15293, 'Damotharan M', '33', '8925626451', '', 'damotharan1522@gmail.com', '2003-02-22', 20, '2', '2', 'Mohanvel A', 'Mtc transport', 600000.00, 1, 0.00, 250000.00, 'Maraimalai Nagar', 'Maraimalai Nagar', '2311200021', '1', '1', 'upload_files/candidate_tracker/4455340863_damotharan resume.pdf', NULL, '1', '2023-11-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2023-11-20 01:01:09', 1, '2023-11-20 01:05:59', 0, NULL, 1),
(15294, 'naveen kumar', '5', '9176320099', '', 'sakthivelnaveen0622@gmail.com', '2002-06-22', 21, '2', '2', 'sakthivel', 'agency deiver', 17000.00, 2, 21500.00, 25000.00, 'saidapet', 'saidapet', '2311200022', '1', '2', 'upload_files/candidate_tracker/13789832988_naveen updated cv.pdf', NULL, '1', '2023-11-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice process only  will not sustain and not suitbale', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-20 04:36:13', 108, '2023-11-21 06:29:25', 0, NULL, 1),
(15295, 'Sajeethasai', '16', '6369741009', '', 'sajeethasai909@gmail.com', '1999-08-30', 24, '2', '2', 'kandavelu', 'bussiness', 50000.00, 1, 2460000.00, 360000.00, 'Chennai', 'Chennai', '2311210001', '1', '2', 'upload_files/candidate_tracker/50284555110_CV_2023112014565739 (1).pdf', NULL, '1', '2023-11-21', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication average 2yrs exp in MIS and exp more in salary if she comes back shall go upto 17-18K overall', '3', '1', '', '1', '8', '', '2', '2023-11-23', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-21 04:56:55', 85, '2023-11-21 05:29:56', 0, NULL, 1),
(15296, 'K ravindra Reddy', '5', '7358734664', '8247562611', 'ravindrakadiri141@gmail.com', '1998-06-15', 25, '2', '2', 'K prathap reddy', 'Farmer', 20000.00, 1, 22900.00, 27000.00, 'Andhra Pradesh', 'Adyar', '2311210002', '1', '2', 'upload_files/candidate_tracker/31587676085_Ravi nov (3).pdf', NULL, '1', '2023-11-21', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No satisfied', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-21 05:12:38', 85, '2023-11-21 05:29:40', 0, NULL, 1),
(15297, 'Seshasai B', '16', '9344820280', '', 'seshadharan65@gmail.com', '2000-12-04', 22, '2', '2', 'Baskar', 'Freelancer', 20000.00, 0, 0.00, 250000.00, 'Chennai', 'Chennai', '2311210003', '1', '1', 'upload_files/candidate_tracker/82790697536_Seshasai_Resume.pdf', NULL, '1', '2023-11-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not comfort to work in saturyday and timings not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-21 05:34:04', 104, '2023-11-30 09:57:58', 0, NULL, 1),
(15298, 'vazim athnu', '5', '6381718223', '', 'athnuishaque0821@gmail.con', '1998-08-21', 25, '2', '2', 'ishaque', 'business', 20000.00, 3, 22500.00, 26000.00, 'saidapet', 'saidap', '2311210004', '1', '2', 'upload_files/candidate_tracker/42402031149_athnu resume0609.pdf', NULL, '1', '2023-11-21', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile have calling exp but not a relevant one kindly check and let me know your inouts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-21 05:34:06', 108, '2023-11-21 06:31:41', 0, NULL, 1),
(15299, 'Yamuna', '6', '9655129494', '', 'yamushivaji@gmail.com', '2002-02-24', 21, '2', '2', 'K shivaji', 'Central Bank of India army guard', 36000.00, 1, 15000.00, 17000.00, 'Mayiladuthuri', 'Anna Nagar', '2311210005', '21', '2', 'upload_files/candidate_tracker/89614602188_S YAMUNA - CV-1.pdf', NULL, '1', '2023-11-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Calling for 6 months and not comfort in handling target not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-21 05:49:24', 108, '2023-11-21 06:32:26', 0, NULL, 1),
(15300, 'SUNILKUMAR S', '33', '7449130567', '', 'ssunilkumars875@gmail.com', '2002-11-21', 21, '4', '2', 'Senthil Kumar s', 'Driver', 48000.00, 1, 0.00, 250000.00, 'Nagapattinam', 'Nagapattinam', '2311210006', '', '1', 'upload_files/candidate_tracker/14329783151_SUNIL.pdf', NULL, '1', '2023-11-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-21 06:07:21', 1, '2023-11-21 06:12:03', 0, NULL, 1),
(15301, 'V. Swathi', '6', '7639678565', '', 'Sandyindia6@gmail.com', '2002-12-02', 20, '2', '2', 'V. Vaduganathan', 'Farmer', 36000.00, 2, 15000.00, 17000.00, 'Chennai', 'Chennai', '2311210007', '21', '2', 'upload_files/candidate_tracker/45650291220_swa.pdf', NULL, '1', '2023-11-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp In Calling For 6 Months And Not Comfort In Handling Target Not Suitable For Our Roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-21 06:09:35', 108, '2023-11-21 06:33:16', 0, NULL, 1),
(15302, 'Diwakar k', '16', '7358633186', '', 'Kpraveen2459@gmail.com', '1998-06-08', 25, '2', '2', 'G kamala kannan', 'Testing officer', 400000.00, 1, 0.00, 23000.00, 'Chennai', 'Chennai', '2311210008', '1', '2', 'upload_files/candidate_tracker/17234209014_CV_2023-11-05-042120.pdf', NULL, '1', '2023-11-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Govt exams fresher long career gap pronunciation difficult will not sustain not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-21 06:27:40', 104, '2023-11-30 09:57:24', 0, NULL, 1),
(15303, 'Manoj C', '16', '8610626347', '', 'manojrtr96@gmail.com', '1996-12-29', 26, '2', '1', 'Sandhya', 'Working', 15000.00, 0, 221000.00, 350000.00, 'Avadi', 'Ambattur', '2311210009', '1', '2', 'upload_files/candidate_tracker/57099205622_Manoj Resume.pdf', NULL, '1', '2023-11-21', 0, '', '3', '59', '2023-11-22', 242496.00, '', '5', '1970-01-01', '1', 'Selected for MIS Role in PT only', '3', '2', '4', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-21 06:29:13', 60, '2023-11-21 07:36:12', 0, NULL, 1),
(15304, 'Tamilselvi', '16', '9791215843', '9092656840', 'tamilselvi0864@gmail.com', '1998-09-29', 25, '2', '1', 'Mohan', 'Tailer', 10000.00, 1, 10500.00, 13000.00, 'Padi, Chennai', 'Padi,chennai', '2311210010', '1', '2', 'upload_files/candidate_tracker/80093296309_Resume.pdf', NULL, '1', '2023-11-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication No will not sustain and handle our work roles not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-21 09:28:00', 85, '2023-11-21 05:29:19', 0, NULL, 1),
(15305, 'Faizan Ahmed', '33', '7358218054', '', 'faizanahmed161999@gmail.com', '1999-12-16', 23, '2', '2', 'Masood Ahmed', 'Business', 30000.00, 1, 27000.00, 30000.00, 'Jani Jahan Khan road royapettah', 'Jani Jahan Khan Road Royapettah', '2311210011', '1', '2', 'upload_files/candidate_tracker/96588989148_Faizan_Ahmed.pdf', NULL, '1', '2023-11-22', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Data science sort of role only will not sustain on our profile for a long not suitbale', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-21 12:33:05', 108, '2023-11-22 07:01:19', 0, NULL, 1),
(15306, 'Vinoth Kumar V', '16', '7338915331', '9080132615', 'vinothkumar95286@gmail.com', '2000-06-28', 23, '2', '2', 'Vinayagam', 'to be an entrepreneur', 18000.00, 1, 12000.00, 20000.00, 'Manali, chennai', 'Manali, chennai', '2311210012', '1', '2', 'upload_files/candidate_tracker/74461845549_Vinoth Kumar CV .pdf', NULL, '1', '2023-11-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance communication not much will not sustain ', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-21 12:39:14', 108, '2023-11-22 06:59:55', 0, NULL, 1),
(15307, 'Patchamuthu', '5', '9751470764', '', 'Patcha12975@gmail.com', '1997-06-18', 26, '2', '2', 'Mani', 'Farmer', 2000.00, 2, 0.00, 15000.00, 'Porur', 'Porur', '2311220001', '1', '1', 'upload_files/candidate_tracker/68339399912_Javith.pdf.pdf', NULL, '1', '2023-11-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for System based work no communication pressure handling doubts in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-22 04:51:43', 108, '2023-11-22 07:02:14', 0, NULL, 1),
(15308, 'Vetri Selvan T', '7', '7904004759', '9791168551', 'vetriselvanashik99@gmail.com', '1999-04-29', 24, '2', '2', 'Vasantha', 'Head accountant', 3000000.00, 1, 227000.00, 400000.00, 'Mambalam, Chennai', 'Mambalam, Chennai', '2311220002', '1', '2', 'upload_files/candidate_tracker/85113397245_Vetri Selvan T (1)-1.pdf', NULL, '1', '2023-11-22', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending the interview', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '4', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-22 05:28:00', 104, '2023-11-30 10:01:24', 0, NULL, 1),
(15309, 'Kotteswari G', '7', '8148807032', '8015215062', 'Kottekotte5797@gmail.com', '1997-07-05', 26, '2', '2', 'Gunasekaran', 'Private sector', 35000.00, 2, 200000.00, 350000.00, 'Chennai', 'Chennai', '2311220003', '1', '2', 'upload_files/candidate_tracker/46678136392_kotte resume.pdf', NULL, '1', '2023-11-22', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills in MF and the salary exp is very high will not sustain in a long may get marry early and leave', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-22 05:33:13', 104, '2023-11-30 10:02:30', 0, NULL, 1),
(15310, 'S.Badri narayanan', '16', '8637439821', '', 'badrinarayanan8004@gmail.com', '1997-05-10', 26, '2', '2', 'Santhanam', 'Railway staff', 100000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2311220004', '1', '2', 'upload_files/candidate_tracker/31436947670_Badri resume (1)_compressed.pdf', NULL, '1', '2023-11-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok but the location constraint almost 50 kms up and down not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-22 05:46:06', 108, '2023-11-22 06:59:46', 0, NULL, 1),
(15311, 'Balaji M', '6', '8838296968', '8220134330', 'bji600227@gmail.com', '1997-04-19', 26, '1', '2', 'Mahalingam C', 'Cycle shop', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2311220005', '', '1', 'upload_files/candidate_tracker/31868667728_Balaji (2).pdf', NULL, '1', '2023-11-22', 0, 'NA', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-22 05:55:06', 108, '2023-11-22 07:04:00', 0, NULL, 1),
(15312, 'Moorthy', '16', '9940131645', '9789959893', 'moorthy.ksamy@gmail.com', '1998-03-05', 25, '2', '2', 'K.sundari', 'Catering services', 20000.00, 1, 20000.00, 24000.00, 'Tharamani', 'Tharamani', '2311220006', '1', '2', 'upload_files/candidate_tracker/30379443346_Moorthy Resume1.pdf', NULL, '1', '2023-11-22', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in MIS Shoudl come for 2nd level can give a try if he comes let us try', '3', '1', '', '1', '8', '', '2', '2023-11-24', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-22 06:12:22', 85, '2023-11-22 06:57:16', 0, NULL, 1),
(15313, 'Sanjay daniel', '22', '9003223248', '9940064609', 'dhivyapriyam123@gmail.com', '2001-03-08', 22, '3', '2', 'Siva', 'Hundai technician', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2311220007', '', '2', 'upload_files/candidate_tracker/2558966396_Sanjay Daniel Updated resume (2).pdf', NULL, '1', '2023-11-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-22 07:05:47', 1, '2023-11-22 07:45:14', 0, NULL, 1),
(15314, 'Nithish Kumar S', '4', '9791228226', '', 'nithishkumar654321@gmail.com', '2001-10-04', 22, '2', '2', 'Saravanan R Sumathi S', 'Driver', 100000.00, 1, 0.00, 13.00, 'Thanjavur', 'Thanjavur', '2311220008', '1', '1', 'upload_files/candidate_tracker/81421203791_Adobe Scan Nov 22, 2023.pdf', NULL, '1', '2023-11-22', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit\n', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-22 07:08:06', 104, '2023-11-30 10:00:31', 0, NULL, 1),
(15315, 'Sanjay Daniel', '23', '6383136252', '9677131083', 'gangaramamoorthy3101@gmail.com', '2001-03-08', 22, '3', '2', 'Siva', 'Operation theatre technician', 20000.00, 1, 18000.00, 20000.00, 'Ambattur, Chennai', 'Ambattur, Chennai', '2311220009', '', '2', 'upload_files/candidate_tracker/5851838969_Sanjay Daniel Updated resume (2).pdf', NULL, '1', '2023-11-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open with the txxampCand also no basic skills in JS if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-22 07:40:28', 108, '2023-11-22 06:56:49', 0, NULL, 1),
(15316, 'Vijayalakshmi A', '5', '8608972556', '8939738829', 'Vidusnowwhite20@gmail.com', '2023-11-22', 0, '2', '1', 'Saravanan', 'Private limited', 25000.00, 1, 34600.00, 45000.00, 'Chennai', 'Chennai ambattur', '2311220010', '1', '2', 'upload_files/candidate_tracker/8314628793_VIJI.pdf', NULL, '1', '2023-11-22', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Team lead only and the salary min Exp is 40K interviewed by Gaurav sir and got rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-11-22 07:55:57', 108, '2023-11-22 07:06:14', 0, NULL, 1),
(15317, 'Mugilarasan R', '16', '8973015225', '', 'mugilarasan2023@gmail.com', '2002-09-03', 21, '2', '2', 'Rajasekaran', 'Farmar', 200000.00, 1, 0.00, 200000.00, 'Salem,', 'Coimbatore', '2311230001', '1', '1', 'upload_files/candidate_tracker/77144952211_Mugil (1).pdf', NULL, '1', '2023-11-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our roles Salary Exo is high being a fresher and pressure handling doubts not more than 1 yr he will looking for core data science', '3', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-23 04:19:54', 104, '2023-11-30 09:56:49', 0, NULL, 1),
(15318, 'Sharmila', '16', '8610649601', '9003761366', 'sharmil.0098@gmail.com', '1998-07-10', 25, '2', '2', 'Durairaj', 'Farmer', 40000.00, 0, 0.00, 20000.00, 'Thanjavur', 'Guindy', '2311230002', '1', '1', 'upload_files/candidate_tracker/27521751640_Sharmila Resume.pdf', NULL, '1', '2023-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for MIS only but not suit for that checked for Renewal and got rejected due to pressure handling cross checked with Banupriya', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-23 04:20:44', 104, '2023-12-07 09:44:05', 0, NULL, 1),
(15319, 'Rajeswari', '6', '7094254435', '6369530343', 'rajeswariranjan@gmail.com', '1998-03-29', 25, '2', '2', 'Ranjan', 'Banana marchent', 18000.00, 3, 18000.00, 25000.00, '100,, venkatapuram colony, pallipat, thiruvallur.', 'Saidapet', '2311230003', '1', '2', 'upload_files/candidate_tracker/50601509983_DOC-20230614-WA0001.pdf', NULL, '1', '2023-11-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Frequent job changes every 6 months changed and looking for very high salary not suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-23 04:25:58', 108, '2023-11-23 07:17:49', 0, NULL, 1),
(15320, 'Nimi Justus', '6', '6383579887', '9791212083', 'nimijustus@gmail.com', '2000-08-16', 23, '2', '2', 'S Justus', 'Teacher', 50000.00, 1, 0.00, 25000.00, 'Manjalumoodu', 'Chennai', '2311230004', '21', '1', 'upload_files/candidate_tracker/12171946191_Nimi Justus.CV01-1.pdf', NULL, '1', '2023-11-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preparing Govt Exams and for time being looking for Opportunities will not run in along more than 1 yr parents both are Govt teachers', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-23 04:55:40', 108, '2023-11-23 07:16:57', 0, NULL, 1),
(15321, 'Esakkithangam', '33', '9840650641', '', 'Thangambba@gmail.com', '1982-04-09', 41, '1', '1', 'Ranjini', 'Assistant Manager accounts', 70000.00, 3, 60000.00, 45000.00, 'Tenkasi', 'Chinna porur', '2311230005', '', '2', 'upload_files/candidate_tracker/96944924254_Thangam resume (3) (2) (1).pdf', NULL, '1', '2023-11-23', 15, 'cafsusr00191', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come for Salary discussion with Gokul for Accounts', '4', '2', '0', '1', '8', '0', '2', '2023-11-24', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-23 05:44:11', 1, '2023-11-23 05:52:58', 0, NULL, 1),
(15322, 'SANGAVI S', '16', '9944536785', '9994047067', 'sangavisivaperumal06@gmail.com', '2002-08-05', 21, '2', '2', 'SIVAPERUMAL A', 'Business partner', 100000.00, 1, 20000.00, 23000.00, 'Namakkal', 'Chennai', '2311230006', '1', '2', 'upload_files/candidate_tracker/47944732105_Sangavi Resume 2023.pdf', NULL, '1', '2023-11-23', 10, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp but not much good with that salary exp is min 18 Interviewed by Gokul Profile on Hold we can offer max on 16K', '3', '1', '', '1', '3', '', '2', '2023-11-28', '1', '7', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-23 05:47:33', 108, '2023-11-23 11:46:33', 0, NULL, 1),
(15323, 'jeenisha', '16', '9629423747', '', 'jeeni1801@gmail.com', '1999-11-23', 24, '2', '2', 'munnivel', 'late', 30000.00, 1, 230000.00, 350000.00, 'Chennai', 'Chennai', '2311230007', '1', '2', 'upload_files/candidate_tracker/5206767830_Jeenisha Resume-1.pdf', NULL, '1', '2023-11-23', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills knowledge for MIS role and will not sustain and handle our roles not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-11-23 05:53:47', 1, '2023-11-23 05:57:37', 0, NULL, 1),
(15324, 'lavanya', '16', '6381972814', '', 'lk3326353@gmail.com', '2002-07-04', 21, '2', '2', 'kumar', 'carpenter', 9000.00, 1, 11000.00, 11000.00, 'chennai', 'koyambedu', '2311230008', '1', '2', 'upload_files/candidate_tracker/84614012521_finalresume lavanya 2.pdf', NULL, '1', '2023-11-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Average Communication Will Not Sustain And Handle Our Work Pressure Not Suitable For Our Roles', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1019', '0', NULL, NULL, NULL, 1, '2023-11-23 06:00:31', 1, '2023-11-23 06:03:22', 0, NULL, 1),
(15325, 'Kathiresan', '16', '9790315901', '', 'kathir1281@gmail.com', '2000-05-04', 23, '3', '2', 'Dhanalakshmi', 'Daily vegas', 8000.00, 1, 16000.00, 20000.00, 'Trichy', 'Chennai', '2311230009', '', '2', 'upload_files/candidate_tracker/35721484214_KATHIRESAN (4).pdf', NULL, '1', '2023-11-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Will not sustain and handle our work pressure not suitable for our roles', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-23 06:11:22', 1, '2023-11-23 06:15:46', 0, NULL, 1),
(15326, 'J.Brightjones', '6', '8300100450', '7867924405', 'Dittobright838@gmail.com', '2001-05-15', 22, '2', '2', 'Sumathi', 'Tapper', 10000.00, 1, 0.00, 16000.00, 'Kuttiyar, kodayar post door no.86.pincode.629102', 'Annanur, chennai.', '2311230010', '21', '1', 'upload_files/candidate_tracker/90411808266_BRIGHT-1.pdf', NULL, '1', '2023-11-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-23 06:12:03', 108, '2023-11-23 07:15:36', 0, NULL, 1),
(15327, 'Vijaya Sakthi Sankari. M', '6', '9677145396', '9600096217', 'vijayasakthisankari.m.20cs062@gmail.com', '2003-03-10', 20, '2', '2', 'Parent', 'Private concern as a store incharge', 15000.00, 1, 0.00, 12000.00, 'Mogappair west Chennai 600 037', 'Mogappair west', '2311230011', '21', '1', 'upload_files/candidate_tracker/36712695156_SankariM.pdf', NULL, '3', '2023-11-23', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Sounds Low but open for Telecalling Kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-23 06:26:47', 108, '2023-11-23 07:16:15', 0, NULL, 1),
(15328, 'Shiva Kumar K', '16', '9042733854', '', 'shiva.kforwork07@gmail.com', '1991-05-26', 32, '6', '2', 'Kasi k father', 'Tailor', 15.00, 2, 0.00, 27000.00, 'Chennai', 'Chennai', '2311230012', '', '2', 'upload_files/candidate_tracker/5843122646_Shiva.CV.Nov.2023.pdf', NULL, '1', '2023-11-23', 0, '', '3', '59', '2023-11-27', 254496.00, '', '5', '1970-01-01', '1', 'Selected for MIS role PT only', '3', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-23 07:29:03', 60, '2023-11-25 06:25:38', 0, NULL, 1),
(15329, 'rajesh kumar a', '16', '8098330330', '', 'rajeshkma3@gmail.com', '2008-11-23', 15, '2', '1', 'anand', 'nil', 30000.00, 1, 30000.00, 30000.00, 'mangadu', 'mangadu', '2311230013', '1', '2', 'upload_files/candidate_tracker/95866165349_RAJESH KUMAR.pdf.pdf', NULL, '1', '2023-11-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average Current Salary is 30K and exp more on that not suits with our role package', '3', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', NULL, NULL, NULL, 1, '2023-11-23 07:54:12', 1, '2023-11-23 08:04:51', 0, NULL, 1),
(15330, 'Santhanam.p', '6', '9551253344', '8220585887', 'p.santhanam786@gmail.com', '1991-04-26', 32, '1', '2', 'Prakash', 'Brother', 45000.00, 2, 25000.00, 25000.00, 'Chennai,avadi', 'Chennai,avadi', '2311230014', '', '2', 'upload_files/candidate_tracker/90140554047_Resume_22_11_2023_11_43_22_PM.pdf', NULL, '1', '2023-11-23', 0, '55716', '3', '59', '2023-11-28', 321696.00, '', '5', '1970-01-01', '1', 'Selected for Shamugam Team in Staff Role', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-23 07:56:31', 60, '2023-11-28 10:31:56', 0, NULL, 1),
(15331, 'AHMED RASHEED', '33', '8148248483', '8925162800', 'ars2mail@gmail.com', '2001-01-02', 22, '2', '2', 'Seeni Ibrahim', 'Employee', 20000.00, 3, 14000.00, 17000.00, 'Kilakarai, Ramanathapuram district, Tamilnadu', 'Triplicane, Chennai, Tamilnadu', '2311230015', '1', '2', 'upload_files/candidate_tracker/34246302685_Ahmed Rasheed S (1).pdf', NULL, '1', '2023-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 6months exp and looking for salary growth only will not sustain in a long ', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-23 12:09:16', 104, '2023-11-24 02:34:31', 0, NULL, 1),
(15332, 'B.Mohsin', '33', '8072193593', '7550276400', 'jobimohsin@gmail.com', '2001-10-02', 22, '2', '2', 'Nisha', 'Muslim', 18000.00, 1, 0.00, 15.00, 'No 19/2 nainiappan garden old washermenpet ch21', 'No 19/2 Nainiappan Garden Old Washermenpet Ch21', '2311230016', '1', '1', 'upload_files/candidate_tracker/79163774460_Mohsin nawaz-2 (1).pdf', NULL, '1', '2023-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to train a lot long run doubt if he comes back let  us try', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-23 12:18:02', 108, '2023-11-24 07:00:46', 0, NULL, 1),
(15333, 'Aravindvikram', '16', '9597246179', '', 'aravind24e3@gmail.com', '1989-11-24', 34, '2', '2', 'Muthusamy', 'Retd AEE', 20000.00, 1, 20000.00, 30000.00, 'Karur', 'Velachery', '2311240001', '1', '2', 'upload_files/candidate_tracker/47092525139_ARAVINDVIKRAM K M -RESUME (1).docx', NULL, '1', '2023-11-24', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interviewed by Gokul final Round average candidate need to confirm his joining post 29 Nov only', '3', '2', '', '1', '8', '', '2', '2023-11-29', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-24 04:38:06', 104, '2023-11-24 12:08:43', 0, NULL, 1),
(15334, 'Sivakumar M', '16', '8111031237', '8939041378', 'Sivamurs02@gmail.com', '2000-06-02', 23, '2', '2', 'Udhayakumar', 'Business', 80000.00, 2, 300000.00, 350000.00, 'Poonamalle', 'Poonamalle', '2311240002', '1', '2', 'upload_files/candidate_tracker/9470988459_DOC-20231018-WA0003.pdf', NULL, '1', '2023-11-24', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'having his own business and looking for additional one focus will not be much more in this', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-24 05:43:33', 104, '2023-11-24 12:08:15', 0, NULL, 1),
(15335, 'Allwin', '33', '8778392048', '', 'allwin8778392048@gmail.com', '2008-11-24', 0, '2', '2', 'Antony samy', 'Farmer', 25000.00, 1, 0.00, 2.50, 'Tirunelveli', 'Avadi Chennai', '2311240003', '1', '1', 'upload_files/candidate_tracker/10443099868_DH (1).pdf', NULL, '1', '2023-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Bike Fresher looking much for SAP Fico', '4', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-24 05:53:51', 104, '2023-11-24 12:06:05', 0, NULL, 1),
(15336, 'Gracy Lilly. A', '16', '9962902359', '', 'GRACYLILLY01@GMAIL.COM', '2001-10-01', 22, '3', '2', 'M. Anthony raj', 'Late', 20000.00, 1, 0.00, 15000.00, 'Pattinampakkam', 'Pattinampakkam', '2311240004', '', '1', 'upload_files/candidate_tracker/69439751168_MY RESUME.pdf', NULL, '1', '2023-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very SilentNEed to open up a lot not open for voice process not much suits for our operations role', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-24 06:00:16', 108, '2023-11-24 07:01:20', 0, NULL, 1),
(15337, 'Gopinath S', '33', '8838970328', '9940133211', 'gopikrish77789@gmail.com', '1999-01-20', 24, '2', '2', 'Subaramanian A', 'Business', 30000.00, 1, 15000.00, 22000.00, 'Chennai', 'Kodambakkam, chennai', '2311240005', '1', '2', 'upload_files/candidate_tracker/88138794558_Gopinath S_Resume.pdf', NULL, '3', '2023-11-24', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic Skills Will not handle our work pressure not much suitable', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-24 06:15:52', 104, '2023-11-24 12:05:15', 0, NULL, 1),
(15338, 'Mubarak Ali', '7', '9884208770', '9150988941', 'alimubarak7777777@gmail.com', '1995-02-27', 28, '2', '2', 'Nasreen Taj', 'House wife', 50000.00, 2, 20000.00, 25000.00, 'Parrys', 'Parrys', '2311240006', '1', '2', 'upload_files/candidate_tracker/25278034478__Mubarak Ali_Resume.pdf', NULL, '1', '2023-11-24', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Final Round with Gokul for MF Good Candidate but the salary exp is very high need to negotiate and close', '7', '1', '', '1', '8', '', '2', '2023-11-27', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-24 06:24:49', 104, '2023-11-30 09:59:28', 0, NULL, 1),
(15339, 'G John Wesley', '13', '9962464719', '', 'jbsjohn978@gmail.com', '2001-05-30', 22, '6', '2', 'G Gavin Vethanayagam', 'Retired', 20000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2311240007', '', '1', 'upload_files/candidate_tracker/32353501033_G John Wesley Resume.pdf', NULL, '1', '2023-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOt open for TxxampC no basics in Javascript', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-24 07:26:29', 108, '2023-11-24 07:00:01', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15340, 'bhuvaneshwari', '16', '7845065983', '9677175983', 'bhuvaneshwariarumugam14@gmail.com', '1999-02-05', 24, '3', '2', 'Arumugam, karagatharasi', 'Tailor', 120000.00, 1, 12000.00, 20000.00, 'Vettuvankeni', 'Vettuvankeni', '2311240008', '', '2', 'upload_files/candidate_tracker/81312888152_Bhuvaneshwari resume new.docx', NULL, '1', '2023-11-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance Career Gap lookin much for nearby location will not sustain', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-24 09:13:35', 1, '2023-11-24 09:20:01', 0, NULL, 1),
(15341, '', '0', '9500006646', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311240009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-24 12:19:26', 0, NULL, 0, NULL, 1),
(15342, '', '0', '6380291810', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311240010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-24 01:27:36', 0, NULL, 0, NULL, 1),
(15343, 'mohamed shafiq j', '33', '9942186988', '', 'mdshafiq0206@gmail.com', '2001-06-02', 22, '2', '1', 'jahabar maraicar', 'retired salesman', 18000.00, 2, 0.00, 18000.00, 'koyyaka ahamed naina street nagore nagapattinam', 'yusuff lebbai street chepauk', '2311240011', '1', '1', 'upload_files/candidate_tracker/36174572427_Mohamed Shafiq__Resume.pdf', NULL, '1', '2023-11-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preparing for CA exams and long run doubts in our roles ', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-24 01:31:22', 108, '2023-11-25 05:15:06', 0, NULL, 1),
(15344, 'Vindhiya D', '16', '8754356633', '9790430399', 'vindhiyavin01@gmail.com', '2000-07-01', 23, '2', '2', 'Desingu', 'Mechanic', 15000.00, 2, 200000.00, 300000.00, '119, anna nagar gingee Villupuram district, 604205', 'Sara ladies hostel Ekkattuthangal Chennai', '2311240012', '1', '2', 'upload_files/candidate_tracker/9402670225_CV_2023-11-14-103615.pdf', NULL, '1', '2023-11-29', 1, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainbility doubts not suit for our roles', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-24 03:28:25', 108, '2023-11-29 12:07:24', 0, NULL, 1),
(15345, 'Vishva', '5', '6383965133', '9360225172', 'vishva007007@gmail.com', '2003-01-16', 20, '2', '2', 'Kolanjiyappan', 'Farmer', 5000.00, 1, 0.00, 18000.00, 'Perambalur', 'Sriperumbthur', '2311240013', '1', '1', 'upload_files/candidate_tracker/83490903603_DOC-20230818-WA0005..docx', NULL, '1', '2023-11-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our sales profile if hecomes for IT learning can try', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-24 05:38:13', 108, '2023-11-25 05:02:44', 0, NULL, 1),
(15346, 'K udaya kumar', '13', '9176317935', '', 'Udayakumargnc@gmail.com', '2001-04-19', 22, '6', '2', 'P Krishna Kumar', 'Business', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2311250001', '', '1', 'upload_files/candidate_tracker/87987725897_Udaya Kumar Resume.pdf', NULL, '1', '2023-11-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-25 04:39:17', 1, '2023-11-25 05:22:05', 0, NULL, 1),
(15347, 'ishwarya .k', '13', '9176366138', '', 'ishwarya.1342000@gmail.com', '2000-04-13', 23, '2', '2', 'krishna kumar', 'self employed', 10000.00, 2, 0.00, 15000.00, 'mylapore', 'mylapore', '2311250002', '1', '1', 'upload_files/candidate_tracker/29338266750_resume_ishwarya.pdf', NULL, '1', '2023-11-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try already holds several offer', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', NULL, NULL, NULL, 1, '2023-11-25 04:39:47', 1, '2023-11-25 05:26:46', 0, NULL, 1),
(15348, 'Ajay', '2', '6382597068', '9750959066', 'ajaybalu22@gmail.com', '1999-02-22', 24, '6', '2', 'Boobalakrishnan', 'Farmer', 45000.00, 1, 300000.00, 600000.00, 'Tirupattur, Tamilnadu', 'Tirupattur, Tamilnadu', '2311250003', '', '2', 'upload_files/candidate_tracker/87412089705_Ajay resume.pdf', NULL, '1', '2023-11-25', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-25 04:58:58', 1, '2023-11-25 05:35:42', 0, NULL, 1),
(15349, 'Sukasini R', '16', '8015917220', '9500701350', 'manikbm2@gmail.com', '1994-06-12', 29, '2', '1', 'Vignesh C', 'Working Pvt sector', 40000.00, 3, 22000.00, 30000.00, '4/7 Jagannathan street villivakkam chennai', '4/7 Jagannathan Street Villivakkam chennai', '2311250004', '1', '2', 'upload_files/candidate_tracker/29285611398_Sukasini+Resume.pdf', NULL, '1', '2023-11-25', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Career gap stating marriage reently married sustainability doubts in our roles min exp 28K and not ready to come down', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-25 05:09:14', 104, '2023-11-29 01:27:46', 0, NULL, 1),
(15350, 'Swathi R', '16', '8056425435', '9042775440', 'Swathibe2204@gmail.com', '1998-04-22', 25, '2', '2', 'R.chitra', 'House wife', 40000.00, 2, 15500.00, 20000.00, '3/187 KTR INDUSTRIES, TIRUVARUR', 'Hi tech ladies hostel, vadapalani', '2311250005', '1', '2', 'upload_files/candidate_tracker/71287874870_DOC-20231115-WA0014..pdf', NULL, '3', '2023-11-25', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Hve Exp in MIS but need to train a lot in our roles need time to confirm her for our roles', '3', '1', '', '1', '8', '', '2', '2023-11-28', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-25 05:35:16', 104, '2023-11-27 01:27:34', 0, NULL, 1),
(15351, 'Praveen kumar.p', '5', '9360725172', '', 'praveensilent38@gmail.com', '2001-05-06', 22, '2', '2', 'Palani', 'Farmer', 7000.00, 2, 18000.00, 20000.00, 'Avarankattur Village Kalipettai post', 'XW8W+H4W, Nenmeli, Sriperumbudur, Tamil Nadu', '2311250006', '1', '2', 'upload_files/candidate_tracker/24229571994_praveen kumar.p.pdf', NULL, '1', '2023-11-25', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our sales need to open up alot ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-25 05:36:17', 108, '2023-11-25 04:54:41', 0, NULL, 1),
(15352, 'Sheebalakshmi', '5', '7092610177', '7200086058', 'Sheeba19908@gmail.com', '1998-02-26', 25, '3', '2', 'Paneerselvam', 'Electrion', 15000.00, 0, 21000.00, 23000.00, 'Kotturpuran', 'Velachery', '2311250007', '', '2', 'upload_files/candidate_tracker/66478896565_DOC-20230613-WA0013.pdf', NULL, '1', '2023-11-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Shortlisted But Not Joining', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-25 06:09:01', 108, '2023-11-25 04:55:44', 0, NULL, 1),
(15353, 'Jayshree T', '13', '6381919855', '', 'tjhyashreevct.it@gmail.com', '2002-01-13', 21, '3', '2', 'Thiyagarajan C', 'Farmer', 50000.00, 2, 0.00, 15000.00, 'Namakkal', 'Porur', '2311250008', '', '1', 'upload_files/candidate_tracker/87091623407_Jayashree.pdf', NULL, '1', '2023-11-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-25 06:09:41', 1, '2023-11-25 06:37:09', 0, NULL, 1),
(15354, 'Lokeshwari', '13', '9500216860', '', 'lokeshwariit23@gmail.com', '2002-10-23', 21, '3', '2', 'Govindharaj R', 'Farmer', 30000.00, 2, 0.00, 15000.00, 'Namakkal', 'Porur', '2311250009', '', '1', 'upload_files/candidate_tracker/92079025230_logu.pdf', NULL, '1', '2023-11-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-25 06:09:50', 1, '2023-11-25 06:25:47', 0, NULL, 1),
(15355, 'Logesh kumar D', '16', '7338766343', '9094160368', 'logeshkumar4545@gmail.com', '1999-09-01', 24, '3', '2', 'Dhanasekaran K', 'Auto Driver', 35000.00, 1, 20000.00, 30000.00, 'Chennai', 'Chennai', '2311250010', '', '2', 'upload_files/candidate_tracker/21958457770_Logesh Kumar Resume Updated.pdf', NULL, '1', '2023-11-25', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude Not ready to come down with salary frequent job changes every 1 yr min exp 28K', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-25 06:33:29', 1, '2023-11-25 06:39:31', 0, NULL, 1),
(15356, 'Haripriya D', '16', '9094430355', '7010651527', 'haripriyad766@gmail.com', '1999-08-08', 24, '3', '1', 'Praveen Kumar R', 'Cash officer', 30000.00, 1, 27000.00, 30000.00, 'Chennai', 'Chennai', '2311250011', '', '2', 'upload_files/candidate_tracker/71161744763_Haripriya Updated Resume.pdf', NULL, '1', '2023-11-25', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Recently married and her current salary 4LPA will not sustain in along', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-25 06:43:51', 1, '2023-11-25 06:47:51', 0, NULL, 1),
(15357, 'deva', '16', '8667212166', '', 'devacristiano12@gmail.com', '1998-06-10', 25, '2', '2', 'perumal', 'building contractor', 1200000.00, 1, 24992.00, 33000.00, 'tiruv', 'tiruvallur', '2311250012', '1', '2', 'upload_files/candidate_tracker/80538986683_DEVA P CV 2023.docx', NULL, '1', '2023-11-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for MIS Roles too long Distance not open to relocate', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-25 06:49:38', 104, '2023-11-27 01:26:03', 0, NULL, 1),
(15358, 'Imran kaleel', '31', '9047466302', '', 'imrankaleel455@gmail.com', '2001-11-04', 22, '3', '2', 'Malik', 'Driver', 25000.00, 2, 0.00, 12000.00, 'Tiruvarur', 'Triplicane, Chennai', '2311250013', '', '1', 'upload_files/candidate_tracker/30923043779_imran kaleel -pj.pdf', NULL, '1', '2023-11-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-25 07:13:39', 1, '2023-11-25 07:17:57', 0, NULL, 1),
(15359, 'R Vijay', '33', '8344184995', '8489625553', 'Vijaykavitha830@gmail.com', '2002-05-14', 21, '2', '2', 'Kavitha', 'Account excutive', 15000.00, 0, 12000.00, 35000.00, 'Cuddalore', 'Chennai', '2311250014', '1', '2', 'upload_files/candidate_tracker/82171013840_Vijay Final Resume.pdf.pdf', NULL, '1', '2023-11-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-25 07:18:12', 104, '2023-11-28 10:47:54', 0, NULL, 1),
(15360, 'Dineshwaran', '16', '9791120699', '', 'dinadhanush107@gmail.com', '1994-06-02', 29, '2', '2', 'Deisainthi', 'House wife', 10000.00, 2, 0.00, 324000.00, 'Chennai', 'Chennai', '2311250015', '1', '2', 'upload_files/candidate_tracker/30483160143_Dineshwaran CV 1-1.pdf', NULL, '1', '2023-11-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance up and down 44kms not much suits for our roles will not sustain min Exp is 27K', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-25 07:33:54', 104, '2023-11-25 02:26:46', 0, NULL, 1),
(15361, 'Imran kaleel', '31', '9600696302', '9047466302', 'imrankaleel455@gmail.com', '2001-11-04', 22, '2', '2', 'Malik', 'Driver', 25000.00, 2, 0.00, 15000.00, 'Tiruvarur', 'Chennai', '2311250016', '1', '1', 'upload_files/candidate_tracker/2514879186_imran kaleel -pj.pdf', NULL, '1', '2023-11-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2023-11-25 08:04:23', 1, '2023-11-25 08:08:21', 0, NULL, 1),
(15362, 'Umar farook', '13', '8056417104', '', 'umarfarook.js@gmail.com', '1997-12-11', 25, '2', '2', 'Jainul Abideen', 'Nil', 15000.00, 2, 0.00, 10000.00, 'THIRUMALAIRAYAN PATTINAM', 'chennai', '2311250017', '1', '1', 'upload_files/candidate_tracker/38657320433_umar-farook - 2023-10-06T201624.692.pdf', NULL, '1', '2023-11-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for IT positions and not open for TxxampC Sustainability Doubts if he comes back let us try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-25 08:35:28', 104, '2023-11-25 02:26:04', 0, NULL, 1),
(15363, 'Sathish Kumar', '5', '9080267528', '', 'Sathish321911@gmail.com', '1999-12-23', 23, '2', '2', 'R .Mani', 'MTC BUS DRIVER', 40000.00, 1, 16000.00, 24000.00, 'Chennai', 'Chennai', '2311250018', '1', '2', 'upload_files/candidate_tracker/72140527825_Resume_Sathish_Format1.pdf', NULL, '1', '2023-11-27', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'low voice ... too slow not suit our roles.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-25 09:06:25', 108, '2023-11-27 06:40:24', 0, NULL, 1),
(15364, '', '0', '9597998128', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311250019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-25 09:30:00', 0, NULL, 0, NULL, 1),
(15365, '', '0', '8778891531', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311250020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-25 09:34:31', 0, NULL, 0, NULL, 1),
(15366, 'Diamondlal Anthony C', '16', '7200828799', '', 'diamondlal002@gmail.com', '1997-01-11', 26, '2', '2', 'Clement Raja a', 'P g assistant teacher', 60000.00, 3, 20000.00, 27000.00, 'Chennai', 'Chennai', '2311250021', '1', '2', 'upload_files/candidate_tracker/48933444583_DOC-20231108-WA0000..pdf', NULL, '1', '2023-11-25', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 11months exp Career Gap and min Exp 25+ his current 23300 Will not sustain in our roles', '3', '1', '', '1', '8', '', '2', '1970-01-01', '4', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-25 10:09:33', 85, '2023-11-30 03:28:52', 0, NULL, 1),
(15367, 'Sundar S', '33', '7708694685', '8940091924', 'sundarg2596@gmail.com', '1996-02-12', 27, '2', '2', 'Subramani', 'Daily Wages', 150000.00, 3, 180000.00, 20000.00, 'Perambalur', 'Triplicane', '2311250022', '1', '2', 'upload_files/candidate_tracker/77159613705_Sundar_Resume (2) (1)-6.pdf', NULL, '1', '2023-11-27', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-25 01:17:19', 108, '2023-11-27 06:37:09', 0, NULL, 1),
(15368, 'Sowmiya', '4', '9894927688', '8667753014', 'SOWMIYABSTET@GMAIL.COM', '2002-10-10', 21, '2', '2', 'Baskaran', 'Unemployed', 4000.00, 2, 0.00, 12000.00, 'Thiruvarur', 'Thiruvarur', '2311250023', '1', '1', 'upload_files/candidate_tracker/67073482697_Download Resume PDF Maker App_1687437803028_Sowmiya B.pdf', NULL, '1', '2023-11-27', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-25 01:24:35', 108, '2023-11-27 06:47:00', 0, NULL, 1),
(15369, '', '0', '9677562321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311250024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-25 01:40:22', 0, NULL, 0, NULL, 1),
(15370, 'Iyyappan', '5', '9789014159', '', 'iyyappa1234@gmail.com', '2000-04-07', 23, '2', '2', 'Murugesan', 'Karpenter', 20000.00, 1, 0.00, 14000.00, 'Ayanavaram', 'Ayanavaram', '2311260001', '1', '1', 'upload_files/candidate_tracker/83017226474_M.Iyyappan - Resume.pdf', NULL, '1', '2023-11-27', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-26 12:26:40', 108, '2023-11-27 06:41:21', 0, NULL, 1),
(15371, 'SNEHA G', '13', '9042928486', '', 'snehganesan@gmail.com', '2001-06-15', 22, '2', '2', 'Ganesan', 'Mechanical engineering', 62000.00, 1, 280000.00, 380000.00, 'Chengalpattu', 'Chengalpattu', '2311260002', '1', '2', 'upload_files/candidate_tracker/62737679338_SNEHA-RESUME.pdf', NULL, '1', '2023-11-27', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interviewed for Full Stack not much comfort with the TxxampC if the candidate comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-26 06:32:15', 104, '2023-11-27 10:25:56', 0, NULL, 1),
(15372, 'S Pavithran', '31', '6379059527', '9789763073', 'pavithranpavi112@gmail.com', '2000-02-02', 23, '6', '2', 'Thangamani.s', 'Daily wages', 9000.00, 2, 0.00, 18000.00, 'Tiruchengode', 'Tiruchengode', '2311270001', '', '1', 'upload_files/candidate_tracker/34821031466_Pavithran S Resume.pdf', NULL, '1', '2023-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-27 04:10:59', 1, '2023-11-27 04:15:09', 0, NULL, 1),
(15373, 'S PARTHIBAN', '5', '8428840812', '8015877614', 'parthi8648@gmail.com', '2008-11-27', 0, '6', '2', 'Srinivasan', 'Civil work', 16000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2311270002', '', '1', 'upload_files/candidate_tracker/11139615566_Parthiban_Resume.pdf', NULL, '3', '2023-11-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles will not sustain ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-27 04:50:24', 108, '2023-11-27 06:36:26', 0, NULL, 1),
(15374, 'Jasper p', '2', '9487670852', '', 'jas131059@gmail.com', '2000-04-13', 23, '2', '2', 'P Panneer Selvam', 'Ex Army', 10000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2311270003', '1', '1', 'upload_files/candidate_tracker/35044831377_JasperP_Res_compressed.pdf', NULL, '1', '2023-11-27', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sal expt high xxamp He planing to move abroad in future.. not ok with our txxampC too', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-27 05:18:43', 104, '2023-11-27 11:19:30', 0, NULL, 1),
(15375, 'Rajesh Kumar', '33', '9834400562', '', 'rajeshmudaliar017@gmail.com', '1987-12-18', 35, '2', '2', 'Arjunan', 'Retired', 25000.00, 0, 25000.00, 30000.00, 'Ettaiyapuram, Tamil Nadu, India', 'Ettaiyapuram, Tamil Nadu, India', '2311270004', '1', '2', 'upload_files/candidate_tracker/50652343088_CV - Rajesh.pdf', NULL, '1', '2023-11-27', 10, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for role have some stammer problem', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-27 05:20:40', 85, '2023-11-27 07:03:19', 0, NULL, 1),
(15376, 'RAJARAJAN. R', '4', '9344082586', '6374962162', 'rajarajanlatha2000@gmail.com', '2000-05-18', 23, '2', '2', 'RAVICHANDRAN. K', 'Hotel', 8000.00, 1, 0.00, 15000.00, 'kalvirayanpettai', 'Kalvirayanpettai', '2311270005', '1', '1', 'upload_files/candidate_tracker/56162114151_Write_up_CTGD_Exam2022_pdf_file_08042023_1.docx', NULL, '1', '2023-11-27', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-27 05:28:58', 108, '2023-11-27 06:50:08', 0, NULL, 1),
(15377, 'a rameeza banu', '4', '7845175427', '', 'rameezaranya432@gmail.com', '1998-01-06', 25, '2', '2', 'ayoob khan', 'bus', 10000.00, 1, 13.00, 15.00, 'mannady', 'mannady', '2311270006', '21', '2', 'upload_files/candidate_tracker/89991418327_ Bpo resume .pdf', NULL, '3', '2023-11-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-27 05:35:03', 1, '2023-11-27 05:42:35', 0, NULL, 1),
(15378, 's m samuel raj', '13', '6374908967', '9840047745', 'issacsamuelraj321@gmail.com', '2003-03-10', 20, '6', '2', 'suresh rajkumar', 'entry level fullstack Developer', 150000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2311270007', '', '1', 'upload_files/candidate_tracker/20107335621_Samuel Raj Resume.pdf', NULL, '1', '2023-11-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'yet not complete his course 1m more ...he need to check with parents..', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-27 05:38:20', 1, '2023-11-27 05:52:39', 0, NULL, 1),
(15379, 'Darwin Jebaroy N', '6', '9566083993', '', 'darwinf9t@gmail.com', '1995-05-08', 28, '2', '2', 'Margret christinal S', 'Teacher', 70000.00, 1, 17000.00, 17000.00, 'Virudhachalam', 'Guindy', '2311270008', '21', '2', 'upload_files/candidate_tracker/63692619811_Darwin_N_Resume_09-10-2023-11-44-51.pdf', NULL, '1', '2023-11-27', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', ' Attitude.. not suit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-27 05:39:19', 108, '2023-11-27 06:35:23', 0, NULL, 1),
(15380, 'rameeza banu a', '6', '7358237393', '7845175427', 'rameezaranya432@gmail.com', '1998-01-06', 25, '2', '2', 'ayoob khan s', 'bussinesa', 10000.00, 1, 13000.00, 15000.00, 'mannady', 'mannady', '2311270009', '21', '2', 'upload_files/candidate_tracker/6025022325_ Bpo resume .pdf', NULL, '3', '2023-11-27', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050Profile seems to give a lot of story sustainability doubts kindly check andlet me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-27 05:51:17', 108, '2023-11-27 06:48:40', 0, NULL, 1),
(15381, 'Raj Kumar R', '13', '9150736990', '', 'rajraviaaa007@gmail.com', '2002-05-02', 21, '6', '2', 'Kalai arasi', 'House wife', 50000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2311270010', '', '1', 'upload_files/candidate_tracker/8414144071_RAJ KUMAR_resume.pdf', NULL, '1', '2023-11-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Yet Not Complete His Course.. Have Some Family Issues. Long Run Doubts.', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-27 05:59:12', 1, '2023-11-27 06:01:39', 0, NULL, 1),
(15382, 'thangam a', '13', '9750692535', '9361474313', 'thangamgeetha.ath@gmail.com', '2001-08-14', 22, '2', '2', 'arumugam r', 'business', 20000.00, 1, 0.00, 3.50, 'Thiruvarur', 'Thiruvarur', '2311270011', '1', '1', 'upload_files/candidate_tracker/7807178450_Thangam A Resume.pdf', NULL, '1', '2023-11-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-27 07:02:02', 104, '2023-11-30 12:34:29', 0, NULL, 1),
(15383, 'Natasha C', '26', '8754452461', '', 'natasha.prasad64@gmail.com', '1999-04-06', 24, '2', '2', 'Mahadevi', 'Care taker', 20000.00, 1, 1.80, 2.40, 'Chennai', 'Chennai', '2311270012', '1', '2', 'upload_files/candidate_tracker/84726367008_Natasha_resume.pdf', NULL, '1', '2023-11-27', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'frequent job changes..communication good sustainbility doubts.', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-27 07:15:24', 104, '2023-11-27 01:02:32', 0, NULL, 1),
(15384, 'Divya priya L', '13', '9994985721', '', 'Divyajagadish1230@gmail.com', '1998-05-12', 25, '2', '1', 'Jagadish', 'Architect', 35000.00, 1, 0.00, 350000.00, '94/161 v.m street ,Royapettah ,Chennai 14', '94/161 V.M Street ,Royapettah ,Chennai 14', '2311270013', '1', '1', 'upload_files/candidate_tracker/83823686246_DIVYA J.pdf', NULL, '1', '2023-11-29', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-27 07:29:20', 104, '2023-11-29 10:58:57', 0, NULL, 1),
(15385, 'S.mohemed junaid', '6', '7558139636', '8637690783', 'mohemedjunaid4@gmail.com', '2003-04-08', 20, '2', '2', 'M.SYED ABDUL KAREEM', 'Logistics manager', 180000.00, 1, 0.00, 15000.00, 'Chennai', 'Peravallur', '2311270014', '1', '1', 'upload_files/candidate_tracker/9362849991_RESUME 1 .pdf', NULL, '1', '2023-11-28', 0, '', '3', '59', '2023-12-13', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team in Consultant Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-27 10:55:35', 60, '2023-12-13 09:54:00', 0, NULL, 1),
(15386, 'Kishore kumar b.v', '5', '9789008805', '9940699694', 'Kishorekumar290587@gmail.com', '1987-05-29', 36, '2', '2', 'B. Viswanaathan', 'Business', 50000.00, 1, 28858.00, 35000.00, 'Chennai', 'Palavakkam', '2311270015', '1', '2', 'upload_files/candidate_tracker/7502159351_kishore - Document-WPS Office.pdf', NULL, '1', '2023-11-27', 2, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'frequent job changes...not suit for our role.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-27 11:21:56', 108, '2023-11-27 06:49:41', 0, NULL, 1),
(15387, 'PUGAZHINI RAVICHANDRAN', '13', '6382923902', '9443685995', 'pugazhinir@gmail.com', '2002-07-23', 21, '2', '2', 'RAVICHANDRAN S', 'LAB ASSISTANT', 30000.00, 1, 0.00, 26000.00, '1/3 U2 samandhar street, Lakshmi Nagar Thiruvarur.', '1/3 U2 samandhar street, Lakshmi Nagar Thiruvarur.', '2311270016', '1', '1', 'upload_files/candidate_tracker/98083699508_IMG_20231127_191712 (1).pdf', NULL, '1', '2023-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-27 01:03:44', 104, '2023-11-28 11:02:28', 0, NULL, 1),
(15388, 'PUGAZHINI RAVICHANDRAN', '13', '9043176755', '6382923902', 'pugazhinir@gmail.com', '2002-07-23', 21, '3', '2', 'RAVICHANDRAN S', 'LAB ASSISTANT ( education dept)', 45000.00, 1, 0.00, 2.00, '1/3 U2 samandhar street, Lakshmi Nagar Thiruvarur.', '6th main road Vijaya nagar Velachery chennai', '2311270017', '', '1', 'upload_files/candidate_tracker/50448268578_PUGAZHINI R_RESUME1.pdf', NULL, '1', '2024-05-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-27 01:50:49', 1, '2024-05-10 03:32:03', 0, NULL, 1),
(15389, 'shake rahuman', '31', '8525084001', '', 'shakerahuman.jafar@gmail.com', '2001-10-06', 22, '3', '2', 'jafar ali', 'Grocery shop keeper', 25000.00, 0, 0.00, 20000.00, 'vadalur', 'vadapalani', '2311280001', '', '1', 'upload_files/candidate_tracker/85907411658_Shakerahuman J 2.pdf', NULL, '1', '2023-11-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-28 04:22:33', 1, '2023-11-28 04:29:19', 0, NULL, 1),
(15390, 'jana', '33', '6385933061', '9585458654', 'jjana6205@gmail.com', '2002-09-12', 21, '2', '2', 'maha', 'electricity board', 20000.00, 1, 0.00, 15000.00, 'ponneri', 'ponneri', '2311280002', '1', '1', 'upload_files/candidate_tracker/13651137738_job (3).pdf', NULL, '1', '2023-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance not open to relocate', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-28 04:36:09', 104, '2023-11-28 11:01:37', 0, NULL, 1),
(15391, 'B.Balaji', '33', '9514063269', '7667039600', 'balaji311995@gmail.com', '1995-01-31', 28, '2', '2', 'V.Boopathy', 'Nil', 20000.00, 0, 20000.00, 22000.00, 'Tiruvottiyur', 'Tiruvottiyur', '2311280003', '1', '2', 'upload_files/candidate_tracker/786437469_B Balaji resume (3).pdf', NULL, '1', '2023-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Bike no Have exp in Accounts not much of relevant skills will not sustain', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-28 04:39:14', 108, '2023-11-28 06:29:19', 0, NULL, 1),
(15392, 'Dinesh K', '31', '7845882717', '', 'dinesh.dhina1998@gmail.com', '1998-11-18', 25, '3', '2', 'Krishnamurthy', 'Mason', 150000.00, 1, 0.00, 25000.00, 'iyyapanthagal, chennai 600122.', 'Iyyapanthagal, Chennai 600122', '2311280004', '', '1', 'upload_files/candidate_tracker/13290338190_Dinesh_K_18.pdf', NULL, '1', '2023-11-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-28 04:46:49', 1, '2023-11-28 04:50:19', 0, NULL, 1),
(15393, 'Dinesh Kumar', '13', '8056127144', '', 'dineshperumal1306@gmail.com', '2000-06-13', 23, '2', '2', 'Syamala devi, Perumal', 'Teacher', 350000.00, 1, 350000.00, 450000.00, 'Chennai', 'Chennai', '2311280005', '1', '2', 'upload_files/candidate_tracker/28581824351_Dinesh kumar.pdf', NULL, '1', '2023-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-28 04:49:20', 104, '2023-11-29 11:04:48', 0, NULL, 1),
(15394, 'Andrew Boaz S', '31', '7010046922', '', 'andrewboaz417@gmail.com', '2001-11-30', 21, '3', '2', 'Josephine Prema S', 'Home maker', 1500.00, 1, 0.00, 15000.00, 'Trichy', 'Velachery', '2311280006', '', '1', 'upload_files/candidate_tracker/29848379969_Andrew Boaz Resume .pdf', NULL, '1', '2023-11-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-28 04:57:32', 1, '2023-11-28 05:05:43', 0, NULL, 1),
(15395, 'Gowthami.G', '31', '6382916539', '7397596641', 'gowthami20192022@gmail.com', '2002-08-08', 21, '1', '2', 'P.Govindan', 'Load man TVS contract', 70000.00, 1, 0.00, 15000.00, 'Sholinghur', 'Chennai vadapalani', '2311280007', '', '1', 'upload_files/candidate_tracker/78240951351_GOWTHA MI.pdf', NULL, '1', '2023-11-28', 0, 'Qspiders', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-28 05:10:08', 1, '2023-11-28 05:21:14', 0, NULL, 1),
(15396, 'naresh Kumar E', '31', '6383783840', '', 'Nareshkumare007@gmail.con', '2000-10-26', 23, '1', '2', 'Elumalai S', 'Apwd', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2311280008', '', '1', 'upload_files/candidate_tracker/32899040842_Naresh fullstack Resume.pdf', NULL, '1', '2023-11-28', 0, 'Qspiders', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-28 05:10:48', 1, '2023-11-28 05:33:26', 0, NULL, 1),
(15397, 'Divakar s', '4', '9487881776', '', 'Dkar0837@gmail.com', '1994-07-18', 29, '3', '1', 'Sambath', 'Business', 20000.00, 0, 0.00, 15000.00, 'Vallam', 'Va', '2311280009', '', '1', 'upload_files/candidate_tracker/9587167706_IMG_20231128_110349.pdf', NULL, '1', '2023-11-28', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'not fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-28 05:35:27', 1, '2023-11-28 05:37:27', 0, NULL, 1),
(15398, 'P.Renuka Devi', '6', '8939755737', '9791154740', 'rd313161@Gmail.com', '2002-06-20', 21, '2', '2', 'V.Purushothaman', 'Brush company', 80000.00, 1, 0.00, 15000.00, 'Thilagar nagar 2nd Street kaladipet Chennai', 'West mada Street kaladipet Chennai', '2311280010', '1', '1', 'upload_files/candidate_tracker/85347926785_DOC-20230914-WA0006.pdf', NULL, '1', '2023-11-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-28 05:54:31', 108, '2023-11-28 06:22:33', 0, NULL, 1),
(15399, 'Thangamurali', '4', '8883849731', '', 'thangamurali84@gmail.com', '2001-04-08', 22, '1', '2', 'Thillaipandi', 'Finance', 100000.00, 2, 0.00, 18000.00, '2848/7 kumabakonatha Steet, East gate , Thanjavur', 'Thanjavur', '2311280011', '', '1', 'upload_files/candidate_tracker/83136056080_MURALI.pdf', NULL, '1', '2023-11-28', 0, '77791', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit', '1', '1', '0', '4', '5', '0', '2', '2023-12-20', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-28 06:14:46', 1, '2023-11-28 06:22:43', 0, NULL, 1),
(15400, 'Yokesh S', '4', '6374377816', '8056563862', 'Yokeshyash@gmail.com', '2000-10-04', 23, '1', '2', 'SRINIVASAN N', 'Bus Conductor', 15000.00, 1, 0.00, 15000.00, 'Karpagamoorthy Nagar palliyagrahram,Thanjavur.', 'Karpagamoorthy Nagar ,palligraharam,Thanjavur', '2311280012', '', '1', 'upload_files/candidate_tracker/40814585089_DOC-20231128-WA0001_231128_115117.pdf', NULL, '1', '2023-11-28', 0, '77791', '3', '59', '2023-11-30', 152400.00, '', '5', '1970-01-01', '2', 'Selected for Sithy Team in Consultant role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-28 06:15:03', 60, '2023-11-29 07:53:24', 0, NULL, 1),
(15401, 'Gobirajan k', '13', '9345693704', '6374091521', 'gobirajank21@gmail.com', '2008-11-28', 15, '2', '2', 'Kannan', 'Small shop', 15000.00, 0, 220000.00, 350000.00, 'Chennai', 'Chennai', '2311280013', '1', '2', 'upload_files/candidate_tracker/34308375273_Gopiresume (10) (1)-2.pdf', NULL, '1', '2023-11-28', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-28 06:15:31', 104, '2023-11-28 12:05:59', 0, NULL, 1),
(15402, 'mohamed asif irfan ta', '13', '9677837517', '', 'asif.ai410@gmail.com', '1998-06-21', 25, '2', '1', 'rinsiya parveen', 'healthcare', 18000.00, 1, 0.00, 250000.00, 'chennai', 'chennai', '2311280014', '1', '1', 'upload_files/candidate_tracker/5805671698_Irfan Resume.pdf', NULL, '1', '2023-11-29', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-28 07:15:46', 104, '2023-11-29 10:58:34', 0, NULL, 1),
(15403, 'Sukumar Ramadoss', '33', '8015323381', '', 'sugupriya0648@gmail.com', '1996-07-01', 27, '2', '1', 'saranya', 'houswife', 37000.00, 2, 37000.00, 48000.00, 'chrompet', 'chrompet', '2311280015', '1', '2', 'upload_files/candidate_tracker/19633610138_Sukumar CV.pdf', NULL, '1', '2023-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance Salary Exp is very high than our budget', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-28 07:32:03', 108, '2023-11-28 06:20:20', 0, NULL, 1),
(15404, 'Nikalya R', '16', '7010832342', '9043190280', 'nikalyaraji235@gmail.com', '2002-05-23', 21, '2', '2', 'Kalaiselvi R', 'Farmer', 1.75, 2, 20000.00, 30000.00, 'Attur', 'Chennai', '2311280016', '1', '2', 'upload_files/candidate_tracker/41340837905_Nikalya_resume.pdf', NULL, '2', '2023-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for ourrole no understanding no communication', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-28 08:45:59', 104, '2023-11-29 11:04:58', 0, NULL, 1),
(15405, 'Muralidharan M', '16', '7200563117', '8637498719', 'muralidara.333@gmail.com', '1996-03-31', 27, '6', '2', 'Parimala', 'Homemaker', 26000.00, 1, 20668.00, 25000.00, 'Ranipet', 'Thoraipakkam', '2311280017', '', '2', 'upload_files/candidate_tracker/98090665204_Muralidharan.M_Profile_Photo_updated (1).pdf', NULL, '1', '2023-11-28', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-28 09:08:00', 1, '2023-11-28 09:12:09', 0, NULL, 1),
(15406, 'LOKESH R', '33', '9360296616', '', 'lokeshmalini27@gmail.com', '2001-09-08', 22, '2', '2', 'Rajendra kumar', 'Electrician', 12000.00, 1, 12000.00, 20000.00, 'Thuraipakkam', 'Thuraipakkam', '2311280018', '1', '2', 'upload_files/candidate_tracker/62544093411_CV_2023-10-30-085242.pdf', NULL, '1', '2023-11-29', 15, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-28 09:38:00', 104, '2023-11-29 12:59:52', 0, NULL, 1),
(15407, 'Seenuvasan', '16', '9551655875', '', 'cheenu55.cc@gmail.com', '1996-05-05', 27, '2', '2', 'ravichandran', 'enterperneur', 100000.00, 1, 28000.00, 37000.00, 'CHENNAI', 'CHENNAI', '2311280019', '1', '2', 'upload_files/candidate_tracker/3535835206_Seenuvasan R_OA.pdf', NULL, '1', '2023-11-28', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles very high CTC Exp will not run in a long', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-28 09:53:37', 104, '2023-11-29 11:05:17', 0, NULL, 1),
(15408, 'Ajai babu', '33', '9952237396', '', 'ajaibabu2000@gmail.com', '2000-03-17', 23, '2', '2', 'K.Somasundara moorthy', 'Manager in quarry', 20000.00, 1, 21810.00, 30000.00, 'Kanchipuram', 'Kanchipuram', '2311280020', '1', '2', 'upload_files/candidate_tracker/93285772364_RESUME A.pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance not open to relocate will not ssstain and exp os alos high', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-28 11:34:11', 104, '2023-11-29 02:55:10', 0, NULL, 1),
(15409, 'Priyadharsini', '4', '6383892250', '', 'Priyakarthika179@gmail.com', '2003-03-19', 20, '2', '2', 'Sivakumar', 'Farmer', 30000.00, 3, 0.00, 12000.00, 'THANJAVUR', 'THANJAVUR', '2311280021', '1', '1', 'upload_files/candidate_tracker/40087455122_PRIYADHARSHINI S-2.pdf', NULL, '1', '2023-11-29', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-28 01:55:37', 108, '2023-11-29 06:35:28', 0, NULL, 1),
(15410, 'M.Tamilarasan', '33', '6374844729', '9789934479', 'tamilarasan17042003@gmail.com', '2003-04-17', 20, '3', '2', 'Silumbayi.M', 'homemaker', 20000.00, 1, 0.00, 18000.00, 'Ambattur', 'Ambattur', '2311280022', '', '1', 'upload_files/candidate_tracker/81129811561_M Tamilarasan CV.PDF', NULL, '1', '2023-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-28 03:13:43', 1, '2023-12-01 06:25:32', 0, NULL, 1),
(15411, '', '0', '8870602638', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-29 03:50:04', 0, NULL, 0, NULL, 1),
(15412, 'Narean Karthick B', '13', '7305039908', '8270330692', 'nareankarthick6789@gmail.com', '2003-01-27', 20, '6', '2', 'A Balaji', 'Salesman', 180000.00, 1, 0.00, 300000.00, 'Woraiyur, Trichy', 'Kodambakkam, chennai', '2311290002', '', '1', 'upload_files/candidate_tracker/60784536332_Narean Karthick Resume_20230930_100438_0000.pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 05:09:01', 1, '2023-11-29 05:14:38', 0, NULL, 1),
(15413, 'Sivakumar P', '13', '9791987410', '9786487886', 'pandisivakumar779@gmail.com', '2003-05-27', 20, '6', '2', 'PANDI P', 'farmer', 60000.00, 2, 0.00, 300000.00, 'Usilampatti , Madurai DT', 'Kodambakkam , Chennai', '2311290003', '', '1', 'upload_files/candidate_tracker/87945299524_sivakumar .p (3).pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 05:10:14', 1, '2023-11-29 05:20:09', 0, NULL, 1),
(15414, 'Vikramapandian', '13', '8668183476', '', 'vikram238292@gmail.com', '2000-01-12', 23, '3', '2', 'Raja', 'Supervisor', 30000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Velchery', '2311290004', '', '1', 'upload_files/candidate_tracker/95353653852_Resume.pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 05:11:33', 1, '2023-11-29 05:16:46', 0, NULL, 1),
(15415, 'Jaya Preetha', '13', '9789498608', '', 'mayapreetha39@gmail.com', '2002-06-26', 21, '6', '2', 'Ravi', 'Daily wages', 20000.00, 0, 0.00, 12000.00, 'Vellore', 'Chennai', '2311290005', '', '1', 'upload_files/candidate_tracker/48016793671_JayaPreetha_Resume.pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 05:30:54', 1, '2023-11-29 05:34:21', 0, NULL, 1),
(15416, 'C.Saravanan', '13', '7904245020', '', 'csaravanansaravana3649@gmail.com', '2000-05-13', 23, '2', '2', 'Chinasamy', 'Daily workers', 10000.00, 3, 0.00, 20000.00, 'salem', 'Chennai', '2311290006', '1', '1', 'upload_files/candidate_tracker/77649208884_Saravanan Resume 1.pdf', NULL, '1', '2023-11-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-29 05:32:59', 130, '2024-05-27 09:55:33', 0, NULL, 1),
(15417, 'Ayyanar.N', '6', '8525054845', '9626021384', 'nayyanar143@gmail.com', '1997-05-20', 26, '1', '2', 'Nagappan.P', 'Marketing work', 12000.00, 3, 20000.00, 25000.00, '176(2),2/6,Sozhiyan Street, melkaranai,', '176(2) Sozhiyan Street melkaranai Villupuram', '2311290007', '', '2', 'upload_files/candidate_tracker/8822282743_N. AYYANAR_RESUME.pdf', NULL, '3', '2023-11-29', 8, '5641', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Telecalling and sales profile not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-29 05:42:20', 108, '2023-11-29 06:33:21', 0, NULL, 1),
(15418, 'Subhalakshmi. B', '16', '9962439378', '', 'subhafleck@gmail.com', '2000-12-08', 22, '2', '2', 'Parent', 'Operator', 200000.00, 1, 0.00, 280000.00, 'Poonamallee', 'Poonamallee', '2311290008', '1', '1', 'upload_files/candidate_tracker/77763630636_SUBHALAKSHMI.B-MIS EXECUTIVE.pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good Communication sustainability doubts getting marriage at earliest have a plan to go with PHD', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-29 05:45:34', 104, '2023-11-29 12:13:03', 0, NULL, 1),
(15419, 'Balaji ajj', '33', '9176336530', '', 'balajiajj3@gmail.com', '2008-11-29', 0, '3', '2', 'Jayakumar', 'Ofst oli filed', 150000.00, 1, 0.00, 15000.00, 'No: 20/56 26th kennady street GKM colony', 'Chennai', '2311290009', '', '1', 'upload_files/candidate_tracker/43567069795_BALAJI AJJ cv. (3).pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable will not sustian in our roles not suitbale', '4', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 05:49:11', 1, '2023-11-29 05:53:43', 0, NULL, 1),
(15420, 'Kishore Ganesh', '13', '9790198841', '', 'kishoreganesh56@gmail.com', '2002-06-11', 21, '6', '2', 'uma maheswari', 'teacher', 950000.00, 0, 0.00, 250000.00, 'vriddhachalam', 'chennai', '2311290010', '', '1', 'upload_files/candidate_tracker/57611985547_Kishore_9.pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 06:09:01', 1, '2023-11-29 06:14:27', 0, NULL, 1),
(15421, 'Kiruthika K', '13', '6280640273', '6380640273', 'kiruthikakannan1012@gmail.com', '2000-12-10', 22, '6', '1', 'Raghul srinivas', 'Engineer', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2311290011', '', '1', 'upload_files/candidate_tracker/65546152931_Kiruthika1012.pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 06:09:08', 1, '2023-11-29 06:13:54', 0, NULL, 1),
(15422, 'C.k.lingeswaran', '4', '7397299367', '7401086647', 'lingeswaranck687@gmail.com', '2002-12-16', 20, '2', '2', 'V.c.krishnamoorthy', 'Oil Business', 15.00, 2, 0.00, 15.00, '26/42 varadharajan street t.nagar chennai-17', '26/42 varadharajan street t.nagar chennai-17', '2311290012', '21', '1', 'upload_files/candidate_tracker/78711360926_Lingeshwwaranres.pdf', NULL, '3', '2023-11-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 06:10:01', 1, '2023-11-29 06:20:40', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15423, 'Vignesh', '33', '9940672838', '', 'vicky2319619@gmail.com', '2000-08-23', 23, '6', '2', 'Nandakumar', 'MBA finance and operation', 200000.00, 1, 0.00, 300000.00, 'No.934, Ram Nagar, Velachery Main Road, Madipakkam', 'No.934, Ram Nagar, Velachery Main Road, Madipakkam', '2311290013', '', '2', 'upload_files/candidate_tracker/51809426034_Vignesh Nandakumar (2)-1.pdf', NULL, '1', '2023-11-29', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 06:10:07', 1, '2023-11-29 06:17:35', 0, NULL, 1),
(15424, '', '0', '6380640273', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311290014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-29 06:18:08', 0, NULL, 0, NULL, 1),
(15425, '', '0', '9363118563', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311290015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-29 06:21:37', 0, NULL, 0, NULL, 1),
(15426, 'sanjay', '13', '9944880609', '9597481301', 'sanjay321pps@gmail.com', '2002-04-12', 21, '3', '2', 'murugesan C', 'farmer', 45000.00, 1, 0.00, 20000.00, 'salem', 'Chennai', '2311290016', '', '1', 'upload_files/candidate_tracker/23357477623_M SANJAY (1).pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 06:23:57', 1, '2023-11-29 07:16:00', 0, NULL, 1),
(15427, 'Arshad yusuf khan. m', '13', '7339033621', '9597481301', 'arshadrocky05@gmail.com', '2002-01-31', 21, '3', '2', 'Mohammed sherif. m', 'chilli business', 60000.00, 2, 0.00, 250000.00, 'palacode', 'chennai', '2311290017', '', '1', 'upload_files/candidate_tracker/71014130740_Arshad_1-1.pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 06:25:09', 1, '2023-11-29 07:04:18', 0, NULL, 1),
(15428, 'Sudharsan S', '13', '9597481301', '8056686170', 'ssudharsan9597@gmail.com', '2002-04-13', 21, '3', '2', 'Semmannan P', 'farmer', 7000.00, 1, 0.00, 250000.00, 'Salem', 'Chennai', '2311290018', '', '1', 'upload_files/candidate_tracker/9785044345_Sudharsan_Resume_1 (1).pdf', NULL, '1', '2023-11-29', 0, '', '3', '59', '2023-12-06', 120000.00, '', '0', NULL, '2', '3months 5K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 06:26:13', 1, '2023-11-29 06:36:35', 0, NULL, 1),
(15429, 'Rameshkumar', '16', '9597920648', '6374970522', 'ramesh11294@gmail.com', '1994-06-11', 29, '2', '2', 'Annadurai', 'Formar', 15000.00, 0, 23000.00, 30000.00, 'Vayaloor,Chetpet', 'MMDA', '2311290019', '1', '2', 'upload_files/candidate_tracker/79204517462_Ramesh Resume-1.pdf', NULL, '1', '2023-11-29', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable no sustainability only for salary he is focusing', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-29 06:35:43', 104, '2023-11-29 12:48:41', 0, NULL, 1),
(15430, 'Logeshwaran s', '33', '7010840121', '9865030079', 'sloge17@gmail.com', '1999-12-20', 23, '6', '2', 'N.Shanmugam', 'Textile', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2311290020', '', '1', 'upload_files/candidate_tracker/26109464589_Resume_S.Logeshwaran_Format1 (2).pdf', NULL, '1', '2023-12-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 06:49:05', 1, '2023-11-29 06:51:46', 0, NULL, 1),
(15431, 'bharath d', '16', '6379339970', '9962060675', 'bharathdamu1997@gmail.com', '1998-10-26', 25, '6', '2', 'dhamodharan', 'farmer', 25000.00, 1, 20000.00, 27000.00, 'avadi', 'avadi', '2311290021', '', '2', 'upload_files/candidate_tracker/32341994553_Bharath RESUME.pdf', NULL, '1', '2023-11-29', 3, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'too long Distance no clarity in his previous work exp not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 06:56:35', 1, '2023-11-29 07:09:12', 0, NULL, 1),
(15432, 'Vishal Praveen V', '13', '6380729206', '7867961898', 'vishalbe2017@gmail.com', '2000-06-24', 23, '2', '2', 'Shoba Rani', 'Former', 15000.00, 1, 0.00, 13000.00, 'Chengam Tiruvannamalai 606709', 'Butt Road St Thomas Mount Chennai', '2311290022', '26', '1', 'upload_files/candidate_tracker/46786348240_1696489228359_Vishal 17_06_2023_2.pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-29 07:14:46', 1, '2023-11-29 07:41:50', 0, NULL, 1),
(15433, 'Ajith.B', '31', '8072349356', '9941273567', 'aj03dot@gmail.com', '1999-06-28', 24, '2', '2', 'Babu', 'Driver', 17000.00, 1, 0.00, 3.00, 'CHENNAI', 'CHENNAI', '2311290023', '1', '1', 'upload_files/candidate_tracker/90103962183_Ajith resume. (1).pdf', NULL, '1', '2023-11-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-29 07:41:39', 104, '2023-11-29 01:16:57', 0, NULL, 1),
(15434, 'V akash', '5', '9080206360', '9952042518', 'vakashakash1999@gmail.com', '1999-10-18', 24, '2', '2', 'S viji', 'Not working', 12000.00, 1, 3.00, 20000.00, 'Chennai', 'Chennai', '2311290024', '1', '2', 'upload_files/candidate_tracker/64951349205_ak resume..pdf', NULL, '1', '2023-11-29', 0, '', '3', '59', '2023-11-30', 210000.00, '', '3', '2024-12-10', '1', 'Selected for Gopi Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-29 07:46:04', 60, '2023-11-30 10:42:08', 0, NULL, 1),
(15435, 'Logeswaran j', '4', '9159694334', '', 'logeskls88@gmail.com', '1999-06-11', 24, '2', '2', 'Chitra j', 'Home maker', 10000.00, 2, 14000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2311290025', '1', '2', 'upload_files/candidate_tracker/9187520075_Resume_06_06_2023_10_47_06_pm.pdf', NULL, '1', '2023-11-30', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-29 01:35:26', 108, '2023-11-30 12:59:08', 0, NULL, 1),
(15436, '', '0', '9361256807', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311290026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-29 04:29:38', 0, NULL, 0, NULL, 1),
(15437, 'Poovendan.E', '33', '6379008335', '', 'Kannanpoovendan@gmail.com', '2000-04-17', 23, '2', '2', 'Eazhumalai.R', 'Driver', 15000.00, 1, 11500.00, 14000.00, 'No.731, Murugan Kovil St,kattupakkam.', 'No.731, Murugan Kovil St,Kattupakkam.', '2311300001', '1', '2', 'upload_files/candidate_tracker/94047914279_Resume_Poovendan_Format1.pdf', NULL, '1', '2023-11-30', 7, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-30 04:55:58', 108, '2023-12-01 01:01:49', 0, NULL, 1),
(15438, 'Vijaya Kumar', '33', '9176046702', '', 'vjaykumar9176@gmail.com', '2000-07-16', 23, '2', '2', 'Gurumurthy', 'Auto driver', 300000.00, 1, 15000.00, 20000.00, 'No 26 Belvider Village new ferrence road otteri', 'Chennai', '2311300002', '1', '2', 'upload_files/candidate_tracker/6063281581_G Vijaya kumar.pdf', NULL, '1', '2023-11-30', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-30 05:37:04', 104, '2023-11-30 12:34:08', 0, NULL, 1),
(15439, 'Hemavathy.S', '4', '7092842951', '', 'Hemmavathy@gmail.com', '1994-10-28', 29, '2', '1', 'Sathish.c.s', 'Senior executive', 30000.00, 2, 0.00, 16000.00, 'Chennai,kolathur', 'Chennai,kolathur', '2311300003', '21', '1', 'upload_files/candidate_tracker/79375606230_Hemavathy (1).pdf', NULL, '1', '2023-11-30', 0, '', '3', '59', '2023-12-01', 192000.00, '', NULL, '2025-03-20', '1', 'Selected for Renewals Executive Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-30 05:41:53', 60, '2023-12-01 10:02:17', 0, NULL, 1),
(15440, 'Mohamed anwar', '31', '7305397447', '9894489493', 'KADARMYDEEN993@gmail.COM', '2000-06-29', 23, '1', '1', 'Ayisha siddika', 'House wife', 100000.00, 2, 0.00, 1000.00, 'Chennai', 'Chennai', '2311300004', '', '1', 'upload_files/candidate_tracker/20975184730_CV_2023051722074140-1.pdf', NULL, '1', '2023-11-30', 0, 'Qspider', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-30 06:22:40', 1, '2023-11-30 06:28:25', 0, NULL, 1),
(15441, 'Krishnan S', '31', '6380382539', '', 'akajaykrishnan48@gmail.com', '2001-06-24', 22, '3', '2', 'Swaminathan', 'Driver', 40000.00, 1, 0.00, 150000.00, 'Tiruvarut', 'Chennai', '2311300005', '', '1', 'upload_files/candidate_tracker/7644811675_KrishnanCv.pdf', NULL, '1', '2023-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-30 06:29:17', 1, '2023-11-30 06:51:51', 0, NULL, 1),
(15442, 'Deepika A', '4', '7449084021', '', 'DEEPI2921@GMAIL.COM', '2003-03-21', 20, '2', '2', 'Sagunthala', 'House keeping', 150000.00, 1, 0.00, 15000.00, 'Otteri', 'Ayanavaram', '2311300006', '1', '1', 'upload_files/candidate_tracker/62274593249_DOC-20230801-WA0014..pdf', NULL, '1', '2023-11-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-30 06:31:10', 85, '2023-11-30 03:24:43', 0, NULL, 1),
(15443, 'Sabariraja R', '31', '9159950439', '', 'rsabariraja99@gmail.com', '1999-12-18', 23, '3', '2', 'Rangasamy p', 'Farmer', 30000.00, 2, 0.00, 20000.00, 'Salem', 'Chennai', '2311300007', '', '1', 'upload_files/candidate_tracker/33595442344_resume_sabariraja R.pdf', NULL, '1', '2023-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-30 06:31:41', 1, '2023-11-30 06:46:38', 0, NULL, 1),
(15444, 'Anwar ibrahim', '31', '9342033459', '7806983641', 'Anwarmohamed354@gmail.com', '2000-06-29', 23, '3', '1', 'Ayisha siddika', 'House wife', 10000.00, 2, 0.00, 1000.00, 'tirunelveli', 'tirunelveli', '2311300008', '', '1', 'upload_files/candidate_tracker/84994235270_CV_2023051722074140-1.docx', NULL, '1', '2023-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2023-11-30 06:48:11', 1, '2023-11-30 07:08:58', 0, NULL, 1),
(15445, 'Durga Devi. R', '26', '7305552720', '8248831110', 'Ddcutedurga@gmail.com', '1999-12-16', 23, '3', '2', 'Manjula. R', 'Cooking in School', 10000.00, 2, 13500.00, 20000.00, 'Chennai', 'Chennai', '2311300009', '', '2', 'upload_files/candidate_tracker/35015393624_Durga Devi -new details.pdf', NULL, '1', '2023-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-30 07:03:16', 1, '2023-11-30 07:14:16', 0, NULL, 1),
(15446, 'Lavanya', '26', '8667324069', '7092944883', 'lavanyaurl@gmail.com', '1999-01-03', 24, '3', '2', 'Renuka', 'Trailer', 10000.00, 0, 14500.00, 25000.00, 'Chennai', 'Chennai', '2311300010', '', '2', 'upload_files/candidate_tracker/43795918656_Lavanya-v_r.pdf', NULL, '1', '2023-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-30 07:03:21', 1, '2023-11-30 07:21:27', 0, NULL, 1),
(15447, 'Vaishnavi. A', '13', '9003196387', '', 'Vaishnavialagesan1997@gmail.com', '1997-10-09', 26, '6', '1', 'Alagesan J', 'Conductor', 25000.00, 0, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2311300011', '', '1', 'upload_files/candidate_tracker/11022526915_Vaishnavi. A MCA full stack.pdf', NULL, '1', '2023-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-30 07:29:33', 1, '2023-11-30 07:34:14', 0, NULL, 1),
(15448, '', '0', '9042843453', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2311300012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-11-30 07:31:15', 0, NULL, 0, NULL, 1),
(15449, 'Saravana kumar', '13', '9940344758', '9840860153', 'Saravanachandran495@gmail.com', '2001-09-06', 22, '6', '2', 'Chandrasekaran', 'Security guard', 18000.00, 1, 0.00, 20000.00, 'Singaperumal koil,Chengalpet', 'Singaperumal koil,Chengalpet', '2311300013', '', '1', 'upload_files/candidate_tracker/36117983073_Fullstack.pdf', NULL, '1', '2023-11-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-30 07:32:20', 1, '2023-11-30 09:06:52', 0, NULL, 1),
(15450, 'ishwarya', '13', '6383186005', '6379110463', 'ishwaryakannan546@gmail.com', '2001-05-12', 22, '2', '2', 'kannan s', 'shopkeeper', 30000.00, 1, 0.00, 350000.00, 'chennai', 'Chennai', '2311300014', '1', '1', 'upload_files/candidate_tracker/13105080088_Ishwarya K (1).pdf', NULL, '1', '2023-12-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-30 07:40:18', 104, '2023-12-01 12:16:10', 0, NULL, 1),
(15451, 'Pugazhmaran', '26', '8300660045', '', 'jayampugal007@gmail.com', '2001-07-05', 22, '2', '2', 'Murugan', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Tondiarpet', 'Tondiarpet', '2311300015', '1', '1', 'upload_files/candidate_tracker/66510316044_MANI RESUEM.pdf', NULL, '1', '2023-12-01', 0, '', '3', '59', '2023-12-12', 180000.00, '', '5', '1970-01-01', '1', 'Selected for MIS Role Need to confirm the Roles', '7', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-30 07:47:38', 60, '2023-12-12 09:46:47', 0, NULL, 1),
(15452, 'Raghul Krishna B', '31', '9092619280', '6374743280', 'raghulkrish2002@gmail.com', '2002-03-03', 21, '6', '2', 'K.Babu', 'Driver', 70000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2311300016', '', '1', 'upload_files/candidate_tracker/94704928447_Raghul Krishna _ Resume.pdf', NULL, '1', '2023-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-30 09:18:14', 1, '2023-11-30 09:25:57', 0, NULL, 1),
(15453, 'Abilash M', '31', '9080450318', '9385502703', 'abilashmanickam@gmail.com', '2002-03-19', 21, '2', '2', 'Manickam', 'Driver', 84000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2311300017', '1', '1', 'upload_files/candidate_tracker/764918554_Abilash M_Resume.pdf', NULL, '1', '2023-11-30', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-11-30 09:21:18', 104, '2023-11-30 03:17:41', 0, NULL, 1),
(15454, 'vignesh', '33', '6380589817', '', 'vigneshng8@gmail.com', '2001-10-27', 22, '3', '2', 'bhuvaneswari', 'document writer', 25000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2311300018', '', '1', 'upload_files/candidate_tracker/86412434650_Share Resume of Vignesh.N.G ...pdf', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-30 09:39:06', 1, '2023-12-11 06:49:33', 0, NULL, 1),
(15455, 'Mageshwari T', '4', '7338967833', '9791067967', 'tmageshwari3@gmail.com', '2001-01-03', 22, '2', '2', 'Duraisani Babu', 'Auto driver', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Korukkupet', '2311300019', '1', '1', 'upload_files/candidate_tracker/57583034638_Magesh wari T.pdf', NULL, '1', '2023-12-02', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-30 10:04:36', 85, '2023-12-02 12:44:06', 0, NULL, 1),
(15456, 'SIVAMANIKANDAN. S', '14', '6374705581', '', 'sivamanikandan6374@gmail.com', '2003-01-10', 20, '3', '2', 'SARAVANA PRABHU. G', 'Driver', 12000.00, 0, 0.00, 200000.00, '3/158 Kattuvelampatti, Natham(TK) (624401)', '18A, Yamuna St, Bharathi Nagar, Tharamani, Chennai', '2311300020', '', '1', 'upload_files/candidate_tracker/49979904134_pdf_20230614_142156_0000_055253.pdf', NULL, '1', '2023-12-07', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come wiht the confirmation on the TxxampC Fresher 2023 passed out', '2', '1', '', '1', '8', '', '2', '2023-12-11', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-30 10:11:35', 108, '2023-12-07 12:55:48', 0, NULL, 1),
(15457, 'DAVID CHINNAPPARAJ. A', '2', '8248045080', '', 'Chinnapparaj309@gmail.com', '1999-08-09', 24, '3', '2', 'Anthony', 'Daily wages', 15000.00, 3, 0.00, 15000.00, '8/36, railway line, Mugaiyur,Villupuram', 'A/B Chithu oragadam Ambattur, chennai', '2311300021', '', '1', 'upload_files/candidate_tracker/50090776201_DOC-20231130-WA0004..pdf', NULL, '1', '2023-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much good in analytical need to come  with the confirmation on the TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-30 11:35:13', 1, '2023-11-30 12:07:26', 0, NULL, 1),
(15458, 'Vanitha S', '4', '7358843092', '6369675875', 'vanithasignature@gmail.com', '1995-07-18', 28, '2', '2', 'Sekar J', 'Office Assistant', 180000.00, 1, 17000.00, 23000.00, 'CHENNAI', 'CHENNAI', '2311300022', '1', '2', 'upload_files/candidate_tracker/63954612858_Vanitha Cvvv.pdf', NULL, '1', '2023-12-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-11-30 11:58:30', 85, '2023-12-01 05:14:51', 0, NULL, 1),
(15459, 'Dinesh Manoharan', '6', '9080470063', '9942420071', 'dmano7617@gmail.com', '1999-08-28', 24, '6', '2', 'Manoharan', 'Tnstc', 50000.00, 0, 0.00, 200000.00, 'Bangalore', 'Bangalore', '2311300023', '', '1', 'upload_files/candidate_tracker/27286206173_Dinesh-Resume-1.pdf', NULL, '2', '2023-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-11-30 01:02:45', 1, '2023-11-30 01:05:51', 0, NULL, 1),
(15460, 'Kavitha', '4', '9791373505', '', 'skavithakavitha17@gmail.com', '2003-03-12', 20, '2', '2', 'Sakthivel', 'Driver', 15000.00, 2, 0.00, 12000.00, 'Ayyampet', 'Ayyampet', '2311300024', '1', '1', 'upload_files/candidate_tracker/821337734_IMG-20231201-WA0000.pdf', NULL, '1', '2023-12-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-30 01:36:43', 108, '2023-12-01 12:28:19', 0, NULL, 1),
(15461, 'DHANUSH S', '33', '6374261591', '9444395906', 'dhanush102000@gmail.com', '2000-10-06', 23, '2', '2', 'SHANKAR M', 'Clerk in logistics based company', 500000.00, 1, 0.00, 25000.00, 'Nungambakkam, chennai 600034.', 'Nungambakkam, chennai 600034.', '2311300025', '1', '1', 'upload_files/candidate_tracker/17661123182_Dhanush resume org..pdf', NULL, '1', '2023-12-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-11-30 01:39:40', 108, '2023-12-01 12:28:43', 0, NULL, 1),
(15462, 'Meena', '4', '6369940014', '9047646328', 'meenasagunthla871@gmail.com', '2001-08-12', 22, '2', '2', 'Sagunthala', 'M.com', 12000.00, 2, 0.00, 15000.00, 'Puttur near tirupati', 'Rayapettai', '2311300026', '1', '1', 'upload_files/candidate_tracker/54402983483_Meena Resume.docx.pdf', NULL, '1', '2023-12-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-11-30 02:46:41', 104, '2023-12-01 10:28:59', 0, NULL, 1),
(15463, 'Manivel S', '13', '7904896613', '', 'manivelscareer@gmail.com', '1999-03-01', 24, '6', '2', 'Sitharathinam', 'Farmer', 20000.00, 0, 0.00, 2.50, 'Trichy', 'Pallawaram', '2311300027', '', '1', 'upload_files/candidate_tracker/61681395952_ATS-resume.pdf', NULL, '1', '2023-12-15', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-11-30 04:29:12', 108, '2023-12-15 10:58:50', 0, NULL, 1),
(15464, '', '0', '8778109508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312010001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-01 02:33:05', 0, NULL, 0, NULL, 1),
(15465, '', '0', '9943691723', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312010002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-01 02:46:29', 0, NULL, 0, NULL, 1),
(15466, '', '0', '9944691723', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312010003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-01 04:15:22', 0, NULL, 0, NULL, 1),
(15467, 'Vijayavel', '31', '7010735168', '9443422659', 'Vijayavelvelmurugan@gmail.com', '1998-05-28', 25, '3', '2', 'Velmurugan', 'Mechanical Engineering', 200000.00, 1, 0.00, 10000.00, 'Cuddalore', 'Chennai', '2312010004', '', '1', 'upload_files/candidate_tracker/3215160254_VIJAYA VEL V FINAL (1).pdf', NULL, '1', '2023-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 04:17:55', 1, '2023-12-01 04:25:11', 0, NULL, 1),
(15468, 'Vidhyaganesh M', '31', '8946048541', '9597187421', 'mvgtnj@gmail.com', '1996-04-05', 27, '1', '2', 'Muthu', 'Teacher', 30000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2312010005', '', '1', 'upload_files/candidate_tracker/90447741204_VIDHYAGANESH.pdf', NULL, '1', '2023-12-01', 0, 'Qspiders', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 04:24:12', 1, '2023-12-01 04:29:03', 0, NULL, 1),
(15469, 'Sornameena', '16', '7871661271', '8903515243', 'sornameena15@gmail.com', '2002-01-08', 21, '3', '2', 'Balasubramanian', 'Business', 40000.00, 2, 0.00, 18000.00, 'Vilathikulam', 'Velachery', '2312010006', '', '1', 'upload_files/candidate_tracker/10599499468_DOC-20231104-WA0000..pdf', NULL, '1', '2023-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 04:24:56', 1, '2023-12-01 04:31:27', 0, NULL, 1),
(15470, 'poojamahalakshmi.T', '33', '9344118533', '9444410324', 'poojamahalakshmi2000@gmail.com', '2008-12-01', 0, '2', '2', 'Parent', 'Business', 1100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2312010007', '1', '1', 'upload_files/candidate_tracker/44016523568_pooja resume update on Nov 11 (1).pdf', NULL, '1', '2023-12-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-01 04:48:22', 85, '2023-12-01 05:14:15', 0, NULL, 1),
(15471, 'Praveenraj', '31', '9342806085', '8681073857', 'praveenrajsundar15@gmail.com', '1999-01-15', 24, '3', '2', 'Sundar M', 'E.I.D parry', 100000.00, 1, 0.00, 25000.00, 'Cuddalore', 'Cuddalore', '2312010008', '', '1', 'upload_files/candidate_tracker/11400007546_Praveenraj Resume-1.pdf', NULL, '1', '2023-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 05:21:04', 1, '2023-12-01 05:24:29', 0, NULL, 1),
(15472, 'Nagarajan', '11', '8190914331', '', 'nagastudy1@gmail.com', '1990-12-10', 32, '3', '1', 'No', 'MIS EXECUTIVE', 10000.00, 2, 0.00, 20000.00, 'R A Puram', 'Chennai', '2312010009', '', '1', 'upload_files/candidate_tracker/93368407323_Nagarajan_Updated Bio.pdf', NULL, '1', '2023-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 05:28:18', 1, '2023-12-01 05:47:52', 0, NULL, 1),
(15473, 'Thirisha S', '6', '8220143253', '8925442337', 'thirisha1710@gmail.com', '2002-10-17', 21, '1', '2', 'Sasikumar R', 'Farmer', 20000.00, 1, 25.00, 3.00, 'Perambalur', 'Ambattur', '2312010010', '', '2', 'upload_files/candidate_tracker/26881972261_THIRISHA S_RESUME .pdf', NULL, '1', '2023-12-28', 0, '77827', '3', '59', '2024-01-02', 240000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-01 05:33:43', 60, '2024-01-02 10:32:02', 0, NULL, 1),
(15474, 'K V Harsha', '13', '8637414559', '', 'kv.harsha10@gmail.com', '2002-10-28', 21, '6', '2', 'N Vijayalakshmi', 'Nurse', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2312010011', '', '1', 'upload_files/candidate_tracker/22635401209_K V Harsha resume.pdf', NULL, '1', '2023-12-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basics not open for TxxampC not suitable', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 05:36:55', 1, '2023-12-01 10:32:39', 0, NULL, 1),
(15475, 'JERMIEOREX', '2', '8667761462', '9524199490', 'jermieorex.anthony@gmail.com', '1999-07-01', 24, '6', '2', 'Anthony', 'Police', 70000.00, 1, 0.00, 25000.00, 'Dindigul', 'Dindigul', '2312010012', '', '1', 'upload_files/candidate_tracker/46360630568_Jermieorex Anthony.pdf', NULL, '1', '2023-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 05:39:40', 1, '2023-12-01 05:46:08', 0, NULL, 1),
(15476, 'Faiz Ahmad', '13', '9087125964', '', 'faizahmad317200@gmail.com', '2002-01-22', 21, '3', '2', 'Atha vullah A', 'Daily wages', 10000.00, 2, 0.00, 10000.00, 'Trichy', 'CHENNAI', '2312010013', '', '1', 'upload_files/candidate_tracker/18916509163_Faiz_Ahmad_Cv__.pdf', NULL, '1', '2023-12-16', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-01 05:46:29', 85, '2023-12-16 10:28:01', 0, NULL, 1),
(15477, 'Parthiban', '5', '6381815420', '9566075225', 'parthibanb124@gmail.com', '1998-03-21', 25, '2', '2', 'Boopalan', 'Police', 55000.00, 2, 25000.00, 28000.00, 'Chennai', 'Chennai', '2312010014', '1', '2', 'upload_files/candidate_tracker/92618013377_B PARTHIBAN RESUME final.pdf', NULL, '1', '2023-12-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-01 05:54:01', 108, '2023-12-01 12:29:18', 0, NULL, 1),
(15478, 'mukeshkanna', '13', '8678915300', '6369437837', 'mukeshgeetha46@gmail.com', '2000-04-05', 23, '6', '2', 'A.kasianantham', 'business', 20000.00, 1, 20000.00, 30000.00, 'chennai', 'chennai', '2312010015', '', '2', 'upload_files/candidate_tracker/60811922061_new_updated_resume.pdf', NULL, '1', '2023-12-01', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 06:01:50', 1, '2023-12-01 06:58:39', 0, NULL, 1),
(15479, 'Ajay', '16', '8682956912', '8124071416', 'ajaysekar9850@gmail.com', '2001-03-07', 22, '6', '2', 'Sekar', 'Farmer', 5000.00, 3, 0.00, 18000.00, 'Thiruvanamalai', 'Chennai', '2312010016', '', '1', 'upload_files/candidate_tracker/55948432341_AJAY (junior data analyst).pdf', NULL, '1', '2023-12-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 06:08:30', 1, '2023-12-01 06:15:17', 0, NULL, 1),
(15480, 'Sandhya.s', '16', '8248186075', '', 'sandhyasqpgi@gmail.com', '2003-05-28', 20, '3', '2', 'Sekar', 'Tifan shop', 20000.00, 1, 0.00, 15000.00, 'Viyasarpadi', 'Viyasarpadi', '2312010017', '', '1', 'upload_files/candidate_tracker/65755467468_pdf_20230610_101833_0000.pdf', NULL, '1', '2023-12-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 06:23:04', 1, '2023-12-01 06:39:11', 0, NULL, 1),
(15481, 'Rajarajeshwari.b.l', '16', '9025045519', '9789085200', 'rajeshwariraje372@gmail.com', '2002-08-03', 21, '3', '2', 'Lingeshwaran.b.s', 'Textile shop keeper', 20000.00, 1, 0.00, 15000.00, '41/a 19 th east cross nesavalar colony MKB nagar', 'NO:13 Palani andavar street perambur', '2312010018', '', '1', 'upload_files/candidate_tracker/13680386196_resum_org.pdf', NULL, '1', '2023-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 06:24:26', 1, '2023-12-01 06:50:35', 0, NULL, 1),
(15482, 'Lourdu Saleth Mary.A', '13', '9655419200', '', 'lurdhu2003@gmail.com', '2003-04-29', 20, '6', '2', 'Alexander', 'Cooli', 90000.00, 2, 0.00, 15000.00, '123,New Street, Michaelpuram,kallakurichi(dt)', '123,New Street, Michaelpuram,Kallakurichi(Dt)', '2312010019', '', '1', 'upload_files/candidate_tracker/41014947964_Lourdu Saleth resume_1700915875163_Lourdu Saleth Mary.A.pdf', NULL, '1', '2023-12-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 06:29:03', 1, '2023-12-01 06:32:32', 0, NULL, 1),
(15483, 'Pradeep', '13', '7339396717', '', 'Pradeepvasu339@gmail.com', '2002-02-28', 21, '6', '2', 'M.Vasu', 'Food Catering', 18000.00, 1, 0.00, 300000.00, 'Vellore', 'Chennai', '2312010020', '', '1', 'upload_files/candidate_tracker/71951520987_PradeepCv.pdf', NULL, '1', '2023-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 07:03:26', 1, '2023-12-01 07:08:19', 0, NULL, 1),
(15484, 'Banu Priya Loganathan', '13', '9025190379', '9025190378', 'banup804@gmail.com', '2002-12-06', 20, '3', '2', 'Loganathan', 'Labour', 18000.00, 1, 0.00, 200000.00, 'Thiruvallur', 'Thiruvallur', '2312010021', '', '1', 'upload_files/candidate_tracker/6115551750_BanuPriya Resume.pdf', NULL, '1', '2023-12-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 07:44:41', 1, '2023-12-01 07:53:16', 0, NULL, 1),
(15485, '', '0', '8124006854', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312010022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-01 08:03:07', 0, NULL, 0, NULL, 1),
(15486, 'Abdul Rahman', '14', '9500893174', '', 'abdr60699@gmail.com', '1996-10-29', 27, '2', '2', 'shahul', 'business', 100000.00, 2, 330000.00, 300000.00, 'sevenwells chennai 1', 'sevenwells chennai 1', '2312010023', '1', '2', 'upload_files/candidate_tracker/12285721368_Resume flut 1125.pdf', NULL, '1', '2023-12-01', 25, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2023-12-01 08:49:00', 104, '2023-12-01 03:14:49', 0, NULL, 1),
(15487, 'Sureshbabu', '13', '8667000792', '', 'sureshbabu.s1732@gmail.com', '2002-03-17', 21, '6', '2', 'Sivakumar K', 'Silk Saree Business', 40000.00, 2, 0.00, 300000.00, '93,Bajanai Kovil Street, Hasanamapet', '93,Bajanai Kovil Street, Hasanamapet', '2312010024', '', '1', 'upload_files/candidate_tracker/64949250506_Resume.pdf', NULL, '1', '2023-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 09:02:09', 1, '2023-12-01 09:39:22', 0, NULL, 1),
(15488, 'SARAVANAN T', '2', '6381177578', '', 'sachinsaro96@gmail.com', '1999-11-06', 24, '3', '2', 'Thanikachalam.A', 'Farmer', 75000.00, 2, 0.00, 13000.00, 'Chengellpattu', 'Chengellpattu', '2312010025', '', '1', 'upload_files/candidate_tracker/69519988599_Resume.pdf', NULL, '1', '2023-12-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 09:20:51', 1, '2023-12-01 09:26:29', 0, NULL, 1),
(15489, 'Vivek', '13', '8608294227', '6380975455', 'vivekc9750@gmail.com', '2001-09-07', 22, '3', '2', 'N/A', 'N/A', 120000.00, 1, 350000.00, 350000.00, 'Chennai', 'Chennai', '2312010026', '', '2', 'upload_files/candidate_tracker/79637744736_Vivek_C.pdf', NULL, '1', '2023-12-13', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-01 09:27:13', 104, '2023-12-13 11:29:07', 0, NULL, 1),
(15490, 'monisha', '13', '9791701396', '9345877700', 'monishaarumugavel663@gmail.com', '1997-10-27', 26, '6', '2', 'arumugavel', 'farmer', 15000.00, 1, 0.00, 20000.00, 'karur', 'Velachery', '2312010027', '', '1', 'upload_files/candidate_tracker/37662967906_Monisha_Resume.pdf', NULL, '1', '2023-12-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 10:21:16', 1, '2023-12-01 10:26:16', 0, NULL, 1),
(15491, 'Gopilingam', '13', '8248090230', '9894467690', 'm.gopilingam@gmail.com', '1993-01-01', 30, '6', '1', 'Swathika v', 'Homemaker', 12000.00, 1, 20000.00, 25000.00, 'Kumbakonam', 'Chennai', '2312010028', '', '2', 'upload_files/candidate_tracker/39513838938_Gopinewexp.pdf', NULL, '1', '2023-12-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 10:21:33', 1, '2023-12-01 10:26:34', 0, NULL, 1),
(15492, 'Santhosh Kumar K', '2', '6383656353', '', 'santhoyuva3@gmail.com', '2000-01-19', 23, '6', '2', 'Kuppusamy P', 'House keeping contractor', 35000.00, 1, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2312010029', '', '1', 'upload_files/candidate_tracker/68231489890_Santhosh resume .pdf', NULL, '1', '2023-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 10:21:46', 1, '2023-12-01 10:28:10', 0, NULL, 1),
(15493, 'Vijayaraj', '2', '6384084510', '9600274267', 'vr104555@gmail.com', '2002-12-02', 21, '3', '2', 'Manoharan', 'Hotel cashier', 20000.00, 1, 0.00, 20000.00, 'Tiruvannamalai', 'Chennai', '2312010030', '', '1', 'upload_files/candidate_tracker/58130499587_Vijayaraj Resume New-2.pdf', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 10:30:17', 1, '2023-12-03 05:51:18', 0, NULL, 1),
(15494, 'dhenesh sivasankaran', '13', '9940457026', '', 'sharveshdinesh81998@gmail.com', '2000-08-18', 23, '6', '2', 'sivasankaran', 'crane operator', 2.00, 1, 0.00, 2.00, 'chennai', 'chennai', '2312010031', '', '1', 'upload_files/candidate_tracker/51748858058_Dhenesh Resume.pdf', NULL, '1', '2023-12-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 11:23:55', 1, '2023-12-01 11:27:14', 0, NULL, 1),
(15495, 'chellam', '33', '9486593686', '8925176113', 'divyapretty9355@gmail.com', '1998-10-25', 25, '3', '2', 'padmavathi', 'msc maths', 22000.00, 0, 307020.00, 450000.00, 'nagercoil', 'ekattuthangal', '2312010032', '', '2', 'upload_files/candidate_tracker/60852928197_Chellam P T - Resume.pdf', NULL, '1', '2023-12-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 11:30:33', 1, '2023-12-01 11:36:19', 0, NULL, 1),
(15496, 'Punithavathi', '33', '6374289204', '8754204164', 'punithavathi502@gmail.com', '2008-12-01', 0, '3', '2', 'Govindharaj R', 'Farmer', 30000.00, 3, 20000.00, 25000.00, 'Paraiyur village, Krishnagiri Dt', '3rd Reddy street, ekkatuthangal, Chennai 600032', '2312010033', '', '2', 'upload_files/candidate_tracker/41321814146_PUNITHAVATHI G Resume-1.pdf', NULL, '1', '2023-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 11:32:16', 1, '2023-12-01 11:40:26', 0, NULL, 1),
(15497, 'Rohith v', '2', '7708605903', '', 'gunalrohith269@gmail.com', '2002-04-15', 21, '3', '2', 'Vinayagam m', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Gummidipoondi', 'Gummidipoondi', '2312010034', '', '1', 'upload_files/candidate_tracker/86815930841_RohithResume.docx', NULL, '1', '2023-12-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 12:13:40', 1, '2023-12-01 12:31:54', 0, NULL, 1),
(15498, 'Amreen begum.h', '6', '7358768781', '9025096694', 'amreen2002b@gmail.com', '2002-11-01', 21, '2', '2', 'Sirajunisa', 'Housewife', 84000.00, 3, 0.00, 18000.00, 'No', 'Chennai ,royapettah', '2312010035', '1', '1', 'upload_files/candidate_tracker/47957861201_Amreen.pdf', NULL, '1', '2023-12-02', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-01 12:54:45', 104, '2023-12-02 03:13:08', 0, NULL, 1),
(15499, 'Siraj nisha', '4', '9840178817', '6369428297', 'siraj07012003@gmail.com', '2003-01-07', 20, '3', '2', 'Farook', 'Auto driver', 20000.00, 2, 0.00, 13000.00, 'Manali', 'Manali', '2312010036', '', '1', 'upload_files/candidate_tracker/35672173484_Resume..pdf', NULL, '1', '2023-12-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-01 01:07:16', 85, '2023-12-08 10:10:05', 0, NULL, 1),
(15500, 'mohammed zaid', '33', '8124470644', '', 'zaidmz5427@gmail.com', '2002-04-05', 21, '2', '2', 'a k mohammed zunid', 'office assistant', 16000.00, 1, 22000.00, 24000.00, 'chennai', 'chennai', '2312010037', '1', '2', 'upload_files/candidate_tracker/78718079311_Mohammed_zaid_CV.pdf', NULL, '1', '2023-12-02', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good have exp in accounts but sustainability in our accoutns roles doubts if he comes back let us try', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-01 03:50:04', 108, '2023-12-12 01:14:07', 0, NULL, 1),
(15501, 'Bakyalakshmi', '5', '9384612943', '', 'bakyalakshmi279@gmail.com', '1999-07-27', 24, '4', '1', 'Krishnan', 'Senior associate', 30000.00, 0, 0.00, 20000.00, 'Chennai', 'Kolathur', '2312010038', '', '1', 'upload_files/candidate_tracker/34954661675_Bakyalakshmi Resume.pdf', NULL, '1', '2023-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-01 06:35:38', 1, '2023-12-01 06:39:46', 0, NULL, 1),
(15502, 'Vishnu priya', '31', '9965515908', '', 'Priyavinoth1997@gmail.com', '1997-09-22', 26, '6', '1', 'Jaganathan', 'Business', 20000.00, 2, 0.00, 15.00, 'Chennai', 'Perungalathur', '2312020001', '', '1', 'upload_files/candidate_tracker/96542227872_vishnu new resume.pdf', NULL, '1', '2023-12-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-02 05:58:07', 1, '2023-12-02 06:01:04', 0, NULL, 1),
(15503, 'lanal reno preezcy a', '6', '8825574012', '', 'preezcysebastin1712@gmail.com', '2001-12-17', 21, '1', '2', 'mary baby s', 'house wife', 50000.00, 1, 0.00, 15000.00, 'kanyakumari', 'nungampakkam', '2312020002', '', '1', 'upload_files/candidate_tracker/923929060_PREEZCY Resume new.pdf', NULL, '1', '2023-12-02', 0, '77824', '3', '59', '2023-12-07', 164400.00, '', '5', '1970-01-01', '2', 'Selected for Muthu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-02 05:59:02', 60, '2023-12-07 10:15:10', 0, NULL, 1),
(15504, 'k prudhvi', '6', '7337517256', '9676403475', 'kadiriprudhvi900@gmail.com', '2003-08-20', 20, '3', '2', 'k surendra', 'farmer', 15000.00, 0, 0.00, 14000.00, 'jerrimadugu  mapakshi chittoor', 'tripti apartments rajaratinam stadium egmore', '2312020003', '', '1', 'upload_files/candidate_tracker/11279918814_prudhvi 2.pdf', NULL, '1', '2023-12-02', 0, '', '3', '59', '2023-12-06', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team in Staff Role', '5', '2', '4', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-02 06:00:41', 60, '2023-12-06 11:51:14', 0, NULL, 1),
(15505, 'Prabanjan M', '13', '8778618694', '', 'mprabanjan28@gmail.com', '2002-07-22', 21, '3', '2', 'Moorthy', 'Daily wages', 96000.00, 1, 0.00, 15000.00, 'Mylapore,chennai', 'Mylapore, Chennai', '2312020004', '', '1', 'upload_files/candidate_tracker/57858351269_prabanjan.pdf', NULL, '1', '2023-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-02 06:04:25', 1, '2023-12-02 06:14:56', 0, NULL, 1),
(15506, 'Ashwini', '16', '7358556992', '', 'ashwini.gopinathcse@gmail.com', '1998-05-12', 25, '2', '2', 'Gopinath', 'Not employed', 300000.00, 1, 3120000.00, 400000.00, 'Chennai', 'Chennai', '2312020005', '1', '2', 'upload_files/candidate_tracker/53967964824_Profile - Ashwini G.pdf', NULL, '1', '2023-12-02', 30, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-02 06:15:50', 85, '2023-12-02 12:44:29', 0, NULL, 1),
(15507, 'Guruprasanth B', '13', '7397326119', '', 'gurubalu09@gmail.com', '2002-09-03', 21, '3', '2', 'Balu k', 'Watchman', 10000.00, 1, 0.00, 12000.00, 'Mylapore', 'Mylapore', '2312020006', '', '1', 'upload_files/candidate_tracker/68207307696_Guru_PrasanthB_Resume_82 (1)-1.docx', NULL, '1', '2023-12-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-02 06:17:58', 1, '2023-12-02 06:40:41', 0, NULL, 1),
(15508, 'Ebinesa.', '13', '8939493499', '', 'Ebimaxx2323@gmail.com', '2003-02-23', 20, '3', '2', 'Joseph.i', 'Welding work', 100000.00, 2, 0.00, 15000.00, 'Vettuvankeni ,ecr', 'Adyar', '2312020007', '', '1', 'upload_files/candidate_tracker/87110997445_ebinesarresume.pdf', NULL, '1', '2023-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-02 06:18:08', 1, '2023-12-02 06:23:02', 0, NULL, 1),
(15509, 'Mohanaprasath T', '13', '7305599132', '9342141764', 'prasaththangamani551@gmail.com', '2002-06-17', 21, '3', '2', 'Thangamani', 'Kooli', 96000.00, 1, 0.00, 15000.00, 'Mylapore, Chennai', 'Mylapore, Chennai', '2312020008', '', '1', 'upload_files/candidate_tracker/75651814021_MOHANAPRASATH T (2).pdf', NULL, '1', '2023-12-02', 0, '', '3', '59', '2024-03-18', 100000.00, '', '5', '1970-01-01', '1', 'Selecetd for Node MySQL intern with Employment', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-02 06:24:28', 60, '2024-03-18 11:22:26', 0, NULL, 1),
(15510, 'M. Pavithra', '23', '7397667356', '8754852381', 'pavikutty0722@gmail.com', '2001-06-22', 22, '3', '2', 'Murugan', 'Labour', 15000.00, 1, 0.00, 15000.00, 'Tambaram, chennai', 'Tambaram, chennai', '2312020009', '', '1', 'upload_files/candidate_tracker/30411734142_M.Pavithra.pdf', NULL, '1', '2023-12-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-02 07:02:38', 1, '2023-12-02 07:08:36', 0, NULL, 1),
(15511, 'Siraj nisha', '4', '8189891164', '6369428297', 'siraj07012003@gmail.com', '2003-01-07', 20, '2', '2', 'Farook', 'Auto driver', 20000.00, 2, 0.00, 13000.00, 'Manali', 'Manali', '2312020010', '1', '1', 'upload_files/candidate_tracker/75106854296_Resume..pdf', NULL, '1', '2023-12-02', 0, '', '3', '59', '2023-12-08', 152400.00, '', '5', '1970-01-01', '2', 'Selected for B2B in consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-02 07:23:09', 85, '2023-12-08 11:16:49', 0, NULL, 1),
(15512, 'Ashedha', '13', '7094024854', '', 'ashedha25@gmail.com', '2002-07-25', 21, '3', '2', '*NA', 'Graduate BCA', 400000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2312020011', '', '1', 'upload_files/candidate_tracker/69106990498_new resume edited ashedha.pdf', NULL, '1', '2023-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-02 07:28:58', 1, '2023-12-02 07:42:36', 0, NULL, 1),
(15513, 'Mohammed faizal khan', '6', '9500753237', '6380294094', 'faizalfaha7@GMAIL.COM', '2001-03-20', 22, '3', '2', 'Sathik', 'Fisherman', 40000.00, 0, 0.00, 15000.00, 'Rameswaram', 'Chennai', '2312020012', '', '1', 'upload_files/candidate_tracker/91912517184_Mohamed Faizalkhan.pdf', NULL, '1', '2023-12-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Poor Quality', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-02 07:36:26', 108, '2023-12-02 06:46:36', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15514, 'Gayathri', '7', '9600582884', '9840227769', 'gayuprabu18@gmail.com', '1992-10-24', 31, '2', '1', 'T.prabu', 'IT services', 400000.00, 1, 15000.00, 17000.00, 'Kolathur', 'Kolathur', '2312020013', '1', '2', 'upload_files/candidate_tracker/96437828227_A.S.GAYATHRI Resume.pdf', NULL, '1', '2023-12-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles will not sustain long career gap', '7', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-02 09:59:22', 104, '2023-12-14 01:31:02', 0, NULL, 1),
(15515, 'shireen', '5', '8939517587', '9176665840', 'shireen.jasmine@gmail.com', '1991-07-15', 32, '2', '1', 'Udaya kumar', 'Just dial', 35000.00, 2, 36000.00, 50000.00, 'Chennai', 'Chennai', '2312020014', '1', '2', '', NULL, '1', '2023-12-07', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Attended', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-02 10:33:59', 18, '2024-01-29 02:49:35', 0, NULL, 1),
(15516, 'G.SATHISH KUMAR', '33', '8148585174', '', 'Ayansathish22296@gmail.com', '1996-02-22', 27, '2', '2', 'Ganeshan', 'Post office', 40000.00, 1, 2.40, 3.00, 'Pallavaram,Chennai', 'Pallavaram,Chennai', '2312020015', '1', '2', 'upload_files/candidate_tracker/77764593102_G.Sathish Resume (2) new (1).pdf', NULL, '1', '2023-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles will not sustain ', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-02 01:20:17', 104, '2023-12-07 09:42:54', 0, NULL, 1),
(15517, 'Priyanka', '7', '8248862863', '', 'priyankavenkatesh28.vp@gmail.com', '1999-06-28', 24, '3', '2', 'Venkatesh', 'Business', 4.00, 1, 0.00, 27.00, 'Chennai', 'Chennai', '2312020016', '', '2', 'upload_files/candidate_tracker/28731613988_Priyanka. V (003).docx', NULL, '1', '2023-12-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-02 01:22:07', 1, '2023-12-02 01:28:09', 0, NULL, 1),
(15518, 'Mohammed udaib Ahmed', '33', '7411248577', '', 'mdudaib3526@gmail.com', '2001-01-26', 22, '3', '2', 'Nil', 'Looking for job', 60000.00, 4, 0.00, 20000.00, 'Ramanagar channapatna', 'Banashankari', '2312020017', '', '1', 'upload_files/candidate_tracker/43572191041_Resume_2023-09-23_3637096.pdf', NULL, '1', '2023-12-06', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-02 01:22:13', 104, '2023-12-06 10:38:36', 0, NULL, 1),
(15519, 'vijay', '33', '8939262493', '', 'vijaysekarisp@gmail.com', '1998-02-06', 25, '2', '2', 'sekar', 'riksha driver', 16000.00, 1, 16000.00, 20000.00, 'korukkupet', 'thiruvottiyur', '2312020018', '1', '2', 'upload_files/candidate_tracker/97420181957_CV319.pdf', NULL, '1', '2023-12-07', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much strong with the basics need to consider later based on the other profiles and the schedules', '4', '1', '', '1', '8', '', '2', '2023-12-11', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-02 01:24:39', 108, '2023-12-08 10:00:44', 0, NULL, 1),
(15520, 'jegan', '4', '8870391026', '8883839037', 'jegankutty652@gmail.com', '2001-04-12', 22, '2', '2', 'Samuvel', 'Painter', 15000.00, 2, 15000.00, 18000.00, 'Thanjavur', 'Thanjavur', '2312020019', '1', '2', 'upload_files/candidate_tracker/11398672326_Resume Jegan.docx', NULL, '1', '2023-12-04', 0, '', '3', '59', '2023-12-19', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Sithy Team in Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-02 01:28:56', 60, '2023-12-18 07:06:20', 0, NULL, 1),
(15521, '', '0', '9751136733', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312030001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-03 04:43:47', 0, NULL, 0, NULL, 1),
(15522, '', '0', '6381106511', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312030002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-03 06:11:31', 0, NULL, 0, NULL, 1),
(15523, 'chetana', '5', '9731508764', '', 'chethanmogaveer598@gmail.com', '2003-05-06', 20, '2', '2', 'radha', 'agriculture', 15000.00, 0, 0.00, 18000.00, 'karnataka', 'bangalore', '2312050001', '1', '1', 'upload_files/candidate_tracker/99241495877_CHETHAN 2.docx', NULL, '1', '2023-12-05', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'due to communication skill', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-05 05:38:34', 104, '2023-12-06 09:44:23', 0, NULL, 1),
(15524, 'Imran khan E', '5', '9841697859', '', 'imrankhanbemech@gmail.com', '1996-06-01', 27, '3', '2', 'Enayathullah khan A', 'Tailor', 12000.00, 1, 28000.00, 35000.00, 'Pallikkaranai,Chennai', 'Pallikkaranai, Chennai', '2312070001', '', '2', 'upload_files/candidate_tracker/36225952426_IK RESUME.pdf', NULL, '1', '2023-12-07', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok Can give a try  in our role but left without attending the final round with Manikandan BDM\nif he comes back let us try', '5', '1', '0', '1', '8', '0', '2', '2023-12-11', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-07 04:27:59', 1, '2023-12-07 04:31:05', 0, NULL, 1),
(15525, 'Divya. A', '13', '9629110738', '7418068863', 'Divyadyaarunachalam@gmail.com', '2000-07-22', 23, '3', '2', 'Parent nama vasanthi', 'Super market shop keeper', 72000.00, 4, 17000.00, 20000.00, 'Thoothukdi district 628612', 'Egmore Chennai 600008', '2312070002', '', '2', 'upload_files/candidate_tracker/87349122401_1701081428694_1701081426764_1701081426088_1700358692_azhagiiii.pdf', NULL, '1', '2023-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No ideas and no basicsFrequent job changes not suitable for our roles will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-07 05:03:19', 1, '2023-12-07 05:19:53', 0, NULL, 1),
(15526, 'Krishnamoorthy Gopal', '32', '9043524265', '', 'fostermac02@gmail.com', '1990-12-02', 33, '3', '1', 'Poojitha', 'Working', 500000.00, 1, 420000.00, 600000.00, '146 Saravana Flats 5th cross st Mangala Ngr Porur', '146 Saravana Flats 5th Cross St Mangala Ngr Porur', '2312070003', '', '2', 'upload_files/candidate_tracker/45154445452_Krishnamoorthy Gopal new.docx', NULL, '1', '2023-12-07', 30, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Attended', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-07 05:39:27', 60, '2023-12-07 07:44:06', 0, NULL, 1),
(15527, 'JEEVA JENSON', '2', '9361205581', '7339372308', 'jeevajenson001@gamil.com', '2000-05-15', 23, '6', '2', 'SELVANTHAN V', 'Former', 15000.00, 2, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2312070004', '', '1', 'upload_files/candidate_tracker/87219311546_jeeva resume.pdf', NULL, '1', '2023-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Strong with the basics analytical no not joined the company offered for 10K will not sustain in a long run', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-07 05:47:33', 1, '2023-12-07 05:51:43', 0, NULL, 1),
(15528, 'keerthana p g', '7', '8428911868', '8946075006', 'Keerthanapg638@gmail.com', '2001-06-24', 22, '3', '2', 'gopi rao p', 'esi Hospital worker', 45000.00, 1, 16000.00, 22000.00, 'manali chennai', 'manali', '2312070005', '', '2', 'upload_files/candidate_tracker/76566961188_junia-MSW.docx', NULL, '1', '2023-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basics Skills in MF and will not handle our work pressure not suitbale', '7', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-07 05:48:17', 1, '2023-12-07 05:58:13', 0, NULL, 1),
(15529, 'Yuvaraj R', '7', '8072175789', '', 'Yuvaraj.Jerry7@gmail.com', '2000-08-10', 23, '3', '2', 'Dhanalakshmi', 'House wife', 15.00, 1, 15000.00, 20000.00, 'Madhavaram milk colony', 'Madhavaram', '2312070006', '', '2', 'upload_files/candidate_tracker/28382069767_yuvaya.pdf', NULL, '1', '2023-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Low Quality for our roles not suitable will not run in a long', '7', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-07 05:48:23', 1, '2023-12-07 06:16:05', 0, NULL, 1),
(15530, 'VarshaAnand', '6', '8072875188', '', 'varsha97805@gmail.com', '2003-03-10', 20, '1', '2', 'Lakshmi', 'Baby care', 20.00, 0, 0.00, 20.00, '39/9 Annamalai Nagar 2nd West saidapet', '39/9 Annamalai nagar 2nd st west saidapet', '2312070007', '', '1', 'upload_files/candidate_tracker/99551846193_Varsha BBA Resume1.pdf', NULL, '1', '2023-12-07', 0, '00631', '3', '59', '2023-12-12', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-07 06:30:49', 60, '2023-12-12 09:50:12', 0, NULL, 1),
(15531, 'Muhin Ahamed', '16', '9962828967', '', 'muhinahamed2002@gmail.com', '2002-02-19', 21, '2', '2', 'Irshadh Ahamed', 'Tailor', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2312070008', '1', '1', 'upload_files/candidate_tracker/71378489121_Muhin_Ahamed_CV.pdf', NULL, '1', '2023-12-08', 0, '', '3', '59', '2023-12-09', 168000.00, '', '', '1970-01-01', '2', 'Selected for Operations Team Need to confirm the role', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-07 06:38:17', 104, '2023-12-08 06:01:09', 0, NULL, 1),
(15532, 'Ezhumalai', '28', '8610652631', '7358241121', 'mezhu473@gmail.com', '1999-03-22', 24, '3', '2', 'Palani', 'Maser', 20000.00, 1, 234000.00, 300000.00, 'Chennai', 'Chennai', '2312070009', '', '2', 'upload_files/candidate_tracker/12884966651_Ezhumalai 12-6.pdf', NULL, '1', '2023-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average Have exp but career gap too Existing company is offereing 22K just 11 months exp will  not sustain not suitbale', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-07 08:00:59', 1, '2023-12-07 08:03:48', 0, NULL, 1),
(15533, 'Kranthi Kumar s', '6', '7013335277', '', 'kranthi14081991@gmail.com', '1991-08-14', 32, '1', '2', 'Nill', 'Nill', 65000.00, 2, 17500.00, 23000.00, 'Nellore', 'Ekkathungal', '2312070010', '', '2', 'upload_files/candidate_tracker/43636648857_null.pdf', NULL, '1', '2023-12-07', 0, 'CAFSUSR00640', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-07 10:28:08', 108, '2023-12-07 07:31:29', 0, NULL, 1),
(15534, 'Aarthi', '4', '8189962703', '', 'Aarthi8545@gmail.com', '2001-06-28', 22, '2', '2', 'Rajasekar', 'Farmer', 20000.00, 1, 0.00, 10000.00, 'Mudukulam', 'Mudukulam', '2312070011', '1', '1', 'upload_files/candidate_tracker/1209283709_Aarthi canva resume (1).pdf', NULL, '1', '2023-12-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-07 01:28:54', 108, '2023-12-08 12:44:50', 0, NULL, 1),
(15535, '', '0', '9047028532', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312070012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-07 01:30:55', 0, NULL, 0, NULL, 1),
(15536, '', '0', '6374401299', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312070013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-07 02:04:47', 0, NULL, 0, NULL, 1),
(15537, 'Rokibul Ahmed', '5', '7575938430', '', 'rokibahmed363@gmail.com', '1995-04-02', 28, '3', '2', 'Ayen uddin', 'Business', 50000.00, 3, 476000.00, 550000.00, 'Perungudi', 'Kundrathur', '2312070014', '', '2', 'upload_files/candidate_tracker/53434514845_Roki.Cv_Rokibul Ahmed.docx', NULL, '1', '2024-03-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Local Language not suitable for our roles will not sustain and high salaryexp', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-07 09:48:59', 112, '2024-03-19 05:34:02', 0, NULL, 1),
(15538, 'Vishal', '16', '9025240431', '7708430904', 'vishalr3011@gmail.com', '1997-07-04', 26, '2', '2', 'Mageswari s', 'House wife', 30000.00, 2, 230000.00, 350000.00, 'Korrukkupet,chennai 600021', 'Madhavaram,chennai 600060', '2312080001', '1', '2', 'upload_files/candidate_tracker/32526931673_vishal Resume.pdf', NULL, '1', '2023-12-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interview Done with Gokul Will go through the Payslips and confirm the Joining procedures', '3', '1', '', '1', '8', '', '2', '2023-12-11', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-08 04:33:00', 104, '2023-12-08 06:02:30', 0, NULL, 1),
(15539, 'Fahad.F', '31', '6383109990', '', 'fahadbsc15@gmail.com', '2000-08-20', 23, '3', '2', 'Ferosekhan.B', 'Storekeeper', 25000.00, 1, 0.00, 20000.00, 'Arantangi', 'Arantangi', '2312080002', '', '1', 'upload_files/candidate_tracker/13054640808_My resume Fahad.pdf', NULL, '1', '2023-12-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT Career Gap Maths knowledge Average  if he comes back after confirmationfor TxxampC will check', '2', '1', '', '1', '8', '', '2', '2023-12-11', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-08 04:42:40', 104, '2023-12-08 06:03:17', 0, NULL, 1),
(15540, 'vignesh kumar', '13', '9840037186', '', 'Vigneshvickyk.96@gmail.com', '1996-07-16', 27, '3', '2', 'kannan', 'scaffolding', 50000.00, 2, 0.00, 25000.00, 'chennai', 'chennai', '2312080003', '', '1', 'upload_files/candidate_tracker/50023673129_VIGENSH-Resume.pdf', NULL, '1', '2023-12-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Long Career Gap not good with maths need time to learn the skills if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-08 05:18:52', 1, '2023-12-08 05:23:16', 0, NULL, 1),
(15541, 'Dhanavanthini k', '4', '9003836010', '6369297618', 'dhanavanthinitmk@gmail.com', '1993-07-04', 30, '2', '2', 'Kaliyamoorthy', 'Farmer', 50000.00, 1, 2.40, 3.00, 'Thanjavur', 'Thanjavur', '2312080004', '1', '2', 'upload_files/candidate_tracker/30191906588_Dhanavanthini Resume (5) (1).pdf', NULL, '1', '2023-12-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-08 05:23:13', 108, '2023-12-08 12:45:42', 0, NULL, 1),
(15542, 'Ashokkumar R', '13', '6380967088', '', 'ashokravichandran2312@gmail.com', '1997-05-22', 26, '3', '2', 'Ravichandran P', 'Former', 35000.00, 1, 0.00, 150009.00, 'Thoothukudi', 'Chennai', '2312080005', '', '1', 'upload_files/candidate_tracker/42636368244_ASHOKKUMAR_RESUME (1).pdf', NULL, '1', '2023-12-08', 0, '', '3', '59', '2023-12-09', 120000.00, '', '0', NULL, '2', 'Selected for IT team with txxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-08 05:35:06', 1, '2023-12-08 05:38:06', 0, NULL, 1),
(15543, 'Sathish.m', '6', '6379880277', '9095745419', 'Ssat55901@gmail.com', '2003-01-09', 20, '1', '2', 'None', 'None', 20000.00, 1, 0.00, 15000.00, '30/38 Nammalwar Street choolai Chennai', '30/38 Nammalwar Street Choolai Chennai', '2312080006', '', '1', 'upload_files/candidate_tracker/47478961137_sathish.M python developer.pdf', NULL, '1', '2023-12-08', 0, '77825', '3', '59', '2023-12-11', 192000.00, '', NULL, '2025-01-11', '1', 'Selected for Babu Team in Consultant Role sir', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-08 05:41:15', 60, '2023-12-10 11:05:41', 0, NULL, 1),
(15544, 'barath', '26', '7401007978', '7397304106', 'barathvj153@gmail.com', '2002-03-15', 21, '2', '2', 'elaiyan p', 'fisherman', 80000.00, 0, 12000.00, 25000.00, 'chennai', 'chen', '2312080007', '1', '2', 'upload_files/candidate_tracker/48660681043_Resume - Barath E.pdf', NULL, '1', '2023-12-08', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'too long Distance worked in Telesales but not comfortable with that Poor Communication not suitable', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-08 05:49:38', 104, '2023-12-08 06:03:46', 0, NULL, 1),
(15545, 'Pradeepa A', '13', '8489180216', '', 'sudhapradee517@gmail.com', '1998-05-09', 25, '4', '2', 'Arumugam', 'Lorry driver', 12000.00, 1, 0.00, 12.00, '2/224, abirami Nagar,thennilai(po),karur(dt)', 'Sembakkam,sengalpattu(dt)', '2312080008', '', '1', 'upload_files/candidate_tracker/65479009362_prdeepa sucess123.pdf', NULL, '1', '2023-12-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance Long Career Gap Sustainability doubts a lot if she comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-08 06:28:13', 104, '2023-12-08 06:02:04', 0, NULL, 1),
(15546, 'Pavithra', '6', '9840577059', '', 'Pavithrabharath975@gmail.com', '2001-05-29', 22, '1', '2', 'Pasupathi', 'Sales', 10000.00, 1, 13500.00, 16000.00, 'Perasaiwalkam', 'Purasaiwalkam', '2312080009', '', '2', 'upload_files/candidate_tracker/5704412890_vnd.openxmlformats-officedocument.wordprocessingml-1.pdf', NULL, '1', '2023-12-08', 0, '77825', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-08 07:49:21', 104, '2023-12-08 06:04:49', 0, NULL, 1),
(15547, 'Dinesh Kumar', '33', '7358276513', '', 'dk763613@gmail.com', '2003-06-12', 20, '2', '1', 'V. E. Dilli babu', 'Cooly', 2400000.00, 1, 240000.00, 300000.00, 'Chennai', 'Chennai', '2312080010', '1', '2', 'upload_files/candidate_tracker/5747911754_DINESH KUMAR resume 1 (1) 1-1.pdf', NULL, '1', '2023-12-09', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-08 10:45:52', 108, '2023-12-10 06:58:35', 0, NULL, 1),
(15548, 'Thangasaratha', '4', '9566314164', '', 'Preethitr14@gmail.com', '1995-09-08', 28, '2', '1', 'Aadhavan', 'Business', 40000.00, 1, 8000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2312080011', '1', '2', 'upload_files/candidate_tracker/46471131171_Thangasaratha_TR2_resume.pdf', NULL, '1', '2023-12-09', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-08 11:04:49', 108, '2023-12-09 10:53:37', 0, NULL, 1),
(15549, 'Pavithra', '5', '9786314308', '', 'pavikrish2598@gmail.com', '1998-07-25', 25, '2', '2', 'Radhakrishnan', 'None', 20000.00, 1, 20000.00, 25000.00, 'Thiruvannamalai', 'Thiruvannamalai', '2312080012', '1', '2', 'upload_files/candidate_tracker/84390160055_Pavithra Radhakrishnan (1).pdf', NULL, '1', '2023-12-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-08 11:25:47', 85, '2023-12-10 02:21:09', 0, NULL, 1),
(15550, 'Burle Mounika', '5', '8522894448', '', 'mounikaburle009@gmail.com', '1994-01-02', 29, '2', '1', 'Ajay kowsik', 'Chartered Accountant', 100000.00, 1, 0.00, 400000.00, 'Bangalore', 'Bangalore', '2312080013', '1', '1', 'upload_files/candidate_tracker/89542474155_DOC-20231207-WA0007..pdf', NULL, '1', '2023-12-09', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'already father lic agent and mf pms doing', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-08 02:29:47', 104, '2023-12-10 02:47:39', 0, NULL, 1),
(15551, 'Anusha G A', '5', '9019975523', '', 'chirikudukka1998anu@gmail.com', '1998-07-19', 25, '2', '2', 'Anand', 'Farmer', 10000.00, 0, 25000.00, 26000.00, 'Guddethota (p) koppa (T) chikkmnglur (D)', 'Contonment railway quarters, banglore', '2312090001', '1', '2', 'upload_files/candidate_tracker/85355420125_anu_compressed 2.pdf', NULL, '1', '2023-12-09', 0, '', '3', '59', '2024-01-10', 276000.00, '', '', '2024-01-15', '2', 'Selected for ESales Bangalore Team', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-09 04:38:49', 60, '2024-01-10 04:09:47', 0, NULL, 1),
(15552, 'Muthukumar C', '13', '7397585286', '6383231591', 'muthukumarkk003@gmail.com', '2000-05-12', 23, '4', '2', 'Chandran', 'TNEB', 70000.00, 2, 0.00, 20000.00, 'Acharapakkam', 'Acharapakkam', '2312090002', '', '1', 'upload_files/candidate_tracker/8151233688_My Resume .pdf', NULL, '1', '2023-12-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Selected by Gokul', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-09 04:50:08', 1, '2023-12-09 04:58:29', 0, NULL, 1),
(15553, 'Gokul.R', '2', '7397263168', '', 'gokulramamurthy10@gmail.com', '2000-10-10', 23, '6', '2', 'Ramamurthy', 'Clerk', 400000.00, 2, 0.00, 250000.00, 'Guduvanchery', 'Guduvanchery', '2312090003', '', '1', 'upload_files/candidate_tracker/17364110880_Gokul.R.pdf', NULL, '1', '2023-12-09', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Round with Gokul and Profile on Hold Need tolook after considering the other profiles too', '2', '1', '0', '1', '8', '0', '2', '2023-12-26', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-09 05:13:50', 1, '2023-12-09 05:18:38', 0, NULL, 1),
(15554, '', '0', '9344228644', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312090004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-09 05:25:28', 0, NULL, 0, NULL, 1),
(15555, 'Aatish sah', '5', '6361686350', '', 'aatish.sah.37@gmail.com', '2000-04-27', 23, '2', '2', 'Bimesh', 'Manager', 50000.00, 5, 0.00, 25000.00, 'JP nagar 7th phase', 'JP nagar 7th phase', '2312090005', '1', '1', 'upload_files/candidate_tracker/49781936515_Aatish CV.pdf', NULL, '1', '2023-12-09', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested in sales', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-09 06:04:13', 104, '2023-12-10 01:04:16', 0, NULL, 1),
(15556, 'Saran.B.R', '6', '6383105048', '', 'saranvenkatesh1313@gmail.com', '2002-10-13', 21, '1', '2', 'Venkatesh', 'College', 10000.00, 1, 0.00, 15000.00, 'Vyasarpadi', 'Vyasarpadi', '2312090006', '', '1', 'upload_files/candidate_tracker/98705940279_myresume.pdf', NULL, '1', '2023-12-09', 0, '55604', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-09 06:16:47', 1, '2023-12-09 06:44:05', 0, NULL, 1),
(15557, 'M Bharathi Dasan', '16', '9566129148', '8754539367', 'bharathidasan017@gmail.com', '1994-09-17', 29, '2', '2', 'Amudha M', 'Occupation no more', 10000.00, 2, 17000.00, 25000.00, 'No: 10529 Kannagi nagar Thuraipakkam Chennai 97', 'No: 10529 Kannagi Nagar Thuraipakkam Chennai 97', '2312090007', '1', '2', 'upload_files/candidate_tracker/45518643272_Bharathi New_Resume.pdf', NULL, '1', '2023-12-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Have Exp in MIS but pressure handling doubts a lot will not sustain', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-09 07:37:43', 104, '2023-12-10 02:48:45', 0, NULL, 1),
(15558, 'Swaminathan', '16', '9750043530', '', 'samithegeth1993@gmail.com', '1993-05-17', 30, '2', '2', 'Yasodha', 'Homemaker', 15000.00, 1, 31500.00, 32000.00, 'Putlur', 'Putlur', '2312090008', '1', '2', 'upload_files/candidate_tracker/53653115687_Resume 2023 1.pdf', NULL, '1', '2023-12-09', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance Salary exp is high not comfort with NDA will not sustain', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-09 07:20:02', 104, '2023-12-10 02:48:57', 0, NULL, 1),
(15559, 'Keerthana Margaret', '5', '9940383494', '', 'Margreatkeerthana@gmail.com', '2000-11-14', 23, '2', '2', 'Joseph raj', 'Auto diver', 15000.00, 1, 18000.00, 20000.00, 'Ayanavaram', 'Villivakkam', '2312090009', '1', '2', 'upload_files/candidate_tracker/55445188086_PDF Gallery_20230413_133402.pdf', NULL, '1', '2023-12-09', 7, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have exp in calling can be trained in our roles kindly check an dlet me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-09 08:55:56', 108, '2023-12-10 06:54:54', 0, NULL, 1),
(15560, 'K.Pushpa', '4', '9514135298', '', 'pushpakumar.0817@gmail.com', '2000-08-17', 23, '2', '2', 'C.kumar', 'Chennai corporation', 25000.00, 0, 0.00, 18000.00, 'Ayanavaram', 'Ayanavaram a', '2312090010', '1', '1', 'upload_files/candidate_tracker/70823937619_Document-1.pdf', NULL, '1', '2023-12-09', 0, '', '3', '59', '2023-12-11', 164400.00, '', '5', '1970-01-01', '2', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-09 08:56:09', 60, '2023-12-11 09:53:34', 0, NULL, 1),
(15561, 'Sivitha. N. P', '7', '8618485464', '9945792450', 'Sivisivitha2010@gmail.com', '1999-12-20', 23, '2', '1', 'Kumara swamy. P', 'Dilopma, ITI', 25000.00, 0, 20000.00, 25000.00, 'Bangalore', 'Chennai', '2312100001', '1', '2', 'upload_files/candidate_tracker/99459727625_sivi resume.pdf', NULL, '1', '2023-12-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-10 12:30:48', 104, '2023-12-14 01:32:33', 0, NULL, 1),
(15562, '', '0', '7305738065', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312100002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-10 12:47:16', 0, NULL, 0, NULL, 1),
(15563, 'Rebeka.A', '4', '9176763736', '', 'rebekaarumugam095@gmail.com', '2000-11-09', 23, '2', '2', 'Arumugam.N', 'Painter', 18000.00, 3, 0.00, 15000.00, 'Chennai', 'Royapettah', '2312100003', '1', '1', 'upload_files/candidate_tracker/94899827394_certificate (2).pdf', NULL, '1', '2023-12-11', 0, '', '3', '59', '2023-12-13', 162000.00, '', '5', '1970-01-01', '2', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-10 12:54:12', 60, '2023-12-12 07:00:23', 0, NULL, 1),
(15564, 'Jayashree', '16', '8270931019', '', 'ijayasri646@gmail.com', '2003-02-25', 20, '2', '2', 'iyyanarappan', 'Fisherman', 180000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Chennai', '2312100004', '1', '1', 'upload_files/candidate_tracker/33334233042_Jayashree _BCA.pdf', NULL, '1', '2023-12-11', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile applied for MIS but have interest to move IT Sustainability doubts ', '3', '2', '', '1', '8', '', '2', '2023-12-19', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-10 04:35:37', 85, '2023-12-11 07:10:08', 0, NULL, 1),
(15565, 'Sesu alexander', '4', '7708922991', '', 'Alexandertn49@gmail.com', '1998-05-13', 25, '2', '2', 'Sagayaraj', 'Carpenter', 10000.00, 1, 20000.00, 25000.00, 'THANJAVUR', 'THANJAVUR', '2312110001', '1', '2', 'upload_files/candidate_tracker/88123840552_Naukri_Sesualexander[1y_7m].pdf', NULL, '1', '2023-12-11', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-11 04:02:53', 85, '2023-12-11 07:09:02', 0, NULL, 1),
(15566, 'Hariharan', '13', '7708022524', '8220993447', 'hariharanb3321@gmail.com', '2002-12-22', 20, '3', '2', 'Balaraman', 'Watchmen', 15000.00, 2, 0.00, 20000.00, 'Tiruvallur district', 'Anna Nagar', '2312110002', '', '1', 'upload_files/candidate_tracker/53221025897_HARIHARAN RESUME (1)-1.pdf', NULL, '1', '2023-12-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 05:00:07', 1, '2023-12-11 05:05:05', 0, NULL, 1),
(15567, 'Aswanth', '13', '8056221330', '9952032062', 'aswanthash24@gmail.com', '2002-02-24', 21, '6', '2', 'Armstrong P', 'Manager at aarthi scans private limited', 3.50, 1, 0.00, 2.40, 'Tirunelveli.', 'Chennai', '2312110003', '', '1', 'upload_files/candidate_tracker/64227457738_Resume-Aswanth.A.pdf', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 05:05:37', 1, '2023-12-11 05:10:21', 0, NULL, 1),
(15568, 'D.yogeshwaran', '13', '6383774571', '9884138140', 'yogeshwarandevaraju@gmail.com', '2002-03-22', 21, '1', '2', 'R.Devaraju', 'Care taker', 15000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2312110004', '', '1', 'upload_files/candidate_tracker/61641701364_Yogeshwaran_Devaraju.pdf', NULL, '1', '2023-11-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-11 05:06:36', 104, '2023-12-11 12:06:24', 0, NULL, 1),
(15569, 'Sriram', '13', '9789579871', '9698553624', 'srirampkd07@gmail.com', '2002-06-30', 21, '3', '2', 'Shanmugavel', 'Mason', 8000.00, 1, 0.00, 2.50, 'Pandukudi, Thiruvarur.', 'Velachery, Chennai', '2312110005', '', '1', 'upload_files/candidate_tracker/31776111717_sr!r@m-re$ume.pdf', NULL, '1', '2023-12-11', 0, '', '3', '59', '2024-01-17', 120000.00, '', '1', '1970-01-01', '2', 'Selected for Intern with Employment conditions', '2', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-11 05:22:33', 60, '2024-01-17 10:37:47', 0, NULL, 1),
(15570, 'hemanth l', '32', '7760004236', '7624843246', 'hemanth3246@gmail.com', '1998-09-17', 25, '2', '2', 'lakshman dk', 'business', 80000.00, 1, 480000.00, 600000.00, 'andrahalli main road peenya 2nd stage bangalore', 'andrahalli main road peenya 2nd stage bangalore', '2312110006', '1', '2', 'upload_files/candidate_tracker/13979596257_HEMANTH RESUME .pdf', NULL, '1', '2023-12-11', 0, '', '3', '59', '2023-12-15', 540000.00, '', '5', '1970-01-01', '1', 'Selected for Sathish Team Bangalore Location in Staff Role', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-11 05:37:46', 60, '2023-12-14 05:21:22', 0, NULL, 1),
(15571, 'Balamurugan Rajamanikkam', '13', '6383374176', '', 'bb980264@gmail.com', '2001-02-12', 22, '6', '2', 'Rajamanikkam', 'Farmer', 20000.00, 2, 0.00, 12000.00, 'Kumbakonam', 'Chennai', '2312110007', '', '1', 'upload_files/candidate_tracker/8957708845_Balamurugan Rajamanikkam.docx', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 05:44:17', 1, '2023-12-11 06:00:25', 0, NULL, 1),
(15572, 'K.yamuna', '13', '8778762609', '9444187620', 'yamuna01kum@gmail.com', '2001-12-14', 21, '6', '2', 'G.kumaresan', 'Assistant professor', 30000.00, 1, 0.00, 12000.00, 'Gudvancheri', 'Gudvancheri', '2312110008', '', '1', 'upload_files/candidate_tracker/18149505144_Yamuna Resume 2023 (2).pdf', NULL, '1', '2023-12-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 05:48:12', 1, '2023-12-11 06:07:03', 0, NULL, 1),
(15573, '', '0', '6379812061', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312110009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-11 05:49:11', 0, NULL, 0, NULL, 1),
(15574, 'Karthick raja', '13', '8883806327', '', 'Karthickraja112122@gmail.com', '2002-01-02', 21, '6', '2', 'Mahalingam', 'Cooly', 10000.00, 2, 0.00, 15000.00, 'Virudhunagar', 'Chennai', '2312110010', '', '1', 'upload_files/candidate_tracker/39786347138_Naukri_KARTHICKRAJAM[0y_0m].pdf', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 06:04:11', 1, '2023-12-11 06:28:53', 0, NULL, 1),
(15575, 'rasna valsan', '5', '7907073628', '', 'rasnavalsan2@gmail.com', '2002-08-12', 0, '2', '2', 'xxxx', 'xxxx', 20000.00, 0, 0.00, 15000.00, 'bangalore', 'bangalore', '2312110011', '1', '1', 'upload_files/candidate_tracker/98380853424_RASNA VALSAN_RESUME (1).pdf', NULL, '1', '2023-12-11', 0, '', '7', '59', NULL, 0.00, '', '0', NULL, '1', 'selected for E sale profile ctc as per company norms for fresher', '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2023-12-11 06:06:14', 1, '2023-12-11 09:37:49', 0, NULL, 1),
(15576, 'jeeshan ali jahir hussain', '13', '7339325358', '6380309815', 'jeeshanxxx27@gmail.com', '2000-02-27', 23, '3', '2', 'am . jahir hussain', 'painter', 15000.00, 2, 0.00, 3.00, 'trichy', 'chennai', '2312110012', '', '1', 'upload_files/candidate_tracker/14169211000_jeeshan ali resume-1.pdf', NULL, '1', '2023-12-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 06:07:51', 1, '2023-12-11 06:11:50', 0, NULL, 1),
(15577, 'Sivakesavan s', '13', '8190967739', '9489151435', 'kesavansiva515@gmail.com', '1998-05-15', 25, '2', '2', 'Sivanandi s', 'Farmer', 72000.00, 2, 0.00, 10000.00, 'Madurai', 'Chennai', '2312110013', '26', '1', 'upload_files/candidate_tracker/19801729373_Siva new1 Resume.pdf', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 06:08:42', 1, '2023-12-11 06:12:30', 0, NULL, 1),
(15578, 'Astlin sam', '13', '9361637170', '', 'astlinsam@gmail.com', '2002-03-17', 21, '3', '2', 'Sam raj', 'X army', 20000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2312110014', '', '1', 'upload_files/candidate_tracker/76857077216_Naukri_AstlinSam[0y_0m].pdf', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 06:09:37', 1, '2023-12-11 06:14:52', 0, NULL, 1),
(15579, 'Devi p', '16', '8610738117', '9003121155', 'devidevi13159@gmail.com', '2002-07-19', 21, '2', '2', 'Pachaiappan M', 'Auto Driver', 25000.00, 1, 14900.00, 18000.00, 'No.349,bharama nagar vadagarai Redhills', 'No 349,Bharama nagar ,vadagarai Redhills', '2312110015', '1', '2', 'upload_files/candidate_tracker/58479585834_resume.pdf', NULL, '1', '2023-12-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Checked with Banu 2nd round interview too long distance  and not much comfort in calling activities', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-11 06:20:13', 85, '2023-12-11 07:09:25', 0, NULL, 1),
(15580, '', '0', '7092841768', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312110016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-11 06:20:29', 0, NULL, 0, NULL, 1),
(15581, 'Rohith S', '13', '8428140832', '', 'rohith2000dr@gmail.com', '2000-05-17', 23, '3', '2', 'Shanmugam G', 'Business - (Tea selling to construction)', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2312110017', '', '1', 'upload_files/candidate_tracker/39297288043_ROHITH_RESUME.pdf', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 06:48:21', 1, '2023-12-11 07:03:16', 0, NULL, 1),
(15582, 'Divya s', '4', '7904626177', '', 'divyasuresh0226@gmail.com', '2000-10-26', 23, '2', '2', 'Suresh babu', 'Car driver', 200000.00, 3, 16000.00, 16000.00, '17/2 deva Raja Street chindripet', '17/2 Deva Raja Street Chindripet', '2312110018', '21', '2', 'upload_files/candidate_tracker/37752088495_Divya.s.docx', NULL, '1', '2023-12-11', 0, '', '3', '59', '2023-12-14', 210000.00, '', '5', '1970-01-01', '2', 'Selectedforbanuteam', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-11 06:50:52', 60, '2023-12-14 09:48:05', 0, NULL, 1),
(15583, 'Palanivelraj J', '13', '8110997242', '', 'palanivelraj202@gmail.com', '2001-02-20', 22, '3', '2', 'Santhi', 'Farming', 200000.00, 1, 390000.00, 670000.00, 'Tiruvannamalai', 'Chennai', '2312110019', '', '2', 'upload_files/candidate_tracker/62222419719_Palanivelraj Resume.pdf', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 07:06:49', 1, '2023-12-11 07:12:07', 0, NULL, 1),
(15584, 'Harikrishnan M', '13', '9944856842', '', 'krishnanh259@gmail.com', '2001-05-18', 22, '6', '2', 'Manivannan V', 'Driver', 20000.00, 1, 500000.00, 500000.00, 'Kanchipuram', 'Kanchipuram', '2312110020', '', '2', 'upload_files/candidate_tracker/56954157821_Harikrishnan_M_Resume.pdf', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 07:08:25', 1, '2023-12-11 07:11:34', 0, NULL, 1),
(15585, 'Deepan J', '5', '8056239473', '', 'eepan_0088@yahoo.com', '1988-07-25', 35, '3', '2', 'jayarajan', 'business', 100000.00, 1, 61596.00, 70000.00, 'chennai', 'chennai', '2312110021', '', '2', 'upload_files/candidate_tracker/88319934651_Deepn updated CV 2022 PDF.pdf', NULL, '1', '2023-12-11', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 07:13:43', 1, '2023-12-11 07:19:35', 0, NULL, 1),
(15586, 'Dhanavanthini k', '4', '9943376010', '6369297618', 'dhanavanthinitmk@gmail.com', '1993-07-04', 30, '3', '2', 'Kaliyamoorthy', 'Farmer', 50000.00, 1, 2.40, 3.00, 'Thanjavur', 'Thanjavur', '2312110022', '', '2', 'upload_files/candidate_tracker/97218270590_Dhanavanthini Resume (5).pdf', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 07:31:44', 1, '2023-12-11 07:53:14', 0, NULL, 1),
(15587, 'Vinusha RC', '5', '9361661033', '9597186629', 'vinusharadhakrishnan2002@gmail.com', '2008-12-11', 0, '2', '2', 'S Radhakrishnan', 'Driver', 2.00, 1, 25.00, 25.00, 'Madiwala', 'Madiwala', '2312110023', '1', '2', 'upload_files/candidate_tracker/81350025450_ViNusha_RC-1-1.pdf', NULL, '1', '2023-12-11', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'suggested ctc upto 23k', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-11 07:32:27', 104, '2023-12-11 02:42:34', 0, NULL, 1),
(15588, 'Ritesh', '5', '8618429019', '9900623152', 'riteshraina12@gmail.com', '1999-07-12', 24, '2', '2', 'Gopinathan M', 'Building Painter', 35000.00, 0, 25000.00, 27000.00, 'JP Nagar Bangalore', 'JP Nagar Bangalore', '2312110024', '1', '2', 'upload_files/candidate_tracker/75217577153_Resume - double page.docx', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2023-12-11 07:32:37', 1, '2023-12-11 07:36:32', 0, NULL, 1),
(15589, 'R.Ramasamy', '6', '7708665431', '', 'gopiramamoorthi02@gamil.com', '2002-08-21', 21, '2', '2', 'Ramamoorthi', 'Hotel', 20000.00, 1, 0.00, 18000.00, 'Madurai', 'Madipakkam', '2312110025', '1', '1', 'upload_files/candidate_tracker/90800186220_Ramasamy-RESUME.pdf', NULL, '1', '2023-12-11', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking For High Package, He is Not Willing To Join', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-11 07:44:53', 108, '2023-12-13 02:57:58', 0, NULL, 1),
(15590, 'AJITH KUMAR.V', '13', '9360609060', '9159286993', 'ajithkumarifet@gmail.com', '2002-12-11', 21, '6', '2', 'VENGADESAN.B', 'FARME', 10000.00, 1, 0.00, 2.50, 'Villupuram', 'Villipuram', '2312110026', '', '1', 'upload_files/candidate_tracker/23992966174_Ajithkumar V- Resume.pdf', NULL, '1', '2023-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 08:25:28', 1, '2023-12-11 09:55:16', 0, NULL, 1),
(15591, 'Pritha k', '6', '7448707852', '9361633784', 'karunyak993@gmail.com', '1999-01-16', 24, '3', '2', 'Kannan', 'Autodriver', 15000.00, 2, 17500.00, 20000.00, 'Kilpauk', 'Kilpauk', '2312110027', '', '2', 'upload_files/candidate_tracker/75103488796_Copy of resume-Preetha(1).pdf', NULL, '1', '2023-12-11', 0, '', '3', '59', '2023-12-12', 216000.00, '', '5', '1970-01-01', '1', 'Selected for Gopinath Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-11 09:20:42', 60, '2023-12-12 09:59:04', 0, NULL, 1),
(15592, '', '0', '9380899507', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312110028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-11 01:09:19', 0, NULL, 0, NULL, 1),
(15593, 'Yanamala SainathaReddy', '9', '9160575292', '', 'reddysainath304@gmail.com', '1998-07-24', 25, '2', '2', 'MallikarjunaReddy', 'Framer', 70000.00, 1, 18000.00, 22000.00, 'Cheruvuvandlapalli nallamada puttaparthi aP', 'Electronic City', '2312110029', '1', '2', 'upload_files/candidate_tracker/75313012826_sainath reddy resume (1).docx', NULL, '1', '2023-12-12', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'due to communication skill', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-11 01:31:37', 104, '2023-12-12 05:18:01', 0, NULL, 1),
(15594, 'ALISHA BANU', '5', '7204392683', '8050251536', 'alishabanu179@gmail.com', '2008-12-11', 0, '2', '2', 'Neelufar', 'Bachelor of commerce', 140000.00, 4, 0.00, 18000.00, 'JP nagar 6 phase Bangalore 78', 'Ilyas nagar JP nagar post Bangalore 78', '2312110030', '1', '1', 'upload_files/candidate_tracker/77924291334_alisha_CV.pdf', NULL, '1', '2023-12-12', 0, '', '3', '59', '2023-12-14', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Madiwaala in Consultant Role', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-11 01:32:28', 60, '2023-12-13 06:32:31', 0, NULL, 1),
(15595, 'Uma Rm', '7', '8248222799', '', 'Shanthiuma07@gmail.com', '1997-03-02', 26, '3', '2', 'Shanthi Rm', 'Housewife', 30000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2312110031', '', '2', 'upload_files/candidate_tracker/71256763978_profile uma 2.pdf', NULL, '1', '2023-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 01:33:14', 1, '2023-12-11 01:37:38', 0, NULL, 1),
(15596, 'Aswini B', '5', '9159829069', '7868030539', 'aswinibalajimail@gmail.com', '1996-11-25', 27, '2', '1', 'Ponnu swamy', 'Design engineer', 45000.00, 2, 24500.00, 30000.00, 'Thiruvallur', 'Thiruvallur', '2312110032', '1', '2', 'upload_files/candidate_tracker/57870841092_Aswini_Resume.pdf', NULL, '1', '2023-12-12', 0, '', '3', '59', '2023-12-13', 350000.00, '', '5', '1970-01-01', '2', 'Selected for Mani Team in staff Role Communication Good Have Exp In Calling Can Be Trained In Our Roles', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-11 01:40:12', 60, '2023-12-13 09:51:23', 0, NULL, 1),
(15597, '', '0', '7075200455', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312110033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-11 01:52:21', 0, NULL, 0, NULL, 1),
(15598, 'Farish ahamed', '33', '9600573518', '', 'farifarish4430@gmail.com', '2001-07-15', 22, '3', '2', 'ahamed ansari', 'account', 20000.00, 30, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2312110034', '', '1', 'upload_files/candidate_tracker/55646355188_Farish.pdf', NULL, '2', '2023-12-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication no confidence inthe profile not suitable for our roles', '4', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-11 02:20:40', 1, '2023-12-12 09:50:36', 0, NULL, 1),
(15599, 'Vinoth Kumar', '16', '9941075713', '8667748504', 'kvinoth400@gmail.com', '1994-03-18', 29, '2', '2', 'Vellaiyan', 'Farmer', 5000.00, 2, 25000.00, 35000.00, 'Karapakkam', 'Karapakkam', '2312110035', '1', '2', 'upload_files/candidate_tracker/7225344977_Vinoth Resume-1-1.docx', NULL, '1', '2023-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance no Communication not open to relocate will not sustain', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-11 04:03:00', 104, '2023-12-23 05:14:44', 0, NULL, 1),
(15600, 'sridhar s', '33', '9677260404', '', 'ssridhar2112@gmail.com', '1999-12-21', 23, '2', '2', 'sathya', 'house wife', 18000.00, 1, 13000.00, 16000.00, 'choolaimedu', 'Choolaimedu', '2312110036', '1', '2', 'upload_files/candidate_tracker/96275785274_RESUME (1).pdf', NULL, '1', '2023-12-12', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-11 04:32:05', 108, '2023-12-13 04:41:57', 0, NULL, 1),
(15601, 'Sarath Kumar K', '13', '8072439857', '', 'sarathkumar20072001@gmail.com', '2001-07-20', 22, '6', '2', 'C.Kumar', 'CCWS', 10000.00, 1, 0.00, 200000.00, 'Kumbakonam', 'Medavakkam,Chennai', '2312120001', '', '1', 'upload_files/candidate_tracker/95977759785_Sarath_Resume.pdf', NULL, '1', '2023-12-12', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 04:38:00', 1, '2023-12-12 04:41:44', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15602, 'G.john', '26', '6383681644', '', 'John6383681644@gmail.com', '2000-05-17', 23, '1', '2', 'M.ganeshan', 'Tea shop', 30000.00, 0, 0.00, 20000.00, 'No 11/5 p.v kovil street Rayapuram chennai 600021', 'No 11/5 P.V Kovil Street Rayapuram Chennai', '2312120002', '', '2', 'upload_files/candidate_tracker/33044175358_Resume_RESUME_Format1-1.pdf', NULL, '1', '2023-12-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Sustainability in previous exp no Communication not suitable for our roles', '7', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 04:38:29', 1, '2023-12-12 04:52:50', 0, NULL, 1),
(15603, 'Hema Priya', '4', '8098761192', '9499916747', 'priyapraba712@gamil.com', '1999-09-07', 24, '2', '1', 'Prabakaran', 'QC Engineer', 500000.00, 2, 0.00, 15000.00, 'No.110,road st,venkatapuram,sevilimedu,kanchipuram', 'Kanchipuram', '2312120003', '21', '1', 'upload_files/candidate_tracker/48219569854_HEMAPRIYA-1.pdf', NULL, '3', '2023-12-12', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 05:37:00', 1, '2023-12-12 05:50:59', 0, NULL, 1),
(15604, 'Akshaya R', '4', '7010988525', '', 'akshayarangarajan0508@gmail.com', '2002-08-05', 21, '2', '2', 'Rangarajan', 'Loading man', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2312120004', '21', '1', 'upload_files/candidate_tracker/24895995698_Akshaya Resume.docx', NULL, '1', '2023-12-12', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 05:38:05', 1, '2023-12-12 05:42:57', 0, NULL, 1),
(15605, 's rohith', '5', '8217876351', '6363005385', 'rohithgowda205@gmail.com', '2000-02-25', 23, '2', '2', 'shivananda', 'driver', 30000.00, 1, 28000.00, 38000.00, 'bangalore hal', 'Bangalore Hal', '2312120005', '1', '2', 'upload_files/candidate_tracker/66777266875_S ROHITH 111.docx', NULL, '1', '2023-12-12', 0, '', '3', '59', '2023-12-18', 410400.00, '', '5', '1970-01-01', '1', 'selected for Madiwaal Staff ROle', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-12 05:46:00', 60, '2023-12-16 06:20:17', 0, NULL, 1),
(15606, 'Shaik hannan', '5', '9108886057', '8618700177', 'shaikhannan112@gmail.com', '2000-09-10', 23, '2', '2', 'Mohammad sirajuddin', 'Photographer', 15000.00, 3, 0.00, 30000.00, '1st main road 2nd cross vijaynagar ramanagaram', '3rd cross hosapalya main road', '2312120006', '1', '2', 'upload_files/candidate_tracker/70127876915_my resume.pdf', NULL, '1', '2023-12-12', 0, '', '3', '59', '2023-12-19', 308000.00, '', '5', '1970-01-01', '1', 'Selected for Madiwaal Staff Role', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-12 05:55:40', 60, '2023-12-18 06:57:33', 0, NULL, 1),
(15607, 'Gokulnath Gnanavelan', '13', '6369028702', '9442456426', 'gokulshiv079@gmail.com', '2002-03-01', 21, '3', '2', 'M.Gnanavelan', 'Welder', 300000.00, 1, 0.00, 300000.00, 'Thiruvannamalai', 'Chennai', '2312120007', '', '1', 'upload_files/candidate_tracker/18282620517_GOKULNATH_GNANAVELAN.pdf', NULL, '1', '2023-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 06:20:28', 1, '2023-12-12 06:22:13', 0, NULL, 1),
(15608, 'dhakshanamoorthy', '16', '6374364851', '9176465960', 'dhakshanahema@gmail.com', '2001-05-16', 22, '3', '2', 'suresh', 'phonebanking excuetive', 15000.00, 1, 0.00, 25000.00, 'jamaliya', 'jamaliya', '2312120008', '', '1', 'upload_files/candidate_tracker/69860439396_dhakshanamoorthy resume.pdf', NULL, '1', '2023-12-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average not much suits for our roles 5050 asked the candidate to come for the interview post lunch but he left', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 06:26:01', 1, '2023-12-12 06:30:38', 0, NULL, 1),
(15609, 'Abirami.H', '13', '9600554186', '', 'Abiramiharidass69@gmail.com', '2003-03-06', 20, '6', '2', 'Haridoss.S', 'Farmer', 15000.00, 2, 0.00, 400000.00, 'Gummidipondi Thiruvallur dist', 'Navallur Chennai omr', '2312120009', '', '1', 'upload_files/candidate_tracker/14354370041_ABIRAMI.H RESUME(4).pdf', NULL, '1', '2023-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 06:36:51', 1, '2023-12-12 06:57:05', 0, NULL, 1),
(15610, 'Arunkumar B', '13', '6385689851', '', 'arunk26247@gmail.com', '2002-07-27', 21, '6', '2', 'Balakrishnan A', 'Former', 20000.00, 4, 0.00, 15000.00, 'Tharamani Chennai', 'Tharamani Chennai', '2312120010', '', '2', 'upload_files/candidate_tracker/95772094759_ARUNKUMAR B.docx', NULL, '1', '2023-12-12', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 06:46:45', 1, '2023-12-12 07:13:04', 0, NULL, 1),
(15611, 'Mohamed Adilur Rahman', '7', '7550149253', '', 'nawtyboyadil@gmail.com', '2000-01-11', 23, '2', '2', 'Mohamed saleemur Rahman', 'Buisness', 12000.00, 2, 17.00, 21.00, 'Pursaiwalkam', 'Chennai', '2312120011', '1', '2', 'upload_files/candidate_tracker/77400360211_Adobe Scan 11 Dec 2023.pdf', NULL, '3', '2023-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude Candidate have Exp in CAMS have an offer for 23K will not sustain in our roles', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-12 06:50:32', 104, '2023-12-14 01:31:35', 0, NULL, 1),
(15612, 'Manikandan.S', '31', '9003950241', '9786549645', 'mk4576835@gmail.com', '2000-07-18', 23, '6', '2', 'Ramalashmi', 'Farmer', 10000.00, 1, 0.00, 25000.00, 'Tenkasi', 'Chennai,guindy', '2312120012', '', '1', 'upload_files/candidate_tracker/61920003585_resume@Manikandan (2).pdf', NULL, '1', '2023-12-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 07:19:29', 1, '2023-12-12 07:44:55', 0, NULL, 1),
(15613, 'THIRUMURUGAN B', '31', '9087498562', '', 'thirusp68@gmail.com', '2000-04-03', 23, '6', '2', 'BALAMURUGAN M', 'Labour', 20000.00, 0, 0.00, 15000.00, 'Iyyappanthangal, Chennai', 'Iyyappanthangal, Chennai', '2312120013', '', '1', 'upload_files/candidate_tracker/73642178082_THIRUMURUGAN B (2).pdf', NULL, '1', '2023-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 07:22:10', 1, '2023-12-12 07:28:25', 0, NULL, 1),
(15614, 'Prabu k', '31', '8681012815', '', 'prabu4634@gmail.com', '1999-11-13', 24, '6', '2', 'Karuppaiah m', 'Tailor', 16000.00, 1, 0.00, 15000.00, 'Sivaganga', 'Chennai', '2312120014', '', '1', 'upload_files/candidate_tracker/25316053797_K Prabu.pdf', NULL, '1', '2023-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 07:22:49', 1, '2023-12-12 07:29:19', 0, NULL, 1),
(15615, 'Kaviyarasan R', '13', '8610148420', '', 'kavik9981@gmail.com', '1999-07-02', 24, '6', '2', 'Raja c', 'Formar', 8000.00, 1, 0.00, 20000.00, 'Tenkasi', 'Tenkasi', '2312120015', '', '1', 'upload_files/candidate_tracker/26552532253_CV new 4.pdf', NULL, '1', '2023-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 07:48:09', 1, '2023-12-12 07:52:50', 0, NULL, 1),
(15616, 'Ponmathi Ponraj', '13', '6382319737', '9361620268', 'ponmathittl@gmail.com', '1999-07-03', 24, '6', '2', 'Ponraj', 'Businessman', 40000.00, 1, 492000.00, 600000.00, 'Sivakasi', 'Sivakasi', '2312120016', '', '2', 'upload_files/candidate_tracker/79714224540_Ponmathi Ponraj.pdf', NULL, '1', '2023-12-12', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 08:21:47', 1, '2023-12-12 09:05:11', 0, NULL, 1),
(15617, 'Siva m', '6', '9941425668', '9080505123', 'sivasiva56808@gmail.com', '2000-09-14', 23, '2', '2', 'Munusamy', 'Cooli', 15000.00, 1, 19800.00, 25000.00, 'Vyasarpadi,Chennai', 'Vyasarpadi,Chennai', '2312120017', '1', '2', 'upload_files/candidate_tracker/97551428483_RESUME SIVA.docx', NULL, '1', '2023-12-12', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-12 09:40:26', 104, '2023-12-12 05:09:26', 0, NULL, 1),
(15618, 'Vaishnavi.R', '4', '7358032208', '', 'vaishushu795@gmail.com', '2002-08-06', 21, '2', '2', 'Ramesh Kumar', 'Electrisian', 20000.00, 1, 18000.00, 20000.00, 'Virrukambakam', 'Virrukambakam', '2312120018', '1', '2', 'upload_files/candidate_tracker/6217460941_R.VAISHNAVI (RESUME).pdf', NULL, '1', '2023-12-13', 1, '', '3', '59', '2023-12-21', 228000.00, '', '5', '1970-01-01', '2', 'Selecetd fir B2B', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-12 12:09:37', 60, '2023-12-21 12:29:12', 0, NULL, 1),
(15619, '', '0', '6369297618', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312120019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-12 12:46:23', 0, NULL, 0, NULL, 1),
(15620, 'Mohammed Haroondeen', '33', '9884182217', '', 'Mohammedharoon4696@gmail.com', '2002-02-26', 21, '2', '2', 'Rafiuddin', 'Tailor', 10000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2312120020', '1', '1', 'upload_files/candidate_tracker/11413971227_Haroon Cv.docx', NULL, '1', '2023-12-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-12 01:35:08', 108, '2023-12-13 04:39:36', 0, NULL, 1),
(15621, 'm.suresh kumar', '4', '8807146043', '7708856043', 'sureshjackjack@gmail.com', '2000-03-25', 23, '3', '2', 'sumathi', 'talecaller', 15000.00, 0, 0.00, 16000.00, 'thanjavur', 'thanjavur', '2312120021', '', '2', 'upload_files/candidate_tracker/37188185281_Suresh(6).pdf', NULL, '1', '2023-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-12 01:39:06', 1, '2023-12-13 08:12:41', 0, NULL, 1),
(15622, '', '0', '7349695525', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312120022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-12 01:44:14', 0, NULL, 0, NULL, 1),
(15623, 'Neelima V', '8', '6385119347', '', 'Neelimadeena12@gmail.com', '2000-11-12', 23, '2', '2', 'Vijaykumar', 'Private employee', 20000.00, 3, 16000.00, 18000.00, 'Chennai', 'Chennai', '2312130001', '1', '2', 'upload_files/candidate_tracker/52364157295_Neelima.pdf', NULL, '1', '2023-12-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-13 04:25:59', 108, '2023-12-13 04:40:06', 0, NULL, 1),
(15624, 'Ashiya.A', '4', '8939745321', '9841462341', 'ashiya0434@gmail.com', '1999-10-05', 24, '2', '2', 'Guardians (sister)', 'House wife', 6000.00, 1, 0.00, 20000.00, 'No.230 9th block p.k.colony Chennai 12', '9/21 .Dr.ansari 5 th Street Puliyanthope ch 12', '2312130002', '25', '2', 'upload_files/candidate_tracker/68733968541_CV_202305180256422.pdf', NULL, '1', '2023-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-13 04:47:32', 1, '2023-12-13 05:11:19', 0, NULL, 1),
(15625, 'Vidhya.S', '16', '7397784836', '', 'VIDHYASIDDHARTHAN12@gmail.com', '2000-07-28', 23, '2', '2', 'S.Siddharthan', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Thiruvarur', 'Thousand lights', '2312130003', '1', '1', 'upload_files/candidate_tracker/55025718840_VIDHYA CV .pdf', NULL, '1', '2023-12-14', 0, '', '3', '59', '2023-12-15', 200000.00, '', '5', '1970-01-01', '1', 'Selected for Renewals in Consultant Role', '3', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-13 05:17:43', 104, '2023-12-15 05:51:59', 0, NULL, 1),
(15626, 'Harish Moorthy', '16', '8111082625', '', 'harishmpa12434@gmail.com', '1999-10-03', 24, '6', '2', 'Moorthy Perumal', 'Daily Wages', 10000.00, 2, 0.00, 200000.00, 'Tiruvallur', 'Tiruvallur', '2312130004', '', '1', 'upload_files/candidate_tracker/97604574476_Copy of HARISH M_20231020_132309_0000.pdf', NULL, '1', '2023-12-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok but not open to relocate', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-13 05:37:16', 1, '2023-12-13 05:43:19', 0, NULL, 1),
(15627, 'Kaliyugavarman S', '13', '9789598049', '', 'varman2001s@gmail.com', '2001-05-18', 22, '6', '2', 'Selvendiran', 'Farmer', 5000.00, 2, 0.00, 1.50, 'THANJAVUR DISTRICT', 'THANJAVUR DISTRICT', '2312130005', '', '1', 'upload_files/candidate_tracker/75528317121_KaliyugavarmanS Resume .pdf', NULL, '1', '2023-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-13 05:44:03', 1, '2023-12-13 05:47:09', 0, NULL, 1),
(15628, 'Sivakumar m', '13', '8778828680', '', 'sivaks6102001@gmail.com', '2001-07-06', 22, '6', '2', 'Meenatchisundaram', 'vessel merchant', 22000.00, 2, 0.00, 1.50, 'Chennai', 'Chennai', '2312130006', '', '1', 'upload_files/candidate_tracker/18425534788_SivaKumar_Fresher.pdf', NULL, '1', '2023-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-13 05:48:12', 1, '2023-12-13 05:52:31', 0, NULL, 1),
(15629, 'Joshnigaa', '5', '9943970013', '9361773829', 'joshnigaavijayakumar@gmail.com', '2002-06-26', 21, '2', '2', 'Leela devi', 'Cosmetologist', 50000.00, 0, 0.00, 30000.00, 'Koduingaiyur, Chennai', 'Koduingaiyur, Chennai', '2312130007', '1', '2', 'upload_files/candidate_tracker/2383628242_joshnigaa CV.pdf', NULL, '1', '2023-12-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-13 05:57:25', 108, '2023-12-13 04:40:37', 0, NULL, 1),
(15630, 'Akash', '6', '9092896150', '9790090238', 'Newboyofficeal@gmail.com', '2001-07-26', 22, '2', '2', 'Ramesh', 'Food cooperation of India', 15000.00, 1, 0.00, 20000.00, 'Arakkonam', 'Arakkonam', '2312130008', '1', '1', 'upload_files/candidate_tracker/23110142048_Aaaaaaaaabbbbbbb.pdf', NULL, '2', '2023-12-14', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected...  I will check and tell you during the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-13 06:01:19', 104, '2023-12-14 06:23:23', 0, NULL, 1),
(15631, '', '0', '9384420508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312130009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-13 06:05:54', 0, NULL, 0, NULL, 1),
(15632, '', '0', '9731291481', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-13 06:12:01', 0, NULL, 0, NULL, 1),
(15633, 'Anushiya A', '4', '7339446840', '9976920846', 'varshikutt17022002@gmail.com', '2002-02-17', 21, '3', '2', 'Sumathi', 'Business women', 10000.00, 2, 0.00, 15000.00, 'Sivagangai', 'Chennai', '2312130011', '', '1', 'upload_files/candidate_tracker/30213609488_anu resume nov.pdf', NULL, '1', '2023-12-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-13 06:12:47', 1, '2023-12-13 06:32:59', 0, NULL, 1),
(15634, 'Joel', '5', '9841012163', '9345860848', 'Joeldavidofficial@gmail.com', '1996-01-21', 27, '2', '2', 'Delphine', 'Nurse', 50000.00, 3, 50000.00, 50000.00, 'Chennai', 'Chennai', '2312130012', '1', '2', 'upload_files/candidate_tracker/33241642350_Joel resume.pdf', NULL, '1', '2023-12-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Very High CTC Exp fresher for our Sales have Exp in Inside sales IT products', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-13 06:18:10', 108, '2023-12-13 04:40:53', 0, NULL, 1),
(15635, 'Sivamagudatharasi', '4', '7695828465', '6384940116', 'sivashivya380@gmail.com', '2003-05-19', 20, '2', '2', 'Sekar', 'Wood cutter', 15000.00, 4, 0.00, 15000.00, 'Karaikudi', 'T-Nagar', '2312130013', '21', '1', 'upload_files/candidate_tracker/85133162047_sivamagudatharasi.pdf', NULL, '1', '2023-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-13 06:18:43', 1, '2023-12-13 06:27:35', 0, NULL, 1),
(15636, 'Anitha', '26', '9042505125', '9345417859', 'anithathiyagu2228@gmail.com', '1996-04-28', 27, '2', '1', 'Purushothaman', 'AR Senior Analyst', 45.00, 2, 21500.00, 26500.00, 'Royapuram', 'Royapuram', '2312130014', '1', '2', 'upload_files/candidate_tracker/60082474323_ANITHA Updated RESUME.docx', NULL, '1', '2023-12-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-12-13 06:25:49', 1, '2023-12-13 06:33:37', 0, NULL, 1),
(15637, 'D. Raghul', '6', '8248064401', '', 'raghul172005@gamil.com', '2005-07-01', 18, '3', '2', 'Sarala. D', 'House keeping', 6000.00, 1, 0.00, 1.50, 'Chennai', 'Chennai', '2312130015', '', '1', 'upload_files/candidate_tracker/35967556976_resume.pdf', NULL, '1', '2023-12-13', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-13 06:26:43', 104, '2023-12-13 06:48:42', 0, NULL, 1),
(15638, 'Kalaiselvan M', '13', '6380116447', '', 'selbankalai@gmail.com', '1999-12-12', 24, '6', '2', 'Murukesan G santhi', 'Farmer', 25000.00, 0, 0.00, 20000.00, 'Tiruvannamalai 606601', 'Thaparam', '2312130016', '', '1', 'upload_files/candidate_tracker/9397743565_M kalaiselvan(new)Resume.pdf', NULL, '2', '2023-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-13 07:25:36', 1, '2023-12-13 07:33:32', 0, NULL, 1),
(15639, '', '0', '7305452599', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312130017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-13 09:36:31', 0, NULL, 0, NULL, 1),
(15640, '', '0', '9663158048', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312130018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-13 12:54:42', 0, NULL, 0, NULL, 1),
(15641, 'Pavithra.C', '11', '9791560390', '7667661852', 'pavithrakum.27@gmail.com', '2000-09-27', 23, '2', '2', 'Coumaressane', 'Driver', 600000.00, 1, 0.00, 15000.00, 'No. 58, muthialpet pondicherry', 'No. 58, muthialpet pondicherry', '2312130019', '1', '1', 'upload_files/candidate_tracker/52540522789_Professional Cv Resume_2.pdf', NULL, '1', '2023-12-14', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for recruitment..', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-13 12:58:36', 104, '2023-12-14 11:47:55', 0, NULL, 1),
(15642, 'Gayathri Chandrasekar', '6', '9344560764', '', 'kamalisekar88@gmail.com', '2001-08-10', 22, '2', '2', 'Chandrasekar', 'Wages', 18000.00, 1, 17000.00, 20000.00, 'Kumbakonam', 'Thambaram', '2312130020', '1', '2', 'upload_files/candidate_tracker/76376526867_Gayathri C resume.pdf', NULL, '1', '2023-12-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-13 01:09:01', 104, '2023-12-14 11:47:07', 0, NULL, 1),
(15643, '', '0', '9840592959', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312130021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-13 01:55:26', 0, NULL, 0, NULL, 1),
(15644, 'Joys blessy R', '5', '9840592950', '8680830917', 'joyce19112002@gmail.com', '2002-11-19', 21, '2', '2', 'Velankanni R', 'House wife', 25000.00, 1, 0.00, 16000.00, 'Perambur', 'Perambur', '2312130022', '1', '1', 'upload_files/candidate_tracker/49609140909_JOYS BLESSY.R.pdf', NULL, '1', '2023-12-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-13 01:56:10', 108, '2023-12-15 10:24:27', 0, NULL, 1),
(15645, 'Jayaprakash', '33', '8428861805', '', 'jayaprakash6476@gmail.com', '2003-02-28', 20, '2', '2', 'Arul. M', 'Building contractor', 30000.00, 4, 0.00, 15000.00, 'chennai.89', 'chennai.89', '2312130023', '1', '1', 'upload_files/candidate_tracker/44236369134_Graphic Designer Resume_20231005_233443_0000.pdf', NULL, '1', '2023-12-14', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for accounts', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-13 02:00:12', 108, '2023-12-15 10:25:04', 0, NULL, 1),
(15646, 'Ismayil M', '33', '9655808160', '9786305898', 'ismayil8940@gmail.com', '2002-12-12', 21, '2', '2', 'MAKBUL', 'Tailor', 10000.00, 1, 0.00, 20000.00, 'Thiruthani', 'Thiruthani', '2312130024', '1', '1', 'upload_files/candidate_tracker/17902728534_ISMAYIL RESUME(1).pdf', NULL, '1', '2023-12-14', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sal exp high has exp in other role... ', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-13 02:03:34', 108, '2023-12-15 10:25:29', 0, NULL, 1),
(15647, 'Karaneswar', '4', '8861247873', '9448358789', 'krneswar@gmail.com', '1998-01-01', 25, '3', '2', 'late sundara raman', 'dtm', 25000.00, 1, 22000.00, 22000.00, 'mangalore', 'vadapalni', '2312130025', '', '2', 'upload_files/candidate_tracker/53733332067_Karan_Resume (1).pdf', NULL, '1', '2023-12-14', 45, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-13 06:14:52', 1, '2023-12-14 06:50:34', 0, NULL, 1),
(15648, 'VINAYAGAMOORTHY S V', '33', '9080238929', '9344273778', 'svvinayagamoorthy@gmail.com', '2003-06-04', 20, '2', '2', 'Venkatesh s', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Nagari', 'Nagari', '2312140001', '1', '1', 'upload_files/candidate_tracker/24176296271_Vinayak RESUME.pdf', NULL, '1', '2023-12-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-14 04:45:39', 108, '2023-12-15 10:26:46', 0, NULL, 1),
(15649, 'Md Fawwaz T', '13', '9791846427', '', 'tmohammedfawwaz@gmail.com', '2001-03-29', 22, '6', '2', 'Mohammed Shakeel', 'Job', 15000.00, 2, 0.00, 400000.00, 'Vaniyambadi', 'Chennai', '2312140002', '', '1', 'upload_files/candidate_tracker/22122617385_Deedy_CV.pdf', NULL, '1', '2023-12-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-14 04:55:47', 1, '2023-12-14 04:58:13', 0, NULL, 1),
(15650, 'Rajkumar E', '16', '8124889609', '8610734480', 'Rajkumar.Elumalai02@gmail.com', '1996-02-02', 27, '6', '2', 'Amutha E', 'House wife', 280000.00, 1, 22700.00, 30000.00, 'Cuddalore', 'Mylapore, chennai', '2312140003', '', '2', 'upload_files/candidate_tracker/26516161910_RAJKUMAR-E.pdf', NULL, '1', '2023-12-14', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-14 05:08:48', 1, '2023-12-14 05:12:31', 0, NULL, 1),
(15651, 'M. Deepika', '31', '8248309938', '8122246381', 'deepikamani790@gmail.com', '1996-10-23', 27, '6', '1', 'M. Prabhakaran', 'Software Tester', 25000.00, 0, 300000.00, 400000.00, 'No: 12/28, Perumal street, Anna salai Ch 600002', 'No: 12/28, Perumal Street, Anna Salai Ch 600002', '2312140004', '', '2', 'upload_files/candidate_tracker/57270512051_Deepika_front_end_developer.docx', NULL, '1', '2023-12-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-14 05:34:53', 1, '2023-12-14 05:40:04', 0, NULL, 1),
(15652, 'Sunil', '13', '9361700525', '8056954739', 'suniliyyappan23@gmail.com', '2001-08-26', 22, '6', '2', 'Iyyappan viji', 'Farmer', 300000.00, 1, 0.00, 240000.00, '4/352 b2 Bharat Nagar ,mela putheri', 'Chennai', '2312140005', '', '1', 'upload_files/candidate_tracker/2736166586_Sunil_java_full_stack_resume.pdf', NULL, '1', '2023-12-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-14 05:55:23', 1, '2023-12-14 06:04:31', 0, NULL, 1),
(15653, 'Sneha s', '4', '7305884140', '', 'Snehasivakumar31@gmail.com', '2002-11-22', 21, '2', '2', 'Sivakumar', 'Farmer', 15000.00, 2, 0.00, 12000.00, 'Thirukattupqlli', 'Thirukatupalli', '2312140006', '1', '1', 'upload_files/candidate_tracker/59875462400_sneha.pdf', NULL, '1', '2023-12-14', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile...already working in chennai mobile manufacturing company, no experience in sales and telecalling, expected 12k ....45min travel to office, father farmer and have laptop, immediate joining, expected 12k talk active and easily adaptive candidate kindly check and confirm once', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-14 05:56:07', 108, '2023-12-15 10:36:40', 0, NULL, 1),
(15654, 'Sneha s', '4', '9566825892', '', 'Snehasiva0513@gmail.com', '2003-02-05', 20, '3', '2', 'Siva', 'Tea shop', 15000.00, 1, 0.00, 10000.00, 'Karathai', 'Karanthai', '2312140007', '', '1', 'upload_files/candidate_tracker/94041298421_resume-2.pdf', NULL, '1', '2023-12-14', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-14 05:56:21', 1, '2023-12-14 06:11:17', 0, NULL, 1),
(15655, 'R.swathi', '23', '7010114583', '', 'Swathiramesh171@gmail.com', '2001-10-17', 22, '3', '2', 'S.Ramesh', 'Building conductor', 20.00, 1, 0.00, 18.00, 'Vadalur', 'Tnagar', '2312140008', '', '1', 'upload_files/candidate_tracker/47904261896_Swathi CV.pdf', NULL, '1', '2023-12-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-14 05:59:56', 1, '2023-12-14 06:06:14', 0, NULL, 1),
(15656, 'Sherin Gilber Tony N', '13', '8825884024', '8940460850', 'tony02ns@gmail.com', '1999-10-02', 24, '6', '2', 'K S Nathan', 'Farmer', 60000.00, 3, 0.00, 15000.00, 'Ulundurpet', 'Velachery', '2312140009', '', '1', 'upload_files/candidate_tracker/55242082027_RESUME _CV_2023-09-12-051036.pdf', NULL, '1', '2023-12-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-14 06:03:00', 1, '2023-12-14 06:04:54', 0, NULL, 1),
(15657, 'Sarathkumar', '2', '6383633091', '', 'kumar17cs035@gmail.com', '2000-04-02', 23, '6', '2', 'Ramesh', 'Software engineer', 30000.00, 0, 260000.00, 450000.00, 'Chennai', 'Chennai', '2312140010', '', '2', 'upload_files/candidate_tracker/75917863205_sarathkumar resume.pdf', NULL, '1', '2023-12-14', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-14 06:07:32', 1, '2023-12-14 06:17:50', 0, NULL, 1),
(15658, 'R.Rajkumar', '31', '8667567462', '', 'imrajkumar1030@gmail.com', '1999-10-14', 24, '3', '2', 'Ramachandran', 'Business', 25000.00, 1, 0.00, 2.80, 'Thanjavur', 'Thanjavur', '2312140011', '', '1', 'upload_files/candidate_tracker/77650001125_Rajkumar_Resume-1.pdf', NULL, '1', '2023-12-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-14 06:50:36', 1, '2023-12-14 07:03:09', 0, NULL, 1),
(15659, 'Manivannan v', '4', '7418799850', '', 'Manikodharimani@gmail.com', '1999-03-07', 24, '2', '2', 'Varatharaj', 'Farmer', 20000.00, 1, 14500.00, 14000.00, 'Veerasingampettai', 'Veerasingampettal', '2312140012', '1', '2', 'upload_files/candidate_tracker/29223347972_manivannan.pdf', NULL, '1', '2023-12-14', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-14 06:54:36', 104, '2023-12-14 01:27:52', 0, NULL, 1),
(15660, 'Ra. Nandhini', '6', '7200479959', '', 'Nandhiniramesh810@gmail.com', '2002-08-10', 21, '1', '2', 'K. R. Ramesh', 'Driver', 50000.00, 1, 0.00, 15000.00, 'Anakaputhur', 'Anakaputhur', '2312140013', '', '1', 'upload_files/candidate_tracker/83753640015_ R.A.Nandhini.pdf', NULL, '1', '2023-12-14', 0, '77818', '3', '59', '2023-12-18', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Syed team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-14 07:17:02', 60, '2023-12-18 02:39:35', 0, NULL, 1),
(15661, 'Vanashree.K', '6', '7708225530', '', 'vanashree2003uma@gmail.com', '2003-06-11', 20, '3', '2', 'Kanagaraj.M', 'Labour', 17000.00, 2, 0.00, 15000.00, '2/78,Anna nagar,manimangalam, ch-601301', '2/78,Anna nagar manimangalam, ch -601301', '2312140014', '', '1', 'upload_files/candidate_tracker/51823798870_Vanashree resume (1).pdf', NULL, '1', '2023-12-14', 0, '', '3', '59', '2023-12-18', 168000.00, '', '5', '1970-01-01', '2', 'Selected for charles team in Consult', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-14 07:17:51', 60, '2023-12-16 06:47:27', 0, NULL, 1),
(15662, 'SAMSON EDWARD R', '6', '7395936616', '', 'rsamsonedward0315@gmail.com', '2002-08-03', 21, '3', '2', 'SARALA', 'Catering', 10000.00, 1, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2312140015', '', '1', 'upload_files/candidate_tracker/3977396093_SAMSON EDWARD RESUME-1.docx', NULL, '1', '2023-12-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-14 07:34:21', 85, '2023-12-16 05:33:51', 0, NULL, 1),
(15663, 'marikani c', '5', '6382537936', '', 'mariganesh892002@gmail.com', '2002-09-08', 21, '3', '2', 'chandran', 'landry shop', 20000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2312140016', '', '1', 'upload_files/candidate_tracker/22427677233_mari resume.pdf', NULL, '1', '2023-12-14', 0, '', '3', '59', '2023-12-19', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', 'Selected in consultant Role', '', '', '', NULL, NULL, NULL, 1, '2023-12-14 07:34:27', 60, '2023-12-19 10:52:39', 0, NULL, 1),
(15664, 'Balaji TG', '2', '8667028080', '7373968595', 'balanithish1998@gmail.com', '1998-09-08', 25, '3', '2', 'Jayalakshmi', 'Homemaker', 16000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2312140017', '', '1', 'upload_files/candidate_tracker/8542440539_Balaji EXP resume(web).pdf', NULL, '1', '2023-12-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-14 08:55:14', 1, '2023-12-14 09:00:21', 0, NULL, 1),
(15665, 'Mohammed Ashfaque', '5', '9087386741', '8925577286', 'Mohammedqshfaq342rock@gmail.com', '1999-07-20', 24, '3', '2', 'Mohammed saleem', 'Building supervisor', 10000.00, 2, 0.00, 15000.00, 'No, 10 chennaiyan street vaniyambadi vlr dist', 'Saidapet chennai', '2312140018', '', '2', 'upload_files/candidate_tracker/9210422643_20231214_173501.pdf', NULL, '1', '2023-12-14', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for roles ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-14 12:07:46', 104, '2023-12-15 05:51:36', 0, NULL, 1),
(15666, 'MUKESH', '13', '7397337882', '', 'mukeshmon123@gmail.com', '1999-04-21', 24, '6', '2', 'MUTHU', 'T.V MECHANICAL', 30000.00, 1, 0.00, 200000.00, 'CHENNAI', 'CHENNAI', '2312140019', '', '1', 'upload_files/candidate_tracker/60336947627_MUKESH_7397337882.pdf', NULL, '1', '2023-12-15', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '1', '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-14 12:38:53', 1, '2023-12-15 05:30:54', 0, NULL, 1),
(15667, 'Agni E', '33', '9710768800', '', 'Agnielanseliyan@yahoo.in', '1998-10-28', 25, '2', '2', 'Elan Seliyan S', 'Chief Manager of Chennai Circle of PNB', 300000.00, 1, 0.00, 20000.00, 'Amudhasurabhi Nagar, Chidambaram', 'Mylapore, Chennai', '2312140020', '1', '1', 'upload_files/candidate_tracker/8687424460_CV_202312131352218.pdf', NULL, '1', '2023-12-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-14 12:50:45', 104, '2023-12-15 05:49:49', 0, NULL, 1),
(15668, 'G samuvel kingsly', '4', '9360490981', '9659230861', 'kingslysamg@gmail.com', '2003-11-30', 20, '2', '2', 'Gnanasekaran', 'Driver', 15000.00, 1, 14000.00, 16000.00, '677, thomiyar st, Michealpatti po,budalur tk,', 'Michealpatti', '2312140021', '1', '2', 'upload_files/candidate_tracker/57717443267_pdf_20231107_183445_0000.pdf', NULL, '1', '2023-12-22', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-14 01:34:11', 108, '2023-12-22 05:13:52', 0, NULL, 1),
(15669, 'Saran', '26', '9566258765', '8939451221', 'saransamuel1999@gmail.com', '1999-12-15', 23, '2', '2', 'SARAVANAN', 'Wilder', 120000.00, 1, 198500.00, 300000.00, 'Royapuram, Chennai', 'CHENNAI', '2312140022', '1', '2', 'upload_files/candidate_tracker/23855809335_SARAN resume .pdf', NULL, '1', '2023-12-15', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-14 01:48:02', 104, '2023-12-15 05:49:37', 0, NULL, 1),
(15670, '', '0', '6369840655', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312140023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-14 03:42:08', 0, NULL, 0, NULL, 1),
(15671, 'Karthik s', '31', '7397109901', '', '2001karthicksrini@gmail.com', '2008-12-15', 0, '3', '2', 'Srinivasan D', 'Late', 240000.00, 1, 20000.00, 400000.00, 'Chennai', 'Chennai', '2312150001', '', '2', 'upload_files/candidate_tracker/20628293211_RESUME (1).pdf', NULL, '1', '2023-12-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 04:26:55', 1, '2023-12-15 04:30:06', 0, NULL, 1),
(15672, 'Surendran', '13', '9710053845', '7338758001', 'Surendranvinoth12@gmail.com', '2000-12-07', 23, '6', '2', 'Raju', 'Electrician', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'Ambattur', '2312150002', '', '1', 'upload_files/candidate_tracker/18202521664_surender g resume.docx.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 05:04:19', 1, '2023-12-15 05:48:03', 0, NULL, 1),
(15673, 'Vinoth kumar', '33', '8688518521', '', 'Vinothkumar73893@gmail.com', '2003-04-16', 20, '2', '2', 'Annamalai', 'Weaver', 18000.00, 1, 10000.00, 20000.00, 'Chennai', 'Chennai', '2312150003', '1', '2', 'upload_files/candidate_tracker/88947617389_k.a.vinoth kumar-1.pdf', NULL, '1', '2023-12-15', 30, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1019', '0', NULL, NULL, NULL, 1, '2023-12-15 05:08:01', 1, '2023-12-15 05:33:23', 0, NULL, 1),
(15674, 'diwakar v', '13', '9710626021', '8072348616', 'divakar305@gmail.com', '2002-03-14', 21, '3', '2', 'venugopal p', 'driver', 30000.00, 0, 0.00, 200000.00, 'chennai', 'chennai', '2312150004', '', '1', 'upload_files/candidate_tracker/93493268276_DIWAKAR RESUME.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 05:10:03', 1, '2023-12-15 05:17:48', 0, NULL, 1),
(15675, 'Dinesh M', '33', '6369305672', '7871350594', 'dinehmaran16@gmail.com', '2000-06-07', 23, '3', '2', 'manimaran', 'police', 50000.00, 0, 0.00, 20000.00, 't s Gopal nagar tiruvottiyur chennai', 't s gopal nagar tiruvottiyur chennai', '2312150005', '', '1', 'upload_files/candidate_tracker/27654643197_dinesh.pdf', NULL, '1', '2023-12-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 05:16:32', 1, '2023-12-15 05:22:35', 0, NULL, 1),
(15676, 'Monika p', '13', '7871101533', '9884689303', 'monikadarthy@gmail.com', '2000-03-19', 23, '6', '2', 'Parimalam', 'Labour', 20000.00, 2, 0.00, 3.00, '179 water tank road Aynavaram Chennai 600023', '14/28 Ezhil Nagar poonamallee chennai 600056', '2312150006', '', '1', 'upload_files/candidate_tracker/68344366944_Monika CV.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 05:29:45', 1, '2023-12-15 05:34:44', 0, NULL, 1),
(15677, 'Anvar Ali MD', '13', '7010470508', '7010763561', 'anvaraliakbar32@gmail.com', '2003-04-25', 20, '6', '2', 'Akbar Ali', 'Business', 10000.00, 2, 0.00, 20000.00, 'Sivagangai', 'Chennai', '2312150007', '', '1', 'upload_files/candidate_tracker/97542943835_ANVARRESUME-1.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 05:30:11', 1, '2023-12-15 05:36:40', 0, NULL, 1),
(15678, 'Sharmila.R', '4', '9841115972', '', 'Sharmilanalini17@gmail.com', '2003-01-17', 20, '2', '2', 'Ramasamy.A', 'Painter & Electrician', 18000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2312150008', '21', '1', 'upload_files/candidate_tracker/87139188646_sharmila. .pdf', NULL, '1', '2023-12-15', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 05:31:00', 1, '2023-12-15 05:54:39', 0, NULL, 1),
(15679, 'Durga Mohan', '4', '7358242870', '', 'durgamd236@gmail.com', '2002-07-29', 21, '2', '2', 'Mohan .G', 'Nil', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2312150009', '21', '1', 'upload_files/candidate_tracker/64715223818_a4ad1f9d-6d27-445a-b7d3-e6977bb1f75c.pdf', NULL, '3', '2023-12-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 05:32:44', 1, '2023-12-15 05:43:12', 0, NULL, 1),
(15680, 'Vignesh P', '13', '6383367919', '9003792623', 'vickyprakash20@gmail.com', '2000-06-07', 23, '3', '2', 'Prakash M', 'Auto Driver', 15000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Chennai', '2312150010', '', '1', 'upload_files/candidate_tracker/12805672806_Vignesh_BCA_CS_2020.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 05:46:22', 1, '2023-12-15 05:54:11', 0, NULL, 1),
(15681, 'Abinash D', '13', '9344475484', '9943155146', 'abinashappu9@gmail.com', '1999-09-17', 24, '3', '2', 'Dayalan M', 'Daily Worker', 15000.00, 0, 0.00, 18000.00, 'Kanchipuram', 'Chennai', '2312150011', '', '1', 'upload_files/candidate_tracker/98664630994_VEL_Abinash_BSc(cs)_2020_JavafullStack.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 05:46:38', 1, '2023-12-15 05:52:50', 0, NULL, 1),
(15682, 'prathiba', '11', '7806862817', '9841402356', 'pragi1809@gmail.com', '1999-09-18', 24, '4', '2', 'sudarsanan', 'business', 100000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2312150012', '', '1', 'upload_files/candidate_tracker/59870541546_PrathibaCV.pdf', NULL, '1', '2023-12-15', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'pursing her masterxquots  long distance and from advocate background not suit', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 05:47:27', 1, '2023-12-15 05:53:28', 0, NULL, 1),
(15683, 'seenivasan', '13', '8778821259', '8056477265', 'seenu2000vj@gmail.com', '2000-06-08', 23, '6', '2', 'prakash l', 'painter', 10000.00, 2, 0.00, 22000.00, 'Kanchipuram', 'Kanchipuram', '2312150013', '', '1', 'upload_files/candidate_tracker/99560689925_Web resume.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 05:49:37', 1, '2023-12-15 05:55:29', 0, NULL, 1),
(15684, 'Vinoth Kumar R', '2', '9941698145', '', 'vinothvishnu12@gmail.com', '1998-09-12', 25, '6', '2', 'C.Ramesh', 'Security', 20.00, 0, 0.00, 30000.00, 'No: C/40 Annai Theresa Street,Kundrathur, Chennai', 'No: C/40 Annai Theresa Street,Kundrathur, Chennai', '2312150014', '', '1', 'upload_files/candidate_tracker/53856846036_Vinoth kumar R - (Resume)-2.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 06:05:00', 1, '2023-12-15 06:18:17', 0, NULL, 1),
(15685, 'Megha gowthami', '13', '8925020487', '8925780779', 'meghagowthami2001@gmail.com', '2001-10-12', 22, '6', '2', 'Thiruvenkadam', 'Salesman', 200000.00, 0, 0.00, 20000.00, 'Velachery Chennai', 'Chennai', '2312150015', '', '1', 'upload_files/candidate_tracker/56537260346_Smallpdf_2023-12-03.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 06:17:36', 1, '2023-12-15 06:49:30', 0, NULL, 1),
(15686, 'Nithya R', '13', '7448873447', '7092173760', 'Yathni2000@gmail.com', '2000-10-03', 23, '6', '2', 'Ramasamy', 'Driver', 18000.00, 2, 0.00, 18.00, 'Porur', 'Porur', '2312150016', '', '1', 'upload_files/candidate_tracker/50249001144_Nithya.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 06:18:36', 1, '2023-12-15 06:28:57', 0, NULL, 1),
(15687, 'G. Vaishnavi', '13', '8056067212', '9677020732', 'bhavanivaishnavi234@gmail.com', '2002-05-14', 21, '6', '2', 'G. Bhavani', 'Home maker', 1200.00, 0, 0.00, 20000.00, 'K. K. Nagar, Chennai', 'K. k. Nagar', '2312150017', '', '1', 'upload_files/candidate_tracker/587614755_CV_2023112323445216.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 06:19:54', 1, '2023-12-15 06:25:31', 0, NULL, 1),
(15688, 'gugan', '16', '9176072920', '9360295560', 'gugankannan0706@gmail.com', '2001-09-22', 22, '2', '2', 'kannan', 'banking', 30000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2312150018', '1', '2', 'upload_files/candidate_tracker/94936884709_Gugan_K (Resume).pdf', NULL, '1', '2023-12-15', 0, '', '3', '59', '2023-12-19', 216000.00, '', '5', '1970-01-01', '1', 'Selected for MIS in Staff Role', '3', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-15 06:23:21', 60, '2023-12-18 03:19:48', 0, NULL, 1),
(15689, 'Gaurav', '11', '9092930145', '', 'cgsrdx@gmail.com', '2001-12-23', 21, '6', '2', 'Jagadeesan', 'Student', 89000.00, 1, 0.00, 550000.00, 'Kanchipuram', 'Kanchipuram', '2312150019', '', '1', 'upload_files/candidate_tracker/24031381381_resume_20231215_080010_0000.pdf', NULL, '1', '2023-12-15', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'long distance pursuing candidate looking for intern come employment. long run doubts.\n', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 06:26:28', 1, '2023-12-15 06:29:55', 0, NULL, 1),
(15690, 'Bhuvaneshwari P', '13', '7395921731', '9551783572', 'Bhuvaneshwarip58@gmail.com', '2002-02-08', 21, '6', '2', 'Prabhakaran M', 'Electrician', 15000.00, 1, 0.00, 20000.00, 'Kundrathur', 'Kundrathur', '2312150020', '', '1', 'upload_files/candidate_tracker/85781025199_CV_2023121421482854.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 06:29:35', 1, '2023-12-15 06:46:12', 0, NULL, 1),
(15691, 'Avinash raj', '13', '9790196869', '9787323682', 's7555610@gmail.com', '2000-11-03', 23, '3', '2', 'VISWANATHAN M', 'Labour', 15000.00, 0, 0.00, 17000.00, 'Cuddalore', 'Perambur chennai', '2312150021', '', '1', 'upload_files/candidate_tracker/44836712755_Anandhan resume.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 07:05:48', 1, '2023-12-15 07:44:55', 0, NULL, 1),
(15692, 'Selvamani R', '13', '9629161913', '', 'Selvamanikrish10@gmail.com', '1999-12-21', 23, '3', '2', 'Radhakrishnan M', 'Business', 30000.00, 2, 396000.00, 400000.00, 'Kanchipuram', 'Guindy', '2312150022', '', '2', 'upload_files/candidate_tracker/34320555259_Selvamani_Resume.pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 07:27:37', 1, '2023-12-15 07:32:54', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15693, 'Kumaran k', '13', '8148347775', '', 'kumarankaran775@gmail.com', '1999-10-19', 24, '3', '2', 'Karunakaran s', 'Building construction', 200000.00, 2, 0.00, 400000.00, '47f, kailasanathar Kovil Street Kanchipuram', '47f, kailasanathar Kovil Street Kanchipuram', '2312150023', '', '1', 'upload_files/candidate_tracker/6532132151_kumaran (1).pdf', NULL, '1', '2023-12-15', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 07:32:48', 1, '2023-12-15 07:37:24', 0, NULL, 1),
(15694, 'Mohanraj', '13', '6383649056', '7639549662', 'mohanrithik18@gmail.com', '2001-03-09', 22, '6', '2', 'Ponraj', 'Farmer', 12000.00, 1, 0.00, 200000.00, 'Ramanathapuram', 'Chennai', '2312150024', '', '1', 'upload_files/candidate_tracker/86868725470_Mohanraj_Resume.pdf', NULL, '1', '2023-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 07:39:06', 1, '2023-12-15 07:41:30', 0, NULL, 1),
(15695, '', '0', '6304401744', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312150025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-15 07:40:42', 0, NULL, 0, NULL, 1),
(15696, '', '0', '9344853092', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312150026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-15 08:10:07', 0, NULL, 0, NULL, 1),
(15697, 'ishwarya', '31', '8122047804', '', 'iswaryakannan97@gmail.com', '1998-09-17', 25, '6', '2', 'kannan', 'engineer', 3000.00, 3, 30000.00, 7094602465.00, 'Chennai', 'Chennai', '2312150027', '', '2', 'upload_files/candidate_tracker/52508358524_Aishwarya-web-developer (1).pdf', NULL, '1', '2023-12-15', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 09:42:33', 1, '2023-12-15 10:36:48', 0, NULL, 1),
(15698, 'Lediya.S', '11', '9840217732', '9840218813', 'lydiasam2001@gmail.com', '2001-05-11', 22, '6', '2', 'Parent D.Samuel', 'MBA(pursuing)', 100000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2312150028', '', '1', 'upload_files/candidate_tracker/4269956776_LYDIA, CV (2).pdf', NULL, '1', '2023-12-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Recruitment Role Need  to train a lot in our sales hiring much comfort to IT hiring Not much comfort in NDA and sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-15 09:46:07', 1, '2023-12-15 10:26:44', 0, NULL, 1),
(15699, 'jushwanth', '5', '7010944503', '', 'jushdro@gmail.com', '1996-05-03', 27, '2', '2', 'sahayaraj', 'retired', 30000.00, 1, 371000.00, 500000.00, 'chennai', 'chennai', '2312150029', '1', '2', 'upload_files/candidate_tracker/87527417757_Jushwanth resume.pdf', NULL, '1', '2023-12-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-12-15 11:48:32', 1, '2023-12-17 02:42:33', 0, NULL, 1),
(15700, 'KAPIL R', '4', '7708516811', '', 'krrishkapil7@gmail.com', '1997-07-31', 26, '2', '2', 'N.Rajan', 'X-Army', 18000.00, 1, 20000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2312150030', '1', '2', 'upload_files/candidate_tracker/59652327055_Kapil .pdf', NULL, '1', '2023-12-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-15 01:35:23', 108, '2023-12-16 11:44:58', 0, NULL, 1),
(15701, 'A, Masleen', '4', '7812868601', '9443700405', 'masleenaro@gmail.com', '1999-11-29', 24, '2', '2', 'Parent', 'Advocates Clerk', 50000.00, 1, 9000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2312150031', '1', '2', 'upload_files/candidate_tracker/63351941114_Mas 09.pdf', NULL, '1', '2023-12-16', 2023, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-15 01:45:36', 108, '2023-12-19 10:47:52', 0, NULL, 1),
(15702, 'Kathiravan', '11', '9566174080', '', 'Kathiravanb923@gmail.com', '1992-02-03', 31, '3', '2', 'Prema Sheela', 'Talent Acquisition Specialist', 50000.00, 1, 18000.00, 25000.00, 'Mogappair, Chennai', 'Mogappair, Chennai', '2312160001', '', '2', 'upload_files/candidate_tracker/35438593155_Kathir Resume.pdf', NULL, '1', '2023-12-16', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 03:46:18', 1, '2023-12-16 03:49:57', 0, NULL, 1),
(15703, 'Krishnan', '13', '9361196366', '', 'krishna250702krishna@gmail.com', '2002-07-25', 21, '3', '2', 'Alamelu', 'Coolie', 72000.00, 1, 0.00, 20000.00, 'Salem', 'Salem', '2312160002', '', '1', 'upload_files/candidate_tracker/81056372092_Krishnan Resume (1).pdf', NULL, '1', '2023-12-16', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Rejected In Aptitude Round', '2', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 04:03:50', 1, '2023-12-16 04:08:54', 0, NULL, 1),
(15704, 'Abimanyu V', '13', '9566806445', '', 'abimanyu9770@gmail.com', '2002-01-02', 21, '3', '2', 'Velmani', 'Kooli', 13000.00, 2, 0.00, 22000.00, 'Selam', 'Selam', '2312160003', '', '1', 'upload_files/candidate_tracker/52861700328_Abimanyu.V Updated Resume.pdf', NULL, '1', '2023-12-16', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Rejected In Aptitude Round', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 04:09:06', 1, '2023-12-16 04:27:18', 0, NULL, 1),
(15705, 'RUPESH.R', '13', '9360497105', '8124497108', 'rupeshitprofessional@gmail.com', '2001-07-27', 22, '6', '2', 'RAMALINGAM', 'Farmer', 12000.00, 1, 0.00, 2.90, 'Salem', 'Chennai', '2312160004', '', '1', 'upload_files/candidate_tracker/96462858594_RUPESH.R.pdf', NULL, '1', '2023-12-16', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Rejected In Aptitude Round', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 04:29:27', 1, '2023-12-16 04:33:22', 0, NULL, 1),
(15706, 'SANJAI SUBRAMANIAN CS', '11', '6383302882', '', 'sanjai04062002@gmail.com', '2002-06-04', 21, '6', '2', 'Sathyanarayanan ck', 'Business', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2312160005', '', '1', 'upload_files/candidate_tracker/1137194378_SANJAI Resume_23_11_2023_10_28_17_pm.pdf', NULL, '1', '2023-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 04:39:19', 1, '2023-12-16 04:41:53', 0, NULL, 1),
(15707, 'Santhosh kumar', '6', '8939870991', '9942870991', 'Santhoshsanthosh59802@gmail.com', '2003-06-30', 20, '2', '2', 'Parent', 'Private employee', 20000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2312160006', '1', '1', 'upload_files/candidate_tracker/27527287922_New Resume 1.pdf', NULL, '1', '2023-12-16', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-16 04:39:55', 104, '2023-12-18 09:37:36', 0, NULL, 1),
(15708, 'Abinash. M', '13', '6381305116', '', 'abinashabi1633@gmail.com', '2001-07-16', 22, '6', '2', 'Mathiyalagan. E', 'Farmer', 15000.00, 1, 0.00, 3.00, 'Nagapattinam', 'Chennai', '2312160007', '', '1', 'upload_files/candidate_tracker/20602116257_Abinash Resume-2.pdf', NULL, '1', '2023-12-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 04:41:35', 1, '2023-12-16 04:44:42', 0, NULL, 1),
(15709, 'Saran kumar.s', '11', '8610550379', '', 'saranvasthsan@gmail.com', '2001-02-26', 22, '2', '2', 'Parent', 'Government job', 2.00, 2, 0.00, 30.00, 'Chennai', 'Anna Nagar East , Chennai', '2312160008', '1', '2', 'upload_files/candidate_tracker/2838541822_Saran HR Professional Resume (2).pdf', NULL, '1', '2023-12-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-16 04:55:21', 85, '2023-12-18 06:57:29', 0, NULL, 1),
(15710, 'Keerthana', '4', '6382994063', '9095826183', 'bkeerthana272@gmail.com', '2001-08-04', 22, '2', '2', 'balaiyan', 'farmer', 50000.00, 1, 3.00, 15000.00, 'thanjavur', 'thanjavur', '2312160009', '1', '2', 'upload_files/candidate_tracker/34712588850_keerthi Balu resume.docx', NULL, '1', '2023-12-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit\n', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-16 05:00:07', 108, '2023-12-16 11:41:26', 0, NULL, 1),
(15711, 'K Rajesh', '31', '6281151240', '9491918340', 'rajesh.karamala23@gmail.com', '2001-06-23', 22, '6', '2', 'K Venda', 'Carpenter', 20000.00, 2, 25000.00, 30000.00, 'Chennai', 'Chennai', '2312160010', '', '2', 'upload_files/candidate_tracker/76049933979_Rajesh_Web Developer-5.pdf', NULL, '1', '2023-12-16', 30, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 05:03:51', 1, '2023-12-16 05:06:40', 0, NULL, 1),
(15712, 'Vijayraj.A', '13', '9360981900', '9976242056', 'vijayraj14217@gmail.com', '2001-12-28', 21, '6', '2', 'Appusamy', 'Kooli', 13000.00, 0, 0.00, 20000.00, 'Salem', 'Salem', '2312160011', '', '1', 'upload_files/candidate_tracker/79698935180_vijayraj.A Resume.pdf', NULL, '1', '2023-12-16', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'rejected in Aptitude round', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 05:04:55', 1, '2023-12-16 05:17:32', 0, NULL, 1),
(15713, 'Lavanya R', '13', '9514966081', '', 'lavanyaramu812@gmail.com', '2000-12-08', 23, '6', '2', 'Ramu K', 'Business', 25000.00, 2, 0.00, 30000.00, 'kanchipuram', 'Chennai', '2312160012', '', '1', 'upload_files/candidate_tracker/84913171960_lavanya--Resume.pdf', NULL, '1', '2023-12-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 05:07:34', 1, '2023-12-16 05:15:14', 0, NULL, 1),
(15714, 'Jeeva E', '13', '6382002247', '9578309744', 'jeevajeevan27758@gmail.coml', '2002-01-14', 21, '6', '2', 'Prema E', 'House keeping', 6000.00, 1, 0.00, 20000.00, 'Namakkal', 'Namakkal', '2312160013', '', '1', 'upload_files/candidate_tracker/30507734301_Jeeva (Pytho Full Stack Developer).pdf', NULL, '1', '2023-12-16', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 05:11:15', 1, '2023-12-16 05:17:38', 0, NULL, 1),
(15715, 'Gayathri P', '13', '7338954005', '7305568568', 'gayathri45palani@gmail.com', '2000-12-29', 22, '3', '2', 'Palani', 'Self employee', 25000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2312160014', '', '1', 'upload_files/candidate_tracker/36475322087_Gayathri_Res.pdf', NULL, '1', '2023-12-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 05:15:14', 1, '2023-12-16 05:20:24', 0, NULL, 1),
(15716, 'abhijith a', '2', '7025864355', '', 'abhijitha7472@gmail.com', '2000-03-21', 23, '3', '2', 'aravindakshan', 'tailor', 900.00, 1, 0.00, 25000.00, 'palakkad kerala', 'veerapuram mahindra city chennai', '2312160015', '', '1', 'upload_files/candidate_tracker/84983624026_Abhi camFLOcks CV.pdf', NULL, '1', '2023-12-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 05:43:07', 1, '2023-12-16 05:49:53', 0, NULL, 1),
(15717, 'thirumurugan r', '13', '9080308394', '', 'thiruparker25@gmail.com', '2001-11-25', 22, '3', '2', 'rajendran', 'driver', 10000.00, 1, 0.00, 10000.00, 'pudukkottai', 'chennai', '2312160016', '', '1', 'upload_files/candidate_tracker/44537150758_Resume.pdf', NULL, '1', '2023-12-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 05:43:30', 1, '2023-12-16 05:48:29', 0, NULL, 1),
(15718, 'Sivavel R', '13', '9360094023', '9600551772', 'shivavel1101@gmail.com', '2003-01-11', 20, '6', '2', 'Ravichandiran', 'Farmer', 10000.00, 2, 0.00, 10000.00, 'Perambalur', 'Chennai', '2312160017', '', '1', 'upload_files/candidate_tracker/53185245156_SIVAVELRESUME-2023.pdf', NULL, '1', '2023-12-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 05:43:31', 1, '2023-12-16 05:48:40', 0, NULL, 1),
(15719, 'Revathi.R', '6', '8142715327', '', 'ramrevathi2001@gmail.com', '2001-07-15', 22, '1', '2', 'Muniyammal', 'House wife', 8000.00, 1, 15000.00, 17000.00, 'Andhra Pradesh', 'Chennai', '2312160018', '', '2', 'upload_files/candidate_tracker/2162270472_Revathi ( Resem ).pdf', NULL, '1', '2023-12-16', 0, '77825', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-16 05:51:50', 108, '2023-12-16 07:18:32', 0, NULL, 1),
(15720, 'Gladis Regina J', '4', '9345999405', '9790075239', 'gladisregina224@gmail.com', '2002-12-17', 20, '2', '2', 'Johnson Athisayaraj', 'Business', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2312160019', '1', '1', 'upload_files/candidate_tracker/14209560185_Gladis updated Resume (1) (1) (1)-1.pdf', NULL, '1', '2023-12-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-16 05:53:53', 108, '2023-12-16 11:40:15', 0, NULL, 1),
(15721, 'Vinodhini Parthasarathy', '5', '8939746684', '', 'vinosarathy1@gmail.com', '1995-05-02', 28, '3', '1', 'Arun Kumar', 'Business', 35000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2312160020', '', '2', 'upload_files/candidate_tracker/67472458342_CV - Vino.pdf', NULL, '1', '2023-12-16', 0, '', '3', '59', '2024-01-03', 360000.00, '', '4', '2025-03-31', '2', 'Selected for Santhosh Team in Staff role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-16 06:24:27', 60, '2024-01-02 07:31:29', 0, NULL, 1),
(15722, 'Mohammed Suhail', '6', '9094966546', '9551223607', 'ms5703555@gmail.com', '2001-10-29', 22, '2', '2', 'Quyuam', 'Auto driver', 95000.00, 1, 0.00, 18000.00, '248 govind Street perumbur Chennai 12', '248 Govind Street Perumbur Chennai 12', '2312160021', '1', '1', 'upload_files/candidate_tracker/49233494982_5_6334860694680243420.pdf', NULL, '1', '2023-12-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-16 06:24:51', 104, '2023-12-18 09:38:16', 0, NULL, 1),
(15723, 'Aishwarya S', '6', '9677821001', '', 'aishwaryasathish1987@gmail.com', '1987-04-18', 36, '1', '1', 'Sathish Baby M', 'Business', 45000.00, 1, 20000.00, 25000.00, '600110', '600110', '2312160022', '', '2', 'upload_files/candidate_tracker/65543976232_D321717_FEB_2022.PDF', NULL, '1', '2023-12-16', 30, 'P1287', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-16 06:27:27', 108, '2023-12-16 07:15:43', 0, NULL, 1),
(15724, 'Mohamed arsath', '2', '9790380924', '', 'Arshathm4@gmail.com', '1996-09-04', 27, '6', '1', 'Abdul Malik', 'Driver', 30.00, 0, 600000.00, 800000.00, '58/13, 2nd umar street, pa kondhagai, thittacherry', '58/13, 2nd Umar Street, Pa Kondhagai, Thittacherry', '2312160023', '', '2', 'upload_files/candidate_tracker/31627463407_Mohamed Arsath.pdf', NULL, '1', '2023-12-16', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Our Roles Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 09:17:24', 1, '2023-12-16 09:27:43', 0, NULL, 1),
(15725, 'Reguna.G', '6', '9360721509', '9786095052', 'regunajeeva@gmail.com', '2003-06-07', 20, '3', '2', 'Gunasekaran', 'Farmer', 5000.00, 2, 0.00, 15000.00, 'Cuddalore', 'Chennai', '2312160024', '', '1', 'upload_files/candidate_tracker/983910451_G.Reguna Resume.pdf', NULL, '1', '2023-12-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 09:19:05', 1, '2023-12-16 09:30:19', 0, NULL, 1),
(15726, 'poorvi', '11', '9080685892', '', 'poorvi1410@gmail.com', '1998-10-14', 25, '6', '2', 'r geetha', 'admin', 70000.00, 1, 300000.00, 400000.00, 'west mambalam', 'west mambalam', '2312160025', '', '2', 'upload_files/candidate_tracker/83028787487_Poorvi resume 2023.docx', NULL, '1', '2023-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-16 10:24:52', 1, '2023-12-16 10:29:53', 0, NULL, 1),
(15727, '', '0', '8531920000', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312160026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-16 01:03:33', 0, NULL, 0, NULL, 1),
(15728, 'Prasannasundar T', '4', '9345893377', '', 'Prasanna67033@gmail.com', '2003-07-06', 20, '2', '2', 'Thiruneelakandan S', 'Farmer', 48000.00, 1, 0.00, 15000.00, 'Poyyur', 'Poyyur', '2312160027', '1', '1', 'upload_files/candidate_tracker/13832184495_Prasannaundar resume.docx', NULL, '1', '2023-12-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-16 01:04:35', 108, '2023-12-20 12:28:45', 0, NULL, 1),
(15729, 'Mathumitha.S', '4', '6369416505', '', 'madhumithabca8@gmail.com', '2003-11-26', 20, '2', '2', 'Subramaniyan.p', 'Farmer', 45000.00, 1, 0.00, 15000.00, 'Nagapattinam', 'Nagapattinam', '2312160028', '1', '1', 'upload_files/candidate_tracker/24320915672_Madhumitha_Resume.pdf', NULL, '2', '2023-12-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-16 01:14:16', 108, '2023-12-20 12:25:55', 0, NULL, 1),
(15730, '', '0', '7010219205', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312160029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-16 03:19:24', 0, NULL, 0, NULL, 1),
(15731, 'Sujeetha', '13', '8098388674', '', 'sujeeperiyasamy98@gmail.com', '1998-07-13', 25, '1', '1', 'Arunpandiyan', 'BE(ECE)', 25000.00, 1, 0.00, 15000.00, 'Salem', 'Chennai', '2312180001', '', '1', 'upload_files/candidate_tracker/12285126271_sujee.pdf', NULL, '1', '2023-12-18', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 04:24:56', 1, '2023-12-18 04:42:02', 0, NULL, 1),
(15732, 'V.sudhika', '4', '6374203429', '6380354759', 'Sudhikavinyagamoorthi@gmail.c0m', '2003-08-13', 20, '1', '2', 'Vinayagamoorthi', 'Post man', 10000.00, 1, 0.00, 15000.00, '7/1 strimathi nagar sevvapet', 'Sevvapet', '2312180002', '', '1', 'upload_files/candidate_tracker/32661832094_RESUME-1-1.pdf', NULL, '1', '2023-12-18', 0, 'JOBS', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 04:25:55', 1, '2023-12-18 05:03:09', 0, NULL, 1),
(15733, 'naveen', '13', '6382401736', '', 'naveensudhakaran0210@gmail.com', '2001-10-02', 22, '6', '2', 'n.sudhakaran', 'provision shop', 20000.00, 1, 0.00, 350000.00, 'virudhunagar', 'porur', '2312180003', '', '1', 'upload_files/candidate_tracker/64060018320_RESUME.pdf', NULL, '1', '2023-12-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 04:29:03', 1, '2023-12-18 04:34:13', 0, NULL, 1),
(15734, 'Durga G', '13', '8754884470', '', 'durgagiritharan1@gmail.com', '2001-05-15', 22, '6', '2', 'Giritharan C', 'Fresher', 35000.00, 0, 0.00, 15000.00, 'Kumbakonam', 'Chennai', '2312180004', '', '1', 'upload_files/candidate_tracker/16553619845_Durga_G_SD.pdf', NULL, '1', '2023-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 04:31:33', 1, '2023-12-18 04:39:12', 0, NULL, 1),
(15735, 'Hemalatha', '13', '8754115670', '6379981454', 'hemajagovahwit@gmail.com', '2000-07-03', 23, '3', '2', 'Subramani', 'Tailor', 200000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2312180005', '', '1', 'upload_files/candidate_tracker/43665882492_Hema Resume (1).pdf', NULL, '1', '2023-12-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 04:46:01', 1, '2023-12-18 04:50:44', 0, NULL, 1),
(15736, 'Shwedha', '4', '6369603533', '9841504862', 'swedhashoban@gmail.com', '2003-06-26', 20, '3', '2', 'Lakshmi Narayanan', 'Small business', 35000.00, 0, 0.00, 18000.00, 'Periyar pathai, choolaimedu', 'Periyar pathai, choolaimedu', '2312180006', '', '1', 'upload_files/candidate_tracker/82278463475_SHWEDHA.pdf.docx', NULL, '1', '2023-12-18', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 04:51:28', 1, '2023-12-18 05:12:27', 0, NULL, 1),
(15737, 'Gowcika', '4', '9790682956', '9443080336', 'gowcikavelu62@gmail.com', '2001-02-06', 22, '2', '2', 'Chithiravelu', 'Driver', 72000.00, 2, 0.00, 13000.00, 'Devakottai', 'Guindy', '2312180007', '21', '1', 'upload_files/candidate_tracker/91155945597_Resume.doc..pdf', NULL, '1', '2023-12-18', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 05:12:34', 1, '2023-12-18 05:18:24', 0, NULL, 1),
(15738, 'Surya k', '13', '7904624339', '', 'suryakofficial0@gmail.com', '1999-09-27', 24, '6', '2', 'Karunakaran (parent)', 'Accountant', 300000.00, 1, 0.00, 2.50, 'Thiruvidanthai, chengalpattu', 'Thiruvidanthai, chengalpattu', '2312180008', '', '1', 'upload_files/candidate_tracker/44839849717_surya_k_resume-2.pdf', NULL, '1', '2023-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 05:16:15', 1, '2023-12-18 05:22:57', 0, NULL, 1),
(15739, 'Yougalya', '7', '6369887587', '', 'yougalyam@gmail.com', '2001-12-14', 22, '3', '2', 'Mathialagan', 'Plumber', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2312180009', '', '1', 'upload_files/candidate_tracker/39840061519_Yougalya Resume.pdf', NULL, '1', '2023-12-18', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 05:18:41', 1, '2023-12-18 06:06:03', 0, NULL, 1),
(15740, 'Aishwarya.s', '4', '9566235127', '9944355014', 'aishwaryasuresh000@gmail.com', '2001-07-06', 22, '2', '2', 'Suresh.G', 'Business', 25000.00, 0, 0.00, 20000.00, 'Vadapalani', 'Chennai', '2312180010', '21', '1', 'upload_files/candidate_tracker/95332733155_Adobe Scan 18-Dec-2023.pdf', NULL, '1', '2023-12-18', 0, '', '1', '52', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 05:22:57', 1, '2023-12-18 05:30:56', 0, NULL, 1),
(15741, 'Sheik Riyas H', '14', '7402475636', '9360606179', 'sheikriyas92@gmail.com', '2002-05-29', 21, '3', '1', 'Hyderali M', 'Shopkeeper', 40000.00, 0, 0.00, 10000.00, 'Thanjavur', 'Ekkatuthangal,Chennai', '2312180011', '', '1', 'upload_files/candidate_tracker/65147148214_FlutterCVFinal.pdf', NULL, '1', '2023-12-18', 0, '', '3', '59', '2023-12-21', 120000.00, '', '5', '1970-01-01', '1', '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-18 05:27:19', 60, '2023-12-21 10:32:29', 0, NULL, 1),
(15742, 'R.Hari hara priya', '6', '8122701065', '6379154585', 'Priyalakshi19@gmail.com', '2000-01-01', 23, '3', '1', 'Rajkumar.k', 'Driver', 100000.00, 2, 16000.00, 16000.00, 'Chennai', 'Chennai', '2312180012', '', '2', 'upload_files/candidate_tracker/77647600522_PRIYA.pdf', NULL, '1', '2023-12-18', 0, '', '3', '59', '2023-12-19', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team in Consultant Role Long Career Gap 12th graduate manager recommended 16K salary(Appro 15K tH)', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-18 05:28:27', 60, '2023-12-19 10:45:07', 0, NULL, 1),
(15743, 'Preethi. V', '13', '9361198872', '', 'preethivasu2020@gmail.com', '2002-02-10', 21, '3', '2', 'Vasu. R', 'Business', 400000.00, 1, 0.00, 2.50, 'Jayalashmi nagar, kattupakkam', 'Chennai', '2312180013', '', '1', 'upload_files/candidate_tracker/35149918886_White and Blue Minimalist Software Engineer Resume CV (1).pdf', NULL, '2', '2023-12-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 05:40:21', 1, '2023-12-18 05:45:05', 0, NULL, 1),
(15744, 'Gayathri V', '13', '9025457560', '9600550583', 'gayathrimeeru18@gmail.com', '2000-07-18', 23, '6', '2', 'Vaidhyanadha Sharma', 'Proghit', 84000.00, 0, 0.00, 300000.00, 'Tiruvannamalai', 'Chennai', '2312180014', '', '1', 'upload_files/candidate_tracker/75250889602_Gayathri sharma CV.pdf', NULL, '1', '2023-12-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 05:43:16', 1, '2023-12-18 05:48:59', 0, NULL, 1),
(15745, 'Jeyachitra S', '13', '6369874120', '', 'jeyachitrasakthivel@gmail.com', '2000-05-12', 23, '3', '2', 'B.Sakthivel', 'Daily wages worker', 8000.00, 1, 0.00, 300000.00, 'Poonamalle,Chennai', 'Poonamalle', '2312180015', '', '1', 'upload_files/candidate_tracker/52008443945_JeyachitraS.pdf', NULL, '1', '2023-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 05:48:28', 1, '2023-12-18 06:13:34', 0, NULL, 1),
(15746, 'Hemamalini.M', '6', '7338888579', '8124868820', 'mhemamalini37@gmail.com', '2003-04-10', 20, '2', '2', 'Parent Muthu', 'Auto driver', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2312180016', '21', '1', 'upload_files/candidate_tracker/42329668978_M. Hemamalini_18_11_2023_02_31_57_PM.pdf', NULL, '1', '2023-12-18', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-18 05:51:22', 85, '2023-12-18 01:05:42', 0, NULL, 1),
(15747, 'Parthiban R', '6', '9176631408', '', 'parthiche93@gmail.com', '1999-08-14', 24, '2', '2', 'Meena', 'House wives', 200000.00, 1, 22000.00, 22000.00, 'Chennai', 'Chennai', '2312180017', '1', '2', 'upload_files/candidate_tracker/44790286336_parthiban.pdf', NULL, '1', '2023-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2023-12-18 05:57:47', 1, '2023-12-18 06:00:13', 0, NULL, 1),
(15748, 'zainab n', '11', '9884907915', '', 'zfathima262@gmail.com', '2002-05-20', 21, '2', '2', 'abdul numan', 'business', 30000.00, 3, 0.00, 5000.00, 'moolakadai', 'moolakadai', '2312180018', '1', '1', 'upload_files/candidate_tracker/75501739520_2213323036060 RESUME.pdf', NULL, '1', '2023-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2023-12-18 05:58:49', 1, '2023-12-18 06:07:52', 0, NULL, 1),
(15749, 'Dhinesh kumar', '6', '7339626428', '9585155606', 'Dhinesh412pr@gmail.com', '2000-07-21', 23, '2', '2', 'Shri vidya', 'Nursing attender', 20000.00, 2, 0.00, 16000.00, 'Pondicherry', 'Pondicherry', '2312180019', '21', '1', 'upload_files/candidate_tracker/79660537063_dhinesh resume.pdf', NULL, '1', '2023-12-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-18 06:01:36', 85, '2023-12-18 06:13:07', 0, NULL, 1),
(15750, 'K.suryaprakash', '6', '9597823007', '9952791785', 'suryaprakashk06@gmail.com', '2000-09-06', 23, '2', '1', 'Revathy', 'Cashier', 19000.00, 0, 0.00, 15000.00, 'Pondicherry', 'Pondicherry', '2312180020', '21', '1', 'upload_files/candidate_tracker/25883630732_surya.pdf', NULL, '1', '2023-12-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-18 06:01:38', 85, '2023-12-18 06:11:56', 0, NULL, 1),
(15751, 'Hemapriya', '11', '9442673539', '', 'Kavivspriya@gmail.com', '1999-09-07', 24, '6', '2', 'Venkatesan', 'Police', 3.00, 2, 17000.00, 23000.00, 'Vellore', 'Thousand lights', '2312180021', '', '2', 'upload_files/candidate_tracker/28598041203_Hemapriya Venkatesan-Resume.pdf', NULL, '1', '2023-12-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 06:20:41', 1, '2023-12-18 06:45:20', 0, NULL, 1),
(15752, 'Kishorekumar Mahesh', '13', '9791167510', '', 'kishorekumarmahesh14@gmail.com', '2001-08-14', 22, '6', '2', 'Mahesh', 'Chat shoo', 15000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2312180022', '', '1', 'upload_files/candidate_tracker/46881607891_Kishore.pdf', NULL, '1', '2023-12-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 06:24:51', 1, '2023-12-18 06:26:51', 0, NULL, 1),
(15753, 'Gokul Krishna', '33', '8939707025', '', 'anish.karthikeya090@gmail.com', '1996-07-25', 27, '3', '2', 'Single Parent', 'House wife', 10000.00, 2, 27000.00, 30000.00, 'Perambur', 'Perambur', '2312180023', '', '2', 'upload_files/candidate_tracker/60829196482_anish karthikeya 0909.pdf', NULL, '1', '2023-12-18', 1, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 06:25:59', 1, '2023-12-18 06:29:03', 0, NULL, 1),
(15754, 'K.Praveen Kumar', '13', '9080936562', '', 'praveenkp0405@gmail.com', '2001-01-03', 22, '6', '2', 'V.Kanniyappan', 'Driver', 30000.00, 1, 0.00, 18000.00, 'Tindivanam', 'Toindaiyapet, Chennai', '2312180024', '', '1', 'upload_files/candidate_tracker/42392038746_Resume up.pdf', NULL, '1', '2023-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 06:28:03', 1, '2023-12-18 06:35:50', 0, NULL, 1),
(15755, 'Yaganathan', '13', '6379630519', '8015919722', 'yagasivakumar@gmail.com', '1998-11-05', 25, '6', '2', 'No', 'No', 12000.00, 1, 10000.00, 20000.00, 'Vadalur, Cuddalore Dis., Tamilnadu 607303', 'Maduravoyal, Chennai, Tamilnadu 600095', '2312180025', '', '2', 'upload_files/candidate_tracker/16951541300_YAGANATHAN S.pdf', NULL, '1', '2023-12-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 06:32:38', 1, '2023-12-18 06:38:35', 0, NULL, 1),
(15756, 'Shanmugasundar E', '13', '7299391197', '7401282478', 'shanmugasundar.robotics@gmail.com', '1996-07-22', 27, '3', '2', 'Varalakshmi', 'home maker', 25000.00, 1, 0.00, 2.00, 'chennai', 'Chennai', '2312180026', '', '1', 'upload_files/candidate_tracker/99694561496_SHANMUGASUNDAR\'s Resume (6) (1).pdf', NULL, '1', '2023-12-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 06:40:38', 1, '2023-12-18 06:44:38', 0, NULL, 1),
(15757, 'Murugesan Santhanam', '31', '6379492175', '8056610623', 'murugesansanthanam123@gmail.com', '2000-06-04', 23, '3', '2', 'Santhanam', 'Fresher', 300000.00, 2, 0.00, 150000.00, 'Karur', 'Karur', '2312180027', '', '1', 'upload_files/candidate_tracker/85572118249_my-resume.pdf', NULL, '1', '2023-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 07:05:11', 1, '2023-12-18 07:13:04', 0, NULL, 1),
(15758, 'Leena ashwini', '6', '9342063079', '', 'Leenaashwini06@gmail.com', '1993-09-06', 30, '3', '1', 'Thamizh', 'Driver', 15000.00, 0, 20000.00, 22000.00, 'VySarpadi', 'Vyasarpadi', '2312180028', '', '2', 'upload_files/candidate_tracker/63113894549_New Resume. (1).pdf', NULL, '1', '2023-12-18', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 07:06:25', 1, '2023-12-18 07:40:39', 0, NULL, 1),
(15759, 'prasanna kumar', '22', '8428977638', '', 'regnoldprasanna555@gmail.com', '1998-06-05', 25, '3', '1', 'ashok kumar', 'client partner', 25000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2312180029', '', '2', 'upload_files/candidate_tracker/24210344092_Prasanna\'s Resume.pdf', NULL, '1', '2023-12-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Our Roles Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 07:45:43', 1, '2023-12-18 08:00:05', 0, NULL, 1),
(15760, 'Harish R', '31', '6381449797', '9500553504', 'harishbca8716@gmail.com', '2000-10-20', 23, '3', '2', 'K. Ramasamy', 'Daily wages', 20000.00, 1, 0.00, 10000.00, 'Trichy', 'Chennai', '2312180030', '', '1', 'upload_files/candidate_tracker/89907181560_CV_2023082319283238.pdf', NULL, '1', '2024-01-03', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-18 07:52:36', 104, '2024-01-03 11:33:50', 0, NULL, 1),
(15761, 'mohamed thoufiq', '13', '9940802559', '', 'thoufiqrahman23@gmail.com', '2002-04-23', 21, '6', '2', 'haja najubudeen', 'labour', 12000.00, 2, 0.00, 17000.00, 'thiruvarur', 'triplicane', '2312180031', '', '1', 'upload_files/candidate_tracker/69384151326_Thoufiq Rahman_resume.pdf', NULL, '1', '2023-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 09:01:58', 1, '2023-12-18 10:20:28', 0, NULL, 1),
(15762, 'Aathif Khan Zq', '11', '9789045140', '', 'aathifkhan46@gmail.com', '2001-11-16', 22, '3', '2', 'Zahir hussian', 'Manager', 30000.00, 1, 300000.00, 400000.00, 'Chennai', 'Chennai', '2312180032', '', '2', 'upload_files/candidate_tracker/48937536668_Aathif resume updated.pdf', NULL, '1', '2023-12-18', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 09:35:40', 1, '2023-12-18 09:42:38', 0, NULL, 1),
(15763, 'M.mohamed Hanifa', '31', '9361098370', '', 'mh138330@gmail.com', '2001-11-26', 22, '3', '2', 'M.mohamed sadhakkadhullah', 'Business', 20000.00, 2, 0.00, 200000.00, 'Pattukkottai', 'Chennai', '2312180033', '', '1', 'upload_files/candidate_tracker/75324127855_M.MOHAMED HANIFA RESUME (1).PDF', NULL, '1', '2023-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-18 09:42:12', 1, '2023-12-18 09:57:52', 0, NULL, 1),
(15764, '', '0', '6383507729', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312180034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-18 12:04:07', 0, NULL, 0, NULL, 1),
(15765, 'Jaichandar G', '26', '7358611268', '8270330504', 'jaichandar19j107@gmail.com', '2002-04-05', 21, '4', '1', 'Viji G', 'Garments Helper', 10000.00, 1, 0.00, 18000.00, 'Chrompet', 'Chrompet', '2312190001', '', '2', 'upload_files/candidate_tracker/32998939805_Jaichandar G .pdf', NULL, '1', '2023-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 01:22:01', 1, '2023-12-19 01:27:46', 0, NULL, 1),
(15766, 'Kousalya Thangavel', '13', '7397256301', '7358253922', 'kousidinesh1999@gmail.com', '1999-12-14', 24, '6', '2', 'Thangavel.S', 'Driver', 20000.00, 1, 0.00, 18000.00, 'Pozhichalur', 'Pozhichalur', '2312190002', '', '1', 'upload_files/candidate_tracker/83977411850_kousalya.pdf', NULL, '1', '2023-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 04:45:14', 1, '2023-12-19 04:51:43', 0, NULL, 1),
(15767, 'Deepika. M', '11', '9347769427', '9059020897', 'deepika.mohan2501@gmail.com', '2001-08-25', 22, '6', '2', 'Mohan', 'Self-employed', 80000.00, 2, 0.00, 15000.00, 'Nagari, Chittoor, Andhrapradesh', 'Porur', '2312190003', '', '1', 'upload_files/candidate_tracker/70658985870_DEEPIKA RESUME-1 (1).pdf', NULL, '1', '2023-12-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 04:45:30', 1, '2023-12-19 05:01:49', 0, NULL, 1),
(15768, 'Joyson', '13', '8056137306', '', 's.joysonson1112@gmail.com', '2002-12-11', 21, '6', '2', 'Samuvel', 'Own business', 92000.00, 2, 0.00, 20000.00, 'Paramakudi', 'Chennai', '2312190004', '', '1', 'upload_files/candidate_tracker/39103122472_joyson (1).pdf', NULL, '1', '2023-12-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 04:46:28', 1, '2023-12-19 04:52:27', 0, NULL, 1),
(15769, 'Manoj Kumar.s', '16', '7845851834', '9884982252', 'manojselvam01@gmail.com', '1996-10-30', 27, '2', '2', 'K.selvam', 'Coolie', 16000.00, 2, 15.00, 16.00, 'No: 1/23, nochikuppam, Mylapore, chennai 600004', 'No: 1/23, Nochikuppam, Mylapore, Chennai 600004', '2312190005', '1', '2', 'upload_files/candidate_tracker/59845061074_manoj_resume 1 (1).docx', NULL, '1', '2023-12-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-19 05:02:22', 104, '2023-12-19 12:52:54', 0, NULL, 1),
(15770, 'Logesh U', '13', '9840958907', '9940377226', 'logeshshankar2001@gmail.com', '2001-02-01', 22, '6', '2', 'Jayanthi U', 'Home maker', 20000.00, 1, 20000.00, 27000.00, 'Chennai, tharamani', 'Chennai, tharamani', '2312190006', '', '2', 'upload_files/candidate_tracker/61187919682_LOGESH RESUME-1.pdf', NULL, '1', '2023-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 05:11:59', 1, '2023-12-19 05:16:58', 0, NULL, 1),
(15771, 'Ajay M', '16', '6383207729', '7397479325', 'ajay30153015@gmail.com', '2001-10-30', 22, '2', '2', 'Thilaga M', 'Accounts manager', 25000.00, 1, 15600.00, 18000.00, 'Ramapuram', 'Ramapuram', '2312190007', '1', '2', 'upload_files/candidate_tracker/75212054656_AjayResume.pdf', NULL, '1', '2023-12-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-19 05:14:23', 104, '2023-12-19 12:53:09', 0, NULL, 1),
(15772, 'Abitha', '4', '9751916615', '7708115899', 'abithausha392000@gmail.com', '2000-09-03', 23, '2', '2', 'Usha', 'Cooley', 15000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2312190008', '1', '1', 'upload_files/candidate_tracker/14039833870_aaaaabi.docx', NULL, '1', '2023-12-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-19 05:14:36', 108, '2023-12-19 11:00:32', 0, NULL, 1),
(15773, 'Sudheesh', '2', '9746693668', '', 'Sudheeshmadathil00@gmail.com', '1991-07-17', 32, '6', '2', 'Janaki', 'Developer', 10000.00, 4, 0.00, 12000.00, 'Kerala Malappuram', 'Malappuram', '2312190009', '', '1', 'upload_files/candidate_tracker/21457265302_MERN_STACK_DEVELOPER.pdf', NULL, '1', '2023-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 05:15:23', 1, '2023-12-19 06:51:04', 0, NULL, 1),
(15774, 'Rojar Benny K', '13', '8925617404', '', 'bennyk72002@gmail.com', '2002-02-04', 21, '6', '2', 'Kesavan D', 'Driver', 19000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2312190010', '', '1', 'upload_files/candidate_tracker/59030592066_Rojar Benny K Resume.pdf', NULL, '1', '2023-12-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 05:27:54', 1, '2023-12-19 05:32:13', 0, NULL, 1),
(15775, 'mahendar j', '2', '8056352271', '', 'mahendarj10@gmail.com', '1998-12-10', 25, '6', '2', 'girija j', 'house maker', 25000.00, 1, 350000.00, 550000.00, 'chennai', 'chennai', '2312190011', '', '2', 'upload_files/candidate_tracker/15825395333_Mahendar-J.pdf', NULL, '1', '2023-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 05:37:15', 1, '2023-12-19 05:47:17', 0, NULL, 1),
(15776, 'Afreen', '4', '7305638844', '', 'afreentae308@gmail.com', '2002-04-08', 21, '2', '2', 'Athaullah sheriff', 'Business man', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2312190012', '21', '1', 'upload_files/candidate_tracker/85938969614_AFREEN Updated RESUME 1.pdf', NULL, '1', '2023-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 05:44:11', 1, '2023-12-19 06:45:18', 0, NULL, 1),
(15777, 'Sriram Palanivel', '13', '9025969372', '9655884384', 'srikkd98@gmail.com', '1998-04-22', 25, '6', '2', 'Palanivel', 'Business', 90000.00, 2, 0.00, 30000.00, 'Thanjavur', 'Chennai', '2312190013', '', '1', 'upload_files/candidate_tracker/18878867705_SRIRAM RESUME (1)_compressed.pdf', NULL, '1', '2023-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 05:48:36', 1, '2023-12-19 05:57:11', 0, NULL, 1),
(15778, 'suraj', '5', '8073838050', '9880453034', 'surajappu19@gmail.com', '1996-11-19', 27, '2', '2', 'gangamaa', 'house wife', 25000.00, 1, 30000.00, 300000.00, 'anga', 'angalo', '2312190014', '1', '2', 'upload_files/candidate_tracker/16846244424_suraj resumae (1).docx', NULL, '1', '2023-12-19', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-19 05:56:03', 104, '2023-12-19 12:54:23', 0, NULL, 1),
(15779, 'Dhanush N', '5', '8892776898', '7204923010', 'dhanubob4321@gmail.com', '2000-06-25', 23, '2', '2', 'Nagaraj', 'Real estate', 30000.00, 1, 30000.00, 35000.00, 'Bangalore', 'Bangalore', '2312190015', '1', '2', 'upload_files/candidate_tracker/33821691906_DHANUSH N Cv.pdf', NULL, '1', '2023-12-19', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-19 05:56:38', 104, '2023-12-19 12:53:36', 0, NULL, 1),
(15780, 'Swathi. S', '2', '9952563903', '', 'swathisdeveloper@gmail.com', '2002-01-14', 21, '6', '2', 'Senthatti', 'Full stack developer', 20000.00, 1, 0.00, 20000.00, 'Theni', 'Chennai', '2312190016', '', '1', 'upload_files/candidate_tracker/62212770945_swathi developer (2).pdf', NULL, '1', '2023-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 05:59:39', 1, '2023-12-19 06:09:41', 0, NULL, 1),
(15781, 'Ezhumalai', '13', '6385598347', '', 'ms7mara@gmail.com', '2008-12-19', 0, '3', '2', 'Muthukaruppan', 'Daily wages', 10000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2312190017', '', '1', 'upload_files/candidate_tracker/44609070491_Ezhumalai Resumee.pdf', NULL, '1', '2023-12-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 06:01:44', 1, '2023-12-19 06:04:55', 0, NULL, 1),
(15782, 'Hariharan s', '13', '9150358042', '7810014278', 'hariharansg2001@gmail.com', '2001-12-27', 21, '6', '2', 'Saravanan s', 'Daily wages', 10000.00, 2, 0.00, 3.50, 'Villupuram', 'Chennai', '2312190018', '', '1', 'upload_files/candidate_tracker/11017311579_Hari_ResumeU (2).pdf', NULL, '1', '2023-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 06:17:38', 1, '2023-12-19 06:30:52', 0, NULL, 1),
(15783, 'Enbasudhakar B', '4', '8946047296', '7339349597', 'enba2557@gmail.com', '2005-03-03', 18, '2', '2', 'Bala Murugan', 'Business', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2312190019', '1', '1', 'upload_files/candidate_tracker/6099455299_CV_2023072514392867.pdf', NULL, '1', '2023-12-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-19 06:51:09', 108, '2023-12-19 03:51:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15784, 'Hariharan B', '4', '7339349597', '8946047296', 'Hariharan22507@gmail.com', '2004-11-03', 19, '2', '2', 'Bala Krishnan', 'Auto driver', 12000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2312190020', '1', '1', 'upload_files/candidate_tracker/79075068210_CV_2023072513574217.pdf', NULL, '1', '2023-12-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-19 06:51:32', 108, '2023-12-19 03:51:10', 0, NULL, 1),
(15785, 'Sivasakthi', '13', '6385645596', '', 'sivasakthisp22@gmail.com', '2002-11-22', 21, '3', '2', 'Parthasarathy', 'Painting contractor', 12000.00, 1, 0.00, 200000.00, 'Vaniyambadi, Tirupattur-dist', 'Velachery, Chennai', '2312190021', '', '1', 'upload_files/candidate_tracker/99558698250_Sivasakthi_resume.pdf', NULL, '1', '2023-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 06:54:18', 1, '2023-12-19 07:02:17', 0, NULL, 1),
(15786, 'Hemalatha Kathiresan', '13', '6382643762', '8637452578', 'hemalathakathiresan03@gmail.com', '2003-06-09', 20, '6', '2', 'Sumithra K', 'Coolie', 6000.00, 1, 0.00, 300000.00, 'Madurai', 'Chennai', '2312190022', '', '1', 'upload_files/candidate_tracker/62711089539_Hemalatha Kathiresan Resume_1702962064191_Hemalatha Kathiresan.pdf', NULL, '1', '2023-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 06:56:22', 1, '2023-12-19 07:23:15', 0, NULL, 1),
(15787, 'Kaviya Karunanithi', '13', '6384104546', '', 'kaviyakarunanithi26@gmail.com', '2003-07-26', 20, '3', '2', 'Karunanithi', 'Farmer', 6000.00, 1, 0.00, 300000.00, 'Villupuram', 'Chennai', '2312190023', '', '1', 'upload_files/candidate_tracker/84597573596_Document from Kaviya.pdf', NULL, '1', '2023-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 06:56:35', 1, '2023-12-19 07:02:02', 0, NULL, 1),
(15788, 'K. Charanyadevi', '4', '9952015205', '9080123865', 'charanselfarmy@gmail.com', '2008-12-19', 0, '1', '2', 'K. Krishnakumar', 'Auto driver', 10000.00, 1, 14000.00, 14000.00, 'CHENNAI', 'CHENNAI', '2312190024', '', '2', 'upload_files/candidate_tracker/72252382468_charan resume.docx', NULL, '1', '2023-12-19', 0, '1234', '3', '59', '2023-12-20', 152400.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team in consultant Role', '1', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-19 07:04:03', 60, '2023-12-20 09:59:49', 0, NULL, 1),
(15789, 'J.Aishwarya', '4', '8270773010', '7299716979', 'aishwaryaaishwarya3273@gmail.com', '2003-06-15', 20, '2', '2', 'S.Jaya prakash', 'Sales executive', 17000.00, 1, 0.00, 2.50, 'Vellore', 'Vadapalani', '2312190025', '21', '1', 'upload_files/candidate_tracker/33340896060_Aishwarya. Resume .pdf', NULL, '1', '2023-12-19', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 07:06:18', 1, '2023-12-19 07:12:58', 0, NULL, 1),
(15790, 'Sindhu T', '11', '8056357005', '', 'sindhuss0916@gmail.com', '2000-11-09', 23, '2', '2', 'V. Thirumurugan', 'Ex-Army', 15000.00, 1, 0.00, 300000.00, '12/248A, 1st St, Kamaraj Ngr Thorapadi, Vellore-2', '3F, tower 12, vS Apartments, kelambakkam', '2312190026', '1', '1', 'upload_files/candidate_tracker/73205855678_Sindhu', NULL, '1', '2023-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-19 07:07:27', 104, '2023-12-19 12:55:48', 0, NULL, 1),
(15791, 'Syed ibrahim', '33', '9790578721', '', 'jeshan.syed786@gmail.com', '1991-06-10', 32, '3', '2', 'Syed Gulam Dhasthageer', 'Sales man', 24000.00, 0, 25000.00, 26000.00, 'Annur coimbatore', 'Saidapet chennai', '2312190027', '', '2', 'upload_files/candidate_tracker/38627615711_Syed Ibrahim Resume-1.pdf', NULL, '1', '2023-12-19', 7, '', '3', '59', '2023-12-20', 345800.00, '', '5', '1970-01-01', '2', 'Selected for Accounts Team in Staff Role  Gokul shortlisted the profile', '4', '2', '4', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-19 09:25:24', 60, '2023-12-20 10:08:34', 0, NULL, 1),
(15792, 'Mekala A', '11', '8220124926', '', 'mekalasumathi124926@gmail.com', '1999-04-25', 24, '3', '2', 'R anandharaj', 'Expired', 2.40, 1, 20000.00, 25000.00, 'Medavakkam', 'Medavakkam', '2312190028', '', '2', 'upload_files/candidate_tracker/35277144750_Mekala_Resume_2023.pdf', NULL, '1', '2023-12-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 09:38:23', 1, '2023-12-19 09:41:48', 0, NULL, 1),
(15793, 'Balasubramaniam T', '11', '6381158271', '8489655476', 'Bala.subramaniam281097@gmail.com', '1997-10-28', 26, '6', '2', 'Thiagavarsan M', 'Accountant', 30000.00, 1, 30000.00, 33000.00, 'Chennai', 'Chennai', '2312190029', '', '2', 'upload_files/candidate_tracker/95953135122_CV_202307140525517.pdf', NULL, '1', '2023-12-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 09:39:54', 1, '2023-12-19 09:45:44', 0, NULL, 1),
(15794, 'Siva', '5', '9600856261', '', 'Siva0005.d@gmail.com', '1998-11-24', 25, '2', '2', 'Banumathi', 'Typist', 25000.00, 1, 2.70, 3.60, 'Tirunelveli', 'Chennai', '2312190030', '1', '2', 'upload_files/candidate_tracker/5238572634_1696934814522_CV_2023091813495863.pdf', NULL, '1', '2023-12-20', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-19 10:19:19', 85, '2023-12-20 11:49:07', 0, NULL, 1),
(15795, 'suriya', '6', '7358449053', '', 'suryaa.2702@gmail.com', '1998-02-27', 25, '2', '2', 'parent', 'laundry busin', 60000.00, 1, 0.00, 17000.00, 'chennai', 'ra puram', '2312190031', '1', '1', 'upload_files/candidate_tracker/65642208182_surya resume 2023.pdf', NULL, '1', '2023-12-21', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Sustain Problem', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-12-19 10:27:49', 85, '2023-12-21 04:22:44', 0, NULL, 1),
(15796, 'Kumaresan', '5', '7397312926', '7200218926', 'Kumaresansownder634@gmail.com', '2003-01-06', 20, '6', '2', 'Sownderrajan', 'Bpo supervisor', 17000.00, 1, 18000.00, 20000.00, 'Korattur', 'Korattur', '2312190032', '', '2', 'upload_files/candidate_tracker/65078884044_CV_2023121913064113.pdf', NULL, '1', '2023-12-20', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-19 11:48:16', 1, '2023-12-20 06:52:22', 0, NULL, 1),
(15797, 'venil vendhan', '5', '7904157337', '', 'venilvendhan1998@gmail.com', '1998-05-04', 25, '6', '2', 'thirumavalavan', 'business', 20000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2312190033', '', '2', 'upload_files/candidate_tracker/30072599111_venil new adventure.pdf', NULL, '1', '2023-12-20', 15, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-19 11:50:27', 1, '2023-12-19 12:03:18', 0, NULL, 1),
(15798, 'Vivek', '31', '9025138965', '', 'Viveksankar2010@gmail.com', '2001-10-20', 22, '6', '2', 'Sankar', 'Agriculture', 10000.00, 2, 0.00, 300000.00, 'TRICHY', 'Guindy', '2312200001', '', '1', 'upload_files/candidate_tracker/87717230381_Resume (9).pdf', NULL, '1', '2023-12-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 03:52:04', 1, '2023-12-20 04:14:05', 0, NULL, 1),
(15799, 'Jagadeesh R', '13', '8778742394', '9500048808', 'jagadeeshraj45pl@gmail.com', '1998-01-28', 25, '6', '2', 'Rajkumar and Alamelu', 'Small Employment', 20000.00, 1, 0.00, 20000.00, 'Maduravoyal', 'Maduravoyal', '2312200002', '', '1', 'upload_files/candidate_tracker/1473155243_JAGADEESH 7 (1).docx', NULL, '1', '2023-12-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 04:23:44', 1, '2023-12-20 04:29:46', 0, NULL, 1),
(15800, 'Venkatesh K', '13', '7358311789', '', 'venkatesh2001chennai@gmail.com', '2001-04-24', 22, '6', '2', 'Kumar P', 'Driver', 12000.00, 2, 0.00, 450000.00, 'Medavakkam, chennai 600100', 'Medavakkam, chennai 600100', '2312200003', '', '1', 'upload_files/candidate_tracker/31197999190_Venkatesh CV (2).pdf', NULL, '1', '2023-12-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 04:53:38', 1, '2023-12-20 05:03:57', 0, NULL, 1),
(15801, 'P.Arul stephen', '13', '9108872709', '9655271504', 'Stphnarul@gmail.com', '1997-07-05', 26, '6', '2', 'Pangu raj', 'Formar', 300000.00, 1, 0.00, 25.00, 'Pudukkottai', 'Maddavakkam', '2312200004', '', '1', 'upload_files/candidate_tracker/80882906183_DOC stephen -20231213-WA0000..pdf', NULL, '1', '2023-12-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 04:54:15', 1, '2023-12-20 05:04:32', 0, NULL, 1),
(15802, 'Mokesh.R', '2', '6382690375', '9444459619', 'mmokesh0@gmail.com', '2008-12-20', 0, '6', '2', 'S.ramadoss', 'Orientation insurance company', 350000.00, 1, 0.00, 200000.00, 'Chennai', 'Bangalore', '2312200005', '', '1', 'upload_files/candidate_tracker/86147867439_MOKESH.R-FlowCV-Resume-20231127 (2)-9.pdf', NULL, '1', '2023-12-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 04:55:42', 1, '2023-12-20 05:01:08', 0, NULL, 1),
(15803, 'K Gunal', '23', '7010685867', '7825979493', 'gunaltamil4400@gmail.com', '2000-05-25', 23, '3', '2', 'C.Krishnan', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Kanchipuram', 'Kanchipuram', '2312200006', '', '1', 'upload_files/candidate_tracker/32063863443_Gunal Krishnan.pdf', NULL, '1', '2023-12-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 05:07:04', 1, '2023-12-20 05:30:14', 0, NULL, 1),
(15804, 'Kiruba Roy A', '13', '9843765240', '', 'kirubaroy2802@gmail.com', '2001-02-28', 22, '3', '2', 'Arumugam V', 'National Textile corporation', 12000.00, 2, 0.00, 150000.00, 'KALAIYARK0VIL', 'KALAIYARK0VIL', '2312200007', '', '1', 'upload_files/candidate_tracker/84083435297_kiruba roy_resume.pdf', NULL, '1', '2023-12-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 05:14:01', 1, '2023-12-20 05:22:59', 0, NULL, 1),
(15805, 'Hari Haran.V.K', '11', '6385216558', '', 'hariharanind04@gmail.com', '2004-05-25', 19, '6', '2', 'kailainathan', 'civil engineer', 25000.00, 1, 6000.00, 20000.00, 'omt talkies palanganatham madurai', 'srm university kattankulathur', '2312200008', '', '2', 'upload_files/candidate_tracker/94760558339_resume Internship.pdf', NULL, '1', '2023-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 05:22:47', 1, '2023-12-20 05:35:21', 0, NULL, 1),
(15806, 'divya', '33', '8124695245', '', 'divyasaran0105@gmail.com', '2001-05-01', 22, '6', '2', 'saravanan', 'private company', 120000.00, 1, 20000.00, 20000.00, 'anna nagar', 'anna nagar', '2312200009', '', '2', 'upload_files/candidate_tracker/70587250845_Divya_compressed.pdf', NULL, '1', '2023-12-20', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 05:22:57', 1, '2023-12-20 06:02:46', 0, NULL, 1),
(15807, 'Karthick', '31', '9677384748', '', 'ckarthi2023@gmail.com', '1997-07-15', 26, '3', '2', 'Chelladurai v', 'Driver', 50000.00, 1, 7.00, 2.75, 'Velachery', 'Madurai', '2312200010', '', '2', 'upload_files/candidate_tracker/8845737233_Karthik Front End Developer.docx', NULL, '1', '2023-12-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 05:30:08', 1, '2023-12-20 05:35:11', 0, NULL, 1),
(15808, 'Ishak s', '11', '9790806318', '', 'Ishaksdhr@gmail.com', '1998-11-08', 25, '3', '2', 'Sukumar M', 'Business', 30000.00, 1, 20000.00, 27000.00, 'Old washermenpet', 'Old washermenpet', '2312200011', '', '2', 'upload_files/candidate_tracker/31547441261_s Ishak UPDATED RESUME (1)-1.pdf', NULL, '1', '2023-12-20', 0, '', '3', '59', '2023-12-22', 276000.00, '', '5', '1970-01-01', '1', 'Selected for HR profile in Staff Role', '6', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '8', 'Processed in consultant Role', '', '', '', NULL, NULL, NULL, 1, '2023-12-20 05:30:15', 60, '2023-12-26 06:41:42', 0, NULL, 1),
(15809, 'Santhoshkumar D', '13', '6379536065', '', 'Santhoshkumar8d@gmail.com', '2001-10-15', 22, '3', '2', 'Durai A', 'Farmer', 6000.00, 1, 0.00, 300000.00, 'Vandavasi', 'Velachery, Chennai', '2312200012', '', '1', 'upload_files/candidate_tracker/40433293135_SanthoshKumar D.pdf', NULL, '1', '2023-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 05:30:33', 1, '2023-12-20 05:49:45', 0, NULL, 1),
(15810, 'Nathan V', '13', '7845629201', '', 'nathandassv10@gmail.com', '2001-09-24', 22, '3', '2', 'Virushabadoss', 'Driver', 18000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2312200013', '', '1', 'upload_files/candidate_tracker/82641287440_Nathanresume1 (5).pdf', NULL, '1', '2023-12-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 05:30:40', 1, '2023-12-20 05:35:12', 0, NULL, 1),
(15811, 'Manojkumar N', '31', '7502316466', '8778790506', 'Namanoj1997@gmail.com', '1997-06-11', 26, '1', '2', 'Manimekalai', 'Domestic Engineer', 20000.00, 2, 0.00, 15000.00, 'Namakkal', 'Velachery', '2312200014', '', '1', 'upload_files/candidate_tracker/76273948122_Manoj Kumar N (2).pdf', NULL, '1', '2023-12-20', 0, 'Sathish', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 05:33:54', 1, '2023-12-20 05:38:09', 0, NULL, 1),
(15812, 'dhenesh sivasankaran', '13', '9962144036', '9940457026', 'sharveshdinesh81998@gmail.com', '2000-08-18', 23, '6', '2', 'sivasankaran', 'crane operator', 70000.00, 1, 240000.00, 240000.00, 'chennai', 'chennai', '2312200015', '', '2', 'upload_files/candidate_tracker/21170778870_Dhenesh Resume 2.pdf', NULL, '1', '2023-12-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 05:41:47', 1, '2023-12-20 05:45:44', 0, NULL, 1),
(15813, 'kamali', '5', '6369516832', '', 'muralikamali01@gmail.com', '2001-07-15', 22, '2', '2', 'murali', 'farmer', 40000.00, 3, 20000.00, 25000.00, 'thiruvallvur', 'tiruninravur', '2312200016', '1', '2', 'upload_files/candidate_tracker/55675730327_kamali.pdf', NULL, '1', '2023-12-20', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '2', 'she dont have direct calling or sales experience.  ', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1019', '0', NULL, NULL, NULL, 1, '2023-12-20 05:47:36', 1, '2023-12-20 06:19:48', 0, NULL, 1),
(15814, 'Ramya s', '33', '9361625723', '', 'Mayaramya292000@gmail.com', '2000-09-02', 23, '6', '2', 'Subramanian', 'Farmer', 20000.00, 1, 17000.00, 20000.00, 'Perambalur', 'Chennai', '2312200017', '', '2', 'upload_files/candidate_tracker/4753528631_Ramya Resume._compressed.pdf', NULL, '1', '2023-12-20', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 05:49:25', 1, '2023-12-20 07:07:33', 0, NULL, 1),
(15815, 'PRIYA MANICKAM', '11', '8870754517', '9042103886', 'Priyamanick2020@gmail.com', '1992-09-08', 31, '6', '1', 'Manickam', 'NRI', 75000.00, 0, 26000.00, 26000.00, '101/48 Ashok Nagar Chennai', '101/48 Ashok Nagar Chennai', '2312200018', '', '2', 'upload_files/candidate_tracker/63215622313_Scan 20 Dec 23 11·15·12_compressed.pdf', NULL, '1', '2023-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 05:56:49', 1, '2023-12-20 06:01:57', 0, NULL, 1),
(15816, 'R.ajmal hakkeem', '4', '9360550713', '', 'ajmalhakkeem.r@gmail.com', '2003-01-03', 20, '3', '2', 'Rahumathullah', 'Labour', 10000.00, 1, 0.00, 20000.00, 'Perambur', 'Perambur', '2312200019', '', '1', 'upload_files/candidate_tracker/57520377378_Ma Resume.pdf_20231107_121929_0000.pdf', NULL, '1', '2023-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 06:03:24', 1, '2023-12-20 06:32:22', 0, NULL, 1),
(15817, 'Raja M', '13', '7418204465', '', 'riththikraja@gmail.com', '2002-06-28', 21, '6', '2', 'Muthusamy T', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2312200020', '', '1', 'upload_files/candidate_tracker/76734067468_Resume(raja) .pdf', NULL, '1', '2023-12-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 06:13:42', 1, '2023-12-20 06:18:43', 0, NULL, 1),
(15818, 'Hariprasath B', '13', '9360522609', '', 'hariprasath3k1@gmail.com', '2001-11-06', 22, '6', '2', 'Balusamy P', 'Supervisor in Goldline textiles', 20000.00, 0, 0.00, 250000.00, 'Karur', 'Chennai', '2312200021', '', '1', 'upload_files/candidate_tracker/74858828184_Hariprasath.pdf', NULL, '1', '2023-12-20', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Not cleared apptitude', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 06:15:21', 1, '2023-12-20 06:19:12', 0, NULL, 1),
(15819, 'Sharmila P', '11', '9940637830', '', 'sharmilaphilip1622@gmail.com', '2002-05-16', 21, '6', '2', 'E. Palani', 'Carpenter', 20000.00, 3, 20000.00, 25000.00, 'Chennai', 'Chennai', '2312200022', '', '2', 'upload_files/candidate_tracker/9570061306_SHARMILA P - CV.pdf', NULL, '1', '2023-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 06:44:55', 1, '2023-12-20 06:47:12', 0, NULL, 1),
(15820, 'Merlin Christopher', '2', '9176762032', '', 'merlinchristopher196@gmail.com', '2000-10-19', 23, '6', '2', 'Arul Xavier', 'Farmer', 150000.00, 1, 150000.00, 250000.00, 'Chennai T.nagar', 'Chennai T nagar', '2312200023', '', '2', 'upload_files/candidate_tracker/11793245555_chris stteve smith.pdf', NULL, '1', '2023-12-20', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 06:48:33', 1, '2023-12-20 06:53:28', 0, NULL, 1),
(15821, 'Kamalesh Raghavendra M', '11', '9962160423', '9962160953', 'kamaleshraghav@gmail.com', '1998-06-24', 25, '6', '2', 'R.MANIVANNAN', 'Auto driver', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2312200024', '', '1', 'upload_files/candidate_tracker/67098266950_Kamaleshraghav-Resume-1.pdf', NULL, '1', '2023-12-20', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 06:52:07', 1, '2023-12-20 06:54:18', 0, NULL, 1),
(15822, 'Kamalesh Raghavendra M', '11', '9094142171', '9962160423', 'kamaleshraghav@gmail.com', '1998-06-24', 25, '6', '2', 'R.MANIVANNAN', 'Auto driver', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2312200025', '', '2', 'upload_files/candidate_tracker/88235630720_Kamaleshraghav-Resume-1.pdf', NULL, '1', '2023-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 07:04:06', 1, '2023-12-20 07:05:53', 0, NULL, 1),
(15823, 'Manikandan', '11', '8838770625', '', 'manisankar07.mk@gmail.com', '1999-12-07', 24, '3', '2', 'Sankar', 'Car Driver', 60000.00, 1, 230000.00, 300000.00, 'Chennai', 'Chennai', '2312200026', '', '2', 'upload_files/candidate_tracker/45290466949_Manikandan_1.2Years_Recruiter_Chennai.pdf', NULL, '1', '2023-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 07:58:23', 1, '2023-12-20 08:03:33', 0, NULL, 1),
(15824, 'Malaisamy', '13', '8300326766', '9363618186', 'Malaisamykv@gmail.com', '1996-04-17', 27, '6', '2', 'Krishnamoorthy', 'Labour', 25000.00, 1, 120000.00, 300000.00, 'Ariyalur', 'Chennai', '2312200027', '', '2', 'upload_files/candidate_tracker/58891790925_malaisamyK.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 08:22:59', 1, '2023-12-20 08:26:19', 0, NULL, 1),
(15825, 'Prabin R', '27', '8300646885', '9159294546', 'prabinraj8300@gmail.com', '1998-06-14', 25, '3', '2', 'Raj.V', 'Cooli', 15000.00, 0, 0.00, 15000.00, 'Perungulathur', 'Perungulathur', '2312200028', '', '1', 'upload_files/candidate_tracker/44584416074_PRABIN.pdf', NULL, '1', '2023-12-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 08:56:02', 1, '2023-12-20 08:59:12', 0, NULL, 1),
(15826, 'Ajith P', '27', '8300955827', '9159294546', 'ajithp5398@gmail.com', '1998-03-05', 25, '3', '2', 'Padma P', 'Nil', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2312200029', '', '1', 'upload_files/candidate_tracker/36271810636_AJITHP.pdf', NULL, '1', '2023-12-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 09:00:33', 1, '2023-12-20 09:03:32', 0, NULL, 1),
(15827, 'janani', '11', '7305987040', '', 'Kjanani855@gmail.com', '2003-07-31', 20, '6', '2', 'devi kesavan', 'qa analyst', 3000000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2312200030', '', '1', 'upload_files/candidate_tracker/54346974348_janani resume in_compressed.pdf', NULL, '1', '2023-12-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 09:04:04', 1, '2023-12-20 09:09:04', 0, NULL, 1),
(15828, 'Balaji TU', '11', '9042702998', '', 'BALAJITU5@GMAIL.COM', '1996-04-11', 27, '6', '2', 'UMAPATHI TD', 'Saree business', 30000.00, 1, 300000.00, 350000.00, 'Thanjavur', 'Chennai', '2312200031', '', '2', 'upload_files/candidate_tracker/22075180281_Resume%20Vishwa.pdf', NULL, '2', '2023-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-20 09:08:23', 1, '2023-12-20 09:44:29', 0, NULL, 1),
(15829, 'Shaik Imran', '4', '8099454901', '', 'sk.imran927@gmail.com', '1992-03-10', 31, '3', '1', 'Sk Maboobbasha', 'Farmer', 600000.00, 0, 25000.00, 27000.00, 'Nellore', 'Chennai', '2312200032', '', '2', 'upload_files/candidate_tracker/96053645490_shaik Imran resume 2023 (2).pdf', NULL, '1', '2023-12-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-20 12:43:24', 85, '2023-12-21 11:38:42', 0, NULL, 1),
(15830, 'Veermani', '4', '9944688209', '', 'saransaran54143@gmail.com', '2003-05-21', 20, '2', '2', 'Mahalingam', 'None', 50000.00, 1, 19800.00, 22000.00, 'Thanjavur', 'Thanjavur', '2312200033', '1', '2', 'upload_files/candidate_tracker/42207728612_My resume .pdf', NULL, '1', '2023-12-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is fit for sales , completed diploma , worked as a senior sales executive 1 year experience and worked as a sales officer in idfc first bank.. ready to join immediately and expected 15k above..have laptop..and ready to join immediately kindy check and confirm once', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-20 01:31:27', 108, '2023-12-23 03:15:59', 0, NULL, 1),
(15831, 'ASEEK', '6', '9176347003', '', 'ashikkirasool@gmail.com', '2001-05-22', 22, '2', '2', 'Shek Mohammed', 'Electrition', 12000.00, 1, 15000.00, 18000.00, 'Korukkupet', 'Korukkupet', '2312210001', '1', '2', 'upload_files/candidate_tracker/72960855797_aseek.pdf', NULL, '1', '2023-12-21', 1, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-21 03:05:42', 104, '2023-12-21 05:46:33', 0, NULL, 1),
(15832, 'Pravin K', '13', '9444813977', '9445142288', 'pravink3977@gmail.com', '2002-11-09', 21, '6', '2', 'R Kannan', 'Driver', 17000.00, 1, 0.00, 280000.00, 'Chennai', 'Chennai', '2312210002', '', '1', 'upload_files/candidate_tracker/21289866214_pravin Resume.pdf', NULL, '2', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 03:40:16', 1, '2023-12-21 03:46:28', 0, NULL, 1),
(15833, 'karthika', '13', '9159157475', '', 'skarthika7475@gmail.com', '2001-07-07', 22, '6', '2', 'sakthivel', 'farmer', 15000.00, 4, 0.00, 12000.00, 'pudukkottai', 'chennai', '2312210003', '', '1', 'upload_files/candidate_tracker/74030107600_Resume .pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 04:21:03', 1, '2023-12-21 04:27:09', 0, NULL, 1),
(15834, 'Nithinkumar', '13', '8825526747', '', 'nithinkumarnarayana0@gmail.com', '2003-02-03', 20, '6', '2', 'Narayana', 'Student', 10000.00, 1, 0.00, 2.50, 'peddabelagondapally', 'peddabelagondapally', '2312210004', '', '1', 'upload_files/candidate_tracker/63892265246_Nithinkumar_cv.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 04:21:30', 1, '2023-12-21 04:30:01', 0, NULL, 1),
(15835, 'Aravindraj A', '31', '6382981930', '9884340826', 'aravindmary03@gmail.com', '2002-03-30', 21, '6', '2', 'Aruldass', 'Former', 78000.00, 2, 0.00, 200000.00, 'Tindivanam', 'Chennai', '2312210005', '', '1', 'upload_files/candidate_tracker/75726231348_Aravindraj-resume_1.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 04:21:33', 1, '2023-12-21 04:26:06', 0, NULL, 1),
(15836, 'Avinash', '13', '7358528455', '', 'Aviavi6493@gmail.com', '2002-03-19', 21, '6', '2', 'Santhavadhanan K', 'Printing press', 160000.00, 1, 0.00, 150000.00, 'Chennai', 'Chennai', '2312210006', '', '1', 'upload_files/candidate_tracker/55096342998_FrontedResume.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 04:21:39', 1, '2023-12-21 04:27:52', 0, NULL, 1),
(15837, 'Nipunaa k', '13', '7200482010', '8939324205', 'knipunaa@gmail.com', '2001-10-20', 22, '6', '2', 'Kalyana sundaram N', 'ONGC,DGM', 80000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2312210007', '', '1', 'upload_files/candidate_tracker/3059232485_Nipunaa Resume1.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 04:21:39', 1, '2023-12-21 04:47:40', 0, NULL, 1),
(15838, 'Sathish', '23', '7695920668', '6374574485', 'Sathishsathishk29@gmail.com', '2002-04-29', 21, '2', '2', 'Kasilingam', 'Carpenter', 30000.00, 1, 0.00, 25000.00, '140/130 Raja street padi', 'Padi', '2312210008', '1', '1', 'upload_files/candidate_tracker/19325799897_ui ux resume edit.pdf', NULL, '1', '2023-12-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', NULL, NULL, NULL, 1, '2023-12-21 04:25:34', 1, '2023-12-21 04:46:44', 0, NULL, 1),
(15839, 'Akash', '23', '6379123356', '8508491789', 'akashtamiluiux30@gmail.com', '2003-06-30', 20, '3', '2', 'Tamilmani', 'Mason', 24000.00, 2, 0.00, 18000.00, 'Ariyalur', 'Chennai', '2312210009', '', '1', 'upload_files/candidate_tracker/50360730334_Akash Ui Ux Btree Systems.pdf', NULL, '1', '2024-12-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', NULL, NULL, NULL, 1, '2023-12-21 04:32:32', 1, '2023-12-21 04:46:48', 0, NULL, 1),
(15840, 'Jeeva', '23', '8778266197', '6384364900', 'jeevaselvam724@gmail.com', '2002-11-06', 21, '2', '2', 'Selvam', 'Former', 40000.00, 1, 0.00, 18000.00, 'Ariyalur', 'Chennai', '2312210010', '1', '1', 'upload_files/candidate_tracker/67623878492_Jeeva UI UX Designer Resume (1)_044247.pdf', NULL, '1', '2023-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', NULL, NULL, NULL, 1, '2023-12-21 04:32:44', 1, '2023-12-21 04:49:09', 0, NULL, 1),
(15841, 'Akhil S', '23', '8675796442', '6381909937', 'akhildhas13@gmail.com', '1999-01-13', 24, '3', '2', 'Sundara dhas R', 'LIC Agent', 25000.00, 1, 0.00, 17000.00, 'Ariyalur', 'Chennai - Thiruvanmiyur', '2312210011', '', '1', 'upload_files/candidate_tracker/95021717789_AKHIL UIUX Btree Systems.pdf', NULL, '1', '2023-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', NULL, NULL, NULL, 1, '2023-12-21 04:33:18', 1, '2023-12-21 04:45:36', 0, NULL, 1),
(15842, 'M.Mugundhan', '23', '8778530200', '9003766103', 'mugundhanuxui@gmail.com', '2001-05-01', 22, '3', '2', 'G.Murugan', 'Driver', 150000.00, 1, 0.00, 18000.00, 'Theni', 'Chennai', '2312210012', '', '1', 'upload_files/candidate_tracker/59334526541_Mugundhan Resume .pdf', NULL, '1', '2023-12-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', NULL, NULL, NULL, 1, '2023-12-21 04:33:53', 1, '2023-12-21 04:46:30', 0, NULL, 1),
(15843, 'Naveen PV', '23', '6384364900', '7010442784', 'naveenuiux03@gmai.com', '2003-03-15', 20, '2', '2', 'D.Varadharajan', 'Farmer', 300000.00, 2, 0.00, 18000.00, 'Thanjavur', 'Chennai', '2312210013', '1', '1', 'upload_files/candidate_tracker/13181996925_Naveen Resume.pdf', NULL, '1', '2023-12-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', NULL, NULL, NULL, 1, '2023-12-21 04:34:35', 1, '2023-12-21 04:46:20', 0, NULL, 1),
(15844, 'pavithra', '13', '9150385944', '', 'pavithraraj2113@gmail.com', '1997-12-02', 26, '3', '1', 'sunil kumar', 'entreprenuer', 30000.00, 0, 0.00, 1.50, 'no', 'arumbakkam', '2312210014', '', '2', 'upload_files/candidate_tracker/95979031958_PAVITHRA_RAJENDRAN_RESUME.docx', NULL, '1', '2023-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 05:03:28', 1, '2023-12-21 05:36:22', 0, NULL, 1),
(15845, 'ELAVARASAN L', '13', '9443138016', '', 'elavarasan2002ep@gmail.com', '2002-12-31', 20, '6', '2', 'LAKSHMANAN', 'Driver', 10000.00, 1, 0.00, 250000.00, 'Salem', 'Chennai', '2312210015', '', '1', 'upload_files/candidate_tracker/61788996326_elavarasan (2)-1.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 05:16:24', 1, '2023-12-21 05:21:03', 0, NULL, 1),
(15846, 'Mohammed Shadik', '6', '6383742417', '', 'jackmdshadik@gmail.com', '2001-06-09', 22, '2', '2', 'ameen basha', 'auto', 10000.00, 1, 15500.00, 18000.00, 'Korukkupet', 'korukkupet', '2312210016', '1', '2', 'upload_files/candidate_tracker/69755333452_Shadik resume.pdf', NULL, '1', '2023-12-21', 1, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-21 05:17:37', 85, '2023-12-21 04:24:34', 0, NULL, 1),
(15847, 'Mohana Priya', '23', '7904880837', '', 'priyaanand1407@gmail.com', '2001-12-07', 22, '3', '2', 'Anandan', 'Tailor', 20000.00, 1, 0.00, 3.00, 'Old Washermenpet', 'Old Washermenpet', '2312210017', '', '1', 'upload_files/candidate_tracker/65060945530_Mohana Priya Resume.pdf', NULL, '1', '2023-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 05:17:55', 1, '2023-12-21 05:22:25', 0, NULL, 1),
(15848, 'S Babu Ganesh', '13', '8610909071', '', 'babug3223@gmail.com', '1999-07-19', 24, '3', '2', 'M.Saravana Kumar', 'Farmer', 20000.00, 0, 0.00, 15000.00, 'Dindigul', 'Dindigul', '2312210018', '', '1', 'upload_files/candidate_tracker/68195756810_BABU GANESH RESUME.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 05:19:41', 1, '2023-12-21 05:27:38', 0, NULL, 1),
(15849, 'DINESH S', '31', '7397442240', '7871369707', 'dineshs280402@gmail.com', '2002-04-28', 21, '6', '2', 'sivakumar', 'driver', 20000.00, 2, 0.00, 25000.00, 'chennai', 'chennai', '2312210019', '', '1', 'upload_files/candidate_tracker/21420881072_Resume.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 05:20:46', 1, '2023-12-21 05:26:40', 0, NULL, 1),
(15850, 'Akash', '31', '8610253866', '', 'akash.off.03@gmail.com', '2002-11-03', 21, '6', '2', 'Veeramuthu', 'Driver', 13000.00, 1, 0.00, 20000.00, 'Chennai', 'Iyyapnathangal', '2312210020', '', '1', 'upload_files/candidate_tracker/29769141867_AkashResume.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 05:20:48', 1, '2023-12-21 05:25:16', 0, NULL, 1),
(15851, 'Parthipan', '13', '8344062515', '7826035820', 'Parthipan2001m@gmail.com', '2001-09-23', 22, '3', '2', 'Murugapandi', 'Delivery man', 15000.00, 1, 0.00, 300000.00, 'Dindigul', 'Dindigul', '2312210021', '', '1', 'upload_files/candidate_tracker/15741718284_Parthipan_M_Fresher_CV.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 05:22:23', 1, '2023-12-21 05:39:28', 0, NULL, 1),
(15852, 'HEMASHREE', '13', '7826035820', '9384243809', 'Hemahema0325@gmail.com', '2003-08-25', 20, '3', '2', 'Rajika.M', 'Typist', 750000.00, 1, 0.00, 300000.00, 'Palani', 'Dindugal', '2312210022', '', '1', 'upload_files/candidate_tracker/11837008987_Hemashree_M_CV..pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 05:22:30', 1, '2023-12-21 05:27:48', 0, NULL, 1),
(15853, 'Nithishkumar N', '13', '9791852136', '', 'nithishn1005@gmail.com', '1998-05-10', 25, '3', '2', 'Nachiyappan N', 'Former', 4000.00, 0, 0.00, 15000.00, 'Paramakudi', 'Chennai', '2312210023', '', '1', 'upload_files/candidate_tracker/97620488467_NithishKumarResume(2024).pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 06:06:05', 1, '2023-12-21 06:15:04', 0, NULL, 1),
(15854, 'K.P.Kishore', '13', '6374815036', '', 'kishorekp805@gmail.com', '1999-12-13', 24, '3', '2', 'E.Kothandam', 'Farmer', 10000.00, 1, 0.00, 25000.00, 'Tiruttani', 'Velachery', '2312210024', '', '1', 'upload_files/candidate_tracker/55503320607_KISHOEREFULLSTACKRESUME.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 06:06:16', 1, '2023-12-21 06:21:10', 0, NULL, 1),
(15855, 'Nanthini M', '14', '8825619871', '9095914543', 'mnanthini228@gmail.com', '1998-08-22', 25, '6', '2', 'Madhavan', 'Business', 50000.00, 2, 200000.00, 250000.00, 'Dindigul', 'Chennai', '2312210025', '', '2', 'upload_files/candidate_tracker/2195144205_Nanthini_1_Plus_Flutter_Dev_Resume.pdf', NULL, '1', '2023-12-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles Will Not Sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 06:22:46', 1, '2023-12-21 06:26:52', 0, NULL, 1),
(15856, 'ARIVUKKARASI', '13', '9952279285', '', 'arivukkarasi3902@gmail.com', '2002-09-03', 21, '6', '2', 'Vijayasamundeeswari', 'House wife', 15000.00, 2, 0.00, 20000.00, 'Kallakurichi', 'Kallakurichi', '2312210026', '', '1', 'upload_files/candidate_tracker/80968155201_Arivu_resume.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 06:46:27', 1, '2023-12-21 06:51:35', 0, NULL, 1),
(15857, 'Krishnaprasath L', '13', '8124145802', '9171837002', 'krishna8124145802@gmail.com', '2001-03-03', 22, '6', '2', 'Lingaraj', 'Business', 50000.00, 0, 0.00, 240000.00, 'Chennai', 'Chennai', '2312210027', '', '1', 'upload_files/candidate_tracker/3859448144_Resume Krishna be.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 06:49:22', 1, '2023-12-21 06:55:11', 0, NULL, 1),
(15858, 'Rahul Krishna S', '13', '7483352745', '', 'Rahulkrishna12345@gmail.com', '1998-03-25', 25, '6', '2', 'R Sankar', 'Student', 50000.00, 1, 0.00, 25000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2312210028', '', '1', 'upload_files/candidate_tracker/72844115445_Rahul Krishna IT RESUME.pdf', NULL, '1', '2023-12-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 07:54:56', 1, '2023-12-21 08:05:23', 0, NULL, 1),
(15859, '', '0', '6380500417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312210029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-21 08:56:53', 0, NULL, 0, NULL, 1),
(15860, 'Davis Panna', '11', '7898840611', '9131865642', 'davis.panna@gmail.com', '1996-08-30', 27, '3', '2', 'Alexander Panna', 'HR', 120000.00, 1, 300000.00, 450000.00, 'Chennai', 'Chennai', '2312210030', '', '2', 'upload_files/candidate_tracker/9500604975_DAVISPANNARESUME.pdf', NULL, '1', '2023-12-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'no tamil .. from raipur... long run doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-21 10:22:39', 1, '2023-12-21 10:28:59', 0, NULL, 1),
(15861, '', '0', '9655973752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312210031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-21 02:02:36', 0, NULL, 0, NULL, 1),
(15862, 'nandhini', '4', '7548859829', '9952880637', 'nanthiniuph@gmail.com', '2001-07-30', 22, '2', '2', 'N.Thangakamatchi', 'Driver', 15000.00, 1, 14200.00, 14500.00, 'Keelavasal,Thanjavur', 'Keelavasal,Thanjavur', '2312210032', '1', '2', 'upload_files/candidate_tracker/78219333099_T. Nanthini (1).pdf', NULL, '1', '2023-12-22', 1, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-21 02:26:41', 108, '2023-12-22 05:10:16', 0, NULL, 1),
(15863, 'Tamilarasan R', '2', '9597423332', '', 'vigytamilarasan@gmail.com', '1994-10-07', 29, '6', '2', 'Ravi.S', 'TNEB - Line inspector', 70000.00, 1, 0.00, 15000.00, 'ERODE', 'ERODE', '2312220001', '', '1', 'upload_files/candidate_tracker/32066514449_Tamilarasan.R (1) (1).docx', NULL, '1', '2023-12-22', 0, '', '3', '59', '2023-12-27', 120000.00, '', '5', '1970-01-01', '2', '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-22 03:35:21', 60, '2023-12-27 07:48:52', 0, NULL, 1),
(15864, 'K swarnarubini', '4', '9790748891', '9500875268', 'Swarnarubinisk@gmail.com', '1996-09-10', 27, '2', '2', 'K shanthi', 'House wife', 15000.00, 1, 14000.00, 16000.00, 'Saliyamangalam', 'Thiruvaiyaru', '2312220002', '1', '2', 'upload_files/candidate_tracker/36218588055_my resume new.pdf', NULL, '1', '2023-12-22', 0, '', '3', '59', '2023-12-27', 192000.00, '', NULL, '2024-12-02', '2', 'Selected for Sithy team in Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-22 03:59:15', 60, '2023-12-27 10:11:17', 0, NULL, 1),
(15865, 'VijayaKumar M', '13', '8610913272', '', 'mv1627401@gmail.com', '2000-04-16', 23, '6', '2', 'Muthusamy', 'Farmar', 20000.00, 1, 0.00, 120000.00, 'Perambalur', 'Chennai', '2312220003', '', '1', 'upload_files/candidate_tracker/9450786546_VIJAY KUMAR.pdf', NULL, '1', '2023-12-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 04:03:44', 1, '2023-12-22 04:07:23', 0, NULL, 1),
(15866, 'Kameshvaran J', '11', '9360020752', '8489875486', 'johnkalep007@gmail.com', '2000-12-29', 22, '6', '2', 'John chakravarthy', 'Real-estate agent', 17000.00, 1, 0.00, 300000.00, 'Oragadam', 'Oragadam', '2312220004', '', '1', 'upload_files/candidate_tracker/78235123443_KAMESHVARAN J (3).pdf', NULL, '1', '2023-12-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 04:04:40', 1, '2023-12-22 04:09:02', 0, NULL, 1),
(15867, 'Naresh Kumar', '11', '8778598960', '9791344195', 'NARESHGUNA05@GMAIL.COM', '2000-09-04', 23, '6', '2', 'Guna sekaran', 'Weaver', 7000.00, 1, 0.00, 15000.00, 'Arcot', 'Arcot', '2312220005', '', '1', 'upload_files/candidate_tracker/41582026751_Updated Naresh Kumar-Resume-MBA(HR) (2).pdf', NULL, '1', '2023-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 04:17:09', 1, '2023-12-22 04:51:08', 0, NULL, 1),
(15868, 'Magesh kumar N', '13', '6379926837', '', 'magesh208090@gmail.com', '2002-08-09', 21, '6', '2', 'Nithiyanandam. S', 'MTC', 450000.00, 1, 0.00, 240000.00, 'Chennai', 'Chennai', '2312220006', '', '1', 'upload_files/candidate_tracker/76583901985_MAGESH_KUMAR_RESUME.pdf', NULL, '1', '2023-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 04:29:58', 1, '2023-12-22 04:33:22', 0, NULL, 1),
(15869, 'Beniyel Josva', '13', '7639761719', '', 'kingsonjosva@gmail.com', '2002-04-26', 21, '3', '2', 'Yesudasan Raja', 'Lecturer', 30000.00, 1, 0.00, 12000.00, 'Tenkasi', 'Chennai', '2312220007', '', '1', 'upload_files/candidate_tracker/80205648208_Full stack developer cv.pdf', NULL, '1', '2023-12-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 04:33:55', 1, '2023-12-22 04:37:44', 0, NULL, 1),
(15870, 'R.NaveenRaj', '13', '9791419049', '8056800687', 'naveenrajragupathi05@gmail.com', '2002-05-27', 21, '3', '2', 'C.Ragupathi', 'Farmer', 20000.00, 3, 0.00, 12000.00, 'Vellinipatti,Manapacherri(po),Melur(Tk),Madurai', 'Aminjikarai-chennai', '2312220008', '', '1', 'upload_files/candidate_tracker/36415987957_DOC-20230925-WA0002..pdf', NULL, '1', '2023-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 04:33:58', 1, '2023-12-22 04:38:35', 0, NULL, 1),
(15871, 'Jeeva K', '13', '9962702228', '9962670212', 'jeevakarunagaran03@gmail.com', '2000-11-03', 23, '6', '2', 'Karunagaran S', 'Coolie', 15000.00, 2, 0.00, 18000.00, 'Vellore', 'Perungudi', '2312220009', '', '1', 'upload_files/candidate_tracker/64301572233_Resume .pdf', NULL, '1', '2023-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 04:34:23', 1, '2023-12-22 04:39:03', 0, NULL, 1),
(15872, 'Manoj Kumar S', '14', '8870583101', '', 'Mkleksha1024@gmail.com', '2002-08-10', 21, '6', '2', 'Saravanan', 'Gold Smith', 7000.00, 0, 0.00, 25000.00, 'Karaikudi', 'Chennai', '2312220010', '', '1', 'upload_files/candidate_tracker/85461190398_MANOJ KUMAR. s_20231102_180007_0000.pdf', NULL, '1', '2023-12-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 05:12:02', 1, '2023-12-22 05:25:56', 0, NULL, 1),
(15873, 'Ragothaman. R', '31', '9344146653', '', 'ragothamanraja786@gmail.com', '2002-12-01', 21, '6', '2', 'Rajakkannu', 'FARMER', 15000.00, 1, 0.00, 20000.00, 'Tiruvannamalai', 'Maraimalai nagar', '2312220011', '', '1', 'upload_files/candidate_tracker/47537893997_Ragothaman R.pdf', NULL, '1', '2023-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 05:24:40', 1, '2023-12-22 05:33:08', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15874, 'Thiruvalar selvi M', '13', '9361229846', '', 'selvibsc4200@gmail.com', '1998-06-12', 25, '3', '2', 'Madasamy', 'Former', 180000.00, 2, 0.00, 200000.00, 'Tenkasi', 'Tenkasi', '2312220012', '', '1', 'upload_files/candidate_tracker/68579948732_selvi 2023-1.PDF', NULL, '1', '2023-12-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 06:15:09', 1, '2023-12-22 06:18:42', 0, NULL, 1),
(15875, 'Marlin Sandhiya D', '6', '7338768708', '9176273423', 'marlinsandhiya@gmail.com', '2002-11-27', 21, '3', '1', 'Manoj Kumar', 'Electrician', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2312220013', '', '1', 'upload_files/candidate_tracker/13507321228_Marlin Sandhiya. D Resume-1.pdf', NULL, '1', '2023-12-22', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 06:34:52', 1, '2023-12-22 06:39:00', 0, NULL, 1),
(15876, 'Pandiyan', '31', '8838202808', '', 'Thilakpandiyan25@gmail.com', '2008-12-22', 0, '6', '2', 'Anbu P', 'Tailor', 15000.00, 2, 0.00, 200000.00, 'Cheyyar', 'Chennai', '2312220014', '', '1', 'upload_files/candidate_tracker/2284644182_Pandiyan CV(1).pdf', NULL, '1', '2023-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 06:42:55', 1, '2023-12-22 06:47:17', 0, NULL, 1),
(15877, 'HARISH MURUGAN', '13', '9150453787', '9514487747', 'jaiharikumar8797@gmail.com', '2001-02-07', 24, '3', '2', 'MURUGAN', 'Tailor', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2312220015', '', '1', 'upload_files/candidate_tracker/63351967531_HarishMDataAnalyst.pdf', NULL, '1', '2026-02-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 07:26:15', 1, '2026-02-02 04:53:41', 0, NULL, 1),
(15878, 'Rahul.B', '13', '9941906821', '', 'Rahul.31303@gmail.com', '1997-10-03', 26, '3', '2', 'Balaji', 'Fresher', 15000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2312220016', '', '1', 'upload_files/candidate_tracker/25434347654_CV_Rahul_B.pdf', NULL, '1', '2023-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-22 10:38:38', 1, '2023-12-22 10:42:09', 0, NULL, 1),
(15879, 'Venkatesh.M', '6', '8778978883', '9486371678', 'venkateshmanickkam47@gmail.com', '1999-09-28', 0, '2', '2', 'Rajeshwari', 'Housewife', 20000.00, 1, 20.00, 25000.00, 'Thiruvallur', 'Thiruvallur', '2312220017', '1', '2', 'upload_files/candidate_tracker/53416552955_resume venkatesh (2).docx', NULL, '1', '2023-12-23', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-22 02:09:27', 108, '2023-12-23 05:22:32', 0, NULL, 1),
(15880, 'Sara', '5', '8072810947', '9655794301', 'sarasaraswathi50@gmail.com', '2001-03-27', 22, '2', '2', 'Saraswathi', 'House wife', 25000.00, 1, 20000.00, 27000.00, 'Kolathur', 'Kolathur', '2312220018', '1', '2', 'upload_files/candidate_tracker/72916762170_SARA RESUME.PDF.pdf', NULL, '1', '2023-12-23', 30, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-22 03:32:39', 108, '2023-12-23 12:54:46', 0, NULL, 1),
(15881, 'Balasuriya', '31', '8807103248', '', 'balasurya.jayakumar@gmail.com', '1998-03-19', 25, '3', '2', 'Jayakumar', 'Tailor', 25000.00, 1, 0.00, 30000.00, 'Thiruvarur', 'Chennai', '2312230001', '', '1', 'upload_files/candidate_tracker/27524408830_resume webdev.pdf', NULL, '1', '2023-12-23', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 03:49:41', 1, '2023-12-23 04:00:09', 0, NULL, 1),
(15882, 'Mohammed yaseen', '13', '9344473547', '9842707839', 'mohammedyaseen89468@gmail.com', '2002-03-17', 21, '6', '2', 'Sirajudeen', 'Auto driver', 72000.00, 1, 15000.00, 20000.00, 'MettupalayamCoimbatore', 'Mettupalayam, Coimbatore', '2312230002', '', '2', 'upload_files/candidate_tracker/16685440978_Resume .pdf', NULL, '1', '2023-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 04:32:09', 1, '2023-12-23 04:37:54', 0, NULL, 1),
(15883, 'Pradheesh', '14', '8825807736', '', 'pradeesh058@gmail.com', '2001-11-19', 22, '6', '2', 'Perumal.B', 'A/C Mechanic', 30000.00, 1, 0.00, 2.50, 'Kanyakumari district, Nagercoil', 'Chennai', '2312230003', '', '1', 'upload_files/candidate_tracker/31116942310_pradheesh_Resume-1.pdf', NULL, '1', '2023-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 04:34:50', 1, '2023-12-23 04:42:51', 0, NULL, 1),
(15884, 'Vignesh G S', '2', '8838962187', '', 'vigneshgs271096@gmail.com', '1996-10-27', 27, '3', '2', 'Guna sekaran. E', 'Auto driver', 1200000.00, 1, 300000.00, 600000.00, 'Chennai', 'Chennai', '2312230004', '', '2', 'upload_files/candidate_tracker/36237061174_Vignesh\'s Resume-3.pdf', NULL, '1', '2023-12-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 04:36:11', 1, '2023-12-23 04:45:54', 0, NULL, 1),
(15885, 'Soundarya VS', '11', '9791025077', '9840801277', 'vssoundarya21@gmail.com', '2000-05-21', 23, '6', '2', 'Sankar GK', 'Retried DGM', 65000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2312230005', '', '1', 'upload_files/candidate_tracker/1276363624_S0UNDARYA VS (3).pdf', NULL, '1', '2023-12-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 04:41:12', 1, '2023-12-23 04:44:07', 0, NULL, 1),
(15886, 'Shunmuga Sundaram', '13', '9384257336', '', 'shunmugasundaram658@gmail.com', '2001-09-30', 22, '6', '2', 'Kasi Viwanathan', 'Fresher', 200000.00, 1, 0.00, 400000.00, 'Tirunelveli', 'Chennai', '2312230006', '', '1', 'upload_files/candidate_tracker/81344230671_Resume (1).pdf', NULL, '1', '2023-12-23', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 04:41:40', 1, '2023-12-23 04:44:35', 0, NULL, 1),
(15887, 'Keerthana', '4', '7868011479', '', 'ajithkeethiajithkeerthi05@gmail.com', '1997-01-18', 26, '2', '2', 'Ajithkumar', 'Workshop', 10000.00, 2, 18500.00, 15000.00, 'Orathanadu', 'Oratahnadu', '2312230007', '1', '2', 'upload_files/candidate_tracker/42703561511_IMG-20231223-WA0000.pdf', NULL, '1', '2023-12-23', 20, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-23 04:44:37', 108, '2023-12-28 10:00:04', 0, NULL, 1),
(15888, 'Rakesh', '11', '8190962338', '9003127582', 'rakeshsparkers24@gmail.com', '2000-11-24', 23, '1', '2', 'Sathyanarayanan', 'Security Guard', 30000.00, 1, 15000.00, 20000.00, 'Ayanavaram', 'Ayanavaram', '2312230008', '', '2', 'upload_files/candidate_tracker/97779373099_RAKESH.pdf', NULL, '1', '2023-12-23', 15, 'Sathish', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 04:52:16', 1, '2023-12-23 04:56:22', 0, NULL, 1),
(15889, 'Naveen G', '2', '8610181440', '', 'naveeng2402@gmail.com', '2003-02-24', 20, '6', '2', 'Gopinath V', 'Medical Salesman', 15000.00, 0, 0.00, 60000.00, 'Chennai', 'Chennai', '2312230009', '', '1', 'upload_files/candidate_tracker/88270406530_naveeng2402-2.pdf', NULL, '1', '2023-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 04:54:59', 1, '2023-12-23 05:03:57', 0, NULL, 1),
(15890, 'KAILASANATHAN', '31', '8778630540', '9384115804', 'kailasanathan@0911gmail.com', '2000-11-09', 23, '6', '2', 'ESAKKIAMMAL G', 'Home wife', 20000.00, 1, 0.00, 17000.00, 'RAJA NAGAR 3RD STREET MELAPALAYAM TIRUNELVELI', 'Chennai', '2312230010', '', '1', 'upload_files/candidate_tracker/33970389105_Kailasanathan-2.pdf', NULL, '1', '2023-12-23', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 05:10:45', 1, '2023-12-23 05:14:44', 0, NULL, 1),
(15891, 'Ranjitha', '14', '8838119533', '', 'ranjithaarunagiri21@gmail.com', '2000-04-15', 23, '6', '2', 'Arunagiri', 'Flutter developer', 30000.00, 2, 250000.00, 500000.00, 'Thiruvannamalai', 'Chennai', '2312230011', '', '2', 'upload_files/candidate_tracker/21172048003_1Ranjitha_resume.pdf', NULL, '1', '2023-12-23', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 05:35:31', 1, '2023-12-23 05:40:38', 0, NULL, 1),
(15892, 'Vignesh Raja M', '11', '8248177792', '', 'mvraja347@gmail.com', '1997-09-28', 26, '3', '2', 'Mohana Krishnan G', 'Clerk', 8000.00, 0, 0.00, 5000.00, 'Chennai', 'Chennai', '2312230012', '', '1', 'upload_files/candidate_tracker/16195176871_225111123- Vignesh Raja M.pdf', NULL, '1', '2023-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 06:26:10', 1, '2023-12-23 06:34:15', 0, NULL, 1),
(15893, 'Hari', '23', '9025462544', '', 'haridraw42@gmail.com', '1999-11-14', 24, '6', '2', 'Selvi', 'Housewife', 25000.00, 2, 0.00, 320000.00, 'Chennai', 'Chennai', '2312230013', '', '1', 'upload_files/candidate_tracker/64417519960_Hari-Resume.pdf', NULL, '1', '2023-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 07:01:01', 1, '2023-12-23 07:12:12', 0, NULL, 1),
(15894, '', '0', '9551645339', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312230014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-23 09:36:59', 0, NULL, 0, NULL, 1),
(15895, 'Bhavani.V', '11', '9444300803', '9444703008', 'bhavanivenkar412@gmail.com', '2001-08-29', 22, '3', '2', 'Venkatesan. K', 'Student', 60000.00, 1, 0.00, 5000.00, '18 Shanmuga Raja,Ekkaduthangal,Chennai-32', 'Chennai', '2312230015', '', '1', 'upload_files/candidate_tracker/27210819499_SIST-MBA-42410081-Bhavani.pdf', NULL, '1', '2023-12-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 09:54:09', 1, '2023-12-23 10:15:34', 0, NULL, 1),
(15896, 'Surenthar kb', '11', '9551545339', '9841115339', 'kbsurenthar1011@gmail.com', '2000-11-10', 0, '6', '2', 'Balachandran', 'Construction', 50000.00, 1, 0.00, 15000.00, 'Thoraipakkam', 'Thoraipakkam', '2312230016', '', '1', 'upload_files/candidate_tracker/35952748155_DOC-20231204-WA0003..pdf', NULL, '1', '2023-12-23', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '6', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-23 09:56:14', 1, '2023-12-23 10:00:07', 0, NULL, 1),
(15897, 'Bharath V', '31', '8300660731', '', 'bharathbharani1998@gmail.com', '1998-05-16', 25, '3', '2', 'Rama', 'Home maker', 20000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2312240001', '', '1', 'upload_files/candidate_tracker/94660562835_VEL_V.Bharath_2020_FULL STACK PYTHON-resume.pdf', NULL, '1', '2023-12-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-24 04:14:21', 104, '2023-12-24 02:52:40', 0, NULL, 1),
(15898, 'VINOTHKUMAR', '31', '6374028583', '', 'vinothkumar10073@gmail.com', '2002-08-28', 21, '3', '2', 'ESSAKIMUTHU', 'Mechanical work', 80000.00, 1, 0.00, 3.00, '45/2a/1 North Puthugramam, kovilpatti', 'Velachery, Chennai', '2312240002', '', '1', 'upload_files/candidate_tracker/62145522543_Vinoth__Resume___20231222_130402_0000.pdf', NULL, '1', '2023-12-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 04:23:03', 1, '2023-12-24 04:32:26', 0, NULL, 1),
(15899, 'Sathish Kumar K', '31', '9489114749', '', 'sathis7297sk@gmail.com', '2002-03-03', 21, '3', '2', 'Kasi s', 'Farmer', 8000.00, 1, 0.00, 3.00, 'Tenkasi', 'Chennai', '2312240003', '', '1', 'upload_files/candidate_tracker/30185640878_VEL_Sathish Kumar K_2023_B.E(Mechanical)_Front end developer.pdf', NULL, '1', '2023-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 04:23:13', 1, '2023-12-24 04:37:16', 0, NULL, 1),
(15900, 'Santhosh J', '31', '9360683134', '', 'jaisanthosh0007@gmail.com', '2001-06-03', 22, '3', '2', 'Jayavel', 'Former', 15000.00, 1, 0.00, 12000.00, 'Dharmapuri', 'Velachery, Chennai', '2312240004', '', '1', 'upload_files/candidate_tracker/44811348401_Santhosh.j Frontend developer.pdf', NULL, '1', '2023-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 04:23:22', 1, '2023-12-24 04:29:11', 0, NULL, 1),
(15901, 'Arokiya jeyaprakash.A', '31', '6379175831', '', 'aarokiyajeyaprakash@gmail.com', '2001-11-02', 22, '3', '2', 'Alphones.X', 'Daily wages', 8000.00, 1, 0.00, 3.00, 'Kovilpatti,Thoothukudi district.', 'Velachery,Chennai.', '2312240005', '', '1', 'upload_files/candidate_tracker/44328314217_VelBesanttechnologies_Arokiya_2023_B.E(ECE)_Frontend.pdf', NULL, '1', '2023-12-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 04:23:25', 1, '2023-12-24 04:35:58', 0, NULL, 1),
(15902, 'Nijanthan V', '13', '6379600493', '9994467562', 'nijanthanvp@gmail.com', '2001-07-02', 22, '6', '2', 'Veeramani K', 'Retired Lab Assistant', 25000.00, 1, 0.00, 250000.00, 'Chidambaram', 'Chennai', '2312240006', '', '1', 'upload_files/candidate_tracker/98284709986_Nijanthan_Resume.pdf', NULL, '1', '2023-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 04:23:33', 1, '2023-12-24 04:38:16', 0, NULL, 1),
(15903, 'Ajaykumar.k', '31', '8248319753', '', 'ajaykumar.k3010@gmail.com', '2000-10-30', 23, '3', '2', 'Kumar.u', 'Tamil Nadu transport', 200000.00, 1, 0.00, 180000.00, 'Thanjavur', 'Chennai', '2312240007', '', '1', 'upload_files/candidate_tracker/97227520152_AJAYKUMAR.RESUME.pdf (1).pdf', NULL, '1', '2023-12-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 04:24:13', 1, '2023-12-24 04:36:59', 0, NULL, 1),
(15904, 'jayaraman', '31', '9514780820', '', 'jaisidharth97@gmail.com', '1997-06-23', 26, '3', '2', 'sitharthan', 'lawer', 80000.00, 2, 0.00, 15000.00, 'washermenpet', 'Washermenpet', '2312240008', '', '1', 'upload_files/candidate_tracker/30728932542_Jayaramnewresume.pdf', NULL, '1', '2023-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 04:42:32', 1, '2023-12-24 06:25:04', 0, NULL, 1),
(15905, 'Adam Jil Christy', '13', '7094797435', '', 'adamjilchristy@gmail.com', '2000-09-21', 23, '6', '2', 'Michael Samy', 'Former', 72000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2312240009', '', '1', 'upload_files/candidate_tracker/43406332845_Adamresume-6.pdf', NULL, '1', '2023-12-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 05:35:43', 1, '2023-12-24 05:40:08', 0, NULL, 1),
(15906, 'Lokesh P', '13', '7708070460', '', 'lokesh95karthi@gmail.com', '2001-12-26', 21, '3', '2', 'Pandi V', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2312240010', '', '1', 'upload_files/candidate_tracker/87126376429_Lokesh_P_SoftwareDeveloper.pdf', NULL, '1', '2023-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 05:35:54', 1, '2023-12-24 05:40:07', 0, NULL, 1),
(15907, 'Sanjay Raja R', '31', '7868033939', '', 'sanjayraja378@gmail.com', '2001-01-27', 22, '3', '2', 'Ravi p', 'Cooli', 20000.00, 1, 0.00, 20000.00, 'Sivakasi', 'Chennai', '2312240011', '', '1', 'upload_files/candidate_tracker/70790957282_VEL_Sanjay Raja_BE(Mech)_2021_FrontEnd.pdf', NULL, '1', '2023-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 05:35:54', 1, '2023-12-24 05:39:38', 0, NULL, 1),
(15908, 'Mohamed abubakker sidthik', '13', '9003843494', '', 'sidthikabu18@gmail.com', '2001-03-18', 22, '6', '2', 'Mohamed ali', 'Business', 20000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Channai', '2312240012', '', '1', 'upload_files/candidate_tracker/87448167326_siddiq_resume -1.pdf', NULL, '1', '2023-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 05:36:27', 1, '2023-12-24 05:39:55', 0, NULL, 1),
(15909, 'DHAVAPRIYA R', '33', '9840472556', '8072710312', 'sripriyababu1985@gmail.com', '1985-09-25', 38, '6', '1', 'S Dillibabu', 'Auto Driver', 45000.00, 2, 32000.00, 40000.00, 'ROYAPURAM', 'ROYAPURAM', '2312240013', '', '2', 'upload_files/candidate_tracker/53809211435_PRIYA RESUME 15.09.2023.pdf', NULL, '1', '2023-12-24', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 05:48:19', 1, '2023-12-24 05:54:08', 0, NULL, 1),
(15910, 'Anju Kumari', '31', '8294403079', '7061336192', 'anjukr55555@gmail.com', '1996-02-05', 27, '3', '2', 'Parmanand Singh', 'Government Services', 50000.00, 2, 0.00, 20000.00, 'Sultanganja, Bihar', 'Taramani, Chennai', '2312240014', '', '1', 'upload_files/candidate_tracker/26486727803_Anju\'s Resume (5).pdf', NULL, '1', '2023-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 08:07:42', 1, '2023-12-24 08:14:33', 0, NULL, 1),
(15911, 'Vetriselvan Pl', '13', '9360654592', '', 'vetriselvaniv@gmail.com', '2002-01-16', 21, '6', '2', 'Palanisamy', 'farmer', 7000.00, 2, 0.00, 10000.00, 'sivagangai', 'Chennai', '2312240015', '', '1', 'upload_files/candidate_tracker/60746607274_VETRISELVAN. PL.pdf', NULL, '1', '2023-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 09:42:44', 1, '2023-12-24 09:49:44', 0, NULL, 1),
(15912, 'K.Vinmathi', '13', '8148544678', '8148644678', 'vinmathikodeeswaran@gmail.com', '2002-06-12', 21, '6', '1', 'Kodeeswaran', 'Farmer', 100000.00, 0, 0.00, 18000.00, 'Devakottai', 'Chennai', '2312240016', '', '1', 'upload_files/candidate_tracker/9042213194_VINMATHI K Resume.pdf', NULL, '1', '2023-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-24 09:46:11', 1, '2023-12-24 09:50:23', 0, NULL, 1),
(15913, 'SAKTHIVEL M', '33', '6382132804', '', 'sakthivel1599720@gmail.com', '2001-02-10', 22, '3', '1', 'MURUGAN D', 'Electrician', 200000.00, 1, 0.00, 250000.00, 'Villupuram', 'Chennai', '2312250001', '', '1', 'upload_files/candidate_tracker/33483037251_downloadfile.pdf', NULL, '1', '2023-12-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-25 04:28:44', 1, '2023-12-25 04:33:00', 0, NULL, 1),
(15914, 'Kannaki Perumal', '13', '6381566157', '', 'perumalkannaki30@gmail.com', '2003-07-15', 20, '6', '2', 'Logambal', 'LIC agent', 20000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Chennai', '2312250002', '', '1', 'upload_files/candidate_tracker/38844966418_Kannaki Perumal Resume.docx', NULL, '1', '2023-12-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-25 04:49:31', 1, '2023-12-25 05:10:44', 0, NULL, 1),
(15915, 'Preethi E', '13', '9566997926', '', 'preethiofficial48@gmail.com', '2001-08-04', 22, '6', '2', 'Elangovan', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chennai', '2312250003', '', '1', 'upload_files/candidate_tracker/16644058642_Kannaki Perumal Resume.pdf', NULL, '1', '2023-12-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-25 04:49:35', 1, '2023-12-25 05:41:21', 0, NULL, 1),
(15916, 'Jeeva', '13', '6385596828', '', 'Jeevadurai17@gmail.com', '2004-02-17', 19, '2', '2', 'Annadurai', 'Electrician', 15000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Chennai', '2312250004', '9', '1', 'upload_files/candidate_tracker/88540764835_JAVA Unit-I.pdf', NULL, '1', '2023-12-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-25 04:50:14', 1, '2023-12-25 05:14:53', 0, NULL, 1),
(15917, 'K.yogesh Kuma', '33', '7299370379', '9941188898', 'K.yokeshkumar@gmail.com', '1991-09-17', 32, '6', '2', 'K.kesavan', 'Security guard', 15000.00, 3, 37000.00, 40000.00, 'Sevvapet', 'Chennai', '2312250005', '', '2', 'upload_files/candidate_tracker/3052519841_yogi Resume_compressed.pdf', NULL, '1', '2023-12-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-25 04:57:24', 1, '2023-12-25 05:18:48', 0, NULL, 1),
(15918, 'R.Anusuya', '33', '9710035988', '7397307316', 'anusuyaraja2001@gmail.com', '2001-08-12', 22, '1', '2', 'M.Raja', 'Carpenter', 120000.00, 1, 0.00, 250000.00, 'Kodambakkam,Chennai', 'Kodambakkam,Chennai', '2312250006', '', '1', 'upload_files/candidate_tracker/70767098988_R.Anusuyaraja.pdf', NULL, '1', '2023-12-25', 0, 'Sathish', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-25 06:02:36', 1, '2023-12-25 06:07:25', 0, NULL, 1),
(15919, '', '0', '8925469034', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312250007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-25 06:28:37', 0, NULL, 0, NULL, 1),
(15920, '', '0', '6379247652', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312250008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-25 06:29:06', 0, NULL, 0, NULL, 1),
(15921, 'Sivadurga Jayaselvan', '4', '6383915011', '7603936379', 'jsivadurga438@gmail.com', '2003-05-15', 20, '2', '2', 'Jayaselvan', 'Driver', 8000.00, 2, 0.00, 12000.00, 'Pattukottai', 'Pattukottai', '2312250009', '1', '1', 'upload_files/candidate_tracker/83216478264_Sivadurga. BCA.pdf', NULL, '1', '2023-12-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile completed bca in thanjavur- father auto driver - stay in pudhukottai travel time 1 hour..expected 12k to 13k fresher and ready to join immeditaely....laptop arranged kindly check once and confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-25 06:29:08', 108, '2023-12-25 12:58:45', 0, NULL, 1),
(15922, '', '0', '9344466568', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312250010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-25 06:29:19', 0, NULL, 0, NULL, 1),
(15923, 'R. Tharun vishwa', '33', '6374242350', '9790799062', 'tharunvishwa6@gmail.com', '2002-08-18', 21, '2', '2', 'M. Ramar', 'Grocery shop', 15000.00, 2, 0.00, 15000.00, 'Poonamallee', 'Poonamallee', '2312250011', '1', '1', 'upload_files/candidate_tracker/28586469401_THARUN RESUME123_1693201842061_THARUN VISHWA. R.docx', NULL, '1', '2023-12-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-25 06:32:19', 108, '2023-12-25 02:42:22', 0, NULL, 1),
(15924, 'kannan.r', '33', '8838889696', '', 'kansrc07@gmail.com', '2001-01-20', 22, '2', '2', 'ram gandhi. p', 'own business', 70000.00, 2, 0.00, 300000.00, 'chennai', 'chennai', '2312250012', '1', '1', 'upload_files/candidate_tracker/34489048814_kannan resume.pdf', NULL, '1', '2023-12-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-25 06:34:22', 108, '2023-12-28 11:39:22', 0, NULL, 1),
(15925, 'mohmood hisham', '33', '7339537993', '', 'mahmoodhisham2012@gmail.com', '1999-12-20', 24, '3', '2', 'seyed mohamed buhary', 'book shop', 25000.00, 2, 18000.00, 25000.00, 'thuthukuki', 'chennai', '2312250013', '', '2', 'upload_files/candidate_tracker/53571360214_Document from Mahmood Hisham.pdf', NULL, '1', '2023-12-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-25 06:39:50', 1, '2023-12-25 07:21:18', 0, NULL, 1),
(15926, 'Bharath kalyan.j', '33', '9500004081', '9710613951', 'mjk13951@gmail.com', '2003-01-22', 20, '2', '2', 'B.jayakumar', 'Business', 500000.00, 1, 0.00, 18000.00, 'Kodambakkam', 'Kodambakkam', '2312260001', '1', '1', 'upload_files/candidate_tracker/74599135304_Bharath resume.pdf', NULL, '1', '2023-12-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interview taken by palani sir\nWill not suitable for our role', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-26 04:28:41', 108, '2023-12-26 04:48:54', 0, NULL, 1),
(15927, 'Muthu s', '2', '9047435357', '9751359662', 'muthushankar95@gmail.com', '1998-06-09', 25, '6', '2', 'Sankar S', 'Shop owner', 50000.00, 1, 400000.00, 500000.00, 'Chengalpattu', 'Chennai', '2312260002', '', '2', 'upload_files/candidate_tracker/61350143805_Muthu_Resume.pdf', NULL, '1', '2023-12-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 04:35:49', 1, '2023-12-26 04:44:09', 0, NULL, 1),
(15928, 'Mohammed Aslam', '13', '9629293520', '', 'mdaslamma063@gmail.com', '2002-05-14', 21, '6', '2', 'Mohammed thoufeek', 'Imam', 2.00, 0, 0.00, 2.00, 'Kanyakumari', 'Velachery', '2312260003', '', '1', 'upload_files/candidate_tracker/76327632569_Aslam resume .pdf', NULL, '1', '2023-12-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-26 04:59:10', 112, '2024-03-26 05:46:23', 0, NULL, 1),
(15929, 'Zafar hussain', '33', '8220634699', '9176311917', 'wizaaf2681@gmail.com', '2001-08-26', 22, '2', '2', 'Farzana begum', 'House wife', 35000.00, 1, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2312260004', '1', '1', 'upload_files/candidate_tracker/78131889053_Zafar Resume.pdf', NULL, '1', '2023-12-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-26 05:04:08', 104, '2023-12-27 07:02:57', 0, NULL, 1),
(15930, 'Gomathi', '13', '8344959534', '8248441559', 'gomathi1999vijaya@gmail.com', '1999-09-06', 24, '6', '2', 'Vijayakumar', 'TNEB', 40000.00, 2, 0.00, 25000.00, 'Vandavasi', 'Vandavasi', '2312260005', '', '1', 'upload_files/candidate_tracker/50760105564_GOMATHI_resume.pdf', NULL, '1', '2023-12-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 05:12:57', 1, '2023-12-26 05:20:56', 0, NULL, 1),
(15931, 'Suresh k', '33', '9994099705', '7603857675', 'Sureshkalimuthu1720@gmail.Com', '1999-07-01', 24, '2', '2', 'Kalimuthu', 'Taxtail labour', 12000.00, 3, 15000.00, 18000.00, 'Thuttukudi', 'Saidapet', '2312260006', '1', '2', 'upload_files/candidate_tracker/27127265989_Suresh-4.pdf', NULL, '2', '2023-12-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-26 05:23:03', 108, '2023-12-26 05:37:19', 0, NULL, 1),
(15932, 'Prasanth', '13', '7695900837', '', 'prashanthparthiban603@gmail.com', '2001-09-18', 22, '6', '2', 'Parent', 'Full stack developer', 30000.00, 2, 0.00, 25000.00, 'Vellore', 'Vellore', '2312260007', '', '1', 'upload_files/candidate_tracker/26950069507_DOC-20230828-WA0001..pdf', NULL, '2', '2023-12-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 05:29:17', 1, '2023-12-26 05:43:55', 0, NULL, 1),
(15933, 'B.Venkatesh', '33', '9566692416', '', 'jkrishsantha@gmail.com', '2002-05-31', 21, '2', '2', 'K.Babu', 'Daily wager', 12000.00, 2, 0.00, 16000.00, 'Arambakkam', 'Arambakkam', '2312260008', '1', '1', 'upload_files/candidate_tracker/15712422331_new resume.pdf', NULL, '1', '2023-12-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-26 05:45:29', 108, '2023-12-26 04:48:28', 0, NULL, 1),
(15934, 'balamurugan', '33', '9710020834', '', 'balam252000@gmail.com', '2000-10-25', 23, '2', '2', 'meganathan', 'load man', 15000.00, 1, 15000.00, 15000.00, 'ramapuram', 'Ramapuram', '2312260009', '1', '2', 'upload_files/candidate_tracker/96612929119_Balamurugan Resume pdf.pdf', NULL, '1', '2023-12-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-26 05:48:38', 104, '2023-12-27 07:03:48', 0, NULL, 1),
(15935, 'R Kishore Kumar', '13', '8248711094', '', 'rkishorekumar2542003@gmail.com', '2003-04-25', 20, '6', '2', 'S.K.Rajkumar', 'Driver', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2312260010', '', '1', 'upload_files/candidate_tracker/24437049897_Resume.pdf', NULL, '1', '2023-12-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 05:50:29', 1, '2023-12-26 05:55:50', 0, NULL, 1),
(15936, 'S Sivanandan', '7', '9840527255', '8667783002', 'sivanand92@gmail', '1992-09-09', 31, '3', '2', 'R Sabapathy', 'Labour', 16000.00, 1, 18500.00, 22000.00, 'Anna Nagar', 'Anna Nagar', '2312260011', '', '2', 'upload_files/candidate_tracker/99890341922_Resume-Siva.docx', NULL, '1', '2023-12-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 05:50:39', 1, '2023-12-26 05:56:48', 0, NULL, 1),
(15937, 'R. Prakash', '33', '9150565304', '', 'prakashramu012@gmail.com', '2003-07-12', 20, '3', '2', 'C. Ramu', 'Labour', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Thiruninravur', '2312260012', '', '1', 'upload_files/candidate_tracker/81373976717_Resume_ Prakash-1.pdf', NULL, '1', '2023-12-26', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 06:06:21', 1, '2023-12-26 06:15:27', 0, NULL, 1),
(15938, 'Hajeema S', '11', '7339566760', '', 'hajeemas10512@gmail.com', '2000-11-05', 23, '6', '2', 'Sirajdeen A', 'Accounting assistant', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Porur, chennai', '2312260013', '', '1', 'upload_files/candidate_tracker/80066748754_Hajeema\'s Resume.pdf', NULL, '1', '2023-12-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 06:13:29', 1, '2023-12-26 06:16:11', 0, NULL, 1),
(15939, '', '0', '7305809684', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312260014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-26 06:20:22', 0, NULL, 0, NULL, 1),
(15940, '', '', '', '', '', '1970-01-01', 0, '', '', '', '', 0.00, 0, 0.00, 0.00, '', '', '', '', '', '', NULL, '', '1970-01-01', 0, '', '6', '0', NULL, 0.00, '', '3', '2024-07-30', '', NULL, '', '2', '0', '', '', '0', '1', NULL, '', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 06:42:58', 1, '2023-12-26 06:43:33', 0, NULL, 1),
(15941, 'Pulikonda sai teja', '31', '6305877611', '', 'saitejap1919@gmail.com', '1998-10-22', 25, '3', '2', 'Ramadasu', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Nellore', 'Chennai', '2312260016', '', '1', 'upload_files/candidate_tracker/77099059905_Sai teja.pdf', NULL, '1', '2023-12-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 06:43:19', 1, '2023-12-26 07:14:11', 0, NULL, 1),
(15942, 'Sathish R', '33', '9600134717', '9790886116', 'sathish28072002@gmail.com', '2002-07-28', 21, '2', '2', 'Gayatri', 'Yes', 15000.00, 5, 0.00, 20000.00, '147/89 Veltech bharati nagar vellanur', '147/89 Veltech bharati nagar vellanur avadi', '2312260017', '1', '1', 'upload_files/candidate_tracker/18506532702_Sathish R.pdf', NULL, '1', '2023-12-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-26 06:52:51', 108, '2023-12-26 04:47:59', 0, NULL, 1),
(15943, 'Karthick Mohan', '13', '7871519619', '8508858433', 'karthickmohan11799@gmail.com', '2008-12-26', 0, '3', '2', 'Sasikala', 'Home maker', 20000.00, 1, 0.00, 250000.00, 'Tiruchirappalli', 'Chennai', '2312260018', '', '1', 'upload_files/candidate_tracker/43540575017_Karthick.Mohan_Resume.pdf', NULL, '1', '2023-12-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 06:56:37', 1, '2023-12-26 07:05:08', 0, NULL, 1),
(15944, '', '0', '9840112423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312260019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-26 06:59:39', 0, NULL, 0, NULL, 1),
(15945, 'Karthick Mohan', '13', '8508858433', '7871519619', 'karthickmohan11799@gmail.com', '1999-07-11', 24, '3', '2', 'Sasikala', 'Home maker', 20000.00, 1, 0.00, 250000.00, 'Tiruchirappalli', 'Chennai', '2312260020', '', '1', 'upload_files/candidate_tracker/79039056915_Karthick.Mohan_Resume.pdf', NULL, '1', '2023-12-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 07:08:40', 1, '2023-12-26 07:11:35', 0, NULL, 1),
(15946, 'Thameem Ansari', '4', '9344401002', '9500170958', 'nijamathullah@gmail.com', '1993-02-04', 30, '3', '1', 'Fahima Shireen', 'Housewife', 13000.00, 2, 17000.00, 25000.00, 'Chennai', 'Chennai', '2312260021', '', '2', 'upload_files/candidate_tracker/50688764223_Curriculum+Vitae_1699531041057_Thameem+Ansari (1).docx', NULL, '1', '2023-12-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', '1', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 08:21:08', 1, '2023-12-26 09:02:14', 0, NULL, 1),
(15947, 'Dharaneeswaran', '14', '8523999980', '9894703379', 'dharanikamel2001@gmail.com', '2001-10-01', 22, '3', '2', 'Kumar', 'Laber', 12000.00, 2, 0.00, 8000.00, 'Melmaruvathur', 'Melmaruvathur', '2312260022', '', '1', 'upload_files/candidate_tracker/73918884766_DHARANEESHWARAN-K-RESUME.pdf', NULL, '1', '2023-12-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 08:57:56', 1, '2023-12-26 09:05:36', 0, NULL, 1),
(15948, '', '0', '9944170578', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312260023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-26 09:06:47', 0, NULL, 0, NULL, 1),
(15949, 'Ramamoorthy Kolanchi', '11', '9600241167', '', 'ramamoorthykolanchi@gmail.com', '2008-12-26', 0, '6', '2', 'Kolanchi', 'Agiriculture', 160000.00, 1, 216000.00, 240000.00, 'Chennai', 'Chennai', '2312260024', '', '2', 'upload_files/candidate_tracker/69835219006_Ram Resume.pdf', NULL, '1', '2023-12-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '2', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 09:51:12', 1, '2023-12-26 09:55:33', 0, NULL, 1),
(15950, 'Siva Supriya M', '11', '7339592296', '6385495213', 'supriyamurugan1324@gmail.com', '2001-02-24', 22, '6', '2', 'Murugan S', 'Business', 15000.00, 1, 0.00, 15000.00, 'Nagercoil', 'Chennai thousand light', '2312260025', '', '1', 'upload_files/candidate_tracker/25196524816_pdf_20230418_200921_0000 (1).pdf', NULL, '1', '2023-12-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 10:31:23', 1, '2023-12-26 10:35:36', 0, NULL, 1),
(15951, 'Mohamed Kasim', '6', '9677795615', '9585437096', 'kasim15.ks@gmail.com', '2008-12-26', 0, '2', '2', 'oha hajudee', 'auto drive', 15000.00, 1, 20000.00, 20000.00, 'pondicherry', 'pondicherry', '2312260026', '1', '2', 'upload_files/candidate_tracker/18655215531_kasim resume new.pdf', NULL, '1', '2023-12-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustaining Problem Also Looking For Non Voice Process', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-26 01:41:29', 108, '2023-12-28 11:10:24', 0, NULL, 1),
(15952, 'Gomathi.s', '6', '9952739038', '9944170578', 'gomathinarayanan15@gmail.com', '2000-12-15', 23, '6', '2', 'R.Sankaranarayanan', 'Vegetable Merchant', 20000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2312260027', '', '1', 'upload_files/candidate_tracker/80006828727_gomathi.pdf', NULL, '1', '2023-12-27', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-26 02:29:22', 1, '2023-12-26 05:32:07', 0, NULL, 1),
(15953, 'M.Poonguzhali', '31', '9080712402', '9942508847', 'poongamarudhu22@gmail.com', '1998-02-22', 25, '3', '1', 'Deepak', 'IT', 20.00, 0, 18.00, 18.00, 'Chennai', 'Chennai', '2312270001', '', '2', 'upload_files/candidate_tracker/67477534568_VEL_poonguzhali_B.Tech(IT)_2019_pythonfullstack.pdf', NULL, '1', '2023-12-27', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 04:21:50', 1, '2023-12-27 04:25:47', 0, NULL, 1),
(15954, 'U Rajkumar', '31', '9585034890', '', 'rajkumar.umashankar138@gmail.com', '2002-08-13', 21, '3', '2', 'Umashankar A', 'Driver', 20000.00, 2, 0.00, 10000.00, 'Thiruvanamalai', 'Chennai', '2312270002', '', '1', 'upload_files/candidate_tracker/67505620537_Rajkumar U-1.pdf', NULL, '1', '2023-12-27', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 04:25:46', 1, '2023-12-27 04:33:02', 0, NULL, 1),
(15955, 'Vishnu chandar B', '31', '9042317571', '', 'vishnurchandar@gmail.com', '1998-07-01', 25, '3', '2', 'BABU V', 'Self employed', 15000.00, 1, 0.00, 12000.00, '1298 VIVEKANANDAR NAGAR,EB NAGAR,ARNI,SEVOOR', 'Chennai', '2312270003', '', '1', 'upload_files/candidate_tracker/1550831484_Vel_Vishnuchandar_2018_B.sc(CS)_Java and Advance java.pdf', NULL, '1', '2023-12-27', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 04:45:12', 1, '2023-12-27 04:50:32', 0, NULL, 1),
(15956, 'Ganesh', '33', '9025603963', '9840541359', 'gganesh13409@gmail.com', '2003-05-05', 20, '2', '2', 'B. S. Ravi', 'Tailor', 12000.00, 2, 0.00, 12000.00, 'Thirunindravur', 'Thirunindravur', '2312270004', '1', '1', 'upload_files/candidate_tracker/70366409640_ganesh-1-1 (2).pdf', NULL, '1', '2023-12-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-27 04:52:55', 104, '2023-12-27 07:02:10', 0, NULL, 1),
(15957, 'Hariprasath R M', '26', '9361436712', '', 'rmhariprasath789@gmail.com', '2002-05-16', 21, '3', '2', 'Manivannan R', 'Insurance advisor', 25000.00, 1, 0.00, 15000.00, 'Musiri, Trichy.', 'Tambaram, Chennai.', '2312270005', '', '1', 'upload_files/candidate_tracker/7519809751_Hariprasath R M.pdf', NULL, '1', '2023-12-27', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 04:53:24', 1, '2023-12-27 04:57:26', 0, NULL, 1),
(15958, 'Nirmalkumar.s', '33', '7305606377', '', 'nirmalkumar062002@gmail.com', '2002-11-06', 21, '3', '2', 'Sridhar.c', 'Auto driver', 10000.00, 1, 0.00, 20000.00, 'Mudichur', 'Mudichur', '2312270006', '', '1', 'upload_files/candidate_tracker/36934990607_nirmal kumar resume-1.pdf', NULL, '1', '2023-12-27', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 04:54:54', 1, '2023-12-27 05:06:09', 0, NULL, 1),
(15959, 'Aravindan M', '33', '9344205471', '9944054304', 'aravindanams0@gmail.com', '1999-03-21', 24, '2', '2', 'Maniarasu M', 'Setc Rtd,', 18000.00, 1, 0.00, 230000.00, 'Trichy', 'Chennai', '2312270007', '1', '1', 'upload_files/candidate_tracker/62580345543_RESUME ARAVINDAN M.pdf', NULL, '1', '2023-12-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-27 05:04:03', 108, '2023-12-28 11:24:57', 0, NULL, 1),
(15960, 'Sumithra', '6', '7305332480', '7299572815', 'Sumithraprabhu31101@gmail.com', '2001-01-31', 22, '2', '2', 'Prabhu', 'Salesman', 150000.00, 0, 15000.00, 20000.00, 'Tambaram', 'Tambaram', '2312270008', '1', '2', 'upload_files/candidate_tracker/18691003556_CV_202312191306159.pdf', NULL, '3', '2023-12-27', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2023-12-27 05:11:02', 1, '2023-12-27 05:19:17', 0, NULL, 1),
(15961, 'Meinavathi M', '11', '8939367199', '6380880380', 'meina23n11@gmail.com', '2001-09-15', 22, '6', '1', 'Prabhakaran R', 'Process Associate', 3.60, 2, 3.17, 5.50, 'Chennai', 'Chennai', '2312270009', '', '2', 'upload_files/candidate_tracker/85584200850_Meinavathi updated resume.pdf', NULL, '1', '2023-12-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 05:14:30', 1, '2023-12-27 05:18:38', 0, NULL, 1),
(15962, 'Gopi Vinayagam', '4', '8489441959', '6383421671', 'gopileova@gmail.com', '2001-08-24', 22, '3', '2', 'vinayagam', 'self emp', 20000.00, 2, 0.00, 18000.00, 'sholinghur', 'guindy', '2312270010', '', '1', 'upload_files/candidate_tracker/49538253806_Gopi V (RESUME).pdf', NULL, '1', '2023-12-27', 0, '', '3', '59', '2024-01-02', 156000.00, '', '5', '1970-01-01', '1', 'Selected for Banu Team in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-27 05:21:38', 60, '2024-01-02 10:29:25', 0, NULL, 1),
(15963, 'Sharabesh K', '16', '8056366336', '', 'sharabeshkrishnanksk@gmail.com', '1999-06-16', 24, '3', '2', 'Kumaran R', 'Business', 25000.00, 0, 0.00, 3.00, 'Kumbakonam', 'Chennai', '2312270011', '', '2', 'upload_files/candidate_tracker/65897953020_SHARABESH K - RESUME .pdf', NULL, '1', '2023-12-27', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 05:21:45', 1, '2023-12-27 05:28:14', 0, NULL, 1),
(15964, 'Abinanthan', '15', '9944966578', '', 'abinanthanraja88@gmail.com', '2002-08-08', 21, '1', '2', 'C.R.Raja', 'Business', 18000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2312270012', '', '1', 'upload_files/candidate_tracker/61799695204_Abinanthanresume2023. pdf.pdf', NULL, '1', '2023-12-27', 0, 'NA', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 05:40:29', 1, '2023-12-27 05:45:29', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15965, 'Harish Kumar', '13', '6382941812', '9655051352', 'harishdhanush2196@gmail.com', '2001-10-26', 22, '1', '2', 'nagarjan', 'milkman', 18000.00, 0, 0.00, 3.00, 'bose colony sivakasi.', 'chennai', '2312270013', '', '1', 'upload_files/candidate_tracker/35313680174_HARISHKUMAR_CSE_2023_JAVA.pdf', NULL, '1', '2023-12-27', 0, 'na', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 05:41:30', 1, '2023-12-27 05:45:32', 0, NULL, 1),
(15966, 'manikandan', '16', '7338795101', '', 'p.manikandan0409@gmail.com', '1999-09-04', 24, '3', '2', 'palanisamy', 'driver', 15000.00, 2, 0.00, 300000.00, 'Perungalathur', 'perungalathur', '2312270014', '', '1', 'upload_files/candidate_tracker/8425075490_Mani.pdf', NULL, '1', '2023-12-27', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 05:42:17', 1, '2023-12-27 05:51:54', 0, NULL, 1),
(15967, 'Mohamed kamil', '33', '9150182312', '', 'mohadkamil47@gmail.com', '2002-03-15', 21, '2', '2', 'Nazer ali', 'Store keeper', 13000.00, 2, 0.00, 12000.00, 'Cuddalore distric, parangipettai 608502', 'Chennai triplicane', '2312270015', '1', '1', 'upload_files/candidate_tracker/99549150868_Resume 1.pdf', NULL, '1', '2023-12-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-27 05:43:03', 108, '2023-12-28 11:27:53', 0, NULL, 1),
(15968, 'Guna', '13', '8667003191', '8190070873', 'gunasmart19@gmail.com', '1998-05-19', 25, '3', '2', 'Jothi', 'Farmer', 45000.00, 1, 0.00, 280000.00, 'Karaikal', 'Chennai', '2312270016', '', '1', 'upload_files/candidate_tracker/64369074845_Guna 2.pdf', NULL, '1', '2023-12-27', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 05:44:48', 1, '2023-12-27 05:48:40', 0, NULL, 1),
(15969, 'Hamsa Kabeer Ahmed', '33', '8667859234', '9884019107', 'Hamsak4276@gmail.com', '2002-08-26', 21, '2', '2', 'A Kabeer Ahmed', 'Business', 40000.00, 1, 0.00, 325000.00, 'Tambaram', 'Tambaram', '2312270017', '1', '1', 'upload_files/candidate_tracker/69574581820_RESUME.pdf', NULL, '1', '2023-12-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '4', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-27 06:03:08', 104, '2023-12-27 07:01:18', 0, NULL, 1),
(15970, 'Karthikeyan.p', '33', '7305240179', '', 'Karthirio649@gmail.com', '2001-04-01', 22, '2', '2', 'Parathasarathy', 'Labtechnician', 50000.00, 1, 16000.00, 30000.00, 'KVB Garden R.a.puram Chennai - 28', 'Mandevali', '2312270018', '1', '2', 'upload_files/candidate_tracker/63770965190_KARTHIKEYAN P_1702996071422_Karthikeyan P.pdf', NULL, '1', '2023-12-27', 30, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-27 06:08:38', 104, '2023-12-27 07:01:39', 0, NULL, 1),
(15971, 'Santhanathan R', '11', '8940363262', '', 'Santhanathan17@gmail.com', '1999-12-25', 24, '6', '2', 'Radha Krishnan', 'Transport accountant', 12000.00, 0, 0.00, 15000.00, 'VIRUDHUNAGAR', 'Santhosapuram Chennai 97', '2312270019', '', '1', 'upload_files/candidate_tracker/27360824140_Santhanathan CV.pdf', NULL, '1', '2023-12-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 06:14:53', 1, '2023-12-27 06:17:37', 0, NULL, 1),
(15972, 'Joshwa Nishanth. j', '33', '9841575317', '', 'jnnishanth10@gmail.com', '2000-02-02', 23, '2', '2', 'Saral Nowroji J', 'House Keeping', 84000.00, 1, 18000.00, 22000.00, 'Chennai', 'Madhavaram Chennai', '2312270020', '1', '2', 'upload_files/candidate_tracker/55767549174_JOSHWA NISHANTH RESUME.pdf', NULL, '1', '2023-12-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-27 07:00:24', 108, '2023-12-28 11:29:44', 0, NULL, 1),
(15973, 'Nithish kumar', '11', '9345199819', '', 'jnithish179@gmail.com', '2001-08-19', 22, '3', '2', 'Balakrishnan', 'Working in Vegetable market', 800000.00, 1, 0.00, 300000.00, 'Tiruchirapalli', 'Lalgudi, Trichy', '2312270021', '', '2', 'upload_files/candidate_tracker/59537667298_Resume.pdf', NULL, '1', '2023-12-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 07:28:36', 1, '2023-12-27 07:32:42', 0, NULL, 1),
(15974, 'Mohan Raj T S', '13', '8939207148', '', 'mohanrajts2001@gmail.com', '2001-05-03', 22, '3', '2', 'Sudhakar', 'Gym trainer', 40000.00, 1, 0.00, 20000.00, 'No 981 TH mAIN ROAD KALADIPET THIRUVOTTRIYUR', 'Chennai', '2312270022', '', '1', 'upload_files/candidate_tracker/75138476601_Mohan Raj TS Resume-1-1_compressed.pdf', NULL, '1', '2023-12-27', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 08:23:16', 1, '2023-12-27 09:19:02', 0, NULL, 1),
(15975, 'Vignesh r', '33', '9087279466', '', 'rrrsvse@gmail.com', '2002-01-29', 21, '3', '2', 'Rajendhran', 'Driver', 14000.00, 2, 0.00, 12000.00, 'Thiruninravur', 'Thiruninravur', '2312270023', '', '1', 'upload_files/candidate_tracker/18371053775_resume?.pdf', NULL, '1', '2023-12-27', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', '4', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 08:39:35', 1, '2023-12-27 08:42:59', 0, NULL, 1),
(15976, 'Harish', '11', '6369864411', '', 'santhanam.harish@yahoo.com', '1995-11-13', 28, '3', '2', 'Santhanam', 'HR professional', 100000.00, 1, 80000.00, 35000.00, 'Chennai', 'Chennai', '2312270024', '', '2', 'upload_files/candidate_tracker/75519156236_1703094213181_Harish HR CV.docx.pdf', NULL, '1', '2023-12-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 09:13:25', 1, '2023-12-27 09:21:26', 0, NULL, 1),
(15977, 'V N NAGA GOVINDAN', '33', '7416129365', '9390672596', 'nagagovindanvn@gmail.com', '1993-05-25', 30, '2', '2', 'V N Nagabhushnam', 'Weaver', 5000.00, 1, 0.00, 325000.00, '3/23 middle Street sathrawada Nagari Mandalam', 'D No 36 2 nd Street Rajaji Nagar villivakkam Ch', '2312270025', '1', '2', 'upload_files/candidate_tracker/30321773456_NAGA GOVINDAN (RESUME)25 (2).pdf', NULL, '1', '2023-12-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-27 09:16:27', 104, '2023-12-27 07:00:15', 0, NULL, 1),
(15978, 'Joseph Antony Raj', '11', '8190854516', '', 'josephantonyarul205@gmail.com', '1999-05-20', 24, '6', '2', 'Josephine Ananthi', 'Business owner', 30000.00, 1, 18500.00, 25000.00, 'Madurai', 'Guindy', '2312270026', '', '2', 'upload_files/candidate_tracker/78040763213_Joseph Antony Raj _Resume-1.docx.pdf', NULL, '1', '2023-12-27', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 09:22:17', 1, '2023-12-27 09:26:25', 0, NULL, 1),
(15979, 'M.sabitha kumari', '11', '8220755479', '', 'sabithamurugesan2316@gmail.com', '1999-12-28', 23, '6', '2', 'R.murugesan', 'foreman', 20000.00, 1, 0.00, 10000.00, 'Ramanathapuram', 'chennai', '2312270027', '', '1', 'upload_files/candidate_tracker/51832551982_1703592539623_M. Sabitha Kumari-(Resume)323.pdf', NULL, '1', '2023-12-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 09:23:37', 1, '2023-12-27 09:37:13', 0, NULL, 1),
(15980, 'Shabir Ahamed', '11', '8072040183', '9788020511', 'Shabirshamalick@gmail.com', '1997-06-30', 26, '3', '2', 'AbdulMalick A', 'Fitter in sugarmill', 200000.00, 2, 21000.00, 25000.00, 'Thiruvannamalai', 'Thiruvannamalai', '2312270028', '', '2', 'upload_files/candidate_tracker/94323146659_HR RESUME pdf.pdf', NULL, '1', '2023-12-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 09:24:09', 1, '2023-12-27 09:27:55', 0, NULL, 1),
(15981, 'Anthony Praveen', '11', '7305434101', '', 'calvinaugesto48@gmail.com', '2002-11-10', 21, '2', '2', 'Prakash', 'Private', 18000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2312270029', '1', '1', 'upload_files/candidate_tracker/94018051877_CV_202312022356571.pdf', NULL, '1', '2023-12-28', 0, '', '3', '59', '2024-01-02', 120000.00, '', '5', '1970-01-01', '1', '2months Intern 10K then salary will be fixed 3yrs NDA', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-12-27 12:53:59', 60, '2024-01-02 10:26:40', 0, NULL, 1),
(15982, 'ABDULKALAM B', '33', '9487940209', '', 'abdulkalam0630@gmail.com', '2002-11-11', 21, '6', '2', 'BASEER MOHAMMED', 'Accounts Executive', 25000.00, 0, 25000.00, 30000.00, '288/14 SENTHAMIL NAGAR, VALANGAIMAN', 'MAHABALLIBURAM', '2312270030', '', '2', 'upload_files/candidate_tracker/71627448719_ABK-1.pdf', NULL, '1', '2023-12-28', 30, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Interview Taken By Palani , He Rejects This Profile', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-27 01:39:01', 1, '2023-12-27 01:44:55', 0, NULL, 1),
(15983, 'Narmadha', '5', '9025658909', '', 'narmathanarmmu@gmail.com', '2001-09-23', 22, '2', '2', 'Mohanraj', 'Labour', 250000.00, 1, 23000.00, 25000.00, 'Valasaravakkam', 'Valasaravakkam', '2312270031', '1', '2', 'upload_files/candidate_tracker/17029714274_Narmadha 23 resume.pdf', NULL, '1', '2023-12-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She asked 25k ctc but i did not accept that her last salary was 23k ctc if she submit last job pay slip means we will provide same salary of 23k after 7 days training only i will confirm her job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-27 01:42:58', 108, '2023-12-28 01:42:12', 0, NULL, 1),
(15984, 'Kanmani', '5', '9941993626', '6379270704', 'kanmanikanmanisk12@gmail.com', '2000-12-12', 23, '2', '2', 'Parents', 'Papaas company', 120000.00, 1, 18900.00, 20000.00, 'Keelkattalai', 'Keelkattalai', '2312280001', '1', '2', 'upload_files/candidate_tracker/72008330493_Resume_Job resume kanmani_Format1-3.pdf', NULL, '1', '2023-12-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'ok  but salary expectation is high so kindly check and confirm ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2023-12-28 03:43:52', 108, '2023-12-28 01:43:17', 0, NULL, 1),
(15985, 'Sundar s', '16', '9094166700', '', '41557.bcs.sundar@Gmail.com', '2002-01-17', 21, '3', '2', 'Sivakumar s', 'Customer support executive', 210000.00, 1, 16500.00, 20000.00, 'Kodambakkam', 'Kodambakkam', '2312280002', '', '2', 'upload_files/candidate_tracker/29166986412_Copy of sundar_b.com_(poy_2023)-.pdf', NULL, '1', '2023-12-28', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-28 05:14:22', 1, '2023-12-28 05:37:08', 0, NULL, 1),
(15986, 'Roshini K', '11', '6380789921', '', 'roshinikandasamy17@gmail.com', '2000-05-17', 23, '6', '2', 'Sarojini Devi K', 'BE Biomedical', 30000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2312280003', '', '1', 'upload_files/candidate_tracker/21926341206_Roshini_K.pdf', NULL, '1', '2023-12-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-28 05:16:39', 1, '2023-12-28 05:19:27', 0, NULL, 1),
(15987, 'Anusha gandhi', '11', '7708246632', '', 'anushagandhi6@gmail.com', '1998-06-22', 25, '6', '2', 'Mahendran', 'Farmer', 15000.00, 1, 240000.00, 300000.00, 'Sivaganga', 'Chennai', '2312280004', '', '2', 'upload_files/candidate_tracker/23503835047_anusha-1209201.pdf', NULL, '1', '2023-12-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-28 05:20:45', 1, '2023-12-28 05:46:40', 0, NULL, 1),
(15988, 'M Muthuvelan', '33', '8072120557', '9941859007', 'm.muthuvelan2003@gmail.com', '2003-07-31', 20, '3', '2', 'G mahesh', 'Conductor', 30000.00, 0, 0.00, 250000.00, 'Chennai', 'Chennai', '2312280005', '', '1', 'upload_files/candidate_tracker/96862004705_M MUTHUVELAN resume 4.docx', NULL, '1', '2023-12-28', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'Interview Taken By Palani , He Rejects This Profile', '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-28 05:29:37', 1, '2023-12-28 05:33:07', 0, NULL, 1),
(15989, 'Hariharan.k', '33', '6374494114', '', 'hariiharan1341@gmail.com', '2000-01-18', 23, '3', '2', 'Karunakaran', 'Tailor', 25000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2312280006', '', '1', 'upload_files/candidate_tracker/94912431209_DOC-20231114-WA0000..pdf', NULL, '1', '2023-12-28', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Interview Taken By Palani , He Rejects This Profile', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-28 06:01:56', 1, '2023-12-28 06:14:16', 0, NULL, 1),
(15990, 'Mohammed Anash', '15', '9344850423', '', 'anashofficial001@gmail.com', '2000-10-07', 23, '3', '2', 'Abdul ubies', 'Self employee', 65000.00, 2, 0.00, 20000.00, 'Ramanathapuram', 'Mannady, chennai', '2312280007', '', '1', 'upload_files/candidate_tracker/82560297246_RESUME.pdf', NULL, '1', '2023-12-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-28 06:07:27', 1, '2023-12-28 06:14:16', 0, NULL, 1),
(15991, 'Praveen CR', '11', '9514414456', '8838891169', 'crpraveen2000@gmail.com', '2000-10-03', 23, '6', '2', 'Rajasingam', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Pudukkottai', 'Guindy', '2312280008', '', '1', 'upload_files/candidate_tracker/70784912223_Praveen CR.pdf', NULL, '1', '2023-12-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-28 06:34:55', 1, '2023-12-28 06:38:02', 0, NULL, 1),
(15992, 'A.syed umar', '33', '9843654319', '', 'umarasdo007@gmail.com', '1997-07-10', 26, '3', '2', 'Parent', 'Electrical technician', 20000.00, 0, 10000.00, 22000.00, 'Thiruvarur', 'Ashok Nagar chennai', '2312280009', '', '2', 'upload_files/candidate_tracker/98466040782_CV -Umar.pdf', NULL, '1', '2023-12-28', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Interview Taken By Palani , He Rejects This Profile', '4', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-28 07:14:31', 1, '2023-12-28 07:19:29', 0, NULL, 1),
(15993, 'Haribabu N', '11', '8668070272', '', 'haribabun1007@gmail.com', '2002-07-10', 21, '6', '2', 'Narayanan N', 'Catering', 100000.00, 2, 0.00, 30000.00, 'KANCHIPURAM', 'KANCHIPURAM', '2312280010', '', '1', 'upload_files/candidate_tracker/4076382389_first resume (1).pdf', NULL, '1', '2023-12-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-28 09:42:29', 1, '2023-12-28 09:48:24', 0, NULL, 1),
(15994, 'Sambathkumar S', '28', '8190911086', '7708461679', 'sambathkumars174@gmail.com', '1999-08-30', 24, '6', '2', 'Siluvaimuthu p', 'Farmer', 10000.00, 2, 2.20, 3.00, 'Neyveli', 'Chennai', '2312280011', '', '2', 'upload_files/candidate_tracker/30237070183_SAMBATHKUMAR S _ RESUME 7 (1)-1.pdf', NULL, '2', '2023-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-28 12:40:57', 1, '2023-12-28 12:51:41', 0, NULL, 1),
(15995, 'Ajaykumar S', '2', '6383665863', '', 'kajay593006@gmail.com', '2003-12-25', 20, '6', '2', 'Subramaniyan m', 'Subramaniyan m', 15000.00, 1, 0.00, 15000.00, 'Thiruchitrambalam', 'Tambaram', '2312290001', '', '1', 'upload_files/candidate_tracker/56183865520__AJAYKUMAR_RESUME.pdf', NULL, '1', '2023-12-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles Will Not Sustain', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-29 05:07:11', 1, '2023-12-29 05:11:27', 0, NULL, 1),
(15996, 'Indhu venkatesan', '13', '8807198972', '', 'HINDHU0901@GMAIL.COM', '1998-01-09', 25, '6', '2', 'NA', 'NA', 25000.00, 2, 0.00, 3.00, 'Tiruttani', 'Tiruttani', '2312290002', '', '1', 'upload_files/candidate_tracker/26325625419_Indu Resume.pdf', NULL, '1', '2023-12-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles Will Not Sustain', '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-29 06:12:01', 1, '2023-12-29 06:21:10', 0, NULL, 1),
(15997, 'STAANIS P', '31', '9787852830', '', 'staanis20@gmail.com', '1998-06-20', 25, '2', '2', 'PANNEER SELVAM', 'FARMER', 250000.00, 2, 0.00, 120000.00, 'RAMANATHAPURAM', 'Chennai', '2312290003', '23', '1', 'upload_files/candidate_tracker/99429044882_RESUME .pdf', NULL, '1', '2023-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-29 06:12:26', 1, '2023-12-29 06:21:52', 0, NULL, 1),
(15998, 'mohan krishna', '16', '9677032775', '', 'mohankrishnapr54@gmail.com', '1995-11-17', 28, '3', '2', 'ramesh', 'busin', 40000.00, 1, 2.70, 3.50, 'chennai', 'chennai', '2312290004', '', '2', 'upload_files/candidate_tracker/62912618218_mohan.pdf', NULL, '1', '2023-12-29', 1, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-29 06:38:29', 1, '2023-12-29 06:52:33', 0, NULL, 1),
(15999, 'Tamil Selvan', '28', '6379496155', '', 'tamilselvan14696@gmail.com', '1996-06-14', 27, '3', '2', 'vedhamanickam', 'farmer', 35000.00, 2, 15000.00, 20000.00, 'guindy', 'guindy', '2312290005', '', '2', 'upload_files/candidate_tracker/63318207117_Tamilselvan V_CV.pdf', NULL, '1', '2023-12-29', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-29 07:07:39', 1, '2023-12-29 07:28:01', 0, NULL, 1),
(16000, 'Prabhu Raj', '28', '7449119269', '7358083827', 'prabhupro123@gmail.com', '1998-12-27', 25, '3', '2', 'kalaiarasan', 'gov staff', 40000.00, 1, 16000.00, 20000.00, 'west mambalam', 'west mambalam', '2312290006', '', '2', 'upload_files/candidate_tracker/71497893561_Resume.pdf', NULL, '1', '2023-12-29', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-29 07:07:47', 1, '2023-12-29 07:22:37', 0, NULL, 1),
(16001, 'Vignesh S', '6', '9551778241', '6381638052', 'vigneshsadz6197@gmail.com', '1997-09-06', 26, '3', '2', 'Sridhar', 'Event management', 35000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2312290007', '', '2', 'upload_files/candidate_tracker/84109584726_Resume 1.pdf', NULL, '1', '2023-12-29', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-29 07:09:55', 60, '2024-01-06 04:36:08', 0, NULL, 1),
(16002, 'Sivagurunathan', '13', '9344240813', '9500614285', 'sts.sivagurunathan@gmail.com', '1998-09-06', 25, '3', '2', 'Shanmugam', 'Dairy farm', 30000.00, 1, 0.00, 250000.00, 'Sankarankovil', 'Chennai', '2312300001', '', '1', 'upload_files/candidate_tracker/9435455870_sts.Sivagurunathan Resume.pdf', NULL, '1', '2023-12-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-30 05:06:07', 1, '2023-12-30 05:11:53', 0, NULL, 1),
(16003, 'Siva Sankaran M.R', '13', '9487379902', '', 'sankarsan9902@gmail.com', '2002-06-06', 21, '3', '2', 'Manoharan C', 'carpenter', 15000.00, 1, 0.00, 15000.00, 'Nagercoil', 'velachery,chennai', '2312300002', '', '1', 'upload_files/candidate_tracker/10660406231_Sankar_M_R_Resume-2.pdf', NULL, '1', '2023-12-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-12-30 05:16:27', 112, '2024-03-26 05:46:47', 0, NULL, 1),
(16004, 'SIVASAKTHI K', '13', '9025562661', '', 'sakthi.kootharasu@gmail.com', '2003-04-02', 20, '3', '2', 'KOOTHARAJU B', 'Driver', 25000.00, 2, 0.00, 15000.00, 'Ramanathapuram', 'Velachery, Chennai', '2312300003', '', '1', 'upload_files/candidate_tracker/46028777438_SAKTHI_K_Resume.pdf', NULL, '1', '2023-12-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-30 05:17:30', 1, '2023-12-30 05:22:12', 0, NULL, 1),
(16005, 'Sivanandham R', '28', '6380610330', '', 'sivanandhamr02@gmail.com', '2001-02-26', 22, '6', '2', 'Rajendran R', 'Daily wage worker', 20000.00, 0, 0.00, 2.50, 'Nathakadaiyur, kangayam, Tiruppur', 'S2inn PG, thirumalai Nagar, perungudi, Chennai', '2312300004', '', '1', 'upload_files/candidate_tracker/81910141134_Sivanandham.R.pdf', NULL, '1', '2023-12-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-30 05:19:25', 1, '2023-12-30 05:26:29', 0, NULL, 1),
(16006, 'Nivetha', '11', '7448313900', '', 'nivi34807@gmail.com', '2001-07-29', 22, '6', '2', 'Ravikumar', 'Painter', 200000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2312300005', '', '1', 'upload_files/candidate_tracker/88343881357_Updated hr.pdf', NULL, '1', '2023-12-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-12-30 07:04:27', 1, '2023-12-30 07:06:43', 0, NULL, 1),
(16007, '', '0', '8825448778', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2312300006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-12-30 10:37:04', 0, NULL, 0, NULL, 1),
(16008, 'Nikhil Renjith', '2', '7339445272', '', 'nikhilrenjith3@gmail.com', '1997-07-30', 26, '6', '2', 'Devanesan', 'Supervisor', 25000.00, 1, 0.00, 250000.00, 'Tirunelveli', 'Tirunelveli', '2401020001', '', '1', 'upload_files/candidate_tracker/29163277272_Nikhil - Resume.pdf', NULL, '1', '2024-01-02', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-02 03:56:26', 1, '2024-01-02 04:04:02', 0, NULL, 1),
(16009, 'Ganesh M', '31', '9566969179', '9442682194', 'mganesh120798@gmail.com', '1998-07-12', 25, '6', '2', 'Mohan T', 'Sculpture', 200000.00, 1, 280000.00, 300000.00, '1676, Pandiyan Street, Thilai Nager, Thanjavur', 'Karpaga Vinayagar Koil Street, Alandur', '2401020002', '', '2', 'upload_files/candidate_tracker/99824221307_Ganesh-exp.pdf', NULL, '1', '2024-01-02', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-02 04:36:04', 1, '2024-01-02 04:41:18', 0, NULL, 1),
(16010, 'NITHYANANTHAM', '33', '8667810411', '8072810411', 'stephennithya00@gmail.com', '2002-08-16', 21, '1', '2', 'Venkatesan', 'Cooli', 15000.00, 1, 0.00, 16000.00, 'Old washermenpet', 'Old washermenpet', '2401020003', '', '1', 'upload_files/candidate_tracker/84071447463_RESUME - nitiya.docx', NULL, '1', '2024-01-02', 0, '77795', '1', '104', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-02 06:13:45', 1, '2024-01-02 06:33:08', 0, NULL, 1),
(16011, 'Rameshkumar E', '7', '9659977732', '9489177732', 'rameshkumar3777@gmail.com', '1994-06-10', 29, '3', '1', 'Anubala', 'Private Job', 35000.00, 1, 17500.00, 20000.00, 'Chennai', 'Thirumulaivoual', '2401020004', '', '2', 'upload_files/candidate_tracker/78007658769_Rameshkumar Resume pdf.pdf', NULL, '1', '2024-01-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-02 06:13:50', 1, '2024-01-02 06:18:09', 0, NULL, 1),
(16012, 'P Dillibabu', '33', '9360187590', '7092101472', 'dillyvijay14102001@gmail.ycom', '2001-10-14', 22, '1', '2', 'Paranthaman', 'Watchman', 15000.00, 0, 0.00, 17000.00, 'Kodungaiyur', 'Kodungaiyur', '2401020005', '', '1', 'upload_files/candidate_tracker/79221988767_RESUME -dili.doc', NULL, '1', '2024-01-02', 0, '77795', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'interview taken by palani , he rejects this profile', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-02 06:16:03', 1, '2024-01-02 06:34:06', 0, NULL, 1),
(16013, 'R.Nowfil Ismail', '6', '7639488846', '8939398346', 'zmailnowfi@gmail.com', '2002-01-23', 21, '3', '2', 'A.Rahim Raja', 'Now no work', 40000.00, 2, 13000.00, 17000.00, 'Ramanathapuram District', 'Mannadi,chennai', '2401020006', '', '2', 'upload_files/candidate_tracker/68213253254_DOC-20230722-WA0013..pdf', NULL, '1', '2024-01-02', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-02 06:48:04', 104, '2024-01-03 06:50:50', 0, NULL, 1),
(16014, 'Sumaitha Banu', '6', '7305761027', '6380040739', 'banuquinn840@gmail.com', '2002-04-18', 21, '3', '2', 'Rahamathulla', 'Cooking Master', 15000.00, 2, 0.00, 15000.00, 'Padappai', 'Padappai', '2401020007', '', '2', 'upload_files/candidate_tracker/58715052036_banu RESUME-1.pdf', NULL, '1', '2024-01-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-02 06:49:42', 104, '2024-01-03 06:52:36', 0, NULL, 1),
(16015, 'sanjeeth', '6', '7338994511', '', 'dantesanjeethkv@gmail.com', '1996-11-10', 27, '3', '2', 'fathername kumar', 'provisional storw', 20000.00, 1, 158000.00, 3.50, 'chennai', 'chennai', '2401020008', '', '2', 'upload_files/candidate_tracker/13690578158_Sanjeeth.docx', NULL, '1', '2024-01-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-02 07:31:15', 108, '2024-01-02 01:30:35', 0, NULL, 1),
(16016, 'Rehan Abraham', '16', '9003172696', '9444753927', 'Rehanabraham10@gmail.com', '1994-10-20', 29, '3', '1', 'Stephen', 'Business', 30000.00, 1, 20000.00, 30000.00, 'Chennai', 'Chennai', '2401020009', '', '2', 'upload_files/candidate_tracker/85468694288_Rehan Abraham 2023.pdf', NULL, '1', '2024-01-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-02 07:31:55', 108, '2024-01-02 01:30:17', 0, NULL, 1),
(16017, 'Varsha', '6', '9566005141', '9360291976', 'varshasanthoshkumar08@gmail.com', '2000-04-08', 23, '2', '1', 'Narayanan', 'Business', 12000.00, 2, 14999.00, 17000.00, 'Kodungaiyur', 'Kodungaiyur', '2401020010', '1', '2', 'upload_files/candidate_tracker/98871513465_VARSHA.docx', NULL, '1', '2024-01-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-02 09:18:48', 104, '2024-01-03 06:56:56', 0, NULL, 1),
(16018, 'mohamed shareef', '31', '8681040209', '', 'mohamedshareef986@gmail.com', '1999-10-18', 24, '3', '2', 'asamed anwer', 'driver', 10000.00, 2, 0.00, 15000.00, 'thanjavur', 'chennai', '2401020011', '', '1', 'upload_files/candidate_tracker/5273685125_mohamed shareef cv-1.pdf', NULL, '1', '2024-01-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-02 10:06:20', 1, '2024-01-02 11:08:33', 0, NULL, 1),
(16019, 'Ramasundaram G', '2', '8428848694', '9025112035', 'ramjai0787@gmail.com', '2000-11-08', 23, '6', '2', 'Ganesan N', 'Daily wages', 30000.00, 2, 0.00, 180000.00, 'Salem', 'Salem', '2401030001', '', '1', 'upload_files/candidate_tracker/62379337554_RAM FINALLY.pdf', NULL, '1', '2024-01-03', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '1', '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-03 03:36:48', 1, '2024-01-03 03:40:08', 0, NULL, 1),
(16020, 'R mohanapriya', '7', '7358626810', '7299497029', 'priyaramamoorthi1996@gmail.com', '2009-01-03', 0, '2', '2', 'Pandeeswari', 'Dtdc', 15000.00, 1, 16900.00, 21000.00, '147 Shanmugapilai st mylapore', '147 shanmugapilai st', '2401030002', '1', '2', 'upload_files/candidate_tracker/35190607265_Mohanapriya resume.pdf', NULL, '1', '2024-01-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-03 04:30:57', 108, '2024-01-03 10:24:51', 0, NULL, 1),
(16021, 'Sathishkumar', '13', '9688177210', '', 'sathishchellamuthu22@gmail.com', '1999-01-22', 24, '6', '2', 'Chellamuthu', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Madurai', 'Adyar, Chennai', '2401030003', '', '1', 'upload_files/candidate_tracker/44476976481_Sathishkumar C(nov 1) 2.pdf', NULL, '1', '2024-01-03', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-03 04:33:21', 1, '2024-01-03 04:41:52', 0, NULL, 1),
(16022, 'Brindha N', '6', '6385862724', '', 'brindhanarayanasamy202@gmail.com', '2001-06-08', 22, '1', '2', 'Jansi rani', 'House wife', 200000.00, 1, 0.00, 20000.00, 'VIRUDHUNAGAR', 'Vadapalani', '2401030004', '', '1', 'upload_files/candidate_tracker/60944663597_White Simple Student CV Resume (6).pdf', NULL, '1', '2024-01-03', 0, '77840', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-03 05:04:52', 104, '2024-01-03 06:58:55', 0, NULL, 1),
(16023, 'Nitheesh B', '31', '9962958537', '9962997050', 'nitheeshkanna20@gmail.com', '2001-10-20', 22, '3', '2', 'Bhoopalan K', 'Daily wages', 8000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2401030005', '', '1', 'upload_files/candidate_tracker/61764121393_Nitheesh_B_Resume_18-10-2023-09-42-30.pdf', NULL, '1', '2024-01-03', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-03 05:09:57', 1, '2024-01-03 05:15:51', 0, NULL, 1),
(16024, 'Mahasri', '13', '9626427273', '9698467274', 'Smahasri@outlook.com', '2003-07-24', 20, '3', '2', 'Senthilnathan', 'Driver', 15000.00, 1, 0.00, 10000.00, 'No:13/14 ,Ram Rao garden 1st street,Royapettah', 'Royapettah, chennai', '2401030006', '', '1', 'upload_files/candidate_tracker/24321914763_MAHASRI_S.pdf', NULL, '1', '2024-01-03', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '1', '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-03 05:30:48', 1, '2024-01-03 05:43:06', 0, NULL, 1),
(16025, 'Nitheesh B', '13', '9962997050', '9962958537', 'nitheeshkanna20@gmail.com', '2001-10-20', 22, '3', '2', 'Bhoopalan K', 'Daily wages', 8000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2401030007', '', '1', 'upload_files/candidate_tracker/11387109528_Nitheesh_B_Resume_18-10-2023-09-42-30.pdf', NULL, '1', '2024-01-03', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-03 05:31:39', 1, '2024-01-03 05:32:55', 0, NULL, 1),
(16026, 'Sneha', '33', '9367486888', '7200326015', 'snegamurali13@gmail.com', '2001-06-13', 22, '3', '2', 'Murali', 'Agricultural', 45000.00, 1, 0.00, 14500.00, 'Kavaraipettai, Thiruvallur District', 'Kavaraipettai, Thiruvallur District', '2401030008', '', '1', 'upload_files/candidate_tracker/32119382662_1700205559371_SNEHA (RESUME).docx', NULL, '1', '2024-01-03', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-03 05:32:51', 1, '2024-01-03 05:38:32', 0, NULL, 1),
(16027, 'S.Sheeba', '4', '7845177662', '9840795612', 'sheebass116@gmail.com', '2001-06-20', 22, '1', '2', 'V.Sounder', 'Machine operator', 20000.00, 0, 0.00, 15.00, 'Town', 'Town', '2401030009', '', '1', 'upload_files/candidate_tracker/79612485713_PDF Gallery_20240103_123827.pdf', NULL, '1', '2024-01-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-03 06:56:29', 1, '2024-01-03 07:19:29', 0, NULL, 1),
(16028, 'R.Reetamary', '4', '8939241076', '9962082050', 'reetamary8939@gmail.com', '2002-10-13', 21, '1', '2', 'P.Ruben', 'Machine operator', 20000.00, 1, 0.00, 15000.00, 'No:72, Zaheer Hussain street', 'Manali, Chennai -68', '2401030010', '', '1', 'upload_files/candidate_tracker/50338904263_PDF Gallery_20230822_124707.pdf', NULL, '1', '2024-01-03', 0, 'Reference', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-03 06:56:31', 1, '2024-01-03 07:35:18', 0, NULL, 1),
(16029, '', '0', '9940219562', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401030011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-03 07:43:48', 0, NULL, 0, NULL, 1),
(16030, 'Divya U', '11', '9940102340', '8015957116', 'divyaumashanker@gmail.com', '2002-06-04', 21, '3', '2', 'Umashanker D', 'Own business', 40000.00, 1, 0.00, 5000.00, '29,kannammal nagar, Valasaravakkam, chennai', '29,Kannammal Nagar, Valasaravakkam, Chennai', '2401030012', '', '1', 'upload_files/candidate_tracker/46087190983_225111024 - Divya U Resume 5.pdf', NULL, '1', '2024-01-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-03 09:38:53', 1, '2024-01-03 09:45:58', 0, NULL, 1),
(16031, 'Balaji', '16', '9841356343', '7357384913', 'raghulbalaji98@gmail.com', '1999-05-08', 24, '2', '2', 'Parent', 'Clerk', 12000.00, 1, 15000.00, 25000.00, 'Oldwashermanpet', 'Oldwashermanpet', '2401030013', '1', '2', 'upload_files/candidate_tracker/12463611172_Balaji Experience 2023 31 date.pdf', NULL, '1', '2024-01-04', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for NDA in MIS Will not sustain and pressure handling in our roles doubtfull not suitable', '3', '1', '', '1', '3', '', '2', '1970-01-01', '3', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-03 12:53:33', 104, '2024-01-04 07:05:27', 0, NULL, 1),
(16032, 'Sowngharaya v', '4', '8270764306', '', 'Sowndharyacivil99@gmail.com', '1999-06-24', 24, '2', '2', 'Vadivel', 'Bus conductor', 20000.00, 4, 18500.00, 14000.00, 'Kallaperambur', 'Kallaperambur', '2401030014', '1', '2', 'upload_files/candidate_tracker/34692162237_SOUNDRIYA - RESUME.pdf', NULL, '1', '2024-01-04', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-03 12:56:04', 104, '2024-01-04 07:05:41', 0, NULL, 1),
(16033, 'sanjay l', '5', '9176111243', '8428396342', 'lakshmipathysanjay@gmail.com', '1998-11-29', 25, '1', '2', 'lakshmipathy', 'working', 30000.00, 0, 23000.00, 30000.00, 'chennai', 'chennai', '2401030015', '', '2', 'upload_files/candidate_tracker/66495262649_New resume.pdf', NULL, '1', '2024-01-04', 0, '55716', '3', '59', '2024-01-08', 320000.00, '', '3', '2026-03-26', '1', 'Selected for Shanmugam Team in staff Role Gaurav Sir Final Round Committed Jan 1L Feb 1.5 L MF 15K then 3.5 LPA in Mar 2024', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-03 01:14:26', 60, '2024-01-08 10:24:46', 0, NULL, 1),
(16034, 'Gokul M', '2', '9360829596', '8056661639', 'gokulmadheshwaran1@gmail.com', '2003-07-28', 20, '6', '2', 'Madheshwaran KC', 'Powerloom', 30000.00, 2, 0.00, 25000.00, '135I,Apex Colony, Anagoor road, komarapalayam', '135I,Apex Colony, Anagoor road, komarapalayam', '2401040001', '', '1', 'upload_files/candidate_tracker/75683094099_Gokul_resume.pdf', NULL, '1', '2024-01-04', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 04:01:03', 1, '2024-01-04 04:05:46', 0, NULL, 1),
(16035, '', '0', '6379876668', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401040002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-04 04:38:12', 0, NULL, 0, NULL, 1),
(16036, 'Abdul Rahman', '13', '9159096677', '', 'abdulramann923@gmail.com', '2000-09-23', 23, '3', '2', 'Nagoor ghani', 'Driver', 10000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Chennai', '2401040003', '', '1', 'upload_files/candidate_tracker/30884259156_Abdul Rahman_Resume.pdf', NULL, '1', '2024-01-04', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 04:41:33', 1, '2024-01-04 04:44:11', 0, NULL, 1),
(16037, 'Sivahariharan A', '2', '8667044452', '', 'sivahariharan789@gmail.com', '2002-04-21', 21, '3', '2', 'Athilingam M', 'PDS salesman', 20000.00, 2, 0.00, 15000.00, 'Mela panikulam, Thoothukudi dist', 'Mela Panikulam, Thoothukudi Dist', '2401040004', '', '1', 'upload_files/candidate_tracker/55744330332_sivahariharan.pdf', NULL, '1', '2024-01-04', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 05:03:22', 1, '2024-01-04 05:09:03', 0, NULL, 1),
(16038, 'Patrick Maria Susai', '31', '9677945808', '9600491844', 'patrickms567@gmail.com', '2001-06-13', 22, '3', '2', 'Sagayaraj M', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Trichy', 'Chennai', '2401040005', '', '1', 'upload_files/candidate_tracker/10581124726_PATRICK\'s resume.pdf (1).pdf', NULL, '1', '2024-01-04', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 05:11:34', 1, '2024-01-04 05:27:32', 0, NULL, 1),
(16039, 'Manikandan S', '13', '7397454304', '', 'manisubresh22@gmail.com', '2003-03-22', 20, '3', '2', 'Subramani', 'Late', 50000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2401040006', '', '1', 'upload_files/candidate_tracker/60068764412_Manikandan Subramani Resume Updated.pdf', NULL, '1', '2024-01-04', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 05:16:35', 1, '2024-01-04 05:23:10', 0, NULL, 1),
(16040, 'Selvamani S', '13', '7021229924', '', 'selvamanisoundar24@gmail.com', '2000-07-24', 23, '6', '2', 'Soundarraj T', 'Driver', 18000.00, 2, 0.00, 10000.00, '3/53,Nadu Theru, Issukazhi, Tiruvannamalai 606804', 'Surya men PG,kamakoti Nagar,Pallikaranai,600100', '2401040007', '', '1', 'upload_files/candidate_tracker/31661716790_Selvamani_S (1).pdf', NULL, '1', '2024-01-04', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-04 05:28:09', 104, '2024-01-04 11:36:13', 0, NULL, 1),
(16041, 'Siva Prasad.R', '13', '6379876658', '9443071211', 'sivaprasadstr@gmail.com', '2002-06-15', 21, '6', '2', 'Bhuvaneswari.R', 'House wife', 20000.00, 1, 0.00, 20000.00, 'B-10 Maragatham Complex,Koranad', 'Mayiladuthurai', '2401040008', '', '1', 'upload_files/candidate_tracker/4235398750_Sivakumar.M-BE.pdf', NULL, '1', '2024-01-04', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 05:35:00', 1, '2024-01-04 05:39:13', 0, NULL, 1),
(16042, 'Jaya Preetha', '13', '9894948600', '', 'mayapreetha39@gmail.com', '2002-06-26', 0, '6', '2', 'Ravi', 'Daily wages', 20000.00, 0, 0.00, 10000.00, 'Vellore', 'Chennai', '2401040009', '', '1', 'upload_files/candidate_tracker/6838898361_JayaPreetha_Resume.pdf', NULL, '1', '2024-01-04', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 05:44:52', 1, '2024-01-04 05:58:30', 0, NULL, 1),
(16043, 'Mohamed ibrahim', '3', '7449227883', '', 'Ibumohamed2001@gmail.com', '2001-12-06', 22, '2', '2', 'Majeetha', '.', 15000.00, 3, 15000.00, 35000.00, 'Chennai, Triplicane', 'Chennai, Triplicane', '2401040010', '1', '2', 'upload_files/candidate_tracker/54965288731_Mohamed Ibrahim (1).pdf', NULL, '1', '2024-01-08', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-01-04 05:57:53', 110, '2024-01-31 10:09:25', 0, NULL, 1),
(16044, 'mohammed raffik', '5', '8608652405', '', 'raffikgaffar@gmail.com', '1994-09-23', 29, '2', '2', 'mohideen gaffar', 'genelist', 30000.00, 1, 15000.00, 20000.00, 'chennai', 'chennai', '2401040011', '1', '2', 'upload_files/candidate_tracker/56170019423_DOC-20230221-WA0006.pdf', NULL, '1', '2024-01-04', 0, '', '3', '59', '2024-01-08', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Babu  Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-04 06:14:58', 60, '2024-01-06 06:59:20', 0, NULL, 1),
(16045, '', '0', '8015132820', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401040012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-04 07:31:45', 0, NULL, 0, NULL, 1),
(16046, 'Venkatesh', '5', '7395994138', '', 'teshvenkat997@gmail.com', '2000-07-17', 23, '1', '2', 'Sasikala', 'Working', 10000.00, 2, 18000.00, 22000.00, 'Saidapet', 'Saidapet', '2401040013', '', '2', 'upload_files/candidate_tracker/21109506314_Resume _compressed.pdf', NULL, '1', '2024-01-04', 15, '123', '5', '105', NULL, 0.00, '', '0', NULL, '1', 'Voice is Very Low And Appearance is Not Good', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 07:51:36', 1, '2024-01-04 08:09:34', 0, NULL, 1),
(16047, 'Brahadeesh Murugan', '13', '9566013021', '', 'brahadeesh1701@gmail.com', '1992-01-17', 31, '3', '2', 'G Murugan', 'Developer', 100000.00, 0, 405000.00, 405000.00, 'Chennai', 'Chennai', '2401040014', '', '2', 'upload_files/candidate_tracker/48589354976_BrahadeeshMurugan_Resume.pdf', NULL, '1', '2024-01-04', 1, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 08:51:51', 1, '2024-01-04 10:01:42', 0, NULL, 1),
(16048, 'Shobha', '33', '7397291933', '', 'Shobha73rd@gmail.com', '1999-02-17', 24, '3', '2', 'Ravichandran', 'Laundry', 8000.00, 1, 420000.00, 600000.00, '2/405, 38th street, muthamizh Nagar, kodungaiyur', '2/405, 38th street, Muthamizh Nagar, kodungaiyur', '2401040015', '', '2', 'upload_files/candidate_tracker/52535019473_Shobha Ravichandran_compressed.pdf', NULL, '1', '2024-01-04', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Sustainability Salary exp is very high 4.2 LPA current CTC just 1 yrs Exp in accounts', '4', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 09:19:00', 1, '2024-01-04 09:49:07', 0, NULL, 1),
(16049, 'Manojkumar', '13', '9361332167', '', 'manojkumar100674@gmail.com', '2001-08-19', 22, '6', '2', 'Anbumalar', 'Teacher', 60000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Kumbakonam', '2401040016', '', '1', 'upload_files/candidate_tracker/17566263236_MANOJKUMAR-RESUME-2.pdf', NULL, '1', '2024-01-04', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 09:21:35', 1, '2024-01-04 09:32:04', 0, NULL, 1),
(16050, 'Praveen Kumar M', '13', '9360532980', '', 'mvpraveenkumar24@gmail.com', '2002-04-24', 21, '3', '2', 'Mathiyazhagan M', 'Auto Driver', 7000.00, 1, 0.00, 350000.00, 'Mannargudi', 'Mannargudi', '2401040017', '', '1', 'upload_files/candidate_tracker/31483724573_blue professional modern CV resume.pdf', NULL, '1', '2024-01-04', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 09:22:08', 1, '2024-01-04 09:44:20', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16051, 'Ranjith Kumar V K', '13', '8344486980', '', 'ranjithvk57@gmail.com', '2002-08-14', 21, '6', '2', 'Kirubakaran V R', 'Weaver', 8000.00, 0, 0.00, 250000.00, 'Thanjavur', 'Thanjavur', '2401040018', '', '1', 'upload_files/candidate_tracker/66766767406_Ranjith Kumar.pdf', NULL, '1', '2024-01-04', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 09:23:54', 1, '2024-01-04 09:32:34', 0, NULL, 1),
(16052, 'B.keerthai', '6', '8220963172', '8220115289', 'keerthikacat1012@gmail.com', '2000-03-10', 23, '1', '2', 'Baskar', 'Former', 20000.00, 2, 0.00, 20000.00, 'Kumbakonam', 'Walajapath', '2401040019', '', '2', 'upload_files/candidate_tracker/85248743645_document.pdf keerthaka r.pdf', NULL, '1', '2024-01-04', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-04 09:45:09', 104, '2024-01-04 07:02:27', 0, NULL, 1),
(16053, 'R. K. Amirtha varshini', '6', '9361468346', '9363170120', 'amirthaindira@22gmail.com', '2000-08-22', 23, '1', '2', 'G. Radhakrishnan', 'Former', 20000.00, 3, 0.00, 20000.00, 'Kumbakonam', 'Walajabath', '2401040020', '', '2', 'upload_files/candidate_tracker/61477450483_amirtha.pdf', NULL, '1', '2024-01-04', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-04 09:46:57', 104, '2024-01-04 07:02:35', 0, NULL, 1),
(16054, 'R.karpagam', '6', '8122236898', '8220314585', 'nithi1551998@gmail.com', '1998-05-15', 25, '1', '2', 'N.ravi', 'Farmer', 20000.00, 2, 19000.00, 20000.00, 'Kombakonam', 'Walajabath', '2401040021', '', '2', 'upload_files/candidate_tracker/54786710023_downloadfile.pdf', NULL, '1', '2024-01-04', 2, '12345', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-04 09:48:01', 104, '2024-01-04 07:03:14', 0, NULL, 1),
(16055, 'Abdul Majith', '13', '7305165604', '', 'majithabdul31@Gmail.com', '2001-12-19', 22, '6', '2', 'Seeni Ibramusha', 'Farmer', 15000.00, 2, 0.00, 3.00, 'Chennai', 'Chennai', '2401040022', '', '1', 'upload_files/candidate_tracker/88362498330_ABDUL MAJITH_B.TECH_IT_2023_FULLSTACK_DEVELOPER.pdf', NULL, '3', '2024-01-04', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 10:37:04', 1, '2024-01-04 10:40:22', 0, NULL, 1),
(16056, 'Gokulakrishnan R', '13', '9363484191', '', 'gokulakrishnanr003@gmail.com', '2003-06-30', 20, '3', '2', 'Ragupathy N', 'Advocate', 20000.00, 4, 0.00, 2.50, 'Thiruvannamalai', 'Chennai', '2401040023', '', '1', 'upload_files/candidate_tracker/38643898613_GOKULAKRISHNAN_R_1698317808220.pdf', NULL, '1', '2024-01-04', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 10:43:21', 1, '2024-01-04 10:50:04', 0, NULL, 1),
(16057, 'Siva E', '13', '9092561392', '', 'siva2003e@gmail.com', '2003-06-10', 20, '3', '2', 'Elumalai M', 'Farmer', 30000.00, 2, 0.00, 2.50, 'Tiruvannamalai', 'Chennai', '2401040024', '', '1', 'upload_files/candidate_tracker/75530496094_Siva_Bsc_Java Developer.pdf', NULL, '1', '2024-01-04', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-04 10:46:06', 1, '2024-01-04 10:50:59', 0, NULL, 1),
(16058, 'Vishaal K L', '16', '6374433563', '', 'vishaalln03@gmail.com', '2003-02-11', 20, '2', '2', 'Priya R', 'Fresher', 0.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2401040025', '1', '1', 'upload_files/candidate_tracker/37012361183_vishaalCV01.pdf', NULL, '1', '2024-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok not mcuh comfort in NDA Sustainability Doubts if he comes back let us try', '3', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-04 01:26:53', 104, '2024-01-05 07:01:48', 0, NULL, 1),
(16059, 'bharathkumar', '6', '9150773988', '6382601567', 'ajayajay0321@gmail.com', '2002-10-13', 21, '1', '2', 'nandhakumar', 'salary', 40000.00, 1, 17500.00, 25000.00, 'chennai', 'chennai', '2401040026', '', '2', 'upload_files/candidate_tracker/34788242234_pavith resume new .pdf', NULL, '3', '2024-01-08', 15, '77811', '3', '59', '2024-01-18', 204000.00, '', '5', '1970-01-01', '1', 'Selected for Babu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-04 01:37:54', 60, '2024-01-18 10:05:45', 0, NULL, 1),
(16060, 'Dhamotharan', '13', '7639575867', '8056336091', 'dhamotharan21072@gmail.com', '1999-07-21', 24, '2', '2', 'Sangeetha', 'Home maker', 30000.00, 1, 0.00, 300000.00, 'Chrompet', 'Chrompet', '2401040027', '1', '1', 'upload_files/candidate_tracker/98141390494_Dhamotharan_Resume (3).pdf', NULL, '1', '2024-01-05', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-01-04 02:00:22', 110, '2024-01-20 03:07:53', 0, NULL, 1),
(16061, '', '0', '8124864203', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401050001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-05 05:15:01', 0, NULL, 0, NULL, 1),
(16062, 'G.Eswar', '13', '9710245924', '', 'eswarsarog@gmail.com', '2003-04-06', 20, '3', '2', 'Gunasekaran', 'Lic agent', 27000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2401050002', '', '1', 'upload_files/candidate_tracker/57309311775_Resume-4.pdf', NULL, '1', '2024-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-05 05:15:16', 1, '2024-01-05 06:32:19', 0, NULL, 1),
(16063, 'Nisar', '5', '8754277059', '', 'nisar.ni2166@gmail.com', '1998-01-26', 25, '1', '2', 'Kadhar', 'No', 20.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2401050003', '', '1', 'upload_files/candidate_tracker/64219968811_NISAR (1).pdf', NULL, '1', '2024-01-05', 0, 'Cafsur00626', '1', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-05 05:28:01', 104, '2024-01-05 03:32:17', 0, NULL, 1),
(16064, 'Ragland Jesudasan', '4', '9790380559', '', 'raglandjesudasan@gmail.com', '1997-09-03', 26, '2', '2', 'sophia', 'teacher', 60000.00, 1, 0.00, 18000.00, 'mission new street thanjavur', 'mission new street', '2401050004', '1', '2', 'upload_files/candidate_tracker/35248382215_My CV Updated.pdf', NULL, '1', '2024-01-05', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-05 05:32:29', 108, '2024-01-05 11:17:37', 0, NULL, 1),
(16065, '', '0', '9790207832', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401050005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-05 06:03:45', 0, NULL, 0, NULL, 1),
(16066, 'Ramya', '4', '9843917731', '9003870403', 'estheramya84@gmail.com', '1992-08-04', 31, '2', '2', 'Srinivasan', 'Business', 150000.00, 1, 12.00, 15.00, 'Pattukkottai', 'Pattukkottai', '2401050006', '1', '2', 'upload_files/candidate_tracker/10779743446_Raamya resume new-2.pdf', NULL, '1', '2024-01-05', 7, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-05 06:12:43', 108, '2024-01-06 06:33:52', 0, NULL, 1),
(16067, 'S.Naveen', '13', '8124864208', '9677133462', 'Na4140749@gmail.com', '2003-06-20', 20, '3', '2', 'P.simon', 'Supervisor', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2401050007', '', '1', 'upload_files/candidate_tracker/30177186209_Resume-4.pdf', NULL, '1', '2024-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-05 06:48:42', 1, '2024-01-05 06:53:02', 0, NULL, 1),
(16068, 'saran sriram', '16', '7824077228', '9500115476', 'ksaransriram2875@gmail.com', '1998-05-28', 25, '2', '2', 'usha', 'house wife', 50000.00, 1, 20000.00, 30000.00, 'chennai', 'chennai', '2401050008', '1', '2', 'upload_files/candidate_tracker/40531707434_CV-SARAN SRIRAM .pdf', NULL, '1', '2024-01-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending the 2nd level interview \n', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-05 12:07:11', 104, '2024-01-06 10:16:27', 0, NULL, 1),
(16069, 'Bensan Ambrose', '6', '9944136609', '', 'bensan0401@gmail.com', '1999-01-04', 25, '6', '2', 'Babu A (father)', 'A/c Mechanic', 40000.00, 1, 0.00, 20000.00, 'Mugalivakkam, ch-600128.', 'Mugalivakkam, Ch-600128.', '2401060001', '', '1', 'upload_files/candidate_tracker/71303214025_BENSAN_s_Resume.pdf', NULL, '1', '2024-01-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Timings not open for NDA will not sustain and handle our role not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-06 02:42:51', 104, '2024-01-06 06:44:56', 0, NULL, 1),
(16070, 'Karnan', '13', '9566759730', '', 'karanpmk2001@gmail.com', '2001-03-04', 22, '3', '2', 'Muniyandi', 'Manson', 25000.00, 1, 0.00, 18000.00, 'Ramanathapuram', 'Chennai', '2401060002', '', '1', 'upload_files/candidate_tracker/82953224622_Resume8.pdf', NULL, '1', '2024-01-08', 0, '', '10', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-06 05:06:22', 104, '2024-01-08 06:54:26', 0, NULL, 1),
(16071, 'Suresh R', '4', '9384330306', '9944948666', 'sureshda1578@gmail.com', '2000-03-21', 23, '2', '2', 'Shanthi', 'Weaver', 10000.00, 4, 0.00, 14000.00, 'Thanjavur', 'Thanjavur', '2401060003', '1', '1', 'upload_files/candidate_tracker/48032482126_y.pdf', NULL, '1', '2024-01-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-06 05:34:35', 108, '2024-01-06 06:35:34', 0, NULL, 1),
(16072, '', '0', '6385305268', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401060004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-06 06:20:43', 0, NULL, 0, NULL, 1),
(16073, 'Aravind', '15', '7305293395', '', 'Aravindaara007@gmail.com', '2002-03-19', 21, '3', '2', 'Parent', 'Labour', 35000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2401060005', '', '1', 'upload_files/candidate_tracker/72822339339_POS-Family-Health-Optima-Insurance-Plan-proposal.pdf', NULL, '1', '2024-01-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles will not sustain\n', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-06 06:22:24', 1, '2024-01-06 06:51:42', 0, NULL, 1),
(16074, 'IRBAZ AHMED', '5', '6383722676', '9944304142', 'irbazoffcial1@gmail.com', '2001-08-08', 22, '2', '2', 'Shameel', 'Labour', 275000.00, 1, 35000.00, 40000.00, '3/1,1st street aayisha bhi nagar ambur', 'No 12 1st block , tnhb aathipet ambattur', '2401060006', '1', '2', 'upload_files/candidate_tracker/84564321431_ABC UPDATED RESUME (1).pdf', NULL, '1', '2024-01-06', 15, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expecting huge package which will not match for his experience and skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-06 06:29:05', 108, '2024-01-06 06:34:42', 0, NULL, 1),
(16075, 'Rasapalli shaik Abubakar siddiq', '13', '8978184535', '9701039740', 'Shaikabubakarsiddiq337@gmail.com', '1999-09-19', 24, '3', '2', 'shaik kashim', 'farmer', 30000.00, 2, 0.00, 35000.00, 'Prashanth Nagar Madanapalle', 'Madanapalle', '2401060007', '', '1', 'upload_files/candidate_tracker/81916487216_Rasapalli_Shaik Abubakar Siddiq_Resume_07-10-2023-11-58-31.pdf', NULL, '1', '2024-01-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-06 06:47:26', 1, '2024-01-06 06:52:18', 0, NULL, 1),
(16076, 'Manoj kumar', '13', '8870385910', '9080044550', 'manojkumar272915@gmail.com', '1999-10-06', 24, '3', '2', 'Lakshmanan sha', 'Printer', 18000.00, 1, 0.00, 3.00, 'Tiruppur', 'Tiruppur', '2401060008', '', '1', 'upload_files/candidate_tracker/59754519504_job (1).pdf', NULL, '1', '2024-01-08', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-06 06:47:58', 1, '2024-01-06 06:50:55', 0, NULL, 1),
(16077, 'Varun Gandhi', '5', '6362330612', '', 'vgandhi.vg66@gmail.com', '1991-08-19', 32, '2', '1', 'Bhumika kp', 'Software engineer', 100000.00, 1, 360000.00, 500000.00, 'Bangalore', 'Bangalore', '2401060009', '1', '2', 'upload_files/candidate_tracker/7686988902_Varun Gandhi Resume1_240106_123819.pdf', NULL, '1', '2024-01-06', 0, '', '3', '59', '2024-01-12', 450000.00, '', '3', '2024-12-03', '1', 'Selected for Sathish Bangalore in staff Role', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-06 06:53:41', 60, '2024-01-12 10:36:39', 0, NULL, 1),
(16078, 'V Sunandha Devi', '5', '9789822706', '', 'sunandha0001@gmail.com', '1992-12-30', 31, '2', '1', 'R Parthasarathy', 'Supervisor', 40.00, 2, 22.00, 30.00, 'Mugappair', 'Ayanavaram', '2401060010', '1', '2', 'upload_files/candidate_tracker/86727750754_Updated Resume_Sunandhadevi Oct 2023.pdf', NULL, '1', '2024-01-06', 1, '', '1', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-06 08:32:23', 108, '2024-01-06 06:36:18', 0, NULL, 1),
(16079, '', '0', '9176226132', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-06 09:05:42', 0, NULL, 0, NULL, 1),
(16080, 'Jagadeeshwaran', '13', '9710156166', '9677240750', 'jagadeeshw67@gmail.com', '1999-10-18', 24, '6', '2', 'Parameswaran', 'Tiles worker', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2401060012', '', '1', 'upload_files/candidate_tracker/53226118218_MY RESUME.pdf', NULL, '1', '2024-01-06', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-06 09:19:07', 1, '2024-01-06 09:22:31', 0, NULL, 1),
(16081, 'Ajith', '27', '9597519727', '8300955827', 'ajithp9853@gmail.com', '1998-03-05', 25, '3', '2', 'Padma', 'Nil', 10000.00, 2, 0.00, 5000.00, 'Chennai', 'Chennai', '2401060013', '', '1', 'upload_files/candidate_tracker/45260105453_P.AJITH1-compressed.pdf', NULL, '1', '2024-01-06', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-06 09:23:39', 1, '2024-01-06 09:25:46', 0, NULL, 1),
(16082, 'Prabin', '27', '9159294546', '8300646885', 'Prabinraj8300@gmail.com', '1998-06-14', 25, '3', '2', 'Raj', 'Cooli', 12000.00, 1, 0.00, 12000.00, 'Kanyakumari', 'Perungulathur', '2401060014', '', '1', 'upload_files/candidate_tracker/56071238845_PRABIN.R.pdf', NULL, '1', '2024-01-06', 0, '', '5', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Not Joined', '', '', '', NULL, NULL, NULL, 1, '2024-01-06 09:23:44', 110, '2024-02-08 06:27:11', 0, NULL, 1),
(16083, 'U Akash', '16', '6380803656', '8838005471', 'akh007546@gmail.com', '1999-09-18', 24, '4', '2', 'R Udhayakumar', 'Former', 20000.00, 2, 0.00, 18000.00, 'Chidambaram', 'Chennai', '2401060015', '', '2', 'upload_files/candidate_tracker/64550521086_Akash Resume.pdf', NULL, '1', '2024-01-08', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-06 09:36:55', 1, '2024-01-08 07:44:53', 0, NULL, 1),
(16084, '', '0', '8428191142', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401070001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-07 08:08:05', 0, NULL, 0, NULL, 1),
(16085, 'S. SANJAYKUMAR', '13', '9791221771', '', 'ssanjaykumarbsc@gmail.com', '2001-03-25', 22, '6', '2', 'C. Srinivasan', 'Labour', 18000.00, 1, 0.00, 2.80, 'Namakkal', 'Chennai', '2401080001', '', '1', 'upload_files/candidate_tracker/51368468928_Resume sanjay.pdf', NULL, '1', '2024-01-08', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-08 04:18:05', 1, '2024-01-08 04:22:46', 0, NULL, 1),
(16086, 'NareshKrishnan T', '6', '9840984855', '9464347647', 'nareshstr1111@outlook.com', '1998-10-23', 25, '2', '2', 'Thirumal', 'Mason', 300000.00, 2, 180000.00, 23000.00, 'Porur', 'Porur', '2401080002', '1', '2', 'upload_files/candidate_tracker/51650365398_Naresh Resume.pdf', NULL, '1', '2024-01-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-08 04:38:49', 104, '2024-01-08 03:35:09', 0, NULL, 1),
(16087, 'Naveen Kumar R', '13', '8608980781', '', 'naveenrsk24@gmail.com', '2001-07-24', 22, '6', '2', 'Ramamurthy N', 'Car-Driver', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2401080003', '', '1', 'upload_files/candidate_tracker/87286016092_Naveen Kumar.pdf', NULL, '1', '2024-01-08', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-08 04:58:15', 1, '2024-01-08 05:04:08', 0, NULL, 1),
(16088, 'KANNAN S', '31', '8825600351', '', 'kannanimax2010@gmail.com', '2000-03-11', 23, '6', '2', 'Nayagam', 'Housewife', 8000.00, 1, 0.00, 15000.00, 'Perugudi', 'Perugudi', '2401080004', '', '1', 'upload_files/candidate_tracker/48331871988_KANNAN S_ReSume.pdf', NULL, '1', '2024-01-08', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-08 05:09:18', 1, '2024-01-08 05:41:12', 0, NULL, 1),
(16089, 'Maghalakshmi R', '13', '9499900455', '', 'maghalakshmir@gmail.com', '2002-06-02', 21, '3', '2', 'Ramesh M', 'Welder', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2401080005', '', '1', 'upload_files/candidate_tracker/33467733110_Resume-4.pdf', NULL, '1', '2024-01-08', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-08 05:12:04', 1, '2024-01-08 05:54:51', 0, NULL, 1),
(16090, 'Harini K', '31', '9841721469', '', 'Harini13092001@gmail.com', '2001-09-13', 22, '3', '2', 'Kalyanakumar S', 'Purchase manager', 20000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2401080006', '', '1', 'upload_files/candidate_tracker/61175834725_Resume-4.pdf', NULL, '1', '2024-01-08', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-08 05:12:05', 1, '2024-01-08 05:49:46', 0, NULL, 1),
(16091, 'Chidambaram', '13', '8667877957', '', 'chidambaramsenapathy@gmail.com', '1998-06-10', 25, '3', '2', 'Senapathy', 'Professor', 24000.00, 1, 0.00, 25000.00, 'kangayam,thirupur-638701.', 'T-nagar', '2401080007', '', '1', 'upload_files/candidate_tracker/76925527621_Chidambaram_senapathy_Resume.pdf', NULL, '1', '2024-01-08', 0, '', '3', '59', '2024-01-10', 120000.00, '', '3', '2025-03-07', '2', '3months 6K if Through 3 yrs employ', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-08 05:12:37', 60, '2024-01-10 09:58:13', 0, NULL, 1),
(16092, 'Fayazullah.s', '6', '9361525410', '9566155238', 'princefayaz39@gmail.com', '2002-06-24', 21, '1', '2', 'Shafiullah.A', 'Painter', 32000.00, 2, 0.00, 15000.00, '28 thillainayagam pillai 6th street, Chennai -11', 'Thiruvika Nagar, Gopalapuram, Chennai - 11', '2401080008', '', '1', 'upload_files/candidate_tracker/41183300013_FAYAZULLAH.S (1).pdf', NULL, '1', '2024-01-08', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-08 05:13:13', 104, '2024-01-08 06:57:38', 0, NULL, 1),
(16093, 'Sneha.A', '6', '7358518510', '', '120csa47sneha@gmail.com', '2001-12-24', 22, '1', '2', 'Subramani.K', 'Water business', 20000.00, 3, 0.00, 15000.00, '149 6th Street sasthiri Nagar ph road chennai 84', 'Chennai', '2401080009', '', '1', 'upload_files/candidate_tracker/5444861810_sneha .pdf', NULL, '1', '2024-01-08', 0, '123', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-08 05:26:10', 104, '2024-01-08 06:58:33', 0, NULL, 1),
(16094, 'Noor jahan begum', '29', '9677054814', '8940231030', 'sherinenoori1530@gmail.com', '2001-07-30', 22, '3', '2', 'Shamshad begum(Late)', '-', 6000.00, 1, 16000.00, 18000.00, 'Sri komalavalli pg women\'s hostel vadapalani', 'Sri komalavalli pg women\'s hostel vadapalani', '2401080010', '', '2', 'upload_files/candidate_tracker/85419015101_noori new resume.docx.docx', NULL, '1', '2024-01-08', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-08 06:15:47', 1, '2024-01-08 07:41:12', 0, NULL, 1),
(16095, '', '0', '7604907471', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401080011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-08 07:03:31', 0, NULL, 0, NULL, 1),
(16096, '', '0', '9790979638', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401080012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-08 07:06:29', 0, NULL, 0, NULL, 1),
(16097, '', '0', '7449227983', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401080013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-08 07:42:56', 0, NULL, 0, NULL, 1),
(16098, 'Anfas. K', '33', '9025037662', '7449227883', 'anfask1112@gmail.com', '2000-12-11', 23, '2', '2', 'Khadir mohideen. M', 'Business', 15000.00, 1, 10000.00, 15000.00, 'Thanjavur, adirampattinam', 'Triplicane', '2401080014', '1', '2', 'upload_files/candidate_tracker/27953980975_anfas.resume2-1.pdf', NULL, '1', '2024-01-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-01-08 09:46:25', 110, '2024-01-31 10:10:06', 0, NULL, 1),
(16099, 'Reyaaz', '6', '6383942314', '', 'initiatoriyas@gmail.com', '2001-08-25', 22, '2', '2', 'Rafik', 'Business', 40000.00, 1, 20000.00, 27000.00, 'Chennai', 'Chennai', '2401090001', '1', '2', 'upload_files/candidate_tracker/37098575000_CV_2023111322052662.pdf', NULL, '1', '2024-01-09', 0, '', '3', '59', '2024-01-10', 210000.00, '', '5', '1970-01-01', '1', 'Selected for Syed team in consultant  Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-09 03:57:44', 60, '2024-01-09 07:39:13', 0, NULL, 1),
(16100, 'Saai Lakshmi', '11', '7092000311', '', 'Saaiakshu773@gmail.com', '2000-09-17', 23, '2', '2', 'Rajarajeswari KS', 'HR & Marketing coordinator', 70000.00, 2, 12000.00, 15000.00, 'Madipakkam', 'Madipakkam', '2401090002', '1', '2', 'upload_files/candidate_tracker/30771199986_Saai _ Resume Updated.pdf', NULL, '1', '2024-01-09', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'SElected for HR profile', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-09 04:27:00', 108, '2024-01-09 01:15:32', 0, NULL, 1),
(16101, 'p pavithra', '11', '9342402456', '8667836465', 'tinapavithra1@gmail.com', '2000-07-09', 23, '2', '2', 'p shalini', 'accountant', 60000.00, 1, 12000.00, 15000.00, 'madipakkam', 'madipakkam', '2401090003', '1', '2', 'upload_files/candidate_tracker/27409577282_Pavitra P.pdf', NULL, '1', '2024-01-09', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'SElected For HR Profile', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-09 04:27:08', 108, '2024-01-09 01:15:55', 0, NULL, 1),
(16102, 'Purushothman', '5', '9821018485', '9003058906', 'ajaydhoni8500@gmail.com', '2001-01-22', 22, '2', '2', 'Selvam', 'Manager', 35000.00, 1, 20000.00, 30000.00, 'Chennai', 'Chennai', '2401090004', '1', '2', 'upload_files/candidate_tracker/98554074518_S.purushothaman Resume.docx', NULL, '1', '2024-01-09', 0, '', '3', '59', '2024-01-10', 216000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team in Consultant Tole', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-09 04:38:49', 60, '2024-01-09 07:40:15', 0, NULL, 1),
(16103, '', '0', '9342302456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401090005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-09 04:40:26', 0, NULL, 0, NULL, 1),
(16104, 'Jayavani', '5', '9345037774', '', 'jayavani1119@gmail.com', '1997-05-11', 26, '2', '1', 'Manibharathi', 'Private employee', 20000.00, 1, 18000.00, 22000.00, 'Chennai', 'Chennai', '2401090006', '1', '2', 'upload_files/candidate_tracker/69013042419_vaniresumenew04112023.pdf', NULL, '1', '2024-01-09', 0, '', '3', '59', '2024-01-12', 204000.00, '', '5', '1970-01-01', '2', 'selected for Muthu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-09 05:58:13', 108, '2024-01-10 05:28:03', 0, NULL, 1),
(16105, 'melvin s', '23', '9360476875', '9790822608', 'diwanmelvin@gmail.com', '2002-05-03', 21, '4', '2', 'selvam a', 'auto driver', 15000.00, 1, 0.00, 15000.00, 'chennai anna nagar west', 'chennai anna nagar west', '2401090007', '', '1', 'upload_files/candidate_tracker/70968453585_Melvin UI Developer CV.pdf', NULL, '1', '2024-01-10', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Selected for IT if he comes let us try', '2', '1', '0', '1', '8', '0', '2', '2024-01-11', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-09 06:52:00', 1, '2024-01-09 06:56:37', 0, NULL, 1),
(16106, 'VENKATSUNDARAM', '5', '8825511200', '8754082498', 'Venkatsundaram2002@gmail.com', '2002-07-16', 21, '2', '2', 'Natarajan', 'Supervisor', 18000.00, 0, 18000.00, 22000.00, 'Vellore', 'Perungalathur', '2401090008', '1', '2', 'upload_files/candidate_tracker/76341964932_Sundar updated resume .pdf', NULL, '1', '2024-01-09', 1, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-09 06:53:03', 108, '2024-01-09 01:17:13', 0, NULL, 1),
(16107, 'jerold santhosh', '32', '8838312422', '', 'jeroldsanthoshsanthosh729@gmail.com', '2000-05-25', 23, '1', '2', 'r.Philip', 'driver', 13000.00, 1, 0.00, 20000.00, 'kosambakkam', 'kodambakkam', '2401090009', '', '1', 'upload_files/candidate_tracker/74808421226_Jerold Resume.pdf', NULL, '1', '2024-01-09', 0, '123', '1', '29', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-09 07:05:24', 1, '2024-01-09 07:13:31', 0, NULL, 1),
(16108, 'S Divagar', '16', '8072208430', '9790746277', 'divagarsri94@gmail.com', '1994-10-08', 29, '6', '1', 'Nandhini', 'BCA', 45000.00, 0, 25000.00, 35000.00, 'Ennore', 'Maduravoyal', '2401090010', '', '2', 'upload_files/candidate_tracker/40352489733_Divagar Resume 1..... (1).pdf', NULL, '1', '2024-01-09', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-09 07:19:24', 1, '2024-01-09 09:35:48', 0, NULL, 1),
(16109, 'Sunil', '11', '7812864434', '9841293309', 'Sunilsunilkumaran@gmail.com', '1999-08-31', 24, '3', '2', 'Saravanan', 'Self employee', 110000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2401090011', '', '1', 'upload_files/candidate_tracker/29955412010_DOC-20231226-WA0000..pdf', NULL, '1', '2024-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-09 07:25:21', 1, '2024-01-09 07:29:55', 0, NULL, 1),
(16110, '', '0', '7904247274', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401090012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-09 07:43:04', 0, NULL, 0, NULL, 1),
(16111, 'ASHIK MOHAMED S', '6', '9360232521', '', 'ashik995289@gmail.com', '2001-09-10', 22, '2', '2', 'SEYYAD USMAN B', 'Fisherman', 6000.00, 1, 0.00, 20000.00, 'THANJAVUR', 'THANJAVUR', '2401090013', '1', '1', 'upload_files/candidate_tracker/58034131813_CV_2023-08-05-020553.pdf', NULL, '1', '2024-01-10', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-09 01:50:38', 104, '2024-01-10 09:58:12', 0, NULL, 1),
(16112, 'M Deepika', '11', '7904495931', '', 'deepikamurugesan99@gmail.com', '1999-06-18', 24, '2', '2', 'Murugesan', 'Retired', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2401100001', '1', '1', 'upload_files/candidate_tracker/59695774734_DOC-20240106-WA0012..pdf', NULL, '1', '2025-01-10', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication not good not suit for Recruiter', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2024-01-10 04:42:01', 154, '2025-01-10 11:26:56', 0, NULL, 1),
(16113, 'Mohammed Sohail', '30', '7395858034', '9944448580', 'mohammedsohail5031@gmail.com', '1999-10-01', 24, '1', '2', 'Abdul Salam', 'Tirchy', 300000.00, 1, 0.00, 15000.00, 'Tiruchchirappalli', 'Tiruchchirappalli', '2401100002', '', '1', 'upload_files/candidate_tracker/97333398368_DOC-20230119-WA0000-4.pdf', NULL, '2', '2024-01-10', 0, 'porselven', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our roles', '9', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-10 04:43:41', 1, '2024-01-10 04:53:04', 0, NULL, 1),
(16114, 'Siddhtarth', '13', '7299990709', '', 'siddhtarthdeena@gmail.com', '2002-01-28', 21, '6', '2', 's. vijaya', 'accounts manager', 40000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2401100003', '', '1', 'upload_files/candidate_tracker/33905454937_Siddhtarth_resume.pdf', NULL, '1', '2024-01-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-10 04:56:26', 1, '2024-01-10 05:00:26', 0, NULL, 1),
(16115, 'morvin jayan', '11', '8148483122', '', 'morvinthomas75@gmail.com', '2000-10-22', 23, '6', '2', 'george thomas', 'business', 30000.00, 1, 15000.00, 25000.00, 'madurai', 'chennai - mudichur', '2401100004', '', '2', 'upload_files/candidate_tracker/42711775141_Morvin 2.pdf', NULL, '1', '2024-01-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for IT recruitment', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-10 04:59:13', 1, '2024-01-10 05:02:15', 0, NULL, 1),
(16116, 'Madhumithra', '11', '9176297944', '9962744735', 'mithra.madhuu@gmail.comcom', '2001-11-09', 22, '6', '2', 'Maheshkumar', 'Driver', 30000.00, 1, 16500.00, 22000.00, 'Chennai', 'Chennai', '2401100005', '', '2', 'upload_files/candidate_tracker/26259077791_579fb192-66bd-4cf8-ba0a-79b53abb8d82.pdf', NULL, '1', '2024-01-10', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', '5050 profile for recruitment interviewed by Gokul', '6', '1', '0', '1', '8', '0', '2', '2024-01-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-10 05:45:31', 1, '2024-01-10 05:50:59', 0, NULL, 1),
(16117, 'Bharath G', '11', '6385901859', '', 'bharathjii1507@gmail.com', '2002-07-15', 21, '6', '2', 'Gangadharan C', 'Driver', 20000.00, 1, 16500.00, 21000.00, 'Kolathur, Chennai', 'Kolathur, Chennai', '2401100006', '', '2', 'upload_files/candidate_tracker/23283095243_Bharath.G Resume.pdf', NULL, '1', '2024-01-10', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', '5050 Profile for Recruitment', '6', '1', '0', '1', '8', '0', '2', '2024-01-25', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-10 05:58:30', 1, '2024-01-10 06:16:12', 0, NULL, 1),
(16118, 'Kalai selvi S', '11', '7845265947', '7806972475', 'kalaiselvi32121@gmail.com', '2001-12-31', 22, '6', '2', 'K Samba moorthy', 'Private job', 200000.00, 1, 0.00, 18000.00, 'No: 11/6c Mettu St, Velachery, Chennai - 42', 'No: 11/6c Mettu St, Velachery, Chennai - 42', '2401100007', '', '1', 'upload_files/candidate_tracker/74821076397_kalaiselvi cv.pdf', NULL, '1', '2024-01-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our Recruitment Still in Regular Studies will not handle our work pressure', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-10 06:02:05', 1, '2024-01-10 06:18:47', 0, NULL, 1),
(16119, '', '0', '6369494988', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401100008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-10 06:18:50', 0, NULL, 0, NULL, 1),
(16120, 'Cibiya JC', '5', '9042689353', '8870694542', 'cibiyajc@gmail.com', '2001-11-05', 22, '2', '2', 'Chinnasamy', 'Daily wages', 30000.00, 2, 22000.00, 22000.00, 'Perambalur', 'Nungambakkam , chennai', '2401100009', '1', '2', 'upload_files/candidate_tracker/12612357387_cibiya chinnasamy resume.pdf', NULL, '1', '2024-01-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-10 06:30:39', 108, '2024-01-10 04:36:02', 0, NULL, 1),
(16121, 'nandhinidevi selvaraj', '13', '6383408262', '9677369277', 'selvarajnandhinisn@gmail.com', '2002-02-05', 21, '6', '2', 'selvaraj', 'driver', 10000.00, 2, 0.00, 200000.00, 'kovilpatti', 'chennai', '2401100010', '', '1', 'upload_files/candidate_tracker/65921855155_RESUME.....pdf', NULL, '1', '2024-01-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not Good in technical', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-10 07:17:10', 1, '2024-01-10 07:28:57', 0, NULL, 1),
(16122, 'Muneeswari M', '13', '9043494818', '9944094818', 'muneeswarimariappan27@gmail.com', '2001-09-27', 22, '6', '2', 'Mariappan C', 'Retired Lakshmi Mill Supervisor', 10000.00, 1, 0.00, 200000.00, 'Kovilpatti, Thoothukudi.', 'Tambaram sanitorium, Chennai', '2401100011', '', '1', 'upload_files/candidate_tracker/63891540400_Muneeswari M Resume 1.pdf', NULL, '1', '2024-01-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not Good In Technical', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-10 07:17:15', 1, '2024-01-10 07:26:25', 0, NULL, 1),
(16123, 'Balaji', '27', '6379344046', '', 'balajiv761@gmail.com', '2000-10-21', 23, '3', '2', 'Parent', 'Mason', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2401100012', '', '1', 'upload_files/candidate_tracker/96110275992_Gray Modern Professional Without Photo Resume.pdf', NULL, '1', '2024-03-20', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Good In Technical', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-10 09:27:51', 112, '2024-03-20 03:13:41', 0, NULL, 1),
(16124, 'Leo Jerly Binu J', '13', '8939862787', '', 'jerlybinu1706@gmail.com', '2001-11-06', 22, '6', '2', 'K Jayachandran', 'Regional Manager', 30000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2401100013', '', '1', 'upload_files/candidate_tracker/80378376515_Binu new resume (1) (1).pdf', NULL, '1', '2024-01-10', 0, '', '2', '27', NULL, 0.00, '', '0', NULL, '1', 'technical wise ok. She has to discuss and confirm the terms.', '2', '1', '0', '1', '8', '0', '2', '2024-01-11', '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-10 09:39:54', 1, '2024-01-10 09:46:51', 0, NULL, 1),
(16125, 'Suganya J', '11', '9042269217', '', 'suzzzan007@gmail.com', '2002-06-07', 21, '2', '2', 'Unmarried', 'Nil', 260000.00, 1, 12000.00, 14000.00, 'Chennai royapuram', 'Chennai royapuram', '2401100014', '1', '2', 'upload_files/candidate_tracker/71318653520_suzzzan RESUME (1).docx', NULL, '1', '2024-01-12', 0, '', '3', '59', '2024-01-16', 164200.00, '', '5', '1970-01-01', '2', 'Selected for Recruitment Profile', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-10 01:48:01', 60, '2024-01-16 10:02:44', 0, NULL, 1),
(16126, 'Veeraragavan', '4', '9786469668', '', 'raguns200@gmail.com', '1996-05-22', 27, '2', '2', 'Kamala', 'House wife', 30000.00, 2, 13576.00, 18000.00, 'Thanjavur', 'Thanjavur', '2401100015', '1', '2', 'upload_files/candidate_tracker/65436631433_ragav rr.pdf', NULL, '1', '2024-01-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team not completed degree...and having high gap between each and every job dont have sustainabulity too...kindly avoid', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-10 03:59:51', 108, '2024-01-11 03:05:19', 0, NULL, 1),
(16127, 'Mayank Sharma p', '6', '9751074230', '', 'mayankgreat9@gmail.com', '2002-06-16', 21, '2', '2', 'Kalpana Sharma', 'Sales executive', 14000.00, 2147483647, 13000.00, 16000.00, '3rd cross street,MKB Nagar,Vysarpadi,Chennai 39', 'Vysarpadi, Chennai 39', '2401100016', '1', '2', 'upload_files/candidate_tracker/47087182804_Resume Data 22.pdf', NULL, '1', '2024-01-11', 31, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Slow Learning, Also Sustain Problem', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-10 04:04:16', 108, '2024-01-11 04:37:55', 0, NULL, 1),
(16128, 'Thendral', '4', '9087687883', '7200998190', 'Thendralbaskar30@gmail.com', '2001-01-30', 22, '2', '2', 'Baskar father', 'Farmer', 5000.00, 1, 15.00, 15.00, 'Thanjavur', 'Thanjavur', '2401110001', '1', '2', 'upload_files/candidate_tracker/21106223737_Resu-2 (1)-1.docx', NULL, '1', '2024-01-11', 0, '', '3', '59', '2024-01-19', 174000.00, '', '3', '2024-10-23', '1', 'Selected for Thanjavur in consultant Role', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-11 04:42:22', 60, '2024-01-19 10:06:22', 0, NULL, 1),
(16129, 'Darnesh M', '11', '8248388647', '9941242349', 'darneshvicky00@gmail.com', '2001-01-14', 22, '6', '2', 'Shanmuga priya K', 'Teacher', 60000.00, 1, 0.00, 18000.00, 'Vyasarpadi, Chennai - 600039', 'Vyasarpadi, Chennai - 600039', '2401110002', '', '1', 'upload_files/candidate_tracker/36541179315_DARNESH RESUME_20230819_211047_0000.pdf', NULL, '1', '2024-01-11', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '1', 'High expectation, not worth it', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-11 04:46:22', 1, '2024-01-11 04:49:41', 0, NULL, 1),
(16130, 'Maniyarasu', '31', '9600611750', '9715211157', 'maniyarasu611750@gmail.com', '2002-09-06', 21, '6', '2', 'Panneerselvam', 'Driver', 7000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Guindy', '2401110003', '', '1', 'upload_files/candidate_tracker/37811218817_MANIYARASU-CV-2.pdf', NULL, '1', '2024-01-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-11 05:06:29', 1, '2024-01-11 05:37:30', 0, NULL, 1),
(16131, 'SUNDARAMAHALINGAM B', '31', '6379352902', '', 'sundarbalu11@gmail.com', '1998-04-11', 25, '6', '2', 'BALAKRISHNAN P', 'FARMER', 6000.00, 1, 0.00, 18000.00, 'MADURAI', 'GUINDY', '2401110004', '', '1', 'upload_files/candidate_tracker/41580830159_SundaramahalingamB_CV.pdf', NULL, '1', '2024-01-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-11 05:07:23', 1, '2024-01-11 05:25:57', 0, NULL, 1),
(16132, 'RAMESH KUMAR R', '13', '7598111794', '', 'rameshoffl03@gmail.com', '1998-08-26', 25, '3', '2', 'Rajendran', 'Farmer', 200000.00, 1, 0.00, 17.00, 'Velankanni', 'Chennai', '2401110005', '', '1', 'upload_files/candidate_tracker/58150750595_Ramesh-Full Stack Developer.pdf', NULL, '1', '2024-01-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-11 05:16:03', 1, '2024-01-11 05:23:47', 0, NULL, 1),
(16133, 'Devayani', '4', '6379184029', '9087687883', 'devayanidevayani896@gmail.com', '1999-08-03', 24, '2', '2', 'Arivalagan', 'Tailor', 12.00, 1, 15.00, 13.00, 'Thanjavur', 'Thanjavur', '2401110006', '1', '2', 'upload_files/candidate_tracker/47559224816_DEVAYANI_RESUME (2).pdf', NULL, '1', '2024-01-11', 0, '', '3', '59', '2024-01-19', 162000.00, '', '3', '2024-10-03', '2', 'Selected For Thanjavur In Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-11 05:21:28', 60, '2024-01-18 07:04:13', 0, NULL, 1),
(16134, 'Harinath', '16', '9787633276', '8248999710', 'Hithesh002@gmail.com', '1998-05-29', 25, '2', '2', 'Ramesh', 'Driver', 25000.00, 1, 18000.00, 23000.00, 'Vellore', 'Chennai', '2401110007', '1', '2', 'upload_files/candidate_tracker/75035296029_Harinath.pdf', NULL, '1', '2024-01-11', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interviewed by Gokul and on Hold', '3', '1', '', '1', '8', '', '2', '2024-01-17', '2', '7', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-11 05:49:45', 108, '2024-01-11 04:37:21', 0, NULL, 1),
(16135, 'SYED FARHAN.U', '16', '8056643183', '9566304653', 'syedfarhan9566@gmail.com', '2003-01-01', 21, '2', '2', 'Raisa begum', 'House wife', 23.00, 2, 0.00, 2.50, '47/51, adavanthal street R. n. palayam vellore', 'Srinivasa nager velachery chennai', '2401110008', '1', '1', 'upload_files/candidate_tracker/4170395270_Syed Farhan.pdf.pdf_20231119_195214_0000.pdf', NULL, '1', '2024-01-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles will not sustain', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-11 05:50:48', 108, '2024-01-11 04:37:33', 0, NULL, 1),
(16136, 'Mohammed Hanifa M', '5', '8428840764', '', 'hanifaduke@gmail.com', '1998-04-03', 25, '2', '2', 'Musthafa', 'Tailor', 15000.00, 1, 23000.00, 25000.00, 'Vyasarpadi', 'Jamalia', '2401110009', '1', '2', 'upload_files/candidate_tracker/54792403563_RES3.pdf', NULL, '1', '2024-01-11', 15, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'new for financial instrument but calling experience with just dial.  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-11 06:15:10', 108, '2024-01-11 03:59:38', 0, NULL, 1),
(16137, 'Yogesh', '11', '7338745104', '', 'yogeshar033@gmail.com', '2001-04-13', 22, '6', '2', 'Srinivasan .M', 'ITI (pass)', 25000.00, 1, 1.00, 20000.00, 'Chennai', 'Chennai', '2401110010', '', '2', 'upload_files/candidate_tracker/61212444654_yogesh Resume -1.pdf', NULL, '1', '2024-01-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-11 07:06:17', 1, '2024-01-11 07:11:52', 0, NULL, 1),
(16138, 'Kannan R', '11', '9176274208', '8838889696', 'Kansrc07@gmail.com', '2001-01-20', 22, '3', '2', 'Ramgandhi .p', 'Buisness', 100000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2401110011', '', '1', 'upload_files/candidate_tracker/19510676397_kannan resume.pdf', NULL, '1', '2024-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Settled Family Attitude issue sustainability doubt in our roles', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-11 07:22:02', 1, '2024-01-11 07:25:37', 0, NULL, 1),
(16139, 'Eashwar yuvaraj', '11', '9080586381', '', 'Yuvarajeashwar@gmail.com', '2002-01-24', 21, '1', '2', 'Yuvaraj', 'Mrd', 45000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2401110012', '', '2', 'upload_files/candidate_tracker/81456460593_Eashwar Yuvaraj (2).pdf', NULL, '1', '2024-01-11', 0, 'Sathish', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Salary Exp is high only US IT 1 yr exp min 3 LPA exp', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-11 09:02:47', 1, '2024-01-11 10:15:15', 0, NULL, 1),
(16140, 'GOKUL PRASAND S', '13', '9688782760', '', 'spgokulprasand23@Gmail.com', '1999-09-23', 24, '6', '2', 'Parimala', 'Housewife', 5000.00, 0, 4.50, 5.00, 'Tiruchengode', 'Tiruchengode', '2401110013', '', '2', 'upload_files/candidate_tracker/98944801523_gokul.pdf', NULL, '1', '2024-01-11', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-11 09:52:45', 1, '2024-01-11 09:58:35', 0, NULL, 1),
(16141, 'Shalinipradhiksha R', '11', '9790881327', '', 'shalinipradhiksha@gmail.com', '2000-10-25', 23, '6', '2', 'Robert Fidlis', 'Civil engineer', 60000.00, 1, 24000.00, 30000.00, 'Chennai', 'Chennai', '2401110014', '', '2', 'upload_files/candidate_tracker/50038631959_R Shalini Pradhiksha Updated CV.pdf', NULL, '1', '2024-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our roles salary exp is high will not sustain', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-11 10:01:28', 1, '2024-01-11 10:33:20', 0, NULL, 1),
(16142, 'Dhanush R', '33', '9080525336', '9003643039', 'dhanush18rr@gmail.com', '1999-11-18', 24, '6', '2', 'Ravichandran K', 'Daily wages', 15000.00, 0, 25000.00, 30000.00, 'No 38 Nimanthakara othavadai street kanchipuram', 'No 38 Nimanthakara othavadai street', '2401120001', '', '2', 'upload_files/candidate_tracker/1514904462_Dhanush resume (1).pdf', NULL, '1', '2024-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-12 04:01:52', 1, '2024-01-12 04:06:45', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16143, 'Gowtham P', '31', '9003709570', '7010524194', 'gowthamhero2000@gmail.com', '2009-01-12', 0, '6', '2', 'Sathish', 'Front end developer', 10000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2401120002', '', '1', 'upload_files/candidate_tracker/7997160342_P.Gowtham.docx', NULL, '1', '2024-01-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-12 04:26:29', 1, '2024-01-12 04:52:06', 0, NULL, 1),
(16144, 'Prasanth C', '31', '6382212603', '8015724938', 'prasanthreigns4@gmail.com', '1999-06-24', 24, '6', '1', 'C.Sulochana', 'Front end developer', 10000.00, 3, 0.00, 20000.00, 'Gudiyatham', 'Chennai', '2401120003', '', '1', 'upload_files/candidate_tracker/75512474327_PrasanthCResume (1).pdf', NULL, '1', '2024-01-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-12 04:49:35', 1, '2024-01-12 05:02:10', 0, NULL, 1),
(16145, 'Naveena', '11', '9585277917', '', 'Naveenasankar6@gmail.com', '1994-08-18', 29, '6', '1', 'Prabakar G', 'IT', 30000.00, 2, 13000.00, 22000.00, 'Chennai', 'Chennai', '2401120004', '', '2', 'upload_files/candidate_tracker/83618949271_Naveena HR CV (1).pdf', NULL, '1', '2024-01-12', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-12 05:12:20', 1, '2024-01-12 05:19:47', 0, NULL, 1),
(16146, 'Sanjai', '5', '9940765934', '8344106557', 'sanjaisanja66@gmail.com', '2003-02-05', 20, '2', '2', 'T.Marutha muthu', 'Athlete', 15000.00, 1, 0.00, 14000.00, 'Udumalpet', 'Chennai', '2401120005', '1', '1', 'upload_files/candidate_tracker/25973737021_1704363173119_sanjai.sanju.pdf', NULL, '3', '2024-01-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Quality And Voice Clarity Ok, But He Is sports Person So Sustainability Is Low, But Job is Need So Move To Joining Process,we Will Check And Confirm in Training Period.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-12 05:18:55', 108, '2024-01-13 11:42:13', 0, NULL, 1),
(16147, 'R Renganathan', '33', '9962888473', '', 'renga1018@gmail.com', '1993-06-02', 30, '6', '1', 'R Raman', 'Prohith', 40000.00, 1, 35000.00, 45000.00, 'Mandaveli', 'Mandaveli', '2401120006', '', '2', 'upload_files/candidate_tracker/71568946547_Renganathan_R_CV (1) (1).pdf', NULL, '1', '2024-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-12 05:21:39', 1, '2024-01-12 05:27:02', 0, NULL, 1),
(16148, 'Vanitha G', '11', '6369136157', '', 'vanitha4398@gmail.com', '1998-03-04', 25, '3', '2', 'Govindan T', 'Defence', 80000.00, 1, 13000.00, 20000.00, 'ANNANUIR CHENNAI', 'ANNANUIR CHENNAI', '2401120007', '', '2', 'upload_files/candidate_tracker/16935530158_Vanitha__Resume.pdf', NULL, '1', '2024-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-12 05:26:34', 1, '2024-01-12 05:30:10', 0, NULL, 1),
(16149, 'Navaneethakrishnan', '4', '9345854939', '9659570609', 'navniith@gmail.com', '1999-02-08', 24, '2', '2', 'Dhevarajan', 'Data analyst', 25000.00, 1, 11000.00, 17000.00, 'Karur', 'Karur', '2401120008', '1', '2', 'upload_files/candidate_tracker/12418345914_Navaneethan Resume .pdf', NULL, '1', '2024-01-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-12 05:31:40', 108, '2024-01-30 12:15:31', 0, NULL, 1),
(16150, 'Lm. Mohammad Salman basid', '5', '7418314898', '9500357546', 'salmansalman93357@gmail.com', '2002-05-01', 21, '2', '2', 'Mohammad salic', 'Data annotation', 27000.00, 1, 0.00, 17000.00, 'Karur', 'Karur', '2401120009', '1', '1', 'upload_files/candidate_tracker/60036650317_Grey & White Minimal Resume_20231221_102737_0000.pdf', NULL, '1', '2024-01-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-12 05:32:29', 108, '2024-01-13 11:43:26', 0, NULL, 1),
(16151, 'Subashchandrabose', '2', '9976739460', '', 'subashchandraboser26@gmail.com', '1998-04-26', 25, '6', '2', 'Ramu', 'Hotel', 18000.00, 3, 0.00, 12000.00, 'Chennai', 'Chennai', '2401120010', '', '1', 'upload_files/candidate_tracker/29302733833_Subashchandra bose R(resume)MCA.pdf', NULL, '1', '2024-01-12', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-12 06:35:39', 1, '2024-01-12 06:41:13', 0, NULL, 1),
(16152, 'Ramya D', '2', '6382118008', '', 'ramyadhanagopal@gmail.com', '1997-03-23', 26, '6', '2', 'DhanaGopal M', 'Farmer', 300000.00, 3, 0.00, 12000.00, 'Chennai', 'Chennai', '2401120011', '', '1', 'upload_files/candidate_tracker/92294535360_1705031923261_RAMYA NEW.pdf', NULL, '1', '2024-01-12', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-12 06:38:00', 1, '2024-01-12 06:44:41', 0, NULL, 1),
(16153, 'TASKEEN A', '11', '9840303830', '8825570884', 'taskeen180703@gmail.com', '2003-07-18', 20, '6', '2', 'Ansar Basha', 'Mechanic', 20000.00, 0, 240000.00, 300000.00, 'Mount road', 'Perambur', '2401120012', '', '2', 'upload_files/candidate_tracker/72501472412_R.pdf', NULL, '1', '2024-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-12 07:16:07', 1, '2024-01-12 07:50:52', 0, NULL, 1),
(16154, 'Rohini', '11', '7092708866', '9677116953', 'rohinikamaraj615@gmail.com', '1998-11-17', 25, '6', '2', 'Parents', 'HR recruiter /Talent Acquisition', 40000.00, 0, 17000.00, 20000.00, 'Villivakkam', 'Villivakkam, Chennai', '2401120013', '', '2', 'upload_files/candidate_tracker/86378249571_Rohini K - Resume.pdf', NULL, '1', '2024-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts if the candidate is coming back let us try', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-12 07:18:39', 1, '2024-01-12 07:27:10', 0, NULL, 1),
(16155, 'Sruthi.R', '13', '9962963441', '6374187680', 'Sruthiravi1707@gmail.com', '2002-04-07', 21, '6', '2', 'Ravi.P', 'Arun Ice Cream Distributor', 20000.00, 1, 0.00, 25000.00, 'Ambattur', 'Ambattur', '2401120014', '', '1', 'upload_files/candidate_tracker/40990308159_Sruthi new web developer resume.pdf', NULL, '1', '2024-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-12 07:24:11', 1, '2024-01-12 07:57:11', 0, NULL, 1),
(16156, 'Rohith B', '11', '8870268058', '', 'bijuuu09@gmail.com', '2002-08-05', 21, '6', '2', 'Benedict Raja', 'Business', 300000.00, 1, 0.00, 300000.00, 'Ooty', 'Velachery', '2401120015', '', '1', 'upload_files/candidate_tracker/23387716470_Rohith HR Fresher.pdf', NULL, '1', '2024-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-12 09:27:31', 1, '2024-01-12 10:20:38', 0, NULL, 1),
(16157, 'Nithya', '29', '9176224599', '9597776230', 'rrnithya609@gmail.com', '2001-02-07', 22, '6', '2', 'Tailor', 'Tailor', 10000.00, 2, 15000.00, 18000.00, 'chennai', 'Triplicane', '2401120016', '', '2', 'upload_files/candidate_tracker/45622409373_NITHYA ...pdf', NULL, '1', '2024-01-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '2', '', '1', '8', '', '2', '1970-01-01', '4', '5', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-12 09:43:58', 104, '2024-01-12 04:21:09', 0, NULL, 1),
(16158, '', '0', '6383960448', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401120017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-12 12:58:24', 0, NULL, 0, NULL, 1),
(16159, 'Siva Sankari', '33', '8428853928', '', 'msivasankari2000@gmail.com', '2000-04-29', 23, '6', '2', 'Mohan Raj', 'Southern Railway', 25000.00, 1, 324000.00, 300000.00, 'Chennai', 'Chennai', '2401130001', '', '2', 'upload_files/candidate_tracker/47707750227_DOC-20231122-WA0004..pdf', NULL, '1', '2024-01-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'She need to confirm her intersest wiht the package\n', '4', '1', '0', '1', '8', '0', '2', '2024-01-16', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-13 04:26:07', 1, '2024-01-13 04:29:46', 0, NULL, 1),
(16160, 'Jeevanandham R', '26', '6369020869', '', 'jeevajeevan1335@gmail.com', '2002-05-03', 21, '6', '2', 'Rajaram R', 'Car Driver', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2401130002', '', '1', 'upload_files/candidate_tracker/46818699860_Resume-MIS-1.pdf', NULL, '1', '2024-01-13', 0, '', '3', '59', '2024-01-16', 180000.00, '', '5', '1970-01-01', '1', 'SElected for MIS Role', '3', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-13 04:44:46', 60, '2024-01-13 07:27:24', 0, NULL, 1),
(16161, 'Gnanasekar', '33', '7868932726', '', 'shankarsekar022@gmail.com', '1996-06-09', 27, '6', '2', 'Sankar c', 'Turner', 50000.00, 2, 373000.00, 500000.00, 'Ambattur', 'Ambattur', '2401130003', '', '2', 'upload_files/candidate_tracker/97429286532_Gnanasekar Resume.28.11.2023.pdf', NULL, '1', '2024-01-13', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Interview Reject by Gokul', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-13 05:12:16', 1, '2024-01-13 05:17:16', 0, NULL, 1),
(16162, 'Vikash', '4', '7868855372', '', 'Vikkashjo44@gail.com', '1998-08-21', 25, '2', '2', 'Chandra sekar', 'Scrap store', 15000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2401130004', '1', '1', 'upload_files/candidate_tracker/19667891214_Vikkash Curriculum.docx', NULL, '1', '2024-01-13', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team... indiscipilanary actives facing....high attitude', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-13 05:17:22', 108, '2024-01-13 01:40:47', 0, NULL, 1),
(16163, 'pappu varsha', '6', '7449196930', '', 'vv602977@gmail.com', '2001-03-23', 22, '2', '2', 'premalatha', 'working in mnc company', 30000.00, 2, 25000.00, 18000.00, 'chennai', 'chennai', '2401130005', '1', '2', 'upload_files/candidate_tracker/56261379475_Resume.pdf', NULL, '1', '2024-01-13', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-13 05:45:57', 108, '2024-01-13 01:42:38', 0, NULL, 1),
(16164, 'Devan ramesh', '4', '9600794717', '8056934014', 'devashanthi5597@gmail.com', '1997-05-05', 26, '2', '2', 'Shanthi', 'Corporation office assistant', 50000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2401130006', '1', '1', 'upload_files/candidate_tracker/46817598939_Devan resume.pdf', NULL, '1', '2024-01-13', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustainability issue facing....no trust regarding this candidate', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-13 06:20:07', 108, '2024-01-13 01:41:28', 0, NULL, 1),
(16165, 'Jothika', '33', '9840841128', '', 'jothika202@gmail.com', '2002-01-15', 21, '6', '2', 'Saravanan K', 'Mason', 17000.00, 1, 15000.00, 17000.00, 'Redhills', 'Redhills', '2401130007', '', '2', 'upload_files/candidate_tracker/87069060698_RESUME (2).docx', NULL, '1', '2024-01-13', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for roles too long distance will not sustain', '4', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-13 07:24:47', 1, '2024-01-13 07:30:35', 0, NULL, 1),
(16166, 'Srisudarsan S', '11', '6381592487', '', 'srisudarsan6381@gmail.com', '2002-06-12', 21, '6', '2', 'Sivasakari', 'House wife', 13000.00, 1, 0.00, 4.50, 'Chennai', 'Chennai', '2401130008', '', '1', 'upload_files/candidate_tracker/79813302246_DOC-20240113-WA0001..pdf', NULL, '1', '2024-01-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance Salary Exp is high and sustainability Doubts', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-13 09:14:37', 1, '2024-01-13 09:28:01', 0, NULL, 1),
(16167, 'THIRUNTHAIYAN M', '14', '9789980571', '', 'mjthirunthaiyan@gmail.com', '1998-05-13', 25, '3', '2', 'Murugesan D', 'Farmer', 35000.00, 1, 900000.00, 1200000.00, 'Tanjore', 'Tanjore', '2401130009', '', '2', 'upload_files/candidate_tracker/38479640581_Thirunthaiyan_CV-2.pdf', NULL, '1', '2024-01-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Holding offer for 11LPA and Expecting more with 2yrs exp not suitable for our roles', '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-13 10:05:12', 1, '2024-01-13 10:07:30', 0, NULL, 1),
(16168, 'mahalaksmi', '6', '8807827210', '9176483332', 'mahachamley1998@gmail.com', '1998-11-14', 25, '1', '2', 'nk murugan', 'painter', 25000.00, 1, 18000.00, 22000.00, 'f block ambedkar street mmda colony arumbakkam', 'arumbakkam', '2401160001', '', '2', 'upload_files/candidate_tracker/36515236929_Mahalakshmi Resume.pdf', NULL, '1', '2024-05-09', 10, '123', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good sales skill ad good sales pich , ctc exp is 22k ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '5', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-16 05:30:31', 127, '2024-05-09 06:31:55', 0, NULL, 1),
(16169, 'Pranes M', '13', '8667454017', '', 'pranesmurugesan482@gmail.com', '2002-07-24', 21, '6', '2', 'Murugesan', 'Business', 40000.00, 1, 0.00, 20000.00, 'Namakkal', 'Namakkal', '2401160002', '', '1', 'upload_files/candidate_tracker/80997503794_Pranes M.pdf', NULL, '1', '2024-01-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-16 05:40:18', 1, '2024-01-16 05:43:28', 0, NULL, 1),
(16170, 'PAUL VINOTH', '13', '9842338266', '', 'vino1797@gmail.com', '1997-10-17', 26, '6', '2', 'PETER', 'Retired Technician', 90000.00, 1, 0.00, 250000.00, 'Vellore', 'Chennai', '2401170001', '', '2', 'upload_files/candidate_tracker/49889007130_PV Resume.pdf', NULL, '1', '2024-01-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open with the TxxampC Need time to check with family and confirm if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 04:15:56', 1, '2024-01-17 04:24:55', 0, NULL, 1),
(16171, 'Mohammed Kaif', '13', '7338786606', '9841012655', 'ilyaskaif198@gmail.com', '2003-02-08', 20, '6', '2', 'ilyas', 'design', 180000.00, 1, 0.00, 2400000.00, 'chennai', 'chennai', '2401170002', '', '1', 'upload_files/candidate_tracker/73536719146_Kaif_Mhd.pdf', NULL, '1', '2024-01-17', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 04:24:52', 1, '2024-01-17 04:29:18', 0, NULL, 1),
(16172, 'Sam jenis', '31', '6382289311', '', 'samjenis10@gmail.com', '2001-05-21', 22, '6', '2', 'T Samuel Asirvatham', 'Business', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2401170003', '', '1', 'upload_files/candidate_tracker/90296511064_SAMJENIS-MCA-2023-FULLSTACK-1.pdf', NULL, '1', '2024-01-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open With The TxxampC Need Time To Check With Family And Confirm If He Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 04:25:09', 1, '2024-01-17 04:29:06', 0, NULL, 1),
(16173, 'Santhosh', '13', '6382650782', '9380512494', 'Sandysanthosh102e@gmail.com', '2000-07-22', 23, '6', '2', 'K. Saravanan &s.santhi', 'Daily wages', 30.00, 1, 0.00, 240000.00, 'Manali, chennai', 'Manali, chennai', '2401170004', '', '1', 'upload_files/candidate_tracker/68672207471_E Resume.pdf', NULL, '1', '2024-01-17', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 04:53:42', 1, '2024-01-17 04:58:10', 0, NULL, 1),
(16174, 'Soundar D', '11', '8428653762', '', 'Soundardevaraj@gmail.com', '2000-04-06', 23, '3', '2', 'parent', 'daily wages', 26000.00, 1, 3.35, 4.20, 'chennai', 'chennai', '2401170005', '', '2', 'upload_files/candidate_tracker/44987708367_soundar upd 2023.pdf', NULL, '1', '2024-01-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking much for IT recruitment Min exp is 4 LPA\n', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 05:01:01', 1, '2024-01-17 05:17:15', 0, NULL, 1),
(16175, 'sathish kumar d', '2', '9791492092', '', 'sathishkumarcse25@gmail.com', '2002-04-25', 21, '6', '2', 'vijayalakshmi d', 'home maker', 20000.00, 1, 0.00, 300000.00, 'vellore', 'crompet', '2401170006', '', '1', 'upload_files/candidate_tracker/67351792043_Sathish Kumar Dayalan.pdf', NULL, '1', '2024-01-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 05:06:14', 1, '2024-01-17 05:29:29', 0, NULL, 1),
(16176, 'Hubert Michael Seelan A', '2', '9488400018', '9443477260', 'hubertmichaelseelan@gmail.com', '1999-09-06', 24, '3', '2', 'antony Michael Raj', 'Sales Executive', 50000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2401170007', '', '1', 'upload_files/candidate_tracker/94815297548_Hubert Michael Seelan.pdf', NULL, '1', '2024-01-17', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', '5050 profile open for TxxampC seems to be slow kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 05:16:13', 1, '2024-01-17 05:21:25', 0, NULL, 1),
(16177, 'karthikeyan k', '2', '6380522760', '9443312239', 'sk.karthi461@gmail.com', '1998-11-12', 25, '6', '2', 'mother: k.sumathi', 'Tailoring', 10000.00, 0, 0.00, 300000.00, 'ponnamaravathi', 'ponnamaravathi', '2401170008', '', '1', 'upload_files/candidate_tracker/4421717812_karthikeyan.k. resume.pdf', NULL, '1', '2024-01-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open With The TxxampC Need Time To Check With Family And Confirm If He Comes Back Let Us Try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 05:48:29', 1, '2024-01-17 05:59:08', 0, NULL, 1),
(16178, 'Ansiyadevi', '6', '9176093358', '9941222958', 'tt5379787@gmail.com', '2001-06-16', 22, '1', '2', 'Thirunavukarasi', 'Housewife', 15000.00, 2, 18000.00, 20000.00, '63/167,5th st,nethaji never,tondiarpet,chennai-81', '63/167,5th St,Nethaji Never,Tondiarpet,Chennai-81', '2401170009', '', '2', 'upload_files/candidate_tracker/33683755087_DOC-20230602-WA0037. (2).pdf', NULL, '1', '2024-01-17', 0, '77845', '3', '59', '2024-01-19', 216000.00, '', '3', '2024-10-30', '2', 'Selected for Consultant Role Banu Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-17 05:56:36', 60, '2024-01-19 10:01:14', 0, NULL, 1),
(16179, 'Karthick M', '2', '8925002483', '8925002482', 'smartkarthi291@gmail.com', '2001-03-18', 22, '6', '2', 'Murugeshan p', 'Head Chef', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2401170010', '', '1', 'upload_files/candidate_tracker/5451463126_Kathick.M-Full Stack Developer-Resume .pdf', NULL, '1', '2024-01-17', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 06:41:54', 1, '2024-01-17 07:03:35', 0, NULL, 1),
(16180, 'Mohamed Rilwanudeen', '23', '9994418737', '', 'mrilwan4@gmail.com', '1999-01-26', 24, '6', '2', 'Mohamed sirajudeen', 'Business', 40000.00, 1, 0.00, 300000.00, 'Thiruvarur', 'Chennai', '2401170011', '', '1', 'upload_files/candidate_tracker/43468635343_mohdRilwan\'s Resume.pdf', NULL, '1', '2024-01-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 07:04:43', 1, '2024-01-17 07:07:01', 0, NULL, 1),
(16181, 'Karthick M', '31', '8925002482', '9976120406', 'smartkarthi291@gmail.com', '2001-03-18', 22, '6', '2', 'Murugeshan P', 'Village cooking Master', 30000.00, 1, 0.00, 15000.00, 'Dindigul', 'Chennai', '2401170012', '', '1', 'upload_files/candidate_tracker/56950087802_Karthick.M-Full Stack Developer-Resume_20240215_204014_0000.pdf', NULL, '1', '2024-02-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-01-17 07:05:50', 110, '2024-02-24 05:37:06', 0, NULL, 1),
(16182, 'Tamilselvan RS', '31', '9940721525', '', 'sritamizh02@hotmail.com', '2003-09-02', 20, '3', '2', 'Rhenu K', 'Driver', 10000.00, 1, 0.00, 18000.00, 'Vadaponparappi, Kallakurichi', 'Guindy, Chennai', '2401170013', '', '1', 'upload_files/candidate_tracker/52461343522_Tamil Resume_20231223_210115_0000.pdf', NULL, '1', '2024-01-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our roles rejected by Gokul', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 09:17:04', 1, '2024-01-17 09:19:26', 0, NULL, 1),
(16183, 'Srinivas', '2', '9952054071', '', 'srinib.6497@gmail.com', '1997-04-06', 26, '6', '2', 'Boopathy', 'Pharmacy', 40000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2401170014', '', '1', 'upload_files/candidate_tracker/76731330609_Srinivas_Resume.pdf', NULL, '1', '2024-01-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Our Roles Rejected By Gokul', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 09:23:21', 1, '2024-01-17 09:28:46', 0, NULL, 1),
(16184, 'Sathya', '4', '9566257513', '7397378235', 'kamali.st18@gmail.com', '2000-08-18', 23, '3', '2', 'Muthaiya', 'Painting', 10000.00, 5, 0.00, 15000.00, 'MGR Nagar CHENNAI', 'MGR Nagar CHENNAI', '2401170015', '', '1', 'upload_files/candidate_tracker/43654836853_SATHYA RESUME.docx', NULL, '1', '2024-01-19', 0, '', '1', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-17 10:57:45', 110, '2024-01-19 11:10:34', 0, NULL, 1),
(16185, 'Sasi kala.T', '20', '9087703990', '9150448342', 'sasi47752@gmail.com', '2001-07-13', 22, '1', '2', 'Meenakshi Thangaraj .M g', 'Phone frame', 10000.00, 1, 0.00, 15000.00, 'Kodungaiyur chennai', 'chinandimadam kodungaiyur,chennai', '2401170016', '', '2', 'upload_files/candidate_tracker/27666408109_CV_2023100220354562.pdf', NULL, '1', '2024-01-18', 0, '60795384', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-17 02:48:48', 1, '2024-01-17 02:59:55', 0, NULL, 1),
(16186, 'Chitra.V', '4', '6380131217', '8610805357', 'chipra020825@gmail.com', '1977-05-02', 46, '4', '1', 'Vijayarajan', 'Businesses', 15000.00, 2, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2401180001', '', '1', 'upload_files/candidate_tracker/47294476462_chitra_resume.pdf', NULL, '1', '2024-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-18 01:01:37', 110, '2024-01-18 12:08:16', 0, NULL, 1),
(16187, 'Ganga parameshwari.P', '20', '6374719932', '', 'Gangayamuna2109@gmail.com', '2000-06-21', 23, '3', '2', 'Palanisami', 'Mechanic', 300000.00, 1, 250000.00, 320000.00, 'Chennai', 'Chennai', '2401180002', '', '2', 'upload_files/candidate_tracker/95598743548_DOC-20240118-WA0002..pdf', NULL, '1', '2024-01-18', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Checked for Renewal Support Salary Exp is more need to check and confirm later', '5', '1', '0', '1', '8', '0', '2', '2024-01-24', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 04:00:20', 1, '2024-01-18 05:08:15', 0, NULL, 1),
(16188, 'Esakkiselvaraj M', '13', '9500461220', '', 'esakkiselvaraj1@gmail.com', '2000-02-01', 23, '6', '2', 'Nallathayammal', 'Cooking', 10000.00, 0, 0.00, 25000.00, '576 pinnacle arul nagar layout, tambaram Chennai', '576 Pinnacle , Arul Nagar Layout, Tambaram Chennai', '2401180003', '', '1', 'upload_files/candidate_tracker/16057374942_Esakki+Resume_1700642020462_Esakki+selvaraj+M.pdf', NULL, '1', '2024-01-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-18 04:41:50', 110, '2024-01-18 11:29:41', 0, NULL, 1),
(16189, 'Bhagya A', '33', '7299251319', '', 'Bhagyabhagya232003@gmail.com', '2003-07-23', 20, '6', '2', 'Angayar kannan A', 'Store keeping', 8000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2401180004', '', '1', 'upload_files/candidate_tracker/31831182248_Bhagya resume (NEW) 1.PDF', NULL, '1', '2024-01-18', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 04:42:56', 1, '2024-01-18 04:46:52', 0, NULL, 1),
(16190, 'Varshitha', '13', '9629958813', '', 'varshithar482@gmail.com', '2003-01-21', 20, '6', '2', 'Raja', 'Farmer', 10000.00, 3, 0.00, 400000.00, 'Kallakurichi', 'Eekaduthangal,chennai', '2401180005', '', '1', 'upload_files/candidate_tracker/93036221421_Varshitha R Front End Developer Resume-1.pdf', NULL, '1', '2024-01-18', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 04:47:17', 1, '2024-01-18 04:54:13', 0, NULL, 1),
(16191, 'Arularasi', '13', '9840501517', '8939178393', 'arularasi5555@gmail.com', '1997-08-30', 26, '6', '2', 'Ramamurthy', 'Vegetable shop', 10000.00, 2, 22500.00, 35000.00, 'Chennai', 'Chennai', '2401180006', '', '2', 'upload_files/candidate_tracker/41160657820_Arularasi_resume-3.pdf', NULL, '1', '2024-01-18', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 04:49:06', 1, '2024-01-18 04:52:16', 0, NULL, 1),
(16192, 'Boomiga V', '13', '8925789942', '9962006991', 'boomiga87@gmail.com', '2002-09-16', 21, '6', '2', 'Suganthi V', 'Cooking', 14000.00, 1, 0.00, 12000.00, 'Velachery, Chennai', 'Velachery, Chennai', '2401180007', '', '1', 'upload_files/candidate_tracker/69270596396_ boomiga - resume.pdf', NULL, '1', '2024-01-18', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 04:53:21', 1, '2024-01-18 04:59:35', 0, NULL, 1),
(16193, 'Khaja Mohideen M', '16', '8637659937', '7200798057', 'yousufkaja2295@gmail.com', '1995-07-29', 28, '6', '2', 'Julaika bee', 'House wife', 40000.00, 1, 40000.00, 45000.00, 'Chennai', 'Chennai', '2401180008', '', '2', 'upload_files/candidate_tracker/34583582584_KHAJA MOHIDEEN Updated CV (1) (1).pdf', NULL, '1', '2024-01-18', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 04:59:23', 1, '2024-01-18 05:03:30', 0, NULL, 1),
(16194, 'Deeban Chakravarthi.v', '31', '9150637272', '', 'deepankrishnann@gmail.com', '2002-12-12', 21, '6', '2', 'Parent', 'Driver', 300000.00, 1, 0.00, 200000.00, 'Chennai , perambur', 'Chennai, perambur', '2401180009', '', '1', 'upload_files/candidate_tracker/44357950727_Deepan Chakravarthi Resume.pdf', NULL, '1', '2024-01-18', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 05:02:45', 1, '2024-01-18 05:06:48', 0, NULL, 1),
(16195, 'Anuj Kumar', '13', '8984597503', '', 'anuj5307@gmail.com', '1993-09-19', 30, '6', '2', 'Umesh Prasad Mehta', 'Farmer', 10000.00, 1, 450000.00, 650000.00, 'hazaribagh', 'Chennai', '2401180010', '', '2', 'upload_files/candidate_tracker/95245719611_Anuj .pdf', NULL, '1', '2024-01-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-18 05:18:27', 110, '2024-01-18 11:08:41', 0, NULL, 1),
(16196, 'Chequvera', '13', '9025495850', '9025495840', 'Chequ2021@gmail.com', '2002-04-29', 21, '2', '2', 'Xavier', 'Daily way worker', 85000.00, 1, 0.00, 20000.00, 'Sivagangai', 'Chennai', '2401180011', '27', '1', 'upload_files/candidate_tracker/19281816716_CHEQU RESUME.pdf', NULL, '1', '2024-01-18', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 05:38:04', 1, '2024-01-18 05:45:53', 0, NULL, 1),
(16197, 'Vishal k v', '11', '7358321104', '', 'vishalkv60@gmail.com', '1994-12-01', 29, '6', '2', 'Geetha vijayan', 'Home maker', 130000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2401180012', '', '1', 'upload_files/candidate_tracker/7031747545_CV_2022092616584088-4.pdf', NULL, '1', '2024-01-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', '6', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 06:33:21', 1, '2024-01-18 06:36:23', 0, NULL, 1),
(16198, '', '0', '8122589475', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401180013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-18 06:41:21', 0, NULL, 0, NULL, 1),
(16199, 'Yousuf afnan', '13', '9345750714', '8122589475', 'yousufafnan543@gmail.com', '2003-02-26', 20, '3', '2', 'Imtiyaz ahmed', 'Accountant', 20000.00, 1, 0.00, 10000.00, 'Vaniyambadi', 'Chennai', '2401180014', '', '1', 'upload_files/candidate_tracker/18254032686_yousuf CV (1) (1).pdf', NULL, '1', '2024-01-18', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 06:48:35', 1, '2024-01-18 06:50:46', 0, NULL, 1),
(16200, 'Sivaguru S', '11', '8428808518', '', 'sivaguru946@gmail.com', '1998-09-03', 25, '3', '2', 'Saravanan S', 'Self employment', 10000.00, 1, 180000.00, 330000.00, 'Valangaiman', 'Valangaiman', '2401180015', '', '2', 'upload_files/candidate_tracker/31461360778_S_Sivaguru_Resume.pdf', NULL, '1', '2024-01-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 08:40:32', 1, '2024-01-18 08:45:04', 0, NULL, 1),
(16201, 'Naveen Raj S', '13', '9344733369', '', 'naveenrajsolution2001@gmail.com', '2001-12-13', 22, '6', '2', 'Srinevasan R', 'Tailor', 30000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2401180016', '', '1', 'upload_files/candidate_tracker/48186836805_Naveenraj_IT_312820205028.pdf', NULL, '1', '2024-01-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 08:42:00', 1, '2024-01-18 08:50:59', 0, NULL, 1),
(16202, 'Vignesh s', '13', '8778262538', '', 'vigneshbharath2017@gmail.com', '2001-12-24', 22, '3', '2', 'Padma', 'Sales women', 150000.00, 1, 0.00, 2.00, 'Chennai', 'Chen', '2401180017', '', '1', 'upload_files/candidate_tracker/72822320446_Vignesh web.pdf', NULL, '1', '2024-01-18', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 09:14:29', 1, '2024-01-18 09:18:11', 0, NULL, 1),
(16203, 'K.chinnaraj', '13', '9597939662', '', 'ckchinnaraj@gmail.com', '2002-04-14', 21, '6', '2', 'Kandharioban', 'Daily vedgers', 10000.00, 2, 0.00, 20000.00, 'Vanthavasi', 'Velachery', '2401180018', '', '1', 'upload_files/candidate_tracker/27200666871_RESUME.PDF', NULL, '1', '2024-01-18', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 09:28:44', 1, '2024-01-18 09:32:37', 0, NULL, 1),
(16204, 'Mohammad yazeed bh', '13', '9962360994', '', 'yazmoz2001@gmail.com', '2001-05-23', 22, '6', '2', 'Bh sajidh', 'Business', 50000.00, 2, 0.00, 4.00, 'Calicut', 'Anna nagar', '2401180019', '', '1', 'upload_files/candidate_tracker/5120900771_Mohdyaze.pdf', NULL, '1', '2024-01-18', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 09:43:58', 1, '2024-01-18 09:46:57', 0, NULL, 1),
(16205, 'Praveen Kumar', '13', '9150474611', '', 'arumudujayapraveen@gmail.com', '2003-07-06', 20, '3', '2', 'Araumudu', 'Daily wages', 15000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2401180020', '', '1', 'upload_files/candidate_tracker/17251440874_praveen.pdf.pdf', NULL, '1', '2024-01-18', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-18 10:21:59', 110, '2024-01-18 03:59:24', 0, NULL, 1),
(16206, 'S.Harikrishnan', '13', '9025386554', '8124738528', 'harikrishnan20507@gmail.com', '2003-03-10', 20, '3', '2', 'N.Suresh', 'Auto driver', 100000.00, 1, 0.00, 150000.00, 'Velachery, chennai', 'Chennai', '2401180021', '', '1', 'upload_files/candidate_tracker/99379337181_Hari_Java_Full_Stack_resume.pdf_20240107_135226_0000.pdf', NULL, '1', '2024-01-18', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-18 10:23:28', 110, '2024-01-18 03:59:42', 0, NULL, 1),
(16207, 'anjana', '11', '9443356850', '9791157423', 'anjanakat17@gmail.com', '2002-12-17', 21, '4', '2', 'jithendar katariya', 'accountant', 100000.00, 1, 0.00, 20000.00, 'old washermenpet', 'near roonwal suzuki showroom', '2401180022', '', '1', 'upload_files/candidate_tracker/68064204289_Adobe Scan Jan 18, 2024 (1).pdf', NULL, '1', '2024-01-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-18 10:33:01', 1, '2024-01-18 10:39:55', 0, NULL, 1),
(16208, 'Vaishali P', '13', '9566957508', '6382605539', 'Vishalipandiyan65@gmail.com', '2000-05-06', 23, '6', '2', 'Pandiyan', 'Farmer', 8000.00, 1, 0.00, 300000.00, 'Perambalur', 'Velachery', '2401190001', '', '1', 'upload_files/candidate_tracker/11998790758_Vishali_P_Resume_17-11-2023-10-27-11.pdf', NULL, '1', '2024-01-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical round Reject', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 04:17:53', 1, '2024-01-19 04:23:53', 0, NULL, 1),
(16209, 'Sukumaran K', '2', '8825577282', '', 'sukuvijay05@gmail.com', '1996-05-20', 27, '3', '2', 'Meena K', 'Housewife', 25000.00, 1, 0.00, 25000.00, 'Madurai', 'Madurai', '2401190002', '', '1', 'upload_files/candidate_tracker/42810555358_1.pdf', NULL, '1', '2024-01-19', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'He is ok with txxampC if he reaches jothiga and giving confirmation let us consider', '2', '1', '0', '4', '8', '0', '2', '2024-01-22', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 04:29:51', 1, '2024-01-19 04:34:08', 0, NULL, 1),
(16210, 'nawin chander', '13', '7845238375', '9940562275', 'nawinchander1997@gmail.com', '1997-09-09', 26, '3', '2', 'sugumar', 'retired - car driver srly', 25.00, 2, 0.00, 25.00, 'chennai', 'chennai', '2401190003', '', '1', 'upload_files/candidate_tracker/37052723350_Nawin_Chander_S_CV.pdf', NULL, '1', '2024-01-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 04:30:28', 1, '2024-01-19 04:34:30', 0, NULL, 1),
(16211, 'Jeevanandham P', '13', '7305113005', '', 'jeevanandhampandiyan@gmail.com', '2002-11-10', 21, '6', '2', 'Pandiyan S', 'Carpenter', 7000.00, 1, 0.00, 300000.00, 'No:3, Rama Rao Garden 1st Street Royapettah', 'No:13/167 Labour Colony 1st Street guindy', '2401190004', '', '1', 'upload_files/candidate_tracker/61256636361_JEEVANANDHAM P.pdf', NULL, '1', '2024-01-19', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 04:46:49', 1, '2024-01-19 04:51:55', 0, NULL, 1),
(16212, 'Daniel Arulraj A', '6', '9962836177', '6380213477', 'danielarulraj1422@gmail.com', '1998-10-14', 25, '2', '2', 'Anbudoss A', 'Medical salesman', 35000.00, 1, 22360.00, 26000.00, 'Kolathur , chennai 99', 'Kolathur , chennai 99', '2401190005', '1', '2', 'upload_files/candidate_tracker/66295261058_Resume_05_01_2024_07_30_46_pm-compressed (1).pdf', NULL, '1', '2024-01-19', 30, '', '3', '59', '2024-02-19', 360000.00, '', '5', '1970-01-01', '1', 'Selected for Manikandan Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-19 04:56:02', 60, '2024-01-24 11:27:03', 0, NULL, 1),
(16213, 'Josna C G', '11', '9840328542', '', 'josna8102@gmail.com', '2002-10-08', 21, '6', '2', 'George C P', 'Electrical contractor', 15000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2401190006', '', '1', 'upload_files/candidate_tracker/18809373606_Josna CG - Resume.pdf', NULL, '1', '2024-01-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Comfortable with the distance not suitable', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 05:10:23', 1, '2024-01-19 05:13:35', 0, NULL, 1),
(16214, 'Yogesh Raja. M', '13', '9841950646', '9042348245', 'yogeshraja2299@gmail.com', '1999-08-22', 24, '6', '2', 'D MADANA GOPAL', 'Business', 50000.00, 1, 2.80, 3.50, 'Chennai', 'Chennai', '2401190007', '', '2', 'upload_files/candidate_tracker/15137265074_YogeshRaja_M Resume.pdf', NULL, '1', '2024-01-19', 2, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 05:27:31', 1, '2024-01-19 05:30:44', 0, NULL, 1),
(16215, 'Raghuraman', '33', '7358227720', '', 'raghu1851366@gmail.com', '2001-11-14', 22, '6', '2', 'Swaminathan S', 'Retired railway person', 18000.00, 1, 327000.00, 380000.00, 'Plot.no.62 swamy nagar main road ullagaram', 'Plot.No.62 swamy nagar main road ullagaram', '2401190008', '', '2', 'upload_files/candidate_tracker/14174192141_Resume 22-12-2023.pdf', NULL, '1', '2024-01-19', 0, '', '3', '59', '2024-01-22', 216000.00, '', '0', NULL, '2', 'Initial 3 months 18K then 21K can be provided 3 yrs NDA', '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 05:36:13', 1, '2024-01-19 05:50:01', 0, NULL, 1),
(16216, 'Benjamin', '13', '6374413053', '', 'benjamin2k03@gmail.com', '2003-02-27', 20, '6', '2', 'K.m.John', 'Driver', 20000.00, 1, 0.00, 300000.00, 'Ambattur', 'Ambattur', '2401190009', '', '1', 'upload_files/candidate_tracker/93738438853_benjamin resume .pdf', NULL, '1', '2024-01-19', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Will come for Next round on 20 Jan 2024 between 04.30 to 05.30', '2', '2', '0', '1', '8', '0', '2', '2024-01-22', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 05:39:03', 1, '2024-01-19 05:45:17', 0, NULL, 1),
(16217, 'Rishika.M', '16', '8870830082', '', 'rishika.official2001@gmail.com', '2001-08-23', 22, '6', '2', 'A.Muthukumar', 'Driver', 12000.00, 1, 21000.00, 30000.00, 'Chennai', 'Chennai', '2401190010', '', '2', 'upload_files/candidate_tracker/15678151776_Resume2023 (2).pdf', NULL, '1', '2024-01-19', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok 1.3 yrs exp current 21K but exp around 25+ and getting married in 1 yr long run doubts a lot', '3', '1', '0', '1', '8', '0', '2', '2024-01-26', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 05:45:06', 1, '2024-01-19 06:33:16', 0, NULL, 1),
(16218, 'Janani vignesh', '13', '8015851068', '', 'jananipplj@gmail.com', '1999-05-21', 24, '6', '1', 'Vignesh', 'Working', 40000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2401190011', '', '1', 'upload_files/candidate_tracker/47263635837_Janani Vignesh .pdf', NULL, '1', '2024-01-19', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'If terms ok we can consider her profile for IT', '2', '1', '0', '1', '8', '0', '2', '2024-01-24', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 05:47:59', 1, '2024-01-19 05:50:50', 0, NULL, 1),
(16219, 'Ezhini', '13', '8124023660', '8110941681', 'ezhinind@gmail.com', '2009-01-19', 0, '6', '2', 'Dhandapani', 'Teacher', 500000.00, 1, 0.00, 300000.00, 'ANNA nagar', 'Chennai', '2401190012', '', '1', 'upload_files/candidate_tracker/17431714974_Ezhini N D (5).pdf', NULL, '1', '2024-01-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-19 06:22:51', 110, '2024-01-19 06:05:21', 0, NULL, 1),
(16220, 'Karthi Sangeetha', '4', '7845360158', '8803383335', 'karthigopimurali@gmail.com', '1997-07-12', 26, '2', '1', 'Vignesh', 'Poorvika home appliances', 35000.00, 2, 25000.00, 25000.00, 'Kasukara street, kovilpatti.', 'Periyar Pathai Fish Market F6th Appartment', '2401190013', '1', '2', 'upload_files/candidate_tracker/55771099768_karthisangeetha-1.pdf', NULL, '1', '2024-01-19', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-19 06:31:15', 104, '2024-01-30 11:49:33', 0, NULL, 1),
(16221, 'Karthick', '16', '8148125868', '9710419293', 'teemokarthick@gmail.com', '1993-07-14', 30, '6', '2', 'Narashiman', 'Cooli', 240000.00, 1, 32000.00, 38000.00, 'Chennai', 'Chennai', '2401190014', '', '2', 'upload_files/candidate_tracker/41537249325_kn11.pdf', NULL, '1', '2024-01-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication Min exp is 28K but not much strong with the basics pressure handling doubts', '3', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 06:47:34', 1, '2024-01-19 06:50:48', 0, NULL, 1),
(16222, 'Kaviya Anbarasan', '13', '9019129439', '', 'akaviya254@gmail.com', '2000-06-03', 23, '6', '2', 'Anbarasan', 'Labour', 23000.00, 1, 0.00, 3.00, 'Vellore', 'Chennai', '2401190015', '', '1', 'upload_files/candidate_tracker/2401345638_KAVIYA ANBARASAN.pdf', NULL, '1', '2024-01-19', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 07:26:07', 1, '2024-01-19 07:59:40', 0, NULL, 1),
(16223, 'sathya', '2', '8270462868', '', 'sathyaselvakumar649@gmail.com', '2003-02-20', 20, '6', '2', 'R.selvakumar', 'Self-employed', 25000.00, 1, 0.00, 150000.00, 'Madurai', 'Chennai', '2401190016', '', '1', 'upload_files/candidate_tracker/45203418715_sathya.s.pdf', NULL, '1', '2024-01-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our roles will not sustain and handle pressure ', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 07:55:03', 1, '2024-01-19 07:58:26', 0, NULL, 1),
(16224, 'Chippi C Swathi', '11', '9094444091', '', 'sippiswaa@gmail.com', '1990-06-15', 33, '6', '1', 'Chellapathi', 'Professor', 400000.00, 1, 30000.00, 35000.00, 'Chennai', 'Chennai', '2401190017', '', '2', 'upload_files/candidate_tracker/82860467127_2024chippiswati.pdf', NULL, '2', '2024-01-19', 20, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not uitable for our roles age around 34 fresher for HR and Salary exp is min 25K', '6', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-19 07:59:31', 1, '2024-01-19 08:04:37', 0, NULL, 1),
(16225, 'Dinesh Kumar', '5', '9150188090', '', 'ineshkumar.dpa@gmail.com', '1998-02-18', 25, '2', '1', 'kumar', 'private', 50000.00, 1, 3000.00, 30000.00, 'ambattur chennai', 'ambattur chennaj', '2401190018', '1', '2', 'upload_files/candidate_tracker/34025856506_Dinesh CV (1).pdf', NULL, '1', '2024-04-26', 0, '', '1', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-19 01:05:42', 112, '2024-04-26 01:01:12', 0, NULL, 1),
(16226, 'Selvaraj K', '5', '8973818481', '8807157687', 'selva1541994@gmail.com', '1994-04-15', 29, '2', '2', 'Kanakkan', 'Cooly', 5000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2401190019', '1', '2', 'upload_files/candidate_tracker/64297823465_5_6305352237837191935.docx', NULL, '1', '2024-01-20', 0, '', '1', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-19 04:34:16', 104, '2024-01-20 11:30:04', 0, NULL, 1),
(16227, 'Manoj G', '2', '9361373852', '', 'manoj.g.prof@gmail.com', '1999-10-06', 24, '3', '2', 'Govindaraj V', 'Driver', 30000.00, 1, 0.00, 320000.00, 'Coimbatore', 'Coimbatore', '2401200001', '', '1', 'upload_files/candidate_tracker/59883478537_DOC-20240120-WA0000..pdf', NULL, '1', '2024-01-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 03:52:25', 1, '2024-01-20 03:56:05', 0, NULL, 1),
(16228, 'Manjula', '13', '8056699286', '', 'mailmanjula2210@gmail.com', '2000-10-22', 23, '6', '2', 'Mayilsamy', 'Business Man', 25000.00, 1, 0.00, 18000.00, 'Coimbatore', 'Coimbatore', '2401200002', '', '1', 'upload_files/candidate_tracker/40573032403_1705724121831_1705652915675_MANJULA RESUME.pdf', NULL, '1', '2024-01-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 04:03:41', 1, '2024-01-20 04:17:08', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16229, 'Manikumar R', '33', '7695983718', '', 'manikumarrajendran07@gmail.com', '2001-01-07', 23, '3', '2', 'Rajendran', 'Farmer', 30000.00, 1, 0.00, 20000.00, 'Cumbum', 'Cumbum', '2401200003', '', '2', 'upload_files/candidate_tracker/49726508923_Manikumar Resume-2-1_11zon (1) (1).pdf', NULL, '1', '2024-01-20', 0, '', '3', '59', '2024-01-24', 216000.00, '', NULL, '2026-02-28', '2', 'Selected fr Accounts Team', '4', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-20 04:07:13', 60, '2024-02-03 07:05:46', 0, NULL, 1),
(16230, 'pugazhendhi', '13', '8940920665', '', 'pugazh2801@gmail.com', '2002-01-28', 21, '6', '2', 'janaki', 'panjayat office', 20000.00, 0, 0.00, 200000.00, 'kallakurichi', 'tambaram', '2401200004', '', '1', 'upload_files/candidate_tracker/25361017146_Resume .pdf', NULL, '1', '2024-01-20', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 04:10:01', 1, '2024-01-20 04:17:57', 0, NULL, 1),
(16231, '', '0', '6382245282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401200005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-20 04:32:07', 0, NULL, 0, NULL, 1),
(16232, 'Meganathan', '13', '9791367512', '6382245282', 'meganathan1999@gmail.com', '1999-03-01', 24, '6', '2', 'RAVICHANDRAN kR', 'Weaver', 20000.00, 1, 0.00, 300000.00, 'Paramakudi, Ramanathapuram (DT).', 'Chennai,', '2401200006', '', '1', 'upload_files/candidate_tracker/9862700315_Megu Resume New .pdf', NULL, '1', '2024-01-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 04:33:11', 1, '2024-01-20 04:37:37', 0, NULL, 1),
(16233, 'Saran', '13', '6382911965', '', 'sarann2302@gmail.com', '2002-02-23', 21, '6', '2', 'Nagarajan', 'Teacher', 900000.00, 1, 0.00, 330000.00, 'Thiruvallur', 'Thiruvallur', '2401200007', '', '1', 'upload_files/candidate_tracker/79581523576_saran software developer.pdf', NULL, '1', '2024-01-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 04:34:17', 1, '2024-01-20 04:36:49', 0, NULL, 1),
(16234, 'Yokesh R', '13', '8668177957', '', 'yokeshragupathi2002@gmail.com', '2002-08-17', 21, '6', '2', 'Ragupathy. c', 'Farmer', 25000.00, 0, 0.00, 300000.00, 'Kodambakkam, Ranipet.', 'Thiruvallur', '2401200008', '', '1', 'upload_files/candidate_tracker/63361527085_Yokesh-R-resume.pdf', NULL, '1', '2024-01-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 04:34:22', 1, '2024-01-20 05:09:51', 0, NULL, 1),
(16235, 'Sethupathy', '2', '8526269692', '', 'Sethupathy06@gmail.com', '1993-12-23', 30, '6', '2', 'Saminathan', 'Retd Tamilnadu civil supply corp.', 30000.00, 1, 0.00, 250000.00, 'pattukottai, Thanjavur district.', 'Shollinganalur, chennai.', '2401200009', '', '1', 'upload_files/candidate_tracker/66296623411_Untitled document-2.pdf', NULL, '1', '2024-01-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 04:48:21', 1, '2024-01-20 04:57:11', 0, NULL, 1),
(16236, 'Syed Salahuddin k', '13', '9597642877', '', 'Salahuddinksyed.12@gmail.com', '1999-12-16', 24, '6', '2', 'Khamruddin', 'Marketing', 40000.00, 1, 25000.00, 30000.00, 'Pondicherry', 'Chennai', '2401200010', '', '2', 'upload_files/candidate_tracker/91360792283_SyedSalahuddin.pdf', NULL, '1', '2024-01-20', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 04:55:52', 1, '2024-01-20 05:05:31', 0, NULL, 1),
(16237, 'RAJMOHAN R', '13', '6380872711', '9585135275', 'rajmohan00798@gmail.com', '1998-06-03', 25, '6', '2', 'RAMAKRISHNAN R', 'Farmer', 6000.00, 2, 0.00, 300000.00, 'KARIVETTI, BHUVANAGIRI TALUK, CUDDALORE DISTRICT', 'VELACHERY', '2401200011', '', '1', 'upload_files/candidate_tracker/73971462176_SD new zoho.pdf', NULL, '1', '2024-01-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 04:56:31', 1, '2024-01-20 05:04:17', 0, NULL, 1),
(16238, 'K.Nithya', '13', '9940996814', '9361612226', 'nithyapooja1710@gmail.com', '1999-10-17', 24, '6', '2', 'Pushpavalli', 'Home maker', 30000.00, 2, 25000.00, 25000.00, 'Pondicherry', 'Chennai', '2401200012', '', '2', 'upload_files/candidate_tracker/65105958134_K.Nithya_Resume (1).pdf', NULL, '1', '2024-01-20', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 04:57:09', 1, '2024-01-20 05:01:27', 0, NULL, 1),
(16239, 'vignesh e', '16', '8220675090', '', 'vigneshelumalai189@gmail.com', '2000-09-18', 23, '6', '2', 'elumalai', 'business', 40000.00, 1, 0.00, 25000.00, 'gingee', 'chennai', '2401200013', '', '1', 'upload_files/candidate_tracker/99129687898_SIST-MBA- 41410341- VIGNESH E.pdf', NULL, '1', '2024-01-20', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 05:02:59', 1, '2024-01-20 05:06:19', 0, NULL, 1),
(16240, 'VigneshwaranS', '13', '8754926825', '', 'Vigneshwaranselvarasu29@gmail.com', '2002-04-19', 21, '6', '2', 'Selvarasu M', 'Framer', 30000.00, 1, 0.00, 3.00, 'Thiruvattathurai,Tittagudi(T.K), Cuddalore(D.T)', 'Thoripakkam', '2401200014', '', '1', 'upload_files/candidate_tracker/32750074173_Vigneshwaran Resume.pdf', NULL, '1', '2024-01-20', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 05:07:42', 1, '2024-01-20 05:16:03', 0, NULL, 1),
(16241, 'Sheik abdulla', '13', '9566047511', '9944124173', 'sheikabdulla1808@gmail.com', '2001-11-18', 22, '3', '2', 'Md asadulla', 'Unemploye', 12000.00, 2, 0.00, 10000.00, 'Royapettah ,chennai', 'Chennai', '2401200015', '', '1', 'upload_files/candidate_tracker/45502896338_Sheik Abdullah M-1.pdf', NULL, '1', '2024-01-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-20 05:17:49', 110, '2024-01-20 01:33:10', 0, NULL, 1),
(16242, 'ajai.', '6', '7395995032', '9841440555', 'valentinoajai2001@gmail.com', '2001-09-05', 22, '2', '2', 'gurusamy.', 'real estate', 40000.00, 1, 0.00, 16000.00, 'porur', 'porur', '2401200016', '1', '1', 'upload_files/candidate_tracker/80366625276_Ajai G RESUME_1700235727505 1 (1) (1).pdf', NULL, '1', '2024-01-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-20 05:29:05', 110, '2024-01-20 03:19:26', 0, NULL, 1),
(16243, 'Sifat Naiyer', '31', '9555992412', '9718553438', 'sifatnyr@gmail.com', '1998-12-21', 25, '6', '2', 'Ausaf', 'Freelancer', 35000.00, 6, 0.00, 2.50, 'Bihar', 'Chennai', '2401200017', '', '1', 'upload_files/candidate_tracker/8951518262_DocScanner 20 Jan 2024 10-54 am.pdf', NULL, '1', '2024-01-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Bihari candidate will not sustain in our roles', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 05:29:32', 1, '2024-01-20 05:34:16', 0, NULL, 1),
(16244, 'Tamilselvi', '5', '8531836955', '9380813052', 'tamilselvi2003s@gmail.com', '2003-06-05', 20, '2', '1', 'Senthil Kumar', 'Driver', 15.00, 3, 0.00, 15.00, 'Chinnamottur, Thirupattur , tamilnadu', 'Bommanailli, Bengaluru', '2401200018', '1', '1', 'upload_files/candidate_tracker/81925017227_tamil new.pdf', NULL, '1', '2024-01-20', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-20 05:36:42', 104, '2024-01-20 11:27:03', 0, NULL, 1),
(16245, 'Saran Kumar', '2', '6379583629', '', 'saran.softdev@gmail.com', '2002-07-29', 21, '6', '2', 'Nirmal.P', 'Cow forming', 15000.00, 1, 0.00, 300000.00, 'Cuddalore', 'Cuddalore', '2401200019', '', '1', 'upload_files/candidate_tracker/21229913586_Sarankumar.pdf', NULL, '1', '2024-01-20', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 06:07:58', 1, '2024-01-20 06:12:34', 0, NULL, 1),
(16246, 'Ranjith Kumar S', '2', '8608643005', '', 'ranjith.softdev@gmail.com', '2003-02-21', 20, '6', '2', 'Selvaraj M', 'Tinker', 15000.00, 1, 0.00, 300000.00, 'Cuddalore', 'Cuddalore', '2401200020', '', '1', 'upload_files/candidate_tracker/11469046591_Ranjith Kumar .pdf', NULL, '1', '2024-01-20', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 06:08:34', 1, '2024-01-20 06:12:44', 0, NULL, 1),
(16247, 'Mohamed Ismail habeeb', '5', '9087702768', '', 'imismail4@gmail.com', '1992-11-12', 31, '4', '1', 'Faridha Begum', 'Sales rep', 27.00, 2, 20.00, 30.00, 'Maadhavaram', 'Madhavaram', '2401200021', '', '1', 'upload_files/candidate_tracker/49563834872_ISMAIL RESUME UPDATED.pdf', NULL, '1', '2024-01-20', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not actually intended to attend interview, just seen our board near lift and came to attend what kind of compnany it is.  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-20 07:31:25', 110, '2024-01-20 03:12:02', 0, NULL, 1),
(16248, 'Santhosh Kumar', '13', '8248024905', '9092931892', 'santhoshkumarece2247@gmail.com', '1992-11-22', 31, '6', '2', 'Muthu Kumar', 'Farmer', 15000.00, 1, 45000.00, 50000.00, 'Chennai', 'Chennai', '2401200022', '', '2', 'upload_files/candidate_tracker/97737292786_1705742805010_Santhoshh.pdf', NULL, '1', '2024-01-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 09:19:23', 1, '2024-01-20 09:54:17', 0, NULL, 1),
(16249, 'Shakthivel', '13', '9361405674', '9344543752', 'shakthi7608@gmail.com', '1999-10-24', 24, '6', '2', 'Kolangiappan', 'Sub inspector of police', 50000.00, 1, 180000.00, 250000.00, 'Chennai', 'Chennai', '2401200023', '', '2', 'upload_files/candidate_tracker/70760416225_shakthi_resume.pdf', NULL, '1', '2024-01-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 09:25:43', 1, '2024-01-20 09:38:48', 0, NULL, 1),
(16250, 'Sharan M', '13', '8608971662', '9940443325', 'sharanmuthuraja@gmail.com', '2000-02-23', 23, '3', '2', 'Muthuraja', 'Business', 50000.00, 2, 2.58, 4.00, 'Chennai', 'Chennai', '2401200024', '', '2', 'upload_files/candidate_tracker/42729918674_sharanM.pdf', NULL, '1', '2024-01-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 09:27:41', 1, '2024-01-20 09:45:03', 0, NULL, 1),
(16251, 'Mohamed Samemullah', '13', '8056696130', '', 'samemulahm0406@gmail.com', '2000-06-23', 23, '6', '2', 'Syed Farook A', 'Driver', 20000.00, 1, 0.00, 2.80, 'Thiruchampalli', 'Ramapuram', '2401200025', '', '1', 'upload_files/candidate_tracker/84562190248_Mhd_Samemullah S_20240110_163049_0000.pdf', NULL, '1', '2024-01-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-20 10:16:09', 1, '2024-01-20 10:23:25', 0, NULL, 1),
(16252, '', '0', '9524886047', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401200026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-20 03:17:57', 0, NULL, 0, NULL, 1),
(16253, 'V purusothaman v.purusothaman', '16', '6381081193', '7397005790', 'V.purusothaman095@gnail.com', '1995-06-08', 28, '2', '2', 'R. Venkatesan', 'Farmer', 3.10, 1, 16000.00, 25000.00, 'Chennai City Corporation', 'Chennai City Corporation', '2401220001', '1', '2', 'upload_files/candidate_tracker/48283395749_resum vp experince 0095 (1).pdf', NULL, '1', '2024-01-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-22 12:39:06', 110, '2024-01-22 12:20:04', 0, NULL, 1),
(16254, 'sasidharan', '13', '9150642972', '', 'sasi69298@gmail.com', '2002-02-13', 21, '3', '2', 'rajavelu', 'farmer', 10000.00, 1, 0.00, 3.00, 'villupuram', 'chennai', '2401220002', '', '1', 'upload_files/candidate_tracker/52167750004_resume-sasidharan R.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 03:54:36', 1, '2024-01-22 04:13:50', 0, NULL, 1),
(16255, 'Sriram jayaprakash', '13', '8610667830', '9444061968', 'sriram.fsd@gmail.com', '1999-11-01', 24, '6', '2', 'Jayaprakash munusamy', 'Agriculture', 20000.00, 1, 0.00, 12000.00, 'Kanchipuram', 'Kanchipuram', '2401220003', '', '1', 'upload_files/candidate_tracker/84798408233_Sriram Resume - SmartHRMS.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 04:24:35', 1, '2024-01-22 04:45:32', 0, NULL, 1),
(16256, 'Siva Rama Krishnan R', '13', '8940712712', '9942005063', 'sivaramakrishnan2019sk@gmail.com', '2001-12-27', 22, '3', '2', 'Ramar', 'Shop keeper', 15000.00, 1, 0.00, 3.00, 'Tenkasi', 'Tenkasi', '2401220004', '', '1', 'upload_files/candidate_tracker/68809389989_Siva-Rama-Krishnan-R-FlowCV-Resume-20231202.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 04:27:33', 1, '2024-01-22 04:31:16', 0, NULL, 1),
(16257, 'Ishwarya', '13', '8870885716', '7502087614', 'ishwarya@gmail.com', '2000-05-01', 23, '3', '2', 'Amirthalingam', 'Former', 15000.00, 2, 0.00, 3.00, 'Nayaganaipiriyal,Ariyalur,621804', 'Mint,chennai', '2401220005', '', '1', 'upload_files/candidate_tracker/93233315666_Ishwarya CV New.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 04:28:31', 1, '2024-01-22 04:39:27', 0, NULL, 1),
(16258, 'Divya K O', '4', '9962032308', '8939414733', 'divyomprakash@gmail.com', '1986-08-23', 37, '4', '1', 'Chandra shekar', 'ASM', 45000.00, 10, 21000.00, 25000.00, 'Triplicane', 'Triplicane', '2401220006', '', '2', 'upload_files/candidate_tracker/22951515273_DOC-20231116-WA0007..pdf', NULL, '1', '2024-01-22', 1, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to check and confirm later ', '1', '2', '0', '1', '8', '0', '2', '2024-01-26', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 04:29:32', 1, '2024-01-22 04:42:39', 0, NULL, 1),
(16259, 'Sharon.M', '5', '7358193033', '9710297837', 'sharonmeshack2002@gmail.com', '2002-04-29', 21, '1', '2', 'Meshack', 'Client relationship Executive', 250000.00, 1, 22000.00, 25000.00, 'chennai', 'chennai', '2401220007', '', '2', 'upload_files/candidate_tracker/68162764588_Sharon Resume.pdf', NULL, '1', '2024-01-22', 20, '2401220007', '3', '59', '2024-03-04', 348000.00, '', '5', '1970-01-01', '2', 'Selected for Mani Team in Staff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-22 04:36:17', 60, '2024-02-21 07:36:04', 0, NULL, 1),
(16260, 'BHARATH S', '31', '9498063638', '', 'bharath.s1373@gmail.com', '2003-07-13', 20, '3', '2', 'SEKAR G', 'QUALITY ASSISTANT', 24000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2401220008', '', '1', 'upload_files/candidate_tracker/30240296642_Bharath_resume2024.pdf', NULL, '1', '2024-01-22', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 04:43:30', 1, '2024-01-22 04:53:39', 0, NULL, 1),
(16261, 'Maruthupandian', '13', '8056471584', '6374259718', 'maruthuroshan5@gmail.com', '1997-08-09', 26, '3', '2', 'M. Pandi', 'Business', 25000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2401220009', '', '1', 'upload_files/candidate_tracker/68776159541_Maruthupandian_Resume.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 04:46:34', 1, '2024-01-22 05:04:28', 0, NULL, 1),
(16262, 'Manoj.R', '6', '6383599319', '9043702683', 'manoj2683mano@gmail.com', '2003-08-26', 20, '1', '2', 'No', 'No', 200000.00, 0, 20000.00, 22000.00, 'Chennai', 'Chennai', '2401220010', '', '2', 'upload_files/candidate_tracker/95023743150_RESUME .pdf', NULL, '1', '2024-01-22', 10, 'P1427', '3', '59', '2024-02-03', 222000.00, '', NULL, '2026-02-03', '2', 'Selected for Syed Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-22 04:50:40', 60, '2024-02-03 02:58:10', 0, NULL, 1),
(16263, 'jegadeeswaran G', '13', '7010702739', '9840357996', 'jegadeeswaran.g5@gmail.com', '1994-03-08', 29, '3', '2', 'Gandhi G', 'Driver', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2401220011', '', '1', 'upload_files/candidate_tracker/48545079874_Jegadeeswaran.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 05:06:08', 1, '2024-01-22 05:21:54', 0, NULL, 1),
(16264, 'LIVIN S', '13', '9345649175', '9597751434', 'livinsamuel948@gmail.com', '2003-07-09', 20, '6', '2', 'G.SAMUEL BALASINGH', 'Conductor', 30000.00, 1, 0.00, 10000.00, 'Tirunelveli', 'Tirunelveli', '2401220012', '', '1', 'upload_files/candidate_tracker/86445269070_S.LIVIN (resume.pdf).pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 05:06:39', 1, '2024-01-22 05:13:19', 0, NULL, 1),
(16265, 'Suresh cyril', '11', '7094049147', '', 'sureshsiril111222@gmail.com', '2000-05-28', 23, '6', '2', 'Panneer Selvam', 'EX ARMY', 150000.00, 1, 275000.00, 300000.00, 'Tiruchirappalli', 'Tiruchirappalli', '2401220013', '', '2', 'upload_files/candidate_tracker/11419171718_Suresh Cyril P.pdf', NULL, '1', '2024-01-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 05:06:44', 1, '2024-01-22 05:09:55', 0, NULL, 1),
(16266, 'Kannan.v', '11', '9789835425', '7010974035', 'kannanvijay2811@gmail.com', '1997-11-28', 26, '6', '2', 'Vijayan.k', 'Business development manager', 18000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2401220014', '', '1', 'upload_files/candidate_tracker/32958120376_HR KANNAN resume 23-1.pdf', NULL, '1', '2024-01-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 05:06:58', 1, '2024-01-22 05:14:00', 0, NULL, 1),
(16267, 'Jagadeesh', '13', '8675155143', '8825921244', 'jagadeesh603102@gmail.com', '2000-06-20', 23, '6', '2', 'Gopal', 'Carpenter', 30000.00, 1, 0.00, 25000.00, 'Kalpakkam', 'Kalpakkam', '2401220015', '', '1', 'upload_files/candidate_tracker/86147055234_Jagadeesh.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 05:07:09', 1, '2024-01-22 05:13:48', 0, NULL, 1),
(16268, 'MANIMARAN', '13', '8925345696', '', 'Manimaranrakku@gmail.com', '2003-07-31', 20, '3', '2', 'Shandhi', 'Labour', 15000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2401220016', '', '1', 'upload_files/candidate_tracker/3785234335_maran resume1.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 05:11:22', 1, '2024-01-22 05:16:22', 0, NULL, 1),
(16269, 'yokesh', '13', '8124520119', '7373431511', 'syokesh070@gmail.com', '2001-10-21', 22, '3', '2', 'srinivasan', 'business', 30000.00, 1, 0.00, 300000.00, 'thiruvalur', 'thiruvalur', '2401220017', '', '1', 'upload_files/candidate_tracker/55623025079_Resume Yokesh.s.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 05:16:14', 1, '2024-01-22 05:22:39', 0, NULL, 1),
(16270, 'alaudhin', '13', '9361303772', '9080004963', 'ralaudhin1@gmail.com', '2002-05-23', 21, '6', '2', 'rafi', 'velder', 25000.00, 1, 0.00, 300000.00, 'thiruvallur', 'thiruvallur', '2401220018', '', '1', 'upload_files/candidate_tracker/90251823696_Alaudhinn Resume(1).pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 05:19:07', 1, '2024-01-22 05:22:39', 0, NULL, 1),
(16271, 'Kavish', '14', '7530066055', '', 'kavishanandh20@gmail.com', '2001-02-22', 22, '6', '2', 'M.Anand', 'None', 20000.00, 1, 0.00, 10000.00, 'Nagercoil', 'Chennai', '2401220019', '', '1', 'upload_files/candidate_tracker/13356169598_Kavish resume.pdf', NULL, '1', '2024-01-22', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 05:20:11', 1, '2024-01-22 05:26:33', 0, NULL, 1),
(16272, 'Pragadeesh', '14', '8189852532', '9750033437', 'pragadeesh12112002@gmail.com', '2002-11-12', 21, '3', '2', 'Sivanandhan', 'Tea master', 96000.00, 2, 0.00, 200000.00, 'Tirunelveli', 'Chennai', '2401220020', '', '1', 'upload_files/candidate_tracker/66584287139_pragadeesh es.pdf', NULL, '1', '2024-01-22', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 05:48:27', 1, '2024-01-22 06:04:39', 0, NULL, 1),
(16273, 'Pavitra Devi', '5', '9025457691', '9987422055', 'pavitradevisokkalingam8295@gmail.com', '1995-02-08', 28, '4', '1', 'Sokkalingam', 'Composite Financial Consultant', 30000.00, 1, 25000.00, 35000.00, 'Palur, Cuddalore', 'Palur, Cuddalore', '2401220021', '', '2', 'upload_files/candidate_tracker/12539130385_PAVITRA_DEVI_RESUME.pdf', NULL, '1', '2024-01-22', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 06:01:27', 1, '2024-01-22 06:23:48', 0, NULL, 1),
(16274, '', '0', '6374298135', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401220022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-22 06:03:23', 0, NULL, 0, NULL, 1),
(16275, 'Anushya', '23', '8248807620', '9626787655', 'Anushyamurugan02@gmail.com', '2002-07-15', 21, '6', '2', 'Parent', 'Cooli', 80000.00, 2, 0.00, 12000.00, '2/26 pillaiyar Kovil street,tenkasi', 'Saithapet,chennai', '2401220023', '', '1', 'upload_files/candidate_tracker/25159671380_anushya_btech_resume.pdf', NULL, '1', '2024-01-22', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 06:21:50', 1, '2024-01-22 06:32:07', 0, NULL, 1),
(16276, 'Siva Kumar B', '13', '9344481128', '6374298135', 'sivakumarb3928@gmail.com', '2002-03-20', 21, '3', '2', 'B .Babu', 'Daily wages Employees', 30000.00, 3, 0.00, 200000.00, '5/259 annai therasa Street pozhichalur Chennai 74', '5/259 annai therasa Street pozhichalur Chennai 74', '2401220024', '', '1', 'upload_files/candidate_tracker/76516388491_ImageToPDF 22-01-2024 12.42.56.pdf', NULL, '1', '2024-01-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 06:37:30', 1, '2024-01-22 07:41:57', 110, '2024-01-22 03:04:05', 0),
(16277, 'DHANANJEYAN.R', '6', '6382993763', '', 'Skjai1802@gmail.com', '2002-12-13', 21, '3', '2', '9791812904', 'Student', 40000.00, 1, 0.00, 20000.00, 'Sri Vinayaga nagar 3rd street Kodungaiyur', 'Sri Vinayaga Nagar 3rd Street Kodungaiyur', '2401220025', '', '1', 'upload_files/candidate_tracker/70804556096_CV_2024011718352441.pdf', NULL, '1', '2024-01-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 06:45:52', 1, '2024-01-22 06:53:05', 0, NULL, 1),
(16278, 'Balakumaran K', '17', '9566251308', '', 'Balakalidhasan99@gmail.com', '2009-01-22', 0, '2', '2', 'P Kalidhasan', 'Business', 20000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2401220026', '1', '2', 'upload_files/candidate_tracker/77329531210_Balakumaran - BDA.pdf', NULL, '1', '2024-01-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Work Experiance in other Domain, But Sustain is Doubt, Will Try To Analyis in the traing period. Also His salary excepation is to high, but not for the quality in our domain ,Will provide fresher salary or 16k to 17k .', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-22 07:10:32', 104, '2024-01-22 12:51:11', 0, NULL, 1),
(16279, '', '0', '9444921596', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401220027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-22 07:14:28', 0, NULL, 0, NULL, 1),
(16280, 'J. Mohamed riyasfin', '5', '9159307059', '9944669262', 'riyaj0304@gmail.com', '2000-04-03', 23, '2', '2', 'Jahir hussain', 'Business', 30000.00, 2, 0.00, 13000.00, 'Theni', 'Koyambed', '2401220028', '1', '1', 'upload_files/candidate_tracker/76986258352_1705562207773_J Mohamed Riyasdin resume.docx', NULL, '1', '2024-01-22', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Could Not understand The Quetions , Also Communication Problem , Did Not Spoke Properly, Also Overall Performance is Not Good.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-22 07:23:58', 108, '2024-01-22 03:48:11', 0, NULL, 1),
(16281, 'Sivakumar B', '13', '9884451413', '', 'Sivakumar01234566@gmail.com', '2002-03-20', 21, '6', '2', 'B Babu', 'Daily wages employee', 20000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2401220029', '', '1', 'upload_files/candidate_tracker/26074995855_DOC-20231111-WA0005..docx', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 07:29:45', 1, '2024-01-22 07:45:34', 0, NULL, 1),
(16282, 'Preethy', '4', '9840358053', '9043675501', 'kannapreethy7@gmail.com', '1999-08-28', 24, '1', '2', 'Gunasekaran', 'Courier service', 12000.00, 1, 16000.00, 18000.00, 'Kanchipuram', 'Kanchipuram', '2401220030', '', '2', 'upload_files/candidate_tracker/40816569088_Preethy+cv pdf.pdf', NULL, '1', '2024-01-22', 0, '77845', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 07:54:16', 1, '2024-01-22 09:18:21', 0, NULL, 1),
(16283, 'M.Snega', '4', '9176135545', '6382412251', 'msnega909@gmail.com', '2001-06-23', 22, '1', '2', 'Malairaj', 'Cool', 15.00, 1, 18000.00, 20000.00, 'Tondiarpet', 'Tondiarpet', '2401220031', '', '2', 'upload_files/candidate_tracker/55498386007_Snega cv .pdf', NULL, '1', '2024-01-22', 0, '77845', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 07:54:20', 1, '2024-01-22 09:20:01', 0, NULL, 1),
(16284, 'CHANDRU R', '31', '8531015756', '9080233305', 'thisischandrul@gmail.com', '1997-04-03', 26, '3', '1', 'SARATHA', 'House wife', 20000.00, 1, 0.00, 12000.00, 'Theni', 'Chennai', '2401220032', '', '1', 'upload_files/candidate_tracker/99031481539_Resume 2.pdf', NULL, '1', '2024-01-22', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 08:05:40', 1, '2024-01-22 09:18:53', 0, NULL, 1),
(16285, 'ESAKKIRAJA M', '14', '7708072172', '', 'esakkirajam78@gmail.com', '1999-07-16', 24, '6', '2', 'MUTHUPANDIYAN N', 'Coolie', 22000.00, 2, 22000.00, 35000.00, 'Tirunelveli', 'Tirunelveli', '2401220033', '', '2', 'upload_files/candidate_tracker/22208619349_ESAKKIRAJA M RESUME-1.pdf', NULL, '1', '2024-01-22', 30, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 08:27:09', 1, '2024-01-22 08:38:23', 0, NULL, 1),
(16286, 'Hariharan T', '13', '9384961810', '', 'harithiru1302@gmail.com', '2002-02-13', 21, '1', '2', 'Marikkannu', 'Daily wages', 7000.00, 1, 0.00, 18000.00, 'Palani', 'Chennai', '2401220034', '', '1', 'upload_files/candidate_tracker/44833526028_Resume.pdf', NULL, '1', '2024-01-22', 0, 'Sathish', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 09:11:00', 1, '2024-01-22 09:19:02', 0, NULL, 1),
(16287, 'Harish N', '13', '6383438574', '', 'hari3432614@gmail.com', '2002-07-09', 21, '3', '2', 'Nedunchelian S', 'Daily wages', 10000.00, 0, 0.00, 20000.00, 'Aranthangi', 'Chennai', '2401220035', '', '1', 'upload_files/candidate_tracker/44113023815_Harish_N Resume.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 09:12:16', 1, '2024-01-22 09:18:55', 0, NULL, 1),
(16288, 'Sarathy G', '4', '6238350218', '', 'Sarathygajendran160@gmail.com', '1998-04-30', 25, '1', '2', 'Gajendran S', 'Real estate', 20000.00, 2, 18000.00, 20000.00, 'Maduravoyal', 'Maduravoyal', '2401220036', '', '2', 'upload_files/candidate_tracker/76443445869_SARATHY G RESUME-2.pdf', NULL, '1', '2024-01-22', 0, '77845', '7', '59', NULL, 0.00, '', '0', NULL, '2', 'experienced. Selected for b2b', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 09:17:31', 1, '2024-01-22 09:26:10', 0, NULL, 1),
(16289, 'Vijayaraman', '13', '6380733280', '9442009540', 'vijayra914@gmail.com', '2001-09-10', 22, '3', '2', 'Pattusamy', 'Police', 30000.00, 2, 1.50, 2.00, 'Mayiladuthurai', 'Chennai', '2401220037', '', '2', 'upload_files/candidate_tracker/72240519565_Vijayaraman Resume.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 09:21:50', 1, '2024-01-22 09:32:00', 0, NULL, 1),
(16290, '', '0', '9566595546', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401220038', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-22 09:38:14', 0, NULL, 110, '2024-01-22 03:22:13', 0),
(16291, 'Abdul muthalif asfaq a s', '13', '9566595546', '', 'Kajaasfaq2001@gmail.com', '2001-02-03', 22, '6', '2', 'Sadiq batcha a a', 'Business', 30000.00, 2, 0.00, 360000.00, 'Pallapatti karur', 'Chennai', '2401220039', '', '1', 'upload_files/candidate_tracker/90276705251_Abdul-Muthalif-Asfaq-A-S-FlowCV-Resume-20231223-1.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 09:53:30', 1, '2024-01-22 10:07:55', 0, NULL, 1),
(16292, 'Sharath S', '13', '6369782224', '', 'sharathsharavanan7@gmail.com', '2002-05-22', 21, '3', '2', 'Sharavanan', 'Daily wages', 96000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2401220040', '', '1', 'upload_files/candidate_tracker/90877996221_Sharath Resume (1).pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 09:58:03', 1, '2024-01-22 10:07:12', 0, NULL, 1),
(16293, 'Sathish Kumar p', '13', '9092934323', '', 'sathishkumarrj839@gmail.com', '2009-01-22', 0, '3', '2', 'Parasuraman.k', 'Daily wages', 300000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2401220041', '', '1', 'upload_files/candidate_tracker/79013491105_SathishKumarResume_20240122_121624_0000.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-22 10:01:01', 112, '2024-03-26 05:52:10', 0, NULL, 1),
(16294, 'Yuvaraj k', '13', '8110072606', '', 'Yuvarajvk606@gmail.com', '1999-05-03', 24, '3', '2', 'Kumar t', 'Corpenter', 25000.00, 2, 0.00, 18000.00, 'Uthiramerur', 'Thambaram', '2401220042', '', '1', 'upload_files/candidate_tracker/14162109157_yuva cv.pdf', NULL, '1', '2024-01-22', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-22 10:32:19', 1, '2024-01-22 10:53:01', 0, NULL, 1),
(16295, 'F. Humera Banu', '5', '7904128996', '', 'banuhumera65@gmail.com', '2002-11-03', 21, '2', '2', 'Fayaz Hussain', 'Working in big mosque', 15000.00, 1, 0.00, 2.50, 'Burrah sahib street, mount road, chennai- 600002', 'Same as above', '2401220043', '1', '1', 'upload_files/candidate_tracker/27880930711_Humera Banu Resume_1705505203443_Humera Banu.pdf', NULL, '1', '2024-01-22', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-22 10:53:15', 108, '2024-01-23 11:08:35', 0, NULL, 1),
(16296, 'P. Joy', '5', '6379537742', '', 'joypandian02@gmail.com', '2001-11-11', 22, '1', '2', 'Paulpandian', 'Coolie', 10000.00, 1, 0.00, 17000.00, '4/530, East Street, Pommaiyapuram.', '27/9, 2nd Street, Kumaran colony, Vadapalani.', '2401230001', '', '1', 'upload_files/candidate_tracker/96248308350_joy 11.pdf', NULL, '1', '2024-01-23', 0, 'P1287', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-23 04:39:31', 110, '2024-01-23 11:02:22', 0, NULL, 1),
(16297, 'Sathya s', '5', '6383005842', '', 'sathyas2425@gmail.com', '1999-10-24', 24, '1', '2', 'Rajalakshmi', 'Cooli', 10000.00, 1, 0.00, 17000.00, '20/25, Nadar Street, keelathiruvengadam.', '27/9, 2nd Street, kumaran colony, vadapalani.', '2401230002', '', '1', 'upload_files/candidate_tracker/27755583308_sathya Resume.pdf', NULL, '1', '2024-01-23', 0, '', '3', '59', '2024-01-29', 192000.00, '', '5', '1970-01-01', '2', 'Ok Profile 5050 Need to analyse in 7 days Pressure handling doubt provided 16K based on managers recommendation', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-23 04:39:31', 60, '2024-01-27 06:50:17', 0, NULL, 1),
(16298, 'Sudharsan', '11', '9952388938', '', 'sudharsans27@gmail.com', '1993-06-18', 30, '6', '1', 'Jahnavi', 'Not working', 0.00, 1, 540000.00, 300000.00, 'Melmaruvathur', 'Adambakkam', '2401230003', '', '2', 'upload_files/candidate_tracker/65930094830_Sudharsan\'s Resume.docx', NULL, '1', '2024-01-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', '6', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 04:39:39', 1, '2024-01-23 04:43:23', 0, NULL, 1),
(16299, '', '0', '9677245971', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401230004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-23 05:17:28', 0, NULL, 0, NULL, 1),
(16300, 'PARTHIBAN B', '17', '7810099177', '8870792619', 'Partheebarajan11@gmail.com', '1994-09-14', 15, '6', '2', 'Balakrishnan', 'Farmer', 45000.00, 2, 400000.00, 500000.00, 'Thiruvengadam', 'Maraimalainagar', '2401230005', '', '2', 'upload_files/candidate_tracker/2407480092_Share%20Parthiban%20CV%20latest.pdf', NULL, '1', '2024-01-23', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '4', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-23 05:21:46', 110, '2024-01-23 11:59:33', 0, NULL, 1),
(16301, 'Dhivya Vignesh', '13', '6380578255', '8072583451', 'dhivya199627@gmail.com', '1996-06-27', 27, '6', '1', 'Vignesh', 'Techinican', 15000.00, 1, 15.00, 15.00, 'Koyambedu, chennai', 'Koyambedu, chennai', '2401230006', '', '2', 'upload_files/candidate_tracker/53628918106_DhivyaResume.pdf', NULL, '1', '2024-01-23', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 05:22:22', 1, '2024-01-23 05:38:46', 0, NULL, 1),
(16302, 'Anand S', '13', '7338939037', '7358006621', 'yanianand571@gmail.com', '2000-01-02', 24, '6', '2', 'Selvam', 'Construction work', 200000.00, 2, 12000.00, 20000.00, 'Ambattur', 'Ambattur', '2401230007', '', '2', 'upload_files/candidate_tracker/83387596852_anand resume73.pdf', NULL, '1', '2024-01-23', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 05:31:31', 1, '2024-01-23 05:36:47', 0, NULL, 1),
(16303, 'Thilak Chandran', '31', '9087073693', '', 'thilakct28@gmail.com', '2002-04-28', 21, '6', '2', 'Nirmala', 'Business', 30000.00, 1, 0.00, 300000.00, 'Kanchipuram', 'Kanchipuram', '2401230008', '', '1', 'upload_files/candidate_tracker/15863181740_Resume.pdf', NULL, '1', '2024-01-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 05:41:49', 1, '2024-01-23 05:57:13', 0, NULL, 1),
(16304, 'Subash R', '31', '9500976986', '8610867963', 'Subash.scsvmv@gmail.com', '2001-08-06', 22, '6', '2', 'P. R. Ravikumar', 'Fresher', 500000.00, 0, 0.00, 350000.00, 'Kanchipuram', 'Kanchipuram', '2401230009', '', '1', 'upload_files/candidate_tracker/54817743265_R. SUBASH RESUME-1.pdf', NULL, '1', '2024-01-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 05:44:12', 1, '2024-01-23 05:49:19', 0, NULL, 1),
(16305, 'Kumar b', '11', '7094370448', '6380707980', 'DINESHKUMAR250899@GMAIL.COM', '1999-08-25', 24, '6', '2', 'Baskar KK', 'Saree Business', 10000.00, 1, 15000.00, 23000.00, 'Thanjavur', 'Thoraipakkam, Chennai - 97', '2401230010', '', '2', 'upload_files/candidate_tracker/6977905040_KUMAR.B.pdf', NULL, '1', '2024-01-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 05:46:37', 1, '2024-01-23 05:53:17', 0, NULL, 1),
(16306, 'Dinesh M', '13', '6369622692', '', 'dineshtrichyit@gmail.com', '2002-05-03', 21, '3', '2', 'Mamundi P', 'Farmer', 20000.00, 2, 0.00, 300000.00, 'TIRUCHIRAPPALLI', 'TIRUCHIRAPPALLI', '2401230011', '', '1', 'upload_files/candidate_tracker/30098047266_resume 5.pdf', NULL, '1', '2024-01-23', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 05:50:54', 1, '2024-01-23 05:53:23', 0, NULL, 1),
(16307, 'Vetrivel', '5', '8610729977', '9488840058', 'vvv1996vel@gmail.com', '1996-06-25', 27, '2', '1', 'Dhurga', 'IT', 60000.00, 0, 450000.00, 500000.00, 'Chennai', 'Chennai', '2401230012', '1', '2', 'upload_files/candidate_tracker/95183106989_CV (2) (2).pdf', NULL, '1', '2024-01-23', 15, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-23 06:13:11', 110, '2024-01-23 12:00:25', 0, NULL, 1),
(16308, 'Yakkesh R', '13', '8608048851', '9710141751', 'yakkeshsekar05@gmail.com', '2002-12-05', 21, '6', '2', 'd.rajasekar', 'auto sales manager', 150000.00, 1, 0.00, 16000.00, 'mathur mmda chennnai', 'mathur mmda chennai', '2401230013', '', '1', 'upload_files/candidate_tracker/6408936488_yakkesh (res).pdf', NULL, '1', '2024-01-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 06:18:27', 1, '2024-01-23 06:26:28', 0, NULL, 1),
(16309, 'P. Lavanya', '6', '6380874426', '', 'lavanyapremkumar0802@gmail.com', '2002-06-08', 21, '2', '2', 'Father:s.premkumar', 'Autodriver', 10000.00, 1, 12000.00, 15000.00, 'No:30/5 2nd street vivekananda nagar kodungaiyur', 'No.:30/5 2 nd street vivekananda nagar kodungaiyur', '2401230014', '1', '2', 'upload_files/candidate_tracker/84513469450_PDF Reader Document.pdf', NULL, '1', '2024-01-23', 0, '', '3', '59', '2024-01-29', 174000.00, '', '5', '1970-01-01', '2', 'Selected for Ba bu Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', 'Increased to 174000 LPA', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-23 06:38:25', 60, '2024-02-01 11:41:01', 0, NULL, 1),
(16310, 'VimalKumar', '14', '9159120665', '9443629282', 'mvimalkumar10@gmail.com', '2002-06-10', 21, '6', '2', 'Muthukumar', 'Farmer', 1.50, 1, 0.00, 1.20, 'Chennai', 'Chennai', '2401230015', '', '1', 'upload_files/candidate_tracker/34392085445_DOC-20240122-WA0000..pdf', NULL, '1', '2024-01-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 06:55:45', 1, '2024-01-23 08:20:52', 0, NULL, 1),
(16311, 'Sajin v', '31', '8610591978', '8189821858', 'sajinv0698@gmail.com', '1998-06-06', 25, '3', '2', 'Vijayan', 'Shopkeeper', 35000.00, 2, 0.00, 25000.00, '10/12, sasthanvillai, unnamalaikadai,pin:629179', '8/149, Bhavani nagar, Pozhichalur , pin: 600074', '2401230016', '', '1', 'upload_files/candidate_tracker/14370085316_sajinv.pdf', NULL, '1', '2024-01-23', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 06:56:12', 1, '2024-01-23 07:07:46', 0, NULL, 1),
(16312, 'evanjaline sudarmathi m', '11', '8921723123', '', 'evanjalinem@gmail.com', '1999-11-19', 24, '6', '2', 'murphy sagayaraj', 'business', 50000.00, 1, 0.00, 25000.00, 'kerala', 'chennai', '2401230017', '', '1', 'upload_files/candidate_tracker/52210818358_Evanjaline Resume_HR.pdf', NULL, '1', '2024-01-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 07:18:43', 1, '2024-01-23 07:28:45', 0, NULL, 1),
(16313, 'Ezhumalai k', '6', '8220498287', '', 'ezhumalai8287@gmail.com', '2002-06-11', 21, '2', '2', 'Kaliyamoorthi', 'Driver', 20.00, 1, 0.00, 15.00, 'Salem', 'Nungambakkam', '2401230018', '1', '1', 'upload_files/candidate_tracker/96928853323_Ezhumalai Resume.pdf', NULL, '1', '2024-01-23', 0, '', '3', '59', '2024-01-29', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-23 08:28:25', 60, '2024-01-29 10:48:17', 0, NULL, 1),
(16314, 'Gowtham S', '13', '8807361289', '6380441413', 'gowtham030498@gmail.com', '1998-04-03', 25, '3', '2', 'Subburaman', 'Agriculture', 200000.00, 0, 0.00, 10000.00, 'Rajapalayam, Virudhunagar', 'Velachery, Chennai', '2401230019', '', '1', 'upload_files/candidate_tracker/31284544792_FULL STACK DEVELOPER Resume.pdf', NULL, '1', '2024-01-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 08:51:34', 1, '2024-01-23 08:56:53', 0, NULL, 1),
(16315, 'Poonguzhali', '6', '9840911281', '', 'Poonguzhalianadhi@gmail.com', '2002-02-11', 21, '2', '2', 'Anandhi', 'Tailor', 10000.00, 1, 22300.00, 25000.00, 'Vyasarpadi', 'Vyasarpadi', '2401230020', '1', '2', 'upload_files/candidate_tracker/14218081012_anushya_btech_resume.pdf', NULL, '2', '2024-01-23', 0, '', '3', '59', '2024-01-29', 240000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-23 09:09:38', 60, '2024-01-29 10:35:15', 0, NULL, 1),
(16316, '', '0', '9940569279', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401230021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-23 09:09:53', 0, NULL, 0, NULL, 1),
(16317, 'Krithika m', '11', '9790489355', '', 'Krithikamoorthy26@gmail.com', '1999-03-26', 24, '6', '2', 'M.v moorthy', 'Retired Central government employee', 200000.00, 1, 10800.00, 18000.00, 'Chennai', 'Chennai', '2401230022', '', '2', 'upload_files/candidate_tracker/80033501724_Krithika M Resume (2).pdf', NULL, '1', '2024-01-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', '6', '1', '0', '4', '6', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 09:11:43', 1, '2024-01-23 09:31:31', 0, NULL, 1),
(16318, 'Durga Devi Balaji', '11', '9940569270', '9710654016', 'devidurga944451@gmail.com', '1998-11-29', 0, '6', '2', 'Balaji k', 'Supervisor', 500000.00, 1, 400000.00, 400000.00, 'Taramani, Chennai', 'Taramani, Chennai', '2401230023', '', '2', 'upload_files/candidate_tracker/71618649808_Durga-Devi-Balaji-FlowCV-Resume-20231127.pdf', NULL, '1', '2024-01-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', '6', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 09:13:31', 1, '2024-01-23 09:14:10', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16319, 'Gomathy s', '11', '9343647838', '9342647828', 'Gomathysaravanan13@gmail.com', '2002-01-13', 22, '3', '2', 'Saravanan.s/ Kausalya .s', 'Provisional store', 30000.00, 2, 0.00, 10000.00, 'Hma street triplicane chennai-05', 'Zam bazaar police station opposite', '2401230024', '', '1', 'upload_files/candidate_tracker/11296852395_Gomathy Saravanan-1.pdf', NULL, '1', '2024-01-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Recruitment Role Need  To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-23 10:59:43', 1, '2024-01-23 11:11:02', 0, NULL, 1),
(16320, '', '0', '9342647838', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401230025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-23 11:13:23', 0, NULL, 0, NULL, 1),
(16321, '', '0', '8760646072', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401230026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-23 11:34:55', 0, NULL, 0, NULL, 1),
(16322, 'Gowsalya P', '4', '9789465520', '9994483893', 'gowsalyagowthamp@gmail.com', '2001-06-04', 22, '2', '1', 'Vignesh Gowtham P', 'Training manager', 40000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2401240001', '1', '1', 'upload_files/candidate_tracker/84767072689_Gowsalya[2].pdf', NULL, '1', '2024-01-24', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for team have no exposure and sales not suitable married also facing family issues also', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-24 04:25:04', 108, '2024-01-24 12:37:37', 0, NULL, 1),
(16323, 'Maheswari G', '33', '8056290015', '', 'maheswarigunasekar0@gmail.com', '2003-05-10', 20, '2', '2', 'Gunasekar V', 'Tailor', 200000.00, 1, 0.00, 15000.00, 'Mandaveli', 'Mandaveli', '2401240002', '1', '1', 'upload_files/candidate_tracker/85866194806_maheswari G .pdf', NULL, '1', '2024-01-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-01-24 05:33:55', 110, '2024-01-25 09:53:10', 0, NULL, 1),
(16324, 'Jenifer k', '11', '7305912726', '9677194956', 'jeniferkumar1326@gmail.com', '2001-06-13', 22, '3', '1', 'Manikandan', 'Accountant', 22000.00, 2, 17000.00, 20000.00, 'Kodungaiyur', 'MKB Nagar', '2401240003', '', '2', 'upload_files/candidate_tracker/26357751235_jenifer.docx', NULL, '1', '2024-01-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our recruitment Role not much comfort in telesales too', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-24 05:47:09', 1, '2024-01-24 05:50:50', 0, NULL, 1),
(16325, 'Shiny T', '4', '9566827542', '7845753140', 'mail2miracle01@gmail.com', '2001-02-17', 22, '2', '2', 'Thomas mP', 'Carpenter', 20000.00, 2, 0.00, 13000.00, 'Uthirameur, Kanchipuram district', 'Royapuram', '2401240004', '1', '1', 'upload_files/candidate_tracker/93158741299_Resume1.pdf', NULL, '1', '2024-01-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for b2b.  Fresher will try', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-24 05:53:33', 108, '2024-01-24 02:36:05', 0, NULL, 1),
(16326, 'PRAVEEN KUMAR A', '11', '7358756719', '', 'Praveenkumar.a4927@gmail.com', '2000-02-29', 23, '3', '2', 'Anand', 'Clark', 24000.00, 1, 22000.00, 28000.00, 'Ayanavaram, Chennai - 600023', 'Ayanavaram, Chennai - 600023', '2401240005', '', '2', 'upload_files/candidate_tracker/89353947513_PRAVEEN KUMAR.A RESUME (1).pdf', NULL, '1', '2024-01-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking only for the IT recruitment role and exp around 22-23K\n', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-24 06:27:10', 1, '2024-01-24 06:34:15', 0, NULL, 1),
(16327, 'Satham Hussain k', '6', '8220446555', '7010946692', 'Sksatham360@gmail.com', '1995-10-03', 28, '2', '2', 'Kathar hussain', 'Agriculture', 25000.00, 1, 22000.00, 25000.00, 'No : 9 throwpathi Amman koil st valavanur', 'No 77, ovm st , Chepauk, triplicane chennai', '2401240006', '1', '2', 'upload_files/candidate_tracker/27783251689_1702878372603_Satham Hussain_Resume-1.pdf', NULL, '1', '2024-01-24', 0, '', '3', '59', '2024-02-02', 309696.00, '', '5', '1970-01-01', '1', 'Selected for GK sir Team in staff role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-01-24 06:29:14', 60, '2024-02-02 09:54:15', 0, NULL, 1),
(16328, 'Gomathi Baskar', '20', '9962756334', '9884313202', 'gomathibaskar13@gmail.com', '2002-02-13', 21, '2', '2', 'Baskar.S', 'Fisherman', 10000.00, 2, 0.00, 15000.00, 'Pulicat', 'Thiruvottiyur', '2401240007', '1', '1', 'upload_files/candidate_tracker/6874986897_Gomathi Resume (5).pdf', NULL, '1', '2024-01-24', 0, '', '3', '59', '2024-01-29', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Gopinath Team in Consultant', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-24 07:34:18', 60, '2024-01-29 10:27:19', 0, NULL, 1),
(16329, 'Pradeesha J', '6', '7539998589', '9655443326', 'Pradeeshaj1@gmail.com', '2002-03-01', 21, '2', '2', 'Jayamoorthy J', 'Fisherman', 15000.00, 2, 15000.00, 15000.00, 'Ponneri', 'Thiruvotriyur', '2401240008', '1', '2', 'upload_files/candidate_tracker/6718767963_pradee 1.pdf', NULL, '1', '2024-01-24', 0, '', '3', '59', '2024-01-29', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Charles Team in consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-24 07:39:14', 60, '2024-01-29 10:28:17', 0, NULL, 1),
(16330, 'M Abdul basith', '6', '9942578253', '', 'Rcbbasith1632000@gmail.com', '2000-03-16', 23, '3', '2', 'Mohamed avul', 'Wage labor', 8000.00, 2, 0.00, 25000.00, 'Rameswaram', 'Chennai', '2401240009', '', '1', 'upload_files/candidate_tracker/61859074284_Abdul_Basith M_Resume_06-11-2023-08-31-01.pdf', NULL, '1', '2024-01-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-24 09:00:32', 110, '2024-01-24 03:55:17', 0, NULL, 1),
(16331, 'Gopinath', '31', '9677681272', '', 'Gopinathrajendran98@gmail.com', '1998-03-16', 25, '3', '2', 'Gopinatg', 'NA', 15000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2401240010', '', '1', 'upload_files/candidate_tracker/72302024701_Gopinath-New-Resume.pdf', NULL, '1', '2024-01-24', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-24 09:10:50', 1, '2024-01-24 09:16:04', 0, NULL, 1),
(16332, '', '0', '9884361831', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401240011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-24 12:25:30', 0, NULL, 0, NULL, 1),
(16333, '', '0', '8056120551', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-25 04:20:30', 0, NULL, 0, NULL, 1),
(16334, 'Snehapriya.K', '16', '6369236416', '', 'snehamouni05@gmail.com', '2002-09-05', 21, '2', '2', 'Kumar.M', 'Fisheries department', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2401250002', '1', '1', 'upload_files/candidate_tracker/19587527780_SNEHAPRIYA.K resume.pdf', NULL, '1', '2024-01-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-01-25 04:35:00', 110, '2024-01-25 10:13:11', 0, NULL, 1),
(16335, 'Ajith M', '4', '8056120251', '8056120551', 'abala.ajith@gmail.com', '1997-04-15', 26, '3', '1', 'Monisha a', 'House wife', 30000.00, 0, 25000.00, 30000.00, 'Madurantakam', 'Chennai', '2401250003', '', '2', 'upload_files/candidate_tracker/54373979454_M. AJITH_first c_Copy.pdf', NULL, '1', '2024-01-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable for our roles will not sustain', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-25 04:50:26', 1, '2024-01-25 04:58:17', 0, NULL, 1),
(16336, 'Thusya.c', '4', '6380426163', '', 'thusya177@gmail.com', '1997-01-14', 27, '2', '2', 'Chandran', 'Farmer', 10000.00, 1, 0.00, 14000.00, 'Salem', 'Ekkaduthankal', '2401250004', '21', '1', 'upload_files/candidate_tracker/55770501843_Thusya Resume.pdf', NULL, '1', '2024-01-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our sales roles will not sustain', '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-25 04:57:25', 1, '2024-01-25 05:12:56', 0, NULL, 1),
(16337, 'Bhuvaneswari S', '6', '7339346621', '9150425778', 'bhuvanabhuvi2507@gmail.com', '2001-07-25', 22, '1', '2', 'Indhumathy S', 'Coolie', 15000.00, 2, 17300.00, 20000.00, 'Tirunelveli', 'Saidapet', '2401250005', '', '2', 'upload_files/candidate_tracker/50495916719_CV_2024011912352320.pdf', NULL, '1', '2024-01-25', 0, '77847', '3', '59', '2024-01-30', 240000.00, '', '5', '1970-01-01', '2', 'selected for Charles Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-25 05:07:03', 60, '2024-01-29 07:41:21', 0, NULL, 1),
(16338, 'Afran Ahmed N', '6', '6383057104', '8248968541', 'afranahmed234@gmail.com', '2002-04-23', 21, '1', '2', 'V Noor Mohammed', 'Driver', 35000.00, 2, 0.00, 15000.00, 'Kodungaiyur selavayal chennai', 'Kodungaiyur selavayal chennai', '2401250006', '', '1', 'upload_files/candidate_tracker/19431711865_resume n.pdf', NULL, '1', '2024-01-25', 0, '77799', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Reject', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-25 05:21:39', 110, '2024-01-25 11:39:55', 0, NULL, 1),
(16339, 'Sakthivelan A', '11', '7305251046', '8825948964', 'Sakthivelan170@gmail.com', '2002-12-10', 21, '2', '2', 'Ambikapathi S', 'Press', 20000.00, 2, 3.08, 3.25, 'Chennai', 'Chennai', '2401250007', '1', '2', 'upload_files/candidate_tracker/75917731804_DOC-20240125-WA0000..pdf', NULL, '1', '2024-01-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles will not sustain and handle our work pressure', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-25 05:43:52', 110, '2024-01-25 12:12:16', 0, NULL, 1),
(16340, 'S.beula', '6', '9884660910', '9080640697', 'Vainthabeula@gmail.comcom', '2002-10-18', 21, '2', '2', 'Vanithajesbin', 'BA english', 30000.00, 0, 22000.00, 24000.00, 'Valasaravakkam', 'Valasravakkam', '2401250008', '1', '2', 'upload_files/candidate_tracker/67343385994_beula resume.pdf', NULL, '1', '2024-01-25', 0, '', '3', '59', '2024-01-29', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Babu Team in consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-01-25 05:55:12', 60, '2024-01-27 07:07:37', 0, NULL, 1),
(16341, 'akshaya', '6', '9361865072', '9840506653', 'rakshaya112@gmail.com', '2002-01-01', 22, '2', '2', 'ravichandran', 'cable tv operator', 20000.00, 1, 20000.00, 23000.00, 'thiruvottiyur', 'chennai', '2401250009', '1', '2', 'upload_files/candidate_tracker/93303224854_Akshaya%20Resume%20.docx', NULL, '1', '2024-01-25', 0, '', '3', '59', '2024-02-05', 241920.00, '', '5', '1970-01-01', '2', 'Selecetd for Syed Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-01-25 05:59:25', 60, '2024-02-03 03:13:05', 0, NULL, 1),
(16342, 'saravanan', '5', '7200357164', '', 'vijisaravanan234@gmail.com', '2000-06-20', 23, '2', '2', 'vijayalekshmi', 'ouse wife', 25000.00, 0, 25000.00, 27000.00, 'pandaravilai colony kattathurai kanyakumari', 'ahmad nagar nesapakkam kk nagar', '2401250010', '1', '2', 'upload_files/candidate_tracker/7576104051_R SARAVANAN - Resume.pdf', NULL, '1', '2024-01-25', 0, '', '3', '59', '2024-02-05', 345696.00, '', '5', '1970-01-01', '2', 'Selecetd for Shanmugam Team', '5', '1', '4', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-25 06:02:33', 60, '2024-02-03 06:38:50', 0, NULL, 1),
(16343, 'MUHILAN R', '6', '9080082613', '', 'rmmuhilanindia@gmail.com', '1999-12-22', 24, '2', '2', 'RAJENDRAN V', 'FARMER', 10000.00, 1, 0.00, 20000.00, 'Perambalur', 'Chennai', '2401250011', '1', '1', 'upload_files/candidate_tracker/29144380583_muhilan.docx', NULL, '1', '2024-01-25', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He asked only about Salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-25 06:34:55', 110, '2024-01-25 01:03:58', 0, NULL, 1),
(16344, 'Durga Devi', '6', '7395993512', '8428689034', 'durgadevidd1230@gmail.com', '1999-10-12', 24, '2', '1', 'Vignesh', 'Non voice process', 40000.00, 0, 24.65, 28000.00, 'Kanchipuram', 'Kanchipuram', '2401250012', '1', '2', 'upload_files/candidate_tracker/36758475342_Resume Durga .pdf', NULL, '1', '2024-01-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-01-25 07:53:44', 104, '2024-01-25 03:49:04', 0, NULL, 1),
(16345, 'Syed moin Hussain', '6', '9344502597', '7305665880', 'moin69904@gmail.com', '2002-07-09', 21, '2', '2', 'Shabana begum', 'House wife', 20000.00, 1, 21000.00, 25000.00, 'Otteri, perambur, Chennai', 'Otteri, perambur, Chennai', '2401250013', '1', '2', 'upload_files/candidate_tracker/81653339112_resume personal-2-1.docx', NULL, '1', '2024-01-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-01-25 07:53:50', 104, '2024-01-25 03:49:24', 0, NULL, 1),
(16346, 'Kalaiselvi a', '11', '9677205244', '9551118422', 'Kalaiselvi1508200@gmail.com', '2000-08-15', 23, '6', '2', 'ArunachalamJ', 'Self employee juice Shop', 20000.00, 1, 15200.00, 25000.00, 'Thiruverkau , chennai', 'Thiruverkau, chennai', '2401250014', '', '2', 'upload_files/candidate_tracker/23596990150_kalaiselvi A Resume.pdf.pdf', NULL, '1', '2024-01-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-25 08:50:54', 1, '2024-01-25 09:50:18', 0, NULL, 1),
(16347, 'Kamesh Kumar G', '16', '9566954410', '', 'kameshguru01@gmail.com', '1994-10-14', 29, '6', '1', 'SANDHIYA', 'House wife', 40000.00, 2, 22000.00, 30000.00, 'Chennai', 'Chennai', '2401250015', '', '2', 'upload_files/candidate_tracker/11157196115_RESUME-M-1.pdf', NULL, '1', '2024-01-25', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-25 09:10:07', 1, '2024-01-25 09:13:55', 0, NULL, 1),
(16348, 'Gayathri G', '33', '8220520361', '', 'gayathrigandhi00@gmail.com', '2000-12-02', 23, '3', '2', 'Gandhi C', 'Business', 70000.00, 1, 0.00, 25000.00, 'Kumbakonam', 'Kodambakam chennai', '2401250016', '', '1', 'upload_files/candidate_tracker/7626744839_GAYATHRI G RESUME.pdf', NULL, '1', '2024-01-29', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-25 11:09:07', 110, '2024-01-29 04:18:08', 0, NULL, 1),
(16349, '', '0', '9345332119', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401260001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-26 01:22:31', 0, NULL, 0, NULL, 1),
(16350, 'Krishna', '31', '6369105156', '7200916941', 'klkrish2@gmail.com', '2002-11-21', 21, '6', '2', 'Vijayarenganathan.N,Chitra.v', 'Hotel', 30000.00, 1, 0.00, 10000.00, '703, Ganapathy Mills Colony, Tirunelveli -627357', '703, Ganapathy Mills Colony, Tirunelveli -627357', '2401270001', '', '1', 'upload_files/candidate_tracker/17720100903_krishna.Resume.pdf', NULL, '1', '2024-01-27', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-27 04:52:20', 1, '2024-01-27 05:02:55', 0, NULL, 1),
(16351, 'P vasanthakumar', '5', '9841040703', '', 'vasanthbca3143@gmail.com', '1998-05-29', 25, '1', '2', 'Manjula', 'Working', 30000.00, 1, 22000.00, 28000.00, 'Chennai', 'Chennai', '2401270002', '', '2', 'upload_files/candidate_tracker/58140461255_vasanth cv2024.pdf', NULL, '1', '2024-01-27', 0, 'CAFSUSR00162', '3', '59', '2024-03-06', 330000.00, '', '4', '2025-02-24', '1', 'Selected for Mani Team in staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-27 05:05:05', 60, '2024-03-06 10:01:45', 0, NULL, 1),
(16352, 'Mohammad Abdur razaq', '4', '6382622744', '8248810419', 'Razaqstar07@gmail.com', '2000-09-07', 23, '2', '2', 'Asiya banu', 'Teacher', 600000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2401270003', '1', '2', 'upload_files/candidate_tracker/68914208139_Razaq_resume_1706338662485_Mohamed Abdur Razaq .pdf', NULL, '1', '2024-01-27', 7, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-27 06:32:32', 104, '2024-01-30 06:59:50', 0, NULL, 1),
(16353, 'Ramkumar K', '5', '9655873561', '9361289960', 'sriramkumar0070@gmail.com', '2000-01-16', 24, '1', '2', 'Kitchanan R', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Madurai', 'Madurai', '2401270004', '', '1', 'upload_files/candidate_tracker/44278538852_Ram Resume (1).docx', NULL, '2', '2024-01-27', 0, '55565', '3', '59', '2024-02-01', 297996.00, '', '3', '2024-09-30', '1', 'Selected for Manikandna Team in Staff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-27 06:36:01', 60, '2024-01-31 05:04:27', 0, NULL, 1),
(16354, 'Deepika D', '6', '6382882205', '8608094612', 'deepikadeepika3679@gmail.com', '2002-06-22', 21, '2', '2', 'M Dhanasekar', 'Driver', 17000.00, 1, 18000.00, 22000.00, 'Chennai', 'Choolai', '2401270005', '1', '2', 'upload_files/candidate_tracker/11479794265_Adobe Scan 25-Jan-2024.pdf', NULL, '1', '2024-01-27', 0, '', '3', '59', '2024-02-05', 225000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-01-27 06:42:00', 60, '2024-02-03 03:17:19', 0, NULL, 1),
(16355, 'Karthikeyan R', '13', '6379923391', '', 'karthikeyan.r2672002@gmail.com', '2002-07-26', 21, '6', '2', 'Ramachandran K', 'Farmer', 80000.00, 2, 0.00, 300000.00, 'Thiruvannamalai', 'Thalambur, Chennai', '2401270006', '', '1', 'upload_files/candidate_tracker/36133091845_Karthik Resume - py.pdf', NULL, '1', '2024-01-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-27 06:48:46', 1, '2024-01-27 06:54:53', 0, NULL, 1),
(16356, 'V.naveen kumar', '6', '9677267760', '9444309385', 'naveenvenkatesh03@gmail.com', '2002-12-31', 21, '2', '2', 'G.venkatesan', 'Driver', 15000.00, 1, 0.00, 18.00, 'Chennai Thiruvottiyur', 'Thiruvottiyur', '2401270007', '1', '1', 'upload_files/candidate_tracker/52778139532_Naveen Kumar.pdf', NULL, '1', '2024-01-27', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'Rejected', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2024-01-27 06:53:40', 1, '2024-01-27 07:34:50', 0, NULL, 1),
(16357, 'Balaji', '20', '8825515783', '', 'Balabalaji15617@gmail.com', '1993-10-14', 30, '2', '2', 'Krishna Murthy', 'Metal work', 15000.00, 1, 17000.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2401270008', '1', '2', 'upload_files/candidate_tracker/97928669492_Rseume---Balaji K[1].pdf', NULL, '1', '2024-01-27', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-27 08:38:29', 108, '2024-01-27 04:44:41', 0, NULL, 1),
(16358, 'Yamini K', '13', '6381902027', '9080654908', 'yaminik614@gmail.com', '2000-11-27', 23, '6', '2', 'Sarath Chandra kumar', 'Retired', 25000.00, 1, 20000.00, 35000.00, 'Chennai', 'Chennai', '2401270009', '', '2', 'upload_files/candidate_tracker/72967365137_YaminiNewResume.pdf', NULL, '1', '2024-01-27', 30, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-27 08:45:21', 1, '2024-01-27 08:49:21', 0, NULL, 1),
(16359, 'Amirtha', '33', '7010389677', '7868069057', 'amirthaammu24@gmail.com', '2003-08-24', 20, '6', '2', 'Venkateswaran', 'Retired from private concern', 10000.00, 0, 0.00, 20000.00, 'Tiruvannamalai', 'Chennai', '2401270010', '', '1', 'upload_files/candidate_tracker/68118859549_My resume 1.pdf', NULL, '1', '2024-01-27', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-27 09:03:03', 1, '2024-01-27 09:06:20', 0, NULL, 1),
(16360, 'S Veena Gayathri', '11', '7904647519', '', 'veenalasree985@gmail.com', '2000-10-18', 23, '6', '2', 'B Sreenivasan', 'Car Driver', 10000.00, 1, 0.00, 300000.00, 'Shenoy Nagar', 'Shenoy Nagar', '2401290001', '', '1', 'upload_files/candidate_tracker/71019618969_Rahul Krishna IT RESUME.pdf', NULL, '1', '2024-01-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Suggested sales profile by Gokul but not interested in that', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-29 04:09:32', 110, '2024-01-29 10:58:11', 0, NULL, 1),
(16361, 'udeesh', '11', '9962135283', '', 'udeeshr@yahoo.com', '1998-09-11', 25, '6', '2', 'ts ramesh', 'business', 50000.00, 0, 0.00, 1.00, 'chennai', 'chennai', '2401290002', '', '1', 'upload_files/candidate_tracker/39869652799_MBA- Udeesh resume .pdf', NULL, '1', '2024-01-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Interviewed by Gokul and selected for intern', '6', '1', '0', '1', '8', '0', '2', '2024-01-31', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 04:25:04', 1, '2024-01-29 04:31:57', 0, NULL, 1),
(16362, 'Mary Jesima M', '11', '6383078138', '9943169641', 'jessicajess2k2@gmail.com', '2002-05-28', 21, '6', '2', 'L.Mani', 'Electrician', 20000.00, 1, 0.00, 1.00, 'kancheepuram', 'Pallavaram', '2401290003', '', '1', 'upload_files/candidate_tracker/87339306334_MaryJesimaMBA-CV.pdf', NULL, '1', '2024-01-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Interviewed by Gokul and shortlisted for Intern', '6', '1', '0', '1', '8', '0', '2', '2024-01-31', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 04:26:57', 1, '2024-01-29 04:45:08', 0, NULL, 1),
(16363, 'Balajiraj', '4', '7418957522', '', 'Bhalaji0707@gmail.com', '2000-11-02', 23, '2', '2', 'Kannan', 'Cable operator', 25000.00, 1, 0.00, 15000.00, 'THANJAVUR', 'THANJAVUR', '2401290004', '1', '1', 'upload_files/candidate_tracker/17195817209_Balaji New Resume_1690338071061_Balajiraj.k.pdf', NULL, '1', '2024-01-29', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for tele sales , have no job need , sustainability issue', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-29 04:38:26', 108, '2024-01-29 03:40:11', 0, NULL, 1),
(16364, 'U.suruthy', '11', '8807182612', '9843575125', 'suruthyuthirapathi26@gmail.com', '2000-12-26', 23, '3', '2', 'A.uthirapathi', 'NRI', 350000.00, 1, 0.00, 20000.00, 'Chidambaram', 'Chennai', '2401290005', '', '1', 'upload_files/candidate_tracker/36058694936_shruthi.pdf', NULL, '1', '2024-01-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Gokul and processed for MF', '6', '1', '0', '1', '8', '0', '2', '2024-01-31', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 04:45:14', 1, '2024-01-29 05:34:03', 0, NULL, 1),
(16365, 'Kishore', '11', '8072627283', '', 'akishore2011@gmail.com', '1998-06-23', 25, '6', '2', 'Anantha Rama Krishnan U', 'Supervisor', 55000.00, 1, 10000.00, 25000.00, 'Chennai', 'Chennai', '2401290006', '', '2', 'upload_files/candidate_tracker/33909758909_ResumeofKishore.pdf', NULL, '1', '2024-01-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Intern with employment interview by Gokul Family well settled', '6', '1', '0', '1', '8', '0', '2', '2024-01-31', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 04:51:39', 1, '2024-01-29 04:55:05', 0, NULL, 1),
(16366, 'Kishok Menan G', '11', '9080438394', '', 'kishokmenan@gmail.com', '2001-02-04', 22, '6', '2', 'Ganeshan M', 'Cooli', 10000.00, 1, 0.00, 25000.00, 'Dindigul', 'Dindigul', '2401290007', '', '1', 'upload_files/candidate_tracker/11372969292_KISHOK CV.pdf', NULL, '1', '2024-01-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interview Reject by Gokul', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 04:51:46', 1, '2024-01-29 04:59:37', 0, NULL, 1),
(16367, 'Mohamed shakil', '13', '9894070724', '', 'shakil.8680@gmail.com', '2000-02-27', 23, '3', '2', 'Abuthahir', 'Driver', 15000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2401290008', '', '1', 'upload_files/candidate_tracker/1650134366_DOC-20240127-WA0000..pdf', NULL, '1', '2024-01-29', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 04:52:29', 1, '2024-01-29 05:52:02', 0, NULL, 1),
(16368, 'Sajitha.k', '13', '6374106582', '', 'Sajithakumar2001@gmail.com', '2009-01-29', 0, '4', '2', 'Kumar', 'Farmer', 10000.00, 1, 0.00, 25000.00, 'Karur', 'Chennai', '2401290009', '', '1', 'upload_files/candidate_tracker/2241629551_sajitha.pdf', NULL, '1', '2024-01-29', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 04:54:24', 1, '2024-01-29 05:03:37', 0, NULL, 1),
(16369, 'Sreenevas.G', '11', '8610385038', '', 'sreenevass006@gmail.com', '2002-07-02', 21, '3', '2', 'Govindaraj.S', 'Self employee', 30000.00, 1, 198000.00, 198000.00, 'Perambur', 'Perambur', '2401290010', '', '2', 'upload_files/candidate_tracker/87862129729_CV_2024012502075029.pdf', NULL, '1', '2024-01-29', 7, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'We will consider if he is ok with 1.98 LPA Gokul Interviewed', '6', '1', '0', '1', '8', '0', '2', '2024-02-01', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 05:20:26', 1, '2024-01-29 05:23:49', 0, NULL, 1),
(16370, 'Balaji', '11', '8300627344', '', 'ji2710bala@gmail.com', '1997-10-27', 26, '6', '2', 'Govindaraj', 'Business', 300000.00, 1, 240000.00, 300000.00, 'Chennai', 'Chennai', '2401290011', '', '2', 'upload_files/candidate_tracker/70704382637_Balaji G - 30-10-2023.pdf', NULL, '1', '2024-01-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Interviewed by Gokul CTC will not match but ok proifle', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 05:21:47', 1, '2024-01-29 05:24:49', 0, NULL, 1),
(16371, 'AHAMED BAHIR', '13', '8870069621', '9585832475', 'ahamedbahir1@gmail.com', '2001-11-17', 22, '3', '2', 'Seyed marsook', 'Business', 20000.00, 5, 0.00, 20000.00, 'Chennai', 'Chennai', '2401290012', '', '1', 'upload_files/candidate_tracker/45286531593_ahamed bahir b.comjs-2.pdf', NULL, '1', '2024-01-29', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 05:47:35', 1, '2024-01-29 05:53:00', 0, NULL, 1),
(16372, 'Godwin sam', '6', '8148813322', '7550108157', 'Godwinsam668@gmail.com', '1996-05-17', 27, '2', '2', 'N.shakeela devi', 'House wife', 50000.00, 1, 0.00, 16000.00, '4/40 4th main road kkd nagar Chennai 600118', '4/40 4th Main Road Kkd Nagar Chennai 600118', '2401290013', '1', '1', 'upload_files/candidate_tracker/37620248688_Godwinsam_Up.Resume.docx', NULL, '1', '2024-01-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-29 06:04:00', 104, '2024-01-30 10:46:30', 0, NULL, 1),
(16373, 'Nikhil', '11', '7448881601', '9952929920', 'nikhilnithin6@gmail.com', '1998-12-21', 25, '3', '2', 'Sugumaran K', 'HR', 1500000.00, 1, 355000.00, 460000.00, 'Chennai', 'Pallavaram, Chennai', '2401290014', '', '2', 'upload_files/candidate_tracker/79705253627_Nikhil S-1.pdf', NULL, '1', '2024-01-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Good Package Little high interviewed by Gokul not much releavnt exp', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 06:17:56', 1, '2024-01-29 06:20:14', 0, NULL, 1),
(16374, 'gokul', '13', '9940954278', '8300039918', 'pgokul652@gmail.com', '2002-05-06', 21, '6', '2', 'panjaraj p', 'business', 12000.00, 1, 0.00, 10000.00, 'theni', 'sai', '2401290015', '', '1', 'upload_files/candidate_tracker/68860774880_GOKUL-P-Resume..pdf', NULL, '1', '2024-01-29', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 06:32:09', 1, '2024-01-29 06:36:33', 0, NULL, 1),
(16375, 'Siva Kumar', '13', '9791084127', '', 'kumarsivak2001@gmail.com', '2001-01-03', 23, '3', '2', 'Kamala kannan m', 'Sales man', 30000.00, 1, 2.40, 2.40, 'Chennai', 'Chennai', '2401290016', '', '2', 'upload_files/candidate_tracker/62945700919_Sivakumar complete full stack resume exp.docx', NULL, '1', '2024-01-29', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 06:32:59', 1, '2024-01-29 06:36:51', 0, NULL, 1),
(16376, 'Surya S', '11', '6369410816', '', 'imsurya6369@gmail.com', '2009-01-29', 0, '6', '2', 'Settu M', 'Former', 20000.00, 2, 15000.00, 20000.00, 'Tiruvannamalai', 'Velachery', '2401290017', '', '2', 'upload_files/candidate_tracker/36436691840_SURYA CV (1).pdf', NULL, '1', '2024-01-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain and settled family if he comes for freelance let us try', '6', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 06:42:53', 1, '2024-01-29 06:46:22', 0, NULL, 1),
(16377, 'Manikandan k', '13', '8637452410', '', 'Mani19692000@gmail.com', '2000-05-12', 23, '3', '2', 'Karunakaran', 'Tailor', 30000.00, 1, 0.00, 2.00, 'Chennai', 'Chennai', '2401290018', '', '1', 'upload_files/candidate_tracker/76564069750_Resume24.pdf', NULL, '1', '2024-01-29', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 06:42:59', 1, '2024-01-29 06:48:34', 0, NULL, 1),
(16378, 'K.Nandhini', '6', '9944630288', '', 'nandhinik1501@gmail.com', '2001-03-15', 22, '2', '2', 'K.Geetha', 'Helper', 100000.00, 1, 0.00, 1.50, 'Avadi', 'Avadi', '2401290019', '1', '1', 'upload_files/candidate_tracker/48997761632_K.NANDHINI Resume.pdf', NULL, '1', '2024-01-29', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-29 06:53:58', 104, '2024-01-30 10:46:05', 0, NULL, 1),
(16379, 'Hariharan', '6', '9361435185', '', 'hariharanmsd721@gmail.com', '2001-04-21', 22, '2', '2', 'Manikandan', 'Nesavalar', 8000.00, 1, 0.00, 14000.00, 'Rajapalayam', 'Chennai', '2401290020', '1', '1', 'upload_files/candidate_tracker/22991512629_Hariharan Resume .pdf', NULL, '1', '2024-01-29', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-29 07:39:10', 104, '2024-01-30 10:46:48', 0, NULL, 1),
(16380, 'Jeeva roshini', '33', '8939758580', '9944982451', 'jeevaroshininatrajaperumal@gmail.com', '1998-09-03', 25, '6', '2', 'Nataraja perumal', 'Salesman', 15000.00, 1, 27000.00, 30000.00, '89/193 , sanjeevarayan Kovil street,', '89/193 , Sanjeevarayan Kovil Street,', '2401290021', '', '2', 'upload_files/candidate_tracker/84571763210_Jeeva Resume -1_compressed.pdf', NULL, '1', '2024-01-29', 15, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much good profile will hold and consider later', '4', '1', '0', '1', '8', '0', '2', '2024-02-07', '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 07:55:23', 1, '2024-01-29 08:02:41', 0, NULL, 1),
(16381, 'NALLAMMA', '5', '9573769585', '9848690209', 'sagabalanandu143@gmhail.com', '1996-05-04', 27, '3', '2', 'Mother', 'Formar', 50000.00, 2, 23000.00, 26000.00, '3/27venkaikalva ,Kadapa district 516464', '3/1Ground floor East mada Street Amanjikarai600029', '2401290022', '', '2', 'upload_files/candidate_tracker/57282221395_sagabala nallamma resume (1) (1).pdf', NULL, '1', '2024-01-29', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is expecting inbound kind of sales not much exposure in cold calling and lead generation', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-29 09:31:31', 110, '2024-01-29 03:32:12', 0, NULL, 1),
(16382, 'Bharathi dasan', '13', '8925425494', '7708177690', 'bharathidasan998@gmail.com', '1998-09-14', 25, '3', '2', 'Çhitra', 'Tailor', 50000.00, 2, 15000.00, 30000.00, 'Cuddalore', 'Chennai', '2401290023', '', '2', 'upload_files/candidate_tracker/38452572275_CV_2024012310112189.pdf', NULL, '1', '2024-01-29', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain in our role 3yrs 3 different domain ', '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 09:33:41', 1, '2024-01-29 10:01:40', 0, NULL, 1),
(16383, 'J Jovida', '11', '8148085752', '8754645339', 'jovida2709@gmail.com', '1998-09-27', 25, '6', '2', 'A. John Victor', 'No job', 20000.00, 1, 0.00, 20000.00, 'Pondicherry', 'Pondicherry', '2401290024', '', '1', 'upload_files/candidate_tracker/95880958152_jovi new resume with pic.pdf', NULL, '1', '2024-01-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'very slow and silent will not handle our work pressure', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-29 10:18:48', 1, '2024-01-29 10:21:56', 0, NULL, 1),
(16384, '', '0', '7556957235', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401290025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-29 10:46:55', 0, NULL, 0, NULL, 1),
(16385, 'kannappan s', '6', '9600191924', '', 'kannappan16s@gmail.com', '1997-03-16', 26, '2', '2', 'sivanandham', 'office assisitant', 20000.00, 0, 300000.00, 300000.00, 'chennai', 'chennai', '2401290026', '1', '2', 'upload_files/candidate_tracker/76780601545_sivkanna.pdf', NULL, '1', '2024-03-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales and he is nott tried to speak', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-01-29 11:10:45', 112, '2024-03-14 02:52:04', 0, NULL, 1),
(16386, 'Amuthaselvi A', '4', '9361055482', '9176844705', 'amutha.bscsafety02@gmail.com', '2002-04-19', 21, '2', '2', 'Arulraj', 'Farmer', 15000.00, 1, 19000.00, 15000.00, 'Tirunelveli', 'Chennai', '2401290027', '1', '2', 'upload_files/candidate_tracker/91632850600_Amnu.pdf', NULL, '1', '2024-01-30', 1, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-29 01:23:16', 108, '2024-01-30 06:41:52', 0, NULL, 1),
(16387, 'Kowsalya R', '4', '6380862418', '', 'skpkowsalya01@gmail.com', '2001-06-03', 22, '2', '2', 'Shantha K', 'Agriculture', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2401300001', '1', '1', 'upload_files/candidate_tracker/21212379709_R kowsalya.pdf', NULL, '1', '2024-01-30', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-01-30 03:46:37', 110, '2024-01-30 12:30:48', 0, NULL, 1),
(16388, 'Madhavan S', '13', '7603909131', '9994621538', 'maddyvj45@gmail.com', '2002-03-26', 21, '6', '2', 'S/O Sudarsan.S', 'Farmer', 400000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2401300002', '', '1', 'upload_files/candidate_tracker/1451306773_MADHAVAN RESUME.pdf', NULL, '1', '2024-01-30', 0, '', '3', '59', '2024-02-05', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Intern  with 3 months 6K then 2months 8K then employment with 3yrs', '2', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-30 04:08:12', 60, '2024-02-05 11:26:51', 0, NULL, 1),
(16389, 'Pavitha G', '6', '7338982764', '7385156109', 'pavithagts@gmail.com', '2001-09-17', 22, '2', '2', 'Gopichader', 'Document executive', 15000.00, 1, 19000.00, 23000.00, 'Chennai', 'Chennai', '2401300003', '1', '2', 'upload_files/candidate_tracker/44131407410_DOC-20231228-WA0005..pdf', NULL, '1', '2024-01-30', 1, '', '3', '59', '2024-02-08', 294000.00, '', '5', '1970-01-01', '2', 'Selected for Sarath Team in staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-30 04:49:55', 60, '2024-02-08 10:26:36', 0, NULL, 1),
(16390, '', '0', '7299597424', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401300004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-30 04:51:29', 0, NULL, 0, NULL, 1),
(16391, 'Jeeva R', '13', '6379915188', '9962670386', 'jeevaramar40@gmail.com', '2002-01-13', 22, '6', '2', 'Ramar', 'Tailor', 100000.00, 1, 0.00, 150000.00, 'Tharamani', 'Tharamani', '2401300005', '', '1', 'upload_files/candidate_tracker/24712406508_Copy of Jeeva updated resume_20240130_020034_0000.pdf', NULL, '1', '2024-01-30', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 04:53:38', 1, '2024-01-30 04:57:51', 0, NULL, 1),
(16392, 'Jayanthi', '4', '9597849547', '', 'Jayanthisarath91@gmail.com', '2001-04-07', 22, '1', '1', 'Sarathkumar', 'Lava mobile distributer', 15000.00, 2, 15000.00, 15000.00, '15000', 'Orathanadu', '2401300006', '', '2', 'upload_files/candidate_tracker/6430613852_Jayanthi-1.docx', NULL, '1', '2024-01-30', 20, 'P1023', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for telecalling...and long distance high expecttion', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 04:54:33', 1, '2024-01-30 05:07:02', 0, NULL, 1),
(16393, 'M HARIHARAN', '11', '8903371502', '', 'harishtheja26@gmail.com', '1999-03-26', 24, '2', '2', 'M manoharan', 'Business', 30000.00, 1, 20000.00, 22000.00, 'No 13/1 kutty Gramani Street Mandaiveli', 'No 13/1 Kutty Gramani Street Mandaiveli', '2401300007', '1', '2', 'upload_files/candidate_tracker/90406231996_HR+RESUME.pdf', NULL, '1', '2024-01-31', 20, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-01-30 04:58:27', 110, '2024-01-31 01:31:36', 0, NULL, 1),
(16394, 'Suresh Kumar R', '13', '9360814692', '7402671567', 'rsureshkumar002@gmail.com', '1999-07-17', 24, '3', '2', 'Ramesh Kumar', 'Daily wages', 20000.00, 1, 0.00, 3.00, 'Attur', 'Chromepet,Chennai', '2401300008', '', '1', 'upload_files/candidate_tracker/28588086609_Suresh-Resume updated.pdf', NULL, '1', '2024-01-30', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 05:23:00', 1, '2024-01-30 05:25:42', 0, NULL, 1),
(16395, '', '0', '9789983812', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401300009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-30 05:26:57', 0, NULL, 0, NULL, 1),
(16396, 'Sathyamoorthi v', '13', '9361679602', '', 'Sathyamoorthysathya832@gmail.com', '2009-01-30', 0, '3', '2', 'Mr. Vengadeson', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Kachipuram', 'Kachipuram', '2401300010', '', '1', 'upload_files/candidate_tracker/34875763003_Sathyamoorthi.v -Resume-1.pdf', NULL, '1', '2024-01-30', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 05:32:58', 1, '2024-01-30 05:39:51', 0, NULL, 1),
(16397, 'Mouriya', '23', '8056090055', '', 'Mouriyayadav16@gmail.com', '1998-01-16', 26, '3', '2', 'Kameshwara rao', 'Farmer', 20000.00, 2, 225000.00, 40000.00, 'Thiruvotriyur', 'Chennai', '2401300011', '', '2', 'upload_files/candidate_tracker/34539741374_Mouriya\'s Resume (1).pdf', NULL, '1', '2024-01-30', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 05:33:43', 1, '2024-01-30 06:09:53', 0, NULL, 1),
(16398, 'Linsten Jeno A', '13', '6374675041', '', 'linstenjen2020@gmail.com', '2003-03-28', 20, '6', '2', 'Anthony Muthu', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Tiruvannalamali', 'Tiruvannalamali', '2401300012', '', '1', 'upload_files/candidate_tracker/12307447692_Jeno Resume.pdf', NULL, '1', '2024-01-30', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 05:38:00', 1, '2024-01-30 05:41:16', 0, NULL, 1),
(16399, 'Madhan k', '11', '7358011879', '8667747500', 'madhankothapali@gmail.com', '1998-10-16', 25, '6', '2', 'Murali mohan k', 'Gold smith', 20000.00, 1, 0.00, 20000.00, 'Chennai, Tamilnadu', 'Kolathur, chennai', '2401300013', '', '1', 'upload_files/candidate_tracker/52015361024_Madhan Resume 1 pdf-1.pdf', NULL, '1', '2024-01-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Interview Reject by Gokul not suitable for our roles', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 05:38:10', 1, '2024-01-30 05:44:09', 0, NULL, 1),
(16400, 'Ganesh', '5', '9840081681', '7299597424', 'Gs9633925@gmail.com', '2001-04-25', 22, '2', '2', 'Swaminathan', 'Carpenter', 18000.00, 0, 15000.00, 18000.00, 'Chennai', 'Kodungaiyur', '2401300014', '1', '2', 'upload_files/candidate_tracker/6765574721_DOC-20231210-WA0003.pdf', NULL, '1', '2024-01-30', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-30 05:40:12', 108, '2024-01-30 01:20:59', 0, NULL, 1),
(16401, 'Diwakar R', '11', '8637651891', '', 'diwakar8637651891@gmail.com', '2000-03-15', 23, '3', '2', 'Ravindran', 'Olympic cards limited', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2401300015', '', '1', 'upload_files/candidate_tracker/34996121247_Diwakar Resume PDF.pdf', NULL, '1', '2024-01-30', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'For HR profile 4 months intern 8K then 12K interviewed by Gokul need to confirm the DOJ\n', '6', '1', '0', '1', '8', '0', '2', '2024-02-01', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 05:44:17', 1, '2024-01-30 06:03:30', 0, NULL, 1),
(16402, 'Nagarajaganesh', '13', '8940786542', '8608733356', 'nagarajaganesh2010@gmail.com', '1998-10-20', 25, '6', '2', 'Balasubramaian', 'Sales man', 25000.00, 1, 0.00, 400000.00, '4 naaanaa home choolimedu chennai', 'Chennai', '2401300016', '', '1', 'upload_files/candidate_tracker/62166799189_nagarjaganesh(ng.resume)-1.pdf', NULL, '1', '2024-01-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles Salary Exp Is High', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 05:51:11', 1, '2024-01-30 06:19:35', 0, NULL, 1),
(16403, 'Pavithra Chinnappan', '11', '9952020958', '', 'paviponnazhagu@gmail.com', '1999-11-13', 24, '6', '2', 'Chinnappan.P', 'Car Driver', 30000.00, 1, 169000.00, 250000.00, 'Chennai', 'Chennai', '2401300017', '', '2', 'upload_files/candidate_tracker/16788425758_PAVITHRA CHINNAPPAN.pdf', NULL, '1', '2024-01-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our roles salary exp is high', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 06:01:05', 1, '2024-01-30 06:11:17', 0, NULL, 1),
(16404, 'Anitha', '11', '7418616435', '7397466140', 'iamaniselva@gmail.com', '1992-12-22', 31, '3', '1', 'Selva', 'Driver', 50000.00, 1, 18000.00, 25000.00, 'chinna neelangarai.', 'Chinna neelangarai', '2401300018', '', '2', 'upload_files/candidate_tracker/3591059784_Anitha Resume.pdf', NULL, '1', '2024-01-30', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles Salary Exp Is High', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 06:01:20', 1, '2024-01-30 06:10:04', 0, NULL, 1),
(16405, 'Mohammed Sharique', '2', '9080534237', '', 'mdshariquek16@gmail.com', '2001-12-16', 22, '3', '2', 'Ameenur Rahman', 'Employee, Manager', 60000.00, 3, 0.00, 350000.00, 'Vellore', 'Chennai', '2401300019', '', '1', 'upload_files/candidate_tracker/79979153832_RESUME-11.pdf', NULL, '1', '2024-01-30', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 06:04:33', 1, '2024-01-30 06:43:17', 0, NULL, 1),
(16406, 'P.Sancy Rabi', '21', '6385843843', '6385833843', 'psancyrabi@gmail.com', '2002-05-03', 21, '3', '2', 'R.Poovanandham', 'Cooli', 7000.00, 2, 0.00, 15000.00, '11/ 98 c New colony street,Tenkasi district', 'Kundrathur ,Chennai', '2401300020', '', '1', 'upload_files/candidate_tracker/22169974143_sancyyy.pdf', NULL, '1', '2024-01-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our roles ', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 06:05:36', 1, '2024-01-30 06:29:09', 0, NULL, 1),
(16407, 'A.anusuya', '33', '8072369395', '', 'Anuakashya1998@gmail.com', '1998-09-23', 25, '3', '2', 'M.arivazhagan', 'Farmer', 7500.00, 2, 0.00, 10000.00, 'Nannilam,thiruvarur.', 'Kundrathur', '2401300021', '', '1', 'upload_files/candidate_tracker/39925255708_ANUSUYA RESUME.pdf', NULL, '1', '2024-01-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles ', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 06:18:57', 1, '2024-01-30 06:38:27', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16408, 'Madhan Kumar M', '6', '6383827649', '', 'Madhandon001@gmail.com', '2000-04-13', 23, '1', '1', 'Pooja', 'Salary', 400000.00, 1, 17000.00, 19000.00, 'Chennai', 'Chennai', '2401300022', '', '2', 'upload_files/candidate_tracker/25741779514_madhan resumes.pdf', NULL, '2', '2024-01-30', 0, '77847', '3', '59', '2024-02-01', 228000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-30 06:59:45', 60, '2024-02-01 10:09:35', 0, NULL, 1),
(16409, 'Kalidass', '13', '7604940886', '', 'kalidassr280@gmail.com', '2003-05-21', 20, '3', '2', 'Ravi', 'Tailor', 20000.00, 1, 0.00, 250000.00, 'Ramanathapuram', 'Chennai', '2401300023', '', '1', 'upload_files/candidate_tracker/26445579538_kalidass_resume.pdf', NULL, '1', '2024-01-30', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 07:31:32', 1, '2024-01-30 07:37:22', 0, NULL, 1),
(16410, 'Nishitha V', '11', '9384635966', '', 'vnishitha1998@gmail.com', '1998-06-20', 25, '6', '2', 'Vinayagam K', 'Mason', 40000.00, 1, 216000.00, 300000.00, 'Chennai', 'Chennai', '2401300024', '', '2', 'upload_files/candidate_tracker/76073254067_Nishitha Resume 2020.pdf', NULL, '1', '2024-01-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Frequent Job changes will not sustain and handle our roles ', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 09:22:11', 1, '2024-01-30 09:30:20', 0, NULL, 1),
(16411, 'Gnana Surya P', '13', '9344886915', '', 'gnanasurya.periasamy1@gmail.com', '1999-07-30', 24, '6', '2', 'Periasamy. s. K', 'Agriculture', 15000.00, 1, 300000.00, 400000.00, 'Erode', 'Chennai', '2401300025', '', '2', 'upload_files/candidate_tracker/71374194498_Gnana Surya P.pdf', NULL, '1', '2024-01-30', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 09:22:36', 1, '2024-01-30 09:25:42', 0, NULL, 1),
(16412, 'Kalpana s', '11', '9345244721', '9884914073', 'farzanasherin1401@gmail.com', '1996-06-04', 27, '3', '2', 'Saravanan.s', 'Nill', 20000.00, 0, 0.00, 20000.00, 'Korukkupet', 'Korukkupet', '2401300026', '', '2', 'upload_files/candidate_tracker/38448307576_Resume_30_01_2024_02_20_08_PM.pdf', NULL, '1', '2024-01-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '2 months exp in recruiter and expecting a lot will not sustain for a long', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 09:37:29', 1, '2024-01-30 09:41:37', 0, NULL, 1),
(16413, 'Harikaran', '31', '8668100335', '7358544304', 'hari17399.hk@gmail.com', '1999-03-17', 24, '3', '2', 'Kalijothi', 'Shop', 20000.00, 2, 360000.00, 600000.00, 'Pudupakkam', 'Gopalapuram', '2401300027', '', '2', 'upload_files/candidate_tracker/5351352387_Hari-Resume.pdf', NULL, '1', '2024-01-30', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 09:39:20', 1, '2024-01-30 09:43:24', 0, NULL, 1),
(16414, 'Ravichandran', '2', '8489174516', '', 'hackchandran@gmail.com', '2001-02-28', 22, '6', '2', 'Perumal', 'Farmer', 10000.00, 2, 20000.00, 25000.00, 'Trichy', 'Chennai', '2401300028', '', '2', 'upload_files/candidate_tracker/48652036885_RAVICHANDRAN 24.pdf', NULL, '1', '2024-01-30', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-30 09:39:41', 1, '2024-01-30 09:44:17', 0, NULL, 1),
(16415, 'Madhumitha S', '11', '8870426803', '9940983810', 'madhumithasekar791@gmail.com', '2000-08-28', 23, '3', '2', 'Sekar', 'Business', 100000.00, 1, 0.00, 350000.00, 'Ambur', 'Chennai', '2401310001', '', '1', 'upload_files/candidate_tracker/84954265179_Madhumitha\'s Resume (3) (1).pdf', NULL, '1', '2024-01-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very slow will not sustain and handle our work pressure', '6', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 04:31:42', 1, '2024-01-31 04:35:55', 0, NULL, 1),
(16416, 'Hari haran.K', '6', '9360578214', '', 'hharan470@gmail.com', '1999-05-21', 24, '2', '2', 'Kannan. S', 'Goldsmith', 35000.00, 2, 0.00, 350000.00, 'Chennai', 'Chennai', '2401310002', '1', '1', 'upload_files/candidate_tracker/19297233379_Resume Model.pdf', NULL, '1', '2024-01-31', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-31 04:37:10', 110, '2024-01-31 10:50:44', 0, NULL, 1),
(16417, 'Suriyakumar P', '13', '9710445299', '9841146555', 'suriyakumar.24598@gmail.com', '1998-05-24', 25, '3', '2', 'Perumal A', 'Weaver', 15000.00, 2, 0.00, 300000.00, 'Thiruvannamalai', 'Kattupakkam, Chennai.', '2401310003', '', '1', 'upload_files/candidate_tracker/99620076482_SURIYA.resume.pdf', NULL, '1', '2024-01-31', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 04:38:36', 1, '2024-01-31 04:42:55', 0, NULL, 1),
(16418, 'Surya prakash. R', '11', '7708257092', '6381568278', 'mailrsuryaprakash@gmail.com', '2000-07-20', 23, '6', '2', 'Renganathan', 'Police', 30000.00, 1, 0.00, 18000.00, 'Kalaivani nagar, Ilangiyendal, madurai', 'Sai homes, vadapalani', '2401310004', '', '1', 'upload_files/candidate_tracker/30702717776_r.surya prakash-1.pdf', NULL, '1', '2024-01-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'open for Web development and HR need to come withhis confirmation if he comes back let us try', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 04:56:30', 1, '2024-01-31 05:01:49', 0, NULL, 1),
(16419, 'Subash.v', '23', '8925359322', '', 'subashuiux29@gmail.com', '2009-01-31', 0, '6', '2', 'Veeramani', 'Bag company', 15000.00, 1, 0.00, 20000.00, 'Pondicherry', 'Pondicherry', '2401310005', '', '1', 'upload_files/candidate_tracker/20357109803_Resum_subash.pdf', NULL, '1', '2024-01-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not cleared the technical round', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 05:12:19', 1, '2024-01-31 05:20:12', 0, NULL, 1),
(16420, 'Raboni abinash', '23', '9360393305', '7092271603', 'Raboniabi@gmail.com', '1997-07-24', 26, '6', '2', 'Velankanni', 'driver', 25000.00, 2, 0.00, 350000.00, 'Puducherry', 'Puducherry', '2401310006', '', '1', 'upload_files/candidate_tracker/36658353342_RESUME R-01 (1).pdf', NULL, '1', '2024-01-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Cleared The Technical Round', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 05:13:02', 1, '2024-01-31 05:20:44', 0, NULL, 1),
(16421, 'Shanmuga priya R', '13', '9043896645', '', 'rajasekarpadmathi@gmail.com', '2001-09-17', 22, '6', '2', 'None', 'Unemployed', 50000.00, 2, 0.00, 35000.00, '22/c South car street, Mayiladuthurai district', '22/C South Car Street, Mayiladuthurai District', '2401310007', '', '1', 'upload_files/candidate_tracker/67206765251_CV_2023121321284999.pdf', NULL, '1', '2024-01-31', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 05:17:25', 1, '2024-01-31 05:31:15', 0, NULL, 1),
(16422, '', '0', '9791165082', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401310008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-31 05:20:11', 0, NULL, 0, NULL, 1),
(16423, 'Balaji j', '27', '8428828688', '', 'balajijb26@gmail.com', '1997-11-16', 26, '6', '2', 'Janaki raman m', 'Travels guide (private employee)', 35000.00, 1, 0.00, 15000.00, 'Madurai', 'Velachery, chennai', '2401310009', '', '1', 'upload_files/candidate_tracker/28597499173_new resume.pdf', NULL, '1', '2024-01-31', 0, '', '3', '59', '2024-02-12', 120000.00, '', '5', '1970-01-01', '2', '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K', '2', '1', '2', '1', '8', '1', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-31 05:21:16', 60, '2024-02-12 10:03:56', 0, NULL, 1),
(16424, 'Sakthivel P', '13', '6382453194', '', 'psakthivel064@gmail.com', '2000-11-19', 23, '3', '2', 'Periyasamy M', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Kilnamadi', 'Kilnamadi', '2401310010', '', '1', 'upload_files/candidate_tracker/15249025401_sakthi phy.pdf', NULL, '1', '2024-01-31', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 05:21:29', 1, '2024-01-31 05:24:36', 0, NULL, 1),
(16425, 'Venkatesh', '6', '9025782723', '9942327413', 'venkatvitman@gmail.com', '1997-10-20', 26, '2', '2', 'Chandrasekar', 'Supervisor', 40000.00, 2, 0.00, 15000.00, 'Trichy', 'Erukkancherry', '2401310011', '1', '1', 'upload_files/candidate_tracker/21252824345_RESUME.pdf', NULL, '1', '2024-01-31', 0, '', '3', '59', '2024-02-02', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-01-31 05:31:57', 60, '2024-02-01 07:27:56', 0, NULL, 1),
(16426, 'Adesh Prasanna D', '23', '9566096230', '', 'adesh1435prasa@gmail.com', '2000-04-29', 23, '3', '2', 'Devakumar Y', 'Carpenter', 40.00, 2, 28000.00, 35000.00, 'Anilady, gingee, villupuram 605651', 'No32, taramani Chennai, 600113', '2401310012', '', '2', 'upload_files/candidate_tracker/46497115695_Resume - AD.pdf', NULL, '1', '2024-01-31', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Cleared The Technical Round', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 05:35:35', 1, '2024-01-31 05:46:32', 0, NULL, 1),
(16427, 'Anburaj k', '5', '7639665494', '6379556203', 'anburaj06k@gmail.com', '1997-10-14', 26, '2', '1', 'Aarthi k', 'Medical Coder', 15000.00, 1, 25000.00, 30000.00, 'Ariyalur', 'Chennai', '2401310013', '1', '2', 'upload_files/candidate_tracker/86196523533_Anburaj. K Resume.pdf', NULL, '1', '2024-01-31', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-31 05:38:05', 108, '2024-01-31 03:19:13', 0, NULL, 1),
(16428, 'Lavanya B', '11', '9361073593', '', 'lavanya.b1100@gmail.com', '2001-06-25', 22, '6', '2', 'Balakrishnan N', 'Barber shop', 100000.00, 1, 2.16, 2.40, 'Ambasamudram/Tirunelveli', 'Ambasamudram/Tirunelveli', '2401310014', '', '2', 'upload_files/candidate_tracker/40905402860_Lavanya B CV.pdf', NULL, '1', '2024-01-31', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Selected for MF with 15K need to get confirmaiton from candidate', '6', '1', '0', '1', '8', '0', '2', '2024-02-05', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 05:40:07', 1, '2024-01-31 05:42:57', 0, NULL, 1),
(16429, 'Vineeth S', '23', '9941713641', '9600010057', 'svneeth@gmail.com', '1999-05-16', 24, '1', '2', 'Shanmugakani', 'Home maker', 270000.00, 2, 0.00, 270000.00, 'Chennai', 'Chennai', '2401310015', '', '1', 'upload_files/candidate_tracker/78378609225_Vineeth S Resume.pdf', NULL, '1', '2024-01-31', 0, 'Image institute', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Cleared The Technical Round', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 05:41:32', 1, '2024-01-31 05:46:29', 0, NULL, 1),
(16430, '', '0', '6382188513', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401310016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-31 05:42:34', 0, NULL, 0, NULL, 1),
(16431, 'Bharathi Dasan S', '13', '7550322659', '', 'bharathidasan0131@gmail.com', '2001-05-01', 22, '6', '2', 'Sowndarapandiyan', 'Farmer', 30000.00, 1, 0.00, 200000.00, 'Cuddalore', 'Chennai', '2401310017', '', '1', 'upload_files/candidate_tracker/98281439185_Resume 3.pdf', NULL, '1', '2024-01-31', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 05:43:26', 1, '2024-01-31 05:47:48', 0, NULL, 1),
(16432, 'Durgadevi.A', '13', '8940459745', '6381542157', 'durgadevi01021996@gmail.com', '1996-03-25', 27, '6', '2', 'Arumugam.S', 'Farmer', 30000.00, 2, 0.00, 200000.00, 'Thanjavur', 'Chennai', '2401310018', '', '1', 'upload_files/candidate_tracker/65325902606_Durga resume (1).pdf', NULL, '1', '2024-01-31', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 05:45:43', 1, '2024-01-31 06:14:32', 0, NULL, 1),
(16433, 'Sathish S', '23', '8610983576', '', 'sattanathansathish40@gmail.com', '1999-08-06', 24, '6', '2', 'Sattanathan', 'Farmer', 40000.00, 1, 0.00, 20000.00, 'Neyveli', 'Neyveli', '2401310019', '', '1', 'upload_files/candidate_tracker/39173854884_Resume 1-1.pdf', NULL, '1', '2024-01-31', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 05:51:44', 1, '2024-01-31 06:04:25', 0, NULL, 1),
(16434, 'Logeshwari B', '6', '9842434504', '', 'logeshwariyoga2003@gmail.com', '2003-07-02', 20, '3', '2', 'Balasubramaniam', 'MRF tire company', 25000.00, 1, 0.00, 15000.00, 'Karur', 'Mogappair east', '2401310020', '', '1', 'upload_files/candidate_tracker/37412166820_B.Logeshwari resume.pdf', NULL, '1', '2024-01-31', 0, '', '3', '59', '2024-02-02', 165000.00, '', '5', '1970-01-01', '2', 'Selected For Charles Team in Consultant Role', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-31 06:07:55', 60, '2024-02-02 09:55:35', 0, NULL, 1),
(16435, 'Ajithkumar.m', '13', '8489813113', '8524895412', 'ajith.m1705@gmail.com', '2002-05-17', 21, '3', '2', 'Munusamy', 'Framer', 18000.00, 1, 0.00, 3.40, 'Chepet', 'Kodambakkam', '2401310021', '', '1', 'upload_files/candidate_tracker/91965522947_Ajithkumar.M_Resume.pdf', NULL, '1', '2024-01-31', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 06:11:11', 1, '2024-01-31 06:15:39', 0, NULL, 1),
(16436, 'Nithin A', '13', '7373767879', '', 'nithinananth18@gmail.com', '2001-09-17', 22, '3', '2', 'Arulananth C', 'Business', 18000.00, 1, 0.00, 340000.00, 'Tirunelveli', 'Vadapalani', '2401310022', '', '1', 'upload_files/candidate_tracker/54963164220_Resume - Google Docs.pdf', NULL, '1', '2024-01-31', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 06:11:19', 1, '2024-01-31 06:15:40', 0, NULL, 1),
(16437, 'S .priyadharshini', '5', '8754226612', '9710397924', 'dharshinip472@gmail.com', '1996-06-24', 27, '1', '1', 'P.selvam', 'Real estate broker', 25000.00, 1, 23700.00, 28000.00, '721/b,rangoon street, thousand lights,ch-06', 'Royapettah', '2401310023', '', '2', 'upload_files/candidate_tracker/86549828404_priyacv.pdf', NULL, '1', '2024-01-31', 0, '55722', '3', '59', '2024-02-02', 345696.00, '', NULL, '2026-01-31', '1', '25K Net + PF 3L Buz 10MF then 28K Net from april GK Sir Team Reference', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-31 06:11:25', 60, '2024-02-02 09:59:16', 0, NULL, 1),
(16438, 'Aravindan E', '31', '9150102475', '', 'aravindan2518@gmail.com', '2001-06-18', 22, '3', '2', 'Elavarasan J', 'Carpenter', 200000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2401310024', '', '1', 'upload_files/candidate_tracker/13974645240_Aravindan CV 2024.pdf', NULL, '1', '2024-01-31', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 06:11:39', 1, '2024-01-31 06:15:53', 0, NULL, 1),
(16439, 'Charles', '33', '7550293377', '8939792079', 'charlesemmanuvel2001@gmail.com', '2001-01-07', 23, '2', '2', 'Emmanuel sagaya Raja', 'business', 50000.00, 1, 0.00, 16000.00, 'j house avvai nagar west choolaimedu Chennai', 'vj house avvai nagar west choolaimedu', '2401310025', '1', '1', 'upload_files/candidate_tracker/66065713725_charles resume 2023.docx', NULL, '1', '2024-01-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitabl for our roles will not sustain no basics', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-01-31 06:16:10', 110, '2024-01-31 12:38:09', 0, NULL, 1),
(16440, '', '0', '9842434505', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401310026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-31 06:20:12', 0, NULL, 0, NULL, 1),
(16441, 'Priyanka G', '6', '7010507974', '6381778976', 'priyapretty375@gmail.com', '2002-02-01', 21, '2', '2', 'Umamageshwari', 'Government employee', 200000.00, 2, 20000.00, 15000.00, 'Choolai', 'Choolai', '2401310027', '1', '2', 'upload_files/candidate_tracker/83136086510_PRIYANKA G.pdf', NULL, '1', '2024-01-31', 0, '', '3', '59', '2024-02-05', 186000.00, '', '5', '1970-01-01', '2', 'selected for Babu Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-31 06:32:23', 60, '2024-02-05 10:20:04', 0, NULL, 1),
(16442, 'Arumugam Arjunan', '31', '9344435520', '8124844603', 'arumugamarjunan56@gmail.com', '2001-09-07', 22, '3', '2', 'Unmarried', 'Fresher', 12000.00, 1, 0.00, 20000.00, 'Eral , Tuticorin', 'Velachery, Chennai', '2401310028', '', '1', 'upload_files/candidate_tracker/69481653249_Arumugam Resume - 2 (Full Stack) .pdf', NULL, '1', '2024-01-31', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 06:49:35', 1, '2024-01-31 06:51:43', 0, NULL, 1),
(16443, 'S vinothkumar', '4', '7904914731', '', 'vk988455@gmail.com', '1996-04-21', 27, '6', '1', 'Priya V', 'Housewife', 22000.00, 2, 22000.00, 28000.00, 'Chennai', 'Chennai', '2401310029', '', '2', 'upload_files/candidate_tracker/17087285713_CV_2024010810451532.pdf', NULL, '1', '2024-02-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-31 06:51:49', 110, '2024-02-07 06:04:39', 0, NULL, 1),
(16444, 'Backiaraj B', '13', '6382991950', '9866772594', 'rajumurugan048@gmail.com', '2000-08-04', 23, '6', '2', 'BALAMURUGAN P', 'Cooli', 75000.00, 1, 0.00, 20000.00, 'No 3a ponnagar street mela ilanji tenkasi', '1st St, Sakthi Nagar, ,Choolaimedu, Chennai,600094', '2401310030', '', '1', 'upload_files/candidate_tracker/70511723288_BACKIARAJ.Pr..pdf', NULL, '1', '2024-01-31', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 07:07:12', 1, '2024-01-31 07:33:05', 0, NULL, 1),
(16445, 'sanjay', '6', '7358444467', '6379833806', 'arunasanjay2001@gmail.com', '2001-08-12', 22, '2', '2', 'aruna', 'house wife', 300000.00, 0, 25000.00, 26000.00, 'chennai', 'chennai', '2401310031', '1', '2', 'upload_files/candidate_tracker/55859556374_SANJAY RESUME.docx', NULL, '1', '2024-01-31', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication And Dressing Sense is Very Bad,Also Not Wear Shoe and Activity is also bad. sustainity problem.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-31 07:11:11', 108, '2024-01-31 03:21:35', 0, NULL, 1),
(16446, 'Malavan', '13', '9345260425', '9788539254', 'malavan235@gmail.com', '2001-04-22', 22, '3', '2', 'Madhiyazhagan', 'Farmer', 8000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Tambaram', '2401310032', '', '1', 'upload_files/candidate_tracker/11730133244_Malavan_Resume.pdf', NULL, '1', '2024-01-31', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 07:32:54', 1, '2024-01-31 07:34:38', 0, NULL, 1),
(16447, 'haariharan', '23', '9344085521', '', 'haariharan27@gmail.com', '1999-03-27', 24, '3', '2', 'Chitra', 'Business', 50000.00, 1, 320000.00, 600000.00, 'coimbatore', 'coimbatore', '2401310033', '', '2', 'upload_files/candidate_tracker/48048720513_haariharan_sresume_compressed-1.pdf', NULL, '1', '2024-01-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-01-31 08:32:06', 110, '2024-01-31 04:22:39', 0, NULL, 1),
(16448, 'pavithra', '11', '8754593035', '7904555937', 'pavithravk129@gmail.com', '2000-11-29', 23, '6', '2', 'radha', 'manager', 30000.00, 1, 13500.00, 20000.00, 'pillayarkovil streer jafferkhanpet', 'jafferkhanpet', '2401310034', '', '2', 'upload_files/candidate_tracker/21772924248_R. Pavithra Resume 2.pdf', NULL, '1', '2024-01-31', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have exp in MIS but not ope n for that fresher for Recruiter min exp is 20K will not sustain', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 10:16:32', 1, '2024-01-31 10:22:48', 0, NULL, 1),
(16449, 'Ajith kumar', '13', '9080871282', '8015852282', 'ajithkumaraji0312@gmail.com', '1998-12-03', 25, '3', '2', 'Palanivel', 'Formar', 15000.00, 0, 0.00, 18000.00, 'Chennai , vadapalani', 'Vadapalani', '2401310035', '', '1', 'upload_files/candidate_tracker/49214663612_AJI_RESUME 1-1 (1)-6-2 (1).pdf', NULL, '1', '2024-01-31', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'Rejected', '', '', '', NULL, NULL, NULL, 1, '2024-01-31 10:27:12', 110, '2024-02-08 06:35:37', 0, NULL, 1),
(16450, 'Harish K', '11', '9442157016', '', 'Harishkubendiran24@gmail.com', '1999-12-24', 24, '2', '2', 'Kubendiran R', 'Driver', 18000.00, 1, 0.00, 275000.00, '2/19, chinnaveppampattu kalandira po, vnb', 'St Thomas mount', '2401310036', '1', '1', 'upload_files/candidate_tracker/15101611179_Harish Kubendiran Resume.pdf', NULL, '1', '2024-02-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-01-31 12:48:32', 104, '2024-02-01 10:36:44', 0, NULL, 1),
(16451, '', '0', '7339150980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2401310037', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-01-31 12:53:40', 0, NULL, 0, NULL, 1),
(16452, 'Akilan', '6', '6381282673', '', 'akilan30006@gimal.com', '2001-12-05', 22, '2', '2', 'Asokan', 'Farmer', 400000.00, 2, 0.00, 180000.00, 'Ranipet', 'Ranipet', '2401310038', '1', '1', 'upload_files/candidate_tracker/38537587188_A Akilan_BCA_RESUME.pdf', NULL, '1', '2024-02-01', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-01-31 01:02:07', 110, '2024-02-01 11:08:23', 0, NULL, 1),
(16453, 'Ashok kumar R', '33', '9042757925', '', 'Ashress619@gmail.com', '1995-07-23', 28, '6', '2', 'Ravi', 'Book shop owner', 30000.00, 2, 25000.00, 30000.00, 'No 18 6th street 2nd cross street CRPF avadi Rajiv', 'Avadi', '2401310039', '', '2', 'upload_files/candidate_tracker/97814295127_ASHOK Resume-3.pdf', NULL, '1', '2024-02-01', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-01-31 02:33:58', 1, '2024-01-31 02:43:43', 0, NULL, 1),
(16454, 'Musthafa', '5', '9940445296', '9962276256', 'shakirrocky786@gmail.com', '2002-01-03', 22, '2', '2', 'Khaleel basha', 'Fashion designer', 20000.00, 2, 280000.00, 35000.00, 'Chennai', 'Chennai', '2402010001', '1', '2', 'upload_files/candidate_tracker/3186569482_Resume_2023-10-12_3856514 (6).pdf', NULL, '1', '2024-02-01', 0, '', '3', '59', '2024-02-06', 300000.00, '', '5', '1970-01-01', '1', 'Selected fpr GK sir team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-01 02:14:10', 60, '2024-02-05 06:10:24', 0, NULL, 1),
(16455, 'Shaik Adham R', '6', '9962002733', '9094330005', 'shaikadhamrahim@gmail.com', '2001-12-15', 22, '2', '2', 'Rahim k', 'Auto driver', 16000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2402010002', '1', '2', 'upload_files/candidate_tracker/69595854338_adam resume.docx-3.pdf', NULL, '1', '2024-02-02', 0, '', '3', '59', '2024-02-05', 198000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team', '5', '1', '1', '4', '6', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-01 04:28:47', 60, '2024-02-05 09:55:30', 0, NULL, 1),
(16456, 'Divya B', '11', '6374371488', '', 'Divyabaskardg@gmail.com', '2001-06-13', 22, '6', '2', 'Baskar L', 'Advocate clerk', 150000.00, 1, 0.00, 2.00, 'Cuddalore', 'Vadaplani', '2402010003', '', '1', 'upload_files/candidate_tracker/41294725890_CV_2024013019470085.pdf', NULL, '1', '2024-02-01', 0, '', '3', '59', '2024-02-05', 120000.00, '', '5', '1970-01-01', '1', 'Intern With Empl 5month Then Empl8-10', '6', '1', '1', '1', '8', '', '2', '2024-02-05', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-01 04:42:28', 60, '2024-02-05 09:57:04', 0, NULL, 1),
(16457, 'Varshini', '11', '9790767501', '', 'Varshipraba@gmail.com', '1997-08-26', 26, '6', '2', 'Prabakar', 'Psychologist', 600000.00, 1, 0.00, 25000.00, 'Ramnagar,Paravallur', 'Ramnagar,Peravallur', '2402010004', '', '1', 'upload_files/candidate_tracker/67811518178_Varshini Nimakar.pdf', NULL, '1', '2024-02-01', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Psychoogy candidate need toconfirm her interets', '6', '1', '0', '1', '8', '0', '2', '2024-02-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 04:43:45', 1, '2024-02-01 04:47:51', 0, NULL, 1),
(16458, 'Sapthagiri R', '13', '9677608604', '', 'sapthagiri2302@gmail.com', '2001-03-20', 22, '3', '2', 'Ramachandran G', 'Farmer', 15000.00, 2, 0.00, 3.60, 'Villupuram', 'Villupuram', '2402010005', '', '1', 'upload_files/candidate_tracker/21995308749_Sapthagiri_CV.pdf', NULL, '1', '2024-02-01', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 05:12:10', 1, '2024-02-01 05:15:42', 0, NULL, 1),
(16459, 'Akash.k', '6', '9789706700', '6381282673', 'Akash.k200225@gmail.com', '2002-04-25', 21, '2', '2', 'Agilandeeswari. S', 'Farmer', 19000.00, 1, 0.00, 20000.00, 'Ranipet', 'Chennai', '2402010006', '1', '1', 'upload_files/candidate_tracker/23016011431_K AKASH_BCA_RESUME-5.pdf', NULL, '1', '2024-02-01', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-01 05:19:29', 108, '2024-02-03 09:49:13', 0, NULL, 1),
(16460, 'AJITHKUMAR P', '13', '9840187165', '9092471378', 'ajith124aj@gmail.com', '2003-07-03', 20, '3', '2', 'PERUMALSAMY p', 'Taxi driver', 12000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2402010007', '', '1', 'upload_files/candidate_tracker/35547053364_Ajithkumar_P c# (1).pdf', NULL, '1', '2024-02-01', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 05:30:33', 1, '2024-02-01 05:39:46', 0, NULL, 1),
(16461, 'Giridharan', '13', '9092471378', '9840187165', 'giridharanragu@gmail.com', '2002-11-11', 21, '3', '2', 'Ragothaman', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2402010008', '', '1', 'upload_files/candidate_tracker/11206615294_Giridharan_Web_resume.pdf', NULL, '1', '2024-02-01', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 05:31:47', 1, '2024-02-01 05:46:05', 0, NULL, 1),
(16462, 'DHARUN SRINIVAS.P', '14', '8838353345', '', 'tharunsrinivas650@gmail.com', '2000-06-23', 23, '6', '2', 'Parasu Raman', 'Machanic', 50000.00, 0, 1.90, 2.00, 'R.c nagar pattiveeranpatti -624211', 'Adayar chennai', '2402010009', '', '2', 'upload_files/candidate_tracker/26055944638_Dharun Srinivas P CV-4.pdf', NULL, '1', '2024-02-01', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 05:32:16', 1, '2024-02-01 05:36:34', 0, NULL, 1),
(16463, 'Vishnu Muthu Kumar', '13', '7305872881', '7305873182', 'mcvicky2601@gmail.com', '2001-12-26', 22, '6', '2', 'Muthukumar', 'Daily wager', 40000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2402010010', '', '1', 'upload_files/candidate_tracker/59642465275_Vishnu Muthukumar.pdf', NULL, '1', '2024-02-01', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 05:35:44', 1, '2024-02-01 05:42:42', 0, NULL, 1),
(16464, 'Noormohamed A', '13', '6374358011', '9445711831', 'noormohamedazar20@gmail.com', '2001-01-20', 23, '6', '2', 'Abdul Hameed H M', 'Daily wages', 12000.00, 2, 0.00, 250000.00, 'C2 New police quarters, Chidambaram', 'C2 New Police Quarters, Chidambaram', '2402010011', '', '1', 'upload_files/candidate_tracker/54860868598_Noormohamed-2.pdf', NULL, '1', '2024-02-01', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 05:37:21', 1, '2024-02-01 05:43:40', 0, NULL, 1),
(16465, 'Regachitty', '13', '9047585708', '', 'regachitty2002@gmail.com', '2002-01-20', 22, '3', '2', 'Duraiyarasan', 'Full stack developer intern', 12000.00, 1, 2.00, 3.00, 'Aranthangi', 'Aranthangi', '2402010012', '', '2', 'upload_files/candidate_tracker/4378929792_Drega-1.pdf', NULL, '1', '2024-02-01', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 05:43:37', 1, '2024-02-01 05:49:11', 0, NULL, 1),
(16466, 'Buvaneshkumar', '13', '9080980432', '', 'buvaneshkumar293@gmail.com', '2000-03-29', 23, '6', '2', 'Chandran', 'Associate consultant', 15000.00, 1, 200000.00, 300000.00, 'Cuddalore', 'Chennai', '2402010013', '', '2', 'upload_files/candidate_tracker/50851856873_Buvanesh Resume (2).pdf', NULL, '1', '2024-02-01', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 05:45:04', 1, '2024-02-01 05:57:13', 0, NULL, 1),
(16467, 'Arunbalaji.k', '13', '9790890529', '9445170474', 'arunbalajik79@gmail.com', '2001-04-09', 22, '3', '2', 'Kanthappan', 'Photography', 25000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2402010014', '', '1', 'upload_files/candidate_tracker/4259817770_CV_2024013119542642.pdf', NULL, '1', '2024-02-01', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 05:45:13', 1, '2024-02-01 06:02:19', 0, NULL, 1),
(16468, 'Madhavan M', '13', '9444332562', '7305834270', 'madhavan944433@gmail.com', '2000-11-30', 23, '1', '2', 'MAHADEVAN K', 'AVNL Engine factory avadi', 60000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2402010015', '', '1', 'upload_files/candidate_tracker/80050404778_Madhavan\'s - cv.pdf', NULL, '1', '2024-02-01', 0, 'Na', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 05:45:39', 1, '2024-02-01 05:49:52', 0, NULL, 1),
(16469, 'SANJEEV KUMAR A', '13', '9962859288', '', 'asksanjeev005@gmail.com', '2001-09-05', 22, '3', '2', 'AYYAPPAN', 'DanFoss', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2402010016', '', '1', 'upload_files/candidate_tracker/80409348575_SK_RESUME.pdf', NULL, '1', '2024-02-01', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 05:45:59', 1, '2024-02-01 05:54:32', 0, NULL, 1),
(16470, 'Venkata Raghavan R', '31', '7010898978', '', 'venkataraghavan02@gmail.com', '2002-02-11', 21, '3', '2', 'Ravisekar', 'Business', 25000.00, 0, 0.00, 300000.00, 'Kumbakonam', 'Chennai', '2402010017', '', '1', 'upload_files/candidate_tracker/32110534143_VenkataraghavanBTECHECE2023.pdf', NULL, '1', '2024-02-01', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 06:09:08', 1, '2024-02-01 06:11:54', 0, NULL, 1),
(16471, 'AKASH J', '13', '8608650929', '', 'akashjayakumar33@gmail.com', '2001-09-21', 22, '3', '2', 'Jaya Kumar', 'Carpenter', 750000.00, 1, 0.00, 10000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2402010018', '', '1', 'upload_files/candidate_tracker/46102464759_Resume CV-pdf.pdf', NULL, '1', '2024-02-01', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 06:11:06', 1, '2024-02-01 06:15:50', 0, NULL, 1),
(16472, 'SATHISH S', '15', '8148326949', '9790170614', 'SATHISHSEKAR114@GMAIL.COM', '1990-11-14', 33, '6', '1', 'Husenabanu J', 'Private sector', 30000.00, 2, 0.00, 6000.00, 'Pallavaram', 'Pallavaram', '2402010019', '', '1', 'upload_files/candidate_tracker/89580277497_SathishCV.pdf', NULL, '1', '2024-02-01', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 06:12:21', 1, '2024-02-01 07:48:01', 0, NULL, 1),
(16473, 'Kalidas', '13', '8220838248', '', 'lkalidas31@gmail.com', '2002-12-01', 21, '6', '2', 'Lavakusa', 'Daily worker', 10000.00, 1, 0.00, 10000.00, 'Rajapalayam, virudhunagar district.', 'Velachery, Chennai.', '2402010020', '', '1', 'upload_files/candidate_tracker/73876375403_KALIDAS LAVAKUSA RESUME (1).pdf', NULL, '1', '2024-02-01', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 06:12:34', 1, '2024-02-01 06:26:14', 0, NULL, 1),
(16474, 'Vjjay', '13', '8883737813', '', 'Vijay.2022.07@gmail.com', '2001-10-10', 22, '3', '2', 'Sudha', 'Caretaker', 10000.00, 1, 2.80, 400000.00, 'Chennai', 'Chennai', '2402010021', '', '2', 'upload_files/candidate_tracker/63282095631_Resume-2.pdf', NULL, '1', '2024-02-01', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 06:18:30', 1, '2024-02-01 06:49:59', 0, NULL, 1),
(16475, 'Rama Devi.D', '13', '9361431792', '', 'ramadevi4102001@gmail.com', '2001-10-04', 22, '3', '2', 'Deiva Kumar.S', 'Carpenter', 15000.00, 2, 0.00, 25000.00, 'Kanyakumari', 'Porur, Chennai', '2402010022', '', '1', 'upload_files/candidate_tracker/20509625793_Resume- Rama Devi.pdf', NULL, '1', '2024-02-01', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 06:27:58', 1, '2024-02-01 06:37:22', 0, NULL, 1),
(16476, 'Swathi', '6', '8637638175', '', 'Swathivk202@gmail.com', '2002-06-19', 21, '2', '2', 'Vijay Kumar. K', 'Agreecultural', 26000.00, 2, 0.00, 15000.00, 'Nagapatinam', 'Mogappair east', '2402010023', '1', '1', 'upload_files/candidate_tracker/34704463429_Monochrome Minimal Modern Resume.pdf', NULL, '1', '2024-02-01', 0, '', '3', '59', '2024-02-02', 165000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team in Consultant role', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-01 07:34:29', 60, '2024-02-02 09:56:57', 0, NULL, 1),
(16477, '', '0', '9360530414', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402010024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-01 08:58:48', 0, NULL, 0, NULL, 1),
(16478, 'Abdul Jaleel Sharique V', '11', '7092144788', '9789298186', 'SHARIQUE.VAJ@GMAIL.COM', '1996-05-04', 27, '6', '1', 'Mohamed Ameen', 'Employee', 20000.00, 0, 0.00, 35000.00, 'Melvisharam', 'Chennai', '2402010025', '', '2', 'upload_files/candidate_tracker/13145368169_Abdul Jaleel Sharique Resume Updated-2-1.pdf', NULL, '1', '2024-02-01', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 10:01:16', 1, '2024-02-01 10:05:06', 0, NULL, 1),
(16479, 'p navaladiyan', '6', '8825447002', '9176540893', 'teejaynaval143@gmail.com', '2000-03-01', 23, '1', '2', 'panneer selvam', 'police', 40000.00, 1, 17000.00, 20000.00, 'chennai', 'chennai avadi', '2402010026', '', '2', 'upload_files/candidate_tracker/21452978892_Naval resume 03.04.2020.pdf', NULL, '1', '2024-02-01', 0, '77825', '7', '59', NULL, 0.00, '', '0', NULL, '1', 'Selected.. I got to check on him during the first night of practice', '5', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-01 11:01:06', 1, '2024-02-01 11:05:33', 0, NULL, 1),
(16480, 'Yuvarasu Chandran', '4', '9080302956', '9097319734', 'yuvarasu33@gmail.com', '2001-01-20', 23, '2', '2', 'A.Jothi', 'Tailor', 10000.00, 1, 0.00, 20000.00, 'Palani', 'Chennai', '2402020001', '1', '1', 'upload_files/candidate_tracker/8026155535_null.pdf_20240202_084050_0000.pdf', NULL, '3', '2024-02-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-02 03:06:47', 110, '2024-02-03 09:44:29', 0, NULL, 1),
(16481, 'dhivagar b', '4', '9514533221', '', 'dhivagar718@gmail.com', '2002-12-12', 21, '6', '2', 'L. Boopathy(father)', 'Unemployed', 10000.00, 1, 10000.00, 20000.00, 'Chennai', 'Chennai', '2402020002', '', '2', 'upload_files/candidate_tracker/50016110460_Dhivagar.pdf', NULL, '1', '2024-02-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-02 03:56:37', 110, '2024-02-02 04:59:56', 0, NULL, 1),
(16482, 'Kesavan B', '13', '8072721773', '', 'kesavantvm07@gmail.com', '1999-10-30', 24, '3', '2', 'Balasubramaniyan A', 'Welder', 120000.00, 1, 0.00, 200000.00, 'Tiruvannamalai', 'Chennai', '2402020003', '', '1', 'upload_files/candidate_tracker/40556610788_kesavan B resume.pdf', NULL, '1', '2024-02-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 04:03:12', 1, '2024-02-02 04:09:41', 0, NULL, 1),
(16483, 'Subacharuka R', '5', '9080942780', '7395957404', 'charukajd2417@gmail.com', '1998-02-24', 25, '2', '1', 'Vinoth Kumar M', 'Team Leader', 70000.00, 1, 33800.00, 38000.00, '147/69 venkatrangam st triplicane Chennai -05', 'Triplicane', '2402020004', '1', '2', 'upload_files/candidate_tracker/61918305287_Subacharuka.R.docx', NULL, '1', '2024-02-02', 30, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected For Santhosh Team. Need 1 Month Notice. Can give her the expected and good Candidate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-02 04:35:00', 60, '2024-02-02 10:41:07', 0, NULL, 1),
(16484, 'Mythily Sekar', '17', '7358795261', '', 'mythilysekar26@gmail.com', '2001-01-12', 23, '2', '2', 'Sekar M', 'Chef', 2.50, 1, 4.20, 35000.00, 'Chennai', 'Chennai', '2402020005', '1', '2', 'upload_files/candidate_tracker/38407312386_mythu resume $ (1).pdf', NULL, '1', '2024-02-02', 1, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected For Mani Team. Need 1 Month Notice To Join. Give 2k to 3K  extra take home from Last Salary or negiotiate the same', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-02 04:35:21', 60, '2024-02-02 10:40:46', 0, NULL, 1),
(16485, 'Infant Prasanna W', '13', '9003415495', '', 'doniprasanna@gmail.com', '1998-03-01', 25, '3', '2', 'Donitta Salominal', 'Asst. Librarian', 25000.00, 1, 0.00, 12000.00, 'Tiruchirappalli', 'Shollinganallur', '2402020006', '', '1', 'upload_files/candidate_tracker/76920854664_InfantResume.pdf', NULL, '1', '2024-02-02', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 04:59:18', 1, '2024-02-02 05:05:18', 0, NULL, 1),
(16486, '', '0', '9952348749', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402020007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-02 05:03:55', 0, NULL, 0, NULL, 1),
(16487, 'Benish', '13', '8428768175', '8870457579', 'benishi251@gmail.com', '2002-03-08', 21, '6', '2', 'Santhi m', 'House wife', 10000.00, 3, 0.00, 15000.00, 'Kanniyakumari', 'Chennai, kundrathur', '2402020008', '', '1', 'upload_files/candidate_tracker/20832649825_BENI RESUME.pdf', NULL, '1', '2024-02-02', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 05:09:38', 1, '2024-02-02 05:13:20', 0, NULL, 1),
(16488, 'Sundara moorthy s', '13', '7871556174', '9360456057', 'sundaramoorthy001g@gmail.com', '2002-11-18', 21, '2', '2', 'Sivalingam', 'real estate', 500000.00, 2, 0.00, 300000.00, 'Tiruvannamalai', 'Chennai', '2402020009', '1', '1', 'upload_files/candidate_tracker/94138466455_S.Sundara moorthy resume 2023.pdf', NULL, '1', '2024-02-02', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-02-02 05:12:51', 110, '2024-02-02 01:04:34', 0, NULL, 1),
(16489, 'Pavan kumar', '13', '9618008149', '', 'pavankumarbandla14@gmail.com', '2001-07-16', 22, '3', '2', 'Murali', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'Nellore', 'Tambaram', '2402020010', '', '1', 'upload_files/candidate_tracker/52560272395_pavankumar.resume.docx', NULL, '1', '2024-02-02', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 05:16:51', 1, '2024-02-02 05:19:50', 0, NULL, 1),
(16490, 'Claver edison', '33', '7825960407', '', 'claveredison238@gmail.com', '2002-06-09', 21, '2', '2', 'ERUSALEM RAJA', 'Driver', 25000.00, 1, 0.00, 250000.00, 'no 1466 jj nagar lime stone street korukkupet', 'No 1466 jj nagar lime stone street korukkupet', '2402020011', '1', '1', 'upload_files/candidate_tracker/16472360272_Claver edison cv (2).pdf', NULL, '1', '2024-02-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-02 05:17:32', 108, '2024-02-03 09:51:36', 0, NULL, 1),
(16491, 'Sanjay S', '13', '8754603732', '9361659243', 'chandrushanmugam324@gmail.com', '2002-10-09', 21, '3', '1', 'R. Shanmugam', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Kallakurichi', 'Kallakurichi', '2402020012', '', '1', 'upload_files/candidate_tracker/23589880998_Sanjay_Java Developer_Resume.pdf', NULL, '1', '2024-02-02', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 05:34:13', 1, '2024-02-02 05:39:52', 0, NULL, 1),
(16492, 'Aravind Raj', '31', '6374663911', '6382981930', 'aravindmary03@gmail.com', '2002-03-30', 21, '6', '2', 'Aruldass', 'Former', 78000.00, 2, 0.00, 200000.00, 'Anna Nagar, Chennai', 'Anna Nagar, Chennai', '2402020013', '', '1', 'upload_files/candidate_tracker/17900066210_Aravind-resume (1).pdf', NULL, '1', '2024-02-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected', '', '', '', NULL, NULL, NULL, 1, '2024-02-02 05:39:03', 110, '2024-02-09 10:02:44', 0, NULL, 1),
(16493, 'Anish B S', '13', '9500795659', '', 'rohitasanish@gmail.com', '1999-11-04', 0, '3', '2', 'Balakrishnan P', 'Mason', 20000.00, 1, 0.00, 2.60, 'Kanniyakumari', 'Chennai', '2402020014', '', '1', 'upload_files/candidate_tracker/7178213965_Anish B S_Resume.pdf', NULL, '1', '2024-02-02', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 05:46:29', 1, '2024-02-02 06:04:29', 0, NULL, 1),
(16494, 'Sakthi prakash E', '13', '9344966283', '', 'sakthipraksh107@gmail.com', '2003-07-21', 20, '3', '2', 'Elumalai c', 'Daily wages', 18000.00, 1, 0.00, 2.50, 'thiruvannamalai', 'Chennai', '2402020015', '', '1', 'upload_files/candidate_tracker/19111495750_sakthi_resume.pdf', NULL, '1', '2024-02-02', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 05:47:04', 1, '2024-02-02 05:53:05', 0, NULL, 1),
(16495, 'Srivatsan P', '13', '9092625223', '6369936968', 'Vatkath@gmail.com', '1996-05-06', 27, '6', '2', 'Latha P', 'Working', 45000.00, 1, 0.00, 450000.00, 'Chennai', 'Thirumullaivoyal, Chennai', '2402020016', '', '1', 'upload_files/candidate_tracker/54374772497_Srivatsan Edited Resume (1).pdf', NULL, '1', '2024-02-02', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 06:16:03', 1, '2024-02-02 06:19:58', 0, NULL, 1),
(16496, 'Tamilselvan D', '33', '6369131785', '9445917816', 'dtamilselvan28@gmail.com', '2001-07-28', 22, '3', '2', 'Durai', 'Painter', 14000.00, 2, 0.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2402020017', '', '1', 'upload_files/candidate_tracker/65238246613_Resume-2.pdf', NULL, '1', '2024-02-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our roles no basic skills need to travel A LONGwill not sustain', '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 06:33:01', 1, '2024-02-02 10:03:39', 0, NULL, 1),
(16497, 'Premkumar', '6', '9094837558', '9600845682', 'Prem80280@gmail.com', '1997-09-01', 26, '1', '2', 'Malar', 'House wife', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2402020018', '', '1', 'upload_files/candidate_tracker/85930409120_Prem\' Resume.pdf', NULL, '1', '2024-02-02', 0, '77825', '1', '89', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 06:36:54', 1, '2024-02-02 06:59:34', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16498, 'Prince raja.j', '6', '9791105516', '8807218847', 'Princeraja77000@gmail.com', '2000-07-07', 23, '1', '2', 'Jebarajan', 'Daily wage', 20000.00, 3, 0.00, 18000.00, '3/7, Dhanapal Nagar 2nd Street, New washermen pet', 'Chennai-600081', '2402020019', '', '1', 'upload_files/candidate_tracker/90532774887_j prince raja.pdf', NULL, '1', '2024-02-02', 0, '77825', '3', '59', '2024-02-05', 192000.00, '', '5', '1970-01-01', '2', 'Selecetd for Babu Team', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-02 06:36:57', 60, '2024-02-03 07:00:17', 0, NULL, 1),
(16499, 'Edwin', '13', '9361034090', '9600076547', 'edwinchris07@gmail.com', '2002-05-21', 21, '3', '2', 'Xavier Rajan. D', 'Business', 300000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2402020020', '', '1', 'upload_files/candidate_tracker/7885868642_Edwindevp.pdf.pdf', NULL, '1', '2024-02-02', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 06:37:08', 1, '2024-02-02 06:42:55', 0, NULL, 1),
(16500, 'ARIVAZHAGAN K', '13', '9499038532', '8925335857', 'arivekr0405@gmail.com', '2002-05-04', 21, '3', '2', 'Kuppuraj S', 'TNEB(LI)', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chenni', '2402020021', '', '1', 'upload_files/candidate_tracker/84800999603_Arivazhagan KR(web Developer).pdf', NULL, '1', '2024-02-02', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 06:59:06', 1, '2024-02-02 08:03:08', 0, NULL, 1),
(16501, 'Nithin.s', '13', '9597954928', '7339139431', 'nithinnivin76@gmail.com', '2002-11-13', 21, '3', '2', 'Selvaraj', 'Farmer', 10000.00, 2, 0.00, 2.50, 'No.5/81 , South Street,osarapalli, Trichy', 'No.20,virugambakkam, chennai', '2402020022', '', '1', 'upload_files/candidate_tracker/14611507750_Nithin.pdf', NULL, '1', '2024-02-02', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 07:00:27', 1, '2024-02-02 08:37:35', 0, NULL, 1),
(16502, 'Manojkumar G', '13', '9092520396', '', 'manojkumar14072002@gmail.com', '2002-07-14', 21, '3', '2', 'Ganesan A', 'Driver', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2402020023', '', '1', 'upload_files/candidate_tracker/67442259896_Manojkumar.G fresher.pdf', NULL, '1', '2024-02-02', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 07:00:45', 1, '2024-02-02 07:07:22', 0, NULL, 1),
(16503, '', '0', '7358075878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402020024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-02 08:07:24', 0, NULL, 0, NULL, 1),
(16504, 'P Suneel Kumar', '13', '6369406883', '', 'suneelkumarp63@gmail.com', '2000-05-20', 23, '3', '2', 'P Chinthamani', 'Teacher', 8000.00, 1, 0.00, 12000.00, 'Govardanagiri,Pichatur, Tirupati 517589', 'Gummidipoondi,Tiruvallur, Tamilnadu', '2402020025', '', '1', 'upload_files/candidate_tracker/32510836110_Suneel Resume..pdf', NULL, '1', '2024-02-02', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '6', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 09:14:29', 1, '2024-02-02 09:21:54', 0, NULL, 1),
(16505, 'Johnson igbal', '13', '7200241212', '', 'johnsonigbal@gmail.com', '1994-12-05', 29, '3', '1', 'Hasna sumaiya', 'House wife', 15000.00, 4, 15000.00, 20000.00, 'virudhachallam', 'virudhachallam', '2402020026', '', '1', 'upload_files/candidate_tracker/48385848865_final resume igbal.pdf', NULL, '1', '2024-02-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-02 09:26:55', 110, '2024-02-02 03:33:55', 0, NULL, 1),
(16506, 'Dinesh kumar', '6', '7305440526', '', 'dineshkraja335@gmail.com', '2000-09-13', 23, '1', '2', 'Venkatraman', 'Office assistant', 55000.00, 2, 18000.00, 20000.00, 'Chennai', 'Chennai', '2402020027', '', '2', 'upload_files/candidate_tracker/82024050819_CamScanner 10-06-2021 18.49 (1).pdf', NULL, '1', '2024-02-02', 0, 'P1404', '1', '57', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 10:08:10', 1, '2024-02-02 10:24:32', 0, NULL, 1),
(16507, 'Vijay', '6', '9363468226', '7010146369', 'tiktok4693@gmail.com', '2001-03-30', 22, '1', '1', 'Dhanalakshmi', 'House wife', 50000.00, 1, 20000.00, 20000.00, 'No 6 avadhana ramasamy street oldwashermenpet', 'No 6 Avadhana Ramasamy Street Oldwashermenpet', '2402020028', '', '2', 'upload_files/candidate_tracker/66757671821_P.VIJAY resume.docx bbbbbbb Mark-up.pdf', NULL, '1', '2024-02-02', 0, 'P1404', '1', '57', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-02 10:13:29', 1, '2024-02-02 10:21:25', 0, NULL, 1),
(16508, '', '0', '8825602863', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402020029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-02 10:51:51', 0, NULL, 0, NULL, 1),
(16509, 'Vinoth Selva Kumar c', '6', '8608654032', '', 'vinothselva23@gmail.com', '1995-08-23', 28, '2', '2', 'C Chandran', 'Military engineering service ( Retired)', 18000.00, 1, 15000.00, 18000.00, 'Keelkattalai', 'Keelkattalai Chennai', '2402020030', '1', '2', 'upload_files/candidate_tracker/14442204795_vinoth resume new.pdf', NULL, '1', '2024-02-03', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-02 11:24:17', 110, '2024-02-03 12:59:34', 0, NULL, 1),
(16510, '', '0', '7845446772', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402020031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-02 11:37:04', 0, NULL, 0, NULL, 1),
(16511, 'K Bebin raj', '6', '8754925035', '7871311731', 'febi7870@gmail.com', '2002-08-16', 21, '2', '2', 'Bella P', 'House wife', 20.00, 1, 0.00, 20000.00, 'Kanyakumari', 'Avadi', '2402020032', '1', '1', 'upload_files/candidate_tracker/73653196388_Febi.pdf', NULL, '1', '2024-02-03', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Jfw Charles team candidate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-02 01:34:36', 108, '2024-02-05 04:56:58', 0, NULL, 1),
(16512, 'Sasikumar A S', '13', '8760164916', '', 'sasi.career2022@gmail.com', '2001-10-03', 22, '3', '2', 'Saravanan A C', 'Self Employee', 150000.00, 1, 0.00, 300000.00, 'Vellore', 'Vellore', '2402030001', '', '1', 'upload_files/candidate_tracker/79501099026_Resume.pdf', NULL, '1', '2024-02-03', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-03 04:52:20', 1, '2024-02-03 04:58:10', 0, NULL, 1),
(16513, 'Britney jouvit', '23', '9025997938', '9994776589', 'Britneyjouvit03@gmail.com', '2002-05-03', 21, '3', '2', 'Gerard Louis', 'Teacher', 120000.00, 1, 250000.00, 350000.00, 'Pondicherry', 'Chennai', '2402030002', '', '2', 'upload_files/candidate_tracker/19501395701_Britney Jouvit Ui Ux Resume (1)_compressed.pdf', NULL, '1', '2024-02-03', 1, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-03 06:45:52', 1, '2024-02-03 07:10:26', 0, NULL, 1),
(16514, 'Prakash Srinivasan', '31', '9790454441', '9994626663', 'anirudhprakash2102@gmail.com', '2009-02-03', 0, '3', '2', 'Srinivasan', 'Auto Mobile', 29000.00, 1, 0.00, 3.50, 'Salem', 'Salem', '2402030003', '', '1', 'upload_files/candidate_tracker/79765881324_Prakash resume.pdf', NULL, '1', '2024-02-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-03 09:10:52', 1, '2024-02-03 09:20:23', 0, NULL, 1),
(16515, 'Mohamed Imran Baig Y', '6', '9003233740', '', 'mohamedimra89890@gmail.com', '1998-11-25', 25, '3', '2', 'Yusuf Baig', 'Home Care', 20000.00, 0, 327000.00, 400000.00, 'Chennai', 'Chetpet', '2402030004', '', '2', 'upload_files/candidate_tracker/15444440256_CV_2023-10-03-092622 (1).pdf', NULL, '1', '2024-02-03', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Totelly Fresher job Needed Guy but after training period only we have to decide ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-03 09:12:20', 108, '2024-02-05 04:50:12', 0, NULL, 1),
(16516, 'Sandhiya', '5', '8072602934', '8124492673', 'sandhiyasashi3117@gmail.com', '2000-07-01', 23, '2', '2', 'Vadivel', 'Tailor', 50000.00, 4, 20000.00, 27000.00, '174 mahatama gandhi Nagar kolathut', 'Kolathur', '2402030005', '1', '2', 'upload_files/candidate_tracker/1200513275_SANDHIYA.docx', NULL, '1', '2024-02-03', 30, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected for nxt round', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-03 09:12:32', 108, '2024-02-05 04:59:53', 0, NULL, 1),
(16517, 'R. Sugumar', '31', '9944599703', '7904615351', 'sugusasiprem@gmail.com', '2009-02-03', 0, '3', '2', 'K. Ramesh', 'Shopkeeper', 20000.00, 5, 0.00, 200000.00, 'Kallakuriche (DT)', 'Chennai, velachery', '2402030006', '', '1', 'upload_files/candidate_tracker/89762557026_DocScanner 27 Dec 2023 1-58 pm-1.pdf', NULL, '1', '2024-02-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-03 09:12:44', 1, '2024-02-03 09:22:01', 0, NULL, 1),
(16518, 'Karthikeyan M', '33', '7708465808', '9444713619', 'karthikparker4107478@gmail.com', '1998-10-31', 25, '3', '2', 'Murugan M', 'Electrician', 20000.00, 1, 160000.00, 320000.00, '3/2 New Street chetpet chennai 31', '3/2 New Street Chetpet Chennai 31', '2402030007', '', '2', 'upload_files/candidate_tracker/95162928428_Karthikeyan._VisualCV_Resume (5).pdf', NULL, '1', '2024-02-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-03 09:14:16', 108, '2024-02-05 04:51:46', 0, NULL, 1),
(16519, 'PARAMASIVAN.P', '6', '8870632372', '', 'paramasivamperiyasamy1@gmail.com', '2003-04-12', 20, '2', '2', 'PERIYASAMY', 'Sample sales business', 75000.00, 2, 0.00, 17000.00, 'Tenkasi district', 'Porur', '2402030008', '1', '1', 'upload_files/candidate_tracker/323643948_PARAMASIVAN RESUME.pdf', NULL, '1', '2024-02-05', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-03 06:56:05', 104, '2024-02-17 10:52:44', 0, NULL, 1),
(16520, 'Sushma', '11', '9677076480', '', 'sushma.official94@gmail.com', '1994-09-18', 29, '6', '1', 'Avinash', 'iT', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2402050001', '', '1', 'upload_files/candidate_tracker/41048841371_SUSHMA.pdf', NULL, '1', '2024-02-05', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 04:04:18', 1, '2024-02-05 04:07:55', 0, NULL, 1),
(16521, 'Lokesh Kanna O', '13', '9445119119', '9566604946', 'lokesho.kanna@gmail.com', '1999-09-01', 24, '3', '2', 'Olly C', 'Retired', 80000.00, 0, 0.00, 400000.00, 'Chengalpattu', 'Chengalpattu', '2402050002', '', '1', 'upload_files/candidate_tracker/32573992189_My Resume.pdf', NULL, '1', '2024-02-05', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 04:19:36', 1, '2024-02-05 04:32:01', 0, NULL, 1),
(16522, 'Praveen Nishanth B', '13', '9150296263', '', 'praveenbcpt@gmail.com', '1999-02-24', 24, '3', '2', 'Babu', 'Teacher', 80000.00, 1, 0.00, 400000.00, 'Chengalpattu', 'Chengalpattu', '2402050003', '', '1', 'upload_files/candidate_tracker/74468816365_Praveen Resume 31012024-1.pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 04:19:53', 110, '2024-02-09 09:59:18', 0, NULL, 1),
(16523, 'Akesh.M', '13', '7339630500', '', 'akeshmothilal126@gmail.com', '0200-12-06', 1823, '6', '2', 'Mothilal.j', 'Farmer', 1000.00, 1, 0.00, 300000.00, 'Thokkalikkadu', 'Chennai', '2402050004', '', '1', 'upload_files/candidate_tracker/41638735975_Akesh_Resume (1).docx', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'rejected', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 04:39:38', 1, '2024-02-05 04:49:32', 0, NULL, 1),
(16524, 'Anushya', '11', '9566001760', '9677001760', 'anushya9826@gmail.com', '1998-02-06', 25, '6', '1', 'Francis Frankfort', 'Operational analyst', 25000.00, 1, 25000.00, 25000.00, 'Triplicane, chennai', 'Triplicane, chennai', '2402050005', '', '2', 'upload_files/candidate_tracker/20098255629_Anushya - Updated resume.pdf', NULL, '1', '2024-02-05', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 04:40:22', 1, '2024-02-05 04:43:10', 0, NULL, 1),
(16525, 'Muthukumar K', '13', '7904094920', '', 'muthukumartechie2003@gmail.com', '2003-07-05', 20, '6', '2', 'Karuppasamy M', 'Cooli', 12000.00, 2, 0.00, 12000.00, 'Sattur', 'Chennai', '2402050006', '', '1', 'upload_files/candidate_tracker/54641974334_Muthu.pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 04:41:17', 1, '2024-02-05 05:02:28', 0, NULL, 1),
(16526, 'dhanushree', '17', '7305241700', '8778447812', 'dhanushree3214@gmail.com', '2001-08-03', 22, '1', '2', 'ramachandhiran', 'self employed', 1.80, 1, 35000.00, 40000.00, 'chennai', 'chennai', '2402050007', '', '2', 'upload_files/candidate_tracker/70010218664_Dhanushree CV 2.pdf', NULL, '1', '2024-02-05', 30, 'p1427', '5', '31', NULL, 0.00, '', '0', NULL, '2', 'candidate for shanmugam.  but candidate expectation is huge for this profile ', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 04:48:47', 1, '2024-02-05 04:57:59', 0, NULL, 1),
(16527, 'B. Sujatha', '17', '9003160150', '8778744926', 'sujatha.kalpana@gmail.com', '1994-06-07', 29, '1', '1', 'Dinesh', 'Salaried', 400000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2402050008', '', '2', 'upload_files/candidate_tracker/74901668114_msword&rendition=1.pdf', NULL, '1', '2024-02-05', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '2', 'Expecting huge package, which will not suite for RM profile and not interested in cold calling', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 04:50:29', 1, '2024-02-05 05:09:16', 0, NULL, 1),
(16528, 'Gopi d', '13', '9384774461', '', 'Gopid1211@gmail.com', '2002-12-11', 21, '3', '2', 'Dharani', 'Carpenter', 7000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2402050009', '', '1', 'upload_files/candidate_tracker/25018762012_gopi d_(1).pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 04:57:31', 1, '2024-02-05 05:00:05', 0, NULL, 1),
(16529, 'Ahamed kuraishi s m', '13', '8111057116', '', 'Ahamedkuraishi7@gmail.com', '2000-08-10', 23, '3', '2', 'Syed Mubarak s h', 'Retired accountant', 25000.00, 1, 0.00, 20000.00, '15, kiblath nagar, Nagore main road, nagore', '20,vedagiri street, mkn road, alandur, chennai', '2402050010', '', '1', 'upload_files/candidate_tracker/58945682076_Ahamed Kuraishi Resume UPDATED.pdf', NULL, '1', '2024-02-05', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:00:05', 1, '2024-02-05 05:04:36', 0, NULL, 1),
(16530, 'Sakthimal c', '13', '7538868294', '', 'sakthimalcivil1999@gmail.com', '1999-11-04', 24, '3', '2', 'Chinna malayan. R', 'Farmer', 16000.00, 1, 0.00, 20000.00, '2/151, South Street, Ellaipatty, Dindigul,624308', 'Ashok pillar, Chennai', '2402050011', '', '1', 'upload_files/candidate_tracker/77229044168_Sakthimal C.docx', NULL, '1', '2024-02-05', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'Rejected', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 05:04:08', 110, '2024-02-09 10:01:13', 0, NULL, 1),
(16531, 'Ram sundar', '13', '9952438863', '7667064227', 'ramsundarmsd02@gmail.com', '2000-11-01', 23, '3', '2', 'Karthikesh', 'Businessman', 25000.00, 1, 0.00, 20000.00, '35 subbiah street, mukkudal , Tirunelveli 627601', 'Vellachery, chennai', '2402050012', '', '1', 'upload_files/candidate_tracker/28991181793_Ramsundar_cv.pdf', NULL, '1', '2024-02-05', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:04:15', 1, '2024-02-05 05:15:19', 0, NULL, 1),
(16532, 'Akash B', '13', '6369617469', '8056945183', 'akash02899@gmail.com', '1999-08-02', 24, '3', '2', 'Boominathan', 'Driver', 30000.00, 1, 25000.00, 27000.00, '-', 'No. 27/9c, Thiruvottiyur, chennai-600019', '2402050013', '', '2', 'upload_files/candidate_tracker/44609563614_DOC-20240121-WA0004..pdf_20240203_152600_0000.pdf', NULL, '1', '2024-02-05', 15, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:13:08', 1, '2024-02-05 05:26:20', 0, NULL, 1),
(16533, 'Swetha.S', '6', '8778121609', '9442252453', 'Swethasoundharajan@gamil.com', '2001-10-31', 22, '2', '2', 'Soundharajan. S', 'Farmer', 20000.00, 1, 0.00, 15000.00, '77,Main Road,Nangudi&(pt),cuddalore(dt)', 'Kumananchavadi,poonamalle,chennai', '2402050014', '1', '1', 'upload_files/candidate_tracker/88039510032_S swetha .pdf', NULL, '1', '2024-02-05', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is not interested for voice process and distance issues', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-05 05:17:44', 104, '2024-02-06 01:19:46', 0, NULL, 1),
(16534, 'Chandraprakash Iyyappan', '2', '7904966187', '7904125101', 'chandraprakashi2023@gmail.com', '2001-09-05', 22, '3', '2', 'Iyyappan', 'Rice Mill worker', 15000.00, 1, 0.00, 30000.00, 'Salem', 'Chennai', '2402050015', '', '1', 'upload_files/candidate_tracker/50990143071_Chandraprakash-Iyyappan.pdf', NULL, '1', '2024-02-05', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:18:01', 1, '2024-02-05 05:21:56', 0, NULL, 1),
(16535, 'Dhurgadevi S', '13', '6384882577', '6384841335', 'dhurgadevisiva99@gmail.com', '1999-07-06', 24, '3', '2', 'M.Siva', 'Former', 20000.00, 2, 0.00, 12000.00, 'Vadakarai (Cuddalore Dt)', 'Velachery', '2402050016', '', '1', 'upload_files/candidate_tracker/3070997210_DD Resume.pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:21:29', 1, '2024-02-05 05:36:14', 0, NULL, 1),
(16536, 'Vijithra s', '6', '9363542110', '9344768059', 'Vijiselvan2001@gmail.com', '2001-04-11', 22, '2', '2', 'Sengathirselvan', 'Farmer', 18000.00, 1, 0.00, 16000.00, 'Ariyalur(dt)', 'Poondhamalli,chennai', '2402050017', '1', '1', 'upload_files/candidate_tracker/81891424509_vijithra.pdf', NULL, '1', '2024-02-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-05 05:23:17', 104, '2024-02-06 01:29:57', 0, NULL, 1),
(16537, 'Tamilarasu S S', '13', '9030330811', '', 'sstamilarasan07@gmail.com', '2001-07-10', 22, '3', '2', 'S k Selvamani', 'Weaving', 20000.00, 1, 0.00, 200000.00, 'Nagari', 'Chennai', '2402050018', '', '1', 'upload_files/candidate_tracker/7752725100_RESUME 1-7.pdf', NULL, '1', '2024-02-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '6', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 05:23:48', 110, '2024-02-05 05:04:53', 0, NULL, 1),
(16538, 'Rupathanya', '13', '7339644751', '7598704010', 'arupathanya@gmail.com', '2002-04-27', 21, '3', '2', 'Arumugam', 'Mason', 150000.00, 2, 0.00, 200000.00, 'Pudhucherry', 'Chennai', '2402050019', '', '1', 'upload_files/candidate_tracker/78626774897_RUPATHANYA\'s Resume (2).pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:24:05', 1, '2024-02-05 05:27:45', 0, NULL, 1),
(16539, 'Naveen raj', '13', '9360715122', '', 'naveensky02@gmail.com', '2001-02-07', 22, '3', '2', 'Elango', 'Business man', 15000.00, 1, 0.00, 200000.00, 'No:21/41 Durga devi nagar tondiarpet', 'No:21/41Durga devi nagar tondiarpet', '2402050020', '', '1', 'upload_files/candidate_tracker/53953399769_NAVEENRAJ E.pdf', NULL, '1', '2024-02-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 05:24:06', 110, '2024-02-05 04:55:43', 0, NULL, 1),
(16540, 'A Amaran', '13', '9655653018', '', 'amarankumar111@gmail.com', '1999-07-20', 24, '3', '2', 'A Amutha', 'Farmer', 20000.00, 1, 240000.00, 240000.00, 'Tiruvannamalai', 'Chennai', '2402050021', '', '2', 'upload_files/candidate_tracker/53278618933_Amaran_SoftwareEngineer_Resume.pdf', NULL, '1', '2024-02-05', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:25:04', 1, '2024-02-05 05:34:45', 0, NULL, 1),
(16541, '', '0', '9014373847', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402050022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-05 05:25:22', 0, NULL, 0, NULL, 1),
(16542, 'Muthu Krishnan R', '31', '8946021225', '', 'rmkrishnan2812@gmail.com', '1999-12-28', 24, '1', '2', 'Ramalingam', 'Nil', 100000.00, 0, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2402050023', '', '1', 'upload_files/candidate_tracker/70222859565_muthukrishnan_updated_profile.pdf-1.pdf', NULL, '1', '2024-02-05', 0, 'Sathish', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:29:39', 1, '2024-02-05 05:51:34', 0, NULL, 1),
(16543, 'ARUNKUMAR A', '13', '9884680656', '', 'arunkumar092000@gmail.com', '2000-09-09', 23, '3', '2', 'ARUMUGAM K', 'Provision Store', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2402050024', '', '1', 'upload_files/candidate_tracker/71805192023_Arunkumar Resume.pdf', NULL, '1', '2024-02-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:29:50', 1, '2024-02-05 05:34:07', 0, NULL, 1),
(16544, '', '0', '9600348765', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402050025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-05 05:30:05', 0, NULL, 0, NULL, 1),
(16545, 'Sanchala Pownraja', '11', '9941161348', '', 'sanjukp3121@gmail.com', '2001-12-03', 0, '6', '2', 'Pownraja', 'Sales executive', 15000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2402050026', '', '1', 'upload_files/candidate_tracker/82277945237_Sanchala__11.pdf', NULL, '1', '2024-02-05', 0, '', '3', '59', '2024-02-06', 162000.00, '', '5', '1970-01-01', '2', 'Selected for MF Role in Staff Role PT only', '6', '2', '4', '1', '8', '', '2', '1970-01-01', '1', '4', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 05:30:33', 60, '2024-02-05 06:30:56', 0, NULL, 1),
(16546, 'Satish Nalli', '23', '9014374847', '9666268977', 'satishchinni076@gmail.com', '1996-03-06', 27, '3', '2', 'Vijaya Kumari', 'Nurse', 100000.00, 1, 0.00, 200000.00, 'Bhimavaram', 'Chennai', '2402050027', '', '1', 'upload_files/candidate_tracker/38209624514_SatishResume.docx', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'rejected', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:31:11', 1, '2024-02-05 06:02:50', 0, NULL, 1),
(16547, 'roopha', '6', '9342384430', '8925417572', 'roophasrii@gmail.com', '2001-09-20', 22, '1', '2', 'manjuka', 'chennai', 50000.00, 1, 25.00, 20000.00, 'aminjikarai collectorate colony chennai', 'aminjikarai collectorate colony chennai', '2402050028', '', '2', 'upload_files/candidate_tracker/35437392689_Roopha.B (1).pdf', NULL, '1', '2024-02-05', 0, 'p1427', '3', '59', '2024-02-06', 216000.00, '', NULL, '2026-02-11', '2', 'Selected for Syed Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 05:39:50', 60, '2024-02-05 07:18:08', 0, NULL, 1),
(16548, '', '0', '7550125403', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402050029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-05 05:40:56', 0, NULL, 0, NULL, 1),
(16549, 'Tamilselvan Selvaraj', '2', '9715465762', '', 'tamillee0406@gmail.com', '2009-02-05', 0, '3', '2', 'Selvaraj', 'Hair stylist', 20000.00, 4, 0.00, 300000.00, 'Thanjavur', 'Chennai', '2402050030', '', '1', 'upload_files/candidate_tracker/48223514262_Tamilselvan resume (1).docx', NULL, '1', '2024-02-05', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:42:54', 1, '2024-02-05 05:46:41', 0, NULL, 1),
(16550, 'Rajarajeswaran', '27', '7397138213', '9524887690', 'rajeleo676@gmail.com', '1996-11-05', 27, '6', '2', 'Rajendran', 'Former', 5000.00, 1, 0.00, 1.50, 'Cuddalore', 'Chennai', '2402050031', '', '1', 'upload_files/candidate_tracker/40497592995_Rajeswaran Resume 29-1 UD.pdf', NULL, '1', '2024-02-05', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:43:41', 1, '2024-02-05 06:00:42', 0, NULL, 1),
(16551, 'Krishnamoorthi S', '13', '8248026633', '', 'krishnamoorthyj88@gmail.com', '2001-06-01', 22, '3', '2', 'Siva', 'Former', 10000.00, 1, 0.00, 200000.00, 'Villupuram', 'Chennai', '2402050032', '', '1', 'upload_files/candidate_tracker/69857462617_krishna MCA resume.pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'rejected\n', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:45:18', 1, '2024-02-05 05:54:59', 0, NULL, 1),
(16552, 'Sriram P', '23', '9791680294', '', 'Sriram44287@gmail.com', '2000-08-30', 23, '3', '2', 'pandiyan', 'Farmer', 50000.00, 1, 0.00, 20000.00, 'Tamil nadu', 'Bharathi nagar,chrome,chennai', '2402050033', '', '1', 'upload_files/candidate_tracker/97494152814_SRIRAM P.pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'rejected\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:45:23', 1, '2024-02-05 05:56:50', 0, NULL, 1),
(16553, 'M.soundarya', '13', '9600348764', '', 'Soundaryasri25@gmail.com', '1998-06-25', 25, '3', '1', 'R.sivaramakrishnan', 'Hr administrative', 20000.00, 2, 0.00, 10000.00, 'Velachery,chennai', 'Velachery,chennai', '2402050034', '', '1', 'upload_files/candidate_tracker/36091271034_SoundaryaResume.pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:45:52', 1, '2024-02-05 05:52:55', 0, NULL, 1),
(16554, 'Gunaseelan. E', '13', '8608379626', '', 'Gunaclan333@gmail.com', '2001-03-04', 22, '3', '2', 'Elumalai G', 'Daily wages', 12000.00, 1, 0.00, 20000.00, 'No 6, 12th Krishan Nagar, Nerkundrum, Chennai -107', 'No 6, 12th Krishan Nagar, Nerkundrum, Chennai -107', '2402050035', '', '1', 'upload_files/candidate_tracker/57193430031_gunaseelan.pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:45:59', 1, '2024-02-05 06:15:16', 0, NULL, 1),
(16555, 'sathya k', '11', '9445181287', '', 'sathya.30.jbs@gmail.com', '2002-09-30', 21, '6', '2', 'kannan g', 'student', 50000.00, 0, 0.00, 15000.00, 'salem', 'thandalam chennai', '2402050036', '', '1', 'upload_files/candidate_tracker/51614474131_SATHYA K certified resume (2).pdf', NULL, '1', '2024-02-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:46:03', 1, '2024-02-05 05:53:54', 0, NULL, 1),
(16556, 'Sriram', '13', '6369286367', '', 'ssriramvasu@gmail.com', '2002-07-31', 21, '6', '2', 'Vasu', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Chennai', '2402050037', '', '1', 'upload_files/candidate_tracker/13321955783_Minimalist Modern Professional CV Resume_20230927_204413_0000.pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:46:25', 1, '2024-02-05 05:51:04', 0, NULL, 1),
(16557, 'Ganesh Marish', '13', '6383075799', '9659398166', 'smarish2003@gmail.com', '2003-03-25', 20, '3', '2', 'Surya', 'Plumber', 20000.00, 0, 0.00, 300000.00, 'Tirunelveli', 'Chennai', '2402050038', '', '1', 'upload_files/candidate_tracker/78849413010_resFsD.pdf', NULL, '1', '2024-02-05', 0, '', '3', '59', '2024-02-15', 120000.00, '', '3', '2025-03-12', '1', 'Selected for IT Backend / PHP MySQl', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 05:52:55', 60, '2024-02-15 10:19:09', 0, NULL, 1),
(16558, 'Gokulakannan. M', '13', '7397011912', '9790511802', 'mgokulkannan546@gmail.com', '2001-02-23', 22, '3', '2', 'Manigandan', 'Nill', 8000.00, 1, 0.00, 20000.00, 'Guindy, Chennai', 'Guindy, Chennai', '2402050039', '', '1', 'upload_files/candidate_tracker/74905807658_Gokulakannan.M.pdf', NULL, '1', '2024-02-05', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 05:57:26', 1, '2024-02-05 06:03:42', 0, NULL, 1),
(16559, '', '0', '9345554818', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402050040', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-05 06:00:28', 0, NULL, 0, NULL, 1),
(16560, 'Rajesh', '2', '7558148310', '', 'elangorajesh2468@gmail.com', '2001-02-03', 23, '3', '2', 'Parents', 'Farmer', 24000.00, 1, 0.00, 200000.00, 'Kumbakonam', 'Chennai', '2402050041', '', '1', 'upload_files/candidate_tracker/44930143922_Rajesh-Resume[1].... word (1).pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'rejected\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:02:03', 1, '2024-02-05 06:06:58', 0, NULL, 1),
(16561, 'Kishore Kumar', '13', '8838253891', '', 'Kishorevjsk@gmail.com', '2002-06-28', 21, '3', '2', 'Jayakumar', 'Plumber', 20000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2402050042', '', '1', 'upload_files/candidate_tracker/11876310020_kishoreresume .pdf', NULL, '1', '2024-02-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:02:58', 1, '2024-02-05 06:25:53', 0, NULL, 1),
(16562, 'DURGHA DEVI B S', '6', '9789026334', '9840651114', 'durghadevi06@gmail.com', '2003-07-19', 20, '6', '2', 'G R BALAJI', 'DAILY WAGES', 15000.00, 1, 0.00, 18000.00, 'CITY', 'CITY', '2402050043', '', '1', 'upload_files/candidate_tracker/90823965204_Resume durgha.pdf', NULL, '1', '2024-02-05', 0, '', '3', '59', '2024-02-07', 183000.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team in Consultant  Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 06:11:53', 60, '2024-02-06 07:16:52', 0, NULL, 1),
(16563, 'arumugam', '31', '9942732282', '9003076697', 'arumugamofficials@gmail.com', '2000-09-29', 23, '3', '2', 'govindan a', 'auto driver', 25000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2402050044', '', '1', 'upload_files/candidate_tracker/28459582359_Resume Jan24.pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'REJECTED', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:12:39', 1, '2024-02-05 06:15:53', 0, NULL, 1),
(16564, '', '0', '9629244798', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402050045', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-05 06:14:33', 0, NULL, 0, NULL, 1),
(16565, 'Nabin Adhikari', '11', '9361772079', '9841847817', 'nnobin625@gmail.com', '2001-01-20', 23, '6', '2', 'Swapan Adhikari', 'Welder', 25000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2402050046', '', '1', 'upload_files/candidate_tracker/15897226471_nabin.docx', NULL, '1', '2024-02-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:14:41', 1, '2024-02-05 06:17:58', 0, NULL, 1),
(16566, 'RAJU M', '13', '9629113839', '8667233993', 'rajutamilarasan1@gmail.com', '2001-02-08', 22, '3', '2', 'muthukumar', 'mechanic', 30000.00, 1, 0.00, 2.20, 'Mayiladuthurai', 'chennai', '2402050047', '', '1', 'upload_files/candidate_tracker/4029614173_RAJU M - RESUME.pdf', NULL, '1', '2024-02-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 06:14:42', 110, '2024-02-05 05:02:37', 0, NULL, 1),
(16567, 'ARUNKUMAR', '13', '9150509962', '', 'sarunkumar1134@gmail.com', '2001-06-09', 22, '3', '2', 'Senthilkumar', 'Daily wager', 150000.00, 1, 0.00, 2.20, 'Krishnagiri', 'Chennai', '2402050048', '', '1', 'upload_files/candidate_tracker/78667690461_ARUNKUMAR S.pdf', NULL, '1', '2024-02-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:15:35', 1, '2024-02-05 06:18:29', 0, NULL, 1),
(16568, 'Manikandan', '13', '6374438085', '', 'ejmanikandan2002@gmail.com', '2002-06-21', 21, '3', '2', 'Elumalai', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Kallakurichi', 'Chennai', '2402050049', '', '1', 'upload_files/candidate_tracker/4871588547_mani (1)_compressed.pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:16:15', 1, '2024-02-05 06:20:05', 0, NULL, 1),
(16569, 'Ashok kumar V', '13', '7708632605', '7094260514', 'ashok770py@gmail.com', '2003-02-20', 20, '3', '2', 'Chitra V', 'Kooli', 8000.00, 2, 0.00, 20000.00, 'Kallakuruchi', 'Chennai', '2402050050', '', '1', 'upload_files/candidate_tracker/87388031091_Ashok_Resume.pdf', NULL, '1', '2024-02-05', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:16:27', 1, '2024-02-05 06:21:08', 0, NULL, 1),
(16570, 'Paramasivam', '6', '8870632371', '', 'paramasivamperiyasamy1@gmail.com', '2003-04-12', 20, '3', '2', 'Pariyasamy', 'Small Business', 75000.00, 0, 0.00, 17000.00, 'Tenkasi', 'Porur', '2402050051', '', '1', 'upload_files/candidate_tracker/92877308887_PARAMASIVAN RESUME_compressed.pdf', NULL, '1', '2024-02-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:19:06', 1, '2024-02-05 06:33:29', 0, NULL, 1),
(16571, 'Ganesh kumar', '13', '9092123294', '9551484790', 'gk884675@gmail.com', '2002-01-26', 22, '3', '2', 'Satheesh', 'Daily wages', 15000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2402050052', '', '1', 'upload_files/candidate_tracker/87435069595_Ganesh kumar resume-fin (1)-2.pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:27:36', 1, '2024-02-05 06:32:34', 0, NULL, 1),
(16572, 'Ari Aran', '5', '7010779766', '9488428034', 'ariaran4899@gmail.com', '1999-04-08', 0, '1', '2', 'Parvathi', 'House wife', 15.00, 1, 17.00, 23.00, 'Tirunelveli', 'Porur, Chennai', '2402050053', '', '2', 'upload_files/candidate_tracker/57121510642_ARi REsume.pdf', NULL, '1', '2024-02-05', 0, 'P1377', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit For Sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 06:28:36', 110, '2024-02-05 02:38:51', 0, NULL, 1),
(16573, 'Lokesh Manoharan', '13', '8056084492', '9840159698', 'lokeshmanoharan00@gmail.com', '2002-03-18', 21, '6', '2', 'Manoharan', 'Mobile mechanic', 8000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2402050054', '', '1', 'upload_files/candidate_tracker/78792802523_UpdatedResume.pdf', NULL, '1', '2024-02-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:30:34', 1, '2024-02-05 06:34:10', 0, NULL, 1),
(16574, '', '0', '7092891845', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402050055', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-05 06:30:51', 0, NULL, 0, NULL, 1),
(16575, 'M.Kalaiyarasan', '13', '9514821902', '', 'm.kalaiyarasangi1619@gmail.com', '2001-03-16', 22, '3', '2', 'S.Muthu', 'Auto Driver', 20000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2402050056', '', '1', 'upload_files/candidate_tracker/71124626751_KalaiCV.pdf', NULL, '1', '2024-02-05', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:30:54', 1, '2024-02-05 06:34:31', 0, NULL, 1),
(16576, 'Vijay Srinivasan', '13', '9080611812', '', 'vijaysrinivasanoffi@gmail.com', '1999-06-02', 24, '3', '2', 'Srinivasan', 'Associate Software Engineer', 10000.00, 2, 420000.00, 650000.00, 'Ranipet', 'Saidapet, Chennai', '2402050057', '', '2', 'upload_files/candidate_tracker/2450674118_Vijay Srinivasan(Resume).pdf', NULL, '1', '2024-02-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:35:25', 1, '2024-02-05 06:39:04', 0, NULL, 1),
(16577, '', '0', '9003889093', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402050058', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-05 06:37:03', 0, NULL, 0, NULL, 1),
(16578, 'sathish p', '2', '7339143258', '6382977343', 'sathishbe465@gmail.com', '2001-06-20', 22, '3', '2', 'Pachaiyappan', 'Farmer', 10000.00, 2, 0.00, 2.50, 'Chennai', 'Chennai', '2402050059', '', '1', 'upload_files/candidate_tracker/91230206863_sathish .pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'REJECTED', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:42:44', 1, '2024-02-05 08:00:06', 0, NULL, 1),
(16579, 'Tamilan M', '13', '9025729616', '8870662618', 'tamilanmurugesan22@gmail.com', '2002-09-22', 21, '3', '2', 'Murugesan S', 'Farmer', 15000.00, 3, 0.00, 350000.00, 'Karhirpatty, ambathurai(po),athoor (tk), Dindigul', 'Chennai', '2402050060', '', '1', 'upload_files/candidate_tracker/31448223959_Tamilan_resume (2).pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 06:54:12', 110, '2024-02-09 09:58:43', 0, NULL, 1),
(16580, 'M.hari Krishnan', '6', '8124018464', '6380701072', 'mharikrishnan242@gmail.com', '2001-02-24', 22, '2', '2', 'S.MURUGAPANDI', 'Farmer', 18000.00, 1, 0.00, 350000.00, 'theni', 'Vadapalani', '2402050061', '1', '1', 'upload_files/candidate_tracker/17215613494_M.hari krishnan.pdf', NULL, '1', '2024-05-30', 0, '', '3', '59', '2024-06-11', 192000.00, '', '1', '1970-01-01', '2', 'Selected for RE Role Need to Analyse in 7 days training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', 'P1066', '5151', '2024-06-11', 1, '2024-02-05 06:54:14', 130, '2024-06-20 03:48:40', 0, NULL, 1),
(16581, 'M Mohamed yasin', '13', '9361104473', '', 'mohamedyasin25808@gmail.com', '2002-10-17', 21, '3', '2', 'S Mohamed meeran', 'Field officer', 20000.00, 1, 0.00, 3.00, 'Dindigul', 'Chennai', '2402050062', '', '1', 'upload_files/candidate_tracker/83120217646_Mohamed yasin_resume.pdf', NULL, '1', '2024-02-05', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:54:17', 1, '2024-02-05 07:00:22', 0, NULL, 1),
(16582, 'Ram kumar', '2', '8428097971', '9791057970', 'Ramkumarad023@gmail.xom', '2000-09-02', 23, '3', '2', 'E Dayalan', 'Teacher', 3000000.00, 2, 3000000.00, 4000000.00, 'Porur', 'Porur', '2402050063', '', '2', 'upload_files/candidate_tracker/36376937193_Resume_Resume_ramkumar_Format1 (2).pdf', NULL, '1', '2024-02-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 06:59:36', 1, '2024-02-05 07:19:54', 0, NULL, 1),
(16583, 'NAVEEN KUMAR K', '6', '6381781062', '7401188693', 'naveenkumarnj99@gmail.com', '1999-09-11', 24, '6', '2', 'KUMAR J', 'DAILY WAGES', 15000.00, 1, 0.00, 18000.00, 'Minjur', 'Minjur', '2402050064', '', '1', 'upload_files/candidate_tracker/64115757316_NAVEEN KUMAR K RESUME UPDATED (1).pdf', NULL, '1', '2024-02-05', 0, '', '3', '59', '2024-02-07', 204000.00, '', '5', '1970-01-01', '2', 'Selected fr Babu Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 07:00:16', 60, '2024-02-07 10:20:18', 0, NULL, 1),
(16584, 'Naveen cC', '11', '9840057275', '7373947275', 'naveenaruncc1990@gmail.com', '1999-06-26', 24, '3', '2', 'Chandra C', 'IT recruiter', 20000.00, 1, 300000.00, 400000.00, 'Namakkal', 'Chennai', '2402050065', '', '2', 'upload_files/candidate_tracker/19800309595_Resume.pdf', NULL, '1', '2024-02-05', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 07:09:14', 1, '2024-02-05 07:13:13', 0, NULL, 1),
(16585, 'RAGUL', '13', '9360434869', '', '16.ragul.p@gmail.com', '2002-08-17', 21, '3', '2', 'Pandiyan', 'Farmer', 72000.00, 0, 0.00, 20000.00, 'Mannargudi', 'Chennai', '2402050066', '', '1', 'upload_files/candidate_tracker/76527563278_Ragul_Python_Fullstack_resume.pdf', NULL, '1', '2024-02-05', 0, '', '3', '59', '2024-03-11', 100000.00, '', '1', '1970-01-01', '1', 'Selected for Node JS interviewed by Sathish and Gokul and finalised', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 07:18:10', 60, '2024-03-11 09:57:18', 0, NULL, 1),
(16586, 'Gowsalya', '13', '6383235668', '', 'gowsalyaramachandran05@gmail.com', '2001-09-05', 22, '3', '2', 'Ramachandran', 'Conductor', 20000.00, 1, 0.00, 200000.00, 'Pudukkottai', 'Chennai', '2402050067', '', '1', 'upload_files/candidate_tracker/55220126784_GOWSALYA(05).pdf', NULL, '1', '2024-02-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 07:20:21', 110, '2024-02-05 05:00:44', 0, NULL, 1),
(16587, 'Iyyappan', '13', '8072675469', '9585156581', 'iyappankughan765@gmail.com', '2001-03-23', 22, '3', '2', 'Murugan', 'Farmer', 30000.00, 0, 0.00, 18000.00, 'Silattur, Pudukkottai Dt', 'Guindy', '2402050068', '', '1', 'upload_files/candidate_tracker/82344814565_Iyappan_java_fd.docx', NULL, '1', '2024-02-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 07:20:48', 110, '2024-02-05 05:01:17', 0, NULL, 1),
(16588, 'Sivadharshan', '13', '9965894789', '9498362684', 'sivatharshan72@gmail.com', '2001-05-08', 22, '3', '2', 'Elangovan', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Pinnavasal ,peravurani', 'Chennai', '2402050069', '', '1', 'upload_files/candidate_tracker/61339357624_resunw dharsh.pdf', NULL, '1', '2024-02-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 07:21:04', 110, '2024-02-05 05:00:16', 0, NULL, 1),
(16589, 'Praveen Raj R', '13', '7397437042', '9445788023', 'praveenrajr1999@gmail.com', '1999-04-26', 24, '3', '2', 'Raja sekar C', 'Ration shop', 24000.00, 1, 0.00, 15000.00, 'Ambattur', 'Chennai', '2402050070', '', '1', 'upload_files/candidate_tracker/51492290966_Resume[1].docx praveen (1).pdf', NULL, '1', '2024-02-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 07:30:48', 110, '2024-02-05 05:02:13', 0, NULL, 1),
(16590, 'Rajesh S', '2', '8883521656', '', 'solomonrajesh123@gmail.com', '2001-10-06', 22, '6', '2', 'Sagayaraj S', 'Welder', 17000.00, 1, 0.00, 300000.00, 'Airport, Tiruchirappalli', 'Urappakkam, Chennai', '2402050071', '', '1', 'upload_files/candidate_tracker/71630558676_Rajesh_Resume_2024.pdf', NULL, '1', '2024-02-05', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 07:31:50', 1, '2024-02-05 07:36:32', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16591, 'Kishore kanna D', '13', '7695964149', '', 'Kk1378889@gmail.com', '2003-04-24', 20, '3', '2', 'Deivasigamani', 'Media', 15000.00, 1, 0.00, 15000.00, 'Chengalpat', 'Chennai', '2402050072', '', '1', 'upload_files/candidate_tracker/54086539162_KISHOREKANNA_BSC_2023_BESANT TECHNOLOGIES__VEL.pdf', NULL, '1', '2024-02-05', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 07:38:25', 1, '2024-02-05 07:48:38', 0, NULL, 1),
(16592, 'BOOPESHKUMAR M', '13', '9344804723', '', 'Boopeshm31@gmail.com', '2002-08-31', 21, '3', '2', 'MURUGAVEL N', 'PACKER', 10000.00, 1, 0.00, 20000.00, 'Thiruvannamalai', 'Tiruppur', '2402050073', '', '1', 'upload_files/candidate_tracker/88681582081_DocScanner Feb 5, 2024 1-19 PM.pdf', NULL, '1', '2024-02-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 07:43:59', 110, '2024-02-05 05:05:23', 0, NULL, 1),
(16593, 'Tamil praban', '31', '9344062195', '9344062195', 'b.tamilpraban@gmail.com', '2023-11-14', 0, '3', '2', 'Boomi', 'Farmer', 20000.00, 1, 15000.00, 20000.00, 'Ramanthapuram', 'Ramanthapuram', '2402050074', '', '1', 'upload_files/candidate_tracker/72386090897_Sai Ram.pdf', NULL, '1', '2024-02-05', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '4', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 07:53:07', 110, '2024-02-05 02:42:20', 0, NULL, 1),
(16594, 'Mugilan', '11', '8489248168', '', 'mugilankingston@gmail.com', '2001-09-15', 22, '6', '2', 'Annadhasan', 'General Manager', 70000.00, 1, 0.00, 50000.00, '32/C1 Block DCW Quarters, Sahupuram, tuticorin', 'ZOLO ASCOT, VADAPALANI', '2402050075', '', '1', 'upload_files/candidate_tracker/76640323912_CURRICULAM VITAE.pdf', NULL, '1', '2024-02-05', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 08:46:39', 1, '2024-02-05 09:23:05', 0, NULL, 1),
(16595, 'Mohamed wasim', '31', '7867834998', '7418656515', 'mohamedwasim7418@gmail.com', '2002-03-15', 21, '3', '2', 'Jahir husaai', 'Sales man', 15000.00, 0, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2402050076', '', '1', 'upload_files/candidate_tracker/44549385509_wasim_Resume.pdf', NULL, '1', '2024-02-05', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'REJECTED', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 09:45:17', 110, '2024-02-05 03:43:35', 0, NULL, 1),
(16596, 'Mohamed Sherif .u', '13', '9790376811', '9487166501', 'sherif07092002@gmail.com', '2002-09-07', 21, '3', '2', 'Rabitha. U', 'Labour', 13000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2402050077', '', '1', 'upload_files/candidate_tracker/72826807973_Mohamed sherif-CV 2_1706167380272_mohamed sherif.pdf', NULL, '1', '2024-02-05', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 09:45:42', 1, '2024-02-05 10:01:33', 0, NULL, 1),
(16597, 'Janish J', '13', '6369111956', '7598434943', 'janishj57@gmail.com', '2000-03-09', 23, '3', '2', 'James R', 'Mason', 18000.00, 1, 0.00, 20000.00, 'Kasi Theatre', 'Kasi Theatre', '2402050078', '', '1', 'upload_files/candidate_tracker/43773855413_JANISH-Jresume.pdf', NULL, '1', '2024-02-05', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 09:52:43', 1, '2024-02-05 10:04:26', 0, NULL, 1),
(16598, 'Rupesh V', '11', '7448737857', '', 'vprupesh@gmail.com', '1999-05-27', 24, '3', '2', 'Viswanathan C', 'MTC Conductor', 360000.00, 0, 22000.00, 22000.00, 'Chennai', 'Chennai', '2402050079', '', '2', 'upload_files/candidate_tracker/75013401568_RUPESH RESUME (2).pdf', NULL, '1', '2024-02-05', 8, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-05 10:11:39', 1, '2024-02-05 10:16:21', 0, NULL, 1),
(16599, 'Arun Kumar', '23', '7550115192', '9150955960', 'Ak0234168@gmail.com', '2001-02-02', 23, '3', '2', 'M Govindan', 'Corporation Worker', 18000.00, 2, 0.00, 300000.00, 'Ambattur, Chennai, India', 'Ambattur, Chennai, India', '2402050080', '', '1', 'upload_files/candidate_tracker/91393754845_CV.pdf', NULL, '1', '2024-02-05', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-05 10:45:32', 110, '2024-02-05 05:03:12', 0, NULL, 1),
(16600, 'Iniyan. p', '23', '7397386950', '8056149034', 'iniyanmib10@gmail.com', '1999-02-10', 24, '3', '2', 'Palani. M', 'Police', 70000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2402060001', '', '1', 'upload_files/candidate_tracker/88501051062_INIYAN RESUME NEW 01 (1) (1).pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 04:14:15', 1, '2024-02-06 04:19:09', 0, NULL, 1),
(16601, 'Priadharshini', '11', '9962790241', '9626938488', 'Priyadharshiniofficial99@gmail.com', '1999-12-08', 24, '6', '2', 'Chander. K', 'Finance', 30000.00, 2, 0.00, 2.50, 'Tiruvannamalai', 'Salem', '2402060002', '', '1', 'upload_files/candidate_tracker/2853381186_Priyadharshini.C Resume.pdf', NULL, '1', '2024-02-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for internship yet to complete her exams if she comes back  let us try', '6', '1', '', '1', '8', '', '2', '2024-02-06', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 04:15:46', 110, '2024-02-06 10:27:09', 0, NULL, 1),
(16602, 'wagishwar', '11', '9840916579', '8681090307', 'wagish18@gmail.com', '2001-06-18', 22, '6', '2', 'radha krishnan', 'self employee', 50000.00, 1, 0.00, 4.00, 'chennai', 'chennai', '2402060003', '', '1', 'upload_files/candidate_tracker/48590807957_Wagishwar Resume .pdf', NULL, '1', '2024-02-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Internship Yet To Complete Her Exams If She Comes Back  Let Us Try', '6', '1', '0', '1', '8', '0', '2', '2024-02-08', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 04:38:21', 1, '2024-02-06 04:42:48', 0, NULL, 1),
(16603, 'Nandha kumar', '27', '9445524423', '', 'Nandha3242@gmail.com', '2000-12-23', 23, '6', '2', 'Vannimuthu A', 'Masion', 400000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2402060004', '', '1', 'upload_files/candidate_tracker/79037188502_Nandha kumar.docx', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:05:19', 1, '2024-02-06 05:30:22', 0, NULL, 1),
(16604, 'Keerthivasan A', '2', '8124914714', '7904924264', 'keerthivasan2kk1@gmail.com', '2001-04-02', 22, '3', '2', 'Kalavathy', 'Housewife', 300000.00, 1, 0.00, 300000.00, 'Kancheepuram', 'Kancheepuram', '2402060005', '', '1', 'upload_files/candidate_tracker/45414093813_KEERTHIVASAN_ResumeA-1-2.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:05:51', 1, '2024-02-06 05:08:08', 0, NULL, 1),
(16605, 'Rakesh Kumar Pala', '13', '7978874345', '', 'rakeshkumarpalo7575@gmail.com', '2000-01-02', 24, '6', '2', 'Vhikari Pala', 'Farmer', 300000.00, 6, 0.00, 300000.00, 'chennai', 'chennai', '2402060006', '', '1', 'upload_files/candidate_tracker/73080702015_Rakesh_Resume_2023-4.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:06:21', 1, '2024-02-06 05:10:41', 0, NULL, 1),
(16606, 'Uvanshankar A', '13', '9361831581', '7604815250', 'uvanshankaroct03@gmail.com', '2000-10-03', 23, '6', '2', 'Parent', 'Framar', 10000.00, 2, 0.00, 300000.00, 'Chengalpet', 'Chennai', '2402060007', '', '1', 'upload_files/candidate_tracker/114624845_Updated resume.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:06:51', 1, '2024-02-06 05:10:28', 0, NULL, 1),
(16607, 'Vignesh A', '13', '7448536701', '', 'avigneshkumar111@gmail.com', '2000-11-13', 23, '3', '2', 'Anandha kumar', 'Labour', 15000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2402060008', '', '1', 'upload_files/candidate_tracker/72033394161_A.Vignesh-B.E(CSE)-fresher.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:07:46', 1, '2024-02-06 05:11:06', 0, NULL, 1),
(16608, 'M.Kumaran', '13', '8925171271', '8925045746', 'mkumaran231@gmail.com', '2000-03-04', 23, '3', '2', 'Munuswamy k', 'Daily labour', 16.00, 2, 0.00, 15000.00, 'Avadi', 'Avadi', '2402060009', '', '1', 'upload_files/candidate_tracker/3786772664_Resume.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:08:38', 1, '2024-02-06 05:37:46', 0, NULL, 1),
(16609, 'Pooja Sathya', '17', '9361107129', '9080106558', 'poojabaalajeekumar@gmail.com', '2000-06-11', 23, '2', '1', 'Sathya', 'Working', 35000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2402060010', '1', '1', 'upload_files/candidate_tracker/45621987509_Pooja S (3).pdf', NULL, '1', '2024-02-06', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-06 05:08:58', 110, '2024-02-06 04:29:16', 0, NULL, 1),
(16610, 'Srinath A', '13', '9500923415', '', 'sri2508.ak@gmail.com', '2003-08-25', 20, '6', '2', 'Kalaiselvi S', 'Private School Teacher', 15000.00, 1, 0.00, 240000.00, 'thiruvannamalai', 'Chrompet', '2402060011', '', '1', 'upload_files/candidate_tracker/20658926726_Sri Resume_20240205_165951_0000.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:10:32', 1, '2024-02-06 05:19:08', 0, NULL, 1),
(16611, 'Manmohan', '27', '8939618227', '', 'manmohan05012@gmail.com', '2002-01-05', 22, '6', '2', 'Anbuselvi', 'Teacher', 60000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2402060012', '', '1', 'upload_files/candidate_tracker/24252251924_ResumeDOC-20240206-WA0002.docx', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:12:35', 1, '2024-02-06 05:23:05', 0, NULL, 1),
(16612, 'P S Thaseen Ahmed', '13', '7010844649', '', 'thaseenahmed08@gmail.com', '2002-08-08', 21, '3', '2', 'P S Siraj Ahmed', 'Business', 25000.00, 2, 0.00, 19000.00, 'Ambur', 'Ambur', '2402060013', '', '1', 'upload_files/candidate_tracker/23807068825_Thaseen', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 05:21:05', 110, '2024-02-06 05:15:03', 0, NULL, 1),
(16613, 'R.kumaraguru', '31', '9952465358', '', 'Kumaraguru1323@gmail.com', '2003-02-13', 20, '3', '2', 'Ramachandran', 'Bakery worker', 15000.00, 1, 0.00, 2.00, 'Nagapattinam', 'CHENNAI', '2402060014', '', '1', 'upload_files/candidate_tracker/80777606619_js resume.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:23:03', 1, '2024-02-06 05:31:44', 0, NULL, 1),
(16614, 'Mukesh k', '2', '7092471750', '', 'mukeshrated@gmail.com', '2002-08-09', 21, '3', '2', 'Kabali B', 'Fisherman', 72000.00, 1, 0.00, 4.00, 'Chennai', 'Chennai', '2402060015', '', '1', 'upload_files/candidate_tracker/29218134412_Mukesh_K_Resume.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:23:04', 1, '2024-02-06 05:28:26', 0, NULL, 1),
(16615, 'Ashwin S', '31', '8939366889', '9840370400', 'ashwinashwin9993@gmail.com', '2003-04-05', 20, '3', '2', 'Shankar', 'Auto driver', 20000.00, 1, 0.00, 150000.00, 'Chennai', 'Chennai', '2402060016', '', '1', 'upload_files/candidate_tracker/91024189515_Ashwin B.com.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:26:34', 1, '2024-02-06 05:43:15', 0, NULL, 1),
(16616, 'Jayaprakash', '13', '8939335936', '', 'jayaprakashvadivel729@gmail.com', '2001-12-18', 22, '3', '2', 'Vadivel', 'Daily wages', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2402060017', '', '1', 'upload_files/candidate_tracker/27103433034_JPresume.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:31:24', 1, '2024-02-06 06:07:00', 0, NULL, 1),
(16617, 'Deiva Kumar V', '13', '7339534736', '', 'deivakumar.v@gmail.com', '1999-04-09', 24, '3', '2', 'Vengadesan', 'Agriculture', 30000.00, 4, 0.00, 2.50, 'Dindigul', 'CHENNAI', '2402060018', '', '1', 'upload_files/candidate_tracker/23078693790_Deiva resume(mca) - Copy.docx', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:32:25', 1, '2024-02-06 06:14:27', 0, NULL, 1),
(16618, 'Sanjay K', '13', '8925230392', '9791111956', 'Sanjaykannan603@gmail.com', '2002-01-20', 22, '3', '2', 'Kannan', 'Business', 20000.00, 1, 0.00, 150000.00, 'Chennai', 'Chennai', '2402060019', '', '1', 'upload_files/candidate_tracker/30068478109_sanjay k BSc cs 2023-2023 .pdf.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:33:26', 1, '2024-02-06 05:59:23', 0, NULL, 1),
(16619, 'Thiyagu', '2', '9003630116', '', 'thatharikthiyagu@gmail.com', '2000-07-11', 23, '6', '2', 'Suresh dev anand', 'Cooli', 10000.00, 1, 0.00, 10000.00, 'Theni', 'Chennai', '2402060020', '', '1', 'upload_files/candidate_tracker/93251289000_THIYAGU resume.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:34:41', 1, '2024-02-06 05:38:58', 0, NULL, 1),
(16620, 'Jothi Basu. R', '13', '8668017399', '8056393906', 'jothibasu4102001@gmail.com', '2001-10-04', 22, '6', '2', 'Ravi chandran. K', 'Conductor', 20000.00, 1, 0.00, 250000.00, 'NEYVELI', 'VELACHERRY', '2402060021', '', '1', 'upload_files/candidate_tracker/7688405545_Jothibasu410.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:34:55', 1, '2024-02-06 05:47:15', 0, NULL, 1),
(16621, 'Solaiammal K', '23', '7558169902', '', 'Solaik4554@gmail.com', '2001-10-05', 22, '3', '2', 'Kala', 'House wife', 20000.00, 0, 0.00, 20000.00, 'Karaikudi', 'CHENNAI', '2402060022', '', '1', 'upload_files/candidate_tracker/79079327122_DOC-20240206-WA0013..pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:36:48', 1, '2024-02-06 05:56:36', 0, NULL, 1),
(16622, 'E.M.DEVAKUMAR', '31', '9943606308', '', 'devaem2602@gmail.com', '2001-02-26', 22, '3', '2', 'E.M.MANI', 'Weaving', 10000.00, 5, 0.00, 15000.00, 'Chennai', 'Chennai', '2402060023', '', '1', 'upload_files/candidate_tracker/10281159936_Deiva resume(mca) - Copy-1.docx', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:36:56', 1, '2024-02-06 06:08:55', 0, NULL, 1),
(16623, 'Karthik', '2', '8838399541', '', 'Karthikkathiresan1995@gmail.com', '1996-05-29', 27, '6', '2', 'Kathiresan', 'Business', 30000.00, 1, 18000.00, 30000.00, 'Madurai', 'Chennai', '2402060024', '', '2', 'upload_files/candidate_tracker/73477819998_Karthik_Resume.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:37:58', 1, '2024-02-06 05:41:36', 0, NULL, 1),
(16624, 'Deepak Kumar G', '13', '7397483655', '', 'deepakg0312@gmail.com', '2000-03-23', 23, '3', '2', 'NK Gopalakrishnan', 'TNEB', 40000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2402060025', '', '1', 'upload_files/candidate_tracker/594623676_Deepak resume(BE) (1).pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:38:04', 1, '2024-02-06 06:20:39', 0, NULL, 1),
(16625, 'P.Naveen', '31', '9597440361', '', 'nvnpalani9@gmail.com', '2001-07-02', 22, '3', '2', 'Palanisamy', 'Farmer', 20000.00, 1, 0.00, 200000.00, 'Vadapalani', 'Vadapalani', '2402060026', '', '1', 'upload_files/candidate_tracker/42503612296_P.Naveen.pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 05:38:12', 110, '2024-02-06 05:13:45', 0, NULL, 1),
(16626, 'supraja E', '23', '9361622371', '8522904022', 'suprajaelayalagan@gmail.com', '2002-08-08', 21, '3', '2', 'Elayalagan E', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2402060027', '', '1', 'upload_files/candidate_tracker/568725638_SUPRAJA PSP1.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:38:54', 1, '2024-02-06 05:44:02', 0, NULL, 1),
(16627, 'D. Rajan', '14', '9361477873', '9884163478', 'd.rajan1762@gmail.com', '1994-09-17', 29, '6', '2', 'S. Doraisami', 'Railway Employee', 35000.00, 1, 12000.00, 25000.00, 'Perambur, Chennai', 'Perambur, Chennai', '2402060028', '', '2', 'upload_files/candidate_tracker/36370496533_Rajan\'s Resume.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:39:07', 1, '2024-02-06 05:44:32', 0, NULL, 1),
(16628, 'DEENA C', '13', '7339127834', '7339127833', 'cdeenacdeena796@gmail.com', '2002-05-15', 21, '3', '2', 'Cittybabu', 'Farmer', 25000.00, 1, 0.00, 16000.00, 'Thiruvallur', 'Ambattur', '2402060029', '', '1', 'upload_files/candidate_tracker/66821729299_DEENA_RESUME-1.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:39:45', 1, '2024-02-06 06:00:38', 0, NULL, 1),
(16629, 'Gokulraj v', '2', '8682938773', '6382756973', 'gsfreaky5@gmail.com', '2000-02-21', 23, '3', '2', 'Vinayagam a', 'Farmer', 10000.00, 2, 0.00, 300000.00, 'Vedal Tiruvannamalai', 'Chennai', '2402060030', '', '1', 'upload_files/candidate_tracker/43145177651_Gokulraj Tech.pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 05:40:19', 110, '2024-02-06 04:13:22', 0, NULL, 1),
(16630, 'Ramakrishna S', '13', '9751471301', '', 'ramki2298@gmail.com', '1998-09-22', 25, '3', '2', 'Subbiah.R', 'Retired teacher', 25000.00, 2, 18000.00, 25000.00, 'Pudukkottai', 'Chennai', '2402060031', '', '2', 'upload_files/candidate_tracker/55901245708_Ram_Resume_24-1.docx', NULL, '1', '2024-02-06', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:40:30', 1, '2024-02-06 05:50:27', 0, NULL, 1),
(16631, 'Munuswamy M', '31', '7010729248', '', 'munu.gvn1999@gmail.com', '1999-06-15', 24, '3', '1', 'Munirathinam M', 'Former', 15000.00, 0, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2402060032', '', '1', 'upload_files/candidate_tracker/86356165534_Munuswamy_Resume - Back1.pdf', NULL, '1', '2024-02-06', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 05:41:56', 130, '2024-05-09 04:23:44', 0, NULL, 1),
(16632, 'Pavan kumar kotrakona', '13', '7993487227', '9676925039', 'pavankumarkotrakona572@gmail.com', '2000-04-16', 23, '3', '2', 'Udaya Shekhar', 'Farmer', 20000.00, 1, 180000.00, 250000.00, 'TIRUPATI', 'Perungudi', '2402060033', '', '2', 'upload_files/candidate_tracker/34441203962_Full-Stack developer (pavan resume) .pdf_20240206_093546_0000.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:47:28', 1, '2024-02-06 05:51:23', 0, NULL, 1),
(16633, 'R.Sakthi', '13', '9344153155', '', 'sakthirangasamy2003@gmail.com', '2003-07-08', 20, '6', '2', 'Rangasamy.m', 'Farmer', 5.00, 1, 0.00, 250000.00, 'Salem', 'Velachery', '2402060034', '', '1', 'upload_files/candidate_tracker/49677072324_Resume 1.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:47:36', 1, '2024-02-06 05:55:36', 0, NULL, 1),
(16634, 'SEENIVASAN S', '13', '9943599028', '9345332087', 'srinikrish006@gmail.com', '2000-06-06', 23, '3', '2', 'D. Sugendran', 'Tailor', 400000.00, 1, 0.00, 25000.00, 'Tirunelveli', 'Chennai', '2402060035', '', '1', 'upload_files/candidate_tracker/97361815073_S. SEENIVASAN (JAVA DEMO Resume).pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:48:07', 1, '2024-02-06 05:51:50', 0, NULL, 1),
(16635, 'Mohamed saifullah', '13', '9655418115', '', 'saifullah.mdsh@gmail.com', '2000-09-12', 23, '3', '2', 'Sathik Batcha', 'Chef', 30000.00, 1, 0.00, 200000.00, 'Ramanathapuram', 'West Tambaram', '2402060036', '', '1', 'upload_files/candidate_tracker/21333440936_Mohamed saifullah_cvv.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:48:13', 1, '2024-02-06 05:52:34', 0, NULL, 1),
(16636, 'DEVENDRAN', '23', '9940957326', '', 'VSDEVENDRAN63@GMAIL.COM', '1997-03-20', 26, '3', '2', 'Suresh', 'Record Clerk', 25000.00, 1, 5000.00, 20000.00, 'Tirunelveli', 'Chennai', '2402060037', '', '2', 'upload_files/candidate_tracker/70625739520_Pi7_DEVENDRAN_V_S.pdf', NULL, '1', '2024-02-06', 7, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 05:49:39', 110, '2024-02-06 04:13:00', 0, NULL, 1),
(16637, 'Ajin M B', '31', '7010796940', '', 'majinb3012@gmail.com', '1997-12-30', 26, '3', '2', 'Murugan A', 'Driver', 40000.00, 1, 0.00, 300000.00, 'Kanyakumari', 'Chennai', '2402060038', '', '1', 'upload_files/candidate_tracker/55889235452_ajincv.pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 05:50:37', 110, '2024-02-06 04:13:52', 0, NULL, 1),
(16638, 'Dinesh Kumar k', '31', '9842010239', '9042753219', 'dineshdinu1921@gmail.com', '2002-12-30', 21, '3', '2', 'Kalimuthu', 'Farmer', 20000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2402060039', '', '1', 'upload_files/candidate_tracker/66166630701_ddword-1.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:51:51', 1, '2024-02-06 05:57:53', 0, NULL, 1),
(16639, 'N Ponselvi', '31', '9042753219', '', 'ponselvinagarajan@gmail.com', '2003-03-27', 20, '3', '2', 'Nagarajan', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Tirunelveli', 'Chennai', '2402060040', '', '1', 'upload_files/candidate_tracker/61343895623_Ponselvicv.pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 05:52:22', 110, '2024-02-06 04:14:15', 0, NULL, 1),
(16640, 'Pradeep M', '31', '6379980279', '', 'pradeepmohan6380@gmail.com', '2000-09-27', 23, '3', '2', 'Mohan', 'Farmer', 35000.00, 1, 0.00, 300000.00, 'Pudukottai', 'Chennai', '2402060041', '', '1', 'upload_files/candidate_tracker/44129759785_pradeep_resume.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:53:06', 1, '2024-02-06 05:57:29', 0, NULL, 1),
(16641, 'Yuvanesh Shankar', '13', '7448445767', '9080568903', 'yhshankarm@gmail.com', '2000-07-14', 23, '4', '2', 'manikandan', 'auto driver', 30000.00, 1, 0.00, 450000.00, 'Chennai', 'Chennai', '2402060042', '', '1', 'upload_files/candidate_tracker/23997132896_ResumeYuvan.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:54:18', 1, '2024-02-06 05:57:57', 0, NULL, 1),
(16642, 'C NAVEENKUMAR', '22', '7448969737', '', 'NAVEENKUMARcse12@gmail.com', '2002-03-12', 21, '3', '2', 'chandramohan', 'painter', 15000.00, 1, 0.00, 15000.00, 'Puducherry', 'chennai tambaram', '2402060043', '', '1', 'upload_files/candidate_tracker/22922167466_naveenkumar_resume final.pdf', NULL, '2', '2024-02-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not cleared with the Eligibility criteria', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:55:54', 1, '2024-02-06 06:05:43', 0, NULL, 1),
(16643, 'Shifana farveen', '13', '9952582647', '', 'shifana.farveenn@gmail.com', '2002-04-28', 21, '3', '2', 'Uma salma', 'Software Trainee', 15000.00, 1, 0.00, 15000.00, 'Puducherry', 'Tambaram sanatorium', '2402060044', '', '1', 'upload_files/candidate_tracker/74615652179_shifana Farveen resume(php, mysql).pdf', NULL, '1', '2024-02-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Cleared With The Eligibility Criteria', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:55:58', 1, '2024-02-06 06:06:01', 0, NULL, 1),
(16644, 'Swetha. T', '13', '7397080010', '', 'swethapandian25@gmail.com', '2001-12-25', 22, '3', '2', 'Thangapandian. N', 'Coolie', 15000.00, 0, 0.00, 15000.00, 'Gandhi thirunallur,puducherry', 'Tambaram sanatorium', '2402060045', '', '1', 'upload_files/candidate_tracker/82547528723_Swetha_resume(2).pdf', NULL, '1', '2024-02-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Cleared With The Eligibility Criteria', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:56:34', 1, '2024-02-06 06:06:27', 0, NULL, 1),
(16645, 'Gajalakshmi', '27', '6383937747', '7530027975', 'gaja6213@gmail.com', '2002-11-02', 21, '3', '2', 'Kumar', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Thiruvannamalai', 'Thambaram, Sanitorium', '2402060046', '', '1', 'upload_files/candidate_tracker/53579196783_GAJALAKSHMI RESUME 1.docx', NULL, '1', '2024-02-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Cleared With The Eligibility Criteria', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:56:37', 1, '2024-02-06 06:05:42', 0, NULL, 1),
(16646, 'jayanth murali r', '11', '6380334310', '8608613309', 'jayanthjai19@gmail.com', '1999-11-19', 24, '6', '2', 'ravimurthy m', 'technician podhigai', 75000.00, 1, 0.00, 8000.00, 'medavakkam chennai', 'medavakkam chennai', '2402060047', '', '1', 'upload_files/candidate_tracker/37223181476_Jayanth CV.pdf', NULL, '1', '2024-02-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Internship Yet To Complete Her Exams If She Comes Back  Let Us Try', '6', '1', '0', '1', '8', '0', '2', '2024-02-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:56:42', 1, '2024-02-06 06:01:17', 0, NULL, 1),
(16647, 'Mallika.S', '13', '9095098498', '', 'mallikaselvam56@gmail.com', '2002-05-18', 21, '3', '2', 'Selvam', 'Daily Wages', 10000.00, 1, 0.00, 18000.00, 'Rajapalayam', 'Chennai', '2402060048', '', '1', 'upload_files/candidate_tracker/30435639945_Mallika_CV.pdf', NULL, '1', '2024-02-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Cleared With The Eligibility Criteria', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 05:57:53', 1, '2024-02-06 06:06:29', 0, NULL, 1),
(16648, 'KAVIYARASU RAJA', '13', '7339098098', '', 'kavirealme@gmail.com', '2002-09-29', 21, '3', '2', 'Raja k', 'Village work', 12000.00, 1, 0.00, 25000.00, 'Manimangalam, chengalpattu, Chennai 60301', 'Manimangalam, Chengalpattu, Chennai 60301', '2402060049', '', '1', 'upload_files/candidate_tracker/64220873256_RK-Resume-BW.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:02:19', 1, '2024-02-06 06:07:13', 0, NULL, 1),
(16649, '', '0', '7339127833', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402060050', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-06 06:02:43', 0, NULL, 0, NULL, 1),
(16650, 'Gopikrishnan', '13', '7010855443', '9841905435', 'gopikrishnan1114@gmail.com', '2002-11-14', 0, '3', '2', 'Babu', 'Carpenter', 15000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2402060051', '', '1', 'upload_files/candidate_tracker/63797704174_GOPIKRISHNAN\'s Resume (2).pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:05:02', 1, '2024-02-06 06:10:26', 0, NULL, 1),
(16651, 'Vijay Kumar R', '31', '9944836332', '', 'vk9944836332@gmail.com', '2000-02-14', 23, '3', '2', 'Ragunathan S', 'Shopkeeper', 20000.00, 1, 0.00, 12000.00, 'Walajabad', 'Walajabad', '2402060052', '', '1', 'upload_files/candidate_tracker/24781453398_resume.pdf (6).pdf', NULL, '1', '2024-02-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:05:30', 1, '2024-02-06 06:14:02', 110, '2024-02-06 03:22:22', 0),
(16652, 'Ranjithraja P', '13', '7639319721', '8110916602', 'ranjithraja1527@gmail.com', '2001-07-27', 22, '3', '2', 'Saritha', 'Home maker', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2402060053', '', '1', 'upload_files/candidate_tracker/29926845524_Ranjithraja-Python(flask).pdf', NULL, '1', '2024-02-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'should come for next round for Technical\n', '2', '1', '0', '1', '8', '0', '2', '2024-02-10', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:05:39', 1, '2024-02-06 06:08:17', 0, NULL, 1),
(16653, 'Hariharan', '2', '8825998524', '7708940878', 'hariharan16official@gmail.com', '2001-10-16', 22, '3', '2', 'Subatra', 'House wife', 10000.00, 1, 0.00, 20000.00, 'Puducherry', 'Chennai', '2402060054', '', '1', 'upload_files/candidate_tracker/62623471843_Hariharan_Resume_normal_01.pdf', NULL, '1', '2024-02-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Cleared With The Eligibility Criteria', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:06:28', 1, '2024-02-06 06:08:42', 0, NULL, 1),
(16654, 'PANDITHEVAN G', '31', '6369064948', '8870461443', 'dwaynedevaq96@gmail.com', '1996-05-16', 27, '3', '2', 'Gunasekaran', 'Labour', 20000.00, 5, 0.00, 2500000.00, 'Chennai', 'Chennai', '2402060055', '', '1', 'upload_files/candidate_tracker/23448553892_f946622f-f125-44d0-bc4d-bf4057c63483.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:06:29', 1, '2024-02-06 06:16:23', 0, NULL, 1),
(16655, 'V . Mohamad arsath', '13', '9843023604', '', 'arsath0852@gmail.com', '1998-07-05', 25, '3', '2', 'Beevi', 'House wife', 20000.00, 2, 0.00, 15000.00, 'Aldhur Chennai', 'Chennai', '2402060056', '', '1', 'upload_files/candidate_tracker/61719948702_V MOHAMED ARSATH.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:07:25', 1, '2024-02-06 06:51:07', 0, NULL, 1),
(16656, 'Satheesh Reddy V', '13', '6305940351', '9502512734', 'satheeshreddy649@gmail.com', '2002-08-06', 21, '3', '2', 'Venu reddy V', 'Farmer', 70000.00, 2, 0.00, 300000.00, 'Chennai, Velachery', 'Chennai, Velachery', '2402060057', '', '1', 'upload_files/candidate_tracker/88217893948_satheeshreddy.fullstack Web developer_Translated.docx', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:09:20', 1, '2024-02-06 06:14:51', 0, NULL, 1),
(16657, 'LOGESH S', '31', '9597971743', '', 'mrlogesh777@gmail.com', '2001-08-11', 22, '3', '2', 'SIVA G', 'WEAVER', 20000.00, 1, 0.00, 13000.00, 'KANCHIPURAM', 'KANCHIPURAM', '2402060058', '', '1', 'upload_files/candidate_tracker/79628180164_Logesh_cv.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:10:21', 1, '2024-02-06 06:27:57', 0, NULL, 1),
(16658, 'Mohamed Anish', '13', '9003914163', '', 'mohamedanish456@gmail.com', '2000-09-04', 23, '6', '2', 'Shahul Hameed', 'Supervising', 30000.00, 1, 0.00, 18000.00, 'Kallakurichi', 'Chennai', '2402060059', '', '1', 'upload_files/candidate_tracker/79880368747_MOHAMED_ANISHANISH_Resume (2).pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 06:12:17', 110, '2024-02-06 04:18:59', 0, NULL, 1),
(16659, 'Aravinth', '13', '6385634901', '', 'aravithkumar138@gmail.com', '2002-03-23', 21, '6', '2', 'Thanga vel', 'Building contractor', 30000.00, 2, 0.00, 25000.00, 'Tirupur', 'Vadapalni, Chennai', '2402060060', '', '1', 'upload_files/candidate_tracker/93884617541_ARAVINTH_CV_.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:12:54', 1, '2024-02-06 06:34:46', 0, NULL, 1),
(16660, 'Muthu selvan. G', '13', '9360219201', '', 'muthuselvan2020muthu@gmail.com', '2002-10-29', 21, '6', '2', 'Ganesan', 'Farmer', 40000.00, 0, 0.00, 20000.00, 'Theni', 'Chennai', '2402060061', '', '1', 'upload_files/candidate_tracker/47268869873_Modern Grey Resume _20231219_221911_0000.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:13:04', 1, '2024-02-06 06:18:23', 0, NULL, 1),
(16661, 'Sam alwin.v', '13', '8825522184', '', 'alwinv47@gmail.com', '2001-05-08', 22, '6', '2', 'Victor', 'Business', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2402060062', '', '1', 'upload_files/candidate_tracker/58191277817_Grey Clean CV Resume Photo (7).pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 06:13:34', 110, '2024-02-06 04:16:10', 0, NULL, 1),
(16662, 'Sharan. M', '13', '9087781295', '', 'sharanm933@gmail.com', '2000-11-18', 23, '3', '2', 'Mani', 'Painter', 15000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2402060063', '', '1', 'upload_files/candidate_tracker/15648879675_Sharan', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 06:17:47', 110, '2024-02-06 05:14:05', 0, NULL, 1),
(16663, 'Shankara Narayanaa', '3', '6381962422', '9626876372', 'kaaraishan@gmail.com', '2001-11-11', 22, '3', '2', 'Ponniah', 'Jeweller', 20000.00, 1, 0.00, 400000.00, 'Coimbatore', 'Coimbatore', '2402060064', '', '1', 'upload_files/candidate_tracker/20168056887_SHANKARA_NARAYANAA_P_1931036_SS.pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 06:19:59', 110, '2024-02-06 04:11:38', 0, NULL, 1),
(16664, 'AAKASH N', '13', '9751620391', '', 'akasheeswetha@gmail.com', '2002-08-24', 21, '6', '2', 'NATARAJAN P', 'Farmer', 25000.00, 5, 0.00, 2.40, 'Ariyalur', 'Chennai', '2402060065', '', '1', 'upload_files/candidate_tracker/84914493843_My Resume.pdf', NULL, '1', '2024-02-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 06:25:58', 130, '2024-05-16 04:18:14', 0, NULL, 1),
(16665, 'Ahamed Nishardeen', '13', '9486807013', '', 'jainulnishar123@gmail.com', '2003-08-13', 20, '3', '2', 'nizamudeen', 'driver', 30000.00, 2, 0.00, 2.00, 'ramanathapuram', 'vadapalani', '2402060066', '', '1', 'upload_files/candidate_tracker/94720503853_Nishardeen.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:31:56', 1, '2024-02-06 06:44:50', 0, NULL, 1),
(16666, 'Arunkumar', '13', '9942521022', '6385327898', 'justforthing.a@gmail.com', '2000-10-16', 23, '3', '2', 'Olithanthan K', 'Welder', 40000.00, 1, 0.00, 18000.00, 'Srinivasan nagar 3rd cross street, Thiruvanmiyur', 'Srinivasan nagar 3rd cross street , Thiruvanmiyur', '2402060067', '', '1', 'upload_files/candidate_tracker/23100742979_ARUN KUMAR_20240206_113606_0000.pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 06:33:42', 110, '2024-02-06 04:19:25', 0, NULL, 1),
(16667, 'Misswagul Magaruff', '13', '9344069136', '', 'magaruff09@gmail.com', '2002-11-14', 21, '3', '2', 'Mohamed dhaher', 'Overseas pallivasal', 100000.00, 1, 0.00, 200000.00, 'Thiruvarur', 'Thiruvarur', '2402060068', '', '1', 'upload_files/candidate_tracker/66381665451_Magaruff -M.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:34:20', 1, '2024-02-06 06:37:17', 0, NULL, 1),
(16668, 'nandhakumar', '13', '6369953397', '', 'nandha934455@gmail.com', '2001-05-14', 22, '3', '2', 'muniyappan', 'indian gas manager', 20000.00, 5, 0.00, 18000.00, 'gandhi nagar kovilambakkam', 'gandhi nagar kovilam', '2402060069', '', '1', 'upload_files/candidate_tracker/37925101232_NANDHA KUMAR.M.pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 06:35:05', 110, '2024-02-06 04:11:17', 0, NULL, 1),
(16669, 'Vijaya Kumar', '31', '9994915349', '', 'vk9944836332@gmail.com', '2000-02-14', 23, '3', '2', 'Ragunathan S', 'Shopkeeper', 20000.00, 1, 0.00, 12000.00, 'Walajabad', 'Walajabad', '2402060070', '', '1', 'upload_files/candidate_tracker/65183253224_resume.pdf (6).pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:38:59', 1, '2024-02-06 06:41:12', 0, NULL, 1),
(16670, 'Gopi D', '13', '8220040421', '', 'dhavagopi8816@gmail.com', '2001-05-17', 22, '6', '1', 'Dhavasundram', 'Farmer', 30000.00, 1, 0.00, 25000.00, 'Thiruvannamalai', 'Chennai', '2402060071', '', '1', 'upload_files/candidate_tracker/25818466051_GOPI-4.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:39:40', 1, '2024-02-06 06:45:33', 0, NULL, 1),
(16671, 'Namdhakumar P', '13', '9600687380', '', 'namdhakumar23084@gmail.com', '2002-05-22', 21, '3', '2', 'Prakash', 'Electrision', 15000.00, 1, 0.00, 20000.00, 'Paramativelur', 'Saidapet', '2402060072', '', '1', 'upload_files/candidate_tracker/84788982528_NandhakumarResume.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:39:57', 1, '2024-02-06 07:32:04', 0, NULL, 1),
(16672, 'Rafeek Mohamed', '13', '8760674205', '6382605159', 'rafick16a@gmail.com', '2003-02-16', 20, '3', '2', 'Daddy', 'Chef', 30000.00, 1, 0.00, 2.50, 'Vadalur', 'Chennai', '2402060073', '', '1', 'upload_files/candidate_tracker/15749324336_RafeekResume.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:40:08', 1, '2024-02-06 06:45:38', 0, NULL, 1),
(16673, 'Harish', '23', '9790724223', '', 'Harish6102000@gmail.com', '2000-02-06', 24, '3', '2', 'Dhamodharan', 'Carpenter - Daily wages', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2402060074', '', '1', 'upload_files/candidate_tracker/4887436520_Harish resume.pdf', NULL, '1', '2024-02-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:42:59', 1, '2024-02-06 06:48:59', 0, NULL, 1),
(16674, 'Sakthivel', '2', '9344953788', '', 'sakthiveltofficial@gmail.com', '2002-02-16', 21, '3', '1', 'Thangaraj', 'Daily wages', 30000.00, 1, 0.00, 25000.00, 'Dharmapuri', 'Chennai', '2402060075', '', '1', 'upload_files/candidate_tracker/70276458838_SAKTHIVEL_FRESHER (1).pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 06:43:01', 110, '2024-02-06 05:14:33', 0, NULL, 1),
(16675, 'Thangatamil A', '13', '9025565212', '', 'thangatamil1177@gmail.com', '2001-12-09', 22, '3', '2', 'ANBALAGAN R', 'Former', 40000.00, 1, 0.00, 400000.00, 'Thanjavur', 'Chennai', '2402060076', '', '1', 'upload_files/candidate_tracker/70822897320_ThangaTamil CV.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 06:44:27', 1, '2024-02-06 06:49:28', 0, NULL, 1),
(16676, 'Athi Sivaram', '13', '9787841530', '6382834963', 'sivaramathi2001@gmail.com', '2001-07-22', 22, '3', '2', 'shanmuganathan', 'farmer', 20000.00, 1, 0.00, 2.00, 'Uthankulam,sankarankovil', 'Chenna', '2402060077', '', '1', 'upload_files/candidate_tracker/65096537080_Athi sivaram s.pdf', NULL, '1', '2024-02-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 06:51:04', 110, '2024-02-06 12:27:02', 0, NULL, 1),
(16677, 'Sobanraj', '13', '6382605159', '6374084547', 'sobanraj0123@gmail.com', '2002-04-10', 21, '3', '2', 'Annalakshmi', 'House wife', 25000.00, 1, 0.00, 250000.00, 'Tiruchirappalli', 'Chennai', '2402060078', '', '1', 'upload_files/candidate_tracker/89584698810_Sobanraj-N.pdf', NULL, '1', '2024-02-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 06:53:28', 110, '2024-02-06 03:36:08', 0, NULL, 1),
(16678, 'Balasudhan J', '13', '8056760856', '', 'sudhanjayaraman27@gmail.com', '2001-10-27', 22, '3', '2', 'Jayaraman S', 'Farmer', 15000.00, 1, 0.00, 400000.00, 'Peravurani, Thanjavur-614804', 'Kelambakkam Chennai- 603103', '2402060079', '', '1', 'upload_files/candidate_tracker/67073856838_Balasudhan-Resume-1.pdf', NULL, '1', '2024-02-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'rejected in aptitude', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 07:00:04', 110, '2024-02-09 09:38:13', 0, NULL, 1),
(16679, 'Tittus Mano Prasanna', '13', '8508350028', '9080307135', 'Tittusmanoprasanna97@gmail.com', '1997-12-16', 26, '3', '2', 'Glory', 'Staff nurse', 25000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2402060080', '', '1', 'upload_files/candidate_tracker/37157215514_Tittus_Mano Prasanna_Resume_07-06-2023-11-37-19_compressed.pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 07:05:38', 110, '2024-02-06 05:12:37', 0, NULL, 1),
(16680, 'Maria Allwin', '13', '8939581046', '', 'mariaallwin555@gmail.com', '2000-08-06', 23, '3', '2', 'Father - Vincent . l', 'Lorry driver', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2402060081', '', '1', 'upload_files/candidate_tracker/95724846212_1.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 07:19:44', 1, '2024-02-06 07:23:21', 0, NULL, 1),
(16681, 'Sathya seelan', '31', '7708296946', '6380650929', 'Sathyaseelan5676@gmail.com', '1998-12-18', 25, '6', '2', 'A.umapathy', 'Ex checking inspector', 50000.00, 2, 0.00, 20000.00, 'Dindigul', 'Tambaram', '2402060082', '', '1', 'upload_files/candidate_tracker/94456603772_SATHYA SEELAN new.pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 07:22:10', 110, '2024-02-06 05:11:46', 0, NULL, 1),
(16682, 'Rooban sankar.M', '2', '9080307135', '9944381709', 'rooban1752000@gmail.com', '2000-05-17', 23, '3', '2', 'Manoharan', 'Teacher', 25000.00, 1, 0.00, 20000.00, 'Erode', 'Che', '2402060083', '', '1', 'upload_files/candidate_tracker/21071048396_Resume.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 07:22:18', 1, '2024-02-06 07:27:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16683, 'Tharini M', '13', '9566331226', '', 'm.tharini2652003@gmail.com', '2003-05-26', 20, '3', '2', 'Mohane V', 'Electrical Engineer', 10000.00, 1, 0.00, 300000.00, 'Pondicherry', 'Chennai', '2402060084', '', '1', 'upload_files/candidate_tracker/86377084019_Tharini_M__CV (1).docx', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 07:31:04', 110, '2024-02-06 04:19:58', 0, NULL, 1),
(16684, 'Rupasi.S', '4', '9840743064', '', 'rupasi14052003@gmail.com', '2003-05-14', 20, '6', '2', 'Srinivasan', 'Accountant', 15000.00, 1, 0.00, 300000.00, 'Tondiarpet', 'Tondiarpet', '2402060085', '', '1', 'upload_files/candidate_tracker/30973996192_Rupasi.S_Resume_720.pdf', NULL, '1', '2024-02-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 07:43:20', 1, '2024-02-06 08:00:39', 0, NULL, 1),
(16685, '', '0', '8508958295', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402060086', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-06 07:59:28', 0, NULL, 0, NULL, 1),
(16686, 'S Praveen', '31', '9080105675', '', 'praveenit2023@gmail.com', '2002-05-19', 21, '3', '2', 'Subbiah N', 'Farmer', 15000.00, 1, 0.00, 25000.00, 'Perambalur', 'Chennai', '2402060087', '', '1', 'upload_files/candidate_tracker/473001561_Resume_23_01_2024_09_32_10_PM.pdf', NULL, '1', '2024-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-06 07:59:40', 1, '2024-02-06 08:03:59', 0, NULL, 1),
(16687, 'Shahul hameed M', '23', '8248704947', '9941557761', 'Shahulsha0404@gmail.com', '2003-03-18', 20, '3', '2', 'Mohamed Ibrahim', 'A/c Mechanic', 15000.00, 1, 13000.00, 20000.00, 'Chennai', 'Chennai, Royapuram', '2402060088', '', '2', 'upload_files/candidate_tracker/68399372232_Shahul-Interview CV_compressed.pdf', NULL, '1', '2024-02-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 08:31:54', 110, '2024-02-06 03:55:58', 0, NULL, 1),
(16688, 'Arthi R', '13', '9360470539', '', 'arthimanoj6@gmail.com', '2001-08-29', 22, '3', '2', 'Rajasekar, Prema', 'Farmer', 15000.00, 1, 0.00, 200000.00, 'Namakkal', 'Chennai', '2402060089', '', '1', 'upload_files/candidate_tracker/58716110189_ARTHI.pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 09:18:32', 110, '2024-02-06 04:16:40', 0, NULL, 1),
(16689, 'Vinitha. D', '13', '6374388200', '', 'vinitha3032001@gmail.com', '2001-03-30', 22, '3', '2', 'Devaraj. K', 'Freshers', 1.50, 1, 0.00, 200000.00, 'Namakkal', 'Chennai', '2402060090', '', '1', 'upload_files/candidate_tracker/75710465460_VINITHA D-3.pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 09:20:49', 110, '2024-02-06 04:17:28', 0, NULL, 1),
(16690, 'Rajesh Babu Saravanan', '4', '7358631040', '8778949095', 'baburs21141998@gmail.com', '1998-03-21', 25, '6', '1', 'Sathiyaroopini', 'Support in IT', 600000.00, 1, 28000.00, 28000.00, '10/55 Annal Gandhi street mgr nagar Chennai', '2/36 Bajani koil new street choolaimedu chennai', '2402060091', '', '2', 'upload_files/candidate_tracker/69640779997_Rajeshbabu Saravanan (1).pdf', NULL, '1', '2024-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 09:27:57', 110, '2024-02-06 04:30:20', 0, NULL, 1),
(16691, 'Asima Nanda', '11', '6383382730', '9488985339', 'nandaasima@gmail.com', '1981-07-02', 42, '6', '1', 'Debi Prasanna Acharjya', 'Service', 100000.00, 2, 15000.00, 20000.00, 'Vellore', 'Vellore', '2402060092', '', '2', 'upload_files/candidate_tracker/43421477875_Asima_Nanda_Resume_4-1.pdf', NULL, '1', '2024-02-06', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles age around 44 yrs', '6', '2', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-06 09:34:55', 110, '2024-02-06 03:53:41', 0, NULL, 1),
(16692, '', '0', '9791686670', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402060093', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-06 11:14:32', 0, NULL, 0, NULL, 1),
(16693, 'Yuvashree R', '6', '9566640353', '', 'yuvashree12401@gmail.com', '2001-04-12', 22, '2', '2', 'Raja', 'Bank employee', 15000.00, 1, 12000.00, 15000.00, 'Chengalpattu', 'Chennai', '2402060094', '1', '2', 'upload_files/candidate_tracker/66583408540_Yuvashree R Cv .pdf', NULL, '1', '2025-08-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2024-02-06 11:46:17', 154, '2025-08-18 03:36:25', 0, NULL, 1),
(16694, '', '0', '9585342823', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402060095', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-06 05:08:07', 0, NULL, 0, NULL, 1),
(16695, 'mujammil hasan', '23', '8870867610', '', 'mujammilofficial@gmail.com', '1999-11-04', 24, '3', '2', 'yusuf malim', 'uiux designer', 300000.00, 2, 2.40, 4.00, 'therupalli street nagore', 'nkn road alandur', '2402070001', '', '2', 'upload_files/candidate_tracker/299365391_UIUX DESIGNER AND VISUAL DESIGNER WITH 1.5 EXP V2.pdf', NULL, '1', '2024-02-10', 30, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-07 03:40:29', 110, '2024-02-10 05:13:13', 0, NULL, 1),
(16696, 'BALASARAVANAN M', '13', '8925032708', '8925128646', 'balamarvelous@gmail.com', '2004-08-27', 19, '6', '2', 'MURALI C', 'Nil', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Guduvancherry', '2402070002', '', '1', 'upload_files/candidate_tracker/23378687598_RESUME.pdf', NULL, '1', '2024-02-07', 0, '', '2', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '2024-02-12', '1', '2', 'hold  In Aptitude Round', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:00:13', 110, '2024-02-08 05:52:17', 0, NULL, 1),
(16697, 'Yogesh kumar. B', '13', '9159560168', '7639029764', 'mercy00baskar@gmail.com', '2002-04-20', 21, '3', '2', 'Baskaran', 'Time keeper', 100000.00, 0, 0.00, 15000.00, 'Madhurandhagam', 'Urapakam', '2402070003', '', '1', 'upload_files/candidate_tracker/1184656551_yogesh kumar.B (3).pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '2', '2', '', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:03:06', 110, '2024-02-07 05:28:33', 0, NULL, 1),
(16698, 'prakash r', '13', '7358327127', '8925032708', 'prakash25042017@gmail.com', '2002-04-25', 21, '3', '2', 'rangarajan n', 'provision shop', 25000.00, 1, 0.00, 20000.00, 'guduvanchery', 'guduvanchery', '2402070004', '', '1', 'upload_files/candidate_tracker/37680457596_Prakash.R cv .pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '1', '2', 'Rejected  In Aptitude Round', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:06:14', 110, '2024-02-08 05:52:50', 0, NULL, 1),
(16699, 'Tamil Selvan', '27', '7708424275', '', 'tamilantamil1508@gmail.com', '2002-08-15', 21, '3', '2', 'Ramalingam', 'Cooli', 17000.00, 3, 0.00, 12000.00, 'Alangulam, Tenkasi - 627851', 'Perumbakkam , Chennai - 600100', '2402070005', '', '1', 'upload_files/candidate_tracker/52690850904_Tamil Selvan - Resume.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '1', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:09:12', 110, '2024-02-08 05:43:25', 0, NULL, 1),
(16700, 'Balaguru S', '2', '9345197618', '6383628363', 'balagurusiva2002@gmail.com', '2002-05-30', 21, '3', '2', 'Sivaparakasam', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Thiruvanamalai', 'Maraimalai nagar', '2402070006', '', '1', 'upload_files/candidate_tracker/52323479133_Balaguru S_compressed.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '1', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:13:38', 110, '2024-02-08 05:42:10', 0, NULL, 1),
(16701, 'R.Sriram', '13', '9600672012', '', 'sriramram65843@gmail.com', '2001-10-02', 22, '6', '2', 'A.Ramesh', 'Agriculture', 8000.00, 1, 0.00, 250000.00, 'Tiruvannamalai', 'Chennai', '2402070007', '', '1', 'upload_files/candidate_tracker/74277275801_sri_resume.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '2', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:16:56', 110, '2024-02-08 05:51:48', 0, NULL, 1),
(16702, 'Poomalai Karthikeyan', '13', '9095040782', '', 'tech.poomalai@gmail.com', '1997-12-09', 26, '1', '2', 'Jothi', 'None', 40.00, 5, 0.00, 3.50, 'Chennai', 'Chennai', '2402070008', '', '2', 'upload_files/candidate_tracker/21442509937_poomalai-FD.pdf', NULL, '1', '2024-02-07', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '2024-02-12', '2', '2', 'Rejected', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:18:56', 110, '2024-02-09 09:41:44', 0, NULL, 1),
(16703, 'Saaiejyothi', '13', '9342023447', '6383269842', 'saaiejyothi05@gmail.com', '2002-09-11', 21, '3', '2', 'Chandra', 'Housewife', 10000.00, 0, 0.00, 250000.00, 'Tirunelveli', 'Chennai', '2402070009', '', '1', 'upload_files/candidate_tracker/41460567131_saaiejyothi-resume_20240203_151517_0000.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '2024-02-12', '2', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:20:18', 110, '2024-02-08 05:42:30', 0, NULL, 1),
(16704, 'Abinesh D', '2', '7358495843', '9940550558', 'abineshan199@gmail.com', '2002-08-30', 21, '3', '2', 'DAMODARAN', 'Accountant', 25000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2402070010', '', '1', 'upload_files/candidate_tracker/43473099848_semiresume.abi (1).pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '2024-02-12', '1', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:20:27', 110, '2024-02-08 05:42:58', 0, NULL, 1),
(16705, '', '0', '8712280849', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402070011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-07 05:21:45', 0, NULL, 0, NULL, 1),
(16706, 'Mohamed Abdul Kader', '4', '8610858420', '', 'hajicreationz@gmail.com', '2000-10-30', 23, '2', '2', 'Peer Mohamed Mohineen', 'Business', 50000.00, 2, 23000.00, 26000.00, 'Tenkasi', 'Chennai', '2402070012', '1', '2', 'upload_files/candidate_tracker/6398843808_22.docx', NULL, '1', '2024-02-07', 3, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-07 05:22:47', 110, '2024-02-07 06:10:07', 0, NULL, 1),
(16707, '', '0', '6302866229', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402070013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-07 05:26:11', 0, NULL, 0, NULL, 1),
(16708, 'Barath K', '13', '7358937787', '6379976620', 'barathkrishnamoorthy17@gmail.com', '2001-05-12', 22, '3', '2', 'Krishnamoorthy Jaya', 'Farmer', 20000.00, 1, 0.00, 200000.00, 'Puducherry', 'Chennai', '2402070014', '', '1', 'upload_files/candidate_tracker/1642939829_BARATH .KJGB 2-1.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '2024-02-12', '2', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:26:49', 110, '2024-02-08 05:44:25', 0, NULL, 1),
(16709, 'Mugesh Krishna M', '13', '6380273804', '', 'mmugeshmech@gmail.com', '2002-05-18', 21, '3', '2', 'Muneeswaran', 'Fire works designer', 10000.00, 0, 0.00, 175000.00, 'Sivakasi', 'Chennai', '2402070015', '', '1', 'upload_files/candidate_tracker/72078214845_Mugesh krishna-1 (1).pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '2', '2', '', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:30:18', 110, '2024-02-07 05:40:56', 0, NULL, 1),
(16710, 'Santhosh N', '13', '8754281704', '', 'santhoshsanthosh63256@gmail.com', '1995-02-06', 29, '6', '2', 'Nallathambi', 'Fruit shop', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2402070016', '', '1', 'upload_files/candidate_tracker/93285792300_pdf_20230618_213246_0000.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '2', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:31:40', 110, '2024-02-08 05:47:23', 0, NULL, 1),
(16711, 'Sathish M', '13', '9952651702', '', 'sathishmurugan2504@gmail.com', '1999-07-11', 24, '3', '1', 'Murugan P', 'Daily wages', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2402070017', '', '1', 'upload_files/candidate_tracker/57297784688_M.SATHISH - 2 PAGES - RESUME.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '1', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:32:47', 110, '2024-02-08 05:47:04', 0, NULL, 1),
(16712, 'RENUKA', '6', '7845998997', '8610094441', 'sakthirenuga@gmail.com', '2000-07-10', 23, '1', '1', 'Sakthivel', 'Business', 25000.00, 1, 15000.00, 16000.00, 'OLDWASHERMENPET', 'OLDWASHERMENPET', '2402070018', '', '2', 'upload_files/candidate_tracker/67337743780_RENUKA-DOUBLE.pdf', NULL, '1', '2024-02-07', 20, '77825', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected, salary discussion only ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:42:42', 110, '2024-02-07 06:10:49', 0, NULL, 1),
(16713, 'Nandhakumar', '13', '9841727110', '', 's.nandhakumarcs@gmail.com', '2001-06-05', 22, '3', '2', 'Sankar', 'Farmer', 9000.00, 1, 0.00, 20000.00, 'Cheyyar', 'Urapakkam', '2402070019', '', '1', 'upload_files/candidate_tracker/20365786703_NandhaSResume.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '1', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:44:18', 110, '2024-02-08 05:44:53', 0, NULL, 1),
(16714, 'SATHISH.S', '13', '6382644006', '', 'manisathish6069@gmail.com', '2004-05-12', 19, '3', '2', 'SUBRAMANIAN.A', 'DRIVER', 10000.00, 1, 0.00, 300000.00, 'PERAMBALUR', 'CHENNAI', '2402070020', '', '1', 'upload_files/candidate_tracker/55770950340_Sathish_Resume.pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '4', '7', '', '2', '2024-02-12', '2', '2', '', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:45:15', 110, '2024-02-07 06:00:29', 0, NULL, 1),
(16715, 'Kavivignesh', '13', '9344997206', '', 'kavivignesh4000@gmail.com', '2000-12-26', 0, '3', '2', 'Nagarajan', 'Head master in government school', 4000.00, 1, 0.00, 300000.00, 'Thanjavur', 'Chennai', '2402070021', '', '1', 'upload_files/candidate_tracker/75671710169_resume---kavi.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '5', '', '2', '2024-02-12', '2', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:47:06', 110, '2024-02-08 05:45:15', 0, NULL, 1),
(16716, 'Naveen kumar', '23', '8668040079', '', 'naveenkumar74750@gmail.com', '1998-12-29', 25, '3', '2', 'Ranganathan G', 'Cooli', 20000.00, 2, 0.00, 200000.00, 'RazakGardenmainroad, Arumbakkam,Chennai -600106', 'Chennai', '2402070022', '', '1', 'upload_files/candidate_tracker/65335378589_naveen resume.pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '2024-02-12', '2', '2', '', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:48:04', 110, '2024-02-07 06:01:13', 0, NULL, 1),
(16717, 'Souvik kar', '31', '9789993226', '7200787672', 'souvikkar5035@gmail.com', '1999-07-14', 24, '3', '2', 'Nirmalyakar', 'Retried Manager(air india)', 200000.00, 1, 0.00, 200000.00, ',Door No 17,10th street ,Anakaputhur Chennai-70', 'Chennai', '2402070023', '', '1', 'upload_files/candidate_tracker/41226337886_Souvik-Resume-.docx', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:48:21', 110, '2024-02-08 05:47:54', 0, NULL, 1),
(16718, 'Yuvaraj', '13', '9894961348', '', 'Yuvarajvx31@gmail.com', '2001-07-31', 22, '3', '2', 'Srinivasan', 'A/C Mechanic', 40000.00, 1, 0.00, 250000.00, 'Thiruvannamalai', 'Chennai', '2402070024', '', '1', 'upload_files/candidate_tracker/13703107414_YUVARAJ CV.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '1', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:48:31', 110, '2024-02-08 05:44:01', 0, NULL, 1),
(16719, 'Dilip Kumar P', '13', '9941937904', '', 'panneer.dilip@gmail.com', '1998-08-01', 25, '3', '2', 'Panneer Selvam', 'Cable tv operator', 15000.00, 1, 0.00, 200000.00, '52/39,thangavel street vetri nagar,chennai-600082', '52/39,thangavel street vetri Nagar,Chennai', '2402070025', '', '1', 'upload_files/candidate_tracker/93537151797_Resume1.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '1', '2', 'Rejected  In Aptitude Round', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:48:38', 110, '2024-02-08 05:53:59', 0, NULL, 1),
(16720, 'Purushothaman R', '13', '6380292533', '', 'purushothamanrangarajan3@gmail.com', '2000-09-28', 23, '3', '2', 'Rangarajan M D', 'Safety officer', 25000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2402070026', '', '1', 'upload_files/candidate_tracker/34773623345_DOC-20240107-WA0009..docx', NULL, '1', '2024-02-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:50:06', 110, '2024-02-07 05:02:01', 0, NULL, 1),
(16721, 'Krishna A', '13', '9715563166', '', 'Krishnaannadurai2001@gmail.com', '2001-04-29', 22, '3', '2', 'Annadurai M', 'Private concern', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2402070027', '', '1', 'upload_files/candidate_tracker/81032375176_Krishna.pdf', NULL, '1', '2024-02-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:50:34', 110, '2024-02-07 05:01:30', 0, NULL, 1),
(16722, 'Manova M', '13', '6381086091', '7548879057', 'manova6381@gamil.com', '2000-03-31', 23, '3', '2', 'Mani k', 'Daily wages', 15000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2402070028', '', '1', 'upload_files/candidate_tracker/18058743017_White Simple Web Developer Resume_20240122_083924_0000.pdf', NULL, '1', '2024-02-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '2', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:52:38', 110, '2024-02-08 05:45:33', 0, NULL, 1),
(16723, 'Vijayakumar S', '13', '9600690586', '', 'viijjayakumar02@gmail.com', '2001-09-10', 22, '3', '2', 'Sundararajan G', 'JA IN GOVERNMENT SCHOOL', 27000.00, 2, 0.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2402070029', '', '1', 'upload_files/candidate_tracker/31543121013_Vijay resume 2024.pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '2', '2', '', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:53:25', 110, '2024-02-07 06:03:20', 0, NULL, 1),
(16724, 'Ranjith p', '13', '9159999776', '9840706417', 'ranjithpalani10@gmail.com', '2001-10-16', 22, '3', '2', 'Palani', 'Weaver', 30000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2402070030', '', '1', 'upload_files/candidate_tracker/90052001173_Ranjith P Resume (1).pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '1', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:55:12', 110, '2024-02-08 05:46:36', 0, NULL, 1),
(16725, 'Ajith Kannan R', '31', '8056572030', '', 'kannanajith478@gmail.com', '2001-07-21', 22, '3', '2', 'Ravimuthu', 'Cooli', 10000.00, 0, 0.00, 2.50, 'Ramanathapuram', 'Chennai', '2402070031', '', '1', 'upload_files/candidate_tracker/96439210111_AJITH KANNAN resume.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '2024-02-12', '2', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 05:57:12', 110, '2024-02-08 05:43:39', 0, NULL, 1),
(16726, 'Divya', '13', '9360409302', '9791406236', 'divya2171110@gmail.com', '2000-10-01', 23, '3', '2', 'Gopu -Father', 'Farmer', 50000.00, 2, 0.00, 25000.00, 'Ranipet', 'Chennai', '2402070032', '', '1', 'upload_files/candidate_tracker/1789554468_DIVYAG_2023_MCA_FullStackJava.pdf', NULL, '1', '2024-02-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:05:20', 110, '2024-02-07 05:03:11', 0, NULL, 1),
(16727, 'Swathi M', '13', '9025234695', '', 'swathymuni24@gmail.com', '2000-11-24', 23, '3', '2', 'Munikrishnan', 'Attender', 350000.00, 1, 0.00, 0.00, 'Vellore', 'Chennai', '2402070033', '', '1', 'upload_files/candidate_tracker/42073301833_Swathi.pdf', NULL, '1', '2024-02-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:06:59', 110, '2024-02-07 05:01:06', 0, NULL, 1),
(16728, 'Thejassri J', '13', '8838695659', '9361556818', 'thejassri0525@gmail.com', '2002-05-25', 21, '2', '2', 'Seetha J', 'Tailor', 15.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2402070034', '26', '1', 'upload_files/candidate_tracker/5127869791_Thejassri Resume-update.pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', 'hold  In Aptitude Round', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:08:35', 110, '2024-02-08 05:53:30', 0, NULL, 1),
(16729, 'G Saran prasath', '6', '9952656371', '8110813507', 'gsaranprasath1999@gmail.com', '1999-10-15', 24, '3', '2', 'T GUNA SEKARAN', 'Private sector', 37000.00, 1, 20000.00, 25000.00, 'Ramanathapuram', 'Velachery - Chennai', '2402070035', '', '2', 'upload_files/candidate_tracker/6065622671_RESUME 2024_11zon.pdf', NULL, '1', '2024-02-07', 30, '', '4', '29', NULL, 0.00, '', '0', NULL, '1', 'candidate okay send him for next round', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-07 06:10:24', 1, '2024-02-07 06:18:41', 0, NULL, 1),
(16730, 'suriya', '6', '9176536012', '', 'suriyaaniruth123@gmail.com', '1999-10-18', 24, '3', '2', 'suriya', 'private sect', 40000.00, 1, 20000.00, 25000.00, 'chennai', 'chennai', '2402070036', '', '2', 'upload_files/candidate_tracker/69376237585_Suriya resume 3.pdf', NULL, '1', '2024-02-07', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our lead generation profile', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-07 06:11:01', 1, '2024-02-07 06:18:18', 0, NULL, 1),
(16731, 'Hemalatha', '13', '7418188272', '9342728225', 'hemalatha78000@gmail.com', '2002-11-24', 21, '3', '2', 'Saravanan', 'Crane operator', 10000.00, 1, 0.00, 15000.00, 'Pudukkottai', 'Chennai', '2402070037', '', '1', 'upload_files/candidate_tracker/2048736789_hema_CV.pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:20:04', 110, '2024-02-07 05:55:18', 0, NULL, 1),
(16732, 'Sriram R', '13', '8667286277', '', 'sriram14jeeva12@gmail.com', '1999-12-14', 24, '3', '2', 'Ramamoorthy', 'Bus conductor', 30000.00, 1, 0.00, 250000.00, 'Cuddalore', 'Chennai', '2402070038', '', '1', 'upload_files/candidate_tracker/85006672525_Sriram-R-20_01_24.pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:21:04', 110, '2024-02-07 05:54:41', 0, NULL, 1),
(16733, 'Santhosh Bharathi M', '31', '8525080160', '', 'Santhoshbharathim@gmail.com', '2002-12-11', 21, '3', '2', 'Muthaiyan T', 'Daily wagers', 13000.00, 1, 0.00, 210000.00, 'Tiruchirappalli', 'Chennai', '2402070039', '', '1', 'upload_files/candidate_tracker/60787924349_Santhosh Bharathi Resume-1.pdf', NULL, '1', '2024-02-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-07 06:23:06', 1, '2024-02-07 06:36:23', 0, NULL, 1),
(16734, 'Sakthivel s', '13', '9500905303', '', 'sakthivel.ssv303@gmail.com', '1999-02-17', 24, '3', '2', 'Sekar c', 'Farmer wages', 7000.00, 3, 0.00, 19000.00, 'Cuddalore', 'Chennai', '2402070040', '', '1', 'upload_files/candidate_tracker/49469516632_Sakthivel-S-FlowCV-Resume-20240201.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Test Completed', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:23:31', 110, '2024-02-08 05:50:34', 0, NULL, 1),
(16735, 'Sanjaikumar sekar', '13', '7448990143', '9500905303', 'sanjaikumar143appu@gmail.com', '1999-03-24', 24, '3', '2', 'Rani', 'House wife', 7000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Chennai', '2402070041', '', '1', 'upload_files/candidate_tracker/5720222374_Sanjaikumar S Front End Developer .pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:23:58', 110, '2024-02-08 05:34:11', 0, NULL, 1),
(16736, 'Saravanan S', '13', '9384956654', '9715201060', 'saravanansundaramoorthy2003@gmail.com', '2003-07-17', 20, '3', '2', 'Sundaramoorthy M', 'Farmer', 20000.00, 3, 0.00, 250000.00, 'Trichy', 'Chennai', '2402070042', '', '1', 'upload_files/candidate_tracker/25798120413_Saravanan S Resume.docx', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:24:17', 110, '2024-02-08 05:39:14', 0, NULL, 1),
(16737, 'Keerthana', '13', '9342728225', '7418188272', 'saiikeerthii2002@gmail.com', '2002-12-08', 21, '3', '2', 'Punitha', 'Accountent', 10000.00, 2, 0.00, 15000.00, 'Pudukkottai', 'Chennai', '2402070043', '', '1', 'upload_files/candidate_tracker/93596425972_CV_2024012113594274.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:25:07', 110, '2024-02-08 05:35:04', 0, NULL, 1),
(16738, 'Rajakumar s', '15', '9790589616', '9362242877', 'rajakuma.rk360@gmail.com', '2002-04-01', 21, '3', '2', 'Sakthivel A', 'Business', 100000.00, 1, 0.00, 40000.00, 'Vellore', 'Chennai', '2402070044', '', '1', 'upload_files/candidate_tracker/23495707315_rajakumar_Sakthivel.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '2', '2', 'Rejected In Aptitude', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:25:37', 110, '2024-02-09 09:41:09', 0, NULL, 1),
(16739, 'M.priyadharshini', '13', '9150969159', '', 'U20cs1074@gmail.com', '2002-11-17', 21, '3', '2', 'Ke.muthu', 'Farmer', 7000.00, 2, 0.00, 20000.00, 'Pudukkottai dd, pillamangalam, tamilnadu', 'Velachery, Chennai', '2402070045', '', '1', 'upload_files/candidate_tracker/94308645948_priya.resume.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:25:37', 110, '2024-02-08 05:36:07', 0, NULL, 1),
(16740, 'Gnanavel P', '31', '7449053324', '9344034174', 'gnanavel20201098@gmail.com', '2002-06-12', 21, '3', '2', 'Palanisamy K', 'Farmer', 15000.00, 1, 0.00, 250000.00, 'Trichy', 'Chennai', '2402070046', '', '1', 'upload_files/candidate_tracker/94730124580_Gnanavel-1.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:26:06', 110, '2024-02-08 05:37:26', 0, NULL, 1),
(16741, 'Mohamed zaini', '14', '8838644497', '', 'mohamedzaini1003@gmail.com', '2001-03-10', 22, '3', '2', 'Mohamed Ali Jinnah', 'Labbor', 15000.00, 4, 0.00, 12000.00, '7/1161 east Street, panaikulam Ramanathapuram dist', 'Mmda arumbakkam', '2402070047', '', '1', 'upload_files/candidate_tracker/89416318356_ZainiCV (3)_11zon.pdf', NULL, '1', '2024-02-07', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-07 06:26:34', 1, '2024-02-07 06:34:42', 0, NULL, 1),
(16742, 'Saran V', '31', '6381774277', '8525080160', 'saranvelmanik@gmail.com', '2003-10-17', 20, '3', '2', 'Velmani', 'Daily wagers', 10000.00, 0, 0.00, 15000.00, 'Trichy', 'Chennai', '2402070048', '', '1', 'upload_files/candidate_tracker/96523355623_SARAN Resume (1).pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '2024-02-12', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:27:46', 110, '2024-02-08 05:36:32', 0, NULL, 1),
(16743, 'Mohamed Marwan', '2', '8270938585', '6382535107', 'almarwan387@gmail.com', '2009-02-07', 0, '3', '2', 'mohamed ibrahim', 'labour', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2402070049', '', '1', 'upload_files/candidate_tracker/84263138283_MARWAN RESUME .pdf', NULL, '1', '2024-02-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-07 06:27:49', 1, '2024-02-07 06:30:50', 0, NULL, 1),
(16744, 'Ashokkumar', '31', '9344034174', '', 'ashokkumar.cs1312@gmail.com', '2003-01-13', 21, '3', '2', 'Periyasamy.m', 'Daily wagers', 10000.00, 2, 0.00, 15000.00, 'Chennnai', 'Tambaram', '2402070050', '', '1', 'upload_files/candidate_tracker/73833788969_Ashok', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '2024-02-12', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:31:13', 110, '2024-02-08 05:37:03', 0, NULL, 1),
(16745, 'Mohammad Alfaz', '23', '8122449426', '', 'mdabsalyt88@gmail.com', '2002-05-08', 21, '6', '2', 'Azeez banbu', 'Catering business', 30000.00, 1, 216000.00, 264000.00, 'Chennai', 'Chennai', '2402070051', '', '2', 'upload_files/candidate_tracker/5527723425_Pi7_Mohammed_Alfaz_CV_11.pdf', NULL, '1', '2024-02-07', 3, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:47:13', 110, '2024-02-07 05:50:12', 0, NULL, 1),
(16746, 'Gayathri R', '23', '9361583696', '', 'ragayathri05@gmail.com', '2001-09-05', 22, '3', '2', 'Ramesh D', 'Teacher', 84000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2402070052', '', '1', 'upload_files/candidate_tracker/37366336359_Resume Gayathri.R.pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:50:38', 110, '2024-02-07 05:48:13', 0, NULL, 1),
(16747, 'Subhasri R', '13', '9363061687', '', 'Subhasri1603@gmail.com', '2002-03-16', 21, '3', '2', 'Rajaram s', 'Farmer', 10000.00, 1, 0.00, 3.70, 'Sivagangai', 'Chennai', '2402070053', '', '1', 'upload_files/candidate_tracker/65870751911_subha_resume.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:53:17', 110, '2024-02-08 05:33:41', 0, NULL, 1),
(16748, 'ArunKumar Ravi', '2', '6379014796', '', 'arunkumar435771@gmail.com', '2000-12-04', 23, '3', '2', 'Ravi V', 'Shop keeper', 20000.00, 1, 0.00, 20000.00, 'Madurai', 'Chennai', '2402070054', '', '1', 'upload_files/candidate_tracker/5001695169_Arunkumar_MERN.pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '2024-02-12', '3', '2', '', 'hold  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 06:58:37', 110, '2024-02-08 05:51:18', 0, NULL, 1),
(16749, '', '0', '9361556818', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402070055', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-07 07:01:37', 0, NULL, 0, NULL, 1),
(16750, 'Nandhakumar N', '13', '6382641069', '', 'Nnandhakumar1999@gmail.com', '1999-07-02', 24, '3', '2', 'Nagalingam', 'Auto driver', 55000.00, 3, 0.00, 2.30, 'Chengalpattu', 'Chennai', '2402070056', '', '1', 'upload_files/candidate_tracker/66318954344_NANDHAKUMAR-Resume.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 07:01:39', 110, '2024-02-08 05:40:45', 0, NULL, 1),
(16751, 'Sanjaikumar T', '13', '8754358862', '', 'sanjaikumartmtnphy2002@gmail.com', '2002-11-11', 21, '6', '2', 'Thirumurugan S', 'Cooli', 15000.00, 2, 0.00, 15000.00, 'virudhunagar', 'virudhunagar', '2402070057', '', '1', 'upload_files/candidate_tracker/9513615950_sanjaikumar.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 07:10:22', 110, '2024-02-08 05:40:15', 0, NULL, 1),
(16752, 'Mohamed asif Khan', '13', '8973886590', '7010863078', 'mohamedasifkhan3@gmail.com', '1997-05-29', 26, '3', '1', 'Hathijath aathika', 'House wife', 22000.00, 1, 22000.00, 25000.00, 'Ramanathapuram', 'Chennai', '2402070058', '', '2', 'upload_files/candidate_tracker/14440809701_Asif05(cv) (1).pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '2024-02-12', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-07 07:14:07', 110, '2024-02-08 05:41:19', 0, NULL, 1),
(16753, 'Dilip Kumar.V', '13', '9789805872', '9042678048', 'dilip.kumar.feb1802@gmail.com', '1998-02-18', 25, '3', '2', 'Vadivel.k', 'Metro water', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2402070059', '', '1', 'upload_files/candidate_tracker/88407833386_Dilip kumar_Resume.pdf', NULL, '1', '2024-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', 'rejected in aptitude', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 07:30:56', 110, '2024-02-09 09:39:48', 0, NULL, 1),
(16754, 'RAGHURAM R', '31', '8220495206', '6380125800', 'raghuram04122002@gmail.com', '2002-12-04', 21, '3', '2', 'Chitra R', 'House wife', 12000.00, 2, 0.00, 3.00, 'Ariyalur', 'Urapakkam,Chennai', '2402070060', '', '1', 'upload_files/candidate_tracker/20707645054_res2024.pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '3', '2', '', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 07:39:08', 110, '2024-02-07 05:42:43', 0, NULL, 1),
(16755, 'Gomathy jeyshree', '13', '9952350549', '', 'gomathyjeyshree15@gmail.com', '1998-06-28', 25, '6', '2', 'Kasi revathi', 'Noon meal coordinator', 10000.00, 1, 27000.00, 40000.00, 'Thoothukudi', 'Chennai', '2402070061', '', '2', 'upload_files/candidate_tracker/1971346408_jeyshree-1.pdf', NULL, '1', '2024-02-07', 15, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-07 09:09:23', 1, '2024-02-07 09:14:03', 0, NULL, 1),
(16756, 'MOHAMMED NADEEM K', '6', '9994142368', '', 'kmnkmn2010@gmail.com', '1987-12-06', 36, '2', '1', 'Aslam', 'Business', 10000.00, 3, 26000.00, 30000.00, 'Ambur', 'Periamet', '2402070062', '1', '2', 'upload_files/candidate_tracker/77310218764_Nadeem Resume.pdf', NULL, '1', '2024-02-08', 5, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-07 09:10:27', 108, '2024-02-08 03:52:55', 0, NULL, 1),
(16757, 'balasubramaniyam g', '13', '9003178871', '', 'cjbala814@gmail.com', '2000-09-08', 23, '3', '2', 'ganesan', 'gas supplier', 15000.00, 1, 0.00, 350000.00, 'chennai', 'chennai', '2402070063', '', '1', 'upload_files/candidate_tracker/18699275413_BALASUBRAMANIYAM Resume.pdf', NULL, '1', '2024-02-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '4', '2', '', 'Test Completed', '', '', NULL, NULL, NULL, 1, '2024-02-07 09:11:27', 110, '2024-02-07 05:41:43', 0, NULL, 1),
(16758, '', '0', '6369242095', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402070064', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-07 09:51:38', 0, NULL, 0, NULL, 1),
(16759, 'Elakiya Priya', '11', '9962516136', '8190076136', 'elakiyapriya364@gmail.com', '2001-01-03', 23, '3', '2', 'Thangam', 'Mechanic', 300000.00, 1, 293000.00, 360000.00, 'Chennai', 'Chennai', '2402070065', '', '2', 'upload_files/candidate_tracker/29785443487_Elakiya Priya Thangam (1).pdf', NULL, '1', '2024-02-07', 0, '', '5', '109', NULL, 0.00, '', '0', NULL, '2', 'Less Experience, More expectation.', '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-07 10:01:17', 1, '2024-02-07 10:03:37', 0, NULL, 1),
(16760, 'Surya. S', '13', '6383174573', '9751125977', 'suryasurya28082002@gmail.com', '2002-08-28', 21, '3', '2', 'Father-Sudhagar', 'Former', 5000.00, 2, 0.00, 30000.00, 'No5A, Main road Elakurichi, Ariyalur district.', 'Mathuravayal', '2402070066', '', '1', 'upload_files/candidate_tracker/56541611205_Surya Sudhagar (1).pdf', NULL, '1', '2024-02-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '4', '5', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-07 10:19:41', 110, '2024-02-07 05:16:28', 0, NULL, 1),
(16761, '', '0', '9159683706', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402070067', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-07 02:30:50', 0, NULL, 0, NULL, 1),
(16762, 'Praveen Kumar V', '13', '9500993809', '', 'praveenkumarv5556@gmail.com', '2001-06-01', 22, '3', '2', 'Vijayakumar K', 'MRF worker', 20000.00, 1, 0.00, 20000.00, 'Arakkonam', 'Arakkonam', '2402080001', '', '1', 'upload_files/candidate_tracker/76742015413_CV_2024011308591210.pdf', NULL, '1', '2024-02-08', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '1', '2', 'hold In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 04:24:45', 110, '2024-02-08 06:24:35', 0, NULL, 1),
(16763, 'Rahul S', '23', '9962057474', '', 'rahulsuresh2311@gmail.com', '2000-11-23', 23, '3', '1', 'Sivakumar H', 'Retired', 30000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2402080002', '', '1', 'upload_files/candidate_tracker/74254218028_Rahul suresh.pdf', NULL, '1', '2024-02-08', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 04:25:37', 1, '2024-02-08 04:59:26', 0, NULL, 1),
(16764, 'Javithhussain', '4', '9626422485', '', 'javithhussain314@gmail.com', '2003-04-23', 20, '2', '2', 'Hakkim raja', 'Ennore', 150000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2402080003', '1', '1', 'upload_files/candidate_tracker/80756296134_RESUME.pdf.pdf', NULL, '3', '2024-02-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-08 04:42:52', 108, '2024-02-08 12:26:31', 0, NULL, 1),
(16765, '', '0', '8778959467', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402080004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-08 04:48:38', 0, NULL, 0, NULL, 1),
(16766, 'V Manojkumar', '13', '7448517980', '', 'manoj251mk@gmail.com', '2001-05-02', 22, '3', '2', 'Vijayakumar k', 'retired government officer', 5000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2402080005', '', '1', 'upload_files/candidate_tracker/19618861003_Resume - ManojKumar.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:04:12', 110, '2024-02-08 06:19:02', 0, NULL, 1),
(16767, 'DhakshinaMoorthy', '13', '8939444769', '8122771706', 'dhakshina1602d@gmail.com', '2002-02-16', 21, '3', '2', 'Devika', 'House keeper', 25000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2402080006', '', '1', 'upload_files/candidate_tracker/69399213639_dhakshina resume.docx', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:11:15', 110, '2024-02-08 06:19:51', 0, NULL, 1),
(16768, 'Sandhya R', '13', '9498349070', '', 'sandhyasri0203@gmail.com', '2003-06-02', 20, '3', '2', 'Rose Saravanan K', 'Labour', 7000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2402080007', '', '1', 'upload_files/candidate_tracker/83759777827_Sandhya CV.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:13:16', 110, '2024-02-08 06:18:39', 0, NULL, 1),
(16769, 'Gokulkrishnan R', '13', '8939771599', '', 'krishnan.rd08@gmail.com', '2002-09-20', 21, '3', '2', 'Raghu G', 'Employee', 15000.00, 5, 0.00, 250000.00, 'Tiruvottiyur', 'Chennai', '2402080008', '', '1', 'upload_files/candidate_tracker/82987207908_Gokul CV.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:14:18', 110, '2024-02-08 06:18:18', 0, NULL, 1),
(16770, 'Kamatchi', '23', '9080131641', '9626213068', 'mahistr1404@gmail', '1999-04-14', 24, '6', '2', 'Abirami R', 'Cooli', 9000.00, 0, 0.00, 10000.00, 'Srivilliputtur', 'Srivilliputtur', '2402080009', '', '1', 'upload_files/candidate_tracker/73548790234_Resume.pdf', NULL, '1', '2024-02-08', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Rejected', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 05:14:51', 1, '2024-02-08 05:21:22', 0, NULL, 1),
(16771, '', '0', '7004986529', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402080010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-08 05:17:03', 0, NULL, 0, NULL, 1),
(16772, 'MohanPrasanth.K', '23', '8883782058', '8680867513', 'mohanprasanth1302@gmail.com', '1998-02-13', 25, '3', '2', 'Krishnan.C', 'Farmer,Tailor', 20000.00, 0, 200000.00, 300000.00, 'Krishnagiri', 'Chennai', '2402080011', '', '2', 'upload_files/candidate_tracker/31815791408_Mohanprasanth.K(1)_compressed.pdf', NULL, '1', '2024-02-08', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:19:37', 110, '2024-02-08 06:36:28', 0, NULL, 1),
(16773, 'Mohana priya.V', '6', '9524996101', '9159038935', 'mohanamoonu@gmail.com', '2000-05-13', 23, '2', '2', 'Una maheshwari.V', 'Computer Typerist', 30000.00, 1, 20000.00, 23000.00, 'Chennai', 'Chennai', '2402080012', '1', '2', 'upload_files/candidate_tracker/88155022277_New Doc 01-24-2024 09.35.pdf', NULL, '1', '2024-02-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Already She Working In Just Dail For Voice Process ,She Speak Well And She Has A Pay Slip  So We Decide Go With Their Last Salary ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-08 05:20:23', 108, '2024-02-08 03:53:34', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16774, 'Sriram kannan', '31', '7094896529', '', 'sriramkannan04@outlook.com', '1999-10-04', 24, '6', '2', 'Kannan', 'Computer center', 15000.00, 1, 0.00, 250000.00, 'Kovilpatti', 'Vadapalani', '2402080013', '', '1', 'upload_files/candidate_tracker/31046049622_SRIRAM.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:21:13', 110, '2024-02-08 06:20:25', 0, NULL, 1),
(16775, 'DURGADEVI K', '13', '9345046303', '', 'durgadevi26302@gmail.com', '2002-03-26', 21, '3', '2', 'KANNADASAN R', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'Chidambaram', 'Velachery, chennai', '2402080014', '', '1', 'upload_files/candidate_tracker/72013034746_durgadevi_B.E(cse)_2023_Java.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:21:23', 110, '2024-02-08 06:13:46', 0, NULL, 1),
(16776, 'Niyas Ahamed', '2', '6381271121', '', '3355niyas@gmail.com', '1999-04-28', 24, '3', '2', 'Ameen basha', 'Business', 20000.00, 1, 0.00, 300000.00, '1/A muslim street, palakarai, trichy -01', '1/A Muslim Street, Palakarai, Trichy -01', '2402080015', '', '1', 'upload_files/candidate_tracker/65864344202_Niyas Ahamed.pdf', NULL, '1', '2024-02-08', 0, '', '3', '54', '2024-02-26', 0.00, '', '3', '2025-02-21', '2', 'Technical Selected by Sathish and the final Round with Gokul and got seleceted', '2', '1', '1', '1', '8', '', '2', '2024-02-12', '2', '2', 'hold In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:23:18', 110, '2024-02-26 09:56:07', 0, NULL, 1),
(16777, 'Samraj Jayavel', '13', '7092084586', '', 'samambrose22@gmail.com', '2002-05-22', 21, '3', '2', 'Visalakshi k', 'Beautician', 10000.00, 1, 0.00, 1.50, 'Chennai', 'Chennai', '2402080016', '', '1', 'upload_files/candidate_tracker/49286357658_sam cv.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:26:00', 110, '2024-02-08 06:17:38', 0, NULL, 1),
(16778, 'DINESH K', '13', '9080787121', '', 'bharathdinesh555@gmail.com', '2002-03-05', 21, '3', '2', 'Kanniyappan', 'Carpenter', 48000.00, 1, 0.00, 3.50, 'Villupuram', 'Chennai', '2402080017', '', '1', 'upload_files/candidate_tracker/27752068231_resume_FS.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:27:34', 110, '2024-02-08 06:17:12', 0, NULL, 1),
(16779, 'Arun Krishnan', '2', '8940234306', '8807094306', 'arunkrish2611@gmail.com', '2000-11-26', 23, '6', '2', 'Siva subramanian k', 'Mechanic', 20000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2402080018', '', '1', 'upload_files/candidate_tracker/5892712082_Arunkrishnan-Resume-1-compressed.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:27:50', 110, '2024-02-08 06:16:48', 0, NULL, 1),
(16780, 'Gokul Raj R C', '13', '9080568681', '', 'gokulchinna27@gmail.com', '2002-07-27', 21, '3', '2', 'Ramasamy E', 'Painter', 70000.00, 0, 0.00, 3.40, 'Karur', 'Chennai', '2402080019', '', '1', 'upload_files/candidate_tracker/48496587937_Gokul R C-1.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:31:49', 110, '2024-02-08 06:18:00', 0, NULL, 1),
(16781, 'Nandhakumar S', '13', '6379948520', '', 'nandhakumarsivaraman@gmail.com', '2001-06-05', 22, '3', '2', 'Sivaraman S', 'Private Sector', 75000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2402080020', '', '1', 'upload_files/candidate_tracker/45739935063_S Nandhakumar resume-1.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:35:40', 110, '2024-02-08 06:19:32', 0, NULL, 1),
(16782, 'harulatha', '6', '9025698551', '7845404354', 'Lathacharu@gmail.com', '2001-06-22', 22, '1', '2', 'ramesh', 'driver', 15000.00, 0, 21000.00, 25000.00, 'Chennai', 'Chennai', '2402080021', '', '2', 'upload_files/candidate_tracker/44620490136_Charu Resume.pdf', NULL, '1', '2024-02-08', 0, '77827', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 05:39:48', 1, '2024-02-08 05:45:14', 0, NULL, 1),
(16783, 'Surya Moorthy K', '13', '6379977224', '', 'suryamoorthy4085@gmail.com', '2002-05-22', 21, '1', '2', 'Krishnamoorthy P', 'Labour', 25000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2402080022', '', '1', 'upload_files/candidate_tracker/97128770852_Resume _ Surya_Moorthy_K.pdf', NULL, '1', '2024-02-08', 0, 'Sathish', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 05:48:40', 110, '2024-02-08 06:14:48', 0, NULL, 1),
(16784, '', '0', '9385375846', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402080023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-08 05:50:19', 0, NULL, 0, NULL, 1),
(16785, 'S dhayalaprabakar', '6', '7200232700', '9976962247', 'Dhayalaprabakar333@gmail.Com', '2000-07-31', 23, '2', '2', 'P.Selvarasu', 'Lic agent', 20000.00, 1, 20000.00, 22000.00, 'DINDIGUL', 'Velachery', '2402080024', '1', '2', 'upload_files/candidate_tracker/37023925083_dhayalaprabakar.s (2).pdf', NULL, '1', '2024-02-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Is Well,But Dress Coding Is Not Proper.Will Check In The Training Period For His Performance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-08 05:57:03', 108, '2024-02-08 03:59:44', 0, NULL, 1),
(16786, 'Karthikeyan', '13', '7397072826', '9380170577', 'karthikeyankala21@gmail.com', '2001-02-21', 22, '3', '2', 'Perumal', 'Farmer', 15000.00, 2, 0.00, 20000.00, 'Tirukazhukundram', 'Tirukazhukundram', '2402080025', '', '1', 'upload_files/candidate_tracker/55137652935_Resume.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:09:03', 110, '2024-02-08 06:16:29', 0, NULL, 1),
(16787, 'C.SARAVANAN', '13', '8667223976', '9655453069', 'saravananempire007@gmail.com', '2003-06-22', 20, '3', '2', 'Chelladurai.p', 'Farmer', 6000.00, 3, 0.00, 15000.00, 'Pudukkottai', 'Velachery', '2402080026', '', '1', 'upload_files/candidate_tracker/86077564629_CV_202402080833324.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'Will Not Come In Our Eligibility Criteria', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:09:57', 110, '2024-02-08 05:27:00', 0, NULL, 1),
(16788, 'K.vijayasarathy', '13', '9345001728', '', 'vijayasarathi958@gmail.com', '1999-08-17', 24, '3', '2', 'V kalimuthu', 'Farmer', 28000.00, 1, 0.00, 2.50, 'Theni', 'Pallikarani', '2402080027', '', '1', 'upload_files/candidate_tracker/99092179689_vijay resume.pdf', NULL, '1', '2024-02-08', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2024-02-12', '2', '2', 'hold  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:10:00', 110, '2024-02-08 06:24:04', 0, NULL, 1),
(16789, 'M Gokulakannan', '13', '9361061543', '', 'gokulakanna1006@gmail.com', '2002-06-10', 21, '3', '2', 'Marimuthu', 'Farmer', 20000.00, 2, 0.00, 300000.00, 'dharmapuri', 'dharmapuri', '2402080028', '', '1', 'upload_files/candidate_tracker/34421214979_Gokul_cv.pdf', NULL, '1', '2024-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 06:10:55', 1, '2024-02-08 06:15:00', 0, NULL, 1),
(16790, 'SATHISH R', '13', '9655453069', '9976686700', 'sathishrdevelop@gmail.com', '2003-01-02', 21, '3', '2', 'Ramesh C', 'Farmer', 3000.00, 1, 0.00, 150000.00, 'Pudukkottai', 'Chennai', '2402080029', '', '1', 'upload_files/candidate_tracker/56050116464_CV_2023121316343631.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'Will Not Come In Our Eligibility Criteria', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:11:06', 110, '2024-02-08 05:27:32', 0, NULL, 1),
(16791, 'Elavarasan', '23', '8973738185', '7373123321', 'elavarasan.ravi7@gmail.com', '2000-10-30', 23, '6', '2', 'Ravi S', 'Tailor', 20000.00, 1, 0.00, 15000.00, 'Karur', 'Chennai', '2402080030', '', '2', 'upload_files/candidate_tracker/89614143314_RESUME - ELAVARASAN RAVI.pdf', NULL, '1', '2024-02-08', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 06:12:18', 1, '2024-02-08 06:22:37', 0, NULL, 1),
(16792, 'SYED SAJID S K', '13', '8682949269', '9840416044', 'rush15syedsajid@gmail.com', '2001-08-15', 22, '3', '2', 'SYED KHADER BASHA', 'Tailor', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2402080031', '', '1', 'upload_files/candidate_tracker/93832293381_SAJID 5.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:12:45', 110, '2024-02-08 06:15:10', 0, NULL, 1),
(16793, 'LOKESH S', '13', '7299543505', '8682949269', 'www.lokesh3505@gmail.com', '2002-03-18', 21, '3', '2', 'Chandramathi', 'Auto driver', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2402080032', '', '1', 'upload_files/candidate_tracker/74996699826_lokesh_resume[1].pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'Will Not Come In Our Eligibility Criteria', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:12:51', 110, '2024-02-08 05:26:33', 0, NULL, 1),
(16794, 'Dinesh.D', '31', '8489008123', '', 'dineshbalaji1321@gmail.com', '2001-05-13', 22, '3', '2', 'Dinagaran.v', 'Leather technician', 20000.00, 1, 0.00, 300000.00, 'Vaniyambadi', 'Vaniyambadi', '2402080033', '', '1', 'upload_files/candidate_tracker/58159576490_resume.d.docx', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', 'Will Not Come In Our Eligibility Criteria', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:12:56', 110, '2024-02-08 05:25:36', 0, NULL, 1),
(16795, 'Prasath V', '13', '9486685818', '9486658654', 'PRASATHV2806@GMAIL.COM', '2001-06-28', 22, '3', '2', 'Venkatesan R', 'NLC employee', 60000.00, 1, 0.00, 3.00, 'Neyveli', 'Neyveli', '2402080034', '', '1', 'upload_files/candidate_tracker/94122396650_Prasath.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:13:26', 110, '2024-02-08 05:30:42', 0, NULL, 1),
(16796, 'Dheena Dayalan', '33', '8925270836', '7092200248', 'dheenad326@gmail.com', '2002-03-13', 21, '3', '2', 'Ravi', 'Bike shop', 30000.00, 1, 16000.00, 16000.00, 'Chennai', 'Chennai', '2402080035', '', '2', 'upload_files/candidate_tracker/67818279756_Mr_R.Dheena_dayalan_Resume[1] (1) (1) (1).pdf', NULL, '1', '2024-02-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 06:13:42', 1, '2024-02-08 06:17:39', 0, NULL, 1),
(16797, 'M.sanjith', '4', '9710023829', '', 'sanjithhero24@gmail.com', '2003-03-07', 20, '3', '2', 'Muthiah.R', 'House wife', 6000.00, 0, 0.00, 13000.00, 'Chennai', 'Chennai', '2402080036', '', '1', 'upload_files/candidate_tracker/9253089478_sanjith resume..pdf', NULL, '1', '2024-02-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 06:14:27', 1, '2024-02-08 06:24:46', 0, NULL, 1),
(16798, 'Dharani anbalagan', '13', '7604833237', '9940984716', 'dharani22it22@gmail.com', '2000-09-20', 23, '3', '2', 'Anbalagan', 'Driving', 35000.00, 3, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2402080037', '', '1', 'upload_files/candidate_tracker/79079749708_Dharani cv ...pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:16:54', 110, '2024-02-08 06:16:10', 0, NULL, 1),
(16799, 'Vishnu A M', '4', '9952909703', '9791029408', 'amvishnu39@gmail.com', '2002-10-29', 21, '3', '2', 'Muralidharan A am', 'Tea shop', 20000.00, 0, 0.00, 13000.00, 'Chennai', 'Chennai', '2402080038', '', '1', 'upload_files/candidate_tracker/11424253661_ede56e77-db80-4f64-a1bc-7ff9c96df747.pdf', NULL, '1', '2024-02-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 06:17:06', 1, '2024-02-08 06:25:03', 0, NULL, 1),
(16800, '', '0', '8270240821', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402080039', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-08 06:21:33', 0, NULL, 0, NULL, 1),
(16801, 'SANJAY', '13', '8524029402', '', 'sanjaydme93232@gmail.com', '2001-06-22', 22, '3', '2', 'Babu', 'Driver', 15000.00, 1, 0.00, 15000.00, 'THENI', 'Velachery,Chennai.', '2402080040', '', '1', 'upload_files/candidate_tracker/15247769149_My Resume.pdf.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '1970-01-01', '3', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:22:35', 110, '2024-02-08 06:15:48', 0, NULL, 1),
(16802, 'Boopathi V', '31', '9384726415', '', 'boopathiv2001@gmail.com', '2001-03-11', 0, '3', '2', 'Velayutham', 'Cooli', 20000.00, 1, 0.00, 300000.00, 'Gobichettipalayam,Erode', 'Velachery,Chennai', '2402080041', '', '1', 'upload_files/candidate_tracker/77412828058_Boopathi V Resume.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '4', '7', '', '2', '1970-01-01', '2', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:23:14', 110, '2024-02-08 06:15:27', 0, NULL, 1),
(16803, 'Prithvi Raj', '13', '7539955179', '8324483224', 'prithvidce7539@gmail.com', '2009-02-08', 0, '3', '2', 'Saravana Kumar', 'Software engineer', 50000.00, 2, 0.00, 10000.00, 'Theni', 'Chennai', '2402080042', '', '1', 'upload_files/candidate_tracker/65155459707_prithviraj_full-stack_resume.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '4', '8', '', '2', '1970-01-01', '2', '2', '', 'will not come in our eligibility criteria', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:24:14', 110, '2024-02-08 05:25:07', 0, NULL, 1),
(16804, 'nandhagopal G', '13', '6380773719', '9095110536', 'nandhagopal9983@gmail.com', '1999-03-08', 25, '3', '2', 'gurusamy', 'farmer', 15000.00, 1, 0.00, 15000.00, 'erode', 'chennai', '2402080043', '', '1', 'upload_files/candidate_tracker/62695151982_NANDHAGOPALRESUME4444.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:26:47', 112, '2024-03-26 05:49:45', 0, NULL, 1),
(16805, 'PT Parkavi', '13', '9150760039', '6380282864', 'thaaranikavi@gmail.com', '2002-07-19', 21, '6', '2', 'Paramasivam', '70000', 6000.00, 2, 0.00, 2.40, 'Mayiladuthurai', 'Chennai', '2402080044', '', '1', 'upload_files/candidate_tracker/99072564478_parkavi pt.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:57:08', 110, '2024-02-08 05:48:50', 0, NULL, 1),
(16806, 'Nishanthini. R', '13', '9361897231', '', 'rajanishanthini5@gmail.com', '2001-12-12', 22, '6', '2', 'Raja', 'Farmer', 7000.00, 1, 0.00, 2.40, 'Thillaiyadi, Mayiladuthurai.', 'Saidapet', '2402080045', '', '1', 'upload_files/candidate_tracker/14393691365_Nishanthini.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 06:59:43', 110, '2024-02-08 05:48:16', 0, NULL, 1),
(16807, 'Celciya.I', '13', '7418028538', '6384911410', 'Celciya09@gmail.com', '2003-09-25', 20, '3', '2', 'Iruthayaraj', 'Collie', 20000.00, 1, 0.00, 20000.00, 'Thenkasi', 'Velachery Chennai', '2402080046', '', '1', 'upload_files/candidate_tracker/77258367277_Celciya. I.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 07:02:28', 110, '2024-02-08 05:33:00', 0, NULL, 1),
(16808, 'Bharathi.R', '13', '9962962780', '8939341459', 'bharathirajendran29@gmail.com', '2003-01-29', 21, '4', '2', 'Nagarani', 'Cooly', 8000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2402080047', '', '1', 'upload_files/candidate_tracker/13481203210_pdf_20231009_114946_0000.pdf', NULL, '1', '2024-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 07:04:53', 1, '2024-02-08 07:08:38', 0, NULL, 1),
(16809, 'Karthika. C', '13', '8903226495', '6369636634', 'Karthika15102@gmail.com', '2002-10-15', 21, '3', '2', 'Chellaiya.M', 'Coolie', 25000.00, 2, 0.00, 18000.00, 'Aruppukottai', 'Velachery Chennai', '2402080048', '', '1', 'upload_files/candidate_tracker/62571413034_CamScanner 02-08-2024 12.46.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 07:11:16', 110, '2024-02-08 05:31:40', 0, NULL, 1),
(16810, 'Mukesh Kannan S', '13', '8925421774', '', 'iammukeshkannans@gmail.com', '2002-04-20', 23, '2', '2', 'Sethuraman and Tamil Arasi', 'Business', 40000.00, 1, 250000.00, 450000.00, 'Chennai', 'Chennai', '2402080049', '1', '2', 'upload_files/candidate_tracker/37788093360_MukeshkannanFullstack1.docx', NULL, '1', '2026-03-12', 90, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2024-02-08 07:12:33', 1, '2026-03-10 04:00:57', 0, NULL, 1),
(16811, 'PRADEEP', '13', '9629407073', '9345763639', 'Epradeep202@gmail.com', '2002-11-05', 21, '3', '2', 'GOMATHI ELAYARAJA', 'Tailor', 15000.00, 2, 0.00, 450000.00, 'Namakkal', 'Navallur', '2402080050', '', '1', 'upload_files/candidate_tracker/26678564928_Pradeep E - CV.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'rejected  in aptitude round', '', '', NULL, NULL, NULL, 1, '2024-02-08 07:22:47', 110, '2024-02-08 05:29:08', 0, NULL, 1),
(16812, 'Kannan R', '31', '9344547441', '', 'kannanram152002@gmail.com', '2002-01-15', 22, '3', '2', 'Dhanalakshmi', 'Farmer', 10000.00, 1, 0.00, 400000.00, 'Salem', 'Chennai', '2402080051', '', '1', 'upload_files/candidate_tracker/33360972985_Kannan Resume-compressed.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 07:30:10', 110, '2024-02-08 05:31:21', 0, NULL, 1),
(16813, 'Devaraj', '13', '9150157981', '', 'devarajwebdev@gmail.com', '2001-07-29', 22, '3', '2', 'Venkatesen', 'Mason', 15000.00, 1, 0.00, 300000.00, 'Chennai', 'chennai', '2402080052', '', '1', 'upload_files/candidate_tracker/6792474899_Devaraj_V.pdf', NULL, '1', '2024-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 08:12:38', 1, '2024-02-08 08:49:30', 0, NULL, 1),
(16814, 'Jaya pragash.p', '13', '8072761200', '', 'jayapragash41120@gmail.com', '2000-11-04', 23, '3', '2', 'Packirisamy.c', 'Tailor', 15000.00, 3, 0.00, 300000.00, 'Thanjavur', 'Chennai', '2402080053', '', '1', 'upload_files/candidate_tracker/91474281958_jaya_prgash_cv.pdf', NULL, '1', '2024-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 08:15:05', 1, '2024-02-08 08:49:19', 0, NULL, 1),
(16815, 'SHRI KEERTHIVASAN K', '13', '9360494051', '', 'shrikeerthivasankannan@gmail.com', '2009-02-08', 0, '3', '2', 'Kannan M', 'Daily wager', 20000.00, 1, 0.00, 500000.00, 'Virudhunagar', 'Chennai', '2402080054', '', '1', 'upload_files/candidate_tracker/97907958081_SHRI KEERTHIVASAN-RESUME.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 08:15:32', 110, '2024-02-08 06:31:50', 0, NULL, 1),
(16816, 'Vignesh Babu', '13', '9962439817', '9361123124', 'vigneshbabu000@gmail.com', '2000-10-30', 23, '3', '2', 'Sivasubramaniam N S', 'Press edit', 20000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2402080055', '', '1', 'upload_files/candidate_tracker/85644843212_Vicky Resume FEB 2024.pdf', NULL, '1', '2024-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 08:16:31', 1, '2024-02-08 08:19:42', 0, NULL, 1),
(16817, 'Venkatesh Nagarajan', '2', '6382142933', '', 'venkateshnagarajan2001v@gmail.com', '2001-10-16', 22, '3', '2', 'Nagarajan', 'Farmer', 5000.00, 0, 0.00, 300000.00, 'Thanjavur', 'Thanjavur', '2402080056', '', '1', 'upload_files/candidate_tracker/93795589372_Venkatesh_nagarajan_cv.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '8', '', '2', '1970-01-01', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 08:16:54', 110, '2024-02-08 05:30:19', 0, NULL, 1),
(16818, 'HARIKRISHNAN M', '23', '8098790579', '9159446104', 'harimala017@gmail.com', '2001-07-17', 22, '3', '2', 'MANISEKAR R', 'Driver', 40000.00, 1, 0.00, 300000.00, 'PUDUKKOTTAI', 'KATTANKULATHUR', '2402080057', '', '1', 'upload_files/candidate_tracker/17142001600_HARIKRISHNAN M_RESUME.pdf', NULL, '1', '2024-02-08', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 08:32:13', 1, '2024-02-08 09:04:33', 0, NULL, 1),
(16819, 'Praveen S', '23', '7812834072', '8778844136', 'praveen.senthilkumar12@gmail.com', '2002-01-12', 22, '3', '2', 'Senthilkumar R', 'Agriculture', 8000.00, 1, 0.00, 2.50, 'Dindigul -624702', 'Thambaram sanatorium', '2402080058', '', '1', 'upload_files/candidate_tracker/39102008638_PRAVEEN', NULL, '1', '2024-02-08', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected', 'Rejected', '', '', NULL, NULL, NULL, 1, '2024-02-08 08:33:44', 110, '2024-02-08 06:31:20', 0, NULL, 1),
(16820, 'Balaji M', '2', '8608411655', '', 'balajibca27062001@gmail.com', '2001-06-27', 22, '3', '2', 'M Manikandan', 'Business', 11000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2402080059', '', '1', 'upload_files/candidate_tracker/90863885134_M.Balaji_BCA_RESUME_2024 (1).pdf', NULL, '1', '2024-02-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 08:44:17', 1, '2024-02-08 08:53:15', 0, NULL, 1),
(16821, 'N sowmyasri', '13', '7397120679', '9361763974', 'sowmyasri1006@gmail.com', '2001-06-15', 22, '3', '2', 'E.Nandagopal', 'Hairstylist (cine)', 15000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2402080060', '', '1', 'upload_files/candidate_tracker/39166302855_SOWMYASRI N.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '2', '2', '', '2', '1970-01-01', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 08:57:42', 110, '2024-02-08 05:29:54', 0, NULL, 1),
(16822, 'Lakshmipathy C', '13', '9786690929', '9087382398', 'lakshmipathy311@gmail.com', '2001-01-31', 23, '3', '2', 'Chitti Babu', 'Farmer', 10000.00, 1, 0.00, 30000.00, 'Kundrathur ,Chennai', 'Chennai', '2402080061', '', '1', 'upload_files/candidate_tracker/63236002133_Lakshmipathy Resume.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '2', '2', '', '2', '1970-01-01', '3', '2', 'Rejected  In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 08:59:14', 110, '2024-02-08 05:49:54', 0, NULL, 1),
(16823, 'SHAIK ASIF', '13', '8341756100', '', 'shaikasif43210@gmail.com', '2002-07-10', 21, '3', '2', 'Rahamthulla', 'Farmer', 300000.00, 3, 0.00, 300000.00, 'NANDAVARAM', 'Tambaram', '2402080062', '', '1', 'upload_files/candidate_tracker/22241179275_Asif New2 Resume (1).pdf', NULL, '1', '2024-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2024-02-08 09:30:07', 1, '2024-02-08 09:37:26', 0, NULL, 1),
(16824, 'Linga kumar P', '13', '9384987657', '7598139466', 'lingakumarp22@gmail.com', '1993-04-22', 30, '3', '1', 'Deepika K', 'Medical Transcription', 18.00, 2, 0.00, 15000.00, 'Tindivanam', 'Chennai', '2402080063', '', '1', 'upload_files/candidate_tracker/79703744924_linga sw6.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 09:30:22', 110, '2024-02-08 05:32:30', 0, NULL, 1),
(16825, 'Karmugilan', '13', '7639686722', '', 'karmugilan029@gmail.com', '2003-07-26', 20, '3', '2', 'Palanidurai', 'Farmar', 20000.00, 1, 0.00, 15000.00, 'Perugavazhndan', 'Chennai', '2402080064', '', '1', 'upload_files/candidate_tracker/74843807654_KARMUGILAN RESUME.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 09:33:06', 110, '2024-02-08 05:31:00', 0, NULL, 1),
(16826, 'SELVAKUMAR.P', '13', '7708407892', '', 'messiselvavj@gmail.com', '2000-06-05', 23, '3', '2', 'ELAIYARAJA.P', 'FRUITS SHOP', 8000.00, 1, 0.00, 20000.00, 'CUDDALORE', 'SAIDAPET', '2402080065', '', '1', 'upload_files/candidate_tracker/27994138500_P.SELVAKUMAR 2.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'Rejected  In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-08 09:33:58', 110, '2024-02-08 05:32:03', 0, NULL, 1),
(16827, 'CHINNARASU K', '13', '7550101356', '', 'chinnarasuk88@gmail.com', '1999-05-31', 24, '3', '2', 'KUMARESAN', 'FARMER', 20000.00, 1, 0.00, 250000.00, 'Dharmapuri', 'CHENNAI', '2402080066', '', '1', 'upload_files/candidate_tracker/72970112684_CHINNARASU-K-1.pdf', NULL, '1', '2024-02-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'Rejected', '', '', '', NULL, NULL, NULL, 1, '2024-02-08 09:42:39', 110, '2024-02-08 06:32:19', 0, NULL, 1),
(16828, 'Gokulakrishnan V', '13', '9092686272', '', 'gokulakrishnanv1998@gmail.com', '1998-11-09', 25, '3', '2', 'Vengadesan N', 'Driver', 20000.00, 1, 0.00, 250000.00, 'Villupuram', 'Villupuram', '2402080067', '', '1', 'upload_files/candidate_tracker/40713318434_Gokul_Cv.pdf', NULL, '1', '2024-02-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-08 09:42:52', 1, '2024-02-08 09:47:32', 0, NULL, 1),
(16829, 'L.Jayashree', '21', '6382951400', '', 'jayashreeloganathan42@gmail.com', '2001-12-17', 22, '6', '2', 'L.Sumathi', 'Labour', 8000.00, 1, 0.00, 15000.00, 'Gummidipoondi', 'Gummidipoondi', '2402090001', '', '1', 'upload_files/candidate_tracker/65793388458_DOC-20231106-WA0019..pdf', NULL, '1', '2024-02-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 03:09:19', 1, '2024-02-09 09:15:11', 0, NULL, 1),
(16830, '', '0', '9360374156', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402090002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-09 03:13:26', 0, NULL, 0, NULL, 1),
(16831, '', '0', '6379306315', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402090003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-09 03:24:10', 0, NULL, 0, NULL, 1),
(16832, '', '0', '6379660461', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402090004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-09 04:04:25', 0, NULL, 0, NULL, 1),
(16833, 'Dhivya Raviswamy', '23', '6369321055', '', 'dhivyaraviswamy25@gmail.com', '2000-11-25', 23, '3', '2', 'Raviswamy K', 'Supervisor', 10000.00, 1, 0.00, 25000.00, 'Ranipet', 'Ranipet', '2402090005', '', '1', 'upload_files/candidate_tracker/83060860784_Dhivya CV-compressed-8.pdf', NULL, '1', '2024-02-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 04:20:55', 1, '2024-02-09 04:25:29', 0, NULL, 1),
(16834, 'Yuvaraj H', '23', '9600803631', '', 'Hyuvaraj42@gmail.com', '2001-05-10', 22, '3', '2', 'Haribabu N', 'Salesman', 10000.00, 2, 0.00, 20000.00, 'Chidambaram', 'Chidambaram', '2402090006', '', '1', 'upload_files/candidate_tracker/21063026939_HY Resume-1-compressed.pdf', NULL, '1', '2024-02-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 04:22:26', 1, '2024-02-09 04:47:52', 0, NULL, 1),
(16835, 'Thamaraiselvi', '23', '6381461437', '', 'Thamsiva14@gmail.com', '2002-11-14', 21, '3', '2', 'Sivakumar', 'N/A', 20000.00, 1, 0.00, 25000.00, 'Kanchipuram', 'Kanchipuram', '2402090007', '', '1', 'upload_files/candidate_tracker/12340855064_Resume-1-compressed.pdf', NULL, '1', '2024-02-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 04:26:53', 1, '2024-02-09 04:43:28', 0, NULL, 1),
(16836, 'Bhavadharani M', '4', '8144491020', '', 'bhavabommi@gmail.com', '1999-04-24', 24, '2', '2', 'Gowri', 'Nill', 15000.00, 1, 15000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2402090008', '1', '2', 'upload_files/candidate_tracker/5887728465_BHAVADHARANI RESUME.pdf', NULL, '1', '2024-02-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-09 04:29:11', 108, '2024-02-12 03:58:11', 0, NULL, 1),
(16837, 'Sathyamoorthy.R', '13', '9345267051', '8608838644', 'sathyamoorthysathya409@gmail.com', '2003-05-27', 20, '3', '2', 'Rajasekar', 'Farmer', 25000.00, 3, 0.00, 1.50, 'Tirupathur', 'Chrompet, Chennai', '2402090009', '', '1', 'upload_files/candidate_tracker/74513489420_sathya resume1.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 04:29:52', 110, '2024-02-09 06:19:05', 0, NULL, 1),
(16838, 'Gokula preethi', '11', '9025813145', '7010120062', 'gokulapreethipreethi@gmail.com', '1998-11-26', 25, '6', '2', 'Padmavathi', 'Home maker', 72000.00, 1, 0.00, 25000.00, 'Vellore', 'Chennai', '2402090010', '', '2', 'upload_files/candidate_tracker/4143378034_Gokula Preethi. S.pdf', NULL, '1', '2024-02-09', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 04:30:17', 1, '2024-02-09 04:40:38', 0, NULL, 1),
(16839, 'SAHAYA JENITH X', '11', '9840726451', '6369429129', 'Crushjenith@gmail.com', '2001-03-30', 22, '6', '2', 'XAVIER.P', 'FISHERMAN', 7000.00, 2, 0.00, 18000.00, 'Tondiarpet', 'Tondiarpet', '2402090011', '', '1', 'upload_files/candidate_tracker/44995934305_SJ RESUME UPDATED 2023.pdf', NULL, '1', '2024-02-09', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 04:49:06', 1, '2024-02-09 05:04:08', 0, NULL, 1),
(16840, 'Swetha R', '11', '7904440264', '', 'swetharengarajan1310@gmail.com', '1996-10-13', 27, '6', '1', 'Prashanth', 'Logistics executive', 40000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2402090012', '', '1', 'upload_files/candidate_tracker/38323717682_Resume_12-Dec-23_11.43.51.pdf', NULL, '1', '2024-02-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 04:49:50', 110, '2024-02-09 10:33:59', 0, NULL, 1),
(16841, 'Sabaripriya', '11', '7639789631', '', '123saba93@gmail.com', '1993-05-31', 30, '3', '1', 'Rajamanivannan', 'Manager(hotel)', 200000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2402090013', '', '1', 'upload_files/candidate_tracker/66100920108_PRIYA-converted (1).pdf', NULL, '1', '2024-02-09', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 04:50:18', 1, '2024-02-09 04:57:13', 0, NULL, 1),
(16842, 'Dineshkumar V', '11', '9600698724', '', 'dineshveera178@gmail.com', '2000-08-17', 23, '1', '2', 'R.Veerasamy', 'Driver', 30000.00, 1, 0.00, 17000.00, 'Vandavasi', 'Anna nagar, chennai', '2402090014', '', '1', 'upload_files/candidate_tracker/17876861181_dk resume 1.pdf', NULL, '1', '2024-02-09', 0, 'Sathish', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 05:07:05', 1, '2024-02-09 05:12:49', 0, NULL, 1),
(16843, 'Sanjay Kumar s', '13', '9360150653', '9566154933', 'ssanjay0310@gmail.com', '2001-10-03', 22, '3', '2', 'Srinivasan', 'Turner', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2402090015', '', '1', 'upload_files/candidate_tracker/9807538772_zohoresume.docx', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:10:50', 110, '2024-02-09 06:19:28', 0, NULL, 1),
(16844, 'Kameshwaran', '13', '8760091403', '7708222637', 'Kameshwaran87600@gmail.com', '2000-12-11', 23, '3', '2', 'Sivakumar', 'Farmer', 25000.00, 1, 0.00, 300000.00, 'Karur', 'Velachery,chennai', '2402090016', '', '1', 'upload_files/candidate_tracker/98228537845_CV_compressed.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:11:52', 110, '2024-02-09 06:19:46', 0, NULL, 1),
(16845, 'Venkatesh K', '13', '9042938453', '7358311789', 'venkatesh2001chennai@gmail.com', '2001-04-24', 22, '3', '2', 'Kumar P', 'Driver', 12000.00, 2, 0.00, 450000.00, 'Medavakkam, chennai 600100', 'Medavakkam, chennai 600100', '2402090017', '', '1', 'upload_files/candidate_tracker/67685630603_Venkatesh CV (2).pdf', NULL, '1', '2024-02-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 05:15:06', 1, '2024-02-09 05:18:35', 0, NULL, 1),
(16846, 'jagan nivas', '23', '7010028449', '9865558252', 'jagannivas456@gmail.com', '2000-07-17', 23, '4', '2', 'saketh raman', 'business', 70000.00, 2, 0.00, 18000.00, 'perambalur', 'chennai', '2402090018', '', '1', 'upload_files/candidate_tracker/86907856972_Jagan Nivas Resume.pdf', NULL, '1', '2024-02-09', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 05:16:13', 1, '2024-02-09 05:26:44', 0, NULL, 1),
(16847, 'Santhosh Murugesan', '23', '8939335036', '', 'santhoshmanik252@gmail.com', '1999-02-25', 24, '4', '2', 'Murugesan', 'Business', 60000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2402090019', '', '1', 'upload_files/candidate_tracker/56224108343_SanthoshMurugesanResume.pdf', NULL, '1', '2024-02-09', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 05:17:02', 1, '2024-02-09 05:26:07', 0, NULL, 1),
(16848, 'Naveenkumar.R', '23', '9787940155', '9344467345', 'naveenkumarraju38@gmail.com', '2000-08-09', 23, '6', '2', 'Singari', 'House wife', 20000.00, 0, 0.00, 20000.00, 'Namakkal', 'Chennai', '2402090020', '', '1', 'upload_files/candidate_tracker/48588756459_Naveen kumar resume.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:17:59', 110, '2024-02-09 06:42:06', 0, NULL, 1),
(16849, 'Satheesh R', '13', '6374585893', '', 'rsatheesh313@gmail.com', '2001-01-03', 23, '3', '2', 'Ravichandran P', 'Farmer', 20000.00, 1, 0.00, 300000.00, 'Namakkal', 'Namakkal', '2402090021', '', '1', 'upload_files/candidate_tracker/7845084506_Rover_Resume.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:18:27', 110, '2024-02-09 06:20:46', 0, NULL, 1),
(16850, 'Tharani', '4', '9790461418', '', 'Balatharu86@gmail.com', '1998-10-08', 25, '2', '1', 'Balasubramani', 'Building construction', 15000.00, 1, 0.00, 10000.00, 'THANJAVUR', 'THANJAVUR', '2402090022', '1', '1', 'upload_files/candidate_tracker/88902458145_DOC-20240208-WA0003.pdf', NULL, '1', '2024-02-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales,', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-09 05:21:30', 108, '2024-02-12 03:57:55', 0, NULL, 1),
(16851, 'SRINIVASAN M', '13', '7094002705', '9025773895', 'srinivasan23477@gmail.com', '2002-08-08', 21, '3', '2', 'MUNIVEL M', 'DRIVER', 60000.00, 2, 0.00, 2.00, '265/114, SATHIYAMANGALAM, VELLORE', '265/114, SATHIYAMANGALAM, VELLORE', '2402090023', '', '1', 'upload_files/candidate_tracker/45719915974_SRINIRESUME.pdf', NULL, '1', '2024-02-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 05:25:20', 1, '2024-02-09 05:41:12', 0, NULL, 1),
(16852, 'riyas mohideen', '13', '9790779796', '6383075300', 'Riyas.unicorn786@gmail.com', '2001-02-04', 23, '3', '2', 'parent', 'machine operator', 20000.00, 1, 0.00, 400000.00, 'chennai', 'chennai', '2402090024', '', '1', 'upload_files/candidate_tracker/8971076887_Riyas07resume.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:25:27', 110, '2024-02-09 06:23:43', 0, NULL, 1),
(16853, 'Manikandan', '2', '8526538112', '', 'maniit3060@gmail.com', '2000-05-03', 23, '3', '2', 'Mohan R', 'Farmer', 20000.00, 1, 200000.00, 250000.00, '488,North St, Perumal Palayam, Thuraiyur,Trichy', '4 st, Mahalakshmi nagar, poonamalle, Chennai', '2402090025', '', '2', 'upload_files/candidate_tracker/73477006747_manikandanUpdateNewResuem .pdf', NULL, '1', '2024-02-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 05:26:06', 1, '2024-02-09 05:30:55', 0, NULL, 1),
(16854, 'Rampillai T', '31', '6374207589', '', 'ramapillaithirumurugan@gmail.com', '1999-12-10', 24, '3', '2', 'Thirumurugan', 'Farmer', 35000.00, 1, 0.00, 300000.00, 'Dindigul', 'Chennai', '2402090026', '', '1', 'upload_files/candidate_tracker/76937137671_Ramapillai resume (2).doc', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:27:45', 110, '2024-02-09 06:22:13', 0, NULL, 1),
(16855, 'Surya veeramani', '2', '7305772645', '', 'Suryaveeramani0044@gmail.com', '2000-04-04', 23, '3', '2', 'Veeramani', 'Temple builder', 20000.00, 2, 20000.00, 35000.00, 'Dharmapuri', 'Dharmapuri', '2402090027', '', '2', 'upload_files/candidate_tracker/27891949221_surya react developer.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:28:21', 110, '2024-02-09 06:22:39', 0, NULL, 1),
(16856, 'Franklin Thaspianraj S', '13', '7339483506', '6380772366', 'frank17thas@gmail.com', '2000-06-17', 23, '3', '2', 'Selvaraj Francis T M', 'Driver', 20000.00, 0, 0.00, 200000.00, 'Tuticorin', 'Chennai', '2402090028', '', '1', 'upload_files/candidate_tracker/73302301842_Franklin Thaspianraj S.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:30:26', 110, '2024-02-09 06:40:52', 0, NULL, 1),
(16857, 'Vinay kumar', '13', '9652900420', '', 'vk2336256@gmail.com', '2001-01-05', 23, '3', '2', 'Father', 'Farmer', 10000.00, 2, 0.00, 400000.00, 'Chennai', 'Chennai', '2402090029', '', '1', 'upload_files/candidate_tracker/21112903152_vinay kumar D (1).pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:33:21', 110, '2024-02-09 06:36:16', 0, NULL, 1),
(16858, 'Vickey G', '13', '9159578039', '9080894201', 'vickeypotter143@gmail.com', '2002-06-07', 21, '3', '2', 'Ganesan M', 'Electrician', 25000.00, 0, 0.00, 300000.00, 'Tiruttani', 'Tiruttani', '2402090030', '', '1', 'upload_files/candidate_tracker/41208347647_vickey resume.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:33:29', 110, '2024-02-09 06:40:33', 0, NULL, 1),
(16859, 'Saranya S', '31', '9486403739', '9486548211', 'saransri1204@gmail.com', '1992-11-14', 31, '3', '2', 'Selvi', 'Software Engineer', 12000.00, 2, 375000.00, 900000.00, 'Thiruchirapalli', 'Thiruchirapalli', '2402090031', '', '2', 'upload_files/candidate_tracker/33167206744_4815585981.pdf', NULL, '1', '2024-02-09', 5, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 05:35:34', 1, '2024-02-09 05:40:30', 0, NULL, 1),
(16860, '', '0', '6382475389', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402090032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-09 05:36:26', 0, NULL, 0, NULL, 1),
(16861, 'Anitha R', '6', '7338927034', '9150274484', 'anitha.rramamoorthy@gmail.com', '2001-07-20', 22, '6', '2', 'Ramamoorthy', 'Daily wages', 86000.00, 1, 21000.00, 24000.00, 'Mathur, Chennai', 'Mathur, Chennai', '2402090033', '', '2', 'upload_files/candidate_tracker/58362822889_Anitha Resume.pdf', NULL, '1', '2024-02-09', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She has good communication skill and well performed in one to one discussion.previous salary 21k she earned but now she is expecting 25K,but we will provide 18k to her.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:37:55', 110, '2024-02-09 05:16:30', 0, NULL, 1),
(16862, 'C.Mohindar', '31', '9677484498', '', 'mohindarchandru1998@gmail.com', '1998-07-27', 25, '3', '2', 'K.Chandru', 'Grocery shop', 40000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2402090034', '', '1', 'upload_files/candidate_tracker/71282813528_Mohindarchandru.resume.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:37:55', 110, '2024-02-09 06:21:54', 0, NULL, 1),
(16863, 'Pazhaniyamma k', '13', '6382205658', '9751392073', 'pazhaniyammakumar04@gmail.com', '2003-01-04', 21, '3', '2', 'Kumar', 'Formar', 42000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2402090035', '', '1', 'upload_files/candidate_tracker/90019127875_Pazhaniyamma Kumar Resume 01Feb24 (1) (1).pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:38:53', 110, '2024-02-09 06:20:26', 0, NULL, 1),
(16864, 'Ragul S', '13', '9941811451', '6374430247', 'ragul.sbca@gmail.com', '2002-11-02', 21, '3', '2', 'Saravanan', 'Carpenter', 72000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2402090036', '', '1', 'upload_files/candidate_tracker/83175180451_my resume.docx', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:39:27', 110, '2024-02-09 06:22:59', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16865, 'Vanithasree', '13', '9384538255', '9363477717', 'subramanivanithasree@gmail.com', '2001-05-23', 22, '3', '2', 'Subramanian', 'Sales man in automobile', 72000.00, 1, 0.00, 400000.00, 'Salem', 'Chennai', '2402090037', '', '1', 'upload_files/candidate_tracker/88637737181_Resume Final.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:39:29', 110, '2024-02-09 06:20:13', 0, NULL, 1),
(16866, 'Kavitha', '13', '9677316020', '9994872810', 'Kavitha02.d@gmail.com', '2002-07-26', 21, '3', '2', 'Duraisamy', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Perambalur', 'Kovilapakkam', '2402090038', '', '1', 'upload_files/candidate_tracker/46969771906_kavitha .pdf', NULL, '1', '2024-02-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 05:40:06', 1, '2024-02-09 05:51:12', 0, NULL, 1),
(16867, 'Gokulakrishnan v', '2', '6381135781', '9791518895', 'gokulram2092001@gmail.com', '2001-09-02', 22, '3', '2', 'Vinayagam a', 'Farmer', 10000.00, 1, 0.00, 17000.00, 'Chengalpattu', 'Chengalpattu', '2402090039', '', '1', 'upload_files/candidate_tracker/18767843013_gokulakrishnan resume.docx', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:40:36', 110, '2024-02-09 06:42:38', 0, NULL, 1),
(16868, 'Umeshraj M', '13', '9080266854', '9080576218', 'umeshraj.mbca@gmail.com', '2003-04-11', 20, '3', '2', 'Murugan', 'Watch center', 72000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2402090040', '', '1', 'upload_files/candidate_tracker/93245727276_Umeshraj.m.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:41:14', 110, '2024-02-09 06:41:51', 0, NULL, 1),
(16869, 'Divakar B', '13', '6382791334', '', 'imdivakar18@gmail.com', '1999-10-22', 24, '3', '2', 'Balamurugan K', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'Vellore', 'Vellore', '2402090041', '', '1', 'upload_files/candidate_tracker/19771465744_Divakar_B_M.sc_physics_2022_python_developer.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:41:30', 110, '2024-02-09 06:21:09', 0, NULL, 1),
(16870, 'Vignesh d', '13', '7358440078', '7358450903', 'vignesh.dbca2020@gmail.com', '2002-05-04', 21, '3', '2', 'Dhandapani', 'Farmer', 72000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2402090042', '', '1', 'upload_files/candidate_tracker/32621485434_vicky resume.docx', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:41:30', 110, '2024-02-09 06:23:18', 0, NULL, 1),
(16871, 'Abithakshini BR', '13', '9361568088', '', 'abithakshinibme@gmail.con', '2002-01-11', 22, '3', '2', 'Bairava Kumar', 'Driver', 120000.00, 0, 0.00, 300000.00, 'Singampunari', 'Chennai', '2402090043', '', '1', 'upload_files/candidate_tracker/79383785764_Abithakshini Resume (AWS).pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:41:41', 110, '2024-02-09 06:41:09', 0, NULL, 1),
(16872, 'Vijitha.R', '2', '9629956252', '9344547441', 'vijitharamachandran00@gmail.com', '2000-06-30', 23, '3', '2', 'Dhanalaksmi.R', 'Farmer', 10000.00, 1, 0.00, 17000.00, 'Salem', 'Chennai', '2402090044', '', '1', 'upload_files/candidate_tracker/75797900572_Vijitha -Resume.pdf', NULL, '1', '2024-02-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 05:42:01', 1, '2024-02-09 05:54:09', 0, NULL, 1),
(16873, 'Ragu. R', '6', '8610366153', '9080129652', 'Ragu82625@gmail.com', '2000-03-16', 23, '3', '2', 'Rajamanikam', 'Private', 30000.00, 2, 20000.00, 25000.00, 'Tiruvannamalai', 'Velachery', '2402090045', '', '2', 'upload_files/candidate_tracker/173018261_ragu.docx', NULL, '1', '2024-02-09', 0, '', '4', '29', NULL, 0.00, '', '0', NULL, '1', 'candidate okay selected for next round', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 05:42:21', 1, '2024-02-09 05:48:16', 0, NULL, 1),
(16874, 'B.Narayanan', '31', '9080191136', '', 'narayananbala2411@gmail.com', '1997-04-26', 26, '3', '2', 'Balasubramaniyan', 'Foreman', 25000.00, 1, 0.00, 18000.00, 'Thoothukudi', 'Chennai', '2402090046', '', '1', 'upload_files/candidate_tracker/34752857022_B.Narayanan@10.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:43:35', 110, '2024-02-09 06:21:23', 0, NULL, 1),
(16875, 'MANOJ KUMAR M', '13', '9003198578', '', 'mk391982@gmail.com', '1998-05-04', 25, '6', '2', 'Meyyapparaj R', 'Lab technician', 30000.00, 1, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2402090047', '', '1', 'upload_files/candidate_tracker/5205626898_Manojkumar_1998 (3).pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:45:40', 110, '2024-02-09 06:28:49', 0, NULL, 1),
(16876, 'Sathish Kumar S', '13', '9962375347', '9445665846', 'sathish1007kumar@gmail.com', '2002-07-10', 0, '3', '2', 'R.srinivasan', 'State Bank of India retired', 65.00, 1, 0.00, 300000.00, 'Perambur locoworks', 'Perambur locoworks', '2402090048', '', '1', 'upload_files/candidate_tracker/92844957176_SATHISH KUMAR FINALLY UPDATED RESUME 123.docx', NULL, '1', '2024-09-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 05:47:31', 1, '2024-02-09 05:48:09', 0, NULL, 1),
(16877, 'Dhanam.k', '31', '9342304088', '9342304089', 'dhanamk14054@gmail.com', '2001-08-05', 22, '3', '2', 'Kanniyappan.r', 'Sick', 10.00, 2, 0.00, 10000.00, 'Ambattur Chennai', 'Ambattur Chennai', '2402090049', '', '1', 'upload_files/candidate_tracker/59214561243_DOC-20240205-WA0003..docx', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '6', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:50:10', 110, '2024-02-09 06:31:04', 0, NULL, 1),
(16878, 'Navin Kumar B', '12', '6379281032', '', 'arun@cafsindia.com', '1990-09-27', 33, '3', '1', 'n divya', 'house wife', 26000.00, 0, 30000.00, 260000.00, 'madhavaram', 'madhavaram', '2402090050', '', '2', 'upload_files/candidate_tracker/36445686876_Srinivasan Final.docx', NULL, '1', '2024-02-09', 0, '', '3', '59', '2024-02-16', 312000.00, '', NULL, '2024-09-06', '2', 'Selected for Driver - Consultant Role', '3', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '5', 'baskarnaveenkumar@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:51:26', 60, '2024-02-16 11:35:05', 0, NULL, 1),
(16879, 'Yokeshkumar', '13', '9941279557', '8608931880', 'yokeshkumar974@gmail.com', '2003-05-01', 20, '3', '2', 'G.prabhakaran', 'Machine operator', 180000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2402090051', '', '1', 'upload_files/candidate_tracker/95115707495_Resume-4.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:56:09', 110, '2024-02-09 06:31:55', 0, NULL, 1),
(16880, 'Sivaranganathan K', '13', '7373993401', '9043167323', 'cemcasivaranganathan23@gmail.com', '2001-03-26', 22, '3', '2', 'Krishnan P', 'Weaving', 8000.00, 1, 0.00, 20000.00, 'Rasipuram, Namakkal', 'Perungudi, chennai', '2402090052', '', '1', 'upload_files/candidate_tracker/61211961816_sivaranganathan k resume 2024.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected In Aptitude Round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 05:56:58', 110, '2024-02-09 06:30:24', 0, NULL, 1),
(16881, 'Srinivasan v', '31', '9698998829', '6383666545', 'Srinivasanv4072@gmail.com', '1997-02-16', 26, '3', '1', 'Vedhagiri', 'Coolie', 13000.00, 2, 0.00, 25000.00, 'Chengalpattu', 'Chengalpattu', '2402090053', '', '1', 'upload_files/candidate_tracker/97940419619_Srinivasanv.pdf', NULL, '1', '2024-02-09', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:00:42', 110, '2024-02-09 12:29:43', 0, NULL, 1),
(16882, 'Sugan S', '13', '9789849231', '', 'sugan8203@gmail.com', '2002-07-27', 21, '3', '2', 'Sunadarapandian .s', 'Taxi Driver', 18000.00, 1, 0.00, 18000.00, 'Chennai', 'Palavanthangal', '2402090054', '', '1', 'upload_files/candidate_tracker/97199408696_Resume.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:01:54', 110, '2024-02-09 06:31:40', 0, NULL, 1),
(16883, 'Rama Raghu', '31', '9345014831', '9167829156', 'ramaraghunathan18@gmail.com', '2000-11-18', 23, '3', '2', 'Pappa', 'House wife', 17250.00, 0, 0.00, 300000.00, 'Tirunelveli', 'Chennai', '2402090055', '', '1', 'upload_files/candidate_tracker/34253581539_RamaRaghu.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:02:21', 110, '2024-02-09 06:30:46', 0, NULL, 1),
(16884, 'KISHORE KUMAR', '13', '6384853520', '9941363239', 'kishorekumara15052001@gmail.com', '2001-05-15', 22, '3', '2', 'ARUNAGIRI V', 'TILES LAYER', 40000.00, 1, 0.00, 19000.00, 'chennai', 'chennai', '2402090056', '', '1', 'upload_files/candidate_tracker/33763280145_Kishore.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:03:00', 110, '2024-02-09 06:32:24', 0, NULL, 1),
(16885, 'Shyam Sewag', '13', '9677293474', '', 'shyamshewak@gmail.com', '2002-02-13', 21, '3', '2', 'Bharathidasan', 'Sewaing Machine Mechanic', 13000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2402090057', '', '1', 'upload_files/candidate_tracker/48633828446_Shyam-Sewag.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:03:17', 110, '2024-02-09 06:31:23', 0, NULL, 1),
(16886, 'Balaji p', '13', '7397396689', '9962697643', 'Balajip210701@gmail.com', '2001-07-21', 22, '3', '2', 'Perumal', 'Business', 18000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2402090058', '', '1', 'upload_files/candidate_tracker/85207170142_Balaji.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:03:18', 110, '2024-02-09 06:34:14', 0, NULL, 1),
(16887, 'Naveen P', '13', '9894831420', '9842023893', 'naveenpriya635@gmail.com', '2001-08-25', 22, '3', '1', 'Panneerselvam', 'Salesman', 20000.00, 4, 0.00, 20000.00, '50A12 Gandhi Nagar Velandi Valasu Idappadi, Salem', '50A12 Gandhi Nagar Velandi Valasu,Idappadi,Salem', '2402090059', '', '1', 'upload_files/candidate_tracker/84766717702_Naveenresume_MCA_2024.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:03:29', 110, '2024-02-09 06:33:19', 0, NULL, 1),
(16888, '', '0', '9342304089', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402090060', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-09 06:05:24', 0, NULL, 0, NULL, 1),
(16889, 'Nivetha', '13', '7603941985', '8883927737', 'helennive18@gmail.com', '1998-10-24', 25, '3', '2', 'Sivaprakasham', 'Bsnl officer', 10000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2402090061', '', '1', 'upload_files/candidate_tracker/42250477496_Resume-Nevitha-web development.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:06:53', 110, '2024-02-09 06:36:38', 0, NULL, 1),
(16890, 'Jeyasurya', '31', '9361433453', '8778817568', 'Jayasurya7734@gmail.com', '2001-12-26', 0, '3', '2', 'Palanisamy', 'Coolie', 15000.00, 1, 0.00, 3.50, 'Perambalur', 'Chennai', '2402090062', '', '1', 'upload_files/candidate_tracker/29887659944_RESUME -Jayasurya Jiju.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'Rejected In Aptitude Round', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:07:41', 110, '2024-02-09 06:35:45', 0, NULL, 1),
(16891, 'Reethika W', '13', '7010094189', '', 'reethikawilliam@gmail.com', '2001-03-05', 22, '3', '2', 'William Peter', 'Railway(rty)', 20000.00, 2, 0.00, 10000.00, 'Trichy', 'Chennai', '2402090063', '', '1', 'upload_files/candidate_tracker/93056618435_REETHIKA W RESUME,-3.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:07:53', 110, '2024-02-09 06:37:05', 0, NULL, 1),
(16892, 'Ponmari P', '31', '8778817568', '9631433453', 'ponmaripetchiappan@gmail.com', '1997-12-24', 26, '3', '2', 'Petchiappan', 'Coolie', 15000.00, 0, 0.00, 3.50, 'Puliyangudi', 'Chennai', '2402090064', '', '1', 'upload_files/candidate_tracker/77586915719_Resume-full stack developer -ponmari.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:08:00', 110, '2024-02-09 06:33:43', 0, NULL, 1),
(16893, '', '0', '9167829156', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402090065', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-09 06:10:36', 0, NULL, 0, NULL, 1),
(16894, 'Visalatchi Srinivasan', '13', '9087449003', '', 'deeparavi7991@gmail.com', '1997-04-16', 26, '3', '1', 'Manikandan', 'Supply chain Analyst', 40000.00, 1, 300000.00, 360000.00, 'Chennai', 'Chennai', '2402090065', '', '2', 'upload_files/candidate_tracker/13678820647_Visalatchi updated resume 24.pdf', NULL, '1', '2024-02-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 06:10:36', 1, '2024-02-09 06:15:18', 0, NULL, 1),
(16895, 'VIGNESHWARAN s', '13', '9360268611', '', 'vickys26022002@gmail.com', '2002-02-26', 21, '3', '2', 'Swaminathan', 'Farmer', 30000.00, 2, 0.00, 4.00, 'Salem', 'Chennai', '2402090066', '', '1', 'upload_files/candidate_tracker/45774070311_Vigneshwaran S Resume.pdf', NULL, '1', '2024-02-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 06:10:46', 1, '2024-02-09 06:17:26', 0, NULL, 1),
(16896, 'Abhishek G', '13', '8610303236', '9442731304', 'abhishek17guru@gmail.com', '2001-08-17', 22, '3', '2', 'Gurumoorthy S', 'Southern Railway', 40000.00, 1, 0.00, 26000.00, 'Erode', 'Chennai', '2402090067', '', '1', 'upload_files/candidate_tracker/98402606322_Full stack.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:14:44', 110, '2024-02-09 06:43:19', 0, NULL, 1),
(16897, 'PARAMESWARI . M', '13', '8883714757', '8883714758', 'parameswari1062003@gmail.com', '2003-06-01', 20, '3', '1', 'Valli muniyappan', 'Farmer', 15000.00, 2, 0.00, 18000.00, 'Tiruvannamalai', 'Chennai', '2402090068', '', '1', 'upload_files/candidate_tracker/89818597357_Untitled (3) (2).pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'rejected in aptitude round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:14:58', 110, '2024-02-09 06:28:32', 0, NULL, 1),
(16898, 'PRABAKARAN', '13', '9384480099', '', 'prabakr26@gmail.com', '2001-11-26', 22, '3', '2', 'Veeramani k', 'not applicable', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'chennai', '2402090069', '', '1', 'upload_files/candidate_tracker/31634200204_PRABAKARAN Resume (2).pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:15:22', 110, '2024-02-09 06:42:58', 0, NULL, 1),
(16899, 'MUKESH M', '13', '9745085773', '', 'mukeshnivas2@gmail.com', '2000-12-19', 23, '3', '2', 'MURUKAN', 'Labour', 44000.00, 1, 0.00, 25000.00, 'Kozhikode', 'Kozhikode', '2402090070', '', '1', 'upload_files/candidate_tracker/26506288913_re2.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:15:43', 110, '2024-02-09 06:42:24', 0, NULL, 1),
(16900, 'Srinivasan V', '31', '6383666545', '8760113038', 'Jsseenu@gmail.com', '1997-02-16', 26, '3', '1', 'Vedhagiri', 'Coolie', 13000.00, 2, 0.00, 25000.00, 'Kanchipuram', 'Kanchipuram', '2402090071', '', '1', 'upload_files/candidate_tracker/82576861616_Srinivasanv.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:19:26', 110, '2024-02-09 06:34:44', 0, NULL, 1),
(16901, 'Srinivasan', '13', '8939125803', '', 'srinivasravi2002@gmail.com', '2002-05-06', 21, '3', '2', 'ravichanndran', 'teacher', 22000.00, 1, 0.00, 230000.00, 'Chennai', 'Chennai', '2402090072', '', '1', 'upload_files/candidate_tracker/81255835061_SRINIVASAN _RU _RESUME.pdf', NULL, '1', '2024-02-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:21:11', 110, '2024-02-09 06:35:05', 0, NULL, 1),
(16902, 'Srinivasan V', '31', '8760113038', '6383666545', 'Jsseenu@gmail.com', '1997-02-16', 26, '3', '1', 'Vedhagiri', 'Coolie', 13000.00, 2, 0.00, 25000.00, 'Kanchipuram', 'Kanchipuram', '2402090073', '', '1', 'upload_files/candidate_tracker/46378205786_Srinivasanv.pdf', NULL, '1', '2024-02-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 06:35:06', 1, '2024-02-09 06:37:05', 0, NULL, 1),
(16903, 'Ramraj P', '31', '9600154881', '7418321676', 'ramraj.perumal25@gmail.com', '1993-07-25', 30, '3', '2', 'Kala', 'House Keeping', 9000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2402090074', '', '1', 'upload_files/candidate_tracker/59949178111_Ramraj_CV.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 06:43:28', 110, '2024-02-09 06:43:40', 0, NULL, 1),
(16904, 'G.karthick', '4', '9360979559', '7639907713', 'karthickavin472@gmail.com', '2001-11-30', 22, '2', '2', 'Gunasekaran', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2402090075', '1', '1', 'upload_files/candidate_tracker/35827416689_karthick.pdf', NULL, '1', '2024-02-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'dont have clear voice...sustainability issue', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-09 06:50:56', 108, '2024-02-09 02:47:19', 0, NULL, 1),
(16905, 'Rathidevi Panneerselvam', '13', '9585854038', '', 'rathiselvam9401@gmail.com', '2001-04-09', 22, '3', '2', 'Panneerselvam', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Pattukkottai', 'Tambaram', '2402090076', '', '1', 'upload_files/candidate_tracker/31859061235_RATHIDEVI P RESUME NEW1.pdf', NULL, '1', '2024-02-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 07:08:24', 1, '2024-02-09 07:15:47', 0, NULL, 1),
(16906, 'Dharanika', '13', '8056988926', '9943987978', 'dharanikapalanivel2001@gmail.com', '2001-05-12', 22, '3', '2', 'Palanivel', 'Farmer', 10000.00, 1, 0.00, 12000.00, 'Pattukkottai', 'Tambaram, Chennai', '2402090077', '', '1', 'upload_files/candidate_tracker/75848421080_CV_2024011017544464.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 07:11:35', 110, '2024-02-09 06:41:27', 0, NULL, 1),
(16907, 'Moorthy', '3', '8144659810', '', 'sachinmoorthy938@gmail.com', '1996-01-25', 0, '3', '2', 'Thilaga', 'Agriculture', 10000.00, 1, 0.00, 25000.00, 'Kallakurichi', 'Medavakkam', '2402090078', '', '2', 'upload_files/candidate_tracker/41608416093_Moorthy_React_Developer-Fresher.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 07:21:47', 110, '2024-02-09 06:38:21', 0, NULL, 1),
(16908, '', '0', '7418085329', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402090079', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-09 07:26:53', 0, NULL, 0, NULL, 1),
(16909, 'SIVASANKARANARAYANAN D', '13', '6369765310', '7639584328', 'dsivasankaranarayanan@gmail.com', '2001-12-19', 22, '3', '2', 'Dharmaligam N', 'Powerloom', 20000.00, 1, 0.00, 250000.00, 'Sankarankovil', 'Chennai', '2402090080', '', '1', 'upload_files/candidate_tracker/36527058153_SIVASANKARANARAYANAN-D.pdf', NULL, '1', '2024-02-09', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 07:32:02', 1, '2024-02-09 07:43:59', 0, NULL, 1),
(16910, 'Govarthana K', '13', '6382910995', '9344390884', 'govarthana45@gmail.com', '2001-09-30', 22, '3', '2', 'Karuppannan V', 'Farmer', 20000.00, 2, 0.00, 250000.00, 'Chennai', 'Chennai', '2402090081', '', '1', 'upload_files/candidate_tracker/30427303415_GOVARTHANA-K-FlowCV-Resume-20240205 (2).pdf', NULL, '1', '2024-02-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 07:35:13', 112, '2024-03-26 05:26:29', 0, NULL, 1),
(16911, 'Sathish S', '15', '9790170614', '8148326949', 'Sathishsekar114@gmail.com', '1990-11-14', 33, '6', '1', 'Husenabanu J', 'Private Sector', 30000.00, 2, 0.00, 6000.00, 'Pallavaram', 'Pallavaram', '2402090082', '', '1', 'upload_files/candidate_tracker/24209824847_SathishCV.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 08:33:53', 110, '2024-02-09 06:37:37', 0, NULL, 1),
(16912, 'Guruprasanth', '13', '9176373820', '', 'gurubalu09@gmail.com', '2002-09-03', 21, '1', '2', 'Balu', 'Watchman', 10000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2402090083', '', '1', 'upload_files/candidate_tracker/19022776196_Guru prasath.pdf', NULL, '1', '2024-02-09', 0, 'Btree system Institute', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 08:55:47', 110, '2024-02-09 06:45:34', 0, NULL, 1),
(16913, 'RAJESHKANNAN S', '13', '7540039366', '', 'rajeshskannan2118@gmail.com', '2000-05-05', 23, '3', '2', 'MURUGESHWARI S', 'LABOUR', 10000.00, 1, 0.00, 200000.00, 'Theni', 'Chennai', '2402090084', '', '1', 'upload_files/candidate_tracker/72804036761_RAJESHKANNAN_S-1.pdf', NULL, '1', '2024-02-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 09:00:27', 1, '2024-02-09 09:09:22', 0, NULL, 1),
(16914, '', '0', '6369594583', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402090085', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-09 09:01:06', 0, NULL, 0, NULL, 1),
(16915, 'Thivya shree', '21', '7358658453', '', 'thivyashree1012@gmail.com', '2001-12-12', 22, '6', '2', 'Jansirani', 'No more', 9000.00, 0, 0.00, 15000.00, 'Jothi nagar, Thiruvottriyur', 'Jothi nagar, Thiruvottriyur', '2402090086', '', '1', 'upload_files/candidate_tracker/52573965820_Thivya Shree Resume.docx', NULL, '1', '2024-02-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 09:07:13', 1, '2024-02-09 09:20:38', 0, NULL, 1),
(16916, 'Prabanjan.M', '13', '9941606474', '', 'mprabanjan28@gmail.com', '2002-07-22', 21, '1', '2', 'Moorthy', 'Daily Wages', 10000.00, 2, 0.00, 13000.00, 'Mylapore Chennai', 'Mylapore Chennai', '2402090087', '', '1', 'upload_files/candidate_tracker/40442965071_prabanjan.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 09:07:42', 110, '2024-02-09 06:44:39', 0, NULL, 1),
(16917, 'Bragadeesh S K', '13', '9363395837', '7868051750', 'brags.sk8499@gmail.com', '1999-04-08', 24, '6', '2', 'Karunanithi S', 'Retired government officer', 80000.00, 2, 0.00, 28000.00, 'Chennai', 'Thiruvanmiyur', '2402090088', '', '1', 'upload_files/candidate_tracker/97483090659_New Resume(Bragadeesh SK1) (1).docx', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 09:22:29', 110, '2024-02-09 06:44:17', 0, NULL, 1),
(16918, 'sanjaibabu', '13', '9715776721', '9842980475', 'sanjaibabu101@gmail.com', '2002-01-10', 22, '6', '2', 'revathi', 'bussiness', 10000.00, 2, 0.00, 3.50, 'dindigul', 'chennai', '2402090089', '', '1', 'upload_files/candidate_tracker/44363435070_Resume.FSD.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '4', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 09:23:39', 110, '2024-02-09 06:45:52', 0, NULL, 1),
(16919, 'Muruganantham M', '13', '9385841576', '6379894078', 'mmuruga2307@gmail.com', '2002-07-23', 21, '6', '2', 'Murugesan R', 'Farmer', 10000.00, 1, 0.00, 25000.00, 'Trichy', 'Trichy', '2402090090', '', '1', 'upload_files/candidate_tracker/15875163313_Muruganantham_M_Resume.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '4', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 09:24:16', 110, '2024-02-09 06:18:49', 0, NULL, 1),
(16920, 'V. JAISON', '13', '9345288885', '7904899314', 'jaisonsudha478@gmail.com', '2003-01-31', 21, '3', '2', 'P. VENKATESHAN', 'Carpenter', 25000.00, 2, 0.00, 15000.00, 'Ambathur', 'Ambathur', '2402090091', '', '1', 'upload_files/candidate_tracker/26732611084_JAISON (2) 31.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 09:56:33', 110, '2024-02-09 06:43:59', 0, NULL, 1),
(16921, 'B. Aravinthan', '13', '7401574286', '6382770170', 'aravinthan00029@gmail.com', '2002-09-29', 21, '3', '2', 'B. Sudha', 'Business', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Ambattur, Chennai', '2402090092', '', '1', 'upload_files/candidate_tracker/39459010985_B.Aravinthan_Resume (2).pdf', NULL, '1', '2024-02-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '4', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-09 09:57:58', 110, '2024-02-09 06:44:58', 0, NULL, 1),
(16922, 'Prasad D', '33', '8939398026', '', 'Prasaddlds02@gmail.com', '1994-09-02', 29, '3', '2', 'G Duraiswamy', 'Nil', 100000.00, 1, 300000.00, 400000.00, 'Triplicane', 'Triplicane', '2402090093', '', '2', 'upload_files/candidate_tracker/49221619049_PRASAD D Resume CV Updated .pdf', NULL, '1', '2024-02-09', 30, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-09 11:37:46', 1, '2024-02-09 12:02:36', 0, NULL, 1),
(16923, '', '0', '8056225746', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402100001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-10 03:54:00', 0, NULL, 0, NULL, 1),
(16924, 'Mohammed Shameer', '2', '6374089031', '', 'mshameer260@gmail.com', '2001-03-15', 22, '4', '2', 'Mahamudha Begum', 'House wife', 5000.00, 1, 0.00, 20000.00, 'Kallakurichi', 'Avadi', '2402100002', '', '1', 'upload_files/candidate_tracker/7888067617_Mohammed Shameer A-1.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 04:07:34', 110, '2024-02-10 06:14:35', 0, NULL, 1),
(16925, 'K.saranya', '11', '8870607803', '', '32.saranyak@gmail.com', '1999-04-12', 24, '6', '2', 'R.krishnasamy', 'Business', 4.50, 2, 15000.00, 20000.00, 'Arni-632301', 'Kodambakkam -600024', '2402100003', '', '2', 'upload_files/candidate_tracker/94835809259_SARANYA RESUME (1).pdf', NULL, '1', '2024-02-10', 15, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 04:34:00', 1, '2024-02-10 05:08:41', 0, NULL, 1),
(16926, '', '0', '7397061721', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402100004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-10 04:39:34', 0, NULL, 0, NULL, 1),
(16927, 'Basil Ahamed', '13', '7397061751', '', 'basilahamed46@gmail.com', '2002-06-06', 21, '3', '2', 'Hithayathullah', 'Farmer', 20000.00, 1, 0.00, 300000.00, 'Thiruvarur', 'Chennai', '2402100005', '', '1', 'upload_files/candidate_tracker/63486141229_python_basil_resume.docx', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude round', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 04:40:34', 110, '2024-02-10 06:13:00', 0, NULL, 1),
(16928, 'AjayKumar', '13', '9025517241', '9842406418', 'ajaykumar20000629@gmail.com', '2000-06-29', 23, '3', '2', 'Sundari', 'Homemaker', 17000.00, 0, 25000.00, 40000.00, 'Kumbakonam', 'Chennai', '2402100006', '', '2', 'upload_files/candidate_tracker/75464682305_Ajay_Resume.pdf', NULL, '1', '2024-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 04:43:23', 1, '2024-02-10 04:47:19', 0, NULL, 1),
(16929, 'Divakar', '13', '6382406330', '', 'divakarprakash007@gmail.com', '2000-05-17', 23, '3', '2', 'Jayaprakash', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Mayiladuthurai', 'Chennai', '2402100007', '', '1', 'upload_files/candidate_tracker/78466408535_Programming Languages (21).pdf', NULL, '1', '2024-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 04:44:29', 1, '2024-02-10 04:47:59', 0, NULL, 1),
(16930, 'Karthikeyan D', '13', '9345040289', '', 'karthikeyan2862@gmail.com', '2002-06-28', 21, '3', '2', 'Father : Deivasigamani S', 'Daily wager', 290000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2402100008', '', '1', 'upload_files/candidate_tracker/46986492989_karthikeyan resume (2).pdf', NULL, '1', '2024-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 04:45:31', 1, '2024-02-10 04:50:16', 0, NULL, 1),
(16931, 'M. Vijay', '13', '7868970772', '8525842921', 'vijayvicky1358@gmail.com', '2002-06-26', 21, '3', '2', 'K. Murugan', 'Farmer', 40000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2402100009', '', '1', 'upload_files/candidate_tracker/57378660753_VIJAY resume.pdf', NULL, '3', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 04:55:44', 110, '2024-02-10 06:15:36', 0, NULL, 1),
(16932, 'DILLI BABU S', '13', '8270539534', '9655362597', 'dillibaby02@gmail.com', '2002-01-02', 22, '3', '2', 'SANKAR . R', 'Labour', 30000.00, 3, 0.00, 25000.00, 'Kanchipuram', 'Kanchipuram', '2402100010', '', '1', 'upload_files/candidate_tracker/57928343760_DILLI BAU resume.pdf', NULL, '3', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 04:56:08', 110, '2024-02-10 06:14:58', 0, NULL, 1),
(16933, 'Satham', '13', '8056395967', '', 'sathamsamsan625@gmail.com', '2001-07-16', 22, '3', '2', 'Elaiyavanan', 'Fishing', 30000.00, 3, 0.00, 15000.00, '173, tsunami Nagar-pazhaiyar', 'Tambaram', '2402100011', '', '1', 'upload_files/candidate_tracker/4504704326_SATHAM E web.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 05:05:53', 110, '2024-02-10 06:15:17', 0, NULL, 1),
(16934, 'Praveen Kumar C', '13', '8903164053', '9488193318', 'djpraveenkumar5@gmail.com', '2002-08-03', 21, '3', '2', 'Chinnappan T', 'Farmer', 20000.00, 1, 0.00, 300000.00, 'Pudukkottai', 'Chennai', '2402100012', '', '1', 'upload_files/candidate_tracker/39779987529_Praveen Resume.docx', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 05:19:24', 110, '2024-02-10 06:18:02', 0, NULL, 1),
(16935, 'PRABHAKARAN m', '13', '6382805191', '', 'prabhakaran3215@gmail.com', '2001-05-31', 22, '3', '2', 'MUNIYANDI A', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Virudhunagar', 'Chennai', '2402100013', '', '1', 'upload_files/candidate_tracker/42641456354_prabhakaran resume.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 05:19:45', 110, '2024-02-10 06:17:40', 0, NULL, 1),
(16936, 'Balaji perumal', '13', '6382725334', '9751784969', 'balajiperumal58@gmail.com', '2002-07-20', 21, '3', '2', 'Perumal Karuppaiah', 'Event manager', 24000.00, 1, 0.00, 300000.00, 'Pudhukkoattai', 'Chennai', '2402100014', '', '1', 'upload_files/candidate_tracker/13996279365_Balaji Resume 3.pdf', NULL, '1', '2024-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 05:19:55', 1, '2024-02-10 05:28:31', 0, NULL, 1),
(16937, 'Purushothaman R', '13', '9344532027', '', 'rkip4112001@gmail.com', '2001-11-04', 22, '4', '2', 'Ravi V', 'Agriculture', 80000.00, 1, 0.00, 250000.00, 'Kumbakonam', 'Chennai', '2402100015', '', '1', 'upload_files/candidate_tracker/47708809631_my_resume.pdf', NULL, '1', '2024-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 05:24:24', 1, '2024-02-10 05:27:51', 0, NULL, 1),
(16938, 'Antony Blessing S', '13', '9894143303', '9487184124', 'antonyblessing0007@gmail.com', '2001-05-28', 22, '3', '2', 'Suresh', 'Former', 15000.00, 3, 0.00, 200000.00, 'Tirunelveli', 'Chrombet', '2402100016', '', '1', 'upload_files/candidate_tracker/53128942664_Resume (3).pdf', NULL, '1', '2024-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 05:26:38', 1, '2024-02-10 05:30:36', 0, NULL, 1),
(16939, 'Nishanthi', '31', '7397460782', '9092164129', 'Nishayashi1234@gmail.com', '2000-03-23', 23, '3', '2', 'Lalitha', 'House wife', 300000.00, 1, 100000.00, 300000.00, 'Chennai', 'Chennai', '2402100017', '', '2', 'upload_files/candidate_tracker/7746060524_nisha resume.pdf', NULL, '1', '2024-02-10', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 05:27:52', 1, '2024-02-10 08:19:41', 0, NULL, 1),
(16940, 'Varshini MS', '13', '9344390884', '6382910995', 'varshinims2002@gmail.com', '2002-06-10', 21, '3', '2', 'Maariyappan', 'Farmer', 15000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2402100018', '', '1', 'upload_files/candidate_tracker/94402889728_VARSHINI-MS-FlowCV-Resume-20240209 (2).pdf', NULL, '1', '2024-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 05:29:11', 1, '2024-02-10 05:35:13', 0, NULL, 1),
(16941, 'Aravinth', '13', '9944857950', '9865120950', 'aravinthyuvaraj1998@gmail.com', '1998-09-09', 25, '3', '2', 'Yuvaraj', 'Farmer', 100000.00, 1, 0.00, 2.50, 'Salem', 'Karapakkam,sholliganallur,chennai', '2402100019', '', '1', 'upload_files/candidate_tracker/86041989908_Resume1.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 06:04:23', 110, '2024-02-10 06:18:33', 0, NULL, 1),
(16942, 'Saranya', '13', '7395836490', '9047392377', 'Saranyavasu608@gmail.com', '2001-07-19', 22, '3', '2', 'Vasu S', 'Driver', 25000.00, 1, 0.00, 20000.00, 'Vellore', 'Chennai', '2402100020', '', '1', 'upload_files/candidate_tracker/5921639728_SaranyaVasu.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 06:04:40', 110, '2024-02-10 06:19:48', 0, NULL, 1),
(16943, 'Ramya subash', '13', '6380627268', '7826053353', 'ramyaramya1774@gmail.com', '2001-06-29', 22, '3', '2', 'Parent', 'Stationery shop', 15000.00, 1, 0.00, 20000.00, 'Vriddhachalm', 'Chennai', '2402100021', '', '1', 'upload_files/candidate_tracker/72900942784_Ramya RESUME.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 06:04:48', 110, '2024-02-10 06:20:13', 0, NULL, 1),
(16944, 'Kannan', '13', '8220830506', '8754257580', 'Kannant2304@gmail.com', '1999-04-23', 24, '3', '2', 'Thulasi', 'Beautician', 18000.00, 2, 0.00, 4.00, 'Chengalpattu', 'Chennai', '2402100022', '', '1', 'upload_files/candidate_tracker/90804408953_Kannan.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 06:06:35', 110, '2024-02-10 06:23:06', 0, NULL, 1),
(16945, 'Iniyavan c', '14', '9361113874', '7868017498', 'iniyavanini07@gmail.com', '2000-05-14', 23, '6', '2', 'Chitravel', 'Farmer', 20.00, 1, 1.20, 4.00, 'Thanjavur', 'Chennai', '2402100023', '', '2', 'upload_files/candidate_tracker/29378084851_INIYAVAN .C RESUME-1.pdf', NULL, '1', '2024-02-10', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 06:07:11', 1, '2024-02-10 06:16:05', 0, NULL, 1),
(16946, 'Parvathy A', '2', '8610125717', '', 'bavinayaparvathy@gmail.com', '1999-07-27', 24, '3', '2', 'Alagar Muthu', 'Business', 20000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2402100024', '', '1', 'upload_files/candidate_tracker/31860260490_Parvathy_CV.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 06:07:54', 110, '2024-02-10 06:16:40', 0, NULL, 1),
(16947, 'praveen pandi', '2', '9080182420', '7358258290', 'praveenpandi24@gmail.com', '2001-06-22', 22, '3', '2', 'alagar muthu', 'business', 20000.00, 1, 450000.00, 700000.00, 'chennai', 'chennai', '2402100025', '', '2', 'upload_files/candidate_tracker/64397361186_Praveen Pandi Jan 4 2024.pdf', NULL, '1', '2024-02-10', 60, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 06:08:15', 1, '2024-02-10 06:11:20', 0, NULL, 1),
(16948, 'Bhuvaneshwari Jaganathan', '13', '9345638054', '', 'bhuvii.j07@gmail.com', '2003-10-24', 20, '3', '2', 'Jaganathan', 'Farmer', 350000.00, 1, 0.00, 350000.00, 'Erode', 'Chennai', '2402100026', '', '1', 'upload_files/candidate_tracker/1140773846_White Simple Student CV Resume (6).pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 06:12:17', 110, '2024-02-10 06:18:55', 0, NULL, 1),
(16949, 'Suwetha B', '13', '7397448426', '', 'suwethabv@gmail.com', '2001-10-04', 22, '3', '2', 'Balakrishnan N', 'Daily wager', 350000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2402100027', '', '1', 'upload_files/candidate_tracker/62816426735_Suwetha B Resume.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '2', '2', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 06:14:02', 110, '2024-02-10 06:21:50', 0, NULL, 1),
(16950, 'Sumalatha', '13', '8870654172', '', 'sumalatha2110.s@gmail.com', '2002-10-21', 21, '3', '2', 'Parent', 'Business', 60000.00, 2, 0.00, 300000.00, 'Tuticorin', 'Chennai', '2402100028', '', '1', 'upload_files/candidate_tracker/57006245233_sumalatha resume.pdf', NULL, '1', '2024-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 06:15:58', 1, '2024-02-10 06:23:57', 0, NULL, 1),
(16951, 'Aravind.P', '13', '7397503742', '', 'aravindaravindu07@gmail.com', '2001-03-05', 22, '3', '2', 'Pethaperumal.R', 'Coolie', 20000.00, 5, 0.00, 250000.00, 'KARAIKAL', 'Pallavaram', '2402100029', '', '1', 'upload_files/candidate_tracker/197617795_Aravind.p_20240131_170147_0000.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 06:19:51', 110, '2024-02-10 06:17:18', 0, NULL, 1),
(16952, 'Justin Sagayaraj', '13', '8838610460', '', 'justinsagayaraj2002@gmail.com', '2002-06-02', 21, '3', '2', 'Antony josephraj', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Kallakurichi', 'Velachery, Chennai', '2402100030', '', '1', 'upload_files/candidate_tracker/7814632323_Resume-1 (1).pdf', NULL, '1', '2024-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 06:20:06', 1, '2024-02-10 06:25:00', 0, NULL, 1),
(16953, 'Akash b', '31', '9962370947', '', 'Akashnive27@gmail.com', '2001-07-30', 22, '3', '2', 'Babu', 'Cooli', 15000.00, 2, 0.00, 15000.00, 'Minjur', 'Minjur', '2402100031', '', '1', 'upload_files/candidate_tracker/22151853936_AKASH RESUME (1).pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 06:21:38', 110, '2024-02-10 06:16:59', 0, NULL, 1),
(16954, 'Senthil kumar', '13', '6383508346', '', 'paulsenthil234@gmail.com', '1995-07-04', 28, '3', '2', 'Vengatesan', 'Sub Inspector of Police', 60000.00, 1, 0.00, 4.00, 'Ariyalur', 'Chennai', '2402100032', '', '1', 'upload_files/candidate_tracker/56623604900_Senthil Resume4.pdf', NULL, '1', '2024-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 06:23:53', 1, '2024-02-10 06:28:22', 0, NULL, 1),
(16955, 'Surjith Honest Raj A', '23', '7558130685', '', 'surjith0499@gmail.com', '1999-06-04', 24, '3', '2', 'Arputharaj Arulappan', 'clerk', 20000.00, 1, 15000.00, 25000.00, 'mayiladuturai', 'chennai', '2402100033', '', '2', 'upload_files/candidate_tracker/15477681531_SURJITH HONEST RAJ (5).pdf', NULL, '1', '2024-02-10', 30, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 06:29:47', 110, '2024-02-10 06:21:31', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16956, 'Porselvan M', '11', '9940257483', '', 'porselvan26@gmail.com', '1997-11-26', 26, '3', '2', 'Murugan v', 'Business', 20000.00, 1, 0.00, 20000.00, 'No 270 A TNhb phase3 Ambattur Chennai 58', 'Chennai', '2402100034', '', '1', 'upload_files/candidate_tracker/50981415407_porselvan_resume26up_page-0001_1706786889560_M.porselvan.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 06:31:25', 110, '2024-02-10 06:22:10', 0, NULL, 1),
(16957, '', '0', '9344938605', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402100035', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-10 07:22:40', 0, NULL, 0, NULL, 1),
(16958, 'Manikandan C', '2', '7708720315', '9944408090', 'cmanikandan.it@gmail.com', '1996-06-13', 27, '3', '2', 'Chinthamani A', 'Painter', 15000.00, 0, 0.00, 25000.00, 'Vadasery, Nagerocoil, kanyakumari district', 'Medavakkam, chennai', '2402100036', '', '1', 'upload_files/candidate_tracker/3354667459_Manikandan.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 07:30:07', 110, '2024-02-10 06:25:57', 0, NULL, 1),
(16959, 'Dinesh Kumar', '2', '9566250529', '9092260524', 'dineshsrinivasan05.ds@gmail.com', '1997-01-05', 27, '3', '2', 'Srinivasan', 'Business', 60000.00, 1, 0.00, 40000.00, 'Chennai', 'Chennai', '2402100037', '', '1', 'upload_files/candidate_tracker/81525085509_Dinesh', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 07:39:38', 110, '2024-02-10 06:24:32', 0, NULL, 1),
(16960, 'Yogesh M', '31', '8667578068', '', 'm.yogesh1@live.com', '1995-02-22', 28, '3', '2', 'Munuswamy D', 'Retired TNPCB', 36000.00, 1, 21000.00, 35000.00, 'Chennai', 'Chennai', '2402100038', '', '2', 'upload_files/candidate_tracker/15176461749_Resume.pdf', NULL, '1', '2024-02-10', 30, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 08:09:32', 110, '2024-02-10 06:24:00', 0, NULL, 1),
(16961, 'Hariramkumar B', '31', '9940038776', '7401589957', 'hariram4672@gmail.com', '1999-11-10', 24, '3', '2', 'Chandra N', 'Housewife', 40000.00, 2, 0.00, 20000.00, '335/14 Annai Sathiya Nagar Anna Nagar', '335/14 Annai Sathiya Nagar Anna Nagar', '2402100039', '', '1', 'upload_files/candidate_tracker/33656348504_Hariramkumar_B.pdf', NULL, '1', '2024-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 08:10:36', 1, '2024-02-10 08:16:21', 0, NULL, 1),
(16962, 'Raghavi S.B.', '22', '9790762310', '', 'raghavi.s.baskaran@gmail.com', '1998-08-28', 25, '3', '2', 'Baskaran S', 'Manager', 80000.00, 1, 26000.00, 35000.00, 'Chennai', 'Chennai', '2402100040', '', '2', 'upload_files/candidate_tracker/9214093937_Raghavi_Resume.pdf', NULL, '1', '2024-02-10', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 08:18:44', 1, '2024-02-10 08:32:20', 0, NULL, 1),
(16963, 'Gokulnath R', '13', '7904663120', '', 'gokulnathkalam@gmail.com', '2000-12-03', 23, '3', '2', 'Ramamoorthy P', 'Carpenter', 6000.00, 2, 0.00, 3.50, 'Gudiyatham, Vellore', 'Gudiyatham, Vellore', '2402100041', '', '1', 'upload_files/candidate_tracker/75356555496_Gokulnath.R(1).pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 08:45:40', 110, '2024-02-10 06:22:29', 0, NULL, 1),
(16964, 'ARUN T', '13', '9894326734', '9042756297', 'arunkumarg7845@gmail.com', '2000-12-03', 23, '3', '2', 'Thambi P', 'Medical pharmacy shop', 12000.00, 2, 0.00, 3.50, 'Gudiyatham, Vellore', 'Gudiyatham, Vellore', '2402100042', '', '1', 'upload_files/candidate_tracker/3461541177_Blue Simple Professional CV Resume_20240208_153243_0000.pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 08:45:41', 110, '2024-02-10 06:27:00', 0, NULL, 1),
(16965, 'Ravi M', '31', '7558171123', '', 'ravimuthukgr@gmail.com', '1999-02-07', 25, '6', '2', 'muthu P', 'Agriculture', 100000.00, 1, 120000.00, 230000.00, 'Kallakurichi', 'Kallakurichi', '2402100043', '', '2', 'upload_files/candidate_tracker/19103485426_Ravi resume.pdf', NULL, '1', '2024-02-10', 20, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 09:02:11', 110, '2024-02-10 06:25:32', 0, NULL, 1),
(16966, 'Aravindh B', '7', '9444201356', '', 'aravindh.baskaran14@gmail.com', '1998-08-14', 25, '3', '2', 'A N Baskaran', 'Medical Lab Technician', 100000.00, 1, 0.00, 40000.00, 'TIRUVALLUR / CHENNAI', 'TIRUVALLUR / CHENNAI', '2402100044', '', '1', 'upload_files/candidate_tracker/63831129706_ARAVINDH B RESUME.pdf', NULL, '1', '2024-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 09:10:35', 1, '2024-02-10 09:25:27', 0, NULL, 1),
(16967, 'JEEVA JENSON', '13', '7339372308', '9361205581', 'jeevajenson001@gamil.com', '2000-05-15', 23, '3', '2', 'SELVANTHAN V', 'Former', 15000.00, 2, 0.00, 25000.00, 'Cuddalore', 'Cuddalore', '2402100045', '', '1', 'upload_files/candidate_tracker/38872032167_jeeva jenson s 1-1(9).pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 09:10:52', 110, '2024-02-10 06:22:51', 0, NULL, 1),
(16968, 'Naresh babu K', '2', '9159553177', '9751317750', 'nareshbabuk21@gmail.com', '1995-10-16', 28, '3', '2', 'Kannan K', 'BSNL Telephone Line Man', 50000.00, 0, 0.00, 30000.00, 'Vellore District,', 'Chennai, Kelambakkam', '2402100046', '', '1', 'upload_files/candidate_tracker/99767447295_Resume ( Naresh Babu ).pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 09:21:38', 110, '2024-02-10 06:26:20', 0, NULL, 1),
(16969, 'Thambidurai A', '13', '8270877701', '', 'Thambianbu24@gmail.com', '2001-06-24', 22, '6', '2', 'Anbalagan S', 'Daily wages', 56000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Chennai', '2402100047', '', '1', 'upload_files/candidate_tracker/1870867276_thambidurai_resume.pdf', NULL, '1', '2024-02-10', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 09:26:58', 110, '2024-02-10 06:27:51', 0, NULL, 1),
(16970, 'Santhiya', '2', '9360430032', '9159931858', 'santhiya30032@gmail.com', '1997-06-06', 26, '3', '2', 'Dhanalakshmi', 'Food organiser - school', 100000.00, 4, 0.00, 25000.00, 'Vellore', 'Vellore', '2402100048', '', '1', 'upload_files/candidate_tracker/55160158909_Resume ( Santhiya )-1.pdf', NULL, '2', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 09:33:46', 110, '2024-02-10 06:26:40', 0, NULL, 1),
(16971, 'pavunkumar e', '2', '8680864587', '', 'pavun4587@gmail.com', '1996-05-17', 27, '3', '2', 'elumalai k', 'farmer', 20000.00, 1, 0.00, 30000.00, 'tiruvannamalai', 'chennai', '2402100049', '', '1', 'upload_files/candidate_tracker/82173289203_Resume ( Pavunkumar ).pdf', NULL, '1', '2024-02-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'Rejected In Aptitude Test', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 09:34:14', 110, '2024-02-10 06:27:22', 0, NULL, 1),
(16972, 'Chandrasekaran E', '2', '8220345388', '', 'chandrasekaran2996@gmail.com', '1996-11-29', 27, '3', '2', 'Elangovan', 'Hydro geologist', 70000.00, 0, 30000.00, 150000.00, 'Perambalur', 'Chennai', '2402100050', '', '2', 'upload_files/candidate_tracker/3596981146_Chandrasekaran E reasume.pdf', NULL, '1', '2024-02-10', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 09:35:57', 1, '2024-02-10 09:54:13', 0, NULL, 1),
(16973, 'jayashree ethiraj', '5', '9003183046', '', 'jayashreeethiraj0@gmail.com', '1995-09-06', 28, '3', '2', 'ethiraj', 'business', 200000.00, 1, 40000.00, 45000.00, 'raju nagar thoraipakkam chennai', 'raju nagar thoraipakkam', '2402100051', '', '2', 'upload_files/candidate_tracker/19883371592_Jayashree Resume.docx', NULL, '1', '2024-02-10', 15, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 10:26:43', 1, '2024-02-10 10:33:13', 0, NULL, 1),
(16974, 'Sathish Kumar S', '23', '8825434454', '', 'ss.sathishsam007@gmail.com', '1996-06-05', 27, '3', '2', 'Shankar P', 'Former', 72000.00, 1, 37000.00, 70000.00, 'Ranipet', 'Ranipet', '2402100052', '', '2', 'upload_files/candidate_tracker/43626658134_Sathish_Resume-1 (1).pdf', NULL, '1', '2024-02-10', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 10:31:01', 1, '2024-02-10 10:36:02', 0, NULL, 1),
(16975, 'Jasmin Sunny', '11', '6282873189', '7025752170', 'Jasminsunny21@gmail.com', '1996-10-02', 27, '1', '2', 'Jancy', 'House Wife', 25000.00, 2, 17000.00, 25000.00, 'Choolaimedu', 'Choolaimedu', '2402100053', '', '2', 'upload_files/candidate_tracker/20027601287_Jasmin\'s Resume.pdf', NULL, '1', '2024-02-10', 15, '64', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-10 11:08:57', 1, '2024-02-10 11:15:10', 0, NULL, 1),
(16976, 'ABINAYA S C', '6', '8270808793', '8754121405', 'abinayasimson2017@gmail.com', '1999-05-05', 24, '3', '2', 'Chandra bai', 'House wife', 15000.00, 1, 0.00, 15000.00, 'KANYAKUMARI', 'Chennai', '2402100054', '', '1', 'upload_files/candidate_tracker/93331817513_ABINAYA S C.pdf', NULL, '1', '2024-02-10', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she need to improver her communication', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-10 11:22:08', 110, '2024-02-10 05:08:57', 0, NULL, 1),
(16977, '', '0', '9994028024', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402100055', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-10 11:40:46', 0, NULL, 0, NULL, 1),
(16978, '', '0', '6369859534', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402100056', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-10 01:35:48', 0, NULL, 0, NULL, 1),
(16979, 'Devan R', '5', '9626858034', '', 'ravidevan2001@gmail.com', '2001-10-19', 22, '2', '2', 'Ravikumar', 'Thiruvannamalai', 46000.00, 3, 0.00, 17000.00, 'Thiruvannamalai (polur)', 'Thiruvannamalai (polur)', '2402120001', '1', '1', 'upload_files/candidate_tracker/86486607117_RESUME DEVAN MCOM word to pdf.pdf', NULL, '1', '2024-02-12', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Apperiance and Perfomance is Not good. also he need to improve his skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-12 04:26:04', 108, '2024-02-13 11:55:44', 0, NULL, 1),
(16980, 'Sakthivel', '23', '9500370291', '9791909871', 'vel33365@gmail.com', '2002-10-25', 21, '3', '2', 'Ravi Sangar', 'business', 13000.00, 1, 0.00, 17000.00, 'Tiruppur', 'Tiruppur', '2402120002', '', '1', 'upload_files/candidate_tracker/71131798157_Sakthivel UI UX Resume 2024.pdf', NULL, '1', '2024-02-12', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 04:55:38', 1, '2024-02-12 05:12:24', 0, NULL, 1),
(16981, 'Olina jasmine.A', '23', '9344240810', '', 'Olinajasmine6@gmail.com', '2003-01-06', 21, '3', '2', 'Abdullah', 'Farmer', 12000.00, 2, 0.00, 15000.00, 'Sivaganga', 'Coimbatore', '2402120003', '', '1', 'upload_files/candidate_tracker/59691327497_Resume (2).pdf', NULL, '1', '2024-02-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 04:56:06', 1, '2024-02-12 05:05:20', 0, NULL, 1),
(16982, 'Kavinraj', '23', '9500565841', '9976456111', 'kavinrajk99@gmail.com', '2002-06-12', 21, '3', '2', 'Jeevitha', 'It employe', 12000.00, 1, 0.00, 12000.00, 'Tiruppur', 'Tiruppur', '2402120004', '', '1', 'upload_files/candidate_tracker/52619648147_kavinraj.pdf', NULL, '1', '2024-02-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 04:57:22', 1, '2024-02-12 05:03:32', 0, NULL, 1),
(16983, 'Praveen David L', '13', '9080067152', '9003465758', 'praveendavid2482001@gmail.com', '2001-08-24', 22, '6', '2', 'Lawrence D', 'Business', 10000.00, 0, 140000.00, 250000.00, 'Ellis nagar Madurai', 'Ellis Nagar Madurai', '2402120005', '', '2', 'upload_files/candidate_tracker/80330402793_Praveen David Resume.pdf', NULL, '1', '2024-02-12', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 05:02:30', 1, '2024-02-12 05:13:28', 0, NULL, 1),
(16984, 'Vinith bala G', '23', '7708696576', '9865723924', 'balavinith6@gmail.com', '2002-09-28', 21, '3', '2', 'Ganeshamoorthy M', 'Business', 12000.00, 1, 0.00, 15000.00, 'Tiruppur', 'Tiruppur', '2402120006', '', '1', 'upload_files/candidate_tracker/87050289112_Resume UIUX.pdf', NULL, '1', '2024-02-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 05:06:14', 1, '2024-02-12 05:10:11', 0, NULL, 1),
(16985, 'Logeshwaran M', '31', '9677752727', '', 'logeshw1827@gmail.com', '2002-03-18', 21, '3', '2', 'Murthi', 'Driver', 10000.00, 1, 0.00, 250000.00, 'Salem', 'Salem', '2402120007', '', '1', 'upload_files/candidate_tracker/95043082957_MERN Resume .pdf', NULL, '1', '2024-02-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 05:09:51', 1, '2024-02-12 05:13:38', 0, NULL, 1),
(16986, 'Dhadreeswaran K', '23', '8124874158', '', 'Dhadreeswaran13@gmail.com', '1998-03-17', 25, '3', '2', 'Kabali, mala', 'Cvrde (retd)', 27000.00, 1, 0.00, 15000.00, 'No 121/1 Perumal Kovil St, Annambedu, ch 602024', 'No 121/1 Perumal Kovil St, Annambedu, Ch 602024', '2402120008', '', '1', 'upload_files/candidate_tracker/88394005247_Dhadree resume_compressed.pdf', NULL, '1', '2024-02-12', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 05:32:49', 1, '2024-02-12 05:51:43', 0, NULL, 1),
(16987, 'Indhu Sudarsanan', '15', '6369110781', '9092037717', 'indhusuresh881@gmail.com', '2000-01-31', 24, '3', '2', 'Sudarsanan', 'Driver', 15000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennao', '2402120009', '', '1', 'upload_files/candidate_tracker/79755148023_Vel_Indhu_2021_Bcom(G)_Software Testing-1 (1).pdf', NULL, '1', '2024-02-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 05:43:37', 1, '2024-02-12 05:48:28', 0, NULL, 1),
(16988, 'saravanan m', '14', '9489416108', '', 'saravanan.developer.14@gmail.com', '1999-11-14', 24, '6', '2', 'manimozhi p', 'professor', 32000.00, 1, 0.00, 4.50, 'coimbatore', 'coimbatore', '2402120010', '', '1', 'upload_files/candidate_tracker/85872586428_Resume.pdf', NULL, '1', '2024-02-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 06:30:00', 1, '2024-02-12 06:38:53', 0, NULL, 1),
(16989, 'Kavipriya.c', '20', '9360528306', '9566160392', 'priyakavi52109@gmail.com', '2003-03-29', 20, '2', '2', 'Chandra', 'Nil', 250000.00, 1, 21000.00, 25000.00, 'Kodungaiyur', 'Kodungaiyur', '2402120011', '1', '2', 'upload_files/candidate_tracker/69760344163_Kavipriya', NULL, '1', '2024-02-12', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-12 06:34:12', 112, '2024-02-19 06:27:38', 0, NULL, 1),
(16990, 'c. adhavan', '11', '8056235960', '9941179091', 'adhavan0927@gmail.cm', '1999-12-09', 24, '3', '2', 'parent', 'police', 70000.00, 1, 0.00, 15000.00, 'thousand lights greams road', 'thousand iights', '2402120012', '', '1', 'upload_files/candidate_tracker/70373696108_Adhavan Resume .pdf', NULL, '1', '2024-02-12', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 06:53:58', 1, '2024-02-12 07:05:27', 0, NULL, 1),
(16991, '', '0', '8870113571', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402120013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-12 06:54:47', 0, NULL, 0, NULL, 1),
(16992, 'Akhil PK', '6', '9645273721', '8129381009', '96452737pk@gmail.com', '1997-10-17', 26, '2', '2', 'Shaji pk', 'Carpenter', 25000.00, 2, 23000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2402120014', '1', '2', 'upload_files/candidate_tracker/41944417214_DOC-20240209-WA0000..pdf', NULL, '1', '2024-02-12', 0, '', '5', '71', NULL, 0.00, '', '0', NULL, '2', 'Not Fit For Sales', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2024-02-12 07:08:45', 1, '2024-02-12 07:19:11', 0, NULL, 1),
(16993, '', '0', '9751315413', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402120015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-12 07:49:33', 0, NULL, 0, NULL, 1),
(16994, 'Barathvarmaji S', '13', '6379552300', '', 'barathvarma2000@gmail.com', '2000-04-24', 23, '6', '2', 'Sennakrishnan C', 'Civil Conductor', 250000.00, 2, 1.85, 4.50, 'Dharmapuri', 'Dharmapuri', '2402120016', '', '2', 'upload_files/candidate_tracker/11448071657_DOC-20231209-WA0006..pdf', NULL, '1', '2024-02-12', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 09:30:25', 1, '2024-02-12 09:36:41', 0, NULL, 1),
(16995, 'Manikandan', '13', '9092727605', '8825771287', 'kmanikandan605@gmail.com', '1997-07-05', 26, '6', '2', 'Kalaimani', 'Farmer', 15000.00, 1, 0.00, 6000.00, 'Manandal-Melmalaiyanur', 'OMR,Navalur, Chennai', '2402120017', '', '1', 'upload_files/candidate_tracker/20352963329_Manikandan Resume..pdf', NULL, '1', '2024-02-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 10:11:39', 1, '2024-02-12 10:18:05', 0, NULL, 1),
(16996, 'Vignesh', '13', '8754676621', '', 'vigneshvk468@gmail.com', '2001-11-17', 22, '3', '2', 'Kokila', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'V. Kalathur', 'Chennai, thuraipakkam', '2402120018', '', '1', 'upload_files/candidate_tracker/7441943828_VIGNESH-ANBALAGAN.pdf', NULL, '2', '2024-02-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 01:50:36', 1, '2024-02-12 02:19:14', 0, NULL, 1),
(16997, 'Santhosh', '33', '9790750662', '', 'santiraja1324@gmail.com', '1999-08-24', 24, '3', '2', 'Sakthivel', 'B.com', 15000.00, 1, 0.00, 19000.00, 'H3/4 Lake view appartment tirupati kodai road', 'Chennai', '2402120019', '', '1', 'upload_files/candidate_tracker/57810574517_SANTHOSH RESUME-1.docx_20231023_165303_0000_compressed-1-3.pdf', NULL, '1', '2024-02-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-12 02:41:24', 1, '2024-02-12 02:46:43', 0, NULL, 1),
(16998, 'Sivaraman', '4', '8838123741', '8110096490', 'sivaeee60@gmail.com', '1999-05-29', 24, '2', '2', 'K.Muruganantham', 'Happy life', 15000.00, 2, 0.00, 15000.00, 'Kudiyana Street,pulimangalam,papanasam,thanjavur', 'Kudiyana Street,Pulimangalam,Papanasam,Thanjavur', '2402130001', '1', '1', 'upload_files/candidate_tracker/78383472885_SIVARAMAN.pdf', NULL, '1', '2024-02-13', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'SUSTAINABILITY ISSUE NOT INTRESTED IN JOB', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-13 04:27:16', 108, '2024-02-13 11:36:26', 0, NULL, 1),
(16999, 'Sararthkumar m', '5', '8248522236', '8939399177', 'sarathmano25@gmail.com', '1992-02-28', 31, '2', '2', 'No', 'Marketing officer works', 20000.00, 2, 0.00, 1.00, 'CHENNAI', 'Ambattur', '2402130002', '1', '1', 'upload_files/candidate_tracker/65672316041_sarath new resume.pdf', NULL, '1', '2024-02-13', 0, '', '1', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '4', '6', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-13 05:31:41', 104, '2024-02-13 12:19:02', 0, NULL, 1),
(17000, 'Rizwana Haneef', '5', '8778752511', '', 'rizwanah1999@gmail.com', '1999-07-14', 24, '2', '2', 'Syed haneef', 'Interior designer', 700000.00, 2, 375000.00, 400000.00, 'Vandavasi', 'Chennai', '2402130003', '1', '2', 'upload_files/candidate_tracker/37340100972_Rizwana - CV (1).docx', NULL, '1', '2024-02-13', 0, '', '3', '59', '2024-02-19', 384000.00, '', '3', '2024-09-30', '2', 'Selected for Santhosh team in Staff role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-13 05:48:01', 60, '2024-02-19 10:21:20', 0, NULL, 1),
(17001, 'Anthony Samy Praveen Kumar. J', '6', '7358584347', '9710517969', 'praveenrio1673@gmail.com', '2003-07-16', 20, '2', '2', 'John Bosco', 'Gold Smith', 25000.00, 1, 0.00, 16000.00, 'Ennore, Chennai', 'Periya kasi Kovil kuppam, Ennore, Chennai -57', '2402130004', '1', '1', 'upload_files/candidate_tracker/6919118660_Brown Modern Minimalist Graphic Designer Resume_20231128_203330_0000.pdf', NULL, '1', '2024-02-13', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interested for Cinema industry', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-13 06:03:55', 104, '2024-02-13 12:19:29', 0, NULL, 1),
(17002, 'A gautham', '6', '9176483430', '8939351418', 'vjgowtham28@gmail.com', '2002-01-28', 22, '2', '2', 'Anandharj', 'Driver', 20000.00, 1, 0.00, 16000.00, '181/58 annai indira nagar aynavaram', '181/58 annai indira nagar aynavaram', '2402130005', '1', '1', 'upload_files/candidate_tracker/57944944531_new resume.pdf', NULL, '1', '2024-02-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher After 7 days only we have to confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-13 06:04:54', 104, '2024-02-13 12:18:40', 0, NULL, 1),
(17003, 'Kamesh B', '6', '7397460965', '7397460359', 'kameshbba98@gmail.com', '1998-05-27', 25, '3', '1', 'Vaishnavi', 'BDE', 50000.00, 0, 0.00, 26000.00, 'Thousand lights', 'Thousand lights', '2402130006', '', '2', 'upload_files/candidate_tracker/26515904027_pdfresizer.com-pdf-resize (1).pdf', NULL, '1', '2024-02-13', 3, '', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'Not Fit For Sales', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-13 06:18:54', 1, '2024-02-13 07:08:23', 0, NULL, 1),
(17004, 'Dhulipala Lakshmi sarvani', '6', '9492446475', '9949480905', 'Lakshmisarvani777@gmail.com', '2002-07-25', 21, '3', '2', 'Satyanarayana', 'Business', 75000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2402130007', '', '2', 'upload_files/candidate_tracker/50627248457_Sarvani.pdf', NULL, '1', '2024-02-13', 2, '', '5', '57', NULL, 0.00, '', '0', NULL, '2', 'JFW Charles candidate, She is not fit for tamil voice process', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-13 06:29:33', 1, '2024-02-13 07:18:40', 0, NULL, 1),
(17005, 'Pawan.bs', '13', '8925020141', '9940009804', 'Pawanbs24@gmail.com', '2003-03-24', 20, '3', '2', 'Sumanth.br', 'Business', 100000.00, 1, 0.00, 15000.00, 'A68 pariyar nagar 6th Street', 'A68 pariyar nagar 6th Street', '2402130008', '', '1', 'upload_files/candidate_tracker/46408086001_Pawan BS - CV.docx', NULL, '1', '2024-02-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected in aptitude', '', '', '', NULL, NULL, NULL, 1, '2024-02-13 06:38:22', 110, '2024-02-13 05:40:31', 0, NULL, 1),
(17006, 'Nivetha A', '6', '9345840330', '8680974596', 'Nivethaarunachalam8@gmail.com', '2001-11-16', 22, '3', '2', 'Arunachalam M', 'Sales shop', 200000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2402130009', '', '2', 'upload_files/candidate_tracker/69966073204_new resume.docx', NULL, '1', '2024-02-13', 7, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-13 06:39:00', 1, '2024-02-13 07:28:24', 0, NULL, 1),
(17007, 'Radhika S', '5', '8072561300', '8610818245', 'rathikaselvaraj01@gmail.com', '2001-06-17', 22, '3', '2', 'Venkatesh A', 'Software Business', 45000.00, 3, 0.00, 500000.00, 'Konanchettiyur, kuruchi, valappady, Salem,636104', 'Thousand lights', '2402130010', '', '1', 'upload_files/candidate_tracker/44322104931_Document (12).pdf', NULL, '1', '2024-02-13', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '2', 'Rejected', '5', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-13 10:11:03', 1, '2024-02-13 10:17:56', 0, NULL, 1),
(17008, 'Dinesh M', '15', '9790828557', '', 'mdineshwork24@gmail.com', '2001-02-24', 22, '3', '2', 'Murugan', 'Mechanic', 180000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2402130011', '', '1', 'upload_files/candidate_tracker/58432578499_DINESH M RESUME_1703433950690_Dinesh M (1).pdf', NULL, '1', '2024-02-13', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-13 10:11:21', 1, '2024-02-13 10:15:42', 0, NULL, 1),
(17009, 'Nadeem Abbas', '6', '9551431648', '9884509371', 'abbasnadeem508@gmail.com', '1994-10-22', 29, '6', '2', 'Mahdi ali', 'Wheel alloinment', 15000.00, 2, 23000.00, 25000.00, 'Chennai', 'Chennai', '2402130012', '', '2', 'upload_files/candidate_tracker/82173691497_DOC-20231027-WA0006..doc', NULL, '1', '2024-02-13', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candiate Salary excectation is to high, also sustain problem', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-13 10:40:51', 110, '2024-02-13 06:12:49', 0, NULL, 1),
(17010, 'Naveen kumar', '4', '6380855576', '6385934077', 'naveenkmr1205@gmail.com', '1995-05-12', 28, '3', '2', 'Kannan, malar', 'BE Mechanical Engineering', 50000.00, 1, 18000.00, 18000.00, '1, 2nd Street, annai sivagami nagar', '1, 2nd Street, Annai sivagami nagar', '2402130013', '', '2', 'upload_files/candidate_tracker/73677446789_Naveen Resume (2).pdf', NULL, '1', '2024-02-13', 0, '', '3', '59', '2024-02-14', 182496.00, '', '3', '2024-12-12', '2', 'Selected for MF in Staff Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '4', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-13 12:03:31', 60, '2024-02-13 07:56:12', 0, NULL, 1),
(17011, 'Jayasurya', '5', '6380665342', '9688335634', 'Vjsurya2308@gmail.com', '2001-08-23', 22, '2', '2', 'Venkatachalam', 'Electronican', 30000.00, 2, 0.00, 15000.00, 'Cuddalore', 'Chennai porur', '2402140001', '1', '1', 'upload_files/candidate_tracker/78408180375_Jayasurya Exp Resume.pdf', NULL, '1', '2024-02-14', 0, '', '3', '59', '2024-02-16', 204000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-14 04:16:09', 60, '2024-02-16 10:06:49', 0, NULL, 1),
(17012, 'Mohammed Muzammil', '14', '9360777674', '9789676514', 'mohammedmuZZU4@gmail.com', '2002-05-18', 21, '6', '2', 'B Malick Basha', 'Labour', 15000.00, 1, 0.00, 350000.00, 'Ambur', 'Chennai', '2402140002', '', '1', 'upload_files/candidate_tracker/13048078291_MUZAMMIL.pdf', NULL, '1', '2024-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-14 04:52:00', 1, '2024-02-14 05:17:12', 0, NULL, 1),
(17013, 'S Tabrez Ahmed', '14', '8270706893', '9790254636', 'tabrezahmedsta01@gmail.com', '2000-08-24', 23, '6', '2', 'S Rafeeque Ahmed', 'Supervisor', 15000.00, 3, 0.00, 340000.00, 'Ambur', 'Chennai', '2402140003', '', '1', 'upload_files/candidate_tracker/57447282239_S TABREZ AHMED.pdf', NULL, '1', '2024-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-14 05:02:04', 1, '2024-02-14 05:06:44', 0, NULL, 1),
(17014, 'A.Vinodhini', '5', '9092789446', '', 'vinovinodhini025@gmail.com', '1999-01-25', 25, '2', '1', 'Kalaiselvam', 'Photo grapher and designer', 50000.00, 1, 18000.00, 22000.00, 'Chennai', 'Chennai', '2402140004', '1', '2', 'upload_files/candidate_tracker/16426636662_vino CV.pdf', NULL, '1', '2024-02-14', 30, '', '1', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-14 05:04:39', 108, '2024-02-14 04:20:38', 0, NULL, 1),
(17015, 'Shiva Raj Bandaru', '2', '9392401820', '', 'shivarajbandaru5@gmail.com', '2001-10-07', 22, '3', '2', 'Rajesham bandaru', 'Business', 10000.00, 1, 0.00, 400000.00, 'Jannaram, ponakal', 'Jannaram, ponakal', '2402140005', '', '1', 'upload_files/candidate_tracker/29973205257_ShivarajResume1.pdf', NULL, '1', '2024-02-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude', '', '', '', NULL, NULL, NULL, 1, '2024-02-14 05:11:01', 110, '2024-02-14 06:07:40', 0, NULL, 1),
(17016, 'Jayasudha.S', '5', '6369387479', '8778398177', 'Jayasudha9290@gmail.com', '2000-10-07', 23, '1', '2', 'Selvam', 'Daily wages', 12000.00, 0, 0.00, 15000.00, 'Kavaraipettai', 'Kavaraipettai', '2402140006', '', '1', 'upload_files/candidate_tracker/73818347865_jaya.pdf', NULL, '1', '2024-02-14', 0, '77811', '3', '59', '2024-03-04', 174000.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team 5050 profile internal reference need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-14 05:20:00', 60, '2024-03-04 10:03:46', 0, NULL, 1),
(17017, 'A.VINOTH KUMAR', '13', '8778398177', '6369387479', 'Vinoth1kumarr@gmail.com', '1999-04-30', 24, '3', '2', 'Arumugam', 'Kooli', 12000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2402140007', '', '1', 'upload_files/candidate_tracker/94814129289_pdfresizer.com-pdf-resize (2).pdf', NULL, '1', '2024-02-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude', '', '', '', NULL, NULL, NULL, 1, '2024-02-14 05:32:48', 110, '2024-02-14 06:12:19', 0, NULL, 1),
(17018, 'Aathil Rasool A', '13', '6379134848', '', 'aathilrasool04@gmail.com', '2000-08-04', 23, '4', '2', 'Mr. AJMALKHAN', 'AGRICULTURE', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2402140008', '', '1', 'upload_files/candidate_tracker/65654900624_DOC-20240213-WA0003..docx', NULL, '1', '2024-02-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-14 05:42:22', 1, '2024-02-14 05:53:03', 0, NULL, 1),
(17019, 'Santhosh', '6', '9884803282', '9514242863', 'sandy243santhosh@gmail.com', '2000-03-24', 23, '1', '2', 'Chinnaswamy', 'Business', 25000.00, 1, 0.00, 18000.00, 'Villivakkam', 'Villivakkam', '2402140009', '', '1', 'upload_files/candidate_tracker/18253719755_sandy resume (1) (1).pdf', NULL, '2', '2024-02-14', 0, 'P1427', '5', '57', NULL, 0.00, '', '0', NULL, '1', 'Sustainability issues', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-14 05:51:08', 1, '2024-02-14 06:18:12', 0, NULL, 1),
(17020, 'Vignesh', '13', '9176104255', '', 'Vigneshr3333@gmail.com', '2001-11-03', 22, '3', '2', 'Ravishankar', 'Watchman', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2402140010', '', '1', 'upload_files/candidate_tracker/79287761354_Vigneshr.pdf', NULL, '1', '2024-02-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude', '', '', '', NULL, NULL, NULL, 1, '2024-02-14 06:00:42', 110, '2024-02-14 06:11:44', 0, NULL, 1),
(17021, 'Janathul ferthous', '6', '6382196515', '', 'JanathulFerthous@gmail.com', '2001-11-09', 22, '2', '2', 'Syed haneef', 'Interior work', 80000.00, 2, 0.00, 18000.00, 'Vandavasi', 'Kolathur anna salai', '2402140011', '1', '1', 'upload_files/candidate_tracker/72781669671_Ferthous Cv-chennai.pdf', NULL, '1', '2024-02-14', 0, '', '5', '105', NULL, 0.00, '', '0', NULL, '2', 'Sustain Problem Also Communication issue', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2024-02-14 06:34:10', 1, '2024-02-14 07:20:06', 0, NULL, 1),
(17022, 'Mohammad Abdullah', '23', '7010148165', '9600765405', 'hk.hussainabdullah@gmail.com', '2009-02-14', 0, '6', '2', 'Haja kamal', 'Farmer', 25000.00, 2, 22.00, 25.00, '98 Moore street mannady beach station', '98 Moore Street Mannady Beach Station', '2402140012', '', '2', 'upload_files/candidate_tracker/2347892610_Abdullah cv 2 white bg_compressed.pdf', NULL, '1', '2024-02-14', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-14 06:46:04', 1, '2024-02-14 06:56:50', 0, NULL, 1),
(17023, 'SARATH KUMAR B M', '5', '8681902700', '9841023951', 'sarathdio143@gmail.com', '1996-05-01', 27, '2', '1', 'Nivetha P', 'Assistant Manager Credit Card Collection', 80000.00, 0, 25000.00, 35000.00, 'Triplicane Chennai', 'Triplicane Chennai', '2402140013', '1', '2', 'upload_files/candidate_tracker/4518905438_0_Sarath FSC Banca-1.pdf', NULL, '3', '2024-02-14', 0, '', '3', '59', '2024-02-19', 330000.00, '', '5', '1970-01-01', '1', 'Selected for Santhosh Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-14 07:00:30', 60, '2024-02-17 06:39:37', 0, NULL, 1),
(17024, 'Roshini', '6', '6374553617', '9790910697', 'roshiniv580@gmail.com', '2003-05-04', 20, '2', '2', 'Dilliammal', 'Business', 30000.00, 1, 14000.00, 15000.00, 'Avadi chennai', 'Avadi chennai', '2402140014', '1', '2', 'upload_files/candidate_tracker/99211979106_Resume1.pdf', NULL, '1', '2024-02-15', 1, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Her Communication is Not good also sher is not truthable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-14 01:06:20', 104, '2024-02-15 06:52:57', 0, NULL, 1),
(17025, 'Hemkumar k', '6', '9841751336', '6383753885', 'hemkumar1336@gmail.com', '1998-10-14', 25, '2', '2', 'Sk kannappan', 'Business', 45000.00, 1, 16000.00, 23000.00, 'Chennai', 'Chennai', '2402150001', '1', '2', 'upload_files/candidate_tracker/99437469591_HemKumar word.docx', NULL, '1', '2024-02-15', 0, '', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'Not Fit For Sales', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2024-02-15 02:37:37', 1, '2024-02-15 03:55:08', 0, NULL, 1),
(17026, '', '0', '9585025469', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402150002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-15 04:57:00', 0, NULL, 0, NULL, 1),
(17027, 'Mohamed azaruden', '4', '9600288263', '', 'Mfazarmohd99@gmail.com', '2009-02-15', 0, '2', '2', 'Mohammed farooq', 'Part time', 10000.00, 1, 10000.00, 18000.00, 'Koradacherry', 'Koradacherry', '2402150003', '1', '2', 'upload_files/candidate_tracker/17161179574_Azarudeen_641[1].pdf', NULL, '1', '2024-02-15', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'UNFIT FOR TELE SALES AND NOT SUIT FOR SALES', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-15 05:12:03', 108, '2024-02-15 11:14:13', 0, NULL, 1),
(17028, 'kishore kumar d', '31', '9080887967', '9094994367', 'Sabarivasan889@gmail.com', '2001-10-25', 22, '1', '2', 'Dillibabu', 'Carpenter', 15.00, 1, 0.00, 2.40, 'Chennai', 'Ambattur', '2402150004', '', '1', 'upload_files/candidate_tracker/49072490512_KISHORE KUMAR RESUME WORD_08e95195-cdf4-4718-8b4b-b313391878ca.pdf', NULL, '1', '2024-02-15', 0, 'I am a freshe', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-15 05:39:21', 1, '2024-02-15 05:50:58', 0, NULL, 1),
(17029, 'Karthikeyan J', '6', '8682988075', '', 'karthikeyanjayathi@gmail.com', '1996-11-10', 27, '2', '2', 'Jayadhi', 'BDA', 25000.00, 2, 300000.00, 400000.00, 'Madipakkam, Chennai', 'Madipakkam, Chennai', '2402150005', '1', '2', 'upload_files/candidate_tracker/29909674327_Karthikeyan_J-3.pdf', NULL, '1', '2024-02-15', 0, '', '1', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-15 05:39:43', 104, '2024-02-15 06:52:03', 0, NULL, 1),
(17030, 't vetri vel', '31', '9787319741', '9080887967', 'vetriveltamilselvan12@gmail.com', '2003-02-12', 21, '1', '2', 'megala', 'farmer', 8500.00, 1, 0.00, 2.40, 'Chennai', 'Chennai', '2402150006', '', '1', 'upload_files/candidate_tracker/97117802264_Resume Vetrivel.pdf', NULL, '1', '2024-02-15', 0, 'i am a fresher', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-15 05:41:32', 1, '2024-02-15 05:50:23', 0, NULL, 1),
(17031, 'Babu P', '13', '8608219655', '', 'arivubabu98@gmail.com', '1998-05-09', 25, '3', '2', 'Palanisami', 'Farmer', 10000.00, 2, 0.00, 20000.00, 'Kallakurichi', 'Vadapalani', '2402150007', '', '1', 'upload_files/candidate_tracker/70736370160_Babu Resume 1.pdf', NULL, '1', '2024-02-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-15 06:16:40', 1, '2024-02-15 06:19:51', 0, NULL, 1),
(17032, 'Sridhar A', '13', '9345628924', '', 'sriannnamalai2003@gmail.com', '2003-04-21', 20, '3', '2', 'Annamalai', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Ulundurpet', 'Chennai', '2402150008', '', '1', 'upload_files/candidate_tracker/69232840864_Sridhar Resume-3.pdf', NULL, '1', '2024-02-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-15 06:18:31', 1, '2024-02-15 06:25:34', 0, NULL, 1),
(17033, 'Dhanalakshmi.V', '6', '7200157605', '9790910691', 'dhanalakshmiv510@gmail.com', '2000-10-05', 23, '2', '2', 'Dilliammal', 'Work from home', 30000.00, 1, 20000.00, 20000.00, 'Avadi chennai', 'Avadi chennai', '2402150009', '1', '2', 'upload_files/candidate_tracker/73779933445_dhanalakshmi.pdf', NULL, '1', '2024-02-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-15 06:21:35', 104, '2024-02-29 10:47:45', 0, NULL, 1),
(17034, 'Sasi Kumar', '5', '6382564201', '', 'sasikaikondan21@gmail.com', '2003-04-06', 20, '2', '2', 'Kaikondan', 'Soap business', 400000.00, 2, 0.00, 15000.00, 'Thenkasi', 'Arumbakkam', '2402150010', '1', '1', 'upload_files/candidate_tracker/29268100027_sasi.pdf', NULL, '1', '2024-02-15', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-15 06:24:06', 108, '2024-02-15 12:40:26', 0, NULL, 1),
(17035, 'Siranjeevi A', '23', '6381684155', '', 'Sjchinna3010@gmail.com', '1995-10-30', 0, '3', '2', 'Parent', 'Na', 38000.00, 1, 0.00, 12000.00, '188, Drowpathy Amman Kovil st, Annambedu, ch - 24', 'No. 37/1. Kandan street Perambalur ch-11', '2402150011', '', '1', 'upload_files/candidate_tracker/90428755249_SIRANJEEVI.pdf', NULL, '1', '2024-02-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-15 06:30:59', 1, '2024-02-15 06:53:35', 0, NULL, 1),
(17036, 'R.Bhuvanesh prabu', '7', '7094506002', '9994532412', 'bhuvaneshprabu93@gmail.com', '2009-02-15', 0, '6', '2', 'R.Ramesh', 'Conductor (Ret)', 10000.00, 1, 0.00, 25000.00, 'No 355 Sri Shakthi nagar 2 Neyveli', 'Pergalathur', '2402150012', '', '1', 'upload_files/candidate_tracker/34864137830_Bhuvanesh Resume new 23.pdf', NULL, '1', '2024-02-15', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-15 06:40:05', 1, '2024-02-15 06:54:26', 0, NULL, 1),
(17037, 'Sundaram', '13', '9344868804', '9360714454', 'sundaramkrish23@gmail.com', '2001-06-10', 22, '3', '2', 'Krishnamoorthi', 'Own business', 18000.00, 2, 0.00, 2.50, 'New 5th ward, Shanmuga Nagar, Tharamangalam, Salem', 'Sai Nagar, Thuraipakkam', '2402150013', '', '1', 'upload_files/candidate_tracker/67060086282_Sundaram\'s Resume-2.pdf', NULL, '1', '2024-02-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-15 06:47:23', 1, '2024-02-15 06:58:31', 0, NULL, 1),
(17038, 'Suriya Begum', '4', '9344858630', '8637417166', 'taslimsyed481@gmail.com', '1994-05-10', 29, '2', '1', 'A.Saleem', 'Car extra fittings', 30000.00, 3, 12000.00, 18000.00, 'Triplicane', 'Triplicane', '2402150014', '1', '2', 'upload_files/candidate_tracker/42480747785_Resume_Library job resume_Format1 (2).pdf', NULL, '1', '2024-02-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'She is not comfortable with the target and the pressure will not sustain  in our roles and handle our work pressure', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1020', '0', NULL, NULL, NULL, 1, '2024-02-15 06:47:33', 1, '2024-02-17 09:18:42', 0, NULL, 1),
(17039, 'S.Manju', '6', '8179309972', '9150577020', 'Vmanju612@gmail.com', '1993-10-12', 30, '3', '1', 'Senthil', 'Avadi', 50000.00, 1, 18000.00, 25000.00, 'Avadi', 'Avadi', '2402150015', '', '2', 'upload_files/candidate_tracker/42089505134_Manju Resume 01-02-2024.pdf', NULL, '1', '2024-02-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-15 06:53:58', 1, '2024-02-15 08:02:11', 0, NULL, 1),
(17040, 'Asiya K', '4', '7338987846', '9150236866', 'Syedasiya2000@gmail.com', '2000-10-18', 23, '3', '2', 'Kaja mohideen', 'Sales man', 12000.00, 1, 15000.00, 18000.00, 'Royapuram', 'Royapuram', '2402150016', '', '2', 'upload_files/candidate_tracker/83183189628_Asiya resume (1).pdf', NULL, '1', '2024-02-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, 'H1020', '0', NULL, NULL, NULL, 1, '2024-02-15 06:59:01', 1, '2024-02-15 07:14:11', 0, NULL, 1),
(17041, 'Santhiya.K', '6', '8122976358', '6369752842', 'santhiyacsesanthiya0208@gmail.com', '2001-08-02', 22, '1', '2', 'Ponselvi', 'School nutrition assistant', 7000.00, 2, 18000.00, 20000.00, 'Tirunelveli', 'Saidapet', '2402150017', '', '2', 'upload_files/candidate_tracker/19925179433_CV_202402151145484.pdf', NULL, '1', '2024-02-15', 0, '123', '5', '102', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable Sales ', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-15 09:24:59', 1, '2024-02-15 09:53:05', 0, NULL, 1),
(17042, 'Anantha Hariharan V', '2', '8870237923', '9965168649', 'ananthahariharan116@gmail.com', '2009-02-15', 0, '3', '2', 'Veerabagu S', 'Rtd Tahsildar', 250000.00, 2, 0.00, 250000.00, 'Thoothukudi', 'Chennai', '2402150018', '', '1', 'upload_files/candidate_tracker/7431945481_Hariharan_V.pdf', NULL, '1', '2024-02-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-15 10:39:12', 1, '2024-02-15 10:42:49', 0, NULL, 1),
(17043, '', '0', '8220040422', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402150019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-15 11:11:16', 0, NULL, 0, NULL, 1),
(17044, '', '0', '9003105321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402150020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-15 12:44:30', 0, NULL, 0, NULL, 1),
(17045, 'TAMILSELVI V', '4', '7338928057', '', 'tamilselvi28052000@gmail.com', '2000-05-28', 23, '2', '2', 'VENKATESAN C', 'Farmer', 700000.00, 1, 14000.00, 22000.00, '1/125 Pillaiyar kovil street kappai, Gingee 604205', '22/7 Kavitha Street Kannappa Nr Arumbakkam Ch 106', '2402150021', '1', '2', 'upload_files/candidate_tracker/43810030204_DOC-20240206-WA0004..pdf', NULL, '1', '2024-02-16', 30, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '6', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-15 03:49:00', 112, '2024-02-19 06:38:29', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17046, 'KARTHICK M', '6', '9500061134', '9789026334', 'karthi17192003@gmail.com', '2003-10-17', 20, '1', '2', 'MURUGAN', 'TAILOR', 12000.00, 1, 0.00, 15000.00, 'No:239/B1, 15th St, G.K.M.Colony, Chennai-600082', 'No:239/B1, 15th St, G.K.M.Colony, Chennai-600082', '2402160001', '', '1', 'upload_files/candidate_tracker/28667956221_Resume(0).pdf', NULL, '1', '2024-02-16', 0, '0123456', '3', '59', '2024-02-19', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-16 03:53:32', 60, '2024-02-17 06:31:18', 0, NULL, 1),
(17047, 'Deenadayalan', '6', '9363389997', '', 'deena.raju.03@gmail.com', '1997-09-08', 26, '2', '1', 'Raju', 'Police', 50000.00, 1, 450000.00, 500000.00, 'Pallikaranai', 'Pallikaranai', '2402160002', '1', '2', 'upload_files/candidate_tracker/46009128245_DeenadayalanR_Resume_2 (1).pdf', NULL, '1', '2024-02-16', 0, '', '3', '59', '2024-02-21', 360000.00, '', '5', '1970-01-01', '1', 'Selected for Santhosh Team in Staff role Direct selection by Santhosh in the absence of Sriram Sir Need to analyse in 7 Days', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-16 05:26:06', 60, '2024-02-20 06:08:50', 0, NULL, 1),
(17048, 'Karthikeyan', '6', '6379398404', '', 'karthikeyan.r.alon@gmail.com', '2009-02-16', 0, '2', '2', 'A.ravi', 'Salse mam', 20000.00, 1, 2.20, 15000.00, 'Alwarepat', 'Mylapore', '2402160003', '1', '2', 'upload_files/candidate_tracker/52497838086_1689492751858_1689492514460_karthikeyan RESUME end-3.pdf', NULL, '1', '2024-02-16', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok but he mentally unfit', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-16 06:25:03', 104, '2024-02-16 05:22:38', 0, NULL, 1),
(17049, 'R .vennila', '6', '7397057775', '', 'Vennilan480@gmail.com', '2004-05-16', 19, '3', '2', 'Ravi.A', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Chidambaram', 'Chennai', '2402160004', '', '1', 'upload_files/candidate_tracker/84585347952_nila resume ACE Scanner_2023_11_28.pdf', NULL, '1', '2024-02-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-02-16 06:53:03', 110, '2024-02-16 01:19:44', 0, NULL, 1),
(17050, 'RAJA KP', '13', '8825968405', '', 'kpraja1920@gmail.com', '2001-09-19', 22, '3', '2', 'N.LATHA', 'State government staff', 30000.00, 1, 0.00, 15000.00, 'No.19 aarumugaswamy kovil street , tiruttani.', 'No.19 Aarumugaswamy Kovil Street , Tiruttani.', '2402160005', '', '1', 'upload_files/candidate_tracker/24913362256_RAJA KP RESUME.pdf', NULL, '1', '2024-02-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-16 10:10:47', 1, '2024-02-16 10:14:22', 0, NULL, 1),
(17051, '', '0', '7395988026', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402160006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-16 11:32:04', 0, NULL, 0, NULL, 1),
(17052, '', '0', '6374732500', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402170001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-17 04:52:59', 0, NULL, 0, NULL, 1),
(17053, '', '0', '6385568276', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402170002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-17 05:30:50', 0, NULL, 0, NULL, 1),
(17054, 'A Praveen Kumar', '5', '7845161396', '9840837602', 'praveenkumar.officialconnect@gmail.com', '1996-03-13', 27, '2', '2', 'Ashok Kumar', 'Gold smith', 40000.00, 2, 25.00, 28.00, 'Chennai', 'Chennai', '2402170003', '1', '2', 'upload_files/candidate_tracker/43001565020_Updated Resume 2024.pdf', NULL, '1', '2024-02-17', 0, '', '3', '59', '2024-02-21', 350000.00, '', '5', '1970-01-01', '2', '3.5 L  30 days 2 L buiness then 3.75 LPA Commitment from Gaurav Sir and the profile got selected for GK Sir Team', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-17 05:37:00', 60, '2024-02-20 06:12:24', 0, NULL, 1),
(17055, 'Evangelin Beaulah', '6', '7358793263', '', 'evangelinbeuls99@gmail.com', '1999-11-09', 24, '2', '2', 'D. Sheela', 'Home Maker', 19000.00, 1, 19000.00, 400000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2402170004', '1', '2', 'upload_files/candidate_tracker/11678470454_updated CV feb 14.docx', NULL, '1', '2024-02-17', 10, '', '3', '59', '2024-02-21', 300000.00, '', '5', '1970-01-01', '1', '30 Days 1.5L business then 3.2LPA Commitment by Gaurav Sir', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-17 05:41:26', 60, '2024-02-20 06:55:08', 0, NULL, 1),
(17056, 'Patrick Lebinraj L', '31', '9361129164', '7904543686', 'lpatricklebinraj@gmail.com', '2001-10-12', 22, '3', '2', 'Sagaya Mary L', 'House wife', 40000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2402170005', '', '1', 'upload_files/candidate_tracker/48417431981_Patrick_Lebinraj_Resume.pdf', NULL, '1', '2024-02-17', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-17 06:27:14', 1, '2024-02-17 06:39:59', 0, NULL, 1),
(17057, 'V Abinesh', '31', '9344119821', '', 'vabinesh2312002@gmail.com', '2002-01-23', 22, '3', '2', 'Venkatesan', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Villupuram', 'Chennai', '2402170006', '', '1', 'upload_files/candidate_tracker/20870530786_Abinesh_V_resume.pdf (1) (1).pdf', NULL, '1', '2024-02-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-17 06:32:59', 1, '2024-02-17 06:51:33', 0, NULL, 1),
(17058, 'Nihall Fathima N', '5', '8939148983', '9176221868', 'nihallnasar@gmail.com', '2002-01-24', 22, '2', '2', 'Nil', 'Nil', 25000.00, 2, 20000.00, 26000.00, 'Royapettah', 'Royapettah', '2402170007', '1', '2', 'upload_files/candidate_tracker/44103554006_NIHALL FATHIMA N - RESUME.pdf', NULL, '1', '2024-02-17', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-17 06:52:15', 108, '2024-02-19 10:04:28', 0, NULL, 1),
(17059, 'Gokulnath G a', '17', '8825671505', '9043365141', 'Gokulsugan98@gmail.com', '1998-10-29', 25, '2', '2', 'Gopalakrishnan A', 'Senior Assembler', 25000.00, 0, 350000.00, 580000.00, 'Chennai', 'Chennai', '2402170008', '1', '2', 'upload_files/candidate_tracker/26528800962_Gokulnath.pdf', NULL, '1', '2024-02-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-17 07:06:02', 104, '2024-02-19 06:44:26', 0, NULL, 1),
(17060, 'Jansirani', '20', '9342119350', '7550070361', 'Ajithjansi06@gmail.com', '1999-08-13', 24, '2', '2', 'Meena J', 'House keeping', 12000.00, 1, 23800.00, 300000.00, '6/43 Tank bund road nandhanam ch-600035', '6/43 Tank bund road nandhanam chennai -600035', '2402170009', '1', '2', 'upload_files/candidate_tracker/3077841375_Jansirani updated Resume.pdf', NULL, '1', '2024-02-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-17 07:09:13', 108, '2024-02-29 10:52:21', 0, NULL, 1),
(17061, 'Priyanka S', '20', '7904214347', '9940230673', 'Priyabujji801@gmail.com', '1999-11-12', 24, '3', '1', 'Sathyaraj', 'Sales executive', 300000.00, 2, 25000.00, 30000.00, 'Chennai', 'Chennai', '2402170010', '', '2', 'upload_files/candidate_tracker/72237486428_priyanka resume.docx', NULL, '1', '2024-02-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-17 08:03:19', 1, '2024-02-17 09:04:57', 0, NULL, 1),
(17062, '', '0', '9384050087', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402190001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-19 04:52:18', 0, NULL, 0, NULL, 1),
(17063, 'Abirami I', '22', '9384924957', '', 'Abiramiiyyanar1999@gmail.com', '1999-10-12', 24, '2', '2', 'Rasathi I', 'Daily wages', 20000.00, 0, 20000.00, 25000.00, 'Villupuram', 'Chennai', '2402190002', '1', '2', 'upload_files/candidate_tracker/50746383669_Abirami I.docx.pdf', NULL, '1', '2024-02-19', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-19 04:56:49', 112, '2024-02-20 09:49:27', 0, NULL, 1),
(17064, 'Janagar', '4', '9087107268', '', 'Janagarnagarajan@gmail.com', '1995-01-03', 29, '2', '2', 'Nagarajan', 'Engineering', 300000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2402190003', '1', '1', 'upload_files/candidate_tracker/41255740968_NJANAGAR_240201_134611.pdf', NULL, '1', '2024-02-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-19 05:06:40', 104, '2024-02-19 05:31:32', 0, NULL, 1),
(17065, 'amshavarthan d', '4', '9677982662', '', 'amsha2706@gmail.com', '2003-06-27', 20, '2', '2', 'kanimozhi', 'housewife', 25000.00, 1, 0.00, 14000.00, 'thanjavur', 'thanjavur', '2402190004', '1', '1', 'upload_files/candidate_tracker/43754073958_Amshavarthan Resume_new1.pdf', NULL, '1', '2024-02-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-19 05:15:20', 108, '2024-02-19 12:37:11', 0, NULL, 1),
(17066, 'Annie Evangeline B', '5', '8056192492', '', 'annieevangelin1@gmail.com', '2000-07-15', 23, '2', '2', 'Babu Raj', 'Ac worker', 15000.00, 1, 17000.00, 25000.00, '541, cholan Street, Akash Nagar, gerugambakkam,', '541, cholan Street akash nagar gerugambakkam', '2402190005', '29', '2', 'upload_files/candidate_tracker/36289487354_Annie resume PDF.pdf', NULL, '1', '2024-02-19', 30, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Got rejected by the Sales Manager but by mistake he mentioned selected as he got other profile on the same name Evangelin,however we can give a try later with the profile for another manager too.Will confirm the DOI at the earliest', '5', '1', '', '1', '8', '', '2', '2024-02-26', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-19 05:15:57', 110, '2024-02-19 12:00:13', 0, NULL, 1),
(17067, 'Akash MM', '5', '9994695719', '', 'akashlikely348@gmail.com', '2002-02-23', 21, '2', '2', 'Mohandas', 'Cooli', 15000.00, 1, 0.00, 16000.00, 'Kanyakumari', 'Nungampakam', '2402190006', '1', '1', 'upload_files/candidate_tracker/84038349309_Akash-MM-FlowCV-Resume-20231208 (1).pdf', NULL, '1', '2024-02-19', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is Not good , Also Voice is Very Lower And Apperiance is Also No Good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-19 05:27:37', 108, '2024-02-19 04:43:10', 0, NULL, 1),
(17068, 'Lynda Mable E', '4', '8838354352', '9629223926', 'lyndamabele@gmail.com', '2002-08-01', 21, '2', '1', 'Sathish', 'Collection officer in Bajaj Fin Serv', 18000.00, 0, 0.00, 16000.00, 'Thanjavur', 'Thanjavur', '2402190007', '1', '1', 'upload_files/candidate_tracker/3687486084_Resume CV.pdf', NULL, '1', '2024-02-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-19 05:31:26', 108, '2024-02-19 12:40:54', 0, NULL, 1),
(17069, 'K.venkadesh', '6', '8110099680', '6382515478', 'venkadeshkalai171@gmail.com', '2002-06-06', 21, '2', '2', 'A.kalaiarasan', 'Farmer', 20000.00, 1, 18100.00, 20000.00, 'Pudukkottai', 'Triplicane', '2402190008', '29', '2', 'upload_files/candidate_tracker/12413606250_venkadesh cv.doc.pdf', NULL, '1', '2024-02-19', 1, '', '3', '59', '2024-02-21', 216000.00, '', '5', '1970-01-01', '2', 'Selected for DM Team Relationship Executive Role 5050 Need to analyse in 7 days training', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-19 05:57:13', 60, '2024-02-20 05:42:07', 0, NULL, 1),
(17070, 'Vasanthi', '6', '9344505659', '8220520903', 'Vasanthi.m2332@gmail.com', '2000-02-04', 24, '2', '2', 'Murugan', 'Barbar', 15.00, 3, 23.70, 26.00, 'Thiruvannamalai', 'Chennai', '2402190009', '29', '2', 'upload_files/candidate_tracker/67942511566_Vasanthi_Resume[1]-1.pdf', NULL, '1', '2024-02-19', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok,pls negotiate the salary and confirm your end joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-19 06:13:42', 110, '2024-02-19 02:41:38', 0, NULL, 1),
(17071, 'Pooja Dharshini P', '4', '9566240699', '', 'poojadharshini2406@gmail.com', '2000-10-06', 23, '2', '2', 'Periyasami', 'Business', 20000.00, 1, 20000.00, 28000.00, 'Chennai', 'Chennai', '2402190010', '1', '2', 'upload_files/candidate_tracker/45097965386_updated Resume- Pooja.pdf', NULL, '1', '2024-02-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-19 06:16:16', 112, '2024-02-20 10:25:09', 0, NULL, 1),
(17072, '', '0', '9566250699', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402190011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-19 06:25:24', 0, NULL, 0, NULL, 1),
(17073, 'Gopi G', '13', '9361878151', '9791604820', 'gopi.sg2023@gmail.com', '2002-03-24', 21, '3', '2', 'Govindaraj', 'laundry worker', 15000.00, 2, 0.00, 25000.00, 'Vellore', 'Chennai', '2402190012', '', '1', 'upload_files/candidate_tracker/90580549250_Gopi .pdf', NULL, '1', '2024-02-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-19 06:37:09', 1, '2024-02-19 07:19:40', 0, NULL, 1),
(17074, '', '0', '8012027305', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402190013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-19 06:50:30', 0, NULL, 0, NULL, 1),
(17075, 'Saranya', '6', '9080757369', '', 'sparklesaran1998@gmail.com', '1998-11-27', 25, '2', '2', 'Nil', 'Nil', 10000.00, 0, 408000.00, 600000.00, 'Chennai', 'Chennai', '2402190014', '1', '2', 'upload_files/candidate_tracker/44867846432_Saranya venkatesan.docx', NULL, '1', '2024-02-19', 0, '', '1', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-19 07:08:04', 112, '2024-02-22 06:58:37', 0, NULL, 1),
(17076, '', '0', '7092832304', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402190015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-19 07:43:12', 0, NULL, 0, NULL, 1),
(17077, 'Mohammed Saleem', '6', '7604832272', '6384613178', 'snlmathew0427@gmail.com', '2009-02-19', 0, '2', '2', 'Girija', 'house keeping work in fedility company', 20000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2402190016', '1', '2', 'upload_files/candidate_tracker/59381298032_Mohammed Saleem Resume.pdf', NULL, '2', '2024-02-20', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-19 10:32:50', 60, '2024-02-20 07:28:55', 0, NULL, 1),
(17078, '', '0', '7010456679', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402190017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-19 10:38:53', 0, NULL, 0, NULL, 1),
(17079, 'Jaisury', '4', '9791330799', '', 'jaisuryasiva3@gmail.com', '1999-09-19', 24, '2', '2', 'Sivanantham', 'Weaver', 20000.00, 1, 460000.00, 460000.00, 'kulithalai', 'Chennai', '2402190018', '29', '2', 'upload_files/candidate_tracker/11045648546_DOC-20240113-WA0000.docx', NULL, '1', '2024-02-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-19 12:13:33', 110, '2024-02-20 03:22:42', 0, NULL, 1),
(17080, 'Neelakandan Mohan', '5', '7200197138', '', 'neelakandanmohan21@gmail.com', '1997-05-06', 26, '2', '2', 'Mohan', 'Farmer', 50000.00, 2, 20500.00, 26000.00, 'Chidambaram', 'Tambaram', '2402190019', '29', '2', 'upload_files/candidate_tracker/81987271740_Neelakandan_Mohan_Updated_resume2024.pdf', NULL, '1', '2024-02-20', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-19 12:20:31', 110, '2024-02-20 11:57:16', 0, NULL, 1),
(17081, '', '0', '8148758647', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402190020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-19 12:25:25', 0, NULL, 0, NULL, 1),
(17082, '', '0', '8668035960', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402190021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-19 12:33:52', 0, NULL, 0, NULL, 1),
(17083, '', '0', '8072273586', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402190022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-19 12:56:15', 0, NULL, 0, NULL, 1),
(17084, 'Badrinath', '20', '7338987392', '9176843610', 'badrinathsai3@gmail.com', '2001-12-08', 22, '2', '2', 'Krishna moorthy', 'Tailor', 12000.00, 1, 0.00, 17000.00, 'K. K. D nagar', 'K. K. D nagar', '2402190023', '1', '1', 'upload_files/candidate_tracker/57424150750_Image to PDF 20231120 16.06.09.pdf', NULL, '1', '2024-02-20', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-19 01:14:52', 110, '2024-02-20 05:34:16', 0, NULL, 1),
(17085, 'Vishwa Bharathi', '6', '8754442594', '8124492609', 'vishwabharathi24@gmail.com', '2000-05-24', 23, '2', '1', 'Karthikeyan', 'Un employee', 20000.00, 1, 0.00, 25000.00, '6, A blk Valluvar ft, Siruvallur high rd, Perambur', '6, A Blk Valluvar Ft, Siruvallur High Rd, Perambur', '2402190024', '29', '2', 'upload_files/candidate_tracker/63936571483_Vishwa Bharathi Resume.pdf', NULL, '1', '2024-02-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-19 01:15:45', 110, '2024-02-20 05:34:59', 0, NULL, 1),
(17086, 'VIGNESH', '5', '7448393973', '', 'vickydharanikumar2212@gmail.com', '1995-12-22', 28, '2', '2', 'MALATHI', 'Tailor', 15000.00, 1, 0.00, 23000.00, 'No 20 Lalitha garden, madhavaram, chennai -600060', 'Chennai', '2402190025', '29', '1', 'upload_files/candidate_tracker/54748548487_VIGNESH RESUME Modified.pdf', NULL, '1', '2024-02-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He is into core for many years and fresh to this domain Pressure handling in sales calls seems to be doubt As a fresher he will sustain for a long in this roles', '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-19 01:31:32', 1, '2024-02-19 02:08:42', 0, NULL, 1),
(17087, 'Bharath AS', '6', '9100435606', '', 'bharathsaravanana@gmail.com', '2002-02-09', 22, '2', '2', 'Saravanan ak', 'Weaver', 20000.00, 1, 0.00, 18000.00, 'Narayanavanam, Andhra Pradesh pincode 517581', 'Radhae Illam, 1, 8th Main Rd,Velachery, Chennai', '2402190026', '29', '1', 'upload_files/candidate_tracker/4383277_bharath as bcom.pdf', NULL, '1', '2024-02-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-19 02:37:41', 110, '2024-02-20 01:23:56', 0, NULL, 1),
(17088, 'Naveenkumar N', '5', '7305109815', '8610136801', 'NK0031978@GMAIL.COM', '2002-04-02', 21, '2', '2', 'NAGARAJAN', 'Canteen supervisor', 200000.00, 1, 0.00, 250000.00, 'N0 : 264 13th block Voc nagar Ennore', 'No : 264 13th Block Voc Nagar Ennore', '2402190027', '29', '1', 'upload_files/candidate_tracker/63233143609_Naveen kumar N Resume.pdf', NULL, '1', '2024-02-20', 0, '', '1', '89', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-19 03:59:38', 1, '2024-02-19 04:09:51', 0, NULL, 1),
(17089, 'M K Sankar', '6', '9392799830', '', 'shankarmk69@gmail.com', '2001-12-17', 22, '2', '2', 'Kumar m', 'Shop keeper', 20000.00, 1, 0.00, 18000.00, 'Puttur, Andhra Pradesh', 'Radhae Illam, 1, 8th Main , Velachery, Chennai', '2402200001', '29', '1', 'upload_files/candidate_tracker/10478791080_mk shankar resume.pdf', NULL, '1', '2024-02-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-20 02:52:23', 110, '2024-02-20 01:22:22', 0, NULL, 1),
(17090, 's.suriya', '6', '9025741944', '', 'suriyasivavadivel7@gmail.com', '2002-01-09', 22, '2', '2', 'sivavadivel.k', 'farmer', 5000.00, 0, 0.00, 18000.00, 'thiruvarur', 'besant nagar', '2402200002', '32', '1', 'upload_files/candidate_tracker/62309698770_suriya-1.pdf', NULL, '1', '2024-02-20', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'Rejected', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-20 04:43:45', 1, '2024-02-20 04:51:28', 0, NULL, 1),
(17091, 'Jonathan ling D', '6', '9884117989', '6385920798', 'jonathandavidk2002@gmail.com', '2002-03-08', 21, '2', '2', 'David ling J', 'Musician', 30000.00, 1, 0.00, 15000.00, 'No 3/5 Zachariah Colony 2nd Street Choolaimedu', 'No 3/5 Zachariah Colony 2nd Street Choolaimedu', '2402200003', '1', '1', 'upload_files/candidate_tracker/11653175305_Resume.pdf', NULL, '1', '2024-02-20', 0, '', '3', '59', '2024-02-26', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Charles Team Should analyse in 7days training', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-20 05:02:58', 60, '2024-02-24 06:44:23', 0, NULL, 1),
(17092, 'jemin bazil b', '4', '6383457340', '', 'jeminbazil03@gmail.com', '2002-12-03', 21, '2', '2', 'c benjamin sahayaraj', 'headmaster', 100000.00, 0, 0.00, 15000.00, '19b /53b selva nagar pasupathipalayam karur 639004', '37/5,Sowrashtra NagarChoolaimedu, Chennai', '2402200004', '1', '1', 'upload_files/candidate_tracker/89243335450_RESUME.pdf', NULL, '1', '2024-02-20', 0, '', '3', '59', '2024-02-26', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Renewal Team', '1', '1', '4', '1', '8', '', '2', '2024-02-22', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-20 05:03:18', 60, '2024-02-24 06:42:44', 0, NULL, 1),
(17093, '', '0', '9176992945', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402200005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-20 05:33:25', 0, NULL, 0, NULL, 1),
(17094, 'R mohanapriya', '33', '7358626801', '7358626810', 'Priyaramamoorthi1996@gmail.com', '1996-04-10', 27, '3', '2', 'Ramamoorthi', 'Shop', 15000.00, 1, 16900.00, 22000.00, '147 shanmugapillai st mylapore', '147 shanmugapillai st mylapore', '2402200006', '', '2', 'upload_files/candidate_tracker/18200538612_Mohanapriya current.pdf', NULL, '1', '2024-02-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles will nt sustain ', '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-20 05:44:05', 1, '2024-02-20 06:19:57', 0, NULL, 1),
(17095, '', '0', '8939115312', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402200007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-20 06:23:14', 0, NULL, 0, NULL, 1),
(17096, 'Dinesh', '32', '8072911207', '9444218412', 'Dinesh.dshankar@gmail.com', '1997-08-20', 26, '1', '1', 'Dhanalaksmi', 'Loan operation', 17500.00, 1, 26000.00, 28000.00, '106/3 vm Street royapettah', '106/3 vm Street royapettah', '2402200008', '', '2', 'upload_files/candidate_tracker/41897592118_Resume.pdf', NULL, '1', '2024-02-20', 15, '55722', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'he will not fit for our lead generation and sales fprofile', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-20 06:25:05', 1, '2024-02-20 06:38:55', 0, NULL, 1),
(17097, 'suresh', '20', '8939190583', '9884024116', 'sureshpeter778@gmail.com', '1999-01-25', 25, '2', '2', 'sivakumar', 'cooli', 12000.00, 4, 15000.00, 20000.00, 'tondiarpet', 'Tondiarpet', '2402200009', '1', '2', 'upload_files/candidate_tracker/59632811220_Resume_21_01_2024_10_37_40_PM.pdf', NULL, '1', '2024-02-20', 2, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-20 06:35:36', 110, '2024-02-20 05:19:29', 0, NULL, 1),
(17098, 'Balaji', '11', '7358707423', '', '20balajis@gmail.com', '2001-12-15', 22, '3', '2', 'Selvamani', 'Pvt', 1.80, 1, 12.00, 15.00, 'Chennai', 'Chennai', '2402200010', '', '2', 'upload_files/candidate_tracker/60548577361_Balaji.pdf', NULL, '1', '2024-02-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles will not handle our pressure ', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-20 06:44:00', 1, '2024-02-20 07:10:57', 0, NULL, 1),
(17099, 'Bharath. t', '5', '7395909668', '', 'bharatht330@gmail.com', '2000-12-27', 23, '2', '2', 'A. Thulasidasan', 'Ricemill Accountant', 120000.00, 1, 11000.00, 18000.00, 'Chennai', 'Chennai', '2402200011', '29', '2', 'upload_files/candidate_tracker/60610896720_bharath.pdf', NULL, '1', '2024-02-20', 0, '', '9', '59', NULL, 0.00, '', '0', NULL, '2', 'He is not fit for sales , he is already worked on back end process or renewal collection department ', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-20 06:45:35', 1, '2024-02-20 06:56:45', 0, NULL, 1),
(17100, 'Jayavel', '20', '7200415031', '9344138142', 'jayavel2998@gmail.com', '1998-01-29', 26, '2', '2', 'Chitra', 'Fraud and collection analyst', 300000.00, 2, 24000.00, 30000.00, 'B1 1st floor Apex abode appartment, saligramam', 'Chennai', '2402200012', '1', '2', 'upload_files/candidate_tracker/92162793361_JAYAVEL M.pdf', NULL, '1', '2024-02-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-20 06:49:45', 110, '2024-02-20 05:33:05', 0, NULL, 1),
(17101, 'K.Ishrath Begum', '4', '9884701005', '8072531964', 'Ishuishrath112@gmail.com', '2001-07-23', 22, '2', '2', 'Syed khadar basha', '.', 30000.00, 2, 0.00, 20000.00, 'Redhills', 'Redhills', '2402200013', '32', '1', 'upload_files/candidate_tracker/57762604214_Ishrath_begum_resume.3.pdf', NULL, '1', '2024-02-20', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-20 07:41:10', 1, '2024-02-20 07:52:47', 0, NULL, 1),
(17102, 'aadil', '6', '8248770641', '8531838946', 'aadilmohammed850@gmail.com', '2001-05-31', 22, '2', '2', 'anish majeed', 'businessman', 50000.00, 1, 25000.00, 30000.00, 'adurai', 'mahindra city', '2402200014', '1', '2', 'upload_files/candidate_tracker/74369749449_aadil resume.pdf', NULL, '1', '2024-02-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Sustainability will not handle the work pressure not much comfort in calling too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-20 07:53:23', 110, '2024-02-20 05:17:20', 0, NULL, 1),
(17103, 'Harshini', '4', '9944589432', '8072274661', 'Harshinijayakumar302000@gmail.com', '2000-07-30', 23, '2', '1', 'Sandeep', 'Accountant', 30000.00, 1, 15000.00, 20000.00, '153/42 Swamy Naiaken Street Chintadripet Chennai', '153/42 Swamy naiaken street chintadripet chennai', '2402200015', '29', '2', 'upload_files/candidate_tracker/119010634_Harshini cv new .pdf', NULL, '1', '2024-02-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-20 08:19:04', 1, '2024-02-20 08:29:06', 0, NULL, 1),
(17104, 'Kalaiselvan S', '4', '8838353727', '', 'Kalairhodes64@gmail.com', '2001-04-17', 22, '2', '2', 'r sankar', 'cmwssb senior depot manager', 60000.00, 2, 17200.00, 25000.00, 'Chennai', 'Chennai', '2402200016', '29', '2', 'upload_files/candidate_tracker/82562296327_Kalai new updated.pdf', NULL, '1', '2024-02-22', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-20 09:10:43', 110, '2024-02-22 06:06:52', 0, NULL, 1),
(17105, 'Sreevidhya', '6', '9790296391', '', 'srividhyalingam@gmail.com', '1995-08-07', 28, '2', '1', 'Anand Raj A', 'Private sector', 20000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2402200017', '29', '1', 'upload_files/candidate_tracker/70800013478_Sreevidhya Resume.docx', NULL, '1', '2024-02-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Location Constraint Fresher for our roles Daily travel is doubt and have a kid aged 1.5yrs long run doubts in this profile not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-20 09:11:07', 112, '2024-02-21 11:05:26', 0, NULL, 1),
(17106, 'Sijo', '6', '9345840177', '9840557721', 'Sijoantony45@gmail.com', '1998-06-20', 25, '2', '2', 'P anthony', 'Chennai port trust', 400000.00, 1, 0.00, 20000.00, 'Tondiarpet chennai', 'Tondiarpet chennai', '2402200018', '1', '1', 'upload_files/candidate_tracker/54369992171_downloadfile.PDF', NULL, '1', '2024-02-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fir for salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-20 09:18:26', 110, '2024-02-20 05:11:53', 0, NULL, 1),
(17107, 'Biojeni s', '6', '9994249620', '7449282423', 'Biojeni2020@gmail.com', '2002-10-11', 21, '2', '2', 'Sandhanasamy', 'Daily wages', 72000.00, 3, 18000.00, 23000.00, 'Trichy', 'Chennai', '2402200019', '1', '2', 'upload_files/candidate_tracker/69332612953_BIOJENI.S.pdf', NULL, '1', '2024-02-21', 30, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-02-20 09:28:51', 110, '2024-02-21 10:32:21', 0, NULL, 1),
(17108, '', '0', '9121700940', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402200020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-20 09:35:05', 0, NULL, 0, NULL, 1),
(17109, '', '0', '9080203036', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402200021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-20 09:54:36', 0, NULL, 0, NULL, 1),
(17110, 'Abirami sridevi .R', '20', '9360976114', '9942725356', 'abiramisridevi83@gmail.com', '2002-06-17', 21, '2', '2', 'Ranganathan.N', 'Business (garments)', 50000.00, 0, 0.00, 16000.00, 'Vellore', 'Sathuvachari', '2402200022', '29', '1', 'upload_files/candidate_tracker/72822451818_CV_2024-01-27-123156.pdf', NULL, '1', '2024-02-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-20 09:55:13', 1, '2024-02-20 10:40:12', 0, NULL, 1),
(17111, 'Monika S', '13', '6300178849', '8500049274', 'moniyashu67@gmail.con', '2004-02-06', 20, '2', '2', 'Suresh G', 'Driver', 30000.00, 2, 0.00, 22000.00, 'Chittoor', 'Chittoor', '2402200023', '1', '1', 'upload_files/candidate_tracker/36359100603_11febcv.pdf', NULL, '1', '2024-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', NULL, NULL, NULL, 1, '2024-02-20 10:03:25', 1, '2024-02-20 10:09:18', 0, NULL, 1),
(17112, 'Gayathri s', '6', '7603861110', '8870899104', 'Gayu32909@gmail.com', '2002-09-29', 21, '2', '2', 'Srinivasan', 'Driver', 30000.00, 2, 15000.00, 23000.00, 'No:16 thomaippan Street royapettah ch-14', 'No :;51 nallanna Street royapettah ch -14', '2402200024', '29', '2', 'upload_files/candidate_tracker/36572084378_Gayu.pdf', NULL, '1', '2024-02-21', 0, '', '5', '105', NULL, 0.00, '', '0', NULL, '2', 'Communication is Not good', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-20 10:28:31', 1, '2024-02-21 04:33:30', 0, NULL, 1),
(17113, '', '0', '9092417636', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402200025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-20 11:07:18', 0, NULL, 0, NULL, 1),
(17114, 'Remya Tharmaraj', '4', '8056085718', '', 'remyarejeesh26@gmail.com', '1996-05-26', 27, '2', '2', 'Tharmaraj', 'Contractor', 20000.00, 2, 22000.00, 25000.00, 'Marthandam', 'Chennai', '2402200026', '1', '2', 'upload_files/candidate_tracker/84552592638_RESUME-1-1-1.pdf', NULL, '1', '2024-02-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles frequent job changes and getting married in next few months too long distance will not sustain', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-20 01:01:12', 110, '2024-02-21 04:25:08', 0, NULL, 1),
(17115, 'Akshaya', '6', '9600483603', '9566292213', 'akshayav842@gmail.com', '1995-05-01', 28, '2', '1', 'Arun', 'Purchase Enginer', 44500.00, 0, 0.00, 20000.00, 'Puzhal', 'Puzhal', '2402200027', '1', '2', 'upload_files/candidate_tracker/41152588554_Akshaya.Resume.docx', NULL, '1', '2024-02-21', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-20 01:23:30', 110, '2024-02-21 04:26:04', 0, NULL, 1),
(17116, '', '0', '6304268622', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402200028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-20 01:24:27', 0, NULL, 0, NULL, 1),
(17117, '', '0', '9943928398', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402200029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-20 01:47:36', 0, NULL, 0, NULL, 1),
(17118, '', '0', '9444218412', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402200030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-20 01:55:34', 0, NULL, 0, NULL, 1),
(17119, '', '0', '9942725356', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402200031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-20 04:56:57', 0, NULL, 0, NULL, 1),
(17120, 'U karthick', '6', '7010242277', '9597505258', 'shankarthick907@gmail.com', '1999-07-02', 24, '2', '2', 'Dad', 'Electricity board Inspector', 25000.00, 0, 11750.00, 20000.00, '58,thadikonda iyyanar kovil Street pdkt-622001', '11/9 anandhi Hostel,Anna nagar west ext,CHN-600101', '2402210001', '29', '2', 'upload_files/candidate_tracker/62721115354_KARTHICK RESUME 12.docx', NULL, '1', '2024-02-21', 0, '', '3', '59', '2024-02-26', 192000.00, '', '5', '1970-01-01', '1', 'Selected for DM Team in Relationship Executive Role Need to have a analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-21 03:25:14', 60, '2024-02-24 07:13:36', 0, NULL, 1),
(17121, 'Sodadhasi kishore babu', '6', '7358531145', '', 'kishorebabu0499@gmail.com', '1996-07-13', 27, '2', '2', 'Sodadhasi Srinivasa rao', 'Saw mill cutter', 15000.00, 1, 22000.00, 26000.00, 'Andhra Pradesh', 'Chennai', '2402210002', '29', '2', 'upload_files/candidate_tracker/89500656133_SodadhasiKishoreBabuResume (1).pdf', NULL, '1', '2024-02-21', 10, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-21 03:28:38', 110, '2024-02-21 12:52:31', 0, NULL, 1),
(17122, 'Vignesh R', '6', '9677730208', '', 'vigneshravi2535@gmail.com', '2000-10-17', 23, '2', '2', 'Ravi T', 'Driver', 18000.00, 1, 0.00, 18000.00, '30/1, sinthamani Street, Musiri, Trichy-621211.', '11/9, Santhom colony, AnnaNagar West Ext,600101.', '2402210003', '29', '1', 'upload_files/candidate_tracker/990050025_vignesh new resume 01.10.2023.pdf', NULL, '1', '2024-02-21', 0, '', '3', '59', '2024-02-26', 192000.00, '', '3', '2025-11-29', '1', 'Can be trained in our roles selected for Relationship Executive DM Team will try in this role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-21 03:46:19', 60, '2024-02-24 07:14:24', 0, NULL, 1),
(17123, 'Somanathan G', '6', '7826031787', '8300429947', 'Somanathan.guru14@gmail.com', '2001-03-14', 22, '2', '2', 'Gurumurthy V', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Krishnagiri', 'Krishnagiri', '2402210004', '1', '1', 'upload_files/candidate_tracker/99956360630_Somanathan_G.pdf', NULL, '1', '2024-02-21', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is interested for IT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-21 04:02:51', 108, '2024-02-21 04:20:13', 0, NULL, 1),
(17124, '', '0', '8870899104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402210005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-21 04:15:03', 0, NULL, 0, NULL, 1),
(17125, 'dhanush', '20', '7550117913', '', 'mr_dhanushraj2405@gmail.com', '2003-12-24', 20, '2', '1', 'Loganathan', 'Daily wages', 30000.00, 1, 160.00, 18.00, 'ambattur', 'ambattur', '2402210006', '29', '2', 'upload_files/candidate_tracker/21792324661_Updated resume 3.pdf', NULL, '3', '2024-02-28', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-21 05:04:48', 1, '2024-02-21 05:09:50', 0, NULL, 1),
(17126, 'Keerthika', '4', '8220826338', '', 'keerthka001@gmail.com', '2000-08-01', 23, '2', '2', 'Panneer selvam', 'Business', 200000.00, 1, 0.00, 18000.00, 'Vellore', 'Chennai', '2402210007', '29', '1', 'upload_files/candidate_tracker/92852351348_DOC-20240215-WA0001..pdf', NULL, '2', '2024-02-22', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-21 05:05:34', 110, '2024-02-22 06:08:25', 0, NULL, 1),
(17127, 'Nithishkumar P', '31', '6381212028', '8056437077', 'Nithishpurusoth123@gmail.com', '2003-03-23', 20, '3', '2', 'Purusothaman R', 'Farmer', 30000.00, 1, 0.00, 20000.00, 'Peranamallur', 'Perungalathur', '2402210008', '', '1', 'upload_files/candidate_tracker/17957474278_Grey & White Clean Cv Resume.pdf', NULL, '1', '2024-02-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-21 05:06:34', 1, '2024-02-21 05:25:27', 0, NULL, 1),
(17128, 'Vinoth', '31', '9787606301', '', 'vinothmathan53@gmail.com', '2009-02-21', 15, '3', '2', 'Mayhan', 'Web developer', 12000.00, 1, 0.00, 1.80, 'Thiruvanamalai', 'Alwarthiragar', '2402210009', '', '1', 'upload_files/candidate_tracker/54208313191_vinoth-resume.pdf', NULL, '1', '2024-02-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-21 05:25:56', 1, '2024-02-21 05:31:36', 0, NULL, 1),
(17129, 'Balamurali', '31', '6374670130', '', 'muralilakshmanan26@gmail.com', '2000-03-27', 23, '3', '1', 'Lakshmanan', 'Farmer', 10000.00, 1, 0.00, 15000.00, '26 aanaimangalam chengam thiruvannamalai', 'Vasalaravakkam chennai', '2402210010', '', '1', 'upload_files/candidate_tracker/12826691574_Resumebala.pdf', NULL, '1', '2024-02-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-21 05:28:49', 1, '2024-02-21 06:10:50', 0, NULL, 1),
(17130, 'Harish', '5', '8489828039', '8072156416', 'harisht8489@gmail.com', '2009-02-21', 0, '2', '2', 'Thiyagarajan', 'Sales executive', 30000.00, 1, 15500.00, 20000.00, 'Ranipet', 'Maduravoyal', '2402210011', '1', '2', 'upload_files/candidate_tracker/81299963750_Resume -(HARISH) (1).pdf', NULL, '1', '2024-02-21', 1, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-21 05:33:53', 108, '2024-02-21 04:18:39', 0, NULL, 1),
(17131, 'Naresh U', '31', '7538838453', '', 'nareshu2206@gmail.com', '2002-06-22', 21, '3', '2', 'Umapathy', 'TNEB', 18000.00, 1, 0.00, 1.80, 'Ranipet', 'Ranipet', '2402210012', '', '1', 'upload_files/candidate_tracker/79874854005_MY resume 1.pdf', NULL, '1', '2024-02-21', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-21 05:48:33', 1, '2024-02-21 05:53:00', 0, NULL, 1),
(17132, 'M. Dinesh', '13', '9360324286', '8122138796', 'dineshmdeveloperd@gmail.com', '2002-10-26', 21, '2', '2', 'T. Manokaran', 'Daily wages', 15000.00, 1, 0.00, 15000.00, 'Ambattur ,Chennai', 'Ambattur,Chennai', '2402210013', '1', '1', 'upload_files/candidate_tracker/76351274170_Resume (2).pdf', NULL, '1', '2024-02-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude round', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-21 05:55:38', 110, '2024-02-21 04:28:50', 0, NULL, 1),
(17133, 'Jeevanandhan.R', '13', '6379865227', '9176637517', 'rjeevarjeevananthan@gmail.com', '2002-05-03', 21, '2', '2', 'Ravi.C', 'Wacthman', 14000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2402210014', '1', '1', 'upload_files/candidate_tracker/7979478488_jeeva resume.pdf', NULL, '1', '2024-02-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected in aptitude', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-21 05:56:29', 110, '2024-02-21 04:27:33', 0, NULL, 1),
(17134, 'Vishali Devendran', '20', '6385300853', '9786352612', 'www.vishuds96@gmail.com', '1996-04-13', 27, '2', '2', 'Devendran', 'Fisherman', 30000.00, 4, 18000.00, 20000.00, 'Chennai', 'Chennai', '2402210015', '1', '2', 'upload_files/candidate_tracker/53965302955_resume 1dv.pdf', NULL, '1', '2024-02-21', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-21 06:03:49', 110, '2024-02-21 04:33:51', 0, NULL, 1),
(17135, 'Monika S', '4', '8500049274', '6300178849', 'moniyashu67@gmail.com', '2004-02-06', 20, '3', '2', 'Suresh G', 'Driver', 30000.00, 2, 0.00, 22000.00, 'Chittoor', 'Chittoor', '2402210016', '', '1', 'upload_files/candidate_tracker/97474964028_21febcv.pdf', NULL, '1', '2024-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-21 06:24:06', 1, '2024-02-21 06:27:11', 0, NULL, 1),
(17136, 'Anis raja', '5', '8248978257', '', 'anishraja.s@hotmail.com', '1998-02-03', 26, '2', '2', 'Sahayaraj', 'Farmar', 30000.00, 1, 300000.00, 320000.00, 'Shenbaganur, Kodaikanal, Dindigul (dt)', '52street,anna nagar West, Chennai', '2402210017', '1', '2', 'upload_files/candidate_tracker/47780339955_CV - Anees-5.pdf', NULL, '1', '2024-02-21', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles looking only for salary for time being not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-21 06:34:27', 108, '2024-02-21 04:16:54', 0, NULL, 1),
(17137, 'Afrin Fathima', '4', '7824881177', '9500566928', 'afrinfathima213@gmail.com', '1999-07-01', 24, '2', '2', 'Sultana A', 'General manager', 30000.00, 0, 18277.00, 26000.00, 'Chennai', 'Chennai', '2402210018', '1', '2', 'upload_files/candidate_tracker/77808507901_CV OF AFRIN FATHIMA new 01-02-2024.doc', NULL, '1', '2024-02-21', 30, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Holding an offer for 26K TH in Aditya Seems to doubt in our roles if she comes back let us try', '1', '1', '', '1', '8', '', '2', '2024-02-27', '3', '1', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-02-21 07:15:33', 110, '2024-02-21 12:58:32', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17138, 'Sathasivam A', '5', '7339344513', '9344874130', 'sathasivamazarsamy@gmail.com', '2000-05-19', 23, '2', '2', 'Azhagarsamy', 'Self', 10000.00, 2, 2.10, 3.00, 'Pudhukottai', 'Ashokpillar', '2402210019', '1', '2', 'upload_files/candidate_tracker/94121160643_68343271724951.pdf', NULL, '1', '2024-02-21', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Perfomance is not good also expetation is to high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-21 07:33:16', 108, '2024-02-21 04:15:53', 0, NULL, 1),
(17139, 'Benjamin M', '6', '6369928611', '8838426329', 'simonbenjamin1901@gmail.com', '2003-01-19', 21, '2', '2', 'Moses V', 'Driver', 20000.00, 1, 19500.00, 24000.00, 'Saidapet', 'Saidapet', '2402210020', '1', '2', 'upload_files/candidate_tracker/89647508011_BENJAMIN M.docx', NULL, '1', '2024-02-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Performance is Not too Good ,as well as expectation is high Also sustainity issue,But Will Check in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-02-21 07:48:40', 110, '2024-02-22 02:34:12', 0, NULL, 1),
(17140, 'Manvizhi.K', '9', '7448937601', '7708300225', 'mansanchu@gmail.com', '1996-06-10', 27, '2', '2', 'Kasiyappan', 'Farmer', 40000.00, 2, 20000.00, 23000.00, 'Villupuram', 'Mogappair West', '2402210021', '1', '2', 'upload_files/candidate_tracker/50536608313_Manvizhi.pdf', NULL, '3', '2024-02-21', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Attended', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-21 07:55:10', 110, '2024-02-21 04:18:30', 0, NULL, 1),
(17141, '', '0', '7092520136', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402210022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-21 10:21:39', 0, NULL, 0, NULL, 1),
(17142, '', '0', '8925735358', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402210023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-21 12:02:18', 0, NULL, 0, NULL, 1),
(17143, 'Venkatesan k', '6', '9384242844', '', 'venkatvb29@gmail.com', '2001-12-29', 22, '2', '2', 'Kasi D', 'Sales', 180000.00, 1, 0.00, 20000.00, 'Walajapet', 'Walajapet', '2402210024', '29', '1', 'upload_files/candidate_tracker/22309940332_Resume.pdf', NULL, '1', '2024-02-22', 0, '', '1', '89', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-21 12:03:03', 1, '2024-02-21 12:10:49', 0, NULL, 1),
(17144, '', '0', '7904285572', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402210025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-21 12:23:02', 0, NULL, 0, NULL, 1),
(17145, 'Ramya', '6', '8939449792', '', 'ramyasekar385@gmail.com', '1998-12-26', 25, '2', '2', 'Pushpa', 'House keeping', 10000.00, 1, 20500.00, 28.00, 'Chennai', 'Chennai', '2402210026', '1', '2', 'upload_files/candidate_tracker/54242132537_S RAMYA UPDATED RESUME 2024.docx', NULL, '1', '2024-02-22', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Salary Exp is high Sustainability doubts in a long run need to hold and check', '5', '1', '', '1', '8', '', '2', '2024-02-27', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-21 12:43:44', 104, '2024-02-22 12:48:04', 0, NULL, 1),
(17146, 'Vinoth s', '6', '9080594973', '9600269172', 'vinothmanoj71@gmail.com', '2001-06-02', 22, '2', '2', 'Selvaraj b', 'Sales man', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2402210027', '1', '1', 'upload_files/candidate_tracker/72749297216_VINOTH.SR.pdf', NULL, '1', '2024-02-22', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-02-21 01:11:24', 110, '2024-02-22 10:34:59', 0, NULL, 1),
(17147, 'ajith kumar', '4', '9962655854', '8056543890', 'ajithkumar90285@gmail.com', '2001-11-27', 22, '2', '2', 'ramesh n', 'river', 30000.00, 1, 0.00, 20000.00, 'S2, rajam flats durga nagar nanmangalam chennai', 'rajam flats durga nagar nanmangalam chennai', '2402210028', '29', '1', 'upload_files/candidate_tracker/98844075144_CV_2023092510301953.pdf', NULL, '1', '2024-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-21 05:41:19', 1, '2024-02-21 05:49:35', 0, NULL, 1),
(17148, '', '0', '8925745358', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402220001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-22 03:57:11', 0, NULL, 0, NULL, 1),
(17149, 'Harish.P', '14', '9361045110', '9894872058', 'harishpanneerselvamoff@gmail.com', '2002-07-10', 21, '6', '2', 'R.Panneerselvam', 'Farmer', 40000.00, 1, 0.00, 250000.00, 'Vellore', 'Chennai', '2402220002', '', '1', 'upload_files/candidate_tracker/26576890470_I’m Harish P.pdf', NULL, '1', '2024-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-22 04:29:24', 1, '2024-02-22 04:32:10', 0, NULL, 1),
(17150, 'bhuvaneshwari', '4', '8428410847', '', 'bhuvismily12@gmail.com', '2001-10-16', 22, '2', '2', 'babu', 'Daily wages', 9000.00, 1, 0.00, 15000.00, 'chennai', 'thiruvattyur', '2402220003', '1', '1', 'upload_files/candidate_tracker/48608495644_Resume BHUVANESHWARI.pdf', NULL, '1', '2024-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not handle the work pressure need to open up a lot', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-22 04:43:41', 112, '2024-02-22 06:05:58', 0, NULL, 1),
(17151, 'Dhinesh Kumar B', '14', '8122258990', '9094487003', 'dhineshkarthi82@gmail.com', '1998-09-07', 25, '6', '2', 'K Babu', 'Labour', 25000.00, 1, 350000.00, 450000.00, 'Chennai', 'Chennai', '2402220004', '', '2', 'upload_files/candidate_tracker/97747241791_DhineshKumar-1.pdf', NULL, '1', '2024-02-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-22 05:04:14', 110, '2024-02-22 06:00:52', 0, NULL, 1),
(17152, 'Ramjivengatesh N', '4', '9500303145', '', 'ramjivenkatesh@gmail.com', '1992-02-20', 32, '2', '2', 'Natarajan R', 'Farmer', 2000.00, 3, 16000.00, 18000.00, 'Chennai', 'Chennai', '2402220005', '32', '2', 'upload_files/candidate_tracker/26699155739_RamJi VEN resume.pdf', NULL, '1', '2024-02-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Desktop Support Engineer Role only not suitable for our roles', '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-22 05:10:11', 1, '2024-02-22 05:14:14', 0, NULL, 1),
(17153, 'K.dhanveer ahamed', '6', '9360165761', '9942231336', 'dhanveerahamed34@gmail.com', '2002-01-03', 22, '6', '2', 'Kamarudeen.y', 'Business man', 25000.00, 1, 0.00, 15000.00, 'No.5/A kandhasamy layout 1st Street Villupuram', 'Porur,chennai', '2402220006', '', '1', 'upload_files/candidate_tracker/44931013022_dhanveer pdf 2023.pdf', NULL, '1', '2024-02-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-22 05:18:47', 110, '2024-02-22 06:07:28', 0, NULL, 1),
(17154, 'GNANA ABISHEIK K', '6', '9159450298', '', 'kgnanaabisheik2000@gmail.com', '2000-02-03', 24, '2', '1', 'ABARNA', 'Nurse', 30000.00, 1, 20000.00, 25000.00, 'TIRUNELVELI', 'TIRUNELVELI', '2402220007', '32', '2', 'upload_files/candidate_tracker/86087129189_GNANA ABISHEIK RESUME (1).pdf', NULL, '1', '2024-02-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Technical Support Role only', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-22 05:18:48', 1, '2024-02-22 05:24:08', 0, NULL, 1),
(17155, 'Hena Parveen', '6', '8056096252', '8838126876', 'heenaparveen12716@gmail.com', '2002-10-17', 21, '2', '2', 'Noor banu', 'House wife', 80000.00, 1, 15000.00, 20000.00, 'Chennai,parrys', 'No 3 Appasamy lane seven wells chennai 600001', '2402220008', '1', '2', 'upload_files/candidate_tracker/45527768245_hena parveen.pdf', NULL, '1', '2024-02-22', 10, '', '3', '59', '2024-02-29', 200000.00, '', '', '1970-01-01', '1', 'Selected for Operations Role Need to confirm from candidate side ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-22 05:20:37', 104, '2024-02-22 11:07:36', 0, NULL, 1),
(17156, '', '0', '8838126876', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402220009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-22 05:30:36', 0, NULL, 0, NULL, 1),
(17157, 'Bhavadharani', '6', '8939661468', '8610544475', 'bhavadharaniv7@gmail.com', '2002-12-04', 21, '2', '2', 'Veeraraghavan (Father)', 'Tiles contractor', 25000.00, 1, 15000.00, 20000.00, 'Thiruverkadu', 'Thiruverkadu', '2402220010', '1', '2', 'upload_files/candidate_tracker/89046421887_resume.docx', NULL, '1', '2024-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, 'H1020', '0', NULL, NULL, NULL, 1, '2024-02-22 05:33:05', 1, '2024-02-22 05:38:14', 0, NULL, 1),
(17158, 'GOUTHAM', '23', '8072423470', '8939181980', 'vgoutham28@gmail.com', '2002-03-28', 21, '3', '2', 'Venkatesan', 'B com computer applications', 300000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2402220011', '', '1', 'upload_files/candidate_tracker/72786964888_Blue Light Blue Color Blocks Flight Attendant CV (1).pdf (1).pdf', NULL, '1', '2024-02-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-22 05:47:45', 1, '2024-02-22 05:50:23', 0, NULL, 1),
(17159, 'Balaji D', '4', '8489880109', '', 'balajidks001@gmail.com', '2001-06-11', 22, '3', '2', 'Durariraj P', 'Tailor', 6000.00, 2, 0.00, 17000.00, 'Trichy', 'Chennai', '2402220012', '', '1', 'upload_files/candidate_tracker/87878819817_BALAJI-1.pdf', NULL, '1', '2024-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Testing profile only', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-22 05:59:29', 110, '2024-02-22 05:46:07', 0, NULL, 1),
(17160, '', '0', '9087052469', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402220013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-22 06:00:51', 0, NULL, 0, NULL, 1),
(17161, 'Augustin Jabakumar K', '6', '9092405441', '9940581136', 'augustin9094@gmail.com', '1997-02-04', 27, '2', '2', 'Beulah', 'Tech support', 15000.00, 0, 15000.00, 17000.00, 'Vyasarpadi', 'Vyasarpadi', '2402220014', '1', '2', 'upload_files/candidate_tracker/85287227965_augustin bio.pdf', NULL, '1', '2024-02-22', 0, '', '3', '59', '2024-02-23', 204000.00, '', '5', '1970-01-01', '2', 'Selected for Operation Renewals Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-22 06:22:38', 110, '2024-02-23 02:50:40', 0, NULL, 1),
(17162, 'Rd Kalyanakumar', '5', '8056327012', '9751313092', 'rdkalyanakumar@gmail.com', '1993-03-10', 30, '2', '2', 'Rethinasamy', 'Banking', 300000.00, 2, 4.50, 6.50, 'Chennai', 'Chennai', '2402220015', '1', '2', 'upload_files/candidate_tracker/79833520245_RdKalyana_Kumar_Resume_8 (2) (1) (1).pdf', NULL, '1', '2024-02-22', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Expecting high salary and also tring to get govt jobs eagerly ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-22 06:55:05', 104, '2024-02-22 12:49:27', 0, NULL, 1),
(17163, 'Keerthivasan', '14', '8870964129', '', 'keerthivasansivaraman19@gmail.com', '2002-02-19', 22, '6', '2', 'Sivaraman', 'Farmer', 15000.00, 0, 0.00, 4.00, 'Ranipet', 'Ranipet', '2402220016', '', '1', 'upload_files/candidate_tracker/82331100901_keerthivasan Resume-1.pdf', NULL, '1', '2024-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-22 07:33:13', 1, '2024-02-22 07:39:31', 0, NULL, 1),
(17164, 'Ranjith M', '6', '9003112145', '', 'ranjithmanikandan5@gmail.com', '2003-03-20', 20, '3', '2', 'V.S.ravi', 'Real estate', 15000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2402220017', '', '1', 'upload_files/candidate_tracker/88063156216_Ranjith CV.pdf', NULL, '1', '2024-02-22', 0, '', '3', '59', '2024-02-26', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Kanna n Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-22 07:56:26', 60, '2024-02-26 11:50:38', 0, NULL, 1),
(17165, 'Syed', '6', '9952026792', '', 'syedjunaith707@gamil.com', '2001-04-22', 22, '3', '2', 'Syed jaffar', 'Former', 30.00, 4, 18.00, 20.00, 'Pencil lene pattalam', 'PencilLenePattalam', '2402220018', '', '2', 'upload_files/candidate_tracker/13509887279_imgtopdf_generated_2202241343007.pdf', NULL, '1', '2024-02-22', 1, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate performance is very poor and he is not fit for our job ,also expected 18k but he is not worth for that', '5', '1', '', '1', '8', '', '1', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-22 08:04:07', 110, '2024-02-22 03:15:05', 0, NULL, 1),
(17166, 'I.Dhanish Ahamed', '6', '9344948480', '', 'dahamed80@gmail.com', '2003-05-23', 20, '3', '2', 'Inayathula.S', 'Auto driver', 10000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2402220019', '', '1', 'upload_files/candidate_tracker/68356239911_Dhanish Ahamed.pdf', NULL, '1', '2024-02-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-22 08:07:03', 110, '2024-02-22 06:10:20', 0, NULL, 1),
(17167, 'Anitha', '6', '8072580092', '', 'anithamurugan187@gmail.com', '2000-06-18', 23, '2', '2', 'Parent', 'Business', 20000.00, 2, 17500.00, 25000.00, 'Chennai', 'Chennai', '2402220020', '32', '2', 'upload_files/candidate_tracker/15303973767_RESUME - ANITHA.pdf', NULL, '1', '2024-02-22', 0, '', '3', '59', '2024-02-23', 198000.00, '', '4', '2024-10-03', '2', 'Selected for Relation Executive Role in Renewal Callling', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '7', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-22 10:51:41', 110, '2024-02-23 10:07:07', 0, NULL, 1),
(17168, 'Aarthi', '6', '6374487792', '9500776883', 'aarthisathya50@gmail.com', '1997-02-19', 27, '2', '1', 'Senthilnathan', 'Assistant manager', 40000.00, 1, 17000.00, 20000.00, 'No.3/387A Ramnagar 6th street mannivakkam Chennai', 'No.3/387A Ramnagar 6th street Mannivakkam Chennai', '2402220021', '1', '2', 'upload_files/candidate_tracker/62446466848_AARTHI.pdf', NULL, '1', '2024-02-23', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-22 01:01:28', 110, '2024-02-23 12:47:37', 0, NULL, 1),
(17169, 'Thirunavukarasu', '4', '9940572734', '', 'Arasusenthil94@gmail.com', '1994-10-15', 29, '4', '2', 'Sakthimurugan', 'Retair', 18000.00, 2, 18000.00, 25000.00, 'Chrompet', 'Chrompet', '2402220022', '', '2', 'upload_files/candidate_tracker/66439957367_THIRU RESUME (2).pdf', NULL, '1', '2024-03-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-22 01:19:27', 1, '2024-02-22 01:26:40', 0, NULL, 1),
(17170, '', '0', '9043410942', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402220023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-22 03:13:02', 0, NULL, 0, NULL, 1),
(17171, '', '0', '9962890721', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402220024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-22 03:22:03', 0, NULL, 0, NULL, 1),
(17172, 'MadhuVanthi V', '23', '9791198278', '9941278278', 'Vanthimadhu467@gmail.com', '1999-09-08', 24, '3', '2', 'Venkatesan', 'Senior quality auditor (retierd)', 30000.00, 0, 0.00, 40000.00, 'CHENNAI', 'CHENNAI', '2402220025', '', '1', 'upload_files/candidate_tracker/77832705339_CV_2023100415352282.pdf', NULL, '1', '2024-02-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-22 03:31:17', 110, '2024-02-23 06:25:18', 0, NULL, 1),
(17173, '', '0', '8925144166', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402220026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-22 04:36:18', 0, NULL, 0, NULL, 1),
(17174, 'Magesh Sankar', '6', '7708115664', '8668055702', 'magim2184@gmail.com', '2000-07-25', 23, '2', '2', 'Sankar', 'Farmer', 50000.00, 1, 65000.00, 18000.00, 'Chennai', 'Chennai', '2402230001', '32', '2', 'upload_files/candidate_tracker/6309580531_Document 24.pdf', NULL, '1', '2024-02-23', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-23 04:18:28', 110, '2024-02-23 11:08:30', 0, NULL, 1),
(17175, 'HARIHARAN L', '6', '9600351929', '', 'hariharan1723@gmail.com', '1997-11-20', 26, '2', '1', 'LAKSHMIPATHI D', 'Daily wages', 10000.00, 1, 23000.00, 25000.00, 'Cuddalore', 'Ekktatuthangal', '2402230002', '32', '2', 'upload_files/candidate_tracker/34704347913_HARIHARAN.pdf', NULL, '1', '2024-02-23', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-23 04:18:37', 110, '2024-02-23 10:58:16', 0, NULL, 1),
(17176, 'Sulfihar Rihana Begum', '4', '9566196949', '9176860128', 'rianasulfia@gmail.com', '1996-08-05', 27, '2', '1', 'Aslam Basha', 'Butcher', 15000.00, 2, 15000.00, 19000.00, 'Chennai', 'Chennai', '2402230003', '32', '2', 'upload_files/candidate_tracker/22575312612_resume^.pdf', NULL, '1', '2024-02-23', 2, '', '3', '59', '2024-02-26', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Renewal Relationship Executive Role  but candidate seems doubtful for the long Run Family Situations Just a try profile', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-23 04:23:50', 110, '2024-02-26 09:52:49', 0, NULL, 1),
(17177, 'Ajith S', '14', '6369460542', '8300173531', 'ajithaji17766@gmail.com', '1999-05-06', 24, '6', '2', 'Shanmugan', 'Factory employee', 30000.00, 2, 180000.00, 250000.00, 'Wayanad, Ambalavayal', 'Wayanad, Ambalavayal', '2402230004', '', '2', 'upload_files/candidate_tracker/12604365341_AjiTH.pdf', NULL, '1', '2024-02-23', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-23 04:23:56', 1, '2024-02-23 04:33:30', 0, NULL, 1),
(17178, 'B DHANUSH', '6', '7550139012', '8015892925', 'dukedhanush8136@gmail.com', '2002-05-29', 21, '2', '2', 'Balaji', 'B.com', 500000.00, 1, 23500.00, 25000.00, 'Chennai', 'Chennai', '2402230005', '29', '2', 'upload_files/candidate_tracker/93434835813_my resume 2024.pdf', NULL, '1', '2024-02-23', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much Suitable for the Insurance Sales Will not handle our work Pressure Long run Doubts ', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-23 04:28:16', 1, '2024-02-23 04:39:49', 0, NULL, 1),
(17179, 'Nasrin', '6', '8124540684', '', 'nasrinhabeeb7912@gmail.com', '2001-05-11', 22, '2', '2', 'Habeeb', 'Auto driver', 12000.00, 1, 12000.00, 18000.00, 'No 518 ,16th block nagooran garde Chennai 81', 'No 518 ,16th block nagooran garden Chennai 81', '2402230006', '1', '2', 'upload_files/candidate_tracker/97252340831_Nasrin CV-1.pdf', NULL, '1', '2024-02-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is working in General Insurance and also tele calling exp she speaks good and i think she is fit for our job and checking her family back ground She needs 16k to 17k salary i think am ok with that but we have to decide March 2nd and Kindly give joining on 4th of march', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-23 05:00:54', 104, '2024-02-23 05:57:26', 0, NULL, 1),
(17180, 'Vignesh D', '6', '7339216294', '9790563836', 'vickydass999@gmail.com', '1999-10-27', 24, '2', '2', 'Devadoss', 'Ktc staff', 500000.00, 1, 20000.00, 22000.00, 'Thoothukudi', 'Thoothukudi', '2402230007', '32', '2', 'upload_files/candidate_tracker/30788935357_Vignesh D Resume.pdf', NULL, '1', '2024-02-23', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-23 05:14:25', 110, '2024-02-23 11:07:53', 0, NULL, 1),
(17181, 'Harish k', '5', '6385643078', '9442775261', 'harishsaba08@gmail.com', '2001-08-08', 22, '3', '2', 'Kanagasabapathy A', 'Fireworks Agent', 20000.00, 1, 0.00, 20000.00, 'Sivakasi', 'Sivakasi', '2402230008', '', '1', 'upload_files/candidate_tracker/22546334211_Resume-4.pdf', NULL, '1', '2024-02-23', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'not fit for sales', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-23 05:17:20', 1, '2024-02-23 05:54:15', 0, NULL, 1),
(17182, '', '0', '7358570595', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402230009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-23 05:21:07', 0, NULL, 0, NULL, 1),
(17183, 'Usha', '6', '9092595194', '', 'rajashanmugam3819@gmail.com', '2003-06-22', 20, '2', '2', 'S raja', 'Weavers', 20000.00, 1, 0.00, 20000.00, 'Arani', 'Aynavaram', '2402230010', '1', '1', 'upload_files/candidate_tracker/16540086313_usha.pdf', NULL, '1', '2024-02-23', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-23 05:32:21', 108, '2024-02-24 12:32:31', 0, NULL, 1),
(17184, 'Vishak', '5', '9566022559', '', 'vishakudhayakumar@gmail.com', '1996-01-05', 28, '2', '2', 'Udhayakumar', 'Business', 40000.00, 1, 23000.00, 35000.00, 'Chennai', 'Chennai', '2402230011', '30', '2', 'upload_files/candidate_tracker/76635146408_Vishak.pdf', NULL, '1', '2024-02-23', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not involved in direct sales or lead generation and expectation also high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-23 05:38:00', 110, '2024-02-23 01:18:53', 0, NULL, 1),
(17185, 'Vinith', '4', '6383826100', '9585088018', 'evinithkumar95@gmail.com', '2002-08-10', 21, '2', '2', 'Elavarasan', 'Farmar', 400000.00, 2, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2402230012', '1', '1', 'upload_files/candidate_tracker/85613327480_vinith.pdf', NULL, '1', '2024-02-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-23 05:59:23', 108, '2024-02-23 01:09:28', 0, NULL, 1),
(17186, 'Aarthi A', '4', '6369013038', '', 'Aarthiaruldoss123@gmail.com', '2001-07-13', 22, '2', '2', 'Aruldoss K', 'Driver', 20000.00, 2, 15000.00, 12000.00, 'Ayyampettai', 'Chennai', '2402230013', '1', '2', 'upload_files/candidate_tracker/87382689729_RESUME AARTHI(2).pdf', NULL, '1', '2024-02-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'susatainablity issue', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-23 06:35:36', 108, '2024-02-23 01:12:35', 0, NULL, 1),
(17187, 'Sumathi k', '27', '6080882861', '8524834079', 'vijiyabharathikbca@gmail.com', '1999-11-01', 24, '3', '2', 'Ponni', 'House wife', 10000.00, 1, 0.00, 18000.00, 'Thiruvannamalai', 'Rayapett', '2402230014', '', '1', 'upload_files/candidate_tracker/43848779775_Resume_SUMATHI K_Format1 (5).pdf', NULL, '1', '2024-02-23', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-23 06:48:52', 1, '2024-02-23 06:53:30', 0, NULL, 1),
(17188, 'Thendral.C', '6', '9361028940', '9952151793', 'thendralcs7@gmail.com', '1994-05-31', 29, '2', '2', 'C.Sumathi', 'TNEB', 400000.00, 1, 26000.00, 33000.00, 'Gummidipoondi', 'Gummidipoondi', '2402230015', '32', '2', 'upload_files/candidate_tracker/97581633710_Thendral Updated DM 1-1.pdf', NULL, '1', '2024-02-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Field Appointments looking only for office Work and too long distance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-23 07:16:23', 110, '2024-02-23 02:40:22', 0, NULL, 1),
(17189, 'mohaned farook', '6', '8428623107', '', 'faruu94@gmail.com', '1994-07-31', 29, '2', '2', 'ahamed sarbudeen', 'salaried', 100000.00, 1, 21000.00, 25000.00, 'thousand lights', 'thousand lights', '2402230016', '32', '2', 'upload_files/candidate_tracker/9747334081_IMG_7109.pdf', NULL, '1', '2024-02-23', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-23 07:24:13', 110, '2024-02-23 05:21:45', 0, NULL, 1),
(17190, 'P Suneel Kumar', '13', '8838504432', '6369406883', 'suneelkumarp63@gmail.com', '2000-05-20', 23, '3', '2', 'P Chinthamani', 'Teacher', 8000.00, 1, 0.00, 12000.00, 'Govardanagiri,Pichatur, Tirupati 517589', 'Gummidipoondi,Tiruvallur, Tamilnadu', '2402230017', '', '1', 'upload_files/candidate_tracker/78212371368_Suneel Resume..pdf', NULL, '1', '2024-02-23', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-23 07:57:26', 1, '2024-02-23 08:03:41', 0, NULL, 1),
(17191, 'Cheswin Raj', '14', '7034489417', '', 'ches422@gmail.com', '1999-03-02', 24, '6', '2', 'K .g. chummar', 'Supervisor', 200000.00, 3, 180000.00, 360000.00, 'Thrissur', 'Thrissur', '2402230018', '', '2', 'upload_files/candidate_tracker/49885379837_CheswinRaj.pdf', NULL, '1', '2024-02-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected in aptitude round', '', '', '', NULL, NULL, NULL, 1, '2024-02-23 08:08:54', 110, '2024-02-23 06:24:58', 0, NULL, 1),
(17192, '', '0', '9786436146', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402230019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-23 09:08:52', 0, NULL, 0, NULL, 1),
(17193, 'K.Sriram', '31', '8825699704', '', 'sriramsuka@gmail.com', '1998-10-04', 25, '3', '2', 'E K Kannan', 'Dept manager', 100000.00, 0, 0.00, 15000.00, 'Vadapalani', 'Vadapalani', '2402230020', '', '1', 'upload_files/candidate_tracker/52247650186_SRIRAM.pdf', NULL, '1', '2024-02-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'rejected in aptitude test', '', '', '', NULL, NULL, NULL, 1, '2024-02-23 09:09:34', 110, '2024-02-23 06:26:42', 0, NULL, 1),
(17194, 'Kansheya Fathima A', '5', '7299700803', '', 'akansheyafathima@gmail.com', '1995-01-23', 29, '2', '2', 'Kowser sulthana', 'Taylor', 30000.00, 1, 33700.00, 35000.00, 'Chennai', 'Chennai', '2402230021', '1', '2', 'upload_files/candidate_tracker/33396631275_Kansheya fathima - CV.DOCX', NULL, '1', '2024-02-24', 15, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-23 11:37:19', 104, '2024-02-29 10:52:22', 0, NULL, 1),
(17195, '', '0', '9080583291', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402230022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-23 11:38:28', 0, NULL, 0, NULL, 1),
(17196, 'ARUNKUMAR MURUGAN', '5', '8525811500', '', 'arunarun.ak908@gmail.com', '1997-06-09', 26, '2', '1', 'JEYARANJANI A', 'Staff Nurse', 40000.00, 1, 17000.00, 20000.00, 'Peraiyur, Madurai', 'Ekkattuthangal, Chennai', '2402230023', '1', '2', 'upload_files/candidate_tracker/39222765777_Arun kumar.pdf', NULL, '1', '2024-02-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-23 11:39:17', 104, '2024-02-29 10:51:35', 0, NULL, 1),
(17197, 'Priyanka V', '6', '8667861950', '', 'priyanka.bscmca@gmail.com', '1994-05-14', 29, '3', '1', 'Valavan', 'Private', 25000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2402230024', '', '2', 'upload_files/candidate_tracker/62729781848_CV-2023 (1).pdf', NULL, '1', '2024-02-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-23 01:15:17', 1, '2024-02-23 01:30:28', 0, NULL, 1),
(17198, 'Kavitha', '33', '8248978684', '9600057237', 'kavi11092000@gmail.com', '2000-09-11', 23, '3', '2', 'Vani haribabu', 'Salar', 1.00, 1, 17500.00, 20000.00, '4/203 ma nagar Kovil Street Chennai 52', '4/203 Ma Nagar Kovil Street Chennai', '2402230025', '', '2', 'upload_files/candidate_tracker/11947246100_new resume update.pdf', NULL, '1', '2024-02-24', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-23 01:23:12', 110, '2024-02-24 12:52:55', 0, NULL, 1),
(17199, 'Jijo V', '4', '8428639764', '', 'jijojoshahjijo@gmail.com', '2001-12-13', 22, '2', '2', 'Victor Immanuel', 'Driver', 25000.00, 1, 15000.00, 22000.00, '0/3a, Kavarai St, Kaladipet, Chennai-19', '0/3a, Kavarai St, Kaladipet, Chennai-19', '2402230026', '29', '2', 'upload_files/candidate_tracker/7349541167_Jijo Resume (1) (1).pdf', NULL, '1', '2024-02-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-23 05:34:42', 1, '2024-02-23 05:44:04', 0, NULL, 1),
(17200, 'Nancy', '4', '9150925573', '7305453904', 'Nancyjeni2026@gmail.com', '2002-01-20', 22, '2', '2', 'Irudhayaraj', 'Business', 60000.00, 1, 22000.00, 25000.00, 'Washermentpet', 'Washermentpet', '2402240001', '29', '2', 'upload_files/candidate_tracker/20657106870_Nancy.docx', NULL, '1', '2024-02-24', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-24 04:15:28', 110, '2024-02-24 07:00:53', 0, NULL, 1),
(17201, 'Raj Kumar', '23', '9176482300', '', 'Raje.raji143@gmail.com', '1991-10-09', 32, '3', '1', 'Rajeshwari', 'Nill', 35000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2402240002', '', '1', 'upload_files/candidate_tracker/56720605486_Raj Kumar.pdf', NULL, '1', '2024-02-24', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-24 04:25:23', 1, '2024-02-24 04:30:47', 0, NULL, 1),
(17202, 'JAYASURIYA.G', '4', '8940148682', '7200133392', 'suriyssuriya4@gmail.com', '2002-04-24', 21, '2', '2', 'Parent', 'Advertisement company', 50000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2402240003', '1', '1', 'upload_files/candidate_tracker/58927468581_RESUME NEW-3.docx', NULL, '1', '2024-02-24', 0, '', '3', '59', '2024-03-05', 151584.00, '', '5', '1970-01-01', '1', 'Selected for Sithy Team in Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-24 05:03:33', 60, '2024-03-04 05:45:15', 0, NULL, 1),
(17203, 'SELVENDIRAN S', '14', '8778401141', '9994246008', 'selvendiran.2210@gmail.com', '2002-10-22', 21, '6', '2', 'Kavitha', 'Graduate', 80000.00, 0, 0.00, 300000.00, 'Chidambaram', 'chennai', '2402240004', '', '1', 'upload_files/candidate_tracker/50914140882_SELVENDIRAN-Resumee.pdf', NULL, '1', '2024-02-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-24 05:03:41', 110, '2024-02-24 05:37:56', 0, NULL, 1),
(17204, 'traicy whitney', '14', '9786158698', '', 'whitneytraicy2001@gmail.com', '2001-03-02', 22, '6', '1', 'belwin dass', 'hr', 1000.00, 2, 0.00, 25000.00, 'nagercoil', 'kundrathur', '2402240005', '', '1', 'upload_files/candidate_tracker/51096076085_Traicy_whitney_resume.pdf', NULL, '1', '2024-02-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-24 05:05:19', 110, '2024-02-24 05:39:07', 0, NULL, 1),
(17205, 'Maheswari', '4', '9361954711', '', 'Mahema292001@gmail.com', '2001-05-29', 22, '2', '2', 'Saminathan', 'Carpenter', 10000.00, 1, 10000.00, 12000.00, 'Budalur', 'Bydhalar', '2402240006', '1', '2', 'upload_files/candidate_tracker/94903366391_IMG_20240224_114943.pdf', NULL, '1', '2024-02-24', 20, '', '3', '59', '2024-03-07', 151584.00, '', '5', '1970-01-01', '2', 'Selected for Sithy Team  in consultant role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', 'P1023', '', '1970-01-01', 1, '2024-02-24 05:10:46', 154, '2025-02-14 10:02:49', 0, NULL, 1),
(17206, 'Divya S', '4', '9788134845', '9566749102', 'diviicharlie@gmail.com', '2003-03-09', 20, '2', '1', 'Charles', 'Coolie', 5000.00, 0, 0.00, 13000.00, 'Viduthalai nagar, Rettipalayam', 'Rettipalayam', '2402240007', '1', '2', 'upload_files/candidate_tracker/42999394495_DOC20231204WA0012.12.pdf', NULL, '1', '2024-02-24', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-24 05:10:49', 108, '2024-02-24 03:51:17', 0, NULL, 1),
(17207, 'naveen', '5', '9677081343', '8754435266', 'rossienaveen@gmail.com', '1997-12-26', 26, '2', '2', 'vijiya', 'Housewife', 10000.00, 1, 18500.00, 20000.00, 'chennai', 'chennai', '2402240008', '1', '2', 'upload_files/candidate_tracker/37931871275_Naveen S cv.pdf', NULL, '1', '2024-02-24', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-24 05:42:42', 108, '2024-02-24 03:47:43', 0, NULL, 1),
(17208, 'MUGESH KANNA D', '14', '6383603152', '9578469606', 'Mugeshkanna007d@gmail.com', '1998-10-29', 25, '6', '2', 'DURAISAMY M', 'Driver', 15000.00, 2, 216000.00, 400000.00, 'Chogalagankudikadu,pappanadu,Thanjavur', 'Saidapet chennai', '2402240009', '', '2', 'upload_files/candidate_tracker/72041465310_mugesh kanna CV.pdf', NULL, '1', '2024-02-24', 60, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude round', '', '', '', NULL, NULL, NULL, 1, '2024-02-24 05:44:00', 110, '2024-02-24 05:29:14', 0, NULL, 1),
(17209, 'Praveen kumar', '14', '7418877227', '', 'novahpraveen@gmail.com', '2002-06-08', 21, '6', '2', 'Balaji K C', 'Labour', 120000.00, 1, 0.00, 120000.00, 'Chrnnai', 'Chennai', '2402240010', '', '1', 'upload_files/candidate_tracker/43521906331_Praveen Kumar Resume.pdf', NULL, '1', '2024-02-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-24 05:44:25', 110, '2024-02-24 05:36:18', 0, NULL, 1),
(17210, 'Vivek K', '14', '8089246277', '', 'vivekkurupath@gmail.com', '2004-10-23', 19, '3', '2', 'Kamalam', 'Housewife', 20000.00, 1, 35000.00, 40000.00, 'Kerala', 'Chennai', '2402240011', '', '2', 'upload_files/candidate_tracker/56459963021_Vivek K.pdf', NULL, '1', '2024-02-24', 7, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected In Aptitude Round', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-24 05:44:38', 110, '2024-02-24 05:34:50', 0, NULL, 1),
(17211, 'HARIHARAN', '14', '9092036483', '7904906130', 'Harish51299@gmail.com', '2009-02-24', 0, '3', '2', 'Raghavendra', 'account', 400000.00, 1, 2.41, 4.50, 'Salem', 'Salem', '2402240012', '', '2', 'upload_files/candidate_tracker/48249974880_Hari resume.pdf', NULL, '1', '2024-02-24', 15, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-24 05:46:02', 110, '2024-02-24 05:35:22', 0, NULL, 1),
(17212, 'Nidhin Ajay P', '14', '9207161605', '', 'nidhinajay1253@gmail.com', '1999-11-24', 24, '6', '2', 'Ajayan', 'Lic agent', 10000.00, 1, 12000.00, 20000.00, 'MALAPPURAM, kerala', 'MALAPPURAM, kerala', '2402240013', '', '2', 'upload_files/candidate_tracker/73984161843_Nidhin ajay resume 2024 FEB-1.pdf', NULL, '1', '2024-02-24', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-24 05:46:15', 1, '2024-02-24 05:51:01', 0, NULL, 1),
(17213, '', '0', '9566749102', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402240014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-24 06:25:11', 0, NULL, 0, NULL, 1),
(17214, 'Rechal Rupavathi J', '6', '7358645128', '8072035750', 'rechalrupavathi@gmail.com', '2000-05-10', 23, '3', '1', 'M Ramesh', 'Zomato delivery partner', 15000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2402240015', '', '2', 'upload_files/candidate_tracker/31229268165_CV_2024022307394043.pdf', NULL, '1', '2024-02-24', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-24 06:54:01', 1, '2024-02-24 06:59:34', 0, NULL, 1),
(17215, 'Sajith Ahmed', '4', '6382287879', '', 'sajithrahmed@gmail.com', '2002-06-28', 21, '2', '2', 'Noorinnisa', 'Housewife', 43000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2402240016', '29', '1', 'upload_files/candidate_tracker/90481568649_Resume_SajithAhmed.pdf', NULL, '2', '2024-02-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-24 08:06:12', 108, '2024-02-27 05:51:36', 0, NULL, 1),
(17216, 'Stalin', '1', '8248028762', '9789857253', 'staluv3@gmail.com', '1998-06-24', 25, '2', '2', 'Kanamuthu', 'Fisherman', 200000.00, 2, 3.24, 3.40, 'Paramankeni', 'Pallavaram', '2402240017', '29', '2', 'upload_files/candidate_tracker/25771396199_stalin.docx', NULL, '3', '2024-02-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-24 08:31:51', 1, '2024-02-24 09:00:31', 0, NULL, 1),
(17217, 'lijin', '14', '8870886146', '', 'lijinlawrence0703@gmail.com', '2001-03-07', 22, '6', '2', 'lawrence. mary suji', 'fisher man. housewife', 15000.00, 2, 0.00, 15000.00, 'kanya kumari', 'tambaram', '2402240018', '', '1', 'upload_files/candidate_tracker/58764266281_LIJIN_Resume1.pdf', NULL, '1', '2024-02-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected In Aptitude Round', '', '', '', NULL, NULL, NULL, 1, '2024-02-24 08:33:38', 110, '2024-02-24 05:40:11', 0, NULL, 1),
(17218, 'Jaganesh Mugilvannan', '14', '7299539918', '', 'jmjagans7@gmail.com', '1997-06-23', 26, '6', '2', 'Mugilvannan', 'Seeking employment', 50000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2402240019', '', '1', 'upload_files/candidate_tracker/22636469054_Jaganesh Mugilvannan Resume Besant.pdf', NULL, '1', '2024-02-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-24 09:17:14', 1, '2024-02-24 09:20:12', 0, NULL, 1),
(17219, '', '0', '6382550653', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402240020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-24 09:32:43', 0, NULL, 0, NULL, 1),
(17220, 'Umera Nisha', '4', '9566079590', '9791976784', 'umeranisharahman@gmail.com', '1999-06-03', 24, '3', '1', 'Rahman Basha', 'Sales executive', 20000.00, 1, 15000.00, 20000.00, 'Block No.87, Door no.12, Ernavoor ,Chennai -600057', 'Block No.87, Door no.12,Ernavoor, Chennai -600057', '2402240021', '', '2', 'upload_files/candidate_tracker/49091805166_CV_2024021119280044.pdf', NULL, '1', '2024-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-24 09:47:10', 1, '2024-02-24 09:53:32', 0, NULL, 1),
(17221, 'U ajay shankar', '4', '8825612469', '9789083703', 'Uajayshankar@gmail.com', '1997-09-18', 26, '4', '2', 'Subha', '12', 3.25, 0, 16000.00, 25000.00, 'Chennai', 'Chennai', '2402240022', '', '2', 'upload_files/candidate_tracker/52388614402_RESUME ajay.docx', NULL, '1', '2024-02-27', 45, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-24 09:48:26', 110, '2024-02-27 10:34:26', 0, NULL, 1),
(17222, 'SANDHIYA RANI J', '6', '9566138576', '9677292949', 'sandhiyarani0221@gmail.com', '1992-11-21', 31, '2', '1', 'Jagadish A', 'Bowncer', 15000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2402240023', '29', '2', 'upload_files/candidate_tracker/9561357661_Resume_J sandhiya rani_Format1.pdf', NULL, '1', '2024-02-26', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-24 10:01:13', 110, '2024-02-26 03:13:01', 0, NULL, 1),
(17223, 'edel teena l', '16', '9677554576', '9710314937', 'edelteena@gmail.com', '2001-06-22', 22, '2', '2', 'santhiyaguammal', 'house wife', 20000.00, 1, 0.00, 2.80, 'madhavaram', 'madhavaram', '2402240024', '1', '2', 'upload_files/candidate_tracker/535979525_Edel Teena L Resume.pdf', NULL, '1', '2024-02-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '4', '7', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-02-24 10:24:22', 110, '2024-02-24 04:37:50', 0, NULL, 1),
(17224, 'Murugesan k', '5', '6374775485', '8428535391', 'Vijaynivi5268@gmail.com', '1999-05-10', 24, '2', '2', 'Amsavalli', 'Teacher', 15000.00, 0, 14000.00, 15000.00, 'Chennai', 'Chennai', '2402250001', '1', '2', 'upload_files/candidate_tracker/88635250702_Murugesan.pdf', NULL, '1', '2024-02-26', 0, '', '3', '59', '2024-03-04', 216000.00, '', '', '2024-03-23', '1', 'Selected for Charles Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-25 07:10:36', 60, '2024-03-04 05:47:33', 0, NULL, 1),
(17225, 'Thenmozhi', '6', '8220704397', '', 'aashasivakumaraashasivakumar@gmail.com', '1998-04-25', 25, '2', '1', 'Yukesh', 'Automobile engineer', 20000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2402260001', '29', '2', 'upload_files/candidate_tracker/98927009422_Thenmozhi S Recruiter Resume.pdf', NULL, '1', '2024-02-26', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-26 03:26:59', 110, '2024-02-26 03:13:49', 0, NULL, 1),
(17226, '', '0', '8190071650', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402260002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-26 04:11:13', 0, NULL, 0, NULL, 1),
(17227, 'Sasidharan S', '23', '8098931465', '9944666472', 'Sasiuxuidesigner@gmail.com', '2009-02-26', 0, '3', '2', 'Sampath kumar', 'Business', 25000.00, 1, 240000.00, 400000.00, 'Tiruppur', 'Coimbatore', '2402260003', '', '2', 'upload_files/candidate_tracker/60941723197_Sasi_UIUX.pdf', NULL, '1', '2024-02-26', 15, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '2', '2', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-26 04:25:31', 110, '2024-02-26 06:52:15', 0, NULL, 1),
(17228, 'SUDARSHAN.M', '4', '7550128519', '', 'msudarshan2002@gmail.com', '2002-01-22', 22, '6', '2', 'MAHENDRAN K', '12th', 150000.00, 1, 0.00, 20000.00, 'Virugambakkam', 'Virugambakkam', '2402260004', '', '1', 'upload_files/candidate_tracker/86365366875_SUDARSHAN FINAL RESUME.pdf', NULL, '1', '2024-02-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-26 05:39:11', 1, '2024-02-26 05:42:53', 0, NULL, 1),
(17229, 'KABIR AHAMED', '14', '9384658837', '7708428273', 'kabirahamed1511@gmail.com', '2000-11-15', 23, '3', '2', 'Mohammed Khaleel', 'Electrician', 15000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2402260005', '', '2', 'upload_files/candidate_tracker/27324233959_Kabir Resume.pdf', NULL, '1', '2024-02-26', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-26 05:44:04', 1, '2024-02-26 05:54:21', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17230, 'SUDARSHAN.M', '4', '9677021378', '7550128519', 'msudarshan2002@gmail.com', '2002-01-22', 22, '1', '2', 'MAHENDRAN K', '12th', 150000.00, 1, 0.00, 20000.00, 'Virugambakkam', 'Virugambakkam', '2402260006', '', '1', 'upload_files/candidate_tracker/61804251065_SUDARSHAN FINAL RESUME.pdf', NULL, '2', '2024-02-27', 0, 'Skylark HR solutions', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-26 06:28:53', 1, '2024-02-26 06:32:15', 0, NULL, 1),
(17231, 'M.s.Ramya Devi', '6', '9080032946', '9940472631', 'msramyadevi26@gmail.com', '2002-04-27', 21, '2', '2', 'M.s.Pappammal', 'Tailor', 23000.00, 1, 13000.00, 16000.00, 'Chennai', 'Chennai', '2402260007', '1', '2', 'upload_files/candidate_tracker/36904871300_RAMYA DEVI CV (1) (1).pdf', NULL, '1', '2024-02-26', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-26 06:47:00', 104, '2024-02-27 09:35:35', 0, NULL, 1),
(17232, 'Saleem', '5', '9362937008', '8096728114', 'saleemmalik2026@gmail.com', '1990-05-22', 33, '2', '1', 'Sharmila', 'House wife', 30.00, 0, 26.00, 30.00, 'Mogappire', 'Mogappire', '2402260008', '34', '2', 'upload_files/candidate_tracker/85741473942_A1 Office 1701088054549.pdf', NULL, '1', '2024-02-26', 15, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Suggested to check for accountant profile', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-26 06:47:35', 60, '2024-03-06 01:15:43', 0, NULL, 1),
(17233, 'Mohamed Anoose', '20', '9840672487', '9600082787', 'anoosemd@gmail.com', '1994-01-06', 30, '2', '2', 'Asraf Ali', 'Own business', 80000.00, 1, 22000.00, 22000.00, 'Chennai', 'Chennai', '2402260009', '32', '2', 'upload_files/candidate_tracker/31943149197_MD Anoose resume (1).pdf', NULL, '1', '2024-02-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Relevant Exp age around 30 and taking calls and handling our work roles is not possible will not sustain', '5', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-26 06:48:20', 1, '2024-02-26 09:14:32', 0, NULL, 1),
(17234, 'Saravanan N', '31', '9384445143', '9092525208', 'saravanan30.08.2000@gmail.com', '2000-08-30', 23, '3', '2', 'Nagaraj', 'Driver', 18000.00, 1, 0.00, 200000.00, 'Karur', 'Chennai', '2402260010', '', '1', 'upload_files/candidate_tracker/4479745044_saravanan -n_resume.pdf', NULL, '1', '2024-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude', '', '', '', NULL, NULL, NULL, 1, '2024-02-26 06:54:42', 110, '2024-02-26 06:52:04', 0, NULL, 1),
(17235, 'Vishal K S', '31', '9360358919', '7358598217', 'vishal2002vishnu@gmail.com', '2002-09-04', 21, '3', '2', 'Suresh M', 'Business', 50000.00, 1, 0.00, 200000.00, 'chennai', 'chennai', '2402260011', '', '1', 'upload_files/candidate_tracker/98810266471_VishalKS (1) (2).pdf', NULL, '1', '2024-02-26', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-26 06:54:51', 1, '2024-02-26 07:01:04', 0, NULL, 1),
(17236, 'David anand', '20', '7358494939', '8438999722', 'David.anand78@gmail.com', '1991-10-17', 32, '2', '2', 'Selvam', 'Business', 30000.00, 1, 0.00, 15000.00, 'No 4/92b k.k.salai, mathiyalagan nagar saligramam', 'Same as above', '2402260012', '34', '1', 'upload_files/candidate_tracker/1771645420_CV_2023081622573499.pdf', NULL, '1', '2024-02-26', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No skill ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-26 06:59:37', 60, '2024-03-06 01:16:37', 0, NULL, 1),
(17237, 'Vignesh', '5', '8608214718', '8056573150', 'vickyvignesh9042@gmail.com', '1999-12-20', 24, '2', '2', 'Venkatesan.p', 'Cashier', 17000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2402260013', '34', '2', 'upload_files/candidate_tracker/17199151062_CV_2024021722122022.pdf', NULL, '1', '2024-02-26', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-26 07:01:41', 112, '2024-03-12 03:19:13', 0, NULL, 1),
(17238, 'NIVETHA.R', '14', '8754639217', '', 'nivetha2406@gmail.com', '1998-06-24', 25, '3', '2', 'C. Raja', 'Milk business', 20000.00, 2, 0.00, 15000.00, 'Salem', 'Kolathur', '2402260014', '', '1', 'upload_files/candidate_tracker/92399708822_Nivetha R.pdf', NULL, '1', '2024-02-26', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-26 07:13:27', 1, '2024-02-26 07:17:32', 0, NULL, 1),
(17239, 'Thilipan', '20', '9841370423', '9841370422', 'lanthilipan51@gmail.com', '1999-04-04', 24, '2', '2', 'Visali', 'Business', 12000.00, 1, 22000.00, 25000.00, 'Kolathur', 'Kolathur', '2402260015', '34', '2', 'upload_files/candidate_tracker/4348966290_kaarthick.pdf', NULL, '1', '2024-03-04', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-26 07:51:28', 112, '2024-03-12 03:22:49', 0, NULL, 1),
(17240, 'Keziah Gladys Deborah', '4', '7010098775', '7305320377', 'gladysdeborah1998@gmail.com', '1998-07-07', 25, '2', '2', 'A. Babu Vijayakumar (Late)', 'None', 1.00, 0, 21000.00, 24000.00, 'No.108, Bazaar Street, Poochi Athipedu CH-52', 'No.108, Bazaar Street, Poochi Athipedu Ch-52', '2402260016', '34', '2', 'upload_files/candidate_tracker/59519376150_Resume Deborah .pdf', NULL, '1', '2024-02-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok looking much for target free profile much comfort to work on Monday to friday however she is fine with our conditions Monday to Saturday left Without attending the 2nd round', '1', '1', '', '1', '8', '', '2', '2024-03-05', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-26 08:27:05', 60, '2024-03-06 01:08:17', 0, NULL, 1),
(17241, 'Jagatheeswaran V', '6', '9944420726', '9047163064', 'jagatheeskutty@gmail.com', '1996-04-14', 27, '2', '2', 'Velsamy', 'Former', 20000.00, 2, 0.00, 20000.00, 'Srivilliputtur', 'Kundrathur', '2402260017', '34', '1', 'upload_files/candidate_tracker/22302925852_JAGA.RESUME.docx', NULL, '1', '2024-02-26', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long distance ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-26 08:28:03', 112, '2024-03-12 03:23:51', 0, NULL, 1),
(17242, 'Maragatham.N', '6', '7708103350', '', 'maragatham028@Gmail.com', '2002-07-13', 21, '2', '2', 'Nallappan', 'Farmer', 25000.00, 2, 0.00, 18000.00, '16,grama Devi Kovil street olakkur', 'Olakkur', '2402260018', '34', '1', 'upload_files/candidate_tracker/60295664501_Maragatham Resume-3.docx', NULL, '1', '2024-02-26', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Worst ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-26 08:28:15', 112, '2024-03-12 03:24:30', 0, NULL, 1),
(17243, 'Nimitha', '20', '6380025594', '', 'nimithaprabhu0118@gmail.com', '2001-10-18', 22, '2', '2', 'Usha', 'Admin', 60000.00, 1, 25000.00, 15000.00, 'Chennai', 'Chennai', '2402260019', '1', '2', 'upload_files/candidate_tracker/14454423801_Nimi Resume.pdf', NULL, '1', '2024-02-26', 3, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Alredy work medical field .  Selected ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-26 08:29:51', 112, '2024-02-26 05:41:08', 0, NULL, 1),
(17244, 'Abigail Sarojini', '5', '7305320377', '7010098775', 'Ammuabi057@gmail.com', '1999-03-28', 24, '2', '2', 'P. Benjamin (Late)', 'Late', 0.00, 0, 0.00, 20500.00, 'No.17,kamaraj nagar 3rd street, TVK nagar,ch-82', 'No.17,Kamaraj Nagar 3rd Street, Tvk Nagar, Ch-82', '2402260020', '34', '2', 'upload_files/candidate_tracker/43551280129_Abigail Resume Pdf.pdf', NULL, '1', '2024-02-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok Looking Much For Target Free Profile Much Comfort To Work On Monday To Friday However She Is Fine With Our Conditions Monday To Saturday Left Without Attending The 2nd Round', '1', '1', '', '1', '8', '', '2', '2024-03-05', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-26 08:37:40', 60, '2024-03-06 01:08:27', 0, NULL, 1),
(17245, 'Rajeswari paramasivam', '4', '7812850979', '9791625776', 'Rajparama321@gmail.com', '2000-11-12', 23, '4', '2', 'Paramasivam', 'Salesman', 15000.00, 0, 17000.00, 20000.00, 'Bodinayakanur', 'Ila washermanpet', '2402260021', '', '2', 'upload_files/candidate_tracker/14644364260_CV_202402222212348.pdf', NULL, '1', '2024-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-26 08:46:12', 1, '2024-02-26 08:52:31', 0, NULL, 1),
(17246, 'VITHYASREE B', '5', '9566844378', '8608775363', 'vithyasree11@gmail.com', '2001-01-07', 23, '2', '1', 'RAJKUMAR S J', 'AR CALLER', 25000.00, 1, 0.00, 16000.00, 'VILLIVAKKAM, CHENNAI', 'VILLIVAKKAM, CHENNAI', '2402260022', '1', '1', 'upload_files/candidate_tracker/13882700650_Vithyasree B - Resume.pdf', NULL, '1', '2024-02-26', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-26 09:02:27', 108, '2024-02-26 06:42:33', 0, NULL, 1),
(17247, 'Nandhini', '4', '8667661459', '8825702156', 'nandhini191099@gmail.com', '1999-10-19', 24, '3', '1', 'Baskar', 'Operator', 45000.00, 0, 0.00, 26000.00, '24 Devanesan nagar peerkankarani perungalathur', '24 Devanesan nagar peerkankarani perungalathur', '2402260023', '', '2', 'upload_files/candidate_tracker/78254658650_NANDHINI updated Resume.docx', NULL, '1', '2024-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-26 09:32:32', 1, '2024-02-26 11:45:48', 0, NULL, 1),
(17248, '', '0', '8778446339', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402260024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-26 12:38:06', 0, NULL, 0, NULL, 1),
(17249, 'VIJAYA KUMAR PANDRUVEDU', '6', '6281601350', '', 'vijaykumar894452@gmail.com', '1999-04-05', 24, '2', '2', 'VENKATESULU K', 'Daily labour', 300000.00, 1, 20000.00, 25000.00, 'Srikalahasti', 'CHENNAI', '2402260025', '29', '2', 'upload_files/candidate_tracker/91890818664_MBA RESUME NOV-23.pdf', NULL, '1', '2024-02-27', 30, '', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'not fit for sales', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-26 01:14:28', 1, '2024-02-26 01:34:43', 0, NULL, 1),
(17250, 'Gopika', '6', '6374299764', '6379467112', 'gopikasathasivam@gmail.com', '2003-03-30', 20, '6', '2', 'Sathasivam', '50000', 10000.00, 1, 0.00, 15.00, 'Vadapalani', 'Virugambakkam', '2402260026', '', '1', 'upload_files/candidate_tracker/14973095949_gopika resume.pdf', NULL, '1', '2024-02-27', 0, '', '5', '105', NULL, 0.00, '', '0', NULL, '2', 'Candidate Sustainity Issue , Also Communication is Low', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-26 02:49:13', 1, '2024-02-26 02:57:36', 0, NULL, 1),
(17251, 'SA INBATAMILAN', '4', '9750977899', '', 'Jayanthnattar@gmail.Com', '2001-09-02', 22, '2', '2', 'Parent', 'Conductor', 30000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Saliyamangalam Thanjavur', '2402270001', '32', '1', 'upload_files/candidate_tracker/11295890965_Inba White Simple Student CV Resume-1.pdf', NULL, '1', '2024-02-27', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telecalling', '1', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-27 03:06:08', 110, '2024-02-27 09:29:23', 0, NULL, 1),
(17252, 'Ramesh K', '14', '9384276763', '', 'rameshmee68@gmail.com', '2001-02-15', 23, '3', '2', 'V.Kandasamy', 'Framer', 50000.00, 1, 0.00, 25000.00, 'Dharapuram', 'Chennai', '2402270002', '', '1', 'upload_files/candidate_tracker/13453981198_Resume (1).pdf', NULL, '1', '2024-02-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 03:57:05', 1, '2024-02-27 04:00:54', 0, NULL, 1),
(17253, 'Selvaganesh', '13', '9488793821', '', 'selvaganeshselva01@gmail.com', '2001-01-08', 23, '3', '2', 'Karunamoorthi', 'Farmer', 10000.00, 1, 0.00, 25000.00, 'Kumbakonam', 'Tambaram', '2402270003', '', '1', 'upload_files/candidate_tracker/31094863719_SELVAGANESH_Resume.pdf', NULL, '1', '2024-02-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 04:25:48', 1, '2024-02-27 04:30:57', 0, NULL, 1),
(17254, 'Arun K', '2', '9080384254', '', 'arunkumarasamy2001@gmail.com', '2001-11-05', 22, '3', '2', 'Kumarasamy N', 'Farmer', 200000.00, 1, 0.00, 180000.00, 'Namakkal', 'Chennai', '2402270004', '', '1', 'upload_files/candidate_tracker/88548911827_Arun.pdf', NULL, '1', '2024-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 04:27:05', 1, '2024-02-27 05:06:31', 0, NULL, 1),
(17255, 'Vadivel', '14', '9597799914', '8870783511', 'jvadivel.1996@gmail.com', '1996-12-23', 27, '3', '2', 'V.jothiprakasam', 'Teacher', 50000.00, 2, 0.00, 15000.00, 'Tiruvannamalai', 'Chennai', '2402270005', '', '1', 'upload_files/candidate_tracker/61228597655_vadivel.pdf', NULL, '1', '2024-02-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-27 05:03:07', 112, '2024-03-20 03:18:59', 0, NULL, 1),
(17256, 'Nasrin Fathima M', '5', '7200205872', '9003279297', 'papukutti1610@gmail.com', '2000-02-10', 24, '2', '1', 'Mohammad Azarrutheen', 'THIRUVUTTIYUR', 42000.00, 2, 22000.00, 25000.00, 'THIRUVUTTIYUR', 'THIRUVUTTIYUR', '2402270006', '29', '2', 'upload_files/candidate_tracker/89698965048_nasrin offer.pdf', NULL, '1', '2024-02-27', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '2', 'Not fit for sales', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 05:04:01', 1, '2024-02-27 05:16:24', 0, NULL, 1),
(17257, 'Logeshwaran.c', '1', '6383067642', '9790540609', 'logesh6383000@gmail.com', '2001-10-05', 22, '2', '2', 'Chaloaravathy.R', 'Fitter', 35000.00, 1, 0.00, 20000.00, '31/7f kandasamy puram ulundhurpattai', '41/3 welcome colony Anna nagar West chennai', '2402270007', '31', '1', 'upload_files/candidate_tracker/10472661672_logeshwaran pdf.docx', NULL, '1', '2024-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 06:06:49', 1, '2024-02-27 06:53:07', 0, NULL, 1),
(17258, 'M Monisha', '14', '7702792682', '', 'Monisha.munaswamy@gmail.com', '1997-08-06', 26, '3', '1', 'Nagarajan', 'Supply chain', 30000.00, 0, 0.00, 20000.00, 'Thirunindrauvur', 'Thirunindrauvur', '2402270008', '', '1', 'upload_files/candidate_tracker/78555562648_new resume.docx', NULL, '1', '2024-02-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 06:28:04', 1, '2024-02-27 06:32:12', 0, NULL, 1),
(17259, 'Piyush', '23', '7092542463', '9080686063', 'piyush99.m@gmail.com', '1999-10-23', 24, '3', '2', 'Parent', 'BCA', 50000.00, 2, 15000.00, 18000.00, 'Vadapalani', 'Vadapalani', '2402270009', '', '2', 'upload_files/candidate_tracker/95738664068_Piyush.pdf', NULL, '1', '2024-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 06:57:45', 1, '2024-02-27 07:30:33', 0, NULL, 1),
(17260, 'Kavi bharathi', '6', '6369677814', '', 'Kavibharathi2425@gmailcom', '2002-05-24', 21, '2', '2', 'Muthulakshmi', 'Shop', 20000.00, 1, 15000.00, 17000.00, 'Virugambakkam', 'Virugambakkam', '2402270010', '29', '2', 'upload_files/candidate_tracker/31290365167_kavi.pdf', NULL, '1', '2024-02-27', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication is not good', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-27 06:59:44', 104, '2024-02-27 06:22:07', 0, NULL, 1),
(17261, 'Mohamed Anas', '28', '9789147500', '', 'anasaliyas@gmail.com', '2001-03-07', 22, '3', '2', 'Mohamed Aliyas', 'Supervisor', 75000.00, 2, 0.00, 320000.00, 'Velachery, Chennai', 'Velachery, Chennai', '2402270011', '', '1', 'upload_files/candidate_tracker/29065566138_Mohamed\'s Resume (2).pdf', NULL, '1', '2024-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 07:06:40', 1, '2024-02-27 07:36:02', 0, NULL, 1),
(17262, 'mohamed arkam', '28', '7094986030', '', 'arkamarkam222@gmail.com', '2001-01-13', 23, '3', '2', 'amanullaha', 'business', 80000.00, 2, 0.00, 300000.00, 'lic back side mount road triplicane chennai', 'chennai', '2402270012', '', '1', 'upload_files/candidate_tracker/49125966110_arkam final edited resume.pdf', NULL, '1', '2024-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 07:06:47', 1, '2024-02-27 07:34:12', 0, NULL, 1),
(17263, 'Priyadharshini B', '28', '9360140042', '', 'priyadharshinibaskar3402@gmail.com', '2002-04-03', 21, '3', '2', 'Baskar U', 'Plastic Business', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'chennai', '2402270013', '', '1', 'upload_files/candidate_tracker/81481772979_final edited resume.pdf', NULL, '1', '2024-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 07:07:26', 1, '2024-02-27 07:35:27', 0, NULL, 1),
(17264, 'Jethendra', '5', '8838430664', '9944732611', 'jethendrarishi@gmail.com', '1999-09-20', 24, '2', '2', 'Radhakrishnaraja', 'Business development associate', 15000.00, 0, 23000.00, 30000.00, 'Rajapalayam', 'Padi', '2402270014', '1', '2', 'upload_files/candidate_tracker/15724508258_Jethendra resume.pdf', NULL, '1', '2024-02-27', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-27 07:17:43', 108, '2024-02-27 06:19:38', 0, NULL, 1),
(17265, 'Varalakshmi', '6', '6374638690', '8754785014', 'Vara10802@gmail.com', '2003-07-01', 20, '2', '2', 'Lakshmi', 'Coolie', 6000.00, 1, 0.00, 16000.00, 'Tenkasi', 'Chennai ,Mandaveli', '2402270015', '1', '1', 'upload_files/candidate_tracker/12502753565_Varalakshmi .pdf', NULL, '1', '2024-02-28', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-27 07:38:23', 112, '2024-02-28 06:47:49', 0, NULL, 1),
(17266, 'Moulishwaran', '6', '9361844081', '', 'moulishw336@gmail.com', '2001-06-26', 22, '2', '2', 'VASANTHI', 'House keeping', 15000.00, 1, 19000.00, 25000.00, 'Chennai', 'Chennai', '2402270016', '1', '2', 'upload_files/candidate_tracker/25044141659_moulii.pdf', NULL, '1', '2024-02-28', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-27 08:06:10', 112, '2024-02-28 03:05:26', 0, NULL, 1),
(17267, '', '0', '6382387879', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402270017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-27 08:41:56', 0, NULL, 0, NULL, 1),
(17268, '', '0', '7871884545', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402270018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-27 09:20:47', 0, NULL, 0, NULL, 1),
(17269, 'Abirami', '6', '8925449168', '', 'abinithu3@gmail.com', '2003-09-30', 20, '2', '2', 'Balamurugan', 'Police', 260000.00, 1, 20000.00, 22000.00, 'Egmore', 'Egmore', '2402270019', '1', '2', 'upload_files/candidate_tracker/14474657251_Abi resume (1).pdf', NULL, '1', '2024-02-28', 0, '', '3', '59', '2024-03-19', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Gopinath Team', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-27 09:30:33', 60, '2024-03-19 10:29:13', 0, NULL, 1),
(17270, 'Sanjay s', '6', '6369702366', '9384650273', 'Sanjays25019@gmail.com', '2002-02-16', 22, '2', '2', 'Selvam', 'Business development', 30000.00, 2, 0.00, 16000.00, '8/117- nt , manapparai ( TK) , Trichy 621302', 'No:19, 29th St, south high colony , Thiru Nagar,', '2402270020', '1', '1', 'upload_files/candidate_tracker/14862643458_SANJAY SELVAM .pdf', NULL, '1', '2024-02-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Weared Chappal Also Not Suitable For Our Domain And he need to improve his communication skills.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-27 09:51:51', 104, '2024-02-27 06:23:36', 0, NULL, 1),
(17271, 'Jaishree S', '20', '8667376526', '7448715089', 'jaishreesekar12@gmail.com', '1999-12-12', 24, '2', '2', 'G sekar', 'Business', 40000.00, 1, 24000.00, 30000.00, 'No 23/55/1 New Tank bund 2nd St otteri Chennai', 'No 23/55/1 New Tank bund 2nd St otteri chennai', '2402270021', '1', '2', 'upload_files/candidate_tracker/46130318845_JAISHREE S RESUME New.pdf', NULL, '1', '2024-02-28', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Requried High Package ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-27 09:54:35', 104, '2024-02-28 05:56:34', 0, NULL, 1),
(17272, 'Nickson Michael S', '6', '9176186942', '', 'nicksonmichael61298@gmail.com', '1998-12-06', 25, '2', '2', 'Y selvin', 'Provision Store', 400000.00, 3, 420000.00, 450000.00, 'Porur', 'porur', '2402270022', '29', '2', 'upload_files/candidate_tracker/32291735181_NICKSON MICHAEL S RESUME-5 (1).pdf', NULL, '3', '2024-02-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 10:02:38', 1, '2024-02-27 10:20:25', 0, NULL, 1),
(17273, '', '0', '9787658637', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402270023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-27 10:29:37', 0, NULL, 0, NULL, 1),
(17274, '', '0', '8681041871', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402270024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-27 10:30:31', 0, NULL, 0, NULL, 1),
(17275, 'Joshwa', '6', '6369329709', '7904863576', 'teddyjoshwa27@gmail', '2002-11-27', 21, '3', '2', 'Palraj.v', 'Fruit seller', 30000.00, 3, 21000.00, 25000.00, 'No:43 MGR st choolai pallum MGR nagar chennai 78', 'No:43 MGR st choolai pallum MGR nagar', '2402270025', '', '2', 'upload_files/candidate_tracker/74914298180_joshwa.pdf', NULL, '3', '2024-02-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 10:57:58', 1, '2024-02-27 01:51:44', 0, NULL, 1),
(17276, 'B.priyadharshini', '4', '9566239228', '', 'priyap37733@gmail.com', '2001-02-22', 23, '2', '2', 'D.balasubramani', 'Tailor', 20000.00, 1, 12000.00, 16000.00, 'Saidapet', 'Saidapet', '2402270026', '29', '2', 'upload_files/candidate_tracker/21231118679_Priya resume-1.pdf', NULL, '1', '2024-02-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 11:10:45', 1, '2024-02-27 11:23:05', 0, NULL, 1),
(17277, 'Khaja Moideen', '14', '8870739754', '', 'khajamoideen559@gmail.com', '1998-10-18', 25, '6', '2', 'Sulthan alaudeen', 'Reliance brands Limited', 35000.00, 4, 0.00, 300000.00, 'Chennai', 'Chennai', '2402270027', '', '1', 'upload_files/candidate_tracker/92317949697_Khaja resume.docx', NULL, '1', '2024-02-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-27 11:41:40', 104, '2024-03-04 06:08:13', 0, NULL, 1),
(17278, 'V.JAGAN', '4', '6380139794', '7871054560', 'jagarithik9302@gmail.com', '2002-03-09', 21, '2', '2', 'Venkatraman.A', 'Masen', 20000.00, 1, 0.00, 20000.00, 'Perumbakkam', 'Perumbakkam', '2402270028', '29', '1', 'upload_files/candidate_tracker/85226136788_White and Beige Simple Student CV Resume_20240201_194754_0000.pdf', NULL, '2', '2024-02-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 11:53:37', 1, '2024-02-27 12:10:38', 0, NULL, 1),
(17279, 'Revathi E', '4', '7845148828', '9994587234', 'revathie134@gmail.com', '2000-07-10', 23, '2', '2', 'Elumalai S', 'Driver', 30000.00, 1, 0.00, 18000.00, 'Chengalpattu', 'T Nagar', '2402270029', '29', '1', 'upload_files/candidate_tracker/45553259260_Revathi CV.pdf', NULL, '1', '2024-03-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 11:53:51', 1, '2024-02-27 12:07:33', 0, NULL, 1),
(17280, 'Hemavathi k', '21', '8610965340', '', 'khemapink@gmail.com', '1996-10-07', 27, '3', '1', 'Udhyakumar', 'Marine', 40000.00, 1, 24000.00, 30000.00, 'Madhavaram', 'Royapuram', '2402270030', '', '2', 'upload_files/candidate_tracker/18871897657_73 hema resume .pdf', NULL, '1', '2024-02-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-27 12:14:16', 1, '2024-02-27 12:19:34', 0, NULL, 1),
(17281, 'Bhukya sunil kumar naik', '6', '9676128570', '', 'sunilbhukya276@gmail.com', '2001-09-09', 22, '2', '1', 'Saida Naik', 'Farmer', 100000.00, 1, 15000.00, 25000.00, 'Bhatrupalem', 'chennai', '2402270031', '1', '2', 'upload_files/candidate_tracker/41756397092_Resume_2024-02-26_1079778 (1).pdf', NULL, '1', '2024-02-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Tamil Communication will not handle our sales process not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-02-27 01:54:39', 112, '2024-02-28 06:51:18', 0, NULL, 1),
(17282, '', '0', '7358436293', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402270032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-27 03:01:16', 0, NULL, 0, NULL, 1),
(17283, '', '0', '6384652022', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402270033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-27 03:21:55', 0, NULL, 0, NULL, 1),
(17284, 'Bhavani M P', '6', '9952906490', '8807350596', 'Bhavadharni7@gmail.com', '1995-07-07', 28, '2', '1', 'Prasanth sekar', 'Automobiles', 35000.00, 1, 21000.00, 25000.00, 'No 2765 mMDA MATHUR CH68', 'No 2765 MMDA MATHUR CH68', '2402270034', '29', '2', 'upload_files/candidate_tracker/10423227496_MPBhavani_1Resume.pdf', NULL, '1', '2024-02-28', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-27 04:42:09', 112, '2024-02-28 06:57:06', 0, NULL, 1),
(17285, 'PARAMESHWARI G', '4', '8939029563', '9159984934', 'lydiasweety7@gmail.com', '1996-07-09', 27, '3', '1', 'SALAMON J', 'Salaried', 30000.00, 2, 25000.00, 30000.00, 'Thiruvannamalai', 'Chennai', '2402280001', '', '2', 'upload_files/candidate_tracker/55694737304_New Doc 02-19-2024 12.57.01.pdf', NULL, '1', '2024-02-29', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 04:32:18', 1, '2024-02-28 04:45:23', 0, NULL, 1),
(17286, 'Krishna Kumar m', '6', '7483120063', '8754429646', 'Mayilkrishna@gmail.com', '1997-08-17', 26, '2', '2', 'Mayil kvanan', 'Bus conductor', 350000.00, 1, 290000.00, 20000.00, '188/8streer periya nagar korattur Chennai', '188/ 8 street periya nagar korattur Chennai', '2402280002', '1', '2', 'upload_files/candidate_tracker/95599509860_Krishna Kumar.M - Resume.pdf', NULL, '1', '2024-02-28', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-28 04:42:19', 108, '2024-02-28 02:54:28', 0, NULL, 1),
(17287, '', '0', '9629898940', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402280003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-28 05:01:02', 0, NULL, 0, NULL, 1),
(17288, 'P Harini', '6', '8148931470', '7550053385', 'harinisaraswathip@gmail.com', '2002-12-21', 21, '2', '2', 'Purushothaman.B', 'Concor', 35000.00, 1, 20000.00, 22000.00, 'Kodungaiyur', 'Kodungaiyur', '2402280004', '32', '2', 'upload_files/candidate_tracker/42571401352_Harini.pdf', NULL, '1', '2024-03-21', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok for sales job.she int for makeartist', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-28 05:06:39', 112, '2024-03-21 12:17:49', 0, NULL, 1),
(17289, 'yogesh', '6', '8056227159', '9840296288', 'yogeshw.im@gmail.com', '1998-05-13', 25, '2', '2', 'vignesh', 'tool designer', 100000.00, 1, 37000.00, 40000.00, 'chennai', 'chennai', '2402280005', '30', '2', 'upload_files/candidate_tracker/81607166397_K\'s Resume (1).pdf', NULL, '1', '2024-02-28', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 05:23:25', 1, '2024-02-28 05:33:03', 0, NULL, 1),
(17290, 'Mohamed Irfan', '14', '6374229686', '9486508714', 'mohamedirfan11315@gmail.com', '2000-01-25', 24, '6', '2', 'Abdul Rahman F', 'Sales Man', 18000.00, 2, 0.00, 350000.00, 'Nagore', 'chennai', '2402280006', '', '1', 'upload_files/candidate_tracker/77222014887_Irfan.pdf', NULL, '1', '2024-02-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 05:30:22', 1, '2024-02-28 05:43:29', 0, NULL, 1),
(17291, 'K.Ramya', '4', '8608274841', '9344746156', 'sujathakarthikyen19@gmail.com', '2000-10-27', 23, '2', '2', 'K.sujatha', 'Pharmacy worker', 7000.00, 1, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2402280007', '1', '1', 'upload_files/candidate_tracker/50984447476_CV of Ramya.pdf', NULL, '1', '2024-02-28', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT FOR SALES', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-28 05:31:49', 108, '2024-02-28 02:51:34', 0, NULL, 1),
(17292, 'Monisha P', '6', '7448770483', '', 'pmoni30.2001@gmail.com', '2001-05-30', 22, '2', '2', 'Prakash', 'Coolie', 15000.00, 0, 18000.00, 25000.00, 'Chennai', 'Chennai', '2402280008', '29', '2', 'upload_files/candidate_tracker/90304204501_MONISHA RESUME - 2023.pdf', NULL, '1', '2024-02-28', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our sales roles will not sustain and handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-28 05:47:14', 112, '2024-02-28 06:45:36', 0, NULL, 1),
(17293, 'Sowmiya', '4', '7708015117', '7397570836', 'Krishnaraman20@gmail.com', '2000-06-12', 23, '2', '2', 'Shanmuga subramaniyan', 'Farmer', 8000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2402280009', '1', '2', 'upload_files/candidate_tracker/47366254740_2024 new cv sowmiya.pdf', NULL, '1', '2024-02-28', 0, '', '3', '59', '2024-03-05', 151584.00, '', '5', '1970-01-01', '2', 'Selected for sithy team', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-28 05:59:47', 60, '2024-03-04 06:30:18', 0, NULL, 1),
(17294, 'Dhanusha. P', '6', '9566217579', '9042330490', 'dhandhanusha19@gmail.com', '2002-08-19', 21, '2', '2', 'Sivagami', 'House wife', 100000.00, 2, 0.00, 16000.00, 'Triplicane, Chennai', 'Triplicane, Chennai', '2402280010', '29', '1', 'upload_files/candidate_tracker/68108370462_Dhanusha+Resume+2 (1).pdf', NULL, '1', '2024-02-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 06:11:26', 1, '2024-02-28 06:24:34', 0, NULL, 1),
(17295, 'B.karthika', '6', '7806984166', '', 'Karthikabaskar28022003@gmail.com', '2003-02-28', 21, '2', '2', 'Baskar', 'Cooli', 12000.00, 2, 0.00, 16000.00, 'Mylapore Chennai', 'Mylapore Chennai', '2402280011', '29', '1', 'upload_files/candidate_tracker/50625717957_Resume_Karthika B_Format2-1.pdf', NULL, '1', '2024-02-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 06:16:22', 1, '2024-02-28 06:24:18', 0, NULL, 1),
(17296, 'Poonkodi G', '6', '6383924827', '8939207689', 'poonkodivelu1712@gmail.com', '2001-12-17', 22, '2', '1', 'Gnanavel', '200000', 17000.00, 0, 24000.00, 30000.00, 'Kk nagar', 'Kk nagar', '2402280012', '1', '2', 'upload_files/candidate_tracker/83552513886_Ponkodi (1).docx', NULL, '1', '2024-02-28', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-28 06:21:09', 112, '2024-02-28 06:44:17', 0, NULL, 1),
(17297, 'Sheebavathi.B', '4', '7339542454', '8428060427', 'sheeba10112002@gmail.com', '2002-11-10', 21, '2', '2', 'Vaijayanthimala.B', 'Labour', 10000.00, 4, 0.00, 15000.00, 'Redhills, chennai-52', 'Redhills, chennai-52', '2402280013', '32', '1', 'upload_files/candidate_tracker/91772869592_sheebavathi B.pdf', NULL, '1', '2024-02-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 06:22:43', 1, '2024-02-28 06:57:37', 0, NULL, 1),
(17298, 'Vishali Kannan', '13', '9025099394', '', 'vishalikannan0306@gmail.com', '2002-08-03', 21, '3', '2', 'Kannan. T', 'Business', 30000.00, 2, 0.00, 2.80, 'Ladanenthal', 'Chennai', '2402280014', '', '1', 'upload_files/candidate_tracker/32200011458_Copy of Copy of Copy of RAJESHWARI.pdf (2).pdf', NULL, '1', '2024-02-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-28 06:45:03', 112, '2024-03-15 09:39:54', 0, NULL, 1),
(17299, 'ABDUL ASIK RAJA A', '27', '7092899238', '', 'asikraja2001@gmail.com', '2001-10-04', 22, '3', '2', 'AJMAL KHAN A', 'Sales man', 20000.00, 1, 0.00, 17000.00, 'Virudhunagar', 'Velachery', '2402280015', '', '1', 'upload_files/candidate_tracker/6439809066_asik updated resume new-2.pdf', NULL, '1', '2024-02-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 06:46:17', 1, '2024-02-28 06:49:25', 0, NULL, 1),
(17300, 'Sethuraman', '33', '8124405627', '8939014682', 'sethuraman0105@gmail.com', '1998-05-29', 25, '2', '2', 'Manogaran', 'Driver', 20000.00, 2, 400000.00, 550000.00, 'Chennai', 'Chennai', '2402280016', '29', '2', 'upload_files/candidate_tracker/19128211295_Sethuraman 2023-till now.docx', NULL, '1', '2024-02-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 06:55:07', 1, '2024-02-28 07:00:59', 0, NULL, 1),
(17301, 'V.Thambidurai', '14', '8110099200', '7339642229', 'vthambiduraitd@gmail.com', '1987-05-21', 36, '6', '2', 'S.virashabadass', 'Retired headmaster', 6.00, 1, 5.50, 8.50, 'Tindivanam', 'Thiruvanmiyur', '2402280017', '', '2', 'upload_files/candidate_tracker/10507620204_Td_Flutter_final.pdf', NULL, '1', '2024-02-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 07:40:28', 1, '2024-02-28 07:50:33', 0, NULL, 1),
(17302, 'Ashwini R', '4', '6382954072', '', 'rajaashwini2001@gmail.com', '2001-09-01', 22, '3', '2', 'K.A. Raja', 'Tasmac supervisor', 14000.00, 2, 21000.00, 25000.00, 'Perambalur', 'Chennai', '2402280018', '', '2', 'upload_files/candidate_tracker/1474832199_DOC-20240214-WA0000..pdf', NULL, '1', '2024-02-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 08:06:46', 1, '2024-02-28 08:28:51', 0, NULL, 1),
(17303, 'MONISHA T', '4', '6374496394', '9751691974', 'moniswathi97@gmail.com', '2001-12-08', 22, '3', '2', 'Theeran Dass A', 'Merchant navy', 50000.00, 1, 15500.00, 25000.00, 'Karur', 'Chennai', '2402280019', '', '2', 'upload_files/candidate_tracker/20340504223_Monisha TheeranDas-1.pdf', NULL, '1', '2024-02-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 08:07:22', 1, '2024-02-28 08:17:43', 0, NULL, 1),
(17304, 'Naveen Kumar', '6', '9360350441', '', 'naveenkum0441@gmail.com', '2002-01-09', 22, '2', '2', 'Rajasekar', 'Tailor', 16000.00, 2, 0.00, 18000.00, 'pakkam', 'pakkam', '2402280020', '1', '1', 'upload_files/candidate_tracker/11134287887_naveenkum0441@gmail.com (1)-2.pdf', NULL, '1', '2024-02-29', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-28 08:08:08', 104, '2024-02-29 02:42:25', 0, NULL, 1),
(17305, 'Mohammedramalan.m', '6', '9003166383', '', 'mohammedramalan22@gmail.com', '2000-12-12', 23, '2', '2', 'Mohamed mahboob', 'Business', 100000.00, 3, 0.00, 20000.00, 'no 10 Vallal Yusuf Nagar Mahalakshmi Nagar', 'No 10 Vallal Yusuf Nagar, Mahalakshmi Nagar', '2402280021', '29', '1', 'upload_files/candidate_tracker/69858080261_Mohammedramalan job profile for abroad.pdf', NULL, '1', '2024-03-02', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-28 08:27:43', 112, '2024-03-02 05:02:41', 0, NULL, 1),
(17306, 'Shiva Prakhash', '14', '6383064645', '8610528940', 'shivaprakhash123@gmail.com', '2000-09-28', 23, '3', '2', 'Saravanan', 'Electrical Engineer', 170000.00, 1, 0.00, 60000.00, 'Chennai', 'Chennai', '2402280022', '', '1', 'upload_files/candidate_tracker/33608842217_shiva.pdf', NULL, '1', '2024-02-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 09:06:54', 1, '2024-02-28 09:25:16', 0, NULL, 1),
(17307, 'Hrithik Sharaff', '4', '9025494953', '9176099117', 'Hrithiksharaff007@gmail.com', '2000-10-15', 23, '3', '2', 'Naveen Sharaff', 'Business', 25000.00, 1, 0.00, 21000.00, 'Chennai', 'Chennai', '2402280023', '', '1', 'upload_files/candidate_tracker/61481830268_ Hrithik.pdf', NULL, '1', '2024-02-28', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-28 09:20:07', 1, '2024-02-28 09:48:37', 0, NULL, 1),
(17308, '', '0', '9025488572', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402280024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-28 09:36:19', 0, NULL, 0, NULL, 1),
(17309, 'K PRABHAKAR', '6', '7094850686', '8778817968', 'prabhakarji07@gmail.com', '2000-05-10', 23, '2', '2', 'Karthikeyan', 'Fisherman', 100000.00, 2, 0.00, 18000.00, 'No62 perumal nagar Ponneri', 'No a/ bhajanai kovil street SPK pulicat', '2402280025', '29', '1', 'upload_files/candidate_tracker/82774836915_K.PRABHAKAR Resume 2022 (Recovered).pdf', NULL, '1', '2024-03-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-28 10:19:13', 112, '2024-03-02 06:29:02', 0, NULL, 1),
(17310, 'Nijamudeen.I', '6', '9790692689', '9597297655', 'nijamibrahimj@gmail.com', '1999-06-02', 24, '2', '2', 'Fathima. Ibrahim', 'Tailor', 72000.00, 1, 20000.00, 25000.00, '60/3 asalathamman Kovil Street pulicat ponneri', 'Pulicat', '2402280026', '29', '2', 'upload_files/candidate_tracker/68875968972_nijam resume @.pdf', NULL, '1', '2024-02-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-28 10:29:15', 112, '2024-03-02 06:30:16', 0, NULL, 1),
(17311, 'Mukesh. N', '6', '8825646729', '', 'mukeshnanz64@gmail.com', '2001-04-06', 22, '2', '2', 'NANDHA KUMAR. K', 'Printing business', 25000.00, 1, 21400.00, 25000.00, 'Tharamani, chennai', 'Tharamani, chennai', '2402290001', '1', '2', 'upload_files/candidate_tracker/67605235612_MUKESH.N RESUME.pdf', NULL, '1', '2024-02-29', 0, '', '4', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile communication Ok basic insurance knowledge he has kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2024-02-29 04:26:30', 112, '2024-02-29 04:21:01', 0, NULL, 1),
(17312, 'Ishwarya M', '6', '6383865391', '9566256063', 'ishumano26111997@gmail.com', '2000-08-11', 23, '2', '2', 'Father', 'Private company', 200000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2402290002', '1', '1', 'upload_files/candidate_tracker/97365024243_CV_2024022019125089.pdf', NULL, '1', '2024-02-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Performance and comminucation is good.she is expecting is 19k,but she is not have any experiance.kindly coordianate and provide 15k tc', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-02-29 05:24:02', 112, '2024-02-29 06:45:37', 0, NULL, 1),
(17313, 'Nivedha Roy c', '33', '6385448333', '', 'niveadharoy6@gmail.com', '2002-11-06', 21, '2', '2', 'Chandran A', 'Project analyst', 10000.00, 1, 10000.00, 20000.00, 'Dindigul', 'Chennai', '2402290003', '29', '2', 'upload_files/candidate_tracker/74325839731_Nivedha Roy - Resume pdf.docx', NULL, '1', '2024-03-02', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-29 05:36:28', 108, '2024-03-02 01:35:21', 0, NULL, 1),
(17314, 'Mohamed arshath', '14', '6382627476', '9638250296', 'arshathm88@gmail.com', '2001-02-20', 23, '6', '2', 'Ayub khan', 'Farmer', 10000.00, 1, 30000.00, 50000.00, 'Thoppurhurai', 'Chennai', '2402290004', '', '2', 'upload_files/candidate_tracker/25673423787_MohamedArshath.pdf', NULL, '1', '2024-02-29', 1, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-29 05:49:06', 112, '2024-03-19 09:46:33', 0, NULL, 1),
(17315, 'Naveen Kumar R', '6', '8790440573', '9788849522', 'naveenkumar97882@gmail.com', '2002-01-07', 22, '3', '2', 'Ramesh M', 'Farmer', 500000.00, 1, 15500.00, 20000.00, 'Kurangani Bodinayakanur -theni 625582', 'Chennai', '2402290005', '', '2', 'upload_files/candidate_tracker/20519366896_f9167f63-3de4-4031-8341-bbfa40ca51a4.pdf', NULL, '1', '2024-02-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-29 06:01:41', 1, '2024-02-29 06:05:56', 0, NULL, 1),
(17316, 'Nishanthi', '20', '8655865460', '7358553524', 'nishanthi.m735855@gmail.com', '1999-08-20', 24, '2', '2', 'Manivannan', 'Auto driver', 22000.00, 1, 18000.00, 22000.00, 'No : 18 thomaiappan street roypaettah Chennai -14', 'No : 18 Thomaiappan Street Roypaettah Chennai -14', '2402290006', '1', '2', 'upload_files/candidate_tracker/97686793195_Nishanthi Resume 2.pdf', NULL, '1', '2024-02-29', 30, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She had a exp in tpa insurance and also doing claim she work in a corporate health insurance she speaks good her last salary 15k take home so i decide she has 18K INHAND SALARY  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-02-29 06:15:36', 108, '2024-02-29 03:10:49', 0, NULL, 1),
(17317, 'Dineshkumar', '1', '7299389215', '7299751280', 'Sandydinesh390@gmail.com', '2000-06-23', 23, '2', '2', 'Bhuwaneshwari', 'House wife', 15000.00, 1, 25000.00, 25000.00, 'Chennai', 'Chennai', '2402290007', '31', '2', 'upload_files/candidate_tracker/79450767067_PDFGallery_20240228_112822.pdf', NULL, '1', '2024-02-29', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable For Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-29 06:16:58', 104, '2024-02-29 02:43:23', 0, NULL, 1),
(17318, 'Abinaya M', '6', '9786441372', '7358554338', 'abinayamoorthy04@gmail.com', '2003-07-04', 20, '2', '2', 'Moorthy', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Thiruvannamalai', 'Chennai', '2402290008', '1', '1', 'upload_files/candidate_tracker/25191297085_CV_2024012311414416.pdf', NULL, '1', '2024-02-29', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-02-29 06:17:58', 104, '2024-02-29 02:46:02', 0, NULL, 1),
(17319, 'Karthick. U', '22', '8610999715', '9841236015', 'manikarthick13@gmail.com', '2002-05-05', 21, '2', '2', 'Umapathy', 'Nope', 50000.00, 2, 0.00, 200000.00, 'Tambaram', 'Tambaram', '2402290009', '29', '1', 'upload_files/candidate_tracker/89311299367_Karthick (2).pdf', NULL, '1', '2024-03-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication And Apperance is not good,his sustain is  Doubt.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-02-29 06:41:18', 112, '2024-03-02 06:32:06', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17320, 'ragul', '3', '7092403191', '', 'raguldevid4@gmail.com', '2001-10-16', 22, '3', '2', 'muthusamy', 'mill laber', 100000.00, 2, 0.00, 25000.00, 'chennai', 'chennai', '2402290010', '', '2', 'upload_files/candidate_tracker/23547290436_EAadhaar_2040803414640120150921152733_10022024164351.pdf', NULL, '2', '2024-03-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-02-29 09:48:33', 1, '2024-02-29 09:57:43', 0, NULL, 1),
(17321, '', '0', '8056116317', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2402290011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-02-29 11:07:15', 0, NULL, 0, NULL, 1),
(17322, 'Karthikeyan N', '5', '9962538672', '', 'karthikvijay1704@gmail.com', '1995-04-17', 28, '2', '2', 'N.Natarajan', 'Superintendent', 80000.00, 1, 2.15, 3.00, 'Ambattur', 'Ambattur', '2403020001', '1', '2', 'upload_files/candidate_tracker/30522438892_November 23 Karthikeyan Resume.pdf', NULL, '1', '2024-03-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-02 04:55:50', 108, '2024-03-02 06:34:20', 0, NULL, 1),
(17323, 'Jagadeesan panneerselvam', '14', '6382151139', '7558118954', 'jagdishmech1998@gmail.com', '1998-04-13', 25, '6', '2', 'Panneerselvam', 'Construction', 40000.00, 1, 0.00, 15000.00, 'Karaikudi', 'Mogapair east', '2403020002', '', '1', 'upload_files/candidate_tracker/29642222927_Jagadeesan-3.pdf', NULL, '1', '2024-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-02 05:00:32', 1, '2024-03-02 05:11:53', 0, NULL, 1),
(17324, 'Yugesh', '14', '7358279434', '9677010936', 'yugesh7hills@gmail.com', '1999-09-17', 24, '6', '2', 'Saraswathi', 'Tailor', 30000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2403020003', '', '1', 'upload_files/candidate_tracker/41575465220_yugesh resume-6.pdf', NULL, '1', '2024-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-02 05:00:50', 1, '2024-03-02 05:06:16', 0, NULL, 1),
(17325, 'KUMARESH R', '31', '8438655030', '', 'nallammalkumaresh@gmail.com', '2003-06-03', 20, '6', '2', 'NALLAMMAL', 'House wife', 12000.00, 3, 0.00, 15000.00, 'Salem', 'Chennai', '2403020004', '', '1', 'upload_files/candidate_tracker/7496619348_Black Modern Chief Exclusive Office Resume.pdf', NULL, '1', '2024-03-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-02 05:01:41', 1, '2024-03-02 05:08:16', 0, NULL, 1),
(17326, 'Roshini.G', '6', '7358569399', '9710516524', 'roshinid20af048@gmail.com', '2002-12-22', 21, '2', '2', 'Gnana prakash.R', 'Auto driver', 25000.00, 1, 0.00, 20000.00, 'No:17/9 c.g.colony 2nd street royapuram chennai-13', 'Na:17/9 c.g.colony 2nd street royapuram chennai-13', '2403020005', '29', '1', 'upload_files/candidate_tracker/17428881351_Resume_Job resume_Format7.pdf', NULL, '1', '2024-03-04', 0, '', '3', '59', '2024-03-06', 164208.00, '', '3', '2024-03-08', '2', 'Selected fpr Gopi Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-02 05:11:05', 60, '2024-03-22 11:28:42', 0, NULL, 1),
(17327, 'S GNANA GOKUL PRASATH', '5', '6379998037', '9597692227', 'gokulprasa69@gmail.com', '1998-04-04', 25, '2', '2', 'Sayee saravanan', 'TNEB', 200000.00, 1, 60000.00, 35000.00, 'iya', 'iyappa nagar phase-1 pagalpatty salem', '2403020006', '1', '2', 'upload_files/candidate_tracker/86246063911_Gnanagokul Cv.pdf', NULL, '1', '2024-03-02', 0, '', '3', '59', '2024-03-05', 204000.00, '', NULL, '2025-11-30', '1', 'Selected for Operation Renewal Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-03-02 05:18:11', 60, '2024-03-04 07:14:34', 0, NULL, 1),
(17328, 'Umar jaffar hussian s', '14', '7871485567', '', 'umarjaffarhussian@gmail.com', '2009-03-02', 0, '3', '2', 'Samsul Arif', 'Shoes shop', 15000.00, 1, 0.00, 10000.00, 'Virudhunagar', 'Virudhunagar', '2403020007', '', '1', 'upload_files/candidate_tracker/65715717528_Umar Jaffar Hussain S.pdf', NULL, '1', '2024-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-02 05:23:25', 1, '2024-03-02 05:29:56', 0, NULL, 1),
(17329, 'Jagadeesh.m', '6', '7604831480', '', 'sesumagimai96@gmail.com', '1994-01-16', 30, '2', '2', 'Meena', 'Milk agents', 20000.00, 100000, 22000.00, 5.00, '10/33 gangai Amma Kovil street lakshmipur', 'Adyar', '2403020008', '1', '2', 'upload_files/candidate_tracker/39883448495_JAGADEESH M-2-1.docx', NULL, '1', '2024-03-02', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-02 05:28:55', 108, '2024-03-02 06:35:09', 0, NULL, 1),
(17330, 'Shajidha', '6', '9360259834', '9790920135', 'shajidha2003@gmail.com', '2003-03-19', 20, '1', '2', 'S.mujiba begam', 'Accounting manager', 240000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2403020009', '', '1', 'upload_files/candidate_tracker/98554336834_SHAJIDHA RESUME UPDATED.pdf', NULL, '1', '2024-03-02', 0, '77811', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not selected ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-02 05:30:43', 112, '2024-03-02 02:57:09', 0, NULL, 1),
(17331, 'Janani', '14', '9962588411', '', 'Jananismcse@gmail.com', '2000-11-30', 23, '6', '2', 'santhosh kumar', 'supervisor', 40000.00, 1, 0.00, 2.00, 'kodungaiyur', 'kodungaiyur', '2403020010', '', '1', 'upload_files/candidate_tracker/80879429076_1 (4) 2.pdf', NULL, '1', '2024-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-02 06:11:53', 1, '2024-03-02 06:17:58', 0, NULL, 1),
(17332, 'mahesh g', '5', '9159353335', '9944133577', 'maheshmaxx1205@gmail.com', '2000-05-12', 23, '2', '2', 'gothandan g', 'na', 15000.00, 1, 0.00, 20000.00, 'chengalpattu', 'chengapattu', '2403020011', '1', '1', 'upload_files/candidate_tracker/88910428458_Mahesh G.pdf', NULL, '1', '2024-03-02', 0, '', '3', '59', '2024-03-13', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Charles Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-03-02 06:36:38', 60, '2024-03-12 07:47:27', 0, NULL, 1),
(17333, 'Kishore Raj', '6', '7358544315', '', 'kishoreraj.2709@gmail.com', '2001-09-27', 22, '2', '2', 'Murugan D', 'Security guard', 20000.00, 1, 20000.00, 23000.00, 'Chennai', 'Chennai', '2403020012', '29', '2', 'upload_files/candidate_tracker/3034749524_Kishore Resume.pdf', NULL, '1', '2024-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-02 07:42:29', 1, '2024-03-02 07:55:05', 0, NULL, 1),
(17334, 'Kandhakumar R', '5', '9789698071', '8825979598', 'kandhakumar6996@gmail.com', '1996-09-07', 27, '2', '2', 'Ramakrishnan pK', 'Electrician', 30000.00, 0, 0.00, 20000.00, 'Rajapalayam Virudhunagar District', 'Tambaram Chennai', '2403020013', '1', '1', 'upload_files/candidate_tracker/32018481629_Kandha resume a.pdf', NULL, '1', '2024-03-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-02 09:07:28', 108, '2024-03-02 06:34:46', 0, NULL, 1),
(17335, 'S ramasubramanian', '6', '6382107121', '9677082718', 'ramasubramanian5197@gmail.com', '1997-01-05', 27, '2', '2', 'Suresh raja', 'No', 30000.00, 0, 0.00, 20000.00, 'Rajapalayam', 'Padi,ambattur', '2403020014', '1', '1', 'upload_files/candidate_tracker/99351484854_RESUME 2.pdf', NULL, '1', '2024-03-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-02 09:07:53', 108, '2024-03-02 06:34:55', 0, NULL, 1),
(17336, '', '0', '9884896217', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403020015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-02 01:12:51', 0, NULL, 0, NULL, 1),
(17337, 'Priya Dharshini T', '6', '9884895217', '7550128814', 'pp1615140@gmail.com', '2003-05-29', 20, '2', '2', 'S.Thangam', 'Thinker', 96000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2403020016', '1', '1', 'upload_files/candidate_tracker/5324469565_priya dharshini T resume.docx.docx', NULL, '1', '2024-03-04', 0, '', '3', '59', '2024-03-05', 164208.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Tem', '5', '2', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-02 01:13:19', 60, '2024-03-05 09:55:05', 0, NULL, 1),
(17338, '', '0', '7299118286', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403020017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-02 01:50:24', 0, NULL, 0, NULL, 1),
(17339, 'Harne sarulatha', '6', '9994658895', '6380188279', 'harnesarulatha2@gmail.com', '2002-01-28', 22, '2', '2', 'V.M.Jaishankher', 'Business', 40000.00, 1, 19000.00, 25000.00, 'Plotno 72, kamarajar colony, elaiya st, korrukupet', 'Plot No 72, KamarajarColony, Elaiya St, Korrukupet', '2403030001', '1', '2', 'upload_files/candidate_tracker/71851180102_RESUME - harne.pdf', NULL, '1', '2024-03-04', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-03-03 04:17:23', 112, '2024-03-04 12:36:48', 0, NULL, 1),
(17340, '', '0', '9790920135', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403030002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-03 05:23:33', 0, NULL, 0, NULL, 1),
(17341, '', '0', '8754542794', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403030003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-03 10:10:43', 0, NULL, 0, NULL, 1),
(17342, 'sreeram v r', '14', '8940090653', '', 'sree89400@gmail.com', '1997-03-17', 26, '3', '2', 'vijayan s', 'carpenter', 30000.00, 1, 12000.00, 18000.00, 'arumanai kanniyakumari district', 'arumanai kanniyakumari district', '2403040001', '', '2', 'upload_files/candidate_tracker/87945242328_Cv - Sreeram Updated.pdf', NULL, '1', '2024-03-04', 5, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-04 04:38:59', 104, '2024-03-04 05:52:04', 0, NULL, 1),
(17343, 'Saravanan', '5', '9094936114', '', 'saravanakutty782@gmail.com', '1998-10-05', 25, '2', '2', 'Jaishankar', 'Gas supplier', 15000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2403040002', '1', '2', 'upload_files/candidate_tracker/97719233579_DOC-20240229-WA0006..pdf', NULL, '1', '2024-03-04', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate performance and apperance is too bad,not fit for our job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-04 04:51:56', 108, '2024-03-04 05:48:52', 0, NULL, 1),
(17344, 'Gowtham', '14', '7010405192', '8903325131', 'kumargwm@gmail.com', '2001-07-21', 22, '3', '2', 'subbu lakshmi', 'ailor', 25000.00, 1, 2.40, 5.00, 'dharapuram tirupur', 'navalur chennai', '2403040003', '', '2', 'upload_files/candidate_tracker/49804141983_Gowtham_resume.pdf', NULL, '1', '2024-03-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-04 05:17:32', 104, '2024-03-04 05:52:19', 0, NULL, 1),
(17345, 'NAVIN KUMAR M', '6', '9087672874', '', 'navinkumarmoorthy31@gmail.com', '2001-07-29', 22, '1', '2', 'MOORTHY A', 'Mason', 15000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chennai', '2403040004', '', '1', 'upload_files/candidate_tracker/96078047232_Navin Kumar Resume (1).pdf', NULL, '1', '2024-03-04', 0, '0000', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-04 05:26:27', 104, '2024-03-04 05:54:46', 0, NULL, 1),
(17346, 'Raja Ganapathy', '14', '9360261781', '', 'rajaganapathy032@gmail.com', '1999-01-20', 25, '3', '2', 'Dhanarasu', 'Farmer', 20000.00, 2, 0.00, 300000.00, 'Neyveli', 'T.nagar', '2403040005', '', '1', 'upload_files/candidate_tracker/73844168056_Raja Ganapathy-2.pdf', NULL, '1', '2024-03-04', 0, '', '3', '', '2024-03-04', 0.00, '', '1', '1970-01-01', '1', '', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', 'Interviewed by Gokul and Sathish and selected for Flutter Profile', '', '', '', NULL, NULL, NULL, 1, '2024-03-04 05:26:45', 60, '2024-03-26 10:10:56', 0, NULL, 1),
(17347, 'Yamini', '6', '9080787785', '8939059705', 'yaminidhasaradhan@gmail.com', '1997-11-02', 26, '2', '2', 'Dhasaradhan', 'Daily wages', 250000.00, 1, 0.00, 20000.00, '12/25 Raja naickar st Teynampet ch-18', 'Teynampet', '2403040006', '1', '2', 'upload_files/candidate_tracker/35428028831_D.YAMINI - RESUME - new.pdf', NULL, '1', '2024-03-04', 3, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-04 05:27:11', 104, '2024-03-04 11:31:08', 0, NULL, 1),
(17348, 'Umakanth M', '23', '8428756267', '', 'ukmaran2002@gmail.com', '2002-07-06', 21, '3', '2', 'parents', 'tailor', 10000.00, 1, 0.00, 3.00, 'Vellore', 'Vellore', '2403040007', '', '1', 'upload_files/candidate_tracker/44879912565_Umakanth.pdf', NULL, '1', '2024-03-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-04 05:37:55', 1, '2024-03-06 01:03:15', 0, NULL, 1),
(17349, 'Sreevedha V', '11', '6385132226', '', 'sreevedha0203@gmail.co', '2002-07-02', 21, '3', '2', 'Vadivelu M', 'Metro water', 600000.00, 0, 0.00, 10000.00, 'No, 54 Loco works ,1st Lane, Agaram, Kolathur- 82', 'No,44 rajarajeshwari nagar, 6th kolathur, 8', '2403040008', '', '1', 'upload_files/candidate_tracker/95602919767_Sreevedha.pdf', NULL, '1', '2024-03-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-04 06:10:09', 104, '2024-03-04 05:49:26', 0, NULL, 1),
(17350, 'Rekha M', '11', '8525896435', '9003923574', 'mrekha0302@gmail.com', '2002-03-30', 21, '3', '2', 'Mohan D', 'Farmer', 15000.00, 1, 0.00, 5000.00, 'Vandavasi', 'Vandavasi', '2403040009', '', '1', 'upload_files/candidate_tracker/74888644758_RESUME REKHA. M.docx', NULL, '1', '2024-03-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-04 06:22:03', 104, '2024-03-04 05:49:46', 0, NULL, 1),
(17351, 'Suregha Mary', '11', '7448382020', '', 'sureghasharon@gmail.com', '2002-03-17', 21, '3', '2', 'Lawrence', 'Painter supervisor', 96000.00, 1, 0.00, 100000.00, 'No. 411,12th cross st, t. P. Chatram chennai 30', 'No. 411,12th Cross St, T. P. Chatram Chennai 30', '2403040010', '', '1', 'upload_files/candidate_tracker/39562993226_suregha resume.pdf', NULL, '1', '2024-03-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-04 06:45:43', 104, '2024-03-04 05:50:38', 0, NULL, 1),
(17352, 'Aarti Manikandan', '6', '9003954103', '9940032372', 'aaruvarun25@gmail.com', '1978-09-19', 45, '2', '1', 'S. Manikandan', 'Professional Photographer', 25000.00, 2, 20000.00, 25000.00, 'Mylapore', 'Mylapore', '2403040011', '29', '2', 'upload_files/candidate_tracker/3884990760_AARTI MANIKANDAN.docx', NULL, '1', '2024-03-05', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-04 10:45:43', 1, '2024-03-04 10:57:19', 0, NULL, 1),
(17353, '', '0', '8019503394', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403040012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-04 12:50:46', 0, NULL, 0, NULL, 1),
(17354, '', '0', '9894497346', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403040013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-04 12:53:38', 0, NULL, 0, NULL, 1),
(17355, 'Suveena', '4', '8939186618', '9383366618', 'marisuveena@gmail.com', '2003-02-08', 21, '2', '2', 'Mariselvam', 'Accountant', 20000.00, 1, 0.00, 17000.00, 'No.28,T.H.Road,5th Lane, Tondiarpet, Chennai -81', 'No.28,T.H.Road,5th Lane, Tondiarpet, Chennai -81', '2403040014', '29', '1', 'upload_files/candidate_tracker/2666922618_Suveena M (1).docx', NULL, '1', '2024-03-05', 0, '', '3', '59', '2024-03-11', 180000.00, '', '3', '2024-03-12', '2', 'Selected for Mutual Fund Profile Relationship Executive Can be trained in our roles Communication Good', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '4', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-04 02:16:17', 112, '2024-06-07 04:32:08', 0, NULL, 1),
(17356, '', '0', '9360034638', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403040015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-04 04:43:11', 0, NULL, 0, NULL, 1),
(17357, 'Keerthiga G', '6', '9444602936', '7338791094', 'gkeerthiga65@gmail.com', '2002-08-05', 21, '2', '2', 'Jayalakshmi', 'House keeping', 11000.00, 0, 0.00, 15000.00, '12/31 thirukkumara puram 1 St Arumbakkam chennai', 'Arumbakkam (MMDA colony )', '2403040016', '1', '1', 'upload_files/candidate_tracker/59292358015_Keerthiga (1).pdf', NULL, '1', '2024-03-05', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-03-04 11:26:19', 112, '2024-03-05 03:36:33', 0, NULL, 1),
(17358, 'U.Preethi', '20', '9790841691', '', 'Preethiuthayakumarpc@gmail.com', '2001-04-06', 22, '2', '2', 'Ananthi', 'B com', 15000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2403050001', '29', '2', 'upload_files/candidate_tracker/46210695598_Preethi Resume.pdf', NULL, '1', '2024-03-05', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-05 03:25:04', 1, '2024-03-05 03:36:27', 0, NULL, 1),
(17359, 'P.Naveen', '6', '9344519718', '9597440361', 'nvnpalani9@gmail.com', '2009-03-05', 0, '2', '2', 'Palanisamy', 'Farmer', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Vadapalani', '2403050002', '29', '1', 'upload_files/candidate_tracker/95438860121_FRONT-END-DEVELOPER(P.NAVEEN).pdf', NULL, '1', '2024-03-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-05 04:04:01', 112, '2024-03-05 04:16:55', 0, NULL, 1),
(17360, 'Monika R', '6', '7806817649', '9585113028', 'mmoni4835@gmail.com', '2002-05-12', 21, '2', '2', 'Rachakan', 'Formar', 10000.00, 2, 17000.00, 15000.00, 'Thiruvannamalai', 'Mugappar east', '2403050003', '1', '2', 'upload_files/candidate_tracker/29329863220_Resume Of Moni.pdf', NULL, '1', '2024-03-05', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-05 04:19:58', 112, '2024-03-05 04:07:41', 0, NULL, 1),
(17361, 'Abish p', '23', '6379345867', '', 'abish221361@gmail.com', '2003-01-08', 21, '3', '2', 'Philip P', 'Mason', 15000.00, 1, 0.00, 15000.00, 'Kanyakumari', 'Chennai', '2403050004', '', '1', 'upload_files/candidate_tracker/15348374409_Abish.pdf', NULL, '1', '2024-03-05', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-05 04:25:16', 112, '2024-03-05 04:10:25', 0, NULL, 1),
(17362, 'selvabharathy', '6', '8610100779', '', 'Panneerselvambharathy@gmail.com', '2009-03-05', 0, '2', '2', 'karpagam', 'nurse', 20000.00, 0, 0.00, 15.00, 'chennai', 'chennai', '2403050005', '1', '1', 'upload_files/candidate_tracker/65534524295_selvabharathy resume.pdf', NULL, '1', '2024-03-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performed well also she have good communication and her confidence level also nice. she is expecting 15k to 18k inhand but she is pure fresher will provide fresher cost only', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-03-05 04:59:30', 112, '2024-03-05 03:32:31', 0, NULL, 1),
(17363, 'Santhiya R', '13', '6380620735', '', 'santhiyasanthiya1410@gmail.com', '2002-10-14', 21, '3', '2', 'Ramasamy', 'Driver', 20000.00, 1, 0.00, 25000.00, 'Kumbakonam', 'Chennai', '2403050006', '', '1', 'upload_files/candidate_tracker/67633891792_Santhiya Resume N.Pdf -2.pdf', NULL, '1', '2024-03-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-05 04:59:57', 112, '2024-03-05 03:29:37', 0, NULL, 1),
(17364, 'Jijo joseph', '4', '9344756819', '', 'jijojoseph105@gmail.com', '1989-03-28', 34, '6', '1', 'Joseph pj', 'Father', 10000.00, 0, 0.00, 25000.00, 'Tenapeta', 'Chennai', '2403050007', '', '1', 'upload_files/candidate_tracker/26649619491_Jijo Joseph,edited resume.docx (1).pdf', NULL, '1', '2024-03-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for our roles career Gap Language barrier Malayalam native will not sustain and handle our work pressure', '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-05 05:02:50', 1, '2024-03-05 05:08:34', 0, NULL, 1),
(17365, 'Sathish Kumar J', '11', '7502726947', '', 'jsksathish0420@gmail.com', '2002-06-05', 21, '3', '2', 'Jagadeesan Geetha', 'Business', 20000.00, 1, 0.00, 15000.00, 'Vellore odugathur', 'Vellore odugathur', '2403050008', '', '1', 'upload_files/candidate_tracker/17092538012_SathishKumar.pdf', NULL, '1', '2024-03-05', 0, '', '3', '59', '2024-03-15', 10000.00, '', '', '1970-01-01', '2', 'intern for Mutual fund Unpaid intern  based on his performance should consider for Job', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-05 05:14:51', 112, '2024-03-05 03:32:59', 0, NULL, 1),
(17366, 'Bhuvanesh', '6', '9080199539', '', 'bhuvaneshr702@gmail.com', '2002-01-13', 22, '2', '2', 'RAM', 'Driver', 10000.00, 1, 0.00, 2.00, 'Thiruvottriyur Tollgate', 'Royapuram', '2403050009', '29', '1', 'upload_files/candidate_tracker/38616627345_Bhuvanesh .docx', NULL, '1', '2024-03-05', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-05 05:21:16', 112, '2024-03-05 04:11:32', 0, NULL, 1),
(17367, '', '0', '6379196808', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403050010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-05 05:24:56', 0, NULL, 0, NULL, 1),
(17368, 'Vaishnavi', '11', '6380408374', '', 'vaishnaviangusamy2001@gmail.com', '2001-05-26', 22, '6', '2', 'R.ANGUSAMY', 'Farmer', 6000.00, 2, 0.00, 15000.00, 'Trichy', 'Chennai,navalur', '2403050011', '', '1', 'upload_files/candidate_tracker/43510160959_v.Vaishnavi.A resume.pdf', NULL, '1', '2024-03-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Intern HR but no Communication  Have some references too will not sustain', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-05 06:31:04', 112, '2024-03-05 03:31:15', 0, NULL, 1),
(17369, 'Yokesh R', '6', '7904483967', '9791979174', 'yokiraja08@gmail.com', '1999-12-08', 24, '2', '2', 'Rajaram m', 'Flower decorater', 10000.00, 1, 253000.00, 250000.00, 'Salem', 'Salem', '2403050012', '1', '2', 'upload_files/candidate_tracker/43069253737_yokesh-R.pdf', NULL, '1', '2024-03-05', 0, '', '3', '59', '2024-03-11', 216000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team in consultant Role  Relationship Executive', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-03-05 06:42:36', 60, '2024-03-11 09:55:44', 0, NULL, 1),
(17370, 'suganthi', '11', '9629655299', '9092917619', 'suga1402@gmail.com', '2002-01-14', 22, '6', '2', 'm sasidharan', 'business', 30000.00, 1, 0.00, 5000.00, 'chennai', 'chennai', '2403050013', '', '1', 'upload_files/candidate_tracker/82238837575_RESUME.docx', NULL, '1', '2024-03-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-05 07:03:02', 112, '2024-03-05 03:29:10', 0, NULL, 1),
(17371, 'Roopavathy E', '14', '8939040885', '', 'roopavathy28@gmail.com', '2001-07-28', 22, '3', '1', 'Elumalai', 'Mason', 80000.00, 1, 20000.00, 30000.00, 'Chennai', 'Chennai', '2403050014', '', '2', 'upload_files/candidate_tracker/1873796780_Roopavathy experience resume.pdf', NULL, '1', '2024-03-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-05 09:05:49', 112, '2024-03-05 04:09:15', 0, NULL, 1),
(17372, 'Vaishnav.MT', '13', '9786689428', '8015212823', 'vaishnavmt0011@gmail.com', '2000-11-14', 23, '3', '2', 'Tamil Selvi', 'Tailor', 10000.00, 1, 0.00, 20000.00, 'Tirupur', 'Chennai', '2403050015', '', '1', 'upload_files/candidate_tracker/19833369226_VAISHNAV.MT cv.pdf', NULL, '1', '2024-03-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-05 09:33:27', 112, '2024-03-05 04:09:32', 0, NULL, 1),
(17373, '', '0', '9944732631', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403050016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-05 12:23:57', 0, NULL, 0, NULL, 1),
(17374, 'K.janani', '6', '7358462107', '', 'jananikishore08@gmail.com', '2000-01-08', 24, '2', '2', 'M.kishore kumar', 'Business', 20000.00, 0, 16000.00, 20000.00, 'Ambattur', 'Ambattur', '2403050017', '1', '2', 'upload_files/candidate_tracker/18029019958_CV_2023-08-25-065301.pdf', NULL, '1', '2024-03-06', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Performance And Communication is Not Good ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-05 12:30:26', 104, '2024-03-06 09:37:16', 0, NULL, 1),
(17375, 'meerarokhini s', '6', '6026290354', '', 'mirux2000@gmail.com', '2000-08-06', 23, '2', '2', 'sar', 'clerk', 25000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Chennai', '2403050018', '1', '1', 'upload_files/candidate_tracker/25088121629_Meera.pdf', NULL, '1', '2024-03-07', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-03-05 12:47:42', 112, '2024-03-07 11:50:18', 0, NULL, 1),
(17376, 'Afsana', '6', '8778200790', '9384641154', 'afsanaaf85@gmail.com', '2000-02-24', 24, '2', '2', 'Anver', 'B.com,MbA', 20000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2403050019', '29', '1', 'upload_files/candidate_tracker/14774637097_afsana.docx', NULL, '1', '2024-03-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Non-Voice process Career Gap will not sustain in our roles not suitable for our roles ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-05 01:19:07', 104, '2024-03-06 03:48:50', 0, NULL, 1),
(17377, 'Ajish Kumar', '14', '8122760575', '', 'inboxofajish@gmail.com', '1999-08-16', 24, '6', '2', 'latha', 'tailor', 20000.00, 1, 3.60, 5.50, 'chennai', 'Tirupur', '2403060001', '', '2', 'upload_files/candidate_tracker/45068259733_AjishKumarK.pdf', NULL, '1', '2024-03-06', 15, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-06 04:15:38', 104, '2024-03-06 04:46:20', 0, NULL, 1),
(17378, 'Mohammed faraaz', '6', '8111061306', '', 'Mohammedfaraaz225@gmail.com', '2009-03-06', 0, '2', '2', 'Asiyabanu', 'Business', 30000.00, 2, 18000.00, 22000.00, 'Periyamedu', 'Pesriyamedu', '2403060002', '30', '2', 'upload_files/candidate_tracker/78865734111_RESUME2-1.docx2024.docx', NULL, '1', '2024-03-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-06 04:39:28', 104, '2024-03-06 03:50:50', 0, NULL, 1),
(17379, 'Vignesh', '6', '9500511923', '', 'vignesh.muthu321@gmail.com', '2000-03-01', 24, '2', '2', 'Muthusamy', 'Telesales', 9000.00, 1, 15500.00, 20000.00, 'Chennai', 'Chennai', '2403060003', '29', '2', 'upload_files/candidate_tracker/79349453160_Vignesh-1.pdf', NULL, '1', '2024-03-06', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-06 04:40:14', 104, '2024-03-06 03:53:06', 0, NULL, 1),
(17380, 'R.Kavitha', '6', '6382915461', '9884925884', 'kavitharaj2409@gmail.com', '1996-09-24', 27, '2', '1', 'V.Rajini', 'Branding coordinator', 25000.00, 2, 180000.00, 250000.00, 'Chennai', 'Chennai', '2403060004', '1', '2', 'upload_files/candidate_tracker/15063583011_Resume Update.pdf', NULL, '1', '2024-03-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for Santhosh Team. Package to be decided by the HR as discused and Immed Joiner', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-06 05:13:21', 60, '2024-04-05 02:32:15', 0, NULL, 1),
(17381, 'KAVIN V', '14', '9500487450', '', 'kavikavin6602@gmail.com', '2002-06-06', 21, '6', '2', 'Varutharaj P', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Namakkal', 'Chennai', '2403060005', '', '1', 'upload_files/candidate_tracker/2794586478_KAVIN V_RESUME.pdf', NULL, '1', '2024-03-06', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-06 05:18:44', 104, '2024-03-06 03:56:10', 0, NULL, 1),
(17382, 'Saranya', '13', '9361809959', '9047392377', 'saranyavasu608@gmail.com', '2001-07-19', 22, '3', '2', 'Vasu S', 'Driver', 25000.00, 1, 0.00, 20000.00, 'Vellore', 'Chennai', '2403060006', '', '1', 'upload_files/candidate_tracker/58149431980_saranyavasu.pdf', NULL, '1', '2024-03-06', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-06 05:36:26', 104, '2024-03-06 03:56:23', 0, NULL, 1),
(17383, 'bapan gorai', '13', '9094885684', '', 'bapanraina4747@gmail.com', '1999-01-07', 25, '3', '2', 'santhosh', 'security', 25000.00, 0, 0.00, 300000.00, 'chennai', 'chennai', '2403060007', '', '1', 'upload_files/candidate_tracker/84568600696_Bapan.pdf', NULL, '1', '2024-03-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-06 05:36:29', 104, '2024-03-06 03:56:38', 0, NULL, 1),
(17384, 'Ramya Subash', '13', '8754914833', '6380627268', 'ramyaramya1774@gmail.com', '2001-06-29', 22, '3', '2', 'Subash', 'Stationary shop', 15000.00, 1, 0.00, 20000.00, 'Vriddhachalam', 'Chennai', '2403060008', '', '1', 'upload_files/candidate_tracker/26120590540_ramya.pdf', NULL, '1', '2024-03-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-06 05:38:17', 104, '2024-03-06 03:57:51', 0, NULL, 1),
(17385, 'Thirupurasundari', '5', '9087438798', '9789454350', 'mthiripurasundari1818@gmail.com', '1997-04-06', 26, '2', '1', 'Vasanth', 'technician TI company', 250000.00, 0, 280000.00, 300000.00, 'thiruninravur', 'chennai', '2403060009', '1', '2', 'upload_files/candidate_tracker/17754146467_Photo to PDF_2023-12-28_20-04-48.pdf', NULL, '1', '2024-03-06', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Attended', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-06 05:55:15', 108, '2024-03-06 03:55:56', 0, NULL, 1),
(17386, 'Aasha', '13', '7538805032', '', 'aasharamalingam02@gmail.com', '2002-04-02', 21, '3', '2', 'Ramalingam', 'Farmer', 17000.00, 2, 0.00, 15000.00, 'Virudhachalam', 'Chennai', '2403060010', '', '1', 'upload_files/candidate_tracker/6074279639_Aasha Resume-1.docx', NULL, '1', '2024-03-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-06 06:19:49', 104, '2024-03-06 03:58:10', 0, NULL, 1),
(17387, 'Bapan Gorai', '13', '9094885684', '', 'bapanraina4747@gmail.com', '1999-01-07', 25, '3', '2', 'Santhosh', 'Security', 250000.00, 0, 0.00, 300000.00, 'chennai', 'chennai', '2403060011', '', '1', 'upload_files/candidate_tracker/39653635300_BAPAN.pdf', NULL, '1', '2024-03-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '1', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 112, '2024-03-06 12:24:47', 104, '2024-03-06 03:58:27', 0, NULL, 1),
(17388, 'aravindan j', '23', '8870740094', '7200089495', 'arj.7234@gmail.com', '2000-07-28', 23, '3', '2', 'suyambu kani k', 'buiseness', 80000.00, 0, 0.00, 18000.00, 'nagercoil', 'chennai', '2403060012', '', '1', 'upload_files/candidate_tracker/56486448807_Aravindan_J_! (1).pdf', NULL, '1', '2024-03-06', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-06 07:20:25', 104, '2024-03-06 04:46:04', 0, NULL, 1),
(17389, 'Rishi K', '23', '9943490302', '', 'rishi.uiuxdesigner@gmail.com', '1998-04-12', 25, '3', '2', 'Kettikaran T', 'Farmer', 15000.00, 2, 0.00, 15000.00, '20/22 a pound Street sivagangai', '20/22 A Pound Street Sivagangai', '2403060013', '', '1', 'upload_files/candidate_tracker/44168858153_rishi kettikaran ui designe 1.pdf', NULL, '1', '2024-03-06', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-06 07:44:25', 112, '2024-03-06 04:53:09', 0, NULL, 1),
(17390, 'Arjun P', '14', '6382834425', '', 'arjunpaulsince1999@gmail.com', '1999-05-26', 24, '6', '2', 'Paulraj', 'Business', 30000.00, 1, 1.44, 2.16, 'Madurai', 'Madurai', '2403060014', '', '2', 'upload_files/candidate_tracker/49045677230_Arjun-P-Resume-1.pdf', NULL, '1', '2024-03-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-06 08:21:08', 104, '2024-03-06 04:02:24', 0, NULL, 1),
(17391, 'VIGNESH S', '13', '7904748859', '', 'vickytony1998@gmail.com', '1998-06-01', 25, '3', '2', 'SANMUGAM', 'Tea shop', 50000.00, 4, 20000.00, 25000.00, 'Trichy', 'Trichy', '2403060015', '', '2', 'upload_files/candidate_tracker/36648979277_New Document(5) 19-Jul-2023 14-59-19.pdf', NULL, '1', '2024-03-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-06 08:28:19', 112, '2024-03-11 03:30:51', 0, NULL, 1),
(17392, '', '0', '7338891753', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403060016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-06 10:09:45', 0, NULL, 0, NULL, 1),
(17393, 'Keerthana Jagannathan', '6', '7305492408', '7305935630', 'keerthanajagannathan14@gmail.com', '2001-05-14', 22, '2', '2', 'R.Jagannathan (parent)', 'Lift spare manufacturers', 60000.00, 2, 25000.00, 350000.00, 'CHENNAI', 'CHENNAI', '2403070001', '29', '2', 'upload_files/candidate_tracker/67397737605_KEERTHANA.J (1).pdf', NULL, '1', '2024-03-07', 0, '', '7', '59', NULL, 0.00, '', '0', NULL, '2', 'Selected ', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-07 04:51:34', 1, '2024-03-07 05:10:11', 0, NULL, 1),
(17394, 'Nicky Hoshaiah V', '6', '9092341719', '', 'stylzzn@gmail.com', '2001-04-07', 22, '2', '2', 'Victor Mathews', 'Front Office Manager', 35000.00, 1, 18000.00, 23000.00, 'Retteri', 'Retteri', '2403070002', '29', '2', 'upload_files/candidate_tracker/2484458599_Nicky Hoshaiah.pdf', NULL, '1', '2024-03-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-07 04:54:19', 112, '2024-03-07 03:45:35', 0, NULL, 1),
(17395, 'AKASH.M', '14', '9360186520', '', 'akashfivefortyseven@gmail.com', '2002-09-17', 21, '6', '2', 'Munuswamy.M', 'Courier staff', 15000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2403070003', '', '1', 'upload_files/candidate_tracker/87306415138_akash.pdf', NULL, '1', '2024-03-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-07 05:08:58', 112, '2024-03-07 12:16:47', 0, NULL, 1),
(17396, 'Afrin Sulaiha', '11', '9715778665', '', 'afrinsulai24@gmail.com', '2001-02-24', 23, '6', '2', 'Mohamed Abdul Nazar', 'Business', 75000.00, 2, 0.00, 300000.00, '3/173,south Street Puraiyoor,Thoothukudi district', '3/614, 4th st, thiruvalluvar nagar,Medavakkam', '2403070004', '', '1', 'upload_files/candidate_tracker/1175252465_Copy of Afrin Resume_20240127_141855_0000_compressed.pdf', NULL, '1', '2024-03-07', 0, '', '3', '59', '2024-07-16', 156000.00, '', '5', '1970-01-01', '1', 'Completed the internship and hired for the employment', '6', '1', '1', '1', '8', '', '2', '2024-03-08', '2', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-03-07 05:16:50', 60, '2024-07-16 07:05:56', 0, NULL, 1),
(17397, 'Franciska Nehomi', '4', '9500489504', '', 'rajamanickam.1014@gmail.com', '1997-10-01', 26, '2', '1', 'Franciska Nehomi vignesh', 'I am not working', 14000.00, 2, 0.00, 13000.00, 'Mathur', 'Mathur', '2403070005', '1', '1', 'upload_files/candidate_tracker/45134539995_franciska profile.docx', NULL, '3', '2024-03-07', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-07 05:35:49', 108, '2024-03-07 11:47:23', 0, NULL, 1),
(17398, 'Reshma mary', '4', '9629030998', '', 'Reshmamary308@gmail.com', '1998-04-12', 25, '2', '1', 'Surya', 'Dailywages', 25000.00, 1, 0.00, 13000.00, 'Mathur', 'Mathur', '2403070006', '1', '1', 'upload_files/candidate_tracker/29366149253_reshma.pdf', NULL, '1', '2024-03-07', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-07 05:35:58', 108, '2024-03-07 11:46:28', 0, NULL, 1),
(17399, 'Sowmiya S', '14', '9003272906', '8883346048', 'sowmiyasekar1507@gmail.com', '2001-07-15', 22, '3', '2', 'Sekar S', 'Building constructor', 20000.00, 1, 0.00, 15000.00, 'No.7,Mandhaveli 1st street, Madhavaram,Chennai-60', 'No.7,Mandhaveli 1st Street, Madhavaram,Chennai-60', '2403070007', '', '1', 'upload_files/candidate_tracker/79626325926_Sowmiya Resume-1.pdf', NULL, '1', '2024-03-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-07 05:39:27', 112, '2024-03-07 03:43:37', 0, NULL, 1),
(17400, 'R SARAVANAKUMAR', '14', '8098495655', '', 'saravanakumarvk8@gmail.com', '2003-07-26', 20, '3', '2', 'V Ravi', 'electrician', 15000.00, 2, 0.00, 10000.00, 'Kanyakumari', 'Medavakkam', '2403070008', '', '1', 'upload_files/candidate_tracker/10533570550_SARAVANAKUMAR CV 2 .pdf', NULL, '1', '2024-03-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-07 05:41:04', 112, '2024-03-07 03:43:50', 0, NULL, 1),
(17401, 'Visali', '23', '6380549862', '', 'visaliparthi14@gmail.com', '2000-02-14', 24, '3', '2', 'Kanchana', 'House wife', 15000.00, 1, 130000.00, 180000.00, 'Avadi', 'Avadi', '2403070009', '', '2', 'upload_files/candidate_tracker/69616203039_visali-1.pdf', NULL, '1', '2024-03-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-07 05:53:50', 1, '2024-03-07 06:01:05', 0, NULL, 1),
(17402, 'Mohamed Bharagath', '14', '9363559704', '9514786166', 'mohamedbhargath786@gmail.com', '1999-11-03', 24, '6', '2', 'Sikkandhar Basha', 'Tailor', 25000.00, 2, 18000.00, 23000.00, 'Puducherry', 'Puducherry', '2403070010', '', '2', 'upload_files/candidate_tracker/72284337141_Bharagath CV-compressed (1).pdf', NULL, '1', '2024-03-07', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-07 06:01:57', 1, '2024-03-07 06:18:32', 0, NULL, 1),
(17403, 'Sreehariharan', '23', '8248009322', '', 'Sreehariselvam44@gmail.com', '2002-06-04', 21, '3', '2', 'Selvam', 'Fabricator', 50000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2403070011', '', '2', 'upload_files/candidate_tracker/81998992166_sreehari.pdf', NULL, '1', '2024-03-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-07 06:11:25', 1, '2024-03-07 06:44:44', 0, NULL, 1),
(17404, 'Rizwan M', '14', '6369854733', '9342758558', 'rizwan.ms004@gmail.com', '2003-05-04', 20, '6', '2', 'Mobeen basha', 'Driver', 50000.00, 0, 0.00, 20000.00, '4/5,syed Hussain Street gingee 604202', '4/5,syed Hussain Street gingee 604202', '2403070012', '', '1', 'upload_files/candidate_tracker/79854395172_Rizwan M.pdf', NULL, '1', '2024-03-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-07 07:11:13', 112, '2024-03-07 03:44:25', 0, NULL, 1),
(17405, 'Ajithkumar C', '14', '7550166624', '9042732840', 'ajithkumarak1427@gmail.com', '2002-01-14', 22, '6', '2', 'Chandra Sekar G', 'Welder', 20000.00, 1, 0.00, 20000.00, 'No 2 Manimegalai street, pallikaranai, Chennai', 'No 2 Manimegalai street, pallikaranai, Chennai', '2403070013', '', '1', 'upload_files/candidate_tracker/63661682009_Ajithkumar updated CV.pdf', NULL, '1', '2024-03-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-07 07:11:21', 112, '2024-03-07 03:44:37', 0, NULL, 1),
(17406, 'DeiveegaDhanaRoshini A', '14', '9384612682', '', 'roshinidoss0502@gmail.com', '2002-02-05', 22, '6', '2', 'Arokiadoss', 'Fabrication Contractor', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2403070014', '', '1', 'upload_files/candidate_tracker/76983057207_Rosh CV.pdf', NULL, '1', '2024-03-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-07 07:11:45', 112, '2024-03-07 03:42:47', 0, NULL, 1),
(17407, 'Giridharan', '5', '9962713351', '', 'giridharan367@gmail.com', '1993-06-09', 30, '2', '2', 'Rajeswari B', 'Home maker', 300000.00, 1, 2.80, 3.00, 'Chennai', 'Chennai', '2403070015', '1', '2', 'upload_files/candidate_tracker/37527742771_Giridharan-4.pdf', NULL, '1', '2024-03-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Customer Support but sustainability Issue will not handle our sales calls', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-07 09:20:06', 112, '2024-03-07 04:36:51', 0, NULL, 1),
(17408, 'Hirthika', '4', '6379050776', '9551921767', 'hirthika888@gmail.com', '2001-07-20', 22, '6', '2', 'Ramesh', 'Marketing Manager', 17000.00, 0, 23500.00, 30000.00, 'Chennai', 'Chennai', '2403070016', '', '2', 'upload_files/candidate_tracker/60787701716_HIRT.New1.pdf', NULL, '1', '2024-03-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-07 01:38:13', 1, '2024-03-07 01:41:51', 0, NULL, 1),
(17409, 'Hema Malini', '11', '7397580247', '', 'shemamalini03@gmail.com', '2003-01-19', 21, '2', '2', 'Subramani', 'Cooli', 10000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2403070017', '1', '1', 'upload_files/candidate_tracker/22736757070_hema.pdf', NULL, '1', '2024-03-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-07 01:49:23', 104, '2024-03-08 04:28:03', 0, NULL, 1),
(17410, 'Nareshkumar v', '4', '8072799279', '9884178526', 'nk139134@gmail.com', '1993-05-11', 30, '2', '2', 'No more', 'Nil', 30000.00, 1, 20000.00, 30000.00, 'Chennai porur', 'Chennai porur', '2403070018', '29', '2', 'upload_files/candidate_tracker/25903274912_V. Naresh Kumar 29.pdf', NULL, '1', '2024-03-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our sales Roles Communication Gap will not sustain and handle our work pressure', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-07 02:22:36', 1, '2024-03-08 03:38:46', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17411, 'NITHIYA SREE V S', '14', '9750799248', '', 'nithiyasreevs@gmail.com', '2001-07-03', 22, '3', '2', 'VIJAYAKUMAR K S', 'Retd MTS in postoffice', 400000.00, 1, 0.00, 20000.00, 'NO 12D, KISHTAPPA NAGAR ORIKKAI KANCHIPURAM', 'NO:12D, KISHTAPPA NAGAR ORIKKAI KANCHIPURAM', '2403080001', '', '1', 'upload_files/candidate_tracker/71487273592_NITHIYASREE V S .pdf', NULL, '1', '2024-03-08', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 03:43:30', 112, '2024-03-08 04:10:12', 0, NULL, 1),
(17412, 'Veeramani', '14', '8526438047', '8248961401', 'maniveera016@gmail.com', '1996-04-16', 27, '3', '2', 'Durai', 'Agriculture', 10000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Coimbatore', '2403080002', '', '1', 'upload_files/candidate_tracker/45183782490_veeramani.pdf', NULL, '1', '2024-03-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 03:56:24', 104, '2024-03-08 04:27:39', 0, NULL, 1),
(17413, 'Manoj', '14', '9943657195', '', 'manojofficial471@gmail.com', '2001-04-05', 22, '3', '2', 'Janaki raman', 'Farmer', 30000.00, 1, 0.00, 20000.00, 'No 62 sivan Kovil st , Thiruvallur', 'No 62 Sivan Kovil st , Thiruvallur', '2403080003', '', '1', 'upload_files/candidate_tracker/64203446174_Manoj_Resume.pdf', NULL, '1', '2024-03-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 04:19:06', 112, '2024-03-08 04:08:53', 0, NULL, 1),
(17414, 'Gopikrishnan G', '14', '7540043343', '', 'gopig6581@gmail.com', '2003-05-08', 20, '3', '2', 'Govindharaj', 'Coolie', 25000.00, 1, 0.00, 20000.00, 'Srivilliputthur', 'Srivilliputthur', '2403080004', '', '1', 'upload_files/candidate_tracker/28486183563_Gopikrishnan.pdf', NULL, '1', '2024-03-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 04:20:08', 112, '2024-03-08 04:09:14', 0, NULL, 1),
(17415, 'pandiyan s', '6', '9840694784', '', 'arunsiva1476@gmail.com', '2009-03-08', 0, '3', '2', 'siva', 'painter', 15000.00, 1, 0.00, 17000.00, 'omr', 'perungudi', '2403080005', '', '1', 'upload_files/candidate_tracker/38587208260_Pandiyan resume .pdf', NULL, '1', '2024-03-08', 0, '', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'Rejected', '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-08 04:42:05', 1, '2024-03-08 04:50:20', 0, NULL, 1),
(17416, 'Abirami', '14', '8056373884', '7010643878', 'abiramiak264@gmail.com', '2000-04-24', 23, '3', '1', 'Arunkumar', 'Software Engineer', 50000.00, 1, 0.00, 20000.00, 'Pallavarm', 'Pallavaram', '2403080006', '', '1', 'upload_files/candidate_tracker/33911434149_Abirami-resume.pdf', NULL, '1', '2024-03-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 05:04:40', 112, '2024-03-08 04:08:42', 0, NULL, 1),
(17417, 'Immanuvel', '23', '8925750383', '9791191057', 'immanchris345@gmail.com', '2000-01-06', 24, '3', '2', 'Chelladurai', 'Tailor', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2403080007', '', '1', 'upload_files/candidate_tracker/86467779207_Immanuvel_CV .pdf', NULL, '1', '2024-03-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-08 05:10:16', 1, '2024-03-08 05:13:26', 0, NULL, 1),
(17418, 'Jerin.C', '14', '8110055404', '', 'jerinchandrasekar@gmail.com', '2002-02-25', 22, '3', '2', 'S.ChandraSekar', 'Daily wager', 25000.00, 1, 0.00, 30000.00, 'Nagercoil', 'Nagercoil', '2403080008', '', '1', 'upload_files/candidate_tracker/70093944180_Resume_Jerin_Format1.pdf', NULL, '1', '2024-03-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 05:12:30', 112, '2024-03-08 04:09:25', 0, NULL, 1),
(17419, 'Gopinath M', '6', '7358203752', '', 'gopinathmanickam1998@gmail.com', '1998-12-23', 25, '2', '2', 'Manickam', 'Daily wage', 10000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2403080009', '1', '1', 'upload_files/candidate_tracker/10006945181_Resume.pdf', NULL, '1', '2024-03-08', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is Comminication Good But Voice is Too Low Also Sustainity Problem', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-08 05:18:35', 104, '2024-03-08 04:25:27', 0, NULL, 1),
(17420, 'K Lokesh', '6', '9025980375', '8886139772', 'lokesh1524loki@gmail.com', '2000-10-25', 23, '2', '2', 'Kumari', 'Daily wage', 10000.00, 1, 15000.00, 18000.00, 'Chittoor', 'Velachery', '2403080010', '1', '2', 'upload_files/candidate_tracker/26910242937_Lokesh Resume-2.pdf', NULL, '1', '2024-03-08', 30, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-08 05:18:48', 104, '2024-03-08 04:24:02', 0, NULL, 1),
(17421, 'A.Nazrin Safa', '14', '9894251986', '', 'safaanazrin@gmail.com', '2001-08-15', 22, '3', '2', 'M.Abdul Nazar', 'Daily wage', 100000.00, 1, 0.00, 30000.00, 'Nagercoil', 'Nagercoil', '2403080011', '', '1', 'upload_files/candidate_tracker/89852222516_Nazrin Safa.pdf', NULL, '1', '2024-03-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 05:22:24', 112, '2024-03-08 04:08:27', 0, NULL, 1),
(17422, 'Ashlin T', '20', '7904010478', '', 'ashlinjohnt@gmail.com', '2003-03-14', 20, '1', '2', 'Thangaraj.M', 'Taylor', 100000.00, 3, 0.00, 15000.00, 'No 378 7th block 178 st muthamizh nagar', 'No 378 7th block 178 st muthamizh nagar', '2403080012', '', '1', 'upload_files/candidate_tracker/82919794062_ashlin .pdf', NULL, '1', '2024-03-08', 0, '77837', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Apperrance And Performance is Not Good', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 05:24:57', 112, '2024-03-08 04:08:00', 0, NULL, 1),
(17423, 'Krishnasunil', '6', '8825920713', '', 'kichasunil224466@gmail.com', '2000-02-15', 24, '2', '2', 'Mother ( subhashini)', 'Office', 20000.00, 1, 13000.00, 16000.00, 'P.p garden 6th Street aminjikarai Chennai -600029', 'No:94/22 Thiruvananthapuram 2 Street choolaimedu', '2403080013', '1', '2', 'upload_files/candidate_tracker/30870929045_krishnasunil new resume .pdf', NULL, '1', '2024-03-08', 30, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-08 05:37:24', 104, '2024-03-08 04:28:35', 0, NULL, 1),
(17424, 'J Bellarmin Christy', '14', '8148769361', '', 'bellarminj25@gmail.com', '1998-12-25', 25, '3', '2', 'P. Johnson', 'Farmer', 150000.00, 3, 0.00, 15000.00, '19/85, west Street. Athisayapuram, Tuticorin', 'Annai ladies hostel, lakshmi nagar, west tambaram', '2403080014', '', '1', 'upload_files/candidate_tracker/22185161621_BELLARMIN CHRISTY.pdf', NULL, '1', '2024-03-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 05:45:03', 112, '2024-03-08 04:08:13', 0, NULL, 1),
(17425, 'J.JOHN', '6', '9840219454', '', 'johnjone188@gmail.com', '1999-03-26', 24, '2', '2', 'JULIUS CEACER', 'BUSINESS', 1.00, 1, 2.20, 4.00, 'Villvakkam 14/A narayana maistry first street', 'Chennai', '2403080015', '1', '2', 'upload_files/candidate_tracker/3443281549_Copy of White Minimalist Resume Template_20240228_112127_0000.pdf', NULL, '2', '2024-03-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-08 06:21:49', 104, '2024-03-08 04:22:05', 0, NULL, 1),
(17426, 'yuvaraj. M', '11', '9360375219', '1234567890', 'yuvaraj50537@gmail.com', '2001-12-15', 22, '6', '2', 'Mathivanan', 'Own business', 25.00, 1, 0.00, 5000.00, '-', 'No: 1/16a rajaji street thenpalani nagar Kolathur', '2403080016', '', '1', 'upload_files/candidate_tracker/61352373254_YUVARAJ M RESUME.pdf', NULL, '1', '2024-03-08', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-08 06:21:51', 1, '2024-03-08 06:35:13', 0, NULL, 1),
(17427, 'Shoban K', '5', '9003186029', '8015931778', 'shoban0017@gmail.com', '1998-06-17', 25, '2', '2', 'Karunakaran R', 'Welder', 500000.00, 1, 2.75, 3.60, 'no 266 6th block Mogappair west chennai', 'no 705 6th Block Mogappair west chennai', '2403080017', '1', '2', 'upload_files/candidate_tracker/6535692000_Shoban K Resume.pdf', NULL, '1', '2024-03-08', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-08 06:52:30', 104, '2024-03-08 04:31:19', 0, NULL, 1),
(17428, 'R.kamalipriya', '11', '9698504080', '9443658279', 'Kamalipriyarajendran99@gmail', '1999-07-30', 24, '3', '2', 'T.rajendran', 'Sugar cane officer', 50000.00, 1, 0.00, 2.50, 'Kallakurichi', 'Chennai', '2403080018', '', '1', 'upload_files/candidate_tracker/69438941029_KAMALIPRIYA_R[1].docx', NULL, '1', '2024-03-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 06:59:50', 104, '2024-03-08 04:23:03', 0, NULL, 1),
(17429, 'Dhanalakshmi D', '5', '9360207322', '9840182821', 'dhanlakshmipandian16@gmail.com', '2000-07-07', 23, '2', '2', 'Dhanapandian', 'Ac mechanic', 300000.00, 1, 2.75, 3.50, 'No:928 27th street b.v colony Vyasarpadi chennai', 'No:928 27th Street b.v colony vyasarpadi', '2403080019', '1', '2', 'upload_files/candidate_tracker/26513654124_resume .2.pdf', NULL, '1', '2024-03-08', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-08 07:08:44', 1, '2024-03-08 07:37:42', 0, NULL, 1),
(17430, 'S. Balamurali', '14', '7598758478', '9043755609', 'balamurali112001@gmail.com', '2001-11-11', 22, '3', '2', 'M Saravanakumar', 'Civil engineer', 40000.00, 1, 0.00, 2.75, 'Door No5 arunagirinather street bodinayakanur', 'Door No5 Arunagirinather street bodinayakanur', '2403080020', '', '1', 'upload_files/candidate_tracker/3963701733_Grey & white a4 Clean CV Resume_20240220_101546_0000.pdf', NULL, '1', '2024-03-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 07:09:38', 112, '2024-03-08 04:09:42', 0, NULL, 1),
(17431, 'Gururaj SK', '6', '8760283991', '', 'skguru2002@gmail.com', '2002-09-03', 21, '2', '2', 'S.sivanantham', 'Textile employee', 17000.00, 0, 0.00, 20000.00, 'Cuddalore', 'Erode', '2403080021', '29', '1', 'upload_files/candidate_tracker/53450209041_gurusk.pdf', NULL, '1', '2024-03-13', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 09:04:56', 112, '2024-03-13 02:58:24', 0, NULL, 1),
(17432, 'SAHUL HAMEED AAQEEL', '23', '6385543671', '', 'sahul.aaqeel3@gmail.com', '2001-03-11', 22, '2', '2', 'Abdul Khader', 'Business', 80000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2403080022', '29', '1', 'upload_files/candidate_tracker/73012574670_Sahul\'s Resume.pdf', NULL, '2', '2024-03-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-08 10:41:37', 1, '2024-03-08 10:52:08', 0, NULL, 1),
(17433, 'Mathivanan', '23', '9789075906', '', 'mathiv04@gmail.com', '1992-04-14', 31, '6', '1', 'Rajagopal', 'Carpenter', 60000.00, 1, 7.30, 8.50, 'Chennai', 'Chennai', '2403080023', '', '2', 'upload_files/candidate_tracker/98599769182_Resume_cover_ Mathivanan UX (2) (1).pdf', NULL, '1', '2024-03-08', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-08 11:06:51', 1, '2024-03-08 11:21:57', 0, NULL, 1),
(17434, '', '0', '9790840186', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403080024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-08 12:15:13', 0, NULL, 0, NULL, 1),
(17435, 'Mugesh j', '6', '9345134317', '8667592413', 'mugeshjai46@gmail.com', '2000-04-20', 23, '2', '2', 'Jaisankar', 'Electrician', 30000.00, 2, 12000.00, 17000.00, 'Thanjavur', 'Chennai', '2403080025', '29', '2', 'upload_files/candidate_tracker/90006819649_Mugesh -1.pdf', NULL, '1', '2024-03-09', 15, '', '3', '59', '2024-03-11', 204000.00, '', '3', '2024-03-12', '2', 'Selected for Relationship Executive Role in Staff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-08 12:28:10', 60, '2024-03-16 12:33:07', 0, NULL, 1),
(17436, 'Manoj', '4', '9344278524', '9688204849', 'manoj312629@gmail.com', '1999-01-31', 25, '2', '2', 'Sowndari', 'Housewife', 180000.00, 3, 15500.00, 18000.00, 'Reddiyarchatram, Dindigul.', 'Guduvancheri, Chengalpattu', '2403080026', '29', '2', 'upload_files/candidate_tracker/18407913288_Resume.pdf', NULL, '1', '2024-03-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-08 01:30:09', 1, '2024-03-08 01:42:13', 0, NULL, 1),
(17437, 'K.MariGanesh', '31', '6379696278', '9944589869', 'kmariganesh2000@gmail.com', '2000-07-23', 23, '3', '2', 'G.kannan', 'Talioring', 12.00, 1, 0.00, 1.00, '59/11 post office street srivaikundam', 'Vadapalani', '2403090001', '', '1', 'upload_files/candidate_tracker/57290747589_Mari Ganesh k.pdf', NULL, '1', '2024-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 03:38:29', 112, '2024-03-09 11:58:19', 0, NULL, 1),
(17438, 'AKASH C', '13', '7010009748', '', 'akashccs@gmail.com', '1997-07-09', 26, '3', '2', 'CHANDIRAMANI T', 'TEACHER', 15000.00, 1, 0.00, 8000.00, 'CHETPET, TIRUVANNAMALAI', 'CHENNAI', '2403090002', '', '1', 'upload_files/candidate_tracker/23509473337_Akash Resume.pdf', NULL, '1', '2024-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 03:52:16', 112, '2024-03-09 11:58:42', 0, NULL, 1),
(17439, 'Tamilmani S', '13', '9994784663', '', 'tamilmani5574@gmail.com', '1998-06-11', 25, '3', '2', 'Santhamoorthi', 'Former', 10000.00, 1, 0.00, 15000.00, 'Thiruvannamalai', 'Vadapalani,Chennai', '2403090003', '', '1', 'upload_files/candidate_tracker/98091686294_TAMILMANI S .pdf', NULL, '1', '2024-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 03:54:55', 112, '2024-03-09 11:56:48', 0, NULL, 1),
(17440, 'Vimal', '6', '9345023699', '9566225180', 'vimaldb182001@gmail.com', '2001-12-18', 22, '2', '2', 'Balaji', 'Leather business', 40000.00, 1, 15000.00, 22000.00, 'No 1 Siva Vishnu nagar kundrathur', 'No 1 Siva Vishnu Nagar Kundrathur', '2403090004', '29', '2', 'upload_files/candidate_tracker/17077114330_VIMAL.pdf', NULL, '1', '2024-03-09', 0, '', '3', '59', '2024-03-11', 210000.00, '', '3', '2024-03-13', '1', 'Selected for Babu Team Relationship Executive', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'no proper updates to the team from the day he joins he is late to the office', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 04:19:53', 60, '2024-03-16 12:30:46', 0, NULL, 1),
(17441, 'S.Ranjith Kumar', '13', '9150255438', '9840586438', 'ranjithkumars0125@gmail.com', '2003-01-25', 21, '3', '2', 'Sivaprakasam.A', 'Labour', 30000.00, 1, 0.00, 20000.00, 'Kattanguthur, chengalpet', 'Kattanguthur, chengalpet', '2403090005', '', '1', 'upload_files/candidate_tracker/82801393119_Ranjith (1).pdf', NULL, '1', '2024-03-09', 0, '', '3', '59', '2024-04-17', 100000.00, '', '', '2024-12-24', '1', 'Selected for internship Employment 3 .5yrs Service Agreement', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 04:21:38', 60, '2024-04-17 10:12:18', 0, NULL, 1),
(17442, 'Anushree p', '2', '9361464185', '8870252461', 'anuabi2408@gmail.com', '2001-08-24', 22, '3', '2', 'Perumal', 'Daily wages', 25000.00, 1, 0.00, 3.50, '16/62, perumal Kovil 1 St, nerkundram, chennai-107', 'Çhennai', '2403090006', '', '1', 'upload_files/candidate_tracker/65106862160_Anushree Resume.pdf', NULL, '1', '2024-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 04:22:07', 112, '2024-03-09 11:57:33', 0, NULL, 1),
(17443, 'Prakash raj', '23', '7092017234', '', 'prakashrajrio2000@gmail.com', '2001-05-03', 22, '3', '2', 'Elumalai', 'Worker', 25000.00, 3, 25000.00, 35000.00, 'Chennai', 'Chennai', '2403090007', '', '2', 'upload_files/candidate_tracker/79839360869_Prakash Raj CV.pdf', NULL, '1', '2024-03-09', 7, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-09 04:24:54', 1, '2024-03-09 04:30:39', 0, NULL, 1),
(17444, 'Divya BA', '2', '9941809779', '', 'divyaanbalagan28@gmail.com', '2003-11-28', 20, '3', '2', 'Anbalagan', 'Driver', 20000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2403090008', '', '1', 'upload_files/candidate_tracker/18588241977_Divya', NULL, '1', '2024-03-09', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 04:25:21', 112, '2024-03-09 11:53:57', 0, NULL, 1),
(17445, 'Naveen E', '13', '8072454200', '9384068611', 'neymarnavi7823@gmail.com', '2003-08-07', 20, '3', '2', 'S. Elumalai', 'Government Service', 30000.00, 1, 0.00, 20000.00, 'Melmaruvathur, Chengalpattu District', 'Karapakkam', '2403090009', '', '1', 'upload_files/candidate_tracker/10958576362_Resume.pdf', NULL, '1', '2024-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 04:27:20', 112, '2024-03-09 11:58:59', 0, NULL, 1),
(17446, 'R.Ganesh', '5', '9629625953', '', 'ganeshr2207@gmail.com', '2001-07-22', 22, '2', '2', 'Saraswathi.R', 'Account', 15.00, 1, 0.00, 17.00, 'Arakonam', 'Arakonam', '2403090010', '1', '1', 'upload_files/candidate_tracker/88079200938_R GANESH RESUME (2).pdf', NULL, '1', '2024-03-09', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Apperance is Good But Performance is Poor , Also his talk is not properly', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-09 04:33:47', 108, '2024-03-09 12:06:15', 0, NULL, 1),
(17447, 'Harireshikesh E', '6', '8778050623', '', 'reshikesh98@gmail.com', '1998-09-22', 25, '2', '2', 'ELAMVALUTHI', 'Farmer', 30000.00, 1, 20000.00, 25000.00, 'Theni', 'Theni', '2403090011', '29', '2', 'upload_files/candidate_tracker/72946016624_Resume.pdf', NULL, '1', '2024-03-09', 0, '', '3', '59', '2024-03-11', 228000.00, '', '5', '1970-01-01', '1', 'Selected for Charles Team Relationship Executive Role Direct Marketing', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 04:36:28', 60, '2024-03-11 12:40:43', 0, NULL, 1),
(17448, 'Badrunisha', '13', '7448444365', '9789825061', 'badrunisha220998@gmail.com', '2009-03-09', 0, '3', '1', 'Kalilur rahaman.R', 'Quality analyst in lumina datamatics', 30000.00, 3, 0.00, 20000.00, '16/23 sathangadu high road,kaladipet', '16/23 Sathangadu High Road,Kaladipet', '2403090012', '', '1', 'upload_files/candidate_tracker/5478167725_Badrunisha Resume (2).pdf', NULL, '1', '2024-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 04:43:06', 112, '2024-03-09 04:02:22', 0, NULL, 1),
(17449, 'Ajithkumar SS', '13', '8072151774', '', 'ajithkumar40646@gmail.com', '2002-12-17', 21, '3', '2', 'Sekar S', 'Receptionist in a private Organisation', 18755.00, 1, 0.00, 400000.00, 'Pudukkottai', 'Chennai', '2403090013', '', '1', 'upload_files/candidate_tracker/71451217895_ajithkumar developer-3.pdf', NULL, '1', '2024-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 04:44:17', 112, '2024-03-09 11:57:03', 0, NULL, 1),
(17450, 'Sundari C', '5', '6379218101', '7094541008', 'csundari2000@gmail.com', '2000-10-13', 0, '2', '2', 'Chandra boss kamaraj.S', 'Farmer', 20000.00, 1, 1.20, 1.80, 'Ulundurpet', 'villupuram', '2403090014', '1', '2', 'upload_files/candidate_tracker/31173046615_Sundari.C (1) (1).pdf', NULL, '1', '2024-03-09', 10, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-09 05:01:58', 108, '2024-03-09 03:49:08', 0, NULL, 1),
(17451, 'Selvakumar m', '31', '8883787484', '9360882745', 'selvamap72@gmail.com', '2002-06-02', 21, '3', '2', 'Meenakshi sundaram c', 'Lawri driver', 18000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2403090015', '', '1', 'upload_files/candidate_tracker/57224268964_Selvakumar.pdf', NULL, '1', '2024-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 05:43:38', 112, '2024-03-09 01:19:14', 0, NULL, 1),
(17452, 'Srinivasan', '13', '7871693540', '', 'srini462001@gmail.com', '2001-06-10', 22, '3', '2', 'Saravanan', 'Electrician', 30000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'Velachery', '2403090016', '', '1', 'upload_files/candidate_tracker/14718516917_S.Srinivasan.pdf', NULL, '1', '2024-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 07:55:31', 112, '2024-03-09 04:01:24', 0, NULL, 1),
(17453, 'Sarathkumar.R', '13', '9047579819', '', 'sarathravi9047@gmail.com', '2003-03-20', 20, '6', '2', 'Ravichandran', 'Daily work', 250000.00, 2, 0.00, 23000.00, '42main road angunam Village Tiruvannamalai (d)', '1st Street gangainagar Velachery', '2403090017', '', '1', 'upload_files/candidate_tracker/13917266756_Sarathkumar.pdf', NULL, '1', '2024-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 07:56:19', 112, '2024-03-09 04:01:46', 0, NULL, 1),
(17454, 'Arihara Krishnan', '13', '8667477466', '8148750171', 'arikrishnan09200@gmail.com', '2000-09-13', 23, '3', '2', 'Sornam', 'Water supply', 15000.00, 0, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2403090018', '', '1', 'upload_files/candidate_tracker/23665959552_ARIHARA KRISHNAN S.pdf', NULL, '1', '2024-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 07:58:04', 112, '2024-03-09 04:02:00', 0, NULL, 1),
(17455, 'Rathish M', '31', '9994349320', '', 'rathish0423@gmail.com', '1999-05-05', 24, '3', '2', 'Murugan C', 'Farmer', 20000.00, 1, 0.00, 200000.00, 'Tirunelveli', 'Chennai', '2403090019', '', '1', 'upload_files/candidate_tracker/20397290069_Rathish_Resume.pdf', NULL, '1', '2024-03-09', 0, '', '3', '59', '2024-03-25', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Intern with Stipend Node+Mongo DB interviewed by Sathish xxamp Gokul', '2', '1', '2', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 09:03:56', 60, '2024-03-25 12:05:26', 0, NULL, 1),
(17456, 'Jawahar Rathna', '4', '9940189230', '8248663616', 'jawaharrathna135@gmail.com', '2000-11-16', 23, '2', '2', 'Pap Mythili', 'Unit Manager', 2.70, 1, 22500.00, 25000.00, 'Chennai', 'Chennai', '2403090020', '29', '2', 'upload_files/candidate_tracker/56529161082_Jawahar Rathna Resume .pdf', NULL, '1', '2024-03-11', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-09 09:14:27', 1, '2024-03-09 09:19:48', 0, NULL, 1),
(17457, 'Gunalan E', '13', '8610357589', '', 'gunalanelumalai4@gmail.com', '2009-03-09', 0, '3', '2', 'Elumalai T', 'Foreman grade 1', 40000.00, 1, 0.00, 3.00, 'Villupuram', 'Velachery, chennai', '2403090021', '', '1', 'upload_files/candidate_tracker/32791363923_Gunalan Resume.pdf', NULL, '1', '2024-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-09 09:20:38', 112, '2024-03-09 04:02:12', 0, NULL, 1),
(17458, '', '0', '9585784709', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403090022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-09 12:04:22', 0, NULL, 0, NULL, 1),
(17459, '', '0', '7397027417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403090023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-09 02:41:39', 0, NULL, 0, NULL, 1),
(17460, 'S. Aruna', '4', '8680869402', '', 'arunasathiya96@gmail.com', '1996-11-09', 27, '2', '1', 'K. Lenin', 'Driver', 15000.00, 1, 14500.00, 19000.00, 'Vysarpadi', 'Mkb nagar', '2403100001', '29', '2', 'upload_files/candidate_tracker/14643362694_Aruna Resume PDF.pdf', NULL, '1', '2024-03-11', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-10 07:19:52', 1, '2024-03-10 07:41:58', 0, NULL, 1),
(17461, 'sruthi', '6', '9841108369', '', 'sruthiak.20@gmail.com', '1990-11-01', 33, '2', '1', 'kumar', 'business', 50.00, 2, 30.00, 28.00, 'chennai', 'chennai', '2403100002', '29', '2', 'upload_files/candidate_tracker/26141644116_Sruthi S - Resume.pdf', NULL, '1', '2024-03-11', 10, '', '8', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-10 01:53:46', 112, '2024-03-11 05:09:23', 0, NULL, 1),
(17462, 'Laljani Mohammad', '5', '7396323990', '', 'ayazm8462@gmail.com', '2002-05-16', 21, '2', '2', 'Nizam moula shariff Mohammad', 'Teacher', 100000.00, 1, 0.00, 250000.00, 'Ambajipeta, Andhrapradesh,533214', 'Bengaluru', '2403110001', '1', '1', 'upload_files/candidate_tracker/30086889108_MOHAMMAD', NULL, '1', '2024-03-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-11 03:30:31', 104, '2024-03-11 02:54:23', 0, NULL, 1),
(17463, 'Reshal Anusha R', '6', '9487321032', '9489284855', 'reshalanushar@gmail.com', '1997-06-21', 26, '2', '2', 'Reshal Raju', 'Fisherman', 15000.00, 1, 17000.00, 20000.00, 'Thoothoor, Kanyakumari', 'Chennai', '2403110002', '1', '2', 'upload_files/candidate_tracker/68289695761_rreshal_resume.pdf', NULL, '1', '2024-03-12', 15, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'her Salary Expectation is to high also she is worked in star as back end process.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-03-11 04:15:37', 112, '2024-03-12 02:49:21', 0, NULL, 1),
(17464, 'Rajadurai.S', '13', '6382491019', '9965739829', 'rajadurai.s.j005@gmail.com', '2002-07-29', 21, '3', '2', 'Selvaraj.D', 'Farmer', 6000.00, 1, 0.00, 250000.00, 'Perambalur', 'Chennai', '2403110003', '', '1', 'upload_files/candidate_tracker/65609609974_Rajadurai.pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 04:17:21', 112, '2024-03-11 03:05:10', 0, NULL, 1),
(17465, 'Bennet R', '13', '9443539145', '', 'bennetregukumar@gmail.com', '2001-05-16', 22, '6', '2', 'Regukumar', 'Electrician', 10000.00, 1, 0.00, 300000.00, '6/168B,painkulam post, kanniyakumari dist', '6/168B,Painkulam Post, Kanniyakumari Dist', '2403110004', '', '1', 'upload_files/candidate_tracker/21843508379_CV_Bennet.pdf', NULL, '1', '2024-03-11', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 04:22:57', 112, '2024-03-11 03:02:18', 0, NULL, 1),
(17466, '', '0', '9487943902', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403110005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-11 04:26:37', 0, NULL, 0, NULL, 1),
(17467, 'krishnaraj', '13', '6381263570', '', 'durairajduraj@gmail.com', '2001-07-16', 22, '3', '2', 'Durairaj', 'Farmer', 30000.00, 1, 0.00, 12000.00, 'Kalakurichi', 'Chennai', '2403110006', '', '1', 'upload_files/candidate_tracker/69164151057_Krishnaraj_Resume__.pdf (1).pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 04:30:05', 112, '2024-03-13 02:57:20', 0, NULL, 1),
(17468, 'Bhavya.k', '6', '9094516202', '9940632589', 'bhavyakamal29@gmail.com', '1998-09-29', 25, '2', '2', 'Kamalakannan Father', 'Clinical laboratory', 2.00, 1, 330000.00, 6.00, 'Chintadripet', 'Chintadripet', '2403110007', '29', '2', 'upload_files/candidate_tracker/20816764179_bhavya.pdf', NULL, '1', '2024-03-11', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Exp high ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 04:30:44', 112, '2024-03-11 03:21:34', 0, NULL, 1),
(17469, 'Vigneshwaran G', '13', '9442399540', '', 'iamg.vigneshwaran@gmail.com', '1997-07-30', 26, '3', '2', 'Gunasekar', 'Driver', 200000.00, 1, 0.00, 250000.00, 'Puducherry', 'Puducherry', '2403110008', '', '1', 'upload_files/candidate_tracker/66068731983_VIGNESHWARAN.G__CV.pdf', NULL, '1', '2024-03-11', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 04:30:47', 112, '2024-03-11 03:03:33', 0, NULL, 1),
(17470, 'VIGNESH S', '2', '6369307326', '', 'vigneshsankar532@gmail.com', '2002-07-02', 21, '3', '2', 'SANKAR N', 'Farmer', 65000.00, 3, 0.00, 200000.00, 'Melmaruvathur', 'Melmaruvathur', '2403110009', '', '1', 'upload_files/candidate_tracker/41482021262_VIGNESH .pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 04:33:03', 112, '2024-03-11 03:04:47', 0, NULL, 1),
(17471, 'Sugumar L R', '23', '9791208243', '', 'sugumarlr01@gmail.com', '2002-08-01', 21, '6', '2', 'Poornima R', 'Working as daily wages', 10000.00, 1, 0.00, 200000.00, 'Walajapet, Ranipet District', 'Walajapet, Ranipet District', '2403110010', '', '1', 'upload_files/candidate_tracker/7473329376_myuiuxresume.pdf', NULL, '1', '2024-03-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-11 04:41:52', 1, '2024-03-11 04:45:34', 0, NULL, 1),
(17472, 'Mukesh Kumar R', '6', '6369225158', '7806862135', 'mukeshakc3@gmail.com', '2000-03-15', 23, '2', '2', 'Raja C', 'Father', 60000.00, 2, 0.00, 2.50, 'Dharmapuri', 'Velachery', '2403110011', '29', '1', 'upload_files/candidate_tracker/94490356424_mukesh Resume.docx', NULL, '1', '2024-03-11', 0, '', '7', '59', NULL, 0.00, '', '0', NULL, '1', 'Selected . But He asked for a higher salary.I have told him that the office will not pay the salary he is asking for', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-11 04:52:48', 1, '2024-03-11 04:57:50', 0, NULL, 1),
(17473, 'Vizhiyarasu', '13', '8098234425', '', 'vizhiekr@gmail.com', '2002-10-08', 21, '6', '2', 'Sampath', 'Panchayat Secretary', 25000.00, 1, 0.00, 15000.00, 'Mannargudi', 'Chennai', '2403110012', '', '1', 'upload_files/candidate_tracker/87469057437_Vizhiyarasu- resume.pdf', NULL, '1', '2024-03-11', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '4', '5', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 04:55:09', 112, '2024-03-11 03:02:41', 0, NULL, 1),
(17474, 'Ajith B', '13', '7603976733', '8870280961', 'ajithbl7474@gmail.com', '2002-06-07', 21, '3', '2', 'S Babu', 'Mason', 19000.00, 1, 0.00, 15000.00, 'Monday market', 'Monday market', '2403110013', '', '1', 'upload_files/candidate_tracker/24120577147_Ajith B - Resume.pdf', NULL, '1', '2024-03-11', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 04:55:42', 112, '2024-03-11 03:02:54', 0, NULL, 1),
(17475, 'Lijish Wilson S', '13', '7397322746', '8056753142', 'lijishwilson@gmail.com', '2001-12-21', 22, '6', '2', 'Wilson Nesaraj P', 'Mechanic', 82000.00, 0, 0.00, 20000.00, 'Nagercoil', 'Vadapalani, chennai', '2403110014', '', '1', 'upload_files/candidate_tracker/30910979624_Lijish Resume.pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 04:55:50', 112, '2024-03-11 03:04:01', 0, NULL, 1),
(17476, 'Karthikeyan', '13', '7010028061', '', 'karthikeyanr1607@gmail.com', '2002-07-16', 21, '6', '2', 'Ramasamy', 'Advocate', 25000.00, 2, 0.00, 350000.00, 'Rajapalayam', 'T nagar-Chennai', '2403110015', '', '1', 'upload_files/candidate_tracker/15996721798_Resume (1).pdf', NULL, '1', '2024-03-11', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 04:58:32', 112, '2024-03-11 03:03:15', 0, NULL, 1),
(17477, 'Devi S', '14', '9597260125', '9095146508', 'devidevika9982@gmail.com', '1999-08-02', 24, '6', '2', 'Selvaraj', 'Tailor', 10000.00, 1, 252000.00, 450000.00, 'Erode', 'Chennai - poonamallee', '2403110016', '', '2', 'upload_files/candidate_tracker/57108184098_Devi Flutter resume(Exp) .pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 04:59:11', 112, '2024-03-11 03:04:15', 0, NULL, 1),
(17478, 'Mukuntha narayanan', '6', '9384996317', '7904187391', 'mukundhsathya2000@gmail.com', '2000-10-16', 23, '2', '1', 'S.Sowmiya', 'Working in gas agency', 18000.00, 1, 18000.00, 23000.00, 'No 68 jayanderar Saraswati swamigal st', 'Sri giri flats namagnalam kovilampakkam', '2403110017', '1', '2', 'upload_files/candidate_tracker/31997240972_MuKundh Resume.docx', NULL, '1', '2024-03-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-11 05:07:29', 104, '2024-03-11 12:08:41', 0, NULL, 1),
(17479, 'Shreemathi', '13', '9551150686', '', 'shree0207mathi@gmail.com', '2002-07-02', 21, '3', '2', 'R santharaman', 'Business', 700000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2403110018', '', '1', 'upload_files/candidate_tracker/49708260688_DOC-20240112-WA0030. (1).docx', NULL, '1', '2024-03-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-11 05:07:56', 1, '2024-03-11 05:11:16', 0, NULL, 1),
(17480, 'Mohammed nazar A', '6', '9944320355', '', 'nazu1723@gmail.com', '1999-07-17', 24, '2', '2', 'Ansar basha', 'Watchman', 15000.00, 1, 18500.00, 23000.00, '72/20 kumaran street near Bypass cheyyar', 'New:No,46 Oid, 44 Kosapet, Purasaiwakkam chennai', '2403110019', '1', '2', 'upload_files/candidate_tracker/37355779542_Nazar 2024.pdf', NULL, '1', '2024-03-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-11 05:09:02', 112, '2024-03-11 03:07:06', 0, NULL, 1),
(17481, 'PRAVEEN M', '13', '8754672703', '9626542294', 'praveen0698m@gmail.com', '1998-06-03', 25, '3', '2', 'Murugan p', 'Tailor', 25000.00, 2, 0.00, 20000.00, 'Gudiya', 'Gudiya', '2403110020', '', '1', 'upload_files/candidate_tracker/86624515033_1000418580.pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 05:09:20', 112, '2024-03-11 03:14:57', 0, NULL, 1),
(17482, 'Banu Priya R', '13', '6381727930', '6384311806', 'banupriyaravikumara@gmail.com', '2000-10-25', 23, '6', '2', 'Ravikumar', 'Business', 78000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2403110021', '', '1', 'upload_files/candidate_tracker/90114740159_Resume202401291039.pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 05:09:21', 112, '2024-03-11 03:13:49', 0, NULL, 1),
(17483, 'Gemick Lauri A', '13', '9360994760', '9840446249', 'gemicklauri1822@gmail.com', '2002-08-18', 21, '6', '2', 'Gnanamani P', 'Staff nurse', 40000.00, 1, 0.00, 18000.00, 'Mylapore', 'Mylapore', '2403110022', '', '1', 'upload_files/candidate_tracker/86155929932_GEMICK LAURI_20240101_165703_0000.pdf', NULL, '1', '2024-03-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-11 05:11:39', 1, '2024-03-11 05:15:30', 0, NULL, 1),
(17484, 'Ramya', '13', '9384684087', '', 'ramyasri7250@gmail.com', '1999-11-06', 24, '3', '2', 'B.Jothi', 'Tailor', 10.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2403110023', '', '1', 'upload_files/candidate_tracker/63978760744_RamyaResume17.pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 05:12:54', 112, '2024-03-11 03:05:25', 0, NULL, 1),
(17485, 'Ram Kumar V', '13', '6379151979', '8015836900', 'ramkumarvt66@gmail.com', '1999-07-26', 24, '6', '2', 'Venkatesh Kumar R', 'Auto driver', 3.50, 2, 0.00, 2.10, 'Chennai', 'Chennai', '2403110024', '', '1', 'upload_files/candidate_tracker/1771505265_RamkumarResume.pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 05:19:35', 112, '2024-03-11 03:15:40', 0, NULL, 1),
(17486, 'NANDHA KRISHNA', '13', '9677966834', '', 'NANDHAKRISHNAN16@KSRIET.AC.IN', '2024-03-11', 0, '3', '2', 'L', 'L', 0.00, 0, 0.00, 0.00, 'chennai', 'chennai', '2403110025', '', '1', '0', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '1', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 05:22:06', 112, '2024-03-11 03:12:51', 0, NULL, 1),
(17487, 'DOMINIC SAVIO V', '13', '6383544919', '8608297745', 'dominicsaviomca@gmail.com', '2001-03-09', 23, '6', '2', 'VINCENT RAJ D', 'TECHNICIAN', 25000.00, 1, 0.00, 17000.00, 'CHENNAI', 'CHENNAI', '2403110026', '', '1', 'upload_files/candidate_tracker/47528850987_Dominic.pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 05:30:37', 112, '2024-03-11 03:16:17', 0, NULL, 1),
(17488, 'S. Tamilarasan', '6', '9363440491', '9750048376', 'jackstamil9345@gmail.com', '2002-08-25', 21, '2', '2', 'Srikanth', 'Welder', 15000.00, 1, 0.00, 17000.00, 'Erode', 'Erode', '2403110027', '1', '1', 'upload_files/candidate_tracker/99057648923_tamil resume.pdf', NULL, '3', '2024-03-11', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-11 05:33:16', 112, '2024-03-11 03:31:57', 0, NULL, 1),
(17489, 'HARIKRISHNAN N', '23', '9384187665', '', 'harikumar.ak99@gmail.com', '1999-10-31', 24, '6', '2', 'NARAYANAN P', 'Business', 20000.00, 1, 0.00, 25000.00, 'Sivagangai', 'Sivaganga', '2403110028', '', '1', 'upload_files/candidate_tracker/16807970609_IMG_20240311_112117.pdf', NULL, '1', '2024-03-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-11 05:36:14', 1, '2024-03-11 05:54:24', 0, NULL, 1),
(17490, 'Vijayakanth k', '13', '9080191261', '', 'vijayakanth113@gmail.com', '2002-09-27', 21, '3', '2', 'S.kumaravel', 'Bike mechanic', 30000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2403110029', '', '1', 'upload_files/candidate_tracker/79362025154_Resume10.pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 05:41:44', 112, '2024-03-11 03:14:00', 0, NULL, 1),
(17491, 'Adhithya.k', '6', '7200678172', '', 'adhikrishnan2001@Gmail.com', '2001-09-15', 22, '2', '2', 'B krishnan', 'Collie', 96000.00, 1, 15000.00, 15000.00, 'Royapuram', 'Royapuram', '2403110030', '1', '2', 'upload_files/candidate_tracker/36755887186_Adhithya_1680695507724.pdf', NULL, '1', '2024-03-11', 0, '', '3', '59', '2024-03-13', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Gopinath Team Sustainability should focus need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-11 05:58:13', 60, '2024-03-12 07:40:34', 0, NULL, 1),
(17492, 'Mangai', '13', '8838070266', '6384601525', 'mangai23ravi@gmail.com', '2000-03-24', 23, '3', '1', 'Bala', 'Software developer', 40000.00, 1, 150000.00, 25000.00, 'Chennai', 'Chennai', '2403110031', '', '2', 'upload_files/candidate_tracker/3325855978_Mangai (1) (1).pdf', NULL, '1', '2024-03-11', 15, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 06:08:14', 112, '2024-03-11 03:16:51', 0, NULL, 1),
(17493, 'Alex Sebastian', '11', '9791274432', '9025707458', 'alexsebastin15@gmail.com', '1999-12-15', 24, '2', '2', 'Adaikala raj', 'Mechanic', 25000.00, 1, 0.00, 15000.00, '18000', 'Anna nager', '2403110032', '1', '1', 'upload_files/candidate_tracker/65385696559_Alex resume updated.docx', NULL, '1', '2024-03-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average Will not sustain in our roles not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-11 06:19:09', 104, '2024-03-11 12:10:13', 0, NULL, 1),
(17494, 'Praveenkumar Periyasamy', '23', '6374892300', '', 'prempraveen972@gmail.com', '2000-07-16', 23, '6', '2', 'Periyasamy', 'farmer', 40000.00, 3, 300000.00, 450000.00, 'tiruchirappalli', 'Chennai', '2403110033', '', '2', 'upload_files/candidate_tracker/2626130474_praveenkumar resume 1.pdf', NULL, '1', '2024-03-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-11 06:23:21', 1, '2024-03-11 06:32:24', 0, NULL, 1),
(17495, 'Anitha', '6', '8925181321', '9840287473', 'anithani9840@gmail.com', '2003-05-30', 20, '2', '2', 'Rajendra', 'Gardeenar', 15000.00, 1, 0.00, 15000.00, 'Tondiyerpet', 'Tondiyerpet', '2403110034', '1', '2', 'upload_files/candidate_tracker/56855697317_Anitha resume .pdf', NULL, '1', '2024-03-11', 0, '', '3', '59', '2024-03-19', 173400.00, '', '4', '2024-09-18', '2', 'Selected for Charles Team', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-11 06:24:58', 60, '2024-03-19 10:16:03', 0, NULL, 1),
(17496, 'Abishek.R', '13', '8825754187', '', 'abishekrajendran15@gmail.com', '2001-07-15', 22, '3', '2', 'Rajendran. P', 'Fishing', 25000.00, 1, 0.00, 100000.00, 'Kanyakumari', 'Chennai', '2403110035', '', '1', 'upload_files/candidate_tracker/62472201749_SIST-B.E-CSE-39110013-Abishek R.pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 06:32:25', 112, '2024-03-11 03:16:04', 0, NULL, 1),
(17497, 'Rahul Mitcen', '11', '9344926342', '', 'rahulmitcen@gmail.com', '2000-10-30', 23, '3', '2', 'M Chandra Sekhar', 'Sales assistant', 45000.00, 1, 0.00, 15000.00, 'Kanyakumari', 'Kanyakumari', '2403110036', '', '1', 'upload_files/candidate_tracker/28574102890_20240219_184329_0000.pdf', NULL, '1', '2024-03-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Intern looking Need to open up a lot not suitable in our work roles', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 07:15:31', 112, '2024-03-11 03:32:45', 0, NULL, 1),
(17498, 'Indhurani', '20', '9790774283', '7010106649', 'indhumari639@gmail.com', '2000-11-01', 23, '3', '2', 'Mariappan', 'Cooli', 45000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2403110037', '', '2', 'upload_files/candidate_tracker/85055318135_resume_Indhurani.pdf', NULL, '1', '2024-03-11', 30, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '1', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 07:20:36', 108, '2024-03-11 06:19:52', 0, NULL, 1),
(17499, 'Deepiga thirumalai', '6', '9123523170', '7092011129', 'deepigathirumalai0625@gmail.com', '2003-06-21', 20, '2', '2', 'Thirumalai.v', 'Auto driver', 10000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2403110038', '1', '1', 'upload_files/candidate_tracker/74423933846_Deepiga CV.pdf', NULL, '1', '2024-03-11', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Comminication And Performance Is Good ,But Her Expectation Is Too High,Consider For Fresher Salary ,If She Not Ok With That Kindly omit her', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-11 08:03:46', 104, '2024-03-11 02:54:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17500, 'Mohamed Fayaz Rahamathullah', '31', '9585693079', '9486303554', 'fayazr9585@gmail.com', '2002-06-08', 21, '6', '2', 'Rahamathullah', 'Driver', 12000.00, 2, 0.00, 2.00, 'Chennai', 'Chennai', '2403110039', '', '1', 'upload_files/candidate_tracker/89547122645_MOHAMED_FAYAZ (1).pdf', NULL, '1', '2024-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 09:07:20', 112, '2024-03-11 03:34:49', 0, NULL, 1),
(17501, 'Mohammed Fayaz', '13', '7338926480', '', 'mfyz3622@gmail.com', '2002-06-30', 21, '3', '2', 'Roshan', 'Shopkeeper', 20000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2403110040', '', '1', 'upload_files/candidate_tracker/29567300055_Resume Template (1) (1).pdf', NULL, '1', '2024-03-11', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 09:25:37', 112, '2024-03-11 04:06:47', 0, NULL, 1),
(17502, 'Dinesh S', '13', '6383854407', '8870713659', 'dk083296@gmail.com', '2001-05-17', 22, '3', '2', 'Sankara Sekher', 'Finance', 12000.00, 2, 30000.00, 25000.00, '107C/7E/12 TMB colony Thoothukudi', 'Porur', '2403110041', '', '2', 'upload_files/candidate_tracker/18774229157_Resume-dinesh.pdf', NULL, '1', '2024-03-11', 2, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '6', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-11 09:46:05', 112, '2024-03-11 04:39:37', 0, NULL, 1),
(17503, 'sreekanth', '5', '9515455663', '', 'g.sreekanthm@gmail.com', '1994-03-01', 30, '2', '2', 'Gorantla VenkataRamudu', 'farmer', 20000.00, 1, 18000.00, 20000.00, 'ap', 'bangalore', '2403110042', '1', '2', 'upload_files/candidate_tracker/65667631240_G Sreekanth resume 01-02-2023-1 (1).pdf', NULL, '2', '2024-03-11', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interview taken by banu mam, she rejects this profile', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-11 10:16:31', 104, '2024-03-11 06:27:25', 0, NULL, 1),
(17504, 'Nikitha KB', '5', '7892139157', '9880879132', 'nikitha0326@gmail.com', '2003-02-03', 21, '2', '2', 'Kalavathi', 'Worker', 400000.00, 2, 0.00, 300000.00, 'Thalagattapura kanakapura main road', 'Thalagattapura kanakapura main road', '2403110043', '1', '1', 'upload_files/candidate_tracker/53850254577_CV_2023091019060514.pdf', NULL, '2', '2024-03-11', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'interview taken by banu mam, she rejects this profile', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-11 10:27:56', 104, '2024-03-11 06:27:51', 0, NULL, 1),
(17505, 'Basavaraj kadakal', '5', '9380512935', '9686551435', 'basavarajkadakal1999@gmail.com', '1998-07-23', 25, '2', '2', 'Sanganna kadakal', 'Farmer', 20000.00, 4, 300000.00, 500000.00, 'Kodekal', 'Kodekal', '2403110044', '1', '2', 'upload_files/candidate_tracker/41488835676_Basavaraj_kadakal_1695131452791.pdf', NULL, '2', '2024-03-11', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'interview taken by banu mam, she rejects the profile', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-11 10:28:46', 104, '2024-03-11 06:28:02', 0, NULL, 1),
(17506, 'Abinaya.s', '17', '9003385309', '6382102204', 'abiabinaya6702@gmail.com', '2009-03-11', 15, '2', '2', 'Simmadhiri', 'Bouncer', 65000.00, 1, 28000.00, 30000.00, 'Chennai', 'Chennai', '2403110045', '31', '2', 'upload_files/candidate_tracker/70708068927_Gray and White Simple Clean Resume (1).pdf', NULL, '1', '2024-03-11', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication OK But Pressure handling in sales and Sustainability Doubts in our role let her check and confirm ', '5', '2', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-11 11:58:52', 1, '2024-03-11 12:10:04', 0, NULL, 1),
(17507, '', '0', '6385446514', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403110046', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-11 12:38:12', 0, NULL, 0, NULL, 1),
(17508, '', '0', '9345177078', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403110047', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-11 12:38:50', 0, NULL, 0, NULL, 1),
(17509, 'Pavithran MJ', '6', '6385446513', '', 'pavithranbalan170@gmail.com', '2001-09-10', 22, '2', '2', 'Jayabalan', 'Weaver', 6000.00, 1, 0.00, 13000.00, '73 kamaraj Nagar 5th cross street thirubuvanam', 'Thirubuvanam', '2403110048', '1', '1', 'upload_files/candidate_tracker/15038334757_Pavithran resume.pdf', NULL, '1', '2024-03-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-11 02:02:08', 112, '2024-03-12 02:52:55', 0, NULL, 1),
(17510, 'A. Kaiser Fathima', '6', '7305371230', '9840696956', 'kaiserfathima8@gmail.com', '2002-09-18', 21, '2', '2', 'Anwaruddin', 'Working in office', 35000.00, 2, 0.00, 20000.00, 'No.8 Badragiri Nagar selavoyal kodungaiyur Chn 51', 'No.8 Badragiri Nagar Selavoyal Kodungaiyur Chn 51', '2403110049', '1', '1', 'upload_files/candidate_tracker/17658978995_Kaiser Fathima CV.pdf', NULL, '1', '2024-03-12', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-11 03:56:55', 112, '2024-03-12 02:51:23', 0, NULL, 1),
(17511, 'Pavithra', '6', '6379521893', '', 'pavithra523@gmail.com', '1998-04-16', 25, '2', '2', 'Palani', 'Farmer', 10000.00, 2, 17000.00, 22000.00, 'Villupuram', 'Chennai', '2403120001', '29', '2', 'upload_files/candidate_tracker/84996193680_Resume(1).pdf', NULL, '1', '2024-03-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 03:53:50', 112, '2024-03-12 02:53:33', 0, NULL, 1),
(17512, 'Suganya m', '6', '8124859839', '7550195879', 'Sugan.m15596@gmail.com', '1996-05-15', 27, '2', '2', 'Manneswaran', 'Carpenter', 100000.00, 1, 320000.00, 500000.00, 'Chennai', 'Chennai', '2403120002', '1', '2', 'upload_files/candidate_tracker/89877055697_Suganya.m.docx', NULL, '1', '2024-03-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not sustain and handle our work pressure no sustainability in her previous exp', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-12 04:11:05', 112, '2024-03-12 03:17:59', 0, NULL, 1),
(17513, 'Ranjith', '5', '7339395855', '9984356869', 'ranjithlokesh2425@gmail.com', '2009-03-12', 15, '2', '2', 'Iyyappan', 'Farmer', 10000.00, 1, 0.00, 18000.00, 'Thiruvarur', 'Chennai', '2403120003', '29', '1', 'upload_files/candidate_tracker/29992481286_resume_1709744575266.pdf', NULL, '1', '2024-03-12', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 04:26:40', 104, '2024-03-12 10:58:03', 0, NULL, 1),
(17514, 'Keerthana M', '5', '8838345157', '', 'keerthanamoorthy2107@gmail.com', '2001-07-21', 22, '3', '2', 'Moorthy S', 'Business', 25000.00, 0, 0.00, 17000.00, 'Tambaram', 'Tambaram', '2403120004', '', '1', 'upload_files/candidate_tracker/11675804052_Keerthana.M.pdf', NULL, '1', '2024-03-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice process only', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-12 04:34:05', 1, '2024-03-12 04:43:08', 0, NULL, 1),
(17515, 'DHEENA P', '6', '8190857335', '', 'dheenasurya333@gmail.com', '2001-03-11', 23, '2', '2', 'Pillaiyar A', 'Agriculture', 15000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2403120005', '29', '1', 'upload_files/candidate_tracker/49996803228_Dheena.pdf', NULL, '1', '2024-03-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 04:34:59', 112, '2024-03-12 02:37:18', 0, NULL, 1),
(17516, '', '0', '9677047060', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403120006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-12 04:40:55', 0, NULL, 0, NULL, 1),
(17517, 'dhilak kumar j', '5', '9944936256', '', 'jeevadhilak@gmail.com', '1999-05-22', 24, '2', '2', 'jeevanandhan n', 'fresher', 20000.00, 2, 0.00, 20000.00, 'chennai', 'thanjavur', '2403120007', '1', '1', 'upload_files/candidate_tracker/10240027186_Dhilak kumar Resume.pdf', NULL, '1', '2024-03-12', 0, '', '3', '59', '2024-03-13', 204000.00, '', '5', '1970-01-01', '1', 'SEleccted for Kannan Tean', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-12 04:45:31', 60, '2024-03-12 07:43:47', 0, NULL, 1),
(17518, 'Jothika p', '6', '6384803728', '', 'Jothikrish530@gmail.com', '2000-10-31', 23, '2', '2', 'Ponraman', 'Farmar', 36000.00, 1, 15000.00, 20000.00, 'Pudukkottai', 'Ashok pillar in chennai', '2403120008', '29', '2', 'upload_files/candidate_tracker/93544737118_Jothika.pdf', NULL, '1', '2024-03-12', 15, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 04:57:16', 112, '2024-03-12 03:36:45', 0, NULL, 1),
(17519, 'Manoj', '13', '9042212112', '7010673591', 'samaero1721@gmail.com', '1999-11-01', 24, '6', '2', 'Nagaraj', 'Former', 20000.00, 1, 0.00, 3.00, 'RAMANATHAPURAM', 'Chennai', '2403120009', '', '1', 'upload_files/candidate_tracker/91808274899_Manoj (1).pdf', NULL, '1', '2024-03-12', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 05:08:59', 112, '2024-03-12 01:22:57', 0, NULL, 1),
(17520, 'Sneha u', '6', '7550140988', '9176189281', 'snehacrazy04@gmail.com', '2001-04-22', 22, '2', '2', 'Sivakami', 'Beautician', 2.00, 1, 3.00, 4.00, 'Chennai', 'Chennai', '2403120010', '29', '2', 'upload_files/candidate_tracker/49504192549_SnehaResume.docx', NULL, '1', '2024-03-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable due to work pressure she left also the salary exp is high not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 05:21:32', 112, '2024-03-13 02:59:52', 0, NULL, 1),
(17521, 'SALOMI', '5', '7200414470', '6379812065', 'salomipappiah@gmail.com', '1994-08-24', 29, '2', '2', 'Pappiah', 'Coolie', 17000.00, 4, 27000.00, 33000.00, 'Chennai', 'Chennai', '2403120011', '1', '2', 'upload_files/candidate_tracker/73753362452_my CV.pdf', NULL, '1', '2024-03-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our sales roles will not sustain and handle our work pressure', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-12 05:22:34', 108, '2024-03-12 01:30:27', 0, NULL, 1),
(17522, 'ASHWIN kumar', '6', '8838852717', '', 'Aswinmassi82@gmail.com', '1998-01-01', 0, '2', '2', 'Saravanan', 'Kancheepuram', 15000.00, 1, 0.00, 14000.00, 'Kancheepuram', 'Kancheepuram', '2403120012', '1', '1', 'upload_files/candidate_tracker/38182106744_ASWIN KUMAR-1-Copy.pdf', NULL, '1', '2024-03-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-12 05:45:21', 112, '2024-03-12 02:56:14', 0, NULL, 1),
(17523, 'santhosh', '13', '8098528857', '9791719095', 'santhoshdurai07@gmail.com', '2002-06-07', 21, '6', '2', 'thanghadurai k', 'sales man', 15000.00, 1, 0.00, 16000.00, 'sankarapuram', 'westmambalam', '2403120013', '', '1', 'upload_files/candidate_tracker/1768710316_Sant.pdf', NULL, '1', '2024-03-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 05:51:05', 112, '2024-03-13 03:17:06', 0, NULL, 1),
(17524, 'Saruhasan sankar', '13', '9976284929', '9159556635', 'saruhasansankar@protonmail.com', '2001-06-16', 22, '3', '2', 'Sankar', 'Highways department', 20000.00, 3, 0.00, 16000.00, 'Cuddalore', 'Ambattur', '2403120014', '', '1', 'upload_files/candidate_tracker/41109869798_saruhasan_resume.pdf', NULL, '1', '2024-03-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 05:51:22', 112, '2024-03-13 03:13:05', 0, NULL, 1),
(17525, 'Venkat Prasad S', '6', '7338912142', '9941319525', 's.venkatprs@gmail.com', '1998-10-17', 25, '2', '2', 'Selvam R', 'Provision Stores', 30000.00, 1, 15000.00, 25000.00, 'Kolathur', 'Kolathur', '2403120015', '29', '2', 'upload_files/candidate_tracker/24145051375_Venkat Prasad S Resume.pdf', NULL, '3', '2024-03-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 06:07:18', 112, '2024-03-14 06:05:35', 0, NULL, 1),
(17526, 'Katherin sagayam', '16', '9500136304', '9677242038', 'Monicadass48@gmail.com', '1999-09-14', 24, '1', '2', 'Arokiya dass', 'Auto driver', 16000.00, 1, 16000.00, 18000.00, 'Vengatesan st purasaiwalkam ch -7', 'Purasaiwallkam', '2403120016', '', '2', 'upload_files/candidate_tracker/96512984577_Resume-4.pdf', NULL, '1', '2024-03-12', 0, '77845', '3', '59', '2024-03-19', 216000.00, '', '3', '2024-10-30', '2', 'Selected for Banu Team in Consultant Role', '3', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 06:09:21', 60, '2024-03-18 06:40:37', 0, NULL, 1),
(17527, 'Jawahar P', '14', '8939218329', '8248862935', 'jawaharjack3@gmail.com', '1999-04-09', 24, '3', '2', 'Pandian', 'Photographer', 25000.00, 1, 18000.00, 35000.00, 'Chennai', 'Chennai', '2403120017', '', '2', 'upload_files/candidate_tracker/36636567270_JawaharP_Resume_2024.pdf', NULL, '1', '2024-03-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-12 06:25:31', 1, '2024-03-12 06:30:54', 0, NULL, 1),
(17528, 'MBS AMUTHESH', '13', '9514446222', '', 'mbsamu222@gmail.com', '2000-09-14', 23, '6', '2', 'Parents', 'Business', 40000.00, 1, 0.00, 15000.00, 'JAYANKONDAM', 'CHENNAI', '2403120018', '', '1', 'upload_files/candidate_tracker/72500192259_MBS Amuthesh Resume.pdf', NULL, '1', '2024-03-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 06:30:03', 112, '2024-03-12 02:58:56', 0, NULL, 1),
(17529, 'Dinesh.S', '14', '7299297662', '7550148148', 'yuvandinesh1898@gmail.com', '1998-08-01', 25, '3', '2', 'Selvavinayagam', 'Car Driver', 20000.00, 1, 18000.00, 35000.00, '1/1 Gandhi street, west mambalam, chennai 600033', '1/1 Gandhi Street, West Mambalam, Chennai 600033', '2403120019', '', '2', 'upload_files/candidate_tracker/48732047968_Dinesh_Resume-1.docx', NULL, '1', '2024-03-12', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 06:30:26', 112, '2024-03-12 02:58:46', 0, NULL, 1),
(17530, 'Muthaiya', '6', '6379753597', '', 'rm476111@gmail.com', '2009-03-12', 0, '2', '2', 'Ramasamy', 'Finance', 30000.00, 1, 0.00, 20000.00, 'Chennai City Corporation', 'Chennai City Corporation', '2403120020', '29', '1', 'upload_files/candidate_tracker/35884883152_Muthaiya_Fresher_Resume (1) (1) (2).pdf', NULL, '3', '2024-03-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles Will not sustain and handle our work pressure', '5', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-12 06:50:10', 112, '2024-03-13 04:33:01', 0, NULL, 1),
(17531, 'Swathi Priya K', '4', '8939231418', '', 'Swathipriyak276@gmail.com', '1999-09-14', 24, '2', '2', 'Kalivaradhan P', 'Post mail driver (retired )', 28000.00, 1, 14000.00, 18000.00, 'Keelkattalai Chennai', 'Keelkattalai', '2403120021', '29', '2', 'upload_files/candidate_tracker/32889861553_Swathi priya K_20240211_185118_0000.pdf', NULL, '1', '2024-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-12 08:12:00', 1, '2024-03-12 08:36:50', 0, NULL, 1),
(17532, 'Gowtham Priyan P', '6', '8668017173', '', 'gowthamrockyg@gmail.com', '2002-01-18', 22, '2', '1', 'Divya Gowtham', 'BPO', 25.00, 0, 0.00, 20.00, 'Chennai', 'Chennai Thuraipakkam', '2403120022', '1', '1', 'upload_files/candidate_tracker/33976188521_Gowtham G.pdf', NULL, '1', '2024-03-12', 0, '', '3', '59', '2024-03-13', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-12 09:06:22', 60, '2024-03-12 07:41:54', 0, NULL, 1),
(17533, 'Ranjith Kumar G', '4', '9500196236', '', 'ranji1407@gmail.com', '1997-07-14', 26, '2', '2', 'Gopalakrishnan', 'MTC driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2403120023', '29', '1', 'upload_files/candidate_tracker/52455180277_RESUME.pdf', NULL, '1', '2024-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-12 09:12:05', 1, '2024-03-12 09:15:32', 0, NULL, 1),
(17534, 'Saif Khan M A', '4', '8015677719', '', 'm.a.saifkhan93@gmail.com', '1993-10-06', 30, '2', '2', 'Ameer khan', 'Retired', 25000.00, 1, 375000.00, 375000.00, 'Chennai', 'Chennai', '2403120024', '29', '2', 'upload_files/candidate_tracker/68331479285_SAIF KHAN M A RESUME 2024.pdf', NULL, '1', '2024-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-12 09:48:47', 1, '2024-03-12 10:10:59', 0, NULL, 1),
(17535, 'prathieba', '6', '6379755370', '', 'preethimel9299@gmail.com', '1999-11-10', 24, '2', '2', 'prabimary', 'home maker', 24000.00, 1, 25000.00, 25000.00, 'bharathiyar nagar ennore beach road chennai', 'bharathiyar nagar ennore beach road chennai', '2403120025', '1', '2', 'upload_files/candidate_tracker/64638939684_Prathieba M Resume .pdf', NULL, '1', '2024-03-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-12 10:00:56', 104, '2024-03-14 11:41:57', 0, NULL, 1),
(17536, 'Jayaraman R', '22', '9994935197', '7502575794', 'jayaramanrjaya45@gmail.com', '2000-03-03', 24, '2', '2', 'Raja', 'Farmer', 10000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2403120026', '11', '1', 'upload_files/candidate_tracker/16843046460_CV_JAYARAMAN R.pdf', NULL, '1', '2024-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-12 10:08:50', 1, '2024-03-12 10:26:18', 0, NULL, 1),
(17537, '', '0', '8610170952', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403120027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-12 10:29:30', 0, NULL, 0, NULL, 1),
(17538, '', '0', '9500363624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403120028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-12 11:35:06', 0, NULL, 0, NULL, 1),
(17539, '', '0', '7010582329', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403120029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-12 11:50:40', 0, NULL, 0, NULL, 1),
(17540, 'N.Pavithra', '4', '6281019912', '8825616924', 'bujjinanisj04@gmail.com', '1999-10-11', 24, '2', '1', 'N.Kesavamoorthy', 'JA(Junior Assistant)', 200000.00, 1, 22000.00, 25000.00, 'Thiruvallur', 'Thiruvallur', '2403120030', '29', '2', 'upload_files/candidate_tracker/69842805384_N.Pavithra_11_03_2024_08_13_36_AM.pdf', NULL, '1', '2024-03-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-12 11:53:56', 1, '2024-03-12 12:01:25', 0, NULL, 1),
(17541, 'RAHUL GHOSH', '5', '6297581494', '', 'irahulghosh02@gmail.com', '2002-05-01', 21, '6', '2', 'Radha Kanto Ghosh', 'Farmer', 90000.00, 1, 0.00, 20000.00, 'Ghoshpara, Murshidabad, West Bengal', 'BTM layout, Stage 2', '2403120031', '', '1', 'upload_files/candidate_tracker/97713133071_Resume (1).pdf', NULL, '2', '2024-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-12 01:03:59', 1, '2024-03-12 01:20:09', 0, NULL, 1),
(17542, 'Keerthana V', '33', '9176438397', '7845870608', 'Keerthana07023@gmail.com', '2001-07-07', 22, '3', '2', 'Venuraj G', 'Sales manager', 40000.00, 1, 0.00, 20000.00, 'Chetpet, chennai', 'Chetpet, chennai', '2403120032', '', '2', 'upload_files/candidate_tracker/70963655742_Keerthanas Resume 2.pdf', NULL, '1', '2024-03-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Selected for MF role 5050 in MF Sales xxamp Support Need to confirm the DOJ', '4', '1', '0', '1', '8', '0', '2', '2024-03-15', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-12 01:16:33', 1, '2024-03-12 01:24:30', 0, NULL, 1),
(17543, 'SEELAM.AKASH', '6', '9360774291', '8838084992', 'akash9360774291@gmail.com', '2003-05-01', 20, '2', '2', 'S.KOTESWARA RAO', 'MECHANIC', 15000.00, 1, 0.00, 17000.00, 'K.K.NAGAR', 'K.K.NAGAR', '2403120033', '1', '1', 'upload_files/candidate_tracker/35702542898_SEELAM.AKASH RESUME.pdf', NULL, '1', '2024-03-13', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-03-12 01:38:44', 112, '2024-03-13 04:02:08', 0, NULL, 1),
(17544, 'mohammed ibrahim sheriff', '4', '7338783495', '', 'legendibrahim1432@gmail.com', '2005-10-03', 18, '1', '2', 'khatun bee', 'house wife', 15000.00, 2, 15000.00, 20000.00, 'west mambalam', 'west mambalam', '2403120034', '', '2', 'upload_files/candidate_tracker/93092021649_SAVE_20240312_190136.pdf', NULL, '1', '2024-03-13', 0, 'candidate', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-12 01:40:42', 1, '2024-03-12 01:54:52', 0, NULL, 1),
(17545, 'Dinesh R', '6', '8973488172', '', 'Dineshsankar9791@gmail.com', '1999-11-12', 24, '2', '2', 'Ramesh', 'Business', 35000.00, 3, 16500.00, 21000.00, 'Kallakurichi', 'Padi, ambathur', '2403130001', '29', '2', 'upload_files/candidate_tracker/19685400855_DINESH 2024 RESUME NEW FEB.pdf', NULL, '1', '2024-03-14', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok pls confirm the joining date xxamp Salary ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-13 04:13:53', 112, '2024-03-14 03:03:59', 0, NULL, 1),
(17546, 'ELAKKIYA E', '6', '9345880970', '', 'elakkiyaela09@gmail.com', '1999-07-09', 24, '2', '2', 'Elayaperumal', 'Business', 25000.00, 0, 15000.00, 20000.00, 'Salem', 'Salem', '2403130002', '29', '2', 'upload_files/candidate_tracker/6320640774_Elakkiya_E_resume (2) (1) (1) (1).pdf', NULL, '1', '2024-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-13 04:21:26', 1, '2024-03-13 05:21:07', 0, NULL, 1),
(17547, 'Gunasekaran G', '6', '6379272649', '9788763545', 'gunaguru2000@gmail.com', '2000-11-21', 23, '2', '2', 'Gurumurthy M', 'Bank officer', 40000.00, 1, 18000.00, 25000.00, 'Pudukkottai', 'Chennai', '2403130003', '29', '2', 'upload_files/candidate_tracker/87416608210_Gunasekaran.pdf', NULL, '1', '2024-03-13', 0, '', '7', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate is ok pls confirm the joining date xxamp Salary .', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-13 04:21:38', 1, '2024-03-13 05:44:43', 0, NULL, 1),
(17548, 'MANIVEL M', '13', '8220543096', '9894743296', 'manivel462001@gmail.com', '2001-06-04', 22, '3', '2', 'MOORTHI', 'Farmer', 20.00, 1, 0.00, 20.00, '1/149 East Street,sengappadai,Madurai-625704', 'No 3 east karikalan 1st street adambakkam 600088', '2403130004', '', '1', 'upload_files/candidate_tracker/68914333659_MANIVEL JAVA.pdf', NULL, '1', '2024-03-13', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-13 05:21:43', 112, '2024-03-13 02:57:59', 0, NULL, 1),
(17549, 'Nithya .k', '13', '9790817558', '9710248737', 'Nithyakuppan16@gamil.com', '2001-11-16', 22, '3', '2', 'Kuppan', 'Sales man', 12000.00, 2, 0.00, 20.00, 'No :126/B, 3 Rd cross street,Krishna Nagar', 'No:126/B,3 Rd cross street, Krishna Nagar', '2403130005', '', '1', 'upload_files/candidate_tracker/30312500186_FAANGPath_Simple_Template (3)-1.pdf', NULL, '1', '2024-03-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-13 05:22:19', 112, '2024-03-13 03:10:42', 0, NULL, 1),
(17550, 'alwin donald', '6', '8675951781', '6380601628', 'aallwin10@gmail.com', '1999-03-21', 24, '3', '2', 'antelin rajan', 'driver', 30000.00, 1, 16500.00, 20000.00, 'kanyaumari', 'ambattu', '2403130006', '', '2', 'upload_files/candidate_tracker/45997048754_Alwin_Donald_CV_2023-09-23-014530-1699008821594.pdf', NULL, '1', '2024-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-13 05:25:18', 1, '2024-03-13 05:34:53', 0, NULL, 1),
(17551, 'Satheesh P', '31', '8438145417', '8438815417', 'satheeshpalani16@gmail.com', '1999-06-16', 24, '3', '2', 'Palanisamy D', 'Cooli', 70000.00, 3, 3.50, 4.00, 'Namakkal', 'Namakkal', '2403130007', '', '2', 'upload_files/candidate_tracker/44901272089_Satheesh.pdf', NULL, '1', '2024-03-13', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2024-04-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-13 05:26:35', 112, '2024-04-01 06:19:33', 0, NULL, 1),
(17552, '', '0', '9345839095', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403130008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-13 05:43:44', 0, NULL, 0, NULL, 1),
(17553, 'R BALA MURUGAN', '6', '8838860579', '9360979818', '1182000bm@gmail.com', '2000-08-11', 23, '2', '2', 'K Rama Krishnan (father)', 'Collection department', 50000.00, 1, 0.00, 15000.00, 'Nachiyappan street mylapore chennai 04', 'Nachiyappan street mylapore chennai 04', '2403130009', '1', '1', 'upload_files/candidate_tracker/46987069626_BALAMURUGAN R.pdf', NULL, '1', '2024-03-13', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-13 05:44:15', 112, '2024-03-13 06:13:58', 0, NULL, 1),
(17554, 'Nishanthini D', '6', '9176151559', '7092910082', 'nishaammu1225@gmail.com', '2002-09-12', 21, '1', '2', 'Deenadayalan', 'Business', 100000.00, 1, 0.00, 15000.00, 'Ayanavaram', 'Ayanavaram', '2403130010', '', '1', 'upload_files/candidate_tracker/27961740648_Nishanthini.docx', NULL, '1', '2024-03-13', 0, '123', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-13 06:09:39', 112, '2024-03-13 06:33:39', 0, NULL, 1),
(17555, 'Soantharrajan K', '5', '6369154653', '', 'sountharr74@gmail.com', '2000-06-25', 23, '2', '2', 'Kamaraj P', 'Farmer', 20000.00, 1, 0.00, 17000.00, 'Dharmapuri', 'Chennai', '2403130011', '1', '1', 'upload_files/candidate_tracker/47714072224_soundharrajan.pdf', NULL, '3', '2024-03-13', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-03-13 06:37:56', 112, '2024-03-13 04:04:07', 0, NULL, 1),
(17556, 'Mohamed shafruj', '6', '7397475152', '9176755152', 'b.shafruj786@gmail.com', '1996-12-08', 27, '2', '2', 'Bruhandeen', 'Retired business', 200000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2403130012', '32', '1', 'upload_files/candidate_tracker/41319256430_MohamedShafruj.pdf', NULL, '1', '2024-03-13', 0, '', '3', '59', '2024-03-19', 288000.00, '', '5', '1970-01-01', '1', 'Selected for santhosh Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-13 06:47:51', 60, '2024-03-19 10:25:17', 0, NULL, 1),
(17557, 'Nivetha Manoharan', '6', '8531944385', '6379744954', 'nivecorporate6@gmail.com', '1998-06-04', 25, '2', '2', 'Latha Manoharan', 'Farmer', 12000.00, 0, 14000.00, 18000.00, 'Ramanathapuram', 'Ramanathapuram', '2403130013', '1', '2', 'upload_files/candidate_tracker/97076145642_Nivetha.pdf', NULL, '1', '2024-03-13', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-13 07:05:45', 112, '2024-03-13 06:26:17', 0, NULL, 1),
(17558, 'Omkar Kodavatikanti', '33', '9390724300', '', 'omkar.kodavatikanti@gmail.com', '2009-03-13', 0, '6', '2', 'S/o Balasubramanyam naidu', 'Farmer', 20000.00, 0, 0.00, 20000.00, 'Bengaluru', 'Bengaluru', '2403130014', '', '1', 'upload_files/candidate_tracker/37501350718_DOC-20231007-WA0003..pdf', NULL, '2', '2024-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-13 08:03:44', 1, '2024-03-13 08:07:21', 0, NULL, 1),
(17559, 'Jolireddy Nandini', '33', '9390235779', '6302387424', 'nandiniadinarayana3@gmail.com', '2000-12-23', 23, '2', '2', 'Jolireddy Adinarayana', 'Weaver', 100000.00, 0, 0.00, 2.80, 'Kotanka (v) Anantapur (dist)', 'Bangalore', '2403130015', '1', '1', 'upload_files/candidate_tracker/86525067101_JOLIREDDY NANDINI.pdf', NULL, '2', '2024-03-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2024-03-13 08:28:04', 1, '2024-03-13 08:34:00', 0, NULL, 1),
(17560, 'M.Adhithya', '6', '9176332960', '9884697708', 'Adhithyam46@gmail.com', '2002-05-13', 21, '2', '2', 'Marimuthu', 'Company worker', 10000.00, 1, 0.00, 15000.00, '151/1 Mandhalveliyamman st,orathur,kavanur', 'Potheri', '2403130016', '29', '1', 'upload_files/candidate_tracker/7763059446_adhithiya m.pdf', NULL, '1', '2024-03-14', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-13 08:31:29', 112, '2024-03-14 04:47:31', 0, NULL, 1),
(17561, 'vidhya', '6', '8438666042', '8940530372', 'vidhyamurugesan299@gmail.com', '2001-06-12', 22, '2', '1', 'ragulan', 'iam fresher', 50000.00, 0, 0.00, 18000.00, 'tanjavour', 'kk nagar chennai', '2403130017', '29', '1', 'upload_files/candidate_tracker/90857747329_Vidhya Resume.pdf', NULL, '1', '2024-03-14', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate commnunication is good , but her sustatinity is doubt', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-13 09:09:04', 112, '2024-03-14 05:13:12', 0, NULL, 1),
(17562, 'Aditya Patil', '4', '7019394533', '7406794989', 'patiladitya7478@gmail.com', '1994-01-23', 30, '3', '2', 'Sanganagouda patil', 'Agriculturist', 50000.00, 0, 35000.00, 45000.00, 'Bijapur', 'Bangalore', '2403130018', '', '2', 'upload_files/candidate_tracker/92906966268_Aditya_Resume.pdf', NULL, '1', '2024-03-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-13 09:12:05', 1, '2024-03-13 09:18:10', 0, NULL, 1),
(17563, 'Mageshwaran P', '14', '6380081241', '', 'mageshmani003@gmail.com', '2000-11-02', 23, '6', '2', 'Parent', 'Shopkeeper', 12000.00, 1, 0.00, 3.00, 'Tirunelveli', 'Chennai', '2403130019', '', '1', 'upload_files/candidate_tracker/36408510801_P.Mageshwaran_Front-End .pdf', NULL, '1', '2024-03-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-13 09:15:34', 112, '2024-03-13 04:06:20', 0, NULL, 1),
(17564, 'K M PRADEEPAN', '9', '9884884787', '', 't20.pradeepan@gmail.com', '1993-06-24', 30, '1', '1', 'REVATHY K', 'House wife', 15000.00, 0, 425000.00, 650000.00, 'Chennai', 'Chennai', '2403130020', '', '2', 'upload_files/candidate_tracker/77920700726_Pradeepan.pdf', NULL, '1', '2024-03-13', 0, 'P1070', '3', '59', '2024-04-08', 530000.00, '', '5', '1970-01-01', '1', 'Selected for Team Lead Role in Direct Marketing', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-13 09:49:23', 60, '2024-04-02 06:48:46', 0, NULL, 1),
(17565, 'Vivek Kumar', '5', '7010154677', '9150099385', 'vivekkumar28433@gmail.com', '1991-12-28', 32, '3', '1', 'Mahalakshmi', 'House Wife', 30000.00, 1, 28600.00, 34000.00, 'Chennai', 'Chennai', '2403130021', '', '2', 'upload_files/candidate_tracker/68612714238_Vivek_Kumar Updated Resume.pdf', NULL, '1', '2024-03-13', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-13 10:40:03', 1, '2024-03-13 10:43:28', 0, NULL, 1),
(17566, 'vignesh', '6', '6382985850', '', 'chandiran944@gmail.com', '2000-08-31', 23, '2', '2', 'chandiran', 'real estate', 30000.00, 3, 20000.00, 25000.00, 'chennai', 'chennai', '2403130022', '31', '2', 'upload_files/candidate_tracker/98641606951_vignesh.pdf', NULL, '1', '2024-03-13', 0, '', '5', '102', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Sales ', '5', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-13 11:02:36', 1, '2024-03-13 12:14:39', 0, NULL, 1),
(17567, 'ramkumar', '5', '9080482615', '', 'ramauromother@gmail.com', '1997-04-05', 26, '2', '2', 'ragendran', 'hr manager', 100000.00, 1, 17000.00, 20000.00, 'chennai', 'chennai', '2403130023', '1', '2', 'upload_files/candidate_tracker/1354301284_Ram (2).pdf', NULL, '1', '2024-03-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-13 12:40:47', 112, '2024-03-14 04:59:33', 0, NULL, 1),
(17568, 'Bhuvaneshwari m', '9', '9952935925', '', 'bhuvaneshwarisangeetha@gmail.com', '1996-07-25', 27, '2', '2', 'Munusamy k', 'Security', 200000.00, 1, 570000.00, 750000.00, 'Chennai', 'Chennai', '2403130024', '1', '2', 'upload_files/candidate_tracker/78233925054_Bhuvana-Updated Cv.pdf', NULL, '1', '2024-03-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No sustainability Communication No will not sustain in our roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-13 12:49:50', 112, '2024-03-14 05:14:33', 0, NULL, 1),
(17569, 'Saravana', '13', '8903801304', '8667201732', 'saravanachandran005@gmail.com', '2001-06-07', 22, '3', '2', 'Chandran', 'Business', 30000.00, 1, 25000.00, 30000.00, 'No 3 east karikalan, 1st Street, Adambakkam', 'No 3 East Karikalan, 1st Street, Adambakkam', '2403140001', '', '2', 'upload_files/candidate_tracker/61444575697_SARAVANA CHANDRAN (2).pdf', NULL, '1', '2024-03-14', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-14 04:48:57', 112, '2024-03-14 04:42:21', 0, NULL, 1),
(17570, 'r.prabhu', '6', '9080356567', '', 'joumarcelo2321@gmail.com', '2002-05-07', 21, '2', '2', 'raghu', 'icf railway', 45000.00, 1, 0.00, 15000.00, 'chetpet', 'shennoy nagar', '2403140002', '1', '1', 'upload_files/candidate_tracker/70933358778_ PRABHU .R  Resume.pdf', NULL, '1', '2024-03-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-14 05:01:06', 112, '2024-03-14 05:10:17', 0, NULL, 1),
(17571, 'Gopinath M T', '5', '9176600291', '9940499563', 'gopijo44@gmail.com', '1997-04-04', 26, '2', '2', 'Thiruvenkadam', 'record manager', 60000.00, 1, 0.00, 27000.00, 'Chennai', 'Chennai', '2403140003', '1', '2', 'upload_files/candidate_tracker/58586956970_Gopinath.pdf', NULL, '1', '2024-03-14', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No skills in sales industry ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-14 05:02:15', 108, '2024-03-14 05:57:56', 0, NULL, 1),
(17572, 'Mini. T', '6', '9150251018', '9042733646', 'preethimel9299@gmail.com', '1999-04-02', 24, '2', '2', 'Thangaraj', 'Building Contractor', 30000.00, 2, 0.00, 15000.00, 'Valluvar nagar ennore chennai-57', 'Valluvar nagar', '2403140004', '1', '1', 'upload_files/candidate_tracker/94596900595_DocScanner Mar 13, 2024 1-06 PM.pdf', NULL, '1', '2024-03-14', 0, '', '3', '59', '2024-03-18', 164208.00, '', '3', '2024-08-07', '1', 'Selected for Babu Team Much preferred to work in Non voice process Sustainability need to check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-14 06:00:59', 60, '2024-03-16 06:47:14', 0, NULL, 1),
(17573, 'S.Narayana sivanraja', '6', '9363211087', '', 'thanga97devi@gmail.com', '2000-09-11', 23, '2', '2', 'Sivaraman', 'Business', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2403140005', '1', '1', 'upload_files/candidate_tracker/51998873181_Resume.pdf', NULL, '1', '2024-03-14', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-14 06:48:38', 104, '2024-03-14 06:20:18', 0, NULL, 1),
(17574, 'Yash Nichani M', '6', '9840246620', '7550252394', 'yashnichani9999@gmail.com', '1999-11-10', 24, '2', '2', 'Mukesh Nichani M', 'Business', 50000.00, 0, 0.00, 20000.00, 'Tnagar Chennai', 'Tnagar Chennai', '2403140006', '29', '1', 'upload_files/candidate_tracker/16570649207_Yash Nichani M_22-Aug-23_20.15.21.pdf', NULL, '1', '2024-03-14', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate performance and communication is not good , also he is not able to go for outside calls ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-14 07:02:42', 112, '2024-03-14 03:05:51', 0, NULL, 1),
(17575, 'Karthikraj R', '26', '7598226549', '9940476149', 'karthikrajr1987@gmail.com', '1987-11-17', 36, '1', '2', 'Rajaseharan', 'Retired', 15000.00, 1, 19000.00, 22000.00, 'Tambaram', 'Tambaram', '2403140007', '', '2', 'upload_files/candidate_tracker/11169591185_RESUME karthikraj (1).docx', NULL, '1', '2024-03-14', 0, 'P1418', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles no communication Stamerring a lot ', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-14 07:13:18', 112, '2024-03-14 05:44:54', 0, NULL, 1),
(17576, 'Syed Nijamudeen', '6', '9003209451', '', 'yednijamudeen143@gmail.com', '2001-12-18', 22, '2', '2', 'syed samsudeen', 'Business', 50000.00, 0, 0.00, 25000.00, 'perambur chennai', 'perambur chennai', '2403140008', '1', '1', 'upload_files/candidate_tracker/93208729655_syednijamresumenew.pdf', NULL, '1', '2024-10-29', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication and convincing skill is low and then he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1066', '5151', '1970-01-01', 1, '2024-03-14 07:13:30', 104, '2024-10-29 06:32:00', 0, NULL, 1),
(17577, 'Manoj Kumar s', '15', '9344280517', '9841489846', 'maalimanoj07@gmail.com', '2002-09-07', 21, '3', '2', 'Sundar raj A', 'Printing press in corporation', 200000.00, 1, 0.00, 13000.00, 'Anna nagar west', 'Anna nagar west', '2403140009', '', '1', 'upload_files/candidate_tracker/4512913217_Manoj Kumar cv.docx', NULL, '1', '2024-03-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-14 08:12:10', 112, '2024-03-14 04:43:06', 0, NULL, 1),
(17578, 'Channappa', '4', '8151864870', '7975620297', 'channappa0056@gmail.com', '1999-07-31', 24, '3', '2', 'Channu', '.', 15000.00, 2, 22000.00, 250000.00, 'Banswadi', 'Banswadi', '2403140010', '', '2', 'upload_files/candidate_tracker/63548412171_channappa resume.pdf', NULL, '1', '2024-03-14', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-14 09:08:42', 1, '2024-03-14 09:19:00', 0, NULL, 1),
(17579, 'Brahma Reddy M', '6', '6382138176', '', 'brammarohit27@gmail.com', '2002-10-27', 21, '2', '2', 'Raja reddy M', 'Transportation', 200000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2403140011', '29', '1', 'upload_files/candidate_tracker/21309165588_BRAMHA REDDY RESUME-1.pdf', NULL, '1', '2024-03-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-14 09:55:49', 108, '2024-03-15 05:54:51', 0, NULL, 1),
(17580, 'Hemachandran.M', '13', '7604921240', '', 'hemachandran7100@gmail.com', '2001-10-11', 22, '3', '2', 'Manohar B k', 'Supervisor', 40000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2403140012', '', '1', 'upload_files/candidate_tracker/29068716661_resumechandran.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-14 12:04:02', 112, '2024-03-26 05:42:08', 0, NULL, 1),
(17581, 'Reshmaa Babu', '6', '9791083086', '', 'reshmaababu0321@gmail.com', '2001-05-07', 22, '2', '2', 'Babu kesavan', 'Car driver', 25000.00, 1, 18000.00, 16000.00, 'Chennai', 'Chennai', '2403140013', '29', '2', 'upload_files/candidate_tracker/63914488810_Reshmaa Babu..pdf', NULL, '1', '2024-03-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-14 02:27:25', 112, '2024-03-15 12:48:59', 0, NULL, 1),
(17582, 'Mohamed ashik', '6', '6382118804', '9566307568', 'ashikashik0607@gmail.com', '2000-06-07', 23, '2', '2', 'Mohamed ansari .E', 'Auto driver', 20000.00, 2, 0.00, 18000.00, 'Cuddalore', 'Cuddalore', '2403150001', '32', '1', 'upload_files/candidate_tracker/98504763643_ASHIK.docx', NULL, '3', '2024-03-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-15 02:16:41', 112, '2024-03-15 12:51:43', 0, NULL, 1),
(17583, 'Rahul KR', '6', '7904016385', '7397433449', 'rahulramasamy2499@gmail.com', '1999-06-24', 24, '2', '2', 'Ramasamy K', 'Daily wages', 20000.00, 1, 0.00, 16000.00, 'Aruppukottai', 'Chennai, Thousand lights', '2403150002', '29', '1', 'upload_files/candidate_tracker/20870068969_Rahul Resume.pdf', NULL, '1', '2024-03-15', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-15 04:00:36', 112, '2024-03-15 12:52:24', 0, NULL, 1),
(17584, 'Jeevanantham K', '23', '9159137213', '9159822529', 'jeevananthamk88@gmail.com', '2002-01-13', 22, '3', '2', 'Kumar', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Ambur, Tirupattur.', 'Tambaram, Chennai.', '2403150003', '', '1', 'upload_files/candidate_tracker/95237150520_JEEVA.CV (3).pdf', NULL, '1', '2024-03-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-15 04:40:04', 1, '2024-03-15 05:08:04', 0, NULL, 1),
(17585, 'Muthukamatchi', '13', '9363586407', '', 'kamatchimuthu958@gmail.com', '1996-08-22', 27, '3', '2', 'Boominathan M', 'Driver', 20000.00, 0, 0.00, 10000.00, 'Thiruvadanai, Ramnad.', 'Saithapet, Chennai.', '2403150004', '', '1', 'upload_files/candidate_tracker/66453482635_Muthukamatchi Resume.pdf', NULL, '1', '2024-03-15', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-15 04:54:34', 112, '2024-03-15 04:49:07', 0, NULL, 1),
(17586, 'Rubini.S.L', '23', '9710004225', '9884501743', 'rubinisl593@gmail.com', '1993-07-05', 30, '3', '1', 'R.Senthilkumar', 'TVS brakes India pvt ltd, Quality Module', 35000.00, 2, 0.00, 25000.00, 'No.13/b,Sri kamatchi Avenue,Mangadu, Chennai.', 'No.13/b,Sri kamatchi Avenue,Mangadu,Chennai.', '2403150005', '', '1', 'upload_files/candidate_tracker/5834715452_Ruby Resume (2)_240315_105907.pdf.PDF', NULL, '1', '2024-03-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-15 04:58:14', 1, '2024-03-15 05:34:07', 0, NULL, 1),
(17587, 'Shaun Felcy', '6', '9176190272', '8925175102', 'shaunfelcy@gmail.com', '2003-06-16', 20, '2', '2', 'joseph', 'supervisor', 18.00, 1, 0.00, 13.00, 'Chennai', 'Chennai', '2403150006', '1', '1', 'upload_files/candidate_tracker/26412569703_SHAUN FELCY (1) resume.docx', NULL, '1', '2024-03-15', 0, '', '3', '59', '2024-03-19', 164208.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-15 05:17:13', 60, '2024-03-18 07:42:39', 0, NULL, 1),
(17588, 'Sujith Kumar', '23', '8825498596', '7708906007', 'sujithkumar00016@gmail.com', '1996-09-10', 27, '1', '2', 'S M KUMAR', 'Indian Bank Senior Manager Retired', 80000.00, 0, 0.00, 20000.00, 'Padur, OMR, Chennai', 'Padur, OMR, Chennai.', '2403150007', '', '1', 'upload_files/candidate_tracker/63191513188_Sujith Kumar.pdf', NULL, '1', '2024-03-15', 0, '0016', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-15 05:19:20', 1, '2024-03-15 06:11:22', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17589, 'mandira', '17', '9677175547', '', 'mandira361@gmail.com', '1996-03-05', 28, '2', '2', 'meenakshi', 'homemaker', 10000.00, 1, 380000.00, 450000.00, 'chennai perambur', 'chennai', '2403150008', '1', '2', 'upload_files/candidate_tracker/63104259517_Mandira CSE.pdf', NULL, '1', '2024-03-15', 0, '', '3', '59', '2024-03-19', 384000.00, '', '5', '1970-01-01', '1', 'Selected for Santhosh Team in Staf  Role', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-15 05:53:59', 60, '2024-03-19 10:12:23', 0, NULL, 1),
(17590, 'sneha', '6', '9442697609', '9715847960', 'snehajoseph27297@gmail.com', '1997-02-27', 27, '2', '1', 'ruban king', 'service manager', 30000.00, 2, 0.00, 25000.00, 'thiruvarur', 'chennai', '2403150009', '1', '1', 'upload_files/candidate_tracker/34608578438_sneha (1).pdf', NULL, '1', '2024-03-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-15 05:58:08', 112, '2024-03-15 01:21:20', 0, NULL, 1),
(17591, 'NIVYA G', '6', '9080249549', '7550160839', 'nivyaganesh1966@gmail.com', '2000-01-03', 24, '2', '2', 'Ganesh', 'Printer', 12000.00, 0, 0.00, 15000.00, 'chennai', 'Chennai', '2403150010', '1', '1', 'upload_files/candidate_tracker/94270491969_Nivya resume.docx', NULL, '1', '2024-03-15', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sales not interested', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-15 05:58:46', 112, '2024-03-15 04:47:41', 0, NULL, 1),
(17592, '', '0', '9384600873', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403150011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-15 06:34:57', 0, NULL, 0, NULL, 1),
(17593, 'Balagurunathan', '23', '9003662700', '', 'balagurunathan110@gmail.com', '2009-03-15', 0, '6', '2', 'Thirumoorthy. N', 'Farmer', 100000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2403150012', '', '1', 'upload_files/candidate_tracker/56500708262_Balagurunathan .T_Resume .pdf', NULL, '1', '2024-03-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-15 07:14:40', 1, '2024-03-15 07:20:30', 0, NULL, 1),
(17594, 'Zoya fahima', '20', '8072945535', '', 'Zarafahim515@gmail.com', '1991-05-10', 32, '2', '2', 'Ismail', 'Leather cutter', 3.00, 0, 0.00, 5.00, 'Madhavaram', 'Madhavaram', '2403150013', '29', '2', 'upload_files/candidate_tracker/16510991528_fahima cv2.docx', NULL, '1', '2024-03-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-15 10:01:41', 112, '2024-03-15 04:42:46', 0, NULL, 1),
(17595, 'Vinodh Kumar Vasudevan', '11', '9884950077', '', 'itsvinothkumarv@gmail.com', '1990-11-07', 33, '3', '1', 'Babitha', 'House wife', 1.00, 1, 0.00, 10.00, 'Chennai', 'Chennai', '2403150014', '', '2', 'upload_files/candidate_tracker/69418040937_Resume_ Vkv - 2024.pdf', NULL, '1', '2024-03-15', 60, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-15 10:05:36', 1, '2024-03-15 10:09:48', 0, NULL, 1),
(17596, '', '0', '6381900370', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403150015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-15 12:14:09', 0, NULL, 0, NULL, 1),
(17597, 'Vijay', '6', '9094499768', '', 'Vijayravi1098@gmail.com', '1998-01-10', 26, '2', '1', 'Ravi', 'Daily labour', 200000.00, 1, 20000.00, 30000.00, 'Pallikaranai', 'Pallikaranai', '2403150016', '29', '2', 'upload_files/candidate_tracker/98198640759_VIJAY CSR CV.pdf', NULL, '1', '2024-03-18', 30, '', '1', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-15 12:38:30', 85, '2024-03-18 07:00:49', 0, NULL, 1),
(17598, 'Iswarya sekar', '20', '6379311982', '9444554686', 'iswaryasekar2329@gmail.com', '2000-06-29', 23, '3', '2', 'Sekar', 'Transportation', 50000.00, 1, 0.00, 17000.00, 'Thiruvottriyur', 'Thiruvottriyur', '2403150017', '', '2', 'upload_files/candidate_tracker/60003756515_ishu.pdf', NULL, '1', '2024-03-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-15 02:36:46', 85, '2024-03-18 07:02:54', 0, NULL, 1),
(17599, 'Viswas M', '6', '9677924457', '6383351252', 'vmviswas@gmail.com', '1999-12-23', 24, '2', '2', 'Nil', 'Nil', 350000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2403150018', '1', '1', 'upload_files/candidate_tracker/41005330556_VISWAS_M_Resume_9 (1).pdf', NULL, '1', '2024-03-16', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-15 02:42:54', 108, '2024-03-16 12:59:58', 0, NULL, 1),
(17600, 'Praveen K', '4', '7200643401', '', 'Prawinkumar391995@gmail.com', '1995-09-03', 28, '6', '2', 'Kumar S', 'Real estate', 100000.00, 1, 20000.00, 23000.00, 'ambattur', 'ambattur', '2403160001', '', '2', 'upload_files/candidate_tracker/5895138417_Prav.docx', NULL, '1', '2024-03-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-16 05:51:38', 1, '2024-03-16 05:54:50', 0, NULL, 1),
(17601, 'Kosalaraman', '4', '9360433075', '9940997896', 'Kosalaramanhariharan@gmail.com', '2003-05-17', 20, '2', '2', 'Hariharan', 'Farmer', 10000.00, 1, 0.00, 12000.00, 'Saliyamangalam', 'Saliyamangalam', '2403160002', '1', '1', 'upload_files/candidate_tracker/79277070668_Grey Clean CV Resume Photo.pdf', NULL, '1', '2024-03-16', 0, '', '3', '59', '2024-03-20', 152400.00, '', '5', '1970-01-01', '2', 'Selected for Sithy Team in Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-16 06:55:12', 60, '2024-03-19 08:08:23', 0, NULL, 1),
(17602, 'Sivapriya', '6', '9344145838', '9626170733', 'Sivapriyas082@gmail.com', '2000-02-20', 24, '2', '2', 'Selvam', 'Business', 500000.00, 1, 450000.00, 500000.00, 'Madurai', 'Chennai', '2403160003', '32', '2', 'upload_files/candidate_tracker/51243194130_Sivapriya 12345.pdf', NULL, '1', '2024-03-16', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-16 07:13:47', 108, '2024-03-16 03:13:55', 0, NULL, 1),
(17603, 'Sowmiya b', '6', '8838221971', '9360451304', 'sowmiyab9922@gmail.com', '1999-11-22', 24, '2', '2', 'Bhuvaneshwari b', 'Housewife', 2.50, 1, 0.00, 18000.00, 'Ayanavaram', 'Ayanavaram', '2403160004', '1', '2', 'upload_files/candidate_tracker/67387630632_Resume_RESUME_Format6.pdf', NULL, '1', '2024-03-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-03-16 07:17:40', 154, '2025-05-15 01:10:15', 0, NULL, 1),
(17604, 'pavankumar', '11', '6374596189', '7358558562', 'pavankumar6123@gmail.com', '2002-03-19', 21, '4', '2', 'SUNDAR', 'bussiness', 30000.00, 1, 0.00, 20000.00, 'Meenakshi Amman Nagar, Nerkundram,', 'Meenakshi Amman Nagar, Nerkundram,', '2403160005', '', '1', 'upload_files/candidate_tracker/19026107810_PAVANKUMAR RESUME 2024 (2).pdf', NULL, '1', '2024-03-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-16 10:51:52', 1, '2024-03-16 11:13:32', 0, NULL, 1),
(17605, 'RAJENDRAN', '4', '9894226274', '6383147013', 'raghulyogesh1@gmail.com', '2000-06-12', 23, '2', '2', 'BASKARAN', 'Driver', 30000.00, 1, 0.00, 15000.00, '30,sivaji nagar, Thiruvalluvar salai, Thanjavur', '30,Sivaji Nagar, Thiruvalluvar Salai, Thanjavur', '2403180001', '1', '1', 'upload_files/candidate_tracker/32223596982_CV_2024021400355327.pdf', NULL, '1', '2024-03-18', 0, '', '3', '59', '2024-03-20', 152400.00, '', '5', '1970-01-01', '1', 'Selected for Sithy Team', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-18 03:12:57', 60, '2024-03-20 09:55:24', 0, NULL, 1),
(17606, 'Delphin Prakash D', '14', '8248109489', '', 'delphinprakash@gmail.com', '2001-07-01', 22, '6', '2', 'Parent', 'Tailor', 20000.00, 1, 0.00, 15000.00, 'Tuticorin', 'chennai', '2403180002', '', '1', 'upload_files/candidate_tracker/29314608552_Delphin Prakash D..pdf', NULL, '1', '2024-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-18 04:40:05', 112, '2024-03-19 09:55:16', 0, NULL, 1),
(17607, 'Logapriya .s', '6', '8056073658', '', 'logapriya292001@gmail.com', '2001-11-29', 22, '2', '2', 'G. sekar', 'Courier service', 15000.00, 1, 11000.00, 16000.00, 'No5/18 Sadayappan street mandaveli Chennai 28', 'No 5/18 Sadayappan street mandaveli Chennai 28', '2403180003', '1', '2', 'upload_files/candidate_tracker/3174308514_S.logapriya .pdf', NULL, '1', '2024-03-18', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication is Not too good also her sis ter is working in same hDB finance . Sustanity doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-18 04:40:32', 104, '2024-03-18 06:25:46', 0, NULL, 1),
(17608, 'Thulasi Nathan R', '33', '8870180313', '', 'rthulasi77@gmail.com', '2000-08-11', 23, '3', '2', 'Ranganathan', 'Farmer', 9000.00, 0, 18500.00, 22500.00, 'Tiruvannamalai', 'Chennai', '2403180004', '', '2', 'upload_files/candidate_tracker/73404587930_Thulasi Nathan R.pdf', NULL, '1', '2024-03-21', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-18 05:20:07', 1, '2024-03-18 05:35:43', 0, NULL, 1),
(17609, 'Karthik', '6', '6381020732', '8825481612', 'perumalkarthik294@gmail.com', '2000-12-05', 23, '6', '2', 'Perumal', 'Formar', 10000.00, 1, 0.00, 250000.00, 'Ariyalur', 'Perungalathur', '2403180005', '', '1', 'upload_files/candidate_tracker/63836352585_Resume_15_03_2024_02_13_38_PM.pdf', NULL, '1', '2024-03-18', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-18 06:09:20', 104, '2024-03-18 06:27:08', 0, NULL, 1),
(17610, 'Swaminathan', '27', '8825481612', '6381020732', 'swaminathan0410@gmail.com', '2000-10-04', 23, '6', '2', 'Kumar', 'Farmer', 10000.00, 1, 0.00, 250000.00, 'Ariyalur', 'Perungalathur', '2403180006', '', '1', 'upload_files/candidate_tracker/63487089757_Document from swaminathan k1.pdf', NULL, '1', '2024-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-18 06:17:07', 112, '2024-03-19 09:54:57', 0, NULL, 1),
(17611, 'Sangavi.M', '4', '7904305248', '7845691585', 'sangaviammu0807@gmail.com', '1999-06-08', 24, '2', '2', 'Muniyandi.M', 'Daily wages', 35000.00, 2, 0.00, 13000.00, 'Ennore', 'Ennore', '2403180007', '1', '1', 'upload_files/candidate_tracker/69643839168_mini-2 (2).pdf', NULL, '1', '2024-03-18', 0, '', '3', '59', '2024-03-19', 164208.00, '', '5', '1970-01-01', '2', 'Selected for Charles TEam', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-18 07:46:28', 60, '2024-03-18 07:52:21', 0, NULL, 1),
(17612, 'Basavaraj', '5', '8088381841', '', 'dhbasu6@gmail.com', '1998-06-01', 25, '2', '2', 'Devappa', 'Farmer', 500000.00, 2, 274000.00, 400000.00, 'Koppal', 'Bengaluru', '2403180008', '1', '2', 'upload_files/candidate_tracker/44060293531_Basavaraj_Resume.pdf', NULL, '2', '2024-03-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'In hand suggested 19k max', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-03-18 09:08:37', 127, '2024-04-16 04:07:33', 0, NULL, 1),
(17613, 'Ajitha.C', '6', '9940788674', '8056526234', 'ajithachandran1020@gmail.com', '1999-06-20', 24, '2', '2', 'Vijay Ganesh', 'Regional manager', 20000.00, 3, 0.00, 17000.00, 'Tharangambadi, Mayiladuthurai', 'Nesapakkam Chennai', '2403180009', '1', '2', 'upload_files/candidate_tracker/95380225393_Resume_2024-03-18_6727208.pdf', NULL, '1', '2024-03-19', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-18 12:07:33', 112, '2024-03-19 05:32:04', 0, NULL, 1),
(17614, 'R Aswini', '4', '6385032538', '6379562527', 'raswini0203@gmail.com', '2000-06-02', 23, '2', '2', 'R Rajendran', 'Formar', 139000.00, 3, 0.00, 15000.00, 'Govindakudi', 'Govindakudi', '2403190001', '1', '1', 'upload_files/candidate_tracker/84032804154_blue professional modern CV resume_20240319_111145_0000.pdf', NULL, '1', '2024-03-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-19 05:37:07', 108, '2024-03-19 11:46:32', 0, NULL, 1),
(17615, 'Tamana', '6', '7019569385', '8248404853', 'jaintamana955@gmail.com', '2000-10-30', 23, '2', '2', 'Gunjan', 'Business', 50000.00, 1, 31000.00, 30000.00, 'Sowcarpet chennai', 'Sowcarpet chennai', '2403190002', '1', '2', 'upload_files/candidate_tracker/65760716046_chennai resume (1).pdf', NULL, '1', '2024-03-19', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-19 06:00:48', 104, '2024-03-19 04:56:50', 0, NULL, 1),
(17616, 'veera vishalini b', '6', '7200941460', '7401479774', 'vishaliniammu17@gmail.com', '2001-05-17', 22, '2', '1', 'balaji', 'it employee', 30000.00, 0, 0.00, 18000.00, 'mylapore', 'mylapore', '2403190003', '34', '2', 'upload_files/candidate_tracker/26744837938_Veera Vishalini Resume.pdf', NULL, '1', '2024-03-19', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance is Not Good,Also Her Experiance Quality Also Low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-19 06:53:18', 112, '2024-03-19 05:30:47', 0, NULL, 1),
(17617, 'M.PRIYA', '6', '9150329743', '9698310478', 'mjpriya7284@gmail.com', '2002-01-26', 22, '2', '2', 'R.MASILAMANI', 'Manufacturing company', 30000.00, 1, 15000.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2403190004', '30', '2', 'upload_files/candidate_tracker/54694867427_DOC-20240318-WA0000..pdf', NULL, '1', '2024-03-19', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-19 08:25:12', 112, '2024-03-19 05:36:57', 0, NULL, 1),
(17618, 'Sathish', '14', '8681821300', '', 'sathishrameshkumar2001@gmail.com', '2001-01-09', 23, '6', '2', 'Rameshkumar', 'Two Wheeler machanic', 90000.00, 1, 0.00, 10000.00, 'Kanchipuram', 'Kanchipuram', '2403190005', '', '1', 'upload_files/candidate_tracker/82346588750_sathishRESUME.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-19 10:06:24', 112, '2024-03-21 06:13:43', 0, NULL, 1),
(17619, 'Gowtham', '13', '9976985349', '9976942576', 'gowthamramesh1406@gmail.com', '2003-06-04', 20, '6', '2', 'Ramesh', 'Farmer', 10000.00, 1, 0.00, 200000.00, '1/9 iyyer Street elrampattu Kallakurichi', 'Keelkattalai Chennai', '2403190006', '', '1', 'upload_files/candidate_tracker/89053062923_GOWTHAM RAMESH RESUME1-1.pdf', NULL, '1', '2024-03-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-19 12:05:05', 112, '2024-03-20 03:24:26', 0, NULL, 1),
(17620, '', '0', '9500023557', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403190007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-19 03:23:53', 0, NULL, 0, NULL, 1),
(17621, '', '0', '8939745813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403190008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-19 05:36:11', 0, NULL, 0, NULL, 1),
(17622, 'Gowtham', '13', '7502363106', '9976942577', 'gowthamramesh1406@gmail.com', '2003-06-04', 20, '6', '2', 'Ramesh', 'Farmer', 10000.00, 1, 0.00, 200000.00, 'Kallakurichi', 'Chennai', '2403200001', '', '1', 'upload_files/candidate_tracker/43899876292_GOWTHAM RAMESH RESUME1-1.pdf', NULL, '1', '2024-03-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 03:54:02', 112, '2024-03-20 03:16:16', 0, NULL, 1),
(17623, 'SHANMUGAM R', '13', '7845371892', '7845991892', 'shanmugamrskfamily@gmail.com', '1996-05-01', 27, '3', '2', 'RAJARAM J', 'Tailor', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2403200002', '', '1', 'upload_files/candidate_tracker/19826049855_SHANMUGAM RESUME.pdf', NULL, '1', '2024-03-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 04:26:35', 112, '2024-03-20 03:14:50', 0, NULL, 1),
(17624, 'Susilkumar', '2', '7358268004', '9585329863', 'rsusilkumar2001@gmail.com', '2001-05-08', 22, '3', '2', 'Ramesh', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2403200003', '', '1', 'upload_files/candidate_tracker/14219079096_Professional Resume.pdf', NULL, '1', '2024-03-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 05:13:49', 112, '2024-03-20 03:16:04', 0, NULL, 1),
(17625, 'Arun Kumar', '2', '9514420366', '9677470849', 'pgarunperumal1999@gmail.com', '1999-12-19', 24, '3', '2', 'Perumal', 'Farmer', 80000.00, 2, 0.00, 12000.00, 'VILLUPURAM', 'Chennai', '2403200004', '', '1', 'upload_files/candidate_tracker/86867514889_Arun cv.pdf', NULL, '1', '2024-03-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 05:17:34', 112, '2024-03-20 03:12:20', 0, NULL, 1),
(17626, 'Gopinath v', '13', '9150256977', '9444234198', 'gopinath.v0317@gmail.com', '2003-07-17', 20, '3', '2', 'Velmurugan S', 'Helper', 120000.00, 1, 0.00, 300000.00, 'Kovilambakam Chennai', 'Kovilambakam Chennai', '2403200005', '', '1', 'upload_files/candidate_tracker/1111403040_GOPINATH_S_CV_removed.pdf', NULL, '1', '2024-03-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 05:23:20', 112, '2024-03-20 03:24:14', 0, NULL, 1),
(17627, 'Hemalatha.B', '6', '9790806956', '', 'HEMA92857@GMAIL.COM', '1999-10-21', 24, '2', '2', 'B.SUMATHI', 'HOUSE KEEPING', 10000.00, 1, 0.00, 15000.00, 'ENNORE', 'ENNORE', '2403200006', '1', '1', 'upload_files/candidate_tracker/50043833769_CV_2023092915493928.pdf', NULL, '1', '2024-03-22', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-20 05:28:15', 112, '2024-03-22 10:29:31', 0, NULL, 1),
(17628, 'Kamalraj', '13', '8523991569', '9489622380', 'kamalrajvelmurugan21@gmail.com', '1998-04-30', 25, '3', '2', 'Velmurugan', 'Farmer', 10000.00, 3, 0.00, 300000.00, 'Panruti, Cuddalore', 'Chennai', '2403200007', '', '1', 'upload_files/candidate_tracker/58034528110_KAMALRAJ VELMURUGAN_1702744573719_KamalrajVelmurugan.pdf', NULL, '1', '2024-03-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 05:30:09', 112, '2024-03-20 03:16:43', 0, NULL, 1),
(17629, 'V Magesh', '5', '9080247186', '', 'waranmagesh936@gmail.com', '1999-11-02', 24, '2', '2', 'Velmurugan', 'Salaries', 35.00, 3, 18.00, 25.00, 'Kattankulatur', 'Tondiarpet', '2403200008', '1', '2', 'upload_files/candidate_tracker/67483804995_New Resume.pdf', NULL, '1', '2024-03-20', 30, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-20 05:30:59', 112, '2024-03-20 03:26:25', 0, NULL, 1),
(17630, 'Kaviyarasan', '13', '8667746044', '9884192420', 'kaviyarasanm55@gmail.com', '2000-09-11', 23, '3', '2', 'Parents', 'Private', 25000.00, 2, 0.00, 1.25, 'Chennai', 'Chennai', '2403200009', '', '1', 'upload_files/candidate_tracker/83495201984_kaviyarasan-6.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 05:39:04', 130, '2024-05-16 04:26:49', 0, NULL, 1),
(17631, 'Gokulraj', '11', '9003881285', '8015776412', 'gokulraj.g2710@gmail.com', '2001-10-27', 22, '3', '2', 'Mythili', 'Noon meal organiser', 180000.00, 1, 0.00, 250000.00, 'No 69 gandhi road vandavasi', 'Vandavasi', '2403200010', '', '1', 'upload_files/candidate_tracker/31215402650_GOKULRAJ G RESUME (1).pdf', NULL, '1', '2024-03-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 05:48:01', 112, '2024-03-20 03:26:38', 0, NULL, 1),
(17632, 'Jayaprakash S', '6', '9003483505', '', 'jayaprakash19393@gmail.com', '1993-03-19', 31, '2', '1', 'Ramya A', 'MBA', 25000.00, 1, 14500.00, 25000.00, 'Jamunamarathur', 'Jamunamarathur', '2403200011', '29', '2', 'upload_files/candidate_tracker/90064550949_JP resume-Updated.pdf', NULL, '1', '2024-03-20', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he very much interested in his own business and not relevant experience like sales or lead generation', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 05:48:49', 112, '2024-03-20 03:28:27', 0, NULL, 1),
(17633, 'Sowmiya M', '13', '6374946431', '6385336606', 'msowmiya918@gmail.com', '2002-11-15', 21, '3', '2', 'Pandiselvi M', 'Homemaker', 35000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2403200012', '', '1', 'upload_files/candidate_tracker/37794566195_SOWMIYA M RESUME 2023. 20 (1).pdf', NULL, '1', '2024-03-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 05:51:37', 112, '2024-03-20 03:14:29', 0, NULL, 1),
(17634, 'Christal Selvin', '13', '9629173097', '', 'selvin472001@gmail.com', '2001-07-04', 22, '3', '2', 'Maria Christopher', 'Masison', 60000.00, 2, 140000.00, 240000.00, 'Nagercoil', 'Chennai', '2403200013', '', '2', 'upload_files/candidate_tracker/55041210501_Christal Selvin .pdf', NULL, '1', '2024-03-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 05:58:51', 112, '2024-03-20 03:15:44', 0, NULL, 1),
(17635, 'saran', '23', '9361293877', '9790263341', 'sjsaran2468@gmail.com', '2001-03-20', 23, '3', '2', 'karuppaiyah', 'painting contractor', 20000.00, 1, 0.00, 200000.00, 'karur', 'chennai', '2403200014', '', '1', 'upload_files/candidate_tracker/76079594732_Saran k.pdf', NULL, '1', '2024-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-20 06:05:23', 1, '2024-03-20 06:30:12', 0, NULL, 1),
(17636, 'Vishnu N', '13', '9585332394', '', 'vishnutech21@gmail.com', '2001-05-24', 22, '3', '2', 'Narayana Samy M', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Kumbakonam', 'Chenny', '2403200015', '', '1', 'upload_files/candidate_tracker/55504061524_VISHNU-N.pdf', NULL, '1', '2024-03-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '4', '5', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 06:06:56', 112, '2024-03-20 03:15:22', 0, NULL, 1),
(17637, 'Prasanna Kumar', '2', '7339441971', '', 'Prasanakumard50@gmail.com', '2002-03-01', 22, '3', '2', 'Ramesh K', 'Hospital worker', 30000.00, 1, 0.00, 2.50, 'Cuddalore', 'Cuddalore', '2403200016', '', '1', 'upload_files/candidate_tracker/78413732752_PRASANNAKUMAR-R frontend.pdf', NULL, '1', '2024-05-07', 0, '', '3', '59', '2024-06-03', 120000.00, '', '', '2024-11-04', '2', 'Selected For 5months Intern With Employment Conditions For Front end Developer 1st Level Interview By Sathish xxamp 2nd Round By Gokulraj Sankar', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 06:07:35', 60, '2024-06-03 04:49:14', 0, NULL, 1),
(17638, 'D Mahesh', '13', '9491825731', '', 'maheshchandu180522@gmail.com', '1999-08-30', 24, '4', '2', 'D Murali', 'Farmer', 100000.00, 0, 0.00, 240000.00, 'Chennai', 'Chennai', '2403200017', '', '1', 'upload_files/candidate_tracker/57776783209_Mahesh resume.docx', NULL, '2', '2024-03-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-20 06:07:56', 1, '2024-03-20 06:35:07', 0, NULL, 1),
(17639, 'Mathesh Kumar S', '13', '9361232407', '9360039111', 'mathesh0921@gmail.com', '2002-04-04', 21, '3', '2', 'Sakthivel M', 'Shop keeper', 15000.00, 1, 0.00, 240000.00, 'Thoothukudi', 'Chennai', '2403200018', '', '1', 'upload_files/candidate_tracker/8867446526_Mathesh resume.pdf', NULL, '1', '2024-03-20', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 06:13:23', 112, '2024-03-20 03:19:33', 0, NULL, 1),
(17640, 'Ajith Kumar S', '13', '6383422311', '9514496468', 'duraiajith05@gmail.com', '2000-02-26', 24, '3', '2', 'Sermadurai T', 'Business', 80000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2403200019', '', '1', 'upload_files/candidate_tracker/25794089019_Ajith_Kumar_S_MCA.pdf', NULL, '1', '2024-03-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 06:29:06', 112, '2024-03-20 03:15:08', 0, NULL, 1),
(17641, 'K Kishore', '8', '8220889802', '9094084979', 'www.kishorestar011@gmail.com', '2001-07-18', 22, '2', '2', 'R Kumar', 'Clerk', 35000.00, 1, 20000.00, 25000.00, 'Plot No 3, Kasthuri nagar, Veppampattu - 602024', 'Plot No 3, Kasthuri Nagar, Veppampattu - 602024', '2403200020', '25', '2', 'upload_files/candidate_tracker/29328897290_Kishore\'s Resume.pdf', NULL, '1', '2024-03-20', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-20 07:03:52', 1, '2024-03-20 07:10:03', 0, NULL, 1),
(17642, 'Vijayalakshmi', '4', '8668177845', '9940910189', 'sruthiviji94@gmail.com', '1994-07-06', 29, '1', '1', 'Gopal', 'Team leader', 45000.00, 0, 18000.00, 20000.00, 'Chennai', 'West mambalam', '2403200021', '', '2', 'upload_files/candidate_tracker/38020676493_20172060623_vijayalakshmi new Updatedresume.doc', NULL, '1', '3024-03-20', 0, 'ZHRS0324003', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-20 07:04:24', 1, '2024-03-20 07:31:55', 0, NULL, 1),
(17643, 'Deva Kumar A', '6', '9677216926', '8939745813', 'devchris2001@gmail.com', '2001-04-04', 22, '2', '2', 'Anandha Rao', 'Cooli', 20000.00, 2, 0.00, 15000.00, 'Chennai', '7/4mir ashak Hussain Street pudupet Chennai 2', '2403200022', '1', '1', 'upload_files/candidate_tracker/11364485803_Document.pdf', NULL, '1', '2024-03-20', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance is Not Good,Also His  Attire is poor in interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-20 07:24:54', 112, '2024-03-20 06:42:45', 0, NULL, 1),
(17644, 'Kayal.R', '6', '9150722826', '8148442608', 'kayalraja20@gmail.com', '2003-01-20', 21, '2', '2', 'Raja.k', 'Lawyer', 12000.00, 1, 15000.00, 18000.00, 'No-21, Thiruvalluvar Street Puzhal Chennai -600066', 'No-21, Thiruvalluvar Street Puzhal Chennai -600066', '2403200023', '29', '2', 'upload_files/candidate_tracker/69028068677_R.kayalResume.docx', NULL, '1', '2024-03-20', 7, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok,kindly confirm the salary and joining date\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 07:27:13', 112, '2024-03-20 07:05:22', 0, NULL, 1),
(17645, 'M. Pooja', '6', '8148442608', '9884196728', 'ajoop16@gmail.com', '2003-06-16', 20, '2', '2', 'M. Munuswamy', 'Electrician', 10000.00, 0, 0.00, 18000.00, '7A/14, Manali New Town, Chennai - 600103', '8BL/5, Manali New Town, Chennai - 600103', '2403200024', '29', '1', 'upload_files/candidate_tracker/43408549850_M.pooja-2.docx', NULL, '1', '2024-03-20', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 07:27:51', 112, '2024-03-20 06:39:48', 0, NULL, 1),
(17646, 'C.senbagavalli', '6', '7358451895', '9677310961', 'Vallisenbaga485@gmail.com', '2002-02-05', 22, '2', '2', 'V.chinnadurai', 'Daily wages', 12000.00, 1, 0.00, 15000.00, 'Ayanavaram', 'Ayanavaram', '2403200025', '29', '1', 'upload_files/candidate_tracker/40282042215_C.Senbagavalli.pdf', NULL, '1', '2024-03-20', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 07:28:12', 112, '2024-03-21 10:28:01', 0, NULL, 1),
(17647, 'P.Naveen', '13', '9655668319', '9597440361', 'nvnpalani9@gmail.com', '2001-07-02', 22, '3', '2', 'Palanisamy', 'Farmer', 20000.00, 1, 0.00, 200000.00, 'Trichy', 'Vadapalani', '2403200026', '', '1', 'upload_files/candidate_tracker/15475895081_FRONT-END-DEVELOPER(P.NAVEEN).pdf', NULL, '1', '2024-03-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 08:01:34', 112, '2024-03-20 03:53:20', 0, NULL, 1),
(17648, 'Prabhu kumar', '23', '9600048515', '', 'Postboxprabhu12@gmail.com', '1993-04-12', 30, '3', '1', 'Siru malar', 'Web developer', 19500.00, 0, 19500.00, 25000.00, 'Chennai', 'Chennai', '2403200027', '', '2', 'upload_files/candidate_tracker/75203261433_Prabhukumar.pdf', NULL, '1', '2024-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-20 09:05:05', 1, '2024-03-20 09:29:22', 0, NULL, 1),
(17649, 'YOGESHWARAN P', '23', '9597458084', '', 'Yogeshwaranp608@gmail.com', '2000-07-12', 23, '3', '2', 'Perumal M', 'Weaver', 370000.00, 2, 0.00, 18500.00, 'Salem(Dt) Mettur', 'Thambaram', '2403200028', '', '1', 'upload_files/candidate_tracker/41471784823_YOGESH RESUME.pdf', NULL, '1', '2024-03-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 09:09:32', 104, '2024-03-20 05:52:41', 0, NULL, 1),
(17650, 'katari manasa', '5', '9603576113', '', 'katarimanasareddy143@gmail.com', '1998-04-02', 25, '2', '2', 'K Appaswami reddy', 'farmer', 15000.00, 3, 18000.00, 23000.00, 'Thirupathi', 'bangalore', '2403200029', '1', '2', 'upload_files/candidate_tracker/46736156622_Manasa katari_1710583629661_Manasa.K.docx', NULL, '2', '2024-03-20', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interview taken by banu mam, she rejects this profile', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-20 09:18:44', 108, '2024-03-20 06:30:02', 0, NULL, 1),
(17651, 'Ajay', '6', '9952069417', '7358512056', 'jrajay171@gmail.com', '2003-01-02', 21, '2', '2', 'Ramesh', 'Electrition', 35000.00, 2, 0.00, 15.00, 'Pudupet', 'Pudupet', '2403200030', '29', '1', 'upload_files/candidate_tracker/73084269486_AJAY - RESUME1.pdf', NULL, '3', '2024-03-26', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Performance and communication is not good,attire also very poor', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 09:52:45', 112, '2024-03-26 12:54:16', 0, NULL, 1),
(17652, '', '0', '8072998916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403200031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-20 10:34:42', 0, NULL, 0, NULL, 1),
(17653, '', '0', '9840869729', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403200032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-20 01:51:55', 0, NULL, 0, NULL, 1),
(17654, 'Dhulipudi Hemanth', '13', '7396545195', '', 'hemanthdhulipudi6300@gmail.com', '2002-07-10', 21, '3', '2', 'Koteswararao', 'Farmer', 20000.00, 1, 0.00, 300000.00, 'Guntur, Andhrapradesh', 'Chennai, Tamilnadu', '2403200033', '', '1', 'upload_files/candidate_tracker/14142792227_Dhulipudi Hemanth.pdf', NULL, '1', '2024-03-22', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-20 08:00:15', 112, '2024-03-22 06:03:19', 0, NULL, 1),
(17655, 'Vignesh kolanji', '6', '7868905015', '', 'wikkikolanji@gmail.com', '2000-03-17', 24, '2', '2', 'Kolanji', 'Sales', 50000.00, 1, 16000.00, 20000.00, '141 West Street Nagar Veppur Taluk Cuddalore', 'Guindy', '2403210001', '32', '2', 'upload_files/candidate_tracker/59425279487_VIGNESH CV.pdf.pdf', NULL, '3', '2024-03-21', 10, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 03:51:32', 112, '2024-03-21 03:18:52', 0, NULL, 1),
(17656, 'Thilaga v', '13', '7339241739', '', 'ammuthilaga119@gmail.com', '1996-08-04', 27, '4', '2', 'Seethalakshmi', 'Housewife', 15000.00, 1, 0.00, 300000.00, 'Rajapalayam', 'Chennai', '2403210002', '', '1', 'upload_files/candidate_tracker/9104928129_THILAGA-V-FlowCV-Resume-20240304 (1).pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:01:34', 112, '2024-03-21 06:12:09', 0, NULL, 1),
(17657, 'Mathi Shankar S', '31', '9384633660', '', 'mathishankar23@gmail.com', '2002-04-23', 21, '3', '2', 'Selvam J', 'Plumber', 10000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2403210003', '', '1', 'upload_files/candidate_tracker/99762069651_Mathi shankar S(Resume).pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:15:10', 112, '2024-03-21 06:12:50', 0, NULL, 1),
(17658, 'S.SanthoshKumar', '31', '7094689956', '', 'santhoshsaro2003@gmail.com', '2003-06-05', 20, '4', '2', 'S.Sethukarasi', 'Charted Accountant', 20.00, 0, 0.00, 20000.00, 'Sivaganga dt,Nerkuppai', 'Arumbakkam', '2403210004', '', '1', 'upload_files/candidate_tracker/95731681808_Santhoshkumar.s_20231120_161007_0000.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:16:14', 112, '2024-03-21 06:14:31', 0, NULL, 1),
(17659, 'Sakthivel. A', '31', '7548826529', '', 'sakthi373@gmail.com', '2003-06-17', 20, '3', '2', 'Arumugam', 'Farmer', 20000.00, 2, 0.00, 25000.00, 'Karaikudi', 'Arumbakkam', '2403210005', '', '1', 'upload_files/candidate_tracker/88080113302_Sakthivel CV Resume.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:16:38', 112, '2024-03-21 06:15:27', 0, NULL, 1),
(17660, 'Karthik D', '13', '9315336326', '9080166657', 'dk072002443@gmail.com', '2002-09-07', 21, '3', '2', 'Deivendran D', 'Hotel', 15000.00, 1, 0.00, 2.00, 'Chennai', 'Tutucorin', '2403210006', '', '1', 'upload_files/candidate_tracker/38975246873_KARTHIK_CV.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:32:04', 112, '2024-03-21 06:15:41', 0, NULL, 1),
(17661, 'Nalini A', '13', '9345408810', '', 'nalinia2206@gmail.com', '2002-06-22', 21, '3', '2', 'Arumugam', 'Farmer', 15000.00, 3, 0.00, 20000.00, 'Kulasekaran pattinam', 'Chennai', '2403210007', '', '1', 'upload_files/candidate_tracker/70424345259_Nalini (1).pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:33:18', 112, '2024-03-21 06:13:28', 0, NULL, 1),
(17662, 'Surya V', '13', '8110944016', '', 'surya.vme005@gmail.com', '2003-04-03', 20, '3', '2', 'Vairakkannu', 'Farmer', 3000.00, 1, 0.00, 10000.00, 'Pudukottai', 'Sholinganallur', '2403210008', '', '1', 'upload_files/candidate_tracker/35661482583_RESUME_SURYA.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:36:54', 112, '2024-03-21 06:14:44', 0, NULL, 1),
(17663, 'Ajaykumar S', '2', '8124186284', '6383665863', 'kajay593006@gmail.com', '2003-12-25', 20, '3', '2', 'Subramaniyan', 'Farmer', 3000.00, 1, 0.00, 10000.00, 'Pattukkottai', 'Tambaram', '2403210009', '', '1', 'upload_files/candidate_tracker/62045114340_Ajay_CV.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:39:28', 112, '2024-03-21 06:14:15', 0, NULL, 1),
(17664, 'Arokiya Denifer S', '23', '8610987898', '8124186284', 'denifer.selvam@gmail.com', '1998-05-04', 25, '3', '2', 'Selvam', 'Auto Driver', 10000.00, 2, 372000.00, 500000.00, 'Chennai', 'Chennai', '2403210010', '', '2', 'upload_files/candidate_tracker/51680189918_resume-adenifer.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:39:48', 112, '2024-03-21 06:13:58', 0, NULL, 1),
(17665, 'Mohamed Riswan', '5', '8220178427', '', 'saleemriswan1997@gmail.com', '1997-04-11', 26, '2', '2', 'Saleem', 'Tailor', 30000.00, 1, 20000.00, 25000.00, 'Tenkasi', 'Chennai', '2403210011', '29', '2', 'upload_files/candidate_tracker/36972654363_Riswan.pdf', NULL, '3', '2024-03-21', 0, '', '5', '57', NULL, 0.00, '', '0', NULL, '1', 'Communication not good', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-21 04:46:39', 1, '2024-03-21 04:52:04', 0, NULL, 1),
(17666, 'Yasotha K', '13', '8925303876', '7806902266', 'yasothatpet03@gmail.com', '2003-07-16', 20, '3', '2', 'Krishnamoorthi', 'Daily Wages', 12000.00, 1, 0.00, 200000.00, 'Trichirappalli', 'Chennai', '2403210012', '', '1', 'upload_files/candidate_tracker/43670547880_Resume_Yasotha_Format6.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:52:44', 112, '2024-03-21 06:17:59', 0, NULL, 1),
(17667, 'John Moses B R', '13', '9884604873', '8668169907', 'johnmoses8709@gmail.com', '2000-09-02', 23, '3', '2', 'Rajesh B', 'Building Contractor', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2403210013', '', '1', 'upload_files/candidate_tracker/30648021067_John', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:55:49', 112, '2024-03-21 06:13:11', 0, NULL, 1),
(17668, 'Nandhini k', '31', '6383312347', '', 'nandhiniravi490@gmail.com', '2000-11-20', 23, '3', '2', 'Ravi Kumar', 'Railway contract', 120000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2403210014', '', '1', 'upload_files/candidate_tracker/9961131484_Nandhini resume .pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:57:36', 112, '2024-03-21 06:16:00', 0, NULL, 1),
(17669, 'Eanok S', '2', '7358004122', '9941377835', 'seanok263@gmail.com', '2000-12-12', 23, '3', '2', 'Sagayaraj', 'Retail business', 30000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2403210015', '', '1', 'upload_files/candidate_tracker/82711989314_Eanok-resume-2024-.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 04:57:52', 112, '2024-03-21 06:12:36', 0, NULL, 1),
(17670, 'Balakumaran', '13', '9361478139', '', 'balakumaran26032003@gmail.com', '2003-03-26', 20, '3', '2', 'Balasubramanian', 'Teacher', 40000.00, 1, 0.00, 2.50, 'Mayiladuturai', 'Tambaram', '2403210016', '', '1', 'upload_files/candidate_tracker/6826170727_Balakumaran .pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:06:52', 112, '2024-03-21 06:20:05', 0, NULL, 1),
(17671, 'Swetha j', '13', '9344228296', '', 'swethasambasivam325@gmail.com', '2003-07-09', 20, '3', '2', 'Jaya Sankar m', 'Storekeeper', 12000.00, 1, 0.00, 22000.00, 'Chidambaram', 'Chennai', '2403210017', '', '1', 'upload_files/candidate_tracker/2373156325_SWETHA.J_Resume_2023.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:08:09', 112, '2024-03-21 06:16:32', 0, NULL, 1),
(17672, 'Varshini J', '13', '8072613633', '8144189572', 'varshinij2k@gmail.com', '2000-05-14', 23, '3', '2', 'Jayaraman S', 'Agriculture', 20000.00, 2, 0.00, 250000.00, 'Thirupattur', 'Chennai', '2403210018', '', '1', 'upload_files/candidate_tracker/38093395972_Varshini Resume.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:08:16', 112, '2024-03-21 06:20:58', 0, NULL, 1),
(17673, 'Nandhini B', '13', '8667761066', '', 'nandhini05032003@gmail.com', '2003-03-05', 21, '3', '2', 'Lalitha B', 'Nutrition', 10000.00, 1, 0.00, 15000.00, 'Villupuram', 'Chennai', '2403210019', '', '1', 'upload_files/candidate_tracker/56103834438_nandhini.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:08:29', 112, '2024-03-21 06:21:34', 0, NULL, 1),
(17674, 'Subitha K', '13', '8610713637', '', 'subhasiruvathur@gmail.com', '2001-07-24', 22, '3', '2', 'Kannnan', 'Farmer', 50000.00, 1, 0.00, 18000.00, 'Kallakurichi', 'vadapalani', '2403210020', '', '1', 'upload_files/candidate_tracker/24602510698_CV_2022081509001156.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:08:37', 112, '2024-03-21 06:18:14', 0, NULL, 1),
(17675, 'Gayathri V', '13', '7708059030', '', 'gayathrisai043400@gmail.com', '2000-05-04', 23, '3', '2', 'Velmurugan K', 'Rtd Account Supervisor', 300000.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Chennai', '2403210021', '', '1', 'upload_files/candidate_tracker/37001094758_Gayathri sai resume.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:09:01', 112, '2024-03-21 06:17:24', 0, NULL, 1),
(17676, 'Mufliha.s', '13', '6382899827', '6380287655', 'mufliharisman@gmail.com', '2002-10-08', 21, '3', '2', 'Sathik', 'Sales man', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2403210022', '', '1', 'upload_files/candidate_tracker/23846619172_Resume', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:09:08', 112, '2024-03-21 06:18:33', 0, NULL, 1),
(17677, 'Subashini M', '13', '9344880291', '', 'subashinimurugan2921@gmail.com', '2002-10-21', 21, '3', '2', 'Indra S', 'Teacher', 9500.00, 2, 0.00, 15000.00, 'Vadapalani', 'Vadapalani', '2403210023', '', '1', 'upload_files/candidate_tracker/82579879193_suba-1.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:09:18', 112, '2024-03-21 06:21:13', 0, NULL, 1),
(17678, 'Uthayasridevi', '2', '8825636079', '', 'dhiyadev2703@gmail.com', '2000-03-27', 23, '3', '2', 'Shanmigaraj', 'Farmer', 200000.00, 2, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2403210024', '', '1', 'upload_files/candidate_tracker/12255472970_uthayasri resumee.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:10:47', 112, '2024-03-21 06:19:33', 0, NULL, 1),
(17679, 'Akalya R', '13', '6382549142', '', 'Akalyarajan2003@gmail.com', '2003-03-25', 20, '3', '2', 'Rajendran K', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Mayiladuthurai', 'Chennai', '2403210025', '', '1', 'upload_files/candidate_tracker/92942065630_Akalya-Resume.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:11:05', 112, '2024-03-21 06:17:39', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17680, 'jain', '13', '9384723151', '', 'johnjain2002@gmail.com', '2002-09-24', 21, '3', '2', 'john', 'collie', 10000.00, 0, 0.00, 100000.00, 'kaniyakumari', 'chennai', '2403210026', '', '1', 'upload_files/candidate_tracker/72600698032_Jain.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:11:35', 112, '2024-03-21 06:23:01', 0, NULL, 1),
(17681, 'VISHNU PRIYAN.M', '13', '9952863846', '', 'vishnupriyan2159@gmail.com', '2003-05-21', 20, '3', '2', 'MOHAN.S', 'Photographer', 10000.00, 1, 0.00, 20000.00, 'Mayiladuthurai', 'Tambaram,chennai', '2403210027', '', '1', 'upload_files/candidate_tracker/51111087398_M VISHNU PRIYAN_BCA_2023_Resume.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:11:41', 112, '2024-03-21 06:16:14', 0, NULL, 1),
(17682, 'Lakshmi Priya', '13', '9840576461', '', 'prakashpriya637@gmail.com', '2002-10-23', 21, '3', '2', 'Ram prakash', 'Business', 15000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2403210028', '', '1', 'upload_files/candidate_tracker/93533905522_lakshmi priya.R Resume.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:18:21', 112, '2024-03-21 06:19:19', 0, NULL, 1),
(17683, 'rohit sathya', '13', '9791138136', '', 'rothisathya1825@gmail.com', '2000-09-30', 23, '3', '2', 'sathyakumar', 'real estate', 15000.00, 0, 0.00, 300000.00, 'chennai', 'chennai', '2403210029', '', '1', 'upload_files/candidate_tracker/13211035056_Rohit.pdf', NULL, '1', '2024-03-21', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:18:22', 112, '2024-03-21 06:09:52', 0, NULL, 1),
(17684, 'Swetha s.k', '13', '7395956723', '9382820337', 'skswetha73@gmail.com', '2003-03-07', 21, '3', '2', 'Sivakumar', 'Photography', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2403210030', '', '1', 'upload_files/candidate_tracker/80297099323_swetha sk (2).pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:19:17', 112, '2024-03-21 06:21:47', 0, NULL, 1),
(17685, 'GOWTHAM', '13', '8428159171', '9884159171', 'gowthamnatarajan777@gmail.com', '2003-09-21', 20, '3', '1', 'Natarajan', 'farming', 12000.00, 2, 0.00, 200000.00, 'Kancheepuram', 'kancheepuram', '2403210031', '', '1', 'upload_files/candidate_tracker/41683820163_Gowtham -New Resume.pdf', NULL, '1', '2024-03-21', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:25:06', 112, '2024-03-21 06:09:31', 0, NULL, 1),
(17686, 'dhanush', '13', '8838789813', '', 'dhanushdhanush1467@gmail.com', '2002-06-12', 21, '3', '2', 'murthi', 'pani puri shop', 30000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2403210032', '', '1', 'upload_files/candidate_tracker/31856846282_Lalith.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:25:39', 112, '2024-03-21 06:25:32', 0, NULL, 1),
(17687, 'Sarathy m', '13', '6381913778', '', 'sarathysarathy434@gmail.com', '2003-06-06', 20, '3', '2', 'Lakshmi', 'Web development', 18.00, 1, 0.00, 1.50, 'Kallakuruchi', 'Chennai padappai', '2403210033', '', '1', 'upload_files/candidate_tracker/70876102855_Sarathy.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:26:47', 112, '2024-03-21 06:20:37', 0, NULL, 1),
(17688, 'Ponraja K', '13', '7904730419', '8667872198', 'prcode2903@gmail.com', '1996-03-29', 27, '3', '1', 'Arafath roja', 'Home maker', 10000.00, 1, 14000.00, 20000.00, 'Ambasamudram', 'Ambasamudram', '2403210034', '', '2', 'upload_files/candidate_tracker/41571286242_PONRAJA RESUME BOTH.pdf', NULL, '1', '2024-03-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-21 05:28:35', 1, '2024-03-21 05:31:11', 0, NULL, 1),
(17689, 'Aravindan E', '13', '9176885901', '9150102475', 'Aravindan2518@gmail.com', '2001-06-18', 22, '3', '2', 'Elavarasan j', 'Carpenter', 2.50, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2403210035', '', '1', 'upload_files/candidate_tracker/8513125960_ARAVINDAN E RESUME-F 2024-1.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:28:44', 112, '2024-03-21 06:16:47', 0, NULL, 1),
(17690, 'geetha priya', '6', '9500092334', '', 'geethrockx1994@gmail.com', '1994-03-20', 30, '2', '1', 'Gopinath', 'it', 60000.00, 1, 0.00, 25000.00, 'Chennai', 'chennai', '2403210036', '1', '1', 'upload_files/candidate_tracker/74622729678_GEETHA PRIYA R - short.pdf', NULL, '1', '2024-03-21', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Testing for 8 years Good Candidate open for new domain and interested to learn we can proceed for MF Roles', '5', '2', '', '1', '8', '', '2', '2024-04-08', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-21 05:37:20', 112, '2024-03-21 03:59:29', 0, NULL, 1),
(17691, 'hariprasath', '13', '9952033539', '', 'hariprasath840@gmail.com', '2001-08-17', 22, '3', '2', 'ramesh', 'lorry driver', 250000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2403210037', '', '1', 'upload_files/candidate_tracker/27977238868_Hariprasath.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:40:51', 112, '2024-03-21 06:23:27', 0, NULL, 1),
(17692, 'Jeeva Arumugam', '2', '9688051059', '', 'ajeeva.arumugam7@gmail.com', '2000-10-07', 23, '3', '2', 'Arumugam', 'Job seeker', 300000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2403210038', '', '1', 'upload_files/candidate_tracker/80474932001_Jeeva-A_0.8yrs_Full-Stack-Developer (1)-1.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:42:53', 112, '2024-03-21 06:20:23', 0, NULL, 1),
(17693, 'SREE RAJESH', '2', '9074352422', '8667399834', 'sreerajesh008@gmail.com', '2002-03-30', 21, '3', '2', 'Girija S', 'Working in thread mill', 20000.00, 1, 0.00, 400000.00, 'Coimbatore', 'Coimbatore', '2403210039', '', '1', 'upload_files/candidate_tracker/22136972912_New Resume Pdf.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:54:53', 112, '2024-03-21 06:19:03', 0, NULL, 1),
(17694, 'Aswathaaman A C', '2', '8667399834', '9074352422', 'aswathshanthi9876@gmail.com', '1998-04-19', 25, '3', '2', 'Shanthi N', 'Government job', 35000.00, 0, 0.00, 3.50, 'Erode', 'Chennai', '2403210040', '', '1', 'upload_files/candidate_tracker/16885359242_Aswathaaman - Resume (1).pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 05:56:44', 112, '2024-03-21 06:18:48', 0, NULL, 1),
(17695, 'R. Sowmiya', '6', '9498026441', '', 'Sowmi4040@gmail.com', '1998-11-04', 0, '2', '2', 'A. rajan', 'BSNL telephone', 40000.00, 1, 25000.00, 40000.00, 'No. 1/909, New kuberan nagar 6th, madipakkam', 'No. 1/811A, 2nd Deivani nagar, madipakkam', '2403210041', '1', '2', 'upload_files/candidate_tracker/65236456115_Sowmiya Rajan Resume.pdf', NULL, '1', '2024-03-21', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-21 06:03:10', 112, '2024-03-21 05:23:36', 0, NULL, 1),
(17696, 'Suren Gopal', '13', '7010183857', '', 'surendharma1732@gmail.com', '2002-03-17', 22, '3', '2', 'Dharmaraj G', 'Mill Worker', 11000.00, 1, 0.00, 20000.00, 'Virudhunagar', 'Virudhunagar', '2403210042', '', '1', 'upload_files/candidate_tracker/28483059413_SUREN GOPAL D RESUME.pdf', NULL, '1', '2024-03-21', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 06:06:22', 112, '2024-03-21 06:10:37', 0, NULL, 1),
(17697, 'Balamurugan C', '13', '7305207408', '', 'cbalamurugan2k@gmail.com', '2000-06-14', 23, '3', '2', 'Aauvudaiyammal', 'Paper cone making', 20000.00, 2, 0.00, 4.00, 'Erode', 'Chennai', '2403210043', '', '2', 'upload_files/candidate_tracker/80105575211_BALAMURUGAN C _CV [2022].pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 06:06:41', 112, '2024-03-21 06:22:06', 0, NULL, 1),
(17698, 'Gokulkannan E', '13', '6383011837', '', 'kannangokul2056@gmail.com', '2001-01-27', 23, '3', '2', 'Eswaran R', 'Teacher', 35000.00, 1, 0.00, 350000.00, 'Namakkal', 'Velachery, Chennai', '2403210044', '', '1', 'upload_files/candidate_tracker/70255323701_Gokulkannan_CV(3).pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 06:07:58', 112, '2024-03-21 06:23:13', 0, NULL, 1),
(17699, 'Sathish K', '13', '7402125199', '', 'sathishkumaresan16@gmail.com', '2002-05-16', 21, '3', '2', 'Kumaresan S', 'Own business', 250000.00, 0, 0.00, 250000.00, 'Tiruppur', 'Chennai', '2403210045', '', '1', 'upload_files/candidate_tracker/79371322849_Sathish_KumaresanCV.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 06:09:10', 112, '2024-03-21 06:22:50', 0, NULL, 1),
(17700, 'Ramachandran SN', '13', '9361137390', '', 'ramsinfotech007@gmail.com', '2002-08-18', 21, '3', '2', 'Natarajan S', 'Building contractor', 25000.00, 1, 0.00, 2.50, 'Madurai', 'T.nagar chennai', '2403210046', '', '1', 'upload_files/candidate_tracker/86352015336_Ramachandran Resume.pdf', NULL, '1', '2024-03-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-21 06:15:43', 1, '2024-03-21 06:23:11', 0, NULL, 1),
(17701, 'fazil ahamed', '13', '9677382607', '', 'fazilahamed48907@gmail.com', '2000-07-21', 23, '3', '1', 'syed akmal', 'vege merchants', 30000.00, 1, 0.00, 250000.00, 'hosur', 't nagar chennai', '2403210047', '', '1', 'upload_files/candidate_tracker/20406364675_Resume-S.docx', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 06:16:00', 112, '2024-03-21 06:22:35', 0, NULL, 1),
(17702, 'lalith kishore', '13', '8015147198', '', 'lalithkishore112@hotmail.com', '2002-10-21', 21, '3', '1', 'naranyasway', 'supervisor', 12000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2403210048', '', '1', 'upload_files/candidate_tracker/44689750950_Lalith.pdf', NULL, '1', '2024-03-21', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 06:26:40', 112, '2024-03-21 06:11:29', 0, NULL, 1),
(17703, 'Venkatesh S', '13', '7904617235', '', 'venkatesh31122000@gmail.com', '2000-12-31', 24, '2', '2', 'Siva Sankarani', 'Lorry mechanic', 45000.00, 0, 0.00, 3.00, 'Chennai', 'Chennai', '2403210049', '1', '1', 'upload_files/candidate_tracker/23303274406_VENKATESH.Ss1.pdf', NULL, '1', '2025-11-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in system task', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-03-21 06:27:51', 159, '2025-11-28 02:58:28', 0, NULL, 1),
(17704, 'Balaguru', '5', '8428756171', '7548887458', 'saikrishbala123@gmail.com', '1999-03-31', 24, '2', '2', 'Gayathri', 'Fresher', 2.50, 2, 0.00, 2.00, 'Ramanathapuram', 'Chennai', '2403210050', '1', '1', 'upload_files/candidate_tracker/39636302315_BALAGURU.pdf', NULL, '1', '2024-03-21', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-21 06:32:14', 112, '2024-03-21 05:22:48', 0, NULL, 1),
(17705, 'Dhanusha R', '13', '9655976904', '', 'dhanusharamesh02@gmail.com', '2002-02-09', 22, '3', '2', 'Ramesh K', 'Farmer', 7000.00, 1, 0.00, 30000.00, 'Virudhachalam', 'Chennai', '2403210051', '', '1', 'upload_files/candidate_tracker/2637080007_Dhanusha_resume.pdf', NULL, '1', '2024-03-21', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 06:39:29', 112, '2024-03-21 06:10:19', 0, NULL, 1),
(17706, 'Hari Prakash p', '2', '7806900640', '9344761773', 'harialways.hari04@gmail.com', '2001-05-28', 22, '3', '2', 'Palanisamy', 'Farmer', 20000.00, 1, 0.00, 150000.00, 'Erode', 'Chennai', '2403210052', '', '1', 'upload_files/candidate_tracker/59761507639_HariPrakash.p.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 06:40:26', 112, '2024-03-21 06:22:23', 0, NULL, 1),
(17707, 'Prasath', '23', '6374135316', '9962945083', 'prasathmahi445@gmail.com', '2000-10-04', 23, '3', '2', 'Elumalai p', 'Mechanic', 2.00, 0, 3.00, 4.00, 'Pallikaranai', 'Pallikaranai', '2403210053', '', '2', 'upload_files/candidate_tracker/22475047656_Prasath\'s Resume(1)(1)(1).pdf', NULL, '1', '2024-03-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-21 06:57:29', 1, '2024-03-21 07:00:53', 0, NULL, 1),
(17708, 'harikrishnan', '23', '9361359916', '', 'hari2424rpm@gmail.com', '2003-02-14', 21, '3', '2', 'murugan', 'business', 30000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2403210054', '', '1', 'upload_files/candidate_tracker/91294359301_Harikrishnan.pdf', NULL, '1', '2024-03-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-21 07:03:52', 1, '2024-03-21 07:50:39', 0, NULL, 1),
(17709, 'Gowri Sankat', '2', '9787564242', '9597019797', 'gsankar9797@gmail.com', '2001-04-04', 22, '3', '2', 'Palanikumar', 'Tailor', 20000.00, 1, 0.00, 20000.00, 'Theni', 'Chennai', '2403210055', '', '1', 'upload_files/candidate_tracker/22230200276_GowriSankar.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 07:15:56', 112, '2024-03-21 06:25:49', 0, NULL, 1),
(17710, 'muralidharan c', '2', '9600373351', '7598695405', 'muralidharanc783@gmail.com', '2001-12-07', 22, '3', '2', 'chandiran j', 'farmer', 30000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2403210056', '', '1', 'upload_files/candidate_tracker/73564260942_MURALIDHARAN C (RESUME).pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 07:20:49', 112, '2024-03-21 06:25:15', 0, NULL, 1),
(17711, '', '0', '9884988240', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403210057', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-21 07:24:21', 0, NULL, 0, NULL, 1),
(17712, 'venkatesh', '13', '7905617235', '', 'venkatesh31122000@gmail.com', '2000-12-31', 23, '3', '1', 'sivasankar', 'lorry mechnaic', 250000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2403210058', '', '1', 'upload_files/candidate_tracker/1923630976_Venkatesh.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 07:25:41', 112, '2024-03-21 06:26:19', 0, NULL, 1),
(17713, 'varsha muthukumar', '6', '7395941846', '', 'varshamuthu676@gmail.com', '1998-12-31', 25, '2', '2', 'muthukumar', 'goldsmith', 35000.00, 1, 363000.00, 550000.00, 'savam divine home valasaravakkam', 'sarvam divine home valasaravakkam', '2403210059', '35', '2', 'upload_files/candidate_tracker/86934923782_varsha 2024 resume.pdf', NULL, '1', '2024-03-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 07:54:43', 112, '2024-03-21 06:58:13', 0, NULL, 1),
(17714, 'deena', '13', '7358691403', '6383778302', 'deenarajesh2000@gmail.com', '2000-02-26', 24, '3', '2', 'panjacharam', 'formar', 30.00, 1, 0.00, 15.00, 'gummidipoondi', 'ummidipoondi', '2403210060', '', '1', 'upload_files/candidate_tracker/71041234253_Deena Resume.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 07:59:30', 112, '2024-03-21 06:26:06', 0, NULL, 1),
(17715, 'aravinthan', '6', '8438372769', '', 'aravintha168@gmail.com', '2001-05-28', 22, '2', '2', 'chinathambi', 'powerloum', 15000.00, 1, 0.00, 18000.00, 'salem', 'chennai', '2403210061', '1', '1', 'upload_files/candidate_tracker/91562359532_Aravinth.pdf', NULL, '1', '2024-03-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-21 08:51:50', 112, '2024-03-21 03:17:50', 0, NULL, 1),
(17716, 'SABARINATHAN G', '13', '9344484863', '9787362178', 'sabarinathan.g.03@gmail.com', '2000-11-08', 23, '3', '2', 'GUNASEKARAN', 'Farmer', 16000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2403210062', '', '1', 'upload_files/candidate_tracker/26017559939_sabari...resume12.pdf', NULL, '1', '2024-03-21', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 08:56:03', 112, '2024-03-21 06:11:07', 0, NULL, 1),
(17717, '', '0', '9361898308', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403210063', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-21 08:56:05', 0, NULL, 0, NULL, 1),
(17718, 'Shahid', '13', '8637683312', '', 'shahidmeh870@gmail.com', '1999-10-24', 24, '3', '2', 'Ali ebrahim', 'Engineer', 25000.00, 1, 0.00, 250000.00, 'Salem', 'Chennai', '2403210064', '', '1', 'upload_files/candidate_tracker/67058420677_shahid dot net.docx', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 09:38:44', 112, '2024-03-21 06:26:41', 0, NULL, 1),
(17719, 'M.praveen', '6', '8270961511', '', 'praveenmurugan351@gmail.com', '2000-04-15', 23, '2', '2', 'S.murugan', 'Business', 70000.00, 2, 0.00, 2.50, '240,12 Floor,1st block NVN nagar TNHB', '240,12 Floor,1st Block NVN Nagar TNHB', '2403210065', '1', '2', 'upload_files/candidate_tracker/12156397060_IMG_0250.pdf', NULL, '1', '2024-03-22', 0, '', '3', '59', '2024-03-26', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-21 09:55:09', 60, '2024-03-25 07:29:37', 0, NULL, 1),
(17720, '', '0', '9514191124', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403210066', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-21 11:00:29', 0, NULL, 0, NULL, 1),
(17721, 'Muralidas M', '13', '9150308937', '', 'muralidasm2002@gmail.com', '2002-01-03', 22, '3', '2', 'ahendit', 'farme', 15000.00, 1, 0.00, 15000.00, 'kuraumberi tirupattur', 'tirupattur', '2403210067', '', '1', 'upload_files/candidate_tracker/68667199137_Muralidas M Resume.pdf', NULL, '1', '2024-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 11:16:49', 112, '2024-03-21 06:19:49', 0, NULL, 1),
(17722, '', '0', '9150308938', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403210068', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-21 11:25:37', 0, NULL, 0, NULL, 1),
(17723, 'Samdaniel', '2', '9345829452', '9092090794', 'samdaniels26112002@gmail.com', '2002-11-26', 21, '3', '2', 'Selvakumar', 'Student', 120000.00, 0, 0.00, 200000.00, 'Coimbatore', 'Coimbatore', '2403210069', '', '1', 'upload_files/candidate_tracker/46343531527_Samresume-1.pdf', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 12:08:57', 112, '2024-03-25 06:43:09', 0, NULL, 1),
(17724, 'Mohamed Yaseer', '6', '9940103297', '', 'mohamedyaseer754@gmail.con', '2000-04-15', 23, '2', '2', 'Apsali.j', 'Lorry Transport Management', 15000.00, 2, 0.00, 15000.00, 'West Tambaram', 'West Tambaram', '2403210070', '29', '1', 'upload_files/candidate_tracker/80372289181_arafath .pdf', NULL, '1', '2024-03-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50/50 Distance xxamp Sustainability', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 01:31:00', 112, '2024-03-22 05:55:14', 0, NULL, 1),
(17725, 'Nithya Shree M', '6', '7418054397', '7418054397', 'nithyas048@gmail.com', '2009-03-21', 22, '2', '2', 'varalakshmi m', 'housekeeping', 6000.00, 0, 180000.00, 210000.00, 'chennai', 'chennai', '2403210071', '29', '2', 'upload_files/candidate_tracker/72000006144_NITHYASHREE RESUME.pdf', NULL, '1', '2024-03-22', 0, '', '3', '59', '2024-04-02', 164400.00, '', '5', '1970-01-01', '2', 'SElected for Syed Team in Consultant Role - Relationship Executive need to analyse and confirm the position in 7 days sustainability Doubts', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-21 02:00:03', 60, '2024-04-02 10:03:47', 0, NULL, 1),
(17726, 'Kaviya', '4', '6382916047', '9344152711', 'kaviyagpk@gmail.com', '1999-06-18', 24, '2', '2', 'Gurusamy', 'Driver', 3.00, 0, 0.00, 2.50, 'Virudhunagar', 'Chennai', '2403210072', '29', '1', 'upload_files/candidate_tracker/87118270018_Kaviya resume.docx', NULL, '1', '2024-03-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-21 03:51:05', 1, '2024-03-21 04:04:56', 0, NULL, 1),
(17727, 'KIRUBANITHI V', '2', '9942061621', '8012254538', 'veerakirubanithi@gmail.com', '2000-04-01', 23, '6', '2', 'veerasamy', 'chef', 96000.00, 1, 0.00, 25000.00, 'Pollachi', 'Pollachi', '2403210073', '', '1', 'upload_files/candidate_tracker/4634048823_Kirubanithi V.pdf', NULL, '1', '2024-03-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-21 05:30:28', 1, '2024-03-21 05:39:04', 0, NULL, 1),
(17728, 'arun kumar', '6', '8667203709', '', 'arunkr0896@gmail.com', '1996-08-15', 27, '2', '2', 'kuppusamy', 'own business', 200000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2403220001', '35', '1', 'upload_files/candidate_tracker/86702135523_Arun.pdf', NULL, '1', '2024-03-22', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile Career Gap Insurance Sales handling doubts not much open for Target need to come with his confirmation', '5', '2', '', '1', '8', '', '2', '2024-03-25', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 03:49:41', 112, '2024-03-22 03:35:43', 0, NULL, 1),
(17729, '', '0', '9867284628', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 04:02:23', 0, NULL, 0, NULL, 1),
(17730, 'Vijaymuthu', '6', '9566291443', '8825466502', 'vijaymuthu1430@gmail.com', '2005-07-09', 18, '2', '2', 'Kamsala', '15000', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2403220003', '1', '1', 'upload_files/candidate_tracker/94974590723_1000079809.pdf', NULL, '1', '2024-03-22', 0, '', '3', '59', '2024-03-26', 192000.00, '', '3', '2025-03-31', '2', 'Selected for Babu Team', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-22 04:15:23', 60, '2024-03-25 07:58:14', 0, NULL, 1),
(17731, 'Kanniyappan S', '13', '7094644274', '', 'S.kanniyappan708@gmail.com', '2001-07-16', 22, '3', '2', 'Sridar N', 'Own business', 10000.00, 3, 0.00, 22000.00, 'Chennai', 'Chennai', '2403220004', '', '1', 'upload_files/candidate_tracker/13838881360_KANNIYAPPAN S.pdf', NULL, '1', '2024-03-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 04:22:12', 130, '2024-05-28 11:08:45', 0, NULL, 1),
(17732, 'Venkateshwar srinivasan', '31', '9025580196', '', 'venkateshwarsrinivasan@gmail.com', '1999-05-07', 24, '3', '2', 'Srinivasan', 'Gold smith', 1000000.00, 0, 0.00, 400000.00, 'Thanjavur', 'Thanjavur', '2403220005', '', '1', 'upload_files/candidate_tracker/9244824162___venkateshwarresume__ (4).pdf', NULL, '2', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 04:26:08', 112, '2024-03-22 06:10:36', 0, NULL, 1),
(17733, 'Suriyaprakash R', '13', '9597287065', '', 'suryacse25@gmail.com', '2001-12-25', 22, '3', '2', 'Ramanathan D', 'Own business', 10000.00, 1, 22000.00, 22000.00, 'Pudukkottai', 'Pudukkottai', '2403220006', '', '2', 'upload_files/candidate_tracker/63711353178_Surya job resume.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 04:31:01', 112, '2024-03-22 06:09:09', 0, NULL, 1),
(17734, 'Vijaya ganapathi R', '14', '8531035606', '9942637363', 'vijayganapathi.r@gmail.com', '2001-10-10', 22, '3', '2', 'Rajapart rangaduari t', 'Farmer', 13000.00, 2, 0.00, 20000.00, 'Thirukovilur', 'Tnagar, chennai', '2403220007', '', '1', 'upload_files/candidate_tracker/21092038976_Vijaya ganapathi.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 04:33:13', 112, '2024-03-22 06:06:17', 0, NULL, 1),
(17735, 'Rakesh', '23', '7904631493', '', 'rakesh0072001@gmail.com', '2001-07-08', 22, '3', '2', 'Santhi', 'Labour', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2403220008', '', '1', 'upload_files/candidate_tracker/83668315942_Resume-12.pdf', NULL, '1', '2024-03-22', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 04:35:38', 112, '2024-03-22 06:02:44', 0, NULL, 1),
(17736, 'Chandrasekar', '14', '6383669721', '9080039083', 'chandrumurugan2306@gmail.com', '2000-06-23', 23, '3', '2', 'Murugan', 'Farmer', 20000.00, 1, 0.00, 2.50, 'Villupuram', 'Chennai', '2403220009', '', '1', 'upload_files/candidate_tracker/46074651759_Chandru.pdf', NULL, '1', '2024-03-22', 0, '', '3', '59', '2024-05-13', 120000.00, '', '1', '1970-01-01', '1', 'Selected for Intern Cum employment', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 04:38:38', 60, '2024-05-13 10:55:57', 0, NULL, 1),
(17737, 'Sanjay m', '6', '7902502725', '6282676589', 'Sanjaypkd437@gmail.com', '2000-06-02', 23, '2', '2', 'Mohandas', 'Driver', 100000.00, 0, 15000.00, 20000.00, 'Palakkad', 'Palakkad', '2403220010', '1', '2', 'upload_files/candidate_tracker/40840123498_SANJAI resume.pdf', NULL, '1', '2024-03-22', 0, '', '8', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not yet seen the  candidate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-22 04:47:25', 108, '2024-03-22 06:46:55', 0, NULL, 1),
(17738, '', '0', '9940917282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 04:48:16', 0, NULL, 0, NULL, 1),
(17739, 'Praveen Kumar', '13', '9597912958', '', 'praveendhanush1891@gmail.com', '2001-12-08', 22, '3', '2', 'P. Sankar', 'Weaver', 10000.00, 1, 0.00, 2.50, 'Vellore', 'Vellore', '2403220012', '', '1', 'upload_files/candidate_tracker/30688379189_Praveenkumar Resume.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 04:54:10', 112, '2024-03-22 06:13:08', 0, NULL, 1),
(17740, 'Gopinathan R', '13', '7904163501', '', 'gopinathan1884@gmail.com', '2009-03-22', 0, '3', '2', 'Rajendira babu J', 'Photographer', 15000.00, 1, 0.00, 250000.00, 'Vellore', 'Vellore', '2403220013', '', '1', 'upload_files/candidate_tracker/36607258664_gopinathan R .pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 04:59:23', 112, '2024-03-22 06:08:50', 0, NULL, 1),
(17741, 'RAMYA', '13', '6383413466', '', 'ramyaganavel2706@gmail.com', '1998-06-27', 25, '3', '2', 'GNANAVEL', 'Daily Wages', 15000.00, 1, 0.00, 15000.00, 'Puducherry', 'Chennai', '2403220014', '', '1', 'upload_files/candidate_tracker/78825715586_ResumeFr.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:09:25', 112, '2024-03-22 06:11:38', 0, NULL, 1),
(17742, 'siva kumar M', '13', '9789459026', '9944414944', 'sivakumarkumar8596@gmail.com', '2002-06-20', 21, '3', '2', 'Murugan G', 'Police', 30000.00, 2, 0.00, 15000.00, 'PORUR', 'PORUR', '2403220015', '', '1', 'upload_files/candidate_tracker/88639709740_Siva Kumar resume.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:09:36', 112, '2024-03-22 06:10:19', 0, NULL, 1),
(17743, 'Lavanya', '13', '7358256512', '7358117684', 'Lavanyavivek03@gmail.com', '1996-03-12', 28, '3', '1', 'Vivekananandhan', 'Daily wages', 18000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2403220016', '', '1', 'upload_files/candidate_tracker/46107324574_Lavanya Resume.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:10:08', 112, '2024-03-22 06:10:50', 0, NULL, 1),
(17744, 'Ragavendran M', '2', '9597038640', '8778226409', 'ragavendran954@gmail.com', '1997-09-02', 26, '3', '2', 'Mohan', 'Watch man', 18000.00, 1, 15000.00, 18000.00, 'Ponneri thiruvallur', 'Ponneri thiruvallur', '2403220017', '', '2', 'upload_files/candidate_tracker/62963681125_RAGAVENDRAN (1).pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:10:38', 112, '2024-03-22 06:12:44', 0, NULL, 1),
(17745, 'Dheen Elahi', '13', '9361592275', '', 'dheenelahi2002@gmail.com', '2002-01-09', 22, '3', '2', 'Allah bakash', 'Waiter', 8000.00, 2, 0.00, 2.50, 'Vellore', 'Vellore', '2403220018', '', '1', 'upload_files/candidate_tracker/10458177816_Elahi resume .pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:10:47', 112, '2024-03-22 06:12:18', 0, NULL, 1),
(17746, 'Desappan. R', '6', '9025544060', '8056255913', 'desappanns@gmail.com', '2000-12-06', 23, '2', '1', 'Raja. Sangeetha', 'Fisherman', 20000.00, 1, 15000.00, 17000.00, 'Periy neelankari kuppam', 'Blue bresh road', '2403220019', '35', '2', 'upload_files/candidate_tracker/55162098097_Resume_Desappan. R_Format6.pdf', NULL, '3', '2024-03-22', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:11:22', 112, '2024-03-22 03:26:12', 0, NULL, 1),
(17747, '', '0', '6381563172', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 05:14:25', 0, NULL, 0, NULL, 1),
(17748, 'Isravel N', '13', '6381563182', '', 'israveln2018@gmail.com', '2001-12-04', 22, '3', '2', 'Nithiyanantham', 'Labour', 6000.00, 2, 0.00, 15000.00, 'Chennai ,mrg nagar, 15a Avaiyar cross Street', 'Chennai', '2403220021', '', '1', 'upload_files/candidate_tracker/55632842676_CV_202403091224129.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:15:12', 112, '2024-03-22 06:08:30', 0, NULL, 1),
(17749, 'Athithyan anandhan', '4', '6374070426', '', 'anandhathi9@gmail.com', '2002-10-07', 21, '2', '2', 'Anandhan', 'Farmer', 10000.00, 2, 0.00, 13000.00, 'Kulichapattu', 'Kulichapattu', '2403220022', '1', '1', 'upload_files/candidate_tracker/34064332169_adithyan.pdf', NULL, '1', '2024-03-22', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-22 05:15:57', 108, '2024-03-22 11:28:56', 0, NULL, 1),
(17750, 'R.M.Tamizharasan', '6', '9360236014', '8489873119', 'arasantamil96807@gmail.com', '2002-03-08', 22, '2', '2', 'R.Murugesan', 'Farmer', 20000.00, 1, 0.00, 18000.00, '3/123a,Chinthakanavai village,Gudiyatham, Vellore', 'Rajajinagar, chrompet, chennai', '2403220023', '1', '1', 'upload_files/candidate_tracker/96130929227_tamizharasan_compressed.pdf', NULL, '1', '2024-03-22', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-22 05:20:05', 112, '2024-03-22 06:24:02', 0, NULL, 1),
(17751, 'Arul Ranganathan C N', '13', '9382844555', '', 'arulranganathan10571@gmail.com', '1997-12-12', 26, '6', '2', 'Ramesh C N', 'Still photographer', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2403220024', '', '1', 'upload_files/candidate_tracker/99567039748_Arul resume 4th template (1).pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:23:33', 112, '2024-03-22 06:11:53', 0, NULL, 1),
(17752, 'Logeshkumar K', '13', '7200436751', '', 'logeshkumark97@gmail.com', '1997-06-03', 26, '3', '2', 'Karunakaran N', 'Retired', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2403220025', '', '1', 'upload_files/candidate_tracker/57425554330_fresher CV.pdf', NULL, '1', '2024-03-22', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:23:39', 112, '2024-03-22 06:04:50', 0, NULL, 1),
(17753, 'Narendran S', '2', '6379954042', '', 'narendran061102@gmail.com', '2002-11-06', 21, '3', '2', 'saravanan', 'accounts manager', 50000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2403220026', '', '1', 'upload_files/candidate_tracker/33842531668_Narendran', NULL, '1', '2024-03-22', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:29:27', 112, '2024-03-22 06:03:00', 0, NULL, 1),
(17754, 'Arasan', '31', '9080115648', '', 'arasans2005@gmail.com', '2000-05-20', 23, '3', '2', 'Selvaraj A', 'Former', 12000.00, 1, 0.00, 4.00, '504, Kummangulam, Alangudi, Pudukkottai,622301.', 'Ramapuram, Chennai', '2403220027', '', '1', 'upload_files/candidate_tracker/26683377397_Arasanresume2024.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:31:29', 112, '2024-03-22 06:11:16', 0, NULL, 1),
(17755, '', '0', '8737363829', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 05:33:08', 0, NULL, 0, NULL, 1),
(17756, 'varun prasath k', '13', '6383045612', '9080144716', 'vignavishal2002@gmail.com', '2002-04-16', 21, '3', '2', 'kalaiarasu p', 'hpcl', 45000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2403220029', '', '1', 'upload_files/candidate_tracker/74575453813_SRM-MCA-812200203-VarunPrasathK.pdf', NULL, '1', '2024-03-22', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:35:04', 112, '2024-03-22 06:01:43', 0, NULL, 1),
(17757, '', '0', '9360236015', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 05:40:34', 0, NULL, 0, NULL, 1),
(17758, 'Sathish Kumar A', '13', '8489125598', '', 'sathishjoesna005@gmail.com', '1995-03-05', 29, '3', '2', 'Vijaya', 'Housewife', 30000.00, 2, 0.00, 20000.00, 'Paramakudi, ramanathapuram', 'Mandaiveli', '2403220031', '', '1', 'upload_files/candidate_tracker/94510323146_STZ JAVA RESUME -2023_1710471684917_sathish kumar.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:55:28', 112, '2024-03-22 06:09:27', 0, NULL, 1),
(17759, 'Harish V', '2', '9360658599', '8300866903', 'harishvinayagamoorthi@gmail.com', '2001-01-19', 23, '3', '2', 'Vinayagamoorthi .AP', 'Painting contractor', 25000.00, 2, 0.00, 3.50, 'Chennai', 'Chennai', '2403220032', '', '1', 'upload_files/candidate_tracker/91365348683_Harish V.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:55:43', 112, '2024-03-22 06:08:09', 0, NULL, 1),
(17760, 'Eswaramoorthy', '13', '8248781203', '', 'eswaramoorthyseenu96@gmail.com', '1996-02-27', 28, '4', '2', 'Marimuthu', 'Ex.Executive Engineer', 60000.00, 2, 0.00, 30000.00, 'Coimbatore', 'Chennai', '2403220033', '', '1', 'upload_files/candidate_tracker/60829806104_EswarAzure.pdf', NULL, '2', '2024-03-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:59:13', 112, '2024-03-30 12:03:08', 0, NULL, 1),
(17761, '', '0', '9344815856', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 05:59:38', 0, NULL, 0, NULL, 1),
(17762, 'gomathi', '6', '7358718453', '', 'gomathibhavani1998@gmail.com', '1998-05-19', 25, '2', '2', 'gopal', 'tailor', 60000.00, 1, 8000.00, 11000.00, 'chennai', 'chennai', '2403220035', '31', '2', 'upload_files/candidate_tracker/60456919662_gomathi.pdf', NULL, '1', '2024-03-22', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No skill.. health problems ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 05:59:49', 112, '2024-03-22 04:33:21', 0, NULL, 1),
(17763, 'Manickavasagam A', '31', '9843990867', '', 'manickavasagam600@gmail.com', '2002-09-07', 21, '3', '2', 'Arjunan', 'Farmer', 62000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Aavdi', '2403220036', '', '1', 'upload_files/candidate_tracker/39871677957_Manickavasagam_Resume.pdf', NULL, '1', '2024-03-22', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 06:00:31', 112, '2024-03-22 06:04:04', 0, NULL, 1),
(17764, 'savithri', '13', '9962998797', '9940917282', 'savithri14pt@gmail.com', '1997-10-14', 26, '3', '1', 'gururajan', 'pvt firm', 20000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2403220037', '', '1', 'upload_files/candidate_tracker/55716329427_SAVITHRI-1.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 06:00:45', 112, '2024-03-22 06:09:47', 0, NULL, 1),
(17765, 'Somasundaram', '13', '8667231030', '', 'somu892529@gmail.com', '2001-07-29', 22, '3', '2', 'Murugappan', 'Working in cotton mill', 7000.00, 1, 0.00, 15000.00, 'Chennai', 'Villupuram', '2403220038', '', '1', 'upload_files/candidate_tracker/21811366221_somu2.pdf', NULL, '2', '2024-03-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-22 06:04:50', 1, '2024-03-22 06:08:15', 0, NULL, 1),
(17766, '', '0', '8189901605', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220039', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 06:05:45', 0, NULL, 0, NULL, 1),
(17767, '', '0', '8282838386', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220040', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 06:05:58', 0, NULL, 0, NULL, 1),
(17768, 'Jaya kumar', '13', '9159709286', '', 'jk416848@gmail.com', '2002-08-21', 21, '3', '2', 'Venu', 'Daily labour', 10000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Chrompet', '2403220041', '', '1', 'upload_files/candidate_tracker/90869299502_FRONT-END DEVELOPER.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 06:06:50', 112, '2024-03-22 06:07:56', 0, NULL, 1),
(17769, '', '0', '8525007519', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220042', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 06:06:57', 0, NULL, 0, NULL, 1),
(17770, 'Prakash P', '31', '8608253539', '9360316609', 'd.s.prakash446@gmail.com', '2002-05-29', 21, '3', '2', 'Pandi Muneeswaran', 'Cooli', 20000.00, 1, 12000.00, 20000.00, 'Virudhunagar', 'Chrompet, Chennai', '2403220043', '', '2', 'upload_files/candidate_tracker/84127843387_Prakash P.pdf', NULL, '1', '2024-03-22', 5, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 06:09:16', 112, '2024-03-22 06:04:29', 0, NULL, 1),
(17771, '', '0', '8925049077', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220044', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 06:21:18', 0, NULL, 0, NULL, 1),
(17772, 'Ranjith Kumar M', '23', '8754918918', '', 'ranjithkumarmani33@gmail.com', '1997-10-03', 26, '3', '2', 'Mani l', 'Farmer', 25000.00, 1, 0.00, 20000.00, 'Salem', 'Chennai', '2403220045', '', '1', 'upload_files/candidate_tracker/44955205151_Ranjith Kumar UI UX.pdf', NULL, '1', '2024-03-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-22 06:25:33', 1, '2024-03-22 06:30:44', 0, NULL, 1),
(17773, '', '0', '8825639029', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220046', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 06:27:11', 0, NULL, 0, NULL, 1),
(17774, '', '0', '9748586776', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220047', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 06:28:20', 0, NULL, 0, NULL, 1),
(17775, '', '0', '8939709703', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220048', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 06:30:23', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17776, 'Swetha v', '25', '8056965648', '', 'sweamagi33@gmail.com', '2000-01-01', 0, '2', '2', 'Vezhavendhan J', 'Massion', 20000.00, 1, 20000.00, 25000.00, 'No.38,Dr.Ambedkar Street parikkapattu ponneri', 'Ponneri', '2403220049', '1', '2', 'upload_files/candidate_tracker/41535043375_CV_2024032017254592.pdf', NULL, '1', '2024-03-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile too long distance  will not sustain and handle our work pressure not suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-22 06:38:08', 112, '2024-03-22 06:28:35', 0, NULL, 1),
(17777, 'Varshini R', '31', '9943832933', '9976782933', 'rvarshini745@gmail.com', '2009-03-22', 0, '3', '2', 'Ramalingam A', 'Former', 15000.00, 0, 0.00, 10000.00, 'Mayiladuthurai', 'Chennai', '2403220050', '', '1', 'upload_files/candidate_tracker/76772505088_rvarshini.pdf.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 06:45:29', 112, '2024-03-22 06:10:07', 0, NULL, 1),
(17778, 'Reethika W', '31', '6382011672', '8526033700', 'Reethikawilliam@gmail', '2009-03-22', 0, '3', '2', 'Parents', 'Railway', 100000.00, 2, 0.00, 10000.00, 'Trichy', 'Ekaatuthagal', '2403220051', '', '1', 'upload_files/candidate_tracker/58136300369_W.REETHIKA RESUME. (1).pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 06:51:37', 112, '2024-03-22 06:13:37', 0, NULL, 1),
(17779, '', '0', '6379271473', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220052', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 06:52:32', 0, NULL, 0, NULL, 1),
(17780, 'Aravinth', '13', '7806850823', '', 'aravinthyuvaraj1998@gmail.com', '1998-09-09', 25, '3', '2', 'Yuvaraj', 'Farmer', 100000.00, 1, 0.00, 2.50, 'Salem', 'Karapakkam,sholliganallur,chennai', '2403220053', '', '1', 'upload_files/candidate_tracker/88248430488_Resume1.pdf', NULL, '1', '2024-03-22', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 06:58:29', 112, '2024-03-22 06:03:51', 0, NULL, 1),
(17781, '', '0', '6374503005', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220054', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 06:59:01', 0, NULL, 0, NULL, 1),
(17782, 'Sathya R', '4', '6369638189', '', 'ivalsathya@gmail.com', '2000-04-26', 23, '3', '2', 'Rajaraman', 'Farmer', 400000.00, 1, 18000.00, 24000.00, 'Koradacheri, thiruvarur', 'Saidapet, chennai', '2403220055', '', '2', 'upload_files/candidate_tracker/11070600701_sathya resume new 11.pdf', NULL, '3', '2024-04-04', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-22 07:00:34', 1, '2024-03-22 07:03:14', 0, NULL, 1),
(17783, 'EZHIL P', '13', '9003384802', '', 'Ezhildivya1998@gmail.com', '1998-12-21', 25, '3', '2', 'Palani M', 'Not Working', 20000.00, 3, 0.00, 25000.00, 'Thandarai puducherry', 'Thandarai Puducherry', '2403220056', '', '1', 'upload_files/candidate_tracker/57940759574_Ezhil Resume_New 2024.pdf', NULL, '1', '2024-03-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-22 07:01:13', 1, '2024-03-22 07:09:41', 0, NULL, 1),
(17784, 'Elakkiya S', '13', '8124921086', '', 'elakkiyashakthi810@gmail.com', '1999-06-04', 24, '3', '2', 'Sivasubramaniyan K C', 'Farmer', 20000.00, 1, 0.00, 300000.00, 'Thanjavur', 'Aminjikarai', '2403220057', '', '1', 'upload_files/candidate_tracker/21517295053_Elakkiya S Resume (3).pdf', NULL, '1', '2024-03-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-22 07:05:08', 1, '2024-03-22 07:08:43', 0, NULL, 1),
(17785, '', '0', '8190898148', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220058', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 07:13:05', 0, NULL, 0, NULL, 1),
(17786, 'Pavithra k', '4', '6369606798', '', 'paviavinyasri278@gmail.com', '2001-07-19', 22, '2', '2', 'Kalidoss', 'Formal', 20000.00, 2, 18000.00, 22000.00, 'Tenkasi district', 'Ekkatothangal', '2403220059', '1', '2', 'upload_files/candidate_tracker/28279059160_pavithra_cv.pdf', NULL, '1', '2024-03-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', NULL, NULL, NULL, 1, '2024-03-22 07:19:20', 1, '2024-03-22 08:03:27', 0, NULL, 1),
(17787, 'Mubeen Tabassum F', '13', '8248779697', '', 'mubi06999@gmail.com', '2009-03-22', 0, '3', '2', 'Z fazalur rahman', 'Retired', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2403220060', '', '1', 'upload_files/candidate_tracker/13972271552_CV.pdf', NULL, '1', '2024-03-22', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 07:35:45', 112, '2024-03-22 06:03:34', 0, NULL, 1),
(17788, 'Stalin R', '6', '9597826703', '8056732194', 'stalinrasstalin@gmail.com', '2002-07-01', 21, '2', '2', 'Ravi s', 'Business', 200000.00, 2, 13000.00, 20000.00, 'Thoothukudi', 'Saidpet', '2403220061', '36', '2', 'upload_files/candidate_tracker/28137639430_Stalin.pdf', NULL, '1', '2024-03-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 07:54:19', 112, '2024-03-22 03:39:13', 0, NULL, 1),
(17789, 'Sathishkumar Kamaraj', '13', '9445908970', '', 'Saro.k.sathish@gmail.com', '1996-05-11', 27, '3', '2', 'Janaki', 'House mother', 300000.00, 1, 0.00, 300000.00, 'Krishnapuram', 'Krishnapuram', '2403220062', '', '1', 'upload_files/candidate_tracker/45105190105_Sathish_CV.pdf', NULL, '1', '2024-03-27', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 09:32:48', 112, '2024-03-27 04:00:38', 0, NULL, 1),
(17790, 'Merlin Libin', '2', '9578232626', '', 'merlinlibinmerlin@gmail.com', '1996-11-03', 27, '3', '2', 'C. Johnson', 'Driver', 13000.00, 2, 460000.00, 480000.00, 'Kanyakumari', 'Chennai', '2403220063', '', '2', 'upload_files/candidate_tracker/20121560781_Merlin Libin-CV 22-03-24.pdf', NULL, '1', '2024-03-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 09:32:54', 112, '2024-03-22 06:05:47', 0, NULL, 1),
(17791, 'IshwaryaPandian', '6', '8190844645', '7200095526', 'ishupandi0226@gmail.com', '2002-06-26', 21, '2', '2', 'Pandian E', 'Painter', 19000.00, 1, 19523.00, 27000.00, '40/20A, Seniyamman kovil 4th Street Tondaiyarpet', 'Tondaiyarpet', '2403220064', '1', '2', 'upload_files/candidate_tracker/10723334479_Ishwarya.PDF', NULL, '1', '2024-03-22', 30, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Good Have exp in Sales Life insurance Can be trained in our roles kindly check for Sarath Team Sir', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-22 10:00:21', 112, '2024-03-22 04:35:00', 0, NULL, 1),
(17792, 'Antony', '20', '9566527722', '', 'Antonyjohn663@gmail.com', '1996-06-01', 27, '3', '1', 'Evangelin', 'Na', 15000.00, 1, 0.00, 4.50, 'Bangalore', 'Ooty', '2403220065', '', '2', 'upload_files/candidate_tracker/56873495006_DOC-20231228-WA0003..pdf', NULL, '2', '2024-03-22', 15, '', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good with his communication and experience in sales.', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 10:29:30', 104, '2024-03-22 06:23:28', 0, NULL, 1),
(17793, 'YOGESH', '5', '9952629206', '9597805056', 'yogesheswaran070@gmail.com', '2002-04-03', 21, '3', '2', 'ESWARAN .N', 'DRIVER', 25000.00, 1, 0.00, 20000.00, 'BANGALORE', 'Silk board', '2403220066', '', '1', 'upload_files/candidate_tracker/93244750336_YOGESH UG RESUME.pdf', NULL, '2', '2024-03-22', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Virtual interview taken by me, not much clear with his communication. he will not suitable for our role.', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 10:29:57', 104, '2024-03-27 05:17:11', 0, NULL, 1),
(17794, 'S.Amith kumar', '20', '9150137253', '8870167253', 'amithamith303@gmail.com', '1997-10-09', 26, '3', '2', 'Somasundharam', 'Indian Army', 75000.00, 1, 18500.00, 20000.00, 'Bangalore', 'Bommanalli', '2403220067', '', '2', 'upload_files/candidate_tracker/66839767182_NEW BPO 2024.docx', NULL, '1', '2024-03-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 10:31:59', 112, '2024-03-23 06:20:56', 0, NULL, 1),
(17795, 'barathkumar balasubramanian', '13', '9080427831', '', 'kbarath661@gmail.com', '2000-06-10', 23, '3', '2', 'balasubramanian', 'teacher', 160000.00, 1, 0.00, 300000.00, 'thiruppanandal', 'chennai', '2403220068', '', '1', 'upload_files/candidate_tracker/57698853855_BARATH', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 10:33:24', 130, '2024-05-02 11:40:38', 0, NULL, 1),
(17796, '', '0', '9976968717', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403220069', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-22 10:35:11', 0, NULL, 0, NULL, 1),
(17797, 'Harihara Bhuvanesh', '31', '9952986275', '', 'hariharabhuvanesh19@gmail.com', '2000-12-19', 23, '3', '2', 'S Elangovan', 'Driver', 15000.00, 1, 0.00, 20000.00, '136/5 Thangapandi nagar puthumanai eral Tuticorin', 'Chennai', '2403220070', '', '1', 'upload_files/candidate_tracker/40117702453_Harihara bhuvanesh_BE_Mech_2022_Javafullstack_OMR.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 10:48:19', 112, '2024-03-26 05:41:33', 0, NULL, 1),
(17798, 'Praveen M', '13', '8610030762', '9042332762', 'Praveenmak23@gmail.com', '1999-11-23', 24, '3', '2', 'MANI k', 'LIC OF INDIA', 100000.00, 1, 0.00, 300000.00, 'Villupuram', 'Chennai', '2403220071', '', '1', 'upload_files/candidate_tracker/41601594997_PraveenM resume-1.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 10:50:56', 130, '2024-04-09 03:36:42', 0, NULL, 1),
(17799, 'Ragul G', '2', '9597334983', '8015343426', 'ragul031299@gmail.com', '1999-12-03', 24, '3', '2', 'Gnanasekar L', 'Former', 20000.00, 1, 15000.00, 15000.00, 'Trichy', 'Trichy but I relocate to chennai', '2403220072', '', '2', 'upload_files/candidate_tracker/14540046532_Ragul_G.pdf.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-22 11:40:05', 112, '2024-03-25 06:12:12', 0, NULL, 1),
(17800, 'Chandru C P', '13', '8754263367', '', 'Chandrucld6@gmail.com', '2000-06-04', 23, '3', '2', 'Palraj C', 'Hotel', 30000.00, 1, 0.00, 15000.00, 'Vanjiyapuram privu privu 642006', 'Velachery, Chennai 600042', '2403230001', '', '1', 'upload_files/candidate_tracker/27894219119_chandru_resume_c.pdf', NULL, '1', '2024-03-23', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:11:20', 112, '2024-03-23 06:08:28', 0, NULL, 1),
(17801, 'V.ARUNKUMAR', '13', '6374625277', '', 'arunsiva160@gmail.com', '1999-02-17', 25, '3', '2', 'Sudha', 'Housewife', 17000.00, 1, 0.00, 20000.00, 'Pudukkottai', 'Chennai', '2403230002', '', '1', 'upload_files/candidate_tracker/62272085827_ARUNKUMAR.pdf', NULL, '1', '2024-03-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-23 04:13:40', 1, '2024-03-23 04:17:38', 0, NULL, 1),
(17802, 'somasundaram s', '13', '6383339561', '', 'sundarsk001@gmail.com', '2001-04-16', 22, '3', '2', 'sankar', 'farmer', 15000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2403230003', '', '1', 'upload_files/candidate_tracker/52658006879_somasundaram.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:21:46', 112, '2024-03-23 06:17:26', 0, NULL, 1),
(17803, 'Tamilpriyan', '31', '9600902178', '', 'priyanpri555@gmail.com', '2001-06-24', 22, '3', '2', 'Ramamurthi', 'Teacher', 350000.00, 1, 0.00, 2.50, 'Thanjavur', 'Chennai', '2403230004', '', '1', 'upload_files/candidate_tracker/88331145699_priyan resume (3)-23.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:22:06', 112, '2024-03-23 06:17:45', 0, NULL, 1),
(17804, 'M Sivakathir', '13', '8015921649', '9043475101', 'velk7966@gmail.com', '2001-05-19', 22, '3', '2', 'K monokaran', 'Shop keeper', 14000.00, 1, 0.00, 10000.00, '3/191 mahathma Gandhi Street, Karapakkam', 'Chennai', '2403230005', '', '1', 'upload_files/candidate_tracker/79152817488_MSivakathir Resume.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:31:12', 112, '2024-03-23 06:15:22', 0, NULL, 1),
(17805, 'Praveen Kumar VR', '6', '7358749259', '9962659952', 'Rajasekarselvi19721977@gmail.com', '2003-07-26', 20, '2', '2', 'Rajasekar', 'Business', 20000.00, 2, 18000.00, 18000.00, 'Kamaraj nagar tiruvallur', 'Tiruvallur', '2403230006', '36', '2', 'upload_files/candidate_tracker/27690540633_Image to PDF 20230929 07.57.18.pdf', NULL, '1', '2024-03-27', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:34:15', 112, '2024-03-27 10:18:42', 0, NULL, 1),
(17806, 'S.KASTHURIRANGAN', '6', '6379273686', '9988422479', 'Kasthurirengan852@gmail.com', '1998-10-01', 25, '2', '1', 'SRINIVASAN', 'SELF EMPLOYED', 25000.00, 2, 0.00, 26000.00, 'Perambur', 'Perambur', '2403230007', '31', '2', 'upload_files/candidate_tracker/11925300760_S.KASTHURI RANGAN CV.pdf', NULL, '1', '2024-03-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:38:47', 112, '2024-03-23 10:24:26', 0, NULL, 1),
(17807, 'Briskilla', '13', '7200298841', '8610598358', 'briskilla2020@gmail.com', '1998-01-20', 0, '3', '2', 'Beula', 'Tailor', 15000.00, 0, 0.00, 30000.00, 'Arakkonam', 'Arakkonam', '2403230008', '', '1', 'upload_files/candidate_tracker/17026104886_Resume_Briskilla.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:41:10', 112, '2024-03-23 06:16:05', 0, NULL, 1),
(17808, 'Jeeva S', '13', '7339044663', '', 'jeevaselvam619@gmail.com', '2001-11-08', 22, '3', '2', 'Selvam C', 'Farmer', 15000.00, 2, 0.00, 2.50, 'Kallakurichi', 'Chennai', '2403230009', '', '1', 'upload_files/candidate_tracker/12968477058_Updated Resume.pdf', NULL, '1', '2024-03-23', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:41:45', 112, '2024-03-23 06:09:14', 0, NULL, 1),
(17809, 'K V PAZHANI', '2', '8940540407', '9381801835', 'pazhanivel11111@gmail.com', '1996-12-16', 27, '3', '2', 'V JAYA CHITRA', 'House Wife', 40000.00, 1, 0.00, 200000.00, 'Thiruvallur (Chennai)', 'Thiruvallur (Chennai)', '2403230010', '', '1', 'upload_files/candidate_tracker/35435422901_Pazhani_Resume_General.pdf.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:44:17', 130, '2024-05-02 10:54:44', 0, NULL, 1),
(17810, 'Brundha Samiayya', '13', '8925341174', '9159500459', 'brundhasamiayya28@gmail.com', '2002-05-28', 21, '3', '2', 'Samiayya', 'Farmer', 20000.00, 1, 0.00, 3.00, 'Thanjavur', 'Chennai', '2403230011', '', '1', 'upload_files/candidate_tracker/62115545958_BS_RESUME.pdf', NULL, '1', '2024-03-23', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:55:39', 112, '2024-03-23 06:09:27', 0, NULL, 1),
(17811, 'Dhanalakshmi', '13', '9150522044', '9698574825', 'Dhanalakshmimurugan3211@gmail.com', '2002-03-14', 22, '3', '2', 'Murugan', 'Farmer', 12000.00, 3, 0.00, 300000.00, 'Trichy', 'Chennai', '2403230012', '', '1', 'upload_files/candidate_tracker/89592812594_RESUMEE.pdf', NULL, '1', '2024-03-23', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:55:47', 112, '2024-03-23 06:11:08', 0, NULL, 1),
(17812, 'Yuvarani R', '13', '6383340535', '9176413448', 'Yuvarani052020@gmail.com', '2000-05-20', 23, '3', '2', 'Valarmathy R', 'Homemaker', 13000.00, 1, 0.00, 280000.00, 'Redhills ,Chennai', 'Redhills, Chennai', '2403230013', '', '1', 'upload_files/candidate_tracker/84029398416_Yuvarani.R.pdf', NULL, '1', '2024-03-23', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:57:20', 112, '2024-03-23 06:10:00', 0, NULL, 1),
(17813, 'Sindhu kumari.R', '13', '6381450070', '', 'sindhukumari3148@gmail.com', '2002-11-16', 21, '3', '2', 'Ravichandran.V', 'Shopkeeper', 15000.00, 2, 0.00, 3.00, 'Ramanathapuram', 'Chennai', '2403230014', '', '1', 'upload_files/candidate_tracker/47801675445_SINDHU KUMARI-CV.docx', NULL, '1', '2024-03-23', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:57:20', 112, '2024-03-23 06:09:45', 0, NULL, 1),
(17814, 'jegan', '23', '6374113316', '8754324164', 'jeganofficial3200@gmail.com', '2000-02-03', 24, '3', '2', 'mani', 'driver', 75000.00, 3, 0.00, 3.50, 'Redhills chennai', 'chennai', '2403230015', '', '1', 'upload_files/candidate_tracker/36298924413_JEGAN M - CV.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 04:58:11', 112, '2024-03-23 06:14:23', 0, NULL, 1),
(17815, 'Hema s', '6', '7845462406', '', 'hemapremkumar2406@gmail.com', '1994-06-21', 29, '2', '1', 'Prem kumar', 'Subham Housing Finance Ltd', 25000.00, 1, 15000.00, 20000.00, 'Ullikadai', 'Thiruvaiyaru', '2403230016', '1', '2', 'upload_files/candidate_tracker/35646321977_HEMA BSC CA.pdf', NULL, '1', '2024-03-23', 20, '', '3', '59', '2024-04-08', 186000.00, '', NULL, '2024-11-07', '2', 'Selected for Sithy Team in Consultant Career Gap need to anallyse in 7 days', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-23 05:10:45', 60, '2024-04-08 10:06:55', 0, NULL, 1),
(17816, 'Vijay praveen', '20', '6379903635', '', 'Praveenvijay43542@gmail.com', '2002-07-03', 21, '3', '2', 'S.Rathinakumar', 'Hotel', 200000.00, 0, 0.00, 20000.00, 'Dindigul', 'Chennai', '2403230017', '', '1', 'upload_files/candidate_tracker/21037979854_resume 3530.docx', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 05:11:52', 112, '2024-03-25 06:52:38', 0, NULL, 1),
(17817, '', '0', '7200619512', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403230018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-23 05:12:26', 0, NULL, 0, NULL, 1),
(17818, 'Akshaya Priya.g.k', '5', '9361749342', '8825476402', 'gkakshaya25@gmail.com', '2002-08-02', 21, '2', '2', 'Govindaraju', 'Clerk', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2403230019', '36', '1', 'upload_files/candidate_tracker/89462362409_akshaya-resume(1).pdf', NULL, '1', '2024-03-23', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50/50 she is interested for sales xxamp iT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 05:17:15', 112, '2024-03-23 04:50:52', 0, NULL, 1),
(17819, 'Deboral s', '6', '8667402568', '', 'isrealdebo16@gmail.com', '2001-06-23', 22, '2', '2', 'Simson G', 'Paint contract', 8000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai arubakkam', '2403230020', '36', '1', 'upload_files/candidate_tracker/9743892460_DocScanner 18 Mar 2024 10-29 am.pdf', NULL, '1', '2024-03-23', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for salae', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 05:18:09', 112, '2024-03-23 04:51:47', 0, NULL, 1),
(17820, 'Sathish', '6', '7358549634', '8825476402', 'sathishsks029@gmail.com', '2001-08-20', 22, '2', '2', 'Roopa', 'Supervoiver', 20000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2403230021', '36', '1', 'upload_files/candidate_tracker/58872703463_Sathish resume.( BE ).pdf', NULL, '1', '2024-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-23 05:22:02', 1, '2024-03-23 06:18:29', 0, NULL, 1),
(17821, 'Arunraj Dharmaraj', '6', '8754021044', '7604985095', 'arunraj221510@gmail.com', '1999-10-22', 24, '2', '2', 'Dharmaraj.V', 'Farmer', 80000.00, 1, 15000.00, 17000.00, 'Mannargudi', 'Chennai', '2403230022', '35', '2', 'upload_files/candidate_tracker/75183321689_arun 1234 (1).pdf', NULL, '1', '2024-03-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'job needed person and he fit for sales lets try after 7 days only we have to confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 05:26:16', 112, '2024-03-23 04:56:13', 0, NULL, 1),
(17822, 'Amal Anburadu', '13', '7397225088', '8939480009', 'amalanbarasu.4@gmail.com', '1998-10-09', 25, '3', '2', 'Antony Xavier Babu', 'BUSINESS', 35000.00, 2, 10000.00, 25000.00, 'Moondram Kattalai Kovur', 'Moondram Kattalai Kovur', '2403230023', '', '2', 'upload_files/candidate_tracker/7132879369_AmalAnbarasu.CV.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 05:28:16', 112, '2024-03-23 06:18:03', 0, NULL, 1),
(17823, 'Jaganath M', '14', '8428888340', '7418330666', 'jagan24298@gmail.com', '1998-02-25', 26, '3', '2', 'Murugan', 'Tailore', 150000.00, 0, 0.00, 15000.00, 'Vaniyambadi,tirupathur district-635751', 'Kovilamabakkam,chennai-600129', '2403230024', '', '1', 'upload_files/candidate_tracker/36367508261_JAGANATH.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 05:31:08', 112, '2024-03-23 06:12:03', 0, NULL, 1),
(17824, 'Jagannathan', '14', '6369568662', '8148171112', 'jagan24298@gmail.com', '2002-01-14', 22, '3', '2', 'Adhi', 'Collie', 10000.00, 1, 0.00, 15000.00, 'Pudupet, Chennai - 600002', 'Pudupet, Chennai - 600002', '2403230025', '', '1', 'upload_files/candidate_tracker/67986295614_Jagannathan. pdf.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 05:31:26', 130, '2024-05-02 10:45:31', 0, NULL, 1),
(17825, 'Karthik V', '14', '9659369237', '7373184401', 'bscit9706@gmail.com', '1998-11-10', 25, '3', '2', 'Rubadevi', 'Howse wife', 4000.00, 1, 0.00, 15000.00, 'ERODE', 'Chennai, citaChitlapakkam', '2403230026', '', '1', 'upload_files/candidate_tracker/50381727646_Karthik.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 05:31:35', 112, '2024-03-23 06:12:38', 0, NULL, 1),
(17826, 'S Venkatesh Krishnan', '14', '9790177613', '', 'venkateshkrishnan255@gmail.com', '2000-07-28', 23, '3', '2', 'G. Selvam', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2403230027', '', '1', 'upload_files/candidate_tracker/77685801662_Venkat_Resume1.pdf', NULL, '1', '2024-03-23', 0, '', '3', '59', '2024-04-29', 120000.00, '', '1', '1970-01-01', '2', 'Selected for Intern cum employment IT Roles will check and confirm', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 05:35:08', 60, '2024-04-29 10:26:22', 0, NULL, 1),
(17827, '', '0', '7358559634', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403230028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-23 05:35:13', 0, NULL, 0, NULL, 1),
(17828, 'RAJADURAI M', '13', '7539922724', '', 'mrajadurai1403@gmail.com', '2001-03-14', 23, '3', '2', 'Petchiyammal', 'Cooley', 8000.00, 1, 0.00, 4.00, 'Virudhunagar', 'BANGLORE', '2403230029', '', '1', 'upload_files/candidate_tracker/34470741670_M.Rajadurai_B.E(Mech)_Python Developer (1).pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 05:58:19', 112, '2024-03-23 06:13:44', 0, NULL, 1),
(17829, 'Karthickraja', '13', '6383133809', '', 'rajkarthick1135@gmail.com', '2001-03-19', 23, '3', '2', 'Subbulakshmi', 'Nil', 40000.00, 1, 0.00, 18000.00, 'Sattur', 'Chennai', '2403230030', '', '1', 'upload_files/candidate_tracker/76229456222_New Uploaded Resume (4).pdf', NULL, '1', '2024-03-23', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 06:01:09', 112, '2024-03-23 06:09:01', 0, NULL, 1),
(17830, 'Sandhyarani Gouda', '31', '9439536398', '7008987009', 'gaudasandhyarani@gmail.com', '1994-05-30', 29, '3', '1', 'Anjan Goud', 'Sous chef', 60000.00, 3, 0.00, 25000.00, 'Berhampur, Odisha', 'Chennai', '2403230031', '', '1', 'upload_files/candidate_tracker/19985444237_SANDHYA_MCA_SC_2016_Frontend Dev _OMR (4).pdf', NULL, '2', '2024-03-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-23 06:55:27', 1, '2024-03-23 09:36:04', 0, NULL, 1),
(17831, 'Thevash mathavan R', '13', '9384353672', '8754372900', 'thevashmathavan01@gmail.com', '2002-01-02', 22, '3', '2', 'Ramesh', 'Police', 35000.00, 1, 0.00, 2.00, 'Vaithiyanathapuram vadagarai periyakulam theni', 'Velachery Chennai', '2403230032', '', '1', 'upload_files/candidate_tracker/76347286087_Resume (1).pdf (6)-3.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 06:58:04', 112, '2024-03-23 06:19:51', 0, NULL, 1),
(17832, 'Jeroon renoled', '13', '8072689082', '', 'jeroonrenoled@gmail.com', '2000-02-19', 24, '3', '2', 'Laurence', 'Java developer', 7000.00, 1, 0.00, 350000.00, 'Mayiladithurai', 'Perumbakam', '2403230033', '', '1', 'upload_files/candidate_tracker/31019344297_New Myresume pdf (2).pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 06:58:20', 112, '2024-03-23 06:18:25', 0, NULL, 1),
(17833, 'Mohana Priya', '6', '8220539559', '', 'mohanamuthuazhagan@gmail.com', '2000-07-03', 23, '2', '2', 'Gomathy', 'Post master', 25000.00, 1, 0.00, 15000.00, 'TIRUVANNAMALAI', 'TIRUVANNAMALAI', '2403230034', '1', '1', 'upload_files/candidate_tracker/23211651286_CV_2024-02-15-123733.pdf', NULL, '1', '2024-03-23', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-23 06:58:33', 112, '2024-03-23 06:23:14', 0, NULL, 1),
(17834, 'Sathishkumar', '13', '9003393027', '', 'kksathishkumar007@gmail.com', '2000-07-05', 23, '3', '2', 'Kanthasamy', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Melmalaiyanur', 'Velachery', '2403230035', '', '1', 'upload_files/candidate_tracker/79223409919_Minimalist White and Grey Professional Resume_20240323_092039_0000.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 07:01:21', 112, '2024-03-23 06:19:09', 0, NULL, 1),
(17835, 'Ramya', '6', '9080371119', '6381813212', 'cutyrakshu1999@gmail.com', '1999-05-26', 24, '2', '2', 'Jeevanandham', 'Daily wager', 50000.00, 1, 243950.00, 370000.00, 'Chennai, pulianthope', 'Pulianthope', '2403230036', '30', '2', 'upload_files/candidate_tracker/750854263_DocScanner 29-Dec-2023 9-16 pm.pdf', NULL, '1', '2024-03-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 07:23:20', 112, '2024-03-23 06:22:04', 0, NULL, 1),
(17836, 'vijay', '6', '7871021665', '', 'vijayramesh2720@gmail.com', '2000-06-27', 23, '2', '2', 'ramesh', 'driver', 18000.00, 1, 200000.00, 350000.00, 'chennai', 'chennai', '2403230037', '1', '2', 'upload_files/candidate_tracker/66112430459_vijay.pdf', NULL, '1', '2024-03-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-23 07:29:56', 104, '2024-03-23 06:43:34', 0, NULL, 1),
(17837, '', '0', '8667454980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403230038', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-23 07:35:13', 0, NULL, 0, NULL, 1),
(17838, 'sivaram n', '13', '6369882686', '', 'sivaraman271002@gmail.com', '2009-03-23', 15, '3', '2', 'naganathan', 'businnes', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2403230039', '', '1', 'upload_files/candidate_tracker/24489815144_sivaraman.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 07:38:18', 112, '2024-03-23 06:18:47', 0, NULL, 1),
(17839, 'Ramgopinath Arasamuthu', '6', '8825438988', '9087616264', 'ramgopirgcbm@gmail.com', '1997-08-09', 26, '2', '2', 'Arasamuthu', 'Farmer', 20000.00, 1, 25000.00, 35000.00, 'Bodinayakanur', 'Korattur', '2403230040', '30', '2', 'upload_files/candidate_tracker/25353816635_Resume_voice_2024 (1).pdf', NULL, '1', '2024-03-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 07:44:05', 112, '2024-03-23 04:54:45', 0, NULL, 1),
(17840, '', '0', '8807711929', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403230041', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-23 07:44:43', 0, NULL, 0, NULL, 1),
(17841, 'Surya kumar', '13', '8973827191', '', 'suriyakumar59@gmail.com', '1997-05-12', 26, '3', '2', 'Anand', 'Driver', 8000.00, 3, 21000.00, 30000.00, 'Tirunelveli', 'coimbatore', '2403230042', '', '2', 'upload_files/candidate_tracker/92464231508_Surya kumar.pdf', NULL, '1', '2024-03-23', 15, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 07:49:29', 112, '2024-03-23 06:14:05', 0, NULL, 1),
(17842, 'Arul Rosario', '14', '9043870363', '', 'Arulrosarioofficial@gmail.com', '2002-10-20', 21, '3', '2', 'Antony Wilson', 'Student', 25000.00, 1, 0.00, 6.00, 'Chennai', 'Chennai', '2403230043', '', '1', 'upload_files/candidate_tracker/87801660822_ArulRosarioCV.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 07:50:22', 112, '2024-03-23 06:13:06', 0, NULL, 1),
(17843, 'MATHESH A', '14', '6382933107', '', 'mathesharumugam@gmail.com', '2002-11-27', 21, '3', '2', 'Arumugam', 'Business', 40000.00, 1, 0.00, 5.00, 'Karur', 'Chennai', '2403230044', '', '1', 'upload_files/candidate_tracker/43843829805_resume-3.pdf', NULL, '1', '2024-03-23', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 07:51:31', 112, '2024-03-23 06:10:22', 0, NULL, 1),
(17844, 'Vasanth', '13', '8940633863', '', 'vasanthajay53@gmail.com', '2009-03-23', 0, '3', '2', 'Jegatheesh', 'Tailor', 20000.00, 1, 0.00, 20000.00, 'Sivagangai', 'Chennai', '2403230045', '', '1', 'upload_files/candidate_tracker/37953673938_vasanth j.python resume.pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 08:04:20', 112, '2024-03-23 06:19:33', 0, NULL, 1),
(17845, 'GANAPATHI D', '13', '9597868376', '', 'ganapathig542@gmail.com', '2003-06-23', 20, '3', '2', 'Devaraj', 'Daily wages', 20000.00, 1, 0.00, 20000.00, 'Gingee,Sathiyamangalam', 'Gingee,Sathiyamangalam', '2403230046', '', '1', 'upload_files/candidate_tracker/82964733962_Ganapathi(prof) (1) (2).pdf', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 08:09:57', 112, '2024-03-25 06:55:50', 0, NULL, 1),
(17846, 'Sudharsan', '6', '9080846890', '', 'sudharabishek26@gmail.com', '2000-03-30', 23, '2', '2', 'Priya', 'Mnc manager', 80000.00, 1, 0.00, 4.00, 'Tiruppur', 'Tiruppur', '2403230047', '29', '1', 'upload_files/candidate_tracker/3258526594_sudharsan_devops_resume.pdf', NULL, '1', '2024-03-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-23 08:10:24', 1, '2024-03-23 08:14:18', 0, NULL, 1),
(17847, 'Sumaiya Khanum', '11', '8618668531', '', 'sumaiyakhanrocks@gmail.com', '1997-08-24', 26, '3', '2', 'Naseer Khan', 'Ayurvedic Doctor', 30000.00, 3, 25000.00, 30000.00, 'mangamnapalya, Bommanahalli, Bangalore', 'Mangamnapalya, Bommanahalli, Bangalore', '2403230048', '', '2', 'upload_files/candidate_tracker/61482102553_Sumaiya Khanum_CV.pdf', NULL, '2', '2024-03-23', 0, '', '3', '59', '2024-03-25', 240000.00, '', '3', '2024-12-11', '2', 'Selected for HR profile Banaglore Location in Staff /Role', '6', '1', '1', '2', '2', '1', '2', '1970-01-01', '3', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 08:22:26', 60, '2024-03-27 10:45:31', 0, NULL, 1),
(17848, 'Balamurugan', '13', '9080049891', '9942614853', 'sugumaranbala98@gmail.com', '1998-11-14', 25, '6', '2', 'Sumathi', 'Home work', 10000.00, 0, 0.00, 2.20, 'Cuddalore', 'Cuddalore', '2403230049', '', '1', 'upload_files/candidate_tracker/37531147472_Balamurugan Resume with Photo.pdf', NULL, '2', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-23 08:45:12', 112, '2024-03-26 06:20:17', 0, NULL, 1),
(17849, 'M Ranjitgana', '6', '8807752405', '9944357396', 'ranjittvm24@gmail.com', '1997-05-24', 26, '2', '2', 'G moorthy', 'Mechanic', 250000.00, 1, 0.00, 240000.00, 'Tiruvannamalai', 'Pudupettai', '2403230050', '1', '1', 'upload_files/candidate_tracker/85326313782_RANJITGANA MOORTHY RESUME.pdf', NULL, '1', '2024-03-23', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Performance And Communication Is poor,as well as his attire is not good ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-23 09:06:14', 112, '2024-03-23 04:48:36', 0, NULL, 1),
(17850, '', '0', '9942614952', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403230051', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-23 09:17:10', 0, NULL, 0, NULL, 1),
(17851, '', '0', '6379985616', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403230052', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-23 10:42:54', 0, NULL, 0, NULL, 1),
(17852, '', '0', '6383551080', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403230053', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-23 12:41:24', 0, NULL, 0, NULL, 1),
(17853, 'Kiran kumar', '6', '9392885781', '', 'kumarkiran.k2017@gmail.com', '2000-04-17', 23, '2', '2', 'K subramanyam', 'Labour', 18000.00, 2, 15000.00, 21000.00, 'Chittoor,Andhra Pradesh', 'Velacherry , chennai', '2403240001', '29', '2', 'upload_files/candidate_tracker/46008847576_kiran resume kk.pdf', NULL, '1', '2024-03-25', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'language issue, he comfortable with Telugu ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-24 02:15:34', 112, '2024-03-25 04:32:54', 0, NULL, 1),
(17854, '', '0', '8056244832', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403240002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-24 04:41:23', 0, NULL, 0, NULL, 1),
(17855, 'Hamath Kumar', '6', '7010393556', '', 'hamathkmr808@gmail.com', '1999-09-07', 24, '2', '2', 'Sumathi', 'B tech', 40000.00, 1, 0.00, 370000.00, 'CHENNAI', 'CHENNAI', '2403240003', '29', '2', 'upload_files/candidate_tracker/76819036603_RESUME NEW 2023 1_1705639201917_Hamath Kumar M.pdf', NULL, '2', '2024-03-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for Sales having exp in Inbound and backend operation Holding another offer too will not sustain ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-24 06:59:04', 112, '2024-03-25 10:40:22', 0, NULL, 1),
(17856, 'Rogan prabhu', '6', '7010537097', '7667035975', 'rogan3244@gmail.com', '1999-07-21', 24, '2', '2', 'Venkateswaran', 'Retired bank staff', 30000.00, 1, 0.00, 23000.00, 'Rajiv Gandhi nagar neelambur coimbatore 641062', 'Spencer plaza', '2403240004', '29', '1', 'upload_files/candidate_tracker/12374499788_rogan- ceh resume.pdf', NULL, '1', '2024-03-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-24 04:30:04', 1, '2024-03-24 04:45:04', 0, NULL, 1),
(17857, 'Vigneshwaran', '13', '7639188182', '8754926825', 'vigneshwarans.info07@gmail.com', '2002-04-19', 21, '3', '2', 'M.Selvarasu', 'Framer', 20000.00, 1, 0.00, 200000.00, 'Tittagudi', 'Thoripakkam', '2403250001', '', '1', 'upload_files/candidate_tracker/97271430075_Vigneshwaran-S-FlowCV-Resume-20240221.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 03:45:03', 112, '2024-03-25 04:20:02', 0, NULL, 1),
(17858, 'Parameswaran S', '13', '8754753057', '', 'parameshwaran2003@gmail.com', '2009-03-25', 0, '3', '2', 'Subramanian', 'Business', 200000.00, 1, 0.00, 200000.00, 'Trichy', 'Chennai', '2403250002', '', '1', 'upload_files/candidate_tracker/3565905721_Parameswaran_CV.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:13:57', 112, '2024-03-25 04:21:12', 0, NULL, 1),
(17859, 'Dhinaharan', '13', '6382238312', '', 'dhinaharan0304@gmail.com', '2001-05-03', 22, '3', '2', 'Thangavelu', 'Business', 50000.00, 2, 0.00, 300000.00, 'Manapparai', 'Chennai', '2403250003', '', '1', 'upload_files/candidate_tracker/65029621318_dhinaharan _resume.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:15:03', 112, '2024-03-25 03:56:06', 0, NULL, 1),
(17860, 'jerwin titus', '13', '8825526803', '', 'jerwintitus1999@gmail.com', '1999-12-11', 24, '3', '2', 'darwin', 'business', 20000.00, 1, 0.00, 300000.00, 'thoothukudi', 'chennai', '2403250004', '', '1', 'upload_files/candidate_tracker/10430630954_JERWIN TITUS D Resume.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:30:43', 130, '2024-04-12 05:41:52', 0, NULL, 1),
(17861, 'Sathiyaseelan Senthamilselvan', '31', '9345531926', '', 'sathiyanselvam97.ss@gmail.com', '1997-05-12', 26, '3', '2', 'Devika S', 'Government employee', 8600.00, 0, 0.00, 3.50, 'Nagapattinam', 'Chennai', '2403250005', '', '1', 'upload_files/candidate_tracker/92857955263_Sathiyaseelan.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:35:44', 130, '2024-04-09 03:38:03', 0, NULL, 1),
(17862, 'Yuvasree P', '13', '6381990575', '6374788632', 'yuvasreepugal@gmail.com', '2002-06-24', 21, '3', '2', 'K. Pugalzhendhi', 'Tailor', 25000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2403250006', '', '2', 'upload_files/candidate_tracker/19406360437_CV_2024032419102617.pdf', NULL, '1', '2024-03-25', 15, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:38:05', 112, '2024-03-25 04:19:18', 0, NULL, 1),
(17863, 'Sanjay', '13', '7904613559', '', 'Sanjayperiyasamy117@gmail.com', '2001-08-09', 22, '3', '2', 'Periyasamy', 'Tailor', 200000.00, 0, 0.00, 350000.00, 'Shengottai', 'Kilambakkam', '2403250007', '', '1', 'upload_files/candidate_tracker/42721519999_Sanjay.pdf', NULL, '1', '2024-03-25', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:39:29', 112, '2024-03-25 03:47:16', 0, NULL, 1),
(17864, 'aakash', '3', '8098001433', '7358824794', 'aakash.n0dev@gmail.com', '2002-07-12', 21, '3', '2', 'natarajan', 'florist', 25000.00, 1, 0.00, 300000.00, 'thanjavur', 'guindy', '2403250008', '', '1', 'upload_files/candidate_tracker/69306482261_Aakash_CV.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:41:52', 112, '2024-03-25 04:27:31', 0, NULL, 1),
(17865, 'E.Shanmugavalli', '13', '9843986627', '8754065662', 'shanmugavalli218@gmail.com', '2002-02-18', 22, '3', '2', 'Vijayalakshmi', 'Homemaker', 15000.00, 2, 0.00, 15000.00, 'Ammapatty, Karisalpatty(Po),Sivaganga(Dt)', '1/309 kalaththumettu street,Kottivakkam, Chennai', '2403250009', '', '1', 'upload_files/candidate_tracker/95299259959_Shanmugavalli_Fullstack developer.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:42:48', 112, '2024-03-25 03:56:22', 0, NULL, 1),
(17866, 'Karthick P', '13', '9150426730', '', 'karthickkarthick1884@gmail.com', '2001-08-29', 22, '3', '2', 'Pandiyaraj', 'Salesman', 15000.00, 1, 0.00, 400000.00, 'Rajapalayam', 'Chennai', '2403250010', '', '1', 'upload_files/candidate_tracker/30274584515_Res (1).pdf', NULL, '1', '2024-03-25', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:52:11', 112, '2024-03-25 04:22:30', 0, NULL, 1),
(17867, 'Kanimozhi G', '31', '6385576672', '', 'gkanimozhi.ganeshbabu@gmail.com', '2002-08-29', 21, '3', '2', 'Ganeshbabu', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Thoothukudi', 'Anna nagar, Chennai', '2403250011', '', '1', 'upload_files/candidate_tracker/70702457968_gkanimozhi_frontend developer.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:53:37', 112, '2024-03-25 03:54:59', 0, NULL, 1),
(17868, 'Sharathy K', '13', '9361959828', '', 'iamsharathykabilan@gmail.com', '2001-09-13', 22, '3', '2', 'Kabilan N', 'Farmer', 15000.00, 1, 0.00, 2.00, 'Salem', 'Chennai', '2403250012', '', '1', 'upload_files/candidate_tracker/81393573627_SHARATHY K _ RESUME.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:53:52', 112, '2024-03-25 03:54:42', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17869, 'Archana K', '13', '9788883406', '9788883405', 'iamarchanakumar20@gmail.com', '2002-02-20', 22, '3', '2', 'Kumar R', 'Carpenter', 40000.00, 1, 0.00, 2.00, 'kallakurichi', 'Anna nager, Chennai', '2403250013', '', '1', 'upload_files/candidate_tracker/9592602408_Archana_20.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:53:59', 112, '2024-03-25 03:55:34', 0, NULL, 1),
(17870, 'Thamodharan.P', '13', '8940891165', '9677395508', 'dharant787@gmail.com', '1999-12-28', 24, '3', '2', 'Parent', 'Former', 15000.00, 1, 0.00, 20000.00, 'Tiruvannamalai', 'Velachery,Chennai', '2403250014', '', '1', 'upload_files/candidate_tracker/28222371584_Thamodharan(dev).pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:56:38', 112, '2024-03-25 03:53:58', 0, NULL, 1),
(17871, 'Pooja shree A', '13', '8667590266', '6379165911', 'poojamthn@gmail.com', '2001-02-19', 23, '3', '2', 'Arivarasan N', 'Farmer', 20000.00, 1, 0.00, 19000.00, 'Trichy', 'Chennai', '2403250015', '', '1', 'upload_files/candidate_tracker/84063206688_Pooja Resume 2.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:56:49', 112, '2024-03-25 03:50:10', 0, NULL, 1),
(17872, 'Priyadharshini G', '13', '6374269018', '9663910449', 'Priyadharshini18babu@gmail.com', '2000-06-18', 23, '3', '2', 'Ganesh Babu s', 'Hospital worker', 30000.00, 1, 0.00, 20000.00, 'Pudukkottai', 'Chennai', '2403250016', '', '1', 'upload_files/candidate_tracker/77919465125_Priya Master_Resume..pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:56:56', 112, '2024-03-25 03:54:16', 0, NULL, 1),
(17873, 'Deepa K', '13', '6379102362', '', 'deepakrishnan7799@gmail.com', '2002-09-20', 21, '3', '2', 'T.Krishnakumar', 'Machine Operator', 70000.00, 1, 0.00, 2.00, 'Chennai', 'Chennai', '2403250017', '', '1', 'upload_files/candidate_tracker/92627811294_Deepa K_Java Full Stack.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:57:56', 112, '2024-03-25 04:20:39', 0, NULL, 1),
(17874, 'Sethumamannar P', '13', '8248347687', '9842853755', 'Sethumamannar@gmail.com', '2003-05-01', 20, '3', '2', 'PICHAITHADHAN', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Salem', 'Velachery', '2403250018', '', '1', 'upload_files/candidate_tracker/2048406195_Sethu .pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:58:38', 112, '2024-03-25 03:52:20', 0, NULL, 1),
(17875, 'K. Praneshwaran', '13', '8610529443', '', 'Praneshsumathi@gamil.com', '2003-07-06', 20, '3', '2', 'G.Kalaiselvam', 'Labour', 12000.00, 0, 0.00, 200000.00, 'SALEM', 'CHENNAI', '2403250019', '', '1', 'upload_files/candidate_tracker/56366232288_grey and white cv resume_20231225_135537_0000.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:58:38', 112, '2024-03-25 03:53:34', 0, NULL, 1),
(17876, 'M.JOTHIISH', '13', '7092590639', '7339316793', 'jojo11112002@gmail.com', '2002-11-11', 21, '3', '2', 'N.JAYA LAKSHMI', 'Scan report typist', 15000.00, 1, 0.00, 1.50, 'Salem', 'Chennai', '2403250020', '', '1', 'upload_files/candidate_tracker/77649824347_Blue Simple Professional CV Resume_20240129_120245_0000.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:00:15', 112, '2024-03-25 03:52:53', 0, NULL, 1),
(17877, 'Sornambigai S', '13', '6379213415', '', 'sornasankar39@gmail.com', '2000-09-03', 23, '3', '2', 'Sankar and Malarkodi', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Jayankondam ,pudukudi', 'Chennai, Velachery', '2403250021', '', '1', 'upload_files/candidate_tracker/5157942609_sornambigai.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:00:24', 112, '2024-03-25 03:55:16', 0, NULL, 1),
(17878, 'M.sabarinadhan', '13', '9095775006', '7845498900', 'sabarinadhan232@gmail.com', '2009-03-25', 0, '3', '2', 'J.Manickam', 'Weaver', 20000.00, 1, 0.00, 200000.00, 'Salem', 'Chennai', '2403250022', '', '1', 'upload_files/candidate_tracker/31960083383_Resume 1.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:00:59', 112, '2024-03-25 03:53:12', 0, NULL, 1),
(17879, 'Thinesh Thinesh', '6', '9677307336', '9710319984', 'thineshdinesh396@gmail.com', '2001-01-27', 23, '2', '2', 'Jaya Kumar', 'Car driver', 15000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2403250023', '29', '2', 'upload_files/candidate_tracker/13430392891_J Thinesh 18 BM008(1).pdf', NULL, '1', '2024-03-25', 15, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary exp High xxamp Outside field not int', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:10:23', 112, '2024-03-25 04:31:48', 0, NULL, 1),
(17880, 'vishnu m', '14', '9384380801', '9442381801', 'vishnumohan93843@gmail.com', '2003-01-04', 21, '3', '2', 'mohanraj', 'Business', 20000.00, 1, 0.00, 300000.00, 'Pollachi', 'chenna', '2403250024', '', '1', 'upload_files/candidate_tracker/55556704627_Vishnu Resume .pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:10:49', 130, '2024-05-02 11:24:58', 0, NULL, 1),
(17881, 'thirumalai e', '23', '9944174931', '9786287809', 'thiruaalvin123@gmail.com', '2000-06-03', 23, '3', '2', 'egambaram m', 'farmer', 15000.00, 3, 0.00, 18000.00, 'maariyamman kovil street kapiyampuliyur villupuram', 'chennai', '2403250025', '', '1', 'upload_files/candidate_tracker/59053346450_Resume.pdf', NULL, '1', '2024-03-25', 0, '', '3', '59', '2024-03-25', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Employment 16K initial for 3 months then 18K', '2', '1', '2', '1', '8', '', '2', '1970-01-01', '4', '2', '9944174931', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:11:53', 60, '2024-03-25 12:03:55', 0, NULL, 1),
(17882, 'Lokesh T', '2', '9941470948', '', 'lokeshthangaraj162002@gmail.com', '2002-12-16', 21, '3', '2', 'E. Thangaraj', 'Carpenter', 8000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2403250026', '', '1', 'upload_files/candidate_tracker/94621167836_Web Developer Resume.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:14:19', 130, '2024-05-02 11:26:20', 0, NULL, 1),
(17883, 'Dinesh', '2', '8220739671', '', 'Dinesh.softwaredeveloper31@gmail.com', '2002-01-18', 22, '3', '2', 'Sugumar', 'Painter', 60000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2403250027', '', '1', 'upload_files/candidate_tracker/32147331256_Dinesh Resume .pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:15:05', 112, '2024-03-25 03:55:50', 0, NULL, 1),
(17884, 'Prasanth.R.K', '2', '9025037008', '9123511697', 'prasanthrk2002@gmail.com', '2002-01-05', 22, '3', '2', 'R.kumar', 'Electrician', 12000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2403250028', '', '1', 'upload_files/candidate_tracker/51607196333_merged.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:21:08', 130, '2024-05-02 11:41:16', 0, NULL, 1),
(17885, 'devi', '31', '8525051511', '9941712494', 'devivenkat56@gmail.com', '2002-06-05', 21, '3', '2', 'Venkatesan', 'Driver', 15000.00, 2, 0.00, 1.20, 'Chennai', 'Chennai', '2403250029', '', '1', 'upload_files/candidate_tracker/62072314164_DEVI-RESUME.pdf', NULL, '1', '2024-03-25', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:25:42', 112, '2024-03-25 06:05:26', 0, NULL, 1),
(17886, 'Manne Hemanth Kumar', '2', '7032759352', '', 'mannehemanthkumar2001@gmail.com', '2001-08-09', 22, '3', '2', 'Manne Munaswamy', 'Farmer', 10000.00, 1, 0.00, 360000.00, 'Varadaiahpalem', 'Varadaiahpalem', '2403250030', '', '1', 'upload_files/candidate_tracker/18179926896_manne.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:36:21', 130, '2024-04-09 03:37:30', 0, NULL, 1),
(17887, 'Esakkiammal', '13', '8608976919', '9488406919', 'esakkkiammal8608@gmail.com', '2001-04-04', 22, '3', '2', 'Amali', 'House wife', 200000.00, 2, 0.00, 10.00, '2/24 ranjithammal compex kongarayakurichi', 'Chennai', '2403250031', '', '1', 'upload_files/candidate_tracker/89943709600_Esakkiammal.resume-3.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:36:31', 112, '2024-03-25 03:50:38', 0, NULL, 1),
(17888, 'Yuvaganesh K', '31', '7639328582', '', 'yuvaganeshstark@gmail.com', '2003-09-04', 20, '3', '2', 'Kovalan', 'Ex service- man', 300000.00, 3, 0.00, 300000.00, 'Vellore', 'poonamallee', '2403250032', '', '1', 'upload_files/candidate_tracker/6030283276_Yuvaganesh Resume1.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:36:51', 112, '2024-03-25 03:49:35', 0, NULL, 1),
(17889, 'Shabeer basha A', '31', '7358677740', '9677207856', 'Shabeer73sa@gmail.com', '2002-07-22', 21, '1', '2', 'Abdul alim A', 'Butcher shop', 30000.00, 1, 0.00, 300000.00, '196 sinivas nagar attipattu Chennai 120', '196 Sinivas Nagar Attipattu Chennai 120', '2403250033', '', '1', 'upload_files/candidate_tracker/13293429452_Shabeer Resume.pdf', NULL, '1', '2024-05-10', 0, 'Madhana', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:39:56', 112, '2024-05-10 02:46:14', 0, NULL, 1),
(17890, 'Jayakumar', '14', '9360518149', '9791318363', 'jdon9941@gmail.com', '2001-08-30', 22, '3', '2', 'Ramesh m', 'Daily wage', 30000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2403250034', '', '1', 'upload_files/candidate_tracker/37572575512_jai (1).pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:41:42', 130, '2024-05-02 10:36:16', 0, NULL, 1),
(17891, 'Ajmal Ahmed', '13', '9384665154', '', 'ajmalahamed841@gmail.com', '2001-10-22', 22, '3', '2', 'Misriya', 'House wife', 200000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2403250035', '', '1', 'upload_files/candidate_tracker/40782367438_Ajmal Ahmed M- CV.docx', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:42:22', 112, '2024-03-25 04:01:45', 0, NULL, 1),
(17892, 'ABHISHEK S', '13', '9488305720', '', 'sasiabhishek15122001@gmail.com', '2001-12-15', 22, '3', '2', 'SASI S', 'Tea Panel', 10000.00, 1, 0.00, 500000.00, 'Salem', 'Salem', '2403250036', '', '1', 'upload_files/candidate_tracker/21416244353_ABHISHEK S (6).pdf', NULL, '2', '2024-04-01', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '4', '7', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 05:49:29', 112, '2024-04-01 03:49:11', 0, NULL, 1),
(17893, 'Kamali', '13', '8870775375', '9443275375', 'kamaliasr1999@gmail.com', '1999-11-26', 24, '3', '2', 'Selvaraj', 'Shop keeper', 20000.00, 2, 0.00, 18000.00, 'Kanchipuram', 'Kanchipuram', '2403250037', '', '1', 'upload_files/candidate_tracker/78104851153_Kamali26_Selvaraj.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:00:47', 112, '2024-03-25 05:54:57', 0, NULL, 1),
(17894, 'Klinton A', '13', '7339047488', '', 'klintonnotnilk420@gmail.com', '2003-07-16', 20, '3', '2', 'ArockiaSamy', 'Corpernter', 30000.00, 2, 0.00, 250000.00, 'VIRALIMALAI', 'VIRALIMALAI', '2403250038', '', '1', 'upload_files/candidate_tracker/11081779770_KLINTON.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:00:58', 130, '2024-04-12 05:35:49', 0, NULL, 1),
(17895, 'Karthikeyan J', '13', '7092950718', '9003895467', 'josephkarthick2504@gmail.com', '2001-04-25', 22, '3', '2', 'Janakiraman', 'Farmer', 50000.00, 1, 0.00, 400000.00, 'Villupuram', 'Chennai', '2403250039', '', '1', 'upload_files/candidate_tracker/71156571779_Karthikeyan-J-FlowCV-Resume-20240314.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:01:21', 112, '2024-03-25 06:07:47', 0, NULL, 1),
(17896, 'Mukesh Raaj V', '13', '9445620712', '', 'mukeshraaj.v@gmail.com', '1999-11-29', 24, '3', '2', 'Vasudevan', 'LIC Asst. Clerk', 40000.00, 2, 0.00, 400000.00, '146/76 Pumping Station, Kilpauk, chennai-10', '9 AVS Main rd. , sivagami nagar,N korattur, Ch-76', '2403250040', '', '1', 'upload_files/candidate_tracker/7205178867_MukeshRaajVResume (2).pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:01:21', 130, '2024-04-12 05:35:23', 0, NULL, 1),
(17897, 'JEYA PRAKASH S', '13', '8778231615', '', 'jeyap3814@gmail.com', '1999-08-22', 24, '3', '2', 'SHANMUGAM P', 'Farmer', 10000.00, 2, 0.00, 18000.00, 'DINDIGUL', 'DINDIGUL', '2403250041', '', '1', 'upload_files/candidate_tracker/36161177753_JEYA PRAKASH S.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:01:41', 130, '2024-05-02 11:46:53', 0, NULL, 1),
(17898, 'Abinesh', '6', '9003156575', '', 'mabinesh57@gmail.com', '2000-10-16', 23, '2', '2', 'Mohan', 'Kuli', 125000.00, 1, 0.00, 15000.00, 'Chennai, Madhavaram', 'Chennai,madhavaram', '2403250042', '1', '1', 'upload_files/candidate_tracker/23991130946_Abinesh_M_Resume_1681404985943-3.pdf', NULL, '1', '2024-03-25', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is looking inside sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-25 06:02:37', 112, '2024-03-25 04:36:08', 0, NULL, 1),
(17899, 'M.yukesh', '6', '6382389084', '7845285775', 'yukeshajay37@gmail.com', '2000-07-14', 23, '2', '2', 'Madhan.M', 'EB', 30000.00, 1, 0.00, 15000.00, 'Mathur 1st main road ch 68', 'Muthur 1st main road ch 68', '2403250043', '1', '1', 'upload_files/candidate_tracker/85621903843_yukesh resume.pdf', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-25 06:03:39', 112, '2024-03-25 04:18:07', 0, NULL, 1),
(17900, 'Albert Gill A', '13', '8667495583', '', 'gillalbert22@gmail.com', '1998-04-10', 25, '3', '2', 'Ronickam A', 'Unemployed', 20000.00, 1, 0.00, 200000.00, 'Pudukkottai', 'Pudukkottai', '2403250044', '', '1', 'upload_files/candidate_tracker/18579832652_Albert-Resume.pdf', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:04:04', 112, '2024-03-25 06:19:19', 0, NULL, 1),
(17901, 'Sri prasath', '13', '8015687031', '', 'sriprasath1608@gmail.com', '2003-08-16', 20, '3', '2', 'Nagaraj', 'Elastic band work', 30000.00, 1, 0.00, 20000.00, 'Thirunelveli', 'Chennai', '2403250045', '', '1', 'upload_files/candidate_tracker/92535171016_resume 1.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:09:29', 112, '2024-03-25 06:02:15', 0, NULL, 1),
(17902, 'Mohammed Siddique', '13', '7358578877', '9380072686', 'mohammedsiddique1510@gmail.com', '1999-10-15', 24, '3', '2', 'H. Malk Sahib, M. Sahar Banu', 'Leather worker', 20000.00, 2, 0.00, 200000.00, 'Pallavaram, Chennai', 'Pallavaram, Chennai', '2403250046', '', '1', 'upload_files/candidate_tracker/99493327036_Mohammed Siddique Resume .pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:10:44', 130, '2024-05-02 11:49:05', 0, NULL, 1),
(17903, 'Yuvaraj G', '31', '8056930985', '', 'yuvaraj9678@gmail.com', '2003-07-11', 20, '3', '2', 'Ganesan', 'Agriculture', 7000.00, 1, 0.00, 120000.00, 'Alamara east street, pudur, ,kallakurichi- 605801', 'Chennai', '2403250047', '', '1', 'upload_files/candidate_tracker/8055938282_Yuvaraj Cv.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:11:06', 112, '2024-03-25 05:54:24', 0, NULL, 1),
(17904, 'Prakash Raj M', '31', '9489402877', '', 'prakashmadhaiyan02@gmail.com', '2002-04-24', 21, '3', '2', 'Madhaiyan B K', 'Business', 15000.00, 2, 0.00, 300000.00, 'Krishnagiri', 'Chennai', '2403250048', '', '1', 'upload_files/candidate_tracker/63920780636_Resume.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:12:16', 130, '2024-05-02 10:45:04', 0, NULL, 1),
(17905, 'THIBASH', '31', '8870020991', '6374563049', 'thibashthirumalai@gmail.com', '2002-10-18', 21, '3', '2', 'THIRUMALAI', 'Former', 15000.00, 2, 0.00, 250000.00, '1/325 A, Angalamman kovil street, Sennakunam', 'Vadapalani, Chennai', '2403250049', '', '1', 'upload_files/candidate_tracker/71626377350_Thibash Frontend resume.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:12:49', 112, '2024-03-25 06:12:47', 0, NULL, 1),
(17906, 'M.Iyyappan', '31', '8939698905', '9791356125', 'iyyappanmani03@gmail.com', '2003-01-12', 21, '3', '2', 'K.manivelan', 'Tea shop', 25000.00, 5, 0.00, 250000.00, 'Chennai', 'Chennai', '2403250050', '', '1', 'upload_files/candidate_tracker/28814913427_a0f9v-ezgcj.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:13:39', 112, '2024-03-25 06:07:03', 0, NULL, 1),
(17907, 'Selva samprash A', '31', '7397138973', '8056930985', 'selvasamprash777@gmail.com', '2000-12-14', 23, '4', '2', 'Arockia raja P', 'Driver', 10000.00, 1, 0.00, 10000.00, 'Pudukkottai', 'Pudukkottai', '2403250051', '', '1', 'upload_files/candidate_tracker/23929472684_selvasamprash _ resume1.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:15:14', 112, '2024-03-25 06:13:28', 0, NULL, 1),
(17908, 'aakashn', '14', '8667041657', '9944810042', 'akashkr17197@gmail.com', '1997-01-17', 27, '3', '2', 'j narendra', 'bcom', 20000.00, 1, 25000.00, 30000.00, 'vellore', 'vellore', '2403250052', '', '2', 'upload_files/candidate_tracker/48585617674_Resume_Aakash_N 2.pdf', NULL, '1', '2024-03-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:17:32', 112, '2024-03-29 04:31:50', 0, NULL, 1),
(17909, 'Kalaivani Arumugam', '13', '8015417217', '', 'Kalaivanibrundha@gmail.com', '2002-09-01', 21, '3', '2', 'Brundha', 'Kuli', 2000.00, 1, 0.00, 3.00, 'Chennai', 'Che', '2403250053', '', '1', 'upload_files/candidate_tracker/69376534363_Kalaivani-Resume-1.pdf', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:26:11', 112, '2024-03-25 06:53:08', 0, NULL, 1),
(17910, 'Bhuvaneshwaran', '13', '6381184995', '', 'bhuvaneshdb5@gmail.com', '2009-03-25', 0, '3', '2', 'Hariharasubramainan', 'Bus driver', 35000.00, 2, 300000.00, 350000.00, 'Chennai', 'Chennai', '2403250054', '', '2', 'upload_files/candidate_tracker/37274861810_Bhuvanesh-resume-2.pdf', NULL, '1', '2024-03-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-25 06:29:56', 1, '2024-03-25 06:34:18', 0, NULL, 1),
(17911, 'Ganeshraja', '13', '6381609857', '', 'ganeshraja298@gmail.com', '1998-12-23', 25, '3', '2', 'Thiyagarajan', 'Farmer', 10000.00, 1, 15000.00, 20000.00, 'Mayiladuthurai', 'Porur, Chennai', '2403250055', '', '2', 'upload_files/candidate_tracker/58413400897_Ganeshraja_resume.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:30:25', 130, '2024-04-12 05:36:29', 0, NULL, 1),
(17912, 'shri', '31', '6382226569', '', 'shrimurugan95@gmail.com', '2000-12-28', 23, '3', '2', 'murugan-meena', 'farmer', 72000.00, 1, 0.00, 15000.00, 'dharmapuri', 'porur', '2403250056', '', '1', 'upload_files/candidate_tracker/33783747871_shri resume.pdf', NULL, '2', '2024-03-27', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:33:58', 112, '2024-03-27 03:48:04', 0, NULL, 1),
(17913, 'Saravanan.m', '5', '8248722626', '8220572152', 'Saravananbiotech97@gmail.com', '1997-05-27', 26, '1', '2', 'Manikandan.m', 'Working', 30000.00, 2, 210000.00, 25000.00, 'Chennai', 'Chennai', '2403250057', '', '2', 'upload_files/candidate_tracker/70758068350_SARAVANAN.pdf', NULL, '1', '2024-03-25', 15, 'CAFSUSR00702', '3', '59', '2024-04-10', 300000.00, '', '4', '2025-02-22', '1', 'Selected for Manikandna TEam in Staff Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:35:51', 60, '2024-04-09 05:07:42', 0, NULL, 1),
(17914, 'Sugasini.M', '23', '6380508825', '', 'shivasuga85@gmail.com', '2001-07-22', 22, '4', '1', 'Mathiyazhagan', 'Labour', 10000.00, 1, 0.00, 23000.00, 'Chennai', 'Kilpauk Chennai', '2403250058', '', '1', 'upload_files/candidate_tracker/534315165_Sugasini-M-FlowCV-Resume-20240321.pdf', NULL, '3', '2024-03-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-25 06:36:33', 1, '2024-03-25 06:43:58', 0, NULL, 1),
(17915, 'Kamali', '31', '6374563049', '8870020991', 'kamaliragul1234@gmail.com', '2003-05-23', 20, '3', '2', 'PACHAIYAPPAN', 'Former', 15000.00, 1, 0.00, 250000.00, '46, periyar street, NGGO nagar, Thirukovilur', '12 A, Vengadeshwara street, Velachery', '2403250059', '', '1', 'upload_files/candidate_tracker/74833768776_Kamali frontend resume.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:37:00', 112, '2024-03-25 05:55:10', 0, NULL, 1),
(17916, 'Nithya', '31', '9345667213', '', 'nithyaelumalai2003@gmail.com', '2003-02-19', 21, '3', '2', 'Elumalai', 'Farmer', 10000.00, 2, 0.00, 300000.00, '1/150,kaniya pillai Street v.palayam, Villupuram', 'Velachery, Chennai', '2403250060', '', '1', 'upload_files/candidate_tracker/56110216582_Nithya Resume.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:37:34', 112, '2024-03-25 05:55:28', 0, NULL, 1),
(17917, 'KAMATCHI', '31', '8111056984', '6374563049', 'Www.kama5434@gmail.com', '2003-04-16', 20, '3', '2', 'MURUGAN', 'Former', 15000.00, 3, 0.00, 250000.00, '2/63 Neru Street,Agaram, Kallakurichi 605756', '12 A, vengateswara Nagar , Velachery 600042', '2403250061', '', '1', 'upload_files/candidate_tracker/60396868521_Resume_25_03_2024_10_40_10_am.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:40:43', 112, '2024-03-25 06:13:02', 0, NULL, 1),
(17918, 'Devipriya', '13', '7010711750', '', 'devipriya231@gmail.com', '1996-06-12', 27, '3', '1', 'Manoj Kumar', 'Worked in Private ltd', 25000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2403250062', '', '1', 'upload_files/candidate_tracker/54279374696_Devipriya.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:49:06', 112, '2024-03-25 06:35:37', 0, NULL, 1),
(17919, 'Sasikala.L', '13', '8838755996', '', 'sasinaveen0508@gmail.com', '1998-08-05', 25, '3', '2', 'Loganathan', 'Farmer', 25000.00, 1, 0.00, 25.00, 'Sathyamangalam', 'Chennai', '2403250063', '', '1', 'upload_files/candidate_tracker/31097090211_SASIKALA.L RESUME .pdf', NULL, '3', '2024-03-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:54:25', 112, '2024-03-30 12:03:15', 0, NULL, 1),
(17920, 'Hariharan', '13', '7397012966', '', 'harigovindan705@gmail.com', '2002-07-11', 21, '3', '2', 'GOVINDAN', 'Labour', 25000.00, 1, 0.00, 3000000.00, 'Namakkal', 'Pallavaram', '2403250064', '', '1', 'upload_files/candidate_tracker/76269536384_RESUME.HARIHARAN 19EER030.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:58:52', 130, '2024-05-02 11:46:17', 0, NULL, 1),
(17921, 'Jagathesh Ganeshan', '13', '9597893772', '', 'jagasan1999@gmail.com', '1999-10-19', 24, '3', '2', 'Ganeshan M', 'Sweet master', 20000.00, 6, 0.00, 250000.00, 'Mohamed Sahibpuram,Tamil Nadu,', 'Mohamed Sahibpuram,Tamil Nadu,', '2403250065', '', '1', 'upload_files/candidate_tracker/93966738899_JAGATHESH GANESHAN.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 06:59:29', 130, '2024-05-02 11:24:18', 0, NULL, 1),
(17922, 'Sadhiq Basha', '6', '9840100524', '', 'sadhiqsadhiqu17@gmail.com', '2001-10-20', 22, '2', '2', 'Inayat', 'Driver', 7000.00, 0, 0.00, 300000.00, 'CHENNAI', 'CHENNAI', '2403250066', '1', '1', 'upload_files/candidate_tracker/39271196156_Updated Sadhiq_Resume.pdf', NULL, '3', '2024-03-25', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-25 07:00:46', 112, '2024-03-25 04:33:50', 0, NULL, 1),
(17923, 'James J', '13', '6379101312', '', 'daviddavid16377@gmail.com', '2002-04-30', 21, '3', '2', 'G Jeyapandi', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Thoothukudi.', 'Chennai', '2403250067', '', '1', 'upload_files/candidate_tracker/85666093094_cv_5_1691405566445.pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 07:03:32', 130, '2024-05-02 11:43:08', 0, NULL, 1),
(17924, 'Indhimathi', '13', '8754812239', '', 'indhumathiaruna648@gmail.com', '2003-05-03', 20, '3', '2', 'Arumugam.A', 'Farmer', 14000.00, 1, 0.00, 18000.00, 'Thiruniravur', 'Thiruniravur', '2403250068', '', '1', 'upload_files/candidate_tracker/30992183976_CV_2024032216224285.pdf', NULL, '3', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 07:08:26', 112, '2024-03-26 06:20:29', 0, NULL, 1),
(17925, 'Sandhiya D', '6', '7397438138', '', 'sandhiyadurai27@gmail.com', '2002-10-27', 21, '1', '2', 'Durai G', 'MRF Staff', 30000.00, 1, 0.00, 15000.00, 'No:12 balakrishna nagar, Bharathiyar street,', 'Tvt, chennai-19', '2403250069', '', '1', 'upload_files/candidate_tracker/20613285593_sandhiya resume.pdf', NULL, '1', '2024-03-25', 0, '77871', '3', '59', '2024-04-03', 164208.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 07:16:03', 60, '2024-04-02 07:09:30', 0, NULL, 1),
(17926, 'Michael Dnetto', '6', '9962850002', '', 'michael20020409@gmail.com', '2002-09-04', 21, '2', '2', 'Leslie Dnetto', 'Car driver', 200000.00, 1, 0.00, 15000.00, 'Mogappair east', 'Mogappair east', '2403250070', '45', '1', 'upload_files/candidate_tracker/23184644532_Resume.pdf', NULL, '1', '2024-04-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ready to go  appt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 07:21:48', 112, '2024-04-05 12:23:19', 0, NULL, 1),
(17927, 'dharan kumar rajendran', '6', '9980913535', '', 'dharanrajendran@gmail.com', '1991-11-11', 32, '2', '1', 'rajendran', 'retired', 30000.00, 1, 24000.00, 26000.00, 'chennai', 'chennai', '2403250071', '29', '2', 'upload_files/candidate_tracker/31698209071_RESUME.RDK.pdf', NULL, '1', '2024-03-27', 0, '', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good communication, 1.5 Years Gap in career, We will train and analyse for 7 days and then will move. ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 07:25:14', 112, '2024-03-27 01:12:33', 0, NULL, 1),
(17928, 'Karthikeyan P', '13', '7904266961', '', 'Share2karthikkn@gmail.com', '1997-12-14', 26, '3', '2', 'Palanithurai K', 'Teacher', 60000.00, 1, 0.00, 25000.00, 'Vadapalani Chennai', 'Chennai', '2403250072', '', '1', 'upload_files/candidate_tracker/21371093431_Karthikeyan - Full Stack Resume .pdf', NULL, '1', '2024-03-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 07:34:11', 130, '2024-04-12 05:37:03', 0, NULL, 1),
(17929, 'Prasanth.R.K', '2', '9123511697', '', 'prasanthrk2002@gmail.com', '2002-01-05', 22, '3', '2', 'R.kumar', 'Electrician', 12000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2403250073', '', '1', 'upload_files/candidate_tracker/59693138471_merged.pdf', NULL, '3', '2024-03-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-25 07:42:23', 1, '2024-03-25 07:53:47', 0, NULL, 1),
(17930, 'V.anandkumar', '6', '9944957653', '8861189258', 'kh5927668@gmail.com', '1991-02-27', 33, '2', '1', 'Suvarna', 'Working', 480000.00, 0, 25000.00, 30000.00, 'Hosur 3/153 /1a checkpost bagalur road hosur', 'Perungudi', '2403250074', '35', '2', 'upload_files/candidate_tracker/43081678539_Anandkumar CV-2.docx', NULL, '1', '2024-03-25', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Can give a try need to check with the team and confirm', '5', '2', '', '1', '1', '', '2', '2024-03-27', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 07:45:48', 112, '2024-03-25 06:54:46', 0, NULL, 1),
(17931, 'Prakash.B', '13', '6382111069', '', 'prakashkalai2384@gmail.com', '2000-04-23', 23, '3', '2', 'Balaraman', 'Labour', 200000.00, 1, 0.00, 18500.00, 'Chennai', 'Chennai', '2403250075', '', '1', 'upload_files/candidate_tracker/62559117100_CV_2023111819221363.pdf', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 07:45:50', 112, '2024-03-25 06:20:31', 0, NULL, 1),
(17932, 'Siva Kumar', '13', '9941730872', '', 'sivakumard0507@gmail.com', '2000-09-12', 23, '3', '2', 'Dhanasekaran', 'Driver', 12000.00, 1, 0.00, 18000.00, 'THIRUVANMIYUR, Chennai', 'Chennai', '2403250076', '', '1', 'upload_files/candidate_tracker/50841898024_new siva resume.pdf', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 07:45:58', 112, '2024-03-25 06:20:07', 0, NULL, 1),
(17933, 'ABDUL QAIYUM B', '14', '7339156003', '', 'abdulqaiyum1433@gmail.com', '2001-11-08', 22, '3', '2', 'Basheer ahamed', 'Business', 10000.00, 3, 0.00, 300000.00, 'Chidambaram', 'Chrompet', '2403250077', '', '1', 'upload_files/candidate_tracker/23265087524_ABDUL QAIYUM_Resume_.pdf', NULL, '1', '2024-03-25', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '2', '2', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 07:49:09', 112, '2024-03-25 06:36:15', 0, NULL, 1),
(17934, 'Narayanan', '13', '7603886686', '', 'itsnarayanan01@gmail.com', '2001-04-02', 22, '3', '2', 'Athi narayana perumal', 'Driver', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2403250078', '', '1', 'upload_files/candidate_tracker/67458879240_Narayanan CV2 .pdf (1).pdf.pdf', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 07:51:12', 112, '2024-03-25 06:19:42', 0, NULL, 1),
(17935, '', '0', '9176466619', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403250079', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-25 07:58:20', 0, NULL, 0, NULL, 1),
(17936, 'BASHIR AHAMED s', '31', '9952168315', '9944008315', 'bashirpltu8315@gmail.com', '2002-02-07', 22, '4', '2', 'SHAHUL AMEED j', 'Villupuram', 20000.00, 0, 0.00, 20000.00, '1b, Rajagopal st, Pondy road, Villupuram.', '1b, Rajagopal St, Pondy Road, Villupuram.', '2403250080', '', '1', 'upload_files/candidate_tracker/36004542374_Resume (2)-1 (1).pdf', NULL, '2', '2024-03-27', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 08:11:24', 112, '2024-03-27 03:51:17', 0, NULL, 1),
(17937, '', '0', '8754975480', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403250081', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-25 08:30:40', 0, NULL, 0, NULL, 1),
(17938, '', '0', '9500970811', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403250082', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-25 08:40:30', 0, NULL, 0, NULL, 1),
(17939, 'Harini. K', '5', '7358726256', '7305210089', 'inirah.reddy24@gmail.com', '2001-06-24', 22, '2', '2', 'Krishna reddy', 'Self Employee', 60000.00, 1, 26000.00, 30000.00, 'Chennai', 'Chennai', '2403250083', '35', '2', 'upload_files/candidate_tracker/18454080462_Harini resume 2024.pdf', NULL, '1', '2024-03-25', 15, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate performance and communication is good ,but she is expecting high salary package also she is very attitude', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 08:56:45', 112, '2024-03-25 06:45:50', 0, NULL, 1),
(17940, 'Sunilkumar J', '31', '9360345508', '', 'suniloffl333@gmail.com', '2003-06-10', 20, '3', '2', 'Janarthanan V', 'Farmer', 8000.00, 0, 0.00, 20000.00, 'Palayapalayam, Sholinghur taluk,ranipet-632505', 'Chennai', '2403250084', '', '1', 'upload_files/candidate_tracker/59765641624_Resume sunil.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 09:06:59', 112, '2024-05-11 03:51:53', 0, NULL, 1),
(17941, 'Navin Kumar', '13', '9884651135', '8939194651', 'Nk.mastercoder@gmail.com', '2001-08-05', 22, '3', '2', 'S. Marimuthu , M. Palani yammal', 'Farmer', 20000.00, 2, 0.00, 1.50, 'Chennai', 'Chennai', '2403250085', '', '1', 'upload_files/candidate_tracker/20246134415_NAVIN KUMAR.M (1).pdf', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 09:19:35', 112, '2024-03-25 06:45:35', 0, NULL, 1),
(17942, 'naveen', '23', '8903374315', '6383373791', 'naveennskofficial@gmail.com', '2001-03-14', 23, '3', '2', 'nandagopal', 'business', 30000.00, 1, 0.00, 250000.00, 'coimbatore', 'chennai', '2403250086', '', '1', 'upload_files/candidate_tracker/6520316869_Naveen CV.pdf', NULL, '1', '2024-03-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 09:25:04', 112, '2024-03-25 06:56:33', 0, NULL, 1),
(17943, 'kolanji b', '13', '7339406611', '9345678275', 'kolanjibalaguru@gmail.com', '2001-04-05', 22, '6', '2', 'balaguru k', 'farmer', 72000.00, 0, 0.00, 250000.00, 'cuddalore', 'chennai', '2403250087', '', '1', 'upload_files/candidate_tracker/56037406416_kolanji _cv.pdf', NULL, '2', '2024-03-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 09:37:57', 130, '2024-05-10 06:26:16', 0, NULL, 1),
(17944, '', '0', '9489320478', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403250088', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-25 09:43:40', 0, NULL, 0, NULL, 1),
(17945, 'Sri kumar S', '13', '8681860834', '', 'srikumarcr7@gmail.com', '2002-01-18', 22, '3', '2', 'Sivasubramanian p', 'Farmer', 8000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2403250089', '', '1', 'upload_files/candidate_tracker/96972284631_SRI KUMAR S (1).pdf', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 09:51:04', 112, '2024-03-25 06:29:45', 0, NULL, 1),
(17946, 'Praveen KN', '13', '9894500195', '', 'praveen143kn@gmail.com', '2001-12-18', 22, '3', '2', 'Kanagaraj', 'Business', 20000.00, 1, 0.00, 300000.00, 'Kanniyakumari', 'Chennai', '2403250090', '', '1', 'upload_files/candidate_tracker/52791131939_Praveen_Resume (1).pdf', NULL, '1', '2024-03-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 09:51:59', 112, '2024-03-25 06:30:26', 0, NULL, 1),
(17947, '', '0', '8680807354', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403250091', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-25 10:01:20', 0, NULL, 0, NULL, 1),
(17948, 'Bilson', '13', '8438061570', '', 'bilsonjildas27@gmail.com', '2000-07-07', 23, '4', '2', 'Jiprit Jildas', 'Fisherman', 12000.00, 2, 0.00, 18000.00, 'Rameshwaram', 'Chennai', '2403250092', '', '1', 'upload_files/candidate_tracker/52383740032_resume-3.pdf', NULL, '2', '2024-03-29', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 10:33:11', 112, '2024-03-29 03:51:54', 0, NULL, 1),
(17949, 'Prasanth.R.K', '13', '9840791959', '9123511697', 'prasanthrk2002@gmail.com', '2002-01-05', 22, '3', '2', 'R.kumar', 'Electrician', 12000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2403250093', '', '1', 'upload_files/candidate_tracker/36975417638_merged.pdf', NULL, '1', '2024-04-01', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 10:39:02', 112, '2024-04-01 03:45:53', 0, NULL, 1),
(17950, 'NaveenKumar G', '13', '9025252651', '', 'mersalnaveen511@gmail.com', '2002-03-29', 22, '3', '2', 'Gopal.K', 'Farmer', 15000.00, 1, 0.00, 220000.00, 'Chennai', 'Chennai', '2403250094', '', '1', 'upload_files/candidate_tracker/27037906678_Naveenkumar.G.pdf', NULL, '1', '2024-08-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-25 11:06:26', 1, '2024-08-24 06:30:49', 0, NULL, 1),
(17951, 'R.Sneha', '13', '7305714201', '', 'sneharubi2002@gmail.com', '2002-12-23', 21, '3', '2', 'K.Ravi Kumar', '18000', 15000.00, 2, 0.00, 18000.00, 'Pattabiram', 'Pattabiram', '2403250095', '', '1', 'upload_files/candidate_tracker/53140414693_Sneha.R (Resume).pdf', NULL, '3', '2024-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-25 11:21:04', 1, '2024-03-25 11:40:04', 0, NULL, 1),
(17952, 'Mano Senthilkumar', '6', '9087504181', '7339454734', 'mano20010404@gmail.com', '2001-04-04', 22, '2', '2', 'Senthilkumar', 'Teacher', 15000.00, 1, 25000.00, 32000.00, 'Perambalur', 'Chennai', '2403250096', '29', '2', 'upload_files/candidate_tracker/54630800946_Mano S Resume 2024_20240313_162321_0000.pdf', NULL, '1', '2024-03-26', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate over all 3yrs exp, Sal exp 25k to 28k. 50/50 ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 11:57:52', 112, '2024-03-26 06:09:39', 0, NULL, 1),
(17953, '', '0', '8012788996', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403250097', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-25 01:26:04', 0, NULL, 0, NULL, 1),
(17954, 'Gunasekaran', '31', '8111008535', '6384345302', 'guna33311@gmail.com', '2002-12-20', 21, '6', '2', 'Maruthupandiyan', 'TNEB', 15000.00, 2, 0.00, 10000.00, 'Sivagangai', 'Cehnnai', '2403250098', '', '1', 'upload_files/candidate_tracker/93587592444_InShot_20240106_114019156 (1)-1.pdf', NULL, '1', '2024-03-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-25 02:15:35', 1, '2024-03-25 02:19:48', 0, NULL, 1),
(17955, '', '0', '9500407445', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403250099', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-25 03:06:33', 0, NULL, 0, NULL, 1),
(17956, 'Karthik', '14', '9688456175', '', 'bscit9706@gmail.com', '1998-11-10', 25, '3', '2', 'Rubadevi', 'Cooliee', 5000.00, 1, 0.00, 10000.00, 'ERODE', 'ERODE', '2403250100', '', '1', 'upload_files/candidate_tracker/15678912900_Aappp.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 03:08:04', 112, '2024-03-26 05:32:22', 0, NULL, 1),
(17957, 'khush jain', '6', '9543397271', '', 'khushj214@gmail.com', '2002-06-27', 21, '2', '2', 'kushal jain - father', 'business', 40000.00, 1, 218000.00, 320000.00, 'Chennai', 'Chennai', '2403250101', '1', '2', 'upload_files/candidate_tracker/8137773601_Khush Jain resume.pdf', NULL, '1', '2024-03-26', 2, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is mother tongue hindi, He try to manage tamil,Language issues and he is not for sales job and field work.pls check with properly over the call.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-25 04:08:52', 112, '2024-03-26 06:16:56', 0, NULL, 1),
(17958, 'anto luvies j', '6', '9344807949', '9087516518', 'luviessmart08@gmail.com', '2002-05-10', 21, '2', '2', 'jackuline', 'housewife', 20000.00, 1, 25000.00, 30000.00, 'thiruvalluvar street thandhai periyar nagar', 'taramani chennai', '2403250102', '29', '2', 'upload_files/candidate_tracker/29615972938_Anto Luvies.pdf', NULL, '1', '2024-03-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-25 04:49:38', 112, '2024-03-26 05:58:06', 0, NULL, 1),
(17959, '', '0', '8939805500', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403250103', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '3', '2025-01-09', '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-25 07:07:34', 0, NULL, 0, NULL, 1),
(17960, '', '0', '8939392193', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403250104', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '', '2025-01-23', '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-25 08:23:07', 0, NULL, 0, NULL, 1),
(17961, '', '0', '9344033890', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 03:27:30', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17962, 'Dhayanand', '13', '9600614907', '', 'tdhayanandk@gmail.com', '2001-03-18', 23, '3', '2', 'Thangaraj c', 'Meason', 23000.00, 1, 0.00, 250000.00, 'Salem', 'Salem', '2403260002', '', '1', 'upload_files/candidate_tracker/99123658494_Dhayanand T -Resume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 03:49:08', 112, '2024-03-26 05:40:47', 0, NULL, 1),
(17963, 'Hari baskar', '4', '9159895278', '8220248599', 'haribasker840@gmail.com', '1999-09-10', 24, '2', '2', 'Sasi kala', 'Self employe', 10000.00, 1, 17000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2403260003', '1', '2', 'upload_files/candidate_tracker/38057583631_DOC-20230426-WA0001..docx', NULL, '1', '2024-03-26', 0, '', '3', '59', '2024-04-03', 152400.00, '', '5', '1970-01-01', '1', 'Selected for Sithy Team', '1', '1', '4', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-26 04:01:04', 60, '2024-04-03 10:59:33', 0, NULL, 1),
(17964, 'Hari krishnan', '4', '9677486639', '9940757200', 'harik8344@gmail.com', '2002-08-30', 21, '2', '2', 'Vasanthi', 'Self employed', 15000.00, 0, 0.00, 16000.00, 'Thanjavur', 'Thanjavur', '2403260004', '1', '2', 'upload_files/candidate_tracker/30717535837_12345.pdf', NULL, '1', '2024-03-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-26 04:15:26', 104, '2024-03-26 11:29:10', 0, NULL, 1),
(17965, '', '0', '8667867592', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 04:22:05', 0, NULL, 0, NULL, 1),
(17966, 'sriram s', '13', '8248982275', '', 'sriramsuresh117@gmail.com', '2000-12-11', 23, '3', '2', 'suresh', 'sanskrit pandidhar', 25000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2403260006', '', '1', 'upload_files/candidate_tracker/47442739597_Sriram.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 04:22:35', 112, '2024-03-26 05:37:44', 0, NULL, 1),
(17967, 'Satheesh P', '31', '8438815417', '', 'satheeshcse1602@gmail.com', '1999-06-16', 24, '3', '2', 'Palanisamy D', 'Cooli', 80000.00, 3, 29166.00, 30000.00, 'Namakkal', 'Namakkal', '2403260007', '', '2', 'upload_files/candidate_tracker/81431690468_Satheesh.pdf', NULL, '1', '2024-03-26', 5, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 04:23:10', 112, '2024-03-26 03:39:30', 0, NULL, 1),
(17968, 'PRAKASH M', '13', '6379320774', '7810048005', 'prakashm23032003@gmail.com', '2003-03-23', 21, '3', '2', 'MUNUSAMY C', 'Farmers', 500000.00, 5, 0.00, 30000.00, 'Chennai', 'Chennai', '2403260008', '', '1', 'upload_files/candidate_tracker/27521669851_Prakash M (1).pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 04:26:41', 112, '2024-03-26 05:38:01', 0, NULL, 1),
(17969, 'PL.vasanthi', '13', '9566555822', '', 'Vasanthi9822@gmail.com', '1998-09-18', 25, '3', '1', 'Anand veerappan', 'Territory sales manager', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2403260009', '', '1', 'upload_files/candidate_tracker/96936506186_Vasanthi Resume (1).pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 04:35:43', 112, '2024-03-26 05:39:27', 0, NULL, 1),
(17970, 'Parivadhani S', '13', '9344950647', '', 'pari.cse.2001@gmail.com', '2001-01-21', 23, '3', '2', 'Sadagopan v', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Cuddalore', 'Cuddalore', '2403260010', '', '1', 'upload_files/candidate_tracker/28745893928_parivadhani.pdf', NULL, '1', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 04:41:23', 112, '2024-03-26 03:43:01', 0, NULL, 1),
(17971, '', '0', '7092259799', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 04:42:19', 0, NULL, 0, NULL, 1),
(17972, 'SAKTHIVEL K', '27', '6369598213', '8122434900', 'sakthivelk1703@gmail.com', '2003-01-17', 21, '3', '2', 'KARUNAKARAN M', 'Farmer', 15000.00, 7, 0.00, 200000.00, 'ambur', 'ambur', '2403260012', '', '1', 'upload_files/candidate_tracker/91413248726_sakthivelk Resume_compressed.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 04:48:34', 112, '2024-03-26 05:40:16', 0, NULL, 1),
(17973, 'abishek pandian', '13', '7550090633', '9841177033', 'abishekpandian596@gmail.com', '2002-11-13', 21, '3', '2', 'venkatesaperumal', 'student', 500000.00, 1, 0.00, 500000.00, 'chennai', 'chennai', '2403260013', '', '1', 'upload_files/candidate_tracker/18029942135_Abishek updated resume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 04:49:04', 112, '2024-03-26 06:20:40', 0, NULL, 1),
(17974, '', '0', '8610127293', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 04:51:30', 0, NULL, 0, NULL, 1),
(17975, 'MOHAN K', '13', '9360829259', '7339469339', 'mohanece2002@gmail.com', '2002-06-17', 21, '3', '2', 'KRISHNAN P', 'Farmer', 20000.00, 1, 0.00, 18000.00, 'seelayampatti, theni.', 'Velachery, Chennai.', '2403260015', '', '1', 'upload_files/candidate_tracker/10525008438_MOHAN K.Resume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 04:52:41', 112, '2024-03-26 05:41:10', 0, NULL, 1),
(17976, 'jeeva rathinam p', '31', '9585116273', '9585748496', 'jeevaofficial3003@gmail.com', '2000-03-30', 23, '3', '2', 'pandian m', 'farmer', 10000.00, 1, 0.00, 18000.00, 'dindigul', 'velachery chennai', '2403260016', '', '1', 'upload_files/candidate_tracker/36188281114_Jeeva Rathinam.pdf', NULL, '1', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 04:53:24', 112, '2024-03-26 03:42:39', 0, NULL, 1),
(17977, 'Dhanesh Kumar', '6', '9025477907', '8870977059', 'dhaneshmooventhiran10@gmail.com', '2001-05-24', 22, '3', '2', 'Mooventhiran', 'Tea shop owner', 30000.00, 1, 0.00, 18000.00, 'Palani', 'Thousand light', '2403260017', '', '1', 'upload_files/candidate_tracker/78328459329_Dhanesh.pdf', NULL, '1', '2024-03-26', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher exp 18k. Sustainability issues ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 04:55:03', 112, '2024-03-26 07:22:45', 0, NULL, 1),
(17978, 'Akash N', '13', '9025458437', '', 'nkakashnethaji@gmail.com', '2002-06-21', 21, '3', '2', 'Nethaji', 'Chennai', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2403260018', '', '1', 'upload_files/candidate_tracker/63668118387_Akash-N_CV.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 04:55:19', 112, '2024-03-26 05:40:28', 0, NULL, 1),
(17979, 'Sriram R', '6', '9380624785', '', 'Sriram2raja@gmail.com', '2002-07-02', 21, '2', '2', 'Raja.A', 'Painter', 10000.00, 0, 0.00, 14000.00, 'Perambur chennai', 'Kannigapuram', '2403260019', '1', '1', 'upload_files/candidate_tracker/67447539189_RESUME SRIRAM NEW.docx', NULL, '1', '2024-03-26', 0, '', '3', '59', '2024-04-02', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team Fresher need to train from the Scratch', '5', '1', '1', '1', '8', '', '2', '2024-03-29', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-26 04:58:18', 60, '2024-04-02 10:22:46', 0, NULL, 1),
(17980, 'Sharathkumar s k', '13', '6379409604', '', 'Sharathkumarsk9642@gmail.com', '1996-11-08', 27, '3', '2', 'Subramaniam', 'Farmer', 10000.00, 1, 0.00, 2.50, 'Namakkal', 'Vadapalani', '2403260020', '', '1', 'upload_files/candidate_tracker/78776937320_Resume (2).pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:04:47', 130, '2024-04-09 03:32:14', 0, NULL, 1),
(17981, '', '0', '9360210985', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 05:09:11', 0, NULL, 0, NULL, 1),
(17982, 'Roheeth Ragavendar.U', '13', '9080768674', '', 'roheethragavendar21@gmail.com', '2000-12-21', 23, '3', '2', 'Udaya kumar', 'Advocate', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2403260022', '', '1', 'upload_files/candidate_tracker/11997869441_RoheethRagavendar.Uresume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:09:29', 112, '2024-03-26 05:47:03', 0, NULL, 1),
(17983, 'R.LOKESH ARAVIND', '2', '9791184279', '', 'lokesharavind2003@gmail.com', '2003-05-29', 20, '3', '2', 'Rajagopal', 'Business', 60000.00, 1, 0.00, 400000.00, 'CHENNAI', 'CHENNAI', '2403260023', '', '1', 'upload_files/candidate_tracker/36012895191_LokeshAravind.R(Resume_1)-4 (1).pdf', NULL, '1', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:09:32', 112, '2024-03-26 03:43:15', 0, NULL, 1),
(17984, '', '0', '6381167909', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 05:10:07', 0, NULL, 0, NULL, 1),
(17985, 'Elakkiyan', '13', '6374445934', '8903442777', 'elakkiyansanjeevi@gmail.com', '2000-11-27', 23, '3', '2', 'Sanjeevi.k', 'Bsnl', 30000.00, 1, 0.00, 3.00, 'Namakkal', 'Chennai', '2403260025', '', '1', 'upload_files/candidate_tracker/72209805635_Resume - Elakkiyan.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:10:18', 112, '2024-03-26 05:41:48', 0, NULL, 1),
(17986, 'Thanush V', '13', '7397187850', '', 'vthanush666@gmail.com', '2001-03-23', 23, '3', '2', 'Veerappan R', 'Lorry driver', 60000.00, 4, 0.00, 300000.00, 'Vellore', 'Vellore', '2403260026', '', '1', 'upload_files/candidate_tracker/4718839003_Thanush.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:16:01', 130, '2024-05-02 10:38:07', 0, NULL, 1),
(17987, 'kaviyadharshini', '13', '8300038498', '9047430351', 'kaviyadharshini637@gmail.com', '2002-10-28', 21, '3', '2', 'duraiyan', 'daily wages', 25000.00, 0, 0.00, 2.50, 'salem', 'chennai', '2403260027', '', '1', 'upload_files/candidate_tracker/25650759244_Kaviyadharshini.D.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:16:19', 112, '2024-03-26 05:44:03', 0, NULL, 1),
(17988, 'Thiyagarajan j', '13', '8122620116', '9952160116', 'thiyagumat@gmail.com', '2000-10-01', 23, '3', '2', 'Kalaiselvi j', 'House wife', 18000.00, 4, 0.00, 300000.00, 'Vellore', 'Chennai', '2403260028', '', '1', 'upload_files/candidate_tracker/18001803605_Thiyagarajan.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:16:23', 112, '2024-03-26 05:37:26', 0, NULL, 1),
(17989, 'sabitha v', '13', '8754975211', '', 'starabi890@gmail.com', '2001-07-13', 22, '6', '2', 'vijayakumar v', 'samll grocery shop', 15000.00, 1, 0.00, 200000.00, 'chandran steet guindy chennai', 'guindy chennai', '2403260029', '', '1', 'upload_files/candidate_tracker/317807624_SABITHA V_JOB.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:18:16', 112, '2024-03-26 05:44:31', 0, NULL, 1),
(17990, 'Prabhakar Robbi', '13', '7901003264', '', 'prabhaker024@gmail.com', '1998-08-30', 25, '3', '2', 'Satyanarayana', 'Weaving', 15000.00, 2, 0.00, 350000.00, 'PEDDAPURAM', 'PEDDAPURAM', '2403260030', '', '1', 'upload_files/candidate_tracker/54543861934_Prabhakar_Robbi_CV.docx', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:18:57', 130, '2024-05-02 11:42:41', 0, NULL, 1),
(17991, 'Monisha m', '13', '9042335737', '', 'monishahara331@gmail.com', '2009-03-26', 0, '3', '2', 'Moorthy', 'Farmer', 30000.00, 2, 0.00, 3.00, '3/275 murugar Kovil Street,arni,632315', 'Jothy nagar,Ekkatuthangal .', '2403260031', '', '1', 'upload_files/candidate_tracker/96544222303_resume.doc', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:19:53', 112, '2024-03-26 05:44:17', 0, NULL, 1),
(17992, 'Vedathaiya M', '31', '7904793553', '7094921201', 'vedathaiya420@gmail.com', '2002-03-18', 22, '3', '2', 'Muthaiya K', 'Agriculture', 20000.00, 3, 0.00, 22000.00, 'Pudukkottai', 'Chennai', '2403260032', '', '1', 'upload_files/candidate_tracker/87697890429_Vedathaiya M _20240324_231613_0000.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:21:07', 112, '2024-03-26 05:35:42', 0, NULL, 1),
(17993, 'E.thulasi Dharan', '13', '8778066159', '', 'dharanelumalai777@gmail.com', '2003-05-26', 20, '3', '2', 'Elumalai', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Thiruvannamalai', 'Medavakkam, Chennai', '2403260033', '', '1', 'upload_files/candidate_tracker/36233845986_Thulasi Dharan .E BCA_2023_Python & Sql.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:21:35', 112, '2024-03-26 05:34:10', 0, NULL, 1),
(17994, 'kishore j', '14', '6383242790', '9080085016', 'popkutti6383@gmail.com', '1997-12-09', 26, '3', '2', 'john', 'sercuity guar', 100000.00, 0, 0.00, 300000.00, 'chennai', 'chennai', '2403260034', '', '1', 'upload_files/candidate_tracker/49756948742_KISHORE J RESUME.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:22:52', 112, '2024-03-26 05:45:45', 0, NULL, 1),
(17995, 'TAMIZH ARASU K', '31', '9092537194', '', 'thmzharasu1999@gmail.com', '1999-05-01', 24, '3', '2', 'Kribhaharan', 'Stock management', 19000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2403260035', '', '1', 'upload_files/candidate_tracker/57305005491_TAMIZH.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:24:09', 130, '2024-04-12 05:41:05', 0, NULL, 1),
(17996, 'Bhuvaneshwar', '31', '9176707302', '', 'S.bhuvi832@gmail.com', '2002-03-08', 22, '3', '2', 'D Shankar', 'RTO private sector', 30000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2403260036', '', '1', 'upload_files/candidate_tracker/70364797810_Bhuvaneshwar(BE) -1.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:24:17', 112, '2024-03-26 05:38:15', 0, NULL, 1),
(17997, 'Mareeswara Sethupathy', '13', '6382505097', '9080703545', 'mareeswarasethupathy@gmail.com', '2000-09-22', 23, '3', '2', 'Thalamalai', 'Private company work', 15000.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Chennai', '2403260037', '', '1', 'upload_files/candidate_tracker/60968745341_MAREESWARA SETHUPATHY T Resume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:24:18', 112, '2024-03-26 05:43:01', 0, NULL, 1),
(17998, 'Adaikkalam', '31', '8098709945', '7604894395', 'adaikkalarajaa@gmail.com', '2001-12-04', 22, '3', '2', 'Angamuthu', 'Farmer', 12000.00, 2, 0.00, 20000.00, 'Pudukkottai', 'pudukkottai', '2403260038', '', '1', 'upload_files/candidate_tracker/3219258279_adaikkalam. .pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:25:41', 112, '2024-03-26 05:35:12', 0, NULL, 1),
(17999, 'Souvik kar', '31', '9840291733', '9789993226', 'souvikkar5035@gmail.com', '1999-07-14', 24, '3', '2', 'Nirmalyakar', 'Retried Manager(air india)', 200000.00, 1, 0.00, 250000.00, ',Door No 17,10th street ,Anakaputhur Chennai-70', 'Chennai', '2403260039', '', '1', 'upload_files/candidate_tracker/96914387890_Souvik-Resume-.pdf', NULL, '1', '2024-03-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:26:11', 112, '2024-03-26 06:20:54', 0, NULL, 1),
(18000, 'M.mohamed Fayaz', '4', '6369626916', '6381462654', 'fayazrizwan678@gmail.com', '2003-02-08', 21, '2', '2', 'Mohamed Fareedh', 'Driver', 30000.00, 2, 0.00, 18000.00, 'Thanjavur, Tamilnadu', 'Thanjavur, Tamilnadu', '2403260040', '1', '1', 'upload_files/candidate_tracker/75769798949_Resume_Fayaz_Format6 (1).pdf', NULL, '1', '2024-03-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-26 05:26:27', 108, '2024-03-26 03:34:22', 0, NULL, 1),
(18001, 'Gokul S', '13', '7810042164', '', 'gokul23m2001@gmail.com', '2001-03-23', 23, '3', '2', 'Saravanan', 'Daily wages', 72000.00, 1, 0.00, 450000.00, 'Kanchipuram', 'Kanchipuram', '2403260041', '', '1', 'upload_files/candidate_tracker/99470767548_Gokul.S Resume .pdf', NULL, '1', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:26:47', 112, '2024-03-26 03:39:15', 0, NULL, 1),
(18002, 'Raja S', '13', '7094170259', '', 'errajasukumar@gmail.com', '2002-05-24', 21, '3', '2', 'K Sugumar', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Madurai', 'Chennai', '2403260042', '', '1', 'upload_files/candidate_tracker/40643660600_Raja.S_2023.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:27:31', 112, '2024-03-26 05:42:44', 0, NULL, 1),
(18003, 'VIGNESH KUMAR S', '13', '9361598421', '', 's.vignesh16042002@gmail.com', '2002-04-16', 21, '3', '2', 'Parent', 'Farmer', 20000.00, 1, 0.00, 25000.00, 'Palani, Dindigul(Dt)', 'Chennai', '2403260043', '', '1', 'upload_files/candidate_tracker/91941229623_VIGNESH-KUMAR-S..RESUME.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:27:36', 112, '2024-03-26 05:44:47', 0, NULL, 1),
(18004, 'SOMASKANDHAN S', '13', '8098739172', '9942189172', 'somaskandhan22@gmail.com', '2001-12-22', 22, '3', '2', 'M. Sevarkodiyon', 'Business Man', 100000.00, 1, 0.00, 3.00, 'Saidapet', 'Saidapet', '2403260044', '', '1', 'upload_files/candidate_tracker/95323840169_SOMASKANDHAN.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:27:59', 112, '2024-03-26 05:38:45', 0, NULL, 1),
(18005, 'GOKUL', '13', '9940886407', '', 'gokulganesan731@gmail.com', '2002-10-17', 21, '3', '2', 'M.P. Gamesan', 'Police', 80000.00, 1, 0.00, 3.00, 'Coimbatore', 'Coimbatore', '2403260045', '', '1', 'upload_files/candidate_tracker/62738588449_gokul resume final.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:28:13', 130, '2024-04-09 03:34:53', 0, NULL, 1),
(18006, 'Suriya Narayanan G', '13', '7708837954', '', 'gsuriya034@gmail.com', '2002-02-05', 22, '3', '2', 'Ganeshan N', 'Barber', 18.00, 1, 0.00, 20.00, 'Bharathi nagar adivaram palani', 'Chennai', '2403260046', '', '1', 'upload_files/candidate_tracker/27671353062_suriya resume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:28:13', 112, '2024-03-26 05:43:27', 0, NULL, 1),
(18007, 'Madhavan E', '13', '8870206829', '8667222077', 'madhavanmadhavan38799@gmail.com', '2002-06-07', 21, '3', '2', 'Elumalai P', 'Farming', 100000.00, 0, 0.00, 3.50, '193, chetpet road, kunthalampattu, Villupuram', 'Srinivasa Iyengar street, west mambalam, chennai', '2403260047', '', '1', 'upload_files/candidate_tracker/8584539450_Madhavan resume.pdf', NULL, '1', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:28:26', 112, '2024-03-26 03:39:02', 0, NULL, 1),
(18008, 'Mohanraj R', '13', '9597594901', '', 'mohan2002raj3@gmail.com', '2002-04-23', 21, '3', '2', 'Ramachandran R', 'Farmer', 30000.00, 1, 0.00, 300000.00, 'Dindigul', 'Dindigul', '2403260048', '', '1', 'upload_files/candidate_tracker/27207916045_Mohanraj-R-Resume(2).pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:28:51', 130, '2024-04-09 03:40:39', 0, NULL, 1),
(18009, 'Siva Kumar V', '23', '8939864512', '', 'sivakumarvadivelu24@gmail.com', '2001-12-24', 22, '3', '2', 'Vadivelu N', 'Driver', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2403260049', '', '1', 'upload_files/candidate_tracker/92492663439_Sivakumar resume .pdf', NULL, '1', '2024-03-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:29:01', 112, '2024-03-26 05:24:02', 0, NULL, 1),
(18010, 'Yuvavignesh M', '13', '9688011445', '', 'yuvavignesh2711@gmail.com', '2000-11-27', 23, '3', '2', 'Murugan N M', 'Farmer', 30000.00, 0, 0.00, 300000.00, 'Erode', 'Chennai', '2403260050', '', '1', 'upload_files/candidate_tracker/10774254512_Yuvavignesh M.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:29:06', 112, '2024-03-26 05:38:59', 0, NULL, 1),
(18011, 'Sairam P', '2', '8778661395', '9790807855', 'psairam299@gmail.com', '2001-11-08', 22, '3', '2', 'Vanaja p', 'House wife', 20000.00, 1, 0.00, 25000.00, 'singaperumal koil', 'singaperumal koil', '2403260051', '', '1', 'upload_files/candidate_tracker/91642258386_Sairam.P_B.tech-IT_2023_MERN Stack.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:29:48', 112, '2024-03-26 06:24:57', 0, NULL, 1),
(18012, 'Suresh M', '2', '6379341607', '7845841607', 'm.suresh4405@gmail.com', '2002-05-10', 21, '3', '2', 'Manivannan T', 'Business', 20000.00, 1, 0.00, 25000.00, 'Chengalpattu', 'Chengalpattu', '2403260052', '', '1', 'upload_files/candidate_tracker/8920312361_Suresh.M_B.Tech-IT_2023_MERN-stack Developement.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:29:53', 112, '2024-03-26 06:25:04', 0, NULL, 1),
(18013, 'Guruaakash R', '31', '9361422517', '9600053390', 'guruaakash3333@gmail.com', '2002-01-13', 22, '3', '2', 'Bakkiyalakshmi R', 'Provisional store', 20000.00, 2, 0.00, 350000.00, 'Chennai', 'Chennai', '2403260053', '', '2', 'upload_files/candidate_tracker/67335797904_Guruaakash Resume Developer (1).pdf', NULL, '1', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:31:39', 112, '2024-03-26 03:39:44', 0, NULL, 1),
(18014, 'B.M.Rajkumar', '23', '7398274024', '9176341982', 'rajardk1505@gmail.com', '1999-04-17', 24, '3', '1', 'B.S.Munusamy', 'Salesman textile', 15000.00, 1, 0.00, 22000.00, 'chennai', 'chennai', '2403260054', '', '1', 'upload_files/candidate_tracker/46636197287_Blue Professional CV Resume _20240326_081923_0000.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:32:27', 112, '2024-03-26 05:31:11', 0, NULL, 1),
(18015, '', '0', '7305566215', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260055', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 05:32:45', 0, NULL, 0, NULL, 1),
(18016, 'Deepan', '2', '6383058792', '7010486616', 'Deepansenthilk2000@gmail.com', '2000-09-04', 23, '3', '2', 'Senthilkumar', 'Fresher', 30000.00, 2, 0.00, 30000.00, '59,Ramya Nagar,Nagai Road, Thanjavur', '59,Ramya Nagar,Nagai Road,Thanjavur', '2403260056', '', '1', 'upload_files/candidate_tracker/49691256206_Deepan (1).pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '4', '5', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:34:31', 130, '2024-05-02 11:48:39', 0, NULL, 1),
(18017, 'Swathi', '13', '9361639564', '', 'Swathigidiyan11@gmail.com', '2001-11-22', 22, '3', '1', 'Geeta,gidiyan', 'Auto driver', 5000.00, 1, 0.00, 18000.00, '240,dobi street,masigam village,pernambut', 'Oomarabad, vepamaram street ,near postoffice', '2403260057', '', '1', 'upload_files/candidate_tracker/60718575797_Swathi Resume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:34:42', 112, '2024-03-26 05:43:46', 0, NULL, 1),
(18018, 'naveen', '14', '8610943836', '9566877488', 'naveendurairaj98@gmail.com', '1998-05-05', 25, '3', '2', 'durairaj', 'agriculture', 10000.00, 2, 0.00, 10000.00, 'trichy', 'chennai', '2403260058', '', '1', 'upload_files/candidate_tracker/47550608015_Naveen Fresher Resume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:35:46', 112, '2024-03-26 05:36:12', 0, NULL, 1),
(18019, 'Vignesh', '2', '9159389188', '7448406704', 'Vigneshg431@gmail.com', '2002-02-14', 22, '3', '2', 'Chithra', 'Former', 10000.00, 1, 0.00, 100000.00, 'Thirukovilur, kallakurichi-605803', 'Chennai', '2403260059', '', '1', 'upload_files/candidate_tracker/32056525242_VIGNESH G Resume..pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:36:24', 112, '2024-03-26 05:45:06', 0, NULL, 1),
(18020, 'Vigneshwaran', '4', '7868943955', '8110052820', 'vigneshwaran3955@gmail.com', '1997-07-15', 26, '2', '1', 'Ranjitha', 'Home maker', 15000.00, 0, 17000.00, 15000.00, 'keelakolathur,  pin-621715', 'Ariyalur', '2403260060', '1', '2', 'upload_files/candidate_tracker/54539045283_vicky.pdf', NULL, '1', '2024-03-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-26 05:38:12', 108, '2024-03-26 03:43:40', 0, NULL, 1),
(18021, 'shenbagaraj s', '13', '7904600490', '', 'sshenbaggaraj@gmail.com', '2001-12-20', 22, '3', '2', 'sudilimuthu', 'salesman', 250000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2403260061', '', '1', 'upload_files/candidate_tracker/43049644265_Shenbagaraj.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:39:46', 130, '2024-04-12 05:38:57', 0, NULL, 1),
(18022, 'U.Hariharan', '13', '9384162366', '9677922366', 'hariharan15252323@gmail.com', '2003-02-07', 21, '3', '2', 'M.danalakshmi', 'Housewife', 15000.00, 1, 0.00, 15000.00, 'Arasalaru valinadapu,kumbakonam', 'Perungalathore ,chennai', '2403260062', '', '1', 'upload_files/candidate_tracker/62583570203_hariharan-1.docx', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:44:19', 112, '2024-03-26 05:34:33', 0, NULL, 1),
(18023, 'R.sindhuja', '2', '6374861580', '7010845285', 'sindhuja201@gmail.com', '2001-07-12', 22, '3', '2', 'K ramadoss', 'Business', 20000.00, 2, 0.00, 15000.00, 'Ariyalur', 'Chennai', '2403260063', '', '1', 'upload_files/candidate_tracker/77298116608_Minimalist CV Resume_20240315_222351_0000.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:44:37', 112, '2024-03-26 05:36:32', 0, NULL, 1),
(18024, 'Balamurugan A', '31', '7339575779', '', 'athibala046@gmail.com', '2000-05-08', 23, '3', '2', 'Anbalagan', 'Farmer', 20000.00, 1, 0.00, 300000.00, 'Thanjavur', 'Chennai', '2403260064', '', '1', 'upload_files/candidate_tracker/93940174146_CV_Developer (1) (1).pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:46:13', 112, '2024-03-26 05:39:14', 0, NULL, 1),
(18025, 'S. Deepak raja', '13', '9994950353', '', 'deepakrajan894@gmail.com', '2001-01-01', 23, '3', '2', 'D. Sabari rajan', 'Loan officer', 23000.00, 1, 0.00, 28000.00, 'Chennai', 'Chennai', '2403260065', '', '1', 'upload_files/candidate_tracker/1775509344_My canva resume. Pdf.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:46:23', 112, '2024-03-26 05:39:47', 0, NULL, 1),
(18026, 'Gayathri G', '31', '8610777182', '', 'ggayarhriemggayathriem@gmail.comg', '2003-01-16', 21, '3', '2', 'Gopi B', 'Farmer', 5000.00, 1, 0.00, 2.00, 'cheyyathuvannam Ranipet district', 'Velachery Chennai', '2403260066', '', '1', 'upload_files/candidate_tracker/2815166560_G GAYATHRI Bsc Mathematics- 2023(passout) Java Full stack Developer.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:47:34', 112, '2024-03-26 05:37:01', 0, NULL, 1),
(18027, 'Murali', '31', '8838679821', '8300728517', 'murali1309official@gmail.com', '2000-09-13', 23, '3', '2', 'Ravi', 'Farmer', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2403260067', '', '1', 'upload_files/candidate_tracker/63256530524_Murali cv.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:47:45', 112, '2024-03-26 05:38:29', 0, NULL, 1),
(18028, 'R saran', '13', '9566062663', '', 'saransam3030@gmail.com', '2001-01-30', 23, '3', '2', 'S Ramesh babu', 'Private company', 20000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2403260068', '', '1', 'upload_files/candidate_tracker/9876005583_saran_20240307_091053_0000.pdf', NULL, '1', '2024-03-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '6', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:54:08', 112, '2024-03-26 06:21:15', 0, NULL, 1),
(18029, 'Karthick D', '2', '7548852766', '6369404770', 'dkarthick201099@gmail.com', '1999-10-20', 24, '3', '2', 'Dhanaraj k', 'Chennai', 250000.00, 1, 0.00, 3.50, 'Vellore', 'Chennai', '2403260069', '', '1', 'upload_files/candidate_tracker/15278882997_karthick rwesume full.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:54:27', 112, '2024-03-26 04:32:18', 0, NULL, 1),
(18030, 'Vignesh Ramalingam', '2', '7358567362', '', 'Vignesh2vicky007@gmail.com', '2002-11-21', 21, '3', '2', 'Ramalingam', 'Labour', 9000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2403260070', '', '1', 'upload_files/candidate_tracker/31775274663_VIGNESH RAMALINGAM.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '2024-04-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:55:08', 130, '2024-05-02 10:53:48', 0, NULL, 1),
(18031, 'mukesh v', '13', '9384550771', '', 'mukeshv2919@gmail.com', '2001-05-29', 22, '3', '2', 'veeramani', 'shop keeper', 30000.00, 1, 0.00, 200000.00, 'thottiyam tiruchi', 'anna nagar chennai', '2403260071', '', '1', 'upload_files/candidate_tracker/45996341507_MUKESH-CV.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:55:27', 112, '2024-03-26 04:30:30', 0, NULL, 1),
(18032, 'naveenkumar v', '13', '9360565982', '', 'naveenv10102002@gmail.com', '2002-10-10', 21, '3', '2', 'vengatesan b', 'unskilled laborer', 15000.00, 2, 0.00, 30000.00, 'tirupattur', 'anna nagar chennai', '2403260072', '', '1', 'upload_files/candidate_tracker/14851122786_Naveen(CV).pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:55:45', 112, '2024-03-26 05:32:37', 0, NULL, 1),
(18033, 'Kishankumar K', '13', '8870909523', '', 'kishanks5678@gmail.com', '2003-01-16', 21, '3', '2', 'Kumaresan K', 'Farmer', 75000.00, 1, 0.00, 350000.00, 'Chengalpattu', 'Chengalpattu', '2403260073', '', '1', 'upload_files/candidate_tracker/40096566797_Kishankumar K.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:57:11', 130, '2024-04-09 03:31:31', 0, NULL, 1),
(18034, 'Lingeshwaran.S', '2', '8939544572', '9444182849', 'lingeshwaransenthilkumar0279@gmail.com', '2002-12-16', 21, '3', '2', 'Shanthi.S and Senthilkumar', 'Student', 60000.00, 2, 0.00, 350000.00, 'Prince greenwoods,vanagaram road,Ambattur,chennai.', 'Prince Greenwoods,Vanagaram Road,Ambattur,Chennai', '2403260074', '', '1', 'upload_files/candidate_tracker/22479950790_resume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:57:57', 130, '2024-04-12 05:37:30', 0, NULL, 1),
(18035, 'Vishal', '13', '9843572440', '', 'vishalselvam003@gmail.com', '2003-08-03', 20, '3', '2', 'Selvam Velanganni', 'Work in hotel', 25000.00, 1, 0.00, 13000.00, 'Pudukkottai', 'Mailapur', '2403260075', '', '1', 'upload_files/candidate_tracker/90968439408_Vishal--resume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:58:03', 112, '2024-03-26 05:37:14', 0, NULL, 1),
(18036, 'Mithun Bharathi K R', '13', '9698538658', '', 'K.r.mithunbharathi@gmail.com', '2002-12-24', 21, '3', '2', 'Rajan S', 'Farmer', 20000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2403260076', '', '1', 'upload_files/candidate_tracker/20869527824_Resume_1.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '3', '4', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:58:43', 112, '2024-03-26 05:35:27', 0, NULL, 1),
(18037, 'Gowtham L', '13', '6379727079', '', 'gowthamlakshmanadoss@gmail.com', '2001-04-30', 22, '3', '2', 'Lakshmanadoss', 'Govt school lab assistant', 25000.00, 1, 0.00, 200000.00, 'Mel Street, Pudupalaiyam, thiruvannaamalai', 'New perungalathur, chennai', '2403260077', '', '1', 'upload_files/candidate_tracker/7860930216_Gowtham Resume.pdf', NULL, '1', '2024-03-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 05:59:00', 112, '2024-03-26 05:29:57', 0, NULL, 1),
(18038, 'Archana B', '13', '8428273689', '6383965792', 'archanabala006@gmail.com', '1999-11-28', 24, '3', '2', 'Balamurugan S', 'Farmer', 1.50, 0, 0.00, 2.50, 'Theni', 'Chennai', '2403260078', '', '1', 'upload_files/candidate_tracker/66237094205_Archana - Resume.pdf', NULL, '1', '2024-03-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-26 05:59:47', 1, '2024-03-26 06:09:27', 0, NULL, 1),
(18039, 'Anishkumar', '31', '9344168512', '8667288620', 'anishkumarkbca@gmail.com', '2002-06-01', 21, '3', '2', 'Raja', 'Driver', 5000.00, 1, 0.00, 14000.00, 'Tiruvannamalai', 'Chennai, saidapet', '2403260079', '', '1', 'upload_files/candidate_tracker/15950908125_Resume.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:01:20', 112, '2024-05-11 03:45:02', 0, NULL, 1),
(18040, 'Hameed Raja A', '23', '9994892995', '', 'imhameed12@gmail.com', '2001-01-12', 23, '3', '2', 'Abbas', 'Tailor', 25000.00, 2, 15000.00, 30000.00, 'Chennai', 'Chennai', '2403260080', '', '2', 'upload_files/candidate_tracker/26984868819_Hameed', NULL, '1', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:01:53', 112, '2024-03-26 04:02:31', 0, NULL, 1),
(18041, 'Arunkumar P', '13', '7010117792', '', 'Arunkumar2003arun@gmail.com', '2003-04-06', 20, '6', '2', 'Poovarasu', 'Accountant', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2403260081', '', '1', 'upload_files/candidate_tracker/49009511614_Arun.Resume.Pdf.pdf.PDF', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:02:00', 112, '2024-03-26 05:31:47', 0, NULL, 1),
(18042, 'Akash', '31', '8667288620', '9344168512', 'Akashanbuas147@gmail.com', '2002-05-28', 21, '3', '2', 'Anbalagan', 'Formar', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2403260082', '', '1', 'upload_files/candidate_tracker/679388342_AKASH RESUME.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:02:01', 130, '2024-05-16 04:21:23', 0, NULL, 1),
(18043, 'Austin jose D', '13', '7550273557', '', 'austinjosedavid@gmail.com', '2002-10-24', 21, '3', '2', 'David Charles', 'Daily Wages', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2403260083', '', '1', 'upload_files/candidate_tracker/35418711746_AUSTIN JOSE-FULL STACK DEVELOPER.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:02:09', 112, '2024-03-26 05:35:54', 0, NULL, 1),
(18044, 'Maharajan', '2', '8056298509', '8056146334', 'vijaymaharajan38@panimalar.com', '2001-03-09', 23, '3', '2', 'Sundar', 'Provision store', 180000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2403260084', '', '1', 'upload_files/candidate_tracker/1371329956_MAHARAJAN_RESUME-3.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:02:23', 112, '2024-03-26 05:32:04', 0, NULL, 1),
(18045, 'Mansoor', '14', '8754065525', '', 'Alimansoor.3710@gmail.com', '1999-02-03', 25, '3', '2', 'Abdul shukkur', 'Labour', 20000.00, 1, 0.00, 25000.00, 'Villupuram', 'Chennai', '2403260085', '', '1', 'upload_files/candidate_tracker/69087512048_MANSOOR.A.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:02:47', 112, '2024-03-26 05:32:51', 0, NULL, 1),
(18046, 'Ajith P', '14', '9524694743', '6381266721', 'ajithpapk@gmail.com', '1998-05-23', 25, '3', '2', 'Pichandi c', 'Labour', 20000.00, 2, 0.00, 25000.00, 'Gudiyattam', 'Chennai', '2403260086', '', '1', 'upload_files/candidate_tracker/65429638439_Ajith.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:02:58', 112, '2024-03-26 05:34:52', 0, NULL, 1),
(18047, 'Maadesh R', '13', '8667057102', '8489866881', 'ivanmaadesh004@gmail.com', '2003-09-04', 20, '3', '2', '-', '-', 100000.00, 1, 0.00, 3.00, 'Mudichur', 'Mudichur', '2403260087', '', '1', 'upload_files/candidate_tracker/37039343670_Maadesh(Front end).pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:03:03', 130, '2024-04-12 05:38:01', 0, NULL, 1),
(18048, 'Mugil', '14', '8778280732', '7867035518', 'mugilrock6@gmail.com', '2000-05-15', 23, '3', '2', 'Ramadass', 'Former', 20000.00, 2, 0.00, 25000.00, 'Villupuram', 'Chennai', '2403260088', '', '1', 'upload_files/candidate_tracker/67228449196_Document from MUGIL (1).pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:03:05', 112, '2024-03-26 04:32:29', 0, NULL, 1),
(18049, 'HARISABESH MA', '13', '9384636718', '9444297718', 'Sabeshmarthandan46@gmail.com', '2003-01-09', 21, '3', '2', 'MARTHANDAN R', 'Govt employee', 150000.00, 1, 0.00, 450000.00, 'Chennai', 'Chennai', '2403260089', '', '1', 'upload_files/candidate_tracker/60181644898_CV_2024011513311628.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:08:01', 112, '2024-03-26 05:33:24', 0, NULL, 1),
(18050, 'Gayathri Ramu', '13', '6382762741', '', 'gayathri6909@gmail', '2001-07-09', 22, '3', '2', 'Ramu', 'Welder', 8000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2403260090', '', '1', 'upload_files/candidate_tracker/36598740047_GayathriResume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:08:20', 112, '2024-03-26 05:33:06', 0, NULL, 1),
(18051, 'Sree Dharshni Ilango', '13', '9514795141', '', 'Sreedharshnii19@gmail.com', '2001-01-19', 23, '3', '2', 'Ilango', 'Business', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2403260091', '', '1', 'upload_files/candidate_tracker/72083412380_Dharsh resume fe.pdf', NULL, '1', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:09:02', 112, '2024-03-26 04:09:16', 0, NULL, 1),
(18052, 'Priyadharshini R', '13', '9042900779', '9080479430', 'priyadharshinir2628@gmail.com', '2003-04-28', 20, '3', '2', 'Ragu', 'Farmer', 15000.00, 2, 0.00, 20000.00, 'Chennai', 'Velachery', '2403260092', '', '1', 'upload_files/candidate_tracker/32487201814_priyadharshni B.Sc.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:09:50', 112, '2024-03-26 04:32:01', 0, NULL, 1),
(18053, 'Sumithra', '13', '8680877449', '', 'rsumithrabtechit@gmail.com', '1994-11-21', 29, '3', '1', 'Rajesh', 'Driver', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Velachery chennai', '2403260093', '', '1', 'upload_files/candidate_tracker/81630502612_SUMITHRA B.TECH(IT)2015.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:10:04', 112, '2024-03-26 04:30:46', 0, NULL, 1),
(18054, 'Shenbagavalli K', '13', '6383792332', '', 'vallikannan9898@gmail.com', '1998-08-09', 25, '3', '2', 'Kannan', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Velachery', '2403260094', '', '1', 'upload_files/candidate_tracker/11695883804_Shenbagavallikr Msc-1.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:10:09', 112, '2024-03-26 04:31:47', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18055, 'Preethi Anbu', '13', '9551212726', '', 'preethianbu2001@gmail.com', '2001-02-10', 23, '3', '2', 'anbu', 'business', 100000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2403260095', '', '1', 'upload_files/candidate_tracker/9895334032_Preethi resume.pdf', NULL, '1', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:12:14', 112, '2024-03-26 04:09:32', 0, NULL, 1),
(18056, 'K PraveenKumar', '13', '8056827482', '', 'kumarp71149@gmail.com', '2000-06-28', 23, '3', '2', 'Kumaresan M', 'Labour', 20000.00, 2, 10000.00, 25000.00, 'Tiruvannamalai', 'Chennai', '2403260096', '', '2', 'upload_files/candidate_tracker/99671852896_PraveenK.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:13:24', 112, '2024-03-26 06:21:35', 0, NULL, 1),
(18057, 'choduboyinamahendra', '13', '9676884725', '', 'mahendramahendra@gmail.com', '2002-07-13', 21, '3', '2', 'babu', 'farmer', 15000.00, 1, 0.00, 15000.00, 'thirupathi', 'chennai', '2403260097', '', '1', 'upload_files/candidate_tracker/45938016429_Mahendra.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:13:43', 112, '2024-03-26 06:21:43', 0, NULL, 1),
(18058, 'rajkumar', '23', '7397274024', '9176341982', 'rajardk1505@gmail.com', '1999-04-17', 24, '3', '1', 'B.S.Munusamy', 'Salesman textile', 15000.00, 1, 0.00, 22000.00, 'chennai', 'chennai', '2403260098', '', '1', 'upload_files/candidate_tracker/15483964465_Rajkumar.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:13:53', 112, '2024-03-26 06:21:52', 0, NULL, 1),
(18059, 'SIVASAKTHI K', '13', '7708808191', '', 'sakthi.kootharasu@gmail.com', '2003-04-02', 20, '3', '2', 'KOOTHARAJU B', 'Driver', 25000.00, 2, 0.00, 15000.00, 'Ramanathapuram', 'Velachery, Chennai', '2403260099', '', '1', 'upload_files/candidate_tracker/41723513968_K.SIVASAKTHI RESUME pdf.pdf', NULL, '1', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:14:11', 112, '2024-03-26 03:43:44', 0, NULL, 1),
(18060, 'Mohanraj A', '13', '9384381509', '', 'a.k.mohanraj2001@gmail.com', '2001-09-15', 22, '3', '2', 'Alagappan N', 'Farmer', 30000.00, 1, 0.00, 400000.00, 'Salem', 'Chennai', '2403260100', '', '1', 'upload_files/candidate_tracker/16115608934_RESUME.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:15:38', 112, '2024-03-26 04:31:24', 0, NULL, 1),
(18061, 'VINEETH S', '13', '6382897574', '', 'svineeth463@gmail.com', '2001-03-30', 22, '3', '2', 'Sivakumar C', 'Ex-Servicemen', 25000.00, 2, 0.00, 300000.00, 'VELLORE', 'CHENNAI', '2403260101', '', '1', 'upload_files/candidate_tracker/6447708235_VINEETH RESUME(JAVA).pdf', NULL, '1', '2024-03-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:16:06', 130, '2024-05-02 10:34:58', 0, NULL, 1),
(18062, '', '0', '8754853488', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260102', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 06:16:56', 0, NULL, 0, NULL, 1),
(18063, '', '0', '9360100899', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260103', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 06:17:18', 0, NULL, 0, NULL, 1),
(18064, '', '0', '6380282864', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260104', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 06:28:51', 0, NULL, 0, NULL, 1),
(18065, 'PRATHAP', '13', '9626721568', '9551352368', 'prathapka9551@gmail.com', '2000-11-13', 23, '3', '2', 'KASINATHAN', 'FARMER', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2403260105', '', '1', 'upload_files/candidate_tracker/42451190961_Prathap Resume org.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:31:27', 112, '2024-03-26 06:22:00', 0, NULL, 1),
(18066, 'Karthickeyan. m', '13', '9486186693', '', 'karthi.manik22@gmail.com', '2002-08-21', 21, '3', '2', 'P. Manickam', 'Ex Army', 25000.00, 1, 0.00, 17000.00, 'Salem, tamil nadu', 'Chennai, Tamil Nadu', '2403260106', '', '1', 'upload_files/candidate_tracker/39880886757_KARTHICK RESUME FINAL (1).pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:31:34', 112, '2024-03-26 06:22:07', 0, NULL, 1),
(18067, 'Prakash S', '13', '8220709576', '', 'prakashpk18ur@gmail.com', '2001-07-09', 22, '3', '2', 'Sekar D', 'Corpenter', 20000.00, 2, 0.00, 300000.00, 'Madurai', 'Chennai', '2403260107', '', '1', 'upload_files/candidate_tracker/46820820567_prakash .pdf', NULL, '2', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:32:02', 112, '2024-03-26 06:22:13', 0, NULL, 1),
(18068, 'Kaviyarasan A', '13', '8428996819', '', 'kaviksm0@gamil.com', '2000-10-19', 23, '3', '2', 'Arul', 'Domino\'s employer', 10000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2403260108', '', '1', 'upload_files/candidate_tracker/66326730944_python Resume (1).pdf', NULL, '1', '2024-03-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-26 06:33:00', 1, '2024-03-26 06:44:41', 0, NULL, 1),
(18069, 'Manikandan', '13', '8667604559', '', 'manikandanmkd06@gmail.com', '2000-06-25', 23, '3', '2', 'Sivakumar', 'Driver', 25000.00, 1, 0.00, 300000.00, '45, Westmada street Thirumazhisai Chennai', '45, Westmada Street Thirumazhisai Chennai', '2403260109', '', '1', 'upload_files/candidate_tracker/4570513274_Manikandan_CV.pdf', NULL, '2', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:33:16', 112, '2024-03-26 06:25:30', 0, NULL, 1),
(18070, 'Sri saikumar R', '13', '6369598729', '', 'saimeena6656@gmail.com', '2003-02-06', 21, '3', '2', 'Rangaswami', 'Police', 200000.00, 2, 0.00, 18000.00, 'Vellore', 'Chennai', '2403260110', '', '1', 'upload_files/candidate_tracker/7892140179_Sri saikumar_BCA_Java fullstack.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:36:09', 130, '2024-04-12 05:39:29', 0, NULL, 1),
(18071, 'Keerthana Renu', '13', '9626667448', '9344892631', 'rtk0710@gmail.com', '1999-11-11', 24, '3', '1', 'Renu M', 'Farmer', 80000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2403260111', '', '1', 'upload_files/candidate_tracker/18064335053_CV_2024032609320460.pdf', NULL, '1', '2024-03-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-26 06:37:53', 1, '2024-03-26 06:52:24', 0, NULL, 1),
(18072, 'Parithi R', '13', '6381848427', '', 'parithirenu@gmail.com', '2002-12-26', 21, '3', '2', 'Renu M', 'Farmer', 80000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2403260112', '', '1', 'upload_files/candidate_tracker/47899388254_CV_2024022614084780.pdf', NULL, '1', '2024-03-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-26 06:39:04', 1, '2024-03-26 06:53:11', 0, NULL, 1),
(18073, 'Divakar.S', '13', '8072215348', '', 'divakar.sivakumar1705@gmail.com', '2001-05-17', 22, '3', '2', 'Sivakumar.K', 'Farmer', 10000.00, 2, 0.00, 20000.00, 'Bangalore', 'Chennai', '2403260113', '', '1', 'upload_files/candidate_tracker/81181497685_Divakar_Resume.pdf', NULL, '1', '2024-03-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-26 06:39:36', 1, '2024-03-26 06:50:40', 0, NULL, 1),
(18074, '', '0', '8056146334', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260114', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 06:41:09', 0, NULL, 0, NULL, 1),
(18075, 'Onteru Hari Krishna', '13', '9491168209', '', '30hari1@gmail.com', '1995-07-04', 28, '3', '2', 'Venkataramanaiah', 'Agriculture', 15000.00, 3, 0.00, 25000.00, 'Nellore', 'Nellore', '2403260115', '', '1', 'upload_files/candidate_tracker/41948543725_HARI RESUME (1).docx', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:44:14', 112, '2024-03-26 06:25:39', 0, NULL, 1),
(18076, 'david j', '6', '9841262737', '', 'jdaviddavid2002@gmail.com', '2002-10-03', 21, '2', '2', 'joseph', 'room service and waiter', 15000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2403260116', '36', '1', 'upload_files/candidate_tracker/47794186745_David.pdf', NULL, '1', '2024-03-26', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:47:31', 112, '2024-03-26 05:59:41', 0, NULL, 1),
(18077, '', '0', '8489584454', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260117', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 06:52:53', 0, NULL, 0, NULL, 1),
(18078, '', '0', '7871563061', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260118', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 06:53:17', 0, NULL, 0, NULL, 1),
(18079, 'Deepakkumar S', '31', '9025148792', '9487743164', 'sdeepakkumar9025148792@gmail.com', '2009-03-26', 0, '6', '2', 'Sankaran', 'Crpf', 60000.00, 1, 0.00, 20000.00, 'TIRUVANNAMALAI', 'Chennai', '2403260119', '', '1', 'upload_files/candidate_tracker/31953921771_DeepakKumar S.pdf', NULL, '3', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:55:29', 130, '2024-04-09 03:36:08', 0, NULL, 1),
(18080, 'Ranjan', '31', '9578829411', '', 'ranjancrt@gmail.com', '1999-09-17', 24, '3', '2', 'Thangamani R', 'Farmer', 200000.00, 1, 0.00, 350000.00, 'Kallakurichi', 'Chennai, Velachery', '2403260120', '', '1', 'upload_files/candidate_tracker/42713806270_RANJAN-2021-FULL STACK.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 06:58:21', 130, '2024-05-02 11:42:06', 0, NULL, 1),
(18081, 'Vignesh Ganesan', '13', '7395892631', '9952736096', 'Vigneshvicky.mac@gmail.com', '2001-06-26', 22, '3', '2', 'Ganesan', 'Gold smith', 12000.00, 1, 0.00, 4.00, 'Villupuram', 'Villupuram', '2403260121', '', '1', 'upload_files/candidate_tracker/36426922877_Vignesh G resume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:07:54', 130, '2024-04-12 05:40:12', 0, NULL, 1),
(18082, 'vaishnavi s m', '13', '8668066037', '', 'smvaishnavi23@gmail.com', '2001-08-23', 22, '3', '2', 'murali ganeshan', 'auto driver', 18000.00, 2, 0.00, 15000.00, 'vellore', 'chennai', '2403260122', '', '1', 'upload_files/candidate_tracker/43941901911_VAISHNAVI.pdf', NULL, '1', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:17:08', 112, '2024-03-26 03:39:56', 0, NULL, 1),
(18083, 'Ulagammai', '6', '9384445657', '6380247630', 'ulagammaics96@gmail.com', '1996-11-17', 27, '2', '1', 'Natarajan', 'System Engineer', 60000.00, 1, 250000.00, 250000.00, 'Chennai', 'Chennai', '2403260123', '1', '2', 'upload_files/candidate_tracker/15647215529_ulagammai_resume.pdf', NULL, '1', '2024-03-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-26 07:17:47', 112, '2024-03-26 06:15:22', 0, NULL, 1),
(18084, 'Nithish M', '13', '8220219886', '', 'Paradoxpirate11@gmail.com', '2000-10-03', 23, '3', '2', 'Manivannan K', 'Accountant', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Arumbakkam', '2403260124', '', '1', 'upload_files/candidate_tracker/24037607104_Resume - Nithish M.pdf', NULL, '3', '2024-03-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:19:48', 112, '2024-03-26 05:24:20', 0, NULL, 1),
(18085, 'Pushpakaran K R', '13', '7358446645', '9361585553', 'Pushpak9789@gmail.com', '2001-04-16', 22, '3', '2', 'Rajkumar', 'Daily wages', 10000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2403260125', '', '1', 'upload_files/candidate_tracker/3053534760_Pushpakaran.K R Resume.pdf', NULL, '1', '2024-03-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:20:39', 112, '2024-03-26 05:23:45', 0, NULL, 1),
(18086, 'K saikumar', '13', '9989698415', '9133714001', 'Saik8164@gmail.com', '2001-05-25', 22, '3', '2', 'T ANILKUMAR', 'Passed away', 10000.00, 2, 0.00, 15000.00, 'Tirupati', 'Pallavaram', '2403260126', '', '1', 'upload_files/candidate_tracker/11910068056_web sai.pdf', NULL, '3', '2024-03-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:21:12', 112, '2024-03-26 05:24:39', 0, NULL, 1),
(18087, 'Jeeja', '13', '9566790887', '', 'jeeja0903@gmail.com', '2002-03-09', 22, '3', '2', 'Vijayakumaran', 'Assistant manager in TNSTC', 100000.00, 1, 0.00, 250000.00, 'Vellore', 'Chennai', '2403260127', '', '1', 'upload_files/candidate_tracker/40489927463_JeejaMarch24.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:25:41', 112, '2024-03-26 06:14:53', 0, NULL, 1),
(18088, 'PRAVEENKUMAR g', '13', '7708868736', '9655023567', 'praveenshame@gmail.com', '2000-08-31', 23, '3', '2', 'Punithavalli', 'Housekeeping', 12000.00, 1, 0.00, 16000.00, 'Arakkonam', 'Chennai', '2403260128', '', '1', 'upload_files/candidate_tracker/77017375789_praveen resume new-1.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '4', '6', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:26:19', 112, '2024-03-26 06:14:44', 0, NULL, 1),
(18089, 'santhosh', '13', '9655993037', '9597212823', 'santhoshnagaraj4303@gmail.com', '2003-06-04', 20, '3', '2', 'arent', 'self employe', 15000.00, 1, 0.00, 30000.00, 'dindigul', 'chennai', '2403260129', '', '1', 'upload_files/candidate_tracker/26386109041_RESUME SANTHOSH.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:26:35', 112, '2024-03-26 06:14:30', 0, NULL, 1),
(18090, 'Padmavathi', '13', '8754688654', '', 'padmavathi2k2k@gmail.com', '2000-11-11', 23, '3', '2', 'Saravanan', 'Restaurant', 10000.00, 3, 0.00, 17000.00, 'Villupuram', 'Chennai', '2403260130', '', '1', 'upload_files/candidate_tracker/83436954642_PadmaVathi.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:26:52', 112, '2024-03-26 06:14:13', 0, NULL, 1),
(18091, 'Nirmal Karthik S', '13', '9443067676', '6382649996', 'karthiksnk210@gmail.com', '2000-10-02', 23, '3', '2', 'Selva Muthu Kumar G', 'Self employed', 30000.00, 2, 0.00, 30000.00, 'Tirunelveli', 'Chennai', '2403260131', '', '1', 'upload_files/candidate_tracker/35720146136_CV 2.pdf', NULL, '1', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:27:29', 112, '2024-03-26 05:21:28', 0, NULL, 1),
(18092, 'Ilavaruna Karthik p', '13', '9600079559', '8122120328', 'jeyilasri@gmail.com', '1998-04-01', 25, '3', '2', 'Pandi selvaraj', 'Stenographer', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2403260132', '', '1', 'upload_files/candidate_tracker/58180156710_ela resume FED.pdf', NULL, '1', '2024-03-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:30:34', 112, '2024-03-26 05:25:18', 0, NULL, 1),
(18093, 'Lokesh', '13', '9952697746', '', 'lokeshgym65595@gmail.com', '2002-05-12', 21, '3', '2', 'J.Venkatesan', 'Driver', 30000.00, 1, 0.00, 200000.00, 'Gudiyatham ,Vellore .', 'Porur , Chennai.', '2403260133', '', '1', 'upload_files/candidate_tracker/3188584428_LokeshMarch24.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:34:52', 130, '2024-04-12 05:38:30', 0, NULL, 1),
(18094, 'Sathish Kumar p', '13', '9176884763', '9092934323', 'sathishkumar20122001@gmail.com', '2001-12-20', 22, '3', '2', 'Parasuraman.k', 'Daily wages', 300000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2403260134', '', '1', 'upload_files/candidate_tracker/63898594341_Sathish.CV.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:41:35', 112, '2024-03-26 05:52:03', 0, NULL, 1),
(18095, 'Madhavan R', '13', '9443437222', '', 'madhavan3437@gmail.com', '2009-03-26', 0, '3', '2', 'Ramathilagam', 'Teacher', 40000.00, 0, 0.00, 3.00, 'Pudukkottai', 'Thiruvottiyur', '2403260135', '', '1', 'upload_files/candidate_tracker/57812850192_res.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 07:50:38', 112, '2024-03-26 06:13:56', 0, NULL, 1),
(18096, 'Prem kumar J', '13', '7639427258', '', 'jazzprem100@gmail.com', '1999-10-19', 24, '3', '2', 'Jesuthasan', 'Farmer', 10000.00, 2, 0.00, 300000.00, 'ARALVAIMOZHI', 'ARALVAIMOZHI', '2403260136', '', '1', 'upload_files/candidate_tracker/66011102279_CV_Prem.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 08:03:23', 112, '2024-03-26 05:53:44', 0, NULL, 1),
(18097, 'Selvakumar N', '13', '8098876251', '9345136566', 'selvakumarnatarajan63@gmail.com', '1996-01-18', 28, '3', '2', 'Natarajan', 'fishing', 15000.00, 0, 0.00, 15000.00, 'Nagapattinam', 'puraisawakkam', '2403260137', '', '1', 'upload_files/candidate_tracker/12063612447_selvakumar N (3).pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 08:44:56', 112, '2024-03-26 05:51:21', 0, NULL, 1),
(18098, 'pranish', '13', '9080475071', '', 'pranishs0711@gmail.com', '2001-11-07', 22, '3', '2', 'sathishkumar', 'business', 35000.00, 1, 0.00, 15000.00, 'erode', 'chennai', '2403260138', '', '1', 'upload_files/candidate_tracker/17924382562_Pranish.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 09:07:14', 130, '2024-05-02 10:55:27', 0, NULL, 1),
(18099, 'ABISHEK A', '13', '9600790783', '', 'abishek020925@gmail.com', '2002-09-25', 21, '3', '2', 'Arockiya Selva raj', 'Driver', 20000.00, 2, 0.00, 26000.00, 'Neyveli, cuddalore', 'Porur, chennai', '2403260139', '', '1', 'upload_files/candidate_tracker/22426048877_A ABISHEK.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 09:15:13', 112, '2024-03-26 05:50:40', 0, NULL, 1),
(18100, 'Poornima M', '13', '9003318846', '', 'mpoornima020@gmail.com', '2001-12-09', 22, '3', '2', 'K Marisamy', 'Masion', 30000.00, 1, 0.00, 300000.00, 'Kovilpatti Thoothukudi district', 'Chennai', '2403260140', '', '1', 'upload_files/candidate_tracker/44987478626_poorni resume (1) (2).pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 09:20:07', 112, '2024-03-26 05:52:49', 0, NULL, 1),
(18101, 'Anand', '13', '7397519197', '9345535654', 'Anandravichandran127@gmail.com', '2001-05-20', 22, '3', '2', 'Ravichandran', 'Textile', 20000.00, 1, 0.00, 30000.00, 'Tiruchengode', 'Chennai', '2403260141', '', '1', 'upload_files/candidate_tracker/66358726501_anand_ravichandran_arctech.pdf', NULL, '2', '2024-03-26', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 09:23:05', 112, '2024-03-26 05:22:34', 0, NULL, 1),
(18102, '', '0', '9884776809', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260142', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 09:23:20', 0, NULL, 0, NULL, 1),
(18103, 'Kabilan M', '13', '9787403258', '6382236610', 'mmvkabilan@gmail.com', '2002-10-16', 21, '3', '2', 'Muthumanickam M', 'TNSTC', 25000.00, 2, 0.00, 2.50, 'Chennai', 'Chennai', '2403260143', '', '1', 'upload_files/candidate_tracker/34627426250_M.kabilan-9787403258-..pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 09:28:02', 112, '2024-03-26 05:49:27', 0, NULL, 1),
(18104, 'Gowtham S', '13', '6379076127', '6374737401', 'gowthamsd08@gmail.com', '2003-08-14', 20, '3', '2', 'Sundarraj', 'Tea Shop', 20000.00, 1, 0.00, 2.40, 'Theni', 'Chennai', '2403260144', '', '1', 'upload_files/candidate_tracker/85965829286_Gow.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 09:28:45', 130, '2024-05-02 10:55:54', 0, NULL, 1),
(18105, 'Gowtham', '13', '7810001588', '6382236610', 'gowrigowtham0007@gmail.com', '2003-05-04', 20, '3', '2', 'Balasuparamaniyan', 'House wife', 18000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2403260145', '', '1', 'upload_files/candidate_tracker/12153430149_GOWTHAM RESUME.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 09:28:47', 112, '2024-03-26 05:53:57', 0, NULL, 1),
(18106, 'Suriya KN', '13', '6382236610', '9787403258', 'knsuriya10122001@gmail.com', '2001-12-10', 22, '3', '2', 'Nallapillai k', 'Farmer', 300000.00, 2, 0.00, 3.00, 'Dindigul', 'Chennai', '2403260146', '', '1', 'upload_files/candidate_tracker/91751089453_Suriya Developer-2.pdf', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 09:30:38', 130, '2024-05-02 10:06:43', 0, NULL, 1),
(18107, 'Dinesh G', '13', '8667720985', '', 'dinesh200120@gmail.com', '2000-10-11', 23, '3', '2', 'Gajendran', 'Electrician', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2403260147', '', '1', 'upload_files/candidate_tracker/20250290683_CV_2024-03-26-072828.docx', NULL, '1', '2024-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 09:33:04', 130, '2024-05-02 10:33:18', 0, NULL, 1),
(18108, 'Gokul Raj s', '6', '9361454875', '9965487465', 'gokulsiva9735@gmail.com', '2002-01-17', 22, '1', '2', 'Sivakumar', 'Tasmac supervisor', 70000.00, 1, 0.00, 18000.00, 'Thiruthuraipoondi', 'Velachery', '2403260148', '', '1', 'upload_files/candidate_tracker/48812843977_gokul rajs.pdf', NULL, '1', '2024-03-26', 0, '12345', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Performance And Communication Is Not Good, Candidate Brother working in tata aig', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 10:29:25', 112, '2024-03-26 06:01:38', 0, NULL, 1),
(18109, 'Sundharamoorthy V', '6', '9688888586', '', 'imharan20@gmail.com', '2001-04-23', 22, '1', '2', 'Velmurugan p', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Karur', 'Channai', '2403260149', '', '1', 'upload_files/candidate_tracker/19869864416_Green Elegant Modern Minimalist One Page Resume.pdf', NULL, '1', '2024-03-26', 0, '12345', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 10:34:54', 112, '2024-03-26 05:58:46', 0, NULL, 1),
(18110, 'R.s.Aaakashram', '5', '8056457816', '9965487465', 'rsakashravi@gmail.com', '2001-12-31', 22, '1', '2', 'Ravichandran', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Chennai', '2403260150', '', '1', 'upload_files/candidate_tracker/54529902925_AkashRam Resume.pdf', NULL, '1', '2024-03-26', 0, '12345', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 10:43:08', 112, '2024-03-26 06:00:47', 0, NULL, 1),
(18111, 'Pooja shree .M', '4', '7824042620', '', 'poojashreemohan1922@gmail.com', '2001-08-22', 22, '1', '1', 'Eashwaran', 'A/C mechanic', 13000.00, 1, 17000.00, 18000.00, '10/18 Duraisamy Street, Ayanavaram,chennai 12', '10/18 Duraisamy Street, Ayanavaram,Chennai 12', '2403260151', '', '2', 'upload_files/candidate_tracker/9630865740_Pooja Shree.M.pdf', NULL, '1', '2024-03-27', 0, '2403260151', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-26 11:23:43', 1, '2024-03-26 11:29:30', 0, NULL, 1),
(18112, '', '0', '9994991536', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260152', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 12:20:39', 0, NULL, 0, NULL, 1),
(18113, '', '0', '8143702773', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260153', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 12:37:55', 0, NULL, 0, NULL, 1),
(18114, '', '0', '8755685484', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403260154', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-26 12:45:03', 0, NULL, 0, NULL, 1),
(18115, 'Muthu Lakshmi.T.S', '4', '7598064386', '', 'Mahaaarushis18s@gmail.com', '2009-03-26', 0, '2', '2', 'Parents', 'Farmer', 20000.00, 1, 16000.00, 26000.00, 'Kanyakumari', 'Adyar', '2403260155', '39', '2', 'upload_files/candidate_tracker/66084144089_CV_2024032617295720.pdf', NULL, '1', '2024-03-27', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 12:52:31', 112, '2024-03-27 03:51:30', 0, NULL, 1),
(18116, 'vignesh s', '6', '6379004410', '', 'sunanthsurath@gmail.com', '1996-09-06', 27, '2', '2', 'sankar', 'ex milttary', 25000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2403260156', '39', '1', 'upload_files/candidate_tracker/27632685605_Update Resume.docx', NULL, '1', '2024-03-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Performance And Communication Is Not Good,also expecting high salary package', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 12:58:35', 112, '2024-03-27 02:50:54', 0, NULL, 1),
(18117, 'Ram prasath r', '5', '9176603456', '', 'ramursrr1999@gmail.com', '1999-08-09', 24, '2', '2', 'sumathi', 'school', 30000.00, 1, 28000.00, 35000.00, 'chennai', 'chennai', '2403260157', '39', '2', 'upload_files/candidate_tracker/84354799628_RAM-2024-I.pdf', NULL, '1', '2024-03-27', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 01:03:06', 112, '2024-03-27 02:49:56', 0, NULL, 1),
(18118, 'sneha b', '6', '9087200552', '6382748382', 'ksnehaub2001@gmail.com', '2001-10-03', 22, '2', '2', 'babu k', 'business', 30000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2403260158', '1', '1', 'upload_files/candidate_tracker/60358410280_RESUME (1).pdf', NULL, '1', '2024-03-27', 0, '', '3', '59', '2024-03-28', 186000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-03-26 02:13:18', 60, '2024-03-28 10:25:04', 0, NULL, 1),
(18119, 'BHARATH RAO V', '4', '6379979899', '', 'venkobabharath22@gmail.com', '2001-05-22', 22, '6', '2', 'Venkoba rao', 'Garments working', 15000.00, 0, 15000.00, 20000.00, 'Vyasarpadi', 'Vyasarpadi', '2403260159', '', '2', 'upload_files/candidate_tracker/36873583356_BHARATH RES.doc', NULL, '3', '2024-03-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-26 04:51:41', 1, '2024-03-26 04:58:35', 0, NULL, 1),
(18120, 'surya', '14', '7010545749', '', 'suryabro26@gmail.com', '1998-06-04', 25, '3', '1', 'elangovan', 'Advocate', 1.00, 1, 5.00, 5.00, 'chennai', 'chennai', '2403260160', '', '2', 'upload_files/candidate_tracker/93789178524_Surya resume new .pdf', NULL, '1', '2024-03-27', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-26 09:44:17', 112, '2024-03-27 03:46:51', 0, NULL, 1),
(18121, 'sanjay', '14', '7200227173', '9444667080', 'saravanans46108@gmail.com', '2002-02-23', 22, '3', '2', 'saravanan.a', 'electrician', 30000.00, 1, 0.00, 200000.00, 'sholinganallur chennai', 'sholinganallur chennai', '2403270001', '', '1', 'upload_files/candidate_tracker/19095673510_SANJAY.S_B.E_ECE_2023BATCH_RESUME (1).pdf', NULL, '1', '2024-03-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 02:12:07', 112, '2024-03-28 05:11:40', 0, NULL, 1),
(18122, '', '0', '6382748382', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403270002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-27 02:47:42', 0, NULL, 0, NULL, 1),
(18123, 'Deepak P', '5', '9962141646', '8122809053', 'daviddeepak.pv@gmail.com', '1994-09-22', 29, '2', '2', 'Vasu P', 'Warden', 15000.00, 2, 25000.00, 30000.00, '12, 9 th Street, GuruSwamy Nagar, Pulliyanthope', 'Cheenai', '2403270003', '1', '2', 'upload_files/candidate_tracker/4317135447_CV_2024022120323654.pdf', NULL, '1', '2024-03-27', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-27 04:55:03', 112, '2024-03-27 02:49:31', 0, NULL, 1),
(18124, 'KARTHIKEYAN T', '31', '7373179913', '9942644730', 'karthikeyan080992@gmail.com', '1992-05-13', 31, '6', '1', 'MEENA', 'Front End Developer', 30000.00, 1, 0.00, 30000.00, 'Pudukkotttai', 'Chennai', '2403270004', '', '1', 'upload_files/candidate_tracker/12654096650_Karthik Resume.pdf', NULL, '3', '2024-03-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '2', '2', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 05:13:35', 112, '2024-03-30 12:03:41', 0, NULL, 1),
(18125, 'Manikandan arumugam', '6', '9944069271', '8526822710', 'maniisonchennai@gmail.com', '1989-07-20', 34, '2', '2', 'Arumugam', 'Chennai', 35000.00, 1, 17000.00, 2.00, 'Salem', 'Chennai perungudi', '2403270005', '1', '2', 'upload_files/candidate_tracker/69124975910_CV_202401171149427.pdf', NULL, '1', '2024-03-27', 0, '', '1', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-03-27 05:14:23', 104, '2024-03-27 04:25:28', 0, NULL, 1),
(18126, 'Aman rai', '5', '7338337083', '', 'Amanshez022@gmail.com', '2000-09-02', 23, '2', '2', 'Sunil rai', 'Supervisor', 40000.00, 0, 0.00, 500000.00, 'Yelhanka', 'Yelhanka', '2403270006', '37', '1', 'upload_files/candidate_tracker/13367880758_aman rai resume final.pdf-1.pdf', NULL, '3', '2024-03-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Had a call with Aman Rai and understood that he is still in his final year of graduation and will complete it in August 2024. Continuing that he is in a plan to go with MBA full time. He acknowledged that he will be working only for 6 months until his graduation completion and not more than that, also his expectation is very high being a fresher. He will not sustain and is not suitable for this position.', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 05:15:47', 60, '2024-04-05 12:50:01', 0, NULL, 1),
(18127, 'Pratap R E', '5', '9108662836', '', 'prathapreddyp2221@gmail.com', '2002-08-12', 21, '2', '2', 'Spouse', 'Student', 18000.00, 1, 0.00, 20000.00, 'Ramojipalli Village chikkaballapur district', 'Gayithiri nagar Bengaluru', '2403270007', '37', '1', 'upload_files/candidate_tracker/17099109041_Prathap Resume-1.pdf', NULL, '1', '2024-03-27', 0, '', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate in ok, can proceed with second level face to face interview', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 05:20:12', 112, '2024-03-28 07:04:18', 0, NULL, 1),
(18128, 'Kishore Kumar P', '13', '8190974318', '8680833403', 'kishorekumar26pk@gmail.com', '2000-04-26', 23, '3', '2', 'Valarmathi P', 'Housewife', 15000.00, 1, 450000.00, 600000.00, 'No 1/172 ragavanagar 2nd street madipakkam', 'Chennai', '2403270008', '', '2', 'upload_files/candidate_tracker/26350540840_Kishore Kumar P.pdf', NULL, '1', '2024-03-27', 15, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 05:23:43', 112, '2024-03-27 03:36:42', 0, NULL, 1),
(18129, 'Ravi Prasad J', '5', '7358359078', '9363962946', 'raviprasadjaihind@gmail.com', '1995-08-03', 28, '2', '2', 'V Jaihind', 'Retired', 25000.00, 0, 25000.00, 35000.00, 'Chennai', 'Chennai', '2403270009', '1', '2', 'upload_files/candidate_tracker/89923914417_ravi.docx', NULL, '1', '2024-03-27', 0, '', '3', '59', '2024-04-10', 340000.00, '', '5', '1970-01-01', '1', 'Selected for Manikandan Team in staff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-27 05:29:00', 60, '2024-04-10 10:08:43', 0, NULL, 1),
(18130, 'Karthikeyan', '6', '9514545719', '', 'karthiknaga11@gmail.com', '1993-05-24', 30, '2', '2', 'Nagarajan', 'Deputy BDO', 100000.00, 1, 30000.00, 40000.00, 'Thanjavur', 'Chennai', '2403270010', '1', '2', 'upload_files/candidate_tracker/96949944328_Karthikeyan Nagarajan_20240326_213146_0000.pdf', NULL, '1', '2024-03-27', 0, '', '1', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-03-27 05:32:21', 112, '2024-03-27 06:31:51', 0, NULL, 1),
(18131, 'Amal P', '13', '8825440460', '9094989045', 'amalpramod76@gmail.com', '2000-06-07', 23, '3', '2', 'Pramod', 'Provision shop', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2403270011', '', '1', 'upload_files/candidate_tracker/43222179130_Amal.pdf', NULL, '1', '2024-03-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 05:37:01', 130, '2024-04-09 03:30:55', 0, NULL, 1),
(18132, 'Laxmi Biradar', '5', '9741381057', '', 'laxmibiradar966@gmail.com', '1998-02-20', 26, '2', '1', 'Balaji biradar', 'Software Engineer', 60000.00, 2, 0.00, 20000.00, 'Bidar Karnataka', 'Garvebhavi palya Bangalore', '2403270012', '37', '1', 'upload_files/candidate_tracker/387893061_Laxmi Biradar.pdf', NULL, '1', '2024-03-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 05:48:03', 112, '2024-03-28 07:04:24', 0, NULL, 1),
(18133, '', '0', '9363962946', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403270013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-27 05:56:52', 0, NULL, 0, NULL, 1),
(18134, 'Ashwin kumar', '13', '6369577470', '9841518323', 'ashwinkumar3112000@gmail.com', '2000-11-03', 23, '3', '2', 'Ekambaram', 'Machine operator', 40000.00, 1, 0.00, 1.50, 'Chennai', 'Chennai', '2403270014', '', '1', 'upload_files/candidate_tracker/12608442050_Ashwin java DEV.pdf', NULL, '1', '2024-03-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 06:10:20', 112, '2024-03-27 03:37:04', 0, NULL, 1),
(18135, 'Aravind kumar', '13', '9123564044', '9677111588', 'aravindkumars1202@gmail.com', '2000-02-12', 24, '3', '2', 'Selva kumar', 'Driver', 25000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2403270015', '', '1', 'upload_files/candidate_tracker/56117708727_Aravind', NULL, '1', '2024-03-27', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 06:10:57', 112, '2024-03-27 04:00:15', 0, NULL, 1),
(18136, 'Arul prakash', '5', '6381078140', '9790507895', 'arulbecivil03@gmail.com', '1993-03-15', 31, '1', '2', 'V Asokan', 'Retd employee', 10000.00, 2, 25000.00, 30000.00, 'Chidambaram', 'Kundrathur', '2403270016', '', '2', 'upload_files/candidate_tracker/97542244594_ARUL RESUME.docx', NULL, '1', '2024-03-27', 0, '55722', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'referred by RM Ganesh but candidate is seems to be aggressive ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 06:39:16', 112, '2024-03-27 12:34:31', 0, NULL, 1),
(18137, 'Rohith', '5', '7299490245', '8807888782', 'Rohithravi2020@gmail.com', '1999-12-05', 24, '2', '2', 'Ms ravi', 'Metro water', 12000.00, 1, 0.00, 15000.00, 'Teyenampet chennai', 'Teyenampet Chennai', '2403270017', '1', '1', 'upload_files/candidate_tracker/17792627659_ROHITH RESUME1.pdf', NULL, '1', '2024-03-27', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-03-27 06:47:24', 112, '2024-03-27 06:13:04', 0, NULL, 1),
(18138, 'Vignesh', '6', '8608210801', '9790905048', 'vigneshsmall52141@gmail.com', '1998-11-25', 25, '2', '2', 'Elumali', 'Business', 25000.00, 1, 14500.00, 15000.00, 'Ambuttur', 'Ambuttur', '2403270018', '1', '2', 'upload_files/candidate_tracker/98040461767_E Vignesh[260248]_ol - sbi.pdf', NULL, '1', '2024-03-27', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '4', '6', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-27 07:21:04', 112, '2024-03-27 03:42:35', 0, NULL, 1),
(18139, 'Sanjay subramaniam.v', '13', '9962738711', '', 'sanjaysubramaniam.v19h317@gmail.com', '2001-08-08', 22, '3', '2', 'S .vaideeswaran', 'business', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2403270019', '', '1', 'upload_files/candidate_tracker/49067268079_white simple student cv resume_20231222_095235_0000.pdf', NULL, '1', '2024-03-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 07:35:40', 112, '2024-03-27 03:44:00', 0, NULL, 1),
(18140, 'Keerthana', '33', '9710996614', '9003775048', 'mkerthana2020@gmail.com', '2001-08-05', 22, '2', '2', 'Mahadeva.R', 'Salaried', 15000.00, 0, 18000.00, 23000.00, 'No.2638tnhb ayappakkam', 'No.2638tnhb ayappakkam', '2403270020', '1', '2', 'upload_files/candidate_tracker/67523588965_keerthi0507.pdf', NULL, '1', '2024-04-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2024-03-27 08:08:41', 1, '2024-04-03 01:15:40', 0, NULL, 1),
(18141, '', '0', '8095732311', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403270021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-27 10:31:27', 0, NULL, 0, NULL, 1),
(18142, 'KHADHAR G', '6', '9677219260', '9940177438', 'khadhar007@gmail.com', '1990-01-21', 34, '2', '2', 'Gows Maideen late', 'Govt Employee', 30000.00, 1, 285000.00, 400000.00, 'chennai', 'Chennai', '2403270022', '39', '2', 'upload_files/candidate_tracker/82342760575_20-10-2023-khadhar resume.docx', NULL, '1', '2024-03-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Non Voice Process only not suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 10:57:15', 112, '2024-03-28 12:49:42', 0, NULL, 1),
(18143, '', '0', '7373192870', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403270023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-27 11:12:00', 0, NULL, 0, NULL, 1),
(18144, 'Soundarya.v', '4', '6381733709', '', 'SOvivenkat@gmail.com', '1999-07-03', 24, '2', '2', 'Prabavathi.', 'Working', 14000.00, 1, 0.00, 18000.00, 'Chennai', 'Anna street,redhills,chennai', '2403270024', '39', '1', 'upload_files/candidate_tracker/83991245607_Soundarya_v_1672649203770.pdf', NULL, '1', '2024-03-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 11:22:27', 104, '2024-03-28 05:52:10', 0, NULL, 1),
(18145, 'LAKSHMANAN G', '6', '9087999001', '', 'adolflakshmanan@gmail.com', '1996-03-27', 28, '2', '2', 'PARENT', 'EXECUTIVE', 30000.00, 2, 0.00, 20000.00, 'TONDAIRPET', 'CHENNAI', '2403270025', '29', '1', 'upload_files/candidate_tracker/72432075251_C0100062_C_2024Mar12055116.pdf', NULL, '3', '2024-03-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-27 12:35:09', 112, '2024-03-30 03:51:57', 0, NULL, 1),
(18146, '', '0', '6379635561', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403270026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-27 12:40:49', 0, NULL, 0, NULL, 1),
(18147, '568405514735', '20', '8124306981', '9342658254', 'sethupathivel713@gmail.com', '2002-03-17', 23, '3', '2', 'Murugan', 'None', 1000.00, 1, 25000.00, 28000.00, 'Chennai', 'Chennai', '2403270027', '', '2', 'upload_files/candidate_tracker/98187003605_SETHUPATHI202506012025290000.pdf', NULL, '1', '2025-07-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-27 01:55:20', 1, '2025-07-25 01:32:52', 0, NULL, 1),
(18148, 'Dinesh', '5', '9884499898', '', 'Dineshdin54657@gmail.com', '1994-06-16', 29, '2', '1', 'Dinesh', 'Diploma', 20000.00, 1, 22000.00, 25000.00, 'Chennai 600031', 'Chennai 600031', '2403280001', '42', '2', 'upload_files/candidate_tracker/72041889283_M.DINESH RESUME.pdf', NULL, '1', '2024-03-28', 0, '', '4', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile explained in detail about the roles, sustainability Doubts a lot kindly check once and let me know', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-28 04:44:49', 112, '2024-04-06 06:16:36', 0, NULL, 1),
(18149, 'Vijayakumar', '5', '7358852666', '9566256443', 'vijayur03@gmail.com', '1991-07-03', 32, '2', '1', 'Lakshmi devi', 'Housewife', 10000.00, 2, 30000.00, 38000.00, 'Chennai', 'Chennai', '2403280002', '42', '2', 'upload_files/candidate_tracker/95413845315_vijayakumar..pdf', NULL, '1', '2024-03-28', 30, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp as lead and checked for Sr profile 2nd round interviewed by Gaurav and received positive responses, need to check with director and confirm', '5', '1', '', '1', '8', '', '2', '2024-04-03', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-28 04:55:40', 112, '2024-04-06 06:16:48', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18150, 'Novinram', '14', '8925455321', '', 'ramnovin@gmail.com', '2003-04-20', 20, '3', '2', 'RAVICHANDRAN', 'Tea seller', 22000.00, 1, 0.00, 18000.00, 'Sivaganga devakottai', 'Kattupakkam, Chennai', '2403280003', '', '1', 'upload_files/candidate_tracker/27033304847_New Resume novin.pdf', NULL, '1', '2024-03-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-28 04:57:25', 112, '2024-03-28 11:14:14', 0, NULL, 1),
(18151, 'Hayaz', '6', '8015480020', '9790916252', 'hayaz.1269@gmail.com', '1992-12-08', 31, '2', '1', 'Sheerin', 'House wife', 30000.00, 0, 440000.00, 500000.00, 'vyasarpadi, chennai', 'vyasarpadi, chennai', '2403280004', '42', '2', 'upload_files/candidate_tracker/51917751522_Hayaz resume 21.03.24.docx', NULL, '1', '2024-03-28', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'already worked as accountant and most of his experience in the same field', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-28 05:08:28', 112, '2024-04-06 06:16:42', 0, NULL, 1),
(18152, 'A.Hariharan', '4', '9597966177', '', 'hariashok96@gmail.com', '1996-11-14', 27, '2', '2', 'D.Ashok kumar', 'Aawin', 10000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2403280005', '1', '1', 'upload_files/candidate_tracker/57250539181_HARI RESUME 2023 (3).pdf', NULL, '1', '2024-03-28', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-28 05:13:02', 108, '2024-03-28 03:51:50', 0, NULL, 1),
(18153, 'Rithish Kumar', '13', '6383344725', '9042171094', '310620106098@eec.srmrmp.edu.in', '2002-07-17', 21, '3', '2', 'Velumani', 'Farmer', 18000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2403280006', '', '1', 'upload_files/candidate_tracker/87927950978_Rithish resume 1.pdf', NULL, '1', '2024-03-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-28 05:49:34', 112, '2024-03-28 12:42:16', 0, NULL, 1),
(18154, 'Kumar Gandharva k c', '5', '7760533213', '', 'kckumargandharva123@gmail.com', '2001-12-30', 22, '2', '2', 'chandra shekar', 'manager', 60000.00, 1, 0.00, 300000.00, 'Bengaluru', 'Bengaluru', '2403280007', '37', '1', 'upload_files/candidate_tracker/36639637305_kumargandharva.pdf', NULL, '1', '2024-03-28', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Interested in sales', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-28 05:50:34', 104, '2024-03-29 09:30:16', 0, NULL, 1),
(18155, 'Aarthi', '6', '9940188883', '', 'lolylolita980@gmail.com', '2009-03-28', 0, '2', '2', 'Mother', 'House wife', 90000.00, 1, 14500.00, 17000.00, 'Chennai', 'Chennai', '2403280008', '1', '2', 'upload_files/candidate_tracker/28822630553_AArthi CV.pdf', NULL, '1', '2024-03-28', 0, '', '3', '59', '2024-04-02', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in Consultant Role Need to analyse in 7 days', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-28 05:52:26', 60, '2024-04-02 10:05:26', 0, NULL, 1),
(18156, 'mahabubali i k', '5', '7795161049', '', 'mahaboobk2000@gmail.com', '2000-07-25', 23, '2', '2', 'imamsab', 'farmer', 20000.00, 4, 0.00, 400000.00, 'averi', 'Bangalore', '2403280009', '37', '1', 'upload_files/candidate_tracker/28637593205_resume@ mahabubali.pdf', NULL, '3', '2024-03-28', 0, '', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok, can proceed with next level interview', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-28 06:11:47', 112, '2024-03-28 07:04:28', 0, NULL, 1),
(18157, '', '0', '6381651791', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403280010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-28 07:03:20', 0, NULL, 0, NULL, 1),
(18158, 'Aarthi K', '4', '8015381793', '', 'aarthima32@gmail.com', '2004-01-17', 20, '1', '2', 'Jaya k', 'Working', 15000.00, 1, 18500.00, 18500.00, 'Karaikudi', 'Chennai', '2403280011', '', '2', 'upload_files/candidate_tracker/27037875641_DOC-20240328-WA0012.pdf', NULL, '1', '2024-03-28', 0, '77845', '1', '52', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-28 07:26:40', 112, '2024-03-28 05:07:40', 0, NULL, 1),
(18159, 'Sarathkumar E', '14', '8760974938', '9688305766', 'sasirath77@gmail.com', '1998-05-17', 25, '3', '1', 'Nalini', 'house wife', 50000.00, 3, 600000.00, 1000000.00, '314, kaliyamman kovil Street, m kannanur', '26, 7th lane, kallikuppam road, Ambattur', '2403280012', '', '2', 'upload_files/candidate_tracker/84333993349_Sarathkumar-Resume.pdf', NULL, '2', '2024-03-29', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-28 07:42:23', 1, '2024-03-28 07:47:27', 0, NULL, 1),
(18160, 'Lavanya Selvaraj', '6', '8220065676', '', 'lavanyaselvaraj64@gmail.com', '2000-04-06', 23, '1', '1', 'Santhosh Kumar N', 'Police constable', 50000.00, 2, 0.00, 400000.00, 'Cuddalore', 'Chennai', '2403280013', '', '2', 'upload_files/candidate_tracker/11377829220_LavanyaS-converted.pdf', NULL, '1', '2024-03-28', 0, '55651', '3', '59', '2024-04-03', 240000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team in Staff Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-28 09:10:11', 60, '2024-04-03 10:31:16', 0, NULL, 1),
(18161, 'Muhammed waseem', '6', '6383120750', '7806931449', 'srwaseem03@gmail.com', '2001-05-28', 22, '2', '2', 'Rafeeque Ahmed', 'Worker', 250000.00, 1, 0.00, 16000.00, 'Pernambut vellore district', 'Periyamet Chennai', '2403280014', '35', '1', 'upload_files/candidate_tracker/89867102809_DOC-20231230-WA0046..pdf', NULL, '1', '2024-03-28', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not willing to work on sunday', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-28 09:10:34', 112, '2024-03-28 02:49:17', 0, NULL, 1),
(18162, 'Jeyapriya', '4', '6384118534', '', 'Jeyapriya@gmail.com', '2000-05-06', 23, '1', '2', 'Panchamadevi', 'House wife', 25000.00, 2, 18500.00, 18500.00, 'Ramanathapuram', 'Chennai', '2403280015', '', '2', 'upload_files/candidate_tracker/30617913235_jayapriya .docx', NULL, '1', '2024-03-28', 0, '6384118534', '1', '52', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-28 09:35:27', 1, '2024-03-28 09:58:05', 0, NULL, 1),
(18163, 'Kanga G', '4', '9786094039', '', 'Kaliyammalkanga@gmail.com', '2004-04-11', 19, '1', '2', 'Kaliyammal', 'House wife', 15000.00, 0, 0.00, 18500.00, 'Ramanathapuram', 'Chennai', '2403280016', '', '2', 'upload_files/candidate_tracker/22912116116_Resume copy.docx', NULL, '1', '2024-03-28', 0, '9786094039', '1', '52', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-28 09:40:38', 112, '2024-03-28 05:07:26', 0, NULL, 1),
(18164, 'V Rajalakshmi', '5', '8838974394', '', 'rawjimurugan@gmail.com', '2009-03-28', 0, '2', '1', 'Vijayaragavan M', 'Deputy Manager', 28000.00, 1, 400000.00, 500000.00, 'Chennai', 'Chennai', '2403280017', '39', '2', 'upload_files/candidate_tracker/2911410394_updated resume Rajalakshmi.doc', NULL, '1', '2024-03-29', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '1', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-28 10:12:20', 1, '2024-03-28 10:15:22', 0, NULL, 1),
(18165, 'Lokesh M', '5', '9972035297', '8217085635', 'lokeshmadhu773@gmail.com', '1998-02-04', 26, '2', '1', 'Madhu M', 'Working', 500000.00, 0, 18500.00, 25000.00, 'Bangalore', 'Bangalore', '2403280018', '37', '2', 'upload_files/candidate_tracker/65319209834_Lokesh M Resume 2023.docx', NULL, '3', '2024-04-01', 1, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He was looking for finnance', '5', '1', '', '2', '2', '', '2', '2024-04-01', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-28 10:39:10', 112, '2024-03-28 07:04:45', 0, NULL, 1),
(18166, '', '0', '9042463801', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403280019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-28 01:24:06', 0, NULL, 0, NULL, 1),
(18167, 'Praveen Kumar H', '6', '9150797096', '9940565344', 'praveenkumarharidoss2001@gmail.com', '2001-11-11', 22, '2', '2', 'Haridass R', 'Private employee', 50000.00, 1, 0.00, 15000.00, 'Chennai ayanavaram', 'Chennai thirumullaivoyal', '2403280020', '1', '1', 'upload_files/candidate_tracker/69525734574_Praveen resume.pdf', NULL, '1', '2024-03-29', 0, '', '3', '59', '2024-04-03', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Gopi Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-03-28 04:00:34', 60, '2024-04-05 03:29:56', 0, NULL, 1),
(18168, 'Sheikjabeer', '4', '7448641016', '', 'jabbujabbu9542@gmail.com', '2002-09-14', 21, '2', '2', 'Khalid basha', 'Salaried', 500000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2403280021', '1', '2', 'upload_files/candidate_tracker/24492466102_Jabeer CV (1).pdf', NULL, '1', '2024-03-29', 5, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1000', '', NULL, NULL, NULL, 1, '2024-03-28 11:59:51', 112, '2024-03-29 04:35:51', 0, NULL, 1),
(18169, 'Krishna Raj', '4', '9791982316', '9600440263', 'krishnaraghav093@gmail.com', '2002-03-09', 22, '2', '2', 'Raghavan', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2403290001', '1', '1', 'upload_files/candidate_tracker/93805312777_KRISHNA RAJ RESUME.docx', NULL, '1', '2024-03-29', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-29 03:58:48', 1, '2024-03-29 06:16:27', 0, NULL, 1),
(18170, 'Ravi Teja', '33', '9047207105', '', 'sujatha.raviteja1010@gmail.com', '2000-06-12', 23, '2', '2', 'Nanjachari', 'Mba', 20000.00, 1, 0.00, 18000.00, 'Hosur', 'Hosur', '2403290002', '37', '1', 'upload_files/candidate_tracker/21048080013_Ravi Teja Resume-1.pdf', NULL, '3', '2024-03-29', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 04:14:33', 112, '2024-03-29 04:37:27', 0, NULL, 1),
(18171, 'Vachan H S', '5', '9449798195', '8105107695', 'vachanhs3062@gmail.com', '2000-06-30', 23, '2', '2', 'NA', 'Student', 90000.00, 1, 0.00, 360000.00, 'Kodagu', 'Kodagu', '2403290003', '37', '1', 'upload_files/candidate_tracker/50478525583_Vachan_HS_resume.pdf', NULL, '3', '2024-03-29', 0, '', '4', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication, interested in sales can proceed with direct walkin.', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 04:20:27', 104, '2024-04-02 04:43:00', 0, NULL, 1),
(18172, 'Vinodha Rajinikanth', '4', '6379203376', '', 'vinodhavinov@gmail.com', '2002-06-10', 21, '2', '2', 'Rajinikanth', 'Car driver', 19000.00, 1, 0.00, 16000.00, 'Chennai', 'Mylapore', '2403290004', '1', '1', 'upload_files/candidate_tracker/60803875713_vinodha.resume.docx', NULL, '1', '2024-03-29', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-29 04:24:54', 112, '2024-03-29 06:57:19', 0, NULL, 1),
(18173, '', '0', '9606626845', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403290005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-29 04:41:37', 0, NULL, 0, NULL, 1),
(18174, 'Sandhyaabirami', '6', '7358434358', '', 'Sandhyaabi19@gmail.com', '1996-12-19', 27, '2', '1', 'Pranaav', 'No', 50000.00, 1, 23000.00, 30000.00, 'No 3h, dlb harbour Quaters, Clive battery', 'Chennai', '2403290006', '42', '2', 'upload_files/candidate_tracker/5600538132_Sandhya.pdf', NULL, '3', '2024-03-29', 0, '', '1', '52', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 04:58:16', 112, '2024-04-06 06:17:25', 0, NULL, 1),
(18175, 'Prasanth A K', '6', '7812867294', '', 'prasanthak03@gmail.com', '2001-11-18', 22, '2', '2', 'A A Kuppan', 'Weaver', 15000.00, 2, 0.00, 180000.00, 'Tiruttani', 'Tiruttani', '2403290007', '1', '1', 'upload_files/candidate_tracker/76262271576_PRASANTH Resume Stella4 update (3).pdf', NULL, '1', '2024-03-29', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication ANd Performance is Not Good Also His Attire is Very Poor', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-03-29 05:25:04', 112, '2024-03-29 11:06:25', 0, NULL, 1),
(18176, 'Afrose parveen G', '6', '8248775582', '7448526220', 'afroseghosebasha0503@gmail.com', '2000-03-05', 24, '2', '2', 'Ghouse basha S', 'Tailor', 18000.00, 3, 15000.00, 20000.00, 'No 12, jeevanadham Street,Redhills, chennai 052', 'No, 12 jeevanadham Street, redhills, chennai 052', '2403290008', '35', '2', 'upload_files/candidate_tracker/18112602969_Afrose G Resume (1).docx', NULL, '1', '2024-03-29', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 05:41:00', 112, '2024-03-29 03:44:29', 0, NULL, 1),
(18177, 'Vignesh s', '6', '6380176364', '', 'vickypsk192000@gmail.com', '2000-07-19', 23, '2', '2', 'Suresh s', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Poonamallee', 'Poonamallee', '2403290009', '42', '1', 'upload_files/candidate_tracker/12246899809_vignesh.pdf', NULL, '1', '2024-03-29', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication And Performance Is Not Good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 06:09:45', 112, '2024-04-06 06:17:31', 0, NULL, 1),
(18178, 'Jitendra swain', '4', '9827793891', '9740711091', 'jitendraswainn93@gmail.com', '1993-05-10', 30, '2', '1', 'Rashmita swain', 'House wife', 40000.00, 2, 18.00, 25.00, 'Odisha', 'Saidapet chennai', '2403290010', '35', '2', 'upload_files/candidate_tracker/70628808729_CV_2023101719131057.pdf', NULL, '1', '2024-03-29', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 06:25:55', 112, '2024-03-29 06:57:38', 0, NULL, 1),
(18179, 'SIVANESH K', '6', '8610809504', '7339194359', 'sivarar2002@gmail.com', '2002-10-20', 21, '2', '2', 'Kannan P', 'Tailor', 26000.00, 1, 0.00, 16000.00, 'Theni', 'Taramani Chennai', '2403290011', '1', '1', 'upload_files/candidate_tracker/83164477599_Siva CV.pdf', NULL, '1', '2024-03-29', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-29 06:32:46', 112, '2024-03-29 04:41:02', 0, NULL, 1),
(18180, 'Saradha s', '6', '9342981200', '9176366878', 'sarashree2002@gmail.com', '2002-11-14', 21, '2', '1', 'Shivakumar', 'Real estate', 100000.00, 1, 18000.00, 20000.00, 'Velachery, chennai', 'Velachery, chennai', '2403290012', '42', '2', 'upload_files/candidate_tracker/38119498164_DOC-20240329-WA0002..pdf', NULL, '1', '2024-03-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'shortlist for team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 06:34:00', 112, '2024-04-06 06:17:37', 0, NULL, 1),
(18181, 'Haripriyan M', '6', '9360503897', '9342981200', 'saradhahari04@gmail.com', '2001-01-11', 23, '2', '1', 'Manikandan', 'Finance', 80000.00, 1, 19000.00, 23000.00, 'Velachery, Chennai', 'Velachery, Chennai', '2403290013', '42', '2', 'upload_files/candidate_tracker/45467692065_White Simple Student CV Resume_20240321_112756_0000.pdf', NULL, '1', '2024-03-29', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance is Not Good ,Voice is Also Not Clear', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 06:34:11', 112, '2024-04-06 06:17:42', 0, NULL, 1),
(18182, 'Nithin sanjay s', '6', '9444076878', '9342981200', 'sanjaynithin64@gmail.com', '2007-02-22', 17, '2', '2', 'Shivakumar', 'Real estate', 100000.00, 1, 0.00, 17000.00, 'A1,Dukes Manor, Velachery, chennai -42', 'A1,Dukes Manor, Velachery, Chennai -42', '2403290014', '42', '1', 'upload_files/candidate_tracker/55587793608_DOC-20240321-WA0007..pdf', NULL, '1', '2024-03-29', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'below 18age and not suitable for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 06:40:55', 112, '2024-04-06 06:17:57', 0, NULL, 1),
(18183, 'Mounica', '5', '7550159794', '9342419691', 'mmounica97@gmail.com', '1997-04-18', 26, '2', '2', 'Murali', 'Chennai corporation', 150000.00, 1, 18000.00, 20000.00, 'Pattalam', 'Pattalan', '2403290015', '1', '2', 'upload_files/candidate_tracker/56801430403_Mounica Resume.pdf', NULL, '1', '2024-03-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-29 06:50:03', 108, '2024-03-29 03:35:56', 0, NULL, 1),
(18184, 'Suman r', '6', '7010299049', '', 'sumansandy295@gmail.com', '2003-03-25', 21, '2', '2', 'Radhakrishnan', 'Ci corporation manager', 45000.00, 1, 15000.00, 15000.00, 'U block no3pallakumanagar Mylapore Chennai 600004', 'Mylapore', '2403290016', '1', '2', 'upload_files/candidate_tracker/33497294470_R. SUMAN.pdf', NULL, '2', '2024-03-29', 10, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-29 06:54:32', 112, '2024-03-29 03:45:56', 0, NULL, 1),
(18185, 'MOHAMMED HANEEF S', '6', '6380821570', '9791077823', 'riohaneef005@gmail.com', '2004-05-06', 19, '3', '2', 'Shahabdheen m', 'Mens wear', 25000.00, 1, 16.00, 15.00, 'Srinivasapuram pattinapakkam chennai', 'Srinivasapuram pattinapakkam chennai', '2403290017', '', '2', 'upload_files/candidate_tracker/89940572663_HANEEF.pdf', NULL, '1', '2024-03-29', 10, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 06:54:33', 112, '2024-03-29 03:23:14', 0, NULL, 1),
(18186, '', '0', '9343419691', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403290018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-29 07:01:22', 0, NULL, 0, NULL, 1),
(18187, 'Mugeshkannan', '4', '9080265569', '', 'mugeshkannan1405@gmail.com', '2000-05-14', 23, '2', '2', 'Muthusamy', 'Farming', 500000.00, 2, 400000.00, 540000.00, '2/42-1,Kunnam taluk Perambalur dt 621708', 'Madipakkam', '2403290019', '39', '2', 'upload_files/candidate_tracker/22838558849_Mugeshkannan_Resume_660.pdf', NULL, '1', '2024-03-29', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 07:15:14', 112, '2024-03-29 03:22:41', 0, NULL, 1),
(18188, 'Harish B', '6', '9345579130', '', '31harish02@gmail.com', '2002-07-31', 21, '2', '2', 'Balaji', 'Private sector', 35000.00, 1, 0.00, 30000.00, 'No 4/12, Gramani St, Thiruverkadu, Chennai - 77', 'No 4/12, Gramani Street,Thiruverkadu, Chennai - 77', '2403290020', '39', '1', 'upload_files/candidate_tracker/35666487833_Harish', NULL, '1', '2024-03-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 07:32:17', 112, '2024-03-30 03:10:27', 0, NULL, 1),
(18189, 'Sonia', '11', '7397287282', '9790864586', 'sonissonar1998@gmail.com', '1998-11-07', 25, '1', '2', 'Usha', 'Working', 20000.00, 2, 19000.00, 28000.00, 'Thiruvotriyur', 'Thiruvotriyur', '2403290021', '', '2', 'upload_files/candidate_tracker/19971528275_SONIA RESUME FRESH.pdf', NULL, '3', '2024-03-29', 15, 'Ge10759', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 07:32:58', 112, '2024-03-29 04:38:59', 0, NULL, 1),
(18190, 'S. Kanchana', '5', '9677222624', '9894453667', 'kanchanashree2410@gmail.com', '1994-10-24', 29, '2', '1', 'Srinivasalu', 'Coolie', 15000.00, 2, 18000.00, 23000.00, '25/2 , chigirintha palayam 1st Korukkupet', '25/2, chigirintha palayam 1st Korukkupet', '2403290022', '42', '2', 'upload_files/candidate_tracker/88702542406_Kanchana_Resume_253.pdf', NULL, '1', '2024-03-29', 0, '', '3', '59', '2024-04-22', 290000.00, '', '3', '2025-03-08', '2', 'Selected for Manikandan Team Relationship Manager Can give a try in our roles', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 07:51:07', 60, '2024-04-20 07:24:07', 0, NULL, 1),
(18191, 'Kavitha Selvaraj', '6', '8807980818', '8148853326', 'kavi.ammu3196@gamil.com', '1996-10-31', 27, '2', '2', 'Selvaraj', 'Plumber', 15000.00, 1, 22000.00, 28000.00, 'Chennai', 'Chennai', '2403290023', '42', '2', 'upload_files/candidate_tracker/95302632535_correct resume 1.docx', NULL, '1', '2024-03-29', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Over all 5yr exp,50/50', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 08:04:29', 112, '2024-04-06 06:17:52', 0, NULL, 1),
(18192, '', '0', '9080524633', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403290024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-29 09:00:25', 0, NULL, 0, NULL, 1),
(18193, 'Iliyas', '14', '9551880277', '', 'iliyasifadev@gmail.com', '1995-06-30', 28, '6', '2', 'Ismail', 'Car Driver', 30000.00, 1, 400000.00, 800000.00, '64/86, PARTHASARATHY STREET, CHENNAI - 21', 'Same as permanent address', '2403290025', '', '2', 'upload_files/candidate_tracker/92758296126_Iliyas_Flutter_Developer.pdf', NULL, '1', '2024-03-29', 7, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 09:12:45', 112, '2024-03-29 05:27:56', 0, NULL, 1),
(18194, '', '0', '7896848219', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403290026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-29 10:27:06', 0, NULL, 0, NULL, 1),
(18195, 'sURYA V', '6', '8925612256', '9080996796', 'Suryavenkat0706@gmail.com', '2000-06-07', 24, '2', '2', 'K.venkataswamy', 'Retired bank manager', 15000.00, 2, 0.00, 20000.00, 'Trichy', 'Vadapalani', '2403290027', '1', '1', 'upload_files/candidate_tracker/97372704270_CV202403211619371.pdf', NULL, '1', '2025-05-19', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2024-03-29 10:32:09', 154, '2025-05-19 04:50:50', 0, NULL, 1),
(18196, 'A Tina neslien', '6', '9789890572', '6383563162', 'tinudoll13@gmail.com', '1996-11-13', 27, '2', '2', 'Mother:Lilly Therasa', 'House wife', 50000.00, 2, 25000.00, 32000.00, 'Chennai', 'Chennai', '2403290028', '30', '2', 'upload_files/candidate_tracker/59365930692_tina resume_1711525270255_Tina Neslien.pdf', NULL, '1', '2024-03-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'too high salary but not fitfor that', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-29 10:40:05', 112, '2024-03-29 04:20:15', 0, NULL, 1),
(18197, 'Mahalakshmi', '6', '9790873439', '', 'mahabujji03@gmail.com', '2002-01-03', 22, '2', '2', 'Nithiyakalyani', 'House wife', 20000.00, 1, 20000.00, 25000.00, 'No.5 kasipuram B Block Royapuram Chennai -13', 'No.5 Kasipuram B Block Royapuram Chennai -13', '2403290029', '1', '2', 'upload_files/candidate_tracker/1619732022_MAHALAKSHMI Resume-1.pdf', NULL, '1', '2024-04-01', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-03-29 11:07:47', 112, '2024-04-01 03:50:41', 0, NULL, 1),
(18198, 'Lavanya C', '6', '9912214810', '', 'clavanya243@gmail.com', '2001-09-06', 22, '2', '2', 'N Chandra sekar', 'Driver', 15000.00, 1, 0.00, 15000.00, '37/16 Gandhipuram 3rd St Tnagar Kannammapet Ch-17', '37/16 Gandhipuram 3rd St Tnagar Kannammapet Ch-17', '2403300001', '42', '1', 'upload_files/candidate_tracker/83536653263_My Resume New(1).pdf', NULL, '1', '2024-03-30', 0, '', '1', '52', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-30 04:41:59', 112, '2024-04-06 06:18:25', 0, NULL, 1),
(18199, '', '0', '8939540661', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403300002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-30 05:23:24', 0, NULL, 0, NULL, 1),
(18200, 'Siva shankar J', '5', '8707076427', '', 'sivashankar.j12@gmail.com', '2002-03-12', 22, '2', '2', 'Jugal kishore', 'Business man', 15000.00, 1, 30000.00, 35000.00, 'Chennai', 'Chennai', '2403300003', '1', '2', 'upload_files/candidate_tracker/70981955278_Sivashanka J.pdf', NULL, '1', '2024-03-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable for our roles not open to work in Target Will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-30 05:26:26', 112, '2024-03-30 02:47:20', 0, NULL, 1),
(18201, 'Yuvaraj', '5', '9843440453', '', 'yuvaraje239@gmail.com', '2000-07-13', 23, '2', '2', 'Elango', 'Farmer', 30000.00, 1, 0.00, 15000.00, 'Krishnagiri', 'Chennai', '2403300004', '1', '1', 'upload_files/candidate_tracker/80548395478_Yuvaraj', NULL, '1', '2024-03-30', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is not suitable for sales xxamp Voice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-30 05:26:37', 112, '2024-03-30 12:00:08', 0, NULL, 1),
(18202, 'Hari priya', '5', '7397244338', '9677277840', 'priyahp0627@gmail.com', '1998-06-27', 25, '2', '1', 'Ramesh Kumar', 'Transport', 400000.00, 1, 0.00, 20000.00, 'No :73/32 1st Street sasthiri nagar tondairpet', 'Sasthiri nagar tondairpet', '2403300005', '1', '1', 'upload_files/candidate_tracker/32334015133_msword&rendition=1.docx', NULL, '1', '2024-03-30', 0, '', '3', '59', '2024-04-08', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Charles Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-03-30 05:31:43', 60, '2024-04-05 03:48:46', 0, NULL, 1),
(18203, 'Ragul Raj', '6', '9043197001', '6380361885', 'ragul04092000@gmail.com', '2000-09-04', 23, '2', '2', 'Lakshmanan', 'Farmer', 20000.00, 1, 19000.00, 25000.00, 'Salem', 'Chennai', '2403300006', '42', '2', 'upload_files/candidate_tracker/30292999279_(3) RAGUL RAJ LAKSHMANAN RESUME.pdf', NULL, '1', '2024-03-30', 6, '', '1', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-30 05:42:39', 112, '2024-04-06 06:18:30', 0, NULL, 1),
(18204, 'Mohamed Imran', '6', '7904431412', '', 'mi3040728@gmail.com', '2000-12-12', 23, '2', '2', 'Mumtaj', 'Teacher', 40000.00, 0, 0.00, 20000.00, 'Erode', 'Chennai', '2403300007', '1', '1', 'upload_files/candidate_tracker/58657030341_Mohd Imran Resume.pdf', NULL, '1', '2024-03-30', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok can be trained in our MF Roles if he comes back for next round will check', '5', '1', '', '1', '8', '', '2', '2024-04-02', '2', '3', '', '', 'H1018', '', NULL, NULL, NULL, 1, '2024-03-30 07:26:30', 112, '2024-03-30 05:55:41', 0, NULL, 1),
(18205, '', '0', '7358750016', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403300008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-30 07:31:57', 0, NULL, 0, NULL, 1),
(18206, 'gowsalya m', '6', '7034244634', '', 'mgowsalya34@gmail.com', '1999-12-10', 24, '2', '2', 'murugaiah b', 'buisness', 35000.00, 2, 0.00, 15000.00, 'munnar', 'kodambakkam', '2403300009', '36', '1', 'upload_files/candidate_tracker/36127862986_Gowsalya(Resume).pdf', NULL, '1', '2024-03-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-30 09:05:04', 112, '2024-03-30 03:46:29', 0, NULL, 1),
(18207, 'Gautem', '6', '9003482895', '9840166950', 'gautemcv55@gmail.com', '1996-11-05', 27, '2', '2', 'T. J. Viswanathan', 'Textile Engineer', 65000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2403300010', '36', '1', 'upload_files/candidate_tracker/28486182394_CVG Resume-V06.pdf', NULL, '1', '2024-03-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication very low will not sustain and handle our work roles also he is full of IT Team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-30 09:21:13', 112, '2024-03-30 03:10:11', 0, NULL, 1),
(18208, '', '0', '7010649498', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2403300011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-03-30 10:07:43', 0, NULL, 0, NULL, 1),
(18209, 'dhayakumar r', '6', '7010629498', '', 'udhayakumarkumar7066@gmail.com', '1995-05-29', 28, '2', '2', 'rajandharan', 'salesman', 25000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2403300012', '36', '2', 'upload_files/candidate_tracker/91857594920_udhaya.docx', NULL, '1', '2024-03-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Having hearning issue will not handle our calling Activities not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-03-30 10:54:22', 1, '2024-03-30 11:02:23', 0, NULL, 1),
(18210, 'Arun', '4', '7358724499', '', 'Arunjaspher0@gmail.com', '2000-08-18', 23, '3', '2', 'Anbu', 'Home', 20000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2403300013', '', '1', 'upload_files/candidate_tracker/38595864917_Arun Jaspher-1.docx', NULL, '3', '2024-04-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-30 03:38:38', 112, '2024-04-01 06:58:34', 0, NULL, 1),
(18211, 'Derrick Jayasekar', '14', '8438884430', '', 'derryjey79@gmail.com', '1996-11-10', 27, '3', '2', 'Lawerence Rajasekar. K', 'Business (Provision Store)', 100000.00, 1, 528000.00, 900000.00, 'Chennai', 'Chennai', '2403310001', '', '2', 'upload_files/candidate_tracker/96901372227_Derrick_Resume_2024-01-16.pdf', NULL, '1', '2024-04-01', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-03-31 06:14:37', 112, '2024-04-01 04:04:33', 0, NULL, 1),
(18212, 'bharath k', '6', '9789913648', '9791113392', 'bharathk0125@gmail.com', '2000-03-01', 24, '2', '2', 'vijayalakshmi', 'mother', 60000.00, 1, 0.00, 16000.00, 'chennai', 'kodambakkam', '2404010001', '45', '1', 'upload_files/candidate_tracker/36764567929_CV_2023042310065232 2.pdf', NULL, '1', '2024-04-01', 0, '', '3', '59', '2024-04-03', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 04:31:07', 112, '2024-05-04 05:16:08', 0, NULL, 1),
(18213, 'mohamed abiwakkas', '14', '6379322323', '', 'developerwakkas@gmail.com', '2000-05-29', 23, '3', '2', 'mohamed faiz', 'business', 180000.00, 4, 200000.00, 500000.00, 'chennai purshawalkkam', 'chennai purshawalkkam', '2404010002', '', '2', 'upload_files/candidate_tracker/57532633331_Wakkas resume.pdf', NULL, '1', '2024-04-01', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 04:39:30', 112, '2024-04-01 03:41:08', 0, NULL, 1),
(18214, 'Sargunam R', '4', '9360444581', '9751580568', 'rajsargunan213@gmail.com', '2000-07-21', 23, '2', '2', 'Rengaraj', 'Water cane shop', 50000.00, 1, 17000.00, 15000.00, 'South Street karukkadipatti Orathanadu thanjavur', 'Orathanadu thanjavur', '2404010003', '1', '2', 'upload_files/candidate_tracker/22456122828_Resume_Sargunam CV.pdf', NULL, '1', '2024-04-01', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is ok with the profile, completed bca in coimbatore...after 2 month worked as a telecaller, and going to dubai..after 6 month came to india due to emergency father facing accident and doing photography in part time, mother also health issue...last 8 months worked in a matrimony and releived....last salary 17k ....father water cane business....brother in abroad.....travel time 30km have bike...ready to arrange laptop...kindly check once', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-01 04:39:37', 108, '2024-04-01 06:16:33', 0, NULL, 1),
(18215, 'Preethi', '6', '8925483436', '8220272435', 'lordjesuspreethi443@gmail.com', '1999-06-24', 24, '2', '2', 'Prasad', 'Hospitality', 70000.00, 1, 2.50, 4.50, 'CHENNAI', 'CHENNAI', '2404010004', '29', '2', 'upload_files/candidate_tracker/38324008041_Preethi Business Advisor .pdf', NULL, '1', '2024-04-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 04:43:15', 112, '2024-04-01 06:20:54', 0, NULL, 1),
(18216, 'Harikrishnan R', '6', '9176616759', '', 'harismart118@gmail.com', '1999-02-26', 25, '2', '2', 'Rajendran C', 'Daily worker', 30000.00, 1, 3.00, 4.00, 'chennai', 'chennai', '2404010005', '42', '2', 'upload_files/candidate_tracker/68412068887_HARI.RESUME.pdf', NULL, '1', '2024-04-01', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 04:49:49', 112, '2024-04-06 06:19:12', 0, NULL, 1),
(18217, 'Avinesh S', '6', '7305513405', '9791022506', 'aviatoravinesh@gmail.com', '2003-08-21', 20, '2', '2', 'Selvam K', 'Chennai', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2404010006', '36', '1', 'upload_files/candidate_tracker/12385337509_DocScanner 06-Mar-2024 4-51 pm.pdf', NULL, '1', '2024-04-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 04:57:45', 112, '2024-04-01 11:19:47', 0, NULL, 1),
(18218, 'Chethan .B', '5', '9742474255', '8095626816', 'virajraccha239@gmail.com', '2000-03-09', 24, '2', '2', 'Paranjyothi', 'Marketing executive', 45000.00, 1, 24000.00, 35000.00, 'Bengaluru', 'Bengaluru', '2404010007', '39', '2', 'upload_files/candidate_tracker/45462371873_chethan .B.pdf', NULL, '1', '2024-04-01', 0, '', '3', '59', '2024-04-16', 360000.00, '', '3', '2024-08-01', '1', 'Selected for Sathish Team in Bangalore Relationship Manager Role Need to analyse the candidate in 7 days', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-04-01 05:03:45', 126, '2024-08-01 01:33:29', 0, NULL, 1),
(18219, 'Vijay. S', '4', '6382435046', '', 'vijaymathan866@gmail.com', '2002-01-21', 22, '2', '2', 'Senthil kumar. A', 'UBI appraiser', 30000.00, 1, 0.00, 18000.00, '66, ALAMATHIKKADU, pattukkottai, Thanjavur 614723', '56/7, kk nagar, peravurani, Thanjavur 614804', '2404010008', '1', '1', 'upload_files/candidate_tracker/51632572401_CV_2024032917103721.pdf', NULL, '1', '2024-04-01', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1020', '', NULL, NULL, NULL, 1, '2024-04-01 05:05:24', 108, '2024-04-01 06:14:33', 0, NULL, 1),
(18220, 'SILAMBARASAN R', '4', '6379440417', '9786675388', 'shivansimbu001@gmail.com', '2000-06-10', 23, '2', '2', 'Rajarethinam', 'Farmer', 15000.00, 3, 0.00, 12000.00, 'Thiruppalanam', 'Thiruvaiyaru', '2404010009', '1', '1', 'upload_files/candidate_tracker/64374971999_silambarasan R.pdf..pdf', NULL, '3', '2024-04-01', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-01 05:12:25', 108, '2024-04-01 06:15:46', 0, NULL, 1),
(18221, 'LOGESH A', '6', '7397271965', '7299314998', 'alogesh084@gmail.com', '2000-05-04', 23, '3', '2', 'Nagammal', 'House keeping', 30000.00, 1, 17000.00, 22000.00, 'Tondiarpet Chennai', 'Tondiarpet Chennai', '2404010010', '', '2', 'upload_files/candidate_tracker/57741477617_Legesh Ai Resume 2 Pages 1.pdf', NULL, '1', '2024-04-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 05:37:22', 112, '2024-04-01 06:27:58', 0, NULL, 1),
(18222, 'Prasanthkumar S', '14', '8056018621', '', 'mailtoprasanth17@gmail.com', '2001-03-17', 23, '3', '2', 'Seenivasan P', 'Driver', 17000.00, 0, 485000.00, 750000.00, 'Chennai', 'Chennai', '2404010011', '', '2', 'upload_files/candidate_tracker/29709686436_Resume_Prasanth-1.pdf', NULL, '1', '2024-04-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 06:30:03', 112, '2024-04-02 05:31:20', 0, NULL, 1),
(18223, 'Swaminathan K', '5', '9176790259', '', 'swaminathan848@gmail.com', '1995-07-18', 28, '2', '1', 'Kumaravel', 'Business', 25000.00, 2, 300000.00, 360000.00, 'Chennai', 'Manali Chennai', '2404010012', '1', '2', 'upload_files/candidate_tracker/58858824122_Swaminathan Resume.pdf', NULL, '1', '2024-04-01', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1020', '0', NULL, NULL, NULL, 1, '2024-04-01 07:46:27', 1, '2024-04-01 07:52:46', 0, NULL, 1),
(18224, 'Jebastin Samuel', '6', '7010201130', '9487773968', 'jebastin20051994@gmail.com', '1994-05-20', 29, '2', '1', 'Monika', 'Business', 75000.00, 2, 35000.00, 40000.00, 'Thoothukudi', 'Tiruvottiyur', '2404010013', '42', '2', 'upload_files/candidate_tracker/34920365220_Jebastin_Resume.pdf', NULL, '1', '2024-04-01', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 07:48:21', 112, '2024-04-06 06:19:19', 0, NULL, 1),
(18225, 'D.prashanth', '6', '6379600590', '9363217861', 'dprashanth531@gmail.com', '2003-05-08', 20, '2', '2', 'D.Dinakaran', 'Security guard', 15000.00, 1, 0.00, 16000.00, 'No:16, Madurai Street, Ayanavaram Chennai 23', 'Ayanavaram Chennai', '2404010014', '35', '1', 'upload_files/candidate_tracker/31938908826_prashanth resume 2024 (1).pdf', NULL, '1', '2024-04-01', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability Concern', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 07:49:00', 112, '2024-04-01 03:47:57', 0, NULL, 1),
(18226, 'sridhar', '14', '7305593713', '7598980031', 'santhoshsri9947@gmail.com', '2001-10-02', 22, '6', '2', 'muthukumar', 'garments employee', 30000.00, 1, 0.00, 20000.00, 'tirupur', 'chennai', '2404010015', '', '1', 'upload_files/candidate_tracker/7276406855_sridhar Resume.pdf', NULL, '1', '2024-04-01', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 07:52:31', 112, '2024-04-01 03:45:23', 0, NULL, 1),
(18227, '', '0', '6370600590', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404010016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-01 08:30:01', 0, NULL, 0, NULL, 1),
(18228, 'D.priya', '6', '9363217861', '6379600590', 'dnancypriya@gmail.com', '2000-07-17', 23, '2', '2', 'D.Dinakaran', 'Security guard', 15000.00, 1, 15000.00, 17000.00, 'No:16,Madurai Street, Ayanavaram Chennai 23', 'Ayanavaram Chennai', '2404010017', '35', '2', 'upload_files/candidate_tracker/24901087186_priya resume 2024.pdf', NULL, '1', '2024-04-01', 1, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Not suit fr telecalling', '5', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-01 08:32:20', 1, '2024-04-01 12:13:34', 0, NULL, 1),
(18229, 'Pavan Kumar Reddy Juturu', '4', '9652579514', '', 'jpavan7645@gmail.com', '2000-10-24', 23, '3', '2', 'Kula Sekhar Reddy', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Bangalore', 'Bangalore', '2404010018', '', '1', 'upload_files/candidate_tracker/98044753815_Resume D (1) (1).pdf', NULL, '1', '2024-04-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 10:18:46', 112, '2024-04-01 06:28:18', 0, NULL, 1),
(18230, '', '0', '9663217861', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404010019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-01 12:31:04', 0, NULL, 0, NULL, 1),
(18231, 'Amara Vamsi Krishna', '13', '8919081473', '', 'vamseekrishna6877@gmail.com', '1996-08-08', 27, '2', '2', 'Janardhan rao', 'Teacher', 20000.00, 1, 0.00, 3.50, 'Banglore', 'Nellore Andhra Pradesh', '2404010020', '38', '1', 'upload_files/candidate_tracker/10194060427_vamsi Krishna resume fresher.pdf', NULL, '2', '2024-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-01 12:37:22', 1, '2024-04-01 12:43:58', 0, NULL, 1),
(18232, 'Ranjithkumar A', '6', '7092235025', '8056680478', 'rranjith0307@gmail.com', '1998-07-03', 25, '2', '1', 'Archana', 'Medical billing', 25000.00, 1, 0.00, 17000.00, 'Medavakkam', 'Medavakkam', '2404010021', '29', '2', 'upload_files/candidate_tracker/25364863197_Ranjith kumar.pdf', NULL, '1', '2024-04-02', 0, '', '3', '59', '2024-04-08', 198000.00, '', '5', '1970-01-01', '1', 'Selected for Banu Team Relationship Executive Role Need to analyse in 7 days and confirm too long distance sustainability Doubts a lot', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 12:37:33', 60, '2024-04-06 06:18:51', 0, NULL, 1),
(18233, 'Vijayalakshmi Srinivasan', '6', '8939559813', '', 'vijisrinivasan26@gmail.com', '2001-05-26', 22, '2', '2', 'Srinivasan G', 'Office assistant', 100000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2404010022', '39', '1', 'upload_files/candidate_tracker/82972050093_Vijayalakshmi Official CV.pdf', NULL, '1', '2024-04-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our sales roles looking much of HR roles only will not sustain and handle our sales roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-01 01:10:28', 112, '2024-04-02 05:33:18', 0, NULL, 1),
(18234, 'Jagan G', '6', '6380298103', '', 'mailtojagan09@gmail.com', '2000-09-09', 23, '2', '2', 'Gopi P', 'Business', 22000.00, 1, 15500.00, 18000.00, 'Veppampattu', 'Veppampattu', '2404010023', '1', '2', 'upload_files/candidate_tracker/24626258476_JAGAN G 1.pdf', NULL, '1', '2024-04-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-01 01:26:25', 104, '2024-04-03 01:24:20', 0, NULL, 1),
(18235, '', '0', '9176919053', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404010024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-01 01:43:55', 0, NULL, 0, NULL, 1),
(18236, 'Ateeq A', '5', '7337871079', '', 'ateeqa6624@gmail.com', '1999-02-03', 25, '2', '1', 'Anwar k m', 'Fish merchant', 30000.00, 4, 0.00, 22000.00, 'Btm layout', 'Btm layout', '2404010025', '1', '1', 'upload_files/candidate_tracker/66211839206_Ateeq Resume.pdf', NULL, '1', '2024-04-02', 0, '', '3', '59', '2024-04-16', 285696.00, '', '3', '2024-06-04', '1', 'Selected for RElationship Manager Role Need to Analyse in 7 days Good Candidate Communication Ok can be trained in our roles', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-04-01 03:51:46', 60, '2024-04-22 11:52:28', 0, NULL, 1),
(18237, 'Diwakar.F', '6', '9360769979', '7358647629', 'diwakartyzen4@gmail.com', '2003-06-12', 20, '2', '2', 'Josphin', 'Xerox shop', 10000.00, 2, 0.00, 16000.00, 'No-x-4, thousand lights Chennai 600006.', 'Thousand lights Chennai', '2404020001', '45', '1', 'upload_files/candidate_tracker/40921176617_Diwakar Resume 2023.doc', NULL, '1', '2024-04-02', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He Is Capable Of Convincing People, Yet He Has A Slight Fear Of Closing Sales. Need To Double-Check. Please Confirm The Salary And DOJ If He Is Okay With Sales.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 04:14:18', 112, '2024-04-02 04:04:58', 0, NULL, 1),
(18238, 'Indumathi T', '6', '9360626542', '8608446279', 'induagri1999@gmail.com', '1999-06-08', 24, '2', '1', 'Anbumurugan T', 'B.Sc (agri)', 40000.00, 2, 0.00, 20000.00, 'Vizhupuram', 'Pudhupettai', '2404020002', '42', '1', 'upload_files/candidate_tracker/45403631698_Adobe Scan 19 Jan 2024 (1).pdf', NULL, '1', '2024-04-02', 0, '', '3', '59', '2024-04-08', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Banu DM Team Relationship Executive Can give a try in 7 days and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 04:22:14', 60, '2024-04-06 06:02:17', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18239, '', '0', '7604839747', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404020003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-02 04:24:37', 0, NULL, 0, NULL, 1),
(18240, 'Saranya Tummalacheruvu', '6', '8925130759', '6302944282', 'saranya441t@gmail.com', '2001-04-04', 22, '2', '2', 'Venkatestarlu Tummalacheruvu', 'Student', 25000.00, 0, 0.00, 14000.00, 'Sattenapalli, AndhraPradesh', 'Villivakkam chennai', '2404020004', '46', '1', 'upload_files/candidate_tracker/8725234700_Saranya-Tummalacheruvu (1).pdf', NULL, '1', '2024-04-02', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is not fluent in Tamil, and she is also planned for IT.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 04:58:29', 112, '2024-04-02 05:29:34', 0, NULL, 1),
(18241, 'Rajesh G', '11', '7010822393', '7010822394', 'rajeshari273@gmail.com', '2000-01-27', 24, '1', '2', 'Subbu Lakshmi', 'Home maker', 30000.00, 1, 17000.00, 25000.00, 'Chennai', 'Chennai', '2404020005', '', '2', 'upload_files/candidate_tracker/11447324199_Rajesh gg.pdf', NULL, '1', '2024-04-02', 30, '55555', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 05:06:43', 112, '2024-04-02 04:14:02', 0, NULL, 1),
(18242, 'V Varsha', '6', '9345534472', '8807176205', 'varshasunithavs@gmail.com', '2003-06-28', 20, '2', '2', 'E. Vinoth Rao', 'DME', 40000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2404020006', '45', '1', 'upload_files/candidate_tracker/71857494181_Varsha V.pdf', NULL, '1', '2024-04-02', 0, '', '3', '59', '2024-04-08', 164400.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team Relationship Executive Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 05:07:18', 60, '2024-04-06 06:00:00', 0, NULL, 1),
(18243, 'Kanimozhi', '6', '9655630747', '9095911485', 'vkanisabari@gmail.com', '2003-04-28', 22, '1', '2', 'Velayutham_Lakshmi', 'Farmer', 72000.00, 4, 12000.00, 20000.00, 'Viruthachalam', 'Chennai', '2404020007', '', '2', 'upload_files/candidate_tracker/36030499943_KanimozhiresumePDF.pdf', NULL, '1', '2025-09-08', 3, 'P1287', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-04-02 05:07:40', 154, '2025-09-08 11:39:57', 0, NULL, 1),
(18244, 'Sanjith Narayanan B', '25', '6382397107', '8220240887', 'sanjithn13@gmail.com', '2000-09-13', 0, '2', '2', 'Rajalakshmi V', 'Housewife', 40000.00, 0, 30000.00, 42000.00, 'Salem', 'Bangalore', '2404020008', '39', '2', 'upload_files/candidate_tracker/1672972101_IMG-20240401-WA0127 (1) (1).pdf', NULL, '1', '2024-04-02', 7, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '8', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 05:14:11', 112, '2024-04-02 04:13:40', 0, NULL, 1),
(18245, 'Nagesh', '5', '7338185953', '', 'nagesh123poojari@gmail.com', '2000-03-03', 24, '2', '2', 'Mukundappa', 'B', 15000.00, 2, 0.00, 30000.00, 'Rajolla k TQ Sedam district kalaburagi', 'Banashankari Bangluru', '2404020009', '39', '2', 'upload_files/candidate_tracker/69590215782_DOC-20240219-WA0024._1.pdf', NULL, '1', '2024-04-02', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-02 05:14:50', 1, '2024-04-02 05:44:01', 0, NULL, 1),
(18246, 'Nithyatharun S', '4', '7871149970', '6383465415', 'nithyatharun1999@gmail.com', '1999-05-05', 24, '2', '2', 'Senthilkumar (Father)', 'Bank manager', 50000.00, 1, 15000.00, 16000.00, 'Thanjavur', 'Thanjavur', '2404020010', '44', '2', 'upload_files/candidate_tracker/23305883505_THARUN RESUME (1) (2).pdf', NULL, '1', '2024-04-02', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 05:21:41', 108, '2024-04-04 11:43:21', 0, NULL, 1),
(18247, 'Vijayalakshmi haribabu', '6', '9600039770', '', 'vijihari0313@gmail.com', '1995-04-03', 28, '2', '1', 'Haribabu.c', 'GRT E-commerce manager', 30000.00, 3, 20000.00, 23000.00, 'Velachery', 'Velachery', '2404020011', '42', '2', 'upload_files/candidate_tracker/87310128888_RESUME.pdf', NULL, '1', '2024-04-02', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 05:29:10', 112, '2024-04-06 06:20:06', 0, NULL, 1),
(18248, 'amit kumar Singh', '4', '7007699926', '', 'amitsingh240854@gmail.com', '1996-09-15', 27, '2', '2', 'suresh kumar Singh', 'farmer', 30000.00, 2, 29533.00, 35000.00, 'civil lines buxar', 'hosa road', '2404020012', '39', '2', 'upload_files/candidate_tracker/95792718881_Amit singh Resume.pdf', NULL, '1', '2024-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-02 05:36:36', 1, '2024-04-02 05:42:46', 0, NULL, 1),
(18249, 'K.DHINESH', '9', '9361481325', '8015917635', 'ddhinesh268@gmail.com', '2004-04-08', 19, '2', '1', 'Aarthi', 'Diploma', 18000.00, 1, 18000.00, 22000.00, 'Ennore', 'Ennore', '2404020013', '35', '2', 'upload_files/candidate_tracker/36779305924_Dhinesh.pdf', NULL, '1', '2024-04-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Performance is Low', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 05:46:37', 112, '2024-04-02 04:09:36', 0, NULL, 1),
(18250, '', '0', '9952360177', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404020014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-02 06:00:43', 0, NULL, 0, NULL, 1),
(18251, 'geethanjali', '6', '7395923124', '9600025549', 'divyageetha317@gmail.com', '1996-07-31', 27, '2', '2', 'k.r vikky', 'business', 20000.00, 1, 0.00, 16000.00, 'henn', 'velachery', '2404020015', '42', '2', 'upload_files/candidate_tracker/10224126585_Docgeetha 20-Mar-2024 08-33 PM.pdf', NULL, '1', '2024-04-02', 0, '', '3', '59', '2024-04-08', 168000.00, '', '5', '1970-01-01', '2', 'selected for Banu Team Relationship Executive', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 06:13:59', 60, '2024-04-06 06:14:37', 0, NULL, 1),
(18252, 'shahul hameed e', '14', '9384646344', '', 'shahulhameed9941@gmail.com', '2000-11-24', 23, '3', '2', 'emam ali a', 'building contractor', 30000.00, 1, 324000.00, 480000.00, 'chennai', 'chennai', '2404020016', '', '2', 'upload_files/candidate_tracker/98470146521_Shahul Hameed - Mobile App Developer.pdf', NULL, '1', '2024-04-03', 15, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 06:17:10', 130, '2024-05-02 10:42:01', 0, NULL, 1),
(18253, 'Sowndhar S', '14', '9360663735', '', 'sowndharselvam07@gmail.com', '2002-06-08', 21, '6', '2', 'Selvam A', 'Power Loom', 16000.00, 1, 300000.00, 450000.00, 'Erode', 'Kandhanchavdi, Chennai', '2404020017', '', '2', 'upload_files/candidate_tracker/29300822892_Sowndhar Resume.pdf', NULL, '1', '2024-04-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SECOND ROUND', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 06:19:24', 130, '2024-05-16 04:25:43', 0, NULL, 1),
(18254, 'peer mohideen ibrahim sha', '6', '7338942887', '', 'peermohideen143@gmail.com', '2001-07-08', 22, '2', '1', 'syed mohammed', 'accoun', 20000.00, 2, 21300.00, 31000.00, 'parrys chennai', 'mannady chennai', '2404020018', '1', '2', 'upload_files/candidate_tracker/42997879014_PDF document 5.pdf', NULL, '1', '2024-04-25', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-02 06:24:40', 112, '2024-04-25 02:58:50', 0, NULL, 1),
(18255, 'Danush S', '14', '9751688799', '', 'danush11222001@gmail.com', '2001-12-12', 22, '3', '2', 'Sumathi', 'Accountant', 16000.00, 1, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2404020019', '', '1', 'upload_files/candidate_tracker/9072276606_Danush-S Resume.pdf', NULL, '1', '2024-04-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 06:28:31', 130, '2024-04-09 03:29:42', 0, NULL, 1),
(18256, 'Shalini Shukla', '5', '9235509172', '', 'mishrashalini0404@gmail.com', '2000-04-04', 23, '2', '1', 'Vipin mishra', 'Engineer', 20000.00, 3, 17500.00, 25000.00, 'Bharuhi bharari meja prayagraj', 'Bommasandra', '2404020020', '39', '2', 'upload_files/candidate_tracker/73192143046_SHALINI CV.doc', NULL, '1', '2024-04-02', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and no knowledge about sales', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 06:31:13', 126, '2024-04-04 01:26:39', 0, NULL, 1),
(18257, '', '0', '9677161752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404020021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-02 07:45:39', 0, NULL, 0, NULL, 1),
(18258, 'Nithya T', '6', '7810080705', '9626892131', 'thangavelnithu123@gmail.com', '2000-07-12', 23, '2', '2', 'Thangavel R', 'Farmer', 10000.00, 3, 22000.00, 23000.00, 'Karur', 'Chennai', '2404020022', '45', '2', 'upload_files/candidate_tracker/14328981022_Nithya T - Resume.pdf', NULL, '1', '2024-04-02', 30, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected. Pls cnfrm the salary and DOJ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 07:47:40', 112, '2024-04-02 04:05:45', 0, NULL, 1),
(18259, 'Monisha M', '5', '9445528377', '', 'monisha14072k2@gmai.com', '2002-07-14', 21, '2', '2', 'Mathiyazhagan s', 'Welding shop', 72000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2404020023', '39', '1', 'upload_files/candidate_tracker/76901762711_Monisha M cv .pdf', NULL, '1', '2024-04-02', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 08:10:20', 112, '2024-04-02 04:05:19', 0, NULL, 1),
(18260, 'pradeep r', '5', '9632036564', '', 'pradeep564@gmail.com', '1989-08-20', 34, '2', '2', 'raghavendra', 'pvt', 12.00, 1, 2.90, 3.70, 'bangalore', 'electronic city', '2404020024', '1', '2', 'upload_files/candidate_tracker/52126358507_Pradeep Resume 2023-1 (1) doc.docx', NULL, '1', '2024-04-06', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'confirm joining and ctc', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-04-02 09:30:52', 108, '2024-04-10 05:05:12', 0, NULL, 1),
(18261, '', '0', '9659223809', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404020025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-02 10:14:02', 0, NULL, 0, NULL, 1),
(18262, 'aravinthan p', '11', '6369902645', '', 'aravindhan1024edision@gmail.com', '2000-12-10', 23, '3', '2', 'perumal', 'farmer', 7000.00, 2, 0.00, 18000.00, 'chengalpet', 'chennai', '2404020026', '', '1', 'upload_files/candidate_tracker/70499649540_Aravindh.Pdf', NULL, '1', '2024-04-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles will not sustain and no communication', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 11:13:51', 112, '2024-04-02 05:35:11', 0, NULL, 1),
(18263, 'Asha .P', '6', '9150995042', '', 'ashamangamma01@gmail.com', '2001-03-01', 23, '2', '2', 'Mangamma .P', 'KMC HOSPITAL', 120000.00, 1, 0.00, 17000.00, 'ICF', 'ICF', '2404020027', '29', '1', 'upload_files/candidate_tracker/89100544811_ASHA RESUME.pdf', NULL, '1', '2024-04-03', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-02 01:27:02', 112, '2024-04-03 06:19:49', 0, NULL, 1),
(18264, 'Dhakshan Kumar', '6', '8637607428', '9176406763', 'rak2001shan@gmail.com', '2001-07-11', 22, '2', '2', 'Kala selvi', 'Ni', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2404020028', '1', '1', 'upload_files/candidate_tracker/98771741151_Dhak kumar.pdf', NULL, '1', '2024-04-22', 0, '', '3', '59', '2024-04-24', 216000.00, '', '5', '1970-01-01', '1', 'selected for Charles Team need to analyse in 7 days the previous exp is not get matched with the exp mentioned in the resume', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-02 01:31:51', 60, '2024-04-23 05:47:16', 0, NULL, 1),
(18265, 'Geethanjali prakash', '4', '8189904561', '', 'geethanjalkprakaah0728@gmail.com', '2000-07-28', 23, '6', '2', 'M. Prakash', '298000', 24000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2404020029', '', '2', 'upload_files/candidate_tracker/64346472858_GEETHA RESUME-1.pdf', NULL, '1', '2024-04-06', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-02 02:26:30', 1, '2024-04-02 02:30:54', 0, NULL, 1),
(18266, 'Bhavani .V', '6', '7358255292', '', 'bhavanivargeesh11@gmail.com', '2002-07-11', 21, '2', '2', 'Venu Gopal .A', 'Car driver', 110000.00, 1, 0.00, 17000.00, 'Villivaakkam', 'Villivaakkam', '2404030001', '29', '1', 'upload_files/candidate_tracker/39340588807_BHAVANI RESUME NEW.pdf', NULL, '1', '2024-04-03', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-03 03:45:00', 112, '2024-04-03 06:22:56', 0, NULL, 1),
(18267, 'N.Boopathi rajan', '6', '9626801137', '9363393694', 'boopathirajann2k3@gmail.com', '2003-07-07', 20, '2', '2', 'L.Navaneetha Krishnan', 'Business', 50000.00, 1, 0.00, 20.00, 'Kamuthi, Ramanathapuram district', 'Chennai', '2404030002', '29', '1', 'upload_files/candidate_tracker/11876010503_Document from Raja ??.pdf', NULL, '1', '2024-04-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-03 04:26:32', 112, '2024-04-03 06:19:30', 0, NULL, 1),
(18268, '', '0', '9150565199', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404030003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-03 04:30:53', 0, NULL, 0, NULL, 1),
(18269, 'Vaishali sk', '6', '9342313995', '9444477886', 'vaishalikishorekumar@gmail.com', '2009-04-03', 0, '2', '1', 'Dinesh kumar M', 'Admin', 25000.00, 1, 20000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2404030004', '1', '2', 'upload_files/candidate_tracker/41541749693_Vaishali resume.pdf', NULL, '1', '2024-04-03', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication Is Good But Expected High Salary', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1025', '', NULL, NULL, NULL, 1, '2024-04-03 04:42:53', 112, '2024-04-03 10:35:00', 0, NULL, 1),
(18270, '', '0', '9080483479', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404030005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-03 04:44:31', 0, NULL, 0, NULL, 1),
(18271, 'P.Manikandan', '5', '9789838721', '', 'mmanikandan93860@gmail.com', '2009-04-03', 0, '2', '2', 'Padma', '1.5', 15000.00, 2, 15000.00, 16000.00, 'Chennai', 'Nandanam Chennai', '2404030006', '1', '2', 'upload_files/candidate_tracker/44842632375_MANIKANDAN (1).doc', NULL, '1', '2024-04-03', 30, '', '1', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-04-03 04:51:11', 112, '2024-04-03 06:35:43', 0, NULL, 1),
(18272, 'Naresh kumar', '11', '9345881684', '', 'arunsmart847@gmail.com', '1999-01-13', 25, '2', '2', 'Amutha', 'House wife', 20000.00, 0, 15000.00, 16000.00, 'No 30/c 11th Street MGR Nagar 600042', 'Velachery', '2404030007', '44', '2', 'upload_files/candidate_tracker/33331613465_Resume Naresh (1) (1).docx', NULL, '1', '2024-04-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-03 05:27:00', 112, '2024-04-03 06:19:10', 0, NULL, 1),
(18273, 'Swetha M', '5', '9841453515', '8438298414', 'swethalaksh123@gmail.com', '2002-09-28', 21, '1', '2', 'Lakshmi', 'Working', 30000.00, 0, 15000.00, 25000.00, 'Chennai', 'Chennai', '2404030008', '', '2', 'upload_files/candidate_tracker/70639616012_Swetha(1).pdf', NULL, '3', '2024-04-03', 2, 'Zhrs0424001', '7', '59', NULL, 0.00, '', '0', NULL, '2', 'shortlist for team ', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-03 05:30:12', 1, '2024-04-03 05:42:36', 0, NULL, 1),
(18274, 'arunadevi', '6', '7639607478', '', 'arunadevikvpm@gmail.com', '2009-04-03', 0, '2', '1', 'aokotteswaran', 'business', 25000.00, 1, 15000.00, 25000.00, 'villupuram', 'villupuram', '2404030009', '42', '2', 'upload_files/candidate_tracker/39775894678_ARUNADEVI.pdf', NULL, '1', '2024-04-03', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she didnt know that came for sales profile earlier she worked with data entry.  just for the consultancy call she came for the interview', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-03 05:30:37', 112, '2024-04-03 06:21:17', 0, NULL, 1),
(18275, '', '0', '6289147399', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404030010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-03 05:53:42', 0, NULL, 0, NULL, 1),
(18276, 'Vignesh', '6', '8838521216', '', 'Vignesh.s4566@gmail.com', '2003-05-14', 20, '2', '2', 'devi', 'house wife', 45000.00, 2, 0.00, 17000.00, 'selvam nagar old katpadi vellor', 'chennai', '2404030011', '1', '1', 'upload_files/candidate_tracker/80598011612_VIGNESH 2.pdf', NULL, '1', '2024-04-03', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'distance issue i think he is not cont the job long', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-03 05:59:32', 104, '2024-04-03 01:25:24', 0, NULL, 1),
(18277, 'Saravanan T', '6', '6369941366', '9840405338', 'callmesaravanan4@gmail.com', '2000-01-26', 24, '2', '2', 'Jayanthi T', 'House wife', 30000.00, 1, 26000.00, 36000.00, 'Chennai', 'Chennai', '2404030012', '1', '2', 'upload_files/candidate_tracker/50013541215_Saravanan T Resume(update).pdf', NULL, '3', '2024-04-03', 4, '', '3', '59', '2024-04-10', 429996.00, '', '5', '1970-01-01', '1', 'Selected for Manikandan Team in Staff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-03 06:14:09', 60, '2024-04-10 10:04:01', 0, NULL, 1),
(18278, 'Subha suriyamoorthy', '6', '8056215601', '', 'subhasuriya20@gmail.com', '1997-08-19', 26, '2', '2', 'Suriyamoorthy', 'Fresher', 90000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2404030013', '29', '1', 'upload_files/candidate_tracker/17278565193_Subha S-1.pdf', NULL, '1', '2024-04-03', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication is Good , Bust She Expected high Salary Also Some Attitude', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-03 06:19:41', 112, '2024-04-03 06:29:06', 0, NULL, 1),
(18279, 'Sowmiya R', '6', '8608656778', '6380600138', 'Sowmiya13032001@gmail.com', '2001-03-13', 23, '2', '2', 'Thenmozhi', 'Cook', 17000.00, 0, 319000.00, 450000.00, 'Villupuram', 'Chennai', '2404030014', '42', '2', 'upload_files/candidate_tracker/45986066474_Resume_Sales Executive1_Format1.pdf', NULL, '1', '2024-04-03', 15, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not intrested in sales', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-03 06:21:15', 112, '2024-04-03 06:24:04', 0, NULL, 1),
(18280, 'BOOPATHI RAJAN N', '4', '9626801137', '', 'BOOPATHIRAJANN2K@GMAIL.COM', '2009-04-03', 0, '2', '2', 'l  navaneetha krishnan', 'business', 15000.00, 1, 0.00, 20000.00, 'ramanathapuram', 'chennai', '2404030015', '29', '1', 'upload_files/candidate_tracker/68794498268_Boopathi.pdf', NULL, '1', '2024-04-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '1', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 112, '2024-04-03 11:55:58', 112, '2024-04-03 12:32:29', 0, NULL, 1),
(18281, 'Brithivi Rajan Rajarajan', '4', '7395883213', '6381245622', 'brithivirajarajan@gmail.com', '1999-07-08', 24, '2', '2', 'Rajarajan s', 'Sub inspector of police', 800000.00, 2, 280000.00, 300000.00, 'Thanjavur', 'Thanjavur', '2404030016', '1', '2', 'upload_files/candidate_tracker/63422789869_Resume and cover letter 1.pdf', NULL, '1', '2024-04-03', 15, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1025', '', NULL, NULL, NULL, 1, '2024-04-03 06:38:23', 112, '2024-04-03 06:58:46', 0, NULL, 1),
(18282, 'Annapoorani', '6', '9150692790', '', 'annapooraniakila27@gmail.com', '2000-08-27', 23, '2', '1', 'Annamalai', 'Quality Analytical', 30000.00, 0, 26000.00, 26000.00, 'Ambatur', 'Ambatur', '2404030017', '1', '2', 'upload_files/candidate_tracker/40096537136_Resume-4.pdf', NULL, '1', '2024-04-03', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-03 07:21:06', 112, '2024-04-03 06:31:21', 0, NULL, 1),
(18283, 'THUFAIL AHAMED C', '6', '8489956159', '9361605575', 'thufailahamed29@gmail.com', '1997-11-29', 26, '2', '2', 'R.CHAN BASHA', 'Retired', 20000.00, 2, 20000.00, 30000.00, '202,Nethaji salai thiruvallur -602001', '202,Nethaji salai Thiruvallur -602001', '2404030018', '42', '2', 'upload_files/candidate_tracker/81884904323_Thufail resume-1.pdf', NULL, '1', '2024-04-03', 10, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sal exp high and distance too long', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-03 07:24:44', 112, '2024-04-03 06:18:25', 0, NULL, 1),
(18284, 'preethi arumugam', '6', '9360590925', '', 'preethiapreethia456@gmail.com', '2000-05-12', 23, '3', '2', 'arumugam', 'shop labour', 14000.00, 1, 0.00, 18000.00, 'pattabiram', 'pattabiram', '2404030019', '', '1', 'upload_files/candidate_tracker/93602233714_Preethi.pdf', NULL, '1', '2024-04-03', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-03 09:19:32', 112, '2024-04-03 06:30:03', 0, NULL, 1),
(18285, '', '0', '8870365212', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404030020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-03 10:49:18', 0, NULL, 0, NULL, 1),
(18286, 'Sridevi S', '6', '7892625968', '7349021750', 'devi1821992@gmail.com', '1991-02-18', 33, '2', '2', 'Sowmya', 'Travel Agency pvt Ltd', 25000.00, 7, 23000.00, 25000.00, 'Hiriur', 'adugodi', '2404030021', '37', '2', 'upload_files/candidate_tracker/57633517625_CVFORSRI12.pdf', NULL, '1', '2024-04-04', 0, '', '3', '59', '2024-04-19', 276000.00, '', '3', '2024-12-01', '2', 'Selected for Bangalore Relationship Executive Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-04-03 11:06:09', 126, '2024-08-06 12:56:46', 0, NULL, 1),
(18287, 'Subhash.a', '4', '9845464306', '7259171976', 'Subhashthalabathi8@gmail.com', '1999-10-03', 24, '2', '2', 'Kaliyamma', 'Housewife', 10000.00, 0, 0.00, 16000.00, 'Anandapuram', 'Chamrajpet', '2404030022', '38', '1', 'upload_files/candidate_tracker/44274746670_Adobe Scan 03-Apr-2024.pdf', NULL, '1', '2024-04-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-03 11:09:26', 1, '2024-04-03 01:37:21', 0, NULL, 1),
(18288, '', '0', '7359411669', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404030023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-03 11:17:43', 0, NULL, 0, NULL, 1),
(18289, 'Krishna', '9', '9095082083', '', 'krishnasb2905@gmail.com', '1999-05-29', 24, '6', '1', 'Babu', 'Business', 100000.00, 1, 16500.00, 24000.00, 'Srimushnam', 'Chennai', '2404030024', '', '2', 'upload_files/candidate_tracker/13113714657_krishna resume (2).pdf', NULL, '1', '2024-04-05', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-03 12:49:11', 1, '2024-04-03 01:06:20', 0, NULL, 1),
(18290, 'Somasundaram A', '29', '6380839329', '', 'stephensomu1204@gmail.com', '1994-04-12', 29, '3', '2', 'Alexander AS', 'Passed away', 25000.00, 3, 0.00, 32000.00, 'Tirupattur', 'Porur Chennai', '2404030025', '', '2', 'upload_files/candidate_tracker/67885407587_DOC-20240303-WA0031..pdf', NULL, '1', '2024-04-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-03 10:30:45', 1, '2024-04-03 10:49:34', 0, NULL, 1),
(18291, 'Mohammed faizan kaif', '5', '9620968262', '9110647138', 'mfaizankaif@gmail.com', '2001-05-20', 22, '3', '2', 'Aslam pasha', 'Poultry farm', 18000.00, 1, 0.00, 20000.00, 'Kuvempu nagar 3cross kolar', 'Jagadish nagar 7th cross 9th main', '2404040001', '', '1', 'upload_files/candidate_tracker/39306048806_DOC-20231204-WA0008 (1).pdf', NULL, '1', '2024-04-04', 0, '', '5', '131', NULL, 0.00, '', '0', NULL, '2', 'Lack of knowledge in sales field and issue with field work', '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-04 04:37:50', 1, '2024-04-04 06:26:25', 0, NULL, 1),
(18292, 'Sarah Yvonne', '5', '7305163544', '', 'yvonnesarah.1412@gmail.com', '2001-12-14', 22, '2', '2', 'Prince Arul Sushil Kumar', 'IT', 700000.00, 2, 4.15, 4.00, 'Trichy', 'Chennai', '2404040002', '42', '2', 'upload_files/candidate_tracker/28225135774_CV yvonne.pdf', NULL, '1', '2024-04-04', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 05:07:24', 104, '2024-04-04 05:42:36', 0, NULL, 1),
(18293, 'K. Madhan', '6', '9962336135', '7299369064', 'madhan52364@gmail.com', '2001-08-19', 22, '2', '2', 'J. Kumar', 'Labour', 15000.00, 1, 15000.00, 20000.00, 'Chennai', 'Adambakkam', '2404040003', '45', '2', 'upload_files/candidate_tracker/13144726801_MADHAN.docx', NULL, '1', '2024-04-04', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'inadequate communication skills and a preference for nonvoice processes', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 05:20:51', 112, '2024-04-04 11:20:48', 0, NULL, 1),
(18294, 'Venkateswaran G', '6', '7824012372', '', 'venkateswaranganesan2510@gmail.com', '2001-10-25', 22, '2', '2', 'Ganesan .s', 'Diesel mechanic', 100000.00, 1, 0.00, 30000.00, 'Chennai 81', 'Chennai 81', '2404040004', '1', '1', 'upload_files/candidate_tracker/93794465952_VENKATESWARAN resume.docx', NULL, '1', '2024-04-04', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-04 05:43:23', 112, '2024-04-04 12:02:29', 0, NULL, 1),
(18295, 'Sharlin .s', '6', '9025445204', '9094201008', 'Sharlinr67@gmail.com', '2002-09-23', 21, '2', '2', 'Sebastian raj suresh. K , sesu mary .s', 'Cooli', 12000.00, 1, 0.00, 13000.00, 'No 678 18 street sastri nagar vyasarpadi ch 39', 'No 678 18 street sastri nagar vyasarpadi ch 39', '2404040005', '42', '1', 'upload_files/candidate_tracker/77084007695_Adobe Scan Apr 03, 2024.pdf', NULL, '1', '2024-04-04', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication is Good But her Expectation is too high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 06:17:39', 112, '2024-04-04 03:09:26', 0, NULL, 1),
(18296, 'Tharani', '20', '7603901301', '9962360920', 'Tharaniask99@gmail.com', '1999-09-19', 24, '3', '1', 'Selvi', 'College discontinue', 15000.00, 1, 12000.00, 14000.00, 'West saidapet', 'West saidapet', '2404040006', '', '2', 'upload_files/candidate_tracker/76958177179_tharani resume-1.pdf', NULL, '1', '2024-04-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-04 06:20:08', 1, '2024-04-04 07:59:17', 0, NULL, 1),
(18297, 'Gopalakrishan', '6', '9600251808', '', 'Ggopu557@gmail.com', '2002-03-16', 22, '2', '2', 'Nalingam', 'Farmer', 720.00, 4, 0.00, 15000.00, 'Chennai', 'Chennai', '2404040007', '1', '1', 'upload_files/candidate_tracker/682324027_Gopal.pdf', NULL, '1', '2024-04-05', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1024', '', NULL, NULL, NULL, 1, '2024-04-04 06:32:11', 112, '2024-04-05 04:22:28', 0, NULL, 1),
(18298, 'ananth raj k', '6', '7358439494', '8428575915', 'kananthraj2004@gmail.com', '2004-01-26', 20, '2', '2', 'kanagaraj s', 'provisional stores', 30000.00, 1, 0.00, 20000.00, 'srinivasapuram pattinapakkam chennai', 'Srinivasapuram Pattinapakkam Chennai', '2404040008', '45', '1', 'upload_files/candidate_tracker/19470476614_AnanthRajk resume.docx', NULL, '1', '2024-04-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 06:37:35', 112, '2024-04-04 03:21:18', 0, NULL, 1),
(18299, 'khaja moideen', '6', '6374581121', '', 'sksamiru450@gmail.com', '2004-05-31', 19, '2', '2', 'kadhaar basha', 'mechanic', 18000.00, 2, 0.00, 18000.00, 'chennai', 'chennai', '2404040009', '45', '1', 'upload_files/candidate_tracker/16768197654_Khaja.pdf', NULL, '1', '2024-04-04', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication not good,unfit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 06:37:46', 112, '2024-04-04 01:18:25', 0, NULL, 1),
(18300, 'tawfeeq amar .s', '6', '9094133001', '9884277513', 'tawfeeqamar1304@gmail.com', '2004-04-13', 19, '2', '2', 'sadhik basha', 'driver', 20000.00, 1, 0.00, 20000.00, 'srinivasapuram pattinapakkam chennai', 'Srinivasapuram Pattinapakkam Chennai', '2404040010', '45', '1', 'upload_files/candidate_tracker/54680635527_tawfeeq amar resume.docx', NULL, '1', '2024-04-04', 0, '', '3', '59', '2024-04-08', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Relationship executive Roles Syed Team Need to analyse and confirm in 7 days', '5', '2', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 06:37:50', 60, '2024-04-08 03:06:11', 0, NULL, 1),
(18301, 'A.JAFFER', '6', '7338918516', '9840892919', 'jafferkan84@gmail.com', '2004-04-25', 19, '2', '2', 'A.ABDULKHAN', 'Business', 30000.00, 1, 0.00, 20000.00, 'Azeem Zahida manzil,thoraipakkam,chennai96', 'Azeem Zahida manzil,thoraipakkam, chennai 96', '2404040011', '45', '1', 'upload_files/candidate_tracker/53951277014_A JAFFER resume.docx', NULL, '1', '2024-04-04', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Performance and communication is not good', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 06:39:30', 112, '2024-04-04 03:17:34', 0, NULL, 1),
(18302, 'midhun', '5', '8073965489', '9946334504', 'midhungr009@gmail.com', '1995-02-28', 29, '2', '2', 'amakri', 'self business', 30000.00, 1, 320000.00, 40000.00, 'perambra calicut', 'electronic city', '2404040012', '39', '2', 'upload_files/candidate_tracker/58929657420_Midhun Resume New.pdf', NULL, '1', '2024-04-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is not interested in Voice process, his previous exp is a semi voice in which his responsibilities is much of non voice and he is keenly looking for the same. He also communicated the same to the consultancy post interview itseems. ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 06:42:39', 60, '2024-04-06 03:56:37', 0, NULL, 1),
(18303, 'Sam.g', '6', '9884468083', '9444506796', 'edvinsam255@gmail.com', '1999-11-05', 24, '2', '2', 'Single parent', 'Cooli', 120000.00, 0, 20000.00, 25000.00, 'Chennai, avadi', 'Chennai, avadi', '2404040013', '45', '2', 'upload_files/candidate_tracker/9418407284_My RESUME.doc', NULL, '1', '2024-04-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expecting too high salary', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 06:51:49', 112, '2024-04-04 03:08:33', 0, NULL, 1),
(18304, '', '0', '6384581121', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404040014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-04 06:54:35', 0, NULL, 0, NULL, 1),
(18305, 'P Karthik', '6', '7358664390', '', 'kathikarthi6112001@gmail.com', '2001-11-06', 0, '2', '2', 'Perumal', 'Machine operator', 40000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2404040015', '42', '2', 'upload_files/candidate_tracker/77383786958_Resume_2024-01-03_3592860.pdf', NULL, '1', '2024-04-04', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for sales and he said not interested  for field work ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 07:05:54', 112, '2024-04-04 01:15:59', 0, NULL, 1),
(18306, 'Rohan.s.n', '5', '7338158637', '', 'rohan776070@gmail.com', '2002-08-26', 21, '2', '2', 'Somappa.B.lamani', 'Agriculture department', 60000.00, 2, 0.00, 20000.00, 'Hubli akshya colony Laxmi Nagar', 'Hubli Akshya Colony Laxmi Nagar', '2404040016', '1', '1', 'upload_files/candidate_tracker/83363711636_Rohan SN Resume.pdf', NULL, '1', '2024-04-08', 0, '', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication, basic knowledge about sales can process for next round', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-04-04 07:48:22', 108, '2024-04-10 05:07:28', 0, NULL, 1),
(18307, 'mathiyarasu', '6', '9080418124', '', 'issacjohnsoncr7@gmail.com', '2000-11-14', 23, '2', '2', 'rani', 'billing', 20000.00, 1, 18000.00, 24000.00, 'chennai', 'chennai', '2404040017', '29', '2', 'upload_files/candidate_tracker/4282127573_Mathiyarasu.Resume.pdf', NULL, '1', '2024-04-04', 30, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication And Attore is Not Good ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 08:02:52', 112, '2024-04-04 03:19:13', 0, NULL, 1),
(18308, 'Ram Kumar A', '14', '6382878023', '9445168532', 'rk.then@gmail.com', '2001-02-22', 23, '6', '2', 'M Arunmozhi', 'Electrical engineer (rtd)', 10000.00, 2, 120000.00, 180000.00, 'Chennai , purasaiwalkam', 'Chennai, Purasaiwalkam', '2404040018', '', '2', 'upload_files/candidate_tracker/88118869043_Ram Kumar A (03.04.2024).pdf', NULL, '1', '2024-04-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-04 09:13:17', 1, '2024-04-04 09:18:36', 0, NULL, 1),
(18309, 'Vinothkumar', '6', '7810083089', '', 'vinothkumar200356@gmail.com', '2003-04-28', 20, '2', '2', 'Thavasiraj', 'Wager', 13000.00, 0, 10000.00, 18000.00, 'Rajapalayam ,Virudhunagar', 'Rajapalayam', '2404040019', '31', '2', 'upload_files/candidate_tracker/45996178270_vinothkumar resume .docx', NULL, '1', '2024-04-04', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 09:51:28', 112, '2024-04-04 05:30:24', 0, NULL, 1),
(18310, 'Shailesh k.S', '20', '7806943458', '', 'shaileshprince15@gmail.com', '2004-04-15', 19, '2', '2', 'K.Subramani', 'Car driver', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2404040020', '29', '1', 'upload_files/candidate_tracker/56902792365_CV FINAL.pdf', NULL, '1', '2024-04-05', 0, '', '3', '59', '2024-04-09', 192000.00, '', '3', '2024-08-02', '1', 'Selected for babu Team Relationship Executive Role Fresher need to analyse and confirm in 7 days training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 10:58:19', 60, '2024-04-09 09:48:46', 0, NULL, 1),
(18311, 'Magimainathan', '20', '9148862336', '', 'magimainathan238@gmail.com', '1994-08-23', 29, '2', '2', 'Mary', 'Salaried', 40000.00, 1, 27.00, 27.00, 'Banglore', 'Banglore', '2404040021', '38', '2', 'upload_files/candidate_tracker/62063156135_Magimainathan.docx', NULL, '1', '2024-04-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-04 11:13:30', 1, '2024-04-04 11:17:21', 0, NULL, 1),
(18312, '', '0', '6374793036', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404040022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-04 11:46:57', 0, NULL, 0, NULL, 1),
(18313, 'Abhiram kv', '5', '9048135568', '', 'Kvabhi1998@gmail.com', '1998-07-16', 25, '2', '2', 'Appunni kv', 'Mason', 150000.00, 2, 280000.00, 350000.00, 'Kerala, Malappuram', 'Edappal, malappuram, kerala', '2404040023', '47', '2', 'upload_files/candidate_tracker/91164958284_ABHIRAM. KV.pdf', NULL, '2', '2024-04-04', 15, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication,  No proper response, for every question Answers are blank ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-04 11:47:07', 126, '2024-04-05 12:50:03', 0, NULL, 1),
(18314, '', '0', '8220677657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404040024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-04 12:00:09', 0, NULL, 0, NULL, 1),
(18315, 'G. Sanjaynath', '6', '6381089855', '7358252812', 'Sanjaysamuelsamuel@gmail.com', '2001-11-05', 22, '2', '2', 'N. Gopinath', 'Chat support executive', 150000.00, 2, 14000.00, 18000.00, 'Chennai', 'Chennai', '2404040025', '1', '2', 'upload_files/candidate_tracker/73480052650_Sanjay_updated resume 2024.pdf', NULL, '1', '2024-04-05', 1, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Poor communication, no clarity', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-04-04 06:49:34', 112, '2024-04-05 02:54:56', 0, NULL, 1),
(18316, 'P. Veeravalavan', '4', '9123546012', '9159909132', 'veeravalavan3@gmail.com', '2004-07-24', 19, '2', '2', 'M. Punniyamoorthi', 'Student', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2404050001', '1', '1', 'upload_files/candidate_tracker/38285649033_Resume.pdf', NULL, '1', '2024-04-05', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-05 04:33:41', 108, '2024-04-05 06:02:37', 0, NULL, 1),
(18317, 'Keerthika P', '6', '8925293167', '9840624277', 'keerthikap78@gmail.com', '2002-08-22', 21, '2', '2', 'Parthasarathy R ( Father)', 'Coolie', 12000.00, 0, 0.00, 15000.00, 'Tondiarpet, Chennai', 'Tondiarpet, chennai', '2404050002', '35', '1', 'upload_files/candidate_tracker/52773590696_Keerthika P CV.pdf', NULL, '1', '2024-04-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected. Pls cnfrm the salary and DOJ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 04:47:06', 112, '2024-04-05 02:52:38', 0, NULL, 1),
(18318, 'Vishali', '6', '7010155920', '9710987973', 'vishalivijayakumar1@gmail.com', '2002-09-02', 21, '2', '2', 'Vijayakumar', 'Tailor', 12000.00, 1, 0.00, 15000.00, 'Ambathur', 'Ambathur', '2404050003', '35', '1', 'upload_files/candidate_tracker/8334900999_RESUME.docx', NULL, '1', '2024-04-05', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 04:47:55', 112, '2024-04-05 04:28:22', 0, NULL, 1),
(18319, 'Harish B', '6', '6383345363', '', 'harishbalakrishnan1711@gmail.com', '2000-11-17', 23, '2', '2', 'Balakrishnan', 'Coolie', 75000.00, 0, 0.00, 15000.00, 'Thirchy', 'Chennai', '2404050004', '50', '1', 'upload_files/candidate_tracker/93143920321_Harish B .pdf', NULL, '1', '2024-04-05', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Doing full stack developer course, looking IT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 04:53:54', 112, '2024-04-05 04:47:45', 0, NULL, 1),
(18320, 'Chowdri M', '5', '8754702092', '', 'chowdri20@gmail.com', '1995-06-03', 28, '2', '2', 'Muthu', 'Agriculture', 20000.00, 1, 350000.00, 400000.00, 'Ramnathan street,Kolathur, Salem', 'VSM garden,West Saidapet, Chennai-600015', '2404050005', '50', '2', 'upload_files/candidate_tracker/21557838357_chowdri.pdf', NULL, '1', '2024-04-05', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 04:56:09', 112, '2024-04-05 04:50:37', 0, NULL, 1),
(18321, 'V PARTHIBAN', '5', '9566041538', '9566048134', 'mrparthibanv@gmail.com', '1995-12-23', 28, '2', '2', 'M V RAGHAVAN', 'ELECTRICIAN', 300000.00, 0, 24000.00, 26000.00, 'CHENNAI', 'CHENNAI', '2404050006', '50', '2', 'upload_files/candidate_tracker/79441076282_Parthi.pdf', NULL, '1', '2024-04-05', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'new to sales not willing  to go to field', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 04:59:31', 112, '2024-04-05 04:50:43', 0, NULL, 1),
(18322, 'Mohammed Yaseen', '4', '8310669884', '6364446629', 'mohammedyaseen1825@gmail.com', '2000-11-20', 23, '2', '2', 'Anwar Hussain', 'Customer support', 30000.00, 1, 0.00, 25000.00, 'Bhagt Singh Street devadurga 584111', 'BTM layout 2nd stage Udupi garden signal', '2404050007', '47', '1', 'upload_files/candidate_tracker/68836568989_CV_2023092219300547.pdf', NULL, '2', '2024-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-05 04:59:35', 1, '2024-04-05 09:15:54', 0, NULL, 1),
(18323, 'DHEVSAINATH.B', '6', '7358252812', '6381089855', 'dhevsai1109@gmail.com', '2001-09-08', 22, '2', '2', 'Baskar.E', 'Electrition', 25000.00, 1, 21000.00, 21000.00, 'Egmore', 'Egmore', '2404050008', '1', '2', 'upload_files/candidate_tracker/64236948867_Dev Resume.pdf', NULL, '1', '2024-04-05', 15, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-04-05 05:01:36', 112, '2024-04-05 04:23:09', 0, NULL, 1),
(18324, 'Habeeb Rahman T S', '5', '9535259677', '', 'hrhabeebrahman2@gmail.com', '1995-02-23', 29, '2', '2', 'Syed Abuthahir', 'Business', 20000.00, 3, 27000.00, 30000.00, 'Bangalore', 'Bangalore', '2404050009', '47', '2', 'upload_files/candidate_tracker/4818683213_habeeb resume Updated (1).pdf', NULL, '1', '2024-04-06', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of knowledge about sales and high salary expectation', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 05:04:26', 126, '2024-04-08 03:02:28', 0, NULL, 1),
(18325, 'Pavithra Ulaganathan', '6', '9342596079', '9789909498', 'pavi6suseela@gmail.com', '2002-12-06', 21, '2', '1', 'Elumalai', 'Driver', 35000.00, 1, 0.00, 15000.00, 'Chennai Tondiarpet', 'Chennai Tondiarpet', '2404050010', '36', '1', 'upload_files/candidate_tracker/69860318621_PAVITHRA RESUME.pdf', NULL, '1', '2024-04-05', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is searching for non-violent process. Not intrested in telecalling.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 05:32:16', 112, '2024-04-05 02:55:38', 0, NULL, 1),
(18326, 'ramanan', '5', '8056431411', '', 'ramanansathish97@gmail.com', '1996-12-06', 27, '2', '2', 'sathish kumar', 'cine feild', 80000.00, 0, 26000.00, 35000.00, 'ashok nagar', 'ashok nagar', '2404050011', '1', '2', 'upload_files/candidate_tracker/830178067_ramananCV (1).pdf', NULL, '1', '2024-04-05', 0, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate has telecalling and lead geneation experience', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-05 05:33:35', 112, '2024-04-05 03:13:41', 0, NULL, 1),
(18327, 'Chithambaram', '6', '9944806893', '9345510236', 'chithambaram.26@gmail.com', '1994-10-26', 29, '2', '1', 'Janani', 'Studying', 25000.00, 1, 20000.00, 24000.00, 'Thanjavur', 'Retteri', '2404050012', '50', '2', 'upload_files/candidate_tracker/52145131554_Chithu resume.doc', NULL, '1', '2024-04-05', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales existing he is working operation team so, i rejected the profile ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 05:41:13', 112, '2024-04-05 04:50:23', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18328, 'Krishna G', '6', '9080961016', '', 'krishnagopal8194@gmail.com', '1999-12-22', 24, '2', '2', 'K R Gopal', 'Work in Grocery shop', 18000.00, 2, 15000.00, 20000.00, 'Nesapakkam', 'Nesapakkam', '2404050013', '42', '2', 'upload_files/candidate_tracker/55803204076_DOC-20240327-WA0002..pdf', NULL, '1', '2024-04-05', 0, '', '3', '59', '2024-04-08', 204000.00, '', '5', '1970-01-01', '2', 'Selected for Charles Team in Relationship Executive Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 05:46:24', 60, '2024-04-08 12:02:49', 0, NULL, 1),
(18329, 'Sasikumar s', '6', '9344677836', '8056503783', '9344677836sasi@gmail.com', '2001-10-30', 22, '2', '2', 'Nivetha', 'Telemarketing senior in casagrand', 32000.00, 1, 0.00, 20000.00, 'Karan Street , mogappair', 'Mogappair', '2404050014', '50', '1', 'upload_files/candidate_tracker/45331368309_S.SASIKUMAR Resume.pdf', NULL, '1', '2024-04-05', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He canxquott take pressure; he left his previous job under pressure, even though it was a non-voice process.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 06:28:17', 112, '2024-04-05 04:48:16', 0, NULL, 1),
(18330, 'Hemanth vadla', '5', '7013242100', '8977830840', 'Connectwithhemanth.v@gmail.com', '1995-03-12', 29, '2', '2', 'Venkatesh vadla', 'Loan agent', 20000.00, 1, 0.00, 25000.00, 'Anantapur', 'Chanasandra, Whitefield,Bangalore 560067', '2404050015', '39', '1', 'upload_files/candidate_tracker/57335720893_Hemanth resume new.pdf', NULL, '1', '2024-04-05', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking in HR field lack of knowledge about sales', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 06:29:45', 126, '2024-04-05 01:30:00', 0, NULL, 1),
(18331, 'patil akhil', '5', '9573823423', '', 'reddyakhil3267@gmail.com', '1996-12-04', 27, '2', '1', 'pravallika', 'house wife', 240000.00, 1, 240000.00, 300000.00, 'anantapur', 'channasandra', '2404050016', '39', '2', 'upload_files/candidate_tracker/8411520583_PATIL AKHIL KUMAR new 2.pdf', NULL, '1', '2024-04-05', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of communication ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 06:37:14', 126, '2024-04-05 01:33:04', 0, NULL, 1),
(18332, 'arun', '6', '8056006726', '8610793622', 'Arunsam0046@gmail.com', '2001-11-03', 22, '2', '2', 'k thara', 'housekeeping', 50000.00, 1, 0.00, 18000.00, 'chennai', 'adyar', '2404050017', '1', '1', 'upload_files/candidate_tracker/61551927115_Adobe Scan 28 Mar 2024.pdf', NULL, '1', '2024-04-05', 0, '', '7', '59', '1970-01-01', 0.00, '', NULL, '2024-12-18', '1', 'Selected.. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1024', '', NULL, NULL, NULL, 1, '2024-04-05 06:40:04', 112, '2024-04-05 03:15:28', 0, NULL, 1),
(18333, 'Dhivya bharathi.s', '5', '8220798372', '9597599170', 'dhivyabharathir93@gmail.com', '1993-06-22', 30, '2', '1', 'Saravanan C', 'Manager', 25000.00, 1, 22000.00, 25000.00, 'Perambur', 'Perambur', '2404050018', '50', '2', 'upload_files/candidate_tracker/91613956682_DHIVYA (2).docx', NULL, '1', '2024-04-05', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 06:40:43', 112, '2024-04-05 04:50:31', 0, NULL, 1),
(18334, 'Deepak Ram', '6', '6369463045', '', 'deepak__ram@outlook.com', '2001-12-22', 22, '2', '2', 'Ramesh', 'Business', 25000.00, 1, 0.00, 200000.00, '20 pillaiyarst naduvakkarai,Annanagar,Chennai-40', '20 pillaiyar stNaduvakkarai,Annanagar,Chennai-40', '2404050019', '1', '1', 'upload_files/candidate_tracker/25183457225_Deepu Resume (1).pdf', NULL, '1', '2024-04-05', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-05 06:44:16', 112, '2024-04-05 03:16:45', 0, NULL, 1),
(18335, 'Srinivasan E', '5', '8778697433', '9884403939', 'sri.seena92@gmail.com', '1993-05-17', 30, '2', '2', 'ETHIRAJAN', 'Accountant', 15000.00, 1, 13000.00, 14000.00, 'RajaGopal naicken street,Chintadripet', 'RajaGopal naicken street,Chintadripet', '2404050020', '1', '2', 'upload_files/candidate_tracker/98233973650_Resume-WA0004. (1).pdf', NULL, '1', '2024-04-05', 1, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'due to no BDMs available they assigned him to me', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-04-05 06:50:08', 112, '2024-04-05 04:19:09', 0, NULL, 1),
(18336, 'Karan', '6', '9361917720', '', 'Karanbaskar25@gmail.com', '2002-04-25', 21, '3', '2', 'Baskar', 'Ironing man', 20000.00, 1, 0.00, 13000.00, 'Attipattu', 'Thiruvottiur', '2404050021', '', '1', 'upload_files/candidate_tracker/75096634652_Karan Resume .pdf', NULL, '1', '2024-04-05', 0, '', '3', '59', '2024-04-08', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team Relationship Executive', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 06:55:39', 60, '2024-04-06 07:03:18', 0, NULL, 1),
(18337, 'Sahana', '5', '8861954778', '', 'sahanasiddhu@gmail.co', '1986-01-02', 38, '2', '1', 'Husband', 'Tele caller', 25.00, 0, 0.00, 15.00, 'Adugodi', 'Adugodi', '2404050022', '37', '1', 'upload_files/candidate_tracker/46758108861_null.pdf', NULL, '1', '2024-04-05', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication, lack of Knowledge ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 07:02:03', 126, '2024-04-05 03:23:05', 0, NULL, 1),
(18338, 'Lourdh Raj', '5', '9940640102', '', 'lourdhraj4@gmail.com', '1996-01-08', 28, '2', '1', 'Sharon roja', 'Bank', 22000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2404050023', '45', '1', 'upload_files/candidate_tracker/98772561424_Lourdh Raj.pdf', NULL, '1', '2024-04-05', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested in sales due to his age they assigned me', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 07:05:44', 112, '2024-04-05 04:17:58', 0, NULL, 1),
(18339, 'Manideep Reddy Thota', '5', '6305307456', '7013410110', 'manideepreddythota1@gmail.com', '2000-08-01', 23, '2', '2', 'Veeranjaneya Reddy', 'Pharmacist', 50000.00, 1, 22000.00, 25000.00, 'Bengaluru', 'Bengaluru', '2404050024', '37', '2', 'upload_files/candidate_tracker/84195464233_myresume.pdf', NULL, '1', '2024-04-05', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of knowledge about the process', '5', '1', '', '2', '2', '', '2', '2024-04-30', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 07:39:12', 126, '2024-04-05 04:10:51', 0, NULL, 1),
(18340, 'Kaaviya M.K', '6', '6380761384', '9842783628', 'Kavviyal2229@gmail.com', '2002-02-22', 22, '2', '2', 'Kalamani', 'Farmer', 15000.00, 0, 0.00, 15000.00, 'Erode', 'Chennai', '2404050025', '1', '1', 'upload_files/candidate_tracker/74586269793_kaaviya M.K resume 2p.pdf', NULL, '1', '2024-04-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1024', '', NULL, NULL, NULL, 1, '2024-04-05 07:41:14', 112, '2024-04-05 04:17:07', 0, NULL, 1),
(18341, 'Divya', '4', '8838505839', '', 'divyasankar259@gmail.com', '1998-09-25', 25, '3', '2', 'Shankar', 'Driver', 30000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2404050026', '', '1', 'upload_files/candidate_tracker/18307153772_Divya+Resume_20230905_140730_0000.pdf', NULL, '3', '2024-04-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 07:45:24', 112, '2024-04-06 04:33:47', 0, NULL, 1),
(18342, 'Beleshia c', '6', '9150730159', '8778806181', 'beleshiabeleshia@gmail.com', '2001-09-05', 22, '2', '2', 'Chinnapparaj', 'Customer service executive and sales', 23000.00, 1, 22000.00, 27000.00, 'Chennai', 'Chennai', '2404050027', '29', '2', 'upload_files/candidate_tracker/1564817393_Beleshia Resume-new.pdf', NULL, '1', '2024-04-06', 1, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for tele sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 07:48:26', 112, '2024-04-06 09:54:25', 0, NULL, 1),
(18343, '', '0', '8825861435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404050028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-05 08:11:27', 0, NULL, 0, NULL, 1),
(18344, 'prashanth p', '5', '8105295495', '7483460125', 'Prashanthbeat1992@gmail.com', '1993-04-20', 30, '2', '1', 'merline elias', 'housewife', 50000.00, 2, 33000.00, 38000.00, 'magadi road kp agrahara bangalore', 'magadi road kp agrahara bangalore', '2404050029', '47', '2', 'upload_files/candidate_tracker/75374531079_P Prashanth resume 3.docx', NULL, '1', '2024-04-08', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of Knowledge about sales process and salary expectation is high', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 08:18:22', 126, '2024-04-08 03:29:52', 0, NULL, 1),
(18345, 'Abinaya sivakumar', '6', '6380470776', '8438209332', 'Kuttyabi1122@gmail.com', '1996-02-02', 28, '2', '2', 'Sivakumar', 'Vegetable seller', 15000.00, 1, 300000.00, 430000.00, 'Kumbakonam', 'Velachery', '2404050030', '50', '2', 'upload_files/candidate_tracker/75160794359_s.abinaya resume New 11.pdf', NULL, '1', '2024-04-05', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 09:03:44', 112, '2024-04-05 04:47:32', 0, NULL, 1),
(18346, 'Mani kandan R', '6', '9750398860', '8190089986', 'manismart844@gmail.com', '2001-07-09', 22, '2', '2', 'Ajith Kumar', 'Assistant manager', 30000.00, 1, 14000.00, 18000.00, '109 jeeva nagar sandhapettai tirukovilur', '5/10 22nd Street jai nagar arumbakam chennai', '2404050031', '50', '2', 'upload_files/candidate_tracker/98055603259_Mani kandan.pdf', NULL, '1', '2024-04-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 09:05:50', 112, '2024-04-05 05:31:51', 0, NULL, 1),
(18347, '', '0', '7036545248', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404050032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-05 09:06:09', 0, NULL, 0, NULL, 1),
(18348, 'J.rahul', '4', '7358061485', '8015926895', 'rahulpillai238@gmail.com', '1990-07-21', 33, '2', '1', 'latha', 'working', 68000.00, 2, 31000.00, 33000.00, 'guindy', 'guindy', '2404050033', '3', '2', 'upload_files/candidate_tracker/23986402550_J.RAHUL (6).docx', NULL, '1', '2024-04-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-05 09:17:33', 1, '2024-04-05 09:30:38', 0, NULL, 1),
(18349, 'Saran K', '17', '6383778176', '', 'sarank9edtn_d99@gmail.com', '2000-07-12', 23, '2', '2', 'no', 'sales', 40000.00, 0, 30.00, 4.50, 'bangalore', 'bangalore', '2404050034', '49', '2', 'upload_files/candidate_tracker/95187027234_Saran_K.pdf', NULL, '1', '2024-04-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-05 10:00:32', 1, '2024-04-05 10:21:49', 0, NULL, 1),
(18350, 'Saran', '5', '9990445233', '6383778176', 'sarancharan836@gmail.com', '2000-07-12', 23, '2', '2', 'Karuna', 'Civil supply', 60000.00, 1, 0.00, 35000.00, 'Bangalore', 'Madiwala', '2404050035', '49', '2', 'upload_files/candidate_tracker/54765502985_Saran_K.pdf', NULL, '2', '2024-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-05 10:18:54', 1, '2024-04-05 10:27:37', 0, NULL, 1),
(18351, '', '0', '8088484359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404050036', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-05 10:51:21', 0, NULL, 0, NULL, 1),
(18352, '', '0', '8660548572', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404050037', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-05 10:52:48', 0, NULL, 0, NULL, 1),
(18353, 'S athin ragav', '6', '9092135439', '', 'athin.ragav15@gmail.com', '2002-08-03', 21, '2', '2', 'R suresh', 'Southern railways', 100000.00, 1, 0.00, 25000.00, 'Kolathur chennai', 'Kolathur chennai', '2404050038', '29', '1', 'upload_files/candidate_tracker/60079218891_S ATHIN ragav.pdf', NULL, '1', '2024-04-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'well settled family so not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-05 12:07:32', 112, '2024-04-06 10:04:14', 0, NULL, 1),
(18354, 'Vijay k', '6', '7094363771', '', 'cherryvijay333@gmail.com', '1998-06-30', 25, '2', '2', 'Kaliyan', 'Ex - service man', 75000.00, 1, 17000.00, 18000.00, 'Athipattu pudunagar, Chennai - 600120', 'Athipattu Pudunagar, Chennai - 600120', '2404050039', '1', '2', 'upload_files/candidate_tracker/41220641834_VIJAY.pdf', NULL, '1', '2024-04-06', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Inteviewed By Kanna,As Per his Conversation Candidate Profile is Not Good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-04-05 12:19:09', 112, '2024-04-06 09:54:39', 0, NULL, 1),
(18355, 'Mohammad Mansoor M', '4', '8626858207', '', 'mansoormd98474@gmail.com', '1998-04-30', 25, '2', '2', 'na', 'bde', 36000.00, 0, 400000.00, 450000.00, 'chenna', 'chenna', '2404050040', '48', '2', 'upload_files/candidate_tracker/19914013346_Resume (6).pdf', NULL, '1', '2024-04-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-05 12:30:35', 1, '2024-04-05 12:36:10', 0, NULL, 1),
(18356, 'Abhinav Srivastava', '5', '7054787396', '', 'abhinavsri2101@gmail.com', '1997-01-21', 27, '2', '2', 'A.K.Srivastava', 'Service', 20000.00, 1, 24000.00, 30000.00, 'Up', 'Bangalore', '2404050041', '39', '2', 'upload_files/candidate_tracker/88277355120_PDF Scanner 200224 9.07.05.pdf', NULL, '1', '2024-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-05 01:21:02', 1, '2024-04-05 01:25:50', 0, NULL, 1),
(18357, '', '0', '9061407383', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404050042', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-05 02:17:26', 0, NULL, 0, NULL, 1),
(18358, 'Zuwina Taj.B', '6', '9566269316', '7358201487', 'zuwinataj@gmail.com', '2001-02-05', 23, '2', '2', 'Basheer Ahmed.M', 'Students', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2404060001', '45', '1', 'upload_files/candidate_tracker/64156129164_CV_2024040409532189.pdf', NULL, '1', '2024-04-06', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Inteviewed By Kanna,As Per His Conversation Candidate Communication is very low', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 04:24:28', 112, '2024-04-06 01:23:12', 0, NULL, 1),
(18359, 'Sathish', '6', '8637658661', '9842800426', 'sathishappu739586@gmail.com', '1999-09-19', 24, '2', '2', 'Sivanarayan', 'Business', 40000.00, 1, 0.00, 24000.00, '20000', 'Chennai', '2404060002', '50', '2', 'upload_files/candidate_tracker/50853380185_Sathish1.resume.pdf', NULL, '1', '2024-04-06', 0, '', '3', '59', '2024-04-08', 204000.00, '', '5', '1970-01-01', '2', 'Selected for Relationship Executive Role Need to Analyse in 7 Days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 04:50:43', 60, '2024-04-08 10:33:47', 0, NULL, 1),
(18360, 'D.Naresh kumar', '6', '7397365243', '9791168658', 'nareshkumar07082003@gmail.com', '2003-08-07', 20, '2', '2', 'P.Damodharan', 'Security', 16000.00, 1, 0.00, 15000.00, 'M.K.B Nagar kodugaiyur chennai 39', 'M.K.B Nagar kodugaiyur chennai 39', '2404060003', '50', '1', 'upload_files/candidate_tracker/41787924854_narreshd.pdf', NULL, '1', '2024-04-06', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Inteviewed By Kanna,As Per His Conversation Candidate Perfomance and communication is not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 04:51:16', 112, '2024-04-06 11:37:21', 0, NULL, 1),
(18361, 'Nithis.k', '14', '7825088466', '', 'nithiskrishnan43@gmail.com', '1999-03-10', 25, '6', '2', 'Krishnan', 'Farmer', 10000.00, 1, 15000.00, 20000.00, 'Dharmapuri', 'Vadapalani, Chennai', '2404060004', '', '2', 'upload_files/candidate_tracker/86860364005_Nithis.k Resume.docx-1.pdf', NULL, '1', '2024-04-06', 2, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 05:24:14', 127, '2024-04-16 11:12:01', 0, NULL, 1),
(18362, 'N.vaishalini', '6', '9150431043', '', 'shalininagaraj2305@gmail.com', '2001-05-23', 22, '2', '1', 'Selvakumar.S', 'Work', 30.00, 1, 0.00, 15000.00, 'Theni', 'Velachery', '2404060005', '50', '1', 'upload_files/candidate_tracker/11768633_vaishalini.pdf', NULL, '1', '2024-04-06', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Inteviewed By Kanna,As Per His Conversation Candidate Performance is Poor', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 05:34:13', 112, '2024-04-06 01:24:43', 0, NULL, 1),
(18363, 'Naresh kumar.a', '6', '7092170526', '9150625217', 'naresh20k3@gmail.com', '2003-02-24', 21, '2', '2', 'Anand kumar j', 'Dunzo food delievery', 15000.00, 1, 23000.00, 30000.00, 'Old washermenpet', 'Old washermenpet', '2404060006', '50', '2', 'upload_files/candidate_tracker/37894080424_NARESHKUMAR. A (1).docx', NULL, '1', '2024-04-06', 1, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 05:36:42', 112, '2024-04-06 11:35:15', 0, NULL, 1),
(18364, 'Kavya KR', '6', '6363426571', '9945964084', 'kavyasriram72@gmail.com', '2000-05-08', 23, '2', '1', 'Uma Maheshwar', 'Private employee', 30000.00, 1, 0.00, 20000.00, 'Banglore', 'Banglore', '2404060007', '39', '1', 'upload_files/candidate_tracker/11319939186_Kavya Resume.pdf', NULL, '1', '2024-04-06', 0, '', '3', '59', '2024-04-18', 192000.00, '', NULL, '2024-10-14', '2', 'Selected for Bangalore - Relationship Executive Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-04-06 05:51:16', 126, '2024-08-06 12:56:19', 0, NULL, 1),
(18365, 'Keerthi vasan.D', '6', '9786642618', '9994520968', 'vasan2572002@gmail.com', '2002-07-25', 21, '3', '2', 'Yamuna', 'House wife', 10000.00, 0, 0.00, 17000.00, 'No.19/11 mettukulam street padi Chennai 50', 'No.19/11 mettukulam street padi Chennai 50', '2404060008', '', '1', 'upload_files/candidate_tracker/14086888129_DOC-20230610-WA0003..docx', NULL, '1', '2024-04-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 05:54:00', 112, '2024-04-06 02:43:22', 0, NULL, 1),
(18366, 'Divakar.L', '6', '7305308412', '6383000152', 'diodivakardiodivakar@gmail.com', '2003-04-26', 20, '3', '2', 'Revathi.L', 'Housewife', 10000.00, 0, 0.00, 17.00, '50.vivakanadha street lakshmipuram chennai. 600099', '50.Vivakanadha Street Lakshmipuram Chennai. 600099', '2404060009', '', '1', 'upload_files/candidate_tracker/34093619092_Divakar resume-compressed.pdf', NULL, '1', '2024-04-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 06:02:31', 112, '2024-04-06 02:43:46', 0, NULL, 1),
(18367, 'Meghana S', '5', '7259771923', '9972711810', 'Meghanarao1127@gmail.com', '2002-08-11', 21, '2', '1', 'Rekha Subbarao', 'Graduated', 20000.00, 1, 0.00, 20000.00, 'CV RAMAN NAGAR 560093', 'CV RAMAN NAGAR 560093', '2404060010', '39', '1', 'upload_files/candidate_tracker/16139992251_Meghanarao resume.pdf.docx', NULL, '1', '2024-04-06', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication, can process for next round', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 06:32:42', 126, '2024-04-06 12:51:26', 0, NULL, 1),
(18368, 'udhayan e', '6', '7550188575', '', 'udhayasathya2299@gmail.com', '1999-03-03', 25, '2', '2', 'elango', 'farmer', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2404060011', '50', '2', 'upload_files/candidate_tracker/94385719061_UDHAYAN.pdf', NULL, '1', '2024-04-06', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 07:41:30', 112, '2024-04-06 04:33:04', 0, NULL, 1),
(18369, 'R.gayathri', '6', '9710987973', '', 'Gayurajugiri56@gmail.com', '2000-09-05', 23, '2', '2', 'E .rajendhiran', 'Cooli', 20000.00, 1, 16000.00, 18000.00, 'Tondaiyarpet', 'Tondaiyarpet', '2404060012', '45', '2', 'upload_files/candidate_tracker/3249533957_Gayathri. R Offer letter.docx', NULL, '1', '2024-04-06', 15, '', '3', '59', '2024-04-08', 204000.00, '', '5', '1970-01-01', '2', 'SElected for RElationship Executive Role Babu Team Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 09:04:37', 60, '2024-04-08 01:02:10', 0, NULL, 1),
(18370, 'KENNETH DAVID E P', '20', '9080109216', '', 'kennethdavid189@gmail.com', '1998-11-12', 25, '3', '2', 'RAJA DAVID F I', 'Teaching', 80000.00, 0, 0.00, 250000.00, 'chennai', 'chennai', '2404060013', '', '1', 'upload_files/candidate_tracker/80709428493_KennethResume.pdf', NULL, '1', '2024-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-06 09:14:04', 1, '2024-04-06 09:21:29', 0, NULL, 1),
(18371, 'subhashini s', '4', '6383206748', '7358029640', 'Subhashini.s1807@gmail.com', '2001-07-18', 22, '3', '2', 'subramanian rv', 'Painter', 25000.00, 1, 0.00, 18000.00, 'avadi', 'vadi', '2404060014', '', '1', 'upload_files/candidate_tracker/48545859360_SUBHASHINI.S(Resume).pdf', NULL, '1', '2024-04-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-06 09:16:13', 1, '2024-04-06 09:56:00', 0, NULL, 1),
(18372, 'Deepika', '6', '9840692434', '6380639405', 'deepika.dpka09@gmail.com', '1998-03-09', 26, '2', '2', 'M.nagalingam', 'Supervisor', 30.00, 1, 13.00, 15.00, 'Kannigapuram', 'Kannigapuram', '2404060015', '45', '2', 'upload_files/candidate_tracker/30108751773_Deepika-Resume.pdf', NULL, '1', '2024-04-06', 15, '', '3', '59', '2024-04-08', 174000.00, '', '5', '1970-01-01', '2', 'Selected for Giri Team Relationship executive Need to analyse in 7 days', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 09:20:48', 60, '2024-04-08 12:59:14', 0, NULL, 1),
(18373, 'Sushmitha S', '5', '8489147844', '', 'sushmitha6august2001@gmail.com', '2001-08-06', 22, '2', '2', 'SANGEETHA', 'House wife', 30000.00, 0, 4.00, 5.00, 'Ibblur Bangalore', 'Ibblur Bangalore', '2404060016', '39', '2', 'upload_files/candidate_tracker/39373587628_Sushmitha s Resume.pdf', NULL, '1', '2024-04-06', 30, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking in some other process, salary Exception is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-06 09:38:21', 126, '2024-04-06 03:35:56', 0, NULL, 1),
(18374, '', '0', '9840525507', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404070001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-07 02:59:25', 0, NULL, 0, NULL, 1),
(18375, 'Yogapriya A', '6', '6383675453', '9176051407', 'arunyogapriya@gmail.com', '2001-09-24', 22, '2', '2', 'Magarani A', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Pudupet', 'Pudupet', '2404070002', '29', '1', 'upload_files/candidate_tracker/44617095531_RESUME f 11-compressed.pdf', NULL, '1', '2024-04-08', 0, '', '3', '59', '2024-04-15', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-07 08:29:55', 60, '2024-04-15 10:30:34', 0, NULL, 1),
(18376, 'Manogar.M', '6', '9344140132', '9840525507', 'maddymano32@gmail.com', '2000-06-09', 23, '2', '2', 'Maruthamuthu', 'No', 20000.00, 2, 18000.00, 21000.00, 'Koyambedu, Chennai', 'Koyambedu, Chennai', '2404080001', '1', '2', 'upload_files/candidate_tracker/95345110650_res.docx', NULL, '1', '2024-04-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Excepting high salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-08 01:58:52', 112, '2024-04-08 11:32:56', 0, NULL, 1),
(18377, 'Mohamed zubair', '4', '9789375587', '', 'mohamedzubair65293@gmail.com', '2001-12-30', 22, '2', '2', 'Jakkir Hussain', 'Welder', 15.00, 2, 0.00, 12.00, 'Fathima Nagar.thanjavur', 'Arulanandha Nagar Thanjavur', '2404080002', '1', '1', 'upload_files/candidate_tracker/46717192204_DocScanner Feb 10, 2023 3-09 PM.pdf', NULL, '1', '2024-04-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-08 04:41:29', 108, '2024-04-08 11:16:59', 0, NULL, 1),
(18378, 'm bharani vishwa', '6', '9940836899', '', 'vishwamohan503@gmail.com', '1999-06-28', 24, '2', '2', 'sharmila', 'Beautician', 25000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2404080003', '50', '1', 'upload_files/candidate_tracker/12327626724_2024.pdf', NULL, '1', '2024-04-08', 0, '', '3', '59', '2024-04-11', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Gopi Team Relationship Executive Role By mistake he rejected the profile .Candidate fresher for this domain and need to be analysed in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-08 05:31:22', 60, '2024-04-11 09:56:21', 0, NULL, 1),
(18379, 'Ganesh V', '6', '9043720608', '9047449144', 'dhanpalganesh2211@gmail.com', '2001-11-22', 22, '2', '2', 'Velu k', 'Tailor', 12000.00, 1, 0.00, 16000.00, 'Tirupattur', 'Chennai', '2404080004', '1', '1', 'upload_files/candidate_tracker/43301028906_Ganesh.pdf', NULL, '1', '2024-04-08', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is unfit for sales profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-08 05:31:50', 112, '2024-04-08 01:19:27', 0, NULL, 1),
(18380, 'SINDHU V', '5', '6366117454', '7795649256', 'sindhum4440@gmail.com', '2000-04-02', 24, '2', '1', 'Venkata Ramana', 'Salary', 30000.00, 0, 0.00, 23000.00, 'BANGALORE', 'BANGALORE', '2404080005', '39', '2', 'upload_files/candidate_tracker/22355372591_SINDHU RESUME-2.pdf', NULL, '1', '2024-04-08', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good communication can process for further round', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-08 05:47:16', 126, '2024-04-08 11:46:10', 0, NULL, 1),
(18381, 'Sudheer Samuel', '20', '8925158345', '', 'sudhirsamuel46@gmail.com', '1995-05-17', 28, '2', '2', 'Samuel N a', 'Retired', 100000.00, 2, 31000.00, 25000.00, 'No 137/14 chigrnthapalyam 10 th Street Korrukupet', 'Same as permanent', '2404080006', '29', '2', 'upload_files/candidate_tracker/61769030508_sudheer resume New-1 (1).pdf', NULL, '1', '2024-04-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-08 06:16:50', 112, '2024-04-09 07:04:51', 0, NULL, 1),
(18382, 'Sujintha S', '4', '6384623237', '8825832803', 'Sujinthas5905@gmail.com', '2000-06-26', 23, '2', '2', 'Selvanathan', 'Kovilpillai', 15000.00, 3, 15000.00, 18000.00, 'THIRUVANNAMALAI', 'THIRUVANNAMALAI', '2404080007', '49', '2', 'upload_files/candidate_tracker/40780160088_suji resume .pdf', NULL, '3', '2024-04-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-08 06:20:15', 1, '2024-04-08 06:33:26', 0, NULL, 1),
(18383, 'Naveen', '6', '9092152125', '6380570540', 'naveenramesh118@gmail.com', '1997-08-12', 26, '2', '2', 'Renuka devi', 'House keeping', 25000.00, 1, 12500.00, 13000.00, 'Chennai', 'Chennai', '2404080008', '50', '2', 'upload_files/candidate_tracker/50744668833_Naveen resume.pdf', NULL, '1', '2024-04-08', 3, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected (dress code)', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-08 06:23:49', 112, '2024-04-08 01:26:28', 0, NULL, 1),
(18384, 'Monisha', '5', '9884273766', '', 'monisuresh2698@gmail.com', '1998-06-02', 25, '2', '2', 'Parents', 'Business', 500000.00, 1, 17000.00, 21000.00, 'Chennai', 'Chennai', '2404080009', '50', '2', 'upload_files/candidate_tracker/6620329182_Monisha Resume.pdf', NULL, '1', '2024-04-08', 0, '', '9', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, over all 4yrs exp,pls try mf or renewal ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-08 06:26:23', 112, '2024-04-08 01:24:56', 0, NULL, 1),
(18385, 'Bruno V Dhas', '6', '9360996338', '', 'brunov5535@gmail.com', '2000-10-06', 23, '2', '2', 'M.s.dhas', 'RTD navy', 100000.00, 0, 21800.00, 26000.00, 'Chennai', 'Chennai', '2404080010', '50', '2', 'upload_files/candidate_tracker/84412488689_CV_202404051637498.pdf', NULL, '1', '2024-04-08', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is over 2 to 3yrs exp,\nSal exp 20k pls try with pc side', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-08 06:44:33', 112, '2024-04-08 01:23:26', 0, NULL, 1),
(18386, 'Kaviraj T', '6', '8148502382', '9940428023', 'Kavi03191@gmail.com', '2002-08-22', 21, '2', '1', 'Thirusangu', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Mailapur, chennai', 'Cuddalur', '2404080011', '1', '1', 'upload_files/candidate_tracker/26238542926_kavi Raj T resume.pdf', NULL, '1', '2024-04-08', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-08 06:47:07', 112, '2024-04-08 01:22:25', 0, NULL, 1),
(18387, '', '0', '8105257638', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404080012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-08 07:55:34', 0, NULL, 0, NULL, 1),
(18388, 'Shivanand prakash', '4', '7892635584', '8151945798', 'shivanandmurgod420@gmail.com', '1988-09-27', 35, '2', '1', 'Mahananda', 'Na', 20000.00, 1, 23000.00, 25000.00, 'Bangalore', 'Mathikere', '2404080013', '49', '2', 'upload_files/candidate_tracker/34204592382_CURRICULUM VITAE Shivanand Prakash M-3.docx', NULL, '2', '2024-04-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-08 08:12:12', 1, '2024-04-08 08:17:48', 0, NULL, 1),
(18389, 'Prema R', '5', '8971407358', '7676684589', 'preethi21101998@gmail.com', '1998-06-01', 25, '2', '2', 'Ramakrishnaiah', 'Good', 30000.00, 4, 300000.00, 400000.00, 'Bengaluru', 'Bengaluru', '2404080014', '39', '2', 'upload_files/candidate_tracker/7692015282_PremaRResume.pdf', NULL, '1', '2024-04-08', 15, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Salary expectation is high, lack of knowledge about process', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-08 09:06:27', 126, '2024-04-08 03:49:09', 0, NULL, 1),
(18390, 'Kaviya T', '4', '9585812441', '', 'Kaviyat215@gmail.com', '2003-05-21', 20, '3', '2', 'Uma.T', 'House wife', 65000.00, 2, 0.00, 16000.00, 'Ponneri', 'Ponneri', '2404080015', '', '1', 'upload_files/candidate_tracker/55029174698_Kaviya.T-+Resume.pdf', NULL, '1', '2024-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-08 09:31:26', 1, '2024-04-08 09:36:39', 0, NULL, 1),
(18391, 'Dinesh Kumar.R', '6', '7539929253', '', 'dkdinesh1913@gmail.com', '2000-04-19', 23, '3', '2', 'Karpagam.R', 'Agriculture', 10000.00, 3, 0.00, 20000.00, '2/41,Bharathi street, bharathanthangal, Villupuram', 'Adanjan Street, Mylapore,chennai', '2404080016', '', '1', 'upload_files/candidate_tracker/90820614011_DKDINESH.pdf', NULL, '1', '2024-04-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-08 09:33:59', 1, '2024-04-08 09:48:48', 0, NULL, 1),
(18392, 'Yuvashree R', '6', '9655035944', '9566640353', 'yuvashree12401@gmail.com', '2001-04-12', 22, '2', '2', 'Raja', 'Bank employee', 15000.00, 1, 12000.00, 15000.00, 'Chengalpattu', 'Chennai', '2404080017', '29', '2', 'upload_files/candidate_tracker/29352968915_Yuvashree .pdf', NULL, '2', '2024-04-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-08 09:37:43', 112, '2024-04-09 07:05:04', 0, NULL, 1),
(18393, 'Rahul', '6', '6383605188', '7708778232', 'lsp.rahul1524@gmail.com', '2001-09-13', 22, '2', '2', 'Ponnuraj', 'Driver &farmer', 30000.00, 2, 0.00, 18000.00, 'Kadayanallur', 'Porur', '2404080018', '50', '1', 'upload_files/candidate_tracker/99387803529_rahulpdf.pdf', NULL, '1', '2024-04-08', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-08 09:42:29', 112, '2024-04-08 05:52:57', 0, NULL, 1),
(18394, 'Akash R', '6', '9361724406', '8681826445', 'Akashbabu7812@gmail.com', '2002-07-31', 21, '2', '2', 'Rajenthira babu R', 'Coolie', 7200.00, 2, 0.00, 18000.00, 'Kalavai, ranipet district, tamilnadu', 'Velachery, chennai', '2404080019', '29', '1', 'upload_files/candidate_tracker/2355797682_AKASHNEW.pdf', NULL, '1', '2024-05-07', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate need IT job so not fit for sales job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-08 09:58:40', 112, '2024-05-07 01:19:41', 0, NULL, 1),
(18395, 'Dinesh s', '6', '6381880904', '8124580124', 'drock5407@gmail.com', '2000-01-29', 24, '2', '2', 'Subramani s', 'Vellore', 15000.00, 3, 0.00, 16000.00, 'S/15a 11 th cross phase-1 vallalar vellore-09', 'S/15a 11 Th Cross Phase-1 Vallalar Vellore-09', '2404080020', '50', '1', 'upload_files/candidate_tracker/73314277481_Dinesh s.pdf', NULL, '1', '2024-04-08', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is not accept field work ', '5', '1', '', '1', '3', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-08 09:59:18', 112, '2024-04-08 05:50:25', 0, NULL, 1),
(18396, '', '0', '9080615672', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404080021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-08 10:02:16', 0, NULL, 0, NULL, 1),
(18397, 'andrews prasad k', '5', '8610312360', '', 'andrewsprasad10@gmail.com', '1992-07-14', 31, '2', '1', 'sonia', 'homemaker', 35000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2404080022', '50', '2', 'upload_files/candidate_tracker/36496731002_Andrews.docx', NULL, '1', '2024-04-08', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-08 10:48:53', 112, '2024-04-08 06:38:14', 0, NULL, 1),
(18398, '', '0', '6385139884', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404080023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-08 01:06:08', 0, NULL, 0, NULL, 1),
(18399, 'Harshini Balaji', '6', '7305781133', '7092168010', 'harshinibalaji596@gmail.com', '2000-12-14', 23, '2', '2', 'Balaji', 'Employee', 15000.00, 1, 21000.00, 25000.00, '12b, BV nagar 1St Street meenambakkam Chennai', '12b, BV nagar 1St Street meenambakkam Chennai', '2404080024', '1', '2', 'upload_files/candidate_tracker/15054121580_Updated resume Harshini.docx', NULL, '1', '2024-04-09', 0, '', '3', '59', '2024-04-15', 216000.00, '', '5', '1970-01-01', '2', 'Selected for Backend Operation Attended for sales and got shortlisted for Gopi team too but candidate is much interested in Operations', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-04-08 01:30:39', 60, '2024-04-15 10:12:19', 0, NULL, 1),
(18400, 'Ajay v', '6', '9790741023', '', 'ajaykannagi07@gmail.com', '1999-12-20', 24, '2', '2', 'Veerasekar v', 'Contract plumber', 20000.00, 1, 0.00, 20000.00, '4/18,rayala nagar 2nd st , ramapuram, chennai', '4/18,Rayala Nagar 2nd St , Ramapuram, Chennai', '2404080025', '1', '1', 'upload_files/candidate_tracker/62140592485_AJAY V RESUME UPDATED.docx', NULL, '1', '2024-04-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-04-08 04:55:37', 112, '2024-04-09 03:50:10', 0, NULL, 1),
(18401, 'S.Priya Dharshini', '6', '7092502062', '7092520262', 'priyadharshini2531@gmail.com', '2003-02-25', 21, '2', '2', 'Saravanan', 'Carpenter', 10000.00, 1, 0.00, 20000.00, 'Kovilancherry', 'Kovilancherry', '2404080026', '1', '1', 'upload_files/candidate_tracker/51023568258_DOC-20240208-WA0015..pdf', NULL, '3', '2024-04-11', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She is Intrested in Non Voice Process Only', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-08 05:05:04', 112, '2024-04-11 10:21:51', 0, NULL, 1),
(18402, '', '0', '7845162146', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-09 03:33:43', 0, NULL, 0, NULL, 1),
(18403, 'Karthikraja S', '4', '6382131169', '', 'karthiksenthil003@gmail.com', '2000-03-11', 24, '2', '2', 'Senthilkumar', 'Business', 20000.00, 1, 0.00, 20000.00, '16/4 Ambukovil road KARAMBAKKUDI PUDUKKOTTAI', 'Kattupakkam chennai', '2404090002', '', '1', 'upload_files/candidate_tracker/11115857117_Karthikraja.pdf', NULL, '1', '2024-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-09 04:29:54', 1, '2024-04-09 04:43:20', 0, NULL, 1),
(18404, 'r.sababathi', '4', '9361098290', '8122012721', 'ssababathi593@gmail.com', '1998-05-20', 25, '2', '2', 'rengaraj', 'agri', 20000.00, 1, 12000.00, 14000.00, 'northstreet.muthukulam', 'muthukulam', '2404090003', '1', '2', 'upload_files/candidate_tracker/64055419480_sababathi Resume.pdf', NULL, '1', '2024-04-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expected non voice', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-09 04:53:02', 108, '2024-04-10 10:53:54', 0, NULL, 1),
(18405, 'Shakthi Shankar.M.J', '6', '9962874062', '', 'mjshakthi577@gmail.com', '2001-03-09', 23, '2', '2', 'Jai Shankar.M.N', 'T.V Service', 30000.00, 1, 0.00, 20000.00, 'Nungambakkam', 'Nungambakkam', '2404090004', '1', '1', 'upload_files/candidate_tracker/71004795150_resume mj.pdf', NULL, '1', '2024-04-09', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'canxquott handle the pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-09 04:57:39', 112, '2024-04-09 03:50:31', 0, NULL, 1),
(18406, '', '0', '9585095299', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404090005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-09 05:41:37', 0, NULL, 0, NULL, 1),
(18407, 'K.Nirmala', '6', '8110845939', '9384157096', 'Nirmala2001ksn@gmail.com', '2001-03-08', 23, '2', '2', 'M.kumar', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Kodambakkam', 'Kodambakkam', '2404090006', '50', '1', 'upload_files/candidate_tracker/42340193468_nirmala. k resume.pdf', NULL, '2', '2024-04-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'shortlist for team  fresher good convincing skill and she little bit  know health insurance ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 05:52:23', 112, '2024-04-09 03:56:40', 0, NULL, 1),
(18408, 'A.Aarthi', '6', '6374820499', '6369640926', 'aarthimadhan001@gmail.com', '2001-03-30', 23, '2', '2', 'Alagunila', 'Famer', 25000.00, 1, 0.00, 15000.00, 'KUMBAKONAM', 'Saidapet', '2404090007', '50', '1', 'upload_files/candidate_tracker/97432646856_Aarthi Resume.pdf', NULL, '1', '2024-04-09', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is Intrested in Non Voice Process Only', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 05:59:49', 112, '2024-04-09 03:55:45', 0, NULL, 1),
(18409, 'S.SUNDARRAJ', '6', '8680831018', '9080156643', 'ssundarraj2122@gmail.com', '2000-05-06', 23, '2', '2', 'HR', 'Driver', 30000.00, 3, 18000.00, 20000.00, 'Royapettah', 'Royapettah', '2404090008', '50', '2', 'upload_files/candidate_tracker/91484019936_Sundarraj. s.pdf', NULL, '3', '2024-04-09', 1, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 06:00:55', 112, '2024-04-09 03:53:21', 0, NULL, 1),
(18410, 'Vimal Raj.V', '6', '7305648372', '9677214140', 'Vimalrajvasudevan3011@gmail.com', '2001-11-30', 22, '2', '2', 'R vasudevan', 'Provision shop labour', 22000.00, 1, 10000.00, 20000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2404090009', '35', '2', 'upload_files/candidate_tracker/85753759725_Resume of Vimal Raj.pdf', NULL, '1', '2024-04-09', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '6 Month experience for hDFC credit card operation  team he get a salary 12k but high expectation 20k abve and he is not interested sales ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 06:02:36', 112, '2024-04-09 03:58:39', 0, NULL, 1),
(18411, 'sangeetha sri', '6', '8884943385', '9043688239', 'srisangeetha7177@gmail.com', '2001-12-01', 22, '2', '2', 'P Murugesan ( Father)', 'Site supervisor', 35000.00, 1, 250000.00, 250000.00, 'Chennai , Sowcarpert', 'Chennai, sowcarpert', '2404090010', '29', '2', 'upload_files/candidate_tracker/69642682708_CV_2024040421451625.pdf', NULL, '1', '2024-04-10', 25, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Inconsistent work history', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 06:25:29', 112, '2024-04-10 04:58:11', 0, NULL, 1),
(18412, '', '0', '8015466674', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404090011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-09 06:27:43', 0, NULL, 0, NULL, 1),
(18413, 'Reguna G', '6', '9025509755', '9786095052', 'regunajeeva@gmail.com', '2003-06-07', 20, '2', '2', 'Gunasekaran', 'Farmer', 60000.00, 2, 19500.00, 20000.00, 'Cuddalore', 'Chennai', '2404090012', '50', '2', 'upload_files/candidate_tracker/23387299994_Reguna-B.sc CS-2023-Java and SQL.pdf', NULL, '1', '2024-04-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Already 3 month experience at star health. But salary expectation is high.. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 06:28:26', 112, '2024-04-09 03:52:19', 0, NULL, 1),
(18414, 'Ahamed Byzil', '4', '9585557237', '7806894606', 'byzilahamed360@gmail.com', '2001-10-05', 22, '2', '2', 'kamal', 'business', 20000.00, 3, 0.00, 15000.00, 'arulananda nagar arul nursery road thanjavur', 'Arulananda Nagar Arul Nursery Road Thanjavur', '2404090013', '1', '1', 'upload_files/candidate_tracker/1804242919_Resume byzil.docx', NULL, '1', '2024-04-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-09 06:47:52', 108, '2024-04-12 12:46:54', 0, NULL, 1),
(18415, 'Mohan Raj', '9', '9941245160', '', 'mraj9530@gmail.com', '1991-02-28', 33, '2', '1', 'anitha', 'house wife', 50000.00, 0, 650000.00, 900000.00, 'chennai', 'chennai', '2404090014', '1', '2', 'upload_files/candidate_tracker/51717285467_MOHAN RAJ C _ RESUME.pdf', NULL, '1', '2024-04-09', 90, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-09 07:03:27', 112, '2024-04-09 04:02:44', 0, NULL, 1),
(18416, 'Niranjana', '6', '8807861063', '6383216624', 'niranjanaabimanyu@gmail.com', '2001-01-20', 23, '2', '1', 'Madhu sudhanan', 'Civil engineer', 35000.00, 1, 0.00, 15.00, 'Velachery', 'Velachery', '2404090015', '50', '1', 'upload_files/candidate_tracker/16660482679_Niranjana A.pdf', NULL, '1', '2024-04-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Job needed person so will try 7 Days ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 08:21:43', 112, '2024-04-09 04:01:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18417, 'pavithra v', '6', '9087675454', '', 'vpavithra2908@gmail.com', '2001-08-29', 22, '3', '2', 'velu', 'labour', 25000.00, 1, 0.00, 20.00, 'ayappakkam', 'ayappakkam', '2404090016', '', '1', 'upload_files/candidate_tracker/95816762274_Resume 333.pdf', NULL, '1', '2024-04-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 08:38:46', 104, '2024-04-10 06:55:57', 0, NULL, 1),
(18418, 'k.purushothaman', '6', '9787829956', '9087675454', 'purushothkumar333@gmail.com', '2002-02-02', 22, '2', '2', 'e.kumar', 'farmer', 72000.00, 0, 0.00, 20000.00, 'uthiramerur', 'vandulur', '2404090017', '39', '1', 'upload_files/candidate_tracker/98757377636_Resume without photo .pdf', NULL, '1', '2024-04-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 08:49:30', 112, '2024-04-10 05:00:11', 0, NULL, 1),
(18419, 'D Jagadheesh', '6', '8667710324', '7358658068', 'balajibj324@gmail.com', '1998-04-20', 25, '2', '2', 'M dhamodharan', 'Contractor', 75000.00, 0, 30000.00, 30000.00, 'Chennai', 'Chennai', '2404090018', '30', '2', 'upload_files/candidate_tracker/46160795364_jagdeeshAJ.docx', NULL, '1', '2024-04-09', 0, '', '1', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 09:10:06', 112, '2024-04-09 04:01:24', 0, NULL, 1),
(18420, 'G.Rithesh', '6', '7094657444', '7305423067', 'ritheshrithesh112@gmail.com', '2002-01-14', 22, '2', '2', 'G.Radhika', 'Housewife', 20000.00, 1, 0.00, 16000.00, '60vadivel pillai Street tiruchengode namakkal', '60vadivel pillai Street thondikaradu tiruchengode', '2404090019', '50', '2', 'upload_files/candidate_tracker/88240020255_Resume_10_01_2024_06_15_57_PM.pdf', NULL, '1', '2024-04-09', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Unfit for sales xxamp Field Work', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 09:11:13', 112, '2024-04-09 04:00:31', 0, NULL, 1),
(18421, 'Riyaz Ahamad', '6', '9080679095', '', 'riyazahamad304@gmail.com', '1997-06-18', 26, '2', '2', 'H.faritha begum', 'Jdo civil', 80000.00, 0, 0.00, 17000.00, 'Salem', 'Perungaudi', '2404090020', '42', '1', 'upload_files/candidate_tracker/75058851205_CV_2023121417284372.pdf', NULL, '1', '2024-04-09', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 09:12:28', 112, '2024-04-09 03:59:26', 0, NULL, 1),
(18422, 'B.m.brinda', '6', '7418056662', '', 'bvbrindamohan@gmail.com', '1998-07-01', 25, '2', '2', 'B.v.Mohan', 'OA', 1.00, 1, 0.00, 15.00, 'Chennai', 'Ramapuram Chennai', '2404090021', '29', '1', 'upload_files/candidate_tracker/88305520877_CV_202301241127077.pdf', NULL, '1', '2024-04-10', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She Is Intrested In Non Voice Process Only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 09:13:06', 104, '2024-04-10 07:05:49', 0, NULL, 1),
(18423, 'm.thirumoorthi', '6', '7502668528', '9965026041', 'thirumoorthi26041@gmail.com', '2003-02-22', 21, '2', '2', 'Madheshwaran', 'Driver', 300000.00, 1, 0.00, 15000.00, '10, ,Pillaiyar Kovil Street, Ekkatuthangal Chennai', '10,pillaiyar Kovil Street, ekkatuthangal Chennai', '2404090022', '50', '1', 'upload_files/candidate_tracker/77890365458_THIRUMOORTHI RESUME.pdf', NULL, '1', '2024-04-09', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Field work not int and communication not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 09:23:06', 112, '2024-04-09 05:45:13', 0, NULL, 1),
(18424, 'Raviteja', '11', '9989175957', '9381892266', 'kamsalaraviteja109@gmail.com', '2000-07-01', 23, '3', '2', 'k.rammurthy', 'Business', 40000.00, 0, 0.00, 20000.00, 'Dharmavaram', 'Dharmavaram', '2404090023', '', '1', 'upload_files/candidate_tracker/42688261801_K._Raviteja__Resume (4).pdf', NULL, '1', '2024-04-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 09:49:27', 108, '2024-04-13 04:06:25', 0, NULL, 1),
(18425, '', '0', '9080725699', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404090024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-09 10:02:20', 0, NULL, 0, NULL, 1),
(18426, '', '0', '9715166618', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404090025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-09 10:11:41', 0, NULL, 0, NULL, 1),
(18427, 'Manojkumar', '1', '8015824023', '8124205880', 'manomohan060@gmail.com', '1999-01-05', 25, '2', '2', 'Murugesan.v', 'Building construction', 12000.00, 3, 15500.00, 18000.00, 'R.a puram', 'Mandaveli', '2404090026', '50', '2', 'upload_files/candidate_tracker/6114840248_new resume manoj.pdf', NULL, '1', '2024-04-09', 5, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication And Performance is Not Good.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 10:24:21', 112, '2024-04-09 04:49:59', 0, NULL, 1),
(18428, 'Balachander S', '6', '9361701115', '6374175335', 'balachander897@gmail.com', '2002-07-22', 21, '2', '2', 'Saravanan S', 'Driver', 23000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2404090027', '50', '2', 'upload_files/candidate_tracker/91749861684_DOC-20240108-WA0002. (1).pdf', NULL, '1', '2024-04-09', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication And Performance Is Not Good. Also expected high package', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 10:51:12', 112, '2024-04-09 04:49:28', 0, NULL, 1),
(18429, '', '0', '9514266618', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404090028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-09 10:56:26', 0, NULL, 0, NULL, 1),
(18430, '', '0', '9884676582', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404090029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-09 10:56:55', 0, NULL, 0, NULL, 1),
(18431, 'Mohanraj R', '6', '8015142106', '8056907697', 'divyamoosu1994@gmail.com', '1994-05-15', 29, '2', '2', 'Krishnaveni. R', 'Daily wages', 5000.00, 1, 27.58, 25.00, 'Mel maruvathur', 'Chennai, velachery', '2404090030', '29', '2', 'upload_files/candidate_tracker/71750331694_Mohanraj Resume.pdf', NULL, '1', '2024-04-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 12:36:17', 112, '2024-04-12 12:51:20', 0, NULL, 1),
(18432, 'M.Sowmiya', '6', '9940610819', '', 'sowmiyamahalingam06@gmail.com', '2002-04-06', 22, '2', '2', 'V.Mahalingam', 'driver', 25000.00, 1, 0.00, 20000.00, 'Chenni', 'Chennai', '2404090031', '39', '1', 'upload_files/candidate_tracker/44634956255_Sowmiya', NULL, '1', '2024-04-10', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is Intrested In Non Voice Process Only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 02:24:41', 112, '2024-04-10 04:46:21', 0, NULL, 1),
(18433, 'Raveen Murugan', '6', '6382317371', '9952431710', 'mraveen17101@gmail.com', '2001-10-17', 22, '2', '2', 'Murugan', 'Medical Incharge', 10000.00, 1, 400000.00, 400000.00, 'Chennai', 'Chennai', '2404090032', '29', '2', 'upload_files/candidate_tracker/79425010121_Resume (2).pdf', NULL, '1', '2024-04-11', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 02:41:45', 112, '2024-04-11 04:57:58', 0, NULL, 1),
(18434, '', '0', '9952431710', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404090033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-09 02:59:22', 0, NULL, 0, NULL, 1),
(18435, 'Mamtha', '4', '6382586177', '9566237976', 'Mamtasrinivasan@gmail.com', '1997-04-18', 26, '3', '2', 'Yamunarani', 'Housewife', 20000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2404090034', '', '1', 'upload_files/candidate_tracker/15653026948_mamta resume.docx', NULL, '1', '2024-04-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 03:22:05', 104, '2024-04-10 06:56:52', 0, NULL, 1),
(18436, 'Lal Krishnan', '6', '9159518604', '', 'krishlk0007@gmail.com', '2002-07-04', 21, '2', '2', 'Shanmugaraj', 'Farmer', 20000.00, 2, 0.00, 30000.00, 'Ramanathapuram', 'Chennai', '2404090035', '29', '1', 'upload_files/candidate_tracker/20664358853_LalKrishnan.Resume.pdf', NULL, '1', '2024-04-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-09 05:23:24', 112, '2024-04-12 03:40:49', 0, NULL, 1),
(18437, 'naresh', '6', '9710097386', '9345853797', 'nareshabi97@gmail.com', '1997-06-19', 26, '2', '2', 'sampath', 'farmer', 15000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2404100001', '1', '1', 'upload_files/candidate_tracker/7903332731_Naresh resume.pdf', NULL, '1', '2024-04-10', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not a matured guy', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-10 02:16:33', 112, '2024-04-10 04:38:03', 0, NULL, 1),
(18438, 'Karuthammal P', '6', '8680055002', '', 'karuthammal96@gmail.com', '1996-06-13', 27, '2', '2', 'Elayarani', 'Labour', 29000.00, 0, 25000.00, 28000.00, 'Dharmapuri', 'Chennai', '2404100002', '32', '2', 'upload_files/candidate_tracker/99087745230_resume (2).pdf', NULL, '1', '2024-04-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 03:26:45', 112, '2024-04-10 04:54:00', 0, NULL, 1),
(18439, 'K.Dilip kumar', '6', '9710523938', '', 'dilipkgdl1234@gmail.com', '1999-07-22', 24, '2', '2', 'Krishna moorthi', 'Shopkeeper', 15000.00, 0, 0.00, 20000.00, 'Thandalam', 'Thandalam', '2404100003', '51', '1', 'upload_files/candidate_tracker/98416412787_Resume (3).docx', NULL, '1', '2024-04-10', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No skill ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 04:25:03', 112, '2024-04-10 03:01:54', 0, NULL, 1),
(18440, '', '0', '8925692393', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404100004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-10 04:50:58', 0, NULL, 0, NULL, 1),
(18441, 'pavithra v', '6', '9097675454', '9787829956', 'vpavithra2908@gmail.com', '2001-08-29', 22, '2', '2', 'velu', 'labour', 25000.00, 1, 0.00, 20.00, 'ayappakkam', 'ayappakkam', '2404100005', '39', '1', 'upload_files/candidate_tracker/57062419131_PAVITHRA', NULL, '1', '2024-04-10', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 05:04:10', 112, '2024-04-10 04:44:10', 0, NULL, 1),
(18442, 'hemkumar d', '6', '8428878787', '', 'hem612868@gmail.com', '2001-08-17', 22, '2', '2', 'dilli m', 'builder', 30000.00, 1, 0.00, 18.00, 'chennai', 'chennai', '2404100006', '50', '1', 'upload_files/candidate_tracker/94388993323_HEM RESUME.pdf', NULL, '1', '2024-04-10', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking Non voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 05:09:52', 112, '2024-04-10 03:02:57', 0, NULL, 1),
(18443, 'Bhavani', '5', '7695014217', '', 'bhavanianbu10@gmail.com', '2009-04-10', 0, '2', '2', 'Anbalagan', 'Business', 15000.00, 1, 18000.00, 22000.00, 'Ennore', 'Ennore', '2404100007', '1', '2', 'upload_files/candidate_tracker/53053754347_Bhavani Resume-1.pdf', NULL, '1', '2024-04-10', 0, '', '3', '59', '2024-04-15', 252000.00, '', '3', '2024-10-03', '2', 'Selected for Banu Team DM Role', '5', '2', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-10 05:12:45', 60, '2024-04-15 10:09:22', 0, NULL, 1),
(18444, 'Dhimitha P', '6', '8825667276', '9600507468', 'dhimitha2002@gmail.com', '2002-03-14', 22, '2', '2', 'Sree Vidhya lakshmi', 'House wife', 50000.00, 1, 156000.00, 2.50, 'Chennai', 'Chennai', '2404100008', '50', '2', 'upload_files/candidate_tracker/96094826633_Dhimitha new resume.pdf', NULL, '1', '2024-04-10', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 05:17:38', 112, '2024-04-10 04:36:59', 0, NULL, 1),
(18445, 'menaka y', '4', '9514355740', '7824949331', 'menakay1996@gmil.com', '1996-03-22', 28, '2', '1', 'yogarajan t', 'fire cylinder distributor', 25000.00, 1, 15000.00, 17000.00, 'sevappanayakkan vari nadukkulam thanjavur', 'Sevappanayakkan Vari Nadukkulam Thanjavur', '2404100009', '1', '2', 'upload_files/candidate_tracker/96402249830_9ca07673-a62b-4946-b333-7949fae0f50d (1).docx', NULL, '1', '2024-04-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit\n', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-04-10 05:19:36', 127, '2024-04-10 05:29:38', 0, NULL, 1),
(18446, 'Prithica', '4', '9361032739', '', 'prithicavani02@gmail.com', '2002-07-15', 21, '3', '2', 'K Gnanakumar', 'Accountant', 30.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2404100010', '', '2', 'upload_files/candidate_tracker/50134639098_prithica .pdf', NULL, '2', '2024-04-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-10 05:27:23', 1, '2024-05-03 05:13:00', 0, NULL, 1),
(18447, 'vishal sv', '6', '9677229345', '', 'vishal.vetrivel345@gmail.com', '1999-05-19', 24, '3', '2', 'tms vetrivel', 'business', 70000.00, 2, 20000.00, 25000.00, 'chennai', 'chennai', '2404100011', '', '2', 'upload_files/candidate_tracker/53299155761_CV_2024022620315820.pdf', NULL, '1', '2024-04-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 05:30:16', 104, '2024-04-10 06:57:11', 0, NULL, 1),
(18448, 'Chandra sekaran', '6', '8939105009', '9791027916', 'mrchanofficial28@gmail.com', '2002-11-26', 21, '3', '2', 'Mani', 'Fish market', 15000.00, 1, 0.00, 17000.00, 'west tambaram', 'west tambaram', '2404100012', '', '1', 'upload_files/candidate_tracker/45623203640_Chandra Sekaran Resume IT.pdf', NULL, '1', '2024-04-10', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 05:39:10', 112, '2024-04-10 04:35:52', 0, NULL, 1),
(18449, 'Selvakumar', '6', '8940027208', '', 'Vinsonselva27@gmail.com', '1998-08-28', 25, '2', '2', 'Kaspar', 'Businesses', 30000.00, 1, 300000.00, 400000.00, 'Chennai', 'Chennai', '2404100013', '45', '2', 'upload_files/candidate_tracker/37665985727_Selva Kumar cv (1).pdf', NULL, '1', '2024-04-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 05:42:11', 112, '2024-04-10 04:53:32', 0, NULL, 1),
(18450, 'Rajitha Kamalanathan', '5', '6381184291', '6381240685', 'sasirajitha23@gmail.com', '1993-08-23', 30, '2', '1', 'Sasikala', 'Self-employee', 13000.00, 1, 24000.00, 27000.00, 'Chennai', 'Chennai', '2404100014', '51', '2', 'upload_files/candidate_tracker/41866955052_Rajitha-Kamalanathan-goodcv.com-160224.61119.pdf', NULL, '1', '2024-04-10', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain in our role too long distance pressure handling doubts in our role ', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 05:42:55', 112, '2024-04-10 04:51:59', 0, NULL, 1),
(18451, 'M.sam', '6', '7871867507', '9003125609', 'Samj15y2005@gmail.com', '2005-02-15', 19, '2', '2', 'Father', 'Driver', 40000.00, 1, 0.00, 14000.00, 'Tambaram', 'Tambaram', '2404100015', '50', '2', 'upload_files/candidate_tracker/57874290861_Adobe Scan 10 Apr 2024.pdf', NULL, '1', '2024-04-10', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication And Performance Is Not Good. Also not in the formal then his expectation is also high', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 05:46:41', 112, '2024-04-10 03:03:59', 0, NULL, 1),
(18452, 'Srikrishna j', '6', '7358090168', '8056141074', 'shesri0220@gmail.com', '2002-07-02', 21, '2', '2', 'Jagan g', 'Cooly', 40000.00, 1, 18000.00, 23000.00, 'No_222 jeeva nagar korukupet Chennai _600021', 'No_222 jeeva nagar korukupet Chennai _600021', '2404100016', '35', '2', 'upload_files/candidate_tracker/37280686196_srikrishna.pdf', NULL, '1', '2024-04-10', 1, '', '2', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok ,1.10 Years experience collection xxamp Telecalling,Now he is in notice period,Notice 90 days, so we need to confirm@June 1st week thanks', '5', '1', '', '1', '8', '', '2', '2024-06-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 05:50:47', 104, '2024-04-10 06:57:42', 0, NULL, 1),
(18453, 'Suman M', '6', '7010966278', '8925482915', 'suman272306@gmail.com', '2003-06-14', 20, '2', '2', 'Maria Selvam', 'Self employed', 30000.00, 2, 0.00, 1.80, 'Tirumalai', 'Tirumalai', '2404100017', '50', '1', 'upload_files/candidate_tracker/54019774813_SUMAN_RESUME_(2)[1].pdf', NULL, '1', '2024-04-10', 0, '', '3', '59', '2024-04-15', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 05:55:15', 60, '2024-04-15 10:10:16', 0, NULL, 1),
(18454, 'abinaya', '6', '9344992977', '', 'abinayacuti773@gmail.com', '2002-05-02', 21, '2', '2', 'sivaraman', 'mtc driver', 30000.00, 1, 19000.00, 23000.00, 'chennai', 'chennai', '2404100018', '51', '2', 'upload_files/candidate_tracker/81551438158_abinaya.pdf', NULL, '1', '2024-04-10', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance is Low , Also Some Attitude Type', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 05:55:47', 112, '2024-04-10 04:37:19', 0, NULL, 1),
(18455, 'Prakash', '4', '8825518254', '', 'gprakash13579@gmail.com', '2000-03-10', 24, '2', '2', 'Govindaraj', 'Farmer', 15000.00, 1, 13000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2404100019', '1', '2', 'upload_files/candidate_tracker/29871635837_NEW- RESUME (1).pdf', NULL, '1', '2024-04-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-10 06:17:41', 108, '2024-04-10 04:59:26', 0, NULL, 1),
(18456, 'Loganathan R', '5', '9150937619', '9176843803', 'lokeshray046@gmail.com', '1995-06-23', 28, '2', '2', 'nill', 'nill', 60000.00, 2, 26000.00, 32000.00, 'Velachery Chennai', 'Velachery Chennai', '2404100020', '1', '2', 'upload_files/candidate_tracker/22487434862_Loganathan_R_Resume (1).pdf', NULL, '1', '2024-04-10', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-10 06:22:20', 108, '2024-04-10 04:58:50', 0, NULL, 1),
(18457, 'Jennis Joel Raj DS', '6', '7358586504', '6374111505', 'jennisjoelraj4044@gmail.com', '1999-09-03', 24, '2', '2', 'Daniel Suresh', 'Supervisor', 35000.00, 1, 18000.00, 23000.00, 'Chennai', 'Chennai', '2404100021', '45', '2', 'upload_files/candidate_tracker/84965438298_Jennis Cv 5 new.pdf', NULL, '1', '2024-04-10', 0, '', '3', '59', '2024-04-16', 204000.00, '', '5', '1970-01-01', '1', 'Selected for Relationship Executive Role will not sustain just looking for salary will not handle pressure Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 06:25:51', 60, '2024-04-15 05:58:46', 0, NULL, 1),
(18458, 'Manikandan.S', '6', '9952069301', '', 'manisaravanan511@gmail.com', '1999-11-03', 24, '2', '2', 'Saravanan', 'Paint contracter', 35000.00, 1, 19500.00, 23000.00, 'Chennai', 'Chennai', '2404100022', '45', '2', 'upload_files/candidate_tracker/86549788755_Manikandan-CV.pdf', NULL, '1', '2024-04-10', 0, '', '3', '59', '2024-04-16', 204000.00, '', '5', '1970-01-01', '1', 'Selected for Relationship Executive Role NEed to analyse and finalise the profile in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 06:28:02', 60, '2024-04-15 05:56:58', 0, NULL, 1),
(18459, 'Amutheshwaran S', '20', '6369425128', '7539963405', 'sgajith2000@gmail.com', '2000-06-12', 23, '2', '2', 'Shanmugam G', 'Business', 15000.00, 1, 0.00, 25000.00, 'Villupuram', 'Saidapet', '2404100023', '50', '2', 'upload_files/candidate_tracker/34796941418_Ajith pdf 5.pdf', NULL, '1', '2024-04-10', 0, '', '3', '59', '2024-04-16', 216000.00, '', '5', '1970-01-01', '2', 'Selected for Relationship Executive Role Need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 06:35:12', 60, '2024-04-15 06:00:06', 0, NULL, 1),
(18460, '', '0', '9962490363', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404100024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-10 06:35:49', 0, NULL, 0, NULL, 1),
(18461, 'Ranjith R', '5', '9962490363', '', 'ranji.ra19@gmail.com', '1999-07-18', 24, '1', '2', 'Ramesh', 'Auto driver', 180000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2404100025', '', '2', 'upload_files/candidate_tracker/34333008258_CV_2024040112215874.pdf', NULL, '1', '2024-04-10', 0, '55731', '3', '59', '2024-04-15', 339996.00, '', '5', '1970-01-01', '1', 'Selecetd for Santhosh Team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 06:43:13', 60, '2024-04-15 10:35:49', 0, NULL, 1),
(18462, 'shilpa', '5', '6363083365', '', 'shilushipap1@gmail.com', '2001-07-01', 22, '2', '2', 'krishna naik', 'brand promotor', 18000.00, 2, 18500.00, 25000.00, 'bellary karnataka', 'Garvebavipalya Bangalore', '2404100026', '51', '2', 'upload_files/candidate_tracker/66207950303_Shilpa 5.pdf', NULL, '1', '2024-04-10', 7, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication.', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 07:08:05', 126, '2024-04-10 02:38:08', 0, NULL, 1),
(18463, 'Vidya Sahar', '6', '8148774826', '7010572521', 'Vvvidyass8@gmail.com', '1998-02-09', 26, '2', '1', 'Mala', 'Freshman', 100000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2404100027', '45', '1', 'upload_files/candidate_tracker/80842050144_VidyaSahar', NULL, '1', '2024-04-10', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 07:10:26', 112, '2024-04-10 04:59:12', 0, NULL, 1),
(18464, '', '0', '8754496486', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404100028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-10 07:11:02', 0, NULL, 0, NULL, 1),
(18465, 'Gayathri. A', '11', '9884358362', '9952980992', 'gayathrianandhang@gmail.com', '2004-10-23', 19, '6', '2', 'Lavanya', 'Nil', 150000.00, 0, 0.00, 2000.00, 'Chennai', 'Anna Nagar', '2404100029', '', '1', 'upload_files/candidate_tracker/76784836706_GAYATHRI.A RESUME.pdf', NULL, '1', '2024-04-10', 0, '', '1', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected as internship for 3 month. Tomorrow joining', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 07:41:56', 104, '2024-04-10 07:08:45', 0, NULL, 1),
(18466, 'Surya SK', '6', '8428813016', '9150670616', 'suryakesavan24@gmail.com', '2002-01-24', 22, '2', '2', 'Kesavaraman R', 'Weaver', 15000.00, 1, 0.00, 2.50, 'Thuvarankurichi middle Street Kumbakonam', 'Easwaradoss street ,triplicane ,Chennai', '2404100030', '50', '1', 'upload_files/candidate_tracker/15284567250_Surya Resume.pdf', NULL, '1', '2024-04-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 09:04:07', 112, '2024-04-10 04:41:43', 0, NULL, 1),
(18467, 'A.Durairaj', '4', '9025257742', '9677581438', 'adurairaj1388@gmail.com', '2001-06-11', 22, '2', '2', 'Rajeswari', 'Home Maker', 15000.00, 1, 35000.00, 30000.00, 'Kallakurichi', 'Madhavaram', '2404100031', '45', '2', 'upload_files/candidate_tracker/99704554811_Durai Resume.pdf', NULL, '1', '2024-04-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-10 09:04:56', 1, '2024-04-10 09:15:17', 0, NULL, 1),
(18468, 'PRAKASH S', '4', '9443231362', '6374596323', 'prakashkannan2525@gmail.com', '2001-12-22', 22, '2', '2', 'Annapoorani S', 'Home Maker', 20000.00, 1, 0.00, 25000.00, 'Erode', 'Madhavaram', '2404100032', '45', '1', 'upload_files/candidate_tracker/79982096100_CV_2024041009383160.pdf', NULL, '1', '2024-04-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 09:07:45', 104, '2024-04-10 07:03:00', 0, NULL, 1),
(18469, 'Susmitha. R', '6', '9025258143', '9884304098', 'susmitharamu674@gmail.com', '2001-10-31', 22, '1', '2', 'Ramu', 'Mesion', 80000.00, 1, 0.00, 12000.00, 'Saidapet', 'Saidapet', '2404100033', '', '1', 'upload_files/candidate_tracker/31209150596_HR rules.pdf', NULL, '2', '2024-04-10', 0, '77816', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is already worked in vizza health insurance back end team but not suitable for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 09:12:28', 112, '2024-04-10 03:27:26', 0, NULL, 1),
(18470, '', '0', '9092366636', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404100034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-10 09:18:29', 0, NULL, 0, NULL, 1),
(18471, 'Balaji M', '2', '8825539047', '9840948972', 'Balajikrishna44589@gmail.com', '1998-07-01', 25, '3', '2', 'G Mohana Sundaram', 'Business', 25000.00, 0, 28000.00, 40000.00, 'Mannady', 'Chennai', '2404100035', '', '2', 'upload_files/candidate_tracker/24338714071_Balaji M Resume (1).pdf', NULL, '1', '2024-04-10', 0, '', '1', '112', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-10 10:30:33', 1, '2024-04-10 10:36:25', 0, NULL, 1),
(18472, 'Asolin maso', '31', '8220158319', '9488886682', 'asolinmaso22@gmail.com', '1999-11-03', 24, '3', '2', 'Victoria', 'Housewife', 10000.00, 2, 0.00, 15000.00, 'Kanniyakumari', 'Saidapet', '2404100036', '', '1', 'upload_files/candidate_tracker/88818681414_Pink Simple Profile Resume (1).pdf', NULL, '1', '2024-04-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-10 10:31:46', 130, '2024-05-02 10:54:19', 0, NULL, 1),
(18473, 'A.perisiya', '6', '9551957335', '', 'perisiperisi6@gmail.com', '2003-11-02', 20, '2', '2', 'D.arivalagan', 'Mobile recharge shop', 30000.00, 1, 0.00, 12000.00, 'No. 14 padasalai street pallikaranai Chennai', 'No .14 padasalai street pallikaranai Chennai', '2404100037', '1', '1', 'upload_files/candidate_tracker/97426532244_Perisiya (1).pdf', NULL, '1', '2024-04-11', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-10 11:42:13', 112, '2024-04-11 10:15:44', 0, NULL, 1),
(18474, 'Swathi Lakshmi.S', '6', '9384611686', '9566113348', 'swathi10anu@gmail.com', '2000-07-10', 23, '2', '2', 'Sankar Krishnan', 'Private business', 25000.00, 1, 0.00, 30000.00, 'Madhavaram', 'Madhavaram', '2404100038', '1', '1', 'upload_files/candidate_tracker/13084788825_swathi Lakshmi.s resume.docx', NULL, '1', '2024-04-11', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-10 11:58:31', 112, '2024-04-11 04:56:26', 0, NULL, 1),
(18475, 'Katika Narasu Bai', '5', '6304764986', '9642148225', 'katikanarsu@gmail.com', '1998-04-20', 25, '2', '2', 'Katika Ramesh Rao', 'Business', 20000.00, 3, 0.00, 3.50, 'SRI SATHYA SAI District, Andhra Pradesh', 'SRI SATHYA SAI District, Andhra Pradesh', '2404100039', '1', '1', 'upload_files/candidate_tracker/60808774871_ Resume.pdf', NULL, '2', '2024-04-12', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication, basic knowledge about sales and insurance and can process with next round', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-04-10 12:32:22', 127, '2024-04-20 10:04:56', 0, NULL, 1),
(18476, '', '0', '8015628037', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404110001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-11 02:51:38', 0, NULL, 0, NULL, 1),
(18477, 'Praveen', '6', '9345013649', '', 'Praveen.cse.btech@123', '1998-10-06', 25, '2', '2', 'Dilli', 'Bussiness', 20000.00, 1, 0.00, 17000.00, 'Vysarpadi', 'Vysarpadi', '2404110002', '1', '1', 'upload_files/candidate_tracker/21680959879_praveen.d (6) (1).pdf', NULL, '1', '2024-04-11', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication is not good ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-11 03:18:39', 112, '2024-04-11 11:17:55', 0, NULL, 1),
(18478, 'Guru Hariharan', '17', '9944559353', '', 'sureshhariharan622@gmail.com', '2003-05-07', 20, '2', '2', 'Suresh', 'Mason', 30000.00, 1, 18500.00, 25.00, 'Trichy', 'Trichy', '2404110003', '29', '2', 'upload_files/candidate_tracker/6929505489_GURU HARIHARAN RESUME.pdf', NULL, '2', '2024-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-11 04:19:22', 1, '2024-04-11 04:23:07', 0, NULL, 1),
(18479, 's johnson immanuvel', '6', '9360619664', '9094410332', 'sjohnsonimmanuvel@gmail.com', '1999-08-31', 24, '2', '2', 'puspha rani', 'ar executive', 40000.00, 1, 20000.00, 26000.00, 'erukkancherri', 'erukkancherri', '2404110004', '52', '2', 'upload_files/candidate_tracker/61662764913_Resume_30_01_2024_06_06_28_PM.pdf', NULL, '1', '2024-04-11', 0, '', '2', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shortlisted for sales process, he needs one week time to decide.', '5', '1', '', '1', '8', '', '2', '2024-04-15', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-11 04:27:01', 112, '2024-04-22 04:24:11', 0, NULL, 1),
(18480, 'Swethalakshmi.R', '6', '9360330583', '9840018223', 'Swethalakshmi1017@gmail.com', '2002-10-17', 21, '2', '2', 'Nirmala', 'Homemaker', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2404110005', '39', '1', 'upload_files/candidate_tracker/729549492_SWETHA', NULL, '1', '2024-04-11', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking non voice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-11 04:42:14', 127, '2024-04-11 10:55:29', 0, NULL, 1),
(18481, 'Nandha Kumar Pazhani', '6', '8056108273', '8056118085', 'nandhakumar01270@gmail.com', '2001-10-20', 22, '2', '2', 'Parent', 'B.com general', 250000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2404110006', '50', '1', 'upload_files/candidate_tracker/15037300110_NandhaKumar_resume-1.pdf', NULL, '1', '2024-04-11', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-11 04:56:36', 112, '2024-04-11 11:33:30', 0, NULL, 1),
(18482, 'T. Dhivya', '4', '9025484827', '', 'dhivi202212@gmail.com', '2003-07-22', 20, '2', '2', 'M. Thirumeni', 'Farmer', 17000.00, 1, 0.00, 15000.00, 'Pannaiyakottai', 'Pannaiyakottai', '2404110007', '1', '1', 'upload_files/candidate_tracker/88784336804_DHIVYA.pdf', NULL, '1', '2024-04-12', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for tele calling', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1024', '', NULL, NULL, NULL, 1, '2024-04-11 06:17:53', 104, '2024-04-11 12:11:28', 0, NULL, 1),
(18483, 'Suganya R', '6', '8438887223', '9626136158', 'suganyar2834@gmail.com', '1998-12-25', 25, '2', '2', 'Ramachandran', 'Barbar', 20000.00, 2, 36000.00, 40000.00, 'SALEM', 'CHENNAI', '2404110008', '51', '2', 'upload_files/candidate_tracker/9337331945_CV_2024040223285043.pdf', NULL, '1', '2024-04-11', 30, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-11 07:39:38', 112, '2024-04-11 04:47:30', 0, NULL, 1),
(18484, '', '0', '6382907318', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404110009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-11 07:42:42', 0, NULL, 0, NULL, 1),
(18485, 'Aravinda swamy a', '4', '9513282385', '', 'aravindsadhana0147@gmail.com', '1999-07-03', 24, '2', '2', 'Ananda mohan Kumar m', 'Electrition', 25000.00, 2, 0.00, 19000.00, 'K G F', 'K G F', '2404110010', '49', '1', 'upload_files/candidate_tracker/80402780671_ARAVIND.pdf', NULL, '1', '2024-04-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-11 07:43:04', 1, '2024-04-11 07:50:53', 0, NULL, 1),
(18486, 'Bhagyalaxmi', '6', '9110813811', '9343755555', 'dudhawale99945@gmail.com', '2000-10-26', 23, '2', '2', 'Maruti', 'Private', 4.00, 1, 24.00, 29.00, 'Bengaluru', 'Bengaluru', '2404110011', '49', '2', 'upload_files/candidate_tracker/13793734809_BHA.pdf', NULL, '2', '2024-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-11 07:47:02', 1, '2024-04-11 07:52:24', 0, NULL, 1),
(18487, 'Shaik Mohammed fahem', '5', '8179494154', '6309338837', 'fahem7786@gmail.com', '2002-11-13', 21, '2', '2', 'Shaik mohammed yaseen', 'Graduated', 3.00, 3, 20200.00, 30000.00, 'B kothakota', 'B kothakota', '2404110012', '1', '2', 'upload_files/candidate_tracker/98897114553_Fahem Resume 2023-2 (1).pdf', NULL, '1', '2024-04-16', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'ok for Dm channel max in hand 22k cross check previous ctc', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-04-11 09:43:50', 127, '2024-04-17 10:19:59', 0, NULL, 1),
(18488, 'prakash', '6', '8524099612', '', 'prakashsivaji160693@gmail.com', '1995-04-20', 28, '2', '2', 'sivaji', 'agriculture', 450000.00, 2, 11000.00, 16000.00, 'chennai', 'chennai', '2404110013', '50', '2', 'upload_files/candidate_tracker/92464891750_prakash.pdf', NULL, '1', '2024-04-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-11 10:44:28', 112, '2024-04-11 05:55:11', 0, NULL, 1),
(18489, 'janani kannan', '6', '7904159989', '8072601415', 'janajk0302@gmail.com', '2000-03-02', 24, '2', '2', 'kannan n', 'frame works', 25000.00, 1, 0.00, 250000.00, 'dharmapuri', 'chennai', '2404110014', '29', '1', 'upload_files/candidate_tracker/90737597689_Janani Kannan.pdf', NULL, '2', '2024-04-13', 0, '', '3', '59', '2024-04-15', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Gopi Team Good Communication Can give a try Need to analyse in 7 days', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-11 10:45:51', 60, '2024-04-15 10:36:48', 0, NULL, 1),
(18490, '', '0', '7093734508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404110015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-11 10:50:47', 0, NULL, 0, NULL, 1),
(18491, 'Ishwarya.s', '4', '9940179152', '7871925583', 'ishwaryas275@gmail.com', '2003-11-01', 20, '1', '2', 'S.subramani', 'Carpenter', 98000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2404110016', '', '1', 'upload_files/candidate_tracker/32623969036_inbound9009070771252300120.doc', NULL, '3', '2024-04-19', 0, 'No', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-11 11:08:06', 1, '2024-04-11 11:12:32', 0, NULL, 1),
(18492, 'pulkit agrawal', '4', '7014188788', '9509696140', 'agrawalpulkitoctob10@gmail.com', '1996-10-10', 27, '3', '2', 'vinod kumar agrawal', 'farmer', 50000.00, 2, 30000.00, 40000.00, 'dausa', 'jaipur', '2404110017', '', '2', 'upload_files/candidate_tracker/5608378047_Pulkit_Resume.pdf', NULL, '2', '2024-04-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-11 12:10:33', 1, '2024-04-15 04:18:46', 0, NULL, 1),
(18493, 'SHOBANA L', '6', '9150856324', '9578824479', 'shobanasobi.21@gmail.com', '2003-07-21', 20, '2', '2', 'LINGADURAI', 'DAILY WAGES', 10000.00, 1, 13000.00, 150000.00, 'CHENNAI', 'NERKUNDRUM, CHENNAI', '2404110018', '29', '2', 'upload_files/candidate_tracker/18461224949_Shobana L resume24.pdf', NULL, '1', '2024-04-12', 0, '', '2', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'long distance', '5', '1', '', '1', '8', '', '2', '2024-04-12', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-11 12:59:15', 112, '2024-04-12 12:49:26', 0, NULL, 1),
(18494, 'S.vasan', '6', '8072267972', '9865259448', 'svasan2003@gmail.com', '2003-02-15', 21, '2', '2', 'Senthil Kumar', 'Assistent direct', 50000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2404110019', '29', '1', 'upload_files/candidate_tracker/94780984122_ vasan_resume.pdf', NULL, '1', '2024-04-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-11 02:20:17', 112, '2024-04-12 02:55:21', 0, NULL, 1),
(18495, 'karthik', '13', '9080293041', '', 'bovasvignesh@gmail.com', '2001-06-16', 22, '2', '2', 'selvaraj.f', 'loader man', 30000.00, 1, 0.00, 2.50, 'chennai', 'chennai', '2404110020', '1', '1', 'upload_files/candidate_tracker/85518992566_Karthik.pdf', NULL, '1', '2024-04-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-11 08:51:56', 112, '2024-04-12 03:28:36', 0, NULL, 1),
(18496, 'Teja M', '5', '9008008878', '9900760005', 'tejamtejam1999@gmail.com', '1998-02-10', 26, '2', '2', 'Muniraja', 'Teacher', 100000.00, 1, 24600.00, 25000.00, 'Chintamani town', 'Btm layout', '2404120001', '47', '2', 'upload_files/candidate_tracker/14724318399_Teja resume Update.docx', NULL, '1', '2024-04-20', 1, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and lack of Knowledge About sales and insurance', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-12 04:26:40', 126, '2024-04-20 01:51:14', 0, NULL, 1),
(18497, 'L.Abishek', '6', '9025983561', '', 'Abishekbruni@gmail.com', '2003-04-01', 21, '2', '2', 'R. Lakshmanan', 'Tailor', 12000.00, 1, 0.00, 16000.00, 'Kotturpuram', 'Kotturpuram', '2404120002', '51', '1', 'upload_files/candidate_tracker/32371672750_ABISHEK TYPING.doc', NULL, '1', '2024-04-12', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No skill ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-12 04:52:48', 112, '2024-04-12 12:50:48', 0, NULL, 1),
(18498, 'P. ABINAYA', '4', '7867814222', '9943231361', 'abianu25878@gmail.com', '1998-05-25', 25, '2', '2', 'R. NOT. PANNEER SELVAM', 'B. E', 60000.00, 1, 0.00, 10000.00, 'Mannargudi', 'Mannargudi', '2404120003', '1', '1', 'upload_files/candidate_tracker/99401660776_DOC-20240404-WA0000..pdf', NULL, '3', '2024-04-12', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for tele calling', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-12 05:17:52', 108, '2024-04-12 03:33:14', 0, NULL, 1),
(18499, 'Prithviraj', '6', '7010831380', '', 'prithvis100@gmail.com', '1992-08-03', 31, '2', '2', 'Jeyamani', 'Homemaker', 100000.00, 1, 500000.00, 500000.00, 'CHENNAI', 'CHENNAI', '2404120004', '50', '2', 'upload_files/candidate_tracker/13321673066_UPDATED RESUME (prithviraj).pdf', NULL, '1', '2024-04-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-12 05:29:59', 112, '2024-04-12 11:27:22', 0, NULL, 1),
(18500, 'M.naveen', '6', '8072026467', '', 'Ravanana05@gmail.com', '2001-12-03', 22, '2', '2', 'A.muniyandi', 'Business', 50000.00, 2, 0.00, 25000.00, 'Puzhal, chennai-66', 'Puzhal ,chennai-66', '2404120005', '51', '1', 'upload_files/candidate_tracker/53787857490_MNAVEEN RESUME_240329_091142.pdf', NULL, '1', '2024-04-12', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit the profile ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-12 05:31:33', 112, '2024-04-12 11:27:36', 0, NULL, 1),
(18501, 'Kesavan.R', '6', '9976882375', '8682946030', 'kesav7r@gmail.com', '1993-04-25', 30, '2', '2', 'Geetha.R', 'Home maker', 20000.00, 2, 20000.00, 30000.00, 'Illuppur,Pudukkottai-dt', 'Alandur, Chennai', '2404120006', '45', '2', 'upload_files/candidate_tracker/86107476042_kesAvan.pdf', NULL, '1', '2024-04-12', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'doubt in sustainability', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-12 05:33:23', 112, '2024-04-12 12:51:43', 0, NULL, 1),
(18502, 'Jeevanantham M', '6', '9003549512', '8608862026', 'M.jeevananthamkvp@gmail.com', '1999-04-26', 24, '2', '2', 'Parent', 'Florist', 30000.00, 1, 0.00, 300000.00, 'erode', 'Chennai', '2404120007', '1', '1', 'upload_files/candidate_tracker/69308600309_Jeevanantham m.pdf', NULL, '1', '2024-04-12', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales he is interested in HR department more then company attend the hr department but still not get offer so, right now choose sales  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-12 06:15:21', 112, '2024-04-12 12:53:12', 0, NULL, 1),
(18503, 'Paul Mohan M', '13', '6374873951', '8525037881', 'paulmohan522@gmail.com', '2001-12-10', 22, '2', '2', 'Latha M', 'Agriculture', 15000.00, 0, 0.00, 18000.00, 'Erode', 'Erode', '2404120008', '26', '1', 'upload_files/candidate_tracker/47599692020_intern@resume.pdf', NULL, '1', '2024-04-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-12 06:34:37', 1, '2024-04-12 06:41:01', 0, NULL, 1),
(18504, '', '0', '8428651013', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404120009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-12 07:02:27', 0, NULL, 0, NULL, 1),
(18505, 'Leomarison', '6', '9025161838', '9344006204', 'leomarison9@gmail.com', '2002-12-24', 21, '2', '2', 'Arockiyaraj', 'Daily wages', 10000.00, 1, 0.00, 20000.00, 'Viruddhachalam', 'Viruddhachalam', '2404120010', '50', '1', 'upload_files/candidate_tracker/70431847098_LEO RESUME-1.pdf', NULL, '1', '2024-04-12', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-12 07:17:59', 112, '2024-04-12 01:09:06', 0, NULL, 1),
(18506, 'Mamtha', '6', '9566237976', '6382586177', 'Mamtasrinivasan@gmail.com', '1997-04-18', 26, '2', '2', 'Yamunarani', 'Housewife', 15000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2404120011', '1', '1', 'upload_files/candidate_tracker/48325610482_mamta resume.docx', NULL, '1', '2024-04-12', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1024', '', NULL, NULL, NULL, 1, '2024-04-12 08:29:44', 112, '2024-04-12 03:05:51', 0, NULL, 1),
(18507, 'Dhanalakshmi S', '6', '9566158005', '', 'dhanalakshmisankar11@gmail.com', '2003-11-22', 20, '2', '2', 'Uma S', 'Student', 15.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2404120012', '29', '1', 'upload_files/candidate_tracker/90496082801_Dhanalakshmi S resume.pdf', NULL, '1', '2024-04-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shortlist for team fresher she is doing intership 6month for\n sales (insurance ,credit , loan ) good communication skill then right now going exam so, check and update joining date !! \n\nthank you', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-12 10:32:58', 108, '2024-04-13 03:43:55', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18508, '', '0', '9059249749', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404120013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-12 01:27:57', 0, NULL, 0, NULL, 1),
(18509, 'Yuvarasu Chandran', '4', '8667032415', '9080302956', 'yuvarasu33@gmail.com', '2001-01-20', 23, '2', '2', 'A.Jothi', 'Tailor', 10000.00, 1, 0.00, 20000.00, 'Dindigul', 'Dindigul', '2404120014', '1', '1', 'upload_files/candidate_tracker/61126679872_null.pdf_20240202_084050_0000.pdf', NULL, '1', '2024-04-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1024', '', NULL, NULL, NULL, 1, '2024-04-12 02:05:30', 104, '2024-04-13 12:36:32', 0, NULL, 1),
(18510, 'Abishek m', '6', '9894392757', '', 'abiak0506@gmail.com', '2000-05-05', 23, '2', '2', 'mathivanan', 'teacher', 45000.00, 1, 0.00, 20000.00, 'theni', 'velacher', '2404120015', '1', '1', 'upload_files/candidate_tracker/14303513409_ABIResume.pdf', NULL, '1', '2024-04-13', 0, '', '3', '59', '2024-04-15', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Charles Team Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-12 03:03:22', 60, '2024-04-15 10:18:19', 0, NULL, 1),
(18511, 'K.somasundaram', '6', '9790030387', '', 'somasundaran511@gmail.com', '1992-03-14', 0, '2', '1', 'Hema', 'Housewifr', 30000.00, 0, 20000.00, 250000.00, 'F2 artha block vikundanivas app, chitlapakkam', 'F2 artha block vikundanivas app, chitlapakkam', '2404130001', '29', '2', 'upload_files/candidate_tracker/74228173605_DOC-20231226-WA0057. (3).pdf', NULL, '1', '2024-04-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-13 04:09:59', 108, '2024-04-13 03:35:04', 0, NULL, 1),
(18512, 'Kamalakannan K', '6', '8610436714', '9042515426', 'Kamalakannan2426123@gmail.com', '2002-09-22', 21, '2', '2', 'Kannan.R', 'Agriculture', 10000.00, 1, 0.00, 15000.00, 'No 2/110,West Street,Keelanatham, Ariyalur 621701', 'Arumbakkkam, Chennai', '2404130002', '50', '1', 'upload_files/candidate_tracker/10307640312_KAMALAKANNAN.K.pdf', NULL, '1', '2024-04-13', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Expected High Salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-13 04:28:59', 108, '2024-04-13 03:25:28', 0, NULL, 1),
(18513, 'Navaneethan', '6', '8525938734', '9600759370', 'navaniram13@gmail.com', '2003-06-13', 20, '2', '2', 'Ramar', 'Agriculture', 10000.00, 1, 0.00, 15000.00, 'Ariyalur', 'Arumbakkkam, Chennai', '2404130003', '50', '1', 'upload_files/candidate_tracker/29675879272_Navaneethan Resume v1.pdf', NULL, '1', '2024-04-13', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance is not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-13 04:29:04', 108, '2024-04-13 03:26:13', 0, NULL, 1),
(18514, 'VETRISELVAN', '6', '9487762795', '9786311921', 'skvetri8@gmail.com', '2003-07-15', 20, '2', '2', 'SEMMALAI', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Ariyalur', 'Arumbakkam', '2404130004', '50', '1', 'upload_files/candidate_tracker/56296362664_vetriselvan cv..pdf', NULL, '1', '2024-04-13', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-13 04:31:23', 108, '2024-04-13 03:24:16', 0, NULL, 1),
(18515, 'shahul hameed', '6', '9790900455', '', 'Shahulhameed6466@gmail.com', '1999-08-20', 24, '3', '2', 'parent', 'fresher', 30000.00, 1, 0.00, 15000.00, 'chenna', 'chennai', '2404130005', '', '1', 'upload_files/candidate_tracker/35613593327_24.pdf', NULL, '1', '2024-04-13', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-13 04:35:23', 130, '2024-04-13 03:04:03', 0, NULL, 1),
(18516, 'Jaganath M', '14', '7418330666', '8428888340', 'jagan24298@gmail.com', '1998-02-25', 26, '3', '2', 'Murugan', 'Tailore', 10000.00, 0, 0.00, 15000.00, 'vaniyambadi, tirupathur district 20', 'Kovilamabakkam,chennai', '2404130006', '', '1', 'upload_files/candidate_tracker/66940449356_Jaganath Flutter Developer.pdf', NULL, '1', '2024-04-13', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-13 04:45:58', 130, '2024-04-15 05:23:22', 0, NULL, 1),
(18517, 'Karthik V', '14', '6385588151', '7373184401', 'bscit9706@gmail.com', '1998-11-10', 25, '3', '2', 'Rubadevi', 'Coolie', 4000.00, 1, 0.00, 15000.00, 'ERODE', 'ERODE', '2404130007', '', '1', 'upload_files/candidate_tracker/68092926026_Karthi Flutter Developer.pdf', NULL, '1', '2024-04-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-13 04:46:06', 1, '2024-04-13 04:49:21', 0, NULL, 1),
(18518, 'Chandrasekar', '14', '9786214252', '9080039083', 'chandrumurugan2306@gmail.com', '2000-06-23', 23, '3', '2', 'Murugan', 'Farmer', 20000.00, 1, 0.00, 2.50, 'Villupuram', 'Chennai', '2404130008', '', '1', 'upload_files/candidate_tracker/94665575540_Chandru.pdf', NULL, '1', '2024-04-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-13 04:47:10', 1, '2024-04-13 04:51:53', 0, NULL, 1),
(18519, 'Vijaya ganapathi R', '14', '9942637363', '8531035606', 'vijayganapathi.r@gmail.com', '2001-10-10', 22, '3', '2', 'Rajapart rangadaari T', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Thirukovilur', 'Tnagar', '2404130009', '', '1', 'upload_files/candidate_tracker/71416851916_Vijaya ganapathi.pdf', NULL, '1', '2024-04-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-13 04:47:17', 1, '2024-04-13 04:51:54', 0, NULL, 1),
(18520, 'Jagannathan', '14', '8148171112', '9042767205', 'jaganjagan9590@gmail.com', '2002-01-14', 22, '3', '2', 'Adhi', 'Coolie', 8000.00, 1, 0.00, 8000.00, 'No. 2 Jamal mohideen Street, pudupet Chennai', 'No. 2 Jamal Mohideen Street, Pudupet Chennai', '2404130010', '', '1', 'upload_files/candidate_tracker/81032840590_JagannathanResume .pdf', NULL, '1', '2024-04-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-13 04:47:43', 1, '2024-04-13 04:51:18', 0, NULL, 1),
(18521, 'Arunkumar p', '6', '9384620199', '8124754043', 'arunkumar9445057594@gmail.com', '2002-01-09', 22, '2', '2', 'A palani', 'Entrepreneur', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2404130011', '50', '1', 'upload_files/candidate_tracker/43734991422_DOC-20240410-WA0000..pdf', NULL, '1', '2024-04-13', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expecting high salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-13 04:49:53', 130, '2024-04-13 03:08:15', 0, NULL, 1),
(18522, 'V. Ulaganathan', '6', '7358591622', '7449103316', 'ulaganathanambika@gmail.com', '2003-02-28', 21, '2', '2', 'V. Ambika', 'Home maker', 12000.00, 1, 15000.00, 17000.00, 'No:2e, m.g.R salai, Perungudi, Chennai-600096', 'No:2e, M.G.R Salai, Perungudi, Chennai-600096', '2404130012', '50', '2', 'upload_files/candidate_tracker/52786622342_ulaganathan_resume[1].docx', NULL, '1', '2024-04-13', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT TRY TO CONVINCING ME IN SALES', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-13 04:50:06', 108, '2024-04-13 03:23:04', 0, NULL, 1),
(18523, 'Parthiban R', '5', '7397437826', '7397350509', 'Parthiban290509@gmail.com', '2002-05-29', 21, '2', '2', 'Ramesh R', 'Chennai port trust hospital', 15000.00, 1, 0.00, 16000.00, 'Ennore, Chennai', 'Ennore, Chennai', '2404130013', '45', '1', 'upload_files/candidate_tracker/97003061084_Parthiban resume-1.pdf', NULL, '1', '2024-04-13', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interested in it related job right now not completed it related course so, need money for course so, right now looking for any job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-13 05:11:16', 130, '2024-04-13 03:02:20', 0, NULL, 1),
(18524, 'M.Parameshwari', '6', '6381002435', '', 'automurugan78@gmail.com', '2003-03-18', 21, '2', '2', 'Murugan .R', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Manamadurai', 'Manamadurai', '2404130014', '50', '1', 'upload_files/candidate_tracker/20577398180_parameshwari resume.docx', NULL, '1', '2024-04-13', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '2023 past out , she is last 6month worked MLM company so, she is said sales is difficult right now looking for non voice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-13 05:11:17', 112, '2024-04-22 04:25:37', 0, NULL, 1),
(18525, 'Abhishek YS', '6', '6381524205', '8925270813', 'Yuvaraja.abishek@gmail.com', '2003-03-09', 21, '2', '2', 'Yuvaraja J', 'Optometrist', 30000.00, 1, 0.00, 16000.00, 'Encore Chennai -57', 'Encore Chennai-57', '2404130015', '45', '1', 'upload_files/candidate_tracker/63641220314_ABISHEK.Y.Si_20240411_200700_0000.pdf', NULL, '1', '2024-04-13', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interested in video maker not completed the course right now need money for course completion any time  quick the job ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-13 05:12:56', 108, '2024-04-13 03:21:44', 0, NULL, 1),
(18526, 'Ashok kumar S', '5', '9585275402', '9994663106', 'ashokthanam0895@gmail.com', '1994-08-20', 29, '2', '2', 'Sivalingam P', 'Office', 12000.00, 2, 0.00, 18000.00, 'Thiruvannamalai', 'Saidapet', '2404130016', '50', '1', 'upload_files/candidate_tracker/26544352791_Resume.pdf', NULL, '1', '2024-04-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-13 05:35:57', 112, '2024-04-22 04:25:45', 0, NULL, 1),
(18527, '', '0', '9944535641', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404130017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-13 05:43:18', 0, NULL, 0, NULL, 1),
(18528, 'Arunkumar', '4', '9944535631', '', 'arunkumar.nura18@gmail.com', '1998-07-15', 25, '2', '2', 'Kannan', 'Business', 60000.00, 3, 12000.00, 13000.00, 'Gandarvakottai', 'Gandarvakottai', '2404130018', '1', '2', 'upload_files/candidate_tracker/58721013718_Arunkumar Kannan.docx', NULL, '1', '2024-04-13', 2, '', '3', '59', '2024-04-16', 174000.00, '', '5', '1970-01-01', '1', 'Selected for Sithy Team', '1', '1', '4', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-13 05:44:18', 60, '2024-04-16 10:39:06', 0, NULL, 1),
(18529, 'Madhan Kumar C S', '6', '8939044524', '', 'madhanshivakumar98@gmail.com', '1998-01-17', 26, '2', '2', 'C K Sivakumar', 'Govt officer (Rtd)', 40000.00, 1, 4.50, 5.00, 'Chennai', 'Chennai', '2404130019', '1', '2', 'upload_files/candidate_tracker/14748886162_MadhanKumar Resume Off 24 offfff-1.pdf', NULL, '1', '2024-04-13', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability is doubt ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-13 05:48:09', 108, '2024-04-13 03:32:17', 0, NULL, 1),
(18530, '', '0', '9342286753', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404130020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-13 05:56:08', 0, NULL, 0, NULL, 1),
(18531, 'Mohammed Asif', '20', '6383010003', '9840663739', 'asifjsa106@gmail.com', '2002-09-12', 21, '2', '2', 'Mohammed jarar', 'Driver', 15000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2404130021', '50', '1', 'upload_files/candidate_tracker/14229955568_Asif resume 2.pdf', NULL, '2', '2024-04-13', 0, '', '1', '57', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-13 06:35:46', 1, '2024-04-13 06:47:00', 0, NULL, 1),
(18532, 'mohanraj r', '6', '9094510435', '', '747mohan@gmail.com', '1996-08-16', 27, '2', '2', 'banumathi', 'self employed', 40000.00, 1, 30000.00, 35000.00, 'chennai', 'chennai', '2404130022', '1', '2', 'upload_files/candidate_tracker/50703955188_resume.pdf', NULL, '1', '2024-04-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-13 07:19:51', 108, '2024-04-13 04:40:57', 0, NULL, 1),
(18533, '', '0', '7867801450', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404130023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-13 08:32:19', 0, NULL, 0, NULL, 1),
(18534, 'Janani', '4', '7397344171', '', 'sharmijanani2002@gmail.com', '2002-05-30', 21, '6', '2', 'Sharmila', 'Tailor', 20000.00, 2, 0.00, 20000.00, 'Poonamallee', 'Poonamallee', '2404130024', '', '1', 'upload_files/candidate_tracker/33316101650_CV_2024040810465157.pdf', NULL, '1', '2024-04-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-13 10:44:42', 1, '2024-04-13 10:50:53', 0, NULL, 1),
(18535, '', '0', '8903649506', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404130025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-13 11:46:23', 0, NULL, 0, NULL, 1),
(18536, '', '0', '8838086744', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404130026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-13 12:51:58', 0, NULL, 0, NULL, 1),
(18537, 'Balachandar P', '20', '7010194585', '', 'pchandar864@gmail.com', '2003-01-14', 21, '2', '2', '9626985864', 'Government employee', 25000.00, 2, 0.00, 16000.00, '1/324, k k nagar , sendurai, Natham (tk),Dindigul.', '1/324, K K Nagar , Sendurai, Natham (Tk),Dindigul.', '2404130027', '29', '1', 'upload_files/candidate_tracker/47043725049_Resume.pdf', NULL, '3', '2024-04-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-13 04:32:27', 1, '2024-04-13 04:59:39', 0, NULL, 1),
(18538, '', '0', '8939718697', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404150001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-15 03:43:02', 0, NULL, 0, NULL, 1),
(18539, 'Sathiyanarayanan.N', '4', '9894487120', '', 'Sathiyanarayanan007tnj@gmail.com', '2004-01-07', 20, '2', '2', 'Nandhagopal. N', 'Tailor', 25000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2404150002', '1', '1', 'upload_files/candidate_tracker/77362689813_sathiya resume.pdf', NULL, '1', '2024-04-15', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-15 04:36:32', 108, '2024-04-15 03:01:14', 0, NULL, 1),
(18540, 'Shunmathy', '4', '9361398578', '7200193910', 'shunmathy2002@gmail.com', '2002-12-06', 21, '2', '2', 'Sivakumar', 'Manager', 30000.00, 0, 0.00, 14000.00, 'Thanjavur', 'Thanjavur', '2404150003', '1', '1', 'upload_files/candidate_tracker/8944841791_Shunmathy Resume.pdf', NULL, '1', '2024-04-15', 0, '', '3', '59', '2024-04-16', 152400.00, '', '5', '1970-01-01', '1', 'Selecetd for Sithy Team Can give a try 5050 sustainability much preferred for Non Voice', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-15 04:36:36', 60, '2024-04-16 06:44:22', 0, NULL, 1),
(18541, 'V. Krishna', '5', '8296285925', '', 'Krrishkrishan0@gmail.com', '2005-02-17', 19, '2', '2', 'V. Venkatramana', 'Building contractor', 30000.00, 1, 0.00, 200000.00, 'Kampli', 'Kampli', '2404150004', '1', '1', 'upload_files/candidate_tracker/78391807786_Fresher resume.pdf', NULL, '2', '2024-04-15', 0, '', '8', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not attended the interview', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-04-15 04:49:03', 127, '2024-04-16 04:00:04', 0, NULL, 1),
(18542, 'Raveena R', '6', '9344221186', '9500213684', 'ravenajrrrk761@gmail.com', '2002-02-18', 22, '2', '2', 'Jamuna P', 'VAO', 24000.00, 2, 0.00, 20000.00, 'Ambur', 'Ambur', '2404150005', '1', '1', 'upload_files/candidate_tracker/5246523247_Raveena Ranjith Kumar . resume .pdf', NULL, '1', '2024-04-15', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No skill ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-15 05:25:34', 112, '2024-04-15 06:03:33', 0, NULL, 1),
(18543, 'Barathperiyasamy', '4', '8270938481', '', 'kingbarath692@gmail.com', '2003-05-15', 20, '2', '2', 'PERIYASAMY.P', 'Telecalling', 20000.00, 2, 0.00, 18000.00, 'Kallakurichi', 'Kallakurichi', '2404150006', '34', '1', 'upload_files/candidate_tracker/14612623566_BarathResume-1.doc', NULL, '1', '2024-04-15', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Performance And Communication is Not Good', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-15 05:36:24', 112, '2024-04-15 05:22:39', 0, NULL, 1),
(18544, 'Siddappa', '5', '9686450775', '9019979385', 'siddubmk775@gmail.com', '1998-05-10', 25, '2', '2', 'Bhimashappa', 'Agriculture', 500000.00, 5, 300000.00, 500000.00, 'Gulbarga', 'Bangalore', '2404150007', '49', '2', 'upload_files/candidate_tracker/65151788843_Siddappa Resume (1).pdf', NULL, '1', '2024-04-19', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-15 06:10:43', 1, '2024-04-15 06:16:34', 0, NULL, 1),
(18545, 'Janani', '6', '9025298358', '9363637718', 'janujanani802@gmail.com', '2003-08-12', 20, '2', '2', 'Arumugam', 'Auto driver /plumber', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2404150008', '46', '2', 'upload_files/candidate_tracker/80725361334_resume.docx', NULL, '1', '2024-04-15', 1, '', '3', '59', '2024-04-22', 180000.00, '', '5', '1970-01-01', '2', 'Selected fr Giri Team Relationship Executive Role Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-15 06:12:18', 60, '2024-04-20 07:28:06', 0, NULL, 1),
(18546, 'lokesh a', '5', '8217450199', '', 'lokeylokesh943@gmail.com', '1995-10-11', 28, '2', '2', 'anand t', 'clerk', 25000.00, 1, 26000.00, 32000.00, 'rajaji nagar bangalore', 'rajaji nagar bangalore', '2404150009', '1', '2', 'upload_files/candidate_tracker/47435097627_lokesh resume.pdf', NULL, '1', '2024-04-16', 0, '', '3', '59', '2024-04-18', 372000.00, '', '5', '1970-01-01', '1', 'Selected for Relationship Manager Role in Bangalore Location Need to be  analysed in 7 days training', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-04-15 06:17:56', 60, '2024-04-18 10:24:12', 0, NULL, 1),
(18547, 'Kiruthika.s', '6', '6374788023', '9003591532', 'kiruthikasethu2@gmail.com', '2002-08-02', 21, '2', '2', 'Jayalakshmi.s', 'Agriculture', 65000.00, 0, 0.00, 20000.00, 'Kuttalam', 'Kuttalam', '2404150010', '31', '1', 'upload_files/candidate_tracker/34849203453_Kiruthika _Resume 1.pdf', NULL, '1', '2024-04-15', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No skill for sales jop', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-15 06:52:38', 112, '2024-04-15 05:40:23', 0, NULL, 1),
(18548, 'Keerthivasan', '4', '8531910520', '9003591532', 'Keerthivasan20021120@gmail.com', '2002-11-20', 21, '3', '2', 'Priya', 'Farmer', 80000.00, 1, 18000.00, 15000.00, 'Mayiladuthurai', 'Chennai', '2404150011', '', '2', 'upload_files/candidate_tracker/62343438469_Keerthivasan _Resume_1.pdf', NULL, '1', '2024-04-15', 2, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-15 06:53:29', 1, '2024-04-15 07:08:23', 0, NULL, 1),
(18549, '', '0', '8050210525', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404150012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-15 07:10:20', 0, NULL, 0, NULL, 1),
(18550, '', '0', '7845450838', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404150013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-15 07:12:00', 0, NULL, 0, NULL, 1),
(18551, 'Deepika anbarasan', '6', '8056159895', '9941721741', 'deepikaanbarasan0808@gmail.com', '2002-08-08', 0, '2', '2', 'Anbarasan', 'B.com general', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Vandalur', '2404150014', '50', '1', 'upload_files/candidate_tracker/86073260965_DEEPIKA A resume.pdf', NULL, '1', '2024-04-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-15 07:44:48', 112, '2024-04-15 06:06:14', 0, NULL, 1),
(18552, 'Dhanapal v', '6', '6379234534', '', 'Dhanapal05v@gmail.com', '1997-05-30', 26, '2', '2', 'Veerasamy', 'Farmer', 20.00, 1, 300000.00, 300000.00, 'Ekkatuthankal', 'Chennai', '2404150015', '1', '2', 'upload_files/candidate_tracker/13005022990_Dhanapal resume analyst.pdf', NULL, '1', '2024-04-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-15 07:54:12', 112, '2024-04-15 05:13:00', 0, NULL, 1),
(18553, '', '0', '9360264137', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404150016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-15 08:19:53', 0, NULL, 0, NULL, 1),
(18554, 'Anuradha s', '10', '6360697928', '', 'anuradhasaanu@gmail.com', '1998-04-13', 26, '2', '2', 'Padma', 'House wife', 150000.00, 1, 24000.00, 350000.00, 'Bangalore', 'Bangalore', '2404150017', '49', '2', 'upload_files/candidate_tracker/25792622157_Anuradha Resume.pdf', NULL, '1', '2024-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-15 08:32:59', 1, '2024-04-15 08:36:00', 0, NULL, 1),
(18555, 'Prasanna kumar s', '4', '8939797072', '', 'Prasanna1996mani@gmail.com', '1996-09-22', 27, '2', '2', 'Parent', 'Owner', 25000.00, 1, 25000.00, 27000.00, 'Chennai', 'Chennai', '2404150018', '50', '2', 'upload_files/candidate_tracker/80748440687_resume.pdf', NULL, '1', '2024-04-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-15 09:02:48', 112, '2024-04-15 04:47:57', 0, NULL, 1),
(18556, 'Gowtham . B', '6', '8056858639', '', 'Bgowthamsmart34@gmail.com', '1996-05-22', 27, '2', '2', 'Geetha', 'Cooly', 18000.00, 1, 18000.00, 20000.00, 'Santhavellore village', 'Sunguvarchatram', '2404150019', '50', '2', 'upload_files/candidate_tracker/17749853538_2025 Gowtham reasume.pdf', NULL, '1', '2024-04-15', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he did not observe what we saying', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-15 09:05:18', 112, '2024-04-15 06:20:25', 0, NULL, 1),
(18557, 'Sangati vinay kumar', '30', '7993364872', '7993364862', 'princevinaykuamr2@gmail.com', '2002-07-02', 21, '3', '2', 'Sudhakar', 'Farmer', 15000.00, 2, 0.00, 200000.00, 'kadapa', 'Banglore', '2404150020', '', '1', 'upload_files/candidate_tracker/41387977050_VINAY RESUME.pdf', NULL, '2', '2024-04-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '9', '1', '0', '3', '4', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-15 09:58:16', 1, '2024-04-15 10:12:21', 0, NULL, 1),
(18558, '', '0', '9043623752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404150021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-15 11:07:25', 0, NULL, 0, NULL, 1),
(18559, 'RAJESH R', '6', '9042195892', '9790803652', 'rajeshprabhuramapuram95@gmail.com', '2004-05-31', 19, '2', '2', 'Rajan', 'Operation theatre worker', 20000.00, 0, 18.50, 22000.00, 'Chennai', 'Chennai', '2404150022', '29', '2', 'upload_files/candidate_tracker/57277952913_RAJESH 2024.pdf', NULL, '1', '2024-04-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'His Distance Is Too Long And Also He Is Not Willing To Travel That Much Of Distance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-15 11:33:39', 104, '2024-04-22 06:46:49', 0, NULL, 1),
(18560, 'Dhivyashree', '6', '6383263364', '6384315794', 'dhivyashree14032001@gmail.com', '2001-03-14', 23, '2', '2', 'Prabagaran', 'Cooperative bank retired officer', 30000.00, 1, 0.00, 20000.00, 'THENI', 'Saidapet chennai', '2404150023', '29', '1', 'upload_files/candidate_tracker/2044008196_DS_Resume.docx', NULL, '1', '2024-04-16', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for sales ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-15 12:58:37', 112, '2024-04-16 10:44:01', 0, NULL, 1),
(18561, 'roopa halemani', '5', '9980352702', '', 'hroopa08@gmail.com', '2001-06-09', 22, '2', '2', 'basavanneppa halemani', 'farmer', 3000.00, 1, 0.00, 3.50, 'at po. hattimattur dist. haveri', 'domlur', '2404150024', '1', '1', 'upload_files/candidate_tracker/26167334684_Roopa_Halemani_Resume.pdf', NULL, '1', '2024-04-16', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication and have basic knowledge about sales', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-04-15 03:20:21', 126, '2024-04-16 12:49:05', 0, NULL, 1),
(18562, 'Mohamed Ashique N', '6', '7539995481', '', 'mohamedashique24@gmail.com', '1999-06-24', 24, '2', '2', 'Muneera', 'Homemaker', 60000.00, 1, 35000.00, 40000.00, 'Ooty', 'Chennai', '2404160001', '1', '2', 'upload_files/candidate_tracker/89261074399_Ashique resume March 24.pdf', NULL, '1', '2024-04-16', 0, '', '3', '59', '2024-04-29', 432000.00, '', '5', '1970-01-01', '1', 'Selected for Santhosh Team in staff Role Relationship Manager Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-16 01:21:13', 60, '2024-04-29 10:23:44', 0, NULL, 1),
(18563, 'Anandhagopal', '6', '6383425616', '', 'anandhagopal7@gmail.com', '1996-07-18', 27, '2', '2', 'M Ramadoss', 'Farmer', 8.00, 1, 0.00, 15000.00, 'Virudhunagar', 'Chennai, avadi', '2404160002', '45', '1', 'upload_files/candidate_tracker/71585738827_CV_2023110320291489.pdf', NULL, '1', '2024-04-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 04:09:05', 112, '2024-04-16 12:39:06', 0, NULL, 1),
(18564, 'DHANAPRAKASH M', '6', '6380141905', '', 'dhanaprakash905@gmail.com', '2000-08-06', 23, '2', '2', 'Murugan A C', 'Business', 50000.00, 1, 0.00, 20000.00, 'Erode', 'Chennai', '2404160003', '51', '1', 'upload_files/candidate_tracker/71743625543_DhanaprakashCV.PDF', NULL, '1', '2024-04-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '50 % ok , so i will check 7 days training , candidate only need tele caller work only. not interested for field work', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 04:47:37', 112, '2024-04-29 09:33:14', 0, NULL, 1),
(18565, 'syeda bisma rifath', '5', '8088166702', '', 'bismabrill04@gmail.com', '2002-03-04', 22, '2', '2', 'syed yunus quadri', 'government employee', 45000.00, 3, 0.00, 25000.00, 'hospet vijya nagar', 'kudlu gate bangalore', '2404160004', '51', '1', 'upload_files/candidate_tracker/60505171646_Bisma CV.pdf', NULL, '1', '2024-04-16', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interested in IT process', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 04:58:25', 126, '2024-04-16 12:24:34', 0, NULL, 1),
(18566, 'Gunasundari', '4', '9944392438', '', 'Gguna1757@gmail.com', '2000-07-01', 23, '2', '2', 'Balu', 'farmer', 10000.00, 4, 0.00, 12000.00, 'Ammapettai', 'Ammapettai', '2404160005', '1', '1', 'upload_files/candidate_tracker/17156628386_Image to pdf 08-Apr-2024.pdf', NULL, '1', '2024-04-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telecalling', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-16 05:01:32', 108, '2024-04-16 12:20:26', 0, NULL, 1),
(18567, 'Maheshwari', '4', '7558156315', '', 'Maheshwari140597@gmail.com', '1997-05-14', 26, '2', '2', 'Rajendran', 'Farmer', 10000.00, 2, 12000.00, 15000.00, '15000', 'Ammapettai', '2404160006', '1', '2', 'upload_files/candidate_tracker/99889726015_maheswari resume.pdf', NULL, '1', '2024-04-16', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-16 05:03:05', 108, '2024-04-16 12:21:07', 0, NULL, 1),
(18568, 'Akilan', '4', '6379473120', '', 'akilanswamy1012@gmail.com', '2000-12-10', 23, '2', '2', 'Amirthavalli', 'housewife', 15000.00, 1, 0.00, 13000.00, 'Thiruvaiyaru', 'Thirvaiyaru', '2404160007', '1', '1', 'upload_files/candidate_tracker/9483559343_CV_2023102120330161.pdf', NULL, '1', '2024-04-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for process', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-16 05:07:59', 108, '2024-04-16 12:21:45', 0, NULL, 1),
(18569, 'Rathna Priya', '5', '7418493663', '7904144571', 'rathna2k@hotmail.com', '2000-10-27', 23, '2', '1', 'Logesh R', 'Employee', 32000.00, 3, 28000.00, 28000.00, 'Ambattur', 'Ambattur', '2404160008', '50', '2', 'upload_files/candidate_tracker/67053179338_rathna.pdf', NULL, '1', '2024-04-16', 0, '', '3', '59', '2024-04-17', 385000.00, '', NULL, '2024-09-02', '2', 'Selected for Santhosh Team Relationship Manager Role Can be trained in  our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 05:13:33', 60, '2024-04-17 10:22:34', 0, NULL, 1),
(18570, 'D surya', '6', '7893089840', '8074192442', 'suryasuri242@gmail.com', '1997-07-25', 26, '2', '2', 'Raghavendra', 'Daily wages', 20000.00, 3, 15000.00, 19000.00, 'Andhra Pradesh', 'Nadiyambakam vill post ponney thaluka tiruvalur', '2404160009', '50', '2', 'upload_files/candidate_tracker/43536614372_surya CHENNAI.pdf', NULL, '1', '2024-04-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 05:13:36', 112, '2024-04-16 12:38:00', 0, NULL, 1),
(18571, '', '0', '9840373739', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404160010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-16 05:17:39', 0, NULL, 0, NULL, 1),
(18572, 'Peddareddygari S Pavan Tej', '5', '9490709616', '', 'pavantejreddy291999@gmail.com', '2000-06-29', 23, '2', '2', 'Peddareddygari Somasekhar', 'Self Employed', 60000.00, 1, 0.00, 22000.00, 'K.R.Palli,Chittoor', 'K.R.Puram,Bengaluru', '2404160011', '39', '1', 'upload_files/candidate_tracker/5283840775_PSPT RESUME 2.pdf', NULL, '1', '2024-04-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-16 05:18:25', 1, '2024-04-16 05:22:21', 0, NULL, 1),
(18573, 'Vijayalakshmi', '6', '9663128109', '8892643629', 'vijjipillai123@gmail.com', '1993-09-25', 30, '2', '1', 'Vaddhi Vijaya Chandra', 'Employee', 35000.00, 1, 17500.00, 20000.00, 'Anantapur', 'Bangalore', '2404160012', '49', '2', 'upload_files/candidate_tracker/7257138852_RESUMEEE(2) (1).pdf', NULL, '1', '2024-04-16', 0, '', '3', '59', '2024-04-19', 195000.00, '', NULL, '2024-09-12', '1', 'Selected for Relationship Executive Role,Need to analyse in 7 days training sustainability need to have a check', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-04-16 05:20:08', 126, '2024-08-06 12:55:27', 0, NULL, 1),
(18574, 'Mahmad Jameer', '6', '9353155848', '', 'mahmdjameer@gmail.com', '1998-08-08', 25, '2', '2', 'Husen sab', 'farmer', 12.00, 5, 18.00, 25.00, 'bangalore', 'bangalore', '2404160013', '49', '2', 'upload_files/candidate_tracker/13827171413_Mahmad Jameer.pdf', NULL, '1', '2024-04-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-16 05:22:50', 1, '2024-04-18 06:44:00', 0, NULL, 1),
(18575, 'Jhancy joy', '5', '9606842107', '7406644264', 'janu.joy14@gmail.com', '1996-08-16', 27, '2', '2', 'Susan joy', 'Day care', 40000.00, 1, 23000.00, 30000.00, 'Patel Narayana Swamy layout siddapura Whitefield', 'Patel Narayana Swamy layout siddapura Whitefield', '2404160014', '49', '2', 'upload_files/candidate_tracker/78455862219_Jaanu_CV.pdf', NULL, '1', '2024-04-16', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'immediate joining selected for DM channel previous in hand 23k suggested 24k', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 05:27:29', 60, '2024-04-20 06:23:13', 0, NULL, 1),
(18576, 'shameer j', '5', '9962813898', '', 'jestenosham46@gmail.com', '1998-02-19', 26, '2', '2', 'kurshith begam', 'house wife', 20.00, 2, 4.00, 40.00, 'ecr Neelangarai', 'ecr Neelangarai', '2404160015', '1', '2', 'upload_files/candidate_tracker/28528694853_SHAMEER Resume 2024 (2).pdf', NULL, '1', '2024-04-16', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-16 05:33:47', 112, '2024-04-16 12:43:18', 0, NULL, 1),
(18577, 'Murali V', '5', '7892770170', '', 'muraligowda397@gmail.com', '1997-04-30', 26, '2', '2', 'Venkateshappa', 'Former', 20000.00, 0, 0.00, 3.60, 'Bangarpet', 'Bangarpet', '2404160016', '39', '1', 'upload_files/candidate_tracker/36541021713_Murali professional resume.pdf', NULL, '1', '2024-04-16', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of confident and communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 05:38:13', 126, '2024-04-16 02:28:50', 0, NULL, 1),
(18578, 'Ashrafdeen.P', '6', '6379380993', '8190029579', 'ashrafdeen431@gmail.com', '2000-06-19', 23, '1', '2', 'Pichai mohammed', 'Businesses', 30000.00, 1, 17913.00, 20000.00, '48/4 North Street villpuram-605602', '11/9 anandhi mens hostel Anna nagar CHN-:600101', '2404160017', '', '2', 'upload_files/candidate_tracker/64766114648_ASRAF RESUME COPY.pdf', NULL, '1', '2024-04-16', 20, '77870', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Job Needed Person Letxquots try 7 Days Trial ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 05:50:10', 112, '2024-04-16 12:46:03', 0, NULL, 1),
(18579, 'Ajay k', '6', '8056170153', '9345836299', 'ronaldinhoaja09@gmail.com', '1999-03-21', 25, '2', '2', 'Kumaresh', 'Painter', 30000.00, 2, 12500.00, 16500.00, '9/5. Madurai street Ayanavaram Chennai 23', '9/5 madurai street Ayanavaram Chennai 23', '2404160018', '50', '2', 'upload_files/candidate_tracker/87991860768_Ajay K CV.pdf', NULL, '1', '2024-04-16', 30, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Voice is Not Clear,Also Communication And Performance is Not Good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 06:05:26', 112, '2024-04-16 12:46:17', 0, NULL, 1),
(18580, 'Jenifer priya v', '5', '9566049262', '8778751755', 'jeniferpriya764@gmail.com', '1997-10-17', 26, '2', '2', 'Vijayagopal', 'Auto driver', 30000.00, 1, 18000.00, 25000.00, 'No 22naval hospital 1st Street Periyamet chennai.3', 'No 22 naval hospital 1st Street Periyamet Chennai', '2404160019', '50', '2', 'upload_files/candidate_tracker/19670190921_Resume.pdf', NULL, '1', '2024-04-16', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 06:11:18', 112, '2024-04-16 12:51:56', 0, NULL, 1),
(18581, '', '0', '6309338837', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404160020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-16 06:16:05', 0, NULL, 0, NULL, 1),
(18582, 'Arun PV', '5', '7892747805', '', 'arunpv1997@gmail.com', '1997-11-01', 26, '2', '2', 'Na', 'Na', 20.00, 0, 0.00, 6.00, 'Gauribidanur', 'Gauribidanur', '2404160021', '37', '2', 'upload_files/candidate_tracker/78267374382_Arun.pdf', NULL, '1', '2024-04-16', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in field work', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 06:17:09', 126, '2024-04-16 12:19:49', 0, NULL, 1),
(18583, 'Guna', '6', '7338916297', '7695843271', 'rockguna17@gmail.com', '2002-03-10', 22, '2', '2', 'Parents', 'Business', 30000.00, 1, 0.00, 16000.00, 'No 207 kuppu Street,madhavaram Chennai -51', 'Madhavaram', '2404160022', '1', '1', 'upload_files/candidate_tracker/18641388177_Guna resume.pdf', NULL, '1', '2024-04-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1024', '', NULL, NULL, NULL, 1, '2024-04-16 06:19:02', 104, '2024-04-18 04:19:40', 0, NULL, 1),
(18584, 'Shivaprasad s', '5', '6363649913', '', 'shivushivu92471@gmail.com', '2000-09-04', 23, '2', '2', 'Sadamurthy', 'Fresher', 20000.00, 0, 0.00, 18000.00, 'Chamarajanagara', 'Benglore', '2404160023', '51', '1', 'upload_files/candidate_tracker/34180925840_Shivaprasad s Resume.pdf', NULL, '1', '2024-04-16', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Father is working in same insurance field', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 06:40:14', 112, '2024-04-30 06:30:01', 0, NULL, 1),
(18585, 'Mitesh R Bedre', '13', '7090709062', '', 'miteshmitu777@gmail.com', '1997-07-23', 26, '2', '2', 'pratibha', 'housewife', 25000.00, 1, 0.00, 400000.00, 'hassan', 'hassan', '2404160024', '47', '1', 'upload_files/candidate_tracker/44804284302_Mitesh R Bedre Resume..pdf', NULL, '1', '2024-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-16 06:41:06', 1, '2024-04-16 06:44:55', 0, NULL, 1),
(18586, 'Inbarasan s', '6', '6374624693', '', 'inbarasan6374@gmail.com', '2003-03-20', 21, '6', '2', 'Subramaniyan', 'Farmer', 30000.00, 1, 15000.00, 18000.00, 'Thanjavur', 'Thanjavur', '2404160025', '', '2', 'upload_files/candidate_tracker/15873725505_Inbarasan Resume.pdf', NULL, '1', '2024-04-17', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-16 07:01:53', 1, '2024-04-16 07:06:35', 0, NULL, 1),
(18587, 'Sandeepa K B', '4', '9008142333', '', 'sandeepkb98@gmail.com', '1998-02-19', 26, '2', '2', 'Baby M', 'Homeguards', 10000.00, 1, 2.50, 4.00, 'Banglore', 'Banglore', '2404160026', '49', '2', 'upload_files/candidate_tracker/52878636594_SANDEEP CV-1.pdf', NULL, '1', '2024-04-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-16 07:13:52', 1, '2024-04-16 07:17:00', 0, NULL, 1),
(18588, '', '0', '7010793928', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404160027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-16 07:45:12', 0, NULL, 0, NULL, 1),
(18589, 'Cathrinejoys', '6', '7338931207', '9566026480', 'Jcathrine76@gmail.com', '1996-12-10', 27, '2', '1', 'Vignesh kumar', 'Graphic designer', 40000.00, 1, 23000.00, 24000.00, 'Chennai', 'Thiruvanmiyur', '2404160028', '50', '2', 'upload_files/candidate_tracker/54484180491_CATHRINE RESUME.pdf', NULL, '1', '2024-04-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 07:49:02', 112, '2024-04-16 04:12:56', 0, NULL, 1),
(18590, 'Melvin.r', '5', '7411352285', '', 'melvinr2285@gmail.com', '2005-05-03', 18, '2', '2', 'Ramesh', '_', 20.00, 2, 18.00, 25.00, 'Vivekanagar further extension', 'Vivekanagar further extension', '2404160029', '49', '2', 'upload_files/candidate_tracker/40879770491_Resume - Melvin.docx', NULL, '1', '2024-04-16', 30, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lack of  knowledge about sales and not interested in field work', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 07:57:54', 126, '2024-04-16 02:39:52', 0, NULL, 1),
(18591, 'shaiksubhani', '5', '9441500634', '9035869955', 'sgsubhani2010@gmail.com', '1999-08-12', 24, '2', '2', 'haik jameer', 'farmer', 70000.00, 2, 17000.00, 25000.00, 'valaparla', 'angl', '2404160030', '39', '2', 'upload_files/candidate_tracker/61368932102_Shaik Subhani_MBA Qualified_with 1 year 2months of customer support experience.pdf', NULL, '1', '2024-04-16', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 08:00:52', 126, '2024-04-16 03:39:58', 0, NULL, 1),
(18592, 'Qureshi Mohammad shakeel', '5', '7799099938', '9441500634', 'qsharoi7799@gmail.com', '2000-07-29', 23, '2', '2', 'K masthan', 'Mutton marchent', 50000.00, 1, 0.00, 25000.00, 'Proddatur', 'Marthahalli', '2404160031', '39', '1', 'upload_files/candidate_tracker/30643025599_Shakil Resume 77.pdf', NULL, '1', '2024-04-16', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of communication and confident', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-16 08:05:36', 126, '2024-04-16 03:37:31', 0, NULL, 1),
(18593, 'Vinitha S', '5', '7418340247', '', 'vinithayuva2015@gmail.com', '1993-04-14', 31, '2', '1', 'Sadhananadam', 'Farmer', 5000.00, 1, 0.00, 25000.00, 'Tirupattur', 'Tirupattur', '2404160032', '1', '1', 'upload_files/candidate_tracker/50162090191_VINITHA RESUME -2023.docx', NULL, '2', '2024-04-16', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and knowledge about sales', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-04-16 11:17:28', 126, '2024-04-16 05:09:18', 0, NULL, 1),
(18594, 'Swarnalakshmi', '6', '9940572780', '9791922803', 'swarnadollson2115@gmail.com', '2002-12-15', 21, '2', '2', 'Guruvayurappan', 'Hotel server', 150000.00, 1, 0.00, 17000.00, 'Chennai', 'Ayanavaram', '2404160033', '29', '1', 'upload_files/candidate_tracker/92591736843_swarna updated resume.docx', NULL, '1', '2024-04-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-16 11:33:39', 1, '2024-04-16 11:37:38', 0, NULL, 1),
(18595, 'RITHISHKUMAR V', '4', '9952963596', '', 'Rk6621472@gmail.com', '2001-11-28', 22, '2', '2', 'Velayutham', 'Painter', 20000.00, 0, 0.00, 18000.00, 'Manali, Chennai', 'Manali, Chennai', '2404160034', '1', '2', 'upload_files/candidate_tracker/71575163662_Curriculum Vitae Rk.pdf', NULL, '1', '2024-04-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2024-04-16 01:28:51', 1, '2024-04-16 01:36:31', 0, NULL, 1),
(18596, 'Vasumathi Anandan', '6', '6385119821', '9941139753', 'mythilivasumathi@gmail.com', '2000-10-21', 23, '2', '2', 'Mythili', 'Homemaker', 17000.00, 1, 0.00, 14500.00, 'Pattabiram', 'Pattabiram', '2404170001', '45', '2', 'upload_files/candidate_tracker/26132847696_vasumathi resume pdf.pdf', NULL, '1', '2024-04-17', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-17 04:57:25', 112, '2024-04-17 12:45:49', 0, NULL, 1),
(18597, 'Vanmathi V', '4', '6380724364', '9894677927', 'vanmathi0406@gmail.com', '1997-06-04', 26, '2', '2', 'Varadharaj P', 'Canteen', 6000.00, 1, 12000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2404170002', '1', '2', 'upload_files/candidate_tracker/59318765784_Vanmathi V.pdf', NULL, '1', '2024-04-17', 10, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '2024-04-29', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-17 04:57:34', 108, '2024-04-17 10:49:12', 0, NULL, 1),
(18598, 'Padma Vadhana Subbaraman', '6', '9150047426', '7200704900', 'padmavadhana.s.12@gmail.com', '1998-03-12', 26, '2', '1', 'Venkatasubramanian', 'Sales', 70000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2404170003', '50', '1', 'upload_files/candidate_tracker/46026191519_CV - Padma Vadhana S-3-2 (1).pdf', NULL, '1', '2024-04-17', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Her Communication Good ,But She is Not Suitable For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-17 05:00:33', 112, '2024-04-17 12:46:07', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18599, 'Farzana', '4', '7397665919', '7558155184', 'Farzanaakbar8@gmail.com', '2001-11-08', 22, '2', '2', 'Akbar Ali', 'BUSINESS', 90000.00, 1, 0.00, 10000.00, '65,Kayithukara Street,Mela alangam', '65,Kayithukara Street,Mela Alangam', '2404170004', '1', '1', 'upload_files/candidate_tracker/71399553103_inbound432899692.pdf', NULL, '1', '2024-04-17', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is ok with the profile fresher and ready to join imeediately....have laptop ....have good exposure hand every situation......highly job need and past 1 year seeking for job...kindly check once and confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-17 05:23:36', 108, '2024-04-17 01:17:15', 0, NULL, 1),
(18600, 'Aravind G', '6', '9344605679', '9944375423', 'Ga171435@gmail.com', '1994-10-06', 29, '2', '1', 'Ganesan k', 'Real estate', 100000.00, 0, 20000.00, 25000.00, 'Avadi chennai', 'Avadi chennai', '2404170005', '50', '2', 'upload_files/candidate_tracker/16899118841_Aravind resume-2.docx', NULL, '1', '2024-04-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-17 05:32:06', 112, '2024-04-17 12:48:04', 0, NULL, 1),
(18601, 'Kandlapalli balaram', '5', '9182557205', '', 'balaramkandlapalli4@gmail.com', '1997-05-24', 26, '2', '2', 'K. Sreeramulu', 'Weaver', 60000.00, 0, 230000.00, 400000.00, 'Dharmavaram', 'Dharmavaram', '2404170006', '1', '2', 'upload_files/candidate_tracker/54677080896_Domiciliary process.pdf', NULL, '2', '2024-04-17', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Unable to relocate to bangalore', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-04-17 05:42:51', 127, '2024-04-18 10:53:50', 0, NULL, 1),
(18602, '', '0', '7010504701', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404170007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-17 05:46:26', 0, NULL, 0, NULL, 1),
(18603, 'Vallarasu', '6', '6383563783', '9092171195', 'vallarasumari.tvm@gmail.com', '2000-03-19', 24, '2', '2', 'Marimuthu P', 'Former', 20000.00, 3, 18000.00, 20000.00, 'Tiruvannamalai', 'Vadapalani , Chennai', '2404170008', '1', '2', 'upload_files/candidate_tracker/82752836160_Vallu.pdf', NULL, '1', '2024-04-17', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is expected 19k salary , already have net 16.5k so, review and check and update ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-17 05:55:21', 112, '2024-04-17 12:49:08', 0, NULL, 1),
(18604, 'Aiswarya kj', '5', '9074834436', '', 'aiswaryaaishukj@gmail.com', '2000-07-11', 23, '2', '2', 'Jayaprakashan. M', 'Business', 20000.00, 0, 23000.00, 28000.00, 'Palakkad', 'Coimbatore', '2404170009', '47', '2', 'upload_files/candidate_tracker/18825920380_Aiswarya_kj_Resume_13-1.pdf', NULL, '1', '2024-04-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-17 05:56:12', 1, '2024-04-17 06:00:22', 0, NULL, 1),
(18605, 'Ankit shukla', '10', '8839482934', '9238480171', 'ankitshuka007008@gmail.com', '2000-03-15', 24, '2', '2', 'Sukhendra shukla', 'Sub. Inspector army', 100000.00, 4, 20000.00, 35000.00, 'Gram. Post jamuwani Dist. Satna madhya pradesh', 'Electronic city phase1 bangalore', '2404170010', '49', '2', 'upload_files/candidate_tracker/62003560255_Resume_Ankit Shukla_Format7 (4).pdf', NULL, '2', '2024-04-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-17 06:01:39', 1, '2024-04-17 06:12:19', 0, NULL, 1),
(18606, 'HITESH KUMAR B', '5', '9043046631', '', 'hiteshhithu27@gmail.com', '1997-05-12', 26, '3', '2', 'NANDA KUMAR B', 'Qc', 4.50, 1, 3.30, 3.50, 'Chennai thiruvottriyur', 'Chennai thiruvottriyur', '2404170011', '', '2', 'upload_files/candidate_tracker/46275519791_HITESH RESUME UPDATED 26-12-2023.pdf', NULL, '1', '2024-04-17', 0, '', '3', '59', '2024-04-22', 333696.00, '', '5', '1970-01-01', '1', 'Selected for Sarath Team with Condition given by gaurav sir', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-17 06:14:21', 60, '2024-04-22 10:44:12', 0, NULL, 1),
(18607, '', '0', '8489936002', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404170012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-17 06:32:36', 0, NULL, 0, NULL, 1),
(18608, 'vishnu', '4', '9207150759', '9633582687', 'vishnusurendran848@gmail.com', '1998-04-15', 26, '2', '2', 'surendran', 'mechanic', 25000.00, 1, 1.30, 25000.00, 'kerala', 'banglore', '2404170013', '47', '2', 'upload_files/candidate_tracker/43536425066_Vishnu CV.pdf', NULL, '1', '2024-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-17 08:13:54', 1, '2024-04-17 08:24:44', 0, NULL, 1),
(18609, 'Neelam Kotevale', '5', '9964891016', '', 'neelamkotevale@gmail.com', '2001-05-03', 22, '2', '2', 'Shrikant kotevale', 'Hotel', 15000.00, 3, 17500.00, 20000.00, 'Belagavi', 'Jp nagar bangalore', '2404170014', '1', '2', 'upload_files/candidate_tracker/11198435245_Neelam Kotevale.pdf', NULL, '1', '2024-04-17', 0, '', '3', '59', '2024-04-19', 195000.00, '', '5', '1970-01-01', '2', 'Selected for Relationship Executive Role in Consultant model.Need to Analyse in 7 days training and confirm', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-04-17 08:46:16', 60, '2024-06-05 03:18:52', 0, NULL, 1),
(18610, 'Nikhil George', '5', '9995073259', '', 'nikhilgeorgeloyola@gmail.com', '1995-12-18', 28, '2', '2', 'George m m', 'Business man', 50000.00, 1, 0.00, 25000.00, 'Sulthan bathery', 'Sulthan bathery', '2404170015', '47', '1', 'upload_files/candidate_tracker/6614585935_Nikhil George cv.docx', NULL, '1', '2024-04-18', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'confirm the joining and ctc for RM', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-17 08:51:42', 126, '2024-04-25 05:14:07', 0, NULL, 1),
(18611, 'Aditya Kumar', '5', '7398911003', '', 'adityarathor624@gmail.com', '1998-07-24', 25, '2', '2', 'Krishna murari', 'Business', 60000.00, 5, 20000.00, 27000.00, 'Maharajganj', 'Bangalore', '2404170016', '39', '2', 'upload_files/candidate_tracker/6688427776_Aditya Rathor 1003.pdf', NULL, '1', '2024-04-17', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'suggested ctc upto 20k but he will join on may 1st', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-17 08:55:40', 127, '2024-05-07 12:08:54', 0, NULL, 1),
(18612, 'Rachita Palakshappa', '5', '8197182513', '', 'rachitapalakshppa@gmail.com', '2001-06-14', 22, '2', '2', 'Palakshappa', 'KEB OFFICE SHIMOGA', 60000.00, 1, 0.00, 3.00, 'Shivmogga', 'Bangalore', '2404170017', '39', '1', 'upload_files/candidate_tracker/55776102790_RACHITA_PALAKSHAPPA_ox_new.pdf', NULL, '1', '2024-04-23', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interested in coding Field Meanwhile candidate will work here  ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-17 09:06:00', 126, '2024-04-23 11:57:51', 0, NULL, 1),
(18613, 'krithika', '6', '7904220858', '', 'jkrithika1919@gmail.com', '1998-01-04', 26, '2', '1', 'mohan', 'assistant manager', 25000.00, 0, 300000.00, 500000.00, 'thanjavur', 'chennai', '2404170018', '1', '2', 'upload_files/candidate_tracker/83250420906_Krithika.pdf', NULL, '1', '2024-04-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1024', '', NULL, NULL, NULL, 1, '2024-04-17 10:13:44', 112, '2024-04-17 06:18:11', 0, NULL, 1),
(18614, '', '0', '9731689148', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404170019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-17 11:11:20', 0, NULL, 0, NULL, 1),
(18615, 'jeyarupan.k', '11', '9994875877', '', 'jeyarupan1207@gmail.com', '2002-01-12', 22, '4', '2', 'karthikeyan', 'business', 70000.00, 1, 0.00, 25000.00, 'trichy', 'chennai', '2404170020', '', '1', 'upload_files/candidate_tracker/61708705104_Resume 3.pdf', NULL, '1', '2024-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-17 11:17:59', 1, '2024-04-17 11:23:33', 0, NULL, 1),
(18616, 'ARAVINDH S', '5', '9360868426', '9840215231', 'aravind.postbox@gmail.com', '1999-05-30', 24, '2', '2', 'SARAVANAN', 'Technician', 32000.00, 0, 18000.00, 21000.00, 'Kosapet', 'Kosapet', '2404170021', '1', '2', 'upload_files/candidate_tracker/56602630155_ARAVINDH S RESUME 2024.docx', NULL, '1', '2024-04-18', 0, '', '3', '59', '2024-04-22', 270000.00, '', '3', '2025-04-30', '1', 'Selected for Porrselvan Team Relationship Manager Role Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-17 11:24:01', 60, '2024-04-22 10:14:16', 0, NULL, 1),
(18617, 'Dhanush', '6', '9384652113', '', 'mdhanush2310@gmail.com', '2001-10-23', 22, '2', '2', 'Mohan.K', 'Driver', 28000.00, 1, 15.00, 18.00, 'Palavakkam chennai', 'Palavakkam chennai', '2404170022', '1', '2', 'upload_files/candidate_tracker/17824805459_31650503872_DHANUSH (1).docx', NULL, '1', '2024-04-18', 10, '', '3', '59', '2024-05-02', 198000.00, '', '5', '1970-01-01', '2', 'Selected for Giri Team in Relationship Executive Role need to analyse in 7 days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-17 11:27:30', 60, '2024-04-30 12:41:38', 0, NULL, 1),
(18618, '', '0', '8088048215', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404170023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-17 12:55:05', 0, NULL, 0, NULL, 1),
(18619, 'Gopi D', '14', '9790643325', '', 'gopigopi11424@gmail.com', '2000-06-12', 23, '6', '2', 'Pappathi', 'Former', 10000.00, 2, 0.00, 250000.00, 'Dharmapuri', 'T - nagar Chennai', '2404170024', '', '1', 'upload_files/candidate_tracker/86324587030_DOC-Gopi D.docx', NULL, '1', '2024-04-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-17 01:23:35', 1, '2024-04-17 01:34:31', 0, NULL, 1),
(18620, 'Velavan P', '23', '9786791463', '', 'pgvela007@gmail.com', '1999-03-23', 25, '3', '2', 'Ponnusamy R', 'Daily Wages', 20000.00, 1, 0.00, 25000.00, 'Thammampatty, Salem', 'Royyapettah, Chennai', '2404170025', '', '1', 'upload_files/candidate_tracker/96553265230_Velavan.P.pdf', NULL, '2', '2024-04-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-17 01:45:38', 1, '2024-04-17 02:02:35', 0, NULL, 1),
(18621, '', '0', '9087894555', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404170026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-17 04:20:09', 0, NULL, 0, NULL, 1),
(18622, 'Ashif Tahashildhar', '5', '8618905337', '', 'asifthsldr@gmail.com', '1998-03-27', 26, '3', '2', 'Hasanbsab', 'Not working', 60000.00, 2, 46000.00, 65009.00, 'Gadag', 'HSR layout Bangalore', '2404170027', '', '2', 'upload_files/candidate_tracker/30784032686_DOC-20240227-WA0001..pdf', NULL, '2', '2024-04-18', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-17 05:43:46', 1, '2024-04-17 05:47:31', 0, NULL, 1),
(18623, 'S. Hajara', '4', '6379797292', '', 'Hajaraqueen2003@gamil.com', '2003-04-08', 21, '2', '2', 'Samsudeen', 'No job', 65000.00, 3, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2404180001', '1', '1', 'upload_files/candidate_tracker/17754259443_1713288690902.pdf', NULL, '1', '2024-04-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-18 04:32:27', 112, '2024-04-18 05:50:38', 0, NULL, 1),
(18624, 'PRADEEP NARAYANAN V', '14', '9952684747', '', 'pradeepnarayanan45@gmail.com', '2002-05-25', 21, '6', '2', 'VENKATESAN P', 'Driver', 18000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2404180002', '', '1', 'upload_files/candidate_tracker/93665536808_CV - PRADEEP NARAYANAN V.pdf', NULL, '1', '2024-04-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-18 04:33:44', 130, '2024-05-09 11:07:40', 0, NULL, 1),
(18625, 'Maha Lakshmi', '6', '7358644297', '9994663650', 'diyamaha271@gmail.com', '1999-11-05', 24, '2', '2', 'Sri Devi', 'Private work', 200000.00, 1, 0.00, 192000.00, 'Chennai', 'Chennai', '2404180003', '50', '2', 'upload_files/candidate_tracker/84018685593_Mahalakshmi.M.pdf', NULL, '1', '2024-04-18', 0, '', '3', '59', '2024-04-24', 174000.00, '', '5', '1970-01-01', '2', 'Selected for DM Banu Team Relationship Executive Role Need to analyse in 7 days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-18 04:54:03', 60, '2024-04-23 05:52:33', 0, NULL, 1),
(18626, '', '0', '8540040900', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404180004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-18 05:08:04', 0, NULL, 0, NULL, 1),
(18627, 'Mahesh Babu Nagineni', '4', '8919110900', '7032081630', 'maheshb061@gmail.com', '1997-08-21', 26, '2', '2', 'Malyadri', 'Business', 150000.00, 2, 0.00, 16000.00, 'Nellore', 'Nellore', '2404180005', '50', '1', 'upload_files/candidate_tracker/95405103992_Mahesh Babu Nagineni Resume-2.pdf', NULL, '1', '2024-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-18 05:24:10', 1, '2024-04-18 05:29:51', 0, NULL, 1),
(18628, 'Charumathi.k', '6', '9080459201', '6381091155', 'charumathikuppu@gmail.com', '1999-08-07', 24, '2', '1', 'Vinodh Kumar.G', 'It sector', 35000.00, 1, 0.00, 20000.00, 'Royapettah', 'Royapettah', '2404180006', '50', '1', 'upload_files/candidate_tracker/6602018917_charumathi.pdf', NULL, '1', '2024-04-18', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-18 05:32:45', 112, '2024-04-18 04:18:44', 0, NULL, 1),
(18629, 'N Ashraf Khan', '6', '9360414229', '7395907472', 'amnsak655@gmail.com', '2000-09-18', 23, '2', '2', 'Meharunnisha', 'House wife', 25000.00, 4, 13.50, 18000.00, 'Gilani street Alandur Chennai', 'Gilani Street alandur Chennai', '2404180007', '29', '2', 'upload_files/candidate_tracker/77702185249_ASHRAF RESUME2.pdf', NULL, '1', '2024-04-18', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Over Attitude, no skill and fake information ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-18 05:43:09', 137, '2024-04-18 04:26:27', 0, NULL, 1),
(18630, 'Arunaswathi Peta', '5', '6300318621', '', 'swathiaravind155@gmail.com', '1999-08-05', 24, '2', '2', 'Ramadevi', 'Worker', 12000.00, 0, 0.00, 3600000.00, 'Markapur', 'Markapur', '2404180008', '1', '1', 'upload_files/candidate_tracker/86593064954_Peta Arunaswathi-2.pdf', NULL, '2', '2024-04-18', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '3', '4', '', '2', '1970-01-01', '4', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-04-18 05:44:45', 126, '2024-04-18 06:24:52', 0, NULL, 1),
(18631, 'Mohammed abuthalib', '6', '8778196063', '', 'mohammedtalib059@gmail.com', '2001-10-01', 22, '2', '2', 'Zeenathunnisa', 'House wife', 45000.00, 3, 13500.00, 18000.00, 'Mirza hyder Ali Khan street royapettah', 'Mirza hyder Ali Khan street royapettah', '2404180009', '29', '2', 'upload_files/candidate_tracker/68245588411_Talib.pdf', NULL, '1', '2024-04-18', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Experience but not suitable for insurance sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-18 06:05:03', 112, '2024-04-18 04:13:42', 0, NULL, 1),
(18632, 'Richa S', '5', '7200097538', '8807535848', 'richushekar1997@gmail.com', '1997-06-07', 26, '2', '1', 'Aravind Raj', 'Civil Engineer', 40000.00, 1, 0.00, 28000.00, 'Balaji Street Vivekananda Nagar kolathur Chennai', '11, balaji Street Vivekananda Nagar annexe2', '2404180010', '50', '2', 'upload_files/candidate_tracker/18890480183_Richa .docx.docx', NULL, '1', '2024-04-18', 0, '', '3', '59', '2024-04-24', 350000.00, '', '5', '1970-01-01', '1', 'Selected for Gnanasekar Team Relationship Manager Role Can be trained in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-18 06:16:45', 60, '2024-04-23 03:39:14', 0, NULL, 1),
(18633, 'kesawarthani.c', '5', '9342810479', '', 'kesukoki088@gmail.com', '2000-07-02', 23, '2', '1', 'k.chellan', 'medical rip', 20000.00, 1, 15000.00, 17000.00, 'chennai', 'chennai', '2404180011', '36', '2', 'upload_files/candidate_tracker/7660146991_kesawarthani.C Resume.. (1) (1).pdf', NULL, '1', '2024-04-18', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Attended', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-18 07:35:56', 138, '2024-04-20 10:34:36', 0, NULL, 1),
(18634, 'Durgalakshmi. M', '5', '9972923027', '8095803855', 'durgalakshmi0003@gmail.com', '2000-06-25', 23, '2', '2', 'Mother', 'House keeping', 200000.00, 1, 0.00, 20000.00, 'IIM compound bg road bilekahalli', 'IIM Compound Bg Road Bilekahalli', '2404180012', '49', '1', 'upload_files/candidate_tracker/75892514419_PDF Gallery_20240418_152533.pdf', NULL, '1', '2024-04-18', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-18 08:04:34', 126, '2024-04-18 06:21:14', 0, NULL, 1),
(18635, '', '0', '9012800281', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404180013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-18 08:05:11', 0, NULL, 0, NULL, 1),
(18636, 'Ibrahim khan S', '5', '9176237119', '7904865794', 'sibbudon629@gmail.com', '2000-07-30', 23, '3', '2', 'Sultan khan', 'Eximio,SKA master mind,allset business', 55000.00, 2, 21000.00, 25000.00, '17/8 TNP 6th Street Perambur Sembiyam', '17/8 TNP 6th Street Perambur Sembiyam', '2404180014', '', '2', 'upload_files/candidate_tracker/838914063_PDF IBBU.pdf', NULL, '1', '2024-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-18 08:05:31', 1, '2024-04-18 09:27:54', 0, NULL, 1),
(18637, 'Anusha .N', '5', '9019800281', '9663230616', 'narendraanu1@gmail.com', '1998-04-16', 26, '2', '1', 'Narendra', 'own business', 30000.00, 1, 17000.00, 20000.00, '12 11th main maruthi layout hongasandra', '12 11th Main Maruthi Layout Hongasandra', '2404180015', '49', '2', 'upload_files/candidate_tracker/77302728791_ANUSHA.N (1).doc', NULL, '1', '2024-04-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'suggested ctc 20 to 22k max\nimmediate joining', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-18 08:55:27', 60, '2024-04-20 06:08:01', 0, NULL, 1),
(18638, 'Megha AN', '5', '9972993205', '8884660810', 'megha.an014@gmail.com', '1997-03-05', 27, '3', '2', 'Nagaraju', 'Former', 1.00, 1, 22000.00, 30000.00, 'Bangalore', 'Marthalli', '2404180016', '', '2', 'upload_files/candidate_tracker/31545536857_megha 2024.docx', NULL, '1', '2024-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-18 08:56:24', 1, '2024-04-18 09:01:25', 0, NULL, 1),
(18639, 'nagma begum', '5', '8971861079', '7337871079', 'nagmabegum2103@gmail.com', '1998-12-21', 25, '2', '1', 'ateeq a', 'relationship manager', 300000.00, 3, 0.00, 20000.00, 'sagar karnataka', 'btm layout bangalore', '2404180017', '1', '1', 'upload_files/candidate_tracker/86283675080_Nagma’a cv.pdf', NULL, '1', '2024-04-18', 0, '', '3', '59', '2024-04-22', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Relationship Executive Role Team Employee Ateeq Wife Need to get the mail from both', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-04-18 08:56:54', 60, '2024-04-20 07:39:20', 0, NULL, 1),
(18640, 'Ashlin', '13', '6380873769', '', 'ashlin2804@gmail.com', '2002-04-28', 21, '6', '2', 'Augustin', 'Mason', 10000.00, 1, 0.00, 300000.00, 'Kanyakumari', 'Kanyakumari', '2404180018', '', '1', 'upload_files/candidate_tracker/78378880027_Ashlin-python-cv.pdf', NULL, '1', '2024-04-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-18 10:43:38', 112, '2024-04-26 05:00:47', 0, NULL, 1),
(18641, 'Peter Pertia Jabaraj A', '21', '6385457077', '', 'peterparker7997@gmail.com', '2001-11-05', 22, '2', '2', 'arokiyaraj', 'tneb', 500000.00, 1, 0.00, 350000.00, 'Thiruvallur', 'Thiruvallur', '2404180019', '1', '1', 'upload_files/candidate_tracker/29508731681_Peter resume.pdf', NULL, '1', '2024-04-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1026', '', NULL, NULL, NULL, 1, '2024-04-18 10:47:26', 112, '2024-04-26 05:01:12', 0, NULL, 1),
(18642, 'Rajesh RS', '13', '7418412242', '', 'rajeshraja.r98@gmail.com', '1996-09-04', 27, '2', '2', 'K.RAJA', 'Coolie', 15000.00, 2, 22000.00, 25000.00, 'Kanyakumari', 'Kanyakumari', '2404180020', '1', '2', 'upload_files/candidate_tracker/61837519560_Rajesh windows Resume.pdf', NULL, '1', '2024-04-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1026', '', NULL, NULL, NULL, 1, '2024-04-18 11:03:26', 112, '2024-04-22 01:07:38', 0, NULL, 1),
(18643, 'Hukam Singh', '5', '8618344847', '', 'hukumsingh5699@gmail.com', '1999-06-22', 24, '2', '2', 'Mahendra Singh', '12th', 40000.00, 1, 17500.00, 20000.00, 'Bangalore', 'Bangalore', '2404180021', '49', '2', 'upload_files/candidate_tracker/8858767908_cv exp .pdf', NULL, '1', '2024-04-19', 0, '', '3', '59', '2024-04-29', 240000.00, '', '5', '1970-01-01', '2', 'Selected for relationship Manager Role Need to analyse in 7 days training', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-18 01:31:10', 60, '2024-04-27 07:31:09', 0, NULL, 1),
(18644, 'Rajesh R', '21', '8110841475', '', 'rajeshramm2002@gmail.com', '2002-06-14', 21, '6', '2', 'k.ramagovindan', 'Farmer', 30000.00, 3, 15000.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2404180022', '', '2', 'upload_files/candidate_tracker/33848222007_RAJESH.docx', NULL, '1', '2024-04-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-18 03:20:26', 112, '2024-04-24 02:54:19', 0, NULL, 1),
(18645, 'naveen', '21', '6379183162', '', 'naveencse120@gmail.com', '2001-06-08', 22, '6', '2', 'raja', 'driver', 61000.00, 1, 204000.00, 500000.00, 'dharmapuri', 'dharmapuri', '2404180023', '', '2', 'upload_files/candidate_tracker/2123809108_RESUME.pdf', NULL, '2', '2024-04-24', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '4', '7', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-18 04:12:37', 1, '2024-04-18 04:21:46', 0, NULL, 1),
(18646, '', '0', '9025693988', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404180024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-18 04:27:57', 0, NULL, 0, NULL, 1),
(18647, 'Prabhu J', '23', '7401742628', '', 'prabhupj089@gmail.com', '1999-01-11', 25, '3', '2', 'jayavel', 'driver', 20000.00, 1, 0.00, 25000.00, 'velachery', 'chennai', '2404180025', '', '1', 'upload_files/candidate_tracker/1226712581_Prabhu J.pdf', NULL, '1', '2024-04-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-18 05:29:19', 1, '2024-04-18 05:40:50', 0, NULL, 1),
(18648, 'vignesh r', '6', '9551922764', '', 'safarivignesh@gmail.com', '1997-11-12', 26, '2', '2', 'ravi r', 'ds in ttdc', 50000.00, 1, 21900.00, 27000.00, 'chennai', 'chennai', '2404200001', '50', '2', 'upload_files/candidate_tracker/62931251902_vignesh.pdf', NULL, '1', '2024-04-20', 30, '', '3', '59', '2024-05-13', 222000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team Actually Pradeepan Took the interview and shorltisdetd kannan had a virtaul round and sortlisted', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-20 04:25:10', 60, '2024-05-11 07:08:48', 0, NULL, 1),
(18649, 'Sangeetha', '6', '9884302625', '', 'sangeetha2000m@gmail.com', '2000-06-26', 23, '2', '2', 'Dhanalakshmi', 'House wife', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2404200002', '50', '1', 'upload_files/candidate_tracker/82252659117_resumae.pdf', NULL, '1', '2024-04-20', 0, '', '3', '59', '2024-04-22', 168000.00, '', '4', '2024-09-18', '1', 'Selected for Charles Team RElationship Executive Role Need to analyse in 7 days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-20 05:00:07', 60, '2024-04-20 07:41:00', 0, NULL, 1),
(18650, 'Sanjay', '6', '9361496253', '8056028108', 'naveensanjay645@gmail.com', '2002-01-06', 22, '2', '2', 'k dhanlalkshmi', 'house wife', 10000.00, 1, 0.00, 15000.00, 'lakshmi street jafferkhan pet', 'jafferkhan pet', '2404200003', '50', '1', 'upload_files/candidate_tracker/75024071283_sanjay resume-1 (1).pdf', NULL, '1', '2024-04-20', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit sales field ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-20 05:31:57', 112, '2024-04-20 11:16:11', 0, NULL, 1),
(18651, 'Dinesh Kumar k', '6', '7397352731', '', 'dineshkumar739735@gmail.com', '2002-09-11', 21, '2', '2', 'Krishna moorthy', 'Driver', 10000.00, 0, 0.00, 13000.00, '274/1,MTH ROAD VILLIVAKKAM CHENNAI 600049', '274/1,MTH ROAD VILLIVAKKAM CHENNAI 600049', '2404200004', '50', '1', 'upload_files/candidate_tracker/76503659338_CV_2024-04-16-095948.pdf.diresume1.pdf', NULL, '1', '2024-04-20', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'low voice and no skill ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-20 05:36:31', 112, '2024-04-20 11:15:57', 0, NULL, 1),
(18652, 'Ranjith B', '4', '8072135422', '8015972062', 'ranjithbg99@gmail.com', '1999-03-15', 25, '2', '2', 'Girija B', 'House wife', 15000.00, 1, 12000.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2404200005', '1', '2', 'upload_files/candidate_tracker/39906819573_RANJITH CV.pdf', NULL, '1', '2024-04-20', 1, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-20 05:44:20', 108, '2024-04-20 12:58:15', 0, NULL, 1),
(18653, 'Syeda Afrin Meraj', '6', '9500146751', '', 'syedaafrin1508@gmail.com', '1995-08-15', 28, '2', '2', 'Na', 'Na', 300000.00, 0, 24500.00, 35000.00, 'Triplicane Chennai', 'Chennai', '2404200006', '46', '2', 'upload_files/candidate_tracker/14145231158_pdf&rendition=1-8.pdf', NULL, '1', '2024-04-20', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-20 06:02:56', 112, '2024-04-20 12:17:00', 0, NULL, 1),
(18654, 'KARTHIKA T', '5', '7200598290', '', 'kartika1121992@gmail.com', '1992-12-01', 31, '2', '1', 'T Jayanthi', 'Business Development manager', 50000.00, 1, 340000.00, 500000.00, 'Chennai', 'Chennai', '2404200007', '1', '2', 'upload_files/candidate_tracker/7065458775_Resume (1).pdf', NULL, '1', '2024-04-20', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1024', '', NULL, NULL, NULL, 1, '2024-04-20 06:26:35', 112, '2024-04-20 12:19:22', 0, NULL, 1),
(18655, 'KEERTHANA P', '6', '8778452780', '9087309079', 'keerthanapazhani6495@gmail.com', '1995-04-06', 29, '3', '2', 'E. Pazhani', 'Auto Driver', 1000000.00, 2, 15000.00, 20000.00, 'No. 19A sekkizhar street mgr nagar', 'Chennai', '2404200008', '', '2', 'upload_files/candidate_tracker/42445510923_CV_2024040416142957.pdf', NULL, '1', '2024-04-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-20 06:52:23', 112, '2024-04-20 12:42:12', 0, NULL, 1),
(18656, 'Umar ali', '4', '8682069290', '9940043333', 'Umarali0277@gmail.com', '1995-10-16', 28, '2', '2', 'Parent', 'Others', 20000.00, 1, 22000.00, 30000.00, 'Chennai', 'Chennai', '2404200009', '1', '2', 'upload_files/candidate_tracker/30428403684_New Resum.New royal.pdf', NULL, '1', '2024-04-22', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-04-20 07:04:56', 112, '2024-04-22 04:34:52', 0, NULL, 1),
(18657, 'Mugesh P', '33', '7092511782', '7904452642', 'mukesh10105@gmail.com', '1999-01-05', 25, '3', '2', 'Prakash', 'Car driver', 20000.00, 2, 1.00, 250000.00, 'Vellore', 'Vellore', '2404200010', '', '2', 'upload_files/candidate_tracker/34356664600_Resume (1).pdf', NULL, '2', '2024-04-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-20 07:29:17', 1, '2024-04-20 07:34:14', 0, NULL, 1),
(18658, 'Logesh', '6', '9444375214', '6383976309', 'logesh.r097@gmail.com', '1999-07-09', 24, '2', '1', 'Asha', 'Customer support', 30000.00, 1, 13500.00, 16000.00, 'Kodungaiyur', 'Kodungaiyur', '2404200011', '52', '2', 'upload_files/candidate_tracker/17440047900_DOC-20240110-WA0000..pdf', NULL, '1', '2024-04-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-20 09:04:30', 112, '2024-04-20 04:02:14', 0, NULL, 1),
(18659, '', '0', '9944892248', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404200012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-20 10:20:40', 0, NULL, 0, NULL, 1),
(18660, 'Niranjan Arasu', '6', '9585803782', '9843939423', 'niranjanarasu007@gmail.com', '2000-09-04', 23, '2', '2', 'Malini', 'Housewife', 20000.00, 2, 18000.00, 22000.00, 'Chennai', 'Chennai', '2404210001', '29', '2', 'upload_files/candidate_tracker/41267822274_niranjan-2.docx', NULL, '1', '2024-04-22', 10, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'shortlisted 50-50 pls check once and cnfrm the ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-21 05:48:29', 112, '2024-04-22 01:05:29', 0, NULL, 1),
(18661, 'Gowtham J', '13', '8072523302', '9551752653', 'gowtham.j.p@outlook.com', '2000-08-11', 23, '2', '2', 'Jagatheesan', 'Daily labour', 12000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2404220001', '1', '1', 'upload_files/candidate_tracker/97337749271_new1.pdf', NULL, '1', '2024-04-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1026', '', NULL, NULL, NULL, 1, '2024-04-22 04:55:57', 112, '2024-04-22 01:07:57', 0, NULL, 1),
(18662, 'GAYATHRI.K', '5', '9003175406', '', '1898gayu@gmail.com', '1998-08-18', 25, '2', '1', 'YUVARAJ.S', 'Manager (bpcl)', 40000.00, 1, 23000.00, 26000.00, 'Chennai', 'Chennai', '2404220002', '50', '2', 'upload_files/candidate_tracker/84151484777_Gayathri_Resume (1).pdf', NULL, '1', '2024-04-22', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '2024-04-25', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-22 05:18:40', 112, '2024-04-22 01:04:59', 0, NULL, 1),
(18663, 'A.l.karol john', '6', '7010167223', '7305173984', 'kj812735@gmail.com', '2004-04-25', 19, '2', '2', 'Lawrence', 'Daily wages', 12.00, 1, 0.00, 14.50, 'No.7 Mullai 2 Street ,JJ Nager, Pattabiram', 'No.7 Mullai 2 Street ,JJ Nager, Pattabiram', '2404220003', '36', '1', 'upload_files/candidate_tracker/43299024611_Resume_Karol resume_Format7.pdf', NULL, '1', '2024-04-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'better voice and interested for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-22 05:47:54', 112, '2024-04-22 01:04:22', 0, NULL, 1),
(18664, 'francis r', '6', '7305659685', '', 'francisraj2812@gmail.com', '2003-12-28', 20, '2', '2', 'raj', 'nil', 12000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2404220004', '36', '1', 'upload_files/candidate_tracker/48327537982_Francis.pdf', NULL, '1', '2024-04-22', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'low voice  and very lasy', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-22 05:49:03', 112, '2024-04-22 01:04:05', 0, NULL, 1),
(18665, 'Lishanthi S', '6', '7449194664', '', 'lishasamikannu96@gmail.com', '1996-09-03', 27, '2', '2', 'Samikannu R', 'Retired', 10000.00, 1, 15000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2404220005', '50', '2', 'upload_files/candidate_tracker/59964717523_Lishanthi S - Resume 2024.pdf', NULL, '1', '2024-04-22', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long distance and having exp in backend process.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-22 05:52:31', 112, '2024-04-22 01:03:16', 0, NULL, 1),
(18666, '', '0', '7447335914', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404220006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-22 06:58:10', 0, NULL, 0, NULL, 1),
(18667, 'Manoj R', '34', '7904084309', '', 'manojravi9912@gmail.com', '1999-08-12', 24, '3', '2', 'K.Ravichandran', 'Gold smith', 250000.00, 1, 0.00, 350000.00, 'Madurai', 'Madurai', '2404220007', '', '1', 'upload_files/candidate_tracker/27467286062_Manojravi_cv (1).pdf', NULL, '1', '2024-05-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-22 07:00:37', 1, '2024-05-06 06:40:57', 0, NULL, 1),
(18668, 'harini', '6', '7538804731', '8056864731', 'harinihp1420@gmail.com', '1999-05-20', 24, '2', '1', 'prakash', 'assistant manager', 300000.00, 1, 20000.00, 25000.00, 'puducherry', 'chennai', '2404220008', '1', '2', 'upload_files/candidate_tracker/41688760034_Harini resume.pdf', NULL, '1', '2024-04-22', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '1yrs experience diff domain,previous company salary 10.5k now expectation 18k, candidate worth for 15k to 16k maximum,pls confirm and do the needful', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-22 07:09:03', 112, '2024-04-22 03:05:09', 0, NULL, 1),
(18669, 'Karthik k', '5', '9620856608', '8147288202', 'karthik707893@gmail.com', '1997-11-05', 26, '2', '2', 'Padma k', 'Tailor', 45.00, 0, 3.00, 4.80, 'Bangalore', 'Bangalore', '2404220009', '49', '2', 'upload_files/candidate_tracker/45415008334_KARTHIK CV.pdf', NULL, '1', '2024-04-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'good communication and confidence level but expecting high ctc upto 4.8lac he already having 3 offer .he is ok for Rm', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-22 07:34:22', 127, '2024-05-07 01:02:04', 0, NULL, 1),
(18670, 'Zafrullah Basha', '5', '7845714980', '', 'zafrubasha@gmail.com', '1997-06-14', 26, '2', '2', 'jamsheed egum', 'tele sale executive', 15000.00, 4, 19000.00, 20000.00, 'gudiyatham', 'arakere banglore', '2404220010', '49', '2', 'upload_files/candidate_tracker/32773111651_Resum 1.pdf', NULL, '1', '2024-04-22', 0, '', '3', '59', '2024-04-23', 240000.00, '', '3', '2024-10-30', '1', 'Selected for Relationship Manager Role,need to train and analyse in 7 days', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-22 07:34:23', 60, '2024-04-23 07:08:49', 0, NULL, 1),
(18671, 'Shabana .R', '6', '9600181624', '9790729223', 'Shabanamuzaffar62@gmail.com', '2001-11-10', 22, '2', '2', 'Abdul muzaffar', 'Business', 200000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2404220011', '29', '1', 'upload_files/candidate_tracker/95013556013_SHABANA.R Resume.pdf', NULL, '1', '2024-04-22', 0, '', '5', '29', NULL, 0.00, '', '0', NULL, '2', 'check', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-22 08:23:00', 1, '2024-04-22 09:23:37', 0, NULL, 1),
(18672, 'Ishindiran', '21', '7449198644', '', 'ishindiranishi1812@gmail.com', '1998-12-18', 25, '6', '2', 'Malini', 'Govt job', 30000.00, 1, 1.80, 3.00, '8/6 TMP nagar, Thiruvalluvar Street, Padi chennai', '8/6 TMP Nagar, Thiruvalluvar Street, Padi Chennai', '2404220012', '', '2', 'upload_files/candidate_tracker/41640813440_ishindiran_resume-4.pdf', NULL, '1', '2024-04-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-22 09:30:38', 112, '2024-04-22 06:34:05', 0, NULL, 1),
(18673, 'Govardhana G', '33', '9591381319', '7353991154', 'govag986@gmail.com', '2001-09-10', 22, '2', '2', 'Gangappa', 'Farmer', 30000.00, 1, 0.00, 250000.00, 'Bengaluru', 'Bengaluru hebbal', '2404220013', '38', '1', 'upload_files/candidate_tracker/55620809764_Govardhana G .pdf', NULL, '1', '2024-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-22 12:43:47', 1, '2024-04-22 12:46:56', 0, NULL, 1),
(18674, 'Saravanan b', '5', '7845455054', '9894525065', 'Saravananb407@gmail.com', '1992-07-27', 31, '2', '2', 'B jothi', 'Farmer', 10000.00, 0, 18000.00, 20000.00, 'Chennai', 'Chennai', '2404230001', '46', '2', 'upload_files/candidate_tracker/35620879832_Saravanan B.docx', NULL, '1', '2024-04-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-23 04:22:23', 1, '2024-04-23 04:54:58', 0, NULL, 1),
(18675, 'Rabin karthick T', '6', '7094502292', '', 'rabinkarthick1998@gmail.com', '1998-11-17', 25, '2', '2', 'K.Thangaraj', 'Farmer', 25000.00, 1, 0.00, 23000.00, 'Namkkal', 'Mylapore', '2404230002', '50', '2', 'upload_files/candidate_tracker/63062256235_Rabin karthick.pdf', NULL, '1', '2024-04-23', 15, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Performance And Communication is Not Good Also His Expectation is Too high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-23 04:56:40', 112, '2024-04-23 11:35:17', 0, NULL, 1),
(18676, 'Ajith Kumar k', '6', '7305960615', '8925329643', 'Ajithsiva246@gmail.com', '1999-01-05', 25, '2', '2', 'K chitra', 'Farmer', 30000.00, 1, 0.00, 16000.00, 'Pudukkottai', 'Mylapore', '2404230003', '50', '1', 'upload_files/candidate_tracker/8110787709_Ajithkumar jcet.pdf', NULL, '1', '2024-04-23', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no communication and he is not try to convince me when he speak about sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-23 05:06:25', 112, '2024-04-23 12:01:04', 0, NULL, 1),
(18677, 'Kaviarasu', '4', '8248640083', '9361528443', 'akavi6330@gmail.com', '2000-08-29', 23, '2', '2', 'Kalaiselvan.N', 'Police', 40000.00, 1, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2404230004', '1', '1', 'upload_files/candidate_tracker/21512972031_1713783084415_KAVI.docx', NULL, '1', '2024-04-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-23 05:16:03', 108, '2024-04-23 02:54:12', 0, NULL, 1),
(18678, 'manimaran', '5', '8610841491', '', 'rjmaran723@gmail.com', '1998-05-20', 25, '2', '2', 'murugavel', 'catterin service', 50000.00, 3, 300000.00, 33000.00, 'salem', 'chennai', '2404230005', '1', '2', 'upload_files/candidate_tracker/32298043155_Manimaran.pdf', NULL, '1', '2024-04-23', 15, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not sustain ability.  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-23 05:35:47', 108, '2024-04-23 01:29:53', 0, NULL, 1),
(18679, 'Tejash Nayak', '5', '9096593346', '', 'tejashnayak333@gmail.com', '2000-01-03', 24, '2', '2', 'Mr. Ashok Nayak', 'Student', 700000.00, 1, 0.00, 4.50, 'Jabalpur', 'Bangalore', '2404230006', '39', '1', 'upload_files/candidate_tracker/75032072415_Tejash_Nayak_9096593346.pdf', NULL, '1', '2024-04-23', 0, '', '8', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Without informing candidate walk out from office', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-23 05:38:43', 126, '2024-04-23 11:56:10', 0, NULL, 1),
(18680, 'Mohammed yousf ali', '6', '9344496851', '', 'mhdyousuf134@gmail.com', '2004-03-01', 20, '2', '2', 'M. Yaseen', 'Driver', 15000.00, 1, 0.00, 230000.00, 'Chennai', 'Chennai', '2404230007', '1', '1', 'upload_files/candidate_tracker/99284762719_new_resume1.pdf', NULL, '1', '2024-04-23', 0, '', '3', '59', '2024-05-02', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Giri Team Relationship Executive Role need to analyse in 7 days and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-23 05:40:28', 60, '2024-04-30 08:41:07', 0, NULL, 1),
(18681, 'Mohammed Mubeen', '6', '6385110163', '', 'mhdmubeen014@gmail.com', '2003-09-18', 20, '2', '2', 'Mothin S', 'Driver', 18000.00, 1, 0.00, 230000.00, 'Chennai', 'Chennai', '2404230008', '1', '1', 'upload_files/candidate_tracker/26889329855_RESUME -M.pdf', NULL, '1', '2024-04-23', 0, '', '3', '59', '2024-05-02', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Kanna Team Relationship Executive Need to analyse in 7 days and confirm', '5', '2', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-23 05:47:28', 60, '2024-04-30 06:07:51', 0, NULL, 1),
(18682, 'meganathan', '6', '8838119496', '', 'mega26710@gmail.com', '1999-10-07', 24, '2', '2', 'chitravele', 'nil', 20000.00, 0, 0.00, 18000.00, 'chennai', 'chennai', '2404230009', '50', '1', 'upload_files/candidate_tracker/42980591223_Meganathan.pdf', NULL, '1', '2024-04-23', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication Performance And Communication is not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-23 05:55:12', 112, '2024-04-23 12:20:00', 0, NULL, 1),
(18683, 'vellapandi m', '6', '6374006608', '', 'vellapandiba368@gmail.com', '2001-02-14', 23, '2', '2', 'murgan', 'agriculture', 30000.00, 1, 0.00, 20000.00, 'thirunelveli', 'chennai', '2404230010', '38', '2', 'upload_files/candidate_tracker/28744277737_VELLAPANDI.pdf', NULL, '1', '2024-04-24', 30, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '1yrs exp loan dept ,saly exp high\nprevious salary 10.5k now exp 18k take home.communication not well', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-23 06:22:59', 112, '2024-04-24 12:32:48', 0, NULL, 1),
(18684, 'Anusha v', '6', '7305572860', '8870639015', 'anushavenkat135@gmail.com', '2001-12-01', 22, '2', '2', 'R.Venkatesan', 'Agriculture', 30000.00, 2, 0.00, 25000.00, 'Neyveli', 'Chennai', '2404230011', '50', '1', 'upload_files/candidate_tracker/89954536793_ANUSHA.V.pdf', NULL, '1', '2024-04-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-23 06:36:56', 112, '2024-04-23 12:51:23', 0, NULL, 1),
(18685, 'M sasipriya', '6', '8220248765', '8838652655', 'sasipriyamani2001@gmail.com', '2001-05-27', 22, '2', '2', 'T Manivannan', 'Agriculture', 10000.00, 4, 0.00, 16.00, 'Cuddalore', 'Chennai', '2404230012', '50', '1', 'upload_files/candidate_tracker/99257589464_Resume - Priya.pdf', NULL, '1', '2024-04-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50 50.  pls check once', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-23 06:39:23', 112, '2024-04-23 02:51:17', 0, NULL, 1),
(18686, 'Anbanandan', '20', '9677105529', '6384620789', 'anbuch77@gmail.com', '1998-07-27', 25, '2', '2', 'Harikrishnan', 'Gas delevery service', 15000.00, 2, 18500.00, 22000.00, 'Chennai', 'Chennai', '2404230013', '1', '2', 'upload_files/candidate_tracker/33660134474_Anbanandan.Resume (3).docx', NULL, '1', '2024-04-23', 0, '', '3', '59', '2024-04-24', 286000.00, '', '3', '2025-02-10', '1', 'Selected for Gnanasekar Team Relationship Manager Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-23 06:41:13', 60, '2024-04-23 05:22:47', 0, NULL, 1),
(18687, 'Jayasurya. M', '5', '9566289271', '9789924523', 'Suryazohan7@gmail.com', '1996-08-02', 27, '2', '2', 'Jeevanandhini', 'Housewife', 20000.00, 1, 21000.00, 20000.00, 'Villivakkam', 'Villivakkam', '2404230014', '51', '2', 'upload_files/candidate_tracker/99690009264_Gmail - IndusInd Bank Transaction Alert.PDF', NULL, '1', '2024-04-23', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected by gaurav sir', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-23 07:16:22', 112, '2024-04-23 03:15:43', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18688, 'ramya sb', '5', '9663902056', '', 'ramyasb63@gmail.com', '1988-12-17', 35, '2', '2', 'kamala kb', 'sda', 100000.00, 2, 33000.00, 40000.00, 'mangalore', 'bangalore', '2404230015', '49', '2', 'upload_files/candidate_tracker/28583129693_RAMYA SB CV24.docx', NULL, '1', '2024-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-23 08:16:58', 1, '2024-04-23 09:29:00', 0, NULL, 1),
(18689, '', '0', '9535918243', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404230016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-23 08:25:36', 0, NULL, 0, NULL, 1),
(18690, 'SHOAIB AHMED', '6', '8939774289', '7395952272', 'Shoaibahmed9734@gmail.com', '2009-04-23', 0, '2', '2', 'Zakiya Sultana', 'Wedding planner', 30000.00, 2, 0.00, 25000.00, '3.adithanar lane ,Puddupet Harris road Egmore', '3.adithanar lane Harris road puddupet Chennai-02', '2404230017', '1', '1', 'upload_files/candidate_tracker/60018941902_Shoaib.pdf', NULL, '1', '2024-04-23', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate unfit for sales,Communication not well', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-04-23 09:03:24', 112, '2024-04-23 02:57:58', 0, NULL, 1),
(18691, 'Rakesh', '6', '7871909730', '8939248584', 'rr7180109@gmail.com', '2001-10-11', 22, '1', '2', 'Ramesh', 'Painter', 90000.00, 1, 0.00, 17.00, 'Pursaiwalkam', 'No5, ponniamman Kovil st, pursaiwalkam', '2404230018', '', '1', 'upload_files/candidate_tracker/84440034318_pdf_20230719_165305_0000.pdf', NULL, '1', '2024-04-23', 0, '77840', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no skill  and low voice ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-23 10:17:13', 112, '2024-04-23 04:44:03', 0, NULL, 1),
(18692, '', '0', '9080199596', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404230019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-23 10:42:14', 0, NULL, 0, NULL, 1),
(18693, '', '0', '9363188968', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404230020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-23 05:20:22', 0, NULL, 0, NULL, 1),
(18694, 'Ramakrishnan', '6', '8754360060', '', 'Ramakrishnan60060rk@gmail.com', '2000-02-28', 24, '1', '2', 'Kalimuthu', 'Former', 12000.00, 2, 19000.00, 25000.00, 'Devakottai', 'Madippakam', '2404240001', '', '2', 'upload_files/candidate_tracker/9331018325_ramkey resume 23feb24.pdf', NULL, '1', '2024-04-24', 0, '55731', '3', '59', '2024-05-07', 309996.00, '', NULL, '2024-11-20', '1', 'Selected for Jagadeesh Team Staff role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-24 04:30:29', 60, '2024-05-07 11:01:05', 0, NULL, 1),
(18695, 'RAHEEM BASHA A', '31', '6383759823', '', 'rahim9940489171@gmail.com', '2003-07-15', 20, '3', '2', 'Abdulla', 'Labour', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2404240002', '', '1', 'upload_files/candidate_tracker/77262237615_RAHEEM BASHA.pdf', NULL, '1', '2024-04-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-24 04:40:06', 1, '2024-04-24 05:09:35', 0, NULL, 1),
(18696, 'Shiva prakash A', '5', '9008571673', '6363323492', 'Sp040615@gmail.com', '1998-07-16', 25, '2', '2', 'Anand', 'Clerk', 25000.00, 1, 0.00, 22000.00, '62/1 main road 3 cross rc puram Bangalore 560021', 'Robertson Block rc puram Bangalore', '2404240003', '1', '1', 'upload_files/candidate_tracker/66786340741_shiva resume123.docx', NULL, '1', '2024-04-24', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of knowledge', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-04-24 04:44:56', 126, '2024-04-24 03:49:29', 0, NULL, 1),
(18697, 'Syed shakil', '6', '6380357829', '9345263638', 'syedshakil3333@gmail.com', '2002-09-19', 21, '2', '2', 'Syed umar', 'Driver', 25000.00, 1, 15000.00, 16000.00, 'Old washermenpet chennai 600021', 'Old washermenpet chennai 600021', '2404240004', '51', '2', 'upload_files/candidate_tracker/88569657418_shakil .pdf', NULL, '1', '2024-04-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Discussed with the Candidate ,he is not interested in the job profile.Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-24 05:07:22', 112, '2024-04-24 12:26:12', 0, NULL, 1),
(18698, 'Puviyarasi', '4', '9944457148', '7845019272', 'Puviyapuviyarasi@gmail.com', '1999-12-07', 24, '2', '2', 'Madhavan', 'Tncsc( bc)', 80.00, 5, 0.00, 10000.00, 'Kallaperambur', 'Thanjavur', '2404240005', '1', '1', 'upload_files/candidate_tracker/2678593815_Puviyarasi Resume 24.pdf', NULL, '1', '2024-04-24', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-24 05:07:49', 108, '2024-04-24 11:20:52', 0, NULL, 1),
(18699, 'Saranya', '6', '8637497105', '9840206509', 'saranyamercy64@gmail.com', '2001-11-06', 22, '2', '2', 'Sathyamoorthi', 'Painter', 18000.00, 1, 25320.00, 20000.00, 'No 40 Bagavathy Amman Street Kolathur Chennai 99', 'No 40 Bagavathy Amman Street Kolathur Chennai 99', '2404240006', '50', '2', 'upload_files/candidate_tracker/92640352547_Saranya resume original.pdf', NULL, '1', '2024-04-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good communication skill , and voice  experience', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-24 05:09:24', 112, '2024-04-24 12:45:55', 0, NULL, 1),
(18700, 'ramakrishna v', '6', '7530030527', '8610882362', 'sriramcrazykid@gmail.com', '2000-01-24', 24, '2', '2', 'kasthuri v', 'housewife', 25000.00, 1, 0.00, 24000.00, 'chennai', 'chennai', '2404240007', '50', '1', 'upload_files/candidate_tracker/4816340636_Rama', NULL, '1', '2024-04-24', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-24 05:20:35', 112, '2024-04-24 04:21:26', 0, NULL, 1),
(18701, 'Mugesh', '6', '7358240958', '8056825119', 'mugeshroxx25@gmail.com', '1996-12-11', 27, '2', '2', 'I chitibabu', 'Record clerk', 80000.00, 1, 150000.00, 20000.00, 'Chennai', 'Chennai', '2404240008', '42', '2', 'upload_files/candidate_tracker/78833730979_Mugesh C - CV.pdf', NULL, '1', '2024-04-24', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is not ok, he is unfit for the sales profile.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-24 05:23:50', 112, '2024-04-24 12:33:23', 0, NULL, 1),
(18702, 'Mary Rexala J', '6', '8056648049', '7305560086', 'maryrexala2002j@gmail.com', '2002-10-09', 21, '2', '2', 'Jabamalai', 'Construction', 200000.00, 3, 18000.00, 20000.00, 'Vandavasi', 'Chennai', '2404240009', '50', '2', 'upload_files/candidate_tracker/77771029464_Mary Rexala (1).pdf', NULL, '1', '2024-04-24', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50 - 50. Check from your end', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-24 05:41:23', 112, '2024-04-24 04:19:11', 0, NULL, 1),
(18703, 'Suhas BP', '5', '8050771518', '9980288310', 'Suhasbp36@gmail.com', '1999-11-11', 24, '2', '2', 'Pradeep kumar', 'Salesman', 11000.00, 0, 0.00, 25000.00, 'TSF basavanagudi', 'Basavanagudi', '2404240010', '39', '1', 'upload_files/candidate_tracker/42748347429_SUHAS BP.pdf', NULL, '1', '2024-04-24', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'suggested ctc 20k will join on monday', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-24 05:49:28', 126, '2024-04-24 01:03:58', 0, NULL, 1),
(18704, 'Navinraj B', '6', '9710528763', '', 'navinbrkn10@gmail.com', '1998-10-23', 25, '2', '2', 'Babu D', 'Auto driver', 12000.00, 1, 339372.00, 450000.00, 'Chennai', 'Chennai', '2404240011', '50', '2', 'upload_files/candidate_tracker/4733919665_Navinraj.pdf', NULL, '1', '2024-04-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-24 05:59:07', 112, '2024-04-24 12:25:25', 0, NULL, 1),
(18705, 'gokul', '5', '9790835585', '8428676814', 'gocoolashley1999@gmail.com', '1999-07-31', 24, '2', '2', 'velmurugan', 'own cab driver', 35000.00, 1, 40000.00, 40000.00, 'chennai', 'chennai', '2404240012', '1', '2', 'upload_files/candidate_tracker/4960894032_New CV.pdf', NULL, '1', '2024-04-24', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sriram sir Rejected this candidate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-24 06:17:17', 108, '2024-04-24 12:02:50', 0, NULL, 1),
(18706, 'Vignesh', '6', '9884302037', '', 'vigneshm738@gmail.com', '1998-09-14', 25, '1', '2', 'Munusamy', 'Tailor', 40000.00, 1, 20000.00, 25000.00, 'Perambur', 'Perambur', '2404240013', '', '2', 'upload_files/candidate_tracker/97479450464_VIGNESH. M.pdf', NULL, '1', '2024-04-24', 0, '77840', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'good experience for marketing field but salery expection is veryhighso i wll check with  7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-24 06:20:55', 112, '2024-04-24 03:13:21', 0, NULL, 1),
(18707, 'VISHNU', '20', '9585598684', '9345614734', 'vishnuvino684@gmail.com', '2000-05-25', 23, '2', '2', 'VADIVEL', 'Farmer', 40000.00, 1, 16000.00, 18000.00, 'vadapalani', 'vadapalani', '2404240014', '45', '2', 'upload_files/candidate_tracker/21434877742_Resume_2022-05-10-080557.pdf', NULL, '1', '2024-04-24', 1, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-24 06:25:36', 112, '2024-04-24 03:14:25', 0, NULL, 1),
(18708, 'Aysha begum N.', '6', '7695844278', '9080876461', 'littleprincess312904@gmail.com', '2004-11-04', 19, '2', '2', 'Nowshath', 'Tailor', 35000.00, 2, 12000.00, 16000.00, 'Chennai old washermenpet', 'Chennai old washermenpet', '2404240015', '50', '2', 'upload_files/candidate_tracker/92581606351_CV_2024033015095552-1.pdf', NULL, '1', '2024-04-24', 3, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'previous experience for voice process and good speaking skill . so i will check 7dasy training', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-24 06:36:21', 112, '2024-04-24 12:47:21', 0, NULL, 1),
(18709, '', '0', '9094415104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404240016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-24 06:39:47', 0, NULL, 0, NULL, 1),
(18710, 'M.Deepika', '5', '9030717039', '7780417192', 'deepika.nandu.m@gmail.com', '2002-06-06', 21, '2', '2', 'M.venugopal', 'Baber', 10000.00, 1, 17000.00, 20000.00, 'Madanapalli', 'Gb palya', '2404240017', '1', '2', 'upload_files/candidate_tracker/25946580811_deepika resume.docx', NULL, '1', '2024-04-24', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-04-24 06:59:01', 126, '2024-04-24 03:47:51', 0, NULL, 1),
(18711, 'Karthick', '4', '9094415015', '', 'Vineshmmm@gmail.com', '2009-04-24', 0, '3', '2', 'Muragavel', 'Sales', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2404240018', '', '2', 'upload_files/candidate_tracker/25793309799_Resume.pdf', NULL, '1', '2024-04-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-24 07:02:00', 1, '2024-04-24 07:04:52', 0, NULL, 1),
(18712, 'M.l.vaishnavi', '5', '7338855947', '9710635035', 'vaishuviji1992@gmail.com', '1992-12-22', 31, '2', '1', 'Lekshman', 'Network', 40000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2404240019', '51', '2', 'upload_files/candidate_tracker/66222942427_vaishnavi resume.docx', NULL, '1', '2024-04-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-24 08:45:25', 112, '2024-04-24 03:10:57', 0, NULL, 1),
(18713, 'Martin Halen J L', '21', '9841140770', '', 'jlhalenmartin123@gmail.com', '2001-09-16', 22, '6', '2', 'Pushpa J', 'Customer support executive', 22500.00, 1, 22500.00, 28000.00, 'Chennai', 'Chennai', '2404240020', '', '2', 'upload_files/candidate_tracker/72186580715_Professional CV Resume - Martin _20240417_102249_0000.pdf', NULL, '1', '2024-04-24', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-24 09:52:28', 1, '2024-04-24 10:09:45', 0, NULL, 1),
(18714, 'swayam prakash das', '17', '7978365340', '7606065340', 'swayamdas374@gmail.com', '1993-11-09', 30, '2', '2', 'uttam Chandra Das', 'teacher', 80000.00, 1, 17500.00, 25000.00, 'odisha', 'bengaluru', '2404240021', '49', '2', 'upload_files/candidate_tracker/73333434140_Swayam-prakash-Das-FlowCV-Resume-20240420.pdf', NULL, '1', '2024-04-26', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-24 10:32:58', 1, '2024-04-24 10:38:35', 0, NULL, 1),
(18715, 'Yuvapriya', '5', '9940378854', '9840314243', 'uvapriya1877@gmail.com', '2002-02-07', 22, '2', '2', 'Vijayan', 'Labour', 720000.00, 1, 19000.00, 25000.00, 'Chennai', 'Chennai', '2404240022', '1', '2', 'upload_files/candidate_tracker/12990794457_Document from Yuva?.pdf', NULL, '1', '2024-04-29', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-24 01:31:08', 112, '2024-04-29 03:07:42', 0, NULL, 1),
(18716, 'Priya', '4', '6389556789', '6369456790', 'Priyank12@gmail.com', '2001-03-15', 23, '3', '2', 'Murgar', 'Asst manager', 40000.00, 1, 16000.00, 20000.00, 'Avadi', 'Avadi', '2404240023', '', '2', 'upload_files/candidate_tracker/57570258756_XMGlobal-Risk-Disclosures-for-Financial-Instruments.pdf', NULL, '1', '2024-04-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-24 02:44:39', 1, '2024-04-24 02:47:51', 0, NULL, 1),
(18717, 'Alagar R', '14', '9150118554', '', 'alagar17302@gmail.com', '2002-03-17', 22, '3', '2', 'Ramar', 'Daily worker', 8000.00, 2, 0.00, 14000.00, 'Arupukottai', 'Chennai', '2404250001', '', '1', 'upload_files/candidate_tracker/10440041477_Alagar.pdf', NULL, '1', '2024-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-25 05:27:34', 1, '2024-04-25 05:31:13', 0, NULL, 1),
(18718, 'Dass Fernick', '13', '9488816066', '', 'dassfernick@gmail.com', '2001-03-31', 23, '3', '2', 'Savari Dass', 'Driver', 25000.00, 2, 15000.00, 18000.00, 'Kodaikanal', 'Chennai', '2404250002', '', '2', 'upload_files/candidate_tracker/55775665298_Dass', NULL, '1', '2024-04-25', 2, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 05:28:13', 112, '2024-04-26 04:57:21', 0, NULL, 1),
(18719, 'RAJA', '5', '8925305790', '', 'rajaselvakumarrk@gmail.com', '2001-10-18', 22, '2', '2', 'RAJ KUMAR', 'Sales', 15000.00, 7, 20000.00, 23000.00, 'Vyasarpadi', 'Vyasarpadi market', '2404250003', '1', '2', 'upload_files/candidate_tracker/45983970977_Raja_Resume_143.pdf', NULL, '1', '2024-04-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok, 1yr experience loan dept telecalling xxamp field work, previous salary 17k, now exp 17k to 18k,pls cross check payslip xxamp Resigning letter and confirm the joining date ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-25 05:28:20', 108, '2024-04-25 03:18:43', 0, NULL, 1),
(18720, '', '0', '9345683184', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404250004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-25 05:28:51', 0, NULL, 0, NULL, 1),
(18721, 'Jeevaananthan. M', '13', '8248346974', '', 'jeevamp0799@gmail.com', '1998-02-23', 26, '3', '2', 'E. Manikandan', 'Farmer', 20000.00, 1, 0.00, 12000.00, 'Theni', 'Chennai', '2404250005', '', '1', 'upload_files/candidate_tracker/40011904852_Jeevaananthan.M-Resume.pdf', NULL, '1', '2024-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-25 05:30:50', 1, '2024-04-25 05:34:40', 0, NULL, 1),
(18722, 'Ajay Ravi', '13', '9789211976', '', 'robinajay98@gmail.com', '1998-11-04', 25, '3', '2', 'N Ravi', 'Rice business', 25000.00, 1, 15000.00, 20000.00, 'Salem', 'Chennai', '2404250006', '', '2', 'upload_files/candidate_tracker/57035895734_Ajay_Update.pdf', NULL, '1', '2024-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 05:30:50', 112, '2024-04-26 04:59:28', 0, NULL, 1),
(18723, 'Ramya.k', '6', '6381915789', '6382423907', 'ramyaria8102@gmail.com', '2002-01-08', 22, '3', '2', 'Kothandapani.K', 'Labour', 25000.00, 2, 14000.00, 18000.00, 'Chennai', 'Chennai', '2404250007', '', '2', 'upload_files/candidate_tracker/90265977101_R.Anandhi_Resume-2 (2).pdf', NULL, '1', '2024-04-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate previos expreience accounts, but high salary need to change the job . but good skil so i will check 7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 05:38:33', 112, '2024-04-25 04:47:44', 0, NULL, 1),
(18724, 'Saran.N', '5', '9361811982', '6374571722', 'saranraj20201@gmail.com', '2002-07-15', 21, '2', '2', 'Natarajan', 'Former', 10000.00, 3, 0.00, 20000.00, 'Thirichirapalli', 'Chennai', '2404250008', '1', '2', 'upload_files/candidate_tracker/20021330385_saran..pdf', NULL, '1', '2024-04-25', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Already He Is Working Reliance Life For 6 Month And He Is Not Fit For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-25 05:40:40', 112, '2024-04-25 12:06:16', 0, NULL, 1),
(18725, 'Antony Mercy E', '14', '9688503046', '', 'evangelinemercy24@gmail.com', '2001-02-24', 23, '3', '1', 'Esthou', 'Vegetable Vendor', 30000.00, 2, 0.00, 18000.00, 'No:1A, Narmatha 2nd st, Jothi Nagar, Annanur', 'no.1A, Narmatha 2nd St, Jothi Nagar, Annanur', '2404250009', '', '1', 'upload_files/candidate_tracker/52240772973_ANTONY_MERCY_FD_RESUME.pdf', NULL, '1', '2024-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 05:41:35', 112, '2024-04-26 04:58:27', 0, NULL, 1),
(18726, 'DEEPA G', '2', '8248939923', '', 'deepalakshmig14@gmail.com', '1998-07-14', 25, '3', '2', 'Gopal E', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Salem', 'Chennai', '2404250010', '', '1', 'upload_files/candidate_tracker/26617751361_deepa.pdf', NULL, '1', '2024-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 05:41:52', 112, '2024-04-26 05:00:20', 0, NULL, 1),
(18727, 'Tharun S', '2', '9500854093', '', 'tharunfvc@gmail.com', '2003-05-15', 20, '3', '2', 'Selvaraj', 'Farmer', 20000.00, 1, 0.00, 12000.00, 'Trichy', 'Chennai', '2404250011', '', '1', 'upload_files/candidate_tracker/21312449114_S.Tharun-FlowCV-Resume-20240425.pdf', NULL, '1', '2024-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 05:43:20', 112, '2024-04-26 04:59:47', 0, NULL, 1),
(18728, 'Karthikeyan karuthiruman', '14', '9789834414', '6381823677', 'karthikeyan.flutterdev@gmail.com', '1998-10-30', 25, '3', '2', 'Sasikala', 'Homemaker', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2404250012', '', '1', 'upload_files/candidate_tracker/66370661996_Karthikeyan dev.resume.pdf', NULL, '1', '2024-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 05:47:17', 112, '2024-04-26 05:00:05', 0, NULL, 1),
(18729, 'Nithruja', '14', '7598252306', '', 'nithrujasubramanian@gmail.com', '2001-02-16', 23, '3', '2', 'Rajalaxmi', 'Labour', 20000.00, 0, 15000.00, 17000.00, 'Thirupur', 'Chennai', '2404250013', '', '2', 'upload_files/candidate_tracker/7166709061_nithruja.pdf', NULL, '1', '2024-04-25', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-25 05:56:47', 1, '2024-04-25 06:02:23', 0, NULL, 1),
(18730, 'Mohammed Faseeullah', '2', '7010264657', '', 'faseeullah.1998@gmail.com', '1998-12-30', 25, '3', '2', 'Samiyullah', 'Electrician', 15000.00, 1, 0.00, 3.60, 'Chennai', 'Chennai', '2404250014', '', '1', 'upload_files/candidate_tracker/4659500726_Resume ().pdf', NULL, '1', '2024-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 06:03:00', 112, '2024-04-26 04:59:14', 0, NULL, 1),
(18731, 'Esakkiraja', '13', '7010005743', '', 'esakkirajam605@gmail.com', '1999-04-25', 25, '3', '2', 'Mani', 'Cooli', 15000.00, 5, 15000.00, 15000.00, 'Tuticorin', 'CHENNAI', '2404250015', '', '2', 'upload_files/candidate_tracker/9890192975_ESAKKIRAJA.pdf', NULL, '1', '2024-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-25 06:08:12', 1, '2024-04-25 06:39:51', 0, NULL, 1),
(18732, 'D.sree harshini', '5', '9391440132', '9160479428', 'sreeharshininani@gmail.com', '2000-12-30', 23, '2', '2', 'D.Hema kishore', 'Government employee', 80.00, 1, 0.00, 25000.00, 'Punganur', 'Marathahalli', '2404250016', '39', '1', 'upload_files/candidate_tracker/92634492629_sreeharshini .D (1).pdf', NULL, '1', '2024-04-25', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and interested in IT department', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 06:09:23', 126, '2024-04-25 01:01:37', 0, NULL, 1),
(18733, 'Mejari Nagalakshmi', '5', '6309432058', '7286911557', 'lakshmimejari07@gmail.com', '2001-08-13', 22, '2', '2', 'Mejari Reddappa', 'Farmer', 25009.00, 1, 0.00, 2500.00, 'Marthalli', 'Marthalli', '2404250017', '39', '1', 'upload_files/candidate_tracker/39796966244_Nagalakshmi Mejari2.pdf', NULL, '1', '2024-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-25 06:09:24', 1, '2024-04-25 06:15:04', 0, NULL, 1),
(18734, 'Ajith kumar A', '5', '7845477382', '9566254197', 'ajithak0549@gmail.com', '1999-08-09', 24, '2', '1', 'Fathima haneem moulana S. y', 'Team lead', 30000.00, 1, 25000.00, 28000.00, 'Dindigul', 'Kodambakkam', '2404250018', '50', '2', 'upload_files/candidate_tracker/3821350581_Ajith Kumar Resume.. (1)-1 (1) (1) (1).pdf', NULL, '1', '2024-04-25', 10, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 07:15:29', 112, '2024-04-25 04:43:18', 0, NULL, 1),
(18735, 'Manikandan.k', '5', '8015775008', '9500585036', 'Manishmani0036@gmail.com', '1999-02-10', 25, '2', '2', '9578486118', 'Sales executive', 30000.00, 2, 20000.00, 25000.00, 'Dindigal', 'Kodambakkam', '2404250019', '50', '2', 'upload_files/candidate_tracker/78804418010_MM.pdf', NULL, '1', '2024-04-25', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance is Not Good .also his voice is very low and not performed like experianced person', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 07:16:02', 112, '2024-04-25 04:18:51', 0, NULL, 1),
(18736, 'Jagadeesh', '5', '7989432989', '9951927811', 'jagadeeshkodisi7@gmail.com', '2001-08-30', 22, '2', '2', 'Prakash', 'Cable', 20.00, 1, 19000.00, 26000.00, 'BENGALURU', 'BENGALURU', '2404250020', '39', '2', 'upload_files/candidate_tracker/87626409154_2478817_Kodisi Jagadeesh Sai_JK.pdf', NULL, '1', '2024-04-25', 30, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 07:23:05', 126, '2024-04-25 01:05:55', 0, NULL, 1),
(18737, 'Lavanya', '33', '9535166041', '', 'lavanyan541@gmail.com', '1993-11-17', 30, '2', '2', 'Narasimhaih', 'Teacher', 500000.00, 2, 32000.00, 45000.00, 'CHENNAI', 'CHENNAI', '2404250021', '50', '2', 'upload_files/candidate_tracker/56085891156_lavanya_cv-1 (3).pdf', NULL, '1', '2024-04-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-25 09:46:53', 112, '2024-04-25 04:24:23', 0, NULL, 1),
(18738, 'Giddaluru Arun', '4', '9885552273', '', 'giddaluruarun17@gmail.com', '2000-12-20', 23, '2', '2', 'Giddaluru Ankanna', 'Student', 20000.00, 0, 0.00, 25000.00, 'Jammalamadugu', 'Jammalamadugu', '2404250022', '47', '1', 'upload_files/candidate_tracker/97390642931_arun new.pdf', NULL, '1', '2024-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-25 12:41:43', 1, '2024-04-25 12:43:38', 0, NULL, 1),
(18739, '', '0', '7010144717', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404250023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-25 01:17:13', 0, NULL, 0, NULL, 1),
(18740, 'preetha', '6', '8122584464', '', 'preethasekar02@gmail.com', '2002-11-02', 21, '2', '2', 'sekar', 'kuli', 12000.00, 2, 12500.00, 18000.00, 'chennai', 'chennai', '2404250024', '1', '2', 'upload_files/candidate_tracker/78095797225_Preetha.pdf', NULL, '1', '2024-04-26', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'She is expecting high salary but is not fit for that', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2024-04-25 02:04:56', 1, '2024-04-26 06:10:55', 0, NULL, 1),
(18741, 'Hinduja', '6', '8610787964', '8056708483', 'hindujar74@gmail.com', '2003-07-02', 20, '2', '2', 'Parent', 'Catering', 40000.00, 1, 0.00, 20000.00, 'Pammal', 'Pammal', '2404260001', '1', '1', 'upload_files/candidate_tracker/503982039_DOC-20240419-WA0003..pdf', NULL, '1', '2024-04-26', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher communication not good,unfit', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-26 04:26:19', 112, '2024-04-26 11:16:07', 0, NULL, 1),
(18742, 'SOMANATHAN P T', '10', '9994374008', '7010015155', 'somu.somnath4@gmail.com', '1984-05-08', 39, '2', '1', 'KALAIVANI C', 'HOME WIFE', 15000.00, 1, 360000.00, 500000.00, 'Chennai', 'DHARMAPURI', '2404260002', '38', '2', 'upload_files/candidate_tracker/6068288219_SomanathanCV-2024 (12.docx', NULL, '2', '2024-04-27', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-26 04:59:13', 1, '2024-04-26 05:05:40', 0, NULL, 1),
(18743, 'debashis ranjan behera', '5', '8249816361', '', 'debashis3373@gmail.com', '1994-10-20', 29, '3', '1', 'deepak kumar behera', 'govt employee', 200000.00, 2, 0.00, 30000.00, 'bhubaneswar', 'bhubaneswar', '2404260003', '', '1', 'upload_files/candidate_tracker/25611516913_Debashis Ranjan Behera cv .pdf', NULL, '2', '2024-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-26 06:04:49', 1, '2024-04-26 06:25:06', 0, NULL, 1),
(18744, 'Praveenraj.A', '5', '9677286754', '9971625439', 'praveenraj1775@gmail.com', '2000-01-30', 24, '2', '2', 'Anthony samy', 'Maison', 50000.00, 1, 21000.00, 27000.00, 'Ambattur', 'Ambattur', '2404260004', '1', '2', 'upload_files/candidate_tracker/64367449837_pr resuse.pdf', NULL, '2', '2024-04-26', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-26 06:20:50', 112, '2024-04-26 01:00:26', 0, NULL, 1),
(18745, '', '0', '9677089188', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404260005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-26 07:44:26', 0, NULL, 0, NULL, 1),
(18746, 'Praveen A', '2', '8754858660', '8838714584', 'jamnishan345@gmail.com', '2002-11-01', 21, '3', '2', 'Premalatha A', 'Farmer', 25000.00, 1, 0.00, 25000.00, 'Ramanathapuram', 'Chennai', '2404260006', '', '1', 'upload_files/candidate_tracker/64809310130_Shan_Resume-1.pdf', NULL, '1', '2024-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-26 07:57:19', 1, '2024-04-26 08:13:18', 0, NULL, 1),
(18747, 'Sakthi Vishal', '13', '6374656199', '', 'sakthivishal815@gmail.com', '2003-06-16', 20, '3', '2', 'Anbarasan', 'Driver', 30000.00, 1, 0.00, 15000.00, 'Mayiladuthurai', 'Tambaram', '2404260007', '', '1', 'upload_files/candidate_tracker/78640612298_cv.pdf', NULL, '1', '2024-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-26 09:28:57', 1, '2024-04-26 09:39:57', 0, NULL, 1),
(18748, 'Aaqib Bashir Bhat', '5', '9149893353', '', 'aaqibbashirbhat232@gmail.com', '2000-06-17', 23, '3', '2', 'Bashir Ahmed Bhat', 'Farmer', 5000.00, 4, 300000.00, 450000.00, 'KUPWRA', 'BTM SECOND STAGE LAYOUT', '2404260008', '', '2', 'upload_files/candidate_tracker/86385235753_Aaqibs Resume (4).pdf', NULL, '1', '2024-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-26 01:07:20', 1, '2024-04-29 07:15:42', 0, NULL, 1),
(18749, '', '0', '8939599164', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404260009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-26 01:08:33', 0, NULL, 0, NULL, 1),
(18750, 'Jeswin Raja', '4', '8903064726', '', 'jeswinraja2647@gmail.com', '1999-02-26', 25, '2', '2', 'Jeeva latha', 'House wife', 20000.00, 2, 18500.00, 25000.00, 'Manalikarai', 'Manalikarai', '2404270001', '50', '2', 'upload_files/candidate_tracker/70038315791_Jeswin Resume (1).docx', NULL, '1', '2024-04-27', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-27 04:51:33', 112, '2024-04-27 04:47:38', 0, NULL, 1),
(18751, 'Sujata', '5', '7349408503', '8296927539', 'sujatassk69@gmail.com', '1995-09-03', 28, '2', '1', 'Sidagouda', 'BTM layout', 1.08, 0, 1.08, 4.00, 'Bidar', 'Bangalore', '2404270002', '51', '2', 'upload_files/candidate_tracker/98838447661_Sujata CV.pdf', NULL, '1', '2024-04-27', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of knowledge and salary expectation is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-27 04:52:55', 112, '2024-04-27 05:02:52', 0, NULL, 1),
(18752, 'Muharji', '13', '9003818463', '7868049842', 'muharjisaravanan2000@gmail.com', '2000-05-20', 23, '3', '2', 'K.saravanan', 'Farmer', 65000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2404270003', '', '1', 'upload_files/candidate_tracker/44445674262_Muharji.S (1).pdf', NULL, '1', '2024-04-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-27 05:31:36', 1, '2024-04-27 05:37:01', 0, NULL, 1),
(18753, 'K Parveena malarvizhi', '13', '8903371635', '9159526944', 'parveenamalarvizhi@gmail.com', '2000-04-17', 24, '1', '2', 'Selvi', 'Teacher', 20000.00, 2, 0.00, 1500.00, 'Porur', 'Porur', '2404270004', '', '1', 'upload_files/candidate_tracker/54140087777_Resume.pdf', NULL, '1', '2024-04-27', 0, '2404270004', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-27 05:32:01', 1, '2024-04-27 06:07:26', 0, NULL, 1),
(18754, 'Karthika S', '13', '6374233503', '9524431460', 'karthikasnd@gmail.com', '2000-07-20', 23, '3', '2', 'Sivasubramaniyan', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Pattukottai', 'Porur', '2404270005', '', '1', 'upload_files/candidate_tracker/30337189773_my resume final..docx', NULL, '1', '2024-04-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-27 05:32:49', 1, '2024-04-27 05:42:36', 0, NULL, 1),
(18755, 'THIRUMALAI B', '13', '7904806079', '7339043399', 'thirumalai.balakirshnan@gmail.com', '1999-08-18', 24, '3', '2', 'Balakirshna k', 'Small business', 25000.00, 0, 0.00, 12000.00, 'Chennai 600118', 'Chennai 600118', '2404270006', '', '1', 'upload_files/candidate_tracker/49353026593_THIRUMALAI-B-FlowCV-Resume-20240320-2.pdf', NULL, '1', '2024-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-27 05:42:19', 1, '2024-04-27 05:48:51', 0, NULL, 1),
(18756, 'Naga pradeep', '4', '8525957349', '7339325276', 'pradeepsudhan.ns@gmail.com', '1996-01-07', 28, '2', '2', 'Mother', 'Nurse', 80000.00, 1, 16000.00, 20000.00, 'Vadapudupatti,Theni', 'Mathavaram, Chennai', '2404270007', '35', '2', 'upload_files/candidate_tracker/90393157664_Naga pradeep N.pdf', NULL, '1', '2024-04-27', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-27 06:00:52', 112, '2024-04-27 04:47:16', 0, NULL, 1),
(18757, 'Sangavi.s', '4', '6383475750', '9940699163', 'sangavijesus591@gmail.com', '1999-04-16', 25, '2', '2', 'Senguttuvan', 'Driver', 30000.00, 1, 15000.00, 20000.00, 'Puliyanthope ,chennai', 'Kodungaiyur, Chennai', '2404270008', '35', '2', 'upload_files/candidate_tracker/73055834163_sangavi S resume.pdf', NULL, '1', '2024-04-27', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-27 06:01:05', 112, '2024-04-27 04:47:04', 0, NULL, 1),
(18758, 'Sandhiya M', '5', '8088848001', '8317443913', 'sandhiyammsc@gmail.com', '1992-11-23', 31, '2', '1', 'Sandeep J', 'Associate', 35000.00, 1, 15000.00, 25000.00, 'Garvebhavipalya', 'Garvebhavipalya', '2404270009', '51', '2', 'upload_files/candidate_tracker/86781980887_M.Sandhiya Resume.pdf', NULL, '1', '2024-04-27', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of communication and Looking for NON voice process', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-27 06:07:37', 112, '2024-04-27 05:05:32', 0, NULL, 1),
(18759, 'Naveeen m', '5', '8618983753', '9945321267', 'naveenmn043@gmail.com', '1999-03-09', 25, '2', '2', 'Manjappa mv', 'Business', 50000.00, 1, 15000.00, 22000.00, 'Deepanjali nagar', 'Rpc layout', '2404270010', '39', '2', 'upload_files/candidate_tracker/22666065472_naveen mm mmmm.pdf', NULL, '1', '2024-04-27', 1, '', '3', '59', '2024-06-10', 252000.00, '', '5', '1970-01-01', '1', 'Selected for Sathish Team Bangalore Location Relationship Executive role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-27 06:13:38', 60, '2024-05-27 10:18:00', 0, NULL, 1),
(18760, '', '0', '6361290445', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404270011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-27 06:39:48', 0, NULL, 0, NULL, 1),
(18761, 'Mathan D', '13', '9042757290', '', 'mathan.dd15@gmail.com', '2000-11-08', 23, '3', '1', 'Devadoss T', 'Farmer', 8000.00, 2, 0.00, 20000.00, 'Tenkasi', 'Chennai', '2404270012', '', '1', 'upload_files/candidate_tracker/90302530466_Mathan Resume.pdf', NULL, '1', '2024-04-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-27 06:51:15', 130, '2024-06-03 03:44:48', 0, NULL, 1),
(18762, 'bharath', '5', '7418432549', '', 'bharathraipurohit3@gmail.com', '2000-07-15', 23, '2', '2', 'b pushp singh', 'retired', 50000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2404270013', '1', '1', 'upload_files/candidate_tracker/87053283910_Bharath.pdf', NULL, '1', '2024-04-27', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2024-04-27 06:51:50', 1, '2024-04-27 06:55:44', 0, NULL, 1),
(18763, 'Sandhiya.s', '6', '7200157112', '9962163599', 'sandyasaravanan2@gmail.com', '2001-03-30', 23, '3', '2', 'Saravanan', 'Cooli', 8000.00, 1, 15000.00, 18000.00, 'No .305 samanthi poo colony vyasarpadi Chennai.39', 'No .305 Samanthi Poo Colony Vyasarpadi Chennai.39', '2404270014', '', '2', 'upload_files/candidate_tracker/21853139896_Sandiya RESUME.docx', NULL, '1', '2024-04-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Performance And Communication Is not Good also expectation is high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-27 07:52:35', 112, '2024-04-27 05:19:43', 0, NULL, 1),
(18764, 'Firthose Banu', '6', '7200568605', '7448520246', 'firthosebanu861@gmail.com', '2006-01-08', 18, '3', '2', 'Jamruth', 'House keeping', 5000.00, 2, 15000.00, 18000.00, 'Pulianthope', 'Pulianthope', '2404270015', '', '2', 'upload_files/candidate_tracker/62612360533_firthose banu RESUME.docx', NULL, '1', '2024-04-27', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She has no degree, she is expecting high salary and so she is not fit for that salary', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-27 07:52:37', 112, '2024-04-27 05:27:18', 0, NULL, 1),
(18765, 'P kasisainath', '5', '8499072377', '8523063906', 'Saikumar.podili@gmail.com', '1997-08-01', 26, '2', '2', 'Pv s rao', 'Father', 20000.00, 4, 28000.00, 29500.00, 'Ap', 'Bangalore', '2404270016', '49', '2', 'upload_files/candidate_tracker/87149309542_P kasisainath_CV.pdf', NULL, '1', '2024-04-29', 1, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking in some other field not in sales', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-27 07:54:16', 126, '2024-04-29 05:37:38', 0, NULL, 1),
(18766, 'traicy whitney t', '14', '8072545033', '9786158698', 'whitneytraicy2001@gmail.com', '2001-03-02', 23, '3', '1', 'belwin dass', 'recruiter', 25000.00, 2, 0.00, 10000.00, 'chennai', 'chenn', '2404270017', '', '1', 'upload_files/candidate_tracker/60530183998_Traicy_whitney_resume.pdf', NULL, '1', '2024-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-27 09:12:08', 1, '2024-04-27 09:15:48', 0, NULL, 1),
(18767, 'Aditya Bhosale', '5', '7899885056', '6364565618', 'adityanbhosale97@gmail.com', '1997-04-21', 27, '2', '2', 'Nitin Bhosale', 'Business Man', 5.00, 0, 4.00, 4.50, 'Belgaum', 'Belgaum', '2404270018', '49', '2', 'upload_files/candidate_tracker/7568515669_Re mitsde.pdf', NULL, '1', '2024-04-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'confirm the joining and ctc , he dont have any salary proof he will get salary in hand previous company cross check', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-27 11:10:52', 60, '2024-05-06 08:31:43', 0, NULL, 1),
(18768, 'Divyadharshini L', '6', '9629200833', '8072432808', 'divyalogu2001@gmail.com', '2001-04-10', 23, '2', '2', 'Loganathan M', 'Business', 300000.00, 0, 0.00, 25000.00, 'Karur', 'Chennai', '2404290001', '51', '1', 'upload_files/candidate_tracker/90375431309_Divyadharshini CV.pdf', NULL, '1', '2024-04-29', 0, '', '3', '59', '2024-05-06', 168000.00, '', '5', '1970-01-01', '2', 'consultant role 14 ctc 13300 th', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-29 04:05:04', 60, '2024-05-06 10:17:01', 0, NULL, 1),
(18769, 'Aravindan A', '13', '7868901512', '', 'ARAVINDANANAND556@GMAIL.COM', '1995-11-30', 28, '3', '2', 'anandha murugan', 'business', 20000.00, 1, 0.00, 20000.00, 'chengalpat district', 'chengalapt district', '2404290002', '', '1', 'upload_files/candidate_tracker/55784676132_aravind.pdf', NULL, '1', '2024-04-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-29 04:29:05', 1, '2024-04-29 05:07:46', 0, NULL, 1),
(18770, 'dillirani v', '5', '8248821849', '', 'sharmila.131090@gmail.com', '1999-10-13', 24, '2', '2', 'veraram e', 'auro driver', 10000.00, 1, 20000.00, 25000.00, 'chennai', 'chennai', '2404290003', '1', '2', 'upload_files/candidate_tracker/4426632307_sharmila.pdf', NULL, '1', '2024-04-29', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-29 04:53:00', 112, '2024-04-29 03:06:07', 0, NULL, 1),
(18771, 'Navaneethakrishnan R', '6', '9080694128', '', 'naveen.ramsan@gmail.com', '1999-05-29', 24, '2', '2', 'Ramamoorty', 'Revanu', 700000.00, 0, 0.00, 20000.00, 'Peravurani, Thanjavur (dts)', 'Peravurani, Thanjavur (dts)', '2404290004', '1', '2', 'upload_files/candidate_tracker/54774371845_Navanee 003.new experience (1).pdf', NULL, '1', '2024-04-29', 0, '', '3', '59', '2024-05-02', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Gopi tEam need to analyse in 7 days relationship executive Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-29 05:08:33', 60, '2024-04-30 08:52:37', 0, NULL, 1),
(18772, 'musharaf ali j', '6', '8098759988', '', 'musharaf16091999@gmail.com', '1999-09-16', 24, '2', '2', 'jala', 'farmer', 20000.00, 2, 0.00, 20000.00, 'chidambaram', 'chennai', '2404290005', '42', '1', 'upload_files/candidate_tracker/15139481902_Musharafali.pdf', NULL, '1', '2024-04-29', 0, '', '3', '59', '2024-05-02', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team  Need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-29 05:12:05', 60, '2024-04-30 08:38:50', 0, NULL, 1),
(18773, 'Syed Sumair Malik', '5', '9880838882', '9342632598', 'syedsumair737@gmail.com', '2009-04-29', 0, '2', '2', 'Syed shabbir ahmed', 'Business', 40000.00, 3, 0.00, 23000.00, 'Kanakapura', 'Bangalore', '2404290006', '39', '2', 'upload_files/candidate_tracker/75845589693_sumair resume 2023-24-1.pdf', NULL, '1', '2024-04-29', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of Knowledge about the process and no response ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-29 05:17:50', 126, '2024-04-29 02:42:37', 0, NULL, 1),
(18774, '', '0', '7975827266', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404290007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-29 05:17:54', 0, NULL, 0, NULL, 1),
(18775, 'Dharish khedagi', '5', '9513461458', '9632057994', 'Kumardharish0@gmail.com', '1999-07-09', 24, '2', '2', 'Santoshkumar khedagi', 'Manger', 50000.00, 1, 20000.00, 25000.00, 'Shivkashi ganga nilaya athani road m.g.colony', 'Fort grand paying guest maruthinagr btm 1st stage', '2404290008', '47', '2', 'upload_files/candidate_tracker/22358172742_Dharish Resume.pdf', NULL, '1', '2024-04-29', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of knowledge and Looking in inside sales process ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-29 05:31:28', 126, '2024-04-29 05:49:24', 0, NULL, 1),
(18776, 'Dharanitharan J', '20', '9790759584', '', 'dharanitharan251955@gmail.com', '1995-05-14', 29, '2', '1', 'Jayaraman v', 'Farmer', 10000.00, 0, 32000.00, 35000.00, 'Tiruvannamalai', 'Chennai', '2404290009', '1', '2', 'upload_files/candidate_tracker/13180307049_Resume New.pdf', NULL, '1', '2024-05-30', 0, '', '5', '86', NULL, 0.00, '', '0', NULL, '1', 'Sriram sir rejected this candidate, Not satisfied', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1023', '0', NULL, NULL, NULL, 1, '2024-04-29 05:39:18', 1, '2024-05-30 06:43:05', 0, NULL, 1),
(18777, 'bibi hazira', '5', '8431069376', '', 'reefashaikh544@gmail.com', '2002-03-08', 22, '2', '2', 'mahammad rafee', 'puc', 40000.00, 1, 0.00, 20000.00, 'sagara karnataka', 'banagalore', '2404290010', '1', '1', 'upload_files/candidate_tracker/16452200201_Resume .docx', NULL, '1', '2024-04-29', 0, '', '3', '59', '2024-05-20', 216000.00, '', '5', '1970-01-01', '2', 'Selected for Relationship executive role need to analyse in 7 days training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-04-29 05:51:58', 60, '2024-05-17 01:09:08', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18778, 'Sana mahek', '5', '7349115849', '', 'shaikhorba@gmail.com', '1999-12-19', 24, '2', '2', 'Mohammed rafee', 'Diploma', 40000.00, 2, 0.00, 25.00, 'Nehru Nagar sagar', 'Raisandra banglore', '2404290011', '1', '1', 'upload_files/candidate_tracker/75890155444_cv_15_1693545008512 (1).pdf', NULL, '1', '2024-04-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-04-29 05:52:16', 126, '2024-04-29 01:17:38', 0, NULL, 1),
(18779, 'Abel', '13', '9080698650', '9962734714', 'abelfranco7401@gmail.com', '2001-04-07', 23, '3', '2', 'Sandra.A', 'Nil', 30000.00, 1, 0.00, 20000.00, '1096,12th Street, poompuhar Nagar, kolathur', '1096,12th Street, poompuhar Nagar, kolathur', '2404290012', '', '1', 'upload_files/candidate_tracker/7900439401_CV.pdf', NULL, '1', '2024-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-29 06:29:06', 1, '2024-04-29 06:34:50', 0, NULL, 1),
(18780, 'Siva shanmugam.k', '13', '9025076214', '', 'sivashanmugamk640@gmail.com', '2001-05-01', 22, '3', '2', 'Kumar', 'Driver', 15000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2404290013', '', '1', 'upload_files/candidate_tracker/69437093716_SIVA SHANMUGAM.pdf', NULL, '1', '2024-04-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-29 06:48:43', 130, '2024-06-07 01:24:34', 0, NULL, 1),
(18781, 'Syedu Waheed M', '32', '9043350951', '8608871964', 'masoodwaheed231@gmail.com', '2000-01-09', 24, '1', '2', 'Faheem', 'BDM', 50000.00, 2, 40000.00, 45000.00, 'Tirupatttur', 'Chennai', '2404290014', '', '2', 'upload_files/candidate_tracker/71764126792_Syedu.pdf', NULL, '1', '2024-04-29', 0, '112333', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit For Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-29 07:19:43', 112, '2024-04-29 03:42:45', 0, NULL, 1),
(18782, 'Jeevanantham', '6', '6379797738', '', 'jeevaamag1112@gmail.com', '1999-12-11', 24, '2', '2', 'Gunasekaran.K', 'Weilder', 13000.00, 1, 0.00, 25000.00, 'puducherry', 'puducherry', '2404290015', '1', '1', 'upload_files/candidate_tracker/98736828354_DocScanner 27 Apr 2024 10-08?am.pdf', NULL, '1', '2024-04-29', 0, '', '3', '59', '2024-05-07', 198000.00, '', '3', '2024-10-30', '2', 'Selected for DM Team Relationship Executive Bangalore Location Consultant Role Need to analyse in 7 days', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '', '', '1970-01-01', 1, '2024-04-29 07:33:26', 126, '2024-08-06 12:57:49', 0, NULL, 1),
(18783, 'Karthik Raja', '5', '8124080107', '9345157471', 'bkarthikraja07@gmail.com', '2001-01-08', 23, '2', '2', 'Balasubramaniam', 'Security', 15000.00, 2, 0.00, 25000.00, 'Bangalore', 'Bangalore', '2404290016', '39', '1', 'upload_files/candidate_tracker/36981352312_karthik Raja (3) (1).pdf', NULL, '1', '2024-04-29', 0, '', '3', '59', '2024-05-07', 198000.00, '', '4', '2024-06-01', '2', 'Selected For DM Team Relationship Executive Bangalore Location Consultant Role Need To Analyse In 7 Days', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-29 07:33:31', 127, '2024-05-07 11:29:12', 0, NULL, 1),
(18784, 'Smitha C B', '5', '9482291611', '', 'gowdasmitha58@gmail.com', '1994-07-22', 29, '2', '1', 'Chethan', 'Sap', 800000.00, 3, 0.00, 30000.00, 'Neralaghatta Doddaballpur', 'Kodigehalli', '2404290017', '39', '2', 'upload_files/candidate_tracker/78835744872_SMITHA RESUME (1).pdf', NULL, '1', '2024-04-29', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lack of communication and Salary Exception is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-29 07:44:26', 126, '2024-04-29 04:28:33', 0, NULL, 1),
(18785, 'pavan', '5', '9741873699', '7019746247', 'snpavan50@gmail.com', '1998-07-29', 25, '2', '2', 'narayana', 'bangalore', 20000.00, 1, 25000.00, 30000.00, 'bangalore', 'bangalore', '2404290018', '49', '2', 'upload_files/candidate_tracker/86345298193_ Pavan resume N.docx', NULL, '1', '2024-04-30', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'lack of communication and knowledge', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-29 07:47:55', 126, '2024-04-30 03:00:50', 0, NULL, 1),
(18786, 'nirmal', '5', '9840681761', '9600004691', 'nirmal.m.8176@gmail.com', '1995-06-11', 28, '2', '2', 'murugesan', 'busi', 20.00, 1, 29780.00, 33000.00, 'chennai', 'chennai', '2404290019', '50', '2', 'upload_files/candidate_tracker/3334614556_Pdf Nirmal CV 090424 .pdf', NULL, '1', '2024-04-29', 15, '', '1', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-29 07:51:17', 112, '2024-04-29 03:14:13', 0, NULL, 1),
(18787, 'Selvendiran R', '13', '9790687267', '', 'selvendiranselvar@gmail.com', '1998-07-25', 25, '6', '2', 'Ravi', 'Truck driver', 25000.00, 2, 0.00, 300000.00, 'Villupuram', 'Chennai', '2404290020', '', '1', 'upload_files/candidate_tracker/57256217944_selvendiranresume-1.pdf', NULL, '1', '2024-04-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-29 07:53:57', 1, '2024-04-29 07:57:43', 0, NULL, 1),
(18788, 'Shaik afrin', '5', '8919982123', '9347478225', 'afrinshaik586@gmail.com', '2001-04-07', 23, '2', '2', 'Shaik Anwar basha', 'Painter', 100000.00, 3, 30000.00, 2.00, 'Anantapur', 'Jaynagar', '2404290021', '1', '2', 'upload_files/candidate_tracker/30729336002_SHAIK AFRIN resume.pdf', NULL, '1', '2024-04-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-04-29 09:44:13', 126, '2024-05-03 01:03:24', 0, NULL, 1),
(18789, 'Mahalakshmi', '6', '8098278071', '', 'mahalakshmiragu2000@gmai.com', '2000-05-07', 23, '2', '2', 'Rafri', 'Working', 15.00, 1, 15000.00, 18.00, 'Chidambaram', 'Tynempat', '2404290022', '1', '2', 'upload_files/candidate_tracker/60489671086_Mahalakshmi.pdf', NULL, '1', '2024-05-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expected too much of salary but she is fresher', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-04-29 10:50:23', 112, '2024-05-04 11:36:04', 0, NULL, 1),
(18790, 'b Srinivasulu', '5', '7702887852', '8309606364', 'seenuvasu634@gmial.com', '1996-08-27', 27, '3', '2', 'b dharmaiah', 'farmer', 30000.00, 4, 2.80, 4.00, 'lakshmi layout gb palya bengaluru', 'Lakshmi Layout Gb Palya Bengaluru', '2404290023', '', '2', 'upload_files/candidate_tracker/52828293533_B Srinivasulu_Claims Adjudication - 634.pdf', NULL, '1', '2024-04-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-29 11:42:53', 1, '2024-04-29 11:50:36', 0, NULL, 1),
(18791, 'Haji Mohamed j', '34', '9965525950', '6381279811', 'hajimuhamed.j@gmail.com', '2003-02-13', 21, '3', '2', 'Jalal', 'Catering', 10000.00, 2, 0.00, 15000.00, 'Athikadai, thiruvarur - 613 702', 'Ashok nagar, Chennai', '2404300001', '', '1', 'upload_files/candidate_tracker/23784779790_hajii.pdf', NULL, '1', '2024-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 04:09:06', 130, '2024-05-02 04:17:59', 0, NULL, 1),
(18792, 'vignesh', '13', '8610607763', '', 'vigneshvicky12132001@gmail.com', '2001-12-13', 22, '3', '2', 'deivasigamani', 'Farmer', 4.00, 1, 0.00, 1.80, 'Ariyalur', 'chennai', '2404300002', '', '1', 'upload_files/candidate_tracker/16339220578_f7d8745e-7139-410a-b1b8-b866e3006fcb.pdf', NULL, '2', '2024-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 04:39:39', 130, '2024-05-02 04:16:15', 0, NULL, 1),
(18793, 'I.santhiya', '6', '9080625579', '6383739123', 'santhiyaraja092@gmail.com', '2004-05-14', 19, '2', '2', 'Ilayaraja', 'Cooli', 100000.00, 1, 0.00, 20000.00, '30/19pragash row colony puliyanthope Chennai 12', '3019pragash row colony puliyanthope Chennai12', '2404300003', '1', '1', 'upload_files/candidate_tracker/31374924133_i.sathiya.pdf', NULL, '1', '2024-04-30', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No skill ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-30 04:40:49', 112, '2024-04-30 10:43:19', 0, NULL, 1),
(18794, 'Hariharan A', '13', '7010240893', '', 'hari088235@gmail.con', '2009-04-30', 0, '3', '2', 'Arjunan', 'Electrician', 25000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2404300004', '', '1', 'upload_files/candidate_tracker/96373834553_Hariharan_Resume-1 (1).pdf', NULL, '1', '2024-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 04:53:21', 130, '2024-05-02 04:15:35', 0, NULL, 1),
(18795, 'Vijayendran P', '13', '7094788918', '', 'vijayendran028@gmail.com', '2001-10-13', 22, '3', '2', 'Pandiyarajan', 'Farmer', 10000.00, 3, 0.00, 150000.00, 'Dindigul', 'Dindigul', '2404300005', '', '1', 'upload_files/candidate_tracker/45823198852_20240430_104314_0000.pdf', NULL, '1', '2024-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 05:05:54', 130, '2024-05-02 04:17:00', 0, NULL, 1),
(18796, 'Irfan', '13', '7339081161', '', 'irfancsecse@gmail.com', '2009-04-30', 0, '3', '2', 'Sarthar', 'Father', 20000.00, 4, 0.00, 200000.00, 'Dharmapuri', 'Guindy', '2404300006', '', '1', 'upload_files/candidate_tracker/67111248796_finalirfan.pdf', NULL, '1', '2024-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 05:05:57', 130, '2024-05-09 11:06:23', 0, NULL, 1),
(18797, 'balamurugan', '6', '7708334666', '9500425811', 'bala21annamalai@gmail.com', '2000-01-21', 24, '2', '2', 'annamalai', 'driver', 300000.00, 2, 0.00, 18.00, 'Tiruvannamalai', 'porur', '2404300007', '45', '1', 'upload_files/candidate_tracker/1373574715_Resume .pdf', NULL, '1', '2024-04-30', 0, '', '5', '102', NULL, 0.00, '', '0', NULL, '1', 'Not suitable sales  field ', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-30 05:06:08', 1, '2024-04-30 05:11:17', 0, NULL, 1),
(18798, 'Saravanan M', '13', '8825901030', '', 'saravananmariyappan384@gmail.com', '2000-03-26', 24, '3', '2', 'Mariyappan A(late)', 'Nil', 17000.00, 3, 17000.00, 17000.00, 'Salem', 'Salem', '2404300008', '', '2', 'upload_files/candidate_tracker/55126057795_saravanan resume-1 (1)-1.pdf', NULL, '1', '2024-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 05:06:56', 130, '2024-05-09 10:21:00', 0, NULL, 1),
(18799, 'Tamilarasan', '13', '9751334874', '', 'thetamilarasan@gmail.com', '2003-03-10', 21, '3', '2', 'Kumuthavalli', 'House wife', 15000.00, 0, 0.00, 25000.00, 'TIRUVARUR', 'Chennai', '2404300009', '', '1', 'upload_files/candidate_tracker/55309597361_tamilresume.pdf', NULL, '1', '2024-04-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-30 05:16:25', 1, '2024-04-30 05:26:20', 0, NULL, 1),
(18800, 'Vidhya R', '13', '7639471235', '', 'vidhyarajan31@gmail.com', '1994-10-31', 29, '3', '2', 'Vijayarani B', 'Teacher (Rtd)', 28000.00, 2, 0.00, 25000.00, 'Kanyakumari', 'Chennai', '2404300010', '', '1', 'upload_files/candidate_tracker/1637409581_vidhya resume.pdf', NULL, '1', '2024-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 05:16:29', 130, '2024-05-02 04:14:17', 0, NULL, 1),
(18801, 'S.Divya', '6', '8122254326', '9345799656', 'maggidivya16@gmail.com', '2004-04-16', 20, '2', '2', 'S.Devi', 'House wife', 25000.00, 1, 18000.00, 20000.00, 'Old no.97 new no 209. Dr nadasan road', 'Old No.97 New No 209. Dr Nadasan Road', '2404300011', '50', '2', 'upload_files/candidate_tracker/24026110975_b7845ea3-d79e-4c2f-a6a8-8726dd3b77b3.pdf', NULL, '1', '2024-04-30', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is over attitude and low skill and voice is very low ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 05:37:14', 112, '2024-04-30 12:11:01', 0, NULL, 1),
(18802, 'Sabari J', '5', '9342894049', '8838901065', 'sunilsabari1999@gmail.com', '1999-11-21', 24, '2', '2', 'Jaya Shankar', 'Supervisor', 20000.00, 1, 0.00, 25.00, 'Chennai', 'Chennai', '2404300012', '50', '2', 'upload_files/candidate_tracker/12559420193_DOC-20230913-WA0001..docx', NULL, '1', '2024-04-30', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not selected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 05:37:26', 112, '2024-04-30 12:17:35', 0, NULL, 1),
(18803, 'B.Naveen', '4', '8667452575', '8220023778', 'naveenvijay21695@gmail.com', '1995-06-21', 28, '2', '2', 'Punithavathi', 'House wife', 30000.00, 1, 15000.00, 18000.00, 'CHENNAI', 'CHENNAI', '2404300013', '1', '2', 'upload_files/candidate_tracker/34559766865_resume 2024.pdf', NULL, '1', '2024-04-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-30 05:42:55', 108, '2024-05-02 11:59:22', 0, NULL, 1),
(18804, 'Bharath k', '6', '8248087422', '9840983118', 'bh04021999@gmail.com', '1999-02-04', 25, '2', '2', 'Kadiresan', 'Accountant', 30000.00, 1, 14000.00, 16000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2404300014', '1', '2', 'upload_files/candidate_tracker/44492402014_Share', NULL, '1', '2024-04-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Already he has a sales exp and same he has convince Skill little bit so we try 7 days ,ctc 17k and in hand 16k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-04-30 05:43:42', 108, '2024-05-02 11:58:58', 0, NULL, 1),
(18805, '', '0', '7204216027', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404300015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-30 06:28:35', 0, NULL, 0, NULL, 1),
(18806, 'Bhuvanesh K R', '6', '8838089704', '', 'ifza.zr125@gmail.com', '2004-05-29', 19, '3', '2', 'Raja Kumar K', 'TNEB', 20000.00, 1, 0.00, 18000.00, 'Thiruvallur', 'Thiruvallur', '2404300016', '', '1', 'upload_files/candidate_tracker/49889900921_Bhuvi Resume _11zon (1).pdf', NULL, '1', '2024-04-30', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no dress code  and voice is very local and over attitude candidate need only offie work ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 06:53:37', 112, '2024-04-30 04:27:41', 0, NULL, 1),
(18807, 'Jayachandran S', '11', '9791143576', '', 'jayachandran5544@gmail.com', '2002-04-07', 22, '3', '2', 'Sasikumar', 'Farmer', 10000.00, 1, 0.00, 25000.00, 'Thiruvallur', 'Thiruvallur', '2404300017', '', '1', 'upload_files/candidate_tracker/45663189210_Resume_Job resume_Format1-3.pdf', NULL, '1', '2024-04-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 06:54:09', 112, '2024-04-30 01:23:06', 0, NULL, 1),
(18808, 'SATHRIYAN', '13', '6380015482', '', 'Sathriyan20001@gmail.com', '2001-01-21', 23, '3', '2', 'ramamoorthy', 'business', 20000.00, 1, 0.00, 20000.00, 'madurai', 'chennai', '2404300018', '', '1', 'upload_files/candidate_tracker/35697806533_Sathriyan.resume (1).pdf', NULL, '1', '2024-05-02', 0, '', '3', '59', '2024-06-13', 120000.00, '', '4', '2024-10-09', '2', 'Selected intern cum employment  with terms and conditions', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 06:57:24', 60, '2024-06-13 12:03:59', 0, NULL, 1),
(18809, 'ajith s', '6', '7200403965', '', 'ajithaji2309@gmail.com', '1999-09-23', 24, '1', '2', 'suresh', 'velder', 15000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2404300019', '', '1', 'upload_files/candidate_tracker/5836122964_ajith (4).pdf', NULL, '1', '2024-04-30', 0, 'cafsurs00593', '3', '59', '2024-05-07', 254400.00, '', '5', '1970-01-01', '1', 'Selected for Gnanasekar Team internal Team reference Need to analyse in 7 days final round interviewed by Sriram', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 07:03:37', 60, '2024-05-06 07:16:54', 0, NULL, 1),
(18810, 'MANISH KM', '33', '8939511738', '9962361602', 'kmmanish2098@gmail.com', '1998-01-20', 26, '2', '2', 'Murali kv', 'Service', 15000.00, 1, 0.00, 3.00, 'East Tambaram Chennai 59', 'East Tambaram Chennai 59', '2404300020', '38', '1', 'upload_files/candidate_tracker/37331224722_Manish Resume.pdf', NULL, '1', '2024-05-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-30 07:21:09', 1, '2024-04-30 07:53:43', 0, NULL, 1),
(18811, 'ishika', '6', '7200310339', '', 'ishikabhandari2702@gmail.com', '2004-02-27', 20, '3', '2', 'bharath', 'business', 20000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2404300021', '', '1', 'upload_files/candidate_tracker/87055132045_Ishika.pdf', NULL, '1', '2024-04-30', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '2', 'well Settled family', '5', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-30 07:47:43', 1, '2024-04-30 09:38:29', 0, NULL, 1),
(18812, 'Sapna poonmiya', '20', '7305781131', '6383588157', 'Payalsapna65@gmail.com', '2003-09-15', 20, '3', '2', 'Rajesh kumar', 'Fresher', 15000.00, 2, 0.00, 20000.00, 'Tondiarpet', 'Tondiarpet', '2404300022', '', '1', 'upload_files/candidate_tracker/71085629819_sapnapoonmiya case study 4.docx', NULL, '1', '2024-04-30', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'not suit for telecalling', '5', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-30 07:49:12', 1, '2024-04-30 09:30:51', 0, NULL, 1),
(18813, 'Bhumika S Jain', '6', '9042392005', '', 'bhumikarupawat@gmail.com', '2004-03-15', 20, '3', '2', 'Santosh Jain', 'Businessman', 15000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2404300023', '', '1', 'upload_files/candidate_tracker/41346927387_DOC-20240328-WA0016..pdf', NULL, '1', '2024-04-30', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate performance is good but her tamil pronunsation is not good also her sustainity is doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 07:50:27', 112, '2024-04-30 03:25:04', 0, NULL, 1),
(18814, 'Payal poonmiya', '6', '6383538157', '', 'payalpoonmiya@gmail.com', '2003-09-15', 20, '3', '2', 'Rajesh Kumar', 'Business men', 15000.00, 2, 0.00, 20000.00, '57/16, kannakar Street, tondiarpet market', '57/16, kannakar Street tondiarpet market', '2404300024', '', '1', 'upload_files/candidate_tracker/70970449146_Payal Poonmiya', NULL, '1', '2024-04-30', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good Comminication Skill , But Not Fit For Sales Job', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 07:50:41', 112, '2024-04-30 06:37:05', 0, NULL, 1),
(18815, '', '0', '6383159557', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404300025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-30 08:01:16', 0, NULL, 0, NULL, 1),
(18816, 'Khaja Sabeena', '5', '6304212856', '8074103135', 'khajasabeena87@gmail.com', '2001-04-03', 23, '2', '2', 'K.mohammed rafi', 'Marketing', 20.00, 1, 27000.00, 35000.00, 'Banglore', 'Banglore', '2404300026', '49', '2', 'upload_files/candidate_tracker/69039111682_1.8 pdf reaume.pdf', NULL, '1', '2024-04-30', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of knowledge and salary Exception is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 08:13:53', 126, '2024-04-30 02:56:56', 0, NULL, 1),
(18817, 'Khaja Sabeena', '20', '8142439995', '6304212856', 'khajasabeena87@gmail.com', '2001-04-03', 23, '2', '2', 'D/o k.mohammed rafi', 'Marketing', 20.00, 1, 27000.00, 35000.00, 'Banglore', 'Bommonhalli', '2404300027', '49', '2', 'upload_files/candidate_tracker/98845241109_1.8 pdf reaume.pdf', NULL, '1', '2024-04-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-04-30 08:35:31', 1, '2024-04-30 08:38:10', 0, NULL, 1),
(18818, 'Rajasri', '6', '7603819497', '8940355370', 'rajasrig11@gmail.com', '2000-11-03', 23, '2', '2', 'Ganesan', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Mayiladuthurai', 'Ashok nagar', '2404300028', '42', '1', 'upload_files/candidate_tracker/27315591523_RAJASRI RESUME 1.docx', NULL, '1', '2024-04-30', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long distance and not skills ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 09:09:24', 112, '2024-04-30 03:18:11', 0, NULL, 1),
(18819, 'N.Maheswari', '6', '9080321874', '8531843323', 'maheswarimaheswari0499@gmail.com', '1999-05-07', 24, '2', '2', 'N.nedunchezhiyan', 'Tailor', 10000.00, 4, 0.00, 15000.00, 'Guduvanchery', 'Nagapattinam', '2404300029', '42', '1', 'upload_files/candidate_tracker/55195806448_mahes.pdf', NULL, '1', '2024-04-30', 0, '', '3', '59', '2024-05-06', 180000.00, '', '5', '1970-01-01', '2', 'ctc 15000', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-04-30 09:15:17', 60, '2024-05-06 10:24:35', 0, NULL, 1),
(18820, '', '0', '8190907635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2404300030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-04-30 01:19:17', 0, NULL, 0, NULL, 1),
(18821, 'dishanth jain', '5', '7795668011', '7845458626', 'jaindishu506@gmail.com', '2000-03-07', 24, '2', '2', 'vinod jain', 'service manager', 15000.00, 1, 22000.00, 30000.00, 'madhavaram', 'jaitaran', '2404300031', '1', '2', 'upload_files/candidate_tracker/50410047025_Dishanth CV .pdf', NULL, '1', '2024-05-08', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-04-30 01:20:27', 140, '2024-05-08 07:11:02', 0, NULL, 1),
(18822, '', '0', '9845492313', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405020001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-02 04:12:01', 0, NULL, 0, NULL, 1),
(18823, 'HARIBABU G', '13', '8903207398', '', 'Haribabu111198@gmail.com', '1998-11-11', 25, '3', '2', 'Ganesan', 'Farmer', 15000.00, 3, 0.00, 15000.00, 'Elathur,nadupatti post, Salem district,Pin -636351', 'Bagiyathammal 4th street ,thirumangalam,chennai', '2405020002', '', '1', 'upload_files/candidate_tracker/83886235740_Haribabu G Fullstack cv.pdf', NULL, '1', '2024-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 04:20:30', 130, '2024-05-02 04:12:09', 0, NULL, 1),
(18824, 'M. Jayasankari', '13', '6380144677', '', 'jayasankariravivarman823@gmail.com', '2000-05-23', 23, '3', '1', 'Ravivarman R', 'Team leader', 300000.00, 1, 0.00, 8000.00, 'Kelambakkam', 'Kelambakkam', '2405020003', '', '1', 'upload_files/candidate_tracker/94932069710_Jayasankari_Resume.pdf', NULL, '1', '2024-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 04:26:25', 130, '2024-05-02 04:13:03', 0, NULL, 1),
(18825, 'Ramamoorthi', '13', '6369094428', '', 'moorthirama35@gmail.com', '2002-08-21', 21, '3', '2', 'Karnan', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Sholinganallur', '2405020004', '', '1', 'upload_files/candidate_tracker/46076773367_RAMAMOORTHI_K.pdf', NULL, '1', '2024-05-02', 0, '', '3', '59', '2024-06-05', 120000.00, '', '1', '1970-01-01', '2', 'Selected for Internship with employment Agreement Conditions 1st round with Sathish xxamp 2nd round with Gokul', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 04:28:20', 60, '2024-06-05 12:20:56', 0, NULL, 1),
(18826, 'Mohanraja Manickam', '13', '9942220449', '', 'mohanrajamanickammr@gmail.com', '2000-08-02', 23, '3', '2', 'Manickam', 'Farmer', 200000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2405020005', '', '1', 'upload_files/candidate_tracker/99688353556_Mohanraja Manickam Resume.pdf', NULL, '1', '2024-05-02', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 04:30:48', 130, '2024-05-02 12:44:31', 0, NULL, 1),
(18827, 'MAGESH P', '27', '8807561997', '7338239237', 'Magesh111vp@gmail.com', '1997-08-05', 26, '3', '2', 'Purushothaman', 'Carpenter', 15000.00, 2, 0.00, 20000.00, 'Ambur', 'Chennai', '2405020006', '', '1', 'upload_files/candidate_tracker/62810425613_Magesh P_(Resume).pdf', NULL, '1', '2024-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 04:32:54', 130, '2024-05-02 04:11:22', 0, NULL, 1),
(18828, 'Baskar T', '13', '9080722319', '9659406369', 'baskarthangaraj2@gmail.com', '1997-12-21', 26, '3', '2', 'Thangaraj K', 'Farmer', 20000.00, 1, 0.00, 10000.00, 'Olavalasu ,Arachalur(P.O) (v.i.a), Erode.', 'Reddypalayam, Mugappair,Chennai.', '2405020007', '', '1', 'upload_files/candidate_tracker/19687751290_Baskar1.pdf', NULL, '1', '2024-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '7', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 04:33:02', 130, '2024-05-02 04:08:24', 0, NULL, 1),
(18829, 'g deepa', '5', '9019190787', '', 'deepasudeepayadav@gmail.com', '2000-05-27', 23, '2', '1', 'sudeepa d', 'Office work', 12000.00, 1, 0.00, 20000.00, 'shimoga', 'bommanahalli bangalore', '2405020008', '39', '1', 'upload_files/candidate_tracker/38024171371_G Deepa Resume.pdf', NULL, '1', '2024-05-02', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of Communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 04:35:00', 126, '2024-05-02 11:37:16', 0, NULL, 1),
(18830, 'Brindha J', '13', '9940366218', '9003222261', 'bindujai.62@gmail.com', '1999-07-25', 24, '3', '1', 'Rajkumar', 'senior associate', 23000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2405020009', '', '1', 'upload_files/candidate_tracker/65496324588_Brindha J_resume.pdf', NULL, '1', '2024-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 04:37:23', 130, '2024-05-02 12:45:02', 0, NULL, 1),
(18831, 'Jayachandran K', '13', '6382741843', '7824952658', 'jayachandran10586@gmail.com', '2001-09-27', 22, '3', '2', 'Kanniyappan G', 'Building contractor', 20000.00, 1, 0.00, 300000.00, 'Tiruttani', 'Tiruttani', '2405020010', '', '1', 'upload_files/candidate_tracker/99190760077_jayachandranKResume---.pdf', NULL, '1', '2024-05-03', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 04:40:26', 112, '2024-05-03 10:36:47', 0, NULL, 1),
(18832, 'Vesta Baptist Rani', '13', '9843250546', '', 'vestabaptist2000@gmail.com', '2000-12-12', 23, '3', '2', 'Silva peratto', 'Ex-servicemen', 16000.00, 2, 0.00, 150000.00, 'Villupuram', 'Chennai', '2405020011', '', '1', 'upload_files/candidate_tracker/1724962496_Vesta developer resume.pdf', NULL, '1', '2024-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 04:43:30', 130, '2024-05-02 04:10:33', 0, NULL, 1),
(18833, 'G.kowsalya', '13', '6385288621', '', 'kowsalyaganesan293@gmail.com', '1998-11-27', 25, '3', '2', 'K Ganesan', 'Former', 80000.00, 3, 0.00, 2.00, 'Chennai', 'Kk nagar', '2405020012', '', '1', 'upload_files/candidate_tracker/49428202327_0_kowsalya resume 2.pdf', NULL, '1', '2024-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 04:44:14', 130, '2024-05-02 04:02:43', 0, NULL, 1),
(18834, 'K.Amuthanivetha', '13', '9344818206', '8903279113', 'amuthanivethak95@gmail.com', '2003-07-05', 20, '3', '2', 'Karuppusamy', 'Farmer', 20000.00, 2, 0.00, 2.00, 'Chennai', 'Chennai', '2405020013', '', '1', 'upload_files/candidate_tracker/58405657135_amutha resume (2).pdf', NULL, '1', '2024-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 04:46:08', 130, '2024-05-02 04:09:46', 0, NULL, 1),
(18835, 'Ruhuma Mariam', '5', '9742809027', '9986936151', 'ruhumamariam25@gmail.com', '2002-03-25', 22, '2', '2', 'Asma Khatoon', 'House wife', 6000.00, 2, 22749.00, 27000.00, 'BANGALORE', 'BANGALORE', '2405020014', '39', '2', 'upload_files/candidate_tracker/38455511012_RUHUMA MARIAM CV….pdf', NULL, '1', '2024-05-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 05:07:32', 126, '2024-06-06 10:40:41', 0, NULL, 1),
(18836, 'Deepan.R', '13', '7639704619', '7639704682', 'deepanr2002@gmail.com', '2002-05-27', 21, '3', '2', 'Ramesh', 'Farmer', 30000.00, 0, 0.00, 200000.00, 'Pudukkottai', 'Chennai', '2405020015', '', '1', 'upload_files/candidate_tracker/20397478944_Deepan_R Resume.pdf', NULL, '1', '2024-05-02', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 05:22:30', 130, '2024-05-02 12:43:13', 0, NULL, 1),
(18837, '', '0', '8951931818', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405020016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-02 05:26:02', 0, NULL, 0, NULL, 1),
(18838, 'kalathuru rasi', '5', '8106525132', '6304505570', 'rasi30858@gmail.co', '2001-08-10', 22, '2', '2', 'rammoorthy', 'employee', 10.00, 1, 0.00, 20000.00, 'tirupati', 'banglore', '2405020017', '39', '1', 'upload_files/candidate_tracker/80347498550_Screenshot 2024-02-20 at 10.57.19?AM.pdf', NULL, '1', '2024-05-02', 0, '', '5', '30', NULL, 0.00, '', '0', NULL, '2', 'She will no sustain', '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-02 05:37:49', 1, '2024-05-02 05:44:12', 0, NULL, 1),
(18839, '', '0', '7751908346', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405020018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-02 05:37:52', 0, NULL, 0, NULL, 1),
(18840, 'Kalaivanan M', '13', '9344054305', '', 'kalaigilchrist03@gmail.com', '2000-12-20', 23, '3', '2', 'Dad', 'Delivery Man', 25000.00, 1, 0.00, 400000.00, 'No:56 A-Block Dr.ambethkar Nagar, ICF, Chennai-38', 'Chennai', '2405020019', '', '1', 'upload_files/candidate_tracker/64132338979_KalaivananM.pdf', NULL, '1', '2024-05-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-02 05:45:35', 1, '2024-05-02 05:49:02', 0, NULL, 1),
(18841, 'Dinesh', '5', '7397238439', '', 'babudinesh599@gmail.com', '2000-01-29', 24, '6', '2', 'usha', 'Government nurse', 80000.00, 1, 25000.00, 40000.00, 'chennai', 'chennai', '2405020020', '', '2', 'upload_files/candidate_tracker/6437372429_Dinesh Resume .pdf', NULL, '1', '2024-05-06', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-02 06:18:12', 1, '2024-05-02 06:21:29', 0, NULL, 1),
(18842, 'Abhishek S Nair', '5', '8940386289', '', 'abhisheksnair007@gmail.com', '1993-07-31', 30, '2', '2', 'Shaji S', 'Business', 30000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2405020021', '1', '2', 'upload_files/candidate_tracker/94262241643_KM_205i_005389.pdf', NULL, '1', '2024-05-02', 0, '', '3', '59', '2024-05-15', 314400.00, '', '5', '1970-01-01', '1', 'Selected for Gnanasekar Team Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-02 06:25:24', 60, '2024-05-14 07:20:32', 0, NULL, 1),
(18843, 'Madhan D', '34', '9790661964', '9790342129', 'MADHANking604@gmail.com', '2002-01-31', 22, '3', '2', 'DURAISAMY K', 'Building contractor', 40000.00, 1, 0.00, 20000.00, 'Gobichettipalayam', 'Chennai , K K Nagar', '2405020022', '', '1', 'upload_files/candidate_tracker/50192577349_MADHAN_resume.pdf', NULL, '1', '2024-05-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-02 06:34:14', 1, '2024-05-02 06:41:18', 0, NULL, 1),
(18844, 'Sathish Kumar M', '13', '7806906149', '9789852207', 'sathishkumar4118@gmail.com', '2001-12-09', 22, '3', '2', 'MAHADEVAN', 'Mason', 25000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2405020023', '', '1', 'upload_files/candidate_tracker/72124910493_Sathish_Kumar_M.pdf', NULL, '1', '2024-05-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-02 06:37:01', 1, '2024-05-02 06:42:55', 0, NULL, 1),
(18845, 'venkatachalam', '13', '9025137843', '', 'venkatachalam.n403@gmail.com', '2003-05-12', 20, '3', '2', 'Nagarajan. K', 'Driver', 20000.00, 1, 0.00, 300000.00, 'No. 15 gangai amman nagar ,Maduravoyal', 'No. 15 gangai amman nagar, Maduravoyal', '2405020024', '', '1', 'upload_files/candidate_tracker/61796653875_venkat.pdf.pdf', NULL, '1', '2024-05-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-02 06:37:06', 1, '2024-05-02 06:48:24', 0, NULL, 1),
(18846, 'Shreenag Nm', '5', '8277071958', '', 'shreenagnm912@gmail.com', '2000-01-09', 24, '2', '2', 'Narayan', 'Fresher', 10000.00, 1, 0.00, 3.00, 'Kumta', 'Kumta', '2405020025', '39', '1', 'upload_files/candidate_tracker/92137417714_CV_SHREENAG NM.pdf', NULL, '1', '2024-05-02', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice process', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 06:53:19', 126, '2024-05-02 12:55:04', 0, NULL, 1),
(18847, 'krishnanth', '5', '7406956128', '', 'kishnanthgowda3003@gmail.com', '2000-03-30', 24, '2', '2', 'umesh', 'business', 500000.00, 1, 0.00, 300000.00, 'bangalore', 'bangalore', '2405020026', '39', '1', 'upload_files/candidate_tracker/21443879815_Resume.pdf', NULL, '1', '2024-05-02', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice process', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 06:53:28', 126, '2024-05-02 12:57:54', 0, NULL, 1),
(18848, 'Satheesh kumar', '13', '9025531509', '9962916636', 'Sathish4736671@gmail.com', '2002-07-11', 21, '6', '2', 'Sathiah', 'Electrician', 20000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2405020027', '', '1', 'upload_files/candidate_tracker/13985873869_fullstackdev2(2024).pdf', NULL, '1', '2024-05-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-02 07:02:05', 1, '2024-05-02 08:58:39', 0, NULL, 1),
(18849, 'Ramanathan E.M', '31', '6369227009', '', 'ramanmothilal@gmail.com', '2001-05-12', 22, '3', '2', 'Mothilal', 'Weaver', 200000.00, 5, 0.00, 200000.00, 'Ramanathapuram', 'Ramanathapuram', '2405020028', '', '1', 'upload_files/candidate_tracker/53963424078_Ramanathan EM.PDF', NULL, '1', '2024-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 07:44:00', 130, '2024-05-09 11:07:11', 0, NULL, 1),
(18850, 'vijayaraj gc', '34', '9384518721', '', 'vijayaraj4112001@gmail.com', '2001-11-04', 22, '6', '2', 'gajendran', 'police', 40000.00, 2, 280000.00, 300000.00, 'chennai', 'chennai', '2405020029', '', '2', 'upload_files/candidate_tracker/26110008928_Vijayaraj GC Resume.pdf', NULL, '1', '2024-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-02 07:52:51', 1, '2024-05-02 07:57:14', 0, NULL, 1),
(18851, 'Deepak Srinivas G', '34', '8098092575', '', 'gdeepaksoftware@gmail.com', '2000-02-26', 24, '6', '2', 'Durga Devi', 'NA', 20000.00, 1, 0.00, 20000.00, 'Vellore', 'Chennai', '2405020030', '', '1', 'upload_files/candidate_tracker/27674680413_Deepak s Resume.pdf', NULL, '1', '2024-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-02 08:11:03', 1, '2024-05-02 08:13:42', 0, NULL, 1),
(18852, 'manoj k', '14', '9360303057', '', 'manojkrish1914@gmail.com', '2001-07-19', 22, '3', '2', 'kamaraj r', 'labour', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2405020031', '', '1', 'upload_files/candidate_tracker/53398268294_Manoj.pdf', NULL, '1', '2024-05-02', 0, '', '3', '59', '2024-06-03', 120000.00, '', '1', '1970-01-01', '1', 'Selected for 5months intern with employment conditions for flutter developer 1st level interview by Sathish xxamp 2nd round by gokulraj Sankar', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 09:04:39', 60, '2024-06-03 04:47:30', 0, NULL, 1),
(18853, '', '0', '6374924608', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405020032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-02 09:22:56', 0, NULL, 0, NULL, 1),
(18854, 'Nirmal kumar e', '6', '9361024656', '', 'nirmalkumarsenk@gmail.com', '1999-05-03', 24, '2', '2', 'Ezhumalai v', 'Self employe', 15000.00, 1, 17500.00, 22000.00, 'Chengalpet', 'Chennai', '2405020033', '1', '2', 'upload_files/candidate_tracker/3023941789_Resume Nirmal Kumar.pdf', NULL, '1', '2024-05-02', 60, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candiate communication and apperance is not good .then his voice is low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-02 09:41:18', 112, '2024-05-02 04:29:18', 0, NULL, 1),
(18855, 'Ganesh Kumar Rai', '5', '6382307015', '', 'ganeshroy95@gmail.com', '1995-01-08', 29, '2', '2', 'Kalikant Ray', 'Cook', 180000.00, 2, 23000.00, 29000.00, 'Darbhanga', 'Choolaimedu', '2405020034', '32', '2', 'upload_files/candidate_tracker/59711592936_Ganeshresume.pdf', NULL, '1', '2024-05-03', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expected 30k, He dnt know to drive also, not suit for any profile. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-02 10:02:18', 112, '2024-05-03 01:00:15', 0, NULL, 1),
(18856, 'Meenatchi', '20', '9345572352', '9965751410', 'meenatchi2972001@gmail.com', '2001-07-29', 22, '2', '2', 'Sivalingam', 'Lishmi', 66.00, 2, 14.00, 18.00, 'Saidapet', 'Saidapet', '2405020035', '1', '2', 'upload_files/candidate_tracker/52710458802_Meenachi Resume.pdf', NULL, '1', '2024-05-04', 30, '', '3', '59', '2024-05-13', 192000.00, '', '3', '2025-01-30', '1', 'Selected for DM Relationship Executive Role Need to analyse in 7 dyas training', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-05-02 10:32:52', 60, '2024-05-13 10:06:37', 0, NULL, 1),
(18857, 'Anand s', '34', '6369717927', '9442788627', 'anand2000mca@gmail.com', '2000-09-24', 23, '6', '2', 'Sekar', 'Business', 20000.00, 1, 180000.00, 250000.00, 'Villuppuram', 'Chennai', '2405020036', '', '2', 'upload_files/candidate_tracker/81681868591_Anand-allsec.pdf', NULL, '1', '2024-05-06', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-02 11:11:05', 1, '2024-05-02 11:15:11', 0, NULL, 1),
(18858, 'Mahalakshmi Badiger', '11', '7483559904', '9110686228', 'mahalakshmibadiger947@gmail.com', '2001-03-08', 23, '6', '2', 'Dyammana', 'Driver', 30000.00, 2, 20000.00, 30000.00, 'Kalasapur near grama devate temple Gadag', 'Sarjapur Wipro geat banglore', '2405020037', '', '2', 'upload_files/candidate_tracker/54130400218_cv_1_1706347156456.pdf', NULL, '2', '2024-05-03', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '2', '2', '0', '1', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-02 01:17:27', 1, '2024-05-02 01:22:02', 0, NULL, 1),
(18859, 'SivaPrakash M', '6', '9894537837', '', 'prakaships2001@gmail.com', '2001-05-19', 22, '2', '2', 'No', 'No', 10000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2405020038', '1', '1', 'upload_files/candidate_tracker/71511640372_RESUME -Sivaprakash(1).pdf', NULL, '1', '2024-05-03', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'voice not clear and low skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-02 01:18:07', 112, '2024-05-03 11:20:09', 0, NULL, 1),
(18860, 'Sneka v', '6', '6381022395', '8098959898', 'snehanaini1999@gmail.com', '1999-09-04', 24, '2', '1', 'Parent', 'Retail executive', 12000.00, 1, 12000.00, 14000.00, 'Dindigul', 'ST Thomas Mount', '2405030001', '1', '2', 'upload_files/candidate_tracker/95648794840_Resume_Sneka_Format5.pdf', NULL, '1', '2024-05-03', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is job needed person and she speaks good lets try 7 days then only we will finalize,Salary in hand 13k', '5', '1', '', '4', '6', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-03 04:15:38', 108, '2024-05-04 10:01:18', 0, NULL, 1),
(18861, 'BHANU PRAKASH BEGALA', '5', '9550077410', '6300091660', 'bhanuprakashbegala@gmail.com', '1999-09-01', 24, '2', '2', 'narayana.b', 'farmer', 30000.00, 1, 0.00, 400000.00, 'tirupati', 'bangalore', '2405030002', '39', '1', 'upload_files/candidate_tracker/59219096319_newrb (1).pdf', NULL, '1', '2024-05-03', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not upto the mark preparing for central govt jobs', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-03 04:56:58', 126, '2024-05-03 11:21:20', 0, NULL, 1),
(18862, 'Vadde Manohar', '5', '7815884262', '', 'manoharmanu9849@gmail.com', '2001-06-18', 22, '2', '2', 'Nagaraja', 'Farmer', 20000.00, 2, 0.00, 4.00, 'Marathalli', 'Banglore', '2405030003', '39', '2', 'upload_files/candidate_tracker/56688772926_Manohar_updated Resume.docx', NULL, '1', '2024-05-03', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-03 04:57:28', 126, '2024-05-03 11:16:48', 0, NULL, 1),
(18863, 'PERUBOYINA PRASAD', '5', '9182440297', '9949975176', 'prasadperuboyina000@gmail.com', '2002-06-14', 21, '2', '2', 'Seenaiah', 'Farmer', 20000.00, 1, 0.00, 25000.00, 'Venkatagiri , Andhra Pradesh', 'Koramangala , Bangalore', '2405030004', '39', '1', 'upload_files/candidate_tracker/55946524119_PRASAD I1.pdf', NULL, '1', '2024-05-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-03 05:00:11', 1, '2024-05-03 05:09:15', 0, NULL, 1),
(18864, 'R.karunaMoorthy', '13', '9952983603', '9042524862', 'Karuna.moorthy.0511@gmail.com', '1996-05-05', 27, '3', '2', 'K.rajaram', 'Tailor', 30000.00, 0, 18000.00, 25000.00, 'Tambaram', 'Tambaram', '2405030005', '', '2', 'upload_files/candidate_tracker/37114644827_KarunaMoorthy.pdf', NULL, '1', '2024-05-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-03 05:11:26', 112, '2024-05-06 05:17:00', 0, NULL, 1),
(18865, 'Magalakshmi. p', '6', '9345509301', '9791558628', 'magalakshmi108my@gmail.com', '2002-08-10', 21, '2', '2', 'Panneer.S', 'Labour', 12000.00, 2, 0.00, 19000.00, 'Villupuram', 'Villupuram', '2405030006', '1', '1', 'upload_files/candidate_tracker/60217071703_Resume.docx', NULL, '1', '2024-05-03', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50 -50', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-03 05:15:28', 108, '2024-05-04 10:01:49', 0, NULL, 1),
(18866, '', '0', '8688575539', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405030007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-03 05:18:35', 0, NULL, 0, NULL, 1),
(18867, 'varun vasudevan', '6', '9600092806', '9884159699', 'varunvasudevan795@gmail.com', '2000-06-07', 23, '2', '2', 'vasudevan', 'senior sales attender', 35000.00, 2, 0.00, 250000.00, 'adambakkam', 'adambakkam', '2405030008', '50', '1', 'upload_files/candidate_tracker/52566846419_Varun_Resume_2024.pdf', NULL, '1', '2024-05-03', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit this profile ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-03 05:31:10', 112, '2024-05-03 12:04:45', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18868, 'Jangam sudheer kumar yadav', '5', '9347478225', '', 's4413165@gmail.Com', '2001-03-01', 23, '2', '2', 'K. Venkataramudu', 'Former', 30000.00, 0, 20000.00, 25000.00, 'Anantapur', 'Bhanishaknari', '2405030009', '1', '2', 'upload_files/candidate_tracker/93394529589_IMG_20240503_121437.pdf', NULL, '1', '2024-05-03', 10, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication not upto the mark', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-03 06:42:46', 126, '2024-05-03 06:38:46', 0, NULL, 1),
(18869, 'Abdul Rahman', '31', '8300658510', '9092582036', 'nsrahman28@gmail.com', '2002-06-28', 21, '3', '2', 'nahim', 'no', 25000.00, 2, 0.00, 20000.00, 'tirunelveli', 'tirunelveli', '2405030010', '', '1', 'upload_files/candidate_tracker/51457537201_Abdul Rahman CV.pdf', NULL, '2', '2024-05-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-03 06:56:25', 130, '2024-05-07 05:50:59', 0, NULL, 1),
(18870, 'G.Arunkumar', '34', '6374897068', '', 'kumarun56089@gmail.com', '2001-08-01', 22, '6', '2', 'M.Govintharasu', 'Fisherman', 12000.00, 1, 0.00, 18000.00, 'Ramanthapuram', 'Tharamani Chennai', '2405030011', '', '1', 'upload_files/candidate_tracker/5752530116_RESUME.pdf', NULL, '1', '2024-05-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-03 07:08:54', 1, '2024-05-03 07:20:18', 0, NULL, 1),
(18871, 'narmadha b', '6', '9600846429', '', 'narmadha2905@gmail.com', '2000-05-01', 24, '2', '2', 'veeraragavan', 'painter', 10000.00, 4, 21000.00, 15000.00, 'andhra', 'andhra', '2405030012', '42', '2', 'upload_files/candidate_tracker/61884472154_narmadha.pdf', NULL, '1', '2024-05-03', 0, '', '3', '59', '2024-05-14', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Relationship Executive Role need to analyse in 7 days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-03 11:02:31', 60, '2024-05-14 10:05:06', 0, NULL, 1),
(18872, 'Virupakshappa', '20', '9686934981', '', 'Virupakshappamakashi2@gmail.com', '1999-07-21', 24, '3', '2', 'Sangamesh', '500000', 500000.00, 2, 0.00, 20000.00, 'Gulbarga', 'Gulbarga', '2405030013', '', '2', 'upload_files/candidate_tracker/36502980007_Virupakshappa- Resume (1).pdf', NULL, '2', '2024-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-03 11:18:13', 1, '2024-05-03 11:25:37', 0, NULL, 1),
(18873, 'Abinisha R', '33', '9080923811', '', 'abiravichandran01@gmail.com', '2000-12-23', 23, '2', '2', 'Ravichandran V', 'Business', 20000.00, 1, 25000.00, 30000.00, 'Karaikal', 'Karaikal', '2405030014', '1', '2', 'upload_files/candidate_tracker/68479435166_ABINISHA -CV.pdf', NULL, '1', '2024-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1023', '0', NULL, NULL, NULL, 1, '2024-05-03 12:06:25', 1, '2024-05-03 12:23:19', 0, NULL, 1),
(18874, 'SATHISH.G', '4', '6385318471', '', 'sathishsalimsathish@gmail.com', '2003-09-22', 20, '3', '2', 'GOVINDHARAJ.T', 'PRIVATE EMPLOYEE', 15.00, 2, 0.00, 30.00, 'Perambalur District', 'Perambalur District', '2405030015', '', '1', 'upload_files/candidate_tracker/82207163336_Resume Pdf Sathish .pdf', NULL, '1', '2024-05-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-03 12:40:26', 1, '2024-05-03 12:45:25', 0, NULL, 1),
(18875, 'KARTHIK.V', '4', '6380825785', '9003662398', 'Karthik20012152@gmail.com', '2001-01-02', 23, '2', '2', 'VIJAYAKUMAR', 'Former', 20000.00, 1, 10000.00, 15000.00, '198-1 Kudiyana Street Maharajapuram Thiruvaiyaru', 'Thanjavur', '2405030016', '1', '2', 'upload_files/candidate_tracker/29400670296_V KARTHIK, RESUME(1)2.pdf', NULL, '1', '2024-05-04', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-05-03 12:58:29', 127, '2024-05-06 02:55:55', 0, NULL, 1),
(18876, 'Dharsanrithik B', '33', '6382700573', '', 'dharsanrithik2001@gmail.com', '2001-06-14', 22, '4', '2', 'O.N. Balaji', 'Public Works Department', 400000.00, 1, 0.00, 300000.00, 'Arakkonam', 'Arakkonam', '2405030017', '', '1', 'upload_files/candidate_tracker/51285007518_Copy of blue professional modern CV resume (1).pdf', NULL, '3', '2024-05-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-03 03:03:55', 1, '2024-05-05 08:39:29', 0, NULL, 1),
(18877, 'Kesavan.v', '34', '9092909357', '9952701788', 'kesav.v@outlook.com', '2000-05-15', 23, '6', '2', 'Geetha', 'Desktop support Engineer', 16000.00, 1, 16000.00, 2.00, 'Tirutani', 'Tirutani', '2405040001', '', '2', 'upload_files/candidate_tracker/62190615454_KESAVAN.V DESKTOP SUPPORT.pdf', NULL, '1', '2024-05-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-04 02:05:40', 1, '2024-05-04 02:14:27', 0, NULL, 1),
(18878, 'Bharath', '34', '7358582413', '', 'bharathpargunan@gmail.com', '2000-03-28', 24, '6', '2', 'K.Pargunan', 'Floor Designer', 15000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2405040002', '', '1', 'upload_files/candidate_tracker/94379469723_CV_2024041717480682.pdf', NULL, '1', '2024-05-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-04 02:40:44', 1, '2024-05-06 11:58:49', 0, NULL, 1),
(18879, 'PRAVIN M', '34', '9094497181', '9962601012', 'Mspravin.cs@gmail.com', '1998-12-18', 25, '6', '2', 'M.SHENBAGA PRIYA', 'TEACHER', 20000.00, 2, 200000.00, 325000.00, 'Chennai', 'Chennai', '2405040003', '', '2', 'upload_files/candidate_tracker/21546204121_PRESENT RESUMAE.docx', NULL, '1', '2024-05-04', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-04 04:01:58', 1, '2024-05-04 04:05:55', 0, NULL, 1),
(18880, 'DIBISH', '5', '9788746667', '9486366667', 'dibidibi926@gmail.com', '2000-05-17', 23, '6', '2', 'PINNATHEVAN', 'BULIDING CONTRACTOR', 200000.00, 1, 20000.00, 25000.00, 'MADURAI', 'BANGALORE', '2405040004', '', '2', 'upload_files/candidate_tracker/37780749309_DIBISH RESUME-2-1.pdf', NULL, '1', '2024-05-04', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-04 04:17:46', 1, '2024-05-04 04:27:28', 0, NULL, 1),
(18881, 'Anitha. R', '6', '9884213292', '9941202489', 'sab2k7@yahoo.com', '2009-05-04', 15, '2', '1', 'R. Ravichandran', 'M. Sc', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2405040005', '36', '1', 'upload_files/candidate_tracker/61435942361_Anitha Resume.DOC', NULL, '1', '2024-05-04', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-04 05:14:18', 112, '2024-05-04 11:11:09', 0, NULL, 1),
(18882, 'PRAKASHRAJ P', '6', '9080332667', '', 'prakashprakash1080@gmail.com', '2000-02-03', 24, '2', '2', 'Prabhu', 'Farmer', 15000.00, 1, 18000.00, 25000.00, 'Kallakurichi', 'Ekkatuthangal', '2405040006', '1', '2', 'upload_files/candidate_tracker/67895918916_PRAKASHRAJ RESUME.pdf', NULL, '1', '2024-05-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is not handling the pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-04 05:21:29', 112, '2024-05-04 03:18:41', 0, NULL, 1),
(18883, '', '0', '9787275381', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405040007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-04 06:08:40', 0, NULL, 0, NULL, 1),
(18884, 'Manikandan A', '6', '9894105994', '9500015505', 'manikandanamani30@gmail.com', '2002-12-07', 21, '2', '2', 'Annamalai p', 'Driver', 60000.00, 1, 0.00, 15000.00, 'Gerugambakkam', 'Gerugambakkam', '2405040008', '32', '1', 'upload_files/candidate_tracker/92004394796_CV_2024-04-30-094759.pdf', NULL, '1', '2024-05-04', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-04 06:09:40', 112, '2024-05-04 03:23:02', 0, NULL, 1),
(18885, 'Dhamodharan S', '34', '9865236386', '', 'dhamotharan18@gmail.com', '1993-02-18', 31, '6', '1', 'K.Meena', 'Employee', 300000.00, 5, 19600.00, 23000.00, 'Villupuram', 'Tambram', '2405040009', '', '2', 'upload_files/candidate_tracker/89601792113_DhamodharanS.pdf', NULL, '1', '2024-05-04', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-04 06:12:30', 1, '2024-05-04 07:32:52', 0, NULL, 1),
(18886, 'Saiful Islam', '34', '8124673600', '8525921118', 'saifulseeni7@gmail.com', '1999-05-07', 24, '6', '2', 'seeni', 'labour', 25000.00, 1, 0.00, 20000.00, 'ramanathapuram', 'chennai', '2405040010', '', '1', 'upload_files/candidate_tracker/79104086273_Saiful Islam S.docx', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-04 06:23:26', 112, '2024-05-06 05:15:06', 0, NULL, 1),
(18887, 'CHETHAN SHANKAR', '5', '8431883022', '7829224242', 'agasthyachee@gmail.com', '1993-01-10', 31, '2', '2', 'Prema S', 'Hosuewife', 20000.00, 1, 30000.00, 35000.00, 'Bangalore', 'Bangalore', '2405040011', '1', '2', 'upload_files/candidate_tracker/9368410928_Chethan2024ress.pdf', NULL, '1', '2024-05-06', 0, '', '3', '59', '2024-05-09', 360000.00, '', '5', '1970-01-01', '1', 'selected for Relationship Manager role - Bangalore - Need to analyse in 7 dyas training', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-05-04 06:28:43', 60, '2024-05-08 07:06:12', 0, NULL, 1),
(18888, 'Abirami S', '6', '8681962129', '9384381100', 'abi624700@gmail.com', '2004-04-28', 20, '2', '2', 'Shanmugam D', 'Fabricator', 3000.00, 1, 0.00, 20000.00, 'Perriyar salai Ayanavaram', 'Ayanavaram', '2405040012', '34', '1', 'upload_files/candidate_tracker/11854018027_CV_2024050315530615.pdf', NULL, '1', '2024-05-04', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Performance is Good ,But She Planned To Put M.Com In Next Month Also She Asked Partime Only', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-04 06:30:47', 112, '2024-05-04 03:19:46', 0, NULL, 1),
(18889, 'Dhanalakshmi K', '6', '9361844465', '8438302606', 'dhanavijiya2020@gmail.com', '2004-08-03', 19, '2', '2', 'Vijiyakumari K', 'Rice mill supervisor', 10000.00, 1, 0.00, 20000.00, 'tondiarpet Chennai -81', 'Tondiarpet Chennai -81', '2405040013', '34', '1', 'upload_files/candidate_tracker/15664920096_Dhanalakshmi resume 1-1.doc', NULL, '1', '2024-05-04', 0, '', '3', '59', '2024-05-06', 168000.00, '', '3', '2024-05-31', '2', '14ctc and 13300 th consultant', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-05-04 06:30:48', 60, '2024-08-07 02:34:21', 0, NULL, 1),
(18890, 'Sharmila Banu', '13', '9884775514', '', 'sharmi775514@gmail.com', '2002-12-28', 21, '3', '2', 'Nisha', 'House wife', 15000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2405040014', '', '1', 'upload_files/candidate_tracker/34006384352_Sharmila Banu_Resume.pdf', NULL, '1', '2024-05-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-04 06:34:22', 112, '2024-05-06 05:02:52', 0, NULL, 1),
(18891, '', '0', '7892062891', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405040015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-04 06:48:04', 0, NULL, 0, NULL, 1),
(18892, 'Vasanth Kumar I', '23', '8056370216', '9003615753', 'officialvasanth9505@gmail.com', '2001-04-27', 23, '3', '2', 'T.Iyappan', 'Cooli', 15000.00, 2, 0.00, 18000.00, 'Cheenai', 'Chennai', '2405040016', '', '1', 'upload_files/candidate_tracker/39231803271_Vasanth Kumar _Resume_766.pdf', NULL, '1', '2024-05-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-04 07:11:10', 112, '2024-05-06 05:17:36', 0, NULL, 1),
(18893, 'Gurubharathi', '13', '8098518912', '9894640525', 'gurubharathi473@gmail.com', '2000-05-24', 23, '3', '2', 'G. Meenakshi sundaram', 'Lic of india', 1000000.00, 1, 0.00, 3.00, 'Madurai', 'Madurai', '2405040017', '', '1', 'upload_files/candidate_tracker/17185087317_Guru Resume.docx1(1).pdf', NULL, '1', '2024-05-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-04 07:39:09', 130, '2024-06-03 05:32:39', 0, NULL, 1),
(18894, 'kishore s', '13', '8940281615', '', 'skishore174@gmail.com', '2001-04-17', 23, '3', '2', 'sivakumar', 'driver', 300000.00, 1, 0.00, 2.50, 'vellore', 'vellore', '2405040018', '', '1', 'upload_files/candidate_tracker/11534232491_Kishore.pdf', NULL, '1', '2024-05-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-04 08:18:14', 1, '2024-05-04 09:23:55', 0, NULL, 1),
(18895, 'DELPHIN A', '6', '7200766973', '9941161958', 'delphindolly10104@gmail.com', '2004-01-10', 20, '2', '2', 'FRACHINA A', 'COOLIE', 7000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2405040019', '1', '2', 'upload_files/candidate_tracker/37209346349_Delphin A Resume (1).pdf', NULL, '1', '2024-05-04', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for telecalling\n', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-04 09:16:43', 112, '2024-05-04 03:24:34', 0, NULL, 1),
(18896, 'mohammed thowfeeq rahman m', '5', '9345834426', '', 'thowfeeqbilali2022@gmail.com', '1999-04-23', 25, '2', '2', 'mohammed rafillah', 'business', 50000.00, 1, 27000.00, 30000.00, 'chennai', 'chennai', '2405040020', '1', '2', 'upload_files/candidate_tracker/1278068725_thowfeeq.pdf', NULL, '1', '2024-05-04', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejectd', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-04 09:21:37', 112, '2024-05-04 06:12:11', 0, NULL, 1),
(18897, 'nithya', '5', '9655757925', '', 'mnnithya195@gmail.com', '1995-03-18', 29, '2', '2', 'mani r', 'farmer', 15000.00, 2, 218000.00, 350000.00, '/ kovil Street kaplambadi Villupuram', 'chennai', '2405040021', '1', '2', 'upload_files/candidate_tracker/14106000524_NITHYA.M -Resume.pdf', NULL, '1', '2024-05-04', 60, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Expected too much of salary', '5', '1', '', '1', '3', '', '2', '1970-01-01', '4', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-04 10:56:08', 112, '2024-05-04 04:41:50', 0, NULL, 1),
(18898, 'Prashanth K', '5', '9980751023', '', 'prashuarya141@gmail.com', '1997-06-06', 26, '2', '2', 'Kamala', 'House wife', 25000.00, 1, 26000.00, 30000.00, 'Kollegala', 'Hoskote', '2405040022', '1', '2', 'upload_files/candidate_tracker/12391625877_Resume_2024-02-06_6438514.pdf', NULL, '1', '2024-05-06', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Doubt with Sustain and lack of knowledge about sales', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-04 11:45:27', 126, '2024-05-15 03:11:22', 0, NULL, 1),
(18899, '', '0', '7904781759', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405040023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-04 12:17:23', 0, NULL, 0, NULL, 1),
(18900, '', '0', '9092582036', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405050001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-05 08:23:53', 0, NULL, 0, NULL, 1),
(18901, 'Umamageshwari', '6', '7806818443', '7904057093', 'umamageshwari.s2001@gmail.com', '2001-06-24', 22, '2', '2', 'Senthil Kumar', 'Production manager', 25000.00, 1, 18000.00, 20000.00, 'Tirupattur district', 'Tirupattur district', '2405050002', '32', '2', 'upload_files/candidate_tracker/49172708236_Document (3).pdf', NULL, '1', '2024-05-06', 10, '', '5', '105', NULL, 0.00, '', '0', NULL, '2', 'Candidate performed well and good,but she is expecting high salary packge', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-05 10:36:31', 1, '2024-05-06 05:55:53', 0, NULL, 1),
(18902, 'Naveen stephen raj N', '5', '8610025036', '', 'naveenstephzz@gmail.com', '1996-11-01', 27, '2', '2', 'ramya', 'homemaker', 700000.00, 1, 30000.00, 35000.00, 'Chennai', 'Chennai', '2405050003', '32', '2', 'upload_files/candidate_tracker/23510106084_Naveen CV 2024.pdf', NULL, '1', '2024-05-06', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-05 12:47:35', 1, '2024-05-05 12:52:51', 0, NULL, 1),
(18903, '', '0', '9789344734', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405060001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-06 01:56:25', 0, NULL, 0, NULL, 1),
(18904, 'Govindaraj Renganathan', '2', '9095068192', '9626006494', 'vigovnth@gmail.com', '1996-05-27', 27, '3', '2', 'Renganathan', 'Former', 38000.00, 2, 0.00, 18000.00, 'Theni', 'Chennai', '2405060002', '', '1', 'upload_files/candidate_tracker/80949830570_govindarajRenganthanResume (1).pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 04:01:06', 130, '2024-05-09 10:20:24', 0, NULL, 1),
(18905, 'Jyothi.S', '5', '8688930385', '9571177894', 'jyothigoswami59@gmail.com', '2002-05-31', 21, '2', '2', 'Shyam', 'Business man', 50000.00, 2, 0.00, 30000.00, 'V.K.m Street opposite to post office Nagalapuram', 'Egmore', '2405060003', '1', '2', 'upload_files/candidate_tracker/54647007118_File-RelievingLetter_2563243_02_05_24_19_51_40 (1).pdf', NULL, '1', '2024-05-06', 0, '', '8', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'didnxquott respond to arun', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-06 04:38:22', 140, '2024-05-08 07:12:44', 0, NULL, 1),
(18906, 'tamilthasan', '13', '8144980851', '', 'tamilthasan11@gmail.com', '2003-09-18', 20, '3', '2', 'Arumugam', 'Framer', 15000.00, 0, 0.00, 15000.00, 'Korathi, Cuddalore, Tamil Nadu, 607205', 'MGR Nagar, Nesapakkam, Chennai, Tamil Nadu 600078', '2405060004', '', '1', 'upload_files/candidate_tracker/28578562893_TAMILTHASAN_A.pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 04:44:35', 112, '2024-05-06 05:15:47', 0, NULL, 1),
(18907, 'Pavithra', '31', '9025123887', '9710114430', 'pavithranatrajan2002@gmail.com', '2002-11-02', 21, '3', '2', 'Natrajan', 'Tailor', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'No.3,7th cross periyar street,Sanatorium,chennai', '2405060005', '', '1', 'upload_files/candidate_tracker/59862532377_Pavitha Natrajan Resume Updated-1_1714799560630_Pavithra Natrajan .pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 04:44:57', 112, '2024-05-06 05:03:23', 0, NULL, 1),
(18908, 'Rajeshwari.J', '13', '6369036359', '9786609586', 'raji9786kpm@gmail.com', '2002-12-22', 21, '3', '2', 'Jayasankar', 'Information technology', 20000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2405060006', '', '1', 'upload_files/candidate_tracker/82242576987_Rajeshwari J.pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 04:56:46', 112, '2024-05-06 05:06:43', 0, NULL, 1),
(18909, 'Mariappan.N', '2', '9500813803', '', 'marinamachivayam2003@gmail.com', '2003-04-27', 21, '3', '2', 'Parent', 'Mason', 12000.00, 1, 0.00, 3.00, 'Tirunelveli', 'Tirunelveli', '2405060007', '', '1', 'upload_files/candidate_tracker/62079579028_Mariappan', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 04:56:51', 130, '2024-05-16 04:27:52', 0, NULL, 1),
(18910, 'Anandharaj', '2', '8925191383', '', 'aaraj232@gmail.com', '2002-02-23', 22, '3', '2', 'Esakiyammal', 'House wife', 20000.00, 4, 0.00, 3.00, 'Kovilpatti', 'Chennai', '2405060008', '', '1', 'upload_files/candidate_tracker/37101167812_resume.pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 04:56:59', 112, '2024-05-06 05:11:25', 0, NULL, 1),
(18911, 'habibullah', '14', '9344422067', '', 'mohammads11678@gmail.com', '2000-10-14', 23, '3', '2', 'kairun begum', 'house wife', 1000.00, 0, 360000.00, 480000.00, 'chennai', 'chenn', '2405060009', '', '2', 'upload_files/candidate_tracker/64151876049_HABIBULLAH resume pdf 1-3.pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 05:18:11', 130, '2024-05-16 04:23:28', 0, NULL, 1),
(18912, 'Ajaikumar', '13', '9360636418', '', 'ajaikumars9360@gmail.com', '2002-08-08', 21, '3', '2', 'Samudi KC', 'Farmer', 60000.00, 1, 0.00, 1.80, 'Chennai ,Bangalore,indore', 'Chennai', '2405060010', '', '1', 'upload_files/candidate_tracker/70019919652_AJAIKUMAR (3).pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 05:20:30', 112, '2024-05-06 05:12:56', 0, NULL, 1),
(18913, 'vignesh D', '13', '9585760985', '', 'vigneshdec2001@gmail.com', '2001-12-13', 22, '3', '2', 'deivasigamani', 'Farmer', 40000.00, 1, 0.00, 1.50, 'Ariyalur', 'chennai', '2405060011', '', '1', 'upload_files/candidate_tracker/4241121915_vignesh.pdf', NULL, '1', '2024-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-06 05:20:56', 1, '2024-05-06 05:25:21', 0, NULL, 1),
(18914, 'Sharmila', '13', '7305242003', '7401437105', 'sharmilaveeramuthu20@gmail.com', '2003-04-09', 21, '3', '2', 'Veeramuthu', 'MRF employee', 20000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2405060012', '', '1', 'upload_files/candidate_tracker/61183669652_Document from Sharmila.pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 05:21:33', 112, '2024-05-06 05:07:39', 0, NULL, 1),
(18915, 'Sunilkumar', '31', '9080124692', '7358276307', 'sunilkumar2010k@gmail.com', '1999-03-20', 25, '3', '2', 'Ravi', 'Business', 80000.00, 1, 20000.00, 35000.00, 'Chennai', 'Chennai', '2405060013', '', '2', 'upload_files/candidate_tracker/12469714820_Sunilkumar Resume.pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 05:25:14', 112, '2024-05-06 05:14:10', 0, NULL, 1),
(18916, 'Keerthana Rajaram', '13', '7010124709', '', 'keerthanalatha569@gmail.com', '2009-05-06', 0, '3', '2', 'Rajaram', 'Photographer', 20000.00, 1, 0.00, 300000.00, 'Porur', 'Porur', '2405060014', '', '1', 'upload_files/candidate_tracker/30363852406_keerthanalatha569gmail.com_compressed (1)_compressed (1).pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 05:30:57', 112, '2024-05-06 05:07:06', 0, NULL, 1),
(18917, 'Vignesh', '13', '7448406704', '', 'Vigneshg431@gmail.com', '2002-02-14', 22, '3', '2', 'Chithra', 'Former', 10000.00, 1, 0.00, 100000.00, 'Thirukovilur kallakurichi 605803.', 'Chennai', '2405060015', '', '1', 'upload_files/candidate_tracker/20677362862_VIGNESH G. Resume.pdf', NULL, '1', '2024-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-06 05:33:59', 1, '2024-05-06 05:40:50', 0, NULL, 1),
(18918, '', '0', '9629866264', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405060016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-06 05:34:01', 0, NULL, 0, NULL, 1),
(18919, 'Ramaraja E', '13', '8903486941', '9629172041', 'ananthrama03@gmail.com', '2001-04-17', 23, '3', '2', 'Elangairathinam S', 'Cooli', 10000.00, 2, 0.00, 17000.00, 'Tenkasi', 'Chennai', '2405060017', '', '1', 'upload_files/candidate_tracker/95956094804_RAM1(1).pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 05:35:14', 130, '2024-05-10 06:31:22', 0, NULL, 1),
(18920, 'John Joel', '31', '9597210551', '', 'johnjoelw16@gmail.com', '2009-05-06', 0, '3', '2', 'Hane Margaret (mother)', 'House wife', 5000.00, 2, 0.00, 15000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2405060018', '', '1', 'upload_files/candidate_tracker/7704493728_John_Joel.W_B.E_AG_2023_80%_FullStack_Developer(Java)-1.pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 05:41:49', 112, '2024-05-06 05:10:29', 0, NULL, 1),
(18921, 'Mastoorj Gowthami', '5', '7702125453', '9704131462', 'Pallavigowthami465@gmail.com', '2000-07-05', 23, '2', '2', 'M.Sudhakara', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Madanapalli , Andhrapradesh', 'Maharathali', '2405060019', '39', '1', 'upload_files/candidate_tracker/30696168339_Gowthami Updated Resume.docx', NULL, '1', '2024-05-10', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'confirm joining and as per company ctc DM', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 05:47:18', 126, '2024-05-11 10:23:39', 0, NULL, 1),
(18922, 'Abishek', '5', '7401538411', '', 'aby041093@gmail.com', '1993-10-04', 30, '1', '2', 'Father', 'Private employee', 25000.00, 0, 22000.00, 25000.00, 'Chennai', 'Chennai', '2405060020', '', '2', 'upload_files/candidate_tracker/76181161587_cv 1 dox.pdf', NULL, '1', '2024-05-06', 0, 'Jobs', '5', '139', NULL, 0.00, '', '0', NULL, '1', 'Donxquott have Relevant exp in sales and knowledge about sales ', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-06 05:51:34', 1, '2024-05-06 06:02:45', 0, NULL, 1),
(18923, 'prem sagar reddy', '20', '7760451197', '', 'lpremsagarreddy@gmail.com', '1999-03-05', 25, '3', '2', 'lokanath reddy', 'own business', 25000.00, 0, 0.00, 240000.00, 'bangalore', 'bangalore', '2405060021', '', '1', 'upload_files/candidate_tracker/35703742949_RESUME NEW (1).pdf', NULL, '1', '2024-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-06 05:52:19', 1, '2024-05-06 05:55:43', 0, NULL, 1),
(18924, 'KOUSIKA M', '31', '8870397919', '', 'kousikamayan06@gmail.com', '2009-05-06', 0, '3', '2', 'Mayan', 'Own shop', 20000.00, 2, 0.00, 4.00, 'Madurai', 'Chennai', '2405060022', '', '1', 'upload_files/candidate_tracker/92923060562_KOUSIKA_MAYAN_2024APR(1) (1).pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 05:53:36', 112, '2024-05-06 05:08:08', 0, NULL, 1),
(18925, 'Lavanya', '13', '9159808199', '', 'lavanya.thirupathi1999@gmail.com', '2009-05-06', 0, '3', '2', 'Thirupathi', 'Medavakkam', 20000.00, 1, 0.00, 20000.00, 'Dharmapuri', 'Chennai', '2405060023', '', '1', 'upload_files/candidate_tracker/66887917419_Lavanya_resume.pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 06:01:17', 112, '2024-05-06 05:03:58', 0, NULL, 1),
(18926, 'A.kannadasan', '13', '9087392336', '8072831622', '3kannadasan@gmail.con', '1998-04-03', 26, '6', '2', 'S.Anandan', 'Driver', 10000.00, 0, 0.00, 14.00, 'Chennai', 'Chennai', '2405060024', '', '1', 'upload_files/candidate_tracker/77269811471_resumedevelop.pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 06:03:40', 112, '2024-05-06 05:09:22', 0, NULL, 1),
(18927, 'SUBASH .S', '31', '8015497796', '6382797796', 'subashsofteng@gmail.com', '2009-05-06', 0, '3', '2', 'Sundaraj.D', 'Farmer', 10000.00, 1, 0.00, 17000.00, 'Thanjavur', 'Thanjavur', '2405060025', '', '1', 'upload_files/candidate_tracker/92440341933_SUBASH RM.pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 06:12:14', 112, '2024-05-06 05:09:53', 0, NULL, 1),
(18928, 'Santhosh P', '5', '7338984534', '9383044447', 'santhoshhanu14@gmail.com', '1995-12-16', 28, '2', '2', 'Pushparaj S', 'Bearing and motor business', 40000.00, 1, 30000.00, 35000.00, '172A/166A, sarangabani street, Madhavaram - 600110', '172A/166A, Sarangabani Street, Madhavaram - 600110', '2405060026', '51', '2', 'upload_files/candidate_tracker/8637785856_santhosh resume 5.docx', NULL, '1', '2024-05-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 07:15:43', 104, '2024-05-06 05:51:12', 0, NULL, 1),
(18929, 'Deepak R', '13', '9840663106', '7358237794', 'deepakr1109@gmail.com', '2002-09-11', 21, '3', '2', 'Ravi kumar', 'Bus mechanic', 400000.00, 1, 0.00, 250000.00, 'Thiruvenkadam street, perambur Chennai', 'Thiruvenkadam street, perambur chennai', '2405060027', '', '1', 'upload_files/candidate_tracker/80582165338_DeepakaNewResume.pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 07:16:52', 112, '2024-05-06 05:08:44', 0, NULL, 1),
(18930, 'Ruchitha. S', '5', '8008781326', '9036522481', 'savalamruchitha005@gmail.com', '2003-04-17', 21, '2', '2', 'S. Thirupathi Rao', 'Teacher', 90000.00, 1, 22000.00, 28000.00, 'Bengaluru', 'Bengaluru', '2405060028', '39', '2', 'upload_files/candidate_tracker/72043644179_Ruchitha CV.docx', NULL, '1', '2024-05-06', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'grand parents denied for joining', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 07:31:27', 127, '2024-05-09 02:46:22', 0, NULL, 1),
(18931, 'Chendoora Pandi', '6', '7358256256', '6380788488', 'chendoorapandi18@gmail.com', '1999-01-27', 25, '2', '2', 'Siva Perumal', 'Tellecaller', 50000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2405060029', '50', '2', 'upload_files/candidate_tracker/93775978156_CV_2024050611174191.pdf', NULL, '1', '2024-05-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok,confirm the salary like 15k to 16k maximum, pls cross check with payslips xxamp resignation letter.confirm the joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 08:08:16', 104, '2024-05-06 05:50:30', 0, NULL, 1),
(18932, 'sarojinidevi.G', '4', '7358110430', '', 'Sarojinid912@gmail.com', '2001-03-26', 23, '2', '2', 'Ganesan.k', 'Welding supervisor', 25000.00, 1, 0.00, 19000.00, '11/10 8th st sathya moorthi nagar', '11/10 8th St Sathya Moorthi Nagar', '2405060030', '', '2', 'upload_files/candidate_tracker/15892553184_CV_2024-03-28-054328.pdf', NULL, '1', '2024-05-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1021', '0', NULL, NULL, NULL, 1, '2024-05-06 08:39:03', 1, '2024-05-06 08:51:31', 0, NULL, 1),
(18933, 'Keerthika .s', '4', '8668006229', '', 'keerthikaammu738@gmail.com', '2002-05-05', 22, '2', '2', 'Sasi kumar', 'Iroing', 25000.00, 1, 14000.00, 19000.00, '7/4 parasuraman Street pattalam Chennai 12', '7/4 parasuraman Street pattalam Chennai 12', '2405060031', '1', '2', 'upload_files/candidate_tracker/44093035689_keerthika resume.pdf', NULL, '1', '2024-05-06', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1021', '0', NULL, NULL, NULL, 1, '2024-05-06 08:39:41', 1, '2024-05-06 08:51:26', 0, NULL, 1),
(18934, 'Mitali Sahu', '6', '7609034830', '9776270889', 'Sahumitali1995@gmail.com', '1995-06-22', 28, '2', '1', 'Abinash Sahoo', 'Working', 5000000.00, 2, 15000.00, 25000.00, 'Cuttack, Odisha', 'Dasarahalli, hebbal. Bangalore. 560024', '2405060032', '1', '2', 'upload_files/candidate_tracker/17388610588_Mitali_Sahu_Resume.pdf', NULL, '1', '2024-05-06', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary expectation is high ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-06 09:00:45', 126, '2024-05-11 11:05:33', 0, NULL, 1),
(18935, 'Balaji', '4', '9788660872', '9638237699', 'balaji02011999@gmail.com', '1999-01-02', 25, '3', '2', 'Elumalai', 'Former', 10000.00, 1, 0.00, 2.20, 'Arni', 'Magappir', '2405060033', '', '1', 'upload_files/candidate_tracker/4381769376_Balaji\'s Resume (1).pdf', NULL, '1', '2024-05-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-06 09:08:17', 1, '2024-05-06 09:12:19', 0, NULL, 1),
(18936, 'Balaji', '6', '6382134397', '9788660872', 'balaji02011999@gmail.com', '1999-01-02', 25, '2', '2', 'Elumalai', 'Former', 10000.00, 1, 0.00, 1.80, 'Arni', 'Magappir', '2405060034', '1', '1', 'upload_files/candidate_tracker/93139516632_Balaji', NULL, '1', '2024-05-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-05-06 09:20:59', 104, '2024-05-06 05:49:10', 0, NULL, 1),
(18937, 'ibrahim', '13', '7338963013', '', 'ibrahimibu303@gmail.com', '2000-05-30', 23, '3', '1', 'ismail', 'bussiness', 10000.00, 0, 0.00, 400000.00, 'chennai', 'chennai', '2405060035', '', '1', 'upload_files/candidate_tracker/11247017454_RES 2.pdf', NULL, '1', '2024-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 09:30:59', 112, '2024-05-06 05:16:15', 0, NULL, 1),
(18938, 'ruthika sunil', '4', '8197157145', '', 'ruthika76sd@gmail.com', '2001-04-06', 23, '2', '2', 'sunil dhumal', 'Self-Employed', 20000.00, 0, 27000.00, 30000.00, 'belagum', 'silkboard', '2405060036', '47', '2', 'upload_files/candidate_tracker/40373125610_Rutika Sunil Dhumale .pdf', NULL, '1', '2024-05-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-06 09:53:56', 1, '2024-05-06 09:57:27', 0, NULL, 1),
(18939, '', '0', '8870045381', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405060037', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-06 10:12:40', 0, NULL, 0, NULL, 1),
(18940, 'Suriya prakash j', '34', '9047484132', '9994314085', 'suriyaprakash240501@gmail.com', '2001-05-24', 22, '3', '2', 'Janarthanan', 'Agriculture', 5000.00, 1, 0.00, 250000.00, 'Chidambaram', 'Chennai', '2405060038', '', '1', 'upload_files/candidate_tracker/73201541621_Suriya Prakash j resume (1).pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-06 12:14:18', 130, '2024-05-16 04:28:16', 0, NULL, 1),
(18941, 'Sujithkumar', '6', '9150669263', '9344778581', 'sujithdfc1227@gmail.com', '2001-12-12', 22, '4', '2', 'Paramasivam', 'Dailywages', 200000.00, 1, 33000.00, 33000.00, 'Coimbatore', 'Coimbatore', '2405060039', '', '2', 'upload_files/candidate_tracker/31500885192_Sujith.pdf', NULL, '2', '2024-05-07', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-06 12:28:23', 1, '2024-05-06 12:31:51', 0, NULL, 1),
(18942, '', '0', '8056276884', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405060040', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-06 01:01:53', 0, NULL, 0, NULL, 1),
(18943, 'Sinivasan', '13', '9629664408', '9629594904', 'vasan142000@gmail.com', '2000-04-01', 24, '6', '2', 'Saravanan', 'Welder', 20000.00, 2, 0.00, 25000.00, 'Thanjavur', 'Thanjavur', '2405070001', '', '1', 'upload_files/candidate_tracker/58393233540_sini_proper_resume 2024.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 03:52:48', 130, '2024-05-07 05:49:57', 0, NULL, 1),
(18944, 'Maipati Purushotham', '2', '8106917936', '', 'purushothammaipati@gmail.com', '2001-02-11', 23, '3', '2', 'M.sivaiah', 'Auto driver', 300000.00, 1, 0.00, 20000.00, 'Sri kalahasthi', 'Benguluru', '2405070002', '', '1', 'upload_files/candidate_tracker/77560079767_Purushotham_WD.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 03:53:19', 130, '2024-05-07 05:52:20', 0, NULL, 1),
(18945, 'Madhan AB', '13', '8056331600', '8220246956', 'madhan04pg@gmail.com', '2001-04-04', 23, '3', '2', 'Brammanandam', 'MSC Bio chemistry', 70000.00, 1, 0.00, 20000.00, 'Gummidipoondi', 'Gummidipoondi', '2405070003', '', '1', 'upload_files/candidate_tracker/8424196362_Madhan resume.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 04:20:28', 130, '2024-05-16 04:22:37', 0, NULL, 1),
(18946, 'Gokulan p', '13', '6383354142', '', '21mca17gokulan@gmail.com', '2000-04-02', 24, '3', '2', 'Parent', 'Farmer', 60000.00, 2, 0.00, 20000.00, 'Villupuram', 'Chennai', '2405070004', '', '1', 'upload_files/candidate_tracker/29227516255_GOKUL RESUME.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 04:45:35', 130, '2024-05-07 05:51:32', 0, NULL, 1),
(18947, 'Dinesh G', '13', '9360405951', '', 'gdinesh00724@gmail.com', '2002-01-24', 22, '3', '2', 'Ganesan', 'TNEB', 30000.00, 1, 0.00, 15000.00, 'Kovilpatti', 'Chennai', '2405070005', '', '1', 'upload_files/candidate_tracker/40909246843_dinesh.g.pdf', NULL, '1', '2024-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 04:46:15', 1, '2024-05-07 05:03:10', 0, NULL, 1),
(18948, 'Santhosh', '31', '6369958051', '', 'santhoshv3901@gmail.com', '2002-02-24', 22, '3', '2', 'Vanniraja', 'Carpenter', 10000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2405070006', '', '1', 'upload_files/candidate_tracker/26841948009_Resume Santhosh V.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 04:54:18', 130, '2024-05-16 04:26:14', 0, NULL, 1),
(18949, 'amrith imran i', '13', '7397056868', '', 'amrithimran42@gmail.com', '2002-06-10', 21, '3', '2', 'imam jaffer j', 'police', 50000.00, 3, 0.00, 20000.00, 'madurai', 'chennai', '2405070007', '', '1', 'upload_files/candidate_tracker/27475967054_imran-last-resume (3).pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 04:54:25', 130, '2024-05-07 05:54:11', 0, NULL, 1),
(18950, 'K. Priyanga', '6', '6382064807', '8939159881', 'priyangabujji09@gmail.com', '2002-09-12', 21, '2', '2', 'R. Karunagaran', 'Cooli', 15000.00, 2, 0.00, 15000.00, 'Villupuram', 'Chennai', '2405070008', '51', '1', 'upload_files/candidate_tracker/68694850671_Priyanga.pdf', NULL, '1', '2024-05-07', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 04:55:32', 112, '2024-05-07 03:01:38', 0, NULL, 1),
(18951, 'Jessi.d', '6', '9150995890', '9176231211', 'Jessijeni70@gmail.com', '2001-10-14', 22, '2', '2', 'Rajeshwari', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2405070009', '51', '1', 'upload_files/candidate_tracker/3040882635_jessi.pdf', NULL, '1', '2024-05-07', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 04:58:09', 112, '2024-05-07 03:02:46', 0, NULL, 1),
(18952, 'Ponmahal', '31', '6379068338', '', 'ponmahalrajangam2002@gmail.com', '2002-05-07', 22, '3', '2', 'Rajangam', 'Farmer', 60000.00, 2, 0.00, 300000.00, 'Thanjavur', 'Chennai', '2405070010', '', '1', 'upload_files/candidate_tracker/15490700360_PONMAHAL RESUME.pdf (1).pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 05:00:17', 130, '2024-05-07 05:52:50', 0, NULL, 1),
(18953, 'Arjun N', '6', '7022265727', '', 'arjun7022265727@gmail.com', '2001-11-10', 22, '2', '2', 'Narayanaswamy', 'Civil engineering', 30000.00, 2, 18000.00, 18000.00, 'Kolar district srinivaspura taluk', 'Madiwala maruti nagar 1st stage', '2405070011', '51', '2', 'upload_files/candidate_tracker/19718631120_Arjun N (insurance).pdf', NULL, '1', '2024-05-07', 5, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not upto the mark', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 05:05:05', 112, '2024-05-07 05:49:05', 0, NULL, 1),
(18954, 'Bhavana R B', '6', '7349132533', '', 'bhavanarb39@gmail.com', '2001-09-01', 22, '2', '2', 'Basavaraju', 'BE Civil Engineering', 30000.00, 2, 17000.00, 20000.00, 'Halebeedu, Hassan District', 'BTM 1st stage maruti nagar Bengaluru', '2405070012', '51', '2', 'upload_files/candidate_tracker/89387848276_BHAVANA RB (insurance).pdf', NULL, '1', '2024-05-07', 5, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not upto the mark', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 05:05:47', 112, '2024-05-07 05:47:57', 0, NULL, 1),
(18955, '', '0', '9342693277', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405070013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-07 05:07:01', 0, NULL, 0, NULL, 1),
(18956, 'Bhuvana devi. R', '13', '9444809329', '', 'bhuvanadevi16@gmail.com', '2000-06-16', 23, '3', '2', 'Ramachandran. S', 'Provision store', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405070014', '', '1', 'upload_files/candidate_tracker/90687083141_Bresume.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 05:09:34', 130, '2024-05-07 05:53:19', 0, NULL, 1),
(18957, 'Arun', '6', '8870534098', '6379874318', '20arun00@gmail.com', '2000-10-18', 23, '2', '2', 'Pandiyan', 'Daily wages', 15000.00, 2, 15000.00, 20000.00, 'Salem', 'K.k.Nagar', '2405070015', '42', '2', 'upload_files/candidate_tracker/73569063496_Arunpandiyan 13.02.2024.pdf', NULL, '1', '2024-05-07', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Sustainability issue.', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 05:12:35', 1, '2024-05-07 05:20:22', 0, NULL, 1),
(18958, 'Jeevitha T', '6', '6379874318', '8870534098', 'tjeevitha09@gmail.com', '2002-03-09', 22, '2', '2', 'Kalaiselvi', 'Weaver', 10000.00, 2, 0.00, 15000.00, 'Cittangadu, kunjadiyur, mettur, Salem District', 'Ashok pillar', '2405070016', '42', '1', 'upload_files/candidate_tracker/52472658484_jeevitha resume 1.pdf', NULL, '1', '2024-05-07', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Not even opening her mouth. Low voice and unclear speech', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 05:12:52', 1, '2024-05-07 05:20:30', 0, NULL, 1),
(18959, 'Surya M', '31', '7299242214', '8680019223', 'Suriyamohan0@gmail.com', '1998-07-04', 25, '3', '2', 'Mohan s', 'Driver', 25000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2405070017', '', '1', 'upload_files/candidate_tracker/71320366071_SURYA_M_B_E_2021-5.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 05:21:27', 130, '2024-05-07 05:53:43', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18960, 'B kavya', '5', '9347291269', '', 'kavi1216@gmail.com', '2003-06-16', 20, '2', '2', 'Rathnamma', 'Former', 10000.00, 3, 0.00, 3.50, 'Andhra pradesh', 'Basavanagudi', '2405070018', '39', '1', 'upload_files/candidate_tracker/7991687147_B.KAVYA RESUME.pdf', NULL, '1', '2024-05-07', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of confident', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 05:21:34', 126, '2024-05-15 02:27:53', 0, NULL, 1),
(18961, 'G v sai sruthi', '5', '8125307634', '9347291269', 'sruthi767407@gmail.com', '2003-06-09', 20, '2', '2', 'G Vema reddy', 'Farmers', 10000.00, 1, 0.00, 4.00, 'Andhra pradesh', 'Bengaluru', '2405070019', '39', '1', 'upload_files/candidate_tracker/7384133697_g.v.sai sruthi.pdf', NULL, '1', '2024-05-07', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she will not sustain and lagging with communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 05:21:39', 126, '2024-05-15 03:03:00', 0, NULL, 1),
(18962, 'Prashanth', '13', '6374970124', '', 'prashanthravi918@gmail.com', '2001-12-18', 22, '3', '2', 'Ravichandran', 'Farmer', 10000.00, 1, 0.00, 200000.00, '1/227, vairavan kadu, kameswaram, nagapattinam', 'Thirumalai nagar, singaperumal koil, chengalpattu', '2405070020', '', '1', 'upload_files/candidate_tracker/83146071294_RESUME.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 05:22:27', 130, '2024-05-16 04:22:14', 0, NULL, 1),
(18963, 'DHARUN', '13', '9384932534', '6374950744', 'dharuntamil2108@gmail.com', '2002-07-21', 21, '3', '2', 'Murugeswari', 'Home maker', 15000.00, 2, 0.00, 200000.00, 'Nagapattinam', 'Chennai', '2405070021', '', '1', 'upload_files/candidate_tracker/39508586911_FINALCV.pdf', NULL, '1', '2024-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 05:22:38', 1, '2024-05-07 06:57:18', 0, NULL, 1),
(18964, 'Sivanantham', '13', '6383967369', '6374950744', 'sivananthamg8217@gmail.com', '2003-02-07', 21, '3', '2', 'Gajendran', 'Farmer', 15000.00, 1, 0.00, 200000.00, 'Nagapattinam', 'Spkovil', '2405070022', '', '1', 'upload_files/candidate_tracker/31633284676_sivanantham resume .pdf', NULL, '1', '2024-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 05:22:46', 1, '2024-05-07 05:35:35', 0, NULL, 1),
(18965, 'Vasanth Pavunrajan', '13', '9600532869', '6374950744', 'vasanthrajan1111@gmail.com', '2002-04-08', 22, '3', '2', 'Pavunrajan', 'Farmer', 15000.00, 2, 0.00, 200000.00, 'Nagapattinam', 'Chengalpattu', '2405070023', '', '1', 'upload_files/candidate_tracker/48454727550_vasanth pavunrajan resume.pdf', NULL, '1', '2024-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 05:23:21', 1, '2024-05-07 05:30:08', 0, NULL, 1),
(18966, 'B.Bhanumathi', '6', '7708388910', '8754106168', 'bhanumathi1607@gmail.com', '2002-07-16', 21, '2', '2', 'J . balu', '96000', 10000.00, 2, 0.00, 20000.00, 'Kallakkurichi', 'Choolaimedu', '2405070024', '51', '1', 'upload_files/candidate_tracker/65783846793_B.Bhanumathi.pdf', NULL, '1', '2024-05-07', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance is Very Low,Also Her Voice Very Lazy ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 05:33:35', 112, '2024-05-07 01:17:36', 0, NULL, 1),
(18967, 'PRAVIN D', '13', '8220224115', '', 'pravinece2020@gmail.com', '2002-06-25', 21, '3', '2', 'DURAIRAJ V', 'Fatmer', 7500.00, 2, 0.00, 3.00, 'Thiruvarur', 'Chennai', '2405070025', '', '1', 'upload_files/candidate_tracker/39119931265_PravinCV[1].pdf', NULL, '1', '2024-05-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 05:40:41', 1, '2024-05-07 05:44:13', 0, NULL, 1),
(18968, 'Deva G', '6', '9940795623', '6381178529', 'jeeva44334@gmail.com', '2000-10-15', 23, '2', '2', 'Govindharasu p', 'Farmer', 40000.00, 1, 0.00, 16.00, 'Ariyalur', 'Ariyalur', '2405070026', '50', '1', 'upload_files/candidate_tracker/66152150570_DEVA g.pdf', NULL, '1', '2024-05-07', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no skill and not fit for sales and voice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 05:44:17', 112, '2024-05-07 02:59:14', 0, NULL, 1),
(18969, 'Nandu Madhav V', '5', '9745377965', '8589824751', 'nandumadhav97@gmail.com', '2001-03-18', 23, '2', '2', 'V Madhavan', 'Business man', 30000.00, 2, 25000.00, 35000.00, 'Kasaragod, Kerala', 'Tavarekere, Bangalore', '2405070027', '39', '2', 'upload_files/candidate_tracker/43414136565_Nandu CV.pdf', NULL, '1', '2024-05-09', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of knowledge about the sales doubt with Sustainability', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 05:46:11', 126, '2024-05-15 03:16:01', 0, NULL, 1),
(18970, 'SOVAN Pradhan', '8', '8917345490', '9776623182', 'sovanpradhan0@gmail.com', '1999-06-02', 24, '3', '2', 'laxman pr', 'farmer', 15.00, 0, 26000.00, 36000.00, 'odisha', 'chennai', '2405070028', '', '2', 'upload_files/candidate_tracker/97902859338_SOVAN_ 02-06-1999.pdf', NULL, '1', '2024-05-11', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 05:57:17', 1, '2024-05-07 06:29:39', 0, NULL, 1),
(18971, 'Deepalakshmi M', '13', '9025718746', '', 'deepalakshmim309@gmail.com', '2003-06-12', 20, '3', '2', 'Mannarsamy', 'Farmar', 60000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405070029', '', '1', 'upload_files/candidate_tracker/96900901895_Deepalakshmi Resume-3.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 05:57:26', 130, '2024-05-07 05:54:42', 0, NULL, 1),
(18972, 'Manikandan k', '13', '7823999388', '', 'manimrs7823@gmail.com', '2001-10-27', 22, '3', '2', 'Kumaraswamy', 'Agriculture', 10000.00, 2, 0.00, 15000.00, 'Tirukovilur', 'Chennai', '2405070030', '', '1', 'upload_files/candidate_tracker/39766910628_Manikandan-Resume (1).pdf', NULL, '1', '2024-05-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 06:14:43', 1, '2024-05-07 06:21:50', 0, NULL, 1),
(18973, 'Surendar M', '31', '6380300374', '', 'surendartechie2203@gmail.com', '2000-03-22', 24, '3', '2', 'Muthuvaithiyanathan, kalavathi', 'Government work', 50000.00, 1, 0.00, 3.00, 'Tiruvarur', 'Tiruvarur', '2405070031', '', '1', 'upload_files/candidate_tracker/48562564876_Surendar.pdf', NULL, '1', '2024-05-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 06:22:18', 1, '2024-05-07 06:45:39', 0, NULL, 1),
(18974, 'Dhasthageer', '13', '8248094893', '', 'sharuknizar@gmail.com', '2002-08-29', 21, '3', '2', 'Sharmila', 'Tailar', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2405070032', '', '1', 'upload_files/candidate_tracker/5069025562_Dhasthageer_WebRESUME.pdf', NULL, '1', '2024-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 06:27:13', 1, '2024-05-07 06:34:05', 0, NULL, 1),
(18975, 'Tharani', '6', '7305545743', '8489367287', 'Tharaniramu11072001@gmail.com', '2001-07-11', 22, '2', '2', 'Ramu. D', 'Cooli', 15000.00, 1, 0.00, 15000.00, 'Attipattu', 'Attipattu', '2405070033', '51', '1', 'upload_files/candidate_tracker/4700769072_tharini.pdf', NULL, '1', '2024-05-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She Is Not Fit For Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 06:30:42', 112, '2024-05-07 02:57:53', 0, NULL, 1),
(18976, 'Sabarinayagam', '31', '9952375090', '', 'Sabarinayagam@gmail.com', '1995-03-11', 29, '3', '2', 'Iyyapan', 'Former', 200000.00, 3, 0.00, 2.50, 'Tirunelveli', 'Chennai', '2405070034', '', '1', 'upload_files/candidate_tracker/87189470874_Sabarinayagam Resume.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 06:32:34', 130, '2024-05-07 05:56:54', 0, NULL, 1),
(18977, 'Joshuva.c', '5', '9688428091', '9443784776', 'joshan1309@gmail.com', '1999-12-13', 24, '2', '2', 'Christopher jebaraj', 'Business', 60000.00, 1, 20000.00, 27000.00, 'Nagapattinam', 'Ambattur', '2405070035', '1', '2', 'upload_files/candidate_tracker/91360899538_josh resume.docx', NULL, '1', '2024-05-07', 1, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected Need to negotiate salary. Joining on 1st June for Jagadeesh Team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-07 06:54:09', 112, '2024-05-07 03:12:16', 0, NULL, 1),
(18978, 'MUGILRAJ M', '5', '9344706766', '', 'mugilrajsurya558@gmail.com', '1998-07-13', 25, '2', '2', 'MUNUSAMY', 'Self Business', 300000.00, 1, 23600.00, 25000.00, 'Kallakurichi', 'Vadapalani', '2405070036', '1', '2', 'upload_files/candidate_tracker/55174803844_resume 1.pdf', NULL, '1', '2024-05-07', 3, '', '3', '59', '2024-05-09', 350000.00, '', NULL, '2025-11-03', '1', 'Selected for Santhosh Team in staff role Final round interviewed by Sriram and he committed 3.5 LPA cross checked the candidate previous exp payslips and overall its around 23800 and we offered around 23% hiike from his last CTC,also he is a fresher for sales Telecalling process can give a try and analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-07 06:59:30', 60, '2024-05-09 10:04:11', 0, NULL, 1),
(18979, 'M Saranya', '5', '7358428086', '7358206366', 'mathisaranya1995@gmail.com', '1995-11-03', 28, '2', '2', 'M Mathivanan', 'Painter', 15000.00, 1, 24730.00, 24000.00, '42,PERUMAL KOIL LANE,KOTTUR,CHENNAI-600085', '42,PERUMAL KOIL LANE,KOTTUR,CHENNAI-600085', '2405070037', '1', '2', 'upload_files/candidate_tracker/85950419366_Saranya.pdf', NULL, '1', '2024-05-07', 3, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-07 07:01:35', 112, '2024-05-07 03:04:43', 0, NULL, 1),
(18980, 'Reshma Komaraneni', '6', '8309339499', '', 'reshmakomaraneni18@gmail.com', '2001-10-18', 22, '2', '2', 'SeshuBabu Komaraneni', 'Retired Army Officer', 100000.00, 1, 0.00, 3.00, 'Palavancha', 'Palavancha', '2405070038', '1', '1', 'upload_files/candidate_tracker/84962728248_Reshma.pdf', NULL, '1', '2024-05-07', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected for dm ctc asper company', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-07 07:02:37', 127, '2024-05-09 02:44:42', 0, NULL, 1),
(18981, 'saran', '13', '9585574535', '', 'ssaranpalani@gmail.com', '2001-08-08', 22, '3', '2', 'palani', 'farmer', 250000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2405070039', '', '1', 'upload_files/candidate_tracker/23782143940_Saran.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 07:03:30', 130, '2024-05-07 05:55:53', 0, NULL, 1),
(18982, 'Bharath Kumar S', '13', '9361465709', '', 'bb729024@gmail.com', '2000-08-12', 23, '3', '2', 'S.Sathasivam', 'Fibre coating', 30000.00, 1, 0.00, 15000.00, 'Karur', 'Karur', '2405070040', '', '1', 'upload_files/candidate_tracker/39091311811_Bharath 2024.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 07:15:49', 130, '2024-05-07 05:57:26', 0, NULL, 1),
(18983, 'S shiny', '15', '7022646518', '7022646917', 'Shinyepsi96@gmail.com', '1996-07-23', 27, '3', '1', 'A Lawrence', 'Service engineer', 40000.00, 1, 0.00, 22000.00, 'No;6 15th main road 12th Cross jc Nagar i', 'No;6 15th Main Road 12th Cross Jc Naga Nagar', '2405070041', '', '1', 'upload_files/candidate_tracker/3529871140_Shiny.s_Resume.docx', NULL, '1', '2024-05-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 07:19:55', 1, '2024-05-07 07:44:16', 0, NULL, 1),
(18984, 'ASHRAF', '6', '8122529049', '', 'ashraf150396@gmail.com', '1996-03-15', 28, '2', '2', 'SYED MOHAMED', 'Logistics', 30000.00, 1, 0.00, 15000.00, 'No 302/c block brindavan Apartment cross road', 'No439/ 2 block voc nagar Chennai 81', '2405070042', '1', '1', 'upload_files/candidate_tracker/69854688348_Ashr Af (1) New(1).pdf', NULL, '1', '2024-05-08', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-07 07:45:14', 112, '2024-05-08 03:13:44', 0, NULL, 1),
(18985, 'Siva V', '13', '9003238988', '9176329502', 'siva100602@gmail.com', '2002-06-10', 21, '3', '2', 'Venkatesan', 'Building Construct', 20000.00, 3, 0.00, 180000.00, 'Chennai', 'Avadi', '2405070043', '', '1', 'upload_files/candidate_tracker/59524664459_siva resume.pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 08:01:24', 130, '2024-05-07 05:56:19', 0, NULL, 1),
(18986, 'D VIMALRAJ', '32', '9840455175', '', 'vraj.d90@gmail.com', '1991-01-16', 33, '1', '2', 'Nirmala', 'Home maker', 35.00, 1, 35000.00, 45000.00, 'No 6/32 Guhan Street Puliyurpuram Kodambakkam Ch', '40/43 Arocikayasamy Street Varadharajpet Ch', '2405070044', '', '2', 'upload_files/candidate_tracker/87488514752_Vimal_Resume_2023 updated (2) (1).docx', NULL, '1', '2024-05-07', 1, '55547', '3', '59', '2024-06-03', 460000.00, '', '1', '1970-01-01', '1', 'Selected by Gaurav Sir for Rejoining with the mentioned CTC also he has committed 25K as a con sultant pay before joining if tehre was a a 4L business', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '4', '1', '', '', '', '', '55579', '55560', '2024-06-03', 1, '2024-05-07 09:23:03', 130, '2024-06-20 03:34:32', 0, NULL, 1),
(18987, 'Imtienla Jati', '6', '9655330753', '', 'imtienlajamir96@gmail.com', '1996-05-17', 27, '2', '2', 'Kikamanen Jamir', 'Self Employed', 50000.00, 4, 0.00, 23000.00, 'Bangalore', 'Bangalore', '2405070045', '51', '1', 'upload_files/candidate_tracker/68163186543_Resume Cafs.pdf', NULL, '1', '2024-05-07', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'suggested ctc 19k confirm joining', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 09:28:05', 60, '2024-05-10 02:53:15', 0, NULL, 1),
(18988, 'Sugunadevi T', '13', '9360167707', '', 'suguna812002@gmail.com', '2002-01-08', 22, '3', '2', 'Thonthiappan', 'Farmer', 6000.00, 1, 0.00, 18000.00, 'Rajapalayam, VIRUDHUNAGAR', 'Saidapet, Chennai', '2405070046', '', '1', 'upload_files/candidate_tracker/59018275015_suguna__resume..pdf', NULL, '1', '2024-05-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-07 09:38:32', 130, '2024-05-07 05:58:56', 0, NULL, 1),
(18989, 'Sugumar R', '13', '9488300697', '', 'sugumar132001@gmail.com', '2001-03-13', 23, '3', '2', 'Rajagopal', 'Cooli', 6000.00, 1, 0.00, 18000.00, 'Tuticorin', 'Chennai', '2405070047', '', '1', 'upload_files/candidate_tracker/27649718673_CV_2024050713231564.pdf', NULL, '1', '2024-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 09:39:37', 1, '2024-05-07 09:44:13', 0, NULL, 1),
(18990, 'Divyasree U', '6', '9036003591', '9620679885', 'divyashreeu799100@gmail.com', '1997-07-24', 26, '2', '2', 'Umesh KD', 'Agriculture', 50000.00, 1, 25000.00, 25000.00, 'Kondligatta @post Tiptur taluk tumkur district', 'KR Puram', '2405070048', '39', '2', 'upload_files/candidate_tracker/88381353316_Divyasree U Resume (1) (1).pdf', NULL, '1', '2024-05-07', 0, '', '3', '59', '2024-05-21', 210000.00, '', '3', '2025-02-01', '2', 'Selected for Sathish Team in Relationship Executive role Need to analyse in 7 days no relevant Exp initially Manager rejected the profile and after several followups from candidate we have considered her profile for the analysis', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-05-07 09:56:13', 60, '2025-08-06 11:23:19', 0, NULL, 1),
(18991, 'Sudeep reddy', '5', '6305051417', '', 'sudeepreddy9876@gmail.com', '2002-07-27', 21, '3', '2', 'hari', 'bussiness', 60000.00, 1, 0.00, 25000.00, 'Bangalore', 'Bangalore', '2405070049', '', '1', 'upload_files/candidate_tracker/67257161091_sudeep reddy resume.pdf', NULL, '1', '2024-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 10:13:16', 1, '2024-05-07 10:21:39', 0, NULL, 1),
(18992, '', '0', '8056106416', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405070050', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-07 11:38:20', 0, NULL, 0, NULL, 1),
(18993, 'Kiran Singh Tharary', '8', '9365795812', '9365795811', 'kiransingh059@gmail.com', '1983-07-10', 40, '2', '2', 'Tanka Kumar Tharary', 'Contract', 7.00, 2, 280000.00, 400000.00, 'Assam, Dibrugarh', 'Gottegere, Bannerghatta Road', '2405070051', '49', '2', 'upload_files/candidate_tracker/52482035090_CV_smart.pdf', NULL, '1', '2024-05-08', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '2', '0', '2', '2', '0', '1', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-07 01:36:49', 1, '2024-05-07 01:46:40', 0, NULL, 1),
(18994, 'Janarthanan s', '6', '9941800514', '9003221910', 'janarthanans440@gmail.com', '2002-06-27', 21, '2', '2', 'A.selvakumar', 'Driver', 20000.00, 1, 0.00, 15000.00, 'No.87 vaithiyanadhan street tondiarpet Chennai', 'No.87 vaithiyanadhan street tondiarpet Chennai', '2405070052', '1', '1', 'upload_files/candidate_tracker/30302934363_JANARTHANAN RESUME NEW-1.pdf', NULL, '1', '2024-05-08', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-07 01:59:31', 112, '2024-05-08 03:16:06', 0, NULL, 1),
(18995, 'S KIRAN', '5', '9551546272', '', 'kiransmart141@gmail.com', '1995-11-10', 28, '2', '1', 'Mohana Priya', 'Insurance agent', 30000.00, 2, 18000.00, 25000.00, 'Chennai', 'Chennai', '2405070053', '1', '2', 'upload_files/candidate_tracker/4821297990_cv.docx', NULL, '3', '2024-05-08', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Please refix', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-05-07 02:03:37', 127, '2024-06-03 03:34:21', 0, NULL, 1),
(18996, 'melina rini m s', '13', '7094661636', '', 'melinarini9800@gmail.com', '2000-08-08', 23, '3', '2', 'sahaya louis', 'state goverment record clerk', 19000.00, 1, 0.00, 400000.00, 'trichy', 'chennai', '2405080001', '', '1', 'upload_files/candidate_tracker/23425508706_melina.pdf', NULL, '1', '2024-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-08 04:31:35', 1, '2024-05-08 05:08:14', 0, NULL, 1),
(18997, 'sattenapalli vasista sagar', '13', '7013419468', '7200029468', 'sattenapallivasistasagar@gmail.com', '2002-10-25', 21, '3', '2', 'srinivasa rao', 'police department', 70000.00, 1, 0.00, 500000.00, 'vijayawada', 'chennai', '2405080002', '', '1', 'upload_files/candidate_tracker/70925946748_resume vasista(1).pdf', NULL, '1', '2024-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-08 05:05:04', 1, '2024-05-08 05:13:59', 0, NULL, 1),
(18998, 'M Keerthi Raj', '31', '9025250019', '8056547055', 'rajkeerthi442@gmail.com', '2000-01-19', 24, '6', '2', 'V.Marimuthu', 'Retired pharmacist', 25000.00, 2, 0.00, 300000.00, 'Thanjavur', 'Velachery', '2405080003', '', '1', 'upload_files/candidate_tracker/17976865752_KEERTHI RAJ M (1).pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:09:08', 112, '2024-05-08 06:01:08', 0, NULL, 1),
(18999, 'Gowtham P', '31', '7010524194', '9003709570', 'gowthamhero2000@gmail.com', '2000-09-12', 23, '3', '2', 'K. Panjamoorthy', 'Formar', 25000.00, 4, 0.00, 300000.00, 'Cuddalore', 'Cuddalore', '2405080004', '', '1', 'upload_files/candidate_tracker/18857800567_Gowtham P-1.pdf', NULL, '1', '2024-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-08 05:09:36', 1, '2024-05-08 05:14:47', 0, NULL, 1),
(19000, 'Keerthi A', '6', '8431476454', '8861437580', 'keerthiashwini542@gmail.com', '2002-07-30', 21, '2', '2', 'Ambarish s', 'News paper agency', 30000.00, 2, 0.00, 20000.00, '8th cross ,1st main near govt school, venkatapura', '8th Cross ,1st Main Near Govt School ,venkatapura', '2405080005', '51', '1', 'upload_files/candidate_tracker/37869901352_ resume new (2).pdf', NULL, '1', '2024-05-08', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'confirm the joining and ctc', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:15:04', 131, '2024-05-10 02:49:29', 0, NULL, 1),
(19001, 'Azhagarsamy K', '31', '8925232180', '', 'azhagarsamy663@gmail.com', '2001-09-09', 22, '3', '2', 'Chinna mani', 'Domestic worker', 70000.00, 1, 0.00, 200000.00, 'Tansi Nagar, Velachery, chennai', 'Tansi Nagar, Velachery, chennai', '2405080006', '', '1', 'upload_files/candidate_tracker/13150863032_Azhagarsamy ReactJs Resume.pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:16:14', 112, '2024-05-08 06:02:42', 0, NULL, 1),
(19002, 'R.velmurugan', '31', '8428220601', '', 'Velmurugan22062001@gmail.com', '2001-06-22', 22, '3', '2', 'V.Ramakrishnana', 'Former', 48000.00, 1, 0.00, 15000.00, 'Thirunelveli', 'Thirunelveli', '2405080007', '', '1', 'upload_files/candidate_tracker/32286116553_velmurugan1 resume.pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:16:36', 112, '2024-05-08 06:01:40', 0, NULL, 1),
(19003, 'Kuppuraj s', '31', '9976319819', '', 'nskraj1988@gmail.com', '1988-05-06', 36, '6', '2', 'Sundarakumar', 'Farmer', 200000.00, 1, 12000.00, 15000.00, 'Vandavasi', 'Chennai', '2405080008', '', '2', 'upload_files/candidate_tracker/32497406906_Kuppuraj_CV.pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:28:29', 130, '2024-05-16 04:33:56', 0, NULL, 1),
(19004, 'lokesh', '31', '9176443966', '', 'lokeshvselvam@gmail.com', '2009-05-08', 0, '3', '2', 'senthil kumari', 'teacher', 300000.00, 1, 0.00, 25000.00, 'CHENNAI', 'CHENNAI', '2405080009', '', '1', 'upload_files/candidate_tracker/44565145465_ui&ux resume.pdf', NULL, '1', '2024-05-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-08 05:28:30', 1, '2024-05-08 05:33:41', 0, NULL, 1),
(19005, 'SUDHARSHANAN P N', '13', '8220662043', '', 'sudharshananj5@gmail.com', '1999-06-10', 24, '3', '2', 'nagarajan', 'job seeker', 65000.00, 0, 0.00, 20000.00, 'arur', 'velachery', '2405080010', '', '1', 'upload_files/candidate_tracker/87567941148_SUDHARSHANAN P N.pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:40:01', 112, '2024-05-08 06:02:58', 0, NULL, 1),
(19006, 'BALAGURU', '13', '8489360214', '9360218645', 'balagurus2002@gmail.com', '2002-10-12', 21, '3', '2', 'SASIKUMAR', 'Farmer', 30000.00, 1, 0.00, 18000.00, 'Tirupattur', 'St Thomas mount, Chennai', '2405080011', '', '1', 'upload_files/candidate_tracker/16734257717_NAUKRI_BALAGURU_S_1713839829519_BALAGURU S.pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:40:32', 130, '2024-05-16 04:33:30', 0, NULL, 1),
(19007, 'Keerthiga u', '13', '9962271932', '9962272932', 'Keerthigaudayakumar@gmail.com', '2003-04-07', 21, '3', '2', 'UdayaKumar L', 'TNEB', 50000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2405080012', '', '1', 'upload_files/candidate_tracker/6824885115_KeerthigaU-Frontend-Resume.pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:42:25', 112, '2024-05-08 06:00:43', 0, NULL, 1),
(19008, 'S shiny', '4', '7022646918', '7022646917', 'Shinyepsi96@gmail.com', '1996-07-23', 27, '3', '1', 'A Lawrence', 'Service engineer', 40000.00, 1, 0.00, 18000.00, 'No;6 15th main road 12th Cross kurubharahalli', 'No;6 15th Main Road 12th Cross kurubharahalli', '2405080013', '', '1', 'upload_files/candidate_tracker/45123936263_Shiny.s_Resume.docx', NULL, '1', '2024-05-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-08 05:43:41', 1, '2024-05-08 05:48:35', 0, NULL, 1),
(19009, '', '0', '8608745363', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405080014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-08 05:47:49', 0, NULL, 0, NULL, 1),
(19010, 'Akash', '13', '6381519454', '', 'tamilkaviakash@gmail.com', '2002-06-22', 21, '1', '2', 'Tamilarasan', 'Police', 30000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2405080015', '', '1', 'upload_files/candidate_tracker/58514469925_Akash resume (2).pdf', NULL, '1', '2024-05-08', 0, 'BT109', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:48:18', 112, '2024-05-08 06:03:15', 0, NULL, 1),
(19011, 'r manoj kiran', '13', '9080380487', '7299306863', 'manojkiran9080@gmail.com', '2001-09-15', 22, '3', '2', 'e ramesh', 'daily wages', 15000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2405080016', '', '1', 'upload_files/candidate_tracker/65316242973_Manoj.pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:49:25', 112, '2024-05-08 06:04:27', 0, NULL, 1),
(19012, 'Prabhusingh Raja', '31', '8870185210', '', 'rajaprabhusingh@gmail.com', '2000-12-19', 23, '3', '2', 'Abel Gnanadurai', 'Private', 50000.00, 3, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2405080017', '', '1', 'upload_files/candidate_tracker/58745114319_Resume React.pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:49:49', 130, '2024-05-16 04:18:37', 0, NULL, 1),
(19013, 'naveenkumar', '13', '8525911120', '', 'naveen1999.erd@gmail.com', '1999-07-15', 24, '3', '2', 'muthusamy', 'sewin machine mechanic', 20000.00, 1, 2.83, 3.00, 'erode', 'chennai', '2405080018', '', '2', 'upload_files/candidate_tracker/42025026782_NaveenkumarMuthusamy-1.pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:51:08', 130, '2024-05-17 05:52:48', 0, NULL, 1),
(19014, 'Kokila B', '6', '8122191163', '7358826353', 'kokii9172k@gmail.com', '2002-12-21', 21, '2', '1', 'Balaji H', 'Mechanic', 18000.00, 2, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2405080019', '1', '1', 'upload_files/candidate_tracker/40031103023_original .pdf', NULL, '1', '2024-05-08', 0, '', '3', '59', '2024-05-13', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Giri Raj Team in Consultant Role Sustainability doubts married Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-08 05:52:16', 60, '2024-05-11 06:42:02', 0, NULL, 1),
(19015, 'Surjith P', '31', '9003393417', '', 'mahindhiran005@gmail.com', '2000-07-05', 23, '3', '2', 'Periyasamy', 'Job Seeker', 14000.00, 1, 0.00, 20000.00, 'Erode', 'Chennai', '2405080020', '', '1', 'upload_files/candidate_tracker/95334019438_SurjithP.pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:52:32', 112, '2024-05-08 06:03:28', 0, NULL, 1),
(19016, 'Riyaz', '2', '6381190819', '', 'hriyaz1412@gmail.com', '1999-12-14', 24, '3', '2', 'Parveen begam (mother)', 'Departmental store (own bussiness)', 35000.00, 2, 0.00, 2.50, 'Karaikudi', 'Chennai', '2405080021', '', '1', 'upload_files/candidate_tracker/97080144914__Riyaz_Resume (6).pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 05:53:22', 112, '2024-05-08 06:05:07', 0, NULL, 1),
(19017, 'parameswari u', '6', '9789092167', '', 'paramu5621@gmail.com', '2000-04-14', 24, '2', '1', 'udhaya shankar', 'it dlf', 30000.00, 1, 0.00, 16000.00, 'chennai', 'chennai', '2405080022', '42', '1', 'upload_files/candidate_tracker/57411528382_PARAMESWARI.pdf', NULL, '1', '2024-05-08', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'rejected', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-08 05:53:42', 1, '2024-05-08 06:29:32', 0, NULL, 1),
(19018, 'Bharath Varadharaj', '2', '7010364908', '', 'bharathnin143@gmail.com', '2000-06-18', 23, '3', '2', 'parent', 'working', 20000.00, 1, 6.00, 6.00, 'chennai', 'chennai', '2405080023', '', '2', 'upload_files/candidate_tracker/78050489694_Bharath_MERN_Stack_Developer.pdf', NULL, '1', '2024-05-08', 30, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 06:08:53', 130, '2024-05-10 06:31:50', 0, NULL, 1),
(19019, 'Rajaraman', '2', '8667011736', '7845620416', 'rajapm183@gmail.com', '1997-03-18', 27, '3', '2', 'Panchanathan', 'Driver', 40000.00, 4, 20000.00, 30000.00, 'Nagapattinam', 'Erode', '2405080024', '', '2', 'upload_files/candidate_tracker/42874610808_Rajaraman.resume-1.pdf', NULL, '1', '2024-05-08', 10, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '4', '5', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 06:22:01', 112, '2024-05-08 06:04:49', 0, NULL, 1),
(19020, 'thanga tamil selvan', '2', '9361326063', '', 'selvanthangatamil@gmail.com', '2001-03-14', 23, '3', '2', 'seenivasagam', 'farmar', 15000.00, 1, 0.00, 200000.00, 'tenkasi', 'thiruninravur', '2405080025', '', '1', 'upload_files/candidate_tracker/60179897188_ThangaTamilSelvan_S_Resume.pdf', NULL, '1', '2024-05-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-08 06:35:19', 1, '2024-05-08 07:10:00', 0, NULL, 1),
(19021, 'Abdul Fashith', '6', '9442780454', '', 'bashith.mdu@gmail.com', '1999-10-18', 24, '2', '2', 'Nazeema banu', '7th', 10000.00, 1, 0.00, 15000.00, 'Karaikudi', 'Nungambakkam', '2405080026', '50', '1', 'upload_files/candidate_tracker/44955214797_abdul (2).pdf', NULL, '1', '2024-05-08', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking Nonvoice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 06:47:50', 112, '2024-05-08 12:23:56', 0, NULL, 1),
(19022, 'sasiraman s', '31', '8838503076', '', 'sasiraman40@gmail.com', '2001-07-12', 22, '4', '2', 'sakthi', 'police', 30000.00, 1, 0.00, 400000.00, 'CHENGALPATTU', 'CHENGALPATTU', '2405080027', '', '1', 'upload_files/candidate_tracker/39616911095_Sasiraman.pdf.pdf', NULL, '1', '2024-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-08 07:43:33', 1, '2024-05-08 07:46:15', 0, NULL, 1),
(19023, 'Naresh Balaji S', '13', '9943933266', '6374427066', 'skmnaresh02@gmail.com', '2002-02-02', 22, '3', '2', 'Senthil Kumar M', 'Civil Engineer', 12000.00, 0, 0.00, 300000.00, 'Coimbatore', 'Chennai', '2405080028', '', '1', 'upload_files/candidate_tracker/75685916013_DOC-20240508-WA0008..pdf', NULL, '1', '2024-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 07:44:35', 130, '2024-05-16 04:32:57', 0, NULL, 1),
(19024, 'Mark Richard', '13', '9629211515', '', 'markrichmark2003@gmail.com', '2009-05-08', 0, '3', '2', 'Mohan Senthil Kumar', 'Business man', 30000.00, 1, 0.00, 400000.00, 'Tirupur', 'Tirupur', '2405080029', '', '1', 'upload_files/candidate_tracker/57088468893_Mark Resume--l.pdf', NULL, '1', '2024-05-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-08 07:44:37', 1, '2024-05-08 07:46:50', 0, NULL, 1),
(19025, 'Kiran Singh Tharary', '8', '9365795811', '8822536393', 'kiransingh059@gmail.com', '1983-07-10', 40, '2', '2', 'Tanka Kumar Tharary', 'Contractor', 7.00, 2, 280000.00, 1.50, 'Assam, Dibrugarh', 'Gottegere, Bannerghatta Road', '2405080030', '49', '2', 'upload_files/candidate_tracker/43686568060_CV_smart.pdf', NULL, '1', '2024-05-08', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-08 09:29:59', 1, '2024-05-08 09:34:10', 0, NULL, 1),
(19026, 'SREEJITH BABU', '5', '7012129101', '8138914285', 'bsreejithbabu@gmail.com', '1995-06-14', 28, '2', '2', 'BABU A', 'CARPENTER', 40000.00, 1, 25000.00, 30000.00, 'TRIVANDRUM', 'TRIVANDRUM', '2405080031', '47', '2', 'upload_files/candidate_tracker/40769764139_sreejith Resume 2024 final-1.pdf', NULL, '3', '2024-05-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate looking for Operation Role only and he is not open to handle the target he is not interested in this', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 10:43:31', 60, '2024-05-21 06:41:28', 0, NULL, 1),
(19027, '', '0', '7358277730', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405080032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-08 11:21:56', 0, NULL, 0, NULL, 1),
(19028, 'Mahendra p', '5', '8296888289', '8095769969', 'mahendramahi0486@gmail.com', '2001-11-18', 22, '2', '2', 'Chennamma', 'Cooking', 15000.00, 1, 0.00, 20000.00, 'Basvangudi', 'Basvangudi', '2405080033', '47', '1', 'upload_files/candidate_tracker/87104272920_Mahendra Job Resume.pdf', NULL, '1', '2024-05-15', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lagging with communication and confident', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-08 12:12:16', 126, '2024-05-15 10:31:46', 0, NULL, 1),
(19029, 'R.gopi', '32', '9676115396', '6301516873', 'gopi9000173715@gmail.com', '2003-06-25', 20, '2', '2', 'R.raju', 'Farmer', 10000.00, 1, 15700.00, 20000.00, 'bangalore', 'bangalore', '2405080034', '1', '2', 'upload_files/candidate_tracker/71327708852_Gopi resume.pdf', NULL, '1', '2024-05-09', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'suggested ctc 18k experince in star health last 7months', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-05-08 01:15:15', 60, '2024-05-10 07:10:32', 0, NULL, 1),
(19030, 'Anusiya V', '11', '8925353380', '', 'anusiyanu11@gmail.com', '2001-11-28', 22, '2', '1', 'Karthik', 'HRBP', 100000.00, 1, 0.00, 300000.00, 'Chennai City Central', 'Chennai City Central', '2405080035', '1', '1', 'upload_files/candidate_tracker/15709067065_Anusiya V - CV.pdf', NULL, '1', '2024-05-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-08 01:29:46', 104, '2024-05-09 09:55:08', 0, NULL, 1),
(19031, '', '0', '8826288258', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405080036', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-08 06:49:23', 0, NULL, 0, NULL, 1),
(19032, 'Gayathri', '11', '8270693442', '', 'gayu.san2000@gmail.com', '2000-10-08', 23, '2', '2', 'N.Sankar', 'Farmer', 25000.00, 1, 0.00, 25000.00, 'Pudukkottai', 'Sholinganallur', '2405090001', '1', '1', 'upload_files/candidate_tracker/49198227849_Gayathri Sankar -Resume-final.PDF', NULL, '1', '2024-05-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-09 01:51:07', 104, '2024-05-09 09:55:29', 0, NULL, 1),
(19033, 'Bharathi k', '31', '9677616494', '', 'bharathimailbox98@gmail.com', '1998-01-12', 26, '1', '1', 'Chittrarasu v', 'Elevator service engineer', 40000.00, 2, 0.00, 25000.00, 'Thirukazhukundram, Chengalpattu', 'Thirukazhukundram', '2405090002', '', '1', 'upload_files/candidate_tracker/31350181640_Bharathi_finalllFullstack_python_2018_BCA.pdf.pdf', NULL, '1', '2024-05-09', 0, '7047', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 04:22:47', 112, '2024-05-09 10:32:32', 0, NULL, 1),
(19034, 'Nandhakumar', '13', '8148606360', '9841727110', 'nandhakumarit2023@gmail.com', '2001-06-05', 22, '3', '2', 'Sankar', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Cheyyar', 'Chennai', '2405090003', '', '1', 'upload_files/candidate_tracker/1736387255_Nandha0108.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 04:38:50', 130, '2024-05-09 04:37:44', 0, NULL, 1),
(19035, 'Kishore j', '13', '8608064960', '7845164960', 'Kishorevilla001@gmail.com', '1992-10-15', 31, '4', '1', 'Jaganathan', 'Real estate', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2405090004', '', '1', 'upload_files/candidate_tracker/15668480080_Resume (2).docx', NULL, '1', '2024-05-09', 0, '', '5', '', '2024-05-09', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 04:38:52', 130, '2024-05-17 05:52:18', 0, NULL, 1),
(19036, 'Sankar P', '13', '8695356884', '', 'psa4sankar24@gmail.com', '1997-06-17', 26, '3', '2', 'Periyasamy A', 'Daily Wages', 10000.00, 3, 0.00, 400000.00, 'Salem', 'Salem', '2405090005', '', '1', 'upload_files/candidate_tracker/86849774482_Sankar_WebDevelopment.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 04:42:24', 130, '2024-05-09 04:22:02', 0, NULL, 1),
(19037, 'Sridevi K', '13', '7708179359', '', 'sridevikrishna1207@gmail.com', '2009-05-09', 0, '3', '2', 'P.Krishnamoorthy', 'Farmer', 15000.00, 1, 0.00, 200000.00, 'Cuddalore', 'Chennai', '2405090006', '', '1', 'upload_files/candidate_tracker/69525640379_SRIDEVI K---2022---RESUME.pdf', NULL, '1', '2024-05-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 05:06:59', 1, '2024-05-09 05:11:00', 0, NULL, 1),
(19038, 'Munuswamy M', '31', '9444664958', '', 'munu.gvn1999@gmail.com', '1999-06-15', 24, '3', '2', 'Munirathinam', 'Formar', 20000.00, 0, 0.00, 20000.00, 'Thiruvalluar', 'Thiruvallur', '2405090007', '', '1', 'upload_files/candidate_tracker/31917867446_Munuswamy - 2019-java Full Stack_240509_104749.pdf', NULL, '1', '2024-05-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 05:07:28', 1, '2024-05-09 05:19:07', 0, NULL, 1),
(19039, 'Ashwin S', '31', '9840370400', '8939366889', 'ashwinashwin9993@gmail.com', '2003-04-05', 21, '3', '2', 'Shankar', 'Auto driver', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405090008', '', '1', 'upload_files/candidate_tracker/23745088190_ASHWIN B.COM Fresher.pdf', NULL, '1', '2024-05-09', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:07:49', 130, '2024-05-09 04:23:02', 0, NULL, 1),
(19040, 'Kavin P', '13', '9500308852', '8124947358', 'kavinp912@gmail.com', '2002-12-09', 21, '3', '2', 'Ponmudi S', 'Company Staff', 15000.00, 0, 0.00, 200000.00, 'Tirupur', 'Tirupur', '2405090009', '', '1', 'upload_files/candidate_tracker/83712187229_KAVIN P-Resume.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:09:50', 130, '2024-05-09 04:38:51', 0, NULL, 1),
(19041, 'Balamurugan', '4', '7558160064', '', 'bala10052002@gmail.com', '2002-05-10', 21, '2', '2', 'Balraj', 'Farmer', 10000.00, 2, 0.00, 18000.00, 'Papanasam', 'Papanasam', '2405090010', '1', '1', 'upload_files/candidate_tracker/64204950932_bala-res.pdf', NULL, '1', '2024-05-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-09 05:10:36', 127, '2024-05-09 06:23:38', 0, NULL, 1),
(19042, 'Praveen E', '31', '9360285114', '', 'praveeneswaran31@gmail.com', '2001-07-31', 22, '3', '2', 'Eswaran S', 'Farmer', 15000.00, 1, 0.00, 3.50, 'Kallakurichi', 'Chennai', '2405090011', '', '1', 'upload_files/candidate_tracker/52806125171_R1.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:17:23', 130, '2024-05-09 04:38:18', 0, NULL, 1),
(19043, 'Akshya U', '23', '8903799772', '', 'akshyau9@gmail.com', '2001-07-29', 22, '3', '2', 'Ugrappa', 'Farmer', 20000.00, 1, 0.00, 300000.00, 'Haleseebam, hosur, Krishnagiri', 'Chennai', '2405090012', '', '1', 'upload_files/candidate_tracker/5094038859_Akshya resume.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:18:12', 130, '2024-05-09 04:39:14', 0, NULL, 1),
(19044, 'Sam Chriswin E', '13', '9080189858', '', 's.chriswin2003@gmail.com', '2003-04-29', 21, '3', '2', 'Emmanuel Babu', 'Self employed', 30000.00, 0, 0.00, 400000.00, 'No 7, Spider Palanisamy nagar, Tirupur.', 'No 7, spider Palanisamy Nagar, Tirupur.', '2405090013', '', '1', 'upload_files/candidate_tracker/28455029621_samchriswin resume1.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:18:47', 130, '2024-05-16 04:30:47', 0, NULL, 1),
(19045, 'Vadivel', '2', '8870783511', '9597799914', 'jvadivel.1996@gmail.com', '2009-05-09', 0, '3', '2', 'Sivagami J', 'Teacher', 500000.00, 2, 0.00, 15000.00, 'Tiruvannamalai', 'Chennai', '2405090014', '', '1', 'upload_files/candidate_tracker/30735480938_Resume_Vadivel_03_2024.pdf', NULL, '1', '2024-05-09', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:19:38', 130, '2024-05-09 04:17:26', 0, NULL, 1),
(19046, 'Hariharan I', '31', '8838135728', '8300719289', 'harishpoo25@gmail.com', '2000-07-30', 23, '3', '2', 'Ilango K', 'Teacher', 70000.00, 1, 0.00, 20000.00, 'Nambiyur', 'Nambiyur', '2405090015', '', '1', 'upload_files/candidate_tracker/19021081366_RESUME (2)-2.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:26:39', 130, '2024-05-16 04:31:53', 0, NULL, 1),
(19047, 'Pranav Barathi S', '11', '9698698687', '7339595057', 'pranavbarathi254@gmail.com', '2001-07-02', 22, '2', '2', 'Subramanian', 'Business', 700000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2405090016', '1', '1', 'upload_files/candidate_tracker/27361745223_PRANAV Barathi S MSW Resume _20240410_151614_0000.pdf', NULL, '1', '2024-05-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-09 05:31:52', 104, '2024-05-09 01:24:20', 0, NULL, 1),
(19048, 'oviyen', '13', '9360137445', '9361212163', 'oviyennagarajan@gmail.com', '2002-07-21', 21, '3', '2', 'nagarajan', 'auto river', 25000.00, 1, 0.00, 300000.00, 'vandalur', 'vandalur', '2405090017', '', '1', 'upload_files/candidate_tracker/55617187264_OVIYEN NAGARAJAN RESUME.pdf', NULL, '1', '2024-05-09', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:38:00', 112, '2024-05-09 05:03:20', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19049, 'Naveen P', '13', '6383168289', '', 'cemcanaveen23@gmail.com', '2001-08-25', 22, '3', '2', 'Panneerselvam', 'Salesman', 20000.00, 4, 0.00, 20000.00, '50A12 Gandhi Nagar Velandi Valasu Idappadi, Salem', '50A12 Gandhi Nagar Velandi Valasu,Idappadi,Salem', '2405090018', '', '1', 'upload_files/candidate_tracker/99220162365_Naveenresume_MCA_2024.pdf', NULL, '1', '2024-05-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 05:38:09', 1, '2024-05-09 05:42:37', 0, NULL, 1),
(19050, 'Sivaranganathan K', '13', '8610368039', '7373993401', 'cemcasivaranganathan23@gmail.com', '2001-02-26', 23, '3', '2', 'Krishnan P', 'Weaving', 12000.00, 1, 0.00, 200000.00, '76/3 vallalar Kovil back side Rasipuram, Namakkal', 'Velachery, Chennai 600042', '2405090019', '', '1', 'upload_files/candidate_tracker/39360322787_sivaranganathan k resume 2024.pdf', NULL, '1', '2024-05-09', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:38:40', 130, '2024-05-09 04:13:21', 0, NULL, 1),
(19051, 'mohammed syed nihar', '13', '8667400567', '9443935605', 'sayedsyed8812@gmail.com', '1995-11-08', 28, '3', '2', 'banu', 'housewife', 15000.00, 1, 0.00, 20000.00, 'tirunelveli', 'chennai', '2405090020', '', '1', 'upload_files/candidate_tracker/3729228334_Modern Minimalist CV Resume (1).pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:40:06', 130, '2024-05-16 04:23:52', 0, NULL, 1),
(19052, 'P.BRINDHA', '34', '9345543131', '9442696282', 'brindha.pillai2001@gmail.com', '2001-12-10', 22, '3', '2', 'pichaipillai', 'Farmer', 60000.00, 1, 0.00, 3.50, 'Tittagudi', 'Chennai', '2405090021', '', '1', 'upload_files/candidate_tracker/93497587402_P.Brindha 9345543131.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:43:42', 130, '2024-05-09 04:41:33', 0, NULL, 1),
(19053, 'Jagaveerapandiyan', '13', '9344173959', '', 'jagajj001@gmail.com', '2001-05-23', 22, '3', '2', 'Jayaraman', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Thanjavur', 'Tambaram', '2405090022', '', '1', 'upload_files/candidate_tracker/92962149067_jaga.resume.pdf (1).pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:43:43', 130, '2024-05-09 04:42:25', 0, NULL, 1),
(19054, 'V Yadhu Krishna Yadav', '5', '9632911580', '8884475892', 'yadhukrishnayadav397@gmail.com', '2001-12-14', 22, '3', '2', 'vsharadamma', 'section officer high court of karnataka', 200000.00, 2, 0.00, 25.00, 'kr puram bengaluru', 'Kr Puram Bengaluru', '2405090023', '', '1', 'upload_files/candidate_tracker/45883941775_Yadhu Krishna Resume.pdf', NULL, '1', '2024-05-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 05:48:31', 1, '2024-05-09 05:54:33', 0, NULL, 1),
(19055, 'Archana K', '23', '9788883405', '9788883406', 'archanakumar2002.20.02@gmail.com', '2002-02-20', 22, '3', '2', 'Kumar R', 'Carpenter', 40000.00, 1, 0.00, 15000.00, 'kallakurichi', 'kallakurichi', '2405090024', '', '1', 'upload_files/candidate_tracker/88264247561_Archana_20.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:52:04', 130, '2024-05-09 04:40:10', 0, NULL, 1),
(19056, 'Deepa K', '23', '9943908798', '6379102362', 'deepakrishnan7799@gmail.com', '2002-09-20', 21, '3', '2', 'T.Krishnakumar', 'Machine Operator', 70000.00, 1, 0.00, 2.00, 'Chennai', 'Chennai', '2405090025', '', '1', 'upload_files/candidate_tracker/49812661741_Deepa.K_JavaFullStack.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:54:08', 130, '2024-05-16 04:31:06', 0, NULL, 1),
(19057, 'Abishek S', '13', '9600753510', '9576432930', 'abisheksekar28@gmail.com', '2000-02-09', 24, '3', '2', 'Sekar', 'Shop keeper', 15000.00, 1, 0.00, 320000.00, 'Nagercoil', 'Chennai', '2405090026', '', '1', 'upload_files/candidate_tracker/16100800155_abishek_2024_28.pdf', NULL, '1', '2024-05-09', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 05:59:03', 130, '2024-05-09 04:14:13', 0, NULL, 1),
(19058, 'Aslin dhas. T', '13', '9677080712', '', 'Aslindhas613@gmail.com', '2001-04-10', 23, '3', '2', 'G.latha', 'Daily wager', 6500.00, 2, 0.00, 15000.00, 'Nagercoil', 'Padi', '2405090027', '', '1', 'upload_files/candidate_tracker/51815625697_Aslindhas.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 06:13:05', 130, '2024-05-09 04:40:46', 0, NULL, 1),
(19059, 'ABINESH', '13', '7806867806', '', 'abineshabi7806@gmail.com', '2001-09-25', 22, '3', '2', 'Bavani', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Nagercoil', 'Padi', '2405090028', '', '1', 'upload_files/candidate_tracker/25691877480_ABINESH-resume (1).pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 06:14:33', 130, '2024-05-09 04:41:09', 0, NULL, 1),
(19060, 'Punitha G', '11', '7550383587', '', 'punithagopal2606@gmail.com', '2002-06-26', 21, '2', '2', 'Gopal R', 'Teacher', 50000.00, 1, 0.00, 20000.00, 'Trichy', 'Ponnamalle', '2405090029', '1', '1', 'upload_files/candidate_tracker/73639922413_Punitha New Resume .pdf', NULL, '1', '2024-05-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-09 06:24:21', 104, '2024-05-09 01:25:28', 0, NULL, 1),
(19061, 'logeshwaran j', '31', '9080534099', '9943852829', 'logeshsunder07@gmail.com', '2000-11-11', 23, '3', '2', 'jayaraman', 'driver', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2405090030', '', '1', 'upload_files/candidate_tracker/2498546927_Logeshwaran-J cv.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 06:26:14', 130, '2024-05-16 04:27:26', 0, NULL, 1),
(19062, 'Arun Prakash T', '13', '6380797381', '8610987579', 'arunprakasht52@gmail.com', '2000-07-27', 23, '3', '2', 'Thangaprakasam', 'Farmer', 10000.00, 1, 0.00, 500000.00, 'Pudukkottai', 'Chennai', '2405090031', '', '1', 'upload_files/candidate_tracker/18745119792_Resume1.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 06:33:31', 130, '2024-05-09 04:41:57', 0, NULL, 1),
(19063, 'Sivalingam E', '5', '7092423095', '8072231898', 'sivadavid1999@gmail.com', '1999-11-06', 24, '2', '2', 'Elumalai', 'Painter', 12000.00, 2, 360000.00, 400000.00, 'Chennai', 'Chennai', '2405090032', '1', '2', 'upload_files/candidate_tracker/18340029266_Sivalingam 2024 Professional Resume.pdf', NULL, '1', '2024-05-09', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-09 06:35:31', 112, '2024-05-09 04:05:41', 0, NULL, 1),
(19064, 'Roshan Agthar.A', '13', '8531094229', '8438654229', 'roshanagthar4@gmail.com', '2002-11-16', 21, '3', '2', 'Abdul Rahman.A', 'Electrician', 35000.00, 2, 0.00, 250000.00, 'Kumbakonam', 'Chennai', '2405090033', '', '1', 'upload_files/candidate_tracker/7895259826_Roshan.pdf', NULL, '1', '2024-05-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 06:38:18', 1, '2024-05-09 07:03:56', 0, NULL, 1),
(19065, 'Sheik muzamil', '13', '7550145017', '', 'sheikmuzamil007@gmail.com', '2001-10-29', 22, '3', '2', 'Peer mohideen', 'Self employment', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2405090034', '', '1', 'upload_files/candidate_tracker/2461925282_SHEIK MUZAMIL (1).pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 06:54:42', 130, '2024-05-09 04:33:43', 0, NULL, 1),
(19066, '', '0', '9444478470', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405090035', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-09 06:55:43', 0, NULL, 0, NULL, 1),
(19067, 'Priyanka.R', '13', '6374929379', '9710186507', 'Priyankaravichandran1112@gmail.com', '2002-10-12', 21, '3', '2', 'Ravichandran', 'Business', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405090036', '', '1', 'upload_files/candidate_tracker/95164434040_PRIYANKA R CV-2.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 06:55:48', 130, '2024-05-09 04:35:48', 0, NULL, 1),
(19068, 'Boopathi', '13', '9442599022', '', 'boopathi1699@outlook.com', '1999-06-01', 24, '3', '2', 'Krishnan', 'farmer', 10000.00, 1, 0.00, 20000.00, 'DHARMAPURI', 'chennai', '2405090037', '', '1', 'upload_files/candidate_tracker/10215256976_Boopathi.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 06:55:50', 130, '2024-05-09 04:34:34', 0, NULL, 1),
(19069, 'Sarath kumar p', '13', '9843719324', '', 'sarathkumar9362@gmail.com', '2001-01-02', 23, '3', '2', 'Pandiyan', 'Farmer', 30000.00, 2, 0.00, 250000.00, 'Arakkonam', 'Arakkonam', '2405090038', '', '1', 'upload_files/candidate_tracker/79199951665_BE SARATH.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 06:56:01', 130, '2024-05-09 04:35:00', 0, NULL, 1),
(19070, 'Sakthi sekar', '13', '9025499199', '9941089956', 'sakthikahi007@gmail.com', '2001-08-28', 22, '3', '2', 'Sekar b', 'Black smith', 45000.00, 1, 0.00, 20000.00, '2/1227 housing board ,tirur, sevvapet road', '2/1227 housing board ,tirur,sevvapet road', '2405090039', '', '1', 'upload_files/candidate_tracker/98203640919_Sakthireo.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 06:56:20', 130, '2024-05-09 04:28:47', 0, NULL, 1),
(19071, 'Janakiraman R', '13', '7550156937', '', 'ramanjanaki777@gmail.com', '1998-10-29', 25, '3', '2', 'Chithra c', 'Housekeeping', 15000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2405090040', '', '1', 'upload_files/candidate_tracker/97253516924_Janakiraman-1.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 06:56:33', 130, '2024-05-09 04:33:08', 0, NULL, 1),
(19072, 'Kamesh.A', '13', '6369042415', '9003963858', 'kameshak232000@gmail.com', '2000-03-23', 24, '3', '2', 'Father\'s name : Annadurai .C', 'Welder', 20000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2405090041', '', '1', 'upload_files/candidate_tracker/61023549293_Kamesh JD.pdf', NULL, '1', '2024-05-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 06:56:54', 1, '2024-05-09 07:07:48', 0, NULL, 1),
(19073, 'Arvind JS', '13', '6369985030', '', 'arvindjs2002@gmail.com', '2009-05-09', 0, '3', '2', 'Jayachandran k', 'Former', 20000.00, 1, 0.00, 25000.00, 'Thiruvannamalai', 'Chennai, T Nagar', '2405090042', '', '1', 'upload_files/candidate_tracker/27928783227_Arvind JS-4.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 06:57:06', 130, '2024-05-09 04:34:12', 0, NULL, 1),
(19074, 'Udhayakumar s', '13', '8925266096', '9962487578', 'udhkumar007@gmail.com', '2003-06-26', 20, '3', '2', 'Sivakumar', 'Auto driver', 15000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2405090043', '', '1', 'upload_files/candidate_tracker/11598549223_Udhaya+Kumar+s+2003-1.pdf', NULL, '1', '2024-05-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 07:03:08', 1, '2024-05-09 07:06:11', 0, NULL, 1),
(19075, 'devashree', '6', '9884204149', '8667722711', 'devashree15201@gmail.com', '2001-02-15', 23, '2', '2', 'govindharajan', 'tylor', 9000.00, 1, 0.00, 18000.00, 'tondiarpet', 'tondiarpet', '2405090044', '29', '1', 'upload_files/candidate_tracker/69327760604_Devashree Resume 2001.pdf', NULL, '1', '2024-05-10', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested for sales xxamp voice process job,she looking for non voice process  like data entry.. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 07:05:33', 112, '2024-05-10 03:05:45', 0, NULL, 1),
(19076, 'A.selvaprakash', '13', '9894249986', '7708256647', 'selvaprakash.joe@gmail.com', '1999-12-04', 24, '3', '2', 'Annammal', 'House wife', 15000.00, 2, 0.00, 200000.00, 'Chennai', 'Duraipaakam', '2405090045', '', '1', 'upload_files/candidate_tracker/85828256343_Selvaprakash CV.pdf', NULL, '1', '2024-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '1', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 07:17:13', 130, '2024-05-09 04:48:24', 0, NULL, 1),
(19077, '', '0', '9566220910', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405090046', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-09 07:18:56', 0, NULL, 0, NULL, 1),
(19078, 'Vaddi pavan kumar reddy', '33', '9014546297', '', 'pavankumarr518@gmail.com', '2001-07-24', 22, '2', '2', 'Vaddi gopal Reddy', 'Farmer', 25000.00, 2, 15000.00, 20000.00, 'Talamarla', 'Singasandra', '2405090047', '1', '2', 'upload_files/candidate_tracker/44285430523_Document from Pavan kumar Reddy.pdf', NULL, '1', '2024-05-11', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, 'H1023', '0', NULL, NULL, NULL, 1, '2024-05-09 07:19:09', 1, '2024-05-09 07:37:10', 0, NULL, 1),
(19079, '', '0', '6383343065', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405090048', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-09 07:45:42', 0, NULL, 0, NULL, 1),
(19080, '', '0', '7867831668', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405090049', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-09 08:04:22', 0, NULL, 0, NULL, 1),
(19081, 'Hari krishnan', '13', '9003218384', '', 'yogih4562@gmail.com', '2003-07-02', 20, '4', '2', 'Penchalaiah b', 'Supervisor', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405090050', '', '1', 'upload_files/candidate_tracker/56690887784_HARI RESUME.pdf', NULL, '1', '2024-05-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 08:17:20', 1, '2024-05-09 09:22:28', 0, NULL, 1),
(19082, 'pradeep', '13', '7358636905', '9840741376', 'pradeeptamil6@gmail.com', '2001-06-06', 22, '1', '2', 'tamildhasan', 'civil engineer', 200000.00, 1, 0.00, 400000.00, 'chennai', 'kknagar', '2405090051', '', '1', 'upload_files/candidate_tracker/57617716938_pradeep.pdf', NULL, '2', '2024-05-13', 0, 'nil', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 08:40:31', 1, '2024-05-09 08:44:07', 0, NULL, 1),
(19083, 'Stalin.S', '13', '7339251876', '8124707682', 'stalinavin10@gmail.com', '2000-10-10', 23, '3', '2', 'Bala Suyamathi', 'Daily wages', 12000.00, 1, 0.00, 18000.00, 'Tirunelveli', 'Chennai', '2405090052', '', '1', 'upload_files/candidate_tracker/40719821342_my resume.pdf', NULL, '1', '2024-05-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 09:13:54', 1, '2024-05-09 09:19:27', 0, NULL, 1),
(19084, 'Sugumar R', '13', '7708400697', '7598865294', 'sugumar200113@gmail.com', '2001-03-13', 23, '3', '2', 'Sundari', 'Cooli', 6000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2405090053', '', '1', 'upload_files/candidate_tracker/45694598984_Sugumar.pdf', NULL, '1', '2024-05-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 09:14:16', 1, '2024-05-09 09:20:10', 0, NULL, 1),
(19085, 'Vasanth Kumar I', '13', '9962370216', '8072280490', 'vasanthofficial05@gmail.com', '2001-04-27', 23, '3', '2', 'T.Iyappan', 'Cooli', 72000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2405090054', '', '1', 'upload_files/candidate_tracker/89429149963_CV_2024042418262858.pdf', NULL, '1', '2024-05-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 09:15:40', 1, '2024-05-09 09:19:45', 0, NULL, 1),
(19086, '', '0', '9392723093', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405090055', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-09 09:27:28', 0, NULL, 0, NULL, 1),
(19087, 'V Yadhu Krishna Yadav', '5', '8884475892', '', 'yadhukrishnayadav397@gmail.com', '2001-12-14', 22, '2', '2', 'v sharadamma', 'section officer', 200000.00, 2, 0.00, 25000.00, 'krpuram Bangalore', 'kr puram bangalore', '2405090056', '39', '1', 'upload_files/candidate_tracker/2658069633_Yadhu Krishna Resume.pdf', NULL, '1', '2024-05-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 09:39:28', 1, '2024-05-09 09:47:28', 0, NULL, 1),
(19088, 'santhiya k', '6', '9342046447', '', 'santhiyakasi6@gmail.com', '2004-05-07', 20, '3', '2', 'kasi j', 'farmer', 18000.00, 3, 0.00, 15000.00, 'thiruvanamali', 'chennai', '2405090057', '', '1', 'upload_files/candidate_tracker/5999113971_Santhiya.pdf', NULL, '1', '2024-05-09', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 09:50:05', 1, '2024-05-09 10:21:43', 0, NULL, 1),
(19089, 'ajith c', '6', '6380553349', '9884492689', 'ajiaajith14@gmail.com', '1997-10-07', 26, '1', '2', 'sujatha', 'working', 25000.00, 1, 18000.00, 23000.00, 'thiruveedi amman kovil street amjaikarai', 'villiwakkam', '2405090058', '', '2', 'upload_files/candidate_tracker/55444783651_Resume Ajith (1).pdf', NULL, '1', '2024-05-09', 0, '123', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'previous exp is call process but not sales , but good communication skill, previous  ctc is 18k but not proper reliving and no profe so exp ctc is 18k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 10:45:01', 127, '2024-05-09 06:30:53', 0, NULL, 1),
(19090, 'oviyen', '13', '9360127445', '9361212162', 'oviyennagarajan@gmail.com', '2002-07-21', 21, '3', '2', 'nagarajan', 'auto driver', 20000.00, 1, 0.00, 250000.00, 'vandalur', 'vandalur', '2405090059', '', '1', 'upload_files/candidate_tracker/74805214842_OVIYEN NAGARAJAN RESUME.pdf', NULL, '1', '2024-05-09', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-09 11:05:20', 127, '2024-05-09 06:33:13', 0, NULL, 1),
(19091, 'Akash KV', '13', '8428443343', '', 'kvakash1112@gmail.com', '2000-12-11', 23, '4', '2', 'Hemavathy K', 'House wife', 50000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2405090060', '', '1', 'upload_files/candidate_tracker/65229397755_Akash KV.pdf (1).pdf', NULL, '1', '2024-05-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-09 11:13:52', 1, '2024-05-09 11:17:01', 0, NULL, 1),
(19092, 'SUVATHESWARAN S', '11', '9342295451', '', 'eswares141@gmail.com', '2002-12-15', 21, '2', '2', 'Sudha s', 'Jr assistant', 540000.00, 1, 0.00, 15000.00, '12-6-29A Nilakottai Dindigul dt', 'Vadapalni Chennai', '2405090061', '1', '1', 'upload_files/candidate_tracker/16466912116_suvatheswaran s (1) (1).pdf.pdf', NULL, '1', '2024-05-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-09 12:44:10', 104, '2024-05-10 10:21:05', 0, NULL, 1),
(19093, 'Maheshwari Karikalan', '11', '8939474674', '', 'maheshwariissm@gmail.com', '2000-10-22', 23, '2', '2', 'Karikalan K', 'X-Army', 23000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2405090062', '1', '1', 'upload_files/candidate_tracker/95347026440_Maheshwari Karikalan HR Resume.pdf', NULL, '1', '2024-05-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-09 04:56:21', 104, '2024-05-10 01:31:54', 0, NULL, 1),
(19094, 'Pavithradevi', '5', '6385730485', '8610425033', 'Mpavithra85506@gmail.com', '1999-06-20', 24, '2', '2', 'Tamil', 'Kvb bank', 50000.00, 1, 18000.00, 20000.00, 'Coimbatore', 'Chennai ekkatuthangal', '2405100001', '50', '2', 'upload_files/candidate_tracker/73894398604_pavi (1) (1).docx', NULL, '1', '2024-05-10', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Attended', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 04:15:11', 112, '2024-05-10 01:34:34', 0, NULL, 1),
(19095, 'Raman', '13', '6385394688', '6382034688', 'raman2442023@gmail.com', '2002-11-02', 21, '3', '2', 'Rajamani', 'Farmers', 20000.00, 2, 0.00, 300000.00, 'Dharmapuri', 'Dharmapuri', '2405100002', '', '1', 'upload_files/candidate_tracker/64317299427_Raman_Resume.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 04:25:12', 130, '2024-05-16 04:32:22', 0, NULL, 1),
(19096, 'Subhashini M', '13', '8754945616', '9943326945', 'Msubhasurya98@gmail.com', '1998-10-11', 25, '3', '2', 'Manimuthu S', 'Private sector employee', 25000.00, 1, 0.00, 20000.00, 'Trichy', 'Sholinganallur', '2405100003', '', '1', 'upload_files/candidate_tracker/38477207764_Subhashini.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 04:33:27', 130, '2024-05-10 06:16:38', 0, NULL, 1),
(19097, 'Stephen Devapriyan Abraham', '13', '9566124208', '9677181444', 'stephendevapriyan24@gmail.com', '1998-05-24', 25, '3', '2', 'Abraham', 'Car driver', 10000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2405100004', '', '1', 'upload_files/candidate_tracker/9713068852_Stephen.pdf', NULL, '1', '2024-05-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-10 05:00:58', 1, '2024-05-10 05:09:07', 0, NULL, 1),
(19098, 'Vigneshwaran', '13', '9626960641', '8754926825', 'vigneshwarans.info07@gmail.com', '2002-04-19', 22, '3', '2', 'M.Selvarasu', 'Framer', 20000.00, 1, 0.00, 200000.00, 'Tittagudi', 'Thoripakkam', '2405100005', '', '1', 'upload_files/candidate_tracker/6904274457_Vigneshwarans Resume.pdf', NULL, '1', '2024-05-10', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 05:03:56', 130, '2024-05-14 10:05:49', 0, NULL, 1),
(19099, 'Mukitha m', '13', '7092066520', '9944735283', 'mukithamohan2816@gmail.com', '2000-08-16', 23, '3', '2', 'Mohan Kumar M', 'Laber', 12000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2405100006', '', '1', 'upload_files/candidate_tracker/33274970857_Mukitha M-Resume-2.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 05:06:33', 130, '2024-05-10 06:17:13', 0, NULL, 1),
(19100, 'kaviarasu R', '13', '9360035014', '', 'kaviyarasurasu2003@gmail.com', '2003-06-06', 20, '3', '2', 'RASU M', 'Farmer', 12000.00, 1, 0.00, 15000.00, 'karur', 'chennai', '2405100007', '', '1', 'upload_files/candidate_tracker/10239759392_KAVIYARASURCV6.pdf202405061048000000.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 05:06:43', 130, '2024-05-10 06:17:48', 0, NULL, 1),
(19101, 'sivaraj', '5', '9894848967', '8110848967', 'sivarajabs@gmail.com', '1995-05-10', 29, '2', '1', 'anitha', 'house wife', 28000.00, 2, 28000.00, 30000.00, 'gummidipoondi', 'gummi', '2405100008', '1', '2', 'upload_files/candidate_tracker/17742738033_Siva raj E -cv .pdf', NULL, '3', '2024-05-10', 0, '', '3', '59', '2024-05-15', 362400.00, '', '5', '1970-01-01', '1', 'Selected for Jagadeesh Team  Have exp in calling but not in sales can give a try in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-10 05:06:56', 60, '2024-05-14 07:17:04', 0, NULL, 1),
(19102, 'HARIHARAN M', '13', '6369930735', '', 'hariharan00001234@gmail.com', '2001-06-21', 22, '3', '2', 'MURUGESAN M', 'Farmer', 8000.00, 2, 0.00, 10000.00, 'Saidapet', 'Saidapet', '2405100009', '', '1', 'upload_files/candidate_tracker/30915116888_HARIHARAN-RESUME.pdf', NULL, '1', '2024-05-10', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 05:07:25', 130, '2024-05-14 10:05:15', 0, NULL, 1),
(19103, 'praveen k', '31', '8870367188', '8072506101', 'kcpraveen9829@gmail.com', '1999-08-14', 24, '3', '2', 'kamalathasan', 'former', 15000.00, 0, 0.00, 300000.00, 'namakkal', 'chennai', '2405100010', '', '1', 'upload_files/candidate_tracker/9591425783_praveen-k-FlowCV-Resume-20240404.pdf', NULL, '1', '2024-05-10', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 05:07:27', 130, '2024-05-14 10:02:35', 0, NULL, 1),
(19104, 'Saravanan S', '13', '9786012041', '', 'ssaran0756@gmail.com', '2002-09-26', 21, '3', '2', 'Sivagnanam', 'Driver', 14000.00, 1, 0.00, 10000.00, 'Villupuram', 'Saidapet', '2405100011', '', '1', 'upload_files/candidate_tracker/82041969418_Saravanan Resume.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 05:07:28', 130, '2024-06-03 03:41:26', 0, NULL, 1),
(19105, 'Stephan Gladio', '31', '9080312437', '8760925008', 'stephangladio2002@gmail.com', '2002-03-20', 22, '3', '2', 'Sabina', 'Daily wages', 10000.00, 1, 0.00, 2.50, 'Kallakurichi', 'Chennai', '2405100012', '', '1', 'upload_files/candidate_tracker/40575335506_StephangldioDeveloper (1).pdf', NULL, '1', '2024-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-10 05:10:36', 1, '2024-05-10 05:22:37', 0, NULL, 1),
(19106, 'Surya c', '31', '7449223279', '', 'Suryasuri1802@gmail.com', '2000-02-18', 24, '3', '2', 'Chokkalingam S', 'Farmer', 2000.00, 1, 0.00, 350000.00, 'Tiruttani', 'Tiruttani', '2405100013', '', '1', 'upload_files/candidate_tracker/23489921212_Surya Cv.pdf', NULL, '1', '2024-05-10', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 05:20:47', 130, '2024-05-14 10:30:49', 0, NULL, 1),
(19107, 'Indhuraj C', '13', '9159220358', '9003456578', 'INDHURAJCIR03@gmail.com', '1995-09-30', 28, '3', '2', 'Bhagyalakshmi C', 'Homemaker', 30000.00, 1, 0.00, 20000.00, 'Tiruttani', 'Tiruttani', '2405100014', '', '1', 'upload_files/candidate_tracker/2618650594_Indhuraj Full Stack Developer.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 05:24:19', 130, '2024-05-16 04:25:09', 0, NULL, 1),
(19108, 'Rangarajan M', '13', '8778158882', '', 'rangarajandnz@gmail.com', '2003-01-17', 21, '3', '2', 'Murugan p', 'Tailor', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2405100015', '', '1', 'upload_files/candidate_tracker/17587213229_Rangarajan_resume(M) (1).pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 05:26:46', 130, '2024-06-03 03:39:48', 0, NULL, 1),
(19109, 'Pradeep kumar D', '13', '7358425896', '', 'Pradeepsteve1155@gmail.com', '2001-11-11', 22, '3', '2', 'Dhasarathan', 'Retail shop', 30000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2405100016', '', '1', 'upload_files/candidate_tracker/30015529054_Pradeep_Kumar new.pdf', NULL, '1', '2024-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-10 05:27:30', 1, '2024-05-10 05:56:19', 0, NULL, 1),
(19110, 'Sathishkumar.s', '13', '9677218065', '7448409972', 'sathishk34633@gmail.com', '2001-11-28', 22, '3', '2', 'Selvakumar.s', 'Retail shop', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2405100017', '', '1', 'upload_files/candidate_tracker/73182254145_Sathish_Resume\'24.pdf', NULL, '1', '2024-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-10 05:27:32', 1, '2024-05-10 05:35:15', 0, NULL, 1),
(19111, 'Rajesh R', '6', '8072254109', '7904207387', 'djsabarish21@gmail.com', '2001-11-21', 22, '2', '2', 'Rajeswari R', 'Home Maker', 10000.00, 0, 0.00, 18000.00, 'No.25/3 ,Muthamman Koil Street , Ayanavaram', 'No.1031, 4Th Block , Mugappair West', '2405100018', '50', '1', 'upload_files/candidate_tracker/78374985004_Rajesh R.pdf', NULL, '1', '2024-05-10', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 05:35:41', 112, '2024-05-10 02:50:25', 0, NULL, 1),
(19112, 'SHOBANA SANKAR', '31', '9600970954', '8940607347', 'shobanasankar21@gmail.com', '2001-06-04', 22, '3', '2', 'Sankar', 'Farmer', 60000.00, 2, 0.00, 15000.00, 'Thiruvannamalai district', 'Thiruvannamalai district', '2405100019', '', '1', 'upload_files/candidate_tracker/41060735567_Shobhana Sankar Resume.pdf', NULL, '1', '2024-05-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 05:51:33', 112, '2024-05-11 03:57:51', 0, NULL, 1),
(19113, 'Bhuvaneswari Veerappan', '13', '8838845792', '9345313675', 'bhuvaneswariv2306@gmail.com', '2000-06-23', 23, '3', '2', 'Rani V', 'Private Employee', 9500.00, 1, 0.00, 200000.00, 'Pattukkottai', 'Chennai', '2405100020', '', '1', 'upload_files/candidate_tracker/45587477338_Bhuvaneswari Resume Recent.pdf', NULL, '1', '2024-05-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-10 05:58:04', 1, '2024-05-10 06:11:35', 0, NULL, 1),
(19114, 'Vasanth K', '13', '9360240518', '', 'vasanthvvkk03@gmail.com', '2002-03-20', 22, '3', '2', 'Kumar A', 'Farmer', 10000.00, 1, 0.00, 12000.00, 'Krishnagiri', 'Chennai', '2405100021', '', '1', 'upload_files/candidate_tracker/39250325793_K.VASANTH_RESUME (2).pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 06:01:32', 130, '2024-05-10 06:25:21', 0, NULL, 1),
(19115, 'LEELAVATHI M', '31', '9698979950', '9698979949', 'leelavathimurugaiyan2002@gmail.com', '2002-11-19', 21, '3', '2', 'MURUGAIYAN R', 'Farmer', 75000.00, 2, 0.00, 20000.00, 'VILLUPURAM', 'GUINDY', '2405100022', '', '1', 'upload_files/candidate_tracker/56920485041_Leelavathi_M (6).pdf', NULL, '1', '2024-05-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-10 06:02:29', 1, '2024-05-10 06:15:36', 0, NULL, 1),
(19116, '', '0', '9677195647', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405100023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-10 06:04:37', 0, NULL, 0, NULL, 1),
(19117, 'S.A.YOGESH', '13', '6300874618', '', 'yogeshsa29@gmail.com', '2002-05-29', 21, '3', '2', 'S.Appadurai', 'Farmer', 20000.00, 1, 0.00, 2.50, 'Tirupati', 'Chennai', '2405100024', '', '1', 'upload_files/candidate_tracker/93165482462_YOGESH_S A_Resume_04-08-2023-08-34-03-2.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 06:09:50', 130, '2024-05-16 04:23:02', 0, NULL, 1),
(19118, 'Prasanth K', '13', '6369967044', '7708179359', 'prasanthkrishna1510@gmail.com', '1999-10-15', 24, '3', '2', 'Krishnamoorthy P', 'Student', 20000.00, 1, 0.00, 30000.00, 'Cuddalore', 'Mudichur ,Thambaram', '2405100025', '', '1', 'upload_files/candidate_tracker/25682775169_Prasanth_resume_1510.pdf (1).pdf', NULL, '1', '2024-05-10', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 06:10:12', 130, '2024-05-14 10:13:07', 0, NULL, 1),
(19119, 'Deepa A', '31', '6369272367', '9524752627', 'leelavathimurugaiyan2002@gmail.com', '2003-04-29', 21, '3', '2', 'Sounderavalli A', 'Farmer', 72000.00, 1, 0.00, 18000.00, 'Villupuram', 'Chennai', '2405100026', '', '1', 'upload_files/candidate_tracker/54994047529_DEEPA_RESUME (1)-1.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 06:11:29', 130, '2024-05-10 06:29:14', 0, NULL, 1),
(19120, '', '0', '6385637492', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405100027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-10 06:12:44', 0, NULL, 0, NULL, 1),
(19121, 'Sangeetha', '13', '9940157523', '', 'sangeethasrini2897@gmail.com', '1997-08-02', 26, '3', '1', 'Prabakaran', 'Mechanical engineer', 100000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2405100028', '', '1', 'upload_files/candidate_tracker/31578589146_sangeetha DATA ANALYST.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 06:14:43', 130, '2024-05-10 06:25:44', 0, NULL, 1),
(19122, 'Kannadhasan', '13', '6383760844', '', 'kannancb17@gmail.com', '2000-06-20', 23, '3', '2', 'Veerasamy', 'Former', 15000.00, 1, 0.00, 20000.00, 'Pattukkottai', 'Chennai', '2405100029', '', '1', 'upload_files/candidate_tracker/47935352494_Kannadhasan (1).pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 06:23:56', 130, '2024-05-10 06:27:27', 0, NULL, 1),
(19123, 'Varsha', '13', '9843641086', '8248604022', 'varshavenkat0@gmail.com', '2003-05-31', 20, '3', '2', 'Venkatesan', 'Farmer', 18000.00, 1, 0.00, 15000.00, '10, school street pennagar, ranipet district', '5th main road Velachery ,chennai', '2405100030', '', '1', 'upload_files/candidate_tracker/91244673574_varsha resume using project.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 06:31:24', 130, '2024-05-10 06:27:59', 0, NULL, 1),
(19124, 'SASI D', '13', '9789875554', '9585462119', 'sasisasi3438@gmail.com', '2001-04-06', 23, '3', '2', 'Dharani', 'Former', 10000.00, 1, 0.00, 15000.00, 'Pali', 'Velachery Chennai', '2405100031', '', '1', 'upload_files/candidate_tracker/51710845262_cafe.pdf', NULL, '1', '2024-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-10 06:33:10', 1, '2024-05-10 06:51:42', 0, NULL, 1),
(19125, 'Karthika C', '13', '9345281742', '8903226495', 'karthika15102@gmail.com', '2002-10-15', 21, '3', '2', 'Chellaiya M', 'Coolie', 25000.00, 2, 0.00, 18000.00, 'Aruppukottai', 'Velachery, Chennai', '2405100032', '', '1', 'upload_files/candidate_tracker/6047353302_cafe.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 06:35:13', 130, '2024-05-10 06:27:00', 0, NULL, 1),
(19126, 'deepadharshini s', '13', '9500287578', '', 'deepadharshinis01@gmail.com', '2001-06-14', 22, '3', '2', 'kasivisalakshi s', 'house wife', 20000.00, 1, 0.00, 2.50, 'salem', 'chennai', '2405100033', '', '1', 'upload_files/candidate_tracker/64400574979_Deepadharshini_S.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 06:52:47', 130, '2024-05-10 06:30:54', 0, NULL, 1),
(19127, 'rithika s k', '11', '9840093555', '', 'rithikasvkmr@gmail.com', '2003-09-15', 20, '2', '2', 'sivakumar r', 'Auto driver', 15000.00, 1, 0.00, 18000.00, 'Thousand lights', 'Thousand lights', '2405100034', '1', '1', 'upload_files/candidate_tracker/41963691135_Rithika resume .pdf', NULL, '1', '2024-05-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-10 06:59:26', 104, '2024-05-10 01:32:26', 0, NULL, 1),
(19128, 'Bala chandran', '34', '8608386026', '8248652485', 'rbalachandran2000@gmail.com', '2000-05-03', 24, '6', '2', 'Amutha', 'House wife', 15000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2405100035', '', '1', 'upload_files/candidate_tracker/80511971175_BALA CHANDRAN CV.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '5', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 07:09:47', 130, '2024-05-16 04:17:48', 0, NULL, 1),
(19129, 'Saminathan A', '13', '7639833772', '', 'asaminathan402@gmail.com', '2002-07-29', 21, '3', '2', 'Arumugam M', 'Farmer', 48000.00, 2, 0.00, 2.60, 'Perambalur', 'Chennai', '2405100036', '', '1', 'upload_files/candidate_tracker/87525991126_NewResume.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 07:17:16', 130, '2024-06-03 03:42:13', 0, NULL, 1),
(19130, 'AAKASH N', '13', '9150450374', '', 'akasheeswetha@gmail.com', '2002-08-24', 21, '3', '2', 'NATARAJAN P', 'Farmer', 20000.00, 5, 0.00, 2.50, 'Ariyalur', 'Chennai', '2405100037', '', '1', 'upload_files/candidate_tracker/95099787583_Akash-new-resume.pdf', NULL, '1', '2024-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-10 07:19:53', 1, '2024-05-10 07:27:43', 0, NULL, 1),
(19131, 'Suriyaprakash R', '13', '9047819731', '9047819730', 'suryacse25@gmail.com', '2001-12-25', 22, '3', '2', 'Ramanathan D', 'Own business', 10000.00, 1, 21500.00, 20000.00, 'Tiruchirappalli', 'Tiruchirappalli', '2405100038', '', '2', 'upload_files/candidate_tracker/69200078142_Surya job resume.pdf', NULL, '1', '2024-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-10 07:20:22', 1, '2024-05-10 07:24:02', 0, NULL, 1),
(19132, 'Kanniyappan s', '13', '8098747257', '9597577053', 's.kanniyappan708@gmail.com', '2001-07-16', 22, '3', '2', 'Sridhar', 'Farmer', 30000.00, 3, 0.00, 20000.00, 'Thiruvarur dt nannilam tk poonthottam', 'Velachery tansinagar chenni', '2405100039', '', '1', 'upload_files/candidate_tracker/83807103417_Kanniyappan.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 07:32:01', 112, '2024-05-28 10:21:09', 0, NULL, 1),
(19133, 'Vinay Simha Reddy', '13', '6305076404', '', 'vinaysimha19@gmail.com', '2001-06-01', 22, '3', '2', 'S.Naga bhusanam Reddy', 'Farmer', 10.00, 1, 0.00, 1.50, 'Velachery', 'Velachery', '2405100040', '', '1', 'upload_files/candidate_tracker/95940598752_vinay resume (2)-1.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '3', '4', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 07:36:00', 130, '2024-05-10 06:29:59', 0, NULL, 1),
(19134, 'KIRUBANIDHI V', '13', '9025245889', '9841456689', 'kirubanidhivelayutham@gmail.com', '2009-05-10', 0, '3', '2', 'Bama V', 'Chennai cooperation', 25000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2405100041', '', '1', 'upload_files/candidate_tracker/89217168410_Kirubanidhi V.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 08:04:11', 130, '2024-05-16 04:24:11', 0, NULL, 1),
(19135, 'Vijayavedhasekaran', '2', '8248996382', '9003966382', 'vedhatech02@gmail.com', '2002-10-06', 21, '3', '2', 'Kannan', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Vedarnyam', 'Chennai', '2405100042', '', '1', 'upload_files/candidate_tracker/50857227850_vijayavedhasekaranCV .pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 09:07:03', 130, '2024-05-16 04:24:38', 0, NULL, 1),
(19136, 'Balasubramaniyan P', '13', '6384987208', '', 'bbala3325@gmail.com', '2002-08-01', 21, '3', '2', 'Palanisami', 'Farmer', 10000.00, 2, 0.00, 25000.00, 'Pudukkottai', 'Pudukkottai', '2405100043', '', '1', 'upload_files/candidate_tracker/10689149486_software ER bala-2.docx', NULL, '1', '2024-05-10', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '5', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 09:29:47', 130, '2024-05-14 10:37:57', 0, NULL, 1),
(19137, 'KALAISELVAN C', '13', '6369397594', '9843295685', 'kalaiselvanchakkarai@gmail.com', '2001-08-15', 22, '3', '2', 'Chakkarai', 'Farmer', 25000.00, 1, 325000.00, 500000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2405100044', '', '2', 'upload_files/candidate_tracker/88542644530_KALAISELVAN\'s Resume (1).pdf', NULL, '1', '2024-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-10 09:32:01', 1, '2024-05-10 09:36:24', 0, NULL, 1),
(19138, 'Mithun soman', '4', '8139838762', '', 'midhunsoman24@gmail.com', '2002-05-14', 21, '3', '2', 'Som', 'Carpenter', 50000.00, 1, 0.00, 28000.00, 'Syam Bhavan kokkadu po kokkadu kollam kerala', 'Sre Sathya Dev pg Marathahalli Banglore', '2405100045', '', '2', 'upload_files/candidate_tracker/3479101971_Midhun CV-compressed.pdf', NULL, '1', '2024-05-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-10 09:49:46', 1, '2024-05-10 10:35:05', 0, NULL, 1),
(19139, 'GAJENTHIRAN k', '13', '7397545771', '', 'gajenthirank3@gmail.com', '2003-06-03', 20, '3', '2', 'Karunanidhi', 'Farmer', 70000.00, 1, 0.00, 240000.00, 'Chennai', 'Sholinganallur', '2405100046', '', '1', 'upload_files/candidate_tracker/63247979911_resume gaja.pdf', NULL, '1', '2024-05-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-10 09:54:27', 130, '2024-05-10 06:30:31', 0, NULL, 1),
(19140, '', '0', '9025981401', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405100047', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-10 12:18:57', 0, NULL, 0, NULL, 1),
(19141, '', '0', '8179451707', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405100048', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-10 12:26:44', 0, NULL, 0, NULL, 1),
(19142, 'C.Venkata Sreenivas', '13', '9492071997', '9492071936', 'venkatasreenu2001@gmail.com', '2001-03-23', 23, '3', '2', 'C.V.V. Krishna Rao', 'Retired Andhra Bank Manager', 2.50, 2, 0.00, 2.50, 'Tirupati', 'Tirupati', '2405110001', '', '1', 'upload_files/candidate_tracker/4542743366_Sreenivas_Resume.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 03:56:13', 130, '2024-05-16 04:21:46', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19143, 'E.Shanmugavalli', '13', '8940137806', '8754065662', 'shanmugavalli218@gmail.com', '2002-02-18', 22, '3', '2', 'Vijayalakshmi', 'Homemaker', 15000.00, 2, 0.00, 15000.00, 'Ammapatty, Karisalpatty(Po),Sivaganga(Dt)', '1/309 kalaththumettu street,Kottivakkam, Chennai', '2405110002', '', '1', 'upload_files/candidate_tracker/93851553112_Shanmugavalli_Fullstack Developer.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 04:21:25', 112, '2024-05-11 03:55:30', 0, NULL, 1),
(19144, 'ganga parameshwari p', '5', '9940470716', '6374719932', 'gangayamuna2109@gmail.com', '2000-06-21', 23, '2', '2', 'palanisamy m', 'nil', 25000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2405110003', '1', '2', 'upload_files/candidate_tracker/38537392665_Ganga.pdf', NULL, '1', '2024-05-11', 20, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shortlisted for Gnanashekar team. Negotiate salary and give 10% to 20% hike based on negotiation. Expected 25k take home. Can Join next month 1st week', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-11 04:30:48', 112, '2024-05-11 10:52:41', 0, NULL, 1),
(19145, 'Mathiyazhagan', '13', '9840099626', '8489246368', 'mathiyazhagan718@gmail.com', '2002-10-19', 21, '3', '2', 'Sankar', 'Cab driver', 10000.00, 1, 0.00, 12000.00, 'Kovilambakkam', 'Kovilambakkam', '2405110004', '', '1', 'upload_files/candidate_tracker/88071979559_Mathiyazhagan_front_end_developer-1.docx', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 04:39:52', 112, '2024-05-11 03:55:09', 0, NULL, 1),
(19146, 'ARUN T', '2', '9865599445', '9042756297', 'arunkumarg7845@gmail.com', '2000-12-03', 23, '3', '2', 'Thambi P', 'Medical pharmacy shop', 12000.00, 2, 0.00, 250000.00, 'Gudiyatham, Vellore', 'Chennai', '2405110005', '', '1', 'upload_files/candidate_tracker/79179171601_ARUN T Resume.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 04:42:45', 112, '2024-05-11 03:54:50', 0, NULL, 1),
(19147, 'Vignesh', '13', '7448538665', '', 'vigneshvicke21@gmail.com', '1999-06-21', 24, '3', '2', 'Palani', 'Na', 15000.00, 3, 0.00, 1.50, 'Chennai', 'Chennai', '2405110006', '', '1', 'upload_files/candidate_tracker/10615519793_VIGNESH_WebDev.pdf', NULL, '1', '2024-05-11', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 04:46:49', 112, '2024-05-11 03:54:09', 0, NULL, 1),
(19148, 'Muthuramya S', '34', '6381633886', '9629053549', 'muthuramya999@gmail.com', '2003-02-20', 21, '3', '2', 'Serma sekar', 'Grocery shop', 40000.00, 2, 0.00, 1.50, 'Coimbatore', 'Chennai', '2405110007', '', '1', 'upload_files/candidate_tracker/91705937637_SMuthuramyaDev.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 04:52:53', 112, '2024-05-11 03:53:56', 0, NULL, 1),
(19149, 'S. Teeneshwari', '34', '9840558084', '8870377428', 'teeneshwaris1116@gmail.com', '2003-02-16', 21, '3', '2', 'Silormani. P', 'Fisher man', 10000.00, 2, 0.00, 15000.00, 'Thiruvallur', 'Chennai', '2405110008', '', '1', 'upload_files/candidate_tracker/40015247706_ Teeneshwari DE. Resume_20240405_230149_0000.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 04:53:03', 112, '2024-05-11 03:54:22', 0, NULL, 1),
(19150, 'WOLFATH ASHIK', '3', '7550262287', '8072157630', 'wolfathashik@gmail.com', '2002-10-22', 21, '3', '2', 'Abdul kadhar', 'Labour', 15000.00, 3, 0.00, 200000.00, 'Chennai', 'Chennai', '2405110009', '', '1', 'upload_files/candidate_tracker/73417228506_WOLFATH_ASHIK20.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:04:44', 112, '2024-05-11 03:53:25', 0, NULL, 1),
(19151, 'Chandrunath k', '13', '9600158605', '', 'chandrunath59@gmail.com', '2001-09-05', 22, '3', '2', 'E.uma', 'Teacher', 45000.00, 1, 0.00, 13000.00, 'Vandavasi', 'Vandavasi', '2405110010', '', '1', 'upload_files/candidate_tracker/48371481007_ChandruUpdate _20240426_083440_0000.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:07:18', 112, '2024-05-11 03:53:41', 0, NULL, 1),
(19152, 'Manoj', '13', '9360349503', '9976793108', 'manojvadivalagan@gmail.com', '2009-05-11', 15, '3', '2', 'Vadivalagan', 'Driver', 10000.00, 1, 0.00, 1.00, 'Karaikudi', 'Chennai', '2405110011', '', '1', 'upload_files/candidate_tracker/2137417376_MANOJ___V.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:08:21', 112, '2024-05-11 03:52:24', 0, NULL, 1),
(19153, 'Hema P', '13', '9600551536', '9080171686', 'hemavj2k19@gmail.com', '1996-12-27', 27, '3', '1', 'Vijay S', 'Test Architect', 100000.00, 1, 0.00, 300000.00, 'Kallakurichi', 'Chennai', '2405110012', '', '1', 'upload_files/candidate_tracker/28442628511_SQL Resume - hema Fresher.pdf.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:12:31', 112, '2024-05-11 03:52:06', 0, NULL, 1),
(19154, 'harshal', '6', '8248755750', '', 'harshalskss@gmail.com', '2001-08-21', 22, '2', '2', 'saravana kannan', 'medical', 30000.00, 0, 0.00, 22000.00, 'Rajapalayam', 'chennai', '2405110013', '1', '1', 'upload_files/candidate_tracker/36258661492_Harshal CV.pdf', NULL, '1', '2024-05-11', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok.check with payslip,\n\nnegotiate the salary and confirm the  joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-11 05:16:30', 112, '2024-05-11 03:27:18', 0, NULL, 1),
(19155, 'Gopi. E', '13', '7540034338', '6369270035', 'gopi05016@gmail.com', '1998-06-10', 25, '3', '2', 'Elumalai', 'Former', 15000.00, 2, 0.00, 25000.00, 'Chetpet', 'Velachery', '2405110014', '', '1', 'upload_files/candidate_tracker/66987665359_gopi resume.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:21:10', 112, '2024-05-11 03:50:10', 0, NULL, 1),
(19156, 'Mahendran K', '13', '7395956234', '', 'mahendranmahi1211@gmail.com', '1998-11-12', 25, '3', '2', 'Krishnan. R', 'Labour', 15000.00, 1, 0.00, 250000.00, 'Thiruvottiyur, Chennai', 'Thiruvottiyur, Chennai', '2405110015', '', '1', 'upload_files/candidate_tracker/96638415804_Mahendran k.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:29:07', 130, '2024-05-16 04:34:43', 0, NULL, 1),
(19157, 'Shahana khan', '13', '8610918382', '9944388399', 'shashahana95@gmail.com', '1995-05-29', 28, '3', '1', 'Sakthivel', 'Bank Manager', 4.80, 0, 0.00, 8000.00, 'Chennai', 'Chennai', '2405110016', '', '1', 'upload_files/candidate_tracker/47074085988_RESUME - SHAHANA KHAN J.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:34:25', 112, '2024-05-11 03:49:17', 0, NULL, 1),
(19158, 'VIJAY M', '13', '6381195530', '', 'vijaymurugan216@gmail.com', '1998-05-21', 25, '3', '2', 'Murugan.R', 'Self - employee', 45000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Dharmapuri', '2405110017', '', '1', 'upload_files/candidate_tracker/97913364271_VIJAY M_Resume_467.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:34:28', 112, '2024-05-11 04:02:31', 0, NULL, 1),
(19159, 'KBharathi', '13', '8608346260', '', 'Mkbharathi8399@gmail.com', '1999-03-08', 25, '3', '1', 'T.Muthuramalingam', 'Manager', 25000.00, 1, 0.00, 10000.00, 'Palacombai', 'Chennai', '2405110018', '', '1', 'upload_files/candidate_tracker/46691602234_Bharathi 2 (1) (3).pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:34:31', 112, '2024-05-11 03:51:40', 0, NULL, 1),
(19160, 'Varunapriya', '13', '9629270907', '', 'varunaa03@gmail.com', '2001-03-03', 23, '3', '2', 'Selvarajan', 'Professor', 80000.00, 2, 0.00, 10000.00, 'Thoothukudi', 'Chennai', '2405110019', '', '1', 'upload_files/candidate_tracker/73545747999_c (1).pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:34:31', 112, '2024-05-11 03:49:39', 0, NULL, 1),
(19161, 'Seetha. B', '13', '7358502685', '8668130686', 'seetha0197@gmail.com', '1997-01-01', 27, '3', '1', 'Sri Harisaran. S', 'IT', 40000.00, 2, 0.00, 20000.00, 'No. 681 tnpl colony s. Kolathur chennai 600117.', 'No. 681 tnpl colony. S. Kolathur chennai 600117', '2405110020', '', '1', 'upload_files/candidate_tracker/66011126500_Resume.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:35:04', 112, '2024-05-11 04:00:03', 0, NULL, 1),
(19162, 'Vasanth Kumar', '13', '6381556450', '', 'vasanthtm28@gmail.com', '1999-10-28', 24, '3', '2', 'Thirumoorthy', 'Retired', 100000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2405110021', '', '1', 'upload_files/candidate_tracker/97495154154_VASANTH KUMAR (RESUME).pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:35:13', 130, '2024-05-16 04:20:32', 0, NULL, 1),
(19163, 'Rajesh Kumar M S', '13', '6374572846', '6381556450', 'rajeshkumarmsrocks@gmail.com', '1999-02-06', 25, '3', '2', 'Madhavan', 'Business', 40000.00, 2, 0.00, 300000.00, 'No : 2/66 Lakshmi Amman koil Street, karanoda.', 'Same', '2405110022', '', '1', 'upload_files/candidate_tracker/84768441835_RAJESH KUMAR M S 1.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:36:16', 112, '2024-05-11 03:50:52', 0, NULL, 1),
(19164, 'IBFATH Fathima', '6', '7871739384', '', 'sanafathima7458@gmail.com', '2004-06-22', 19, '2', '2', 'Ramjan sulthana', 'Cooli', 30000.00, 1, 0.00, 20000.00, 'Mannadi', 'Mannadi', '2405110023', '51', '1', 'upload_files/candidate_tracker/53532839813_Resume_Job resume_Format7 (10).pdf', NULL, '3', '2024-05-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:40:36', 112, '2024-05-11 03:30:05', 0, NULL, 1),
(19165, 'K. Vanaja', '6', '8124375553', '', 'thulasi5330@gmail.com', '2003-12-07', 20, '2', '2', 'M. Thulasi', 'Cooli', 30000.00, 2, 0.00, 20000.00, 'Royapuram', 'Royapuram', '2405110024', '51', '1', 'upload_files/candidate_tracker/78934221414_Resume_Job resume_Format7.pdf', NULL, '1', '2024-05-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:40:43', 112, '2024-05-11 03:28:58', 0, NULL, 1),
(19166, 's.Hemalatha', '6', '6382213095', '', 'hema.sekar280703@gmail.com', '2003-07-28', 20, '2', '2', 'M.Sekar', 'Cooli', 30000.00, 1, 0.00, 20000.00, 'Perambur', 'Perambur', '2405110025', '51', '1', 'upload_files/candidate_tracker/39708348177_Resume_Job resume_Format7-1.pdf', NULL, '3', '2024-05-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:41:06', 112, '2024-05-11 03:30:36', 0, NULL, 1),
(19167, 'S. ESTHER RANI', '6', '8248322561', '', 'Ksdineahkukar007@gmail.com', '2004-05-24', 19, '2', '2', 'Janaki', 'House keeping', 80000.00, 1, 0.00, 20000.00, 'Royapuram', 'Royapuram', '2405110026', '51', '1', 'upload_files/candidate_tracker/95127909565_Resume_Job resume_Format7-4.pdf', NULL, '3', '2024-05-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:41:36', 112, '2024-05-11 03:30:53', 0, NULL, 1),
(19168, 'K.DINESH KUMAR', '6', '8248786235', '', 'ksdineahkumar007@gmail.com', '2004-08-03', 19, '2', '2', 'K.prem kumar', 'KMC meterials &co', 80000.00, 2, 0.00, 20000.00, 'Royapuram', 'Royapuram', '2405110027', '51', '1', 'upload_files/candidate_tracker/38134935512_Resume_Job resume_Format7.pdf', NULL, '3', '2024-05-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:41:36', 112, '2024-05-11 03:26:49', 0, NULL, 1),
(19169, 'Shalini M', '13', '8610010674', '', 'shashiva2022@gmail.com', '1987-08-09', 36, '3', '1', 'Murugaiah', 'Ex-Army', 40000.00, 3, 0.00, 25000.00, 'Chennai', 'Chennai', '2405110028', '', '2', 'upload_files/candidate_tracker/60238425602_Shalini__SoftwareEngineer_2024.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:42:47', 112, '2024-05-11 03:50:37', 0, NULL, 1),
(19170, 'S.Balashanmugam', '31', '9442311587', '', 'shanmugambala906@gmail.com', '2000-06-17', 23, '3', '2', 'Sarathy', 'Mechanic', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2405110029', '', '1', 'upload_files/candidate_tracker/82944983786_Balashanmugam.pdf', NULL, '1', '2024-05-11', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 05:52:09', 112, '2024-05-11 04:10:39', 0, NULL, 1),
(19171, 'Srimathi sekar', '11', '7395887136', '9486121252', 'srimathi1016@gmail.com', '2002-07-16', 21, '2', '2', 'Sekar.g', 'Secretary of cooperative bank', 50000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Cuddalore', '2405110030', '1', '1', 'upload_files/candidate_tracker/21994678130_Srimathi s .pdf', NULL, '1', '2024-05-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-11 05:52:48', 112, '2024-05-11 03:31:59', 0, NULL, 1),
(19172, 'surya g', '11', '9025566350', '9840642541', 'suryagopal2119@gmail.com', '2002-01-21', 22, '2', '2', 'gopal v', 'self employee', 15000.00, 1, 0.00, 18000.00, 'mamallapuram', 'ynamp', '2405110031', '1', '1', 'upload_files/candidate_tracker/74523382592_Suryag (1).pdf', NULL, '1', '2024-05-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-11 05:53:40', 112, '2024-05-11 03:31:42', 0, NULL, 1),
(19173, 'Rashwanth', '13', '9159209969', '', 'rashwanthashok1@gmail.com', '2001-08-16', 22, '3', '2', 'Ashok', 'TNEB', 35000.00, 1, 30000.00, 25000.00, 'Krishnagiri', 'Chennai', '2405110032', '', '2', 'upload_files/candidate_tracker/14921376371_Rashwanth (1).pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:06:28', 130, '2024-05-16 04:20:59', 0, NULL, 1),
(19174, 'Kumaresan M', '13', '6374838096', '', 'kumaresanmuthu02@gmail.com', '2002-07-25', 21, '3', '1', 'Muthu manickam V', 'Weaver', 15000.00, 2, 0.00, 250000.00, '6/83- Satham palayam kattu valavu, Edanganasalai', 'Chennai', '2405110033', '', '1', 'upload_files/candidate_tracker/13314282356_Kumaresan M resume.pdf', NULL, '1', '2024-05-11', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:06:38', 112, '2024-05-11 03:46:50', 0, NULL, 1),
(19175, 'Anishkumar R', '31', '7604886128', '8667288620', 'anishkumarkbca@gmail.com', '2002-06-01', 21, '3', '2', 'Raja', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2405110034', '', '1', 'upload_files/candidate_tracker/96321938870_Anish10.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:11:13', 112, '2024-05-11 03:57:21', 0, NULL, 1),
(19176, 'Yuvanesh', '13', '7373912171', '', 'yuva2340@gmail.com', '2000-04-22', 24, '3', '2', 'VEERARAGAVAN T', 'Agriculture', 15000.00, 1, 0.00, 25000.00, 'chengalpattu', 'chengalpattu', '2405110035', '', '1', 'upload_files/candidate_tracker/72054231138_yuvanesh_resume.pdf', NULL, '1', '2024-05-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:13:03', 112, '2024-05-11 03:56:59', 0, NULL, 1),
(19177, 'Santhosh S', '13', '8220091827', '8056616607', 'santhosh8220091827@gmail.com', '2000-11-26', 23, '4', '2', 'Seenuvasan', 'Carpenter', 10000.00, 2, 0.00, 25000.00, 'No.3,13th st, Teachers nagar,Tkm,cpt', 'No.3, 13th st, teachers nagar ,tkm,cpt', '2405110036', '', '1', 'upload_files/candidate_tracker/6552973013_santhosh resume (2).pdf', NULL, '1', '2024-05-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-11 06:13:07', 1, '2024-05-11 06:27:25', 0, NULL, 1),
(19178, 'Manoj Kumar V', '6', '9094823633', '', 'vmomanoj6@gmail.com', '1999-10-06', 24, '2', '2', 'Lakshmi', 'Non teaching staff', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Channai', '2405110037', '1', '2', 'upload_files/candidate_tracker/9902034805_Resume of Manoj Kumar V.pdf', NULL, '1', '2024-05-11', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice and skill is ok , past 6 monh work with back end staff work , so prefered ctc is 14.5 k take home .', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-11 06:25:06', 112, '2024-05-11 03:25:52', 0, NULL, 1),
(19179, 'Nivetha Vijayakumar', '13', '9003447099', '', 'nivethavijay134@gmail.com', '2003-04-20', 21, '3', '2', 'Vijayakumar', 'Driver', 15000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2405110038', '', '1', 'upload_files/candidate_tracker/68995152718_Nivi', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:39:19', 112, '2024-05-11 03:43:03', 0, NULL, 1),
(19180, 'Anandhan Vasu', '31', '7200591243', '', 'anandvasu2401@gmail.com', '2001-01-24', 23, '3', '2', 'S.Vasu', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2405110039', '', '1', 'upload_files/candidate_tracker/54141594476_Anandhan Vasu Resume.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:39:44', 130, '2024-06-12 01:10:12', 0, NULL, 1),
(19181, 'Settu.P', '2', '9159626384', '7871548284', 'settupoomalai1998@gmail.com', '1998-06-12', 25, '3', '2', 'M. Poomalai', 'Unemployed', 50000.00, 2, 0.00, 3.00, 'Dharmapuri', 'Chennai', '2405110040', '', '1', 'upload_files/candidate_tracker/46246512370_Settu Mernstack Resume.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:40:43', 112, '2024-05-11 03:45:30', 0, NULL, 1),
(19182, 'Iswarya', '2', '6380574488', '8122047804', 'iswaryakannan97@gmail.com', '1997-09-18', 26, '3', '2', 'Kannan', 'MSC software Engineer', 500000.00, 3, 20000.00, 35000.00, 'CHENNAI', 'Chennai vadapalani', '2405110041', '', '2', 'upload_files/candidate_tracker/94470314407_Aishwarya-2024.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:43:42', 112, '2024-05-11 03:44:01', 0, NULL, 1),
(19183, 'Jeyavarthini', '13', '7418323706', '9363475793', 'j.varthini24@gmail.com', '2001-05-25', 22, '3', '2', 'Mahesh', 'Business', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405110042', '', '1', 'upload_files/candidate_tracker/67964628042_JeyaVarthini(Resume) (1).pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:50:51', 130, '2024-05-16 04:19:08', 0, NULL, 1),
(19184, 'Priyadarshini S', '13', '7339623418', '9841156688', 'priyasolai22@gmail.com', '2002-07-22', 21, '3', '2', 'Solaimalai S', 'Salesman', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405110043', '', '1', 'upload_files/candidate_tracker/5412812043_PriyaResume (2) (1).pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:50:59', 112, '2024-05-11 03:43:17', 0, NULL, 1),
(19185, 'Pavithra.m', '5', '9980645730', '7829856401', 'Pavithram3245@gmail.com', '2001-01-14', 23, '2', '2', 'Murugeshan', 'Yes', 35.00, 2, 20000.00, 23000.00, 'Swamy vevikanadha metro station near bayapanalli', 'Swamy Vevikanadha Metro Station Near Bayapanahalli', '2405110044', '39', '2', 'upload_files/candidate_tracker/82164782396_PAVITHRA..M.1.pdf', NULL, '1', '2024-05-11', 0, '', '3', '59', '2024-05-23', 240000.00, '', '5', '1970-01-01', '2', 'Selected for Relationship Executive role Need to analyse in 7 days training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:51:17', 60, '2024-05-23 09:48:43', 0, NULL, 1),
(19186, 'Santhosh M', '31', '7395906604', '', 'msanthosh11062003@gmail.com', '2003-06-11', 20, '3', '2', 'Murugavel', 'Plumbing contractor', 25000.00, 1, 0.00, 22000.00, 'Perambur, Chennai', 'Perambur Chennai', '2405110045', '', '1', 'upload_files/candidate_tracker/70035036635_Santhosh M.pdf', NULL, '1', '2024-05-11', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:51:18', 112, '2024-05-11 03:44:19', 0, NULL, 1),
(19187, 'Balakrishnan i', '31', '9841206436', '', 'srihannah95@gmail.com', '2003-06-03', 20, '3', '2', 'Dhanalaxmi I', 'Former', 25000.00, 1, 0.00, 25000.00, 'Villivakkam', 'Villivakkam', '2405110046', '', '1', 'upload_files/candidate_tracker/81716165483_Balakrishnan i.pdf', NULL, '1', '2024-05-11', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:51:53', 112, '2024-05-11 03:44:45', 0, NULL, 1),
(19188, 'Nithish Sabari Kumar', '13', '9342242410', '9159933665', 'nithishsk03@gmail.com', '2003-07-10', 20, '3', '2', 'Vanithamani', 'House Wife', 12000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'Ramanathapuram', '2405110047', '', '1', 'upload_files/candidate_tracker/80422945530_NithishSK (2).pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:52:36', 130, '2024-05-16 04:20:01', 0, NULL, 1),
(19189, 'Riyas Mohideen', '13', '6383075300', '', 'riyasmohideen04@gmail.com', '2001-02-04', 23, '3', '2', 'mohamed ibrahim', 'machine operator', 27000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2405110048', '', '1', 'upload_files/candidate_tracker/56851732016_RIYAS01RESUME.pdf', NULL, '1', '2024-05-11', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:53:30', 112, '2024-05-11 03:44:31', 0, NULL, 1),
(19190, 'Akash KV', '13', '7200955060', '9445285300', 'kvakash935@gmail.com', '2000-12-11', 23, '3', '2', 'Hemavathy K', 'Housewife', 25000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2405110049', '', '1', 'upload_files/candidate_tracker/93378956456_Akash KV.pdf (1).pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 06:57:10', 112, '2024-05-11 03:42:47', 0, NULL, 1),
(19191, 'S.mukivarman', '2', '6369355932', '', 'mukivarman@gmail.com', '2001-05-21', 22, '3', '2', 'Visalatchi', 'Labour', 30000.00, 1, 0.00, 23000.00, '101,West St,ammaiyagaram, kallakurichi', 'Thirumudivakkam, kanchipuram', '2405110050', '', '1', 'upload_files/candidate_tracker/32685066059_MUKIVARMAN.S (2).pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 07:15:36', 112, '2024-05-11 03:42:31', 0, NULL, 1),
(19192, 'k.balakumar', '2', '8870711230', '9659692454', 'kbalakumarvel@gmail.com', '2001-04-06', 23, '3', '2', 'kadarkaraivel.p', 'business', 40000.00, 5, 0.00, 20000.00, 'thoothukudi', 'chennai', '2405110051', '', '1', 'upload_files/candidate_tracker/86976890784_BalaResume.docx', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 07:41:22', 112, '2024-05-11 03:41:50', 0, NULL, 1),
(19193, 'Snega', '13', '7339520351', '', 'snegakannan5@gmail.com', '2002-05-15', 21, '3', '2', 'Tamilselvi', 'Farmer', 8000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2405110052', '', '1', 'upload_files/candidate_tracker/83484994718_fsd resume.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 07:47:08', 112, '2024-05-11 03:41:22', 0, NULL, 1),
(19194, 'Suganthi k', '13', '9444432838', '8825796209', 'suganthikannan536@gmail.com', '2000-05-31', 23, '3', '2', 'Kannan k', 'Painter', 8000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405110053', '', '1', 'upload_files/candidate_tracker/87868637687_DOC-20240321-WA0001._11zon-compressed.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 08:07:12', 112, '2024-05-11 03:41:10', 0, NULL, 1),
(19195, 'Mubeen Tabassum F', '13', '9962925464', '8248779697', 'mubi06999@gmail.com', '1999-10-06', 24, '3', '2', 'Z fazalur rahman', 'Retired', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2405110054', '', '1', 'upload_files/candidate_tracker/12388696705_Mubi_CV.pdf', NULL, '1', '2024-05-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-11 08:32:05', 1, '2024-05-11 08:35:46', 0, NULL, 1),
(19196, 'Dhanush A', '13', '9080827462', '9894711796', 'dhanushanand1307@gmail.com', '2003-07-13', 20, '3', '2', 'M D Anand', 'Business', 10000.00, 1, 0.00, 450000.00, 'Chennai', 'Chennai', '2405110055', '', '1', 'upload_files/candidate_tracker/96557940514_resume_one_col_dhanush_a_new.pdf', NULL, '1', '2024-05-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 09:12:26', 130, '2024-05-16 04:34:20', 0, NULL, 1),
(19197, 'Harish Selvam', '5', '9094700940', '', 'cristianoharish2621@gmail.com', '2000-07-26', 23, '2', '1', 'Nandhini', 'Works In Sampark India Private Limited', 28100.00, 0, 0.00, 25000.00, 'Alandur, Chennai', 'Alandur, Chennai', '2405110056', '1', '2', 'upload_files/candidate_tracker/11732203877_Resume.pdf', NULL, '1', '2024-05-13', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', ' Lack of Problem Solving Abilities:', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-11 12:47:36', 112, '2024-05-13 11:13:03', 0, NULL, 1),
(19198, 'Chandru M', '11', '9150310860', '', 'chandrumunuswamy002@gmail.com', '2009-05-11', 0, '2', '2', 'K.munusamy', 'Conductor', 35000.00, 1, 0.00, 20.00, '3/184 teachers nagar bypass road TIRUTTANI-631209', 'TIRUTTANI', '2405110057', '1', '1', 'upload_files/candidate_tracker/80320824431_Resume - VMJ 06.pdf', NULL, '1', '2024-05-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-11 01:36:39', 112, '2024-05-13 12:31:53', 0, NULL, 1),
(19199, 'Sriharsha N', '11', '6369669104', '8667625859', 'sriharshaharsha21@gmail.com', '2009-05-11', 0, '6', '2', 'Balaji N', 'Lab technician', 400000.00, 1, 0.00, 18000.00, '71/G3 Kalyan paradise,thanikachalam road, perambur', 'Chennai', '2405110058', '', '1', 'upload_files/candidate_tracker/19353056261_SRI HARSHA N.pdf', NULL, '2', '2024-05-27', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-11 03:55:37', 108, '2024-05-27 06:44:35', 0, NULL, 1),
(19200, 'Sandhiya', '6', '9025653141', '8072178332', 'gopalsanthiya2004@gmail.com', '2004-01-12', 20, '2', '2', 'P. Gopalakrishnan', 'Farmer', 15000.00, 3, 0.00, 17000.00, 'Cuddalore', 'Chennai', '2405120001', '1', '1', 'upload_files/candidate_tracker/99468650930_CV_2024051216241831.pdf', NULL, '1', '2024-05-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication and performance Is good.Will Try in the training period', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-12 10:40:03', 112, '2024-05-13 12:19:12', 0, NULL, 1),
(19201, 'Abdul mateen', '4', '9986925342', '9900929651', 'matheenabdul99@gmail.com', '1994-11-21', 29, '4', '1', 'Hina', 'House wife', 60.00, 1, 31500.00, 35000.00, 'Bangalore', 'Bangalore', '2405120002', '', '2', 'upload_files/candidate_tracker/60276935757_Abduls Resume .pdf', NULL, '1', '2024-05-14', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-12 07:36:35', 1, '2024-05-13 12:19:04', 0, NULL, 1),
(19202, 'Gouthami S', '6', '9591823900', '', 'gouthamosemk99@gmail.com', '1999-06-06', 24, '2', '2', 'Shankar', 'Labour', 100000.00, 3, 23000.00, 25000.00, 'Kolar', 'Bangalore', '2405130001', '47', '2', 'upload_files/candidate_tracker/5827185280_gouthami -resume-jan2024.pdf', NULL, '1', '2024-05-13', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested with this job role', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-13 04:09:06', 126, '2024-05-13 03:19:59', 0, NULL, 1),
(19203, 'K. Vasudeva Reddy', '6', '8317621791', '', 'vasulucky2580@gmail.com', '1998-06-09', 25, '2', '2', 'Raghunath Reddy', 'Farmer', 25000.00, 0, 18000.00, 25000.00, 'Andhra Pradesh', 'Kudlugate', '2405130002', '1', '2', 'upload_files/candidate_tracker/74754271548_VASU RESUME 2021 (1).doc', NULL, '1', '2024-05-13', 1, '', '3', '59', '2024-05-15', 20000.00, '', '1', '1970-01-01', '2', 'Selected For Relationship Executive Bangalore Team,Need To Analyse In 7 Days Previous Exp Documents Were Not Clear', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1023', '', '', '', '1970-01-01', 1, '2024-05-13 05:14:28', 126, '2024-08-06 12:58:15', 0, NULL, 1),
(19204, 'Arul Ranganathan C N', '13', '8428843226', '9840054327', 'arulranganathan10571@gmail.com', '1997-12-12', 26, '3', '2', 'Ramesh C N', 'Still photographer', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2405130003', '', '1', 'upload_files/candidate_tracker/49326328522_Arul resume 4th template as of 29.3.24.pdf', NULL, '1', '2024-05-13', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-13 05:23:27', 112, '2024-05-13 11:28:48', 0, NULL, 1),
(19205, 'Uma Priya.B', '6', '9677780018', '9791729385', 'priyabuddhan2@gmail.com', '1998-07-28', 25, '2', '2', 'Neela vathi B', 'Employed', 4.00, 2, 0.00, 20000.00, '2/253A,agan nagar, Arakkonam, ranipet district', '2/253A,Agan Nagar, Arakkonam, Ranipet District', '2405130004', '1', '1', 'upload_files/candidate_tracker/49283063896_CV_2023082119195630.pdf', NULL, '1', '2024-05-13', 0, '', '3', '59', '2024-05-14', 192000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team Need ot analyse in 7 days too long distance family background is Navy', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-13 05:32:01', 60, '2024-05-14 10:02:51', 0, NULL, 1),
(19206, 'mohamed anwar', '31', '7305384695', '7806983641', 'KADARMYDEEN993@gmail.COM', '2009-05-13', 0, '6', '2', 'Ayisha siddika', 'House wife', 100000.00, 2, 0.00, 10000.00, 'tirunelveli', 'tirunelveli', '2405130005', '', '1', 'upload_files/candidate_tracker/29821726898_CV_2024041712181583.pdf', NULL, '1', '2024-05-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-13 05:39:05', 112, '2024-05-13 12:03:24', 0, NULL, 1),
(19207, 'Aravind S', '6', '8925269874', '', 'aravindsenthilkumar410@gmail.com', '2003-03-16', 21, '2', '2', 'P.l.senthil Kumar', 'Business', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405130006', '50', '1', 'upload_files/candidate_tracker/6674202165_Aravind', NULL, '1', '2024-05-13', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-13 06:05:15', 112, '2024-05-13 12:23:22', 0, NULL, 1),
(19208, 'Vandana MN', '6', '9591264918', '', 'sonumn042@gmail.com', '2001-07-17', 22, '2', '2', 'Naharaju', 'Farmer', 25000.00, 2, 0.00, 25000.00, 'Anekal', 'Anekal', '2405130007', '1', '2', 'upload_files/candidate_tracker/78750296267_Vandana.pdf', NULL, '1', '2024-05-13', 1, '', '3', '59', '2024-05-15', 240000.00, '', '1', '1970-01-01', '2', 'Selected for Relationship Executive Bangalore Team,need to analyse in 7 days Previous exp documents were not clear', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1023', '', '', '', '1970-01-01', 1, '2024-05-13 06:15:28', 126, '2024-08-06 01:00:18', 0, NULL, 1),
(19209, 'Arun Kumar.S', '6', '9566010292', '8523055779', 'saiprasanth259@gmail.com', '2000-02-16', 24, '2', '2', 'R soundarajan', 'Building construction', 40000.00, 1, 14000.00, 20000.00, 'Neelankarai', 'Neelankarai', '2405130008', '1', '2', 'upload_files/candidate_tracker/41092280477_ Arunkumar RESUME.docx', NULL, '3', '2024-05-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice and appearance is ok and past expreience  4 companys in 3 years, last packege is 14k take home so ctc i 16k provide and distance is very long. so check the past payslip', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-13 07:09:18', 112, '2024-05-13 12:57:11', 0, NULL, 1),
(19210, '', '0', '9110686228', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405130009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-13 07:15:53', 0, NULL, 0, NULL, 1),
(19211, 'Lavanya Michael', '11', '8129124715', '', 'girllava677@gmail.com', '1999-11-21', 24, '3', '2', 'Indirani', 'HR', 20000.00, 4, 24000.00, 30000.00, 'Chennai', 'Chennai', '2405130010', '', '2', 'upload_files/candidate_tracker/72401359878_Lavanya Michael Resume blue (1).docx_20240510_182101_0000.pdf', NULL, '2', '2024-05-15', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-13 07:18:13', 1, '2024-05-13 07:21:52', 0, NULL, 1),
(19212, 'Suryapragasam', '6', '8489989868', '', 'Suryapragasam3@gmail.com', '2001-06-13', 22, '2', '2', 'Rose', 'Nil', 15000.00, 0, 0.00, 18000.00, 'Tiruvannamalai DT', 'Tambaram', '2405130011', '42', '1', 'upload_files/candidate_tracker/66442004452_Sunshine_Resume_ID_ ZHRS0524017.pdf', NULL, '1', '2024-05-13', 0, '', '5', '105', NULL, 0.00, '', '0', NULL, '1', 'Candidate Performance is Not Good ,also he is more interested in game designer', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-13 07:30:33', 1, '2024-05-13 07:48:33', 0, NULL, 1),
(19213, 'abinaya manoharan', '5', '9739681363', '', 'abiharan777@gmail.com', '1993-12-26', 30, '2', '2', 'thenmozhi', 'teacher', 1.00, 1, 27000.00, 30000.00, 'Bengaluru', 'Bengaluru', '2405130012', '47', '2', 'upload_files/candidate_tracker/65080709244_Abinaya Manoharan_TSI.pdf', NULL, '2', '2024-05-13', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of knowledge about the sales and insurance moreover the Salary expectation is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-13 08:07:55', 126, '2024-06-04 11:28:47', 0, NULL, 1),
(19214, 'Yogeswaran', '6', '8825853260', '9486806360', 'yogeswaran510@gmail.com', '2000-10-05', 23, '4', '2', 'A.Mariappan', 'Shop keeper', 30000.00, 4, 185000.00, 18000.00, 'Thoothukudi', 'Chennai Adambakkam', '2405130013', '', '2', 'upload_files/candidate_tracker/73530810469_Resume_13_05_2023_09_44_20_PM.pdf', NULL, '1', '2024-05-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-13 11:08:40', 1, '2024-05-13 11:12:14', 0, NULL, 1),
(19215, 'Joshua Felix', '25', '9880214742', '8971499466', 'joshuafelix201@gmail.com', '2009-05-13', 0, '3', '2', 'Prabhu', 'Technician', 100000.00, 2, 0.00, 15000.00, 'Gangamma temple', 'Gangamma temple', '2405130014', '', '1', 'upload_files/candidate_tracker/93396945288_Joshua_Felix.pdf', NULL, '1', '2024-05-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-13 01:23:32', 1, '2024-05-13 01:29:14', 0, NULL, 1),
(19216, 'Gokul kumar', '6', '8680836101', '', 'gokulnavin95@gmail.com', '2004-05-23', 19, '2', '2', 'Senthil Kumar', 'Security', 18000.00, 2, 0.00, 12000.00, 'No 48b Sundaram Main Road Vyasarpadi', 'Chennai', '2405140001', '36', '1', 'upload_files/candidate_tracker/61361254148_IMG-20240513-WA0000.pdf', NULL, '1', '2024-05-14', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is interested in IT profile , after 3month later he go to study MCA So, he is not continue the Job  ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-14 04:11:25', 112, '2024-05-14 10:04:03', 0, NULL, 1),
(19217, 'Jayaganesh', '6', '8939646446', '8939646447', 'Jayaganeshjayaganesh942@gmail.com', '2003-12-25', 20, '2', '2', 'P.Shanthi', 'Tailor', 20000.00, 0, 0.00, 10000.00, '44/164 old washernmenpet', 'Old washernmenpet', '2405140002', '36', '1', 'upload_files/candidate_tracker/85845416347_Adobe Scan 14 May 2024.pdf', NULL, '1', '2024-05-14', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate all ok but after3 month he will quit the job and joining for mastre degree, so he not fit for job, he looking for short time income only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-14 04:12:00', 112, '2024-05-14 10:04:21', 0, NULL, 1),
(19218, 'bhageerathi n', '5', '8660495978', '', 'bhagunadig1234@gmail.com', '2001-04-19', 23, '2', '2', 'shankarmurthy', 'catering servi', 50000.00, 0, 0.00, 18000.00, 'near harihareshwara temple kote harihar', 'prestige bagmane temple bells apart', '2405140003', '39', '2', 'upload_files/candidate_tracker/10196076516_Bhageerathi CV.pdf', NULL, '1', '2024-05-14', 0, '', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Confirm sustainability if ok we can proceed ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-14 04:44:33', 126, '2024-05-14 03:21:55', 0, NULL, 1),
(19219, 'Manju R', '5', '8148747879', '6381356270', 'manjuvalli67@gmail.com', '1994-06-10', 29, '2', '2', 'Valli', 'House keeping', 7500.00, 3, 21000.00, 21000.00, 'Nungambakkam', 'Nungambakkam', '2405140004', '51', '2', 'upload_files/candidate_tracker/68968843498_Nirmala resume.pdf', NULL, '1', '2024-05-14', 12, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'less knowledge not fit for tele sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-14 04:47:52', 112, '2024-05-14 12:34:02', 0, NULL, 1),
(19220, 'Subasri Elango', '5', '9080052636', '', 'elangosuba10@gmail.com', '2002-04-02', 22, '2', '2', 'l elango', 'business', 50000.00, 1, 23000.00, 29000.00, 'ayanavaram', 'ayanavaram', '2405140005', '1', '2', 'upload_files/candidate_tracker/51255496129_resume .pdf', NULL, '1', '2024-05-14', 16, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'High Expectations', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-14 05:11:59', 112, '2024-05-14 12:41:35', 0, NULL, 1),
(19221, 'Manoj Kumar', '5', '9066263862', '', 'manu.mk782@gmail.com', '1995-08-01', 28, '2', '2', 'Pushpa', 'Business', 40000.00, 2, 240000.00, 25000.00, '#2 apr Kalyana mantapa, Vinayaka Nagar hongsandra', '#2 10th Cross Apr Kalyana Mantapa, Vinayaka', '2405140006', '39', '2', 'upload_files/candidate_tracker/81269859036_Manojcv1.pdf', NULL, '1', '2024-05-14', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Doubt with Sustainability without any valid reason he left many company ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-14 06:22:21', 126, '2024-05-14 04:36:21', 0, NULL, 1),
(19222, 'Ankita Acharjee', '5', '8240104895', '8583840294', '94ankitaacharjee@gmail.com', '1994-12-29', 29, '2', '1', 'prakash ghosh', 'Engineer', 70000.00, 0, 0.00, 20000.00, 'Agartala tripura', 'electronic city bengaluru', '2405140007', '39', '1', 'upload_files/candidate_tracker/61386825641_Ankita_Acharjee_Resume (4).pdf', NULL, '1', '2024-05-14', 0, '', '3', '59', '2024-05-20', 204000.00, '', '5', '1970-01-01', '2', 'Selected for DM Team Relationship Executive Role in Bangalore Need to analyse in 7 days training', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-14 06:36:12', 60, '2024-05-18 06:00:21', 0, NULL, 1),
(19223, '', '0', '6380560142', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-14 06:43:09', 0, NULL, 0, NULL, 1),
(19224, 'MahaLakshmi R', '4', '9698416266', '', 'mahalakshmitnj2003@gmail.com', '2003-12-16', 20, '3', '2', 'Ramachandran', 'Dailywages', 13000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2405140009', '', '1', 'upload_files/candidate_tracker/49005444845_resume .pdf', NULL, '1', '2024-05-14', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'NOT FIT', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-14 06:43:19', 1, '2024-05-14 06:55:58', 0, NULL, 1),
(19225, 'Yallaling Madarakhandi', '5', '7090677568', '8197509250', 'yallaling0905@gmail.com', '2002-05-09', 22, '2', '2', 'anand', 'farmer', 50000.00, 2, 0.00, 20000.00, 'mugalakhod', 'hubbali', '2405140010', '39', '1', 'upload_files/candidate_tracker/23623518814_yallaling resume 1.pdf', NULL, '1', '2024-05-14', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-14 06:46:00', 126, '2024-05-14 03:45:28', 0, NULL, 1),
(19226, 'Abdulrazak Umbarje', '5', '8431584152', '8762843564', 'abdulrazakumbarje10@gmail.com', '2002-10-27', 21, '2', '2', 'Raju Umbarje', 'Mechanic', 24000.00, 2, 0.00, 20000.00, 'Hubli', 'Roopan Agrhara', '2405140011', '39', '1', 'upload_files/candidate_tracker/22525420631_Abdulrazak Resume....pdf', NULL, '1', '2024-05-14', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'salary expectation is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-14 06:47:13', 126, '2024-05-14 03:43:51', 0, NULL, 1),
(19227, 'Pushpa', '4', '6380560132', '9344299494', 'pushpamanikandan20@gmail.com', '2004-01-14', 20, '3', '2', 'Usha', 'Daily wages', 72000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2405140012', '', '1', 'upload_files/candidate_tracker/14959763116_My Resume .pdf', NULL, '1', '2024-05-14', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'NOT FIT', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-14 06:47:43', 1, '2024-05-14 06:51:11', 0, NULL, 1),
(19228, 'Abinesh M', '6', '6379871517', '9865136258', 'abineshmoorthy17@gmail.com', '1999-10-17', 24, '2', '2', 'Moorthy', 'Farmer', 50000.00, 2, 0.00, 18000.00, 'Vadalur', 'Kodambakkam', '2405140013', '1', '1', 'upload_files/candidate_tracker/86495591668_Abinesh fresher resume.pdf', NULL, '1', '2024-05-14', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate performance is little bit well ,but he is not suitable for sales , Because he intrested in sofware developer also he asked if there is any vacancy ongoing for fresher , so candidate is more doubt in his sustanity', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-14 06:56:46', 112, '2024-05-14 12:41:00', 0, NULL, 1),
(19229, 'Mahmad Sameer', '5', '9980256322', '9845718107', 'nssameer422@gmail.com', '2003-01-28', 21, '2', '2', 'Husensab', 'Auto driver', 10000.00, 3, 0.00, 20000.00, 'Venkatrayan pete Mudgal Raichur District', 'Hubbli', '2405140014', '1', '1', 'upload_files/candidate_tracker/54896104582_Mohmad Sameer -resume.pdf', NULL, '1', '2024-05-14', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of communication', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-14 07:16:31', 126, '2024-05-14 04:27:44', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19230, 'Vinod s', '5', '7010872344', '', 'vaishu.vinod@gmail.com', '1991-01-05', 33, '1', '1', 'Gayathri v', 'House wife', 30000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2405140015', '', '1', 'upload_files/candidate_tracker/94148642597_CSG_153416093_26908390.pdf', NULL, '1', '2024-05-14', 0, '55767', '5', '139', NULL, 0.00, '', '0', NULL, '1', 'rejected for our process ', '5', '2', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-14 09:18:32', 1, '2024-05-14 09:33:45', 0, NULL, 1),
(19231, 'Ajithkumar v', '5', '9047582594', '', 'Ajithvajithv2000@gmail.com', '2000-05-21', 23, '2', '2', 'Venkatesh', 'Farmar', 100000.00, 1, 13000.00, 22000.00, 'Vellore', 'Vellore', '2405140016', '1', '2', 'upload_files/candidate_tracker/40058541828_AK RE .pdf', NULL, '1', '2024-05-15', 10, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good also his voice is very low ,he need to improve more', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-14 01:19:38', 104, '2024-05-15 10:06:18', 0, NULL, 1),
(19232, 'Akashkumar k', '7', '7200118778', '', 'akashkumar54341@gmail.com', '1999-11-01', 24, '2', '2', 'Parent', 'Grocery shop', 96000.00, 1, 0.00, 18000.00, 'Arumbakkam Chennai', 'No.11 F block Mahatma Gandhi street MMDA Colony', '2405140017', '1', '1', 'upload_files/candidate_tracker/20294320332_AKASH KUMAR K_Resume 5.pdf', NULL, '1', '2024-05-15', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile his expectation 18k ', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-14 01:44:47', 104, '2024-05-15 03:01:39', 0, NULL, 1),
(19233, '', '0', '8754443727', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405140018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-14 01:52:54', 0, NULL, 0, NULL, 1),
(19234, 'Saniya Fathima', '4', '8056297199', '8056232967', 'saniyafathima935@gmail.com', '2003-08-11', 20, '2', '2', 'abdul waheed', 'proprietor', 300000.00, 2, 0.00, 18000.00, 'akbar sahib street triplicane', 'chennai', '2405140019', '1', '1', 'upload_files/candidate_tracker/35578319670_NAUKRI_SANIYA.pdf', NULL, '1', '2024-05-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-14 03:41:43', 1, '2024-05-15 11:13:33', 0, NULL, 1),
(19235, 'S.Deepika', '6', '9025810395', '', 'deepsdeepu.3835@gmail.com', '2003-09-02', 20, '2', '2', 'Saravanan', 'Auto driver', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2405140020', '50', '1', 'upload_files/candidate_tracker/51166538072_Deepika resume (1).pdf', NULL, '1', '2024-07-03', 0, '', '3', '59', '2024-07-08', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok  can be trained in our role Open for telesales but she may switch later need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-07-08', 1, '2024-05-14 03:48:38', 60, '2024-07-06 10:05:27', 0, NULL, 1),
(19236, 'Meena', '5', '7339607528', '', 'mmeena03297@gmail.com', '2001-12-03', 22, '2', '2', 'Jaya', 'Flower shop', 9000.00, 1, 0.00, 13000.00, 'Triplicane', 'Triplicane', '2405150001', '1', '1', 'upload_files/candidate_tracker/79868067407_MEENAS.pdf', NULL, '1', '2024-05-15', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is fresher , first interview communication skills low level and not handling pressure ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-15 04:47:28', 108, '2024-05-15 03:04:23', 0, NULL, 1),
(19237, 'M.venkatesh', '6', '8823573332', '8825733323', 'vinothvenkatesh2107@gmail.com', '2001-07-21', 22, '1', '2', 'V.murugan', 'Driver', 18000.00, 2, 15000.00, 18000.00, 'Kovilpatti', 'Kovilpatti', '2405150002', '', '2', 'upload_files/candidate_tracker/99885727902_venki_11zon.pdf', NULL, '1', '2024-05-15', 0, '77901', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no skill , and not interested to feld work  so not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-15 05:11:27', 112, '2024-05-15 03:20:31', 0, NULL, 1),
(19238, 'Heenal R Shah', '20', '7904597397', '9043341494', 'shahsidd28@gmail.com', '1996-10-06', 27, '2', '2', 'Lakshmi shah', 'housewife', 25000.00, 1, 0.00, 30000.00, '52/90 aarimuthu street', 'choolai', '2405150003', '1', '2', 'upload_files/candidate_tracker/26757174525_HEENAL.pdf', NULL, '1', '2024-05-15', 0, '', '3', '59', '2024-05-20', 346000.00, '', '5', '1970-01-01', '1', 'Selected for Gnanasekar Team in Staff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-15 05:13:25', 60, '2024-05-18 07:50:33', 0, NULL, 1),
(19239, 'Purushothaman.n', '6', '7401476890', '6380549599', 'mojopurushoth007@gmail.com', '1999-04-08', 25, '2', '2', 'Sujatha N', 'Hous wife', 20000.00, 3, 17658.00, 20000.00, '16/21 Rettai kuli Street thiruvottiyar Chennai -19', '16/21 Rettai Kuli Street Thiruvottiyar Chennai -19', '2405150004', '36', '2', 'upload_files/candidate_tracker/43235873709_RESUME FOR PURUSHOTH N (1) (1).pdf', NULL, '1', '2024-05-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-15 05:13:25', 112, '2024-05-16 12:12:23', 0, NULL, 1),
(19240, 'Saniya Fathima', '6', '8057297199', '8056232967', 'saniyafathima935@gmail.com', '2003-08-11', 20, '2', '2', 'abdul waheed', 'logistics Executive', 500000.00, 2, 0.00, 18000.00, 'akbar sahib street triplicane', 'chennai', '2405150005', '1', '1', 'upload_files/candidate_tracker/85527912981_NAUKRI_SANIYA.pdf', NULL, '1', '2024-05-15', 0, '', '2', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok. language issues she speak very well for english xxamp  Hindi, but tamil communication not good. just try 50/50. ', '5', '1', '', '1', '8', '', '2', '2024-06-05', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-15 06:13:43', 112, '2024-05-15 03:23:03', 0, NULL, 1),
(19241, 'Ragavi D', '6', '9150365350', '7397633521', 'ragavids.it@gmail.com', '2001-09-28', 22, '2', '2', 'D. sellam', 'Farmer', 5000.00, 0, 0.00, 18000.00, 'Perambalur', 'Perambalur', '2405150006', '46', '1', 'upload_files/candidate_tracker/9100402202_RAGAVI.pdf', NULL, '1', '2024-05-15', 0, '', '3', '59', '2024-05-20', 180000.00, '', '5', '1970-01-01', '2', 'Selecetd for Gopi Team Relationship Executive role Sustainability doubts a lot looking much of non voice and salary exp is high need to analyse in 7days training only', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-15 06:21:53', 60, '2024-05-18 06:20:04', 0, NULL, 1),
(19242, 'Koushalya T', '33', '6362069393', '8197037155', 'Koushalyat1999@gmail.com', '1999-11-20', 24, '2', '2', 'Chandrashekhar', 'Electrician', 35000.00, 1, 0.00, 25000.00, 'Ramanagar, hb halli', 'Btm layout, banglore', '2405150007', '39', '1', 'upload_files/candidate_tracker/836142963_Koushalya resume.PDF', NULL, '1', '2024-05-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-15 06:48:01', 1, '2024-05-15 06:55:39', 0, NULL, 1),
(19243, 'Shivakumar H S', '5', '6362140255', '6362069393', 'shivushivu5363@gmail.com', '2000-12-23', 23, '2', '2', 'Somashekhar h s', 'MBA', 30000.00, 1, 0.00, 3.50, 'Davangere', 'Banglore', '2405150008', '39', '1', 'upload_files/candidate_tracker/33275277994_2024-05-15 002850.381.ScanFile.pdf', NULL, '1', '2024-05-15', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested into sales field', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-15 06:49:54', 126, '2024-05-15 04:13:47', 0, NULL, 1),
(19244, 'Krishnaveni', '5', '7548859116', '8838855638', 'Krishnaveni0032@gmail.com', '1997-08-17', 26, '3', '2', 'Unnikrishnan', 'Hotel Management', 60000.00, 1, 23000.00, 25000.00, 'THIRUVELANGADU', 'CHENNAI', '2405150009', '', '2', 'upload_files/candidate_tracker/88704773082_Krishnaveni V U .pdf', NULL, '1', '2024-05-15', 0, '', '3', '59', '2024-06-11', 294000.00, '', '4', '2024-07-17', '2', 'Selected for RM Role Gnanasekar Team in Staff role Need to analyse in 7 days  training', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '2024-06-11', 1, '2024-05-15 07:07:08', 130, '2024-06-20 03:49:53', 0, NULL, 1),
(19245, 'Tamilarasan', '6', '7397547230', '8056547230', 'civiltamilarasan75@gmail.com', '2001-10-29', 22, '2', '2', 'Manjula', 'Housewife', 100000.00, 3, 0.00, 15000.00, 'Villupuram', 'Chennai', '2405150010', '36', '1', 'upload_files/candidate_tracker/4548587478_PDF 22101083.pdf', NULL, '1', '2024-05-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dress Code was too bad when he attend the Interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-15 08:00:24', 112, '2024-05-15 04:37:09', 0, NULL, 1),
(19246, 'Bharath k', '6', '8098040672', '9865278117', 'bharathkannan1817@gmail.com', '2004-06-12', 19, '2', '2', 'E. Kannan', 'Mason', 30000.00, 2, 0.00, 20000.00, 'Villupuram', 'Chennai', '2405150011', '36', '1', 'upload_files/candidate_tracker/12838084524_Image to pdf 10-May-2024.pdf', NULL, '1', '2024-05-15', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable sales ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-15 08:00:48', 112, '2024-05-15 04:34:26', 0, NULL, 1),
(19247, 'Athaye Rabbee', '6', '9087779675', '7358714678', 'athaye200@gmail.com', '2000-11-05', 23, '2', '2', 'Amanullah', 'Sales man', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2405150012', '36', '1', 'upload_files/candidate_tracker/1098472305_Athaye Resum.docx', NULL, '1', '2024-05-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fir for sales and he is not completed his Diplamo too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-15 09:08:29', 112, '2024-05-15 04:36:29', 0, NULL, 1),
(19248, 'R.Abdur Rahiman', '6', '9342515586', '9787294289', 'civilabdurrahiman@gmail.com', '2005-05-01', 19, '2', '2', 'K.Rahamathullah', 'Tea master', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405150013', '36', '1', 'upload_files/candidate_tracker/29986090586_abdur resum.pdf', NULL, '1', '2024-05-15', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-15 09:08:53', 112, '2024-05-15 04:35:05', 0, NULL, 1),
(19249, '', '0', '9381637926', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405150014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-15 11:28:29', 0, NULL, 0, NULL, 1),
(19250, 'lokesh', '11', '8925310947', '9003013157', 'lokeshmunusamy73@gmail.com', '2002-02-19', 22, '2', '2', 'k munusamy', 'business', 20000.00, 1, 0.00, 25000.00, 'guduvancheri', 'guduvancheri', '2405150015', '1', '1', 'upload_files/candidate_tracker/32663461122_LOKESH .M.pdf', NULL, '1', '2024-05-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-15 01:15:20', 112, '2024-05-16 03:27:43', 0, NULL, 1),
(19251, 'Ashokkumar M', '5', '9629039637', '6379507393', 'ashokashok103901@gmail.com', '2001-05-22', 22, '2', '2', 'Murugan', 'Father', 40000.00, 1, 22000.00, 35000.00, 'Any', 'Saidapet', '2405160001', '1', '2', 'upload_files/candidate_tracker/31321612566_Resume_19_04_2024_04_26_02_pm.pdf', NULL, '1', '2024-05-16', 15, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate revious expreiece is only dominios expected ctc is 35k but he wll not go for out side call and voice also not clear', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-16 03:52:09', 112, '2024-05-16 03:26:45', 0, NULL, 1),
(19252, 'kinito yepthomi', '6', '8837037120', '', 'kinitokirisakiyepz@gmail.com', '1995-08-30', 28, '6', '2', 'kaholi yepthomi', 'ex govt employee', 50000.00, 7, 30000.00, 40000.00, 'nagaland', 'nagaland', '2405160002', '', '2', 'upload_files/candidate_tracker/33359841866_Kini', NULL, '2', '2024-05-27', 10, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-16 05:20:26', 108, '2024-05-27 06:44:57', 0, NULL, 1),
(19253, 'DURAIVENKATRAJU S', '6', '6369498297', '8072782159', 'duraivenkatraju@gmail.com', '2003-03-05', 21, '2', '2', 'R. Sivakumar', 'Business', 25000.00, 1, 0.00, 2.80, 'Virudhunagar', 'Mylapore,chennai', '2405160003', '42', '1', 'upload_files/candidate_tracker/52741969570_ResumeVenkat (1).pdf', NULL, '1', '2024-05-16', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-16 05:28:54', 112, '2024-05-16 11:18:20', 0, NULL, 1),
(19254, 'SANKARAPU TEJA', '5', '7286840697', '', 'Sankaraputeja123@gmail.com', '2001-10-28', 22, '2', '2', 'S Subbaiah', 'Fresher', 25.00, 2, 0.00, 17000.00, 'Madanapalle', 'Madanapalle', '2405160004', '39', '1', 'upload_files/candidate_tracker/2889426592_STEJA.RESUME.pdf', NULL, '1', '2024-05-16', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of knowledge about the product and doubt with Sustainability', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-16 06:30:44', 126, '2024-05-16 04:48:09', 0, NULL, 1),
(19255, 'karthick m', '7', '9946504219', '', 'karthickmekkoth@gmail.com', '2003-03-05', 21, '2', '2', 'madhusoodhanan', 'manager', 80000.00, 1, 0.00, 20000.00, 'kerala', 'chennai', '2405160005', '1', '1', 'upload_files/candidate_tracker/77516559411_Karthik.pdf', NULL, '1', '2024-05-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-16 06:55:10', 112, '2024-05-16 06:05:25', 0, NULL, 1),
(19256, 'Sasikumar', '6', '8754888901', '9610147275', 'sasiikumarbabu555@gmail.com', '1995-11-05', 28, '1', '2', 'Babu', 'Provisional store', 20000.00, 1, 14000.00, 15000.00, 'Vadapalani', 'Vadapalani', '2405160006', '', '2', 'upload_files/candidate_tracker/83847393575_sasikumar.pdf', NULL, '1', '2024-05-16', 0, '77901', '5', '137', NULL, 0.00, '', '0', NULL, '1', 'not proper work experience and not fit for voice process', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-16 09:59:55', 1, '2024-05-16 10:36:23', 0, NULL, 1),
(19257, 'Muskaan Banu', '5', '9880890955', '', 'muskaanbanu98833@gmail.com', '2002-03-06', 22, '2', '2', 'Farida Banu', 'Hame maker', 30000.00, 2, 18000.00, 20000.00, 'Banglore', 'Banglore', '2405160007', '39', '2', 'upload_files/candidate_tracker/5362448102_Uff 2023 updated.pdf', NULL, '1', '2024-05-16', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Doubt with Sustainability left many companies with any valid reason ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-16 10:46:34', 126, '2024-05-16 05:11:16', 0, NULL, 1),
(19258, 'A.Barathwaj', '6', '9941432396', '', 'barathbarath7020@gmail.com', '2004-06-05', 19, '2', '2', 'Arunachalam v', 'Business', 100000.00, 1, 0.00, 15000.00, 'Panruti', 'Parugalatgure', '2405160008', '36', '1', 'upload_files/candidate_tracker/61219763241_ABARATHWAJ-goodcv.com-260424.125308.pdf', NULL, '1', '2024-05-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-16 10:51:15', 112, '2024-05-16 06:39:00', 0, NULL, 1),
(19259, 'Sanjai.k', '6', '8825486940', '', 'ksanjai21203@gmail.com', '2003-12-02', 20, '2', '2', 'Karthikeyan.r', 'Electrical shop', 40000.00, 1, 0.00, 18000.00, '28,barathiyar st,thorapadi,puthupet,panruti-607108', '28,Barathiyar St,Thorapadi,Puthupet,Panruti-607108', '2405160009', '36', '1', 'upload_files/candidate_tracker/2574647722_SANJAI K.pdf', NULL, '1', '2024-05-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-16 10:51:39', 112, '2024-05-16 06:39:13', 0, NULL, 1),
(19260, 'Guna Sekaran K', '11', '9363703435', '9080093269', 'Ksgunasekaran.karthik@gmail.com', '2003-07-15', 20, '2', '2', 'Karthik V', 'Driver', 250000.00, 1, 0.00, 185000.00, 'Chennai', 'Chennai', '2405160010', '1', '1', 'upload_files/candidate_tracker/85998089772_GUNASEKARAN K (2).pdf', NULL, '1', '2024-05-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-16 01:04:57', 112, '2024-05-17 12:47:44', 0, NULL, 1),
(19261, 'Bawasa Maraicar', '7', '7401033237', '', 'bawasa2001@gmail.com', '2001-10-24', 22, '2', '2', 'BADRUDEEN', 'FISHER MAN', 20000.00, 4, 0.00, 17000.00, 'parangipettai, Cuddalore', 'Triplicane, Chennai', '2405160011', '1', '1', 'upload_files/candidate_tracker/70466225504_Bawasa Resume - 2024.pdf', NULL, '1', '2024-05-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '2', '', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-16 01:45:35', 112, '2024-05-17 12:48:24', 0, NULL, 1),
(19262, 'aditya ghosh dastidar', '5', '9875532569', '', 'bua1997igd@gmail.com', '1997-03-02', 27, '4', '2', 'hrishikesh ghosh dastidar', 'retired goverment employee', 30000.00, 1, 250000.00, 400000.00, 'kolkata', 'pune', '2405160012', '', '2', 'upload_files/candidate_tracker/88130969320_ADITHYA RESUME.pdf', NULL, '2', '2024-05-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-16 06:13:51', 1, '2024-05-16 06:19:57', 0, NULL, 1),
(19263, 'Swathi', '4', '9677112568', '6383147018', 'swathirramdass@gmail.com', '2002-05-10', 22, '3', '2', 'Hemalatha.R', 'Billing clerk', 22000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2405170001', '', '1', 'upload_files/candidate_tracker/22690916597_swathi R - resume 2.pdf', NULL, '1', '2024-05-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-17 02:44:35', 1, '2024-05-17 03:38:13', 0, NULL, 1),
(19264, 'bhavana c', '5', '9591411520', '', 'bhavanac17503@gmail.com', '2000-10-03', 23, '2', '2', 'chandrashekhar', 'kooli', 300000.00, 2, 0.00, 3.20, 'gavanahalli rampura post chikkamagaluru', 'bangaloru', '2405170002', '39', '1', 'upload_files/candidate_tracker/67113671080_Bhavana .pdf', NULL, '1', '2024-05-17', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interested in accounting field', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-17 05:03:23', 126, '2024-05-17 02:34:01', 0, NULL, 1),
(19265, 'sneha priya p', '7', '7358481832', '', 'snehaapriya.03@gmail.com', '2001-10-03', 22, '2', '2', 'pradeep kumar', 'business', 35000.00, 1, 22000.00, 350000.00, 'chennai', 'chennai', '2405170003', '1', '2', 'upload_files/candidate_tracker/49883585511_Snehapriya.pdf', NULL, '1', '2024-05-17', 0, '', '1', '59', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', NULL, NULL, NULL, 1, '2024-05-17 05:06:57', 1, '2024-05-17 07:42:18', 0, NULL, 1),
(19266, 'Sabarish.b', '26', '9360359147', '9360359147', 'bsabarish07@gmail.com', '2001-06-13', 0, '2', '2', 'Bhuvaragan', 'Business', 60000.00, 1, 12300.00, 16000.00, 'Chennai', 'Chennai', '2405170004', '1', '2', 'upload_files/candidate_tracker/71186279875_SABARISH_RESUME-33.docx', NULL, '1', '2024-05-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '2', '', '1', '8', '', '2', '1970-01-01', '1', '4', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-17 05:42:52', 112, '2024-05-17 12:49:08', 0, NULL, 1),
(19267, '', '0', '7204740954', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405170005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-17 05:56:07', 0, NULL, 0, NULL, 1),
(19268, '', '0', '9900865728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405170006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-17 05:56:09', 0, NULL, 0, NULL, 1),
(19269, 'M . Narasimman', '5', '9962404528', '7338922334', 'mnarasimman1197@gmail.com', '1997-07-30', 26, '2', '2', 'M.Kumari', 'Homemaker', 40000.00, 1, 325000.00, 450000.00, 'Chennai', 'Chennai', '2405170007', '1', '2', 'upload_files/candidate_tracker/15761387293_Narasimman_Madhanagopal_Resume_15 (1).pdf', NULL, '1', '2024-05-17', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Over expectation on salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-17 06:43:06', 112, '2024-05-17 12:50:33', 0, NULL, 1),
(19270, 'Balakrishanan', '6', '9025489712', '8220449800', 'balkrishnan809@gmail.com', '2001-12-08', 22, '2', '2', 'Rajendran', 'Painting', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Choolaimedu', '2405170008', '36', '1', 'upload_files/candidate_tracker/19546846918_balakirshan resume.docx', NULL, '3', '2024-05-17', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-17 07:09:15', 112, '2024-05-17 12:49:48', 0, NULL, 1),
(19271, 'Sakthi Saravanan', '6', '9790901167', '9790885818', 'sakthisaravanan1019@gmail.com', '2000-11-10', 23, '2', '2', 'Chokkalingam', 'Sales man', 37000.00, 1, 0.00, 18000.00, 'Kodambakkam', 'Chennai Kodambakkam', '2405170009', '36', '1', 'upload_files/candidate_tracker/70780388827_TapScanner 11-04-2024-19?15.pdf', NULL, '1', '2024-05-20', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested in sales field work he is interested in collection work !!', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-17 07:09:26', 112, '2024-05-20 11:53:24', 0, NULL, 1),
(19272, 'S.praveena', '11', '6374846033', '9382152003', 'praveenachikku03@gmail.com', '2001-05-03', 23, '3', '2', 'Shankar', 'Driver', 20000.00, 1, 0.00, 15000.00, 'No.27, Miller\'s road kilpauk chennai-10', 'No.27, Miller\'s road kilpauk chennai-10', '2405170010', '', '1', 'upload_files/candidate_tracker/85124644881_praveena.pdf', NULL, '1', '2024-05-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-17 07:52:16', 1, '2024-05-17 09:06:50', 0, NULL, 1),
(19273, 'Lavanya Potluri', '33', '7032762274', '7075685101', 'lavanyapotluri23@gmail.com', '2001-04-18', 23, '6', '2', 'Polturi Akkaiah', 'Agriculture', 6000.00, 3, 0.00, 300000.00, 'Sri Potti Sriramulu Nellore', 'Sri Potti Sriramulu Nellore', '2405170011', '', '1', 'upload_files/candidate_tracker/97777057301_Resume.pdf', NULL, '2', '2024-05-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-17 08:07:31', 1, '2024-05-17 12:22:10', 0, NULL, 1),
(19274, 'Ruby kumari', '5', '7061384664', '', 'sruby6689@gmail.com', '1998-01-01', 26, '2', '1', 'Paramanand singh', 'Pvt job', 1000000.00, 3, 400000.00, 5.50, 'Jharkhand', 'Delhi', '2405170012', '1', '2', 'upload_files/candidate_tracker/92683389388_Ruby resume.pdf', NULL, '2', '2024-05-17', 15, '', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good Communication and knowledge about the insurance can process for the next round', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-17 09:22:21', 126, '2024-05-17 05:00:18', 0, NULL, 1),
(19275, 'Nimisha Srivastava', '5', '8299013378', '9415869818', 'nimishasrivastava510@gmail.com', '1999-04-10', 25, '2', '2', 'Akhilesh kumar Srivastava', 'Businessman', 7000.00, 0, 0.00, 3000000.00, 'Blw jalallipatti pahari gate', 'Varanasi', '2405170013', '1', '1', 'upload_files/candidate_tracker/13990144312_CV_2024020418343095.pdf', NULL, '2', '2024-05-17', 0, '', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good communication can process for next round', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-17 09:27:22', 126, '2024-05-17 03:24:06', 0, NULL, 1),
(19276, 'Keerthana.M.S', '4', '9611280687', '8147329394', 'Keerthipreri@gmail.com', '1999-08-16', 24, '2', '2', 'Marappa', 'Paint contractor', 80000.00, 1, 0.00, 20000.00, 'Anekal', 'Anekal', '2405170014', '47', '1', 'upload_files/candidate_tracker/53441598699_Keerthana MS.pdf', NULL, '1', '2024-05-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-17 09:29:17', 1, '2024-05-17 09:34:07', 0, NULL, 1),
(19277, 'Bijumon.s', '5', '6380041205', '9790163214', 'biju0797@gmail.com', '1997-06-11', 26, '2', '2', 'Smitha -mother', 'Business', 25000.00, 8899, 0.00, 30000.00, 'Coimbatore', 'Coimbatore', '2405170015', '1', '1', 'upload_files/candidate_tracker/9476461396_Bijumon .pdf', NULL, '1', '2024-05-20', 0, '', '3', '59', '2024-06-25', 288000.00, '', '1', '1970-01-01', '2', 'Selected for RM Role in Madiwaala fresher for our roles need to be trained a lot can give a try', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1022', '', '55555', '5151', '2024-06-25', 1, '2024-05-17 09:58:38', 60, '2024-06-25 02:43:33', 0, NULL, 1),
(19278, 'surya', '5', '8056417904', '', 'tnsurya23@gmail.com', '2000-03-26', 24, '2', '2', 'thenarasu', 'hr', 45000.00, 1, 0.00, 27000.00, 'dharmapuri', 'chennai', '2405170016', '1', '2', 'upload_files/candidate_tracker/3931843208_surya.pdf', NULL, '1', '2024-05-17', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of communication', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-17 10:39:31', 131, '2024-06-03 10:33:39', 0, NULL, 1),
(19279, '', '0', '9449328880', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405170017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-17 12:38:43', 0, NULL, 0, NULL, 1),
(19280, 'Anubhav Shrivastava', '33', '8103918744', '', 'ayushshrivastava436@gmail.com', '1996-07-18', 27, '6', '2', 'dilip shrivastava', 'retired', 56000.00, 2, 29000.00, 33000.00, 'Bhopal', 'Bhopal', '2405170018', '', '2', 'upload_files/candidate_tracker/95163547_Anubhav Shrivastava Resume- ( NEW).doc', NULL, '2', '2024-06-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-17 04:46:47', 1, '2024-05-22 05:56:09', 0, NULL, 1),
(19281, 'avighna s gowda', '5', '9886650015', '', 'avig4692@gmail.com', '2001-11-11', 22, '6', '2', 'gv latha', 'home maker', 40000.00, 1, 0.00, 30000.00, 'mysore', 'mysore', '2405170019', '', '1', 'upload_files/candidate_tracker/4339480234_Avighna.resume updated.pdf', NULL, '1', '2024-06-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-17 04:50:49', 1, '2024-05-17 04:55:21', 0, NULL, 1),
(19282, 'Devashetty nagaraju', '33', '9704393096', '7893710137', 'Devashettynagaraju@gmail.com', '1999-10-07', 24, '4', '2', 'Sathayanarayana', 'Business', 25000.00, 0, 23000.00, 35000.00, 'Hyderabad', 'Hyderabad', '2405170020', '', '2', 'upload_files/candidate_tracker/45265223798_DOC-20221215-WA0001..docx', NULL, '2', '2024-05-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-17 07:35:21', 1, '2024-05-17 07:39:28', 0, NULL, 1),
(19283, 'Gobinath.s', '4', '9344412898', '', 'gobigb123@gmail.com', '2000-07-28', 23, '2', '2', 'Singaperumal', 'Former', 40000.00, 3, 0.00, 25000.00, 'Thirukkattupalli', 'Thirukkattupalli', '2405180001', '1', '1', 'upload_files/candidate_tracker/37419305112_Gopi resume.pdf', NULL, '1', '2024-05-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit...expected high currently in a 25k salary package', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-18 04:09:14', 108, '2024-05-18 12:58:38', 0, NULL, 1),
(19284, 's.mohamed jassim', '6', '9345406530', '9597505258', 'mohamedjassim3355@gmail.com', '2002-01-05', 22, '1', '2', 'sultan arief', 'business', 40000.00, 2, 14000.00, 19000.00, 'karaikal', 'chennai', '2405180002', '', '2', 'upload_files/candidate_tracker/52243146067_IMG-20240518-WA0000.pdf', NULL, '1', '2024-05-18', 0, '77870', '3', '59', '2024-05-21', 192000.00, '', '3', '2024-09-30', '2', 'Selected for Kannan Team Consultant Role Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-18 04:33:24', 60, '2024-05-21 10:24:59', 0, NULL, 1),
(19285, 'K.Nivetha', '4', '9342289107', '7305199327', 'nivinivetha293@gmail.com', '2002-08-15', 21, '2', '2', 'T.Karthikeyan', 'Carpenter', 60000.00, 2, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2405180003', '1', '1', 'upload_files/candidate_tracker/70311546056_Cv maker_1715924875029.pdf', NULL, '1', '2024-05-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'past two years prepare for govt job..next month also exam ...so choosing job in a parttime way..not fit', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-18 04:43:49', 108, '2024-05-18 12:56:51', 0, NULL, 1),
(19286, 'Muthazhagan. K', '4', '6380127194', '', 'k.muthazhagan2003@gmail.com', '2003-08-05', 20, '2', '2', 'Kalaivanan. J', 'Farmer', 4000.00, 1, 0.00, 15000.00, 'Mela Punavasal, Thiruvayaru, thanjavur', 'Mela Punavasal, thiruvaiyaru, Thanjavur', '2405180004', '1', '1', 'upload_files/candidate_tracker/61450877050_muthu_resume[4).docx', NULL, '1', '2024-05-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'mcom and CA preparation in a parttime intrested in tally only..not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-18 04:44:00', 108, '2024-05-18 12:57:40', 0, NULL, 1),
(19287, 'Arikesh shanmugavel', '6', '9677822617', '9345406530', 'arikeshsmart@gmail.com', '2002-01-04', 22, '1', '2', 'Shanmugavel', 'Business', 20000.00, 2, 0.00, 17000.00, 'Tharangambadi', 'Chennai', '2405180005', '', '1', 'upload_files/candidate_tracker/3679830737_Graphic Designer Resume_20240318_223420_0000.pdf', NULL, '1', '2024-05-18', 0, '77864', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And pronunciation issue', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-18 04:56:28', 112, '2024-05-18 10:48:44', 0, NULL, 1),
(19288, 'jonathan daniel n', '6', '9342519232', '8610431388', 'Jonathandaniel3079@gamil.com', '2001-08-29', 22, '2', '2', 'nesakumar j', 'business', 30000.00, 1, 56750.00, 20000.00, 'mylapore chennai', 'mylapore chennai', '2405180006', '1', '2', 'upload_files/candidate_tracker/5628027896_Jonathan daniel.N Resume.pdf', NULL, '1', '2024-05-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-18 05:06:25', 112, '2024-05-18 12:25:15', 0, NULL, 1),
(19289, 'mathew', '6', '7397493032', '', 'mathewmathewvj@gmail.com', '2001-05-26', 22, '2', '2', 'manoharan', 'painter', 20000.00, 2, 15000.00, 18000.00, 'chennai', 'Chennai', '2405180007', '42', '2', 'upload_files/candidate_tracker/58152495862_Mathew.pdf', NULL, '1', '2024-05-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected.. 7 days training will analyse ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-18 05:44:14', 112, '2024-05-18 12:22:21', 0, NULL, 1),
(19290, 'Vijay M', '6', '6369243902', '', 'vijayirp123@gmail.com', '2001-07-10', 22, '2', '2', 'Dhandapani . M', 'Building constructor', 300000.00, 1, 15000.00, 17000.00, 'No : 5 Kumarasamy Street, Pallavaram, Chennai -43', 'No : 5 Kumarasamy Street, Pallavaram, Chennai -43', '2405180008', '42', '2', 'upload_files/candidate_tracker/14626723096_vijayresumenew2023.doc', NULL, '1', '2024-05-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' shortlist for team ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-18 05:47:55', 112, '2024-05-18 12:23:00', 0, NULL, 1),
(19291, 'Mithun nair', '32', '7483944391', '9353805230', 'MITHUNmuthuvila@gmail.com', '1988-07-30', 35, '2', '1', 'Shivani', 'House wife', 68000.00, 1, 800000.00, 900000.00, 'Trivandrum', 'Madiwala', '2405180009', '39', '2', 'upload_files/candidate_tracker/94198269416_Shivani.pdf', NULL, '2', '2024-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-18 06:15:17', 1, '2024-05-18 06:21:02', 0, NULL, 1),
(19292, 'ShinimolSajeev S', '8', '7871760123', '7708135656', 'shinisajii1429@gmail.com', '1999-01-29', 25, '2', '2', 'Gv.Sajeev', 'Fabricator', 40000.00, 1, 17500.00, 25000.00, 'Thiruvottiyur chennai', 'Chennai', '2405190001', '1', '2', 'upload_files/candidate_tracker/54769493754_CV Shinimol.pdf', NULL, '1', '2024-05-20', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain and high expectation holding offer with esaf small finance.', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-19 03:47:24', 104, '2024-05-20 11:08:41', 0, NULL, 1),
(19293, 'Bibin T Roy', '5', '8075878205', '', 'bibintroy1999@gmail.com', '1999-10-03', 24, '2', '2', 'Sobha', 'Nil', 0.00, 0, 20000.00, 30000.00, 'Hulimavu', 'Hulimavu', '2405190002', '1', '2', 'upload_files/candidate_tracker/40689112940_BIBINTROY_Financial Analyst-2.pdf', NULL, '1', '2024-05-20', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-19 04:34:55', 126, '2024-05-22 12:57:38', 0, NULL, 1),
(19294, 'Niveditha S', '6', '7397196715', '6374968204', 'niveammu567@gmail.com', '1999-10-14', 24, '2', '1', 'Leela C', 'Teacher', 60000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405200001', '1', '1', 'upload_files/candidate_tracker/51483487423_CV_2024051507045794.pdf', NULL, '1', '2024-05-20', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate just looking for job but no need . she informed only working 3 month or 6 months only so she not fit or job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-20 04:19:44', 112, '2024-05-20 10:04:30', 0, NULL, 1),
(19295, 'P HARI PRASATH', '6', '7092958788', '9840394826', 'hariprasath1217@gmail.com', '2003-04-12', 21, '2', '2', 'V PonPandi', 'Cooli', 15000.00, 3, 0.00, 18000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2405200002', '46', '1', 'upload_files/candidate_tracker/10950151603_Hari resume 1.pdf', NULL, '1', '2024-05-20', 0, '', '3', '59', '2024-05-23', 192000.00, '', '5', '1970-01-01', '2', 'Seleceted fro relationship executive role banu team need to analyse in 7 days and confirm,', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-20 04:54:02', 60, '2024-05-22 05:14:36', 0, NULL, 1),
(19296, 'P kishore', '5', '6380383751', '', 'Kishore.yesu17@gmail.com', '2001-07-26', 22, '2', '1', 'P yesu', 'Civil contractor', 100000.00, 2, 0.00, 450000.00, 'Avadi', 'Guindy', '2405200003', '1', '2', 'upload_files/candidate_tracker/11649910915_kishore Updated Resume.pdf', NULL, '1', '2024-05-20', 0, '', '3', '59', '2024-05-23', 400000.00, '', '5', '1970-01-01', '1', 'Selected for Jagadeesh team Need to analyse in 7 days Sustainability need to focus can give a try', '5', '1', '1', '4', '6', '', '2', '1970-01-01', '1', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-20 05:03:03', 60, '2024-05-22 05:20:45', 0, NULL, 1),
(19297, 'S.Anitha', '6', '8870855306', '', 'selvamanitha03@gmail.com', '1996-06-25', 27, '2', '2', 'I. Selvam', 'Welder', 10000.00, 1, 15000.00, 20000.00, 'Thiruvottriyur Chennai', 'Thiruvottriyur Chennai', '2405200004', '25', '2', 'upload_files/candidate_tracker/35911433533_My Resume.pdf', NULL, '1', '2024-05-20', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'distace is very long and she need work from home ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-20 05:05:32', 112, '2024-05-20 11:17:50', 0, NULL, 1),
(19298, 'mahabharathi m', '4', '8056349802', '9751303082', 'mahabharathimtnj@gmail.com', '2002-02-23', 22, '2', '2', 'marimuthu m', 'farmer', 12000.00, 0, 0.00, 15000.00, 'Thirukkattupalli', 'Thirukkattupalli', '2405200005', '1', '1', 'upload_files/candidate_tracker/84383204497_Resume mahabharathi.docx', NULL, '1', '2024-05-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is ok with the profile completed bsc and msc and worked as a software trainer and telecalling for institute joining process.....5 month worked and due to family issue releived, travel to office 1 hour and father farmer and have no laptop, ready to join, expected 13 to 14k kindly check once and confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-20 05:15:45', 112, '2024-05-20 02:37:43', 0, NULL, 1),
(19299, 'NISANTHAN R', '4', '9047842248', '', 'r.nisanthan18@gmail.com', '1999-08-19', 24, '1', '2', 'Raman', 'Farmar', 5000.00, 1, 0.00, 15000.00, 'Pallavarayanpatti', 'Pallavarayanpatti', '2405200006', '', '1', 'upload_files/candidate_tracker/80454478212_Resume.pdf', NULL, '1', '2024-05-20', 0, 'P1287', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'not fit', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-20 05:35:12', 1, '2024-05-20 05:41:19', 0, NULL, 1),
(19300, 'Govardhan', '5', '9390169856', '', 'burragovardhannaidu@gmail.com', '1999-07-13', 24, '2', '2', 'Doraswamy', 'Farmer', 15000.00, 1, 18000.00, 18000.00, 'Madanapalli Andhra Pradesh', 'Madiwala Bangalore', '2405200007', '1', '2', 'upload_files/candidate_tracker/64699987978_Govardhan burra R.pdf', NULL, '1', '2024-05-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1022', '0', NULL, NULL, NULL, 1, '2024-05-20 06:11:32', 1, '2024-05-20 06:20:28', 0, NULL, 1),
(19301, 'Sandhiya s', '5', '9080488463', '9543198654', 'sandysandhiya9599@gmail.com', '1999-05-09', 25, '2', '2', 'Sakthivel', 'Nil', 25000.00, 1, 15500.00, 25000.00, 'Chennai', 'Chennai', '2405200008', '1', '2', 'upload_files/candidate_tracker/65571971360_Sandhiya Resume 3.pdf', NULL, '1', '2024-05-20', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Salary Expectatiojn is to high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-05-20 06:16:29', 112, '2024-05-20 02:37:20', 0, NULL, 1),
(19302, 'Stephanas Thobias A', '6', '9003270342', '6379708143', 'stephanas19041996@gmail.com', '1996-04-19', 28, '2', '2', 'Chandra A', 'House wife', 0.00, 2, 0.00, 16000.00, '14-54, alangaramadam Street, kanyakumari - 629176', 'Thousand lights Chennai', '2405200009', '1', '1', 'upload_files/candidate_tracker/97866375959_StephanasThobiasA-Resume.pdf', NULL, '1', '2024-05-20', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'short timely changed and company  and voice not clear', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-20 09:14:04', 112, '2024-05-20 04:11:40', 0, NULL, 1),
(19303, 'santhiya SriMuthukrishnan', '6', '8838841706', '9500273515', 'santhiyasri2021@gmail.com', '2003-05-07', 21, '2', '2', 'Muthukrishnan U', 'IOC Manager', 35000.00, 1, 0.00, 18000.00, 'Tanjavur', 'Tanjavur', '2405200010', '34', '1', 'upload_files/candidate_tracker/6943562868_resume__348_1701966813040.pdf', NULL, '1', '2024-05-20', 0, '', '3', '59', '2024-05-27', 168000.00, '', '3', '2024-08-10', '2', 'Selected for Relationship Executive Role Need to analyse in 7days  and confirm', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-20 10:02:24', 127, '2024-05-30 02:38:11', 0, NULL, 1),
(19304, 'Pavithra', '6', '6369473182', '', 'Pavip9393@gmail.com', '2003-10-10', 20, '2', '2', 'Saravanan', 'Cooley', 15000.00, 1, 0.00, 15.00, 'Washermenpet', 'Same', '2405200011', '1', '1', 'upload_files/candidate_tracker/76311279424_pavithra s.pdf', NULL, '1', '2024-05-21', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-20 12:29:13', 104, '2024-05-21 02:54:46', 0, NULL, 1),
(19305, 'Roshini Shanmuganathan', '5', '9943889470', '9443959470', 'roshiniselvam2002@gmail.com', '2002-03-30', 22, '2', '2', 'Shanmuganathan', 'Business', 100000.00, 1, 320000.00, 350000.00, 'Salem', 'Chennai', '2405200012', '1', '2', 'upload_files/candidate_tracker/26183526351_ROSHINI SHANMUGANATHAN_20240403_145249_0000.pdf', NULL, '1', '2024-05-21', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-20 03:25:27', 112, '2024-05-21 02:57:41', 0, NULL, 1),
(19306, 'Anushya Shanmugam', '6', '6379948592', '', 'anuanushya00@gmail.com', '1999-03-26', 25, '2', '2', 'Shanmugam', 'Security', 15000.00, 1, 180000.00, 280000.00, 'Chennai', 'Chennai', '2405200013', '1', '2', 'upload_files/candidate_tracker/69430317228_Anushya S.pdf', NULL, '1', '2024-05-23', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not suitable for the role looking for ID domain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-20 04:15:49', 112, '2024-05-23 03:01:12', 0, NULL, 1),
(19307, 'sanjay gandh', '5', '8610531311', '', 'sanjaygandh31@gmail.com', '1998-01-31', 26, '2', '2', 'loganathan', 'sub inspector of police', 80000.00, 1, 1.60, 350000.00, 'chennai', 'chennai', '2405200014', '1', '2', 'upload_files/candidate_tracker/64173104770_SANJAY RESUME 1.pdf', NULL, '1', '2024-05-21', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-20 06:46:16', 112, '2024-05-21 02:57:50', 0, NULL, 1),
(19308, 'Kasthuri A', '6', '7010367293', '6380919326', 'deepankasthuri375@gmail.com', '2003-03-29', 21, '2', '1', 'Deepan M', 'Electronic technician', 15000.00, 1, 0.00, 16000.00, 'CHENNAI', 'CHENNAI', '2405210001', '42', '1', 'upload_files/candidate_tracker/76204583469_Adobe Scan 20-May-2024.pdf', NULL, '1', '2024-05-21', 0, '', '3', '59', '2024-05-23', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team Long Distance but the candidate is good and she is open to travel can give a try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-21 03:49:09', 60, '2024-05-22 05:23:32', 0, NULL, 1),
(19309, 'Dhinakaran', '6', '9677675484', '', 'jaguardhina@gmail.com', '2004-02-26', 20, '1', '2', 'Kuppusamy', 'Kanchan', 18000.00, 0, 0.00, 18000.00, 'Chengam Amarnatha pudhur', 'Chengam Amarnatha pudhur', '2405210002', '', '1', 'upload_files/candidate_tracker/79449924899_Dhinakaran_compressed.pdf', NULL, '1', '2024-05-21', 0, '77882', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-21 04:12:25', 112, '2024-05-21 02:58:30', 0, NULL, 1),
(19310, 'Sri ganesh babu B', '5', '9944470513', '8807670513', 'sriganeshbabubece2024@gmail.com', '2002-09-04', 21, '2', '2', 'Balamurugan S', 'Student', 50000.00, 1, 0.00, 20000.00, 'Pudukkottai, Tamilnadu', 'Bommanahalli, Bangalore', '2405210003', '51', '1', 'upload_files/candidate_tracker/20957981823_I am sharing', NULL, '1', '2024-05-21', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of communication ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-21 05:00:46', 131, '2024-06-03 10:31:34', 0, NULL, 1),
(19311, 'PRASHANTH E', '6', '7338905085', '', 'prashanthelumalai2099@gmail.com', '1999-12-05', 24, '3', '2', 'PARAMESHWARI', 'Cooli', 17000.00, 1, 16500.00, 23000.00, 'Kallakurichi', 'Chennai', '2405210004', '', '2', 'upload_files/candidate_tracker/74842282167_Pras.res.pdf', NULL, '1', '2024-05-21', 90, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-21 05:14:53', 112, '2024-05-21 02:57:10', 0, NULL, 1),
(19312, 'gowtham m', '33', '9738168007', '', 'gowthamm22062000@gmail.com', '2000-06-22', 23, '2', '2', 'shanthi m', 'tailor', 90000.00, 0, 0.00, 300000.00, 'marathalli', 'marathalli', '2405210005', '49', '1', 'upload_files/candidate_tracker/51209888801_Document-WPS Office 3.pdf', NULL, '1', '2024-05-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-21 05:20:40', 1, '2025-06-18 08:22:48', 0, NULL, 1),
(19313, 'Dhamodharan', '1', '8270812822', '', 'aasaidhamodharan174@gmail.com', '2002-02-05', 22, '2', '2', 'Krishna moorthy', 'Farmer', 10000.00, 3, 0.00, 15000.00, 'Chidambaram', 'Chennai', '2405210006', '36', '1', 'upload_files/candidate_tracker/13953285402_RESUME. dhamo,.pdf', NULL, '1', '2024-05-22', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate slow listening and voice also very low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-21 06:12:08', 112, '2024-05-22 01:15:35', 0, NULL, 1),
(19314, 'S.STEPHYLAVANAYA', '6', '9840990982', '9840429563', 'merlinesundar4@gmail.com', '1995-02-07', 29, '3', '2', 'Merlin', 'welding', 3000.00, 2, 10000.00, 12000.00, 'EGMORE', 'Mount ROAD', '2405210007', '', '1', 'upload_files/candidate_tracker/79823546661_Steffi.pdf', NULL, '1', '2024-05-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '1', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-21 06:20:00', 112, '2024-05-21 03:00:27', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19315, 'jaishree b', '6', '6369972788', '', 'jaishree02980300@gmail.com', '2000-03-03', 24, '1', '2', 'balasubramani', 'laundary not', 20000.00, 2, 3.50, 3.80, 'chennai', 'chennai', '2405210008', '', '2', 'upload_files/candidate_tracker/52943735299_Jaishree.pdf', NULL, '1', '2024-05-21', 0, '551678', '3', '59', '2024-05-23', 340000.00, '', '5', '1970-01-01', '1', 'Selected for Porrselvan Team in Coimmitment of 2L Biz in May june then 3.8 L from July', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-21 06:26:00', 60, '2024-05-22 05:48:31', 0, NULL, 1),
(19316, 'Hemalatha', '11', '9361646293', '', 'hemalathasridhar2320@gmail.com', '2000-09-23', 23, '2', '2', 'Sridhar', 'Furniture', 20000.00, 0, 0.00, 15000.00, 'Kattuppakkam', 'Kattuppakkam', '2405210009', '1', '1', 'upload_files/candidate_tracker/12928954822_hemalatha.pdf', NULL, '1', '2024-05-21', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Had hearing issue will not suitable for this position. Location also far distance.', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-21 06:36:01', 104, '2024-05-21 02:55:43', 0, NULL, 1),
(19317, 'GONDELA VIKRAM', '11', '8099221937', '', 'vikramvicky9100@gmail.com', '1999-08-04', 24, '3', '2', 'G Nirmala', 'House wife', 150000.00, 1, 0.00, 30000.00, 'Vizianagaram', 'Vizianagaram', '2405210010', '', '1', 'upload_files/candidate_tracker/28222573066_Vikram Resume v02.pdf', NULL, '2', '2024-05-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-21 07:53:15', 1, '2024-05-21 08:00:11', 0, NULL, 1),
(19318, 'Karthikeyan.R', '5', '6380883827', '', 'karthikeyan.karthick17@gmail.com', '1998-08-17', 25, '2', '1', 'C.Raja', 'Postal Department (Retried)', 20000.00, 1, 20000.00, 22000.00, 'Chennai Kolathur', 'Chennai Kolathur', '2405210011', '1', '2', 'upload_files/candidate_tracker/81054525870_Karthikeyan Resume_new.pdf', NULL, '1', '2024-05-23', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no convincing skills and sales knowledge', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-05-21 11:45:52', 127, '2024-05-24 10:03:01', 0, NULL, 1),
(19319, 'altamash siraj', '5', '7978304549', '', 'altamashsiraj111@gmail.com', '1997-09-26', 26, '2', '2', 'md.sirajuddin', 'private', 700000.00, 2, 0.00, 500000.00, 'jharkhand', 'Bangalore', '2405210012', '1', '1', 'upload_files/candidate_tracker/37308558129_Siraj MBA BE.pdf', NULL, '1', '2024-05-22', 0, '', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good Communication can process for next round', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-21 11:56:11', 126, '2024-05-22 12:46:13', 0, NULL, 1),
(19320, 'GAYATHRI S', '11', '6374565403', '9962341294', 'gayathri.sambath4@gmail.com', '2001-09-12', 22, '2', '2', 'SAMPATH . A', 'Plumbing', 8000.00, 3, 0.00, 15000.00, 'No 2/121, bajanai Kovil Street, ponmar, Chennai', 'No 2/121, bajanai Kovil Street, ponmar, Chennai', '2405210013', '1', '1', 'upload_files/candidate_tracker/52587983427_Gayathri.S Resume.pdf', NULL, '1', '2024-05-22', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not clear with her communication and  not active person', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-21 12:53:07', 112, '2024-05-22 11:22:16', 0, NULL, 1),
(19321, 'Priya.G', '5', '8248100226', '8438864531', 'beaula.shalom@gmail.com', '2001-10-02', 22, '2', '2', 'Jayanthi', 'Accounts assistant', 36000.00, 1, 24000.00, 27000.00, '18/a naresh nagar karukku Ambattur Chennai 600053', '18/a naresh nagar karukku Ambattur Chennai 600053', '2405210014', '1', '2', 'upload_files/candidate_tracker/14911913780_priya-G.pdf', NULL, '1', '2024-05-22', 30, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Kindly reschedule', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-21 02:40:11', 138, '2024-05-29 12:51:50', 0, NULL, 1),
(19322, 'Mohammed Maznavi A', '6', '8925151158', '9894719837', 'mohammedamaznavi@gmail.com', '2000-10-30', 23, '2', '2', 'Abubaker Buhari H.M', 'Business', 70000.00, 1, 0.00, 20000.00, 'Thoothukudi', 'Chennai', '2405220001', '32', '1', 'upload_files/candidate_tracker/74114711285_DOC-20240209-WA0002..pdf', NULL, '1', '2024-05-22', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Performance,Communication As Well As Voice Very Low And More Doubt in His Sustainable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-22 02:07:43', 112, '2024-05-22 11:13:15', 0, NULL, 1),
(19323, 'Sridevi', '5', '9071056789', '8660052465', 'Raosridevi09@gmail.com', '2002-10-25', 21, '2', '2', 'Prasanna rao', 'Accountant', 300000.00, 1, 18.00, 20.00, 'Udupi', 'Bangalore', '2405220002', '1', '2', 'upload_files/candidate_tracker/58351283061_CV_2024041515263057 (2).pdf', NULL, '1', '2024-05-22', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Doubt in sustain  interested in fashion designing field', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-22 03:11:44', 126, '2024-05-22 10:52:34', 0, NULL, 1),
(19324, 'K.MAHESH BOOPATHI', '6', '9655735712', '', 'maheshboopathi542@gmail.com', '2000-04-05', 24, '2', '2', 'V.KUPPUSAMY', 'Farmer', 25000.00, 1, 15000.00, 18000.00, 'Palani', 'Chennai', '2405220003', '1', '2', 'upload_files/candidate_tracker/45064785046_maheshboopathi.cv.pdf', NULL, '1', '2024-05-22', 0, '', '3', '59', '2024-05-27', 228000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-22 04:07:36', 60, '2024-05-24 04:36:13', 0, NULL, 1),
(19325, 'Monisha B.V.', '6', '7010734369', '', 'monishabv1932@gmail.com', '2000-03-19', 24, '2', '2', 'Venkata Ramana.B', 'Railway employee', 35000.00, 0, 0.00, 400000.00, 'Arakkonam', 'Arakkonam', '2405220004', '1', '1', 'upload_files/candidate_tracker/54676300075_CV_2024051711533373.pdf', NULL, '1', '2024-05-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok,team Reference.\nfresher communication ok. provide fresher salary and pls confirm the joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-22 04:31:16', 108, '2024-05-22 03:34:17', 0, NULL, 1),
(19326, 'Siva', '5', '8148827212', '8122991937', 'sivagovindhasami@gmail.com', '2009-05-22', 0, '1', '2', 'Govindhasami R', 'Sivagami', 90000.00, 1, 0.00, 28000.00, 'Tiruvannamalai', 'Velachery', '2405220005', '', '1', 'upload_files/candidate_tracker/81608741024_SIVAGOVINDHASAMI.docx', NULL, '1', '2024-05-22', 0, '77882', '1', '89', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-22 05:18:20', 1, '2024-05-22 05:23:54', 0, NULL, 1),
(19327, 'Abishek G', '4', '9791714146', '', '22abishekgopi@gmail.com', '1998-03-07', 26, '2', '2', 'Anjalidevi G', 'Housewife', 10000.00, 4, 15000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2405220006', '1', '2', 'upload_files/candidate_tracker/66571380954_Abishek_resume 2.docx', NULL, '1', '2024-05-22', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-22 05:39:24', 112, '2024-05-22 04:02:31', 0, NULL, 1),
(19328, 'Satabdi Priyadarshini Rout', '5', '6371502816', '', 'satabdirout20@gmail.com', '2000-08-24', 23, '2', '2', 'Santosh Kumar Rout', 'Businessman', 200000.00, 1, 0.00, 30000.00, 'Keonjhar', 'Electronic City, bangaluru 560100', '2405220007', '1', '2', 'upload_files/candidate_tracker/49848348429_SATABDI_UPDATED CV_AUG23.pdf', NULL, '1', '2024-05-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-22 06:05:06', 126, '2024-05-22 12:47:05', 0, NULL, 1),
(19329, 'P.udhayakumar', '6', '9498394682', '9585506049', 'udhayakumarcr785@gmail.com', '2001-08-13', 22, '2', '2', 'J.parthasarathy', 'Mechanical', 10000.00, 1, 0.00, 12000.00, 'No.36 mcn nager ext thuripakkam', 'Mount road', '2405220008', '46', '1', 'upload_files/candidate_tracker/5345320039_UDAYA+REEEE.docx', NULL, '1', '2024-05-22', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not knowledge for insurance and he is already working other domain ( field ) not suitable for sales profile ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-22 06:13:38', 112, '2024-05-22 01:32:27', 0, NULL, 1),
(19330, 'pramoth', '6', '9566890152', '', 'pramothraina3@gmail.com', '1999-06-07', 24, '2', '2', 'periyasamy', 'praveen', 40000.00, 0, 18000.00, 22000.00, 'saelm', 'poonamallee', '2405220009', '1', '2', 'upload_files/candidate_tracker/43682049981_Pramoth_resume1.pdf', NULL, '1', '2024-05-22', 15, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expecting high salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-22 06:23:04', 108, '2024-05-22 03:34:31', 0, NULL, 1),
(19331, 'SanthoshKumar. M', '6', '7904046573', '8610840720', 'santhoshbsccomputer@gmail.com', '2009-05-22', 0, '1', '2', 'P munusamy', 'M. Krishnaveni', 10000.00, 2, 0.00, 17000.00, 'Tiruvannamalai', 'Padi', '2405220010', '', '1', 'upload_files/candidate_tracker/16102716868_Santhosh Resume 2024.pdf', NULL, '1', '2024-05-22', 0, '77882', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate skill  and voice is ok  i will try 7dasy training', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-22 06:27:46', 112, '2024-05-22 01:25:42', 0, NULL, 1),
(19332, 'M.jenifer', '6', '9094931537', '7845181875', 'jeniferjenifer64064@gmail.com', '2000-04-18', 24, '2', '2', 'K.Mathi', 'Fisherman', 20000.00, 2, 18000.00, 18000.00, 'Chennai', 'Chennai', '2405220011', '34', '2', 'upload_files/candidate_tracker/86993161774_Jenni.M.docx', NULL, '1', '2024-05-22', 0, '', '8', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-22 06:37:51', 112, '2024-05-22 04:03:36', 0, NULL, 1),
(19333, 'Lilly.M', '20', '8807812718', '8680931637', 'Jesusujimano@gmail.com', '2001-06-13', 22, '2', '2', 'Mathi.k', 'Fisher man', 20000.00, 2, 18.00, 18.00, 'Chennai', 'Chennai', '2405220012', '34', '2', 'upload_files/candidate_tracker/90726609677_lilly resume.docx', NULL, '1', '2024-05-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Childish behaviour not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-22 06:38:03', 112, '2024-05-22 01:23:35', 0, NULL, 1),
(19334, 'Usha s', '6', '9042531273', '9150180552', 'Ushausha2005s@gmail.com', '2003-12-25', 20, '2', '2', 'Sakthivel', 'Farmer', 30000.00, 2, 18000.00, 20000.00, 'Kallakurichi', 'Chennai', '2405220013', '34', '2', 'upload_files/candidate_tracker/90618522757_0a87a277-69b2-4477-bc02-89966a7ca866.pdf', NULL, '1', '2024-05-22', 0, '', '8', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-22 06:39:33', 112, '2024-05-22 04:03:59', 0, NULL, 1),
(19335, '', '0', '7904119625', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405220014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-22 08:04:09', 0, NULL, 0, NULL, 1),
(19336, 'ramya k', '6', '7904919166', '8939558814', 'ramyamini07@gmail.com', '2009-05-22', 0, '1', '1', 'subhash', 'employe( reliance digital)', 25000.00, 1, 0.00, 20000.00, 'kodungaiyur', 'kodungaiyur', '2405220015', '', '2', 'upload_files/candidate_tracker/80224602521_RAMYA RESUME.pdf', NULL, '1', '2024-05-22', 0, '77852', '3', '59', '2024-06-03', 180000.00, '', '1', '1970-01-01', '2', 'Selected for Syed Team 5050 profile Sustainability doubts a lot need to analyse in 7 days', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55645', '5151', '2024-06-03', 1, '2024-05-22 09:19:17', 130, '2024-06-20 03:59:59', 0, NULL, 1),
(19337, 'Kalaiselvan S', '6', '9345661860', '8524030056', 'kalaiselvankalai99@gmail.com', '2000-06-05', 23, '2', '2', 'Parent', 'Farmer', 7000.00, 2, 20000.00, 25000.00, 'Arani', 'Arani', '2405220016', '39', '2', 'upload_files/candidate_tracker/96562514109_CV_202403210917186.pdf', NULL, '1', '2024-05-30', 0, '', '3', '59', '2024-06-03', 204000.00, '', '1', '1970-01-01', '2', 'Selected for Syed Team Need to analyse 7 days can be trained', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2024-06-03', 1, '2024-05-22 11:52:04', 112, '2024-06-22 06:08:08', 0, NULL, 1),
(19338, 'susanna p', '11', '9360879797', '9444643790', 'susannap242@gmail.com', '2002-05-28', 21, '2', '2', 'pushparaj s', 'ex-army', 25000.00, 1, 0.00, 180000.00, 'Chennai', 'Chennai', '2405220017', '1', '1', 'upload_files/candidate_tracker/70367769733_Susanna HR resume.pdf', NULL, '1', '2024-05-23', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She was looking for IT Recruitment, she need to Confirm about interested in NON IT', '6', '1', '', '1', '8', '', '2', '2024-05-31', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-22 01:02:19', 112, '2024-05-23 05:01:54', 0, NULL, 1),
(19339, 'R.SARANRAJ', '34', '9597239405', '9361022556', 'saranrajramesh97@gmail.com', '1997-03-16', 27, '1', '2', 'Ramesh', 'Mechanic', 25000.00, 2, 18000.00, 22000.00, 'Mayiladuthurai', 'Guindy chennai', '2405230001', '', '2', 'upload_files/candidate_tracker/78674565065_CV_2024052215071950.pdf', NULL, '1', '2024-05-23', 1, '1015', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-23 04:36:28', 112, '2024-05-23 12:03:00', 0, NULL, 1),
(19340, 'Ananthi M', '6', '9514483987', '8925823266', 'ananthi28042000@gmail.com', '2000-04-02', 24, '2', '2', 'Murugavel', 'Farmer', 48000.00, 2, 15000.00, 19000.00, 'MAYILADUTHURAI', 'Triplicane', '2405230002', '1', '2', 'upload_files/candidate_tracker/66893590359_ANANTHI RESUME.doc', NULL, '1', '2024-05-23', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-23 04:37:09', 112, '2024-05-23 12:03:51', 0, NULL, 1),
(19341, 'Surya', '5', '8095920487', '6363357020', 'suryaappu0403@gmail.com', '1997-07-04', 26, '2', '2', 'Bharath', 'Work', 3.00, 2, 20.00, 25.00, 'Bangalore', 'Bangalore', '2405230003', '39', '2', 'upload_files/candidate_tracker/37007268967_Surya April 2024-1.pdf', NULL, '1', '2024-05-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'suggested ctc upto 20k for rm immediate joining', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-23 04:53:39', 60, '2024-05-25 03:37:35', 0, NULL, 1),
(19342, 'Asha m', '5', '9606190379', '', 'ashaasha81532@gmail.com', '2001-04-11', 23, '2', '2', 'Uma', 'Tailor', 300000.00, 3, 20.00, 25.00, 'Wilson garden', 'Wilson garden', '2405230004', '39', '2', 'upload_files/candidate_tracker/39465623423_ASHA RESUME.pdf', NULL, '1', '2024-05-23', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and high salary expectation', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-23 04:54:02', 126, '2024-05-23 05:12:55', 0, NULL, 1),
(19343, 'harshi', '11', '9940503781', '9940343560', 'harshirathod321@gmail.com', '2002-11-24', 21, '3', '2', 'shobha rathod', 'housewife', 25000.00, 1, 0.00, 15000.00, 'guru shanti apartment vepery chennai', 'guru shanti apartment vepery chennai', '2405230005', '', '1', 'upload_files/candidate_tracker/613225913_Harshi Resume.pdf', NULL, '1', '2024-05-23', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much knowledge about HR domain and will not sustain longer', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-23 05:32:49', 112, '2024-05-23 12:01:40', 0, NULL, 1),
(19344, 'Vetrivel', '6', '7550247575', '9551054373', 'vetrivelan2014@gmail.com', '2009-05-23', 0, '1', '2', 'Mohan ram', 'Carmera man', 15000.00, 0, 0.00, 17000.00, 'Vadapalani', 'Vadapalani', '2405230006', '', '2', 'upload_files/candidate_tracker/48426234661_Vetri_Resume_29012024.pdf', NULL, '1', '2024-05-23', 10, '55717', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communcation is Not Good Also Voice is Not Suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-23 05:46:59', 108, '2024-05-23 04:38:56', 0, NULL, 1),
(19345, 'abdul', '20', '9363664245', '', 'smartrahuman32@gmail.com', '2000-06-08', 23, '1', '2', 'mohamed Ali', 'driver', 40000.00, 2, 25000.00, 30000.00, 'tenkasi', 'eelangarai', '2405230007', '', '2', 'upload_files/candidate_tracker/94782482628_Abdul Rahuman resume 2024.pdf', NULL, '1', '2024-05-23', 0, '55781', '3', '59', '2024-06-10', 294000.00, '', '1', '1970-01-01', '1', 'Selected for Jagdeesh team  RM Role Need to analyse in 7 days training', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '2024-06-14', 1, '2024-05-23 05:50:15', 130, '2024-06-20 03:51:45', 0, NULL, 1),
(19346, 'Anushree K N', '5', '8217336955', '9606809448', 'Yk805019222@gmail.com', '2002-09-15', 21, '2', '2', 'Nagaraju K N', 'Farmer', 25000.00, 2, 0.00, 20000.00, 'Kaggalahalli', 'Kaggalahalli', '2405230008', '51', '1', 'upload_files/candidate_tracker/91269638784_Anushree Gowda (1).pdf', NULL, '1', '2024-05-23', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of Communication and knowledge', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-23 06:36:13', 126, '2024-05-23 05:08:16', 0, NULL, 1),
(19347, 'Shivani', '6', '6363783137', '7483944391', 'shivanimithun25@gmail.com', '1998-11-25', 25, '2', '1', 'Mithun nair', 'Accounts manager', 500000.00, 1, 26000.00, 28000.00, 'Madiwala', 'Madiwala', '2405230009', '1', '2', 'upload_files/candidate_tracker/55415167762_Shivani Resume.docx', NULL, '1', '2024-05-23', 0, '', '3', '59', '2024-05-27', 240000.00, '', NULL, '2025-04-01', '2', 'Selecetd for DM Relationship Executive Role in Banaglore Need to analyse in 7 days training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-05-23 07:17:59', 126, '2024-08-06 01:01:47', 0, NULL, 1),
(19348, 'Prakash Kumar M', '6', '9566032608', '9941370624', 'Prakashsatish21@gmail.com', '2001-08-21', 22, '2', '2', 'MOHAN.S', 'Government Sector', 30000.00, 1, 0.00, 15000.00, 'Chennai Triplicane', 'Triplicane', '2405230010', '50', '1', 'upload_files/candidate_tracker/5718869985_PRAKASH - RESUME NEW.pdf', NULL, '1', '2024-05-23', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-23 08:34:31', 112, '2024-05-23 04:43:59', 0, NULL, 1),
(19349, 'Ashika Razmin', '5', '7845453835', '', 'ashika.razmin23@gmail.com', '2001-08-13', 22, '2', '2', 'Basheer ahmed', 'Manager', 60000.00, 1, 20000.00, 25000.00, 'Everest colony mogappair East chennai', 'St.thomas mount chennai', '2405230011', '1', '2', 'upload_files/candidate_tracker/49056057788_Ashika - resume.pdf', NULL, '1', '2024-05-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'False Commitment her husband attended interview and shortlisted identified his experience and every data seems to be fake', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-23 08:46:33', 108, '2024-05-23 04:37:52', 0, NULL, 1),
(19350, 'Varsha', '6', '8189861987', '9150126788', 'varshachampchandvarsha@gmail.com', '2001-02-14', 23, '2', '1', 'Praveen', 'Photography', 20000.00, 0, 20000.00, 25000.00, 'Madhavaram', 'Madhavaram', '2405230012', '1', '2', 'upload_files/candidate_tracker/43154896497_raghul-1-1.pdf', NULL, '1', '2024-05-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'over all 1.5yrs experience, pls check with sustainability. negotiate the salary and confirm the joining date. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-23 09:33:54', 112, '2024-05-23 04:45:08', 0, NULL, 1),
(19351, '', '0', '8220366732', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405230013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-23 12:25:19', 0, NULL, 0, NULL, 1),
(19352, 'Revanasiddappa S Bidari', '5', '7349019759', '7996535211', 'revanasbcf@gmail.com', '2000-06-09', 23, '6', '2', 'Shekharappa', 'Private Employee', 35000.00, 1, 350000.00, 500000.00, 'Vijayapura', 'Bangalore', '2405230014', '', '2', 'upload_files/candidate_tracker/88376570875_Revanasiddappa S Bidari Resume -compressed.pdf', NULL, '1', '2024-05-27', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-23 02:09:04', 108, '2024-05-27 06:45:20', 0, NULL, 1),
(19353, 'Saratha Govindhraj', '4', '6383474441', '8667206109', 'sarathagovindharaj01@gmail.com', '2003-10-01', 20, '2', '2', 'Govindharaj.A', 'Business', 38000.00, 1, 0.00, 13000.00, 'Kumbakonam', 'Kumbakonam', '2405240001', '1', '1', 'upload_files/candidate_tracker/76825053953_SARATHA_RESUME-1.pdf', NULL, '1', '2024-05-24', 0, '', '3', '59', '2024-06-05', 152400.00, '', '1', '1970-01-01', '2', 'Selected for Thanjavur Location Need to analyse in 7 days training', '1', '2', '1', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', 'P1023', '5151', '2024-06-05', 1, '2024-05-24 04:08:51', 130, '2024-06-20 03:39:40', 0, NULL, 1),
(19354, 'R.Subashini', '4', '6379988360', '7200906965', 'subaramesh903@gmail.com', '2004-02-21', 20, '3', '2', 'T.Ramesh', 'Farmer', 10000.00, 0, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2405240002', '', '1', 'upload_files/candidate_tracker/69753619138_DocScanner May 24, 2024 10-36.pdf', NULL, '1', '2024-05-24', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-24 04:39:59', 1, '2024-05-24 05:27:24', 0, NULL, 1),
(19355, 'V.Desika', '4', '7639187246', '8940788826', 'desikad92@gmail.com', '2004-02-13', 20, '3', '2', 'V.maheswari', 'Farmer', 10000.00, 2, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2405240003', '', '1', 'upload_files/candidate_tracker/59659191470_desika 1.pdf', NULL, '1', '2024-05-24', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-24 04:40:13', 1, '2024-05-24 05:32:54', 0, NULL, 1),
(19356, 'Vidhya', '4', '9840176575', '', 'Vv9788750@gmail.com', '2005-01-21', 19, '3', '2', 'Kannaiyan', 'Farmer', 10000.00, 2, 0.00, 13000.00, 'Orathanadu', 'orathanadu', '2405240004', '', '1', 'upload_files/candidate_tracker/59327371093_vidhya4.pdf', NULL, '1', '2024-05-24', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-24 04:59:01', 1, '2024-05-24 05:18:52', 0, NULL, 1),
(19357, 'M. dhanush', '6', '8015820835', '7806944936', 'mdhanushdhanushm1@gmail.com', '2003-04-17', 21, '2', '2', 'Mari', 'Cooli', 20000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2405240005', '1', '1', 'upload_files/candidate_tracker/89463700185_ dhanush resume.pdf', NULL, '1', '2024-05-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-24 05:38:44', 108, '2024-05-24 04:02:15', 0, NULL, 1),
(19358, 'Karnan M', '6', '8940375516', '9566759730', 'Karannarakmk@gmail', '2001-03-04', 23, '2', '2', 'Muniyandi E', 'Manson', 25000.00, 1, 15000.00, 16000.00, 'Ramanathapuram', 'Vadapalani', '2405240006', '1', '2', 'upload_files/candidate_tracker/50336697961_Karnan.pdf', NULL, '1', '2024-05-24', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is unfit for the job. Communication not good.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-24 06:07:06', 112, '2024-05-24 12:34:11', 0, NULL, 1),
(19359, 'Moulicharan. S', '11', '9363438080', '9677019609', 'moulicharan.s611@gmail.com', '2000-06-09', 23, '2', '2', 'Sudakar SR', 'Business', 40000.00, 1, 0.00, 15.00, 'Old Washermenpet', 'Old Washermenpet', '2405240007', '1', '1', 'upload_files/candidate_tracker/76388520905_Moulicharan.pdf', NULL, '1', '2024-05-24', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok Fresher for our role Career gap need to come for final round if he comes back let us try', '6', '1', '', '1', '8', '', '2', '2024-05-29', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-24 06:13:14', 112, '2024-05-24 04:13:43', 0, NULL, 1),
(19360, 'Gomathy', '5', '9789078575', '7092130366', 'gomathy0307@gmail.com', '0199-07-03', 1824, '2', '2', 'Somasundaram', 'Welder', 40000.00, 1, 0.00, 23000.00, 'Perambur', 'Tondiarpet', '2405240008', '1', '2', 'upload_files/candidate_tracker/37596338013_GOMATHY RESUME UPDATED.pdf', NULL, '1', '2024-05-24', 0, '', '3', '59', '2024-05-27', 297696.00, '', '5', '1970-01-01', '2', 'Selected for RM Role Sarath Team Need to analyse in 7 days - Commitment - 2L biz in May june MF 10K SIP then23K Net TH', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-24 06:19:20', 60, '2024-05-25 06:46:46', 0, NULL, 1),
(19361, 'E. Ravivarman', '11', '8668123403', '', 'ravi2598@gmail.Com', '1998-09-22', 25, '2', '2', 'P. A. Elamaran', 'Agriculture', 20000.00, 1, 0.00, 15000.00, 'Usilampatti, Madurai', 'Guindy, Chennai', '2405240009', '1', '1', 'upload_files/candidate_tracker/84801846318_Ravivarman resum. PG...pdf', NULL, '1', '2024-05-25', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Had good knowledge and communication about hR domain but had some health issue  need to check about the issue.', '6', '1', '', '1', '8', '', '2', '2024-05-31', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-24 12:40:51', 130, '2024-05-27 03:05:50', 0, NULL, 1),
(19362, 'JAYASRIPAL J', '11', '9940318372', '7667066777', 'jayasripal27jo@gmail.com', '2002-06-27', 21, '2', '2', 'P JAYABALAN', 'Yoga master', 20000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2405240010', '1', '1', 'upload_files/candidate_tracker/62585532230_Jayasripal resume....pdf', NULL, '1', '2024-05-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles ', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-24 12:52:31', 104, '2024-05-25 01:06:39', 0, NULL, 1),
(19363, 'hari prasath', '6', '9677083334', '9087980398', 'kharish0313@gmail.com', '1993-12-03', 30, '2', '1', 'jayapradha', 'house wife', 40000.00, 2, 550000.00, 750000.00, 'chennai', 'chennai', '2405250001', '51', '2', 'upload_files/candidate_tracker/81596622525_HARIPRASATH_CV 2024.pdf', NULL, '1', '2024-05-25', 10, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-25 04:47:15', 112, '2024-05-25 02:58:53', 0, NULL, 1),
(19364, 'PRIYA R', '5', '6379201149', '', 'priyaramkrishnan3@gmail.com', '2001-02-13', 23, '2', '2', 'Ramakrishnan', 'Driver', 25000.00, 1, 275000.00, 400000.00, 'Chennai', 'Chennai', '2405250002', '1', '2', 'upload_files/candidate_tracker/72524078431_PRIYA RESUME.pdf', NULL, '1', '2024-05-25', 0, '', '3', '59', '2024-06-05', 310000.00, '', '1', '1970-01-01', '2', 'Selecetd for GK sir Team with Commitments - 3.10 LPA Commitment - 2L biz in Jun july MF 10K SIP then 3.30 LPA', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1019', '', '55580', '55560', '2024-06-05', 1, '2024-05-25 04:58:23', 130, '2024-06-20 03:53:46', 0, NULL, 1),
(19365, '', '0', '9113697848', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405250003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-25 05:01:51', 0, NULL, 0, NULL, 1),
(19366, 'Yahoof Jahir Husain', '4', '9361575819', '', 'yahoofjahirhussain@gmail.com', '2002-12-06', 21, '2', '2', 'Babith begum', 'Telecaller', 25000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2405250004', '1', '1', 'upload_files/candidate_tracker/26649626012_new cv.pdf', NULL, '1', '2024-05-25', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-25 05:04:46', 108, '2024-05-25 06:07:09', 0, NULL, 1),
(19367, 'lokesh p', '5', '9704222513', '', 'lokeshreddyponna@gmail.com', '2003-05-02', 21, '2', '2', 'vijay kumar reddy', 'usiness', 1000000.00, 0, 0.00, 600000.00, 'bengaluru', 'bengaluru', '2405250005', '39', '1', 'upload_files/candidate_tracker/28409268234_Lokesh reddy p resume .pdf', NULL, '1', '2024-05-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-25 05:15:53', 1, '2024-05-25 05:20:36', 0, NULL, 1),
(19368, 'Ajay Andrew', '5', '6382728827', '9043774803', 'lawrenceajay8@gmail.com', '2002-04-03', 22, '1', '2', 'a prabhu', 'car driver', 16000.00, 1, 15000.00, 18000.00, 'vm street royapettah', 'vm street royapettah', '2405250006', '', '2', 'upload_files/candidate_tracker/11631134910_AJAY ANDREW RESUME UPDATED.pdf', NULL, '1', '2024-05-25', 0, '55650', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No exp in sales and not interested', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-25 05:47:26', 112, '2024-05-25 03:02:58', 0, NULL, 1),
(19369, 'sowmiya kasinathan', '5', '7358611605', '8883644119', 'sowmi3828@gmail.com', '1998-07-09', 25, '1', '2', 'kasinathan', 'farmer', 40000.00, 4, 18000.00, 25000.00, 'saidapet', 'saidapet', '2405250007', '', '2', 'upload_files/candidate_tracker/45972569312_Sowmiya cv.pdf', NULL, '1', '2024-05-25', 0, '55650', '3', '59', '2024-05-27', 297696.00, '', '5', '1970-01-01', '2', 'Commitment - 1.5L biz in Jun july MF 10K SIP then 3.10 LPA', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-25 05:50:30', 60, '2024-05-27 10:12:58', 0, NULL, 1),
(19370, 'Suhail sheriff. S', '6', '9710336367', '9841636390', 'suhailsheriff1512@gmail.com', '2003-12-15', 20, '2', '2', 'Salim sheriff. U', 'Office clerk', 10000.00, 1, 0.00, 20000.00, 'No 12/66 manarsamy koil street pulianthope', 'No 12/66 manarsamy koil street pulianthope', '2405250008', '34', '1', 'upload_files/candidate_tracker/94650873968_suhail resume.pdf', NULL, '1', '2024-05-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-25 05:51:04', 112, '2024-05-25 03:00:07', 0, NULL, 1),
(19371, 'A Mohamed Tanvir', '6', '8248668749', '9500157022', 'infotanvirmohamed@gmail.com', '2003-07-03', 20, '2', '2', 'Mohamed Ayub B', 'Office Work', 25000.00, 1, 0.00, 15000.00, 'No 2 Portugese Church Street Broadway', 'No 2 Portugese Church Street Broadway', '2405250009', '34', '1', 'upload_files/candidate_tracker/87459738787_Tanvir.pdf', NULL, '1', '2024-05-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-25 05:51:18', 112, '2024-05-25 02:59:49', 0, NULL, 1),
(19372, 'Ashutosh', '5', '8585966443', '', 'ashutoshrajput185@gmail.com', '2001-02-16', 23, '2', '2', 'Neeraj', 'Self employed', 60000.00, 1, 30000.00, 32000.00, 'Delhi', 'Banglore', '2405250010', '1', '2', 'upload_files/candidate_tracker/84494966636_Ashutosh (1).pdf', NULL, '1', '2024-05-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1022', '0', NULL, NULL, NULL, 1, '2024-05-25 05:52:11', 1, '2024-05-25 06:55:56', 0, NULL, 1),
(19373, 'Brindha Ravichandran', '5', '9342531194', '', 'brindharavichandran6@gmail.com', '2001-08-01', 22, '2', '2', 'Adhilakshmi', 'B.com corporate secretaryship', 25000.00, 0, 25000.00, 40000.00, 'Chennai', 'Chennai', '2405250011', '1', '2', 'upload_files/candidate_tracker/53774873974_Brindha Resume 1-2.pdf', NULL, '1', '2024-05-25', 60, '', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Next round', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-25 06:01:58', 112, '2024-05-25 03:02:14', 0, NULL, 1),
(19374, 'tummalakunta harshad akhil', '5', '9347327372', '', 'harshadakhil77@gmail.com', '1997-07-06', 26, '3', '2', 'p moulali', 'government employee', 300000.00, 1, 0.00, 500000.00, 'hindupur', 'hindupur', '2405250012', '', '1', 'upload_files/candidate_tracker/72474161356_Sales manager resume.pdf', NULL, '1', '2024-05-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-25 06:08:53', 1, '2024-05-25 06:14:54', 0, NULL, 1),
(19375, 'Prem kumar', '7', '9677599663', '', 'premarley143@gmail.com', '2000-11-21', 23, '2', '2', 'Dhanasekaran', 'Business', 40000.00, 1, 0.00, 300000.00, 'Madurantakam', 'Chennai', '2405250013', '1', '2', 'upload_files/candidate_tracker/39240315290_prem resume.pdf_.pdf', NULL, '1', '2024-05-25', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will npt suitable not clear with his communication. high expectations', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-25 06:27:17', 104, '2024-05-25 01:07:06', 0, NULL, 1),
(19376, 'Pradeep Basti', '5', '7978077710', '8763331555', 'bastipradeep99@gmail.com', '1998-05-30', 25, '3', '2', 'Abhimanyu Basti', 'Unemployed', 50000.00, 3, 300000.00, 325000.00, 'Odisha,khordha,at-Banapur govt medical road', 'Electronic city,sankarapara 560100', '2405250014', '', '2', 'upload_files/candidate_tracker/81580694751_1st Resume.pdf', NULL, '1', '2024-05-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-25 06:58:58', 1, '2024-05-25 08:30:47', 0, NULL, 1),
(19377, 'Roshni S', '6', '8925121874', '6385134059', 'roshnijoyce63@gmail.com', '2004-01-14', 20, '2', '2', 'Padma', 'Lady guard', 10000.00, 1, 0.00, 17000.00, 'Chennai perambur', 'Chennai perambur', '2405250015', '34', '1', 'upload_files/candidate_tracker/4506589163_IMG_20240525_131015 (1).pdf', NULL, '1', '2024-05-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-25 07:31:55', 112, '2024-05-25 03:01:49', 0, NULL, 1),
(19378, 'Sasikumar. M', '5', '6381666400', '7358327265', 'Msasikumar803@gmail.com', '2001-02-27', 23, '2', '2', 'Murugavel. M', 'Cooli', 13000.00, 2, 19000.00, 19000.00, 'Chennai', 'Chennai', '2405250016', '1', '2', 'upload_files/candidate_tracker/21984227770_143Sasikumar resume (1)-1.docx', NULL, '1', '2024-07-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-05-25 07:36:58', 104, '2024-07-01 03:08:03', 0, NULL, 1),
(19379, 'Sathish.k', '5', '9941499056', '', 'sathishpopz3011@gmail.com', '2002-11-30', 21, '2', '2', 'Thilagavathy.k', 'House keeping', 7000.00, 1, 19000.00, 19000.00, 'Old washernment pet', 'Old washernment pet', '2405250017', '1', '2', 'upload_files/candidate_tracker/83470916856_sathish k new.pdf', NULL, '1', '2024-07-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-05-25 07:37:27', 104, '2024-07-01 03:07:50', 0, NULL, 1),
(19380, 'Akhil', '5', '9959382423', '', 'kondle.akhil2001@gmail.com', '2001-08-16', 22, '2', '2', 'Anjali', 'Home maker', 20000.00, 1, 0.00, 3.00, 'KHAMMAM', 'Bengaluru', '2405250018', '1', '1', 'upload_files/candidate_tracker/87250368417_Kondle Akhil (1).pdf', NULL, '1', '2024-05-25', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'suggested ctc upto 20k immediate joining for rm', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-25 07:46:31', 126, '2024-05-25 05:32:28', 0, NULL, 1),
(19381, 'R.sakthi Mahendran', '4', '9629431710', '', 'sakthimahendran37@gmail.com', '2004-02-20', 20, '2', '2', 'Malathi', 'Business', 10000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2405270001', '1', '1', 'upload_files/candidate_tracker/6969722406_Resume.pdf', NULL, '1', '2024-05-27', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-27 04:34:11', 108, '2024-05-27 12:28:29', 0, NULL, 1),
(19382, 'V naveen kumar', '4', '7094260194', '9677267760', 'vkns3112@gmail.com', '2002-12-31', 21, '2', '2', 'Parent', 'Driver', 15000.00, 1, 0.00, 14000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2405270002', '1', '1', 'upload_files/candidate_tracker/75098030393_Naveen Kumar.pdf', NULL, '1', '2024-05-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1021', '0', NULL, NULL, NULL, 1, '2024-05-27 05:01:07', 1, '2024-05-27 05:06:01', 0, NULL, 1),
(19383, '', '0', '9994098938', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405270003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-27 05:03:17', 0, NULL, 0, NULL, 1),
(19384, 'Kalai selvan k', '4', '7339150560', '7826007900', 'kalaiselvan1603@gmail.com', '2000-03-16', 24, '2', '2', 'Kumar', 'Auto driver', 30000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2405270004', '1', '1', 'upload_files/candidate_tracker/77089881716_CV_2024051517552736.pdf', NULL, '1', '2024-05-27', 0, '', '3', '59', '2024-06-03', 152400.00, '', '1', '1970-01-01', '1', 'Selected for Thanjavur Location Need to analyse in 7 days', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', 'P1023', '5151', '2024-06-03', 1, '2024-05-27 05:04:39', 130, '2024-06-20 03:58:16', 0, NULL, 1),
(19385, 'kishore', '4', '8667723231', '', 'kishore050802@gmail.com', '2002-05-08', 22, '2', '2', 'kamaraj', 'civil service', 80000.00, 1, 0.00, 15000.00, 'vallam', 'vallam', '2405270005', '1', '1', 'upload_files/candidate_tracker/29888466277_kishoreresume.pdf', NULL, '1', '2024-05-27', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-27 05:24:45', 108, '2024-05-27 03:43:54', 0, NULL, 1),
(19386, 'Sivarajan V', '6', '8190089353', '8190046953', 'vssivarajan2003@gmail.com', '2003-03-01', 21, '2', '2', 'Venkatesan V', 'Self employee', 20000.00, 2, 0.00, 16000.00, 'Villupuram', 'Chennai, Meenambakkam', '2405270006', '1', '1', 'upload_files/candidate_tracker/95721232635_SIVARAJAN RESUME.pdf', NULL, '1', '2024-05-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate 50/50,will check in the training period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-27 05:35:05', 108, '2024-05-27 05:21:01', 0, NULL, 1),
(19387, 'K.Monisha', '5', '9150746499', '', 'kmonisha863@gmail.com', '2001-10-14', 22, '2', '2', 'K.Kumar', 'Corporation of chennai', 28000.00, 2, 15000.00, 18000.00, 'Chennai nandanam', 'Chennai', '2405270007', '1', '2', 'upload_files/candidate_tracker/73518383269_MONISHA+RESUME-2.pdf', NULL, '1', '2024-05-27', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She have 9m experience in star health ins, But Product knowledge worst and communication not good.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-27 05:39:17', 108, '2024-05-27 05:32:02', 0, NULL, 1),
(19388, 'Hemavathi', '6', '8940241179', '', 'hemavathim1512@gmail.com', '2000-12-15', 23, '2', '2', 'Mani V', 'Document writer', 90000.00, 1, 0.00, 23.00, 'Acharappakkam', 'Chennai', '2405270008', '1', '1', 'upload_files/candidate_tracker/47394327854___hemavathi__.pdf', NULL, '1', '2024-05-27', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher - expecting salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-27 05:42:06', 108, '2024-05-27 12:56:55', 0, NULL, 1),
(19389, 'Menitha A', '4', '9597479135', '', 'minithaashok@gmail.com', '1997-04-17', 27, '2', '1', 'Vijay C', 'Manager', 30000.00, 0, 25000.00, 30000.00, 'Erode', 'Chennai', '2405270009', '1', '2', 'upload_files/candidate_tracker/83772838553_Mine resume.pdf', NULL, '1', '2024-05-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary exp is high Career Gap Preparing for UPSC exams settled family married husband came for an interview not suitable for our roles', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-27 05:48:10', 108, '2024-05-27 12:06:22', 0, NULL, 1),
(19390, 'Leena', '20', '7299130869', '7305755176', 'Leenajenisha08@gmail.com', '1998-10-08', 25, '2', '2', 'Srinivasan', 'Drivers', 25000.00, 1, 23000.00, 26000.00, 'CHENNAI', 'CHENNAI', '2405270010', '1', '2', 'upload_files/candidate_tracker/44664202379_leenaresume08.pdf', NULL, '1', '2024-05-27', 15, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no convincing skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-27 05:54:24', 108, '2024-05-27 12:58:33', 0, NULL, 1),
(19391, 'Danush Kumar', '5', '9994818232', '', 'danushdeivanayagam1972@gmail.com', '2004-01-21', 20, '4', '2', 'Jagadeesh', 'Building contractor', 15000.00, 2, 0.00, 20000.00, 'Mettu Street karuvadikuppam pondicherry', 'Mettu Street karuvadikuppam pondicherry', '2405270011', '', '1', 'upload_files/candidate_tracker/90055628865_danush resume (2) (1).pdf', NULL, '1', '2024-05-27', 0, '', '5', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', 'But mistake Santhosh mentioned as selected Interviewed for Jagadeesh on his absence', '', '', '', NULL, NULL, NULL, 1, '2024-05-27 05:54:41', 108, '2024-05-28 04:56:38', 0, NULL, 1),
(19392, 'Shalini T', '20', '9384658760', '9962062503', 'shalini23052000@gmail.com', '2000-05-23', 24, '2', '2', 'Thiruvasaga moorthy', 'Accounting manager', 30000.00, 1, 23000.00, 26000.00, 'Villivakkam', 'Villivakkam', '2405270012', '1', '2', 'upload_files/candidate_tracker/80577330685_SHALINI__ RESUME01.pdf', NULL, '1', '2024-05-27', 15, '', '3', '59', '2024-06-20', 310000.00, '', '1', '1970-01-01', '2', 'Selected for Mani Team in staff Role Need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', '55565', '55557', '2024-06-26', 1, '2024-05-27 05:54:54', 60, '2024-06-26 10:25:08', 0, NULL, 1),
(19393, 'Vijay', '5', '9344211905', '', 'vijaychithambaram106@gmail.com', '1997-05-13', 27, '2', '1', 'Minitha', 'Working', 40000.00, 2, 360000.00, 420000.00, 'Harur', 'Chennai', '2405270013', '1', '2', 'upload_files/candidate_tracker/33286708161_vijay resumee569-2.pdf', NULL, '1', '2024-05-27', 5, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Vijay Chidambaram Selected for 4.2L CTC for Jagadeesh Team. He can Join on 3rd or 4th.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-27 06:02:49', 108, '2024-05-27 12:58:08', 0, NULL, 1),
(19394, 'amritha s', '6', '9361030410', '8668062451', 'amrithashanmugan@gmail.com', '1996-07-06', 27, '2', '1', 'sham u', 'relationship manager', 30000.00, 2, 3.80, 400000.00, 'Purasawalkam', 'purasawalkam', '2405270014', '1', '2', 'upload_files/candidate_tracker/22709475825_BlackWhiteMinimalistCVResume.pdf', NULL, '1', '2026-04-01', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2024-05-27 07:09:20', 154, '2026-04-01 03:50:39', 0, NULL, 1),
(19395, 'K.n.rakecsh', '20', '9030660200', '', 'narendarmonoj56@gmail.com', '2002-10-08', 21, '1', '2', 'K.narendar', 'Supervisor', 30000.00, 1, 0.00, 18000.00, 'Veppampattu', 'Tiruvallur', '2405270015', '', '1', 'upload_files/candidate_tracker/4467553602_RAKECSH resums 4 (1).docx', NULL, '3', '2024-05-27', 0, 'ZHRS0524052', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-27 07:16:38', 130, '2024-05-27 03:06:35', 0, NULL, 1),
(19396, 'Adithya Gowda sr', '5', '9008674776', '8088615424', 'adithyagowda41@gmail.com', '2000-02-13', 24, '2', '2', 'Ravi', 'Former', 50000.00, 1, 350000.00, 450000.00, 'Mandya', 'New madivala extension 2nd stage BTM layout', '2405270016', '1', '2', 'upload_files/candidate_tracker/85602549459_upadeted resume20240524_12182130.pdf', NULL, '1', '2024-05-27', 0, '', '3', '59', '2024-06-03', 375000.00, '', NULL, '2025-07-25', '1', 'Selecetd for RM Role in Bangalore PC Channel Need to analyse in 7 days training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '2024-06-05', 1, '2024-05-27 07:26:36', 130, '2024-06-20 03:59:18', 0, NULL, 1),
(19397, 'thawfeeq umar', '6', '7603937688', '8428540612', 'thawfeequmar2003@gmail.com', '2003-05-12', 21, '2', '2', 'saleem durani', 'home maker', 100000.00, 1, 18000.00, 23000.00, 'anakaputhur chennai svs gardern', 'chennai', '2405270017', '1', '2', 'upload_files/candidate_tracker/94374828725_CV_2024050621545738.pdf', NULL, '1', '2024-05-30', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is 6 month working credit card sales and take home salary 17k but right now his expectation 22k to 26k so, not suitable DM ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-05-27 02:00:33', 112, '2024-05-30 01:17:50', 0, NULL, 1),
(19398, '', '0', '7305782565', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-28 03:24:40', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19399, 'Saravanakumar R', '4', '9940038176', '9994376925', 'saravanakumar17602@gmail.com', '2002-06-17', 21, '1', '2', 'N.Ramesh', 'Auto driver', 750000.00, 1, 0.00, 20000.00, 'No 45, E.S.N Nagar, Ayathur, Veppampatu', 'No 45, E.S.N Nagar, Ayathur, Veppampatu', '2405280002', '', '1', 'upload_files/candidate_tracker/45116743894_Saravanakumar R Resume .pdf', NULL, '1', '2024-05-28', 0, 'ZHRS0524049', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-28 04:36:06', 112, '2024-05-28 10:41:43', 0, NULL, 1),
(19400, 'Santhosh', '4', '8939272444', '7708929486', 'santhoshharibabu81@gmail.com', '2003-06-23', 20, '1', '2', 'Priya H', 'Home Maker', 150000.00, 1, 0.00, 20000.00, 'No 1/106, Thachur Panchetty Post Ponneri Taluk', 'No 1/106, Thachur Panchetty Post Ponneri Taluk', '2405280003', '', '1', 'upload_files/candidate_tracker/64600858434_Santhosh Resume .pdf', NULL, '1', '2024-05-28', 0, 'ZHRS0524050', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-28 04:36:56', 112, '2024-05-28 10:41:56', 0, NULL, 1),
(19401, '', '0', '7358218821', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405280004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-28 05:14:49', 0, NULL, 0, NULL, 1),
(19402, 'Dhanush C', '5', '9080779171', '9094124823', 'dhanushchandrusekar10@gmail.com', '1999-12-10', 24, '2', '2', 'k.chandra Sekar', 'Business', 80000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2405280005', '1', '1', 'upload_files/candidate_tracker/81231612282_Updated DHANUSH resume 1.pdf', NULL, '1', '2024-05-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too much of Attitude Even He Donxquott know about the question ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-05-28 05:39:22', 104, '2024-05-29 02:49:32', 0, NULL, 1),
(19403, 'K.MANIKANDAN', '4', '8925106704', '', 'manichtty@gmail.com', '2003-08-27', 20, '2', '2', 'KARUNAKARAN R', 'BUSINESS', 25000.00, 1, 0.00, 20000.00, '43/1, CHINNADI MADAM ,THIRUVALLUVAR SALAI,', 'KODUNGAIYUR CHENNAI 118', '2405280006', '1', '1', 'upload_files/candidate_tracker/7229297631_609d18fb-be8d-4f31-846d-c70f89993efd.pdf', NULL, '1', '2024-05-28', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no idea sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-28 05:47:48', 108, '2024-05-28 02:36:29', 0, NULL, 1),
(19404, 'P VENKATA SAI KIRAN', '5', '8428467341', '', 'saikiranjs0@gmail.com', '1999-05-15', 25, '1', '2', 'SRINIVASAN V', 'Self employed', 15000.00, 1, 200000.00, 2.70, 'Chennai', 'Chennai', '2405280007', '', '2', 'upload_files/candidate_tracker/66366948326_VenkataSaiKiran.pdf', NULL, '1', '2024-05-28', 0, '55775', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Refer Resume On Other Details On Salary xxamp Increments', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-28 05:49:42', 112, '2024-05-28 11:51:42', 0, NULL, 1),
(19405, 'VIJAY V', '6', '9962787689', '', 'v4252136@gmail.com', '2003-11-20', 20, '2', '2', 'VENKATESAN', 'Carpenter', 22000.00, 2, 0.00, 25000.00, '4/476, 81st street , muthamizh nagar, KODUNGAIYUR', 'Chennai', '2405280008', '1', '1', 'upload_files/candidate_tracker/40615928517_vijay res (1).docx', NULL, '1', '2024-05-28', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no idea insurance and sales ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-28 05:49:58', 108, '2024-05-28 02:37:14', 0, NULL, 1),
(19406, 'Jaya Lakshmi', '6', '9080545148', '9551911709', 'jayalakshmi38861@gmail.com', '2002-05-31', 21, '2', '1', 'Arun kumar', 'Logistics', 35000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405280009', '39', '1', 'upload_files/candidate_tracker/6471747393_Jayalakshmi (resume).docx', NULL, '1', '2024-05-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected But I Need To See More During The Training Period ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-28 06:09:39', 127, '2024-05-29 03:32:30', 0, NULL, 1),
(19407, 'sudhakaran', '33', '8072983877', '', 'Sudhakaran.bba.411701119@gmail.com', '1998-08-13', 25, '3', '2', 'mohankumar', 'auto', 30000.00, 1, 16000.00, 23000.00, 'royapettah', 'chennai', '2405280010', '', '2', 'upload_files/candidate_tracker/66542691781_Sudhakar_ResumeNEW.pdf', NULL, '1', '2024-05-29', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-28 08:06:43', 1, '2024-05-28 09:25:40', 0, NULL, 1),
(19408, 'AFRIN BANU.J', '6', '9940159558', '', 'affrinaffu05@gmail.com', '1999-06-05', 24, '1', '2', 'Jaffarullah', 'Nil', 20000.00, 3, 0.00, 15000.00, '33/67 St.xavier street,seven wells.', '33/67 St.xavier street, Seven wells.', '2405280011', '', '1', 'upload_files/candidate_tracker/52034489993_resume - AFRIN BANU J.pdf', NULL, '1', '2024-05-28', 0, '2405280011', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking much for non voice communication Good Not much open for target will not sustain for a long', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-28 09:35:24', 108, '2024-05-28 06:52:54', 0, NULL, 1),
(19409, 'Jenifer', '6', '9150560623', '9952028518', 'Jenifer23022001@Gmail.com', '2001-02-23', 23, '2', '1', 'Parents', 'Fitting engineer', 36000.00, 0, 18000.00, 25000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2405280012', '32', '2', 'upload_files/candidate_tracker/4641637679_JENIFER.R.docx', NULL, '3', '2024-05-29', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok,cross check with payslip, resignation letter.\n\npls check she have some health issues.salary exp 18k to 19k. \n\nkindly check sustainability.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-28 10:51:47', 108, '2024-05-29 03:30:35', 0, NULL, 1),
(19410, 'Noorul Nifaya L', '7', '9384807971', '7305991408', 'Noorulnifaya@gmail.com', '1997-07-08', 26, '2', '2', 'Liyakath Ali', 'Driver', 85000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405280013', '1', '1', 'upload_files/candidate_tracker/84905144630_Noorul Nifaya resume 2022.doc', NULL, '1', '2024-05-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '4', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-28 03:26:02', 108, '2024-05-29 03:17:34', 0, NULL, 1),
(19411, 'R Abirami', '4', '6374252723', '9843755418', 'abipandiyan2000@gmail.com', '2000-09-13', 23, '2', '2', 'SN. Rajapandiyan', 'Farmer', 20000.00, 0, 0.00, 18000.00, 'Thanjavur', 'Ealupatti Thanjavur', '2405290001', '1', '1', 'upload_files/candidate_tracker/77279723130_Abirami Resume (2).pdf', NULL, '1', '2024-06-05', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', 'P1023', '5151', '1970-01-01', 1, '2024-05-29 04:18:09', 104, '2024-06-15 12:40:48', 0, NULL, 1),
(19412, 'Ezhil Arasu.T', '4', '8667657729', '8760146971', 'earasu01@gmail.com', '1996-10-11', 27, '2', '2', 'Kavitha.T', 'Beautician', 200000.00, 1, 15000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2405290002', '1', '2', 'upload_files/candidate_tracker/79077071638_Profile (6)-2.pdf', NULL, '1', '2024-05-29', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-29 05:01:27', 108, '2024-05-29 03:27:49', 0, NULL, 1),
(19413, 'vijay', '5', '9080348915', '', 'vijaysaravanan1906@gmail.com', '1999-06-19', 24, '2', '1', 'shakthi', 'makeup artist', 30000.00, 0, 19500.00, 25000.00, 'chennai', 'chennai', '2405290003', '1', '2', 'upload_files/candidate_tracker/38140128593_vijay updated cv .pdf', NULL, '1', '2024-06-05', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit For Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1023', '', '55567', '55557', '1970-01-01', 1, '2024-05-29 05:50:36', 104, '2024-06-15 12:40:06', 0, NULL, 1),
(19414, 'Divya.M', '5', '7092960995', '9962165847', 'divyamurali559@gmail.com', '1999-08-01', 24, '2', '2', 'Murali krishnan', 'Tailor', 2.00, 1, 23000.00, 25000.00, 'No 14/9 Nagappan street old washernmenpet', 'No 14/9 Nagappan street old washernmenpet', '2405290004', '1', '2', 'upload_files/candidate_tracker/48220260125_DIvya Resume 2024.pdf', NULL, '1', '2024-05-29', 30, '', '3', '59', '2024-07-01', 300000.00, '', '5', '1970-01-01', '2', 'Selected for jagadeesh team RM role Need to analyse and confirm in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', '55634', '55557', '2024-07-01', 1, '2024-05-29 05:56:52', 60, '2024-06-25 07:06:38', 0, NULL, 1),
(19415, 'IBRAHIM SHERIEF', '5', '7867939735', '', 'Ibrahim143ibu@gmail.com', '1993-10-07', 30, '2', '1', 'Reshma', 'House wife', 26000.00, 2, 26000.00, 30000.00, 'Arakkonam', 'Arakkonam', '2405290005', '1', '2', 'upload_files/candidate_tracker/74609077101_Ibrahim Resume 2023-1.pdf', NULL, '1', '2024-05-29', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Refer Resume On Other Details On Salary xxamp Increments', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-29 05:58:31', 108, '2024-05-29 03:23:29', 0, NULL, 1),
(19416, 'Aslam Riswin', '5', '9597269388', '7871044147', 'Aslamriswin@gmail.com', '1996-03-06', 28, '2', '2', 'mohamed', 'graphic designer', 40000.00, 1, 20000.00, 25000.00, 'ramanathapuram', 'chennao', '2405290006', '50', '2', 'upload_files/candidate_tracker/60554783493_CV Updated.pdf', NULL, '1', '2024-05-29', 0, '', '3', '59', '2024-06-04', 300000.00, '', '1', '1970-01-01', '2', 'Selected for Gnanasekar Team no relevant exp full exp in nonvoice process sustainability doubts need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55656', '55557', '2024-06-04', 1, '2024-05-29 06:01:11', 130, '2024-06-20 03:55:16', 0, NULL, 1),
(19417, 'HARITHA.K', '5', '9087989389', '', 'harithakalaivana41@gmail.com', '2004-03-30', 20, '2', '2', 'KALAIVANAN.P.L', 'ELECTRICIAN (DAILY WAGER)', 28000.00, 1, 0.00, 16000.00, 'Thiruvallur', 'Thiruvallur', '2405290007', '34', '1', 'upload_files/candidate_tracker/83705902561_Resume H.pdf', NULL, '1', '2024-05-29', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication good,distance too long and sustainability problem. kindly reject', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-29 06:37:00', 108, '2024-05-29 03:21:35', 0, NULL, 1),
(19418, 'Bhavadharani S', '6', '6374365667', '', 'bhavadharanisakthivel3@gmail.com', '1999-06-06', 24, '2', '2', 'Amutha(parent)', 'Homemaker', 10000.00, 0, 0.00, 20000.00, 'Villupuram', 'Villupuram', '2405290008', '1', '1', 'upload_files/candidate_tracker/16417420641_Resume (3).pdf', NULL, '1', '2024-05-31', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate peroformance and communication is good but her voice is very low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-05-29 06:39:10', 112, '2024-05-31 10:16:25', 0, NULL, 1),
(19419, 'Muthu Lakshmi', '6', '9360501023', '8300144770', 'muthulakshmiammu69@gmail.com', '2002-03-01', 22, '1', '2', 'Lingam', 'Real Estate', 60000.00, 4, 0.00, 2.50, 'Thoothukudi', 'Thoothukudi', '2405290009', '', '1', 'upload_files/candidate_tracker/4050101684_IMG-20240403-WA0010 (1) (1).pdf', NULL, '1', '2024-05-29', 0, 'P1404', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interested in IT role she is know c++ java etc , not suitable sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-29 06:43:31', 108, '2024-05-29 03:29:29', 0, NULL, 1),
(19420, '', '0', '9941449807', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405290010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-29 07:21:36', 0, NULL, 0, NULL, 1),
(19421, 'K.Rafiya Begum', '6', '9092415713', '', 'jabeenkasim786@gmail.com', '2003-09-09', 20, '3', '2', 'Kasim sherif', 'Gas delivery man', 12000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2405290011', '', '1', 'upload_files/candidate_tracker/47209716335_CV_2024052815045689.pdf', NULL, '1', '2024-05-29', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is interested in back end support team sale is not idea just atten the interview ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-29 08:00:06', 108, '2024-05-29 03:25:58', 0, NULL, 1),
(19422, 'C.Yamini', '6', '8925666322', '', 'yaminichandran7@gmail.com', '2004-03-14', 20, '3', '2', 'Chandran', 'Tiffen shop', 20000.00, 3, 0.00, 15000.00, 'Madhavaram', 'Madhavaram', '2405290012', '', '1', 'upload_files/candidate_tracker/73793374674_CV_2024052815571931.pdf', NULL, '1', '2024-05-29', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No skill ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-29 08:00:12', 108, '2024-05-29 03:20:01', 0, NULL, 1),
(19423, 'Rajeshwari.D', '6', '9345183243', '9790765805', 'ajayprakash78278@gmail.com', '2003-11-21', 20, '3', '2', 'Deivaprakash.M', 'Security', 11000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2405290013', '', '1', 'upload_files/candidate_tracker/13917780775_CV_2024052815571931.pdf', NULL, '1', '2024-05-29', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is only looking for temporary job , after 6 month she wil go for acconts related compan so sh not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-29 08:03:50', 108, '2024-05-29 03:19:17', 0, NULL, 1),
(19424, 'kowsalya s', '11', '8610640024', '9894255208', 'kowsalyasiva90@gmail.com', '2003-03-28', 21, '2', '2', 'Sivakumar', 'Weaver', 15000.00, 1, 0.00, 3.00, 'Arani', 'Arani', '2405290014', '1', '1', 'upload_files/candidate_tracker/78794583613_KOWSALYA S - Resume.pdf', NULL, '3', '2024-05-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-29 11:02:51', 112, '2024-05-30 12:48:21', 0, NULL, 1),
(19425, 'Bhargav BS', '21', '9535970355', '8618698304', 'bharghav19981@gmail.com', '1996-09-20', 27, '3', '2', 'Srinivas BG', 'Self employed', 60000.00, 1, 25000.00, 35000.00, 'Bengaluru', 'Bengaluru', '2405290015', '', '2', 'upload_files/candidate_tracker/61677574253_Bhargav resume (1) (1).pdf', NULL, '1', '2024-05-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-29 01:00:24', 1, '2024-05-29 01:05:11', 0, NULL, 1),
(19426, 'vaijayanthi m', '11', '9150854478', '9094049874', 'vaijayanthimk211001@gmail.com', '2001-10-21', 22, '2', '2', 'muthu krishnan', 'business', 600000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2405290016', '1', '1', 'upload_files/candidate_tracker/21591787621_Vaijayanthi M.docx', NULL, '1', '2024-05-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2024-05-29 03:38:31', 112, '2024-05-30 12:48:01', 0, NULL, 1),
(19427, '', '0', '8124839869', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405300001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-30 02:11:10', 0, NULL, 0, NULL, 1),
(19428, 'Santhiya.S', '6', '6384445235', '', 'Santhiyasiva0405@gmail.com', '2004-05-04', 20, '2', '2', 'Settu', 'Daily wages', 20000.00, 2, 0.00, 20000.00, 'Broadway, chennai, Tamil nadu', 'Broadway, chennai_ 6000001', '2405300002', '50', '1', 'upload_files/candidate_tracker/37718871132_resume .pdf', NULL, '1', '2024-05-30', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No skill ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-30 05:18:17', 112, '2024-05-30 01:13:18', 0, NULL, 1),
(19429, 'Mohammed Saddam M', '5', '8124033615', '9840327561', 'mohammedsaddam2@gmail.com', '1993-09-15', 30, '1', '2', 'Mohammed Rishi', 'Senior executive Producer', 1.50, 1, 32000.00, 35000.00, 'Chennai', 'Chennai', '2405300003', '', '2', 'upload_files/candidate_tracker/39435529362_IMG-20240530-WA0008.pdf', NULL, '1', '2024-05-30', 0, '55781', '3', '59', '2024-06-13', 420000.00, '', '4', '2024-09-02', '1', 'Selected for Jagadeesh Team', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '2024-06-13', 1, '2024-05-30 05:27:03', 130, '2024-06-20 03:45:22', 0, NULL, 1),
(19430, 'kaviYa', '6', '9087746414', '', 'kavya12adithyan@gmail.com', '1995-06-18', 28, '2', '1', 'adithan', 'business', 50000.00, 1, 12000.00, 15000.00, 'chennai', 'tiruvottiyur', '2405300004', '50', '2', 'upload_files/candidate_tracker/31869252975_KaviyaResume.pdf', NULL, '1', '2024-05-30', 0, '', '3', '59', '2024-06-05', 168000.00, '', '1', '1970-01-01', '1', 'Selected for Kannan Team in Consultant Role Need to Analyse in 7 days', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-06-05', 1, '2024-05-30 05:30:51', 130, '2024-06-20 03:35:19', 0, NULL, 1),
(19431, 'Vigneshwaran.s', '5', '8778614970', '7094307192', 'vikes7731@gmail.com', '1998-08-16', 25, '2', '2', 'V.srinivasan', 'Banking', 20000.00, 1, 20000.00, 25000.00, 'Chennai', 'Kk nagar', '2405300005', '39', '2', 'upload_files/candidate_tracker/85938007285_VIGNESHWARAN.S.pdf', NULL, '1', '2024-05-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-30 06:22:10', 112, '2024-05-30 01:11:44', 0, NULL, 1),
(19432, 'S Ranjitha', '4', '9655295692', '', 'ranjitha0095@gmail.com', '1995-11-19', 28, '2', '1', 'A Singaravelu', 'Passed', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2405300006', '1', '2', 'upload_files/candidate_tracker/32494018685_CV2023.pdf', NULL, '1', '2024-05-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-30 06:27:49', 112, '2024-05-30 12:45:55', 0, NULL, 1),
(19433, 'R saran', '5', '6381348542', '9486165632', 'charanram4052@gmail.com', '2001-05-05', 23, '2', '2', 'P Ramachandran', 'Farmer', 300000.00, 0, 0.00, 250000.00, 'Trichy', 'Tambaram', '2405300007', '50', '1', 'upload_files/candidate_tracker/83045997719_Charan CV 1.pdf', NULL, '2', '2024-05-30', 0, '', '5', '105', NULL, 0.00, '', '0', NULL, '2', 'Candidate Communication and Performance is not good Also His Attire is not good', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-30 06:30:27', 1, '2024-05-30 06:37:08', 0, NULL, 1),
(19434, 'Aravind', '6', '9043459664', '', 'Saravindsubramani36@gmail.com', '2003-06-26', 20, '2', '2', 'Subramani', 'Farmer', 2.50, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2405300008', '50', '1', 'upload_files/candidate_tracker/6090981075_1000014590.pdf', NULL, '1', '2024-05-30', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-30 07:19:36', 108, '2024-05-30 02:55:49', 0, NULL, 1),
(19435, 'Akhil Ansari', '5', '9847175652', '', 'akhilansari5652@gmail.com', '2000-12-25', 23, '2', '2', 'Muhammad Nizar', 'N/A', 100000.00, 0, 260000.00, 300000.00, 'Wayanad', 'Wayanad', '2405300009', '1', '2', 'upload_files/candidate_tracker/47718034667_Akhil ansari.pdf', NULL, '1', '2024-05-30', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and High salary expectation ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-30 08:32:30', 126, '2024-05-31 03:36:31', 0, NULL, 1),
(19436, 'Muhammad Musharaf C', '5', '9645127079', '', 'mushraf.kiwik@gmail.com', '2001-11-12', 22, '2', '2', 'Abdul Ahad', 'N/a', 50000.00, 2, 0.00, 28000.00, 'Kerala', 'Bangalore', '2405300010', '1', '1', 'upload_files/candidate_tracker/25237494923_MUHAMMED MUSHARAF (CV).pdf', NULL, '1', '2024-05-30', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of Communication ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-30 08:32:34', 126, '2024-05-31 03:42:42', 0, NULL, 1),
(19437, 'K SIVAGAMI', '11', '7358322545', '', 'sivadakshayanikannan@gmail.com', '1997-04-28', 27, '6', '2', 'K KANNAN', 'Business', 1000000.00, 1, 20000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2405300011', '', '2', 'upload_files/candidate_tracker/64891051207_SIVAGAMI KANNAN Res.pdf', NULL, '1', '2024-06-03', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-30 01:33:58', 1, '2024-05-30 01:37:25', 0, NULL, 1),
(19438, 'Pradeep M', '5', '9164927060', '', 'pradeeppradi905@gmail.com', '1998-11-22', 25, '2', '2', 'Muthu Swamy R', 'Business', 25000.00, 1, 0.00, 25000.00, 'Shimoga', 'bommanahalli Banglore', '2405300012', '1', '1', 'upload_files/candidate_tracker/35651237667_CV - Pradeep M.pdf', NULL, '1', '2024-05-31', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2024-05-30 03:16:12', 126, '2024-05-31 03:18:02', 0, NULL, 1),
(19439, 'Susindhar B', '6', '7904395640', '', 'bsusindhar9@gmail.com', '2003-11-07', 20, '2', '2', 'Kumudha. B', 'Working', 20000.00, 2, 0.00, 18000.00, '5/15 5th street kk nagar ayanavaaram chennai 23', 'No5/15th k. K nagar ayanavaaram chennai 23', '2405310001', '50', '1', 'upload_files/candidate_tracker/83128832782_Susindhar resume.pdf', NULL, '1', '2024-05-31', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-31 05:25:22', 112, '2024-05-31 01:15:37', 0, NULL, 1),
(19440, 'Bharath G', '6', '6385128253', '8681892705', 'bharathxooo@gmail.com', '2003-11-26', 20, '2', '2', 'Rajeswari G', 'Cooly', 98000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2405310002', '1', '1', 'upload_files/candidate_tracker/96347212595_Bharath resume 1 .pdf', NULL, '1', '2024-05-31', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable sales and not knowledge insurance ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2024-05-31 05:39:34', 112, '2024-05-31 11:38:19', 0, NULL, 1),
(19441, 'Surendhar. B', '6', '9363977901', '9941109011', 'surendharsuren81199@gmail.com', '2003-11-07', 20, '2', '2', 'Kumudha. B', 'Working', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'No5/15th k. K nagar ayanavaaram chennai', '2405310003', '50', '1', 'upload_files/candidate_tracker/54118383657_surendhar resume.pdf', NULL, '1', '2024-05-31', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-31 05:43:51', 112, '2024-05-31 11:41:55', 0, NULL, 1),
(19442, 'Roshini B', '6', '9150955678', '9566224847', 'roshini004b@gmail.com', '2004-06-28', 19, '2', '2', 'Baluchamy', 'Business', 30000.00, 1, 0.00, 2.50, '14/9,Bazaar Road ,Mylapore ,Chennai -4', 'Chennai', '2405310004', '50', '1', 'upload_files/candidate_tracker/24263635989_ROSHINI B (8)-1.pdf', NULL, '1', '2024-05-31', 0, '', '3', '59', '2024-06-03', 168000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team need to analyse in 7 days good communication can give a try', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-31 05:44:23', 60, '2024-06-01 06:33:46', 0, NULL, 1),
(19443, 'Ashok Aswin Kumar S', '6', '8807320221', '9894426814', 'ashokaswin0508@gmail.com', '1999-08-05', 24, '2', '2', 'Sampath S', 'TNEB', 70000.00, 1, 2.60, 3.50, '6/25, Anna Nagar, M G R Nagar, Tiruttani', '17/9, 7th Lane, Shastri Nagar, Adyar', '2405310005', '50', '2', 'upload_files/candidate_tracker/27697618025_ASHOK RESUME (4) (2) (1) (1) (1) (1).pdf', NULL, '1', '2024-05-31', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-31 05:56:54', 112, '2024-05-31 01:16:14', 0, NULL, 1),
(19444, 'S.Harish', '5', '7200672833', '9941083094', 'Harishsekar58@gmail.com', '2003-08-24', 20, '2', '2', 'D.Sekar', 'Travel Agency\'s', 30000.00, 1, 0.00, 10000.00, 'Chennai', 'Sowrasthra Nagar 8th street choolaimedu Chennai', '2405310006', '50', '1', 'upload_files/candidate_tracker/944284781_CV_2024053111331554.pdf', NULL, '1', '2024-05-31', 0, '', '5', '137', NULL, 0.00, '', '0', NULL, '1', 'low voice and slow understanding', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-31 06:12:26', 1, '2024-05-31 06:22:46', 0, NULL, 1),
(19445, 'Asmiya', '5', '6374763602', '9894272523', 'asmiyamsb7@gmail.com', '2001-03-24', 23, '2', '1', 'Sahul', 'Working', 19000.00, 2, 0.00, 26000.00, 'Valasaravakam', 'Valasaravakam', '2405310007', '1', '2', 'upload_files/candidate_tracker/61004205739_IMG_20230305_204918.pdf', NULL, '1', '2024-05-31', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Job needed person and we fix CTC 16k she has a 6 month exp in Max Life health insurance ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-05-31 06:23:43', 112, '2024-05-31 12:22:35', 0, NULL, 1),
(19446, 'nithiya shree j', '6', '9962189873', '', 'nithiyashreejaikumaran2003@gmail.com', '2003-01-27', 21, '2', '2', 'jaikumaran', 'painter', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2405310008', '50', '1', 'upload_files/candidate_tracker/60776090768_NithiyaShree.pdf', NULL, '1', '2024-05-31', 0, '', '7', '59', NULL, 0.00, '', '0', NULL, '1', 'better voice skill and good communication but distance is long so try for 7 days training period', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-31 07:22:21', 1, '2024-05-31 08:00:33', 0, NULL, 1),
(19447, 'Clinton Yuvaraj. P', '5', '6385756347', '', 'clintonyuvaraj02@gmail.com', '2002-02-11', 22, '1', '2', 'Mathalen mary', 'Anganwadi', 75000.00, 0, 0.00, 2.00, 'Gingee', 'Nungambakkam', '2405310009', '', '1', 'upload_files/candidate_tracker/51828541202_Clinton yuvaraj Resume.pdf', NULL, '1', '2024-05-31', 0, '55650', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2024-05-31 07:31:40', 112, '2024-05-31 02:38:25', 0, NULL, 1),
(19448, '', '0', '9360530542', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405310010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-31 07:51:20', 0, NULL, 0, NULL, 1),
(19449, '', '0', '9789825124', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2405310011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-05-31 10:42:23', 0, NULL, 0, NULL, 1),
(19450, 'VIJAYALAKSHMI B', '7', '6369586782', '', 'vl4540303@gmail.com', '2001-12-06', 22, '2', '2', 'Balaji', 'Delivery boy', 14400.00, 1, 0.00, 260000.00, 'Vadagarai, Chennai', 'Vadagarai, Chennai', '2405310012', '1', '1', 'upload_files/candidate_tracker/69003083141_resume-5.pdf', NULL, '1', '2024-06-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', 'H1017', '', '55605', '55605', '1970-01-01', 1, '2024-05-31 12:13:34', 104, '2024-06-15 01:22:58', 0, NULL, 1),
(19451, 'Jenifer Joyce J', '11', '8946061064', '', 'jeniferjenimeti458@gmail.com', '2004-06-14', 19, '3', '2', 'Jagadeesan', 'Leather business', 85000.00, 1, 0.00, 15000.00, 'Chennak', 'Periyamet', '2405310013', '', '1', 'upload_files/candidate_tracker/12825487176_JENIFER_JOYCE_J_1715491092188.pdf', NULL, '1', '2024-05-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-05-31 12:43:27', 1, '2024-05-31 12:47:55', 0, NULL, 1),
(19452, 'RAJAGURU', '4', '8838262733', '9042591727', 'rajaguruchinnadurai@gmail.com', '2002-03-30', 22, '2', '2', 'CHINNADURAI', 'FARMER', 30000.00, 1, 0.00, 15000.00, 'MALAYAPURAM,AMMAPET', 'MALAYAPURAM,AMMAPET', '2406010001', '1', '1', 'upload_files/candidate_tracker/69804943441_RAJAGURU resume.pdf', NULL, '1', '2024-06-01', 0, '', '3', '59', '2024-06-04', 168000.00, '', '2', '1970-01-01', '1', 'Selected for Thanjavur Location 5050 profile sustainability doubts', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', 'P1023', '5151', '2024-06-04', 1, '2024-06-01 05:58:20', 60, '2024-06-20 03:54:15', 0, NULL, 1),
(19453, 'Sheeba Ananthi S', '4', '9345281496', '', 'sheebatrt2020@gmail.com', '1998-05-06', 26, '3', '2', 'Sebastian', 'MRF', 70000.00, 1, 25000.00, 25000.00, 'Chennai', 'Chennai', '2406010002', '', '2', 'upload_files/candidate_tracker/53731496700_Sheeba.pdf', NULL, '1', '2024-06-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-01 06:00:34', 1, '2024-06-01 06:24:11', 0, NULL, 1),
(19454, 'Ajay', '11', '6379120132', '', 'ajjaguar1111@gmail.com', '2000-06-15', 23, '2', '2', 'ASOKAN', 'Car business', 500000.00, 2, 0.00, 15000.00, 'NAGERCOIL', 'Chennai', '2406010003', '1', '1', 'upload_files/candidate_tracker/52520780001_CV_2024042321331794.pdf', NULL, '1', '2024-06-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '55605', '55605', '1970-01-01', 1, '2024-06-01 08:04:14', 104, '2024-06-15 01:23:11', 0, NULL, 1),
(19455, 'Ejas ahamed s', '6', '9884634937', '', 'ijasahamed9595@gmail.com', '1999-10-05', 24, '2', '2', 'Sheik Abdul kadar', 'Nil', 10000.00, 0, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2406010004', '50', '1', 'upload_files/candidate_tracker/45149359550_my cv.pdf', NULL, '1', '2024-06-01', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, Expecting high salary and poor communication skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-01 08:05:53', 104, '2024-06-15 11:59:21', 0, NULL, 1),
(19456, 'R .Lavanya', '6', '7639176211', '8760012106', 'lavanyaravi2801@gmail.com', '2004-01-28', 20, '2', '2', 'Padmapriya.R', 'Labour', 12000.00, 1, 0.00, 14000.00, 'Svs nagar,valasarvakkam', 'Valasaravakkam', '2406010005', '34', '1', 'upload_files/candidate_tracker/55957210704_Image to pdf 01-Jun-2024.pdf', NULL, '1', '2024-06-01', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-01 10:12:08', 104, '2024-06-15 12:00:43', 0, NULL, 1),
(19457, 'Nivetha. J. R', '6', '9176296278', '9176123462', 'Jrnivetha5@gmail.com', '2003-12-05', 20, '2', '2', 'Jayakumar. M', 'Cooly', 10000.00, 1, 0.00, 16000.00, 'Pammadhukulam, redhills', 'Redhills', '2406010006', '34', '1', 'upload_files/candidate_tracker/42612189767_NISHA (1)-1.pdf', NULL, '1', '2024-06-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-01 10:13:00', 112, '2024-06-01 04:37:33', 0, NULL, 1),
(19458, 'Leemarose.c', '6', '7639695886', '8939315856', 'leemarose200311@gmail.com', '2003-12-08', 20, '2', '2', 'Chinnapparaj', 'Cooly', 12000.00, 2, 0.00, 16000.00, 'Rayapuram', 'Rayapuram', '2406010007', '34', '1', 'upload_files/candidate_tracker/89443626883_NISHA (1) - Copy.pdf', NULL, '1', '2024-06-01', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate not performed good in the interview process,also she is not most interested in this job', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-01 10:14:29', 104, '2024-06-15 12:25:17', 0, NULL, 1),
(19459, 'R.Nisha', '6', '9345853387', '9962722077', 'nram00319@gmail.com', '2004-08-24', 19, '2', '2', 'S.Rambahadur', 'Cooly', 12000.00, 2, 0.00, 16000.00, 'Perambur', 'Perambur', '2406010008', '34', '1', 'upload_files/candidate_tracker/85980560634_NISHA (2).pdf', NULL, '1', '2024-06-01', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not knowledge insurance not fit tele calling', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-01 10:39:24', 104, '2024-06-15 12:13:01', 0, NULL, 1),
(19460, 'Naveen teja Y', '5', '7019500615', '8951588198', 'Naveenteja582@gmail.com', '1993-08-26', 30, '2', '2', 'Yathi raju M', 'Business', 6000.00, 2, 23000.00, 25000.00, 'Kolar karnataka', 'KR puram bangalore', '2406010009', '1', '2', 'upload_files/candidate_tracker/73319455043_New Resume.docx', NULL, '1', '2024-06-03', 0, '', '3', '59', '2024-06-11', 300000.00, '', '5', '1970-01-01', '1', 'Selected for RM Role Need to train and analyse in 7 days Can give a try', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55555', '5151', '2024-07-01', 1, '2024-06-01 12:56:25', 60, '2024-06-25 07:17:12', 0, NULL, 1),
(19461, '', '0', '7358598417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406030001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-03 01:59:50', 0, NULL, 0, NULL, 1),
(19462, 'g sangeetha', '7', '9941911440', '9710883949', 'sangeeshailu147@gmail.com', '1998-03-07', 26, '2', '2', 'p l gopinath', 'watter supply', 15000.00, 10, 10.50, 15000.00, 'm k b na vayasarpadi', 'm k b naga vayas', '2406030002', '1', '2', 'upload_files/candidate_tracker/30035395291_G.sangeetha.docx', NULL, '1', '2024-06-03', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not suitable for our MF process, work experience with CAMS', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '4', '', '', 'H1017', '', '55605', '55605', '1970-01-01', 1, '2024-06-03 03:54:48', 104, '2024-06-15 01:24:27', 0, NULL, 1),
(19463, 'Krishnakumar Devaraj', '11', '8637638252', '9042124268', 'krishnakumard2000@gmail.com', '2000-07-18', 23, '2', '2', 'Devaraj K N', 'Weaver', 40000.00, 1, 0.00, 18000.00, 'Erode', 'Chennai', '2406030003', '1', '1', 'upload_files/candidate_tracker/3648784613_Krishna CV.pdf', NULL, '1', '2024-06-03', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not clear with his communication.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55605', '55605', '1970-01-01', 1, '2024-06-03 04:23:17', 104, '2024-06-15 01:24:42', 0, NULL, 1),
(19464, 'Asif basha .H', '6', '7449257517', '7448540590', 'asifcrus1234@gmail.com', '2001-11-13', 22, '2', '2', 'Hassian', 'Electric', 12000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2406030004', '1', '1', 'upload_files/candidate_tracker/6360159067_resume 69.docx', NULL, '1', '2024-06-03', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'right now looking for job and 3month later he is apply for master degree', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-03 05:01:19', 104, '2024-06-15 12:13:22', 0, NULL, 1),
(19465, 'Kirthika g.p', '6', '9894147211', '9840714295', 'agikirthi@gmail.com', '2002-02-12', 22, '2', '2', 'Padmanabhan', 'Air india', 90000.00, 1, 0.00, 20000.00, '3/55, ambedkar Street,manimangalam,kanchipuram.', '3/55, Ambedkar Street,Manimangalam,Kanchipuram.', '2406030005', '1', '1', 'upload_files/candidate_tracker/89681699924_KIRTHIKA PADMANABAN.pdf', NULL, '1', '2024-06-03', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'intrested i accounts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', '55577', '5151', '1970-01-01', 1, '2024-06-03 05:01:46', 104, '2024-06-15 12:08:31', 0, NULL, 1),
(19466, 'Vijay.R', '6', '8939540412', '7449257517', 'Vijayravi454@gmail.com', '2001-05-06', 23, '2', '2', 'Ravi', 'Shopkeeper', 6000.00, 1, 0.00, 22000.00, 'Chengalpattu', 'Chengalpattu', '2406030006', '1', '1', 'upload_files/candidate_tracker/21767951772_R.VIJAY RESUME.pdf', NULL, '1', '2024-06-03', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not intersted the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-03 05:01:55', 104, '2024-06-15 12:02:20', 0, NULL, 1),
(19467, 'R.Nivetha', '6', '8110996775', '9677717832', 'nivethar292@gmail.com', '2004-05-17', 20, '2', '2', 'Ranjendran', 'Daily wages', 8000.00, 2, 0.00, 15000.00, 'Kadapakkam', 'Kadapakkam', '2406030007', '36', '1', 'upload_files/candidate_tracker/46516983659_Minimalist White and Grey Professional Resume_20240524_204511_0000-1.pdf', NULL, '3', '2024-06-03', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Low voice and no clarity on speech', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-03 05:13:58', 104, '2024-06-15 12:09:02', 0, NULL, 1),
(19468, 'V.Iniya', '6', '9342216384', '9600884157', 'iniyainiya057@gmail.com', '2004-08-16', 19, '2', '2', 'Vinayagam', 'Daily wages', 8000.00, 2, 0.00, 15000.00, 'Kalpakkam', 'Kalpakkam', '2406030008', '36', '1', 'upload_files/candidate_tracker/70403258898_v.iniya resume.pdf', NULL, '3', '2024-06-03', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-03 05:15:51', 104, '2024-06-15 12:02:51', 0, NULL, 1),
(19469, 'Sangeetha T. b', '6', '7358340734', '9445795411', 'sangeethaanu2015@gmail.com', '1999-11-20', 24, '1', '2', 'Balagopal T S', 'Supervisor', 15000.00, 1, 0.00, 22000.00, 'Veppampattu', 'Veppampattu', '2406030009', '', '2', 'upload_files/candidate_tracker/1984834048_sangeetha resume (1) (2).pdf', NULL, '1', '2024-06-03', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50/50 salary expectation high, cross check payslip. negotiate the salary maximum 18k. may be try pc side but distance too long.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-03 05:22:49', 104, '2024-06-15 12:43:31', 0, NULL, 1),
(19470, 'Soniya H', '6', '8667611410', '', 'soniyakhariharan27@gmail.com', '2000-05-27', 24, '1', '2', 'P. Hari haran', 'Car driver', 15000.00, 1, 17000.00, 20000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2406030010', '', '2', 'upload_files/candidate_tracker/99993471178_soniya hariharan.pdf', NULL, '1', '2024-06-03', 0, '77852', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shared the documents and after that there is no response came with Sandhiya T B hope through thirisha they got backed', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-03 05:23:32', 104, '2024-06-15 01:01:47', 0, NULL, 1),
(19471, 'A MOHAMED AZARUDIN', '6', '7305934064', '', 'azarudinmohamed383@gmail.com', '1999-09-01', 24, '2', '2', 'M Abdul Rahim', 'Driver', 30000.00, 2, 11000.00, 16000.00, 'CHENNAI-600041', 'CHENNAI-600041', '2406030011', '36', '2', 'upload_files/candidate_tracker/9031363836_Azar.pdf', NULL, '1', '2024-06-03', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Right Now Looking For Job And 3month Later He Is Apply For Master Degree', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-03 05:35:59', 104, '2024-06-15 12:13:42', 0, NULL, 1),
(19472, 'Abdul wajith', '5', '8072498166', '', 'abdulwajith15@gmail.com', '1998-02-28', 26, '2', '1', 'Yasmeen', 'house wife', 50000.00, 0, 17000.00, 20000.00, 'Chennai', 'Chennai', '2406030012', '50', '2', 'upload_files/candidate_tracker/86831112772_resume.pdf', NULL, '1', '2024-06-03', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected, not convincing', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-06-03 05:56:30', 104, '2024-06-15 12:39:07', 0, NULL, 1),
(19473, 'Kaviyarasu', '6', '8072324734', '', 'Kavileo07@gmail.com', '1996-07-31', 27, '1', '2', 'Saravana', 'Cattering', 15000.00, 1, 21700.00, 28000.00, 'Chennai', 'Chennai', '2406030013', '', '2', 'upload_files/candidate_tracker/71349228673_kaviarasu.docx', NULL, '1', '2024-06-03', 0, '77852', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is not ok. team reference.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-03 06:11:20', 104, '2024-06-15 12:43:56', 0, NULL, 1),
(19474, 'PRASATH R', '6', '9361859309', '', 'prasath8680857861@gmail.com', '2000-12-18', 23, '2', '2', 'G RAJASEKAR', 'Winch operator (chennai harbour)', 30000.00, 1, 13500.00, 25000.00, 'Chennai City', 'Chennai', '2406030014', '1', '2', 'upload_files/candidate_tracker/26718474768_PRASATH R - CV.pdf', NULL, '1', '2024-06-03', 30, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for the job. he has come due to compulsion to attaent the interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-03 06:39:59', 104, '2024-06-15 12:03:52', 0, NULL, 1),
(19475, 'Thirumurugan P', '6', '9360070134', '9360438043', 'muruganthiru5447@gmail.com', '2002-06-05', 21, '2', '2', 'Palani', 'Farmer', 200000.00, 1, 13500.00, 22000.00, 'Villupuram', 'Chennai', '2406030015', '1', '2', 'upload_files/candidate_tracker/56955347072_Thirumurugan P_Resume.docx', NULL, '1', '2024-06-03', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-06-03 06:43:40', 112, '2024-06-03 03:31:12', 0, NULL, 1),
(19476, '', '0', '7845067576', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406030016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-03 08:39:15', 0, NULL, 0, NULL, 1),
(19477, 'Mukesh R', '5', '6369818898', '8122143559', 'mugeshravi19@gmail.com', '1998-05-18', 26, '3', '2', 'Ravi K', 'Daily wages', 20000.00, 1, 18840.00, 25000.00, 'Virugambakkam', 'Virugambakkam', '2406030017', '', '2', 'upload_files/candidate_tracker/70516261232_Mukesh.R_Resume.pdf', NULL, '1', '2024-06-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Followed several times and he is not showing much interest in the profile asked him to share the required documents but no responses later', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-06-03 09:05:02', 60, '2024-06-20 04:28:40', 0, NULL, 1),
(19478, 'abinaya manoharan', '6', '7845649048', '9740272791', 'abinayamanoharan115@gmail.com', '1993-12-26', 30, '2', '2', 'thenmozhi', 'ntg', 10000.00, 1, 20000.00, 20000.00, 'Bangalore', 'Bangalore', '2406030018', '1', '2', 'upload_files/candidate_tracker/21600251514_Abi B.E new.docx', NULL, '1', '2024-06-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not open to work for 6 days in a week', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-06-03 11:25:05', 60, '2024-06-21 07:33:59', 0, NULL, 1),
(19479, 'Mariyavinitha', '6', '7812843185', '', 'vinithalawrence48@gmail.com', '2003-06-16', 20, '2', '2', 'Lawrance', 'Security', 12000.00, 1, 0.00, 14.00, 'Velankanni', 'Ana nagar west, chennai', '2406030019', '1', '1', 'upload_files/candidate_tracker/96551336158_vinitha.pdf', NULL, '1', '2024-06-05', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No skil', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1021', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-03 01:23:07', 104, '2024-06-15 12:04:23', 0, NULL, 1),
(19480, 'Premalatha', '6', '8122117650', '', 'premalatha1118@gmail.com', '2003-01-18', 21, '2', '2', 'Murugan', 'Mason', 12000.00, 0, 0.00, 14.00, 'Velankanni', 'Anna nagar west, Chennai', '2406030020', '1', '1', 'upload_files/candidate_tracker/29025809150_Lenin J _20240603_090328_0000.pdf', NULL, '1', '2024-06-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is very good skill , and better voice , fresher , so try to 7 days training period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1021', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-03 01:23:47', 104, '2024-06-15 01:03:26', 0, NULL, 1),
(19481, 'N Karthikeyan', '6', '8778109027', '', 'ekalkarthin@gmail.com', '1990-05-03', 34, '2', '2', 'A Nagarajan', 'Nil', 40000.00, 6, 22000.00, 22000.00, 'Chennai', 'Chennai', '2406030021', '1', '2', 'upload_files/candidate_tracker/3241276886_My Resume Karthi.docx', NULL, '1', '2024-06-06', 1, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1023', '', NULL, NULL, NULL, 1, '2024-06-03 02:18:02', 112, '2024-06-06 02:52:07', 0, NULL, 1),
(19482, 'Pavan Kalyan N U', '13', '7904061298', '', 'pavan.nu2001@gmail.com', '2001-11-13', 22, '3', '2', 'Umasankar N', 'Ashok Leyland employee', 35000.00, 1, 0.00, 250000.00, 'No.28, Kamarajar street, Balaji Nagar, Ponneri', 'No.28, Kamarajar Street, Balaji Nagar, Ponneri', '2406040001', '', '1', 'upload_files/candidate_tracker/58773885136_Pavan Kalyan N U - Resume.pdf', NULL, '1', '2024-06-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-04 04:05:24', 130, '2024-06-07 10:13:45', 0, NULL, 1),
(19483, 'Palani M', '13', '6379007399', '9840829436', 'palanirko36@gmail.com', '2001-02-09', 23, '3', '2', 'Muniyan', 'Labour', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2406040002', '', '1', 'upload_files/candidate_tracker/32950156058_palani resume.pdf.pdf', NULL, '1', '2024-06-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-04 04:29:01', 130, '2024-06-04 12:09:18', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19484, 'Gopinath K', '14', '9688174025', '8248522032', 'gopinathckandasamy25@gmail.com', '1996-09-25', 27, '3', '1', 'Thenmozhi', 'Mechanical Testing', 50000.00, 1, 750000.00, 1200000.00, 'VILLUPURAM', 'Chennai', '2406040003', '', '2', 'upload_files/candidate_tracker/14938841650_Gopinath Kandasamy (1).pdf', NULL, '1', '2024-06-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-04 04:34:13', 1, '2024-06-04 04:37:20', 0, NULL, 1),
(19485, 'Muthukumar m', '13', '7806955525', '', 'muthukumar.murugan.m7@gmail.com', '2001-07-25', 22, '3', '2', 'murugan r', 'business', 50000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2406040004', '', '1', 'upload_files/candidate_tracker/74300490706_Muthukumar murugan Web tech.pdf', NULL, '1', '2024-06-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-04 04:34:23', 130, '2024-06-12 01:07:53', 0, NULL, 1),
(19486, 'Srihariharan. S', '31', '9150369313', '8270249850', 'skhariharan857@gmail.com', '2002-05-02', 22, '3', '2', 'Sasikumar. A', 'Farmer', 20000.00, 1, 0.00, 17000.00, 'Neduvasal', 'Chennai', '2406040005', '', '1', 'upload_files/candidate_tracker/4002262695_Hari S resume .pdf', NULL, '1', '2024-06-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-04 04:36:37', 130, '2024-06-04 12:09:37', 0, NULL, 1),
(19487, 'Vishal V', '31', '8270249850', '', 'vishal.viswanaathan@gmail.com', '2001-10-15', 22, '3', '2', 'Viswanathan', 'Driver', 12000.00, 1, 0.00, 18000.00, 'Kattumannar koil', 'Chennai', '2406040006', '', '1', 'upload_files/candidate_tracker/93126311076_Vishal V- Resume.pdf', NULL, '1', '2024-06-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-04 04:37:29', 130, '2024-06-07 10:13:25', 0, NULL, 1),
(19488, 'Narmadha', '23', '6369255419', '', 'Narmadhap79@gmail.cim', '2000-06-13', 23, '3', '2', 'Ganapathi', 'Nan', 10000.00, 2, 0.00, 10000.00, 'Vadapalani', 'Vadapalani', '2406040007', '', '1', 'upload_files/candidate_tracker/88127961591_narmadha.pdf', NULL, '1', '2024-06-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-04 04:38:47', 130, '2024-06-04 12:07:34', 0, NULL, 1),
(19489, 'Abhinaiyasri V', '6', '9087741937', '7845338913', 'abhinaiyasri@gmail.com', '2004-08-05', 19, '1', '2', 'K. Vinothkumar', 'Auto driver', 96000.00, 1, 0.00, 16000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2406040008', '', '1', 'upload_files/candidate_tracker/25170538074_resume (1).docx', NULL, '1', '2024-06-04', 0, '77797', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Low voice and looking accounts related job', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-04 04:38:53', 104, '2024-06-15 12:09:21', 0, NULL, 1),
(19490, 'S. Janani', '6', '6385113528', '6385113529', 'jananideveloper2024@gmail.com', '2003-01-06', 21, '2', '2', 'Senthil murugan', 'Student', 300000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2406040009', '50', '1', 'upload_files/candidate_tracker/45308710751_white simple student cv resume_20240404_123841_0000.pdf', NULL, '1', '2024-06-04', 0, '', '3', '59', '2024-06-06', 168000.00, '', '1', '1970-01-01', '1', 'Selected for Giri Team Relationship Executive Role Need to analyse in 7 days and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2024-06-06', 1, '2024-06-04 05:06:30', 60, '2024-06-15 04:34:39', 0, NULL, 1),
(19491, 'Deebak', '14', '9626432547', '9489475378', 'deebakmanickam@gmail.com', '1998-12-20', 25, '3', '2', 'Manickam', 'Retired Temple Architect', 30000.00, 1, 0.00, 10000.00, 'CHENNAI', 'CHENNAI', '2406040010', '', '1', 'upload_files/candidate_tracker/2967004268_Resume2024 .pdf', NULL, '1', '2024-06-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-04 05:21:49', 130, '2024-06-07 03:47:26', 0, NULL, 1),
(19492, 'Kamalraj', '31', '9790732653', '', 'kamalrajnatarajan@gmail.com', '2000-06-12', 23, '3', '2', 'Ambika', 'Farming', 10000.00, 1, 0.00, 2.50, 'Perambalur', 'Jj nagar', '2406040011', '', '1', 'upload_files/candidate_tracker/17916520425_Kamalraj Ntarajan-01 (1).pdf', NULL, '1', '2024-06-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-04 05:24:13', 130, '2024-06-12 01:07:04', 0, NULL, 1),
(19493, 'JACKWIN J', '6', '7558131391', '', 'jackwin812001@gmail.com', '2001-01-08', 23, '2', '2', 'JEYAPAL K', 'Former', 12000.00, 1, 0.00, 20000.00, '82, pillaimar West Street sundarapandiyam', 'Anna nagar', '2406040012', '50', '1', 'upload_files/candidate_tracker/82678318679_JACKWIN J.pdf', NULL, '1', '2024-06-04', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit for the sales job. communication not well and field work not interest.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-04 05:57:42', 104, '2024-06-15 12:44:15', 0, NULL, 1),
(19494, 'Arunkumar C', '6', '6369406852', '', 'arunkumarpandidurai@gmail.com', '2002-08-29', 21, '2', '2', 'Chella pandi durai P', 'Farmer', 20000.00, 1, 0.00, 16000.00, 'Madurai', 'Madurai', '2406040013', '42', '1', 'upload_files/candidate_tracker/38579449117_ArunKumar.pdf', NULL, '1', '2024-06-04', 0, '', '3', '59', '2024-06-11', 192000.00, '', '1', '1970-01-01', '1', 'Selected for RE role,Consultant Role for Gopinath Team his brother is in same domain,need to have a eye on the data secure', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2024-06-11', 1, '2024-06-04 05:58:11', 60, '2024-06-15 04:34:55', 0, NULL, 1),
(19495, 'Jayaram M', '13', '6379328747', '', 'jayaramselvi2001@gmail.com', '2001-04-03', 23, '3', '2', 'Murugan', 'Shop', 50000.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Vandalur', '2406040014', '', '1', 'upload_files/candidate_tracker/60527549940_myResume (2).pdf', NULL, '1', '2024-06-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-04 06:21:30', 130, '2024-06-04 01:23:57', 0, NULL, 1),
(19496, 'Karunakar G', '5', '8374273147', '', 'Karuna1302.nss@gmail.com', '1990-06-10', 33, '2', '2', 'G Venkatesu', 'Former', 15000.00, 2, 20000.00, 25000.00, '9/420/Rajiv Nagar, Piler, 517214,Annamayya dt', 'KR Puram, Ayyappanagar gate, banglore', '2406040015', '39', '2', 'upload_files/candidate_tracker/11573252332_f5e1f864-7c52-4aae-943e-56554ea62675.pdf', NULL, '1', '2024-06-04', 1, '', '3', '59', '2024-06-17', 252000.00, '', NULL, '2024-10-25', '2', 'Selected for RM Role Bangalore location need to analyse in 7 days long career gap', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '2024-06-17', 1, '2024-06-04 06:56:42', 60, '2024-06-20 10:33:56', 0, NULL, 1),
(19497, 'Jayasree', '6', '9677566955', '7200521490', 'jayasreemanikandan2016@gmail.com', '1994-01-09', 30, '2', '1', 'Husband', 'Private employee', 80000.00, 1, 0.00, 300000.00, 'Kundrathur', 'Kundrathur Chennai', '2406040016', '39', '1', 'upload_files/candidate_tracker/93588366442_resume .pdf', NULL, '1', '2024-06-04', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She was not fit for sales , sustainability doubt and also from long distance.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '55605', '55605', '1970-01-01', 1, '2024-06-04 07:03:59', 60, '2024-06-21 07:31:00', 0, NULL, 1),
(19498, 'Nilasish Goswami', '5', '9706737047', '', 'nilasishg0@gmail.com', '2009-06-04', 0, '2', '2', 'NA', 'NA', 10.00, 1, 500000.00, 500000.00, 'Karimganj, Assam', 'Marathahalli, Bengalore', '2406040017', '1', '2', 'upload_files/candidate_tracker/46190683021_Nilasish_Goswami_CV.pdf', NULL, '1', '2024-06-04', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and salary expectation is high', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-06-04 08:35:53', 60, '2024-06-15 07:41:12', 0, NULL, 1),
(19499, 'SANJAY S', '6', '9345707377', '9566158194', 'sanjay3010200@gmail.com', '2002-10-30', 21, '2', '2', 'Sankar j', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Arni', 'Arni', '2406040018', '50', '1', 'upload_files/candidate_tracker/83725049156_Sanjay new.pdf', NULL, '1', '2024-06-04', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate  voice is average but family backround is very low  so job is very needed  so try for 7days training', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-04 09:05:01', 104, '2024-06-15 01:04:16', 0, NULL, 1),
(19500, 'Vahith Rahuman', '9', '8778233127', '', 'aalzraa777@gmail.com', '2002-03-11', 22, '3', '2', 'Inrahim', 'House wife', 25000.00, 0, 0.00, 20000.00, 'Vadapalani', 'Vadapalani', '2406040019', '', '2', 'upload_files/candidate_tracker/99920379971_Resume 24.pdf', NULL, '1', '2024-06-04', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Performed Well in The Process Also his attire is very poor', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-04 10:23:30', 104, '2024-06-15 12:25:41', 0, NULL, 1),
(19501, 'Mukeshkanna', '6', '8870350354', '', 'mukeshcsp3@gmail.com', '1999-11-08', 24, '3', '2', 'Veera', 'farmer', 20000.00, 0, 13000.00, 20000.00, 'Tiruarur', 'chennai', '2406040020', '', '2', 'upload_files/candidate_tracker/90159789263_Mk Pk.pdf', NULL, '1', '2024-06-04', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-04 10:30:22', 104, '2024-06-15 12:36:04', 0, NULL, 1),
(19502, 'Preethish', '6', '9629118899', '', 'Preethish44@gmail.com', '2004-08-25', 19, '2', '2', 'Selvakumar', 'Finance', 50000.00, 1, 0.00, 19000.00, 'Salem', 'Salem', '2406040021', '1', '1', 'upload_files/candidate_tracker/43686864440_Resume.PDF', NULL, '1', '2024-06-05', 0, '', '3', '59', '2024-06-11', 192000.00, '', '2', '1970-01-01', '1', '5050 profile for RE role Can try Need to analyse in 7 days', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55651', '5151', '2024-06-11', 1, '2024-06-04 01:05:24', 60, '2024-06-20 03:51:17', 0, NULL, 1),
(19503, 'Raheshwari', '4', '8675353681', '', 'rajiarun2224@gmail.com', '1999-04-24', 25, '2', '1', 'Arunraj', 'Network engineer', 20000.00, 1, 13000.00, 15000.00, 'Thiruvaiyaru', 'Thirucaiyaru', '2406040022', '1', '2', 'upload_files/candidate_tracker/82459278700_RAJESHWARI K.doc', NULL, '1', '2024-06-05', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2024-06-04 02:18:00', 104, '2024-06-15 12:41:18', 0, NULL, 1),
(19504, 'AKASH S', '13', '8610178180', '', 'sbakash2002@gmail.com', '2002-01-24', 0, '3', '2', 'K. SRINIVASAN', 'BUSINESS', 25000.00, 1, 0.00, 15000.00, 'Trichy', 'Trichy', '2406050001', '', '1', 'upload_files/candidate_tracker/96451120710_Akash2 (1).pdf', NULL, '1', '2024-06-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-05 04:29:59', 112, '2024-06-05 01:29:29', 0, NULL, 1),
(19505, 'vishal mani', '13', '9003316248', '', 'iamvishalsr@gmail.com', '2000-06-03', 24, '3', '2', 'selvaraj', 'hsc', 20000.00, 1, 0.00, 3.00, 'palayamkottai tirunelveli', 'chennai', '2406050002', '', '1', 'upload_files/candidate_tracker/68561711835_resume.pdf', NULL, '1', '2024-06-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-05 04:32:32', 112, '2024-06-05 01:30:15', 0, NULL, 1),
(19506, 'Viswas', '13', '8610907374', '', 'viswassujith8@gmail.com', '2000-11-13', 23, '3', '2', 'Venkatesan', 'Garment Manager', 20000.00, 1, 0.00, 15000.00, 'Tirupur', 'Chennai', '2406050003', '', '1', 'upload_files/candidate_tracker/82581475653_Viswas_Resume (2)-2.pdf', NULL, '1', '2024-06-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-05 05:07:07', 130, '2024-06-07 04:01:06', 0, NULL, 1),
(19507, 'P. ABISHEK', '6', '9384615725', '6382219051', 'Abishekjackson27@gmail.com', '2000-12-10', 23, '1', '2', 'P. Periyasamy', 'Mansion', 5000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2406050004', '', '1', 'upload_files/candidate_tracker/40341412084_Abishek.pdf', NULL, '1', '2024-06-05', 0, '1404', '9', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Already working another domain interested in sales but field work no interested so, may be will try operation team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-05 05:29:41', 104, '2024-06-15 01:20:40', 0, NULL, 1),
(19508, 'lakshmi v', '6', '7338770480', '', 'lakshmivijayan005@gmail.com', '2002-08-04', 21, '2', '2', 'vijayan', 'Security', 15000.00, 1, 15000.00, 17000.00, 'chennai', 'chennai', '2406050005', '50', '2', 'upload_files/candidate_tracker/27174971867_LAKSHMI.pdf', NULL, '1', '2024-06-05', 0, '', '3', '59', '2024-06-07', 198000.00, '', '3', '2025-02-26', '2', 'Selected for Relationship Executive Role Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '2024-06-07', 1, '2024-06-05 05:30:14', 60, '2024-06-15 04:35:12', 0, NULL, 1),
(19509, 'jeeva t', '6', '9080481740', '', 'jeeva25001@gmail.com', '2001-10-25', 22, '2', '2', 'thulasi doss', 'dye maker', 20000.00, 1, 0.00, 20000.00, 'chennai', 'Chennai', '2406050006', '50', '1', 'upload_files/candidate_tracker/86846128445_JEEVA.pdf', NULL, '1', '2024-06-05', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate have Gap Speaking Problem So he is very tough to addmier here also not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-05 05:44:27', 104, '2024-06-15 12:26:37', 0, NULL, 1),
(19510, 'Sharmela', '6', '7708269873', '9486562101', 'sharmela.ece@gmail.com', '1995-12-17', 28, '2', '2', 'Manimegalai', 'B.E(ece)', 15000.00, 1, 0.00, 15000.00, 'Karaikudi, sivaganga', 'Ashok pillar, chennai', '2406050007', '50', '1', 'upload_files/candidate_tracker/35815157751_sharmela.pdf', NULL, '1', '2024-06-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-05 05:44:49', 104, '2024-06-15 12:36:23', 0, NULL, 1),
(19511, 'Hemalatha.K', '6', '9384988575', '', 'hemalatha1642820@gmail.com', '2001-05-20', 23, '2', '2', 'Kamalanathan.P', 'BE(ECE)', 20000.00, 1, 0.00, 15.00, '15, vadamanapakkam,Thiruvannamalai district', 'Ashok pillar', '2406050008', '50', '1', 'upload_files/candidate_tracker/1706603378_Document from ..pdf', NULL, '1', '2024-06-05', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'her first preference is non voice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-05 05:46:29', 104, '2024-06-15 12:09:48', 0, NULL, 1),
(19512, '', '0', '9677242498', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406050009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-05 05:55:35', 0, NULL, 0, NULL, 1),
(19513, 'Gopinath S', '13', '6379455732', '9043202390', 'gopinath3369@gmail.com', '2000-12-04', 23, '3', '2', 'Vasanthi P S', 'Labour', 15000.00, 1, 0.00, 250000.00, 'Salem', 'Chennai', '2406050010', '', '1', 'upload_files/candidate_tracker/25609590414_Gopinath S.pdf', NULL, '1', '2024-06-05', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-05 06:02:47', 112, '2024-06-05 01:30:31', 0, NULL, 1),
(19514, '', '0', '8825835983', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406050011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-05 06:11:24', 0, NULL, 0, NULL, 1),
(19515, 'Suganthi.R', '6', '7339044110', '9790945770', 'suganthirsuganthir11@gmail.com', '2002-09-24', 21, '2', '2', 'Ravi A', 'Driver', 10000.00, 1, 0.00, 16000.00, 'Urapakkam', 'Urapakkam', '2406050012', '42', '1', 'upload_files/candidate_tracker/29816981405_DocScanner Jun 3, 2024 16-18.pdf', NULL, '1', '2024-06-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-05 06:13:39', 112, '2024-06-05 01:16:21', 0, NULL, 1),
(19516, '', '0', '9941576134', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406050013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-05 06:13:59', 0, NULL, 0, NULL, 1),
(19517, 'Asha N S', '4', '9071484585', '9591137013', 'nsasha19972015@gmail.com', '1997-05-08', 27, '6', '2', 'Srinivasaiah', 'Asst. Librarian', 40.00, 1, 23333.00, 30000.00, 'Chintamani', 'Kolar', '2406050014', '', '2', 'upload_files/candidate_tracker/91124972355_ASHA N S_RESUME.pdf', NULL, '2', '2024-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-05 06:16:31', 1, '2024-06-05 06:29:51', 0, NULL, 1),
(19518, 'J.Bryan Samuel', '5', '7358811822', '6380410116', 'BRYANSAM917@GMAIL.COM', '1999-05-04', 25, '1', '2', 'John Chandra babu', 'Buisness', 60000.00, 1, 18000.00, 21000.00, 'Kolathur', 'Kolathur', '2406050015', '', '2', 'upload_files/candidate_tracker/48469448157_Resume 5th june.pdf', NULL, '2', '2024-06-05', 1, '163', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55567', '55557', '1970-01-01', 1, '2024-06-05 06:19:08', 104, '2024-06-15 12:40:26', 0, NULL, 1),
(19519, 'Regina d sovza', '6', '8939258053', '', 'rajajana179@gmail.com', '2004-06-22', 19, '2', '2', 'Raja', 'Coolie', 18000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2406050016', '50', '1', 'upload_files/candidate_tracker/73195985391_Resume.pdf', NULL, '1', '2024-06-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need time to check with her family too long distance later there was no update from her', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-05 07:19:08', 104, '2024-06-15 01:04:52', 0, NULL, 1),
(19520, 'S suguna', '4', '6383190652', '6374242723', 'Sugunapakiyaraj@gmail.com', '1996-02-25', 28, '2', '1', 'T.pakiyaraj', 'Former', 40000.00, 1, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2406050017', '1', '1', 'upload_files/candidate_tracker/98971326320_Resume_05_06_2024_11_21_57_AM.pdf', NULL, '1', '2024-06-05', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', 'P1023', '5151', '1970-01-01', 1, '2024-06-05 07:23:59', 104, '2024-06-15 12:41:40', 0, NULL, 1),
(19521, '', '0', '9859746891', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406050018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-05 08:58:46', 0, NULL, 0, NULL, 1),
(19522, 'Shalini', '6', '9150293205', '7094233201', 'shalus2506@gmail.com', '1999-06-25', 24, '2', '2', 'Parent', 'Farmer', 12000.00, 1, 14000.00, 20000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2406050019', '1', '2', 'upload_files/candidate_tracker/55081195750_shalu s.pdf', NULL, '1', '2024-06-05', 7, '', '3', '59', '2024-06-06', 204000.00, '', '2', '1970-01-01', '2', 'Shared the breakup but seems to be doubtful and exp is high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', '55666', '5151', '2024-06-06', 1, '2024-06-05 09:38:42', 60, '2024-06-20 04:27:17', 0, NULL, 1),
(19523, 'AAMOSE S', '6', '8608523585', '', 'samuvelnesamani@gmail.com', '2004-06-27', 19, '2', '2', 'Parents', 'Security', 12000.00, 1, 0.00, 15000.00, 'Mathur', 'Mathur', '2406050020', '50', '1', 'upload_files/candidate_tracker/22484495039_Aamose Resume.pdf', NULL, '1', '2024-06-05', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is not came Formal wear and fresher fst interview and communication level low', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-05 10:10:13', 104, '2024-06-15 12:14:00', 0, NULL, 1),
(19524, 'ryson berna', '7', '9080102064', '', 'rysonbernando11@gmail.com', '2003-06-11', 20, '3', '2', 'selvam', 'driver', 200000.00, 1, 0.00, 20000.00, 'Madhavaram', 'chennai', '2406050021', '', '1', 'upload_files/candidate_tracker/12344876806_RYSON CV 2.docx', NULL, '1', '2024-06-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-05 12:33:43', 1, '2024-06-05 03:40:45', 0, NULL, 1),
(19525, '', '0', '7338927767', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406050022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-05 12:47:18', 0, NULL, 0, NULL, 1),
(19526, 'PRAVEEN M', '7', '6380182155', '9791194020', 'praveenm2007456@gmail.com', '2001-02-18', 23, '2', '2', 'M MURTHY', 'Car driver', 12000.00, 1, 13000.00, 16000.00, 'NO.29/11 PERUMAL STREET, KONDITHOPE, CHENNAI', 'NO.29/11 PERUMAL STREET, KONDITHOPE, CHENNAI', '2406050023', '1', '2', 'upload_files/candidate_tracker/48091727229_CV NEW pdf.pdf', NULL, '1', '2024-06-06', 0, '', '3', '59', '2024-06-07', 194496.00, '', '1', '1970-01-01', '2', 'Selecetd for Mutual Fund Role 2yrs NDA for this role can be trained have basic knowledge in MF have exp in BGV process', '7', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '4', '', '', 'H1017', '', '55566', '5151', '2024-06-07', 1, '2024-06-05 01:40:09', 60, '2024-06-20 04:33:14', 0, NULL, 1),
(19527, '', '0', '9336324604', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406050024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-05 04:36:42', 0, NULL, 0, NULL, 1),
(19528, 'H NARESH', '26', '9551425917', '', 'nareshjesvin@gmail.com', '1996-01-22', 28, '2', '2', 'Nil', 'Private limited', 17500.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2406060001', '1', '2', 'upload_files/candidate_tracker/67615695272_resume .doc.docx', NULL, '1', '2024-06-06', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '4', '', '', 'H1017', '', '55605', '55605', '1970-01-01', 1, '2024-06-06 05:24:45', 104, '2024-06-15 01:23:40', 0, NULL, 1),
(19529, 'Indhira V', '20', '8939266588', '9841808579', 'indhiragiri@gmail.com', '2003-07-24', 20, '2', '2', 'Vedagiri', 'Welding inspector', 150000.00, 1, 13000.00, 18000.00, 'Old naapalayam', 'Old naapalayam', '2406060002', '50', '2', 'upload_files/candidate_tracker/79442010002_INDHIRA.pdf', NULL, '1', '2024-06-06', 0, '', '3', '59', '2024-06-10', 180000.00, '', '2', '1970-01-01', '2', 'Fresher for Sales have 6 months ops exp can give a try need to analyse in 7 days', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2024-06-10', 1, '2024-06-06 05:24:57', 60, '2024-06-20 04:32:42', 0, NULL, 1),
(19530, 'Daniel Raj.k', '31', '9715466869', '9751247569', 'daniel2001alpha@gmail.com', '2001-01-31', 23, '3', '2', 'Karuppaiah p', 'Wage worker', 20000.00, 1, 0.00, 15000.00, 'Jawahar Street peraiyur madurai-625703', 'Ram Nagar, Velachery, Chennai,600042', '2406060003', '', '1', 'upload_files/candidate_tracker/42413538372_danielResume.pdf', NULL, '1', '2024-06-06', 0, '', '3', '60', '2024-06-28', 0.00, '', '3', '2025-05-02', '2', 'Selected for IT openings with the agreed terms and conditions  interviewed by Sathish xxamp Gokul and finalised', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-06 05:25:13', 60, '2024-06-28 12:27:42', 0, NULL, 1),
(19531, 'K . Rubika', '6', '8667758536', '9176387071', 'rubika630@gmail.com', '2002-04-06', 22, '2', '2', 'Noo', 'Shankar', 14000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2406060004', '36', '1', 'upload_files/candidate_tracker/29511435517_Rubika.K .pdf', NULL, '1', '2024-06-06', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interested in accounts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-06 05:27:32', 104, '2024-06-15 12:10:12', 0, NULL, 1),
(19532, 'Thulasi Y', '6', '6369431072', '6385143174', 'thulasicy@gmail.com', '2001-06-04', 23, '2', '1', 'Prem kumar v', 'Radiologist', 25.00, 2, 25.00, 20.00, '2/27 sigirintha palayam 3rd Street Chennai 21', '2/27 Sigirintha Palayam 3rd Street Chennai 21', '2406060005', '50', '2', 'upload_files/candidate_tracker/83028894160_my resume .pdf', NULL, '1', '2024-06-06', 1, '', '3', '59', '2024-06-19', 182496.00, '', '2', '1970-01-01', '2', 'SElected for RE MF role Need to analyse in 7 days Sustainability doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '4', '', '', '', '', '55605', '55605', '1970-01-01', 1, '2024-06-06 05:40:04', 60, '2024-06-21 07:31:15', 0, NULL, 1),
(19533, 'Manivannan', '31', '6379108328', '', 'maniragupandu@gmail.com', '2000-12-13', 23, '3', '2', 'Ragupathy', 'Farmer', 25000.00, 2, 0.00, 15000.00, 'Thiruvannamalai', 'Thiruvannamalai', '2406060006', '', '1', 'upload_files/candidate_tracker/73237504023_manivannan ragupathy.pdf', NULL, '1', '2024-06-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-06 05:41:11', 130, '2024-06-12 01:08:50', 0, NULL, 1),
(19534, 'Anandhan Vasu', '31', '8903511448', '', 'anandvasu2401@gmail.com', '2001-01-24', 23, '3', '2', 'S.Vasu', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2406060007', '', '1', 'upload_files/candidate_tracker/91644190614_Anandhan Vasu Resume-1.pdf', NULL, '1', '2024-06-06', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-06 05:45:08', 112, '2024-06-06 03:29:01', 0, NULL, 1),
(19535, 'P KISHORE GUHAN', '6', '9940059144', '9360440928', 'kishoreguhan7232@gmail.com', '2003-01-30', 21, '2', '2', 'C PARIMALAN', 'Stell polish', 350000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2406060008', '50', '1', 'upload_files/candidate_tracker/57824665371_Image_PDF_1716495693736.pdf', NULL, '1', '2024-06-06', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for the job', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-06 05:47:59', 104, '2024-06-15 12:04:51', 0, NULL, 1),
(19536, 'S. Prasanth paswan', '6', '8838952925', '9551800520', 'prasanthpaswan777@gmail.com', '2003-06-03', 21, '2', '2', 'T. Satyendra paswan', 'Security guard', 230000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2406060009', '50', '1', 'upload_files/candidate_tracker/68143772871_PRASANTH-PASWAN-S-Participant-Certificate (1).pdf', NULL, '1', '2024-06-06', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not handling pressure doubt for sustainability', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-06 05:50:33', 104, '2024-06-15 12:14:15', 0, NULL, 1),
(19537, 'Bharathi.M', '6', '9840862056', '9962883149', 'm.bharathi1083@gmail.com', '2003-08-10', 20, '2', '2', 'S.Muthukumar', 'Daily', 20000.00, 1, 0.00, 16000.00, 'Perambur', 'Perambur', '2406060010', '50', '1', 'upload_files/candidate_tracker/20915924750_Bharathi.M.pdf', NULL, '1', '2024-06-06', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'long distance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-06 06:05:20', 104, '2024-06-15 12:10:30', 0, NULL, 1),
(19538, 'Asma sheriff', '6', '8610198343', '8248520028', 'asmasheriff909090@gmail.com', '2004-09-04', 19, '2', '2', 'Mushahid Sheriff.A', 'DAILY WAGES', 40000.00, 1, 0.00, 16000.00, 'New washermenpet', 'New washermenpet', '2406060011', '50', '1', 'upload_files/candidate_tracker/7941604405_Asmasheriff.M.pdf', NULL, '1', '2024-06-06', 0, '', '2', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, pls confirm joining or not bcz of language issues.', '5', '2', '', '1', '8', '', '2', '2024-06-07', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-06 06:05:52', 104, '2024-06-15 12:44:34', 0, NULL, 1),
(19539, 'Manjusha gowtham', '5', '8123607708', '', 'Manjushagautham19@gmail.com', '1998-03-31', 26, '2', '1', 'Gowtham', 'Event management', 50000.00, 0, 0.00, 25000.00, 'Electronic City phase 2', 'Electronic City phase 2', '2406060012', '1', '1', 'upload_files/candidate_tracker/50425483071_IMG_20240606_120218.pdf', NULL, '1', '2024-06-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1022', '0', NULL, NULL, NULL, 1, '2024-06-06 06:16:17', 1, '2024-06-06 06:37:51', 0, NULL, 1),
(19540, 'Manoj Kumar', '6', '9361275024', '', 'mk844381@gmeil.com', '1999-07-18', 24, '2', '1', 'Balakondaiah', 'Yes', 15000.00, 1, 20000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2406060013', '50', '2', 'upload_files/candidate_tracker/24356360696_Manojkumar_MLI_RA_Chennai(banca).pdf', NULL, '1', '2024-06-06', 2, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Appearance not good. salary expectation high. reject the profile. thanks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-06 06:23:07', 104, '2024-06-15 12:45:02', 0, NULL, 1),
(19541, 'APARNA V', '6', '9944078108', '6369909567', 'aparnaveera1706@gmail.com', '1999-06-17', 24, '2', '1', 'Balaji G', 'Jewel appraiser', 30000.00, 1, 0.00, 2.00, '1A/5, Shanthi Nagar 1st Street perambur-11', '1A/5, Shanthi Nagar 1st Street perambur-11', '2406060014', '50', '1', 'upload_files/candidate_tracker/51311750294_Aparna VB (2).pdf', NULL, '1', '2024-06-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-06 06:42:53', 112, '2024-06-06 03:40:47', 0, NULL, 1),
(19542, 'Padmavathi', '20', '9789040608', '', 'Rishithachandru@gmail.com', '1999-09-11', 24, '2', '2', 'Chandru kumar', 'Cab driver', 20000.00, 2, 21.00, 25.00, 'Madhavaram chennai', 'Madhavaram chennai', '2406060015', '50', '2', 'upload_files/candidate_tracker/69728706656_Padmavathy resume-1.pdf', NULL, '1', '2024-06-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-06 06:45:22', 112, '2024-06-06 02:53:15', 0, NULL, 1),
(19543, 'M naveen kumar', '5', '8681966396', '8428955665', 'naveenroopa046@gmail.com', '1996-06-01', 28, '2', '1', 'N roopa', 'House wife', 21000.00, 6, 0.00, 18000.00, 'Chennai tondaiyarpet', 'Chennai', '2406060016', '1', '2', 'upload_files/candidate_tracker/79365554258_null.pdf', NULL, '1', '2024-06-06', 0, '', '8', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Degree Not completed. Need to meet Arun.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1023', '', '55565', '55557', '1970-01-01', 1, '2024-06-06 06:52:05', 104, '2024-06-15 12:38:41', 0, NULL, 1),
(19544, 'Jeeva', '6', '6374897901', '7550274849', 'jeeva12vjeeva@gmail.com', '2004-08-27', 19, '2', '2', 'Selvakumar', 'painter', 18000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2406060017', '50', '1', 'upload_files/candidate_tracker/52878986281_Resumejeeva[1].pdf', NULL, '1', '2024-06-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-06 06:52:33', 112, '2024-06-06 03:33:39', 0, NULL, 1),
(19545, 'Manoj E', '6', '6380326488', '6382989776', 'manojedvin2908@gmail.com', '2000-08-29', 23, '2', '2', 'Edvin.P', 'Driver', 15000.00, 1, 0.00, 17000.00, 'No:3/12 k.k.nagar Kattupakkam main road', 'No:3/12 K.K.Nagar Kattupakkam Main Road', '2406060018', '50', '1', 'upload_files/candidate_tracker/17217441416_Manoj-1.pdf', NULL, '1', '2024-06-06', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate looking for telecalling only ,not interested for  out side call so not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-06 06:55:56', 104, '2024-06-15 12:21:10', 0, NULL, 1),
(19546, 'RAGUL R', '13', '9360674182', '9940564417', 'ragulrathinam3232@gmail.com', '2002-03-10', 23, '2', '2', 'Rathinam', 'Farmer', 12000.00, 1, 0.00, 16000.00, 'Tiruchirapalli (Thuraiyur)', 'Chennai (velachery)', '2406060019', '1', '1', 'upload_files/candidate_tracker/8002109117_Ragul.pdf202509230428520000.pdf', NULL, '1', '2025-10-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in apptitude (4/10)', '', 'H1028', '', '', '', '1970-01-01', 1, '2024-06-06 06:57:58', 159, '2025-10-27 02:46:16', 0, NULL, 1),
(19547, 'RAGUL', '13', '9940564417', '9360674182', 'ragulrathinam3232@gmail.com', '2009-06-06', 0, '3', '2', 'RATHINAM', 'Farmer', 12500.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2406060020', '', '1', 'upload_files/candidate_tracker/53935248045_RAGUL_R_20240602_132623_0000.pdf', NULL, '1', '2024-06-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-06 07:05:14', 130, '2024-06-12 01:09:41', 0, NULL, 1),
(19548, 'Naineswari', '6', '9344979231', '9629118899', 'nainu2294@gmail.com', '2004-07-27', 19, '2', '2', 'Sivakumar', 'Cooli', 24000.00, 1, 0.00, 16000.00, 'Salem', 'Chennai', '2406060021', '1', '1', 'upload_files/candidate_tracker/29077975040_Naineswari RESUME 25.pdf', NULL, '1', '2024-06-06', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is only lookingfrd compan job and she just attend the interview so rejcted', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-06 07:13:42', 104, '2024-06-15 12:21:37', 0, NULL, 1),
(19549, 'Gagan iliger', '5', '8297563426', '8296563426', 'gaganiliger40@gmail.com', '1997-01-28', 27, '2', '2', 'Shekappa', 'Agriculture', 30000.00, 2, 0.00, 25000.00, 'Sammasagi', 'Banashankari', '2406060022', '1', '1', 'upload_files/candidate_tracker/51863580849_GAGAN-ILIGER-FlowCV-Resume-20240529 (1).pdf', NULL, '1', '2024-06-06', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of confident lagging with communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-06-06 09:48:47', 60, '2024-06-15 07:41:34', 0, NULL, 1),
(19550, 'Rutika Dhumal', '5', '7624902183', '', 'rutika76sd@gmail.com', '2001-04-06', 23, '2', '2', 'Sujata Dhumal', 'Business', 70000.00, 0, 30000.00, 35000.00, 'Belgaum', 'Benglore', '2406060023', '1', '2', 'upload_files/candidate_tracker/89498732457_Adobe Scan Jun 06, 2024.pdf', NULL, '1', '2024-06-06', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Doubt with Sustain, salary expectation is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-06-06 10:46:57', 60, '2024-06-15 07:42:08', 0, NULL, 1),
(19551, 'hemalakshmi j', '6', '8925737509', '', 'hemahema7561@gmail.com', '2004-03-03', 20, '2', '2', 'jothikanthan m', 'cooli', 20000.00, 1, 10000.00, 20000.00, 'pv kovil street ambedkar bridge mylapore chennai', 'Pv Kovil Street Ambedkar Bridge Mylapore Chennai', '2406060024', '1', '2', 'upload_files/candidate_tracker/56927559716_NAUKRI_HEMALAKSHMI_._J.pdf', NULL, '1', '2024-06-07', 0, '', '3', '59', '2024-06-10', 174000.00, '', '3', '2024-11-30', '2', 'Selected for Relationship Executive Role Need to analyse in 7 days training and finalise', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '2024-06-10', 1, '2024-06-06 01:01:44', 60, '2024-06-15 04:36:24', 0, NULL, 1),
(19552, 'Gayathri v', '5', '9444077462', '', 'gayathri.sundari@gmail.com', '2000-10-19', 23, '2', '2', 'Vijay kumar', 'Coli', 12000.00, 1, 22000.00, 35000.00, '12/31, padi new nagar, Chennai 101', '12/31, padi new nagar, Chennai 101', '2406060025', '32', '2', 'upload_files/candidate_tracker/56376683482_Gayathri v resume.pdf', NULL, '1', '2024-06-08', 60, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-06 01:06:05', 112, '2024-06-08 12:31:05', 0, NULL, 1),
(19553, 'HARIHARASUDHAN S', '6', '9360429272', '', 'hariharasudhan493@gmail.com', '2003-09-04', 20, '2', '2', 'Sivanesan M', 'Nil', 36000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2406070001', '1', '1', 'upload_files/candidate_tracker/25692420698_resume.pdf', NULL, '1', '2024-06-07', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is interested in IT right now looking for sales , sustainability doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-07 01:24:29', 104, '2024-06-15 12:14:35', 0, NULL, 1),
(19554, 'Keerthika', '6', '9789536383', '9176385272', 'keerthikaganeshrao@gmail.com', '2002-10-24', 21, '2', '2', 'Ganeshrao M b', 'Electrician', 15000.00, 2, 0.00, 15000.00, '59,9th block,1st street, kkd nagar,chennai-600118', '59,9th block,1st street,Kkd nagar, chennai-600118', '2406070002', '55', '1', 'upload_files/candidate_tracker/75559144095_Keerthikaganeshrao.pdf', NULL, '1', '2024-06-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-07 04:39:34', 112, '2024-06-07 06:14:09', 0, NULL, 1),
(19555, 'V. Kousikan', '6', '9962644898', '9047970498', 'vkousikan@gmail.com', '2003-10-19', 20, '2', '2', 'G.Vimala', 'Accountant', 100000.00, 1, 0.00, 180000.00, 'SALEM', 'SALEM', '2406070003', '1', '1', 'upload_files/candidate_tracker/22461491168_Resume of KOUSIKAN V .pdf', NULL, '1', '2024-06-07', 0, '', '3', '59', '2024-06-10', 192000.00, '', '2', '1970-01-01', '1', 'Selected for Relationship Executive Role Giri Team Need to analyse in 7 days training and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', 'CA130', '5151', '2024-06-17', 1, '2024-06-07 04:39:45', 60, '2024-06-20 10:34:28', 0, NULL, 1),
(19556, 'Aarthi.V', '6', '7806893460', '6380695163', 'aarthi27092002@gmail.com', '2002-09-27', 21, '2', '2', 'Venkatesan', 'Cable work', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2406070004', '54', '1', 'upload_files/candidate_tracker/44771828271_AARTHI Resume.pdf', NULL, '1', '2024-06-07', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Her Communication And Performance Is To Low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-07 05:34:20', 104, '2024-06-15 12:27:20', 0, NULL, 1),
(19557, 'Narmadha', '6', '9843173044', '6385253582', 'lakshmananmalarvizhi98@gmail.com', '2003-10-03', 20, '2', '2', 'Malarvizhi', 'Coolie', 72000.00, 3, 0.00, 15000.00, 'CHENGALPATTU', 'Chennai', '2406070005', '50', '1', 'upload_files/candidate_tracker/28946177942_narmadha .pdf', NULL, '1', '2024-06-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for telecalling much showing interest in non voice', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-07 05:34:45', 104, '2024-06-15 12:59:55', 0, NULL, 1),
(19558, 'A.Sairam', '6', '9629018502', '9790994793', 'saijoshva93@gmail.com', '2003-10-05', 20, '2', '2', 'M.Arul', 'Farmer', 10000.00, 2, 0.00, 20.00, 'Chengalpattu', 'Guindy Chennai', '2406070006', '50', '1', 'upload_files/candidate_tracker/17012747423_4a776bfc-11d0-4d3a-a8c0-3b8268a35205.pdf', NULL, '1', '2024-06-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-07 05:41:23', 112, '2024-06-07 03:01:27', 0, NULL, 1),
(19559, 'Surya L', '6', '7708325348', '8925273793', 'lsurya2430@gmail.com', '2004-06-09', 19, '2', '2', 'Logu N', 'Seventy two thousand', 10000.00, 1, 0.00, 20.00, 'Chengalpat', 'Guindy', '2406070007', '50', '1', 'upload_files/candidate_tracker/23234256053_SURYA RESUME .pdf', NULL, '1', '2024-06-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-07 05:41:26', 112, '2024-06-07 03:01:06', 0, NULL, 1),
(19560, 'B.naveen', '6', '6381695535', '', 'naveencgm1993@gmail.com', '2002-06-07', 22, '2', '2', 'Boopathi', 'Naveen', 50000.00, 50000, 0.00, 15000.00, 'Tiruvannamalai', 'Chennai, koyambedu', '2406070008', '50', '1', 'upload_files/candidate_tracker/61995061716_0a970ad1-219d-4e73-bb3c-490fca0538e7.pdf', NULL, '1', '2024-06-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-07 06:11:50', 112, '2024-06-07 03:06:12', 0, NULL, 1),
(19561, 'Manikandan', '6', '9751153594', '', 'manilove11093@gmail.com', '2003-01-04', 21, '2', '2', 'Muthu. E', 'Competition', 10000.00, 1, 0.00, 15000.00, 'West mambalam', 'Chennai', '2406070009', '42', '1', 'upload_files/candidate_tracker/42684758047_manikandan cv correct.pdf', NULL, '2', '2024-06-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'his voice and slang is not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-07 06:20:01', 104, '2024-06-15 12:36:44', 0, NULL, 1),
(19562, 'dinesh a', '6', '9566040035', '', 'dineshashok1805@gmail.com', '2000-05-18', 24, '2', '1', 'ashokkumar', 'stiching gunny bags', 15000.00, 2, 0.00, 18000.00, 'chennai', 'Chennai', '2406070010', '42', '1', 'upload_files/candidate_tracker/42989087849_Dinesh.pdf', NULL, '1', '2024-06-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'INTRESTED IN HR', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-07 06:21:49', 104, '2024-06-15 12:37:01', 0, NULL, 1),
(19563, 'Ibrahim M', '13', '9952956532', '', 'mibrahim180101@gmail.com', '2001-01-18', 23, '3', '2', 'Sharmila roshan', 'Xerox shop', 30000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2406070011', '', '1', 'upload_files/candidate_tracker/73108943929_Ibrahim.mresume .pdf_20240605_112425_0000.pdf', NULL, '1', '2024-06-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-07 07:30:05', 130, '2024-06-07 05:43:33', 0, NULL, 1),
(19564, 'Logeshwaran', '13', '9080791106', '9789168239', 'logeshwaran27620@gmail.com', '2000-06-27', 23, '3', '2', 'Kalimuthu', 'Salesman', 12000.00, 1, 0.00, 200000.00, 'Dharapuram', 'Chennai', '2406070012', '', '1', 'upload_files/candidate_tracker/98455140710_LOGESHWARAN.pdf', NULL, '1', '2024-06-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-07 07:30:11', 130, '2024-06-07 05:43:47', 0, NULL, 1),
(19565, 'Keerthana k', '6', '6382279901', '8056285076', 'Keerthanakarna1@gmail.com', '2003-07-15', 20, '2', '2', 'Karunanithi d. S', 'Daily wages', 13000.00, 1, 0.00, 16000.00, 'Madhavaram Chennai', 'Madhavaram Chennai', '2406070013', '1', '1', 'upload_files/candidate_tracker/13866399809_RESUME. keertha.docx', NULL, '1', '2024-06-07', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'interested in Accounts related job recently finished uG when get a result going accounts field', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-07 07:47:04', 104, '2024-06-15 12:17:57', 0, NULL, 1),
(19566, 'Swetha.S', '6', '6382821323', '8056249418', 'swethashyamala2003@gmail.com', '2003-09-13', 20, '2', '2', 'Sridhar Babu.B.K', 'Daily wages', 10000.00, 1, 0.00, 16000.00, 'Redhills Chennai', 'Redhills Chennai', '2406070014', '1', '1', 'upload_files/candidate_tracker/98120637919_Swetha resume.pdf', NULL, '1', '2024-06-07', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice is not ok and not speaking well , so not fit for sales and she joining frd aslo including', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-07 07:47:15', 104, '2024-06-15 12:23:54', 0, NULL, 1),
(19567, 'Bowsiya begam', '11', '8939698290', '8300629820', 'ajeeshbowsiya@gamil.com', '1999-11-28', 24, '2', '2', 'Ajeesh', 'Driver', 12000.00, 1, 21000.00, 16.00, 'Tondiarpet', '17/14 druga devi Nagar Tondiarpet Chennai', '2406070015', '1', '2', 'upload_files/candidate_tracker/73094563947_BowsiyaBegamTalentAqucussionTraineeUpdateResume.pdf', NULL, '1', '2024-07-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-06-07 01:26:47', 104, '2024-07-09 11:40:04', 0, NULL, 1),
(19568, '', '0', '6381543534', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406070016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-07 03:06:56', 0, NULL, 0, NULL, 1),
(19569, 'Anjana p b', '5', '8086009692', '7483964411', 'anjanaababuraj001@gmail.com', '1995-11-19', 28, '2', '2', 'baburaj p s', 'Contractor', 55000.00, 3, 35000.00, 38000.00, 'thrissur', 'bangalore', '2406070017', '1', '2', 'upload_files/candidate_tracker/97318033676_Anjana P B ma.pdf', NULL, '1', '2024-06-08', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not comfort in telesales', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-06-07 04:35:13', 104, '2024-06-15 01:05:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19570, 'Kadhar Mydeen.S', '23', '9597879725', '', 'Kadharmydeen20@gmail.com', '2000-04-03', 24, '3', '2', 'Sheik Kareem. K', 'Painter', 20000.00, 1, 0.00, 25000.00, 'Kumbakonam', 'Chennai', '2406080001', '', '1', 'upload_files/candidate_tracker/34599840364_Kadhar...pdf', NULL, '1', '2024-06-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-08 04:19:48', 112, '2024-06-08 12:26:12', 0, NULL, 1),
(19571, 'D.Giritharan', '13', '7094234197', '', 'giritharan2135@gmail.com', '2002-06-01', 22, '3', '2', 'Dhanabalan', 'JDO in highways', 60000.00, 1, 0.00, 350000.00, 'Sivakasi', 'Chennai', '2406080002', '', '1', 'upload_files/candidate_tracker/6139864712_Giritharan_cv (1)-1.pdf', NULL, '1', '2024-06-08', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-08 04:23:39', 112, '2024-06-08 12:26:03', 0, NULL, 1),
(19572, 'Sairam', '23', '8124045444', '9840097979', 'sairamchandrasekar19@gmail.com', '2001-10-19', 22, '3', '2', 'Chandrasekar', 'Job seeker', 35000.00, 1, 0.00, 25000.00, 'No.15 nethaji nagar, thiruvanmiyur', 'No.15 Nethaji Nagar, thiruvanmiyur', '2406080003', '', '1', 'upload_files/candidate_tracker/55438825406_sairam..pdf', NULL, '1', '2024-06-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-08 04:29:39', 112, '2024-06-08 12:25:51', 0, NULL, 1),
(19573, 'Gugan N', '23', '9655834842', '8940263009', 'gugan4555@gmail.com', '2003-01-16', 21, '1', '2', 'Nemanathan T k', 'Job seekers', 18000.00, 1, 0.00, 25000.00, 'S Agraharam tiruttani tk Thiruvallur district', 'S Agraharam Tiruttani Tk Thiruvallur District', '2406080004', '', '1', 'upload_files/candidate_tracker/86389771276_Gugan.N Resume.pdf', NULL, '1', '2024-06-08', 0, 'Direct walking', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-08 04:29:42', 112, '2024-06-08 12:25:42', 0, NULL, 1),
(19574, 'Hemalatha', '23', '9655571991', '7539981129', 'hemalathahema503@gmail.com', '2001-01-10', 23, '1', '2', 'Gopinathan', 'Coco cola staf', 15000.00, 0, 0.00, 20000.00, '4/60 new colony thozhuvur kuppam,sevapet', '60 4/60 New Colony Thozhuvur Kuppam,Sevapet', '2406080005', '', '1', 'upload_files/candidate_tracker/81652684868_ui ux resume.pdf', NULL, '1', '2024-06-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-08 04:41:46', 112, '2024-06-08 12:25:33', 0, NULL, 1),
(19575, 'Jayhariharen S', '6', '8248923113', '9003021472', 'hariharen2017@gmail.com', '2004-06-20', 19, '2', '2', 'B.Srinivas', 'Deputy manager sales and service support', 28000.00, 1, 0.00, 16500.00, 'No.129E Thanikachalam Nagar A-block Ponniammanmedu', 'No.129E Thanikachalam Nagar A-Block Ponniammanmedu', '2406080006', '50', '1', 'upload_files/candidate_tracker/60997215645_CV_2024060614463050.pdf', NULL, '1', '2024-06-08', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate not interested for field work, may be try with other channel.thanks', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-08 05:19:58', 104, '2024-06-15 12:45:22', 0, NULL, 1),
(19576, 'Samreen Begum.N', '6', '6374092981', '8939461551', 'samreenbegum671@gmail.com', '2004-04-25', 20, '2', '2', 'Syed Nasir Ali', 'Computer Operator', 12000.00, 2, 0.00, 18000.00, 'Sevenwells, Broadway', 'Sevenwells', '2406080007', '50', '1', 'upload_files/candidate_tracker/95333502955_CV_2024053019432398.pdf', NULL, '1', '2024-06-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not intrest in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-08 05:21:53', 104, '2024-06-15 12:37:31', 0, NULL, 1),
(19577, 'Gayathri Bereela', '6', '8074167839', '', 'gayathri.bereela10@gmail.com', '2000-06-10', 23, '2', '2', 'Madhavi', 'House wife', 25000.00, 4, 23000.00, 27000.00, 'Bangalore', 'Bangalore', '2406080008', '1', '2', 'upload_files/candidate_tracker/41945917951_Gayathri BPO.pdf', NULL, '1', '2024-06-08', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lack of knowledge about the sales and salary expectation is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-06-08 05:23:18', 126, '2024-06-21 04:09:34', 0, NULL, 1),
(19578, 'Sreevidhya Kuruba', '6', '9966007909', '', 'sreevi4416@gmail.com', '1999-11-05', 24, '2', '2', 'Nagaraju Kuruba', 'Tailor', 30000.00, 1, 23000.00, 26.00, 'Ananthapur, andhrapradesh', 'Btm layout, Bangalore', '2406080009', '1', '2', 'upload_files/candidate_tracker/90950217749_Sreevidhya BPO 2.pdf', NULL, '1', '2024-06-08', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack Of Knowledge About The Sales And Salary Expectation Is High', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-06-08 05:23:51', 126, '2024-06-21 04:09:55', 0, NULL, 1),
(19579, 'L. INDIRA', '6', '7358686263', '', 'Indirakeerthi0@gmail.com', '2003-12-07', 20, '2', '2', 'Alamelu .L', 'House Keeping', 10000.00, 1, 0.00, 15000.00, '43/1 Madurai Street Ayyanavaram Chennai -28', '43/1Madurai Street Ayyanavaram Chennai -28', '2406080010', '50', '1', 'upload_files/candidate_tracker/50248799430_INDIRA.PDF', NULL, '1', '2024-06-08', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'voice tone is low and friends are another non voice so, sustainability Doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-08 05:30:50', 104, '2024-06-15 12:18:31', 0, NULL, 1),
(19580, 'Hephzibha.e', '6', '8892698229', '8197978957', 'gouthamgouthamv08@gmail.com', '2002-05-16', 22, '2', '2', 'Emmanuel', 'Diploma account', 30000.00, 2, 22.00, 25.00, 'Banashankari', 'Banashankari', '2406080011', '1', '2', 'upload_files/candidate_tracker/22437693995_RESUME.docx', NULL, '1', '2024-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not shown interested towards the role requested the documents pertaining her previous exp but she didnt respond later', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-06-08 05:31:27', 126, '2024-06-21 03:57:52', 0, NULL, 1),
(19581, 'vishnupriya.v', '6', '9360331179', '', 'vishnupriyavijay06@gmail.com', '2004-09-06', 19, '2', '2', 'vijaykumar.s', 'coolie', 100000.00, 0, 0.00, 20000.00, 'thiruvottiyur', 'chennai', '2406080012', '50', '1', 'upload_files/candidate_tracker/22588156081_CV_202405201636379.pdf', NULL, '1', '2024-06-08', 0, '', '3', '59', '2024-06-17', 168000.00, '', '1', '1970-01-01', '2', 'Selected for Banu Team ,Need to analyse in 7 days and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '2024-06-17', 1, '2024-06-08 05:42:45', 60, '2024-06-20 10:24:39', 0, NULL, 1),
(19582, 'Jeevitha B', '6', '9344376717', '9445508983', 'jeevibala0712@gmail.com', '2002-12-07', 21, '2', '2', 'Balakrishnan', 'Farmer', 10000.00, 3, 14000.00, 18000.00, 'Chengalpattu', 'Tondiarpet, chennai', '2406080013', '50', '2', 'upload_files/candidate_tracker/57600463408_jeevitha b resume (1).pdf', NULL, '1', '2024-06-08', 0, '', '3', '59', '2024-06-10', 186000.00, '', NULL, '2025-04-28', '2', 'Selected for Relationship Executive Role  need to analyse in 7 days training period  and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2024-06-10', 1, '2024-06-08 06:41:15', 60, '2024-06-15 04:37:26', 0, NULL, 1),
(19583, 'Nandhini', '5', '9384627717', '', 'mail.nandhini33@gmail.com', '1995-09-03', 28, '2', '1', 'Nandhini', 'Tell calling', 13.00, 2, 0.00, 15.00, 'Chennai', 'Virugambakkam', '2406080014', '50', '1', 'upload_files/candidate_tracker/94619717439_1716202853081_1716202851559_c063eafe-6f2a-4b3b-8b14-ea4d03849129.pdf', NULL, '3', '2024-06-08', 0, '', '3', '59', '2024-06-10', 192000.00, '', '2', '1970-01-01', '2', 'Selected for Kannan Team Sustainability doubts a lot married fresher for sales need to check', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-06-10', 1, '2024-06-08 06:44:02', 60, '2024-06-20 04:38:02', 0, NULL, 1),
(19584, 'Lakshmi Reddy Kesari', '5', '8919278567', '', 'kesarilakshmireddy14@gmail.com', '2001-04-27', 23, '2', '2', 'K Venkateswara Reddy', 'Farmer', 2000.00, 1, 0.00, 20000.00, 'Bangalore', 'Bangalore', '2406080015', '1', '1', 'upload_files/candidate_tracker/62331984716_Lakshmi Reddy Resume.pdf', NULL, '1', '2024-06-10', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-06-08 08:09:02', 60, '2024-06-15 07:42:27', 0, NULL, 1),
(19585, 'Anumamtha', '6', '9080973103', '9940110784', 'Aanumaanu136@gmail.com', '2004-02-27', 20, '2', '2', 'Kala.s', 'Cooli', 9000.00, 1, 0.00, 15000.00, '24/76mani complex kathivakkam ennore chennai', '24/76mani Complex Kathivakkam Ennore Chennai', '2406080016', '1', '1', 'upload_files/candidate_tracker/94403793765_ANUMAMTHA.S.pdf', NULL, '1', '2024-06-08', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate need temporvery job only, after6 month apply for master degree , so not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-08 09:03:17', 104, '2024-06-15 12:24:12', 0, NULL, 1),
(19586, 'abhirami p', '6', '7639992238', '9698636564', 'abiabirami283@gmail.com', '2003-05-10', 21, '2', '2', 'palanivel r', 'conductor', 20000.00, 1, 0.00, 15000.00, 'mayilyadurai', 'mayilyadurai', '2406080017', '1', '1', 'upload_files/candidate_tracker/20209335352_Abhirami.pdf', NULL, '1', '2024-06-10', 0, '', '3', '59', '2024-06-20', 168000.00, '', '3', '2025-07-29', '2', 'Selected for RE role Can give a try Need to train in 7 days and analyse', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', 'CA130', '5151', '2024-06-20', 1, '2024-06-08 12:50:06', 130, '2024-06-20 03:38:10', 0, NULL, 1),
(19587, 'NAVEEN KUMAR J', '4', '6380078288', '8190926624', 'msnaveen75@gmail.com', '2009-06-09', 0, '2', '2', 'Relationship manager', 'Sales executive', 30000.00, 1, 14000.00, 25000.00, 'Chenna', 'Chennai', '2406090001', '32', '2', 'upload_files/candidate_tracker/22769815301_Resume_Naveen_Format2.pdf', NULL, '1', '2024-06-10', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-09 12:50:59', 1, '2024-06-09 01:05:12', 0, NULL, 1),
(19588, 'P RAMYA', '6', '6381643117', '8072719407', 'dramya049@gmail.com', '2003-10-25', 20, '2', '2', 'P DEVI', 'Graduate', 15000.00, 0, 0.00, 15000.00, 'No 56 balaramapuram 6th Street villivakkam ch 49', 'No 56 balaramapuram 6th Street villivakkam ch 49', '2406100001', '1', '1', 'upload_files/candidate_tracker/87183407492_ramya resume1.docx', NULL, '1', '2024-06-10', 0, '', '3', '59', '2024-06-13', 168000.00, '', '2', '1970-01-01', '2', 'Selected for RE Role Kannan Team Need to check in 7 days training', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '2024-06-13', 1, '2024-06-10 03:13:02', 60, '2024-06-20 05:07:19', 0, NULL, 1),
(19589, '', '0', '7780509312', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406100002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-10 04:17:08', 0, NULL, 0, NULL, 1),
(19590, 'Madhavi', '6', '9677224692', '', 'madhavit.hb19067@gmail.com', '2009-06-10', 0, '2', '2', 'Radha T', 'Home maker', 40000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2406100003', '50', '1', 'upload_files/candidate_tracker/9843913630_Madhavi resume.docx', NULL, '1', '2024-06-10', 0, '', '3', '59', '2024-07-03', 168000.00, '', '', '1970-01-01', '2', 'communication OK Can give  a try in our roles but sustainability doubts in our sales roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2024-07-03', 1, '2024-06-10 04:50:54', 60, '2024-06-20 05:09:33', 0, NULL, 1),
(19591, 'Vishnu Prasath S', '6', '7550115755', '6383872525', 'Slakshmi.svp@gmail.com', '2003-01-20', 21, '2', '2', 'Sathya Pal R', 'Advocate', 200000.00, 2, 0.00, 14000.00, 'Chennai', 'Chennai', '2406100004', '50', '1', 'upload_files/candidate_tracker/78054555901_resume-1.pdf', NULL, '1', '2024-06-10', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is unfit for the telesales xxamp Field work. he is interested iT Domain.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-10 05:12:48', 104, '2024-06-15 12:45:54', 0, NULL, 1),
(19592, 'Arpitha LS', '6', '9663821608', '', 'lsarpitha123@gmail.com', '1998-11-05', 25, '2', '2', 'Shiva kumar NA', 'Former', 35000.00, 1, 18500.00, 25000.00, 'Chikkamangalore', 'Electronic City', '2406100005', '1', '2', 'upload_files/candidate_tracker/32490235100_LSARPITHA RESUME 1.pdf', NULL, '1', '2024-06-10', 0, '', '3', '59', '2024-07-01', 204000.00, '', '5', '1970-01-01', '2', 'Selected for RE role DM Team need to analyse in 7 Days can try her profile', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-07-01', 1, '2024-06-10 05:14:18', 126, '2024-06-21 03:57:27', 0, NULL, 1),
(19593, 'Ruchika.R', '6', '7200012441', '9840094617', 'ruchikaramesh19@gmail.com', '2004-07-19', 19, '2', '2', 'Ramesh.P', 'Tailor', 120000.00, 1, 0.00, 20000.00, 'Tiruvallur', 'Tiruvallur', '2406100006', '50', '1', 'upload_files/candidate_tracker/43946266801_Ruchika.R ( Resume)-2.pdf', NULL, '1', '2024-06-10', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-10 05:21:46', 104, '2024-06-15 12:10:50', 0, NULL, 1),
(19594, 'Shalini P', '6', '9344354484', '9840202522', 'Shalinipandiyan3008@gmail.com', '2003-08-30', 20, '2', '2', 'Pandiyarajan A', 'Cooli', 13000.00, 1, 0.00, 20000.00, '42/179 2nd ST indhira Gandhi Nagar tondairpet', '42/179 2nd ST indhira Gandhi Nagar tondairpet', '2406100007', '50', '1', 'upload_files/candidate_tracker/9964936497_Shalini-2.docx', NULL, '1', '2024-06-10', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher interested in Accounts not interested in sales just try Sustainability Doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-10 05:21:50', 104, '2024-06-15 12:18:55', 0, NULL, 1),
(19595, 'Surendhar', '6', '7338974893', '', 'Surendhar9347@gmail.com', '2004-05-17', 20, '3', '2', 'Munisamy. G', 'Shopkeeper', 25000.00, 1, 0.00, 20000.00, 'NO 4/79 METTU STREET PERUMBAKKAM CHENNAI', 'NO 4/79 METTU STREET PERUMBAKKAM CHENNAI', '2406100008', '', '1', 'upload_files/candidate_tracker/44435328727_M surendhar resume-2.pdf', NULL, '1', '2024-06-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-10 05:36:30', 1, '2024-06-10 05:49:16', 0, NULL, 1),
(19596, 'Chrismishal', '6', '9094446332', '', 'Chrismishal03@gmail.com', '2003-10-25', 20, '2', '2', 'Esther sweety', 'House wife', 20000.00, 1, 0.00, 20000.00, 'No:10 periyar nagar pallikarani chennai', 'Pallikaranai', '2406100009', '1', '1', 'upload_files/candidate_tracker/22213136215_Chris Mishal - Resume...pdf', NULL, '1', '2024-06-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-06-10 05:36:36', 112, '2024-06-10 04:37:45', 0, NULL, 1),
(19597, 'Androw ashwin.a', '6', '7358427521', '', 'Androwashwin02@gmail.com', '2004-02-02', 20, '2', '2', 'Deva annal', 'BDO Office Staff', 25000.00, 1, 0.00, 20000.00, '5/78B pasum pon nagar prathana salai perumbakkam', '5/78B pasum pon nagar Perumbakkam', '2406100010', '1', '1', 'upload_files/candidate_tracker/27327062817_Androw ashwin A resume .pdf', NULL, '1', '2024-06-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-06-10 05:37:07', 112, '2024-06-10 04:39:55', 0, NULL, 1),
(19598, '', '0', '9025582067', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406100011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-10 06:03:17', 0, NULL, 0, NULL, 1),
(19599, 'P senthil', '6', '7092984935', '9962712404', 'senthil709298@gmail.com', '2001-04-09', 23, '2', '2', 'Mother', 'BBA', 60000.00, 2, 0.00, 18000.00, 'No 120 27 th Street agathiyar nagar villivakkam', 'Villivakkam', '2406100012', '50', '1', 'upload_files/candidate_tracker/77754921887_resume.pdf', NULL, '1', '2024-06-10', 0, '', '3', '59', '2024-06-13', 192000.00, '', '1', '1970-01-01', '1', 'Selected for Giri Team Relationship Executive Role need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '2024-06-10', 1, '2024-06-10 06:38:36', 60, '2024-06-15 04:37:47', 0, NULL, 1),
(19600, 'Vasanth suntharrajan', '6', '6382636764', '', 'Vasanthaarthi12345@gmail.com', '2003-09-24', 20, '2', '2', 'Suntharrajan', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Thuthur', 'Thuthur', '2406100013', '1', '1', 'upload_files/candidate_tracker/80492436091_vasanth3.pdf', NULL, '1', '2024-06-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-06-10 06:53:35', 112, '2024-06-10 04:41:27', 0, NULL, 1),
(19601, 'Vishnu s', '6', '9606516400', '', 'vish88124@gmail.com', '2001-04-10', 23, '2', '2', 'Sri devi', 'House wife', 18000.00, 2, 17500.00, 30000.00, '#1142 17th main road srinagar Bangalore 560050', 'Bangalore', '2406100014', '1', '2', 'upload_files/candidate_tracker/50127423245_DOC-20240606-WA0000-1.docx', NULL, '1', '2024-06-10', 0, '', '3', '59', '2024-06-17', 216000.00, '', '2', '1970-01-01', '1', 'Discussed - Understanding poor - sustaianablity doubts - Pressure handling will not be based on the managers input given opportunity', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', 'H1022', '', '55671', '55555', '2024-06-17', 1, '2024-06-10 09:06:26', 60, '2024-06-21 07:33:45', 0, NULL, 1),
(19602, 'THAMARAISELVI.P', '6', '9003085914', '', 'thamaraitharaa@gmail.com', '2003-09-05', 20, '2', '2', 'PURUSHOTHAMAN', 'Auto driver', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Urapakkam', '2406100015', '1', '1', 'upload_files/candidate_tracker/22173035137_resumethamarai.pdf', NULL, '1', '2024-06-10', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking accounts field', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', '55577', '5151', '1970-01-01', 1, '2024-06-10 10:17:43', 104, '2024-06-15 12:11:07', 0, NULL, 1),
(19603, 'Mohammad akram', '6', '9500273499', '8525840039', 'jaleelakram22@gmail.com', '1999-02-22', 25, '2', '2', 'A.j reshup Jahan', 'Cuddalore', 10000.00, 0, 16500.00, 18200.00, 'Cuddalore', 'Chennai', '2406100016', '36', '2', 'upload_files/candidate_tracker/82129908561_ak.pdf', NULL, '1', '2024-06-10', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested in telesales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-10 10:25:41', 104, '2024-06-15 01:09:41', 0, NULL, 1),
(19604, 'Ranjitha.S', '6', '9360207338', '', 'Ranjithasasikumar101@gmail.com', '2004-05-10', 20, '2', '2', 'Sasikumar.R', 'Auto driver', 10000.00, 1, 0.00, 15000.00, 'Choolai', 'Choolai', '2406100017', '1', '1', 'upload_files/candidate_tracker/13934095538_DOC-20240530-WA0012.pdf (1).pdf', NULL, '1', '2024-06-10', 0, '', '3', '59', '2024-06-20', 168000.00, '', NULL, '2024-09-27', '2', 'Selected for RE Role Can give a try in our roles need to check in 7days', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', '55645', '5151', '2024-06-20', 1, '2024-06-10 10:30:34', 130, '2024-06-20 03:37:44', 0, NULL, 1),
(19605, 'Arvind S', '5', '7349578556', '6364363555', 'arvind73495s@gmail.com', '2002-05-21', 22, '2', '2', 'Sampath', 'Building Contractors', 20000.00, 1, 25000.00, 26000.00, 'Bengaluru', 'Bengaluru', '2406100018', '1', '2', 'upload_files/candidate_tracker/24250229047_Adobe Scan 01-Jun-2024.pdf', NULL, '1', '2024-06-10', 0, '', '3', '59', '2024-06-13', 294000.00, '', '2', '1970-01-01', '1', 'selected for Sathish Team Relationship Manager role Need to analyse in 7 days training', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', 'H1022', '', '55555', '5151', '2024-06-17', 1, '2024-06-10 10:52:19', 60, '2024-06-20 05:12:47', 0, NULL, 1),
(19606, 'mohammed dawood kaif', '4', '9740413402', '', 'mask2002dk@gmail.com', '2002-04-09', 22, '3', '2', 'mohammed mustaffa', 'nil', 100000.00, 1, 380000.00, 550000.00, 'rt nagar', 'rt nagar', '2406100019', '', '2', 'upload_files/candidate_tracker/82585493798_Mohammed Dawood Kaif - CV.pdf', NULL, '1', '2024-06-11', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-10 01:22:12', 1, '2024-06-10 01:25:36', 0, NULL, 1),
(19607, 'sunaina fathima', '5', '7975489256', '7795325851', 'sunainaf664@gmail.com', '2000-02-28', 24, '2', '2', 'sakina banu', 'sales', 40000.00, 2, 23000.00, 30000.00, 'mysore', 'bangalore', '2406100020', '1', '2', 'upload_files/candidate_tracker/77822441913_Resume.docx', NULL, '1', '2024-06-11', 0, '', '3', '59', '2024-06-19', 300000.00, '', '2', '1970-01-01', '2', 'Selected for RM Role Sathish Kumar Team Fresher for our insurance sales communication is good can be trained in our roles need to analyse in 7 days training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '2024-06-19', 1, '2024-06-10 04:46:44', 60, '2024-06-20 05:20:24', 0, NULL, 1),
(19608, 'M Jefrin', '6', '9626457439', '', 'jefrin190@gmail.com', '2002-07-23', 21, '2', '2', 'N santhi', 'Tailor', 13000.00, 1, 0.00, 20000.00, 'No 112, North Street, kurusady, Nagercoil - 629004', 'Tambaram', '2406110001', '1', '1', 'upload_files/candidate_tracker/28462415195_ Jefrin Resume 1 _20240529_203935_0000.pdf', NULL, '1', '2024-06-11', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-11 01:43:13', 104, '2024-06-15 12:05:08', 0, NULL, 1),
(19609, 'NAVEEN KUMAR B', '4', '6374675730', '', 'naveenkumarb13122001@gmail.com', '2001-12-13', 23, '1', '2', 'BALASUBRAMANI G. N', 'Business Man', 6000.00, 1, 264000.00, 450000.00, '21,Maha Vishnu Nagar, Arakkonam Road, Tiruttani', 'Bangalore', '2406110002', '', '2', 'upload_files/candidate_tracker/5640865852_NAVEENKUMARB.pdf', NULL, '1', '2025-02-06', 0, 'NA', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '4', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-11 04:40:49', 1, '2025-02-05 10:23:00', 0, NULL, 1),
(19610, 'Saravanan N', '4', '7339348065', '', 'saravananvlog@gmail.com', '2002-07-02', 21, '2', '2', 'Nagarajan', 'Carpenter', 25000.00, 2, 0.00, 15000.00, 'Thirukkattupalli, Thanjavur district, 613104.', 'Thirukkattupalli Thanjavur district, 613104', '2406110003', '1', '1', 'upload_files/candidate_tracker/53717539572_Saravanan Resume.pdf', NULL, '1', '2024-06-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', 'P1023', '5151', '1970-01-01', 1, '2024-06-11 05:07:12', 104, '2024-06-15 12:42:04', 0, NULL, 1),
(19611, 'Logeshwaran.R', '4', '9360391251', '', 'lokeshrajan06@gmail.com', '2001-09-07', 22, '2', '2', 'R.rengarajan', 'Painter', 15000.00, 1, 0.00, 12000.00, '148 vandayar collony srinivasapuram thanjavur', '148 Vandayar Collony Srinivasapuram Thanjavur', '2406110004', '1', '1', 'upload_files/candidate_tracker/46675976453_LOGESH RESUME.pdf', NULL, '1', '2024-06-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1021', '', 'P1023', '5151', '1970-01-01', 1, '2024-06-11 05:07:24', 104, '2024-06-15 12:42:21', 0, NULL, 1),
(19612, 'RINDHIYA. B', '6', '9841408025', '9884749926', 'rindhiyabavani@gmail.com', '2009-06-11', 0, '2', '2', 'Bavani sankar', 'Milk merchant', 98000.00, 1, 0.00, 15000.00, 'wimco nagar, Thiruvottiyur, Chennai-600057', 'Wimco nagar', '2406110005', '50', '1', 'upload_files/candidate_tracker/82328802683_CV_2024052922194954.pdf', NULL, '2', '2024-06-11', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Her Communication ,Slang And Pronuncation is Not Good', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-11 05:12:09', 104, '2024-06-15 12:27:51', 0, NULL, 1),
(19613, 'Pavithra', '6', '7010265925', '9092440155', 'Pavithra29013@gmail.com', '2003-01-29', 21, '2', '2', 'Ayyappan G', 'Construction Supervisor', 25000.00, 1, 0.00, 14000.00, 'No 1 kambar Street mGR Nagar', 'MGR Nagar', '2406110006', '42', '1', 'upload_files/candidate_tracker/7523670366_Pavithra Resume.pdf', NULL, '1', '2024-06-11', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very low voice, not suit for telecalling', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-11 06:12:14', 104, '2024-06-15 12:11:35', 0, NULL, 1),
(19614, 'Nivedha', '6', '7397476692', '', 'nivedhak3008@gmail.com', '1998-08-30', 25, '2', '2', 'Karthikeyan', 'Electrican', 2.00, 1, 18.00, 23.00, 'No. 2 A. P Arassu cross street ram nagar ambattur', 'Chennai', '2406110007', '1', '2', 'upload_files/candidate_tracker/90692728887_Nivedha K.pdf', NULL, '1', '2024-06-11', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-06-11 08:18:45', 104, '2024-06-15 12:37:52', 0, NULL, 1),
(19615, 'Sandhya. M', '6', '8884429680', '', 'malarkalliyaperumal@gmail.com', '2003-02-16', 21, '2', '2', 'Malar', 'Tailor', 10000.00, 1, 0.00, 25000.00, 'G. B palya, Bangalore-560068', 'Mico layout, bangalore-560068', '2406110008', '1', '2', 'upload_files/candidate_tracker/22975587786_Screenshot_2024-06-11-14-08-49-296_com.google.android.apps.docs-edit.pdf', NULL, '1', '2024-06-11', 0, '', '3', '59', '2024-06-14', 240000.00, '', '3', '2024-10-30', '2', 'Selected for DM Role for relationship executive role', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '3', '3', '', '', 'H1022', '', '55671', '55555', '2024-06-14', 1, '2024-06-11 08:32:24', 60, '2024-06-21 07:33:01', 0, NULL, 1),
(19616, 'Keerthikumar', '11', '9566986639', '9444228901', 'krazzykeerthi14@gmail.com', '1998-06-14', 25, '2', '2', 'Pandi', 'TNEB', 300000.00, 1, 0.00, 280000.00, 'Virudhunagar', 'Guindy', '2406110009', '1', '1', 'upload_files/candidate_tracker/21976119537_keerthi kumar resumae-2-converted (1).pdf', NULL, '1', '2024-06-12', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'had a different kind of experience. not much knowledge about recruitment', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55605', '1970-01-01', 1, '2024-06-11 01:10:20', 104, '2024-06-15 01:25:27', 0, NULL, 1),
(19617, 'Dhanush', '6', '9360345681', '', 'Dhanushmageshd@gmail.com', '2003-07-18', 20, '2', '2', 'Business', 'Business', 25000.00, 1, 0.00, 20000.00, 'Tirupur Tamilnadu', 'Electronic City Bangalore', '2406110010', '1', '1', 'upload_files/candidate_tracker/88155329418_Dhanush18.pdf', NULL, '1', '2024-06-12', 0, '', '3', '59', '2024-06-19', 198000.00, '', '1', '1970-01-01', '2', 'Selected for Relationship Executive role Need to analyse in 7 days training Fresher', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-06-19', 1, '2024-06-11 01:31:59', 126, '2024-06-21 03:56:24', 0, NULL, 1),
(19618, 'Manojgouda V Danappagoudra', '5', '8150893120', '', 'manojgoudadanappagoudra@gmail.com', '2001-07-25', 22, '2', '2', 'vinodgouda', 'farmer', 10000.00, 2, 0.00, 300000.00, 'Ron', 'Ron', '2406110011', '1', '1', 'upload_files/candidate_tracker/39374729634_Manojgouda resume.pdf', NULL, '1', '2024-06-12', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-06-11 01:38:36', 126, '2024-06-20 12:40:12', 0, NULL, 1),
(19619, '', '0', '7200262657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406110012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-11 05:26:24', 0, NULL, 0, NULL, 1),
(19620, 'Aamir khan', '5', '9677139848', '', 'amir2796khan@gmail.com', '1996-08-27', 27, '2', '2', 'Ayub khan', 'Business', 1.00, 2, 550000.00, 600000.00, 'Chennai', 'Chennai', '2406110013', '1', '2', 'upload_files/candidate_tracker/76377721973_AamirKhan-Resume.pdf', NULL, '1', '2024-06-14', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1021', '', NULL, NULL, NULL, 1, '2024-06-11 08:46:47', 112, '2024-06-14 06:20:46', 0, NULL, 1),
(19621, 'M. Mohammed Imran', '31', '6383026412', '9952668338', 'imranameen045@gmail.com', '2002-05-04', 22, '3', '2', 'J. Mohammed Noorul Ameen', 'Covering business man', 15000.00, 1, 0.00, 20000.00, 'Chidambaram', 'Kk, Nagar, Chennai', '2406120001', '', '1', 'upload_files/candidate_tracker/13496883708_web resume.pdf', NULL, '1', '2024-06-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-12 04:07:59', 130, '2024-06-12 01:12:31', 0, NULL, 1),
(19622, 'raja n', '31', '9600979712', '', 'rajanagarajan2418@gmail.com', '2002-05-18', 22, '3', '2', 'nagarajan shanthi', 'arpenter', 30.00, 1, 0.00, 3.00, 'irupur', 'hennai', '2406120002', '', '1', 'upload_files/candidate_tracker/7156049503_RAJA N 2418.pdf', NULL, '1', '2024-06-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-12 05:00:12', 130, '2024-06-12 04:02:32', 0, NULL, 1),
(19623, 'Deepika', '13', '9360789094', '', 'Deepikadee2119@gmail.com', '2001-10-19', 22, '1', '2', 'Rajendran', 'Building constructor', 20000.00, 1, 0.00, 25000.00, 'Assaveerankudikadu , sendurai (tk),Ariyalur (dt)', 'Kamachi nagar, Iyyapanthangal ,600056', '2406120003', '', '1', 'upload_files/candidate_tracker/13669819286_Deepika Cv.pdf', NULL, '1', '2024-06-13', 0, '1234', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-12 05:18:48', 130, '2024-06-12 01:13:04', 0, NULL, 1),
(19624, 'Sudharshan V', '13', '8428535145', '', 'ashwinsudharshan007@gmail.com', '2000-08-21', 23, '1', '2', 'Velan', 'Driver', 12000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2406120004', '', '1', 'upload_files/candidate_tracker/91680187726_Sudharshan-V CV.pdf', NULL, '1', '2024-06-12', 0, '123', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-12 05:19:00', 130, '2024-06-14 01:08:42', 0, NULL, 1),
(19625, 'Shabin Bharath V', '13', '7418721416', '', 'shabinbharath25@gmail.com', '2001-07-25', 22, '3', '2', 'Sharmila', 'Nurse', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2406120005', '', '1', 'upload_files/candidate_tracker/21354317100_Shabin Bharath.pdf', NULL, '1', '2024-06-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-12 06:04:02', 130, '2024-06-12 01:11:49', 0, NULL, 1),
(19626, 'Shilpashri H G', '6', '9972715047', '', 'shilpagirish9972@gmail.com', '1997-07-21', 26, '2', '1', 'SUTHAN', 'Associate', 500000.00, 1, 22000.00, 23000.00, 'Coorg', 'JP nagar 7th phase', '2406120006', '1', '2', 'upload_files/candidate_tracker/69730689301_Shilpashri - CV updated one.pdf', NULL, '1', '2024-06-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'immediate joining suggested ctc upto 17k for dm', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-06-12 06:06:03', 60, '2024-06-21 07:33:29', 0, NULL, 1),
(19627, 'Moogambigai S', '20', '9884997950', '9626768593', 'smooga19@gmail.com', '1999-06-19', 24, '1', '2', 'Selvam', 'Advocate', 25000.00, 1, 23000.00, 26000.00, 'chengalpattu', 'Thiruvanmiyur ,Chennai', '2406120007', '', '2', 'upload_files/candidate_tracker/74945227303_Moogambigai resume.pdf', NULL, '1', '2024-07-09', 0, '.', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT FOR THE ROLE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55567', '55557', '1970-01-01', 1, '2024-06-12 07:37:08', 104, '2024-07-09 07:09:18', 0, NULL, 1),
(19628, '', '0', '6375521321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406120008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-12 10:02:56', 0, NULL, 0, NULL, 1),
(19629, 'Nesa', '6', '9786890059', '', 'nesamv565@gmail.com', '2003-11-25', 20, '2', '2', 'MUTHUKRISHNAN', 'Business', 50000.00, 1, 0.00, 20000.00, 'Chennai ekkathuthankal', 'Chennai ekkathuthankal', '2406120009', '1', '1', 'upload_files/candidate_tracker/25429365675_1000134638.pdf', NULL, '1', '2024-06-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested to go in telesales looking for the core job', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1021', '', '55651', '5151', '1970-01-01', 1, '2024-06-12 01:09:40', 104, '2024-06-15 01:11:06', 0, NULL, 1),
(19630, 'Logeswari Sekar', '33', '7358673874', '9940498201', 'logisek1464@gmail.com', '2004-06-14', 19, '2', '2', 'Sekar.V', 'Private services', 300000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2406120010', '1', '1', 'upload_files/candidate_tracker/41166073965_LOGESWARI SEKAR RESUME.pdf', NULL, '1', '2024-06-13', 0, '', '3', '59', '2024-06-14', 180000.00, '', '1', '1970-01-01', '2', 'Selected for Accounts Internship for 3 months with 10K stipend then 1.8 LPA overall 2yrs NDA', '4', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55566', '5151', '2024-06-14', 1, '2024-06-12 04:30:56', 60, '2024-10-14 06:21:33', 0, NULL, 1),
(19631, 'Sugandhan Balamurugan', '31', '9087436679', '8122667769', 'sugandhan1609@gmail.com', '2000-09-16', 23, '3', '2', 'Balamurugan', 'Trainer', 200000.00, 0, 0.00, 300000.00, 'Mayiladuthurai', 'Chennai', '2406130001', '', '1', 'upload_files/candidate_tracker/19691450922_Sugandhan Balamurugan.pdf', NULL, '1', '2024-06-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-13 04:19:45', 130, '2024-06-13 03:58:27', 0, NULL, 1),
(19632, 'Mohanraja Manickam', '23', '9942220447', '9942220449', 'mohanrajamanickammr@gmail.com', '2000-08-02', 23, '3', '2', 'Manickam', 'Farmer', 150000.00, 1, 0.00, 150000.00, 'Chennai', 'Chennai', '2406130002', '', '1', 'upload_files/candidate_tracker/71207259649_Mohanraja_Manickam (1).pdf', NULL, '1', '2024-06-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-13 04:47:21', 112, '2024-06-13 03:31:50', 0, NULL, 1),
(19633, 'jesmith ahamed', '23', '8525941292', '', 'jesmithahamed0183@gmail.com', '2001-07-12', 22, '3', '2', 'jahabar ali', 'agriculture', 8000.00, 0, 0.00, 15000.00, 'kumbakonam', 'saidapet chennai', '2406130003', '', '1', 'upload_files/candidate_tracker/64786532640_jesmith (1).pdf', NULL, '1', '2024-06-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-13 04:49:23', 130, '2024-06-14 01:07:41', 0, NULL, 1),
(19634, 'naveen kumar k', '13', '9750838785', '', 'karthicknaveen21@gmail.com', '2000-05-31', 24, '3', '2', 'karuppusamy', 'farmer', 20000.00, 1, 0.00, 15000.00, 'chennai', 'ashok pillar', '2406130004', '', '1', 'upload_files/candidate_tracker/31048648264_NAVEEN KUMAR K.pdf', NULL, '1', '2024-06-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-13 04:54:56', 130, '2024-06-13 03:58:11', 0, NULL, 1),
(19635, 'Ismail S', '31', '6380152771', '9176049792', 'Smiley0ismail786@gmail.com', '2000-12-03', 23, '3', '2', 'Moonina', 'House keeping', 12000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2406130005', '', '1', 'upload_files/candidate_tracker/17472522007_Ismail S.pdf', NULL, '1', '2024-06-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-13 04:55:22', 130, '2024-06-14 01:07:04', 0, NULL, 1),
(19636, 'Sharmila k', '6', '7305326120', '9566231844', 'sharmikrishnan123@gmail.com', '2004-04-05', 20, '1', '2', 'Krishnan J', 'Farmer', 15000.00, 1, 0.00, 14000.00, 'Iyyanpandangal chennai', 'Iyyanpandangal Chennai', '2406130006', '', '1', 'upload_files/candidate_tracker/63647605476_Document from Sharmi.pdf', NULL, '1', '2024-06-13', 0, '77905', '3', '59', '2024-06-17', 168000.00, '', '1', '1970-01-01', '2', 'Selected for Giri Team Relationship Executive Role Need to analyse in 7 days and confirm', '5', '2', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2024-06-17', 1, '2024-06-13 05:03:19', 130, '2024-06-20 03:35:59', 0, NULL, 1),
(19637, 'Vasanth M', '6', '9344165393', '9514318031', 'smartvasanth705@gmail.com', '1998-12-07', 25, '2', '2', 'Murugan', 'Daily wages', 25000.00, 2, 18000.00, 20000.00, 'Mannady', 'Mannady', '2406130007', '51', '2', 'upload_files/candidate_tracker/78715714868_Vasanth Resume 0712.pdf', NULL, '3', '2024-06-13', 30, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-13 05:21:23', 104, '2024-06-15 12:38:10', 0, NULL, 1),
(19638, 'Sathishkumar A', '13', '8124231306', '', 'sathishkumar16322@gmail.com', '2002-03-16', 22, '3', '2', 'Alagappan p', 'Farmer', 200000.00, 1, 0.00, 200000.00, 'Salem', 'Chennai', '2406130008', '', '1', 'upload_files/candidate_tracker/15400410376_SATHISH SQL CV.pdf_20240613_071203_0000.pdf', NULL, '1', '2024-06-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-13 05:22:41', 130, '2024-06-13 03:59:25', 0, NULL, 1),
(19639, 'Sachinpandi K', '13', '6385560918', '8524852747', 'sachinpandi6444@gmail.com', '2002-06-21', 21, '3', '2', 'Malarkodi K', 'Farmer', 350000.00, 1, 252000.00, 300000.00, 'Chennai', 'Chennai', '2406130009', '', '2', 'upload_files/candidate_tracker/93958845061_Sachinn.pdf', NULL, '1', '2024-06-13', 15, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-13 05:25:05', 130, '2024-06-13 03:58:59', 0, NULL, 1),
(19640, 'Anusha', '6', '8248686537', '9659621130', 'anushabalasundaram@gmail.com', '2000-04-07', 24, '2', '2', 'Balasundaram', 'Grossary', 30000.00, 2, 30000.00, 30000.00, 'Thirumullaivayal', 'Thirumullaivayal', '2406130010', '50', '2', 'upload_files/candidate_tracker/76661999262_Anusha B RESUME.pdf', NULL, '1', '2024-06-13', 0, '', '3', '59', '2024-06-17', 180000.00, '', '3', '2024-08-02', '2', 'Selected for Gopinath Team Relationship Executive Role Need to analyze in 7 days seems to be doubt in handling the working pressure', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2024-06-17', 1, '2024-06-13 05:28:16', 130, '2024-06-20 03:40:09', 0, NULL, 1),
(19641, 'Babulingam', '6', '9360116989', '8807275908', 'babulingam024@gmail.com', '2002-09-16', 21, '2', '2', 'Vaitheeswaran', 'Business', 40000.00, 1, 12000.00, 16000.00, '13A idayar santhu ,kacari Street ,kallakurichi', 'Olympiad', '2406130011', '50', '2', 'upload_files/candidate_tracker/89692409297_Babu resume.pdf', NULL, '1', '2024-06-13', 15, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no skil', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-13 05:40:22', 104, '2024-06-15 12:07:02', 0, NULL, 1),
(19642, 'Shanmuga priya', '6', '6374138573', '9645008114', 'pm853995@gmail.com', '2002-07-29', 21, '2', '2', 'Mohan', 'Business', 20000.00, 1, 12000.00, 16000.00, 'Ulagappa chetty kollai street kallakurichi', 'Ekkatuthangal guindy', '2406130012', '50', '2', 'upload_files/candidate_tracker/91696987116_DOC-20240511-WA0004..pdf', NULL, '1', '2024-06-13', 15, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candiate attend by charless , her Comminucation and performance is little bit only good,but sustainity problem.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-13 05:40:59', 104, '2024-06-15 12:34:43', 0, NULL, 1),
(19643, 'Vennila', '6', '9645008994', '6374138573', 'vennilanil80@gmail.com', '2001-01-07', 23, '2', '2', 'Selvaraj.D', 'Coolie', 40000.00, 1, 12000.00, 16000.00, '103,new street, chinna salem', 'Ekkattuthangal', '2406130013', '50', '2', 'upload_files/candidate_tracker/7168185061_Vennila s_Color Format – 10.pdf', NULL, '1', '2024-06-13', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'syed selected,so lets try 7 days ctc 16k, she has existing work exp', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-13 05:41:07', 104, '2024-06-15 01:11:52', 0, NULL, 1),
(19644, 'R.sumanraj', '6', '8807275908', '9645008994', 'josephsuman362@gmail.com', '2001-07-13', 22, '2', '2', 'Rajasekar', 'Mesan', 60000.00, 2, 12000.00, 20000.00, '10/71,manalmadu east Str)thanjaour (d/T) ,614207', 'Ekkattuthangal', '2406130014', '50', '2', 'upload_files/candidate_tracker/42774461544_Sumanraj CV-1.pdf', NULL, '1', '2024-06-13', 15, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Already working 4th month back end team he is not suitable sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-13 05:41:11', 104, '2024-06-15 12:19:16', 0, NULL, 1),
(19645, 'Manikandan Velayutham', '14', '9791718608', '9843297264', 'manikutty656@gmail.com', '2000-06-24', 23, '3', '2', 'Velayutham Ganapathy', 'Farming', 8000.00, 4, 0.00, 200000.00, 'Kumbakonam', 'Tambaram', '2406130015', '', '1', 'upload_files/candidate_tracker/10640316126_ManikandanVelayutham.pdf', NULL, '1', '2024-06-13', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-13 05:41:28', 130, '2024-06-13 03:56:36', 0, NULL, 1),
(19646, 'Riyaz.b', '6', '6383686891', '', 'riyaskd29@gmail.com', '2003-10-29', 20, '2', '2', 'Babu.k', 'Painter', 25000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2406130016', '1', '1', 'upload_files/candidate_tracker/49860781353_RIYAZ.pdf', NULL, '1', '2024-06-13', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he not suitable for voice process xxamp Sales profile. field work not interest', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2024-06-13 05:55:45', 104, '2024-06-15 12:46:15', 0, NULL, 1),
(19647, 'S. Swathi', '1', '7305264632', '7395890061', 'Swathyvkswathy@gmail.com', '1997-11-25', 26, '2', '2', 'G. Stanly', 'Civil engineering', 100000.00, 2, 14000.00, 16000.00, 'Villivakkam', 'Chennai', '2406130017', '50', '2', 'upload_files/candidate_tracker/72200109356_Swathi. S resume.docx', NULL, '1', '2024-06-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-13 06:02:26', 1, '2024-06-13 06:14:44', 0, NULL, 1),
(19648, 'Prakash Raj', '6', '6381844493', '', 'prakashv2024@gmail.com', '2002-12-20', 21, '2', '2', 'Prasad', 'Painting', 15000.00, 2, 10000.00, 17000.00, 'No 11 Karimedu Colony, Anjaneya Nagar, Chennai', 'Same', '2406130018', '50', '2', 'upload_files/candidate_tracker/1420554622_prakashv2024resume2.pdf', NULL, '1', '2024-06-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-13 06:38:54', 112, '2024-06-13 03:31:28', 0, NULL, 1),
(19649, 'M.Nitheshkumar', '20', '9360368853', '7904950221', 'nitheshkumar03072003@gmail.com', '2003-07-03', 20, '2', '2', 'Mani.R', 'Agri', 20000.00, 2, 0.00, 15000.00, '1/52 puthur street vembarpatty Dindigul', 'Navalour,chennai', '2406130019', '50', '1', 'upload_files/candidate_tracker/19447144167_CV_2024061013015645.pdf', NULL, '1', '2024-06-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-13 06:39:31', 112, '2024-06-13 04:51:31', 0, NULL, 1),
(19650, 'sanjay', '5', '9384660930', '9094437746', 'anbusanjay617@gmail.com', '2002-07-31', 21, '1', '2', 'anbucheliyan', 'railway protect force-sub inspector', 80000.00, 1, 0.00, 18000.00, 'anna nagar', 'anna nagar', '2406130020', '', '1', 'upload_files/candidate_tracker/43925969744_Resume.pdf', NULL, '1', '2024-06-13', 0, '77797', '3', '59', '2024-06-24', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Can be trained but will not sustain for a long looking for forensic opportunities parttime basket ball coach', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '2024-06-24', 1, '2024-06-13 06:49:01', 60, '2024-06-21 11:55:10', 0, NULL, 1),
(19651, 'JACKULINE A', '33', '8610730377', '', 'jackyjackuline@gmail.com', '2001-10-05', 22, '6', '1', 'Arockiyaraj', 'Painter', 20000.00, 3, 0.00, 15000.00, 'Thoothukudi', 'Thoothukudi', '2406130021', '', '1', 'upload_files/candidate_tracker/26995567806_CV_2024061213282184.pdf', NULL, '1', '2024-06-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-13 06:55:46', 1, '2024-06-13 06:58:15', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19652, 'Keerthana S', '11', '7904890416', '', 'keerthanask0911@gmail.com', '2001-07-09', 22, '3', '2', 'Suresh', 'MRF private limited', 50000.00, 2, 0.00, 18000.00, 'Arakkonam', 'Chennai', '2406130022', '', '1', 'upload_files/candidate_tracker/15075463217_S.Keerthana RESUME RR..pdf', NULL, '1', '2024-06-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', '55605', '55605', '1970-01-01', 1, '2024-06-13 07:39:30', 104, '2024-06-15 01:24:02', 0, NULL, 1),
(19653, 'Gayathri ravindran', '6', '9025164252', '9629108133', 'shanigayathri78@gmail.com', '2000-01-23', 25, '2', '2', 'Gowri R', 'Housewife', 15000.00, 0, 20000.00, 25000.00, 'Thanjavur', 'Maraimalai nagar near by chengalpate', '2406130023', '1', '2', 'upload_files/candidate_tracker/64620774830_gayathri.pdf', NULL, '1', '2025-04-02', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very active but childish long distance not open to relocate she is from maraimalai nagar 5050 try', '5', '1', '', '1', '8', '', '2', '2025-04-05', '3', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2024-06-13 07:42:35', 154, '2025-04-02 05:47:35', 0, NULL, 1),
(19654, 'Kavikumar M', '5', '8248892979', '', 'kavikumar887@gmail.com', '1996-09-06', 27, '1', '1', 'Blessy Salomiya R', 'teacher', 100.00, 1, 21000.00, 25000.00, 'Manali, chennai', 'Manali, Chennai', '2406130024', '', '2', 'upload_files/candidate_tracker/44281399452_Kavikumar CV 2024.pdf', NULL, '1', '2024-06-13', 0, '55634', '3', '59', '2024-06-19', 300000.00, '', '1', '1970-01-01', '1', 'Selected fr Jagadeesh Team RM Role Need to analyse in 7 days can be trained in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55634', '55557', '2024-06-19', 1, '2024-06-13 09:25:00', 60, '2024-06-19 10:16:27', 0, NULL, 1),
(19655, 'Prabakaran.P', '6', '9176785339', '9176538858', 'praba1282002@gmail.com', '2002-08-12', 21, '2', '2', 'D.Prakash', 'Coolie', 7000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2406130025', '50', '1', 'upload_files/candidate_tracker/74069596105_P.PRABAKARAN RESUME_compressed.pdf', NULL, '1', '2024-06-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-13 10:14:02', 112, '2024-06-13 04:51:10', 0, NULL, 1),
(19656, 'Mounika', '4', '7899893781', '8660052465', 'mounikabenjij@gmail.com', '2001-10-14', 22, '3', '2', 'Geetha', 'Housewife', 10000.00, 2, 16000.00, 20000.00, 'Raichur', 'Bangalore', '2406140001', '', '2', 'upload_files/candidate_tracker/86331417531_MONIKA CV.pdf', NULL, '1', '2024-06-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-14 03:28:52', 1, '2024-06-14 03:34:52', 0, NULL, 1),
(19657, 'balaji', '2', '9790224924', '9500058056', 'balaji180523@gmail.com', '2003-05-18', 21, '3', '2', 'govindharaj', 'gas supplier', 15000.00, 1, 0.00, 250000.00, 'kelambakkam', 'kelambakkam', '2406140002', '', '1', 'upload_files/candidate_tracker/9900579218_BALAJI G - RESUME.pdf', NULL, '1', '2024-06-14', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-14 04:28:32', 130, '2024-06-14 01:03:04', 0, NULL, 1),
(19658, 'ganapathi.v', '2', '8248994970', '', 'vdervg007@gmail.com', '2003-09-17', 20, '3', '2', 'venkatesan', 'farmer', 10000.00, 2, 0.00, 30000.00, 'tiruvannamalai', 'velachery', '2406140003', '', '1', 'upload_files/candidate_tracker/82844484656_Ganapathi V Resume_2024 (3) (1).pdf', NULL, '1', '2024-06-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-14 04:39:27', 130, '2024-06-22 03:21:49', 0, NULL, 1),
(19659, 'Harish Govindh D', '13', '7397325090', '', 'harishgovindhd@gmail.com', '2002-04-01', 22, '3', '2', 'B Saidhamodaran', 'Coustomer support', 35000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2406140004', '', '1', 'upload_files/candidate_tracker/71506586878_cv1.pdf', NULL, '1', '2024-06-14', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-14 04:45:35', 130, '2024-06-14 01:01:55', 0, NULL, 1),
(19660, 'Gunadeepan G', '13', '7305921506', '', 'gunagunadeepan@gmail.com', '2001-12-13', 22, '3', '2', 'Gunasekaran R', 'Business', 35000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2406140005', '', '1', 'upload_files/candidate_tracker/50192440171_Gunadeepan-CV.pdf', NULL, '1', '2024-06-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-14 04:45:54', 130, '2024-06-22 03:23:45', 0, NULL, 1),
(19661, 'Binu S', '13', '7397593862', '9094498255', 'binugodwin098@gmail.com', '2002-12-05', 21, '3', '2', 'Savurirajan', 'Cooli', 10000.00, 1, 0.00, 250000.00, 'Thiruvannamalai', 'Chennai', '2406140006', '', '1', 'upload_files/candidate_tracker/39210497511_Document from Godwin ? (2)_copy.pdf', NULL, '1', '2024-06-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-14 04:46:27', 130, '2024-06-22 03:22:19', 0, NULL, 1),
(19662, 'Akash P', '13', '6380088302', '9677269439', 'akashprabhakaran24@gmail.com', '2002-07-24', 21, '3', '2', 'Prabhakaran', 'shop keeper', 15000.00, 1, 0.00, 250000.00, 'Thiruvannamalai', 'Chennai', '2406140007', '', '1', 'upload_files/candidate_tracker/88900128329_Akash.pdf', NULL, '1', '2024-06-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-14 04:46:38', 130, '2024-06-14 01:05:45', 0, NULL, 1),
(19663, 'R Mageshwaran', '13', '9344409059', '8940904003', 'mageshwaranr193@gmail.com', '2000-10-17', 23, '3', '2', 'P Rajadurai', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Thoothukkudi', 'Thoraipakam', '2406140008', '', '1', 'upload_files/candidate_tracker/54211185271_MAGESWARAN-R-FlowCV-Resume-20240515.pdf', NULL, '1', '2024-06-14', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-14 04:47:44', 130, '2024-06-14 01:01:12', 0, NULL, 1),
(19664, 'NAGESHWARAN S', '13', '6384801596', '8072390210', 'nageshwarans43@gmail.com', '2000-05-15', 24, '3', '2', 'Sivakumar G', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Chennai', '2406140009', '', '1', 'upload_files/candidate_tracker/15940808584_NAGESHWARAN_S_JAVA.pdf', NULL, '1', '2024-06-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-14 04:51:07', 130, '2024-06-22 03:23:20', 0, NULL, 1),
(19665, 'Lingeshwaran', '5', '8870482729', '', 'lingeshwarank22@gmail.com', '2002-02-18', 22, '2', '2', 'Krishnadass', 'Government job', 1000000.00, 1, 0.00, 18000.00, 'New washermenoet', 'New washermenoet', '2406140010', '1', '1', 'upload_files/candidate_tracker/19708051391_LINGESH_Resum.docx', NULL, '1', '2024-06-14', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher not interested in sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-14 04:54:37', 104, '2024-06-15 12:19:34', 0, NULL, 1),
(19666, 'M.Harshini', '5', '6381140146', '7810077737', 'harshinimanivasagam11@gmail.com', '2003-12-11', 20, '2', '2', 'S.Manivasagam', 'Business', 30000.00, 1, 0.00, 20000.00, 'No 165 n block M.M.D.A colony arumbakkam', 'No 165 N block M.M.D.A colony arumbakkam Chennai', '2406140011', '39', '1', 'upload_files/candidate_tracker/31074884797_Harshini resume.pdf', NULL, '1', '2024-06-14', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-14 04:55:57', 112, '2024-06-14 06:00:16', 0, NULL, 1),
(19667, 'pavithra r', '6', '9606148276', '', 'pavithrarajesh27092000@gmail.com', '2000-09-27', 23, '2', '2', 'rajesh', 'farmer', 50000.00, 1, 32000.00, 35000.00, 'bangalore', 'bangalore', '2406140012', '1', '2', 'upload_files/candidate_tracker/1276656818_Detaild CV 2024(1).pdf', NULL, '1', '2024-06-14', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-06-14 05:01:34', 126, '2024-06-21 04:11:16', 0, NULL, 1),
(19668, 'Y Dinesh Kumar', '13', '9840073737', '', 'dineshyuva27@gmail.com', '2000-10-29', 23, '3', '2', 'Yuvarajulu', 'private company', 180000.00, 1, 0.00, 15000.00, 'Avadi', 'Avadi', '2406140013', '', '1', 'upload_files/candidate_tracker/63934407288_Y-Dinesh-Kumar CV.pdf', NULL, '1', '2024-06-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-14 05:14:01', 130, '2024-06-22 03:24:17', 0, NULL, 1),
(19669, 'Nithya magesh', '5', '9840191654', '9629960252', 'mnithya462@gmail.com', '1998-08-01', 25, '2', '1', 'Magesh', 'Own business', 36.00, 1, 0.00, 20.00, 'Tindivanam', 'Royapettah', '2406140014', '39', '2', 'upload_files/candidate_tracker/53246862812_CV_2024060613374156.pdf', NULL, '1', '2024-06-14', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No prior sales experience, not able convince for sales also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-06-14 05:14:24', 60, '2024-06-15 07:42:44', 0, NULL, 1),
(19670, 'MADHANKUMAR J', '13', '8248280484', '', 'madhankumarj0806@gmail.com', '2000-06-08', 24, '1', '2', 'jothi', 'farmer', 5000.00, 1, 0.00, 15000.00, 'mayiladuthurai', 'chennai', '2406140015', '', '1', 'upload_files/candidate_tracker/58462585730_Madhankumar resume.pdf', NULL, '1', '2024-06-14', 0, 'no', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-14 05:15:27', 130, '2024-06-14 01:03:47', 0, NULL, 1),
(19671, 'MANODEEPAN M', '13', '9345300637', '', 'manodeepan2810eb@gmail.com', '2009-06-14', 0, '1', '2', 'MANICKAM N', 'Driver', 50000.00, 1, 0.00, 1.50, 'Namakkal', 'Namakkal', '2406140016', '', '1', 'upload_files/candidate_tracker/96642276390_Manodeepanm.resume2.pdf', NULL, '1', '2024-06-14', 0, 'No', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-14 05:20:50', 130, '2024-06-14 01:04:24', 0, NULL, 1),
(19672, 'Ajithkumar M', '13', '6380371699', '', 'majithkumar478@gmail.com', '2002-01-30', 23, '3', '2', 'Murugesapandiyan', 'Business', 25000.00, 2, 0.00, 20000.00, 'RAMANATHAPURAM', 'Poonamalle', '2406140017', '', '1', 'upload_files/candidate_tracker/26875795188_AjithkumarResume.pdf', NULL, '1', '2025-06-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-14 05:22:03', 154, '2025-06-28 10:57:32', 0, NULL, 1),
(19673, '', '0', '8248004636', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406140018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-14 05:31:23', 0, NULL, 0, NULL, 1),
(19674, 'Abinaya.r', '5', '9600203847', '9677278250', 'abinaya28997@gmail.com', '1997-09-28', 26, '1', '2', 'Vasanthi', 'Tailor', 20000.00, 0, 0.00, 19000.00, '10 A kalakodi street tenkasi', 'No.4 r.E Nagar 1 St West cross street Porur', '2406140019', '', '2', 'upload_files/candidate_tracker/74502508009_doc (1).pdf', NULL, '1', '2024-06-14', 0, 'CAFSUSR00773', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Porrselvan team, refer detail in resume ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-06-14 05:40:14', 104, '2024-06-15 12:48:31', 0, NULL, 1),
(19675, 'Kamali R', '6', '9600599611', '9940155759', 'kamaliramar474@gmail.com', '2003-07-19', 20, '2', '2', 'Ramar V', 'Supervisor at hyndai show room', 150000.00, 1, 0.00, 30000.00, 'Vadapalani', 'Vadapalani', '2406140020', '50', '1', 'upload_files/candidate_tracker/58135330044_KAMALI RAMAR.pdf', NULL, '1', '2024-06-14', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2024-06-14 05:56:18', 112, '2024-06-14 05:55:32', 0, NULL, 1),
(19676, '', '0', '8260982251', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406140021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-14 06:57:39', 0, NULL, 0, NULL, 1),
(19677, 'Anandhi.S', '6', '8072709711', '', 'saravanaanandhi5@gmail.com', '2003-08-20', 20, '2', '2', 'Kokila', 'House keeping', 9000.00, 1, 0.00, 18000.00, '32/2 murthy street agaram chennai-600082', '32/2 Murthy street Agaram Chennai-600082', '2406140022', '1', '1', 'upload_files/candidate_tracker/79327909270_Anandhi.S Resume.pdf', NULL, '1', '2024-06-14', 0, '', '3', '59', '2024-06-21', 168000.00, '', '5', '1970-01-01', '2', 'Fresher for Telecalling roles can be trained group of friends got selected in DM team Need to have a detailed analyse in their work', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55651', '5151', '2024-06-21', 1, '2024-06-14 07:29:13', 60, '2024-06-20 05:59:16', 0, NULL, 1),
(19678, 'Sowmiya. R', '6', '9042611218', '', 'rsowmiya9042@gmail.com', '2004-04-16', 20, '2', '2', 'Devi', 'House keeping', 8000.00, 1, 0.00, 15000.00, 'No/102mpm street , perambur chennai_11', 'Perambur', '2406140023', '1', '1', 'upload_files/candidate_tracker/78558791150_sowmiya resum.pdf', NULL, '1', '2024-06-14', 0, '', '3', '59', '2024-06-24', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team Need to analyse in 7 days training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55645', '5151', '2024-06-24', 1, '2024-06-14 07:29:25', 60, '2024-06-15 04:41:03', 0, NULL, 1),
(19679, 'S REENA', '11', '6381656726', '9566986639', '22spms052@vhnsnc.edu.in', '2002-03-01', 22, '3', '2', 'L.selvaraj', 'Farmer', 100000.00, 4, 0.00, 280000.00, 'Virudhunagar', 'Guindy', '2406140024', '', '1', 'upload_files/candidate_tracker/77612929233_My soul.pdf', NULL, '1', '2024-06-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-14 07:30:50', 1, '2024-06-14 07:37:39', 0, NULL, 1),
(19680, 'Francis Xavier', '5', '9003164237', '6383179952', 'francisxavier2514@gmail.com', '1997-10-14', 26, '1', '2', 'Victor', 'Security', 50000.00, 1, 350000.00, 500000.00, 'Chennai', 'Chennai', '2406140025', '', '2', 'upload_files/candidate_tracker/62177700587_FRANCIS Resume 2024.pdf', NULL, '1', '2024-06-14', 0, '55735', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Kindly Reschedule', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-06-14 07:30:54', 104, '2024-06-15 12:47:53', 0, NULL, 1),
(19681, 'Mohamed Afrash J', '6', '8667358233', '6374773171', 'afrashmohamed24@gmail.com', '2004-12-30', 19, '1', '2', 'Jabarulla khan S', 'Business', 30000.00, 1, 16000.00, 18000.00, 'Sivakkollai, pattukkottai, thanjavur', 'Jafferkhanpet,chennai -614602', '2406140026', '', '2', 'upload_files/candidate_tracker/89068207529_NEW RESUME.pdf', NULL, '1', '2024-06-14', 0, '77905', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '6months experience for renivales an d8 months experience for tele sales for starhealth nsurance so try for 7 days training and ctc net 16k', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-14 07:53:46', 104, '2024-06-15 01:12:33', 0, NULL, 1),
(19682, 'Kaviyarasan u', '6', '9025961859', '8015861476', 'kaviyarasanu8@gmail.com', '2002-06-11', 22, '1', '2', 'Uthirapathi', 'Driver', 25000.00, 5, 0.00, 15000.00, 'Chengam,thiruvanamalai', 'Mudichur road,tambaram west', '2406140027', '', '1', 'upload_files/candidate_tracker/66238860275_Kaviyarasan U_CV.pdf', NULL, '1', '2024-06-14', 0, '77905', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fake commitment and voice also not good , not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-14 08:20:02', 104, '2024-06-15 12:24:50', 0, NULL, 1),
(19683, 'dhanush', '6', '8489393571', '', 'dhanushactor@gmail.com', '2001-08-23', 22, '2', '2', 'c. sadasivam', 'it', 50000.00, 1, 0.00, 18000.00, 'ice house vakkiol thotti streer triplicane', 'chennai', '2406140028', '50', '2', 'upload_files/candidate_tracker/7557452326_Dhanusha Resume .pdf', NULL, '1', '2024-06-14', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-14 09:13:24', 104, '2024-06-15 12:20:01', 0, NULL, 1),
(19684, 'Ragul p', '6', '9025973893', '9710412608', 'ragulsanju46@gmail.com', '2004-08-21', 19, '2', '2', 'Valarmathi p', 'House wife', 30000.00, 1, 0.00, 20000.00, 'No9 vathiyar chinaiya street,royapettah Chennai', 'Chennai', '2406140029', '50', '1', 'upload_files/candidate_tracker/62828596472_Raghul.docx', NULL, '1', '2024-06-14', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for the job', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-14 09:14:29', 104, '2024-06-15 12:07:22', 0, NULL, 1),
(19685, 'Keerthana Nagaraj', '4', '6374323438', '9626394272', 'keerthishinchan54@gmail.com', '2002-07-10', 21, '2', '2', 'Nagaraj.c', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2406140030', '1', '1', 'upload_files/candidate_tracker/20194111376_CURRICULAM VITAE (1).pdf', NULL, '1', '2024-06-15', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1023', '', 'P1023', '5151', '1970-01-01', 1, '2024-06-14 09:31:21', 104, '2024-06-15 12:42:44', 0, NULL, 1),
(19686, 'M. Fameedha', '6', '9150793118', '7010063682', 'mfameedha20@gmail.com', '2000-10-02', 23, '3', '1', 'Irshad ahamed', 'Banking', 22000.00, 1, 0.00, 20000.00, 'Triplicane', 'Triplicane', '2406140031', '', '1', 'upload_files/candidate_tracker/22191508413_fameedha resume.docx', NULL, '1', '2024-06-14', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not suitable for sales profile. bcz of timing and leaves.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-14 09:48:55', 104, '2024-06-15 12:46:33', 0, NULL, 1),
(19687, '', '0', '7200791487', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406140032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-14 12:59:58', 0, NULL, 0, NULL, 1),
(19688, 'Jijna K C', '6', '8089489969', '9037639789', 'jijnakc@gmail.com', '1992-12-05', 31, '2', '1', 'Vinu Mohan', 'SCM', 60000.00, 1, 15000.00, 30000.00, 'Kerala', 'Bangalore', '2406150001', '1', '2', 'upload_files/candidate_tracker/79883161062_cv jijna kc.pdf', NULL, '1', '2024-06-15', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Salary expectation is high', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-06-15 02:00:36', 126, '2024-06-21 04:12:12', 0, NULL, 1),
(19689, '', '0', '9500058056', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406150002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-15 03:21:40', 0, NULL, 0, NULL, 1),
(19690, 'Prakash raj B', '13', '9566354796', '9941362005', 'bprakash.bpr@gmail.com', '1999-05-05', 25, '3', '2', 'Balasundharam', 'Business', 15000.00, 2, 0.00, 3.00, 'Chidambaram', 'Chidambaram', '2406150003', '', '1', 'upload_files/candidate_tracker/29911493566_MyRESUME (1).pdf', NULL, '1', '2024-06-15', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-15 04:03:40', 112, '2024-06-15 05:59:32', 0, NULL, 1),
(19691, 'Sharan', '5', '7904166450', '7200784165', 'sharanchandraprakash12@gmail.com', '1998-12-12', 25, '2', '2', 'chandraprakash', 'bussiness', 15000.00, 0, 3.24, 3.24, 'trichy', 'egmore', '2406150004', '50', '2', 'upload_files/candidate_tracker/84785394212_reume.10.pdf', NULL, '1', '2024-06-15', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not attended please refix', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-06-15 04:11:44', 60, '2024-06-20 07:12:05', 0, NULL, 1),
(19692, 'Kaviya.M', '6', '8939208881', '9171702179', 'kaviyasrivasulu4@gmail.com', '2000-10-19', 23, '2', '2', 'Srinivasulu', 'Watchman', 10000.00, 0, 0.00, 15000.00, 'Anjaneya Nagar, ROYAPURAM chennai -600013', 'Anjaneya Nagar, ROYAPURAM chennai -600013', '2406150005', '50', '1', 'upload_files/candidate_tracker/60460169661_kaviya .pdf', NULL, '1', '2024-06-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-15 04:22:49', 112, '2024-06-15 03:46:34', 0, NULL, 1),
(19693, 'Yuvaragavan S', '6', '6382294711', '9790229542', 'ragavan06syr@gmail.com', '2002-02-06', 22, '2', '2', 'Senthilkumar A', 'Driver', 20000.00, 1, 0.00, 18000.00, 'Namakkal', 'Perungalathur, Chennai.', '2406150006', '50', '1', 'upload_files/candidate_tracker/97759904367_Yuvaragavan resume.pdf', NULL, '1', '2024-06-15', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not Interested Tell calling job ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-15 04:28:15', 104, '2024-06-15 12:07:48', 0, NULL, 1),
(19694, 'SURYA A', '2', '9344197675', '', 'suryaanbu0716@gmail.com', '2002-07-16', 21, '3', '2', 'Anbalagan', 'Farmer', 9000.00, 1, 0.00, 280000.00, 'Kumbakonam', 'Chennai', '2406150007', '', '1', 'upload_files/candidate_tracker/46529328018_Surya_A_Resume.pdf', NULL, '1', '2024-06-15', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-15 04:32:14', 130, '2024-06-22 03:21:20', 0, NULL, 1),
(19695, 'Kevin', '31', '9159724402', '8778025989', 'pskevinbaruch@gmail.com', '2003-10-25', 20, '3', '2', 'S Philip Raj', 'Former', 60000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2406150008', '', '1', 'upload_files/candidate_tracker/35015636157_Kevin_OriginalResume_Word 22.pdf', NULL, '1', '2024-06-15', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-15 04:32:35', 112, '2024-06-15 05:58:30', 0, NULL, 1),
(19696, 'Pavithran D', '13', '8637474368', '9952453008', 'pavithran066bme@gmail.com', '2001-08-30', 22, '3', '2', 'Dhanapal.I', 'Weaver', 20000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2406150009', '', '1', 'upload_files/candidate_tracker/76761211792_Pavithran Resume-4 (1).pdf', NULL, '1', '2024-06-15', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-15 04:36:08', 112, '2024-06-15 05:57:45', 0, NULL, 1),
(19697, 'M. MURUGAIYAN', '32', '8148616394', '8940524544', 'vimalmurugan86@gmail.com', '1994-10-16', 29, '1', '1', 'M. Renugadevi', 'House\' wife', 33800.00, 0, 4.63, 5.00, '1/81 Mela pudhupalli west Mariyamman Kovil st', 'Iyyapanthangal meetu street near MMS Hospital', '2406150010', '', '2', 'upload_files/candidate_tracker/77000448400_resume word format.docx', NULL, '1', '2024-06-15', 0, '5096475', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'worked 1 year with ipru bank channel but expecting huge CTC.  No experience in lead generation by his own ', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-15 05:00:27', 1, '2024-06-15 05:18:51', 0, NULL, 1),
(19698, 'Praveena Rani', '6', '6385899927', '8939050592', 'praveenapravi2612@gmail.com', '2002-12-26', 21, '2', '2', 'Parent name-Raju & jeyaparwathi', 'Culi', 30000.00, 1, 12000.00, 15000.00, 'Redhills', 'Arumbakkam', '2406150011', '50', '2', 'upload_files/candidate_tracker/17745297827_praveena_res[1].pdf', NULL, '1', '2024-06-15', 0, '', '3', '59', '2024-06-20', 174000.00, '', '3', '2024-10-29', '2', 'Selected for RE Role have 7 months telecalling exp can be trained in our roles need to analyse in 7 days', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '2024-06-20', 1, '2024-06-15 05:01:47', 60, '2024-06-20 10:35:54', 0, NULL, 1),
(19699, 'V.Mahendran', '6', '7200059944', '9551231745', 'Madhavmahe028@gmail.com', '2004-03-05', 20, '2', '2', 'Venugopal.V', 'Office boy', 20000.00, 1, 0.00, 16.00, 'Chennai', 'Chennai', '2406150012', '42', '1', 'upload_files/candidate_tracker/56733915546_MAHENDRAN_resume.pdf', NULL, '1', '2024-06-15', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he interested it domain, already he attend 3 interviews iT related only, now also looking IT Jobs. Unfit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-15 05:26:23', 104, '2024-06-15 12:46:50', 0, NULL, 1),
(19700, 'SANGEETHA SUBASH', '6', '9500808718', '', 'sangeethageetha0904@gmail.com', '2003-04-09', 21, '2', '2', 'K subash', 'Labour', 20000.00, 1, 0.00, 15000.00, 'Arinar Anna Street, kitchipalayam,salem-636015', 'Valasaravaakam,chennai', '2406150013', '50', '1', 'upload_files/candidate_tracker/69868606217_Sangeetha s (CV).pdf', NULL, '1', '2024-06-15', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability issue', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-15 05:26:26', 60, '2024-06-15 07:43:12', 0, NULL, 1),
(19701, 'Jamaludeen', '6', '9361536459', '', 'ece.jamaludeen008@gmail.com', '2002-07-13', 21, '2', '2', 'Anwar', 'Mechanic', 15000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2406150014', '50', '1', 'upload_files/candidate_tracker/65790406674_JD Resume.pdf', NULL, '1', '2024-06-15', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate just fwe months working for job that money to study for it course, afterhe will join for it company so ot fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-15 05:29:15', 60, '2024-06-15 07:43:26', 0, NULL, 1),
(19702, 'Rishikesh k', '13', '8190946073', '', 'karthirishi24468@gmail.com', '2009-06-15', 0, '3', '2', 'Karthikeyan', 'Mtc - bus mechanical', 40000.00, 1, 0.00, 2.50, 'No 26 Sri arunachala eswarar nagar, kundrathur', 'Chennai', '2406150015', '', '1', 'upload_files/candidate_tracker/42715483094_rishikesh_k_Resume4.pdf', NULL, '1', '2024-06-15', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-15 05:30:34', 112, '2024-06-15 05:59:20', 0, NULL, 1),
(19703, 'Sundar', '13', '9361702189', '', 'dinakaransam1999@gmail.com', '2001-11-01', 22, '3', '2', 'Dinakaran', 'Farmer', 18000.00, 1, 0.00, 20000.00, 'Thayamangalma,Sivaganga 630709', 'Keelkattalai,Chennai 600711', '2406150016', '', '1', 'upload_files/candidate_tracker/55539926420_SUNDAR_DEV (1).pdf', NULL, '1', '2024-06-15', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-15 05:34:17', 112, '2024-06-15 05:59:02', 0, NULL, 1),
(19704, 'Priyanka K', '6', '9150847464', '9962907131', 'Priyanka200409@gmail.com', '2004-01-09', 20, '2', '2', 'Karthikeyan p', 'Daily wages', 13000.00, 0, 0.00, 15000.00, '218/100b varadharajan street,kaladipet,chennai 19', '218/100b Varadharajan Street,kaladipet chennai-19', '2406150017', '42', '1', 'upload_files/candidate_tracker/22701006508_CV_2024061311402936.pdf', NULL, '1', '2024-06-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-15 05:39:02', 112, '2024-06-15 03:48:47', 0, NULL, 1),
(19705, 'Sabitha. S', '6', '8667376806', '', 'sabithasweetgood12@gmail.com', '2003-12-31', 20, '2', '2', 'Sankar. P', 'Daily wages', 13000.00, 1, 0.00, 15000.00, '26 munusamy street Chinnasekkadu, manali chennai', '26 Munusamy Street Chinnasekkadu, Manali Chennai', '2406150018', '42', '1', 'upload_files/candidate_tracker/8317382439_s. sabitha resume (1).pdf', NULL, '1', '2024-06-15', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'over thinking', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-15 05:40:34', 60, '2024-06-15 07:43:42', 0, NULL, 1),
(19706, 'Sharmila.R', '6', '7305436964', '9791609553', 'rsharmi6964@gmail.com', '2003-10-24', 20, '2', '2', 'Ramesh N', 'Daily wages', 15000.00, 1, 0.00, 15000.00, '102a/145,Puchammal Street,Tondiarpet,Chennai-81', '102a/145,Puchammal Street,Tondiarpet,Chennai-81', '2406150019', '42', '1', 'upload_files/candidate_tracker/94631859949_CV_2024061311410142.pdf', NULL, '1', '2024-06-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-15 05:40:39', 112, '2024-06-15 03:48:10', 0, NULL, 1),
(19707, 'Karthick', '6', '8489631569', '', 'gk.karthick8489@gmail.com', '2002-11-21', 21, '2', '2', 'Govindharaj', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Guindy', '2406150020', '50', '1', 'upload_files/candidate_tracker/60244835341_Karthick G.pdf', NULL, '1', '2024-06-15', 0, '', '3', '59', '2024-06-19', 192000.00, '', '6', '2024-08-20', '2', 'Selected for RE Role Need to analyse and confirm in 7 days training can give a try for our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '2024-06-19', 1, '2024-06-15 05:46:50', 60, '2024-06-19 10:11:19', 0, NULL, 1),
(19708, 'Shalini', '6', '9150265896', '', 'shalinichampion1@gmail.com', '1996-08-01', 27, '2', '2', 'Tamilarasan', 'Candidate', 70000.00, 1, 16000.00, 18000.00, 'Chennai', 'Chennai', '2406150021', '50', '2', 'upload_files/candidate_tracker/16514227136_shaliniT RESUMEup.pdf', NULL, '1', '2024-06-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-15 05:47:18', 112, '2024-06-15 03:49:37', 0, NULL, 1),
(19709, 'Monisha', '6', '9514814453', '9840477189', 'kavimoni1705@gmail.com', '2000-05-17', 24, '2', '1', 'Manikandan', 'Delivery man', 30000.00, 1, 16000.00, 18000.00, 'Vyasarpadi', 'Vyasarpadi', '2406150022', '50', '2', 'upload_files/candidate_tracker/88924111987_Resume Monisha.pdf', NULL, '1', '2024-06-15', 30, '', '3', '59', '2024-06-19', 198000.00, '', '1', '1970-01-01', '2', 'Selected for RE Role Need to analyse and confirm in the training period', '5', '1', '1', '1', '8', '', '2', '2024-06-17', '2', '3', '', '', '', '', '55645', '5151', '2024-06-24', 1, '2024-06-15 06:12:16', 60, '2024-06-24 07:34:05', 0, NULL, 1),
(19710, '', '0', '9884856676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406150023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-15 06:14:38', 0, NULL, 0, NULL, 1),
(19711, 'Reegan s', '6', '7200756972', '8111042772', 'reegans1996@gmail.com', '1996-05-12', 28, '2', '2', 'Subramani', 'Farmer', 200000.00, 1, 0.00, 19000.00, 'Ranipet', 'Ayynavaram', '2406150024', '50', '1', 'upload_files/candidate_tracker/79722365462_Reegan_Resume.pdf', NULL, '1', '2024-06-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-15 06:16:25', 112, '2024-06-15 03:50:29', 0, NULL, 1),
(19712, 'Vishva', '5', '8111031176', '', 'vishvasanthosham@gmail.com', '2001-12-02', 22, '2', '2', 'Santhosh', 'Private limited', 12.00, 1, 0.00, 25000.00, 'Thiruvallur', 'Thiruvallur', '2406150025', '50', '1', 'upload_files/candidate_tracker/39004047764_Vishva santhosham resume.pdf', NULL, '1', '2024-06-15', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not ok', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-06-15 06:20:52', 60, '2024-06-15 07:44:57', 0, NULL, 1),
(19713, 'Yogeshwaran', '6', '7397278926', '', 'waranyogesh225@gmail.com', '2003-07-11', 20, '1', '2', 'Gnanasambandam', 'wage worker', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2406150026', '', '1', 'upload_files/candidate_tracker/20290341311_Yogeshwaran-FlowCV-Resume-20240615.pdf', NULL, '1', '2024-06-15', 0, '77901', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'slurred speech and low voice so not fit for sales and out side call also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-15 06:41:00', 60, '2024-06-15 07:45:21', 0, NULL, 1),
(19714, 'Anand', '6', '7305856816', '', 'anandlali1912@gmail.com', '2000-12-19', 23, '1', '2', 'Elumalai', 'driver', 2000.00, 1, 15500.00, 18000.00, 'Chennai', 'Chennai', '2406150027', '', '2', 'upload_files/candidate_tracker/39728869884_anandh resume.pdf', NULL, '1', '2024-06-15', 13, '77901', '3', '59', '2024-07-01', 204000.00, '', '2', '1970-01-01', '2', 'Selected for RE Role Focusing for IT positions Sustainability doubts in our role let us try', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '2024-07-01', 1, '2024-06-15 06:51:35', 60, '2024-07-06 10:08:43', 0, NULL, 1),
(19715, 'S.lalitha', '6', '9840587359', '6380601599', 'Lalishankar2002@gmail.com', '2002-05-11', 22, '3', '2', 'Shankar', 'Cooli', 55000.00, 2, 0.00, 20000.00, '1/3appa Samy street, sevenwells, chennai-1', '1/3 appa Samy street, sevenwells,Chennai-1', '2406150028', '', '1', 'upload_files/candidate_tracker/29333894372_Lalitha_Resume.pdf', NULL, '1', '2024-06-15', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'low voice , no skill, high expectation\nso, not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-15 07:19:31', 60, '2024-06-15 07:46:12', 0, NULL, 1),
(19716, 'Srinivasan R', '6', '9952951042', '', 'srinismart6@gmail.com', '1999-06-18', 24, '2', '2', 'Ramamoorthy', 'Daily wages', 10.00, 2, 0.00, 16000.00, 'Chennai', 'Villivakkam chennai', '2406150029', '50', '1', 'upload_files/candidate_tracker/43163288616_Srini Resume.pdf', NULL, '1', '2024-06-15', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Preformance And Communication is little bit only good, but his voice is very low pitch', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-15 07:29:37', 60, '2024-06-15 07:46:30', 0, NULL, 1),
(19717, 'punitha g', '5', '7010866524', '', 'punithaganesan11@gmail.com', '2003-04-24', 21, '2', '2', 'ganesan p', 'daily wages', 20000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2406150030', '42', '2', 'upload_files/candidate_tracker/66744902632_punitha.pdf', NULL, '1', '2024-06-15', 0, '', '3', '59', '2024-06-19', 325000.00, '', '3', '2024-10-30', '2', 'Selected for Santhosh Team RM Role Need to analyse in 7 days and confirm can be trained', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55567', '55557', '2024-06-19', 1, '2024-06-15 08:02:16', 60, '2024-06-19 11:19:13', 0, NULL, 1),
(19718, 'Akash', '6', '8939267414', '9514365260', 'Akash1022k@gmail.com', '2000-02-10', 24, '2', '2', 'Selvaraj', 'Driver', 30000.00, 3, 0.00, 15000.00, 'Poonamallee', 'Poonamallee', '2406150031', '50', '1', 'upload_files/candidate_tracker/71675217044_CV_2024030606273248.pdf', NULL, '1', '2024-06-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-15 08:12:47', 104, '2024-06-19 05:45:25', 0, NULL, 1),
(19719, 'Sundar Raju', '7', '8608758019', '', 'Raj.sundartom@gmail.com', '1999-08-30', 24, '2', '2', 'Raju', 'Farmer', 13000.00, 2, 0.00, 20000.00, 'Vikravandi, villupuram', 'Triplicane', '2406150032', '1', '2', 'upload_files/candidate_tracker/14420075761_DOC-20240611-WA0012.pdf', NULL, '1', '2024-06-17', 0, '', '3', '59', '2024-07-26', 216000.00, '', '5', '1970-01-01', '2', 'Selected for MF in staff non stat role final round interviewed by Gokul', '7', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', 'H1017', '', '55566', '5151', '2024-07-01', 1, '2024-06-15 11:12:42', 60, '2024-06-20 06:33:36', 0, NULL, 1),
(19720, 'Suresh Kumar', '5', '8489044470', '9994783174', 'sureshvenkatakv1997@gmail.com', '1997-07-26', 26, '2', '2', 'Gomathi', 'Home maker', 20000.00, 1, 0.00, 25000.00, 'Kanchipuram', 'Kanchipuram', '2406170001', '1', '1', 'upload_files/candidate_tracker/32437275400_RESUME (2).pdf', NULL, '1', '2024-06-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Kindly Reschedule', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-06-17 02:25:16', 104, '2024-07-22 07:11:51', 0, NULL, 1),
(19721, 'Roopesh R S', '6', '8248902675', '', 'rsroopesh123@gmail.com', '2002-04-27', 22, '2', '2', 'R Saravanan', 'Senior craftsmen MCM', 30000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2406170002', '50', '1', 'upload_files/candidate_tracker/32138141557_CV_2024061011514487.pdf', NULL, '1', '2024-06-17', 0, '', '3', '59', '2024-06-21', 192000.00, '', '1', '1970-01-01', '1', 'Selected forRE role Fresher have 3 months AR caller Exp Can give a try  need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2024-06-21', 1, '2024-06-17 04:28:42', 60, '2024-06-21 11:21:33', 0, NULL, 1),
(19722, 'Richard dick', '5', '9962961338', '8925304812', 'richarddick1417@gmail.com', '2000-10-17', 23, '2', '2', 'Elizabeth jesleena', 'House wife', 100000.00, 1, 19000.00, 25000.00, 'Chennai', 'Chennai', '2406170003', '50', '2', 'upload_files/candidate_tracker/62456600204_Rd resume.doc', NULL, '1', '2024-06-17', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Jagadeesh team. Ready to Join on Monday. Expected take home is 22k Excluding PF but negotiate the salary .', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-06-17 05:01:34', 60, '2024-06-22 07:14:18', 0, NULL, 1),
(19723, 'Muthamil Manickam', '6', '9025746511', '', 'muthamil.lv@gmail.com', '2003-09-03', 20, '2', '2', 'Lourdusamy', 'Daily', 10000.00, 1, 0.00, 16000.00, 'Chetpet', 'Chennai', '2406170004', '42', '1', 'upload_files/candidate_tracker/95278098049_Muthamil Manickam L_Resume.pdf', NULL, '1', '2024-06-17', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Banu Mam Rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-17 05:01:54', 112, '2024-06-17 11:46:11', 0, NULL, 1),
(19724, '', '0', '9535006337', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406170005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-17 05:17:13', 0, NULL, 0, NULL, 1),
(19725, 'Poojashri V', '6', '9360008989', '', 'poojashri2408@gmail.com', '2004-08-24', 19, '2', '2', 'Veeramani C', 'Driver', 30000.00, 1, 0.00, 18000.00, 'Tiruchengode, Namakkal', 'Ekkatuthangal', '2406170006', '50', '1', 'upload_files/candidate_tracker/45084122334_poojashri (1).pdf', NULL, '1', '2024-06-17', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is not willing to work after 6', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-17 05:18:36', 112, '2024-06-17 02:52:29', 0, NULL, 1),
(19726, 'SANGAVI B', '6', '9003168699', '8778605754', 'sangavi2003b@gmail.com', '2003-11-04', 20, '2', '2', 'BOOPALAGAN R', 'CAR DRIVER', 700000.00, 1, 0.00, 15.00, 'F2,Anand square, west Mambalam, chennai 600015', 'F2,Anand square, west Mambalam, chennai 600015', '2406170007', '50', '1', 'upload_files/candidate_tracker/83556879466_Sangavi CV(1).pdf', NULL, '1', '2024-06-17', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very low voice and low confidence level.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-17 05:43:47', 104, '2024-06-19 05:45:41', 0, NULL, 1),
(19727, 'Sandhiya.v', '6', '8610250610', '7598719035', 'sandhiyasandhiya54803@gmail.com', '2003-08-12', 20, '2', '2', 'Vimalw', 'Cooli', 72000.00, 2, 0.00, 16.00, '85 solaiyamman Kovil Street chinnandimadam', 'Kodungaiyur', '2406170008', '50', '1', 'upload_files/candidate_tracker/10570113195_c1d77c63-0f3b-4426-8b63-1eb71aa0d221.docx', NULL, '1', '2024-06-17', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candiate performance is little bit not good also her communicating slang is like little bit locally', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-17 05:44:30', 112, '2024-06-17 12:11:34', 0, NULL, 1),
(19728, 'Monika.S', '6', '9171755971', '', 'monikasuresh08@gmail.com', '2003-08-28', 20, '1', '2', 'Suresh.B', 'Painter', 72000.00, 2, 0.00, 16000.00, 'No:25 E block 1st floor Nochinagar', 'No:25 E Block 1st floor Nochinagar', '2406170009', '', '1', 'upload_files/candidate_tracker/6401886648_Pdf Resume.pdf', NULL, '1', '2024-06-17', 0, '77840', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication No Very slow will not handle our work pressure not suitable for our roles will not sustain', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-17 06:02:30', 112, '2024-06-17 12:16:13', 0, NULL, 1),
(19729, 'Mahadevaprasad N L', '6', '9611072529', '7625029482', 'prasad425262@gmail.com', '2001-01-16', 23, '2', '2', 'M Leelamurthy', 'Former', 5000.00, 0, 0.00, 3.50, 'Mysuru nanjangudu', 'Bengaluru', '2406170010', '1', '1', 'upload_files/candidate_tracker/85271237192_MP RESUME.docx', NULL, '1', '2024-06-19', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of knowledge and salary expectation is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-06-17 06:12:05', 126, '2024-06-21 04:12:39', 0, NULL, 1),
(19730, 'Sneka d', '6', '8248901071', '7092187856', 'Snekadeva30cct@gamil.com', '2003-10-18', 20, '2', '2', 'Devaraj', 'Cooli', 20000.00, 1, 0.00, 15000.00, 'Kodungaiyur', 'Kodungaiyur', '2406170011', '50', '1', 'upload_files/candidate_tracker/5065128750_DocScanner 17 Jun 2024 12-02(1).pdf', NULL, '1', '2024-06-17', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate only looking near by office , previous office distance reason to relaving the job , that company near by cafs , so she will not work for this company, so not fit foe this comapny and voice also not good ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-17 06:27:47', 112, '2024-06-17 12:17:39', 0, NULL, 1),
(19731, 'Pooja Lakshmi K', '4', '8050934537', '6361973585', 'Poojalakshmi198@gmail.com', '2001-02-28', 23, '3', '1', 'Arun M', 'Business', 50000.00, 0, 38000.00, 38000.00, 'Bommanahalli', 'Bommanahalli', '2406170012', '', '2', 'upload_files/candidate_tracker/66341729565_PDF 20240313 19.50.51.pdf', NULL, '1', '2024-06-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-17 06:50:33', 1, '2024-06-17 07:06:02', 0, NULL, 1),
(19732, 'Anushka Gupta', '6', '7695969078', '', 'anuskaanuanu176@gmail.com', '2003-10-01', 20, '1', '2', 'Sunil kumar Gupta', 'Security guard', 17000.00, 2, 0.00, 16000.00, 'No.80 skp puram green ways road', 'No.80 skp puram green ways road', '2406170013', '', '1', 'upload_files/candidate_tracker/24467227848_Pdf Resume.pdf', NULL, '1', '2024-06-17', 0, '77840', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected.. CTC 16 k . She has good communication skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-17 07:47:53', 112, '2024-06-17 04:38:29', 0, NULL, 1),
(19733, 'Shreyas', '6', '7022687095', '9964496939', 'shreyasgowda7867@gmail.com', '2001-04-17', 23, '2', '2', 'Muniyappa', 'MA', 12000.00, 1, 0.00, 100000.00, 'Attibele', 'Electronic city', '2406170014', '1', '1', 'upload_files/candidate_tracker/30863495305_shreyas_resume2 17 0.pdf', NULL, '1', '2024-06-19', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-06-17 09:28:17', 126, '2024-06-21 04:13:19', 0, NULL, 1),
(19734, 'K.Sandhiya Dharshini', '6', '8610054060', '7338726771', 'sandhiyasandhu27@gmail.com', '2000-03-08', 24, '2', '2', 'B. Kanniappan', 'Auto driver', 30000.00, 2, 17500.00, 25000.00, 'Chennai', 'Chennai', '2406170015', '50', '2', 'upload_files/candidate_tracker/38178705730_new file resume .pdf', NULL, '1', '2024-06-17', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate performance is ok but 50/50 profile need to check in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-17 09:37:30', 112, '2024-06-17 03:57:43', 0, NULL, 1),
(19735, 'Anbarasan Balamurugan', '22', '9345615220', '8110910092', 'rasananbu622@gmail.com', '2002-10-24', 21, '3', '2', 'Balamurugan', 'Business', 300000.00, 1, 0.00, 18000.00, 'Madurai', 'Madurai', '2406170016', '', '1', 'upload_files/candidate_tracker/14150562428_Untitled document-1.pdf', NULL, '1', '2024-06-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-17 09:47:34', 1, '2024-06-17 09:55:20', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19736, 'Dhivya M', '5', '9894482905', '9789723905', '21ucav045@vicas.org', '2005-02-02', 19, '1', '2', 'Murugan D', 'Own Business', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2406180001', '', '1', 'upload_files/candidate_tracker/34273391478_CV_2023113019461666.pdf', NULL, '1', '2024-06-18', 0, '77913', '3', '59', '2024-06-24', 168000.00, '', '5', '1970-01-01', '2', 'Selected for RE Role Team reference Fresher IT Background education open for telesales Need to analyse in 7 days', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-06-24', 1, '2024-06-18 04:28:57', 60, '2024-06-20 06:35:05', 0, NULL, 1),
(19737, 'A.Arun Kumar', '5', '9962127416', '', 'as.arunshady@gmail.com', '1997-10-10', 26, '2', '2', 'A.Jaya lakshmi', 'Housewife', 200000.00, 1, 17000.00, 25000.00, 'Chennai', 'Vadapalani', '2406180002', '50', '2', 'upload_files/candidate_tracker/10726289562_Arun kumar.pdf', NULL, '1', '2024-06-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'didnxquott join', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-06-18 05:24:49', 112, '2024-06-18 04:18:17', 0, NULL, 1),
(19738, 'K.muthu', '6', '7397377543', '9710220349', 'muthukumar17112003@gmail.com', '2003-11-17', 20, '2', '2', 'Kumar s', 'Automan', 72000.00, 1, 0.00, 19000.00, 'Chennai', 'Chennai', '2406180003', '42', '1', 'upload_files/candidate_tracker/56931006278_resume .pdf', NULL, '1', '2024-06-18', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable sales ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-18 05:24:52', 112, '2024-06-18 04:36:39', 0, NULL, 1),
(19739, 'Kishore U', '6', '9940531466', '9884678392', 'kishoreuprofessional@gmail.com', '2000-03-02', 24, '2', '2', 'Udaya chandrika', 'Housewife', 20000.00, 1, 0.00, 15000.00, 'Kannan colony 4th street Alandur', 'No. 46 belvader lane new farrance road', '2406180004', '50', '1', 'upload_files/candidate_tracker/78264559336_Kishore_resume-1 (1).pdf', NULL, '1', '2024-06-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-18 05:30:48', 112, '2024-06-18 04:04:21', 0, NULL, 1),
(19740, 'Akash', '6', '9843491564', '9487250502', 'akashkennedy1@gmail.com', '2005-07-19', 18, '2', '2', 'Kennedy', 'Mason', 20000.00, 2, 0.00, 15000.00, 'Kanyakumari', 'Chennai', '2406180005', '50', '1', 'upload_files/candidate_tracker/98493675525_AkashKennedy-Resume.pdf', NULL, '1', '2024-06-18', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice  is not good and very indifference so  not fit or sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-18 05:31:02', 112, '2024-06-18 03:46:57', 0, NULL, 1),
(19741, 'Sunitha.E', '20', '6381904713', '9087132371', 'elumalaisunitha72@gmail.com', '2004-01-10', 20, '2', '2', 'Elumalai.A.M', 'Bus conductor', 15.00, 2, 0.00, 18.00, 'Chennai', 'Chennai', '2406180006', '50', '1', 'upload_files/candidate_tracker/17980182755_SUNITHA.E RESUME.pdf', NULL, '1', '2024-06-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected excepted high salary ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-18 05:38:09', 112, '2024-06-18 04:02:13', 0, NULL, 1),
(19742, 'S. Ilakiya', '6', '8248347927', '', 'ilakiyaselvaraj19@gmail.com', '2003-06-17', 21, '1', '2', 'S. Selvaraj', 'Plumber', 11000.00, 1, 0.00, 18000.00, '40/6 Jaganatha Puram 1st Street Chetpet Chennai 31', '40/6 Jaganatha Puram 1st Street Chetpet Chennai 31', '2406180007', '', '1', 'upload_files/candidate_tracker/70599762070_ilakiya (1).pdf', NULL, '1', '2024-06-18', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Performance is not like good ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-18 05:38:18', 112, '2024-06-18 11:28:59', 0, NULL, 1),
(19743, 'venkatesan', '6', '9790778992', '', 'venkatrpraman11@gmail.com', '1999-12-11', 24, '2', '2', 'raman p', 'business', 20000.00, 1, 16200.00, 18000.00, 'chenn', 'henn', '2406180008', '50', '2', 'upload_files/candidate_tracker/50946078801_RESUME.pdf', NULL, '1', '2024-06-18', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'waste of time', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-18 05:40:45', 112, '2024-06-18 04:14:39', 0, NULL, 1),
(19744, 'Sidhanth', '6', '6383586375', '9962438237', 'alsowhat123@gmail.com', '2003-02-23', 21, '2', '1', 'Dinakaran', 'Cab driver', 200000.00, 1, 0.00, 14000.00, '35/5 sabapathi cross street ayanavarm', '35/5 sabapathi cross street ayanavaram', '2406180009', '50', '1', 'upload_files/candidate_tracker/33954907694_SIDHANTH RESUME 2023.docx', NULL, '1', '2024-06-18', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-18 05:41:42', 112, '2024-06-18 04:08:47', 0, NULL, 1),
(19745, 'J.kishore', '6', '9445914613', '9884716702', 'Jayarajkishore12345@gmail.com', '2002-09-28', 21, '2', '2', 'Jayaraj', 'Auto driver', 20000.00, 2, 0.00, 17000.00, 'Ayanavram', 'Ayanavaram', '2406180010', '50', '1', 'upload_files/candidate_tracker/10238240553_Kishore final-1.pdf', NULL, '1', '2024-06-18', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking accounts field\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-18 05:42:45', 112, '2024-06-18 04:21:11', 0, NULL, 1),
(19746, 'Eswar kumar', '6', '9841002099', '', 'Eswark157@gmail.com', '2000-11-19', 23, '2', '2', 'Kumar v', 'MBA( hR & marketing management )', 700000.00, 2, 13000.00, 18000.00, 'Keelkattalai', 'Keelkattalai', '2406180011', '50', '2', 'upload_files/candidate_tracker/94490786611_ESWAR_CV.pdf', NULL, '1', '2024-06-18', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interviewed by banu Mam, As per her information candidate communication adn performance is not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-18 05:43:12', 112, '2024-06-18 04:12:10', 0, NULL, 1),
(19747, 'B K Kanishka', '6', '9150551164', '8056032904', 'kanikanishka278@gmail.com', '2003-11-02', 20, '2', '2', 'K.Bhavani', 'Garments company', 18000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2406180012', '50', '1', 'upload_files/candidate_tracker/67106473799_KANISHKA_CV-63386f7da3094610dbeeceaa8e75aedd.pdf', NULL, '1', '2024-06-18', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not even opening her mouth', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-18 05:43:55', 112, '2024-06-18 03:55:53', 0, NULL, 1),
(19748, '', '0', '8144077585', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406180013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-18 05:52:49', 0, NULL, 0, NULL, 1),
(19749, 'S.Varshini', '6', '8754606945', '', 'SivaVarshini600@gmail.com', '2004-06-30', 19, '2', '2', 'Sivakumar', 'Farmer', 16000.00, 1, 0.00, 20000.00, 'Madambakkam', 'Madambakkam', '2406180014', '50', '1', 'upload_files/candidate_tracker/94590156936_VARSHINI RESUME (3).pdf', NULL, '1', '2024-06-18', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication is ok but  her slag is Not legit', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-18 05:54:44', 112, '2024-06-18 04:05:44', 0, NULL, 1),
(19750, 'Shabrin. R', '6', '7358751635', '8925737509', 'Shabrin135@gmail.com', '2004-01-07', 20, '1', '2', 'Rahamath ali. N', 'Leather sales', 20000.00, 1, 0.00, 16000.00, 'No 35/39 1st line bazaar road mylapore chennai', 'Mylapore', '2406180015', '', '1', 'upload_files/candidate_tracker/50630161461_shabrin-1.pdf', NULL, '1', '2024-06-18', 0, '77840', '3', '59', '2024-06-19', 180000.00, '', '1', '1970-01-01', '2', 'Selected for RE role 5050 Can give a try need to analyse in 7 days', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-06-19', 1, '2024-06-18 06:11:31', 60, '2024-06-19 11:51:24', 0, NULL, 1),
(19751, 'Gowtham', '6', '9342897317', '', 'gowthamsri1143@gmail.com', '2003-04-11', 21, '2', '2', 'Srinivasan', 'Driver', 15000.00, 1, 0.00, 18000.00, 'Chennai old washermanpet', 'Chennai old washermanpet', '2406180016', '50', '1', 'upload_files/candidate_tracker/35832372522_2 ALL gowtham.pdf', NULL, '3', '2024-06-18', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication not good.unfit for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-18 06:16:20', 112, '2024-06-18 04:14:00', 0, NULL, 1),
(19752, 'Dillibabu', '6', '7200855887', '9025712378', 'dillibabu2028@gmail.com', '2003-01-20', 21, '2', '2', 'Devandran', 'Car driver', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2406180017', '50', '1', 'upload_files/candidate_tracker/1712886821_DILLIBABU-D-FlowCV-Resume-20240304.pdf', NULL, '1', '2024-06-18', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-18 06:21:57', 112, '2024-06-18 04:15:39', 0, NULL, 1),
(19753, 'Durga', '6', '9344916119', '7339231406', 'durgababu2821@gmail.com', '2002-12-28', 21, '2', '2', 'Durga', 'Colli', 13000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2406180018', '50', '1', 'upload_files/candidate_tracker/64602522288_Image_to_PDF_20240616_123752.pdf', NULL, '1', '2024-06-18', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-18 06:25:01', 112, '2024-06-18 04:16:18', 0, NULL, 1),
(19754, 'akash g', '6', '9176317210', '9176104313', 'mgakash555@gmail.com', '2002-11-01', 21, '2', '2', 'gnanasekar m', 'auto driver', 180000.00, 1, 0.00, 15.00, 'chennai kodungaiyur', 'chennai kodungaiyure', '2406180019', '50', '1', 'upload_files/candidate_tracker/31864022222_CV_202406051407584.pdf', NULL, '1', '2024-06-18', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-18 06:36:44', 112, '2024-06-18 03:47:54', 0, NULL, 1),
(19755, 'Bharath', '6', '9342064524', '', 'bharath93420@gmail.com', '2003-03-25', 21, '2', '2', 'Suresh a', 'Daily wages', 80000.00, 2, 0.00, 18000.00, 'Thiyagarayapuram 3rd Street tollgate', 'Thiyagarayapuram 3rd Street Tollgate', '2406180020', '50', '1', 'upload_files/candidate_tracker/33094230118_bharath s.pdf', NULL, '1', '2024-06-18', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-18 06:38:33', 112, '2024-06-18 04:07:00', 0, NULL, 1),
(19756, 'Kishore sundar.T', '5', '9500094931', '9080280910', 'kishoresundar668@gmail.com', '1999-03-15', 25, '1', '1', 'Thangaraj', 'BSNL', 50000.00, 1, 33000.00, 42000.00, 'Chennai', 'Chennai', '2406180021', '', '2', 'upload_files/candidate_tracker/18563811224_Kishore Sundar updated resume_06_06-1.pdf', NULL, '1', '2024-06-18', 10, '55565', '3', '59', '2024-06-24', 385000.00, '', '5', '1970-01-01', '1', 'selected for RM Role employed earlier with us for a day have exp in field sales can give a try can be trained in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '2024-07-01', 1, '2024-06-18 07:04:47', 60, '2024-06-24 06:40:52', 0, NULL, 1),
(19757, 'Mukesh m', '6', '7449259214', '8939717694', '21bcomg032mukesh@gmail.com', '2003-11-02', 20, '2', '2', 'Manikandan', 'Tourister', 20000.00, 2, 0.00, 15000.00, 'New washermen pet', 'New washermenpet', '2406180022', '42', '1', 'upload_files/candidate_tracker/6359547888_Document from Mukesh.pdf', NULL, '3', '2024-06-18', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-18 07:32:14', 112, '2024-06-18 04:09:59', 0, NULL, 1),
(19758, 'G.Levin akash', '6', '8680842154', '9790842154', 'levinakash787@gmail.com', '2003-10-31', 20, '2', '2', 'Gnana prakash & stellmary', 'Tailor', 20000.00, 1, 0.00, 16000.00, 'Tollgate', 'Tollgate', '2406180023', '42', '1', 'upload_files/candidate_tracker/10383794468_Resume_Levin_Format6-2.pdf', NULL, '1', '2024-06-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-18 07:32:22', 112, '2024-06-18 04:03:39', 0, NULL, 1),
(19759, 'Santhosh Raj', '6', '7092337637', '9092751008', 'santhoshraj1311@gmail.com', '2004-06-11', 20, '3', '2', 'Mohan', 'Vulding', 20000.00, 1, 0.00, 16000.00, 'No 13 indra nagar 3rd street ennore chennai 57', 'Ennore', '2406180024', '', '1', 'upload_files/candidate_tracker/45843091179_download (1).pdf', NULL, '1', '2024-06-18', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is previous exp is partime  work for gaming tracking candidate is very long distance a dno bike also , and not go for out side call ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-18 07:39:42', 112, '2024-06-18 03:45:50', 0, NULL, 1),
(19760, 'I Sagaya Dsouza', '6', '9342601577', '6379217427', 'dsouza0528@gmail.com', '2003-05-11', 21, '3', '2', 'M Irudayamani Father', 'Retirement person', 14000.00, 1, 0.00, 16000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2406180025', '', '1', 'upload_files/candidate_tracker/25168046036_Professional Modern CV Resume_20240610_182643_0000.pdf', NULL, '1', '2024-06-18', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate just looking for jo mainly looking fr it and pervious exp is study time work for gaming tracking and voice also very local voice and dress cod also so not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-18 07:39:44', 112, '2024-06-18 04:01:01', 0, NULL, 1),
(19761, 'Vijayalakshmi', '6', '7397316956', '8122869685', 'viji26203@gmail.com', '2003-10-14', 20, '2', '2', 'Ezhilarasan', 'Machanic', 20000.00, 29, 0.00, 18000.00, '2/825, Ranganathan puram,Rajaram Street', 'Medavakkam', '2406180026', '42', '1', 'upload_files/candidate_tracker/90449434613_viji resume.pdf', NULL, '1', '2024-06-18', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long distance. ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-18 08:03:49', 112, '2024-06-18 04:29:31', 0, NULL, 1),
(19762, 'Rubini V', '6', '7200102894', '8825927267', 'Viji26293@gmail.com', '2003-09-10', 20, '2', '2', 'Karpagam', 'House keeping', 20000.00, 1, 0.00, 18000.00, 'No 65, kalaivanar street, medavakkam', 'No 65, kalaivanar street, medavakkam', '2406180027', '42', '1', 'upload_files/candidate_tracker/59718230282_Rubini_1707759499901 (2).pdf', NULL, '1', '2024-06-18', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested sales job', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-18 08:04:30', 112, '2024-06-18 04:13:20', 0, NULL, 1),
(19763, 'Shri Mahalakshmi', '5', '9159888545', '9003441308', 'mahaba23802@gmail.com', '2002-08-23', 21, '2', '2', 'Chandru Deepa', 'Tailoring', 20.00, 1, 0.00, 15.00, 'Jayankondam', 'Jayankondam', '2406180028', '1', '1', 'upload_files/candidate_tracker/49220540311_Adobe Scan 27-Dec-2023 (1).pdf', NULL, '1', '2024-06-19', 0, '', '3', '59', '2024-07-02', 225000.00, '', NULL, '2024-09-30', '2', 'Selected for RM Role Fresher for our roles Need to analyse in 7 days and confirm Pressure handling doubts a lot sustanability need to check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55634', '55557', '2024-07-05', 1, '2024-06-18 01:40:55', 60, '2024-07-05 10:41:56', 0, NULL, 1),
(19764, 'Govindaraju D. S', '5', '9148744608', '7022687404', 'rajudsgovinda@gmail.com', '2000-07-07', 23, '2', '2', 'Srinivas', 'Wo', 10000.00, 0, 3.00, 7.00, 'DODDSHETTIKERE, AT POST, MAYASANDRA HOBLI', 'CHAMRAJAPETE, BENGLORE', '2406190001', '1', '2', 'upload_files/candidate_tracker/7634481133_Govindaraju D S Resume (1).docx', NULL, '1', '2024-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for the salary his minimum exp is 4.5 LPA 1yrs exp not in a relevant domain will not sustain in our roles', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-06-19 02:48:47', 60, '2024-06-21 05:35:06', 0, NULL, 1),
(19765, 'Vinayaga Murthi', '5', '6369318868', '7401379688', 'vinayagamurthi90s@gmail.com', '1998-03-05', 26, '2', '2', 'selvaraj', 'gold simth', 60000.00, 1, 25000.00, 28000.00, 'chennai', 'chennai', '2406190002', '1', '2', 'upload_files/candidate_tracker/66797804485_resume 2024.pdf', NULL, '1', '2024-06-19', 15, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not having convincing skill, not having proper experience also worked in 2 companies just for 6 months', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', '55650', '55560', '1970-01-01', 1, '2024-06-19 04:08:41', 104, '2024-06-19 04:37:03', 0, NULL, 1),
(19766, 'Asif Farook', '6', '7338752723', '', 'farookasif19016@gmail.com', '2002-12-25', 0, '2', '2', 'Khaja mohideen', 'Business', 30000.00, 1, 0.00, 250000.00, 'No. 12/138 Nethaji Nagar Tondiarpet Chennai 81', 'No. 12/138 Nethaji Nagar Tondiarpet Chennai 81', '2406190003', '50', '1', 'upload_files/candidate_tracker/71091474984_Asif Resume 2024.pdf', NULL, '1', '2024-06-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-19 04:33:50', 112, '2024-06-19 11:55:45', 0, NULL, 1),
(19767, 'Oviya. C', '6', '8838947446', '9092301898', 'oviyaajith21@gmail.com', '2004-06-16', 20, '2', '1', 'Ajith. G', 'Operating work', 15000.00, 1, 0.00, 16000.00, 'No. 50, thalankuppam, ennore, chennai -57.', 'No. 50,Thalankuppam, Ennore Chennai -57.', '2406190004', '50', '1', 'upload_files/candidate_tracker/42225960612_Document oviya resume.docx', NULL, '1', '2024-06-19', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication good and everythink is fine.she recently married but she before that said unmarried.reject the profile, sustainability issues', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-19 04:42:35', 112, '2024-06-19 11:42:15', 0, NULL, 1),
(19768, 'K.Monisha', '6', '7200002755', '9840987330', 'monishakala2004@gmail.com', '2004-03-06', 20, '1', '2', 'D.Kumar', 'Auto driver', 96000.00, 1, 0.00, 17000.00, '26/1 cross road Newwashermenpet ch-81', '26/1 cross road Newwashermenpet ch-81', '2406190005', '', '1', 'upload_files/candidate_tracker/8441496965_monisha resume.docx', NULL, '1', '2024-06-19', 0, '77840', '3', '59', '2024-06-26', 168000.00, '', '5', '1970-01-01', '2', 'selected for RE role Need to analyse in 7 days can be trained internal team reference', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2024-06-26', 1, '2024-06-19 05:00:55', 60, '2024-06-20 07:11:03', 0, NULL, 1),
(19769, 'Yashra Fathima', '6', '9150221355', '9003052486', 'yashrafathima0502@gmail.com', '2003-10-02', 20, '2', '2', 'M.talib ahamed', 'Self employed', 72000.00, 1, 0.00, 15000.00, 'No.31 muniappa street, kondithope, Chennai 01', 'No.31 muniappa street, kondithope, Chennai 01', '2406190006', '50', '1', 'upload_files/candidate_tracker/36625374759_RESUME.pdf', NULL, '1', '2024-06-19', 0, '', '3', '59', '2024-06-24', 168000.00, '', '2', '1970-01-01', '2', 'Fresher Taking tutions and she needs 2 days time to confirm  sustainability doubts need to check in 7 days analysis', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2024-06-24', 1, '2024-06-19 05:02:49', 60, '2024-07-06 10:09:19', 0, NULL, 1),
(19770, 'Praveen Kumar k.s', '6', '9840184461', '8248660539', 'prawin.ks2003@gmail.com', '2003-08-02', 20, '2', '2', 'Kannan', 'TVS oil company executive', 30000.00, 1, 0.00, 15000.00, 'No:160/29 2nd Street sastri nagar vyasarpadi', 'No-158 3rd Street SA colony vyasarpadi', '2406190007', '50', '1', 'upload_files/candidate_tracker/52188916410_pdf_converter_202406194419.pdf', NULL, '1', '2024-06-19', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Freshers salary provide,,,  7 days training will analysis ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-19 05:06:14', 112, '2024-06-19 12:13:24', 0, NULL, 1),
(19771, 'M.HASAN', '6', '9884481313', '9080040073', 'hasanm98844@gmail.com', '2004-05-21', 20, '2', '2', 'H.M. MANSOOR ALI', 'SALES MARKETING', 30000.00, 1, 0.00, 15000.00, '2/245 ponniyamman koil Street Mathur', 'Mathur MMDA Chennai', '2406190008', '50', '1', 'upload_files/candidate_tracker/90519566981_M . HASAN ( RESUME ).pdf', NULL, '1', '2024-06-19', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No proper communication', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-19 05:06:50', 112, '2024-06-19 11:39:16', 0, NULL, 1),
(19772, 'Surendar', '23', '9789960354', '', 'Surendarc0354@gmail.com', '2000-12-08', 23, '1', '2', 'Chandran', 'Father', 15000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2406190009', '', '1', 'upload_files/candidate_tracker/79654372745_Resume_compressed.pdf', NULL, '1', '2024-06-19', 0, 'Affrin', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-19 05:27:13', 104, '2024-06-19 04:31:14', 0, NULL, 1),
(19773, 'Sibiraj', '6', '9361784943', '', 'a.sibirajthevan06@gmail.com', '2004-06-11', 20, '2', '2', 'Ayyappan', 'Farmer', 15000.00, 0, 0.00, 16000.00, 'Mayiladuthurai', 'Chennai padi', '2406190010', '50', '1', 'upload_files/candidate_tracker/63631657535_SIBIRAJREALRESUME_240222_202536.pdf', NULL, '1', '2024-06-19', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidat mainly looking for iT job only just money need to search for sales job but after6 months he wlll go for iT only so not selected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-19 05:28:36', 112, '2024-06-19 11:58:49', 0, NULL, 1),
(19774, 'Sathiriyansiva', '6', '6379737425', '', 'sathiriyansakthi2003@gmail.com', '2003-12-11', 20, '2', '2', 'Siva', 'Mayiladuthurai', 10000.00, 1, 0.00, 16000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2406190011', '50', '1', 'upload_files/candidate_tracker/93100150964_Sathiriyan.resume pdf.pdf', NULL, '1', '2024-06-19', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'just looking for job and it interested ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-19 05:29:01', 112, '2024-06-19 12:20:42', 0, NULL, 1),
(19775, 'V.SAI KUMAR', '6', '7305310716', '9092739094', 'saikumarsiva2002@gmail.com', '2002-02-22', 22, '2', '2', 'V.SIVA PRASAD RAO', 'Coolie', 15000.00, 1, 0.00, 12000.00, '16A/39 Charles Nagar, 38B, Ottavadai Street', '16A/39 Charles Nagar, 38B, Ottavadai Street', '2406190012', '50', '1', 'upload_files/candidate_tracker/99872950233_Sai Kumar CV.pdf', NULL, '1', '2024-06-19', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Performance is little bit Only good but his voice is very low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-19 05:34:43', 104, '2024-06-19 05:16:05', 0, NULL, 1),
(19776, 'Priyadharshini.R', '6', '9150222403', '7397479933', 'Dharshini29priya20@gmail.com', '2004-05-29', 20, '1', '2', 'Raji.c', 'Tailor', 17000.00, 1, 0.00, 18000.00, '50/3 Thandavarayan gramani street,tondairpet', '50/3 Thandavarayan gramani street, tondairpet', '2406190013', '', '1', 'upload_files/candidate_tracker/8197682830_PRIYADHARSHINI_RESUME.pdf', NULL, '1', '2024-06-19', 0, '77840', '3', '59', '2024-06-24', 168000.00, '', '3', '2025-01-09', '2', 'Sustainability doubts a lot much interesed in non voice need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2024-06-24', 1, '2024-06-19 05:45:05', 60, '2024-07-01 06:33:36', 0, NULL, 1),
(19777, 'Unesh M', '6', '9941524477', '9962310582', 'uneshselvi@gmail.com', '2003-12-22', 20, '2', '2', 'Mohan S', 'Branch Collection manager', 300000.00, 1, 0.00, 200000.00, 'No 46 Eraneeshwaran Kovil 3rd cross street Ernavur', 'Chennai', '2406190014', '50', '1', 'upload_files/candidate_tracker/5445820860_Unesh resume (1)604-1-4.pdf', NULL, '1', '2024-06-19', 0, '', '8', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Attended', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-19 05:57:02', 112, '2024-06-19 12:18:27', 0, NULL, 1),
(19778, 'Sakthineru', '31', '8072144658', '', 'Sakthineru@gmail.com', '1999-11-14', 0, '3', '2', 'Subramaniyan', 'Forming', 80000.00, 1, 0.00, 15000.00, 'Tanjavur', 'Poonamalle', '2406190015', '', '1', 'upload_files/candidate_tracker/69408712269_sakthineru.pdf', NULL, '1', '2024-06-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-19 06:07:48', 130, '2024-06-20 10:54:43', 0, NULL, 1),
(19779, 'logeshwaran', '6', '8056655031', '9944029821', 'logeshwaransml21@gmail.com', '2004-04-21', 20, '2', '2', 'Kameshwaran', 'Non it', 60000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2406190016', '50', '1', 'upload_files/candidate_tracker/60489591914_My Resume.pdf', NULL, '1', '2024-06-19', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-19 06:08:13', 112, '2024-06-19 12:17:42', 0, NULL, 1),
(19780, 'Abhinayam Ganesan', '20', '8248604810', '9840026688', 'gabhinayam@gmail.com', '1991-11-24', 32, '2', '2', 'Arasu ganesan', 'Lawyer', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2406190017', '50', '1', 'upload_files/candidate_tracker/63862592700_Resume btech and llb&al.pdf', NULL, '1', '2024-06-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-19 06:17:14', 112, '2024-06-19 12:21:43', 0, NULL, 1),
(19781, 'Shalum', '5', '8056003658', '8072630612', 'shalumjohnson2@gmail.com', '2000-10-28', 23, '1', '1', 'Sarath', 'Hr recruiter', 50000.00, 1, 19000.00, 26000.00, 'Perumbakkam', 'Nungabakkam', '2406190018', '', '2', 'upload_files/candidate_tracker/96197330454_Shalum_J_Resume_5-final.pdf', NULL, '1', '2024-06-19', 0, '55650', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected\n', '5', '1', '', '4', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-06-19 06:21:07', 104, '2024-06-19 05:53:16', 0, NULL, 1),
(19782, 'Sharen Vasthyal.S', '34', '7338726624', '9841438564', 'sharenvasthiyals@gmai.com', '1996-03-21', 28, '3', '2', 'Solomon Babu.J', '10th', 12000.00, 1, 13500.00, 15000.00, 'Madha Kovil street,Nemilicherry,Thiruninravur', 'School street,Nemilicherry B/ward,Thiruninravur', '2406190019', '', '2', 'upload_files/candidate_tracker/50741889118_Sharen (1).pdf', NULL, '1', '2024-06-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-19 06:21:56', 104, '2024-07-26 07:02:11', 0, NULL, 1),
(19783, 'Dharunesh. R', '6', '6369265036', '8056227134', 'dharuneshr2022@gmail.com', '2004-04-01', 20, '2', '2', 'Rajendran. S', 'Auto drive', 13000.00, 1, 0.00, 15000.00, 'Chennai kodambakkam', 'Chennai kodambakkam', '2406190020', '1', '1', 'upload_files/candidate_tracker/91692900090_RESUME1.pdf', NULL, '1', '2024-06-19', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very slow', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55577', '5151', '1970-01-01', 1, '2024-06-19 06:42:47', 104, '2024-06-19 05:01:11', 0, NULL, 1),
(19784, 'Nandhini.V', '6', '8925280353', '', 'nandhinivenkatesh2703@gmail.com', '2003-07-27', 20, '2', '2', 'Venkatesh.K', 'Auto Driver', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2406190021', '1', '1', 'upload_files/candidate_tracker/43817667664_RESUME.pdf', NULL, '1', '2024-06-19', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-06-19 06:44:04', 104, '2024-06-19 05:00:20', 0, NULL, 1),
(19785, 'Karan Kumar', '6', '6379472007', '', 'karankumar.indtn@gmail.com', '2000-12-30', 23, '2', '2', 'Saravanan', 'Tailor', 20000.00, 1, 0.00, 20000.00, '76/192A, 3rd Street, SA Colony, Vyasarpadi', '76/192A, 3rd Street, SA Colony, Vyasarpadi', '2406190022', '50', '1', 'upload_files/candidate_tracker/84475122937_Karan Kumar.pdf', NULL, '1', '2024-06-19', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate not interest for firld work and voice is not ok slowely speaking so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-19 06:53:29', 104, '2024-06-19 04:28:08', 0, NULL, 1),
(19786, 'Narmadha', '5', '9345607738', '7299235593', 'ammu101205@gmail.com', '2004-04-05', 20, '1', '2', 'Lakshmi', 'Hospital staff', 31000.00, 1, 20000.00, 23000.00, 'No38a 22block smnagar vysarpadi Chennai -39', 'No38a 22block smnagar vysarpadi Chennai -39', '2406190023', '', '2', 'upload_files/candidate_tracker/55600921353_Telecaller_Narmadha.docx_20240609_122109_0000.pdf', NULL, '1', '2024-06-19', 0, 'Souyma 55792', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No sales knowledge and lying about her prior experince', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-06-19 06:56:08', 104, '2024-06-19 04:24:43', 0, NULL, 1),
(19787, 'Sunilmaran v', '6', '6383479223', '6383380191', 'sunilmaran.v245@gmail.com', '2001-05-24', 23, '2', '2', 'Balaniyammal v', 'Former', 100000.00, 1, 12600.00, 25000.00, 'Neyveli', 'Neyveli', '2406190024', '23', '2', 'upload_files/candidate_tracker/41043866177_sunil pdf.pdf', NULL, '1', '2024-06-19', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'salary expectation high and not interested field work ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-19 06:57:01', 104, '2024-06-19 04:26:05', 0, NULL, 1),
(19788, 'M.santhosh', '6', '8015026430', '', 'santhoshm2324@gmail.com', '2004-02-23', 20, '2', '2', 'Parents', 'House works', 10000.00, 1, 0.00, 16000.00, '17/5 pillayar kovil Street t.nagar Chennai 17', '17/5 Pillayar Kovil Street T.Nagar Chennai 17', '2406190025', '32', '1', 'upload_files/candidate_tracker/87489956572_M.Santhosh Resume.pdf', NULL, '1', '2024-06-22', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is unfit for sales. communication not well. ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-19 09:05:00', 104, '2024-06-22 12:04:18', 0, NULL, 1),
(19789, 'Pavithra B', '5', '7550178036', '', 'pownu0208@gmail.com', '2001-08-02', 22, '2', '2', 'Babu.E', 'Welder', 25000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2406190026', '50', '2', 'upload_files/candidate_tracker/64498594985_Adobe Scan Jun 19, 2024.pdf', NULL, '1', '2024-06-19', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-06-19 09:07:36', 104, '2024-06-19 04:47:10', 0, NULL, 1),
(19790, 'S.Ramya', '5', '9003938931', '9962170880', 'benibenita86@gmail.com', '2002-06-19', 22, '2', '2', 'Sivakumar', 'Security', 10000.00, 1, 15000.00, 20000.00, 'No.502 a block Vanniyamathi Scb Colony Ra Puram', 'N0: 9 karikalan Street govindswamy nagar mand', '2406190027', '50', '2', 'upload_files/candidate_tracker/44587337083_Ramya pdf.pdf', NULL, '1', '2024-06-19', 0, '', '9', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'move to dm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55567', '55557', '1970-01-01', 1, '2024-06-19 09:08:20', 104, '2024-06-19 04:35:59', 0, NULL, 1),
(19791, 'Geethanjali.S', '5', '7401379688', '6369318868', 'mm4246771@gmail.com', '1999-06-04', 25, '2', '1', 'Subramani.R', 'Corporation', 15.00, 1, 0.00, 20.00, 'Periyar Nagar', 'Periyar Nagar', '2406190028', '1', '1', 'upload_files/candidate_tracker/35457324590_qqqq.pdf', NULL, '1', '2024-06-19', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit RM profile \ndont have communication skils', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', '55656', '55557', '1970-01-01', 1, '2024-06-19 09:11:42', 104, '2024-06-19 04:40:50', 0, NULL, 1),
(19792, '', '0', '7380041205', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406190029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-19 09:16:14', 0, NULL, 0, NULL, 1),
(19793, 'John cyril A', '31', '6369297994', '9047440997', 'johncyrilarul@gmail.com', '1998-10-10', 25, '3', '2', 'Arulanantham', 'Electrician', 20000.00, 1, 0.00, 10000.00, '151,west street, Irudaiyam Pattu, Kallakkurichi.', 'Vadapalani', '2406190030', '', '1', 'upload_files/candidate_tracker/34453755376_John resume.pdf', NULL, '1', '2024-06-19', 0, '', '3', '59', '2024-07-15', 120000.00, '', '1', '1970-01-01', '2', 'Selected for IT tem interviewed and confirmed by sathish and gokul 3.5yrs agreement', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-19 09:18:40', 60, '2024-07-15 01:02:37', 0, NULL, 1),
(19794, '', '0', '8939717538', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406190031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-19 02:41:41', 0, NULL, 0, NULL, 1),
(19795, '', '0', '9989497484', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406200001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-20 01:04:41', 0, NULL, 0, NULL, 1),
(19796, 'R.JANANI', '6', '7010462809', '9087236514', 'jananijana634@gmail.com', '2003-08-10', 20, '2', '2', 'V.Ravisankar', 'Farmer', 40000.00, 1, 0.00, 14000.00, 'THIRUVARUR', 'Singaperumal kovil', '2406200002', '34', '1', 'upload_files/candidate_tracker/53027002830_Janani BCA.pdf', NULL, '1', '2024-06-20', 0, '', '3', '59', '2024-06-24', 168000.00, '', '1', '1970-01-01', '2', 'Selected for RE Role  Ready to relocate can give  a try in our role Need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '2024-06-24', 1, '2024-06-20 04:24:10', 60, '2024-06-24 07:33:06', 0, NULL, 1),
(19797, 'P.Harini', '6', '7448662171', '8778572450', 'Paramasivamharini77@gmail.com', '2004-03-04', 20, '2', '2', 'K.paramasivam', 'Farmer', 30000.00, 2, 0.00, 14000.00, 'Thiruvarur district', 'Singaperumal kovil', '2406200003', '34', '1', 'upload_files/candidate_tracker/37947469522_Grey Clean CV Resume Photo_20240619_180935_0000.pdf', NULL, '1', '2024-06-20', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very slow', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-20 04:25:23', 104, '2024-06-20 12:06:08', 0, NULL, 1),
(19798, 'S.Vaishnavi', '6', '9629890458', '7397587815', 'svaishnavivaishnavi6@gmail.com', '2003-09-28', 20, '2', '2', 'M.Singaravel', 'Farmer', 30000.00, 1, 0.00, 14000.00, 'Thiruvarur', 'Singaperumal kovil', '2406200004', '34', '1', 'upload_files/candidate_tracker/20326117746_CV_2024061212514489.pdf', NULL, '1', '2024-06-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-20 04:25:50', 104, '2024-06-20 12:09:10', 0, NULL, 1),
(19799, 'B.Barveena', '6', '9940887954', '9787656042', 'barveebala@gmail.com', '2004-07-03', 19, '2', '2', 'S Balakrishnan', 'Farmer', 30000.00, 2, 0.00, 14000.00, 'Thiruthuraipoondi', 'Singaperumal kovil', '2406200005', '34', '1', 'upload_files/candidate_tracker/84468546850_Barveena.B_compressed.pdf', NULL, '1', '2024-06-20', 0, '', '3', '59', '2024-06-24', 168000.00, '', '1', '1970-01-01', '2', 'Fresher open to learn can give a try need to analyse in 7days and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2024-06-24', 1, '2024-06-20 04:26:03', 60, '2024-06-24 07:33:22', 0, NULL, 1),
(19800, 'vidhushini', '6', '6385937911', '9514143792', 'vidhujay05@gmail.com', '2004-03-12', 20, '2', '2', 'Durga Bai', 'nurse', 30000.00, 1, 0.00, 18000.00, 'Mayiladuthurai', 'Arumbakkam', '2406200006', '50', '1', 'upload_files/candidate_tracker/46422670443_CV_2023120221082357.pdf', NULL, '1', '2024-06-20', 0, '', '3', '59', '2024-06-24', 168000.00, '', '1', '1970-01-01', '2', 'Selected for RE role Need to Analyse in  7days and confirm Sustainability need to focus', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '2024-06-24', 1, '2024-06-20 04:55:33', 60, '2024-06-24 07:34:41', 0, NULL, 1),
(19801, 'R.karunya', '12', '9940693327', '9566081617', 'karunyaram.2002@gmail.com', '2002-11-12', 21, '3', '2', 'Parent', 'Housekeeping', 90000.00, 1, 0.00, 15000.00, 'Mylapore', 'Kodambakkam', '2406200007', '', '1', 'upload_files/candidate_tracker/64379668323_RESUME 2 KARUNYA.pdf', NULL, '1', '2024-06-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '0', '1970-01-01', 1, '2024-06-20 05:13:21', 104, '2024-06-20 12:16:12', 0, NULL, 1),
(19802, 'Aravind S', '5', '9677713567', '7305203723', 'aravindmuser@gmail.com', '2002-09-04', 21, '2', '2', 'M. Saravanan', 'Carving designer', 30000.00, 1, 0.00, 2.50, '4/39, Ambedkar street, palavakkam, chennai-41', '4/39, Ambedkar Street, Palavakkam, Chennai-41', '2406200008', '42', '1', 'upload_files/candidate_tracker/13434027420_Resume (1).pdf', NULL, '1', '2024-06-20', 0, '', '3', '59', '2024-06-26', 250000.00, '', '2', '1970-01-01', '2', 'Fresher Can be trained in our roles having a offer in core mech but not open for it.Can give a try and check in 7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', 'Line Busy', '', '', '', '55650', '55560', '2024-06-26', 1, '2024-06-20 05:49:05', 60, '2024-07-06 10:10:43', 0, NULL, 1),
(19803, 'Nithin Alexander', '5', '9600681785', '9884661004', 'nithinalexander19@gmail.com', '2003-01-29', 21, '2', '2', 'A.Alexander', 'Supervisor in kauslaya aqua marine', 50000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2406200009', '42', '1', 'upload_files/candidate_tracker/26054229344_Nithin A resume.pdf', NULL, '1', '2024-06-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected, he didnt join', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-06-20 05:49:08', 104, '2024-06-20 12:35:53', 0, NULL, 1),
(19804, 'Leelavathy.M', '6', '7305566971', '', 'leelalalli193@gmail.com', '2003-08-19', 20, '1', '2', 'Muthu.M', 'Plumbing', 15000.00, 1, 0.00, 15000.00, 'Madipakkam, chennai', 'Madipakkam, chenna', '2406200010', '', '1', 'upload_files/candidate_tracker/50964180292_CV_2024052318433141.pdf', NULL, '1', '2024-06-20', 0, 'CAFSUSR00656', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'slow and sustainability doubt \n', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-20 05:56:06', 104, '2024-06-20 12:47:14', 0, NULL, 1),
(19805, 'Kamalna', '6', '9344680876', '', 'kamalna.kannan@gmail.com', '2004-06-01', 20, '1', '2', 'Kannan', 'Two wheeler mechanic', 15000.00, 2, 0.00, 15000.00, 'Perumbakkam', 'Medavakkam', '2406200011', '', '1', 'upload_files/candidate_tracker/66558854297_CV_2024052321071051.pdf', NULL, '1', '2024-06-20', 0, 'CAUSR00656', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice process ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-20 05:58:40', 104, '2024-06-20 12:57:51', 0, NULL, 1),
(19806, '', '0', '8300487428', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406200012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-20 06:08:41', 0, NULL, 0, NULL, 1),
(19807, '', '0', '7305855129', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406200013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-20 06:33:44', 0, NULL, 0, NULL, 1),
(19808, 'Jaya Neelavasini', '5', '8778187357', '9443676568', 'NEELAVASINI@GMAIL.COM', '1999-03-17', 25, '2', '2', 'Vaidyanathan', 'Supervisor', 25000.00, 1, 20000.00, 22000.00, 'Mannargudi-Thiruvarur dt', 'Chrompet', '2406200014', '50', '2', 'upload_files/candidate_tracker/9381307546_JAYA RESUME.pdf', NULL, '1', '2024-06-20', 0, '', '3', '59', '2024-06-24', 300000.00, '', '4', '2025-02-24', '2', 'Selected for RM Role Need to analyse in 7 days 11 months Exp in IDFC Can give a try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '2024-06-24', 1, '2024-06-20 07:01:34', 60, '2024-06-24 07:35:46', 0, NULL, 1),
(19809, 'Ranjith R', '6', '7695953489', '', 'Ranijith2004@gmail.com', '2004-12-08', 19, '2', '2', 'Ramalakshmi', 'House wife', 20000.00, 0, 0.00, 13000.00, 'Old washermenpet', 'Rayapuram', '2406200015', '50', '1', 'upload_files/candidate_tracker/27762944935_ranjith r.resume (1)_edited (1).pdf', NULL, '1', '2024-06-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-20 07:23:32', 104, '2024-06-20 03:25:16', 0, NULL, 1),
(19810, '', '0', '9176280362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406200016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-20 07:25:39', 0, NULL, 0, NULL, 1),
(19811, 'Akash', '5', '9566128507', '', 'aachhu886@gmail.com', '2009-06-20', 0, '2', '2', 'P.raja laxshmi', 'Manager', 40.00, 1, 20000.00, 20000.00, 'Chennai', 'Chennai', '2406200017', '1', '2', 'upload_files/candidate_tracker/30187454439_download Akash resume .pdf', NULL, '1', '2024-06-20', 30, '', '3', '59', '2024-07-01', 264000.00, '', '5', '1970-01-01', '1', 'Selected for Manikandan Team RM Role Need to train in our roles have exp but no sustainability need to analyse a lot in 7 days training', '5', '2', '1', '1', '8', '1', '2', '1970-01-01', '3', '1', '', '', 'H1021', '', '55634', '55557', '2024-08-12', 1, '2024-06-20 07:52:50', 60, '2024-07-04 06:51:01', 0, NULL, 1),
(19812, 'Lavanya', '5', '9840908861', '', 'lavanyaramesh1995.20@gmail.com', '1995-05-20', 29, '2', '1', 'Jebamani', 'Sales', 25000.00, 1, 0.00, 20000.00, 'Perambur', 'Perambur', '2406200018', '50', '2', 'upload_files/candidate_tracker/67642695582_Two page Resume.pdf', NULL, '1', '2024-06-20', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dont have sales exp \nnot fit for RM role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-06-20 08:21:09', 104, '2024-06-20 03:04:07', 0, NULL, 1),
(19813, 'Abdul hameed', '5', '8508044948', '9345781718', 'abdulhameed4179@gmail.com', '1999-06-18', 25, '2', '1', 'Affra', 'Working', 30000.00, 3, 23000.00, 30000.00, 'Theni', 'Chennai', '2406200019', '50', '2', 'upload_files/candidate_tracker/71161702268_Abdul', NULL, '1', '2024-06-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good Communication skills and Over all Technical skills medium and Need to train financial things and Need to negotiate salary package', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-06-20 10:07:14', 60, '2024-06-25 05:07:13', 0, NULL, 1),
(19814, '', '0', '6379455208', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406200020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-20 10:28:30', 0, NULL, 0, NULL, 1),
(19815, 'Rohith krishna', '5', '8825833167', '9444757504', 'Rohithkrishna24052002@gmail.com', '2002-05-24', 22, '3', '2', 'Shanmugam', 'MTC driver', 80000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2406200021', '', '1', 'upload_files/candidate_tracker/86407483362_RohithKrishna.pdf', NULL, '1', '2024-06-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2024-06-20 01:45:18', 1, '2024-06-20 01:47:56', 0, NULL, 1),
(19816, '', '0', '9176725393', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406200022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-20 03:17:05', 0, NULL, 0, NULL, 1),
(19817, 'Kishore kannan.s', '6', '6369742498', '7358978297', 'Kannankishore333@gmail.com', '2001-07-10', 22, '2', '2', 'Sadhasivam.p', 'Farmer', 30000.00, 1, 0.00, 30000.00, 'Walajabad', 'Walajabad', '2406210001', '1', '1', 'upload_files/candidate_tracker/39703060045_s.kishore kannan resume .pdf', NULL, '1', '2024-06-21', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate performance is little bit only good ,also very lazy', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2024-06-21 05:05:43', 112, '2024-06-21 11:22:03', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19818, 'B. Vijaya sri', '6', '8610786579', '7418418853', 'bvijaysree763@gmail.com', '2003-11-11', 20, '1', '2', 'Bala murugan', 'Auto driver', 80000.00, 2, 0.00, 18000.00, '26/49 B Block 5th Street Ezhil Nagar', '26/49 B Block 5th Street Ezhil Nagar', '2406210002', '', '1', 'upload_files/candidate_tracker/22349233385_VIJAYA SRI RESUME.pdf_20240617_133319_0000.pdf', NULL, '1', '2024-06-21', 0, '77893', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Internal Reference, Actually She Is Looking Job With Her Friend Oly, Already They Joined Star Health And Attend Training Session But They Are Not Intrested .', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-21 05:16:10', 112, '2024-06-21 11:25:01', 0, NULL, 1),
(19819, 'Sowndarya s', '6', '9150724478', '8608560725', 'Sowndaryaramesh2@Gmail.com', '2002-06-12', 22, '1', '2', 'Ramesh s', 'ITC employe', 120000.00, 1, 0.00, 18000.00, '11/5A railway station road thiruvottiyur chennai', '11/5A railway station road thiruvottiyur chennai', '2406210003', '', '1', 'upload_files/candidate_tracker/7264272980_sowndarya resume.pdf', NULL, '1', '2024-06-21', 0, '77893', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Internal reference, Actually she is looking job with her friend oly, already they joined star health and attend training session but they are not intrested .', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-21 05:17:47', 112, '2024-06-21 11:32:18', 0, NULL, 1),
(19820, 'SATHIYAMOORTHY M', '6', '9894937469', '', 'Ssathiyamoorthy21@gmail.com', '2001-05-22', 23, '2', '2', 'MUTHUKRISHNAN S', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Kallaikurchi', 'Poonamalli', '2406210004', '50', '1', 'upload_files/candidate_tracker/76027750412_CV_2024060518215783.pdf', NULL, '1', '2024-06-21', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shortlist for team check and confirm DOJ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-21 05:49:50', 60, '2024-06-24 06:41:46', 0, NULL, 1),
(19821, 'Vimal P', '6', '6374022037', '', 'vimalp1908@gmail.com', '2000-08-19', 23, '2', '2', 'T Periyasamy', 'Welder', 250000.00, 1, 0.00, 18000.00, 'Kallakurichi', 'Guindy', '2406210005', '50', '1', 'upload_files/candidate_tracker/75117678808_Vimal Resume.pdf', NULL, '1', '2024-06-21', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'if they get better job they will go to another job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-21 05:50:17', 112, '2024-06-21 12:03:43', 0, NULL, 1),
(19822, 'Madhumitha', '6', '7200485761', '7305614352', 'mithasm883@gmail.com', '2004-09-13', 19, '2', '2', 'Sasikumar', 'Driver', 19000.00, 1, 0.00, 15000.00, 'Thiruvorttiyur', 'Thiruvorttiyur', '2406210006', '50', '1', 'upload_files/candidate_tracker/55605101699_Madhumitha%20resume.docx', NULL, '1', '2024-06-21', 0, '', '3', '59', '2024-06-24', 168000.00, '', '3', '2024-08-20', '2', 'Selected for RE roles Dm, team need to check in 7 dyas training and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-06-24', 1, '2024-06-21 06:40:28', 60, '2024-06-24 07:35:18', 0, NULL, 1),
(19823, 'Gokul chandran. R', '6', '7305614351', '9176342208', 'gokulchan922@gmail.com', '2003-11-04', 20, '2', '2', 'Ravi chandran', 'Security', 15000.00, 1, 0.00, 16000.00, 'Alandur', 'Thiruvottiyur', '2406210007', '50', '1', 'upload_files/candidate_tracker/52350762581_Hubby resume .pdf', NULL, '1', '2024-06-21', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Basically he is from fitness backgound, intrested in gym training due to health issue he is changing the profession, he wont sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-21 06:42:10', 112, '2024-06-21 12:38:26', 0, NULL, 1),
(19824, '', '0', '8919896955', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406210008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2024-06-21 07:16:03', 0, NULL, 0, NULL, 1),
(19825, 'A.K.Anand', '6', '6379039447', '', 'anandkarthi1710@gmail.com', '2003-12-17', 20, '2', '2', 'A.Kumar', 'Coolie', 84000.00, 8, 0.00, 400000.00, 'Anuppampattu Ponneri thirvallur', 'Anuppampattu Ponneri Thirvallur', '2406210009', '1', '1', 'upload_files/candidate_tracker/54328638139_Anand.docx', NULL, '1', '2024-06-21', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate next study for master degree in office near by collage so thatreason to looking for job  and dress code is also very worst, voice is not good so not fit for my team ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-21 07:34:56', 112, '2024-06-21 03:13:38', 0, NULL, 1),
(19826, 'SYED JASIM S', '6', '9042122396', '', 'syedjasim1511@gmail.com', '2003-05-19', 21, '2', '2', 'SHEIK DAWOOD I', 'Footwear Worker', 70000.00, 2, 0.00, 400000.00, 'Karaikudi', 'Chennai', '2406210010', '50', '1', 'upload_files/candidate_tracker/93033645450_Syed Jasim _S_Resume_Bpo.pdf', NULL, '1', '2024-06-21', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-21 07:36:56', 112, '2024-06-21 06:23:56', 0, NULL, 1),
(19827, 'Kumaran.K', '6', '9345640492', '', 'kumarantamilselvi10@gmail.com', '2002-09-19', 21, '2', '2', 'Tamilselvi K', 'Dailywages', 10000.00, 1, 0.00, 4.00, 'Dharmapuri', 'Chennai', '2406210011', '50', '1', 'upload_files/candidate_tracker/27613517471_K.Kumaran.pdf', NULL, '1', '2024-06-21', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate after6 month go for it job and  interest also that field, so just voice expreience to looking for job so not set for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-21 07:37:26', 112, '2024-06-21 06:23:25', 0, NULL, 1),
(19828, 'KAUSHIK S', '5', '7019381436', '8050131393', 'kaushikscool123@gmail.com', '2002-09-29', 21, '4', '2', 'Shanmukha H M', 'Auto Driver', 40000.00, 1, 0.00, 21000.00, 'Bangalore', 'Bangalore', '2406210012', '', '1', 'upload_files/candidate_tracker/98953277978_Resume. (1).pdf', NULL, '1', '2024-06-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-21 08:09:52', 1, '2024-06-21 08:25:42', 0, NULL, 1),
(19829, 'Shalini', '6', '7358399309', '', 'shaluhoney0923@gmail.com', '2002-09-09', 21, '2', '2', 'Prema', 'Coolie', 10000.00, 1, 17000.00, 20000.00, '25 SHEARKHAN THOTTAM RANGARAJA PURAM KODAMBAKKAM', '25 Shearkhan Thottam Rangarajapuram kodambakkam', '2406210013', '50', '2', 'upload_files/candidate_tracker/29896684578_Shalini.S_11zon.pdf', NULL, '1', '2024-06-21', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and  performance is not like good, also little bit like a childish behaviour', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-21 09:30:16', 112, '2024-06-21 04:19:34', 0, NULL, 1),
(19830, 'Syedha Ghousunisa S', '6', '9360773121', '8637662613', 'syedhaghousunisa2314@gmail.com', '2004-01-23', 20, '2', '2', 'SYED MOINUDEEN C / WAHEEDA bEGUM G', 'Coolie Woker', 10000.00, 2, 0.00, 18000.00, '34/44 BURRAH Sahib Street Mount Road', '34/44 burrah Sahib street mount road', '2406210014', '50', '1', 'upload_files/candidate_tracker/96274672378_Syedha.S_11zon.pdf', NULL, '1', '2024-06-21', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is going web designing class, so she need logout early around 6pm. ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-21 09:54:27', 112, '2024-06-21 04:23:15', 0, NULL, 1),
(19831, 'GOKULAKRISHNAN P', '33', '8220427942', '', 'psgokulakrishnan@gmail.com', '2000-12-16', 23, '4', '2', 'PALANIKUMAR', 'farmer', 10000.00, 1, 0.00, 300000.00, 'ODDANCHATRAM', 'ODDANCHATRAM', '2406210015', '', '1', 'upload_files/candidate_tracker/97459189794_GOKULAKRISHNAN PALANIKUMAR_Resume 1 1 2_1716375410375_GOKULAKRISHNAN P_1718747020954_GOKULAKRISHNAN P.pdf', NULL, '1', '2024-06-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-21 10:09:52', 1, '2024-06-21 10:12:12', 0, NULL, 1),
(19832, 'mukilvannan d s', '5', '8341245750', '', 'mukilvannands@gmail.com', '1999-11-29', 24, '3', '2', 'srinivasan v', 'government teacher', 80000.00, 1, 0.00, 350000.00, 'dharmapuri', 'chittoor', '2406210016', '', '1', 'upload_files/candidate_tracker/86862550172_Updated Resume.pdf', NULL, '1', '2024-06-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-21 10:20:12', 1, '2024-06-21 10:22:45', 0, NULL, 1),
(19833, 'Mancy Glodus Angilin.B', '5', '9677237412', '9551991674', 'gladusmancy@gmail.com', '2001-07-23', 22, '2', '2', 'Bhaskaran.R', 'Driver', 30000.00, 1, 22500.00, 25000.00, 'Chennai', 'Chennai', '2406220001', '1', '2', 'upload_files/candidate_tracker/18513728086_mancy resume.pdf', NULL, '1', '2024-06-25', 0, '', '3', '59', '2024-06-26', 310000.00, '', '1', '1970-01-01', '2', 'Selected for RM Role - Have exp in calling collection/PL sales can give a try need to check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1022', '', '55656', '55557', '2024-06-26', 1, '2024-06-22 02:24:02', 60, '2024-06-26 10:19:18', 0, NULL, 1),
(19834, 'SRIDHAR', '5', '8754060411', '9080183844', 'sridharr630@gmail.com', '1999-05-02', 25, '2', '2', 'Ramasamy', 'TANGEDGO', 40000.00, 1, 0.00, 17000.00, 'Salem', 'Chennai', '2406220002', '50', '1', 'upload_files/candidate_tracker/5061612770_CV_2024051207353480.pdf', NULL, '1', '2024-06-22', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales profile\nhe looking for operation \n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-06-22 04:36:41', 104, '2024-06-22 12:05:15', 0, NULL, 1),
(19835, 'R.JOSEPH RAJ', '6', '9840514637', '9080410881', 'rajjoseph495@gmail.com', '2002-05-03', 22, '2', '2', 'S.ramasamy', 'provision', 20.00, 1, 0.00, 20000.00, '54/124 boja raja nagar 2nd street', '54/124 Boja Raja Nagar 2nd Street', '2406220003', '1', '1', 'upload_files/candidate_tracker/25488146853_JOSEPH RAJ resume 3.1.pdf', NULL, '1', '2024-06-22', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is complete web development for IT And right now  looking  for sales or it interested in IT ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-22 05:20:29', 104, '2024-06-22 12:08:05', 0, NULL, 1),
(19836, 'Mursal ibrahim', '5', '8754246532', '', 'mursalibrahimhussain@gmail.com', '1999-04-01', 25, '2', '2', 'Aarifa bagum', 'Mother', 12000.00, 1, 18000.00, 15000.00, 'Chennai', 'Chennai', '2406220004', '50', '2', 'upload_files/candidate_tracker/76706939267_Mursal Updated CV.pdf', NULL, '1', '2024-06-22', 1, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-06-22 05:39:25', 104, '2024-06-22 12:08:50', 0, NULL, 1),
(19837, 'D.sapamiya', '6', '8925471259', '', 'dlsapamiya123@gmail.com', '2002-04-17', 22, '2', '2', 'Dharmenethi', 'Canteen eorker', 20000.00, 1, 16000.00, 20000.00, 'Thiruvotriyur', 'Thiruvotriyur', '2406220005', '50', '2', 'upload_files/candidate_tracker/54221888193_Resume_15_06_2024_12_24_20_PM.pdf', NULL, '1', '2024-06-22', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Intrevied by charless xxamp banu mam, as per his suggestion Candidate Communication And Performance Is Good,She is still woking partime in liabrary aslo her sustain is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-22 06:11:40', 104, '2024-06-22 12:12:25', 0, NULL, 1),
(19838, 'viswa', '5', '9342836098', '7358628095', 'vishviswa12@gmail.com', '2000-03-13', 24, '2', '2', 'yuvaraj', 'clerk', 30000.00, 1, 13500.00, 15000.00, 'ayanavaram', 'ayanavaram', '2406220006', '50', '2', 'upload_files/candidate_tracker/70800851117_Adobe Scan 28 Jun 2022.pdf', NULL, '1', '2024-06-22', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'I asked him to wait for second round but he left', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-22 06:18:16', 104, '2024-06-22 12:14:21', 0, NULL, 1),
(19839, 'dhanalakshmi m', '6', '6379674307', '', 'dineshdhana770@gmail.com', '2004-01-16', 20, '2', '1', 'marimuthu r', 'daily wages', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2406220007', '51', '1', 'upload_files/candidate_tracker/31445675246_dhanalakshmi.pdf', NULL, '1', '2024-06-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-22 08:57:19', 112, '2024-06-22 04:23:08', 0, NULL, 1),
(19840, 'SWATHIRAM P', '2', '8667414579', '', 'swathivetri1992@gmail.com', '1992-08-05', 31, '3', '2', 'samiyathal', 'farmer', 50000.00, 1, 300000.00, 600000.00, 'dindigul', 'Tambaram', '2406220008', '', '2', 'upload_files/candidate_tracker/30078078519_SWATHIRAMRESUME.pdf', NULL, '1', '2024-06-24', 60, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-22 12:52:30', 1, '2024-06-22 01:04:58', 0, NULL, 1),
(19841, '', '0', '9940124987', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406220009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-06-22 01:47:43', 0, NULL, 0, NULL, 1),
(19842, 'Veenasthi G', '33', '9677109089', '', 'Veenas1926@gmail.com', '2003-08-19', 20, '2', '2', 'Govindasamy P', 'Nil', 108000.00, 1, 13000.00, 15000.00, 'No:19/1 Thirunagar 4th street vadapalani ch-26', 'No:14 NGO colony 2nd street vadapalani ch-26', '2406220010', '1', '2', 'upload_files/candidate_tracker/25008824421_Veenasthi Resume.pdf', NULL, '1', '2024-06-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-06-22 02:13:44', 112, '2024-06-24 03:29:24', 0, NULL, 1),
(19843, 'prasath v', '5', '9025466979', '', 'prasath.prashu10@gmail.com', '2001-11-10', 22, '2', '2', 'venkatesan', 'buisness', 25000.00, 1, 0.00, 20000.00, 'nungambakkam', 'nungambakkam chennai', '2406220011', '1', '1', 'upload_files/candidate_tracker/57186732766_PDFGallery_20240220_130839.pdf', NULL, '3', '2025-04-28', 0, '', '2', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'On hold', '5', '1', '', '1', '8', '', '2', '2025-06-02', '2', '1', '', '', 'H1018', '', '55735', '55557', '1970-01-01', 1, '2024-06-22 05:49:30', 154, '2025-05-30 12:32:04', 0, NULL, 1),
(19844, 'DINESH. K', '6', '8939686345', '', 'Kumarandinesh92@gmail.com', '2003-11-14', 20, '2', '2', 'A.J.KUMARAN', 'PORTER DELIVER MAN', 40000.00, 2, 0.00, 15000.00, 'K.K.NAGAR VALASARAVAKKAM V.O.C STREET', 'K.K.NAGAR VALASARAVAKKAM V.O.C STREET', '2406230001', '1', '1', 'upload_files/candidate_tracker/67756642649_CV_2024061212030942.pdf', NULL, '3', '2024-06-24', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very slow, no bike', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55577', '5151', '1970-01-01', 1, '2024-06-23 03:05:15', 112, '2024-06-24 03:30:54', 0, NULL, 1),
(19845, 'Ranjith', '6', '9585475361', '6382884992', 'ranjithrpd101@gmail.com', '2002-08-28', 21, '2', '2', 'M.Gopi', 'Farmer', 72000.00, 3, 0.00, 15000.00, 'Poondamali', 'Poondamali', '2406240001', '50', '1', 'upload_files/candidate_tracker/64496413608_Ranjith com.pdf', NULL, '1', '2024-06-24', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he remained silent interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-24 04:13:16', 112, '2024-06-24 11:03:44', 0, NULL, 1),
(19846, 'Kaviyarasan A', '6', '9500273515', '8838841706', 'kaviyarasanag@gmail.com', '1997-05-27', 27, '1', '2', 'Kavi', 'Farmer', 30000.00, 1, 15500.00, 15500.00, 'nungapakam', 'Nungapakam', '2406240002', '', '2', 'upload_files/candidate_tracker/80727542648_kavi cv.pdf', NULL, '2', '2024-06-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate past 8 years work other field , some personal reason to relave the company but voice is very good and approach also good exp takehome 15k so try for 7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-24 04:19:47', 112, '2024-06-24 11:22:51', 0, NULL, 1),
(19847, 'Aakash.V', '6', '6369641459', '7845261458', 'aakashyuvan1905@gmail.com', '1998-05-19', 26, '2', '2', 'S Amutha', 'Government Employee', 15000.00, 0, 0.00, 18000.00, 'Ariyalur', 'Anakaputhur, Chennai', '2406240003', '42', '1', 'upload_files/candidate_tracker/77143637468_Aakash V. Resume....docx', NULL, '1', '2024-06-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '', '1970-01-01', 1, '2024-06-24 04:52:45', 60, '2024-06-25 07:29:45', 0, NULL, 1),
(19848, 'T. Clara siji', '6', '6381311480', '9884237361', 'clarasiji5@gmail.com', '2003-08-11', 20, '3', '2', 'T. Antony pragasi', 'Domestic worker', 7000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2406240004', '', '1', 'upload_files/candidate_tracker/80563670271_clara siji.docx', NULL, '3', '2024-06-24', 0, '', '3', '59', '2024-07-01', 168000.00, '', '1', '1970-01-01', '2', 'Selected for RE Role Need to train from the scratch fresher can give a try need to check in 7 days training', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2024-07-01', 1, '2024-06-24 04:58:57', 60, '2024-07-01 06:35:11', 0, NULL, 1),
(19849, 'yazhini shruthi t', '6', '7358610589', '', 'yazhinishruthi.t@gmail.com', '2004-01-19', 20, '2', '2', 'thomas', 'miller', 35000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2406240005', '50', '1', 'upload_files/candidate_tracker/75141827065_YazhResume.pdf', NULL, '1', '2024-06-24', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication not good and she not interested for sales `\n', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-24 05:14:27', 112, '2024-06-24 03:25:43', 0, NULL, 1),
(19850, 'Hari Haran', '6', '7338763872', '9940228260', 'hariharan55558@gmail.com', '2001-03-24', 23, '2', '2', 'nithyapriyanka', 'accounting', 40.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2406240006', '50', '1', 'upload_files/candidate_tracker/25935642769_HAri haran.M (res) cv.docx', NULL, '1', '2024-06-24', 0, '', '3', '59', '2024-06-28', 192000.00, '', '3', '2025-01-09', '1', 'Communication Ok Can be trained in our roles career Gap due to accident need to analyse in 7 days and confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2024-07-01', 1, '2024-06-24 05:18:15', 60, '2024-07-01 06:32:28', 0, NULL, 1),
(19851, 'B.Kaviya', '3', '6379341898', '9442474635', 'jaganjag679@gmail.com', '2003-08-11', 20, '2', '2', 'S Baskar', 'Driver', 25000.00, 1, 0.00, 20000.00, 'Gudiyattam', 'Gudiyattam', '2406240007', '34', '1', 'upload_files/candidate_tracker/33077297757_KAVIYA (3).pdf', NULL, '1', '2024-06-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-24 05:20:11', 112, '2024-06-24 03:25:17', 0, NULL, 1),
(19852, 'M.Swetha', '3', '7358188993', '8825849469', 'swethaswesweety15@gmail.com', '2004-04-15', 20, '2', '2', 'A.Mahendhiran', 'Gold Smith', 25000.00, 2, 0.00, 20000.00, 'Gudiyattam', 'Gudiyattam', '2406240008', '34', '1', 'upload_files/candidate_tracker/88745886862_Resume (3).pdf', NULL, '1', '2024-06-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-24 05:20:24', 112, '2024-06-24 03:25:01', 0, NULL, 1),
(19853, 'Kirthi', '6', '8681831853', '', 'Kirthimargan1003@gmail.com', '2002-03-10', 22, '3', '2', 'Margan R', 'Business', 200000.00, 1, 0.00, 200000.00, 'Annandham nagar ,Thiruverkadu, Chennai 77', 'Annandham Nagar ,Thiruverkadu, Chennai-77', '2406240009', '', '1', 'upload_files/candidate_tracker/63353256350_Resume.pdf', NULL, '1', '2024-06-24', 0, '', '3', '59', '2024-07-01', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok have Intern Exp in calling MCom graduate open to travel 19kms down Can give a try kindly check and confirm the candidate in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '2024-07-01', 1, '2024-06-24 05:25:12', 60, '2024-06-27 05:31:40', 0, NULL, 1),
(19854, 'Vaishnavi.R', '6', '6374028936', '9171438043', 'Vaishugayu8504@gmail.com', '2004-05-08', 20, '2', '2', 'Ramachandran', 'Cooli', 15000.00, 2, 0.00, 15000.00, 'Vyasarpadi', '#1451, 62block sm nager vyasarpadi chennai-39', '2406240010', '50', '1', 'upload_files/candidate_tracker/87108540080_Image to pdf 24-Jun-2024.pdf', NULL, '3', '2024-06-24', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested in sales ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-24 05:49:42', 112, '2024-06-24 03:26:32', 0, NULL, 1),
(19855, 'Dillibabu.v', '6', '7299222782', '', 'dillibabu6519@gmail.com', '1998-03-05', 26, '2', '2', 'Manonmani', 'House', 10000.00, 1, 0.00, 15000.00, 'Chengalpet', 'Guduvacheri', '2406240011', '50', '1', 'upload_files/candidate_tracker/73455347932_Resume_Dillibabu-2 (2).pdf', NULL, '1', '2024-06-24', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'over thinking', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-24 06:10:32', 112, '2024-06-24 04:49:26', 0, NULL, 1),
(19856, 'J.K.KEVIN PRABHAKARAN', '5', '9094734479', '6379221578', 'kevinjaba2002@gmail.com', '2002-12-24', 21, '3', '2', 'K.Jebamani', 'Labour', 8000.00, 1, 0.00, 20000.00, 'Puzhal,Chennai', 'Puzhal,Chennai', '2406240012', '', '1', 'upload_files/candidate_tracker/43158122303_Kevin Resume.pdf', NULL, '1', '2024-06-24', 0, '', '3', '59', '2024-07-15', 250000.00, '', NULL, '2024-11-25', '1', 'Selected for Manikandan team RM Role Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '2024-07-15', 1, '2024-06-24 06:17:19', 104, '2024-07-17 09:04:48', 0, NULL, 1),
(19857, 'Balaji Kumar', '14', '8124212420', '', 'kumarbalaji545@gmail.com', '2009-06-24', 0, '3', '2', 'Kumar', 'Driver', 180000.00, 1, 0.00, 280000.00, 'Chennai', 'Chennai', '2406240013', '', '1', 'upload_files/candidate_tracker/90424930287_BALAJI KUMAR.pdf', NULL, '1', '2024-06-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-24 06:43:28', 1, '2024-06-24 06:46:04', 0, NULL, 1),
(19858, 'K Sangeetha', '5', '7358697643', '6380500061', 'Ksangi199514@gmail.com', '1997-05-11', 27, '2', '2', 'Krishna rao', 'Security', 15000.00, 2, 290000.00, 350000.00, 'Chennai', 'Chennai', '2406240014', '1', '2', 'upload_files/candidate_tracker/7694159077_sangi nnn.doc', NULL, '1', '2024-06-24', 1, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55567', '55557', '1970-01-01', 1, '2024-06-24 06:59:09', 112, '2024-06-24 01:12:47', 0, NULL, 1),
(19859, 'P. Seetha', '6', '9080123789', '', 'seethalaxmi1230@gmail.com', '2003-11-12', 20, '2', '2', 'S. PALANI', 'Colleie', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2406240015', '42', '1', 'upload_files/candidate_tracker/61536385013_SEETHA RESUME FINAL.pdf', NULL, '1', '2024-06-24', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Pronunciation is Not Good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-24 08:30:57', 112, '2024-06-24 03:27:26', 0, NULL, 1),
(19860, 'panner selvam a', '6', '8489173862', '', 'pannerselvamarumugam2004@gmail.com', '2004-04-10', 20, '2', '2', 'arumugam', 'farmer', 4000.00, 2, 0.00, 15000.00, 'thiruvanamali', 'thiruvanamali', '2406240016', '50', '1', 'upload_files/candidate_tracker/36877049621_Panner.pdf', NULL, '1', '2024-06-24', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'interested in non voice ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-24 10:16:27', 112, '2024-06-24 04:25:22', 0, NULL, 1),
(19861, '', '0', '6374368308', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406240017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-06-24 12:50:51', 0, NULL, 0, NULL, 1),
(19862, 'Pavithra', '6', '8939193012', '', 'pavithradeva01@gmail.com', '2001-10-15', 22, '2', '2', 'Devadoss', 'Building contractor', 30000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2406250001', '50', '1', 'upload_files/candidate_tracker/29963206595_PD resume-1.pdf', NULL, '1', '2024-06-25', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not ok, unfit for sales,sustainability issue and distance long', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-25 04:46:45', 112, '2024-06-25 11:21:15', 0, NULL, 1),
(19863, 'arun', '13', '9361060500', '', 'arunadhi506@gmail.com', '2001-03-20', 23, '3', '2', 'kannan', 'business', 50000.00, 3, 0.00, 200000.00, 'dharamapuri', 'chennai', '2406250002', '', '1', 'upload_files/candidate_tracker/14166254833_Arun PFSD.pdf', NULL, '1', '2024-06-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-25 04:48:58', 1, '2024-06-25 04:55:41', 0, NULL, 1),
(19864, 'SETHUPATHY B', '13', '7094502118', '', 'sethup310@gmail.com', '1999-06-09', 25, '3', '2', 'Balakumar S', 'Driver', 25000.00, 1, 0.00, 250000.00, 'Cuddalore', 'Cuddalore', '2406250003', '', '1', 'upload_files/candidate_tracker/8251404683_Sethu IT Resume.pdf', NULL, '1', '2024-06-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-25 04:53:47', 1, '2024-06-25 04:57:33', 0, NULL, 1),
(19865, 'Yuvashree.v', '6', '6369597574', '', 'Yuvayuvashree60@gmail.com', '2004-07-28', 19, '2', '2', 'Vijayakumar.c', 'Sales man', 20000.00, 1, 0.00, 25000.00, 'Thirumagalam', 'Thitumagalam', '2406250004', '50', '1', 'upload_files/candidate_tracker/79443482130_Yuvashree _20240622_105315_0000.pdf', NULL, '1', '2024-06-25', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for the job', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-25 05:12:39', 112, '2024-06-25 11:28:43', 0, NULL, 1),
(19866, 'Manjula', '6', '8925125313', '6381555357', 'Mp8271222@gmail.com', '2001-09-16', 22, '2', '2', 'Padmanabhan', 'Printing press', 17000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2406250005', '50', '2', 'upload_files/candidate_tracker/32191092096_Manjula Resume.docx', NULL, '1', '2024-06-25', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance not like good , Also her voice is not legit', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-25 05:13:11', 112, '2024-06-25 01:25:34', 0, NULL, 1),
(19867, 'Sanjay S', '5', '8056037263', '', 'sanjay310704@gmail.com', '2004-07-31', 19, '1', '2', 'Subramani M', 'Cooly', 12000.00, 1, 0.00, 15000.00, 'Theradi thiruvotriyur', 'Theradi thiruvotriyur', '2406250006', '', '1', 'upload_files/candidate_tracker/87308585683_sanjay resume .pdf', NULL, '1', '2024-06-25', 0, '55778', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for Sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-06-25 05:35:34', 104, '2024-07-17 09:05:08', 0, NULL, 1),
(19868, 'DhanushKumar.C', '31', '6374793199', '9442058056', 'dhanushkumar.c07@gmail.com', '2000-12-07', 23, '3', '2', 'Chinnadurai', 'Driver', 500000.00, 1, 0.00, 20000.00, 'Dharmapuri', 'Chennai', '2406250007', '', '1', 'upload_files/candidate_tracker/42630067471_dhanush_1.pdf', NULL, '1', '2024-06-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-25 05:47:50', 1, '2024-06-25 05:53:17', 0, NULL, 1),
(19869, 'RAMYA M', '6', '6379283988', '7639345957', 'ramyamurugesan555@gmail.com', '2002-02-03', 22, '2', '2', 'MURUGESAN s', 'Shop Keeper', 30000.00, 2, 0.00, 20000.00, '1/228 Mettucolony, killmuttukur,vellore', 'Chennai', '2406250008', '50', '1', 'upload_files/candidate_tracker/1922280478_Ramya Resume.pdf', NULL, '1', '2024-06-25', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-25 05:52:06', 112, '2024-06-25 01:12:38', 0, NULL, 1),
(19870, 'V.neela', '6', '9361683414', '9962269716', 'vneela8055@gmail.com', '2003-09-04', 20, '3', '2', 'S. Viswanathan', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Medavakkam Chennai', 'Medavakkam Chennai', '2406250009', '', '1', 'upload_files/candidate_tracker/93366611229_NONIT _20240617_114045_0000.pdf', NULL, '1', '2024-06-25', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is coming  very long  and vry high expection , voice also not good so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-25 06:00:25', 112, '2024-06-25 01:13:25', 0, NULL, 1),
(19871, 'Anitha', '5', '9943236998', '7867827255', 'shreeanitha26@gmail.com', '1996-07-16', 27, '3', '1', 'Nalapathi', 'Driver', 20000.00, 1, 20000.00, 20000.00, 'madurai -625503', 'Porur, Chennai -116', '2406250010', '', '2', 'upload_files/candidate_tracker/91901115142_AnithaResume.pdf', NULL, '1', '2024-06-25', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Kindly Reschedule', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-06-25 06:03:35', 112, '2024-06-25 01:14:54', 0, NULL, 1),
(19872, 'M VISHAL', '4', '9789878844', '9840578884', 'vishalmahendran21@gmail.com', '1996-03-21', 28, '3', '2', 'M malathy', 'Tailoring', 30000.00, 1, 30000.00, 40000.00, 'Chennai', 'Chennai', '2406250011', '', '2', 'upload_files/candidate_tracker/29212806778_M Vishal _ Relieving Letter.pdf', NULL, '1', '2024-06-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-25 06:15:45', 1, '2024-06-25 06:24:47', 0, NULL, 1),
(19873, 'Parthiban . V', '6', '8610195922', '9578729903', 'parthipanv59@gmail.com', '2003-08-28', 20, '2', '2', 'Venkatesan', 'Building contractor', 20000.00, 1, 0.00, 15000.00, 'Theni', 'Theni', '2406250012', '50', '1', 'upload_files/candidate_tracker/20178478835_PARTHIBAN V updated.pdf', NULL, '1', '2024-06-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-25 06:15:49', 112, '2024-06-25 01:18:33', 0, NULL, 1),
(19874, 'M.Annamalai', '6', '7871388785', '9342991279', 'annamalai5128@gmail.com', '2000-12-28', 23, '2', '2', 'Sudha.M', 'Finance', 150000.00, 1, 0.00, 16000.00, 'No 42 alli street Cheyyar', 'Chennai Saidapet', '2406250013', '50', '1', 'upload_files/candidate_tracker/84482463686_CV_2024042919322498.pdf', NULL, '2', '2024-06-25', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable sales , interested in Non voice ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-25 06:34:45', 112, '2024-06-25 01:23:14', 0, NULL, 1),
(19875, 'Ruban M', '5', '7200650711', '', 'Rubanid06@gmail.com', '1995-12-20', 28, '2', '2', 'Selvi', 'Cottage industry', 15000.00, 0, 18000.00, 22000.00, 'Chennai', 'Chennai', '2406250014', '50', '2', 'upload_files/candidate_tracker/2983592404_Ruban resume-1.pdf', NULL, '1', '2024-06-25', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills in sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-06-25 07:01:45', 112, '2024-06-25 01:09:39', 0, NULL, 1),
(19876, 'Koteeswari B', '6', '9940260830', '', 'bkoteeswari26@gmail.com', '2000-08-26', 23, '2', '2', 'Balraj K', 'Self employed', 100000.00, 2, 0.00, 18000.00, 'No. 4 Sundram Main Street Vyasarpadi Chennai -39', 'nO.4 Sundram Main Street Vyasarpadi Chennai -39', '2406250015', '50', '1', 'upload_files/candidate_tracker/30840806533_Resume .pdf', NULL, '1', '2024-06-25', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Intrested in Non voice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-25 07:11:52', 112, '2024-06-25 01:24:12', 0, NULL, 1),
(19877, 'Thiruparkadal Nambiraja p', '6', '9791869208', '2125510061', 'rbraja1810@Gmail.com', '1999-05-18', 25, '2', '2', 'Pal pandi N', 'Land Broker', 0.00, 4, 0.00, 18.00, 'Tenkasi', 'Chennai', '2406250016', '50', '1', 'upload_files/candidate_tracker/96574306448_resume raja .pdf', NULL, '1', '2024-06-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-25 07:21:38', 112, '2024-06-25 03:20:20', 0, NULL, 1),
(19878, 'P Kannan', '6', '8870985144', '9842805144', 'kannankannan365925@gmail.com', '2000-07-12', 23, '2', '2', 'Paul pandi N', 'Financial Broker', 44000.00, 4, 0.00, 18000.00, 'Thirunalvali', 'Thirunalvali', '2406250017', '50', '1', 'upload_files/candidate_tracker/27020628592_resume kannan .pdf', NULL, '1', '2024-06-25', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-25 07:23:12', 112, '2024-06-25 04:18:15', 0, NULL, 1),
(19879, 'G.GOKUL', '6', '9080009004', '9042145810', 'gokulgokul6482@gmail.com', '2004-10-23', 19, '2', '2', 'R.GOPALAKRISHNAN', 'Electrician', 75000.00, 4, 0.00, 25000.00, 'Vellore gudiyattam', 'Channai mount road', '2406250018', '34', '1', 'upload_files/candidate_tracker/23368170609_Gokul Resume.pdf', NULL, '1', '2024-06-25', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-25 07:24:58', 112, '2024-06-25 04:18:28', 0, NULL, 1),
(19880, 'Tharun', '6', '6379435031', '9894452848', 'tharunsankar8925@gmail.com', '2004-07-02', 19, '2', '2', 'J.sankar', 'Waver', 20000.00, 1, 0.00, 25000.00, 'Vellore gudiyattam', 'Chennai mount road', '2406250019', '34', '1', 'upload_files/candidate_tracker/41704003656_Tharun Resume.pdf', NULL, '1', '2024-06-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-25 07:25:29', 60, '2024-06-25 04:56:50', 0, NULL, 1),
(19881, 'JOTHI RAJ.J', '6', '8489558671', '9994235932', 'rajj7649@gamil.com', '2004-08-01', 19, '2', '2', 'JAYA KUMAR', 'Sales man', 20000.00, 1, 0.00, 25000.00, 'Vellore district,Gudiyattam', 'Gudiyattam', '2406250020', '34', '1', 'upload_files/candidate_tracker/3256490653_Resume Jothiraj.pdf', NULL, '1', '2024-06-25', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher  interested in sales but sustainability doubt ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-25 07:25:32', 112, '2024-06-25 04:07:46', 0, NULL, 1),
(19882, 'Priyanka', '4', '9952172849', '7418348882', 'Priyankarajalingam91@gmail.com', '1997-10-03', 26, '6', '2', 'Rajalingam', 'Farmer', 15000.00, 0, 18000.00, 24000.00, 'Pattukottai', 'Chennai', '2406250021', '', '2', 'upload_files/candidate_tracker/64893769502_Priyanka_Rajalingam.pdf', NULL, '3', '2024-06-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-25 07:30:47', 1, '2024-06-27 06:25:04', 0, NULL, 1),
(19883, 'Priyadharshini', '6', '8015508180', '6382821307', 'Dharshinii0508@gmail.com', '2003-08-01', 20, '2', '2', 'Tamilmaran', 'Own business', 20000.00, 1, 0.00, 20000.00, 'Mayiladuthurai', 'Chennai', '2406250022', '1', '1', 'upload_files/candidate_tracker/47296923335_Priyadharshini resume (1) (12) (1)_removed (1)-1.pdf', NULL, '1', '2024-06-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1022', '', '', '', '1970-01-01', 1, '2024-06-25 07:31:13', 112, '2024-06-25 03:55:36', 0, NULL, 1),
(19884, 'Dharshini', '6', '6382821307', '9787788949', 'Dharshinikutty37@gmail.com', '2003-08-05', 20, '2', '2', 'Venkatesan', 'Own business', 20000.00, 1, 0.00, 20000.00, 'Thiruvarur', 'Chennai', '2406250023', '1', '1', 'upload_files/candidate_tracker/72122275645_Document from Dharshu...?.pdf', NULL, '1', '2024-06-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1022', '', '', '', '1970-01-01', 1, '2024-06-25 07:38:47', 112, '2024-06-25 03:55:13', 0, NULL, 1),
(19885, '', '0', '7550248887', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406250024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-06-25 08:14:02', 0, NULL, 0, NULL, 1),
(19886, 'magesh', '4', '9176684890', '9176685087', 'kmagesh944@gmail.com', '2009-06-25', 0, '3', '2', 'sekar', 'electri', 30000.00, 1, 15000.00, 15000.00, 'kodambakkam', 'kodambakkam', '2406250025', '', '2', 'upload_files/candidate_tracker/54863894265_Magesh pdf new.pdf', NULL, '1', '2024-06-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-25 08:40:26', 1, '2024-06-25 08:46:10', 0, NULL, 1),
(19887, 'Subash', '6', '7904984565', '9003389967', 'subashm280@gmail.com', '1998-12-29', 25, '2', '2', 'K.Mayakannan', 'Fire service (retd)', 40000.00, 1, 0.00, 16000.00, 'Kallakurichi district', 'Kallakurichi district', '2406250026', '1', '1', 'upload_files/candidate_tracker/78861380871_DocScanner 4 Sept 2023 4-49 pm.pdf', NULL, '1', '2024-06-27', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No bike not Interested in Field sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', '55577', '5151', '1970-01-01', 1, '2024-06-25 03:56:17', 112, '2024-06-27 11:54:21', 0, NULL, 1),
(19888, 'harini s', '7', '8838628780', '8122740010', 'hariniselvadurai2002@gmail.com', '2002-03-24', 22, '3', '2', 'selvadurai r', 'fresher', 240000.00, 1, 0.00, 25000.00, 'perambur', 'perambur', '2406250027', '', '1', 'upload_files/candidate_tracker/44638495187_Harini S Resume.pdf', NULL, '1', '2024-06-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she was looking into stock broking vacancy and holding another offer, Sustainability doubt.', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-06-25 04:19:50', 104, '2024-06-26 06:08:12', 0, NULL, 1),
(19889, 'PalPandi.S', '25', '9345187576', '', 'palpandis359@gmail.com', '2004-06-21', 20, '1', '2', 'Parent', 'Student', 40000.00, 2, 0.00, 16000.00, 'Veppambaattu', 'Veppambaattu', '2406260001', '', '1', 'upload_files/candidate_tracker/8135281258_DOC-20240623-WA0001..pdf', NULL, '1', '2024-06-26', 0, '55783', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for Sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-06-26 04:49:18', 112, '2024-06-26 11:20:14', 0, NULL, 1),
(19890, '', '0', '9025408306', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406260002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-06-26 04:49:29', 0, NULL, 0, NULL, 1),
(19891, 'Divya M', '5', '7904942934', '', 'dhivyavignesh1994@gmail.com', '1998-09-07', 25, '2', '1', 'Vignesh K', 'Lead technician', 75000.00, 1, 0.00, 3.80, 'Tindivanam', 'Tindivanam', '2406260003', '50', '2', 'upload_files/candidate_tracker/81040113544_Divya resume (3).pdf', NULL, '1', '2024-06-26', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no Experience in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-06-26 05:02:05', 112, '2024-06-26 11:11:28', 0, NULL, 1),
(19892, 'KAVIPRIYAN P', '6', '6383211952', '9894398874', 'kvpriyan123@gmail.com', '2003-06-19', 21, '2', '2', 'PRAKASAM S', 'FARMER', 100000.00, 1, 0.00, 16000.00, 'DHARAMPURI', 'Chennai', '2406260004', '50', '1', 'upload_files/candidate_tracker/57573941229_KAVIPRIYAN-P-FlowCV-Resume-20240622 (1).pdf', NULL, '1', '2024-06-26', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice , communiation all good sir , candidate go for other interview so thatreason to hold the candidate  , so i will try to 7 days training period', '5', '1', '', '1', '8', '', '2', '2024-06-28', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-26 05:05:51', 112, '2024-06-26 11:06:39', 0, NULL, 1),
(19893, 'Rizwana parveen k', '6', '9940229599', '', 'k.parveenr200117@gmail.com', '2001-09-17', 22, '2', '2', 'Kuthbuddin T', '10th', 25000.00, 1, 0.00, 15000.00, 'No:633, 5th block, 131st street kodungaiyur-600118', 'Chennai', '2406260005', '50', '1', 'upload_files/candidate_tracker/94617212238_RIZWANA RESUME-Recovered-1 (1)-14.pdf', NULL, '1', '2024-06-26', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance Is Good,But Her Sustainity Is Very Doubt Due To She Is Planning For MBA In Current Year', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-26 05:20:13', 112, '2024-06-26 12:12:13', 0, NULL, 1),
(19894, 'Deepa.I', '6', '6369074822', '9962200519', 'deepaiyappan3602@gmail.com', '2009-06-26', 0, '2', '2', 'G.Iyyappan', 'Farmer', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2406260006', '50', '1', 'upload_files/candidate_tracker/58298623105_untitled 1.pdf', NULL, '1', '2024-06-26', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'over thinking', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-26 05:29:15', 112, '2024-06-26 11:24:27', 0, NULL, 1),
(19895, 'SHINYJASPER.S', '6', '7338880468', '7338748827', 'shinyjasper2003@gmail.com', '2003-11-25', 20, '2', '2', 'Marysamson.p', 'Housewife', 75000.00, 1, 0.00, 15.00, 'Perambur', 'Thiruvika Nagar', '2406260007', '50', '1', 'upload_files/candidate_tracker/49358816812_Shiny Jasper Resume.pdf', NULL, '1', '2024-06-26', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-26 05:29:18', 112, '2024-06-26 12:13:12', 0, NULL, 1),
(19896, 'Yukeshkumar', '6', '8667836050', '', 'yukeshkumar1709@gmail.com', '1999-09-17', 24, '2', '2', 'Damu Dharan', 'Mechanic', 10000.00, 0, 0.00, 15000.00, 'K.k.d nagar', 'K.k.d nagar', '2406260008', '50', '2', 'upload_files/candidate_tracker/45247796634_yukesh_kumar_11-07-2023_07.26.01_11-Jul-23_07.26.04_01-Jun-24_21.18.58-1.pdf', NULL, '1', '2024-06-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-26 05:34:23', 112, '2024-06-26 02:48:17', 0, NULL, 1),
(19897, 'AMALIN S', '6', '6374317539', '9884728439', 'pcase21cp003@gmail.com', '2003-10-11', 20, '2', '2', 'PETRICIA S', 'Home maker', 25000.00, 1, 0.00, 16000.00, 'Tondiarpet', 'Tondiarpet', '2406260009', '50', '1', 'upload_files/candidate_tracker/93641174907_Amalin Resume 6_compressed.pdf', NULL, '1', '2024-06-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-26 05:34:49', 112, '2024-06-26 11:26:58', 0, NULL, 1),
(19898, '', '0', '7338836976', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406260010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-06-26 05:40:49', 0, NULL, 0, NULL, 1),
(19899, 'Roshan V', '6', '9080201108', '7338866875', 'roshanvs2212@gmail.com', '2003-06-11', 21, '2', '2', 'N.shanmugam', 'Private sector', 8000.00, 1, 0.00, 18.00, 'Trivalur', 'Trivalur', '2406260011', '50', '1', 'upload_files/candidate_tracker/9099258817_20240626_083854.pdf', NULL, '1', '2024-06-26', 0, '', '3', '59', '2024-07-15', 192000.00, '', '', '2024-07-26', '2', 'For RE Role Can give a try Need to analyse in 7 days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '2024-07-15', 1, '2024-06-26 05:40:50', 60, '2024-07-15 08:04:36', 0, NULL, 1),
(19900, 'Kabilan', '6', '7339269976', '', 'kabilandhamu@gmail.com', '2002-12-21', 21, '1', '2', 'Ponniyammal', 'Home wife', 10000.00, 1, 0.00, 16000.00, '57kolathur post thenpakkam chengalpattu district', 'Mylapore in chennai', '2406260012', '', '1', 'upload_files/candidate_tracker/65569897017_Kabilan+-Resume-1.docx', NULL, '1', '2024-06-26', 0, '55792', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is unfit for sales, communication not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-26 05:41:20', 112, '2024-06-26 02:58:00', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19901, 'simon.m', '6', '7338836975', '9080201108', 'simonjanu07@gmail.com', '2004-06-04', 20, '2', '2', 'muthu', 'mechanice', 250000.00, 2, 0.00, 18000.00, 'tnscb colony tharamani kanagam chennai', 'taramani', '2406260013', '50', '1', 'upload_files/candidate_tracker/9326165325_20240626_095025.pdf', NULL, '1', '2024-06-26', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he has come here because he did not get the job. but not intersted this job', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-26 05:44:56', 112, '2024-06-26 02:46:17', 0, NULL, 1),
(19902, 'N.RAVINDER', '6', '7904987789', '8939432267', '121csb30ravinder@gmail.com', '2002-09-10', 21, '1', '2', 'JAMUNA', 'HOME MAKER', 20000.00, 1, 0.00, 20000.00, 'Kilpauk', 'Kilpauk', '2406260014', '', '1', 'upload_files/candidate_tracker/68535266758_resume. .pdf', NULL, '1', '2024-06-26', 0, '77827', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Is Unfit For Sales, Communication Not Good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-26 06:03:44', 112, '2024-06-26 02:56:45', 0, NULL, 1),
(19903, 'M.naveen', '6', '6381001544', '8489811281', 'murugannaveen11@gmail.com', '2002-07-02', 21, '2', '2', 'Murugan', 'Cooli', 10000.00, 1, 0.00, 15.00, 'Theni', 'Ponneri', '2406260015', '50', '1', 'upload_files/candidate_tracker/64894603812_CV_2024052313434024.pdf', NULL, '1', '2024-06-26', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not intrested to go outside', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-06-26 06:12:04', 112, '2024-06-26 02:59:40', 0, NULL, 1),
(19904, 'Sudha I', '6', '9025147114', '', 'sudhaperumal402@gmail.com', '2004-08-30', 19, '3', '2', 'Iyamperumal', 'Daily wages', 30000.00, 1, 0.00, 14000.00, 'Perungudi', 'Perungudi', '2406260016', '', '1', 'upload_files/candidate_tracker/97304249589_SudhaIResume.pdf', NULL, '1', '2024-06-26', 0, '', '3', '59', '2024-07-04', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Giri Team Interviewed in job fair Can be trained in our roles kindly analyse the candidate in 7 days and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '2024-07-04', 1, '2024-06-26 06:33:23', 60, '2024-06-27 06:34:45', 0, NULL, 1),
(19905, 'tamilarasan s', '5', '8056244216', '', 'tamilarasan58905@gmail.com', '1999-10-07', 24, '2', '2', 'selvam', 'business', 30000.00, 1, 12000.00, 20000.00, 'chennai', 'chennai', '2406260017', '1', '2', 'upload_files/candidate_tracker/5879951819_TAMILARASAN-S updated resume 2.docx', NULL, '1', '2024-06-26', 0, '', '3', '59', '2024-07-22', 252000.00, '', '3', '2024-11-30', '1', 'communication Have 1yr telecalling Exp  6 months BPO exp have exp documents Can be trained in our roles need to analyse in 7 days training hired based on the employee recommendation on his earlier performance', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55650', '55560', '2024-07-22', 1, '2024-06-26 06:33:39', 104, '2024-07-22 06:34:32', 0, NULL, 1),
(19906, 'jancy.', '5', '9003192905', '9150556558', 'jancyjancy713@gmail.com', '2002-07-08', 21, '2', '2', 'manohar.p', 'bussiness', 30000.00, 1, 18000.00, 20000.00, 'chennai', 'chennai', '2406260018', '1', '2', 'upload_files/candidate_tracker/41074909108_Resume M.Jancy.pdf', NULL, '1', '2024-06-26', 0, '', '3', '59', '2024-07-01', 240000.00, '', NULL, '2024-10-12', '1', 'Selected foir Sarath Team RM Role Need to analyse and confirm in the 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55579', '55560', '2024-07-01', 1, '2024-06-26 06:34:01', 60, '2024-07-01 06:31:42', 0, NULL, 1),
(19907, 'Thameena. M', '6', '9962315603', '', 'thameenathameena31@gmail.com', '2004-10-15', 19, '2', '2', 'M. Mohammed ali', 'Book binder', 15000.00, 1, 0.00, 15000.00, 'Thiruvotriyur ,chennai', 'Thiruvotriyur, Chennai ,', '2406260019', '50', '1', 'upload_files/candidate_tracker/63711430738_Thameena-M-FlowCV-Resume-20240616.pdf', NULL, '1', '2024-06-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-26 06:44:28', 112, '2024-06-26 03:11:42', 0, NULL, 1),
(19908, 'Viveka Shree', '6', '9092313106', '8248671345', 'vivekashree.21p267@gmail.com', '2003-12-18', 20, '3', '2', 'VENKATESON V', 'Driver', 100000.00, 1, 0.00, 20000.00, 'Chennai thambaram', 'Mudichur Thambaram', '2406260020', '', '1', 'upload_files/candidate_tracker/4490159422_viveka%20resume%20.ab.docx', NULL, '1', '2024-06-26', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not working more then 6 month', '5', '2', '', '1', '8', '', '2', '2024-07-04', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-26 07:20:13', 112, '2024-06-26 03:12:17', 0, NULL, 1),
(19909, 'Vasantha Kumar', '6', '9597835270', '', 'vasanthakumart30@gmail.com', '2001-10-07', 22, '2', '2', 'Thangaraj', 'Farmer', 6500.00, 2, 0.00, 20000.00, 'Chennai', 'Saidapet', '2406260021', '50', '1', 'upload_files/candidate_tracker/78373385281_vasanthRes p (1)-2 (1).pdf', NULL, '1', '2024-06-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-26 07:30:57', 112, '2024-06-26 02:49:07', 0, NULL, 1),
(19910, 'Parkavi .m', '33', '9791161641', '', 'parkavim439@gmail.com', '2003-12-23', 20, '2', '2', 'Mathiyalazhagan', 'Driver', 15000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2406260022', '50', '1', 'upload_files/candidate_tracker/61547817255_parkavi resume.pdf', NULL, '1', '2024-06-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-26 07:58:31', 1, '2024-06-26 08:07:48', 0, NULL, 1),
(19911, 'Karthika', '33', '9585871315', '', 'karthikavvelayudham@gmail.com', '2003-08-30', 20, '2', '2', 'Velayudham', 'Security', 15000.00, 1, 0.00, 15000.00, 'Thuraippakkam chennai', 'Thuraippakkam chennai', '2406260023', '50', '1', 'upload_files/candidate_tracker/99971164990_Karthika.V_8-1.pdf', NULL, '1', '2024-06-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-26 07:58:58', 1, '2024-06-26 08:10:45', 0, NULL, 1),
(19912, 'S.Santhosh', '6', '8925271950', '', '21.santhoshs.@gmail.com', '2003-05-21', 21, '2', '2', 'K.sugumar', 'Fisher man', 15000.00, 1, 0.00, 15.00, 'New washermenpet, tollgate', 'New washermenpet, tollgate', '2406260024', '50', '1', 'upload_files/candidate_tracker/41745314978_SanthoshS-MIS Executive.pdf', NULL, '1', '2024-06-26', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Intrested in non-voice process also he is not Rare To Adapt for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-26 09:04:07', 112, '2024-06-26 03:10:41', 0, NULL, 1),
(19913, 'Arunpandi. A', '6', '9384752820', '', 'arunpandi1122002@gmail.com', '2002-12-01', 21, '2', '2', 'P. Arul', 'Farmer', 12000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2406260025', '36', '1', 'upload_files/candidate_tracker/65728670822_ARUNPANDI. A_Professional Resume – 01.pdf', NULL, '1', '2024-06-26', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-26 10:07:56', 112, '2024-06-26 04:52:41', 0, NULL, 1),
(19914, 'madesh s', '6', '9629460782', '', 'madesh3336@gmail.com', '2003-04-11', 21, '2', '2', 'sivaprakasam v', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2406260026', '36', '1', 'upload_files/candidate_tracker/77627950186_Madesh.pdf', NULL, '1', '2024-06-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-26 10:08:04', 112, '2024-06-26 05:41:57', 0, NULL, 1),
(19915, 'D. Sivaprakash', '6', '6383583719', '9655821198', 'sivaprakashdhandapani9221@gmail.com', '2002-05-09', 22, '2', '2', 'Dhandapani', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2406260027', '36', '1', 'upload_files/candidate_tracker/67424196940_CV_2024021820402093 (1).pdf', NULL, '1', '2024-06-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-26 10:08:56', 112, '2024-06-26 05:02:27', 0, NULL, 1),
(19916, '', '0', '8778209904', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-06-27 04:18:17', 0, NULL, 0, NULL, 1),
(19917, '', '0', '9715489915', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406270002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-06-27 04:19:07', 0, NULL, 0, NULL, 1),
(19918, 'Vasugi', '6', '9344778417', '', 'vasugi0731@gmail.com', '2009-06-27', 0, '2', '2', 'J. Thirunavukkarasu', 'MRF( work man)', 300000.00, 2, 0.00, 250000.00, 'Arakkonam', 'Arakkonam', '2406270003', '50', '1', 'upload_files/candidate_tracker/94446130647_White Gold Elegant Minimalist Data Analyst Resume CV A4 Printable (1).pdf', NULL, '1', '2024-06-27', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-27 04:48:30', 112, '2024-06-27 10:59:46', 0, NULL, 1),
(19919, 'Yamuna.T', '6', '8220016266', '8122140060', 'poojayamu24@gmail.com', '2002-06-24', 22, '2', '2', 'Tamilvanan', 'Ex-military', 30000.00, 1, 0.00, 250000.00, 'Arakkonam', 'Arakkonam', '2406270004', '50', '1', 'upload_files/candidate_tracker/21370641083_Yamuna Tkp 5.pdf', NULL, '1', '2024-06-27', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate just few months only working after that go for other copany and voice also not good so not fit for my team ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-27 04:49:01', 112, '2024-06-27 11:00:09', 0, NULL, 1),
(19920, 'Gayathri S', '6', '7558190055', '', 'gayathri3602@gmail.com', '2002-06-03', 22, '2', '2', 'Sundaragopal', 'Archagar', 25000.00, 1, 0.00, 18000.00, 'Karaikudi', 'Chennai', '2406270005', '50', '1', 'upload_files/candidate_tracker/93833380727_GAYATHRI SUNDARAGOPAL (1).pdf', NULL, '1', '2024-06-27', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-27 05:28:56', 112, '2024-06-27 11:53:41', 0, NULL, 1),
(19921, 'Ramya', '6', '9360111023', '', 'ramyasenthilkumar558@gmail.com', '2001-12-30', 22, '2', '2', 'Senthil Kumar', 'Daily wager', 18000.00, 1, 0.00, 18000.00, 'Karaikudi', 'Chennai', '2406270006', '50', '1', 'upload_files/candidate_tracker/91388571057_Ramya.s.pdf', NULL, '1', '2024-06-27', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-27 05:29:21', 112, '2024-06-27 11:54:00', 0, NULL, 1),
(19922, 'A.Divya Ratchagi', '4', '7339351662', '', 'divyaratchagi445@gmail.com', '2003-03-02', 21, '2', '2', 'Thendral', 'House wife', 32.00, 2, 0.00, 12000.00, 'Kandiyoor', 'Palliyagrakaram', '2406270007', '1', '1', 'upload_files/candidate_tracker/67427245126_Resume_Job resume_Format1.pdf', NULL, '1', '2024-06-27', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1021', '', 'P1023', '5151', '1970-01-01', 1, '2024-06-27 05:53:13', 112, '2024-06-27 12:14:58', 0, NULL, 1),
(19923, 'Gurubala.M', '6', '9360896401', '9080458227', 'gurupris7@gmail.com', '1999-01-20', 25, '2', '2', 'Marisamy', 'Business', 20000.00, 1, 0.00, 12000.00, '62/1 gomathiyapuram 2 nd Street sankarankovil', 'Chennai', '2406270008', '50', '1', 'upload_files/candidate_tracker/3469185874_GURUBIO1.pdf', NULL, '1', '2024-06-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication and performance is not like good, his attire is also not good, other than candidate said his minus is never attach any one , so he never addaptable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-27 05:53:56', 112, '2024-06-27 12:29:34', 0, NULL, 1),
(19924, 'Mareswaran', '5', '6382491128', '7558108839', 'mareswaranbba@gmail.com', '1997-04-23', 27, '1', '2', 'KRISNAMMALL', 'Home', 40000.00, 0, 22000.00, 28000.00, 'Sankarankovil', 'Avadi', '2406270009', '', '2', 'upload_files/candidate_tracker/55296510898_mareswaran New.pdf', NULL, '1', '2024-06-27', 0, '55783', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit to sales and Communication skills very worst and he expect salary 25K so thats why reject this candidate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-06-27 06:36:01', 112, '2024-06-27 12:33:16', 0, NULL, 1),
(19925, 'Vignesh', '6', '8428323904', '', 'vickysridha2601@gmail.com', '1999-01-26', 25, '2', '2', 'Sridhar', 'Security', 5000.00, 0, 14000.00, 20000.00, '22/c17 srinivasan puram kaladipet Chennai 19', '22/C17 Srinivasan Puram Kaladipet Chennai 19', '2406270010', '50', '2', 'upload_files/candidate_tracker/41345856743_Vickyresume (2).pdf', NULL, '1', '2024-06-27', 15, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'interested non voice ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-27 06:51:17', 112, '2024-06-27 01:33:45', 0, NULL, 1),
(19926, 'Sunil Kumar', '6', '9791134892', '9841705960', 'sunilhero0033@gmail.com', '2000-03-27', 24, '2', '2', 'Rajendran', 'Shop', 15000.00, 1, 16000.00, 18000.00, 'No 87 vinayagar Kovil street new nappalayam', 'No 87 Vinayagar Kovil Street New Nappalayam', '2406270011', '50', '2', 'upload_files/candidate_tracker/96178600556_Document (2).pdf', NULL, '1', '2024-06-27', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Over all 3yrs Experience, Sustainability issues, appearance not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-27 06:52:15', 112, '2024-06-27 01:34:37', 0, NULL, 1),
(19927, 'V.vignesh', '6', '6374079404', '7339481411', 'vigneshv2317@gmail.com', '2002-07-17', 21, '2', '2', 'N.velu', 'Vrl logistics', 35000.00, 1, 0.00, 16000.00, 'Minambakkam ,chennai', 'Minambakkam,chennai', '2406270012', '42', '1', 'upload_files/candidate_tracker/3930451058_vigneshresume-1.pdf', NULL, '1', '2024-06-27', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'interested in it related ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-06-27 07:08:55', 112, '2024-06-27 01:32:51', 0, NULL, 1),
(19928, 'Raja sundhari', '6', '9840383060', '9566043908', 'rajialangaram936@gmail.com', '2004-02-16', 20, '2', '2', 'Alangaram', 'Labour', 15000.00, 1, 0.00, 20.00, 'Chennai', 'Chennai', '2406270013', '42', '1', 'upload_files/candidate_tracker/27559280794_Resume-1.pdf', NULL, '1', '2024-06-27', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is so fear and trembling voice and and very long distance so not fit for my team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-06-27 07:10:38', 112, '2024-06-27 01:35:27', 0, NULL, 1),
(19929, 'R. Raghu', '6', '7339481411', '', 'crazyraghu73@gmail.com', '2009-06-27', 0, '2', '2', 'P. Ravi', 'Gardener', 12000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2406270014', '42', '1', 'upload_files/candidate_tracker/6635533395_Isabel Mercado-1.pdf', NULL, '3', '2024-06-27', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-27 07:13:51', 112, '2024-06-27 01:36:20', 0, NULL, 1),
(19930, 'Gowtham M', '6', '8754885158', '9176555828', 'gowthammangalselvam@gmail.com', '2002-01-28', 22, '2', '2', 'Mangal Selvam R', 'Driver', 12000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2406270015', '50', '1', 'upload_files/candidate_tracker/19118727313_Gowtham resume .pdf', NULL, '1', '2024-06-27', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he has a lot of Interest in the it field. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-27 07:50:12', 112, '2024-06-27 02:46:22', 0, NULL, 1),
(19931, 'Nethra K', '6', '9176369159', '', 'nethrak380@gmail.com', '2000-10-30', 23, '2', '2', 'Yogalakshmi K', 'BA sales', 25000.00, 0, 275000.00, 375000.00, 'Chennai', 'Chennai', '2406270016', '1', '2', 'upload_files/candidate_tracker/9324508158_Neth res fi.pdf', NULL, '1', '2024-06-27', 1, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1021', '', '', '', '1970-01-01', 1, '2024-06-27 09:27:29', 112, '2024-06-27 03:30:49', 0, NULL, 1),
(19932, 'Narasimma .k', '5', '7845083665', '8939198676', 'Narasimmak8498@gmail.com', '1998-04-08', 26, '2', '2', 'Kumar.D', 'Steel polishing', 20000.00, 1, 22000.00, 25000.00, 'Chennai Moolakadai', 'Chennai Moolakadai', '2406270017', '50', '2', 'upload_files/candidate_tracker/75452209976_CV_NARASIMMA_K-1.pdf', NULL, '1', '2024-06-27', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not fit for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55567', '55557', '1970-01-01', 1, '2024-06-27 09:30:21', 112, '2024-06-27 03:50:48', 0, NULL, 1),
(19933, 'Jayashree V', '33', '9444056523', '', 'jayashreejs2001@gmail.com', '2001-09-06', 22, '1', '2', 'Vasudevan', 'Security', 10000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2406270018', '', '1', 'upload_files/candidate_tracker/66882865580_resume.docx', NULL, '1', '2024-06-27', 0, '77828', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-27 09:49:14', 1, '2024-06-27 09:53:57', 0, NULL, 1),
(19934, 'Naveen Kumar L', '5', '7826964106', '', 'naveenlucas@gmail.com', '1999-01-07', 25, '2', '2', 'Lucas Devasagayam', 'CRPF', 5.00, 2, 0.00, 30000.00, 'Tiruttani', 'Chennai', '2406270019', '1', '1', 'upload_files/candidate_tracker/83241028216_DOC-20240617-WA0000..pdf', NULL, '1', '2024-06-27', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'IT candidate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', 'H1017', '', '55579', '55560', '1970-01-01', 1, '2024-06-27 09:51:42', 112, '2024-06-28 11:15:39', 0, NULL, 1),
(19935, 'Sandhiya', '5', '8667074332', '9385788663', 'sandhiya02062001@gmail.com', '2001-09-06', 22, '2', '2', 'Murali', 'LIC agent', 20000.00, 1, 21000.00, 25000.00, 'Sholinghur', 'Chennai', '2406270020', '1', '2', 'upload_files/candidate_tracker/50336051449_Sandhiya M.pdf', NULL, '1', '2024-06-27', 15, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'worked in inbound calls area, very low voice and no confident on her voice.  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', 'H1017', '', '55580', '55560', '1970-01-01', 1, '2024-06-27 09:52:55', 112, '2024-06-27 03:53:15', 0, NULL, 1),
(19936, 'DINESH S', '6', '9710214215', '', 'dkarthik421@gmail.com', '2001-12-28', 22, '1', '2', 'SRIDHARAN V', 'Corporation', 35000.00, 2, 0.00, 22000.00, 'Tondiarpet', 'Velachery', '2406280001', '', '2', 'upload_files/candidate_tracker/10094269474_Adobe Scan Jun 28, 2024.pdf', NULL, '1', '2024-06-28', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'cANDIDATE IS OK BUT SALARY EXPECTATION HIGH, 6M ONLY EXPERIENCE. REJECT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-06-28 04:55:25', 112, '2024-06-28 11:30:07', 0, NULL, 1),
(19937, 'Sasikumar A', '5', '8754455986', '8248088439', 'Sasikumar.slave@gmail.com', '1988-04-30', 36, '1', '1', 'Rekha', 'Housewife', 35000.00, 0, 35000.00, 40000.00, 'Chennai', 'Chennai', '2406280002', '', '2', 'upload_files/candidate_tracker/43441040826_Resume sasi (3).pdf', NULL, '1', '2024-06-28', 15, '55709', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for mani team, reference candi.. check resume for performance hike', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-06-28 05:06:52', 112, '2024-06-28 12:38:13', 0, NULL, 1),
(19938, 'Karolin', '6', '8754450731', '', 'kkarolinselvaraj@gmail.co', '2004-06-08', 20, '2', '2', 'Selvaraj,Anbu Saleth Mary', 'Grarnet company worker', 14000.00, 1, 0.00, 16000.00, 'No - 20 Paul More street West Mambalam Chennai 33', 'No-20 Paul More street West Mambalam Chennai 33', '2406280003', '50', '1', 'upload_files/candidate_tracker/84959486839_Karolin Resume pdf (1) (1).pdf', NULL, '1', '2024-06-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-28 05:16:16', 112, '2024-06-28 11:43:17', 0, NULL, 1),
(19939, 'Harini. A', '6', '7299260459', '', 'hariniranand@gmail.com', '2003-11-14', 20, '2', '2', 'Anand.R', 'Southern railway porters', 14.00, 1, 0.00, 15.00, 'Pulianthope high road Chennai-12', 'Pulianthope high road Chennai-12', '2406280004', '50', '1', 'upload_files/candidate_tracker/11021824988_Harini A - 05-Feb-2024.pdf', NULL, '1', '2024-06-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-28 05:18:54', 112, '2024-06-28 11:43:01', 0, NULL, 1),
(19940, 'Akshay suriya', '6', '7338756071', '8637677464', 'akshaymasss1998@gmail.com', '1998-10-28', 25, '2', '2', 'Suresh', 'Bussiness', 30000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2406280005', '50', '1', 'upload_files/candidate_tracker/50487052203_1618992310215Resume_Akshaysuriya_Akshaysuriya.pdf', NULL, '1', '2024-06-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-28 05:20:11', 112, '2024-06-28 11:30:57', 0, NULL, 1),
(19941, 'Manjula', '5', '6385596128', '', 'manjulanet96@gmail.com', '1998-03-11', 26, '2', '2', 'Vijayalatha', 'Teacher', 12000.00, 1, 0.00, 15000.00, 'Puducherry', 'Puducherry', '2406280006', '50', '1', 'upload_files/candidate_tracker/52249180732_White Simple Student CV Resume_20240502_102045_0000.pdf', NULL, '1', '2024-06-28', 0, '', '3', '59', '2024-07-01', 240000.00, '', '3', '2024-08-02', '2', 'Selected for  RM role Fresher can be trained in our sales roles PG graduate Communication Ok Can try for our role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '2024-07-01', 1, '2024-06-28 05:59:23', 60, '2024-07-01 06:33:12', 0, NULL, 1),
(19942, 'Hariharan', '6', '9500801655', '', 'hariharan2731999@gmail.com', '1999-03-27', 25, '2', '2', 'Balasubramani', 'Business', 25000.00, 1, 0.00, 15000.00, '1/81 Thiruvanmalai main road Vishamangalam', 'Chennai', '2406280007', '50', '1', 'upload_files/candidate_tracker/7914403634_Hariharan balasubramani.pdf', NULL, '1', '2024-06-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-28 06:16:10', 112, '2024-06-28 12:31:40', 0, NULL, 1),
(19943, 'chandra sekar g s', '6', '8056273731', '7358363505', 'chandchandru180@gmail.com', '2001-09-06', 22, '1', '2', 'srinivasan', 'sales coordinator', 20000.00, 1, 0.00, 15000.00, 'chennai triplicane', 'chennai', '2406280008', '', '1', 'upload_files/candidate_tracker/88931431984_Chandra 123.pdf', NULL, '1', '2024-06-28', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'more playfulness ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-28 06:50:32', 112, '2024-06-28 12:53:34', 0, NULL, 1),
(19944, 'JayaRanjan', '6', '7358368505', '8056273731', 'jayaranjan0801@gmail.com', '2001-06-29', 22, '1', '2', 'vijayakandeepan', 'buisness', 25000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2406280009', '', '1', 'upload_files/candidate_tracker/27073434572_Jayaranjan', NULL, '1', '2024-06-28', 0, '77920', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic knowledge', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-28 06:50:35', 112, '2024-06-28 12:54:34', 0, NULL, 1),
(19945, 'M. Shobana', '6', '6369848935', '', 'Shobanamsgm@gmail.com', '2002-06-06', 22, '2', '2', 'Murugan. P', 'Daily wages', 60000.00, 2, 0.00, 18.00, 'Ranipet', 'Chennai', '2406280010', '50', '1', 'upload_files/candidate_tracker/84106005635_Shobana Resume 2024.pdf', NULL, '1', '2024-06-28', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'location too long so not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-28 07:05:15', 112, '2024-06-28 04:15:05', 0, NULL, 1),
(19946, 'deepa', '4', '9363102445', '', 'deepasumathi313@gmail.com', '2002-05-21', 22, '2', '2', 'manjula', 'housewife', 5000.00, 0, 0.00, 20000.00, 'madipakkam', 'madipakkam', '2406280011', '50', '1', 'upload_files/candidate_tracker/34839137295_Deepa Resume.pdf', NULL, '1', '2024-06-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-06-28 07:10:29', 112, '2024-06-28 02:58:30', 0, NULL, 1),
(19947, '', '0', '6382926487', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406280012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-06-28 07:34:34', 0, NULL, 0, NULL, 1),
(19948, 'lakshmi hs', '25', '8088299081', '9019754770', 'lakshmimegha43@gmail.com', '2003-04-04', 21, '3', '2', 'shubramanya hn', 'driver', 300000.00, 0, 0.00, 20000.00, 'hassan', 'bengaluru', '2406280013', '', '1', 'upload_files/candidate_tracker/99439321461_Lakshmi cv .pdf', NULL, '1', '2024-06-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-28 12:21:59', 1, '2024-06-28 01:01:35', 0, NULL, 1),
(19949, 'khushi d', '25', '9019754770', '8088299081', 'khushid13602@gmail.com', '2002-06-13', 22, '3', '2', 'nisha', 'house wife', 200000.00, 0, 0.00, 20000.00, 'vijay nagar hassan', 'bengaluru', '2406280014', '', '2', 'upload_files/candidate_tracker/61492496596_Khush resume.pdf', NULL, '1', '2024-06-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-28 12:22:02', 1, '2024-06-28 12:38:24', 0, NULL, 1),
(19950, '', '0', '9597993272', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-06-29 04:25:55', 0, NULL, 0, NULL, 1),
(19951, 'Sindhiya.R', '6', '9444550852', '', 'sindhiyaraghavel@gmail.com', '2003-10-09', 20, '2', '2', 'Ragavel.G', 'Coolie', 8000.00, 1, 0.00, 16.00, 'Chennai', 'Chennai', '2406290002', '50', '1', 'upload_files/candidate_tracker/70695109256_creative hands hr consultancy. pdf(1).pdf', NULL, '1', '2024-06-29', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'In the interview he remained silent', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-06-29 04:57:12', 104, '2024-06-29 11:11:11', 0, NULL, 1),
(19952, 'Kaviya', '6', '9080889915', '', 'kaviyamanoharan1604@gmail.com', '2002-09-04', 21, '2', '2', 'G. manoharan', 'Tailor', 8000.00, 1, 0.00, 16.00, 'Chennai', 'Chennai', '2406290003', '50', '1', 'upload_files/candidate_tracker/81767629764_creative hands hr consultancy. pdf(1).pdf', NULL, '1', '2024-06-29', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interviewed by banu mam ,as discussion with banu mam, her  sugesstion  is candidate comes from thirunindravur ,Also candidate not performed well in the interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-06-29 04:59:59', 104, '2024-06-29 11:14:07', 0, NULL, 1),
(19953, 'SURESH S', '5', '6382583453', '9585599566', 'sureshlikitha333@gmail.com', '1995-05-10', 29, '2', '2', 'Subramani', 'Tme', 24000.00, 5, 24000.00, 26000.00, 'thuruvarur district Tamilnadu -631207.', 'Ekkattuthangal', '2406290004', '1', '2', 'upload_files/candidate_tracker/45238892335_Suresh Resume (4).docx', NULL, '1', '2024-06-29', 0, '', '3', '59', '2024-07-08', 320000.00, '', '3', '2024-08-03', '1', 'Communication Good Can be trained in our insurance role Previous exp no sustainability but has reasons can give a try and analyse in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55580', '55560', '2024-07-11', 1, '2024-06-29 05:27:22', 60, '2024-07-11 10:02:25', 0, NULL, 1),
(19954, 'Rathish.s', '6', '8610714377', '9952379942', 'rathishrathish572@gmail.com', '2000-09-04', 23, '2', '2', 'R.sivasankar', 'Manager in tvs company', 20000.00, 0, 0.00, 15000.00, 'Anna nagar', 'Anna nagar', '2406290005', '50', '1', 'upload_files/candidate_tracker/6995562624_Plan-Vouchers-1-Dec-2021.pdf', NULL, '1', '2024-06-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'expect high salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-29 06:23:59', 104, '2024-06-29 01:29:38', 0, NULL, 1),
(19955, 'V. Salini', '21', '8825879480', '', 'salinivel2003@gmail.com', '2003-04-26', 21, '3', '2', 'Velmurugan', 'BBA', 500000.00, 0, 0.00, 15000.00, '22/141 park Street Nehru nagar ennore', 'Chennai', '2406290006', '', '1', 'upload_files/candidate_tracker/42061789936_RESUMEsalini-1.pdf', NULL, '1', '2024-06-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-06-29 06:31:04', 1, '2024-06-29 06:37:38', 0, NULL, 1),
(19956, 'Elavarasi R', '5', '9445150346', '9597399474', 'ela190697@gmail.com', '1996-10-27', 27, '2', '1', 'Nivash p', 'Network engineer', 50000.00, 1, 0.00, 20000.00, 'Dharmapuri', 'Chennai', '2406290007', '50', '1', 'upload_files/candidate_tracker/92630369497_Elavarasi.pdf', NULL, '1', '2024-06-29', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is not ok, sustainability doubt.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-06-29 07:51:49', 104, '2024-07-01 06:40:44', 0, NULL, 1),
(19957, 'YAMINI S', '6', '6385918439', '9551290987', 'yaminisneha231@gmail.com', '2003-07-11', 20, '1', '2', 'SARAVANAN C', 'DRIVER', 119000.00, 1, 0.00, 15000.00, 'No : 29 RETTAIMALAI SRINIVASAN NAGER TVT CH - 19', 'No : 29 RETTAIMALAI SRINIVASAN NAGER tVT Ch- 19', '2406290008', '', '1', 'upload_files/candidate_tracker/98987873753_Scan 29 Jun 24 11·15·47.pdf', NULL, '1', '2024-06-29', 0, '200524', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Reference by Madhu and She is working in Hdfc Loan Process ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-06-29 10:48:00', 104, '2024-07-01 06:40:19', 0, NULL, 1),
(19958, '', '0', '9791127626', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2406300001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-06-30 07:04:54', 0, NULL, 0, NULL, 1),
(19959, 'Mani P', '6', '8056407709', '', 'Pmani6273@gmail.com', '2004-02-16', 20, '2', '2', 'Purushothaman', 'Farmer', 18000.00, 0, 0.00, 16000.00, 'Indiravanam', 'Chennai', '2406300002', '1', '1', 'upload_files/candidate_tracker/15840751447_MANI P RESUME .pdf', NULL, '3', '2024-07-01', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50/50, have part time experience but dnt have proof for his salry, exp 18k we can provide max 16k, Will try', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', '55577', '5151', '1970-01-01', 1, '2024-06-30 07:20:27', 104, '2024-07-01 06:52:29', 0, NULL, 1),
(19960, 'Parveen Banu', '17', '6382210984', '7550234064', 'parveenoutlook23@gmail.com', '1997-02-23', 27, '2', '2', 'Hassain basha', 'Client specialist', 75000.00, 2, 27000.00, 35000.00, 'Chennai', 'Chennai', '2406300003', '1', '2', 'upload_files/candidate_tracker/4893088242_Parveen Banu_November12-083055PM.pdf', NULL, '2', '2024-07-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '4', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2024-06-30 10:11:23', 1, '2024-06-30 10:17:57', 0, NULL, 1),
(19961, 'Mohan rasu.D', '5', '6369019855', '9751228195', 'mohanrasu110@gmail.com', '2000-03-18', 24, '1', '2', 'Deventhiran', 'Former', 8000.00, 0, 18000.00, 24000.00, 'Vellore', 'Vellore', '2407010001', '', '2', 'upload_files/candidate_tracker/35879455393_Mohan_CV (1).docx', NULL, '3', '2024-07-01', 0, '123', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected as low interaction skill and sales is not suitable for him', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-07-01 04:48:01', 104, '2024-07-01 06:47:56', 0, NULL, 1),
(19962, 'Sangeetha V', '5', '8248142152', '9710052464', 'sangeethav1323@gmail.com', '2004-04-13', 20, '2', '2', 'Vengatesan P', 'Daily wages', 20000.00, 1, 0.00, 20000.00, 'Pattabiram', 'Pattabiram', '2407010002', '34', '1', 'upload_files/candidate_tracker/76435575998_Sangeetha Resume-1.pdf', NULL, '1', '2024-07-01', 0, '', '3', '59', '2024-07-03', 168000.00, '', '2', '1970-01-01', '2', 'Communication Ok Fresher but too long distance sustainability doubts a lot need to check in 7days and confirm Open for travel', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', 'Location Constraint', '', '', '', '55666', '5151', '2024-07-03', 1, '2024-07-01 04:57:30', 60, '2024-07-03 05:47:16', 0, NULL, 1),
(19963, 'Gokul.k', '6', '7305316063', '9677166539', 'gokulgomathi2422@gmail.com', '2003-08-24', 20, '2', '2', 'Kumar.n', 'Carpenter', 20000.00, 0, 0.00, 30000.00, 'Thiruninravur', 'Thiruninvavur', '2407010003', '34', '1', 'upload_files/candidate_tracker/8854326145_Adobe Scan May 30, 2024.pdf', NULL, '1', '2024-07-01', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-01 04:58:22', 104, '2024-07-01 06:48:13', 0, NULL, 1),
(19964, 'DEJVISHNURAJ', '6', '9361703876', '9094543667', 'dejvishnurajmbcs21.krmmc@gmail.com', '2002-12-24', 21, '2', '1', 'Mohan', 'Auto driver', 100000.00, 1, 15000.00, 20000.00, 'Adyar', 'Adyar', '2407010004', '42', '2', 'upload_files/candidate_tracker/20763392758_DEJ RESUME.docx', NULL, '1', '2024-07-01', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Already part time working in Customer support so, interested in non voice ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-01 05:18:00', 104, '2024-07-01 06:49:00', 0, NULL, 1),
(19965, 'sriram', '5', '9790749183', '', 'sb5760023@gmail.com', '2000-01-13', 24, '2', '2', 'r balaji', 'driver', 15000.00, 1, 17000.00, 20000.00, 'chennai', 'chennai', '2407010005', '50', '2', 'upload_files/candidate_tracker/5856002995_SRI RAM RESUME.docx', NULL, '1', '2024-07-01', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Confidence on speech', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-07-01 05:28:38', 104, '2024-07-01 06:50:43', 0, NULL, 1),
(19966, 'Seyed Ahamed Rabiudeen', '13', '9092806464', '', 'ahamedrabiu457@gmail.com', '2002-06-04', 22, '3', '2', 'Noorul Haq', 'Driver', 10000.00, 0, 0.00, 25000.00, 'No.18/107 South Street, Kilakarai, Ramanathapuram', 'No.59/54 Nainappa Street, Mannady, Chennai', '2407010006', '', '1', 'upload_files/candidate_tracker/82685167157_Resume-2.pdf', NULL, '1', '2024-07-01', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-01 05:38:58', 104, '2024-07-01 01:17:18', 0, NULL, 1),
(19967, 'Kathija Bee', '4', '7401778517', '7299180120', 'Kathijaba@gmail.com', '1993-07-25', 30, '3', '1', 'Mohammad Farook', 'Labour', 20000.00, 0, 25000.00, 30000.00, 'Chennai', 'Chennai', '2407010007', '', '2', 'upload_files/candidate_tracker/86481569456_A.S. Kathija RESUME- Updated (1).docx', NULL, '1', '2024-07-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-01 05:45:52', 104, '2024-07-01 01:31:37', 0, NULL, 1),
(19968, 'Bhuvaneshwari', '6', '6381758457', '', 'bhuvishabhuvisha17436@gmail.com', '2000-11-20', 23, '2', '2', 'Selvi', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Ariyalur', 'Ariyalur', '2407010008', '42', '1', 'upload_files/candidate_tracker/5187760152_Bhuvanashwari_Resume.docx', NULL, '1', '2024-07-01', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate not move on near by office so not selected ', '5', '1', '', '1', '8', '', '2', '2024-07-03', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-01 05:57:53', 104, '2024-07-01 06:50:35', 0, NULL, 1),
(19969, 'Pavithra', '6', '9345794142', '8667410972', 'manjula1984march@gmail.com', '2003-08-02', 20, '2', '2', 'N.venkatesan', 'Freshers', 45000.00, 1, 0.00, 20000.00, 'Chennai', 'Virugambakkam', '2407010009', '42', '1', 'upload_files/candidate_tracker/16915997894_resume pavithra V (1).pdf', NULL, '1', '2024-07-01', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50% ok. but Doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-01 06:06:28', 104, '2024-07-01 06:50:22', 0, NULL, 1),
(19970, 'Vijayalakshmi M', '6', '8778255056', '', 'viji112102@gmail.com', '2002-11-21', 21, '2', '2', 'E.Mani', 'Mason', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407010010', '49', '1', 'upload_files/candidate_tracker/52832396534_resume (3).pdf', NULL, '1', '2024-07-01', 0, '', '3', '59', '2024-07-05', 168000.00, '', '2', '1970-01-01', '2', 'Communication Ok fresher seems not much comfort with the timings Need to analyse and confirm in 7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', 'Not comfortable with the timing', '', '', '', '55645', '5151', '2024-07-05', 1, '2024-07-01 06:06:45', 60, '2024-07-06 10:11:16', 0, NULL, 1),
(19971, 'Jaganath.r', '4', '9790004965', '', 'jaganjagan43839@gmail.com', '2002-12-07', 21, '3', '2', 'Rajkumar.B', 'B.com', 10000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2407010011', '', '2', 'upload_files/candidate_tracker/29360727924_resume 1.docx', NULL, '1', '2024-07-01', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-01 06:09:15', 104, '2024-07-01 01:31:53', 0, NULL, 1),
(19972, 'Mohamed Faizal', '13', '9150200348', '', 'mohamedfaizal1143@gmail.com', '2003-04-11', 21, '2', '2', 'Mohamed Usman', 'Student', 8000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2407010012', '27', '1', 'upload_files/candidate_tracker/84729608113_Resume (G).pdf', NULL, '1', '2024-07-01', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-01 06:11:06', 104, '2024-07-01 01:20:05', 0, NULL, 1),
(19973, 'RAJESH', '20', '8667788711', '9698944641', 'rajeshkarthikeyan333@gmail.com', '2000-04-18', 24, '1', '2', 'MOHAN', 'Store attendander', 28000.00, 2, 16000.00, 20000.00, 'Sivan Kovil Street AnnamalaiNagar chidambaram', 'AnnamalaiNagar chidambaram', '2407010013', '', '2', 'upload_files/candidate_tracker/65893131976_493194390Press News for SGT - 2024.pdf', NULL, '1', '2024-07-01', 0, 'Nandha', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Not well and he looking iT jobs , Team Reference ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-01 06:16:24', 104, '2024-07-01 01:29:39', 0, NULL, 1),
(19974, 'M.joshva praveen', '5', '7358314707', '7708715247', 'joshvapraveen46@gmail.com', '2002-05-17', 22, '2', '2', 'Manoharan', 'Supervisor', 15000.00, 1, 17000.00, 20000.00, 'Thousand lights', 'Saidapet', '2407010014', '1', '2', 'upload_files/candidate_tracker/54756215276_CV.pdf', NULL, '1', '2024-07-01', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected due to   no convincing skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55650', '55560', '1970-01-01', 1, '2024-07-01 06:16:27', 104, '2024-07-02 01:31:41', 0, NULL, 1),
(19975, 'Velu', '5', '7708715247', '7358314707', 'selvarajvel8@gmail.com', '1999-09-19', 24, '2', '2', 'Selvaraj', 'Farmer', 25000.00, 1, 16000.00, 20000.00, 'Tambaram', 'Tambaram', '2407010015', '1', '2', 'upload_files/candidate_tracker/68865498803_vel_selvaraj.pdf', NULL, '1', '2024-07-01', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not ok', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55579', '55560', '1970-01-01', 1, '2024-07-01 06:16:35', 104, '2024-07-01 06:49:56', 0, NULL, 1),
(19976, 'Aravind K', '6', '9094140373', '9551951312', 'aravind11012004@gmail.com', '2004-01-11', 20, '1', '2', 'Kandhasamy P', 'Driver', 100000.00, 1, 0.00, 16000.00, 'Thiruvottiyur Chennai', 'Thiruvottiyur Chennai', '2407010016', '', '1', 'upload_files/candidate_tracker/30142252973_Aravind', NULL, '1', '2024-07-01', 0, '1234', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Distance  long and sustainability was doubt', '5', '2', '', '1', '8', '', '2', '2024-07-04', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-01 06:20:36', 104, '2024-07-01 01:29:15', 0, NULL, 1),
(19977, 'aparnaa', '6', '6382835935', '9360195523', 'aparnaagv@gmail.com', '2002-03-24', 22, '2', '2', 'gurusamy', 'headmaster', 80000.00, 0, 0.00, 20.00, 'vandavasi', 't nagar', '2407010017', '50', '1', 'upload_files/candidate_tracker/61293267482_Resumee .pdf', NULL, '1', '2024-07-01', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Performance good but communication level and voice is low ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-01 06:27:57', 104, '2024-07-01 06:49:29', 0, NULL, 1),
(19978, 'B KESAVAN', '6', '9360195523', '6382835935', 'bmkesavan3@gmail.com', '2002-06-15', 22, '2', '2', 'Malarvezhi', 'House wife', 50000.00, 1, 0.00, 18.00, '5/545 vadavandai vanniyer street nallur', 'Nallur', '2407010018', '50', '1', 'upload_files/candidate_tracker/13440133994_B.KESAVAN RESUME.pdf', NULL, '1', '2024-07-01', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performance is not good ,Then his communication little bit slowly and voice is not good.candidate more intrested in iT Job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-01 06:28:11', 104, '2024-07-01 01:28:45', 0, NULL, 1),
(19979, 'S. P. Santhosh kumar', '5', '7708677055', '9003997647', 'spsanthosh1422@gmail.com', '2000-09-14', 23, '1', '2', 'S. Prabahakaran', 'Business', 400000.00, 3, 17600.00, 26000.00, 'Sattur', 'Chennai', '2407010019', '', '2', 'upload_files/candidate_tracker/90431868223_Santhosh Kumar Resume (2).pdf', NULL, '1', '2024-07-01', 2, '12345', '3', '59', '2024-07-08', 220000.00, '', NULL, '2024-09-30', '2', 'Commuication Ok Fresher for our roles  1 month exp in HDB PL through teamlease (210500 PA)- will not be a proper relieving having bajaj CD sales but no documents pertaining that', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '2024-07-08', 1, '2024-07-01 06:49:01', 60, '2024-07-08 10:41:39', 0, NULL, 1),
(19980, 'Sathya k', '6', '9003293836', '', 'Satyasanju1995@gmail.com', '1995-06-14', 29, '1', '2', 'Rani k', 'House keeping', 6000.00, 0, 14000.00, 15000.00, 'Purasaiwalkam', 'Kolathur', '2407010020', '', '2', 'upload_files/candidate_tracker/2072496182_sathya akka resume.pdf', NULL, '1', '2024-07-01', 0, '77828', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate previously work some years but not vocie process ad voice also not good and very long distance so not fit for my team ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-01 06:52:45', 104, '2024-07-01 01:28:31', 0, NULL, 1),
(19981, 'Christina mary', '6', '9345065012', '6379599429', 'christinakdbby@gmail.com', '2004-10-23', 19, '3', '2', 'Velankanni', 'Farmer', 12000.00, 0, 0.00, 18000.00, 'Villupuram', 'Chennai', '2407010021', '', '1', 'upload_files/candidate_tracker/6861210283_christinaresume.pdf', NULL, '1', '2024-07-01', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he could not even give a self intro', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-01 09:28:22', 104, '2024-07-01 06:48:43', 0, NULL, 1),
(19982, 'Nanet S', '6', '6374541589', '', 'Pmani6273@gmail.com', '2004-02-16', 20, '3', '2', 'Suvaikkin', 'Farmer', 15000.00, 4, 0.00, 16000.00, 'Melsithamur', 'Chennai', '2407010022', '', '1', 'upload_files/candidate_tracker/42823373797_S. NANET RESUME .pdf', NULL, '1', '2024-07-01', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no skill , no communication skill , and she only just attend  the interview , not interest to working so notfit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-01 09:30:04', 104, '2024-07-01 06:48:36', 0, NULL, 1),
(19983, 'vasantha kumar', '6', '6381688069', '', 'vk1783770@gmail.com', '2003-12-15', 20, '3', '2', 'chinnaparaj', 'farmer', 20000.00, 2, 0.00, 15000.00, 'villupuram', 'kolivilampakkam', '2407010023', '', '1', 'upload_files/candidate_tracker/82457456079_vasanthakumar ok 123.pdf', NULL, '1', '2024-07-01', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate only looking for nonvoice process only and high expection so  not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-01 09:31:51', 104, '2024-07-01 06:48:27', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19984, 'Geetha E', '6', '8610941724', '9597983802', 'geethaethiraj6@gmail.com', '2004-12-15', 19, '3', '2', 'Mangalakhsmi E', 'Labour work', 70000.00, 2, 0.00, 18000.00, 'Thindivanam', 'Chennai', '2407010024', '', '1', 'upload_files/candidate_tracker/96005055450_Geetha Resume.pdf', NULL, '1', '2024-07-01', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-07-01 09:33:55', 104, '2024-07-01 06:51:33', 0, NULL, 1),
(19985, 'Monisha S', '6', '6383663019', '', 'monishaselvam2803@gmail.com', '2003-04-28', 21, '3', '2', 'Selvam and ezhilarasi', 'Farmer', 60000.00, 1, 0.00, 18000.00, 'Kumbakonam', 'Chennai', '2407010025', '', '1', 'upload_files/candidate_tracker/21240818559__Monisha S.docx.pdf', NULL, '1', '2024-07-01', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication not good. unfit for sales.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-01 09:38:10', 104, '2024-07-01 06:51:52', 0, NULL, 1),
(19986, 'Deepsika.G', '6', '9159058514', '', 'deepsikagunasekaran@gmail.com', '2002-08-24', 21, '3', '2', 'R.gunasekaran', 'Farmer', 40.00, 3, 0.00, 20.00, 'Kumbakonam', 'Madipakkam', '2407010026', '', '1', 'upload_files/candidate_tracker/61804748589_deepsi- resume.pdf', NULL, '1', '2024-07-01', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-01 09:40:11', 104, '2024-07-01 06:47:42', 0, NULL, 1),
(19987, '', '0', '9363500830', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407010027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-01 02:13:54', 0, NULL, 0, NULL, 1),
(19988, '', '0', '9344080024', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407010028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-01 02:29:46', 0, NULL, 0, NULL, 1),
(19989, 'Amala Bharathi.S', '6', '9025501691', '', 'amalabharathi245@gmail.com', '2002-11-24', 21, '2', '2', 'Savarimuthu. M', 'Coolie', 20000.00, 2, 0.00, 14000.00, 'Tambaram', 'Tambaram', '2407020001', '1', '1', 'upload_files/candidate_tracker/73440174986_Resume_AMALA BHARATHI. S_Format3 (8).pdf', NULL, '1', '2024-07-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication is Little Bit Only Good .but she Performed very slowly ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55666', '5151', '1970-01-01', 1, '2024-07-02 03:47:20', 104, '2024-07-02 11:35:13', 0, NULL, 1),
(19990, 'K.Sandhiya', '6', '7358317899', '8680009832', 'sandhiyasumathi2330@gmail.com', '2004-05-30', 20, '1', '2', 'M.Kumar', 'Auto diver', 12000.00, 0, 0.00, 15000.00, 'No.13/15J kanakkar street theradi tvt chennai', 'No 42 d block ellaiyamman Kovil street tvt', '2407020002', '', '1', 'upload_files/candidate_tracker/17212328169_NEW SANDHIYA RESUME.pdf', NULL, '1', '2024-07-02', 0, '12345', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability was doubt', '5', '2', '', '1', '8', '', '2', '2024-07-04', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-02 04:30:43', 60, '2024-07-03 05:43:42', 0, NULL, 1),
(19991, 'darthi', '6', '7305840584', '', 'Darthi.1998@gmail.com', '1998-05-26', 26, '2', '2', 'venkatesan', 'supervisior', 70.00, 1, 0.00, 20.00, 'perambur', 'perambur', '2407020003', '50', '1', 'upload_files/candidate_tracker/73258747003_DARTHI-1.pdf', NULL, '1', '2024-07-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-02 05:25:40', 104, '2024-07-02 12:14:16', 0, NULL, 1),
(19992, 'Philomina mary', '20', '6374463419', '8835704961', 'philominamarys2003@gmail.com', '2003-01-02', 21, '2', '1', 'Deepan', 'Site executive manager', 80000.00, 1, 16000.00, 15000.00, 'No:256 kaviarsu kanadasan nagar koduingayur', 'No:256 Kaviarsu Kanadasan Nagar Koduingayur', '2407020004', '50', '2', 'upload_files/candidate_tracker/4659041118_New Document 3.pdf', NULL, '3', '2024-07-02', 1, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-02 05:40:05', 104, '2024-07-02 04:51:26', 0, NULL, 1),
(19993, 'Anjukanakaroa', '6', '8925100930', '9940394899', 'anjukanakaroa@gamil.com', '2003-12-02', 20, '2', '2', 'Hari Priya', 'House wife', 15000.00, 2, 16000.00, 15000.00, '10/30 milk street solpet', 'Arakkonam', '2407020005', '50', '2', 'upload_files/candidate_tracker/16654341211_CV_2024031300154851.pdf', NULL, '1', '2024-07-02', 1, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-02 05:41:10', 104, '2024-07-02 04:51:18', 0, NULL, 1),
(19994, '', '0', '9791243162', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407020006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-02 05:58:07', 0, NULL, 0, NULL, 1),
(19995, 'R surya', '6', '9629211039', '6381189906', 'suryasurya20112002@gmail.com', '2002-11-20', 21, '1', '2', 'ravichandran', 'painting', 15000.00, 2, 0.00, 16000.00, 'chedambaram', 'Frencher plaza', '2407020007', '', '1', 'upload_files/candidate_tracker/1516136568_Adobe Scan 20-May-2024 (1).pdf', NULL, '1', '2024-07-02', 0, '77901', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate not dress code and only looking for telecalling wor only no go for out side call so not fit for my team', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-02 06:14:51', 104, '2024-07-02 04:51:46', 0, NULL, 1),
(19996, 'B.Pavithra', '4', '9629159276', '', 'pavithrabalachandran2003@gmail.com', '2003-06-06', 21, '2', '2', 'S.Balachandran', 'Farmer', 15000.00, 1, 10000.00, 14000.00, 'Krishnan kovil street, ammapet', 'Krishnan kovil street ,ammapet', '2407020008', '1', '2', 'upload_files/candidate_tracker/3809273381_DOC20240705WA0005..pdf', NULL, '1', '2024-12-20', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for team,,, behaviour issue and not perform well', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-02 06:21:00', 153, '2024-12-20 10:56:31', 0, NULL, 1),
(19997, 'Seenu.R', '6', '9597247190', '8903658465', 'gauthamseenu2001@gmail.com', '2001-03-06', 23, '2', '2', 'Ramar', 'Watchman', 15000.00, 1, 0.00, 18000.00, 'TIRUCHENDUR', 'Velacherry', '2407020009', '50', '1', 'upload_files/candidate_tracker/38415410173_pdf_20240524_154622_0000.pdf', NULL, '1', '2024-07-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-02 06:29:28', 104, '2024-07-02 04:51:58', 0, NULL, 1),
(19998, 'Sudalai Muthu P', '4', '6374909457', '9597247190', 'SUDALAI08987@GMAIL.COM', '2000-10-04', 23, '2', '2', 'Perachi s', 'Building contractor', 20000.00, 2, 0.00, 20000.00, 'Tirunelveli', 'Velachery', '2407020010', '50', '1', 'upload_files/candidate_tracker/52573943470_White Navy Modern Professional Marketing Executive CV Resume_20240628_213207_0000_1719721148093_Sudalai Muthu.P.pdf', NULL, '1', '2024-07-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-02 06:30:38', 104, '2024-07-02 04:52:08', 0, NULL, 1),
(19999, 'Ramya S', '6', '9790776610', '8072645314', 'rramya43225@gmail.com', '2003-11-21', 20, '2', '2', 'Suresh d', 'Security', 15000.00, 1, 0.00, 15000.00, 'Minjur', 'Minjur', '2407020011', '27', '1', 'upload_files/candidate_tracker/59809872867_Ramya_resume.pdf', NULL, '1', '2024-07-02', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'spoken words are not clear', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-02 06:35:26', 104, '2024-07-02 04:52:43', 0, NULL, 1),
(20000, 'Janani. E', '33', '9551108506', '', 'jananie940@gmail.com', '2003-10-04', 20, '2', '2', 'Elango. V / Kavitha. E', 'Mason', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2407020012', '49', '1', 'upload_files/candidate_tracker/89014618859_Resume jananie.pdf', NULL, '1', '2024-07-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-02 07:13:19', 104, '2024-07-03 01:19:04', 0, NULL, 1),
(20001, 'Kalaiyarasan', '5', '9626961683', '8610819611', 'kalaiesther1220@gmail.com', '1999-05-20', 25, '2', '2', 'Selvarasu', 'Farmer', 15000.00, 2, 0.00, 200000.00, 'Pudukkottai', 'Chennai', '2407020013', '50', '1', 'upload_files/candidate_tracker/95394093830_Kalaiyarasan Resume.pdf', NULL, '1', '2024-07-02', 0, '', '3', '59', '2024-07-04', 260000.00, '', NULL, '2025-07-25', '1', 'Selected for Gnanasekar Team RM Role Need to train in our roles Fresher for our insurance can check in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55656', '55557', '2024-07-04', 1, '2024-07-02 08:01:28', 60, '2024-07-06 09:58:13', 0, NULL, 1),
(20002, 'Dinesh S', '6', '7305561691', '', 'dineshmadhan2702@gmail.com', '2002-02-27', 22, '1', '2', 'Sakthivel D', 'Marketing manager', 25000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2407020014', '', '2', 'upload_files/candidate_tracker/20369055354_resume (2)-1.pdf', NULL, '1', '2024-07-02', 0, '77901', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-02 08:03:59', 104, '2024-07-02 04:53:09', 0, NULL, 1),
(20003, 'Sowmya', '6', '7305215697', '8015347856', 'sowmi1844@gmail.com', '1999-06-16', 25, '2', '2', 'Menaka', 'Housewife', 2.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2407020015', '50', '2', 'upload_files/candidate_tracker/48280187577_SowmyaK1.pdf', NULL, '1', '2024-10-03', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'having interest in different profession ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-07-02 10:44:53', 104, '2024-10-03 04:20:34', 0, NULL, 1),
(20004, 'sandhya rajesh', '33', '9003036901', '', 'sandhyaarajesh067@gmail.com', '2002-08-07', 21, '2', '2', 'rajesh', 'senior Equipment operator', 400000.00, 1, 0.00, 22000.00, 'pallavaram chennai', 'pallavaram chennai', '2407020016', '49', '1', 'upload_files/candidate_tracker/58739041481_sandhya cv.pdf.pdf', NULL, '1', '2024-07-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-02 11:17:24', 104, '2024-07-03 02:54:23', 0, NULL, 1),
(20005, '', '0', '9789872245', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407020017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-02 12:50:39', 0, NULL, 0, NULL, 1),
(20006, 'V Priya dharshini', '6', '9176410908', '7708283148', 'vpriyapooja0824@gmail.com', '2003-08-08', 20, '1', '2', 'Vijaya Kumara vel', 'Driver', 20000.00, 1, 15000.00, 25000.00, 'Sevvapet', 'Sevvapet', '2407030001', '', '2', 'upload_files/candidate_tracker/73915325653_Resume divya priya.doc_20240610_082434_0000.pdf_20240610_085016_0000.pdf', NULL, '1', '2024-07-03', 0, '12345', '3', '59', '2024-07-09', 186000.00, '', '3', '2024-10-30', '2', 'Too long Distance up and down 82 kms  1 month exp in HDB financial through teamlease internal team referrence not sure on the sustainability considering the manager approval provided the same CTC long run doubts in this profile Need to open up a lot', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '2024-07-09', 1, '2024-07-03 04:36:44', 60, '2024-07-09 12:32:39', 0, NULL, 1),
(20007, 'Varshini', '4', '8508159966', '', 'varshiniammu70@gmail.com', '2001-10-06', 22, '1', '2', 'Mookkaiyan', 'Daily wages', 12000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2407030002', '', '2', 'upload_files/candidate_tracker/32362430284_cvresumevarshini.pdf', NULL, '1', '2024-07-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '1', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-03 04:42:28', 1, '2024-07-08 03:59:27', 0, NULL, 1),
(20008, 'Vanitha.R', '6', '9789447370', '', 'vanivanitha1301@gmail.com', '2001-08-13', 22, '2', '2', 'Radha.p', 'Railway employee', 30000.00, 1, 0.00, 18000.00, 'No 23 marai nanam sivam street, Vellore -6', 'Anna nagar, chennai', '2407030003', '50', '1', 'upload_files/candidate_tracker/48035242447_CV_2024070218423882.pdf', NULL, '1', '2024-07-03', 0, '', '3', '59', '2024-07-09', 168000.00, '', NULL, '2025-03-25', '2', 'Communication Ok Fresher 2yrs gap can be trained in our roles need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', 'Interviewed by Banu and mapped to Giri team for joining', '', '', '', 'CA130', '5151', '2024-07-09', 1, '2024-07-03 04:43:16', 60, '2024-07-09 12:33:19', 0, NULL, 1),
(20009, 'Renuka.B', '6', '9384658790', '9094675407', 'renusum2000@gmail.com', '2000-01-01', 24, '2', '2', 'Balasundaram. G', 'Exports', 10000.00, 1, 0.00, 13000.00, 'Kolathur', 'Kolathur', '2407030004', '50', '1', 'upload_files/candidate_tracker/11861693022_Renuka resume.pdf', NULL, '1', '2024-07-03', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidats is not ok for sales profile, 2 years She have some health issues.over all 1month only she doing int.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-03 04:43:24', 104, '2024-07-03 05:59:05', 0, NULL, 1),
(20010, 'Nanthini k', '5', '6379164505', '9788050112', 'nazeeyazeeyau@gmail.com', '1994-06-06', 30, '2', '1', 'Zeeyau', 'Working', 30000.00, 3, 0.00, 20000.00, 'Thiruvarur', 'Chennai , Royapettah', '2407030005', '50', '2', 'upload_files/candidate_tracker/15870490058_Nanthini Resume new.docx', NULL, '1', '2024-07-03', 0, '', '8', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'didnt meet for 2nd round', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55580', '55560', '1970-01-01', 1, '2024-07-03 05:03:27', 104, '2024-07-03 05:59:38', 0, NULL, 1),
(20011, 'Suriya prakash k', '5', '7845129290', '6379215270', 'surya.prakash671@gmail.com', '1997-01-10', 27, '2', '2', 'Kottur samy', 'Restaurant manager', 50000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2407030006', '50', '1', 'upload_files/candidate_tracker/91897242777_suriya prakash resume.pdf', NULL, '1', '2024-07-03', 0, '', '3', '59', '2024-07-08', 265000.00, '', NULL, '2024-09-18', '1', 'Communication Ok have exp in car sales location need to focus open for insurance sales can be trained need to check and confirm in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55567', '55557', '2024-07-08', 1, '2024-07-03 05:40:47', 104, '2024-09-10 06:38:17', 0, NULL, 1),
(20012, 'Gomathi k', '4', '9361163646', '6382207488', 'kgomathi522@gmail.com', '2002-05-17', 22, '3', '2', 'Kumar', 'Farmer', 84000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2407030007', '', '1', 'upload_files/candidate_tracker/1831176598_Gomathi (1).pdf', NULL, '1', '2024-07-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-03 05:57:38', 104, '2024-07-03 02:47:10', 0, NULL, 1),
(20013, 'g srija', '6', '9025527599', '', 'srija8462@gmail.com', '2003-05-06', 21, '2', '2', 'gunasekaran', 'driver', 15000.00, 4, 0.00, 15000.00, 'pallavaram', 'pallavaram', '2407030008', '50', '1', 'upload_files/candidate_tracker/36554498353_srija 123.pdf', NULL, '1', '2024-07-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-03 07:20:12', 104, '2024-07-03 02:36:12', 0, NULL, 1),
(20014, 'V.sanjana', '6', '9710053907', '9941389800', 'sanjanavaradaraj9351@gmail.com', '2003-12-03', 20, '1', '2', 'Varadaraj', 'Thiruvakadhu', 40000.00, 0, 0.00, 15000.00, 'Thiruvakadhu', 'Thiruvakadhu', '2407030009', '', '1', 'upload_files/candidate_tracker/5722386067_ACE Scanner_2024_07_03.pdf', NULL, '1', '2024-07-03', 0, '12345', '3', '59', '2024-07-05', 168000.00, '', '1', '1970-01-01', '1', 'Communication Ok Can be trained in our roles need to check in 7 days internal team reference', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-07-05', 1, '2024-07-03 07:25:58', 60, '2024-07-05 10:42:43', 0, NULL, 1),
(20015, 'A.vindhya', '6', '6374358406', '9600311468', 'dhiyashree11201@gmail.com', '2001-12-01', 22, '2', '2', 'S.Alaudaiyan', 'famer', 6000.00, 1, 0.00, 15000.00, 'Tiruvanamalai', 'kolathur', '2407030010', '50', '1', 'upload_files/candidate_tracker/20894684065_A.Vindhya Resume .pdf', NULL, '1', '2024-07-03', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE ONLY INTEREST FOR IT ONLY AND NEED NON VOICE PROCES WORK FOR SHORT TIME , SO NOT FIT FOR MY TEAM', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-03 07:35:24', 104, '2024-07-03 05:59:20', 0, NULL, 1),
(20016, 'Lishatha senthilarasu', '20', '9345414426', '9361767027', 'lishalishatha@gmail.com', '2003-09-15', 20, '2', '2', 'Senthil arasu', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Theni', 'Teynampet', '2407030011', '1', '1', 'upload_files/candidate_tracker/87347054558_Lishatha', NULL, '1', '2024-07-03', 0, '', '3', '59', '2024-07-08', 180000.00, '', '3', '2024-12-19', '2', 'Communication Ok have exp in Telecalling matrimony exp 6 months need to train a lot in our domain can give a try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55666', '5151', '2024-07-08', 1, '2024-07-03 09:15:22', 60, '2024-07-08 10:43:12', 0, NULL, 1),
(20017, 'Anis Fathima MR', '4', '9361249880', '', 'anisfathima485@gmail.com', '2003-09-30', 20, '2', '2', 'Mohamed Rabeek AC', 'Business', 30000.00, 1, 15000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2407030012', '1', '2', 'upload_files/candidate_tracker/38956143545_6684256799f5a_Anis_Fathima_Resume.pdf', NULL, '1', '2024-07-04', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'expected too high, over attitude, dont have maturity, irdai exam completed', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-03 12:59:11', 104, '2024-07-04 03:04:00', 0, NULL, 1),
(20018, '', '0', '9361216899', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407040001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-04 02:44:42', 0, NULL, 0, NULL, 1),
(20019, 'Vaibhav', '5', '8778804799', '9840220783', 'svaibhav222003@gmail.com', '2003-12-22', 20, '1', '2', 'Srinivasan', 'Cable tv', 30000.00, 1, 0.00, 20000.00, 'Villivakkam', 'Villivakkam', '2407040002', '', '1', 'upload_files/candidate_tracker/61991484383_resume.pdf', NULL, '1', '2024-07-04', 0, '', '3', '59', '2024-07-05', 240000.00, '', NULL, '2025-01-10', '1', 'For porrselvam RM Role Communication Ok BCA graduate Fresher for Sales Long run doubts Need to analyse in 7 days and confirm he may switch if he is getting opportunity in IT', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '2024-07-05', 1, '2024-07-04 04:46:52', 60, '2024-07-06 09:57:35', 0, NULL, 1),
(20020, 'Maheswaran', '5', '9698586089', '8072480837', 'mahesmano81@gmail.com', '1993-06-05', 31, '1', '1', 'Gunajeyasree', 'Assistant sales manager', 360000.00, 2, 30000.00, 30000.00, 'Sivagangai', 'Sivagangai', '2407040003', '', '2', 'upload_files/candidate_tracker/70866342264_MAHESWARAN RESUME (1).pdf', NULL, '1', '2024-07-04', 0, '55634', '3', '59', '2024-07-08', 360000.00, '', '4', '2024-08-30', '1', 'Selected for RM Role Active Candidate Can be mold in our roles Can try and analyse', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '2024-07-08', 1, '2024-07-04 04:47:22', 104, '2024-07-17 09:05:24', 0, NULL, 1),
(20021, 'shyam', '5', '8825837366', '', 'r.k.adhithiyha@gmail.com', '2001-10-22', 22, '2', '2', 'rajkumar', 'driver', 25000.00, 1, 0.00, 10000.00, 'parrys', 'parrys', '2407040004', '50', '1', 'upload_files/candidate_tracker/65328501821_R. Shyam Resume.pdf', NULL, '1', '2024-07-04', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is interested in sales but voice process not suitable becuz voice and convincing level low\n', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-04 05:30:50', 104, '2024-07-04 02:57:19', 0, NULL, 1),
(20022, 'Kaleel Hussain', '6', '8667483843', '', 'kaleelhussain14032001@gmail.com', '2001-03-14', 23, '2', '2', 'M fazal hussain', 'Fresher', 20000.00, 1, 0.00, 25000.00, 'Triplicane', 'Triplicane', '2407040005', '1', '1', 'upload_files/candidate_tracker/75914029091_kaleel hussain resume (1).pdf', NULL, '1', '2024-07-04', 0, '', '3', '59', '2024-07-08', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok fresher his interest is in finance (accounts ) sustainability need to check focusing much on his take home salary too need to check in 7 days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55645', '5151', '2024-07-08', 1, '2024-07-04 05:46:56', 60, '2024-07-06 10:13:51', 0, NULL, 1),
(20023, 'Mahalakshmi.D', '11', '9360480642', '', 'maha062901@gmail.com', '2001-06-29', 23, '3', '2', 'Parent', 'Fisherman', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407040006', '', '1', 'upload_files/candidate_tracker/60210277933_MahaResume1.pdf', NULL, '1', '2024-09-04', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is not good.\nShe will not continue longer', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-04 05:55:48', 104, '2024-09-05 09:38:34', 0, NULL, 1),
(20024, 'Kamali ravichandran', '13', '8610955493', '6374963393', 'Kamalirv2001@gmail.com', '2001-12-19', 22, '3', '2', 'Ravichandran', 'Farmer', 50000.00, 1, 0.00, 300000.00, 'Trichy', 'Chennai', '2407040007', '', '1', 'upload_files/candidate_tracker/18663054610_ Kamali_Ravichandran_resume.pdf', NULL, '1', '2024-07-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-04 06:08:44', 104, '2024-07-04 03:01:48', 0, NULL, 1),
(20025, 'Muhammad Anas', '13', '8220258974', '', 'anasmajestic@gmail.com', '2001-10-11', 22, '3', '2', 'Kalifullah', 'Driver', 20000.00, 0, 0.00, 300000.00, 'Trichy', 'Korattur', '2407040008', '', '1', 'upload_files/candidate_tracker/98791056207_Anas_Resume.pdf', NULL, '1', '2024-07-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-04 06:08:59', 104, '2024-07-04 03:01:57', 0, NULL, 1),
(20026, 'Mohan Raj. V', '5', '9080419585', '9791217045', 'mohanraj.mr24102000@gmail.com', '2000-10-24', 23, '1', '2', 'Susila. V', 'House wife', 40000.00, 1, 17500.00, 25000.00, 'No, 29/39, Alathur Subramaniyam st, choolai,CH-112', '29/39, Alathur Subramaniyam St, Choolai, CH-112', '2407040009', '', '2', 'upload_files/candidate_tracker/84057380308_Mohan Raj_Resume.docx', NULL, '1', '2024-07-04', 30, '55775', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Porrselvan, is under notice period till 2nd week Aug, Can offer him and follow.. Given a task for 2 lac life and 10k MF within 40 days of joining - then can increase 20k net sal to 24k net sal.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-04 09:13:42', 104, '2024-07-17 09:05:48', 0, NULL, 1),
(20027, 'YOGESHWARAN.V', '6', '6383745194', '', 'yogeshvijayan3@gmail.com', '2004-05-08', 20, '4', '2', 'Seenivasan', 'Grandfather', 40000.00, 1, 0.00, 20000.00, 'Krishnagiri district', 'Tambaram sanatorium', '2407050001', '', '1', 'upload_files/candidate_tracker/45966764098_YOGRSHWARAN RESUME - Copy.pdf', NULL, '1', '2024-07-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-05 03:44:13', 1, '2024-07-05 04:16:49', 0, NULL, 1),
(20028, 'lithya shree s', '5', '9345505004', '9360466322', 'lithyashree0428@gmail.com', '2003-05-29', 21, '1', '2', 'siva sankaran', 'agriculture', 35000.00, 3, 20000.00, 20000.00, 'thiruvalangadu', 'thiruvalangadu', '2407050002', '', '2', 'upload_files/candidate_tracker/68425848046_Resume_Lithya shree_Format1.pdf', NULL, '1', '2024-07-05', 0, '55786', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected, \ndue to fake updates given\nnot fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-07-05 04:29:10', 104, '2024-07-05 01:35:53', 0, NULL, 1),
(20029, 'Sonali Rebekah Rajathi B', '5', '9360466322', '9345505004', 'sonusonali591@gmail.com', '1998-12-30', 25, '1', '2', 'Baskar S', 'Painter', 25000.00, 1, 25000.00, 20000.00, 'Arakkonam', 'Arakkonam', '2407050003', '', '2', 'upload_files/candidate_tracker/52501661466_SONALI RESUME.docx', NULL, '1', '2024-07-05', 0, '55786', '3', '59', '2024-07-09', 290000.00, '', '1', '1970-01-01', '2', 'Communication Ok yet to receive the previous exp documents career gap 2019 passed out 1yr she was in singapore arakonnam will relocate to nungambakkam in 2 months need to travel daily sustainability doubts if continuous to travel 1yr exp in demat account opening can give a try in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '2024-07-09', 1, '2024-07-05 04:32:44', 60, '2024-07-09 12:31:45', 0, NULL, 1),
(20030, 'Subbulakshmi k', '5', '9514707020', '9710807951', 'subbulakshmi4699@gmail.com', '2003-07-14', 20, '1', '2', 'Krishnamoorthi', 'Cooli', 25000.00, 1, 20000.00, 23000.00, 'Tondiarpet', 'Tondiarpet', '2407050004', '', '2', 'upload_files/candidate_tracker/25150860140_Up Resu.docx', NULL, '1', '2024-07-05', 0, '55778', '3', '59', '2024-07-08', 325000.00, '', '1', '1970-01-01', '2', 'Communication Ok 1yr shriram life exp need to get her exp documents based on the manager commitment proceeding with the joining procedures', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '2024-07-08', 1, '2024-07-05 04:42:22', 60, '2024-07-08 10:48:08', 0, NULL, 1),
(20031, 'Ruthramoorthy. A', '4', '9361684747', '', 'ruthramoorthy384@gmail.com', '2000-06-01', 24, '2', '2', 'Arumugam. D', 'Bus Conductor', 25000.00, 1, 0.00, 22000.00, '541 pillaiyar kovil street kilputhur', 'Tharamani', '2407050005', '50', '1', 'upload_files/candidate_tracker/13231387336_RUTHRAMOORTHY Rusume .pdf', NULL, '1', '2024-07-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-05 05:36:55', 104, '2024-07-05 05:34:07', 0, NULL, 1),
(20032, 'Ranjani.T', '6', '9344786314', '9677132256', 'ranjanithilagar@gmail.com', '2003-12-19', 20, '2', '2', 'Thilagar.J', 'Supervisor ( Export company)', 14000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407050006', '50', '1', 'upload_files/candidate_tracker/86002226846_T.RANJANI-Resume.pdf', NULL, '1', '2024-07-05', 0, '', '3', '59', '2024-07-10', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for our roles can give a try need to check in 7 days training', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2024-07-10', 1, '2024-07-05 05:38:44', 60, '2024-07-05 07:52:56', 0, NULL, 1),
(20033, 'M.Narmadha', '6', '9840471858', '9043680072', 'narmunarmadha23@gmail.com', '2004-08-23', 19, '2', '2', 'M.Bhuvaneshwari', 'Retail shop', 9000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407050007', '50', '1', 'upload_files/candidate_tracker/61391541448_M.Narmadha resume-1.pdf', NULL, '1', '2024-07-05', 0, '', '3', '59', '2024-07-11', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok she is ok for telesales in half mind Focus in non voice process Can give a try  sustainability need to look', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2024-07-11', 1, '2024-07-05 05:38:50', 60, '2024-07-06 10:14:41', 0, NULL, 1),
(20034, 'Amlin Mary I', '20', '9629895414', '8778718991', 'amlinmary583@gmail.com', '2003-02-26', 21, '2', '2', 'Regina', 'MANAGER', 215000.00, 1, 0.00, 16000.00, 'Arakkonam', 'Arakkonam', '2407050008', '56', '1', 'upload_files/candidate_tracker/51533802455_amlin resume (1).pdf', NULL, '3', '2024-07-05', 0, '', '3', '59', '2024-07-15', 168000.00, '', '5', '1970-01-01', '2', 'Communication Can be trained in our roles Fresher', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '2024-07-15', 1, '2024-07-05 05:39:40', 104, '2024-07-12 10:57:43', 0, NULL, 1),
(20035, 'E. Monish kumar', '5', '8754809404', '9941333426', 'emonishkumar17@gmail.com', '2003-03-17', 21, '2', '2', 'Parent', 'Private employee', 15000.00, 1, 15000.00, 16000.00, 'Thiru.vi.ka nagar', 'Thiru.vi.ka nagar', '2407050009', '50', '2', 'upload_files/candidate_tracker/65203296348_CollectionReceipt.pdf', NULL, '1', '2024-07-05', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested in field work . looking for system based work', '5', '2', '', '1', '3', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-07-05 05:47:48', 104, '2024-07-05 04:49:30', 0, NULL, 1),
(20036, 'Perickson Albin jose', '5', '9360635541', '9789921133', 'pericksonalbinjose004@gmail.com', '2001-11-04', 22, '2', '2', 'Parents', 'Staff nurse', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2407050010', '50', '1', 'upload_files/candidate_tracker/78004936641_Perickson Resume.pdf', NULL, '1', '2024-07-05', 0, '', '3', '59', '2024-07-08', 253000.00, '', '4', '2024-09-02', '1', 'Communication OK Fresher for Sales MSC Physics grad Open fr sales Can be trained in our roles Need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '2024-07-08', 1, '2024-07-05 05:52:10', 60, '2024-07-08 10:47:11', 0, NULL, 1),
(20037, 'Logesh S', '4', '9994686845', '9597971743', 'mrlogesh777@gmail.com', '2001-08-11', 22, '2', '2', 'Siva G', 'Weaver', 20000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Tambaram', '2407050011', '50', '1', 'upload_files/candidate_tracker/60993261147_LOGESH_CV.pdf', NULL, '1', '2024-07-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-05 05:57:24', 104, '2024-07-05 04:51:37', 0, NULL, 1),
(20038, 'K.M .Mariyam Afra', '5', '7338752804', '6381707487', 'aframariyam60@gmail.com', '2002-11-22', 21, '2', '2', 'A.razia', 'Teacher', 30000.00, 1, 0.00, 20000.00, 'Royappetah', 'Royappetah', '2407050012', '1', '1', 'upload_files/candidate_tracker/62227485052_affu', NULL, '1', '2024-07-05', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not attended second round, left from office without prior information', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1021', '', '55650', '55560', '1970-01-01', 1, '2024-07-05 06:00:21', 104, '2024-07-05 05:22:54', 0, NULL, 1),
(20039, 'S.Diwakar', '6', '9962777926', '7092511626', 'diwasdr25@gmail.com', '1999-06-25', 25, '2', '2', 'K.Shankar', 'Daily Wages', 12000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2407050013', '50', '2', 'upload_files/candidate_tracker/82698600369_Diwa SDR', NULL, '3', '2024-07-05', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-05 06:01:42', 104, '2024-07-05 05:49:09', 0, NULL, 1),
(20040, 'Dillibabu Vinayagam', '6', '9659038714', '7299222782', 'dillibabu6519@gmail.com', '1998-03-05', 26, '2', '2', 'Vinayagam', 'House', 10000.00, 1, 0.00, 15000.00, 'Guduvacheri', 'Guduvacheri', '2407050014', '50', '1', 'upload_files/candidate_tracker/2902821077_Resume_Dillibabu-2 (2)_11zon.pdf', NULL, '1', '2024-07-05', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Long distance, Completed eng and his experience related is to that field, Fresher for telecalling, but he wont suit for telecalling and field process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-07-05 06:03:05', 104, '2024-07-05 04:52:34', 0, NULL, 1),
(20041, 'Tasleem banu K', '4', '6381707487', '9884589146', 'tasleemtas2323@gmail.com', '2003-02-23', 21, '2', '2', 'Haseen begum', 'Teacher', 400000.00, 1, 0.00, 18000.00, 'Jamalia', 'Jamalia', '2407050015', '1', '1', 'upload_files/candidate_tracker/5341688799_Resume-2.pdf', NULL, '1', '2024-07-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1021', '', '', '', '1970-01-01', 1, '2024-07-05 06:12:50', 104, '2024-07-05 05:23:04', 0, NULL, 1),
(20042, 'antony vivek jaideep', '6', '9363271233', '7708622950', 'antonyjaideepndt@gmail.com', '1988-02-16', 36, '2', '1', 'christiana silvia', 'juniour assistant', 50000.00, 1, 1500000.00, 25000.00, 'balasundaram appts new street mylapore', 'balasundaram appts new street mylapore', '2407050016', '50', '2', 'upload_files/candidate_tracker/87358900411_Jaideep CV Final with certificates_compressed (1) (1) (1).pdf', NULL, '1', '2024-07-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-05 06:17:33', 104, '2024-07-05 04:53:26', 0, NULL, 1),
(20043, 'Madhu Mitha', '6', '6380329656', '7305423112', 'madhuanand1706@gmail.com', '2003-02-17', 21, '2', '2', 'Anandhan', 'Labour', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2407050017', '50', '1', 'upload_files/candidate_tracker/52549346709_DOC-20240628-WA0009..pdf', NULL, '1', '2024-07-05', 0, '', '3', '59', '2024-07-08', 168000.00, '', '5', '1970-01-01', '2', 'Selected for RE role,can be trained in our roles fresher need to analyse and confirm in the training period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '2024-07-08', 1, '2024-07-05 06:20:26', 60, '2024-07-06 06:23:19', 0, NULL, 1),
(20044, 'S.Tamilselvi', '6', '9566685840', '', 'tamilselvisamiayya7920011@gmail.com', '2001-05-06', 23, '3', '2', 'Samiayya', 'Farmer', 12000.00, 1, 0.00, 18000.00, 'Ramanathapuram', 'Thousand light', '2407050018', '', '1', 'upload_files/candidate_tracker/8868577709_CV_2024070511320690.pdf', NULL, '1', '2024-07-05', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not attended second round, went from office without any information', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-05 06:43:02', 104, '2024-07-05 05:20:49', 0, NULL, 1),
(20045, 'Sangeetha', '6', '9345178453', '8015106452', 'sangeethaag20@gmail.com', '2002-06-05', 22, '2', '2', 'Gopal', 'Farmer', 15000.00, 1, 0.00, 14000.00, 'Podaturpet', 'Podaturpet', '2407050019', '36', '1', 'upload_files/candidate_tracker/64587652320_Document.pdf', NULL, '1', '2024-07-05', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he Donxquott even know how to speak basic indro ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-05 06:47:44', 104, '2024-07-05 05:19:46', 0, NULL, 1),
(20046, 'Pasika.G', '6', '6383100991', '6384185600', 'pasika1214@gmail.com', '2002-11-01', 21, '3', '2', 'Gopalakrishnan', 'Farmer', 12000.00, 1, 0.00, 18000.00, 'Sivaganga', 'Thousand light', '2407050020', '', '1', 'upload_files/candidate_tracker/92753405068_pasi finals .pdf', NULL, '1', '2024-07-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for tele sales,she is not ready to speak', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-05 06:49:35', 104, '2024-07-05 05:18:24', 0, NULL, 1),
(20047, 'Kokila T.V.', '6', '8124134331', '9087207353', 'Kokithaarani0616@gmail.com', '2001-11-06', 22, '2', '2', 'Veeraragavan', 'Weaver', 15000.00, 2, 0.00, 14000.00, 'Podaturpet', 'Podaturpet', '2407050021', '36', '1', 'upload_files/candidate_tracker/52855776949_T.V.Kokila .pdf', NULL, '2', '2024-07-05', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate only 1 year working and after try for marriage  , and voice and communication is not good , mainly  both of joint in the company or else notjoint s not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-05 06:52:05', 104, '2024-07-05 05:17:12', 0, NULL, 1),
(20048, 'Maazin uwais py', '4', '9551861237', '', 'uwaismaazin272@gmail.com', '2002-11-27', 21, '4', '2', 'Yamoidheen', 'Civil engineer', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2407050022', '', '1', 'upload_files/candidate_tracker/91928227120_Resume.pdf', NULL, '1', '2024-07-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-05 06:53:47', 104, '2024-07-05 05:15:35', 0, NULL, 1),
(20049, 'muthu pradhi', '4', '9884028224', '8608222787', 'pradhipradhi161@gmail.com', '2003-08-17', 20, '1', '2', 'ramesh', 'driver', 60000.00, 3, 0.00, 15000.00, 'No:9 Kamadevan Nagar Thiruvottiyur chennai-19', 'No:9 Kamadevan Nagar Thiruvottiyur chennai-19', '2407050023', '', '1', 'upload_files/candidate_tracker/15687853349_pradeep resum.pdf', NULL, '1', '2024-07-05', 0, '-', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-05 06:58:24', 104, '2024-07-05 05:15:24', 0, NULL, 1),
(20050, 'Surya', '5', '9962810356', '8122384031', 'surimaranam@gmail.com', '1999-08-14', 24, '2', '2', 'Viji m', 'PVR', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Virugambakkam', '2407050024', '50', '1', 'upload_files/candidate_tracker/42140627060_Suriya Resume...pdf', NULL, '1', '2024-07-05', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Interested In Field Work . Looking For System Based Work', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-07-05 07:04:53', 104, '2024-07-05 05:13:13', 0, NULL, 1),
(20051, 'Rithesh kumar', '4', '9884123968', '8667808707', 'ritesh93800@gmail.com', '2003-03-06', 21, '1', '2', 'Arjun kumar', 'Driver', 60000.00, 2, 18000.00, 21000.00, 'No 21/24 kakkan nagar Thiruvottiyur chennai 19', 'No 21/24 Kakkan Nagar Thiruvottiyur Chennai 19', '2407050025', '', '2', 'upload_files/candidate_tracker/84986221532_RITHESH resum new one.pdf', NULL, '1', '2024-07-05', 0, '-', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-05 07:11:50', 104, '2024-07-05 05:12:03', 0, NULL, 1),
(20052, 'Gunaseakeran', '4', '9159766151', '9551742500', 'Gunaguna8667@gmail.com', '2006-09-11', 17, '1', '2', 'Kathiresan', 'Loadman', 40000.00, 1, 0.00, 15000.00, 'No 5/5 kamadevan nagar thiruvottiyur chennai 19', 'No 5/5 Kamadevan Nagar Thiruvottiyur Chennai 19', '2407050026', '', '1', 'upload_files/candidate_tracker/56471910352_guna resum.pdf', NULL, '1', '2024-07-05', 0, '-', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-05 07:14:05', 104, '2024-07-05 05:11:29', 0, NULL, 1),
(20053, 'Vijayabharathi.R', '5', '9363466635', '9941329285', 'bvijaya319@gmail.com', '2002-08-30', 21, '3', '2', 'Ravichandran', 'Bussiness', 120000.00, 2, 15000.00, 17000.00, 'Chennai', 'Chennai', '2407050027', '', '2', 'upload_files/candidate_tracker/85362970562_vijayabharathi 1....docx', NULL, '1', '2024-07-05', 0, '', '3', '59', '2024-07-08', 230400.00, '', '1', '1970-01-01', '2', 'Communication Ok have 1 yr exp need to submit her documents considering the manager suggestion proceeding with the package can be trained in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '2024-07-08', 1, '2024-07-05 07:33:20', 60, '2024-07-10 10:15:39', 0, NULL, 1),
(20054, 'Barkath Nisha I', '5', '9360958297', '9360958295', 'eraivazhipen@gmail.com', '2002-12-12', 21, '3', '2', 'Syed ali Fathima I', 'Auto driver', 120000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2407050028', '', '2', 'upload_files/candidate_tracker/65491705350_Barkath new resume.docx', NULL, '1', '2024-07-05', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Previously 1 year Experience in ICICI Lambord and then Communication and Technical Skills are below average and Work time also not convinced so not preferable this candidate in our system', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-07-05 07:33:40', 104, '2024-07-05 06:35:12', 0, NULL, 1),
(20055, 'A.somavarshini', '11', '7402267330', '9488005118', 'somavarshini07@gmail.com', '2001-04-07', 23, '3', '2', 'SM.ashokbharati', 'Teacher', 600000.00, 1, 0.00, 18000.00, 'Sivaganga', 'Thousand lights', '2407050029', '', '1', 'upload_files/candidate_tracker/21466537949_A.SOMAVARSHINI RESUME ^.^.07.docx_20240521_201154_0000.pdf', NULL, '1', '2024-07-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-05 09:12:09', 104, '2024-07-05 05:08:21', 0, NULL, 1),
(20056, '', '0', '7864565432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407050030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-05 09:12:43', 0, NULL, 0, NULL, 1),
(20057, 'TAMILSELVI K', '5', '6379202049', '', 'tamilammu120399@gmail.com', '1999-03-12', 25, '3', '2', 'KUMAR K', 'Agricultural wages', 72000.00, 2, 21500.00, 25000.00, 'Thanjavur', 'Chennai _ Vadapalani', '2407050031', '', '2', 'upload_files/candidate_tracker/4474828044_K. Tamilselvi _M.A.,B.Ed809.docx', NULL, '1', '2024-07-05', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not convinced candidate due to Working time period below 6 month for 2 companies one is 5 month another one is 3 month but she looking Salary hike only not sales interest and also she experienced Teaching job so not fit this candidate for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-07-05 09:37:04', 104, '2024-07-05 05:07:40', 0, NULL, 1),
(20058, 'R. Mohamed ibrahim', '5', '9994306462', '9944082515', 'ajithrmi9994@gmail.com', '1995-02-14', 29, '3', '1', 'Raja Mohammed', 'Labour', 40000.00, 1, 30000.00, 32000.00, 'Shastri nagar 7th cross adyar', 'Adyar', '2407050032', '', '2', 'upload_files/candidate_tracker/43421606656_CV IBRAHIM(1).docx', NULL, '1', '2024-07-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'GK team, ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55580', '55560', '1970-01-01', 1, '2024-07-05 09:42:19', 104, '2024-07-05 04:54:57', 0, NULL, 1),
(20059, 'noorul ameen', '6', '9698290783', '', 'noorula0123@gmail.com', '2002-07-30', 21, '2', '2', 'noor mohammed', 'catering', 40000.00, 1, 0.00, 20000.00, 'kumbakonam', 'kumbakonam', '2407050033', '42', '1', 'upload_files/candidate_tracker/51036312215_noorulcv.pdf', NULL, '1', '2024-07-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'well settled person,father working in dubai', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-05 12:13:50', 60, '2024-07-05 07:56:20', 0, NULL, 1),
(20060, 'Santhosh Sivam', '4', '7550020315', '9444192510', 'sandysivam1924@gmail.com', '2003-03-20', 21, '2', '2', 'M RAJESH KANNA', 'Small scale business', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407060001', '50', '1', 'upload_files/candidate_tracker/92688675876_SANTHOSH.pdf', NULL, '1', '2024-07-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-06 05:14:56', 104, '2024-07-06 12:22:25', 0, NULL, 1),
(20061, 'Manikandan', '5', '8122753004', '', 'mmaniece.mba@gmail.com', '1994-09-27', 29, '2', '2', 'Murugesan', 'Farmer', 10000.00, 0, 252000.00, 276000.00, 'Dharmapuri', 'T. nagar, Chennai', '2407060002', '50', '2', 'upload_files/candidate_tracker/17253787582_MBAwithExperience.pdf', NULL, '1', '2024-07-06', 15, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Ok Candidate and new for sales and having doubt whether our concpet shall be sutiable for him', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-07-06 05:33:09', 104, '2024-07-06 12:13:59', 0, NULL, 1),
(20062, 'Ashik Babu J', '4', '6384884170', '', 'ashikubn@gmail.com', '1995-07-29', 28, '2', '2', 'Jakir hussan', 'Government employee', 25000.00, 1, 10000.00, 15000.00, 'Salem', 'Tondiarpet', '2407060003', '50', '2', 'upload_files/candidate_tracker/8547629032_ASHIKRESUME.pdf', NULL, '1', '2024-07-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-06 05:34:13', 104, '2024-07-06 12:14:13', 0, NULL, 1),
(20063, 'Swetha S', '5', '9941640047', '', 'swethasrikanth158@gmail.com', '1997-08-14', 26, '2', '1', 'Srikanth', 'Daily wages', 600000.00, 2, 25000.00, 30000.00, 'Chennai Metro Region', 'Chennai Metro Region', '2407060004', '1', '2', 'upload_files/candidate_tracker/85916128858_Swetharesume1680062409268Swetha.docx', NULL, '1', '2024-07-06', 0, '', '3', '59', '2024-07-12', 330000.00, '', '', '2024-07-15', '2', 'For RM Role Can be trained in our position Need to check and confirm in the 7 days training communication Ok', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55567', '55557', '2024-07-12', 1, '2024-07-06 05:34:26', 60, '2024-07-11 06:41:18', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20064, 'Kameshwaran', '5', '8925262086', '8778612086', 'kameshwaranmano20@gmail.com', '2001-03-20', 23, '2', '2', 'Manoharan', 'Transport', 30000.00, 2, 21500.00, 27000.00, 'No-75 Perambur high Road Jamalia Chennai 12', 'Chennai', '2407060005', '1', '2', 'upload_files/candidate_tracker/38582209616_kamesh2.docx', NULL, '1', '2024-07-06', 0, '', '3', '59', '2024-07-12', 330000.00, '', '5', '1970-01-01', '1', 'Selected for Porrselvan Team Verified the documents Previous exp JD seems to be doubted Even discussed with Gaurav Sir and based on the approval proceeding with the employment', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55650', '55560', '2024-07-12', 1, '2024-07-06 05:37:19', 60, '2024-07-11 06:43:54', 0, NULL, 1),
(20065, 'Sathyajothi', '5', '9003572115', '', 'sathyajothisathyajothi22@gmail.com', '2004-03-09', 20, '2', '2', 'Sujatha', 'Dbc', 6800.00, 2, 0.00, 15.00, 'Sirkali', 'Mayiladuthurai', '2407060006', '50', '1', 'upload_files/candidate_tracker/55767137816_SATHYAJOTHIRAMURESUME..pdf', NULL, '1', '2024-07-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not intrested in sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-06 05:41:55', 104, '2024-07-06 12:20:18', 0, NULL, 1),
(20066, 'DEEPAKUMASHANKAR', '6', '7695916516', '', 'justindeepak212403@gmail.com', '2003-12-21', 20, '1', '2', 'D.UMASHANKAR', 'REAL ESTATE AGENT', 96000.00, 1, 0.00, 17000.00, 'No,33 NAINAR NADAR sTREET MYLAPORE CHENNAI 60004', 'MYLAPORE', '2407060007', '', '1', 'upload_files/candidate_tracker/37055001437_CV2024062616313889.pdf', NULL, '1', '2024-07-06', 0, '77892', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not Interested this job ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-06 05:55:39', 104, '2024-07-06 12:21:38', 0, NULL, 1),
(20067, 'A Aravind', '5', '9444515346', '9444981825', 'aravind.grad2002@gmail.com', '2002-02-26', 22, '2', '2', 'ANANDHARAJAN', 'Tailoring', 40000.00, 1, 0.00, 15000.00, 'Ennore', 'Ennore', '2407060008', '50', '1', 'upload_files/candidate_tracker/29884564299_ARAVINDResume.pdf', NULL, '1', '2024-07-06', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'field not interested ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-06 06:39:47', 104, '2024-07-06 12:49:05', 0, NULL, 1),
(20068, 'Jaya Ganesan N', '5', '9025452027', '', 'jayaganeshneethi2516@gmail.com', '2000-04-25', 24, '1', '2', 'NEETHI MOHAN v', 'Sales man', 15000.00, 2, 17500.00, 20000.00, 'Chennai', 'Chennai', '2407060009', '', '2', 'upload_files/candidate_tracker/81492434100_RESUME2.0.docx', NULL, '1', '2024-07-06', 0, '55775', '3', '59', '2024-07-15', 252000.00, '', '5', '1970-01-01', '1', 'For RM role Have 4 months Exp in Axis Can give a try in our roles need to check and confirm in 7 days', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '2024-07-15', 1, '2024-07-06 06:56:32', 60, '2024-07-11 06:47:02', 0, NULL, 1),
(20069, 'NanthaKumar', '6', '8489603945', '9345282141', 'cptnanthu@gmail.com', '2003-01-14', 21, '2', '2', 'Kumaresan', 'Tiles work', 20000.00, 1, 0.00, 17000.00, 'Kanyakumari', 'Kanyakumari', '2407060010', '50', '1', 'upload_files/candidate_tracker/61925317211_K.NanthakumarResume.pdf', NULL, '3', '2024-07-06', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-06 07:26:15', 104, '2024-07-06 01:32:40', 0, NULL, 1),
(20070, 'Vasudevan', '6', '8072456801', '8248387081', 'dvasudevan192@gmail.com', '2001-05-23', 23, '2', '2', 'Dhatchinamurthy', 'Farmer', 10000.00, 1, 0.00, 2.00, 'Villupuram', 'Guindy', '2407060011', '50', '1', 'upload_files/candidate_tracker/60123535378_ABHI.pdf', NULL, '1', '2024-07-06', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidatepreviously work for non voice but interest to voice process but voice and comuncatio is very low so not fot for my team ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-06 07:50:41', 104, '2024-07-06 02:40:55', 0, NULL, 1),
(20071, 'Nandhakumar', '5', '9360618629', '', 'nandhakumar93606@gamil.com', '2009-07-06', 0, '2', '2', 'G. Balaraman', 'Farmer', 10000.00, 1, 0.00, 16000.00, 'Cuddalore', 'Guindy', '2407060012', '50', '1', 'upload_files/candidate_tracker/83888981707_NANDHAKUMARProfessionalResume02.pdf', NULL, '1', '2024-07-06', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'low communication level and convincing skill is low then right now looking for one job ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-06 07:51:10', 104, '2024-07-06 02:40:19', 0, NULL, 1),
(20072, '', '0', '9444228901', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407060013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-06 01:56:07', 0, NULL, 0, NULL, 1),
(20073, 'Mareeswari A', '2', '7695910650', '6379688664', 'mareesreema2002@gmail.com', '2002-02-12', 22, '4', '2', 'Anantharaj', 'Farmer', 8000.00, 1, 0.00, 25000.00, 'Tenkasi', 'Tenkasi', '2407060014', '', '1', 'upload_files/candidate_tracker/83670352391_MareeswariAResume.pdf', NULL, '1', '2024-07-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-06 02:20:31', 1, '2024-07-06 02:28:26', 0, NULL, 1),
(20074, 'DEESEETHA.Y', '11', '9384497673', '', 'deeseethayogarajan@gmail.com', '2000-11-01', 23, '4', '2', 'Parent name- D. YOGARAJAN', 'Retired TMB Officer', 25000.00, 1, 0.00, 20000.00, 'Virudhunagar', 'Virudhunagar', '2407060015', '', '1', 'upload_files/candidate_tracker/77679971871_ResumeDeeseetha.Y.pdf', NULL, '2', '2024-07-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-06 03:24:12', 104, '2024-07-17 04:16:29', 0, NULL, 1),
(20075, '', '0', '7338980531', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407070001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-07 03:10:32', 0, NULL, 0, NULL, 1),
(20076, 'B.Gayathri', '4', '8248995301', '9094409410', 'gayathribaskaran345@gmail.com', '2002-12-10', 21, '2', '2', 'V.Baskaran', 'Daily worker', 20000.00, 0, 0.00, 18000.00, 'No 49 2nd st Rama Reddy Palayam minjur 601203', 'Minjur 601203', '2407070002', '32', '1', 'upload_files/candidate_tracker/59074301930_GayathriResume622.pdf', NULL, '1', '2024-07-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not clear with her communication.', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-07 05:05:26', 104, '2024-07-08 04:42:35', 0, NULL, 1),
(20077, '', '0', '6369275169', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407070003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-07 06:35:35', 0, NULL, 0, NULL, 1),
(20078, 'antony jeya lawrance', '5', '9943442187', '', 'lawrance294@gmail.com', '1998-09-17', 25, '2', '2', 'susai rathinaraj', 'retired', 12000.00, 1, 12000.00, 15000.00, 'madurai', 'madurai', '2407080001', '32', '2', 'upload_files/candidate_tracker/51730060689_WhatsAppImage20240706at11.45.17AM.pdf', NULL, '1', '2024-07-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-08 02:10:56', 1, '2024-07-08 06:24:29', 0, NULL, 1),
(20079, 'SASIKALA C', '5', '7904326482', '9843314750', 'lakshithasanjitha@gmail.com', '1994-04-10', 30, '4', '1', 'Chinnathambi', 'Farmer', 10000.00, 2, 0.00, 18000.00, 'Dharmapuri', 'Chennai', '2407080002', '', '1', 'upload_files/candidate_tracker/84941773200_SSRESUME.docx', NULL, '1', '2024-07-08', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication skills is poor and Technical skills also same so candidate not fit for sales field so status is rejected ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-07-08 04:23:47', 104, '2024-07-08 03:15:53', 0, NULL, 1),
(20080, 'J kaliyappan', '25', '7639140476', '', 'jkaliyappan4@gmail.com', '1999-01-03', 25, '4', '2', 'Jayam', 'Farmar', 10000.00, 2, 0.00, 18000.00, 'Thirupathur', 'Chennai', '2407080003', '', '1', 'upload_files/candidate_tracker/74896901304_kaliyappan.JHDBfs.pdf', NULL, '1', '2024-07-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not clear with his communication.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 04:24:34', 104, '2024-07-08 04:45:04', 0, NULL, 1),
(20081, 'B SARATHKUMAR', '20', '9751794105', '', 'SARATHKUMARb1999@gmail.com', '1999-04-06', 25, '4', '2', 'Boochaiyan', 'Farmar', 8000.00, 0, 0.00, 20000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2407080004', '', '1', 'upload_files/candidate_tracker/39632468917_RESUME1.pdf', NULL, '1', '2024-07-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Clear With His Communication.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 04:25:31', 104, '2024-07-08 04:46:51', 0, NULL, 1),
(20082, 'Suryaprakash.D', '20', '9025451324', '', 'Suryap48276@gmail.com', '2002-02-10', 22, '4', '2', 'K.Durai', 'Farmar', 10000.00, 0, 0.00, 20000.00, 'Pudupattu', 'Pudupattu', '2407080005', '', '1', 'upload_files/candidate_tracker/45898190181_SuryaprakashB2.pdf', NULL, '1', '2024-07-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Clear With His Communication.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 04:25:46', 104, '2024-07-08 04:47:04', 0, NULL, 1),
(20083, 'Vignesh', '20', '6383434526', '', 'vignvigneshs121@gmail.com', '2002-04-16', 22, '4', '2', 'Suvendiran', 'Farmer', 12000.00, 2, 0.00, 18000.00, 'Thirippathur', 'Chennai', '2407080006', '', '1', 'upload_files/candidate_tracker/62436617977_DOC20240708WA0004..pdf', NULL, '1', '2024-07-08', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performance and communication is not good.also his voice xxamp pronunciation is very poor', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-08 04:25:52', 104, '2024-07-08 04:47:26', 0, NULL, 1),
(20084, 'Monisha.A', '6', '8248774512', '9626641390', 'monishaarasan7@gmail.com', '2002-06-07', 22, '3', '2', 'Arasan', 'Daily worker', 20000.00, 5, 0.00, 18000.00, '4 perunagar (po) Uthiramerur (tk)', 'Manapathy court road', '2407080007', '', '1', 'upload_files/candidate_tracker/27434603124_MonishaResume.docx', NULL, '1', '2024-07-08', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate very long distance and communication also not good after try for non voice process also so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-08 04:26:40', 104, '2024-07-08 05:47:35', 0, NULL, 1),
(20085, 'UDHAYA KUMAR R', '20', '9344426093', '9976943196', 'ku066364@gmail.com', '2001-07-02', 23, '4', '2', 'RAJEDERAN R', 'Farmar', 17000.00, 1, 0.00, 18000.00, 'Salem', 'Chennai', '2407080008', '', '1', 'upload_files/candidate_tracker/13398460075_UDHAYAKUMARRR.pdf', NULL, '3', '2024-07-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He was not open his mouth to exlpore.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 04:37:54', 104, '2024-07-09 09:49:55', 0, NULL, 1),
(20086, 'Mohamed Ali Badhusha.M', '4', '8870353382', '', 'mohamedbadhusha25@gmail.com', '2002-01-24', 22, '2', '2', 'M.Mohideen Pitchai', 'Daily Waves', 9000.00, 1, 0.00, 15000.00, 'Shencottai, Tenkasi District', 'K.K. Nagar', '2407080009', '50', '1', 'upload_files/candidate_tracker/1639987072_ResumeProfile.pdf', NULL, '1', '2024-07-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested in field work', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 04:54:09', 104, '2024-07-08 04:49:57', 0, NULL, 1),
(20087, 'Manimegalai T', '20', '8939446080', '', 'itsmemegha08@gmail.com', '2003-02-01', 21, '4', '2', 'Thathan. L', 'Farmer', 15.00, 2, 0.00, 20000.00, 'Thiruvannamalai', 'Tiruvannamalai', '2407080010', '', '1', 'upload_files/candidate_tracker/69607188627_TManimegalai.pdf', NULL, '1', '2024-07-08', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate performance is good .but her communication and reply is very slow', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-08 05:00:40', 104, '2024-07-08 04:50:18', 0, NULL, 1),
(20088, 'Hari rajan', '4', '8778064929', '', 'harirajanrajan04937@gmail.com', '2001-12-13', 22, '3', '2', 'Kumar', 'Student', 200000.00, 1, 21000.00, 25000.00, 'Tiruppur', 'Thanjavur', '2407080011', '', '2', 'upload_files/candidate_tracker/44911109751_r4.pdf', NULL, '1', '2024-07-09', 1, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expected high', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-08 05:22:42', 104, '2024-07-09 01:25:13', 0, NULL, 1),
(20089, 'Seetha S', '25', '6379495756', '8098085233', 'seethaseeds63@gmail.com', '2001-10-15', 22, '4', '2', 'Settu', 'Former', 10000.00, 3, 0.00, 20000.00, 'Thiruvannamalai', 'Thiruvannamalai', '2407080012', '', '1', 'upload_files/candidate_tracker/98921177146_SeethaSResume.pdf', NULL, '1', '2024-07-08', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is unfit for sales process, communication not Good,\nExpectation 18k ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-08 05:25:36', 104, '2024-07-08 03:21:32', 0, NULL, 1),
(20090, 'Monisha J', '5', '8015137506', '8015360693', 'Monishamerlin19@gmail.com', '2003-11-19', 20, '3', '2', 'Johnson s', 'Daily wage labour', 24000.00, 1, 0.00, 18.00, 'chennai', 'chennai', '2407080013', '', '1', 'upload_files/candidate_tracker/28247744705_PDFGallery20240628202938.pdf', NULL, '1', '2024-07-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending the next level interview', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 05:41:42', 104, '2024-07-08 05:00:51', 0, NULL, 1),
(20091, 'JAYADURAI C', '6', '6382555454', '7502442445', 'jayaduraic97@gmail.com', '1997-02-16', 27, '4', '2', 'Chinnadurai', 'Fancy stores', 10000.00, 2, 0.00, 18000.00, 'Coimbatore', 'Coimbatore', '2407080014', '', '1', 'upload_files/candidate_tracker/63872302436_JayaduraiB1.docx', NULL, '1', '2024-07-08', 0, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55577', '5151', '1970-01-01', 1, '2024-07-08 05:41:59', 104, '2024-07-08 04:57:35', 0, NULL, 1),
(20092, 'Prabhavathi s', '5', '9789854213', '9566098434', 'Prabhavathi140304@gmail.com', '2004-03-14', 20, '3', '2', 'Subramani k', 'driver', 20000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2407080015', '', '1', 'upload_files/candidate_tracker/76233625976_PRABHAVATHIS.pdf', NULL, '1', '2024-07-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left Without Attending The Next Level Interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 05:42:05', 104, '2024-07-08 05:01:27', 0, NULL, 1),
(20093, 'Thirisha r v', '5', '8148386040', '9788411271', 'thirisharajan26@gmail.com', '2003-01-26', 21, '3', '2', 'Vijayalakshmi.r', '12th', 30000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2407080016', '', '1', 'upload_files/candidate_tracker/41698905452_RESUME2.pdf', NULL, '1', '2024-07-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She was looking for non voice', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 05:44:28', 104, '2024-07-08 05:01:47', 0, NULL, 1),
(20094, 'M.somesh kumar', '33', '9345947994', '', 'Someshkumar0306@gmail.com', '2002-06-03', 22, '3', '2', 'M.sumathai', 'Clothes sales', 285000.00, 0, 11000.00, 15000.00, '2/115 pillliyar kovil street m.a .Nagar redhil', 'Redhills', '2407080017', '', '2', 'upload_files/candidate_tracker/21753687244_someshresum.pdf', NULL, '1', '2024-07-08', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 05:51:06', 104, '2024-07-08 05:02:03', 0, NULL, 1),
(20095, 'Manoj.k', '1', '8838772692', '9843703663', 'manojpream97@gmail.com', '2004-06-23', 20, '1', '2', 'Kumar', 'Mation', 200000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Triplicane', '2407080018', '', '1', 'upload_files/candidate_tracker/91184806550_BlackandWhiteSimpleBusinessSchoolGraduateCorporateResume1.pdf', NULL, '1', '2024-07-08', 0, 'Creative hands hr', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He was not interested in sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 05:54:50', 104, '2024-07-08 05:02:24', 0, NULL, 1),
(20096, '', '0', '8838772602', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407080019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-08 06:05:37', 0, NULL, 0, NULL, 1),
(20097, 'Ashok Aswin kumar S', '5', '9894426814', '8807320221', 'sashokaswinkumar@gmail.com', '1999-08-05', 24, '2', '2', 'Sampath S', 'TNEB', 150000.00, 1, 2.60, 3.40, 'Tiruttani', 'Chennai', '2407080020', '39', '2', 'upload_files/candidate_tracker/13706818686_ASHOKRESUME050821.pdf', NULL, '1', '2024-07-08', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Ashok Ashwin Kumar Selected for Manikandan Team. Ready to Join on Thursday. Offers 3.25L as CTC and has Laptop.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-07-08 06:15:52', 104, '2024-07-08 01:12:54', 0, NULL, 1),
(20098, 'S.Nithya', '4', '7397335267', '7305869515', 'nithyasiva14022004@gmail.com', '2004-02-14', 20, '3', '2', 'A.siva', 'Auto driver', 20000.00, 2, 0.00, 16000.00, 'Pallavaram', 'Pallavaram', '2407080021', '', '1', 'upload_files/candidate_tracker/41598800618_ResumeNithya.pdf', NULL, '1', '2024-07-08', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 06:24:58', 104, '2024-07-08 05:02:42', 0, NULL, 1),
(20099, 'D.Sona', '4', '8122889302', '', 'Sonadhamodharan@gmail.com', '2004-07-11', 19, '3', '2', 'N.Dhamodharan', 'Wilding', 20000.00, 2, 0.00, 17000.00, 'Tambaram', 'Tambaram', '2407080022', '', '1', 'upload_files/candidate_tracker/66037694658_SONARESUME.pdf', NULL, '1', '2024-07-08', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 06:27:17', 104, '2024-07-08 05:02:50', 0, NULL, 1),
(20100, 'Rubena', '4', '7010824795', '9941161506', 'rubena0708@gmail.com', '2001-08-23', 22, '2', '2', 'Father S Vincent', 'Musician', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407080023', '50', '1', 'upload_files/candidate_tracker/78665825405_MyResume1.docx.pdf', NULL, '1', '2024-07-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left Without Attending The Next Level Interview', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 06:57:48', 104, '2024-07-08 05:03:05', 0, NULL, 1),
(20101, 'Sandhya.s', '5', '9790817726', '', 'sandhyasandhya86578@gmail.com', '2003-05-28', 21, '1', '1', 'Jagannathn', 'Fabrication', 20000.00, 1, 15000.00, 20000.00, '240,baba nagar -1st villivakam Chennai -49', '240,baba nagar - 1st villivakam Chennai -49', '2407080024', '', '2', 'upload_files/candidate_tracker/10578111319_BlueCleanProfessionalCVResume1.pdf', NULL, '1', '2024-07-08', 0, '12345', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No sales knowledge and skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-08 09:12:47', 104, '2024-07-08 05:52:49', 0, NULL, 1),
(20102, 'P.jayavel', '4', '8098008768', '', 'jayavel6468@gmail.com', '1999-03-31', 25, '4', '1', 'Pichan', 'Former', 16000.00, 2, 0.00, 18000.00, 'Salem', 'Salem', '2407080025', '', '1', 'upload_files/candidate_tracker/49403544524_jayavelResume1.docx', NULL, '1', '2024-07-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he was not interested in field work. not fit for sales', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 09:17:32', 104, '2024-07-08 05:05:23', 0, NULL, 1),
(20103, 'KARTHIK J', '4', '9751889802', '9751889879', 'Karthikmanish98@gmail.com', '1998-03-07', 26, '1', '1', 'Jayaraman', 'Former', 16000.00, 0, 0.00, 18000.00, 'Salem', 'Salem', '2407080026', '', '1', 'upload_files/candidate_tracker/24435297416_KarthickB1conformresume.pdf', NULL, '1', '2024-07-08', 0, 'No', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He Was Not Interested In Field Work. Not Fit For Sales', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-08 09:18:21', 104, '2024-07-08 05:05:14', 0, NULL, 1),
(20104, 'Mathanraja P', '13', '8760180237', '7708786932', 'mathanrajapatchamuthu15@gmail.com', '2000-03-15', 24, '4', '2', 'Patchamuthu', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Kavanur Cuddalore dt', 'Nerkundram Chennai', '2407080027', '', '1', 'upload_files/candidate_tracker/66204169596_MathanrajaResume.pdf', NULL, '1', '2024-07-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-08 09:36:21', 1, '2024-07-08 09:44:28', 0, NULL, 1),
(20105, 'Abirami G', '5', '9344014232', '', 'abirguru2020@gmail.com', '2003-01-11', 21, '2', '2', 'Guru samy T', 'Weaver', 20000.00, 1, 0.00, 15000.00, 'Jayankondam', 'Poonamallee', '2407090001', '1', '1', 'upload_files/candidate_tracker/78463501429_Resumedoc.pdf', NULL, '1', '2024-07-09', 0, '', '3', '59', '2024-07-10', 168000.00, '', '1', '1970-01-01', '2', 'Selected for RE Babu Team Communication Ok fresher for telesales not interested in core IT Can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '2024-07-10', 1, '2024-07-09 05:26:56', 60, '2024-07-10 10:16:14', 0, NULL, 1),
(20106, 'Aakash.k', '5', '7550357120', '', 'aakashking46@gmail', '2003-08-27', 20, '2', '2', 'Kalyana sundaram', 'He is work in supermarket Saudi arabia', 30000.00, 2, 0.00, 15.00, 'Ramanathapuram district', 'Porur', '2407090002', '50', '1', 'upload_files/candidate_tracker/40122494701_AKASHRES3.pdf', NULL, '1', '2024-07-09', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication slang and performance is not good , also his attire is very poor (weared jeen pant and casule shirt)', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-09 05:28:27', 104, '2024-07-09 01:26:46', 0, NULL, 1),
(20107, 'Rojabharathi', '5', '9566014533', '9566204897', 'rojabharathi98@gmail.com', '1998-12-12', 25, '2', '1', 'Sathish Kumar', 'Admin manager', 30000.00, 1, 0.00, 20000.00, 'No.1 nehru Street k,k Nagar Nanganallur', 'Nanganallur', '2407090003', '50', '1', 'upload_files/candidate_tracker/43764486083_Rojaresume2024.pdf', NULL, '1', '2024-07-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-09 05:32:16', 104, '2024-07-09 01:39:29', 0, NULL, 1),
(20108, 'MANIKANDAN', '6', '8681027463', '8667095561', 'manikandansmartz1997@gmail.com', '1997-12-19', 26, '2', '2', 'RAJENDRAPRABHU', 'B.e mechanical engineering', 200000.00, 1, 19500.00, 25000.00, 'chennai', 'Perambur', '2407090004', '50', '2', 'upload_files/candidate_tracker/10202358027_manikandanfinalResume2.PDF', NULL, '1', '2024-07-09', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Intrested and work experience in mechanical field,not fit for sales And his Convenience skill is low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-09 05:51:51', 104, '2024-07-09 01:28:50', 0, NULL, 1),
(20109, 'Subash P', '6', '9047755713', '', 'subashabi47@gmail.com', '2001-05-09', 23, '2', '2', 'Padaikathu D', 'Farmer', 15000.00, 1, 16000.00, 22000.00, 'Nallarikkai,perambalur district', 'Tambaram', '2407090005', '50', '2', 'upload_files/candidate_tracker/62638439781_Resume.pdf', NULL, '1', '2024-07-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is 50/50 he have exp 6m Golden enterprise star health. roll - Qc \npls check suite or not \nconfirm the joining date', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-09 05:59:05', 104, '2024-07-09 01:25:42', 0, NULL, 1),
(20110, 'J. Shanmuga priya', '6', '9087694284', '8608813292', 'Jeyaseelanpriya50@gmail.com', '2009-07-09', 0, '2', '2', 'Jayaseelan', 'Auto driver', 20000.00, 2, 18000.00, 20000.00, 'Avadi', 'Avadi', '2407090006', '39', '2', 'upload_files/candidate_tracker/14091660347_DKFRIENDRESUME.docx', NULL, '1', '2024-07-09', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate all ok but ery long distance and need to log out for 6.30 for every day so not fit for my team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-09 06:00:53', 104, '2024-07-09 01:31:04', 0, NULL, 1),
(20111, 'Kamali.g', '6', '9342782602', '9345351013', 'kamaligunasekaran96@gmail.com', '2001-10-10', 22, '2', '2', 'Gunasekaran', 'Telephone', 13000.00, 3, 15000.00, 13000.00, '512 udaiyar Street venmani polur Tiruvannamalai', 'Chennai Egmore', '2407090007', '50', '1', 'upload_files/candidate_tracker/70125663199_KamaliResume.pdf', NULL, '3', '2024-07-09', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate doesxquott not performed well in the interaction .also she is little bit  childish behaviour then candidate told she have lazy behaviour character', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-09 06:02:04', 104, '2024-07-09 01:30:47', 0, NULL, 1),
(20112, 'Hariharan.k', '6', '8189844496', '8072936731', 'hariharan.ashwin3@gmail.com', '2001-07-24', 22, '2', '2', 'Kumaresan', 'Sales man', 50000.00, 3, 14000.00, 15000.00, '15/7,ramanujam street,t.nagar,chennai-17', '15/7,Ramanujam Street,T.Nagar,Chennai-17', '2407090008', '50', '2', 'upload_files/candidate_tracker/67447382725_hariharan.ashwinresume.docx', NULL, '1', '2024-07-09', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'interview performance level is good but sustainability doubt buz last 3month working tele calling he is abscond and salary exception so high ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-09 06:09:46', 104, '2024-07-09 01:32:38', 0, NULL, 1),
(20113, 'gk brundha', '5', '6303230096', '', 'gkbrundhabindhu@gmail.com', '2001-02-18', 23, '2', '2', 'g kuppaiah', 'granets', 40000.00, 2, 0.00, 16000.00, 'chitoor', 't nagar', '2407090009', '50', '1', 'upload_files/candidate_tracker/69948315853_bindhuresume.pdf', NULL, '1', '2024-07-09', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She Was Not Comfortable With Tamil', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '77778', '1970-01-01', 1, '2024-07-09 06:11:02', 104, '2024-07-17 06:55:12', 0, NULL, 1),
(20114, 'Hemachandran v', '25', '8754826598', '', 'hemachandranvkh@gmail.com', '1999-01-31', 25, '2', '2', 'Viswanathan k', 'Conductor', 50000.00, 2, 0.00, 400000.00, 'Chennai', 'Chennai', '2407090010', '39', '2', 'upload_files/candidate_tracker/44514767884_HEMACHANDRANRESUME.2.pdf', NULL, '1', '2024-07-09', 0, '', '3', '59', '2024-07-15', 350000.00, '', '4', '2025-07-23', '1', 'Selected for RM role Need to analyse in 7days and confirm no releveant exp long run need to analyse', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-07-09 06:19:34', 104, '2024-08-01 12:29:53', 0, NULL, 1),
(20115, 'Dharshini', '6', '9345001389', '8524846661', 'dharshiniraja98@gmail.com', '1998-06-18', 26, '1', '2', 'Dharma Raja', 'Business', 110000.00, 1, 35000.00, 38000.00, 'Chennai', 'Chennai', '2407090011', '', '2', 'upload_files/candidate_tracker/84619372870_DOC20240709WA0001240709123955.pdf', NULL, '1', '2024-07-09', 0, '55799', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'The candidate is not suitable for insurnacne sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-07-09 06:59:09', 104, '2024-07-09 07:08:29', 0, NULL, 1),
(20116, 'S Dhandapani', '11', '8825858246', '9840731478', 'dhandapaniuhbb@gmail.com', '2000-08-30', 23, '6', '2', 'Parent', 'Auto driver', 30000.00, 0, 0.00, 22000.00, 'Chintadripet', 'Chintadripet', '2407090012', '', '1', 'upload_files/candidate_tracker/65192776066_DhandapaniResume2.pdf', NULL, '1', '2024-07-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-09 10:03:08', 104, '2024-07-09 05:16:43', 0, NULL, 1),
(20117, 'Ranjith', '11', '9585679072', '8300770676', 'ranjithmurugan1511@gmail.com', '2003-11-15', 20, '3', '2', 'Murugan(Father)', 'Daily wages', 20000.00, 1, 0.00, 20000.00, '2/1,Kammalar Street, Darasuram, Kumbakonam', 'Tambaram', '2407090013', '', '1', 'upload_files/candidate_tracker/38022569279_RanjithMresume.pdf', NULL, '1', '2024-07-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-09 10:19:59', 104, '2024-07-09 05:17:09', 0, NULL, 1),
(20118, 'Arasu', '11', '8300770676', '9585679072', 'arasu9257@gmail.com', '2003-10-25', 20, '3', '1', 'Mathiyazhagan (father)', 'Daily wages', 25000.00, 1, 0.00, 20000.00, 'Papanasam', 'Thambaram', '2407090014', '', '1', 'upload_files/candidate_tracker/20361227375_Arasu.pdf', NULL, '1', '2024-07-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-09 10:20:10', 104, '2024-07-09 05:17:25', 0, NULL, 1),
(20119, '', '0', '9150585081', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407090015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-09 04:48:16', 0, NULL, 0, NULL, 1),
(20120, 'poomani', '13', '8680800512', '8122315788', 'poomaniselvam518@gmail.com', '1997-09-09', 26, '3', '2', 'selvam', 'developer', 200000.00, 1, 0.00, 240000.00, 'chennai', 'chennai', '2407090016', '', '1', 'upload_files/candidate_tracker/4570468189_poomaniselvam.pdf.pdf', NULL, '1', '2024-07-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-09 06:55:41', 1, '2024-07-09 07:13:16', 0, NULL, 1),
(20121, 'G.vishnupriya', '6', '7569792865', '', 'Guntimaduguvishnupriya3@gmail.com', '2000-07-22', 23, '2', '2', 'G.madhusudhanraju', 'Farmer', 10000.00, 1, 0.00, 18000.00, 'Andhrapradesh,rayachoty dst', 'Marathalli, Bangalore', '2407100001', '1', '1', 'upload_files/candidate_tracker/39444685671_g.vishnu.pdf', NULL, '1', '2024-07-10', 0, '', '3', '59', '2024-07-19', 192000.00, '', '3', '2024-10-16', '2', 'Communication Ok Fresher Need to train alot in our roles Can give a try and analyse in 7 days training', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-07-22', 1, '2024-07-10 02:17:47', 104, '2024-08-30 06:32:22', 0, NULL, 1),
(20122, 'Daniel.B', '6', '7358368240', '', 'Danidon7358@gmail.com', '2001-10-19', 22, '2', '2', 'Babu. V', 'Electrician', 13000.00, 1, 0.00, 14000.00, 'Maduravoyal', 'Maduravoyal', '2407100002', '50', '1', 'upload_files/candidate_tracker/79851210370_Resume1.pdf', NULL, '1', '2024-07-10', 0, '', '3', '59', '2024-07-12', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Fresher for our roles Need to train a lot from scratch should check and confirm in 7 days', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-07-12', 1, '2024-07-10 05:25:45', 60, '2024-07-11 10:40:40', 0, NULL, 1),
(20123, '', '0', '7904122604', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407100003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-10 05:38:05', 0, NULL, 0, NULL, 1),
(20124, '', '0', '9626188316', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407100004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-10 05:40:20', 0, NULL, 0, NULL, 1),
(20125, 'Aruna', '5', '8870661073', '7558181227', 'Christyakshara@gmail.com', '1999-03-21', 25, '1', '2', 'Arunkumar', 'Painter', 30000.00, 2, 30000.00, 35000.00, 'Kumbakom', 'Chennai', '2407100005', '', '2', 'upload_files/candidate_tracker/34898852819_Arunaupdate2p.pdf', NULL, '1', '2024-07-10', 0, '55781', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Jagadeesh team. Ready to Join next monday. But her current CTC is 4.2L and expected 4.7. Told that shall give the same cTC and set a target for 3 months and 6 months and commited to revise over accomplishment based on her perfomace', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-07-10 05:50:23', 104, '2024-07-10 06:04:40', 0, NULL, 1),
(20126, 'Sathish kumar. M', '6', '8825953268', '9500006981', 'sk844774@gmail.com', '2000-07-10', 24, '1', '2', 'Paraneshwari', 'House wife', 10000.00, 1, 20000.00, 22000.00, 'No:31 pandiyan street greenways road', 'No:31 pandiyan street greenways road', '2407100006', '', '2', 'upload_files/candidate_tracker/87802210665_sathishresume.pdf', NULL, '1', '2024-07-10', 0, '55792', '3', '59', '2024-07-22', 255600.00, '', '3', '2024-11-02', '1', 'Selected for RM Role Internal reference 8 months account exp 11 months Telecalling exp No Exp documents in the previous one Can give a try and check in the 7 days training analysis', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '2024-07-23', 1, '2024-07-10 05:59:43', 60, '2024-07-23 08:11:43', 0, NULL, 1),
(20127, 'Sindhu L', '4', '9345544579', '9361940526', 'sindhultrt@gmail.com', '2002-07-24', 21, '2', '2', 'Loganathan', 'Farmer', 8000.00, 1, 0.00, 15000.00, 'Thiruttani', 'Thiruttani', '2407100007', '50', '1', 'upload_files/candidate_tracker/38003678178_SindhuResume.pdf', NULL, '1', '2024-07-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-10 06:14:20', 1, '2024-07-10 06:19:19', 0, NULL, 1),
(20128, '', '0', '6379981818', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407100008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-10 06:15:18', 0, NULL, 0, NULL, 1),
(20129, 'Vaidheygi.S', '6', '6383117698', '9791582685', 'vaidheygisubburayan2003@gmail.com', '2003-05-20', 21, '2', '2', 'Subburayan', 'Farmer', 8000.00, 1, 0.00, 15000.00, 'Thiruttani', 'Thiruttani', '2407100009', '50', '1', 'upload_files/candidate_tracker/16665131042_Vaidheygifresherresume.pdf', NULL, '1', '2024-07-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-10 06:20:11', 60, '2024-07-11 09:44:22', 0, NULL, 1),
(20130, 'Avinash A', '6', '7395913884', '9940304492', 'avidiv46@gmail.com', '2000-02-18', 24, '2', '2', 'Anthony', 'Clerk', 50000.00, 1, 0.00, 13000.00, '75 Palani andavar koil street ayanavaram', 'Chennai', '2407100010', '36', '1', 'upload_files/candidate_tracker/88689118450_AviresumeNewPDF.pdf', NULL, '1', '2024-07-10', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interview performance level average and looking for customer support team not interested sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-10 06:23:49', 104, '2024-07-10 06:06:43', 0, NULL, 1),
(20131, '', '0', '7094306106', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407100011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-10 06:34:23', 0, NULL, 0, NULL, 1),
(20132, 'Santhiya', '5', '7904518951', '', 'Santhiyamurugesan97@gmail.com', '1997-10-21', 26, '2', '2', 'S. Murugesan', 'Retired police officer', 32.00, 1, 15500.00, 22.00, 'Theni', 'Chennai', '2407100012', '50', '2', 'upload_files/candidate_tracker/25359620124_santhiyanew.resume.docx', NULL, '1', '2024-07-10', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She didnxquott came for 2nd round\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-07-10 06:41:51', 104, '2024-07-10 02:49:49', 0, NULL, 1),
(20133, 'P.kaviya', '6', '7904282466', '9094320082', 'kaviyakumar528@gmail.com', '2003-06-30', 21, '2', '2', 'T. Palanikumar', 'Dietician', 10000.00, 1, 0.00, 20000.00, 'Anna nagar chennai', 'Anna nagar chennai', '2407100013', '50', '1', 'upload_files/candidate_tracker/98148338663_kaviya.pdf', NULL, '1', '2024-07-10', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-10 06:48:38', 104, '2024-07-10 03:23:04', 0, NULL, 1),
(20134, 'Utti bhavani devi', '6', '8019654035', '', 'uttibhavani21@gmail.com', '2001-09-24', 22, '2', '2', 'Sreekrishna', 'Weaver', 15000.00, 1, 0.00, 18000.00, 'Bangalore', 'Banglore', '2407100014', '1', '1', 'upload_files/candidate_tracker/5333738137_Sharebhavani.docx', NULL, '2', '2024-07-10', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-10 07:32:45', 126, '2024-07-10 06:35:22', 0, NULL, 1),
(20135, 'Dhaniyala ragini', '6', '9963634179', '', 'dhaniyalachitty@gmail.com', '1996-08-08', 27, '2', '2', 'Dhaniyala suvarnamma', 'House wife', 50.00, 1, 0.00, 18000.00, 'Anantapur', 'Anantapur', '2407100015', '1', '1', 'upload_files/candidate_tracker/95613156155_raginiResume.docx', NULL, '1', '2024-07-10', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and confident', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-10 07:32:47', 126, '2024-07-10 06:36:37', 0, NULL, 1),
(20136, 'Kalle Lavanya', '6', '8688900806', '', 'lavanyakalle151@gmail.com', '1999-01-15', 25, '2', '2', 'Kalle Mahalakshmi', 'Weaver', 15000.00, 2, 0.00, 17000.00, 'Kadapa', 'Kadapa', '2407100016', '1', '2', 'upload_files/candidate_tracker/14209939200_Lavanyanonit....pdf', NULL, '1', '2024-07-10', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-10 07:32:49', 126, '2024-07-10 06:38:06', 0, NULL, 1),
(20137, 'Sowmiya', '11', '9080938511', '6374839500', 'sowmiyavel86@gmail.com', '2009-07-10', 0, '2', '2', 'Velmurugan', 'Police SI', 66000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2407100017', '1', '1', 'upload_files/candidate_tracker/39752011520_Sowmiya.Resume11.pdf', NULL, '1', '2024-07-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-07-10 08:01:02', 104, '2024-07-10 02:50:37', 0, NULL, 1),
(20138, 'nasreen Domani', '5', '7624933892', '', 'ayeshadomni212@gmail.com', '1997-12-10', 26, '2', '2', 'Gaffar domani', 'Sales executive', 35000.00, 4, 30000.00, 40000.00, 'Hubli Karnataka', 'Frazer town Stephen road banlg', '2407100018', '1', '2', 'upload_files/candidate_tracker/11203839561_Resume1.pdf', NULL, '1', '2024-07-10', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'confident level its good previous experience in inside salaes but she will ok field also suggested ctc 4.5lac immediate joining', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-07-10 08:50:00', 126, '2024-07-10 05:28:28', 0, NULL, 1),
(20139, 'Heenakousar g Nadaf', '6', '9148144202', '7483391099', 'hgnadaf596@gmail.com', '2000-01-15', 24, '2', '2', 'Gaibusab g Nadaf', 'Contracter', 30000.00, 2, 0.00, 20.00, 'Bangalore', 'Gadag', '2407100019', '1', '1', 'upload_files/candidate_tracker/11819208463_HEENAKOUSAR.G.NADAF.pdf', NULL, '1', '2024-07-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication and confident level can process for further', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-10 08:52:25', 126, '2024-07-10 05:44:13', 0, NULL, 1),
(20140, 'rokith', '5', '7358587350', '6382115925', 'rokithrossi46@gmail.com', '1998-11-18', 25, '1', '2', 'Dhanalakshmi', 'press', 50000.00, 1, 49000.00, 30000.00, 'Tharamani', 'tharamani', '2407100020', '', '2', 'upload_files/candidate_tracker/86479286214_RokithResume123.pdf', NULL, '1', '2024-07-10', 0, '55781', '3', '59', '2024-07-22', 380000.00, '', '1', '2024-08-09', '1', 'Selected for RM Role reference ProfileHave Exp in Byjus and for the previous exp there was no proof Can be trained in our roles  Need to analyse in 7 days training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '2024-08-05', 1, '2024-07-10 09:03:34', 104, '2024-08-30 06:32:39', 0, NULL, 1),
(20141, 'Ranjith', '5', '9087817262', '', 'ranjithmrv02@gmail.com', '1996-10-02', 27, '1', '2', 'Mariyappan', 'Government employee', 40000.00, 2, 29000.00, 30000.00, 'Dharmapuri', 'Saidapet', '2407100021', '', '2', 'upload_files/candidate_tracker/60334310201_RanjithM1.pdf', NULL, '1', '2024-07-10', 0, '55781', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-07-10 09:03:55', 104, '2024-07-10 06:38:56', 0, NULL, 1),
(20142, 'Akash martin A', '5', '9841805907', '', 'akashagmartin0@gmail.com', '1995-05-26', 29, '1', '2', 'Parent', 'Bba', 30000.00, 1, 29000.00, 35000.00, 'Chennai', 'Chennai', '2407100022', '', '2', 'upload_files/candidate_tracker/49335465524_AkashResumeUpdated2024.pdf', NULL, '1', '2024-07-10', 0, '1234', '9', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Refix and confrim', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-07-10 09:12:04', 104, '2024-07-10 06:07:09', 0, NULL, 1),
(20143, 'Hemavathi.R', '11', '9751917689', '', 'hemaraghu71@gmail.com', '2002-03-25', 22, '2', '2', 'Raghu.V', 'Driver', 25000.00, 1, 0.00, 13000.00, 'l.N.puram (vill) , killmuttukkur post vellore dis', 'Vellore', '2407100023', '1', '1', 'upload_files/candidate_tracker/29934259623_HemaResume.pdf', NULL, '1', '2024-07-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-07-10 12:40:03', 104, '2024-07-11 06:05:56', 0, NULL, 1),
(20144, 'Indhuja', '6', '9360832528', '6318453684', 'indhujaworks@gmail.com', '2001-01-10', 23, '2', '2', 'Mukesh', 'MLA (P.A)', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2407110001', '50', '1', 'upload_files/candidate_tracker/64777730183_indhujaresume.pdf', NULL, '1', '2024-07-11', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not try to speak about the sales and basic sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-11 04:31:50', 104, '2024-07-11 10:56:54', 0, NULL, 1),
(20145, 'Naveenkumar.S', '6', '9344019279', '9344919279', 'naveenkumar26588@gmail.com', '2003-02-20', 21, '2', '2', 'V.Santhamurthi', 'Karpenter', 200000.00, 2, 0.00, 20000.00, 'Vellore', 'Ambattur', '2407110002', '50', '1', 'upload_files/candidate_tracker/56191792806_naveenresume1.pdf', NULL, '1', '2024-07-11', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he Doesnxquott work here for long days ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-11 05:02:02', 104, '2024-07-11 12:10:24', 0, NULL, 1),
(20146, 'Preethi', '6', '6379202377', '6380112724', 'vpreethi773@gmail.com', '2003-03-19', 21, '2', '2', 'Father name: vijay', 'BBA', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Kodungaiyur', '2407110003', '50', '1', 'upload_files/candidate_tracker/52750369622_Resume1.pdf', NULL, '1', '2024-07-11', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'already father and sister working in sales field but not interested in sales interested in non voice ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-11 05:06:05', 104, '2024-07-11 06:04:09', 0, NULL, 1),
(20147, 'Manikandan M', '31', '7825095812', '9360884798', 'jmanikandan2331@gmail.com', '2001-05-31', 23, '3', '2', 'S. Malaisamy', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Gobichetipalayam', 'Gobichetipalayam', '2407110004', '', '1', 'upload_files/candidate_tracker/54230430399_ManikandanM.pdf', NULL, '2', '2024-07-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-11 05:09:22', 130, '2024-07-17 06:23:56', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20148, 'Keerthana. K', '4', '9597290825', '7395810825', 'Keerthanakannan1010@gmail.com', '2000-10-10', 23, '2', '2', 'G.kannan', 'Driver', 40000.00, 2, 0.00, 150000.00, 'Kumbakonam', 'Thanjavur', '2407110005', '1', '1', 'upload_files/candidate_tracker/75264421663_KeerthanaKFlowCVResume20240222.pdf', NULL, '1', '2024-07-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not fit for sales, have no clarity in voice ', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-11 05:11:22', 104, '2024-07-11 06:03:55', 0, NULL, 1),
(20149, 'Mowly G', '6', '9677255274', '', 'monimowly15@gmail.com', '2003-12-15', 20, '2', '2', 'Devi G', 'Tailor', 8000.00, 1, 0.00, 20000.00, 'Puzhal', 'Puzhal ,Chennai', '2407110006', '1', '1', 'upload_files/candidate_tracker/98909329882_CV2024050513485497.pdf', NULL, '1', '2024-07-11', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice and commuication is ok but distance is very long and exp is only 16k above past 15 company interview attend but rejected  all  company reason salary package only  so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-11 05:13:18', 104, '2024-07-11 12:12:19', 0, NULL, 1),
(20150, 'Balamurugan s', '13', '9597074181', '9750171749', 'Balamurugan12114@gmail.com', '2002-03-28', 22, '3', '2', 'Subramani p', 'Former', 8000.00, 1, 0.00, 10000.00, 'Dindugul', 'Ashok pillar', '2407110007', '', '1', 'upload_files/candidate_tracker/28348188196_balamurugans1.pdf', NULL, '1', '2024-07-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-11 05:27:02', 1, '2024-07-11 05:33:40', 0, NULL, 1),
(20151, 'SANKARESAN S', '34', '6380181124', '9042534113', 'sankareshselvaraj7@gmail.com', '2001-11-15', 22, '3', '2', 'Selvaraj v d', 'Farmer', 30000.00, 1, 0.00, 15000.00, 'Pattukkottai, Tanjore', 'K k nagar, Chennai', '2407110008', '', '1', 'upload_files/candidate_tracker/22401994759_SankaresanSResume.pdf', NULL, '1', '2024-07-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-11 05:32:55', 1, '2024-07-11 05:52:24', 0, NULL, 1),
(20152, 'muthusamy h', '6', '9384626863', '9087225567', 'tinkumuthu2@gmail.com', '2004-07-15', 19, '2', '2', 'harikrishnan', 'Welder', 20000.00, 1, 0.00, 18000.00, 'anna nagar', 'anna nager', '2407110009', '56', '1', 'upload_files/candidate_tracker/76003055447_muthuresumefinal11.pdf', NULL, '1', '2024-07-11', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is professional dance not suit sales field ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-11 05:36:15', 104, '2024-07-12 10:54:08', 0, NULL, 1),
(20153, 'Selvam S', '6', '8778948755', '9444622081', 'Selvamsaravanan191@gmail.com', '2003-12-06', 20, '2', '2', 'Saravanan N', 'Driver', 15000.00, 1, 0.00, 16000.00, 'Mogappair', 'Mogappair', '2407110010', '56', '1', 'upload_files/candidate_tracker/61185890821_SelvamResume3.pdf', NULL, '1', '2024-07-11', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candiate juslooking temporvery job only after that go for it realted job  so not fit for my team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-11 05:36:33', 104, '2024-07-12 10:53:53', 0, NULL, 1),
(20154, 'devandran s', '6', '6380862828', '8754512517', 'devaskydevandran@gmail.com', '2000-09-27', 23, '2', '2', 'sekar', 'welder', 30000.00, 1, 0.00, 15000.00, 'padi', 'padi', '2407110011', '56', '1', 'upload_files/candidate_tracker/169235800_DEVANDRANSResume3.pdf', NULL, '1', '2024-07-11', 0, '', '3', '59', '2024-07-18', 192000.00, '', '', '2024-08-16', '1', 'Selected for RE role Fresher Need to train and analyse Can give a try Communication ok', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-07-18', 1, '2024-07-11 05:36:48', 104, '2024-07-22 06:30:26', 0, NULL, 1),
(20155, 'Ibrahim Sharuk K', '5', '9363233891', '8778146562', 'sharukshafiq38@gmail.com', '2000-01-26', 24, '2', '2', 'Kamila banu', 'Home maker', 28000.00, 1, 0.00, 18000.00, 'Karur', 'Chennai,egmore', '2407110012', '50', '1', 'upload_files/candidate_tracker/40196923659_sharukresume.pdf', NULL, '1', '2024-07-11', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sarath Team,  Salary 21k Gross, task given july and aug 2 lac life and 15k mF if achieved, can increase to 24k gross. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-07-11 05:40:15', 60, '2024-07-19 03:44:33', 0, NULL, 1),
(20156, 'Vaishanavi S', '4', '8220522547', '', 'Vaishnavi12072001@gmail.com', '2001-07-12', 22, '2', '2', 'Sakthivel.k', 'Farmer', 40000.00, 1, 0.00, 150000.00, 'Jayankondam', 'Thanjavur', '2407110013', '1', '1', 'upload_files/candidate_tracker/43432195148_vaishnaviresume.pdf', NULL, '1', '2024-07-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is preparing tnpsc..looking for job  temperory only', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-11 05:44:01', 104, '2024-07-11 06:04:24', 0, NULL, 1),
(20157, '', '0', '7339312505', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407110014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-11 05:53:16', 0, NULL, 0, NULL, 1),
(20158, 'Vickram', '6', '9385472350', '', 'vickrammadhavan2002@gmail.com', '2009-07-04', 15, '2', '2', 'Madhavan sethu', 'Buisness', 20000.00, 1, 0.00, 18000.00, 'Sivagangai', 'Sivagangai', '2407110015', '1', '1', 'upload_files/candidate_tracker/55652311459_finalresume.pdf.pdf', NULL, '1', '2024-07-11', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales look like very slow', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55651', '5151', '1970-01-01', 1, '2024-07-11 06:09:58', 104, '2024-07-11 06:04:38', 0, NULL, 1),
(20159, 'Deepankumar', '6', '9384747760', '9344861756', 'ksdeepankumar07@gmail.com', '2003-01-08', 21, '2', '2', 'Kumar', 'Driver', 30000.00, 2, 0.00, 18000.00, 'Velachery', 'Velachery', '2407110016', '42', '1', 'upload_files/candidate_tracker/99187688698_AdobeScan11Jul2024.pdf', NULL, '1', '2024-07-11', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'over Attitude and no basic skill ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-11 06:27:07', 104, '2024-07-11 06:05:24', 0, NULL, 1),
(20160, 'Anitha.E', '4', '7200364075', '9566260716', 'anithamaanvi5@gmail.com', '1995-06-28', 29, '2', '1', 'Ekambaram', 'Purchase manager', 12.00, 2, 15.00, 15.00, 'No 55/18 ammai appan street , royapettah', 'No 55/18 ammai appan street, royapettah', '2407110017', '1', '2', 'upload_files/candidate_tracker/82294822094_AnithaResumeneww.docx', NULL, '3', '2024-07-11', 1, '', '3', '59', '2024-07-15', 180000.00, '', '4', '2024-11-05', '2', 'Selected for OPS team RE role Need to analyse and confirm in 7 days training', '1', '2', '1', '1', '8', '1', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '2024-07-15', 1, '2024-07-11 06:28:32', 60, '2024-07-15 08:06:55', 0, NULL, 1),
(20161, '', '0', '9894350551', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407110018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-11 07:03:26', 0, NULL, 0, NULL, 1),
(20162, 'HARISH K', '2', '9080642051', '9994196296', 'Harishk.cs1@gmail.com', '2002-07-11', 22, '3', '2', 'KUMAR S', 'PAINTER', 13000.00, 1, 0.00, 15000.00, 'PUDUCHERRY', 'PUDUCHERRY', '2407110019', '', '1', 'upload_files/candidate_tracker/89586024590_HarishK1.pdf', NULL, '1', '2024-07-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-11 07:35:38', 1, '2024-07-11 07:42:16', 0, NULL, 1),
(20163, 'Ramu S', '2', '8098523623', '', 'ramu.cse2003@gmail.com', '2003-09-10', 20, '3', '2', 'Shivanrathiri R', 'Sales man at pothys', 12000.00, 1, 0.00, 15000.00, 'Puducherry', 'Puducherry', '2407110020', '', '1', 'upload_files/candidate_tracker/24601633659_SRamuResume.pdf', NULL, '1', '2024-07-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-11 07:35:44', 1, '2024-07-11 07:42:19', 0, NULL, 1),
(20164, 'Subhashini A', '11', '6381418984', '9094451566', 'Subhahini792001@gmail.com', '2001-09-07', 22, '6', '2', 'Arunachalam', 'Business', 50000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2407110021', '', '1', 'upload_files/candidate_tracker/19362520743_A.subhashini.resume.cv.pdf', NULL, '1', '2024-07-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-11 07:43:43', 104, '2024-07-11 04:26:43', 0, NULL, 1),
(20165, 'aGNES mARIA', '11', '9360078938', '', 'AGNESMARIA6666@GMAIL.COM', '2002-01-06', 22, '6', '2', 'sIMON', 'mnc', 60000.00, 1, 0.00, 7000.00, 'NEW PERUNGALATHUR', 'nEW PERUNGALATHUR', '2407110022', '', '1', 'upload_files/candidate_tracker/42549062604_newHRr3esume.pdf', NULL, '1', '2024-07-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', '1970-01-01', '4', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-11 07:47:01', 104, '2024-07-11 04:27:04', 0, NULL, 1),
(20166, '', '0', '9384906391', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407110023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-11 08:45:08', 0, NULL, 0, NULL, 1),
(20167, '', '0', '9514166618', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407110024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-11 09:53:26', 0, NULL, 0, NULL, 1),
(20168, 'Soundarya Kumar', '5', '6360661462', '', 'soundaryakumar227@gmail.com', '1999-03-23', 25, '3', '2', 'Sangeeth Kumar', 'Painting contractor', 50000.00, 1, 354000.00, 450000.00, 'bangalore', 'bangalore', '2407110025', '', '2', 'upload_files/candidate_tracker/72566017124_Resume.PDF', NULL, '1', '2024-07-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-11 10:06:42', 1, '2024-07-11 10:12:02', 0, NULL, 1),
(20169, '', '0', '9361938984', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407110026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-11 11:02:20', 0, NULL, 0, NULL, 1),
(20170, '', '0', '7305315134', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407110027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-11 11:10:06', 0, NULL, 0, NULL, 1),
(20171, 'Mathankumar t', '4', '9080987212', '', 'massmadhankumar7822@gmail.com', '2002-10-03', 21, '2', '2', 'Tamilarasan K', 'No', 10000.00, 3, 16000.00, 20000.00, 'Tiruvannamalai', 'Kodambakkam, Chennai', '2407110028', '50', '2', 'upload_files/candidate_tracker/70657681210_MadhankuamarT.docx', NULL, '1', '2024-07-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-11 11:24:36', 1, '2024-07-11 11:28:03', 0, NULL, 1),
(20172, '', '0', '7695802906', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407110029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-11 12:04:52', 0, NULL, 0, NULL, 1),
(20173, 'Sathyaroopa', '6', '8015806858', '8220895574', 'Sathyavelu212001@gmail.com', '2001-04-21', 23, '6', '2', 'Velusamy', 'Tailor', 20000.00, 1, 3.00, 4.00, 'Tamilnadu', 'Bangalore', '2407110030', '', '2', 'upload_files/candidate_tracker/29448628062_sathya.resume1.pdf', NULL, '1', '2024-07-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-11 12:55:06', 1, '2024-07-11 12:59:24', 0, NULL, 1),
(20174, 'Varsha.K.U', '6', '6380765088', '', 'varshaudai14@gmail.com', '1998-04-14', 26, '2', '2', 'Uma kanthan.K.N', 'Labour', 8000.00, 2, 18000.00, 25000.00, 'Gudiyattam, vellore district', 'Gudiyattam, vellore District', '2407120001', '1', '2', 'upload_files/candidate_tracker/20249748701_DocumentfromVarsha.pdf', NULL, '1', '2024-07-12', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'high expectation', '5', '1', '', '2', '2', '', '2', '2024-07-26', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-12 12:20:59', 126, '2024-07-31 12:20:07', 0, NULL, 1),
(20175, 'Sriram R', '5', '9360541543', '', 'sriramasamy14@gmail.com', '2001-09-14', 22, '2', '2', 'Ramasamy', 'Shopkeeper', 240000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2407120002', '1', '1', 'upload_files/candidate_tracker/33692134704_SriramResume.pdf', NULL, '1', '2024-07-12', 0, '', '3', '59', '2024-07-18', 275000.00, '', '5', '1970-01-01', '2', 'Selected for RM Role Gnanansekar Team Can be trained in our roles Fresher need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55656', '55557', '2024-07-18', 1, '2024-07-12 03:49:16', 60, '2024-07-17 07:37:33', 0, NULL, 1),
(20176, 'Subash s', '6', '9150761875', '8754845077', 'subashsuresh334@gmail.com', '2001-06-16', 23, '2', '2', 'Suresh r', 'Driver', 15000.00, 0, 0.00, 18000.00, 'Cuddalore', 'Chennai', '2407120003', '39', '1', 'upload_files/candidate_tracker/75417455598_subashs.pdf', NULL, '1', '2024-07-12', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate attire is good but his performance is not good ,also his voice and prononunciation is quality is poor', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-12 04:22:53', 104, '2024-07-12 12:16:08', 0, NULL, 1),
(20177, 'Deepanraj S', '11', '7904655816', '9585369612', 'deepandeepa782@gmail.com', '2002-09-27', 21, '2', '2', 'Sivanesan', 'Farmer', 18000.00, 2, 0.00, 15000.00, 'Vridhachalam', 'Vridhachalam', '2407120004', '50', '1', 'upload_files/candidate_tracker/39441351644_DOC20240622WA0001.pdf', NULL, '1', '2024-07-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-12 04:38:30', 1, '2024-07-12 04:44:49', 0, NULL, 1),
(20178, 'Jannath', '5', '9941371443', '', 'jannathrizwan1@gmail.com', '1997-11-01', 26, '2', '1', 'Rizwan', 'Working', 5.00, 2, 3.22, 5.00, 'Tondiarpet,chennai', 'Chennai', '2407120005', '50', '2', 'upload_files/candidate_tracker/78665097822_jannathResume.pdf', NULL, '1', '2024-07-12', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-12 05:21:27', 104, '2024-07-12 03:06:24', 0, NULL, 1),
(20179, 'Gowrilatha G', '6', '9361016503', '', 'gowrilathaponneri@gamil.com', '2002-05-18', 22, '2', '2', 'Gowresan N', 'Daily wages', 49000.00, 2, 0.00, 17000.00, 'Jolarpettai', 'Jolarpettai', '2407120006', '50', '1', 'upload_files/candidate_tracker/81299639273_MSGOWRILATHAGRESUME.pdf', NULL, '1', '2024-07-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SELECTED - JOB NEEDED PERSON PARENTS ARE DAILY WORKERS SO I THINK SHE NEED JOB AND WORK TOO CTC 15K DOUBLE DEGREE HOLDER', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-12 05:31:05', 104, '2024-07-12 03:47:53', 0, NULL, 1),
(20180, 'V bharathi', '6', '8680096288', '8939691457', 'bharathivelu2003@gmail.com', '2003-08-09', 20, '2', '2', 'Dhanam', 'Home maker', 15000.00, 1, 0.00, 240000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2407120007', '50', '1', 'upload_files/candidate_tracker/17202289572_bharathiRESUME3.doc', NULL, '1', '2024-07-12', 0, '', '3', '59', '2024-07-16', 180000.00, '', '3', '2024-08-31', '2', 'Selected for RE Role Have exp in Credit card sales but no relevant documents based on the verbal commitment moving forward', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2024-07-16', 1, '2024-07-12 05:46:26', 104, '2024-07-16 06:09:12', 0, NULL, 1),
(20181, 'Keerthiga shri', '6', '7305165679', '9940900885', 'keerthigakeerthiga122@gmail.com', '2000-08-06', 23, '2', '2', 'Shanmugavel', 'Farmer', 25000.00, 1, 15000.00, 18000.00, 'Ramanathapuram', 'Valasaravakkam', '2407120008', '50', '2', 'upload_files/candidate_tracker/7140574282_CV20240116115130511.pdf', NULL, '1', '2024-07-12', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Low voice and right now looking for one job not suitable sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-12 05:50:18', 104, '2024-07-12 07:24:03', 0, NULL, 1),
(20182, 'Sangeetha S', '4', '7904909101', '9677209994', 'sangisajani@gmail.com', '1990-08-10', 33, '2', '1', 'H.Srinath', 'Sales Manager', 500000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2407120009', '56', '2', 'upload_files/candidate_tracker/85101000854_SANGEETHARESUME2020.doc', NULL, '1', '2024-07-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-12 05:56:45', 1, '2024-07-12 06:00:26', 0, NULL, 1),
(20183, 'Nithyasree', '11', '7550171343', '', 'nithya21sree2003@gmail.com', '2003-12-21', 20, '6', '2', 'annamalai', 'tneb', 75000.00, 1, 0.00, 20000.00, 'ihfd flats adhanur urapakam chengalpattu', 'ihfd flats adhanur urapakam chengalpattu', '2407120010', '', '1', 'upload_files/candidate_tracker/2910536756_nithyasree..pdf', NULL, '1', '2024-07-12', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, had lag with her communication. ', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-12 06:01:30', 104, '2024-07-12 03:09:56', 0, NULL, 1),
(20184, 'K.w. paul Silvester', '33', '9884357856', '8056946267', 'kwpaulsilvester@gmail.com', '2000-05-20', 24, '1', '2', 'K.w Williams', 'Mechanic', 240000.00, 0, 25000.00, 32000.00, 'Rajiv Gandhi Nagar, pattinapakkam, chennai -28', 'Ezhil nagar, thoraipakkam,chennai-97', '2407120011', '', '2', 'upload_files/candidate_tracker/17767859684_PAULRESUME1.docx', NULL, '1', '2024-07-12', 3, 'P1066', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-12 06:07:08', 104, '2024-07-12 03:13:17', 0, NULL, 1),
(20185, 'Buvanasankari V', '11', '8015333804', '9443333148', 'sankaribuvana4@gmail.com', '1997-06-09', 27, '6', '2', 'vijayamohan r', 'Unemployed', 70000.00, 1, 14500.00, 15000.00, 'Kolathur, Chennai -99', 'Kolathur, chennai -99', '2407120012', '', '2', 'upload_files/candidate_tracker/34570071175_Resume.pdf', NULL, '1', '2024-07-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected by Gokul sir had good communication and she was egar to lean more things', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-12 06:13:55', 104, '2024-07-12 02:57:47', 0, NULL, 1),
(20186, 'Meenatchi', '5', '9585235718', '9578083913', 'meenatchirajan11101996@gmail.com', '1996-10-11', 27, '2', '2', 'Rajan', 'Fisherman', 5000.00, 1, 0.00, 10000.00, 'Other', 'Other', '2407120013', '50', '1', 'upload_files/candidate_tracker/68335829883_IMG20231213135511compressed2.pdf', NULL, '1', '2024-07-12', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good Attitude but Technical skills and Communication Skills are Below Average and No sales experiences so Status is rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-07-12 06:41:15', 104, '2024-07-12 02:56:39', 0, NULL, 1),
(20187, 'asvinya', '11', '6383291326', '8122278851', 'asvinyaj@gmail.com', '2001-11-01', 22, '6', '2', 'jayathirunathan', 'business', 40000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2407120014', '', '1', 'upload_files/candidate_tracker/40753297235_ASVINYARESUME.pdf.pdf', NULL, '1', '2024-07-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Pursuing college, had good communication and fit for the role', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-12 06:52:04', 104, '2024-07-12 03:10:43', 0, NULL, 1),
(20188, 'solomon nehemiah', '11', '8637648051', '9342969454', 'solomont484@gmail.com', '2001-11-12', 22, '3', '2', 'thirumeni', 'professor', 60000.00, 1, 0.00, 15000.00, 'trichy', 'chennai', '2407120015', '', '1', 'upload_files/candidate_tracker/9812602829_Print.pdf', NULL, '1', '2024-07-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'had shCommunicationarp mind, clear with his cummunication.', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-12 06:52:34', 104, '2024-07-12 03:11:40', 0, NULL, 1),
(20189, 'U Lokesh', '5', '9502048719', '9985982713', 'luckydarling4p@gmail.com', '2002-04-24', 22, '2', '2', 'Ashwathamma', 'Home maker', 15000.00, 1, 23000.00, 30000.00, 'Hindupur', 'Whitefield', '2407120016', '1', '2', 'upload_files/candidate_tracker/29263275830_download.pdf', NULL, '1', '2024-07-12', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-07-12 06:57:55', 126, '2024-07-12 03:27:20', 0, NULL, 1),
(20190, 'Nivetha', '11', '6380586437', '', 'Nivisaravanan5627@gmail.com', '2001-06-05', 23, '3', '2', 'Saravanan', 'Tea shop', 10000.00, 2, 0.00, 10000.00, '75/84 ahoska nagar arumbakkam chennai', '75/84 arumbakkam chennai', '2407120017', '', '1', 'upload_files/candidate_tracker/98807619666_resu.pdf', NULL, '1', '2024-07-12', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she didnxquott talk in the interview', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-12 08:12:13', 104, '2024-07-12 02:56:08', 0, NULL, 1),
(20191, 'U.Revathi', '11', '6385905648', '9445122736', 'urevathi2900@gmail.com', '2000-09-02', 23, '3', '2', 'Ulaganathan.S', 'Supervisor', 60000.00, 1, 0.00, 10000.00, '75/1 Arumbakkam, chennai', 'Chennai', '2407120018', '', '1', 'upload_files/candidate_tracker/43679783881_U.REVATHIHRRESUME2.pdf', NULL, '1', '2024-07-12', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Over talkative, Not fit for us', '6', '1', '', '1', '3', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-12 08:28:04', 104, '2024-07-12 02:55:28', 0, NULL, 1),
(20192, 'HARIPRASATH', '6', '7200124163', '', 'honesthari2003@gmail.com', '2003-04-09', 21, '2', '2', 'Balaji', 'Driver', 15000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2407120019', '50', '1', 'upload_files/candidate_tracker/64315359035_0HARIPRASATHB.docx', NULL, '1', '2024-07-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication and convincing skill is good already working in Digital marketing shortlist for team kindly confirmed joining date ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-12 10:41:49', 104, '2024-07-13 04:20:52', 0, NULL, 1),
(20193, 'Sowndharya S', '6', '6369654177', '9791151262', 'sowndharyas916@gmail.com', '2003-10-07', 20, '2', '2', 'Kirubalani', 'Wages', 5000.00, 1, 0.00, 20000.00, 'Trichy', 'Aminjikarai', '2407120020', '50', '1', 'upload_files/candidate_tracker/7606705449_CV202406261509049.pdf', NULL, '1', '2024-07-13', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'hold', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-12 11:06:16', 104, '2024-07-13 10:36:14', 0, NULL, 1),
(20194, 'SAVADA MUTHU', '13', '7358567583', '9677047843', 'muthusavada2002@gmail.com', '2002-11-18', 21, '2', '2', 'aalappan', 'flower shop', 20000.00, 0, 0.00, 350000.00, 'Thiruvarur', 'Thiruvarur', '2407120021', '50', '1', 'upload_files/candidate_tracker/18119696459_savadamuthu.pdf', NULL, '3', '2024-07-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-12 11:51:21', 1, '2024-07-12 12:02:29', 0, NULL, 1),
(20195, 'Prasanth', '4', '9840974136', '9381830451', 'prasanthprasanth25231@gmail.com', '2003-10-14', 20, '2', '2', 'Saravanan', 'Chennai metro limited supervisor', 18000.00, 1, 0.00, 11500.00, 'No 62 mgr Street athipattu chennai', 'No 62 mgr Street athipattu chennai', '2407120022', '50', '1', 'upload_files/candidate_tracker/88407896109_RESUME.pdf', NULL, '1', '2024-07-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-12 12:43:31', 1, '2024-07-12 12:54:55', 0, NULL, 1),
(20196, 'Davison jayakumar E', '6', '7200260417', '', 'davisonjayakumar@gmail.com', '2003-12-01', 20, '2', '2', 'J Easter Rajan', 'Driver', 200000.00, 1, 0.00, 18000.00, 'Chennai Arumbakkam', 'Chennai Arumbakkam', '2407130001', '50', '1', 'upload_files/candidate_tracker/68403386969_Davi14.pdf', NULL, '1', '2024-07-13', 0, '', '3', '59', '2024-07-18', 192000.00, '', '2', '1970-01-01', '1', 'Communication OK fresher can give a try Need to analyse and confirm in the 7 days training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2024-07-18', 1, '2024-07-13 04:30:32', 60, '2024-07-17 07:38:43', 0, NULL, 1),
(20197, 'Mohammed yahya', '6', '7639892100', '', 'mohdyahi1224@gmail.com', '2002-12-24', 21, '2', '2', 'Rahman', 'Manager', 100000.00, 0, 0.00, 18000.00, 'Kallakurichi', 'Mount road', '2407130002', '50', '1', 'upload_files/candidate_tracker/19423814263_WhiteAndBeigeProfessionalCleanAccountantCvResume202406272045040000.pdf', NULL, '1', '2024-07-13', 0, '', '3', '59', '2024-07-16', 192000.00, '', '1', '1970-01-01', '1', 'Selected for RE Role Need to analyse in 7 days Fresher Communication Ok Can give a try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2024-07-16', 1, '2024-07-13 05:20:02', 104, '2024-07-16 06:11:05', 0, NULL, 1),
(20198, 'M.DIVYA', '6', '7845589101', '9840956558', 'mdivya200326@gmail.com', '2003-10-26', 20, '2', '2', 'V.Muthu', 'Contract worker', 98000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407130003', '50', '1', 'upload_files/candidate_tracker/69937472305_DIVYARESUME.pdf', NULL, '1', '2024-07-13', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is good but her  distance is long ,sustainable doubt', '5', '2', '', '1', '8', '', '2', '2024-07-20', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-13 05:23:55', 104, '2024-07-13 11:36:21', 0, NULL, 1),
(20199, 'Indhumathi S', '6', '6379040520', '9884051743', 'Indhumathi02072004@gmail.com', '2003-07-03', 21, '2', '2', 'Shanmugam B', 'Velder', 82000.00, 1, 0.00, 15000.00, 'thiruvetriur', 'Thiruvattiyur', '2407130004', '50', '1', 'upload_files/candidate_tracker/35076235298_indhumathi1.pdf', NULL, '1', '2024-07-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected ,Job Needed Person Letxquots Try 7 Days,then we will finalize ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-13 05:27:45', 104, '2024-07-13 02:44:48', 0, NULL, 1),
(20200, 'Devi.S', '11', '8056206522', '', 'devisekar1210@gmail.com', '2001-03-12', 23, '6', '2', 'Sekar.K', 'Mechanic', 12000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2407130005', '', '1', 'upload_files/candidate_tracker/11436696446_DeviResume17187928966951.pdf', NULL, '1', '2024-07-13', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He doesnxquott have knowlege about this domain. communication not ok', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-13 05:32:46', 104, '2024-07-13 12:05:59', 0, NULL, 1),
(20201, 'Yogalakshmi', '5', '9500096004', '9514366618', 'yogathiru0128@gmail.com', '2001-08-28', 22, '2', '1', 'creative hands', 'yes', 10000.00, 1, 15000.00, 20000.00, 'kulathur', 'retteri', '2407130006', '50', '2', 'upload_files/candidate_tracker/57456774558_YOGARESUME1.pdf', NULL, '3', '2024-07-13', 2023, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not having proper knowledge even after working for more than 1 year in reliance nippon life insurance, not knowing difference between term and Traditional policies', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-13 05:59:28', 104, '2024-07-13 12:05:19', 0, NULL, 1),
(20202, 'Savitha', '6', '8523905444', '7305190095', 'savibommu99@gmail.com', '1998-08-28', 25, '2', '2', 'Sakthivel', 'Farmer', 25000.00, 2, 0.00, 18000.00, 'Salem', 'Avadi', '2407130007', '56', '2', 'upload_files/candidate_tracker/88000681369_CV2024041310430056.pdf', NULL, '1', '2024-07-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok. 4m exp hdb finance. pls cross check  distance too. provide 15k salary. joining august 1st week thanks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-13 06:04:54', 104, '2024-07-13 01:32:02', 0, NULL, 1),
(20203, 'DHARANI R', '6', '8300657824', '', 'dharaniram003@gmail.com', '2003-10-12', 20, '2', '2', 'Ramamurthy', 'Driver', 30000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2407130008', '50', '1', 'upload_files/candidate_tracker/28045782165_resume3.pdf', NULL, '1', '2024-07-13', 0, '', '3', '59', '2024-07-19', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Can give a try Fresher Need to analyse in 7 days and confirm', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2024-07-19', 1, '2024-07-13 06:22:39', 60, '2024-07-16 06:29:56', 0, NULL, 1),
(20204, 'Afrin Noorjahan S', '6', '8939358959', '6382111744', 'afrinnoorjahan03@gmail.com', '2003-02-03', 21, '2', '2', 'Parent', 'Fancys store', 80000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2407130009', '50', '1', 'upload_files/candidate_tracker/81994910571_AfrinNoorjahan.SRESUME.pdf1compressed1.pdf', NULL, '1', '2024-07-13', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'interested in sales but previous experience IT so, sustainability doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-13 06:43:11', 104, '2024-07-13 03:05:57', 0, NULL, 1),
(20205, 'Megha gowthami', '11', '8925780779', '', 'meghagowthami2001@gmail.com', '2001-10-12', 22, '6', '2', 'Thiruvenkadam', 'Salesman', 300000.00, 0, 0.00, 20000.00, 'Velachery Chennai', 'Velachery Chennai', '2407130010', '', '1', 'upload_files/candidate_tracker/74098076926_meghagowthamiresume2.pdf', NULL, '1', '2024-07-13', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication was not OK. had a Bachelorxquots degree In computer science. but looking for hr', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-13 07:17:10', 104, '2024-07-26 07:02:24', 0, NULL, 1),
(20206, 'Akshaya.v', '11', '8778111810', '', 'akshayavijayakumar2003@gmail.com', '2003-10-28', 20, '3', '2', 'Vijayakumar and lalitha', 'Contract mechanic in private company', 120000.00, 0, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2407130011', '', '1', 'upload_files/candidate_tracker/3772626580_AkshayaResume111Word1.pdf', NULL, '1', '2024-07-13', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'had a bachelorxquots degree with b.com and had an internship. she was not clear with her internship', '6', '2', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-13 07:17:28', 104, '2024-07-26 07:02:36', 0, NULL, 1),
(20207, 'Sugan raj. B', '6', '9360507506', '', 'suganrajbalaji2003@gmail.com', '2003-06-25', 21, '2', '2', 'Balaji .S', 'Real estate', 100000.00, 1, 0.00, 17000.00, 'Vyasarpadi', 'Vyasarpadi', '2407130012', '50', '1', 'upload_files/candidate_tracker/5758144568_suganres2.pdf', NULL, '1', '2024-07-13', 0, '', '3', '59', '2024-07-16', 192000.00, '', '1', '1970-01-01', '1', 'Selected fr RE Role Need to analyse in 7 days and confirm', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2024-07-16', 1, '2024-07-13 07:22:11', 104, '2024-07-16 06:11:26', 0, NULL, 1),
(20208, 'V sowjanya', '6', '9150928398', '9940662319', 'Sowjivijayakumar@gmail.com', '2002-05-19', 22, '2', '2', 'V.muniyammal', 'Muniyammal', 12000.00, 1, 15000.00, 19000.00, 'Pallavarm', 'Pallavarm', '2407130013', '50', '2', 'upload_files/candidate_tracker/85485214577_SOWJANYAV4.pdf', NULL, '1', '2024-07-13', 0, '', '3', '59', '2024-07-19', 275000.00, '', '', '2024-08-01', '2', 'Communication Ok have few exp in real estate Location too long Can give a try in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55656', '55557', '2024-07-19', 1, '2024-07-13 08:11:35', 104, '2024-07-22 06:32:24', 0, NULL, 1),
(20209, 'R Akashraj', '6', '6383790455', '', 'rajakash4685ar@gmail.com', '2002-05-08', 22, '2', '2', 'D Radhakrishnan', 'Transport', 25000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2407130014', '50', '1', 'upload_files/candidate_tracker/46747894360_akresume04.pdf', NULL, '1', '2024-07-15', 0, '', '3', '59', '2024-07-17', 192000.00, '', '3', '2024-07-19', '1', 'Fresher Need to relocate Sustainability need to check need to analyse in 7 days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2024-07-17', 1, '2024-07-13 08:13:44', 60, '2024-07-31 06:23:32', 0, NULL, 1),
(20210, '', '0', '9159771568', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407130015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-13 10:24:59', 0, NULL, 0, NULL, 1),
(20211, 'Vijayalakshmi', '33', '8925706282', '', 'vijayalakshmi.selvakani2002@gmail.com', '2002-06-07', 22, '2', '2', 'Rajeswari', 'Salaried', 85000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2407130016', '50', '2', 'upload_files/candidate_tracker/40378955967_Sharevijayalakshmiresume.pdf', NULL, '1', '2024-07-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-13 01:23:48', 1, '2024-07-13 01:27:20', 0, NULL, 1),
(20212, 'Sahana MD', '6', '9742632294', '6363976437', 'Sahanam312@gmail.com', '2000-05-12', 24, '2', '2', 'Parent - my father Devaraj M', 'Fresher', 80000.00, 1, 0.00, 2.50, 'MANDYA', 'MANDYA', '2407140001', '1', '1', 'upload_files/candidate_tracker/73344950303_SahanaResume3.pdf', NULL, '1', '2024-07-15', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'suggested ctc  upto 18k for dm', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-14 04:12:45', 60, '2024-07-19 07:38:20', 0, NULL, 1),
(20213, 'Jency Joyce', '6', '9345596440', '', 'jencyjoyce04shift1@gmail.com', '2003-11-18', 20, '2', '2', 'Kaliyan', 'Daily wages', 15000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2407150001', '56', '1', 'upload_files/candidate_tracker/17531450915_ResumejencyJoyce.pdf', NULL, '1', '2024-07-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Even not try to speak and slow ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-15 01:31:57', 104, '2024-07-15 01:30:08', 0, NULL, 1),
(20214, '', '0', '8925417189', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407150002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-15 02:27:23', 0, NULL, 0, NULL, 1),
(20215, 'Abhishek', '5', '8095546870', '', 'abhisebastian1996@gmail.com', '1998-04-27', 26, '2', '2', 'Somaiah', 'Lab assistant', 600000.00, 2, 400000.00, 600000.00, 'HAL Central township, Basavanagara', 'HAL Central township, Basavanagara', '2407150003', '1', '2', 'upload_files/candidate_tracker/95804810559_Resume1.pdf', NULL, '1', '2024-07-15', 30, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Salary expectation is high ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-07-15 03:57:05', 126, '2024-07-16 11:23:14', 0, NULL, 1),
(20216, 'Aswinkarthikeyaa', '31', '8870867553', '', 'aswinkarthikeyaa@gmail.com', '2001-11-29', 22, '3', '2', 'Anandaraj G', 'Elevator Manager', 40000.00, 1, 0.00, 20000.00, 'Coimbatore', 'Chennai', '2407150004', '', '1', 'upload_files/candidate_tracker/32215261753_AswinkarthikeyaaResume.pdf', NULL, '1', '2024-07-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2024-07-15 04:55:19', 1, '2024-07-15 05:07:52', 0, NULL, 1),
(20217, 'Jaswanthkumar P', '6', '8825982232', '', 'jaswanthkumarp26@gmail.com', '2003-07-14', 21, '1', '2', 'Pugazhenthi', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Kadathur', 'Kadathur', '2407150005', '', '1', 'upload_files/candidate_tracker/55615493793_AdobeScan14May2024.pdf', NULL, '1', '2024-07-15', 0, '55806', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate only interest for it only , after6 months go for core related job so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-15 04:55:56', 104, '2024-07-15 03:52:04', 0, NULL, 1),
(20218, 'NITHESH N', '13', '6383519139', '9786101447', 'nitheshnicholas@gmail.com', '2001-06-19', 23, '3', '2', 'NICHOLAS D', 'Passed away', 15000.00, 1, 0.00, 250000.00, 'Villupuram', 'Chennai', '2407150006', '', '1', 'upload_files/candidate_tracker/79407453413_NitheshN.pdf', NULL, '1', '2024-07-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-15 05:10:57', 1, '2024-07-15 05:18:02', 0, NULL, 1),
(20219, 'E.Bhuvaneshwaran', '13', '8667253034', '', 'ebhuvanesh1352003@gmail.com', '2003-05-13', 21, '1', '2', 'R.Elumalai', 'Farmer', 20000.00, 1, 0.00, 200000.00, '687 vettagiripalayam Thiruvannamali dt .606905', 'Ashoknagar jafferkhanpet', '2407150007', '', '1', 'upload_files/candidate_tracker/84548680590_Bhuvaneshwaran1.pdf', NULL, '1', '2024-07-15', 0, 'Walkin', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-15 05:11:01', 1, '2024-07-15 05:23:02', 0, NULL, 1),
(20220, 'Dhivya B', '5', '7373035389', '', 'dhivyabalasubramaniyam1214@gmail.com', '2000-11-24', 23, '2', '2', 'Balasubramaniyam A', 'Daily wages', 20000.00, 1, 0.00, 15000.00, '2/2-4, kamarajar street, kanakkampalayam, erode', 'No1, 4th street RangaRajapuram, Little mount', '2407150008', '50', '1', 'upload_files/candidate_tracker/60027965541_DhivyaBQA.pdf', NULL, '1', '2024-07-15', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales,  fresher and not bold enough to answer ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-15 05:18:29', 104, '2024-07-15 05:11:29', 0, NULL, 1),
(20221, 'M Prema latha', '6', '9360503149', '9962108333', 'premalathamadasamy26@gmail.com', '2004-04-07', 20, '2', '2', 'Madasamy A', 'Worker', 20000.00, 1, 0.00, 15000.00, 'Kodungaiyur', 'Kodungaiyur', '2407150009', '50', '1', 'upload_files/candidate_tracker/38257633984_cvresumeme.pdf', NULL, '1', '2024-07-15', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Performance is Little bit Slowly Also her Communication Level is Low and her voice is also very low', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-15 05:19:35', 104, '2024-07-15 05:13:05', 0, NULL, 1),
(20222, 'Srinivasan', '13', '9789183628', '', 'srinivasan318155@gmail.com', '1996-05-28', 28, '4', '2', 'Ravichandran', 'Mechanic', 10000.00, 1, 22000.00, 30000.00, 'Tiruvannamalai', 'Chennai', '2407150010', '', '2', 'upload_files/candidate_tracker/79076362329_srinisla3.pdf', NULL, '2', '2024-07-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-15 05:19:36', 1, '2024-07-15 05:23:18', 0, NULL, 1),
(20223, 'Saranya S', '5', '7358571579', '8952141529', 'saransaranya0094@gmail.com', '2001-08-09', 22, '2', '2', 'Senthil Kumar', 'Real-estate', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2407150011', '27', '1', 'upload_files/candidate_tracker/8398665860_SaranyaCV.docx', NULL, '1', '2024-07-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Porrselvan Team,  18k Net Salary, In Aug - 1.5 lac + 10k SIP, then 21k Net salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-15 05:41:42', 104, '2024-07-24 03:19:03', 0, NULL, 1),
(20224, 'Dhivya V', '13', '6385302456', '', 'dhivyagopal3004@gmail.com', '2000-03-30', 24, '4', '2', 'Venugopal N', 'Labour', 15000.00, 1, 0.00, 18000.00, '5th ward,kathavarayan Kovil street,cuddalore', 'Valluvarkottam,Nungambakkam', '2407150012', '', '1', 'upload_files/candidate_tracker/95038183493_DhivyaVAngular.docx', NULL, '1', '2024-07-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-15 05:41:47', 1, '2024-07-15 06:18:57', 0, NULL, 1),
(20225, 'Gayathri.S', '13', '8610767965', '9790744651', 'gayathrishanmugamsg@gmail.Com', '2001-10-10', 22, '4', '2', 'Shanmugam.p', 'Retired BSNL', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2407150013', '', '1', 'upload_files/candidate_tracker/2869130828_GayathriResume4Copy.docx', NULL, '1', '2024-07-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-15 05:42:42', 1, '2024-07-15 05:56:05', 0, NULL, 1),
(20226, 'Mathi S', '5', '9566596266', '9080604841', 'mathimathu476@gmail.com', '2002-07-13', 22, '2', '2', 'Bhuvaneshwari', 'Maide', 15000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2407150014', '27', '1', 'upload_files/candidate_tracker/81476591992_MathiCv.pdf', NULL, '1', '2024-07-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sarath team, ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-07-15 05:43:08', 104, '2024-07-24 03:17:49', 0, NULL, 1),
(20227, 'Shabin Bharath V', '13', '9360528187', '', 'shabinbharath25@gmail.com', '2001-07-25', 22, '3', '2', 'Poongodi', 'House wife', 17000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2407150015', '', '1', 'upload_files/candidate_tracker/60118105051_Shabin6.pdf', NULL, '1', '2024-07-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-15 05:44:37', 1, '2024-07-15 06:52:02', 0, NULL, 1),
(20228, 'Jayashree', '6', '6383853947', '9841810232', 'jshrsrinivasan@gmail.com', '2000-03-03', 24, '2', '2', 'Srinivasan', 'Courier', 17000.00, 1, 18000.00, 20000.00, 'Old Washermentpet', 'Old Washermentpet', '2407150016', '27', '2', 'upload_files/candidate_tracker/42564673199_Resume202403176820301.pdf', NULL, '1', '2024-07-15', 0, '', '3', '59', '2024-07-22', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can be trained in our Voice process Need to analyse in 7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '2024-07-22', 1, '2024-07-15 05:50:11', 60, '2024-07-16 07:21:42', 0, NULL, 1),
(20229, 'FATHIMA KATHIJA', '5', '9566191623', '9790878237', 'fthmkathija@gmail.com', '1996-06-27', 28, '2', '1', 'Suresh', 'Gym trainer', 15000.00, 1, 16000.00, 18000.00, 'Pudupet', 'Pudupet', '2407150017', '50', '2', 'upload_files/candidate_tracker/77468400793_Document1newresumefathima.docx', NULL, '1', '2024-07-15', 0, '', '3', '59', '2024-07-18', 265000.00, '', '3', '2024-09-28', '2', 'Communication Have 3 yrs exp in Collection but no documents in HDB financial Can give a try and analyse in training days sustainability should check as she has a small kid', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55567', '55557', '2024-07-18', 1, '2024-07-15 05:51:54', 60, '2024-07-18 04:40:03', 0, NULL, 1),
(20230, 'Bharathi raja', '6', '7904905643', '9159565021', 'bharathivendarb.com@gmail.com', '2009-07-15', 0, '2', '2', 'Ramasamy p', 'Farmer', 30000.00, 5, 14000.00, 18000.00, 'VILLUPURAM', 'VILLUPURAM', '2407150018', '50', '2', 'upload_files/candidate_tracker/12615630525_BharathiResume.pdf', NULL, '3', '2024-07-15', 1, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication and convincing skill ratio is low so, i reject the person \n', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-15 06:09:57', 104, '2024-07-15 03:45:21', 0, NULL, 1),
(20231, 'Haripriya venkatensan', '6', '9123560644', '', 'Haripriyavenkateshan16@gmail.com', '2004-04-10', 20, '2', '2', 'Venkatesan', 'Employees', 28000.00, 0, 0.00, 16000.00, 'Arakkonam', 'Arakkonam', '2407150019', '50', '1', 'upload_files/candidate_tracker/29956034036_HaripriyaResume175.pdf', NULL, '1', '2024-07-15', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'willing do the non voice process ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-15 06:14:09', 104, '2024-07-15 05:13:40', 0, NULL, 1),
(20232, 'S KARTHIK', '13', '9361486853', '', 'karthiksenthilvel1807@gmail.com', '2001-07-18', 22, '3', '2', 'A SENTHILVEL', 'FARMER', 5000.00, 1, 0.00, 12000.00, 'DHARMAPURI', 'CHENNAI', '2407150020', '', '1', 'upload_files/candidate_tracker/11486389119_Resume.pdf', NULL, '1', '2024-07-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-15 06:24:14', 1, '2024-07-15 06:43:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20233, 'SANKAR PRABU M', '6', '9840357134', '7010399202', 'shankarprabhu147@gmail.com', '2001-12-03', 22, '2', '2', 'Mohana sundaram', 'Auto driver', 40000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2407150021', '50', '1', 'upload_files/candidate_tracker/719387433_SankarResume1.pdf', NULL, '1', '2024-07-15', 0, '', '3', '59', '2024-07-18', 192000.00, '', '1', '1970-01-01', '1', 'Communication Good Not open for Core opportunities can be trained in  our roles open for telecalling can give a try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-07-18', 1, '2024-07-15 06:31:07', 60, '2024-07-18 04:40:18', 0, NULL, 1),
(20234, 'Vignesh', '5', '9790996505', '', 'vky4881@gmail.com', '1998-03-20', 26, '3', '2', 'Kodiyarasu', 'Salaried', 32000.00, 0, 23000.00, 26000.00, 'Ariyalur', 'Chennai', '2407150022', '', '2', 'upload_files/candidate_tracker/72306774728_VIGNESHNeW.docx.pdf', NULL, '1', '2024-07-15', 0, '', '3', '59', '2024-08-19', 312000.00, '', '3', '2024-10-26', '2', 'Communication Ok can give a try in our roles and check Gaurav Sir Commitment 1.5 L Life plus 10MF then 2K increase in MCTC', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '2024-08-19', 1, '2024-07-15 06:33:16', 60, '2024-08-16 03:22:57', 0, NULL, 1),
(20235, 'TAMILTHASAN', '13', '7604820697', '8144980851', 'tamilthasan11@gmail.com', '2003-09-18', 20, '3', '2', 'Arumugam', 'Farmer', 15000.00, 2, 0.00, 10000.00, 'Cuddalore', 'Kk nagar Chennai', '2407150023', '', '1', 'upload_files/candidate_tracker/4273270897_TamilthasanResume1.pdf', NULL, '1', '2024-07-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-15 06:37:32', 1, '2024-07-15 06:40:14', 0, NULL, 1),
(20236, 'C.Rajalakshmi', '5', '7530023220', '8072967826', 'pcrajalakshmistat@gmail.com', '1997-09-06', 26, '2', '2', 'Chandrasekaran', 'Private', 300000.00, 1, 0.00, 15000.00, 'Salem', 'Pallikaranai', '2407150024', '50', '1', 'upload_files/candidate_tracker/25185047995_DOC20240711WA0001.docx', NULL, '1', '2024-07-15', 0, '', '3', '59', '2024-07-18', 252500.00, '', '3', '2024-08-06', '2', 'Selected for RM Role Fresher Can give a try Family need is there  Can be trained in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '2024-07-18', 1, '2024-07-15 06:46:39', 60, '2024-07-18 04:39:44', 0, NULL, 1),
(20237, 'Mathiyarasan', '6', '6379560013', '9843101537', 'mathiyarasans928@gmail.com', '2001-06-25', 23, '1', '2', 'Parent', 'Farmer', 15000.00, 1, 15000.00, 20000.00, 'Kallaikurichi', 'Guindy', '2407150025', '', '2', 'upload_files/candidate_tracker/62227089107_CV2024071511260215.pdf', NULL, '1', '2024-07-15', 25, '99701', '3', '59', '2024-08-12', 204000.00, '', '3', '2024-09-04', '2', 'Communication Ok have 6 months Exp in insurance calling can be trained in our role need to check and analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '2024-08-12', 1, '2024-07-15 06:56:23', 60, '2024-08-08 12:52:14', 0, NULL, 1),
(20238, 'kpra', '4', '9600143447', '', 'Skpraveen02@gmail.com', '2002-10-13', 21, '1', '2', 'kumaran', 'fisher man', 15000.00, 0, 0.00, 180000.00, 'Triplicane', 'triplicane', '2407150026', '', '1', 'upload_files/candidate_tracker/64533567326_ResumeS.K.Praveen09072024.pdf', NULL, '1', '2024-07-15', 0, 'zhrso724048', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-15 06:57:25', 104, '2024-07-15 03:48:01', 0, NULL, 1),
(20239, 'R.jothika', '6', '7010645624', '9500160404', 'Jyothiravi764@gmail.com', '2004-06-07', 20, '2', '2', 'Ravi', 'Ice planet', 90000.00, 1, 0.00, 15000.00, 'Thiruvottiyur Kaladipet chennai19', 'Thiruvottiyur Kaladipet chennai19', '2407150027', '50', '1', 'upload_files/candidate_tracker/71496318035_jothika.docx', NULL, '2', '2024-07-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-15 07:10:52', 104, '2024-07-15 03:47:34', 0, NULL, 1),
(20240, 'Elakkiya. K', '6', '7550123881', '7200934516', 'elakkiyakathiravan2003@gmail.com', '2003-09-16', 20, '2', '2', 'Kathiravan. A', 'Basic servant', 92000.00, 3, 0.00, 18000.00, 'New washermenpet', 'New washermenpet', '2407150028', '50', '1', 'upload_files/candidate_tracker/22126512252_bio2.docx', NULL, '1', '2024-07-15', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-15 07:12:14', 104, '2024-07-15 03:48:13', 0, NULL, 1),
(20241, 'R. Abhi', '6', '9884529109', '', 'abhiravi2125@gmail.com', '2003-01-25', 21, '2', '2', 'R.Indira', 'coolie', 12000.00, 1, 0.00, 16000.00, '8/12 Anna Nagar, 3rd Street , Ennore , chennai 19', '8/12 Anna Nagar , 3rd Street, Ennore chennai -19', '2407150029', '50', '1', 'upload_files/candidate_tracker/39072921312_DocScanner14Jul20241139pm.pdf', NULL, '1', '2024-07-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-15 07:12:37', 104, '2024-07-15 03:50:45', 0, NULL, 1),
(20242, 'Swathy', '5', '7904802052', '6380335840', 'swathysarathy0718@gmail.com', '2009-07-15', 0, '2', '2', 'Parthasarathy', 'Carpenter', 100000.00, 1, 19000.00, 25000.00, 'Chennai', 'Chennai', '2407150030', '56', '2', 'upload_files/candidate_tracker/70216183103_meswathy.pdf', NULL, '1', '2024-07-16', 0, '', '3', '59', '2024-07-18', 335000.00, '', '1', '1970-01-01', '2', 'Communication Ok Have exp in Telecalling Collection Exp Can be trained in our roles confident Candidate Can give a try in our roles', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '2024-07-18', 1, '2024-07-15 07:31:45', 60, '2024-07-18 04:40:36', 0, NULL, 1),
(20243, 'Sarath', '4', '9940688302', '9176863335', 'sharathkumar.g9898@gmail.com', '1998-08-09', 25, '2', '2', 'Parvathy', 'Na', 20000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2407150031', '50', '1', 'upload_files/candidate_tracker/83463264738_SarathKumarResume1.pdf', NULL, '1', '2024-07-16', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Had lagging with his communication not fit for sales', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '7', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-15 07:36:43', 104, '2024-07-16 05:12:21', 0, NULL, 1),
(20244, 'Prashanth V', '6', '8147399737', '', 'prashanthkumar9880@gmail.com', '2002-01-06', 22, '2', '2', 'Venkatesh', 'Agent', 100000.00, 0, 23000.00, 25000.00, 'Ambedkar nagar near government school bandeplaya', 'Ambedkar Nagar Near Government School', '2407150032', '1', '2', 'upload_files/candidate_tracker/96858039168_Prashanthresume.pdf', NULL, '3', '2024-07-15', 15, '', '3', '59', '2024-07-22', 252000.00, '', '4', '2024-09-23', '2', 'Selected for RE role Have 7 months exp in Star health but no proper relieving  can be trained in our role need to analyse in 7 days training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1022', '', '55671', '55555', '2024-07-22', 1, '2024-07-15 08:00:51', 104, '2024-07-22 06:32:08', 0, NULL, 1),
(20245, 'Swathy', '6', '6383545133', '7904802052', 'swathysarathy0718@gmail.com', '2002-07-18', 21, '2', '2', 'Parthasarathy', 'Carpenter', 100000.00, 1, 19000.00, 25000.00, 'Chennai', 'Chennai rettari junction', '2407150033', '56', '2', 'upload_files/candidate_tracker/72561748879_meswathy.pdf', NULL, '1', '2024-07-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-15 08:46:16', 1, '2024-07-15 08:50:42', 0, NULL, 1),
(20246, 'Durgadevi J', '5', '9361560829', '', 'durgakavi0805@gmail.com', '2001-05-08', 23, '1', '2', 'Jaganathan', 'Farmer', 45000.00, 2, 22000.00, 25000.00, 'Udhagamandalam', 'Chennai', '2407150034', '', '2', 'upload_files/candidate_tracker/23446278707_Durgadevi.j2.pdf', NULL, '1', '2024-07-15', 0, '55799', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'After Passedout she not went for job around 4 years after she worked mobile engineering process with 1 year experience and No proper communications kills and Mathematical skills so finally Not fit for sales this candidate', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-07-15 08:59:30', 104, '2024-07-17 06:58:12', 0, NULL, 1),
(20247, 'Rajaselvam.p', '5', '9940167308', '8838775588', 'rajaselvam1297@gmail.com', '1997-10-12', 26, '2', '2', 'Muthu', 'Department stores', 25000.00, 1, 350000.00, 450000.00, 'Thiruninravur', 'Thiruninravur', '2407150035', '42', '2', 'upload_files/candidate_tracker/12822978645_rioresume.pdf', NULL, '1', '2024-07-15', 15, '', '8', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'didnxquott respond to arun', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-15 09:01:02', 104, '2024-07-15 03:54:22', 0, NULL, 1),
(20248, 'Mohammed Farook A', '5', '8608148625', '6369979791', 'mohammedfarook1095@gmail.com', '1998-07-17', 25, '2', '2', 'Mumtaj Begum', 'Process Associate', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2407150036', '42', '2', 'upload_files/candidate_tracker/52385700090_MohammedFarookResume21.docx', NULL, '1', '2024-07-15', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our sales roles will not handle our sales pressure', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-07-15 09:01:14', 104, '2024-07-15 03:56:46', 0, NULL, 1),
(20249, 'Noorisha.N', '5', '6381099230', '', 'noorisha0105@gmail.com', '2000-07-01', 24, '2', '2', 'Nagoor hanifa.g', 'Self employee', 15000.00, 2, 15000.00, 18000.00, 'Kodambakkam', 'Kodambakkam', '2407150037', '50', '2', 'upload_files/candidate_tracker/87449945833_NNOORISHA1.pdf', NULL, '1', '2024-07-16', 10, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Interested For Sales, looking for non pressure job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-15 09:02:05', 104, '2024-07-16 12:17:46', 0, NULL, 1),
(20250, 'Rukaiyah farhana', '6', '7200198585', '', 'Rukaiyahfarhana@gmail.com', '2003-05-01', 21, '2', '2', 'Shameema', 'House wife', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2407150038', '50', '1', 'upload_files/candidate_tracker/84922394241_Rukaiyahfarhanaresume.pdf', NULL, '1', '2024-07-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-15 09:09:52', 104, '2024-07-15 03:51:06', 0, NULL, 1),
(20251, 'M. Harini', '6', '9344738002', '8838661451', 'harinivadana@gmail.com', '2003-11-10', 20, '2', '2', 'R.Murugan', 'Security', 10000.00, 2, 0.00, 16000.00, 'Avadi', 'Avadi', '2407150039', '45', '1', 'upload_files/candidate_tracker/97399538713_HARINIresume.pdf', NULL, '1', '2024-07-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-15 09:30:44', 104, '2024-07-15 04:01:50', 0, NULL, 1),
(20252, 'Varshini.M', '6', '8072517746', '8838661451', 'varshini.murugan1998@gmail.com', '1998-09-25', 25, '2', '1', 'R.Murugan', 'Security', 10000.00, 2, 0.00, 16000.00, 'Avadi', 'Avadi', '2407150040', '45', '1', 'upload_files/candidate_tracker/65734949600_NonITResume.pdf', NULL, '1', '2024-07-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-15 09:30:48', 104, '2024-07-15 03:45:34', 0, NULL, 1),
(20253, 'Amarnath D', '6', '9790595665', '', 'ahi.amarnath007@gmail.com', '1999-12-15', 24, '2', '2', 'Dharmaraj', 'Farmer', 5000.00, 0, 0.00, 20000.00, 'Ariyalur', 'Chennai', '2407150041', '32', '1', 'upload_files/candidate_tracker/87469759591_Amarnathresume1.pdf', NULL, '1', '2024-07-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-15 11:51:25', 1, '2024-07-15 12:24:20', 0, NULL, 1),
(20254, 'arun', '5', '9360904814', '9841583866', 'arunlouisofficial@gmail.com', '1998-04-02', 26, '4', '2', 'sekar', 'Electrician', 30000.00, 1, 175000.00, 18000.00, 'chennai kolathur', 'chenn', '2407150042', '', '2', 'upload_files/candidate_tracker/44385304896_CV.pdf', NULL, '1', '2024-07-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-15 12:06:41', 1, '2024-07-15 12:12:09', 0, NULL, 1),
(20255, 'N.Tamilkumaran', '23', '7550198531', '8925022771', 'tamilkumaran021@gmail.com', '2003-10-03', 20, '3', '2', 'Natarajan', 'Working in Paint manufacturing company', 34000.00, 1, 0.00, 20000.00, 'No 6/1 Gandhi nagar, Madhavaram, Chennai - 51', 'Chennai', '2407160001', '', '1', 'upload_files/candidate_tracker/62247195078_TamilkumaranResume.pdf', NULL, '1', '2024-07-16', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-16 04:57:08', 104, '2024-07-16 05:14:49', 0, NULL, 1),
(20256, 'Vishalini Natarajan', '11', '6379592228', '8270785634', 'vishalininatarajan1112@gmail.com', '2000-12-11', 23, '6', '2', 'Natarajan . s', 'Gold Smith', 10000.00, 1, 0.00, 20000.00, 'Mayiladuthurai', 'Urappakam', '2407160002', '', '1', 'upload_files/candidate_tracker/26246800423_VishaliniResume6.pdf', NULL, '1', '2024-07-16', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected by gokul sir', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-16 05:05:01', 104, '2024-07-16 05:04:01', 0, NULL, 1),
(20257, 'J.REVATHI', '4', '9087517942', '7639027942', 'revathijayaprakash2003@gmail.com', '2003-07-20', 20, '6', '1', 'AKASH.S', 'Quality engineer in simpson .co ltd', 23.00, 2, 0.00, 17000.00, '1/133 . Naidu Street ,no:2 kadalangudi,mayiladuth', '187 /F fish market.street .kaladipet', '2407160003', '', '1', 'upload_files/candidate_tracker/33479050025_REVATHIRESUME.pdf', NULL, '1', '2024-07-16', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She was not fit for sales, had lower voice and will not sustain longer', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-16 05:17:17', 104, '2024-07-16 04:43:27', 0, NULL, 1),
(20258, 'Muralikrishnan m', '11', '9626009722', '9894509849', 'muralikrishnan0712@gmail.com', '2001-12-07', 22, '6', '2', 'Muniswaran s', 'Tailor', 30000.00, 1, 15100.00, 17000.00, 'Palladam, Tiruppur', 'Kovilambakkam, chennai', '2407160004', '', '2', 'upload_files/candidate_tracker/34329396598_MURALIKRISHNAN.pdf', NULL, '1', '2024-07-16', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected By Gokul Sir', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-16 05:20:56', 104, '2024-07-16 05:09:37', 0, NULL, 1),
(20259, 'Yamuna', '6', '6369108946', '', 'yamunaganesh03@gmail.com', '2003-04-20', 21, '2', '2', 'Murugan', 'Mts in post office', 55000.00, 1, 0.00, 16.00, '14/16 bharathiyar street meenambakkam Chennai 27', '14/16 bharathiyar street meenambakkam Chennai 27', '2407160005', '50', '1', 'upload_files/candidate_tracker/35941350039_Yamunaresume.pdf', NULL, '1', '2024-07-16', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate only looking for non voice process only , voice process just try  so not fit for my team ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-16 05:37:29', 104, '2024-07-16 04:31:02', 0, NULL, 1),
(20260, 'sai karthick', '5', '8056108762', '9791145178', 'saikarthick06@gmail.com', '2002-04-06', 22, '1', '2', 'Uma devi', 'Acupuncture', 300000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2407160006', '', '1', 'upload_files/candidate_tracker/94469012150_sk.resume.pdf', NULL, '1', '2024-07-16', 0, '12345', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected by guarav sir, hestitated for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-16 05:40:26', 104, '2024-07-16 12:19:25', 0, NULL, 1),
(20261, 'Balaji M', '6', '6380300579', '9840096986', 'balajivolley25@gmail.com', '2003-09-25', 20, '3', '2', 'Murali A', 'Southern Railway', 40000.00, 1, 0.00, 18000.00, 'Ayanavaram', 'Ayanavaram', '2407160007', '', '1', 'upload_files/candidate_tracker/83500881856_TechEngineerResumeTemplate7.pdf', NULL, '1', '2024-07-16', 0, '', '3', '59', '2024-07-18', 192000.00, '', '1', '1970-01-01', '1', 'Communication Ok Fresher for Our role Candidate much focus is on non voice Open for Telesales Can give a try Need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-07-18', 1, '2024-07-16 05:45:49', 60, '2024-07-18 04:40:54', 0, NULL, 1),
(20262, 'Ayeesha rale', '5', '9042896614', '8056108762', 'Ayeeshaissadeen82@gmail.com', '2005-09-01', 18, '1', '2', 'Sai karthick', 'AR caller', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2407160008', '', '1', 'upload_files/candidate_tracker/6618487546_SimpleResumeinWhiteandPastelBlueMinimalistStyle202407160242490000.pdf', NULL, '1', '2024-07-16', 0, '12345', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She is srilankan citizen she came only Medical visa not a working visa also not have any proper documents so this candidate not eligible for our organiztion', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-07-16 05:48:52', 104, '2024-07-16 12:20:36', 0, NULL, 1),
(20263, 'Manikandan', '11', '9344107055', '7868925841', 'manijavelin2002@gmail.com', '2002-06-21', 22, '3', '2', 'Kaliyamoorthi', 'Student', 100000.00, 3, 0.00, 15000.00, 'Kallakurichi', 'Kallakurichi', '2407160009', '', '1', 'upload_files/candidate_tracker/48206267230_maniresume2024.pdf', NULL, '1', '2024-07-16', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected By Gokul Sir', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-16 05:59:16', 104, '2024-07-16 05:06:31', 0, NULL, 1),
(20264, 'Siva Prasad M', '11', '7826802077', '', 'm.sivaprasad122@gmail.com', '1999-09-05', 24, '6', '2', 'Manikandan', 'Business', 30000.00, 1, 0.00, 2.00, 'Veeyannoor, Kanniyakumari District', 'Veeyannoor, Kanniyakumari District', '2407160010', '', '1', 'upload_files/candidate_tracker/39658000087_SivaPrasadMresume.05.pdf', NULL, '1', '2024-07-16', 0, '', '3', '59', '2024-10-26', 156000.00, '', NULL, '2025-02-25', '1', 'Selected for Recruitment profile with Staff role after internship for 3 months,Good Candidate have interest to work in the profile', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '2024-10-25', 1, '2024-07-16 06:13:33', 60, '2024-10-25 07:01:19', 0, NULL, 1),
(20265, '', '0', '9791137956', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407160011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-16 06:15:59', 0, NULL, 0, NULL, 1),
(20266, 'K Jeevanandhan', '4', '7305247754', '', 'jeevak7754@gmail.com', '2003-05-20', 21, '3', '2', 'Kuppusamy', 'Wages', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2407160012', '', '1', 'upload_files/candidate_tracker/35195335768_myresume1.pdf', NULL, '1', '2024-07-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1002', '0', '0', '0', NULL, 1, '2024-07-16 06:18:34', 1, '2024-07-16 06:32:11', 0, NULL, 1),
(20267, 'Gokula krishnan', '4', '6374636419', '7305247754', 'Kidgokula@gmail.com', '2002-05-17', 22, '2', '2', 'V.raja sekar', 'Gas mechanic', 15000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2407160013', '27', '1', 'upload_files/candidate_tracker/89132553839_CV2024062713401040.pdf', NULL, '1', '2024-07-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-16 06:19:42', 1, '2024-07-16 06:44:40', 0, NULL, 1),
(20268, 'Rekha c', '5', '9361466973', '9750705482', 'Rekhachandran895@gmail.com', '2003-02-21', 21, '2', '2', 'Sulochana c', 'Daily Wages', 10000.00, 2, 0.00, 20000.00, 'Vellore', 'Arumbakkam Chennai', '2407160014', '50', '1', 'upload_files/candidate_tracker/68325261272_pythondeveloper.pdf', NULL, '1', '2024-07-16', 0, '', '3', '59', '2024-07-22', 180000.00, '', '3', '2024-11-30', '2', 'Communication Ok IT background she may switch if she is getting an opportunity her focus is only on the salary sustainability doubts can give a try and analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-07-22', 1, '2024-07-16 06:21:47', 104, '2024-07-22 06:33:05', 0, NULL, 1),
(20269, 'Prasanth C', '4', '8015724938', '6382212603', 'prasanthpras081@gmail.com', '2000-06-10', 24, '2', '2', 'Sulochana', 'Daily Wages', 10000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2407160015', '50', '1', 'upload_files/candidate_tracker/61963440734_PrasanthRes.pdf', NULL, '1', '2024-07-16', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not even talk ,  not fit hor sales', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-16 06:24:20', 104, '2024-07-17 06:55:32', 0, NULL, 1),
(20270, 'S.susmitha', '4', '8778499532', '8838032035', 'Susmitha791@gmail.com', '1999-11-08', 24, '2', '2', 'Selvaraj', 'Former', 25000.00, 2, 0.00, 18000.00, 'Karaikudi', 'West sambalam.t.nagar', '2407160016', '1', '1', 'upload_files/candidate_tracker/64052217395_RESUMETwoPage2.pdf', NULL, '1', '2024-07-16', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Doesnxquott anwer any questions,  not even open her mouth to talk', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '7', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2024-07-16 06:27:29', 104, '2024-07-16 04:55:16', 0, NULL, 1),
(20271, 'AAKASH R', '20', '9344062578', '', 'akashrajaraman2508@gmail.com', '2002-08-25', 21, '2', '2', 'RAJARAMAN N', 'B.E (ECE)', 80.00, 2, 0.00, 200000.00, 'Neyveli', 'Chennai', '2407160017', '50', '1', 'upload_files/candidate_tracker/46244512977_AAKASHRRESUME.pdf', NULL, '1', '2024-07-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '6', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-16 06:30:04', 104, '2024-07-16 04:08:33', 0, NULL, 1),
(20272, 'Megarani', '6', '9940410751', '8122500903', 'megadas2004@gmail.com', '2004-04-02', 20, '3', '2', 'Muniyandi', 'Assistant Surgen', 35000.00, 1, 0.00, 18000.00, 'Plot no 333 lvb colony perumallpattu veppampattu', 'Veppampattu', '2407160018', '', '1', 'upload_files/candidate_tracker/55246290998_megarani.mresume.pdf', NULL, '1', '2024-07-16', 0, '', '3', '59', '2024-07-22', 168000.00, '', '1', '1970-01-01', '2', 'Communication Ok can be trained in our roles need to focus on  sustainability due to her travel distance', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-07-22', 1, '2024-07-16 06:33:13', 104, '2024-07-22 06:33:22', 0, NULL, 1),
(20273, 'Revathi.S', '6', '7358441338', '7550176190', 'revathisbcomcs@gmail.com', '2003-07-21', 20, '3', '1', 'Renuka.S', 'Export employee', 10000.00, 1, 0.00, 18000.00, 'Chennai Poonamalle kattuppakam', 'Chennai Poonamalle kattuppakam', '2407160019', '', '1', 'upload_files/candidate_tracker/50611650744_revathi.Sresume.pdf', NULL, '1', '2024-07-16', 0, '', '3', '59', '2024-07-22', 168000.00, '', '1', '1970-01-01', '2', 'Fresher Need to train a lot Pressure handling need to check can give atry and analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2024-07-22', 1, '2024-07-16 06:33:14', 104, '2024-07-22 06:33:36', 0, NULL, 1),
(20274, 'Jayasurya', '13', '8838436823', '', 'jayasurya3061998@gmail.com', '1998-06-30', 26, '3', '2', 'Karunanidhi k', 'Driver', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2407160020', '', '1', 'upload_files/candidate_tracker/66410263547_suryaResumecompressed2.pdf', NULL, '1', '2024-07-16', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-16 06:37:40', 104, '2024-07-16 05:14:39', 0, NULL, 1),
(20275, 'RUBAN RAJ p', '6', '6374043406', '', 'Rubanraj483@gmail.com', '2000-02-02', 24, '2', '2', 'Paulraj s', 'Courier delivery man', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2407160021', '50', '1', 'upload_files/candidate_tracker/44140297754_PRUBANRAJ1.pdf', NULL, '1', '2024-07-16', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is unfit for sales. communication not well.not suitable for telecalling process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-16 06:38:32', 104, '2024-07-16 04:58:03', 0, NULL, 1),
(20276, 'R.rajeahwari', '4', '7401383379', '8838032035', 'Susmithaselvaraj81199@gmail.com', '2003-10-10', 20, '2', '1', 'Rajasekar', 'Driver', 20000.00, 2, 0.00, 18000.00, 'West mangalam.t nagar', 'West mambalam.t.nagar', '2407160022', '50', '1', 'upload_files/candidate_tracker/35478037426_RESUMETwoPage2.pdf', NULL, '1', '2024-07-16', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales she was not talking much had limited conversation', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '7', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-16 06:44:10', 104, '2024-07-16 04:45:26', 0, NULL, 1),
(20277, 'Jannathul firdhous.R', '4', '9342289619', '', 'jannathayisha2018@gmail.com', '2003-03-17', 21, '3', '2', 'Ayisha', 'No', 30000.00, 0, 0.00, 15000.00, 'No:240 s,s puram A block , ottery ,chennai_600012', 'No:240 s,s puram A block, ottery, chennai _600012', '2407160023', '', '1', 'upload_files/candidate_tracker/67483104028_jannath.pdf', NULL, '1', '2024-07-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-16 06:54:24', 104, '2024-07-16 04:48:06', 0, NULL, 1),
(20278, 'dinesh kumar', '4', '8870100729', '', 'Rx.sakthi.9216@gmail.com', '2005-01-06', 19, '2', '2', 'amuthavalli', 'houe wife', 60000.00, 0, 0.00, 25000.00, 'villivakkam', 'villivakkam', '2407160024', '56', '1', 'upload_files/candidate_tracker/19010847894_RESUME.docx', NULL, '1', '2024-07-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-16 07:13:07', 1, '2024-07-16 07:49:17', 0, NULL, 1),
(20279, 'mohammed junaid', '5', '6382737958', '8148140640', 'itsmohammedjunaid@gmail.com', '1994-04-03', 30, '2', '1', 'Shahnaz Arfa', 'House wife', 80000.00, 3, 25000.00, 26000.00, 'Chennai', 'Chennai', '2407160025', '50', '2', 'upload_files/candidate_tracker/83092334051_junaidupdatedresume.pdf', NULL, '1', '2024-07-16', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Low observation skill, Not aware the previous experience product.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-07-16 07:20:23', 104, '2024-07-16 04:46:44', 0, NULL, 1),
(20280, 'Sakthivel', '6', '8056732451', '8056432985', 'ksakthivelk123@gmail.com', '2000-04-12', 24, '2', '2', 'Krishnan', 'Father', 200000.00, 3, 0.00, 15000.00, 'Dharmpuri', 'Kottivakkam', '2407160026', '50', '1', 'upload_files/candidate_tracker/91199790998_SakthiVelresume2024.pdf', NULL, '1', '2024-07-16', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not Interested sales , ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-16 07:45:51', 104, '2024-07-16 04:44:19', 0, NULL, 1),
(20281, 'Avinash. P', '33', '7598423057', '9360357441', 'Avinashperumal82@gmail.com', '2001-07-15', 23, '2', '2', 'Perumal. M', 'Father', 18000.00, 1, 0.00, 18000.00, 'Dharmapuri', 'Ambattur', '2407160027', '50', '1', 'upload_files/candidate_tracker/8541912587_ResumeAvinash.PFormat1.pdf', NULL, '1', '2024-07-16', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in sales, not fit for sales also', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-16 08:09:31', 104, '2024-07-16 04:59:30', 0, NULL, 1),
(20282, 'Kavya', '11', '7299887793', '9840766127', 'kavyaammu214@gmail.com', '2002-08-21', 21, '6', '2', 'Muralidharan S', 'Driver', 200000.00, 1, 0.00, 20000.00, 'Virugambakkam, Chennai -92', 'Virugambakkam, Chennai -92', '2407160028', '', '1', 'upload_files/candidate_tracker/68515896665_RESUME.pdf', NULL, '1', '2024-07-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-16 09:38:26', 104, '2024-07-16 04:45:53', 0, NULL, 1),
(20283, 'Aadalarasan Tholkappian', '11', '8883647542', '', 'ntaadal2001@gmail.com', '2001-09-27', 22, '6', '2', 'Tholkappian Natesan', 'Self Employed', 240000.00, 0, 0.00, 20000.00, 'Perambalur', 'Chennai', '2407160029', '', '1', 'upload_files/candidate_tracker/84205272025_AADALARASANTHOLKAPPIANRESUME.pdf', NULL, '1', '2024-07-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-16 10:25:57', 104, '2024-07-16 04:42:39', 0, NULL, 1),
(20284, 'V Rajadurai', '15', '9087820764', '', 'rajaduraib9548@gmail.cim', '2002-11-26', 21, '2', '2', 'Velayutham', 'Alamelu', 15000.00, 0, 0.00, 18000.00, 'Villupuram', 'Gundi', '2407160030', '50', '1', 'upload_files/candidate_tracker/25034407317_RajaduraiFlowCVResume20240619.pdf', NULL, '1', '2024-07-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-16 12:24:25', 1, '2024-07-16 12:34:29', 0, NULL, 1),
(20285, 'Suriya u', '6', '6385388497', '6383042076', 'Candysuriya2004@gmail.com', '2004-04-19', 20, '2', '2', 'Uthirpathy', 'Business', 30000.00, 1, 0.00, 15000.00, 'Chidambaram', 'Chennai', '2407160031', '50', '1', 'upload_files/candidate_tracker/3206957788_CV202406051440213.pdf', NULL, '1', '2024-07-30', 0, '', '3', '59', '2024-08-05', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Fresher for Job can be trained in ou roles need to analyse in 7 days', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-08-05', 1, '2024-07-16 12:35:22', 60, '2024-07-31 07:21:33', 0, NULL, 1),
(20286, 'Ram Kumar A', '4', '8883836546', '', 'ashogaramkumar@gmail.com', '1995-11-20', 28, '2', '2', 'Asokan', 'Business', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407160032', '50', '1', 'upload_files/candidate_tracker/6702514740_RamDesktop.docx', NULL, '1', '2024-07-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-16 12:38:42', 1, '2024-07-16 12:41:10', 0, NULL, 1),
(20287, 'Subash K', '4', '6382877050', '', 'subashkathirvel1309@gmail.com', '2001-11-09', 22, '2', '2', 'Kathirvel -Father', 'Self Employer', 18000.00, 2, 0.00, 3.00, 'Cuddalore', 'Chennai', '2407160033', '50', '1', 'upload_files/candidate_tracker/52788157868_SubashK.pdf', NULL, '1', '2024-07-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-16 12:55:04', 1, '2024-07-16 12:58:44', 0, NULL, 1),
(20288, '', '0', '6381848314', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407160034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-16 01:24:58', 0, NULL, 0, NULL, 1),
(20289, 'Mathankumar.s', '6', '9600910379', '7845650379', 'viratmathan007@gmail.com', '2003-05-19', 21, '2', '2', 'Selvakumar.a', 'Meson', 35000.00, 1, 0.00, 15000.00, 'Ashoknagar 86th Street Chennai', 'Ashok nagar 86th Street Chennai', '2407170001', '50', '1', 'upload_files/candidate_tracker/76571375656_ResumeMathan2024new1.pdf', NULL, '1', '2024-07-17', 0, '', '3', '59', '2024-07-19', 192000.00, '', '1', '1970-01-01', '1', 'Communication Ok Fresher for our roles Need to train from Scratch Should analyse in training and confirm', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-07-19', 1, '2024-07-17 04:17:10', 60, '2024-07-19 05:08:16', 0, NULL, 1),
(20290, 'KRISHNARAJ', '6', '6379817763', '', 'krish15r2001@gmail.com', '2001-10-06', 22, '3', '2', 'Jothika', 'Steel business', 400000.00, 0, 0.00, 17000.00, 'Reddiyar street melkavarapattu Cuddalore', 'Mariyapan Street teynampet chennai 600018', '2407170002', '', '1', 'upload_files/candidate_tracker/78806789294_M.KRISHNARAJRESUME.pdf', NULL, '1', '2024-07-17', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is very local voice and not well communication and dress code , past 2 years work for our father shop and just try for other work but not stable for work , so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-17 05:12:24', 104, '2024-07-17 12:34:16', 0, NULL, 1),
(20291, 'S Mohammed RAFIQ', '6', '8667375497', '9361639672', 'mr3976091@gmail.com', '2004-01-06', 20, '2', '2', 'Parents', 'Tea shop', 30000.00, 1, 0.00, 24000.00, 'VYASARPADI CHENNAI', 'VYASARPADI CHENNAI', '2407170003', '42', '1', 'upload_files/candidate_tracker/13444831978_CV2024031322120058.pdf', NULL, '1', '2024-07-17', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is very slow ,also he weared jean pant', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-17 05:15:40', 104, '2024-07-17 01:12:35', 0, NULL, 1),
(20292, 'Deepak Balaji.b', '6', '8778737403', '', 'deepakbalaji2003@gmail.com', '2003-03-22', 21, '2', '2', 'Parents', 'Marketing executive', 18000.00, 2, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2407170004', '50', '1', 'upload_files/candidate_tracker/78048967119_DEEPAK2.pdf', NULL, '2', '2024-07-17', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not To  come formal wear in interview and not willing to work on weekend ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-17 05:23:53', 104, '2024-07-17 12:27:24', 0, NULL, 1),
(20293, 'Ranjith kumar', '11', '8072039040', '', 'ramonz0029@gmail.com', '1997-04-29', 27, '3', '2', 'Thenmozhi', 'Professor', 45000.00, 1, 0.00, 10000.00, 'Nagapattinam', 'Chennai', '2407170005', '', '1', 'upload_files/candidate_tracker/33034671569_resumeRk.pdf', NULL, '1', '2024-07-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '', '1970-01-01', 1, '2024-07-17 05:25:49', 130, '2024-07-17 06:30:53', 0, NULL, 1),
(20294, 'Senthilkumar k', '14', '6382567781', '8973618058', 'Senthilkumarcheyyar2001@gmail.com', '2001-09-14', 22, '3', '2', 'Parent Kangan k', 'Tv sales and service', 120000.00, 1, 0.00, 1.00, 'Cheyyar, Thiruvannamalai district', 'Maduravoyal, chennai', '2407170006', '', '1', 'upload_files/candidate_tracker/45001754766_SenthilkumarkJavaDevResume.pdf', NULL, '1', '2024-07-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-17 05:26:09', 1, '2024-07-17 05:31:58', 0, NULL, 1),
(20295, 'Berlin suderson', '11', '7871946380', '', 'berlinsuderson007@gmail.com', '2002-02-18', 22, '3', '2', 'Nelson Popraj', 'Fisherman', 17000.00, 2, 0.00, 18000.00, 'Rameswaram', 'Chennai,padi', '2407170007', '', '1', 'upload_files/candidate_tracker/16232704992_Berlin.pdf', NULL, '1', '2024-07-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '', '1970-01-01', 1, '2024-07-17 05:26:47', 130, '2024-07-17 06:31:34', 0, NULL, 1),
(20296, 'S . Ilakiya', '6', '7358596342', '', 'Ilakiyaselvam111@gmail.com', '2003-07-05', 21, '2', '2', 'Selvam', 'Fisherman', 18000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407170008', '50', '1', 'upload_files/candidate_tracker/96706241312_ResumeIlakiyaFormat31.pdf', NULL, '1', '2024-07-17', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is very nice xxampgood ,but her distance is too long ,  also her mother is under medical treatment,So Sustainability Is Very Doubt.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-17 05:28:03', 104, '2024-07-17 01:12:06', 0, NULL, 1),
(20297, 'Sathiya priya', '6', '9342334061', '', 'sathiyakutti17@gmail.com', '2003-06-17', 21, '2', '2', 'Vanitha', 'Kuli', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407170009', '50', '1', 'upload_files/candidate_tracker/79271349636_ResumeSathiyapriyaFormat211.pdf', NULL, '1', '2024-07-17', 0, '', '3', '59', '2024-07-29', 168000.00, '', '1', '1970-01-01', '2', 'Communication Ok 1yr gap location is too far but open for the work location can give a try need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '2024-07-29', 1, '2024-07-17 05:28:05', 104, '2024-07-29 06:29:54', 0, NULL, 1),
(20298, 'Jeevitha J', '11', '8925143224', '9677148570', 'jeevithajai21@gmail.com', '2001-11-20', 22, '6', '2', 'Jayakumar', 'Office assistant', 30000.00, 0, 0.00, 10000.00, 'Tamilnadu, Chennai', 'Tamilnadu, chennai', '2407170010', '', '1', 'upload_files/candidate_tracker/23349848595_JeevithaJayakumarResume..pdf', NULL, '1', '2024-07-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '', '1970-01-01', 1, '2024-07-17 05:43:21', 130, '2024-07-17 06:31:48', 0, NULL, 1),
(20299, 'Sereena N', '25', '8943601911', '9497882691', 'Sereena7799@gmail.con', '1999-07-07', 25, '6', '2', 'Kadeejakutty', 'DCA', 20000.00, 1, 20000.00, 22000.00, 'Palakkad, Kerala', 'BTM, old madiwala', '2407170011', '', '2', 'upload_files/candidate_tracker/43593205637_GrayModernProfessionalResume202405100918460000.pdf', NULL, '1', '2024-07-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-17 05:51:48', 1, '2024-07-17 05:55:31', 0, NULL, 1),
(20300, 'SAJJADUL AFSHAR', '6', '9150448772', '', 'afshar2024@gmail.com', '2000-10-09', 23, '2', '2', 'SALAHUDEEN', 'BUSINESS', 21000.00, 0, 0.00, 17000.00, 'CHENNAI', 'CHENNAI', '2407170012', '50', '1', 'upload_files/candidate_tracker/9146110292_SAJJADULAFSHARRESUME.pdf', NULL, '1', '2024-07-17', 0, '', '1', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-17 05:52:07', 104, '2024-07-17 06:56:13', 0, NULL, 1),
(20301, 'Sri Lakshmi.P', '6', '7305615398', '9840081190', 'srilakshmip2004@gmail.com', '2009-07-17', 0, '2', '2', 'Latha', 'Tailor', 15000.00, 1, 0.00, 1.80, 'Chennai', 'Chennai', '2407170013', '50', '1', 'upload_files/candidate_tracker/55531363811_sriresum.pdf', NULL, '2', '2024-07-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not attended', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-17 05:53:54', 104, '2024-11-12 04:27:37', 0, NULL, 1),
(20302, 'Shadrach gladston', '11', '8807487265', '9444848860', 'shadrachgladston@gmail.com', '2002-07-27', 21, '6', '2', 'Selwin', 'Business', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2407170014', '', '1', 'upload_files/candidate_tracker/94785682404_resumesg.pdf', NULL, '1', '2024-07-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '', '1970-01-01', 1, '2024-07-17 06:02:14', 130, '2024-07-17 06:29:37', 0, NULL, 1),
(20303, 'Sridhar R', '11', '8838747247', '', 'sridhar080599@gmail.com', '1999-05-08', 25, '6', '2', 'Ramji BR', 'Fresher', 60000.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2407170015', '', '1', 'upload_files/candidate_tracker/38053474665_SridharMBAResume.pdf', NULL, '1', '2024-07-17', 0, '', '3', '59', '2024-10-28', 132000.00, '', '1', '1970-01-01', '2', 'Communication ok hired him as an intern for 3 months in our roles and we have given him the opportunity', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '2024-10-28', 1, '2024-07-17 06:23:30', 60, '2024-10-28 10:56:48', 0, NULL, 1),
(20304, 'SIDHIK BASHA B', '11', '8667071706', '', 'sidhikbasha2543@gmail.com', '2001-09-08', 22, '6', '2', 'Babuji', 'Fresher', 15000.00, 1, 0.00, 10000.00, 'Kanchipuram', 'Kanchipuram', '2407170016', '', '1', 'upload_files/candidate_tracker/43838103364_SIDHIKBASHAB.pdf', NULL, '1', '2024-07-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '', '1970-01-01', 1, '2024-07-17 06:23:36', 130, '2024-07-17 06:29:16', 0, NULL, 1),
(20305, 'Jagathiswari.S', '6', '8122851563', '', 'easwari160304@gmail.com', '2004-03-16', 20, '2', '2', 'Sakthivel.S', 'Sales man', 15000.00, 1, 0.00, 15000.00, 'Avadi', 'Avadi', '2407170017', '45', '1', 'upload_files/candidate_tracker/38197441049_JagathiswariResume.docx', NULL, '1', '2024-07-17', 0, '', '3', '59', '2024-07-22', 168000.00, '', '5', '1970-01-01', '2', 'Selected for RE Role Too long distance She is ok to travel Can give a try in our roles Need to check in 7 days of training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-07-22', 1, '2024-07-17 06:29:48', 60, '2024-07-20 10:23:01', 0, NULL, 1),
(20306, 'Kishore kumar', '20', '9176441139', '8939092858', 'kishorekeerthi9112018@gmail.com', '1988-07-07', 36, '2', '1', 'Keerthika', 'Kotak bank', 25.00, 5, 0.00, 27.00, 'Perambur', 'Perambur', '2407170018', '50', '2', 'upload_files/candidate_tracker/97621553241_ImagetoPDF2024071811.53.00.pdf', NULL, '1', '2024-07-18', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sriram sir rejected this candidate, due to management not approved the non degree holder.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-07-17 06:45:39', 104, '2024-07-18 04:29:02', 0, NULL, 1),
(20307, 'Oviya M', '4', '8838847181', '', 'oviyarani1011@gmail.com', '2001-08-10', 22, '3', '2', 'Muthuramalingam P', 'Civil engineering', 15000.00, 0, 0.00, 15000.00, 'Madurai', 'Chennai', '2407170019', '', '1', 'upload_files/candidate_tracker/37733213566_OviyaMResume.pdf', NULL, '1', '2024-07-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-17 06:46:43', 104, '2024-07-17 04:33:22', 0, NULL, 1),
(20308, 'Deepak', '17', '7010872354', '', 'deepak.ravi9092@gmail.com', '1990-10-30', 33, '3', '1', 'Shoba', 'Not working', 40000.00, 1, 4.50, 6.00, 'No 6/804 , 142 street Muthizh nagar , kodungaiyur', 'Same as address', '2407170020', '', '2', 'upload_files/candidate_tracker/16413037647_DeepakRRESUME4.pdf', NULL, '1', '2024-07-17', 2, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-17 06:47:46', 130, '2024-07-17 06:25:53', 0, NULL, 1),
(20309, 'R. Ramya', '4', '9677887828', '9043752394', 'Ramyakrishnaa293@gmail.com', '1994-03-29', 30, '2', '2', 'K. Ravi', 'two wheeler machine', 10000.00, 0, 23000.00, 20000.00, 'Panruti', 'Kundrathur', '2407170021', '50', '2', 'upload_files/candidate_tracker/58669134023_RESUMEnew14.pdf', NULL, '1', '2024-07-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-17 06:55:08', 1, '2024-07-17 07:06:56', 0, NULL, 1),
(20310, 'Saran yogi R', '6', '7358529050', '', 'saranyogi13022002@gmail.com', '2009-07-17', 0, '2', '2', 'Rayappan', 'Farmer', 4000.00, 2, 0.00, 15000.00, 'Ariyalur', 'Pulianthope', '2407170022', '50', '1', 'upload_files/candidate_tracker/9142505833_CV2024062301212058.pdf', NULL, '1', '2024-07-17', 0, '', '3', '59', '2024-07-22', 198000.00, '', '3', '2025-01-30', '2', 'Selected for RE Role Communication PG Graduate Can be trained in our roles need to analyse in the training period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-07-22', 1, '2024-07-17 07:09:55', 104, '2024-07-22 06:33:51', 0, NULL, 1),
(20311, 'Murali', '6', '8870431500', '', 'murali24c@gmail.com', '1990-02-24', 34, '3', '2', 'Valarmathi', 'House wife', 15000.00, 2, 0.00, 20000.00, '36/38 t.v.k nagar 1st Street Puliyanthope ch-12', '36/38 t.v.k nagar 2st Street puliyanthope ch-12', '2407170023', '', '1', 'upload_files/candidate_tracker/6684911484_resumeresume.pdf', NULL, '1', '2024-07-17', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'low observation and no experience . Not satisfying ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-07-17 07:11:20', 130, '2024-07-17 06:34:49', 0, NULL, 1),
(20312, 'Karunakaran S', '4', '9360290966', '', 'karunakaranraja2002@gmail.com', '2002-09-04', 21, '2', '2', 'Sivakumar', 'Farmer', 6000.00, 1, 0.00, 15000.00, 'Thiruvarur', 'T nagar', '2407170024', '50', '1', 'upload_files/candidate_tracker/61138007277_KarunakaranSresume3.pdf1.pdf', NULL, '1', '2024-07-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-17 07:37:19', 1, '2024-07-17 07:42:55', 0, NULL, 1),
(20313, 'Sivakadacham', '4', '6374315905', '', 'sivakadacham.3@gmail.com', '2002-12-16', 21, '2', '2', 'Ganesan', 'Gurukal', 25000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2407170025', '1', '1', 'upload_files/candidate_tracker/41445751756_cv.pdf', NULL, '1', '2024-07-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '3', '5', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-07-17 07:42:21', 104, '2024-07-17 04:31:44', 0, NULL, 1),
(20314, 'Harimeena', '11', '9159121937', '', 'meenakarthi009@gmail.com', '1995-08-24', 28, '3', '1', 'Karthikeyan', 'Financial analyst', 35000.00, 1, 0.00, 10000.00, 'Vellore', 'Tambaram', '2407170026', '', '1', 'upload_files/candidate_tracker/32109363843_Resume1.pdf', NULL, '1', '2024-07-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '77778', '', '1970-01-01', 1, '2024-07-17 08:11:00', 130, '2024-07-17 06:29:55', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20315, 'Sevanthi', '6', '7200190187', '', 'Sevanthibanu2003@gmail.com', '2004-07-24', 19, '2', '2', 'Banu', 'Dalit work', 10000.00, 2, 0.00, 15000.00, 'Avadi', 'Avadi', '2407170027', '45', '1', 'upload_files/candidate_tracker/38112744201_SevanthiEResume03072024.docx', NULL, '1', '2024-07-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-17 09:06:54', 104, '2024-07-17 04:26:53', 0, NULL, 1),
(20316, 'Leebika.N', '6', '7358012340', '', 'leebipriya@gmail.com', '2004-07-11', 20, '2', '2', 'Nagenthiran', 'Shop keeper', 15000.00, 1, 0.00, 15000.00, 'Kundrathur', 'Kundrathur', '2407170028', '45', '1', 'upload_files/candidate_tracker/69454121608_resume2.docx', NULL, '1', '2024-07-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-17 09:09:25', 104, '2024-07-17 04:29:54', 0, NULL, 1),
(20317, 'bhuvaneswar', '20', '8939882181', '9841353614', 'bhuvaneshwarmalar@gmail.com', '2004-03-15', 20, '3', '2', 'santhosh kumar', 'mechanic', 120000.00, 1, 0.00, 18000.00, 'Thiruninravur chennai', 'Thiruninravur chennai', '2407170029', '', '1', 'upload_files/candidate_tracker/41340615389_compressaf4b6b6336dd40a8af8af7b4e7f9980b.pdf', NULL, '1', '2024-07-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-17 09:13:42', 130, '2024-07-17 05:45:12', 0, NULL, 1),
(20318, 'kalaivani.r', '5', '9176673264', '', 'kalaivani0529@gmail.com', '1995-05-29', 29, '1', '2', 'mala', 'tailor', 30000.00, 1, 28000.00, 30000.00, 'Chennai -117', 'Chennai -117', '2407170030', '', '2', 'upload_files/candidate_tracker/66654708874_KALAIVANIRESUME2023.pdf', NULL, '1', '2024-07-17', 0, '55781', '3', '59', '2024-08-05', 400000.00, '', '1', '1970-01-01', '1', 'Communication Ok Have relevant Exp can be trained in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55567', '55557', '2024-08-05', 1, '2024-07-17 09:21:55', 104, '2024-08-05 05:30:33', 0, NULL, 1),
(20319, 'Pavithra M', '11', '9342157100', '', 'Pm1836403@gmail.com', '2004-03-15', 20, '6', '2', 'Pushpa manokar', 'Labor', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407170031', '', '1', 'upload_files/candidate_tracker/12837941626_pavithraresume.pdf', NULL, '1', '2024-07-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '77778', '', '1970-01-01', 1, '2024-07-17 09:47:17', 130, '2024-07-17 06:30:14', 0, NULL, 1),
(20320, 'Nandhini.R', '11', '9361332879', '', 'Nandhinirameshgangadevi@gmail.com', '2003-04-30', 21, '6', '2', 'Ramesh.R', 'Advocate', 10000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2407170032', '', '1', 'upload_files/candidate_tracker/87215250507_resume.pdf', NULL, '1', '2024-07-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '77778', '', '1970-01-01', 1, '2024-07-17 09:47:25', 130, '2024-07-17 06:30:29', 0, NULL, 1),
(20321, 'Priyanka.M', '4', '9113266981', '9380435865', 'priyankaoffical4@gmail.com', '1999-12-04', 24, '3', '2', 'Murugesh', 'Painter', 10000.00, 1, 17379.00, 25000.00, '38/6 Gangamma Temple Street Bangarpete road kolar', 'Shri Vigneshwara ladies pg kormangala', '2407170033', '', '2', 'upload_files/candidate_tracker/47628985258_resume25.docx', NULL, '1', '2024-07-17', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-17 04:58:00', 1, '2024-07-17 05:11:23', 0, NULL, 1),
(20322, 'Pavithra K', '6', '6374701547', '9444085485', 'pavik433@gmail.com', '2002-11-14', 21, '3', '2', 'Krishnamoorthy S', 'Auto driver', 20000.00, 2, 0.00, 15000.00, 'Vyasarpadi', 'Vyasarpadi', '2407180001', '', '1', 'upload_files/candidate_tracker/39510074533_Pavithraresume.pdf', NULL, '1', '2024-07-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice process only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-18 04:21:24', 60, '2024-07-20 04:16:32', 0, NULL, 1),
(20323, 'THANIGAIVEL K', '13', '9626753326', '', 'thanigaivelrr66@gmail.com', '2001-07-15', 23, '3', '2', 'Kannan', 'Weaver', 15000.00, 1, 0.00, 200000.00, 'Cuddalore', 'Perungalathur', '2407180002', '', '1', 'upload_files/candidate_tracker/73319946600_THANIGAIVELKResume.pdf', NULL, '1', '2024-07-18', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-18 05:00:58', 104, '2024-07-18 04:40:43', 0, NULL, 1),
(20324, 'Jenishiya', '6', '9150439553', '9551010731', 'jenishiyajeni30@gmail.com', '2003-10-30', 20, '2', '2', 'Dominic savio', 'Auto driver', 90000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407180003', '50', '1', 'upload_files/candidate_tracker/81584507725_JenishiyaResume.pdf', NULL, '1', '2024-07-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication was not good so she is not fit for insurance sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-18 05:12:40', 104, '2024-07-18 01:35:54', 0, NULL, 1),
(20325, 'mohamed sheik mydheen', '6', '9677788355', '', 'ruhith0103@gmail.com', '2001-08-24', 22, '2', '2', 'mujeeb rahman', 'car seat cover company', 200000.00, 2, 0.00, 16000.00, 'guindy', 'guindy', '2407180004', '50', '1', 'upload_files/candidate_tracker/10428659002_MohamedSheikMydheenResume.pdf', NULL, '1', '2024-07-18', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested in field work interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-18 05:25:07', 104, '2024-07-18 01:23:41', 0, NULL, 1),
(20326, 'R Devaanand', '6', '6382565116', '', 'saran.n10119@gmail.com', '2003-11-06', 20, '6', '2', 'N rajamani', 'Electrical', 15000.00, 1, 0.00, 10000.00, 'Perambur Chennai', '15/39 madurai Samy madam east Street', '2407180005', '', '1', 'upload_files/candidate_tracker/35611958123_RDEVAANAND2.pdf', NULL, '1', '2024-07-18', 0, '', '1', '104', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-18 05:25:21', 104, '2024-07-25 06:49:45', 0, NULL, 1),
(20327, 'Rajkumar.R', '1', '9943968417', '8778140860', 'rajkumarsanu16@gmail.com', '2000-12-12', 23, '3', '2', 'Susila.R', 'Fresher', 15000.00, 1, 0.00, 20000.00, 'Maraimalai nagar', 'Vadapalani', '2407180006', '', '1', 'upload_files/candidate_tracker/9198830238_RAJKUMARRESUME.pdf', NULL, '1', '2024-07-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-18 05:25:43', 1, '2024-07-18 05:40:04', 0, NULL, 1),
(20328, 'S anusiya', '6', '7305855396', '9551824779', 'anusiyaangel1@gmail.com', '2002-12-19', 21, '2', '2', 'A sukumar', 'Driver', 2000.00, 2, 0.00, 18000.00, 'Koyambedu Chennai', 'Koyambedu Chennai', '2407180007', '50', '1', 'upload_files/candidate_tracker/13841251097_resume.pdf', NULL, '1', '2024-07-18', 0, '', '3', '59', '2024-07-22', 192000.00, '', '3', '2025-01-11', '2', 'Communication Good Reveiwed her bank statements can be trained in our roles Need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-07-29', 1, '2024-07-18 05:29:37', 104, '2024-07-29 06:31:29', 0, NULL, 1),
(20329, 'Arunkumar kaliraj', '23', '9042760674', '', 'arunkumarbca2002@gmail.com', '2002-02-21', 22, '3', '2', 'Kaliraj', 'Auto Driver - Daily Wages', 11000.00, 1, 0.00, 20000.00, 'Sankarankovil', 'Chennai', '2407180008', '', '1', 'upload_files/candidate_tracker/69378211475_ArunkumarResumeNew.pdf', NULL, '1', '2024-07-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-18 05:29:54', 1, '2024-07-18 05:37:54', 0, NULL, 1),
(20330, 'S.Malini', '1', '9786170252', '8372950257', 'Malinimalini441@gmail.com', '1999-06-14', 25, '3', '2', 'G.Selvam', 'Agriculture', 80000.00, 2, 0.00, 18000.00, 'Vridhachalam', 'Chengalpattu', '2407180009', '', '1', 'upload_files/candidate_tracker/78736523750_DocScanner18Jul20241118am.pdf', NULL, '1', '2024-07-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-18 05:33:23', 1, '2024-07-18 05:56:37', 0, NULL, 1),
(20331, 'ESWARAMOORTHY S', '14', '9566518801', '9629296880', 'eswaramoorthy1111@gmail.com', '2003-03-08', 21, '3', '2', 'SENTHILKUMAR N', 'Driver', 12000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2407180010', '', '1', 'upload_files/candidate_tracker/74892102724_CV2024040312103527.pdf', NULL, '1', '2024-07-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-18 05:42:34', 104, '2024-07-18 04:34:28', 0, NULL, 1),
(20332, 'Auxilia B', '6', '6381769319', '9786008348', 'auxiliabernad5@gmail.com', '2001-07-27', 22, '2', '2', 'Bernad', 'Farmer', 49000.00, 3, 0.00, 16000.00, 'Tiruvannamalai', 'Chennai', '2407180011', '45', '1', 'upload_files/candidate_tracker/42933899404_auxiCV2.pdf', NULL, '1', '2024-07-18', 0, '', '3', '59', '2024-07-22', 168000.00, '', '3', '2025-03-05', '2', 'Selected for RE Role Fersher MA graduate Can be trained in our roles need to check and confirm in the 7 days of training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2024-07-22', 1, '2024-07-18 05:42:53', 104, '2024-07-22 06:34:17', 0, NULL, 1),
(20333, 'Meghana G', '6', '9019145239', '', 'Meghanasakshi9986@gmail.com', '2000-10-31', 23, '2', '2', 'Gangadhar B N', 'Electrical contractor', 10000.00, 1, 0.00, 15000.00, 'Bagepalli chikkabalapur', 'Garebhavipalaya, Bangalore', '2407180012', '1', '1', 'upload_files/candidate_tracker/25718820603_meghanaresume.pdf', NULL, '1', '2024-07-18', 0, '', '3', '59', '2024-07-22', 174000.00, '', NULL, '1970-01-01', '2', 'Communication Ok Fresher for our roles Preparing for Exams MBA Time being looking for Job if she is clearing the exams will leave in 6 months Can give a try and check', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-07-22', 1, '2024-07-18 05:59:19', 104, '2024-07-22 06:34:04', 0, NULL, 1),
(20334, 'Sharmila. P', '6', '7397141652', '9840475331', 'sharmilasharmila9130@gmail.com', '2003-10-17', 20, '1', '2', 'Prabhakar', 'Cooli', 96000.00, 1, 0.00, 15000.00, '9/4Arani Rangan Lane Old Washermenpet', 'Spencer plaza', '2407180013', '', '1', 'upload_files/candidate_tracker/71043557202_Sharmilaresume1.pdf', NULL, '1', '2024-07-18', 0, '77929', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate very local voice and not understand my words . So not fit. For my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-18 05:59:26', 104, '2024-07-18 01:25:33', 0, NULL, 1),
(20335, 'LOGESH', '6', '7449033436', '9003039638', 'lokesh342003@gmail.com', '2003-04-03', 21, '1', '2', 'Kokila', 'Homemaker', 15000.00, 2, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2407180014', '', '1', 'upload_files/candidate_tracker/58367911049_Resume.pdf', NULL, '1', '2024-07-18', 0, '', '1', '104', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-18 05:59:29', 104, '2024-07-25 06:53:57', 0, NULL, 1),
(20336, 'Pradeepkumar T', '5', '7639453189', '9361121751', 'pkpradeep2218@gmail.com', '2002-11-18', 21, '2', '2', 'Thanikasalam', 'Farmer', 10000.00, 1, 20000.00, 25000.00, 'Kallakuruii', 'Vadapalani Chennai', '2407180015', '39', '2', 'upload_files/candidate_tracker/29195264799_PradeepKumarResume.pdf', NULL, '1', '2024-07-18', 15, '', '3', '59', '2024-07-24', 300000.00, '', '1', '1970-01-01', '2', 'Communication Ok No relevant Exp confident level ok can give a try in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '2024-07-24', 1, '2024-07-18 06:01:12', 60, '2024-07-24 01:23:02', 0, NULL, 1),
(20337, 'Karthick V', '13', '9442838590', '8807631201', 'karthick031201@gmail.com', '2001-12-03', 22, '6', '2', 'Venkatesan', 'Weaver', 24000.00, 1, 0.00, 300000.00, 'Cheyyar', 'Cheyyar', '2407180016', '', '1', 'upload_files/candidate_tracker/42146349507_KARTHICKVRESUME211.pdf', NULL, '1', '2024-07-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-18 06:01:42', 104, '2024-07-18 04:42:42', 0, NULL, 1),
(20338, 'YOGALAKSHMI', '6', '9345677046', '', 'YOGAPRIYASRIJA@GMAIL.COM', '1997-11-05', 26, '2', '2', 'SRITHAR', 'Cooly', 15000.00, 1, 15000.00, 18000.00, 'THIRUVOTTRIYUR', 'THIRUVOTTRIYUR', '2407180017', '50', '2', 'upload_files/candidate_tracker/91328577080_Yogalakshmi.pdf', NULL, '1', '2024-07-18', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performance and communication is not good ,also she mentioned her  experiance is more differnece ,while Discussing in interview.sustaiable doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 104, '2024-07-18 11:40:11', 104, '2024-07-18 01:20:53', 0, NULL, 1),
(20339, 'Salman Farook', '34', '7299599963', '', '2001salmanfarook@gmail.com', '2001-11-27', 22, '2', '2', 'Mohammed Sulthan Ali', 'Water can supply', 120000.00, 1, 0.00, 300000.00, 'City', 'City', '2407180018', '50', '1', 'upload_files/candidate_tracker/90367838476_salmanmca.pdf', NULL, '1', '2024-07-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-18 06:19:53', 1, '2024-07-18 06:23:01', 0, NULL, 1),
(20340, 'Sonali. M', '6', '7810019951', '9940267419', 'Sonalimbatch@gmail.com', '2004-09-02', 19, '1', '2', 'Murugan', 'Cooli', 96000.00, 2, 0.00, 15000.00, '2/3perambalu street old Washermenpet Chennai -21', 'Spencer plaza', '2407180019', '', '1', 'upload_files/candidate_tracker/91013782316_M.sonaliresume.pdf', NULL, '1', '2024-07-18', 0, '77929', '8', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-18 06:27:22', 104, '2024-07-25 06:48:57', 0, NULL, 1),
(20341, 'Shoaib Muhammad k', '2', '9941352977', '8939308173', 'shoaibmd1104@gmail.com', '2001-04-11', 23, '3', '2', 'Khaleel', 'Business', 25000.00, 1, 0.00, 25000.00, 'Perambur, Chennai', 'Chennai', '2407180020', '', '1', 'upload_files/candidate_tracker/18102172978_ShoaibMuhammad.pdf', NULL, '1', '2025-02-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-18 06:35:24', 153, '2025-02-17 03:12:48', 0, NULL, 1),
(20342, 'Sindhu', '20', '7604997709', '7358403639', 'sindhujbca@gmail.com', '2003-05-27', 21, '4', '2', 'Janagarajan', 'Painter', 20000.00, 1, 14000.00, 16000.00, 'Varadharaja puram teynampet', 'Mgr nagar', '2407180021', '', '2', 'upload_files/candidate_tracker/56585901467_Sindhu.JkthiruResume.pdf', NULL, '1', '2024-07-18', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-18 08:40:14', 104, '2024-07-18 04:38:15', 0, NULL, 1),
(20343, 'Sangeetha. B', '6', '9150290065', '7358308721', 'jenijeni1813@gmail.com', '2001-12-13', 22, '4', '2', 'P. Boominathan', 'field attendant', 35000.00, 1, 14000.00, 16000.00, 'No. 16/4 c.p.w.d Quarters k. K nagar chennai-78', 'No. 16/4 C.P.W.D Quarters K. K Nagar Chennai-78', '2407180022', '', '2', 'upload_files/candidate_tracker/96371274950_resume1.pdf', NULL, '1', '2024-07-18', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-18 08:40:33', 104, '2024-07-18 04:36:15', 0, NULL, 1),
(20344, 'Ajay deepak', '6', '7904944967', '7448449232', 'ajaycenabcom@gmail.com', '1999-12-05', 24, '4', '2', 'Parent', 'Driver', 100000.00, 1, 14000.00, 17000.00, 'Tondiarpet', '56/1 veerakutty Street old was her men pet', '2407180023', '', '2', 'upload_files/candidate_tracker/34830557315_Ajaydeepakresume.docx', NULL, '1', '2024-07-18', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-18 08:41:16', 104, '2024-07-18 04:29:57', 0, NULL, 1),
(20345, '', '0', '9148392042', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407180024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-18 09:28:01', 0, NULL, 0, NULL, 1),
(20346, 'Alfiya J', '6', '9790464076', '', 'alfiyajeeyaudeen@gmail.com', '2002-01-01', 22, '3', '2', 'Rukiya', 'House maker', 10000.00, 2, 0.00, 15000.00, '178/R, vivekanand nagar 4th cross Kumbakonam', 'Perungalathur', '2407180025', '', '1', 'upload_files/candidate_tracker/86396345212_alfiyaresume.pdf', NULL, '1', '2024-07-17', 0, '', '3', '59', '2024-07-22', 168000.00, '', '3', '2024-09-30', '2', 'Selected for RE Role Communication Ok Fresher Family need is there Can be trained in our roles need to analyse in 7 days training', '5', '1', '1', '4', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1066', '5151', '2024-07-23', 1, '2024-07-18 09:45:25', 60, '2024-07-23 08:12:06', 0, NULL, 1),
(20347, 'Priyadharshini.K', '20', '7358189904', '', 'k.priyadharshini7358@gmail.com', '2002-07-16', 22, '2', '2', 'Parents', 'House keeping', 95000.00, 0, 0.00, 15000.00, '1/392 moogambigai Kovil vandalur Chennai', 'Moogambigai Kovil Street vandalur Chennai', '2407180026', '56', '1', 'upload_files/candidate_tracker/76558213414_k.priya11.docx', NULL, '1', '2024-07-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-18 01:33:49', 1, '2024-07-18 01:40:18', 0, NULL, 1),
(20348, 'Gokul', '6', '7358337606', '7358197377', 'gokulpravin.v555000@gmail.com', '2000-08-14', 23, '2', '2', 'V. Thilagavathy', 'House wife', 10000.00, 0, 0.00, 16000.00, 'Nanganallur', 'Nanganallur', '2407190001', '50', '1', 'upload_files/candidate_tracker/30550800639_GOKULVresume.pdf', NULL, '2', '2024-07-19', 0, '', '3', '59', '2024-07-23', 195000.00, '', '', '2024-08-10', '1', 'Communication Have yrs exp in Semi voice can be trained in our roles need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '2024-07-23', 1, '2024-07-19 04:27:56', 60, '2024-07-23 08:12:24', 0, NULL, 1),
(20349, 'Jagathish S', '23', '6384847713', '', 'smjaga4@gmail.com', '2003-09-17', 20, '2', '2', 'Sathishkumar A', 'Fisherman', 20000.00, 1, 0.00, 18000.00, 'Pulicat', 'Pulicat', '2407190002', '50', '1', 'upload_files/candidate_tracker/71625640134_JAGATHISHS202406191832250000.pdf', NULL, '1', '2024-07-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-19 04:38:18', 1, '2024-07-19 04:42:37', 0, NULL, 1),
(20350, 'Shruthilaya S', '6', '6381746031', '7338788843', 'shruthilayasathish@gmail.com', '2004-04-06', 20, '2', '2', 'Sathish V', 'Plumber', 50000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2407190003', '50', '1', 'upload_files/candidate_tracker/74972799097_shruthilayaresume.pdf', NULL, '1', '2024-07-19', 0, '', '3', '59', '2024-07-22', 168000.00, '', NULL, '2025-02-11', '2', 'Communication Ok Fresher Can give a try exp salary much can be trained need to analyse in 7 days and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2024-07-22', 1, '2024-07-19 05:36:16', 104, '2024-07-22 06:34:44', 0, NULL, 1),
(20351, 'Preethi.R', '6', '8122113578', '8189860963', 'preethirajan781@gmail.com', '2004-08-18', 19, '2', '2', 'Rajan.E', 'Painting', 10000.00, 1, 0.00, 13000.00, 'Ambuttur', 'Ambuttur', '2407190004', '27', '1', 'upload_files/candidate_tracker/91679437743_PREETHIRESUME1.docx', NULL, '1', '2024-07-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-19 05:37:52', 104, '2024-07-23 11:30:54', 0, NULL, 1),
(20352, 'Nithya shree', '6', '9941141529', '9840851712', 'nithyashree7268@gmail.com', '2004-06-02', 20, '2', '2', 'Rukmangathan', 'Ashok Leyland', 40000.00, 1, 0.00, 20000.00, 'Ambattur', 'Ambattur', '2407190005', '50', '1', 'upload_files/candidate_tracker/70807567506_ACEScanner202406121.pdf', NULL, '1', '2024-07-19', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too slow', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-19 05:38:00', 104, '2024-07-19 02:45:58', 0, NULL, 1),
(20353, 'Monika. D', '6', '7305342830', '8778365090', 'monikadass0709@gmail.com', '2003-09-07', 20, '2', '2', 'DevaDass', 'Daily wager', 12000.00, 2, 0.00, 13000.00, 'Ambattur estate', 'Ambattur estate', '2407190006', '27', '1', 'upload_files/candidate_tracker/2178995291_MONIKA.Db.com.docx', NULL, '1', '2024-07-19', 0, '', '3', '59', '2024-07-22', 168000.00, '', '', '2024-08-08', '2', 'communication Ok fresher need to train from scratch can give a try in 7 days and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '2024-07-22', 1, '2024-07-19 05:39:23', 104, '2024-07-22 06:34:58', 0, NULL, 1),
(20354, 'Pavithra R', '20', '8610287932', '6379485286', 'Pavimuruga2003@gmail.com', '2003-04-14', 21, '1', '1', 'Subash', 'Pharmacy', 25000.00, 1, 15000.00, 16000.00, 'T . Nagar', 'Saidapet', '2407190007', '', '2', 'upload_files/candidate_tracker/72916425617_PAVITHRAresume.pdf', NULL, '1', '2024-07-19', 1, '77878', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-19 05:44:06', 1, '2024-07-19 05:53:17', 0, NULL, 1),
(20355, 'Santhosh S', '11', '9843591841', '', 'umasanthosh712@gmail.com', '2003-06-13', 21, '2', '2', 'Selvaraj', 'Civil', 20000.00, 1, 0.00, 15000.00, 'Naganallur', 'Naganallur', '2407190008', '', '1', 'upload_files/candidate_tracker/15014412860_CV20240607214914171.pdf', NULL, '1', '2024-07-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-19 05:49:29', 1, '2024-07-19 06:02:46', 0, NULL, 1),
(20356, 'Abinaya', '6', '8608956671', '', 'abinayamoorthy8@gmail.com', '2003-08-28', 20, '2', '2', 'Moorthy', 'Trade operator', 25000.00, 1, 0.00, 15000.00, 'Thirumudivakkam', 'Pallawaram', '2407190009', '50', '1', 'upload_files/candidate_tracker/46776187706_AbinayaresumeIN.pdf', NULL, '1', '2024-07-19', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performance and comunication is not good.also providing information is mismatch with her resume', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-19 05:52:00', 104, '2024-07-19 02:45:11', 0, NULL, 1),
(20357, 'Abimanu', '6', '9629367375', '7540011059', 'abimanu.sankaralingam@gmail.com', '2002-07-10', 22, '2', '2', 'Sankaralingam', 'Diver', 20000.00, 0, 0.00, 15000.00, 'Kattumannar koil', 'Pallavaram', '2407190010', '50', '1', 'upload_files/candidate_tracker/6012139620_Resume.pdf', NULL, '1', '2024-07-19', 0, '', '1', '104', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-19 05:55:55', 104, '2024-07-19 07:14:04', 0, NULL, 1),
(20358, 'S.Jayaseelan', '6', '9843013180', '', 'Jayaseelansk2000@gmail.com', '2000-01-18', 24, '2', '2', 'A.settu', 'Former', 30.00, 3, 0.00, 15.00, 'Vinnamangalam', 'Vinnamangalam', '2407190011', '50', '1', 'upload_files/candidate_tracker/60793995478_DOC20240718WA0001..pdf', NULL, '1', '2024-07-19', 0, '', '1', '104', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-19 05:57:32', 104, '2024-07-19 07:14:16', 0, NULL, 1),
(20359, 'BALAMURUGAN N', '20', '9087124402', '8015820402', 'Balajan.n24@gmail.com', '1994-08-24', 29, '2', '2', 'VASANTHI NATARAJAN', 'Home maker and vegetable business', 35000.00, 1, 12000.00, 17000.00, '13/6 moh abd sahib street chepack chennai-5', '13/6 Moh Abd Sahib Street Chepack Chennai-5', '2407190012', '50', '2', 'upload_files/candidate_tracker/96429913934_BalamuruganN7yoeResume2.pdf', NULL, '3', '2024-07-19', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected, ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-19 06:17:10', 104, '2024-07-19 03:47:29', 0, NULL, 1),
(20360, 'Dasari rachana', '5', '7893506774', '', 'rachanachinnu710@gmail.com', '1998-08-06', 25, '2', '2', 'Parents', 'Business', 30000.00, 1, 3.50, 4.50, 'Banglore', 'Banglore', '2407190013', '1', '2', 'upload_files/candidate_tracker/45893864763_Rachana2024resume.pdf', NULL, '1', '2024-07-19', 0, '', '3', '59', '2024-08-07', 348000.00, '', '3', '2025-01-11', '2', 'Communication Good Have Exp but not in the same Can  be trained her expectation is same Open for Insurance sales based on the discussion with the manager and with his approval we are providing the CTC', '5', '1', '1', '2', '2', '', '2', '2024-08-10', '2', '1', '', '', 'H1022', '', '55555', '5151', '2024-08-07', 1, '2024-07-19 06:18:18', 126, '2024-08-07 12:33:48', 0, NULL, 1),
(20361, 'DIVYA BHARATHI', '4', '9710099360', '9841544478', 'subanubaskar11@gmail.com', '2004-03-11', 20, '2', '2', 'Baskar', 'Leather worker', 26000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407190014', '50', '1', 'upload_files/candidate_tracker/57504359655_CamScanner0709202422.35.pdf', NULL, '1', '2024-07-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-19 06:25:18', 104, '2024-07-19 03:43:29', 0, NULL, 1),
(20362, 'Kiruthika', '6', '8825613779', '', 'kishanthisaratha@gmail.com', '2000-02-28', 24, '2', '1', 'Dilip kumar', 'Data associate', 300000.00, 2, 20000.00, 25000.00, 'Kanchipuram', 'Chrompet', '2407190015', '50', '2', 'upload_files/candidate_tracker/96081096733_KiruthikaUpdatedResume6.docx', NULL, '1', '2024-07-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-19 06:28:26', 104, '2024-07-19 03:44:15', 0, NULL, 1),
(20363, '', '0', '8667573371', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407190016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-19 06:41:23', 0, NULL, 0, NULL, 1),
(20364, 'Harishkumar.M', '6', '9080793060', '9840182586', 'harishkumaran862004@gmail.com', '2004-06-08', 20, '3', '2', 'Muthu kumaran .B', 'Gold smith', 100000.00, 1, 8000.00, 18000.00, '13/4 muniyappan st, old washermenpet chennai -21', 'Old washermentpet', '2407190017', '', '2', 'upload_files/candidate_tracker/85020506167_M.HarishKaumrResumelast21.pdf', NULL, '1', '2024-07-19', 0, '', '3', '59', '2024-08-23', 198000.00, '', '5', '1970-01-01', '1', 'Communication OK fresher for our roles,have exp in Medplus sales for 2yrs Can be trained in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-08-23', 1, '2024-07-19 06:54:43', 60, '2024-07-31 06:18:52', 0, NULL, 1),
(20365, '', '0', '7904140148', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407190018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-19 06:55:27', 0, NULL, 0, NULL, 1),
(20366, 'Josuvel', '6', '8248965815', '', 'Josuveljosuvel@mail.com', '1996-03-13', 28, '2', '2', 'Jothi', 'Labour', 25000.00, 1, 25000.00, 20000.00, 'Chennai', 'Perambur chennai', '2407190019', '50', '2', 'upload_files/candidate_tracker/32041304399_Resume4.pdf', NULL, '1', '2024-07-20', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-19 07:02:25', 104, '2024-07-20 03:43:24', 0, NULL, 1),
(20367, '', '0', '7695910623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407190020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-19 07:18:48', 0, NULL, 0, NULL, 1),
(20368, 'Abdul kalam', '6', '6382353068', '8667459548', 'Abdulkalam18092000@gamil.com', '2000-09-18', 23, '3', '2', 'Settu', 'Auto driver', 60000.00, 3, 13000.00, 20000.00, 'Old washermenpet', 'Old washermenpet', '2407190021', '', '2', 'upload_files/candidate_tracker/75571666985_RESUMEDOUBLEABDULKALAM.docx', NULL, '1', '2024-08-06', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate not suitable for sales profile , communication not good field work not interest', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-19 07:27:28', 104, '2024-08-06 04:28:19', 0, NULL, 1),
(20369, '', '0', '8925111210', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407190022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-19 07:35:25', 0, NULL, 0, NULL, 1),
(20370, 'E.Manikandan', '6', '6383867870', '9843520350', 'manikandanettiyappan4@gmail.com', '2002-10-01', 21, '2', '2', 'Deivanai', 'Concert work', 7000.00, 2, 0.00, 14000.00, 'Chengalpatt', 'Madipakam', '2407190023', '50', '1', 'upload_files/candidate_tracker/91568381252_manikandanettiyappan.pdf', NULL, '1', '2024-07-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selecteed for raja sekar,lets try 7 days and we will confirm CTC 16K', '5', '2', '', '1', '1', '', '2', '2024-07-23', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-07-19 07:42:39', 104, '2024-07-22 03:48:22', 0, NULL, 1),
(20371, 'Rahul D', '6', '9360183379', '7200712742', 'rahulskrillex111@gmail.com', '1999-08-16', 24, '2', '2', 'Alamelu D', 'House wife', 30000.00, 1, 15000.00, 18000.00, 'Perungalathur', 'Perungalathur', '2407190024', '50', '2', 'upload_files/candidate_tracker/9262816292_whiskeyresume.pdf', NULL, '1', '2024-07-19', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate performance and communication is not good.also his voice is not clear', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-19 07:53:14', 104, '2024-07-19 03:46:17', 0, NULL, 1),
(20372, 'anjali.t', '20', '6369787266', '', 'anjalithartiparthi2004@gmail.com', '2004-02-06', 20, '2', '2', 'adhinarayanan', 'security guard', 87000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2407190025', '50', '1', 'upload_files/candidate_tracker/63363297325_Anjaliupdatedresume1.pdf', NULL, '1', '2024-07-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-19 08:06:22', 1, '2024-07-19 08:14:25', 0, NULL, 1),
(20373, '', '0', '7601031362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407190026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-19 08:42:19', 0, NULL, 0, NULL, 1),
(20374, '', '0', '9884344611', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407190027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-19 01:01:09', 0, NULL, 0, NULL, 1),
(20375, 'ARUN KILITAS G', '6', '9345315790', '', 'aarun97019@gmail.com', '2001-12-22', 22, '2', '2', 'GNANA MUTHU, S', 'Saidapet', 45000.00, 1, 0.00, 25000.00, 'SOOSAIAPPAR PATTANAM, SIVAGANGA', 'Saidapet', '2407190028', '50', '1', 'upload_files/candidate_tracker/6084176195_GreyModernProfessionalCVResume202407182008120000.pdf', NULL, '3', '2024-07-20', 0, '', '3', '59', '2024-07-26', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok Have part time exp can be trained in our roles should check in 7 days and confirm', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-07-26', 1, '2024-07-19 01:06:30', 60, '2024-07-25 04:00:16', 0, NULL, 1),
(20376, '', '0', '9787874522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407190029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-19 04:20:12', 0, NULL, 0, NULL, 1),
(20377, '', '0', '7305351795', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407200001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-20 04:21:07', 0, NULL, 0, NULL, 1),
(20378, 'Prathipa.S', '6', '9176471238', '9941116511', 'prathipa976@gmail.com', '2004-01-13', 20, '3', '2', 'Selvam.E', 'Tailor', 10000.00, 0, 0.00, 15000.00, 'No.1kennady 2nd Street Mylapore', 'Mylapore', '2407200002', '', '1', 'upload_files/candidate_tracker/11776818584_prathipa.SResume.pdf', NULL, '1', '2024-07-20', 0, '', '1', '104', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-20 04:27:45', 104, '2024-07-25 06:54:48', 0, NULL, 1),
(20379, 'S.NANDHINI', '6', '8012650933', '', 'Nandhinisenthil2003@gmail.com', '1999-04-01', 25, '2', '2', 'J.Senthilkumar', 'No', 30000.00, 1, 0.00, 10000.00, 'Kumbakonam', 'Kumbakonam', '2407200003', '1', '1', 'upload_files/candidate_tracker/88389370557_NANDHINISRESUME1.pdf', NULL, '1', '2024-07-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '', '', '1970-01-01', 1, '2024-07-20 04:31:00', 126, '2024-07-20 06:04:06', 0, NULL, 1),
(20380, 'DINESHBHARATH G', '13', '6369645153', '', 'dineshbharathgeee@gmail.com', '1998-01-01', 26, '3', '2', 'Govindaraj K', 'Former', 15000.00, 0, 0.00, 18000.00, 'Madurai', 'Egmore', '2407200004', '', '1', 'upload_files/candidate_tracker/90714290993_newresume2.pdf', NULL, '1', '2024-07-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-20 04:42:02', 1, '2024-07-20 04:46:58', 0, NULL, 1),
(20381, 'Nishanth', '31', '9943179437', '', 'snishanth0410@gmail.com', '2001-10-04', 22, '2', '2', 'subramani', 'business', 30000.00, 1, 0.00, 200000.00, 'thiruvallur', 'thiruvallur', '2407200005', '27', '1', 'upload_files/candidate_tracker/44313405863_Resume.pdf', NULL, '1', '2024-07-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-20 05:04:25', 1, '2024-07-20 05:08:10', 0, NULL, 1),
(20382, 'K Subash', '6', '9150984736', '', 'subashk2162000@gmail.com', '2009-07-20', 0, '2', '2', 'J Kumar', 'Farmer', 35000.00, 3, 0.00, 18000.00, 'Chennai', 'Chennai', '2407200006', '50', '1', 'upload_files/candidate_tracker/82546556219_SUBASH2.pdf', NULL, '1', '2024-07-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shortlist for team once confirm DOJ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-07-20 05:08:27', 104, '2024-07-22 03:48:40', 0, NULL, 1),
(20383, 'Sriharini R', '6', '6381974376', '6384558853', 'harinis326@gmail.com', '2001-06-09', 23, '2', '2', 'Rengabalan T', 'Driver', 30000.00, 2, 0.00, 2.50, 'Guduvancheri, chennai', 'Chennai', '2407200007', '50', '1', 'upload_files/candidate_tracker/64791561554_Sriharini.pdf', NULL, '1', '2024-07-20', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interested in Non voice process ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-20 05:10:36', 104, '2024-07-20 03:04:28', 0, NULL, 1),
(20384, '', '0', '9080578739', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407200008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-20 05:56:11', 0, NULL, 0, NULL, 1),
(20385, '', '0', '8124705679', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-20 05:56:48', 0, NULL, 0, NULL, 1),
(20386, 'Shakil Ahamed', '4', '7094248006', '', 'shakilsha012@gmail.com', '2000-12-30', 23, '1', '2', 'Allabakesh', 'Laber', 15000.00, 2, 0.00, 20000.00, 'Vandavasi', 'Chennai', '2407200010', '', '1', 'upload_files/candidate_tracker/32322437718_SHAKILAHAMED.A.docx', NULL, '3', '2024-07-20', 0, 'ZHRS0724059', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-20 06:00:39', 1, '2024-07-20 06:03:54', 0, NULL, 1),
(20387, 'Dharini', '6', '7010980107', '9840277767', 'dharuanand2003@gmail.com', '2003-07-19', 21, '2', '2', 'ANANDAN', 'Business', 50000.00, 1, 0.00, 20000.00, '175/83 eldams road Teynampet chennai 18', 'Teynampet chennai 18', '2407200011', '50', '1', 'upload_files/candidate_tracker/62009330713_dharini.resume.pdf', NULL, '1', '2024-07-20', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok. she looking for system work,', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-20 06:01:48', 104, '2024-07-20 03:14:41', 0, NULL, 1),
(20388, 'sakthi saravanan', '6', '7812843600', '9962161801', 'Sakthisaravanan9962@gmail.com', '2003-07-07', 21, '6', '2', 's.lakshmi', 'housewife', 60000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2407200012', '', '1', 'upload_files/candidate_tracker/11976286860_sakthiresume4.pdf', NULL, '1', '2024-07-20', 0, '', '1', '104', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-20 06:02:46', 104, '2024-07-25 06:55:45', 0, NULL, 1),
(20389, 'mohamed jabir', '4', '8110883676', '', 'jabir25264@gmail.com', '2003-01-21', 21, '2', '2', 'ismath fathima', 'agriculture', 10000.00, 2, 0.00, 12000.00, 'mayiladuthurai', 'triplicane', '2407200013', '50', '1', 'upload_files/candidate_tracker/55642085955_JMOHAMEDJABIR.docx.pdf', NULL, '1', '2024-07-22', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-20 06:31:46', 104, '2024-07-22 03:51:15', 0, NULL, 1),
(20390, 'Pooja', '6', '9597102510', '9976672510', 'pooja16ueng158@gmail.com', '1999-05-01', 25, '2', '2', 'Balamurugan', 'Farmer', 30000.00, 1, 0.00, 15000.00, 'Villupuram', 'Ambattur', '2407200014', '50', '1', 'upload_files/candidate_tracker/20570556088_13copycopy.jpg.pdf', NULL, '1', '2024-07-20', 0, '', '1', '104', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-20 06:35:42', 104, '2024-07-25 06:57:01', 0, NULL, 1),
(20391, '', '0', '9791360039', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407200015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-20 06:45:02', 0, NULL, 0, NULL, 1),
(20392, 'mohammed asik', '4', '9489664894', '', 'asikm9453@gmail.com', '2002-08-28', 21, '2', '2', 'mohamed ismail', 'daily wages', 15000.00, 1, 0.00, 14000.00, 'ulundurpet', 'triplicane', '2407200016', '50', '1', 'upload_files/candidate_tracker/35377769072_ashikresume1.pdf', NULL, '1', '2024-07-22', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-20 06:47:38', 104, '2024-07-22 03:51:09', 0, NULL, 1),
(20393, 'mohamed nasrullah', '4', '0979136003', '', 'mohamednasrullah201@gmail.com', '2001-09-29', 22, '2', '2', 'sabeerullah', 'agriculture', 15000.00, 2, 0.00, 12000.00, 'mayiladuthurai', 'triplican', '2407200017', '50', '1', 'upload_files/candidate_tracker/96118325424_NASRULLAHRESUME.pdf', NULL, '1', '2024-07-22', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-20 06:52:20', 104, '2024-07-22 03:51:27', 0, NULL, 1),
(20394, 'Surya', '7', '7448463184', '9176595077', 'kingsurya7006@gmail.com', '1997-09-17', 26, '2', '2', 'Murugadoss', 'Metro security', 15.00, 1, 160000.00, 22000.00, 'no t6 srirangam Newtown 1 street wimconagar', 'Chennai', '2407200018', '50', '2', 'upload_files/candidate_tracker/64490593073_suryaresume.docx', NULL, '3', '2024-07-20', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-20 07:28:13', 1, '2024-07-20 07:33:00', 0, NULL, 1),
(20395, 'Vignesh Kumar DC', '25', '6379385142', '', 'dcvigneshkumar@gmail.com', '2003-11-11', 20, '3', '2', 'Chitra.D', 'Office employee', 15000.00, 0, 0.00, 15000.00, 'Thirunindravur', 'Thirunindravur', '2407200019', '', '1', 'upload_files/candidate_tracker/81662679158_ResumeVigneshKumar1.pdf', NULL, '1', '2024-07-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-20 09:12:29', 1, '2024-07-20 09:22:27', 0, NULL, 1),
(20396, 'dhanush j', '6', '9344598559', '', 'dhanushajay1552003@gmail.com', '2003-05-16', 21, '3', '2', 'jayavelu k', 'auto drive', 20000.00, 1, 0.00, 15000.00, 'chennai vyasarpadi', 'chennai vyasarpadi', '2407200020', '', '1', 'upload_files/candidate_tracker/8872765684_Resume2.pdf', NULL, '1', '2024-07-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-20 09:12:48', 104, '2024-07-20 03:22:05', 0, NULL, 1),
(20397, 'Myleri kokila', '6', '9989013297', '7013597260', 'kokilababu45@gmail.com', '2001-05-11', 23, '2', '2', 'Yagnesh', 'Any', 100000.00, 1, 18000.00, 22000.00, 'Bangalore', 'Bangalore', '2407210001', '1', '2', 'upload_files/candidate_tracker/10451939791_KokilaResumeE.pdf', NULL, '1', '2024-07-22', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SUGGESTED 20K CTC FOR DM', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-21 04:33:36', 126, '2024-07-22 04:35:03', 0, NULL, 1),
(20398, 'Sathish Kumar', '6', '8056516137', '7708604193', 'sathishmanickam29@gmail.com', '2003-04-29', 21, '1', '2', 'Manickam', 'Cooli', 92000.00, 1, 0.00, 15000.00, 'Ennore', 'Ennore', '2407220001', '', '1', 'upload_files/candidate_tracker/36376984866_M.SathishkumarResume1.pdf', NULL, '1', '2024-07-22', 0, '77901', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate interest to it job only just free time time to  chose sales job so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-22 04:31:53', 104, '2024-07-23 06:11:49', 0, NULL, 1),
(20399, 'karthik m', '5', '8072230671', '9080706642', 'alonekarthik07@gmail.com', '2000-11-05', 23, '2', '2', 'mohanraj', 'office assistant', 70000.00, 2, 21000.00, 22000.00, 'chennai', 'velachery', '2407220002', '50', '2', 'upload_files/candidate_tracker/64209875650_Untitled.pdf', NULL, '1', '2024-07-22', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Sustainability in any company', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-22 05:20:28', 104, '2024-07-22 03:52:03', 0, NULL, 1),
(20400, 'Saravanakumar', '6', '8110038233', '9585084869', 'mr.sk06071999@gmail.com', '1999-07-06', 25, '2', '2', 'Ramesh', 'Carpenter', 40000.00, 1, 0.00, 15000.00, 'Tiruvallur', 'Tnagar', '2407220003', '50', '1', 'upload_files/candidate_tracker/14218670795_saravanaKumar20242.docx', NULL, '1', '2024-07-22', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-22 05:22:38', 104, '2024-07-22 03:52:56', 0, NULL, 1),
(20401, 'Keerthika', '6', '7305631846', '', 'keerthikagokul2003@gmail.com', '2003-10-06', 20, '2', '2', 'Gokula Krishna', 'Business', 20000.00, 0, 17000.00, 20000.00, 'No 12kadumbadi Amman Kovil street', 'No 12 kadumbadi Amma Kovil street', '2407220004', '50', '2', 'upload_files/candidate_tracker/63704993768_AdobeScanFeb2220241.pdf', NULL, '3', '2024-07-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice and communication very good ad past 1 and half years exp for sales field so i will try for  7 days training period ad exp ctc is 16k ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-22 05:41:46', 104, '2024-07-22 03:53:34', 0, NULL, 1),
(20402, 'M.srinithi', '6', '9042344016', '7395927322', 'srinithimoorthy18@gmail.com', '2003-08-01', 20, '2', '2', 'Moorthy', 'Driver', 13000.00, 1, 0.00, 17000.00, '171/krishna raja puram colony , Mamamadurai', 'Ekkatuthangal, chennai.', '2407220005', '50', '1', 'upload_files/candidate_tracker/8130801631_Srinithi.Resume.pdf', NULL, '3', '2024-07-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales and not try to speak', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-22 05:44:05', 104, '2024-07-22 03:54:16', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20403, 'Dinesh Kumar . P', '4', '6369132733', '9344522890', 'dineshkumar73825662@gmail.com', '2002-11-14', 21, '2', '2', 'Father', 'Welding business', 50000.00, 1, 14500.00, 16000.00, 'Singa perumal kovil, chengalpattu', 'Singa perumal kovil', '2407220006', '50', '2', 'upload_files/candidate_tracker/31415052717_1700567433.pdf', NULL, '1', '2024-07-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-22 05:44:46', 1, '2024-07-22 06:14:58', 0, NULL, 1),
(20404, '', '0', '9176581706', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407220007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-22 05:54:36', 0, NULL, 0, NULL, 1),
(20405, 'C. Kavitha', '6', '7702903138', '9381443152', 'kavithakavi5144@gmail.com', '2003-04-26', 21, '2', '2', 'C. Eswara', 'Farmer', 5.50, 2, 0.00, 17.00, 'Chittoor district, AP-517432', 'Marathalli, banglore', '2407220008', '1', '1', 'upload_files/candidate_tracker/80250252148_kavitharesumemy1.pdf', NULL, '1', '2024-07-22', 0, '', '3', '59', '2024-07-29', 174000.00, '', '5', '1970-01-01', '2', 'Communciation Ok Fresher for RE Roles need to be trained a lot can analyse in 7 days and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-07-29', 1, '2024-07-22 06:01:03', 60, '2024-07-25 04:05:17', 0, NULL, 1),
(20406, 'Venkatesan C', '2', '6381881005', '', 'venkatesanit2020@gmail.com', '2002-06-04', 22, '3', '2', 'Chandirasekaran R', 'Daily wages', 12000.00, 2, 0.00, 15000.00, 'Tiruvannamalai', 'Chennai', '2407220009', '', '1', 'upload_files/candidate_tracker/40429295351_VenkatesanCupdatedresume.pdf', NULL, '1', '2024-07-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-22 07:03:18', 104, '2024-07-22 03:54:51', 0, NULL, 1),
(20407, 'SAMSUDEEN SHA A', '2', '9360608380', '6381881005', 'samsudeenshait2020@gmail.com', '2003-06-19', 21, '3', '2', 'APPAS S', 'Teacher', 40000.00, 1, 0.00, 15000.00, 'Tiruchirapalli', 'Chennai', '2407220010', '', '1', 'upload_files/candidate_tracker/81559814313_SAMSUDEENUpdatedResume.pdf', NULL, '1', '2024-07-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-22 07:04:05', 104, '2024-07-22 03:54:59', 0, NULL, 1),
(20408, 'Vijayalakshmi K', '13', '8754144922', '9489537930', 'vijayalakshmi4142002@gmail.com', '2002-04-14', 22, '3', '2', 'Karuppasamy M', 'Coolie', 30000.00, 2, 0.00, 20000.00, 'Sivakasi,Chennai', 'Anna nagar, Chennai', '2407220011', '', '1', 'upload_files/candidate_tracker/6701387476_VIJAYALAKSHMIKRESUME.pdf', NULL, '1', '2024-07-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-22 07:18:12', 104, '2024-07-22 03:55:11', 0, NULL, 1),
(20409, 'Nishalini V', '31', '6385887452', '8220549972', 'Nishalinimani10@gmail.com', '1999-08-10', 24, '3', '2', 'Veeramani ayyasamy', 'Agriculture', 35000.00, 1, 0.00, 20000.00, 'peravurani ,Thanjavur(district)-614623', 'Anna nagar, Chennai', '2407220012', '', '1', 'upload_files/candidate_tracker/74697411099_nishaliniv6.pdf', NULL, '1', '2024-07-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-22 07:26:55', 104, '2024-07-22 03:55:23', 0, NULL, 1),
(20410, '', '0', '9360876456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407220013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-22 08:38:20', 0, NULL, 0, NULL, 1),
(20411, 'Shaik karishmabanu', '5', '9063761344', '7780766403', 'Karishmabanu925@gmail.com', '2001-07-13', 23, '2', '2', 'D/o abdul razak', 'Chef', 3.00, 4, 26000.00, 26000.00, 'Ap madanpalli', 'Gb palyaa Bangalore', '2407220014', '1', '2', 'upload_files/candidate_tracker/35401886905_Karishmaresume.doc', NULL, '2', '2024-07-22', 0, '', '3', '59', '2024-07-29', 267000.00, '', '4', '2024-12-18', '2', 'Selected for RM Role Have 1.5 yrs exp in telesales can give a try in our roles and can be trained should analyse in 7 days', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', 'H1022', '', '55555', '5151', '2024-07-29', 1, '2024-07-22 09:24:30', 126, '2024-08-05 04:06:42', 0, NULL, 1),
(20412, '', '0', '8247759887', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407220015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-22 03:32:58', 0, NULL, 0, NULL, 1),
(20413, 'Policharla sandeep leo', '6', '6379805945', '9176234248', 'Policharlasandeepleo@gmail.com', '2003-06-05', 21, '2', '2', 'Sreenivasalu p', 'Marketing', 30000.00, 1, 0.00, 20000.00, 'Kolathur', 'Kolathur', '2407220016', '56', '1', 'upload_files/candidate_tracker/22403378956_SandeepLeocv.pdf', NULL, '1', '2024-07-23', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interviewed by charless ,as discussednwith charless, candidate performance and communication is very low,also slow listerner', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-22 04:28:19', 104, '2024-07-23 03:26:46', 0, NULL, 1),
(20414, 'Nalin Pradeep', '4', '9360201193', '', 'nalinpradeep2222@gmail.com', '2001-09-22', 22, '2', '2', 'Anbazhagan', 'Business', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2407230001', '50', '1', 'upload_files/candidate_tracker/80776520421_NalinResumeV4Final.doc', NULL, '1', '2024-07-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-23 04:46:54', 104, '2024-07-23 12:34:35', 0, NULL, 1),
(20415, 'Kaviyasree L', '4', '9361373965', '', 'kaviyasreelogeswaran02@gmail.com', '2002-08-05', 21, '2', '2', 'P Logeswaran', 'Clerk', 20000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2407230002', '50', '1', 'upload_files/candidate_tracker/94547313746_KSResume.pdf', NULL, '1', '2024-07-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-23 04:47:23', 104, '2024-07-23 12:34:54', 0, NULL, 1),
(20416, 'Mohamed kani', '6', '9361377191', '8825924986', 'mohamedkani657@gmail.com', '2002-10-17', 21, '2', '2', 'Abbas', 'Driver', 35000.00, 2, 0.00, 300000.00, 'Puliyankudi, tenkasi', 'Alandhur, chennai', '2407230003', '50', '1', 'upload_files/candidate_tracker/91541111071_MinimalistCVResume11.pdf', NULL, '1', '2024-07-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'dress cide and attitude was good but slang has to be change so lets try 7 days and we will confirm      CTC 16K Immediate joining', '5', '1', '', '1', '8', '', '2', '2024-07-26', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-23 04:53:42', 104, '2024-07-23 12:46:18', 0, NULL, 1),
(20417, '', '0', '8778209219', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407230004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-23 04:53:47', 0, NULL, 0, NULL, 1),
(20418, 'arun', '5', '8825828879', '8056006726', 'arunsam0046@gmail.com', '2001-11-03', 22, '2', '1', 'thara', 'maid', 40000.00, 1, 23000.00, 30000.00, 'watkins street perambur', 'perambur', '2407230005', '56', '2', 'upload_files/candidate_tracker/16511161004_Resume.pdf', NULL, '1', '2024-07-23', 15, '', '3', '59', '2024-08-05', 255000.00, '', '1', '1970-01-01', '1', 'Communication Ok Earlier attended the interview on April 2024 and got selected  for RE but not joined at the time', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '2024-08-05', 1, '2024-07-23 04:55:29', 104, '2024-08-05 05:31:46', 0, NULL, 1),
(20419, 'Yasar arabath', '6', '8825924986', '9361377191', 'yasararabath087@gmail.com', '2002-01-21', 22, '2', '2', 'Thivan mydeen', 'Driver', 30000.00, 2, 0.00, 300000.00, 'Puliyangudi,tenkasi', 'Alandur,chennai', '2407230006', '50', '1', 'upload_files/candidate_tracker/3748310002_yasarresume.pdf1.pdf.pdf', NULL, '1', '2024-07-23', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok. communication not good. confident very low. reject the candidate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-23 04:55:58', 104, '2024-07-23 12:44:59', 0, NULL, 1),
(20420, 'S LOKESH', '5', '8919747703', '7207402033', 'slokiraina1998@gmail.com', '1998-10-18', 25, '2', '2', 'N SURESH', 'Weaver', 20000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2407230007', '50', '2', 'upload_files/candidate_tracker/64892696147_LokeshResumenew.pdf', NULL, '1', '2024-07-23', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lokesh Selected for Manikandan Team. Offered 3L CTC and has Laptop and Immediate Joiner.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-07-23 05:02:53', 104, '2024-07-23 12:48:16', 0, NULL, 1),
(20421, 'r srinivas', '4', '9884670432', '9840533216', 'Srinivasravissk@gmail.com', '2001-07-25', 22, '2', '2', 'ravi', 'private', 60000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2407230008', '50', '1', 'upload_files/candidate_tracker/76381623588_creativehandshrSrinivasResume.pdf', NULL, '1', '2024-07-24', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable for sales. lagging in comminication', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-23 05:08:52', 104, '2024-07-24 03:06:12', 0, NULL, 1),
(20422, 'G.Bharath', '6', '7871744017', '8056265139', 'gbharath780@gmail.com', '2001-09-26', 22, '6', '2', 'Gajendran', 'School staff', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2407230009', '', '1', 'upload_files/candidate_tracker/29864505861_Bharathresume.pdf', NULL, '1', '2024-07-23', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is good Candidate learn for Coding once complete going to it and not willing to work week end days ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-23 05:26:58', 104, '2024-07-23 12:53:14', 0, NULL, 1),
(20423, 'deepak', '4', '9176594476', '9094606479', 'deepakcandy136@gmail.com', '2000-08-08', 23, '2', '2', 'selva ganesh', 'mtc conductor', 75000.00, 1, 0.00, 13500.00, 'chennai', 'perumbur', '2407230010', '50', '1', 'upload_files/candidate_tracker/16108878356_Cv.pdf', NULL, '1', '2024-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-23 05:56:28', 1, '2024-07-23 06:00:05', 0, NULL, 1),
(20424, 'Karthika', '28', '7598170992', '', 'B.k.skarthika@gmail.com', '1996-07-09', 28, '2', '2', 'Palraj', 'Driver', 50000.00, 2, 0.00, 25000.00, 'trichy', 'Chennai', '2407230011', '50', '1', 'upload_files/candidate_tracker/45158795938_karthikaresume07072024.pdf', NULL, '1', '2024-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-23 06:09:33', 1, '2024-07-23 06:21:14', 0, NULL, 1),
(20425, 'SYED RIYAZUDDIN N', '5', '6300660380', '9363970117', 'ispaderaja007@gmail.com', '1999-12-15', 24, '1', '2', 'SYED NIZAMUDDIN', 'Business', 35000.00, 1, 30000.00, 37000.00, 'THIRUVALLUR', 'THIRUVALLUR', '2407230012', '', '2', 'upload_files/candidate_tracker/51976672898_Resume24332..pdf', NULL, '1', '2024-07-23', 90, 'P1420', '3', '59', '2024-08-22', 450000.00, '', '3', '2024-12-31', '1', 'Communication Ok Have relevant Insurance Exp but in general can be trained internal reference Need to check and confirm in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '2024-08-22', 1, '2024-07-23 06:20:25', 104, '2024-08-30 06:32:56', 0, NULL, 1),
(20426, 'Sanjay. M', '6', '9514794260', '9514794220', 'San14022001jay14022001@gmail.com', '2001-02-14', 23, '2', '2', 'Uma. M', 'House wife', 20000.00, 1, 0.00, 20000.00, 'Sathiyamorrthy nagar vyasarpadi Chennai 39', 'Sathiyamorrthy nagar vyasarpadi Chennai', '2407230013', '56', '1', 'upload_files/candidate_tracker/40275999849_AdobeScanJul232024.pdf', NULL, '1', '2024-07-23', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'time pass', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-23 06:22:00', 104, '2024-07-23 03:28:13', 0, NULL, 1),
(20427, 'Thiru Pugazh S', '4', '8610323499', '', 'Thirupugazh2003@gmail.com', '2003-06-12', 21, '3', '2', 'Sachudhanandha Yokeeshwaran E', 'Librarian', 20000.00, 2, 0.00, 15000.00, 'Sriperumbudur', 'Sriperumbudur', '2407230014', '', '1', 'upload_files/candidate_tracker/70573988876_AdobeScan23Jul2024.pdf', NULL, '1', '2024-07-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-23 07:08:50', 104, '2024-07-23 03:25:14', 0, NULL, 1),
(20428, 'Kishore m', '6', '7981164736', '8019794791', 'kk0977183@gmail.com', '2002-07-09', 22, '2', '2', 'Mohan', 'Self employed', 85000.00, 1, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2407230015', '50', '1', 'upload_files/candidate_tracker/73016714285_MKISHORERESUME2.pdf', NULL, '1', '2024-07-24', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performance and communiation is little bit good,but long distance sustainable doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-23 07:44:01', 104, '2024-07-24 03:07:36', 0, NULL, 1),
(20429, 'rajesh n', '6', '9345485039', '', 'nvrajeshn@gmail.com', '2002-01-06', 22, '2', '2', 'nagesh', 'farmer', 25000.00, 2, 0.00, 15000.00, 'hosur', 'ponamalee', '2407230016', '42', '1', 'upload_files/candidate_tracker/85531610493_WhiteSimpleStudentCVResume202312031658350000.pdf202403302229420000.pdf', NULL, '1', '2024-07-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-23 07:50:37', 1, '2024-07-23 07:53:24', 0, NULL, 1),
(20430, 'Gowtham B', '6', '9087365452', '9994451245', 'gowthamrithish5@gmail.com', '2001-07-10', 23, '2', '2', 'Sumathi', 'Housewife', 20000.00, 1, 0.00, 25000.00, 'Chengalpattu , 603111', 'Bomsandara', '2407230017', '1', '1', 'upload_files/candidate_tracker/86941072992_GowthamBResume.pdf', NULL, '1', '2024-07-23', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, Communication is OK have doubt with the salary part need to discussed', '5', '1', '', '2', '2', '', '2', '2024-07-30', '3', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-23 08:52:51', 131, '2024-07-30 11:11:10', 0, NULL, 1),
(20431, 'Sharavanan AK', '6', '7550397363', '', 'aksharavanan.devi@gmail.com', '2003-02-20', 21, '2', '2', 'Kandaswamy', 'Business', 40000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2407230018', '50', '1', 'upload_files/candidate_tracker/89032232929_SharavananResume1.pdf', NULL, '1', '2024-07-24', 0, '', '3', '59', '2024-07-26', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Fresher for our role not much job needed person family has own business for initial period he is open to work Sport player \nNeed to analyse in 7 days training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-07-26', 1, '2024-07-23 08:55:09', 60, '2024-07-25 04:37:11', 0, NULL, 1),
(20432, 'Balaji', '6', '7358628311', '7299891360', 'bssbala014@gmail.com', '1998-01-18', 26, '2', '2', 'Subramani', 'Private', 15000.00, 1, 15000.00, 16000.00, 'Mugappair east', 'Mugappair east', '2407230019', '45', '2', 'upload_files/candidate_tracker/651875969_TWOPAGEsRESUME1balaji.s31.pdf', NULL, '1', '2024-07-23', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too slow and not fir for sales,dress code also wrong', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-23 09:42:21', 104, '2024-07-23 03:25:38', 0, NULL, 1),
(20433, 'Dinakaran PRABAKARAN', '6', '9840729680', '8610629793', 'dinakaranpraba@gmail.com', '2003-06-12', 21, '2', '2', 'PRABAKARAN', 'Labour', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2407230020', '45', '1', 'upload_files/candidate_tracker/75146095403_Dinakaran.pdf', NULL, '1', '2025-01-22', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'silent person. not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-23 07:03:19', 154, '2025-01-22 02:43:01', 0, NULL, 1),
(20434, 'G Anish', '8', '9346483810', '', 'ga7678864@gmail.com', '2001-09-11', 22, '2', '2', 'Govindasamy', 'Job', 10000.00, 1, 0.00, 20000.00, 'Chittoor', 'Chittoor', '2407240001', '39', '1', 'upload_files/candidate_tracker/9172887718_AnishGResume.1.pdf', NULL, '1', '2024-07-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-24 04:24:07', 104, '2024-07-24 03:08:35', 0, NULL, 1),
(20435, 'aaqil ahamed', '5', '9715150080', '8056630849', 'aaquilahamed5@gmail.com', '2002-05-05', 22, '2', '2', 'hithaythul mohamed rabick', 'busin', 200000.00, 1, 0.00, 18.00, 'madurai', 'chennaj', '2407240002', '50', '1', 'upload_files/candidate_tracker/9652122681_Resumae.pdf', NULL, '2', '2024-07-24', 0, '', '3', '59', '2024-07-26', 240000.00, '', '3', '2025-01-31', '1', 'Fresher Have an interest to start his own business in future he is open to learn the sales can be trained in our roles need ot check and confirm in 7 daysw training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '2024-07-26', 1, '2024-07-24 05:09:51', 60, '2024-07-27 06:37:55', 0, NULL, 1),
(20436, 'Chandru', '6', '9994623707', '7708754395', 'chandrurenga707@gmail.com', '2003-10-09', 20, '2', '2', 'Rengaraj', 'Draiver', 20000.00, 1, 0.00, 250000.00, 'Trichirapalli', 'Chennai', '2407240003', '50', '1', 'upload_files/candidate_tracker/89441538017_resji100r8gxZpUCkMgVjIkTmzogclb4Q1521.pdf', NULL, '1', '2024-07-24', 0, '', '3', '59', '2024-07-26', 192000.00, '', '3', '2024-09-30', '2', 'Communication Ok Fresher have worked in a company for a month madurai not much comfrt in the location and transport 5050 need to check in 7 days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '2024-07-26', 1, '2024-07-24 05:35:45', 60, '2024-07-25 05:36:22', 0, NULL, 1),
(20437, '', '0', '9150661472', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407240004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-24 05:39:37', 0, NULL, 0, NULL, 1),
(20438, 'B SANJAY', '6', '7010685619', '', 'Sanjaymapa8@gmail.com', '2004-12-19', 19, '2', '2', 'G Baburaj', 'Telecallers', 82000.00, 1, 0.00, 16500.00, 'Balakrishnan street, vyasarpadi, Chennai', 'Balakrishnan Street, Vyasarpadi, Chennai', '2407240005', '39', '1', 'upload_files/candidate_tracker/86094508563_SANJAY.pdf', NULL, '1', '2024-07-24', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-24 05:54:18', 104, '2024-07-24 03:12:16', 0, NULL, 1),
(20439, 'suganya', '5', '7550128618', '', 'sugan.balu12@gmail.com', '1990-09-20', 33, '2', '2', 'balasubramani', 'no', 150000.00, 1, 6.48, 6.75, 'chennai', 'chennai', '2407240006', '1', '2', 'upload_files/candidate_tracker/33731690643_ResumeNonVoice.pdf', NULL, '1', '2024-07-24', 30, '', '3', '59', '2024-08-07', 375000.00, '', '5', '1970-01-01', '1', 'Selected for E Sales Good communication Can give a try in our Esales Based on the commitment we have given her the opportunity can give a try in our role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55560', '5151', '2024-08-07', 1, '2024-07-24 06:03:15', 60, '2024-08-03 12:18:26', 0, NULL, 1),
(20440, 'THIBASH', '6', '8489024842', '8870020991', 'thibashthirumalai@gmail.com', '2002-10-18', 21, '3', '2', 'THIRUMALAI', 'Formar', 160000.00, 2, 0.00, 3.00, 'Villupuram', 'Chennai', '2407240007', '', '1', 'upload_files/candidate_tracker/76875260433_ThibashFrontEndDeveloperResume.pdf', NULL, '1', '2024-07-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-24 06:13:14', 104, '2024-07-24 03:15:50', 0, NULL, 1),
(20441, 'Sangeetha Munuswamy', '4', '9600110494', '', 'sangeethajai7@gmail.com', '1999-10-29', 24, '3', '1', 'Dillibabu', 'HR Assistant', 18000.00, 1, 17000.00, 22000.00, 'Chennai', 'Chennai', '2407240008', '', '2', 'upload_files/candidate_tracker/95405287844_SangeethaResume2.pdf', NULL, '1', '2024-07-24', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-24 06:14:14', 1, '2024-07-24 06:19:22', 0, NULL, 1),
(20442, 'SANKULA JAGADEESH KUMAR', '6', '9182931975', '', 'sjkumar0508@gmail.com', '1999-08-05', 24, '2', '2', 'SANKULA SRINIVASA RAO', 'LECTURER', 40000.00, 0, 0.00, 19000.00, 'Madiwala ,sri krishna hotel', 'Banglore', '2407240009', '1', '1', 'upload_files/candidate_tracker/88610486996_sjkresume.pdf', NULL, '1', '2024-07-24', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-24 06:20:13', 126, '2024-07-24 02:53:53', 0, NULL, 1),
(20443, 'Jeevanantham.M', '6', '9940623088', '9962144392', 'jeevajithu0607@gmail.com', '2001-07-06', 23, '1', '2', 'Murugan .A', 'Coolie', 15000.00, 1, 15000.00, 16000.00, 'No : 30/44, Manjakollai St Aminjikarai Ch 29', '30/44,Manjakollai Street Aminjikarai Chennai 29', '2407240010', '', '2', 'upload_files/candidate_tracker/38092445932_jeevanantham.docx6.pdf', NULL, '1', '2024-07-24', 30, '77878', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Already working in DTH Customer support not come formal wear communication and convincing wise low ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-24 07:19:48', 104, '2024-07-24 03:21:27', 0, NULL, 1),
(20444, '', '0', '9514466618', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407240011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-24 08:19:25', 0, NULL, 0, NULL, 1),
(20445, 'Akash', '6', '9626843942', '', 'akashsak08@gmail.con', '2002-01-25', 22, '2', '2', 'Selvam S', 'Driver', 25000.00, 1, 0.00, 15000.00, 'Ariyalur', 'Chennai', '2407240012', '50', '1', 'upload_files/candidate_tracker/11893693668_Akash.pdf', NULL, '1', '2024-07-24', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate only looking for voice process only not interest for field work so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-24 08:20:25', 104, '2024-07-24 03:22:06', 0, NULL, 1),
(20446, '', '0', '8431785832', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407240013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-24 09:53:46', 0, NULL, 0, NULL, 1),
(20447, 'Lavanya', '6', '7780186022', '', 'K.laviph18@gmail.com', '1999-07-20', 25, '2', '2', 'Narada Reddy', 'Singamvari palli', 25000.00, 1, 22000.00, 30000.00, '1-80, singamvari palli, Gurram konda (m),', 'Marathahalli', '2407240014', '1', '2', 'upload_files/candidate_tracker/81346767531_lavanyapdf.pdf', NULL, '1', '2024-07-25', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need travelling expenses  and lack of interest', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-24 12:09:45', 126, '2024-07-25 01:29:20', 0, NULL, 1),
(20448, 'Nagoor Noufal Shareek A', '4', '9962267029', '9382870615', 'www.nagoornoufal7@gmail.com', '2002-08-15', 21, '2', '2', 'Abdul Majeeth', 'Screen Printing', 15000.00, 1, 0.00, 13000.00, 'RA puram Chennai 28', 'RA puram.  Chennai 28', '2407240015', '50', '1', 'upload_files/candidate_tracker/59319053376_myResume2.pdf', NULL, '1', '2024-07-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-24 12:40:54', 1, '2024-07-24 12:46:47', 0, NULL, 1),
(20449, 'Madhumitha R', '4', '7548899236', '', 'madhumitharamachandiran0310@gmail.com', '2002-10-03', 21, '3', '2', 'Ramachandran V', 'Farmer', 480000.00, 2, 0.00, 20000.00, 'Kumbakonam', 'Sriperumbudur, chennai', '2407240016', '', '1', 'upload_files/candidate_tracker/60127196616_DOC20240701WA0002..pdf', NULL, '1', '2024-07-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-24 01:01:53', 1, '2024-07-24 01:05:01', 0, NULL, 1),
(20450, 'MENISHA GS', '6', '9363119474', '9952210911', 'Gsmenishamenisha@gmail.com', '2001-11-09', 22, '4', '2', 'SARASWATHI G', 'Flower shop', 180000.00, 1, 0.00, 2.00, 'Chennai 600115', 'Neelankarai,Chennai.', '2407240017', '', '1', 'upload_files/candidate_tracker/80368589596_DOC20240724WA0013..PDF', NULL, '1', '2024-07-25', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performed well and good,her communication flow is good,but she is more intrested in non-voice process also long distance sustainable doubt.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-24 02:12:41', 104, '2024-07-25 11:30:22', 0, NULL, 1),
(20451, 'Narasannagari Kusuma', '6', '9985354073', '', 'kusumanarasannagari470@gmail.com', '2001-08-26', 22, '2', '2', '9381887262', 'Farmer', 5000.00, 1, 250000.00, 400000.00, 'Yellutla village, Anantapur district. 515425', 'Marthahalli banglore', '2407250001', '1', '2', 'upload_files/candidate_tracker/83778224666_DocumentfromNKusuma.pdf', NULL, '1', '2024-07-25', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Salary Expectation is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-25 02:17:34', 126, '2024-07-25 01:31:10', 0, NULL, 1),
(20452, 'Abishek', '6', '8903278275', '', 'abisheksupraath2001@gmail.com', '2001-02-07', 23, '2', '2', 'Supraath', 'Self employed', 25000.00, 0, 0.00, 20000.00, 'Erode', 'Erode', '2407250002', '50', '1', 'upload_files/candidate_tracker/58277228585_Abishekresume.pdf', NULL, '1', '2024-07-25', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not so good at communication', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-07-25 05:10:11', 104, '2024-07-25 11:31:24', 0, NULL, 1),
(20453, 'V.Rajkumar', '5', '6369771320', '', 'vrj0598@gmail.com', '1998-05-04', 26, '4', '2', 'v.banumathi', '-', 40000.00, 2, 0.00, 1.50, 'arakkonam', 'arakkonam', '2407250003', '', '1', 'upload_files/candidate_tracker/52150272307_RAJKUMAR.V.docx', NULL, '1', '2024-07-25', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-07-25 05:12:46', 104, '2024-07-25 11:32:14', 0, NULL, 1),
(20454, 'Praveen Kumar. S', '5', '8825878939', '9790213278', 'Praveensankar9790@gmail.com', '2000-07-26', 23, '3', '2', 'Parents', 'Parents', 50000.00, 1, 0.00, 18000.00, '# 613 kalambur road street chinna santhavasal', 'Sathya nagar green ways road Chennai', '2407250004', '', '1', 'upload_files/candidate_tracker/50272138162_praveenkumaricici.docx', NULL, '1', '2024-07-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate past 6 months work for sales and field work  , communication and voice also ok so try for 7 days training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-25 05:26:10', 104, '2024-07-25 11:33:01', 0, NULL, 1),
(20455, 'SRIHARINI J', '6', '9442630117', '', 'sriharinijayakumar14@gmail.com', '2002-03-14', 22, '3', '2', 'Jayakumar G', 'coolie', 5000.00, 1, 0.00, 20000.00, 'palacode tk,Dharmapuri dt', 'Moggapair east', '2407250005', '', '1', 'upload_files/candidate_tracker/76857875848_SRIHARINICURRICULUMVITAE.pdf', NULL, '1', '2024-07-25', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'having thought for another job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-07-25 05:41:14', 104, '2024-07-25 11:35:32', 0, NULL, 1),
(20456, '', '0', '8870789278', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407250006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-25 05:59:38', 0, NULL, 0, NULL, 1),
(20457, 'Rajesh. J', '5', '9345701348', '9360337058', 'raju102057@gmail.com', '2004-07-20', 20, '1', '2', 'Jayakumar. N', 'Fish seller', 15000.00, 2, 0.00, 16000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2407250007', '', '1', 'upload_files/candidate_tracker/4878376725_DOC20240524WA0001.202405241321240000.pdf202406011004000000.pdf', NULL, '1', '2024-07-25', 0, '55810', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-25 06:21:25', 104, '2024-07-25 03:56:59', 0, NULL, 1),
(20458, 'Pajarla Devaraj', '6', '6374846435', '8939500367', 'dr9909954@gmail.com', '2004-02-23', 20, '2', '2', 'P Madhavarao', 'Driver', 20000.00, 1, 0.00, 20000.00, 'No.84 Balaji naga, Anuppambattu,Chennai-601203', 'No.84 Balaji nagar, Anuppambattu,chennai-601203', '2407250008', '1', '1', 'upload_files/candidate_tracker/51851143110_Devarajresume.pdf', NULL, '1', '2024-07-25', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales and not fit field work', '5', '1', '', '1', '8', '', '2', '2024-08-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-07-25 06:25:36', 104, '2024-07-25 12:13:33', 0, NULL, 1),
(20459, 'Khaliludhin', '6', '9342996046', '9176024372', 'Khaliludhin0@gmail.com', '2004-07-13', 20, '2', '2', 'Yasmeen begum', 'Beautician', 15000.00, 2, 0.00, 20000.00, 'No 3/1 Mgr Salai Chinna Mathur Manali Chennai -68', 'No 3/1 mgr salai chinna mathur manali chennai -68', '2407250009', '1', '1', 'upload_files/candidate_tracker/35328500224_1718878410542.pdf', NULL, '1', '2024-07-25', 0, '', '3', '59', '2024-08-01', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok Distance should check Can give a try and analyse in 7 days and confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1066', '5151', '2024-08-01', 1, '2024-07-25 06:29:22', 60, '2024-07-27 06:50:26', 0, NULL, 1),
(20460, 'Mohanapriya k', '5', '9943416276', '9786223484', 'Mohanapriya1052003@gmail.com', '2003-05-10', 21, '1', '2', 'Krishnamoorthy p', 'Driver', 17000.00, 2, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2407250010', '', '1', 'upload_files/candidate_tracker/7103033347_DOC20240524WA0001.202405241321240000.pdf', NULL, '1', '2024-07-25', 0, '55810', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-25 06:48:44', 104, '2024-07-25 03:56:51', 0, NULL, 1),
(20461, '', '0', '9042700922', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407250011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-25 07:49:56', 0, NULL, 0, NULL, 1),
(20462, 'Subha', '4', '9047226583', '', 'subhamayilsamy22@gmail.com', '2004-08-22', 19, '4', '2', 'Mayilsamy', 'Cooli', 7000.00, 1, 0.00, 12000.00, 'Ottakara Street East gate Thanjavur', 'Thanjavur', '2407250012', '', '1', 'upload_files/candidate_tracker/19151931744_DOC20240428WA0015..pdf', NULL, '1', '2024-07-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit for telesales', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-25 09:04:32', 104, '2024-07-26 03:53:11', 0, NULL, 1),
(20463, 'S.Saranya', '4', '6384644922', '', 'Saranyasaranya69059@gmail.com', '2002-10-30', 21, '4', '2', 'Sivakumar', 'Cooli', 20000.00, 2, 0.00, 12000.00, 'Anappanpettai', 'ANAPPANPETTAI', '2407250013', '', '1', 'upload_files/candidate_tracker/1285792898_DOC20240511WA0000..pdf', NULL, '1', '2024-07-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit fortelesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-25 09:47:10', 104, '2024-07-26 03:57:49', 0, NULL, 1),
(20464, 'Thangmeingam T', '6', '7005977850', '7085677328', 'Thangmeingamt@gmail.com', '1997-01-16', 27, '2', '2', 'Ngaraipam T', 'Cultivator', 80000.00, 4, 0.00, 20000.00, 'Chingjaroi Khullen', 'Bangalore', '2407250014', '1', '1', 'upload_files/candidate_tracker/90402338845_THANGMEINGAMT.pdf', NULL, '1', '2024-07-26', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-25 11:21:41', 126, '2024-07-26 06:16:14', 0, NULL, 1),
(20465, 'N.ASIR KINGSTON', '4', '8248975250', '6383342957', 'asirkingston4@gmail.com', '2000-12-04', 23, '4', '2', 'NEWTON DEVANAYAGAM', 'Welder', 45000.00, 2, 0.00, 15000.00, 'No/76. M.chavadi vadivasal Bazar Street Thanjavur', 'Thanjavur', '2407250015', '', '1', 'upload_files/candidate_tracker/55123352710_AsirResume.pdf', NULL, '1', '2024-07-26', 0, '', '3', '59', '2024-07-29', 168000.00, '', '', '2024-08-16', '1', 'Fresher for our roles have 1 yr exp in Cashier role Can be trained in our roles need to analyse in 7 days training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '2024-07-29', 1, '2024-07-25 11:29:41', 104, '2024-07-29 06:29:08', 0, NULL, 1),
(20466, 'Joshini Johnson', '11', '8610474985', '9094783117', 'joshinijohn27@gmail.com', '1999-12-27', 24, '6', '2', 'No', 'HR recruiter', 60000.00, 1, 0.00, 250000.00, 'CHENNAI', 'CHENNAI', '2407260001', '', '2', 'upload_files/candidate_tracker/2219065818_JoshiniAResume1.pdf', NULL, '1', '2024-07-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-26 04:30:18', 104, '2024-07-26 04:24:14', 0, NULL, 1),
(20467, 'BALAJI V', '6', '6383451554', '', 'balajivasu6702@gmail.com', '2002-07-06', 22, '2', '2', 'VASUDEVAN M', 'UNEMPLOYED- FRESHER', 500000.00, 1, 0.00, 3.00, 'No.9 Mahatma Gandhi Street senthil nagar', 'Chennai', '2407260002', '42', '1', 'upload_files/candidate_tracker/87615305766_BALAJI.pdf', NULL, '1', '2024-07-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is not good. will not sustain longer', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-07-26 04:43:27', 104, '2024-07-26 04:23:26', 0, NULL, 1),
(20468, 'P D Giriprasath', '6', '9345816158', '6383667336', 'giriprasathpd@gmail.com', '2003-10-06', 20, '2', '2', 'P K Dhananjayan', 'Farmer', 15.00, 1, 0.00, 2.50, 'B N palayam via Chettikuppam Gudiyattam vellore', 'VGP Selva Nagar 3rd Street, Velachery Chennai', '2407260003', '50', '1', 'upload_files/candidate_tracker/31433895375_giripdfchange.pdf', NULL, '2', '2024-07-26', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate very low voice and not understand my words so not fit for my team ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-26 04:46:44', 104, '2024-07-26 01:03:16', 0, NULL, 1),
(20469, 'Pavithra.R', '4', '9345759179', '7339179029', 'lak3pavi17@gmail.com', '1995-05-17', 29, '3', '1', 'Arunkumar', 'Account', 30000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2407260004', '', '1', 'upload_files/candidate_tracker/5668228325_lakpaviresume2.pdf', NULL, '1', '2024-07-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not handling pressure', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-26 04:56:10', 104, '2024-07-26 03:54:25', 0, NULL, 1),
(20470, 'Arun visvam S', '11', '9952223147', '', 'Mr.arunshade@gmail.com', '2001-12-16', 22, '6', '2', 'Mahesh', 'Student', 25000.00, 2, 0.00, 15000.00, 'No.23/1 easwri flats Guindy Chennai 32', 'Guindy', '2407260005', '', '1', 'upload_files/candidate_tracker/28587600841_resumenew.pdf', NULL, '1', '2024-07-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-26 05:31:10', 104, '2024-07-26 05:04:18', 0, NULL, 1),
(20471, 'Kamesh.S', '6', '9360656399', '7358557424', 'kameshkamesh762@gmail.com', '2003-08-23', 20, '2', '2', 'Parvathi.S', 'Insurance executive at Renault car showroom', 250000.00, 1, 0.00, 17000.00, 'Nungambakkam , chennai', 'Nungambakkam,chennai', '2407260006', '50', '1', 'upload_files/candidate_tracker/6337822739_resume.pdf', NULL, '1', '2024-07-26', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate comminucation and performance is not like good.also his mother working in renault car. inurance company.then his voice level is low', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-26 05:34:58', 104, '2024-07-26 01:06:04', 0, NULL, 1),
(20472, 'M.kamesh', '6', '9780889041', '9941101907', 'mkamesh040@gmail.com', '2004-03-12', 20, '2', '2', 'S.mani', 'Carpender', 15000.00, 1, 0.00, 17000.00, '1418 JJ nagar korukkupet Chennai 21', '1418 JJ Nagar Korukkupet Chennai 21', '2407260007', '56', '1', 'upload_files/candidate_tracker/76638103776_MKameshRESUME.pdf', NULL, '1', '2024-07-26', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-26 05:53:56', 104, '2024-07-26 01:07:00', 0, NULL, 1),
(20473, 'KARTHICKRAJ S', '6', '8939011462', '8015026694', 'karthickcasper2000@gmail.com', '2001-05-25', 23, '2', '1', 'Vanjikodi s', 'House wife', 15000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2407260008', '56', '2', 'upload_files/candidate_tracker/24904052755_resume.docx', NULL, '1', '2024-07-26', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication and convincing ratio is low and interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-26 05:55:47', 104, '2024-07-26 01:08:41', 0, NULL, 1),
(20474, 'Illayaperumal', '11', '8825837116', '', 'illayaperumal20@gmail.com', '1996-04-20', 28, '6', '2', 'Murugadoss', 'Retaired', 20000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2407260009', '', '2', 'upload_files/candidate_tracker/73100406966_illayaperumal2Oct2023.pdf', NULL, '1', '2024-07-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-26 05:59:09', 104, '2024-07-26 04:24:30', 0, NULL, 1),
(20475, 'Madhan kumar A', '6', '7305604412', '9940338257', 'Amadhankumar1032@gmail.com', '2001-06-24', 23, '3', '2', 'Amirthalingam', 'Carpenter', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2407260010', '', '1', 'upload_files/candidate_tracker/88495418484_MADHAN...RESUME.pdf', NULL, '1', '2024-07-26', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication and convincing ratio is low and interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-26 06:02:01', 104, '2024-07-26 01:10:09', 0, NULL, 1),
(20476, 'GOWTHAM B', '6', '7094288964', '', 'gowtham01062001@gmail.com', '2002-06-01', 22, '2', '2', 'Balasubramanyan', 'Former', 15000.00, 3, 0.00, 20000.00, 'Cuddalore', 'Chennai', '2407260011', '50', '1', 'upload_files/candidate_tracker/69690075958_GOWTHAM.BIT.pdf', NULL, '1', '2024-07-26', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability was doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-26 06:05:48', 104, '2024-07-26 06:46:31', 0, NULL, 1),
(20477, 'A.Sakthi preya', '6', '9087526411', '9940338257', 'priyaasakthi6@gmail.com', '2003-07-01', 21, '1', '1', 'Kesavan', 'Professor', 40000.00, 1, 0.00, 25000.00, 'Thiruneermalai', 'Thiruneermalai', '2407260012', '', '1', 'upload_files/candidate_tracker/96535157665_A.SAKTHIPRIYARESUME.....pdf', NULL, '1', '2024-07-26', 0, 'P1404', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is not ok, not suit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-26 06:06:22', 104, '2024-07-30 03:43:50', 0, NULL, 1),
(20478, 'NaveenKumar', '6', '9176723015', '', 'naveenriddle46@gmail.com', '2002-03-05', 22, '1', '2', 'Kavitha', 'Traveling, playing football', 15000.00, 1, 0.00, 20000.00, 'Ambattur, Chennai', 'Ambattur, Chennai', '2407260013', '', '1', 'upload_files/candidate_tracker/53616243383_SAVE20240726155436.pdf', NULL, '1', '2024-07-26', 0, '55802', '3', '59', '2024-08-07', 192000.00, '', '3', '2024-08-21', '1', 'Communication Ok Fresher need to analyse and confirmi in 7days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '2024-08-19', 1, '2024-07-26 06:09:33', 104, '2024-08-22 06:49:02', 0, NULL, 1),
(20479, 'GIRIDHARAN R', '6', '9597706887', '9787357552', 'rgiridharan2929@gmail.com', '2002-09-29', 21, '2', '2', 'Ramesh A', 'Farmer', 10000.00, 1, 0.00, 12000.00, 'Madurai', 'Chennai, velachery', '2407260014', '1', '1', 'upload_files/candidate_tracker/86264204547_RESUMEORG.pdf', NULL, '1', '2024-07-26', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not ok with time flexibility', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2024-07-26 06:15:42', 104, '2024-07-26 05:02:58', 0, NULL, 1),
(20480, 'Jeyabal', '4', '7094129640', '', 'thejeyajeev@gmail.com', '1999-10-25', 24, '2', '2', 'Gopalan', 'Supervisor', 50000.00, 1, 0.00, 2.50, 'Trichy', 'St. Thomas Mount', '2407260015', '50', '1', 'upload_files/candidate_tracker/33050806333_Jeyabal1.pdf', NULL, '1', '2024-07-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-26 07:24:27', 1, '2024-07-26 07:31:09', 0, NULL, 1),
(20481, 'gabriel.j', '6', '9677165210', '7305536946', 'gabrieljohn8797@gmail.com', '2003-10-01', 20, '1', '2', 'uma.j', 'housewife', 25000.00, 1, 0.00, 18000.00, 'pallavaram', 'chenn', '2407260016', '', '1', 'upload_files/candidate_tracker/21743554250_GABRIELResume.pdf', NULL, '1', '2024-07-26', 0, '77852', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is unfit for sales profile\nAppearance Not good,field work not interested', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-26 10:03:53', 104, '2024-07-26 05:01:59', 0, NULL, 1),
(20482, 'B.gunaseelan', '6', '9600058027', '9677165210', 'guna057002@gmail.com', '2004-07-05', 20, '1', '2', 'Meena.B', 'Homemaker', 30000.00, 0, 0.00, 14000.00, 'Pallavaram', 'Chennai', '2407260017', '', '1', 'upload_files/candidate_tracker/99435030551_ImagetoPDF2024072615.49.35.pdf', NULL, '1', '2024-07-26', 0, '77852', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not good, communication not well, team ref', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', 'By mistake Syed has shorlisted this', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-26 10:04:29', 104, '2024-07-26 06:56:06', 0, NULL, 1),
(20483, 'Vasanth', '6', '7305536946', '9600058027', 'vasanth26200310@gmail.com', '2003-10-26', 20, '1', '2', 'Selvi', 'Housewife', 25000.00, 1, 0.00, 16000.00, 'Pallavaram', 'Chennai', '2407260018', '', '1', 'upload_files/candidate_tracker/65188913793_VasanthResume1.docx', NULL, '1', '2024-07-26', 0, '77852', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is not good, communication not well, team ref', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', 'By mistake Syed has shorlisted this', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-26 10:04:34', 104, '2024-07-26 06:56:18', 0, NULL, 1),
(20484, '', '0', '6392171715', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407260019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-26 01:53:45', 0, NULL, 0, NULL, 1),
(20485, 'Gnana dharanitha.A', '5', '8015892401', '9790929191', 'dharanithagnana@gmail.com', '2004-01-29', 20, '2', '2', 'Abraham', 'Driver', 60000.00, 1, 0.00, 20000.00, 'No : 6/66 Mgr NagaNor 1st Street Puzhal Chennai 66', 'No : 6/66 Mgr nagaNor 1st Street Puzhal chennai 66', '2407260020', '56', '1', 'upload_files/candidate_tracker/56792187276_GnanaDharanitha.A1.pdf', NULL, '1', '2024-07-27', 0, '', '3', '59', '2024-08-05', 240000.00, '', '5', '1970-01-01', '2', 'Communication Ok Focus on salary much Long Run doubts Can give a try and check in 7 days Holding offer with Shree consultant too', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55560', '5151', '2024-08-05', 1, '2024-07-26 02:06:22', 60, '2024-08-03 06:06:18', 0, NULL, 1),
(20486, 'CHARULATHA P', '4', '7397445700', '', 'pcharu24301@gmail.com', '2001-03-24', 23, '2', '2', 'PANNEER SELVAM M D', 'SECURITY OFFICER', 120000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2407260021', '56', '2', 'upload_files/candidate_tracker/87330473052_CharulathaPRESUME.pdf', NULL, '1', '2024-07-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-26 03:45:32', 1, '2024-07-26 03:51:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20487, '', '0', '7339630241', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407260022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-26 03:49:05', 0, NULL, 0, NULL, 1),
(20488, 'Karthikeyan R', '5', '9003252242', '9940357711', 'karthi90032@gmail.com', '1997-06-09', 27, '2', '1', 'Radhakrishnan P', 'Driver', 45000.00, 2, 25000.00, 30000.00, 'Chennai', 'Chennai', '2407260023', '56', '2', 'upload_files/candidate_tracker/75259929294_JOHNKarthick20241.docx', NULL, '1', '2024-07-27', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'cannot trust, false information, not fit', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-07-26 04:54:07', 104, '2024-07-27 12:17:36', 0, NULL, 1),
(20489, 'Manikandan.s', '6', '7305220103', '9500170209', 'mkandan92770@gmail.com', '2004-01-11', 20, '2', '2', 'Saravanan', 'Daily wager', 30000.00, 2, 0.00, 16000.00, '16/31 Naniappan street Manndy Chennai -600001', '24, naniappan street Manndy Chennai 600001', '2407270001', '56', '1', 'upload_files/candidate_tracker/22717575990_ManikandanResume.pdf', NULL, '1', '2024-07-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication And performance is not good ,also long distance sustainable doubt ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-27 02:16:44', 104, '2024-07-27 12:24:09', 0, NULL, 1),
(20490, '', '0', '6380385188', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407270002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-27 02:42:31', 0, NULL, 0, NULL, 1),
(20491, 'Kamali K', '11', '6379735923', '8610253633', 'kamalikarthikeyan123403@gmail.com', '2004-01-23', 20, '6', '2', 'Karthikeyan K', 'Plumber', 15000.00, 1, 0.00, 15000.00, 'Ekkattuthangal, Chennai', 'Ekkattuthangal, Chennai', '2407270003', '', '1', 'upload_files/candidate_tracker/69957235749_KamaliKresume2024.pdf', NULL, '1', '2024-07-27', 0, '', '3', '59', '2024-08-01', 156000.00, '', '5', '1970-01-01', '2', 'Ok for REcruitment have internship exp first interview with Gokul and got shortlisted can give a try in our roles', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '2024-08-01', 1, '2024-07-27 04:29:30', 60, '2024-07-31 04:29:19', 0, NULL, 1),
(20492, 'Praveen Kumar Nk', '6', '6369202519', '', 'praveennkp321@gmail.com', '2009-07-27', 0, '2', '2', 'M.Natrajan', 'Farmer', 70000.00, 1, 0.00, 17000.00, 'Thiruvarur', 'Chennai, Triplicane', '2407270004', '50', '1', 'upload_files/candidate_tracker/26280558166_PRAVEENKUMARNK1.pdf', NULL, '1', '2024-07-27', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate very low voice and not well communication and distanc is very long so not fit for my team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-27 04:30:24', 104, '2024-07-27 12:31:47', 0, NULL, 1),
(20493, 'Aanantha Vijay S', '6', '7339698684', '', 'vijaysubramanian02052001@gmail.com', '2001-05-02', 23, '2', '2', 'Subramanian N', 'Worker', 15000.00, 1, 0.00, 15000.00, 'Tuticorin', 'Chennai', '2407270005', '50', '1', 'upload_files/candidate_tracker/7921471540_ResumeAananthaVijayS.pdf', NULL, '1', '2024-07-27', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-27 04:43:31', 104, '2024-07-27 12:32:54', 0, NULL, 1),
(20494, 'Upputholla Nagendra Babu', '5', '7095650145', '', 'nagendraupputholla1@gmail.com', '1999-12-14', 24, '2', '2', 'Nagaraju', 'Agent', 50000.00, 5, 17000.00, 20000.00, 'Gundlapadu', 'Gundlapadu', '2407270006', '1', '2', 'upload_files/candidate_tracker/59848590643_NAGENDRACV.docx', NULL, '1', '2024-08-05', 1, '', '3', '59', '2024-08-12', 267000.00, '', '3', '2024-10-30', '1', 'Communication Average sustainablity doubts Pre Documents not clear based on manager approval given him the joining Need to analyse in training period', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1022', '', '55555', '5151', '2024-08-12', 1, '2024-07-27 04:45:59', 60, '2024-08-12 11:34:17', 0, NULL, 1),
(20495, 'M Mohammed Rasool Basith', '11', '8428598622', '9840361605', 'Md.rasoolbasith786@gmail.com', '2002-03-13', 22, '6', '2', 'T Mohamed Farook', 'Business', 20000.00, 2, 0.00, 18000.00, 'No.12/34,kosa Street, contonment, poonamallee,ch', 'No.12/34,kosa Street, contonment, poonamallee,ch', '2407270007', '', '1', 'upload_files/candidate_tracker/51842892842_MohammedRasoolBasithResume1.pdf', NULL, '1', '2024-07-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-27 05:08:46', 104, '2024-07-27 12:33:42', 0, NULL, 1),
(20496, 'Sanjith varun', '6', '7358302010', '9444241190', 'sanjithvarun12@gmail.com', '2003-06-19', 21, '2', '2', 'B.anandha krishnan', 'Corporation of Chennai government', 200000.00, 1, 0.00, 15.00, 'Chennai', 'No 8/19 arunchalam street Shenoy nagar chennai-30', '2407270008', '50', '1', 'upload_files/candidate_tracker/34211484214_rescumeSanjithvarun.pdf', NULL, '1', '2024-07-27', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication and convincing ratio is low and interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-27 05:18:42', 104, '2024-07-27 12:34:55', 0, NULL, 1),
(20497, 'Sneha', '4', '9361672961', '9786513373', 'snehakannan1306@gmail.com', '2000-06-13', 24, '1', '2', 'Kannan', 'Cooli', 420000.00, 1, 0.00, 16000.00, 'Thanjavur', 'Thanjavur', '2407270009', '', '1', 'upload_files/candidate_tracker/51375070707_Snehakannanresume.pdf', NULL, '1', '2024-07-27', 0, 'CI144', '3', '59', '2024-07-29', 153000.00, '', NULL, '2024-12-28', '2', 'Selected for Thanjavur RE Can be trained in our roles 2yrs gap need to analyse in 7days training and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '2024-07-29', 1, '2024-07-27 05:26:15', 60, '2024-07-30 10:47:14', 0, NULL, 1),
(20498, 'ARCHANA S', '6', '7010600734', '6381690085', 'Archanaselvaraj044@gmail.com', '2004-01-02', 20, '1', '2', 'Selvaraj R', 'Tea vendor', 80000.00, 1, 0.00, 15000.00, 'Kerala', 'Teynampet', '2407270010', '', '1', 'upload_files/candidate_tracker/58873916567_ResumeJOBRESUMEFormat6.pdf', NULL, '1', '2024-07-27', 0, '77928', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'other language', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-27 05:27:30', 104, '2024-07-27 12:35:38', 0, NULL, 1),
(20499, 'Vijay saradhy c', '5', '8939165201', '9790550307', 'vm6881952@gmail.com', '2003-07-03', 21, '2', '1', 'Parent', 'Fresher', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Poonamallee', '2407270011', '50', '1', 'upload_files/candidate_tracker/29906480318_sr.docx', NULL, '1', '2024-07-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Apperance is not good and look like low profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-27 06:37:10', 104, '2024-07-29 12:15:54', 0, NULL, 1),
(20500, '', '0', '9092868974', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407270012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-27 06:51:57', 0, NULL, 0, NULL, 1),
(20501, 'R. Dhinesh Kumar', '11', '9677989095', '9047478136', 'dkdhinesh0915@gmail.com', '2002-08-09', 21, '6', '2', 'Raja', 'Finance', 16000.00, 1, 10000.00, 20000.00, 'No.7 Narayanan street Cuddalore o.t', 'Cuddalore', '2407270013', '', '2', 'upload_files/candidate_tracker/27078069708_DKupdated.pdf', NULL, '1', '2024-07-27', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-27 07:00:36', 104, '2024-07-27 01:09:25', 0, NULL, 1),
(20502, 'vignesh d', '6', '9092878974', '', 'vigneshd0127@gmail.com', '2000-09-01', 23, '2', '2', 'r.Dhamodharan', 'own shop', 50000.00, 1, 0.00, 2400000.00, 'chennai porur', 'chennai porur', '2407270014', '50', '1', 'upload_files/candidate_tracker/74418211370_WhiteCleanMinimalistBusinessRealEstateResume2.pdf', NULL, '1', '2024-07-27', 0, '', '3', '59', '2024-08-01', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Sustainability Doubts in the profile much have exp in non voice roles long distance Need to check in 7 days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '2024-08-01', 1, '2024-07-27 07:03:48', 60, '2024-07-31 06:44:33', 0, NULL, 1),
(20503, 'A.abinaya', '6', '6380043133', '8973549659', 'A.ABINAYASRI143@GMAIL.COM', '2002-02-19', 22, '1', '2', 'D.punitha', 'House wife', 75000.00, 2, 0.00, 14.00, 'Vellore', 'Arumbakam', '2407270015', '', '1', 'upload_files/candidate_tracker/665203273_abinaya.pdf', NULL, '1', '2024-07-27', 0, '12345', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not suitable for sales job. communication not well. reject the profile.(chalres)', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-27 07:32:11', 104, '2024-07-27 03:16:53', 0, NULL, 1),
(20504, 'Swetha.E,', '6', '6382384331', '9626240306', 'Eswetha629@GMAIL.COM', '2003-01-24', 21, '1', '2', 'Elilkumar.A', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Vellore', 'Arumbakam', '2407270016', '', '1', 'upload_files/candidate_tracker/33501947683_Swetha.E.pdf', NULL, '1', '2024-07-27', 0, '12345', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, pls confirm the joining date. give freshers salary. teammate rekha reference', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-27 08:03:47', 104, '2024-07-27 03:17:40', 0, NULL, 1),
(20505, 'Disstenu R', '6', '8300913043', '8088169589', 'Rajteenu17@gmail.com', '1999-04-27', 25, '2', '2', 'Samutha', 'House wife', 30000.00, 1, 0.00, 28000.00, 'Tamilnadu', 'Btm layout Bangalore', '2407270017', '1', '2', 'upload_files/candidate_tracker/37002409961_DisstenuHRresume.pdf', NULL, '3', '2024-07-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication and have Experience into insurance field ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-27 08:08:03', 126, '2024-07-27 02:58:00', 0, NULL, 1),
(20506, 'Narasimhamurthy Gari Hanumanthu', '6', '7675949098', '7780277083', 'hanumanthu99n@gmail.com', '2000-03-31', 24, '2', '2', 'Narasimhamurthy', 'Father', 150000.00, 2, 300000.00, 300000.00, 'Anantapur', 'Anantapur', '2407270018', '1', '2', 'upload_files/candidate_tracker/24178576945_EXPERIENCE1.611.pdf', NULL, '1', '2024-08-01', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is not up to the mark and salary expectation is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-27 08:12:37', 126, '2024-08-01 05:30:03', 0, NULL, 1),
(20507, 'Praveen Anand', '4', '9342087817', '6380864684', 'praveen301anand@gmail.com', '2004-01-30', 20, '2', '2', 'Pounraj', 'Bc', 15000.00, 2, 0.00, 14000.00, 'Old washermenpet', 'Old washermenpet', '2407270019', '50', '1', 'upload_files/candidate_tracker/8893248327_Resumea8475fce7555461c9c6c1585d527926d.docx', NULL, '1', '2024-07-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-27 08:18:53', 1, '2024-07-27 08:38:10', 0, NULL, 1),
(20508, 'Suriya kumar', '4', '6380864684', '9342087817', 'suriyakumarinfo123@gmail.comsu', '2004-03-16', 20, '2', '2', 'Muthu Pandian', 'Car driver', 15000.00, 2, 0.00, 15000.00, 'Old washnmenpet', 'Old washnmenpet', '2407270020', '50', '1', 'upload_files/candidate_tracker/31922988031_SURIYAKUMAR1.pdf', NULL, '1', '2024-07-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-27 08:20:04', 1, '2024-07-27 09:14:31', 0, NULL, 1),
(20509, '', '0', '9940457633', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407270021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-27 10:33:25', 0, NULL, 0, NULL, 1),
(20510, 'Nagireddy Chandipriya', '6', '8247527009', '9550543687', 'priya135nagireddy@gmail.com', '2000-06-16', 24, '2', '2', 'Nagireddy sridevi', 'Government e', 38000.00, 0, 0.00, 25000.00, 'Bucchireedy palem Nellore Andhra Pradesh', 'Bucchireedy palem Nellore Andhra Pradesh', '2407270022', '1', '1', 'upload_files/candidate_tracker/11861361452_ResumePriya.pdf', NULL, '1', '2024-08-05', 0, '', '3', '59', '2024-08-19', 204000.00, '', '3', '2024-12-02', '2', 'Communication ok fresher came along with friend long run doubts can give a try anc check', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-08-19', 1, '2024-07-27 12:24:03', 126, '2024-08-19 03:49:51', 0, NULL, 1),
(20511, 'Regulagadda Himabindu', '6', '7981628191', '9603834130', 'himabinduregulagadda@gmail.com', '2001-06-22', 23, '2', '2', 'Regulagadda Chandra sekhar rao', 'Farmer', 30000.00, 1, 0.00, 25000.00, 'Bapatla, Andhra Pradesh', 'Andhra Pradesh', '2407270023', '1', '1', 'upload_files/candidate_tracker/14874059691_HimabinduResume.pdf', NULL, '1', '2024-08-05', 0, '', '3', '59', '2024-08-19', 204000.00, '', '3', '2024-12-14', '2', 'Communication Ok Fresher for our roles Can give a try and check in 7 days', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-08-19', 1, '2024-07-27 02:24:02', 126, '2024-09-20 01:26:39', 0, NULL, 1),
(20512, '', '0', '9941643772', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-28 02:28:16', 0, NULL, 0, NULL, 1),
(20513, 'Akilan', '6', '7373435133', '9942745050', 'akilanc09@gmail.com', '2003-11-09', 20, '2', '2', 'Chinnaraj', 'Farmer', 50000.00, 4, 0.00, 16000.00, 'Erode', 'Semmanjeri', '2407290001', '50', '1', 'upload_files/candidate_tracker/84235118112_AkilanResumeCreativeHandsHRConsultancy.pdf', NULL, '1', '2024-07-29', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and performance is not good.his voice is Also very low ,then long distance (semancheri) Sustainable doubt.he is planning for it related job', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-29 04:07:02', 104, '2024-07-29 11:30:26', 0, NULL, 1),
(20514, 'Sajith cv', '5', '8825621643', '8667650741', 'sajithvilva@gmail.com', '2003-11-06', 20, '1', '2', 'Vijay', 'Site manager', 150000.00, 1, 0.00, 200000.00, 'Tondiarpet, Chennai', 'Tondiarpet chennai', '2407290002', '', '1', 'upload_files/candidate_tracker/61049667206_sajithvresume.pdf', NULL, '1', '2024-07-29', 0, 'CSFUSR00805', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-29 04:09:24', 104, '2024-07-30 07:16:28', 0, NULL, 1),
(20515, 'subash m', '6', '7358252669', '9884248567', 'subashmurali0726@gmail.com', '2003-10-07', 20, '1', '2', 'murali m', 'coporation', 12000.00, 1, 0.00, 20000.00, 'pudupet', 'pudupet', '2407290003', '', '1', 'upload_files/candidate_tracker/58987130943_Resume.pdf', NULL, '1', '2024-07-29', 0, 'p1349', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not pk. he looking for accounting job.communication mistake Thatxquots why came interview.\nteam reference.reject the profile thanks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-07-29 05:34:21', 104, '2024-07-29 11:28:38', 0, NULL, 1),
(20516, '', '0', '9884609940', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407290004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-29 05:44:16', 0, NULL, 0, NULL, 1),
(20517, 'Nayana', '6', '6362856093', '', 'nayananaik929@gmail.com', '2002-07-19', 22, '2', '2', 'Shripati', 'Farmer', 10000.00, 3, 15000.00, 25000.00, 'Karwar', 'Banglore', '2407290005', '1', '2', 'upload_files/candidate_tracker/91768912663_Nayanashreepatinaik1.pdf', NULL, '1', '2024-07-29', 0, '', '3', '59', '2024-08-05', 204000.00, '', '5', '1970-01-01', '2', 'Communication Ok Just 6 months Exp but not a relevant one can give a try and check in 7 days', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-08-05', 1, '2024-07-29 06:21:35', 60, '2024-08-03 12:09:24', 0, NULL, 1),
(20518, 'R.M.Shylesh', '11', '9087185664', '', 'rmshylesh201@gmail.com', '1999-12-18', 24, '6', '2', 'R.Manimaran', 'Service engineer', 40000.00, 1, 0.00, 20.00, 'Chennai', 'Chennai', '2407290006', '', '1', 'upload_files/candidate_tracker/39975127416_ShyleshRMResume.pdf', NULL, '1', '2024-07-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-29 06:47:08', 104, '2024-07-29 03:04:12', 0, NULL, 1),
(20519, 'Varsha', '4', '7904823086', '', 'Varshameipporul123@gmail.com', '1999-03-03', 25, '3', '2', 'Meipporul', 'Farmer', 30000.00, 3, 0.00, 300000.00, 'Amaradakki', 'Amaradakki', '2407290007', '', '2', 'upload_files/candidate_tracker/18588360250_Resume1.pdf', NULL, '1', '2024-07-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is ok with the profile, came from aranthangi,  4hours travel, ,,, already worked in a agency channel life insurance 2 years experience 19-21,,,,and releived due to over time,,,,, and worked as a agent in tnagar hdfc...1 year and came to native 6 months work from home vodofone process,,, and process closed she releived,,, not she is ready to move to thanjavur,,have laptop expected 15 to 16k,,,,,father farmer ,,,sisters married kindly cross check once ,,,completeg irdai exam...kindly check once she is suitable or not', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-29 06:49:36', 104, '2024-07-29 02:50:37', 0, NULL, 1),
(20520, 'Janani', '11', '9789958121', '9025034814', 'jananiravi0701@gmail.com', '2002-01-07', 22, '6', '2', 'G ravichandran', 'Bus driver', 50000.00, 1, 0.00, 120000.00, 'Choolaimedu, avvai nagar,', 'Avvai nagar choolaimedu, Nehru street', '2407290008', '', '1', 'upload_files/candidate_tracker/36487844620_jvrjanani.pdf', NULL, '1', '2024-07-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-29 06:53:32', 104, '2024-07-29 03:04:37', 0, NULL, 1),
(20521, 'Karthik unnikrishnan', '5', '9363218135', '9789080546', 'amkarthi16@gmail.com', '2000-10-16', 23, '1', '2', 'Reshma', 'House wife', 40000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2407290009', '', '2', 'upload_files/candidate_tracker/55235493338_KarthikunnikrishnanFlowCVResume20240729.pdf', NULL, '1', '2024-07-29', 0, '55755', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-07-29 08:08:34', 104, '2024-07-29 03:05:28', 0, NULL, 1),
(20522, 'Janathul Ferthous S', '5', '8015068459', '8778752511', 'janathulferthous@gmail.com', '2001-11-11', 22, '1', '2', 'Naimunisa', 'House wife', 25000.00, 2, 18000.00, 25000.00, 'Thiruvannamalai', 'Thiru Vika Nagar', '2407290010', '', '2', 'upload_files/candidate_tracker/93125074591_JANATHULFERTHOUSSRESUME.docx.pdf', NULL, '1', '2024-07-29', 15, '55755', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-07-29 08:15:35', 104, '2024-07-29 03:06:45', 0, NULL, 1),
(20523, 'Shruthi N N', '11', '9360561497', '9786485828', 'Shruthinalan@gmail.com', '2002-06-19', 22, '6', '2', 'Nalamaharajan', 'Student', 400000.00, 1, 0.00, 18000.00, 'Madurai', 'Chennai', '2407290011', '', '1', 'upload_files/candidate_tracker/57617946171_updatedResume2024...pdf', NULL, '1', '2024-07-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-29 09:58:17', 104, '2024-07-29 05:59:31', 0, NULL, 1),
(20524, '', '0', '7356352024', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407290012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-29 01:47:37', 0, NULL, 0, NULL, 1),
(20525, 'devapriya e', '6', '9790790235', '', 'devapriya1224777@gmail.com', '2003-03-12', 21, '2', '2', 'elumalai', 'driver', 10000.00, 1, 0.00, 15000.00, 'adayar', 'adayar', '2407290013', '1', '1', 'upload_files/candidate_tracker/69271219999_cv11716802771757.pdf', NULL, '1', '2024-07-30', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not even try to speak properly', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-07-29 02:16:45', 104, '2024-07-30 05:59:16', 0, NULL, 1),
(20526, 'Sajin Kumar j', '5', '7539939478', '', 'josesajinkumar@gmail.com', '2002-10-14', 21, '2', '2', 'John wesly', 'Hotel waiter', 13000.00, 1, 22500.00, 27000.00, 'Salem', 'Chennai', '2407290014', '1', '2', 'upload_files/candidate_tracker/1866491381_Sajinkumar3yrsexperience.pdf', NULL, '1', '2024-07-30', 0, '', '3', '59', '2024-08-26', 296000.00, '', '3', '2024-09-30', '2', 'Communication  have 10 months exp in sales can be trained in our roles need to analyse in 7 days', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55567', '55557', '2024-08-26', 1, '2024-07-29 02:33:50', 104, '2024-08-27 06:22:53', 0, NULL, 1),
(20527, 'Reshma', '4', '9884628180', '', 'reshmarachelclaudius27@gmail.com', '2001-07-27', 23, '3', '2', 'Parents', 'Cook', 20000.00, 2, 18000.00, 28000.00, 'Chennai', 'Chennai', '2407290015', '', '2', 'upload_files/candidate_tracker/37642006891_ReshmaResume.pdf', NULL, '1', '2024-08-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-29 03:58:53', 104, '2024-08-01 12:05:05', 0, NULL, 1),
(20528, 'Pavithra Yalamakuri', '6', '9347609699', '9897827154', 'pavithrayalamakuri@gmail.com', '2000-05-31', 24, '2', '2', 'Umadevi', 'House wife', 50000.00, 2, 19866.00, 23500.00, 'Bangalore', 'Bangalore', '2407290016', '1', '2', 'upload_files/candidate_tracker/83334250828_PavithraFinal1.docx', NULL, '1', '2024-07-30', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped She request a time to join and later she is not open to join due to other offer in hand', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-29 07:29:44', 126, '2024-07-30 06:53:44', 0, NULL, 1),
(20529, 'Somesh', '6', '9123514059', '6382130844', 'pandiyankavithaa@gmail.com', '2003-12-28', 20, '2', '2', 'Kavitha', 'Tailor', 15000.00, 1, 0.00, 20000.00, 'Permbur', 'Perambur', '2407300001', '50', '1', 'upload_files/candidate_tracker/21824544955_IMG202407301011351.pdf', NULL, '1', '2024-07-30', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate only interst for it related field and non vocie process so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-30 04:17:14', 104, '2024-07-30 10:43:22', 0, NULL, 1),
(20530, 'Mohan', '5', '6379189685', '', 'gnanavelakash@gmail.com', '2000-04-15', 24, '2', '2', 'Mohan', 'Farmer', 90000.00, 1, 24000.00, 28000.00, 'Saidapet', 'Saidapet', '2407300002', '56', '2', 'upload_files/candidate_tracker/43776922905_Mohannew.pdf', NULL, '1', '2024-08-01', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales, only Experienced in Documentation', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-07-30 04:26:59', 104, '2024-08-01 07:08:18', 0, NULL, 1),
(20531, 'Preetha', '4', '8754339556', '', 'preethahashrra@gmail.com', '1998-06-29', 26, '2', '2', 'Lakshmanakumar', 'Daily work', 6000.00, 3, 276000.00, 260000.00, 'Thanjavur', 'Thanjavur', '2407300003', '1', '2', 'upload_files/candidate_tracker/49291522600_PREETHAREACTRM112.pdf', NULL, '1', '2024-07-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'expected it not sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-30 04:33:15', 104, '2024-07-30 06:07:29', 0, NULL, 1),
(20532, 'V.jaya Krishnan', '6', '6379938409', '7695986809', 'jayakrishnan15072003@gmail.com', '2003-07-15', 21, '2', '2', 'Venkatesan', 'Driver', 40000.00, 1, 0.00, 18000.00, 'Namakkal', 'Koyambedu', '2407300004', '50', '1', 'upload_files/candidate_tracker/4670645550_JayakrishnanResume.pdf', NULL, '1', '2024-07-30', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'tele calling not intersted', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-30 04:33:27', 104, '2024-07-30 01:09:00', 0, NULL, 1),
(20533, 'Iniyan', '5', '9952011398', '9941297702', 'iniyansarav@gmail.com', '1998-09-27', 25, '2', '2', 'Saravanan Kumar', 'Buisness', 15000.00, 1, 24500.00, 25000.00, 'Chennai', 'Chennai', '2407300005', '50', '2', 'upload_files/candidate_tracker/69948825317_iniyandup.pdf', NULL, '1', '2024-07-30', 0, '', '3', '59', '2024-08-09', 300000.00, '', '4', '2024-12-21', '2', 'Communication Ok Fresher for our Roles have exp in Core Can give a try and analyse in 7 days and confirm based on the manager communication proceeded with the CTC', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '2024-08-09', 1, '2024-07-30 04:45:16', 104, '2024-08-30 06:33:09', 0, NULL, 1),
(20534, 'Karthick. S', '5', '9884080105', '', 'karthicksridhar2003@gmail.com', '2003-10-05', 20, '2', '2', 'Sridhar', 'Fresher', 400000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2407300006', '50', '1', 'upload_files/candidate_tracker/54646832629_karthickcv.pdf', NULL, '1', '2024-07-30', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-07-30 05:27:54', 104, '2024-07-30 02:59:27', 0, NULL, 1),
(20535, 'g s vijay', '6', '9600043238', '6369082032', 'gsvijay1999@gmail.com', '1999-01-16', 25, '2', '2', 'gs sheela', 'housewife', 35000.00, 1, 0.00, 20000.00, 'chennai', 'vadapalani', '2407300007', '50', '1', 'upload_files/candidate_tracker/37450909245_Vijaygsnew.doc', NULL, '1', '2024-07-30', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is good but candidate interested in Non voice process ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-30 05:44:33', 104, '2024-07-30 02:46:09', 0, NULL, 1),
(20536, 'Aswin kumar', '6', '9080625791', '9940597465', 'Aswinajay2018@gmail.com', '2001-02-28', 23, '2', '2', 'Mayilnathan', 'Document writer', 26000.00, 1, 0.00, 15000.00, 'Voc nagar Tondiarpet chennai', 'voc nagar tondiarpet chennai', '2407300008', '50', '1', 'upload_files/candidate_tracker/32800401441_RESUMEUPDATED.pdf', NULL, '1', '2024-07-30', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication problem also his voice is very low and sustainable doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-30 05:56:52', 104, '2024-07-30 02:35:52', 0, NULL, 1),
(20537, 'Anupriya', '11', '6380074006', '9087040392', 'anuammu8901@gmail.com', '2001-09-08', 22, '6', '2', 'Palaniyandi', 'Own business', 50000.00, 2, 21000.00, 25000.00, 'Chennai', 'Chennai', '2407300009', '', '2', 'upload_files/candidate_tracker/31624990293_Anupriyaresume.pdf', NULL, '1', '2024-07-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-30 06:04:03', 154, '2025-01-18 11:43:22', 0, NULL, 1),
(20538, 'Hari Nath', '5', '7904068197', '9884661618', 'harishajay79@gmail.com', '1994-05-16', 30, '2', '2', 'Elangovan', 'Sales', 30000.00, 0, 2.30, 2.50, 'Chennai', 'Chennai', '2407300010', '50', '2', 'upload_files/candidate_tracker/46744425894_HARINATHE.MCommonResume24apr1.pdf', NULL, '1', '2024-07-30', 0, '', '3', '59', '2024-08-06', 276000.00, '', NULL, '2024-11-07', '1', 'Communication Ok Fresher for our roles but have earlier exp in another domain, reviewed his documents. Candidate acknowledge that the documents are morphed.But considering his acceptance and discussion with the managers we proceed him with the joining', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '2024-08-06', 1, '2024-07-30 06:05:46', 104, '2024-08-06 07:07:09', 0, NULL, 1),
(20539, 'Asath.H', '6', '6384542190', '9361491259', 'asath5834@gmail.com', '2003-12-23', 20, '2', '2', 'Habeeb', 'India Mart telecalling nd sales executive', 25000.00, 1, 22.50, 19.00, 'Pensioners lane pattalam Chennai 12', 'Pensioners lane pattalam Chennai 12', '2407300011', '50', '2', 'upload_files/candidate_tracker/93057778366_Asathresume.pdf', NULL, '1', '2024-07-30', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not ready to go outside for appointment', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-30 06:06:55', 104, '2024-07-30 01:19:35', 0, NULL, 1),
(20540, 'Hemalatha', '25', '9342003810', '7305674428', 'hemalathanandhakumar256@gmail.com', '2001-01-11', 23, '1', '1', 'Dinesh', 'MBA', 15000.00, 0, 16000.00, 20000.00, 'Moolkadaie', 'Moolkadaie', '2407300012', '', '2', 'upload_files/candidate_tracker/16053417887_TapScanner2207202410391.pdf', NULL, '1', '2024-07-30', 0, '55778', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for Rm profile \ndont have sales skills ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-07-30 06:08:26', 104, '2024-07-30 02:42:26', 0, NULL, 1),
(20541, 'Abdur Rahman', '31', '7871787060', '9865556662', 'abdurrahmanmsa.abuthakir@gmail.com', '2002-05-04', 22, '3', '2', 'Abuthakir', 'Teacher', 25000.00, 1, 0.00, 2.00, 'Ilayangudi', 'Guduvanchery', '2407300013', '', '1', 'upload_files/candidate_tracker/87775117161_finalAbdurRahamanCVDownload.pdf', NULL, '1', '2024-07-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-30 06:09:38', 104, '2024-07-30 02:57:59', 0, NULL, 1),
(20542, 'Mohamed Riyaz S', '31', '9361617017', '', 'S.mohamedriyaz93@gmail.com', '2002-08-06', 21, '3', '2', 'Sathick Basha A', 'Coolie', 6500.00, 1, 0.00, 2.00, 'Trichirappali', 'Chennai', '2407300014', '', '1', 'upload_files/candidate_tracker/92140181015_RiyazJuniorFullStackDeveloperFresher.pdf', NULL, '1', '2024-07-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-30 06:12:51', 104, '2024-07-30 02:43:28', 0, NULL, 1),
(20543, 'Karthika', '4', '9360319521', '9940778029', 'karthikashanthi78@gmail.com', '2001-09-02', 22, '3', '2', 'A.pannir selvam', 'Farmer', 24000.00, 2, 0.00, 15000.00, '201, South Street, valamirankottai. Thanjavur', 'Thanjavur', '2407300015', '', '1', 'upload_files/candidate_tracker/56102678419_KarthikaResume.docx', NULL, '1', '2024-07-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-30 06:22:19', 104, '2024-07-31 07:18:16', 0, NULL, 1),
(20544, 'NAMBIYAPPAN D', '28', '7558176839', '', 'ddnambiyappan@gmail.com', '2001-11-07', 0, '3', '2', 'Dhanapal M', 'Cooli', 8000.00, 2, 0.00, 2.00, 'Trichy', 'Chennai', '2407300016', '', '1', 'upload_files/candidate_tracker/49119577673_Naveenfresherresume1.pdf', NULL, '1', '2024-07-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-30 06:25:24', 104, '2024-07-30 02:43:15', 0, NULL, 1),
(20545, 'Gayathri C', '6', '7373653073', '9344109589', 'rajcinraj35@gmail.com', '2004-06-22', 20, '2', '2', 'Chinnaraj.C', 'Farmer', 80000.00, 2, 0.00, 14000.00, '35-1/RottVillupuram dist 604204', 'Vadapalanii', '2407300017', '42', '1', 'upload_files/candidate_tracker/30447629903_Gayathriresume.pdf', NULL, '1', '2024-07-30', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is not like good ,also pronuncication and slang issue.sustainable doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-30 07:14:31', 104, '2024-07-30 03:46:23', 0, NULL, 1),
(20546, 'Aravindsamy', '4', '6369157162', '', 'aravind3345@gmail.com', '2002-02-06', 22, '2', '2', 'Shanmugam', 'Electrician', 100000.00, 2, 0.00, 18000.00, 'Chidambaram', 'Chennai', '2407300018', '50', '1', 'upload_files/candidate_tracker/2010820713_Resume01.pdf', NULL, '1', '2024-07-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-30 07:25:56', 104, '2024-07-30 03:05:32', 0, NULL, 1),
(20547, 'Monisha', '4', '8680065223', '6385041964', 'monishak030@gmail.com', '2001-05-30', 23, '2', '2', 'Kumar', 'Driver', 20000.00, 1, 20000.00, 23000.00, 'Vadapalani', 'Vadapalani', '2407300019', '50', '2', 'upload_files/candidate_tracker/20681156050_CV2024071920232793.pdf', NULL, '1', '2024-07-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-30 07:35:50', 1, '2024-07-30 07:47:29', 0, NULL, 1),
(20548, 'rithish l', '13', '9500194529', '', 'rithishlakshmi.2404@gmail.com', '2002-04-24', 22, '3', '2', 'lakshmi r', 'reseller', 20000.00, 0, 0.00, 300000.00, 'chennai', 'chennai', '2407300020', '', '1', 'upload_files/candidate_tracker/95284665071_RITHISHUPDATEDRESUME.pdf', NULL, '1', '2024-07-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-30 08:01:58', 1, '2024-07-30 08:05:00', 0, NULL, 1),
(20549, 'mohamed adnan', '2', '9787059262', '9843120292', 'Mohamedadnan980@outlook.com', '1997-05-06', 27, '3', '2', 'Nasmath haseena', 'Home maker', 200000.00, 1, 0.00, 300000.00, 'Ramanathapuram', 'Chennai', '2407300021', '', '1', 'upload_files/candidate_tracker/13587071925_resumejobdrive.pdf', NULL, '1', '2024-07-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-30 09:18:21', 104, '2024-07-30 02:58:08', 0, NULL, 1),
(20550, 'barath kumar s', '6', '8248764252', '', 'barathk263@gmail.com', '2004-08-25', 19, '2', '2', 'suganthi s', 'non teaching staff', 800000.00, 0, 0.00, 20000.00, 'arumbakkam', 'arumbakkam', '2407300022', '1', '1', 'upload_files/candidate_tracker/12598772268_Barath1.pdf', NULL, '1', '2024-07-31', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is good but candidate interested in Non voice process ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2024-07-30 12:47:05', 104, '2024-07-31 04:31:54', 0, NULL, 1),
(20551, 'Ashika Parveen', '4', '9500369135', '9944001919', 'ashikaarshshafi@gmail.com', '1995-05-07', 29, '6', '1', 'Mohamed shafiullah', 'Foreign', 40000.00, 3, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2407300023', '', '1', 'upload_files/candidate_tracker/47839834672_Ashikaresume1.doc', NULL, '1', '2024-07-31', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-30 12:49:15', 104, '2024-07-31 04:34:45', 0, NULL, 1),
(20552, 'KARTHIK S', '6', '9952040095', '9790960766', 'karthiksathya122@gmail.com', '2004-01-06', 20, '2', '2', 'Bhuvaneswari.S', 'House wife', 96000.00, 1, 0.00, 16000.00, 'Tondiarpet market Chennai', 'Tondiarpet market Chennai', '2407300024', '56', '1', 'upload_files/candidate_tracker/21691142254_KarthikSresume.pdf', NULL, '1', '2024-07-31', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate mainly interest for  non voice and  next course for SAP in accounting thatreason to joining he work after completed the course he will relaving the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-30 03:10:49', 104, '2024-07-31 04:35:13', 0, NULL, 1),
(20553, 'SIDDHARTH J U', '7', '8903146398', '', 'siddharthkrishna20@gmail.com', '2001-11-14', 22, '2', '2', 'None', 'None', 30000.00, 1, 0.00, 17000.00, 'Kanniyakumari', 'Chennai', '2407310001', '27', '1', 'upload_files/candidate_tracker/96095962745_BachelorsinCivilEngineeringCGPA8.21.pdf', NULL, '1', '2024-07-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '4', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-07-31 04:10:31', 104, '2024-07-31 04:31:14', 0, NULL, 1),
(20554, 'logiYa R', '5', '8838357625', '', 'logiyarravichandran@gmail.com', '2002-09-25', 21, '1', '2', 'Ravi Chandran', 'Accountant', 45000.00, 1, 18000.00, 22000.00, 'T nagar', 'T nagar', '2407310002', '', '2', 'upload_files/candidate_tracker/92733376758_1722400880541a7e61faf4930413cac4a4589de345af2.pdf', NULL, '1', '2024-07-31', 0, 'Pradeep', '3', '59', '2024-08-12', 276000.00, '', NULL, '2024-10-30', '2', 'Communication Ok Have Exp in calling for 6 months 5050 sustainability can give a try and check', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '2024-08-12', 1, '2024-07-31 04:35:51', 60, '2024-08-16 03:09:18', 0, NULL, 1),
(20555, 'bhuvanesh', '4', '8056591226', '', 'thalakutty1716@gmil.com', '1999-10-16', 24, '3', '2', 'sadhasivam', 'tncsc', 15000.00, 1, 15000.00, 22000.00, 'thanjavur', 'thanjavur', '2407310003', '', '2', 'upload_files/candidate_tracker/36713107491_BHUVANESWARANRS240731110540.pdf', NULL, '1', '2024-07-31', 15, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-07-31 04:37:20', 104, '2024-07-31 04:35:36', 0, NULL, 1),
(20556, 'M.premavathy', '5', '9791998195', '', 'lavanyamk1999@gmail.com', '1999-04-07', 25, '2', '2', 'V.munusamy', 'Working', 80000.00, 2, 20000.00, 20000.00, 'Choolai', 'Choolai', '2407310004', '1', '2', 'upload_files/candidate_tracker/83338875519_RESUMEPREMAVATHYM1.pdf', NULL, '1', '2024-08-02', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Tried connecting with her but she has not joined the meeting', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55634', '55557', '1970-01-01', 1, '2024-07-31 05:21:05', 60, '2024-08-07 06:29:04', 0, NULL, 1),
(20557, 'Singamsetty sathish', '6', '9390083558', '', 'Sathishsingamsetty002@gmail.com', '1998-06-24', 26, '2', '2', 'S Venkataramana', 'Farmer', 100000.00, 2, 14600.00, 17000.00, 'Andrapradesh', 'Btm layout', '2407310005', '1', '2', 'upload_files/candidate_tracker/18370823106_resumebngexpirence10.docx', NULL, '1', '2024-07-31', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Experience into sales field, good confident level and Communication is ok ok', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-07-31 05:41:39', 126, '2024-07-31 05:58:42', 0, NULL, 1),
(20558, 'SANDHIYA', '6', '7358381611', '', 'Sandhiyapunithavathy06@gmail.com', '2003-11-06', 20, '3', '2', 'Punithavathy', 'House keeping', 3500.00, 2, 0.00, 20000.00, '24,South coovam River Road', '24,South coovam River Road', '2407310006', '', '1', 'upload_files/candidate_tracker/51620762687_RESUMEsingle.docx', NULL, '1', '2024-07-31', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for another job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-07-31 06:03:40', 104, '2024-07-31 04:39:42', 0, NULL, 1),
(20559, 'KARTHIK M', '6', '9345778121', '', 'Karthimk2308@gmail.com', '2003-08-23', 20, '2', '2', 'MANIVANNAN', 'Driver', 20000.00, 1, 0.00, 20000.00, 'Coimbatore', 'Chennai', '2407310007', '50', '1', 'upload_files/candidate_tracker/50111870422_CV2024062319222882.pdf', NULL, '1', '2024-07-31', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fit for sales ,lets try 7 days and we will confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-07-31 06:06:05', 104, '2024-07-31 07:16:52', 0, NULL, 1),
(20560, 'SELVARAJ J', '6', '9789279761', '', 'selvaraj2003jvp@gmail.com', '2003-05-29', 21, '2', '2', 'JEYARAMAN', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Coimbatore', 'Chennai', '2407310008', '50', '1', 'upload_files/candidate_tracker/19856131132_SELVARAJ.J.pdf', NULL, '1', '2024-07-31', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good ,also he is not talk more and his slang is very poor', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-07-31 06:11:10', 104, '2024-07-31 04:36:07', 0, NULL, 1),
(20561, '', '0', '8778806974', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407310009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-31 06:57:23', 0, NULL, 0, NULL, 1),
(20562, 'JAYASURYA M', '4', '7708681256', '', 'jayasurya1069@gmail.com', '2001-08-10', 22, '2', '2', 'MURUGAN S', 'Daily wages', 20000.00, 0, 0.00, 15000.00, 'Mayiladuthurai', 'Chennai', '2407310010', '50', '1', 'upload_files/candidate_tracker/80014325646_Resume.pdf202407151348200000.pdf', NULL, '1', '2024-08-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-07-31 08:15:57', 104, '2024-08-02 04:42:03', 0, NULL, 1),
(20563, '', '0', '9945935612', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407310011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-31 08:16:34', 0, NULL, 0, NULL, 1),
(20564, 'Rajesh', '6', '8489824238', '9360478547', 'Rajeshrt002@gmail.com', '2009-07-31', 0, '2', '2', 'Sankar', 'Farmer', 20000.00, 2, 0.00, 16000.00, 'Tirupattur', 'Chennai,vadapalani', '2407310012', '42', '1', 'upload_files/candidate_tracker/31305259511_DOC20230125WA0000..pdf', NULL, '1', '2024-07-31', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice is not good and not understand what im telling so not fit for my team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-07-31 09:01:07', 104, '2024-07-31 04:36:32', 0, NULL, 1),
(20565, 'P.Vikram', '6', '8667638602', '8807771218', 'vikramshc7@gmail.com', '2000-06-05', 0, '2', '2', 'S.Perumal', 'Farmer', 20000.00, 2, 0.00, 16000.00, 'Tiruppatur', 'Chennai, Vadapalani', '2407310013', '42', '1', 'upload_files/candidate_tracker/23978495143_vikramresume1.pdf', NULL, '1', '2024-07-31', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-07-31 09:02:36', 104, '2024-07-31 04:37:46', 0, NULL, 1),
(20566, 'Mohamed fazhludeen L', '5', '6382319218', '9043334567', 'fazsneh@gmail.com', '2001-04-23', 23, '3', '2', 'Yousuf', 'Real estate', 20000.00, 2, 0.00, 20000.00, 'No:45 pallivasal street, puduthurai, Karaikal', 'Coimbatore', '2407310014', '', '1', 'upload_files/candidate_tracker/58192241335_fazhludeenresume.pdf', NULL, '1', '2024-08-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-07-31 11:33:15', 1, '2024-07-31 11:38:20', 0, NULL, 1),
(20567, '', '0', '9790908590', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2407310015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-07-31 11:51:17', 0, NULL, 0, NULL, 1),
(20568, 'Balaguru C', '6', '8870598721', '', 'balaguruc812@gmail.com', '2004-06-02', 20, '2', '2', 'ChinnaThambi', 'Fitter', 10000.00, 1, 0.00, 18000.00, 'Theni', 'Chennai ponnamalle', '2408010001', '50', '1', 'upload_files/candidate_tracker/64553840294_BALAGURURESUME.pdf', NULL, '1', '2024-08-01', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skli', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-01 04:32:34', 104, '2024-08-01 06:42:09', 0, NULL, 1),
(20569, 'Suganya', '28', '9790930178', '9840417948', 'tsuganyajobs@gmail.com', '1997-06-03', 27, '3', '1', 'Thiagarajan', 'Business', 50000.00, 1, 0.00, 300000.00, 'CHENNAI', 'CHENNAI', '2408010002', '', '1', 'upload_files/candidate_tracker/57473968910_SuguNewResume2.pdf', NULL, '1', '2024-08-01', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-01 04:54:06', 104, '2024-08-01 06:42:40', 0, NULL, 1),
(20570, 'Ragul Raj', '6', '6380361885', '', 'ragul04092000@gmail.com', '2000-09-04', 23, '2', '2', 'Lakshmanan', 'Farmer', 20000.00, 1, 20000.00, 23000.00, 'Salem', 'Chennai', '2408010003', '50', '2', 'upload_files/candidate_tracker/34115369003_1Ragulresume11.pdf', NULL, '1', '2024-08-01', 20, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skills is low and interested in Customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-01 05:05:49', 104, '2024-08-01 06:43:29', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20571, 'K.Reddy Ganesh', '5', '9346566366', '9398440853', 'ganeshkethineni9955@gmail.com', '2002-08-12', 21, '2', '2', 'K.Gurrappa', 'Farmer', 5000.00, 1, 20000.00, 24000.00, 'Chittor District, Andhra Pradesh', 'Madiwalaa, bangalore', '2408010004', '1', '2', 'upload_files/candidate_tracker/37387074385_Resume540502802241854.pdf', NULL, '1', '2024-08-01', 0, '', '3', '59', '2024-08-08', 300000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can be trained in ou roled verified with his previous documents and based on manager decision proceeding with the hiring Can give a try and check', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1022', '', '55555', '5151', '2024-08-08', 1, '2024-08-01 05:38:10', 60, '2024-08-07 05:57:01', 0, NULL, 1),
(20572, 'Immauel L', '6', '9710694854', '', 'immanuelandrews8@gmail.com', '2003-07-02', 21, '2', '2', 'Lawrence A', 'Driver', 25000.00, 1, 0.00, 18000.00, 'Redhills', 'Redhills', '2408010005', '50', '1', 'upload_files/candidate_tracker/60509662448_IMMANUEL.LFlowCVResume202405271.pdf', NULL, '1', '2024-08-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-01 05:41:49', 60, '2024-08-01 06:16:35', 0, NULL, 1),
(20573, 'P.sivarajan', '6', '8248981629', '9790737049', 'Sj397771@gmail.vom', '2003-04-27', 21, '2', '2', 'D .padmaraj', 'Auto driver', 20000.00, 1, 0.00, 15000.00, 'Redhills', 'Redhills', '2408010006', '50', '1', 'upload_files/candidate_tracker/72610816727_DocScanner1Aug20241126am.pdf', NULL, '1', '2024-08-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-01 05:42:12', 60, '2024-08-01 06:16:53', 0, NULL, 1),
(20574, 'Dandu Raghunadha', '6', '8618382665', '7013051610', 'raghukushi9160@gmail.com', '1993-07-01', 31, '2', '1', 'Sekhar', 'Father', 25000.00, 2, 0.00, 25000.00, 'Rayachoty annamaiah distik andhrapradesh', 'Konappa agrahara electronic City', '2408010007', '1', '1', 'upload_files/candidate_tracker/86695390565_IMG20240801121433compressed.pdf', NULL, '1', '2024-08-01', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lagging with communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-01 05:50:34', 126, '2024-08-01 05:31:53', 0, NULL, 1),
(20575, 'Anantharaj', '4', '6369272504', '9585961347', 'anantharajraj552@gmail.com', '1999-12-26', 24, '2', '2', 'Parents', 'Employee', 300000.00, 2, 15000.00, 25000.00, 'Perambalur', 'Karappakkam', '2408010008', '50', '2', 'upload_files/candidate_tracker/68390750737_ANANDHARAJ2472024.docx', NULL, '1', '2024-08-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-01 05:57:29', 1, '2024-08-01 06:03:10', 0, NULL, 1),
(20576, 'DINESH KUMAR R', '6', '9094427748', '7094427748', '0129dinesh@gmail.com', '2009-08-01', 0, '3', '2', 'RAJI K', 'Flower shop', 15000.00, 1, 450000.00, 450000.00, 'Chennai', 'Chennai', '2408010009', '', '2', 'upload_files/candidate_tracker/27689934187_DINESHKUMARRRESUME.pdf', NULL, '1', '2024-08-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-01 06:06:08', 60, '2024-08-01 06:17:23', 0, NULL, 1),
(20577, 'subhasri A', '6', '7825925515', '', 'subhashrianbalagan31@gmail.com', '2003-07-31', 21, '1', '2', 'anbaZhagan', 'carpenter', 15000.00, 1, 0.00, 15000.00, 'jaamkondam', 'raipet', '2408010010', '', '1', 'upload_files/candidate_tracker/56930862983_suba.pdf', NULL, '1', '2024-08-01', 0, '55809', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not so good at speaking', '5', '1', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-01 06:10:28', 104, '2024-08-01 06:49:54', 0, NULL, 1),
(20578, 'Rabina manicka jothi', '4', '6383212058', '9884789935', 'rabinaribo96@gmail.com', '1996-05-21', 28, '2', '2', 'Rani', 'Home maker', 35000.00, 1, 27430.00, 30000.00, 'Oriyur', 'Saidapet', '2408010011', '1', '2', 'upload_files/candidate_tracker/49998140187_RabinaResume1.pdf', NULL, '1', '2024-08-02', 30, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '', '', '1970-01-01', 1, '2024-08-01 06:13:41', 104, '2024-08-02 04:51:09', 0, NULL, 1),
(20579, 'Stella Mary', '4', '6383034114', '6380471259', 'sweetystella1001@gmail.com', '1998-01-10', 26, '2', '2', 'Devasagayam', 'Contract worker', 35000.00, 2, 24000.00, 28000.00, 'Teynampet', 'Alwarpet', '2408010012', '45', '2', 'upload_files/candidate_tracker/46077963682_STELLAMARYResume2.pdf', NULL, '1', '2024-08-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-01 06:14:22', 1, '2024-08-01 06:19:13', 0, NULL, 1),
(20580, 'aswani p', '6', '7671058293', '8867282420', 'aswanipappireddy@gmail.com', '2001-07-05', 23, '2', '2', 'anil kumar reddy', 'farming', 12000.00, 2, 26000.00, 27500.00, 'kalicherla peddamandyam chittor', 'madiwala Bangalore Karnataka', '2408010013', '1', '2', 'upload_files/candidate_tracker/23632156945_aswani.docx', NULL, '1', '2024-08-01', 1, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Salary Expectation is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-01 06:28:58', 126, '2024-08-01 05:54:18', 0, NULL, 1),
(20581, '', '0', '8867282420', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408010014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-01 06:43:34', 0, NULL, 0, NULL, 1),
(20582, 'Muthu Karthi', '6', '9952525045', '9442775236', 'shanmugammuthukarthi@gmail.com', '2003-03-12', 21, '2', '2', 'Shanmugam SV', 'Buisness', 18000.00, 0, 0.00, 20000.00, 'Erode', 'Karapakkam', '2408010015', '42', '1', 'upload_files/candidate_tracker/51322805311_CV20240529074223.pdf', NULL, '1', '2024-08-01', 0, '', '3', '59', '2024-08-06', 192000.00, '', '3', '2024-08-08', '2', 'Communication ok can give a try in our roles fresher need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-08-06', 1, '2024-08-01 06:48:16', 60, '2024-08-16 03:36:05', 0, NULL, 1),
(20583, 'KARMEGAM V', '6', '9629274306', '9791289731', 'karmegam861@gmail.com', '2002-10-26', 21, '2', '2', 'Vengadachalam.P', 'TVS Machanic', 18000.00, 1, 0.00, 17000.00, 'Muthur, TIRUPPUR 638 - 105', 'Karapakkam', '2408010016', '42', '1', 'upload_files/candidate_tracker/62649820040_CV.pdf', NULL, '1', '2024-08-01', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skills is low and interested in Customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-01 06:49:28', 104, '2024-08-01 06:50:43', 0, NULL, 1),
(20584, 'JenitaJ', '6', '9003280459', '7092236446', 'jenita3388@gmail.com', '2003-05-28', 21, '1', '2', 'Johnbose', 'Shop', 9000.00, 1, 0.00, 16000.00, 'Adyar', 'Adyar', '2408010017', '', '1', 'upload_files/candidate_tracker/89044607306_RESUME11.pdf', NULL, '1', '2024-08-01', 0, '77924', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-01 08:04:42', 104, '2024-08-01 06:51:32', 0, NULL, 1),
(20585, 'mathiYaZhagan P', '6', '9786515746', '', 'mathi0407moon@gmail.com', '2000-07-04', 24, '1', '2', 'pitchaipillai', 'farmer', 8000.00, 2, 0.00, 20000.00, 'ariYalur', 'sriperumbudur', '2408010018', '', '1', 'upload_files/candidate_tracker/17186521926_0mathiresumepdf2024lastsanmina.pdf', NULL, '1', '2024-08-01', 0, '55803', '3', '59', '2024-08-05', 216000.00, '', '3', '2024-10-19', '1', 'Selected for RE Role Need to check in 7 days training Have 2 week training exp in Health product 5 yrs non voice exp based on manager recommendation gave the CTC', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '5', '3', '', '', '', '', 'P1287', '5151', '2024-08-05', 1, '2024-08-01 10:09:39', 104, '2024-08-05 05:32:19', 0, NULL, 1),
(20586, 'karthika', '24', '9345472118', '7092409722', 'lkarthika64@gmail.com', '1991-06-01', 33, '3', '1', 'venkatatachala perumal', 'salaried', 60000.00, 1, 600000.00, 720000.00, 'tuticorin', 'perambur', '2408010019', '', '2', 'upload_files/candidate_tracker/83205189530_Pancard1.pdf', NULL, '1', '2024-08-01', 0, '', '3', '59', '2024-08-01', 600000.00, '', '5', '1970-01-01', '2', 'Rejoining post maternity leave', '8', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55560', '5151', '2024-08-01', 1, '2024-08-01 11:03:36', 60, '2024-08-01 06:46:02', 0, NULL, 1),
(20587, 'Ashwin Raj K MR', '6', '6380463621', '', 'rajkmr051198@gmail.com', '1998-11-05', 25, '2', '2', 'Rajendran K', 'metro water', 25000.00, 1, 12000.00, 18000.00, 'purasaiwalkam', 'purasaiwalkam', '2408010020', '56', '2', 'upload_files/candidate_tracker/51283565399_updatedresume21.pdf', NULL, '1', '2024-08-02', 0, '', '3', '59', '2024-08-09', 198000.00, '', '5', '1970-01-01', '1', 'Selected for DM Role Can give a try and analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-08-09', 1, '2024-08-01 01:25:03', 60, '2024-08-03 06:29:55', 0, NULL, 1),
(20588, '', '0', '9360305609', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408010021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-01 01:26:47', 0, NULL, 0, NULL, 1),
(20589, 'prasanasri', '5', '7200555869', '9360528996', 'prasanasri702@gmail.com', '2000-11-01', 23, '2', '2', 'veerasekaran', 'manager', 150000.00, 1, 30499.00, 34000.00, 'trichy', 'trichy', '2408020001', '1', '2', 'upload_files/candidate_tracker/37037524886_Prasanasri.pdf', NULL, '2', '2024-08-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped - due to not sharing  the previous exp documents', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55555', '5151', '1970-01-01', 1, '2024-08-02 03:38:42', 60, '2024-08-26 06:26:11', 0, NULL, 1),
(20590, 'Atchaya R', '5', '9600214263', '9715875106', 'atchaya3198@gmail.com', '1998-10-31', 25, '3', '1', 'Ganesan R', 'Financial planning Manager', 30000.00, 1, 32000.00, 30000.00, 'Madurai', 'Kk nagar, Chennai', '2408020002', '', '2', 'upload_files/candidate_tracker/87657958364_AtchayaResumeNTT.pdf', NULL, '1', '2024-08-02', 7, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55560', '5151', '1970-01-01', 1, '2024-08-02 04:44:13', 104, '2024-08-02 04:54:27', 0, NULL, 1),
(20591, 'J. Robinson', '6', '8015474036', '8870830826', 'robinson29322@gmail.com', '2002-03-29', 22, '2', '2', 'T. Jeyapaul', 'Daily wages', 120000.00, 1, 0.00, 16000.00, 'Tuticorin', 'Chrompet', '2408020003', '1', '1', 'upload_files/candidate_tracker/58674956285_RobinCV.pdf', NULL, '1', '2024-08-05', 0, '', '3', '59', '2024-08-12', 192000.00, '', '', '1970-01-01', '2', 'Communication Ok MA graduate Need to analyse in 7 days training for telecalling', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-02 05:07:56', 104, '2024-08-06 07:00:20', 0, NULL, 1),
(20592, 'Abilash M.R', '6', '9080130243', '', 'Abilash9mr@gmail.com', '2000-09-19', 23, '2', '2', 'ramachandran', 'nlc', 200000.00, 1, 0.00, 20000.00, 'neyveli', 'chennai ramapuram', '2408020004', '50', '1', 'upload_files/candidate_tracker/78406060747_ABILASHMR.pdf', NULL, '1', '2024-08-02', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'over Attitude and no money need', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-02 05:12:19', 104, '2024-08-02 04:50:31', 0, NULL, 1),
(20593, 'M.KAMALESH', '6', '6383798758', '8940021604', 'kamalesh262000@gmail.com', '2009-08-02', 0, '2', '2', 'J.Murugan', 'farmer', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2408020005', '50', '1', 'upload_files/candidate_tracker/33963663533_KAMALESHRESUME.043.pdf', NULL, '1', '2024-08-05', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-02 05:14:32', 104, '2024-08-05 03:40:48', 0, NULL, 1),
(20594, 'Murugesh', '6', '9025424262', '9360048767', 'pmurugesh813@gmail.com', '2002-05-19', 22, '2', '2', 'Thavamani', 'Nurse in Government Hospital', 100000.00, 0, 0.00, 16000.00, 'Chennai', 'Thousands lights, Chennai', '2408020006', '50', '1', 'upload_files/candidate_tracker/37774050194_MurugeshPB.TechIT.pdf', NULL, '1', '2024-08-02', 0, '', '3', '59', '2024-08-05', 192000.00, '', '3', '2025-12-04', '1', 'Communication complete IT profile But open for Sales Calling Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2024-08-05', 1, '2024-08-02 05:27:46', 104, '2024-08-05 05:32:46', 0, NULL, 1),
(20595, 'Alison Gerald N', '4', '7397238237', '', 'geralddecoid@gmail.com', '2002-06-08', 22, '2', '2', 'premalatha', 'private employee', 17000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2408020007', '50', '1', 'upload_files/candidate_tracker/1052522681_geraldresumeforbpo.pdf', NULL, '1', '2024-08-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-02 05:33:42', 1, '2024-08-02 05:43:44', 0, NULL, 1),
(20596, 'karthikeyan', '6', '9566199513', '', 'karthikeyan2695@gmail.com', '1995-06-02', 29, '2', '2', 'Krishnan', 'Car driver', 25000.00, 1, 0.00, 22000.00, 'chennai', 'chennai', '2408020008', '50', '2', 'upload_files/candidate_tracker/76061346838_karthikresume.pdf', NULL, '1', '2024-08-02', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not much intrested in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-02 05:52:04', 104, '2024-08-02 04:53:51', 0, NULL, 1),
(20597, 'VIJAY S', '5', '8124635245', '6369115010', 'vijayammu775@gmail.com', '2003-12-08', 20, '2', '2', 'SIVAJEYAM', 'FARMER', 40000.00, 2, 22450.00, 30000.00, '4/480, ERIKODI, ADAGAPADI, DHARMAPURI', 'Kolathur, Chennai', '2408020009', '50', '2', 'upload_files/candidate_tracker/98128496036_MYBIO.pdf', NULL, '1', '2024-08-06', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dont have communication skill and basic knowledge', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-08-02 05:54:45', 60, '2024-08-31 04:37:20', 0, NULL, 1),
(20598, 'indhu mathi A', '6', '6382809240', '', 'ajayindhu93@gmail.com', '2003-05-29', 21, '2', '2', 'anandan', 'shallon', 10000.00, 1, 23000.00, 25000.00, 'erode', 'thirvanmiYur', '2408020010', '1', '2', 'upload_files/candidate_tracker/74959646833_cv31721814534593.pdf', NULL, '1', '2024-08-02', 0, '', '3', '59', '2024-08-07', 216000.00, '', '5', '1970-01-01', '2', 'Selected for RE role Can give a try and check in 7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '2024-08-12', 1, '2024-08-02 06:02:48', 104, '2024-08-05 05:43:44', 0, NULL, 1),
(20599, 'Mohammed Hussain', '6', '9342358076', '8989765435', 'h1898111@gmail.com', '2003-06-15', 21, '3', '2', 'Mohamed Ali zinna', 'Business', 30000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2408020011', '', '1', 'upload_files/candidate_tracker/68837253919_internationalvoiceprocess.pdf', NULL, '1', '2024-08-02', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT  so good at speaking', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-02 06:07:05', 104, '2024-08-02 04:51:30', 0, NULL, 1),
(20600, 'arun kumar u', '6', '9566460894', '', 'arunkumaru2000@gamil.com', '2000-03-09', 24, '2', '2', 'udayakumar g', 'divyashri logistics india pvt.ltd', 25000.00, 2147483647, 12000.00, 18000.00, 'salem', 'thiruerkadu', '2408020012', '50', '2', 'upload_files/candidate_tracker/72933114798_ArunnewResume.pdf', NULL, '1', '2024-08-02', 30, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication and convincing skills is low and interested in Customer support', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-02 06:26:49', 104, '2024-08-02 04:49:55', 0, NULL, 1),
(20601, 'Sugirtham ruth', '6', '9363192679', '9840640069', 'sugithamruth29@gmail.com', '2001-04-28', 23, '3', '2', 'Kanchan . S', 'Working', 75000.00, 1, 15000.00, 18000.00, 'Chetpet', 'Chetpet', '2408020013', '', '2', 'upload_files/candidate_tracker/99874333183_ruth.pdf', NULL, '1', '2024-08-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication  little bit only good ,ther her voice is not clear also sustainable doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-02 06:29:02', 104, '2024-08-02 04:44:22', 0, NULL, 1),
(20602, 'Noufal Rizwan m', '31', '7358857006', '7010233514', 'noufalrizwanm@gmail.com', '2001-05-04', 23, '3', '2', 'a mohamed sherief', 'business', 35000.00, 1, 96000.00, 3.00, 'madurai', 'chennai', '2408020014', '', '2', 'upload_files/candidate_tracker/65193678240_NoufalRizwanMResume.pdf', NULL, '1', '2024-08-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-02 07:14:39', 104, '2024-08-02 04:57:38', 0, NULL, 1),
(20603, 'Edwin John', '5', '7337887592', '', 'Edwinjohn247@gmail.com', '1983-09-20', 40, '4', '1', 'Ann', 'Na', 0.00, 1, 0.00, 8.00, 'Bangalore', 'Bangalore', '2408020015', '', '2', 'upload_files/candidate_tracker/12266898808_DOC20240731WA0006240802090058.pdf', NULL, '2', '2024-08-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-02 08:03:52', 1, '2024-08-02 08:08:02', 0, NULL, 1),
(20604, 'Arthi M', '6', '8530896328', '9036646691', 'arthi8530@gmail.com', '2002-05-10', 22, '2', '2', 'Mariyappa', 'Contracter', 100000.00, 3, 24.00, 25.00, 'Jalahalli east', 'Jalahalli east', '2408020016', '1', '2', 'upload_files/candidate_tracker/24277395866_RESUME.pdf', NULL, '1', '2024-08-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-08-02 09:42:12', 1, '2024-08-02 09:47:26', 0, NULL, 1),
(20605, 'Jayakrishna T', '4', '7397271589', '', 'jayakrishna96555@gmail.com', '2004-01-21', 20, '2', '2', 'Thirugnanamoorthy', 'Fresher', 65000.00, 1, 0.00, 15000.00, 'Madipakkam Chennai', 'Madipakkam Chennai', '2408020017', '50', '1', 'upload_files/candidate_tracker/44726222346_JayakrishnaCVResume14132.pdf.pdf', NULL, '1', '2024-08-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-02 11:45:54', 1, '2024-08-02 11:54:30', 0, NULL, 1),
(20606, '', '0', '9066636661', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408020018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-02 01:05:01', 0, NULL, 0, NULL, 1),
(20607, '', '0', '9500484492', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408030001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-03 04:29:17', 0, NULL, 0, NULL, 1),
(20608, 'MOHAMMED FAISAL.M', '5', '9444711577', '9894236488', 'faisalmohammedmsd@gmail.com', '2002-04-12', 22, '1', '2', 'Syed Ali Fathima', 'Housewife', 20.00, 1, 20.00, 25.00, 'Muslim street Silaiman madurai', 'Seven well manadi Broadway Chennai', '2408030002', '', '2', 'upload_files/candidate_tracker/37388332398_CVFAISAL3.pdf', NULL, '3', '2024-08-03', 0, 'Aaqil ahamed', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sarath Team, 21k Net Salary, ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-08-03 04:51:12', 104, '2024-08-03 03:45:13', 0, NULL, 1),
(20609, 'Fawaz', '6', '9566306788', '9159575446', 'fawazferrari3@gmail.com', '2003-09-28', 20, '2', '2', 'Ayubkhan', 'Driver', 25000.00, 2, 0.00, 19000.00, 'Muthupet', 'Royapettah, Chennai.', '2408030003', '50', '1', 'upload_files/candidate_tracker/22951410445_Fawaz.CV.pdf', NULL, '3', '2024-08-03', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate mainly interest for abroad work ust communication imporvement to looking or telecalling work so notfit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-08-03 05:50:49', 104, '2024-08-03 03:46:03', 0, NULL, 1),
(20610, 'KAMESH.M', '6', '9361728761', '8667339853', 'kam18092003@gmail.com', '2003-09-18', 20, '2', '2', 'Chitra.M', 'House wife', 20000.00, 1, 0.00, 14000.00, '108/25 Kannabiran kovil street Pallavaram', '39 Kaladharan cross street Moongil eari', '2408030004', '50', '1', 'upload_files/candidate_tracker/96836361215_KAMESHMOORTHYresume.pdf', NULL, '1', '2024-08-03', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long from his location,look wise not good and intrested in cine field', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-03 05:56:22', 104, '2024-08-03 03:50:14', 0, NULL, 1),
(20611, 'Sivachandran S', '13', '9894526067', '8220070436', 'sivachandran03@gmail.com', '2003-06-06', 21, '3', '2', 'Selvendran S', 'Watchman', 8500.00, 1, 0.00, 15000.00, 'NAGERCOIL', 'NAGERCOIL', '2408030005', '', '1', 'upload_files/candidate_tracker/64637936047_sivachandranresume.pdf', NULL, '1', '2024-08-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-03 06:34:11', 1, '2024-08-03 06:40:00', 0, NULL, 1),
(20612, 'Ragunath', '6', '6383958167', '', 'ragu07042000@gmail.com', '2001-04-07', 23, '2', '2', 'rumugam', 'farmer', 24000.00, 2, 0.00, 18000.00, 'trichy', 'velacherry', '2408030006', '50', '1', 'upload_files/candidate_tracker/8966578839_ragunath.pdf', NULL, '1', '2024-08-03', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is littlr bit only good but his performance is not good also he is more intrested in media industry,so sustainable doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-03 06:46:12', 104, '2024-08-03 03:51:46', 0, NULL, 1),
(20613, 'Rajasree', '5', '8925847629', '7338975013', 'reshmareshu2409@gmail.com', '2001-02-13', 23, '2', '2', 'Kumararaja', 'Driver', 40000.00, 1, 20.00, 25.00, 'Chennai', 'Chennai', '2408030007', '50', '2', 'upload_files/candidate_tracker/63169434814_CV2024071711135943.pdf', NULL, '1', '2024-08-03', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not selected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55567', '55557', '1970-01-01', 1, '2024-08-03 06:52:00', 104, '2024-08-03 03:52:28', 0, NULL, 1),
(20614, 'mohamed thanish', '31', '9003070375', '9943605651', 'mohamedthanish022@gmail.com', '2001-08-24', 22, '3', '2', 'abdul nazir', 'usdiness', 40000.00, 1, 0.00, 35000.00, 'chennai', 'chennai', '2408030008', '', '1', 'upload_files/candidate_tracker/99654982440_Thanishcvpdf.pdf', NULL, '1', '2024-08-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-03 09:13:27', 104, '2024-08-03 04:50:18', 0, NULL, 1),
(20615, '', '0', '9003070365', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408030009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-03 09:19:08', 0, NULL, 0, NULL, 1),
(20616, 'ROSY A', '4', '7558155240', '', 'rosy110902@gmail.com', '2002-09-11', 21, '2', '2', 'AROCKIYASAMY S', 'Driver', 10000.00, 2, 0.00, 15000.00, 'Thirumalai samuthiram Thanjavur', 'Thirumalai samuthiram, Thanjavur', '2408030010', '1', '1', 'upload_files/candidate_tracker/98646725675_ROSYResume.pdf', NULL, '1', '2024-08-05', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-03 11:02:02', 104, '2024-08-05 04:05:32', 0, NULL, 1),
(20617, '', '0', '9092568177', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408040001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-04 06:52:57', 0, NULL, 0, NULL, 1),
(20618, 'Kavya A', '4', '8248476327', '8637656295', 'kavyaa072002@gmail.com', '2002-06-07', 22, '2', '2', 'B. Arul jothi', 'Electrician', 60000.00, 2, 0.00, 15000.00, 'Thirunageshwaram', 'Thirunageshwaram', '2408040002', '1', '1', 'upload_files/candidate_tracker/29536680247_Resume2.pdf', NULL, '1', '2024-08-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile, fresher, bsc and msc maths, ,,,,,,,father electrician, sister worked in CTS and currently releved due to marriage next month 8th,,,,,from kumbakonam,,, but ready to relocate to tnj........have no laptop ,,,,expected 12 to 13k....ready to join kindly check once', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-04 08:05:22', 104, '2024-08-05 04:05:05', 0, NULL, 1),
(20619, 'praveen T', '6', '9342004735', '7397427381', 'praaven1965@gmail.com', '2003-12-21', 20, '2', '2', 'anaky', 'each', 120000.00, 1, 0.00, 16000.00, 'chennai', 'chennai', '2408050001', '50', '1', 'upload_files/candidate_tracker/79741914401_Praveen3.pdf', NULL, '1', '2024-08-05', 0, '', '3', '59', '2024-08-06', 192000.00, '', '3', '2024-08-30', '2', 'Communication Ok fresher have a plan to go with MBA Corres Can give a try and analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-08-06', 1, '2024-08-05 04:15:55', 104, '2024-08-06 05:43:12', 0, NULL, 1),
(20620, 'ARIYANAYAKAM P', '6', '8056585395', '9342004735', 'ariahnariahn22@gmail.com', '2003-09-26', 20, '2', '2', 'Pool pandi/pechiyammal', 'Driving', 7000.00, 1, 0.00, 15000.00, 'Kargil nagar thiruvottiyur', 'Kargil nagar thiruvottiyur', '2408050002', '50', '1', 'upload_files/candidate_tracker/96345651585_ARIYANAYAGAM.P202406261714300000.pdf', NULL, '1', '2024-08-09', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is very long distance and  communication also not well . so not fit for my team ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-08-05 04:16:23', 104, '2024-08-09 03:34:35', 0, NULL, 1),
(20621, 'naresh Kumar p', '6', '7358607647', '', 'nareshkumarprakasa1@gmail.com', '1995-06-02', 29, '2', '2', 'Prakasa', 'Trader', 15000.00, 2, 0.00, 200000.00, 'minjur', 'minjur', '2408050003', '50', '1', 'upload_files/candidate_tracker/47142106661_IMG20240805101844pdfcompressed.pdf', NULL, '1', '2024-08-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '', '', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-05 04:50:53', 104, '2024-08-05 10:37:38', 0, NULL, 1),
(20622, '', '0', '7305289142', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408050004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-05 04:55:15', 0, NULL, 0, NULL, 1),
(20623, 'Jeevananth', '6', '9361136755', '9715874944', 'skjeeva5422@gmail.com', '2009-08-05', 0, '2', '2', 'Srinivasan', 'PowerLoom Weaver', 18000.00, 0, 15000.00, 18000.00, 'Komarapalayam', 'Teynampet', '2408050005', '50', '2', 'upload_files/candidate_tracker/86642215001_Jeevananthresume.pdf', NULL, '2', '2024-08-05', 0, '', '3', '59', '2024-08-12', 216000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in calling Have prv exp documents can give a try in our role and analyse in 7 days training', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-08-19', 1, '2024-08-05 05:01:49', 60, '2024-08-16 02:44:36', 0, NULL, 1),
(20624, 'Kaviya', '4', '9894549634', '8489717816', 'kaviyasri1222@gmail.com', '2002-06-12', 22, '3', '2', 'Balaji', 'Driver', 300000.00, 1, 0.00, 30000.00, 'ATTUR', 'Chennai', '2408050006', '', '1', 'upload_files/candidate_tracker/97823607437_CV2024071616474030.pdf', NULL, '1', '2024-08-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-05 05:28:38', 1, '2024-08-05 05:33:43', 0, NULL, 1),
(20625, '', '0', '9342004736', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408050007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-05 05:34:53', 0, NULL, 0, NULL, 1),
(20626, 'mohammed abdul khadar ashik s', '6', '9150908299', '9941497831', 'adbulsu55@gmail.com', '2001-09-11', 22, '2', '2', 'sulficar Ali a', 'waste paper mart', 20000.00, 1, 0.00, 18000.00, 'mandaveli', 'mandaveli', '2408050008', '50', '1', 'upload_files/candidate_tracker/89580446410_LPRESUMEABDULremoved.pdf', NULL, '1', '2024-08-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested in telesales', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-08-05 05:49:09', 104, '2024-08-05 03:35:01', 0, NULL, 1),
(20627, 'Yuvaraj G', '5', '9047333326', '8056930985', 'yuvaraj9671@gmail.com', '2003-07-11', 21, '1', '2', 'Ganesan', 'Farmer', 10000.00, 0, 15000.00, 20000.00, 'Alamarakizakku street, pudur, Kallakurichi (dt)', 'Arumbakkam, Chennai', '2408050009', '', '2', 'upload_files/candidate_tracker/79318012218_YuvarajResume.pdf', NULL, '2', '2024-08-05', 1, 'Pradeep kumar.T', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales profession', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-08-05 06:06:06', 104, '2024-08-06 07:14:06', 0, NULL, 1),
(20628, 'Karthick m', '5', '7550110941', '9150068314', 'karthick.krish2605@gmail.com', '1989-12-04', 34, '1', '2', 'Adhi liakshmi', 'Designer', 35000.00, 1, 400000.00, 500000.00, 'Chennai', 'Chennai', '2408050010', '', '2', 'upload_files/candidate_tracker/5600041103_KARTHIRESUME2.pdf', NULL, '1', '2024-08-05', 30, '55746', '3', '59', '2024-09-12', 360000.00, '', '5', '1970-01-01', '1', 'communication Ok have relevant Exp can give a try in our role Gaurav Sir Commitment 2L Life plus 10MF  in Oct then 40K increment in Annual', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '2024-09-12', 1, '2024-08-05 07:20:35', 60, '2024-08-16 04:10:44', 0, NULL, 1),
(20629, 'Adshaya Raghu R', '11', '8220046119', '8668780683', 'raghuraj5015@gmail.com', '1998-08-28', 25, '6', '2', 'Raghavan D', 'Office Assistant', 30000.00, 1, 0.00, 18000.00, 'Nagercoil', 'Navalur', '2408050011', '', '1', 'upload_files/candidate_tracker/44531477960_AdshayaRAGHUR202408031951050000.pdf', NULL, '1', '2024-08-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-05 07:35:25', 104, '2024-08-05 04:12:08', 0, NULL, 1),
(20630, 'Augalsha Ligi A', '11', '6374870984', '', 'ligiagal0410@gmail.com', '2001-10-04', 22, '6', '2', 'Augustin a', 'Civil engineer', 35.00, 1, 0.00, 18000.00, 'Nagercoil', 'Velachery', '2408050012', '', '1', 'upload_files/candidate_tracker/61911073933_CV202408010946419.pdf', NULL, '1', '2024-08-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-05 07:36:29', 104, '2024-08-05 04:12:34', 0, NULL, 1),
(20631, 'Keerthana', '4', '7806920919', '', 'keerthana19200@gmail.com', '2000-07-19', 24, '3', '2', 'Sundarajan', 'Kovil', 7000.00, 1, 10000.00, 20000.00, 'Manargudi', 'Manargudi', '2408050013', '', '2', 'upload_files/candidate_tracker/73325840595_DocScanner9Apr2024211pm.pdf', NULL, '1', '2024-08-07', 10, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT FOR SALES ', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-05 10:16:58', 104, '2024-08-07 03:36:37', 0, NULL, 1),
(20632, 'B kautham raj', '4', '9360301841', '9384901163', 'kautham68@gmail.com', '2004-01-23', 20, '6', '2', 'S.Nagalatha', 'Special school teacher', 30000.00, 1, 0.00, 18000.00, 'Madurai', 'Chennai', '2408050014', '', '1', 'upload_files/candidate_tracker/69306509146_Resumepdf1.pdf', NULL, '1', '2024-08-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-05 11:48:11', 1, '2024-08-05 11:51:33', 0, NULL, 1),
(20633, 'Subash M', '6', '8124934121', '9677276618', 'saisubash289@gmail.com', '2001-05-28', 23, '2', '2', 'Annapoorani', 'Tailor', 25000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2408050015', '1', '2', 'upload_files/candidate_tracker/84298904133_SUBASHRESUME.pdf', NULL, '1', '2024-08-16', 0, '', '3', '59', '2024-08-19', 216000.00, '', '3', '2024-08-21', '2', 'Communication Ok Have Exp in paisa bazarr for an year in business loan can give a try and check in 7 days training for your roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '2024-08-19', 1, '2024-08-05 12:02:52', 104, '2024-08-22 05:17:27', 0, NULL, 1),
(20634, 'Kothollu Devendra', '5', '7093036275', '8142413728', 'devendra2015kothollu@gmail.com', '1997-01-03', 27, '2', '2', 'K Reddeppa', 'Farmer', 20000.00, 1, 25000.00, 35000.00, 'madanapalli', 'Bangalore', '2408050016', '1', '2', 'upload_files/candidate_tracker/76412755841_Devendra.Kresume00111721563129680KOTHOLLUDEVENDRA.pdf', NULL, '1', '2024-08-12', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and salary expectation is high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-08-05 01:53:00', 126, '2024-08-12 12:45:24', 0, NULL, 1),
(20635, 'praveen kumar', '6', '6369840612', '', 'kpkjob123@gmail.com', '2001-08-21', 22, '2', '2', 'Kumar', 'Cooli', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2408050017', '50', '2', 'upload_files/candidate_tracker/59944924680_PRAVEENKUMAR.KRESUME.pdf', NULL, '1', '2024-08-06', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-05 02:13:53', 104, '2024-08-06 04:29:16', 0, NULL, 1),
(20636, 'G Dillibabu', '21', '7989458107', '', 'dillibabu517126@gmail.com', '1994-08-28', 29, '3', '1', 'G Munirathnam', 'Business', 20000.00, 1, 19500.00, 25.00, 'Bangalore', 'Bangalore', '2408060001', '', '2', 'upload_files/candidate_tracker/97256804010_updatedresume.pdf', NULL, '1', '2024-08-06', 2, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-06 04:15:04', 1, '2024-08-06 05:15:04', 0, NULL, 1),
(20637, 'Kiruba Isravel', '5', '6379228372', '', 'kiruba.isravel@gmail.com', '2002-12-16', 21, '1', '2', 'Isravel J', 'Electrician', 20000.00, 1, 132000.00, 300000.00, 'Thoothukudi', 'Chennai', '2408060002', '', '2', 'upload_files/candidate_tracker/10455489034_KirubaIsravel.pdf', NULL, '1', '2024-08-06', 0, '55760', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-08-06 04:38:50', 60, '2024-08-16 05:05:51', 0, NULL, 1),
(20638, 'Kaviya.B', '6', '8489717816', '9894549634', 'kaviyasri1222@gmail.com', '2002-06-12', 22, '2', '2', 'Balaji.G', 'Business man', 20000.00, 1, 0.00, 30000.00, 'Salem (attur)', 'Cheppakam (bells road)', '2408060003', '1', '1', 'upload_files/candidate_tracker/48504401482_CV2024071616474030.pdf', NULL, '1', '2024-08-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales and tele calling too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-08-06 04:56:19', 104, '2024-08-06 04:31:01', 0, NULL, 1),
(20639, 'M.Priyadharshini', '5', '7418478715', '9003211807', 'Priyadharshini26ms07@gmail.com', '2003-07-26', 21, '1', '2', 'M.Soundariya', 'Daily worker', 15000.00, 1, 25000.00, 25000.00, 'Veppampattu', 'Veppampattu', '2408060004', '', '2', 'upload_files/candidate_tracker/45759340539_DocScanner08Jul2024115pm.pdf', NULL, '1', '2024-08-06', 0, '55814', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'i have moved this profile to karthika and she as rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-08-06 05:12:23', 104, '2024-08-06 04:32:04', 0, NULL, 1),
(20640, 'Vimalraj V', '6', '8754086911', '9452073375', 'mahivimal64@gmail.com', '2001-04-28', 23, '2', '2', 'Vijayan J', 'Farmer', 15000.00, 2, 0.00, 25000.00, '135 ,Vannarapettai St Olakkur Tindivanam Taluk .', '135 ,Vannarapettai St Olakkur Tindivanam Taluk', '2408060005', '1', '1', 'upload_files/candidate_tracker/74259924428_NEWVIMALRAJ.V.pdf', NULL, '1', '2024-08-06', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate only interest on it related work so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-08-06 05:13:41', 104, '2024-08-06 04:32:45', 0, NULL, 1),
(20641, 'Sankar', '6', '7305577341', '', 'Sankark20022001@gmail.com', '2001-02-20', 23, '2', '2', 'Kumar', 'Farmer', 250000.00, 1, 0.00, 1.00, 'No 138 bajani kovil street Tindndivanam olakkur', 'No 138 bajani kovil street Tindivanam', '2408060006', '1', '1', 'upload_files/candidate_tracker/50845054183_K.SANKARRESUMEconverted11.pdf', NULL, '1', '2024-08-06', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good also like little bit attitude charater,then sustainable doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-08-06 05:14:50', 104, '2024-08-06 04:33:16', 0, NULL, 1),
(20642, 'meganathan .p', '11', '8870250143', '', 'meganathan.p.98@gmail.com', '2000-09-26', 23, '6', '2', 'periyasamy .k', 'corpendar', 10000.00, 1, 0.00, 14000.00, 'dindigul', 'chennai', '2408060007', '', '1', 'upload_files/candidate_tracker/21019837947_MegaResume3.pdf', NULL, '1', '2024-08-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-06 05:50:30', 104, '2024-08-06 04:18:10', 0, NULL, 1),
(20643, 'M. SINDHUJA', '6', '7418613264', '9043840301', 'sindhuja10bba@gamil.com', '2003-09-10', 0, '2', '2', 'P.Murugesan', 'Daily work', 10000.00, 2, 0.00, 20000.00, 'Pellankuppam Village , chengalpattu district', 'Kattankuladhur, chengalpattu district', '2408060008', '1', '1', 'upload_files/candidate_tracker/11398847852_sindhujaresume.pdf', NULL, '1', '2024-08-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open with the Distance too long she is from kattangulathur Father not ok wiht this', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-08-06 05:54:01', 104, '2024-08-06 04:35:04', 0, NULL, 1),
(20644, 'Nishanthi', '6', '6379015811', '', 'sakthiravathi96@gmail.com', '2000-06-03', 24, '2', '2', 'Ramakrishnan', 'Farmer', 20000.00, 1, 12000.00, 15000.00, 'Nanganallur', 'Nanganallur', '2408060009', '1', '2', 'upload_files/candidate_tracker/34829371024_Nishanthi.PResume.docx', NULL, '1', '2024-08-06', 6, '', '3', '59', '2024-08-19', 180000.00, '', '3', '2024-10-07', '2', '6 months Exp in Calling have the documents 5050 sustainability need to analyse in 7 days', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '2024-08-19', 1, '2024-08-06 06:29:57', 104, '2024-08-22 06:50:24', 0, NULL, 1),
(20645, 'D. Nithesh Kumar', '6', '8608236703', '7449236703', 'nitheshstark1310@gmail.com', '2000-01-30', 24, '2', '2', 'D. Suresh Kumar', 'Sales man', 11000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2408060010', '50', '2', 'upload_files/candidate_tracker/37077883355_1000017014.pdf', NULL, '1', '2024-08-06', 0, '', '3', '59', '2024-08-12', 192000.00, '', '5', '1970-01-01', '2', 'Fresher for our role Need to analyse in 7 days training  and confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2024-08-08', 1, '2024-08-06 06:41:35', 104, '2024-08-09 06:13:36', 0, NULL, 1),
(20646, 'Deepak raj', '4', '9384949577', '8667607336', 'deepakdevuse@gmail.com', '1995-03-30', 29, '2', '2', 'Muruganantham', 'Farmer', 8000.00, 2, 0.00, 25000.00, 'Vadugapatti', 'Perungalathur', '2408060011', '45', '2', 'upload_files/candidate_tracker/14715263319_IMG0168.pdf', NULL, '1', '2024-08-06', 0, '', '3', '59', '2024-08-08', 280000.00, '', '3', '2024-08-09', '1', 'Communication Have Exp in Paisa for 6 months career gap for an year Can give a try in our role Location should check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '2024-08-08', 1, '2024-08-06 06:58:12', 60, '2024-08-16 04:27:47', 0, NULL, 1),
(20647, 'Akalya.V', '11', '8668144921', '9789566441', 'akalya03042004@gmail.com', '2004-04-03', 20, '3', '2', 'Vasu Dean.p', 'Machine operator', 120000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2408060012', '', '1', 'upload_files/candidate_tracker/37706265063_GraphicDesignerResume202401292312490000.pdf', NULL, '1', '2024-08-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-06 06:59:17', 104, '2024-08-06 04:14:39', 0, NULL, 1),
(20648, 'Basiya Farheen MD', '11', '8309494970', '9360057322', 'basiyaakthar.2005@gmail.com', '2003-12-01', 20, '3', '2', 'MD. Jafar', 'Medical representative', 200000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2408060013', '', '1', 'upload_files/candidate_tracker/52680692439_DOC20240603WA0023..pdf', NULL, '1', '2024-08-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-06 06:59:18', 104, '2024-08-06 04:16:09', 0, NULL, 1),
(20649, 'Ashok Kumar N', '5', '8825608573', '9176487062', 'ashokalbert65@gmail.com', '1998-04-10', 26, '2', '2', 'JAYANTHI', 'Housewife', 25000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2408060014', '1', '2', 'upload_files/candidate_tracker/76689485836_AshokNewResume202407202317430000.pdf', NULL, '1', '2024-08-12', 30, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate performance and communication little bit Only good ,but sutainable doubt also expected high package', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2024-08-06 07:30:19', 104, '2024-08-12 02:29:19', 0, NULL, 1),
(20650, 'Vishwakarma Ganesh', '5', '7676897539', '', 'babysid2003@gmail.com', '2000-07-03', 24, '2', '2', 'Ashok kumar', 'Security', 50000.00, 2, 430000.00, 500000.00, 'Bengaluru', 'Bengaluru', '2408060015', '1', '2', 'upload_files/candidate_tracker/91512697394_GaneshResume.pdf', NULL, '1', '2024-08-06', 0, '', '3', '59', '2024-08-19', 440000.00, '', '4', '2025-07-03', '1', 'Communication Ok Have  exp in our relevant role but not in a long can give a try with suresh sir and sathish sir  approval we hired him', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '2024-08-19', 1, '2024-08-06 07:32:52', 126, '2024-08-20 03:22:28', 0, NULL, 1),
(20651, 'Nandhakumar j', '6', '9361463143', '', 'jnandhakumar500@gmail.com', '2000-09-03', 23, '2', '2', 'Saraswathi', 'Housemaid', 10000.00, 1, 0.00, 2.70, '104 Raja Street ambalur trupattur', '18/16 General Swamy Street Triplicane Chennai', '2408060016', '50', '1', 'upload_files/candidate_tracker/58367030439_Nandhakumarjfs.pdf', NULL, '1', '2024-08-16', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'silent person and not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-06 08:00:12', 104, '2024-08-16 03:31:16', 0, NULL, 1),
(20652, 'Saravana Kumar', '6', '9566592655', '', 'saravana13122001@gmail.com', '2001-12-13', 22, '1', '2', 'Velmurugan', 'Former', 10000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2408060017', '', '2', 'upload_files/candidate_tracker/13167107514_eximio7sk.pdf', NULL, '1', '2024-08-06', 0, 'Saran yogi', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate not suitable for sales profile , communication not good field work not interest', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-08-06 09:24:04', 104, '2024-08-06 04:41:14', 0, NULL, 1),
(20653, 'Ajith kumar', '6', '9629851998', '', 'ajithgsk4@gmail.com', '1995-12-14', 28, '1', '2', 'Nagarajan', 'Process associate', 70000.00, 2, 15000.00, 18000.00, 'Chennai Ambattur', 'Chennai Ambattur', '2408060018', '', '2', 'upload_files/candidate_tracker/2037913809_Ajitheximio.pdf', NULL, '1', '2024-08-06', 0, 'Charan yogi', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate not suitable for sales profile , communication not good field work not interest', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-08-06 09:24:22', 104, '2024-08-06 04:41:37', 0, NULL, 1),
(20654, '', '0', '8778689959', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408060019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-06 09:29:41', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20655, 'Pavithra sivalingam', '6', '9025758081', '6380104707', 'pavithra98849@gmail.com', '2002-01-31', 22, '2', '2', 'Jothiga', 'Farmer', 200000.00, 4, 15000.00, 20000.00, 'Vaniyambadi', 'Vadapalani', '2408060020', '1', '2', 'upload_files/candidate_tracker/88235127640_RESUME.pdf', NULL, '1', '2024-08-07', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is not good ,also she have pronunciation issue and voice is very low.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2024-08-06 12:37:04', 104, '2024-08-07 03:37:08', 0, NULL, 1),
(20656, 'venkatesh', '4', '9962133054', '', 'Venkateshprabhu105@gmail.com', '1999-03-07', 25, '2', '2', 'ganesh and sakthi', 'fresher', 35000.00, 1, 0.00, 17000.00, 'gemini parson apartment  anna salai', 'gem parson apartment', '2408060021', '56', '1', 'upload_files/candidate_tracker/32054787072_Resume.pdf', NULL, '1', '2024-08-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-06 02:32:30', 1, '2024-08-06 02:42:21', 0, NULL, 1),
(20657, '', '0', '9701194102', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408070001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-07 04:02:38', 0, NULL, 0, NULL, 1),
(20658, 'SURYA K', '6', '9488937663', '9344114713', 'surya201102@gmail.com', '2002-11-20', 21, '2', '2', 'KANNAN P', 'Driver', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2408070002', '50', '1', 'upload_files/candidate_tracker/64913100912_SURYAKResume.pdf', NULL, '1', '2024-08-07', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Hi suggest fresher salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-07 04:41:47', 104, '2024-08-07 03:37:25', 0, NULL, 1),
(20659, 'Swathy.G', '11', '9840703033', '9840199974', 'swathyg911@gmail.com', '2000-11-09', 23, '6', '2', 'Ganesh.M', 'Branch manager', 35000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2408070003', '', '1', 'upload_files/candidate_tracker/1024753522_ResumeSwathy.G.pdf', NULL, '1', '2024-08-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-07 04:50:12', 104, '2024-08-07 05:39:43', 0, NULL, 1),
(20660, 'DHANUSHKUMAR T', '13', '9344332652', '', 'dhanushtamil781@gmail.com', '2003-06-02', 21, '3', '2', 'TAMILARASAN', 'Farmer', 20000.00, 2, 0.00, 18000.00, 'Dharmapuri', 'Chennai', '2408070004', '', '1', 'upload_files/candidate_tracker/868079255_Document14.pdf', NULL, '1', '2024-08-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-07 04:53:46', 1, '2024-08-07 05:38:24', 0, NULL, 1),
(20661, 'Hariharan', '13', '8610019110', '9043928564', 'rtrhari5006@gmail.com', '1999-03-13', 25, '3', '2', 'Muniraj', 'ABM in mtc', 30000.00, 1, 0.00, 15000.00, 'Chennai 600100', 'Chennai 600100', '2408070005', '', '1', 'upload_files/candidate_tracker/28164692780_hariharanm2.pdf', NULL, '1', '2024-08-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-07 04:57:19', 1, '2024-08-07 05:05:22', 0, NULL, 1),
(20662, 'Sathish Kumar', '13', '8508679726', '9688854771', 'sathishshiva2202@gmail.com', '2000-06-05', 24, '3', '2', 'FATHER', 'Formar', 25000.00, 3, 0.00, 20000.00, '186, Annai Street Kelur,T V Malai District 606907', 'Kelur', '2408070006', '', '1', 'upload_files/candidate_tracker/77501592400_SathishKumar.EResume.docx', NULL, '1', '2024-08-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-07 05:00:49', 1, '2024-08-07 05:09:09', 0, NULL, 1),
(20663, 'S.PRASANTH', '6', '8660550103', '9380636887', 'prasanthsunil00@gmail.com', '1997-01-17', 27, '2', '2', 'SANMUGAM', 'Telecaller', 25000.00, 1, 25000.00, 26000.00, 'Tamilnadu, Erode', 'Bansangri', '2408070007', '1', '2', 'upload_files/candidate_tracker/2888803019_prsanth3.pdf', NULL, '1', '2024-08-07', 1, '', '3', '59', '2024-08-19', 240000.00, '', '3', '2025-01-03', '2', 'Communication but no sustainability in his previous exp can give a try and check need to analyse in 7 days training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-08-19', 1, '2024-08-07 05:40:31', 126, '2024-08-19 03:50:23', 0, NULL, 1),
(20664, 'Dharani', '11', '9944024714', '9500948909', 'dd5192230@gmail.com', '2002-09-04', 21, '3', '2', 'Ravisundaram', 'Contractor', 72000.00, 2, 0.00, 20000.00, 'Thiruvarur', 'Thiruvarur', '2408070008', '', '1', 'upload_files/candidate_tracker/84507376046_DhaariCV1.pdf', NULL, '1', '2024-08-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-07 05:43:38', 104, '2024-08-07 05:41:57', 0, NULL, 1),
(20665, 'G.sweeadha', '4', '9025383005', '', 'sweeadhaganasha16@gmail.com', '1998-05-16', 26, '3', '2', 'Ganesan.s', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Mayilduthurai', 'Mayilduthurai', '2408070009', '', '1', 'upload_files/candidate_tracker/75643399835_Untitled.pdf', NULL, '1', '2024-08-07', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'LONG DISTANCE EXPECTED HIGH', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-07 06:00:41', 104, '2024-08-07 03:38:34', 0, NULL, 1),
(20666, 'Varsha Madhusoodanan', '11', '6385118543', '', 'vidhya.anvesaki@gmail.com', '2002-03-10', 22, '6', '2', 'Madhusoodanan pillai', 'Fresher', 500000.00, 2, 0.00, 10000.00, 'Tambaram, Chennai', 'Tambaram, Chennai', '2408070010', '', '1', 'upload_files/candidate_tracker/53041489252_Varsharesume.pdf', NULL, '1', '2024-08-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-07 06:03:22', 104, '2024-08-07 05:40:28', 0, NULL, 1),
(20667, 'Mohammed shamil', '6', '7708423344', '7092934922', 'shamilboxii@gmail.com', '2002-10-08', 0, '2', '2', 'Shahin.H', 'Telesales', 19000.00, 1, 0.00, 19000.00, 'Chennai', 'Chennai', '2408070011', '50', '1', 'upload_files/candidate_tracker/4994093421_Resumeshamil.pdf', NULL, '1', '2024-08-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not willing to work in saturday and sunday', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-07 06:07:32', 104, '2024-08-07 03:39:05', 0, NULL, 1),
(20668, 'Megha madhusoodanan', '11', '9940691272', '', 'vidhya.murya88@gmail.com', '2002-03-10', 22, '6', '2', 'Madhusoodanan Pillai', 'Shipping Manager', 50000.00, 2, 0.00, 10000.00, 'Thambaram', 'Thambaram', '2408070012', '', '1', 'upload_files/candidate_tracker/34818913604_megharesume.pdf', NULL, '1', '2024-08-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-07 06:09:20', 104, '2024-08-07 05:43:28', 0, NULL, 1),
(20669, 'nishanth.l', '6', '6369485997', '', 'nishanthlawgen1974@gmail.com', '2002-04-01', 22, '1', '2', 'sofia', 'bank', 100000.00, 1, 0.00, 15000.00, 'perumbakkam', 'perumbakkam', '2408070013', '', '1', 'upload_files/candidate_tracker/64812835550_NISHANTHRESUME.pdf', NULL, '1', '2024-08-07', 0, 'saranyogi', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate not suitable for sales profile , communication not good field work not interest', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-08-07 06:18:58', 104, '2024-08-07 03:39:29', 0, NULL, 1),
(20670, 'THIRUPATHI M', '6', '9751235519', '', 'thirucivil1122@gmail.com', '1999-04-25', 25, '2', '2', 'Murugesan', 'Farmers', 12000.00, 3, 0.00, 2.50, 'Krishnagiri District', 'Chennai', '2408070014', '50', '1', 'upload_files/candidate_tracker/85698105050_THIRURESUME..pdf', NULL, '1', '2024-08-07', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate looking for customer support job ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-07 06:37:26', 104, '2024-08-07 03:39:49', 0, NULL, 1),
(20671, 'K.pothish raj', '6', '8428683665', '9500181810', 'pothishraj360@gmail.com', '2002-11-10', 21, '2', '2', 'S.kumar', 'Driver', 2000000.00, 1, 0.00, 15000.00, 'Tondirpet chennai', 'Chennai', '2408070015', '50', '1', 'upload_files/candidate_tracker/41556853381_pothishraj.pdf', NULL, '1', '2024-08-09', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-07 06:47:44', 104, '2024-08-09 03:39:37', 0, NULL, 1),
(20672, 'Anthony Karthick RP', '6', '9551088895', '9087871031', 'anthonykarthick2002@gmail.com', '2002-09-01', 21, '2', '2', 'Ravichandran', 'Election', 25000.00, 1, 0.00, 18000.00, '12/8 Saiva muthaiya 4 th Street Royapettah Chennai', '12/8 Saiva muthaiya 4 th Street Royapettah Chennai', '2408070016', '42', '1', 'upload_files/candidate_tracker/45107803280_ANTOResume.docx', NULL, '1', '2024-08-07', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate mainly focus on our father business , just part time looking for the job so not fit for my team ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-08-07 09:17:56', 104, '2024-08-07 03:40:11', 0, NULL, 1),
(20673, 'T Sudarshan Reddy', '6', '9666301815', '7093939551', 'Siddusudarshan810@gmali.com', '2003-08-02', 21, '2', '2', 'T.gangi Reddy', 'Mason', 25000.00, 1, 0.00, 20000.00, 'Kalluru andhra pradesh', 'Madivala', '2408070017', '1', '1', 'upload_files/candidate_tracker/51656497_sudharshanresume2copy.pdf', NULL, '1', '2024-08-07', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No response from the candidate for further process', '5', '1', '', '2', '2', '', '2', '2024-08-31', '4', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-07 11:07:00', 126, '2024-08-07 06:21:23', 0, NULL, 1),
(20674, 'Shaik sameer', '6', '9493317086', '7997917086', 'sameersameer6777@gmail.com', '2003-11-16', 20, '2', '2', 'Shaik shafi', 'Driver', 25000.00, 1, 0.00, 20000.00, 'Kalluru andhra pradesh', 'Madivala', '2408070018', '1', '1', 'upload_files/candidate_tracker/88601292538_sameerresume.pdf', NULL, '1', '2024-08-07', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No response from him', '5', '2', '', '2', '2', '', '2', '2024-08-31', '4', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-07 11:07:09', 131, '2024-08-07 06:22:21', 0, NULL, 1),
(20675, 'Harshavardhini K', '11', '8778426186', '9788279904', 'harshavardhini2701@gmail.com', '2009-08-07', 0, '6', '2', 'Indira K', 'Home maker', 15000.00, 0, 0.00, 15000.00, 'Perambur', 'Perambur', '2408070019', '', '1', 'upload_files/candidate_tracker/64888262710_HarshavardhiniK.pdf', NULL, '1', '2024-08-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-07 11:45:53', 104, '2024-08-07 05:45:10', 0, NULL, 1),
(20676, 'Pavithra M', '4', '9344148767', '', 'pavithramohan012002@gmail.com', '2002-02-01', 22, '1', '2', 'Mohandoss', 'Tailor', 10000.00, 1, 0.00, 150000.00, 'Mannargudi', 'Mannargudi', '2408080001', '', '1', 'upload_files/candidate_tracker/39396227323_PavithraMResumefolder.pdf', NULL, '1', '2024-08-08', 0, '55803', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-08 04:25:08', 104, '2024-08-08 07:01:31', 0, NULL, 1),
(20677, 'Hari Karan', '6', '9345481132', '', 'harikaran1771@gmail.com', '2003-04-10', 21, '2', '2', 'N. LOGANATHAN', 'Real estate business', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2408080002', '50', '1', 'upload_files/candidate_tracker/28278786151_JOBRESUME1.pdf', NULL, '1', '2024-08-08', 0, '', '3', '59', '2024-08-12', 195000.00, '', '5', '1970-01-01', '1', 'Communication Have 8 months Exp but not in telecalling can be trained and try in our roles he may switch if he get some other apart from telecalling too', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-08-12', 1, '2024-08-08 04:44:19', 60, '2024-08-08 06:26:41', 0, NULL, 1),
(20678, 'Sathyan s', '6', '8838266908', '', 'sathyansk523@gmail.com', '2003-02-05', 21, '2', '2', 'M sampath', 'Machine mechanic', 25000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2408080003', '50', '1', 'upload_files/candidate_tracker/2306921935_SATHYANJOBRESUME1.pdf', NULL, '1', '2024-08-08', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and pereformance is low and his slang is different.then his voice is very low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-08 04:47:26', 104, '2024-08-08 03:56:13', 0, NULL, 1),
(20679, 'Narmatha m', '11', '6383373893', '6384085705', 'nishanarmatha123@gmail.com', '2002-03-21', 22, '6', '2', 'Elavarasi M', 'House Wife', 40000.00, 2, 0.00, 15000.00, 'Thiruvarur', 'Perambur', '2408080004', '', '1', 'upload_files/candidate_tracker/47045483469_NarmathaCV1.pdf', NULL, '1', '2024-08-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-08 05:26:25', 104, '2024-08-08 03:56:58', 0, NULL, 1),
(20680, 'Shakila Begam K', '11', '9943764063', '6384085705', 'shaliyanshaliyan93@gmail.com', '2003-01-28', 21, '3', '2', 'Ramjan Beevi K', 'House Wife', 30000.00, 1, 0.00, 15000.00, 'Thiruvarur', 'Arumbakkam', '2408080005', '', '1', 'upload_files/candidate_tracker/44977188440_SHAKILABEGAMKcv.pdf', NULL, '1', '2024-08-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-08 05:56:24', 104, '2024-08-08 03:57:20', 0, NULL, 1),
(20681, 'P  YUVANESHWARAN', '5', '9952937512', '', 'yuvaneshw60@gmail.com', '1999-11-10', 24, '3', '2', 'revathy.p', 'working', 300000.00, 1, 2.08, 3.50, 'chennai', 'chennai', '2408080006', '', '2', 'upload_files/candidate_tracker/95885205281_ProfessionalModernCVResume.pdf.pdf', NULL, '1', '2024-08-08', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Ask 80% hike from previous CTC', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-08-08 06:20:41', 104, '2024-08-08 03:58:07', 0, NULL, 1),
(20682, 'PARTHASARATHI S', '6', '9345740336', '', 'Parthasarathiss2002@gmail.com', '2002-03-23', 22, '2', '2', 'SELVAM N', 'FARMER', 60000.00, 1, 0.00, 15000.00, 'Namakkal', 'Saidepet', '2408080007', '50', '1', 'upload_files/candidate_tracker/39127304858_R2.docx', NULL, '1', '2024-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in the job roles travelled back to native not open to join', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-08 06:44:34', 104, '2024-08-09 03:34:59', 0, NULL, 1),
(20683, 'Vimalraj .m', '6', '8838684340', '', 'rajvimal86725@gmail.com', '1999-07-02', 25, '2', '2', 'Mooventhan', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Cuddalore', 'Chennai', '2408080008', '50', '2', 'upload_files/candidate_tracker/89519585437_vimalresume2.pdf', NULL, '1', '2024-08-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'long distance and not much look was good(because he need to go field work)', '5', '1', '', '1', '8', '', '2', '2024-08-10', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-08 06:48:23', 104, '2024-08-08 03:58:39', 0, NULL, 1),
(20684, '', '0', '7804548287', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408080009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-08 07:45:24', 0, NULL, 0, NULL, 1),
(20685, 'Priyanka', '5', '7904548287', '6374274630', 'Priyankaakshuu@gmail.com', '1997-10-08', 26, '1', '1', 'Mageshwari', 'Team lead', 25000.00, 1, 20000.00, 25000.00, 'Kodambakkam', 'Kodambakkam', '2408080010', '', '2', 'upload_files/candidate_tracker/66385473030_PRIYARESUME.pdf', NULL, '1', '2024-08-08', 0, '5111', '3', '59', '2024-09-04', 276000.00, '', '4', '2024-12-30', '2', 'Communicaiton Ok Have Expin calling relevant domain but no documents can give a try and check based on gaurav sir commitment offered', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55579', '55560', '2024-09-04', 1, '2024-08-08 08:11:10', 104, '2024-09-04 10:33:46', 0, NULL, 1),
(20686, '', '0', '9535130481', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408080011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-08 12:02:10', 0, NULL, 0, NULL, 1),
(20687, 'Mohamed khalith A', '6', '7305338201', '9941582575', 'mohamedkhalith202@gmail.com', '2003-12-15', 20, '2', '2', 'Jameela A', 'Teacher', 40000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2408080012', '50', '1', 'upload_files/candidate_tracker/99856291280_Imagetopdf18Jul20242.pdf', NULL, '1', '2024-08-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected - try for training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-08 01:59:48', 104, '2024-08-09 03:36:57', 0, NULL, 1),
(20688, 'SANTHOSHKUMAR.K', '6', '7094373173', '9965452410', 'santhoshkannan132@gmail.com', '2002-03-15', 22, '2', '2', 'Parents', 'Hotel business', 200000.00, 1, 16000.00, 18000.00, '26/1 near sriram therater college road musiri (tk)', 'No 12. Elangaliamman kovil arumbakkam', '2408090001', '50', '2', 'upload_files/candidate_tracker/26041560494_SANTHOSHRESUME11.docx', NULL, '1', '2024-08-09', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate pastexp is starhealth telecalling 6 months  and previos tele sales exp also but not proper relaving , but voice and communication also ok , but exp is 20k pre month , so  will check 7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-08-09 04:48:34', 104, '2024-08-09 03:41:25', 0, NULL, 1),
(20689, 'Rohith D', '6', '8220959934', '', 'rohithd200202@gmail.com', '2002-02-24', 22, '2', '2', 'dhanasekaran', 'conductor', 50000.00, 1, 0.00, 18000.00, 'chennai', 'erode', '2408090002', '1', '1', 'upload_files/candidate_tracker/89801446357_rohithd.pdf', NULL, '1', '2024-08-09', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate interested in iT Field ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-09 05:08:17', 104, '2024-08-09 03:37:13', 0, NULL, 1),
(20690, 'Anbarasan', '6', '7010923961', '', 'Anbarasank30@gmail.com', '2000-05-05', 24, '2', '2', 'Balakrishnan', 'Farmer', 200000.00, 3, 0.00, 20000.00, 'PUDUKKOTTAI', 'Ekkattuthangal', '2408090003', '50', '1', 'upload_files/candidate_tracker/61595743410_AnbarasanResume3.pdf.pdf', NULL, '1', '2024-08-20', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not have stability', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-09 05:46:03', 104, '2024-08-20 03:11:27', 0, NULL, 1),
(20691, 'Umesh T', '20', '9840083024', '8608069081', 'umeshthiru2003@gmail.com', '2003-07-24', 21, '2', '2', 'Thirumalai', 'Electrician', 15000.00, 1, 0.00, 15000.00, 'Manali,chennai', 'Manali,chennai', '2408090004', '50', '1', 'upload_files/candidate_tracker/44713970162_Umeshresume.pdf', NULL, '1', '2024-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-09 05:54:53', 1, '2024-08-09 06:03:55', 0, NULL, 1),
(20692, 'B. Hari hara sudha', '6', '6374110451', '9791172109', 'harivicky697@gmail.com', '2003-09-21', 20, '2', '2', 'Uma Baskaran', 'Watchman', 15000.00, 1, 0.00, 18000.00, 'Manimangalam', 'Villivakkam', '2408090005', '50', '1', 'upload_files/candidate_tracker/30810460402_HARIHARASUDHANresume.pdf', NULL, '3', '2024-08-09', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good,also pronunciation is not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-09 05:55:04', 104, '2024-08-09 03:37:30', 0, NULL, 1),
(20693, 'B.Udhayasankar', '6', '8122839984', '', 'sssankar1044@gmail.com', '2002-04-21', 22, '2', '2', 'M.Balu', 'Driver', 18000.00, 1, 15000.00, 20000.00, 'Kallakurichi', 'Guindy, Chennai', '2408090006', '1', '2', 'upload_files/candidate_tracker/81168291987_sankarcv.pdf', NULL, '1', '2024-08-09', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expect high salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-08-09 05:58:18', 104, '2024-08-09 04:55:54', 0, NULL, 1),
(20694, 'Pruthwiraj patil', '5', '7204042988', '7588670662', 'patilpruthwiraj94@gmail.com', '1994-11-02', 29, '2', '2', 'Shobha patil', 'House wife', 300000.00, 2, 31000.00, 35000.00, 'Dharwar', 'Marathahalli', '2408090007', '1', '2', 'upload_files/candidate_tracker/64547885082_DOC20230515WA0001.docx', NULL, '1', '2024-08-12', 30, '', '3', '59', '2024-08-23', 360000.00, '', '4', '2024-10-08', '2', 'Communication Ok Have exp in calling Can be trained in our roles verified the documents and considering the manager approval Processing the profile', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', '55555', '5151', '2024-08-28', 1, '2024-08-09 05:58:42', 60, '2024-09-26 03:55:25', 0, NULL, 1),
(20695, 'Suji', '6', '9361674283', '', 'princysuji275@gmail.com', '2000-10-14', 23, '3', '2', 'Venkatesan', 'Driver', 40000.00, 0, 17000.00, 20000.00, 'Kandigai', 'Kandigai', '2408090008', '', '2', 'upload_files/candidate_tracker/19651128843_sujiresume11.pdf', NULL, '1', '2024-08-09', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected ctc 16k and kindly check her exisiting work exp then proceed joining process', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-09 06:05:47', 104, '2024-08-09 03:37:55', 0, NULL, 1),
(20696, 'Vignesh v', '6', '6383304043', '', 'vigneshveludass79@gmail.com', '2000-11-13', 23, '2', '2', 'Veludass p', 'Tailor', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2408090009', '50', '1', 'upload_files/candidate_tracker/57440586717_VIGNESHRESUMEH.docx', NULL, '1', '2024-08-10', 0, '', '3', '59', '2024-08-26', 216000.00, '', '3', '2024-12-04', '1', 'Communication Ok have exp but not relevant one 5050 Can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-08-26', 1, '2024-08-09 06:08:58', 104, '2024-08-26 09:43:58', 0, NULL, 1),
(20697, 'S. Porkodi', '6', '7708351056', '9003292771', 'Porkodiselvam2001@gmailcom', '2001-11-20', 22, '3', '2', 'Selvam', 'Carpenter', 80000.00, 1, 0.00, 18000.00, 'Vandalour otteri', 'Urappakkam', '2408090010', '', '1', 'upload_files/candidate_tracker/62096951257_PORKODIRESUMERESUME.docx', NULL, '1', '2024-08-09', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and slang is not good .also she did not performed well in the interview', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-09 06:09:00', 104, '2024-08-09 03:38:17', 0, NULL, 1),
(20698, 'Pramod', '6', '8088659340', '', 'Parmoddparmodd6@gmail.com', '2001-07-01', 23, '2', '2', 'Dasappa', 'Telecaller', 25000.00, 1, 0.00, 18000.00, 'Ambedkar nagar bandeplaya bommanahalli post', 'Ambedkar nagar bandeplaya bommanahalli post', '2408090011', '1', '1', 'upload_files/candidate_tracker/98183850774_pramod.pdf', NULL, '1', '2024-08-09', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of Communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-09 06:14:42', 126, '2024-08-09 12:24:18', 0, NULL, 1),
(20699, 'Arivarasan S', '5', '8754675123', '9786019773', 'arivarasanmatheswari@gmail.com', '1993-06-12', 31, '2', '1', 'Matheswari', 'Staff nurse', 50000.00, 2, 15000.00, 15000.00, 'No 11 6th cross Azhagammalnagerstreetnerkuntram', 'Chennai', '2408090012', '50', '2', 'upload_files/candidate_tracker/29533630571_1720885728286101002.pdf', NULL, '1', '2024-08-10', 0, '', '1', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-08-09 06:24:55', 104, '2024-08-10 03:59:18', 0, NULL, 1),
(20700, 'Nandhini', '6', '9790289456', '7397235238', 'nn6586136@gmail.com', '2001-07-02', 0, '3', '2', 'Raja S', 'Auto Driver', 15000.00, 1, 15000.00, 18000.00, 'Chrompet', 'Chrompet', '2408090013', '', '2', 'upload_files/candidate_tracker/44918106453_RNandhini.pdf', NULL, '1', '2024-08-09', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected already experience person my suggestion 16 k', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-09 06:28:58', 104, '2024-08-09 03:41:50', 0, NULL, 1),
(20701, 'Stephan', '5', '7871742411', '', 'stephanofficial.06@gmail.com', '2000-06-06', 24, '2', '2', 'Subbulakshmi', 'House house', 23000.00, 2, 23000.00, 26000.00, 'No 91 Kamaraj nagar , Eranavoor chennai -600057', 'Chennai', '2408090014', '42', '2', 'upload_files/candidate_tracker/43853328641_STEPHANRFlowCVResume20240321.pdf', NULL, '1', '2024-08-09', 30, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-08-09 06:36:34', 104, '2024-08-09 03:39:07', 0, NULL, 1),
(20702, 'Santhosh kumar. P', '4', '6385367570', '9944259365', 'santhoshkumar01926@gmail.com', '2003-07-19', 21, '2', '2', 'Rajeshwari', 'Agriculture', 13000.00, 1, 0.00, 18000.00, 'ARIYATHUR VILLAGE POLUR thiruvannamalai District', 'Thiruverkadu Chennai', '2408090015', '50', '1', 'upload_files/candidate_tracker/57973136217_santhoshkumarresume2.pdf', NULL, '3', '2024-08-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-09 08:04:21', 1, '2024-08-09 08:14:26', 0, NULL, 1),
(20703, 'Hemilton I', '4', '8825449787', '9342047800', 'Hemilmee@gmail.com', '1999-08-05', 25, '2', '1', 'Sri Lakshmi S', 'Telesales', 15000.00, 2, 15000.00, 30000.00, 'Tambaram', 'T.Nagar', '2408090016', '50', '2', 'upload_files/candidate_tracker/6255595026_hemiltonI.pdf', NULL, '1', '2024-08-09', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-09 08:21:58', 1, '2024-08-09 08:33:14', 0, NULL, 1),
(20704, 'RAKSHITHA B', '6', '8660366909', '', 'rakshitharakshitha892@gmail.com', '2003-07-19', 21, '2', '2', 'pushpa', 'tailor', 100000.00, 1, 0.00, 20000.00, 'chanapattana', 'garvebavipalya', '2408090017', '1', '1', 'upload_files/candidate_tracker/19369547792_RakshithaB1.pdf', NULL, '1', '2024-08-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, good Communication skill and basic knowledge about insurance', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-09 11:26:37', 126, '2024-08-10 01:02:01', 0, NULL, 1),
(20705, 'Ramya', '6', '6360881606', '8123536976', 'ramyaramya8646@gmail.com', '2003-08-31', 20, '2', '2', 'Mamatha', 'Garments worker', 20000.00, 0, 0.00, 20000.00, 'Banglore', 'Anekal', '2408090018', '1', '1', 'upload_files/candidate_tracker/28702347462_CV2024052818422132.pdf', NULL, '1', '2024-08-10', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, Lagging in communication and Location Issue ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-09 11:42:10', 126, '2024-08-10 01:10:24', 0, NULL, 1),
(20706, 'Yashas M', '5', '9886980977', '9886778111', 'yashasbaby737@gmail.com', '1998-10-26', 25, '2', '2', 'Mahesh', 'Driver', 25000.00, 0, 27000.00, 35000.00, '#3 kanakapura road lakshmipura bangalore 560062', '#3 kanakapura road lakshmipura bangalore', '2408090019', '1', '2', 'upload_files/candidate_tracker/43090884232_yashasCV2024.docx', NULL, '1', '2024-08-10', 0, '', '3', '59', '2024-08-20', 276000.00, '', '3', '2024-11-29', '1', 'Communication Ok fresher for our roles have exp in Admin Need to train and analyse in 7 days training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '2024-08-20', 1, '2024-08-09 11:42:31', 126, '2024-08-20 03:21:47', 0, NULL, 1),
(20707, 'Sofiya S', '6', '9384257985', '7397050418', 'sofiya2502004@gmail.com', '2004-02-25', 20, '2', '2', 'Stalin durai', 'Cooly', 25.00, 1, 0.00, 25.00, 'Virudhunagar', 'Poonamalle', '2408090020', '1', '1', 'upload_files/candidate_tracker/26876026255_sofiyaresume.pdf', NULL, '1', '2024-08-10', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interest in sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-09 11:51:47', 104, '2024-08-10 04:48:18', 0, NULL, 1),
(20708, 'K VINEETHA', '6', '9948133010', '', 'kvinireddy1234@gmail.com', '2003-10-06', 20, '2', '2', 'K krishna Reddy', 'Employment', 20000.00, 2, 0.00, 250000.00, 'Rk layout, Shetty Halli, jallahalli, Bangalore', 'Rk layout, Shetty Halli, jallahalli, Bangalore', '2408090021', '1', '1', 'upload_files/candidate_tracker/84606368227_KVineethaRESUME1.docx', NULL, '1', '2024-08-10', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, Lack of Communication And Location Issue ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-09 12:25:22', 126, '2024-08-10 01:07:16', 0, NULL, 1),
(20709, '', '0', '9972674613', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408090022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-09 02:20:32', 0, NULL, 0, NULL, 1),
(20710, 'HemaVarshini.K.G', '11', '7299587030', '', 'kghemavarshini2002@gmail.com', '2002-08-08', 22, '6', '2', 'Kuppusamy M', 'Supervisor', 18000.00, 1, 0.00, 18000.00, 'Pallikaranai', 'Pallikaranai', '2408100001', '', '1', 'upload_files/candidate_tracker/69462164249_HemavarshiniMBAHR.pdf', NULL, '1', '2024-08-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-10 04:39:18', 104, '2024-08-10 11:09:26', 0, NULL, 1),
(20711, 'Renuka', '20', '8729009181', '8248943630', 'dhaanyaramanujam007@gmail.com', '1999-04-30', 25, '1', '1', 'Logesh govinthraj', 'Camera man', 30000.00, 1, 20000.00, 25000.00, 'Nungabakkam', 'Nungabakkam', '2408100002', '', '2', 'upload_files/candidate_tracker/40125119877_RenukaSnew01.pdf', NULL, '1', '2024-08-10', 0, '77852', '3', '59', '2024-08-19', 325000.00, '', '1', '1970-01-01', '2', 'Selected for Jagadeesh Team Can give a try and check in training communication Good Have Exp in calling Shriram Life', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '2024-08-19', 1, '2024-08-10 04:39:33', 104, '2024-08-22 06:51:03', 0, NULL, 1),
(20712, 'Vinoth D', '6', '6383459737', '9629036646', 'Vinothdhakshna12@gmail.com', '2001-06-12', 23, '2', '2', 'Dhakshana moorthi a', 'Teacher', 20000.00, 2, 0.00, 18500.00, 'Arakkonam', 'Chennai royapuram', '2408100003', '50', '1', 'upload_files/candidate_tracker/80053000721_AdobeScan10Aug2024.pdf', NULL, '1', '2024-08-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance - not much comfort with the timings', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-10 05:11:50', 104, '2024-08-10 04:07:32', 0, NULL, 1),
(20713, 'Durgaprasath M', '6', '9361239069', '', 'durgaprasathm2001@gmail.com', '2001-05-08', 23, '2', '2', 'Manigandan J', 'MRF (worker)', 25000.00, 1, 0.00, 18000.00, 'Arkkonam', 'Chennai (Royapuram)', '2408100004', '50', '1', 'upload_files/candidate_tracker/83864999845_durgaresume.pdf', NULL, '1', '2024-08-10', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good .also he did not spoke much more in the interview then his voice is very low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-10 05:13:00', 104, '2024-08-10 04:05:07', 0, NULL, 1),
(20714, 'ANANTH S J', '6', '8300668427', '7397566873', 'ananthsj950@gmail.com', '2002-09-20', 21, '2', '2', 'SUYAMBU K', 'Self employe', 25.00, 1, 0.00, 22000.00, '7/15 b, Nanthavanathu vilai, Thuckalay', 'Choolaimedu, Chennai', '2408100005', '50', '1', 'upload_files/candidate_tracker/31707586258_Myresume202408090723380000.pdf', NULL, '1', '2024-08-10', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skills is low and interested in Customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-10 05:24:32', 104, '2024-08-10 04:02:48', 0, NULL, 1),
(20715, '', '0', '8072115030', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408100006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-10 05:30:17', 0, NULL, 0, NULL, 1),
(20716, 'Suruthy', '4', '9345207826', '8838320324', 'anirvinya1223@gmail.com', '2000-11-23', 23, '2', '2', 'Sundaralakshmi', 'Home maker', 150000.00, 1, 22000.00, 25000.00, 'Vaduvur', 'Vaduvur', '2408100007', '1', '2', 'upload_files/candidate_tracker/44284814841_suruthyresumefinal1.pdf', NULL, '1', '2024-08-10', 19, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'expected high', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-10 06:02:27', 104, '2024-08-10 04:03:12', 0, NULL, 1),
(20717, 'Salman Rijivi', '6', '7871276484', '9944213107', 'salmanrijivi@gmail.com', '2001-02-19', 23, '2', '2', 'Mujibur Rahman', 'Daily wages', 144000.00, 1, 0.00, 18000.00, '8/11A,Muslim Street, Thennampatty,Dindigul', 'Sriperumbuthur', '2408100008', '1', '1', 'upload_files/candidate_tracker/11203256901_SalmanRijiviResume1.pdf', NULL, '1', '2024-08-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not comfort to work in Sales Calling  not interested\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-10 07:02:13', 104, '2024-08-10 04:03:54', 0, NULL, 1),
(20718, 'Stephen', '4', '6383550025', '8015884718', 'stephenste1224@gmail.com', '2004-05-12', 20, '2', '2', 'Xavier', 'Printer', 30000.00, 1, 0.00, 20000.00, 'Triplicane', 'Triplicane', '2408100009', '50', '1', 'upload_files/candidate_tracker/86477384030_resume.pdf', NULL, '1', '2024-08-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-10 07:25:57', 1, '2024-08-10 07:39:10', 0, NULL, 1),
(20719, 'Reshma k', '6', '6369718047', '9344227413', 'reshureshu0205@gmail.com', '2002-12-02', 21, '2', '2', 'Kuppan k', 'Mechanic', 15000.00, 1, 11000.00, 20000.00, 'Tiruttani', 'Tiruttani', '2408110001', '1', '2', 'upload_files/candidate_tracker/6316869906_ReshmaResume.pdf', NULL, '1', '2024-08-12', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is low ,also voice is low and long distance sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-08-11 03:01:22', 104, '2024-08-12 03:45:17', 0, NULL, 1),
(20720, '', '0', '8778114330', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408110002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-11 02:10:49', 0, NULL, 0, NULL, 1),
(20721, 'Akash.c', '6', '8825572425', '', 'akashsandy678@gmail.com', '2003-02-26', 21, '2', '2', 'Chennan .m', 'Vegetable business', 30000.00, 4, 14000.00, 20000.00, 'Villivakkam', 'Villivakkam', '2408110003', '56', '2', 'upload_files/candidate_tracker/92795786511_ResumeAkash.cFormat74.pdf', NULL, '1', '2024-08-12', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-11 02:56:34', 1, '2024-08-11 07:46:55', 0, NULL, 1),
(20722, 'Keerthi v', '6', '9025093541', '9787915514', 'keerthi3541@gmail.com', '2003-03-26', 21, '2', '2', 'Ramachandran.v', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Tiruttani', 'Tiruttani', '2408120001', '1', '1', 'upload_files/candidate_tracker/56660160062_KeerthiResume.docx', NULL, '1', '2024-08-12', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skil', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-12 04:32:46', 104, '2024-08-12 03:42:53', 0, NULL, 1),
(20723, 'M. SHANMUGA PANDI', '4', '9159677182', '9361216600', 'shanmugavira@gmail.com', '1995-06-13', 29, '2', '2', 'T.MURUGANANTHAM', 'Farmer', 10000.00, 2, 15000.00, 18000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2408120002', '1', '2', 'upload_files/candidate_tracker/88702051605_shanmugapandi20.09.2017.pdf', NULL, '1', '2024-08-12', 0, '', '3', '59', '2024-08-19', 180000.00, '', NULL, '1970-01-01', '1', 'Communication Ok fresher for our roles have exp in other domain seems to be confident but long run doubts a lot Can give a try and check', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-08-19', 1, '2024-08-12 04:47:27', 104, '2024-08-22 06:51:24', 0, NULL, 1),
(20724, 'HEMACHANDIRAN', '6', '6369847542', '9751712621', 'dhemachandran29@gmail.com', '2009-08-12', 0, '2', '2', 'Devaraj', 'Formar', 10000.00, 1, 0.00, 18000.00, '1/293,Kathiyavadi Ranipet district, 632 509', 'Triplicane, Chennai, 600014', '2408120003', '50', '1', 'upload_files/candidate_tracker/69308124064_HEMACHANDIRAN.pdf', NULL, '1', '2024-08-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-12 05:01:59', 60, '2024-08-12 04:24:44', 0, NULL, 1),
(20725, 'Mohan Raj.d', '5', '9677222258', '9789092776', 'dmohanraj84@gmail.com', '1993-05-28', 31, '2', '2', 'A.dhamaodhara', 'Srly ret', 300000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2408120004', '57', '2', 'upload_files/candidate_tracker/3177419416_MohanRajDResume.pdf', NULL, '1', '2024-08-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'on attended for interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-12 05:10:17', 104, '2024-08-28 07:06:42', 0, NULL, 1),
(20726, 'lakshmi priya a', '4', '9566235151', '', 'lakshmipriya150492@gmail.com', '1992-04-15', 32, '2', '1', 'arun r', 'it', 300000.00, 2, 22000.00, 30000.00, 'chennai', 'chennai', '2408120005', '57', '2', 'upload_files/candidate_tracker/4514892110_PriyaResumenew2.pdf', NULL, '1', '2024-08-12', 1, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-12 05:10:38', 60, '2024-08-12 04:23:46', 0, NULL, 1),
(20727, 'Chandru V', '6', '7868822010', '9025489351', 'chandruv8754@gmail.com', '2000-12-09', 23, '2', '2', 'Velmurugan', 'Walter', 15000.00, 1, 18000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2408120006', '1', '2', 'upload_files/candidate_tracker/48093271498_chandruv.ST.pdf', NULL, '1', '2024-08-12', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'SUSTAINABILITY ISSUE', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-12 05:12:05', 104, '2024-08-12 02:35:54', 0, NULL, 1),
(20728, 'Veeramanikandan', '4', '9025489351', '7868822010', 'rdxveeramani@gmail.com', '1999-09-17', 24, '2', '2', 'Divakaran', 'Farmer', 15000.00, 2, 25000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2408120007', '1', '2', 'upload_files/candidate_tracker/17793652299_newrdx.pdf', NULL, '1', '2024-08-12', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR TEAM', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-12 05:12:11', 104, '2024-08-12 02:36:06', 0, NULL, 1),
(20729, 'hariharan a', '6', '8056292649', '7708902926', 'hariharan1625590@gmail.com', '2001-03-11', 23, '2', '2', 'anburaja s', 'labour', 18000.00, 2, 0.00, 17000.00, 'neyveli', 'guindy', '2408120008', '50', '1', 'upload_files/candidate_tracker/49488093034_HARIHARANRESUME.pdf', NULL, '1', '2024-08-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication Ok Have exp as a supervisor in the mechanical domain career gap due to father health issue looking for Inbound calls only and not open for Sales calls and not open to handle the pressure also doing IT course simultaneously', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-08-12 05:35:49', 104, '2024-08-12 02:36:22', 0, NULL, 1),
(20730, 'sharish r', '6', '7358291655', '', 'sharishraghu0830@gmail.com', '2003-08-30', 20, '3', '2', 'm raghu', 'fisherman', 20000.00, 1, 0.00, 18000.00, 'thiruvotriyur', 'thiruvotriyur', '2408120009', '', '1', 'upload_files/candidate_tracker/60564279916_sharishresume3.pdf', NULL, '1', '2024-08-12', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not  suitable for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-12 05:43:45', 104, '2024-08-12 02:37:17', 0, NULL, 1),
(20731, 'Praveen Kumar', '4', '6369276854', '9994129441', 'praveencbe28@gmail.com', '2005-03-28', 19, '2', '2', 'sudha', 'home nurse', 300000.00, 0, 19000.00, 25000.00, 'coimbatore', 'chennai', '2408120010', '50', '2', 'upload_files/candidate_tracker/14439095502_PRAVEENresume.docx', NULL, '1', '2024-08-13', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-12 05:49:54', 1, '2024-08-12 05:53:49', 0, NULL, 1),
(20732, 'Yashmitha Jain', '11', '8667675204', '', 'yashmithajain70@gmail.com', '2003-01-29', 21, '6', '2', 'Kamal Chand', 'Self proprietor', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2408120011', '', '1', 'upload_files/candidate_tracker/3808118238_Yashmitha70.pdf', NULL, '1', '2024-08-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-12 05:51:59', 104, '2024-08-12 02:37:26', 0, NULL, 1),
(20733, 'KARTHIK.M', '6', '8428341172', '', 'karthikvasuj@gmail.com', '2002-08-04', 22, '3', '2', 'Manickavasagam.A', 'Electrician(retired)', 15000.00, 1, 0.00, 20000.00, 'Mannargudi/thiruvarur', 'Mannargudi/thiruvarur', '2408120012', '', '1', 'upload_files/candidate_tracker/41783761619_karthik.M2024.pdf', NULL, '1', '2024-08-12', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT SUITE FOR TELESALES', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-12 06:03:13', 104, '2024-08-12 02:37:43', 0, NULL, 1),
(20734, 'V.JAYABALAJI', '4', '6369377448', '', 'vjayabalaji2002@gmail.com', '2003-11-29', 20, '3', '2', 'A.VAITHIYANATHAN', 'Business', 20000.00, 1, 0.00, 20000.00, 'Mannargudi', 'Rajampalayam (st) keelapalam mannargudi', '2408120013', '', '1', 'upload_files/candidate_tracker/51779828474_jayabalaji.v2024.pdf.pdf', NULL, '1', '2024-08-12', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'UNFIT FOR TELESALES', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-12 06:03:39', 104, '2024-08-12 02:37:59', 0, NULL, 1),
(20735, 'Sathya S', '4', '9150236873', '', 'Sathisathya5238@gmail.com', '1995-11-30', 28, '2', '1', 'Kumar', 'Welder', 20000.00, 1, 20000.00, 25000.00, 'Moulivakkam', 'Moulivakkam', '2408120014', '57', '2', 'upload_files/candidate_tracker/46056409273_Sathyaresume.pdf', NULL, '1', '2024-08-12', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-12 06:26:39', 104, '2024-08-12 04:25:43', 0, NULL, 1),
(20736, 'Jayashri', '11', '7338766845', '', 'jayashrij76@gmail.com', '2001-10-08', 22, '3', '2', 'Jayaraj', 'Shop keeper', 100000.00, 1, 0.00, 20000.00, 'Porur Chennai', 'Porur Chennai', '2408120015', '', '1', 'upload_files/candidate_tracker/45600649861_Jayashri.pdf', NULL, '1', '2024-08-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-12 06:29:21', 104, '2024-08-12 02:39:10', 0, NULL, 1),
(20737, 'Arshiya fathima', '11', '6382433148', '', 'farshiya973@gmail.com', '2002-04-01', 22, '3', '2', 'Abdul Kaleem', 'Inspector', 60000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2408120016', '', '1', 'upload_files/candidate_tracker/47072195901_ArshiyaMBA.pdf', NULL, '1', '2024-08-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-12 06:41:59', 104, '2024-08-12 02:39:27', 0, NULL, 1),
(20738, 'Sandhiya', '11', '9176594424', '', 'sandhiyasandy0131@gmail.com', '2001-08-09', 23, '3', '2', 'Priya', 'Food', 17000.00, 1, 0.00, 20000.00, 'Pallavaram', 'Pallavaram', '2408120017', '', '1', 'upload_files/candidate_tracker/7965429576_Sandhiyaresume.pdf', NULL, '1', '2024-08-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-12 07:02:29', 104, '2024-08-12 02:39:48', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20739, 'R. V. Tamilselvam', '6', '9080033581', '7904906997', 'Tamilselvam1418@gmail.com', '1996-12-01', 27, '2', '2', 'R. Veerakumar', 'Entrepreneur', 100000.00, 1, 16000.00, 25000.00, 'Chennai, Royapettah', 'Chennai, Royapettah', '2408120018', '1', '2', 'upload_files/candidate_tracker/23189764817_Resume.pdf', NULL, '1', '2025-08-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok having several health issues mental disorder openly stated still he is into medication for that not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2024-08-12 07:56:14', 154, '2025-08-07 12:06:17', 0, NULL, 1),
(20740, 'Dinal.k', '6', '9344387312', '', 'dinal01082002@gmail.com', '2002-08-01', 22, '1', '2', 'Kanikkairaj', 'Cooly', 40000.00, 1, 17000.00, 18000.00, 'Mangalari taluk , Chittoor (dist)- 517586', '54-1/35 ,bhet,Ernavoor , chennai -600057', '2408130001', '', '2', 'upload_files/candidate_tracker/78282719630_RESUMEUpdate1.docx', NULL, '1', '2024-08-13', 0, 'Anushiya', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is unfit for sales. Voice not good and communication not well', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-08-13 04:39:01', 104, '2024-08-13 03:31:51', 0, NULL, 1),
(20741, 'Praveen', '4', '8778749687', '8903302318', 'praveendonmax1787@gmail.com', '1998-10-14', 25, '2', '2', 'Parameswaran', 'B.E. Mechanical engineering', 200000.00, 1, 20000.00, 18.00, 'Tenkasi', 'Chennai', '2408130002', '50', '2', 'upload_files/candidate_tracker/17878048738_PRAVEENRESUMETECHPROCUREMENTSALESENGINEERR1.pdf', NULL, '1', '2024-08-13', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-13 04:44:36', 1, '2024-08-13 04:53:16', 0, NULL, 1),
(20742, 'Mathivathanan', '6', '9976933742', '', 'kknmathi@gmail.com', '2002-08-10', 22, '2', '2', 'K sudha', 'Fisherman', 15000.00, 1, 0.00, 18000.00, 'Chidambaram', 'Annanagar', '2408130003', '50', '1', 'upload_files/candidate_tracker/39312978872_Mathivathanan4.pdf202408041436540000.pdf', NULL, '1', '2024-08-13', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'salary expectation was too high and he is not fit for that', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-13 05:00:42', 104, '2024-08-13 03:32:16', 0, NULL, 1),
(20743, 'S. Jeevalakshmi', '6', '7708685542', '8973222136', 'jeevalakshmi921@gmail.com', '2003-04-15', 21, '2', '2', 'M. sivakumar', '200000', 16000.00, 1, 15000.00, 20000.00, 'Voc Street, krishnapuram, Rani fort, Gingee', 'Voc Street, krishnapuram, Rani Fort, Gingee', '2408130004', '57', '2', 'upload_files/candidate_tracker/83655752392_AllDocumentReader1721914951023.pdf', NULL, '1', '2024-08-13', 1, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not okay with work timing and salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-13 05:01:25', 104, '2024-08-13 03:33:55', 0, NULL, 1),
(20744, 'Shrivishweshwaran', '6', '9944175312', '', 'vishwasree00@gmail.com', '2001-10-23', 22, '2', '2', 'Murugeson', 'Farmer', 10000.00, 1, 0.00, 18000.00, '2/200, mullai nagar, arangoor, Trichy -621215', '1c polt , sivanandha Nagar, mangadu , Chennai -122', '2408130005', '50', '1', 'upload_files/candidate_tracker/54781609830_shriresume.pdf', NULL, '1', '2024-09-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-13 05:22:15', 104, '2024-09-19 01:15:25', 0, NULL, 1),
(20745, '', '0', '9677651014', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408130006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-13 05:31:57', 0, NULL, 0, NULL, 1),
(20746, 'Asaruten A', '6', '6379542523', '9677884370', 'asaruteen4302@gmail.com', '2002-03-04', 22, '2', '2', 'Abdul kani', 'Cooli', 15000.00, 1, 0.00, 18000.00, 'Periyamet, Chennai.', 'Chennai', '2408130007', '50', '1', 'upload_files/candidate_tracker/85196460104_A.AsarutenCV.pdf', NULL, '3', '2024-08-13', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate mainly looking for non voice process and not interest to field work so not fit for my team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-08-13 06:10:41', 104, '2024-08-13 03:32:30', 0, NULL, 1),
(20747, 'SUHAIB AHMED', '32', '7845796030', '9597818356', 'ashuaib25@gmail.com', '1994-03-25', 30, '2', '1', 'Chand basha W', 'Retried', 20000.00, 1, 25000.00, 30000.00, 'Ambur', 'Ambur', '2408130008', '57', '2', 'upload_files/candidate_tracker/13556233405_DOC20240808WA0006..pdf', NULL, '1', '2024-08-13', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not satisfied. Ask 80% hike from previous ctc.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-08-13 06:15:52', 104, '2024-08-13 03:35:53', 0, NULL, 1),
(20748, 'Mudassir Ahmed', '32', '8248488031', '7418552980', 'Mudassirahmed41@gmail.com', '1993-06-14', 31, '2', '1', 'Husna', 'House wife', 20000.00, 2, 28000.00, 32000.00, 'Ambur', 'Periymet', '2408130009', '57', '2', 'upload_files/candidate_tracker/68943917617_Resumeupdate2024.pdf', NULL, '1', '2024-08-13', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not selected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55567', '55557', '1970-01-01', 1, '2024-08-13 06:17:02', 104, '2024-08-13 03:36:28', 0, NULL, 1),
(20749, 'Tamizhselvan', '6', '9500694522', '8838582929', 'kingtamil108@gmail.com', '1998-04-14', 26, '2', '2', 'Ramakrishnan', 'Farmer', 50000.00, 2, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2408130010', '50', '1', 'upload_files/candidate_tracker/22520420322_ResumeTamizh.pdf', NULL, '1', '2024-08-13', 0, '', '3', '59', '2024-08-19', 192000.00, '', '1', '1970-01-01', '1', 'Communication Ok Can give a try and check in  the 7 days training need to be trained a lot', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '2024-08-19', 1, '2024-08-13 06:17:33', 104, '2024-08-22 06:51:40', 0, NULL, 1),
(20750, 'Hari Haran', '6', '8925292090', '7358229855', 'hariharan.works12@gmail.com', '2001-10-12', 22, '6', '1', 'Ramachandiran', 'Business', 50000.00, 1, 0.00, 25000.00, 'Chengalpattu', 'Chengalpattu', '2408130011', '', '1', 'upload_files/candidate_tracker/87945833829_Hariharanresume.pdf202406171821150000.pdf', NULL, '1', '2024-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-13 06:39:08', 1, '2024-08-13 06:42:13', 0, NULL, 1),
(20751, 'Saleem', '6', '8096728115', '9362937008', 'saleemmalik2026@gmail.com', '1988-05-22', 36, '2', '1', 'Sharmila', 'House wife', 30000.00, 0, 27000.00, 30000.00, 'Mogappire', 'Mogappire', '2408130012', '1', '2', 'upload_files/candidate_tracker/83182776938_A1Office1701088054549.pdf', NULL, '1', '2024-08-13', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', '0', '0', NULL, 1, '2024-08-13 07:38:19', 1, '2024-08-13 07:42:45', 0, NULL, 1),
(20752, 'Mallikarjun', '5', '9527747553', '', 'mallikarjunsrodage@gmail.com', '1992-05-05', 32, '2', '1', 'Shruti', 'Student', 100000.00, 0, 0.00, 4.00, 'Solapur city', 'Chamarajpet', '2408130013', '1', '1', 'upload_files/candidate_tracker/19338041557_CV2024080919463632.pdf', NULL, '1', '2024-08-13', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-08-13 07:54:22', 126, '2024-08-13 01:49:38', 0, NULL, 1),
(20753, 'Jhakirhussain', '6', '7550179246', '', 'jhakir1004@gmail.com', '2001-01-04', 23, '2', '2', 'Parents', 'Mechanic', 300000.00, 1, 0.00, 15000.00, 'Redhills', 'Redhills', '2408130014', '50', '1', 'upload_files/candidate_tracker/23548032906_jhakir7869.pdf', NULL, '1', '2024-08-13', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication and  performance is very low,also voice is low and lazy type', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-13 09:00:07', 104, '2024-08-16 06:55:16', 0, NULL, 1),
(20754, 'SAMEER', '5', '7418644669', '', 'sameerahamed887@gmail.com', '1996-07-28', 28, '2', '2', 'Abdul Salam', 'late', 25000.00, 1, 25000.00, 30000.00, 'Perambur', 'Perambur Chennai', '2408130015', '57', '2', 'upload_files/candidate_tracker/4266022448_SAMEER2.pdf', NULL, '1', '2024-08-13', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No proper experince and no sales skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-08-13 09:03:25', 104, '2024-08-13 03:37:06', 0, NULL, 1),
(20755, 'Anbarasu K', '4', '8072836322', '', 'anbukumar0620@gmail.com', '2002-11-20', 21, '2', '2', 'Kumar P', 'Daily wages', 10000.00, 2, 0.00, 20.00, '331 Ambedkar Street vaipur thiruvannamalai', 'Chennai', '2408130016', '50', '1', 'upload_files/candidate_tracker/37193068674_AnbuCv21.pdf', NULL, '1', '2024-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-13 10:39:26', 1, '2024-08-13 10:44:08', 0, NULL, 1),
(20756, 'FERJIN JOSHUA', '4', '9962999885', '', 'joshuakferjin@gmail.com', '2003-06-30', 21, '2', '2', 'Nil', 'Nil', 50000.00, 1, 0.00, 17000.00, 'Ambattur', 'Ambattur', '2408130017', '50', '1', 'upload_files/candidate_tracker/88127910633_WhiteandBeigeSimpleStudentCVResume202404250847160000.pdf', NULL, '3', '2024-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-13 11:28:08', 1, '2024-08-13 11:33:04', 0, NULL, 1),
(20757, 'Thivagar S', '4', '8015389068', '', 'thivagar550@gmail.com', '2003-11-13', 20, '2', '2', 'Sekar R', 'Daily wages', 15000.00, 0, 0.00, 13000.00, 'Pattukkudi, Thanjavur.', 'Pattukkudi, Thanjavur', '2408130018', '1', '1', 'upload_files/candidate_tracker/95817915650_GrayandWhiteSimpleCleanResume202406210951360000.pdf', NULL, '1', '2024-08-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-13 02:39:15', 104, '2024-08-16 03:31:34', 0, NULL, 1),
(20758, 'Vasanth K', '4', '9487381913', '', 'vasanthvvkk03@gmail.com', '2002-03-20', 22, '2', '2', 'Kumar A', 'Farmer', 10000.00, 1, 0.00, 14000.00, 'Krishnagiri', 'Chennai', '2408140001', '50', '1', 'upload_files/candidate_tracker/960730828_vasanthresume.pdf', NULL, '1', '2024-08-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-14 09:03:06', 104, '2024-08-28 07:04:26', 0, NULL, 1),
(20759, 'Dinakaran G', '4', '6379150843', '', 'dinakaran0046@gmail.com', '2002-11-28', 21, '2', '2', 'Ganesan k', 'Fresher', 8000.00, 1, 0.00, 300000.00, 'Trichy', 'Chennai', '2408140002', '50', '1', 'upload_files/candidate_tracker/68981045008_DINAKARANG.pdf202408141759550000.pdf', NULL, '1', '2024-08-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-14 12:31:31', 1, '2024-08-14 12:39:04', 0, NULL, 1),
(20760, 'MAHESHVARMAN R', '4', '8754747827', '', 'maheshvarman1331@gmail.com', '2003-04-13', 21, '2', '2', 'NEELAVATHI R', 'GOVERNMENT SCHOOL HEADMASTER', 50000.00, 1, 0.00, 3.00, 'PUDUKKOTTAI', 'THIRUMANGALAM', '2408140003', '50', '1', 'upload_files/candidate_tracker/84014708446_MaheshvarmanNeela.pdf', NULL, '1', '2024-08-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-14 12:33:24', 1, '2024-08-14 12:39:04', 0, NULL, 1),
(20761, '', '0', '9342054787', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408150001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-15 05:50:47', 0, NULL, 0, NULL, 1),
(20762, 'S.Ragavi', '4', '8939785234', '', 'ragavivenkatesh1205@gmail.com', '2001-04-05', 23, '2', '1', 'Venkatesan', 'Farmer', 48000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2408160001', '1', '1', 'upload_files/candidate_tracker/70645958149_RagaviCV.pdf', NULL, '1', '2024-08-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-16 04:41:19', 104, '2024-08-16 03:32:01', 0, NULL, 1),
(20763, 'V Ajith Kumar', '4', '7904084872', '', 'karthicksignup@gmail.com', '1998-03-04', 26, '2', '2', 'G Viswanathan', 'Own Business', 20000.00, 1, 12000.00, 17000.00, 'Chennai', 'Chennai', '2408160002', '50', '2', 'upload_files/candidate_tracker/31330813062_download.pdf', NULL, '1', '2024-08-16', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-16 04:42:41', 1, '2024-08-16 05:07:21', 0, NULL, 1),
(20764, 'Thiyaka Rajan', '6', '7358360274', '', 'thiyakar26@gmail.com', '1994-07-26', 30, '2', '2', 'G Durai swamy', 'Daily wages', 120000.00, 3, 20000.00, 25000.00, 'Guduvanchery', 'Guduvanchery', '2408160003', '50', '2', 'upload_files/candidate_tracker/47854999115_ThiyakaRajanResume.pdf', NULL, '1', '2024-08-16', 15, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Behalf of me Gnanasekar looking this candidate, he rejected the candidate due to non performing well. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-08-16 05:30:56', 104, '2024-08-16 03:34:33', 0, NULL, 1),
(20765, 'Charles Augustin', '5', '7550114380', '9003200129', 'Charlesnanci917@gmail.com', '1997-04-17', 27, '2', '2', 'Mathew', 'Gym coach', 80000.00, 1, 35000.00, 40000.00, 'Chennai', 'Chennai', '2408160004', '57', '2', 'upload_files/candidate_tracker/45847949230_CharlesResume2024.pdf', NULL, '1', '2024-08-16', 1, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected he looking for operation jobs ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-08-16 05:50:23', 104, '2024-08-16 03:35:28', 0, NULL, 1),
(20766, 'Poonreeta M', '4', '9087992676', '9600178249', 'v50015626@gmail.com', '2000-08-05', 24, '2', '2', 'Mariappan A', 'Choole', 120000.00, 0, 12000.00, 28000.00, 'Kovilambakkam,Chennai-600129', 'Kovilambakkam,Chennai-600129', '2408160005', '57', '2', 'upload_files/candidate_tracker/15302706424_PoonreetaResumes.pdf', NULL, '1', '2024-08-16', 30, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'shortliseted \nexpected salary 18k to 20k \nneed to surve notice period', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-16 06:34:33', 60, '2024-08-22 07:10:45', 0, NULL, 1),
(20767, '', '0', '8124551844', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408160006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-16 06:47:02', 0, NULL, 0, NULL, 1),
(20768, '', '0', '8248096316', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408160007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-16 06:47:18', 0, NULL, 0, NULL, 1),
(20769, 'sajeev', '4', '9150470859', '', 'sajeevronaldo2003@gmail.com', '2003-03-20', 21, '2', '2', 'p. sasikumar', 'turner', 30000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2408160008', '50', '1', 'upload_files/candidate_tracker/96222265004_cv.pdf', NULL, '1', '2024-08-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-16 07:13:20', 1, '2026-04-09 06:09:42', 0, NULL, 1),
(20770, 'Shalini.N', '6', '7824909294', '9786551031', 'shalininatraj11111@gmail.com', '2000-08-14', 24, '2', '2', 'Natarajan', 'Driver', 40000.00, 2, 0.00, 20000.00, 'Vellore', 'Perungulathur', '2408160009', '1', '1', 'upload_files/candidate_tracker/45931617397_CV20240505091804.pdf', NULL, '1', '2024-08-17', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no  basic skill. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-16 09:49:17', 104, '2024-08-17 02:59:23', 0, NULL, 1),
(20771, '', '0', '8248375981', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408160010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-16 12:25:59', 0, NULL, 0, NULL, 1),
(20772, 'danish akbar wani', '5', '9149558493', '9606529222', 'danish99817@gmail.com', '1996-06-20', 28, '2', '2', 'mohd akbar wani', 'business', 500000.00, 3, 30000.00, 60000.00, 'jammu and kashmir', 'banglorr', '2408160011', '1', '2', 'upload_files/candidate_tracker/9258828523_DanishWaniResume.pdf', NULL, '1', '2024-08-17', 0, '', '3', '59', '2024-08-27', 296000.00, '', '3', '2024-10-30', '2', 'Communication Have 1.3yrs health calling exp fresher for life last hike 2.52 in April and got relived in 2 months discussed  with Bangalore AM and finalised the salary', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '2024-08-27', 1, '2024-08-16 01:24:10', 126, '2024-08-27 10:15:28', 0, NULL, 1),
(20773, 'Jayakaran Raguraman', '5', '8122452872', '', 'karanjayakaran552@gmail.com', '2000-08-13', 24, '2', '2', 'Raguraman parthasarathi', 'Security', 17000.00, 1, 20200.00, 23000.00, 'Chennai', 'Chennai', '2408160012', '1', '2', 'upload_files/candidate_tracker/64906072015_DOC20240816WA0003..pdf', NULL, '1', '2024-08-17', 0, '', '3', '59', '2024-08-26', 325000.00, '', NULL, '2024-12-18', '1', 'Communication Ok  documents not clear with the exp mentioned in the profile based on the manager approval provided with the joining need to check in 7 days and confirm', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55650', '55560', '2024-08-26', 1, '2024-08-16 02:21:56', 104, '2024-08-26 09:44:41', 0, NULL, 1),
(20774, 'Suriya Varunan A', '6', '6383723753', '', 'suriyavarunan1999@gmail.com', '1999-07-12', 25, '2', '2', 'Arumugam E', 'Photographer', 25000.00, 2, 0.00, 15000.00, '63/72 Puliyadiyamman street,Tiruchendur-628215', '105/32,Vellala street,Ayanavaram,Chennai- 600023', '2408170001', '50', '1', 'upload_files/candidate_tracker/43858520544_SuriyaVarunanResume.pdf', NULL, '1', '2024-08-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not comfort to work in telecalling  role looking for customer support role only focus for inbound calls only and not open for target not much comfort in timing as well', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-17 04:35:12', 104, '2024-08-17 03:01:13', 0, NULL, 1),
(20775, 'Amirtha .T', '6', '6382735978', '9994793764', 'amirthathinagaran@gmail.com', '2001-10-06', 22, '2', '2', 'Thinagaran.G', 'Farmer', 30000.00, 2, 0.00, 18000.00, 'Thanjavur', 'Thoraipakkam', '2408170002', '1', '1', 'upload_files/candidate_tracker/31576404837_AMIRTHA2.pdf', NULL, '3', '2024-08-17', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate very long distance and communication also very low so not fit for my team', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-08-17 05:01:42', 104, '2024-08-17 03:01:48', 0, NULL, 1),
(20776, 'Mahalakshmi D', '6', '9444434629', '', 'mahalakshmidev05@gmail.com', '2001-07-24', 23, '2', '2', 'Devan', 'Farmer', 30000.00, 2, 0.00, 350000.00, 'Vellore', 'Chennai', '2408170003', '1', '1', 'upload_files/candidate_tracker/77310283725_MahalakshmiCV.pdf', NULL, '1', '2024-08-17', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'syed Select the candidate lets try 7 days then we will confirm  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-08-17 05:12:24', 104, '2024-08-17 03:02:04', 0, NULL, 1),
(20777, 'T.dinesh', '6', '9677213699', '', 'dineshthiruvengadam1@gmail.com', '1999-09-07', 24, '2', '2', 'Thiruvengadam.k', 'Senior manager at co optex retd', 20000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2408170004', '50', '1', 'upload_files/candidate_tracker/59044207392_TDINESH2024RESUME.pdf', NULL, '3', '2024-08-17', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Average  skill person but not fit for the job . ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-17 05:23:35', 104, '2024-08-17 03:02:19', 0, NULL, 1),
(20778, 'Samuel R', '7', '8056235808', '9940659451', 'rahulsamuel4444@gmail.com', '1999-11-12', 24, '1', '2', 'Julie', 'Sales executive', 10000.00, 0, 17377.00, 300000.00, 'Chennai', 'Chennai', '2408170005', '', '2', 'upload_files/candidate_tracker/78554478942_samresume1.pdf', NULL, '1', '2024-08-17', 0, '55746', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-17 05:26:15', 1, '2024-08-17 05:28:46', 0, NULL, 1),
(20779, 'KESAVAPERUMAL', '5', '8056881675', '6369392514', 'kesavanperumal10@gmail.com', '1996-08-31', 27, '2', '1', 'PRIYA', 'JOB', 40000.00, 1, 4.00, 25000.00, 'VILLUPURAM', 'VILLUPURAM', '2408170006', '50', '2', 'upload_files/candidate_tracker/77191333096_kesavanresumeupdate.docx', NULL, '3', '2024-08-17', 18, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not selected', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55567', '55557', '1970-01-01', 1, '2024-08-17 05:45:54', 104, '2024-08-17 03:04:19', 0, NULL, 1),
(20780, 'R.vijay', '4', '9087674724', '9551580291', 'Vijay.vinayramu@gmail.com', '1995-07-21', 29, '2', '2', 'Ramu', 'Agriculture', 7000.00, 1, 17000.00, 20000.00, 'No:29/99 sandiyappan 1st street otteri chennai_12', 'No:29/99 sandiyappan 1st street otteri chennai_12', '2408170007', '50', '2', 'upload_files/candidate_tracker/39874547892_RESUMEvIJAY1.docx', NULL, '1', '2024-08-19', 3, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-17 05:46:36', 1, '2024-08-17 05:55:39', 0, NULL, 1),
(20781, 'Gopi raman', '5', '9790250529', '7845810529', 'Psgopiraman@gmail.com', '1996-04-12', 28, '2', '2', 'Subramanian', 'File', 5.00, 1, 0.00, 35.00, 'Chennai', 'Ashok pillar', '2408170008', '57', '2', 'upload_files/candidate_tracker/22223025538_GOPIRAMANsResume.pdf', NULL, '1', '2024-08-17', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sriram sir rejected this candidate due to high salary package.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-08-17 06:35:14', 104, '2024-08-17 03:05:57', 0, NULL, 1),
(20782, '', '0', '9841307723', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408170009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-17 06:39:50', 0, NULL, 0, NULL, 1),
(20783, '', '0', '7092377568', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408170010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-17 06:40:32', 0, NULL, 0, NULL, 1),
(20784, 'Sivaranjani', '4', '7358643273', '', 'rdranjani06@gmail.com', '2000-03-06', 24, '2', '2', 'Sasikala', 'Domestic worker', 20000.00, 1, 14500.00, 18000.00, 'Tambaram', 'Tambaram', '2408170011', '50', '2', 'upload_files/candidate_tracker/5854382680_SivaranjaniResume11.pdf', NULL, '1', '2024-08-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-17 06:41:12', 1, '2024-08-28 06:21:58', 0, NULL, 1),
(20785, 'Pavankumar warad', '33', '8105508055', '', 'pawanwarad0550@gmail.com', '1997-08-18', 27, '3', '2', 'Sharanappa warad', 'Business', 30000.00, 2, 0.00, 550000.00, 'Shahapur', 'Bangalore', '2408170012', '', '2', 'upload_files/candidate_tracker/51346457288_resume.pdf', NULL, '1', '2024-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-17 08:17:54', 1, '2024-09-14 05:39:08', 0, NULL, 1),
(20786, 'PRAVEEN S', '6', '9840808241', '', 'VARDHAKAMARAJ232.VA@GMAIL.COM', '2003-02-18', 21, '2', '2', 'SelvaKumar', 'Service engineer', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2408170013', '50', '1', 'upload_files/candidate_tracker/18309589578_PRAVEENRESUME.pdf', NULL, '1', '2024-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Had a detailed discussion he much comfort to work in non voice process simultaneously looking for IT positions,if in between he gets an opportunity in that then he will move on', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-08-17 08:20:45', 104, '2024-08-19 06:59:42', 0, NULL, 1),
(20787, 'Sai Prakash R', '4', '8754066811', '', 'saiprakashsanthi1998@gmail.com', '1999-06-29', 25, '2', '2', 'Ravi G', 'Daily basis work', 40000.00, 1, 0.00, 20000.00, 'Gummidipundi', 'Gummidipundi', '2408170014', '50', '1', 'upload_files/candidate_tracker/17724903489_Resume20240807.pdf202408121141410000.pdf', NULL, '1', '2024-08-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-17 08:21:00', 1, '2024-08-17 08:27:12', 0, NULL, 1),
(20788, 'Mohammed showkath.N', '6', '9363169146', '9884164627', 'Mohammedshowkath@gmail.com', '2003-06-21', 21, '1', '2', 'Mohammed noor basha', 'Auto driver', 25000.00, 1, 0.00, 15000.00, 'Old washernmenpet', 'Pandian theater', '2408170015', '', '1', 'upload_files/candidate_tracker/20898733154_AdobeScan23May2024.pdf', NULL, '1', '2024-08-17', 0, '00570', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication is little bit good, but his performance in the interview is low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-17 09:27:26', 104, '2024-08-17 03:13:35', 0, NULL, 1),
(20789, 'Rajalakshmi', '5', '6374113687', '8056174175', 'rajalakshmimohan.b.comcs@gmail.com', '2003-03-16', 21, '2', '2', 'Hema Latha ,j mohan', 'B com cs', 300000.00, 1, 24567.00, 28000.00, 'Avadi', 'Avadi', '2408180001', '1', '2', 'upload_files/candidate_tracker/53826308342_DOC20240725WA0002..doc', NULL, '1', '2024-08-20', 0, '', '3', '59', '2024-08-27', 325000.00, '', '3', '2024-09-28', '2', 'Communication verified the  documents not clear with the documents recent hike and she left the previous one', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55579', '55560', '2024-08-27', 1, '2024-08-18 10:49:27', 104, '2024-08-27 01:15:23', 0, NULL, 1),
(20790, 'Ranjith R', '4', '6369377625', '9677598763', 'Ranjithkabilan8@gmail.com', '2001-01-20', 23, '2', '2', 'Ravichandran', 'Vegetables', 15000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2408190001', '1', '1', 'upload_files/candidate_tracker/87193745559_RanjithResume.pdf', NULL, '1', '2024-08-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-19 04:27:55', 104, '2024-08-19 03:53:16', 0, NULL, 1),
(20791, 'Vignesh', '4', '9360528795', '', 'vigneshvignesh01198@gmail.com', '2001-11-25', 22, '2', '2', 'Bala ganesa moorthy', 'Daily wages', 100000.00, 1, 0.00, 14000.00, '42 Aishwarya nagar,vallam 613403', '15/1 rettipalayam mettu street,vallam 613403', '2408190002', '1', '1', 'upload_files/candidate_tracker/57165591654_vigneshresumeitbremoved.pdf', NULL, '1', '2024-08-19', 0, '', '3', '59', '2024-08-26', 153000.00, '', '3', '2024-11-23', '1', 'Communication Ok Fresher can give a try and check in 7 days and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-08-26', 1, '2024-08-19 04:46:37', 104, '2024-08-26 09:48:13', 0, NULL, 1),
(20792, '', '0', '9677235104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408190003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-19 04:52:33', 0, NULL, 0, NULL, 1),
(20793, '', '0', '9344328596', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-19 04:52:51', 0, NULL, 0, NULL, 1),
(20794, 'Bibin Joel B', '11', '8124235462', '9566237631', 'bibinjoel29@gmail.com', '2002-04-17', 22, '6', '2', 'Suji Sheela rani B & Bright amar singh J', 'Retired', 30000.00, 1, 0.00, 18000.00, 'Errukkanchery', 'Errukkanchery', '2408190005', '', '1', 'upload_files/candidate_tracker/92925004888_MyResume.pdf', NULL, '1', '2024-08-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-19 04:56:31', 104, '2024-08-19 10:43:02', 0, NULL, 1),
(20795, 'SWETHA R', '6', '9629764698', '9629311828', 'r.swetha4698@gmail.com', '2004-06-06', 20, '2', '2', 'Gokul Anand', 'Marketing', 35000.00, 5, 17500.00, 24000.00, 'Kallakurichi', 'Kannadhasan nagar', '2408190006', '50', '2', 'upload_files/candidate_tracker/80430957245_GOKULANAND.E2.pdf', NULL, '1', '2024-08-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-19 04:59:36', 1, '2024-08-19 05:18:52', 0, NULL, 1),
(20796, 'Chandru R', '6', '8248996324', '9025126765', 'chandruj709@gmail.com', '2002-06-11', 22, '2', '2', 'Rajendran V', 'Self employee', 40000.00, 2, 0.00, 20000.00, 'Namakkal', 'Kodambakkam', '2408190007', '50', '1', 'upload_files/candidate_tracker/91037156051_CHANDRUR.docx', NULL, '3', '2024-08-20', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-19 05:06:26', 104, '2024-08-20 03:13:47', 0, NULL, 1),
(20797, 'Nithyakalyani R', '5', '6384561732', '', 'nithyaparvathi123@gmail.com', '1995-06-22', 29, '2', '2', 'Parvathy V', 'Home work', 25000.00, 1, 22000.00, 28000.00, 'Kaniyakumari', 'Kodambakkam', '2408190008', '1', '2', 'upload_files/candidate_tracker/66675451198_NithyaKalyaniResume.pdf', NULL, '1', '2024-08-19', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not selected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55567', '55557', '1970-01-01', 1, '2024-08-19 05:26:11', 104, '2024-08-19 04:02:06', 0, NULL, 1),
(20798, 'A.Joan of arc', '4', '9787267701', '', 'jessicajoe0414@gmail.com', '2001-10-04', 22, '3', '2', 'J.Arockiadoss', 'Watchman', 30000.00, 1, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2408190009', '', '1', 'upload_files/candidate_tracker/57741023081_Joanofarc.pdf', NULL, '1', '2024-08-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-19 05:35:23', 104, '2024-08-19 04:06:44', 0, NULL, 1),
(20799, 'M.Hamsavarthini', '4', '6381204015', '', 'harshahasini12@gmail.com', '2001-09-14', 22, '2', '2', 'U.Mahesh', 'Driver', 40000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2408190010', '1', '1', 'upload_files/candidate_tracker/53691139005_Hamsavarthini.pdf', NULL, '1', '2024-08-19', 0, '', '3', '59', '2024-08-26', 153000.00, '', NULL, '1970-01-01', '1', 'Communication Ok Fresher Can give a try check neeed to analyse and confirm in 7 days training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-08-26', 1, '2024-08-19 05:35:32', 104, '2024-08-26 04:45:22', 0, NULL, 1),
(20800, 'R.kavitha', '5', '9941668536', '9840139217', 'Kavitharavichandran658@gmail.com', '1995-08-19', 29, '2', '1', 'Sridhar', 'It', 35000.00, 1, 23000.00, 20000.00, 'korattur', 'korattur', '2408190011', '1', '2', 'upload_files/candidate_tracker/74465713230_KavithaR.docx', NULL, '1', '2024-08-19', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for RM profile \ndont have communication skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55656', '55557', '1970-01-01', 1, '2024-08-19 05:48:53', 104, '2024-08-19 04:08:43', 0, NULL, 1),
(20801, 'CHANDRU.S', '6', '9600138714', '7871957549', 'Chandrusparx@gmail.com', '2004-05-10', 20, '3', '2', 'Shanmugam.B', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Vysarpadi', 'Vysarpadi', '2408190012', '', '1', 'upload_files/candidate_tracker/99120739313_DocumentfromChandru.pdf', NULL, '1', '2024-08-19', 0, '', '3', '59', '2024-08-22', 192000.00, '', NULL, '2025-09-30', '1', 'Communication Ok Fresher Profile Can give a try and check in 7 days training Can be trained', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2024-08-22', 1, '2024-08-19 05:50:05', 60, '2026-01-16 12:21:07', 0, NULL, 1),
(20802, 'Yashmin M', '5', '8015217444', '9514592091', 'yashminsheriff77@gmail.com', '1999-06-02', 25, '2', '2', 'Jareena bagam', 'Home maker', 25000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2408190013', '57', '2', 'upload_files/candidate_tracker/76234776392_YASHMINMCV.pdf', NULL, '1', '2024-08-19', 0, '', '3', '59', '2024-09-17', 340000.00, '', '5', '1970-01-01', '2', 'Communication Ok can give a try and check with the training Supposed to join  on 06 sept but got extended due to her personal issued', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '2024-09-17', 1, '2024-08-19 05:50:51', 60, '2024-09-09 06:26:15', 0, NULL, 1),
(20803, '', '0', '9360528888', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408190014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-19 05:50:51', 0, NULL, 0, NULL, 1),
(20804, 'DHANUSH K', '6', '9345573560', '9962819935', 'dhanush.kr2217@gmail.com', '2004-02-22', 20, '3', '2', 'KUMAR B', 'Driver', 16000.00, 1, 0.00, 15000.00, '54/29, ramakrishna street, perambur, Chennai', '54/29, ramakrishna street, perambur, Chennai', '2408190015', '', '1', 'upload_files/candidate_tracker/11619004063_DHANUSH.K202407251454440000.pdf', NULL, '1', '2024-08-19', 0, '', '3', '59', '2024-08-22', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Fresher Can be trained in our roles have basic knowledge can be analysed in 7 days training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-08-22', 1, '2024-08-19 05:52:17', 60, '2024-08-19 05:58:01', 0, NULL, 1),
(20805, 'Gokul K', '11', '9042188400', '8925744720', 'gokulk1725@gmail.com', '2004-07-17', 20, '6', '2', 'Selvi K', 'Housewife', 30000.00, 1, 0.00, 200000.00, 'Injambhakkam', 'Injambhakkam', '2408190016', '', '1', 'upload_files/candidate_tracker/88034908445_GOKULK.pdf', NULL, '1', '2024-08-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-19 06:28:31', 104, '2024-08-26 07:00:27', 0, NULL, 1),
(20806, 'Aravindan', '5', '9094872336', '', 'aravindan4517@gmail.com', '1994-03-02', 30, '2', '2', 'Narayanan', 'Not working', 20000.00, 1, 18000.00, 27000.00, 'Chennai', 'Anna Nagar', '2408190017', '57', '2', 'upload_files/candidate_tracker/25177785011_NAravindannewresume16.pdf', NULL, '1', '2024-08-19', 15, '', '1', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55579', '55560', '1970-01-01', 1, '2024-08-19 06:48:29', 104, '2024-08-19 04:10:49', 0, NULL, 1),
(20807, 'SELVA VINOTH KUMAR M', '5', '9894586534', '', 'vinothkumar.sbp67@gmail.com', '1994-03-09', 30, '2', '1', 'Gayatri', 'Bbo', 60000.00, 2, 0.00, 25000.00, 'RAMANATHAPURAM', 'MADURAVOYAL', '2408190018', '50', '1', 'upload_files/candidate_tracker/8700399757_SelvaVinothkumar.pdf', NULL, '1', '2024-08-19', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not selected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55567', '55557', '1970-01-01', 1, '2024-08-19 07:20:31', 104, '2024-08-19 04:40:18', 0, NULL, 1),
(20808, 'Mythiriyan Padmanabhan', '5', '8939713390', '9566272847', 'rp.mythiriyan36@gmail.com', '1998-11-11', 25, '2', '2', 'Padmanaban', 'Fabrication contractor', 30.00, 1, 33000.00, 35000.00, 'Chennai', 'Chennai', '2408190019', '57', '2', 'upload_files/candidate_tracker/76579820982_DOC20240725WA0018.202408052158280000.pdf', NULL, '1', '2024-08-19', 0, '', '3', '59', '2024-08-26', 350000.00, '', '5', '1970-01-01', '1', 'Communication Ok Can be trained in our roles and need to be analyse in 7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55565', '55557', '2024-08-26', 1, '2024-08-19 09:00:06', 104, '2024-08-26 04:43:12', 0, NULL, 1),
(20809, 'Roja', '9', '6382323967', '9840287362', 'roja0685@gmail.com', '2002-11-13', 21, '3', '2', 'Vasuki', 'House wife', 30000.00, 2, 0.00, 16000.00, 'Pallikaranai', 'Pallikaranai', '2408190020', '', '1', 'upload_files/candidate_tracker/26303729585_rojaresume.pdf', NULL, '1', '2024-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not comfort to work in telecalling process', '5', '1', '', '1', '8', '', '2', '2024-08-28', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-19 09:14:15', 104, '2024-08-19 04:12:14', 0, NULL, 1),
(20810, 'Kishore P', '6', '8072602650', '9677465520', 'krishkishore429@gmail.com', '2004-05-23', 20, '2', '2', 'Pichandi C', 'Driver', 80000.00, 1, 0.00, 16000.00, '10A garden St ezhil nagar allapuram vellore', 'Best Men PG Hostel, Velachery Chennai, Tamil Nadu', '2408190021', '50', '1', 'upload_files/candidate_tracker/67368621728_kishore.pdf', NULL, '1', '2024-08-19', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not  s0 good at speaking', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-19 09:22:01', 104, '2024-08-19 04:12:38', 0, NULL, 1),
(20811, 'M.akila', '4', '9363388315', '7550285854', 'angeljeangelje9@gmail.com', '2001-09-13', 22, '2', '2', 'Kalai selvi', 'House wife', 15000.00, 1, 16000.00, 20.00, 'Trichy', 'Chennai', '2408190022', '50', '2', 'upload_files/candidate_tracker/89862478895_M.Akila1.pdf', NULL, '1', '2024-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-19 10:06:52', 1, '2024-08-19 12:31:42', 0, NULL, 1),
(20812, 'Vigneshwarakarthick.m', '6', '9597973674', '6381405725', 'vickykarthick213@gmail.com', '2003-06-02', 21, '2', '2', 'Murugapoopathi', 'Cooli', 14000.00, 1, 0.00, 20000.00, 'Muhavur', 'Muhavur', '2408190023', '50', '1', 'upload_files/candidate_tracker/85658552442_vigneshwarakarthick.m.pdf', NULL, '1', '2024-08-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales and not speak well', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-19 10:26:26', 104, '2024-08-20 03:14:04', 0, NULL, 1),
(20813, 'Anagha VV', '6', '8086445243', '', 'Anaghaprakash6650@gmail.com', '2001-12-16', 22, '2', '2', 'Prakashan vv', 'Electrician', 25000.00, 1, 22000.00, 25000.00, 'Veeyyam veetil periyambra house calicut', 'near Vega, Abbaappa Layout, Stage 2, BTM Layout,', '2408190024', '1', '2', 'upload_files/candidate_tracker/23010276381_ResumeAnaghavvFormat4.pdf', NULL, '1', '2024-08-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-19 02:06:33', 126, '2024-08-20 10:21:02', 0, NULL, 1),
(20814, 'B.Subramanyam', '5', '6281327760', '9133904055', 'bodugusubramanyam7@gmail.com', '1999-08-24', 24, '2', '2', 'B.Sankara', 'Real estate', 80000.00, 1, 0.00, 25000.00, '2-90A Reddyvaripalli,pin:-516319 ,Madanapalli, AP', 'Marathalli 560037 Bangalore', '2408190025', '1', '1', 'upload_files/candidate_tracker/48733334481_SubbuResume1.pdf', NULL, '1', '2024-08-20', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability Doubt lack of knowledge about the insurance', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-08-19 02:15:46', 126, '2024-08-20 03:12:41', 0, NULL, 1),
(20815, 'S. Monisha', '6', '8220884591', '', 'monimonisha06@gmail.com', '2000-02-04', 24, '2', '2', 'Father:shivaraman /Mother:uma maherwarshi', 'Good job', 25000.00, 1, 0.00, 20000.00, 'Salem', 'Gadlu gate', '2408190026', '1', '1', 'upload_files/candidate_tracker/78730862031_Resume.pdf', NULL, '1', '2024-08-20', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55671', '55555', '1970-01-01', 1, '2024-08-19 03:31:16', 126, '2024-08-20 03:03:50', 0, NULL, 1),
(20816, '', '0', '8748891417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408190027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-19 04:33:46', 0, NULL, 0, NULL, 1),
(20817, 'S. Nisha ganapathy', '4', '9345723328', '6380682400', 'nishajesus18@gmail.com', '2002-11-18', 21, '2', '2', 'S. Uma Devi', 'S. Uma Devi', 200000.00, 0, 15000.00, 20000.00, 'Trichy', 'Chennai', '2408200001', '50', '2', 'upload_files/candidate_tracker/62836056771_nisha.pdf', NULL, '1', '2024-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-20 03:44:09', 1, '2024-08-20 03:52:44', 0, NULL, 1),
(20818, 'Divya Bharathi', '4', '9840504733', '8144616400', 'ksbdivya14@gmail.com', '2002-10-14', 21, '1', '2', 'K.s.balu', 'Car driver', 30000.00, 2, 0.00, 15000.00, 'Neelankarai', 'Neelankarai', '2408200002', '', '1', 'upload_files/candidate_tracker/34251052370_DIVIRESUME240816123827compressed.pdf', NULL, '1', '2024-08-20', 0, '55778', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-20 04:36:35', 104, '2024-08-20 03:14:19', 0, NULL, 1),
(20819, 'Bakyalakshmi R', '20', '8939467349', '', 'rbakyalakshmi47@gmail.com', '2002-05-02', 22, '2', '2', 'Vanitha', 'Customer support', 30000.00, 1, 27000.00, 30000.00, 'Chennai', 'Chennai', '2408200003', '42', '2', 'upload_files/candidate_tracker/12972076156_74686ec547af492e9bb029430a07e27c.pdf', NULL, '1', '2024-08-20', 0, '', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55567', '55557', '1970-01-01', 1, '2024-08-20 05:12:24', 104, '2024-08-20 03:15:12', 0, NULL, 1),
(20820, 'Senthilkumar C', '6', '7806853183', '7845584522', 'senthilkumarc0306@gmail.com', '2003-06-03', 21, '2', '2', 'Vijayalakshmi C', 'House wife', 100000.00, 0, 12000.00, 16000.00, 'Chennai', 'Chennai', '2408200004', '42', '2', 'upload_files/candidate_tracker/14327933421_senthilkumarResumenew11.pdf', NULL, '3', '2024-08-20', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He left the job because there was too much pressure in the place where he had already worked. So not fit for this job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-20 05:41:18', 104, '2024-08-20 03:15:42', 0, NULL, 1),
(20821, 'Rubikaa R V', '5', '8248945773', '9489558726', 'rubisri.rs@gmail.com', '1998-11-17', 25, '2', '2', 'Ravintherakumar', 'Central government officer', 800000.00, 1, 0.00, 17000.00, 'thanjavur', 'Chennai', '2408200005', '1', '1', 'upload_files/candidate_tracker/33979102268_RubikaaRVResume222.pdf', NULL, '1', '2024-08-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She speaks well and comunication also good so lets try 7 days ctc 16k,join immediately', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-08-20 05:42:05', 104, '2024-08-20 03:16:50', 0, NULL, 1),
(20822, 'Monica', '6', '7010123943', '9087390144', 'monimonica1594@gmail.com', '2002-10-04', 21, '2', '2', 'Suguna', 'House wife', 120000.00, 2, 16000.00, 15000.00, 'New washermenpet Chennai', 'New washermenpet Chennai', '2408200006', '50', '2', 'upload_files/candidate_tracker/7217420107_DOC20230525WA0013.11.pdf', NULL, '3', '2024-08-20', 0, '', '3', '59', '2024-08-22', 168000.00, '', NULL, '2025-03-29', '2', 'Communication Ok Need to check and confirm in the 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-08-22', 1, '2024-08-20 05:44:10', 104, '2024-08-30 06:33:38', 0, NULL, 1),
(20823, 'Durga Devi.B', '4', '8072739776', '', 'b.durgadevi2002@gmail.com', '2002-04-30', 22, '2', '2', 'Bose G', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Arumulai,orathanadu tk ,Thanjavur dt 614905', 'Arumulai, orathanadu tk ,Thanjavur dt 614905', '2408200007', '1', '1', 'upload_files/candidate_tracker/94901548667_CV2024053015130019.pdf', NULL, '1', '2024-08-20', 0, '', '3', '59', '2024-08-26', 153000.00, '', '3', '2025-01-08', '2', 'Communication Ok have 6 months PL exp can be trained in our roles too long distance she is open to travel can give a try and check', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-08-26', 1, '2024-08-20 05:49:49', 104, '2024-08-26 09:49:59', 0, NULL, 1),
(20824, 'Avanthiga Arul', '11', '6383858997', '9087771017', 'aventhigaa2001@gmail.com', '2001-11-02', 22, '3', '2', 'Prathumanan', 'IT', 500000.00, 1, 23000.00, 26000.00, 'Dharmapuri', 'Anna nagar', '2408200008', '', '2', 'upload_files/candidate_tracker/77791891438_avniresume.pdf', NULL, '1', '2024-08-20', 10, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-20 06:18:28', 104, '2024-08-20 04:36:02', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20825, 'Yuvarani', '11', '6369663406', '9551794931', 'yuvaranianandan49@gmail.com', '1998-08-04', 26, '3', '2', 'Anandan', 'Fresher', 15000.00, 1, 0.00, 18000.00, 'Thiruvallur', 'Egmore', '2408200009', '', '1', 'upload_files/candidate_tracker/15322925965_yuvaranicvch.pdf', NULL, '1', '2024-08-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-20 06:19:21', 104, '2024-08-20 04:36:11', 0, NULL, 1),
(20826, 'JAMAL MOHAMMED MOHIDEEN M', '6', '9940684402', '9150412805', 'jamalmohideen1992@gmail.com', '1992-12-09', 31, '2', '1', 'E M MUTHALIF ALI', 'BUSINESS', 20000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2408200010', '50', '2', 'upload_files/candidate_tracker/54258547922_JAMALMOHAMMEDMOHIDEENM.docx', NULL, '1', '2024-08-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '', '1970-01-01', 1, '2024-08-20 06:33:04', 104, '2024-08-20 07:10:03', 0, NULL, 1),
(20827, 'thanmayee', '6', '9581263533', '', 'thanupandhu@gmail.com', '2002-03-04', 22, '2', '2', 'venugopal', 'bussinessman', 30000.00, 1, 0.00, 20000.00, 'tirupati', 'banglore', '2408200011', '1', '1', 'upload_files/candidate_tracker/69753319741_DINNETHANMAYEE.pdf', NULL, '1', '2024-08-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication and confident, she is fresher we can process', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-20 06:48:00', 126, '2024-08-23 07:08:01', 0, NULL, 1),
(20828, 'Kowshik', '6', '9790786555', '', 'kowshikpcs17@gmail.com', '2000-11-17', 23, '2', '2', 'CHINNASAMY', 'Data Analyst', 150000.00, 1, 21000.00, 21000.00, 'Karur', 'Chennai', '2408200012', '50', '2', 'upload_files/candidate_tracker/41469140718_ks1resume.pdf', NULL, '1', '2024-08-20', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is not ok, unfit for the sales. communication not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-08-20 07:07:36', 104, '2024-08-20 03:17:15', 0, NULL, 1),
(20829, 'ABDUL RASHID S', '6', '7358541753', '', 'rashidjarina@gmail.com', '2003-05-28', 21, '2', '2', 'SYED MASOOD.A', 'Mechanic', 12000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2408200013', '1', '1', 'upload_files/candidate_tracker/56927693162_Abdulrashid.pdf', NULL, '1', '2024-08-20', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communicaioa and  voice not clear so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-08-20 07:27:24', 104, '2024-08-20 03:17:30', 0, NULL, 1),
(20830, 'arish', '5', '8608464866', '6374113687', 'gowriarish293@gmail.com', '2001-03-29', 23, '2', '2', 'gowri', 'arumbakkam', 40000.00, 1, 24900.00, 30000.00, 'arumbakkam', 'arumbakkam', '2408200014', '1', '2', 'upload_files/candidate_tracker/45859927818_Resume.pdf', NULL, '1', '2024-08-20', 0, '', '3', '59', '2024-08-26', 350000.00, '', '3', '2024-09-30', '1', 'Communication Ok Verified Documents Not clear with the Exp mentioned in the resume however with the Manager approval(sriram)sir recommendation proceed with the committed CTC Need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55565', '55557', '2024-08-26', 1, '2024-08-20 07:41:45', 104, '2024-08-26 09:35:38', 0, NULL, 1),
(20831, 'Babu Vignesh b', '6', '8610804042', '9597973674', 'dk4636887@gmail.com', '2002-02-08', 22, '2', '2', 'Baskaran.D', 'Milk Labour', 20000.00, 1, 0.00, 20000.00, 'Sivakasi', 'Sivakasi', '2408200015', '50', '1', 'upload_files/candidate_tracker/90989998001_babuvigneshb.pdf202408200955160000.pdf', NULL, '1', '2024-08-20', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice is low also his communication and performance is is not good ,then sustainabil doubt', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-20 07:44:40', 104, '2024-08-20 03:18:19', 0, NULL, 1),
(20832, 'Aakila.R', '5', '9543927775', '8144252728', 'akilarajendran2002@gmail.com', '2002-02-21', 22, '2', '2', 'Rajendran', 'Electrician', 15000.00, 3, 18000.00, 20000.00, 'Thirumazhisai', 'Thirumazhisai', '2408200016', '50', '2', 'upload_files/candidate_tracker/7709325297_AAKILA.pdf', NULL, '1', '2024-08-21', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not selected', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55567', '55557', '1970-01-01', 1, '2024-08-20 07:46:28', 104, '2024-08-21 02:59:47', 0, NULL, 1),
(20833, 'Ajith kumar', '4', '7010490031', '9790506977', 'ajithkumaranandhan17@gmail.com', '1999-06-08', 25, '2', '2', 'Parents', 'Farmer', 15000.00, 1, 0.00, 16000.00, 'Virudhachalam', 'Chennai', '2408200017', '50', '1', 'upload_files/candidate_tracker/54514962903_Ajithkumar.AResume71.pdf', NULL, '1', '2024-08-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-20 08:07:08', 1, '2024-08-20 08:14:00', 0, NULL, 1),
(20834, 'Derin Antro Y', '34', '6382364290', '', 'derinantro430@gmail.com', '2002-01-29', 22, '3', '2', 'Yesu Rethna Raj Y', 'Chennai', 50000.00, 1, 0.00, 250000.00, '6/83F , Cheruppan codu, Karankadu post, Nagercoil', 'Chennai', '2408200018', '', '1', 'upload_files/candidate_tracker/95345979977_DERINANTROYResume.pdf', NULL, '1', '2024-08-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-20 09:05:45', 1, '2024-08-20 09:19:31', 0, NULL, 1),
(20835, 'Vignesh', '11', '6382413601', '', 'vignesh.t706@gmail.com', '2009-08-20', 0, '3', '2', 'Parent', 'MBA In HR & marketing fresher', 1.25, 2, 0.00, 18000.00, 'Tiruvannamalai', 'Kovilambakkam', '2408200019', '', '1', 'upload_files/candidate_tracker/31630633191_viki.pdf', NULL, '1', '2024-08-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-20 09:45:40', 104, '2024-08-21 10:13:50', 0, NULL, 1),
(20836, 'D.kowsalya', '4', '7826918255', '9994951102', 'd.kowsalya2112@gmail.com', '2001-12-21', 22, '3', '2', 'V.Divakaran', 'Farmer', 78000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2408200020', '', '1', 'upload_files/candidate_tracker/2277699640_KOWSALYAMA.pdf', NULL, '3', '2024-09-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-20 12:00:34', 1, '2024-09-07 07:29:50', 0, NULL, 1),
(20837, 'Parvatha', '4', '8056901428', '8015897032', 'parvathaparamasivan@1gmail.com', '2000-07-01', 24, '3', '2', 'Father : Paramasivan , Mother: Sundari.', 'He is no more', 12000.00, 1, 0.00, 1.00, '29-1 valampuri vinayagar Kovil Street.', 'Sivagiri Tenkasi dt', '2408200021', '', '1', 'upload_files/candidate_tracker/74640566335_ParvathaParamasivanResume1.pdf', NULL, '1', '2024-08-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-20 01:05:24', 1, '2024-08-20 05:43:33', 0, NULL, 1),
(20838, 'Ayyanar', '4', '8667276036', '9159061675', 'ayyanarabi007@gmail.com', '2003-11-12', 20, '3', '2', 'Krishnan', 'Watchman', 15000.00, 1, 0.00, 15000.00, 'No:15 kannagi Street Anbalagan Tharamani', 'Chennai Tharamani', '2408210001', '', '1', 'upload_files/candidate_tracker/72680522000_AyyanarK.pdf', NULL, '3', '2024-08-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-21 03:59:46', 1, '2024-08-21 04:09:26', 0, NULL, 1),
(20839, '', '0', '9786990269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408210002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-21 04:19:27', 0, NULL, 0, NULL, 1),
(20840, 'Pavithra M', '6', '6374901900', '8610142599', 'pavithrapavithram0809@gmail.com', '2002-08-22', 21, '2', '2', 'Marimuthu v', 'Transport', 75000.00, 1, 10500.00, 15000.00, 'Pudukkottai', 'Chennai', '2408210003', '56', '2', 'upload_files/candidate_tracker/1620678712_PavithraMresume.pdf', NULL, '1', '2024-08-21', 6, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'having interest in banking jobs ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-21 04:33:27', 104, '2024-08-21 03:12:44', 0, NULL, 1),
(20841, 'Mohana K', '6', '9025327122', '8939386449', 'mohanapriya7781@gmail.com', '2004-02-08', 20, '1', '2', 'Kumar', 'Driver', 200000.00, 1, 0.00, 17000.00, 'Avadi', 'Chennai', '2408210004', '', '1', 'upload_files/candidate_tracker/85391326030_CV2024052720225411.pdf', NULL, '1', '2024-08-26', 0, 'Akshaya hr solution', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-21 04:44:13', 104, '2024-08-26 04:31:25', 0, NULL, 1),
(20842, 'Ayisha', '6', '7200181684', '', 'bayisha521@gmail.com', '2004-04-11', 20, '2', '2', 'Basheer Ahmed', 'Tailor', 10000.00, 3, 0.00, 20000.00, 'Mylapore', 'Mylapore', '2408210005', '45', '1', 'upload_files/candidate_tracker/70459043926_CV2024072913074528.pdf', NULL, '1', '2024-08-21', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-21 04:45:18', 104, '2024-08-21 03:13:20', 0, NULL, 1),
(20843, 'R paul Antony', '6', '9994394514', '9790547308', 'antopaulak0305@gmail.com', '1997-07-03', 27, '2', '2', 'R Selvamary', 'Presentation Sisters convent', 27000.00, 0, 17500.00, 20000.00, 'Thirukkalukundram', 'velachery', '2408210006', '45', '2', 'upload_files/candidate_tracker/1696631537_PaulAntonyResume.pdf', NULL, '1', '2024-08-21', 21, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'cANDIDATE NOT SUITABLE FOR SALES PROFILE, SUSTAINABILITY', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-08-21 04:47:04', 104, '2024-08-21 04:54:44', 0, NULL, 1),
(20844, 'Mithun Kumar', '4', '8124529519', '', 'mithunsurya4545@gmail.com', '2003-02-17', 21, '2', '2', 'Parent', 'Bike sales', 8000.00, 1, 0.00, 15000.00, 'Kodabakkam', 'Chennai', '2408210007', '50', '1', 'upload_files/candidate_tracker/6609720702_MithunResume.docx', NULL, '1', '2024-08-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-21 05:00:24', 1, '2024-08-22 05:10:57', 0, NULL, 1),
(20845, 'PANDIYARAJAN', '13', '6382556590', '', 'rajanlkp02@gmail.com', '2002-04-30', 22, '4', '2', 'BALAKRISHNAN P', 'FARMER', 9000.00, 1, 0.00, 8000.00, 'west street, L. Kottanipatti, madurai', 'Vaigai nagar, Urapakkam, chennai', '2408210008', '', '1', 'upload_files/candidate_tracker/88270481587_PandiyarajanResume1.pdf', NULL, '1', '2024-08-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-21 05:03:26', 1, '2024-08-21 05:10:47', 0, NULL, 1),
(20846, 'SATHISH.M', '5', '9940344058', '', 'sathishdsilva107@gmail.com', '2000-07-14', 24, '1', '2', 'N.MANOHARAN', 'COOLI', 9000.00, 2, 0.00, 20000.00, 'MADHAVARAM', 'MADHAVARAM', '2408210009', '', '1', 'upload_files/candidate_tracker/30139449932_RESUMESathish24.04.2024.pdf', NULL, '1', '2024-08-21', 0, '55775', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected due to concincing skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-08-21 05:15:50', 104, '2024-08-21 03:27:04', 0, NULL, 1),
(20847, 'R Vinitha', '6', '7601052504', '7671873833', 'vinitharamu21@gmail.com', '2003-09-18', 20, '2', '2', 'K Ramu', 'Farmer', 25000.00, 1, 15000.00, 15000.00, 'Ramapuram', 'Tirupati', '2408210010', '1', '2', 'upload_files/candidate_tracker/51751235512_RVinithaResume1.pdf', NULL, '1', '2024-08-21', 25, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Telugu Girl and not Speak tamil well and not try to speak also ,slang also not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-08-21 05:42:41', 104, '2024-08-21 03:27:26', 0, NULL, 1),
(20848, 'nandha kumar', '6', '6382535355', '9566359455', 'nk3681486@gmail.com', '2009-08-21', 0, '2', '2', 'UDHAYA KUMAr', 'Driver', 16000.00, 1, 0.00, 14000.00, 'VELLORE', 'VELLORE', '2408210011', '34', '1', 'upload_files/candidate_tracker/60565632493_nandhakumarresume.docx', NULL, '1', '2024-08-21', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate already working in bill counter so, right now looking just one job but , communication skill is lower and not fit in sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-21 05:44:35', 104, '2024-08-21 03:28:08', 0, NULL, 1),
(20849, 'Naveen.g', '11', '9344859428', '', 'naveeng21112000@gmail.com', '2000-11-21', 23, '6', '2', 'K.gnana Prakasam', 'NLCIL employee', 20000.00, 1, 0.00, 5000.00, 'A-11 , red square street, block 25, Neyveli', 'No 25/55, saivamuthaiah mudali street , chennai', '2408210012', '', '1', 'upload_files/candidate_tracker/72466697676_naveenresume.pdf', NULL, '1', '2024-08-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-21 06:03:06', 1, '2024-08-21 06:10:27', 0, NULL, 1),
(20850, 'Chandru M', '4', '6379004720', '7708054217', 'chandrunpd@gmail.com', '2000-04-21', 24, '2', '2', 'MURUGESAN K', 'FARMAR', 6000.00, 1, 16000.00, 25000.00, 'Chennai', 'Chennai', '2408210013', '50', '2', 'upload_files/candidate_tracker/38129940153_chandru1.doc.docx', NULL, '1', '2024-08-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-21 06:12:10', 1, '2024-08-21 06:22:57', 0, NULL, 1),
(20851, 'MANIKANDAN K', '13', '8056524436', '9786997632', 'manimessi1727751@gmail.com', '2002-04-21', 22, '2', '2', 'KATHIRVEL K', 'FARMAR', 6000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2408210014', '50', '1', 'upload_files/candidate_tracker/39620562822_MANIKANDANK.CV.pdf', NULL, '1', '2024-08-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-21 06:12:12', 1, '2024-08-21 06:16:37', 0, NULL, 1),
(20852, 'Stephen raj', '5', '7338719716', '8072804715', 'Rajubaii1998@gmail.com', '1998-06-27', 26, '2', '2', 'Parents', 'Coolie', 6000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2408210015', '50', '2', 'upload_files/candidate_tracker/18900665818_Stephennewresume11.pdf', NULL, '1', '2024-08-21', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales profession', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-08-21 06:18:20', 104, '2024-08-21 03:29:04', 0, NULL, 1),
(20853, 'DHARSHINI VJ', '6', '9751545696', '', 'dharshinijayaram095@gmail.com', '2004-05-09', 20, '2', '2', 'Jayaraman', 'Vpn eye HOSPITAL PRO', 100000.00, 1, 0.00, 20000.00, 'Thiruvarur', 'Thiruvarur', '2408210016', '50', '1', 'upload_files/candidate_tracker/57794576390_resume.pdf', NULL, '1', '2024-08-21', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-21 06:20:29', 104, '2024-08-21 03:29:16', 0, NULL, 1),
(20854, 'R.Bhavadharani', '4', '8838909180', '9360195934', 'bhavabhavadharani692@gmail.com', '2001-03-31', 23, '6', '1', 'Ramesh', 'Farmer', 15000.00, 1, 0.00, 12000.00, 'Vadapathi', 'Mannargudi', '2408210017', '', '1', 'upload_files/candidate_tracker/1092749554_bhavadharani2.pdf', NULL, '1', '2024-08-21', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-21 06:52:07', 104, '2024-08-26 07:06:03', 0, NULL, 1),
(20855, 'Rajalakshmi', '4', '9629696392', '', 'Rajalakshmikrishna09@gmail.com', '2001-12-09', 22, '6', '2', 'kishnamoorithy', 'farmer', 200000.00, 1, 120000.00, 15000.00, 'eda melaiyur', 'eda melaiyur', '2408210018', '', '2', 'upload_files/candidate_tracker/43107299098_anuresume.pdf', NULL, '1', '2024-08-21', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-21 06:52:34', 104, '2024-08-26 06:59:06', 0, NULL, 1),
(20856, '', '0', '7397354968', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408210019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-21 06:56:18', 0, NULL, 0, NULL, 1),
(20857, 'Simran D', '6', '7200962327', '9360544103', 'simran130920@gmail.com', '2000-09-13', 23, '2', '2', 'Cams', 'B sc home science', 23000.00, 2, 16000.00, 25000.00, '476, th road old washermanpet', '476, th road old washermanpet', '2408210020', '57', '2', 'upload_files/candidate_tracker/92865372973_SimranCV.pdf', NULL, '3', '2024-08-21', 2, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1 year experience from cams .  Previous salary 16 k. So I analyse 7 days training.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-21 06:56:36', 104, '2024-08-21 03:29:40', 0, NULL, 1),
(20858, 'Vasanth Raj G', '4', '6383434054', '', 'vasanthraj22518@gmail.com', '2000-10-22', 23, '2', '2', 'Govindharaj', 'Agriculture', 10000.00, 4, 0.00, 16000.00, 'Chennai', 'Chennai', '2408210021', '50', '1', 'upload_files/candidate_tracker/13179428591_pdfresume.pdf', NULL, '3', '2024-08-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-21 07:11:21', 1, '2024-08-21 07:17:21', 0, NULL, 1),
(20859, 'Manikumar gangisetty', '6', '6305253065', '', 'gangisettymani98@gmail.com', '1997-08-22', 26, '2', '2', 'Father', 'Mechanical engineering', 2.80, 2, 2.80, 3.00, 'Hyderabad', 'Bangalore', '2408210022', '1', '2', 'upload_files/candidate_tracker/10591620621_G.ManikumarResume.pdf', NULL, '1', '2024-08-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-08-21 07:14:25', 1, '2024-08-21 07:21:24', 0, NULL, 1),
(20860, 'Bhakya ravichandran', '6', '7695824059', '8438443390', 'bhakyarc2001@gmail.com', '2001-12-16', 22, '2', '2', 'Ravichandran', 'Driver', 20000.00, 2, 0.00, 15000.00, 'Mayilaaduthurai', 'Chennai', '2408210023', '45', '1', 'upload_files/candidate_tracker/28625344991_intresume1.pdf', NULL, '1', '2024-08-21', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not try to speak ,i gave time to prepare but she not come again', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-21 07:27:28', 104, '2024-08-21 03:29:57', 0, NULL, 1),
(20861, 'Charles. P', '5', '9176442021', '8939396581', 'Charlesappu2025@gmail.com', '2002-01-06', 22, '1', '2', 'Pattabiraman', 'office boy', 10000.00, 2, 0.00, 24000.00, 'Chennai', 'Chennai', '2408210024', '', '2', 'upload_files/candidate_tracker/86960867752_CHARLES.PResume.pdf', NULL, '1', '2024-08-21', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not good for saes job, no prior experience also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-08-21 08:02:09', 104, '2024-08-21 04:47:37', 0, NULL, 1),
(20862, '', '0', '9176440201', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408210025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-21 08:32:27', 0, NULL, 0, NULL, 1),
(20863, 'Jayalakshmi B', '11', '9884397976', '7338992204', 'bjayalakshmi923@gmail.com', '2000-09-23', 23, '6', '2', 'Balakrishnan', 'Real estate', 15000.00, 1, 22917.00, 33000.00, 'No. 5/8 periyar street, Dr. Ambedkar nagar', 'No. 5/8 periyar street, Dr. Ambedkar nagar', '2408210026', '', '2', 'upload_files/candidate_tracker/69522362117_downloadfile.jpg.pdf', NULL, '1', '2024-08-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-21 08:59:52', 104, '2024-08-21 04:07:24', 0, NULL, 1),
(20864, 'rithik', '6', '9345828567', '', 'rithiktaabi@gmail.com', '2003-11-21', 20, '6', '2', 'venkatesan', 'business', 30000.00, 1, 0.00, 15000.00, '10/46 Kasthuri bai st Vyasarpadi Chennai 600039', 'Tvk 1st street madhavaram Chennai 600061', '2408210027', '', '1', 'upload_files/candidate_tracker/71145778642_VRITHIKFlowCVResume202407101.pdf', NULL, '1', '2024-08-21', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate future plan is SAP studing , so that reason to searching for work so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-08-21 09:06:10', 104, '2024-08-21 03:34:40', 0, NULL, 1),
(20865, 'Mukesh', '6', '6369679202', '', 'mukeshdeepa95@gmail.com', '2004-03-06', 20, '6', '2', 'Parthiban', 'Mtc', 25000.00, 0, 0.00, 15000.00, 'Perambur', 'No.49/87 thulasingam street perambur chennai-11', '2408210028', '', '1', 'upload_files/candidate_tracker/55530658989_Book21Aug2024.pdf', NULL, '1', '2024-08-21', 0, '', '3', '59', '2024-08-26', 192000.00, '', '5', '1970-01-01', '1', 'Fresher Can be trained in our roles Communication Ok  Need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '2024-08-26', 1, '2024-08-21 09:07:18', 104, '2024-08-26 04:42:33', 0, NULL, 1),
(20866, 'Yuvan Sankar v', '6', '7305133266', '', '01yuvan01@gmail.com', '2003-01-03', 21, '2', '2', 'Venkatesh', 'Clerk In sbi', 20000.00, 1, 0.00, 15000.00, 'No 6 senthil nagar 1st main road Chennai kolathur', 'No 6 senthil nagar 1st main road Chennai kolathur', '2408210029', '56', '1', 'upload_files/candidate_tracker/16700538700_MyResumeJune1720241.pdf', NULL, '1', '2024-08-22', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-21 09:37:16', 104, '2024-08-22 03:30:43', 0, NULL, 1),
(20867, '', '0', '7695871651', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408210030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-21 12:18:15', 0, NULL, 0, NULL, 1),
(20868, 'b Bhuvan kumar', '6', '8978534401', '', 'bhuvankumar.ballipongala@gmail.com', '2002-05-02', 22, '2', '2', 'b venkateshwrulu', 'Tailor', 25000.00, 0, 0.00, 20000.00, 'Tirupati', 'Tirupati', '2408210031', '1', '1', 'upload_files/candidate_tracker/95193220011_BHUVAN.B.pdf', NULL, '1', '2024-08-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication is ok, fresher, we can give a try ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-21 03:56:17', 126, '2024-08-22 06:40:47', 0, NULL, 1),
(20869, 'R. Sai Harish', '6', '9363091224', '9840152922', 'rmsai7773@gmail.com', '2004-04-15', 20, '2', '2', 'K. Mahalakshmi', 'Kotak policy agent', 15000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2408210032', '56', '1', 'upload_files/candidate_tracker/51468356091_updateresumesai1.pdf', NULL, '1', '2024-08-22', 0, '', '3', '59', '2024-08-27', 192000.00, '', '3', '2024-11-30', '2', 'Communication Ok Fresher for Sales Roles have Accounts intern exp Mum is an LIC agent need to have the data secrecy', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2024-08-27', 1, '2024-08-21 04:22:05', 104, '2024-08-28 09:41:23', 0, NULL, 1),
(20870, 'Kowshik v', '6', '8870823785', '', 'kowshik0411@gmail.com', '2004-11-04', 19, '2', '2', 'Bhuvaneshwari v', 'Homemaker', 1.00, 1, 0.00, 16000.00, 'No19/10 Poombukar nagar, wimco Nagar ,Chennai- 57', 'No20A/37 Poombukar nagar ,Wimco Nagar, Chennai 57', '2408210033', '56', '1', 'upload_files/candidate_tracker/67353301460_CopyofCopyofGreywhitea4CleanCVResume202408121259340000.pdf', NULL, '1', '2024-08-22', 0, '', '3', '59', '2024-08-26', 204000.00, '', NULL, '2025-03-31', '2', 'Communication Ok fresher for roles have other exp can be trained in our role need to check and analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-08-26', 1, '2024-08-21 04:23:31', 104, '2024-08-26 09:45:32', 0, NULL, 1),
(20871, 'Rajkumar R', '5', '9884511273', '', 'rameshrajkumar1999@gmail.com', '1999-05-04', 25, '2', '2', 'Ramesh A', 'Driver', 12000.00, 1, 18000.00, 20000.00, 'Vengapakkam', 'Vengapakkm', '2408220001', '56', '2', 'upload_files/candidate_tracker/63949311398_RajkumarResume2.pdf', NULL, '1', '2024-08-22', 0, '', '3', '59', '2024-09-02', 255000.00, '', '3', '2024-09-09', '1', 'communication Ok have exp in calling Can give a try and check location too long not sure with the sustainability', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '2024-09-02', 1, '2024-08-22 03:10:39', 104, '2024-09-02 06:27:01', 0, NULL, 1),
(20872, 'Kamalanathan U', '5', '9952170752', '', 'kamalswapna12@gmail.com', '1994-09-17', 29, '2', '1', 'M v Rekha', 'Engineer', 38000.00, 3, 370000.00, 500000.00, 'Chennai', 'Chennai', '2408220002', '56', '2', 'upload_files/candidate_tracker/20593422573_DOC20240808WA0001..pdf', NULL, '1', '2024-08-22', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No proper appearance. Low convincing skill.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-08-22 03:23:22', 104, '2024-08-22 03:32:28', 0, NULL, 1),
(20873, 'Dhanush R', '6', '7395994354', '9962038171', 'dhanushrajini05@gmail.com', '2003-11-05', 20, '2', '2', 'Rajini K', 'Mason(like civil work)', 120000.00, 1, 0.00, 16000.00, 'No:47 Vaidyanathan street Shenoy nagar Chennai-30', 'No:47 Vaidyanathan street Shenoy nagar Chennai-30', '2408220003', '45', '1', 'upload_files/candidate_tracker/32306570041_blueprofessionalmodernCVresume202406101034010000.pdf', NULL, '1', '2024-08-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not willing to work 20% field work', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-22 04:46:00', 104, '2024-08-22 03:33:36', 0, NULL, 1),
(20874, 'Varsnii Ravichandran', '4', '9344331573', '9994069064', 'varshuravi1999@gmail.com', '1999-10-19', 24, '3', '2', 'Ravichandran Selvapriya', 'Teacher', 100000.00, 1, 9000.00, 12000.00, 'Orathanadu, Pudur', 'Orathanadu, Pudur', '2408220004', '', '2', 'upload_files/candidate_tracker/5535562037_resumevars2024UPDATED.pdf', NULL, '1', '2024-08-22', 0, '', '3', '59', '2024-08-28', 156000.00, '', '', '2024-09-12', '2', 'Communication Ok Haev exp in calling but not a relevant one can give a try and check', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '2024-08-28', 1, '2024-08-22 04:50:17', 104, '2024-08-30 06:33:51', 0, NULL, 1),
(20875, 'Sanjai.p', '6', '6383828967', '', 'ssanjaipattu@gmail.com', '2002-06-29', 22, '3', '2', 'Perumal', 'Self employed', 30000.00, 1, 0.00, 18000.00, 'Kilpauk', 'Kilpauk', '2408220005', '', '1', 'upload_files/candidate_tracker/59335561705_Sanjaip2024.pdf', NULL, '1', '2024-08-22', 0, '', '3', '59', '2024-08-26', 192000.00, '', '3', '2024-09-30', '1', 'Communication OK Can give a try in our roles have part time store exp can be trained', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '2024-08-26', 1, '2024-08-22 04:59:55', 104, '2024-08-26 09:46:10', 0, NULL, 1),
(20876, 'Priya A', '4', '7448737150', '9952087538', 'priyaangeetha@gmail.com', '1998-06-11', 26, '2', '1', 'Deepak P', 'Junior Engineer', 27000.00, 1, 20000.00, 22000.00, 'Korukupet Chennai', 'Korukupet Chennai', '2408220006', '50', '2', 'upload_files/candidate_tracker/22813397080_ResumePriyaA.pdf', NULL, '1', '2024-08-22', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'low sales skills \n2nd round interviewed by gaurav sir ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-22 05:14:36', 104, '2024-08-22 03:34:08', 0, NULL, 1),
(20877, 'karan rakseshwarer', '6', '9840350034', '', 'karanchezz@gmail.com', '1995-06-16', 29, '2', '2', 'kayal vizhi c', 'business', 50000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2408220007', '1', '1', 'upload_files/candidate_tracker/71877457314_FerIp9E.pdf', NULL, '1', '2024-08-22', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication and performance is good but he is preparing for TNPSC exam also he said he nee job for temporarly.so sutain is dount', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2024-08-22 05:49:45', 104, '2024-08-22 03:34:21', 0, NULL, 1),
(20878, '', '0', '6369297743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408220008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-22 06:21:45', 0, NULL, 0, NULL, 1),
(20879, 'Murali krishnan', '5', '9884260521', '', 'Muralikrishnan98765@gmail.com', '2009-08-22', 0, '3', '2', 'Stella', 'House keeping', 50000.00, 1, 24000.00, 28000.00, 'Chennai', 'Chennai', '2408220009', '', '2', 'upload_files/candidate_tracker/82154059359_Resume2.pdf', NULL, '1', '2024-08-22', 10, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he candidate struggled to effectively convey their thoughts and ideas during the interview and candidatexquots technical knowledge fell short of the requirements for the position so i decided final status is rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-08-22 06:49:50', 104, '2024-08-22 03:34:57', 0, NULL, 1),
(20880, 'Dhatchayani. R', '6', '9600202697', '7867940161', 'dhatchadhatcha093@gmail.com', '2000-02-26', 24, '6', '2', 'K. Ramalingam', 'Fisherman', 20000.00, 2, 0.00, 15000.00, 'Kottaikadu', 'Ambedkar street', '2408220010', '', '2', 'upload_files/candidate_tracker/99814538682_DHATCHAYANIRESUME22.docx', NULL, '1', '2024-08-22', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Experienced but not fit for this job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-22 06:56:41', 104, '2024-08-22 03:35:59', 0, NULL, 1),
(20881, 'KATHIRAVAN S', '13', '9344581126', '', 'skathiravan583@gmail.com', '2003-02-02', 21, '3', '2', 'Saravanan', 'Electrition', 72000.00, 2, 0.00, 20000.00, '1/91,kalvi Nagar,Vairichettipalayam, Trichy', '1/71,Sidco Nagar, Villivakkam, Chennai', '2408220011', '', '1', 'upload_files/candidate_tracker/14809708051_KathiravanResume.pdf', NULL, '1', '2024-08-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-22 06:58:43', 1, '2024-08-22 07:05:35', 0, NULL, 1),
(20882, 'pavithra srinivasan', '20', '6369924209', '9445356891', 'pavithrasrinivasan0406@gmail.com', '2003-05-04', 21, '3', '2', 'srinivasan r', 'driver', 12000.00, 1, 300000.00, 450000.00, 'moolakadai', 'moolakadai', '2408220012', '', '2', 'upload_files/candidate_tracker/21721664050_PaviResumeUpdated2.pdf', NULL, '1', '2024-08-22', 1, '', '3', '59', '2024-08-23', 350000.00, '', '3', '2024-09-17', '2', 'Communication Ok Can be trained in our roles have exp in sales but not a relevant one Previous exp documents verified', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55567', '55557', '2024-08-23', 1, '2024-08-22 07:25:15', 104, '2024-08-30 06:34:04', 0, NULL, 1),
(20883, 'Manikanth Yerimani', '6', '8951862463', '8660807940', 'karthikyerimani@gmail.com', '1997-11-24', 26, '2', '2', 'Nagappa', 'Agriculture', 100000.00, 4, 24010.00, 30000.00, 'At post Guttal Haveri Karnataka -581108', 'Whitefield Bangalore', '2408220013', '1', '2', 'upload_files/candidate_tracker/89514449399_ResumeManikanthNY.pdf', NULL, '1', '2024-08-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-08-22 07:38:34', 1, '2024-08-22 09:19:16', 0, NULL, 1),
(20884, 'S.Keerthana', '6', '9789671519', '9489544418', 'skeerthana4545@gmail.com', '2002-09-03', 21, '2', '2', 'Soundharya', 'Data analysis', 60.00, 1, 22000.00, 25000.00, 'Pondicherry', 'Thiruvanmiyur', '2408220014', '42', '2', 'upload_files/candidate_tracker/63716017341_CurriculamVitaeS.Keerthana1.pdf', NULL, '1', '2024-08-22', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-08-22 07:41:04', 104, '2024-08-22 06:58:39', 0, NULL, 1),
(20885, 'Akash S', '5', '8939863683', '', 'joshakashhh@gmail.com', '1997-02-01', 27, '6', '2', 'Sampath R', 'Tailor', 8000.00, 2, 42000.00, 45000.00, 'Ambattur ,chennai', 'Ambattur, chennai', '2408220015', '', '2', 'upload_files/candidate_tracker/22420870112_AkashSampathaug24.pdf', NULL, '1', '2024-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-22 08:40:28', 1, '2024-08-22 08:44:20', 0, NULL, 1),
(20886, 'Hajira begum.s', '4', '8056193570', '', 'Hajirahaju1212@gmail.com', '2002-03-12', 22, '3', '1', 'Amjad', 'Degree', 30000.00, 0, 3.00, 4.40, 'Royapettah', 'Royapettah', '2408220016', '', '2', 'upload_files/candidate_tracker/40284285760_resumehajirabegum.pdf', NULL, '1', '2024-08-22', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested in sales', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-22 10:20:33', 104, '2024-08-22 05:14:46', 0, NULL, 1),
(20887, '', '0', '7305600675', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408220017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-22 12:43:27', 0, NULL, 0, NULL, 1),
(20888, 'OM KUMAR', '4', '9677420477', '8428682330', 'omkumar0477@gmail.com', '1998-08-19', 26, '1', '2', 'Loganathan', 'Agriculture', 30000.00, 4, 0.00, 18000.00, 'No.1/271, Perumal Kovil Street, Pudumavilangai', 'No.1/271, Perumal Kovil Street, Pudumavilangai', '2408220018', '', '1', 'upload_files/candidate_tracker/17932427183_omkumarcv.docx', NULL, '1', '2024-08-23', 0, 'Jothika', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-22 12:57:22', 1, '2024-08-22 01:16:29', 0, NULL, 1),
(20889, 'S.keerthiga', '4', '7868960772', '7867894149', 'Keerthikeerthu425@gamil.com', '2003-11-01', 20, '2', '2', 'P.surendhiran', 'Former', 700000.00, 1, 0.00, 12000.00, 'Old street,varagur613101,thiruvaiyaru tk,tanjore', 'Pathima nagar,michelapatti,budhalur tk,tanjore', '2408220019', '1', '1', 'upload_files/candidate_tracker/21934454907_DOC20230728WA0022..docx', NULL, '1', '2024-08-24', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-22 01:04:40', 104, '2024-08-24 04:15:49', 0, NULL, 1),
(20890, 'Sangeeth kumar', '6', '9597696613', '', 'aliveappu@gmail.com', '1998-11-02', 25, '2', '2', 'Jothi', 'Farmer', 10000.00, 2, 0.00, 20000.00, 'No.19 surapoondi V eguvarpalayam p gummidipoondi t', 'Mangadu', '2408220020', '50', '1', 'upload_files/candidate_tracker/89363883169_ResumeSangeeth.pdf', NULL, '1', '2024-08-23', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected -not so interested', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-22 01:42:25', 104, '2024-08-23 04:01:38', 0, NULL, 1),
(20891, '', '0', '9025595452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408220021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-22 02:38:03', 0, NULL, 0, NULL, 1),
(20892, 'Saranya m', '4', '6385582708', '6385581707', 'dreamlive871@gmail.com', '1999-11-29', 24, '2', '2', 'M.chandhra Sekar', 'Farmer', 20000.00, 1, 17000.00, 20000.00, 'Gummidipoondi', 'Gummidipoondi', '2408220022', '56', '2', 'upload_files/candidate_tracker/42715685487_MsaranyaResume.pdf', NULL, '1', '2024-08-23', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-22 03:21:11', 1, '2024-08-22 03:34:15', 0, NULL, 1),
(20893, 'Hashana Salam', '4', '9360208731', '', 'hashanasalam@gmail.com', '2004-07-09', 20, '2', '2', 'ajleena banu', 'housewife', 15000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2408220023', '50', '1', 'upload_files/candidate_tracker/22718923233_HASHANASHAKKINAResume.pdf', NULL, '1', '2024-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-22 06:15:45', 1, '2024-08-22 06:18:57', 0, NULL, 1),
(20894, 'Mohamed Shahid', '4', '9489410063', '', 'shahidmohamed395@gmail.com', '2003-12-28', 20, '2', '2', 'sadiq batcha', 'driver', 2.00, 1, 0.00, 18000.00, 'Kumbakonam', 'chennai', '2408220024', '50', '1', 'upload_files/candidate_tracker/32395523551_Resume.pdf', NULL, '3', '2024-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-22 06:22:48', 1, '2024-08-22 06:26:22', 0, NULL, 1),
(20895, 'durga devi', '4', '8680915086', '', 'edevi9070@gmail.com', '1996-10-15', 27, '2', '1', 'Parthiban', 'Engineer', 30000.00, 1, 3.32, 3.50, 'Chennai', 'Chennai', '2408230001', '1', '2', 'upload_files/candidate_tracker/52173356856_ResumeDURGADEVIE.pdf', NULL, '3', '2024-08-23', 15, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'kindly follow the gaurav sir feedback ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55824', '55560', '1970-01-01', 1, '2024-08-23 03:34:27', 104, '2024-08-23 04:11:38', 0, NULL, 1),
(20896, 'Ramya', '6', '6374298796', '9903445072', 'ramyau19st029@gmail.com', '2001-12-10', 22, '2', '2', 'Valarmathi', 'Farmer', 12000.00, 1, 0.00, 18000.00, 'Chennai porur', 'Chennai porur', '2408230002', '50', '1', 'upload_files/candidate_tracker/5413366450_AdobeScan22Aug2024.PDF', NULL, '1', '2024-08-23', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no  basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-23 04:27:53', 104, '2024-08-23 04:01:52', 0, NULL, 1),
(20897, 'SHEVAK CHANDRU V', '20', '9789748568', '7639552175', 'shevakstella22@gmail.com', '2002-03-13', 22, '2', '2', 'Vincent', 'Not working', 30.00, 2, 15250.00, 19500.00, 'No.3/112 mainroad anilady Villupuram dt 605651', 'Plot No 30 ALA Guarden karasangal 602301', '2408230003', '45', '2', 'upload_files/candidate_tracker/28947690722_SHEVAKCHANDRUV2.pdf', NULL, '1', '2024-08-23', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Poor Communication Skills and  Limited Technical Expertise...Lack of Problem-Solving Abilities and finally Unprepared and Disorganized so not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-08-23 04:58:23', 104, '2024-08-23 04:11:13', 0, NULL, 1),
(20898, 'M.A masood', '5', '9345505473', '9360571027', 'memasoodma17@gmail.com', '1998-05-11', 26, '2', '2', 'Aslam', 'Auto mechanic', 12000.00, 2, 17000.00, 21000.00, 'Ellis Road', 'old washermenpet', '2408230004', '50', '2', 'upload_files/candidate_tracker/85282154915_MASOODma.pdf', NULL, '1', '2024-08-23', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No laptop and No Pressure handling skill. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-08-23 05:11:35', 104, '2024-08-23 04:09:12', 0, NULL, 1),
(20899, 'Keerthiga', '4', '7305764033', '9443570363', 'keerthigapvl99@gmail.com', '1999-10-25', 24, '2', '1', 'Ramamoorthi', 'Dobi', 240000.00, 2, 16000.00, 27000.00, 'Thanjavur', 'Chennai thirumangalam', '2408230005', '50', '2', 'upload_files/candidate_tracker/91849347664_DOC20240823WA0000..pdf', NULL, '1', '2024-08-23', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-23 05:17:27', 104, '2024-08-23 04:05:11', 0, NULL, 1),
(20900, 'charan', '4', '7395957276', '9840775091', 'charanrc1875@gmail.com', '2000-04-17', 24, '2', '2', 'mani vannan', 'ba', 2.00, 1, 14200.00, 18000.00, 'hennai', 'chennai', '2408230006', '50', '2', 'upload_files/candidate_tracker/98680687620_Chr.pdf', NULL, '1', '2024-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-23 05:18:00', 1, '2024-08-23 05:25:53', 0, NULL, 1),
(20901, 'Aruni.I', '20', '7305703383', '7358069188', 'i.aruni102003@gmail.com', '2003-04-10', 21, '2', '2', 'Iyyanar.T', 'Driver', 18000.00, 1, 16000.00, 18000.00, 'Ennore', 'No.49/16, 1st street, bharathiyar nagar, ennore', '2408230007', '1', '2', 'upload_files/candidate_tracker/82104938415_ARUNIRESUME.pdf', NULL, '1', '2024-08-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'already Experience at care health insurance 2023 to 24 .Because health Issues.   Suggestion 17 k salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-23 05:23:27', 104, '2024-08-26 07:02:12', 0, NULL, 1),
(20902, 'Nivedha', '20', '6369531667', '9361402213', 'Nivedhar62@gmail.com', '2003-02-27', 21, '2', '2', 'Ramu', 'Welder', 18000.00, 1, 16000.00, 18000.00, 'Chennai', 'Chennai', '2408230008', '1', '2', 'upload_files/candidate_tracker/82447155101_NIVEDHA.pdf', NULL, '1', '2024-08-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'already Experience at care health insurance 2023 to2024. Because of father health issue. i Suggestion 17 k salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-23 06:28:24', 104, '2024-08-26 07:02:55', 0, NULL, 1),
(20903, 'Saran R', '6', '9600609551', '8489224089', 'charanroshan34678@gmail.com', '2000-01-05', 24, '2', '2', 'Raj', 'Security', 12000.00, 2, 0.00, 18000.00, 'Dharmapuri', 'Dharmapuri', '2408230009', '50', '1', 'upload_files/candidate_tracker/80449947661_BlueModernResume202406061254440000.pdf', NULL, '2', '2024-08-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected job needed person ctc 16k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-23 06:41:53', 104, '2024-08-23 04:01:19', 0, NULL, 1),
(20904, 'vinothini', '5', '9176910890', '9965725175', 'vvinothinirajangam@gmail.com', '2003-10-17', 20, '3', '2', 'thilagavathi', 'billing', 11500.00, 2, 0.00, 20000.00, 'viyasarpadi', 'viyasarpadi', '2408230010', '', '1', 'upload_files/candidate_tracker/16613381177_VinothiniResume11.docx', NULL, '1', '2024-08-23', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for rm\nfresher', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-08-23 07:01:35', 104, '2024-08-23 04:04:44', 0, NULL, 1),
(20905, 'Pavithra.R', '6', '7904991314', '7358731353', 'pavithara31001@gmail.com', '2001-07-04', 23, '1', '2', 'Ravi.K', 'Auto driver', 15000.00, 1, 0.00, 16000.00, '1 appulingam vathiyar St, perambur ch 11', '1 Appulingam Vathiyar St, Perambur Ch 11', '2408230011', '', '1', 'upload_files/candidate_tracker/83696507991_PavitharaResume.pdf', NULL, '1', '2024-08-23', 0, '', '3', '59', '2024-09-02', 168000.00, '', '3', '2024-10-29', '1', 'Communication Average Can give a try and check 3months calling exp in HDB but no documents for that need to analyse in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2024-09-02', 1, '2024-08-23 07:05:16', 104, '2024-09-02 06:26:09', 0, NULL, 1),
(20906, 'Praveena', '6', '9677053989', '', 'Prave0304k@gmail.com', '2002-04-03', 22, '2', '1', 'Kanagalakshmi', 'Nil', 10000.00, 1, 0.00, 17000.00, 'Poonamallee Chennai', 'Poonamallee Chennai', '2408230012', '50', '1', 'upload_files/candidate_tracker/83268999201_PRAVEENARESUME.pdf', NULL, '1', '2024-08-23', 0, '', '3', '59', '2024-09-02', 180000.00, '', '3', '2024-12-02', '1', 'Communication Ok Can give a try and check in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2024-09-02', 1, '2024-08-23 07:34:38', 104, '2024-09-02 06:25:32', 0, NULL, 1),
(20907, 'R.Amutha', '5', '8098783009', '8438474245', 'Amuthasasi0426@gmail.com', '1995-05-26', 29, '2', '1', 'D.sasikumar', 'Farmer', 5000.00, 3, 0.00, 20000.00, 'Dharmapuri (Dt).', 'Dharmapuri (Dt).', '2408230013', '50', '1', 'upload_files/candidate_tracker/86583045688_AMUTHAresume1.docx', NULL, '1', '2024-08-23', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'dont have exp in sales\ndont have communication skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-08-23 07:59:35', 104, '2024-08-23 04:54:17', 0, NULL, 1),
(20908, 'Sheeba Malar', '6', '6382773965', '7845103045', 'sheebamalar2001@gmail.com', '2001-10-02', 22, '2', '2', 'Ganesan', 'Wages', 25000.00, 1, 0.00, 1.80, 'Tirunelveli', 'Tirunelveli', '2408230014', '50', '1', 'upload_files/candidate_tracker/17895975010_Sheebamalarresume.pdf', NULL, '1', '2024-08-24', 0, '', '3', '59', '2024-09-02', 168000.00, '', '3', '2024-09-13', '2', 'Communication Ok fresher for our roles can be trained need to analyse and confirm in 7 days', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-09-02', 1, '2024-08-23 09:01:26', 104, '2024-09-02 06:20:28', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20909, 'P.PRASANTH', '5', '9710628052', '9080533294', 'appuprasanth708@gmail.com', '1999-08-14', 25, '2', '2', '88387 47247', 'House wife', 19500.00, 0, 19500.00, 24000.00, 'POTHUR', 'POTHUR', '2408230015', '1', '2', 'upload_files/candidate_tracker/24920200041_PrasanthResumeNew.pdf', NULL, '1', '2024-08-23', 1, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no convincing skills, no looking profiled also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2024-08-23 09:35:42', 104, '2024-08-23 05:06:42', 0, NULL, 1),
(20910, 'C. krithika', '4', '9790195793', '', 'krithichandran2622@gmail.com', '1999-09-22', 24, '2', '1', 'L. Vigneshwaran', 'Working in TCS', 40000.00, 2, 0.00, 350000.00, 'Chennai', 'Chennai', '2408230016', '50', '1', 'upload_files/candidate_tracker/19741958047_KrithikaCV1.pdf', NULL, '1', '2024-08-24', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-23 10:41:32', 104, '2024-08-24 04:22:42', 0, NULL, 1),
(20911, 'CT.vishwa S', '6', '7358207851', '9840339828', 'vishwa4701537@gmail.com', '2001-07-03', 23, '2', '2', 'S ammu', 'Telecaller', 20.00, 3, 0.00, 15.00, 'Ayanavaram', 'Chennai', '2408230017', '50', '1', 'upload_files/candidate_tracker/27017058065_Resume.pdf', NULL, '1', '2024-08-24', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication and convincing skill is low not fit sales he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-23 10:54:07', 104, '2024-08-24 04:22:17', 0, NULL, 1),
(20912, 'Sai Shravan', '11', '8939547999', '8939413999', 'saishravan2002@gmail.com', '2002-03-21', 22, '6', '2', '. avan kumar', 'business', 100000.00, 0, 0.00, 18000.00, 'manapakkam', 'manapakkam', '2408240001', '', '1', 'upload_files/candidate_tracker/10972985049_saishravanresume1compressed.pdf', NULL, '1', '2024-08-24', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-24 04:32:27', 104, '2024-08-24 10:11:35', 0, NULL, 1),
(20913, 'Suman', '5', '6381705796', '9698865122', 'sumancivil56@gmail.com', '1995-11-08', 28, '3', '2', 'Ravi', 'Former', 160000.00, 1, 16000.00, 20000.00, 'Marakkanam', 'Chennai', '2408240002', '', '2', 'upload_files/candidate_tracker/50608946784_DOC20240823WA0003.pdf', NULL, '1', '2024-08-24', 10, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-24 05:05:32', 1, '2024-08-24 05:14:53', 0, NULL, 1),
(20914, 'rubeash s', '6', '9952334401', '9500555488', 'rubijnavas@gmail.com', '1998-12-15', 25, '2', '2', 'parent', 'real estate', 30000.00, 1, 13000.00, 20000.00, 'vellore', 'chennai', '2408240003', '50', '2', 'upload_files/candidate_tracker/98294781198_Rubiresu.pdf', NULL, '1', '2024-08-24', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-24 05:06:55', 104, '2024-08-24 04:21:44', 0, NULL, 1),
(20915, 'Malar Murugavel', '6', '6382718099', '', 'malarmurugavel31@gmail.com', '2002-01-31', 22, '2', '2', 'Bharathi. M', 'Receptionist', 15000.00, 0, 0.00, 13000.00, 'Mel street, P. V. Kalathur , Chengalpattu', 'Chengalpattu', '2408240004', '50', '1', 'upload_files/candidate_tracker/73332621282_Malar.resume202408131711570000.pdf', NULL, '1', '2024-08-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected -interested in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-24 05:06:59', 104, '2024-08-26 07:03:23', 0, NULL, 1),
(20916, 'A. Mahalakshmi', '4', '9655886497', '9944607640', 'mahalakshmi112211@gmail.com', '2000-12-16', 23, '2', '2', 'Meenachi', 'Arechelogy department', 30000.00, 1, 20000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2408240005', '1', '2', 'upload_files/candidate_tracker/30816057177_MahalakshmiA.pdf', NULL, '1', '2024-08-24', 0, '', '3', '59', '2024-08-27', 156000.00, '', '3', '2025-02-10', '2', 'Communication Fresher core IT candidate due to family situation open for Telecalling need to analyse in 7 days and check', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-08-27', 1, '2024-08-24 05:09:33', 104, '2024-08-27 01:19:05', 0, NULL, 1),
(20917, 'Rajendra prasad TR', '5', '9080018599', '9094909260', 'rajendraprasadtr19032001@gmail.com', '2001-04-19', 23, '2', '2', 'Parent', 'Cfs', 55000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2408240006', '50', '2', 'upload_files/candidate_tracker/32400929574_PRASADBIODATAcompressed.pdf', NULL, '1', '2024-08-24', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No proper communication. Missing the communication flow', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-08-24 05:12:07', 104, '2024-08-24 04:20:24', 0, NULL, 1),
(20918, 'Mani Maran', '5', '9042938373', '', 'maranclothes18@gmail.com', '1996-12-18', 27, '2', '2', 'Cmunusamy', 'Working', 30000.00, 0, 30000.00, 30000.00, 'Chennai', 'Chennai', '2408240007', '42', '2', 'upload_files/candidate_tracker/48333443896_RESUME20241.docx', NULL, '1', '2024-08-24', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales industry\ndont have communication skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-08-24 05:15:06', 104, '2024-08-24 04:19:56', 0, NULL, 1),
(20919, 'Askar Ali', '20', '9123541575', '', 'askarali2108@gmail.com', '1999-08-21', 25, '2', '2', 'Abdul Razak', 'Dailyvajas', 15000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2408240008', '50', '2', 'upload_files/candidate_tracker/34016390830_ProjectManager1.pdf', NULL, '1', '2024-08-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-24 05:27:08', 104, '2024-08-28 07:04:45', 0, NULL, 1),
(20920, 'S.Harish kumar', '6', '9094119282', '9042843881', 'simonharish31@gmail.com', '2004-01-07', 20, '2', '2', 'S.Senthil Kumar', 'coolie', 10000.00, 1, 0.00, 17000.00, 'Chennai', 'Arakkonam', '2408240009', '1', '1', 'upload_files/candidate_tracker/54769241347_1724420243664S.HARISHKUMAR1.pdf', NULL, '1', '2024-08-24', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication and convincing skill is low not fit sales he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-24 05:36:20', 104, '2024-08-24 04:19:21', 0, NULL, 1),
(20921, 'Keerthana M', '6', '9514263803', '', 'keerthanamk1218@gmail.com', '2001-05-12', 23, '2', '1', 'Manikandan V', 'SAP Consultant', 40000.00, 1, 0.00, 30000.00, 'Vadalur', 'Pallikarnai', '2408240010', '57', '1', 'upload_files/candidate_tracker/49235913040_KeerthanaM41.pdf', NULL, '1', '2024-08-24', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is fresher, she married.distance too long. husband working same domain. unfit for voice process.reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-08-24 05:54:11', 104, '2024-08-24 04:17:00', 0, NULL, 1),
(20922, 'Sangeetha. K', '5', '8754363964', '6380311484', 'Sangeethasangima317@gmail.com', '1997-12-17', 26, '2', '1', 'Daniel . G', 'Private employee', 20000.00, 2, 25000.00, 25000.00, 'Chennai', 'Chennai', '2408240011', '50', '2', 'upload_files/candidate_tracker/60073650957_sangeethacv1.pdf', NULL, '3', '2024-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Drop - Due to her pregnancy confirmed not in a situation to continue', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-08-24 06:22:26', 104, '2024-08-24 04:16:31', 0, NULL, 1),
(20923, 'Javis Arachi', '6', '9791714875', '', 'javis.arachi99@gmail.com', '1999-04-18', 25, '3', '2', 'Joseph Nelson', 'Business', 150000.00, 0, 260000.00, 325000.00, 'Perambur, Chennai', 'Perambur', '2408240012', '', '2', 'upload_files/candidate_tracker/50762669555_JavisCSResume.pdf', NULL, '1', '2024-08-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-24 06:52:10', 1, '2024-08-24 06:55:07', 0, NULL, 1),
(20924, 'Naziya Firdous A', '4', '7358440996', '', 'naziyafirdous2000@gmail.com', '2000-09-24', 23, '2', '2', 'Mohammad Abdullah', 'Record Clerk', 40000.00, 1, 240000.00, 300000.00, 'Chennai', 'Chennai', '2408240013', '57', '2', 'upload_files/candidate_tracker/51380859371_DocumentfromNazi.pdf', NULL, '2', '2024-08-24', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Ok for E sales', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-24 06:55:24', 104, '2024-08-24 04:16:04', 0, NULL, 1),
(20925, '', '0', '7092919680', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408240014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-24 07:15:34', 0, NULL, 0, NULL, 1),
(20926, '', '0', '9514366618', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408240015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-24 08:08:32', 0, NULL, 0, NULL, 1),
(20927, 'Arun v', '34', '9384422003', '', 'arunvelmurugan79@gmail.com', '2001-09-03', 22, '3', '2', 'Velmurugan', 'Farmer', 200000.00, 2, 0.00, 2.45, '1/22 Sivan Kovil Street kattuedaiyar', 'Chennai solinganallur', '2408240016', '', '1', 'upload_files/candidate_tracker/55002249509_ArunResume.pdf', NULL, '1', '2024-08-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-24 08:23:09', 1, '2024-08-24 08:31:16', 0, NULL, 1),
(20928, 'Krishna M', '4', '9894740498', '8667606109', 'mkrishna25042000@gmail.com', '2000-04-25', 24, '2', '2', 'Murugesan', 'Daily wages', 15000.00, 2, 0.00, 15000.00, 'Theni', 'Chennai,poonamallee', '2408240017', '50', '1', 'upload_files/candidate_tracker/26187220397_krishnaMresume2024.pdf', NULL, '1', '2024-08-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-24 08:41:24', 1, '2024-08-24 08:48:16', 0, NULL, 1),
(20929, 'Chandan N', '5', '8050844353', '', 'chndnn.chandan@gmail.com', '1996-09-29', 27, '3', '2', 'Sunanda S', 'Housewife', 90000.00, 0, 45000.00, 45000.00, 'Bangalore', 'Bangalore', '2408240018', '', '2', 'upload_files/candidate_tracker/12039270328_chandanaug20.pdf', NULL, '1', '2024-08-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-24 10:32:19', 1, '2024-08-24 10:35:15', 0, NULL, 1),
(20930, '', '0', '8610808860', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408240019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-24 11:17:37', 0, NULL, 0, NULL, 1),
(20931, '', '0', '9042529436', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-25 05:03:36', 0, NULL, 0, NULL, 1),
(20932, 'Digvijay .s', '4', '9677038842', '', 'dig06071989@gmail.com', '1989-07-06', 35, '2', '1', 'Rubini', 'Sales', 22000.00, 0, 22000.00, 32000.00, 'Tnager Chennai', 'T nagar', '2408250002', '56', '2', 'upload_files/candidate_tracker/68103093888_VIJAYRESUMEupdated.docx', NULL, '1', '2024-08-26', 60, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-25 01:16:45', 1, '2024-08-26 05:38:28', 0, NULL, 1),
(20933, 'Lakshmi', '4', '8939506423', '7358257850', 'myqueen1403@gmail.com', '2000-07-14', 24, '2', '2', 'Mohan', 'Security', 120000.00, 1, 0.00, 12.50, 'Semmacherry', 'Sholingnallur', '2408250003', '56', '1', 'upload_files/candidate_tracker/85304943559_CopyofResume.Lakshmi1.pdf', NULL, '3', '2024-08-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-25 01:20:31', 1, '2024-08-25 01:30:09', 0, NULL, 1),
(20934, '', '0', '8190012721', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408250004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-25 02:17:26', 0, NULL, 0, NULL, 1),
(20935, 'Preethi loganathan', '11', '9150663687', '9840979907', 'preethipreetho2000@gmail.com', '2000-08-13', 24, '3', '2', 'Loganathan', 'Store incharge', 400000.00, 1, 0.00, 18000.00, 'Pammal', 'Pammal', '2408260001', '', '1', 'upload_files/candidate_tracker/90091968401_PREETHILOGANATHANRESUME2.pdf', NULL, '1', '2024-08-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-26 04:04:46', 104, '2024-09-20 03:32:11', 0, NULL, 1),
(20936, 'Varna raj D', '6', '8148148301', '9363274046', 'Varna160801@gmail.com', '2001-08-16', 23, '1', '2', 'Devaraj', 'Accountant', 23000.00, 1, 18000.00, 20000.00, 'Nandiambakkam', 'Nandiambakkam', '2408260002', '', '2', 'upload_files/candidate_tracker/3922942085_VarnaResumeApr20241.pdf', NULL, '1', '2024-08-26', 0, '5111', '3', '59', '2024-09-04', 216000.00, '', '4', '2024-10-30', '2', 'Can give a try and check 5050 sustainability doubts', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-09-04', 1, '2024-08-26 04:42:09', 104, '2024-09-04 10:20:19', 0, NULL, 1),
(20937, 'GAYATHRI k', '4', '9159504952', '', 'gayumanoj12@gmail.com', '1997-08-26', 27, '2', '2', 'KANDASAMY A', 'COOLY', 7000.00, 1, 16000.00, 20000.00, 'VIRUDHUNAGAR', 'POONAMALLE', '2408260003', '50', '2', 'upload_files/candidate_tracker/75197261096_Gayathriresume.pdf', NULL, '1', '2024-08-26', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-26 04:47:18', 104, '2024-08-27 06:58:52', 0, NULL, 1),
(20938, 'Prem Kumar Ms', '6', '9585309158', '9047423637', 'msprem2301@gmail.com', '2003-01-23', 21, '3', '2', 'Chithra s', 'Daily worker', 6000.00, 1, 0.00, 2.50, '3/57, Muthaliyar Street, Kabisthalam, Thanjavur', 'Chennai', '2408260004', '', '1', 'upload_files/candidate_tracker/87169714904_premkumarresume.pdf', NULL, '1', '2024-08-26', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales and he did not speak properly', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-26 05:00:39', 104, '2024-08-26 04:31:40', 0, NULL, 1),
(20939, 'Dhivya Rajamanickam', '6', '9894013226', '9791815444', 'dhivyarajamanickam1993@gmail.com', '1993-10-27', 30, '1', '2', 'Senthamil selvi R', 'Home maker', 25000.00, 3, 12500.00, 18000.00, 'Trichy', 'Kelambakkam', '2408260005', '', '2', 'upload_files/candidate_tracker/31862553651_dhivya.pdf', NULL, '1', '2024-08-26', 0, '77924', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', ' not fit for sales', '5', '1', '', '1', '8', '', '2', '2024-08-28', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-26 05:12:52', 104, '2024-08-26 04:31:13', 0, NULL, 1),
(20940, 'Sneha.s', '6', '8925048710', '7358289136', 'Sharonsharon83798@gmail.com', '2001-10-27', 22, '1', '2', 'Ranjini.r', 'Teacher', 20000.00, 0, 18000.00, 18000.00, 'Santhome', 'Santhome', '2408260006', '', '2', 'upload_files/candidate_tracker/65311375125_1d5889ba351f4102be53b3bc80c3338b.PDF', NULL, '1', '2024-08-26', 0, '77924', '3', '59', '2024-09-02', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok 1.5yrs 4 companies not a relevant exp too 5050 profile reference profile with managers recommendation processing with the joining', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-09-02', 1, '2024-08-26 05:15:14', 60, '2024-08-27 06:58:18', 0, NULL, 1),
(20941, 'Shriram R R', '6', '7904721436', '7904721336', 'Shriramrock57252@gmail.com', '2001-11-23', 22, '3', '2', 'Ravi K R', 'OA', 320000.00, 2, 0.00, 18000.00, 'No:57/19s.p.kovil1st THIRUVOTTIYUR chennai-19', 'No:57/19s.p.kovil1st THIRUVOTTIYUR chennai-19', '2408260007', '', '1', 'upload_files/candidate_tracker/55998783276_resume1.pdf', NULL, '1', '2024-08-26', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is very local voice and not good communication and dress code is not proper so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-08-26 05:20:36', 104, '2024-08-26 07:08:01', 0, NULL, 1),
(20942, 'Shirin barhana A', '6', '7904523098', '', 'shirinbarhana00@gmail.com', '2003-02-24', 21, '2', '1', 'Safir Rahman', 'It cholamandalam', 44000.00, 2, 13000.00, 13000.00, 'Chennai broadway', 'Chennai broadway', '2408260008', '50', '2', 'upload_files/candidate_tracker/22645568962_shirindoc.pdf', NULL, '1', '2024-08-26', 0, '', '3', '59', '2024-08-28', 168000.00, '', '3', '2024-11-04', '2', 'Ok 5050 profile Can give a a try recently married sustainability not sure need to check in 7days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-08-28', 1, '2024-08-26 05:33:07', 104, '2024-08-30 06:34:20', 0, NULL, 1),
(20943, 'Rajeshkanna R', '6', '9360884854', '8807984854', 'rajeshmuthu2070@gmail.com', '2002-03-30', 22, '3', '2', 'Rajendran', '20000', 72000.00, 2, 20000.00, 25000.00, 'Pudukkottai', 'Chennai', '2408260009', '', '2', 'upload_files/candidate_tracker/76004497775_RAJESHKANNA1.pdf', NULL, '1', '2024-08-26', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-26 05:40:17', 104, '2024-08-26 12:02:56', 0, NULL, 1),
(20944, 'Varsha N', '4', '9080979706', '8678959166', 'nvarshameena@gmail.com', '2001-05-23', 23, '1', '1', 'M S Naresh Kumar', 'Filed', 30000.00, 1, 13000.00, 16000.00, 'Chennai', 'Chennai', '2408260010', '', '2', 'upload_files/candidate_tracker/18490130321_IMG20240823WA0003compressed.pdf', NULL, '1', '2024-08-26', 0, '55783', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'ok for e sales \nkindly confirm the CTC', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-26 06:30:17', 60, '2024-08-29 06:47:14', 0, NULL, 1),
(20945, '', '0', '6381372900', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408260011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-26 06:38:08', 0, NULL, 0, NULL, 1),
(20946, 'Periyasamy .T', '4', '8098190705', '9791336428', 'saamy262001@gmail.com', '2001-07-26', 23, '1', '2', 'Vijayalakshmi.t', 'Home maker', 30000.00, 1, 9000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2408260012', '', '2', 'upload_files/candidate_tracker/50835683735_CV2024082318562395.pdf', NULL, '1', '2024-08-26', 20, 'R55577', '3', '59', '2024-08-27', 156000.00, '', '3', '2024-09-30', '1', 'Communication OK have few months exp in calling PL BL HL Can give a try in our roles', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '2024-08-27', 1, '2024-08-26 06:38:22', 104, '2024-08-30 06:34:39', 0, NULL, 1),
(20947, '', '0', '9994473300', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408260013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-26 06:58:02', 0, NULL, 0, NULL, 1),
(20948, 'Vishal v', '6', '7358499595', '7358313133', 'vishalbernis@gmail.com', '1999-11-08', 24, '2', '2', 'vincent s', 'driver', 22000.00, 1, 15000.00, 16500.00, 'alandur', 'alandur', '2408260014', '50', '2', 'upload_files/candidate_tracker/36693874243_VishalCV.pdf', NULL, '1', '2024-08-26', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication and convincing skill is low not fit sales he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-26 07:01:40', 104, '2024-08-26 04:30:25', 0, NULL, 1),
(20949, 'Kameshwaran B', '5', '7904253113', '9489267847', 'kameshbskl78@gmail.com', '1997-04-07', 27, '2', '2', 'Balasubramanian', 'Tailor', 20000.00, 1, 0.00, 40000.00, 'Theni', 'Chennai', '2408260015', '57', '2', 'upload_files/candidate_tracker/962659208_Kamesh3.pdf', NULL, '1', '2024-08-26', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not having convincing skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-08-26 07:23:33', 104, '2024-08-26 04:30:09', 0, NULL, 1),
(20950, 'Nagalakshmi', '6', '9344094616', '7358758024', 'nagaparthasarathy003@gmail.com', '2001-04-07', 23, '1', '2', 'Parthasarathi', 'Contractor', 30000.00, 1, 20000.00, 23000.00, 'Chennai', 'Chennai', '2408260016', '', '2', 'upload_files/candidate_tracker/13765755425_NAGALAKSHMIRESUME2.pdf', NULL, '1', '2024-08-26', 0, '77924', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-26 07:28:39', 1, '2024-08-26 07:34:59', 0, NULL, 1),
(20951, '', '0', '7358499495', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408260017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-26 07:30:21', 0, NULL, 0, NULL, 1),
(20952, 'Kannappan', '6', '9080716908', '9941775777', 'kannappan146@gmail.com', '2000-02-22', 24, '2', '2', 'Murugan', 'Chennai', 150000.00, 1, 0.00, 19000.00, 'Chennai', 'Chennai', '2408260018', '57', '1', 'upload_files/candidate_tracker/42490237761_KannappansResume14.pdf', NULL, '1', '2024-08-26', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is Poor,  also he did not spoke much more in the interview,this his voice is very low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-26 09:16:38', 104, '2024-08-26 04:29:56', 0, NULL, 1),
(20953, 'VIJAY T', '5', '7338787271', '8667049066', 'vipvijay297@gmail.com', '1996-07-29', 28, '1', '2', 'THIYAGARAJAN R', 'Civil engineer', 17500.00, 1, 17500.00, 25000.00, 'Chennai', 'Chennai', '2408260019', '', '2', 'upload_files/candidate_tracker/74754208521_42.pdf', NULL, '1', '2024-08-26', 0, '55778', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No sales skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-08-26 09:37:35', 104, '2024-08-26 04:29:38', 0, NULL, 1),
(20954, '', '0', '7010477894', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408260020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-26 10:34:33', 0, NULL, 0, NULL, 1),
(20955, '', '0', '8870791916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408260021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-26 12:37:46', 0, NULL, 0, NULL, 1),
(20956, 'Hemalatha', '6', '9884187119', '', 'hemajerry14@gmail.com', '2001-09-14', 22, '2', '2', 'Ananthi senthil', 'Business', 500000.00, 1, 23000.00, 32000.00, 'Perambur', 'Perambur', '2408260022', '1', '2', 'upload_files/candidate_tracker/88658719332_HemaResume.pdf', NULL, '1', '2024-08-28', 30, '', '3', '59', '2024-09-30', 350000.00, '', '5', '1970-01-01', '2', 'Communication Ok Have exp in calling but not a relevant one can give a try and check need to analyse in 7 days even she holds several offers', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55656', '55557', '2024-09-30', 1, '2024-08-26 12:48:10', 60, '2024-09-17 03:18:57', 0, NULL, 1),
(20957, '', '0', '7092799254', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-27 02:35:55', 0, NULL, 0, NULL, 1),
(20958, 'Ponnumanidhivya', '5', '9791437517', '9791416647', 'Dse2215@gmail.com', '1994-06-10', 30, '2', '2', 'POTHIYAPPAN', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Ambatthur', '2408270002', '50', '1', 'upload_files/candidate_tracker/40047863299_RESUMEchangr1resumechangekkkkokok.pdf', NULL, '1', '2024-08-27', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected dont have communication skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-08-27 04:26:42', 104, '2024-08-27 03:37:30', 0, NULL, 1),
(20959, 'Aravind Moorthy S', '5', '9384806184', '', 'akofficial12724@gmail.com', '2003-03-16', 21, '2', '2', 'Selva kumar', 'Carpenter', 120000.00, 1, 17000.00, 25000.00, 'Amijikarai', 'Amijikarai', '2408270003', '50', '2', 'upload_files/candidate_tracker/77825626242_Resume.pdf', NULL, '1', '2024-08-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate  Performance is good but Communication and pronuncication is not good  also he is pursuving for MBA Finance and his past working experiance is 4 -4 months only,so sustainable doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-27 04:35:36', 104, '2024-08-29 06:59:31', 0, NULL, 1),
(20960, 'Keerthi vaasan S', '6', '6383490823', '9787210209', 'keerthi302000vaasan@gmail.com', '2000-03-30', 24, '2', '2', 'Shanmugam P', 'Employee in SAIL', 80000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2408270004', '45', '1', 'upload_files/candidate_tracker/18149253645_KEERTHIVAASANRESUME.pdf', NULL, '1', '2024-08-27', 0, '', '3', '59', '2024-08-28', 192000.00, '', '', '2024-09-05', '2', 'Communication Average need to open up a lot 5050 sustainability doubt need to analyse in 7 days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-08-28', 1, '2024-08-27 04:52:45', 104, '2024-08-30 06:34:56', 0, NULL, 1),
(20961, 'PRIYANKA', '5', '9500094715', '7708144053', 'priyankamuthupandi03@gmail.com', '1995-06-20', 29, '2', '2', 'Jothi', 'Homemaker', 30000.00, 3, 20000.00, 25000.00, 'Villivakkam', 'Villivakkam', '2408270005', '50', '2', 'upload_files/candidate_tracker/46601999415_PRIYANKAMRESUME1.docx', NULL, '1', '2024-08-27', 2, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Karthika Team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-08-27 04:58:56', 104, '2024-08-27 03:40:37', 0, NULL, 1),
(20962, 'Bhavani', '6', '9025790097', '6374966671', 'sakkureshu@gmail.com', '2000-06-19', 24, '1', '1', 'Balaji', 'Driver', 20000.00, 5, 18000.00, 20000.00, 'Chennai', 'Oteri', '2408270006', '', '2', 'upload_files/candidate_tracker/22929214563_Resume4.pdf', NULL, '1', '2024-08-27', 0, '5111', '3', '59', '2024-09-04', 216000.00, '', '3', '2024-09-09', '1', '5050 profile sustainability doubts in this profile came along with her friend', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-09-04', 1, '2024-08-27 05:10:12', 60, '2024-09-18 10:56:04', 0, NULL, 1),
(20963, 'Priyanka', '6', '9361187835', '7338850906', 'priyanka1999kannan@gmil.com', '1999-07-15', 25, '2', '2', 'Mr. Kamala kannan', 'Garrison Engineer', 700000.00, 1, 30000.00, 35000.00, 'Chennai', 'Chennai', '2408270007', '57', '2', 'upload_files/candidate_tracker/27681195269_Ms.Priyanka.pdf', NULL, '1', '2024-08-27', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for Gnanashekar Team. Ready to Join from 1st. Current CTC is  3.5 and Expected 4L but can close at 3.85.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-08-27 05:10:48', 60, '2024-08-28 06:51:30', 0, NULL, 1),
(20964, 'Aniketh Kumar', '5', '7411690629', '', 'anikethkumarmandal108@gmail.com', '2002-11-07', 21, '6', '2', 'shiv kumari', 'govt employe', 33000.00, 2, 33000.00, 45000.00, 'Bangalore', 'Bangalore', '2408270008', '', '2', 'upload_files/candidate_tracker/8638324882_Resume.pdf', NULL, '1', '2024-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-27 05:14:27', 1, '2024-08-27 08:55:07', 0, NULL, 1),
(20965, 'V PRIYADHARSHNI', '21', '9344792797', '', 'pdvela6999@gmail.com', '1999-07-04', 25, '2', '2', 'Velankanni', 'Driver', 30000.00, 1, 0.00, 17000.00, 'Perungalatur', 'Perungalatur', '2408270009', '50', '1', 'upload_files/candidate_tracker/53010613074_Priyaresume.pdf', NULL, '1', '2024-08-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-27 05:44:00', 1, '2024-08-27 10:51:35', 0, NULL, 1),
(20966, 'Tamilarasi. S', '11', '9790757692', '', 'tamilsrinivasan281@gmail.com', '2001-08-02', 23, '6', '2', 'Srinivasan .D', 'Farmer', 76000.00, 2, 0.00, 15000.00, 'N0 119 ,Bakkeyam New Town kakkalur,Tiruvallur', 'Kakkalur ,Tiruvallur', '2408270010', '', '1', 'upload_files/candidate_tracker/39405364171_TAMILARASIHR.docx', NULL, '1', '2024-08-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-27 05:54:30', 1, '2024-08-27 05:58:47', 0, NULL, 1),
(20967, 'Jeevitha. S', '6', '9790353149', '8949448262', 'Jeevithasivakumar542@gmail.com', '2001-02-20', 23, '1', '2', 'Sivakumar', 'Building worker', 30000.00, 2, 17000.00, 18000.00, 'Maduravoyal', 'Maduravoyal', '2408270011', '', '2', 'upload_files/candidate_tracker/93047494366_ResumeSJeevitha.pdf', NULL, '1', '2024-08-27', 0, '77920', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'silent person and no insurance  Knowledge  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-27 05:59:41', 104, '2024-08-27 03:47:47', 0, NULL, 1),
(20968, 'Purushothaman', '5', '9566959341', '8270678753', 'purushothaman3042001@gmail.com', '2001-04-30', 23, '2', '2', 'Father', 'Farmer', 3.50, 1, 18000.00, 20000.00, 'No 303,villuvar street,kadambur , kallakurichi', 'No 80, momoorthi Nagar, chrompet chennai 600044', '2408270012', '1', '2', 'upload_files/candidate_tracker/71688737437_purushothamanresume.pdf', NULL, '1', '2024-08-27', 1, '', '3', '59', '2024-09-03', 300000.00, '', NULL, '2025-05-30', '1', 'Communication Ok can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55634', '55557', '2024-09-03', 1, '2024-08-27 06:18:45', 104, '2024-09-03 05:05:35', 0, NULL, 1),
(20969, 'N.vIGNESH', '6', '8939014997', '9382693014', 'sivavignesh26061997@gmail.com', '1997-06-26', 27, '2', '2', 'Nanadagopal R', 'Computer programming', 50000.00, 1, 0.00, 16.00, '123 Madurai veeran street kalaivanar nagar PADI', '123 Madurai veeran street kalaivanar nagar PADI', '2408270013', '50', '1', 'upload_files/candidate_tracker/37170624641_RESUMEvignesh.pdf', NULL, '1', '2024-08-27', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NO BASIC SKILLS', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-27 06:43:47', 104, '2024-08-27 03:49:01', 0, NULL, 1),
(20970, 'E Balaji', '6', '7299353599', '', 'balajiethiraj1997@gmail.com', '1997-06-21', 27, '2', '1', 'Dhanalakshmi', 'Teacher', 400000.00, 1, 10000.00, 20000.00, 'Chennai', 'Chennai', '2408270014', '1', '2', 'upload_files/candidate_tracker/76672443425_Balajiresume.pdf', NULL, '1', '2024-08-27', 5, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is not ok.he unfit for sales profile. sustainability issue, 2yrs not worked.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2024-08-27 07:02:38', 104, '2024-08-27 04:17:12', 0, NULL, 1),
(20971, 'Monika B', '5', '6382337900', '9094021405', 'Monibalaji2001@gmail.com', '2001-05-30', 23, '2', '2', 'Balaji', 'Cooly', 40.00, 1, 23916.00, 35000.00, 'Chennai', 'Chennai', '2408270015', '50', '2', 'upload_files/candidate_tracker/61831023889_MONIKABFlowCVResume202407131.pdf', NULL, '1', '2024-08-27', 4, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Monika Selected for jagadeesh Team. Ready to Join on 5th Current CTC is 24 and Expected 28 Can easily negotiate with 10 t0 15% hike from Last CTC...', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-08-27 07:14:18', 60, '2024-08-28 06:50:23', 0, NULL, 1),
(20972, 'Kavin. S', '34', '6383539979', '', 'kavins285@gmail.com', '2001-05-28', 23, '2', '2', 'Subramaniam k', 'Farmer', 10000.00, 1, 204000.00, 300000.00, 'Erode', 'Chennai', '2408270016', '50', '2', 'upload_files/candidate_tracker/66813265673_KavinSubramaniamResume.pdf', NULL, '2', '2024-08-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-27 07:57:08', 1, '2024-08-27 08:03:30', 0, NULL, 1),
(20973, 'Tamilelan', '4', '9360858712', '', 'mtamilelan@gmail.com', '2001-05-12', 23, '2', '2', 'Murugesan', 'Political', 18000.00, 1, 0.00, 200000.00, 'Chennai vadapalani', 'Vadapalani', '2408270017', '50', '1', 'upload_files/candidate_tracker/37574361887_TAMILELANMBTECHIT2023DATAANALYSTcompressed.pdf', NULL, '1', '2024-08-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-27 08:57:20', 1, '2024-08-27 09:02:54', 0, NULL, 1),
(20974, 'Shakira', '5', '9344858042', '', 'shakiammu8@gmail.com', '1998-03-05', 26, '2', '2', 'Shekh Barkat', 'Father', 50000.00, 1, 25.00, 28.00, 'Thiruvanamali', 'T nagar', '2408270018', '57', '2', 'upload_files/candidate_tracker/65626449221_SHAKIRACV.pdf', NULL, '1', '2024-08-27', 0, '', '3', '59', '2024-09-02', 372000.00, '', '3', '2024-09-27', '2', 'Communication Ok have exp in calling can be trained in our roles document verified', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55567', '55557', '2024-09-02', 1, '2024-08-27 09:21:34', 104, '2024-09-12 11:11:44', 0, NULL, 1),
(20975, 'ishwarya', '6', '7904592863', '8925752056', 'aishwaryat251@gmail.com', '2004-10-25', 19, '2', '2', 'tamil selvi', 'food service', 30000.00, 2, 16000.00, 20000.00, 'chennai', 'chennai', '2408270019', '50', '2', 'upload_files/candidate_tracker/40969978552_AishwaryaResume.pdf', NULL, '1', '2024-08-27', 10, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no stability in old jobs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-27 09:29:13', 104, '2024-08-27 03:49:56', 0, NULL, 1),
(20976, 'Ganeshan M', '6', '8148581928', '9342113268', 'ganeshan7748@gmail.com', '2001-12-19', 22, '1', '2', 'N. Muruganantham', 'Marbles', 75000.00, 1, 14000.00, 18000.00, 'Kundrathur', 'Kundrathur', '2408270020', '', '2', 'upload_files/candidate_tracker/68468429215_updatedCV.docx', NULL, '1', '2024-08-27', 0, '77852', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication and convincing skill is low not fit sales he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-27 10:03:27', 104, '2024-08-27 04:16:20', 0, NULL, 1),
(20977, 'Priya P', '4', '9710129381', '7871682446', 'priyapachaiappan@gmail.com', '2000-09-21', 23, '2', '1', 'Arunkumar K', 'Cini field', 22000.00, 2, 20000.00, 22000.00, 'Korukkupet', 'Korukkupet', '2408270021', '50', '2', 'upload_files/candidate_tracker/53758579058_Resume.pdf', NULL, '1', '2024-09-05', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-27 10:10:09', 104, '2024-09-05 03:35:03', 0, NULL, 1),
(20978, 'Preethi', '16', '9677119261', '7092190631', 'pree0304@gmail.com', '1996-04-03', 28, '2', '1', 'Palani', 'Private sector', 400000.00, 0, 240000.00, 340000.00, 'Chennai kattupakkam', 'Chennai kattupakkam', '2408270022', '50', '2', 'upload_files/candidate_tracker/18138919556_ResumePREETHIBPDFFile.pdf', NULL, '1', '2024-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-27 11:50:08', 1, '2024-08-27 12:06:59', 0, NULL, 1),
(20979, 'Priyanka R', '4', '8681076447', '', 'papupriyanka88@gmail.com', '2002-04-24', 22, '2', '2', 'Valarmathi', 'Hindi teacher', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2408270023', '50', '1', 'upload_files/candidate_tracker/84577929938_Priyanka.Rresume1.docx', NULL, '1', '2024-08-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-27 12:20:26', 1, '2024-08-27 12:26:23', 0, NULL, 1),
(20980, 'Sujithraj S', '4', '9025881946', '6369972673', 'sujithrajsubbiramanian@gmail.com', '2002-10-15', 21, '2', '2', 'Subbiramanian', 'Farmer', 4000.00, 2, 0.00, 17000.00, 'Madurai', 'Chennai', '2408270024', '50', '1', 'upload_files/candidate_tracker/62536007703_SujithResume.pdf', NULL, '1', '2024-08-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-27 12:57:27', 1, '2024-08-27 01:00:38', 0, NULL, 1),
(20981, 'PRIYADHARSHINI', '6', '9003154560', '', 'dharshinivpriya521@gmail.com', '1999-07-04', 25, '2', '2', 'Velankanni', 'Driver', 30000.00, 1, 14500.00, 17000.00, 'Perungalatur', 'Perungalatur', '2408270025', '50', '2', 'upload_files/candidate_tracker/64798992244_Priyaresume.pdf', NULL, '1', '2024-08-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-27 01:17:04', 60, '2024-08-28 07:00:05', 0, NULL, 1),
(20982, '', '0', '7995986438', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408270026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-27 01:26:06', 0, NULL, 0, NULL, 1),
(20983, 'lurthu ashiba mary', '4', '9361628103', '', 'ashibamary@gmail.com', '2002-08-15', 22, '2', '2', 'anthony suresh', 'own shop', 20000.00, 0, 0.00, 15000.00, 'THANJAVUR', 'THANJAVUR', '2408280001', '1', '1', 'upload_files/candidate_tracker/66270265915_Ashibaresume.pdf', NULL, '1', '2024-08-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is ok with the profile fresher and completed mba ...father retail shop,,,,have bike and immediate joining expected 15k,,,,speaked well and convinced,,,job need,,,immediate joining,,,,,suspected hamsavrdhini classmate kindly cross check once..', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-28 04:31:48', 104, '2024-08-28 04:11:00', 0, NULL, 1),
(20984, 'Mathavan s', '5', '7708867072', '', 'mathavansakthivel30@gmail.com', '2001-05-30', 23, '2', '2', 'No', 'Bpo', 30.00, 2, 2.50, 3.50, 'Villupuram', 'Chennai', '2408280002', '50', '2', 'upload_files/candidate_tracker/24149539297_MATHAVANResumeHR1.pdf', NULL, '1', '2024-08-28', 0, '', '3', '59', '2024-09-16', 300000.00, '', '5', '1970-01-01', '2', 'Fresher for our sales have exp in data entry and Quality work need to train from scratch and analyse in 7 days seems he is not much comfort with salary committed', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '2024-09-16', 1, '2024-08-28 04:46:35', 60, '2024-08-31 12:52:00', 0, NULL, 1),
(20985, 'Krishnamoorthy', '6', '9791050774', '8681091565', 'krishnamoorthy97910@gmail.com', '2001-07-08', 23, '1', '2', 'C.sekar', 'SBI credit card', 20000.00, 0, 20000.00, 30000.00, 'Old washmanpet', 'Ayanavaram', '2408280003', '', '2', 'upload_files/candidate_tracker/64411333056_Krishnamoorthy1.pdf', NULL, '1', '2024-08-28', 0, '5111', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'mo basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-28 04:56:38', 104, '2024-08-28 04:10:16', 0, NULL, 1),
(20986, 'Monica Hamsaraj', '4', '9677094054', '9342067006', 'pathimonicahamsaraj@gmail.com', '1998-06-30', 26, '2', '2', 'Hamsaraj Rajagopal', 'Nil', 30000.00, 0, 27000.00, 30000.00, 'Chennai', 'Chennai', '2408280004', '45', '2', 'upload_files/candidate_tracker/23794869758_Moni2024.pdf', NULL, '1', '2024-08-28', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'switched many companys in short perioid ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-28 05:07:06', 104, '2024-08-28 04:09:56', 0, NULL, 1),
(20987, 'gokulakrishnan', '6', '7338972249', '9444761891', 'gokulsaradha22@gmail.com', '2002-05-17', 22, '2', '2', 'selvakumar', 'driver', 100000.00, 1, 0.00, 18000.00, 'ennore', 'ennore', '2408280005', '1', '1', 'upload_files/candidate_tracker/52403945777_AdobeScan28Aug2024.pdf', NULL, '1', '2024-08-28', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication and convincing skill is low not fit sales he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-28 05:09:46', 104, '2024-08-28 06:17:42', 0, NULL, 1),
(20988, 'Hayath Basha', '5', '8608921279', '', 'hayathbasha860892@gmail.com', '2002-10-29', 21, '1', '2', 'bahadur', 'sbi creadit card', 25000.00, 0, 23000.00, 25000.00, 'perambur', 'perambur', '2408280006', '', '2', 'upload_files/candidate_tracker/70839126589_CV202408280759007.pdf', NULL, '1', '2024-08-28', 0, '5111', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-28 05:10:49', 104, '2024-08-28 04:09:25', 0, NULL, 1),
(20989, 'Vinisha.k', '6', '9080573858', '', 'Abivinishaabi@Gmail.com', '2002-01-05', 22, '2', '2', 'Anandhi', 'House wife', 30000.00, 2, 14500.00, 18000.00, 'Perungalathur', 'Perungalathur', '2408280007', '50', '2', 'upload_files/candidate_tracker/74375673319_MYRESUMEvinisha.docx', NULL, '1', '2024-08-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-28 05:59:08', 104, '2024-08-28 07:02:04', 0, NULL, 1),
(20990, 'Manikandan', '20', '9677821391', '', 'manikandansrinivasan04@gmail.com', '1999-11-04', 24, '2', '2', 'Srinivasan', 'Carpenter', 30000.00, 1, 15000.00, 20000.00, 'Pondicherry', 'Chennai', '2408280008', '1', '2', 'upload_files/candidate_tracker/82168360406_DOC20240813WA0005..docx', NULL, '1', '2024-08-28', 0, '', '3', '59', '2024-09-02', 228000.00, '', '3', '2024-09-06', '1', 'Communication ok have exp in calling just dial document verified can be train and check in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '2024-09-02', 1, '2024-08-28 06:13:35', 104, '2024-09-02 06:19:49', 0, NULL, 1),
(20991, 'H. Sadiha', '11', '9150958708', '', 'sadiha9150@gmail.com', '2001-10-05', 22, '6', '2', 'A. Mohammad Harif', 'Business', 15000.00, 1, 180000.00, 250000.00, 'Chennai', 'Chennai', '2408280009', '', '2', 'upload_files/candidate_tracker/48351325955_RESUMEOFSADIHA222.pdf', NULL, '1', '2024-08-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-28 06:29:24', 104, '2024-08-28 05:15:27', 0, NULL, 1),
(20992, 'Neelakannan', '6', '8682061384', '9884464877', 'neelakannan93053@gmail.com', '2001-07-02', 23, '3', '2', 'Duraipandian', 'Cooli', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai, washermenpet', '2408280010', '', '1', 'upload_files/candidate_tracker/51351138452_NeelakannanResume.pdf', NULL, '1', '2024-08-28', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not int ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-28 07:01:16', 104, '2024-08-28 04:07:37', 0, NULL, 1),
(20993, 'Karuppusamy', '6', '9344460957', '', 'rkaruppusamyrkaruppusamy89@gmail.com', '2003-06-26', 21, '3', '2', 'Ramachandran', 'Farmer', 25000.00, 0, 18000.00, 20000.00, 'Virudhachalam', 'Pallavaram', '2408280011', '', '2', 'upload_files/candidate_tracker/61648192751_karupu3.pdf', NULL, '1', '2024-08-28', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication and convincing skill is low not fit sales he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-28 07:02:36', 104, '2024-08-28 07:05:41', 0, NULL, 1),
(20994, 'Manjappan', '6', '9597136580', '9360971149', 'suryamanivel13@gmail.com', '2003-02-03', 21, '3', '2', 'Manivel', 'Farmer', 30000.00, 1, 0.00, 18000.00, 'Vriddhachalam', 'Pallavaram', '2408280012', '', '1', 'upload_files/candidate_tracker/27139260913_ManjappanCV.pdf', NULL, '1', '2024-08-28', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he said he work visa for 45 days and do calling but he did not tell the product name itself', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-28 07:03:07', 104, '2024-08-28 04:11:51', 0, NULL, 1),
(20995, 'S Md Zameer Shan', '11', '7358210900', '9849526786', 'zameershan44@gmail.com', '2004-10-01', 19, '6', '2', 'M Amir Suhail', 'Business', 80000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2408280013', '', '1', 'upload_files/candidate_tracker/22895528369_ZameerShanCV.pdf', NULL, '1', '2024-08-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-28 07:03:21', 104, '2024-08-28 05:15:53', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20996, 'Franklin', '11', '9345898790', '', 'afranklinafranklin@gmail.com', '2003-05-14', 21, '3', '2', 'Arul sagaya raj', 'Morning', 200000.00, 2, 0.00, 20000.00, 'Valachry check post vandikaran St Neth', 'Valachry check post vandikaran St nehru Na', '2408280014', '', '1', 'upload_files/candidate_tracker/1674299734_CV2024052214511247.pdf', NULL, '1', '2024-08-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-28 07:06:16', 1, '2024-08-28 06:45:41', 0, NULL, 1),
(20997, 'kishore', '6', '9360427214', '', 'Kishorekarthikeyan45@gmail', '2003-10-16', 20, '2', '2', 'parent', 'cab driver', 15000.00, 1, 0.00, 17000.00, 'chennai', 'tambaram', '2408280015', '1', '1', 'upload_files/candidate_tracker/48597809244_DOC20240525WA0006..pdf', NULL, '1', '2024-08-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate performance and communication is good ,but distance is too long ,will check with him in the traning period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2024-08-28 07:06:54', 104, '2024-08-29 09:57:35', 0, NULL, 1),
(20998, 'Aishwarya j', '5', '7899229558', '', 'Yaishwarya223@gmail.com', '1998-03-21', 26, '2', '2', 'Akshay', 'IT Electriction', 25000.00, 1, 40000.00, 45000.00, 'Banashankari', 'Banashankari', '2408280016', '1', '2', 'upload_files/candidate_tracker/32116755029_aISHWARYARESUME.pdf', NULL, '1', '2024-08-28', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-08-28 07:44:42', 126, '2024-08-28 05:34:54', 0, NULL, 1),
(20999, 'Jaisingh', '4', '9345435328', '', 'Sjai68524@gmail.com', '2003-11-23', 20, '2', '2', 'Sivaponraj', 'Auto driver', 95000.00, 0, 0.00, 18000.00, 'Chennai, kodungaiyur', 'Chennai, kodungaiyur', '2408280017', '50', '1', 'upload_files/candidate_tracker/59547160351_JaiSinghUpdatedResume.docx', NULL, '1', '2024-08-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-28 09:06:31', 1, '2024-08-28 12:59:32', 0, NULL, 1),
(21000, 'Akash S', '11', '7397473113', '9789073081', 'akashselva55@gmail.com', '1999-05-05', 25, '6', '2', 'Selvaraj S', 'Private employee', 20000.00, 1, 0.00, 18000.00, 'Mogappair west, Chennai', 'Mogappair west chennai', '2408280018', '', '1', 'upload_files/candidate_tracker/64906796100_AkashSresume20243.pdf', NULL, '1', '2024-08-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-28 10:03:11', 104, '2024-08-28 05:17:04', 0, NULL, 1),
(21001, 'Navinkumar R', '11', '9962995448', '8668134878', 'navinrajabather@gmail.com', '1993-06-27', 31, '6', '2', 'Rajabather', 'MBA fresher', 52000.00, 1, 0.00, 18000.00, 'Anna nagar', 'Ann nagar', '2408280019', '', '1', 'upload_files/candidate_tracker/25743439870_NAVINKUMARRresume1.pdf', NULL, '1', '2024-08-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-08-28 10:03:21', 104, '2024-08-28 05:18:00', 0, NULL, 1),
(21002, 'Nithiyashree. S', '6', '9025886487', '9952126487', 'Ns4468842@gmail.com', '2004-04-03', 20, '2', '2', 'Rajalakshmi', 'Housewife', 30000.00, 1, 0.00, 15000.00, '62A/10/5 Kasiraja nadar street.  ,rajapalayam', 'No.18 shalom ladies hostel. Vinayagampet saidapet', '2408280020', '1', '1', 'upload_files/candidate_tracker/34651038398_NITHYASHREE.pdf', NULL, '1', '2024-08-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-08-28 11:26:36', 104, '2024-08-29 06:56:34', 0, NULL, 1),
(21003, 'R.Logeshwaran', '4', '7397428127', '9566166351', 'logi15599@gmail.com', '1999-05-15', 25, '2', '2', 'G.Ravi', 'B.com (computer application)', 23000.00, 2, 12500.00, 17000.00, 'velachery', 'Velachery', '2408280021', '50', '2', 'upload_files/candidate_tracker/32631679739_Logeswaran.Resume.docx', NULL, '1', '2024-08-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-28 12:58:24', 1, '2024-08-28 01:12:25', 0, NULL, 1),
(21004, 'D Devadharshini', '4', '9962739265', '8939787494', 'devadharshinid020@gmail.com', '2004-01-12', 20, '2', '2', 'D.Sarala', 'Home maker', 180000.00, 1, 0.00, 14000.00, 'Royapuram', 'Royapuram', '2408280022', '50', '1', 'upload_files/candidate_tracker/698233461_Resume...pdf', NULL, '1', '2024-08-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-28 01:02:33', 1, '2024-08-28 01:06:54', 0, NULL, 1),
(21005, 'NAGAMUTHU d', '5', '9360798448', '8282272927', 'nomail@gmail.com', '2000-08-28', 24, '2', '2', 'Jahabjajna', 'Hajanajwnja', 50000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2408280023', '50', '2', 'upload_files/candidate_tracker/99725432886_VadivelResume1.pdf', NULL, '1', '2024-08-29', 15, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-28 01:54:05', 104, '2024-08-29 06:16:46', 0, NULL, 1),
(21006, '', '0', '8197528005', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408280024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-28 06:14:35', 0, NULL, 0, NULL, 1),
(21007, '', '0', '9150440595', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-29 03:06:53', 0, NULL, 0, NULL, 1),
(21008, 'KANMANI', '4', '9342480699', '', 'kanmaniani1869@gmail.com', '2003-08-31', 20, '2', '2', 'CHINNASAMY', 'FARMER', 35000.00, 2, 16000.00, 17000.00, 'Alakkudi', 'Alakkudi', '2408290002', '1', '2', 'upload_files/candidate_tracker/81183889895_KANMANI.pdf', NULL, '1', '2024-08-29', 20, '', '3', '59', '2024-09-04', 180000.00, '', '3', '2024-11-30', '2', 'Communicaiton Ok have 1 yr exp but no documents can give a try and check in training period', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-09-04', 1, '2024-08-29 04:05:31', 104, '2024-09-04 10:17:28', 0, NULL, 1),
(21009, 'mohamed jabir rahuman', '6', '9500878091', '', 'jafirvkm2000@gmail.com', '2009-08-29', 0, '2', '2', 'jamal mohamed', 'fisher man', 240000.00, 3, 0.00, 27000.00, 'ramanathapuram', 'guindy chennai', '2408290003', '50', '1', 'upload_files/candidate_tracker/7049270187_JabirMBAresume.pdf', NULL, '1', '2024-08-29', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok.reject the profile,communication not well', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-08-29 04:11:24', 104, '2024-08-29 04:28:32', 0, NULL, 1),
(21010, 'Sowmiya', '11', '9884803778', '9360480642', 'sowmiyabalakrishnan2@gmail.com', '2002-04-11', 22, '2', '2', 'Balakrishnan', 'Fisherman', 10000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2408290004', '50', '2', 'upload_files/candidate_tracker/24673604238_CV2024080112490088.pdf', NULL, '1', '2024-08-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-29 04:25:42', 1, '2024-08-29 04:32:42', 0, NULL, 1),
(21011, 'Sumaiya Sadik', '6', '9384825060', '', 'srrs2468@gmail.com', '2000-03-01', 24, '3', '2', 'Shagubar sadik', 'Retired chief accountant', 30000.00, 1, 0.00, 14000.00, '16 appa garden Street, Kilpauk, Chennai-10', '16 , Appa Garden Street, Kilpauk, Chennai-10', '2408290005', '', '1', 'upload_files/candidate_tracker/46912916287_Sumaiyaresume.pdf', NULL, '1', '2024-08-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she intrested in microbiology', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-29 04:46:33', 104, '2024-08-29 04:23:49', 0, NULL, 1),
(21012, 'Divya n', '6', '9840969205', '', 'Divyahome2001@gmail.com', '2001-06-04', 23, '2', '2', 'C nagaraj', 'Supervisor', 25000.00, 1, 0.00, 15000.00, '43/23 sowri street , alandur , Chennai - 16', '43/23 sowri street, alandur, Chennai -16', '2408290006', '1', '1', 'upload_files/candidate_tracker/46083989815_divyaresume.pdf', NULL, '1', '2024-08-29', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-29 04:49:46', 104, '2024-08-29 05:19:24', 0, NULL, 1),
(21013, 'Sathish R', '5', '8778367267', '8438294099', 'Sathishrk991@gmail.com', '1998-07-02', 26, '2', '2', 'ragupathy', 'car driver', 30000.00, 1, 280000.00, 350000.00, 'perambur', 'perambur', '2408290007', '50', '2', 'upload_files/candidate_tracker/86932505355_MinimalistWhiteandGreyProfessionalResume.pdf.pdf', NULL, '1', '2024-08-29', 1, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested work in sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-08-29 04:57:26', 104, '2024-08-29 04:23:18', 0, NULL, 1),
(21014, 'gowtham e', '6', '7639940225', '9442192670', 'gowthameswar51845@gmail.com', '1998-03-09', 26, '3', '2', 'priya', '-', 30000.00, 1, 0.00, 20000.00, 'salem', 'chennai', '2408290008', '', '1', 'upload_files/candidate_tracker/58050624332_GowthamCVResume.pdf', NULL, '1', '2024-08-29', 0, '', '3', '59', '2024-09-10', 192000.00, '', '3', '2024-09-30', '1', 'Communication Ok Fresher for our roles current part time Rapido and zomato can give a try and train him', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '2024-09-10', 1, '2024-08-29 05:07:31', 104, '2024-09-10 06:20:55', 0, NULL, 1),
(21015, 'Priyanka S', '6', '7449224406', '', 'priyuselvam29@gmail.com', '2001-10-29', 22, '2', '2', 'Selvam P', 'Coolie', 300000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2408290009', '1', '1', 'upload_files/candidate_tracker/53831388747_priyanka.pdf', NULL, '1', '2024-08-29', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candiate communcation and performance is not good ,also her voice is very low,then her sustain is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-08-29 05:09:00', 104, '2024-08-29 05:20:32', 0, NULL, 1),
(21016, 'Jaya Bharathi', '6', '9361070370', '', 'bharathigeetha05@gmail.com', '2003-09-05', 20, '3', '2', 'Mahendran. P', 'Auto driver', 90000.00, 2, 0.00, 15.00, 'No; 6/5 S. P Garden T. Nagar chennai- 600017', 'No 6/40 Reddy kuppam road west mambalam ch 600033', '2408290010', '', '1', 'upload_files/candidate_tracker/35869511977_WhiteandBeigeMinimalistDesignerProfessionalCvResume1.pdf', NULL, '3', '2024-08-29', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'timing not suited  for her so rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-29 05:09:18', 104, '2024-08-29 04:27:42', 0, NULL, 1),
(21017, 'Karthick M', '6', '8668169676', '7824954067', 'karthickit.mr@gmail.com', '2002-06-02', 22, '2', '2', 'Mani V', 'Driver', 120000.00, 1, 0.00, 180000.00, 'Dharmapuri, Tamilnadu', 'Saligramam,Chennai', '2408290011', '42', '1', 'upload_files/candidate_tracker/49267692261_Karthickcse1.pdf', NULL, '1', '2024-08-30', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-29 05:38:41', 104, '2024-08-30 03:49:57', 0, NULL, 1),
(21018, 'SHAHIRUNNISABEE SY', '20', '7418765227', '8667414260', 'shahirunnisabee@gmail.com', '2003-09-17', 0, '2', '2', 'B Syed yasin', 'Car driver', 10000.00, 2, 0.00, 15000.00, 'Sirkali', 'CIT NAGAR ,CHENNAI', '2408290012', '50', '1', 'upload_files/candidate_tracker/54207674858_domesticvoiceprocess.pdf', NULL, '1', '2024-08-29', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'office timing was not ok with her ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-29 05:50:06', 104, '2024-08-29 04:21:27', 0, NULL, 1),
(21019, 'P.R.Srikanya', '4', '7358613808', '9962790106', 'srima6572@gmail.com', '1999-08-30', 24, '2', '2', 'Raju', 'Security', 20000.00, 4, 16000.00, 20000.00, 'Chennai', 'Chennai', '2408290013', '57', '2', 'upload_files/candidate_tracker/13166362315_Srikanya1.pdf', NULL, '1', '2024-08-29', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have experience in customer suppot\nnot on sales .wont suitable ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-29 06:01:53', 104, '2024-08-29 06:57:56', 0, NULL, 1),
(21020, 'Shaik Azam', '6', '6304753750', '', 'azammohammad095@gmail.com', '2001-09-11', 22, '2', '2', 'Shaik Azas Ahmad', 'Driver', 15000.00, 1, 0.00, 17000.00, 'Adoni', 'Bommanahalli', '2408290014', '1', '1', 'upload_files/candidate_tracker/64868184719_ShaikAzam.pdf', NULL, '1', '2024-08-29', 0, '', '3', '59', '2024-09-02', 198000.00, '', '3', '2024-10-30', '2', 'Communication Ok Fresher for Scratch need to train and check in 7days analysis', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-09-02', 1, '2024-08-29 06:02:58', 126, '2024-09-02 10:05:25', 0, NULL, 1),
(21021, 'PM Mudassir Ahamad', '6', '7780755982', '9652370815', 'mudasirahamad5130@gmail.com', '2002-08-18', 22, '2', '2', 'PM Anwar basha', 'Business', 18000.00, 1, 0.00, 18000.00, 'Chittoor', 'Btm layout 2nd stage', '2408290015', '1', '1', 'upload_files/candidate_tracker/80681370227_mudassir.pdf', NULL, '1', '2024-08-29', 0, '', '3', '59', '2024-09-02', 198000.00, '', '3', '2024-10-30', '2', 'Communication Ok fresher in our roles career gap need to analyse in 7 days and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '2024-09-02', 1, '2024-08-29 06:03:07', 126, '2024-09-02 10:05:53', 0, NULL, 1),
(21022, 'Pooja R', '6', '7349469731', '7349502836', 'poojachinnu823@gmail.com', '1994-12-26', 29, '2', '2', 'Rajanna', 'PE teacher', 25000.00, 1, 17000.00, 20000.00, 'Chandapura Bangalore', 'Chandapura Bangalore', '2408290016', '57', '2', 'upload_files/candidate_tracker/98137174580_CV..pdf', NULL, '1', '2024-08-29', 0, '', '3', '59', '2024-09-05', 240000.00, '', '5', '1970-01-01', '2', 'Communication Ok No sustainabiloity in her previous exp can give a try and check in 7 days training', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '2024-09-05', 1, '2024-08-29 06:10:04', 60, '2024-09-04 06:39:21', 0, NULL, 1),
(21023, 'Kiruthiga', '6', '8122197543', '9514062263', 'Kiruthigamohan7@gmail.com', '2002-12-09', 21, '2', '2', 'Mohan', 'Labour worker', 200000.00, 1, 20000.00, 25000.00, '16th street, Indira nagar, Menambedu, ambattur', 'Chennai', '2408290017', '50', '2', 'upload_files/candidate_tracker/4421119835_cvkiruthiga.pdf', NULL, '1', '2024-08-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and peeformance is good ,will Check With hert in the traning period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-29 06:11:56', 104, '2024-08-29 04:33:53', 0, NULL, 1),
(21024, 'Kaleeshwari', '6', '9384421272', '', 'kaleeshkaleeshwari800@gmail.com', '2001-12-10', 22, '2', '2', '44TH STREET, Venkatraman Nagar, Korattur, SINTHEA MODEL MATRICULATION HIGHER SECONDARY SCHOOL,', 'Business', 600000.00, 1, 0.00, 17000.00, 'Coimbatore', 'Chennai', '2408290018', '1', '1', 'upload_files/candidate_tracker/61914700085_KaleeshwariM2.pdf', NULL, '1', '2024-08-29', 0, '', '3', '59', '2024-09-02', 168000.00, '', '4', '2024-10-30', '2', 'Communication Ok Fresher for Job Can give a try and check in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1000', '', 'P1070', '5151', '2024-09-02', 1, '2024-08-29 06:42:25', 104, '2024-09-02 06:23:57', 0, NULL, 1),
(21025, 'Gowri S', '4', '9962855090', '8939024239', 'kamal4297@gmail.com', '1993-11-06', 30, '2', '1', 'Kamal.V', 'Executive Manager', 50.00, 2, 30000.00, 45000.00, 'Oldwashermenpet', 'Oldwashermenpet', '2408290019', '57', '2', 'upload_files/candidate_tracker/75213299349_Gowri.pdf', NULL, '1', '2024-08-29', 30, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'expected salary is high.also sustainbility problem ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-29 06:45:06', 104, '2024-08-29 04:21:09', 0, NULL, 1),
(21026, '', '0', '9360528796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408290020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-29 06:47:02', 0, NULL, 0, NULL, 1),
(21027, 'Jansirani aruldass', '4', '6380221526', '8148896581', 'janukavi55@gmail.com', '1999-09-17', 24, '2', '2', 'Aruldass', 'Painting contractor', 50000.00, 2, 23000.00, 35000.00, 'Gummidipundi', 'Gummidipundi', '2408290021', '57', '2', 'upload_files/candidate_tracker/33205172260_0Document.pdf', NULL, '1', '2024-08-29', 30, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'gaurav sir met.current CTC 3.3L\nso same 3,3L is finalized.based on performance after 2 months 3.6 can be given', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-08-29 06:47:46', 60, '2024-08-31 12:17:53', 0, NULL, 1),
(21028, 'Girija', '5', '9731183831', '9110425876', 'girijakumar.jun27@gmail.com', '1995-05-05', 29, '3', '1', 'Kumar', 'Design engineer', 70.00, 1, 30000.00, 35000.00, 'No16,Shashi nilaya,naganathapura,hosa road', 'Hosa road', '2408290022', '', '2', 'upload_files/candidate_tracker/25402941265_Girija11.docx', NULL, '1', '2024-08-29', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-29 06:57:47', 1, '2024-08-29 07:05:02', 0, NULL, 1),
(21029, 'Jenifer', '6', '8248195567', '8148493162', 'jj2709905@gmail.com', '2000-04-02', 24, '2', '1', 'Johnson', 'Designer', 30000.00, 2, 18000.00, 20000.00, 'arumbakkam Chennai', 'Arumbakkam Chennai', '2408290023', '57', '2', 'upload_files/candidate_tracker/94812947540_Resume.pdf', NULL, '1', '2024-08-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales ', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-29 07:04:27', 104, '2024-08-29 04:29:27', 0, NULL, 1),
(21030, 'Akash', '5', '6383454734', '', 'akashranjini0804@gmail.com', '2003-08-20', 21, '2', '2', 'Subash Chandra bose', 'Business man', 150000.00, 1, 0.00, 25000.00, 'Chennai', 'Puzhal', '2408290024', '45', '1', 'upload_files/candidate_tracker/49831851898_Myresume20.pdf', NULL, '1', '2024-08-29', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Basic communication is low and he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-29 07:12:35', 104, '2024-08-29 04:32:46', 0, NULL, 1),
(21031, 'Shammu G', '4', '6382395479', '6382479206', 'shammupapa10@gmail.com', '2001-10-10', 22, '3', '2', 'Gulab Basha', 'Chief', 15000.00, 1, 16000.00, 20000.00, 'Royapettah', 'Royapettah', '2408290025', '', '2', 'upload_files/candidate_tracker/10428745069_ShammuResume1.pdf', NULL, '1', '2024-08-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-29 07:20:13', 1, '2024-08-29 07:24:16', 0, NULL, 1),
(21032, '', '0', '7380331526', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408290026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-29 07:44:48', 0, NULL, 0, NULL, 1),
(21033, 'Lavanya.k', '6', '9952013702', '9962077741', 'lavanyakarthik1201@gmail.com', '2003-01-12', 21, '2', '2', 'Karthik', 'Good position for work', 35000.00, 2, 13000.00, 18000.00, 'Ramapuram, Chennai', 'Ramapuram, Chennai', '2408290027', '50', '2', 'upload_files/candidate_tracker/4493482777_RESUMELAVANYA.pdf', NULL, '1', '2024-09-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Speaks Well lets try 7 days and we will confirm ,in hand salary 14k Immediate Joining', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-29 08:17:29', 104, '2024-09-10 04:36:34', 0, NULL, 1),
(21034, 'Prithiga.S', '4', '8838347787', '', 'prithigaprithi2002@gmail.com', '2002-11-29', 21, '2', '2', 'Subrahmani.C', 'Society secretary', 30000.00, 1, 0.00, 17000.00, 'Avadi, Chennai', 'Avadi, Chennai', '2408290028', '50', '1', 'upload_files/candidate_tracker/36030743562_PRITHIGARESUME.pdf', NULL, '1', '2024-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-29 09:07:36', 1, '2024-08-29 10:55:53', 0, NULL, 1),
(21035, 'Sneha', '6', '8122802202', '9551037813', 'Snehaviji84@gmail.com', '2001-09-05', 22, '1', '2', 'Viji', 'Ashok Leyland', 210000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2408290029', '', '1', 'upload_files/candidate_tracker/70772444317_CV2022062811430199.pdf', NULL, '1', '2024-08-29', 0, '511', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-29 09:41:09', 104, '2024-08-29 04:33:26', 0, NULL, 1),
(21036, '', '0', '9047431592', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408290030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-29 01:09:14', 0, NULL, 0, NULL, 1),
(21037, '', '0', '9962008169', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408290031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-29 03:21:19', 0, NULL, 0, NULL, 1),
(21038, '', '0', '7708270459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408300001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-30 03:08:59', 0, NULL, 0, NULL, 1),
(21039, 'ANITHA.C', '6', '8220645400', '8124309209', 'anithamba2001@gmail.com', '2001-02-02', 23, '2', '2', 'CHELLAVEDI.R', 'Tailor', 15000.00, 1, 0.00, 20000.00, 'Natrajan Illam, New Hotel Street, Anna Street 2', 'Jolarpet, Tirupattur District', '2408300002', '1', '1', 'upload_files/candidate_tracker/42118462307_ANITHA.CRESUME.pdf', NULL, '1', '2024-08-30', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE WAS LOOKING FOR ANOTHER ROLE HR NOT INTERESTED IN SALES', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-30 03:10:17', 104, '2024-08-30 03:46:24', 0, NULL, 1),
(21040, 'D.Vijayalakshmi', '6', '7305710505', '9884692859', 'viji07284@gmail.com', '2002-09-27', 21, '2', '2', 'R.Dhanasekar', 'Printing press', 140000.00, 0, 0.00, 15000.00, '16/9 teachers colony 2nd st Nanganallur chennai61', '16/9 teachers colony 2nd st Nanganallur chennai61', '2408300003', '57', '1', 'upload_files/candidate_tracker/99657922036_VijiResume.pdf', NULL, '1', '2024-08-30', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not even try to speak', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-30 04:21:13', 104, '2024-08-30 03:51:01', 0, NULL, 1),
(21041, 'Chandra Kumar', '6', '9345690894', '', 'chandrucpu737@gmail.com', '2001-11-02', 22, '2', '2', 'Muthukumar S.N', 'Salesman', 12000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2408300004', '50', '1', 'upload_files/candidate_tracker/74386251287_chandruResume.pdf', NULL, '1', '2024-08-30', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'there is no need for this job. just time pass', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-08-30 04:32:12', 104, '2024-08-30 03:46:05', 0, NULL, 1),
(21042, 'Mahendran K', '6', '7358689707', '9940398720', 'mahendrankarthikeyan121@gmail.com', '2003-06-06', 21, '2', '2', 'S Karthikeyan', 'LIC Agent', 125000.00, 1, 0.00, 25000.00, 'Chennai', 'Ambattur', '2408300005', '50', '1', 'upload_files/candidate_tracker/32308922755_CV2024070310285663.pdf', NULL, '1', '2024-08-30', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for his excepting salary ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-30 04:39:37', 104, '2024-08-30 03:45:46', 0, NULL, 1),
(21043, 'Vishnu Kumar', '6', '8015583338', '9551359294', 'vp.studios.official@gmail.com', '2002-10-23', 21, '2', '2', 'Venkatesan.s', 'Driver', 100000.00, 2, 0.00, 18.00, 'Chennai', 'Chennai', '2408300006', '1', '1', 'upload_files/candidate_tracker/50551596402_VishnuKumarresumevp202408300019480000.pdf', NULL, '1', '2024-08-30', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Voice is low and interested in customer support', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-30 04:44:44', 104, '2024-08-30 03:50:20', 0, NULL, 1),
(21044, '', '0', '9148924733', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408300007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-30 05:17:15', 0, NULL, 0, NULL, 1),
(21045, 'Sathiyan R', '4', '7094023089', '', 'sathiyanr3@gmail.com', '1997-05-01', 27, '2', '2', 'Ravikumar v', 'Bank staff', 33000.00, 1, 33000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2408300008', '1', '2', 'upload_files/candidate_tracker/7521399909_SathiyanOmega.pdf', NULL, '1', '2024-08-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expected high and not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-30 05:45:52', 104, '2024-08-30 03:50:49', 0, NULL, 1),
(21046, 'Ramesh kanna', '6', '8220917454', '7305782248', 'rameshkanna33353@gmail.com', '2003-05-13', 21, '2', '2', 'Senthil Kumar', 'Daily wages', 25000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2408300009', '1', '1', 'upload_files/candidate_tracker/44307856867_Rameshkannas.pdf', NULL, '1', '2024-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not comfort with the distance and  not interested to continue in this', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2024-08-30 05:53:30', 104, '2024-08-30 03:34:41', 0, NULL, 1),
(21047, 'Bachu aakash', '6', '8072758766', '', 'aakash.siva@gmail.com', '2004-03-29', 20, '2', '2', 'Sivaiah', 'Driver', 50000000.00, 1, 12500.00, 20000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2408300010', '50', '2', 'upload_files/candidate_tracker/26320128359_bachuaakash2024.docx', NULL, '3', '2024-08-30', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not suitable for sales profile, observation skills low, communication not good', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-08-30 06:25:07', 104, '2024-08-30 03:45:34', 0, NULL, 1),
(21048, 'Srimathi', '6', '9361532791', '', 'Srimathikandhan21@gmail.com', '2002-04-21', 22, '1', '2', 'Kandhan', 'Auto driver', 12000.00, 0, 18000.00, 16000.00, 'Nandanam', 'Nandanam', '2408300011', '', '2', 'upload_files/candidate_tracker/15684225467_RESUME.pdf', NULL, '1', '2024-08-30', 0, '77920', '3', '59', '2024-09-09', 192000.00, '', '3', '2026-02-04', '2', 'have exp in calling for few mnths but not a relevant one can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2024-09-09', 1, '2024-08-30 06:40:55', 104, '2024-09-09 06:20:47', 0, NULL, 1),
(21049, 'V Shalini', '6', '8660700508', '', 'manishalu09978@gmail.com', '2003-05-27', 21, '2', '1', 'Manikanta', 'Laptop service', 28000.00, 1, 0.00, 20000.00, 'Hosaroad', 'Hosaroad', '2408300012', '1', '1', 'upload_files/candidate_tracker/31895859374_CustomerServiceResumeinGreyandLightBlueMinimalistStyle1.pdf', NULL, '1', '2024-08-30', 0, '', '3', '59', '2024-09-02', 192000.00, '', '3', '2024-09-02', '2', 'Fresher Communication Ok Can give a try and check recently married long run doubts check in 7 days training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '2024-09-02', 1, '2024-08-30 07:23:06', 60, '2024-08-31 01:19:31', 0, NULL, 1),
(21050, 'Jeevika S', '6', '8105619190', '', 'jeevika2538@gmail.com', '2004-06-06', 20, '2', '2', 'Saravanan K', 'Plumber', 40000.00, 1, 0.00, 20000.00, 'Hosa Road', 'Hosa Road', '2408300013', '1', '1', 'upload_files/candidate_tracker/71552680547_DocScannerAug222024108PM1.pdf', NULL, '1', '2024-08-30', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much comfort in sales,she is holding an other offer in HR role she prefers that,the same day she attended 3 interviews and got selected in that - She needs time to confirm', '5', '1', '', '2', '2', '', '2', '2024-09-02', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-30 07:23:07', 126, '2024-08-30 03:21:45', 0, NULL, 1),
(21051, 'Sakthi darsini A', '6', '6383228834', '', 'sakthidarsiniagilan2312@gmail.com', '2001-12-23', 22, '2', '2', 'Akilan G', 'Tailor', 8000.00, 2, 13000.00, 15000.00, 'Chennai', 'Chennai', '2408300014', '50', '2', 'upload_files/candidate_tracker/86279286786_7d5sjwplz5f5f9g9g69gns9t9862wvl400gwAt03cw8j8kg2bglt2w1ng8kh1tmpztjrp0pjqx0hyvplbhtkfd3AkActj326s3lcnr4d4sbcg8w7s14rnnjxzAhvr6Ac51pbrhmcArgsjA0jz26vwjdA5f7fs7x8d4whk4qh9mqA16g77n1q0.docx', NULL, '1', '2024-08-30', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She asking other department job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-08-30 07:54:50', 104, '2024-08-30 03:44:47', 0, NULL, 1),
(21052, 'M. Reshma Banu', '6', '8122189979', '', 'banu76077@gmail.com', '2002-07-06', 22, '2', '2', 'Mohammed Hussain', 'Car Driver', 9500.00, 2, 0.00, 23000.00, 'Redhills, Chennai', 'Redhills, Chennai', '2408300015', '1', '1', 'upload_files/candidate_tracker/9923370472_ReshmaResume.pdf', NULL, '1', '2024-08-30', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'convincing skill and communication is low and she is interested in customer support', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', 'P1066', '5151', '1970-01-01', 1, '2024-08-30 08:04:57', 104, '2024-09-21 12:21:43', 0, NULL, 1),
(21053, 'Ruthika.V', '6', '9360677390', '9444322036', 'ruthikaruthika4@gmail.com', '2001-12-11', 22, '2', '2', 'Venkatesh', 'Driver', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2408300016', '1', '1', 'upload_files/candidate_tracker/21490544841_17232665989031723266597161RuthikaResume.pdf', NULL, '1', '2024-09-02', 0, '', '3', '59', '2024-09-09', 168000.00, '', '3', '2025-02-03', '2', 'Communication Ok Fresher MCom looking for Core opening too travel time 45 min Need to check in 7 days training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '2024-09-09', 1, '2024-08-30 08:38:23', 104, '2024-09-10 04:31:35', 0, NULL, 1),
(21054, 'vani', '20', '7200014024', '', 'vanirr2021@gmail.com', '2003-05-31', 21, '3', '2', 'ravikumar', 'royal enfiled', 25000.00, 1, 0.00, 16000.00, 'ennore', 'ennore', '2408300017', '', '1', 'upload_files/candidate_tracker/46813031622_VANIresume.pdf', NULL, '1', '2024-08-30', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performance and communication is not good also she is not answered much more in the Basic interview Quetions', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-08-30 09:05:25', 104, '2024-08-30 03:44:12', 0, NULL, 1),
(21055, 'leela', '6', '6379532760', '', 'leelaravikumar2499@gmail.com', '2009-08-30', 0, '3', '2', 'ravikumar', 'mrf employee', 20000.00, 1, 0.00, 18000.00, 'ennore chennai', 'ennore chenni', '2408300018', '', '1', 'upload_files/candidate_tracker/80712831245_leela.pdf', NULL, '1', '2024-08-30', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate  done interview with lack of communication ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-30 09:05:28', 104, '2024-08-30 03:34:56', 0, NULL, 1),
(21056, 'SHARMILA S', '4', '7695906110', '9788781931', 'sharmilasankar107@gmail.com', '1998-10-07', 25, '2', '2', 'Parents', 'Driver', 10000.00, 2, 16000.00, 15000.00, 'Kumbakonam', 'Chennai', '2408300019', '50', '2', 'upload_files/candidate_tracker/46724278770_sharmisresume.pdf', NULL, '1', '2024-08-31', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-30 10:05:30', 1, '2024-08-30 10:28:42', 0, NULL, 1),
(21057, 'Kalai Selvi', '6', '7305783848', '8608917382', 'Kalaiselviks744907@yahoo.com', '2003-01-26', 21, '2', '2', 'Murugayya', 'Farmer', 30000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Tenkasi', '2408300020', '50', '1', 'upload_files/candidate_tracker/14326637474_RESUMEkalaiselvi12.docx', NULL, '1', '2024-09-02', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication was not good', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-08-30 10:17:15', 104, '2024-09-02 04:53:08', 0, NULL, 1),
(21058, 'Shoban', '5', '6360954675', '6363466292', 'shobanssarvana76009@gmail.com', '2000-03-12', 24, '2', '2', 'Parents .. Aruna', 'House wife', 50000.00, 0, 27000.00, 35000.00, 'Usloor Bangalore', 'Usloor Bangalore', '2408300021', '1', '2', 'upload_files/candidate_tracker/49409529171_d93ce1c4ab3745cda2945ff2e592016b.pdf', NULL, '1', '2024-08-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'suggested ctc 3.6lac currently active employee with Policy Bazzar cross check the joining date', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-08-30 10:34:07', 60, '2024-09-17 03:47:41', 0, NULL, 1),
(21059, 'Srivarshini R', '4', '7824093441', '', 'sri476122@gmail.com', '2002-07-29', 22, '3', '2', 'N.Ramachandiran', 'Sales man', 10000.00, 1, 0.00, 20000.00, 'Padiyanallur', 'Padiyanallur', '2408300022', '', '1', 'upload_files/candidate_tracker/20702201209_DOC20240828WA0050..pdf', NULL, '1', '2024-08-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-30 11:36:24', 1, '2024-08-30 03:31:45', 0, NULL, 1),
(21060, 'K. Surya', '4', '6383654362', '9994011829', 'k.surya2344@gmail.com', '2001-05-27', 23, '2', '2', 'Kumareasan', 'Driver', 18000.00, 2, 0.00, 16000.00, 'Pattur koot road mangadu', 'Pattur koot road mangadu', '2408300023', '50', '1', 'upload_files/candidate_tracker/35982182270_K.SuryaBiodata.pdf', NULL, '1', '2024-09-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-30 01:06:29', 1, '2024-08-30 01:24:28', 0, NULL, 1),
(21061, '', '0', '9597808330', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408310001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-31 04:53:47', 0, NULL, 0, NULL, 1),
(21062, 'Harish', '4', '8144622419', '', 'pingmharish@gmail.com', '1999-10-04', 24, '2', '2', 'Murugesan', 'Logistics', 50000.00, 0, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2408310002', '1', '1', 'upload_files/candidate_tracker/89635375996_CV2024172015433673.pdf', NULL, '1', '2024-08-31', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-08-31 04:59:34', 104, '2024-08-31 10:37:08', 0, NULL, 1),
(21063, 'Yugapriya B', '11', '9629943272', '9176351029', 'byugapriya@gmail.com', '2002-11-07', 21, '2', '1', 'SRI DEVI', 'Housekeeping', 168000.00, 1, 12000.00, 15000.00, 'E Block 2 AM Garden, Mandhaveli Chennai -600028.', '13/25,12th cr st periya karakotta Mandhaveli ch-28', '2408310003', '50', '2', 'upload_files/candidate_tracker/89329251184_YUGAPRIYABABU.pdf', NULL, '1', '2024-09-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-08-31 05:12:05', 104, '2024-09-02 06:52:01', 0, NULL, 1),
(21064, 'Saravanakumar', '6', '9488427131', '', 'sara.mech96@gmail.com', '1996-05-11', 28, '2', '2', 'Jaya kumar', 'Retired', 15000.00, 1, 30400.00, 35000.00, 'Madurai', 'Bangalore', '2408310004', '57', '2', 'upload_files/candidate_tracker/38151161320_saravanakumarresumenew2.pdf', NULL, '1', '2024-08-31', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lagging with communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2024-08-31 05:39:26', 126, '2024-08-31 03:15:06', 0, NULL, 1),
(21065, '', '0', '9489427131', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408310005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-31 05:51:52', 0, NULL, 0, NULL, 1),
(21066, 'Padma Priya.D', '4', '8637466932', '', 'priyadevaraj671@gmail.com', '2001-07-06', 23, '2', '2', 'Devaraj.M', 'Business', 36000.00, 1, 0.00, 15000.00, 'Kolathur', 'Kolathur', '2408310006', '50', '1', 'upload_files/candidate_tracker/89343839007_PADMAPRIYADRESUME....2.pdf', NULL, '1', '2024-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-31 06:39:22', 1, '2024-08-31 06:45:50', 0, NULL, 1),
(21067, 'Bharath Kumar', '4', '6379791562', '9342927360', 'bharathloganathan54@gmail.com', '2003-07-13', 21, '2', '2', 'Loganathan', 'Kovil work', 30000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2408310007', '50', '1', 'upload_files/candidate_tracker/60643739256_Resume20240705567855611.pdf', NULL, '3', '2024-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-31 06:52:03', 1, '2024-08-31 06:55:49', 0, NULL, 1),
(21068, '', '0', '6379781562', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2408310008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-08-31 06:58:10', 0, NULL, 0, NULL, 1),
(21069, 'Swapna Eslavath', '6', '8840479522', '7569851949', 'eswapna14@gmail.com', '2000-12-14', 23, '2', '2', 'Krishna naik', 'Farmer', 20000.00, 1, 18000.00, 18000.00, 'Kadiri', 'Gv palya', '2408310009', '1', '2', 'upload_files/candidate_tracker/87869098838_SwapnaEslavath1.doc', NULL, '1', '2024-08-31', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is good, fresher in sales 6 months Experience in data entry ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-08-31 07:05:30', 126, '2024-08-31 03:05:16', 0, NULL, 1),
(21070, 'Tholkappiyan U', '27', '8838037693', '', 'ubakaradoss@gmail.com', '2003-06-20', 21, '3', '2', 'Dhanamary U', 'Home maker', 15000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2408310010', '', '1', 'upload_files/candidate_tracker/68641386327_THOLKAPPIYANUResume.pdf', NULL, '1', '2024-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-08-31 01:45:35', 1, '2024-08-31 01:50:09', 0, NULL, 1),
(21071, 'dharani', '6', '8248869165', '9994728668', 'dharushree06@gmail.com', '1999-06-29', 25, '3', '2', 'ulaganambi', 'home maker', 15000.00, 1, 45000.00, 80000.00, 'salem', 'bangalore', '2409010001', '', '2', 'upload_files/candidate_tracker/36393135717_Dharanicv.pdf', NULL, '1', '2024-09-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-01 05:59:48', 1, '2024-09-01 06:49:34', 0, NULL, 1),
(21072, 'Ramya TG', '6', '7200019574', '9841536000', 'ramyageetha9072000@gmail.com', '2000-07-09', 24, '2', '2', 'Geetha SM ( parent)', 'Purchase incharge', 20000.00, 0, 17500.00, 20000.00, 'Maduravoyal Chennai', 'Maduravoyal Chennai', '2409010002', '56', '2', 'upload_files/candidate_tracker/73061938533_RamyaTGResume853.pdf', NULL, '1', '2024-09-02', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is communication  good but distance too long. 2yrs experience but she totally forget the previous company process, so reject the profile', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-09-01 04:44:34', 104, '2024-09-02 04:54:03', 0, NULL, 1),
(21073, 'Sivasurya S', '4', '9087490225', '', 'sivasuryaselvaraj@gmail.com', '1997-08-29', 27, '2', '2', 'Selvaraj', 'Driver', 40000.00, 1, 20000.00, 25000.00, 'Vadapalani', 'Vadapalani', '2409020001', '1', '2', 'upload_files/candidate_tracker/59491476515_RESUMESIVASURYA15.pdf', NULL, '1', '2024-09-02', 90, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'wont have sales skills ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55824', '55560', '1970-01-01', 1, '2024-09-02 04:04:08', 104, '2024-09-10 02:46:10', 0, NULL, 1),
(21074, 'Thoufheeq', '6', '8637452828', '7603879484', 'thoufheeqr@gmail.com', '1999-07-14', 25, '2', '2', 'Sapurama', 'Marketing', 15000.00, 1, 25000.00, 30000.00, 'Tiruppur', 'Tiruppur', '2409020002', '1', '2', 'upload_files/candidate_tracker/56433643086_Resumestr2.docx', NULL, '1', '2024-09-02', 30, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Poor Communication Skills and  Limited Technical Expertise...Lack of Problem-Solving Abilities and finally Unprepared and Disorganized so not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55634', '55557', '1970-01-01', 1, '2024-09-02 04:29:56', 104, '2024-09-03 06:35:42', 0, NULL, 1),
(21075, 'S.pachaiyappan', '6', '7845184160', '', 'pachaiyappanpachaiyappan120@gmail.com', '2004-10-30', 19, '1', '2', 'Sankar', 'Narsing', 10000.00, 2, 15000.00, 17000.00, 'Chennai', 'Chennai saidapet', '2409020003', '', '2', 'upload_files/candidate_tracker/88576336533_PACHA.docx', NULL, '1', '2024-09-02', 0, '77882', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no bASIC SKILL', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-02 04:36:12', 104, '2024-09-02 04:45:10', 0, NULL, 1),
(21076, 'S. CHANDRA PRASATH', '5', '7010898834', '9585878270', 'chandraprasath1602@gmail.com', '2002-02-16', 22, '3', '2', 'M. SUBRAMANIAN', 'TNPL', 40000.00, 1, 0.00, 18000.00, 'Erode', 'Bangalore', '2409020004', '', '1', 'upload_files/candidate_tracker/44524650878_ChandhraPrasathResume1.pdf', NULL, '1', '2024-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-02 04:50:06', 1, '2024-09-02 05:01:49', 0, NULL, 1),
(21077, 'S Ashiha', '6', '9360467229', '9751180959', 'ashiharajsam@gmail.com', '2001-09-26', 22, '2', '1', 'Samraj', 'windmill', 20000.00, 1, 0.00, 20000.00, 'Kaniyakumari', 'Guindy', '2409020005', '50', '1', 'upload_files/candidate_tracker/4625972874_Ashiha.pdf', NULL, '3', '2024-09-02', 0, '', '3', '59', '2024-09-04', 168000.00, '', '3', '2025-01-31', '2', 'Communication Ok Fresher Candidate Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2024-09-04', 1, '2024-09-02 04:53:35', 104, '2024-09-04 10:18:06', 0, NULL, 1),
(21078, 'subash chandra bose', '20', '6383875519', '', 'sannn1226@gmail.com', '2001-03-06', 23, '2', '2', 'murugesan', 'business', 60000.00, 2, 22000.00, 25000.00, 'old washermenpet', 'old washermenpet', '2409020006', '1', '2', 'upload_files/candidate_tracker/44668694129_Ggg.pdf', NULL, '1', '2024-09-02', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is unfit for field sales. previously he working in collection company 2yrs and he daddy also working same company too 15yrs well settled. sal exp 25k he not interested for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2024-09-02 05:00:38', 104, '2024-09-03 06:36:33', 0, NULL, 1),
(21079, 'yageswaren', '6', '7305643626', '', 'yagesh546@gmail.com', '2003-04-20', 21, '2', '2', 'rajkumar', 'mechanic', 50000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2409020007', '50', '1', 'upload_files/candidate_tracker/73547359197_WhiteSimpleStudentCVResume202408050914330000.pdf', NULL, '1', '2024-09-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication ok but his perfomance is not good , his sister working in HDFC Telesales Process as a assistant manager,also little bit attitude type', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-02 05:14:28', 104, '2024-09-02 04:43:56', 0, NULL, 1),
(21080, 'D.Sakthi narayanan', '6', '8056789029', '', 'sanasakthi541@gmail.com', '2002-11-14', 21, '2', '2', 'Mageswari', 'Na', 20000.00, 1, 0.00, 18000.00, 'Nesapakkam Chennai', 'Nesapakkam Chennai', '2409020008', '50', '1', 'upload_files/candidate_tracker/8156187602_SakthiNarayanan1.pdf', NULL, '1', '2024-09-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate performance and communication is not good, also she is not Answer much more in the interview quetions and basic quetions', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-02 05:14:28', 104, '2024-09-03 02:47:12', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21081, 'Mohamed faruk N', '6', '7871125003', '', 'frekinfaruk726@gmail.com', '2002-05-28', 22, '2', '2', 'Makbul', 'House wife', 18000.00, 1, 0.00, 18000.00, 'Mathur', 'Mathur', '2409020009', '42', '1', 'upload_files/candidate_tracker/44285327370_MOHAMEDRESUME.pdf', NULL, '1', '2024-09-02', 0, '', '3', '59', '2024-09-09', 192000.00, '', '3', '2024-09-18', '1', 'Communication Ok Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-09-09', 1, '2024-09-02 05:15:09', 104, '2024-09-09 06:19:00', 0, NULL, 1),
(21082, 'g. sowmyanarayanan', '4', '8072074604', '9843083320', 'badrisow7@gmail.com', '2003-09-07', 20, '2', '2', 'gopalakrishnan', 'auditor', 100000.00, 1, 25000.00, 30000.00, 'coimbatore', 'vadapalani', '2409020010', '57', '2', 'upload_files/candidate_tracker/25992510394_Myresume.pdf', NULL, '1', '2024-09-03', 14, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-02 05:17:23', 1, '2024-09-02 05:26:34', 0, NULL, 1),
(21083, 'LOGESHWARI V', '6', '9042727853', '7305589895', 'vlogivijay26@gmail.com', '2004-02-26', 20, '2', '2', 'Vijay Kumar', 'Tourism field', 120000.00, 1, 0.00, 15000.00, 'CHennai', 'CHennai', '2409020011', '50', '1', 'upload_files/candidate_tracker/3532399514_AmmuNewResume.pdf', NULL, '1', '2024-09-02', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected have communication and known about telesales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-02 05:21:53', 104, '2024-09-02 04:43:42', 0, NULL, 1),
(21084, 'Priyadharshan', '6', '8608525568', '9080022905', 'itsdharshan451@gmail.com', '2001-05-04', 23, '2', '2', 'K vijayalakshmi', 'Dance teacher', 30000.00, 1, 0.00, 25000.00, 'No.50 Parupukara street palakkari trichy 620001', 'Chennai, vadapalani', '2409020012', '57', '1', 'upload_files/candidate_tracker/48415491298_PRIYADHARSHANRESUME.pdf', NULL, '1', '2024-09-02', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate just looking for job ater6 month try or own busines for our father support  , so he so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-02 05:22:12', 104, '2024-09-03 02:47:53', 0, NULL, 1),
(21085, 'Thirisha', '6', '9551736972', '7299404210', 'thirishas328@gmail.com', '2004-06-25', 20, '1', '2', 'Dhanalakshmi', 'House keeping', 10000.00, 1, 0.00, 15000.00, 'V.68 Chithra nagar kotturpuram Chennai-85', 'V.68 Chithra nagar kotturpuram Chennai-85', '2409020013', '', '1', 'upload_files/candidate_tracker/3328345298_RESUME07.02.22NewMicrosoftOfficeWordDocument2211.pdf', NULL, '1', '2024-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-02 05:22:35', 1, '2024-09-02 05:34:41', 0, NULL, 1),
(21086, 'Priyanka M', '6', '9360559377', '7550378445', 'priyapriya80677@gmail.com', '2002-03-08', 22, '2', '2', 'Manoharan V', 'Farmer', 7000.00, 1, 0.00, 20000.00, 'Karur', 'Karur', '2409020014', '8', '1', 'upload_files/candidate_tracker/96190700643_PriyankaM.pdf', NULL, '1', '2024-09-02', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected having interested in other jobs ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-02 05:23:40', 104, '2024-09-02 04:10:15', 0, NULL, 1),
(21087, 'AZHAGU RAJA G', '5', '9025287695', '', 'azhaguraja1705@gmail.com', '2000-05-17', 24, '2', '2', 'Govindharaj (father)', 'Daily wages', 15000.00, 1, 400008.00, 350000.00, 'Dindigul', 'BTM 2nd stage', '2409020015', '57', '2', 'upload_files/candidate_tracker/81271338634_CVAZHAGURAJAG.pdf', NULL, '1', '2024-09-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-02 05:29:48', 1, '2024-09-02 05:36:00', 0, NULL, 1),
(21088, 'Nandhini G', '6', '7397241509', '', 'Nandhininandhu968@gmail.com', '2001-05-10', 23, '2', '2', 'Father', 'Father', 10000.00, 1, 0.00, 120000.00, 'Chennai', 'chennai', '2409020016', '1', '1', 'upload_files/candidate_tracker/85573487977_TripIIIAFABContactNumber.pdf', NULL, '1', '2024-10-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-02 06:06:15', 104, '2024-10-07 05:22:24', 0, NULL, 1),
(21089, 'Reshma', '5', '9025722072', '7603942716', 'reshmapalraj@gmail.com', '2003-05-14', 21, '2', '2', 'F Palraj', 'Auto driver', 10.00, 1, 15000.00, 20000.00, 'Chidambaram', 'Chrompet', '2409020017', '57', '2', 'upload_files/candidate_tracker/88193398012_Untitled1.pdf', NULL, '1', '2024-09-02', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-02 06:09:15', 104, '2024-09-02 04:46:03', 0, NULL, 1),
(21090, 'M.vaishali', '11', '9789849237', '', 'Vaishalivaishu403@gmail.com', '2000-11-13', 23, '3', '2', 'K.mahendran', 'carpenter', 15000.00, 1, 0.00, 15000.00, 'No:4 raja badhar St,adambakkam,Chennai-88', 'No:4 raja badhar St,Adambakkam', '2409020018', '', '1', 'upload_files/candidate_tracker/14021929277_vaishaliresume.pdf', NULL, '1', '2024-09-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-02 06:09:37', 104, '2024-09-02 06:53:12', 0, NULL, 1),
(21091, '', '0', '8667288121', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409020019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-02 06:13:42', 0, NULL, 0, NULL, 1),
(21092, 'T. Aparna', '6', '9585741730', '', 'Aparanapurushothaman25@gmail.com', '2003-06-25', 21, '2', '2', 'Manjula. T', 'Sales executive', 10000.00, 1, 0.00, 17000.00, 'Chidambaram', 'Chrompet', '2409020020', '57', '1', 'upload_files/candidate_tracker/30421536264_TAPARNAResume.pdf', NULL, '1', '2024-09-02', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lang distance and Average skill . so not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-02 06:29:02', 104, '2024-09-02 04:50:58', 0, NULL, 1),
(21093, 'K.padmavathi', '11', '9345604674', '', 'Sharmipavi@gmail.com', '2001-09-24', 22, '3', '2', 'Kathiravan.R', 'machine oparator', 15000.00, 0, 0.00, 15000.00, 'No:4/31 ,Choolaimedu,chennai-94', 'No:4/31 ,Choolaimedu,chennai-94', '2409020021', '', '1', 'upload_files/candidate_tracker/89058749006_Padmavathi.pdf', NULL, '1', '2024-09-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '3', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-02 06:35:10', 104, '2024-09-02 06:53:40', 0, NULL, 1),
(21094, '', '0', '7075731973', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409020022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-02 06:36:35', 0, NULL, 0, NULL, 1),
(21095, 'T. Sowmiya', '6', '8438912814', '6384148183', 'ecesowmiya0@gmail.com', '2003-07-22', 21, '2', '2', 'Thangappan', '12th', 13000.00, 1, 0.00, 16000.00, 'Thabaram', 'Crompet', '2409020023', '57', '1', 'upload_files/candidate_tracker/69376703429_Sowmires.pdf', NULL, '1', '2024-09-02', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is very lacey and very local voice  , and commuication also not well so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-02 06:40:51', 104, '2024-09-02 04:51:29', 0, NULL, 1),
(21096, 'Jegadeesh R', '6', '9524179224', '8508018012', 'jeganskl3@gmail.com', '2002-02-15', 22, '2', '2', 'Jayanthi R', 'Farmer', 150000.00, 1, 0.00, 250000.00, 'Vriddhachalam', 'Tambharam', '2409020024', '57', '1', 'upload_files/candidate_tracker/50641171651_Jegadeeshresume.docx2.pdf', NULL, '1', '2024-09-02', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, 1yrs exp manpower agency company like arrange the car drivers. nit shift. 15k to 16k salary exp. pls negotiate the salary and ask payslip or offer letter. confirm the joining date', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-09-02 07:06:21', 104, '2024-09-02 04:52:51', 0, NULL, 1),
(21097, 'Ezhilarasan', '5', '9363623058', '9942750992', 'Ezhil7021@gmail.com', '1999-09-08', 24, '2', '2', 'Sathya v', 'Gov school head master', 80.00, 1, 20000.00, 30000.00, 'Kattumannarkoil', 'Thiruvanmiyur', '2409020025', '1', '2', 'upload_files/candidate_tracker/16094136623_resumeezhil.pdf.pdf', NULL, '1', '2024-09-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-02 07:33:50', 104, '2024-09-03 06:38:04', 0, NULL, 1),
(21098, 'Sasi Kumar', '20', '9698888015', '', 'Sasisasikumar2204@gmail.com', '2001-04-22', 23, '3', '2', 'Saravanan.S', 'Carpenter', 22000.00, 1, 0.00, 25000.00, 'Kanchipuram', 'Kanchipuram', '2409020026', '', '1', 'upload_files/candidate_tracker/6333325089_sasitesting11.pdf', NULL, '1', '2024-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-02 07:47:05', 1, '2024-09-02 07:50:56', 0, NULL, 1),
(21099, 'Susma prakash.j', '11', '9025934390', '', 'Susmaprakash25@gmail.com', '2000-07-25', 24, '6', '2', 'Jayaprakash.k', 'Bussiness', 30000.00, 0, 0.00, 18000.00, 'Chennai', 'Perumbur', '2409020027', '', '1', 'upload_files/candidate_tracker/6446508834_SUSMA.pdf202408182016420000.pdf', NULL, '1', '2024-09-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-09-02 07:52:48', 104, '2024-09-04 07:09:30', 0, NULL, 1),
(21100, 'Janani N', '11', '9841668417', '', 'jananisoundarya2001@gmail.com', '2001-07-03', 23, '6', '2', 'K Nagarajan', 'Temple priest', 20000.00, 1, 0.00, 18000.00, 'Chennai - Triplicane', 'Chennai - Triplicane', '2409020028', '', '1', 'upload_files/candidate_tracker/93976459407_JANANIN.pdf', NULL, '1', '2024-09-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-02 07:54:11', 104, '2024-09-04 07:08:01', 0, NULL, 1),
(21101, 'Mohanraj', '6', '9043278431', '9994959499', 'MohanrajPugalenthi@gmail.com', '1997-06-12', 27, '2', '2', 'Pugalenthi', 'Mechanic', 20000.00, 1, 0.00, 25000.00, 'Madurai', 'Chennai', '2409020029', '50', '1', 'upload_files/candidate_tracker/2355887925_resume1.pdf', NULL, '1', '2024-09-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-02 08:56:10', 104, '2024-09-02 04:25:52', 0, NULL, 1),
(21102, 'RUVITHA U', '11', '8825745723', '', 'ruvitha.ukumar@gmail.com', '1998-06-07', 26, '2', '2', 'Udayakumar U (parent)', 'Private', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409020030', '1', '1', 'upload_files/candidate_tracker/55654625092_RUVITHAU1679858091276RUVITHAU.pdf', NULL, '1', '2024-09-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2024-09-02 09:20:37', 104, '2024-09-03 06:46:21', 0, NULL, 1),
(21103, 'abdul wajid', '6', '9790730396', '', 'abdulwajid4798@gmail.com', '2001-04-15', 23, '2', '2', 'abdul kadhar', 'own busi', 30000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2409020031', '57', '1', 'upload_files/candidate_tracker/10762739340_wajidresumnew.in.pdf', NULL, '3', '2024-09-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-02 09:25:51', 104, '2024-09-02 04:25:25', 0, NULL, 1),
(21104, 'KEERTHANA S', '6', '9941663135', '', 'srinivasankeerthana63@gmail.com', '2004-06-17', 20, '2', '2', 'Vanitha', 'House wife', 13.00, 1, 13273.00, 17.00, 'Teynapettai', 'Teynapettai', '2409020032', '1', '2', 'upload_files/candidate_tracker/36487534696_KeerthanasrinivasanResume.pdf', NULL, '1', '2024-09-06', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication not well. unfit for the sales. reject the candidate', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2024-09-02 09:51:49', 104, '2024-09-06 06:19:09', 0, NULL, 1),
(21105, 'CHANDRU A', '6', '6369502340', '9150230147', 'chandru.bosco2001@gmail.com', '2001-01-02', 23, '2', '2', 'Aruldass .G', 'Suntring Work', 60000.00, 1, 14000.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2409020033', '1', '2', 'upload_files/candidate_tracker/2578640202_chandrures.pdf', NULL, '1', '2024-09-02', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill and Expectation high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-02 09:52:02', 104, '2024-09-03 06:48:17', 0, NULL, 1),
(21106, 'Nehru.K', '6', '9751695052', '9443987719', 'gurunehru1995@gmail.com', '1995-08-30', 29, '2', '2', 'Kannan.GK', 'Mechanic', 20000.00, 1, 27000.00, 30000.00, '1/127,5th Street,M.G.R Nagar, Gingee', 'Vadapalani, Chennai', '2409020034', '45', '2', 'upload_files/candidate_tracker/38275327964_ResumefornehrubankLAST1.docx', NULL, '1', '2024-09-02', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for field sales \nhe looking for operation', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-09-02 10:32:43', 104, '2024-09-03 02:49:17', 0, NULL, 1),
(21107, '', '0', '9940559865', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409020035', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-02 12:33:11', 0, NULL, 0, NULL, 1),
(21108, 'Wilson Das', '6', '9526675075', '', 'dazwilson12345@icloud.com', '2002-02-25', 22, '2', '2', 'maria das', 'dail wa', 15000.00, 3, 27000.00, 30000.00, 'wayanad', 'wayan', '2409020036', '1', '2', 'upload_files/candidate_tracker/24222546185_Wilson1.pdf', NULL, '1', '2024-09-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'good communication skill and good confident level expectation is 20k we can give a try', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-09-02 01:22:41', 126, '2024-09-05 06:23:55', 0, NULL, 1),
(21109, 'Deepak V Salian', '5', '8861631782', '', 'deepaksalian10@gmail.com', '1994-09-19', 29, '3', '2', 'Prema', 'Private Job', 70000.00, 1, 24000.00, 30000.00, 'BANGALORE', 'BANGALORE', '2409020037', '', '2', 'upload_files/candidate_tracker/7428169521_Deepak.Blr.pdf', NULL, '1', '2024-09-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-02 01:22:43', 1, '2024-09-03 05:34:07', 0, NULL, 1),
(21110, '', '0', '9047115903', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409020038', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-02 03:40:28', 0, NULL, 0, NULL, 1),
(21111, '', '0', '9344376074', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409030001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-03 04:01:05', 0, NULL, 0, NULL, 1),
(21112, 'Simran Lohar', '11', '9321433622', '', 'simranlohar986@gmail.com', '2002-06-01', 22, '6', '2', 'Father - Hiralal lohar', 'Business', 60000.00, 1, 0.00, 12000.00, 'Mumbai', 'Mumbai', '2409030002', '', '1', 'upload_files/candidate_tracker/55043507842_SimranLoharResume202408282121360000.pdf', NULL, '1', '2024-09-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-03 04:39:46', 104, '2024-09-03 04:21:42', 0, NULL, 1),
(21113, '', '0', '7358663163', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409030003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-03 04:40:25', 0, NULL, 0, NULL, 1),
(21114, 'Abdul Khalid', '6', '8939208617', '7871385067', 'abdulkhalid1599@gmail.com', '1999-05-01', 25, '2', '2', 'Sadiq Basha', 'Security', 20000.00, 1, 0.00, 18000.00, 'Perambur Chennai', 'Perambur Chennai', '2409030004', '1', '1', 'upload_files/candidate_tracker/16340984162_AKResume.docx', NULL, '1', '2024-09-03', 0, '', '3', '59', '2024-09-09', 204000.00, '', NULL, '2024-12-30', '1', 'Communication Ok can give a try and check based on manager approval proceed with the committed CTC', '5', '1', '1', '1', '8', '', '2', '2024-09-06', '1', '3', '', '', 'H1017', '', '55651', '5151', '2024-09-09', 1, '2024-09-03 04:44:10', 104, '2024-09-09 06:19:50', 0, NULL, 1),
(21115, 'Ramya S', '6', '9751817310', '9500528338', 'ramyassaravanan12@gmail.com', '2003-05-14', 21, '2', '2', 'VALARMATHI', 'Wages', 10000.00, 1, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2409030005', '50', '1', 'upload_files/candidate_tracker/3851221841_RESUME.pdf', NULL, '1', '2024-09-03', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected  having double minded for it jobs and sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-03 04:46:30', 104, '2024-09-03 04:52:31', 0, NULL, 1),
(21116, 'Bharath E', '4', '6382896953', '', 'bharathnaukri@gmail.com', '2002-11-02', 21, '2', '2', 'Ealumali', 'Cab Driver', 90000.00, 2, 0.00, 18000.00, 'No,101,AKR NAGAR, Mogappair west, chennai -600037', 'Chennai', '2409030006', '50', '1', 'upload_files/candidate_tracker/92163978836_BharathResume.pdf', NULL, '1', '2024-09-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-03 05:03:12', 1, '2024-09-03 05:08:41', 0, NULL, 1),
(21117, 'M.Mohammed Shajahan', '6', '7305607114', '', 'mohammedshajahanshaju123@gmail.com', '2001-02-02', 23, '2', '2', 'S.Mohamed Rafi', 'Business', 10000.00, 3, 0.00, 15000.00, '57/30 venkata mastriy street mannady Chennai', '57/30 venkata mastriy street mannady Chennai', '2409030007', '45', '1', 'upload_files/candidate_tracker/53031809529_Resume28062024104050AM.pdf', NULL, '1', '2024-09-03', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic dressing , and no skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-03 05:05:18', 104, '2024-09-03 06:27:16', 0, NULL, 1),
(21118, 'Mohanraj', '5', '9150538100', '7448574806', 'rajm50651@gmail.com', '1998-05-06', 26, '2', '2', 'ramamoothy', 'staff', 650000.00, 1, 25000.00, 35000.00, 'arni', 'porur', '2409030008', '57', '2', 'upload_files/candidate_tracker/24353225334_MOHANRAJRESUME3.pdf', NULL, '1', '2024-09-03', 15, '', '1', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '1', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-03 05:29:23', 104, '2024-09-04 05:46:31', 0, NULL, 1),
(21119, 'Santhiya', '25', '9789925197', '8925322190', 'santhiyanagaraj97@gmail.com', '1997-07-10', 27, '2', '1', 'Latha', 'Working in school', 35000.00, 0, 27000.00, 29000.00, 'Kolathur', 'Kolathur', '2409030009', '42', '2', 'upload_files/candidate_tracker/98570190622_SanthiyaResume.docx', NULL, '1', '2024-09-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-03 05:47:13', 104, '2024-09-03 11:25:29', 0, NULL, 1),
(21120, 'Archana c', '33', '6369131787', '7338836384', 'archana2502c@gmail.com', '2002-02-25', 22, '3', '2', 'Chandrasekar', 'Coolie', 15000.00, 1, 14765.00, 20000.00, 'Chennai', 'Chennai', '2409030010', '', '2', 'upload_files/candidate_tracker/4317941259_CV2024071021082545.pdf', NULL, '1', '2024-09-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-03 05:52:58', 1, '2024-09-03 06:08:13', 0, NULL, 1),
(21121, 'C. AMUTHA', '33', '7338836384', '6369131787', 'Amutha250c@gmail.com', '2002-02-25', 22, '3', '2', 'S chandrasekar', 'Coolie', 15000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2409030011', '', '2', 'upload_files/candidate_tracker/38683891477_AmuthanewResume.docx', NULL, '1', '2024-09-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-03 05:53:05', 1, '2024-09-03 06:08:18', 0, NULL, 1),
(21122, 'Prabu. M', '6', '8754955068', '', 'prabum1805@gmail.com', '1999-05-18', 25, '2', '2', 'Murugesan. S', 'Auto driver', 18000.00, 5, 18000.00, 21000.00, 'Pondicherry', 'Pondicherry', '2409030012', '1', '2', 'upload_files/candidate_tracker/51953547821_Prabu.M.pdf', NULL, '1', '2024-09-03', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'speaks well and having work exp not in our dept so lets 7 days and confirm.Ref Manikandan salary ctc 19k and check his last company salary experance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-03 05:54:52', 104, '2024-09-03 07:03:42', 0, NULL, 1),
(21123, 'shoubik Ahamed', '6', '9025138368', '9345539738', 'shoubik786@gmail.com', '2001-11-22', 22, '2', '2', 'Mohamed rasik', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Pudukkottai', 'Chennai', '2409030013', '50', '1', 'upload_files/candidate_tracker/2168873989_Shoubikresume2.docx', NULL, '1', '2024-09-03', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is unfit for the sales profile, communication not good.reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-09-03 05:55:32', 104, '2024-09-03 07:04:44', 0, NULL, 1),
(21124, 'Velumani V', '4', '9841393522', '', 'velumani.becse09@gmail.com', '1990-12-28', 33, '2', '1', 'Pooja Priya', 'Employee', 10000.00, 1, 0.00, 23000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2409030014', '50', '1', 'upload_files/candidate_tracker/26399489750_VMResumeLatest2Copycompressed.pdf', NULL, '1', '2024-09-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-03 06:17:13', 1, '2024-09-03 06:22:27', 0, NULL, 1),
(21125, 'Jeeva.p', '6', '7904873128', '9176538858', 'jeeva031225@gmail.com', '2003-12-25', 20, '2', '2', 'Prakash', 'Building work', 13000.00, 1, 0.00, 15000.00, 'Choolaimedu', 'Choolaimedu', '2409030015', '1', '1', 'upload_files/candidate_tracker/14849422697_CV2024073022470571.pdf', NULL, '1', '2024-09-03', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate very low voice and not understanding my words so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-03 06:23:18', 104, '2024-09-03 06:28:05', 0, NULL, 1),
(21126, 'Srividhya', '4', '9655422843', '', 'Srividhyakmba@gmail.com', '1997-01-15', 27, '2', '2', 'Karunanithi', 'Farmer', 15000.00, 1, 18000.00, 20000.00, 'Kalancheri', 'Thanjavur', '2409030016', '1', '2', 'upload_files/candidate_tracker/63206115183_RESUME2.docx', NULL, '1', '2024-09-03', 15, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-03 06:34:07', 104, '2024-09-03 07:07:07', 0, NULL, 1),
(21127, 'swetha', '6', '7550176806', '', 'karthickswetha215@gmail.com', '2001-08-10', 23, '2', '2', 'karthikeyan', 'turner business', 200000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2409030017', '50', '1', 'upload_files/candidate_tracker/39801574332_Sweupdatedresume.pdf', NULL, '1', '2024-09-03', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is good ,will check with her in the training and we can go for other process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-03 06:38:48', 104, '2024-09-03 04:52:44', 0, NULL, 1),
(21128, 'RAJAJI R', '6', '8220352543', '9597469420', 'smartarun400@gmail.com', '2003-11-10', 20, '2', '2', 'RADHAKRISHNAN', 'AGREE', 200000.00, 2, 15000.00, 18000.00, 'Villupuram', 'Villupuram', '2409030018', '1', '2', 'upload_files/candidate_tracker/50168267191_Rajaji1.docx', NULL, '1', '2024-09-03', 15, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-03 06:52:00', 104, '2024-09-03 04:50:12', 0, NULL, 1),
(21129, 'Prathiksha', '6', '7305930436', '9500067436', 'Prathiksha.2331@gmail.com', '2003-10-31', 20, '2', '2', 'K.sunderavadivell', 'Wellder', 20000.00, 1, 0.00, 20000.00, 'Chennai Anna Nagar', 'K6-tP.chathram police quarters', '2409030019', '23', '1', 'upload_files/candidate_tracker/8794275024_Resume4.pdf', NULL, '1', '2024-09-03', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is unfit for the sales profile, communication not good.reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-09-03 07:04:33', 104, '2024-09-03 04:49:44', 0, NULL, 1),
(21130, '', '0', '8608706134', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409030020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-03 07:07:20', 0, NULL, 0, NULL, 1),
(21131, 'K B Bharathi', '6', '9384740912', '', 'basubharathi1999@gmail.com', '2000-01-16', 24, '2', '2', 'M. Basuvaraj', 'Own business', 700000.00, 2, 21000.00, 25000.00, 'Hosur', 'Hongasandra', '2409030021', '57', '2', 'upload_files/candidate_tracker/62041337605_KBBharathi.pdf', NULL, '1', '2024-09-03', 0, '', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok Her Exp is high reviewing her profile can be checked for RM role too kindly check and let me know your inputs\n', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2024-09-03 07:43:51', 126, '2024-09-05 06:46:23', 0, NULL, 1),
(21132, 'Janani N', '6', '9600883610', '', 'jananin61@gmail.com', '2000-11-03', 23, '2', '2', 'NATARAJAN n', 'Weaver', 30000.00, 1, 21000.00, 20000.00, 'KANCHEEPURAM', 'KANCHEEPURAM', '2409030022', '50', '2', 'upload_files/candidate_tracker/4697348042_Jannu111.pdf', NULL, '1', '2024-09-04', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication and convincing skill is low and not suitable in sales ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-03 07:53:40', 104, '2024-09-04 04:00:22', 0, NULL, 1),
(21133, 'Veeramani E', '5', '8778816851', '', 'veeraa.kriss777@gmail.com', '1998-01-31', 26, '1', '2', 'Elangovan S', 'Farmer', 25000.00, 5, 26500.00, 30000.00, 'Ennore', 'Ennore', '2409030023', '', '2', 'upload_files/candidate_tracker/5256905429_CVfromVEERAMANI1.pdf', NULL, '1', '2024-09-03', 0, '5111', '3', '59', '2024-09-11', 345696.00, '', '4', '2024-09-17', '1', 'Communication Ok Have Exp in collection only Can give a try and check in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55656', '55557', '2024-09-11', 1, '2024-09-03 08:06:54', 60, '2024-09-10 07:19:35', 0, NULL, 1),
(21134, '', '0', '8778877117', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409030024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-03 08:06:55', 0, NULL, 0, NULL, 1),
(21135, 'Sneha velu', '5', '9361092955', '7401177367', 'snehavelu3@gmail.com', '2002-09-09', 21, '2', '2', 'Velu v', 'Driver', 10000.00, 1, 20000.00, 250000.00, 'Injambakkam', 'Neelangarai', '2409030025', '42', '2', 'upload_files/candidate_tracker/33638213370_SnehaV7.pdf', NULL, '1', '2024-09-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-03 08:25:14', 104, '2024-09-03 02:30:25', 0, NULL, 1),
(21136, 'Hari krishnan', '4', '9087572312', '', 'hari0272003@gmail.com', '2003-07-02', 21, '2', '2', 'Arumugam', 'A/c duct work', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409030026', '50', '1', 'upload_files/candidate_tracker/39907076463_HARIKRISHNANARESUME.pdf', NULL, '1', '2024-09-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-03 08:27:18', 1, '2024-09-03 08:35:30', 0, NULL, 1),
(21137, 'Rakesh k', '22', '7625014722', '9164895227', 'rakeshkmani123@gmail.com', '1999-09-16', 24, '2', '2', 'Keshavappa', 'Account', 50000.00, 1, 0.00, 20000.00, 'Hosadurga', 'Hosadurga', '2409030027', '57', '1', 'upload_files/candidate_tracker/19476660340_11zon.pdf', NULL, '1', '2024-09-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-03 09:10:26', 1, '2024-09-03 09:16:10', 0, NULL, 1),
(21138, '', '0', '8870896801', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409030028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-03 09:13:15', 0, NULL, 0, NULL, 1),
(21139, 'Prabu D', '5', '7904958202', '7871782576', 'gvprabu9@gmail.com', '1998-06-10', 26, '2', '2', 'Sumathi D', 'Home maker', 30000.00, 1, 415000.00, 550000.00, 'Tiruvannamalai', 'Ambattur chennai', '2409030029', '1', '2', 'upload_files/candidate_tracker/55446106416_PRABUDResume1723313703402Prabudevaraj.docx', NULL, '1', '2024-09-04', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-03 09:48:42', 104, '2024-09-04 04:52:16', 0, NULL, 1),
(21140, 'Deepika.N', '6', '9176191955', '9344968685', 'deepikanatarajan84@gmail.com', '2004-01-26', 20, '3', '2', 'Natarajan.S', 'electrician', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409030030', '', '1', 'upload_files/candidate_tracker/53562283805_N.Deepika.pdf', NULL, '1', '2024-09-03', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-03 09:58:51', 104, '2024-09-03 07:07:44', 0, NULL, 1),
(21141, 'Kaviya K', '6', '7358010595', '', 'kaviyakuppuswamy7@gmail.com', '2002-12-19', 21, '3', '2', 'Kuppusamy .E', 'Supervisor', 16000.00, 2, 0.00, 15000.00, 'Purasawalkam', 'Purasawalkam', '2409030031', '', '1', 'upload_files/candidate_tracker/67111732014_RESUMEKaviya.pdf', NULL, '1', '2024-09-03', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-03 10:10:22', 104, '2024-09-03 04:47:22', 0, NULL, 1),
(21142, 'Jeevitha U', '6', '8438288205', '', 'jeevithau0jeevithau@gmail.com', '2003-08-29', 21, '3', '1', 'Vicky', 'Account', 15000.00, 0, 0.00, 15000.00, 'Tondayarpet', 'Tondayarpet', '2409030032', '', '1', 'upload_files/candidate_tracker/53463190684_ResumeJeevitha.docx', NULL, '1', '2024-09-03', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-03 10:11:12', 104, '2024-09-03 04:46:25', 0, NULL, 1),
(21143, '', '0', '6380376172', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409030033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-03 10:42:37', 0, NULL, 0, NULL, 1),
(21144, '', '0', '7200426237', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409030034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-03 11:25:29', 0, NULL, 0, NULL, 1),
(21145, 'Vignesh', '5', '9791165987', '8015037948', 'vigneshvvickyv0@gmail.com', '2003-11-11', 20, '6', '2', 'M Venkatesan', 'Watchman', 12000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2409030035', '', '1', 'upload_files/candidate_tracker/92968796091_Vignesh1.pdf', NULL, '1', '2024-09-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-03 01:22:21', 1, '2024-09-03 01:29:30', 0, NULL, 1),
(21146, 'Kesavan K', '6', '7358292312', '', 'kesavankannan258@gmail.com', '2003-05-01', 21, '2', '2', 'P Kannan', 'Driver', 16000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2409030036', '1', '1', 'upload_files/candidate_tracker/54946020916_RESUME.pdf', NULL, '1', '2024-09-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for insurance sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-03 01:33:39', 104, '2024-09-04 04:06:59', 0, NULL, 1),
(21147, 'Komala R', '11', '6383066686', '', 'komalaramesh2001@gmail.com', '2001-09-02', 23, '4', '2', 'Ramesh. K, Amsa. R', 'Lorry driver', 12000.00, 0, 0.00, 25000.00, 'Vellore', 'Vellore', '2409040001', '', '1', 'upload_files/candidate_tracker/32437214969_komalaupdatedresume.pdf', NULL, '2', '2024-09-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-04 03:20:24', 1, '2024-09-04 03:22:40', 0, NULL, 1),
(21148, 'Kanimozhi', '11', '9360634425', '9677264837', 'p07436917@gmail.com', '2000-11-01', 23, '6', '2', 'Parent', 'Graduate', 45000.00, 1, 0.00, 15000.00, 'Pattabiram', 'Chennai', '2409040002', '', '1', 'upload_files/candidate_tracker/48796320630_Kanimozhiresume211.pdf', NULL, '1', '2024-09-04', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication not good. will not suitable for us', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-09-04 04:24:08', 104, '2024-09-05 09:38:13', 0, NULL, 1),
(21149, 'Hari Prasath G', '6', '8610350041', '', 'gphari10@gmail.com', '2002-10-01', 21, '3', '2', 'Sekar', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Trichy', 'West mambalam', '2409040003', '', '1', 'upload_files/candidate_tracker/33851108780_Hariprasathcv.pdf', NULL, '1', '2024-09-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-04 04:26:25', 104, '2024-09-04 05:00:44', 0, NULL, 1),
(21150, 'MOHAMED FAROOK', '6', '8124985755', '', 'kmohamedfarook464@gmail.com', '2002-11-25', 21, '2', '2', 'S.kaleelu Rahiman', 'Auto driver', 25000.00, 0, 0.00, 16000.00, 'Cuddalore', 'Guindy', '2409040004', '45', '1', 'upload_files/candidate_tracker/61401481300_Mohamedfarookk.pdf', NULL, '1', '2024-09-04', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communcation and performance is not fair.sustanable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-04 04:39:01', 104, '2024-09-04 04:05:49', 0, NULL, 1),
(21151, 'Ranjith Kumar R', '5', '8056225464', '9841753258', 'ranjithvijay813@gmail.com', '1995-07-13', 29, '2', '2', 'Ravindranath R', 'Chennai port', 30000.00, 2, 25000.00, 22000.00, 'Chennai', 'Chennai', '2409040005', '50', '2', 'upload_files/candidate_tracker/93868947030_RANJITHRESUME2.docx', NULL, '1', '2024-09-04', 0, '', '2', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Next round \nhold for some time due to pc manpower stopped', '5', '1', '', '1', '8', '', '2', '2024-11-06', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-09-04 05:06:35', 104, '2024-09-04 04:06:26', 0, NULL, 1),
(21152, 'sadham', '5', '8883572405', '', 'sadhamwalker@gmail.com', '1998-03-22', 26, '2', '2', 'nasar', 'business', 30000.00, 2, 26000.00, 32000.00, 'harur dharumapuri', 'kudlu gate bangalore', '2409040006', '57', '2', 'upload_files/candidate_tracker/67602486332_ResumeSadhamN.pdf', NULL, '1', '2024-09-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-04 05:26:48', 1, '2024-09-04 05:31:48', 0, NULL, 1),
(21153, '', '0', '6382848466', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409040007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-04 05:28:07', 0, NULL, 0, NULL, 1),
(21154, 'Iswarya M', '4', '8428757335', '8838862225', 'Iswarya0018@gmail.com', '1996-12-09', 27, '2', '2', 'Marimuthu P', 'Labour in provisional store', 20000.00, 1, 20.00, 25.00, 'Chennai', 'Chennai', '2409040008', '57', '2', 'upload_files/candidate_tracker/74368134973_ISWARYANEWRESUME1.pdf', NULL, '1', '2024-09-04', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'wontb suitable for sales ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-09-04 05:29:05', 104, '2024-09-04 04:11:50', 0, NULL, 1),
(21155, 'Shamitha Shri S', '11', '8056106393', '9840950393', 'shamitha.222001@gmail.com', '2001-08-22', 23, '6', '2', 'K.Sivakumar', 'Cement marketing', 45000.00, 2, 20000.00, 22000.00, 'No 3, Jayalakshmi puram main road Chennai', 'No 7 west mada Street, Nungambakkam, Chennai 34', '2409040009', '', '2', 'upload_files/candidate_tracker/26408856701_Shamithacv2.docx', NULL, '1', '2024-09-04', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability issue', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-09-04 05:30:08', 104, '2024-09-05 09:37:44', 0, NULL, 1),
(21156, 'Sneha', '6', '7411789485', '7353738866', 'achar2656@gmail.com', '2003-11-03', 20, '2', '2', 'Ravi', 'Own office', 100000.00, 1, 0.00, 3.00, 'Banshankari 6th stage', 'Banshankari 6th stage', '2409040010', '1', '1', 'upload_files/candidate_tracker/46991236366_CV20240816051931.pdf', NULL, '1', '2024-09-04', 0, '', '3', '59', '2024-09-19', 216000.00, '', '5', '1970-01-01', '1', 'Communicaiton Ok have 4 months exp with 22K fresher for our roles can be trained need to analyse in 7 days training', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-09-19', 1, '2024-09-04 05:30:08', 60, '2024-09-13 05:29:37', 0, NULL, 1),
(21157, 'SATHIYASEELAN C', '6', '9976764859', '', 'sathiyaseelan0603@gmail.com', '2003-06-16', 21, '2', '2', 'PACKIYALAKSHMI C', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'Karaikurichi (Ariyalur Dt)', 'Porur (Chennai)', '2409040011', '50', '1', 'upload_files/candidate_tracker/24945603777_SATHIYASEELANNIT.pdf', NULL, '1', '2024-09-06', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not so good at  interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-04 05:42:48', 104, '2024-09-06 06:15:47', 0, NULL, 1),
(21158, 'SRIRAM M', '6', '9384482449', '', 'sriramsriram7585@gmail.com', '2003-05-30', 21, '2', '2', 'Madhivanan k', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Porur', '2409040012', '50', '1', 'upload_files/candidate_tracker/88744455573_download2.pdf', NULL, '1', '2024-09-06', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate interested in voice process but communication and appearance level is low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-04 05:43:09', 104, '2024-09-06 06:29:59', 0, NULL, 1),
(21159, 'Senthilkumar. S', '6', '9626467569', '', 'Senthilkumar82126@gmail.com', '2002-08-15', 22, '2', '2', 'Suppaiya', 'Salesman', 10000.00, 1, 0.00, 17000.00, 'Kumbakonam', 'Porur', '2409040013', '50', '1', 'upload_files/candidate_tracker/83591936319_SENTHILKUMARRESUME1.pdf', NULL, '1', '2024-09-04', 0, '', '3', '59', '2024-09-09', 192000.00, '', '5', '1970-01-01', '2', 'Fresher Need to train a lot should analyse in 7 days and confirm Core IT profile sustainability doubts', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2024-09-09', 1, '2024-09-04 05:43:10', 60, '2024-09-04 06:06:23', 0, NULL, 1),
(21160, 'KAMALNATH D', '6', '6369905761', '', 'kamalnath09092003@gmail.com', '2003-09-09', 20, '2', '2', 'DHANARAJA N', 'FARMER', 6000.00, 1, 0.00, 17000.00, '436,Kalliyamman koil (st),meensurutti,Ariyalur(dt)', 'Porur', '2409040014', '50', '1', 'upload_files/candidate_tracker/35382535648_kamalnathDresume2.PDF.pdf.pdf', NULL, '1', '2024-09-06', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and voice not good and dress code also not well so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-04 05:43:39', 104, '2024-09-06 06:26:14', 0, NULL, 1),
(21161, 'Mohan Kumar M', '5', '8778463628', '8122109656', 'mohanmarkandayan212@gmail.com', '2000-02-21', 24, '2', '2', 'Markandayan T', 'Farmer', 15000.00, 1, 14500.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2409040015', '42', '2', 'upload_files/candidate_tracker/37566732557_MohankumarResume.pdf', NULL, '1', '2024-09-04', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-09-04 05:43:48', 104, '2024-09-04 04:10:54', 0, NULL, 1),
(21162, 'Manoj Kumar', '6', '9629940151', '', 'Manojsaravanaaaa@gmail.com', '2002-12-24', 21, '1', '2', 'Saravanan S', 'Businessman', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409040016', '', '1', 'upload_files/candidate_tracker/85997193579_MyResume.pdf', NULL, '1', '2024-09-04', 0, 'P1418', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Performance and communication is not good ,also like have some attitude person', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-04 05:43:48', 104, '2024-09-04 04:02:20', 0, NULL, 1),
(21163, 'Hemalatha T', '6', '9025154699', '', 'holhemalatha@gmail.com', '2001-04-15', 23, '2', '2', 'Banupriya', 'House wife', 35.00, 1, 0.00, 16.00, 'Villupuram', 'Aminjikarai', '2409040017', '50', '1', 'upload_files/candidate_tracker/11967187707_Hemalathacv.pdf', NULL, '1', '2024-09-04', 0, '', '3', '59', '2024-09-05', 192000.00, '', '3', '2024-09-21', '2', 'Communication OK have 4 months calling exp but no documents can give a try and check in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-09-05', 1, '2024-09-04 06:00:29', 60, '2024-09-09 06:56:30', 0, NULL, 1),
(21164, 'Praveen Kumar k', '5', '8825940530', '', 'praveenrab08@gmail.com', '1997-09-06', 26, '2', '2', 'Krishnamurthy', 'Fishing', 30000.00, 1, 20000.00, 40000.00, 'No 48/8 nadukuppam tiruvelacani', 'No 48/8 Nadukuppam Tiruvelacani', '2409040018', '50', '2', 'upload_files/candidate_tracker/61018182044_PRAVEENKUMARKRESUME.pdf', NULL, '1', '2024-09-04', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No proper communication,Low observation skill. Rejected the  candiadte.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55565', '55557', '1970-01-01', 1, '2024-09-04 06:11:32', 104, '2024-09-04 04:09:37', 0, NULL, 1),
(21165, '', '0', '7488482907', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409040019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-04 06:18:12', 0, NULL, 0, NULL, 1),
(21166, 'azarudeen malik s', '6', '9487943909', '9342079993', 'Azar.irving004@gmail.com', '2002-10-07', 21, '2', '2', 'shahul hameed a', 'driver', 12000.00, 1, 15000.00, 17000.00, 'tirunelveli', 'chennai', '2409040020', '1', '2', 'upload_files/candidate_tracker/86156772683_Resume.pdf', NULL, '1', '2024-09-05', 10, '', '3', '59', '2024-09-09', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok 2months exp can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '2024-09-09', 1, '2024-09-04 06:19:04', 60, '2024-09-06 05:26:24', 0, NULL, 1),
(21167, '', '0', '8015169176', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409040021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-04 06:37:35', 0, NULL, 0, NULL, 1),
(21168, 'K Gayathri krishnan', '5', '9176453142', '9094406760', 'gayathripapa20@gmail.com', '2000-01-14', 24, '2', '2', 'U Krishnan', 'College professor', 30000.00, 1, 26000.00, 26000.00, 'Chennai', 'Villivakkam Chennai', '2409040022', '1', '2', 'upload_files/candidate_tracker/51695114875_CV2024061209091835.pdf', NULL, '1', '2024-09-04', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'dont have exp in sales\nnot fit for rm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55656', '55557', '1970-01-01', 1, '2024-09-04 07:02:57', 104, '2024-09-04 05:01:51', 0, NULL, 1),
(21169, 'Basil Thankachan', '5', '8589923448', '', 'basil.p.d.s.t@gmail.com', '2000-02-09', 24, '2', '2', 'Thankachan. P. V', 'Farmer', 30000.00, 1, 22000.00, 22000.00, 'Kerala, idukki, Adimali', 'BTM 2ND STAGE 27TH MAIN', '2409040023', '57', '2', 'upload_files/candidate_tracker/42772417904_CV202407161941472.pdf', NULL, '1', '2024-09-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-04 07:40:38', 1, '2024-09-04 07:50:07', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21170, 'Anjima Ramesh', '5', '9995714034', '', 'anjimaima161@gmail.com', '1999-09-03', 25, '2', '2', 'Ramesh', 'Business', 30000.00, 1, 0.00, 22000.00, 'Kerala, kannur, Thalassery', 'Btm 2nd stage', '2409040024', '', '2', 'upload_files/candidate_tracker/34648936625_CV2024071609123035.pdf', NULL, '1', '2024-09-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-04 07:40:39', 1, '2024-09-04 07:53:41', 0, NULL, 1),
(21171, 'Shuaib Abbas', '5', '9944925472', '', 'ksashuaib@gmail.com', '1997-05-21', 27, '2', '2', 'Liyaz Ali', 'Businessman', 250000.00, 3, 18000.00, 28000.00, '27A pattani Moosa Miyan St Ambur', 'Palavakkam,Chennai', '2409040025', '57', '2', 'upload_files/candidate_tracker/25317130784_SHUAIBABBASCV2024.pdf', NULL, '1', '2024-09-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-04 07:48:44', 1, '2024-09-04 07:53:52', 0, NULL, 1),
(21172, 'Sharmila priya', '6', '6379087292', '7550356024', 'sharmilapriya2111@gmail.com', '2000-11-21', 23, '2', '2', 'Arthanari', 'Driver', 14000.00, 1, 15000.00, 17000.00, 'Salem', 'Chennai', '2409040026', '50', '2', 'upload_files/candidate_tracker/44443460972_SHARMILAPRIYA.AFlowCVResume202405245.pdf', NULL, '1', '2024-09-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, pls check with sustainability bcz previously she salary 16k some thing but now am offering 14k to 15k but she said ok. pls check and confirm the joining too.thanks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-09-04 08:41:37', 104, '2024-09-06 06:30:56', 0, NULL, 1),
(21173, 'Mohamed usman', '6', '6382694203', '9840798499', '98mohamedusman@gmail.com', '1997-05-15', 27, '2', '2', 'Abdul gani', 'Driver', 20000.00, 2, 0.00, 20000.00, '16,burma colony new Washermenpet chennai 600081', '51,guruvappa mestri street chennai 600023', '2409040027', '1', '1', 'upload_files/candidate_tracker/38360863517_cv11725434907815.pdf', NULL, '1', '2024-09-04', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is unfit for the sales profile, communication not good.reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2024-09-04 09:18:17', 104, '2024-09-04 04:00:54', 0, NULL, 1),
(21174, '', '0', '9900827803', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409040028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-04 01:08:30', 0, NULL, 0, NULL, 1),
(21175, 'anupriya george', '5', '8489377790', '6383622587', 'anupriyageorge1002@gmail.com', '2003-02-27', 21, '2', '2', 'george', 'driver', 20000.00, 1, 18000.00, 25000.00, 'chennai', 'chennai', '2409040029', '1', '2', 'upload_files/candidate_tracker/63989025229_NaukriAnuPriyaGeorge1y0m1.pdf', NULL, '1', '2024-09-17', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', 'H1018', '', '55824', '55560', '1970-01-01', 1, '2024-09-04 06:27:00', 104, '2024-09-17 05:58:55', 0, NULL, 1),
(21176, 'Mathiarasan S', '6', '6382623472', '8754783472', 'mathiarasan64@gmail.com', '2001-02-01', 23, '2', '2', 'Surenthiran.J', 'Farmer', 8000.00, 0, 0.00, 220000.00, 'Thoothukudi', 'Chennai', '2409040030', '1', '1', 'upload_files/candidate_tracker/76408996048_mathiarasan5.pdf', NULL, '1', '2024-09-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-04 07:17:24', 104, '2024-09-05 01:32:42', 0, NULL, 1),
(21177, 'Sivamani.s', '6', '6382715361', '', 'siva20401@gmail.com', '2000-05-23', 24, '2', '2', 'Seenuvasan', 'Farmer', 8000.00, 1, 0.00, 250000.00, 'Kallakurichi', 'Guduvanchery', '2409050001', '1', '1', 'upload_files/candidate_tracker/83964780201_MyCV.pdf', NULL, '1', '2024-09-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not much aware in sales and basic information', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-09-05 04:41:00', 104, '2024-09-10 04:15:50', 0, NULL, 1),
(21178, 'Chethan Mahadev', '17', '9731143566', '9008136174', 'chethanmahadev012@gmail.com', '2002-03-22', 22, '2', '2', 'Mother and Father', 'Printing Press', 35000.00, 0, 15500.00, 20000.00, 'Bengaluru', 'Bengaluru', '2409050002', '57', '2', 'upload_files/candidate_tracker/41938907552_ChethanM3.pdf', NULL, '3', '2024-09-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-05 04:45:14', 1, '2024-09-05 04:49:02', 0, NULL, 1),
(21179, 'Lakshana sre', '11', '9342324411', '', 'lakshanasre1999@gmail.com', '1999-07-08', 25, '6', '1', 'Vignesh', 'Advocate', 50000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2409050003', '', '1', 'upload_files/candidate_tracker/4713116889_LAKSHANARESUME.pdf', NULL, '1', '2024-09-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-05 05:27:26', 104, '2024-09-10 04:29:42', 0, NULL, 1),
(21180, 'Shanmugam A', '6', '7904577471', '9514220052', 'shanmugamanand715@gmail.com', '2001-01-09', 23, '2', '2', 'Anandhan', 'Taking care of shop', 35000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2409050004', '1', '2', 'upload_files/candidate_tracker/68684730244_Shanmugam2.pdf', NULL, '1', '2024-09-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate performance xxamp communication is good,Also Have experiance in Other sales industry.Will check with him in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-09-05 05:34:01', 104, '2024-09-09 03:31:28', 0, NULL, 1),
(21181, 'Kavya.k', '6', '7760128007', '', 'kavyakkav355@gmail.com', '2002-04-07', 22, '2', '2', 'Rani mother', 'Flower seller', 200000.00, 3, 0.00, 20000.00, 'Madiwala Bangalore -68', 'Madiwala', '2409050005', '57', '1', 'upload_files/candidate_tracker/58340413798_ResumeJFormat1.pdf', NULL, '1', '2024-09-05', 0, '', '3', '59', '2024-09-12', 228000.00, '', '3', '2024-11-30', '2', 'Communication Ok Can give a try and check in 7 days training and confirm sustainability doubts a lot', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '2024-09-12', 1, '2024-09-05 05:48:41', 126, '2024-09-13 02:09:00', 0, NULL, 1),
(21182, 'Jeeva S', '6', '9751377196', '6384815897', 'jeevasakthivel022@gmail.com', '2003-02-27', 21, '3', '2', 'Sakthivel', 'Coolie', 15000.00, 2, 0.00, 300000.00, 'Tiruvannamalai', 'Royapuram, Chennai', '2409050006', '', '1', 'upload_files/candidate_tracker/6311811800_Jeeva2024Resume.docx', NULL, '1', '2024-09-05', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication and convincing skill is low and not interested in field work ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-05 06:17:06', 104, '2024-09-05 03:38:00', 0, NULL, 1),
(21183, 'Dharween S', '6', '9791019362', '9150355075', 'dharweensri4@gmail.com', '2001-05-12', 23, '2', '2', 'S sumathi', 'Stationary shop', 8000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2409050007', '50', '1', 'upload_files/candidate_tracker/13299587587_Dharweennew.pdf', NULL, '1', '2024-09-05', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very silent person', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-05 06:20:31', 104, '2024-09-05 03:38:21', 0, NULL, 1),
(21184, 'Naresh', '6', '9345819395', '9150355075', 'nareshpraba2k@gmail.com', '2000-03-25', 24, '2', '2', 'Prabakaran', 'Former', 10000.00, 1, 0.00, 18000.00, 'Poonamalle', 'Poonamalle', '2409050008', '50', '1', 'upload_files/candidate_tracker/6921625528_NareshresumeDM.pdf', NULL, '1', '2024-09-05', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no  basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-05 06:21:24', 104, '2024-09-05 03:38:45', 0, NULL, 1),
(21185, 'Hari Krishnan', '6', '9176676486', '9042472836', 'krish211312@gmail.com', '2000-10-21', 23, '2', '2', 'Ramanathan', 'Scraps business', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2409050009', '50', '1', 'upload_files/candidate_tracker/59928724384_HariKrishnanResume184.pdf', NULL, '1', '2024-09-06', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate performance is not good also his communication level is low and he did not spoked much more in interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-05 06:30:09', 104, '2024-09-06 06:25:37', 0, NULL, 1),
(21186, 'Dharmaraj S', '6', '9884650250', '', 'dharmaraj0815@gmail.com', '2003-08-15', 21, '2', '2', 'Mother', 'Housekeeping', 25000.00, 3, 0.00, 15000.00, 'Adyar Chennai', 'Adyar Chennai', '2409050010', '50', '1', 'upload_files/candidate_tracker/30447881310_DharmarajS.pdf', NULL, '1', '2024-09-12', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'silent person and no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-05 06:31:48', 104, '2024-09-12 04:46:39', 0, NULL, 1),
(21187, 'JANAKIRAMAN S', '6', '6383139906', '6382715361', 'janakiramansca@nct.ac.in', '2000-11-03', 23, '2', '2', 'Subramaniyan', 'Farmer', 20000.00, 1, 0.00, 250000.00, 'Kallakurichi', 'Guduvanchery', '2409050011', '1', '1', 'upload_files/candidate_tracker/15027662801_MyCV.pdf', NULL, '1', '2024-09-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'too much of attitude and worth for that salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-09-05 06:41:22', 104, '2024-09-10 04:15:33', 0, NULL, 1),
(21188, 'Ashish Tiwari', '5', '8726306288', '', 'at8473@gmail.com', '1988-07-05', 36, '2', '1', 'Chandrashekhar', 'retired person', 50000.00, 2, 450000.00, 600000.00, 'Bangalore', 'Bangalore', '2409050012', '1', '2', 'upload_files/candidate_tracker/57535757526_Document.docx', NULL, '1', '2024-09-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-09-05 06:53:30', 1, '2024-09-05 08:19:20', 0, NULL, 1),
(21189, 'Veeresh c', '30', '9916401442', '9901504109', 'veershiva171@gmail.com', '1998-10-25', 25, '2', '2', 'Siddappa c', 'Farmar', 30000.00, 4, 0.00, 25000.00, 'Bengaluru', 'Bengaluru', '2409050013', '57', '1', 'upload_files/candidate_tracker/65323832232_ve.resume.pdf', NULL, '1', '2024-09-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '9', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-05 08:37:47', 1, '2024-09-05 08:55:20', 0, NULL, 1),
(21190, 'monisha r', '5', '7397345374', '', 'monishamonisha@gmail.com', '1997-08-06', 27, '2', '2', 'parents', 'bussiness', 40000.00, 2, 27000.00, 27000.00, 'perambur', 'perambur', '2409050014', '1', '2', 'upload_files/candidate_tracker/96428783262_MonishaResume.docx', NULL, '1', '2024-09-05', 0, '', '3', '59', '2024-09-16', 370000.00, '', '5', '1970-01-01', '2', 'Communication Good Documents verified can give a try and train in our role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', '55656', '55557', '2024-09-16', 1, '2024-09-05 08:47:34', 60, '2024-09-10 07:17:57', 0, NULL, 1),
(21191, '', '0', '8667871048', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409050015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-05 08:59:53', 0, NULL, 0, NULL, 1),
(21192, 'Muthuraja N', '6', '7708077138', '', 'rajapnk73@gmail.com', '2003-07-31', 21, '4', '2', 'Jeya', 'House wife', 5000.00, 2, 0.00, 20000.00, 'Tuticorin', 'Chennai', '2409050016', '', '1', 'upload_files/candidate_tracker/19082756886_DOC20240807WA0036..pdf', NULL, '1', '2024-09-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'job needed person lets try 7 days and confirm ctc 16k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-05 09:27:07', 104, '2024-09-05 04:34:02', 0, NULL, 1),
(21193, '', '0', '9901504109', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409050017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-05 09:29:27', 0, NULL, 0, NULL, 1),
(21194, 'Mugesh S', '6', '7598399328', '9363365271', 'Mugeshs876@gmail.com', '2002-06-26', 22, '3', '2', 'Sathish kumar', 'Framer', 72000.00, 0, 0.00, 15000.00, 'Thoothukudi', 'Chennai', '2409050018', '', '1', 'upload_files/candidate_tracker/11267692853_CV2024061721180440.pdf', NULL, '1', '2024-09-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Apperance was not good and his slang ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-05 11:01:33', 104, '2024-09-05 05:07:25', 0, NULL, 1),
(21195, 'Nalciba M', '6', '9342151335', '7010753676', 'nalciba72@gmail.com', '2002-05-03', 22, '2', '2', 'Manika Wilson C', 'Cooking Master', 20000.00, 2, 15000.00, 20000.00, '8/57,south Therivali , Puthalam, kanniyakumari', '245 patil street, Thirumullaivoyal, Chennai', '2409050019', '1', '2', 'upload_files/candidate_tracker/49711205512_188499765360585.pdf', NULL, '1', '2024-09-06', 2, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not intrested in insurance sales job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-09-05 12:36:15', 104, '2024-09-06 06:29:07', 0, NULL, 1),
(21196, 'Kavitha E', '6', '8056229146', '9176876890', 'kavithae613@gmail.com', '2002-07-31', 22, '2', '2', 'Ethiraj', 'Auto Driver', 1.60, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2409050020', '1', '2', 'upload_files/candidate_tracker/41457198459_CV2024.pdf', NULL, '1', '2024-09-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-09-05 12:40:58', 104, '2024-09-09 10:28:11', 0, NULL, 1),
(21197, 'Sangeetha A', '4', '9345408022', '8098525927', 'sangeema1216@gmail.com', '1998-06-12', 26, '2', '2', 'Aandi', 'Farmer', 300000.00, 1, 15000.00, 26000.00, 'Chennai', 'Chennai', '2409050021', '1', '2', 'upload_files/candidate_tracker/44183354409_DOC20240718WA0016..pdf', NULL, '1', '2024-09-06', 0, '', '3', '59', '2024-09-18', 270000.00, '', '5', '1970-01-01', '2', 'Communication Good Can be trained in our roles good in confidence need to check in 7 days', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55824', '55560', '2024-09-18', 1, '2024-09-05 12:49:32', 60, '2024-09-17 06:53:24', 0, NULL, 1),
(21198, '', '0', '9361170320', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409050022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-05 12:52:29', 0, NULL, 0, NULL, 1),
(21199, 'Jayashree', '6', '8778001107', '', 'srinivasanjayashree15@gmail.com', '2002-01-15', 22, '2', '2', 'Srinivasan', 'Building contractor', 50000.00, 3, 17000.00, 20000.00, 'Chennai', 'Chennai', '2409050023', '50', '2', 'upload_files/candidate_tracker/29778503551_jayashree.pdf', NULL, '1', '2024-09-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'well settled family and she is not handle the pressure,not even try to speak', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-05 01:12:14', 104, '2024-09-06 06:29:42', 0, NULL, 1),
(21200, 'R.MANIGANDAMURTHI', '6', '8524994880', '7358514880', 'r.manimurthi34@gmail.com', '2001-04-03', 23, '2', '2', 'M.RAJASEKAR', 'Business', 20000.00, 1, 0.00, 17000.00, '3/165, Nakkeran street, Mogappair East,chennnai-37', '3/165, Nakkeran Street, Mogappair East,Chennnai-37', '2409060001', '57', '1', 'upload_files/candidate_tracker/44923268088_Manigandamurthi2.pdf', NULL, '1', '2024-09-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales too slow', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-06 04:10:40', 104, '2024-09-06 06:28:26', 0, NULL, 1),
(21201, 'A. Nisha', '6', '7092532046', '7200690466', 'Nishalisha932004@Gmail.com', '2004-03-09', 20, '1', '2', 'P. Arivazhagan', 'Car Driver', 25000.00, 1, 0.00, 15000.00, 'No:18/B 4th palla street Vyasarpadi chennai 600039', 'No:18/B 4th Palla Street Vyasarpadi Chennai 600039', '2409060002', '', '1', 'upload_files/candidate_tracker/76101253790_DocScannerSep22024939PM.pdf', NULL, '1', '2024-09-06', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-06 04:28:30', 104, '2024-09-06 10:16:26', 0, NULL, 1),
(21202, 'raghul', '5', '7397365900', '8939462088', 'raghulsakthi155@gmail.com', '1996-08-24', 28, '2', '2', 'sakthivel', 'business', 35000.00, 2, 33000.00, 38000.00, 'chooliamedu', 'chooliamedu', '2409060003', '1', '2', 'upload_files/candidate_tracker/61007557772_RaghulBio.pdf', NULL, '1', '2024-09-06', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Hold beacuse of our Internal Issues', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55565', '55557', '1970-01-01', 1, '2024-09-06 05:13:39', 104, '2024-09-06 06:19:40', 0, NULL, 1),
(21203, 'Ajith.T', '6', '8072120091', '7200559268', 'ajithh686@gmail.com', '2000-06-01', 24, '2', '2', 'M.Thombaran', 'MBA', 1.00, 1, 0.00, 18000.00, 'Panjetty', 'Panjetty', '2409060004', '42', '2', 'upload_files/candidate_tracker/47984878104_ajithresume.pdf', NULL, '1', '2024-09-06', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is very long distance but communication and voice also good , but distance is not ok so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-06 05:14:59', 104, '2024-09-06 06:27:48', 0, NULL, 1),
(21204, 'Lalitha Gopi', '6', '8925132027', '', 'laligopi20@gmail.com', '2004-04-20', 20, '2', '2', 'Gopi.M.s', 'Sales man', 12000.00, 1, 0.00, 18000.00, 'West saidapet,Chennai', 'West saidapet,Chennai', '2409060005', '45', '1', 'upload_files/candidate_tracker/12148894593_LALITHARESUME.docx', NULL, '1', '2024-09-06', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not have interest in sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-06 05:17:25', 104, '2024-09-06 06:18:29', 0, NULL, 1),
(21205, 'Susmitha.R', '6', '9840343829', '', 'susirs1418@gmail.com', '2003-08-18', 21, '2', '2', 'Keerthika.R', 'Document Excutive', 15000.00, 1, 0.00, 18000.00, 'Saidapet,Chennai', 'Saidapet,Chennai', '2409060006', '45', '1', 'upload_files/candidate_tracker/48466303083_SusmithaResume03.docx', NULL, '1', '2024-09-06', 0, '', '3', '59', '2024-09-09', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok can give a try and check based on the managers approval provided CTC', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-09-09', 1, '2024-09-06 05:17:29', 104, '2024-09-06 06:31:19', 0, NULL, 1),
(21206, 'VISAKH J PILLAI', '6', '6378162368', '9950277159', 'visakhpillai56@gmail.com', '1996-12-09', 27, '2', '2', 'FATHER - Jayakumar p n', 'Sole proprietorship', 80000.00, 1, 0.00, 30000.00, 'Jodhpur , rajasthan', 'Madivala , Bangalore', '2409060007', '57', '1', 'upload_files/candidate_tracker/9901009785_CV3.pdf', NULL, '1', '2024-09-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good ,should check for RM role Final round Reject', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2024-09-06 05:27:57', 126, '2024-09-09 02:48:00', 0, NULL, 1),
(21207, 'Balaji V', '6', '6385142553', '9841301806', 'balaji88balaji88@gmail.com', '2002-08-08', 22, '2', '2', 'P.Venkatesh', 'Camera Mechanic', 15000.00, 1, 13000.00, 16000.00, 'Chennai', 'Chennai', '2409060008', '50', '2', 'upload_files/candidate_tracker/29431643843_balajiresume11.pdf', NULL, '1', '2024-09-06', 0, '', '3', '59', '2024-09-12', 195000.00, '', '5', '1970-01-01', '1', 'Communication Ok can give a try and check in 7 days 3 months exp in telesales can be trained', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '2024-09-12', 1, '2024-09-06 05:50:51', 60, '2024-09-09 07:14:56', 0, NULL, 1),
(21208, 'Vincent Abraham', '5', '7395981322', '9940108807', 'vincentvj1234@gmail.com', '1997-02-24', 27, '2', '2', 'Yesamma', 'Housewife', 20000.00, 1, 28000.00, 35000.00, 'Chennai', 'Chennai', '2409060009', '1', '2', 'upload_files/candidate_tracker/88879851553_VincentCV1.pdf', NULL, '1', '2024-09-06', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Low convenience skill.expecting more salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55565', '55557', '1970-01-01', 1, '2024-09-06 06:31:19', 104, '2024-09-06 06:20:15', 0, NULL, 1),
(21209, '', '0', '6379248093', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409060010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-06 06:32:07', 0, NULL, 0, NULL, 1),
(21210, '', '0', '9361712959', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-06 06:32:48', 0, NULL, 0, NULL, 1),
(21211, 'Manikonda Raghava', '5', '9381261181', '9505073947', 'raghavachowdarymanikonda@gmail.com', '1999-06-17', 25, '2', '2', 'Manikonda venkatarathnam', 'Farmer', 20000.00, 1, 350000.00, 450000.00, 'Andhra Pradesh', 'Chennai valechery', '2409060012', '1', '2', 'upload_files/candidate_tracker/35101256791_Raghavalatestresume.pdf', NULL, '1', '2024-09-06', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Struggling with tamil language so not fit for our sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55634', '55557', '1970-01-01', 1, '2024-09-06 06:35:46', 104, '2024-09-09 10:28:01', 0, NULL, 1),
(21212, 'Athira Binu', '5', '9061746442', '', 'binuathira442@gmail.com', '2002-03-13', 22, '2', '2', 'Binu NG', 'Farmer', 50000.00, 1, 23000.00, 23000.00, 'Bengaluru', 'Bengaluru', '2409060013', '57', '2', 'upload_files/candidate_tracker/48504774851_DOC20240411WA0005..pdf', NULL, '1', '2024-09-06', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-06 07:09:18', 1, '2024-09-06 07:12:54', 0, NULL, 1),
(21213, 'Tanya', '22', '7010282078', '', 'tanyagilbert861@gmail.com', '2004-03-17', 20, '3', '2', 'Annie Sangeetha', 'Tailor', 12000.00, 1, 0.00, 25000.00, 'Tondiarpet', 'Kodungaiyur, Chennai', '2409060014', '', '1', 'upload_files/candidate_tracker/75702070281_GoldMinimalistProfessionalWorkDataAnalystFriendlyResume202408202109590000.pdf', NULL, '1', '2024-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-06 07:19:29', 1, '2024-09-06 07:23:27', 0, NULL, 1),
(21214, 'Ashwini M', '6', '7824025578', '8220582783', 'ashwinibsccs00@gmail.com', '2003-08-05', 21, '2', '2', 'Murasoli J', 'Unemployed', 20000.00, 0, 16000.00, 18000.00, 'Ambattur', 'Ambattur', '2409060015', '42', '2', 'upload_files/candidate_tracker/57139564211_ASHWINIRESUME3.pdf', NULL, '1', '2024-09-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales ', '5', '1', '', '1', '8', '', '2', '2024-09-09', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-06 07:29:33', 104, '2024-09-06 06:25:03', 0, NULL, 1),
(21215, 'Daniel Anand Premraj', '11', '9894981732', '', 'danamando22@gmail.com', '1999-02-17', 25, '6', '2', 'NA', 'NA', 50000.00, 1, 0.00, 2.00, 'Hosur', 'Hosur', '2409060016', '', '1', 'upload_files/candidate_tracker/10143544276_DanielAnandPremrajResume.pdf', NULL, '1', '2024-09-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-06 07:35:22', 104, '2024-09-06 06:25:13', 0, NULL, 1),
(21216, 'SASIKALA A', '4', '7449066670', '9962020366', 'sasikalaanbu94@gmail.com', '1994-02-01', 30, '2', '1', 'ANBAZHAGAN', 'Labour', 15000.00, 1, 25000.00, 30000.00, 'Royapuram', 'Royapuram', '2409060017', '50', '2', 'upload_files/candidate_tracker/83321972300_joboriginal.pdf', NULL, '1', '2024-09-06', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability problem .\nchanged the companys frequently .\nwont suitable for calling', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-09-06 08:01:11', 104, '2024-09-06 06:25:53', 0, NULL, 1),
(21217, 'sujith', '11', '9962125801', '8428716676', 'sujithanandkumar@gmail.com', '1998-11-25', 25, '3', '2', 'anandkumar', 'hr executive', 35000.00, 1, 325000.00, 350000.00, 'chennai maduravoyal', 'chennai maduravoyal', '2409060018', '', '2', 'upload_files/candidate_tracker/849514313_SujithAnandkumarHRRecruiterResume.pdf', NULL, '1', '2024-09-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-06 09:20:48', 104, '2024-09-06 06:27:06', 0, NULL, 1),
(21218, 'Sujitha k', '6', '9789075215', '', 'suji22914@gmail.com', '2004-08-12', 20, '2', '2', 'Kannan E', 'No', 12000.00, 1, 9000.00, 17000.00, 'Perambur', 'Perambur', '2409060019', '57', '1', 'upload_files/candidate_tracker/83278115085_SUJITHA2.pdf', NULL, '1', '2024-09-09', 2, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-06 10:28:31', 104, '2024-09-09 02:56:39', 0, NULL, 1),
(21219, 'Priyadarshini R', '6', '7603933552', '', 'dharshinichandru2003@gmail.com', '2003-07-05', 21, '2', '2', 'Raja S', 'No', 12000.00, 1, 9000.00, 17000.00, 'Perambur', 'Perambur', '2409060020', '57', '1', 'upload_files/candidate_tracker/10997984119_Priyadarshini.Rresume.pdf', NULL, '1', '2024-09-09', 2, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-06 11:20:12', 104, '2024-09-09 03:33:21', 0, NULL, 1),
(21220, 'shashikala paragond', '6', '8088638377', '', 'shashikalaparagond8377@gmail.com', '1999-01-07', 25, '2', '2', 'empegouda paragond', 'vent planner', 100000.00, 1, 0.00, 2.75, 'angalore', 'angalore', '2409060021', '1', '1', 'upload_files/candidate_tracker/31930053050_shashikala12.pdf', NULL, '1', '2024-09-09', 0, '', '3', '59', '2024-09-16', 204000.00, '', '3', '2024-09-18', '1', 'Communication Ok Fresher for our roles can give a try and check in 7 days analysis she was a dental surgeon moving into sales positions', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-09-16', 1, '2024-09-06 04:35:26', 126, '2024-09-17 06:00:18', 0, NULL, 1),
(21221, '', '0', '6382969200', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409080001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-08 01:36:21', 0, NULL, 0, NULL, 1),
(21222, 'Sarumathi P', '6', '6369342169', '9629584077', 'sarumathipandi@gmail.com', '2002-12-20', 21, '2', '2', 'Pandi P', 'Abroad', 25000.00, 1, 0.00, 15000.00, 'Paramakudi', 'Poonamalle, Chennai', '2409080002', '1', '1', 'upload_files/candidate_tracker/55520051217_SarumathisResumewithoutinternship1.pdf', NULL, '1', '2024-09-10', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is good but she is interested in customer support  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-08 02:38:20', 104, '2024-09-10 05:17:52', 0, NULL, 1),
(21223, 'Ch Venkata sudheer Kumar', '5', '6361481005', '9618301945', 'chvenkatasudheerk@gmail.com', '2002-02-13', 22, '2', '2', 'Prabhakar', 'Formar', 10000.00, 1, 0.00, 30000.00, 'Bangalore', 'Pajerla village pakadam dt', '2409090001', '1', '1', 'upload_files/candidate_tracker/12203509312_sudheerresume.docx', NULL, '3', '2024-09-09', 0, '', '3', '59', '2024-09-19', 240000.00, '', '3', '2024-09-25', '1', 'Ok profile Can give a try and check in 7 days analysis', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1022', '', '55555', '5151', '2024-09-19', 1, '2024-09-09 01:47:48', 60, '2024-09-17 03:42:27', 0, NULL, 1),
(21224, '', '0', '7305188076', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409090002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-09 01:49:55', 0, NULL, 0, NULL, 1),
(21225, 'Gowtham', '2', '9345699347', '', 'gowthams2962@gmail.com', '2009-09-09', 0, '3', '2', 'Srinivasan perumal', 'Private shop', 40000.00, 1, 0.00, 400000.00, 'No.27 Netaji road Velachery chennai', 'No.27 Netaji road Velachery chennai', '2409090003', '', '1', 'upload_files/candidate_tracker/46822295357_resume4016.pdf', NULL, '1', '2024-09-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 05:02:04', 1, '2024-09-09 05:04:43', 0, NULL, 1),
(21226, 'someshwaran s', '13', '9442643601', '9443643601', 'sssomeshhh@gmail.com', '2000-01-12', 24, '6', '2', 'segar k s', 'retired', 45000.00, 1, 0.00, 300000.00, 'karaikal', 'chennai', '2409090004', '', '1', 'upload_files/candidate_tracker/3969914398_Resume.pdf', NULL, '1', '2024-09-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 05:03:31', 1, '2024-09-09 05:07:10', 0, NULL, 1),
(21227, 'ARUN RAJA K', '13', '6374642502', '', 'arunrajasundar@gmail.com', '2001-12-15', 22, '3', '2', 'A KALYANA SUNDARAM', 'FARMER', 20000.00, 1, 0.00, 200000.00, 'Tirunelveli', 'Chennai', '2409090005', '', '1', 'upload_files/candidate_tracker/13334462670_ARUNRAJAK2.pdf', NULL, '1', '2024-09-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 05:03:31', 1, '2024-09-09 05:08:48', 0, NULL, 1),
(21228, 'Ravi Raghul.M', '6', '7695925722', '', 'raghulravi2210@gmail.com', '1998-10-22', 25, '2', '2', 'D . Mohan', 'Printing press', 6000.00, 1, 0.00, 18000.00, 'Villupuram', 'Chennai', '2409090006', '50', '1', 'upload_files/candidate_tracker/53158685403_RaghulResume1.pdf', NULL, '1', '2024-09-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-09 05:20:04', 104, '2024-09-09 02:57:07', 0, NULL, 1),
(21229, 'Thasira Parveen T', '6', '6379373346', '', 'thasiraparveen05@gmail.com', '2003-05-29', 21, '1', '2', 'Thasthakeer N', 'Farmer', 10000.00, 1, 0.00, 1.80, 'Ramanathapuram', 'Chennai', '2409090007', '', '1', 'upload_files/candidate_tracker/71846968107_webdeveloperresumeThasiraParveenT.pdf', NULL, '1', '2024-09-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SELECTED -lets try for 7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-09 05:33:03', 104, '2024-09-09 03:31:53', 0, NULL, 1),
(21230, 'Rafia Fathima A', '6', '7806897585', '', 'rafiafathima26@gmail.com', '2002-08-16', 22, '2', '2', 'Asghar Khan', 'Lawyer', 40000.00, 1, 0.00, 17000.00, 'Pattabiram', 'Avadi', '2409090008', '57', '1', 'upload_files/candidate_tracker/53633322471_RafiaFathimaCV.pdf', NULL, '1', '2024-09-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-09 05:33:43', 104, '2024-09-09 02:35:47', 0, NULL, 1),
(21231, 'Mariselvam K', '2', '9150339868', '', 'mariselvamk22601@gmail.com', '2001-06-22', 23, '6', '2', 'Karuppasamy K', 'Information Technology', 15000.00, 3, 0.00, 15000.00, 'Virudhunagar', 'Chennai', '2409090009', '', '1', 'upload_files/candidate_tracker/13462336329_MariselvamK.pdf', NULL, '1', '2024-09-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-09 05:35:03', 104, '2024-09-09 12:28:05', 0, NULL, 1),
(21232, 'm mahalakshmi', '4', '6380059323', '9176663224', 'mahalakshmimunian51099@gmail.com', '1999-10-05', 24, '2', '2', 'A.munian', 'Car driver', 10000.00, 2, 12000.00, 20000.00, 'chennai', 'chennai', '2409090010', '50', '2', 'upload_files/candidate_tracker/49565617983_CV20240713211642205.pdf', NULL, '1', '2024-09-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 05:38:38', 1, '2024-09-09 05:54:36', 0, NULL, 1),
(21233, 'Malli Karjuna', '5', '8961396389', '8951396389', 'mallikarjuna96795@gmail.com', '2000-08-12', 24, '2', '2', 'Pampapathi m', 'Famer', 10000.00, 2, 0.00, 25000.00, 'Bellari', 'Bengalure', '2409090011', '57', '1', 'upload_files/candidate_tracker/7489888474_mallikarjunresume.pdf', NULL, '1', '2024-09-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 05:39:09', 1, '2024-09-09 05:45:26', 0, NULL, 1),
(21234, 'Surya S', '6', '9150707148', '', 'sankarsurya529@gmail.com', '2001-06-01', 23, '2', '2', 'Sankar', 'Cooli', 20000.00, 2, 20000.00, 20000.00, 'Tiruvannamalai Tamil Nadu', 'Garvebavi palya Bangalore', '2409090012', '1', '2', 'upload_files/candidate_tracker/71653022034_ModernMinimalistCVResume13pages.pdf', NULL, '1', '2024-09-09', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of confident', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-09-09 05:39:15', 126, '2024-09-09 05:34:13', 0, NULL, 1),
(21235, 'Pavithra.V', '6', '9360367677', '9345481963', 'Pavivenkat115@gmail.com', '2001-09-25', 22, '2', '2', 'Venkatesan.M', 'Agriculture department driver', 25000.00, 1, 0.00, 20000.00, 'Thieuvallur', 'Avadi', '2409090013', '57', '1', 'upload_files/candidate_tracker/72349199495_PavithraCV.pdf', NULL, '1', '2024-09-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-09 05:43:12', 104, '2024-09-12 05:38:22', 0, NULL, 1),
(21236, 'Thoshika M', '6', '9710497908', '', 'toshikachhajed2002@gmail.com', '2002-10-09', 21, '1', '2', 'Moolchand jain', 'Business', 400000.00, 1, 7000.00, 20000.00, 'No 11 vaikunta vathiyar st Sowcarpet Chennai-79', 'No 11 vaikunta vathiyar st Sowcarpet Chennai-79', '2409090014', '', '2', 'upload_files/candidate_tracker/62086819382_DOC20240807WA0001..docx', NULL, '1', '2024-09-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 05:51:09', 1, '2024-09-09 06:06:43', 0, NULL, 1),
(21237, 'S.BHAVYA DHARSHINI', '5', '9360469368', '7200889310', 'Dharxchu@gmail.com', '2004-05-10', 20, '3', '2', 'Father\'s', '150000', 150000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2409090015', '', '1', 'upload_files/candidate_tracker/35802446299_Imagetopdf09Sep2024.pdf', NULL, '1', '2024-09-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 05:54:49', 1, '2024-09-09 06:06:18', 0, NULL, 1),
(21238, 'M.Sariga', '6', '7200889310', '', 'sssarijathara@gmail.com', '2004-09-09', 20, '3', '2', 'Father\'s', 'Coco cola', 15000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2409090016', '', '1', 'upload_files/candidate_tracker/42909585186_Imagetopdf09Sep20241.pdf', NULL, '1', '2024-09-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 06:09:13', 1, '2024-09-09 06:14:56', 0, NULL, 1),
(21239, 'KEERRTHI VASAN S', '11', '7806837572', '9840155006', 'vasankeerrthi@gmail.com', '1999-10-13', 24, '3', '2', 'SARAVANAN G', 'TV MECHANIC', 14000.00, 1, 144000.00, 200000.00, 'Chennai', 'Chennai', '2409090017', '', '2', 'upload_files/candidate_tracker/92720837102_UpdatedResume.pdf', NULL, '1', '2024-09-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-09 06:09:42', 104, '2024-09-09 04:09:22', 0, NULL, 1),
(21240, '', '0', '8122618678', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409090018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-09 06:09:47', 0, NULL, 0, NULL, 1),
(21241, 'S.pavithara', '6', '9361372913', '', 'pavithrapavithra16609@gmail.com', '2004-06-23', 20, '3', '2', 'Father\'s', 'Railway', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2409090019', '', '1', 'upload_files/candidate_tracker/28702598175_CV2024010310432442.pdf', NULL, '1', '2024-09-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 06:09:51', 1, '2024-09-09 06:31:02', 0, NULL, 1),
(21242, 'SANDHIYA R', '13', '9360483217', '', 'sandhiyarajendran272@gmail.com', '2001-11-27', 22, '3', '2', 'Malathi R', 'House Wife', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2409090020', '', '1', 'upload_files/candidate_tracker/15409926778_MyResume.pdf', NULL, '1', '2024-09-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 06:58:18', 1, '2024-09-09 07:06:59', 0, NULL, 1),
(21243, 'Prakash N', '13', '6382411981', '', 'Prakashnagarajan111@gmail.com', '2002-02-05', 22, '3', '2', 'Nagarajan V', 'Saree Designer', 150000.00, 1, 0.00, 15000.00, 'Arani', 'Guindy', '2409090021', '', '1', 'upload_files/candidate_tracker/94610074727_NPRESUME4.pdf', NULL, '1', '2024-09-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 07:19:54', 1, '2024-09-09 07:23:16', 0, NULL, 1),
(21244, 'Devanath sri p', '6', '6374398134', '9566126606', 'devnathsri@gmail.com', '2001-10-03', 22, '2', '2', 'Premanand', 'Daily worker', 18500.00, 1, 12000.00, 15000.00, 'No 258, Kancheepuram HighRoadChengalpattu - 603101', 'No258,Kancheepuram High Road Chengalpattu - 603101', '2409090022', '1', '2', 'upload_files/candidate_tracker/33147098772_10000196141.pdf', NULL, '1', '2024-09-10', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales and his voice is not clear', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-09 07:49:08', 104, '2024-09-10 05:12:26', 0, NULL, 1),
(21245, '', '0', '9080686108', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409090023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-09 07:55:16', 0, NULL, 0, NULL, 1),
(21246, 'Prakash D', '13', '7708860128', '', 'prksh052@gmail.com', '1992-12-19', 31, '3', '2', 'Dasarathan', 'Full stack developer', 100000.00, 1, 360000.00, 450000.00, 'CHENNAI', 'CHENNAI', '2409090024', '', '2', 'upload_files/candidate_tracker/45578537182_PrakashD2.pdf', NULL, '1', '2024-09-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 08:01:41', 1, '2024-09-09 08:06:14', 0, NULL, 1),
(21247, 'Pradeep Sunnal', '6', '7019515691', '', 'prajwalsunnal@gmail.com', '2003-03-19', 21, '2', '2', 'Gurappa Sunnal', 'Defense', 9000.00, 1, 0.00, 20000.00, 'Bagalkot', 'Austin town', '2409090025', '57', '1', 'upload_files/candidate_tracker/44434709756_Pradeepsunnal20240714T125550.471Z.pdf', NULL, '1', '2024-09-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 09:40:48', 1, '2024-09-09 09:48:45', 0, NULL, 1),
(21248, '', '0', '9884333470', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409090026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-09 10:08:02', 0, NULL, 0, NULL, 1),
(21249, 'Javeed Ahamed', '4', '8946068987', '9043422193', 'ahamedjaveed04@gmail.com', '2000-02-04', 24, '2', '2', 'Parents', 'B. Com', 25000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2409090027', '50', '2', 'upload_files/candidate_tracker/94436350494_javeedahamedResume.pdf', NULL, '1', '2024-09-10', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 10:26:04', 1, '2024-09-09 10:30:46', 0, NULL, 1),
(21250, 'K.Jayajothika', '33', '9677279723', '7305888573', 'jayajothikajothika@gmail.com', '2003-01-05', 21, '2', '2', 'M.Kalidass', 'Driver', 12000.00, 1, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2409090028', '50', '1', 'upload_files/candidate_tracker/80990734055_attachment.pdf', NULL, '1', '2024-09-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 11:59:13', 1, '2024-09-09 12:04:36', 0, NULL, 1),
(21251, 'karthik', '4', '8682939535', '', 'km4303214@gmail.com', '2004-01-31', 20, '2', '2', 'mayilvahanan', 'farmer', 15000.00, 0, 0.00, 11000.00, 'gandharvakottai', 'gandharvakottai', '2409090029', '1', '1', 'upload_files/candidate_tracker/18801176114_20240911111312.pdf', NULL, '1', '2024-09-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-09 12:03:52', 104, '2024-09-11 05:28:53', 0, NULL, 1),
(21252, '', '0', '8189972212', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409090030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-09 12:11:14', 0, NULL, 0, NULL, 1),
(21253, 'K.kirthika', '6', '8925358729', '9840610089', 'kirthikakumar15@gmail.com', '2004-07-15', 20, '2', '2', 'V.kumar', 'Business', 12000.00, 1, 0.00, 16000.00, 'Perambur chennai', 'Chennai', '2409090031', '1', '1', 'upload_files/candidate_tracker/33305627109_kirthikacvoriginal.pdf', NULL, '1', '2024-09-10', 0, '', '3', '59', '2024-09-16', 174000.00, '', '3', '2024-12-31', '2', 'Fresher Can give a try Can be trained interested to learn and executive check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55645', '5151', '2024-09-16', 1, '2024-09-09 01:16:12', 60, '2024-09-14 12:57:43', 0, NULL, 1),
(21254, '', '0', '9025916571', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409090032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-09 01:18:32', 0, NULL, 0, NULL, 1),
(21255, '', '0', '7349361142', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409090033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-09 01:43:26', 0, NULL, 0, NULL, 1),
(21256, 'Kaneez Fatima', '11', '7259843723', '', 'Skaneezfatima952@gmail.com', '2001-03-16', 23, '1', '2', 'Jeelani', 'Business', 100000.00, 4, 20000.00, 35000.00, 'Hubli', 'Hubli', '2409090034', '', '2', 'upload_files/candidate_tracker/993337442_ASHUCVRESUME.docx', NULL, '3', '2024-10-02', 30, '245725', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-09 02:23:15', 1, '2024-09-09 02:32:27', 0, NULL, 1),
(21257, '', '0', '8590656496', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409090035', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-09 03:00:25', 0, NULL, 0, NULL, 1),
(21258, 'merlin freeda', '4', '8072453087', '8428936004', 'merlinfreeda696@gmail.com', '1998-06-17', 26, '3', '1', 'Manikandan', 'Reading', 40000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2409100001', '', '2', 'upload_files/candidate_tracker/9010237249_MERLIN2024SEP.pdf', NULL, '2', '2024-09-10', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'met by kannan', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-09-10 03:58:35', 104, '2024-09-10 05:17:34', 0, NULL, 1),
(21259, 'Rajesh K', '6', '7010178622', '', 'rajesh701017@gmail.com', '2000-12-07', 23, '2', '2', 'Karthirajan', 'Business', 15000.00, 1, 13500.00, 20000.00, 'Kumbakonam', 'Kumbakonam', '2409100002', '57', '2', 'upload_files/candidate_tracker/65926467451_RAJESHKARTHIRAJAN.pdf', NULL, '1', '2024-09-10', 15, '', '3', '59', '2024-10-07', 204000.00, '', '3', '2025-07-30', '2', 'Communication Ok Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2024-10-07', 1, '2024-09-10 04:40:56', 60, '2024-10-07 10:22:45', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21260, 'Abirami s', '6', '9500163101', '9150493665', 'abiprabakaran4@gmail.com', '2001-08-10', 23, '2', '1', 'Bala', 'Plastic technology', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409100003', '50', '1', 'upload_files/candidate_tracker/36839607945_New21.pdf', NULL, '1', '2024-09-13', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '2024-09-14', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-10 04:57:20', 104, '2024-09-13 05:25:42', 0, NULL, 1),
(21261, 'Vijayalakshmi.k', '4', '9363701905', '6383742516', 'vijikumaresan1998@gmail.com', '1998-09-10', 26, '2', '1', 'Rajarathinam', 'Pharmaceutical', 500000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2409100004', '50', '1', 'upload_files/candidate_tracker/77075910818_vijiresume.docx', NULL, '1', '2024-09-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-10 05:02:23', 1, '2024-09-10 05:11:59', 0, NULL, 1),
(21262, 'Karthick A', '6', '8056730630', '7845516890', 'KARTHICKVISHNU2001@GMAIL.COM', '2001-02-22', 23, '2', '2', 'Arumugam', 'Veg shop', 12000.00, 4, 0.00, 15000.00, 'Chennai', 'Chennai', '2409100005', '50', '1', 'upload_files/candidate_tracker/92775990905_DOC20240705WA0001.pdf', NULL, '1', '2024-09-10', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected -having interest in other field', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-10 05:05:23', 104, '2024-09-10 05:14:28', 0, NULL, 1),
(21263, '', '0', '9043561208', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409100006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-10 05:05:58', 0, NULL, 0, NULL, 1),
(21264, '', '0', '9880544197', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409100007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-10 05:08:37', 0, NULL, 0, NULL, 1),
(21265, 'Ram Balaji R', '13', '9150581422', '9789991688', 'rambalaji427@gmail.com', '2002-03-02', 22, '6', '2', 'Rama Krishnan P', 'Daily wages', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2409100008', '', '1', 'upload_files/candidate_tracker/34182969115_RAMBALAJIRresume....pdf', NULL, '1', '2024-09-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-10 05:11:27', 1, '2024-09-10 05:14:29', 0, NULL, 1),
(21266, 'Sankaran M', '6', '8870933952', '', 'sankarmuthu108@gmail.com', '1998-05-19', 26, '1', '2', 'Muthu S', 'Farmer', 20000.00, 2, 15000.00, 19000.00, 'Tenkasi', 'Saidabad', '2409100009', '', '2', 'upload_files/candidate_tracker/96581380660_SANKARANRESUME.docx', NULL, '1', '2024-09-10', 0, '77882', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no need the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-10 05:12:50', 104, '2024-09-10 04:36:16', 0, NULL, 1),
(21267, 'Vignesh M', '33', '7448932582', '8610913556', 'vigneshm161096@gmail.com', '1996-10-16', 27, '2', '2', 'Shakila', 'House wife', 30000.00, 1, 240000.00, 300000.00, 'Chennai', 'Chennai', '2409100010', '50', '2', 'upload_files/candidate_tracker/1698268651_ba876e28b09b4f28a3f6f4c043d88ca9CV2024080923333931.pdf', NULL, '1', '2024-09-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-10 05:46:04', 1, '2024-09-10 05:53:26', 0, NULL, 1),
(21268, 'GOPINATHAN S', '13', '9360758395', '', 'gopi1952002@gmail.com', '2002-05-19', 22, '3', '2', 'Sekaran P', 'Retired Government Conductor', 700000.00, 1, 0.00, 360000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2409100011', '', '1', 'upload_files/candidate_tracker/75543842692_GopinathanResume.pdf', NULL, '1', '2024-09-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-10 05:52:26', 1, '2024-09-10 05:57:36', 0, NULL, 1),
(21269, 'Anbu Selvan A', '6', '9025885692', '9444839352', 'anbusmiley4@gmail.com', '2002-07-27', 22, '6', '2', 'M.annadurai', 'Sales', 30000.00, 2, 0.00, 15000.00, 'Mogappair west', 'Mogappair west', '2409100012', '', '1', 'upload_files/candidate_tracker/96295522127_DOC20240430WA0002..pdf', NULL, '1', '2024-09-10', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication ok but futur plan is own business so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-10 06:07:36', 104, '2024-09-10 05:16:40', 0, NULL, 1),
(21270, 'Pradeep C', '6', '9943726468', '8248607667', 'pradeeppraga@gmail.com', '2000-06-12', 24, '2', '2', 'Chinnathambi A', 'Farmer', 2.50, 1, 0.00, 15.00, 'Kallakurichi', 'Poonamalle', '2409100013', '50', '1', 'upload_files/candidate_tracker/74753273929_IMG202304071220401.pdf', NULL, '1', '2024-09-10', 0, '', '3', '59', '2024-09-13', 192000.00, '', '3', '2024-09-13', '2', 'Communication Ok Fresher for our roles  can give a try and check in 7 day analysis', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', 'he much preferred to have customer support', '', '', '', '55645', '5151', '2024-09-13', 1, '2024-09-10 06:14:00', 104, '2024-09-13 09:40:17', 0, NULL, 1),
(21271, 'Jayasudha j', '5', '8015028280', '9043561208', 'umarjasu1412@gmail.com', '2000-01-08', 24, '2', '1', 'Jalil', 'Equitas Small finance bank', 25000.00, 2, 0.00, 30000.00, 'Redhills', 'Madhavaram', '2409100014', '1', '2', 'upload_files/candidate_tracker/50627317954_Jayasudharesume1.pdf', NULL, '1', '2024-09-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected For Gnanshekar Team. Immedeate Joiner Please negotiate ctc.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55656', '55557', '1970-01-01', 1, '2024-09-10 06:16:27', 60, '2024-09-12 05:48:17', 0, NULL, 1),
(21272, 'Sushmitha s', '34', '8778827525', '6369028689', 'Sushmithaseralathan@gmail', '2003-01-31', 21, '3', '2', 'Seralathan.M', 'FARMER', 15000.00, 2, 0.00, 30000.00, 'C.melavanniyur ,chidambaram tk cuddalore dt', 'Vjiya Nagar vellachery', '2409100015', '', '1', 'upload_files/candidate_tracker/41699742127_IMG20240501WA00061.pdf', NULL, '1', '2024-09-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-10 06:20:39', 1, '2024-09-10 06:30:12', 0, NULL, 1),
(21273, 'Antony sowmiya', '13', '9025204360', '', 'sowmiyasowmiya27724@gmail.com', '2004-12-20', 19, '3', '2', 'M. Ramesh', 'Cooli', 8000.00, 1, 0.00, 15000.00, '2/434,west street,mariathaipuram,Tenkasi', 'Velachery', '2409100016', '', '1', 'upload_files/candidate_tracker/25689354315_ANTONYSOWMIYARFlowCVResume20240905.pdf', NULL, '1', '2024-09-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-10 06:20:44', 1, '2024-09-10 06:30:47', 0, NULL, 1),
(21274, 'Ranjitha E', '13', '9750432411', '', 'ranjitharanjitha302003@gmail.com', '2003-11-30', 20, '3', '2', 'K.Elaiya Perumal', 'Driver', 35000.00, 1, 0.00, 30000.00, 'Srimushnam Cuddalore dist', 'Velachery', '2409100017', '', '1', 'upload_files/candidate_tracker/65513925232_ranjithaResume.pdf', NULL, '1', '2024-09-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-10 06:20:46', 1, '2024-09-10 06:28:29', 0, NULL, 1),
(21275, 'Jayashree.s', '6', '8610515146', '9003038089', 'jayashree.js1970@gmail.com', '2002-08-21', 22, '2', '2', 'Sivagnanam.k', 'TNEB', 25000.00, 1, 0.00, 18000.00, 'Eswaran nagar Redhills', 'Madhavaram', '2409100018', '1', '1', 'upload_files/candidate_tracker/15819249814_jayaresumejob.pdf', NULL, '1', '2024-09-10', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and voice not good and future plan is own business , so not it for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-10 06:20:58', 104, '2024-09-10 05:16:23', 0, NULL, 1),
(21276, 'S. Jaya prabha', '13', '9159887100', '', 'prabhajaya762@gmail.com', '2004-08-31', 20, '3', '2', 'M. Senthil kumar', 'Tv mechanic', 7000.00, 1, 0.00, 15000.00, 'Surandai, tenkasi', 'Velachery, chennai', '2409100019', '', '1', 'upload_files/candidate_tracker/16757098458_JayaPrabhacvresume1.pdf', NULL, '1', '2024-09-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-10 06:21:12', 1, '2024-09-10 06:30:47', 0, NULL, 1),
(21277, 'Maheswari', '13', '7448910360', '', 'maheswari31072002@gmail.com', '2002-07-31', 22, '3', '2', 'Mariyappan', 'Driver', 9000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2409100020', '', '1', 'upload_files/candidate_tracker/88686455991_MaheswariResume.pdf', NULL, '1', '2024-09-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-10 06:21:12', 1, '2024-09-10 06:27:04', 0, NULL, 1),
(21278, '', '0', '6382831278', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409100021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-10 06:23:29', 0, NULL, 0, NULL, 1),
(21279, 'Sharumathi R', '6', '6382683818', '', 'sharulavanya6@gmail.com', '2000-10-12', 23, '1', '1', 'Saravanakumar G', 'Media person', 40000.00, 0, 14000.00, 18000.00, 'Kodambakkam', 'Kodambakkam', '2409100022', '', '2', 'upload_files/candidate_tracker/63497057578_sharumathi.docx', NULL, '1', '2024-09-10', 0, '55825', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, pls confirm the joining date xxamp Salary.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-09-10 06:45:18', 104, '2024-09-10 05:10:01', 0, NULL, 1),
(21280, 'Hari haran', '4', '9176069534', '9042993738', 'hariharang197@gmail.com', '2000-01-21', 24, '2', '2', 'Ganesh', 'Toiler', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2409100023', '50', '1', 'upload_files/candidate_tracker/28998757372_DocScanner23Aug2024249pm1.pdf', NULL, '1', '2024-09-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-10 07:04:54', 1, '2024-09-10 09:13:51', 0, NULL, 1),
(21281, 'J.Harshini', '4', '9025028077', '', 'harshinijaikumar3@gmail.com', '2002-12-21', 21, '3', '2', 'Parent', 'Daily wages', 108000.00, 1, 14000.00, 18.00, '7/4 Sheik mohideen subaidar lane dasakan, chennai', '7/4 Sheik mohideen subaidar lane,dasakan,Chennai12', '2409100024', '', '2', 'upload_files/candidate_tracker/10227483634_CV2024090321502289.pdf', NULL, '1', '2024-09-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-10 07:12:31', 1, '2024-09-10 07:30:29', 0, NULL, 1),
(21282, 'AravindaKumar D J', '6', '7305946917', '9940425453', 'djaravindakumar@gmail.com', '2001-12-03', 22, '2', '2', 'G. devadoss', 'Auto driver', 10000.00, 1, 0.00, 25000.00, 'Gingee', 'Teynampet', '2409100025', '50', '1', 'upload_files/candidate_tracker/77352548077_updatedresume.pdf', NULL, '1', '2024-09-10', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected -communication was\nnot good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-10 07:35:30', 104, '2024-09-10 05:13:56', 0, NULL, 1),
(21283, 'Leelavathi', '4', '8939213949', '', 'vathileela1981@gmail.com', '1981-09-18', 42, '2', '1', 'Senthilkumar', 'Business', 40000.00, 1, 18600.00, 25000.00, 'Chennai', 'Chennai', '2409100026', '50', '2', 'upload_files/candidate_tracker/97898744046_PayslipJUN2024Payslip.pdf', NULL, '1', '2024-09-11', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-10 09:14:03', 1, '2024-09-10 09:37:38', 0, NULL, 1),
(21284, 'Mary Yollent J P', '5', '8778523301', '', 'maryyollent31@gmail.com', '2001-07-31', 23, '2', '2', 'John Poulus', 'Nill', 17000.00, 1, 17000.00, 25000.00, 'Chennai Mylapore', 'Chennai Mylapore', '2409100027', '57', '2', 'upload_files/candidate_tracker/2228099050_DOC20240705WA0008removed.pdf', NULL, '1', '2024-09-10', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selcted for Gnanashekar Team. Can offer 25k CTC Ready to Join from Monday. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2024-09-10 09:39:14', 104, '2024-09-10 05:13:37', 0, NULL, 1),
(21285, 'Nivedha A', '6', '7695988269', '8870032952', 'nivenivedha2620@gmail.com', '1998-09-26', 25, '1', '2', 'Anbazhagan', 'Central govt', 30009.00, 2, 17400.00, 24000.00, 'Neyveli', 'Tambaram', '2409100028', '', '2', 'upload_files/candidate_tracker/1412542236_NIVEDHARESUME.pdf', NULL, '1', '2024-09-10', 0, '77901', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate past exp for visa insurance in 1 year for team handeling , good communication and voice also good , better team handeing so try for 7 days training period , exp ctc is 18k to 20 k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-10 11:17:45', 104, '2024-09-10 05:15:35', 0, NULL, 1),
(21286, 'Bhoomika shankar', '6', '7760565024', '', 'shankarbhoomika58@gmail.com', '2004-06-23', 20, '2', '2', 'ChandrakalaS (late)', 'Chef', 19000.00, 0, 19000.00, 21000.00, 'Chikkarangappa road bsk 3rd stg sriranganagar', 'Rajarajeshwari nagar', '2409100029', '1', '2', 'upload_files/candidate_tracker/44257883685_9ef67ca0ed0c4a8780592b76fbbbaf93.pdf', NULL, '1', '2024-09-11', 0, '', '3', '59', '2024-09-16', 210000.00, '', '3', '2024-12-11', '2', 'Communication Ok have exp in receovery but not in sales  no document proof can betrained in our roles need to analyse in 7 days', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-09-16', 1, '2024-09-10 12:42:38', 126, '2024-10-03 11:13:24', 0, NULL, 1),
(21287, 'Shaik Arshiya Begum', '6', '8978687285', '9652972140', 'shaikarshiyabegum22@gmail.com', '2004-06-04', 20, '2', '2', 'Abbas Ali', 'Tailor', 30000.00, 3, 18000.00, 22000.00, 'Adoni,andhra pradesh', 'Bommanahalli Bengaluru', '2409100030', '1', '2', 'upload_files/candidate_tracker/61767698176_Arshiya2CV20240402033216.pdf', NULL, '1', '2024-09-11', 0, '', '3', '59', '2024-09-17', 240000.00, '', '3', '2025-04-01', '2', 'Communication Ok Can give a try and check in 7 days has exp in lead generation Edelweisis life', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-09-10 03:20:58', 126, '2024-09-20 01:28:24', 0, NULL, 1),
(21288, 'Veera Vaishnavi Murugesan', '6', '9087927768', '', 'veeravaishnavi326@gmail.com', '1999-11-01', 24, '2', '1', 'Prem Kumar', 'Own business', 50000.00, 1, 1.00, 20000.00, '1010,11th Cross Weavers Colony gottigere', '1010,11th cross weavers colony gottigere', '2409110001', '57', '2', 'upload_files/candidate_tracker/94432667735_veera.vaishnaviCV.doc', NULL, '1', '2024-09-11', 0, '', '3', '59', '2024-09-26', 204000.00, '', NULL, '2024-10-23', '1', 'Communication Ok Can give a try and check her friend also working  here Need to analyse in 7 days training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '2024-09-26', 1, '2024-09-11 01:49:46', 126, '2024-09-26 12:15:42', 0, NULL, 1),
(21289, 'Sathiya S', '13', '8056725506', '6369286227', 'sathiyasathiya9772@gmail.com', '2001-01-20', 23, '3', '2', 'Vijayalakshmi S', 'House wife', 5000.00, 1, 0.00, 15000.00, 'Coimbatore', 'Chennai', '2409110002', '', '1', 'upload_files/candidate_tracker/73475178012_DocScannerAug3120231635.pdf', NULL, '1', '2024-09-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 04:43:38', 1, '2024-09-11 04:47:08', 0, NULL, 1),
(21290, 'Divya G', '6', '9043263830', '', 'divyagovindhan03@gmail.com', '2001-09-03', 23, '2', '2', 'Govindhan', 'Farmer', 150000.00, 1, 0.00, 200000.00, 'Gummidipoondi', 'Gummidipoondi', '2409110003', '50', '1', 'upload_files/candidate_tracker/59871927747_DIVYAGCV1.pdf', NULL, '1', '2024-09-11', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and convincing skill is low but she is interested in IT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-11 04:54:16', 104, '2024-09-11 05:36:01', 0, NULL, 1),
(21291, 'Kerchiyal rani.j', '4', '8531987105', '7010396911', 'kerchiyalrani@gmail.com', '1995-05-02', 29, '2', '2', 'Jothinayagam', 'Former', 500000.00, 6, 0.00, 18000.00, '7/62, veerambal post, mudukulathur, Ramanathapuram', 'Chennai', '2409110004', '57', '1', 'upload_files/candidate_tracker/95524450476_raniresume2023new.pdf', NULL, '1', '2024-09-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 05:03:06', 1, '2024-09-11 05:08:24', 0, NULL, 1),
(21292, 'R Ragul', '28', '6369088461', '9943132841', 'ragulra2003@gmail.com', '2003-06-30', 21, '2', '2', 'Ramasamy', 'Farmer', 14000.00, 1, 0.00, 17000.00, 'Thurinjikuppam', 'Thurinjikuppam', '2409110005', '1', '1', 'upload_files/candidate_tracker/40691064668_DOC20240629WA0005..pdf', NULL, '1', '2024-09-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', '0', '0', NULL, 1, '2024-09-11 05:07:17', 1, '2024-09-11 05:43:27', 0, NULL, 1),
(21293, 'DEVARAJAN K', '13', '9080952817', '6374968340', 'devarajan0699@gmail.com', '1999-06-09', 25, '1', '2', 'KUMARAKURU', 'Building constructor', 20000.00, 1, 0.00, 250000.00, '513, varavathi street, thirumani.', '2/760 4th Street, 2nd block, Mugappier west', '2409110006', '', '1', 'upload_files/candidate_tracker/59299293358_javaresume.pdf', NULL, '1', '2024-09-11', 0, 'Sathish', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 05:09:27', 1, '2024-09-11 05:18:00', 0, NULL, 1),
(21294, 'K Ranjith', '28', '9361199018', '9786436420', 'ranjithkumaresan8@gmail.com', '2002-08-08', 22, '2', '2', 'Kumaresan', 'Farmer', 15000.00, 1, 0.00, 17000.00, 'Kallathur', 'Kallathur', '2409110007', '1', '1', 'upload_files/candidate_tracker/9740202899_RanjithCV..pdf', NULL, '1', '2024-09-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', '0', '0', NULL, 1, '2024-09-11 05:10:51', 1, '2024-09-11 05:42:00', 0, NULL, 1),
(21295, 'N.Rohini', '6', '6379746798', '', 'rohininagaraj00@gmail.com', '2000-11-23', 23, '2', '2', 'Nagaraj', 'Own business', 30000.00, 1, 0.00, 22000.00, 'Bangalore', 'Bangalore', '2409110008', '57', '2', 'upload_files/candidate_tracker/96518744115_rohini.resume.pdf', NULL, '1', '2024-09-11', 0, '', '3', '59', '2024-09-19', 216000.00, '', NULL, '2024-10-23', '2', 'Communication Ok Can be trained in our roles  need to analyse in 7 days training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '2024-09-19', 1, '2024-09-11 05:14:06', 60, '2024-09-18 07:31:24', 0, NULL, 1),
(21296, 'Sandhiya G', '6', '7401377705', '9841984564', 'sandyathabetha909@gmail.com', '2009-09-11', 0, '2', '2', 'Gangesan M and mahalakshmi G', 'Auto driver and house wife', 5000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2409110009', '1', '1', 'upload_files/candidate_tracker/56240925591_sandyaresume.pdf', NULL, '1', '2024-09-11', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice and commuication alo ok but a/c not accept  for our body condicion  so not fit for my team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-11 05:16:37', 104, '2024-09-11 05:34:50', 0, NULL, 1),
(21297, 'Arulkumar.p', '6', '7395951900', '7305951900', 'arulkumar1901@gmail.com', '2001-06-19', 23, '1', '2', 'Pooppandidurai', 'Sales', 70000.00, 73, 0.00, 15000.00, 'T.nagar', 'T.nagar', '2409110010', '', '1', 'upload_files/candidate_tracker/46088666801_AruLL.pdf', NULL, '1', '2024-09-11', 0, '77958', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-11 05:20:45', 104, '2024-09-11 05:24:10', 0, NULL, 1),
(21298, 'Jeyaraj', '4', '9487356920', '', 'jeyaraj99new@gmail.com', '1999-04-29', 25, '1', '2', 'Gunavathi', 'House wife', 60000.00, 3, 10000.00, 13000.00, 'Thanjavur', 'Thanjavur', '2409110011', '', '2', 'upload_files/candidate_tracker/33572629645_cvnew.pdf', NULL, '1', '2024-09-11', 10, 'Ci144', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-11 05:29:27', 104, '2024-09-11 05:29:18', 0, NULL, 1),
(21299, 'lakshmanan r', '6', '8428631096', '8428867049', 'lakshurengaraj343@gmail.com', '2003-04-03', 21, '2', '2', 'rengaraj', 'car driver', 30000.00, 3, 170000.00, 200000.00, 'trichy', 'chennai', '2409110012', '50', '2', 'upload_files/candidate_tracker/36300641534_Lakshuresume.pdf', NULL, '1', '2024-09-11', 4, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'job needed person and he has tele calling exp kindly his exisiting pay slip and provide same ctc to him ctc 17k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-11 05:30:49', 104, '2024-09-11 05:32:40', 0, NULL, 1),
(21300, 'Ramella Vijay Kumar', '13', '6303168100', '', 'vijayramella292@gmail.com', '2002-11-16', 21, '6', '2', 'Ramella Durga rao', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'Vijayawada', 'Chennai', '2409110013', '', '1', 'upload_files/candidate_tracker/6315455889_VIJAYKUMARRAMELLA.docx', NULL, '1', '2024-09-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 05:46:22', 1, '2024-09-11 05:50:44', 0, NULL, 1),
(21301, 'HEMA PRABHA M', '13', '9188625057', '', 'hemaprabha.rct@gmail.com', '2000-05-10', 24, '3', '2', 'Mohan Raj P', 'Business', 10000.00, 1, 0.00, 300000.00, 'Elappara', 'Chennai', '2409110014', '', '1', 'upload_files/candidate_tracker/65892735168_Resume.pdf', NULL, '1', '2024-09-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 05:57:01', 1, '2024-09-11 06:03:34', 0, NULL, 1),
(21302, 'T.Santhi', '6', '7867074765', '8438569684', 'santhithiru200@gmail.com', '2002-08-21', 22, '2', '2', 'K.Thirunthaiyan', 'Farmer', 45000.00, 1, 18000.00, 20000.00, 'Thanjavur', 'Chennai', '2409110015', '50', '2', 'upload_files/candidate_tracker/15267881839_AnyScanner09112024.pdf', NULL, '1', '2024-09-11', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'REJECTED- NOT HAVE CLARIFICATION ON STABILITY', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-11 05:57:23', 104, '2024-09-11 05:33:40', 0, NULL, 1),
(21303, '', '0', '9444338199', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409110016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-11 05:57:50', 0, NULL, 0, NULL, 1),
(21304, 'Sandhiya s', '6', '9944962204', '9363109765', 'sandhiyas2204@gmail.com', '2002-04-22', 22, '2', '2', 'Siva', 'Farmer', 75000.00, 2, 18500.00, 23000.00, 'Villupuram', 'Villupuram', '2409110017', '1', '2', 'upload_files/candidate_tracker/87455372520_1725510804069sandhiyacopy.pdf', NULL, '1', '2024-09-11', 10, '', '3', '59', '2024-09-17', 204000.00, '', '3', '2024-10-02', '2', 'Have exp in paisa bazaar for few months  joining doubts she is focusing on her friend job  also if she joins need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '2024-09-17', 1, '2024-09-11 05:59:17', 60, '2024-09-14 12:47:57', 0, NULL, 1),
(21305, 'Meena r', '6', '8438569684', '9551328334', 'meenarevathi05@gmail.com', '2003-01-15', 21, '2', '2', 'Rajendiran T', 'Business', 40000.00, 1, 15000.00, 18000.00, 'Ariyalur', 'Chennai', '2409110018', '50', '2', 'upload_files/candidate_tracker/87690529606_meena.pdf', NULL, '1', '2024-09-11', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok. 1.3 yrs exp  5 month cc xxamp 8 month loan process both company she was abscond, pls cross check sustainability . provide 14k and confirm the joining date', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-09-11 06:11:12', 104, '2024-09-11 05:31:05', 0, NULL, 1),
(21306, 'Divya priya', '4', '9445789701', '', 'Priyadivini25@gmail.com', '1993-09-25', 30, '2', '1', 'Partha', 'Developer', 100000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2409110019', '57', '2', 'upload_files/candidate_tracker/64278261417_DivyaPriyacustomerservicerepresentative.pdf', NULL, '1', '2024-09-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 06:17:32', 1, '2024-09-11 07:28:00', 0, NULL, 1),
(21307, 'Gowtham G', '6', '6381834656', '9524058022', 'krgrider26@gmail.com', '2003-09-22', 20, '2', '2', 'A.Gopal', 'Labour', 25000.00, 1, 0.00, 15000.00, 'Erode', 'Chennai, Guindy', '2409110020', '45', '1', 'upload_files/candidate_tracker/48330798602_Picsart240510222554474.pdf', NULL, '1', '2024-09-11', 0, '', '3', '59', '2024-09-16', 192000.00, '', '3', '2025-01-18', '2', 'Communication Ok Fresher 20yrs job need is there can give a try and check in 7 days analysis', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-09-16', 1, '2024-09-11 06:17:38', 60, '2024-09-12 06:10:17', 0, NULL, 1),
(21308, 'Priyadharshini.A', '6', '8925019075', '', 'Priyaakshara37@gmail.com', '2002-02-03', 22, '2', '2', 'E.M.k Aristotle', 'P.t.Master', 75000.00, 1, 0.00, 20.00, 'Madhavaram', 'Madhavaram', '2409110021', '57', '1', 'upload_files/candidate_tracker/14763783631_PRIYADHARSHINIANEW240801134313.pdf', NULL, '1', '2024-09-11', 0, '', '3', '59', '2024-09-18', 180000.00, '', '3', '2024-10-29', '1', 'Communication Ok Can give a try in our roles need to analyse in 7 days training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2024-09-18', 1, '2024-09-11 06:32:12', 60, '2024-09-17 06:30:41', 0, NULL, 1),
(21309, 'Subashini D', '6', '9363109765', '8760149049', 'subashinisubu18@gmail.com', '2003-03-18', 21, '2', '2', 'S.desingh', 'Carpenter', 20000.00, 1, 0.00, 15000.00, 'Marakkanam', 'Chennai', '2409110022', '1', '1', 'upload_files/candidate_tracker/80722560671_subashini1.pdf', NULL, '1', '2024-09-11', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate very long distance and communication is not well so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-11 06:41:21', 104, '2024-09-11 05:34:10', 0, NULL, 1),
(21310, 'Sandhiya siva', '4', '9363100765', '9944962204', 'Sandhiyas2204@gmail.com', '2002-04-22', 22, '3', '2', 'Siva', 'Farmer', 20000.00, 2, 18500.00, 20000.00, 'Marakkanam', 'Chennai', '2409110023', '', '2', 'upload_files/candidate_tracker/18460734366_1725510804069sandhiyacopy.pdf', NULL, '1', '2024-09-11', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 06:42:23', 1, '2024-09-11 07:26:58', 0, NULL, 1),
(21311, 'Sarath kumar', '4', '9500975648', '9600483385', 'sarathkumar96slm@gmail.com', '1996-01-04', 28, '2', '2', 'Mother-devi, father-gurusamy', 'Auto driver', 20000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2409110024', '57', '2', 'upload_files/candidate_tracker/22507452253_sarathkumar2024.pdf', NULL, '1', '2024-09-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 06:43:33', 1, '2024-09-11 06:47:52', 0, NULL, 1),
(21312, 'Sandhiya siva', '6', '9944062204', '7539919831', 'Sandhiyas2204@gmail.com', '2002-04-22', 22, '3', '2', 'Siva', 'Farmer', 20000.00, 2, 18600.00, 21000.00, 'Marakkanam', 'Chennai', '2409110025', '', '2', 'upload_files/candidate_tracker/14030334898_1725510804069sandhiyacopy.pdf', NULL, '1', '2024-09-11', 10, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 06:45:35', 1, '2024-09-11 06:54:23', 0, NULL, 1),
(21313, '', '0', '9597382700', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409110026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-11 06:56:22', 0, NULL, 0, NULL, 1),
(21314, 'Sachin Joshua A', '6', '8122206948', '9443190740', 'sachinjoshua007@gmail.com', '2002-05-30', 22, '2', '2', 'Arokiadoss', 'Pastor', 15.00, 0, 0.00, 2.50, 'Sirumalai, Dindigul', 'Madhavaram, Chennai', '2409110027', '50', '1', 'upload_files/candidate_tracker/80768299140_ResumeofSACHINJoshua.pdf', NULL, '1', '2024-09-11', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate  communication and convincing is good but he is not interested in field work', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-11 06:58:19', 104, '2024-09-11 05:36:16', 0, NULL, 1),
(21315, 'Nakka sreelatha', '6', '9490141013', '9951151477', 'nsreelatha555@gmail.com', '1998-07-04', 26, '2', '2', 'Nakka Ramana', 'Lorry driver', 20000.00, 0, 15000.00, 19000.00, 'Madanapalli', 'Btm', '2409110028', '1', '2', 'upload_files/candidate_tracker/88067946640_sreelathapdf.pdf', NULL, '1', '2024-09-11', 0, '', '3', '59', '2024-09-18', 216000.00, '', '3', '2025-01-08', '1', 'Communication Ok Can be trained and check in 7 days analysis', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '2024-09-18', 1, '2024-09-11 07:09:22', 60, '2024-09-18 10:29:23', 0, NULL, 1),
(21316, '', '0', '9994420485', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409110029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-11 07:25:08', 0, NULL, 0, NULL, 1),
(21317, 'Mohammed ashik M', '13', '9790308418', '', 'ashikmoosa007@gmail.com', '2002-11-09', 21, '6', '2', 'Asath M (Guardian)', 'Business', 15000.00, 2, 0.00, 20000.00, 'Vadalur', 'Chennai', '2409110030', '', '1', 'upload_files/candidate_tracker/14486062681_ashikResume.pdf', NULL, '1', '2024-09-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 07:33:16', 1, '2024-09-11 07:36:27', 0, NULL, 1),
(21318, 'Sathipriya', '6', '9962843607', '', 'sathipriyamathiyazhagan@gmail.com', '2002-11-08', 21, '1', '2', 'P. Mathiyazhagan', 'Hotel master', 20000.00, 1, 0.00, 17000.00, 'Tondairpet', 'Tondairpet', '2409110031', '', '2', 'upload_files/candidate_tracker/44277587816_resume.pdf', NULL, '1', '2024-09-11', 0, '', '3', '59', '2024-09-16', 180000.00, '', '5', '1970-01-01', '1', 'Communication Ok Can ba trained in our roles verified the earlier document can give a try', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '2024-09-16', 1, '2024-09-11 08:35:12', 60, '2024-09-12 06:28:02', 0, NULL, 1),
(21319, 'Afirda Misba', '4', '8248721141', '', 'afirdamisba002@gmail.com', '2002-11-15', 21, '2', '2', 'Mohamed aasiya', 'House wife', 10000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2409110032', '50', '1', 'upload_files/candidate_tracker/77852343692_Resume2024052811989201.pdf', NULL, '1', '2024-09-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 08:43:52', 1, '2024-09-11 08:48:02', 0, NULL, 1),
(21320, 'Tamilarasan S', '6', '7397287742', '9884498919', 'gowthampavi259@gmail.co', '2004-09-24', 19, '3', '2', 'Selvaraj D', 'Airport cargo', 12000.00, 1, 0.00, 17000.00, '21/11 Iyyapan https pammal Chennai 600075', 'Chennai', '2409110033', '', '1', 'upload_files/candidate_tracker/65424932306_TamilarasanResumeDataEntry.pdf', NULL, '1', '2024-09-11', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'REJECTED -NOT OK WITH FIELD WORK', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-11 08:44:32', 104, '2024-09-11 05:33:20', 0, NULL, 1),
(21321, 'Mohammed Fayas khan', '4', '6381436529', '', 'mohammedfayas003@gmail.com', '2003-06-20', 21, '3', '2', 'Thameem ansari', 'Sales executive', 80000.00, 1, 0.00, 17000.00, 'Tambaram', 'Tambaram', '2409110034', '', '1', 'upload_files/candidate_tracker/8618844356_FAYASRESUME1.pdf', NULL, '1', '2024-09-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 08:46:04', 1, '2024-09-11 09:21:15', 0, NULL, 1),
(21322, 'SanthoshKumar G', '6', '9363203860', '', 'santhoshkumar92119@gmail.com', '2002-06-24', 22, '2', '2', 'Parent', 'Coolie', 30000.00, 3, 0.00, 17000.00, 'Pallavaram', 'Pallavaram', '2409110035', '50', '1', 'upload_files/candidate_tracker/19103430229_santhoshkumar.pdf', NULL, '1', '2024-09-11', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-11 08:46:06', 104, '2024-09-11 05:23:48', 0, NULL, 1),
(21323, 'RAJKUMAR', '6', '7401611169', '7358240198', 'maniraj8363@gmail.com', '1998-12-12', 25, '2', '2', 'Sekar', 'Caterar', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2409110036', '50', '1', 'upload_files/candidate_tracker/45500808775_rajprofile12.pdf', NULL, '1', '2024-09-11', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NO BASIC SKILL', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-11 09:06:06', 104, '2024-09-11 05:23:25', 0, NULL, 1),
(21324, 'SANTHOSH M', '6', '9345870955', '', 'santhoshmani252004@gmail.com', '2004-02-25', 20, '3', '2', 'Father name : MANI M', 'Driver car', 20000.00, 1, 0.00, 1.50, 'Chennai', 'Chennai', '2409110037', '', '1', 'upload_files/candidate_tracker/57295714748_SanthoshMResumecomment.docx', NULL, '1', '2024-09-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-11 09:14:33', 104, '2024-09-11 04:55:51', 0, NULL, 1),
(21325, 'Shanmuga priyan.H', '6', '6381680527', '', 'shanmugapriyan2692003@gmail.com', '2003-09-26', 20, '3', '2', 'Harikrishnan.k', 'Bus', 20000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2409110038', '', '1', 'upload_files/candidate_tracker/22755390824_wepikprofessionalsimplemikeconsultingpurpleresume20240818113412plym.pdf', NULL, '1', '2024-09-11', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is slighlty okey but his performance is not good also his voice and body language is not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-11 09:15:14', 104, '2024-09-11 05:35:09', 0, NULL, 1),
(21326, 'KAMALESH S', '4', '8939887339', '', 'Kamalesh1603@gmail.com', '2003-01-06', 21, '3', '2', 'Electrician', 'Fresher', 15000.00, 1, 0.00, 17000.00, 'Naduveerapattu', 'Naduveerapattu', '2409110039', '', '1', 'upload_files/candidate_tracker/94696077767_ResumeKamalesh3.pdf', NULL, '1', '2024-09-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 09:15:50', 1, '2024-09-11 10:10:26', 0, NULL, 1),
(21327, 'SRINIVASAN.M', '13', '9444328879', '9445156114', 'srinimuthu80@gmail.com', '2002-12-08', 21, '1', '2', 'C.MUTHU', 'Business', 40000.00, 0, 0.00, 50000.00, 'Chennai', 'Chennai', '2409110040', '', '1', 'upload_files/candidate_tracker/67151858422_SRINIVASAN.MFRESHER2024Resume.pdf', NULL, '1', '2024-09-11', 0, 'Sathish', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 09:28:04', 1, '2024-09-11 09:32:58', 0, NULL, 1),
(21328, '', '0', '9677209688', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409110041', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-11 09:39:51', 0, NULL, 0, NULL, 1),
(21329, 'B.Harini', '6', '6382369619', '9360692101', 'baskaranharini1430@gmail.com', '2002-09-30', 21, '2', '2', 'S.Baskaran', 'Business', 100000.00, 1, 0.00, 16000.00, '5th block 801 Mugappair West Chennai -37', 'Mugappair West', '2409110042', '50', '1', 'upload_files/candidate_tracker/27840160973_Pi7ToolResume6.pdf', NULL, '1', '2024-09-12', 0, '', '3', '59', '2024-09-18', 168000.00, '', NULL, '2025-02-08', '2', 'Communication Ok fresher for our roles can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-09-18', 1, '2024-09-11 09:43:20', 60, '2024-09-17 04:15:50', 0, NULL, 1),
(21330, 'vinothini.R', '4', '6379745834', '9791442962', 'vinothinirameskumar0401@gmail.com', '2004-01-04', 20, '2', '2', 'Ramesh kumar', 'carpenter', 10000.00, 1, 0.00, 10000.00, 'kumbakonam', 'kumbakonam', '2409110043', '1', '1', 'upload_files/candidate_tracker/71422952393_VINOTHINIRESUME.pdf', NULL, '1', '2024-09-14', 0, '', '3', '59', '2024-09-18', 153000.00, '', '3', '2024-10-30', '1', 'Communication Ok open to travel from her native can give a try and check in 7 days training', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-09-18', 1, '2024-09-11 10:25:20', 60, '2024-09-17 06:32:40', 0, NULL, 1),
(21331, 'Sivakumar S', '31', '9025009429', '8754155046', 'sivakumarmailid296@Ggmail.com', '2003-06-29', 21, '6', '2', 'Jothi s', 'Tailor', 30000.00, 1, 0.00, 15000.00, 'Sulur, Coimbatore', 'Poonamalle, Chennai', '2409110044', '', '1', 'upload_files/candidate_tracker/69450988157_Sivakumar2024.pdf', NULL, '1', '2024-09-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 12:12:55', 1, '2024-09-11 12:22:19', 0, NULL, 1),
(21332, '', '0', '9384363053', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409110045', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-11 12:13:15', 0, NULL, 0, NULL, 1),
(21333, '', '0', '9962436679', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409110046', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-11 12:25:34', 0, NULL, 0, NULL, 1),
(21334, '', '0', '9025169223', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409110047', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-11 12:34:08', 0, NULL, 0, NULL, 1),
(21335, 'Nagarajan M', '6', '9884164300', '6374678192', 'nn4742203@gmail.com', '1998-04-16', 26, '2', '2', 'Mahendran M', 'Farmer', 35000.00, 2, 4.20, 4.50, 'Oddanchatram, Dindigul - 624619', 'Velachery, Chennai - 600042', '2409110048', '1', '2', 'upload_files/candidate_tracker/42639355439_Nagarajanresume2.pdf', NULL, '1', '2024-09-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-11 01:22:34', 104, '2024-09-12 02:57:31', 0, NULL, 1),
(21336, 'Kishorekumar E', '13', '9345880469', '', 'kishore16022003@gmail.com', '2003-02-16', 21, '1', '2', 'Elangovan', 'Working in private sector', 40000.00, 1, 0.00, 3.50, 'Thiruvallur', 'Thiruvallur', '2409110049', '', '1', 'upload_files/candidate_tracker/47463093552_E.KISHOREKUMARRESUME.pdf.pdf', NULL, '1', '2024-09-12', 0, '0', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 01:49:50', 1, '2024-09-11 02:01:52', 0, NULL, 1),
(21337, 'K.Madhana gopal', '4', '6381494517', '9789727092', 'madhankrish1508@gmail.com', '1996-08-15', 28, '3', '1', 'Dhanalakshmi', 'Fraud analyst', 15000.00, 1, 27000.00, 35000.00, 'Chennai, Tamil Nadu', 'Chennai, Tamil Nadu', '2409110050', '', '2', 'upload_files/candidate_tracker/99760121992_Madhanresume1.pdf', NULL, '1', '2024-09-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 01:56:47', 1, '2024-09-11 02:03:00', 0, NULL, 1),
(21338, 'Jainee Mariam Sabu', '13', '9498414080', '', 'jaineesabu112@gmail.com', '2002-12-11', 21, '3', '2', 'Sabu George', 'Business', 60000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2409110051', '', '1', 'upload_files/candidate_tracker/48142622419_Jaineeresume.pdf', NULL, '1', '2024-09-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-11 04:26:59', 1, '2024-09-11 04:31:33', 0, NULL, 1),
(21339, 'Gowshikan P', '6', '7092209965', '', 'gowshikanparan@gmail.com', '2003-01-06', 21, '2', '2', 'Jayanthi', 'Home maker', 30000.00, 2, 0.00, 18000.00, 'Trichy', 'Trichy', '2409120001', '1', '1', 'upload_files/candidate_tracker/46960380701_resume07Jun2024.pdf', NULL, '1', '2024-09-14', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected - not ok with working time hrs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-12 01:59:52', 104, '2024-09-14 03:05:13', 0, NULL, 1),
(21340, 'Nandini mannem', '6', '8143229057', '9381946389', 'mannemnandini5@gmail.com', '2002-01-05', 22, '3', '2', 'Mannem ramanaiah', 'Farmer', 20.00, 1, 0.00, 22.00, 'Kandukur Andra Pradesh', 'Benguluru kr puram', '2409120002', '', '1', 'upload_files/candidate_tracker/65980278085_MannemNandini.pdf', NULL, '1', '2024-09-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 03:48:09', 1, '2024-09-12 04:35:13', 0, NULL, 1),
(21341, 'CILAGATTU SANTHOSH', '20', '6304412972', '9573427022', 'santhoshsanthosh20394@gmail.com', '2002-10-14', 21, '3', '2', 'C Souri Raj', 'Degree', 30000.00, 1, 0.00, 20000.00, '17/174 opp VV mahal Javilli street palamaner', '7th cross sudhama nagar Srivari gents pg', '2409120003', '', '1', 'upload_files/candidate_tracker/65030956675_SANTHOSH.pdf', NULL, '1', '2024-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 04:04:20', 1, '2024-09-12 05:02:36', 0, NULL, 1),
(21342, 'Gowtham', '13', '8489600829', '', 'gowthamudt0@gmail.com', '2001-11-23', 22, '3', '2', 'Selvaraj', 'Farmer', 120000.00, 1, 0.00, 250000.00, '10/75, panathampatti, metrathi , Tiruppur', 'Navalaur', '2409120004', '', '1', 'upload_files/candidate_tracker/60872098515_Gowthamresume.pdf', NULL, '1', '2024-09-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-12 04:10:58', 104, '2024-09-12 09:58:40', 0, NULL, 1),
(21343, 'Karthik B', '31', '9790011648', '9361558237', 'Sachinkarthikbs@gmail.com', '1999-07-12', 25, '3', '2', 'Sivakami', 'Computer course trainer', 15000.00, 2, 0.00, 40000.00, 'Vellore', 'Velachery', '2409120005', '', '1', 'upload_files/candidate_tracker/18878450846_KarthikResume.pdf', NULL, '1', '2024-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 04:11:51', 1, '2024-09-12 04:34:34', 0, NULL, 1),
(21344, 'Santhi', '6', '7569147931', '8904391326', 'santhiv1998@gmail.com', '1998-08-10', 26, '2', '2', 'Varapalli Ankamma', 'Tailor', 40000.00, 1, 15000.00, 25000.00, 'Andra Pradesh kadapa district Badvel', 'Bangalore Marathahalli', '2409120006', '57', '2', 'upload_files/candidate_tracker/22062248249_varapallisanthicrm1doc1.docx', NULL, '1', '2024-09-12', 0, '', '3', '59', '2024-09-18', 216000.00, '', '3', '2025-03-01', '2', 'Communication Ok Can give atr y in 7 days training credit card sales exp', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '2024-09-18', 1, '2024-09-12 04:22:13', 60, '2024-09-17 07:02:35', 0, NULL, 1),
(21345, 'Tharanitharan D', '13', '9360245839', '', 'tharanitharandevarajan@gmail.com', '2002-04-27', 22, '3', '2', 'Deepa D', 'Tailor', 10000.00, 1, 0.00, 20000.00, 'Namakkal', 'Chennai , Velachery', '2409120007', '', '1', 'upload_files/candidate_tracker/8627667177_tharanitharancv.pdf', NULL, '1', '2024-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 04:24:12', 1, '2024-09-12 04:40:48', 0, NULL, 1),
(21346, 'S.Muthu Sundar', '5', '8098066763', '', 'muthu27sundar@gmail.com', '2001-03-27', 23, '2', '2', 'Selvaraj', 'Business', 50000.00, 1, 0.00, 35000.00, 'Sivaganga', 'Sivaganga', '2409120008', '57', '1', 'upload_files/candidate_tracker/52091161092_Sundar.Resume111.pdf', NULL, '1', '2024-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 04:29:04', 1, '2024-09-12 04:32:07', 0, NULL, 1),
(21347, 'S jyoshna', '6', '7815949946', '8639172838', 'ganavikaroyals@gmail.com', '2001-09-01', 23, '3', '2', 'S varalakshmi', 'House wife', 20000.00, 1, 0.00, 250000.00, 'Kalyanapuram village , puttur', 'Shanthi Nagar', '2409120009', '', '1', 'upload_files/candidate_tracker/99640052503_ResumeGanavikaFormat62.pdf', NULL, '1', '2024-09-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 04:29:41', 1, '2024-09-12 04:42:11', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21348, 'Keerthana B', '17', '9363845677', '9444673666', 'keerthanabalaji19@gmail.com', '2001-12-19', 22, '2', '2', 'Balaji R', 'Agriculture', 15000.00, 0, 0.00, 22000.00, '1/62 Gandhi Street Aangadu Thiruvallur', 'No 52 Padmavathi Nagar 9th Street Vinayagapuram', '2409120010', '57', '1', 'upload_files/candidate_tracker/40948929030_225111047KeerthanaB.pdf', NULL, '2', '2024-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 04:32:01', 1, '2024-09-12 04:38:53', 0, NULL, 1),
(21349, 'Suresh P', '6', '8489264967', '7305731164', 'sureshnpd1998@gmail.com', '1998-11-02', 25, '2', '2', 'Suresh P', 'BA', 5000.00, 3, 0.00, 16000.00, 'Chennai', 'Chennai', '2409120011', '56', '1', 'upload_files/candidate_tracker/15587216694_1643265356658SURESH.docx', NULL, '3', '2024-09-12', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate not fit for the sales.Communication not well.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-09-12 04:32:11', 104, '2024-09-12 05:06:29', 0, NULL, 1),
(21350, '', '0', '9962628562', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409120012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-12 04:32:50', 0, NULL, 0, NULL, 1),
(21351, 'Pravinkumar R', '13', '9176704235', '', 'pravinkumar6646@gmail.com', '2001-09-18', 22, '3', '2', 'Raj P', 'Driver', 25000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2409120013', '', '1', 'upload_files/candidate_tracker/94674266732_PravinkumarRResume.pdf', NULL, '1', '2024-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 04:33:15', 1, '2024-09-12 04:36:21', 0, NULL, 1),
(21352, 'sharma k', '13', '9578718792', '', 'sharmakarnan16@gmail.com', '2003-08-16', 21, '6', '2', 'Karnan p', 'Farmer', 35000.00, 1, 0.00, 3.00, 'chennai', 'chennai', '2409120014', '', '1', 'upload_files/candidate_tracker/61339789171_SharmaKITResume.pdf', NULL, '1', '2024-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 04:42:04', 1, '2024-09-12 04:45:00', 0, NULL, 1),
(21353, 'Yaswanth Reddy P', '5', '8790506236', '', 'yaswanthreddy2043@gmail.com', '2003-04-20', 21, '3', '2', 'P Murahari Reddy', 'Business', 40000.00, 1, 0.00, 2.20, 'Palamaner', 'Bangalore', '2409120015', '', '1', 'upload_files/candidate_tracker/42992075667_yashResume.pdf', NULL, '1', '2024-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 04:51:43', 1, '2024-09-12 05:03:27', 0, NULL, 1),
(21354, 'Padmanaban D M', '4', '9344039657', '9943464425', 'padhusmart1610@gmail.com', '1999-10-16', 24, '2', '2', 'Manjula D M', 'Telephone clerk', 8000.00, 1, 20000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2409120016', '1', '2', 'upload_files/candidate_tracker/39288689187_RESUMEpadmanaban.pdf', NULL, '1', '2024-09-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is good for process...clear explanation and approch....completed BE in chennai and schooling also....cricket player and came to tnj due to father passed away and family situation...1 and half year experience in sales in eductaion loan in hdfc...for major abroad studies,,,,have good comincation...mother worked temporary in pwd ....sister doing BA.....own house have bike and with 15 mins to office...so we can go for this candidate...expected 15 to 20k imeediate joining ...searching for job past 6 month kindly check once and confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-12 04:54:15', 104, '2024-09-12 04:46:57', 0, NULL, 1),
(21355, 'NAMBI N', '6', '7540015302', '9790517218', 'sanjay19012003@gmail.com', '2003-01-19', 21, '2', '2', 'NAGARAJAN N', 'Conductor', 30000.00, 2, 0.00, 18000.00, 'Shengottai,Tenkasi district', 'Thirumangalam,chennai', '2409120017', '50', '1', 'upload_files/candidate_tracker/58833376308_CV20240831083522491.pdf', NULL, '1', '2024-09-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and performance  is good.will check with him in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-12 04:56:16', 104, '2024-09-12 05:09:27', 0, NULL, 1),
(21356, '', '0', '8217633205', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409120018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-12 05:07:30', 0, NULL, 0, NULL, 1),
(21357, 'P Ravichandran', '5', '8946047392', '9841996075', 'ravipachaiappan1995@gmail.com', '1995-02-20', 29, '1', '2', 'V pachaiappan-kasthuri', 'Steel worker', 20000.00, 2, 18000.00, 21000.00, 'Chennai', 'Chennai', '2409120019', '', '2', 'upload_files/candidate_tracker/22315938115_RavichandranResume1995.pdfrlatest.pdf', NULL, '1', '2024-09-12', 0, '55778', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected dont have communication skill and sales skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-09-12 05:07:51', 104, '2024-09-12 05:08:26', 0, NULL, 1),
(21358, 'Ashok kumar K', '4', '9361116915', '9003285862', 'ashokalisaras@gmail.com', '2000-09-13', 23, '2', '2', 'Kaleeswaran', 'Tailor', 15000.00, 2, 0.00, 16000.00, 'Maraimalainagar', 'Maraimalainagar', '2409120020', '50', '1', 'upload_files/candidate_tracker/65333115835_CVAshokkumar0000.pdf', NULL, '1', '2024-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 05:23:05', 1, '2024-09-12 05:27:22', 0, NULL, 1),
(21359, '', '0', '7397287826', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409120021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-12 05:39:05', 0, NULL, 0, NULL, 1),
(21360, '', '0', '9551945411', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409120022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-12 05:39:46', 0, NULL, 0, NULL, 1),
(21361, 'Jeeva L', '6', '8124148486', '8148562221', 'jeevasmith27@gmail.com', '2001-03-20', 23, '2', '2', 'Devi', 'Tailor', 25000.00, 0, 280000.00, 400000.00, 'Maduravoyal, Chennai', 'Maduravoyal, Chennai', '2409120023', '1', '2', 'upload_files/candidate_tracker/83518338296_Jeevanew.pdf', NULL, '1', '2024-09-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-09-12 05:39:48', 104, '2024-09-12 11:38:33', 0, NULL, 1),
(21362, 'moham shahal', '17', '8086309485', '', 'shahalshanu85@gmail.com', '2002-10-22', 21, '2', '2', 'aboobcker', 'sys admin', 60000.00, 2, 16000.00, 20000.00, 'kerala', 'beng', '2409120024', '49', '2', 'upload_files/candidate_tracker/41166649737_cVcompressed.pdf', NULL, '1', '2024-09-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 05:45:28', 1, '2024-09-12 07:50:24', 0, NULL, 1),
(21363, 'Swetha M', '6', '9087529836', '7305741526', 'swethadh4@gmail.com', '2003-07-07', 21, '2', '2', 'Sumathi', 'Housewife', 30000.00, 1, 0.00, 18000.00, 'K. K. Nagar', 'K. K. Nagar', '2409120025', '56', '1', 'upload_files/candidate_tracker/62811092421_RESUMESwetha21.docx', NULL, '1', '2024-09-12', 0, '', '3', '59', '2024-09-16', 168000.00, '', '3', '2024-09-17', '2', 'Communication Ok Fresher for our roles Can give a try and check kindly check in 7 days', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-12 05:57:13', 104, '2024-09-12 05:08:45', 0, NULL, 1),
(21364, 'Raghul mani M', '13', '9150580631', '', 'raghulmanimba@gmail.com', '1999-11-06', 24, '3', '2', 'Murugan V', 'CRPF', 70000.00, 1, 0.00, 100000.00, 'Chennai', 'Chennai', '2409120026', '', '1', 'upload_files/candidate_tracker/67680980806_RaghulManiResume2.pdf', NULL, '1', '2024-09-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 05:59:28', 1, '2024-09-12 06:03:34', 0, NULL, 1),
(21365, 'Vishnuvarthan', '13', '8344851099', '7810002763', 'vishnuvarthan014@gmail.com', '2000-03-17', 24, '1', '2', 'Venkatesan', 'Tailor', 18000.00, 2, 0.00, 15000.00, '4/10 Ganesh Nagar Thirumullaivoyal', 'Ambattur', '2409120027', '', '1', 'upload_files/candidate_tracker/24575910055_VishnuvarthansResume.pdf', NULL, '1', '2024-09-12', 0, 'Sathi', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 06:00:41', 1, '2024-09-12 06:11:21', 0, NULL, 1),
(21366, 'Srimathi S', '13', '8072197377', '9952654688', 'srimathis934@gmail.com', '2002-05-09', 22, '3', '2', 'Subramaniyan. A', 'Driver', 20000.00, 1, 0.00, 10000.00, 'Villupuram', 'Chennai', '2409120028', '', '1', 'upload_files/candidate_tracker/36375551157_Srimathi2.pdf', NULL, '1', '2024-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 06:01:17', 1, '2024-09-12 06:15:07', 0, NULL, 1),
(21367, 'Sudarson', '31', '7810002763', '7401497312', 'starksudar.net@gmail.com', '1995-07-19', 29, '1', '2', 'Raghu', 'Fisherman', 15.00, 1, 0.00, 25000.00, 'Nagapattinam', 'Chennai', '2409120029', '', '1', 'upload_files/candidate_tracker/17909658652_Sudarsonr.pdf', NULL, '1', '2024-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 06:01:46', 1, '2024-09-12 06:10:38', 0, NULL, 1),
(21368, 'Madhumitha .SH', '6', '9345140996', '8778960826', 'Varis5874@gamil.com', '2003-07-31', 21, '3', '2', 'Hemalatha', 'House wife', 25000.00, 1, 0.00, 18000.00, 'Kk nagar', 'Kk nagar', '2409120030', '', '1', 'upload_files/candidate_tracker/66535608474_1000030411.pdf', NULL, '1', '2024-09-12', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'REJECTED - not having patience ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-12 06:02:18', 104, '2024-09-12 05:07:10', 0, NULL, 1),
(21369, 'Saranya s', '6', '9025673328', '9790906394', 'Saranyasasikumar66@gmail.com', '2004-05-13', 20, '3', '2', 'Sasikumar D', 'Sofalinear', 18000.00, 1, 0.00, 170000.00, 'No 25/3 fakkir sahib 1st street triplicane Chn 5', 'No 25/3 fakkir sahib 1st street triplicane Chn 5', '2409120031', '', '2', 'upload_files/candidate_tracker/45905639913_DOC20240912WA0006..pdf', NULL, '1', '2024-09-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is good ,also she have 3 month experiance in policy bazzar,will check with her in the training period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-12 06:16:19', 104, '2024-09-12 05:10:07', 0, NULL, 1),
(21370, 'Harini R', '31', '9894645487', '', 'harini172k@gmail.com', '2000-11-17', 23, '3', '2', 'rajendran', 'farmer', 60000.00, 1, 0.00, 2.50, 'mannargudi', 'mannargudi', '2409120032', '', '1', 'upload_files/candidate_tracker/88715513960_updatedresume.pdf', NULL, '1', '2024-09-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 06:33:11', 1, '2024-09-12 06:37:37', 0, NULL, 1),
(21371, 'Sivanthraj', '4', '9150498934', '', 'sivanthraj1920@gmail.com', '2000-08-19', 24, '2', '2', 'Sundararaj', 'Farmer', 72000.00, 1, 0.00, 15000.00, 'Tindivanam', 'Pallavaram', '2409120033', '50', '1', 'upload_files/candidate_tracker/30143037965_sivanthrajresume.pdf', NULL, '1', '2024-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 06:38:39', 1, '2024-09-12 06:41:53', 0, NULL, 1),
(21372, '', '0', '8124149428', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409120034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-12 06:42:09', 0, NULL, 0, NULL, 1),
(21373, 'Nagoor meeran A', '6', '9176739874', '9176735013', 'meeranmendoza01@gmail.com', '2003-04-10', 21, '2', '2', 'Ahamed Ansari A', 'Cooli', 14000.00, 2, 0.00, 15000.00, 'Royapettah Chennai', 'Royapettah Chennai', '2409120035', '1', '1', 'upload_files/candidate_tracker/20221277154_nagoormeeranACV3.pdf', NULL, '1', '2024-09-12', 0, '', '3', '59', '2024-09-17', 192000.00, '', '3', '2024-09-27', '2', 'Communicaiton Ok Have Exp in Altruist 8m process closed after 7days in vizza 4 in profin but didnt sustain with the companies Giving multiple reasons sustainability doubts in our profile too', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55645', '5151', '2024-09-17', 1, '2024-09-12 06:42:58', 60, '2024-09-12 07:47:47', 0, NULL, 1),
(21374, 'AROCKIYA STEEPAN RAJ A', '14', '9360757903', '', 'arockstephen.Developer@gmail.com', '2002-08-15', 22, '3', '2', 'Antony raj', 'Coolie', 10000.00, 2, 0.00, 250000.00, 'Virudhunagar', 'Chennai', '2409120036', '', '1', 'upload_files/candidate_tracker/1442284200_steepanfResume.pdf', NULL, '1', '2024-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 06:53:16', 1, '2024-09-12 06:57:14', 0, NULL, 1),
(21375, '', '0', '9751688666', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409120037', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-12 06:54:45', 0, NULL, 0, NULL, 1),
(21376, 'M.Batul fathima', '6', '9080887433', '9176873296', 'batulfathima27@gmail.com', '2004-09-27', 19, '2', '2', 'ASSIMA BANU', 'HOUSE WIFE', 50000.00, 1, 0.00, 18000.00, 'Chennai', 'Tondayarpet', '2409120038', '50', '1', 'upload_files/candidate_tracker/50412069670_BatulResume.pdf', NULL, '1', '2024-09-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She speaks well and 4 month exp in bajaj Finserv and she knows health and life product,her expectation 20k but in our side ctc would be 16k to 17k,kindly check her existing documents.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-12 07:02:13', 104, '2024-09-12 04:47:34', 0, NULL, 1),
(21377, 'Vignesh .k', '33', '9345318492', '9940683205', 'vigneshvicky7365@gmail.com', '2001-01-03', 23, '2', '2', 'Karunanidhi', 'Self employed', 100000.00, 1, 18000.00, 20000.00, 'Redhills', 'Redhills', '2409120039', '50', '2', 'upload_files/candidate_tracker/21962125318_VIGNESH.KCVUpdated11.docx', NULL, '1', '2024-09-12', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 07:05:14', 1, '2024-09-12 07:10:05', 0, NULL, 1),
(21378, 'SANTHOSH M K', '31', '7010221051', '9629723404', 'santh3005osh@gmail.com', '2000-05-30', 24, '3', '2', 'KRISHNAN M M', 'WEAVER', 20000.00, 2, 0.00, 20000.00, 'TIRUVALLUR', 'TIRUVALLUR', '2409120040', '', '1', 'upload_files/candidate_tracker/15246231385_RESUMESANTHOSHMK202409101106440000.pdf', NULL, '1', '2024-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 07:21:25', 1, '2024-09-12 07:33:27', 0, NULL, 1),
(21379, 'Rajath D R', '5', '7975415861', '9483203851', 'drrajath@gmail.com', '2000-03-24', 24, '2', '2', 'Ramanna. Naik', 'Driver', 20000.00, 1, 0.00, 25000.00, 'Puttur', 'Vijayanagar, Bangalore', '2409120041', '1', '1', 'upload_files/candidate_tracker/88171628000_RajathDR1.pdf', NULL, '1', '2024-09-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-09-12 07:37:27', 1, '2024-09-12 07:47:30', 0, NULL, 1),
(21380, '', '0', '9080479801', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409120042', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-12 07:44:35', 0, NULL, 0, NULL, 1),
(21381, 'Kavya 3', '13', '8970197124', '', 'ammuk8881@gmail.com', '2000-06-01', 24, '2', '2', 'Kumara  kalpana', 'Former', 10000.00, 1, 0.00, 20000.00, 'Hassan holenarsipura', 'Bengaluru HSR layout', '2409120043', '57', '1', 'upload_files/candidate_tracker/42727096834_kavyaRKResume23.pdf', NULL, '1', '2024-09-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 07:47:59', 1, '2024-09-12 07:54:45', 0, NULL, 1),
(21382, 'Yaswanth', '34', '8428640912', '', 'yaswanthvk1818@gmail.com', '2002-06-09', 22, '3', '2', 'Rajesh H', 'Business', 25000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2409120044', '', '1', 'upload_files/candidate_tracker/16481930195_Resume.Tech.pdf', NULL, '1', '2024-09-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 08:02:16', 1, '2024-09-12 08:05:24', 0, NULL, 1),
(21383, 'arun raj t', '6', '8056283090', '', 'www.arunthirupathi3090@gmail.com', '2002-06-29', 22, '2', '2', 'thirupathi', 'business', 40000.00, 1, 23000.00, 25000.00, 'chennai', 'chennai', '2409120045', '50', '2', 'upload_files/candidate_tracker/28623019840_Resume2024.pdf', NULL, '1', '2024-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 08:05:56', 1, '2024-09-12 08:16:10', 0, NULL, 1),
(21384, 'Gayathri M', '6', '9176140258', '', 'mgayathri2617@gmail.com', '2003-07-26', 21, '2', '2', 'Amutha', 'Tailoring', 100000.00, 1, 0.00, 20000.00, 'No 19 bathrachalam street porur', 'No 19 bathrachalam street porur', '2409120046', '50', '1', 'upload_files/candidate_tracker/12875150117_Gayu.MRESUME.pdf', NULL, '1', '2024-09-13', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not fit for the sales, communication not good,sustainability issues. she int with bank jobs. distance too long', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-09-12 08:39:44', 104, '2024-09-13 04:44:51', 0, NULL, 1),
(21385, 'Praveen kumar M P', '5', '8248960499', '7305707527', 'praveen7026kumar@gmail.com', '1999-05-05', 25, '1', '2', 'M PRABHU', 'Business', 30000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2409120047', '', '2', 'upload_files/candidate_tracker/40937779047_Cvmaker1722964871035.pdf', NULL, '1', '2024-09-12', 30, '55807', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Ready to Join from November 1st Week. Selected for Abdul Team. Immedeate Joiner', '5', '1', '', '1', '8', '', '2', '2024-11-06', '3', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-09-12 09:01:56', 60, '2024-10-26 02:39:12', 0, NULL, 1),
(21386, 'Mohanapriya s', '6', '9585259071', '8867998480', 'priyasanker277@gmail.com', '2000-07-27', 24, '2', '2', 'Mother', 'Daily wages', 85000.00, 2, 0.00, 20000.00, 'Thiruvannamalai', 'Adyar', '2409120048', '50', '1', 'upload_files/candidate_tracker/48498888299_mohanapriya.pdf', NULL, '1', '2024-09-12', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candiate full fales commitment and communication also not good , and very long disance so not fit for my team', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-12 09:21:00', 104, '2024-09-12 05:09:03', 0, NULL, 1),
(21387, 'Elavarasan.c', '4', '9597588326', '9092881447', 'sanelavarasan50161@email.com', '2002-03-09', 22, '3', '2', 'Malar/chinnadurai', 'Wage worker', 75000.00, 2, 0.00, 300000.00, 'Salem', 'Salem', '2409120049', '', '1', 'upload_files/candidate_tracker/40795252769_Resume.pdf', NULL, '1', '2024-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 09:40:58', 1, '2024-09-12 09:58:56', 0, NULL, 1),
(21388, 'T.Thamizhselvi', '6', '9176753069', '9566135069', 'thamizhselvi062004@gmail.com', '2004-06-04', 20, '3', '2', 'Tharani tharan', 'Can business', 15000.00, 0, 0.00, 15000.00, 'No.23 lal Mohammed cross street,chepauk', 'Chepauk', '2409120050', '', '1', 'upload_files/candidate_tracker/90007876529_resumetamilselvi.pdf', NULL, '1', '2024-09-12', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not having interest in sales looking for better option', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-12 09:53:58', 104, '2024-09-12 05:06:50', 0, NULL, 1),
(21389, '', '0', '8682867301', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409120051', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-12 11:49:42', 0, NULL, 0, NULL, 1),
(21390, 'M. JEEVA', '4', '7397292935', '', 'amurugan03051973@gmail.com', '2003-08-17', 21, '2', '2', 'Murugan', 'Electricion', 20000.00, 2, 0.00, 15000.00, '5/176 Nagathamman kovil street, kundrathur,', '5/176 Nagathamman kovil street, kundrathur', '2409120052', '50', '1', 'upload_files/candidate_tracker/77842258818_jeevaresume1.pdf', NULL, '1', '2024-09-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-12 12:27:55', 1, '2024-09-12 12:40:07', 0, NULL, 1),
(21391, 'Rajeshwari n', '5', '8939098193', '', 'rajeshwarinataj24@gmail.com', '1999-04-24', 25, '2', '2', 'natarajan', 'no', 40000.00, 1, 20000.00, 22000.00, 'karaikudi', 'guindy', '2409120053', '1', '2', 'upload_files/candidate_tracker/94025460612_Raji.pdf', NULL, '1', '2024-12-19', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, 1.5 yrs exp sales executive and 1.5yrs team leader. communication good. previously she is getting 20k, now she expectation 20k above. convincing skill good and field work also interested. kindly negotiate the salary and let me know the status', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2024-09-12 12:51:06', 154, '2024-12-19 12:55:57', 0, NULL, 1),
(21392, 'Vignesh M', '6', '6385636387', '9342123795', 'pavicky.1305@gmail.com', '2000-04-13', 24, '2', '2', 'Muthusamy', 'Teashop', 25000.00, 1, 15000.00, 18000.00, 'Choolaimedu,chennai,600094', 'Choolaimedu,Chennai,600094', '2409120054', '1', '2', 'upload_files/candidate_tracker/34380137371_vignesh1sepupdated.pdf', NULL, '1', '2024-09-13', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit for Sales and his existing was not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-09-12 01:13:56', 104, '2024-09-13 05:26:17', 0, NULL, 1),
(21393, 'Vasanthakumar', '4', '9361070599', '6381724644', 'vasanthji50@gmail.com', '2001-11-04', 22, '2', '2', 'Manjula', 'House wife', 30000.00, 2, 0.00, 20000.00, 'CHENGALPATTU', 'CHENGALPATTU', '2409130001', '56', '1', 'upload_files/candidate_tracker/68533577524_vasanthakumarresum.pdf', NULL, '1', '2024-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 01:03:36', 1, '2024-09-13 03:38:26', 0, NULL, 1),
(21394, 'LOGESHVARAN M', '6', '6374304737', '9345611490', 'Logeshvaranmanigandan@gmail.com', '2002-08-29', 22, '2', '2', 'Manigandan V', 'Business', 50000.00, 1, 0.00, 25000.00, 'Dindigul', 'Tambaram', '2409130002', '1', '1', 'upload_files/candidate_tracker/81198011123_logeshresumemain1.pdf', NULL, '1', '2024-09-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-13 04:17:35', 104, '2024-09-13 01:08:53', 0, NULL, 1),
(21395, 'Johnclinton', '13', '9944569153', '7402550913', 'vjohnclinton@gmail.com', '2003-06-09', 21, '3', '2', 'Vincent', 'farmer', 120000.00, 0, 0.00, 18000.00, 'Tiruvarur', 'chennai', '2409130003', '', '1', 'upload_files/candidate_tracker/11721986757_DeedyCV72.pdf', NULL, '1', '2024-09-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 04:31:40', 1, '2024-09-13 04:41:24', 0, NULL, 1),
(21396, 'Sanjana Mekkar', '13', '6381542392', '7092066211', 'sanjusana0813@gmail.com', '2004-02-13', 20, '6', '2', 'Srikanth', 'Business', 900000.00, 1, 0.00, 300000.00, 'Tirupur', 'Tirupur', '2409130004', '', '1', 'upload_files/candidate_tracker/63898799984_SanjanaResume.pdf', NULL, '1', '2024-09-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 04:39:30', 1, '2024-09-13 04:53:49', 0, NULL, 1),
(21397, 'Abinesh', '13', '9042743956', '8489586057', '01abineshkumar@gmail.com', '2003-08-15', 21, '3', '2', 'Sivakumar', 'Farmer', 22000.00, 1, 0.00, 25000.00, 'Porasapattu, kallakurichi dt.', 'Chennai', '2409130005', '', '1', 'upload_files/candidate_tracker/68052046338_ABINESHSIVAKUMARRESUME.pdf', NULL, '1', '2024-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 04:40:21', 1, '2024-09-13 04:44:21', 0, NULL, 1),
(21398, 'Gayathri', '13', '9003696084', '9940412977', 'gayathri7601@gmail.com', '2001-06-07', 23, '3', '2', 'Dhatchayani', 'Book binding', 10000.00, 2, 0.00, 1.50, 'Royapettah chennai', 'Royapettah Chennai', '2409130006', '', '1', 'upload_files/candidate_tracker/90637043149_GayathriFresherResume.pdf1.pdf', NULL, '1', '2024-09-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 04:59:49', 1, '2024-09-13 05:05:57', 0, NULL, 1),
(21399, 'PODHUMANI M', '14', '8015351217', '', 'podhumanimu@gmail.com', '2002-06-03', 22, '3', '2', 'Murugaiya', 'Farmer', 7000.00, 3, 0.00, 150000.00, '5/2, Maruthakkudi, Kundagavayal post, aranthangi.', 'Saidapet, Chennai', '2409130007', '', '1', 'upload_files/candidate_tracker/98673139125_PODHUMANIMresume.pdf', NULL, '1', '2024-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 05:23:24', 1, '2024-09-13 05:31:07', 0, NULL, 1),
(21400, 'Abinaya', '4', '8778262096', '', 'iamabinaya2003@gmail.com', '2009-09-13', 0, '2', '2', 'Suresh', 'Tailor', 30000.00, 1, 0.00, 150000.00, 'Vriddhachalam', 'Perungudi chennai', '2409130008', '56', '1', 'upload_files/candidate_tracker/10219585393_abinaya.pdf', NULL, '1', '2024-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 05:27:46', 1, '2024-09-13 05:31:28', 0, NULL, 1),
(21401, 'E kavitha', '6', '9014708292', '', 'Kavithashetty2244@gmail.com', '2002-05-15', 22, '2', '2', 'Jayachandra', 'Farmer', 10000.00, 1, 0.00, 16000.00, 'Kuppam andra Pradesh', 'BTM layout', '2409130009', '1', '1', 'upload_files/candidate_tracker/26873580232_KavithaReaume..docx', NULL, '3', '2024-09-13', 0, '', '3', '59', '2024-09-18', 204000.00, '', '3', '2024-09-18', '2', 'Communication Ok Can give a try and  check in 7 days training  and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '2024-09-18', 1, '2024-09-13 05:28:09', 60, '2024-09-18 10:27:54', 0, NULL, 1),
(21402, 'RAGAVAN R', '13', '9626036675', '', 'ragav7332@gmail.com', '2002-01-08', 22, '6', '2', 'Rajagopal R & Kavitha S', 'Poultry Farmer', 30000.00, 1, 0.00, 300000.00, 'Theni, Tamilnadu', 'Nandanam, Chennai', '2409130010', '', '1', 'upload_files/candidate_tracker/9277166884_NewFinalCV1723531275679RAGAVANR.pdf', NULL, '1', '2024-09-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 05:51:32', 1, '2024-09-13 05:56:09', 0, NULL, 1),
(21403, 'Manoj P', '13', '7550306343', '', 'mpkmanoj479@gmail.com', '2001-06-25', 23, '6', '2', 'Palanivel M', 'Driver', 30000.00, 2, 0.00, 300000.00, 'Salem', 'Chennai', '2409130011', '', '1', 'upload_files/candidate_tracker/27010083568_ManojPResume1.pdf', NULL, '1', '2024-09-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 05:51:35', 1, '2024-09-13 06:00:48', 0, NULL, 1),
(21404, 'Lokesh kumar', '6', '8838589682', '9176712069', 'lokeshkumar111m@gmail.com', '2003-10-13', 20, '2', '2', 'Venkatesan', 'Labour', 200000.00, 1, 0.00, 15000.00, 'Velachery', '6,village road,puzhuthivakkam,chennai-600091', '2409130012', '1', '1', 'upload_files/candidate_tracker/92287238049_lokeshresume.pdf', NULL, '1', '2024-10-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-09-13 05:52:51', 104, '2024-10-03 11:45:29', 0, NULL, 1),
(21405, 'Immanual Joseph', '13', '9443615291', '9791201720', 'immanualfdo@gmail.com', '2001-07-08', 0, '6', '2', 'Joseph', 'Fisherman', 25000.00, 1, 0.00, 300000.00, 'Rameswaram, Tamilnadu', 'Vadapalani, Chennai', '2409130013', '', '1', 'upload_files/candidate_tracker/88802400955_ImmanualJosephResume.pdf', NULL, '1', '2024-09-13', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-13 05:55:28', 104, '2024-09-13 11:42:24', 0, NULL, 1),
(21406, 'Indhumathi Gopalakrishnan', '6', '9342106296', '', 'Indhumathi160521@gmail.com', '2002-02-21', 22, '2', '2', 'R. Gopalakrishnan', 'Farmer', 20000.00, 3, 16000.00, 18000.00, '1/19 south Street Kuttam', 'Chennai tambaram', '2409130014', '56', '1', 'upload_files/candidate_tracker/69991293251_Indhu1.pdf', NULL, '1', '2024-09-13', 3, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-13 06:24:52', 104, '2024-09-13 05:26:03', 0, NULL, 1),
(21407, 'Wasif Hussein.A.E', '6', '7904187804', '8825958759', 'Wasifhusseina@gmail.com', '2003-08-21', 21, '3', '2', 'Ahmed Edrees', 'Business', 20000.00, 1, 0.00, 20000.00, 'Vellore', 'Vellore', '2409130015', '', '1', 'upload_files/candidate_tracker/63437458406_WasifHusseinResumeJune2024compressed.pdf', NULL, '1', '2024-09-13', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate future plan is own business  and commuication also not good so ot fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-13 06:32:29', 104, '2024-09-13 05:27:27', 0, NULL, 1),
(21408, 'Vijayaragavan. V', '6', '8098340076', '', 'Vijayragv143@gmail.com', '2004-10-25', 19, '2', '2', 'Jeevajothi. V', 'Mother', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409130016', '50', '1', 'upload_files/candidate_tracker/86160742500_Kaagaz202409131215370472632.pdf', NULL, '1', '2024-09-13', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NO BASIC SKILL', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-13 06:33:06', 104, '2024-09-13 04:44:10', 0, NULL, 1),
(21409, 'vasanthi S', '6', '8217854422', '9094171128', 'princy.joy1302@gmail.com', '1999-02-13', 25, '2', '1', 'manijabaraj', 'driver', 15000.00, 1, 0.00, 20000.00, 'chennai', 'perambur', '2409130017', '45', '1', 'upload_files/candidate_tracker/38939091851_VasanthiResume.pdf', NULL, '1', '2024-09-13', 0, '', '3', '59', '2024-09-16', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok Previous exp as teacher Diploma in teaching no clarity on the tenure she worked as teacher worked in Oppo mobile showroom fresher for our role can give a try and check', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '2024-09-16', 1, '2024-09-13 06:36:53', 60, '2024-09-13 06:53:00', 0, NULL, 1),
(21410, 'Manthra R', '6', '9514297182', '9361737916', 'manthushree0258@gmail.com', '1998-06-05', 26, '2', '1', 'Spouse', 'Assistant Relationship Manager', 36000.00, 1, 292584.00, 350000.00, 'Chennai', 'Chennai', '2409130018', '50', '2', 'upload_files/candidate_tracker/39170916124_ManthraRCV2024.pdf', NULL, '2', '2024-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 06:40:29', 1, '2024-09-13 06:49:08', 0, NULL, 1),
(21411, 'Kanagalakshmi', '4', '9092863544', '8248871138', 'amirkanagubavani@gmail.com', '1994-06-05', 30, '2', '1', 'Amirtharaj', 'Heavy driver', 10000.00, 1, 15000.00, 20000.00, 'Tuticorin', 'Chennai', '2409130019', '50', '2', 'upload_files/candidate_tracker/44544674584_kanguresume6.pdf', NULL, '1', '2024-09-13', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 06:52:20', 1, '2024-09-13 07:22:23', 0, NULL, 1),
(21412, 'Dhinesh S', '6', '8608146923', '6379461295', 'dhineshsrinivasan1915@gmail.com', '2002-05-19', 22, '2', '2', 'srinivasan', 'tnstc', 30000.00, 1, 18000.00, 25000.00, 'thiruvallur', 'koyambedu', '2409130020', '1', '2', 'upload_files/candidate_tracker/15795599877_webresume.pdf', NULL, '1', '2024-09-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok, paytm 6month experience field sales he get 18k. then he worked 2yrs health care 18k salary acc team,yesterday resigned, salary exp 19k to 20k . Communication ok.pls cross check with sustainability and distance too long tiruvallur, but they said move to koyambedu relatives home there.so pls check and  confirm the joining  date xxamp salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2024-09-13 06:55:08', 104, '2024-09-13 04:45:16', 0, NULL, 1),
(21413, 'DEEPIKA BASKAR', '6', '8056452198', '8778158282', 'deepikabaskar1704@gmail.com', '2004-04-17', 20, '2', '2', 'BASKAR S [PARENT]', 'DRIVER', 50000.00, 1, 0.00, 2.50, 'CHENNAI', 'CHENNAI', '2409130021', '50', '1', 'upload_files/candidate_tracker/11942894848_Resume.pdf', NULL, '1', '2024-09-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected -having good communication skills lets try for training period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-13 07:21:48', 104, '2024-09-13 06:50:47', 0, NULL, 1),
(21414, 'Malahar Pavan', '6', '6360960063', '6364687809', 'lyfpavan244@gmail.com', '1995-12-14', 28, '2', '2', 'Mukund', 'Salaried', 25000.00, 3, 14900.00, 20.00, 'Ayyappa Temple Gokak', 'Bangalore Bommanahalli', '2409130022', '1', '2', 'upload_files/candidate_tracker/83575797913_MalaharKulkarni.docx', NULL, '1', '2024-09-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-09-13 07:23:35', 1, '2024-09-13 07:41:00', 0, NULL, 1),
(21415, 'M. JEEVA', '6', '7397292835', '', 'amurugan03051973@gmail.com', '2003-08-17', 21, '2', '2', 'Murugan', 'Electricion', 20000.00, 2, 0.00, 15000.00, '5/176 Nagathamman kovil street, kundrathur,', '5/176 Nagathamman kovil street, kundrathur', '2409130023', '50', '1', 'upload_files/candidate_tracker/87176260393_jeevaresume1.pdf', NULL, '1', '2024-09-13', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not having patience and not interested', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-13 07:24:30', 104, '2024-09-13 05:26:34', 0, NULL, 1),
(21416, 'DHAMA MUNI LAKSHMI', '11', '7386686941', '9573793975', 'munilakshmid12@gmail.com', '2003-01-01', 21, '3', '2', 'Muneiah', 'Auto driver', 200000.00, 1, 0.00, 400000.00, 'Srikalahasti, Andhra Pradesh.', 'Velachery,chennai', '2409130024', '', '1', 'upload_files/candidate_tracker/33534034982_dhamamuniLakshmiresume.pdf', NULL, '1', '2024-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 07:29:32', 1, '2024-09-13 07:38:54', 0, NULL, 1),
(21417, 'JAKKAM SHIVA', '13', '8074959102', '8523099293', 'shivajakkam2001@gmail.com', '2001-12-29', 22, '3', '2', 'jakkam vijaya', 'conductor', 25000.00, 1, 0.00, 4.00, 'Karimnagar', 'tambram', '2409130025', '', '1', 'upload_files/candidate_tracker/97393841802_MYRESUME01.pdf', NULL, '1', '2024-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 07:54:34', 1, '2024-09-13 08:12:04', 0, NULL, 1),
(21418, 'Syed sariba M', '6', '8870153294', '7502481347', 'Syedsariba2@gmail.com', '2001-03-04', 23, '2', '1', 'Seyad mohammad', 'Safety development executive', 70000.00, 1, 0.00, 14000.00, 'Virudhunagar', 'Nanganallur chennai', '2409130026', '1', '1', 'upload_files/candidate_tracker/42764925804_Resume13.pdf', NULL, '1', '2024-09-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-13 08:01:33', 104, '2024-09-14 03:05:28', 0, NULL, 1),
(21419, 'Manoj Kumar', '13', '7867919544', '', 'mmanojkumar1366@gmail.com', '2001-11-09', 22, '6', '2', 'Jayakumar', 'It', 18000.00, 1, 0.00, 15000.00, 'Tiruppur', 'Tiruppur', '2409130027', '', '1', 'upload_files/candidate_tracker/76238498772_Manojkumar.pvcresume.pdf', NULL, '1', '2024-09-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 08:01:37', 1, '2024-09-13 08:26:36', 0, NULL, 1),
(21420, 'sanjai', '13', '7845786911', '9894786311', 'sanjairajappleid@gmail.com', '2001-01-30', 23, '3', '2', 'subramaniam', 'IT', 250000.00, 0, 0.00, 150000.00, 'tirupur', 'tirupur', '2409130028', '', '1', 'upload_files/candidate_tracker/23063646948_SanjaiResume1.pdf', NULL, '1', '2024-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 08:04:19', 1, '2024-09-13 08:18:18', 0, NULL, 1),
(21421, '', '0', '8012177162', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409130029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-13 09:05:05', 0, NULL, 0, NULL, 1),
(21422, 'Pavithra M', '13', '9342201026', '', 'pavithrapp4545@gmail.com', '2004-04-12', 20, '6', '2', 'Murali G', 'Cycle mechanic', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409130030', '', '1', 'upload_files/candidate_tracker/82148412181_CV2024090317033626.pdf', NULL, '1', '2024-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-13 10:58:33', 1, '2024-09-13 11:05:06', 0, NULL, 1),
(21423, '', '0', '9790613094', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409130031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-13 12:51:05', 0, NULL, 0, NULL, 1),
(21424, 'Velabisekh K', '31', '7200751812', '', 'velabisekh@gmail.com', '2001-07-16', 23, '3', '2', 'Kostilingam N', 'Private Employee', 84000.00, 2, 0.00, 250000.00, 'Rajapalayam, Virudhunagar', 'Annanagar East, Chennai', '2409140001', '', '1', 'upload_files/candidate_tracker/26395554478_Velabisekhk.pdf', NULL, '1', '2024-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-14 04:13:35', 1, '2024-09-14 04:16:55', 0, NULL, 1),
(21425, 'Alexpandiyan', '13', '9345232411', '6384587960', 'alexpandiyan2602@gmail.com', '2002-02-26', 22, '6', '2', 'Chelladurai', 'Agricultural wages', 540000.00, 3, 0.00, 20000.00, 'Thanjavur', 'Chennai', '2409140002', '', '1', 'upload_files/candidate_tracker/29488446924_AlexpandiyanResume1.pdf', NULL, '1', '2024-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-14 04:29:08', 1, '2024-09-14 04:32:46', 0, NULL, 1),
(21426, 'J Rajadurai', '5', '9025505178', '9092691202', 'rajadurai1426@gmail.com', '1996-12-15', 27, '2', '2', 'R Jayakumar', 'Tailor', 500000.00, 1, 2000000.00, 3500000.00, 'Chennai anna nagar', 'Chennai Anna nagar', '2409140003', '1', '2', 'upload_files/candidate_tracker/68073251556_JRajadurai1.pdf', NULL, '1', '2024-09-14', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected \ndont have communication not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2024-09-14 04:37:07', 104, '2024-09-14 03:05:44', 0, NULL, 1),
(21427, 'versha A', '11', '9444938865', '7904851713', 'versha8giri@gmail.com', '2002-05-17', 22, '6', '2', 'arunagirinathan', 'business', 60000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2409140004', '', '1', 'upload_files/candidate_tracker/10742287715_VERSHAA.pdf', NULL, '1', '2024-09-14', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-14 04:50:10', 104, '2024-09-14 10:32:59', 0, NULL, 1),
(21428, 'Aravinthan', '4', '8838868623', '9943820984', 'aravinthanmahi3299@gmail.com', '1998-04-30', 26, '2', '2', 'Kumaran', 'Meson', 18000.00, 3, 0.00, 15000.00, 'Ramanathapuram', 'Thanjavur', '2409140005', '1', '1', 'upload_files/candidate_tracker/21799869607_Resume.pdf', NULL, '1', '2024-09-14', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-14 04:50:45', 104, '2024-09-14 07:00:17', 0, NULL, 1),
(21429, 'saranya r', '13', '9884468191', '8939674681', '1320saran@gmail.com', '2000-12-13', 23, '6', '2', 'ravi', 'carpenter', 25000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2409140006', '', '1', 'upload_files/candidate_tracker/55935826267_saranyarresume.pdf', NULL, '1', '2024-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-14 05:01:32', 1, '2024-09-14 05:06:28', 0, NULL, 1),
(21430, 'Tamil Ahagan S', '6', '9042284986', '9790737828', 'artsprakash1606@gmail.com', '1998-03-21', 26, '2', '2', 'Saravanan', 'Elatrction', 400000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2409140007', '50', '2', 'upload_files/candidate_tracker/27046452290_TAMILAZHAGANRESUME.pdf', NULL, '1', '2024-09-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-14 05:05:16', 104, '2024-09-14 12:49:31', 0, NULL, 1),
(21431, 'Afrin Fathima', '6', '8072821213', '8122878340', 'Afrinsyed0704@gmail.com', '2004-03-11', 20, '2', '2', 'Syed Abthakeer', 'Self employed', 13000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2409140008', '50', '1', 'upload_files/candidate_tracker/5370735899_AfrinResumeconverted.docx', NULL, '1', '2024-09-14', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-14 05:24:12', 104, '2024-09-14 07:00:37', 0, NULL, 1),
(21432, 'Omkar udande', '5', '6360096218', '9164295750', 'omkarudande86@gmail.com', '2001-09-14', 23, '2', '2', 'Shama udande', 'Farmers', 15000.00, 2, 0.00, 18000.00, 'Bangalore', 'Bangalore', '2409140009', '57', '1', 'upload_files/candidate_tracker/39403338104_updateresume.pdf', NULL, '1', '2024-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-14 05:33:01', 1, '2024-09-14 05:45:41', 0, NULL, 1),
(21433, 'Shaheen Taj', '6', '8123886720', '7899134189', 'nehashaheen870@gmail.com', '2003-07-16', 21, '2', '2', 'Tabassum unnisa', 'Tailor', 10000.00, 0, 0.00, 17000.00, '#14/144 31 St cross Tilaknagar Jayanagar Banglore', '#14/144 31st cross Tilaknagar Jayanagar Banglore', '2409140010', '57', '1', 'upload_files/candidate_tracker/20305146483_CV2024090420464067.pdf', NULL, '1', '2024-09-14', 0, '', '3', '59', '2024-09-23', 192000.00, '', '3', '2025-01-23', '2', 'communication Ok Can be trained and check in 7 days training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '2024-09-23', 1, '2024-09-14 05:34:20', 60, '2024-09-23 10:20:41', 0, NULL, 1),
(21434, 'Gobalakrishnan m', '11', '9384547118', '', 'harishdnz0@gmail.com', '2002-09-19', 21, '6', '2', 'masilamani s', 'river', 100000.00, 0, 0.00, 180000.00, 'kangayam', 'adyar', '2409140011', '', '1', 'upload_files/candidate_tracker/50758361733_GobalakrishnanCV.docx', NULL, '1', '2024-09-14', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-14 05:46:04', 104, '2024-09-14 12:14:44', 0, NULL, 1),
(21435, 'Balaganesh.V', '13', '9940437677', '', 'bala13.venkat@gmail.com', '2000-08-13', 24, '6', '2', 'Venkatesan.S', 'Senior technician', 37000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2409140012', '', '1', 'upload_files/candidate_tracker/96863425048_BalaganeshResume.pdf', NULL, '1', '2024-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-14 06:00:40', 1, '2024-09-14 06:09:26', 0, NULL, 1),
(21436, '', '0', '8082473421', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409140013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-14 06:17:25', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21437, 'Naresh kumar V', '5', '9884178526', '8072799279', 'nk139134@gnail.com', '1993-05-11', 31, '2', '2', 'NA', 'NA', 20000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2409140014', '1', '2', 'upload_files/candidate_tracker/3789231985_NARESHKUMARVnewpdf.pdf', NULL, '1', '2024-09-14', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected \ndont have communication skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2024-09-14 06:17:36', 104, '2024-09-14 07:01:37', 0, NULL, 1),
(21438, 'J mounika', '6', '9121789131', '8019359131', 'mounikajenivaram2004@gmail.com', '2004-04-30', 20, '3', '2', 'J Gajendra', 'Shop keeper', 10000.00, 1, 0.00, 14000.00, 'Puttur', 'Banglore btm', '2409140015', '', '1', 'upload_files/candidate_tracker/91468338562_928bff1c6f36494e883bb42e281ceece.pdf', NULL, '1', '2024-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-14 06:24:36', 1, '2024-09-14 06:39:07', 0, NULL, 1),
(21439, 'V.Thanusree', '6', '7093059964', '8121942881', 'vadlamudithanusree@gmail.com', '2004-06-01', 20, '3', '2', 'Sreenu', 'Shop keeper', 10000.00, 1, 0.00, 14000.00, 'Puttur', 'Bangalore near bTM', '2409140016', '', '1', 'upload_files/candidate_tracker/89449812517_DOC20240802WA0003.pdf', NULL, '1', '2024-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-14 06:24:38', 1, '2024-09-14 06:31:20', 0, NULL, 1),
(21440, 'Selva Deepan C', '2', '8925374902', '', 'selvadeepan172@gmail.com', '2009-09-14', 0, '6', '2', 'Cherman T', 'Former', 25000.00, 2, 0.00, 20000.00, 'Tenkasi', 'Tenkasi', '2409140017', '', '1', 'upload_files/candidate_tracker/79529274330_Resume1.pdf', NULL, '1', '2024-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-14 06:33:57', 1, '2024-09-14 06:39:32', 0, NULL, 1),
(21441, 'A.Ganesh kumar', '4', '9080904424', '', 'ganeshkumar9080904424@gmail.com', '2003-03-17', 21, '6', '2', 'S.Azhagar samy', 'Cooli', 20000.00, 3, 0.00, 15000.00, 'Thanjavuar', 'Thanjavuar', '2409140018', '', '1', 'upload_files/candidate_tracker/52733049282_resume.pdf', NULL, '3', '2024-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-14 07:05:42', 1, '2024-09-14 07:12:03', 0, NULL, 1),
(21442, 'Vasanthan k', '4', '8072473421', '9344185024', 'vasanthsparrow889@gmail.com', '2003-05-28', 21, '2', '2', 'Vasanthi k', 'Farmer labour', 20000.00, 4, 0.00, 15000.00, 'Okkur', 'Okkur', '2409140019', '1', '1', 'upload_files/candidate_tracker/22109711640_myresume.pdf', NULL, '1', '2024-09-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '5', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-14 07:19:41', 104, '2024-09-14 01:15:07', 0, NULL, 1),
(21443, '', '0', '9344185024', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409140020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-14 07:25:10', 0, NULL, 0, NULL, 1),
(21444, 'Bharani s', '2', '9500819132', '9385684338', 'bharanibharani9609@gmail.com', '2001-03-18', 23, '6', '2', 'Shanmugavel R', 'Auto driver', 15000.00, 1, 0.00, 20000.00, 'Thiruvarur', 'Thiruvarur', '2409140021', '', '1', 'upload_files/candidate_tracker/68695534660_ResumeFullstack.pdf', NULL, '1', '2024-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-14 07:40:19', 1, '2024-09-14 07:45:35', 0, NULL, 1),
(21445, 'Vijay P', '13', '8825697883', '', 'vijaypoovarayar@gmail.com', '2002-06-10', 22, '3', '2', 'Poovarayar', 'Farmer', 200000.00, 2, 0.00, 250000.00, 'Cuddalore', 'Chennai', '2409140022', '', '1', 'upload_files/candidate_tracker/72731811588_VijayResume2024.pdf', NULL, '1', '2024-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-14 07:45:44', 1, '2024-09-14 07:58:00', 0, NULL, 1),
(21446, '', '0', '9344185044', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409140023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-14 07:46:43', 0, NULL, 0, NULL, 1),
(21447, 'Mujeeb Rahman', '4', '9791052287', '', 'Pandithh3@gmail.com', '2002-07-23', 22, '6', '2', 'Fathima beevi', 'None', 10000.00, 1, 0.00, 16000.00, '43,karumariamman nagar kodungaiyur', 'Same as above', '2409140024', '', '1', 'upload_files/candidate_tracker/78647801256_CV.pdf', NULL, '1', '2024-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-14 09:40:28', 1, '2024-09-14 09:43:57', 0, NULL, 1),
(21448, 'Shafana Jasmine', '6', '9176848984', '8939134141', 'jasmineshafana32@gmail.com', '2002-01-31', 22, '2', '1', 'A.M. Mohammed Jalal Thakleem', 'Working', 40000.00, 1, 0.00, 22000.00, '140,Portuguese church street, Chennai-01', '140,Portuguese Church Street, Chennai-01', '2409140025', '1', '1', 'upload_files/candidate_tracker/51453160908_ShafanaJasmineResume1.pdf', NULL, '1', '2024-09-14', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok, Communication good and convincing skills also good. pls cross check sustainability. exp 20k above but i have explained maximum 14k to 15k so pls confirm joining date thanks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2024-09-14 10:21:04', 104, '2024-09-14 04:13:28', 0, NULL, 1),
(21449, 'Aakash R', '5', '8610204511', '', 'akash861020@gmail.com', '2000-02-23', 24, '2', '2', 'Rajaraman', 'Bakery', 60.00, 1, 26000.00, 30000.00, 'Nungambakam', 'Nungambakam', '2409140026', '57', '2', 'upload_files/candidate_tracker/84775734274_AAKASHRESUME.docx', NULL, '1', '2024-09-14', 0, '', '3', '59', '2024-10-28', 320000.00, '', '4', '2025-02-22', '1', 'Communication Ok have exp in byjusxquots and other one overall 1.4yrs with 2 companies 5050 sustainability can give a commitment based increment after 3 months', '5', '1', '1', '1', '8', '', '2', '2024-09-20', '4', '1', '', '', '', '', '55656', '55557', '2024-10-28', 1, '2024-09-14 10:56:33', 60, '2024-10-26 05:02:59', 0, NULL, 1),
(21450, '', '0', '6382128612', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409140027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-14 01:13:14', 0, NULL, 0, NULL, 1),
(21451, 'A.Thofith', '6', '9884856894', '8072876851', 'thofiththofith@gmail.com', '2004-06-09', 20, '2', '2', 'Abdul Rahaman', 'Electriction', 250000.00, 1, 0.00, 180000.00, 'Karambakkm Porur chennai 600116', 'Porur', '2409140028', '1', '1', 'upload_files/candidate_tracker/97184629202_RESUMETHOFITH.docx', NULL, '1', '2024-09-16', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate future plan is only own business and it related job only , after on month joning for it course so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-14 01:51:26', 104, '2024-09-16 03:16:10', 0, NULL, 1),
(21452, 'Anish Kumar', '5', '9304775455', '', 'anish854330@gmail.com', '2002-10-05', 21, '2', '2', 'Vimal kumar manjhi', 'Business', 20000.00, 2, 32000.00, 420000.00, 'Kasba', 'Someshwara laout bilekahali bangalore', '2409140029', '1', '2', 'upload_files/candidate_tracker/43973946563_CV2024090617573521.pdf', NULL, '1', '2024-09-18', 30, '', '1', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-09-14 06:06:54', 126, '2024-09-18 01:07:40', 0, NULL, 1),
(21453, 'Yashwanth', '4', '8072364064', '', 'yashwanthmannur27@gmail.com', '2002-05-27', 22, '6', '2', 'M kavitha', 'Nil', 20000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2409150001', '', '1', 'upload_files/candidate_tracker/29432239770_YashResume2.pdf', NULL, '2', '2024-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-15 01:33:05', 1, '2024-09-15 01:39:13', 0, NULL, 1),
(21454, '', '0', '6362612867', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409150002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-15 12:27:59', 0, NULL, 0, NULL, 1),
(21455, 'SriHari G', '6', '9952156063', '9597851560', 'sriharigss46@gmail.com', '1999-06-04', 25, '2', '2', 'Sangeetha', 'Sales service co ordinator', 20000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2409150003', '1', '1', 'upload_files/candidate_tracker/64585147999_SRIHARIRESUME1page0001.pdf', NULL, '2', '2024-09-16', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate performance and communication is very low,also his voice and pronunciation is not clear', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-09-15 04:46:08', 104, '2024-09-16 03:17:51', 0, NULL, 1),
(21456, 'ABILASH KUMAR B', '33', '9003189675', '6369831714', 'abilashk840@gmail.com', '2001-05-13', 23, '4', '2', 'Bose', 'Coolie worker', 13000.00, 1, 16000.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2409160001', '', '2', 'upload_files/candidate_tracker/87167794525_ABILASHKUMARB37.pdf', NULL, '1', '2024-09-17', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 03:45:18', 1, '2024-09-16 03:59:27', 0, NULL, 1),
(21457, 'Suryakumar. S', '6', '9524448965', '9894815657', 'Suryakumar05656@gamil.com', '2001-05-04', 23, '3', '2', 'Surbamani', 'Lador', 25000.00, 2, 0.00, 20000.00, 'Salem', 'Guindy ( Chennai )', '2409160002', '', '1', 'upload_files/candidate_tracker/18302159872_Suryaresume.docx', NULL, '1', '2024-09-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-16 04:10:52', 104, '2024-09-16 12:50:33', 0, NULL, 1),
(21458, 'DHANUSH V', '6', '7305741526', '9087529836', 'dhanushvijay4567@gmail.com', '2003-04-26', 21, '2', '2', 'Vijayakumar S', 'Building Contractors', 120000.00, 1, 15000.00, 18000.00, 'No.19 Muthu Mari Amman Kovil Street', 'M.g.r nagar Chennai -78', '2409160003', '56', '2', 'upload_files/candidate_tracker/15018219278_DhanushResumeJobresume2Format7.pdf', NULL, '1', '2024-09-16', 15, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not even try to speak', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-16 04:29:19', 104, '2024-09-16 03:12:03', 0, NULL, 1),
(21459, 'ranjith', '13', '8056212046', '', 'ranjith021202@gmail.com', '2009-09-16', 0, '3', '2', 'mohan', 'auto driver', 20000.00, 2, 0.00, 240000.00, 'chennai', 'chennai', '2409160004', '', '1', 'upload_files/candidate_tracker/73274232889_RanjithProfile.pdf', NULL, '1', '2024-09-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 04:32:13', 1, '2024-09-16 04:39:53', 0, NULL, 1),
(21460, 'Harini', '4', '9566345310', '', 'harinik070802@gmail.com', '2002-08-07', 22, '6', '2', 'Kumaresan', 'Coolie', 15000.00, 1, 0.00, 18000.00, 'Kanchipuram', 'Saidapet', '2409160005', '', '1', 'upload_files/candidate_tracker/83431816529_Harinik.pdf', NULL, '1', '2024-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 04:53:31', 1, '2024-09-16 04:58:20', 0, NULL, 1),
(21461, 'Shaik Mohamed Fahad', '13', '7373675313', '9842538699', 'fahadguy8@gmail.com', '2002-09-09', 22, '4', '2', 'M. Thaiyub ahamed', 'Self employed', 12000.00, 1, 0.00, 240000.00, 'Kattimedu', 'Kattimedu', '2409160006', '', '1', 'upload_files/candidate_tracker/48200944676_RESUME.pdf', NULL, '1', '2024-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 05:07:58', 1, '2024-09-16 05:10:42', 0, NULL, 1),
(21462, 'Premsridev m', '13', '7339616512', '8675430201', 'Premsridev11@gmail.com', '2002-08-11', 22, '6', '2', 'Meenakshi sundaram k', 'Technician', 20000.00, 1, 0.00, 2.40, 'Trichy', 'Chennai Thiruvanmiyur', '2409160007', '', '1', 'upload_files/candidate_tracker/58939953831_premsridevdeveloper.pdf', NULL, '1', '2024-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 05:08:25', 1, '2024-09-16 05:12:35', 0, NULL, 1),
(21463, 'Savarimuthu A', '6', '7695854119', '7397426162', 'francisfrancis8821@gmail.com', '2004-06-12', 20, '2', '2', 'Anthonysamy', 'Driver', 12000.00, 3, 0.00, 15000.00, 'Tirunelveli', 'Pattinambakkam', '2409160008', '1', '1', 'upload_files/candidate_tracker/62797635258_resumeSavari.pdf', NULL, '1', '2024-09-17', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate coming is  very long distance  and and voce is also not clear , future plan is take care of our fatgre business , so not fit for my team ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-16 05:13:11', 104, '2024-09-17 12:34:17', 0, NULL, 1),
(21464, 'HARIHARAN M', '6', '9791570130', '', 'hariharanmari27@gmail', '2001-05-27', 23, '2', '2', 'Ganesh', 'Photography', 7000.00, 0, 0.00, 15000.00, 'Karaikudi', 'Saidapet', '2409160009', '1', '1', 'upload_files/candidate_tracker/16279610474_HARIHARANM11.pdf', NULL, '1', '2024-09-16', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-16 05:32:59', 104, '2024-09-16 03:10:23', 0, NULL, 1),
(21465, 'MOHAMED SALAHUDEEN', '6', '9789414744', '', 'sala.pnk074@gmail.com', '1995-08-24', 29, '2', '2', 'Mohamed vasim', 'Ticket excutive', 8000.00, 2, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2409160010', '50', '1', 'upload_files/candidate_tracker/70444906465_SALAHUDEENCV11.pdf', NULL, '1', '2024-09-16', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate unfit for the sales, 29yrs old 2yr exp but no payslip no offer letter, communication not good,reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-09-16 05:35:27', 104, '2024-09-16 03:11:04', 0, NULL, 1),
(21466, 'Pavan Kumar Singh', '4', '8056096653', '8754565192', 'pavankumarsingh2319@gmail.com', '2003-10-23', 20, '2', '2', 'Shiv kumar singh', 'Driver', 20000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2409160011', '50', '1', 'upload_files/candidate_tracker/11033403106_resume.com.pdf', NULL, '1', '2024-09-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 05:38:20', 1, '2024-09-16 05:45:27', 0, NULL, 1),
(21467, 'R.kiruthika devi', '21', '9123500287', '7538830150', 'kiruthikadevi35@gmail.com', '2004-07-21', 20, '6', '2', 'A.Ramesh k.gomu', 'BSNL', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Kanyakumari', '2409160012', '', '1', 'upload_files/candidate_tracker/87332678099_CV20230920103733.pdf', NULL, '3', '2024-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '4', '6', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 05:53:21', 1, '2024-09-16 08:26:35', 0, NULL, 1),
(21468, 'Vidya', '5', '9731660595', '9686464817', 'Krajannakarajanna97@qmail.com', '1998-05-08', 26, '2', '2', 'Rajanna', 'Jp Nagar', 25000.00, 1, 20.00, 20.00, 'Maddur', 'Jo nagar', '2409160013', '39', '2', 'upload_files/candidate_tracker/64336667020_vk11.docx', NULL, '1', '2024-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 05:59:25', 1, '2024-09-16 06:03:49', 0, NULL, 1),
(21469, 'Swetha V', '4', '8248648915', '7358268960', 'swethavenkatesan003@gmail.com', '2001-07-03', 23, '1', '1', 'Abishek', 'Salary', 40000.00, 1, 3.50, 5.00, 'Mint', 'Mint', '2409160014', '', '2', 'upload_files/candidate_tracker/87964993516_ResumeSwethaFormat71.pdf', NULL, '1', '2024-09-16', 3, '5111', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'dont have sales experience. telecalling also wont suitable ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-09-16 06:01:51', 104, '2024-09-16 03:17:28', 0, NULL, 1),
(21470, 'Rakshana Noora', '6', '9944161357', '', 'rakshananoora0108@gmail.com', '2001-08-01', 23, '2', '2', 'Sheik Dawood G A', 'Supervisor in Abroad', 30000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Chennai', '2409160015', '1', '1', 'upload_files/candidate_tracker/19518439708_rakshananoora.pdf', NULL, '1', '2024-09-16', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - having interest in it field', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-16 06:04:40', 104, '2024-09-16 03:13:20', 0, NULL, 1),
(21471, 'Roshan Kumar', '6', '8608675534', '9840095642', 'rk3612596@gmail.com', '2001-11-17', 22, '2', '2', 'Jeya sutha', 'Mother', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2409160016', '1', '1', 'upload_files/candidate_tracker/17229592527_CV20240809103930.pdf', NULL, '1', '2024-09-18', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication  xxamp convincing  skill is lower and not interested in sales he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-16 06:07:17', 104, '2024-09-18 05:17:42', 0, NULL, 1),
(21472, 'Suriya s', '5', '8056137661', '', 'Suriya200719@gmail.com', '1999-07-20', 25, '1', '2', 'Sravana moorthy', 'Salaried', 40.00, 2, 3.50, 5.50, 'Purasaiwalkam', 'Purasaiwalkam', '2409160017', '', '2', 'upload_files/candidate_tracker/9492954947_ResumeCVFormat71.pdf', NULL, '1', '2024-09-16', 3, '5111', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2024-09-16 06:13:40', 104, '2024-09-16 03:14:23', 0, NULL, 1),
(21473, 'M. Srikanth', '4', '6380521694', '', 'srikanthmurugan0723@gmail.com', '2001-12-07', 22, '2', '2', 'M. Murugan', 'Farmer', 25000.00, 2, 15000.00, 19000.00, 'CHENNAI', 'CHENNAI', '2409160018', '1', '2', 'upload_files/candidate_tracker/3060869624_Myresume2023..pdf', NULL, '2', '2024-09-17', 7, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-09-16 06:14:02', 104, '2024-09-17 11:44:51', 0, NULL, 1),
(21474, 'Kirubashini M', '21', '8072726482', '8015833459', 'kirubashinimurugan18@gmail.com', '2001-11-18', 22, '4', '2', 'Murugan P', 'Head master', 60000.00, 1, 15000.00, 15000.00, '2843/3A1 ponninagar,balobananthavanam Thanjavur -8', 'Thanjavur', '2409160019', '', '2', 'upload_files/candidate_tracker/36467808413_124124024KIRUBASHINI202409132309230000.pdf', NULL, '3', '2024-09-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 06:18:04', 1, '2024-09-16 06:25:35', 0, NULL, 1),
(21475, '', '0', '8056137661', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409160020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-16 06:24:04', 0, NULL, 0, NULL, 1),
(21476, 'Deepika M', '6', '6374256699', '6384116442', 'deepikadeepi833@gmail.com', '2001-07-11', 23, '1', '2', 'Parents', 'Building contractor', 40.00, 2, 15000.00, 18000.00, 'Salem', 'Saidapet, Chennai', '2409160021', '', '2', 'upload_files/candidate_tracker/7518844922_DeepikaM2.docx', NULL, '1', '2024-09-16', 1, '55746', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'previous exp is loan deparment , but currently chage sales , but she dontno for  sales , and very lacey person , so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-16 06:31:26', 104, '2024-09-16 06:56:04', 0, NULL, 1),
(21477, '', '0', '9123580251', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409160022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-16 06:39:29', 0, NULL, 0, NULL, 1),
(21478, 'Moorthi G', '6', '6385305020', '', 'Moorthimaari70@gmail.com', '2001-01-10', 23, '2', '2', 'Govinthan', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2409160023', '1', '1', 'upload_files/candidate_tracker/74652085828_MoorthiResume.pdf', NULL, '1', '2024-09-16', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'REJECTED -  NOT OKAY WITH SALARY', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-16 06:47:53', 104, '2024-09-16 03:12:50', 0, NULL, 1),
(21479, 'Malathi.R', '4', '9677746352', '', 'rmalathi045@gmail.com', '2003-11-18', 20, '2', '2', 'Navaneetham', 'Cooli', 8000.00, 1, 0.00, 13000.00, 'Thimmakudi', 'Thimmakudi', '2409160024', '1', '1', 'upload_files/candidate_tracker/51139764371_Malathiresume.pdf', NULL, '1', '2024-09-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-16 06:52:44', 104, '2024-09-19 03:36:28', 0, NULL, 1),
(21480, 'BHARATH', '6', '8754386671', '9677266721', 'bharathponmozhiyan@gmail.com', '2004-02-11', 20, '4', '2', 'Ponmozhiyan', 'Welder', 20000.00, 2, 0.00, 18000.00, 'Periya nolambur chennai - 95', 'Periya nolambur chennai - 95', '2409160025', '', '1', 'upload_files/candidate_tracker/55083727943_BHARATH3.pdf', NULL, '2', '2024-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '3', '0', '2', NULL, '5', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 06:54:55', 1, '2024-09-16 07:11:07', 0, NULL, 1),
(21481, '', '0', '9597976544', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409160026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-16 07:09:02', 0, NULL, 0, NULL, 1),
(21482, 'Gayathri Chandrasekaran', '5', '8098899883', '9344560764', 'kamaligayathri44@gmail.com', '2001-08-10', 23, '1', '2', 'Chandrasekaran', 'Sales man', 15000.00, 1, 18500.00, 24000.00, 'Kumbakonam', 'Saidapet', '2409160027', '', '2', 'upload_files/candidate_tracker/34653936288_GayathrisResume3.pdf', NULL, '1', '2024-09-16', 0, '55746', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-09-16 07:12:52', 104, '2024-09-16 03:14:05', 0, NULL, 1),
(21483, 'Keerthana K', '4', '8807032218', '9952321380', 'keerthana6752@gmail.com', '2004-07-05', 20, '2', '2', 'Karthikeyan U', 'Farmer', 8000.00, 2, 0.00, 13000.00, 'Swamimalai', 'Swamimalai', '2409160028', '1', '1', 'upload_files/candidate_tracker/80502278061_keerthanaresume.pdf', NULL, '1', '2024-09-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for profile', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-16 07:41:43', 104, '2024-09-19 03:37:00', 0, NULL, 1),
(21484, 'K. SUBASHINI', '4', '6374838503', '9894992276', 'subashini2699@gmail.com', '1999-11-26', 24, '6', '2', 'K. KENNADY', 'All India Radio (central government)', 50000.00, 2, 0.00, 15000.00, 'Ayyampettai', 'Ayyampettai', '2409160029', '', '1', 'upload_files/candidate_tracker/82391296371_K.SUBASHINI.pdf', NULL, '2', '2024-09-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 08:08:55', 1, '2024-09-16 08:22:36', 0, NULL, 1),
(21485, 'madhana gopal S', '11', '9360202218', '9841861063', 'havocmadhan200@gmail.com', '2000-10-23', 23, '6', '2', 'parent', 'fresher', 300000.00, 1, 0.00, 2.50, 'chennai', 'chennai', '2409160030', '', '1', 'upload_files/candidate_tracker/41115039828_MadhanResume.pdf', NULL, '1', '2024-09-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-16 09:06:10', 104, '2024-09-16 03:10:38', 0, NULL, 1),
(21486, 'Devi .m', '4', '9361437876', '7708731214', 'Ddevi482002@gmail.com', '2002-08-04', 22, '2', '2', 'K.mani', 'Coolie', 20000.00, 1, 0.00, 15000.00, 'Kanyakumari', 'Chengalpet', '2409160031', '1', '1', 'upload_files/candidate_tracker/27248450816_deviresume.pdf', NULL, '1', '2024-09-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-09-16 09:45:53', 104, '2024-09-16 04:26:09', 0, NULL, 1),
(21487, 'Kishore kumar .E', '6', '9600150649', '9710386212', '118csa15kishorkumar@gmail.com', '2001-02-04', 23, '2', '2', 'A ellappan', 'Singer', 25000.00, 1, 23000.00, 23000.00, 'Pulianthope Chennai', 'Pulianthope Chennai', '2409160032', '1', '2', 'upload_files/candidate_tracker/96757204822_kishoreresume.pdf', NULL, '1', '2024-09-16', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'REJECTED- NOT  HAVING COMMUNICATION SKILLS ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-16 09:51:14', 104, '2024-09-16 04:07:41', 0, NULL, 1),
(21488, 'Poovarasan', '4', '9361653316', '6379499643', 'k.poovarasan4533@gmail.com', '2003-02-24', 21, '3', '2', 'S kannaiyan', 'Designing work', 150000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2409160033', '', '1', 'upload_files/candidate_tracker/97168423721_PoovarasanK.docx', NULL, '2', '2024-09-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 10:06:39', 1, '2024-09-16 10:14:21', 0, NULL, 1),
(21489, '', '0', '7395996323', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409160034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-16 10:27:31', 0, NULL, 0, NULL, 1),
(21490, 'Ajay', '6', '6379582661', '', 'ajaygopu115@gmail', '2001-03-27', 23, '2', '2', 'G. Gopu', 'Business', 30000.00, 1, 0.00, 16000.00, 'Chennai t nagar', 'Chennai t nagar', '2409160035', '1', '1', 'upload_files/candidate_tracker/33617595055_AJAY.docx', NULL, '3', '2024-09-23', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate performance is not good ,also his communication is not Legit', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-09-16 10:49:11', 104, '2024-09-23 05:52:32', 0, NULL, 1),
(21491, 'Abish Chhetri', '2', '7349669521', '9733338198', 'abishchhetri.2502@gmail.com', '2002-10-25', 21, '3', '2', 'padam Chhetri', 'Driver', 500000.00, 1, 0.00, 1200000.00, 'Darjeeling', 'Darjeeling', '2409160036', '', '1', 'upload_files/candidate_tracker/72594875916_AbishResume313.pdf', NULL, '1', '2024-09-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 11:17:54', 1, '2024-09-16 11:21:21', 0, NULL, 1),
(21492, 'Pavithra g', '6', '7904859183', '6380406363', 'pavithra386pavi@gmail.com', '2001-07-04', 23, '2', '1', 'J. Tamil mani', 'Civil engineer', 30000.00, 0, 0.00, 17000.00, 'Kumbakonam', 'West mambalam', '2409160037', '1', '1', 'upload_files/candidate_tracker/2854330714_paviresume2.pdf', NULL, '2', '2024-09-18', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not so good at communicating and doing baed corres so unable to concentrate on this', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-16 11:23:45', 104, '2024-09-18 05:16:04', 0, NULL, 1),
(21493, 'Meganath d', '13', '8825823891', '7395971656', 'meganath.dharmadurai@gmail.com', '2002-04-23', 22, '6', '2', 'R dharmadurai', 'Provision store', 15000.00, 2, 0.00, 200000.00, 'Porur chennai', 'Porur', '2409160038', '', '1', 'upload_files/candidate_tracker/50539384240_MeganathResume1.pdf', NULL, '2', '2024-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-16 01:10:52', 1, '2024-09-16 01:19:52', 0, NULL, 1),
(21494, '', '0', '8438889262', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409160039', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-16 01:11:08', 0, NULL, 0, NULL, 1),
(21495, '', '0', '8220591548', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409160040', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-16 02:03:21', 0, NULL, 0, NULL, 1),
(21496, 'Rajasuriya', '13', '6380926281', '9944345767', 'rajasuriya03m@gmail.com', '2003-03-20', 21, '6', '2', 'Muthukumaran', 'Business', 15000.00, 1, 0.00, 20000.00, 'Madurai', 'Chennai', '2409170001', '', '1', 'upload_files/candidate_tracker/80553306177_Resume.pdf', NULL, '1', '2024-09-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 04:21:34', 1, '2024-09-17 04:25:10', 0, NULL, 1),
(21497, 'Amrish Jacob', '13', '6380897511', '', 'amrishjacob2004@gmail.com', '2004-09-15', 20, '6', '2', 'Francis john navaraj', 'Pastor', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2409170002', '', '1', 'upload_files/candidate_tracker/71079253064_AmrishJacob.pdf', NULL, '1', '2024-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 04:36:26', 1, '2024-09-17 04:40:42', 0, NULL, 1),
(21498, 'Haritha P', '6', '9943553331', '', 'harithapurushothaman10@gmail.com', '1999-10-30', 24, '2', '2', 'parent', 'clerk', 300000.00, 1, 0.00, 250000.00, 'arni', 'chennai', '2409170003', '50', '1', 'upload_files/candidate_tracker/81701170870_HariResume.pdf', NULL, '1', '2024-09-17', 0, '', '3', '59', '2024-09-23', 192000.00, '', NULL, '2024-11-11', '1', 'Communication Ok Fresher for our roles have 6 months calling exp communication good can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-09-23', 1, '2024-09-17 04:48:12', 60, '2024-09-17 04:14:30', 0, NULL, 1),
(21499, 'Manigandan T', '2', '9080440954', '9789977182', 'manigandanthanigaivasan@gmail.com', '2000-04-15', 24, '3', '2', 'Thanigaivasan', 'Cab driver', 20000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2409170004', '', '1', 'upload_files/candidate_tracker/64465114025_Resume.pdf', NULL, '1', '2024-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 04:48:18', 1, '2024-09-17 04:53:26', 0, NULL, 1),
(21500, 'Hariharan', '2', '8825758377', '', 'hariharan03malar@gmail.com', '1999-03-18', 25, '3', '2', 'Malar', 'Saree Sales', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2409170005', '', '1', 'upload_files/candidate_tracker/43900977347_HariharanResume1.pdf', NULL, '1', '2024-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 04:48:32', 1, '2024-09-17 04:52:48', 0, NULL, 1),
(21501, 'Murali Krishnan', '4', '8870950161', '7397594161', 'muralikrishnanb2003@gmail.com', '2003-06-06', 21, '2', '2', 'Balamurugan', 'Social media Managing director', 20000.00, 1, 10000.00, 18.00, 'Thanjavur', 'Thanjavur', '2409170006', '1', '2', 'upload_files/candidate_tracker/24488487385_MURALIKRISHNANResume2.pdf202405311313410000.pdf', NULL, '1', '2024-09-17', 10, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-17 05:28:48', 104, '2024-09-17 05:35:37', 0, NULL, 1),
(21502, 'Stephy Sharmile M', '4', '9345261426', '8778967764', 'stephysharmile07@gmail.com', '1997-10-07', 26, '6', '1', 'Sammoth M', 'Business', 50000.00, 2, 0.00, 18000.00, 'Tanjore', 'Tanjore', '2409170007', '', '1', 'upload_files/candidate_tracker/83278911684_StephySharmileresume.pdf', NULL, '1', '2024-10-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 05:35:10', 1, '2024-09-17 05:40:14', 0, NULL, 1),
(21503, 'V Sandhya', '6', '9160569046', '9490764862', 'sandhyavuntla8@gmail.com', '2000-03-03', 24, '2', '2', 'V Bhaskar reddy', 'Farmer', 30000.00, 3, 0.00, 18000.00, 'Kadiri , Andhrapradesh , Anantapur district', 'Marathahalli, Ashwath Nagar', '2409170008', '1', '1', 'upload_files/candidate_tracker/64463261996_SANDHYARANI.docx', NULL, '1', '2024-09-17', 0, '', '3', '59', '2024-09-20', 192000.00, '', '3', '2024-12-30', '2', 'Communication Ok 2 months exp in calling  Reason for exit seems not a valid one can give a try and check in 7 days', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '2024-09-20', 1, '2024-09-17 06:03:11', 126, '2024-09-20 01:27:52', 0, NULL, 1),
(21504, 'Santhana perumal', '13', '9500356816', '', 'Santhanaperumal2001it@gmail.com', '2001-12-24', 22, '6', '2', 'Sivan', 'Farmer', 23000.00, 1, 0.00, 150000.00, 'Tirunalvelli', 'Nungambakkam, chennai', '2409170009', '', '1', 'upload_files/candidate_tracker/61006272835_santhanperumal.pdf', NULL, '1', '2024-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 06:05:09', 1, '2024-09-17 06:26:50', 0, NULL, 1),
(21505, 'Kannan s', '4', '8608558272', '', 'kannan.sureshsasi@gmail.com', '2001-04-06', 23, '2', '2', 'Suresh', 'Fresher', 20000.00, 1, 0.00, 200000.00, 'Tharamani', 'Tharamani', '2409170010', '50', '1', 'upload_files/candidate_tracker/72769328788_KannanS2022Resume1.pdf', NULL, '1', '2024-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 06:21:56', 1, '2024-09-17 06:33:25', 0, NULL, 1),
(21506, 'Raja sekhar reddy', '6', '8309158104', '', 'roddamrajasekhar123@gmail.com', '1999-09-09', 25, '2', '2', 'R Nrashima reddy', 'Finance', 40000.00, 1, 0.00, 18000.00, 'Kadiri anathapur district Ap', 'Asthawnagar martahalli Benguluru', '2409170011', '1', '1', 'upload_files/candidate_tracker/18762444222_raju.resume1.pdf', NULL, '1', '2024-09-17', 0, '', '3', '59', '2024-09-20', 192000.00, '', '3', '2024-12-30', '1', 'Career Gap Family own business not much pressure to go wth job 5050 sustainability can check and confirm in 7days', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '2024-09-20', 1, '2024-09-17 06:28:10', 126, '2024-09-20 01:28:59', 0, NULL, 1),
(21507, 'Sharon Raj', '13', '6383412217', '', 'sharoncheran@gmail.com', '2002-03-11', 22, '6', '2', 'Suresh Babu', 'Senior Section Engineer', 100000.00, 1, 0.00, 240000.00, 'Villivakkam, chennai', 'Villivakkam, Chennai', '2409170012', '', '1', 'upload_files/candidate_tracker/48097623478_SHARONRAJupdatedresume.pdf', NULL, '1', '2024-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 06:28:26', 1, '2024-09-17 06:32:40', 0, NULL, 1),
(21508, 'sudharshan', '4', '6380323097', '', '2004sudharsun@gmail.com', '2004-03-23', 20, '2', '2', 'jothi', 'Nil', 20000.00, 1, 0.00, 15000.00, 'mylapore', 'mylapore', '2409170013', '50', '1', 'upload_files/candidate_tracker/68162684115_ImagetoPDF2024070810.47.461.pdf', NULL, '1', '2024-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 06:31:31', 1, '2024-09-17 06:52:12', 0, NULL, 1),
(21509, 'Velmurugan s', '6', '9597466608', '', 'velshankar95974@gmail.com', '2003-04-13', 21, '2', '2', 'Shankar N', 'Farmer', 150000.00, 1, 0.00, 20000.00, 'Chennai', 'Vadapalani', '2409170014', '1', '1', 'upload_files/candidate_tracker/59422298064_velCVpdf.pdf', NULL, '1', '2024-09-18', 0, '', '3', '59', '2024-09-20', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok fresher eager to learn can be trained in our roles need to check and confirm in 7days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '2024-09-20', 1, '2024-09-17 06:39:58', 60, '2024-09-18 06:37:20', 0, NULL, 1),
(21510, 'Vennila M', '4', '9626181474', '', 'nila01291@gmail.com', '2003-08-30', 21, '2', '2', 'Murugaiyan', 'Farmer', 50000.00, 3, 0.00, 14.00, 'Thanjavur', 'Thanjavur', '2409170015', '50', '1', 'upload_files/candidate_tracker/93170658274_AdobeScanAug242024.pdf', NULL, '1', '2024-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 07:27:30', 1, '2024-09-17 07:30:47', 0, NULL, 1),
(21511, '', '0', '8667301757', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409170016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-17 07:28:15', 0, NULL, 0, NULL, 1),
(21512, '', '0', '7338317313', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409170017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-17 07:33:02', 0, NULL, 0, NULL, 1),
(21513, '', '0', '6360434958', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409170018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-17 07:34:01', 0, NULL, 0, NULL, 1),
(21514, 'C.s Shyam sundar', '6', '7305424336', '9444909154', 'shaamdeepa01050213@gmail.com', '1999-02-05', 25, '2', '2', 'D.Mahalakshmi', 'ART counsellor in Govt Hospital', 50000.00, 1, 19500.00, 22000.00, 'No 5/3 Jamal mohideen Street pudupet chennai', 'No 5/3 Jamal Mohideen Street pudupet chennai', '2409170019', '50', '2', 'upload_files/candidate_tracker/21380639730_shyamsundarc.s.docx', NULL, '1', '2024-09-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-17 07:48:52', 154, '2025-04-21 11:34:02', 0, NULL, 1),
(21515, 'Akila.G', '6', '9361418892', '', 'akila10022002@gmail.com', '2002-02-10', 22, '2', '2', 'S.Gunasekaran', 'Farmar', 16000.00, 1, 0.00, 15000.00, 'Mannargudi', 'Mannargudi', '2409170020', '1', '1', 'upload_files/candidate_tracker/43409647008_CV2024071211515340.pdf', NULL, '3', '2024-09-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-17 07:56:19', 104, '2024-09-17 03:36:46', 0, NULL, 1),
(21516, 'Abinaya U.S', '13', '7010892385', '9443548661', 'abib9590@gmail.com', '2003-03-24', 21, '2', '2', 'Selvam.G', 'Carpenter', 40000.00, 1, 0.00, 20000.00, 'Kumbakkonam', 'Katangulathur', '2409170021', '2', '1', 'upload_files/candidate_tracker/83433361637_ABINAYAUSResume30082023103726.pdf', NULL, '1', '2024-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 08:00:46', 1, '2024-09-17 08:18:21', 0, NULL, 1),
(21517, 'Yasmine A', '6', '6382994266', '', 'yasminefarook96@gmail.com', '1996-01-14', 28, '2', '1', 'Farook basha', 'Spare parts maintenance', 35000.00, 1, 20000.00, 25000.00, 'Cuddalore', 'Cuddalore', '2409170022', '1', '1', 'upload_files/candidate_tracker/88209422902_YasmineResume2.pdf', NULL, '2', '2024-09-17', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '1', '1970-01-01', '4', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-17 08:40:57', 104, '2024-09-17 03:35:41', 0, NULL, 1),
(21518, 'Zeenath Sabanu M', '6', '9486835319', '', 'zeenathsabanubca05@gmail.com', '2004-06-05', 20, '2', '2', 'Mohamed Saleem S', 'Business', 10000.00, 2, 0.00, 2.50, 'Dharapuram', 'Chennai', '2409170023', '1', '1', 'upload_files/candidate_tracker/78097067924_ZeenathSabanuResume1.pdf', NULL, '1', '2024-09-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-17 09:03:58', 104, '2024-09-17 03:47:20', 0, NULL, 1),
(21519, 'Pritheesh Subramaniyan', '6', '9944500476', '8015146297', 'Pritheesh82@gmail.com', '2002-02-08', 22, '2', '2', 'Subramaniyan', 'Daily wages', 10000.00, 1, 0.00, 17000.00, 'Kumbakonam', 'Chennai,velachery', '2409170024', '1', '1', 'upload_files/candidate_tracker/63363646553_S.PritheeshResume.pdf', NULL, '2', '2024-09-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-17 09:04:26', 104, '2024-09-20 10:13:26', 0, NULL, 1),
(21520, 'Somasundaram', '4', '9360176398', '7824903856', 'somugsomug8600@gmail.com', '2001-08-05', 23, '2', '2', 'Manjula ganapathy', 'Business', 100000.00, 1, 0.00, 22000.00, 'Kancheepuram', 'Kancheepuram', '2409170025', '50', '1', 'upload_files/candidate_tracker/47534891748_SomasundaramGcv9060.pdf', NULL, '1', '2024-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 09:08:02', 1, '2024-09-17 09:12:58', 0, NULL, 1),
(21521, 'Devadharshini', '5', '9655176681', '', 'devadharshini022@gmail.com', '2002-10-20', 21, '3', '2', 'Saravanan', 'Carpenter', 80000.00, 2, 0.00, 300000.00, 'Chennai', 'Trichy', '2409170026', '', '1', 'upload_files/candidate_tracker/13165866006_ResumeDevadharshini.S.docx', NULL, '2', '2024-09-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 09:47:49', 1, '2024-09-17 09:56:38', 0, NULL, 1),
(21522, 'Jantin R', '6', '8838511259', '9500661265', 'Jantinr98@gmail.com', '1998-09-21', 25, '2', '2', 'Robinson j', 'Manager', 100000.00, 1, 0.00, 18000.00, 'Tuticorin', 'Chennai', '2409170027', '50', '1', 'upload_files/candidate_tracker/63203298205_JantinRResume1.PDF', NULL, '1', '2024-09-18', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication  xxamp convincing  skill is lower and not interested in sales he is interested in customer support ', '5', '1', '', '4', '6', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-17 10:01:05', 104, '2024-09-18 07:04:32', 0, NULL, 1),
(21523, 'Anitha', '4', '7358936639', '8189998281', 'angelanitha2002@gmail.con', '2002-01-01', 22, '6', '2', 'Vairamuthu', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Srivilliputhur', 'Srivilliputhur', '2409170028', '', '1', 'upload_files/candidate_tracker/40985052866_AnithaResume.pdf', NULL, '3', '2024-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 10:03:20', 1, '2024-09-17 10:10:18', 0, NULL, 1),
(21524, 'Shaheen fathima s', '4', '9941986754', '', 'shaheenfathima476@gmail.com', '2003-11-20', 20, '4', '2', 'parents', 'catering', 15000.00, 1, 0.00, 17000.00, 'Royapettah', 'Royapettah', '2409170029', '', '1', 'upload_files/candidate_tracker/48419660760_ShaheenfathimaNewResume.pdf', NULL, '1', '2024-09-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-17 10:17:10', 1, '2024-09-17 12:39:41', 0, NULL, 1),
(21525, 'Jayalakshmi m', '5', '9843107326', '8940647326', 'jayalakshmimurugan01@gmail.com', '2001-06-12', 23, '2', '2', 'Murugan G, Manimangalai m', 'Weaver', 10000.00, 3, 13000.00, 16000.00, 'Arakkonam', 'Ice house, chennai', '2409170030', '50', '2', 'upload_files/candidate_tracker/30911816088_jayalakshmiM.resume.pdf.pdf', NULL, '1', '2024-09-18', 3, '', '3', '59', '2024-09-23', 168000.00, '', '3', '2024-11-02', '2', 'Communication Ok Have Exp in non voice more than 1yr can give a try and check in 7 days Open for telecalling', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-09-23', 1, '2024-09-17 12:35:53', 60, '2024-09-21 03:43:11', 0, NULL, 1),
(21526, '', '0', '6385811405', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409170031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-17 12:46:59', 0, NULL, 0, NULL, 1),
(21527, '', '0', '7899381130', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409170032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-17 02:52:55', 0, NULL, 0, NULL, 1),
(21528, 'Nalini', '6', '9597726113', '', 'nalinishiva2002@gmail.com', '2002-01-01', 22, '2', '2', 'Shivalingam ,shakunthala', 'Coolie', 30000.00, 1, 0.00, 18000.00, 'Edapalayam Village, ponneri Tk,tamil nadu', 'Pallaavaram chennai', '2409170033', '1', '2', 'upload_files/candidate_tracker/8015934504_24392956ef1f4c84a8d82dbd7ebff51f.pdf', NULL, '1', '2024-09-18', 0, '', '3', '59', '2024-09-20', 180000.00, '', '3', '2024-11-09', '2', 'Communication Ok Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '2024-09-20', 1, '2024-09-17 04:16:07', 60, '2024-09-23 10:16:40', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21529, 'PRIYANKA G', '6', '8939337875', '6379863725', 'priyaroshinj@gmail.com', '2003-06-08', 21, '2', '2', 'SARASWATI', 'HOUSE WIFE', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409180001', '50', '1', 'upload_files/candidate_tracker/4026329098_G.PRIYANKAResume12.pdf', NULL, '1', '2024-09-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-18 03:34:39', 104, '2024-09-19 01:09:14', 0, NULL, 1),
(21530, 'Dhesika K', '13', '9498890480', '7639898472', 'dhesika1807@gmail.com', '2002-07-18', 22, '6', '2', 'Kubendran', 'Farmer', 76000.00, 1, 0.00, 18000.00, 'Thiruvarur', 'Chennai', '2409180002', '', '1', 'upload_files/candidate_tracker/8749041397_DhesikKCV..docx', NULL, '1', '2024-09-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 04:22:12', 1, '2024-09-18 04:32:42', 0, NULL, 1),
(21531, 'J.Abinaya', '13', '7540067373', '', 'abinayajay2002@gmail.com', '2002-11-08', 21, '6', '2', 'N.Jayaraman', 'Driver', 8000.00, 1, 0.00, 3.00, 'Thirukovilur', 'Chennai', '2409180003', '', '1', 'upload_files/candidate_tracker/9582936950_JABINAYAResume.pdf', NULL, '1', '2024-09-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 04:30:47', 1, '2024-09-18 04:44:24', 0, NULL, 1),
(21532, 'S.Banumathi', '6', '6379363558', '9176348874', 'banuvs18@gmail.com', '2002-06-18', 22, '3', '2', 'Srinivasan', 'Painter', 10000.00, 1, 0.00, 15000.00, 'Teynampet', 'Teynampet', '2409180004', '', '2', 'upload_files/candidate_tracker/86807859897_Banumathiresume.pdf', NULL, '1', '2024-09-18', 6, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for tele calling', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-18 04:37:50', 104, '2024-09-18 05:10:57', 0, NULL, 1),
(21533, 'P. Sundarsan', '4', '8825849024', '7845330459', 'sundaresan042000@gamil.com', '2000-12-04', 23, '3', '2', 'S. Palanivel', 'Engineer', 10000.00, 1, 0.00, 50000.00, 'Naducauvery', 'Naducauvery', '2409180005', '', '1', 'upload_files/candidate_tracker/35588911477_Sundarresume.pdf', NULL, '1', '2024-09-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 04:44:00', 1, '2024-09-18 04:52:59', 0, NULL, 1),
(21534, 'A.Arsili masy', '6', '9884836444', '9962700302', 'masym7499@gmail.com', '2002-11-04', 21, '2', '2', 'Mariyastella', 'Housewife', 10000.00, 1, 15000.00, 15000.00, 'Thousand lights', 'Thousand lights', '2409180006', '50', '2', 'upload_files/candidate_tracker/43509235788_ArsiliMasy.docx', NULL, '1', '2024-09-18', 6, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'silent person and basic skill very low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-18 04:48:41', 104, '2024-09-18 05:06:03', 0, NULL, 1),
(21535, 'Sathish H', '13', '9003481835', '', 'sathishharibabu8@gmail.com', '1999-08-08', 25, '6', '2', 'Haribabu V', 'Teacher', 65000.00, 1, 0.00, 10000.00, 'Srivilliputtur', 'Porur', '2409180007', '', '1', 'upload_files/candidate_tracker/60933699611_SathishResume.pdf', NULL, '1', '2024-09-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 05:03:57', 1, '2024-09-18 05:11:11', 0, NULL, 1),
(21536, 'Charles.F', '6', '6369735806', '', 'Charleslurdu@gmail.com', '2003-06-11', 21, '2', '2', 'Francis. C', 'Cooli', 85000.00, 1, 0.00, 16000.00, '1/135,madha kovil street,thandavasamuthiram,604151', 'No.7 thamarai avenue, nerkundrum, Chennai 600107', '2409180008', '50', '1', 'upload_files/candidate_tracker/19668382797_CharlesChristresume.pdf', NULL, '1', '2024-09-18', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate future plan is it and own business plan , so just temporveryley surch for the job , so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-18 05:06:21', 104, '2024-09-18 05:17:23', 0, NULL, 1),
(21537, 'Kamalesh P', '13', '9940826140', '', 'kamaleshp.dev@gmail.com', '2003-05-21', 21, '3', '2', 'Pazhamalai S', 'Graduated', 20000.00, 1, 0.00, 350000.00, 'Puducherry', 'Chennai', '2409180009', '', '1', 'upload_files/candidate_tracker/68524474282_KamaleshRes1.pdf', NULL, '1', '2024-09-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 05:10:03', 1, '2024-09-18 05:13:13', 0, NULL, 1),
(21538, 'Musharraf Kulam Ahamed', '13', '9791417705', '', 'musharraf230102@icloud.com', '2002-01-23', 22, '6', '2', 'ahamed labbai', 'business man', 20000.00, 0, 0.00, 20000.00, 'velachery', 'velachery', '2409180010', '', '1', 'upload_files/candidate_tracker/23553241155_ResumeMusharrafKulamAhamed.pdf', NULL, '1', '2024-09-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 05:28:52', 1, '2024-09-18 05:35:55', 0, NULL, 1),
(21539, 'Aravinthraj', '13', '9514579915', '8110951595', 'aravinthgopal12900@gmail.com', '2000-09-12', 24, '3', '2', 'Gopal', 'Farmer', 15000.00, 1, 0.00, 30000.00, 'Salem', 'Chennai', '2409180011', '', '1', 'upload_files/candidate_tracker/26961674718_Aravinthresume.pdf', NULL, '1', '2024-09-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 05:29:01', 1, '2024-09-18 05:32:00', 0, NULL, 1),
(21540, 'shanmugavel', '13', '9789129910', '', 'shanmugavels152@gmail.com', '2003-03-03', 21, '3', '2', 'saravanan', 'mechanic', 25000.00, 1, 0.00, 20000.00, 'cumbum', 'velachery', '2409180012', '', '1', 'upload_files/candidate_tracker/31076332278_ShanmugavelResume1.pdf', NULL, '1', '2024-09-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 05:34:36', 1, '2024-09-18 05:58:40', 0, NULL, 1),
(21541, 'Anniseffi', '6', '9384735990', '6385821714', 'anniseffi5122000@gmail.com', '2000-12-05', 23, '2', '2', 'A. Selva Raj', 'Supervisor', 25000.00, 2, 0.00, 18000.00, '6-30, Main road, Ramanathichan puthur- 629402', '6-30, Main road, Ramanathichan puthur- 629402', '2409180013', '50', '1', 'upload_files/candidate_tracker/58858586931_CV2024091715440978.pdf', NULL, '1', '2024-09-20', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is not good and performance is low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-18 05:46:43', 104, '2024-09-20 04:08:17', 0, NULL, 1),
(21542, 'Abdullah', '4', '7358934402', '9361397134', 'mda944113@gmail.com', '2003-01-19', 21, '2', '2', 'Single', 'Tally, computer operator', 12000.00, 2, 0.00, 16000.00, 'Thanjavur', 'Thanjavur', '2409180014', '1', '1', 'upload_files/candidate_tracker/33832947633_AbdullahCVvvv.docx', NULL, '1', '2024-09-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-18 05:47:04', 104, '2024-09-18 02:39:14', 0, NULL, 1),
(21543, 'sundarrajan.v', '6', '9940681687', '', 'sundar91995@gmail.com', '1995-01-09', 29, '2', '2', 'anusuya.v', 'home maker', 15000.00, 2, 18500.00, 26000.00, 'maduravoyal', 'maduravoyal', '2409180015', '1', '2', 'upload_files/candidate_tracker/31639762982_rAJANMAIL.pdf', NULL, '1', '2024-09-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR SALES', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-18 05:52:49', 104, '2024-09-18 05:11:52', 0, NULL, 1),
(21544, 'PREETHI.J', '6', '9677112200', '', 'PREETHIJAGAN@Gmail.com', '2003-01-31', 21, '2', '2', 'D.jaganathan', 'Coolie', 30000.00, 1, 14000.00, 18000.00, 'Oldwashermenpet', 'Oldwashermenpet', '2409180016', '1', '2', 'upload_files/candidate_tracker/923379931_PREETHIRESUMECopy11.pdf', NULL, '1', '2024-09-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-09-18 05:54:36', 104, '2024-09-18 05:14:57', 0, NULL, 1),
(21545, 'R.Prince Rajora', '6', '8279819774', '9025006795', 'Rajoraprince0206@gmail.com', '2002-01-06', 22, '2', '2', 'Raju Rajora', 'Worker', 250000.00, 1, 0.00, 20000.00, 'Chrompet', 'Chrompet', '2409180017', '57', '1', 'upload_files/candidate_tracker/34973919520_princeresume.pdf', NULL, '1', '2024-09-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 06:09:42', 1, '2024-09-18 06:17:07', 0, NULL, 1),
(21546, 'Khaja Moideen', '6', '6369260324', '8870739754', 'khajamoideen559@gmail.com', '1998-10-18', 25, '2', '2', 'Sulthan Alaudeen', 'Auditor', 35000.00, 4, 252000.00, 310000.00, 'Chennai', 'Chennai', '2409180018', '1', '2', 'upload_files/candidate_tracker/6941998238_khajaresume1.docx', NULL, '1', '2024-09-18', 30, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'job needed person and age 26 so lets we try with 15 to 16k ctc and voice good ,3 years gap and 1 exp in iT,PREFER IMMEDIATE JOINING', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-18 06:11:59', 104, '2024-09-18 05:14:24', 0, NULL, 1),
(21547, 'Vimala', '5', '9363577395', '7448463082', 'divi022712@gmail.com', '2002-01-27', 22, '2', '2', 'Palani', 'Financer', 50000.00, 1, 3500000.00, 4500000.00, 'Shenoy nagar chennai', 'Shenoy nagar chennai', '2409180019', '1', '2', 'upload_files/candidate_tracker/31748057522_CV20240803092449.pdf', NULL, '1', '2024-10-18', 0, '', '2', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for RM role\nhaving experience  in sales \nhave to negotiate the package', '5', '1', '', '1', '8', '', '2', '2025-08-20', '2', '1', '', '', 'H1017', '', '55735', '55557', '1970-01-01', 1, '2024-09-18 06:23:49', 104, '2025-08-19 12:03:17', 0, NULL, 1),
(21548, 'Manoj kumar S', '6', '7708682456', '', 'Manojkumarmano047@gmail.comcom', '2002-06-16', 22, '2', '2', 'Selvaraj. D', 'Own business', 20000.00, 1, 0.00, 17000.00, 'Kumbakonam', 'Anna nagar ,chennai', '2409180020', '50', '1', 'upload_files/candidate_tracker/92711757011_manojkumarptf.pdf', NULL, '1', '2024-09-18', 0, '', '3', '59', '2024-09-23', 192000.00, '', '5', '1970-01-01', '1', 'Communication OK Fresher Career Gap Need to check in 7 days training and confirm', '5', '1', '', '1', '3', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '2024-09-23', 1, '2024-09-18 06:33:12', 60, '2024-09-21 03:22:38', 0, NULL, 1),
(21549, 'guduru prasanna reddy', '6', '9014112917', '', 'prassunani175@gmail.com', '2003-05-17', 21, '2', '2', 'ram krishna reddy', 'farmer', 20000.00, 2, 0.00, 25000.00, 's r nagar hyderabad', 'marathallli bangalore', '2409180021', '57', '1', 'upload_files/candidate_tracker/64969978582_GuduruPrasannaReddy6.pdf', NULL, '1', '2024-09-18', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lack of confident interested in IT field', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2024-09-18 06:33:29', 126, '2024-09-18 01:04:15', 0, NULL, 1),
(21550, 'sumithra', '6', '9080164835', '7092755999', 'sumianbu07@gmail.com', '1995-02-16', 29, '2', '1', 'prasath', 'business', 30000.00, 2, 18000.00, 20000.00, 'chennai', 'chennai', '2409180022', '50', '2', 'upload_files/candidate_tracker/14390046807_sumithrresume.pdf', NULL, '1', '2024-09-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Core IT vacancies just for time being  she is open to work but focusing IT only will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-18 06:36:40', 104, '2024-09-18 05:07:06', 0, NULL, 1),
(21551, 'Syed sha M', '6', '9655609661', '8925154975', 'syeddukesha@gmail.com', '2002-06-27', 22, '2', '2', 'Mohammed jalaluddin', 'Fisherman', 15000.00, 2, 14000.00, 18000.00, '7/23 west street mandapam Ramanathapuram 623518', 'Triplicane', '2409180023', '42', '2', 'upload_files/candidate_tracker/8291045844_Syedsha2023.docx', NULL, '1', '2024-09-18', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate very low voice and communication also not well so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-18 06:48:15', 104, '2024-09-18 05:17:05', 0, NULL, 1),
(21552, '', '0', '8124421127', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409180024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-18 07:29:29', 0, NULL, 0, NULL, 1),
(21553, 'Dineshkumar C', '13', '9629025814', '9080924626', 'dineshbtech26@gmail.com', '2003-02-23', 21, '3', '2', 'chandrasekaran', 'farmer', 960000.00, 2, 0.00, 30000.00, 'Tirupathur', 'Tirupathur', '2409180025', '', '1', 'upload_files/candidate_tracker/10320796386_ResumeUpdated1.pdf', NULL, '1', '2024-09-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 07:48:32', 1, '2024-09-18 07:52:39', 0, NULL, 1),
(21554, 'Yasser Arafeth', '13', '8248187932', '', 'yasseraraf09@gmail.com', '2001-05-09', 23, '3', '2', 'Sheik Mydeen Abdul Kader', 'Accounts Manager', 60000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2409180026', '', '1', 'upload_files/candidate_tracker/16874888630_YasserCV.docx', NULL, '1', '2024-09-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 07:49:38', 1, '2024-09-18 07:57:05', 0, NULL, 1),
(21555, 'Saravanakumar G', '13', '9491401854', '8098401854', 'saravanakumar3645212@gmail.com', '2001-07-14', 23, '3', '2', 'Govindaswamy', 'Senior process analyst', 23000.00, 3, 0.00, 300000.00, 'Nagari', 'Chennai', '2409180027', '', '1', 'upload_files/candidate_tracker/65860600841_SARAVANAKUMARGResume.pdf', NULL, '1', '2024-09-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 07:50:31', 1, '2024-09-18 07:58:08', 0, NULL, 1),
(21556, '', '0', '9345499688', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409180028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-18 07:51:54', 0, NULL, 0, NULL, 1),
(21557, 'Richard A', '6', '9790188251', '7550285312', 'richardabraham29022004@gmail.com', '2004-02-29', 20, '2', '2', 'Narayanamma', 'Relationship Executive', 17000.00, 3, 0.00, 20000.00, 'Vellore', 'Chennai', '2409180029', '58', '1', 'upload_files/candidate_tracker/93123890979_CV2024081415300398.pdf', NULL, '1', '2024-09-18', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-18 07:57:40', 104, '2024-09-18 05:06:22', 0, NULL, 1),
(21558, 'Akash s', '6', '8489572949', '9677516807', 'akashsuresh348@gmail.comfor', '2004-04-05', 20, '2', '2', 'S latha', 'Relationship executive', 15000.00, 2, 0.00, 20000.00, 'Vellore', 'Chennai', '2409180030', '58', '1', 'upload_files/candidate_tracker/63615001671_Akashresume.pdf', NULL, '1', '2024-09-18', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not having  communication skills and english knowledge so basic no suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-18 07:58:07', 104, '2024-09-18 05:15:46', 0, NULL, 1),
(21559, 'EASTER RAJ I', '33', '6382612867', '9943427962', 'easterrajAjithkumar@gmail.com', '1998-11-30', 25, '3', '2', 'Immanuel', 'Farmer', 17000.00, 1, 15000.00, 20000.00, 'Ambattur', 'Ambattur', '2409180031', '', '2', 'upload_files/candidate_tracker/99902290144_63826128671.pdf', NULL, '1', '2024-09-19', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 08:04:03', 1, '2024-09-18 08:09:58', 0, NULL, 1),
(21560, 'EASTER RAJ I', '33', '6382612861', '', 'easterrajajithkumar@gmail.com', '1998-11-30', 25, '2', '2', 'Immanuel', 'Farmer', 17000.00, 1, 0.00, 25000.00, 'Ambattur', 'Ambattur', '2409180032', '26', '1', 'upload_files/candidate_tracker/99540239735_63826128671.pdf', NULL, '1', '2024-09-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 08:13:57', 1, '2024-09-18 08:18:10', 0, NULL, 1),
(21561, 'Surendar V', '6', '9790925693', '6381367292', 'surendarv403@gmail.com', '2004-04-19', 20, '1', '2', 'Devi v', 'Housewife', 15000.00, 1, 0.00, 17000.00, 'Chennai', 'Saidapet', '2409180033', '', '1', 'upload_files/candidate_tracker/99768528553_29b852ff9428451d8a6e5c1295146a40.docx202408051359380000.pdf202409032311550000.pdf', NULL, '1', '2024-09-18', 0, 'p1349', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-18 09:30:09', 104, '2024-09-21 01:15:56', 0, NULL, 1),
(21562, 'princy m', '6', '9345333802', '9345050937', 'princycathleen@gmail.com', '2002-08-13', 22, '2', '2', 'dhana lakshmi', 'ouse wife', 200000.00, 2, 0.00, 140000.00, 'kodambakkam', 'choolaimedu', '2409180034', '1', '1', 'upload_files/candidate_tracker/38773899980_SHAMINI1.pdf', NULL, '1', '2024-09-19', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-09-18 12:49:49', 104, '2024-09-19 03:45:42', 0, NULL, 1),
(21563, 'M.RAM KISHORE', '6', '9345363565', '9080535506', 'kishore2000.RK@gmail.com', '2002-11-02', 21, '2', '2', 'KALIMUTHU', 'WORKING IN PRIVATE COMPANY', 25000.00, 1, 0.00, 25000.00, 'NEYVELI', 'CHENNAI', '2409180035', '1', '1', 'upload_files/candidate_tracker/28149494735_CV2024090509423581.pdf', NULL, '1', '2024-09-19', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candiate very slow voice and not understanding for my word so rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-18 01:59:47', 104, '2024-09-19 03:46:26', 0, NULL, 1),
(21564, 'Rajesh', '33', '9841622440', '', 'rajeshskyline2000@gmail.com', '1984-01-27', 40, '3', '1', 'Maheshwari', 'Auditor', 45000.00, 1, 365000.00, 400000.00, 'Chennai', 'Chennai', '2409180036', '', '2', 'upload_files/candidate_tracker/12186314849_DOC20240816WA0005.doc', NULL, '1', '2024-09-19', 6, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-18 02:17:45', 1, '2024-09-18 02:25:04', 0, NULL, 1),
(21565, 'Thenammai Karuppiah', '6', '9840751366', '8220082811', 'thenammaikaruppiah@gmail.com', '2002-12-31', 21, '2', '1', 'Karuppiah Subramanian', 'Process Associate', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2409180037', '50', '1', 'upload_files/candidate_tracker/29614595729_ThenammaisResume.pdf', NULL, '1', '2024-09-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-18 03:56:01', 104, '2024-09-19 03:34:24', 0, NULL, 1),
(21566, 'rajeswari R', '6', '8072538784', '8610615209', 'rajeswarirairaja008@gmail.com', '2003-06-16', 21, '2', '2', 'raja', 'farmer', 60000.00, 2, 0.00, 25000.00, 'mayiladuthurai', 'mayiladuthurai', '2409180038', '1', '1', 'upload_files/candidate_tracker/71630301834_Resume.pdf', NULL, '2', '2024-09-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher job needed person in hand 13k salary lets try 7 days and we will finalize', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-18 03:56:16', 104, '2024-09-28 05:30:16', 0, NULL, 1),
(21567, 'Pragadeesh V', '6', '9944850696', '9585967118', 'pragaapragadeesh26@gmail.com', '2003-05-26', 21, '2', '2', 'Vengatesan T', 'Farmar', 150000.00, 1, 180000.00, 240000.00, '110,Vadakku pattam Valangaimaan TK, Thiruvarur DT', 'Vadapalani,Chennai', '2409190001', '1', '2', 'upload_files/candidate_tracker/17147343229_PragadeeshV.pdf', NULL, '1', '2024-09-20', 15, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate very slow process and very low understanding , cus also need non voice process , because past exp is also non voice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-19 12:50:54', 104, '2024-09-20 04:07:23', 0, NULL, 1),
(21568, 'Dhivya.K', '4', '7418275962', '8925385005', 'dhivyakaliyaperumal2004@gmail.com', '2004-09-11', 20, '2', '2', 'Kaliyaperumal.V', 'Farmer', 25000.00, 3, 0.00, 16000.00, '1/157,North Naidu Street, Pillaiyarpatti,Thanjavur', '1/157,North Naidu Street,Pillaiyarpatti,Thanjavur', '2409190002', '1', '1', 'upload_files/candidate_tracker/37396254928_DhivyaKaliyaperumalResume11.pdf', NULL, '1', '2024-09-19', 0, '', '3', '59', '2024-09-24', 153000.00, '', '5', '1970-01-01', '2', 'Communication Ok Salary Exp is there 5050 sustainability core IT but now for telecalling need to check in 7 days and confirm', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-09-24', 1, '2024-09-19 02:52:07', 60, '2024-09-21 03:12:41', 0, NULL, 1),
(21569, 'Anju A P', '6', '9778336066', '', 'anjuap656@gmail.com', '1998-07-04', 26, '2', '2', 'Pavaneshan A P', 'Auto driver', 100000.00, 0, 0.00, 20000.00, 'Kasaragod', 'Btm 1st Stage ,bangalore', '2409190003', '1', '1', 'upload_files/candidate_tracker/10458821314_AnjuResume.pdf', NULL, '1', '2024-09-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-09-19 04:37:50', 1, '2024-09-19 04:44:44', 0, NULL, 1),
(21570, 'JAYARAJ JR', '13', '6381714800', '', 'jaraross21@gmail.com', '2002-05-21', 22, '3', '2', 'Jayaraman', 'Daily wage', 6000.00, 2, 0.00, 3.00, 'Valaiyathur Mottur, Ranipet -DT', 'Porur Chennai', '2409190004', '', '1', 'upload_files/candidate_tracker/89754555912_CV2024083018144194.pdf', NULL, '1', '2024-09-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-19 04:49:21', 104, '2024-09-19 10:49:59', 0, NULL, 1),
(21571, 'Pragatheswaran M', '4', '6382226707', '8489481584', 'pragathespragathes3@gmail.com', '2004-04-11', 20, '2', '2', 'Mathiyazhgan.M', 'Farmer', 76000.00, 3, 0.00, 16000.00, 'East Street,sermanallur, , Ammapettai, Thanjavur', 'East Street,sermanallur, Ammapettai, Thanjavur', '2409190005', '1', '1', 'upload_files/candidate_tracker/29860842061_Pragathesresume.pdf', NULL, '1', '2024-09-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustainability issue', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-19 04:56:09', 104, '2024-09-19 03:38:13', 0, NULL, 1),
(21572, '', '0', '8428218312', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-19 05:04:48', 0, NULL, 0, NULL, 1),
(21573, 'A Gokul', '6', '7845892703', '6381677583', 'gokulaalive@gmail.com', '2003-12-29', 20, '2', '2', 'M. anantha Kumar', 'B.com (Cs)Corporate Secretaryship', 60000.00, 1, 0.00, 18000.00, 'Ashok nagar Chennai', 'Ashok nagar Chennai', '2409190007', '1', '1', 'upload_files/candidate_tracker/24958824803_A.GokulResume09072024.pdf', NULL, '1', '2024-09-19', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-19 05:11:54', 104, '2024-09-19 03:36:14', 0, NULL, 1),
(21574, 'Kalki A', '4', '9159192820', '9600779920', 'kalkiuzo@gmail.com', '2002-06-10', 22, '2', '2', 'R.Anbalagan', 'Driver', 72000.00, 1, 0.00, 15000.00, 'CRC karadhai, Balabanadhavanam, Thanjavur', 'CRC karadhai Balabanadhavanam Thanjavur', '2409190008', '1', '1', 'upload_files/candidate_tracker/62326653573_kalki..Thanjavur.docx', NULL, '1', '2024-09-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for profile', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-19 05:25:30', 104, '2024-09-19 03:38:34', 0, NULL, 1),
(21575, 'G.ishwarya', '6', '9345809730', '8428465913', 'Ishwaryaguru09@gmail.com', '2004-01-09', 20, '2', '2', 'T.Gurunathan', 'Marble contractor', 30000.00, 2, 0.00, 15000.00, 'Madurai', 'Tnagar chennai', '2409190009', '50', '1', 'upload_files/candidate_tracker/25263129856_IshwaryaResume1.pdf', NULL, '1', '2024-09-20', 0, '', '3', '59', '2024-09-23', 192000.00, '', NULL, '2026-02-03', '2', 'Communication Fresher need to train from scratch can give a try and check in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '2024-09-23', 1, '2024-09-19 05:26:14', 60, '2024-09-20 07:28:50', 0, NULL, 1),
(21576, 'JAYALAKSHMI G', '6', '7904507218', '', 'jayalakshmig3006@gmail.com', '2001-06-30', 23, '2', '2', 'Gangadaran', 'No', 20000.00, 2, 0.00, 16000.00, 'Salem', 'Chennai, T.nahar', '2409190010', '50', '1', 'upload_files/candidate_tracker/64559825730_JAYALAKSHMIGresume2.pdf', NULL, '1', '2024-09-20', 0, '', '3', '59', '2024-09-23', 168000.00, '', NULL, '2025-06-06', '2', 'Communication Ok Fresher for Telecalling Family need is there can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-09-23', 1, '2024-09-19 05:27:09', 60, '2024-09-21 03:01:30', 0, NULL, 1),
(21577, 'Sivasaran', '4', '9345757249', '9487910510', 'Sivasaransri2003@gmailcom', '2003-12-04', 20, '1', '2', 'Thamilvanan.G sumathi.t', 'Farmer', 70000.00, 1, 0.00, 15000.00, 'Karaikal main road sikandapuram', 'Karaikal main road sikandapuram', '2409190011', '', '1', 'upload_files/candidate_tracker/11109332933_SIVASARAN.pdf', NULL, '1', '2024-09-19', 0, 'No', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 05:31:44', 1, '2024-09-19 05:39:34', 0, NULL, 1),
(21578, 'Pradeep R', '6', '9360700300', '8870286466', 'pradeeppradeepr63@gmail.com', '2002-03-28', 22, '2', '1', 'Ravi M', 'Labour work', 20000.00, 1, 15000.00, 18000.00, 'Old Washermenpet', 'Old Washermenpet', '2409190012', '1', '2', 'upload_files/candidate_tracker/78187829372_PRADEEP2.pdf', NULL, '1', '2024-09-19', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-19 05:36:57', 104, '2024-09-19 03:45:55', 0, NULL, 1),
(21579, 'Mangaiyarkarasi.S', '4', '8489987231', '8940833109', 'mangaisingaram1999@gmail.com', '1999-01-06', 25, '2', '2', 'Singaram. R', 'Idole maker', 20000.00, 2, 0.00, 15000.00, 'Darasuram', 'Darasuram', '2409190013', '1', '1', 'upload_files/candidate_tracker/45624104314_mangaiyarkarasis.pdf', NULL, '1', '2024-09-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-19 05:37:49', 104, '2024-09-20 04:02:26', 0, NULL, 1),
(21580, 'Ajay.P', '6', '7338797302', '9384269046', 'ajaypalani7297@gmail.com', '2001-03-30', 23, '2', '2', 'Leela.F', 'Retired teacher', 80000.00, 2, 14000.00, 20000.00, 'Villivakkam', 'Villivakkam', '2409190014', '1', '2', 'upload_files/candidate_tracker/92073784633_AjayResumeNewupdated2.pdf', NULL, '1', '2024-09-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-09-19 05:41:05', 104, '2024-09-19 04:49:27', 0, NULL, 1),
(21581, 'Yasarhabth', '4', '6381167811', '9600062565', 'yaserarafath679@gmail.com', '2002-02-14', 22, '2', '2', 'Mohammed Ibrahim', 'Chicken stall', 20000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2409190015', '50', '1', 'upload_files/candidate_tracker/75426288469_Yasar.pdf', NULL, '1', '2024-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 05:49:32', 1, '2024-09-19 05:53:03', 0, NULL, 1),
(21582, 'Pasupathi', '4', '8883027478', '', 'pasupathisams@gmail.com', '1995-07-27', 29, '1', '2', 'Raman', 'Farmer', 40000.00, 2, 0.00, 15000.00, 'Subramaniyan Kovil Street, Thirukkanurpatti', 'Same as permanent', '2409190016', '', '1', 'upload_files/candidate_tracker/99665250774_PASU1.pdf', NULL, '1', '2024-09-19', 0, 'R55575', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-19 05:55:58', 104, '2024-09-19 03:41:05', 0, NULL, 1),
(21583, 'Vigneshmurugaiyan', '4', '7094047950', '', 'Vigneshmurugaiyan19@gmail.com', '1997-05-19', 27, '1', '2', 'M.Murugaiyan', 'Conductor', 20000.00, 1, 13000.00, 15000.00, 'Thirukkanurpatti', 'Thirukkanurpatti', '2409190017', '', '2', 'upload_files/candidate_tracker/3256341827_VIGNESHM.docx', NULL, '1', '2024-09-19', 0, 'R55575', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-19 05:57:10', 104, '2024-09-19 03:41:30', 0, NULL, 1),
(21584, 'BALAJI n', '6', '7550186453', '7358229228', 'balag412777@gmail.com', '2000-06-17', 24, '2', '2', 'NARAYANAN S', 'Mason', 50000.00, 1, 0.00, 15000.00, 'Tondiarpet, Chennai', 'Tondiarpet, Chennai', '2409190018', '50', '1', 'upload_files/candidate_tracker/5773727175_Balajiresumep1.pdf', NULL, '1', '2024-09-19', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not having good communication skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-19 05:57:19', 104, '2024-09-19 06:58:33', 0, NULL, 1),
(21585, 'Nithish', '13', '6369668389', '8903161134', 'Nithishnit03@gmail.com', '2003-06-14', 21, '3', '2', 'John', '100000', 300000.00, 2, 0.00, 18000.00, 'Tirunelveli,palayamkotai', 'Adambakam,chennai', '2409190019', '', '1', 'upload_files/candidate_tracker/19215982494_NITresume.pdf', NULL, '1', '2024-09-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 06:05:25', 1, '2024-09-19 06:09:49', 0, NULL, 1),
(21586, 'Navin', '4', '6382904105', '', 'Navin.babu.2000@gmail.com', '2000-07-09', 24, '2', '2', 'Balasubramaniam', 'Business', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409190020', '50', '1', 'upload_files/candidate_tracker/85834085294_Resume.pdf', NULL, '1', '2024-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 06:06:04', 1, '2024-09-19 06:09:29', 0, NULL, 1),
(21587, 'Nithya A', '6', '9361594292', '6369935410', 'nithyakn07@gmail.com', '2002-07-28', 22, '2', '2', 'Annamalai', 'Former', 80000.00, 2, 15000.00, 22000.00, 'Villupuram', 'Saidapet', '2409190021', '50', '2', 'upload_files/candidate_tracker/74002171242_NithyaResume.pdf', NULL, '1', '2024-09-19', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not able to explain about their old \noffice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-19 06:06:18', 104, '2024-09-19 03:46:10', 0, NULL, 1),
(21588, 'Nandini', '6', '9986284431', '', 'nandinipadwalkar@gmail.com', '1993-10-11', 30, '2', '1', 'Karthik', 'House wife', 15000.00, 0, 21000.00, 25000.00, 'Bangalore jaynagar 4th t block', 'Bangalore jaynagar 4th t block', '2409190022', '57', '2', 'upload_files/candidate_tracker/38480565350_RESUMENANDINI1.pdf', NULL, '1', '2024-09-19', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Doubt with sustain lagged with knowledge', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2024-09-19 06:16:02', 126, '2024-09-19 06:06:39', 0, NULL, 1),
(21589, 'Srivant.R', '6', '6380571109', '9952915177', 'srivantrajeshkumar@gmail.com', '2003-11-07', 20, '2', '2', 'S.rajesh kumar', 'B.com (Cs)Corporate Secretaryship', 40000.00, 0, 0.00, 18000.00, 'Kolathur Sri Venkateswara nagar', 'Chennai', '2409190023', '1', '1', 'upload_files/candidate_tracker/54740257422_SrivantRRESUME.pdf', NULL, '1', '2024-09-19', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication skill is lower and not interested in sales he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-19 06:16:08', 104, '2024-09-19 03:47:05', 0, NULL, 1),
(21590, 'Meeran mohideen.s', '6', '8925748038', '', 'meeranmohideen04082001@Gmail.com', '2001-08-04', 23, '4', '2', 'samsuthal .M', 'Tailor', 25000.00, 1, 17500.00, 18000.00, 'Chennai', 'Chennai', '2409190024', '', '2', 'upload_files/candidate_tracker/13180192970_S.MEERANMOHIDEEN1.pdf', NULL, '1', '2024-09-19', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication and performance is not good,also he not active', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-19 06:21:30', 104, '2024-09-19 03:46:53', 0, NULL, 1),
(21591, 'BALAJI', '4', '7358229164', '9840131064', 'balaji02102003@gmail.com', '2003-10-02', 20, '2', '2', 'MARIYAMMAL', 'House wife', 15000.00, 2, 0.00, 15000.00, '103/43, kcgarden 4th Street perambur Chennai 82', '103/43, KC garden 4th Street perambur Chennai 82', '2409190025', '50', '1', 'upload_files/candidate_tracker/54705807506_BALAJI.pdf', NULL, '1', '2024-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 06:22:19', 1, '2024-09-19 06:28:35', 0, NULL, 1),
(21592, 'Vinitha S', '11', '9444455873', '9940059125', 'vinithasathya2001@gmail.com', '2001-03-02', 23, '6', '2', 'Sathya', 'Executive admin', 35000.00, 1, 225000.00, 250000.00, 'Puzhal, Chennai-66', 'Puzhal, chennai-66', '2409190026', '', '2', 'upload_files/candidate_tracker/64355404160_Vinitharesumelst.docx', NULL, '1', '2024-09-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-19 06:48:17', 104, '2024-09-19 03:47:53', 0, NULL, 1),
(21593, 'Priya dharshini', '11', '9790712069', '9080105272', 'priyagowthaman02@gmail.com', '2003-02-08', 21, '6', '2', 'Gowtham P.R', 'EPFO', 30000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2409190027', '', '1', 'upload_files/candidate_tracker/41576494630_Resume.docx', NULL, '1', '2024-09-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-19 06:50:51', 104, '2024-09-19 03:45:26', 0, NULL, 1),
(21594, 'Mohamed Rifsan', '4', '6381933124', '', 'rifsanmohamed786@gmail.com', '2004-03-22', 20, '2', '2', 'Jarji Mohamed', 'driver', 12000.00, 1, 0.00, 1.80, 'mayiladuthurai', 'chrompet, chennai', '2409190028', '42', '1', 'upload_files/candidate_tracker/48294209279_MOHAMED.pdf', NULL, '1', '2024-09-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 06:58:58', 1, '2024-09-19 07:07:28', 0, NULL, 1),
(21595, 'B.Srinithi', '4', '7358692630', '7358259756', 'Srinithiib2003@gmail.com', '2003-08-22', 21, '2', '2', 'M.Babu', 'Welder', 11000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2409190029', '50', '1', 'upload_files/candidate_tracker/9742273966_WhiteandBeigeMinimalistGraphicDesignerProfessionalCvResume2.pdf', NULL, '1', '2024-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 07:22:39', 1, '2024-09-19 07:29:15', 0, NULL, 1),
(21596, 'Anusiya Perumal', '4', '7305519162', '8608609697', 'Anushiya.11122003@gmail.com', '2003-12-11', 20, '2', '2', 'D. Perumal', '-', 12000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2409190030', '50', '1', 'upload_files/candidate_tracker/32148887960_AnushiyaPerumal.Resume1.pdf', NULL, '1', '2024-09-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 07:22:46', 1, '2024-09-19 07:30:30', 0, NULL, 1),
(21597, 'Sakthiram G', '4', '8940733081', '', 'adhisakthi2002@gmail.com', '2002-03-21', 22, '2', '2', 'GANGADHARAN', 'Businessman', 30000.00, 108, 0.00, 18000.00, 'Srimushnam', 'Pallavaram', '2409190031', '', '1', 'upload_files/candidate_tracker/5509031215_Resume1.pdf', NULL, '1', '2024-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 07:43:32', 1, '2024-09-19 07:53:48', 0, NULL, 1),
(21598, 'Abimanyu Vs', '4', '6374168426', '', 'abimanyuvs@gmail.com', '2002-06-29', 22, '2', '2', 'Vijayadharmaraj D', 'Farmer', 15000.00, 1, 0.00, 18.00, 'Srimushnam Cuddalore district', 'Chennai', '2409190032', '50', '1', 'upload_files/candidate_tracker/39570327563_CV2024070223470987.pdf', NULL, '1', '2024-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 07:43:34', 1, '2024-09-19 07:51:11', 0, NULL, 1),
(21599, 'Balaji', '13', '7811887009', '9677286205', 'balajiudhayakumar2@gmail.com', '2002-11-02', 21, '3', '2', 'UdhayaKumar', 'Sales man', 18000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409190033', '', '1', 'upload_files/candidate_tracker/33291853955_balajiresume.pdf', NULL, '1', '2024-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 07:43:37', 1, '2024-09-19 07:46:32', 0, NULL, 1),
(21600, 'Vijay', '4', '8778180258', '', 'vkisbackin2001@gmail.com', '2001-06-01', 23, '2', '2', 'Elumalai', 'Former', 20000.00, 0, 0.00, 18000.00, 'Tiruvannamalai', 'Pallavaram', '2409190034', '50', '1', 'upload_files/candidate_tracker/70179881131_Vijayresume.pdf', NULL, '1', '2024-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 07:43:53', 1, '2024-09-19 07:49:08', 0, NULL, 1),
(21601, 'Elangovan p', '33', '7200422240', '', 'elangovanpadmanabun@gmail.com', '2004-05-19', 20, '4', '2', 'Padmanaban g', 'Employee', 200000.00, 1, 0.00, 17000.00, '412. Lotus apartment nimilichery thirunindravoor', '412 lotus apartment nimilichery thirunindravoor', '2409190035', '', '1', 'upload_files/candidate_tracker/50987818781_ElangovanResume.pdf', NULL, '2', '2024-09-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 07:43:57', 1, '2024-09-19 07:49:35', 0, NULL, 1),
(21602, 'Jeevitha P', '11', '7639024765', '', 'jeevithapurushoth@gmail.com', '2000-05-23', 24, '6', '2', 'Purushoth', 'Business', 20000.00, 2, 0.00, 20000.00, 'Nellikuppam', 'Chennai', '2409190036', '', '1', 'upload_files/candidate_tracker/21713243878_Jeevitharesume1.pdf', NULL, '1', '2024-09-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-19 09:08:18', 104, '2024-09-19 03:41:44', 0, NULL, 1),
(21603, 'E.vidhya', '4', '8940953375', '9942603375', 'Vidhya082003@gmail.com', '2003-12-08', 20, '2', '2', 'ELANGOVAN G', 'Saloon', 15000.00, 2, 0.00, 20000.00, 'Tanjavur', 'Tanjavur', '2409190037', '1', '1', 'upload_files/candidate_tracker/56545544688_VidhyaResume1.docx', NULL, '1', '2024-09-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-19 10:48:32', 104, '2024-09-20 06:26:30', 0, NULL, 1),
(21604, 'G P IMACULATE NANCY', '5', '9677145018', '9677101124', 'imaculatenancy23@gmail.com', '2000-07-23', 24, '2', '2', 'J S GNANAPRAKASAM', 'Retired person', 40000.00, 1, 35000.00, 45000.00, 'No 45 prakasam salai Broadway Chennai 1', 'No 45 prakasam salai Broadway Chennai 1', '2409190038', '1', '2', 'upload_files/candidate_tracker/64386294007_Nancyresume.pdf.pdf', NULL, '1', '2024-09-20', 90, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-09-19 02:07:17', 104, '2024-11-12 04:29:30', 0, NULL, 1),
(21605, '', '0', '9043658462', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409190039', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-19 02:27:06', 0, NULL, 0, NULL, 1),
(21606, 'Giri.S', '13', '6379535723', '', 'giri20020901@gmail.com', '2002-09-01', 22, '3', '2', 'Settu.P', 'Agriculture', 54000.00, 3, 0.00, 300000.00, 'Vilvarani, Tiruvannamalai', 'Vadapalani,chennai', '2409190040', '', '1', 'upload_files/candidate_tracker/71640429814_GIRISResume.pdf', NULL, '1', '2024-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 02:42:19', 1, '2024-09-19 02:47:49', 0, NULL, 1),
(21607, 'RAGUL VISHWA R', '13', '9361102142', '', 'ragulvishwa42@gmail.com', '2002-12-23', 21, '3', '2', 'Parent', 'Shopkeeper', 100000.00, 1, 0.00, 300000.00, 'Thoothukkudi', 'Chennai', '2409190041', '', '1', 'upload_files/candidate_tracker/59834833289_RAGULVISHWABesantresume1.pdf', NULL, '1', '2024-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 03:31:46', 1, '2024-09-19 03:38:47', 0, NULL, 1),
(21608, 'Praveen Kumar V', '13', '6369587211', '', 'praveenv8902@gmail.com', '2002-09-08', 22, '3', '2', 'Vengatesan', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Trichy', 'Chennai', '2409190042', '', '1', 'upload_files/candidate_tracker/77785176184_PraveenKumarV.pdf', NULL, '1', '2024-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 04:03:39', 1, '2024-09-19 04:09:34', 0, NULL, 1),
(21609, 'Subin', '13', '6382458012', '9344400839', 'robinvprs4300@gmail.com', '2001-07-15', 23, '3', '2', 'Velladurai', 'Business man', 15000.00, 1, 0.00, 300000.00, 'Thoothukudi', 'Thoothukudi', '2409190043', '', '1', 'upload_files/candidate_tracker/93226742732_SubinPi.pdf', NULL, '1', '2024-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-19 04:08:36', 1, '2024-09-19 04:20:55', 0, NULL, 1),
(21610, 'Ramya. R', '4', '6369539859', '9361483113', 'rammiravi02@gmail.com', '2002-09-17', 22, '2', '2', 'Ravi. R', 'Farmer', 5000.00, 4, 0.00, 13000.00, '2/99, chinna theru, maharajapuram.', '2/99, chinna theru, maharajapuram', '2409200001', '1', '1', 'upload_files/candidate_tracker/93176087560_ramyaresume.pdf', NULL, '1', '2024-09-20', 0, '', '3', '59', '2024-09-26', 156000.00, '', NULL, '2024-12-30', '2', 'Communication Ok can give a try and check only thing is the distance need to see', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-09-26', 1, '2024-09-20 03:56:48', 60, '2024-09-26 10:42:29', 0, NULL, 1),
(21611, 'Sundaram.L', '13', '9710996236', '7395945394', 'lsundaram2001@gmail.com', '2001-08-09', 23, '3', '2', 'Loganathan.V', 'Tailor', 72000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2409200002', '', '1', 'upload_files/candidate_tracker/9667970682_SUNDARAM.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 04:09:27', 1, '2024-09-20 04:21:47', 0, NULL, 1),
(21612, 'Rajeshprabha R', '6', '8668022264', '8489610237', 'prabharajasekaran06@gmail.com', '2002-07-06', 22, '2', '2', 'SASIKALA R (MOTHER)', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Avadi', '2409200003', '50', '1', 'upload_files/candidate_tracker/78830186191_RAJESHPRABHAR1.pdf', NULL, '1', '2024-09-20', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not ok,communication not well. distance too long avadi.reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-09-20 04:18:41', 104, '2024-09-20 04:03:28', 0, NULL, 1),
(21613, 'MADESHWARAN M', '13', '9025882300', '', 'madeshmadesh2019@gmail.com', '2002-10-03', 21, '6', '2', 'muniyappan k', 'Driver', 30000.00, 1, 0.00, 30000.00, 'Tiruvannamalai', 'Pallavaram', '2409200004', '', '1', 'upload_files/candidate_tracker/80197480631_MadeshwaranMCV.pdf', NULL, '1', '2024-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 04:21:04', 1, '2024-09-20 04:24:38', 0, NULL, 1),
(21614, 'Jawahar M', '13', '6369634213', '6369112532', 'jawaharm596@gmail.com', '2001-08-03', 23, '6', '2', 'Mohanraj', 'Labour', 12000.00, 1, 0.00, 4.00, 'Salem', 'Chennai', '2409200005', '', '1', 'upload_files/candidate_tracker/34091965844_Jawaharresume1.pdf', NULL, '1', '2024-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 04:26:49', 1, '2024-09-20 04:41:45', 0, NULL, 1),
(21615, 'Saminathan A', '13', '9600756495', '', 'asaminathan402@gmail.com', '2002-07-29', 22, '3', '2', 'Arumugam M', 'Fa', 7000.00, 2, 0.00, 2.50, 'Perambalur', 'Chennai', '2409200006', '', '1', 'upload_files/candidate_tracker/921906521_SaminathanResume.pdf', NULL, '1', '2024-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 04:32:11', 1, '2024-09-20 04:35:54', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21616, 'PREMKUMAR V', '6', '9790042288', '', 'premkumarvpk1997@gmail.com', '1997-04-19', 27, '2', '2', 'VEERAMANI M', 'Farmer', 18000.00, 1, 0.00, 23000.00, 'Madurai', 'Madurai', '2409200007', '45', '1', 'upload_files/candidate_tracker/44741916179_PREMKUMARV.pdf', NULL, '1', '2024-09-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '3', '', '2', '2024-09-27', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-20 04:32:31', 104, '2024-09-20 04:03:41', 0, NULL, 1),
(21617, 'Naveen kumar Y', '5', '9566359455', '9677804373', 'ynaveengym@gmail.com', '2000-01-09', 24, '2', '2', 'Yesudass', 'Own business', 20000.00, 2, 16.50, 18.00, 'Vellore', 'Triplicane', '2409200008', '1', '2', 'upload_files/candidate_tracker/83951922882_resumenaveen4.pdf', NULL, '1', '2024-09-20', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Already working in icici 5month but interested in it field ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-20 04:34:30', 104, '2024-09-20 04:08:44', 0, NULL, 1),
(21618, 'Akash .R', '31', '8608841928', '', 'akashzzh146@gmail.com', '2003-04-11', 21, '3', '2', 'Father: g.ravindran, Mother: R.Dhanalakshmi', 'Father: stell polisher, mother: trailor', 35000.00, 1, 0.00, 15000.00, 'Ambattur ,Chennai', 'Ambattur, Chennai', '2409200009', '', '1', 'upload_files/candidate_tracker/12389144665_AKASHRESUME.pdf', NULL, '1', '2024-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 04:36:00', 1, '2024-09-20 04:41:30', 0, NULL, 1),
(21619, 'KAVIN', '13', '6385630649', '6385656156', 'ssvkavin@gmail.com', '2003-06-02', 21, '6', '2', 'SIVAKUMAR.S', 'Conductor', 25000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2409200010', '', '1', 'upload_files/candidate_tracker/34133507361_Kavindeveloperresume.pdf', NULL, '1', '2024-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 04:43:03', 1, '2024-09-20 04:46:22', 0, NULL, 1),
(21620, 'Megashini', '13', '6385776817', '', 'megashini27@gmail.com', '2002-11-27', 21, '6', '2', 'Aruna', 'Dailywages', 10000.00, 1, 0.00, 15000.00, 'Chinnasalem', 'Chennai', '2409200011', '', '1', 'upload_files/candidate_tracker/82350431804_MegashiniKRES.pdf', NULL, '1', '2024-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 04:43:07', 1, '2024-09-20 04:46:21', 0, NULL, 1),
(21621, 'Karthikeyan A', '6', '9025390825', '9936194965', 'samkarti123@gmail.com', '2002-03-17', 22, '1', '2', 'Arumugam', 'Revenue inspector', 30000.00, 1, 0.00, 15000.00, 'Thiruvarur', 'Vadapalani', '2409200012', '', '1', 'upload_files/candidate_tracker/64977575606_KARTHIRES1compressed.pdf', NULL, '1', '2024-09-20', 0, 'Info Hr solution', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate future pan is flim makerand ow business on native place , so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-20 04:47:10', 104, '2024-09-20 04:07:32', 0, NULL, 1),
(21622, 'Jayasurya', '13', '6381638016', '', 'jayasurya1304@gmail.com', '2003-04-13', 21, '6', '2', 'Dhananalan', 'Driver', 30000.00, 1, 0.00, 15000.00, '211, mgr street , thuvakudimalai, trichy-22', 'Thiruvanmiyur , Chennai', '2409200013', '', '1', 'upload_files/candidate_tracker/3833049974_JAYASURYARESUME.pdf', NULL, '1', '2024-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 04:59:01', 1, '2024-09-20 05:04:54', 0, NULL, 1),
(21623, 'Divya.B', '6', '9626005492', '7540028491', 'dd1010205@gmail.com', '2003-07-20', 21, '2', '2', 'Vijaya', 'House wife', 15000.00, 1, 20000.00, 22000.00, 'Kanchipuram', 'Kanchipuram', '2409200014', '56', '2', 'upload_files/candidate_tracker/22458187627_divyaresume.docx', NULL, '1', '2024-09-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fir for sales and apperance was not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-20 05:02:07', 104, '2024-09-20 04:06:33', 0, NULL, 1),
(21624, 'Rajalakshmi A', '4', '8608772457', '', 'rajianbu99@gmail.com', '2001-07-22', 23, '2', '2', 'Anbumani S', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Koradacheri', 'Manonmani nagar ,thanjavur', '2409200015', '1', '1', 'upload_files/candidate_tracker/22610418656_RAJALAKSHMICV1.pdf', NULL, '1', '2024-09-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-20 05:09:11', 104, '2024-09-20 04:01:52', 0, NULL, 1),
(21625, 'G.keerthana', '6', '9360346618', '', 'keerthanagandhi21@gmail.com', '2003-05-21', 21, '2', '2', 'P.Gandhi', 'Building contractor', 20000.00, 2, 19500.00, 22000.00, 'Arakkonam', 'Arakkonam', '2409200016', '1', '2', 'upload_files/candidate_tracker/95411500393_DOC20240820WA0016..pdf', NULL, '1', '2024-09-20', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication was not so good and  not ok with salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-20 05:22:36', 104, '2024-09-20 06:26:53', 0, NULL, 1),
(21626, 'Laxman', '4', '6385932159', '', 'laxmansundharam31@gmail.com', '2003-11-08', 20, '2', '2', 'Meenakshi Sundaram', 'Bus driver', 25000.00, 1, 0.00, 2.50, 'Thanjavur', 'Thanjavur', '2409200017', '1', '1', 'upload_files/candidate_tracker/72061109706_LAXMAN.pdf', NULL, '1', '2024-09-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is ok with the profile completed bba ...and course studied SAP and have no idea to join sap related job....expected 13 to 14k kindly check once house near by 1km....father bus driver ...have no laptop ready to arrange,,,immediate joining kindly check once', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-20 05:30:05', 104, '2024-09-20 04:02:06', 0, NULL, 1),
(21627, 'PREMKUMAR D', '6', '9787188750', '', 'premdd230@gmail.com', '1999-12-14', 24, '2', '2', 'Dominic Savio p', 'Farmer', 25000.00, 1, 0.00, 1.80, 'Nagapattinam', 'Porur, Chennai', '2409200018', '57', '1', 'upload_files/candidate_tracker/51718066311_PREMKUMARCAFSINFOTECHRESUME.pdf', NULL, '1', '2024-09-20', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skkill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-20 05:32:16', 104, '2024-09-20 04:01:18', 0, NULL, 1),
(21628, 'Keerthana Sri', '6', '9363351605', '8778806589', 'keerthanasri267@gmail.com', '2003-11-30', 20, '2', '2', 'Vijaylakshmi', 'Home maker', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Porur', '2409200019', '1', '1', 'upload_files/candidate_tracker/92892898532_CV2024090120060481.pdf', NULL, '1', '2024-09-20', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not ok with  working time', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-20 05:43:56', 104, '2024-09-20 04:06:56', 0, NULL, 1),
(21629, 'Khader moideen', '6', '9941694490', '7092975213', 'Khader2312@gmail.com', '2003-12-23', 20, '3', '2', 'Parveen banu', 'No', 150000.00, 2, 0.00, 150000.00, '150000', 'Poonamallee', '2409200020', '', '1', 'upload_files/candidate_tracker/73482931102_cv.pdf', NULL, '1', '2024-09-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-20 05:48:37', 104, '2024-09-20 11:59:06', 0, NULL, 1),
(21630, 'saravanadevi', '4', '9344948769', '', 'saravanadevikpr@gmail.com', '2001-09-09', 23, '2', '2', 'murugesan', 'farmer', 60000.00, 3, 0.00, 12000.00, 'thanjavur', 'thanjavur', '2409200021', '1', '1', 'upload_files/candidate_tracker/92069505675_06e483f5201d45f684d05daa20a45aa6202409171309450.pdf', NULL, '1', '2024-09-25', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'UNFIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-20 05:56:28', 104, '2024-11-28 07:06:09', 0, NULL, 1),
(21631, 'niresh m', '6', '9841768384', '8838619939', 'nireshmu@gmail.com', '2003-04-20', 21, '2', '2', 'munusamy', 'daily wages', 12000.00, 1, 0.00, 15000.00, 'madhavaram', 'madhavaram', '2409200022', '42', '1', 'upload_files/candidate_tracker/26453987309_NewResume.pdf', NULL, '3', '2024-09-20', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'silent person and very slow', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-20 06:23:24', 104, '2024-09-20 04:01:30', 0, NULL, 1),
(21632, 'HariHaran', '6', '9894188265', '6374018576', 'thariharanerd@gmail.com', '1992-02-15', 32, '2', '2', 'T Satya(mother)', 'Housewife', 20000.00, 1, 0.00, 25000.00, 'Erode', 'Guindy', '2409200023', '50', '2', 'upload_files/candidate_tracker/43825802334_T.HARIHARAN4007.docx', NULL, '1', '2024-09-20', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication and performance is not good,also he not active and expected high package', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-20 06:23:58', 104, '2024-09-20 04:07:52', 0, NULL, 1),
(21633, 'Jayasuriya V', '13', '9894749747', '', 'Jayasuriyav11@gmail.com', '2000-12-11', 23, '6', '2', 'Vanachinnappan C', 'Assistant Post Master(Retired)', 27000.00, 2, 0.00, 120000.00, 'Coimbatore', 'Coimbatore', '2409200024', '', '1', 'upload_files/candidate_tracker/12279718646_Resume1.pdf', NULL, '1', '2025-02-03', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-20 06:31:22', 154, '2025-02-03 12:16:03', 0, NULL, 1),
(21634, 'Tarun Marisetti', '5', '8374049919', '', 'tarunveerdeep@gmail.com', '2002-09-20', 22, '2', '2', 'rajaratnam', 'house wife', 15000.00, 1, 0.00, 20000.00, 'andhrapradesh', 'Bangalore', '2409200025', '1', '1', 'upload_files/candidate_tracker/89916760993_tarunveerdeepgmail.comresume1.pdf', NULL, '1', '2024-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-09-20 06:32:01', 1, '2024-09-20 06:48:32', 0, NULL, 1),
(21635, 'Pallavi', '13', '9361449910', '', 'pallavimayilvaganan@gmail.com', '2003-02-22', 21, '6', '2', 'No', 'Freshers', 75000.00, 1, 0.00, 250000.00, 'Kadaladi, Ramanathapuram, tamilnadu,623703', 'Aminjikarai Chennai, tamilnadu ,600029', '2409200026', '', '1', 'upload_files/candidate_tracker/76741228361_resume.pdf', NULL, '1', '2024-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 07:11:35', 1, '2024-09-20 07:17:26', 0, NULL, 1),
(21636, 'MR.Sandeep', '6', '7904501101', '9494064946', 'saanviammu19@gmail.com', '2004-01-05', 20, '2', '2', 'ravi babu', 'cooli', 12000.00, 1, 0.00, 17000.00, 'Mandhaveli Th Street Madhavaram Chennai', 'mandhaveli th street madhavaram chennai', '2409200027', '42', '1', 'upload_files/candidate_tracker/3502879114_SANDEEPResume3.pdf', NULL, '3', '2024-09-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-20 07:34:28', 104, '2024-09-20 01:14:26', 0, NULL, 1),
(21637, 'Balachandar R', '13', '9500779658', '7826819959', 'bala2019raja@gmail.com', '2002-07-22', 22, '6', '2', 'Vimala R', 'Coolie', 8500.00, 0, 0.00, 150000.00, 'PONDICHERRY', 'PONDICHERRY', '2409200028', '', '1', 'upload_files/candidate_tracker/69730727348_Balachandarresume.pdf', NULL, '1', '2024-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 09:07:53', 1, '2024-09-20 09:10:10', 0, NULL, 1),
(21638, 'Aadithyan Ganesan', '2', '8610324580', '8056471837', 'aadithyanganesan@gmail.com', '1999-07-07', 25, '6', '2', 'Dhanalakshmi G', 'Homemaker', 300000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2409200029', '', '1', 'upload_files/candidate_tracker/90742597104_ResumeAADI.pdf', NULL, '1', '2024-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 09:23:29', 1, '2024-09-20 09:28:08', 0, NULL, 1),
(21639, 'Mohamed Nafees', '31', '9789330016', '', 'nafx390@gmail.com', '2001-10-11', 22, '3', '2', 'Mohamed Nizar', 'Self employed', 500000.00, 1, 0.00, 350000.00, 'Nagercoil', 'Chennai', '2409200030', '', '1', 'upload_files/candidate_tracker/2376042182_Resume1.docx', NULL, '1', '2024-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 09:26:23', 1, '2024-09-20 09:29:50', 0, NULL, 1),
(21640, 'Mohamed Afran', '13', '9443867393', '', 'moafran123@gmail.com', '2003-03-03', 21, '6', '2', 'Mansoor Sulaiman', 'Business', 30000.00, 2, 0.00, 200000.00, 'Pallikaranai Chennai', 'Pallikaranai Chennai', '2409200031', '', '1', 'upload_files/candidate_tracker/73225628362_MohamedAfranResume.pdf.pdf', NULL, '1', '2024-09-21', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-20 09:27:12', 104, '2024-09-21 12:16:11', 0, NULL, 1),
(21641, 'Abdul Nazer', '13', '6385488017', '', 'abdulnazer8017@gmail.com', '2000-10-05', 23, '3', '2', 'Aminal Beevi', 'Home maker', 120000.00, 1, 0.00, 20000.00, 'Tenkasi', 'Tenkasi', '2409200032', '', '1', 'upload_files/candidate_tracker/91229511369_AbdulResumeSD.pdf', NULL, '1', '2024-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 09:28:03', 1, '2024-09-20 10:01:12', 0, NULL, 1),
(21642, 'Aravindhan R', '2', '8344411039', '8248478412', 'aravindhan12072000@gmail.com', '2000-07-12', 24, '3', '2', 'Rajendran', 'Retired government employee', 100000.00, 1, 0.00, 10000.00, 'Erode', 'Erode', '2409200033', '', '1', 'upload_files/candidate_tracker/49800256144_CV20240916182141911zon.pdf', NULL, '1', '2024-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '4', '7', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-20 10:15:30', 1, '2024-09-20 10:19:10', 0, NULL, 1),
(21643, 'Varsha K', '6', '9629644117', '9600854789', 'varshasai2314@gmail.com', '2001-04-14', 23, '2', '2', 'Kavitha', 'Homemaker', 10000.00, 1, 0.00, 18000.00, 'KALLAKURICHI', 'Nunkapakkam', '2409200034', '50', '1', 'upload_files/candidate_tracker/60260221892_varsha.resume1.pdf', NULL, '1', '2024-09-20', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not having interested in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-20 10:39:07', 104, '2024-09-20 04:26:54', 0, NULL, 1),
(21644, 'SANTHAKUMARAN D', '6', '9042691095', '9597992163', 'sivamsantha3@gmail.com', '2003-11-13', 20, '2', '2', 'Poonguzhali D', 'Nil', 8000.00, 1, 0.00, 15000.00, '101/77 mariyamman koil Street PALLIKULAM village', 'Don Bosco vazhikatti illam perambur Chennai', '2409200035', '45', '1', 'upload_files/candidate_tracker/66477343635_Skb.com.pdf', NULL, '1', '2025-03-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-20 11:22:40', 153, '2025-03-17 03:14:34', 0, NULL, 1),
(21645, 'Rajprassanna', '6', '7558147867', '', 'rajprassanna@gmail.com', '1999-10-22', 24, '2', '2', 'muruganantham', 'smr', 20000.00, 0, 20000.00, 20000.00, 'kanchipuram', 'velachery', '2409200036', '1', '2', 'upload_files/candidate_tracker/38252231139_Resume02082024110929AM.pdf', NULL, '1', '2024-09-21', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not good at interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-20 12:49:36', 104, '2024-09-21 03:45:39', 0, NULL, 1),
(21646, 'SUGANTH V', '11', '6369279049', '', 'suganthv21@gmail.com', '2001-05-21', 23, '6', '2', 'R VENKATESEN', 'Farmer', 30000.00, 1, 1.80, 3.50, 'SALEM', 'SALEM', '2409210001', '', '1', 'upload_files/candidate_tracker/97409991611_SuganthVpdf.pdf', NULL, '1', '2024-09-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-21 04:10:12', 104, '2024-09-21 03:42:23', 0, NULL, 1),
(21647, 'Nethaji', '13', '6374728443', '', 'nethaji19t@gmail.com', '2002-06-19', 22, '3', '2', 'Thirumavalavan and Ezhilarasi', 'Driver and Head Master', 150000.00, 1, 0.00, 350000.00, 'Ariyalur', 'Chennai', '2409210002', '', '1', 'upload_files/candidate_tracker/73219060110_Nethaji19t.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 04:12:53', 1, '2024-09-21 04:27:07', 0, NULL, 1),
(21648, 'Srikanth P', '2', '7708604849', '', 'srikanth18042002@gmail.com', '2002-04-18', 22, '6', '2', 'D. Peramaiyan, p. Poomari', 'Mason, housewife', 25000.00, 1, 0.00, 200000.00, 'Tenkasi', 'Chennai', '2409210003', '', '1', 'upload_files/candidate_tracker/96405512465_Resume.pdf', NULL, '1', '2024-09-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 04:20:07', 1, '2024-09-21 04:26:44', 0, NULL, 1),
(21649, 'Babulnath', '5', '9626371578', '', 'Babulnath0509@gamil.com', '2002-09-05', 22, '2', '2', 'Kannan', 'Retired', 50000.00, 2, 21000.00, 27000.00, 'Chennai', 'Chennai', '2409210004', '1', '2', 'upload_files/candidate_tracker/13511398019_ResumeBabulnath.pdf', NULL, '1', '2024-09-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2024-09-21 04:52:59', 104, '2024-11-12 04:29:58', 0, NULL, 1),
(21650, 'bharathi S', '6', '6383538305', '', 'bharathibanu884@gmail.com', '2003-05-18', 21, '2', '2', 'shanmugam', 'carpenter', 100000.00, 1, 0.00, 17000.00, 'perambur', 'perambur', '2409210005', '50', '1', 'upload_files/candidate_tracker/10647003854_Bharathiresume.pdf', NULL, '1', '2024-09-21', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher 13k in hand salary  speaks well lets try 7 days and we will confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-21 04:54:57', 104, '2024-09-21 03:43:43', 0, NULL, 1),
(21651, 'Sivaranjani.k', '6', '9150960172', '', 'sivasiva90418@gmail.com', '2004-02-18', 20, '2', '2', 'Kumar.S', 'Tender coconut business', 95000.00, 1, 0.00, 17000.00, 'Choolai', 'Choolai', '2409210006', '50', '1', 'upload_files/candidate_tracker/13944888676_Resume29052024090313pm.pdf', NULL, '1', '2024-09-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-21 04:55:11', 104, '2024-09-21 12:21:55', 0, NULL, 1),
(21652, 'Bava Tajudeen T S', '13', '7550249462', '9840116893', 'tajudeenbava@gmail.com', '2004-06-02', 20, '6', '2', 'Shahul Hameed S T', 'Real Estate Agent', 22000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2409210007', '', '1', 'upload_files/candidate_tracker/54143222533_BavaTajudeenFullstackdeveloper.pdf', NULL, '1', '2024-09-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 04:55:51', 1, '2024-09-21 05:07:02', 0, NULL, 1),
(21653, 'Logeshwaran. K', '13', '9363358443', '9566054581', 'logeshwaranbca18@gmail.com', '2003-08-18', 21, '6', '2', 'K.kumar', 'Printing press worker', 10000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2409210008', '', '1', 'upload_files/candidate_tracker/96875950296_LOGESHWARANFSD.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 04:55:59', 1, '2024-09-21 05:05:36', 0, NULL, 1),
(21654, 'Raheem Safwan', '13', '9940924227', '', 'raheemsafwan555@gmail.com', '2003-06-19', 21, '6', '2', 'Zulfikar Ali', 'Business', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2409210009', '', '1', 'upload_files/candidate_tracker/90061248855_Resume1.pdf', NULL, '1', '2024-09-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 04:56:00', 1, '2024-09-21 05:01:43', 0, NULL, 1),
(21655, 'V.ARAVIND', '6', '6382774063', '6374582199', 'aravindrocky079@gmail.com', '2003-12-07', 20, '2', '2', 'S.BHUVANESWARI', 'Income tax officer', 200000.00, 0, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2409210010', '57', '1', 'upload_files/candidate_tracker/53141705704_ARAVINDRESUME1.pdf', NULL, '1', '2024-09-21', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate very attitude person and dress also not perfect , and candidate voice also not good so notfit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-21 05:03:06', 104, '2024-09-21 03:46:08', 0, NULL, 1),
(21656, 'Mohanasri', '13', '9087659847', '', 'mercymonika.17@gmail.com', '2003-03-17', 21, '6', '2', 'Dhandayuthabani', 'Watchman', 25000.00, 2, 0.00, 25000.00, 'Thiruvanamlai', 'Vellore', '2409210011', '', '1', 'upload_files/candidate_tracker/77861911357_monikaresume.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 05:04:04', 1, '2024-09-21 05:09:29', 0, NULL, 1),
(21657, 'Sakthi Rohini M', '13', '9092885374', '', 'sakthirohini03@gmail.com', '2001-03-03', 23, '6', '2', 'Muthu Kuamr', 'Farmer', 12000.00, 1, 0.00, 200000.00, 'Srivilliputtur', 'Srivilliputtur', '2409210012', '', '1', 'upload_files/candidate_tracker/84440618764_SakthiRohiniResume.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 05:04:36', 1, '2024-09-21 05:08:51', 0, NULL, 1),
(21658, 'Kalaivani', '13', '6379624933', '', 'ganeshkalaivani20@gmail.com', '2002-12-20', 21, '3', '2', 'Ganesh', 'Driver', 20000.00, 1, 0.00, 300000.00, 'No 71 Thiyagappa street kilpauk garden Chennai 10', 'No 71 Thiyagappa street kilpauk garden Chennai 10', '2409210013', '', '1', 'upload_files/candidate_tracker/36958423380_KalaivaniResume.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 05:12:23', 1, '2024-09-21 05:16:25', 0, NULL, 1),
(21659, 'Renuka S', '13', '9384653805', '', 'renukasubramani2114@gmail.com', '2002-04-21', 22, '3', '2', 'Subramani', 'Driver', 20000.00, 2, 0.00, 2.50, 'Periyapalayam', 'Villivakkam', '2409210014', '', '1', 'upload_files/candidate_tracker/19884534893_RenukaS11.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 05:12:28', 1, '2024-09-21 05:19:47', 0, NULL, 1),
(21660, 'Jagathish', '13', '9150957275', '9341245338', 'jagathishs229@gmail.com', '2004-05-10', 20, '6', '2', 'Usha', 'Lashmi private limited, Chennai', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2409210015', '', '1', 'upload_files/candidate_tracker/37556624092_jagathishresume.pdf', NULL, '1', '2024-09-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 05:26:41', 1, '2024-09-21 05:37:29', 0, NULL, 1),
(21661, 'Maheswaran R', '13', '9487882495', '8248013419', 'maheshrmr01@gmail.com', '2002-02-17', 22, '6', '2', 'Rameswaran N', 'Business', 25000.00, 0, 0.00, 20000.00, 'Thoothukudi', 'Madhavaram, chennai', '2409210016', '', '1', 'upload_files/candidate_tracker/1296231989_Maheshresume1.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 05:35:34', 1, '2024-09-21 05:48:03', 0, NULL, 1),
(21662, 'S.sheik Mohamed Atheeq', '13', '9597926726', '', 'Mohamedatheeq311@gmail.com', '2003-02-17', 21, '3', '2', 'Syed Abdul Kareem', 'Worker', 20000.00, 1, 0.00, 15000.00, 'Tuticorin', 'Mogappair west', '2409210017', '', '1', 'upload_files/candidate_tracker/8057383749_RESUMEAtheeq.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 05:41:07', 1, '2024-09-21 05:47:52', 0, NULL, 1),
(21663, 'S. Dhanalakshmi', '28', '9087206934', '8610022976', 'Mahidhana75@gmail.com', '1996-06-21', 28, '1', '1', 'Gajendran', 'IT', 600000.00, 1, 260000.00, 400000.00, 'Chennai', 'Chennai', '2409210018', '', '2', 'upload_files/candidate_tracker/60665554362_DHANALAKSHMICVSEP241.pdf', NULL, '1', '2024-09-21', 1, 'Na', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 06:04:31', 1, '2024-09-21 06:12:11', 0, NULL, 1),
(21664, 'Sanjay Kumar R', '6', '9003162759', '', 'sanjay25.raja@gmail.com', '2009-09-21', 0, '2', '2', 'Raja K', 'Supervisor', 30000.00, 1, 15000.00, 18000.00, 'Ambattur', 'Ambattur', '2409210019', '1', '2', 'upload_files/candidate_tracker/48541100113_sanjay.pdf', NULL, '1', '2024-09-21', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he speaks well kindly check his exisiting pay slip,on that salary we will add 2k to him and he has 1.5 years exp in credit card sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-21 06:15:30', 104, '2024-09-21 03:42:15', 0, NULL, 1),
(21665, 'Fouziya begum.A', '11', '6382873572', '9884929408', 'fouziyabegum7863@gmail.com', '2000-08-12', 24, '6', '2', 'Alahuddin.A', 'Tailor', 25000.00, 1, 390000.00, 390000.00, 'No 12/1 tA koil Street villivakkam chennai 49', 'No 12/1 TA Koil Street villivakkam chennai 49', '2409210020', '', '2', 'upload_files/candidate_tracker/14215323011_FousiyaResume11.pdf', NULL, '1', '2024-09-21', 1, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-21 06:17:53', 104, '2024-09-21 12:01:36', 0, NULL, 1),
(21666, 'Bala Ccandar', '11', '6385586082', '7092450616', 'balaccandar11@gmail.com', '2000-11-28', 23, '6', '2', 'Viruthagiri', 'Hotel business', 25000.00, 1, 0.00, 20000.00, 'Puducherry', 'Puducherry', '2409210021', '', '1', 'upload_files/candidate_tracker/44867479048_BalaResume.pdf', NULL, '1', '2024-09-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-21 06:29:15', 104, '2024-09-21 12:13:16', 0, NULL, 1),
(21667, 'Prasanna Kumar', '4', '8072648849', '', 'prasannachoco5@gmail.com', '2000-12-10', 23, '2', '2', 'Kandhavel', 'Daily Wager', 20000.00, 1, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2409210022', '50', '1', 'upload_files/candidate_tracker/33934316054_PrasannaKumar202409201132360000.pdf', NULL, '1', '2024-09-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 06:31:16', 1, '2024-09-21 06:44:26', 0, NULL, 1),
(21668, 'K A SUBRAMANIAN', '2', '8306542679', '9929180347', 'kash270800@gmail.com', '2009-09-21', 0, '6', '2', 'S KASINATHAN', 'Fresher', 400000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2409210023', '', '1', 'upload_files/candidate_tracker/73293988561_KASUBRAMANIAN2024.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 06:42:14', 1, '2024-09-21 06:49:20', 0, NULL, 1),
(21669, 'Saketh kumar s', '6', '6381474185', '9176077649', 'sakethkumer@gmail.com', '2003-08-13', 21, '2', '2', 'Srinivasan s', 'Civil engineering', 400000.00, 1, 180000.00, 264000.00, 'Chennai', 'Chennai', '2409210024', '1', '2', 'upload_files/candidate_tracker/52337480224_updatedresume.pdf', NULL, '1', '2024-09-21', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-21 06:50:36', 104, '2024-09-21 12:45:05', 0, NULL, 1),
(21670, 'Durairaj S', '4', '7305261109', '', 'subassubash707@gmail.com', '2003-10-04', 20, '2', '2', 'Dhanalakshmi S', 'Housewife', 25000.00, 0, 2000.00, 21000.00, 'Saidapet', 'Saidapet', '2409210025', '50', '2', 'upload_files/candidate_tracker/57239708938_DurairajSresume3.docx', NULL, '1', '2024-09-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 07:06:43', 1, '2024-09-21 07:18:28', 0, NULL, 1),
(21671, 'Aravind', '13', '6379314369', '', 'aravindalagar00@gmail.com', '2002-01-11', 22, '6', '1', 'Rajathi', 'Agriculture', 10000.00, 2, 0.00, 3.00, 'Trichy 621310', 'Trichy 621310', '2409210026', '', '1', 'upload_files/candidate_tracker/6685470976_AravindAFrontEndDeveloper1.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 07:14:07', 1, '2024-09-21 07:19:16', 0, NULL, 1),
(21672, '', '0', '8778345083', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409210027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-21 07:14:38', 0, NULL, 0, NULL, 1),
(21673, 'M. Divya', '6', '9840748104', '7200877233', 'divyamuralikrishnan1@gmail.com', '2000-01-30', 24, '2', '2', 'Murali Krishna', 'Tailor', 20000.00, 4, 17000.00, 21000.00, 'No 32.east mada Street Velachery', 'Chennai', '2409210028', '50', '2', 'upload_files/candidate_tracker/2090868556_DivyaMuralikrishnan.pdf', NULL, '1', '2024-09-21', 1, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected- not having better communication', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-21 07:20:58', 104, '2024-09-21 03:45:54', 0, NULL, 1),
(21674, 'Saketh kumar s', '11', '9176077649', '6381474185', 'sakethkumer@gmail.com', '2003-08-13', 21, '3', '2', 'Srinivasan s', 'Civil engineering', 400000.00, 1, 180000.00, 264000.00, 'Chennai', 'Chennai', '2409210029', '', '2', 'upload_files/candidate_tracker/52831629069_updatedresume.pdf', NULL, '1', '2024-09-21', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-21 07:21:55', 104, '2024-09-21 03:43:11', 0, NULL, 1),
(21675, 'M.devipriya', '6', '7358542737', '8825911973', 'devipriya0501@gmail.com', '1997-01-05', 27, '2', '1', 'M.karthick', 'Care software', 30.00, 1, 17.00, 23.00, '7c Rajashanmugam ,thiruvottiyur, chennai 19', '7c Rajashanmugam ,thiruvottiyur, chennai 19', '2409210030', '56', '2', 'upload_files/candidate_tracker/46359876279_DeviPriya618092024.pdf', NULL, '3', '2024-09-21', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for her salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-21 07:29:34', 104, '2024-09-21 03:45:16', 0, NULL, 1),
(21676, 'A. Santhoshini', '4', '9626678199', '', 'mail2santhoshini@gmail.com', '1999-04-16', 25, '2', '1', 'M. Sathish Kumar', 'Driver', 20000.00, 2, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2409210031', '1', '1', 'upload_files/candidate_tracker/78882352357_SANTHOSHINI1.docx', NULL, '1', '2024-09-25', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'UNFIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-21 07:33:15', 104, '2024-09-25 04:25:59', 0, NULL, 1),
(21677, 'Naresh V', '4', '8778046924', '9500095789', '19g341naresh@gmail.com', '2001-08-26', 23, '3', '2', 'Eagavalli', 'House wife', 20000.00, 0, 0.00, 18000.00, 'Bharathi nagar l. Endathur. Madhurandhagam', 'Guindy', '2409210032', '', '1', 'upload_files/candidate_tracker/23607327864_NareshVresume.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 07:36:21', 1, '2024-09-21 07:42:29', 0, NULL, 1),
(21678, 'Janani S', '4', '7812803376', '', 'jananisenthilkumar17122001@gmail.com', '2001-12-17', 22, '3', '2', 'Senthil kumar V', 'Business', 10000.00, 1, 0.00, 15000.00, '406, Cheran jeeva nager, Palani', 'Velachery', '2409210033', '', '1', 'upload_files/candidate_tracker/95104659025_JANANIRESUME2.pdf', NULL, '1', '2024-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 07:37:10', 1, '2024-09-21 07:41:33', 0, NULL, 1),
(21679, '', '0', '8608191468', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409210034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-21 07:48:53', 0, NULL, 0, NULL, 1),
(21680, 'Vignesh', '6', '7338903514', '', 'vigneshvignesh69670@gmail.com', '2003-10-21', 20, '2', '2', 'Karthik', '82000', 1200.00, 1, 0.00, 15000.00, 'No 14 Haridhapura 1st main road chilitalapakkam', 'Chrompet', '2409210035', '50', '1', 'upload_files/candidate_tracker/72232467899_downloadresume.pdf', NULL, '1', '2024-09-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-21 07:57:12', 104, '2024-09-23 05:28:47', 0, NULL, 1),
(21681, 'Divya. p', '4', '8838066043', '', 'divya2311pg@gmail.com', '2003-11-23', 20, '3', '2', 'Periyasamy', 'Weaver', 10000.00, 2, 0.00, 20000.00, 'Namkkal', 'Namkkal', '2409210036', '', '1', 'upload_files/candidate_tracker/28770103103_Diviresume111.pdf', NULL, '1', '2024-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-21 08:28:16', 1, '2024-09-21 09:10:21', 0, NULL, 1),
(21682, 'Mohan Raj P', '6', '7825012554', '', 'monuernesto9697@gmail.com', '1996-08-16', 28, '2', '1', 'Amudha', 'Admin', 45000.00, 0, 17000.00, 18000.00, 'Perambur', 'Perambur', '2409210037', '50', '2', 'upload_files/candidate_tracker/28087408076_1726552547038mohanrafinalupdate1.docx', NULL, '1', '2024-09-21', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication skill is very low and interested in customer support also, not interested in field work ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-21 09:19:21', 104, '2024-09-21 03:46:23', 0, NULL, 1),
(21683, '', '0', '7305512079', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409210038', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-21 10:16:27', 0, NULL, 0, NULL, 1),
(21684, 'K. ajay', '4', '8940033928', '9443809821', 'ajay16092001ajay@gmail.com', '2001-09-16', 23, '2', '2', 'R .Kali muthu', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Ramanad', 'Ramanad', '2409210039', '1', '1', 'upload_files/candidate_tracker/93477756473_AJAYKALIMUTHURESUME.pdf', NULL, '1', '2024-09-27', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-21 11:28:52', 104, '2024-09-27 02:58:10', 0, NULL, 1),
(21685, 'Bhavani sreenivasan', '6', '6374349481', '8220688262', 'bhavanisreenivasan17@gmail.com', '2001-12-17', 22, '2', '2', 'Sreenivasan', 'Govt supervisor', 30000.00, 2, 17000.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2409210040', '1', '2', 'upload_files/candidate_tracker/10637749524_Sharebhavaniresume.pdf', NULL, '1', '2024-09-23', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - absconded from last company ,not okay with communication', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-21 01:49:52', 104, '2024-09-23 05:47:49', 0, NULL, 1),
(21686, 'Durgadevi B', '6', '9345206061', '9994438066', 'Durgabramma99@gmail.com', '2000-12-14', 23, '2', '1', 'Maruthalokesh', 'Media', 30000.00, 4, 0.00, 25000.00, 'Trichy', 'Chennai', '2409220001', '1', '1', 'upload_files/candidate_tracker/78419916791_DURGADEVIRESUME.pdf', NULL, '1', '2024-09-23', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - interested in other jobs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-22 07:51:06', 104, '2024-09-23 05:48:14', 0, NULL, 1),
(21687, 'inbaraj.A', '6', '7904817796', '', 'inbaraja2509@gmail.com', '2001-09-25', 22, '2', '2', 'arunachalam', 'Koil', 10000.00, 2, 0.00, 17000.00, 'Tenkasi District', 'chennai', '2409220002', '1', '1', 'upload_files/candidate_tracker/9258247238_BlueSimpleProfessionalCVResume202407161048540000.pdf', NULL, '1', '2024-09-23', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice is ok but communication is very low  and candidate not interest to go for out side call so not fit for my team', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-22 10:18:59', 104, '2024-09-23 05:49:11', 0, NULL, 1),
(21688, '', '0', '9498023102', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409220003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-22 11:54:18', 0, NULL, 0, NULL, 1),
(21689, 'Mohammed fahim', '6', '8939433795', '8124003557', 'mohammedfahimfahim605@gmail.com', '2002-05-18', 22, '2', '2', 'Kadhar basha', 'Turner', 30000.00, 1, 15000.00, 22000.00, 'Chennai', 'Chennai', '2409220004', '1', '2', 'upload_files/candidate_tracker/95567832689_ECAP220001696481.pdf', NULL, '2', '2024-09-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'exp person but fresher salary immediate joining', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-09-22 12:13:17', 104, '2024-09-23 05:47:01', 0, NULL, 1),
(21690, 'Udhaya RAJ B', '6', '6382276506', '9994365144', 'udhayarajbj002@gmail.com', '2002-04-16', 22, '2', '2', 'Jothimani', 'House wife', 20000.00, 2, 15000.00, 20000.00, 'Namakkal', 'Namakkal', '2409220005', '1', '2', 'upload_files/candidate_tracker/27657729909_UdhayarajRESUME210.docx', NULL, '1', '2024-09-24', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not good at talking lacking of confidence', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-22 02:56:28', 104, '2024-09-24 03:57:31', 0, NULL, 1),
(21691, 'Janani Murugesan', '4', '9597070953', '9363568844', 'saijananimurugesan16@gmail.com', '2000-07-16', 24, '2', '2', 'Parent', 'Agriculture', 20000.00, 1, 2.25, 30000.00, 'thiruvarur 612801', 'Thiruvarur 61280', '2409230001', '1', '2', 'upload_files/candidate_tracker/47979545873_CV2024061409575965.pdf', NULL, '1', '2024-09-23', 0, '', '3', '59', '2024-10-14', 180000.00, '', '3', '2024-10-23', '2', 'Communication Ok Can give a try and check in 7 days training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-10-14', 1, '2024-09-23 02:22:26', 60, '2024-10-12 06:13:42', 0, NULL, 1),
(21692, 'Prasanth S', '13', '6374787619', '8248271730', 'prasanth24291@gmail.com', '2002-06-08', 22, '3', '2', 'M.Sellakaruppan', 'Daily Wages', 40000.00, 1, 0.00, 20000.00, 'Perambalur', 'Perambalur', '2409230002', '', '1', 'upload_files/candidate_tracker/4187358120_PrasanthS.pdf', NULL, '1', '2024-09-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 03:44:49', 1, '2024-09-23 03:48:24', 0, NULL, 1),
(21693, 'S Tharun Raj', '26', '6380648395', '9443182762', 'rajtharun2801@gmail.com', '2001-10-28', 22, '2', '2', 'G. Surya Prakash', 'Farmer', 10000.00, 2, 0.00, 300000.00, 'Tiruvallur District', 'Tiruvallur District', '2409230003', '1', '1', 'upload_files/candidate_tracker/6761498499_TharunRajSResumePdf.pdf', NULL, '1', '2024-09-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-09-23 03:46:03', 104, '2024-09-23 06:09:00', 0, NULL, 1),
(21694, 'Keerthana Ganeshkumar', '4', '6383188903', '', 'keerthanagee@gmail.com', '2003-03-01', 21, '2', '2', 'Rajeswari', 'Housewife', 150000.00, 1, 20000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2409230004', '1', '2', 'upload_files/candidate_tracker/3692275765_KeerthanaGresumee.pdf', NULL, '1', '2024-09-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-23 04:50:13', 104, '2024-09-23 05:46:21', 0, NULL, 1),
(21695, 'Preethika M', '4', '7812832432', '', 'preethikamurugesan05@gmail.com', '2003-05-11', 21, '2', '2', 'Murugesan s.', 'Self employee', 10000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2409230005', '1', '1', 'upload_files/candidate_tracker/63046297464_preethikaMCV116199463616130.pdf', NULL, '1', '2024-09-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-23 04:50:14', 104, '2024-09-23 07:04:04', 0, NULL, 1),
(21696, 'Mohammed Abubakkar siddiq', '16', '7092828428', '', 'siddiq130402@gmail.com', '2002-04-13', 22, '2', '2', 'Mansoor', 'Daily worker', 10000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2409230006', '1', '1', 'upload_files/candidate_tracker/64488959526_Resume.pdf', NULL, '1', '2024-09-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-09-23 04:57:58', 104, '2024-09-23 07:03:47', 0, NULL, 1),
(21697, '', '0', '9361466095', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409230007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-23 05:00:40', 0, NULL, 0, NULL, 1),
(21698, 'iyyappan', '4', '9566268402', '8939313625', 'karthickrocks017@gmail.com', '1997-01-18', 27, '2', '2', 'vani', 'executive operation', 8000.00, 4, 13000.00, 18000.00, 'chennai', 'chennai', '2409230008', '50', '2', 'upload_files/candidate_tracker/32197623248_iyyappanResume.2pdf.pdf', NULL, '1', '2024-09-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 05:01:36', 1, '2024-09-23 05:33:34', 0, NULL, 1),
(21699, 'Kishore m', '5', '6381712879', '', 'kishoremr2001@gmail.com', '2001-12-19', 22, '2', '2', 'Manimaran', 'Private company', 25000.00, 0, 25000.00, 30000.00, 'Madurai', 'Chennai', '2409230009', '1', '2', 'upload_files/candidate_tracker/31231476947_Kishore.m19resume.pdf', NULL, '1', '2024-09-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-23 05:07:31', 104, '2024-09-23 10:54:07', 0, NULL, 1),
(21700, 'Shanmugamoorthy R', '6', '6369014520', '', 'rajamoorthy562@gmail.com', '2002-03-28', 22, '2', '2', 'Rajamanikkam', 'Tiles fitter', 20000.00, 2, 0.00, 18000.00, 'Kallakurichi', 'Chennai, Ashok nagar', '2409230010', '50', '1', 'upload_files/candidate_tracker/37093040660_ShanmugamoorthyCd202409051222190000.pdf', NULL, '1', '2024-09-23', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-23 05:11:26', 104, '2024-09-23 11:46:42', 0, NULL, 1),
(21701, 'Pratheesh Raj', '6', '8903105879', '', 'pratheeshrajp208@gmail.com', '2001-08-20', 23, '2', '2', 'pushpa raj', 'tailer', 20000.00, 1, 0.00, 15000.00, 'kanniyakumari', 'chennai', '2409230011', '1', '1', 'upload_files/candidate_tracker/16963777633_PratheeshRaj.pdf', NULL, '1', '2024-09-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-23 05:13:17', 104, '2024-09-23 11:50:09', 0, NULL, 1),
(21702, 'Meer Mohammed Rafik M', '13', '9080835309', '', 'rafi03758@gmail.com', '2000-06-02', 24, '1', '2', 'Meer Ali Abbas', 'Flower decorater', 9000.00, 2, 0.00, 22000.00, 'Vellore', 'Chennai', '2409230012', '', '1', 'upload_files/candidate_tracker/17054908662_MR.pdf', NULL, '1', '2024-09-23', 0, 'ETS', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 05:13:28', 1, '2024-09-23 05:25:18', 0, NULL, 1),
(21703, 'LOGESHWARAN.G', '13', '8190868292', '9940399357', 'logeshwarang18@gmail.com', '2002-03-18', 22, '3', '2', 'Ganapathy', 'Driver', 28000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2409230013', '', '1', 'upload_files/candidate_tracker/64380755063_Loki.pdf', NULL, '1', '2024-09-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 05:13:29', 1, '2024-09-23 05:25:17', 0, NULL, 1),
(21704, 'Parthiban', '4', '6381012488', '', 'parthibanmala11@gmail.com', '2001-02-11', 23, '2', '2', 'Saravanan', 'Security', 25000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2409230014', '1', '1', 'upload_files/candidate_tracker/54901741474_Parthi.pdf', NULL, '1', '2024-09-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-23 05:13:42', 104, '2024-09-23 05:45:36', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21705, 'Barathwaj', '16', '6380562198', '', 'bharathbj.durga@gmail.com', '2001-08-02', 23, '2', '2', 'Subramani', 'Ss metal works', 8000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2409230015', '1', '1', 'upload_files/candidate_tracker/10982196005_BARATHWAJSUBRAMANI.resume.pdf', NULL, '1', '2024-09-24', 0, '', '3', '59', '2024-10-08', 180000.00, '', '1', '1970-01-01', '1', 'Communication Average for MIS role Can be trained have a bit of exp need to check and confirm', '3', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '2024-10-08', 1, '2024-09-23 05:14:12', 60, '2024-10-07 07:12:41', 0, NULL, 1),
(21706, 'Bharnega R', '11', '8925713788', '9787493291', 'bharnega01@gmail.com', '2001-11-03', 22, '6', '2', 'Ravichandran k', 'Farmer', 150000.00, 2, 0.00, 10000.15, 'NA', 'NA', '2409230016', '', '1', 'upload_files/candidate_tracker/3422090527_BharnegaRavichandran1.pdf', NULL, '1', '2024-09-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '3', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-23 05:14:33', 104, '2024-09-23 06:08:42', 0, NULL, 1),
(21707, 'Harish R', '6', '9786605788', '', 'srharish113@gmail.com', '1999-09-06', 25, '3', '2', 'S Raju', 'Student', 70000.00, 2, 0.00, 15000.00, 'Dindigul', 'Medavakam', '2409230017', '', '1', 'upload_files/candidate_tracker/58882107699_HARISH1.docx', NULL, '1', '2024-09-23', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-23 05:21:07', 104, '2024-09-23 05:45:14', 0, NULL, 1),
(21708, 'Prajith M', '11', '9840524954', '9840124954', 'mprajith14@gmail.com', '2004-06-20', 20, '6', '2', 'S. Murugesan', 'Law books seller', 30000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2409230018', '', '1', 'upload_files/candidate_tracker/81482569397_HRresume.pdf', NULL, '1', '2024-09-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-23 05:21:51', 104, '2024-09-23 06:11:00', 0, NULL, 1),
(21709, 'Bhuvana', '6', '8610706702', '', 'bhuvanaRamesh107@gmail.com', '1998-07-10', 26, '3', '1', 'Ramesh', 'Tea shop worker', 18000.00, 2, 0.00, 15000.00, 'Dindigul', 'Dindigul', '2409230019', '', '1', 'upload_files/candidate_tracker/67914888141_f767abdd2639420492d429de1856a964.pdf', NULL, '1', '2024-09-23', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-23 05:22:47', 104, '2024-09-23 05:47:19', 0, NULL, 1),
(21710, 'Anthony abinash R', '4', '9176784375', '6374131176', 'Anthonyabinash11@gmail.com', '2000-11-07', 23, '2', '2', 'D Raja Michael', 'Daily wages', 25000.00, 2, 0.00, 20000.00, 'No:144 v.o.c street makkaram Thottam', 'Chennai', '2409230020', '50', '1', 'upload_files/candidate_tracker/1200895248_ANTHONYABINASH.pdf', NULL, '2', '2024-09-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 05:30:12', 1, '2024-09-23 05:37:53', 0, NULL, 1),
(21711, 'M.sivakumar', '6', '9551290675', '8056286131', 'Siva_jagan123@yahoo.com', '1996-04-11', 28, '2', '1', 'PriyadarshiniP', 'Housewife', 300000.00, 2, 0.00, 16000.00, '254/1 thambu chetty street', '254/1 thambu chetty street', '2409230021', '1', '1', 'upload_files/candidate_tracker/41840013068_SIVAKUMARCVpdf.pdf', NULL, '1', '2024-09-23', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not having stability in his past companies', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-23 05:31:36', 104, '2024-09-23 05:48:37', 0, NULL, 1),
(21712, 'YOGESH E', '4', '9344484914', '', 'yogeshmass208@gmail.com', '1999-07-25', 25, '1', '2', 'Amul', 'Company', 15000.00, 1, 0.00, 20000.00, 'Manali', 'Manali', '2409230022', '', '2', 'upload_files/candidate_tracker/547764985_YogeshResume2.docx', NULL, '1', '2024-09-23', 0, 'No', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 05:44:36', 1, '2024-09-23 05:59:43', 0, NULL, 1),
(21713, 'Janarthanan V', '4', '8939307022', '', 'janarthanan7143@gmail.com', '2002-10-14', 21, '3', '2', 'Velayutham', 'Fitter', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409230023', '', '1', 'upload_files/candidate_tracker/27234451280_DOC20240726WA0000.2.pdf', NULL, '1', '2024-09-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 05:50:38', 1, '2024-09-23 06:01:19', 0, NULL, 1),
(21714, 'Muharji S', '6', '7868049842', '', 'muharjisaravanan2000@gmail.com', '2000-05-20', 24, '2', '2', 'K.saravanan', 'Farmer', 65000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2409230024', '1', '1', 'upload_files/candidate_tracker/89467893556_Resume.pdf', NULL, '1', '2024-09-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE PERFORMANCE AND COMMUNICATION IS GOOD ,WILL CHECK WITH HER IN THE TRAINING PERIOD', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-09-23 05:54:42', 104, '2024-09-23 05:52:09', 0, NULL, 1),
(21715, 'Parveena malarvizhi.K', '6', '9159526944', '', 'parveenamalarvizhi@gmail.com', '2000-04-17', 24, '2', '2', 'Selvi', 'Teacher', 30.00, 2, 0.00, 20.00, 'Porur', 'Chennai', '2409230025', '1', '1', 'upload_files/candidate_tracker/75742932820_AdobeScanJun222024.pdf', NULL, '1', '2024-09-23', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication skill is very low and interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-23 05:55:07', 104, '2024-09-23 05:52:55', 0, NULL, 1),
(21716, 'Ramya M D', '5', '9902344185', '7795885604', 'ramyadssn2000@gmail.com', '2000-08-09', 24, '2', '2', 'Durgegowda', 'farmar', 11500.00, 1, 0.00, 25000.00, 'kanakapura', 'JP NAGAR 4th Phase', '2409230026', '1', '2', 'upload_files/candidate_tracker/91173722397_Resume06012024061748pm.pdf', NULL, '1', '2024-09-23', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '55671', '1970-01-01', 1, '2024-09-23 06:07:21', 126, '2024-09-25 06:52:59', 0, NULL, 1),
(21717, '', '0', '9123555312', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409230027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-23 06:32:12', 0, NULL, 0, NULL, 1),
(21718, 'Aathila', '4', '6380397269', '', 'aathilarafi@gmail.com', '2002-05-05', 22, '2', '2', 'Mohammed rafeeudeen', 'Kooli', 12000.00, 2, 0.00, 15000.00, 'Palavakam, chennai', 'Palavakam, chennai', '2409230028', '56', '1', 'upload_files/candidate_tracker/83400916459_AathilaResume.pdf', NULL, '1', '2024-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 06:33:53', 1, '2024-09-23 06:37:29', 0, NULL, 1),
(21719, 'Cyril A', '13', '9677881223', '', 'cyrilinfant01@gmail.com', '2000-10-02', 23, '3', '2', 'Ayyadurai', 'Electrician', 30000.00, 1, 0.00, 15000.00, 'Theni', 'Chennai', '2409230029', '', '1', 'upload_files/candidate_tracker/47328885117_CV.pdf', NULL, '1', '2024-09-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 06:54:08', 1, '2024-09-23 06:57:27', 0, NULL, 1),
(21720, 'ANTONYJONA A', '13', '6379078256', '', 'antonyjona7@gmail.com', '2001-02-22', 23, '6', '2', 'Arockiya samy', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Anna nagar chennai', '2409230030', '', '1', 'upload_files/candidate_tracker/48245514311_CV.pdf', NULL, '1', '2024-09-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 06:54:24', 1, '2024-09-23 07:12:36', 0, NULL, 1),
(21721, 'Tejasree.B', '6', '9361155966', '', 'Tejasreebhaskar26@gmail.com', '2004-07-26', 20, '2', '2', 'Bhaskar', 'Drive', 40000.00, 1, 0.00, 18000.00, 'Thiruvallur', 'Thiruvallur', '2409230031', '50', '1', 'upload_files/candidate_tracker/96387065315_TejasreeBResume1.pdf', NULL, '1', '2024-09-25', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'REJECTED - COMMUNICATION SKILL WAS NOT GOOD', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-23 07:12:16', 104, '2024-09-25 04:28:33', 0, NULL, 1),
(21722, 'Umera Banu S', '6', '7305827458', '', 'umerafasi@gmai.com', '1997-11-07', 26, '2', '2', 'M.Shihabdeeb (father)', 'Cooking', 25000.00, 3, 0.00, 20000.00, 'Chennai', 'Thiruvottiyur', '2409230032', '50', '1', 'upload_files/candidate_tracker/39776495757_UmairaBanuResume372.pdf', NULL, '1', '2024-09-23', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-23 07:34:16', 104, '2024-09-23 04:14:31', 0, NULL, 1),
(21723, 'Harin', '6', '8754738082', '7358943726', 'harinh825@gmail.com', '2003-07-01', 21, '3', '2', 'ramalingam', 'Former', 30000.00, 1, 0.00, 1.00, 'Trichy', 'Porur', '2409230033', '', '1', 'upload_files/candidate_tracker/43271260455_HARINRESUME.pdf', NULL, '1', '2024-09-23', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-23 08:04:28', 104, '2024-09-23 05:46:40', 0, NULL, 1),
(21724, 'Evanjalin G', '6', '9361105225', '', 'evanjalin345@gmail.com', '2002-07-05', 22, '2', '2', 'Gabriel P', 'Baker', 25000.00, 1, 18000.00, 16000.00, 'Avadi', 'Avadi', '2409230034', '1', '2', 'upload_files/candidate_tracker/29437139912_EvanjalinGResume.docx', NULL, '1', '2024-09-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SELECTED - HAVING  GOOD COMMUNICATION SKILL AND CONFIDENCE ALSO LOOK FOR IMMEDIATE JOINING  WILL  GIVE 14000  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-23 08:59:10', 104, '2024-09-25 04:28:44', 0, NULL, 1),
(21725, 'Abhaya bhuvaneswari.v s', '6', '9566002601', '9962554213', 'abhayavenkatraman@gmail.com', '2002-09-04', 22, '2', '2', 'Subbulakshmi', 'House wife', 15000.00, 1, 0.00, 20000.00, 'Kolathur', 'Kolathur', '2409230035', '1', '1', 'upload_files/candidate_tracker/12212550453_Abhayaresume.pdf', NULL, '1', '2024-09-23', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate voice and communication is good but after 1 year try for master degree in regular so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-23 09:24:51', 104, '2024-09-25 12:55:09', 0, NULL, 1),
(21726, 'Ashraf Sherief', '6', '7449097201', '9710577201', 'sheriefsingh@gmail.com', '2003-06-21', 21, '2', '2', 'Anwar sherief', 'Working in private limited', 17500.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2409230036', '1', '1', 'upload_files/candidate_tracker/34356058592_ASHRAFA.pdf', NULL, '1', '2024-09-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2024-09-23 10:00:47', 104, '2024-10-08 09:25:00', 0, NULL, 1),
(21727, 'Tamil selvi', '4', '6384531342', '6383186923', 'tamil2510selvi@gmail.com', '2003-10-25', 20, '2', '2', 'Durairaj', 'Daily wages', 60000.00, 1, 0.00, 15000.00, 'Pallavaram', 'Pallavaram', '2409230037', '50', '1', 'upload_files/candidate_tracker/66503778544_CV202409112103296.pdf', NULL, '1', '2024-09-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 11:13:41', 1, '2024-09-23 11:17:10', 0, NULL, 1),
(21728, 'Glory', '4', '9791188797', '8056084492', 'stanislausdass051@gmail.com', '2004-11-06', 19, '2', '2', 'Alice', 'Housewife', 35000.00, 4, 12500.00, 15000.00, 'Thuraipakkam', 'Thuraipakkam', '2409230038', '50', '2', 'upload_files/candidate_tracker/45352435815_GloryFlorahS08122023110318AMcopy.pdf', NULL, '1', '2024-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 12:51:45', 1, '2024-09-23 01:02:21', 0, NULL, 1),
(21729, 'Mrudhulla N', '6', '8668143152', '9790870572', 'mrudhulla2102@gmail.com', '2002-05-21', 23, '2', '2', 'S.mythili', 'Working (sales)', 110000.00, 1, 0.00, 20000.00, '8b kumaran street ram nagar ambattur', '8b kumaran street ram nagar ambattur', '2409230039', '67', '2', 'upload_files/candidate_tracker/15873727157_DOC20250915WA0001..pdf', NULL, '1', '2025-12-23', 0, '', '3', '59', '2025-12-24', 216000.00, '', '3', '2026-02-02', '2', 'Communication Good Have exp in sales calling worked in Indian Bank through techmahindra open to travel from Ambattur earlier worked in early morning shift traveled from ambattur @03.00 a.M', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2025-12-24', 1, '2024-09-23 12:55:57', 60, '2025-12-23 07:07:06', 0, NULL, 1),
(21730, 'Haritha', '6', '9042002401', '8825539277', 'haritha9611@gmail.com', '2002-05-18', 22, '2', '2', 'K.pushparaj', 'Auto driver', 25000.00, 0, 16000.00, 22000.00, 'Chennai', 'Chennai', '2409230040', '1', '2', 'upload_files/candidate_tracker/23267066243_TakealookatmyCanvadesign.pdf', NULL, '1', '2024-09-24', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not much knowledge in health but working almost 6 month in health and abscond in previous company', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-23 01:22:30', 104, '2024-09-24 03:56:21', 0, NULL, 1),
(21731, 'Nancy V', '4', '9840526494', '9940077312', 'nancyvenkatesh23@gmail.com', '2004-06-23', 20, '3', '2', 'Venkatesan.G', 'Coolie', 13000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409230041', '', '1', 'upload_files/candidate_tracker/61946953451_V.NancyResume.pdf', NULL, '1', '2024-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-23 02:33:28', 1, '2024-09-23 02:56:47', 0, NULL, 1),
(21732, 'Pavithra S', '6', '9080212301', '9344091726', 'pavithrasubramani1805@gmail.com', '2003-05-18', 21, '2', '2', 'Subramani g', 'Cooli', 12000.00, 2, 180000.00, 20000.00, '28/17 mannadiyamman Kovil 1 st Street adambakkam', '28/17 mannadiyamman Kovil 1 st Street adambakkam', '2409240001', '50', '2', 'upload_files/candidate_tracker/87810047055_Resume.pdf', NULL, '1', '2024-09-24', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'having experience about sales and good at communication we will provide 16k as salary and also need immediate jioning', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-24 02:39:33', 104, '2024-09-24 03:54:18', 0, NULL, 1),
(21733, 'Thanseer khan', '16', '9025217717', '9176245617', 'Thanseerkhan2405@gmail.com', '2004-05-24', 20, '2', '2', 'Nafeeza', 'Nil', 20000.00, 1, 0.00, 18.00, 'Philanthropy,Perambur barracks ,', 'M.k.b nagar, vysarpadi,Chennai', '2409240002', '1', '1', 'upload_files/candidate_tracker/95310358356_Thanseerkhanresume.pdf', NULL, '2', '2024-09-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-09-24 04:07:33', 104, '2024-09-24 03:54:34', 0, NULL, 1),
(21734, 'Aravindsamy S', '13', '6383958192', '', 'aravindsamy830@gmail.com', '2001-12-17', 22, '6', '2', 'Selvaraj P', 'Daily wages', 9000.00, 3, 0.00, 18000.00, 'Tenkasi', 'Vellore', '2409240003', '', '1', 'upload_files/candidate_tracker/15500824744_ResumeAravind.pdf', NULL, '1', '2024-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-24 04:11:00', 1, '2024-09-24 04:17:25', 0, NULL, 1),
(21735, 'Bharath S', '13', '8531923150', '', 'bharathsankar470@gmail.com', '2000-10-22', 23, '6', '2', 'Sankar N', 'Farmer', 330000.00, 1, 0.00, 300000.00, 'Gummudipundi', 'Gummudipundi', '2409240004', '', '1', 'upload_files/candidate_tracker/70290056309_Resume.pdf', NULL, '1', '2024-09-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-24 04:27:50', 1, '2024-09-24 04:30:53', 0, NULL, 1),
(21736, 'kotteshwaran H', '11', '8056090132', '', 'kotieshwaran803@gmail.com', '2000-12-04', 23, '6', '2', 't.d.Harikrishnan', 'business', 600000.00, 2, 0.00, 10000.00, 'babu street v teynampet chennai', 'babu street v teynampet chennai', '2409240005', '', '1', 'upload_files/candidate_tracker/12347845394_KotteshwaranResume.2.pdf', NULL, '1', '2024-09-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-24 04:32:51', 104, '2024-09-24 03:55:32', 0, NULL, 1),
(21737, '', '0', '7305729775', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409240006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-24 04:47:13', 0, NULL, 0, NULL, 1),
(21738, 'Karthik Shanmugam', '13', '9551886655', '', 'shanmugamkarthik848@gmail.com', '2009-09-24', 0, '6', '2', 'Shanmugam M', 'Manager', 18000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2409240007', '', '1', 'upload_files/candidate_tracker/56043414490_2024.pdf', NULL, '1', '2024-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-24 04:50:04', 1, '2024-09-24 04:52:29', 0, NULL, 1),
(21739, 'Mohamed thawfiq s', '6', '9629361912', '9639361912', 'mohdthawfiq7@gmail.com', '2002-01-04', 22, '2', '2', 'Sahabudeen', 'Abroad', 70000.00, 2, 16500.00, 22000.00, 'Thanjavur', 'Chennai', '2409240008', '50', '2', 'upload_files/candidate_tracker/1524243395_thawfiqexp.pdf', NULL, '1', '2024-09-24', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-24 05:00:56', 104, '2024-09-24 03:56:36', 0, NULL, 1),
(21740, '', '0', '8220313784', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409240009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-24 05:09:32', 0, NULL, 0, NULL, 1),
(21741, 'JOTHIKA.v', '6', '7338995659', '9952937947', 'jothika20002019@gmail.com', '2001-06-10', 23, '2', '2', 'Venkatesan', 'Farmer', 1.00, 2, 13700.00, 17000.00, 'Korukkupet', 'Korukkupet', '2409240010', '50', '2', 'upload_files/candidate_tracker/57867575825_1000071248.pdf', NULL, '1', '2024-09-24', 2, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is good ,also hve 2 yrs and 5 Months experiance in telicalling field.will check with her in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-24 05:10:14', 104, '2024-09-24 03:55:48', 0, NULL, 1),
(21742, 'Barathkumar s', '6', '9361280083', '7305713320', 'barathjayaselva1974@gmail.com', '2001-10-23', 22, '2', '2', 'Selvaraj', 'Farmer', 20000.00, 0, 15000.00, 20000.00, 'Sendharapatti , salem', 'Sendharapatti , salem', '2409240011', '1', '2', 'upload_files/candidate_tracker/40605247929_BarathkumarResume1.pdf', NULL, '1', '2024-09-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'job needed person ctc 16k fresher joining at 27th sep', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-24 05:27:23', 104, '2024-09-24 03:56:55', 0, NULL, 1),
(21743, 'Arunbalajhi N.p', '6', '9360881208', '9487202056', 'arunagirinp19080@gmail.com', '2001-04-28', 23, '2', '2', 'Palaniyappan', 'Farmer', 25000.00, 1, 15000.00, 20000.00, 'Dharmapuri', 'Dharmapuri', '2409240012', '1', '2', 'upload_files/candidate_tracker/87906524261_DOC20240809WA0007..pdf', NULL, '1', '2024-09-24', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate commuication and voice also very low  and he not understanding my qustions , ans after 3 month try for it  related job so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-24 05:27:50', 104, '2024-09-24 03:59:13', 0, NULL, 1),
(21744, 'Sri bharani', '6', '8903511601', '', 'prsribharani2002@gmail.com', '2002-02-18', 22, '2', '2', 'Paramaguru', 'Business', 25000.00, 1, 0.00, 216000.00, '42/6B Main road semmandalam cuddalore -607001', 'Chennai saidapet', '2409240013', '57', '1', 'upload_files/candidate_tracker/92771183572_Sriupdateresume.pdf', NULL, '1', '2024-09-24', 0, '', '3', '59', '2024-10-14', 192000.00, '', NULL, '2024-11-04', '2', 'Communication Good have exp but not sales can give a try and check in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-10-14', 1, '2024-09-24 05:28:15', 60, '2024-10-14 10:04:31', 0, NULL, 1),
(21745, '', '0', '8939065417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409240014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-24 05:28:28', 0, NULL, 0, NULL, 1),
(21746, 'R liyona', '6', '9840762098', '9551578694', 'liyonaraj@gmail.com', '2003-03-08', 21, '2', '2', 'T.raja', 'Electrician', 20000.00, 1, 0.00, 16000.00, 'Permabur', 'Bb road', '2409240015', '1', '1', 'upload_files/candidate_tracker/63597041923_IMG20240924WA0000pdf.pdf', NULL, '1', '2024-09-24', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication skill is very low and interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-24 05:39:07', 104, '2024-09-24 03:59:54', 0, NULL, 1),
(21747, 'T.maha jabeen', '6', '8925196093', '9840250611', 'Sumananjumanjum44@gmail.com', '2003-05-29', 21, '2', '2', 'JUVERIYA BEGAM', 'Two wheeler mechanic', 25000.00, 1, 0.00, 16000.00, 'Perambur', 'Periyar nagar', '2409240016', '1', '1', 'upload_files/candidate_tracker/38867364954_JabeenResume1.pdf', NULL, '1', '2024-09-24', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate future plan govtwor and takecare of our father work so just looking for wok and voice also not well so not fit or my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-24 05:39:15', 104, '2024-09-24 03:57:43', 0, NULL, 1),
(21748, 'PARAMESWARI. J', '6', '9342540158', '6382075338', 'parameponni19@gmail.com', '2004-04-19', 20, '2', '2', 'JEEVARAJAN. M', 'Nungambakkam', 25000.00, 1, 0.00, 15000.00, 'Nungambakkam', 'Nungambakkam', '2409240017', '1', '1', 'upload_files/candidate_tracker/470727196_Parameswariresume240523180710.pdf', NULL, '1', '2024-09-24', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is good but her performance and voice is very low as well as slow', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2024-09-24 05:42:07', 104, '2024-09-24 03:59:33', 0, NULL, 1),
(21749, 'SANTHIYA S', '2', '9944621519', '', 'santhiyasakthivel858@gmail.com', '2003-08-16', 21, '6', '2', 'SANTHOSAM', 'Farmer', 6000.00, 2, 0.00, 18000.00, 'Salem', 'Chennai', '2409240018', '', '1', 'upload_files/candidate_tracker/56735767516_Resume1.pdf', NULL, '1', '2024-09-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-24 05:46:17', 1, '2024-09-24 05:52:13', 0, NULL, 1),
(21750, 'Preethi', '13', '8148213280', '', 'preethibarani4@gmail.com', '2002-05-10', 22, '3', '2', 'Barani Kumar', 'Farmer', 7000.00, 1, 0.00, 200000.00, 'West street, Main road, Periyakkottai, thanjavur', 'Porur, Chennai', '2409240019', '', '1', 'upload_files/candidate_tracker/68726462568_PREETHIBResume1.docx', NULL, '1', '2024-09-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-24 05:58:41', 1, '2024-09-24 06:09:33', 0, NULL, 1),
(21751, 'Gokul', '4', '9344364994', '9994009671', 'gokulsubramani02@gmail.com', '2002-09-02', 22, '2', '2', 'Subramanian', 'Farmer', 20000.00, 3, 0.00, 20000.00, 'Krishnagiri', 'Porur', '2409240020', '50', '1', 'upload_files/candidate_tracker/31076546947_GOKULSRESUME11.pdf', NULL, '1', '2024-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-24 06:02:45', 1, '2024-09-24 06:07:21', 0, NULL, 1),
(21752, 'Karthick.r', '6', '6380466872', '', 'karthickcrkarthickcr2@gmail.com', '1998-05-27', 26, '3', '2', 'Ravi ps', 'Telecaller', 1000000.00, 1, 0.00, 15000.00, 'Peryiamalapeni street roypettah', 'Roypettah', '2409240021', '', '1', 'upload_files/candidate_tracker/84603606436_KarthickR1.docx', NULL, '1', '2024-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-24 06:04:45', 1, '2024-09-24 06:11:42', 0, NULL, 1),
(21753, 'Dinakaran V', '6', '9843123093', '', 'dinakaran011umk@gmail.com', '2002-12-11', 21, '2', '2', 'Vijaykumar', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2409240022', '50', '1', 'upload_files/candidate_tracker/42119053641_DinakaranResume.pdf', NULL, '1', '2024-09-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-24 06:10:44', 104, '2024-09-25 10:31:11', 0, NULL, 1),
(21754, 'Karthikeyan.A', '16', '9940558322', '9941649271', 'karthikeyananandan157203@gmail.com', '2003-07-15', 21, '3', '2', 'Anandan.S', 'Diary business', 40000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2409240023', '', '1', 'upload_files/candidate_tracker/50788958551_KarthikeyanA.CV..pdf', NULL, '1', '2024-09-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-24 06:45:51', 104, '2024-09-24 03:55:09', 0, NULL, 1),
(21755, 'Preethi Sinnappane', '4', '9655645210', '9629867112', 'sinnappanepreethi29@gmail.com', '2000-04-29', 24, '4', '2', 'Benoit Maxime Sinnappane', 'Retired', 15000.00, 2, 0.00, 2.50, 'Karaikal', 'Karaikal', '2409240024', '', '1', 'upload_files/candidate_tracker/58866558922_PreethiResume.pdf', NULL, '1', '2024-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-24 06:51:41', 1, '2024-09-24 06:59:33', 0, NULL, 1),
(21756, 'Rogan A', '6', '6379988299', '8807720064', 'roganr956@gmail.com', '2004-01-06', 20, '2', '2', 'Ashok kumar', 'Farmer', 500000.00, 2, 0.00, 15000.00, 'Jayankondam', 'Chennai', '2409240025', '1', '1', 'upload_files/candidate_tracker/6708176480_roganresume10.pdf', NULL, '1', '2024-09-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, fresher communication ok, cross check sustainability.provide the freshers salary and confirm the joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2024-09-24 06:53:13', 104, '2024-09-24 03:54:51', 0, NULL, 1),
(21757, 'P I Mohan Babu', '6', '9150815062', '6374305887', 'mohan08603@gmail.com', '2003-05-09', 21, '2', '2', 'S S Prabu', 'Police', 40000.00, 1, 0.00, 20000.00, 'Avadi', 'Avadi', '2409240026', '1', '1', 'upload_files/candidate_tracker/26368992028_PIMOHANBABU11.pdf', NULL, '1', '2024-09-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate commuication and vocie well good , candidate completed in bBA so interest to sales field but location is avadi , have a own bike , so try for 7 days training period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-24 07:11:41', 104, '2024-09-25 04:28:58', 0, NULL, 1),
(21758, 'Kalai vani.S', '6', '7904286773', '9884115548', 'kalaimythra16@gmail.com', '2002-01-16', 22, '2', '2', 'Srinivasan', 'Tailor', 20000.00, 1, 0.00, 15000.00, 'T Nagar', 'T.Nagar', '2409240027', '1', '1', 'upload_files/candidate_tracker/83906249852_ResumeKalaivani.doc', NULL, '1', '2024-09-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-24 07:24:23', 104, '2024-09-24 02:56:00', 0, NULL, 1),
(21759, 'V.pooja', '6', '8939328520', '9962084753', 'poojavenkat381@gmail.com', '2002-11-03', 21, '2', '2', 'K.venkatesan', 'Painter', 60000.00, 1, 0.00, 15000.00, 'Chennai', 'Teynampet', '2409240028', '1', '1', 'upload_files/candidate_tracker/4688737367_poojaresume.pdf', NULL, '1', '2024-09-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-24 07:36:46', 104, '2024-09-24 02:57:19', 0, NULL, 1),
(21760, 'Sneha', '11', '9003060985', '', 'sneha20029@gmail.com', '2002-06-29', 22, '3', '2', 'Sathya Narayanan', 'Teaching professional in marine college', 50000.00, 1, 240000.00, 300000.00, 'Chennai', 'Chennai', '2409240029', '', '2', 'upload_files/candidate_tracker/31825104144_SnehaResume1.pdf', NULL, '1', '2024-09-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-24 09:02:30', 104, '2024-09-24 03:53:46', 0, NULL, 1),
(21761, 'Jayavarshini t', '11', '9940666634', '', 'varshinitamil25@gmail.com', '2001-10-25', 22, '3', '2', 'tamilselvan r', 'business', 40000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2409240030', '', '1', 'upload_files/candidate_tracker/2581247124_TJAYAVARSHINIRESUME.pdf', NULL, '1', '2024-09-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-24 09:02:49', 104, '2024-09-24 03:53:32', 0, NULL, 1),
(21762, 'Jayaprakash. K', '34', '9790601316', '', 'Jayaprakash83658@gmail.com', '2002-07-18', 22, '4', '2', 'Kandhasamy. S', 'Own store worker', 5000.00, 1, 0.00, 15000.00, 'Karur', 'Chennai', '2409240031', '', '1', 'upload_files/candidate_tracker/32248919178_jayaprakash.resume.pdf', NULL, '1', '2024-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-24 09:11:50', 1, '2024-09-24 09:17:19', 0, NULL, 1),
(21763, 'Saranya RaviChandran', '13', '7305705590', '7299641560', 'ravisaranya751@gmail.com', '2002-10-27', 21, '3', '2', 'Ravi Chandran A', 'Labour', 120000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2409240032', '', '1', 'upload_files/candidate_tracker/45670078338_VM13725btechCSBSSaranyaR.pdf', NULL, '1', '2024-09-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-24 09:41:01', 1, '2024-09-24 09:45:25', 0, NULL, 1),
(21764, '', '0', '9361471004', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409240033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-24 12:57:04', 0, NULL, 0, NULL, 1),
(21765, 'Rifaya Noorul Halisha M S', '7', '9894783117', '', 'rifayanoorulhalisha@gmail.com', '2002-09-29', 21, '2', '2', 'Mohamed Sadiq Ali', 'Business Man', 10000.00, 0, 15000.00, 18000.00, 'Chennai', 'Chennai', '2409240034', '1', '2', 'upload_files/candidate_tracker/82557396321_rifayaresume.pdf', NULL, '1', '2024-09-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-09-24 01:33:17', 104, '2024-09-26 03:41:42', 0, NULL, 1),
(21766, '', '0', '7904367395', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-25 01:56:27', 0, NULL, 0, NULL, 1),
(21767, 'Nivetha R', '6', '9791704278', '', 'rnivetha31@gmail.com', '2002-10-10', 21, '2', '2', 'Ramesh', 'Small business', 35000.00, 2, 0.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2409250002', '1', '1', 'upload_files/candidate_tracker/24845492724_nivetha.pdf', NULL, '1', '2024-09-26', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-25 03:52:08', 104, '2024-09-26 03:40:21', 0, NULL, 1),
(21768, 'rasik mohamed', '5', '8220561632', '', 'rasikmohamed456@gmail.com', '2003-08-15', 21, '2', '2', 'Peer Mohamed', 'farmer', 20000.00, 1, 0.00, 17000.00, 'dindigul', 'Old washermenpet', '2409250003', '1', '1', 'upload_files/candidate_tracker/59381014672_rasikp.pdf', NULL, '1', '2024-09-25', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-25 04:17:53', 104, '2024-09-25 04:25:23', 0, NULL, 1),
(21769, 'R Chandru', '2', '7395924779', '', 'chandrurangan402@gmail.com', '1999-05-28', 25, '3', '1', 'Sandhiya', 'House wife', 200000.00, 1, 200000.00, 450000.00, 'Chennai', 'Chennai', '2409250004', '', '2', 'upload_files/candidate_tracker/76829400026_NAUKRICHANDRUNODEJSDEVELOPER2.pdf', NULL, '1', '2024-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-25 04:50:52', 1, '2024-09-25 04:54:28', 0, NULL, 1),
(21770, 'Sathesh S', '13', '8122196161', '7604846086', 'spakssathesh25@gmail.com', '1996-12-25', 27, '3', '2', 'Poongodi S', 'Agriculture', 25000.00, 2, 0.00, 20000.00, 'Salem', 'Chennai', '2409250005', '', '1', 'upload_files/candidate_tracker/21658363224_RESUME240924.pdf', NULL, '1', '2024-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-25 04:54:20', 1, '2024-09-25 05:00:51', 0, NULL, 1),
(21771, 'ROSHAN NAGARAJAN', '13', '9840776235', '', 'roshan27898@gmail.com', '1998-08-27', 26, '3', '1', 'swathi', 'doctor', 50000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2409250006', '', '1', 'upload_files/candidate_tracker/37521753800_RoshanITResume.pdf', NULL, '1', '2024-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-25 04:54:24', 1, '2024-09-25 05:06:30', 0, NULL, 1),
(21772, 'Marziya Akhthar K A', '11', '9171421373', '9677158497', 'marziyaakhthar7215@gmail.com', '2001-05-21', 23, '6', '2', 'Azeez Basha', 'Sales Manager', 55000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409250007', '', '1', 'upload_files/candidate_tracker/85356483774_MarziyaCV.pdf', NULL, '1', '2024-09-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-25 04:56:15', 104, '2024-09-25 04:26:17', 0, NULL, 1),
(21773, 'Mohamed saqulin', '13', '6382174800', '', 'mohamedsaqulin2001@gmail.com', '2001-01-03', 23, '3', '2', 'Athavullah', 'Helper', 96000.00, 2, 0.00, 300000.00, 'Chennai', 'Anakaputhur', '2409250008', '', '1', 'upload_files/candidate_tracker/91070105633_Resume24july.pdf', NULL, '1', '2024-09-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-25 04:59:08', 1, '2024-09-25 05:05:54', 0, NULL, 1),
(21774, 'Vishwa Karunakaran', '13', '9345729035', '', 'vishwavicky2019@gmail.com', '2003-05-04', 21, '3', '2', 'Karunakaran', 'Rice business', 600000.00, 1, 0.00, 300000.00, 'Arni', 'Arni', '2409250009', '', '1', 'upload_files/candidate_tracker/1154179060_VishwaResume1.pdf', NULL, '1', '2024-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-25 05:10:38', 1, '2024-09-25 05:15:55', 0, NULL, 1),
(21775, 'Varun pradesh R', '13', '9080097106', '', 'varunpradesh010@gmail.com', '2003-03-10', 21, '3', '2', 'Ramesh', 'Weaver', 8000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2409250010', '', '1', 'upload_files/candidate_tracker/52353730398_Varunpradeshresume.pdf', NULL, '1', '2024-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-25 05:11:22', 1, '2024-09-25 05:14:20', 0, NULL, 1),
(21776, 'sharan m', '11', '7397669755', '8508759785', 'sharandeepa0412@gmail.com', '2001-11-12', 22, '3', '2', 'deepa m', 'house wife', 20000.00, 2, 0.00, 6000.00, 'pondicherry', 'pondicherry', '2409250011', '', '1', 'upload_files/candidate_tracker/94050278817_SharanResume.pdf', NULL, '1', '2024-09-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-25 05:14:13', 104, '2024-09-25 04:26:30', 0, NULL, 1),
(21777, 'Kaviyarasu G', '2', '9384271149', '', 'kaviyarasu1104@gmail.com', '2000-04-11', 24, '3', '2', 'Gurusamy', 'Business', 20000.00, 1, 0.00, 300000.00, '67c , KAmarajar street, Bharathi Nagar', 'Tharamani, Chennai', '2409250012', '', '1', 'upload_files/candidate_tracker/6165509857_kaviyarasuResumeW.pdf', NULL, '1', '2024-09-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-25 05:17:12', 1, '2024-09-25 05:25:11', 0, NULL, 1),
(21778, 'Rexleen R', '6', '9791864836', '8903543866', 'rexleenrobinson@gmail.com', '2003-05-21', 21, '2', '2', 'Robinson', 'Technician', 96000.00, 1, 0.00, 150000.00, 'Tirunelveli', 'Chennai', '2409250013', '50', '1', 'upload_files/candidate_tracker/95334032284_REXLEENRResume.pdf.pdf', NULL, '1', '2024-09-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skills good and he is also in interested in sales will try training period kindly confirm DOJ ', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-25 05:22:38', 104, '2024-09-25 04:30:23', 0, NULL, 1),
(21779, 'Dhivya S', '6', '7530072176', '', 'dhivyasubramani30@gmail.com', '1997-05-05', 27, '2', '2', 'Subramani', 'No', 47.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2409250014', '50', '1', 'upload_files/candidate_tracker/33648385622_dhivyacafs11zon.pdf', NULL, '1', '2024-09-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'job needed person and aged too ,so lets we try with 15k to 16k salary 1 exp in iT voice was good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-25 05:27:06', 104, '2024-09-25 04:27:35', 0, NULL, 1),
(21780, 'Balachandar', '6', '8220705701', '9344634001', 'balachandarselvam832@gmail.com', '1998-06-15', 26, '2', '2', 'Selvam', 'Teacher', 50000.00, 2, 0.00, 17000.00, 'Dharmapuri', 'Anna nagar chennai', '2409250015', '1', '1', 'upload_files/candidate_tracker/37213820179_BALACHANDAR1.pdf', NULL, '3', '2024-09-25', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and performance is not good', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-09-25 05:30:17', 104, '2024-09-25 04:29:40', 0, NULL, 1),
(21781, 'Hariharan C', '13', '9698469195', '9361341735', 'c18hariharan@gmail.com', '1997-02-18', 27, '6', '1', 'Rajeshwari N', 'Staff Nurse', 20000.00, 1, 0.00, 10000.00, 'Tirupattur', 'Chennai', '2409250016', '', '1', 'upload_files/candidate_tracker/89583037535_ResumeHariharan.pdf', NULL, '1', '2024-09-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-25 05:33:04', 1, '2024-09-25 05:40:05', 0, NULL, 1),
(21782, 'Mohamed Moosa Ibrahim pl', '6', '6384275833', '', 'smmi1718@gmail.com', '2009-09-25', 0, '2', '2', 'Seyed sirajudeen', 'Attender', 20000.00, 1, 0.00, 2.00, '16000-18000', 'Gulam murthaza st, Triplicane', '2409250017', '57', '1', 'upload_files/candidate_tracker/53412619446_moosasresume24.pdf', NULL, '1', '2024-09-25', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate very attitude and very worst behaviour , voice also very low so not fit for my team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-25 05:56:19', 104, '2024-09-25 04:29:28', 0, NULL, 1),
(21783, 'Akash P', '2', '7338714410', '', 'akashp73387@gmail.com', '2001-01-12', 23, '1', '2', 'Prakash', 'Driver', 10000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2409250018', '', '1', 'upload_files/candidate_tracker/22297079471_AKASHCV.pdf', NULL, '1', '2024-09-25', 0, 'Sathish sir', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-25 05:56:53', 1, '2024-09-25 06:01:33', 0, NULL, 1),
(21784, 'Mohamed Anzhar', '6', '8220942154', '6381269391', 'mohamedanzhar712@gmail.com', '2001-06-05', 23, '2', '2', 'Fairose khan', 'Cleaner', 15000.00, 2, 0.00, 15000.00, 'Ramanathapuram', 'Triplicane, Chennai', '2409250019', '57', '1', 'upload_files/candidate_tracker/11910007862_Anzharmarketingresume.pdf', NULL, '1', '2024-09-25', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performance is ok ,but his communication is not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-25 05:57:05', 104, '2024-09-25 04:30:11', 0, NULL, 1),
(21785, 'SHIEK MOHAMED N', '6', '6369886370', '', 'shiekmohamed132002@gmail.com', '2002-09-13', 22, '2', '2', 'S.Nizam Deen', 'Business person', 35000.00, 2, 0.00, 20000.00, '36h1,kk nagar, Uthamapalayam, Theni ,625533.', 'Triplecane, Chennai', '2409250020', '57', '1', 'upload_files/candidate_tracker/79965625083_SHIEKMOHAMEDN.pdf', NULL, '1', '2024-09-25', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for Any job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-25 05:58:03', 104, '2024-09-25 04:28:16', 0, NULL, 1),
(21786, 'J. SARAVANA KUMAR', '6', '9940319915', '', 'saravanakumar39622@gmail.com', '2002-10-20', 21, '2', '2', 'A. JAYA MOHAN', 'Worker in tea shop', 120000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2409250021', '50', '1', 'upload_files/candidate_tracker/61858481522_SaravanakumarResume11.pdf', NULL, '2', '2024-09-25', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication skill is very low and interested in customer support also, not interested in field work ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-25 06:17:24', 104, '2024-09-25 04:30:33', 0, NULL, 1),
(21787, '', '0', '9840417813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409250022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-25 06:20:23', 0, NULL, 0, NULL, 1),
(21788, '', '0', '9345775002', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409250023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-25 06:28:01', 0, NULL, 0, NULL, 1),
(21789, 'SANTHOSH C', '6', '6385922308', '9884043322', 'Santhoshkishali21@gmail.com', '2002-10-21', 21, '4', '1', 'CHANDRASAKERAN', 'Chief security', 30000.00, 2, 22000.00, 3000.00, 'Chooli', 'Chooli', '2409250024', '', '2', 'upload_files/candidate_tracker/11062657517_SANTOSH.pdf', NULL, '1', '2024-09-25', 13, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-25 07:24:13', 104, '2024-09-25 04:28:06', 0, NULL, 1),
(21790, 'jai ganesh d', '6', '9360176605', '', 'jai058825@gmail.com', '2003-09-08', 21, '4', '2', 'dilli babu p', 'labour', 18000.00, 1, 0.00, 20000.00, 'perambur barracks road', 'perambur barracks road', '2409250025', '', '1', 'upload_files/candidate_tracker/66690416508_jaiganesh.pdf', NULL, '1', '2024-09-25', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-25 07:25:47', 104, '2024-09-25 04:25:33', 0, NULL, 1),
(21791, 'Ashraff Sheriff A', '6', '7358747595', '', 'ashraffsheriff27012001@gmail.com', '2001-01-27', 23, '2', '2', 'Ahamed Sheriff', 'Electrician', 180000.00, 0, 0.00, 20000.00, 'No.86/126 N.M.k STREET AYANAVARAM CHENNAI -600023', 'Ayanavaram', '2409250026', '1', '1', 'upload_files/candidate_tracker/2464022813_AshraffResume.pdf', NULL, '1', '2024-09-25', 0, '', '3', '59', '2024-09-30', 192000.00, '', '3', '2024-10-14', '1', 'Fresher Career Gap Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'CA130', '5151', '2024-09-30', 1, '2024-09-25 07:36:49', 60, '2024-09-28 03:05:23', 0, NULL, 1),
(21792, 'Michael baker G', '6', '9566088012', '9884043322', 'michealbaker578@gmail.com', '2003-09-10', 21, '4', '2', 'George baker', 'Car driver', 2000.00, 1, 0.00, 18000.00, 'Otteri', 'Otteri', '2409250027', '', '1', 'upload_files/candidate_tracker/36620878988_michael.pdf', NULL, '1', '2024-09-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication  and performance is good ,will check with him in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-25 07:51:25', 104, '2024-09-25 04:29:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21793, 'Praveen k', '6', '9655053781', '8489348830', 'Praveen76522@gmail.com', '2001-05-20', 23, '2', '2', 'K. Nagamani', 'Home maker', 45000.00, 1, 0.00, 19000.00, '18,kadalangudi west Street Ervanchery', 'Chennai Ramapuram', '2409250028', '50', '1', 'upload_files/candidate_tracker/39842606251_RESUMEPDFcompressed.pdf', NULL, '1', '2024-09-26', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected -having communication skill lets try for 7 days training period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-25 07:53:43', 104, '2024-09-26 03:44:37', 0, NULL, 1),
(21794, 'Sakthipriya G. V', '6', '8428171815', '9840732128', 'sakthipriyavenugopal8@gmail.com', '2000-02-08', 24, '2', '2', 'Venugopal. G', 'Havildar', 25000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2409250029', '45', '1', 'upload_files/candidate_tracker/78227879516_3ac79623862a481eb7a6d3fa52dba7d31.docx', NULL, '1', '2024-09-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-25 08:38:51', 104, '2024-09-25 03:23:15', 0, NULL, 1),
(21795, '', '0', '7200097095', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409250030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-25 08:41:10', 0, NULL, 0, NULL, 1),
(21796, 'murugan K', '6', '8610895163', '9791420855', 'murugankothan@gmail.com', '1995-04-20', 29, '2', '1', 'kasthuri', 'former', 300000.00, 0, 13.00, 3.00, 'chennai', 'chennai', '2409250031', '50', '2', 'upload_files/candidate_tracker/80633550395_Resume.docx', NULL, '3', '2024-09-25', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-25 08:51:26', 104, '2024-09-25 04:27:54', 0, NULL, 1),
(21797, 'P sindhu', '6', '8148613740', '9941239930', 'sindhupalani2003@gmail.com', '2003-01-10', 21, '2', '1', 'Dhanasekar B', 'Sales manager', 23000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409250032', '50', '1', 'upload_files/candidate_tracker/94361441307_DOC20230626WA0001..pdf', NULL, '1', '2024-09-25', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication skill is very low and interested in customer support married person she is have a 4month baby', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-25 08:51:27', 104, '2024-09-25 04:30:44', 0, NULL, 1),
(21798, 'Vishnusankar', '27', '8667235443', '7092644210', 'vishnusankarv9596@gmail.com', '1995-09-01', 29, '3', '2', 'Perumalsamy', 'Shop worker', 15000.00, 1, 0.00, 15000.00, 'Theni', 'Chennai', '2409250033', '', '1', 'upload_files/candidate_tracker/54512856534_vishnusankar.NetResume.pdf', NULL, '1', '2024-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-25 09:16:16', 1, '2024-09-25 09:20:21', 0, NULL, 1),
(21799, 'KISHORE KUMAR R', '31', '6380483735', '', 'kishorekumar01902@gmail.com', '2002-09-01', 22, '3', '2', 'Bakkia lakshmi', 'Hostel warden', 25000.00, 1, 0.00, 240000.00, 'Vadapalani, Chennai', 'Vadapalani, Chennai', '2409250034', '', '1', 'upload_files/candidate_tracker/12616832077_KISHOREKUMARR.pdf', NULL, '1', '2024-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-25 09:18:30', 1, '2024-09-25 09:22:18', 0, NULL, 1),
(21800, 'Karthikeyan', '13', '8903522485', '8838132915', 'karthik.vel.0103@gmail.com', '1999-09-11', 25, '6', '2', 'Gayathri', 'Software developer', 250000.00, 1, 0.00, 220000.00, 'Chennai', 'Chennai', '2409250035', '', '1', 'upload_files/candidate_tracker/85473658042_KarthikeyanV1.pdf', NULL, '1', '2024-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-25 09:50:07', 1, '2024-09-25 09:55:28', 0, NULL, 1),
(21801, 'Manikandan G', '6', '9840382461', '6381372900', 'mg2994@srmist.e', '2000-12-20', 23, '2', '2', 'GOPALAKRISHNAN', 'Maintaince engineer', 70000.00, 1, 0.00, 18000.00, 'No,81 Pillayar kovil street kattupakam', 'Chennai', '2409250036', '50', '1', 'upload_files/candidate_tracker/7846505185_GMANIKANDAN.pdf', NULL, '1', '2024-09-26', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-25 10:37:48', 104, '2024-09-26 03:42:17', 0, NULL, 1),
(21802, '', '0', '6379037328', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409250037', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-25 12:21:27', 0, NULL, 0, NULL, 1),
(21803, '', '0', '8939668864', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409250038', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-25 12:55:40', 0, NULL, 0, NULL, 1),
(21804, 'Amirtha R', '6', '9344887934', '', 'amirsubbraj@gmail.com', '2003-12-19', 20, '2', '2', 'Ramasubbu P', 'Farmer', 20000.00, 1, 0.00, 15000.00, '5/46, Lakshmiammalpuram', 'Perambure', '2409250039', '1', '1', 'upload_files/candidate_tracker/10726527599_AmirthaRResume.pdf', NULL, '1', '2024-09-26', 0, '', '3', '59', '2024-10-14', 168000.00, '', '3', '2024-11-26', '2', 'Communication Ok Can give a try and check in 7 days training family need is there', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '2024-10-14', 1, '2024-09-25 03:25:23', 60, '2024-10-14 10:06:01', 0, NULL, 1),
(21805, 'Tamilselvan', '6', '6374676302', '9597746344', 'Tamilselvansevugan27@gmail.com', '2000-05-27', 24, '2', '2', 'Sevugan', 'Madurai', 20000.00, 0, 0.00, 18000.00, 'Madurai melur', 'Melur', '2409250040', '1', '1', 'upload_files/candidate_tracker/72639696832_TAMILSELVANS81.pdf', NULL, '1', '2024-09-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-25 09:48:30', 104, '2024-09-27 01:31:22', 0, NULL, 1),
(21806, 'Shanthini.S', '6', '7397245252', '9025858226', 'priyashanthini423@gmail.com', '2000-12-22', 23, '2', '2', 'Poongkodi S', 'House wife', 20000.00, 1, 15000.00, 18000.00, 'Aminjikarai, chennai', 'Aminjikarai, chennai', '2409260001', '50', '2', 'upload_files/candidate_tracker/79566762855_CV20231118144149221.pdf', NULL, '1', '2024-09-26', 0, '', '3', '59', '2024-09-30', 180000.00, '', '3', '2025-05-31', '2', 'Communication Ok fresher for our roles can give a tray and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-09-30', 1, '2024-09-26 04:14:08', 60, '2024-09-30 10:17:08', 0, NULL, 1),
(21807, 'Balasubramaniam R', '6', '7867981771', '', 'balas6048@gmail.com', '1999-07-18', 25, '2', '2', 'Rajalingam', 'Indian', 25000.00, 1, 0.00, 14000.00, 'Kundrathur', 'Kundrathur', '2409260002', '50', '1', 'upload_files/candidate_tracker/72176725315_CV2024052618392225.pdf', NULL, '1', '2024-09-26', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not ok with salary package and timing', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-26 04:14:43', 104, '2024-09-26 03:43:50', 0, NULL, 1),
(21808, 'Sudhir B', '13', '9360638051', '', '66sudhir.b@gmail.com', '2003-07-31', 21, '3', '2', 'Balamurugan S', 'Shop keeper', 30000.00, 0, 0.00, 30000.00, 'Nagapattinam', 'Chennai', '2409260003', '', '1', 'upload_files/candidate_tracker/24311094196_ResumeSudhirFresher.pdf', NULL, '1', '2024-09-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 04:37:06', 1, '2024-09-26 04:46:15', 0, NULL, 1),
(21809, 'Vignesh T', '13', '8248263425', '', 'Vignesh82482@gmail.com', '2004-07-13', 20, '3', '2', 'Thiyagarajan p', 'Supervisor', 10000.00, 1, 0.00, 25000.00, 'Trichy', 'Chennai', '2409260004', '', '1', 'upload_files/candidate_tracker/20830672501_3VIGNESH.TRESUME.docx', NULL, '1', '2024-09-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 04:39:33', 1, '2024-09-26 04:47:21', 0, NULL, 1),
(21810, 'Madhumitha M', '11', '8220277318', '7305324114', 'madhumithamurugan24@gmail.com', '2002-08-24', 22, '6', '2', 'Murugan.R', 'Business', 25000.00, 1, 0.00, 10000.00, 'No:512 GDP ,prithivinagar street , Thervazhi post', 'No:512, prithivinagar street, Gdp, Thervazhi post', '2409260005', '', '1', 'upload_files/candidate_tracker/91559216642_MadhuPDF.pdf', NULL, '1', '2024-09-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-26 04:50:55', 104, '2024-09-26 03:41:24', 0, NULL, 1),
(21811, 'Pradeep s', '11', '7305324114', '8220277318', 'pradeepwar001@gmail.com', '2003-06-05', 21, '6', '2', 'Saravanan.m', 'TNEB', 50000.00, 1, 0.00, 8000.00, 'Chennai', 'Chennai', '2409260006', '', '1', 'upload_files/candidate_tracker/90876153338_Document5.pdf', NULL, '1', '2024-09-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-26 04:50:58', 104, '2024-09-26 03:41:08', 0, NULL, 1),
(21812, 'manikandan', '4', '8838546989', '', 'manishthangam899@gmail.com', '1998-12-09', 25, '3', '2', 'babu', 'security', 12000.00, 1, 0.00, 12000.00, 'thanjavur', 'thanjavur', '2409260007', '', '1', 'upload_files/candidate_tracker/28069398344_RESUME21.docx', NULL, '1', '2024-09-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-26 04:55:41', 104, '2024-09-26 03:40:31', 0, NULL, 1),
(21813, 'PARTHIBAN', '6', '8939428978', '', 'kannanparthi26@gmail.com', '2002-12-26', 21, '3', '2', 'KANNAN', 'ELECTRICIAN', 25000.00, 4, 0.00, 300000.00, 'Chennai', 'Chennai', '2409260008', '', '1', 'upload_files/candidate_tracker/45351523156_CVResume1.pdf', NULL, '1', '2024-12-30', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication and convincing skill low then he is not interested in field work', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-26 04:56:24', 104, '2024-12-30 06:09:38', 0, NULL, 1),
(21814, 'Arun', '13', '9363359709', '', 'arunsugan919@gmail.com', '2003-06-13', 21, '3', '2', 'Vimala', 'Housewife', 30000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2409260009', '', '1', 'upload_files/candidate_tracker/14937714992_ArunResumeFullstackDeveloper.pdf', NULL, '1', '2024-09-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 04:56:27', 1, '2024-09-26 05:01:21', 0, NULL, 1),
(21815, 'ABDUL SAMAD A', '13', '7356494086', '', 'abdulsamada0909@gmail.com', '2000-09-09', 24, '3', '2', 'Abdul Kader S', 'Merchant', 30000.00, 2, 0.00, 15000.00, 'PALAKKAD', 'Chennai', '2409260010', '', '1', 'upload_files/candidate_tracker/11186841973_ABDULSAMAD.A.pdf', NULL, '1', '2024-09-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 04:58:20', 1, '2024-09-26 05:04:03', 0, NULL, 1),
(21816, 'Muthukumar S', '4', '8098937181', '8680052812', 'sm9467491@gmail.com', '2009-09-26', 15, '2', '2', 'Lakshmi', 'Coolie', 9000.00, 1, 0.00, 90000.00, 'Rajapalayam', 'Chennai', '2409260011', '7', '1', 'upload_files/candidate_tracker/66849246951_RESUME.docx', NULL, '1', '2024-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 05:10:44', 1, '2024-09-26 05:22:57', 0, NULL, 1),
(21817, 'KARTHIKEYAN M', '5', '7402050286', '7402050287', 'karthee1011@gmail.com', '1998-10-11', 25, '2', '2', 'MUTHUKRISHNAN', 'Buisness', 15000.00, 1, 0.00, 350000.00, 'Cheyyar', 'Saidapet', '2409260012', '50', '2', 'upload_files/candidate_tracker/50779027780_CvKarthi.pdf', NULL, '1', '2024-09-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-26 05:16:56', 104, '2024-09-26 10:58:04', 0, NULL, 1),
(21818, 'Sarath kumar', '6', '7358333251', '7358333252', 'sarathkumardon1997@gmail.com', '1997-10-15', 26, '2', '2', 'Pandian', 'Hotel', 30000.00, 1, 22500.00, 26000.00, 'Chennai', 'Chennai', '2409260013', '50', '2', 'upload_files/candidate_tracker/22676894728_Resumesarath1.pdf', NULL, '1', '2024-09-27', 0, '', '1', '104', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '77778', '55605', '1970-01-01', 1, '2024-09-26 05:28:15', 104, '2024-10-08 09:24:27', 0, NULL, 1),
(21819, 'Adithya S', '6', '9600938764', '9944478764', 'adithyastalin13@gmail.com', '2003-10-31', 20, '2', '2', 'Stalin G', 'Electrician', 30000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Vandalur', '2409260014', '50', '1', 'upload_files/candidate_tracker/19259755108_DOC20240730WA0001..pdf', NULL, '1', '2024-09-26', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-26 05:34:22', 104, '2024-09-26 03:41:54', 0, NULL, 1),
(21820, 'Anitha.V', '6', '8925148715', '', 'anithavelu30@gmail.com', '2004-09-05', 20, '2', '2', 'V. Sivagami', 'Self employed', 20000.00, 2, 0.00, 2.50, 'Vyasarpadi Chennai', 'Vyasarpadi Chennai', '2409260015', '50', '1', 'upload_files/candidate_tracker/68114987166_CV2024090614271824.pdf', NULL, '1', '2024-09-26', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication skill is very low and interested in customer support ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-26 05:35:37', 104, '2024-09-26 03:45:40', 0, NULL, 1),
(21821, 'Shiny R', '6', '9080209744', '9600875771', 'shisan2899@gmail.com', '1999-08-28', 25, '2', '1', 'S .Nirmal Raj', 'Teacher', 20000.00, 0, 0.00, 325000.00, 'Vellore', 'Chennai', '2409260016', '50', '1', 'upload_files/candidate_tracker/91957353799_CV20240720210024591.pdf', NULL, '1', '2024-09-26', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - she will join only after completing her notice period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-26 05:39:14', 104, '2024-09-26 03:44:15', 0, NULL, 1),
(21822, 'Deepak Rajagopal', '13', '7904839026', '8122384456', 'deepakrajagopal55@gmail.com', '1998-04-23', 26, '3', '2', 'A. S. Rajagopal', 'Driver', 22000.00, 1, 0.00, 250000.00, 'Mallasamudram', 'Thoraipakkam', '2409260017', '', '1', 'upload_files/candidate_tracker/85146508774_Deepakrajagopal2024.pdf', NULL, '1', '2024-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 05:46:52', 1, '2024-09-26 05:51:08', 0, NULL, 1),
(21823, 'Kakarla Sandhya', '6', '9392920542', '9912190975', 'kakarlasandhyananda@gmail.com', '2002-08-17', 22, '2', '2', 'K.Vasudeva reddy', 'Farmer', 10000.00, 2, 0.00, 17000.00, 'Anantapur', 'Bangalore ,Ashwath Nagar, Marathahalli', '2409260018', '1', '1', 'upload_files/candidate_tracker/44125733507_KAKARLASANDHYARESUME1.pdf', NULL, '1', '2024-09-26', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and knowledge', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-09-26 06:06:41', 126, '2024-09-26 05:46:05', 0, NULL, 1),
(21824, 'Dhanush.', '4', '7806821689', '8939595650', 'dhanushjeeva061@gmail.com', '2003-12-24', 20, '2', '2', 'Balu.S', 'Chef', 22000.00, 2, 0.00, 15000.00, '5th pillaiyara Kovil street ekkattuthangal ch-32', '5th pillaiyara Kovil street ekkattuthangal ch-32', '2409260019', '50', '1', 'upload_files/candidate_tracker/13828938124_DNRESUME2.docx', NULL, '1', '2024-09-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 06:07:21', 1, '2024-09-26 06:16:21', 0, NULL, 1),
(21825, 'Sandhiya', '13', '8270874455', '8270165692', 'Sandyvijay2002@gmail.com', '2002-05-10', 22, '3', '2', 'Venkatesan', 'Daily Wages', 30000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Velachery', '2409260020', '', '1', 'upload_files/candidate_tracker/50605524675_SandhiyaResumeFullstack.pdf', NULL, '1', '2024-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 06:33:37', 1, '2024-09-26 06:54:37', 0, NULL, 1),
(21826, 'KAMAL s', '13', '8248031212', '', 'kamal082001@gmail.com', '2001-02-22', 23, '3', '2', 'shanmugam s', 'farmer', 25000.00, 2, 0.00, 400000.00, 'thiruvannamalai', 'chennai', '2409260021', '', '1', 'upload_files/candidate_tracker/88788501395_KAMALSResume.pdf', NULL, '1', '2024-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 06:43:42', 1, '2024-09-26 06:58:32', 0, NULL, 1),
(21827, 'Bharath K', '13', '7200909469', '8778349151', 'bharathkumaravel2003@gmail.com', '2003-01-30', 21, '6', '1', 'Kumar', 'Business', 30000.00, 1, 0.00, 3.00, 'Chennai', 'Redhills 0', '2409260022', '', '1', 'upload_files/candidate_tracker/26021471428_BHARATHKFlowCVResume202408254.pdf', NULL, '1', '2024-09-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 06:45:25', 1, '2024-09-26 06:51:31', 0, NULL, 1),
(21828, 'B. Sabari nathan', '13', '8248905924', '9342659910', 'sabarinathanbs017@gmail.com', '2004-04-17', 20, '3', '2', 'K.baskaran', 'Farmer', 60000.00, 3, 0.00, 300000.00, 'Tirunelveli', 'Chennai', '2409260023', '', '1', 'upload_files/candidate_tracker/83423610154_sabarinathan.b2.pdf', NULL, '1', '2024-09-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 06:47:52', 1, '2024-09-26 06:53:18', 0, NULL, 1),
(21829, '', '0', '6385332024', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409260024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-26 06:54:30', 0, NULL, 0, NULL, 1),
(21830, 'Rajesh S', '6', '7904215018', '7358458564', 'rajeshraj4678nithish@gmail.com', '1998-05-30', 26, '2', '2', 'Santhamoorthy', 'Farmer', 30000.00, 1, 18000.00, 18000.00, 'No. 437, moorthy street, brammadesam', 'Ashok nagar, chennai', '2409260025', '45', '2', 'upload_files/candidate_tracker/22671263359_Rajeshcv.pdf', NULL, '1', '2024-09-26', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-26 07:07:29', 104, '2024-09-26 03:40:10', 0, NULL, 1),
(21831, 'NAVEEN G', '6', '7305323664', '9840839947', 'naveennaveeng62@gmail.com', '2002-02-06', 22, '2', '2', 'Jayalakshmi', 'Fashion model', 200000.00, 1, 0.00, 15000.00, 'Redhills', 'Redhills', '2409260026', '1', '1', 'upload_files/candidate_tracker/56670731222_Naveenresume1.pdf', NULL, '1', '2025-08-06', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-26 07:16:45', 154, '2025-08-06 02:55:23', 0, NULL, 1),
(21832, '', '0', '9150852075', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409260027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-26 07:19:11', 0, NULL, 0, NULL, 1),
(21833, 'SHEIKMOHAMED N', '13', '8754108718', '', 'sheikmd1804@gmail.com', '2003-04-18', 21, '3', '2', 'NILOBAR DEEN', 'Daily labour', 130000.00, 1, 0.00, 2.50, 'Cumbum,Theni', 'CIT Nagar, chennai', '2409260028', '', '1', 'upload_files/candidate_tracker/4823268336_Sheikcv.pdf', NULL, '1', '2024-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 07:36:53', 1, '2024-09-26 07:40:24', 0, NULL, 1),
(21834, 'Manu A', '6', '9902887196', '', 'manuvelmanvel36@gmail.com', '1994-06-14', 30, '2', '2', 'Anand', 'BBMP', 30000.00, 1, 0.00, 17000.00, 'Jayanagar', 'Jayanagar', '2409260029', '1', '1', 'upload_files/candidate_tracker/30636395679_DOC20240802WA0002..docx', NULL, '1', '2024-09-26', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of communication and knowledge', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-09-26 08:22:35', 126, '2024-09-26 05:44:56', 0, NULL, 1),
(21835, 'Annapoorna', '6', '9789949665', '9551576752', 'annapoornashok@gmail.com', '2002-01-11', 22, '2', '2', 'G.Ashok kumar', 'Business', 35000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2409260030', '1', '2', 'upload_files/candidate_tracker/68740733411_poornacv.pdf', NULL, '1', '2024-09-27', 0, '', '3', '59', '2024-09-30', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can give a try and check in 7 days training have exp in calling for 1 yr course in fashion too need to check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '2024-09-30', 1, '2024-09-26 09:45:52', 60, '2024-09-28 04:39:39', 0, NULL, 1),
(21836, 'Sharmila S', '6', '9600985527', '', 's.sharimila2003@gmail.com', '2003-08-08', 21, '2', '2', 'Shanmugam R', 'Farmer', 5000.00, 2, 0.00, 15000.00, 'Tittagudi', 'Taramani', '2409260031', '50', '1', 'upload_files/candidate_tracker/42264288047_sharmiresume.pdf', NULL, '1', '2024-09-26', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate performacne and communication not good ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-09-26 09:52:23', 104, '2024-09-26 05:08:54', 0, NULL, 1),
(21837, '', '0', '9042707469', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409260032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-26 10:10:14', 0, NULL, 0, NULL, 1),
(21838, 'Snegha', '6', '6379775147', '9789949665', 'snehasaravanan12@gmail.com', '2001-07-10', 23, '2', '2', 'Saravanan', 'Businesse', 100000.00, 2, 16000.00, 20000.00, 'Kolathur', 'Kolathur', '2409260033', '1', '2', 'upload_files/candidate_tracker/53714889346_SneghaSaravanan.pdf', NULL, '1', '2024-09-27', 0, '', '3', '59', '2024-09-30', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Have exp in calling but not a relevant domain Her friend also selected for the role can check in 7 days and confirm', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '2024-09-30', 1, '2024-09-26 10:43:24', 60, '2024-09-30 10:17:53', 0, NULL, 1),
(21839, 'R.Hemavathy', '6', '7305905861', '7305260643', 'vathyhema029@gmail.com', '2002-08-08', 22, '2', '2', 'Latha(Mother)/Ramu (Father)', 'Company work', 18000.00, 1, 0.00, 19000.00, 'Chennai (Avadi)', 'Chennai (Avadi)', '2409260034', '1', '1', 'upload_files/candidate_tracker/47994314717_CV202409201746117.pdf', NULL, '1', '2024-09-27', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate only need non oice process and very long distance so not fit my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-26 12:52:17', 104, '2024-09-27 02:27:34', 0, NULL, 1),
(21840, 'SATHISH KUMAR G', '22', '8608150025', '', 'sathishkumarg353@gmail.com', '2001-12-25', 22, '3', '2', 'M Gopala krishnan', 'Flower shop', 25000.00, 2, 0.00, 15000.00, 'Virudhunagar', 'Chapauk, Chennai', '2409260035', '', '1', 'upload_files/candidate_tracker/87547216642_SATHISHRESUME3.pdf', NULL, '1', '2024-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-26 01:19:24', 1, '2024-09-26 01:24:18', 0, NULL, 1),
(21841, 'Sandhiya', '6', '7305224358', '8248045860', 'sandhiya.3722@gmail.com', '2002-07-03', 22, '2', '2', 'Manivannan,Parameswari', 'Daily wages', 80000.00, 2, 18000.00, 20000.00, 'Royapuram', 'Royapuram', '2409260036', '1', '2', 'upload_files/candidate_tracker/3210946490_Sandhiya.CV.pdf', NULL, '1', '2024-09-27', 10, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability was doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-26 01:45:44', 104, '2024-09-27 02:46:47', 0, NULL, 1),
(21842, 'Manjuparkavi A', '6', '9360841889', '9080683699', 'manjuparkavi0902@gmail.com', '2001-02-09', 23, '2', '2', 'Arivazhagan SP', 'Advocate', 144000.00, 1, 0.00, 16000.00, '5,Nagamman Koil Street thandurai pattabiram ch-72', '175,8th cross street moderncity pattabiram ch-72', '2409260037', '1', '1', 'upload_files/candidate_tracker/19922473553_Manjuparkavi.docx', NULL, '1', '2024-09-30', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candiate performance and communication is not good,also not interested in Voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-09-26 02:27:31', 104, '2024-09-30 04:36:36', 0, NULL, 1),
(21843, 'Udhaya kumar V', '13', '8903499170', '', 'vudhayakumar508@gmail.com', '2003-09-16', 21, '3', '2', 'Vijayan', 'Farmer', 15000.00, 2, 0.00, 200000.00, 'Tirupattur', 'Chennai', '2409270001', '', '1', 'upload_files/candidate_tracker/24382812743_1726135348427UdhayaUpdateResume.pdf', NULL, '1', '2024-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-27 04:26:05', 1, '2024-09-27 04:50:29', 0, NULL, 1),
(21844, 'Aravinthan', '31', '9344059193', '', 'aravinth700000@gmail.com', '2001-03-01', 23, '6', '2', 'Nandhagopal', 'T.V mechanic', 35000.00, 1, 256000.00, 400000.00, 'Erode', 'Erode', '2409270002', '', '2', 'upload_files/candidate_tracker/78062204489_Aravinthan.n82.pdf', NULL, '1', '2024-09-27', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-27 04:26:37', 1, '2024-09-27 04:29:38', 0, NULL, 1),
(21845, 'Harini', '6', '9344062981', '8220491249', 'govindhasamyharini@gmail.com', '2003-02-01', 21, '2', '2', 'Parent', 'Farmer', 30000.00, 2, 0.00, 20000.00, 'Cuddalore', 'Porur', '2409270003', '1', '1', 'upload_files/candidate_tracker/92863292093_hariniresume2.pdf', NULL, '1', '2024-09-27', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate very low voice and voice also not good , so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-27 04:43:45', 104, '2024-09-27 07:07:06', 0, NULL, 1),
(21846, 'Karthik k', '6', '6374963847', '7094260296', 'karthikkbpr627@gmail.com', '2002-06-10', 22, '2', '2', 'Karunanithi', 'Nil', 7800.00, 2, 15000.00, 20000.00, 'Tenkasi', 'Poonamalle', '2409270004', '1', '2', 'upload_files/candidate_tracker/61954293557_KarthickResume.docx', NULL, '1', '2024-09-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-27 04:46:35', 104, '2024-09-27 10:41:37', 0, NULL, 1),
(21847, 'jayabharanivelu v m', '13', '9941796319', '9952968899', 'bharanivel.offl@gmail.com', '2002-09-25', 22, '3', '2', 'velumani t j', 'retired', 60000.00, 0, 0.00, 400000.00, 'Chennai', 'Chennai', '2409270005', '', '1', 'upload_files/candidate_tracker/59708838225_BharanivelResume.pdf', NULL, '1', '2024-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-27 04:50:27', 1, '2024-09-27 04:54:18', 0, NULL, 1),
(21848, 'Jaisurya.s', '6', '9840541263', '', 'jaisurya140703@gmail.com', '2003-07-14', 21, '2', '2', 'K.subramani', 'Daily wages', 200000.00, 1, 0.00, 250000.00, 'Saidapet', 'Saidapet', '2409270006', '57', '1', 'upload_files/candidate_tracker/81927099727_JaisuryaResume.pdf', NULL, '1', '2024-09-27', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-27 05:02:37', 104, '2024-09-27 02:58:59', 0, NULL, 1),
(21849, 'R yukeshkumar', '6', '7010559324', '9994258474', 'yukeshkumar262@gmail.com', '1999-09-16', 25, '2', '2', 'S Rajendran', 'Retail shop', 14000.00, 1, 0.00, 18000.00, 'Thanjavur', 'Chennai', '2409270007', '50', '1', 'upload_files/candidate_tracker/55217067103_YukeshKumar.pdf', NULL, '1', '2024-09-27', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected- not having communication skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-27 05:03:03', 104, '2024-09-27 02:27:57', 0, NULL, 1),
(21850, 'Arish Rosario', '13', '9384925197', '', 'arishrosario11@gmail.com', '2001-01-11', 23, '3', '2', 'Loordusami', 'Head Master', 150000.00, 1, 0.00, 400000.00, 'Villupuram', 'Villupuram', '2409270008', '', '2', 'upload_files/candidate_tracker/35299808421_ResumeSE.pdf', NULL, '1', '2024-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-27 05:26:52', 1, '2024-09-27 05:30:44', 0, NULL, 1),
(21851, 'DURGA K V', '13', '8220040291', '9994723400', 'kvdurgacse@gmail.com', '2002-10-02', 21, '4', '2', 'Vetri venthan m', 'Shop keeper', 200000.00, 1, 0.00, 300000.00, 'Coimbatore', 'Coimbatore', '2409270009', '', '1', 'upload_files/candidate_tracker/63486336630_Durgavetri.pdf', NULL, '1', '2024-09-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-27 05:31:42', 1, '2024-09-27 05:37:02', 0, NULL, 1),
(21852, 'Ranjith.T .M', '4', '9080635069', '8489179236', 'tmranjith1999@gmail.com', '1999-11-06', 24, '2', '2', 'Josephine mother', 'House wife', 15000.00, 1, 0.00, 15000.00, '10/138B govind Swamynagar Cuddalore-ot', '5)72 d-10 periyar nagar Thanjavur buddalur', '2409270010', '1', '1', 'upload_files/candidate_tracker/79613328069_RANJITHTM.pdf', NULL, '1', '2024-09-27', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-27 05:39:18', 104, '2024-09-27 02:52:49', 0, NULL, 1),
(21853, '', '0', '7305631356', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409270011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-27 05:42:33', 0, NULL, 0, NULL, 1),
(21854, 'Sarvalakshmi E', '6', '9943617120', '', 'Sarvaethuraj2004@gmail.com', '2004-04-15', 20, '3', '2', 'Ethuraj M', 'Driver', 15000.00, 2, 0.00, 15000.00, 'Tiruttani', 'Tiruttani', '2409270012', '', '1', 'upload_files/candidate_tracker/78307555454_sarvaresume.15.pdf', NULL, '1', '2024-09-27', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - no good at interview having doubts in timing', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-27 05:56:53', 104, '2024-09-27 02:36:39', 0, NULL, 1),
(21855, 'Prasanna S', '6', '6380802371', '9344752254', 'Prasannaricki2125@gmail.com', '2000-02-21', 24, '1', '2', 'Na', 'Na', 30000.00, 1, 11500.00, 17000.00, 'Na', 'No32/17 kalimanpuram street Mountroad', '2409270013', '', '2', 'upload_files/candidate_tracker/37999351859_prasanna1.pdf', NULL, '1', '2024-09-27', 0, 'Nagoor', '3', '59', '2024-10-08', 204000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can be trained in our roles Need to analyse in 7days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-10-08', 1, '2024-09-27 06:15:12', 60, '2024-10-07 06:54:27', 0, NULL, 1),
(21856, 'praveen', '6', '7010585188', '9080010982', 'punakutty652@gmail.com', '2002-05-01', 22, '1', '2', 'na', 'na', 50000.00, 2, 18000.00, 17000.00, 'Singarachari Street Triplecane', 'Singarachari Street Triplecane', '2409270014', '', '2', 'upload_files/candidate_tracker/19403362904_Puna.pdf', NULL, '1', '2024-09-27', 0, 'nagoor', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate unfit for the sales, team  Reference. Communication not Good, Reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-09-27 06:15:16', 104, '2024-09-27 02:47:29', 0, NULL, 1),
(21857, 'Thirukumaran', '2', '6379206751', '6383930911', 'thirukumaran33008@gmail.com', '2001-09-21', 23, '3', '2', 'Thiru', 'Working', 30000.00, 1, 300000.00, 500000.00, 'Ponneri', 'Chennai', '2409270015', '', '2', 'upload_files/candidate_tracker/44397744050_ThirukumaranResume11.pdf', NULL, '1', '2024-09-27', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-27 06:37:01', 1, '2024-09-27 06:39:48', 0, NULL, 1),
(21858, 'Sudarshan PM', '5', '7353605486', '9483805015', 'sudarshanmallagadde@gmail.com', '1993-05-27', 31, '2', '2', 'Mahabaleshwara P', 'Agriculture', 500000.00, 1, 360000.00, 380000.00, 'Malalagadde At (pO) Soraba (T) Shivamogga ((D)', 'Oppsite swamivivekanda park Girinagar', '2409270016', '57', '2', 'upload_files/candidate_tracker/78837056686_SudarshanPMResume.pdf', NULL, '1', '2024-09-27', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-27 06:42:01', 1, '2024-09-27 06:49:42', 0, NULL, 1),
(21859, 'Balamurugan J', '6', '9884628803', '9677812671', 'jbalamurugan3003@gmail.com', '2002-03-30', 22, '2', '2', 'Jayaraman', 'Driver', 25000.00, 3, 17000.00, 20000.00, 'Nandambakkam', 'Nandambakkam', '2409270017', '45', '2', 'upload_files/candidate_tracker/31388044795_DOC20240209WA0000.1.pdf', NULL, '1', '2024-09-27', 0, '', '3', '59', '2024-09-30', 216000.00, '', '3', '2024-10-14', '2', 'Communication sound good Have exp in calling but not a relevant one can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-09-30', 1, '2024-09-27 06:43:49', 60, '2024-09-28 04:17:43', 0, NULL, 1),
(21860, 'J. Santhiya', '4', '6381279627', '', 'santhiyasanthiya00294@gmail.com', '2009-09-27', 0, '2', '2', 'T.r. jayaprakash', 'Hotel room boy', 70000.00, 1, 8.00, 15.00, '27/20 Ramachandrapuram Kumbakonam', '27/20, Ramachandrapuram Kumbakonam', '2409270018', '1', '2', 'upload_files/candidate_tracker/14520766387_santhiyaresume..pdf', NULL, '1', '2024-09-27', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-27 06:44:57', 104, '2024-09-27 02:58:25', 0, NULL, 1),
(21861, 'Dhinakaran R S', '13', '7305302396', '', 'dhinakaran2001s@gmail.com', '2001-12-12', 22, '3', '2', 'Sankar R', 'Postman', 45000.00, 1, 0.00, 25000.00, 'Karur', 'Chennai', '2409270019', '', '1', 'upload_files/candidate_tracker/59104085399_RESUMEBW.pdf', NULL, '1', '2024-09-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-27 07:04:26', 1, '2024-09-27 07:11:52', 0, NULL, 1),
(21862, 'Mohammadi mehek', '4', '8050114274', '7204135132', 'mohammadimehek725@gmail.com', '2001-11-12', 22, '3', '2', 'Mohammed yousuf', 'Agarbatti business', 20.00, 2, 15000.00, 20000.00, 'Banashankari Ilyas nagar', 'Iliyas nagar', '2409270020', '', '2', 'upload_files/candidate_tracker/21819056902_GreenandWhiteBoldSalesManagerResume202409171425480000.pdf', NULL, '1', '2024-09-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-27 07:16:23', 1, '2024-09-27 07:28:12', 0, NULL, 1),
(21863, 'Gomathi Thangavel', '6', '8248114779', '', 'ammugomathi655@gmail.com', '2009-09-27', 0, '2', '2', 'Thangavel', 'business', 30000.00, 0, 0.00, 15000.00, 'Perunduri Erode', 'Perunduri Erode', '2409270021', '1', '1', 'upload_files/candidate_tracker/50562100047_gomathiresumecompressed.pdf', NULL, '1', '2024-09-27', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication skill is very low and interested in customer support not suitable sales ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-27 07:31:28', 104, '2024-09-27 05:41:51', 0, NULL, 1),
(21864, 'Vignesh R.', '6', '9025484001', '9551118813', 'vignesh2507r@gmail.com', '2003-07-25', 21, '2', '2', 'Ravi R.', 'Sales representative', 20000.00, 3, 0.00, 20000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2409270022', '1', '1', 'upload_files/candidate_tracker/79622534672_1726497837519172649783648117264978335191726497829428Document20.docx', NULL, '1', '2024-09-27', 0, '', '1', '104', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2024-09-27 09:13:26', 104, '2024-10-08 09:23:57', 0, NULL, 1),
(21865, 'Allan Sam Joshua', '11', '9384850150', '9710360382', 'allansamjoshua@gmail.com', '2004-05-14', 20, '6', '2', 'Denver wilson', 'Sales executive', 300000.00, 1, 0.00, 18000.00, '82 Thiruveedhi Amma koil Street', 'Chennai', '2409270023', '', '1', 'upload_files/candidate_tracker/13068937927_ALLANSAMJOSHUA.pdf', NULL, '1', '2024-09-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-27 10:55:40', 104, '2024-09-27 04:42:21', 0, NULL, 1),
(21866, 'Amos daniel', '6', '6374182151', '8778300287', 'amosdaniel9843@gmail.com', '2002-09-09', 22, '2', '2', 'Eromiya', 'Painter', 30000.00, 2, 0.00, 17500.00, 'vizhuthamagalam (v), Chengalpattu dt, 603312', 'Ayanavaram , Chennai ,600023', '2409270024', '50', '1', 'upload_files/candidate_tracker/78028138797_AmosRESEDIT1.pdf', NULL, '1', '2024-09-28', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - lacking communication skills and no interest', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-27 11:10:09', 104, '2024-09-28 05:31:30', 0, NULL, 1),
(21867, 'Sandhiya. K', '6', '6380656101', '9043321081', 'krishnasandhiya65@gmail.com', '2004-06-18', 20, '2', '2', 'Krishan moorthy', 'Photographer', 75000.00, 1, 0.00, 16000.00, 'Sowcarpet', 'Sowcarpet', '2409270025', '56', '1', 'upload_files/candidate_tracker/64061307022_resumedhiya.pdf', NULL, '1', '2024-10-07', 0, '', '3', '59', '2024-10-09', 175200.00, '', '', '2024-10-20', '2', 'Communication Ok Can give a try and check in 7 days training', '5', '2', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-10-09', 1, '2024-09-27 02:52:59', 60, '2024-10-09 10:20:32', 0, NULL, 1),
(21868, '', '0', '7395950059', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409270026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-27 03:24:28', 0, NULL, 0, NULL, 1),
(21869, 'Jagadeeshwaran J', '13', '9342604783', '9042642238', 'jsjagadeesh2304@gmail.com', '2003-04-23', 21, '3', '2', 'Jai Sankar', 'Attender', 20000.00, 1, 0.00, 180000.00, 'Chennai', 'Chennai', '2409280001', '', '1', 'upload_files/candidate_tracker/31103892583_JagadeeshwaranJResume.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:09:06', 1, '2024-09-28 04:13:25', 0, NULL, 1),
(21870, 'Vignesh S', '2', '9345377252', '6385414939', 'solaivignesh60@gmail.com', '2002-05-26', 22, '6', '2', 'Solaiyappan K', 'Farmer', 300000.00, 1, 0.00, 300000.00, 'Peralam', 'Chennai', '2409280002', '', '1', 'upload_files/candidate_tracker/47197866401_VIGNESHSRESUME.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:09:22', 1, '2024-09-28 04:13:02', 0, NULL, 1),
(21871, 'NAVEENSAN Y', '13', '8754420703', '9443164777', 'yetheenaveensan@gmail.com', '2001-08-13', 23, '3', '2', 'Yetheesan c', 'Suprent officer in GST', 70000.00, 1, 0.00, 400000.00, 'L48/68, 25th Street, korattur, chennai -600080', 'Chennai', '2409280003', '', '1', 'upload_files/candidate_tracker/11693398464_NAVEENSANYRESUMEaug.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:09:34', 1, '2024-09-28 04:15:12', 0, NULL, 1),
(21872, 'anbarasi s', '2', '9787665234', '', 'sanbarasi583@gmail.com', '2000-06-11', 24, '3', '1', 'sagayaraj', 'farmer', 75000.00, 4, 0.00, 25000.00, 'tiruvannamalai', 'adampakkam', '2409280004', '', '1', 'upload_files/candidate_tracker/6393753643_Anbufinalresume.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:09:42', 1, '2024-09-28 04:19:39', 0, NULL, 1),
(21873, 'GOKUL', '13', '9994009671', '9344364994', 'gokulsubramani02@gmail.com', '2002-09-02', 22, '3', '2', 'Subramani', 'Farmer', 15000.00, 3, 0.00, 20000.00, 'Krishnagiri', 'Chennai', '2409280005', '', '1', 'upload_files/candidate_tracker/32007606316_GOKULSRESUME11.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:11:53', 1, '2024-09-28 04:15:34', 0, NULL, 1),
(21874, 'Dinakaran V', '13', '8124427326', '9843123093', 'dinakaran011umk@gmail.com', '2002-12-11', 21, '6', '2', 'Vijaykumar', 'Farmer', 15000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2409280006', '', '1', 'upload_files/candidate_tracker/62852377526_DinakaranResume.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:12:28', 1, '2024-09-28 04:15:22', 0, NULL, 1),
(21875, 'Rahul R', '13', '7448475124', '', 'rahulhari1311@gmail.com', '2001-11-13', 22, '3', '2', 'Ravichandran', 'Supervisor', 400000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2409280007', '', '1', 'upload_files/candidate_tracker/75835265777_RahulR.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:19:42', 1, '2024-09-28 04:25:29', 0, NULL, 1),
(21876, 'Poovarasan K', '13', '6382802136', '9363224700', 'puvipoovarasan@gmail.com', '2002-09-21', 22, '6', '2', 'K.gnanasekari', 'Caretaker', 20000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2409280008', '', '1', 'upload_files/candidate_tracker/2332949344_puviresumenew.pdf1.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:22:48', 1, '2024-09-28 04:26:52', 0, NULL, 1),
(21877, 'Sasikumar', '13', '6382498732', '', 'Sasimsdcenation1788189@gmail.com', '2009-09-28', 0, '3', '2', 'Settu', 'building constructor', 40000.00, 1, 0.00, 375000.00, 'Chennai', 'Chennai', '2409280009', '', '1', 'upload_files/candidate_tracker/60594439314_SasDotResume.pdf', NULL, '1', '2024-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:23:10', 1, '2024-09-28 04:27:05', 0, NULL, 1),
(21878, 'Kannika N', '13', '8925676423', '', 'kannikan2002it@gmail.com', '2002-03-19', 22, '6', '2', 'Nedunchezhiyan C', 'Agriculture', 150000.00, 1, 0.00, 200000.00, 'Thanjavur', 'Chennai', '2409280010', '', '1', 'upload_files/candidate_tracker/5761335833_Kannikaresume.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:23:35', 1, '2024-09-28 04:26:48', 0, NULL, 1),
(21879, 'Krishna valli M', '13', '9688631846', '', 'krishnavalli10@gmail.com', '2001-09-10', 23, '3', '2', 'Dhanam M', 'House keeping', 8000.00, 2, 0.00, 3.50, 'chennai', 'chennai', '2409280011', '', '1', 'upload_files/candidate_tracker/7858878559_RESUME1.pdf', NULL, '1', '2024-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:35:56', 1, '2024-09-28 04:38:52', 0, NULL, 1),
(21880, 'Jamim Fathima M', '13', '7904668173', '8778095224', 'jamimmalik20@gmail.com', '2002-10-12', 21, '3', '2', 'Mohammad Malik l', 'System admin', 50000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2409280012', '', '1', 'upload_files/candidate_tracker/20260952008_Resume.pdf', NULL, '1', '2024-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:36:07', 1, '2024-09-28 04:45:03', 0, NULL, 1),
(21881, 'Shabari Prasannaa D', '2', '9952328788', '', 'kannansabarivasanth@gmail.com', '2002-03-01', 22, '6', '2', 'Dhanasekaran', 'News paper Agent', 100000.00, 1, 0.00, 400000.00, 'Erode', 'Chennai', '2409280013', '', '1', 'upload_files/candidate_tracker/17816632446_ResumeSept2024.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:41:31', 1, '2024-09-28 04:44:51', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21882, 'Lavanya AR', '11', '6379180634', '', 'lavanyaramesh1239@gmail.com', '2002-05-12', 22, '6', '2', 'Ramesh', 'Prohither', 15000.00, 1, 0.00, 250000.00, 'Chennai', 'Koduingaiyur', '2409280014', '', '1', 'upload_files/candidate_tracker/58870565838_DOC20240913WA0009..pdf', NULL, '1', '2024-09-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-28 04:48:32', 104, '2024-09-28 05:30:31', 0, NULL, 1),
(21883, 'Subash K', '13', '9087571006', '', 'subashsanthosh36@gmail.com', '2001-10-03', 22, '6', '2', 'Kandhan S', 'Handloom Silk Sarees', 72000.00, 1, 0.00, 300000.00, 'Arni', 'Chennai', '2409280015', '', '1', 'upload_files/candidate_tracker/28772342183_SubashResume1.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:58:16', 1, '2024-09-28 05:01:48', 0, NULL, 1),
(21884, 'Yoha R', '13', '9551021673', '', 'yohavaralakshmi@gmail.com', '2004-04-10', 20, '6', '2', 'Varalakshmi R', 'Clerk', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409280016', '', '1', 'upload_files/candidate_tracker/5735219750_YohaR.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 05:09:46', 1, '2024-09-28 05:12:49', 0, NULL, 1),
(21885, 'Kancherla Deepak chowdary', '22', '6301722865', '8919673393', 'deepakchowdary9493@gmail.com', '2004-01-25', 20, '2', '2', 'Kancherla babu naidu', 'Farmer', 20000.00, 1, 0.00, 25000.00, 'Tirupati', 'Chennai', '2409280017', '50', '1', 'upload_files/candidate_tracker/71460056904_DEEPAK1.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 05:11:27', 1, '2024-09-28 05:20:03', 0, NULL, 1),
(21886, '', '0', '9962205757', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409280018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-28 05:51:22', 0, NULL, 0, NULL, 1),
(21887, 'Sandhiya b', '6', '9150298893', '', 'Bsandhiya004@gmail.com', '2004-06-03', 20, '2', '2', 'Lakshmi latha', '12th', 750000.00, 0, 0.00, 15.00, 'Chennai', 'Chennai', '2409280019', '50', '1', 'upload_files/candidate_tracker/62772660115_RESUMESandhiyaB.pdf', NULL, '1', '2024-09-28', 0, '', '3', '59', '2024-09-30', 168000.00, '', '3', '2024-10-30', '2', 'Communication Good Can be trained in our roled need to check in  7 days training sustainability doubts in telesales', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '2024-09-30', 1, '2024-09-28 05:52:03', 60, '2024-09-28 05:47:11', 0, NULL, 1),
(21888, 'Mohamed Mohideen s', '4', '8015188916', '9176156431', 'Mohideenm618@gmailcom', '2004-03-29', 20, '2', '2', 'Shamsudeen', 'Late', 100000.00, 1, 0.00, 15000.00, 'Triplicane Chennai 600005', 'Triplicane Chennai 600005', '2409280020', '57', '1', 'upload_files/candidate_tracker/61395082583_CV202409261931174.pdf', NULL, '1', '2024-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 06:18:56', 1, '2024-09-28 06:46:45', 0, NULL, 1),
(21889, 'Vineshkumar A', '6', '9787292684', '7449065264', 'vineshkumar180309@gmail.com', '2001-04-12', 23, '2', '2', 'Abiragam', 'Coolie', 54000.00, 2, 20000.00, 20000.00, '1324, madha Kovil street, kattavaram, kidampalayam', '1324, madha Kovil street, kattavaram, kidampalayam', '2409280021', '50', '2', 'upload_files/candidate_tracker/5636085150_VINESHKUMAR11.pdf', NULL, '1', '2024-09-28', 0, '', '3', '59', '2024-10-08', 216000.00, '', '3', '2025-01-11', '2', 'Communication Ok Can be trained in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2024-10-08', 1, '2024-09-28 06:19:40', 60, '2024-10-07 06:55:32', 0, NULL, 1),
(21890, 'Lalith kumar', '4', '9182926120', '', 'lk6808693@gmail.com', '2002-09-24', 22, '3', '2', 'elango k', 'Father', 40000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2409280022', '', '1', 'upload_files/candidate_tracker/20186005478_LalithKumare.pdf', NULL, '1', '2024-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 06:31:01', 1, '2024-09-28 06:34:06', 0, NULL, 1),
(21891, 'Rabiya', '6', '9080812309', '', 'Rabiyarabi825@gmai.com', '1997-05-01', 27, '2', '2', 'Ayubbasha', 'Real-estate', 20000.00, 3, 12000.00, 18000.00, 'Tiruvanamalai', 'Kandhanchavadi', '2409280023', '39', '2', 'upload_files/candidate_tracker/8006485696_Rabresume.pdf', NULL, '1', '2024-09-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected already having 2 month work exp in visa and she pitched star product well,ctc 16k monday joining', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-28 06:40:48', 104, '2024-09-28 05:30:58', 0, NULL, 1),
(21892, 'Sujithra', '4', '6384763202', '9003202902', 'sujisri2225@gmail.com', '2000-06-22', 24, '2', '2', 'Gayathri', 'House wife', 40000.00, 1, 2.50, 3.00, 'Chennai', 'Chennai', '2409280024', '45', '2', 'upload_files/candidate_tracker/79011359573_SUJITHRARESUME.pdf', NULL, '1', '2024-09-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is selected for e sales \nimmediate joining\nneed to confirm on salary', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-09-28 06:46:57', 60, '2024-09-28 06:23:18', 0, NULL, 1),
(21893, 'P Dileep kumar', '5', '6382420657', '7550244021', 'ponneridileepkumar14341@gmail.com', '1994-01-28', 30, '2', '2', 'P. Nagendra (Father)', 'Gold work', 20000.00, 1, 30000.00, 35000.00, 'Santhapet,Nellore-524004', 'Ekkattuthangal, Guindy', '2409280025', '1', '2', 'upload_files/candidate_tracker/93665946351_DileepKumarresumenew.docx', NULL, '1', '2024-09-28', 3, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-09-28 06:59:44', 104, '2024-11-12 04:30:26', 0, NULL, 1),
(21894, '', '0', '8939704027', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409280026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-28 08:33:09', 0, NULL, 0, NULL, 1),
(21895, 'Sabarirajan', '13', '9677388662', '9629701662', 'sabarirajansundar@gmail.com', '2001-08-04', 23, '6', '2', 'Sundarraj', 'Farmer', 5000.00, 2, 0.00, 10000.00, 'Sirkali', 'Chennai', '2409280027', '', '1', 'upload_files/candidate_tracker/82916919893_SABARIResumE.pdf', NULL, '1', '2024-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 09:13:54', 1, '2024-09-28 09:32:10', 0, NULL, 1),
(21896, 'Praveen A', '13', '8610738097', '9176569594', 'praveen04.a@gmail.com', '2004-03-14', 20, '3', '2', 'Arun Kumar A', 'Thaiyal machine mechanic', 7000.00, 1, 0.00, 200000.00, 'Vandavasi', 'Vandavasi', '2409280028', '', '1', 'upload_files/candidate_tracker/76564439074_PraveenResume.pdf202409202011540000.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 09:19:29', 1, '2024-09-28 09:24:10', 0, NULL, 1),
(21897, 'Vennila', '13', '8680022483', '', 'vennirajendran@gmail.com', '2002-11-21', 21, '6', '2', 'Rajendran', 'Farmer', 15000.00, 2, 0.00, 1.50, 'Ariyalur', 'Vandalur', '2409280029', '', '1', 'upload_files/candidate_tracker/5097754630_VennilaResume1.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 09:20:29', 1, '2024-09-28 09:24:57', 0, NULL, 1),
(21898, 'Anish M', '13', '8122604766', '', 'anish190702@gmail.com', '2002-07-19', 22, '6', '2', 'Manivasagam', 'Farmer', 20000.00, 2, 0.00, 200000.00, 'Sivagangai', 'Chennai', '2409280030', '', '1', 'upload_files/candidate_tracker/61660036286_An.pdf', NULL, '1', '2024-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 09:36:01', 1, '2024-09-28 09:38:39', 0, NULL, 1),
(21899, 'Abishake', '13', '7339351328', '', 'abishakedeva27@gmail.com', '2001-09-09', 23, '6', '2', 'Devaraju', 'Retired Bank Staff', 25000.00, 1, 0.00, 300000.00, 'Namakkal', 'Namakkal', '2409280031', '', '1', 'upload_files/candidate_tracker/78354679057_Abishake.pdf', NULL, '1', '2024-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 09:40:20', 1, '2024-09-28 09:44:57', 0, NULL, 1),
(21900, 'Jayasuryan', '11', '9944087246', '8056832967', 'jaya5675surya@gmail.com', '1999-01-04', 25, '2', '2', 'Nil', 'Nil', 20000.00, 0, 0.00, 2.50, 'Chennai', 'Salem', '2409280032', '45', '1', 'upload_files/candidate_tracker/8424232812_Resume12092024095928am.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 09:58:13', 1, '2024-09-28 10:00:49', 0, NULL, 1),
(21901, 'Jegadeeswari M', '13', '6380752033', '', 'jegathanatraj49@gmail.com', '2003-06-04', 21, '6', '1', 'Natarajan', 'IT', 45000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2409280033', '', '1', 'upload_files/candidate_tracker/22326101660_BlackandWhiteSimpleOfficeAssistantResume.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 10:05:16', 1, '2024-09-28 10:09:15', 0, NULL, 1),
(21902, 'Janarthanan B', '13', '7339662407', '', 'janarth24072002@gmail.com', '2002-07-24', 22, '3', '2', 'Balan A', 'Electrician', 10000.00, 1, 0.00, 200000.00, 'TIRUVALLUR', 'TIRUVALLUR', '2409280034', '', '1', 'upload_files/candidate_tracker/22120257079_ResumeJB2.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 10:07:08', 1, '2024-09-28 10:11:27', 0, NULL, 1),
(21903, 'Yuvaraj B', '13', '6383975228', '', 'yuvayb777@gmail.com', '2001-10-20', 22, '3', '2', 'Balasundaram', 'Electrician', 5000.00, 1, 0.00, 200000.00, 'Thiruvallur', 'Thiruvallur', '2409280035', '', '1', 'upload_files/candidate_tracker/38193985133_YuvarajResume21.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 10:07:13', 1, '2024-09-28 10:11:44', 0, NULL, 1),
(21904, 'ASHOK KUMAR', '13', '8940748104', '', 'ashokkumar894074@gmail.com', '2002-09-09', 22, '6', '2', 'Selva rani', 'Coolie', 7000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2409280036', '', '1', 'upload_files/candidate_tracker/87687027768_AKRESUME2.pdf', NULL, '1', '2024-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 10:08:30', 1, '2024-09-28 10:18:33', 0, NULL, 1),
(21905, 'Abdul Hadi', '31', '9787280600', '', 'abdul8502hadi@gmail.com', '2002-05-08', 22, '3', '2', 'Mohamed Ansudeen', 'Works in abroad', 55000.00, 2, 0.00, 12000.00, 'Ramanathapuram', 'Palavanthangal', '2409280037', '', '1', 'upload_files/candidate_tracker/89378226284_AbdulHadiresume.pdf', NULL, '1', '2024-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 10:11:03', 1, '2024-09-28 10:16:33', 0, NULL, 1),
(21906, 'Haris mohammed S', '13', '8870631263', '', 'Hm6663196@gmail.com', '2001-04-21', 23, '3', '2', 'Syed iburamusha', 'Working in hotel', 20000.00, 1, 0.00, 15000.00, 'Rameswaram', 'Chennai', '2409280038', '', '1', 'upload_files/candidate_tracker/50902869656_Harismohammed.pdf', NULL, '1', '2024-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 10:13:14', 1, '2024-09-28 10:18:33', 0, NULL, 1),
(21907, 'Santhiya', '31', '6381883186', '9655735150', 'santhiyar121@gmail.com', '2002-10-19', 21, '3', '2', 'Ravi', 'Tailor', 15000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2409280039', '', '1', 'upload_files/candidate_tracker/72410991725_updated1.pdf', NULL, '1', '2024-09-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 10:48:46', 1, '2024-09-28 10:51:43', 0, NULL, 1),
(21908, 'Merlin Sneka .S', '4', '9677741974', '', 'merlinsavariraj@gmail.com', '2001-08-31', 23, '2', '2', 'Savariraj. a', 'Plumber', 10000.00, 1, 0.00, 15000.00, '57, Shanthi Nagar,2nd Street, Ammapet, Thanjavur.', '57, Shanthi Nagar, 2nd Street Ammapet, Thanjavur.', '2409280040', '1', '1', 'upload_files/candidate_tracker/99577246277_Merlin10.pdf', NULL, '1', '2024-10-03', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-28 11:22:50', 104, '2024-10-03 04:18:07', 0, NULL, 1),
(21909, 'R.Vaishnavi', '4', '7598684794', '', 'vaishnavi03102001@gmail.com', '2001-10-03', 23, '2', '2', 'R.Rani', 'Anganwadi worker', 10000.00, 1, 0.00, 15000.00, 'No 321-1 ull street Rajapaiyanchavadi', 'Rajapaiyanchavadi', '2409280041', '1', '1', 'upload_files/candidate_tracker/6402728436_VaishnaviRaju..pdf', NULL, '1', '2024-10-03', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-28 11:22:55', 104, '2024-10-03 04:18:19', 0, NULL, 1),
(21910, 'Arun Alex', '6', '8778227702', '', 'alexarokiaarunalex@gmail.com', '2001-09-26', 23, '2', '2', 'Rayan Santhosh', 'police', 50000.00, 1, 0.00, 23000.00, 'vempampattu', 'avadi', '2409280042', '1', '1', 'upload_files/candidate_tracker/70200793538_Perfectresume.pdf', NULL, '1', '2024-09-30', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candiate performance and communication is not good', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2024-09-28 01:13:07', 104, '2024-09-30 04:36:25', 0, NULL, 1),
(21911, 'Suvetha S', '6', '8122925073', '', 'suvethasundar03@gmail.com', '2003-05-27', 21, '2', '2', 'Vanitha', 'Kooli', 30000.00, 0, 0.00, 15000.00, 'Uthangarai', 'Porur', '2409280043', '1', '1', 'upload_files/candidate_tracker/91449430263_TapScanner290920241639.pdf', NULL, '1', '2024-09-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-09-28 01:27:55', 104, '2024-09-30 10:28:05', 0, NULL, 1),
(21912, '', '0', '7904688158', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409280044', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-28 01:29:28', 0, NULL, 0, NULL, 1),
(21913, 'Surya', '6', '9551634213', '', 'Surya63798@gmail.com', '2002-04-30', 22, '2', '2', 'B.gnanamani', 'Home maker', 25000.00, 2, 0.00, 18.00, 'Chennai', 'Chennai', '2409280045', '1', '1', 'upload_files/candidate_tracker/13564096320_SuryaBresume.pdf.pdf', NULL, '1', '2024-10-28', 0, '', '3', '59', '2024-11-04', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok Have Salary Exp need to check and confirm in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '2024-11-04', 1, '2024-09-28 01:29:44', 60, '2024-11-02 12:02:42', 0, NULL, 1),
(21914, 'Shyamala S', '35', '7845478169', '', 'shyamalas642@gmail.com', '2003-01-27', 21, '1', '2', 'Shyam sundar', 'Completed degree', 27000.00, 3, 0.00, 30000.00, 'Tirupathur', 'Tirupathur', '2409280046', '', '1', 'upload_files/candidate_tracker/66714678946_Shyam2.pdf', NULL, '3', '2024-10-15', 0, '318', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-28 04:39:03', 1, '2024-09-28 04:48:52', 0, NULL, 1),
(21915, '', '0', '9150389824', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-29 03:54:17', 0, NULL, 0, NULL, 1),
(21916, 'Boomika Sundararajan', '6', '6381553340', '', 'Boomikasundararajann@gmail.com', '2003-11-26', 20, '2', '2', 'Sundararajan. M', 'Accountant', 400000.00, 1, 0.00, 25000.00, 'Villupuram', 'Chennai', '2409290002', '1', '1', 'upload_files/candidate_tracker/79518757944_BoomikaCV.pdf', NULL, '1', '2024-09-30', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate future plan is it only after 1 3 months start for it course , fees reason to joining he work so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-29 05:25:00', 104, '2024-09-30 04:35:54', 0, NULL, 1),
(21917, 'Kiruthiga K', '4', '8778246959', '9840704858', 'kirthigakumaresan550@gmail.com', '2000-08-24', 24, '3', '1', 'Sathish', 'M.com', 30000.00, 0, 0.00, 14000.00, 'No 278 voc nagar tp scheme road tondiarpet', 'New washermenpet (Tondiarpet)', '2409290003', '', '1', 'upload_files/candidate_tracker/68592779176_resumefresher1.pdf', NULL, '1', '2024-09-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-29 01:18:41', 1, '2024-09-29 01:24:14', 0, NULL, 1),
(21918, 'pranesh kumar.b', '11', '9940442976', '8056267736', 'ppranesh515@gmail.com', '2003-01-04', 21, '3', '2', 'baskar.s', 'driver', 14000.00, 1, 0.00, 5000.00, 'manali new town', 'manali new town', '2409300001', '', '1', 'upload_files/candidate_tracker/87570391191_PraneshKumarsProfessio.pdf', NULL, '1', '2024-09-30', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not good communication and had no knowledge about hr. sustainability issue', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-09-30 04:23:45', 104, '2024-09-30 04:37:25', 0, NULL, 1),
(21919, 'Tharani J', '6', '6369755941', '', 'tharanivanitha4@gmail.com', '2004-07-12', 20, '2', '2', 'Jayapal M', 'Driver', 20000.00, 1, 0.00, 20000.00, 'Tirupattur', 'Chennai (keelpakam)', '2409300002', '1', '1', 'upload_files/candidate_tracker/59288152626_Resume1.pdf', NULL, '1', '2024-09-30', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate all ok but distance is very long and a/c not accept for our body condision so not fit for my team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-09-30 04:52:40', 104, '2024-09-30 04:36:08', 0, NULL, 1),
(21920, 'Thafeem.A', '5', '7305648724', '7305627676', 'thafeem1216@gmail.com', '2000-12-16', 23, '2', '2', 'Parents', 'Tailor', 10000.00, 4, 0.00, 15000.00, 'Washermenpet', 'Washermenpet', '2409300003', '57', '1', 'upload_files/candidate_tracker/6594104403_CV2023070812391136.pdf', NULL, '1', '2024-09-30', 0, '', '3', '59', '2024-10-08', 168000.00, '', '3', '2025-03-15', '2', 'Communication Ok Can be trained 6 days working seems to be doubtful', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-10-08', 1, '2024-09-30 04:53:37', 60, '2024-10-07 06:57:25', 0, NULL, 1),
(21921, 'Harish', '4', '8124480428', '9514775536', 'harishelangovan05@gamil.com', '2002-12-23', 21, '2', '2', 'Elangovan', 'Load man', 20000.00, 2, 15000.00, 16000.00, 'Thanjavur', 'Thanjavur', '2409300004', '1', '2', 'upload_files/candidate_tracker/75938886491_Harishcv1.docx', NULL, '1', '2024-09-30', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-09-30 04:54:42', 104, '2024-09-30 04:31:28', 0, NULL, 1),
(21922, 'Arasendran', '6', '9677862569', '', 'loner2569v@gmail.com', '2003-12-15', 20, '2', '2', 'Suresh', 'Student', 30000.00, 2, 0.00, 18000.00, 'Thousand lights', 'Thousand lights', '2409300005', '57', '1', 'upload_files/candidate_tracker/41823215172_CopyofCopyofMinimalistWhiteandGreyProfessionalResume202409211740400000.pdf', NULL, '1', '2024-09-30', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-30 05:01:20', 104, '2024-09-30 04:30:58', 0, NULL, 1),
(21923, 'Nirmal Gandhi', '6', '9360092956', '', 'nirmalnirmal88764@gmail.com', '1993-08-25', 31, '2', '2', 'Siva subramanian', 'Farmer', 40000.00, 2, 20000.00, 19000.00, 'Tirunelveli', 'Thirumangalam', '2409300006', '1', '2', 'upload_files/candidate_tracker/8101366216_ResumeNEW2024NIRMALGANDHI1.pdf', NULL, '3', '2024-09-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2024-09-30 05:03:51', 1, '2024-09-30 05:09:11', 0, NULL, 1),
(21924, 'Priyadarshini.R', '6', '8939330135', '', 'priyadarshiniravi10@gmail.com', '2003-02-10', 21, '2', '2', 'Ravi, shanthi', 'Daily wages', 10000.00, 1, 0.00, 16000.00, 'Royapuram', 'Royapuram', '2409300007', '1', '1', 'upload_files/candidate_tracker/90721547108_SharePriyadarshini.cv.pdf', NULL, '1', '2024-09-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected - interested but lets try for 7 working days', '5', '2', '', '1', '8', '', '2', '2024-10-02', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-30 05:11:12', 104, '2024-09-30 04:35:04', 0, NULL, 1),
(21925, 'Suruthi', '6', '9384316385', '', 'suruthir284@gmail.com', '2002-12-05', 21, '2', '2', 'Raguraman', 'Former', 20000.00, 1, 15000.00, 20000.00, 'Thengal street ammaiyappan thiruvarur', 'Aminjakarai', '2409300008', '1', '2', 'upload_files/candidate_tracker/16959589082_SURUTHI.pdf', NULL, '1', '2024-09-30', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-09-30 05:11:26', 104, '2024-09-30 04:34:35', 0, NULL, 1),
(21926, 'Mohammed Faheem K', '34', '8525024265', '', 'kmohammedfaheem44@gmail.com', '2003-06-25', 21, '2', '2', 'Mohammed Azhar K', 'Worker', 15000.00, 3, 0.00, 30000.00, 'Ambur', 'Chennai(Periamet)', '2409300009', '57', '1', 'upload_files/candidate_tracker/37166764292_FaheemNewResume.pdf', NULL, '1', '2024-09-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-30 05:26:56', 1, '2024-09-30 05:38:07', 0, NULL, 1),
(21927, 'Naveen.R', '6', '7695962058', '7094962058', 'rnaveen1007@gmail.com', '2003-07-10', 21, '2', '2', 'R.Raja', 'Lorry driver', 25000.00, 1, 0.00, 20000.00, 'Salem', 'Chennai kundrathur', '2409300010', '1', '1', 'upload_files/candidate_tracker/1846444080_NAVEENR11zon1.pdf', NULL, '1', '2024-09-30', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Convincing and Communication skills is low he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2024-09-30 05:31:11', 104, '2024-09-30 04:36:49', 0, NULL, 1),
(21928, 'Muzammil ahmed N', '34', '8428328158', '8610462415', 'muzamilahmed483@gmail.com', '2003-05-12', 21, '2', '2', 'Nazar basha M', 'Post Master', 30000.00, 2, 0.00, 30000.00, 'Ambur', 'Chennai (saidapet)', '2409300011', '57', '1', 'upload_files/candidate_tracker/76307368241_Muzammil48.pdf', NULL, '1', '2024-09-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-30 05:33:49', 1, '2024-09-30 05:38:07', 0, NULL, 1),
(21929, 'Mahalakshmi', '6', '7904195122', '9381054360', 'Mahalakshmikoushik12@gmail.com', '1990-08-20', 34, '1', '1', 'Hari prasad', 'Business', 20000.00, 1, 17000.00, 20000.00, 'Kodambakkam', 'Kodambakkam', '2409300012', '', '2', 'upload_files/candidate_tracker/65761446718_MahaResume1.doc', NULL, '2', '2024-09-30', 0, 'P1420', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'aged', '5', '2', '', '1', '8', '', '2', '2024-10-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-30 05:47:13', 104, '2024-09-30 04:34:50', 0, NULL, 1),
(21930, 'Bi bi Aysha', '6', '7676477795', '', 'Ayshasheikh2204@gmail.com', '2006-08-22', 18, '2', '2', 'Ariffa', 'Sales and customer support executive', 35.00, 3, 20000.00, 26000.00, 'Jp nager', 'Bangalore', '2409300013', '57', '2', 'upload_files/candidate_tracker/99206565240_Screenshot20240930112414Drive21.pdf', NULL, '1', '2024-09-30', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-30 05:47:19', 1, '2024-09-30 06:06:07', 0, NULL, 1),
(21931, 'Sivagnanesh S', '11', '9080021825', '', 'sivagnaneshgnanesh@gmail.com', '2001-10-02', 22, '3', '2', 'Shanmuganathan', 'Business', 100000.00, 1, 0.00, 25000.00, 'Chidambaram', 'Chennai', '2409300014', '', '1', 'upload_files/candidate_tracker/87513320609_Sivagnanesh.pdf', NULL, '1', '2024-09-30', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'lagging in communication and expectation high', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-09-30 05:51:48', 104, '2024-09-30 04:37:05', 0, NULL, 1),
(21932, 'Ashwini.R', '6', '6369364949', '', 'ashgrace003@gmail.com', '2003-06-16', 21, '2', '2', 'Binu Radha Krishnan', 'Housewife', 300000.00, 1, 0.00, 13000.00, 'Kasturi bai street,Gandhi nagar,g.k.m colony,ch-82', 'Kasturi Bai street,Gandhi Nagar,G.k.m colony,ch-82', '2409300015', '1', '1', 'upload_files/candidate_tracker/52752738924_ResumeIT1.pdf', NULL, '1', '2024-09-30', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very silent person. and not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-09-30 05:52:16', 104, '2024-09-30 04:31:12', 0, NULL, 1),
(21933, 'SHANMUGA SUNDARAM S', '13', '8778461447', '9952197137', 'senthilsundar1903@gmail.com', '2003-04-04', 21, '3', '2', 'SENTHIL B', 'Bussiness', 12000.00, 1, 0.00, 300000.00, 'Chennai', 'Chenmai', '2409300016', '', '1', 'upload_files/candidate_tracker/42950473090_sundarfresherresume.pdf.pdf', NULL, '1', '2024-09-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-30 06:11:39', 1, '2024-09-30 06:18:01', 0, NULL, 1),
(21934, 'Anushiya. V', '6', '9150269652', '9380984491', 'Koushianu475@gmail.com', '2004-06-06', 20, '2', '2', 'P. Vijayan', 'Driver', 25000.00, 1, 0.00, 5.00, '82c/113 manali new town chennai- 600103', '82c/113 manali new town chennai-600103', '2409300017', '1', '1', 'upload_files/candidate_tracker/54617824857_Anushiyanewresume.docx', NULL, '1', '2024-09-30', 0, '', '3', '59', '2024-10-07', 168000.00, '', '3', '2024-10-07', '2', 'Communication Fresher Distance need to focus Need to analyse in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '2024-10-07', 1, '2024-09-30 06:12:59', 60, '2024-10-05 11:27:40', 0, NULL, 1),
(21935, 'Sivasankari K L', '13', '7358203605', '', 'sankari260211@gmail.com', '2001-02-26', 23, '3', '2', 'Kumar A', 'Buisness', 10000.00, 0, 0.00, 10000.00, 'Jayakondam, Ariyalur District', 'Ramapuram, Chennai', '2409300018', '', '1', 'upload_files/candidate_tracker/41657895572_CV.pdf', NULL, '1', '2024-09-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-30 06:15:12', 1, '2024-09-30 06:18:31', 0, NULL, 1),
(21936, '', '0', '9790242313', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409300019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-30 06:35:43', 0, NULL, 0, NULL, 1),
(21937, 'Parameshwari.V', '13', '7550168937', '', 'aishuparameswari@gmail.com', '1998-03-19', 26, '6', '2', 'Uma', 'House wife', 15000.00, 2, 0.00, 200000.00, 'Kk nagar, Chennai, TamilNadu, India', 'Kk nagar, chennai, TamilNadu, India', '2409300020', '', '1', 'upload_files/candidate_tracker/92711813903_ParameshwariResume.pdf', NULL, '1', '2024-09-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-30 07:50:33', 1, '2024-09-30 07:58:11', 0, NULL, 1),
(21938, 'Vignesh V', '6', '8778805445', '9841377217', 'vigneshv2k04@gmail.com', '2004-01-05', 20, '2', '2', 'Manjula Devi V', 'House wife', 40.00, 1, 0.00, 15.00, 'Kodambakkam', 'Kodambakkam', '2409300021', '50', '1', 'upload_files/candidate_tracker/13240831521_VigneshResume211.pdf', NULL, '1', '2024-09-30', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-30 07:58:25', 104, '2024-09-30 02:41:37', 0, NULL, 1),
(21939, 'Harish Kumar', '6', '6374622936', '', 'Harish1711kumar@gmail.com', '2001-11-17', 22, '2', '2', 'Jayakumar', 'Bike consultant', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2409300022', '50', '1', 'upload_files/candidate_tracker/2581383579_HarishKumarCV.pdf', NULL, '1', '2024-09-30', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-30 07:58:25', 104, '2024-09-30 03:06:04', 0, NULL, 1),
(21940, 'Diwakar', '6', '7200371805', '8072336711', 'dmyc8880@gmail.com', '1999-09-15', 25, '2', '2', 'Subramani', 'Veg business', 30000.00, 0, 13500.00, 15000.00, 'Chennai', 'Chennai', '2409300023', '50', '2', 'upload_files/candidate_tracker/43300970291_Divakarresume1.pdf', NULL, '1', '2024-09-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-09-30 08:01:40', 104, '2024-09-30 04:09:40', 0, NULL, 1),
(21941, '', '0', '7010044345', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409300024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-30 08:07:30', 0, NULL, 0, NULL, 1),
(21942, 'Muthu Kumar.V', '4', '9003141739', '9566270838', 'muthukumarv1807@gmail.com', '2003-07-18', 21, '2', '2', 'Vetrivel.P', 'Shop keeper', 20000.00, 2, 0.00, 15.00, 'Kodambakkam', 'Kodambakkam', '2409300025', '50', '1', 'upload_files/candidate_tracker/55225862758_MUTHUKUMAR.VRESUME.pdf', NULL, '1', '2024-09-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-30 08:14:02', 1, '2024-09-30 08:20:19', 0, NULL, 1),
(21943, 'SATHISH G', '6', '8778545150', '7418339550', 'gksathishgopigk@gmail.com', '2001-03-04', 23, '2', '2', 'Gopal A', 'Mason', 13000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2409300026', '1', '1', 'upload_files/candidate_tracker/51084299649_GSATHISH11.pdf', NULL, '1', '2024-10-01', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candiate performance and communication is not good,also looking for temporary job only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-09-30 08:28:50', 104, '2024-10-01 03:54:23', 0, NULL, 1),
(21944, 'Karthiyayeni Balamurugan', '11', '9087396724', '', 'karthiyayeni2001@gmail.com', '2001-11-18', 22, '6', '2', 'Parent', 'Screen printing', 15000.00, 1, 0.00, 20000.00, 'Madurai', 'Madurai', '2409300027', '', '1', 'upload_files/candidate_tracker/45739599631_ResumeKarthiyayeni.pdf', NULL, '1', '2024-09-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-30 09:04:40', 104, '2024-09-30 04:32:21', 0, NULL, 1),
(21945, 'mohana priya', '11', '8925475159', '', 'mohandgm.md@gmail.com', '2002-03-27', 22, '3', '2', 'mohan', 'business', 35000.00, 1, 0.00, 3.50, 'pallavaram chennai', 'pallavaram chrnnai', '2409300028', '', '1', 'upload_files/candidate_tracker/41425523808_Moha.pdf', NULL, '1', '2024-09-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-09-30 09:08:43', 104, '2024-09-30 04:32:03', 0, NULL, 1),
(21946, 'Tamil selvi.R', '6', '9597345466', '9514328448', 'tamilbedh128@gmail.com', '1997-07-12', 27, '2', '1', 'Dhilip Kumar', 'Self employee', 20000.00, 0, 15000.00, 17000.00, 'Aminjikarai, Chennai', 'Aminjikarai,chennai', '2409300029', '57', '2', 'upload_files/candidate_tracker/77291643602_tamilselviR.pdf', NULL, '1', '2024-09-30', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-09-30 09:20:15', 104, '2024-09-30 04:33:09', 0, NULL, 1),
(21947, 'Pavithra R', '6', '9962624003', '9791069265', 'pavithraradha2002@gmail.com', '2002-06-18', 22, '2', '2', 'Ramesh.A', 'Conductor much', 28000.00, 1, 0.00, 16000.00, 'Mannivakkam', 'Mannivakkam', '2409300030', '39', '1', 'upload_files/candidate_tracker/61935957305_R.Pavithraresume.pdf', NULL, '1', '2024-09-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SELECTED - already have experienced about health insurance, we shall provide 15k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-30 09:54:54', 104, '2024-09-30 04:35:36', 0, NULL, 1),
(21948, 'S.Abitha', '6', '6381400604', '7845312260', 'abithaabitha780@gmail.com', '2003-05-05', 21, '2', '2', 'E.Srinivasan', 'Security', 11000.00, 3, 0.00, 16000.00, 'Thousands lights', 'Nehru park', '2409300031', '39', '1', 'upload_files/candidate_tracker/51882472066_S.ABITHAResume912.pdf', NULL, '1', '2024-09-30', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - interest in other field', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-30 09:55:21', 104, '2024-09-30 04:35:18', 0, NULL, 1),
(21949, '', '0', '6391400604', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409300032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-30 10:24:26', 0, NULL, 0, NULL, 1),
(21950, 'Telugu Sivakanth', '6', '6309625013', '', 'Sivakanthtelugu@gmail.com', '2001-07-13', 23, '3', '2', 'Shivudu', 'Student', 10000.00, 1, 0.00, 20000.00, 'Kunukuntla', 'Kunukuntla', '2409300033', '', '1', 'upload_files/candidate_tracker/98862129625_resumesiva.pdf', NULL, '1', '2024-09-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-30 11:34:22', 1, '2024-09-30 11:44:49', 0, NULL, 1),
(21951, 'Pc Mounika', '6', '9346377112', '', 'mounikapolechinna@gmail.com', '1999-01-16', 25, '3', '2', 'Pc sudhakar reddy', 'Farmer', 10000.00, 1, 0.00, 18000.00, 'Anantapur', 'Anantapur', '2409300034', '', '1', 'upload_files/candidate_tracker/499591150_mouniresume.pdf', NULL, '1', '2024-09-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-30 11:34:41', 1, '2024-09-30 11:40:10', 0, NULL, 1),
(21952, 'Kurava jagadeesh', '6', '9346773556', '', 'jagadeeshjai379@gmail.com', '2009-09-30', 0, '3', '2', 'Padmavathi', 'Student', 9000.00, 3, 0.00, 18000.00, 'Kurnool (Dist )pattikonda (M) chinnahulthi( V )', 'Chinnahulthi ( V)', '2409300035', '', '1', 'upload_files/candidate_tracker/86260219070_JagadeeshResume3.docx', NULL, '1', '2024-09-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-30 11:34:51', 1, '2024-09-30 11:43:43', 0, NULL, 1),
(21953, '', '0', '8807993578', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409300036', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-30 11:38:26', 0, NULL, 0, NULL, 1),
(21954, 'SETHUPATHI', '4', '9345705229', '9751081037', 'sethupathivembaiyan28@gmail.com', '2002-08-28', 22, '6', '2', 'VEMBAIYANK', 'Farmer', 72000.00, 2, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2409300037', '', '1', 'upload_files/candidate_tracker/37288768363_RESUME1.pdf', NULL, '1', '2024-10-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-09-30 12:53:00', 1, '2024-09-30 01:07:32', 0, NULL, 1),
(21955, 'Lavanya E', '6', '9655456814', '8098366198', 'lavanyaelangovan27@gmail.com', '2000-03-10', 24, '2', '2', 'Elangovan A', 'Building Contractor', 50000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Cuddalore', '2409300038', '1', '1', 'upload_files/candidate_tracker/77652530866_ResumeJobresumeFormat612.pdf', NULL, '1', '2024-10-01', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not having communication skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-30 01:07:02', 104, '2024-10-01 03:52:34', 0, NULL, 1),
(21956, 'udhaya.p', '6', '9791127446', '6382851634', 'udhayapadmanathan@gmail.com', '2002-06-20', 22, '2', '2', 'padmanathan', 'non', 20000.00, 2, 0.00, 20000.00, 'kilpauk chennai police quaters kilpauk', 'kilpauk chennai police quaters', '2409300039', '1', '1', 'upload_files/candidate_tracker/73248585394_UDHAYARESUME.pdf', NULL, '1', '2024-10-01', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected- having interest in IT field', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-09-30 03:07:36', 104, '2024-10-01 06:39:35', 0, NULL, 1),
(21957, '', '0', '9655105473', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2409300040', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-09-30 07:43:49', 0, NULL, 0, NULL, 1),
(21958, '', '0', '7603860486', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410010001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-01 02:16:53', 0, NULL, 0, NULL, 1),
(21959, '', '0', '8248515231', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410010002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-01 04:45:25', 0, NULL, 0, NULL, 1),
(21960, 'Sangeetha.S', '6', '7358191691', '9789079635', 'sangeethassangeetha07@gmail.com', '2002-07-31', 22, '3', '2', 'Santhanam', 'Welder', 22000.00, 1, 14000.00, 20000.00, '1/2 Guindy Rathinam Street jafferkhanpet', '1/2 Guindy Rathinam Street jafferkhanpet', '2410010003', '', '2', 'upload_files/candidate_tracker/17134898038_Sangeetharesume1.pdf', NULL, '1', '2024-10-01', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected - having experience and good communication skills we shall provide 16k take home', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-01 04:58:21', 104, '2024-10-01 03:51:51', 0, NULL, 1),
(21961, 'Preethi.l', '6', '7358540713', '9150663687', 'preethipreetho2000@gmail.com', '2000-08-13', 24, '2', '2', 'Loganathan.N', 'Store incharge in capital honda', 50.00, 1, 0.00, 25000.00, 'Pammal', 'Pammal', '2410010004', '1', '1', 'upload_files/candidate_tracker/57528507692_PREETHILOGANATHANRESUME22.pdf', NULL, '1', '2024-10-01', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-10-01 05:00:15', 104, '2024-10-01 03:51:26', 0, NULL, 1),
(21962, 'S.Hiresh', '6', '8778178094', '7904908715', 'hireshs347@gmail.com', '2003-08-24', 21, '2', '2', 'Senthilkumar. L', 'Nill', 250000.00, 1, 0.00, 16500.00, 'Teynampet', 'Teynampet', '2410010005', '50', '1', 'upload_files/candidate_tracker/29186892407_S.HIRESHRESUME.pdf', NULL, '1', '2024-10-01', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Convincing and Communication skills is low he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-01 05:04:35', 104, '2024-10-01 03:53:17', 0, NULL, 1),
(21963, 'Gopinath sivakumar', '4', '7812030727', '9789215827', 'gopisivakumar35@gmail.com', '1996-06-07', 28, '2', '2', 'Sivakumar', 'Farmer', 200000.00, 2, 320000.00, 450000.00, 'Tirupattur', 'Tirupattur', '2410010006', '50', '2', 'upload_files/candidate_tracker/42888949453_Gopinathsivakumarcv1.pdf', NULL, '1', '2024-10-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 05:06:30', 1, '2024-10-01 05:11:26', 0, NULL, 1),
(21964, 'Sirigiri Tharaka Venkatamani', '3', '9043162219', '', 'tharaka.sirigiri@gmail.com', '1998-05-22', 26, '3', '2', 'Ramprasad S', 'Business', 10000.00, 1, 0.00, 20000.00, 'Ramapuram', 'Ramapuram', '2410010007', '', '1', 'upload_files/candidate_tracker/27806061719_SirigiriTharakaVenkatamani.pdf', NULL, '1', '2024-10-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 05:21:48', 1, '2024-10-01 05:36:55', 0, NULL, 1),
(21965, 'Gokul', '3', '9941289893', '', 'gokulsg37@gmail.com', '1999-07-03', 25, '3', '2', 'Vijayarani', 'House wife', 1.00, 1, 0.00, 20000.00, 'KK Nagar', 'KK nagar', '2410010008', '', '1', 'upload_files/candidate_tracker/35254455895_Gokulresume2024IT.pdf', NULL, '1', '2024-10-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 05:21:57', 1, '2024-10-01 05:25:47', 0, NULL, 1),
(21966, 'Konanki.lasya priya', '4', '8309131489', '7995786811', 'lasyakonanki22@gmail.com', '2000-08-05', 24, '2', '2', 'Vijayalakshmi', 'Rmp doctor', 50000.00, 0, 18000.00, 22000.00, 'Dcpalli village marripadu mandal Nellore district', 'Pallavaram ankaputur', '2410010009', '56', '2', 'upload_files/candidate_tracker/24196198516_Marketsof1AnalyticalMarketingServicesPrivateLimited1413362329955803101.pdf', NULL, '1', '2024-10-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 05:36:16', 1, '2024-10-01 05:46:39', 0, NULL, 1),
(21967, 'Sheeba R', '6', '8012135359', '7502421420', 'Sheebaramasamy99@gmail.com', '1999-05-04', 25, '2', '1', 'Godwin', 'Associate consultant', 20000.00, 2, 0.00, 15000.00, 'Porur', 'Porur', '2410010010', '50', '1', 'upload_files/candidate_tracker/80878156277_SheebaResume.pdf', NULL, '1', '2024-10-01', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she doing iT course  so she cant work here ', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-01 05:37:26', 104, '2024-10-01 03:49:52', 0, NULL, 1),
(21968, 'Deepjoy Paul', '5', '9678548556', '', 'deepjoypaul709@gmail.com', '2003-06-19', 21, '2', '2', 'Jayoshri Paul', 'Tailor', 8000.00, 1, 0.00, 32000.00, 'Umrangso, Assam', 'Doddakalasandra, Bangalore', '2410010011', '57', '2', 'upload_files/candidate_tracker/94635500423_D.152.docx', NULL, '1', '2024-10-01', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2024-10-01 05:41:21', 126, '2024-10-12 02:49:21', 0, NULL, 1),
(21969, 'Sandhiya H', '13', '9600388018', '', 'sandhiyakrishnan050201@gmail.com', '2009-10-01', 0, '6', '2', 'Harikrishnan K', 'Silk weaver', 20000.00, 1, 0.00, 22000.00, '9b/35 kannappan Street, kanchipuram', 'Kanchipuram', '2410010012', '', '1', 'upload_files/candidate_tracker/66529160633_SandhiyaResume.pdf', NULL, '1', '2024-10-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 05:48:26', 1, '2024-10-01 06:04:16', 0, NULL, 1),
(21970, 'SWATHI S', '13', '7548872572', '', 'swathikirshnan00@gmail.com', '2000-07-10', 0, '6', '2', 'M Sivaraman', 'Driver', 28000.00, 2, 19792.00, 22000.00, 'Kanchipuram', 'Kanchipuram', '2410010013', '', '2', 'upload_files/candidate_tracker/10842879891_SwathiSCV.pdf', NULL, '1', '2024-10-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 05:48:59', 1, '2024-10-01 06:03:30', 0, NULL, 1),
(21971, 'SHREEKOUSALYA MURUGAN', '2', '7603911966', '', 'shreemrgn@gmail.com', '2009-10-01', 0, '6', '2', 'MURUGAN', 'Business', 40000.00, 1, 0.00, 25000.00, 'Chromepet', 'Chromepet', '2410010014', '', '1', 'upload_files/candidate_tracker/76734003053_SHREEKOUSALYA.Mcompress1.pdf', NULL, '1', '2024-10-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 05:50:08', 1, '2024-10-01 05:53:45', 0, NULL, 1),
(21972, 'Malathi', '4', '7358081398', '', 'malathikannan08@gmail.com', '1996-12-08', 27, '2', '1', 'Kuralarasan', 'Accountant', 30000.00, 1, 18000.00, 23000.00, 'Nerkundram', 'Nerkundram', '2410010015', '39', '2', 'upload_files/candidate_tracker/86113895008_MalathiRESUME11.pdf', NULL, '1', '2024-10-01', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-10-01 05:52:59', 104, '2024-10-01 03:52:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21973, 'Haritha thatiparti', '6', '8106487059', '8790828859', 'Harithathatiparti99@gmail.com', '2000-06-16', 24, '2', '2', 'T.raghavalu', 'Contractor', 40000.00, 1, 20000.00, 21000.00, 'Nellore district sangam village Andhra Pradesh,', '2/3 Vinayagam street,Saidapet chennai 600015', '2410010016', '56', '2', 'upload_files/candidate_tracker/80394052269_HARITHATHATIPARTI6.pdf', NULL, '1', '2024-10-01', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she speaks four lang and she speaks good ,she has tele calling exp 1.5 years so lets try 7 days and we will confirm ctc 19k to 20k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-01 06:01:09', 104, '2024-10-01 03:50:10', 0, NULL, 1),
(21974, 'ABDUL WADHOOTH', '6', '7358763246', '', 'wadhoothraja16@gmail.com', '2002-07-23', 22, '2', '2', 'Mohammed Usman', 'Labour', 25000.00, 1, 0.00, 20000.00, '29/2', 'Near pumping station', '2410010017', '1', '1', 'upload_files/candidate_tracker/91250574262_ABDULWADHOOTH.pdf', NULL, '1', '2024-10-01', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candiate performance and communication is not good.also have some attitude and expected high package', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-10-01 06:27:50', 104, '2024-10-01 03:54:10', 0, NULL, 1),
(21975, 'Rubavathi', '4', '8807723338', '8056580890', 'rubaraj2107@gmail.com', '1999-06-23', 25, '2', '1', 'Pushparaj', 'Cashier', 20000.00, 1, 20000.00, 20000.00, 'Saidapet', 'Saidapet', '2410010018', '50', '2', 'upload_files/candidate_tracker/28506450145_CV2024091008373324.pdf', NULL, '1', '2024-10-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 06:28:57', 1, '2024-10-01 06:42:05', 0, NULL, 1),
(21976, 'Akalya', '4', '7418723913', '', 'Akalyavelanganni@gmail.com', '2000-02-05', 24, '3', '2', 'Velanganni', 'Farmer', 12000.00, 3, 12500.00, 18000.00, 'Thiruvarur', 'Thiruvarur', '2410010019', '', '2', 'upload_files/candidate_tracker/65178836471_akalyaresumeupdated.pdf', NULL, '1', '2024-10-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 06:41:11', 1, '2024-10-01 06:49:30', 0, NULL, 1),
(21977, 'Vekkaliswari R', '4', '6379138611', '', 'vekalieswariraja2002@gmail.com', '2002-11-02', 21, '3', '2', 'Rajagopal S', 'Self employed', 12000.00, 2, 220000.00, 20000.00, 'Mannargudi', 'Mannargudi', '2410010020', '', '2', 'upload_files/candidate_tracker/278858644_eswari.pdf', NULL, '1', '2024-10-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 06:41:18', 1, '2024-10-01 06:45:13', 0, NULL, 1),
(21978, 'Raisma Jolin', '11', '9159125276', '9487757952', 'raismajolin060@gmail.com', '2001-04-06', 23, '3', '2', 'T.Pushpa Raj', 'Office Assistant', 30000.00, 1, 11000.00, 18000.00, 'Marthandam', 'Vadapalani', '2410010021', '', '2', 'upload_files/candidate_tracker/92476051986_RaismaJolinP.R.pdf', NULL, '1', '2024-10-01', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-01 06:41:43', 104, '2024-10-01 12:27:46', 0, NULL, 1),
(21979, 'Geethanjali', '6', '7993634702', '8861139130', 'cchitti180@gmail.com', '2001-07-01', 23, '2', '2', 'Aswarthappa', 'Farmer', 50000.00, 1, 0.00, 18.00, 'Bangalore', 'Bangalore', '2410010022', '1', '1', 'upload_files/candidate_tracker/30366834103_geethaRESUME.pdf', NULL, '1', '2024-10-01', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-10-01 06:49:08', 126, '2024-10-12 02:47:47', 0, NULL, 1),
(21980, 'Esther Selvarani', '6', '7812850337', '8925094116', 'selvamselvam27866@gmail.com', '2004-02-28', 20, '2', '2', 'Selvam', 'Sales executive', 40000.00, 1, 16000.00, 20000.00, 'Ranipet', 'Ranipet', '2410010023', '50', '2', 'upload_files/candidate_tracker/74285690451_Estherresume1.pdf', NULL, '1', '2024-10-01', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is unfit for the sales profile, 3 m over all Experience, she looking customer support work.reject the profile thanks', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-10-01 06:51:00', 104, '2024-10-01 03:47:51', 0, NULL, 1),
(21981, 'G Malleswari', '6', '8309804828', '', 'girinadhunimallika@gmail.com', '2003-07-29', 21, '2', '2', 'G Vishwanath', 'Former', 15000.00, 3, 0.00, 15000.00, 'Madanapalli', 'Marthahalli', '2410010024', '1', '1', 'upload_files/candidate_tracker/66342814155_malleswariresume1.pdf', NULL, '1', '2024-10-01', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-10-01 06:56:56', 126, '2024-10-12 02:44:18', 0, NULL, 1),
(21982, 'R.Hari haRAN', '6', '9789048477', '8220889495', 'haran7920@gmail.com', '1999-02-26', 25, '2', '2', 'A.Ravi Chandran', 'Watch man', 15000.00, 2, 0.00, 17000.00, 'Chennai', 'Kodungaiyur No 7 Thiruvalluvar Salai', '2410010025', '50', '2', 'upload_files/candidate_tracker/26419196966_80d3210140394e24bcd7dce13446073bcvhariharan1.docx', NULL, '1', '2024-10-01', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Convincing and Communication skills is low he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-01 07:05:46', 104, '2024-10-01 03:53:05', 0, NULL, 1),
(21983, '', '0', '6380652696', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410010026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-01 07:06:33', 0, NULL, 0, NULL, 1),
(21984, 'VIMAL', '13', '9655450768', '7339600486', 'nvimal257@gmail.com', '2004-02-20', 20, '3', '2', 'NAGARAJAN', 'Farmer', 75000.00, 2, 0.00, 12000.00, 'Karur', 'Chennai', '2410010027', '', '1', 'upload_files/candidate_tracker/54285929911_VimalResume1.1.pdf', NULL, '1', '2024-10-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 07:30:02', 1, '2024-10-01 07:36:53', 0, NULL, 1),
(21985, '', '0', '6360048954', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410010028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-01 07:55:52', 0, NULL, 0, NULL, 1),
(21986, 'Pricilla G', '6', '8939297345', '8939297344', 'pricilla1710@gmail.com', '2002-06-17', 22, '2', '2', 'Prakash', 'Driver', 20000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2410010029', '1', '2', 'upload_files/candidate_tracker/9646951106_pricillaresume.pdf', NULL, '1', '2024-10-01', 15, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'lack of confident', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-10-01 09:07:07', 126, '2024-10-12 02:52:24', 0, NULL, 1),
(21987, 'Gowthami ramakrishnan', '13', '8220620042', '', 'gowthamikowsi02@gmail.com', '2002-01-01', 22, '3', '2', 'Ramakriahnan', 'Daily worker', 30000.00, 1, 0.00, 20000.00, '5/43b, Somanur,Coimbatore', '5/43b, Somanur,Coimbatore', '2410010030', '', '1', 'upload_files/candidate_tracker/61097440654_GowthamiRU1.pdf', NULL, '1', '2024-10-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 09:08:44', 1, '2024-10-01 09:12:00', 0, NULL, 1),
(21988, '', '0', '8939297344', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410010031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-01 09:16:15', 0, NULL, 0, NULL, 1),
(21989, 'Santhoah. R', '4', '7005309578', '8925309578', 'santhoshmilky855@gmail.com', '2000-05-22', 24, '3', '2', 'Mala', 'Accoundant', 20000.00, 1, 20000.00, 22000.00, 'Madhavaram', 'Moolakadai', '2410010032', '', '2', 'upload_files/candidate_tracker/14121359150_Resume2024.pdf', NULL, '1', '2024-10-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 12:36:54', 1, '2024-10-02 06:40:59', 0, NULL, 1),
(21990, '', '0', '7010090458', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410010033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-01 01:25:58', 0, NULL, 0, NULL, 1),
(21991, 'Sathya', '4', '6383058543', '', 'sathya22csd16@gmail.com', '2002-05-06', 22, '3', '2', 'Surulimani', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2410010034', '', '1', 'upload_files/candidate_tracker/82767122149_sathyanewcv.pdf', NULL, '3', '2024-10-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-01 01:27:27', 1, '2024-10-01 02:19:08', 0, NULL, 1),
(21992, '', '0', '8754965542', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410020001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-02 01:32:08', 0, NULL, 0, NULL, 1),
(21993, 'chandru m', '6', '9597994692', '', 'chandrum315@gmail.com', '2003-04-29', 21, '2', '2', 'muthu s', 'musician', 20000.00, 1, 12000.00, 25000.00, 'puducherry', 'pondicherry', '2410030001', '1', '2', 'upload_files/candidate_tracker/73802322784_Chandru.Resume.pdf', NULL, '1', '2024-10-03', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication ok butvery lacey and not understand what im telling and notfit for sales field so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-03 12:29:16', 104, '2024-10-03 04:20:57', 0, NULL, 1),
(21994, 'SUNDARAGANAPATHY K', '4', '9677816725', '', 'rajusk2469@gmail.com', '2002-02-25', 22, '2', '2', 'Kalyanasundaram V', 'Priest', 300000.00, 1, 0.00, 25000.00, 'Karaikal', 'Karaikal', '2410030002', '1', '1', 'upload_files/candidate_tracker/3775113297_SUNDARAGANAPATHYK.pdf', NULL, '1', '2024-10-03', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-03 04:04:39', 104, '2024-10-03 04:18:30', 0, NULL, 1),
(21995, 'Aravind Kumar A', '6', '8939081938', '8248105903', 's1bba411902782@gmail.com', '2001-10-10', 22, '2', '2', 'Ariyanayagam', 'Sales', 20000.00, 1, 0.00, 15000.00, '6/17 balliamman Kovil lane Villivakkam Chennai', '6/17 balliamman Kovil lane Villivakkam', '2410030003', '1', '1', 'upload_files/candidate_tracker/60583475673_AdobeScanAug162024.pdf', NULL, '1', '2024-10-03', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not having communication skills and not ok with salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-03 04:21:46', 104, '2024-10-03 04:20:21', 0, NULL, 1),
(21996, 'P.sowmiya', '4', '6374075470', '9443274776', 'sowmiyaprakash1105@gmail.com', '2002-05-11', 22, '2', '2', 'S.prakash', 'Agriculture', 10000.00, 1, 0.00, 12000.00, 'Needamangalam', 'Needamangalam', '2410030004', '1', '1', 'upload_files/candidate_tracker/5143117703_sowmiyaresume.pdf', NULL, '1', '2024-10-03', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-03 04:51:52', 104, '2024-10-03 04:18:44', 0, NULL, 1),
(21997, 'Seema', '6', '8526077724', '9025385145', 'seema31101993@gmail.com', '1993-10-31', 30, '2', '2', 'Asirvatham', 'Farmer', 5000.00, 2, 0.00, 22000.00, 'Egmore', 'Egmore', '2410030005', '50', '1', 'upload_files/candidate_tracker/33618041590_Seema1.pdf', NULL, '3', '2024-10-03', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'aged not fit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-03 04:51:56', 104, '2024-10-03 04:20:05', 0, NULL, 1),
(21998, 'Vinothini Paramasivam', '4', '6379015374', '7904741395', 'vinoprvn30@gmail.com', '2001-09-10', 23, '2', '2', 'Punitha', 'Home maker', 20.00, 1, 0.00, 15.00, 'Needamangalam', 'Needamangalam', '2410030006', '1', '1', 'upload_files/candidate_tracker/68554994749_vinothiniresume.pdf', NULL, '1', '2024-10-03', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-03 04:52:09', 104, '2024-10-03 04:19:08', 0, NULL, 1),
(21999, '', '0', '8526077742', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410030007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-03 04:53:09', 0, NULL, 0, NULL, 1),
(22000, 'J. Jeevanisha', '4', '8870424397', '6382375791', 'nisha8822kk@gmail.com', '2009-10-03', 15, '2', '2', 'C. Jeeva', 'C. R. P. F police force', 800000.00, 1, 0.00, 25000.00, 'Thiruvarur', 'Thiruvarur', '2410030008', '1', '1', 'upload_files/candidate_tracker/38460154540_JEEVANISHA.pdf', NULL, '1', '2024-10-03', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-03 04:53:29', 104, '2024-10-03 04:18:57', 0, NULL, 1),
(22001, 'Lavanya G.K', '6', '9384443254', '9597660467', 'lavanyagk3@gmail.com', '2002-08-01', 22, '2', '2', 'Gopalakrishnan.T', 'Daily wage employee', 12000.00, 2, 0.00, 18000.00, '19/62-1 Elanthavilai Pallam (po) kanyakumari dist', 'Servite hostel for women, Nungambakkam', '2410030009', '1', '1', 'upload_files/candidate_tracker/19497752191_LavanyaGKResume1.pdf', NULL, '1', '2024-10-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-03 05:08:22', 104, '2024-10-03 03:11:18', 0, NULL, 1),
(22002, 'B Naveen kumar', '6', '7358237608', '8072740507', 'naveenkumarnr2000@gmail.com', '2000-07-01', 24, '1', '2', 'B kumar', 'Attender', 15000.00, 1, 17500.00, 22000.00, 'Chennai', 'Chenna', '2410030010', '', '2', 'upload_files/candidate_tracker/64233576514_naveenkumar.docx', NULL, '1', '2024-10-03', 0, '55778', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Convincing and Communication skills is low he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-03 05:12:21', 104, '2024-10-03 04:21:11', 0, NULL, 1),
(22003, 'Santhosh.r', '6', '7305309578', '8925309578', 'Santhoshmilky855@gmail.com', '2000-05-22', 24, '2', '2', 'Mala', 'Accoundant', 20000.00, 1, 20000.00, 22000.00, 'Madhavaram', 'Moolakadai', '2410030011', '1', '2', 'upload_files/candidate_tracker/53395373565_Latest2023resume.pdf', NULL, '1', '2024-10-03', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-10-03 05:15:19', 104, '2024-10-03 04:19:51', 0, NULL, 1),
(22004, 'Sagar varma', '6', '8122499858', '9043970612', 'varmaisiconic22@gmail.com', '1997-04-22', 27, '2', '2', 'Manoj varma', 'Transport', 40000.00, 2, 0.00, 18000.00, 'No 50/26 venkataraman street kondithop', 'Venkataraman street', '2410030012', '50', '1', 'upload_files/candidate_tracker/50253233619_1727415118376.pdf', NULL, '2', '2024-10-03', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-03 05:56:38', 104, '2024-10-03 04:19:39', 0, NULL, 1),
(22005, 'Charles.m', '6', '9384601686', '9566006524', 'Joshepcharles1997@gmail.com', '1997-05-18', 27, '2', '2', 'D. Micheal', 'Security work', 25000.00, 1, 0.00, 18000.00, '22/17 B.E colony 4th st kodambakkam chemnai -24.', 'No.1/3 Eswarar nagar 4th st kodambakkam ch-24.', '2410030013', '50', '1', 'upload_files/candidate_tracker/34626817998_joshepcharlesupdatedresume1726454311173Joshepcharles.pdf', NULL, '1', '2024-10-03', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok,2yrs work experience for admin xxamp operation previous company salary 20k now he exp 15k to 16k.cross check payslip xxamp Offer letter, and confirm the joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-10-03 05:58:50', 104, '2024-10-03 04:19:24', 0, NULL, 1),
(22006, 'Meenuga chinna', '6', '9550350605', '9000616356', 'meenugachinna0@gmail.com', '2003-06-24', 21, '2', '2', 'Meenuga obulesu', 'Farmer', 15000.00, 1, 15000.00, 18000.00, 'Anantapur', 'Anantapur', '2410030014', '1', '2', 'upload_files/candidate_tracker/80207500405_Cv2.pdf', NULL, '1', '2024-10-03', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-10-03 06:03:43', 126, '2024-10-03 03:46:44', 0, NULL, 1),
(22007, 'Shanoor Sultana S', '6', '6369944390', '', 'shanoorsultana636999@gmail.com', '2003-04-14', 21, '2', '2', 'Syed sirajudeen', 'Bachelor of computer application (BCA )', 35000.00, 1, 0.00, 20000.00, 'Chennai (Mount Mount)', 'Mount road', '2410030015', '50', '1', 'upload_files/candidate_tracker/92946271272_shabburesume.pdf', NULL, '1', '2024-10-03', 0, '', '3', '59', '2024-10-09', 168000.00, '', '3', '2024-10-10', '2', 'Communication Ok Can give a try and check in 7 days training', '5', '1', '1', '4', '6', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-10-09', 1, '2024-10-03 06:04:03', 60, '2024-10-09 10:19:09', 0, NULL, 1),
(22008, 'Mohan Reddy G', '6', '9010301790', '', 'godehalmohanreddy4554@gmail.com', '1999-11-28', 24, '2', '2', 'Uday kiran', 'Self employed', 500000.00, 1, 16000.00, 18000.00, 'Anantapur', 'Bangalore', '2410030016', '1', '2', 'upload_files/candidate_tracker/44412201293_MOHANsResume4.pdf', NULL, '1', '2024-10-03', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-10-03 06:04:10', 126, '2024-10-03 03:45:26', 0, NULL, 1),
(22009, 'Sanjana', '4', '6379912120', '7010775705', 'sanjanasanjana39492@gmail.com', '2000-09-12', 24, '2', '2', 'Loganathan', 'Farmer', 15000.00, 1, 20000.00, 25000.00, 'Gummudipoondi', 'Gummudipoondi', '2410030017', '50', '2', 'upload_files/candidate_tracker/29810768765_ResumeSanjana.LFormat3.pdf', NULL, '1', '2024-10-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-03 07:26:00', 1, '2024-10-03 07:34:12', 0, NULL, 1),
(22010, 'E Tharun', '6', '8608283505', '', 'tharunferrari10@gmail.com', '1998-10-04', 25, '2', '2', 'P Elangovan', 'Self employed', 20000.00, 0, 23000.00, 26000.00, 'CHENNAI', 'CHENNAI', '2410030018', '50', '2', 'upload_files/candidate_tracker/20633944801_TharunEResumeV22.pdf', NULL, '1', '2024-10-03', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not okay with salary and office timing', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-03 08:45:21', 104, '2024-10-03 04:20:46', 0, NULL, 1),
(22011, 'janani m', '6', '6374558854', '8870282931', 'jananimurugadoss773@gmail.com', '2000-11-03', 23, '2', '2', 'murugadoss', 'society Department', 40000.00, 1, 0.00, 20000.00, 't.nagar chennai', 'tiruvannamalai', '2410040001', '50', '1', 'upload_files/candidate_tracker/34372249194_resumewithworkexperience20232.pdf', NULL, '1', '2024-10-04', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for my team', '5', '1', '', '1', '8', '', '2', '2024-11-30', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-04 04:23:09', 104, '2024-10-04 05:37:36', 0, NULL, 1),
(22012, 'gayathri V', '4', '9677479557', '', 'gayuparamu2527@gmail.com', '2003-12-27', 20, '2', '2', 'venkateshan', 'painter', 12000.00, 1, 0.00, 8000.00, 'thanjavur', 'thanjavur', '2410040002', '1', '1', 'upload_files/candidate_tracker/79040254853_GAYATHRI.docx', NULL, '1', '2024-10-04', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-04 04:29:38', 104, '2024-10-04 05:32:52', 0, NULL, 1),
(22013, 'PREMCHANDAR V', '6', '9894421511', '9655597713', 'Premchandarv796@gmail.com', '2000-11-01', 23, '2', '2', 'VADAMALAI A', 'FISHER', 20000.00, 0, 0.00, 2.90, 'SALEM', 'SINGAPERUMAL KOIL', '2410040003', '45', '1', 'upload_files/candidate_tracker/31437285579_UPDATEDCV.pdf', NULL, '1', '2024-10-04', 0, '', '3', '59', '2024-10-14', 192000.00, '', NULL, '2024-11-06', '2', 'Fresher Need to check in 7days and confirm the profile', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '2024-10-14', 1, '2024-10-04 04:43:04', 60, '2024-10-10 10:27:21', 0, NULL, 1),
(22014, 'Vishali B', '16', '9500955484', '8248917288', 'vishalib27@gmail.com', '1997-09-22', 27, '3', '2', 'Balakrishnan M', 'Teacher', 100000.00, 1, 0.00, 2.50, 'Dindigul', 'Dindigul', '2410040004', '', '2', 'upload_files/candidate_tracker/8411453613_VishaliResume.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-04 04:59:46', 1, '2024-10-04 05:36:41', 0, NULL, 1),
(22015, 'Rahamath Nisha N', '11', '9629456095', '', 'nrnisha7866@gmail.com', '2002-11-19', 21, '3', '2', 'Father - Noor basha', 'Unemployed', 45000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2410040005', '', '1', 'upload_files/candidate_tracker/32394448201_RahamathNisharesume.pdf', NULL, '1', '2024-10-04', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Had Good Communication but  due to college timings and project date she canxquott join', '6', '1', '', '1', '8', '', '2', '2024-12-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-10-04 05:10:28', 104, '2024-10-04 05:37:49', 0, NULL, 1),
(22016, 'Suvetha R', '6', '9360162823', '', 'suvetharamesh08@gmail.com', '2001-08-16', 23, '2', '2', 'Ramesh PL', 'Null', 5000.00, 1, 17500.00, 20000.00, 'Guindy', 'Guindy', '2410040006', '1', '2', 'upload_files/candidate_tracker/2150021706_Suvetha.RResume161724745238246Suvetha.R.pdf', NULL, '1', '2024-10-04', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'having interest in other profession', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-04 05:37:15', 104, '2024-10-04 05:33:46', 0, NULL, 1),
(22017, 'Mahalakshmi', '6', '8825892360', '9345799374', 'mahamadhu595@gmail.com', '1998-12-23', 25, '2', '2', 'Manoharan', 'Tea shop', 15000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2410040007', '50', '2', 'upload_files/candidate_tracker/32560362161_MAHALAKSHMIMANOHARAN1.pdf', NULL, '1', '2024-10-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-04 05:38:34', 104, '2024-10-04 05:33:26', 0, NULL, 1),
(22018, 'ARIKARAN. P', '6', '9025175109', '9176550144', 'mvphari299@gmail.com', '2002-09-29', 22, '2', '2', 'Murugan. m', 'Shop', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2410040008', '50', '1', 'upload_files/candidate_tracker/32680806787_Resume..pdf', NULL, '1', '2024-10-04', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interviewed By Charles As Per His Conversation Candidate Performance And Communication is good.Will Check With him in the training Period ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-10-04 05:45:12', 104, '2024-10-04 05:38:35', 0, NULL, 1),
(22019, 'Pradesh A', '6', '9092968761', '', 'Pradeshsugan21@gmail.com', '2003-04-21', 21, '2', '2', 'uganya', 'government electrity board', 300000.00, 2, 0.00, 12000.00, 'anna saalai', 'henn', '2410040009', '50', '1', 'upload_files/candidate_tracker/58583579552_PRADESH21.pdf', NULL, '1', '2024-10-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '1', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-04 05:55:13', 104, '2024-10-04 12:11:36', 0, NULL, 1),
(22020, 'C.Dinesh Kumar', '6', '7995598219', '', 'dineshchowdary1503@gmail.com', '2003-03-15', 21, '2', '2', 'C.Malliswari', 'House wife', 2.00, 1, 0.00, 14000.00, 'Nagari, tirupathi', 'Ambattur', '2410040010', '56', '1', 'upload_files/candidate_tracker/30837019808_DineshKumarcv.pdf', NULL, '1', '2024-10-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '1', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-04 06:02:52', 104, '2024-10-04 04:55:21', 0, NULL, 1),
(22021, 'kiruba karan', '6', '9940028745', '', 'kirubasivakumar8@gmail.com', '2004-05-24', 20, '1', '2', 'parent', 'cooking chef', 20000.00, 2, 15000.00, 17000.00, '18, Anujagam street , mgr nagar , Chennai- 600078', '18, Anujagam street , mgr nagar , Chennai- 600078', '2410040011', '', '2', 'upload_files/candidate_tracker/55146263260_Kirubaresume.docx', NULL, '1', '2024-10-04', 0, '77958', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skilll', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-10-04 06:42:36', 104, '2024-10-04 05:32:40', 0, NULL, 1),
(22022, 'Sapthasarathy', '5', '9080135200', '9659467429', 'sapthasarathy67@gmail.com', '1999-09-23', 25, '2', '2', 'Harinath', 'Business', 40000.00, 1, 22000.00, 27000.00, 'Chennai', 'Chennai', '2410040012', '50', '2', 'upload_files/candidate_tracker/59225348518_sapthasarathyres.pdf', NULL, '1', '2024-10-17', 0, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Did not showed for second round', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-10-04 06:43:24', 104, '2024-10-17 06:21:56', 0, NULL, 1),
(22023, 'Akash A', '6', '9791526325', '7871471715', 'akashakash84335@gmail.com', '2003-07-07', 21, '1', '2', 'Chitra', 'House wife', 20000.00, 3, 15000.00, 18000.00, 'No2 Devu naidu Street, Saidapet, Chennai', 'No2 Devu naidu Street, Saidapet, Chennai', '2410040013', '', '2', 'upload_files/candidate_tracker/76559243762_AkashResumeOctober.docx', NULL, '1', '2024-10-04', 0, '77598', '3', '59', '2024-10-08', 204000.00, '', '3', '2024-10-08', '1', 'Communication Ok Can give a try and check in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2024-10-08', 1, '2024-10-04 06:58:47', 60, '2024-10-07 07:04:34', 0, NULL, 1),
(22024, 'Jasmine', '6', '7448433919', '', 'jasminesushma147@gmail.com', '1998-06-14', 26, '2', '2', 'Margaret', 'Accountant', 300000.00, 1, 0.00, 18000.00, 'No.102.m.s nagar 2nd St chepet chennai 31', 'Chennai', '2410040014', '50', '1', 'upload_files/candidate_tracker/65038735500_JasmineSushmaUpdatedHrRecritmentResume.pdf2.pdf', NULL, '1', '2024-10-04', 0, '', '3', '59', '2024-10-14', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '2024-10-14', 1, '2024-10-04 07:16:46', 60, '2024-10-10 11:24:39', 0, NULL, 1),
(22025, 'MOHAMMED ALTHAF', '6', '7550159851', '7305156179', 'althafmohammed2410@gmail.com', '2002-10-24', 21, '2', '2', 'hajeera', 'sales ba', 20000.00, 1, 0.00, 15000.00, 'velachery chennai', 'velachery chennai', '2410040015', '50', '1', 'upload_files/candidate_tracker/60835156754_MohammedAlthafResume.pdf', NULL, '1', '2024-10-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-04 07:55:12', 104, '2024-10-04 05:33:03', 0, NULL, 1),
(22026, 'Karolin Luceyana', '6', '6385479383', '8220923996', 'karolinluceyanaa@gmail.com', '2002-06-01', 22, '2', '2', 'Roselin Mary', 'Sales agent', 20000.00, 1, 12900.00, 18000.00, 'Nagapattinam', 'Chennai', '2410040016', '1', '2', 'upload_files/candidate_tracker/32393169724_Yourparagraphtext1.pdf', NULL, '1', '2024-10-04', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communcation and voice also good , past exp for sales related work exp salary 18k , so try for 7 days training periods  and joining for tuesday ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-04 07:55:57', 104, '2024-10-04 05:37:25', 0, NULL, 1),
(22027, 'DINESH KUMAR T', '6', '9943936211', '', 'dineshtamilarasu2003@gmail.com', '2003-04-16', 21, '2', '2', 'Tamilarasu R', 'Driver', 80000.00, 0, 0.00, 20000.00, 'Theni', 'Chengalpet', '2410040017', '57', '1', 'upload_files/candidate_tracker/74571268759_DINESHKUMART.pdf', NULL, '1', '2024-10-04', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not having  proper dress code and resume mismatched  not good at communication', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-04 08:59:26', 104, '2024-10-04 05:36:57', 0, NULL, 1),
(22028, 'Akshaya', '6', '8248475592', '8220105556', 'akshaya.b1bm@gmail.com', '2003-07-12', 21, '1', '1', 'Lokesh', 'Document verifier', 30000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2410040018', '', '1', 'upload_files/candidate_tracker/77086318393_CV2024052110190982.pdf', NULL, '1', '2024-10-04', 0, '77972', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'having interest and showing confident but married lets try for 7 days', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-04 10:27:25', 104, '2024-10-04 05:36:44', 0, NULL, 1),
(22029, 'P. Kishore', '6', '9677051340', '', 'kishoree337@gmail.com', '2003-10-16', 20, '1', '2', 'Fathima Juliana', 'TNELB assistant', 50000.00, 1, 0.00, 15000.00, 'kakenji colony vyasarpadi Chennai 39', 'Same', '2410040019', '', '1', 'upload_files/candidate_tracker/6879603310_AdobeScanJun1420241.pdf', NULL, '1', '2024-10-04', 0, 'P1404', '3', '59', '2024-10-08', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Fresher for our roles can be trained and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1066', '5151', '2024-10-08', 1, '2024-10-04 10:36:14', 60, '2024-10-07 02:53:39', 0, NULL, 1),
(22030, 'Harish Kumar.B', '6', '9363008651', '9962621289', 'harishduke22@gmail.com', '2003-11-15', 20, '1', '2', 'B.balaraman', 'Business', 100000.00, 1, 0.00, 15.00, '12/2anandha Krishna street', '12/2anandha Krishna street', '2410040020', '', '1', 'upload_files/candidate_tracker/86673531814_harishresumepdf.pdf', NULL, '1', '2024-10-04', 0, 'P1404', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Convincing and Communication skills is low he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-04 10:40:44', 104, '2024-10-04 05:38:59', 0, NULL, 1),
(22031, 'Sangavi', '5', '8148125334', '6382020083', 'sangavipalanivel12@gmail.com', '2000-04-30', 24, '2', '2', 'Palanivel', 'Working in harbour', 30000.00, 1, 24500.00, 25000.00, 'No 24 munniyapan street Royapuram chennai 13', 'Chenna', '2410040021', '50', '2', 'upload_files/candidate_tracker/88073245356_Gen00010092024.pdf', NULL, '1', '2024-10-04', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for customer support or non voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-10-04 11:02:18', 104, '2024-11-12 04:30:51', 0, NULL, 1),
(22032, 'Sankari', '13', '8870330127', '', 'sankari15200@gmail.com', '2001-02-15', 23, '6', '2', 'K V Subramanian', 'Working in hotel', 720000.00, 0, 0.00, 195000.00, 'Tirunelveli', 'Chennai', '2410050001', '', '1', 'upload_files/candidate_tracker/74926587924_SankariResume.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:14:14', 1, '2024-10-05 04:19:00', 0, NULL, 1),
(22033, 'deebendra kumar', '13', '9789166566', '9500414160', 'deebendrakumar04@gmail.com', '2001-06-04', 23, '6', '2', 'krishnamoorthy', 'textile printing', 50000.00, 1, 0.00, 5.00, 'thirupur', 'thirupur', '2410050002', '', '1', 'upload_files/candidate_tracker/96570089708_Document.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:14:58', 1, '2024-10-05 04:51:34', 0, NULL, 1),
(22034, 'hari haran', '31', '8012099050', '9791587512', 'hariharan.a69@gmail.com', '1998-09-06', 26, '6', '2', 'k.a.arumugavel', 'Business', 30000.00, 2, 0.00, 30000.00, 'thirupathi nagar, elumalai, madurai(Dt)', 'thiruvallur', '2410050003', '', '1', 'upload_files/candidate_tracker/84418318867_HariUpdatedcv.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:18:14', 1, '2024-10-05 04:23:27', 0, NULL, 1),
(22035, 'Priyadharshini', '13', '9025275815', '', 'priyadharshini.dev01@gmail.com', '2009-10-05', 0, '6', '2', 'Balu', 'Agriculture', 1000.00, 1, 10000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2410050004', '', '2', 'upload_files/candidate_tracker/79453031680_Priyadharshinidev.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:18:51', 1, '2024-10-05 04:22:15', 0, NULL, 1),
(22036, 'A.Abhishek', '31', '7200332859', '9940052859', 'aabhisheknair2003@gmail.com', '2009-10-05', 0, '3', '2', 'R.Bindhu', 'Private company', 14000.00, 1, 0.00, 2.60, 'Chennai', 'Chennai', '2410050005', '', '1', 'upload_files/candidate_tracker/50259812558_FrontEndDeveloperPythonEnthusiast.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:19:50', 1, '2024-10-05 04:28:00', 0, NULL, 1),
(22037, 'Darasan R', '13', '9361547043', '8825436774', 'shanmugamdarasan@gmail.com', '2004-06-26', 20, '6', '2', 'K.Ramesh Rao', 'Conductor', 30000.00, 1, 0.00, 400000.00, 'Krishnagiri', 'Krishnagiri', '2410050006', '', '1', 'upload_files/candidate_tracker/91106046175_DarasanRResume.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:20:03', 1, '2024-10-05 04:26:02', 0, NULL, 1),
(22038, 'Thanveerul Aslam Ahamed', '13', '9894463097', '9080976870', 'thanverulaslam@gmail.com', '2003-09-01', 21, '6', '2', 'Arif Ahmed', 'Self Employee', 50000.00, 1, 0.00, 2.80, '4/5 Pulliyar Koil st, Thandalam, Ranipet', '31 naval hospital road Periamet', '2410050007', '', '1', 'upload_files/candidate_tracker/36024790058_ThanveerCV1.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:20:45', 1, '2024-10-05 04:26:15', 0, NULL, 1),
(22039, 'V. Purushothaman', '13', '9487284931', '9087355687', 'purushothvishnu1@gmail.com', '2000-03-01', 24, '6', '2', 'M. Venkatesh', 'Nill', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2410050008', '', '1', 'upload_files/candidate_tracker/38404427967_Resume2.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:20:47', 1, '2024-10-05 04:32:04', 0, NULL, 1),
(22040, 'Prakash M', '13', '9384760842', '7010965962', 'prakashm16072002@gmail.com', '2002-07-16', 22, '3', '2', 'Mariappan', 'Farmer', 10000.00, 2, 0.00, 25000.00, 'Tuticorin', 'Avadi', '2410050009', '', '1', 'upload_files/candidate_tracker/61909922226_Prakash.cv.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:20:50', 1, '2024-10-05 04:34:06', 0, NULL, 1),
(22041, 'Nandhakumar S', '13', '8754704407', '', 'kumarnandha8983@gmail.com', '2003-03-19', 21, '6', '2', 'Saravanan P', 'Business', 400000.00, 1, 0.00, 400000.00, 'Tirupathur, Tamilnadu', 'Chennai, Tamilnadu', '2410050010', '', '1', 'upload_files/candidate_tracker/17721156837_Resume.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:20:56', 1, '2024-10-05 04:28:27', 0, NULL, 1),
(22042, 'Radhakkrishnan', '13', '9025744966', '9345593190', 'radhakkrishnan9.2@gmail.com', '2002-06-09', 22, '6', '2', 'Chidambaram', 'Electrician', 50000.00, 2, 0.00, 500000.00, 'Madurai', 'Chennai', '2410050011', '', '1', 'upload_files/candidate_tracker/48498280004_Radhakkrishnan1.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:23:22', 1, '2024-10-05 04:32:37', 0, NULL, 1),
(22043, 'Jagadeesh', '13', '9080367738', '', 'jagadeeshramachandiran@gmail.com', '2000-03-30', 24, '3', '2', 'Ramachandiran', 'Labour', 20000.00, 1, 150000.00, 300000.00, 'Kanchipuram', 'Chennai', '2410050012', '', '2', 'upload_files/candidate_tracker/35257794624_JagadeeshResume.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:24:16', 1, '2024-10-05 04:27:34', 0, NULL, 1),
(22044, 'Ranjithkumar k', '2', '6380958311', '', 'Kumarranjith50677@gmail.com', '2001-06-28', 23, '6', '2', 'Kumar', 'Daily labour', 30000.00, 1, 300000.00, 450000.00, 'Dharapuram', 'Chennai', '2410050013', '', '2', 'upload_files/candidate_tracker/91677677856_RanjithKumarKResume.pdf', NULL, '1', '2024-10-05', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:25:52', 1, '2024-10-05 04:34:18', 0, NULL, 1),
(22045, 'A.S.Mohammed shahin ali', '13', '9566260656', '', 'Shahinali1205@gmail.com', '2000-05-12', 24, '6', '2', 'Rasin banu', 'House wife', 150000.00, 1, 0.00, 20000.00, 'Guduvanchery', 'Guduvanchery', '2410050014', '', '1', 'upload_files/candidate_tracker/80263911684_MohammedShahinAli.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:26:26', 1, '2024-10-05 04:32:38', 0, NULL, 1),
(22046, 'Sneha v', '13', '9840228341', '9087065277', 'snehavijayakumar02@gmail.com', '2004-02-01', 20, '6', '2', 'Seetha v', 'House keeping', 15000.00, 1, 0.00, 200000.00, 'Nandanam, chennai', 'Nandanam, Chennai', '2410050015', '', '1', 'upload_files/candidate_tracker/11839299402_RESUME.docx', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:26:43', 1, '2024-10-05 04:30:33', 0, NULL, 1),
(22047, 'Monika', '13', '8925635780', '', 'moniveera20@gmail.com', '2004-04-30', 20, '6', '2', 'Veeraraghavan', 'Car driver', 8000.00, 1, 0.00, 200000.00, 'Nandanam, Chennai', 'Nandanam, Chennai', '2410050016', '', '1', 'upload_files/candidate_tracker/10736387648_Monikaresume.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:26:51', 1, '2024-10-05 04:30:00', 0, NULL, 1),
(22048, 'Mohamed Afrith S', '13', '8220538680', '', 'mohamedafrith1504@gmail.com', '2002-04-15', 22, '6', '2', 'Salman Paris', 'Labour', 17000.00, 1, 0.00, 280000.00, 'Kottaipattinam, Pudukkottai, Tamil Nadu', 'Egmore, Chennai', '2410050017', '', '1', 'upload_files/candidate_tracker/50674359660_Resume.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:31:29', 1, '2024-10-05 04:34:29', 0, NULL, 1),
(22049, 'Srinivasan S', '13', '9500922790', '9952120700', 'srinivasan2209s@gmail.com', '2002-09-22', 22, '3', '2', 'Selvam P', 'Farmer', 200000.00, 2, 0.00, 3.50, 'Dharmapuri', 'Shollinganallur', '2410050018', '', '1', 'upload_files/candidate_tracker/85920460849_SrinivasanSFlowCVResume202408221.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:32:33', 1, '2024-10-05 04:38:01', 0, NULL, 1),
(22050, 'M.Naveen', '13', '8667547520', '9940485751', 'naveenraj2703@gmail.com', '2003-10-27', 20, '3', '2', 'Madhan raj', 'Cine field', 30000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2410050019', '', '1', 'upload_files/candidate_tracker/53422577397_naveencopy.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:34:02', 1, '2024-10-05 04:38:52', 0, NULL, 1),
(22051, 'Prakash S', '13', '9361372865', '', 'prakash72865@gmail.com', '2001-08-21', 23, '6', '2', 'G Sivasankar', 'Student', 50000.00, 1, 0.00, 350000.00, 'Tiruvannamalai', 'Chennai', '2410050020', '', '1', 'upload_files/candidate_tracker/43048053090_PRAKASHSResume1.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:41:10', 1, '2024-10-05 04:46:31', 0, NULL, 1),
(22052, 'Anto V', '13', '8524868441', '', 'antojerry70@gmail.com', '2004-01-06', 20, '3', '2', 'Vincent', 'Farmer', 12000.00, 1, 0.00, 2.00, 'Tirupattur', 'Tirupattur', '2410050021', '', '1', 'upload_files/candidate_tracker/6014013433_AntoResumeBT20241.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:41:12', 1, '2024-10-05 04:43:57', 0, NULL, 1),
(22053, 'PONYOGESH P', '13', '9092424456', '', 'ponyogesh342@gmail.com', '2002-04-04', 22, '6', '2', 'Ponmani G', 'Business', 40000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2410050022', '', '1', 'upload_files/candidate_tracker/71764082315_PonyogeshMCA2024.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 04:46:07', 1, '2024-10-05 04:49:02', 0, NULL, 1),
(22054, 'Mahalakshmi SJ', '6', '6364417482', '', 'kavyachinnu865@gmail.com', '2003-07-06', 21, '2', '2', 'Karthik', 'Employee', 30000.00, 1, 18000.00, 20000.00, 'Devanagere', 'Hebbagodi', '2410050023', '1', '2', 'upload_files/candidate_tracker/77676672509_DocumentfromKavyaChinnu.pdf', NULL, '1', '2024-10-05', 1, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and Confident', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-10-05 04:54:40', 126, '2024-10-05 05:57:47', 0, NULL, 1),
(22055, 'Kethineni Vishnu Teja', '6', '7396934009', '', 'kethinenivishnuteja4848@gmail.com', '2004-02-21', 20, '2', '2', 'K.Gurrappa Naidu', 'Formar', 20000.00, 1, 0.00, 18000.00, 'Piler, Andhra Pradesh', 'Silk board, Banglore', '2410050024', '1', '1', 'upload_files/candidate_tracker/31465364405_VishnuTejaCV.docx', NULL, '1', '2024-10-05', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and interest ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-10-05 05:03:02', 126, '2024-10-05 05:59:09', 0, NULL, 1),
(22056, '', '0', '8056924163', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410050025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-05 05:04:11', 0, NULL, 0, NULL, 1),
(22057, 'Sarulatha', '25', '9363438246', '7708544208', 'sarulathas50@gmail.com', '2000-09-09', 24, '2', '2', 'Somasundaram', 'Business man', 30000.00, 1, 20000.00, 25000.00, '55 c velliyon oorani kajaeversilver Mart', 'Ambattur', '2410050026', '50', '2', 'upload_files/candidate_tracker/86291503850_SARULATHA2.pdf', NULL, '1', '2024-10-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '8', '1', '', '1', '3', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-10-05 05:11:29', 104, '2024-10-05 02:42:49', 0, NULL, 1),
(22058, 'Balaji G', '13', '9941984267', '', 'balaji.g0906@gmail.com', '2002-02-09', 22, '3', '2', 'Ganesan M', 'Driver', 200000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2410050027', '', '1', 'upload_files/candidate_tracker/7413187086_BALAJIRESUME.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 05:13:09', 1, '2024-10-05 05:15:23', 0, NULL, 1),
(22059, 'Muthukumar', '13', '6383647177', '', 'muthukumarchinraj2001@gmail.com', '2001-01-12', 23, '3', '2', 'Chinraj', 'Farmer', 10000.00, 4, 0.00, 3.00, '218/ kunnangkaradu, Gobichettipalaiyam, erode', 'Kumaranagar', '2410050028', '', '1', 'upload_files/candidate_tracker/18042784938_MuthukumarResume.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 05:19:28', 1, '2024-10-05 05:35:25', 0, NULL, 1),
(22060, 'Raheem Safwan', '13', '9952910337', '', 'raheemsafwan652@gmail.com', '2009-10-05', 0, '6', '2', 'Zulfikar Ali', 'Businessman', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2410050029', '', '1', 'upload_files/candidate_tracker/15383385817_Resume.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 05:21:32', 1, '2024-10-05 05:27:09', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22061, 'Arun Pandian', '13', '6369363337', '', 'developer.arun07@gmail.com', '2001-09-01', 23, '3', '2', 'K.sankarapandi', 'buisness', 30000.00, 2, 0.00, 250000.00, 'Chennai', 'Chennai', '2410050030', '', '1', 'upload_files/candidate_tracker/76485751213_resume.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 05:23:11', 1, '2024-10-05 05:26:07', 0, NULL, 1),
(22062, 'KESAVAN G', '13', '9345470511', '9442982895', 'kesava2807@gmail.com', '2001-07-28', 23, '3', '2', 'Gunasekaran', 'Labour', 24000.00, 1, 0.00, 300000.00, 'Karaikal', 'Chennai', '2410050031', '', '1', 'upload_files/candidate_tracker/31758364412_KesavansResume.pdf202408241521550000.pdf', NULL, '2', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 05:24:51', 1, '2024-10-05 05:59:39', 0, NULL, 1),
(22063, 'Jaya Surya R T', '31', '9025408318', '', 'jayasurya.rt7@gmail.com', '2002-07-25', 22, '3', '2', 'Thirugnana Sambantham R', 'Painter', 80000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2410050032', '', '1', 'upload_files/candidate_tracker/65800287155_Jayasuryaresume.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 05:27:50', 1, '2024-10-05 05:40:59', 0, NULL, 1),
(22064, 'HIRTHIK ROSHAN S', '6', '7094396722', '', 'shrithikroshan17@gmail.com', '2003-07-01', 21, '2', '2', 'SIVAKUMAR C', 'BE CSE', 25.00, 0, 0.00, 20.00, 'Karur', 'Chennai', '2410050033', '42', '1', 'upload_files/candidate_tracker/45731321389_HIRTHIKROSHANS7094396722pdf.pdf.pdf', NULL, '1', '2024-10-05', 0, '', '3', '59', '2024-10-14', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Fresher for sales Roles can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '2024-10-14', 1, '2024-10-05 05:29:23', 60, '2024-10-10 11:56:43', 0, NULL, 1),
(22065, 'Yuvanthika.D.N', '6', '9597501631', '8072956028', 'yuvanthikadn@gmail.com', '2003-09-04', 21, '2', '2', 'Father', 'Tailor', 80000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2410050034', '50', '1', 'upload_files/candidate_tracker/75503432320_download.pdf', NULL, '1', '2024-10-05', 0, '', '3', '59', '2024-10-09', 192000.00, '', '', '1970-01-01', '2', 'Communication Good Salary exp is high 5050 sustainability doubts need to check in 7 days trainin\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-05 05:35:11', 104, '2024-10-05 11:44:05', 0, NULL, 1),
(22066, 'TAWFIQ SIRAJUDEEN P', '2', '8754515276', '', 'tawfiqsiraj003003@gmail.com', '1970-01-01', 0, '6', '2', 'Peer Mohamed', 'Electrician', 150000.00, 2, 0.00, 250000.00, 'CHENNAI', 'CHENNAI', '2410050035', '1', '1', 'upload_files/candidate_tracker/69604468431_TAWFIQSIRAJUDEENCV.pdf', NULL, '1', '2024-10-05', 0, 'Null', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', '0', '0', NULL, 1, '2024-10-05 05:43:39', 1, '2024-10-05 05:44:22', 0, NULL, 1),
(22067, 'Yasser S H', '13', '7845936692', '', 'yassabooh@gmail.com', '2002-04-28', 22, '6', '2', 'S A Hydroos', 'Fresher', 700000.00, 3, 0.00, 3500000.00, 'Tirunelveli', 'Kattankulathur', '2410050036', '', '1', 'upload_files/candidate_tracker/94452681751_YASSER.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 05:56:42', 1, '2024-10-05 06:05:19', 0, NULL, 1),
(22068, 'Sanjay R', '13', '9566277113', '9486357617', 'sanjayraghupathy1412@gmail.com', '2002-12-14', 21, '3', '2', 'D Vijayalakshmi', 'Fresher', 200000.00, 0, 0.00, 350000.00, 'Chennai', 'Chennai', '2410050037', '', '1', 'upload_files/candidate_tracker/58534778599_SanjayRMKEC2411.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 05:56:51', 1, '2024-10-05 06:19:31', 0, NULL, 1),
(22069, 'Ananthakrishnan', '13', '9840687691', '', 'ananthasrinis@gmail.com', '1999-09-02', 25, '3', '2', 'Selvi', 'Government employee', 45000.00, 1, 0.00, 4.00, 'Chennai', 'Chennai', '2410050038', '', '1', 'upload_files/candidate_tracker/24352469056_AnanthakrishnanBE2022JAVAFULLSTACKDEVELOPEMENT.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 05:58:05', 1, '2024-10-05 06:00:15', 0, NULL, 1),
(22070, 'Kishore Paul J', '13', '6381392213', '', 'paulkishore13@gmail.com', '2004-05-02', 20, '6', '2', 'James Raj j', 'Car driver', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2410050039', '', '1', 'upload_files/candidate_tracker/50582748680_KishoresResumeGoogleDocs.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 06:45:05', 1, '2024-10-05 06:47:27', 0, NULL, 1),
(22071, 'AKASH K', '13', '7358682233', '', 'kakashoffical@gmail.com', '1998-11-16', 25, '6', '2', 'KANNIYAPPAN R', 'EMPLOYEE', 20000.00, 1, 25000.00, 25000.00, 'Chennai', 'Chennai', '2410050040', '', '2', 'upload_files/candidate_tracker/67925408118_AkashKFS.pdf', NULL, '1', '2024-10-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '1', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-05 06:46:04', 104, '2024-10-05 02:49:52', 0, NULL, 1),
(22072, 'Jubil P k', '13', '9961021780', '', 'jubilpk2000@gmail.com', '2000-10-01', 24, '6', '2', 'Jayachandran P k', 'Fresher', 8000.00, 1, 0.00, 20000.00, 'Kannur, Kerala', 'Banglore, karnataka', '2410050041', '', '1', 'upload_files/candidate_tracker/89524820326_JUBILPK.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 08:45:26', 1, '2024-10-05 09:05:57', 0, NULL, 1),
(22073, 'rameem raj bh', '13', '9207238693', '', 'rameemrajbh@gmail.com', '2000-06-16', 24, '6', '2', 'haneefa', 'farmer', 25000.00, 4, 0.00, 20000.00, 'kannur kerala', 'bengaluru', '2410050042', '', '1', 'upload_files/candidate_tracker/64139817533_RAMEEMRAJBHresume.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 08:47:38', 1, '2024-10-05 09:02:08', 0, NULL, 1),
(22074, 'Sakthi', '13', '9363136342', '7358898150', 'vlsmsakthi@gmail.com', '2009-10-05', 0, '3', '2', 'Saravanan', 'BE', 12000.00, 2, 0.00, 15000.00, 'Salem', 'Chennai', '2410050043', '', '1', 'upload_files/candidate_tracker/81088826943_sakthirsm.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:02:24', 1, '2024-10-05 09:08:10', 0, NULL, 1),
(22075, 'Sanjay M.R', '13', '7708041335', '9944305289', 'sanjaymr1193@gmail.com', '1998-10-30', 25, '6', '2', 'Ravichandran M.G', 'Business', 180000.00, 2, 0.00, 240000.00, '2/48A, Kalaimagal nagar 2nd street, karapakam.', '2/48A, Kalaimagal nagar 2nd street, karapakam.', '2410050044', '', '1', 'upload_files/candidate_tracker/51855812794_sanjayresume..pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:02:25', 1, '2024-10-05 09:07:43', 0, NULL, 1),
(22076, 'Kathirvel S', '13', '6383835215', '', 'kathirvelsubbiah2003@gmail.com', '2003-06-02', 21, '6', '2', 'Subbiah K', 'Gold smith', 6000.00, 0, 0.00, 15000.00, 'Sathankulam', 'Chennai', '2410050045', '', '1', 'upload_files/candidate_tracker/5391838013_NewkathirvelSCoResume.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:02:39', 1, '2024-10-05 09:23:37', 0, NULL, 1),
(22077, 'Karthikeyan S', '13', '8098268776', '6382539433', 'karthisenthil1811@gmail.com', '2001-11-17', 22, '3', '2', 'Senthilkumar.J', 'Farmer', 10000.00, 1, 0.00, 200000.00, 'Chidambaram', 'Velachery, Chennai', '2410050046', '', '1', 'upload_files/candidate_tracker/75104471762_KarthiTechnicalsupport.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:03:46', 1, '2024-10-05 09:10:53', 0, NULL, 1),
(22078, 'Mani Bharathi', '13', '7339641560', '6382539433', 'mani1234bharathi@gmail.com', '2001-03-20', 23, '6', '2', 'Athiraman', 'Farmer', 25000.00, 1, 0.00, 2.00, 'Chennai', 'Chennai', '2410050047', '', '1', 'upload_files/candidate_tracker/49415579869_MANIBHARATHIA1.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:04:05', 1, '2024-10-05 09:08:31', 0, NULL, 1),
(22079, 'Abinaya A', '13', '7812828886', '', 'abinayamirthalingam01@gmail.com', '2003-12-15', 20, '3', '2', 'Amirthalingam', 'Driver', 30000.00, 1, 0.00, 20000.00, 'Tholudur', 'Chennai', '2410050048', '', '1', 'upload_files/candidate_tracker/51191116892_abinayaresume.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:04:46', 1, '2024-10-05 09:11:24', 0, NULL, 1),
(22080, 'R.Sowmiya', '13', '6382477271', '', 'sowmirajkumar2004@gmail.com', '2004-05-18', 20, '3', '2', 'Rajkumar', 'Conductor', 30000.00, 1, 0.00, 200000.00, 'Perambalur', 'Chennai', '2410050049', '', '1', 'upload_files/candidate_tracker/20885233228_sowmiya2.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:12:28', 1, '2024-10-05 09:14:06', 0, NULL, 1),
(22081, 'Vijayapriya', '4', '8610494137', '', 'vijayapriya514@gmail.com', '2004-01-05', 20, '6', '2', 'Viswanathan', 'I completed bca and looking for a job', 20000.00, 1, 0.00, 15000.00, 'mayiladuthurai', 'Mayiladuthurai', '2410050050', '', '1', 'upload_files/candidate_tracker/18574264720_resume1.pdf', NULL, '1', '2024-10-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:14:10', 1, '2024-10-05 09:24:21', 0, NULL, 1),
(22082, 'Srinu paliki', '13', '7032417838', '7093584867', 'srinupaliki0051@gmail.com', '2001-03-23', 23, '6', '2', 'Nagamani', 'Daily labour', 15000.00, 1, 0.00, 200000.00, 'Rajahmundry', 'Tada', '2410050051', '', '1', 'upload_files/candidate_tracker/20011302729_srinuJavamodified.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:14:50', 1, '2024-10-05 09:31:20', 0, NULL, 1),
(22083, 'Lokesh J', '13', '9360383637', '', 'lokeshjagadheesan@gmail.com', '2002-10-22', 21, '6', '2', 'Dhatchayani', 'Bsc', 15000.00, 1, 0.00, 10000.00, 'Kanchipuram', 'Chennai', '2410050052', '', '1', 'upload_files/candidate_tracker/53925144320_LokeshJResume.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:15:09', 1, '2024-10-05 09:23:26', 0, NULL, 1),
(22084, 'K.Mathavan', '13', '9360442488', '', 'kmathavancse@gmail.com', '2001-12-07', 22, '6', '2', 'Karmegaraj', 'Farmer', 20000.00, 2, 0.00, 150000.00, 'Chennai', 'Chennai', '2410050053', '', '1', 'upload_files/candidate_tracker/54598078995_Mathavan.KB.ECSE.docx', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:15:19', 1, '2024-10-05 09:25:49', 0, NULL, 1),
(22085, 'Aravinthan', '13', '9944009624', '', 'varavinthan004@gmail.com', '2001-11-04', 22, '6', '2', 'Vasudevan', 'Business', 50000.00, 1, 180000.00, 400000.00, 'Dharampuri', 'Chennai', '2410050054', '', '2', 'upload_files/candidate_tracker/28948378712_AravinthanResume.pdf', NULL, '1', '2024-10-05', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:20:26', 1, '2024-10-05 09:41:06', 0, NULL, 1),
(22086, 'Uthra.B.L', '13', '6379116509', '8825936363', 'Bluthra2017@gmail.com', '2004-04-17', 20, '3', '2', 'Babu.R', 'Manager', 180000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2410050055', '', '1', 'upload_files/candidate_tracker/56380803368_resume.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:23:05', 1, '2024-10-05 09:27:39', 0, NULL, 1),
(22087, 'Sakithyan I', '14', '6382123933', '', 'Sakithyan2k14@gmail.com', '2003-01-07', 21, '3', '2', 'Amudha S', 'House wife', 40000.00, 1, 0.00, 15000.00, 'Chennai, palavakkam', 'Chennai, palavakkam', '2410050056', '', '1', 'upload_files/candidate_tracker/69965038954_SakithyanIcompressed.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:41:18', 1, '2024-10-05 09:48:27', 0, NULL, 1),
(22088, 'Ali Jameel H.F', '13', '8754872325', '', 'alijameel2325@gmail.com', '2002-03-23', 22, '6', '2', 'M.G Hasana Farook', 'No', 20000.00, 3, 0.00, 20000.00, 'Cuddalore', 'Chennai', '2410050057', '', '1', 'upload_files/candidate_tracker/646791932_alijameelresume.pdf.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:46:51', 1, '2024-10-05 09:59:05', 0, NULL, 1),
(22089, '', '0', '9360713811', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410050058', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-05 09:50:32', 0, NULL, 0, NULL, 1),
(22090, 'Nithya', '4', '6380133634', '7871581693', 'nithyain2003@gmail.com', '2003-03-23', 21, '2', '2', 'Jayanthi', 'Maid', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2410050059', '50', '1', 'upload_files/candidate_tracker/9646807632_AdobeScan31Aug2024.pdf', NULL, '1', '2024-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:51:13', 1, '2024-10-05 09:55:48', 0, NULL, 1),
(22091, 'Rizwan S', '13', '9677713286', '', 'rizsu5649@gmail.com', '2002-03-25', 22, '6', '2', 'Sheik Gouse', 'Rice Shop', 20000.00, 3, 0.00, 20000.00, 'Kallakurichi', 'Chennai', '2410050060', '', '1', 'upload_files/candidate_tracker/9981660105_Updatedresume2.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:52:42', 1, '2024-10-05 09:59:11', 0, NULL, 1),
(22092, 'Sridharan velmurugan', '13', '8610757257', '9698497532', 'sridharanvelmurugan17@gmail.com', '1997-02-17', 27, '3', '2', 'Velmurugan', 'Farmer', 20000.00, 2, 25000.00, 30000.00, 'Vadalur', 'Vadalur', '2410050061', '', '2', 'upload_files/candidate_tracker/66010270770_sridharanresume124.pdf', NULL, '1', '2024-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 09:59:43', 1, '2024-10-05 10:03:51', 0, NULL, 1),
(22093, 'Nantha kumar J', '13', '9790809087', '8438064754', 'nan1dhakumar@gmail.com', '2001-01-24', 23, '3', '2', 'Suyampukani', 'House wife', 30000.00, 3, 0.00, 10000.00, 'Kilkattalai', 'Kilkattalai', '2410050062', '', '1', 'upload_files/candidate_tracker/58344687750_constresume4J.NanthaKumar.pdf', NULL, '1', '2024-10-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-05 10:21:24', 1, '2024-10-05 10:28:30', 0, NULL, 1),
(22094, 'Savita', '6', '8660658794', '', 'Kalmeshsavita@gmail.com', '1998-02-09', 26, '3', '1', 'Kalmesh', 'I\'m working woman', 70.00, 1, 406000.00, 470000.00, 'Hubli', 'Bangalore', '2410070001', '', '2', 'upload_files/candidate_tracker/23700838862_MyResume2.pdf', NULL, '2', '2024-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-07 12:51:03', 1, '2024-10-07 12:58:43', 0, NULL, 1),
(22095, 'maharaja', '13', '7550196284', '9840136059', 'rajarajar507@gmail.com', '2001-10-23', 22, '6', '2', 'muruganantham', 'daily wages', 15000.00, 1, 0.00, 10000.00, 'chennai', 'thiruvottiyur', '2410070002', '', '1', 'upload_files/candidate_tracker/34996650393_M.MAHARAJA.pdf', NULL, '1', '2024-10-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-07 04:10:05', 1, '2024-10-07 04:17:35', 0, NULL, 1),
(22096, 'Sanjay B', '11', '9150505491', '9791504959', 'sanjaysmartsanjaysmart72@gmail.com', '2002-03-30', 22, '6', '2', 'Babu S', 'Driver', 25000.00, 2, 0.00, 15000.00, 'Kavaraipettai', 'Kavaraipettai', '2410070003', '', '1', 'upload_files/candidate_tracker/65144091618_DOC20240906WA0012..pdf', NULL, '1', '2024-10-07', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication not good. sustainablity issue', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-10-07 04:10:53', 104, '2024-10-07 05:44:41', 0, NULL, 1),
(22097, 'Karthik N M', '13', '9003803967', '6381027659', 'karthiknm27@gmail.com', '2003-04-02', 21, '3', '2', 'Mani', 'Weaver', 20000.00, 2, 0.00, 15000.00, 'Tiruttani', 'Perambur', '2410070004', '', '1', 'upload_files/candidate_tracker/49633473647_KARTHIKRESUME2.pdf', NULL, '1', '2024-10-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-07 04:18:06', 1, '2024-10-07 04:35:52', 0, NULL, 1),
(22098, 'Priyanka. K', '6', '9884781538', '', 'manishapriyanka7@gmail.com', '2003-08-29', 21, '2', '2', 'Parent', '75000', 75000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2410070005', '56', '1', 'upload_files/candidate_tracker/34632991522_Priyankaresumecompressed.pdf', NULL, '1', '2024-10-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-07 04:18:37', 104, '2024-10-07 05:41:40', 0, NULL, 1),
(22099, 'a.sudeshna ragavi', '6', '8754539187', '9791168238', 'asrsudeshna@gmail.com', '2000-04-11', 24, '2', '2', 'shanthi', 'house wife', 100000.00, 0, 0.00, 250000.00, 'thoraipakkam', 'thoraipakkam', '2410070006', '27', '1', 'upload_files/candidate_tracker/36439756789_SudeshnaRagaviAResume.pdf', NULL, '1', '2024-10-07', 0, '', '3', '59', '2024-10-17', 185000.00, '', '3', '2025-01-09', '1', 'Communication OK Can give a try in our role and confirm her in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-10-17', 1, '2024-10-07 04:31:20', 60, '2024-10-17 10:31:12', 0, NULL, 1),
(22100, 'Bernard Abraham E', '6', '9025835324', '', 'bernardabraham.e@gmail.com', '2002-10-27', 21, '2', '2', 'Ebinezar Kamal', 'Driver', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2410070007', '50', '1', 'upload_files/candidate_tracker/86062817735_BernardCV.pdf', NULL, '1', '2024-10-07', 0, '', '3', '59', '2024-10-14', 192000.00, '', '3', '2024-10-30', '2', 'Communication Ok Fresher Need to train and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-10-14', 1, '2024-10-07 04:32:42', 60, '2024-10-10 12:01:34', 0, NULL, 1),
(22101, 'Chandrunath k', '13', '8825798284', '9600158605', 'chandrunath59@gmail.com', '2001-09-05', 23, '3', '2', 'E.uma', 'Teacher', 35000.00, 1, 0.00, 13000.00, 'Vandavasi', 'Chennai', '2410070008', '', '1', 'upload_files/candidate_tracker/31157438982_CHANDRUNATHresumenew.pdf', NULL, '1', '2024-10-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-07 04:32:56', 1, '2024-10-07 04:37:53', 0, NULL, 1),
(22102, 'Abdul Rahman.s', '4', '9080859325', '8754380544', 'abdulrahman27043@gmail.com', '2003-04-27', 21, '2', '2', 'Shajahan', 'Business', 45000.00, 1, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2410070009', '1', '1', 'upload_files/candidate_tracker/84679376857_resume..pdf', NULL, '1', '2024-10-07', 0, '', '3', '59', '2024-10-09', 153000.00, '', '5', '1970-01-01', '2', 'Communication Ok Fresher for our roles can give a try and check in 7 days training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-10-09', 1, '2024-10-07 04:39:03', 60, '2024-10-08 06:46:53', 0, NULL, 1),
(22103, 'Ajay Sharuha.S', '14', '7305112461', '', 'ajaysharuha@gmail.com', '2001-10-14', 22, '6', '2', 'K.Sree Rama Chandramani', 'Shop keeper', 25000.00, 0, 0.00, 250000.00, 'Mylapore, Chennai', 'Mylapore,Chennai', '2410070010', '', '1', 'upload_files/candidate_tracker/26652319213_SAjaySharuha2024.pdf', NULL, '1', '2024-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-07 04:43:53', 1, '2024-10-07 04:48:11', 0, NULL, 1),
(22104, '', '0', '7200063705', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410070011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-07 04:45:42', 0, NULL, 0, NULL, 1),
(22105, 'Aruna.S', '4', '7397053494', '', 'itzaruna572@gmail.com', '2003-02-11', 21, '2', '2', 'Mother', 'Own business', 20000.00, 1, 0.00, 12000.00, 'Innamkiliyur', 'Papanasam', '2410070012', '1', '1', 'upload_files/candidate_tracker/90149135674_DOC20240628WA0018..pdf', NULL, '1', '2024-10-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-07 04:59:56', 104, '2024-10-08 05:48:17', 0, NULL, 1),
(22106, 'Dhanasekar', '6', '9150567956', '', '11thdhana@gmail.com', '2003-08-09', 21, '2', '2', 'Sumathi', 'School work', 120000.00, 1, 0.00, 15000.00, 'Anakapathur', 'Anakapathur', '2410070013', '1', '1', 'upload_files/candidate_tracker/11963518168_Dhanasekar.s.pdf', NULL, '1', '2024-10-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-07 05:35:15', 104, '2024-10-07 03:30:08', 0, NULL, 1),
(22107, 'Cerlin rufina.M', '6', '8825971987', '8248901546', 'rufinacerlin@gmail.com', '2002-12-15', 21, '2', '2', 'Micheal raj .M', 'Daily wages', 15000.00, 1, 0.00, 220000.00, 'Chennai', 'Chennai', '2410070014', '50', '1', 'upload_files/candidate_tracker/99602242834_21uafa126StellaMariscollegeresume2.pdf', NULL, '1', '2024-10-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-07 05:35:21', 104, '2024-10-07 11:30:51', 0, NULL, 1),
(22108, 'Nivedhika', '6', '7200757087', '', 'nivedhika008@gmail.com', '2004-04-08', 20, '2', '2', 'Chinnappan', 'Fisherman', 15000.00, 2, 0.00, 220000.00, 'Chennai', 'Chennai', '2410070015', '50', '1', 'upload_files/candidate_tracker/98489740161_C.Nivedhikaresume.pdf', NULL, '1', '2024-10-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-07 05:36:27', 104, '2024-10-07 11:31:59', 0, NULL, 1),
(22109, 'Tharun Kumar P', '13', '8056214970', '9176858666', 'mr.tharun147@gmail.com', '2003-03-10', 21, '6', '2', 'Palani. V', 'Plumber', 12500.00, 1, 0.00, 250000.00, 'mogappair east, Chennai -600037', 'Mogappair East, Chennai -600037', '2410070016', '', '1', 'upload_files/candidate_tracker/25915586128_ResumeTharun.pdf', NULL, '1', '2024-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-07 05:45:04', 1, '2024-10-07 05:53:08', 0, NULL, 1),
(22110, 'Akshaya J', '13', '9176858655', '9791548207', 'akshayagj412@gmail.com', '2002-12-04', 21, '6', '2', 'Jayavel Murugan. K', 'Supervisor', 18000.00, 0, 0.00, 150000.00, '-', 'L30/2,TNHB FLATS, Central Avenue Korattur Chennai', '2410070017', '', '1', 'upload_files/candidate_tracker/58449238324_AkshayasResume1.pdf', NULL, '1', '2024-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-07 05:46:15', 1, '2024-10-07 05:51:16', 0, NULL, 1),
(22111, 'Balaji k', '6', '8056143450', '8825515783', 'balajibala5617@gmail.com', '1993-10-14', 30, '2', '2', 'Krishna moorthy', 'Tellcaller', 20.00, 1, 0.00, 20000.00, '32/49 vanner street kaladipet', 'Chennai', '2410070018', '50', '2', 'upload_files/candidate_tracker/79604571747_RseumeBalajiK11.pdf', NULL, '1', '2024-10-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales and not worth of his asking salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-07 06:01:13', 104, '2024-10-07 05:42:29', 0, NULL, 1),
(22112, 'Angel', '6', '8523968291', '8610082322', 'vangelgrace2001@gamil.com', '2001-11-02', 22, '2', '2', 'Jackulin', 'Coolk', 20000.00, 1, 15000.00, 20000.00, 'Kannigapuram', 'Kannigapuram', '2410070019', '57', '2', 'upload_files/candidate_tracker/55841207472_TapScanner081420241400.pdf', NULL, '1', '2024-10-07', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected - having some issues in communication and also interested in other jobs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-07 06:02:03', 104, '2024-10-07 05:43:24', 0, NULL, 1),
(22113, 'R. Tamilarasi', '6', '9150774497', '8438327282', 'tamilramesh44@gmail.com', '2004-07-27', 20, '2', '2', 'B.Ramesh R.sumathi', 'Driver', 12000.00, 1, 0.00, 15000.00, 'Chennai koyambedu', 'Koyambedu', '2410070020', '1', '1', 'upload_files/candidate_tracker/58916502221_TamilArasi.RCV21.pdf', NULL, '1', '2024-10-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-10-07 06:19:55', 104, '2024-10-07 05:41:55', 0, NULL, 1),
(22114, 'S. Pooja', '6', '8438327282', '9841030019', 'pp8092708@gmail.com', '2003-10-24', 20, '2', '2', 'Sugumar', 'Driver', 15000.00, 1, 13000.00, 15000.00, 'Manali', 'Manali', '2410070021', '1', '2', 'upload_files/candidate_tracker/67730782654_CV2024100515011166.pdf', NULL, '1', '2024-10-07', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-10-07 06:25:28', 104, '2024-10-07 05:37:41', 0, NULL, 1),
(22115, '', '0', '8015891664', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410070022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-07 06:25:48', 0, NULL, 0, NULL, 1),
(22116, '', '0', '7200427083', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410070023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-07 06:27:37', 0, NULL, 0, NULL, 1),
(22117, 'M pooja', '6', '8050521893', '8147660306', 'mpooja0708@gmail.com', '1997-08-07', 27, '2', '2', 'Kashiyamma', 'Advicer', 20000.00, 2, 20000.00, 20000.00, 'Jayanagar 9th block', 'Jayanagar', '2410070024', '1', '2', 'upload_files/candidate_tracker/39683765865_CV1.docx', NULL, '1', '2024-10-07', 0, '', '3', '59', '2024-10-16', 240000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can give a try in 7 days and train her', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '2024-10-16', 1, '2024-10-07 06:31:33', 60, '2024-10-17 10:51:37', 0, NULL, 1),
(22118, 'PRAJWAL MS', '5', '8951514872', '8660390633', 'Zaakze46@gmail.com', '1996-04-04', 28, '2', '2', 'SHAMALA MK', 'ADVISOR', 30000.00, 0, 0.00, 20000.00, 'Jayanagara 9th Block', 'Jayanagara 9th Block', '2410070025', '1', '2', 'upload_files/candidate_tracker/18006244774_DocumentfromZak46.pdf', NULL, '1', '2024-10-07', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of knowledge about the sales', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-10-07 06:32:04', 126, '2024-10-07 03:14:44', 0, NULL, 1),
(22119, 'Franciska Nehomi', '4', '8098634411', '9500489504', 'rajamanickam.1014@gmail.com', '1997-10-01', 27, '2', '1', 'Rajamanickam', 'Security', 7000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2410070026', '1', '1', 'upload_files/candidate_tracker/12947525944_francieskanehomi..pdf', NULL, '1', '2024-10-07', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-07 06:53:03', 104, '2024-10-07 05:37:57', 0, NULL, 1),
(22120, 'THILAGAVATHI P', '6', '9384624724', '', 'Thilagavathiprabhu2505@gmail.com', '2003-05-25', 21, '6', '2', 'PRABHU P', 'BA ECONOMIC', 20000.00, 1, 15000.00, 18000.00, 'No 227 4th st bv colony vysaepadi', 'No 227 4th st bv colony vysarpadi', '2410070027', '', '2', 'upload_files/candidate_tracker/78104442691_ThilagavathiPResume.pdf', NULL, '1', '2024-10-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-07 07:11:14', 104, '2024-10-07 05:42:14', 0, NULL, 1),
(22121, 'Jothi kirupa', '4', '9442755843', '8015332005', 'jothikirupam@gmail.com', '2004-04-14', 20, '2', '2', 'Marimithu', 'Former', 10000.00, 1, 0.00, 12000.00, 'Mannargudi', 'Mannargudi', '2410070028', '1', '1', 'upload_files/candidate_tracker/72054576204_DocScanner18Jul20241042am.pdf', NULL, '1', '2024-10-07', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile, completed bcom and not getting admission for mcom,so he ready to work currently...father farmer and ready ,,,,she is from mannargudi...ready to relocate from mannargudi after 1 month...ready to join immediately..have laptop...brother work in airport ....kindly check once and will see in training.', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-07 07:19:23', 104, '2024-10-07 05:41:28', 0, NULL, 1),
(22122, 'Manimaran Rengarajan', '4', '8015144202', '9442446409', 'crmanimca@gmail.com', '1998-12-13', 25, '2', '2', 'Rengarajan', 'Farming', 50000.00, 1, 0.00, 20000.00, '363, North Street,Thethuvasalpatti,Gandharvakottai', '363, North Street,Thethuvasalpatti,Gandharvakottai', '2410070029', '1', '1', 'upload_files/candidate_tracker/36479074445_ManimaranRengarajanResume.pdf', NULL, '1', '2024-10-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-07 07:24:23', 104, '2024-10-08 05:49:26', 0, NULL, 1),
(22123, 'Antony Sujith.c', '6', '9043891830', '', 'antonysujith56@gmail.com', '2003-06-19', 21, '2', '2', 'Chelladurai', 'Nil', 74000.00, 1, 0.00, 22000.00, 'No.6, Gandhi street, kamarajapuram', 'No.6, Gandhi street,kamarajapuram', '2410070030', '1', '1', 'upload_files/candidate_tracker/32837576876_SUJIRESUME1.pdf', NULL, '1', '2024-10-07', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not having confidence and lack of communication skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-07 08:01:21', 104, '2024-10-07 05:42:44', 0, NULL, 1),
(22124, 'Skiliva', '6', '9361890691', '', 'skilivaskiliva6@gmail.com', '2002-07-29', 22, '2', '2', 'Arockiyasamy', 'Shop', 30000.00, 2, 15000.00, 20000.00, 'Thanjavur', 'Poonamalle', '2410070031', '57', '2', 'upload_files/candidate_tracker/3863654028_resumeupdate.docx', NULL, '1', '2024-10-07', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she speaks well i hope she doing well in  our company 1.10 years tele calling exp, ctc 20k lets try 7 days and we will confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-07 08:10:19', 104, '2024-10-07 05:41:14', 0, NULL, 1),
(22125, 'Muthu Eswari', '6', '9361444293', '', 'Muthueswarie16@gmail.com', '2001-11-16', 22, '2', '2', 'Eswaran', 'Farmer', 12000.00, 0, 14000.00, 18000.00, 'Srivilliputhur', 'Ambatur', '2410070032', '50', '2', 'upload_files/candidate_tracker/74956392740_CV2024100311562654.pdf', NULL, '1', '2024-10-07', 0, '', '3', '59', '2024-10-14', 180000.00, '', '3', '2025-05-08', '1', 'Communication Ok Have 3 months exp in sales calling can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '2024-10-14', 1, '2024-10-07 09:08:00', 60, '2024-10-10 12:12:11', 0, NULL, 1),
(22126, 'Suvitha C', '6', '6385646022', '', 'ammu92281@gmail.com', '2002-03-05', 22, '2', '2', 'Chinnasamy', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Madurai', 'Ambatur, Chennai', '2410070033', '50', '1', 'upload_files/candidate_tracker/63898433699_SUVITHAC4.pdf', NULL, '1', '2024-10-07', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate very interest for it job only just looking for sales  so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-07 09:08:01', 104, '2024-10-07 06:52:20', 0, NULL, 1),
(22127, 'Likith. T. N', '13', '9844585865', '', 'likithram0803@gmail.com', '2003-03-08', 21, '3', '2', 'Nagaraj', 'Farmer', 20000.00, 1, 0.00, 350000.00, 'Bangarpet, karnataka', 'Bangarpet', '2410070034', '', '1', 'upload_files/candidate_tracker/23980239099_Likith01.pdf', NULL, '1', '2024-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-07 09:12:40', 1, '2024-10-07 09:20:10', 0, NULL, 1),
(22128, 'Fariza.A', '6', '9025051422', '', 'farizathasliem@gmail.com', '2001-07-27', 23, '2', '2', 'Shamiem A', 'Tailor', 70000.00, 2, 0.00, 2.30, 'Uthangarai', 'Velachery', '2410070035', '50', '1', 'upload_files/candidate_tracker/42339682901_FarizaResume.pdf', NULL, '1', '2024-10-07', 0, '', '3', '59', '2024-10-14', 168000.00, '', '5', '1970-01-01', '2', 'communication ok can be trained in our roles need to check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '2024-10-14', 1, '2024-10-07 09:25:45', 60, '2024-10-10 12:10:26', 0, NULL, 1),
(22129, 'Kaviya priya srinivasan', '11', '7339319232', '8825924698', 'kaviyapriyasrinivasan1534@gmail.com', '2001-02-04', 23, '2', '2', 'Srinivasan R', 'Black smith', 15000.00, 1, 0.00, 20000.00, 'THANJAVUR', 'THANJAVUR', '2410070036', '1', '1', 'upload_files/candidate_tracker/26605546296_KAVIYAPRIYARESUME.pdf', NULL, '1', '2024-10-07', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she was looking for sales and HR role had diff expeirence sutainability issue', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2024-10-07 09:41:48', 104, '2024-10-08 09:23:17', 0, NULL, 1),
(22130, 'K Vijaya Kumari', '4', '9962129032', '6382057632', 'vijisharon97@gmail.com', '1995-09-20', 29, '3', '2', 'Kondaiah', 'Production', 40.00, 1, 25.00, 25.00, 'Chennai', 'Chennai', '2410070037', '', '2', 'upload_files/candidate_tracker/32842595168_Imagetopdf03Jul2024.pdf', NULL, '1', '2024-10-07', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'karthika team, esales', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-10-07 09:48:25', 60, '2024-10-17 07:35:32', 0, NULL, 1),
(22131, 'Priyanka.D', '11', '7904790524', '', 'Priyadurai425@gmail.com', '2000-11-28', 23, '6', '2', 'R.Durai', 'Student', 200000.00, 0, 18000.00, 18000.00, 'Saagar apts,paneer nagar,mogappair,chennai', 'Saagar apts,paneer nagar,mogappair,chennai', '2410070038', '', '2', 'upload_files/candidate_tracker/82375353929_PriyankaDResume11.pdf', NULL, '1', '2024-10-07', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'experience in diff domain currently pursuing Human resource management. Had no knowledge about hr', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-10-07 11:21:55', 104, '2024-10-07 05:45:09', 0, NULL, 1),
(22132, 'Prithish', '33', '9150298968', '', 'prithishprithish609@gmail.com', '2004-07-29', 20, '2', '2', 'Kumaresan', 'driver', 200000.00, 1, 0.00, 18000.00, 'kanchipuram', 'chennai, pattravakam', '2410070039', '50', '1', 'upload_files/candidate_tracker/72361917992_Prithish1.pdf', NULL, '1', '2024-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-07 12:40:53', 1, '2024-10-07 12:44:33', 0, NULL, 1),
(22133, 'M.sivanantham', '4', '7639835387', '9790303756', 'murugananthamsiva637@gmail.com', '2001-07-06', 23, '2', '2', 'Devasena', 'Housewife', 25000.00, 1, 15000.00, 20000.00, 'Kumbakonam', 'Kumbakonam', '2410080001', '1', '2', 'upload_files/candidate_tracker/19656809923_Resume..pdf', NULL, '1', '2024-10-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Nit fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-08 03:58:57', 104, '2024-10-08 05:50:04', 0, NULL, 1),
(22134, 'Kaviya. E', '6', '9176838947', '6374406139', 'kaviyavenish147@gmail.com', '2001-11-04', 22, '3', '2', 'Gayathrileena. E', 'Team leader', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2410080002', '', '1', 'upload_files/candidate_tracker/42998995278_DocumentfromKavs.pdf', NULL, '1', '2024-10-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-08 04:28:29', 1, '2024-10-08 04:59:55', 0, NULL, 1),
(22135, 'Mukesh Saravanan', '6', '9597002661', '9597802661', 'mukeshgomail@gmail.com', '1997-03-21', 27, '2', '2', 'Sekar k', 'Grocery shop.', 30000.00, 2, 240000.00, 300000.00, 'ponneri', 'ponneri', '2410080003', '57', '2', 'upload_files/candidate_tracker/19581299516_MukeshResume.pdf', NULL, '1', '2024-10-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not worth of his asking salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-08 04:42:43', 104, '2024-10-08 05:52:17', 0, NULL, 1),
(22136, 'Mukesh Kumar M', '13', '8825606988', '', 'mmukeshkum4r@gmail.com', '2002-03-26', 22, '3', '2', 'Manikandan', 'Plumber', 100000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2410080004', '', '2', 'upload_files/candidate_tracker/82510372848_MukeshResume.pdf', NULL, '1', '2024-10-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-08 04:46:50', 1, '2024-10-08 04:51:41', 0, NULL, 1),
(22137, 'sarathi', '6', '8939219747', '9710187055', 'lovelySarathi321@gmail.com', '2003-05-27', 21, '2', '2', 'sundharraj', 'daily wages', 200000.00, 1, 14.00, 18.00, 'nandanam', 't nager', '2410080005', '1', '2', 'upload_files/candidate_tracker/19148269928_CV2024092320151486.pdf', NULL, '1', '2024-10-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candiate communication and voice is good , very low family backround , past exp for insurance and loans , exp is 15 to 16 k salary  so try for 7 days training periods  ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-08 04:50:15', 104, '2024-10-08 05:52:52', 0, NULL, 1),
(22138, 'meena', '6', '6383014176', '9789022105', 'meenameenukutty5757@gmail.com', '2000-12-16', 23, '2', '1', 'saravanan', 'manager', 50.00, 1, 20000.00, 25000.00, 'chennai', 'chenna', '2410080006', '56', '2', 'upload_files/candidate_tracker/45287280048_DOC20230428WA0001..pdf', NULL, '1', '2024-10-08', 5, '', '3', '59', '2024-10-14', 192000.00, '', NULL, '2025-03-25', '2', 'Communication Ok Can be trained in our roles need to check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-10-14', 1, '2024-10-08 04:56:45', 60, '2024-10-10 04:26:59', 0, NULL, 1),
(22139, 'V.shruthi bai', '5', '8925146490', '9159654960', 'Parvatharajasolutions@gmail.com', '1995-04-21', 29, '2', '1', 'P.vengoparao', 'Purchase manager', 40000.00, 1, 30000.00, 35000.00, 'Villivakkam', 'Villivakkam', '2410080007', '57', '2', 'upload_files/candidate_tracker/16536918151_Shruthiresume2024.pdf', NULL, '1', '2024-10-08', 5, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-10-08 05:22:06', 104, '2024-10-08 05:51:38', 0, NULL, 1),
(22140, 'Pooja s', '23', '6379929543', '', 'poojasubramaniyan26@gmail.com', '2003-08-12', 21, '3', '2', 'K.Subramaniyan', 'Farmer', 20000.00, 2, 0.00, 18000.00, 'Cuddalore', 'Chennai', '2410080008', '', '1', 'upload_files/candidate_tracker/91384622196_poojaresuMea.pdf', NULL, '1', '2024-10-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-08 05:35:07', 1, '2024-10-08 05:55:33', 0, NULL, 1),
(22141, 'M.VIJAYALAKSHMI', '23', '9342623307', '9047716918', 'vijimurugan840@gmail.com', '2004-04-09', 20, '3', '2', 'D.MURUGAN', 'Farmer', 80000.00, 1, 0.00, 25000.00, 'No,89,naidu street,Villupuram -604210', 'No:73,Nsk street,puzhal,Chennai -600066', '2410080009', '', '1', 'upload_files/candidate_tracker/49109835668_Document61.pdf', NULL, '1', '2024-10-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-08 05:35:49', 1, '2024-10-08 05:57:54', 0, NULL, 1),
(22142, 'Kanagalakshmi', '13', '8870791896', '6374989618', 'Kanagalakshmi4306@gmail.com', '2004-10-06', 20, '3', '2', 'M.Ravi', 'Carpenter', 20000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2410080010', '', '1', 'upload_files/candidate_tracker/87071141778_kanagalakshmiresume.pdf', NULL, '1', '2024-10-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-08 05:36:05', 1, '2024-10-08 05:48:45', 0, NULL, 1),
(22143, 'Lokesh sv', '23', '7810081636', '6380073199', 'svalokesh@gmail.com', '2002-11-19', 21, '3', '2', 'Venkatesan', 'Real estate business', 30000.00, 1, 0.00, 30000.00, 'Pattabiram, Chennai', 'Pattabiram, Chennai', '2410080011', '', '1', 'upload_files/candidate_tracker/32307657099_lokifinalresume.pdf', NULL, '1', '2024-10-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-08 05:36:09', 1, '2024-10-08 05:43:33', 0, NULL, 1),
(22144, 'Sabibulla', '13', '6374989618', '8870791896', 'sabibulla4349@gmail.com', '2002-05-16', 22, '3', '2', 'Kamitha bevi', 'Houses wife', 18000.00, 1, 0.00, 18000.00, 'Adirampattinam', 'anna Nagar chennai', '2410080012', '', '1', 'upload_files/candidate_tracker/31999110553_sabibulla.pdf', NULL, '1', '2024-10-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-08 05:36:19', 104, '2024-10-08 12:01:12', 0, NULL, 1),
(22145, 'Abinesh', '6', '9360433123', '', 'abi140636@gmail.com', '2002-05-25', 22, '2', '2', 'Iyyappan. A', 'Tailor', 30000.00, 1, 0.00, 18000.00, 'Tiruppur', 'Saidapet', '2410080013', '45', '1', 'upload_files/candidate_tracker/88040881608_Abineshresume.docx', NULL, '1', '2024-10-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected -already  have experience in vizza  and explained about plans ,also having bike and interested  in immediate joining  and we shall provide  16k as salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-08 06:00:34', 104, '2024-10-08 05:50:43', 0, NULL, 1),
(22146, 'Keerthik', '6', '8270338809', '6381567307', 'arumugamkeerthik@gmail.com', '2002-11-11', 21, '2', '2', 'Arumugam', 'Cpcl ( labour)', 15000.00, 1, 0.00, 17000.00, 'Thiruvottriyur', 'Thiruvottriyur', '2410080014', '50', '1', 'upload_files/candidate_tracker/64417435084_AdobeScanSep032024.pdf', NULL, '1', '2024-10-08', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not sitable for  ,lacking communication skills and interested in other jobs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-08 06:12:17', 104, '2024-10-08 05:52:39', 0, NULL, 1),
(22147, 'S.Aneesh Ashvat', '13', '9962335569', '9840541509', 's.aneeshashvat2193@gmail.com', '2001-11-03', 22, '3', '2', 'J Shivaji Ramesh', 'Ex Service Man', 40000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2410080015', '', '1', 'upload_files/candidate_tracker/85484861907_ResumeCN.pdf', NULL, '1', '2024-10-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-08 06:19:34', 1, '2024-10-08 06:48:29', 0, NULL, 1),
(22148, 'B Thai Pandian', '13', '9042589833', '', 'sciencehopeha@gmail.com', '2001-05-01', 23, '3', '2', 'Bala Krishna', 'Fish business', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2410080016', '', '1', 'upload_files/candidate_tracker/55067593633_Thaipandianresume2.pdf', NULL, '1', '2024-10-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-08 06:19:36', 1, '2024-10-08 06:45:11', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22149, 'Nikhil R', '13', '9094905993', '', 'nikhilnr293@gmail.com', '2000-07-05', 24, '3', '2', 'Ramesh M', 'Accounts', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2410080017', '', '1', 'upload_files/candidate_tracker/94702243614_nikhil222resume2024.pdf', NULL, '1', '2024-10-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-08 06:19:45', 1, '2024-10-08 06:45:12', 0, NULL, 1),
(22150, 'Prabhakaran', '6', '9080702399', '7401055526', 'prabhakaran0411@gmail.com', '1997-11-04', 26, '2', '2', 'Parent', 'Chennai corporation', 25.00, 1, 0.00, 18.00, 'CHENNAI', 'CHENNAI', '2410080018', '50', '1', 'upload_files/candidate_tracker/34728020178_RESUMEkannan.pdf', NULL, '3', '2024-10-08', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication And performance is not good also his voice is low ,then recently recovered from accident, So Sustainable Is doubt ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-10-08 06:41:24', 104, '2024-10-08 05:53:05', 0, NULL, 1),
(22151, 'Sandhiya p', '6', '8428992057', '6382913704', 'sandhiyaprabhu223@gmail.com', '2002-03-22', 22, '2', '1', 'Tamil', 'Driver', 20000.00, 0, 16000.00, 20000.00, 'Purasaiwalkam', 'Kolathur', '2410080019', '1', '2', 'upload_files/candidate_tracker/40223056974_SANDHIYAP.pdf', NULL, '1', '2024-10-09', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-10-08 07:04:15', 104, '2024-10-09 04:48:27', 0, NULL, 1),
(22152, 'Sanjeev J', '6', '6383875837', '9566881004', 'jagdesshsanjeev333@gmail.com', '2001-06-14', 23, '2', '2', 'jagadeesh kumar a', 'retired Central Government', 45000.00, 1, 0.00, 14.00, 'gudiyattam vellore district', 'chennai arumbakkam', '2410080020', '50', '1', 'upload_files/candidate_tracker/18425102856_SanjeevsResume.pdf', NULL, '1', '2024-10-14', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate voice and communication not good and not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-08 07:11:27', 104, '2024-10-14 05:53:12', 0, NULL, 1),
(22153, 'Kaaviya Priya T', '6', '7305832926', '', 'kaaviyapriya172004@gmail.com', '2004-06-17', 20, '2', '2', 'Thirukumar.R', 'Electrician', 20000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2410080021', '1', '1', 'upload_files/candidate_tracker/47422495983_document.pdf', NULL, '1', '2024-10-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, in hand 13k immediate joining', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-10-08 07:25:36', 104, '2024-10-08 05:51:57', 0, NULL, 1),
(22154, 'Nithiya.M', '2', '6379509990', '', 'nithyanithya1004@gmail.com', '2001-08-18', 23, '3', '2', 'Manmathasamy', 'Ex -Driver', 250000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Chennai', '2410080022', '', '1', 'upload_files/candidate_tracker/93244282265_NITHIYA1.pdf', NULL, '1', '2024-10-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-08 07:30:49', 1, '2024-10-08 07:35:10', 0, NULL, 1),
(22155, '', '0', '9344742877', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410080023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-08 07:53:27', 0, NULL, 0, NULL, 1),
(22156, '', '0', '9962466401', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410080024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-08 07:53:27', 0, NULL, 0, NULL, 1),
(22157, '', '0', '6382256855', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410080025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-08 07:53:28', 0, NULL, 0, NULL, 1),
(22158, 'Ramya.m', '5', '7288957367', '7975331850', 'ramyalovely38@gmail.com', '2001-07-14', 23, '2', '2', 'Annapurna', 'Home maker', 50000.00, 1, 30000.00, 30000.00, 'Andhra Pradesh', 'Banglore', '2410080026', '1', '2', 'upload_files/candidate_tracker/12156536936_ramya2.docx', NULL, '1', '2024-10-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-10-08 09:10:09', 1, '2024-10-08 09:22:21', 0, NULL, 1),
(22159, 'Swathi p', '5', '9398585237', '9398075223', 'swathipasupuleti1997@gmail.com', '1997-05-25', 27, '2', '2', 'Ramachandra', 'Farmer', 50000.00, 2, 30000.00, 30000.00, 'Andhra Pradesh', 'Banglore', '2410080027', '1', '2', 'upload_files/candidate_tracker/18218005124_swathi.docx', NULL, '1', '2024-10-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-10-08 09:10:14', 1, '2024-10-08 09:21:51', 0, NULL, 1),
(22160, 'priya g m', '6', '6361335689', '', 'priyagn321@gmail.com', '2000-03-28', 24, '2', '2', 'manjunath', 'farmer', 50000.00, 1, 23000.00, 25000.00, 'tumkur bangalore', 'madiwala bangalore', '2410080028', '1', '2', 'upload_files/candidate_tracker/72242131317_NewDoc1008202415.29.pdf', NULL, '1', '2024-10-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-10-08 09:11:17', 1, '2024-10-08 10:30:43', 0, NULL, 1),
(22161, 'GUMMIDIPUNDI GOPI', '7', '9391901860', '9494080228', 'gopiofficial444@gmail.com', '2001-08-04', 23, '2', '2', 'GUMMIDIPUNDI RAJA', 'Farmer', 20000.00, 2, 0.00, 320000.00, 'Tada', 'Tada', '2410080029', '1', '1', 'upload_files/candidate_tracker/69747212026_GGopiResume11.pdf', NULL, '1', '2024-10-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-10-08 01:07:20', 104, '2024-10-09 04:46:43', 0, NULL, 1),
(22162, '', '0', '7349713965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410080030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-08 01:31:54', 0, NULL, 0, NULL, 1),
(22163, 'Ajmeer s', '6', '9791130267', '6369350614', 'ajuajmeer68@gmail.com', '2000-08-18', 24, '2', '2', 'Sara Banu Sadiq Basha', 'Tailer', 25.00, 1, 0.00, 20.00, 'Tattan Kulam Street, Old Washermenpet, Chennai -21', 'Tattan Kulam Street, Old Washermenpet, Chennai -21', '2410090001', '50', '1', 'upload_files/candidate_tracker/45957773105_AjmeerResumepdf.pdf', NULL, '1', '2024-10-09', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected - not having interest in sales, just atteneded the interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-09 04:56:28', 104, '2024-10-09 04:48:59', 0, NULL, 1),
(22164, 'Irenelilly C', '6', '8838621580', '9380234866', 'irenelilly9@gmail.com', '2001-10-20', 22, '2', '2', 'Carmel wencelaus S', 'Business', 20000.00, 1, 0.00, 15000.00, 'Ayanavaram', 'Ayanavarqm', '2410090002', '27', '1', 'upload_files/candidate_tracker/20065718946_CopyofIreneLilly2024092912575700001727627764611Irenelilly.C.pdf', NULL, '1', '2024-10-09', 0, '', '3', '59', '2024-10-14', 175800.00, '', NULL, '2024-11-12', '2', 'Communication Good Have several health issues she was into psychatric treatment short temper over thinker need to scrutinize in 7 days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-10-14', 1, '2024-10-09 04:57:06', 60, '2024-10-10 02:43:37', 0, NULL, 1),
(22165, 'Abirami', '13', '8300409251', '9751616387', 'abiramis0506@gmail.com', '2003-06-05', 21, '6', '2', 'Senthilkumar', 'Farmer', 10000.00, 2, 0.00, 30000.00, 'Chennai', 'Chennai', '2410090003', '', '1', 'upload_files/candidate_tracker/45447863541_AbiramiResume1.pdf', NULL, '1', '2024-10-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-09 05:07:37', 1, '2024-10-09 05:16:04', 0, NULL, 1),
(22166, 'Gomathi P', '6', '9150355720', '', 'kmkomathi143@gmail.com', '2002-08-29', 22, '2', '2', 'Pushpalingam P', 'Fisherman', 30000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chennai', '2410090004', '50', '1', 'upload_files/candidate_tracker/70369571326_GOMATHIResume.pdf', NULL, '1', '2024-10-09', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested in sales and looking for another job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-09 05:10:47', 104, '2024-10-09 04:50:11', 0, NULL, 1),
(22167, 'Mukesh C', '13', '9444716971', '', 'mukeshdeveloper22@gmail.com', '1997-03-22', 27, '3', '2', 'Mohan babu', 'Accounts in Belated Hotel', 15000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2410090005', '', '1', 'upload_files/candidate_tracker/46927008939_DocumentfromMukesh.pdf', NULL, '1', '2024-10-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-09 05:16:37', 104, '2024-10-09 10:51:27', 0, NULL, 1),
(22168, 'Udhayakumar R', '6', '6379471306', '9790550312', 'udhayakumarrk2003@gmail.com', '2003-06-03', 21, '2', '2', 'Radhakrishnan u', 'no', 180000.00, 4, 0.00, 15000.00, 'Chennai', 'chennai', '2410090006', '34', '1', 'upload_files/candidate_tracker/83554670764_udhayaresume.pdf', NULL, '1', '2024-10-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-10-09 05:28:49', 104, '2024-10-09 04:46:59', 0, NULL, 1),
(22169, 'Muthuraja A', '6', '9360823898', '', 'raj936082@gmail.com', '2002-06-06', 22, '2', '2', 'Ayyavu', 'Farmer', 12.00, 3, 0.00, 13000.00, 'Triplicane', 'Triplicane', '2410090007', '50', '1', 'upload_files/candidate_tracker/10030854778_CV20230301115249241.pdf', NULL, '1', '2024-10-09', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-10-09 05:48:48', 104, '2024-10-09 04:45:38', 0, NULL, 1),
(22170, 'Victoria', '20', '9884290655', '', 'wvictoria9884@gmail.com', '2001-02-26', 23, '3', '2', 'Williams', 'Daily wages', 12000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2410090008', '', '1', 'upload_files/candidate_tracker/56712492267_Resume.pdf', NULL, '3', '2024-10-09', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected -not having interest in sales and having low communication skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-09 05:49:46', 104, '2024-10-09 07:03:18', 0, NULL, 1),
(22171, 'PORKODI A', '6', '6379775529', '', 'porkodialfones131@gmail.com', '2002-04-26', 22, '3', '2', 'Alfones I', 'Self employed', 12000.00, 2, 0.00, 18000.00, '41/122 nattu muthu street teynampet', '41/122 nattu muthu street teynampet', '2410090009', '', '1', 'upload_files/candidate_tracker/14678746588_porkodiresumepdf.pdf', NULL, '3', '2024-10-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-09 05:50:52', 104, '2024-10-09 12:37:34', 0, NULL, 1),
(22172, 'Sanjay Mano', '6', '9790758369', '', 'sanjaymano2003.sm@gmail.com', '2003-10-10', 20, '2', '2', 'Santhana Krishnan', 'Royal Enfield contract worker', 15000.00, 1, 0.00, 20000.00, '45/24 3rd Street Shanmugapuram Thiruvottiyur ch-19', '45/24 3rd Street Shanmugapuram tiruvottiyur ch-19', '2410090010', '1', '1', 'upload_files/candidate_tracker/45097354566_Sanjaymano.doc', NULL, '1', '2024-10-09', 0, '', '3', '59', '2024-10-14', 192000.00, '', '3', '2024-12-31', '2', 'Communication Ok candidate not much comfort in telecalling 5050 as he is ok with the profile we are proceeding', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '2024-10-14', 1, '2024-10-09 06:06:51', 60, '2024-10-12 03:55:59', 0, NULL, 1),
(22173, 'Rishi Kumar', '5', '8296390221', '9620708478', 'rishikumar924348@gmail.com', '2002-08-15', 22, '2', '2', 'Nagamma', 'Entrepreneur', 40000.00, 1, 26500.00, 30000.00, 'Kudlu gate', 'Kudlu gate', '2410090011', '1', '2', 'upload_files/candidate_tracker/52084063706_RISHIKUMARRESUME1.pdf', NULL, '1', '2024-10-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate 2month only have experience in policy bazzar and previous one year own business he is expecting 3.8lac but suggested 3.2lac max and immediate joining', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '1970-01-01', 1, '2024-10-09 06:26:09', 60, '2024-10-10 02:49:02', 0, NULL, 1),
(22174, 'Grace Christon', '13', '8056292612', '', 'Christongrace54@gmail.com', '1996-05-02', 28, '3', '2', 'Benadict', 'Business', 700000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2410090012', '', '1', 'upload_files/candidate_tracker/2449067136_GraceChristonResumebesant2.docx', NULL, '1', '2024-10-09', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-09 06:36:56', 104, '2024-10-09 12:20:36', 0, NULL, 1),
(22175, 'Sripriya', '6', '8608533430', '', 'sripriya2835@gmail.com', '1998-01-05', 26, '2', '1', 'Selvam', 'Building contractor', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2410090013', '50', '1', 'upload_files/candidate_tracker/19014631038_SriPriya2.pdf', NULL, '1', '2024-10-09', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected - not ok with salary of ours and timing', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-09 06:37:12', 104, '2024-10-09 04:48:46', 0, NULL, 1),
(22176, 'Preethi', '32', '9962938069', '9941678779', 'Preethiparameshwari22@gmail.com', '2000-10-25', 23, '3', '2', 'Pachaiyappan', 'Builder', 45000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2410090014', '', '2', 'upload_files/candidate_tracker/57131893185_ede1a0d7be594828bbcb2a079e1f9942.preethiresume.pdf', NULL, '1', '2024-10-01', 0, '', '3', '59', '2024-10-18', 252000.00, '', NULL, '2025-05-25', '2', 'Ex employee rejoining again with the commitment to achieve 4L Business premium by End of M3', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '2024-10-18', 1, '2024-10-09 06:50:49', 60, '2024-10-17 05:19:15', 0, NULL, 1),
(22177, 'Suganthi', '4', '8682093145', '9677453142', 'Sungathi01@gmail.com', '2003-12-24', 20, '2', '2', 'Latha', 'Salon', 30000.00, 2, 0.00, 15000.00, 'Thirukkattupalli,micheal petti', 'Thanjavur', '2410090015', '1', '1', 'upload_files/candidate_tracker/6649056394_SuganthiEB9534.pdf', NULL, '1', '2024-10-14', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-09 07:18:47', 104, '2024-10-14 05:40:04', 0, NULL, 1),
(22178, 'Gopinath.R', '4', '9150188148', '', 'gopinathgopi04564@gmail.com', '2003-09-13', 21, '2', '2', 'Ramachandran.M,Jayasudha.R', 'Farmer', 30000.00, 2, 0.00, 15000.00, 'k. R. Puram ,mayiladuthurai', 'Mayiladuthurai', '2410090016', '1', '1', 'upload_files/candidate_tracker/97478364562_gopinathresume2.pdf', NULL, '1', '2024-10-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-09 07:18:49', 104, '2024-10-09 04:46:18', 0, NULL, 1),
(22179, 'Mohamed safeef rahman', '4', '9150137357', '', 'safeef20@gmail.com', '2002-11-11', 21, '2', '2', 'Mujibur Rahman', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2410090017', '1', '1', 'upload_files/candidate_tracker/21951910330_Safeef1122.pdf', NULL, '1', '2024-10-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-09 07:19:26', 104, '2024-10-09 04:46:07', 0, NULL, 1),
(22180, 'Keerthana P', '6', '9025424594', '9566021561', 'keertha307@gmail.com', '2003-10-06', 21, '2', '2', 'Palani', 'Painter', 10000.00, 1, 15000.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2410090018', '1', '2', 'upload_files/candidate_tracker/26762889623_Keerthanaresume.docx', NULL, '1', '2024-10-09', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lets try 7 days then we will confirm ,ctc 16k', '5', '1', '', '1', '8', '', '2', '2024-10-17', '3', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-10-09 07:37:54', 104, '2024-10-09 04:47:34', 0, NULL, 1),
(22181, 'Rikish stone gold v s', '6', '8124087432', '9176259550', 'rikishstongold@gmail.com', '2000-05-16', 24, '2', '2', 'R.v.sabastian', 'A/c washing machine service engineer', 20000.00, 1, 0.00, 25000.00, 'Chetpet', 'Chetpet', '2410090019', '27', '1', 'upload_files/candidate_tracker/68643430567_821cc18cf9ef4f8f912083a3dabb9c11DOC20240914WA0020.3.pdf', NULL, '1', '2024-10-09', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication skills is good but , he is still studied higher degree sustainability doubt ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-09 07:52:19', 104, '2024-10-09 04:50:38', 0, NULL, 1),
(22182, 'Anto Alan.D', '6', '8939716708', '9500067711', 'antoalan61@gmail.com', '2001-01-06', 23, '2', '2', 'Daniel.A', 'Working in pharmacy', 15000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2410090020', '56', '1', 'upload_files/candidate_tracker/50936908571_antoresume2024.pdf', NULL, '1', '2024-10-09', 0, '', '3', '59', '2024-10-14', 192000.00, '', '4', '2025-01-25', '1', 'communication Ok Long Career Gap Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '2024-10-14', 1, '2024-10-09 08:55:03', 60, '2024-10-10 03:13:57', 0, NULL, 1),
(22183, 'Vaitheeswaran VS', '6', '9442287236', '9894018724', 'vsvwaran1997@gmail.com', '1997-10-03', 27, '2', '2', 'V Srinivasan', 'Tashildar', 95000.00, 1, 0.00, 20000.00, 'Villupuram', 'Poonamalee', '2410090021', '50', '1', 'upload_files/candidate_tracker/73445906053_AdobeScan18Jun2024.pdf', NULL, '1', '2024-10-09', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-09 09:04:42', 104, '2024-10-09 04:48:10', 0, NULL, 1),
(22184, 'S. Yashika', '7', '8015753736', '', 'yashika.syed95@gmail.com', '1995-12-01', 28, '3', '2', 'Syed', 'Business - Spare parts', 15000.00, 2, 23000.00, 30000.00, 'Chennai', 'Chennai', '2410090022', '', '2', 'upload_files/candidate_tracker/19874996128_YashikaResume.pdf', NULL, '1', '2024-10-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-09 09:09:48', 104, '2024-10-09 02:53:20', 0, NULL, 1),
(22185, 'siva kumar', '16', '8610797669', '9500850953', 'sivakumar000002@gmail.com', '2003-07-01', 21, '3', '2', 'k sekar', 'business', 250000.00, 1, 0.00, 3.00, 'ayanavaram chennai', 'Ayanavaram chennai', '2410090023', '', '1', 'upload_files/candidate_tracker/84593823392_downloadresume17Sep2420.35.58.pdf.pdf.pdf', NULL, '1', '2024-10-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-09 10:40:27', 1, '2024-10-09 10:54:59', 0, NULL, 1),
(22186, '', '0', '7373060219', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410090024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-09 11:37:23', 0, NULL, 0, NULL, 1),
(22187, '', '0', '9791100382', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410090025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-09 11:44:57', 0, NULL, 0, NULL, 1),
(22188, 'Karthikeyan K', '28', '6383907121', '', 'k4rthikeyank@gmail.com', '2002-09-17', 22, '3', '2', 'Krishnamurthy S', 'Technician', 20000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2410090026', '', '1', 'upload_files/candidate_tracker/37369247910_Karthikeyan.KCv.pdf', NULL, '1', '2024-10-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-10-09 12:46:28', 104, '2024-10-10 03:34:52', 0, NULL, 1),
(22189, 'D.porkumaram', '6', '9176948219', '8925349506', 'porkumaran2005@gmail.com', '2005-01-31', 19, '2', '2', 'Dhanapal', 'Auto driver', 1.50, 2, 0.00, 20000.00, '8/277,196th street ,Muthamizh nagar , kodungaiyur', '8/277,196th street ,Muthamizh nagar , kodungaiyur', '2410090027', '1', '1', 'upload_files/candidate_tracker/94978432862_Porkumaranresume.docx202410031353290000.pdf', NULL, '1', '2024-10-10', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And performance is not good also his voice is low and sustainable is doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2024-10-09 12:53:24', 104, '2024-10-10 03:43:10', 0, NULL, 1),
(22190, '', '0', '9342452520', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410090028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-09 01:34:36', 0, NULL, 0, NULL, 1),
(22191, 'LIZAPAMELA', '4', '9344249673', '9566445354', 'lizapamela999@gmail.com', '2001-09-08', 23, '2', '2', 'SEBASTIAN', 'FARMER', 15000.00, 1, 0.00, 15.00, '116,MAINROAD, KARAKKOTTAI, MANNARGUDI', 'KARAKKOTTAI', '2410100001', '1', '1', 'upload_files/candidate_tracker/61275736286_LIZAPAMELA.SEntryLevelResume01.pdf', NULL, '1', '2024-10-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-10 04:29:02', 104, '2024-10-10 03:34:27', 0, NULL, 1),
(22192, 'KishanKumar T', '6', '8247749897', '6383177022', 'kishantsm@gmail.com', '2001-06-08', 23, '2', '2', 'Komala M', 'Nutrition Assistant', 15000.00, 1, 23000.00, 18000.00, 'Thippasamudram, Vellore', 'Thippasamudram, Vellore', '2410100002', '45', '2', 'upload_files/candidate_tracker/75467113386_KishanKumarT1725086798203.pdf', NULL, '1', '2024-10-10', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not good at communication', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-10 04:39:19', 104, '2024-10-10 03:42:14', 0, NULL, 1),
(22193, 'Priyan P', '4', '9698986488', '9791817656', 'priyanperamaiyan@gmail.com', '2001-08-23', 23, '2', '2', 'Peramaiyan.N', 'Driver', 35000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2410100003', '1', '1', 'upload_files/candidate_tracker/43376919021_AdobeScan08Jun2024.pdf', NULL, '1', '2024-10-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-10 04:41:31', 104, '2024-10-10 03:34:37', 0, NULL, 1),
(22194, 'Hariharan R', '4', '8220820932', '9994309543', 'hariharan2432002@gmail.com', '2002-03-24', 22, '2', '2', 'V.Rengaraj', 'CNC operator', 25000.00, 1, 0.00, 14000.00, 'No.93 Abraham Pandithar nagar 4th Street Thanjavur', 'No.93 Abraham Pandithar nagar 4th Street Thanjavur', '2410100004', '1', '1', 'upload_files/candidate_tracker/69115779840_HARIHARANRESUME.pdf', NULL, '1', '2024-10-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-10 05:03:21', 104, '2024-10-10 03:34:10', 0, NULL, 1),
(22195, 'Lalitha', '6', '8778954759', '', 'Plalitha1311@gmail.com', '1997-11-13', 26, '2', '1', 'Naveen', 'Finance', 30000.00, 1, 15000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2410100005', '1', '2', 'upload_files/candidate_tracker/55247492089_Lalitharesumeconverted1.pdf', NULL, '1', '2024-10-10', 20, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-10 05:04:38', 104, '2024-10-10 12:02:25', 0, NULL, 1),
(22196, 'SINDUJA .V', '6', '9342606341', '7845517090', 'sinduvijayakumar2004@gmail.com', '2004-04-10', 20, '2', '2', 'Vijayakumar', 'Security', 20000.00, 1, 0.00, 20000.00, 'Adambakkam , Chennai', 'Adambakkam , Chennai', '2410100006', '1', '1', 'upload_files/candidate_tracker/67828414897_SINDUJA.CV1.pdf', NULL, '1', '2024-10-10', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-10-10 05:31:18', 104, '2024-10-10 03:41:26', 0, NULL, 1),
(22197, 'J.N. Usha Nandhini', '6', '7845517090', '9342606341', 'jnusha14@gmail.com', '2002-06-14', 22, '2', '2', 'Navalar Tamil', 'Daily wages', 19000.00, 2, 0.00, 20000.00, 'Adambakkam', 'Adambakkam', '2410100007', '1', '1', 'upload_files/candidate_tracker/43677443765_Resume.pdf', NULL, '1', '2024-10-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-10 05:32:10', 104, '2024-10-10 02:54:51', 0, NULL, 1),
(22198, 'D.Meganathan', '6', '9551082327', '6383563664', 'jithugnanam@gmail.com', '1995-12-12', 28, '2', '2', 'D.Uma', 'Cooli', 15000.00, 1, 17000.00, 16000.00, 'Poonamallee', 'Poonamallee', '2410100008', '50', '2', 'upload_files/candidate_tracker/89551055417_meganathan8.docx', NULL, '1', '2024-10-10', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-10 05:40:44', 104, '2024-10-10 03:41:08', 0, NULL, 1),
(22199, 'Pavithra', '6', '9360255545', '9578084844', 'pavithraramesh275@gmail.com', '2002-02-10', 22, '2', '2', 'Ramesh', 'Business', 3.50, 1, 0.00, 200000.00, 'Darmarajapuram street kalkovil alangayam.', 'Kodambakkam Chennai.', '2410100009', '57', '1', 'upload_files/candidate_tracker/96582177348_pavithraramesh2.pdf', NULL, '1', '2024-10-10', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candiate very long distance to come so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-10 05:40:59', 104, '2024-10-10 03:42:51', 0, NULL, 1),
(22200, 'Sowmiya', '6', '8754754470', '', 'lathasow03@gmail.com', '2002-04-14', 22, '2', '2', 'A.R Saravanan', 'Business', 20000.00, 1, 0.00, 200000.00, 'Vellore', 'Chennai', '2410100010', '57', '1', 'upload_files/candidate_tracker/94754817134_Resume.pdf', NULL, '1', '2024-10-10', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candiate need very hig salary and comuication aslo no wel so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-10 05:41:31', 104, '2024-10-10 03:42:40', 0, NULL, 1),
(22201, 'sakthinathan h', '16', '6385101398', '', 'sakthinathan398@gmail.com', '2000-12-04', 23, '2', '2', 'K. Harikrishnan', 'Real estate broken', 15000.00, 1, 0.00, 14000.00, 'Kalpakkam', 'Tharamani', '2410100011', '1', '1', 'upload_files/candidate_tracker/83430804413_SakthiNathanH3.pdf', NULL, '1', '2024-10-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-10-10 05:42:16', 104, '2024-10-10 03:39:49', 0, NULL, 1),
(22202, 'Antony Xavier Shelton at', '13', '8248025344', '', 'Sheltonfdo23@gmail.com', '2001-07-23', 23, '2', '1', 'Thommai siluvai', 'Driver', 40000.00, 2, 383000.00, 400000.00, 'Chennai', 'Chennai', '2410100012', '1', '2', 'upload_files/candidate_tracker/83075029441_AntonyResume1.pdf', NULL, '1', '2024-10-10', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-10 05:48:30', 104, '2024-10-10 12:10:24', 0, NULL, 1),
(22203, 'Sathish.k', '7', '9626019725', '', 'ksathish3220@gmail.com', '2002-10-28', 21, '3', '2', 'Katturaja', 'Daily wages', 2000.00, 1, 0.00, 22000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2410100013', '', '1', 'upload_files/candidate_tracker/636197190_sathishk01.pdf', NULL, '1', '2024-10-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-10-10 05:48:38', 104, '2024-10-10 03:40:18', 0, NULL, 1),
(22204, 'Dhinesh S', '6', '7904357103', '7305484506', 'Dinesheswari.19@gmail.com', '2004-03-19', 20, '2', '2', 'Eswari', 'Homemaker', 30000.00, 2, 0.00, 18000.00, 'chennai', 'chennai', '2410100014', '1', '1', 'upload_files/candidate_tracker/71268359629_DhineshCV1.pdf', NULL, '1', '2024-10-10', 0, '', '3', '59', '2024-10-14', 192000.00, '', '', '1970-01-01', '1', 'Communication Ok Fresher for our roles can give a try and train them\n', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-10-10 05:49:43', 104, '2024-10-10 03:40:43', 0, NULL, 1),
(22205, 'Bhuvaneshwari M', '6', '8122107558', '', 'bhuvaneshwari2777@gmail.com', '2004-07-20', 20, '2', '2', 'L.murali', 'Cooly', 8500.00, 1, 0.00, 15000.00, 'new washermenpet chennai -81', 'New washermenpet chennai -81', '2410100015', '50', '1', 'upload_files/candidate_tracker/16241082222_resume1.docx', NULL, '1', '2024-10-10', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not ok with salary  and company timing', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-10 06:02:38', 104, '2024-10-10 03:41:57', 0, NULL, 1),
(22206, 'LOGANATHAN R', '6', '9715126618', '', 'loganathandlk@gmail.com', '1995-04-20', 29, '2', '2', 'RAJ S', 'Farmer', 8000.00, 1, 0.00, 20000.00, 'Theni', 'Chennai, mugalivakkam', '2410100016', '50', '1', 'upload_files/candidate_tracker/87823913834_LoganathanRFrontendDeveloperresume.pdf', NULL, '1', '2024-10-10', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-10 06:04:52', 104, '2024-10-10 03:41:43', 0, NULL, 1),
(22207, 'G Sai Manoj Kumar', '5', '8121982568', '7093603098', 'smkmanoj199@gmail.com', '1999-04-29', 25, '2', '2', 'Madhavaiah', 'Farmer', 100000.00, 1, 18000.00, 25000.00, '2/99A Sanapa Anantapuram Andhra Pradesh 515751', '309 Seven Hills pg Narayana 560029', '2410100017', '1', '2', 'upload_files/candidate_tracker/33013759604_CVUpdated.pdf', NULL, '2', '2024-10-10', 0, '', '3', '59', '2024-11-08', 252000.00, '', '3', '2025-01-31', '2', 'Communication Ok Have exp but not in relevant and much of non voice and fund raising calla can give a try and check', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '2024-11-08', 1, '2024-10-10 06:06:21', 126, '2024-11-08 10:29:21', 0, NULL, 1),
(22208, 'Mohammed Meeran', '6', '8248391302', '8838406213', 'mohammedmeeran030@gmail.com', '2002-05-19', 22, '2', '2', 'N Abdul Wahab', 'Business', 25000.00, 3, 0.00, 15000.00, 'Kolathur', 'Kolathur', '2410100018', '56', '1', 'upload_files/candidate_tracker/8508266298_9d993c3e0d5a4ad6b79c98addaab9003Mohammed.docx', NULL, '1', '2024-10-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and convincing skill is good and will try training period kindly Update DOJ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-10 06:10:25', 104, '2024-10-10 03:43:19', 0, NULL, 1),
(22209, '', '0', '9363374689', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410100019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-10 06:39:15', 0, NULL, 0, NULL, 1),
(22210, 'Harish Balaji Narasimhan', '13', '6382602915', '9444489058', 'harishn605@gmail.com', '2000-12-26', 23, '3', '2', 'Narasimhan A', 'Retired', 25000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2410100020', '', '1', 'upload_files/candidate_tracker/59708503391_HarishBalajiNl.pdf', NULL, '1', '2024-10-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-10 06:43:57', 1, '2024-10-10 06:47:23', 0, NULL, 1),
(22211, 'Andrew Arul Pragasam R', '6', '7358605810', '9884510864', 'Andrew3x4@gmail.com', '2003-03-06', 21, '2', '2', 'Rajkumar', 'RO service technician', 98000.00, 0, 0.00, 15.00, 'T nagar, Chennai', 'T Nagar, Chennai', '2410100021', '50', '1', 'upload_files/candidate_tracker/19448287617_Resume.pdf', NULL, '1', '2024-10-12', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate future plan is it only and not interedt for sales field work so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-10 06:44:16', 104, '2024-10-12 04:07:29', 0, NULL, 1),
(22212, 'P Radhika', '6', '8220981424', '', 'rathirathi2870@gamil.com', '1998-06-26', 26, '2', '2', 'P Subashini', 'Nursing', 15000.00, 2, 150000.00, 20000.00, 'Tuticorin, kovilpatti', 'Saidapet, Chennai', '2410100022', '1', '2', 'upload_files/candidate_tracker/8157462334_RadhiiCVupdated.pdf', NULL, '1', '2024-10-10', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected-  not having better communication skills and lesser confidence', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-10 06:49:33', 104, '2024-10-10 03:42:30', 0, NULL, 1),
(22213, 'Sherine A', '30', '8667403692', '', 'sherineanbu@gmail.com', '2004-09-06', 20, '3', '2', 'Leema L', 'Teacher', 20000.00, 1, 0.00, 25000.00, 'Chetpet', 'Chennai', '2410100023', '', '1', 'upload_files/candidate_tracker/24970862954_SherineResume.pdf', NULL, '1', '2024-10-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '9', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-10 06:50:17', 1, '2024-10-10 06:53:20', 0, NULL, 1),
(22214, 'J Tabrez', '6', '9150264148', '', 'tab786zer@gmail.com', '2001-11-29', 22, '2', '2', 'A S Jalal', 'Gold Smith', 30000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2410100024', '50', '2', 'upload_files/candidate_tracker/13539413224_NAUKRITABREZ.pdf', NULL, '1', '2024-10-10', 0, '', '3', '59', '2024-10-14', 210000.00, '', '5', '1970-01-01', '2', 'Communication OK Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2024-10-14', 1, '2024-10-10 06:53:14', 60, '2024-10-12 06:44:39', 0, NULL, 1),
(22215, 'Bhavani k', '6', '9025479771', '9342558860', 'www.divadhanam1114@gmail.com', '2002-10-05', 22, '2', '1', 'Diwakar', 'Driver', 20000.00, 1, 0.00, 16000.00, 'Triplicane', 'Triplicane', '2410100025', '50', '1', 'upload_files/candidate_tracker/30930689597_bhavani.pdf', NULL, '1', '2024-10-10', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is unfit for sales,married 1yr kid have.time issues. reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-10-10 06:57:07', 104, '2024-10-10 03:40:53', 0, NULL, 1),
(22216, 'Lidiya c', '30', '9346374689', '', 'lidiyalidiya1357@gmail.com', '2004-01-13', 20, '4', '2', 'Channaparaj', 'House cleaning service', 15000.00, 2, 0.00, 25000.00, 'Kallakurichi', 'Chennai', '2410100026', '', '1', 'upload_files/candidate_tracker/44772547032_CV2024052119563265.pdf', NULL, '1', '2024-10-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '9', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-10 06:57:28', 1, '2024-10-10 07:00:22', 0, NULL, 1),
(22217, 'gokula prasanth', '2', '6383979629', '6369370459', 'gokulprashanth1516@gmail.com', '2000-10-06', 24, '3', '2', 'ragothaman - thalaiyalnayagi', 'carpenterer', 30000.00, 1, 0.00, 450000.00, 'puducherry', 'chennai', '2410100027', '', '1', 'upload_files/candidate_tracker/42135345786_gkresumenew..pdf', NULL, '1', '2024-10-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-10 06:58:06', 1, '2024-10-10 07:01:07', 0, NULL, 1),
(22218, 'Shanmugam I', '6', '8778387547', '7339156579', 'shanmugamiyappan18@gmail.com', '2002-06-18', 22, '2', '2', 'Iyappan.K', 'Business', 25000.00, 1, 0.00, 20000.00, 'Anna Nagar West, Chennai', 'Anna Nagar West, Chennai', '2410100028', '50', '1', 'upload_files/candidate_tracker/83964595782_myresume202409040244140000.pdf', NULL, '1', '2024-10-14', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Performance Is Not Good ,But His Communication is Ok.Candidate Injured Via Accident,Also Have Spinal Issue, Sustainable is Doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-10-10 09:30:08', 104, '2024-10-14 05:54:37', 0, NULL, 1),
(22219, '', '0', '6474645591', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410100029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-10 10:49:01', 0, NULL, 0, NULL, 1),
(22220, 'Vanmathi. M', '6', '6374645591', '9087953288', 'Vanmathimekala@gmail.com', '2003-07-18', 21, '2', '2', 'Tamil iraivan', 'Retried teacher', 25000.00, 1, 0.00, 14000.00, '3 madhavapuram west street alandur chennai', '3 madhavapuram west street alandur chennai', '2410100030', '57', '1', 'upload_files/candidate_tracker/45629660380_cv151718953102255.pdf', NULL, '1', '2024-10-10', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not ok with the job and\nsalary ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-10 10:49:42', 104, '2024-10-10 04:33:34', 0, NULL, 1),
(22221, 'S. Vijaykumar', '6', '8939208434', '', 'Vijay080899@gmail.com', '1999-08-08', 25, '2', '2', 'Selvi. S / N. Sankar', 'No', 20000.00, 2, 0.00, 18500.00, 'Chennai', 'Chennai', '2410100031', '1', '1', 'upload_files/candidate_tracker/95867607177_VijayKumarResume1.pdf', NULL, '1', '2024-10-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-10-10 01:10:55', 104, '2024-11-12 04:24:18', 0, NULL, 1),
(22222, 'Indhumathi', '6', '7448613629', '', 'indhugerci123456@gmail.com', '2002-05-21', 22, '2', '2', 'Gopinath', 'Loadman', 15000.00, 1, 0.00, 2.10, 'Chennai,mint', 'Mint', '2410110001', '1', '1', 'upload_files/candidate_tracker/95529232726_CV202409241632571.pdf', NULL, '1', '2024-10-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too slow', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-10-11 03:23:22', 104, '2024-10-14 05:44:08', 0, NULL, 1),
(22223, 'R.Neelambari', '6', '9360438021', '9566114596', 'neelambariraja88@gmail.com', '2001-10-20', 22, '2', '2', 'Rajalaksmi', 'Home maker', 1.00, 1, 15000.00, 17000.00, 'Triplicane Chennai', 'Triplicane Chennai', '2410120001', '50', '2', 'upload_files/candidate_tracker/60686784304_R.NeelambariResume.pdf', NULL, '1', '2024-10-12', 0, '', '3', '59', '2024-10-24', 204000.00, '', '', '2024-11-07', '2', 'Communication Ok Can give a try and check in 7 days training  have exp in calling', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-10-24', 1, '2024-10-12 04:37:54', 60, '2024-10-23 07:03:09', 0, NULL, 1),
(22224, 'Sunil Kumar A', '6', '8754638455', '9976551435', 'smartsunil0909@gmail.com', '2003-09-09', 21, '2', '2', 'Anandaraj', 'Daily Wages', 15000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2410120002', '27', '1', 'upload_files/candidate_tracker/80908397647_RESUME.pdf', NULL, '1', '2024-10-12', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skill is low and then he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-12 04:46:00', 104, '2024-10-12 04:07:39', 0, NULL, 1),
(22225, 'D. Karthick', '33', '9791938241', '9976004191', 'karthickkarthick8106@gmail.com', '2001-06-11', 23, '4', '2', 'M. Dhanabalan', 'Gold smith', 20000.00, 3, 0.00, 15000.00, 'Pudukkottai', 'Pudukkottai', '2410120003', '', '1', 'upload_files/candidate_tracker/30535304454_DOC20241004WA0004..pdf', NULL, '1', '2024-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-12 05:18:20', 1, '2024-10-12 05:21:31', 0, NULL, 1),
(22226, 'Ayswarya priya.P', '4', '6374663727', '8870838296', 'priyaayswarya@gmail.com', '2002-10-02', 22, '2', '2', 'Poomanan.R', 'Junior assistant - retirement', 30000.00, 2, 9000.00, 11000.00, 'Kovilur', 'Thanjavur', '2410120004', '1', '2', 'upload_files/candidate_tracker/68092996179_CurriculamVitae1.docx', NULL, '1', '2024-10-12', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-12 05:55:48', 104, '2024-10-12 04:06:46', 0, NULL, 1),
(22227, '', '0', '9884510864', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410120005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-12 06:35:06', 0, NULL, 0, NULL, 1),
(22228, 'Dheivapriya S', '4', '9159225972', '9626693190', 'dheivapriya07@gmail.com', '2001-04-10', 23, '2', '1', 'Kavibharathi', 'Sales Executive', 20000.00, 1, 15000.00, 23000.00, 'Ariyalur', 'Ariyalur', '2410120006', '1', '2', 'upload_files/candidate_tracker/90565269493_CV2024100409563221.pdf', NULL, '1', '2024-10-12', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile...completed bsc in 2021...after 3 month working in chennai and 6months completed course in bfsi....and using the centre joined in hdfc.....loan insurance and CC cross selling...1 year experience and have propoer document....now home from office 38km,,,,,1 and half hour travel...she wants to relocate,,,,husband also sales field...expected 15 to 18....and have laptop and imeediate joining kindly cross check will try in training', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-12 06:41:03', 104, '2024-10-12 04:06:35', 0, NULL, 1),
(22229, '', '0', '7339135186', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410120007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-12 08:37:35', 0, NULL, 0, NULL, 1),
(22230, '', '0', '7349534417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410120008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-12 11:22:42', 0, NULL, 0, NULL, 1),
(22231, 'Harikishore', '4', '7339529519', '', 'harit8469@gmail.com', '2004-07-18', 20, '2', '2', 'Thennarasu', 'Driver', 120000.00, 0, 0.00, 20000.00, '112/1, chithathikadu, Pinnavasal, Peravurani', '112/1, chithathikadu, Pinnavasal, Peravurani', '2410120009', '1', '1', 'upload_files/candidate_tracker/10535425065_HARIRESUME.pdf', NULL, '1', '2024-10-14', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-12 02:02:15', 104, '2024-10-14 05:40:24', 0, NULL, 1),
(22232, 'Lokesh M', '11', '8778590276', '', 'lokesha2402f@gmail.com', '2003-08-10', 21, '3', '2', 'Murugesan m', 'Kooli', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2410120010', '', '1', 'upload_files/candidate_tracker/78035734699_resume.pdf202406010835200000.pdf202410092140340000.pdf', NULL, '1', '2024-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-12 02:22:03', 1, '2024-10-12 02:56:16', 0, NULL, 1),
(22233, '', '0', '7397693629', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410130001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-13 02:02:40', 0, NULL, 0, NULL, 1),
(22234, '', '0', '9840373485', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410130002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-13 05:31:05', 0, NULL, 0, NULL, 1),
(22235, 'Hariharan', '6', '9789127019', '9361335199', 'sharanramesh1971@gmail.com', '2003-04-10', 21, '2', '2', 'Ramesh', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2410140001', '50', '1', 'upload_files/candidate_tracker/1021076507_HariharanResumeNew.docx', NULL, '1', '2024-10-14', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected- communication skills not good ,low confidence and out of station', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-14 04:21:15', 104, '2024-10-14 05:49:19', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22236, 'Mohammed Uwais Arham M', '13', '9092859214', '8695064333', 'mandiuwais22@gmail.com', '2003-08-22', 21, '3', '2', 'Imtiyaz Ahmed M', 'Sales Executive', 18000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2410140002', '', '1', 'upload_files/candidate_tracker/93001449674_MohammedUwaisarhamresume.pdf', NULL, '1', '2024-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 04:42:20', 1, '2024-10-14 04:48:51', 0, NULL, 1),
(22237, 'Shren kumar', '4', '9360157956', '', 'shrenkumar2002@gmail.com', '2002-03-10', 22, '6', '2', 'Virushabadoss', 'Business', 30000.00, 1, 0.00, 2.50, 'Pondicherry', 'Chennai', '2410140003', '', '1', 'upload_files/candidate_tracker/38692115860_SHRENKUMAR.CV202408221905100000.pdf', NULL, '1', '2024-10-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 04:57:47', 1, '2024-10-14 05:07:47', 0, NULL, 1),
(22238, '', '0', '6379183468', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410140004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-14 05:16:40', 0, NULL, 0, NULL, 1),
(22239, 'abinav', '2', '8943781247', '9048998104', '8abinavg@gmail.com', '2001-05-20', 23, '3', '2', 'gangadharan mk', 'supervisor', 50000.00, 1, 0.00, 300000.00, 'palakkad kerala', 'palakkad', '2410140005', '', '1', 'upload_files/candidate_tracker/70529831988_ABINAVGpdf.pdf', NULL, '1', '2024-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 05:23:01', 1, '2024-10-14 05:28:15', 0, NULL, 1),
(22240, 'Rajesh M', '2', '6383163859', '9585259738', 'rajeshvjm10@gmail.com', '2003-02-13', 21, '3', '2', 'G.Manivannan', 'Tasmac', 11000.00, 1, 0.00, 200000.00, 'Nagapattinam', 'Nagapattinam', '2410140006', '', '1', 'upload_files/candidate_tracker/40264646280_RajeshResume3.pdf.pdf', NULL, '1', '2024-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 05:23:13', 1, '2024-10-14 05:28:37', 0, NULL, 1),
(22241, 'M Subramania pillai', '13', '7449196022', '9442785745', 'sudalaivillers@gmail.com', '1998-04-04', 26, '3', '2', 'S Murugan', 'Job seekers', 10000.00, 0, 0.00, 15000.00, 'Eraviputhoor, Nagercoil, kanniyakumari', 'Tambaram', '2410140007', '', '1', 'upload_files/candidate_tracker/3320683088_resume.pdf', NULL, '1', '2024-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 05:23:48', 1, '2024-10-14 05:33:32', 0, NULL, 1),
(22242, 'yukesh.v', '4', '9047521169', '9710629309', 'yukesh0103@gmail.com', '2003-01-01', 21, '6', '2', 'V.lella rani', 'trailor', 15000.00, 1, 0.00, 20000.00, 'chennai(t nagar)', 'chennai (t nagar)', '2410140008', '', '1', 'upload_files/candidate_tracker/44888934421_Yukeshresume20241.docx', NULL, '1', '2024-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 05:28:45', 1, '2024-10-14 05:51:50', 0, NULL, 1),
(22243, 'M.Vijay', '4', '9788193929', '', 'Vijaymanickam1818@email.com', '2003-04-08', 21, '2', '2', 'Manickam.k', 'Temple work', 12000.00, 0, 0.00, 15000.00, 'Karanthai Thanjavur', 'Karanthai Thanjavur', '2410140009', '1', '1', 'upload_files/candidate_tracker/41160794949_VIJAYRESUME..pdf', NULL, '1', '2024-10-14', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-14 05:35:13', 104, '2024-10-14 05:39:21', 0, NULL, 1),
(22244, 'Sasitha', '5', '9789049814', '9840154758', 'sasitha.itha@gmail.com', '1987-11-30', 36, '1', '1', 'Unni Krishnan.S', 'Voice process', 50000.00, 2, 25000.00, 35000.00, 'chennai- 600085', 'Chennai', '2410140010', '', '2', 'upload_files/candidate_tracker/66204089654_1725448507290SasithaResume.pdf', NULL, '1', '2024-10-14', 0, '77290', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-14 05:36:06', 104, '2024-10-14 11:30:19', 0, NULL, 1),
(22245, 'Thaiyalnayaki', '4', '6379183468', '', 'Yuvasrikannadasan04@gmail.com', '2009-10-14', 0, '2', '2', 'Kannadhasan', 'Farmer', 10000.00, 0, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2410140011', '1', '1', 'upload_files/candidate_tracker/12734799950_THAIYALNAYAKIRESUME1.pdf', NULL, '1', '2024-10-14', 0, '', '3', '59', '2024-10-21', 153000.00, '', '3', '2024-11-30', '2', 'Communication Ok Fresher for our roles need to check in 7 days training', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-10-21', 1, '2024-10-14 05:36:36', 60, '2024-10-17 06:50:10', 0, NULL, 1),
(22246, 'manigandan .c', '6', '9342362577', '9342573945', 'manigandanchander@gmail.com', '2004-05-26', 20, '3', '2', 'sumitha', 'housewife', 35000.00, 1, 0.00, 17000.00, 'pursawalakam', 'chennai', '2410140012', '', '1', 'upload_files/candidate_tracker/2508647462_MANIGANDANCHANDER1.pdf', NULL, '1', '2024-10-14', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'GOOD SKILL , FRESHER', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-10-14 05:42:40', 104, '2024-10-14 05:42:31', 0, NULL, 1),
(22247, 'Divya.C', '6', '9342573945', '9710186942', 'Divyashanthi1616@gmail.com', '2003-02-16', 21, '3', '2', 'Chenjaiyan.N', 'Contract worker', 15000.00, 1, 0.00, 15000.00, 'Thiruvottriyur ch 19', 'thiruvottriyur chennai 19', '2410140013', '', '1', 'upload_files/candidate_tracker/22660628322_Divyanewresume.pdf', NULL, '1', '2024-10-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '4', '6', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-14 05:43:08', 104, '2024-10-14 05:44:25', 0, NULL, 1),
(22248, 'E Ragul', '6', '7094354040', '9003958185', 'ragultn32@gmail.com', '2009-10-14', 0, '3', '2', 'Elumalai', 'Farmer', 14000.00, 0, 0.00, 18000.00, 'Villupuram', 'Chennai', '2410140014', '', '1', 'upload_files/candidate_tracker/75623623526_E.RAGULResume.pdf', NULL, '1', '2024-10-14', 0, '', '3', '59', '2024-10-23', 192000.00, '', '3', '2024-10-23', '1', 'Fresher need to train and check in 7 days training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-10-23', 1, '2024-10-14 05:43:14', 60, '2024-10-17 06:08:01', 0, NULL, 1),
(22249, 'Nithish J', '6', '7305632347', '', 'nithishj83@gmail.com', '2003-02-28', 21, '2', '2', 'Uma Devi', 'House keeping', 20000.00, 1, 0.00, 15000.00, 'Chinthadripet , chennai - 600002', 'Chinthadripet , Chennai - 600002', '2410140015', '56', '1', 'upload_files/candidate_tracker/93080962152_NithishResume.pdf', NULL, '1', '2024-10-14', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected- not interest in the sales having interest in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-14 05:44:21', 104, '2024-10-14 05:49:34', 0, NULL, 1),
(22250, 'Ramya.S', '6', '9884448648', '', 'gladysramya1504@gmail.com', '2004-01-15', 20, '3', '2', 'M.shanmugam', 'Metro water Field worker', 25000.00, 1, 0.00, 15000.00, 'Padi , Chennai', 'Padi, Chennai', '2410140016', '', '1', 'upload_files/candidate_tracker/71153131492_IMG20241014112549compressed11.pdf', NULL, '1', '2024-10-14', 0, '', '3', '59', '2024-10-23', 168000.00, '', '3', '2024-10-23', '2', 'Communication Ok Can give a try and check in 7 days training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-10-23', 1, '2024-10-14 05:44:27', 60, '2024-10-23 10:16:26', 0, NULL, 1),
(22251, 'Agilesh Sivakumar', '13', '7845632546', '', 'agileshsivakumar.s@gmail.com', '2001-01-15', 23, '3', '2', 'Sivakumar', 'Business', 30000.00, 1, 0.00, 25000.00, 'Tirupur', 'Tirupur', '2410140017', '', '1', 'upload_files/candidate_tracker/27184090677_AgileshSivakumarsResume.pdf', NULL, '1', '2024-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 05:44:55', 1, '2024-10-14 05:47:28', 0, NULL, 1),
(22252, 'abinash', '13', '6383164016', '', 'romanabi9346@gmail.com', '2003-11-15', 20, '6', '2', 'priyadharshini', 'works in sweetshop', 9000.00, 1, 0.00, 3.50, 'chennai', 'chennai', '2410140018', '', '1', 'upload_files/candidate_tracker/82298604599_ABINASHResume.pdf', NULL, '1', '2024-10-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-14 05:49:09', 104, '2024-10-14 11:27:56', 0, NULL, 1),
(22253, 'Prathipa.B.G', '6', '7397300181', '8939153435', 'Prathipagiri@gmail.com', '2002-04-24', 22, '2', '2', 'Giridharan', 'MTC Conductor', 40000.00, 1, 0.00, 15000.00, 'Mogappair East', 'Mogappair East', '2410140019', '1', '1', 'upload_files/candidate_tracker/78949209838_PrathipaResume.pdf', NULL, '1', '2024-10-14', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected ctc 14k speaks well', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-10-14 05:54:59', 104, '2024-10-14 05:41:47', 0, NULL, 1),
(22254, 'Muthukumar Karuppiah', '13', '8870538123', '', 'muthukumar69743@gmail.com', '2003-03-07', 21, '3', '2', 'Karuppiah Perumal', 'Driver', 15000.00, 0, 240000.00, 360000.00, 'Karaikudi', 'Koyambedu , chennai', '2410140020', '', '2', 'upload_files/candidate_tracker/73394259156_MuthukumarCV3compressed.pdf', NULL, '1', '2024-10-14', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-14 05:58:36', 104, '2024-10-14 11:59:47', 0, NULL, 1),
(22255, 'Abinaya M', '6', '6382075040', '', 'abhinaya1510@gmail.com', '2003-10-15', 20, '2', '2', 'Muthukutti', 'Coolie', 30000.00, 1, 0.00, 14000.00, 'Moggapir east', 'Mogappair east', '2410140021', '1', '1', 'upload_files/candidate_tracker/36571397935_WhiteSimpleStudentCVResume1.pdf', NULL, '1', '2024-10-14', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not at all speaking ,low interest', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-14 05:59:22', 104, '2024-10-14 05:49:49', 0, NULL, 1),
(22256, 'B. sindhu', '4', '6369876044', '', 'Sindhub2727@gmail.com', '2002-07-27', 22, '2', '2', 'V. Balasubramaniyan', 'Farmers', 72000.00, 1, 15000.00, 6.00, 'Mannargudi', 'Mannargudi', '2410140022', '1', '2', 'upload_files/candidate_tracker/17469723445_SINDHU.pdf', NULL, '1', '2024-10-14', 0, '', '3', '59', '2024-10-21', 153000.00, '', '5', '1970-01-01', '2', 'communication Ok Fresher for our roles can give a try and check in 7 days training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-10-21', 1, '2024-10-14 06:01:14', 60, '2024-10-21 03:11:34', 0, NULL, 1),
(22257, 'MANIKANDAN', '13', '9342759772', '', 'maniofficial52@gmail.com', '2002-01-11', 22, '3', '2', 'Ganesan', 'Farmer', 72000.00, 2, 0.00, 300000.00, 'Thanjavur', 'TNagar', '2410140023', '', '1', 'upload_files/candidate_tracker/79776258999_MANIKANDANResume.pdf', NULL, '1', '2024-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 06:09:22', 1, '2024-10-14 06:19:49', 0, NULL, 1),
(22258, 'Tharun Kumar', '13', '9342905091', '', 'tharuntk376@gmail.com', '2003-06-11', 21, '3', '2', 'Mohan kumar', 'Driver', 100000.00, 6, 0.00, 2.50, 'Thirupathur', 'Thirupathur', '2410140024', '', '1', 'upload_files/candidate_tracker/93921159514_Resumetharun.pdf', NULL, '1', '2024-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 06:11:57', 1, '2024-10-14 06:22:02', 0, NULL, 1),
(22259, 'Sandhiya S', '6', '9884178190', '', 'sandhiya.sekar0312@gmail.com', '2001-12-03', 22, '2', '2', 'P.sekar', 'Own business', 8000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2410140025', '1', '1', 'upload_files/candidate_tracker/94797987026_sandhiyaSresume.pdf', NULL, '1', '2024-10-14', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected - not having confidence and  interested in other job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-14 06:15:05', 104, '2024-10-14 05:48:02', 0, NULL, 1),
(22260, 'Adrian', '13', '7305042001', '6380639580', 'adriancedricwessley@gmail.com', '2001-01-30', 23, '6', '2', 'Babu', 'Provisoon shop', 30000.00, 0, 0.00, 25000.00, 'Villivakkam', 'Villivakkam, Chennai', '2410140026', '', '1', 'upload_files/candidate_tracker/1530282935_AdrianRESUME1.pdf', NULL, '1', '2024-10-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-14 06:29:10', 104, '2024-10-14 12:10:03', 0, NULL, 1),
(22261, 'Vignesh K', '13', '9361534428', '8525972703', 'vigneshk.professional01@gmail.com', '2003-07-02', 21, '3', '2', 'Kalidurai K', 'Driver', 20000.00, 1, 0.00, 30000.00, 'Kadayanallur, Tenkasi-dist', 'Thoraipakkam, Chennai', '2410140027', '', '1', 'upload_files/candidate_tracker/51234335313_VIGNESHK20241.docx', NULL, '1', '2024-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 06:42:01', 1, '2024-10-14 06:50:06', 0, NULL, 1),
(22262, 'Dinesh', '13', '9525012156', '8012378971', 'dineshk.official01@gmail.com', '2004-03-08', 20, '3', '2', 'Kannan', 'Farmer', 15000.00, 2, 0.00, 30000.00, 'Tenkasi', 'Chennai', '2410140028', '', '1', 'upload_files/candidate_tracker/57977848827_dinesh.professional.pdf', NULL, '1', '2024-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 06:42:56', 1, '2024-10-14 07:13:13', 0, NULL, 1),
(22263, 'Dinesh K', '13', '9345749619', '8870615109', 'dinesh.webit@gmail.com', '2003-12-05', 20, '3', '2', 'Kannan', 'Daily wages', 10000.00, 1, 0.00, 15000.00, '6/667 madha Kovil street nallur thiruvannamalai', 'Chennai', '2410140029', '', '1', 'upload_files/candidate_tracker/84612415880_Dineshwebdeveloper.pdf', NULL, '1', '2024-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 06:51:00', 1, '2024-10-14 06:56:26', 0, NULL, 1),
(22264, 'Karthick R', '13', '8072401377', '8778001529', 'karthickramesh005@gmail.com', '2004-10-05', 20, '3', '2', 'S. Ramesh', 'Daily wages', 18000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2410140030', '', '1', 'upload_files/candidate_tracker/84756773869_Karthick.RResume3.pdf', NULL, '1', '2024-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 06:51:13', 1, '2024-10-14 07:11:41', 0, NULL, 1),
(22265, 'Vallavan A', '6', '9500177155', '', 'Avallavan364@gmail.com', '2004-10-13', 20, '2', '2', 'Anna v.c', 'Customs officer', 200000.00, 1, 0.00, 15.00, 'Tambaram', 'Tambaram', '2410140031', '1', '1', 'upload_files/candidate_tracker/69660746364_vallavanAcompressed.pdf', NULL, '1', '2024-10-14', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate past 4 months work for axis home loan  , not comfortable to relave the job , only looking for entertimant propose only so nit for my team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-14 06:55:47', 104, '2024-10-14 05:50:08', 0, NULL, 1),
(22266, 'Stepan M', '13', '9080703829', '8525972703', 'Stepanm.Info@gmail.com', '2003-11-29', 20, '3', '2', 'Mariappan V', 'Driver', 75000.00, 1, 0.00, 30000.00, 'Kadayanallur, Tenkasi-dist', 'Thoraipakkam, Chennai', '2410140032', '', '1', 'upload_files/candidate_tracker/63631451976_STEPANM.pdf', NULL, '1', '2024-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 07:07:43', 1, '2024-10-14 07:12:00', 0, NULL, 1),
(22267, 'KARTHICK.D', '27', '9025781659', '9025535797', 'djeevakarthickdjeevakarthick@gmail.com', '2009-10-14', 0, '3', '2', 'Duraisamy', 'Shopkeeper', 25000.00, 1, 0.00, 20000.00, 'SALEM', 'Chennai', '2410140033', '', '1', 'upload_files/candidate_tracker/7442882118_KARTHICKDCV.pdf', NULL, '1', '2024-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 07:14:49', 1, '2024-10-14 07:22:44', 0, NULL, 1),
(22268, 'Danush', '14', '9943976771', '', 'danush11222001@gmail.com', '2001-12-12', 22, '3', '2', 'Sumathi', 'Consulatant', 20000.00, 3, 0.00, 17000.00, 'Thiruvallur', 'Thiruvallur', '2410140034', '', '1', 'upload_files/candidate_tracker/76726364581_Resume.pdf', NULL, '1', '2024-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 07:15:16', 1, '2024-10-14 07:17:23', 0, NULL, 1),
(22269, 'S.SATHYA', '6', '7092344945', '8012072527', 'Selvasathya29122002@gmail.com', '2002-12-29', 21, '2', '2', 'Selvaraj', 'Later', 20000.00, 1, 19500.00, 23000.00, 'Tirunelveli', 'Ekkantuthangal', '2410140035', '50', '2', 'upload_files/candidate_tracker/61869318691_SAthya.pdf', NULL, '1', '2024-10-14', 0, '', '3', '59', '2024-10-21', 216000.00, '', '3', '2024-10-21', '2', 'Communication ok Have exp but not relevant one 5050 sustainability need to see', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-10-21', 1, '2024-10-14 07:15:53', 60, '2024-10-21 10:18:45', 0, NULL, 1),
(22270, 'Akash M', '13', '9361884558', '', 'Akashmasilamani18@gmail.com', '2002-09-18', 22, '3', '2', 'R masilamani', 'Car driver', 25000.00, 0, 0.00, 3.50, 'Chennai', 'Chennai', '2410140036', '', '1', 'upload_files/candidate_tracker/77439349705_AkashM1.pdf', NULL, '2', '2024-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 07:16:20', 1, '2024-10-14 07:22:29', 0, NULL, 1),
(22271, 'Sumathi', '6', '9566701317', '7373538531', 'jansiramakrishnan45@gmail.com', '2001-10-14', 23, '2', '2', 'Ramakrishnan', 'Farmer', 30000.00, 2, 0.00, 20000.00, 'Kallakurichi', 'Chennai guindy', '2410140037', '50', '2', 'upload_files/candidate_tracker/76891391880_JhansiResume.pdf', NULL, '1', '2024-10-14', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not  having  the way of  prounciation and less confidence', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-14 07:22:46', 104, '2024-10-14 05:47:45', 0, NULL, 1),
(22272, 'Murugan R', '5', '9597390138', '6369521733', 'rmurugantrt@gmail.com', '1997-01-26', 27, '3', '2', 'Ramamoorthy', 'Lic', 30000.00, 0, 26700.00, 30000.00, 'Tiruttani', 'Tiruttani', '2410140038', '', '2', 'upload_files/candidate_tracker/3983724372_Resume112.pdf', NULL, '1', '2024-10-14', 0, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interested in Operations but expecting higher package', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-10-14 07:57:42', 104, '2024-10-15 12:16:05', 0, NULL, 1),
(22273, 'Monisha. P', '6', '7305719532', '8807255348', 'monisha0856@gmail.com', '2003-06-10', 21, '2', '2', 'Perumal. V', 'Cooli', 5000.00, 1, 0.00, 15000.00, 'No2 purushothaman street murali Avanue chennai', 'No2 Purushothaman Street Murali Avanue Chennai', '2410140039', '50', '1', 'upload_files/candidate_tracker/73649857696_Monisha.PResume.pdf', NULL, '1', '2024-10-14', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication and Performance is good,also she have 3-Months experience in Tele calling Field but her distance is long ,will check with her in the training Period.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-10-14 08:00:33', 104, '2024-10-14 05:42:14', 0, NULL, 1),
(22274, 'M.vaishal', '6', '8072498270', '7200362187', 'vishalsairam0@gmail.com', '1994-11-16', 29, '2', '2', 'Mummoorthy', 'Artist', 100000.00, 1, 23000.00, 25000.00, 'Chennai', 'Korattur', '2410140040', '1', '2', 'upload_files/candidate_tracker/35770093802_newcv2.pdf', NULL, '1', '2024-10-14', 1, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-14 09:10:53', 104, '2024-10-14 03:28:36', 0, NULL, 1),
(22275, 'I.Umamaheswari', '6', '6382662543', '', 'sarathisarathi24293@gmail.com', '2002-10-24', 21, '2', '2', 'Sarathi', 'Jio', 28000.00, 2, 0.00, 20000.00, 'Thiirumangalam', 'Thiirumangalam', '2410140041', '57', '1', 'upload_files/candidate_tracker/89616774380_uma.pdf', NULL, '1', '2024-10-14', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication not good and ery long distance so  not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-14 09:25:36', 104, '2024-10-14 05:53:01', 0, NULL, 1),
(22276, 'Shaguftha parveen', '6', '9080059515', '9551210401', 'parvnsayista@gmail.com', '1997-05-16', 27, '3', '2', 'Mohammad Saleemur rahman', 'Provision store', 10000.00, 2, 0.00, 20000.00, 'Purasaiwalkam', 'Purasaiwalkam', '2410140042', '', '1', 'upload_files/candidate_tracker/83390291130_Resume.pdf', NULL, '1', '2024-10-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-14 09:29:40', 104, '2024-10-14 05:44:52', 0, NULL, 1),
(22277, 'Fidel Castro', '13', '6383254928', '', 'fc21721@gmail.com', '2002-05-21', 22, '3', '2', 'D kesavan', 'BSNL telephone mechanic rtd.,', 30000.00, 2, 0.00, 2.50, 'Ramanathapuram', 'Chennai', '2410140043', '', '1', 'upload_files/candidate_tracker/97880706365_FidelCastroSimpleProfessionalCVResume202410071001070000.pdf', NULL, '1', '2024-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 09:49:47', 1, '2024-10-14 09:53:53', 0, NULL, 1),
(22278, 'Robin Derik', '13', '9566910422', '', 'robinderik60@gmail.com', '2002-10-21', 21, '3', '2', 'Daicy', 'House Wife', 60000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Chennai', '2410140044', '', '1', 'upload_files/candidate_tracker/67398834995_Resume.pdf', NULL, '1', '2024-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-14 10:43:15', 1, '2024-10-14 10:48:35', 0, NULL, 1),
(22279, 'Aravinthan', '5', '9597658414', '9514525074', 'aravinthkutty9797@gmail.com', '1997-07-29', 27, '2', '1', 'VENKATESAN', 'Welding', 30000.00, 1, 20000.00, 30000.00, '4/345 north Street eluppur sankaranpanthal 609308', '18/11 Sarangapani Street metha nagar che 600029', '2410140045', '56', '2', 'upload_files/candidate_tracker/86677080883_AllDocumentReader1727192674383.pdf', NULL, '1', '2024-10-15', 0, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Higher for RE but not qualified for RM', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-10-14 01:12:20', 104, '2024-10-15 04:51:47', 0, NULL, 1),
(22280, 'Gayathri', '6', '9025965556', '9498860381', 'gayathrisaraswathi2002@gmail.com', '2002-07-27', 22, '2', '2', 'Bhuna', 'Bhuna', 200000.00, 2, 0.00, 20000.00, 'CIT Nagar', 'CIT Nagar', '2410150001', '56', '1', 'upload_files/candidate_tracker/77188883383_AdobeScan04Sept2024.pdf', NULL, '1', '2024-10-15', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher selected ctc 14k', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-15 02:45:56', 104, '2024-10-15 02:55:14', 0, NULL, 1),
(22281, 'Hariharan.K', '4', '7845258541', '8531995921', 'Cristianohari2@gmail.com', '2004-01-21', 20, '2', '2', 'Kalyanasundram', 'Farmer', 5000.00, 0, 0.00, 20000.00, 'Thiruvarur', 'Thiruvarur', '2410150002', '1', '1', 'upload_files/candidate_tracker/9741093565_HARIHARAN1.pdf', NULL, '1', '2024-10-15', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is ok with the profile , completed bcom computer application, father farmer single child, take active and have good exposure ,, already selected in zoho and tcs ,, due to long distance not joined ...expected to work in local due to parents, ready to move on to thanjavur,,have laptop...native thiruvarur 2 hours travel so need some time to relocate,,,expected 15k to 18k but have quality to gave kindly cross check in this parameter', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-15 04:38:50', 104, '2024-10-15 02:55:00', 0, NULL, 1),
(22282, '', '0', '8524025051', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410150003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-15 05:15:32', 0, NULL, 0, NULL, 1),
(22283, 'MANIKANDAN J', '6', '9629188489', '', 'manikandan23112006@gmail.com', '2002-07-22', 22, '3', '2', 'JOTHI D', '10 th pass', 15000.00, 1, 0.00, 2.50, '2/47 Mettu street sathiyakandanur,Villupuram', '365/1 Ponniyamman koil 8th street melaikottaiyur.', '2410150004', '', '1', 'upload_files/candidate_tracker/68346434403_a47fb9f43ce04fa98d95517c101da8c5.pdf', NULL, '1', '2024-10-15', 0, '', '3', '59', '2024-10-22', 192000.00, '', '3', '2024-10-22', '2', 'Fresher Can give a try in our role and check in 7 days training', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-10-22', 1, '2024-10-15 05:49:51', 104, '2024-10-22 09:49:20', 0, NULL, 1),
(22284, 'S A YOGESH', '13', '9441075110', '6300874618', 'yogeshsa2921@gmail.com', '2009-10-15', 0, '2', '2', 'S.Appadurai', 'Farmer', 20000.00, 1, 0.00, 300000.00, 'Andhra Pradesh', 'C', '2410150005', '1', '1', 'upload_files/candidate_tracker/81846359503_YOGESHSAResume040820230834031.pdf', NULL, '1', '2024-10-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-15 05:56:04', 104, '2024-11-16 12:02:13', 0, NULL, 1),
(22285, 'Vigneshwaran S', '13', '8838293891', '8754926825', 'vigneshwarans.info07@gmail.com', '2002-04-19', 22, '2', '2', 'M.Selvarasu', 'Framer', 20000.00, 1, 0.00, 200000.00, 'Thiruvattathurai', 'Thoripakkam', '2410150006', '1', '1', 'upload_files/candidate_tracker/65203355488_VIGNESHWARANS.pdf', NULL, '1', '2024-10-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-15 06:34:30', 104, '2024-10-15 12:13:15', 0, NULL, 1),
(22286, 'NAVACHANDRAN K', '13', '9043376561', '', 'navakchandran@gmail.com', '2009-10-15', 0, '3', '2', 'Kanthan', 'Conductor', 200000.00, 2, 0.00, 20000.00, 'TIRUNELVELI', 'TIRUNELVELI', '2410150007', '', '1', 'upload_files/candidate_tracker/48101049043_Navaresume.pdf', NULL, '1', '2024-10-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-15 07:49:25', 1, '2024-10-15 07:51:42', 0, NULL, 1),
(22287, 'Abinesh k', '13', '7448678254', '9884830426', 'abimanu744@gmail.com', '2002-06-29', 22, '3', '2', 'Vimala', 'Homemaker', 300000.00, 2, 0.00, 180000.00, 'Chengalpattu', 'Chengalpattu', '2410150008', '', '1', 'upload_files/candidate_tracker/11920915904_AbineshResume..pdf', NULL, '1', '2024-10-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-15 09:42:20', 1, '2024-10-15 09:49:55', 0, NULL, 1),
(22288, 'Shajitha banu s', '4', '8438251321', '', 'shajithabanu1329@gmail.com', '2002-03-01', 22, '2', '2', 'Sahul hameed', 'Hotel master', 6000.00, 3, 0.00, 13000.00, 'Orathanadu', 'Orathanadu', '2410150009', '1', '1', 'upload_files/candidate_tracker/63976657011_DOC20241019WA0000..pdf', NULL, '1', '2024-10-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'UNFIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-15 05:59:21', 104, '2024-10-19 03:39:29', 0, NULL, 1),
(22289, 'Aarthi B', '4', '7010715024', '8925340822', 'baarthi86@gmail.com', '2003-08-07', 21, '2', '2', 'Baskar c', 'Building contractor', 10000.00, 1, 0.00, 15000.00, '379, Maharajapuram,609802.', 'Same as permanent', '2410160001', '1', '1', 'upload_files/candidate_tracker/61972199780_aarthi.pdf', NULL, '1', '2024-10-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-16 04:25:35', 104, '2024-10-17 06:54:11', 0, NULL, 1),
(22290, 'Sriranjani V', '4', '9789254258', '9597905260', 'sriranjani4536@gmail.com', '2004-07-08', 20, '2', '2', 'Venugopal B', 'Nathaswaravithuwan', 4000.00, 0, 0.00, 15000.00, '6/77, main road, Thiruvalangadu,609810.', '6/77, main road, Thiruvalangadu,609810.', '2410160002', '1', '1', 'upload_files/candidate_tracker/69454805227_resume.pdf', NULL, '1', '2024-10-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-16 04:26:16', 104, '2024-10-17 06:54:50', 0, NULL, 1),
(22291, 'Suwetha. B', '4', '7871421451', '', 'suwethaktr2003@gmail.com', '2003-10-29', 20, '2', '2', 'Balasubramaniyan', 'Farmer', 60000.00, 1, 0.00, 12000.00, 'Thanjavur.', 'Thanjavur.', '2410160003', '1', '1', 'upload_files/candidate_tracker/49221297354_SUWETHA.B1.pdf', NULL, '1', '2024-10-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-16 04:26:22', 104, '2024-10-17 06:55:26', 0, NULL, 1),
(22292, 'Archana', '4', '9384211836', '', 'Archanasundar4@gmail.com', '2004-05-31', 20, '2', '2', 'Muthusudar', 'Ownbusinesd', 20000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2410160004', '1', '1', 'upload_files/candidate_tracker/30850842352_DocScanner16Oct20241009.pdf', NULL, '1', '2024-10-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-16 04:27:23', 104, '2024-10-17 06:55:56', 0, NULL, 1),
(22293, '', '0', '9545477728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410160005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-16 07:50:34', 0, NULL, 0, NULL, 1),
(22294, 'Kavya', '6', '6382842243', '7358186716', 'Kaviyakav07@gmail.com', '2003-03-01', 21, '2', '2', 'Pachaiyappan.r', 'Car Driver', 100000.00, 1, 20000.00, 20000.00, 'Chennai, valasaravakkam', 'Chennai ,valasaravakkam', '2410160006', '50', '2', 'upload_files/candidate_tracker/17092097144_MyResume1.pdf', NULL, '1', '2024-10-17', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is 50/50. she said 1.5 yrs experience but she donxquott the payslip xxamp Offer letter, Relieving letter. already she getting 20k salary, now exp also 20k. communication not good. reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-10-16 10:05:56', 104, '2024-10-17 06:22:48', 0, NULL, 1),
(22295, '', '0', '9791181373', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410160007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-16 04:38:03', 0, NULL, 0, NULL, 1),
(22296, 'yamini', '6', '8925454722', '8148485143', 'Yaminiyaminiyamu908@gmail.com', '2002-08-17', 22, '2', '2', 'babu', 'fisherman', 10000.00, 1, 0.00, 18000.00, 'chennai', 'chennai triplicane', '2410170001', '50', '1', 'upload_files/candidate_tracker/8512315635_Document5.pdf', NULL, '1', '2024-10-17', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected - not having confidence and  will not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-17 04:34:49', 104, '2024-10-17 06:21:30', 0, NULL, 1),
(22297, 'Dilip Raja S', '13', '9361536356', '', 'dilipraja5432@gmail.com', '2002-11-28', 21, '3', '2', 'Suresh Babu T', 'Former', 15000.00, 1, 0.00, 300000.00, 'Salem', 'Chennai', '2410170002', '', '1', 'upload_files/candidate_tracker/32603850527_DilipDesign12.pdf', NULL, '1', '2024-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-17 04:47:37', 104, '2024-10-17 10:51:56', 0, NULL, 1),
(22298, 'S. Harish', '13', '9361342981', '', 'harishpeter22@gmail.com', '2001-04-29', 23, '3', '2', 'M. Suganthavalli', 'Social worker', 25000.00, 1, 0.00, 20000.00, 'D/134 mgr Nagar mc road thanjavur', 'Chennai, padi', '2410170003', '', '1', 'upload_files/candidate_tracker/23952033047_ResumeGoogleDocsnew.pdf', NULL, '1', '2024-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-17 05:09:27', 104, '2024-10-17 10:51:48', 0, NULL, 1),
(22299, 'MOHANA PRIYA N', '6', '9360221298', '7358055047', 'Priyaharts31@gmail.com', '2002-01-31', 22, '1', '2', 'Nagarajan S', 'Designation Manager', 26000.00, 1, 26000.00, 30000.00, 'Mugappair West', 'Mugappair west', '2410170004', '', '2', 'upload_files/candidate_tracker/26950986297_Screenshot20241017112405Drive.pdf', NULL, '1', '2024-10-17', 3, 'Not yet given (New joiner)', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is good ,but expected hign packge', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-10-17 05:36:39', 104, '2024-10-17 06:21:01', 0, NULL, 1),
(22300, '', '0', '7397272651', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410170005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-17 05:42:28', 0, NULL, 0, NULL, 1),
(22301, 'K POOVARASI', '6', '9843617647', '8220266137', 'kpoovarasi030603@gmail.com', '2003-06-03', 21, '2', '2', 'K.baby', 'Nill', 2000.00, 2, 21000.00, 23000.00, 'Thiruvannamalai', 'Vadapalani', '2410170006', '50', '2', 'upload_files/candidate_tracker/79046785294_poovarasiresume.pdf', NULL, '1', '2024-10-17', 3, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too slow', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-17 05:59:30', 104, '2024-10-17 06:22:19', 0, NULL, 1),
(22302, 'Santhana murugan', '13', '9787748426', '8056570102', 'ssmurugan2706@gmail.com', '2004-01-27', 20, '6', '2', 'Senthil Kumar', 'Grocery shop worker', 12000.00, 1, 0.00, 12000.00, 'Tharamani', 'Tharamani', '2410170007', '', '1', 'upload_files/candidate_tracker/74350144472_resumenew.pdf', NULL, '1', '2024-10-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-17 06:31:38', 104, '2024-10-17 12:27:33', 0, NULL, 1),
(22303, 'Mathumitha', '6', '9334483616', '', 'matmcp18s@gmail.com', '2000-04-16', 24, '2', '2', 'Panneeraselvam', 'Driver', 20000.00, 1, 0.00, 18.00, 'Thanjavur', 'Vadapalani', '2410170008', '50', '1', 'upload_files/candidate_tracker/10495683033_ResumeMathumithaPFormat6.pdf', NULL, '1', '2024-10-17', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate com munication and performance is not good.also slightly pronunciation issue', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-10-17 06:36:42', 104, '2024-10-17 06:20:36', 0, NULL, 1),
(22304, 'Nithishkumar.E', '4', '9384798763', '6385697702', 'rajnithish936@gmail.com', '2003-02-23', 21, '2', '2', 'Elangovan.p', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Pudukkottai', 'Palaya gandarvakkottai', '2410170009', '1', '1', 'upload_files/candidate_tracker/27797448521_NithishkumarE.pdf', NULL, '1', '2024-10-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'UNFIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-17 06:43:15', 104, '2024-10-19 03:39:18', 0, NULL, 1),
(22305, 'K.Malathi', '11', '9840449640', '', 'malathikamaraj94@gmail.com', '1999-01-05', 25, '3', '2', 'Kamaraj', 'Daily cooli', 15000.00, 0, 0.00, 20000.00, 'Tindivanam', 'Chennai Annanagar', '2410170010', '', '1', 'upload_files/candidate_tracker/75610577937_DOC20240930WA0014.pdf', NULL, '1', '2024-10-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-10-17 07:59:46', 104, '2024-10-17 06:23:02', 0, NULL, 1),
(22306, 'Veeraiya A', '4', '7826865627', '', 'veerav72810@gmail.com', '2000-10-28', 23, '2', '2', 'Ayyavu K', 'Daily wage worker', 20000.00, 4, 16000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2410170011', '1', '2', 'upload_files/candidate_tracker/66383734593_RESUME.pdf', NULL, '1', '2024-10-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-17 08:35:45', 104, '2024-10-18 05:47:45', 0, NULL, 1),
(22307, 'E.vidhya', '6', '9150291097', '8015101634', 'vidhyaeagambaram3108@gmail.com', '2003-08-31', 21, '2', '2', 'J. Eagambaram', 'Painter', 10.00, 1, 0.00, 15000.00, 'No 3 Thirumalai Nagar Main road nerkundram Ch 107', 'No 3 Thirumalai Nagar Main road nerkundram Ch 107', '2410170012', '50', '1', 'upload_files/candidate_tracker/81757501946_E.vidhyaCV1.pdf', NULL, '1', '2024-10-17', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-17 09:00:52', 104, '2024-10-17 06:22:07', 0, NULL, 1),
(22308, 'SEENA JINI V', '6', '8015101634', '9791698583', 'vseenajini3010@gmail.com', '2002-10-30', 21, '2', '2', 'Vimal kumar M', 'Driver', 180000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2410170013', '50', '1', 'upload_files/candidate_tracker/67306878870_RESUMESEENAJNI3010.pdf', NULL, '1', '2024-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-17 09:01:19', 104, '2024-10-17 04:56:57', 0, NULL, 1),
(22309, 'Vignesh.M', '6', '9361187442', '7358285221', 'rajandros46@gmail.com', '2000-08-21', 24, '2', '2', 'Muthuraman', 'Fisher man', 20000.00, 1, 20000.00, 21000.00, 'Chennai', 'Chennai', '2410170014', '50', '2', 'upload_files/candidate_tracker/32229430713_viki1.pdf', NULL, '1', '2024-10-17', 10, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interested in sales but previous company 3 and 4month working this candidate sustainability doubt ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-17 09:01:49', 104, '2024-10-17 06:20:20', 0, NULL, 1),
(22310, 'Dilli Raj v', '6', '7397640417', '', 'Dilliappu1996@gmail.com', '1996-04-02', 28, '2', '2', 'Meenakchi', 'Nil', 1.00, 1, 20000.00, 25000.00, 'Chengalpattu', 'Tambaram', '2410170015', '50', '2', 'upload_files/candidate_tracker/97813902275_DOC20240722WA0038.pdf', NULL, '1', '2024-10-17', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'aged and not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-17 09:03:58', 104, '2024-10-17 06:22:34', 0, NULL, 1),
(22311, 'S.Silambarasan', '6', '7358224633', '9790876867', 'ssilambu887@gmail.com', '2000-06-26', 24, '2', '2', 'P.Srinivasan', 'Driver', 18000.00, 2, 14000.00, 17000.00, 'Korukkupet', 'Korukkupet', '2410170016', '56', '2', 'upload_files/candidate_tracker/73292430746_SILAMBARASAN20.S20copy2016.pdf', NULL, '1', '2024-10-18', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate already working in customer support and interested in field work', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-17 09:28:14', 104, '2024-10-18 06:07:29', 0, NULL, 1),
(22312, 'r. Surendiran', '6', '8124893396', '', 'surendiranramesh999@gmail.com', '2003-06-24', 21, '2', '2', 'Ramesh. S', 'Driver', 30000.00, 1, 0.00, 18000.00, 'Chengalpattu', 'Chengalpattu', '2410170017', '57', '1', 'upload_files/candidate_tracker/4134225072_ACEScanner202408101.pdf', NULL, '1', '2024-10-17', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate only interest i non voice only so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-17 09:35:51', 104, '2024-10-17 06:21:11', 0, NULL, 1),
(22313, 'Franklin smith', '6', '8838003264', '9600426905', 'franklinsmithw5@gmail.com', '2002-09-26', 22, '2', '2', 'Jebaraj', 'Business', 25000.00, 1, 0.00, 16000.00, 'Chengalpet', 'Chennai', '2410170018', '57', '1', 'upload_files/candidate_tracker/48600558843_FranklinSmith.pdf', NULL, '1', '2024-10-17', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communicatuon  and perfomance is not good.the his voice is low also long distance sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-10-17 09:36:08', 104, '2024-10-17 06:20:47', 0, NULL, 1),
(22314, '', '0', '9500965435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410170019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-17 10:02:32', 0, NULL, 0, NULL, 1),
(22315, '', '0', '9344599488', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410170020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-17 11:02:43', 0, NULL, 0, NULL, 1),
(22316, 'Sakthivel V', '6', '9360602915', '8940752550', 'sakthivelveeraa@gmail.com', '2001-12-23', 22, '2', '2', 'Veerasangili P', 'Business', 15000.00, 1, 0.00, 200000.00, 'Theni', 'Thoraipakkam', '2410170021', '50', '1', 'upload_files/candidate_tracker/99261756166_SakthiBPO.pdf', NULL, '1', '2024-10-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-17 11:12:35', 104, '2024-10-18 09:48:27', 0, NULL, 1),
(22317, 'sabari', '6', '6381615573', '', 'sabarisbr66@gmail.com', '2001-01-14', 23, '2', '2', 'pradeep', 'health department', 45000.00, 1, 0.00, 16000.00, 'swamiyarmadam.kanyakumari', 'taramani.chennai', '2410170022', '1', '1', 'upload_files/candidate_tracker/77499866340_SabariCV2.pdf', NULL, '1', '2024-10-18', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candiate comunication ok but not interest for field work so not fit for my team', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-17 11:31:00', 104, '2024-10-18 06:05:52', 0, NULL, 1),
(22318, 'Harshitha S', '5', '9739810372', '', 'harshitha.shantharaju@gmail.com', '1993-11-06', 30, '3', '2', 'shantharaju k', 'na', 1000.00, 2, 0.00, 500000.00, 'bangalore', 'bangalore', '2410170023', '', '2', 'upload_files/candidate_tracker/7577317644_HarshithasCV.pdf', NULL, '1', '2024-10-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-17 11:32:55', 1, '2024-10-17 11:36:06', 0, NULL, 1),
(22319, 'Mohammad Ibrahim b', '6', '9092080914', '9500106484', 'ibrahim.bazarullah2@gmail.com', '1996-01-25', 28, '2', '2', 'Mahamodunnisa', 'House wife', 30000.00, 2, 18000.00, 20000.00, 'Chennai', 'Chennai', '2410170024', '1', '2', 'upload_files/candidate_tracker/53469609809_DOC20240927WA0006..pdf', NULL, '1', '2024-10-18', 15, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-10-17 11:35:37', 104, '2024-10-18 05:57:46', 0, NULL, 1),
(22320, 'kamesh', '6', '9841264314', '9841535382', 'cutekamesh8@gmail.com', '2002-07-08', 22, '2', '2', 'vengatesan', 'courier', 30000.00, 1, 18000.00, 20000.00, 'chennai', 'chennai', '2410170025', '1', '2', 'upload_files/candidate_tracker/98699792908_KAMESHResumeUpdated2.docx', NULL, '1', '2024-10-18', 15, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit for Sales ', '5', '1', '', '1', '8', '', '2', '2024-10-19', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-10-17 11:41:56', 104, '2024-10-18 05:57:57', 0, NULL, 1),
(22321, 'Siripireddy Omsekhar', '5', '9502740780', '6301335254', 'siripireddyomsekhar8742@gmail.com', '2000-08-06', 24, '4', '2', 'S narasimha reddy', 'Aws', 25000.00, 0, 0.00, 18000.00, 'Penumur', 'Penumur', '2410170026', '', '1', 'upload_files/candidate_tracker/64381942814_omsekhar.docx', NULL, '3', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-17 11:42:20', 1, '2024-10-17 11:47:06', 0, NULL, 1),
(22322, 'ISTHIYAK B', '6', '7092323221', '', 'isthiyakabbuu07@gmail.com', '2001-12-23', 22, '2', '2', 'Babu', 'Business', 29000.00, 2, 20000.00, 22000.00, 'Ambur', 'Ambur', '2410170027', '1', '2', 'upload_files/candidate_tracker/97314052529_ISTHIYAKBRESUME.pdf', NULL, '1', '2024-10-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-10-17 11:46:30', 104, '2024-10-18 05:58:18', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22323, 'JEEVAN B M', '5', '8050690330', '', 'jeevanbm1999@gmail.com', '1999-08-07', 25, '4', '2', 'Mahadev', 'Business', 180000.00, 1, 0.00, 300000.00, 'No 76 BSNL BUILDING BYPASS ROAD BILIKERE MYSURU', 'No. 33 R K COLONY JP NAGAR 2ND PHASE BENGALURU', '2410170028', '', '1', 'upload_files/candidate_tracker/24911972032_JEEVANBMResume.pdf', NULL, '1', '2024-10-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-17 12:17:03', 1, '2024-10-17 12:24:01', 0, NULL, 1),
(22324, '', '0', '9500077816', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410170029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-17 01:36:11', 0, NULL, 0, NULL, 1),
(22325, 'S RISHA', '4', '7449217224', '', 'rishadharun09@gmail.com', '2001-06-29', 23, '2', '2', 'P.sangapillai', 'Driving', 30000.00, 0, 23000.00, 28000.00, 'Tharamani', 'Tharamani', '2410170030', '1', '2', 'upload_files/candidate_tracker/44288724444_risha.doc', NULL, '1', '2024-10-18', 0, '', '3', '59', '2024-10-28', 312000.00, '', '5', '1970-01-01', '1', 'Communication good have exp in calling can give a try and check in 7 days training', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55824', '55560', '2024-10-28', 1, '2024-10-17 01:48:31', 60, '2024-10-26 05:09:54', 0, NULL, 1),
(22326, 'Yuvarani', '11', '9361960722', '9361960723', 'comyuvarani@gmail.com', '2002-03-06', 22, '2', '2', 'Nandhagopal', 'Maswan', 150000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2410170031', '1', '1', 'upload_files/candidate_tracker/43978069328_11.pdf', NULL, '1', '2024-10-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-17 01:58:05', 104, '2024-10-18 10:30:34', 0, NULL, 1),
(22327, 'Jayasurya K', '4', '9791759535', '9500663844', 'Jayasurya952003@gmail.com', '2003-05-09', 21, '2', '2', 'S. Karthikeyan', 'Railyway', 200000.00, 2, 0.00, 17000.00, '3,ganapathy nagar, North street, thanjavur', '3,Ganapathy Nagar,North street, Thanjavur', '2410170032', '1', '1', 'upload_files/candidate_tracker/6797138384_JayasuryaResume.pdf', NULL, '1', '2024-10-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-17 02:39:03', 104, '2024-10-18 05:47:57', 0, NULL, 1),
(22328, 'Hanna Fernando', '4', '7358599375', '7010126020', 'hannasaffron17@gmail.com', '1999-11-17', 24, '2', '2', 'Josephine (Mother)', 'Higher secondary school', 35.00, 1, 20.00, 26.00, 'Chennai', 'Chennai', '2410170033', '1', '2', 'upload_files/candidate_tracker/27131513773_HannafdoRESUME20241new.pdf', NULL, '1', '2024-10-18', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-17 02:43:39', 104, '2024-10-18 01:13:03', 0, NULL, 1),
(22329, 'Divya Bharathi', '4', '9384603337', '', 'adivyabharathi90@gmail.com', '2001-07-27', 23, '2', '2', 'Anandaraj', 'Electrician', 16000.00, 1, 21000.00, 26000.00, 'No.26 jeeva Street Dunlop Ambattur chennai 53', 'No.26 jeeva Street Dunlop Ambattur chennai 53', '2410170034', '1', '2', 'upload_files/candidate_tracker/85073907577_DivyaResume2024.pdf', NULL, '1', '2024-10-18', 10, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'worked in customer support only \nwill not work on sales ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55824', '55560', '1970-01-01', 1, '2024-10-17 02:59:10', 104, '2024-10-18 06:06:57', 0, NULL, 1),
(22330, 'Rianna Janet', '11', '9790748386', '', 'riannajanet2003@gmail.com', '2003-01-24', 21, '2', '2', 'Silas Charles. M', 'Nil', 240000.00, 1, 0.00, 10.00, 'chennai', 'chennai', '2410170035', '1', '1', 'upload_files/candidate_tracker/49695464252_RiannaResumeHRIntern.pdf', NULL, '1', '2024-10-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-17 03:18:57', 104, '2024-10-18 03:35:40', 0, NULL, 1),
(22331, 'Ruksar begum A', '5', '6383436654', '6379239447', 'ruksarsr26@gmail.com', '2000-07-26', 24, '2', '1', 'Mohammad chabu shakeel T', 'Quality analyst', 30000.00, 1, 28500.00, 29000.00, 'Chennai', 'Chennai', '2410170036', '1', '2', 'upload_files/candidate_tracker/6192742715_correctedruksarresume.docx', NULL, '1', '2024-10-18', 0, '', '3', '59', '2024-11-25', 380000.00, '', NULL, '2025-02-22', '2', 'Communication Ok have exp is account handling but not exactly in Sales can be trained in  our roles', '5', '1', '1', '1', '8', '', '2', '2024-10-21', '2', '1', '', '', 'H1018', '', '55735', '55557', '2024-11-25', 1, '2024-10-17 06:39:48', 60, '2024-11-25 10:22:19', 0, NULL, 1),
(22332, 'Santhosh R', '6', '9345423535', '9789981234', 'santhoshvmhs@gmail.com', '2003-03-04', 21, '2', '2', 'Jayanthi D', 'Senior manager', 500000.00, 1, 0.00, 18000.00, 'No:7, 2nd Street, 3rd cross, vaishnavi nagar', 'No:7, 2nd Street, 3rd cross, vaishnavi nagar', '2410180001', '50', '1', 'upload_files/candidate_tracker/7605168645_SanthoshupdatedResume1.pdf', NULL, '1', '2024-10-21', 0, '', '3', '59', '2024-10-28', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok fresher can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '2024-10-28', 1, '2024-10-18 03:19:32', 60, '2024-10-26 05:11:12', 0, NULL, 1),
(22333, 'lakshmi kanth', '6', '8667743602', '8015229497', 'venkatvenkat99364@gmail.com', '1999-06-10', 25, '2', '2', 'thulasi dass', 'agric', 30000.00, 2, 0.00, 20000.00, 'chennai', 'ponneri', '2410180002', '50', '2', 'upload_files/candidate_tracker/17862341748_Screenshot20240730at9.09.17PM.pdf', NULL, '3', '2024-10-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'SELECTED - GOOD COMMUNICATION AND KNOWN ABOUT  SALES WILL GIVE 15 K TAKE HOME', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-18 04:45:34', 104, '2024-10-18 05:57:12', 0, NULL, 1),
(22334, 'Rakesh s', '6', '8608684396', '7401687299', 'Rakeshcabo@gmail.com', '2002-12-28', 21, '2', '2', 'Shankar s', 'Driver', 20000.00, 0, 0.00, 15000.00, 'Padi', 'Padi', '2410180003', '45', '1', 'upload_files/candidate_tracker/54537796598_RakeshSResume360.pdf', NULL, '1', '2024-10-18', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-10-18 04:45:47', 104, '2024-10-18 05:47:35', 0, NULL, 1),
(22335, 'Rithesh S', '6', '8056140615', '9941026274', 'srithesh2@gmail.com', '2004-05-13', 20, '2', '2', 'sugumar', 'driver', 20000.00, 1, 0.00, 15000.00, 'thiruvottiyur', 'thiruvottiyur', '2410180004', '1', '1', 'upload_files/candidate_tracker/30778617351_Imagetopdf18Oct2024.pdf', NULL, '1', '2024-10-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-10-18 04:47:21', 104, '2025-01-02 04:40:48', 0, NULL, 1),
(22336, 'Marikannan B', '6', '6379541595', '', 'marikannan4891@gmail.com', '2000-05-22', 24, '2', '2', 'Balu A', 'Vegetable sales man', 60000.00, 1, 0.00, 18000.00, 'Tuticorin', 'Chennai', '2410180005', '50', '1', 'upload_files/candidate_tracker/60188275057_RESUMEMARIKANNAN.pdf', NULL, '1', '2024-10-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he Interested in Non-Voice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-18 05:17:55', 104, '2024-10-18 05:58:37', 0, NULL, 1),
(22337, 'Maheswari', '6', '8778509636', '9444441207', 'mahimanoj0615@gmail.com', '1998-05-06', 26, '2', '1', 'Jayanthi', 'Home maker', 30000.00, 1, 0.00, 20000.00, 'No-75/76,Padmavathy Nagar 9th Street Kathiervedu', 'No-75/76,Padmavathy Nagar 9th Street Kathiervedu', '2410180006', '50', '1', 'upload_files/candidate_tracker/10080696240_DocScanner17Oct20241209pm1.pdf', NULL, '3', '2024-10-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-18 05:19:31', 104, '2024-10-18 06:03:34', 0, NULL, 1),
(22338, 'Thalapathi Rajan', '6', '9176065966', '9500077816', 'thalapathirajan867@gmail.com', '1996-09-19', 28, '2', '2', 'Sivakumar', 'Inspector', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2410180007', '1', '1', 'upload_files/candidate_tracker/45177487123_RajanRESUME10.10.2024.pdf', NULL, '1', '2024-10-18', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he cant able to speak well and walk too, he did not get any job so he came for interview here and he smelled so Weird ,he not look like  a normal person', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-10-18 05:24:55', 104, '2024-10-18 05:59:09', 0, NULL, 1),
(22339, 'Shruthilaya s', '6', '6374838058', '6383351397', 'Shruthilaya102@gmail.com', '2002-02-02', 22, '2', '2', 'Saravanana', 'Late', 20000.00, 1, 0.00, 15000.00, 'St.thomas mount', 'Chennai', '2410180008', '57', '1', 'upload_files/candidate_tracker/60883100729_Shruthiresume.pdf', NULL, '3', '2024-10-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-18 05:28:47', 104, '2024-10-18 12:27:19', 0, NULL, 1),
(22340, 'Nisalini M', '6', '6369548904', '9345641297', 'nishamuthusamy2002@gmail.com', '2002-07-03', 22, '2', '2', 'Muthusamy', 'Business man', 10000.00, 1, 0.00, 300000.00, 'Peravurani', 'Thiruvanmiyur', '2410180009', '50', '1', 'upload_files/candidate_tracker/56520129374_MyResume.pdf', NULL, '1', '2024-10-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher ctc 14k', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-18 05:36:16', 104, '2024-10-18 05:57:32', 0, NULL, 1),
(22341, 'vishnu', '6', '7397346683', '7305183456', '95vishnuo@gmail.com', '2001-05-27', 23, '2', '2', 'venkaiah', 'business', 20000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2410180010', '57', '2', 'upload_files/candidate_tracker/80601421073_NewDoc1018202411.51.pdf', NULL, '1', '2024-10-18', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT OKAY WITH OUR SALARY AND TIMING', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-18 05:40:15', 104, '2024-10-18 06:05:16', 0, NULL, 1),
(22342, 'KRISHNA VENI.R', '6', '7305183456', '7397346683', 'aarthicandy99@gmail.com', '2001-08-04', 23, '2', '2', 'RAJALINGAM', 'Business man', 18000.00, 1, 15000.00, 17000.00, 'Adyar,CHENNAI', 'Adyar, CHENNIAI', '2410180011', '57', '2', 'upload_files/candidate_tracker/85818683642_cafsresume.pdf', NULL, '1', '2024-10-18', 15, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT  OKAY WITH TIMING AND JOB', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-18 05:50:44', 104, '2024-10-18 06:04:54', 0, NULL, 1),
(22343, 'Dhanasekar.A', '6', '8438895266', '', 'dhanasekardhanush57@gmail.com', '2004-07-08', 20, '2', '2', 'Dhanasekar.A', 'Tailler', 75000.00, 1, 0.00, 18000.00, 'Thiruvanamali dt arani', 'or, CAFS Infotech', '2410180012', '57', '1', 'upload_files/candidate_tracker/87767698267_DHANASEKAR.pdf', NULL, '1', '2024-10-18', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT GOOD WITH COMMUNICATION AND DISTANCE WAS LONG', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-18 05:59:25', 104, '2024-10-18 06:04:33', 0, NULL, 1),
(22344, 'Name', '13', '6382686101', '8190800414', 'vijaysurya7193@gmail.com', '1998-07-22', 26, '3', '2', 'Krishnamoorthy', 'Former', 20000.00, 2, 0.00, 15000.00, 'Tiruvannamalai', 'Chrompet, Chennai', '2410180013', '', '1', 'upload_files/candidate_tracker/54197811085_VijayResumeOrg.pdf', NULL, '1', '2024-10-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-18 06:00:55', 1, '2024-10-18 06:05:42', 0, NULL, 1),
(22345, 'kaif ahmed s', '23', '9566239557', '7358485014', 'kaifahmed2904@gmail.com', '2004-03-29', 20, '3', '2', 'sulthan r', 'painting contractor', 30000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2410180014', '', '1', 'upload_files/candidate_tracker/80269172644_RESUME.pdf', NULL, '1', '2024-10-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-18 06:16:28', 1, '2024-10-18 06:21:16', 0, NULL, 1),
(22346, 'Selvakrishnan K', '13', '7358485014', '9566239557', 'selvakrishnan435@gmail.com', '2001-09-01', 23, '3', '2', 'KRISHNASAMY M', 'Civil Engineering', 60000.00, 1, 0.00, 18000.00, '2b sai Street keelkattalai Chennai 117', '2b sai Street keelkattalai Chennai 117', '2410180015', '', '1', 'upload_files/candidate_tracker/67072730087_davidRESUME1.pdf', NULL, '1', '2024-10-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-18 06:18:07', 1, '2024-10-18 06:23:04', 0, NULL, 1),
(22347, 'Malini', '16', '8508626944', '9962794584', 'malinimalu276@gmail.com', '2004-06-22', 20, '3', '2', 'Vairavel', 'Fisherman', 15000.00, 2, 0.00, 15000.00, 'Ennore,Chennai', 'Ennore,chennai', '2410180016', '', '1', 'upload_files/candidate_tracker/7553726993_malini.Vresume.pdf', NULL, '1', '2024-10-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-18 06:24:56', 1, '2024-10-18 06:32:40', 0, NULL, 1),
(22348, 'Harini R', '33', '9514095082', '', 'hariniramesh42@gmail.com', '2004-05-24', 20, '3', '2', 'Ramesh Kumar', 'Coolie', 15000.00, 1, 0.00, 16000.00, 'Perambur Chennai', 'Perambur Chennai', '2410180017', '', '1', 'upload_files/candidate_tracker/93625510797_AdobeScanAug292024.pdf', NULL, '1', '2024-10-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-18 06:25:00', 1, '2024-10-18 06:32:20', 0, NULL, 1),
(22349, 'Nishanthi', '6', '9551018251', '9042759324', 'nishanthigunasekaran095@gmail.com', '1995-06-29', 29, '2', '1', 'Parthiban', 'Designing engineering', 30000.00, 1, 250000.00, 300000.00, 'Thiruvottriyur', 'Chennai', '2410180018', '50', '2', 'upload_files/candidate_tracker/31681436637_Resume241017122314.pdf', NULL, '1', '2024-10-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-18 06:29:28', 104, '2024-10-18 01:14:39', 0, NULL, 1),
(22350, 'Asvitha', '33', '9952177306', '9789236030', 'asvithaanbu@gmail.com', '2003-07-28', 21, '2', '2', 'Anbazhagan', 'Agriculture', 48000.00, 2, 0.00, 15000.00, '190,south Street, Kundaveli post Ariyalur', '20/2,dooming Street,Santhome mylabore Chennai', '2410180019', '50', '1', 'upload_files/candidate_tracker/89440788434_AsvithaResume20232.pdf', NULL, '1', '2024-10-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-18 07:02:40', 1, '2024-10-18 07:37:59', 0, NULL, 1),
(22351, 'Sivaranjani', '4', '9025999739', '9176817591', 'sivaranjanjsivaranjani@gmail.com', '1997-05-12', 27, '2', '1', 'Murali', 'Prodata Management services Pvt Ltd', 25000.00, 2, 16000.00, 20000.00, 'No.147,8th block, muggappair west', 'No.147,8th block ,muggappair west', '2410180020', '50', '2', 'upload_files/candidate_tracker/61594130005_SIVARANJANIRESUME.doc', NULL, '1', '2024-10-18', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-18 07:44:10', 1, '2024-10-18 08:07:00', 0, NULL, 1),
(22352, 'Sharmila Banu', '4', '7200147859', '', 'sharmilagani2003@gmail.com', '2003-10-14', 21, '6', '2', 'Ibrahim gani', 'Business', 120000.00, 2, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2410180021', '', '1', 'upload_files/candidate_tracker/29082037237_SharmilaResume.pdf', NULL, '1', '2024-10-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-18 08:03:50', 1, '2024-10-18 08:48:27', 0, NULL, 1),
(22353, 'Samiha safreen', '6', '9790492886', '9486631213', 'Samihashafreen@gmail.com', '2004-06-24', 20, '2', '2', 'Mohamed shameem', 'Business', 20000.00, 2, 0.00, 15000.00, 'Puraisaiwakam', 'Puraisaiwakam', '2410180022', '45', '1', 'upload_files/candidate_tracker/49708494053_SafreenResumePDF.pdf', NULL, '1', '2024-10-18', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Not Interested in Voice Process,Also Have Sustainable Issue', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-10-18 09:10:06', 104, '2024-10-18 06:07:11', 0, NULL, 1),
(22354, 'S.sangeetha', '6', '9025774518', '', 'Sangeethassangeethas4@gmail.com', '2001-10-15', 23, '2', '2', 'Sivakumar', 'No', 10000.00, 0, 18000.00, 20000.00, 'Tharamani', 'Tharamani', '2410180023', '1', '2', 'upload_files/candidate_tracker/91394173506_SangeethaResume180.pdf', NULL, '1', '2024-10-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'kindly check with her existing salary if she takes in hand 18k then will proceed ctc 18k otherwise we will move ctc 16k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-10-18 09:35:43', 104, '2024-10-18 05:56:47', 0, NULL, 1),
(22355, 'Jothilakshmi.m', '6', '7358091687', '', 'jothimagi1401@gmail.com', '2001-10-01', 23, '2', '2', 'Mariyappan.R', 'Unskilled labour', 13000.00, 2, 15000.00, 18000.00, 'Chennai Tambaram west', 'Chennai. Tambaram west', '2410180024', '1', '2', 'upload_files/candidate_tracker/88133219910_JOTHILAKSHMI.RESUME1.pdf', NULL, '1', '2024-10-18', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate commuication and voice is average , and very long distance so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-18 10:39:42', 104, '2024-10-18 06:06:13', 0, NULL, 1),
(22356, 'Rupini', '6', '8637459881', '', 'rubyrupini02@gamil.com', '2000-09-02', 24, '2', '2', 'Chandra Kumar', 'Security incharge super waiser', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2410180025', '1', '1', 'upload_files/candidate_tracker/47259514493_e4bce438221e4dc393f28a1d2e0da496.pdf', NULL, '1', '2024-10-18', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-10-18 10:39:46', 104, '2024-10-18 05:47:23', 0, NULL, 1),
(22357, 'vaishali s', '6', '6381680271', '', 'vaishummmani@gmail.com', '2001-06-11', 23, '2', '2', 'father- subramani', 'interior d', 15000.00, 0, 15000.00, 20000.00, 'west mambalam', 'west mambalam', '2410180026', '1', '2', 'upload_files/candidate_tracker/98995461388_vaishaliresume.pdf', NULL, '1', '2024-10-18', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate all good but she is not work  proper for all compays and not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-18 10:39:57', 104, '2024-10-18 06:05:37', 0, NULL, 1),
(22358, '', '0', '6385117661', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410180027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-18 10:50:04', 0, NULL, 0, NULL, 1),
(22359, '', '0', '9790879667', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410180028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-18 01:00:18', 0, NULL, 0, NULL, 1),
(22360, 'Prethiveraj.C', '6', '6380839023', '8015336990', 'bindhuhima59@gmail.com', '2002-05-05', 22, '2', '2', 'Chandrasekaran.N', 'Clerk', 17000.00, 1, 0.00, 17000.00, 'No 27 Butchammal Street', 'No 27 Butchammal Street', '2410180029', '57', '1', 'upload_files/candidate_tracker/71451010783_CVPrethive1.pdf', NULL, '1', '2024-10-21', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance is Not Good also his voice is very low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-10-18 02:49:05', 104, '2024-10-21 05:52:51', 0, NULL, 1),
(22361, 'Prethiveraj.C', '4', '8015336990', '6380839022', 'bindhuhima59@gmail.com', '2002-05-05', 22, '2', '2', 'Chandrasekaran.N', 'Clerk', 17000.00, 1, 0.00, 17000.00, 'No 27', 'No 27', '2410180030', '56', '1', 'upload_files/candidate_tracker/93838806390_CVPrethive1.pdf', NULL, '1', '2024-10-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-18 03:30:43', 1, '2024-10-18 03:37:27', 0, NULL, 1),
(22362, 'Sahana Begam j', '4', '9025582312', '', 'begam0268@gmail.com', '2002-04-04', 22, '2', '2', 'Jamal', 'Driver', 30000.00, 2, 0.00, 13000.00, 'Orathanadu 614625', 'Orathanadu 614625', '2410190001', '1', '1', 'upload_files/candidate_tracker/57503881490_SAHANABEGAMJ.pdf', NULL, '1', '2024-10-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT SUITE FOR TELE CALLING', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-19 04:13:45', 104, '2024-10-19 03:39:05', 0, NULL, 1),
(22363, 'Jothika selvam', '4', '7695926040', '', 'jothiselvam2910@gmail.com', '2000-10-29', 23, '2', '1', 'Anand raj M', 'Civil Engineer', 20000.00, 0, 0.00, 200000.00, '8, durkambigai nagar,sholamaligai ariyapadaividu', '8, durkambigai Nagar,Sholamaligai Ariyapadaividu', '2410190002', '1', '1', 'upload_files/candidate_tracker/36917381970_resume.joe.pdf', NULL, '1', '2024-10-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-19 04:56:07', 104, '2024-10-19 03:38:48', 0, NULL, 1),
(22364, 'Yokeshwaran S', '13', '8925005817', '', 'ykyokeshwaran@gmail.com', '2003-06-14', 21, '3', '2', 'Senthilkumar M', 'Daily wages', 72000.00, 1, 0.00, 250000.00, 'Dindigul', 'Chennai', '2410190003', '', '1', 'upload_files/candidate_tracker/24206900991_YokeshwaranSenthilkumar1.pdf', NULL, '1', '2024-10-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-19 05:15:40', 104, '2024-10-19 12:25:06', 0, NULL, 1),
(22365, 'Ajay .M', '13', '7550343596', '', 'ajay635105@gmail.com', '2002-11-07', 21, '3', '2', 'Mani P', 'Daily Wages', 200000.00, 1, 0.00, 2.50, 'Krishnagiri', 'Krishnagiri', '2410190004', '', '1', 'upload_files/candidate_tracker/37208724067_AJAYRESUME1.pdf', NULL, '1', '2024-10-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-19 05:18:47', 104, '2024-10-19 12:25:11', 0, NULL, 1),
(22366, 'Sasikumar T', '13', '8807825740', '', 'sasi14112002@gmail.com', '2002-11-14', 21, '3', '2', 'Thangavel E', 'Farmer', 7000.00, 1, 0.00, 250000.00, 'Kallakurichi', 'Chennai', '2410190005', '', '1', 'upload_files/candidate_tracker/36140893262_Sasikumarresume.pdf', NULL, '1', '2024-10-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-19 05:18:57', 104, '2024-10-19 12:25:17', 0, NULL, 1),
(22367, 'Prekatesh s', '7', '8778062957', '', 'pragatesh178@gmail.com', '2001-03-17', 23, '2', '2', 'Sandira segar', 'Business', 30000.00, 1, 0.00, 20000.00, 'No 6/23 Arunachalam st nesapakkam chennai', 'Ashok nagar, chennai', '2410190006', '1', '1', 'upload_files/candidate_tracker/66218782933_Resume202410182005360000.pdf', NULL, '1', '2024-10-19', 0, '', '3', '59', '2024-10-22', 180000.00, '', '3', '2024-10-26', '2', 'Selected for Mf role final round interviewed by gokul and shortlisted', '7', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '2024-10-22', 1, '2024-10-19 05:25:42', 60, '2024-10-22 09:57:00', 0, NULL, 1),
(22368, 'Subhashini', '6', '9677280306', '8925293946', 'subhasundeep123@gmail.com', '2000-01-14', 24, '2', '1', 'Hariprasanth', 'Customer support', 35000.00, 2, 16000.00, 18000.00, 'Perambur', 'West Tambaram', '2410190007', '42', '2', 'upload_files/candidate_tracker/17581386087_SUBHASHINI.pdf', NULL, '1', '2024-10-19', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she exp high salary and not worth of it because she does Not have insurance sales exp', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-19 05:26:54', 104, '2024-10-19 03:41:06', 0, NULL, 1),
(22369, 'Yoga Prabha.N', '6', '9360808282', '9677280306', 'yogaprabha08@gmail.com', '2002-02-08', 22, '2', '2', 'Nagarajan.M', 'Police', 50000.00, 1, 0.00, 17000.00, 'Madurai', 'Teynampet', '2410190008', '42', '2', 'upload_files/candidate_tracker/39660337179_YogaPrabha.NResume.pdf', NULL, '3', '2024-10-19', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'REJECTED-  she was not fit for our process as she was lack of confidence', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-19 05:30:04', 104, '2024-10-19 03:41:36', 0, NULL, 1),
(22370, 'Deva R', '6', '9384713200', '', 'devaharshan.r1818@gmail.com', '2001-08-01', 23, '2', '2', 'P.Ramu', 'Market shop', 20000.00, 4, 18000.00, 20000.00, 'Kodambakkam', 'Kodambakkam', '2410190009', '57', '1', 'upload_files/candidate_tracker/75257940480_Devaresume1.pdf', NULL, '1', '2024-10-19', 15, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-19 05:38:22', 104, '2024-10-19 03:40:44', 0, NULL, 1),
(22371, 'R.AJAY', '6', '9962594684', '9514594684', 'yourajay13@gmail.com', '2000-05-13', 24, '2', '2', 'RAJA.J', 'DRIVER', 50000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2410190010', '56', '2', 'upload_files/candidate_tracker/70386086993_ajaypdf.pdf', NULL, '1', '2024-11-28', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication and convincing skills is low and interested in Customer support', '5', '1', '', '4', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-19 05:40:19', 104, '2024-11-28 06:45:53', 0, NULL, 1),
(22372, 'Syed Jamal u', '13', '9080728340', '9843145009', 'jj805101@gmail.com', '2003-11-04', 20, '3', '2', 'Syed Umar g', 'Drive', 100000.00, 2, 0.00, 300000.00, '41, Kamman kolai Street, Thiruvannamalai', '12/400, 4th Main Rd, Medavakkam, Chennai', '2410190011', '', '1', 'upload_files/candidate_tracker/87935969207_SYEDJAMALFullstackResumeNew.pdf', NULL, '1', '2024-10-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-19 05:47:41', 104, '2024-10-19 11:35:24', 0, NULL, 1),
(22373, 'Kathiravan m', '6', '9025784709', '9715698675', 'Kathiravankmk0@gmail.com', '2003-09-13', 21, '2', '2', 'Murugan', 'Daily labour', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2410190012', '27', '1', 'upload_files/candidate_tracker/54829476155_kathiravanmResume1.pdf', NULL, '1', '2024-10-19', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'SELECTED- HAVE GOOD COMMUNICATION ,EXP IN HANDLING CUSTOMERS WILL GIVE CTC 18K WILL JOIN ON MON', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-19 05:47:54', 104, '2024-10-19 03:41:19', 0, NULL, 1),
(22374, 'Karthik raja A', '6', '7639734333', '', 'Karthikaravinth206@gmail.com', '2001-02-28', 23, '2', '2', 'amirthalingam', 'gas welder', 40000.00, 1, 0.00, 16000.00, 'chennai thiruvotriyur', 'chennai thiruvotriyur', '2410190013', '50', '1', 'upload_files/candidate_tracker/9334951250_KarthikResume.pdf', NULL, '1', '2024-10-19', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he Interested in biz not sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-19 06:25:43', 104, '2024-10-19 03:40:29', 0, NULL, 1),
(22375, 'Karnan.K', '6', '7339234388', '9994153725', 'karnank2003@gmail.com', '2003-08-07', 21, '2', '2', 'Kuppusamy.E', 'Fruits business', 70000.00, 2, 0.00, 3.00, 'Kadapakkam', 'sholinganallur', '2410190014', '1', '1', 'upload_files/candidate_tracker/69335225819_karnan1.pdf', NULL, '1', '2024-10-19', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication And performance is not good, Also his attitude and voice is low', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-10-19 07:50:42', 104, '2024-10-19 03:41:48', 0, NULL, 1),
(22376, 'Varsha M', '6', '7904822086', '7904890829', 'Varshameipporul123@gmail.com', '1999-03-03', 25, '2', '2', 'Meipporul', 'Business', 30000.00, 2, 18000.00, 22000.00, 'Chennai', 'Chennai', '2410190015', '1', '2', 'upload_files/candidate_tracker/65464633797_Resume.docx', NULL, '1', '2024-10-19', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not worth of her asking salary and product view also she is down', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-10-19 08:02:35', 104, '2024-10-19 03:39:54', 0, NULL, 1),
(22377, '', '0', '8870042582', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410190016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-19 11:52:13', 0, NULL, 0, NULL, 1),
(22378, '', '0', '6374540898', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410190017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-19 01:06:54', 0, NULL, 0, NULL, 1),
(22379, '', '0', '9042899667', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410190018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-19 01:07:35', 0, NULL, 0, NULL, 1),
(22380, 'Madhumitha', '4', '9994968449', '9445480287', 'Madhumithas167@gmail.com', '2002-06-17', 22, '3', '2', 'Seenivasagan', 'Goldsmith', 25000.00, 1, 0.00, 15000.00, 'Karaikudi', 'Karaikudi', '2410190019', '', '1', 'upload_files/candidate_tracker/19495891814_MadhumithaResumeUPDATED.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-19 04:11:49', 1, '2024-10-19 04:15:55', 0, NULL, 1),
(22381, 'Anisha J', '11', '7395974073', '8122089178', 'anishajohn2810@gmail.com', '2002-10-28', 21, '2', '2', 'John k', 'Conductor MTC', 60000.00, 1, 0.00, 3.50, '58, Thirupur kumaran street, Arumbakkam', '58, Thirupur kumaran street, Arumbakkam', '2410200001', '1', '1', 'upload_files/candidate_tracker/34295742686_AnishaCV.pdf', NULL, '1', '2024-10-20', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for december month internship she was in 3rd sem', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-20 04:48:02', 104, '2024-10-20 10:28:53', 0, NULL, 1),
(22382, 'Aravind Vijay', '6', '9361212317', '7305384037', 'aravindvijay807@gmail.com', '2003-07-23', 21, '2', '2', 'vijay', 'Entrepreneur', 17000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2410200002', '1', '1', 'upload_files/candidate_tracker/32928081157_ARAVINDCV.pdf', NULL, '1', '2024-10-21', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected - having experience in achieving targets and good at interview ,also seeking requirement for a job will provide 14-15 take home', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-20 05:39:16', 104, '2024-10-21 05:48:56', 0, NULL, 1),
(22383, '', '0', '7676353653', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410200003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-20 07:23:20', 0, NULL, 0, NULL, 1),
(22384, 'K.surendhar', '6', '9043695660', '9840778160', 'surendhar8481@gmail.com', '2003-03-06', 21, '2', '2', 'K.kubenthiran, J.hemavathi', 'Fresher', 230000.00, 1, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2410200004', '1', '1', 'upload_files/candidate_tracker/86675609159_downloadresume.pdf', NULL, '1', '2024-10-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-10-20 12:05:36', 104, '2024-10-21 05:41:46', 0, NULL, 1),
(22385, 'Gowtham', '6', '9087108402', '', 'farmergowtham04@gmail.com', '2002-02-04', 22, '2', '2', 'Sivanpandian', 'Wages', 15000.00, 2, 0.00, 25000.00, 'Thoothukudi', 'Puducherry', '2410200005', '1', '1', 'upload_files/candidate_tracker/8088153222_CV2024052209041018.pdf', NULL, '1', '2024-10-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-20 12:10:17', 104, '2024-10-21 01:11:41', 0, NULL, 1),
(22386, '', '0', '7305546282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410210001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-21 04:02:24', 0, NULL, 0, NULL, 1),
(22387, 'Ponkumar S', '13', '9025585698', '', 'Spkumar1407@gmail.com', '1997-07-14', 27, '2', '2', 'Subbiah P', 'Farmer', 10000.00, 2, 12000.00, 25000.00, 'Tenkasi', 'Tenkasi', '2410210002', '1', '2', 'upload_files/candidate_tracker/68731710453_Kumarresume2023.pdf', NULL, '1', '2024-10-21', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '5', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-10-21 04:14:16', 104, '2024-10-21 10:38:22', 0, NULL, 1),
(22388, 'Chrispin', '4', '7094670470', '', 'Chrispi1611@gmail.com', '2001-03-30', 23, '2', '2', 'Shalat', 'Fisherman', 15000.00, 1, 0.00, 12000.00, 'Thiruvarur', 'Thiruvarur', '2410210003', '1', '1', 'upload_files/candidate_tracker/31787430381_1000086468compressed.pdf', NULL, '1', '2024-10-21', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT FOR TEESALES', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-21 04:31:24', 104, '2024-10-21 05:44:59', 0, NULL, 1),
(22389, 'Barath K', '13', '6379976620', '7358937787', 'barathkrishnamoorthy5585@gmail.com', '2001-05-12', 23, '3', '2', 'Krishnamoorthy S', 'Farmer', 10000.00, 1, 0.00, 1.50, 'Pondicherry', 'Kodambakkam', '2410210004', '', '1', 'upload_files/candidate_tracker/27636264384_BarathKResume1.pdf', NULL, '1', '2024-10-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-21 04:44:17', 104, '2024-10-21 10:22:05', 0, NULL, 1),
(22390, 'Rahul', '4', '8754872715', '9025582554', 'ratamilhul@gmail.com', '1998-07-29', 26, '2', '2', 'Annadurai', 'Self employed', 40000.00, 1, 0.00, 18000.00, 'Ariyalur district', 'Ariyalur district', '2410210005', '1', '1', 'upload_files/candidate_tracker/74307636449_Rahulresume.docx', NULL, '1', '2024-10-21', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'UNFIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-21 04:44:33', 104, '2024-10-21 05:45:21', 0, NULL, 1),
(22391, 'Kesavan G', '13', '9578834053', '', 'kesavangopal63@gmail.com', '2004-04-01', 20, '5', '2', 'Gopal', 'Farmer', 6000.00, 2, 0.00, 25000.00, 'Pudukkotai', 'Pudukkotai', '2410210006', '', '1', 'upload_files/candidate_tracker/28796817889_Resume12102024123455pm.pdf', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 04:51:20', 1, '2024-10-21 05:02:19', 0, NULL, 1),
(22392, 'Arunprakash M', '13', '9080860850', '', 'prakasharumprakashm@gmail.com', '2002-03-07', 22, '3', '2', 'Malaisamy', 'Cutting Master', 8000.00, 1, 0.00, 15000.00, 'Tirupur', 'Adambakkam', '2410210007', '', '1', 'upload_files/candidate_tracker/1674794732_ArunprakashBECse2023SWDeveloperSTMount.pdf', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 05:04:43', 1, '2024-10-21 05:12:29', 0, NULL, 1),
(22393, 'Balavignarajan P', '31', '9585333215', '', 'balavignarajan63@gmail.com', '2002-09-10', 22, '3', '2', 'Pandiyan', 'Junior assistant', 20000.00, 1, 0.00, 15000.00, 'Chidambaram', 'Chennai', '2410210008', '', '1', 'upload_files/candidate_tracker/1954602054_BalaResumeoriginal.pdf', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 05:04:45', 1, '2024-10-21 05:07:56', 0, NULL, 1),
(22394, 'SARDHAR HUSSEIN B', '13', '9791789433', '', 'sardharhussein18@gmail.com', '2002-05-13', 22, '3', '2', 'BASHEER AHAMED', 'Agriculture', 15000.00, 1, 0.00, 250000.00, 'Kallakurichi', 'Chennai', '2410210009', '', '1', 'upload_files/candidate_tracker/12419601476_SARDHARNPCV.pdf', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 05:08:24', 1, '2024-10-21 05:11:26', 0, NULL, 1),
(22395, 'Kabilan', '13', '9585929195', '6374588211', 'kabilan172001@gmail.com', '2001-07-02', 23, '3', '2', 'Ganesh V', 'Business', 400000.00, 1, 0.00, 200000.00, 'Dharmapuri', 'Chennai', '2410210010', '', '1', 'upload_files/candidate_tracker/33122618245_kabilanresume24.pdf', NULL, '1', '2024-10-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 05:12:21', 1, '2024-10-21 05:23:53', 0, NULL, 1),
(22396, 'Saravanan N', '31', '8428599646', '', 'saravan2306@gmail.com', '2003-06-23', 0, '5', '2', 'Nagarajan E', 'Two wheeler workshop', 15000.00, 1, 240000.00, 300000.00, 'Sengottai, Tenkasi district', 'Chennai', '2410210011', '', '2', 'upload_files/candidate_tracker/80239720197_NSaravananupdatedresume.pdf', NULL, '1', '2024-10-21', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 05:13:20', 1, '2024-10-21 05:20:58', 0, NULL, 1),
(22397, 'Yogeshwari R', '5', '8778859461', '9841396557', 'yogeshwarir2000@gmail.com', '2000-02-01', 24, '2', '2', 'Ramesh', 'Technician', 50000.00, 0, 0.00, 35000.00, 'chennai', 'chennai', '2410210012', '50', '2', 'upload_files/candidate_tracker/37378863603_Resume202421Oct2024105234.pdf', NULL, '1', '2024-10-21', 0, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-10-21 05:17:06', 104, '2024-10-21 05:51:55', 0, NULL, 1),
(22398, 'J S DHARANI', '13', '8428346825', '', 'dharani.subash02@gmail.com', '2002-01-08', 22, '6', '2', 'K Subash', 'IT Professional', 40000.00, 0, 500000.00, 500000.00, 'Chennai', 'Chennai', '2410210013', '', '2', 'upload_files/candidate_tracker/23333718194_JSDHARANIRESUME.docx', NULL, '1', '2024-10-21', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 05:17:46', 1, '2024-10-21 05:24:27', 0, NULL, 1),
(22399, 'VIJAY', '13', '6379928237', '8124971178', 'vijay.profession1@gmail.com', '2001-10-18', 23, '5', '2', 'Natarajan', 'Farmer', 40000.00, 1, 0.00, 20000.00, 'Ariyalur', 'Chennai', '2410210014', '', '1', 'upload_files/candidate_tracker/31250640707_VijayProfile.pdf', NULL, '1', '2024-10-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 05:20:00', 1, '2024-10-21 05:24:01', 0, NULL, 1),
(22400, 'Suresh balakrishna', '5', '8524875214', '7708426062', 'suresh_balakrishna@gmail.com', '1994-12-03', 29, '2', '1', 'Saritha', 'Private', 20000.00, 3, 15000.00, 17000.00, 'No 1/12 Dr iyya ramadoss kattupakkam Chennai 56', 'Poonama', '2410210015', '34', '2', 'upload_files/candidate_tracker/21579999510_sureshresume.pdf', NULL, '1', '2024-10-21', 2, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-10-21 05:23:28', 104, '2024-10-21 05:47:49', 0, NULL, 1),
(22401, 'K.Vijay', '5', '8072853502', '', 'vijaykumarbba973@gmail.com', '1998-08-18', 26, '2', '2', 'Kalayana Kumar', 'Business', 800000.00, 0, 21000.00, 27000.00, 'Chennai', 'Chennai', '2410210016', '56', '2', 'upload_files/candidate_tracker/26816742703_vijaynewresume.pdf', NULL, '2', '2024-10-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Abdul Team. Immedeate Joiner. Please negotiate the package and he can arrange Laptop and Join', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-10-21 05:24:36', 60, '2024-11-02 01:34:13', 0, NULL, 1),
(22402, '', '0', '8189847747', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410210017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-21 05:34:48', 0, NULL, 0, NULL, 1),
(22403, 'M.sakthiramnath', '11', '8825518500', '9585185002', 'sakthibharathi2875@gmail.com', '2002-03-29', 22, '3', '2', 'Muppuli', 'Coolie', 15000.00, 1, 0.00, 20000.00, 'Tenkasi', 'Tenkasi', '2410210018', '', '1', 'upload_files/candidate_tracker/85708862444_SAKTHIRAMNATH.MResume1.pdf', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 05:36:37', 1, '2024-10-21 05:43:21', 0, NULL, 1),
(22404, 'M.Hariharan', '6', '6369619429', '', '403haran@gmail.com', '2001-10-24', 22, '3', '2', 'M.Marimuthu', 'Coolie', 15000.00, 2, 0.00, 18000.00, 'Tenkasi', 'Tenkasi', '2410210019', '', '1', 'upload_files/candidate_tracker/97429331699_resumeCV.pdf', NULL, '1', '2024-10-21', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not good at communication', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-21 05:42:12', 104, '2024-10-21 05:52:36', 0, NULL, 1),
(22405, 'Abdul Karim', '13', '6381796586', '', 'abdulkarim14042@gmail.com', '2004-04-14', 20, '3', '2', 'Varsha fathima', 'House wife', 30000.00, 6, 0.00, 250000.00, 'Chennai', 'Chennai', '2410210020', '', '1', 'upload_files/candidate_tracker/75081334132_Abdulkarimresume31.pdf', NULL, '1', '2024-10-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 05:46:37', 1, '2024-10-21 05:50:39', 0, NULL, 1),
(22406, 'Parthasarathi S', '6', '9344861495', '', 'Parthasarathisubramanien@gmail.com', '2001-01-23', 23, '2', '2', 'Subramanien, Vedhanayagi', 'Student', 20000.00, 1, 0.00, 2.50, 'Pondicherry', 'Chennai', '2410210021', '50', '1', 'upload_files/candidate_tracker/76876299265_fsdresume.pdf', NULL, '1', '2024-10-21', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for out side calling work', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-21 05:52:23', 104, '2024-10-21 05:49:21', 0, NULL, 1),
(22407, 'Praveen B', '23', '8870503998', '', 'praveenb2201@gmail.com', '2001-01-22', 23, '3', '2', 'Bala murugan G', 'Office Assistant', 30000.00, 1, 180000.00, 250000.00, 'Tirunelveli', 'Chennai', '2410210022', '', '2', 'upload_files/candidate_tracker/52285432128_PraveenBCareers.pdf', NULL, '1', '2024-10-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 06:04:57', 1, '2024-10-21 06:08:46', 0, NULL, 1),
(22408, 'Umar Kathab', '2', '8220172902', '9994430416', 'umarkamil1472001@gmail.com', '2001-07-14', 23, '3', '2', 'Shahul Hameed.S', 'Accountant', 45000.00, 2, 0.00, 250000.00, 'Tirunelveli', 'Chennai', '2410210023', '', '1', 'upload_files/candidate_tracker/16054426552_UmarCV.pdf', NULL, '1', '2024-10-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 06:05:01', 1, '2024-10-21 06:08:49', 0, NULL, 1),
(22409, 'Britvasan Rajagopal', '13', '6385517658', '9080031480', 'britvasan12@gmail.com', '2002-11-12', 21, '6', '2', 'Sasikala', 'Homemaker', 10000.00, 5, 0.00, 22000.00, 'Chennai', 'Chennai', '2410210024', '', '1', 'upload_files/candidate_tracker/15978416758_Britvasan12Resume3compressed.pdf', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 06:07:55', 1, '2024-10-21 06:30:30', 0, NULL, 1),
(22410, 'Kandavel sha', '6', '8124201820', '', 'kandasha.ck.8124@gmail.com', '2001-04-15', 23, '2', '2', 'Balaji c.k', 'Business', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Kanchipuram', '2410210025', '57', '1', 'upload_files/candidate_tracker/59147013764_kandavelshaupdateResume.pdf', NULL, '3', '2024-10-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-21 06:09:52', 104, '2024-10-21 02:54:27', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22411, 'KAMATCHINATHAN S', '6', '9843687336', '', 'skamatchinathan435@gmail.com', '2002-04-17', 22, '2', '2', 'Saravanan', 'Daily wages', 15000.00, 1, 0.00, 20000.00, 'T. Kunnathur', 'T. Kunnathur', '2410210026', '1', '1', 'upload_files/candidate_tracker/96879315247_Kamatchinathan.pdf', NULL, '1', '2024-10-21', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-10-21 06:25:45', 104, '2024-10-23 04:31:27', 0, NULL, 1),
(22412, 'Anitha k', '6', '8148196407', '9080152564', 'anithakandhank@gmail.com', '2002-04-24', 22, '6', '2', 'Kandhan', 'Building contractor', 30000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2410210027', '', '1', 'upload_files/candidate_tracker/92365126983_ANITHAKRESUME.11.pdf', NULL, '1', '2024-10-21', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected ctc 16k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-21 06:26:36', 104, '2024-10-21 05:49:34', 0, NULL, 1),
(22413, 'Abishua a b', '4', '9607400058', '7598885266', 'abishua18rockz@gmail.com', '1992-08-10', 32, '2', '1', 'S b mishma', 'Teacher', 100000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2410210028', '45', '1', 'upload_files/candidate_tracker/81831456933_AbishuaResume.pdf', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 06:44:48', 1, '2024-10-21 06:49:24', 0, NULL, 1),
(22414, 'Ashok Govindharasu', '2', '6379841036', '', 'ashokgfsd@gmail.com', '2000-08-22', 24, '5', '2', 'Ayyandurai', 'Farmer', 14000.00, 4, 0.00, 20000.00, 'Salem', 'Sriperampudhur', '2410210029', '', '1', 'upload_files/candidate_tracker/87313198799_A.AshokGovindharasuresume.pdf', NULL, '1', '2024-10-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 06:53:31', 1, '2024-10-21 06:56:29', 0, NULL, 1),
(22415, 'Balaji Ravichandran', '2', '8668038473', '', 'balajiravi815@gmail.com', '2002-06-09', 22, '3', '2', 'revathy r', 'ouse wife', 30000.00, 1, 365000.00, 450000.00, 'Chennai', 'Chennai', '2410210030', '', '2', 'upload_files/candidate_tracker/84919322039_BALAJIRAVICHANDRAN.pdf', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 07:19:01', 1, '2024-10-21 07:21:43', 0, NULL, 1),
(22416, 'Boopesh', '33', '8973842568', '9003730858', 'pspboopesh1995@gmail.com', '1995-03-25', 29, '2', '2', 'No', 'Process Associate', 20000.00, 0, 20000.00, 25000.00, '29 south srinivasapuram lalgudi, Trichy (dt)', 'Kelambakkam', '2410210031', '50', '2', 'upload_files/candidate_tracker/29829292464_resumeboopeshorginal2.docx', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 07:22:51', 1, '2024-10-21 07:41:54', 0, NULL, 1),
(22417, '', '0', '7448533846', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410210032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-21 07:38:26', 0, NULL, 0, NULL, 1),
(22418, 'P.MUTHUKUMAR', '13', '9047731614', '9047452720', 'muthukumar66681@gmail.com', '1998-11-12', 25, '3', '2', 'PALANISAMY', 'Agriculture', 250000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2410210033', '', '1', 'upload_files/candidate_tracker/55105195907_MUTHUKUMAR.RESUME1.docx', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 07:53:22', 1, '2024-10-21 08:00:46', 0, NULL, 1),
(22419, 'VAHULTHASAN T', '13', '6382969831', '', 'tvahulthasan2020@gmail.com', '2003-01-20', 21, '5', '2', 'Thangavel', 'Farmer', 30000.00, 4, 0.00, 2.50, 'Vedaranyam', 'Vedaranyam', '2410210034', '', '1', 'upload_files/candidate_tracker/54665206696_newcv.pdf', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 07:53:29', 1, '2024-10-21 07:57:13', 0, NULL, 1),
(22420, 'Sri hariprasath v', '2', '9342014453', '9159343520', 'srihariprasathit24@gmail.com', '2003-03-24', 21, '6', '2', 'Priya v', 'Fresher', 60000.00, 0, 0.00, 20000.00, 'Karikalampakkam', 'Karikalampakkam', '2410210035', '', '1', 'upload_files/candidate_tracker/66947866914_srihariprasathMERNStackpondicherry.pdf', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 07:54:18', 1, '2024-10-21 07:57:41', 0, NULL, 1),
(22421, '', '0', '9324014453', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410210036', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-21 07:59:13', 0, NULL, 0, NULL, 1),
(22422, 'Poonguzhali.t.k', '11', '9578517044', '6384355123', 'Poonguzhalikathir@gmail.com', '2002-09-09', 22, '2', '2', 'thanka kathiravan', 'lawyer', 1200000.00, 1, 0.00, 3.50, 'vallalar nagar public office road nagapattinam', 'mylapore chennai', '2410210037', '1', '1', 'upload_files/candidate_tracker/58315038382_PoonguzhaliResume.pdf', NULL, '1', '2024-10-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2024-10-21 09:05:04', 104, '2024-10-21 05:47:37', 0, NULL, 1),
(22423, 'chakkaravarthy J', '13', '8270093205', '8056760282', 'chakkarajs1203@gmail.com', '2003-03-12', 21, '2', '2', 'Jagathesan', 'Farmer', 25000.00, 1, 0.00, 450000.00, 'Madurai', 'Madurai', '2410210038', '1', '1', 'upload_files/candidate_tracker/77372200026_chakkaravarthyresume.pdf', NULL, '1', '2024-10-21', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-21 09:28:43', 104, '2024-11-07 12:15:18', 0, NULL, 1),
(22424, 'T.Abdul rahman', '5', '7667890532', '9944078313', 'www.abdulthameen@gmail.com', '2001-02-13', 23, '2', '2', 'M.Thameen Ansari', 'Business', 20000.00, 1, 25000.00, 28000.00, 'Gummidipoondi', 'Washermanpet', '2410210039', '50', '2', 'upload_files/candidate_tracker/52809305070_ABDULRESUME1.pdf.pdf', NULL, '1', '2024-10-21', 0, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-10-21 10:36:54', 104, '2024-10-21 05:52:04', 0, NULL, 1),
(22425, 'Robin Derik', '22', '9514252110', '', 'rr.mountzion@gmail.com', '2002-10-14', 22, '5', '2', 'Stella', 'House Wife', 60000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Chennai', '2410210040', '', '1', 'upload_files/candidate_tracker/24188636102_Resume.pdf', NULL, '1', '2024-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-21 11:02:09', 1, '2024-10-21 11:07:22', 0, NULL, 1),
(22426, 'RajaSekar U', '6', '9710035425', '6381568766', 'rajarock9710035425@gmail.com', '1999-10-19', 25, '2', '2', 'Parent', 'Photo studio', 45000.00, 1, 15000.00, 25000.00, 'Karanodai', 'Karanodai', '2410210041', '56', '2', 'upload_files/candidate_tracker/63616342245_URAJASEKAR202410062052450000.pdf', NULL, '1', '2024-10-22', 30, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not ok for sales process, 2yrs exp sbi bankend process, 6m home loan process, communication not good.current salary 13.5k th , now ex th 20k.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-10-21 11:19:47', 104, '2024-10-22 05:35:16', 0, NULL, 1),
(22427, '', '0', '7550370657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410210042', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-21 02:10:09', 0, NULL, 0, NULL, 1),
(22428, 'Shaji K J', '13', '9629518064', '8300822750', 'shajikj81@gmail.com', '2003-05-29', 21, '6', '2', 'Jiji J', 'House wife', 30000.00, 1, 0.00, 200000.00, 'Nagercoil', 'Chennai', '2410220001', '', '1', 'upload_files/candidate_tracker/45171828722_SHAJIRESUME.pdf', NULL, '1', '2024-10-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-22 04:19:32', 104, '2024-10-22 10:26:55', 0, NULL, 1),
(22429, 'Dhivakar EV', '13', '9941033358', '9444455676', 'dhivavenkat2003@gmail.com', '2003-05-24', 21, '6', '2', 'Vanitha V', 'House wife', 20000.00, 1, 0.00, 350000.00, 'CHENNAI', 'CHENNAI', '2410220002', '', '1', 'upload_files/candidate_tracker/11880830509_DHIVAKAREV.pdf', NULL, '1', '2024-10-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 04:40:48', 1, '2024-10-22 04:45:50', 0, NULL, 1),
(22430, 'Jeevanantham V', '13', '9629983991', '', 'gvavenkat2002@gmail.com', '2002-08-20', 22, '6', '2', 'Venkateswaran C', 'Shop keeper', 30000.00, 2, 0.00, 350000.00, 'Vandavasi', 'Chennai', '2410220003', '', '1', 'upload_files/candidate_tracker/78004469163_JeevananthamResume.pdf', NULL, '1', '2024-10-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 04:41:58', 1, '2024-10-22 04:56:49', 0, NULL, 1),
(22431, 'Rohit Rejees d', '4', '9080183467', '', 'rohitrejees@gmail.com', '2002-03-31', 22, '2', '2', 'deva doss p', 'business-provisional store', 100000.00, 1, 0.00, 20000.00, 'thiruvottiyur chennai', 'thiruvottiyur chennai', '2410220004', '56', '1', 'upload_files/candidate_tracker/73499549428_CV.pdf', NULL, '1', '2024-10-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 04:48:06', 1, '2024-10-22 05:00:38', 0, NULL, 1),
(22432, 'Ashif imran', '6', '8838589280', '', 'imranashif192@gmail.com', '2004-03-01', 20, '2', '2', 'Jahabar nachiyar', 'Home maker', 20000.00, 2, 0.00, 15000.00, 'Nagapattinam', 'Chennai', '2410220005', '57', '1', 'upload_files/candidate_tracker/52288389424_AshifImranBBA2.pdf', NULL, '1', '2024-10-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too slow', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-22 04:55:08', 104, '2024-10-22 05:35:52', 0, NULL, 1),
(22433, '', '0', '8438223143', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410220006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-22 05:09:14', 0, NULL, 0, NULL, 1),
(22434, 'Ebsi Hena', '31', '8825678238', '8015877328', 'ebsisuganthi.13520011978@gmail.com', '2001-05-13', 23, '6', '2', 'K.Baskar', 'Security', 150000.00, 1, 300000.00, 300000.00, 'Chennai', 'Chennai', '2410220007', '', '2', 'upload_files/candidate_tracker/6920529921_EbsiHenaBaskarResume.pdf', NULL, '1', '2024-10-22', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 05:18:42', 1, '2024-10-22 05:22:39', 0, NULL, 1),
(22435, 'Arish C', '6', '8124441261', '', 'arishchandrasekar@gmail.com', '2003-06-26', 21, '2', '2', 'Chandrasekar', 'Conductor', 40000.00, 2, 0.00, 15000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2410220008', '50', '1', 'upload_files/candidate_tracker/83857528127_DOC20241021WA0000..pdf', NULL, '1', '2024-10-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-22 05:25:50', 104, '2024-10-22 12:00:51', 0, NULL, 1),
(22436, 'Sathishkumar. S', '4', '7305241657', '7305241654', 'sathishsakthi1502@gmail.com', '2002-02-15', 22, '2', '2', 'P. Sakthivel', '10th', 20000.00, 1, 0.00, 16000.00, 'Karaivetti main road kkkurichi post Ariyalur dt', 'Thirumanur near by union office', '2410220009', '1', '1', 'upload_files/candidate_tracker/51966232625_Sathishkumarresume.pdf', NULL, '1', '2024-10-22', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'UNFIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-22 05:27:24', 104, '2024-10-22 05:35:06', 0, NULL, 1),
(22437, 'Srinath S', '4', '8667609069', '', 'Srinath.s7080@gmail.com', '2002-07-24', 22, '2', '2', 'Saravanan', 'Panchayat union office', 300000.00, 1, 0.00, 18000.00, '541,main road Thirumanur ariyalur district', '541,main road Thirumanur ariyalur district', '2410220010', '1', '1', 'upload_files/candidate_tracker/11440004124_Srinath1.pdf', NULL, '1', '2024-10-22', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT FOR TELESALES', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-22 05:29:44', 104, '2024-10-22 05:34:55', 0, NULL, 1),
(22438, 'keerthipriyan', '13', '8220439081', '', 'skvpriyan@gmail.com', '2002-05-04', 22, '5', '2', 'samidurai', 'farmer', 24000.00, 0, 0.00, 300000.00, 'thiruvarur', 'guindy', '2410220011', '', '1', 'upload_files/candidate_tracker/18181055377_KeerthipriyanSResume.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 05:40:17', 1, '2024-10-22 05:47:13', 0, NULL, 1),
(22439, 'Sneha Elangovan', '13', '9940342716', '', 'snehaelangopmis@gmail.com', '2001-02-26', 23, '6', '2', 'Elangovan', 'Manager', 40000.00, 1, 0.00, 250000.00, 'Avadi,chennai', 'Avadi,Chennai', '2410220012', '', '1', 'upload_files/candidate_tracker/75886545753_Snehanew2024resume.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 05:44:33', 1, '2024-10-22 05:50:32', 0, NULL, 1),
(22440, 'J K Lakshmanan', '13', '6302156447', '8667527057', 'lakshmananjk37@gmail.com', '2004-05-17', 20, '5', '2', 'J M Kandaswamy', 'Weaver', 20000.00, 1, 0.00, 20000.00, 'Nagari', 'Chennai', '2410220013', '', '1', 'upload_files/candidate_tracker/39021997320_FullstackResume.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 05:44:51', 1, '2024-10-22 05:54:51', 0, NULL, 1),
(22441, 'J S Chandru', '13', '9398604963', '7670926716', 'chandrujs005@gmail.com', '2004-05-17', 20, '5', '2', 'J m Shanmugam', 'Weaver', 20000.00, 1, 0.00, 20000.00, 'Nagari, Sathrawada', 'Saidapetai, Chennai', '2410220014', '', '1', 'upload_files/candidate_tracker/81965596013_javaFullstackResumewithProjects.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 05:45:09', 1, '2024-10-22 05:53:31', 0, NULL, 1),
(22442, 'A.D.Dhinesh', '13', '6383478651', '', 'dhineshmaran007@gmail.com', '2003-03-30', 21, '6', '2', 'Dhandapani', 'Farmer', 100000.00, 1, 0.00, 180000.00, 'Cuddalore', 'Cuddalore', '2410220015', '', '1', 'upload_files/candidate_tracker/91986530995_Dhineshresume.pdf20240421182355000011.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 05:50:15', 1, '2024-10-22 05:54:41', 0, NULL, 1),
(22443, 'mohammed sameem.', '6', '9677576170', '9488884262', 'mohammedsameem1234@gmail.com', '2002-10-19', 22, '2', '2', 'syedali fathima', 'house wife', 20000.00, 1, 0.00, 20000.00, 'nagercovil', 'nagercovil', '2410220016', '50', '1', 'upload_files/candidate_tracker/72696730396_Resume.pdf', NULL, '1', '2024-10-22', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is ok but his voice is not clear and pronujnciation issue.sustainable doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-10-22 05:51:10', 104, '2024-10-22 05:37:33', 0, NULL, 1),
(22444, 'M Selvaraj', '5', '7010973621', '', 'selvarajmarimuthu14@gmail.com', '1996-12-10', 27, '2', '2', 'S Marimuthu', 'Army', 150000.00, 2, 550000.00, 450000.00, 'Kovilpatti', 'Maraimalai Nagar', '2410220017', '57', '2', 'upload_files/candidate_tracker/6747688947_Resume.pdf', NULL, '1', '2024-10-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-22 05:55:07', 104, '2024-10-22 12:18:12', 0, NULL, 1),
(22445, 'Paul Mathew E', '16', '9445674336', '6382020858', 'PAULMATHEW1932002@GMAIL.COM', '2002-03-19', 22, '2', '2', 'Edward Raj', 'Welder', 25000.00, 1, 16000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2410220018', '1', '2', 'upload_files/candidate_tracker/22216307266_PMresume.pdf', NULL, '1', '2024-10-22', 20, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication is not good', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2024-10-22 05:57:34', 104, '2024-10-22 05:38:19', 0, NULL, 1),
(22446, 'Dharani. C', '6', '7358411756', '9940589711', 'dharanicdharanic865@gmail.com', '2001-08-18', 23, '2', '2', 'Parent', 'House wife', 120000.00, 1, 15000.00, 20000.00, '17/25 Nehru park housing board, Chennai- 600084', '17/25 Nehru park housing board, Chennai- 600084', '2410220019', '1', '2', 'upload_files/candidate_tracker/77207662735_5829f99dd8dc478786a6beae4cde4e3eDharaniResume11.docx', NULL, '1', '2024-10-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-10-22 06:03:57', 104, '2024-10-22 05:36:23', 0, NULL, 1),
(22447, 'B HARSHAKUMAR', '6', '8754466598', '', 'Harshamesi@gmail.com', '1994-11-24', 29, '3', '1', 'Allowance P R', 'Housewife', 19000.00, 2, 19000.00, 21000.00, '10/258,4nd street 8th sector k k Nagar, chennai-78', '10/258,4nd street 8th sector k k Nagar, chennai-78', '2410220020', '', '2', 'upload_files/candidate_tracker/22236463242_resume.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 06:30:59', 1, '2024-10-22 07:54:25', 0, NULL, 1),
(22448, 'Dhinesh R', '13', '9042848520', '6374684450', 'dhineshruthish@gmail.com', '2009-10-22', 0, '5', '2', 'M.Ramesh', 'Farmer', 15000.00, 2, 0.00, 2.00, 'Chennai', 'Chennai', '2410220021', '', '1', 'upload_files/candidate_tracker/12024763433_DhineshJavaDeveloper..pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 06:37:33', 1, '2024-10-22 06:39:42', 0, NULL, 1),
(22449, 'Kaviya S', '13', '9629351140', '9488232729', 'kaviyassankar31@gmail.com', '2002-03-11', 22, '6', '2', 'Sankar. M', 'Bag shop', 40000.00, 3, 0.00, 300000.00, 'Vellore', 'Vellore', '2410220022', '', '1', 'upload_files/candidate_tracker/30760343754_WebDeveloper2.pdf', NULL, '1', '2024-10-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 06:42:10', 1, '2024-10-22 06:46:28', 0, NULL, 1),
(22450, 'Karthi', '34', '6382894856', '', 'EKARTHI0411@GMAIL.COM', '2000-11-04', 23, '3', '2', 'Elumalai', 'Labour', 15000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2410220023', '', '1', 'upload_files/candidate_tracker/36753115890_KarthiB.TechMech2022DevOpsEngineerOMR.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 06:43:37', 1, '2024-10-22 06:59:28', 0, NULL, 1),
(22451, 'Priyanka chopra', '4', '6382915761', '9500163172', 'Priyankachopra2315@gmail.com', '2001-10-15', 23, '2', '2', 'Julie. V', 'House wife', 15000.00, 3, 25000.00, 30000.00, 'Chennai', 'Chennai', '2410220024', '50', '2', 'upload_files/candidate_tracker/14657620838_Priyanka.pdf', NULL, '1', '2024-10-22', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Expected salary high\nWorked in lead model\nWonxquott suitable for cold calling', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-10-22 07:01:40', 104, '2024-10-22 05:37:14', 0, NULL, 1),
(22452, 'Jasmeenfathima', '6', '7358234097', '9150578157', 'AYRAA9797@GMAIL.COM', '1997-07-09', 27, '2', '2', 'Father-alaudeen', 'No shop', 30000.00, 4, 0.00, 20000.00, 'Royapuram', 'Royapuram', '2410220025', '1', '1', 'upload_files/candidate_tracker/73256334131_Untitled7.pdf', NULL, '1', '2024-10-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit for Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-10-22 07:08:59', 104, '2024-10-22 05:35:36', 0, NULL, 1),
(22453, 'Ajith Kumar', '34', '6379841252', '9364105656', 'ajith.s26032000@gmail.com', '2000-03-26', 24, '3', '2', 'Selvaraj K', 'Catering services', 30000.00, 2, 17000.00, 18000.00, 'Maduravoyal', 'Maduravoyal', '2410220026', '', '2', 'upload_files/candidate_tracker/19877009769_AJITHKUMAR.S.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 07:53:34', 1, '2024-10-22 08:08:51', 0, NULL, 1),
(22454, 'Santhosh', '6', '7550198325', '9551712489', 'santhosh45680@gmail.com', '2004-06-12', 20, '2', '2', 'Parents', 'Daily waves', 15000.00, 1, 8000.00, 15000.00, 'Chennai tondiarpet', 'Chennai', '2410220027', '50', '2', 'upload_files/candidate_tracker/5569226453_santhoshresume.pdf', NULL, '1', '2024-10-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Convincing and communication is better and then interested in sales once confirm DOJ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-22 08:03:05', 104, '2024-10-22 05:37:46', 0, NULL, 1),
(22455, 'Praveen. K', '13', '9976902704', '9842440704', 'karthikpraveen9842@gmail.com', '2003-02-26', 21, '3', '2', 'Kanagaraj. K', 'Spinning mill fitter', 20000.00, 1, 0.00, 240000.00, 'Erode', 'Chennai', '2410220028', '', '1', 'upload_files/candidate_tracker/70898104420_Resume.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 08:05:07', 1, '2024-10-22 08:15:59', 0, NULL, 1),
(22456, 'Madhan Kumar B', '31', '9597998608', '9965376550', 'madhankumar8000@gmail.com', '1999-06-02', 25, '5', '2', 'N/A', 'N/A', 25000.00, 1, 0.00, 500000.00, 'Tiruppur', 'Chennai', '2410220029', '', '1', 'upload_files/candidate_tracker/5626845536_MadhanProfessionalResume.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 08:05:49', 1, '2024-10-22 08:08:24', 0, NULL, 1),
(22457, 'Mohammed Yusuf Jumail M', '13', '8610745762', '', 'yusuf861074@gmail.com', '2001-01-14', 23, '3', '2', 'Mohammed Rafiq Ali A', 'Share Market', 20000.00, 2, 0.00, 240000.00, 'Erode, Tamil Nadu', 'Perungudi, Chennai', '2410220030', '', '1', 'upload_files/candidate_tracker/55716041742_YusufResume.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 08:06:12', 1, '2024-10-22 08:12:46', 0, NULL, 1),
(22458, 'Sharmila M', '13', '6369723364', '8838015296', 'sharmimahiii@gmail.com', '2002-09-22', 22, '3', '2', 'Mohan Kumar N', 'Business', 20000.00, 1, 0.00, 25000.00, 'Komarapalayam', 'Komarapalayam', '2410220031', '', '1', 'upload_files/candidate_tracker/47441194312_SharmilaMResume2.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 08:16:22', 1, '2024-10-22 08:20:13', 0, NULL, 1),
(22459, 'ARUN ELANGOVAN J', '6', '6379826133', '8148006133', 'shreepandian7@gmail.com', '2002-06-09', 22, '2', '2', 'JAYARAJ R', 'Civil Engineer', 30000.00, 1, 0.00, 300000.00, 'Chennai', 'TRICHY', '2410220032', '50', '1', 'upload_files/candidate_tracker/14763486435_Resume20102024111043AM.pdf', NULL, '1', '2024-10-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected - having good communication skill and english fluence good and will give 15k ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-22 08:17:48', 104, '2024-10-22 05:36:59', 0, NULL, 1),
(22460, 'Gopinath', '6', '8939993502', '', 'gopinathsaravanan2003@gmail.com', '2003-06-19', 21, '2', '2', 'Saravanan', 'Office', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2410220033', '50', '1', 'upload_files/candidate_tracker/7852163096_GopinathResume..pdf', NULL, '1', '2024-10-22', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not ok about the communication and confidence', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-22 08:21:26', 104, '2024-10-22 05:36:38', 0, NULL, 1),
(22461, 'Jeswin Raja', '6', '6369649135', '', 'jeswinraja2647@gmail.com', '1999-02-26', 25, '2', '2', 'Jeeva latha', 'House wife', 20000.00, 2, 18000.00, 22000.00, 'Manalikarai', 'Manalikarai', '2410220034', '57', '2', 'upload_files/candidate_tracker/16439849414_JeswinResumeeos.pdf', NULL, '1', '2024-10-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit for the Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-22 09:09:40', 104, '2024-10-22 05:36:08', 0, NULL, 1),
(22462, 'Aravind Rajasekaran', '2', '9025206069', '', 'aravindr2220@gmail.com', '2003-02-10', 21, '6', '2', 'Rajasekaran', 'Construction supervisor', 70000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2410220035', '', '1', 'upload_files/candidate_tracker/87965376447_CvAravindR.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 09:19:32', 1, '2024-10-22 09:22:08', 0, NULL, 1),
(22463, 'Vishnu sankar S P', '13', '9841014672', '9840794551', 'vishnusankar2511@gmail.com', '2002-11-25', 21, '6', '2', 'S padmanathan', 'Business', 200000.00, 1, 0.00, 400000.00, '111/44 kalathiayappa street,choolai,chennai-600112', 'Chennai', '2410220036', '', '1', 'upload_files/candidate_tracker/83244273279_Vishnuresume.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 09:40:06', 1, '2024-10-22 09:47:56', 0, NULL, 1),
(22464, 'Manoj Kumar k', '4', '7299269035', '9094574594', 'manojmanoj34242@gmail.com', '2002-02-26', 22, '2', '2', 'Karthikeyan e', 'Plumber', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2410220037', '50', '1', 'upload_files/candidate_tracker/56645317080_ManojkumarResume.pdf', NULL, '1', '2024-10-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 09:43:45', 1, '2024-10-22 09:46:12', 0, NULL, 1),
(22465, 'vijayvenkatesh s', '13', '7871222185', '9176228552', 'vijayvenkatesh2103@gmail.com', '2003-08-21', 21, '5', '2', 'Amudhavalli', 'Billing accounter', 200000.00, 1, 0.00, 250000.00, 'chennai', 'chennai', '2410220038', '', '1', 'upload_files/candidate_tracker/98174050071_Vijayvenkatesh.SResume111.pdf', NULL, '1', '2024-10-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 09:59:24', 1, '2024-10-22 10:05:28', 0, NULL, 1),
(22466, 'Sathish Kumar G', '2', '8637453908', '', 'sathishkg41@gmail.com', '1999-11-19', 24, '3', '2', 'Ganesa pandi', 'Business', 9000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2410220039', '', '2', 'upload_files/candidate_tracker/31823535116_SathishResumeUpdated.pdf', NULL, '1', '2024-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 10:08:11', 1, '2024-10-22 10:14:26', 0, NULL, 1),
(22467, 'Savitha', '6', '8124139294', '6383058543', 'Savitha16092003@gmail.com', '2003-09-16', 21, '2', '2', 'Surulimani', 'Coolie', 30000.00, 1, 0.00, 16.00, 'Theni', 'Chennai', '2410220040', '50', '1', 'upload_files/candidate_tracker/24032366388_savithacv.pdf', NULL, '1', '2024-12-23', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and voice not good and not interst for calls field so not fit for my team', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-22 11:44:48', 154, '2024-12-23 12:33:59', 0, NULL, 1),
(22468, '', '0', '8301327979', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410220041', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-22 12:03:06', 0, NULL, 0, NULL, 1),
(22469, 'Aravindh S', '4', '9360899785', '8925218360', 'Aravindhcoc0@gmail.com', '2001-05-22', 23, '5', '2', 'Ms kannan', 'Civil contractor', 30000.00, 2, 0.00, 300000.00, 'Cuddalore', 'Perungudi', '2410220042', '', '1', 'upload_files/candidate_tracker/21218767569_AravindhResume11.pdf', NULL, '3', '2024-10-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 12:06:31', 1, '2024-10-22 12:10:28', 0, NULL, 1),
(22470, 'hepsi sweety thomas', '6', '6369822343', '6381620067', 'hepsimarina@gmail.com', '2004-07-11', 20, '2', '2', 'paul thomas', 'house keeping', 12000.00, 1, 0.00, 18.00, 'broadway', 'braodway', '2410220043', '1', '1', 'upload_files/candidate_tracker/93450192825_HEPSISWEETYTHOMAS3.pdf', NULL, '1', '2024-10-23', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is not fit for sales,. communication good but she interested in IT domain, sustainability issue', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2024-10-22 12:08:36', 104, '2024-10-23 03:18:23', 0, NULL, 1),
(22471, 'S Visweswaran', '5', '9087459638', '', 'visweswaran.s18e1137@gmail.com', '2001-03-03', 23, '2', '2', 'Malathi S', 'Office assistant', 72000.00, 1, 318000.00, 318000.00, 'Chennai City Corporation', 'Chennai City Corporation', '2410220044', '1', '2', 'upload_files/candidate_tracker/19593690556_VISWESWARANresume13.pdf', NULL, '1', '2024-10-24', 0, '', '3', '59', '2024-11-04', 330000.00, '', NULL, '2025-01-07', '1', 'Communication Ok No sustainability in the previous exp just worked with Shriram Finance through third party for 4 months with 3.18 LPA including bonus As Sriram sir committed a salary package proceeding with the same', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1022', '', '55735', '55557', '2024-11-04', 1, '2024-10-22 12:39:34', 60, '2024-11-04 10:27:59', 0, NULL, 1),
(22472, 'Yogeshwari', '4', '8939458980', '7010410077', 'yogeshwarid2003@gmail.com', '2003-10-30', 20, '5', '2', 'Priya', 'Homemaker', 5000.00, 1, 0.00, 15.00, 'Kanchipuram', 'Kanchipuram', '2410220045', '', '1', 'upload_files/candidate_tracker/73155311337_YogeshwariDCV202407171346010000.pdf', NULL, '2', '2024-10-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-22 04:04:07', 1, '2024-10-22 04:07:45', 0, NULL, 1),
(22473, 'JENIFER', '6', '8248192651', '', 'itz.jeni0205@gmail.com', '2003-05-02', 21, '2', '2', 'MOHAN', 'Farmer', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'Porur,Chennai', '2410220046', '1', '1', 'upload_files/candidate_tracker/98915180631_JENIFERRESUME.pdf', NULL, '1', '2024-10-24', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit for Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-10-22 04:51:20', 104, '2024-10-24 04:55:19', 0, NULL, 1),
(22474, 'Sowmiya S', '4', '6381092012', '', 'sowmiya2091@gmail.com', '2001-09-20', 23, '2', '2', 'Suthakar', 'Farmer', 30000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2410220047', '1', '1', 'upload_files/candidate_tracker/26578730290_Sowmiresume.pdf', NULL, '1', '2024-10-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'other domain not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-22 04:57:57', 104, '2024-10-23 03:19:06', 0, NULL, 1),
(22475, 'Silpa Pachuru', '13', '8688538381', '', 'silpapachuru55@gmail.com', '2001-01-11', 23, '3', '2', 'Pachuru Venkateswarlu', 'Farmer', 9000.00, 1, 0.00, 4.00, 'SPSR Nellore', 'SPSR Nellore', '2410230001', '', '1', 'upload_files/candidate_tracker/4779619067_PACHURUSILPARESUME.pdf', NULL, '1', '2024-10-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 04:19:40', 1, '2024-10-23 04:24:27', 0, NULL, 1),
(22476, 'Monisha', '13', '6381162381', '9381131404', 'monisha2302official@gmail.com', '2002-04-23', 22, '6', '2', 'Punithavel', 'Welding', 50000.00, 2, 0.00, 500000.00, 'Chennai', 'Chennai', '2410230002', '', '1', 'upload_files/candidate_tracker/10969318649_Monishaupdatedresume.pdf', NULL, '1', '2024-10-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 04:19:53', 1, '2024-10-23 04:23:13', 0, NULL, 1),
(22477, 'Rajeshwari M', '4', '7904825578', '8870346300', 'rajeshwarimano32@gmail.com', '2003-09-11', 21, '2', '2', 'Ananthi M', 'House wife', 50000.00, 1, 0.00, 15000.00, 'East Street, Painganadu,Mannargudi', 'painganadu, Mannargudi', '2410230003', '1', '1', 'upload_files/candidate_tracker/77030247675_Rajeshwarim3.pdf', NULL, '1', '2024-10-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-23 04:38:20', 104, '2024-10-23 03:19:17', 0, NULL, 1),
(22478, 'Vignesh P', '13', '9361472352', '', 'Smartvignesh614@gmail.com', '2002-02-06', 22, '3', '2', 'Palani Kumar P', 'Business', 15000.00, 1, 0.00, 13000.00, '5/52 mainroad Kappalur madurai', 'Ambattur Chennai', '2410230004', '', '1', 'upload_files/candidate_tracker/37064856179_VigneshPmyresume2.pdf', NULL, '1', '2024-10-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 04:42:35', 1, '2024-10-23 04:55:53', 0, NULL, 1),
(22479, 'Jessica Jasmine R', '6', '8608736078', '9003163788', 'jessyjas2003@gmail.com', '2003-03-09', 21, '2', '2', 'Richard Ruban J', 'Admin', 16000.00, 1, 0.00, 15000.00, 'Perambur Chennai', 'Perambur Chennai', '2410230005', '50', '1', 'upload_files/candidate_tracker/85939453283_CV2024081310511055.pdf', NULL, '1', '2024-10-23', 0, '', '3', '59', '2024-11-04', 168000.00, '', '3', '2025-03-29', '2', 'Selected for RE Role Communication Ok Fresher Need to train from Scratch Give a try and check in 7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55735', '55557', '2024-11-04', 1, '2024-10-23 04:55:03', 60, '2024-11-02 04:44:03', 0, NULL, 1),
(22480, 'Janarthanan', '4', '9500503296', '', 'Janasmart44@gmail.com', '1995-07-13', 29, '2', '1', 'Thilothi', 'House wife', 20000.00, 1, 210000.00, 22000.00, 'Gummidipundi', 'Tambaram', '2410230006', '57', '2', 'upload_files/candidate_tracker/48477263315_resume13220231352372811322023135237546.pdf', NULL, '3', '2024-10-23', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 05:04:47', 1, '2024-10-23 05:13:02', 0, NULL, 1),
(22481, 'Dhinakaran M', '15', '9500335254', '', 'dhinakaranmani2@gmail.com', '2004-10-16', 20, '6', '2', 'Manimaran K', 'Farmer', 75000.00, 1, 0.00, 20000.00, 'Vandavasi', 'Kattupakkam', '2410230007', '', '1', 'upload_files/candidate_tracker/41371982081_DHINAKARANMFULLSTACKRESUME3.pdf', NULL, '1', '2024-10-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 05:08:08', 1, '2024-10-23 05:11:43', 0, NULL, 1),
(22482, '', '0', '9500938799', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410230008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-23 05:19:06', 0, NULL, 0, NULL, 1),
(22483, 'Prasath', '6', '9585112577', '7904871505', 'Prasathbba7@gmail.com', '1997-08-04', 27, '2', '2', 'Perumal', 'Vivsayam', 60000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'Mylapore', '2410230009', '50', '1', 'upload_files/candidate_tracker/86647043868_cv11728882368982.pdf', NULL, '3', '2024-10-23', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-23 05:30:24', 104, '2024-10-23 03:17:30', 0, NULL, 1),
(22484, 'Sneha.J', '6', '7904236586', '', 'joesneha143@gmail.com', '2001-05-12', 23, '2', '2', 'Joe .A', 'Business', 40.00, 1, 0.00, 18.00, 'dindigul', 'Chennai', '2410230010', '50', '1', 'upload_files/candidate_tracker/55576387572_ResumeSneha.pdf', NULL, '1', '2024-10-23', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not ok with timing and having interest in other profession', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-23 05:41:44', 104, '2024-10-23 03:15:13', 0, NULL, 1),
(22485, 'M KARUMARi', '20', '9791019294', '', 'mkmaari2000@gmail.com', '2000-12-01', 23, '2', '2', 'E Mariyappan', 'Business', 25000.00, 3, 0.00, 250000.00, 'Alandhur', 'Alandhur', '2410230011', '50', '1', 'upload_files/candidate_tracker/67517033798_mariresume.pdf', NULL, '1', '2024-10-23', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication not well and only looking for telecalling work not interest to out side call so nt fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-23 05:46:35', 104, '2024-10-23 03:14:58', 0, NULL, 1),
(22486, 'Arun B', '23', '6383181365', '', 'arunb0385@gmail.com', '2001-10-11', 23, '5', '2', 'Babuselvam M', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Cuddalore', 'Chennai', '2410230012', '', '1', 'upload_files/candidate_tracker/89829339514_Arunresume.pdf', NULL, '1', '2024-10-23', 0, '', '3', '59', '2024-11-26', 96000.00, '', '1', '1970-01-01', '1', 'Fresher Agreed with the terms and conditioonsd need to check in 15 days and confirm', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-23 05:52:01', 60, '2024-11-26 10:07:59', 0, NULL, 1),
(22487, 'Janani', '6', '8300337042', '', 'jananinathan2001@gmail.com', '2001-12-01', 22, '2', '2', 'Shanmuganathan', 'Business', 200000.00, 1, 0.00, 20000.00, 'mayiladuthurai', 'Chennai', '2410230013', '50', '1', 'upload_files/candidate_tracker/42756135694_JananisResume5removed.pdf', NULL, '1', '2024-10-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is a complete IT graduate also she is not comfort with the distance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-23 05:54:51', 104, '2024-10-23 03:18:47', 0, NULL, 1),
(22488, 'Mohamed riaz khan m', '6', '9940195361', '8608291904', 'rkmohmedriazkhan1953@gmail.com', '2009-10-23', 0, '2', '2', 'Mohideen', 'Mutton stall', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2410230014', '57', '1', 'upload_files/candidate_tracker/5434214480_DOC20240207WA0004..pdf', NULL, '1', '2024-10-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-23 05:57:04', 104, '2024-10-23 01:09:39', 0, NULL, 1),
(22489, 'Preethi R', '6', '6369175399', '8072536899', 'rpreethi380@gmail.com', '2000-08-11', 24, '2', '2', 'Rajendran', 'Farmer', 25000.00, 2, 17500.00, 20000.00, 'Namakkal', 'Chennai', '2410230015', '50', '2', 'upload_files/candidate_tracker/58098278006_DocumentfromDora.pdf', NULL, '1', '2024-10-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-23 05:57:08', 104, '2024-10-23 12:59:59', 0, NULL, 1),
(22490, 'Ramesh P', '6', '9360918121', '', 'rameshram2551@gmail.com', '2001-05-25', 23, '2', '2', 'Pachamuthu', 'Farmer', 30.00, 1, 18000.00, 22000.00, 'SALEM', 'Tambaram', '2410230016', '50', '2', 'upload_files/candidate_tracker/21569899487_RameshResume.pdf', NULL, '1', '2024-10-23', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-10-23 05:57:08', 104, '2024-10-23 03:19:39', 0, NULL, 1),
(22491, 'Keerthi.j', '6', '6383252872', '', 'keerthijs1104@gmail.com', '2000-04-11', 24, '2', '2', 'Jeganathan.k', 'Business', 30000.00, 1, 15000.00, 20000.00, 'Namakkal', 'Chennai', '2410230017', '50', '2', 'upload_files/candidate_tracker/72741365965_keerthi.pdf', NULL, '1', '2024-10-23', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-10-23 05:57:17', 104, '2024-10-23 03:19:27', 0, NULL, 1),
(22492, '', '0', '6374272682', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410230018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-23 06:07:50', 0, NULL, 0, NULL, 1),
(22493, 'Sathishkumar Anbuselvan', '13', '6381895532', '8015211152', 'sathishkumar.anbuselvan@gmail.com', '1999-06-16', 25, '5', '2', 'Kalaiyarasi', 'Software developer', 500000.00, 1, 0.00, 30000.00, 'Tiruvannamalai', 'Pallikaranai', '2410230019', '', '1', 'upload_files/candidate_tracker/96546295356_SathishkumarResume.pdf', NULL, '1', '2024-10-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 06:15:18', 1, '2024-10-23 06:21:47', 0, NULL, 1),
(22494, 'Heyram', '13', '9344934606', '', 'heyram3324@gmail.com', '2004-03-03', 20, '3', '2', 'Manigandan', 'Roofing', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2410230020', '', '1', 'upload_files/candidate_tracker/89762072103_.pdf', NULL, '1', '2024-10-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 06:17:09', 1, '2024-10-23 06:21:10', 0, NULL, 1),
(22495, 'Barathkumar', '13', '9787276012', '8760597706', 'barathkumar8787@gmail.com', '2002-11-25', 21, '5', '2', 'Sankar', 'Farmer', 10000.00, 1, 0.00, 22000.00, 'Cuddalore', 'Chennai', '2410230021', '', '1', 'upload_files/candidate_tracker/64970751030_BARATHKUMARResume2.01728368646865Barathkumar.pdf', NULL, '1', '2024-10-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 06:28:54', 1, '2024-10-23 06:37:38', 0, NULL, 1),
(22496, 'Sarathi S', '13', '6374517428', '', 'sarathii2011@gmail.com', '2003-11-20', 20, '6', '2', 'Subramani S', 'Weaving', 72000.00, 1, 0.00, 3.00, 'Karur', 'Chennai', '2410230022', '', '1', 'upload_files/candidate_tracker/14994646577_Sarathii001.pdf', NULL, '1', '2024-10-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 06:41:47', 1, '2024-10-23 07:16:40', 0, NULL, 1),
(22497, 'S.sundaresan', '13', '7397115187', '6381582455', 'sundarsundar20258@gmail.com', '2004-03-26', 20, '3', '2', 'Sankar.k', 'Developer', 5000.00, 1, 0.00, 18000.00, 'Villupuram', 'Chennai', '2410230023', '', '1', 'upload_files/candidate_tracker/53712176038_developer1.pdf', NULL, '1', '2024-10-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 06:45:38', 1, '2024-10-23 06:53:26', 0, NULL, 1),
(22498, 'Punniyamoorthi. G', '13', '6381582455', '7397115187', 'ppunniyamoorthi22@gmail.com', '2004-06-07', 20, '5', '2', 'Shiva', 'Front End devoloper', 120000.00, 1, 0.00, 20000.00, 'Chennai', 'Velacherry', '2410230024', '', '1', 'upload_files/candidate_tracker/63158518655_PUNNIYAMOORTIG3.pdf', NULL, '1', '2024-10-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 06:45:56', 1, '2024-10-23 06:53:28', 0, NULL, 1),
(22499, 'Prasanth P', '13', '9787309199', '', 'prashanthparthiban603@gmail.com', '2001-09-18', 23, '5', '2', 'Parthiban P', 'Software engineer', 35000.00, 2, 0.00, 20000.00, 'Vellore', 'Vellore', '2410230025', '', '1', 'upload_files/candidate_tracker/11441398670_PRASANTHPRESUME.pdf', NULL, '1', '2024-10-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 06:48:36', 1, '2024-10-23 06:51:56', 0, NULL, 1),
(22500, 'J.Prince Xavier', '6', '7305907321', '9840348042', 'Princexavier615@gmail.com', '2004-06-25', 20, '2', '2', 'F.X.Jokkin Sagayanathan', 'Business', 40000.00, 1, 0.00, 19000.00, 'madhavaram,Chennai-600 060', 'madhavaram,Chennai-600 060', '2410230026', '1', '1', 'upload_files/candidate_tracker/86667824715_CVPrince.pdf', NULL, '1', '2024-10-23', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected -having interest in it and also having  plans to switch over in future', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-23 06:50:45', 104, '2024-10-23 03:15:24', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22501, '', '0', '9150211728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410230027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-23 07:49:32', 0, NULL, 0, NULL, 1),
(22502, 'Mugeshprasanth', '13', '7810003966', '', 'mugeshravimnr@gmail.com', '2000-11-15', 23, '3', '2', 'Ravi', 'Labour', 25000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2410230028', '', '1', 'upload_files/candidate_tracker/14442100602_MugeshprasanthRESUME.pdf', NULL, '1', '2024-10-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 07:51:26', 1, '2024-10-23 08:11:21', 0, NULL, 1),
(22503, 'D.Rishika', '6', '7810073620', '8072261586', 'rishikad516@gmail.com', '2002-05-07', 22, '2', '2', 'Domonic.c', 'Auto driver', 10000.00, 1, 20000.00, 23000.00, 'Mangala puram 4th Street chetpet Chennai 600031', 'Mangala puram 4th Street chetpet Chennai 600031', '2410230029', '50', '2', 'upload_files/candidate_tracker/24927894729_Resume05102024022758PM.pdf', NULL, '1', '2024-10-23', 20, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Req for customer support', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-10-23 09:43:18', 104, '2024-10-23 06:44:31', 0, NULL, 1),
(22504, 'D.Devavarshini', '5', '9884101912', '7305434910', 'devavarshini3110@gmail.com', '2002-10-31', 21, '2', '2', 'M.Daivaseelan', 'Supervisor', 40000.00, 1, 20000.00, 22000.00, 'Royapettah', 'Aynavaram', '2410230030', '50', '2', 'upload_files/candidate_tracker/57821597088_VARSHINIRESUME.pdf', NULL, '1', '2024-10-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for RE Profile salary to be negotiated', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-10-23 09:44:47', 104, '2024-10-23 06:43:57', 0, NULL, 1),
(22505, 'Karthikeyan. D', '13', '9789783634', '', 'karthikeyandotd@gmail.com', '2001-01-10', 0, '6', '2', 'Thanalakshmi', 'Coolie (Daily wages)', 5000.00, 1, 0.00, 15000.00, 'Thoothukudi', 'Chennai', '2410230031', '', '1', 'upload_files/candidate_tracker/26064500196_Resumedk.pdf', NULL, '1', '2024-10-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 09:48:17', 1, '2024-10-23 09:53:12', 0, NULL, 1),
(22506, 'Gayathri', '4', '9342693757', '', 'gayathrirajasekar2112@gmail.com', '1999-12-21', 24, '2', '2', 'Mala.p', 'House wife', 17000.00, 2, 15000.00, 18000.00, 'Purasaivakam', 'Purasaivakam', '2410230032', '56', '2', 'upload_files/candidate_tracker/67464853443_GayathriCV1.pdf', NULL, '1', '2024-10-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 10:02:36', 1, '2024-10-23 10:21:22', 0, NULL, 1),
(22507, 'Logeshwari.M', '4', '7395908338', '', 'mohanapriya03bcom@gmail.com', '1995-04-03', 29, '2', '1', 'Joshua.M', 'Painting', 18000.00, 1, 15000.00, 18000.00, 'Chintadripet', 'Chintadripet', '2410230033', '56', '2', 'upload_files/candidate_tracker/59157787986_Logeshwari.pdf', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 10:03:40', 1, '2024-10-23 10:21:42', 0, NULL, 1),
(22508, 'Divya', '13', '6379964198', '', 'divyaaanand001@gmail.com', '2001-07-09', 23, '3', '2', 'Anandha Perumal', 'Tailor', 72000.00, 2, 0.00, 300000.00, 'Thoothukudi', 'Chennai', '2410230034', '', '1', 'upload_files/candidate_tracker/27856851086_DivyaAnand202409171008520000.pdf', NULL, '1', '2024-10-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 10:03:44', 1, '2024-10-23 10:07:14', 0, NULL, 1),
(22509, 'thamizharasan', '6', '6369283260', '', 'thamizh.17@gmail.com', '2002-06-17', 22, '2', '2', 'dhanraj d', 'eelecation', 23000.00, 1, 15000.00, 18000.00, 'chetpet', 'chetpet', '2410230035', '56', '2', 'upload_files/candidate_tracker/70802629553_DOC20240915WA0094.docx', NULL, '1', '2024-10-24', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-10-23 10:44:57', 104, '2024-10-24 04:58:06', 0, NULL, 1),
(22510, 'Maglin', '4', '8838330154', '8608073416', 'sofiamaglin@gmail.com', '2004-07-20', 20, '5', '2', 'Vijayan Vincent paul', 'OA', 15000.00, 1, 15000.00, 17000.00, 'Perambur', 'Perambur', '2410230036', '', '2', 'upload_files/candidate_tracker/24037309379_maglinresume.docx', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-23 01:59:08', 1, '2024-10-23 02:01:58', 0, NULL, 1),
(22511, '', '0', '8124261624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410240001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-24 03:48:28', 0, NULL, 0, NULL, 1),
(22512, 'Geetha T', '6', '9952975410', '9597658923', 'geethathulasi09@gmail.com', '2003-10-09', 21, '2', '1', 'Thulasi T', 'Carpenter', 15000.00, 1, 0.00, 20000.00, 'No 48 west namachivaya puram Choolaimedu', 'No 48 west namachivaya puram choolaimedu chennai', '2410240002', '50', '1', 'upload_files/candidate_tracker/30813783784_GEETHA.docx', NULL, '3', '2024-10-24', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate have interested in it and also not have clear idea about longitivity in this company', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-24 04:30:22', 104, '2024-10-24 04:53:01', 0, NULL, 1),
(22513, 'Mohanraj I', '13', '9042827169', '9500479523', 'mohanraj25092003@gmail.com', '2003-09-25', 21, '3', '2', 'Iyyanar R', 'Hostel Warden', 15000.00, 3, 0.00, 300000.00, 'Kallanai,Thiruvannamalai - 606755', 'Ramapuram, Chennai', '2410240003', '', '1', 'upload_files/candidate_tracker/61792304330_MohanrajB.ECSE8.0CGPAJAVA.pdf', NULL, '1', '2024-10-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 04:32:28', 1, '2024-10-24 04:38:34', 0, NULL, 1),
(22514, 'Kalaimani k', '13', '6383846399', '', 'Kalaimanig180653@gmail.com', '2001-07-06', 23, '3', '2', 'Kamalakkanan', 'Driver', 25.00, 2, 0.00, 2.00, 'V.parangani', 'Chennai', '2410240004', '', '1', 'upload_files/candidate_tracker/79692311284_Kalaimani.pdf', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 04:35:31', 1, '2024-10-24 05:05:18', 0, NULL, 1),
(22515, 'Vignesh', '13', '7358852401', '9842351598', 'abdvignesh17@gmail.com', '2001-12-17', 22, '5', '2', 'S.D Siva kumar', 'Hotel server', 25000.00, 2, 0.00, 15000.00, 'Madurai', 'Madurai', '2410240005', '', '1', 'upload_files/candidate_tracker/4469854874_S.SVigneshResume.pdf', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 04:36:48', 1, '2024-10-24 04:43:51', 0, NULL, 1),
(22516, 'Hariharan M M', '13', '6382783503', '8531006415', 'hariharanmm6382@gmail.com', '2002-02-05', 22, '6', '2', 'Mohan M R', 'Weaving', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Madurai', '2410240006', '', '1', 'upload_files/candidate_tracker/76336142431_Hariharan.net....Resume1.pdf', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 04:38:23', 1, '2024-10-24 04:43:13', 0, NULL, 1),
(22517, 'Akash', '13', '8870660825', '', 'akashn0219@gmail.com', '2009-10-24', 0, '3', '2', 'Narayanan', 'Weaver', 150000.00, 1, 0.00, 150000.00, 'Gummidipoondi', 'Velachery', '2410240007', '', '1', 'upload_files/candidate_tracker/79331886218_AkashN2023PythonFullStackDeveloper.pdf', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 04:40:52', 1, '2024-10-24 04:47:27', 0, NULL, 1),
(22518, 'Yokesh', '13', '9087754764', '', 'yokeshvishva@gmail.com', '2000-04-22', 24, '3', '2', 'Thanikachalam', 'Lorry driver', 13000.00, 1, 0.00, 5000.00, 'Ranipet', 'Chennai', '2410240008', '', '1', 'upload_files/candidate_tracker/91251538375_yokeshTM.sccs2023JavaFullStackBesanttechnology.pdf', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 04:42:08', 1, '2024-10-24 05:30:05', 0, NULL, 1),
(22519, 'Girish A S', '6', '8754558425', '', 'mailgirish2004@gmail.com', '2004-04-14', 20, '2', '2', 'Sumathi', 'Teacher', 25000.00, 1, 0.00, 18000.00, '4/7a 1st cross street poombhugar nagar Kolathur', '4/7a 1st cross street poombhugar nagar Kolathur', '2410240009', '1', '1', 'upload_files/candidate_tracker/67242777443_GIRISHResume.pdf', NULL, '1', '2024-10-24', 0, '', '3', '59', '2024-11-07', 180000.00, '', '3', '2024-12-09', '1', 'Fresher need to check and confirm in the training period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '2024-11-07', 1, '2024-10-24 04:43:25', 60, '2024-11-07 10:22:18', 0, NULL, 1),
(22520, 'Harikaran. B', '6', '8838887383', '', 'harikaran10641@gmail.com', '2004-05-23', 20, '2', '2', 'Boopathy. M', 'Water supply', 18000.00, 1, 0.00, 18000.00, '2/3 west mada street kolathur chennai- 99', '2/3 west mada street kolathur Chennai- 99', '2410240010', '1', '1', 'upload_files/candidate_tracker/15022919605_Harikaran.Bresume202410231052140000.pdf', NULL, '1', '2024-10-24', 0, '', '3', '59', '2024-11-05', 192000.00, '', '3', '2024-11-15', '1', 'Communication Average Fresher Pressure handling doubts long run doubts 5050 check in 7 days and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '2024-11-05', 1, '2024-10-24 04:44:26', 60, '2024-11-07 12:43:24', 0, NULL, 1),
(22521, 'Hiba Ahammed', '2', '7736800744', '', 'hibaahammed02@gmail.com', '2009-10-24', 0, '3', '2', 'Ahammed', 'Driver', 30000.00, 4, 0.00, 25000.00, 'Nellikuth, Manjeri, Malappuram', 'Choolai,Arumukku Street', '2410240011', '', '1', 'upload_files/candidate_tracker/69127714292_hibaahammedResume.pdf', NULL, '1', '2024-10-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 04:59:20', 1, '2024-10-24 05:07:23', 0, NULL, 1),
(22522, 'Pragathiswaran', '13', '6385278276', '9790108650', 'gspragathiswaran@gmail.com', '2001-05-03', 23, '2', '2', 'Vannimuthu', 'Tailor', 10000.00, 1, 0.00, 20000.00, 'Trichy', 'Chennai', '2410240012', '27', '1', 'upload_files/candidate_tracker/73810406_RESUME.pdf', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 05:23:29', 1, '2024-10-24 05:27:43', 0, NULL, 1),
(22523, 'R.jenish', '13', '8870943521', '', 'jenishjenishr@gmail.com', '2001-02-24', 23, '6', '2', 'A.robins', 'Fisher man', 18000.00, 1, 0.00, 20000.00, 'Kanayakumari', 'Chennai', '2410240013', '', '1', 'upload_files/candidate_tracker/85178742512_Jenishresume2.pdf', NULL, '1', '2024-10-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 05:25:53', 1, '2024-10-24 05:38:46', 0, NULL, 1),
(22524, 'Nandha kumar.S', '6', '6383049364', '', 'snandha55@Gmail.com', '2001-05-05', 23, '2', '2', 'Siva Kumar', 'Business', 400000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2410240014', '1', '1', 'upload_files/candidate_tracker/41498258555_Resumenandha.pdf', NULL, '1', '2024-10-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate performacne and communication is good.his attire and voice is also good.will check with him in the training period sugessted cTC as 15k per Month and candidate accepted it that.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2024-10-24 05:38:29', 104, '2024-10-24 04:56:03', 0, NULL, 1),
(22525, 'S manimaran', '6', '7338929186', '7358011282', 'lfmanimaran269@gmail.com', '2000-09-26', 24, '2', '2', 'M.sivanasan', 'Housekeeper', 15000.00, 1, 0.00, 16000.00, 'Ayanavaram', 'Ayanavaram', '2410240015', '1', '1', 'upload_files/candidate_tracker/63929176604_newmsresumewithphoto.pdf', NULL, '1', '2024-10-24', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-10-24 05:39:54', 104, '2024-10-24 04:53:31', 0, NULL, 1),
(22526, 'Rakesh G', '13', '7867001509', '', 'rakrakesh2002@gmail.com', '2009-10-24', 0, '6', '2', 'Gnanamoorthy', 'Farmer', 30000.00, 2, 0.00, 400000.00, 'Chennai', 'Chennai', '2410240016', '', '1', 'upload_files/candidate_tracker/86149846269_RakeshResumenew.pdf', NULL, '1', '2024-10-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 06:07:51', 1, '2024-10-24 06:10:26', 0, NULL, 1),
(22527, 'LINGESH D', '13', '9384125959', '', 'lingeshd2003@gmail.com', '2003-10-12', 21, '3', '2', 'Devendhiran', 'Farmer', 20000.00, 1, 0.00, 400000.00, 'Thirukkalukundram Chengalpattu', 'Thirukkalukundram Chengalpattu', '2410240017', '', '1', 'upload_files/candidate_tracker/50410646923_LingeshResume.pdf', NULL, '1', '2024-10-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 06:08:56', 1, '2024-10-24 06:15:11', 0, NULL, 1),
(22528, 'A Mohamed Adhill', '13', '8489879700', '9025912631', 'madhill520@gmail.com', '2001-09-20', 23, '5', '2', 'Abbas Ali A', 'Shop Keeper', 15000.00, 1, 0.00, 180000.00, 'Cuddalore', 'Cuddalore', '2410240018', '', '1', 'upload_files/candidate_tracker/40347959184_MohamedAdhillResume.pdf', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 06:12:11', 1, '2024-10-24 06:15:57', 0, NULL, 1),
(22529, 'Ajay Chandren', '14', '8667099332', '9486366417', 'ajaychandren121@gmail.com', '2001-03-01', 23, '3', '2', 'S Rajaraman', 'Business man', 40000.00, 1, 0.00, 400000.00, 'Mayiladuthurai', 'Chennai', '2410240019', '', '1', 'upload_files/candidate_tracker/99271531234_resume4.pdf', NULL, '1', '2024-10-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-24 06:34:00', 104, '2024-10-25 06:07:54', 0, NULL, 1),
(22530, 'Durga Devi', '6', '6384645220', '9841555920', 'durgadiyadd@gmail.com', '2002-04-01', 22, '2', '2', 'Sasikala', 'House wife', 35000.00, 1, 15000.00, 20000.00, 'Chennai', 'Avadi', '2410240020', '50', '2', 'upload_files/candidate_tracker/43154563127_resumedurga.pdf', NULL, '1', '2024-10-24', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-24 07:17:40', 104, '2024-10-24 04:53:53', 0, NULL, 1),
(22531, 'KRITHIK KUMAR V', '13', '7305204977', '', 'krithik106@gmail.com', '2003-02-12', 21, '3', '2', 'Venkatesan D', 'Turner', 15000.00, 1, 0.00, 300000.00, 'Chennai', 'Cheese', '2410240021', '', '1', 'upload_files/candidate_tracker/43308073878_KRITHIKKUMARRESUME.pdf', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 07:19:17', 1, '2024-10-24 07:21:57', 0, NULL, 1),
(22532, 'Mukesh MK', '14', '9042410299', '', 'mukesh.be25@gmail.com', '2002-12-25', 21, '3', '2', 'Murugan A', 'Self employed', 10000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2410240022', '', '1', 'upload_files/candidate_tracker/48341289029_MukeshCV.pdf', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 07:28:54', 1, '2024-10-24 08:59:09', 0, NULL, 1),
(22533, 'E.jeba selvi', '6', '9884720658', '8939258475', 'Jebaselvi7777@gmail.com', '2002-01-17', 22, '2', '2', 'Parent', 'Buisness', 35000.00, 3, 16000.00, 20000.00, 'Chennai', 'Chennai', '2410240023', '50', '2', 'upload_files/candidate_tracker/87129362862_JEBASELVIE.pdf', NULL, '1', '2024-10-24', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not worth of her asking salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-24 07:42:20', 104, '2024-10-24 04:55:03', 0, NULL, 1),
(22534, 'arisankar r', '4', '8667464046', '9043851560', 'arisankar12@gmail.com', '1995-06-17', 29, '2', '1', 'nandhini s', 'administration assistant', 40000.00, 2, 26000.00, 30000.00, 'chennai', 'erode', '2410240024', '50', '2', 'upload_files/candidate_tracker/38339195062_ARISANKARResume.pdf', NULL, '1', '2024-10-28', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 08:10:37', 1, '2024-10-24 08:17:37', 0, NULL, 1),
(22535, 'sundarakanthan R', '14', '9884163253', '', 'sundarakanthan88@gmail.com', '2002-10-21', 22, '3', '2', 'Raju B', 'Self employed', 10000.00, 0, 0.00, 350000.00, 'Chennai', 'Chennai', '2410240025', '', '1', 'upload_files/candidate_tracker/80635655959_SundarakanthanRresume.pdf', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 08:49:03', 1, '2024-10-24 08:59:08', 0, NULL, 1),
(22536, 'Aarthi', '20', '9940504168', '', 'aarthiiaarthii497@gmail.com', '2004-08-09', 20, '2', '2', 'Bhuvaneshwari', 'Cooli', 15000.00, 0, 0.00, 16000.00, 'Ambedkar Nagar', 'Chennai', '2410240026', '50', '1', 'upload_files/candidate_tracker/9166299328_DocumentfromRthy9.docx', NULL, '1', '2024-10-24', 0, '', '3', '59', '2024-10-28', 168000.00, '', NULL, '2025-03-04', '2', 'Communication Ok fresher much preferred non voice can give a try and check', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-10-28', 1, '2024-10-24 09:00:03', 60, '2025-03-20 04:39:27', 0, NULL, 1),
(22537, 'Santhosh Kumar D', '2', '7358309147', '', 'santhosh.mce1234@gmail.com', '2002-07-15', 22, '3', '2', 'Dhasarathan V', 'Driver', 10000.00, 2, 0.00, 400000.00, 'Chennai', 'Chennai', '2410240027', '', '1', 'upload_files/candidate_tracker/22410227761_SanthoshKumar1.pdf', NULL, '1', '2024-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 09:02:43', 1, '2024-10-24 09:07:24', 0, NULL, 1),
(22538, 'Nandhithaa j', '4', '8939256154', '9791747968', 'nandhithaajagadeesan2022@gmail.com', '2000-03-25', 24, '2', '2', 'Jagadeesan', 'Senior manager', 3.50, 0, 0.00, 18000.00, 'Perambur', 'Perambur', '2410240028', '1', '1', 'upload_files/candidate_tracker/22313292149_NANDHITHAAJresume11.docx', NULL, '1', '2024-10-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-10-24 09:35:24', 104, '2024-10-24 04:57:46', 0, NULL, 1),
(22539, 'Jaisree', '4', '9677206612', '6379862080', 'jaisreemitha2005@gmail.com', '2001-12-19', 22, '2', '2', 'Mary', 'House keeper', 20000.00, 1, 15000.00, 20000.00, 'Perambur', 'Perambur', '2410240029', '57', '2', 'upload_files/candidate_tracker/42979872361_DOC20241001WA0001..pdf', NULL, '1', '2024-10-24', 30, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-10-24 09:46:20', 104, '2024-10-24 04:51:40', 0, NULL, 1),
(22540, 'Vignesh', '5', '9884325831', '', 'Vicky1vicky16042000@gmail.com', '2000-04-16', 24, '3', '2', 'Vignesh', '1', 2.00, 1, 17000.00, 21000.00, 'Chennai', 'Chennai', '2410240030', '', '2', 'upload_files/candidate_tracker/87687701749_VIGNESHResume.pdf', NULL, '3', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 12:37:50', 1, '2024-10-24 12:41:43', 0, NULL, 1),
(22541, 'Ragul S', '6', '6374307961', '7094623103', 'sragul869@gmail.com', '2002-06-02', 22, '2', '2', 'Sivalingam M', 'Farmer', 30000.00, 3, 0.00, 16000.00, 'Uthangarai,Krishnagiri .', 'Chromepet, Chennai.', '2410240031', '56', '1', 'upload_files/candidate_tracker/64670591125_s.ragulResume4.pdf', NULL, '1', '2024-10-25', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is intrested in full stock so not fit for insurance sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-24 12:49:19', 104, '2024-10-25 06:04:08', 0, NULL, 1),
(22542, 'Aarthi R', '4', '9025139488', '', 'aarthimahes22@gmail.com', '2002-06-22', 22, '2', '2', 'Ramalingam M', 'TNSTC', 50000.00, 2, 0.00, 15000.00, 'Thirumanur (Ariyalur dst)', 'Thirumanur (Ariyalur dst)', '2410240032', '1', '1', 'upload_files/candidate_tracker/47719266005_AarthiRFresherprofile.pdf', NULL, '1', '2024-10-25', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-24 01:23:39', 104, '2024-10-25 06:02:49', 0, NULL, 1),
(22543, 'HARIVIGNESH D', '6', '8946082837', '7639448596', 'harivigneshharivignesh821@gmail.com', '2002-10-28', 21, '2', '2', 'DURAIRAJ G', 'FARMER', 18000.00, 1, 0.00, 28000.00, 'NO5/6 SVS NAGAR 2ND MAIN ROD, VALASARAVAKKAM', 'NO5/6 SVS NAGAR 2ND MAIN ROD, VALASARAVAKKAM', '2410240033', '1', '1', 'upload_files/candidate_tracker/56889821650_HARIVIGNESHRESUME.pdf', NULL, '1', '2024-10-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'job needed person,ctc 16k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-10-24 01:30:26', 104, '2024-10-25 06:03:36', 0, NULL, 1),
(22544, '', '0', '7358695223', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410240034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-24 01:39:59', 0, NULL, 0, NULL, 1),
(22545, 'Sibi', '6', '8248474633', '9444055597', 'vrksibi@gmail.com', '2001-06-01', 23, '3', '2', 'Karthigaraj', 'Farmer', 30000.00, 0, 18200.00, 25000.00, '1/610 North Street, inaipriyal vattam,kumbakonam', '3 Bharathidhasan street,chrompet, Chennai', '2410240035', '', '2', 'upload_files/candidate_tracker/91288885208_Sibicv3.pdf', NULL, '2', '2024-10-29', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-24 02:40:54', 1, '2024-10-24 08:24:49', 0, NULL, 1),
(22546, '', '0', '7845164727', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-25 03:31:26', 0, NULL, 0, NULL, 1),
(22547, 'LOKESH KUMAR', '2', '6379675696', '', 'lokeshkumars2506@gmail.com', '2003-06-25', 21, '3', '2', 'SURESH BABU D', 'Electrician', 15000.00, 1, 0.00, 350000.00, 'Vellore', 'Vellore', '2410250002', '', '1', 'upload_files/candidate_tracker/29932786620_LOKESHATS.pdf', NULL, '1', '2024-10-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-25 03:31:44', 104, '2024-10-25 10:19:17', 0, NULL, 1),
(22548, '', '0', '8940062501', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410250003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-25 04:07:04', 0, NULL, 0, NULL, 1),
(22549, 'Ranjith Kandasamy', '13', '7558137302', '', 'ranjithkandasamy07@gmail.com', '2002-10-07', 22, '6', '2', 'Kandasamy', 'Driver', 20000.00, 2, 0.00, 350000.00, 'Pondicherry', 'Pondicherry', '2410250004', '', '1', 'upload_files/candidate_tracker/91868893288_Ranjithkandasamy.resume.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 04:19:12', 1, '2024-10-25 04:24:04', 0, NULL, 1),
(22550, 'Sakthi Kumar S', '13', '7418305087', '7558172031', 'sakthikumar3115@gmail.com', '2004-07-15', 20, '3', '2', 'Soundarrajan S', 'Farmer', 15000.00, 2, 0.00, 300000.00, 'Thanjavur, Tamil Nadu', 'Taramani, Chennai', '2410250005', '', '1', 'upload_files/candidate_tracker/24623346079_SakthiResume.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 04:24:14', 1, '2024-10-25 04:28:23', 0, NULL, 1),
(22551, 'Premkumar V', '13', '9944015140', '6369910050', 'premkumarvpk10@gmail.com', '2003-11-22', 20, '6', '2', 'Velayutham p', 'Working at hotel', 15000.00, 1, 0.00, 300000.00, 'Kumbakonam', 'Okkiyampet Chennai', '2410250006', '', '1', 'upload_files/candidate_tracker/62164308124_Premkumar.pdf', NULL, '1', '2024-10-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 04:24:41', 1, '2024-10-25 04:28:16', 0, NULL, 1),
(22552, 'Praveen Kumar', '13', '9952944790', '', 'praveen.99529@gmail.com', '2002-04-10', 22, '3', '2', 'c.tharani', 'High court o.a', 4.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2410250007', '', '1', 'upload_files/candidate_tracker/69853450680_PRAVEENKUMARB.TECH2024.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 04:43:15', 1, '2024-10-25 04:46:50', 0, NULL, 1),
(22553, 'Abirami M', '22', '6383074893', '', 'abi201002@gmail.com', '2002-10-20', 22, '3', '2', 'R.G Malaiyarasan', 'Self employed', 25000.00, 1, 0.00, 25000.00, 'Ayanavaram,Chennai 600023', 'Ayanavaram Chennai 600023', '2410250008', '', '1', 'upload_files/candidate_tracker/98503104293_MAbirami.pdf', NULL, '1', '2024-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 04:58:01', 1, '2024-10-26 05:28:30', 0, NULL, 1),
(22554, 'Naveenkumar G', '2', '9789542741', '9025565276', 'Nk6595063@gmail.com', '2003-02-15', 21, '6', '2', 'Ganesan', 'Carpender', 50000.00, 0, 0.00, 14000.00, 'Karur', 'Karur', '2410250009', '', '1', 'upload_files/candidate_tracker/65991526777_res.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 04:59:50', 1, '2024-10-25 05:13:47', 0, NULL, 1),
(22555, 'Jeeva R', '2', '9360527629', '9789542741', 'rkjeeva489@gmail.com', '2003-06-17', 21, '6', '2', 'Ramasaamy M', 'Labor work', 36000.00, 0, 0.00, 13000.00, 'Kaval karan patti, karur', 'Thoripakkam, Chennai', '2410250010', '', '1', 'upload_files/candidate_tracker/28213499302_JeevaRP.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 05:02:08', 1, '2024-10-25 05:08:50', 0, NULL, 1),
(22556, 'vrishin vaibhav', '22', '9123573369', '', 'vrishinvaibhav@gmail.com', '2003-08-21', 21, '5', '2', 'hemachandran', 'student', 25000.00, 0, 0.00, 400000.00, 'Ponneri', 'Ponneri', '2410250011', '', '1', 'upload_files/candidate_tracker/31597075533_vrishinvaibhavresume.pdf', NULL, '1', '2024-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 05:04:51', 1, '2024-10-25 06:28:35', 0, NULL, 1),
(22557, 'harikrishnan d', '13', '6379454770', '9384524770', 'haridhanamjothi@gmail.com', '2001-04-29', 23, '3', '2', 'dhanasekaran n', 'business', 30000.00, 1, 350000.00, 300000.00, 'salem', 'chennai', '2410250012', '', '2', 'upload_files/candidate_tracker/3525876997_HarikrishnanDCV.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 05:06:21', 1, '2024-10-25 05:12:29', 0, NULL, 1),
(22558, 'Logeshwaran', '2', '8124976034', '', 'Logesh.official@outlook.com', '2009-10-25', 0, '3', '2', 'Bhuneshwari', 'Accountant', 30000.00, 1, 0.00, 25000.00, 'Pondicherry', 'Pondicherry', '2410250013', '', '1', 'upload_files/candidate_tracker/78865678550_logeshwaranresumenew.pdf', NULL, '1', '2024-10-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 05:06:31', 1, '2024-10-25 05:10:27', 0, NULL, 1),
(22559, 'Gokul C', '31', '9626006907', '', 'gokul.msc18@gmail.com', '2001-08-06', 23, '3', '2', 'Chinnaraj', 'Student', 10000.00, 1, 0.00, 18000.00, 'Tirupattur District', 'Chennai', '2410250014', '', '1', 'upload_files/candidate_tracker/26749641544_GokulResumeChennai.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 05:11:23', 1, '2024-10-25 05:24:36', 0, NULL, 1),
(22560, 'Hemarajan', '13', '8675215969', '', 'hemarajanhemarajen@gmail.com', '2004-02-05', 20, '5', '1', 'Pitchai', 'Coolie', 10000.00, 2, 0.00, 150000.00, 'Coimbatore', 'Coimbatore', '2410250015', '', '1', 'upload_files/candidate_tracker/87103992014_hemarajanresume1.pdf', NULL, '1', '2024-10-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 05:12:10', 1, '2024-10-25 05:17:51', 0, NULL, 1),
(22561, 'RonyFrancis', '6', '7550297788', '', 'ronyfrancis42@gmail.com', '2002-12-24', 21, '2', '2', 'Augustine.j', 'Buisness', 40000.00, 2, 0.00, 18000.00, 'chennai', 'chennai', '2410250016', '42', '1', 'upload_files/candidate_tracker/86985899062_RonyCV.pdf', NULL, '1', '2024-10-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for RE Role, salary negotiation pending candidate ready for immediate joining', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-10-25 05:16:44', 104, '2024-10-25 12:45:52', 0, NULL, 1),
(22562, 'Maruthupandi R', '6', '9080330151', '', 'maruthu1808@gmail.com', '2001-08-18', 23, '2', '2', 'Alagammal R', 'TNEB', 40000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2410250017', '42', '1', 'upload_files/candidate_tracker/66966935161_MaruthusResume.pdf', NULL, '1', '2024-10-25', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for RE profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-10-25 05:17:13', 104, '2024-10-25 12:45:41', 0, NULL, 1),
(22563, 'Daniel rajasekar', '2', '9500681420', '', 'danielrajasekar29@gmail.com', '1997-06-29', 27, '3', '2', 'R.Bala sundaram', 'Bio medical engineer .rt', 50000.00, 3, 0.00, 20000.00, 'No:4,5 9th Street, New Bethlehem, Ambur', 'Flat-F1, 6/5, 4th cross,Saligramam, Chennai.', '2410250018', '', '1', 'upload_files/candidate_tracker/54922141994_DanielrajasekarResume.pdf', NULL, '1', '2024-10-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-25 05:21:37', 104, '2024-10-25 11:14:01', 0, NULL, 1),
(22564, 'Bilson', '31', '7200921560', '8438061570', 'bilsonjildas27@gmail.com', '2000-07-07', 24, '3', '2', 'Jiprit jildas', 'Fisherman', 24000.00, 2, 0.00, 20000.00, 'Rameshwaram', 'Chennai', '2410250019', '', '1', 'upload_files/candidate_tracker/51976068866_JBILSON.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 05:42:02', 1, '2024-10-25 05:47:56', 0, NULL, 1),
(22565, 'Govarthana K', '3', '9842894691', '9344390884', 'govarthana45@gmail.com', '2001-09-30', 23, '3', '2', 'Karuppannan V', 'Farmer', 20000.00, 2, 0.00, 250000.00, 'Salem', 'Chennai', '2410250020', '', '1', 'upload_files/candidate_tracker/6134604106_GOVARTHANAKFrontend.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 05:42:37', 1, '2024-10-25 05:45:21', 0, NULL, 1),
(22566, '', '0', '9500681420', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410250021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-25 05:43:34', 0, NULL, 0, NULL, 1),
(22567, 'Kalpana', '6', '9047692342', '8012881084', 'kalpanavasan84@gmail.com', '1999-05-15', 25, '2', '2', 'M. Seenivasan', 'Chennai', 100000.00, 4, 0.00, 15000.00, 'Chennai', 'Chennai', '2410250022', '50', '1', 'upload_files/candidate_tracker/12215186968_KalpanaResumecompressed.pdf', NULL, '1', '2024-10-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected job needed person ctc 14k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-25 06:01:47', 104, '2024-10-25 06:03:53', 0, NULL, 1),
(22568, 'Abithal D', '22', '6369383217', '9962925381', 'abithaldeva2002@gmail.com', '2002-12-24', 21, '3', '2', 'Devapriyam j', 'Working in production department', 30000.00, 0, 0.00, 18000.00, 'Villivakkam', 'Villivakkam', '2410250023', '', '1', 'upload_files/candidate_tracker/96926635360_AbiResume.pdf2.pdf', NULL, '1', '2024-10-26', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-25 06:10:14', 104, '2024-10-26 09:59:13', 0, NULL, 1),
(22569, 'Rubasri', '4', '9344970172', '', 'rubasriprincy@gmail.com', '2002-06-22', 22, '2', '2', 'Dhandayuthapani.N', 'Farmer', 20.00, 1, 0.00, 15000.00, 'Kovilur', 'Kovilur', '2410250024', '1', '1', 'upload_files/candidate_tracker/36886805798_RUBASRIRESUME1.docx', NULL, '1', '2024-10-25', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-25 06:12:18', 104, '2024-10-25 06:03:07', 0, NULL, 1),
(22570, 'Vasanth Kumar K', '6', '7868836648', '9843072964', 'sandyvasanthkumar05@gmail.com', '1998-03-03', 26, '2', '2', 'KRISHNA V', 'Formar', 35000.00, 0, 13000.00, 20000.00, 'NO 138 BAJANAI KOVIL STREET PERIYAPALAYAM', 'NO 138 BAJANAI KOVIL STREET PERIYAPALAYAM', '2410250025', '50', '2', 'upload_files/candidate_tracker/89969650307_VasanthResume.pdf', NULL, '3', '2024-10-25', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not completed  degree and low profile also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-25 06:14:40', 104, '2024-10-25 06:04:26', 0, NULL, 1),
(22571, 'MULLAIVENDAN K', '2', '9025532548', '6380510044', 'kmullai2223@gmail.com', '2003-02-22', 21, '6', '2', 'KALAICHELVAN S', 'Cooly', 5833.00, 1, 0.00, 300000.00, 'Vellore', 'Vellore', '2410250026', '', '1', 'upload_files/candidate_tracker/87517684785_finalresume.pdf', NULL, '1', '2024-10-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-25 06:19:37', 104, '2024-11-05 03:03:07', 0, NULL, 1),
(22572, 'Lingeshwaran S', '13', '8870125021', '8220786078', 'lingesh4477s@gmail.com', '2009-10-25', 0, '6', '2', 'Sankar S', 'Driving School', 100000.00, 1, 0.00, 300000.00, 'Saidapet,Arni', 'Saidapet,Arni', '2410250027', '', '1', 'upload_files/candidate_tracker/63526745721_LINGESHWARANSupd.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 06:20:27', 1, '2024-10-25 06:24:41', 0, NULL, 1),
(22573, 'Dinesh M', '33', '6379206003', '', 'dineshmohan2k@gamil.com', '2004-07-08', 20, '3', '2', 'Mohan E', 'Farmer', 100000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2410250028', '', '1', 'upload_files/candidate_tracker/38787440037_M.DINESHRESUME.pdf.pdf', NULL, '1', '2024-10-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 06:21:57', 1, '2024-10-25 06:37:06', 0, NULL, 1),
(22574, 'Suneel Kumar', '13', '8179675459', '', 'neelamsuneelkumarsiri@gmail.com', '2001-05-29', 23, '3', '2', 'Subbaramireddy', 'Farmer', 28000.00, 1, 0.00, 20000.00, 'Andhra Pradesh', 'Chennai', '2410250029', '', '1', 'upload_files/candidate_tracker/85022282763_SuneelKumarCV.pdf', NULL, '1', '2024-10-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 06:22:59', 1, '2024-10-25 06:28:20', 0, NULL, 1),
(22575, 'Swetha', '4', '7339547101', '9940750438', 'Swethaganesh2001@gmail.com', '2001-12-03', 22, '2', '2', 'Ganesan', 'Labour', 25000.00, 2, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2410250030', '1', '1', 'upload_files/candidate_tracker/35402394689_01052024Swetha.pdf', NULL, '1', '2024-10-25', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-25 06:36:04', 104, '2024-10-25 06:03:21', 0, NULL, 1),
(22576, 'Kiruthika', '6', '8778327024', '', 'kiruthikaravichandran1999@gmail.com', '1999-07-11', 25, '2', '2', 'Ravichandran', 'Studying', 800000.00, 2, 0.00, 18000.00, 'Kolathur chennai 600110', 'Kolathur chennai 600110', '2410250031', '57', '1', 'upload_files/candidate_tracker/72498212762_kiruthikaRRESUMEcompressed1.pdf', NULL, '1', '2024-10-25', 0, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too highly qualified', '5', '1', '', '1', '8', '', '2', '2024-11-01', '2', '3', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-10-25 06:38:22', 104, '2024-10-25 06:04:47', 0, NULL, 1),
(22577, 'Kavya', '22', '9840766127', '7299887793', 'kavyaammu214@gmail.com', '2002-08-21', 22, '6', '2', 'Muralidharan', 'Driver', 200000.00, 1, 0.00, 250000.00, 'Virugambakkam, Chennai', 'Virugambakkam, Chennai', '2410250032', '', '1', 'upload_files/candidate_tracker/14934676940_RESUME.pdf', NULL, '1', '2024-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 07:52:11', 1, '2024-10-25 05:18:51', 0, NULL, 1),
(22578, '', '0', '9345355791', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410250033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-25 08:13:09', 0, NULL, 0, NULL, 1),
(22579, 'dinesh m', '22', '9884679230', '6379206003', 'dineshmohan2k@gamil.com', '2004-07-08', 20, '3', '2', 'mohan e', 'farmer', 100000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2410250034', '', '1', 'upload_files/candidate_tracker/50678282099_dineshresume.pdf', NULL, '1', '2024-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 08:19:35', 1, '2024-10-25 08:41:22', 0, NULL, 1),
(22580, 'Mugunth Narayan GR', '13', '8778142368', '', 'mugunthangr@gmail.com', '2003-11-17', 20, '3', '2', 'Ravi GS', 'Saree business', 15000.00, 2, 0.00, 200000.00, 'Thanjavur', 'Chennai', '2410250035', '', '1', 'upload_files/candidate_tracker/94865935559_MugunthNarayanresume.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 08:38:47', 1, '2024-10-25 08:44:34', 0, NULL, 1),
(22581, 'RAJIVGANDHI G', '13', '8098186961', '', 'grajivgandhi2001@gmail.com', '2001-06-10', 23, '3', '2', 'Gunasekaran', 'Farmer', 30000.00, 1, 0.00, 18000.00, 'Ranipet', 'Ranipet', '2410250036', '', '1', 'upload_files/candidate_tracker/62980738654_RAJIVGANDHIsResume3.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 08:39:44', 1, '2024-10-25 08:47:15', 0, NULL, 1),
(22582, 'RAKESH KUMAR M', '13', '8186085209', '', 'maddurrakeshkumar@gmail.com', '2002-12-01', 21, '3', '2', 'M MUTHU', 'TELEVISION SERVICE CENTRE OWNS', 40000.00, 1, 0.00, 240000.00, 'Tirupati', 'Tambaram', '2410250037', '', '1', 'upload_files/candidate_tracker/93385169047_RakeshResume1.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 08:40:14', 1, '2024-10-25 08:47:39', 0, NULL, 1),
(22583, 'Sasidharan Vijayan', '13', '6381457503', '', 'sasivijayan2001@gmail.com', '2001-02-01', 23, '3', '2', 'Vijayan', 'Private company employee', 30000.00, 1, 0.00, 18000.00, 'Navalur , Chennai', 'Navalur , Chennai', '2410250038', '', '1', 'upload_files/candidate_tracker/76703248806_SasidharanResume.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 08:42:00', 1, '2024-10-25 08:48:01', 0, NULL, 1),
(22584, 'balakumar.k', '2', '9659692454', '', 'kbalakumarvel@gmail.com', '2001-04-06', 23, '3', '2', 'shanmuganathan', 'developer', 60000.00, 2, 0.00, 400000.00, 'thothukudi', 'chennai', '2410250039', '', '1', 'upload_files/candidate_tracker/2574437784_Balakumarresume.docx', NULL, '1', '2024-10-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 09:21:22', 1, '2024-10-25 09:24:38', 0, NULL, 1),
(22585, 'DHIVYA BHARATHI T', '13', '9150846872', '8489886032', 'dhivineelakandan96@gmail.com', '2000-08-26', 24, '6', '2', 'Thiruneelakandan D', 'Farmer', 20000.00, 1, 0.00, 25000.00, 'Kumbakonam', 'Chennai', '2410250040', '', '1', 'upload_files/candidate_tracker/98346038993_Myjavaresume.pdf', NULL, '1', '2024-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 09:41:00', 1, '2024-10-25 09:44:46', 0, NULL, 1),
(22586, 'Reena Reena', '4', '9952612666', '6385834585', 'Reenavishwa2001@gmail.com', '2001-04-09', 23, '2', '1', 'Viswanathan', 'Auto driver', 85000.00, 1, 14000.00, 15000.00, 'Tripatthur', 'Tripatthur', '2410250041', '50', '2', 'upload_files/candidate_tracker/23258337799_ReenaResume.pdf', NULL, '1', '2024-10-26', 5, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 10:36:02', 1, '2024-10-25 10:38:42', 0, NULL, 1),
(22587, 'SOWMIYA.V', '6', '9363468337', '9384024703', 'sowmikohi@gmail.com', '2001-03-26', 23, '2', '2', 'kohilam', 'Southern railway', 700000.00, 1, 0.00, 150000.00, 'villivakkam', 'villivakkam', '2410250042', '50', '1', 'upload_files/candidate_tracker/28154786403_DOC20240820WA0059..pdf', NULL, '1', '2024-10-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-10-25 11:28:02', 104, '2024-11-12 04:24:46', 0, NULL, 1),
(22588, '', '0', '9688751189', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410250043', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-25 12:20:50', 0, NULL, 0, NULL, 1),
(22589, 'M.siva prakash', '2', '6383560813', '8124012519', 'Psiva1213@gmail.com', '2001-06-12', 23, '2', '2', 'Murugan', 'Business', 200000.00, 1, 0.00, 200000.00, 'Madurai', 'Madurai', '2410250044', '1', '1', 'upload_files/candidate_tracker/47708765062_siva1.pdf', NULL, '1', '2024-10-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-25 12:48:16', 104, '2024-11-07 12:14:38', 0, NULL, 1),
(22590, '', '0', '9361384649', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410250045', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-25 01:14:06', 0, NULL, 0, NULL, 1),
(22591, 'Sandhiya L', '4', '9025045524', '', '116sandhiya@gmail.com', '2004-04-11', 20, '2', '2', 'Loganathan K', 'Self employee', 18000.00, 1, 0.00, 17000.00, 'Villivakkam, Chennai', 'Villivakkam, Chennai', '2410250046', '50', '1', 'upload_files/candidate_tracker/7277021823_SandhiyaResume.pdf', NULL, '1', '2024-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-25 02:52:43', 1, '2024-10-25 03:48:29', 0, NULL, 1),
(22592, '', '0', '8754412938', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410250047', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-25 03:08:51', 0, NULL, 0, NULL, 1),
(22593, 'Rahul R', '13', '9176476151', '', 'rahulhari1311@gmail.com', '2001-11-13', 22, '6', '2', 'Ravichandran', 'Supervisor', 400000.00, 1, 0.00, 270000.00, 'Chennai', 'Chennai', '2410260001', '', '1', 'upload_files/candidate_tracker/32989278002_RahulR.pdf', NULL, '1', '2024-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-26 04:08:52', 1, '2024-10-26 04:11:55', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22594, 'RAJMOHAN R', '31', '9585135275', '', 'rajmohan00798@gmail.com', '1998-06-03', 26, '6', '2', 'RAMAKRISHNAN R', 'FARMER', 5000.00, 2, 0.00, 15000.00, 'Neyveli, Cuddalore District', 'Chennai', '2410260002', '', '1', 'upload_files/candidate_tracker/24818647736_Rajmohanresumeoct.pdf', NULL, '1', '2024-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-26 04:28:53', 1, '2024-10-26 04:33:12', 0, NULL, 1),
(22595, 'Vasanthakumar E', '13', '9150316828', '8098492232', 'vasanth632002@gmail.com', '2002-03-06', 22, '6', '2', 'Elumalai', 'Former', 15000.00, 1, 0.00, 28000.00, 'Tiruvallur', 'Tiruvallur', '2410260003', '', '1', 'upload_files/candidate_tracker/39205779899_crazy1.pdf', NULL, '1', '2024-10-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-26 04:40:05', 1, '2024-10-26 04:44:48', 0, NULL, 1),
(22596, 'Vishva S', '31', '6369644476', '', 'vishvasekarsvmy@gmail.com', '2001-03-23', 23, '6', '2', 'Sekar K', 'Farmer', 250000.00, 1, 120000.00, 300000.00, 'Dharmapuri', 'Koyambedu', '2410260004', '', '2', 'upload_files/candidate_tracker/32984727237_vishvaS.pdf', NULL, '1', '2024-10-26', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-26 04:40:52', 1, '2024-10-26 04:44:54', 0, NULL, 1),
(22597, '', '0', '9790668355', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410260005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-26 04:52:25', 0, NULL, 0, NULL, 1),
(22598, '', '0', '9608841928', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410260006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-26 04:57:07', 0, NULL, 0, NULL, 1),
(22599, 'SOUNDHIRAKKUMAR', '13', '8680810823', '9976009787', 'soundhiran363@gmail.com', '2000-06-05', 24, '2', '2', 'Vimala', 'Home meker', 70000.00, 3, 0.00, 20000.00, 'Salem', 'Ambattur', '2410260007', '1', '1', 'upload_files/candidate_tracker/70044418734_SOUNDHIRAKKUMARRESUMEs1.pdf', NULL, '1', '2024-10-26', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-10-26 05:10:52', 104, '2024-11-07 11:50:26', 0, NULL, 1),
(22600, 'Aravindan', '4', '9087418096', '6380209041', 'aravindhanks1102@gmail.com', '2000-03-11', 24, '2', '2', 'No', 'Civil supervisor', 20000.00, 0, 0.00, 18000.00, 'string:Thanjavur', 'string:Thanjavur', '2410260008', '1', '1', 'upload_files/candidate_tracker/61707136448_aravindhanres20240626v1.pdf', NULL, '1', '2024-10-26', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is ok with the profile attend interview 2 years back...rejected...after he is worked in excela technology claim based uS process night shift...18k salary....need to change the process and studied phython and joined in a pix monks company as a data base engineer and due to father health issue releived from the job.....getting 18k salary.....father heart patient....so he is not ready to work in other cities.....we try this candidate will see in training......have no laptop ready to arrange...ready to join next month...kindly check once and confirm.', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-26 05:35:36', 104, '2024-10-26 12:45:36', 0, NULL, 1),
(22601, 'Kaviarasu.N', '22', '6381582029', '9043028898', 'kaviarasunandhakumar@gmail.com', '2003-05-22', 21, '3', '2', 'Sivaneshwari.N', 'Bachelor of business administration', 150000.00, 1, 0.00, 20000.00, '2/5 tondiarnagar 6th Street tondiarpet chennai-81', '2/5 tondiarnagar 6th Street tondiarpet chennai-81', '2410260009', '', '1', 'upload_files/candidate_tracker/47448095690_KAVIresume.pdf202410211129010000.pdf', NULL, '1', '2024-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-26 05:35:56', 1, '2024-10-26 05:41:34', 0, NULL, 1),
(22602, 'Mohamed Albasith', '6', '6383001171', '', 'mohamedalbasith053@gmail.com', '2001-02-06', 23, '2', '2', 'Abdul Lathif', 'Labour', 25000.00, 2, 0.00, 20000.00, 'Purasaiwakam', 'Purasaiwakam', '2410260010', '42', '1', 'upload_files/candidate_tracker/55724508073_MohamedAlbasithResume.pdf', NULL, '1', '2024-10-26', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication and convincing skill is low and then he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-26 06:04:37', 104, '2024-10-26 12:41:47', 0, NULL, 1),
(22603, 'Rajesh', '6', '6369197280', '', 'Heromechanical3@gmail.com', '2000-10-27', 23, '2', '2', 'Thirumalai', 'Farmer', 10000.00, 0, 15600.00, 17000.00, 'Porur', 'Porur', '2410260011', '45', '2', 'upload_files/candidate_tracker/12954083392_TRAJESHRESUME1.pdf', NULL, '1', '2024-10-26', 0, '', '3', '59', '2024-11-05', 192000.00, '', '3', '2024-12-30', '1', 'Communication Ok Can be trained in our roles and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2024-11-05', 1, '2024-10-26 06:17:28', 60, '2024-11-05 10:01:09', 0, NULL, 1),
(22604, 'Dharunkumar C', '13', '9659985784', '', 'Dharunkumar.cv@gmail.com', '2000-03-22', 24, '2', '2', 'Chinnaraj', 'Farmer', 10000.00, 1, 240000.00, 350000.00, 'Erode', 'Erode', '2410260012', '1', '2', 'upload_files/candidate_tracker/78877941732_DharunResumeOct.pdf.pdf', NULL, '1', '2024-10-26', 0, '', '3', '59', '2024-12-24', 120000.00, '', '4', '2025-01-08', '2', 'a stipend of Rs.6000 PM (1st 3 months) xxamp Rs.8000 PM (next 2 months) based on the performance review, with the continuation of the employment in which the remuneration may vary post-completion of the 3 - 5 months internship and performance analysis.', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '55566', '55566', '2024-12-24', 1, '2024-10-26 06:34:14', 60, '2024-12-24 12:34:07', 0, NULL, 1),
(22605, 'Madhavan S', '2', '6374414520', '', 'smadhavan200307@gmail.com', '2003-06-14', 21, '6', '2', 'Sundaram M', 'Bricks worker', 20000.00, 1, 0.00, 2.50, 'Madurai', 'Madurai', '2410260013', '', '1', 'upload_files/candidate_tracker/31315553122_MadhavanResume81.pdf', NULL, '1', '2024-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-26 09:45:40', 1, '2024-10-26 09:47:50', 0, NULL, 1),
(22606, 'GOWRI .E', '4', '8870398636', '9363003587', 'gowrigoldengowri@gmail.com', '1991-05-19', 33, '2', '1', 'Karthik .D', 'Cleark', 450000.00, 1, 12000.00, 150009.00, 'Thanjavur', 'Thanjavur', '2410260014', '1', '2', 'upload_files/candidate_tracker/76656901554_gowripdfresume1.pdf', NULL, '1', '2024-10-28', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'UNFIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-26 12:51:04', 104, '2024-10-28 06:28:59', 0, NULL, 1),
(22607, 'Sanjay.S.V.', '25', '9842426963', '', 'sanjayanirudh700@gmail.com', '2003-12-03', 20, '5', '2', 'R.Vellingiri ( Father )', 'Civil Engineer', 40000.00, 1, 0.00, 25000.00, 'Pollachi', 'Coimbatore', '2410260015', '', '1', 'upload_files/candidate_tracker/12263748422_sanjaysvres14.pdf', NULL, '2', '2024-10-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-26 01:28:37', 1, '2024-10-26 01:32:40', 0, NULL, 1),
(22608, 'Malini', '6', '9360398234', '', 'malinimahesh0819@gmail.com', '2001-08-19', 23, '2', '2', 'Parimala Devi', 'Teacher', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2410260016', '1', '1', 'upload_files/candidate_tracker/77131873143_MaliniCV2024.pdf', NULL, '1', '2024-10-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2024-10-26 05:29:39', 104, '2024-10-28 04:04:32', 0, NULL, 1),
(22609, '', '0', '7200479788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-27 12:48:23', 0, NULL, 0, NULL, 1),
(22610, '', '0', '9025810168', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-28 04:19:55', 0, NULL, 0, NULL, 1),
(22611, 'Arjun Mettha', '6', '8056472507', '', 'arjunmettha@gmail.com', '1994-10-20', 30, '2', '2', 'Selvaraj', 'Farmer', 210000.00, 1, 0.00, 22000.00, 'Nagercoil', 'Chennai', '2410280002', '50', '2', 'upload_files/candidate_tracker/1088989669_Arjuncustomer2024241023101133.pdf', NULL, '1', '2024-10-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected ,speaks well ctc 18k so lets try after 7 days joining after diwali', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-28 04:49:34', 104, '2024-10-28 06:29:48', 0, NULL, 1),
(22612, 'CHANDRU M', '6', '9994623162', '7448462284', 'Chandrumurugan4224@gmail.com', '2000-03-25', 24, '2', '2', 'MURUGAN', 'Watchman', 15000.00, 5, 0.00, 20000.00, '1/142 THIYAGAI, KALLAKURICHI DT, 606206', '24, VOC ST, TNAGAR CHENNAI', '2410280003', '45', '1', 'upload_files/candidate_tracker/75057507804_CHANDRUMURUGAN.pdf', NULL, '1', '2024-10-28', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT GOOD AT COMMUNICATION AND NOT HAVING BIKE OR LAPTOP AND FROM TAMBARAM', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-28 05:07:07', 104, '2024-10-28 06:30:37', 0, NULL, 1),
(22613, 'VARSHINI S', '4', '8778841837', '8220809922', 'Varshinisivakumar2324@gmail.com', '2004-02-23', 20, '2', '2', 'Sivakumar', 'Driver', 92000.00, 1, 0.00, 16000.00, '76,Nirmala nagar 1st Street thanjavur', 'Thanjavur', '2410280004', '1', '1', 'upload_files/candidate_tracker/60970697351_VARSHINISResume.pdf', NULL, '1', '2024-10-28', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT SUITE', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-28 05:10:45', 104, '2024-10-28 06:29:20', 0, NULL, 1),
(22614, 'S.MALINI', '4', '7010122379', '', 'Smalini239@gmail.com', '2004-08-12', 20, '2', '2', 'Sivaguru', 'Tailor', 20000.00, 1, 0.00, 16000.00, 'Palliyagraharam -thanjavur', 'Thanjavur', '2410280005', '1', '1', 'upload_files/candidate_tracker/93710354037_MALINIcopy.docx', NULL, '1', '2024-10-28', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'UNFIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-10-28 05:12:49', 104, '2024-10-28 06:29:10', 0, NULL, 1),
(22615, 'Ganesh P', '6', '6374694432', '9159764234', 'ganeshvenkat0722@gmail.com', '1997-07-24', 27, '2', '2', 'V.P Munirathinam', 'Farmer', 200000.00, 2, 180000.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2410280006', '45', '2', 'upload_files/candidate_tracker/45896828115_GaneshResume.pdf.pdf', NULL, '1', '2024-10-28', 15, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expected Salary was High ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-10-28 05:52:14', 104, '2024-10-28 06:30:10', 0, NULL, 1),
(22616, 'dwaraka ramana', '4', '9566170219', '7871664186', 'ramanadwaraka242@gmail.com', '2002-11-26', 21, '2', '2', 'varalakshmi', 'tailor', 20000.00, 1, 0.00, 18000.00, 'kattupakkam chennai', 'kattupakkam chennai', '2410280007', '50', '1', 'upload_files/candidate_tracker/61537207177_Dwaraka.pdf', NULL, '1', '2024-10-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-28 05:58:30', 1, '2024-10-28 06:03:30', 0, NULL, 1),
(22617, 'saraswathi', '6', '6369752420', '6382664972', 'saraswathy0636@gmail.com', '2003-12-04', 20, '2', '2', 'sowmiya', 'own business', 20000.00, 1, 0.00, 18000.00, 'maduravoyal chennai', 'maduravoyal chennai', '2410280008', '50', '1', 'upload_files/candidate_tracker/47486195326_Saraswathiresume.pdf', NULL, '1', '2024-11-08', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-10-28 06:05:09', 153, '2024-11-08 03:30:15', 0, NULL, 1),
(22618, '', '0', '7305770271', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410280009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-28 06:21:10', 0, NULL, 0, NULL, 1),
(22619, 'Maithreyan s', '34', '6382305799', '', 'maithreyan05@gmail.com', '2002-09-05', 22, '3', '2', 'sureshprabu', 'business', 50000.00, 1, 0.00, 20.00, 'Chennai', 'chenn', '2410280010', '', '1', 'upload_files/candidate_tracker/53005171123_SMAITHREYAN.pdf', NULL, '1', '2024-10-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-28 06:24:36', 1, '2024-10-28 06:31:45', 0, NULL, 1),
(22620, 'Siddarth', '6', '8122176990', '7397270628', 'siddarthumashankar@gmail.com', '2001-08-08', 23, '2', '2', 'Uma shankar', 'Security', 200000.00, 1, 0.00, 180000.00, 'Ekatuthangal', 'Ekatuthangal', '2410280011', '50', '1', 'upload_files/candidate_tracker/78562414753_mrpifl19072023.pdf', NULL, '1', '2024-10-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communicatio and voice ok , futer plan is own business for after 5 yeras , native , coimbature noe eakkatuthaingal location , fresher , try for 7 days trainig period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-10-28 07:00:34', 104, '2024-10-28 06:29:35', 0, NULL, 1),
(22621, 'Abishek', '6', '7397340972', '8397340972', 'abishekabikutty1020@gmail.com', '2001-01-10', 23, '2', '2', 'Francis', 'Lift operator', 1.50, 0, 20000.00, 20000.00, 'Chennai', 'Chennai', '2410280012', '1', '2', 'upload_files/candidate_tracker/71460565958_AbiRESUME.pdf', NULL, '1', '2024-10-28', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was interested in other profession did not have experience in sales but looking for 20 ctc', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-28 07:14:14', 104, '2024-10-28 06:30:22', 0, NULL, 1),
(22622, 'Roobasri R', '4', '9384384058', '', 'roobaraja21@gmail.com', '2001-09-20', 23, '5', '2', 'Rajalingam K', 'Coolie', 8000.00, 1, 0.00, 3.00, 'Trichy', 'Trichy', '2410280013', '', '1', 'upload_files/candidate_tracker/7273389018_ROOBASRIFINALresume.pdf', NULL, '1', '2024-10-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-28 09:32:44', 1, '2024-10-28 09:42:36', 0, NULL, 1),
(22623, 'Durgaprasad', '33', '9390719387', '', 'prasad.18352ec14@gmail.com', '2002-07-07', 22, '2', '2', 'Ramu', 'Father', 30000.00, 1, 0.00, 25000.00, 'Vijayawada', 'Vijayawada', '2410280014', '1', '1', 'upload_files/candidate_tracker/66283034601_dataresume.pdf', NULL, '1', '2024-11-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-10-28 11:19:00', 1, '2024-10-28 11:22:12', 0, NULL, 1),
(22624, '', '0', '6369910150', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410280015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-28 11:22:07', 0, NULL, 0, NULL, 1),
(22625, 'Santhosh Kumar.M', '6', '8610007920', '', 'santhoshkumar.m20703@gmail.com', '2003-07-20', 21, '2', '2', 'Murugesan.S', 'Gold smith', 75000.00, 2, 0.00, 30000.00, 'Salem', 'Chennai', '2410280016', '1', '1', 'upload_files/candidate_tracker/60129065032_SanthoshResume2.docx', NULL, '1', '2024-10-28', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '', '', '1970-01-01', 1, '2024-10-28 11:36:21', 126, '2024-11-06 06:13:39', 0, NULL, 1),
(22626, 'Arthi.s', '6', '8056303976', '8489334154', 'arthimani6102@gmail.com', '2002-01-23', 22, '2', '2', 'Supramaniyan', 'Farmer', 30000.00, 0, 0.00, 18000.00, 'Tambaram', 'Tambaram', '2410290001', '1', '1', 'upload_files/candidate_tracker/78010762620_CV2024061312495674111.pdf', NULL, '1', '2024-10-29', 0, '', '3', '59', '2024-11-04', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok 5050 Sustainability  looking for comfort with her friend opportunity too long run doubts a lot give a try and check in 7 days training', '5', '1', '1', '4', '6', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1287', '5151', '2024-11-04', 1, '2024-10-29 04:30:23', 60, '2024-11-02 12:47:00', 0, NULL, 1),
(22627, '', '0', '9566800878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410290002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-29 05:01:33', 0, NULL, 0, NULL, 1),
(22628, 'Abirami', '4', '7305403175', '9150751191', 'selvaabi31072003@gmail.com', '2003-07-31', 21, '2', '2', 'Selvam vr', 'Homemaker', 30000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2410290003', '50', '2', 'upload_files/candidate_tracker/65374009088_abii.pdf', NULL, '1', '2024-10-29', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected \nNeed to confirm on salary', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-10-29 05:03:05', 104, '2024-10-29 06:31:30', 0, NULL, 1),
(22629, 'Saran R', '6', '8610399434', '9840027707', 'savjai77.in@gmail.com', '1998-08-08', 26, '2', '2', 'G . Ramesh', 'Tv mechanic', 40000.00, 2, 0.00, 17000.00, 'Vysarpadi,Chennai', 'Chennai', '2410290004', '50', '1', 'upload_files/candidate_tracker/9384458725_SARANECE31.pdf', NULL, '1', '2024-10-29', 0, '', '3', '59', '2024-11-04', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok Fresher sustainability and pressure handling doubts give a try and check in  7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2024-11-04', 1, '2024-10-29 05:09:45', 60, '2024-11-02 12:28:27', 0, NULL, 1),
(22630, 'HAKASH M', '6', '7395834600', '9363271692', 'hakashtm@gmail.com', '2002-10-01', 22, '2', '2', 'MOGANA GIRI RAJA TM', 'Farmer', 20000.00, 2, 0.00, 16500.00, 'Chengalpattu', 'Chennai', '2410290005', '50', '1', 'upload_files/candidate_tracker/68380633764_BlackWhiteMinimalistCVResume202408222006160000.pdf', NULL, '1', '2024-10-29', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-29 05:18:49', 104, '2024-10-29 11:17:07', 0, NULL, 1),
(22631, 'Deva Deva', '6', '9629352594', '9629362694', 'deva962935@gmail.com', '2002-09-12', 22, '2', '2', 'A. Sathiyaseelan', 'Tiles work', 15000.00, 2, 0.00, 15000.00, 'Thirukazukundram', 'Thirukazukundram', '2410290006', '50', '1', 'upload_files/candidate_tracker/25251495201_DevaResume1.docx', NULL, '1', '2024-10-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-10-29 05:19:12', 104, '2024-10-29 11:12:35', 0, NULL, 1),
(22632, 'riyaz khan y', '6', '9176198513', '', 'riyazsmart84@gmail.com', '1999-01-13', 25, '2', '1', 'yakkath ali', 'telecaller', 15000.00, 0, 0.00, 20000.00, 'korukkupet', 'korukkupet', '2410290007', '50', '1', 'upload_files/candidate_tracker/86074249310_RIYAZRESUME.pdf', NULL, '1', '2024-10-29', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-10-29 05:35:56', 104, '2024-10-29 06:29:01', 0, NULL, 1),
(22633, 'Priya', '4', '9787914518', '', 'Priyanagarajan200309@gmail.com', '2003-08-09', 21, '2', '2', 'Nagarajan', 'Transport supervisor', 25000.00, 1, 20000.00, 25000.00, 'Kanchipuram', 'CHENNAI', '2410290008', '50', '2', 'upload_files/candidate_tracker/23545893651_PRIYACV.pdf', NULL, '1', '2024-10-29', 5, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected .confirm on salary', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-10-29 05:36:41', 104, '2024-10-29 06:31:19', 0, NULL, 1),
(22634, 'Divya kv', '6', '6369474975', '7871919646', 'stuartdivi2026@gmail.com', '2001-10-20', 23, '2', '2', 'Venkateshwaralu', 'TNHUB', 100000.00, 1, 12000.00, 16000.00, 'Chennai', 'Chennai', '2410290009', '50', '2', 'upload_files/candidate_tracker/65351734491_Divyakvresume.pdf', NULL, '1', '2024-10-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Got another Opportunity with 2.04 LPA not interested\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-10-29 06:05:56', 104, '2024-10-29 06:29:11', 0, NULL, 1),
(22635, 'R. Raviraghavan', '6', '7904493269', '9092251286', 'Raviraghavan003@gmail.com', '2003-01-12', 21, '2', '2', 'P. Ramesh', 'Company work', 25000.00, 2, 0.00, 15000.00, 'Vandalur', 'Vandalur', '2410290010', '50', '1', 'upload_files/candidate_tracker/92231397337_RaviRaghavanResume.docx', NULL, '1', '2024-10-29', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'REJECTED  NOT SUITABLE VERY SHY TYPE AND  NOT OK  WITH COMMUNICATION', '5', '2', '', '1', '8', '', '1', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-29 06:10:13', 104, '2024-10-29 06:30:33', 0, NULL, 1),
(22636, 'B.Rajesh', '6', '7305596065', '9940353045', 'donrajeshr@gmail.com', '2003-09-05', 21, '2', '2', 'Baskar', 'Driver', 25000.00, 1, 0.00, 17000.00, 'Vandalur', 'Vandalur', '2410290011', '50', '1', 'upload_files/candidate_tracker/37444491358_73055960651.pdf', NULL, '1', '2024-10-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance he is looking for opportunity near by also came along with his friend and looking for the comfortness for both to have the opportunity Will not sustain in a long run', '5', '1', '', '1', '8', '', '2', '2024-11-11', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-29 06:11:04', 104, '2024-10-29 06:30:09', 0, NULL, 1),
(22637, 'M.hari prasath', '4', '7604981716', '9551525613', 'hariprasath50584@gmail.com', '2004-08-14', 20, '1', '2', 'R.manickam', 'Builder', 35000.00, 1, 0.00, 17000.00, 'Ajax', 'Ajax', '2410290012', '', '1', 'upload_files/candidate_tracker/98213128906_AdobeScan29Oct2024.pdf', NULL, '1', '2024-10-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-29 06:12:24', 1, '2024-10-29 06:39:24', 0, NULL, 1),
(22638, 'e chinni krishna', '5', '8919619424', '', 'shivachinni83@gmail.com', '1998-07-16', 26, '2', '2', 'elango', 'army', 20000.00, 1, 420000.00, 520000.00, 'bengaluru', 'bengaluru', '2410290013', '1', '2', 'upload_files/candidate_tracker/95621660635_CV2024092814560448.pdf', NULL, '1', '2024-10-29', 0, '', '3', '59', '2024-11-07', 475000.00, '', '3', '2025-01-31', '1', 'Have 2 yrs exp in policy Bazaar Need to give commitment based increment in 6 months', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', '55555', '5151', '2024-11-07', 1, '2024-10-29 06:20:43', 126, '2024-11-08 10:28:28', 0, NULL, 1),
(22639, 'Mangayarkarasi', '6', '8870230667', '8056303976', 'mangayarkarasic2003@gmail.com', '2003-01-09', 21, '2', '2', 'Chandrasekar', 'Former', 25000.00, 2, 0.00, 18000.00, '3/376,kolunthurai, Ramanathapuram', 'Tambaram', '2410290014', '1', '1', 'upload_files/candidate_tracker/15920066093_mangai.pdf', NULL, '1', '2024-10-29', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT SUITABLE FOR SALES OR VOICE PROCESS', '5', '1', '', '4', '6', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-29 06:32:32', 104, '2024-11-02 11:59:12', 0, NULL, 1),
(22640, 'M.kamatchi', '6', '9025319057', '', 'Kamatchisuba819@gmail.com', '2001-06-23', 23, '2', '2', 'Panchavaranm', 'Government job', 30.00, 1, 0.00, 15000.00, 'Perambru', 'Chennai . Perambru', '2410290015', '50', '1', 'upload_files/candidate_tracker/11209753428_RESUME.M.Kamatchi.pdf', NULL, '1', '2024-10-29', 0, '', '3', '59', '2024-11-04', 168000.00, '', '5', '1970-01-01', '1', 'Fresher Mentioned 2yrs exp in insurance but no documents pertaining this. Married and separated ,2yrs kid is with Husband and she ensures there wont be any issues regarding this 5050 Sustainability need to check', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '2024-11-04', 1, '2024-10-29 09:16:39', 60, '2024-11-02 01:13:20', 0, NULL, 1),
(22641, '', '0', '6369609477', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410290016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-29 09:27:14', 0, NULL, 0, NULL, 1),
(22642, 'Pavinjala M', '6', '8940170027', '7397613342', 'pavinjala2722002@gmail.com', '2002-02-27', 22, '2', '2', 'Mariappan/Father', 'Coolie', 20000.00, 2, 18000.00, 20000.00, 'Tenkasi', 'Tenkasi', '2410290017', '50', '2', 'upload_files/candidate_tracker/80297106562_PavinjalaResume....pdf', NULL, '1', '2024-10-29', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is 50/50, she exp salary 20k.\nconvincing skills not good. lack of communications,reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-10-29 10:05:11', 104, '2024-10-29 06:30:21', 0, NULL, 1),
(22643, 'Lokesri v', '6', '7397193868', '9360519203', 'LOKESRI371@GMAIL.COM', '2002-03-07', 22, '2', '2', 'Father: vasu', 'Hotel', 75000.00, 1, 0.00, 20000.00, 'Arani', 'Chennai', '2410290018', '50', '1', 'upload_files/candidate_tracker/67455809976_LOKESRIVResume2.pdf', NULL, '1', '2024-10-29', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'REJECTED - NOT SUITABLE FOR SALES ,NOT AT ALL TALKING,SLOW RESPONSE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-10-29 10:34:50', 104, '2024-10-29 06:31:08', 0, NULL, 1),
(22644, 'Seyona pearlin', '6', '6383091654', '9941467022', 'seyonapearl16@gmail.com', '2000-09-16', 24, '2', '2', 'Parents', 'Processor operator', 15000.00, 0, 0.00, 30000.00, 'Ayanavaram', 'Ayanavaram', '2410300001', '50', '1', 'upload_files/candidate_tracker/36713343711_resume1730229669990.pdf', NULL, '1', '2024-10-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-10-30 05:02:19', 1, '2024-10-30 05:14:57', 0, NULL, 1),
(22645, '', '0', '9345411178', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2410300002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-10-30 10:48:13', 0, NULL, 0, NULL, 1),
(22646, 'Tamilarasan', '5', '8754448537', '7299912564', 'tamilarasana79@gmail.com', '2001-09-07', 23, '2', '1', 'Arulraj', 'Private sector', 30000.00, 1, 2.40, 3.20, 'No:30 ottraivadai street puzhal chennai', 'Chennai', '2411010001', '39', '2', 'upload_files/candidate_tracker/68411922829_kithiyonresume211.pdf', NULL, '1', '2024-11-01', 30, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for sales, can try for Customer support but package is high for the same ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-11-01 05:55:43', 104, '2024-11-06 04:07:04', 0, NULL, 1),
(22647, 'Priyanka', '6', '9677762753', '', 'deepid989@gmail.com', '2002-04-25', 22, '2', '2', 'Selavaraj', 'Hotel supervisor', 180000.00, 1, 0.00, 20.00, 'Villupuram', 'Villupuram', '2411010002', '45', '1', 'upload_files/candidate_tracker/63027194984_PRIYAKA.pdf', NULL, '1', '2024-11-01', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is unfit for the sales profile, she interested in IT,reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-11-01 07:01:30', 104, '2024-11-04 06:50:03', 0, NULL, 1),
(22648, 'Pradeesh Kannan', '4', '9361278057', '', 'pradeeshkannan773@gmail.com', '2002-10-12', 22, '2', '2', 'Parents', 'Farmer', 6000.00, 1, 0.00, 15000.00, '1/107, Adhithravidar street Kalancheri,', 'Kalancheri', '2411010003', '1', '1', 'upload_files/candidate_tracker/66793780289_PRADEESHRESUME202411.pdf', NULL, '1', '2024-11-04', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-01 07:49:18', 104, '2024-11-04 04:37:20', 0, NULL, 1),
(22649, 'Harini', '6', '9003214785', '9600155939', 'Lathaharini1916@gmail.com', '2000-06-19', 24, '2', '1', 'P kannan', 'Inspster', 30000.00, 1, 0.00, 150000.00, '14 b block 6 street kasinedu royapuram', '14 b block 6 street kasinedu royapuram', '2411010004', '1', '1', 'upload_files/candidate_tracker/80839305493_KHARANIRESUME.docx', NULL, '1', '2024-11-01', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is unfit for sales. communication not good. married. she expected leaves and freedoms like early logouts. and sat off. reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2024-11-01 09:40:44', 104, '2024-11-04 06:49:55', 0, NULL, 1),
(22650, 'Shri kaviya J', '11', '9150475372', '9498033393', 'shrikaviya11@gmail.com', '2001-09-11', 23, '2', '2', 'Jayapal v', 'Retaired BSNL employee', 20000.00, 1, 0.00, 25000.00, 'Arakkonam', 'Arakkonam', '2411010005', '1', '1', 'upload_files/candidate_tracker/85850743226_Shrikaviya.JResume.pdf', NULL, '1', '2024-11-04', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suit for Recruiter communication is not good', '6', '1', '', '1', '8', '', '2', '2024-12-01', '1', '8', '', '', 'H1027', '', '77778', '55566', '1970-01-01', 1, '2024-11-01 10:15:16', 104, '2024-11-04 04:43:09', 0, NULL, 1),
(22651, 'R.rafyl', '9', '7604820112', '9943579911', 'Rafultrr@gmail.con', '1998-02-26', 26, '5', '2', 'Rajakimar', '700000', 58000.00, 5, 0.00, 35000.00, 'Thanjacur', 'Thanjavur', '2411010006', '', '1', 'upload_files/candidate_tracker/69680724080_ResumeR.RagulFormat14.pdf', NULL, '1', '2024-11-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-01 04:07:04', 1, '2024-11-01 04:13:21', 0, NULL, 1),
(22652, 'karthikeyan', '6', '9962937191', '8122226725', 'Karthikeyan.k5352@gmail.com', '2001-03-10', 23, '2', '2', 'selvam', 'hotel business', 40000.00, 0, 0.00, 15000.00, 'ramapuram', 'ramapuram', '2411020001', '45', '1', 'upload_files/candidate_tracker/44214595611_KarthikeyanResume.docx', NULL, '1', '2024-11-02', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was not having confidence and not responding', '5', '1', '', '1', '8', '', '2', '2024-11-04', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-02 05:20:17', 104, '2024-11-04 06:52:27', 0, NULL, 1),
(22653, 'Kesavan Raj', '4', '6382417638', '7010347901', 'kesavanraj1705@gmail.com', '2002-04-08', 22, '2', '2', 'Gugan', 'Chinnadurai', 20000.00, 1, 0.00, 15000.00, '678 adhanakkottai Pudukkottai 622203', '678 Adhanakkottai Pudukkottai 622203', '2411020002', '1', '1', 'upload_files/candidate_tracker/60713679283_keasavanTechnicalSupport.pdf', NULL, '1', '2024-11-02', 0, '', '3', '59', '2024-11-11', 156000.00, '', '5', '1970-01-01', '2', '7months 3 companies no document proof sustainability doubts a lot 40kms up and down need to check in training period', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '2024-11-11', 1, '2024-11-02 06:19:38', 60, '2024-11-11 10:46:51', 0, NULL, 1),
(22654, 'Vinnarasi', '4', '6369588693', '7200884980', 'vinustalin02@gmail.com', '2003-05-16', 21, '2', '2', 'Stalin', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'No 261,Thondaman street , ampalapattu north', 'No 261, Thondaman street, ampalapattu north', '2411020003', '1', '1', 'upload_files/candidate_tracker/49126001273_AdobeScan31May2024.pdf', NULL, '1', '2024-11-02', 0, '', '3', '59', '2024-11-11', 156000.00, '', '3', '2024-11-11', '2', 'Communication Ok 5050 Showing 3 months exp no proper records and seems to be doubfull give a try and check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-11-11', 1, '2024-11-02 06:20:26', 60, '2024-11-09 03:46:33', 0, NULL, 1),
(22655, 'Jothika m', '6', '7806876170', '8682075213', 'jothikam16@gmail.com', '2004-06-01', 20, '2', '2', 'Tailor', 'Sales executive', 30000.00, 1, 15000.00, 25000.00, 'Puzhal Vinayagapuram', 'Puzhal Vinayagapuram', '2411020004', '50', '2', 'upload_files/candidate_tracker/6471982857_JothikaResume.pdf', NULL, '1', '2024-11-02', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Continuous Line Busy no call bacl also shows her non interest', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-02 07:19:17', 104, '2024-11-04 06:53:58', 0, NULL, 1),
(22656, 'Michael Melvin l', '6', '8489628268', '8489628267', 'michaelmelvin78@gmail.com', '2002-11-18', 22, '2', '2', 'Lourdu samy', 'Null', 18000.00, 1, 0.00, 15000.00, 'Chennai, Velachery', 'Chennai, Velachery', '2411020005', '1', '1', 'upload_files/candidate_tracker/69752677475_CV2025050711040183.pdf', NULL, '1', '2025-06-26', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '2 years gap... trying for police exams and other govt jobs for past 2 yrs... now due to financial situation trying for job....  part time worked in lenovo show room sales... communication and slang not good... trying for IT jobs also....', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2024-11-02 01:56:28', 154, '2025-06-26 03:38:12', 0, NULL, 1),
(22657, 'Ashwin', '6', '8925325435', '', 'ashwin160302@gmail.com', '2002-03-16', 22, '2', '2', 'Baskaran P', 'Business', 90000.00, 1, 0.00, 23000.00, 'Sivaganga', 'Chennai', '2411030001', '1', '1', 'upload_files/candidate_tracker/56893036073_AshwinResume1.pdf', NULL, '1', '2024-11-05', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication good. but salary exp high 20k.fresher.Well Settled,entire family doing  own business like textiles shop. .unfit for for the sales profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '55645', '5151', '1970-01-01', 1, '2024-11-03 12:30:35', 104, '2024-11-05 05:20:41', 0, NULL, 1),
(22658, 'kalasam yeshwanth', '13', '9392898589', '', 'kalasamyeswanth@gmail.com', '2000-10-03', 24, '2', '2', 'Venkatesh', 'Self business', 200000.00, 1, 0.00, 15000.00, 'Tirupati', 'Avadi, Chennai', '2411040001', '1', '1', 'upload_files/candidate_tracker/86762060495_yeswanthkalasam.pdf', NULL, '1', '2024-11-04', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-04 04:01:27', 104, '2024-11-07 12:12:26', 0, NULL, 1),
(22659, 'Athikunnisa.G', '6', '9941855792', '9360063861', 'athikunnisa@gmail.com', '2004-07-10', 20, '2', '2', 'Gouse moideen & Parveen banu', 'Painter & house wife', 20000.00, 1, 15000.00, 17000.00, 'Royapuram', 'Royapuram', '2411040002', '56', '2', 'upload_files/candidate_tracker/80685138740_NaziiResume.docx', NULL, '1', '2024-11-04', 1, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is ok,but his performance is little bit only good.also her voice is low and she expected higher package', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-11-04 04:35:34', 104, '2024-11-04 04:43:25', 0, NULL, 1),
(22660, 'Balaji. R', '6', '9363148187', '7868069979', 'balajisethuraman2003@gmail.com', '2003-11-08', 20, '2', '2', 'Ramadoss', 'Kumbakonam', 3000.00, 1, 0.00, 2.50, 'Kumbakonam', 'Chrompet', '2411040003', '49', '1', 'upload_files/candidate_tracker/36133273837_R.balaji1.pdf', NULL, '1', '2024-11-04', 0, '', '3', '59', '2024-11-07', 180000.00, '', '5', '1970-01-01', '2', 'Need to check and confirm in the training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2024-11-07', 1, '2024-11-04 04:42:10', 60, '2024-12-06 03:55:32', 0, NULL, 1),
(22661, 'sudhakar', '6', '9150471562', '', 'Sudhakid2914@gmail.com', '2002-09-28', 22, '2', '2', 'bhoopathi ammal', 'house wife', 20000.00, 2, 0.00, 17000.00, 'semmathamman nagar sector two koyambedu', 'semmathamman nagar sectir two koyambedu', '2411040004', '50', '1', 'upload_files/candidate_tracker/28297974186_SUDHAKARRESUMEcv.pdf', NULL, '1', '2024-11-04', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed - need time to join- he is busy with boxign match', '5', '1', '', '1', '3', '', '2', '2024-12-09', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-04 04:47:16', 104, '2024-11-04 04:39:05', 0, NULL, 1),
(22662, 'R.Dinesh Raja Kumar', '13', '8838772623', '', 'dineshraja281291@gmail.com', '1995-12-28', 28, '6', '1', 'Latha', 'Na', 15000.00, 0, 16000.00, 17000.00, 'Chennai', 'Chennai', '2411040005', '', '2', 'upload_files/candidate_tracker/88066793653_Dineshresumesep20242.pdf', NULL, '1', '2024-11-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-04 04:57:52', 1, '2024-11-04 05:02:01', 0, NULL, 1),
(22663, 'S. Sudharsan', '6', '6382414909', '9994302155', 'Saro1761@gmail.com', '2004-04-19', 20, '2', '2', 'K. Sivakumar', 'Data entry', 30000.00, 1, 0.00, 300000.00, '11/b kasiram st, kumbakonam', 'Perungalattur', '2411040006', '49', '1', 'upload_files/candidate_tracker/42917700230_sudharsanresume.pdf', NULL, '1', '2024-11-04', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - having less confident and long distance from office', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-04 05:00:09', 104, '2024-11-04 04:41:39', 0, NULL, 1),
(22664, 'Dhanush kumar', '6', '6374984491', '', 'K.dhanush1611@gmail.com', '2002-11-16', 21, '2', '2', 'R kannappan jamuna rani', 'Fitter', 15000.00, 1, 0.00, 15000.00, 'Tondiarpet', 'Kodungaiyur', '2411040007', '1', '1', 'upload_files/candidate_tracker/26080434192_WhiteandGreenSimpleStudentCVResume202406281146070000.pdf', NULL, '1', '2024-11-04', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skill is low and then interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-04 05:13:39', 104, '2024-11-04 04:45:03', 0, NULL, 1),
(22665, 'Mohammad Ameen', '6', '9940255248', '', 'Mdamee1103@gmail.com', '2002-03-11', 22, '2', '2', 'Mohammad mahaboob', 'Labour', 15000.00, 1, 0.00, 18000.00, 'Vyasarpadi', 'Vyasarpadi', '2411040008', '1', '1', 'upload_files/candidate_tracker/89458627509_WhiteSimpleStudentCVResume202410291529310000.pdf', NULL, '1', '2024-11-04', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skill is low and then interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-04 05:13:53', 104, '2024-11-04 05:03:07', 0, NULL, 1),
(22666, 'Arunkumar', '6', '6383044966', '7639168030', 'ARUNNKUMAR962@GMQIL.COM', '2002-04-15', 22, '2', '2', 'Natarajan', 'Carpenter', 20000.00, 4, 0.00, 18000.00, 'CHENNAI', 'Chennai', '2411040009', '1', '1', 'upload_files/candidate_tracker/9734905932_NaukriArunkumar1y6m.pdf', NULL, '1', '2024-11-04', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and body language is very different , sales exp for 1 year, not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-04 05:23:09', 104, '2024-11-04 04:42:35', 0, NULL, 1),
(22667, 'Humera thasleem', '6', '7200052247', '7200725958', 'Humerathasleem039@gmail.com', '2004-07-06', 20, '2', '2', 'S.BFathima', 'Agent', 96000.00, 1, 0.00, 20000.00, 'New No:24/1,8th street,Thiyagrayapuram Thangal', 'New No: 24/1,8th street,Thiyagrayapuram Thangal', '2411040010', '50', '1', 'upload_files/candidate_tracker/19312663511_DOC20240604WA0022.1.pdf', NULL, '1', '2024-11-04', 0, '', '3', '59', '2024-11-06', 165000.00, '', '3', '2024-11-07', '2', 'Communication Ok fresher need to train and check in 7 days training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-11-06', 1, '2024-11-04 05:23:33', 60, '2024-11-05 06:37:41', 0, NULL, 1),
(22668, 'Rizwana k', '6', '7358275838', '', 'rizwanakadhar1904@gmail.com', '2004-01-19', 20, '2', '2', 'Kadhar basha', 'Metro(house keeping)', 90000.00, 1, 0.00, 20000.00, 'New.23 9th street Thiyagarayapuram Thangal', 'New.23 9th street Thiyagarayapuram Thangal', '2411040011', '50', '1', 'upload_files/candidate_tracker/12470326652_rizwanares.pdf', NULL, '1', '2024-11-04', 0, '', '3', '59', '2024-11-06', 165000.00, '', '3', '2024-11-07', '1', 'Communication Ok Fresher need to train and check in 7 days Her friend also got selected for the role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-11-06', 1, '2024-11-04 05:24:04', 60, '2024-11-05 07:14:36', 0, NULL, 1),
(22669, 'Vinitha', '6', '8072971568', '', 'vinithajustingregory@gmail.com', '2002-09-04', 22, '2', '2', 'Justin Gregory', 'Mechanic', 40000.00, 1, 0.00, 16000.00, 'Karaikudi', 'Chennai', '2411040012', '57', '1', 'upload_files/candidate_tracker/80560077774_Resumev.pdf', NULL, '1', '2024-11-04', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Hold - She need time to confirm have exams too ', '5', '1', '', '1', '8', '', '2', '2024-12-09', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-11-04 05:33:56', 104, '2024-11-04 04:40:08', 0, NULL, 1),
(22670, 'G. Sri madina', '6', '8610809990', '6369154190', 'Srimadinagg@gmail.com', '2002-08-20', 22, '2', '2', 'G.Gnanavel', 'Barber', 80000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2411040013', '50', '1', 'upload_files/candidate_tracker/75987003126_SRIMADINA.G.pdf', NULL, '1', '2024-11-04', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice ok but communication is very low and low understanding  and candidate say its long distance so no it for my team', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-04 05:36:19', 104, '2024-11-04 04:41:53', 0, NULL, 1),
(22671, 'Naveen Kumar N', '13', '9940383287', '8754488202', 'navee2299@gmail.com', '2000-08-09', 24, '6', '2', 'Nagaraj P', 'Electrician', 220000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2411040014', '', '1', 'upload_files/candidate_tracker/58374582959_NaveenKumarresume.pdf', NULL, '1', '2024-11-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-04 06:04:33', 1, '2024-11-04 06:11:43', 0, NULL, 1),
(22672, 'Gowtham. Sp', '6', '6382688186', '', 'gowtham212678@gmail.com', '2002-12-22', 21, '2', '2', 'Papitha', 'Cooli', 10000.00, 0, 25000.00, 28000.00, 'Arakkonam', 'Arakkonam', '2411040015', '42', '2', 'upload_files/candidate_tracker/86548614434_resume.pdf', NULL, '1', '2024-11-04', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate not suit for sales profile. he work in aditya birla just 3month only. now he exp 15k take home, sustainability issue,he met accident 1yr back, my thought driving also tough.reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-11-04 06:24:16', 104, '2024-11-04 04:40:41', 0, NULL, 1),
(22673, 'Saranya M', '6', '8072416330', '7299171724', 'Saranyasumathi001@gmail.com', '2001-10-24', 23, '2', '2', 'Munusamy', 'Own business', 30000.00, 5, 0.00, 15000.00, 'Oldwashermenpet', 'Oldwashermenpet', '2411040016', '50', '1', 'upload_files/candidate_tracker/24081167750_SARANYACV.pdf', NULL, '1', '2024-11-04', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skill is low and then interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-04 06:41:51', 104, '2024-11-04 04:45:50', 0, NULL, 1),
(22674, 'Surjithkumar', '11', '9150983872', '', 'surjithkumar345@gmail.com', '2003-04-30', 21, '3', '2', 'Sankar', 'Farmer', 72000.00, 1, 0.00, 7000.00, 'Vellore', 'Porur', '2411040017', '', '1', 'upload_files/candidate_tracker/91272913006_SurjithkumarCV.pdf', NULL, '1', '2024-11-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-11-04 06:52:43', 104, '2024-11-05 05:20:30', 0, NULL, 1),
(22675, 'Beula', '4', '7604821610', '', 'beula.yesu21@gmail.com', '2000-03-17', 24, '2', '1', 'Kishore', 'Co operation', 45.00, 1, 0.00, 25.00, 'Andhra Pradesh', 'Ayanawaram', '2411040018', '42', '2', 'upload_files/candidate_tracker/48314709274_Kishorebeula123.pdf', NULL, '2', '2024-11-04', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain in sales ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-11-04 07:16:02', 104, '2024-11-06 04:09:08', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22676, 'J MANIKANDAN', '6', '9585368105', '9786422073', 'actorjai505@gmail.com', '2003-12-31', 20, '2', '2', 'J Lalitha', 'Farmer', 70000.00, 3, 18000.00, 20000.00, 'Sivan Kovil Street kunnam Perambalur Tamilnadu', 'Sivan Kovil Street kunnam Perambalur Tamilnadu', '2411040019', '1', '2', 'upload_files/candidate_tracker/74309469648_J.MANIKANDANResume.pdf', NULL, '1', '2024-11-04', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good at communication but long distance asking time to settle in chennai', '5', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-04 07:47:01', 104, '2024-11-04 04:40:54', 0, NULL, 1),
(22677, 'Krishna prasath.M', '6', '9342450568', '7358695030', 'prasathkrishna1987@gmail.com', '2004-02-02', 20, '3', '2', 'Muthu kumar', 'Driver', 30000.00, 1, 0.00, 20.00, 'Kolappakkam', '1/110 vembuli Amman Kovil street kolappakkam', '2411040020', '', '1', 'upload_files/candidate_tracker/91462210093_CV2024080601144094.pdf', NULL, '1', '2024-11-04', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is low and his voice is also very low.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-11-04 09:11:35', 104, '2024-11-04 04:43:41', 0, NULL, 1),
(22678, 'B.Yogesh', '6', '7305244871', '', 'Yashyogesh973@gmail.com', '2004-05-07', 20, '3', '2', 'V.Balu', 'Two Wheeler mechanic', 30000.00, 1, 0.00, 15000.00, '#106 Dr Ambedkar street akask nagar thandalam', 'Chennai', '2411040021', '', '1', 'upload_files/candidate_tracker/14907619402_Yogeshresumeupdated11.docx', NULL, '1', '2024-11-04', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication and convincing skill is low and then interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-04 09:12:05', 104, '2024-11-04 04:45:20', 0, NULL, 1),
(22679, 'Yuvasree.M', '6', '7358289654', '7358695030', 'Prasathkrishna1987@gmail.com', '2003-10-01', 21, '3', '2', 'Mohandass. M', 'OLDR', 50000.00, 1, 0.00, 30000.00, 'Kolappakkam', '2nd street M.G.R nagar kolappakkam', '2411040022', '', '1', 'upload_files/candidate_tracker/75543678579_MinimalistModernProfessionalCVResume.pdf', NULL, '1', '2024-11-04', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate commuication ok but voice not good and very long distance so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-04 09:12:41', 104, '2024-11-04 04:42:12', 0, NULL, 1),
(22680, 'Jayashree Gj', '6', '7305577800', '8825549618', 'jayashree2408gj@gmail.com', '1999-08-24', 25, '2', '1', 'Mahalakshmi', 'Housewife', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2411040023', '45', '1', 'upload_files/candidate_tracker/12846180785_Resumejayashree.docx', NULL, '1', '2024-11-04', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected- having interest in other profession looking for temporary option now', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-04 09:12:56', 104, '2024-11-04 04:41:25', 0, NULL, 1),
(22681, 'N S PORKODI', '13', '9515763779', '9490419464', 'Porkodins2003@gmail.com', '2003-10-25', 21, '6', '2', 'N.subramanyam', 'Weaver', 15000.00, 2, 0.00, 20000.00, 'Putturu', 'Putturu', '2411040024', '', '1', 'upload_files/candidate_tracker/73985332217_PorkodiBsccs20248.108.429.0JavaFullStack.pdf.pdf', NULL, '1', '2024-11-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-04 09:38:38', 1, '2024-11-04 09:42:18', 0, NULL, 1),
(22682, 'Sowmiya Lakshmi B', '4', '6381539694', '7538839694', 'sowmiyavijaya317@gmail.com', '2001-10-31', 23, '5', '2', 'Vijaya Lakshmi B', 'Labour', 11000.00, 0, 0.00, 20000.00, 'Manali new town, Chennai -600103.', 'Manali new town, Chennai -600103.', '2411040025', '', '1', 'upload_files/candidate_tracker/81442730649_CV2024100811445445.pdf', NULL, '1', '2024-11-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-04 04:51:05', 1, '2024-11-04 04:56:28', 0, NULL, 1),
(22683, 'Gokul PR', '13', '9487212830', '8667474205', 'gokulrajendran997@gmail.com', '1997-12-06', 26, '3', '2', 'Rajendran', 'Farmer', 20000.00, 0, 15000.00, 17000.00, 'Erode', 'Erode', '2411050001', '', '2', 'upload_files/candidate_tracker/18565977667_GokulupdatedResume.pdf', NULL, '1', '2024-11-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-05 04:03:15', 1, '2024-11-05 04:10:11', 0, NULL, 1),
(22684, 'Jeevananthan.K', '13', '8220959782', '9498446944', 'jeevananthannanbaa@gmail.com', '2001-06-04', 23, '3', '2', 'Krishnan.K', 'Painter', 15000.00, 1, 0.00, 10000.00, 'Dharmapuri', 'Chennai', '2411050002', '', '1', 'upload_files/candidate_tracker/20292008458_BlueSimpleProfessionalCVResume202411051007040000.pdf', NULL, '1', '2024-11-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-05 04:08:58', 1, '2024-11-05 04:45:48', 0, NULL, 1),
(22685, 'Vishva J', '13', '8925124483', '', 'vishvajagan2003@gmail.com', '2003-03-16', 21, '3', '2', 'Jaganathan D', 'Daily wages', 35000.00, 2, 0.00, 2.70, 'Chennai', 'Chennai', '2411050003', '', '1', 'upload_files/candidate_tracker/29076699665_VishvaCV.pdf', NULL, '1', '2024-11-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-05 04:11:49', 1, '2024-11-05 04:15:14', 0, NULL, 1),
(22686, 'Harish Kumar T P', '13', '6382526097', '6379695657', 'tpharishkumar555@gmail.com', '2003-04-23', 21, '2', '2', 'Pradeep Kumar T G', 'Sales representative', 12000.00, 1, 0.00, 20000.00, 'Madurai', 'Chennai', '2411050004', '1', '1', 'upload_files/candidate_tracker/82987800722_Harish555.pdf', NULL, '2', '2024-11-05', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-05 04:25:48', 104, '2024-11-05 11:01:36', 0, NULL, 1),
(22687, 'S.Raja', '6', '9176356030', '9176215905', 's.raja23903@gmail.com', '2003-09-23', 21, '2', '2', 'Parent S. Lakshmi v.sri moorthi', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2411050005', '1', '1', 'upload_files/candidate_tracker/49607587778_ImagetoPDF2024092618.27.56.pdf', NULL, '1', '2024-11-05', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not having interest in sales and not ok with ofz time', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-05 04:56:27', 104, '2024-11-05 05:22:37', 0, NULL, 1),
(22688, 'Jothika Chandran', '6', '8428247237', '9551630101', 'joajee17@gmail.com', '2004-03-17', 20, '2', '2', 'Krishna', 'Electrical Engineer', 35000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2411050006', '50', '1', 'upload_files/candidate_tracker/64294943715_CVofJothika.pdf', NULL, '1', '2024-11-05', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate all ok but very long distance and she need to logout the office everyday on 6 to 6.30  so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-05 04:57:25', 104, '2024-11-05 05:23:22', 0, NULL, 1),
(22689, 'Jaikumar A', '6', '9884590323', '7305604601', 'jai6938288@gmail.com', '2003-05-21', 21, '2', '2', 'Manickam K', 'DME( Agriculture department writter)', 22000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2411050007', '42', '1', 'upload_files/candidate_tracker/18397473572_CV2024092221094128.pdf', NULL, '1', '2024-11-05', 0, '', '3', '59', '2024-11-11', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok 3 months exp in calling but no documents can give a try and check in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-11-11', 1, '2024-11-05 05:04:53', 60, '2024-11-07 06:43:48', 0, NULL, 1),
(22690, 'Mervinmanivel S', '6', '9629189429', '', 'mervins9429@gmail.com', '2001-12-18', 22, '3', '2', 'M Santiago', 'Farmer', 100000.00, 1, 0.00, 200000.00, 'Trichy', 'Velachery', '2411050008', '', '1', 'upload_files/candidate_tracker/57505803560_Mervinresumenew1.pdf', NULL, '1', '2024-11-05', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - having interest in own buisness and not good at communication', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-05 05:25:36', 104, '2024-11-05 05:23:00', 0, NULL, 1),
(22691, 'Sowmiya Lakshmi B', '6', '7538839694', '6381539694', 'sowmiyavijaya317@gmail.com', '2001-10-31', 23, '2', '2', 'Vijayalakshmi B', 'Labour', 11000.00, 0, 0.00, 20000.00, 'Manali new town, Chennai -600103', 'Manali new town, Chennai -600103', '2411050009', '1', '1', 'upload_files/candidate_tracker/70850584292_CV2024100811445445.pdf', NULL, '1', '2024-11-05', 0, '', '3', '59', '2024-11-11', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can be trained in our roles need to check and confirm in training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1066', '5151', '2024-11-11', 1, '2024-11-05 05:27:08', 60, '2024-12-06 03:51:49', 0, NULL, 1),
(22692, 'Kather Moideen G', '13', '7550188547', '', 'kathermoideen4@gmail.com', '2001-09-04', 23, '2', '2', 'Gouse Moideen A', 'Business', 30000.00, 1, 0.00, 100000.00, 'Palavakkam, Chennai', 'Palavakkam, Chennai', '2411050010', '1', '1', 'upload_files/candidate_tracker/32658283888_kmoideen.pdf', NULL, '1', '2024-11-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-05 05:27:59', 104, '2024-11-05 12:07:42', 0, NULL, 1),
(22693, 'Hari prasath.S', '6', '8939781014', '', 'hariprasathh531@gmail.com', '2004-03-02', 20, '2', '2', 'Srinivasan', 'Driver', 15000.00, 1, 0.00, 18000.00, 'Madhuravoyal', 'Madhuravoyal', '2411050011', '50', '1', 'upload_files/candidate_tracker/53491975733_HariResumePdf.pdf', NULL, '1', '2024-11-05', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'canidate communication and performance is not good ,also sustainable doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-11-05 05:28:09', 104, '2024-11-05 05:23:34', 0, NULL, 1),
(22694, 'Gunalan', '6', '9025874717', '', 'gunamuraga2002@gmail.com', '2002-10-27', 22, '2', '2', 'Muruganatham', 'Former', 20000.00, 0, 0.00, 15000.00, 'Kumbakonam', 'Saidapet', '2411050012', '50', '1', 'upload_files/candidate_tracker/14701303202_ResumeGoogleDocs1.docx', NULL, '1', '2024-11-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit for Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-05 05:30:02', 104, '2024-11-05 05:21:42', 0, NULL, 1),
(22695, 'Prakash Raj. B', '6', '9626850152', '', 'bprakash.bpr@gmail.com', '1999-05-05', 25, '2', '2', 'Balasundharam', 'Farmer', 15000.00, 2, 0.00, 16000.00, 'Chidambaram', 'Saidapet', '2411050013', '50', '1', 'upload_files/candidate_tracker/76531026137_MYRESUME.pdf', NULL, '1', '2024-11-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit for Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-05 05:30:54', 104, '2024-11-05 05:21:31', 0, NULL, 1),
(22696, 'Vignesh', '4', '9345401631', '', 'vickysmartguy93@gmail.com', '2004-02-18', 20, '2', '2', 'Ayyapillai', 'Mason', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2411050014', '50', '1', 'upload_files/candidate_tracker/86776596889_resumevignesh.pdf', NULL, '1', '2024-11-05', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-05 05:42:36', 104, '2024-11-05 11:40:14', 0, NULL, 1),
(22697, '', '0', '7305632791', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411050015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-05 05:56:12', 0, NULL, 0, NULL, 1),
(22698, 'Princilla Margarate.F', '6', '9345476307', '8122697173', 'princillamargarate@gmail.com', '2002-09-20', 22, '2', '2', 'Parents', 'Electrition', 200000.00, 2, 0.00, 16000.00, 'West Tambaram', 'West Tambaram', '2411050016', '57', '1', 'upload_files/candidate_tracker/49914183848_Princillamargarate.F.pdf', NULL, '1', '2024-11-05', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skill is low and then interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-05 05:56:28', 104, '2024-11-05 05:23:59', 0, NULL, 1),
(22699, 'Dhanush kumar', '6', '8939351681', '9092218163', 'dhanushwork2004@gmail.com', '2004-05-08', 20, '2', '2', 'Mururan', 'Driver', 120000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2411050017', '57', '1', 'upload_files/candidate_tracker/65821465504_dhanushresumepdf.pdf', NULL, '1', '2024-11-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-05 05:58:12', 104, '2024-11-05 12:14:54', 0, NULL, 1),
(22700, 'Ramya. K', '6', '7305632891', '9952064727', 'ramyakalaiarasan2003@gmail.com', '2003-03-02', 21, '2', '2', 'Kalaiarasan', 'Office', 200000.00, 1, 0.00, 15000.00, 'Madippaakkam', 'Madipakkam', '2411050018', '57', '1', 'upload_files/candidate_tracker/14934549085_ramyaresumecompressed1.pdf', NULL, '1', '2024-11-05', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skill is low and then interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-05 05:58:48', 104, '2024-11-05 05:24:15', 0, NULL, 1),
(22701, 'Suganthi.K', '6', '8825977412', '', 'ksuganthi912@gmail.com', '2004-07-11', 20, '2', '2', 'Kannan', 'Driver', 15000.00, 2, 0.00, 15000.00, 'Tenkasi', 'Thambaram', '2411050019', '57', '1', 'upload_files/candidate_tracker/16664598879_Suganthiresume2.pdf202410271111150000.pdf', NULL, '1', '2024-11-05', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not ok with way of communication and interested in other profession', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-05 06:00:49', 104, '2024-11-05 05:22:16', 0, NULL, 1),
(22702, 'Swetha. S', '6', '9363126240', '6374769638', 'swes.swes2004@gmail.com', '2004-03-25', 20, '2', '2', 'Suresh babu', 'Concrete worker', 14000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Thambaram', '2411050020', '57', '1', 'upload_files/candidate_tracker/22240012420_SwethaResume2.pdf202409071057380000.pdf202410251041430000.pdf', NULL, '1', '2024-11-05', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'reject - communication was not good and  also interested in other profession', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-05 06:01:00', 104, '2024-11-05 05:22:04', 0, NULL, 1),
(22703, 'Gopinath.A', '6', '8610011947', '9791174431', 'gnath8216@gmail.com', '2003-01-08', 21, '2', '2', 'Anandhan.k', 'No', 50000.00, 0, 0.00, 15000.00, 'Virugambakkama', 'muthumariamman kovil', '2411050021', '1', '1', 'upload_files/candidate_tracker/59572073701_gopi.pdf', NULL, '3', '2024-11-05', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate not proper dress code and not under standing my words so not fit for my team ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-05 06:05:39', 104, '2024-11-05 05:23:10', 0, NULL, 1),
(22704, 'Arun kumar', '4', '9025455849', '9489273278', 'arunkumaraiandds@gmail.com', '2002-04-22', 22, '5', '2', 'Mahendiran', 'Supervisor', 15000.00, 1, 0.00, 350000.00, 'Villupuram', 'Villupuram', '2411050022', '', '1', 'upload_files/candidate_tracker/15551527309_Arunkumarresume2024.pdf', NULL, '1', '2024-11-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-05 06:22:48', 1, '2024-11-05 06:29:27', 0, NULL, 1),
(22705, '', '0', '6379027963', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411050023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-05 06:46:16', 0, NULL, 0, NULL, 1),
(22706, 'R. Mathavan', '6', '9787679124', '', 'mathavanramasamy18@gmail.com', '2003-08-09', 21, '2', '2', 'K Ramasamy', 'Cooli', 30000.00, 2, 0.00, 18000.00, '2/269(8) south Street achankuttam', 'MGR nagar, kk nagar, Chennai', '2411050024', '57', '1', 'upload_files/candidate_tracker/78718462874_RESUMEmadhavan.pdf', NULL, '1', '2024-11-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit for Sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-05 06:50:55', 104, '2024-11-05 05:21:05', 0, NULL, 1),
(22707, 'Siva', '5', '9080612010', '9080612010', 'sivarajan1917@gmail.com', '1996-08-19', 28, '2', '2', 'Paramasivam', 'Store keeper', 300000.00, 0, 15000.00, 16000.00, 'Tirunelveli', 'Chennai', '2411050025', '50', '2', 'upload_files/candidate_tracker/70595384868_SivaResume11.pdf', NULL, '3', '2024-11-05', 0, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No clarity in his answers about his personal life as well as professional approach was good but nothing else was. ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-11-05 06:52:36', 104, '2024-11-05 05:21:54', 0, NULL, 1),
(22708, 'Velu', '6', '8838927635', '7358314707', 'selvarajvel8@gmail.com', '1999-09-19', 25, '2', '2', 'Selvaraj', 'Farmer', 25000.00, 1, 0.00, 20000.00, 'Tambaram', 'Tambaram', '2411050026', '50', '1', 'upload_files/candidate_tracker/12033532800_velselvaraj.pdf', NULL, '1', '2024-11-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit for Sales ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-05 06:56:03', 104, '2024-11-05 05:20:51', 0, NULL, 1),
(22709, 'Praveenkumar G', '13', '9361720857', '', 'gpraveenganesh2001@gmail.com', '2001-08-21', 24, '2', '2', 'Ganesh', 'Barber', 10000.00, 1, 0.00, 20000.00, 'Sri perumbadhur', 'Sri perumbadhur', '2411050027', '1', '1', 'upload_files/candidate_tracker/30994743597_praveenressume2.pdf', NULL, '1', '2026-02-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Kiran', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-05 07:37:13', 159, '2026-02-18 10:56:34', 0, NULL, 1),
(22710, 'Pugazhendhi', '4', '9345274478', '9566024739', 'apugazhendhipugazhendhia@gmail.com', '2001-09-09', 23, '2', '2', 'Anna durai', 'Export company', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2411050028', '50', '1', 'upload_files/candidate_tracker/29971990248_BSCSTATISTICS1.pdf', NULL, '1', '2024-11-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-05 08:33:46', 1, '2024-11-05 09:28:51', 0, NULL, 1),
(22711, 'Sabitha', '6', '6381367569', '9940093363', 'sabithamunusamy09@gmail.com', '2003-10-09', 21, '2', '2', 'Munusamy', 'Driver', 30000.00, 1, 0.00, 20000.00, 'Chennai, thiruvottiyur', 'Chennai, thiruvottiyur', '2411050029', '1', '1', 'upload_files/candidate_tracker/57458889750_resume.pdf', NULL, '1', '2024-11-08', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'reject- she was not ok with salary and also not good at communication', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-05 11:17:39', 153, '2024-11-08 03:32:15', 0, NULL, 1),
(22712, '', '0', '6381338960', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411050030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-05 11:18:19', 0, NULL, 0, NULL, 1),
(22713, '', '0', '7871614385', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411050031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-05 11:35:02', 0, NULL, 0, NULL, 1),
(22714, 'Abirami Velmurugan', '4', '9442777229', '7305979195', 'abiarul0120@gmail.com', '2001-05-01', 23, '5', '2', 'Velmurugan', 'Agriculture', 15000.00, 2, 15500.00, 25000.00, 'Thittagudi', 'Thittagudi', '2411050032', '', '2', 'upload_files/candidate_tracker/40101670270_V.AbiramiResume.pdf', NULL, '3', '2024-11-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-05 11:58:15', 1, '2024-11-05 12:23:15', 0, NULL, 1),
(22715, 'Sowmiya.S', '6', '8667518238', '8675416974', 'sowmiya8830@gmail.com', '2002-12-07', 21, '2', '2', 'Sundharamoorthy', 'Farmar', 20000.00, 3, 0.00, 25000.00, 'Chennai', 'Chennai', '2411050033', '1', '1', 'upload_files/candidate_tracker/88132138157_DOC20240614WA0000..docx', NULL, '1', '2024-11-11', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - candidate was not at all speaking and not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-05 02:14:19', 154, '2024-11-11 05:06:19', 0, NULL, 1),
(22716, 'M.Konsy Anjali', '4', '9629502153', '9600732243', 'anjalikonsy@gmail.com', '1999-11-15', 24, '2', '2', 'K.Moorthy', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Ammapetai, Thanjavur', 'Ammapetai, Thanjavur', '2411050034', '1', '1', 'upload_files/candidate_tracker/81258665766_cv51727875525228.pdf', NULL, '1', '2024-11-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-05 02:38:18', 104, '2024-11-06 04:25:47', 0, NULL, 1),
(22717, 'Sivapriya', '6', '7708605579', '', 'avisriya15@gmail.com', '2000-07-15', 24, '2', '2', 'Lakshmanan', 'Real estate', 35000.00, 3, 18000.00, 20000.00, 'Tirunelveli', 'Chennai', '2411050035', '1', '2', 'upload_files/candidate_tracker/68024575361_sivapriya1.pdf', NULL, '1', '2024-11-27', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expected high salary, not worth of it', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55651', '5151', '1970-01-01', 1, '2024-11-05 07:40:55', 153, '2024-11-27 06:28:18', 0, NULL, 1),
(22718, 'Mithun.S', '6', '6369727181', '7708760713', 'MITHUN727181@gmail.com', '2006-07-01', 18, '2', '2', 'K.Suresh', 'Tailor', 10000.00, 0, 0.00, 14000.00, 'Tiruvottiyur', 'Kaladipet', '2411060001', '50', '1', 'upload_files/candidate_tracker/97489981959_mithunnew1.pdf', NULL, '1', '2026-02-11', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Age:18', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-06 04:09:00', 159, '2026-02-11 04:13:00', 0, NULL, 1),
(22719, 'Kaviyasri P', '6', '9629627673', '8825687673', 'srikaviya7673@gmail.com', '2003-06-18', 21, '2', '2', 'Pallavan S', 'Kooli', 80000.00, 1, 0.00, 16000.00, '48,Pillayar kovil st,elayanarvellore,walajabad', '48,Pillayar kovil st,elayanarvellore,walajabad', '2411060002', '1', '1', 'upload_files/candidate_tracker/7460942517_dsffsdf.pdf', NULL, '1', '2024-11-06', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not ok with salary and doubleminded about  job', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-06 04:23:17', 104, '2024-11-06 04:28:25', 0, NULL, 1),
(22720, '', '0', '6380648153', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411060003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-06 04:51:14', 0, NULL, 0, NULL, 1),
(22721, 'S senthu', '13', '9042731216', '', 'senthusudharsanam@gmail.com', '2003-09-20', 21, '2', '2', 'B sudarsanam', 'Mason', 150000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2411060004', '1', '1', 'upload_files/candidate_tracker/23971087723_ssenthuresume.docxGoogleDocs1.pdf', NULL, '1', '2024-11-06', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-06 05:34:34', 104, '2024-11-06 11:14:20', 0, NULL, 1),
(22722, 'Manochandar J', '6', '9361685704', '9003685289', 'manochandar1999@gmail.com', '2000-02-23', 24, '2', '2', 'S k jeyakanthan', 'Ex army', 40000.00, 1, 0.00, 15000.00, 'Theni', 'Chennai', '2411060005', '50', '1', 'upload_files/candidate_tracker/30221572749_manochandarupdateresume.pdf', NULL, '1', '2024-11-06', 0, '', '3', '59', '2024-11-11', 192000.00, '', '3', '2024-12-05', '2', 'Communication Ok fresher for our roles can be trained check and confirm in 7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-11-11', 1, '2024-11-06 05:46:43', 60, '2024-11-07 07:15:57', 0, NULL, 1),
(22723, 'Sandhiyapriya', '6', '9787941363', '9842402253', 'sandhiyapriya029@gmail.com', '2002-06-29', 22, '2', '2', 'Ramachandran', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Melmaruvathur', 'Chengalpattu', '2411060006', '1', '1', 'upload_files/candidate_tracker/75784929614_DOC20241023WA0006..pdf', NULL, '1', '2024-11-07', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And performance is Ok,But Her Distance is To long sustainable is more Doubt,', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '55666', '5151', '1970-01-01', 1, '2024-11-06 05:53:23', 104, '2024-11-07 05:21:38', 0, NULL, 1),
(22724, 'Roobini S', '13', '9360237488', '', 'roobinirainbow2468@gmail.com', '2003-07-09', 21, '6', '2', 'Sivamoorthi E', 'Auto Driver', 72000.00, 1, 0.00, 20000.00, 'K.K.Nagar', 'K.K.nagar', '2411060007', '', '1', 'upload_files/candidate_tracker/29706219219_CV2024110608433535.pdf', NULL, '1', '2024-11-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-06 06:07:40', 104, '2024-11-06 12:13:49', 0, NULL, 1),
(22725, 'Suja Mary V', '4', '8220040910', '', 'sujavincent19@gmail.com', '2001-01-09', 23, '2', '2', 'Parent', 'Daily wages', 170000.00, 3, 13.50, 15000.00, 'Thanjavur', 'Thanjavur', '2411060008', '1', '2', 'upload_files/candidate_tracker/72156427841_sujaresume.pdf', NULL, '1', '2024-11-06', 30, '', '3', '59', '2024-11-18', 168000.00, '', '3', '2024-11-20', '2', 'Communication Ok Can be trained in our roles and check in 7 days training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '2024-11-18', 1, '2024-11-06 06:11:59', 60, '2024-11-16 06:32:18', 0, NULL, 1),
(22726, '', '0', '6987439878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411060009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-06 06:21:13', 0, NULL, 0, NULL, 1),
(22727, 'Jayachandran.R', '6', '7397476658', '9094069908', 'jayachandran26062002@gmail.com', '2002-06-26', 22, '2', '2', 'N.Ramesh', 'Driver', 60000.00, 1, 16500.00, 20000.00, 'No.32 Karpagambal Nagar 3rd Street Madipakkam', 'No.32 Karpagambal Nagar 3rd Street Madipakkam', '2411060010', '1', '2', 'upload_files/candidate_tracker/33123480905_Myresume.pdf', NULL, '1', '2024-11-06', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit for his asking salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-11-06 06:28:03', 104, '2024-11-06 04:26:43', 0, NULL, 1),
(22728, 'Thilagavathi S', '6', '6382679762', '', 'Sureshdeepa557@gmail.com', '2000-09-14', 24, '2', '1', 'J Rajapandiyan', 'Private sector', 20000.00, 0, 0.00, 18000.00, 'Ennore Chennai', 'Ennore Chennai', '2411060011', '50', '1', 'upload_files/candidate_tracker/52535201208_ThilagavathiResume.pdf', NULL, '1', '2024-11-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability was doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-06 06:33:37', 104, '2024-11-06 04:26:27', 0, NULL, 1),
(22729, 'Jesintha Amulraj', '6', '7397035300', '9444427241', 'jesintha492001@gmail.com', '2001-09-04', 23, '2', '2', 'Amulraj', 'driver', 15000.00, 2, 0.00, 300000.00, 'salem', 'chennai', '2411060012', '57', '1', 'upload_files/candidate_tracker/42218017241_Jesintha.pdf', NULL, '1', '2024-11-06', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not ok with salary level of our compny\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-06 06:38:51', 104, '2024-11-06 04:27:59', 0, NULL, 1),
(22730, 'hariharan', '13', '8056329572', '', 'hariharan9572@gmail.com', '2002-08-04', 22, '2', '2', 'anbahagan', 'business', 200000.00, 2, 0.00, 350000.00, 'chidambaram', 'chennai', '2411060013', '1', '1', 'upload_files/candidate_tracker/11057781383_HariharanCVf.pdf', NULL, '1', '2024-11-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1027', '', '', '', '1970-01-01', 1, '2024-11-06 07:19:31', 104, '2024-11-06 01:01:49', 0, NULL, 1),
(22731, 'Mohana priya', '6', '9176125598', '9841933138', 'mohanapriya56priya@gmail.com', '2004-03-07', 20, '2', '2', 'Srinika', 'Yes', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Minjur', '2411060014', '57', '1', 'upload_files/candidate_tracker/38435610148_MOHANARESUME.docx', NULL, '3', '2024-11-06', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication and performance is not good.also her voice is not bold and clear.then distance is long sustainable doubt ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-11-06 07:29:41', 104, '2024-11-06 04:29:13', 0, NULL, 1),
(22732, 'Yukesh VJ', '4', '7826892271', '', 'vjyukeshyukesh30@gmail.com', '2002-04-30', 22, '5', '2', 'R.VeeraPandiyan', 'Retired', 30000.00, 1, 0.00, 20000.00, 'Perambalur', 'Chennai', '2411060015', '', '1', 'upload_files/candidate_tracker/14683399981_Yukesh.NewResume.pdf', NULL, '1', '2024-11-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-06 08:38:43', 1, '2024-11-06 08:43:44', 0, NULL, 1),
(22733, 'Naveen', '4', '7358878207', '9750062207', 'naveenkaviya888@gmail.com', '1998-03-19', 26, '2', '2', 'Mohan', '100000', 10000.00, 1, 0.00, 15000.00, 'Nagapattinam', 'Thanjavur', '2411060016', '1', '1', 'upload_files/candidate_tracker/83032715829_NaveenUMresume.pdf', NULL, '1', '2024-11-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-06 08:49:00', 154, '2024-11-11 05:05:28', 0, NULL, 1),
(22734, 'Mohamed Ashik M', '6', '6381140484', '7695934547', 'mohamedashik1004@gmail.com', '2004-07-04', 20, '2', '2', 'Mohamed yousuf', 'Labour', 20000.00, 2, 0.00, 300000.00, 'Pudukkottai', 'Chennai', '2411060017', '50', '1', 'upload_files/candidate_tracker/82444458564_mohamedashikresume1729304450.pdf', NULL, '1', '2024-11-06', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate just 6 months only looking or job after course completed try for it and maily interest for it only , and very long distance so no fit for my team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-06 09:04:17', 104, '2024-11-06 04:28:51', 0, NULL, 1),
(22735, 'Praveenkumar Velmurugan', '6', '7449092103', '7639486514', 'praveenkumar.oct14@gmail.com', '2001-10-14', 23, '2', '2', 'Kamala', 'Agriculture', 10000.00, 1, 0.00, 2.50, 'No,493 Pillaiyar Kovil street kizhakkumarudur', 'Mahalakshmi nagar extension 2 guduvanchery', '2411060018', '49', '1', 'upload_files/candidate_tracker/76782960933_PraveenJobResume.pdf', NULL, '1', '2024-11-06', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-06 09:04:38', 104, '2024-11-06 04:29:26', 0, NULL, 1),
(22736, 'Mani', '6', '6381975830', '', 'kmani3973@gmail.com', '2001-10-27', 23, '2', '2', 'M.SELVI', 'House wife', 15000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2411060019', '45', '2', 'upload_files/candidate_tracker/80002705634_ManikandanRSANWP.pdf', NULL, '1', '2024-11-06', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', '5', '1', '', '4', '6', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-06 09:06:20', 104, '2024-11-06 04:29:37', 0, NULL, 1),
(22737, 'Ahamed Irfaan', '6', '6480577973', '6380577973', 'ahamedirfaan56@gmail.com', '2001-06-19', 23, '2', '2', 'SINTHA ALI HUSSAIN', 'Driver', 50000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2411060020', '49', '1', 'upload_files/candidate_tracker/51349869939_ResumeQA202410080912350000.pdf', NULL, '1', '2024-11-06', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate  was ok with communication but not having confidence', '5', '1', '', '1', '8', '', '2', '2024-11-12', '4', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-06 09:48:50', 104, '2024-11-06 04:30:21', 0, NULL, 1),
(22738, '', '0', '6380577973', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411060021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-06 09:54:34', 0, NULL, 0, NULL, 1),
(22739, '', '0', '7339607203', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411060022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-06 11:29:54', 0, NULL, 0, NULL, 1),
(22740, 'Karunya R', '4', '6383205443', '', 'karunya3200@gmail.com', '2001-03-20', 23, '2', '2', 'Ramasamy S', 'Coolie', 9000.00, 2, 18000.00, 21000.00, 'Thoothukudi', 'Velachery', '2411060023', '50', '2', 'upload_files/candidate_tracker/99473479276_KarunyaResume.pdf', NULL, '1', '2024-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-06 11:34:29', 1, '2024-11-06 06:13:03', 0, NULL, 1),
(22741, 'Mageshwaran', '4', '9176895365', '', 'magesh13042003@gmail.com', '2003-04-13', 21, '2', '2', 'Raja', 'Mason', 15000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2411060024', '56', '1', 'upload_files/candidate_tracker/77635074010_Mageshwaran.R1.pdf', NULL, '1', '2024-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-06 02:23:14', 1, '2024-11-06 02:26:13', 0, NULL, 1),
(22742, 'Jayapriya', '6', '6374263544', '9344066271', 'vspriyavelu2001@gmail.com', '2001-02-20', 23, '2', '2', 'J.R.Velu', 'Mason', 12000.00, 1, 0.00, 20000.00, 'Tiruttani', 'Tiruttani', '2411060025', '1', '1', 'upload_files/candidate_tracker/60387121295_CV2024092614480568.pdf', NULL, '1', '2024-11-07', 0, '', '3', '59', '2024-11-11', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'CA130', '5151', '2024-11-11', 1, '2024-11-06 02:33:00', 60, '2024-11-09 07:16:05', 0, NULL, 1),
(22743, 'Gokul', '4', '8825776885', '', 'gokul.mech3000@gmail.com', '2002-06-30', 22, '2', '2', 'Balu', 'Fresher', 50.00, 1, 0.00, 10000.00, 'Chennai ,omr', 'Chennai ,omr', '2411060026', '56', '1', 'upload_files/candidate_tracker/95684150027_gokulresume.pdf', NULL, '1', '2024-11-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-06 02:33:52', 1, '2024-11-06 02:41:55', 0, NULL, 1),
(22744, 'Ragavi M', '6', '9344527139', '', 'ragaviramya8608@gmail.com', '2004-02-11', 20, '2', '2', 'Mahalingam.G', 'Technician', 36000.00, 1, 0.00, 17000.00, 'Thiruvarur', 'Villivakkam', '2411060027', '1', '1', 'upload_files/candidate_tracker/33081476419_r.r.pdf', NULL, '1', '2024-11-07', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not  suitable for our working and not have confidence about stability', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-06 02:35:48', 104, '2024-11-07 05:20:37', 0, NULL, 1),
(22745, 'Jeevitha T', '6', '6369276630', '9445319387', 'jeevithathiyagarajan20@gmail.com', '2003-05-20', 21, '2', '2', 'Thiyagarajan V', 'Cooli', 15000.00, 1, 0.00, 17000.00, '58 /113,Kalavai Street,Chintadripet,Chennai02', '58 /113,Kalavai Street,Chintadripet,Chennai02', '2411060028', '1', '1', 'upload_files/candidate_tracker/74420320254_CVJeevitha.T.pdf', NULL, '1', '2024-11-07', 0, '', '3', '59', '2024-11-11', 168000.00, '', '3', '2024-11-11', '2', 'Communication Ok Have parttime calling exp can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', '55666', '5151', '2024-11-11', 1, '2024-11-06 04:07:10', 60, '2024-11-08 05:58:57', 0, NULL, 1),
(22746, 'Sankari', '4', '9159565561', '', 'sankaripriya2001@gmail.com', '2001-07-04', 23, '3', '2', 'Kolanchirajan', 'Weaver', 12000.00, 2, 25000.00, 27000.00, 'North Street variyankavalpo Ariyalur dt tamilnadu', 'Chennai mylapore', '2411070001', '', '2', 'upload_files/candidate_tracker/46185630132_BDESankariResume.pdf', NULL, '1', '2024-11-07', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'worked in IT profile .will not suitable forsales ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-11-07 03:58:51', 104, '2024-11-07 05:21:29', 0, NULL, 1),
(22747, 'PUGAZHENDHI V', '2', '7010115713', '', 'pugazhendhi720@gmail.com', '2003-04-22', 21, '6', '2', 'Velu', 'Gold Smith', 96000.00, 2, 0.00, 400000.00, 'CUDDALORE', 'CUDDALORE', '2411070002', '', '1', 'upload_files/candidate_tracker/46808887254_PUGAZHENDHIV.pdf', NULL, '1', '2024-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-07 04:01:57', 1, '2024-11-07 04:08:37', 0, NULL, 1),
(22748, 'ganesan m', '13', '7395914711', '', 'ganesanbca1@gmail.com', '2001-12-02', 22, '2', '2', 'murugesan', 'accountant', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2411070003', '1', '1', 'upload_files/candidate_tracker/70562311596_Ganesan.pdf', NULL, '1', '2024-11-07', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-07 04:37:03', 104, '2024-11-07 06:56:37', 0, NULL, 1),
(22749, 'muthukumar balaji', '13', '7358598416', '', 'muthukumarbalaji111@gmail.com', '2001-10-22', 23, '2', '2', 'balasundar', 'labour', 45000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2411070004', '1', '1', 'upload_files/candidate_tracker/82644727284_muthukumarcv.pdf', NULL, '1', '2024-11-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-07 04:38:48', 104, '2024-11-07 06:57:31', 0, NULL, 1),
(22750, 'Balaji G', '13', '7418117905', '', 'iambalaji04@gmail.com', '2004-07-31', 20, '2', '2', 'Gunasekaran G', 'Farmer', 10000.00, 3, 0.00, 28000.00, 'Cuddelore', 'Chennai', '2411070005', '1', '1', 'upload_files/candidate_tracker/74509068618_BalajiGAts.pdf', NULL, '1', '2024-11-07', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-07 04:39:21', 104, '2024-11-07 06:58:26', 0, NULL, 1),
(22751, 'Anandha kumar', '4', '8438247937', '', 'atozananth@gmail.com', '2001-09-19', 23, '2', '2', 'Bhuvaneswari', 'Hotel', 9000.00, 3, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2411070006', '1', '1', 'upload_files/candidate_tracker/74580539837_ANANDHAKUMARK1.pdf', NULL, '1', '2024-11-07', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'UNFIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-07 04:40:38', 104, '2024-11-07 05:19:07', 0, NULL, 1),
(22752, '', '0', '6384263544', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411070007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-07 04:52:24', 0, NULL, 0, NULL, 1),
(22753, 'SUDARSAN .m', '6', '7397640350', '', 'sudarsans539@gmail.com', '2004-06-13', 20, '2', '2', 'Muruganantham', 'Painter', 10000.00, 1, 0.00, 250000.00, '25/10 A Kallar street Valangaiman Thiruvarur', 'Perungalathur', '2411070008', '49', '1', 'upload_files/candidate_tracker/16142239385_SUDARSANMRESUME.pdf', NULL, '1', '2024-11-07', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not good at communication and less confidence ,long distance', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-07 04:58:33', 104, '2024-11-07 05:21:17', 0, NULL, 1),
(22754, 'PRADEEPKUMAR N', '13', '6369184303', '', 'pradeepnamachivayam@gmail.com', '2002-10-11', 22, '2', '2', 'Namachivayam', 'Farmer', 10000.00, 1, 0.00, 3.00, 'Tirupattur', 'Velachery', '2411070009', '1', '1', 'upload_files/candidate_tracker/25025466768_javafesher.pdf', NULL, '1', '2024-11-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-07 05:02:17', 104, '2024-11-08 10:30:56', 0, NULL, 1),
(22755, 'Thamodharan g', '13', '6381893190', '', 'thamodharangp@gmail.com', '2003-01-10', 21, '2', '2', 'ganesan', 'daily wages', 7000.00, 1, 0.00, 28000.00, 'Bodinayakkanur', 'chennai', '2411070010', '1', '1', 'upload_files/candidate_tracker/44391899064_ThamodharanB.EECE7.58CGPAJava.pdf', NULL, '1', '2024-11-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-07 05:04:11', 104, '2024-11-08 10:36:57', 0, NULL, 1),
(22756, 'senthilkumar b', '13', '8675622539', '', 'senthil737628@gmail.com', '2002-05-18', 22, '2', '2', 'balamurugan kn', 'farmer', 40000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2411070011', '1', '1', 'upload_files/candidate_tracker/52339965875_PurpleandWhiteCleanandProfessionalResume22.pdf', NULL, '1', '2024-11-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-07 05:04:46', 104, '2024-11-07 06:55:32', 0, NULL, 1),
(22757, 'Gnanaprakash', '31', '9597731542', '', 'gvprakash2003@gmail.com', '2003-01-09', 21, '2', '2', 'Srinivasan E', 'Daily wages', 20000.00, 1, 0.00, 15000.00, 'Gummidipundi', 'Gummidipundi', '2411070012', '1', '1', 'upload_files/candidate_tracker/26212345850_Gnanaprakashresume.pdf', NULL, '1', '2024-11-07', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-07 05:08:24', 104, '2024-11-07 06:54:19', 0, NULL, 1),
(22758, 'S .sudharsan', '6', '9994302155', '6382414909', 'Saro1761@gmail.com', '2004-04-19', 20, '2', '2', 'K.sivakumar', 'Spare parts', 26000.00, 1, 0.00, 250000.00, '11/b kasiraman st Kumbakonam', 'Perungalathur', '2411070013', '49', '1', 'upload_files/candidate_tracker/47054507812_sudharsanresume.pdf', NULL, '1', '2024-11-07', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected - not good at prounciation and communication and long distance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-07 05:09:38', 104, '2024-11-07 05:21:06', 0, NULL, 1),
(22759, 'Yamini R', '6', '9363414662', '9791193959', 'yaminiraghuyaminiraghu@gmail.com', '2003-10-29', 21, '2', '2', 'Raghu G', 'Printer', 15000.00, 0, 0.00, 17000.00, 'Chennai', 'Chennai', '2411070014', '42', '2', 'upload_files/candidate_tracker/5220172351_CV2024092220583490.pdf', NULL, '1', '2024-11-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped - requested Previous exp documents but she not shared any', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-07 05:20:11', 104, '2024-11-07 05:20:04', 0, NULL, 1),
(22760, 'B.S.Vimal', '6', '9360637832', '9894038477', 'Vimalbass555@gmail.com', '2001-05-21', 23, '2', '2', 'B.Bagadheeswaran,M.shyla rani', 'Pumbing contractor', 15000.00, 0, 17000.00, 20000.00, '109/a irullapauram,nagercoil', 'thuraipakkam', '2411070015', '42', '2', 'upload_files/candidate_tracker/33895461858_Vimalresume3.pdf', NULL, '1', '2024-11-07', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-07 05:59:20', 104, '2024-11-07 05:21:50', 0, NULL, 1),
(22761, 'Vasanth Kumar', '13', '8870322458', '', 'vasanthakumarvk00@gmail.com', '2002-04-06', 22, '2', '2', 'Murugesan M', 'Cooly', 15000.00, 2, 0.00, 18.00, 'Trinelveli', 'Trinelveli', '2411070016', '1', '1', 'upload_files/candidate_tracker/94151084976_VasanthaKumarMResume1.pdf', NULL, '1', '2024-11-07', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-07 06:02:20', 104, '2024-11-08 10:30:05', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22762, 'Selvabharathi P', '4', '7806947606', '', 'selvabharathip02@gmail.com', '2009-11-07', 0, '2', '2', 'M Pitchaipillai', 'Teacher', 15000.00, 4, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2411070017', '1', '1', 'upload_files/candidate_tracker/25561373637_SelvabharathiP1p15.pdf', NULL, '1', '2024-11-07', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-07 06:20:40', 104, '2024-11-07 05:18:47', 0, NULL, 1),
(22763, 'Yuvarani D', '6', '7449034079', '9943180949', 'yuvaranivinitha6@gmail.com', '2002-09-14', 22, '2', '2', 'Dhamodharan', 'Wever', 12000.00, 1, 0.00, 18000.00, 'Kilkodugalore', 'Thambaram', '2411070018', '1', '1', 'upload_files/candidate_tracker/21128631467_DOC20240821WA0066..pdf', NULL, '1', '2024-11-07', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-07 06:27:17', 104, '2024-11-07 05:22:00', 0, NULL, 1),
(22764, 'Sowmiya', '6', '8940239831', '9790880650', 'Sowmisiva76@gmail.com', '2001-03-28', 23, '2', '2', 'Sivagnanam', 'Shopkeeper', 15000.00, 1, 0.00, 18000.00, 'Melmaruvathur', 'Crompet', '2411070019', '1', '1', 'upload_files/candidate_tracker/73677006492_sowmiyaresume.pdf', NULL, '1', '2024-11-07', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - not good at communication and not ok with salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-07 06:33:02', 104, '2024-11-07 05:20:48', 0, NULL, 1),
(22765, 'M.seenivasa vairamuthu', '6', '9361724532', '9626287927', 'seenivasavairamuthum@gmail.com', '2000-11-15', 23, '2', '2', 'M.muthumari', 'Agriculture', 12000.00, 2, 0.00, 20000.00, '125/5 pillayair Kovil street childramaparapuram,', 'Avadi', '2411070020', '49', '1', 'upload_files/candidate_tracker/34379761302_newsree.pdf', NULL, '1', '2024-11-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-07 09:26:16', 104, '2024-11-07 05:20:14', 0, NULL, 1),
(22766, 'D.kavitha', '6', '9176312655', '', 'Kavithadurairajts@gmail.com', '1994-12-17', 29, '2', '2', 'Durairaj', 'Barber', 25000.00, 1, 0.00, 16000.00, 'Villivakkam chennai -49', 'Villivakkam chenna-49', '2411070021', '50', '1', 'upload_files/candidate_tracker/58214590581_DOC20240925WA0004.pdf', NULL, '1', '2024-11-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-07 11:38:19', 153, '2024-11-08 03:33:04', 0, NULL, 1),
(22767, 'E Rajadurai', '13', '9655787529', '', 'rajega2428@gmail.com', '1997-08-28', 27, '1', '2', 'Egambaram', 'Business', 15000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2411070022', '', '1', 'upload_files/candidate_tracker/1280024431_rajadurairesume.pdf', NULL, '1', '2024-11-11', 0, 'Ganavel from united Technology', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-07 11:43:40', 1, '2024-11-07 12:08:30', 0, NULL, 1),
(22768, 'Sanjeeve', '4', '7676582962', '9943611455', 'sanjaysanjeeve46@gamil.com', '2003-09-12', 21, '5', '2', 'Marimuthu', 'Driving', 20.00, 1, 0.00, 18.00, 'TRICHY', 'Chennai', '2411070023', '', '1', 'upload_files/candidate_tracker/12505986309_Sanjeeveresume11.pdf', NULL, '1', '2024-11-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-07 12:49:32', 1, '2024-11-07 12:53:30', 0, NULL, 1),
(22769, 'Monisha D', '4', '8925233952', '7502135523', 'monisha28112003@gmail.com', '2003-11-28', 21, '2', '1', 'Prasanth K', 'Barber', 15000.00, 0, 0.00, 15000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2411070024', '1', '1', 'upload_files/candidate_tracker/76673038051_MONIRESUME3.pdf', NULL, '1', '2024-12-13', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit...married and have no chance to perform as a telecaller', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-07 12:55:23', 104, '2024-12-13 06:47:16', 0, NULL, 1),
(22770, 'AJAY P', '6', '7904928809', '7639895858', 'ajayraw1010@gmail.com', '2003-11-10', 20, '2', '2', 'PARAMASIVAM', 'Fruit shop', 100000.00, 0, 0.00, 30000.00, 'Thirupathur', 'Thirupathur', '2411070025', '56', '1', 'upload_files/candidate_tracker/77335754084_RESUMEAJAYnew.pdf', NULL, '3', '2024-11-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-07 01:16:48', 153, '2024-11-08 03:32:53', 0, NULL, 1),
(22771, 'Reshma', '4', '9345869902', '', 'chickchuzi@gmail.com', '2005-09-09', 19, '5', '2', 'Jamal shariff', 'Car dealer', 60000.00, 4, 18000.00, 18000.00, '7/15, begum 3rd Street, royepettah, Chennai 14', 'Same as above', '2411070026', '', '2', 'upload_files/candidate_tracker/73989311736_RESHMARUHI.pdf', NULL, '1', '2024-11-08', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-07 01:39:07', 1, '2024-11-07 01:45:02', 0, NULL, 1),
(22772, 'Maya Manikandan', '4', '7902695663', '', 'mayamanikandan2002@gmail.com', '2002-06-18', 22, '5', '2', 'Manikandan', 'Farmer', 25000.00, 1, 1.90, 3.00, 'Manikandaviladam (h)keerithodu idukki 685606', 'Dhanam ladies hostel poosala gangu street egmore', '2411070027', '', '2', 'upload_files/candidate_tracker/18875913190_CV2024110618173329.pdf', NULL, '1', '2024-11-11', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-07 01:44:01', 1, '2024-11-07 01:47:54', 0, NULL, 1),
(22773, 'Sukanraj P', '4', '9080389779', '', 'Sukansukan519@gmail.com', '1999-08-31', 25, '2', '2', 'Periyasamy', 'Driver', 20000.00, 0, 0.00, 200000.00, 'Erode', 'Porur, Chennai', '2411070028', '56', '1', 'upload_files/candidate_tracker/36846410662_NAUKRISUKANRAJ1729342514116Sukanraj.pdf', NULL, '1', '2024-11-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-07 01:45:55', 1, '2024-11-07 01:53:59', 0, NULL, 1),
(22774, 'Senduru', '21', '7358370724', '', 'Senduru3701@gmail.com', '2001-07-02', 23, '2', '2', 'Moorthy', 'Day worker', 15000.00, 1, 0.00, 250000.00, 'Kotturpuram chennai', 'Kotturpuram chennai', '2411070029', '56', '1', 'upload_files/candidate_tracker/41926343449_SenduruResume202410191951580000compressed1.pdf', NULL, '1', '2024-11-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-07 03:38:44', 1, '2024-11-07 03:41:16', 0, NULL, 1),
(22775, 'Nivas s', '6', '7548864658', '', 'thananivas123456@gmail.com', '2002-03-05', 22, '2', '2', 'SELVAM N', 'IOCL', 20000.00, 1, 0.00, 25000.00, 'Trichy', 'Chennai', '2411070030', '56', '1', 'upload_files/candidate_tracker/91550684182_NivasSResume....pdf', NULL, '1', '2024-11-08', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate already selected for govt job in tamilnad barder policy waiting for the resultaftre 4 months join the work just4 months serch the work so not fot for my team', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-07 04:26:18', 153, '2024-11-08 03:31:16', 0, NULL, 1),
(22776, '', '0', '6380896037', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411080001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-08 02:34:39', 0, NULL, 0, NULL, 1),
(22777, '', '0', '9363649774', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411080002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-08 04:18:29', 0, NULL, 0, NULL, 1),
(22778, 'Manikanadan M', '13', '6385501361', '', 'mmanikandanmca2023@gmail.com', '2000-08-02', 24, '2', '2', 'Muruganantham B', 'Clothes sales in street', 30000.00, 1, 0.00, 12000.00, 'Rajapalayam', 'Tambaram', '2411080003', '1', '1', 'upload_files/candidate_tracker/95087957962_ManikandanMCACA2023FullStackcopy.pdf', NULL, '1', '2024-11-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '4', '5', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-08 04:39:21', 104, '2024-11-08 06:39:45', 0, NULL, 1),
(22779, 'ARUL BRUNO X', '13', '8248507768', '', 'arulbruno2003@gmail.com', '2003-09-16', 21, '2', '2', 'Mr.Xavier V', 'Agriculture', 60000.00, 0, 0.00, 15000.00, 'Dindigul', 'Guindy, Chennai', '2411080004', '1', '1', 'upload_files/candidate_tracker/91650503981_ARULBRUNOXPro.pdf', NULL, '1', '2024-11-08', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-08 05:05:11', 104, '2024-11-08 11:17:04', 0, NULL, 1),
(22780, 'Sanjay R', '13', '8870623834', '', 'sanjayrajendran123@gmail.com', '2003-01-10', 21, '6', '2', 'Rajendran R', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Pappireddipatti, Dharmapuri', 'Velachey, Chennai', '2411080005', '', '1', 'upload_files/candidate_tracker/54379203176_Sanjaycv.pdf', NULL, '1', '2024-11-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-08 05:09:43', 1, '2024-11-08 05:13:31', 0, NULL, 1),
(22781, 'Ramaraja E', '6', '9629172041', '8903486941', 'ramraja.e99@gmail.com', '2001-04-17', 23, '2', '2', 'Elangairathinam S', 'Cooli', 9000.00, 2, 0.00, 16000.00, 'Tenkasi', 'Tenkasi', '2411080006', '42', '1', 'upload_files/candidate_tracker/7587481349_Ram3cv.pdf', NULL, '1', '2024-11-08', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected - candidate was already looked for other profession and long distance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-08 05:34:00', 153, '2024-11-08 03:32:01', 0, NULL, 1),
(22782, '', '0', '7708951084', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411080007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-08 06:37:40', 0, NULL, 0, NULL, 1),
(22783, 'Ajay krishna', '5', '7025825899', '', 'ajaykrishna258258@gmail.com', '1997-04-25', 27, '2', '2', 'Ajitha', 'House wife', 50000.00, 70, 25000.00, 30000.00, 'Thrissure kerala', 'Btm first stage banglore', '2411080008', '1', '2', 'upload_files/candidate_tracker/9591747219_CV2024100413161324.pdf', NULL, '1', '2024-11-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-11-08 07:11:58', 1, '2024-11-08 09:11:06', 0, NULL, 1),
(22784, 'Radhika S', '6', '8610818245', '8072561300', 'rathikaselvaraj01@gmail.com', '2001-06-17', 23, '2', '2', 'Venkatesh A', 'Business', 30000.00, 3, 0.00, 20000.00, 'Salem', 'Chennai', '2411080009', '57', '1', 'upload_files/candidate_tracker/94134116373_Radhikasv.pdf.pdf202410171054210000.pdf', NULL, '1', '2024-11-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-08 07:31:04', 153, '2024-11-08 03:32:42', 0, NULL, 1),
(22785, 'Suganya P', '6', '9361041541', '7824933293', 'suganyasuganya5374@gmail.com', '2003-06-15', 21, '2', '2', 'Parent', 'Farmer', 20.00, 0, 0.00, 15.00, '1/76 kattarampakkam ranipet district', 'Saidapet', '2411080010', '56', '1', 'upload_files/candidate_tracker/14382742396_suganya.pdf', NULL, '1', '2024-11-08', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-08 07:45:31', 153, '2024-11-08 03:30:50', 0, NULL, 1),
(22786, 'Kandavel P', '6', '9940398311', '9940491702', 'kandavelperumal@gmail', '2001-08-12', 23, '2', '2', 'Perumal K', 'Labour', 17000.00, 2, 20000.00, 22000.00, 'Kondithope', 'Kondithope', '2411080011', '50', '2', 'upload_files/candidate_tracker/58347812294_kandavelresume2.pdf', NULL, '1', '2024-11-09', 2, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shared breakup - He need time to confirm have typing class after 7 PM - Discussed shared breakup he need to confirm', '5', '1', '', '1', '8', '', '2', '2024-12-09', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-08 07:48:35', 153, '2024-11-09 12:40:55', 0, NULL, 1),
(22787, '', '0', '9025933081', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411080012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-08 08:41:59', 0, NULL, 0, NULL, 1),
(22788, 'Saraswathi', '4', '9600025198', '', 'sanjaideviiyappan@gmail.com', '1990-06-10', 34, '3', '1', 'Iyappan', 'Supervisor', 40000.00, 2, 0.00, 17000.00, 'Adyar', 'Adyar', '2411080013', '', '1', 'upload_files/candidate_tracker/93130801273_BIODATA.docx', NULL, '1', '2024-11-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-08 08:54:22', 1, '2024-11-08 09:07:05', 0, NULL, 1),
(22789, 'Mahima.P', '6', '7397692305', '9789679254', 'mahimamahi153@gmail.com', '2002-01-02', 22, '2', '2', 'Parent', 'Mason', 20.00, 2, 0.00, 20.00, '5/48 mathusuthana puram, kanyakumari', 'Chengalpattu', '2411080014', '50', '1', 'upload_files/candidate_tracker/92023316146_Scan20241024185657.pdf', NULL, '1', '2024-11-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Discussed and asked her to share the previous exp documents but no responses later', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-11-08 08:57:41', 153, '2024-11-08 03:31:03', 0, NULL, 1),
(22790, '', '0', '8129173277', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411080015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-08 09:18:14', 0, NULL, 0, NULL, 1),
(22791, 'Rajeshwari', '16', '8610580468', '', 'rajeshprabu2108@gmail.com', '2003-03-08', 21, '2', '2', 'Seetha Lakshmi', 'Housekeeping', 15000.00, 1, 0.00, 15.00, 'Saidapet', 'Saidapet', '2411080016', '1', '1', 'upload_files/candidate_tracker/43739346197_RAJESHWARIRESUMENEW2.pdf', NULL, '1', '2024-11-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-11-08 10:52:52', 153, '2024-11-09 01:18:56', 0, NULL, 1),
(22792, 'jeyasree seshadri', '33', '9688889983', '', 'jaishu1969.9688889983@gmail.com', '2004-06-06', 20, '2', '2', 'seshadri', 'self employed', 200000.00, 1, 0.00, 260000.00, 'vadapalani', 'chennai', '2411080017', '50', '1', 'upload_files/candidate_tracker/38851690925_Resume1.docx', NULL, '1', '2024-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-08 12:44:53', 1, '2024-11-08 12:47:47', 0, NULL, 1),
(22793, 'Deena Kanakaraj', '13', '7708807470', '9965977439', 'deenaraghul29@gmail.com', '2002-01-29', 22, '3', '2', 'Amutha K', 'Tailor', 25000.00, 1, 0.00, 300000.00, 'Erode', 'Erode', '2411090001', '', '1', 'upload_files/candidate_tracker/47794634134_Deenajscv.pdf', NULL, '1', '2024-11-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-09 04:16:19', 1, '2024-11-09 04:20:09', 0, NULL, 1),
(22794, 'Balaji', '13', '6381333764', '8489419831', 'Rajbala3125@gmail.com', '2004-05-30', 20, '2', '1', 'Desingh', 'Carpenter', 20000.00, 1, 0.00, 18000.00, 'Eb road kk nagar marakkanam', 'Chennai Velachery', '2411090002', '1', '1', 'upload_files/candidate_tracker/46860321469_BalajiBSCCS7.0CGPA2024JAVA.pdf', NULL, '1', '2024-11-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-09 04:27:38', 104, '2024-11-09 06:57:18', 0, NULL, 1),
(22795, 'DURAI P', '13', '8189892192', '', 'Durairaj1403@gmail.com', '2001-03-13', 23, '2', '2', 'A PANNEER SELVAM', 'Carpernter', 18000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2411090003', '1', '1', 'upload_files/candidate_tracker/24331630447_DuraiPB.EECE20227.5CGPAJavaFullstackDeveloper.pdf', NULL, '1', '2024-11-09', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-09 04:44:34', 104, '2024-11-09 06:55:50', 0, NULL, 1),
(22796, 'Billgates Theol F', '6', '8489875986', '7826005863', 'billgatestheol@gmail.com', '2002-08-25', 22, '1', '2', 'Francis', 'farmer', 48000.00, 1, 0.00, 15.00, '33/d, Thennur, Arockia puram, varadharajanpe.', 'Adilabad', '2411090004', '', '1', 'upload_files/candidate_tracker/92480772073_BillgatesTheolFinal.pdf', NULL, '2', '2024-11-09', 0, '55829', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate unfit for sales, he interested  iT domain.reject the profile.team referrence', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-11-09 05:20:34', 153, '2024-11-09 04:16:23', 0, NULL, 1),
(22797, 'Kamalesh', '6', '8098592654', '9003713845', 'kamaleshelango1999@gmail.com', '2001-10-11', 23, '2', '2', 'Elangovan', 'Farmer', 30000.00, 1, 0.00, 280000.00, 'Mayiladuthurai', 'Thirumangalam Chennai', '2411090005', '50', '1', 'upload_files/candidate_tracker/3956529607_12222.pdf', NULL, '1', '2024-11-09', 0, '', '3', '59', '2024-11-12', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok 5050 on sustainability issues Prepared UPSC /business plans etc long run doubts also pressure handling will look', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '2024-11-12', 1, '2024-11-09 05:21:03', 60, '2024-11-11 06:42:17', 0, NULL, 1),
(22798, 'DEVIBALAN', '13', '8428395940', '9487502771', 'devibalan23.06.2003@gmail', '2003-06-23', 21, '2', '2', 'BASKARAN', 'KARAIKAL PORT', 80000.00, 1, 0.00, 15000.00, 'Nagapattinam', 'Chennai', '2411090006', '1', '1', 'upload_files/candidate_tracker/72036453933_DEVACV.pdf', NULL, '1', '2024-11-09', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-09 05:42:07', 104, '2024-11-09 12:16:09', 0, NULL, 1),
(22799, 'Sathish', '13', '8270245632', '', 'tamilsathish0305@gmail.com', '1999-12-03', 24, '2', '2', 'Ravi', 'Fisherman', 28000.00, 2, 0.00, 20000.00, 'Thirumullaivasal', 'Ekattuthangal', '2411090007', '1', '1', 'upload_files/candidate_tracker/33669419630_fullstackresume09.pdf', NULL, '1', '2024-11-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-09 06:05:14', 104, '2024-11-12 12:15:04', 0, NULL, 1),
(22800, 'Oppli venkatesh', '5', '8778331447', '', 'opplivenkatesh6@gmail.com', '1998-11-06', 26, '3', '2', 'Vijay Kumar', 'Driver', 200000.00, 1, 25000.00, 33000.00, 'Kumbakonam', 'Thousand lights', '2411090008', '', '2', 'upload_files/candidate_tracker/85379702857_resume2024.docx', NULL, '1', '2024-11-09', 0, '', '3', '59', '2024-11-25', 350000.00, '', '4', '2025-04-25', '1', 'Communication Ok based on the salary commitment by area manager proceeded with the same his exp is some what more Need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55735', '55557', '2024-11-25', 1, '2024-11-09 07:10:00', 60, '2024-11-23 06:46:16', 0, NULL, 1),
(22801, 'manivel', '5', '8073554280', '8610204511', 'manivel7621@gmail.com', '1997-01-26', 27, '1', '2', 'parent', 'home', 20000.00, 1, 25000.00, 28000.00, 'thiruvannamali', 'vadapalney', '2411090009', '', '2', 'upload_files/candidate_tracker/83647363771_ManivelResume.pdf', NULL, '1', '2024-11-09', 30, '55854', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He got Other offers and intersted to Join in another company', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-11-09 09:01:48', 153, '2024-11-09 04:33:29', 0, NULL, 1),
(22802, 'Monika', '13', '9342301094', '9790621767', 'monikamoni21072004@gmail.com', '2004-07-21', 20, '6', '2', 'Elangovan', 'Driver', 60000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Coimbatore South', '2411090010', '', '1', 'upload_files/candidate_tracker/59667380170_pdf202306181836240000.pdf2.pdf', NULL, '1', '2024-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-09 09:40:59', 1, '2024-11-09 09:46:45', 0, NULL, 1),
(22803, '', '0', '7092592120', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411100001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-10 02:36:33', 0, NULL, 0, NULL, 1),
(22804, 'Arun karthick.B', '2', '8925361564', '', 'karthickarun0201@gmail.com', '2001-02-18', 23, '2', '2', 'Parvathi.B', 'House wife', 30000.00, 1, 2.76, 5.50, 'Nagercoil', 'Nagercoil', '2411110001', '1', '2', 'upload_files/candidate_tracker/23584467263_ArunKarthickResume.pdf', NULL, '1', '2024-11-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-11 04:37:43', 104, '2024-11-11 11:05:47', 0, NULL, 1),
(22805, 'Vijayaragavan D', '13', '6385546256', '', 'vijayaragavan1224@gmail.com', '2002-11-22', 21, '2', '2', 'Dharmalingam S k', 'Private employee', 30000.00, 2, 0.00, 15000.00, 'Tiruppur', 'Chennai', '2411110002', '1', '1', 'upload_files/candidate_tracker/18124526000_ResumeVijayaragavanD.pdf', NULL, '1', '2024-11-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-11 04:45:55', 104, '2024-11-11 11:06:47', 0, NULL, 1),
(22806, 'Aravind krishnan', '4', '8754315361', '6384157161', 'Aravind04krishnan@gmail.com', '2002-06-04', 22, '2', '2', 'Raja singh', 'Business', 25000.00, 2, 0.00, 18000.00, 'Thoothukudi', 'Vadapalani', '2411110003', '56', '1', 'upload_files/candidate_tracker/22171244961_AravindKrishnan.pdf', NULL, '1', '2024-11-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-11 05:00:16', 1, '2024-11-11 05:04:12', 0, NULL, 1),
(22807, 'RAMKI M', '13', '9489108233', '', 'muthuramki30598@gmail.com', '1998-05-30', 26, '3', '2', 'Murugan k', 'Coolie', 15000.00, 4, 250000.00, 300000.00, '4/682,mela colony, samsigapuram.', 'Chennai', '2411110004', '', '2', 'upload_files/candidate_tracker/60650673736_RamkiPython.pdf', NULL, '1', '2024-11-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-11 05:11:49', 1, '2024-11-11 05:17:24', 0, NULL, 1),
(22808, 'Deebakkumar', '6', '9080496275', '8769450021', 'deebakkumar73@gmail.com', '2001-10-01', 23, '2', '2', 'Geetha', 'NA', 15000.00, 1, 0.00, 20000.00, 'Tiruvannamalai', 'Alandhur', '2411110005', '45', '1', 'upload_files/candidate_tracker/99428314282_Deebakkumar.pdf', NULL, '1', '2024-11-12', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate just like that looking for job , not very much interest and not fit for sales and my team , not interest also out side call ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-11 05:17:37', 154, '2024-11-12 01:26:14', 0, NULL, 1),
(22809, 'kalpana S', '14', '8489239693', '6381282918', 'kalpanasiva9996@gmail.com', '1999-11-09', 25, '3', '2', 'Siva P', 'Farmer', 750000.00, 1, 1.00, 2.50, 'chengalpattu', 'chengalpattu', '2411110006', '', '2', 'upload_files/candidate_tracker/18852394294_3793730535kalpanasivaresume.pdf', NULL, '1', '2024-11-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-11 05:25:57', 1, '2024-11-11 05:39:54', 0, NULL, 1),
(22810, 'Hema karunakaran', '14', '8760672400', '8668134142', 'hemaucea@gmail.com', '1993-06-26', 31, '3', '1', 'Arvinth', 'Business', 30000.00, 1, 0.00, 30000.00, 'Ariyalur', 'Ariyalur', '2411110007', '', '1', 'upload_files/candidate_tracker/66453339959_HemaResume1.pdf', NULL, '1', '2024-11-11', 0, '', '3', '59', '2024-12-23', 180000.00, '', '1', '1970-01-01', '1', 'stipend of Rs.8000 PM (1st 2months) based on the performance review with the continuation of the employment in which the remuneration may vary between 12,000 – 15000 per month post-completion of the 2-5 months internship and performance analysis. - Final Round with Gokul Sir', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '55566', '55566', '2024-12-23', 1, '2024-11-11 05:27:20', 60, '2024-12-23 10:36:33', 0, NULL, 1),
(22811, 'Prince Vasantharaj R', '13', '7806830262', '', 'princevasantharaj2001@gmail.com', '2001-09-19', 23, '2', '2', 'Gnana Jeyanthi', 'Warden', 27000.00, 0, 0.00, 15000.00, 'Virudhunagar', 'Chennai', '2411110008', '1', '1', 'upload_files/candidate_tracker/50456503485_PrinceVasantharajResumeGL.pdf', NULL, '1', '2024-11-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-11 05:32:46', 104, '2024-11-11 12:17:26', 0, NULL, 1),
(22812, 'Dharun', '4', '9790033304', '9790033309', 'dharun.ramchand@gmail.com', '2004-02-17', 20, '2', '2', 'Ramachandran', 'Hotel management', 350000.00, 1, 0.00, 13000.00, '34,35 Thiruvalluvar Nagar 4th street, Thanjavur.', '24,35 Thiruvalluvar Nagar 4th street, Thanjavur', '2411110009', '1', '1', 'upload_files/candidate_tracker/55416821263_DharunResume.pdf', NULL, '1', '2024-11-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-11 05:53:42', 154, '2024-11-11 05:05:37', 0, NULL, 1),
(22813, 'Prabhu M', '6', '9962155631', '9952912015', 'Prabhumani306@gmqil.com', '1999-11-04', 25, '2', '2', 'Mani S', 'Daily workers', 15000.00, 0, 14000.00, 20000.00, 'Thiruvotriyur, Chennai 19', 'Thiruvotriyur, Chennai 19', '2411110010', '50', '2', 'upload_files/candidate_tracker/90095560434_prabhu.pdf', NULL, '3', '2024-11-11', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-11 05:54:00', 154, '2024-11-11 05:06:01', 0, NULL, 1),
(22814, 'gokulnath', '6', '9677018640', '', 'gokulnath0022@gmail.com', '2000-06-22', 24, '2', '2', 'Kirupananth', 'Teacher', 300000.00, 1, 0.00, 27000.00, 'CHENNAI', 'CHENNAI', '2411110011', '45', '2', 'upload_files/candidate_tracker/75233390376_gokul.pdf', NULL, '1', '2024-11-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not intrested in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-11 05:56:47', 153, '2024-11-11 11:52:17', 0, NULL, 1),
(22815, '', '0', '9363111596', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411110012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-11 06:15:00', 0, NULL, 0, NULL, 1),
(22816, 'SARIKA M', '33', '8778612445', '7076649502', 'sarikamanivarma@gmail.com', '2001-10-29', 23, '1', '2', 'Mani Varma (Father)', 'Supervisor', 45000.00, 1, 20500.00, 22000.00, 'Ayanavaram', 'Ayanavaram', '2411110013', '', '2', 'upload_files/candidate_tracker/23044529908_Sarikaresume2.docx', NULL, '1', '2024-11-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '2', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-11-11 08:48:30', 154, '2024-11-11 05:05:50', 0, NULL, 1),
(22817, 'AVINASH J', '13', '7305127261', '', 'avinashoutlook60@gmail.com', '2003-01-14', 21, '2', '2', 'JAYARAMAN A', 'Teacher', 40000.00, 1, 0.00, 20000.00, 'Tiruvannamalai', 'Chennai', '2411110014', '1', '1', 'upload_files/candidate_tracker/18359183986_aviresu2424.pdf', NULL, '1', '2024-11-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-11 09:15:21', 153, '2024-11-11 02:53:22', 0, NULL, 1),
(22818, 'Karthick T', '13', '6379346327', '', 'karthick.t1106@gmail.com', '2002-06-11', 22, '6', '2', 'S Thanikachalam', 'Carpenter', 15000.00, 1, 0.00, 275000.00, 'Perambur, Chennai', 'Perambur', '2411110015', '', '1', 'upload_files/candidate_tracker/39229754002_KarthickTResume.pdf', NULL, '1', '2024-11-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-11 09:20:24', 1, '2024-11-11 09:25:28', 0, NULL, 1),
(22819, 'Jacob newton', '4', '6385337204', '', 'newtonjacob3@gmail.com', '1997-04-08', 27, '2', '2', 'Mullai vendhan', 'Painter', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2411110016', '56', '1', 'upload_files/candidate_tracker/54522544907_Updatedjacobnewton.docx', NULL, '1', '2024-11-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-11 09:30:17', 1, '2024-11-11 09:51:17', 0, NULL, 1),
(22820, 'Akash J', '13', '9842556217', '', 'akash.bca.grad@gmail.com', '2003-06-26', 21, '3', '2', 'Jayaseelan S', 'Mason', 20000.00, 1, 0.00, 300000.00, 'Mayiladuthurai', 'Chennai', '2411110017', '', '1', 'upload_files/candidate_tracker/58760513541_AkashsResume.pdf', NULL, '1', '2024-11-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-11 10:18:21', 1, '2024-11-11 10:23:09', 0, NULL, 1),
(22821, 'Muthuraj', '2', '6380757904', '', 'muthurajkpr8@gmail.com', '2004-09-15', 20, '3', '2', 'Sivakumar (Brother)', 'Mobile Shop', 170000.00, 2, 0.00, 350000.00, '24/ Samykovilstreet, keelapavoor ,Tenkasi', 'Tenkasi', '2411110018', '', '1', 'upload_files/candidate_tracker/28338652922_MuthurajResume.pdf', NULL, '1', '2024-11-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-11 10:18:32', 1, '2024-11-11 10:26:59', 0, NULL, 1),
(22822, 'Sheela k', '4', '9840133522', '', 'shilakj7@gmail.com', '2000-02-17', 24, '2', '2', 'Kathirvel', 'Police', 45000.00, 1, 16000.00, 17000.00, 'No 9 N lG road pudupet Chennai 2', 'No 9 LG road pudupet Chennai 2', '2411110019', '1', '2', 'upload_files/candidate_tracker/15558765058_DocScannerNov1020241126PM.pdf', NULL, '1', '2024-11-15', 0, '', '3', '59', '2024-11-18', 180000.00, '', '4', '2024-11-23', '1', 'Communication Ok Need to open up a lot have exp in customer support can give a try and train in Renewals will check in training final round by Gokul and selected', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '2024-11-18', 1, '2024-11-11 03:16:39', 60, '2024-11-16 10:34:29', 0, NULL, 1),
(22823, 'ELANCHEZIAN S', '13', '6382610262', '', 'elancheziansampathk126@gmail.com', '2002-05-12', 22, '3', '2', 'Sampath Kumar', 'Sales & Marketing', 65000.00, 1, 0.00, 23000.00, 'Chennai', 'Chennai', '2411120001', '', '1', 'upload_files/candidate_tracker/34838314023_ELANCHEZIANTECHRESUME.pdf', NULL, '1', '2024-11-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-12 04:37:48', 154, '2024-11-12 11:07:18', 0, NULL, 1),
(22824, 'Saranya k', '4', '8925730703', '7418143895', 'ksaranyak909@gmail.com', '2003-12-31', 20, '2', '2', 'Kumar E', 'Koolie', 10000.00, 1, 0.00, 14.00, 'Chennai', 'Chennai', '2411120002', '1', '1', 'upload_files/candidate_tracker/91089702193_resume.pdf', NULL, '1', '2024-11-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-11-12 05:16:15', 154, '2024-11-12 01:26:01', 0, NULL, 1),
(22825, 'R. Balaji', '13', '7845880628', '', 'balaji2762001@gmail.com', '2001-06-27', 23, '3', '2', 'A Ravi', 'Daily Wages', 15.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2411120003', '', '1', 'upload_files/candidate_tracker/23751320786_Balaji2.pdf', NULL, '1', '2024-11-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-12 05:34:17', 154, '2024-11-12 11:22:11', 0, NULL, 1),
(22826, 'Abisekh C', '13', '9360146004', '9442996710', 'go4abisekh@gmail.com', '2003-05-27', 21, '6', '2', 'G Chandrasekar', 'Senior associate (State Bank of India)', 1200000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2411120004', '', '1', 'upload_files/candidate_tracker/83465081777_AbisekhResume.pdf', NULL, '1', '2024-11-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-12 05:40:47', 154, '2024-11-12 11:22:20', 0, NULL, 1),
(22827, '', '0', '9361319581', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411120005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-12 08:00:24', 0, NULL, 0, NULL, 1),
(22828, '', '0', '9952414523', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411120006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-12 08:39:48', 0, NULL, 0, NULL, 1),
(22829, 'Sivasankari', '4', '8428979728', '9600855265', 'sivagowri3010@gmail.com', '2001-10-30', 23, '2', '2', 'Gowri', 'House wife', 7000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2411120007', '1', '1', 'upload_files/candidate_tracker/61381755654_resume.pdf', NULL, '1', '2024-11-13', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-12 10:31:56', 154, '2024-11-13 05:37:08', 0, NULL, 1),
(22830, 'A.Bilal Basha', '6', '9360248185', '6379929976', 'Bilalbasha498@gmail.com', '2004-07-11', 20, '2', '2', 'Abdul Salam Basha', 'Petrol Bunk Employee', 20000.00, 2, 0.00, 16000.00, 'chetty street Ayanavaram chennai 600023', 'Ayanavaram', '2411120008', '57', '1', 'upload_files/candidate_tracker/85579254829_ResumeJobResumeFormat43.pdf', NULL, '1', '2024-11-12', 0, '', '3', '59', '2024-11-18', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-11-18', 1, '2024-11-12 11:08:09', 60, '2024-11-16 06:34:09', 0, NULL, 1),
(22831, 'Syed Mohammad moinudin', '6', '8838034591', '9840926580', 'moinahmed1907@gmail.com', '2003-07-19', 21, '2', '2', 'Syed sajid Ahmed', 'Business', 25000.00, 1, 0.00, 15000.00, '48 ellis road mount road chennai- 6000002', 'Mylapore', '2411120009', '57', '1', 'upload_files/candidate_tracker/13381058736_resumeforShare.pdf', NULL, '3', '2024-11-12', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected - communication was not clear and  not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-12 11:08:20', 104, '2024-11-12 05:58:30', 0, NULL, 1),
(22832, 'Gokila', '4', '9360460152', '', 'Gokilatamizh@gmail.com', '2003-11-27', 20, '2', '1', 'Praveen', 'Sales', 15000.00, 2, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2411120010', '1', '1', 'upload_files/candidate_tracker/14935949752_GOKILAP12112024055035pm.pdf', NULL, '1', '2024-11-15', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-12 12:13:56', 154, '2024-11-15 06:10:26', 0, NULL, 1),
(22833, '', '0', '8838738250', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411120011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-12 01:04:39', 0, NULL, 0, NULL, 1),
(22834, 'Kamesh', '13', '6380495434', '', 'kamizboobalan333@gmail.com', '2004-02-19', 20, '2', '2', 'Govindharaj', 'Coolie', 20000.00, 1, 0.00, 250000.00, 'Villupuram', 'Chennai', '2411130001', '1', '1', 'upload_files/candidate_tracker/67446585580_KAMESHG2.pdf', NULL, '1', '2024-11-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-13 04:12:05', 104, '2024-11-13 06:34:22', 0, NULL, 1),
(22835, 'Priyadharshini S', '6', '7845727392', '9344876073', 'Priyamanipriya54@gmail.com', '2003-03-05', 21, '1', '2', 'Subramaniyan', 'Astrologer', 50.00, 1, 20000.00, 18.00, '489 valluvar street thiruvaiyaru thankavur', 'Triplecany chennai', '2411130002', '', '2', 'upload_files/candidate_tracker/41033815453_PriyadharshiniResumenew1.pdf', NULL, '1', '2024-11-13', 0, 'P1287', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Continous RNR', '5', '1', '', '1', '8', '', '2', '2024-12-11', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-13 04:12:37', 154, '2024-11-13 05:37:33', 0, NULL, 1),
(22836, 'Hari Prasad B', '6', '9342007783', '9345648780', 'masterhari333@gmail.com', '2003-03-14', 21, '2', '2', 'Baskaran S', 'Cottage business', 20000.00, 1, 0.00, 16000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2411130003', '50', '1', 'upload_files/candidate_tracker/52963015693_HariPrasadresume.pdf', NULL, '1', '2024-11-13', 0, '', '3', '59', '2024-11-18', 180000.00, '', '3', '2024-11-19', '2', 'Communication Ok fresher can give a try and check in training period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2024-11-18', 1, '2024-11-13 04:52:24', 60, '2024-11-16 06:35:31', 0, NULL, 1),
(22837, 'Sam prasad', '4', '8124372950', '', '2002Samsmith@gmail.com', '2002-05-20', 22, '2', '2', 'Vincent', 'Painter', 15000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2411130004', '45', '1', 'upload_files/candidate_tracker/60252755015_SAMPRASAD.V.pdf', NULL, '1', '2024-11-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not having much Interest in sales, will confirm with parents and say', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-13 05:11:19', 154, '2024-11-13 12:17:14', 0, NULL, 1),
(22838, 'Bhabulu R', '13', '7639758365', '', 'bablulishi1999@gmail.com', '1999-09-11', 25, '3', '2', 'Raman D', 'Southern railway', 35000.00, 1, 0.00, 2.40, 'Arakkonam, ranipet', 'Pattabiram,chennai', '2411130005', '', '1', 'upload_files/candidate_tracker/48104165740_CV2024111121250244.pdf', NULL, '1', '2024-11-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-13 05:20:08', 1, '2024-11-13 05:31:31', 0, NULL, 1),
(22839, 'Vishwa G', '13', '8637409664', '', 'vishwa.g4567@gmail.com', '2003-09-14', 21, '2', '2', 'Bama G', 'House keeping', 120000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2411130006', '1', '1', 'upload_files/candidate_tracker/6500253844_Vishwa.pdf', NULL, '1', '2024-11-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-13 05:20:14', 154, '2024-11-13 10:57:47', 0, NULL, 1),
(22840, 'Arun E', '13', '9789618680', '', 'arunecse2025@gmail.com', '2003-02-03', 21, '2', '2', 'Eswaran', 'Daily wages', 10000.00, 0, 0.00, 3.00, 'Namakkal', 'Chennai', '2411130007', '1', '1', 'upload_files/candidate_tracker/36286031480_ArunEResume.docx', NULL, '1', '2024-11-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-13 05:20:31', 154, '2024-11-13 11:03:00', 0, NULL, 1),
(22841, 'ANBU M', '13', '9342042528', '', 'anbu211003@gmail.com', '2003-10-21', 21, '2', '2', 'MUTHU', 'FARMER', 20000.00, 1, 0.00, 2.50, 'ARANTHANGI, PUDUKKOTTAI', 'CHENNAI', '2411130008', '1', '1', 'upload_files/candidate_tracker/74152267349_AnbuResume.pdf', NULL, '1', '2024-11-13', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-13 05:22:19', 154, '2024-11-13 11:07:21', 0, NULL, 1),
(22842, 'Abdul latheep', '13', '8825686675', '8825575007', 'lathulathif63@gmail.com', '1998-03-06', 26, '3', '2', 'Jamila', 'House wife', 60000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2411130009', '', '1', 'upload_files/candidate_tracker/69175175201_AbdulLatheepResume.pdf', NULL, '1', '2024-11-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-13 06:27:32', 1, '2024-11-13 06:32:39', 0, NULL, 1),
(22843, 'Leela', '4', '9342558985', '', 'leelakrishnan1003@gmail.com', '2000-03-10', 24, '1', '2', 'Gopalakrishnan', 'Chief', 10000.00, 0, 15000.00, 16000.00, 'Thanjavur', 'Thanjavur', '2411130010', '', '2', 'upload_files/candidate_tracker/57769195441_Leela.pdf', NULL, '1', '2024-11-13', 20, '77964', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-13 06:37:55', 154, '2024-11-13 05:37:18', 0, NULL, 1),
(22844, 'iyyappan m', '31', '7299558841', '', 'iyyappanmani03@gmail.com', '2003-01-12', 21, '2', '2', 'manivelan', 'tea shop', 18000.00, 2, 10000.00, 15000.00, 'chennai', 'chennai', '2411130011', '1', '2', 'upload_files/candidate_tracker/28859563399_Resumepdf.pdf', NULL, '1', '2024-11-13', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-13 06:49:50', 104, '2024-11-13 06:33:48', 0, NULL, 1),
(22845, 'Bharath Kumar.R', '6', '6383413156', '9626764344', 'bharathbk638341@gmail.com', '2001-10-05', 23, '2', '2', 'M.Ravi', '5', 20000.00, 2, 0.00, 18000.00, 'Vediyangadu', '81/b vadamalai street vediyangadu', '2411130012', '50', '1', 'upload_files/candidate_tracker/18140529796_BharathResume.pdf', NULL, '1', '2024-11-13', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication was not so good and long distance having idea for own business', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-13 07:23:21', 154, '2024-11-13 05:38:12', 0, NULL, 1),
(22846, 'Karthi V', '6', '9159913408', '', 'karthikarthiv66@gmail.com', '2000-10-08', 24, '2', '2', 'Velayutham', '4', 20000.00, 1, 23000.00, 18000.00, 'Vediyangadu', '3/403 thirupati Amman koil Street vediyangadu', '2411130013', '50', '2', 'upload_files/candidate_tracker/70031290499_KarthiResume1.pdf', NULL, '1', '2024-11-13', 1, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not good at communication and not have stability in previous companies', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-13 07:29:47', 154, '2024-11-13 05:38:23', 0, NULL, 1),
(22847, 'Rekha M', '13', '9929926816', '', 'mrekha082003@gmail.com', '2003-08-31', 21, '3', '2', 'P.Mohanlal', 'Buisness', 800000.00, 4, 0.00, 350000.00, 'Triplicane Chennai', 'Chennai', '2411130014', '', '1', 'upload_files/candidate_tracker/8755405870_RekhaRESUME.pdf', NULL, '1', '2024-11-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-13 07:54:54', 1, '2024-11-13 08:11:11', 0, NULL, 1),
(22848, 'Kaviyarasan G', '4', '9788165568', '9788165569', 'kaviyarasan740@gmail.com', '1996-05-20', 28, '2', '2', 'Gnanasundaram K', 'Student', 50000.00, 2, 18500.00, 17000.00, 'Ammapet, thanjavur', 'Ammapet Thanjavur', '2411130015', '1', '2', 'upload_files/candidate_tracker/41973540923_kavi2024.pdf', NULL, '1', '2024-11-14', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-13 08:23:10', 154, '2024-11-14 05:47:39', 0, NULL, 1),
(22849, 'P Dillibabu', '6', '9962791014', '9360187590', 'dillyvijay14102001@gmail.com', '2001-10-14', 23, '2', '2', 'PARANTHAMAN', 'Koolie', 10000.00, 0, 0.00, 18000.00, 'Chennai Kodungaiyur', 'Kodungaiyur', '2411130016', '45', '1', 'upload_files/candidate_tracker/75300533884_DILLIBABUResume34.pdf', NULL, '1', '2024-11-14', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - candidate was bad at communication ,long  distance and  not interested in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-13 09:06:00', 154, '2024-11-14 05:49:51', 0, NULL, 1),
(22850, 'Zairudeen', '6', '9176354442', '', 'zairudeen6@gmail.com', '2001-01-07', 23, '2', '2', 'Father', 'Sales', 25000.00, 786, 25000.00, 25000.00, 'Perambur', 'Perambur', '2411130017', '50', '2', 'upload_files/candidate_tracker/35947222772_ZAIRUDEENA.docx', NULL, '1', '2024-12-18', 3, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was confident and ok with  communication but expecting more salary will give 15k lets try for 7days training period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', 'Not attended', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-13 09:42:30', 154, '2024-12-18 03:51:16', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22851, 'Mithra malarvizhy K', '11', '6374133563', '', 'mithramalar18@gmail.com', '2002-01-30', 22, '3', '2', 'Kumar G', 'Student', 120000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2411130018', '', '1', 'upload_files/candidate_tracker/82485253482_MITHRAMALARVIZHYRESUME.pdf', NULL, '1', '2024-11-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-13 09:49:29', 154, '2024-11-13 04:07:55', 0, NULL, 1),
(22852, 'Leanna Elsy', '11', '8015795551', '', 'leannaelsy@gmail.com', '2002-09-26', 22, '3', '2', 'ravisankar', 'student', 60000.00, 1, 0.00, 15000.00, 'egmore', 'egmore', '2411130019', '', '1', 'upload_files/candidate_tracker/40859299120_RLeannaElsyResume.pdf', NULL, '1', '2024-11-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-13 09:50:11', 154, '2024-11-13 04:07:32', 0, NULL, 1),
(22853, 'sanjana sruthi j', '11', '7305685060', '9382816994', 'sruthisanjana26@gmail.com', '2003-04-26', 21, '3', '2', 'b s catherine', 'student', 100000.00, 1, 0.00, 15000.00, 'egmore', 'egmore', '2411130020', '', '1', 'upload_files/candidate_tracker/49264902493_SANJANASRUTHIJresume.pdf', NULL, '1', '2024-11-13', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-11-13 09:55:22', 154, '2024-11-13 05:38:37', 0, NULL, 1),
(22854, '', '0', '9566557449', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411130021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-13 12:28:44', 0, NULL, 0, NULL, 1),
(22855, 'Parameswari N', '4', '9344180293', '9176712133', 'sureshparamu38@gamil.com', '1994-06-02', 30, '2', '1', 'Suresh', 'Elaraonic shop', 40000.00, 1, 17000.00, 17000.00, 'Chennai', 'Chennai', '2411130022', '1', '2', 'upload_files/candidate_tracker/11249187091_Testparamesswari.pdf', NULL, '1', '2024-11-14', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1022', '', '55605', '55566', '1970-01-01', 1, '2024-11-13 12:57:50', 154, '2024-11-14 05:48:09', 0, NULL, 1),
(22856, 'Vishnu.d', '4', '9360318327', '9176277507', 'vishnumurugan79025@gmail', '2001-10-08', 23, '2', '2', 'M.doss', 'Contactor', 30000.00, 2, 0.00, 18000.00, 'Chennai -51', 'Chennai-51', '2411130023', '56', '1', 'upload_files/candidate_tracker/6398476701_vishnu.docx', NULL, '1', '2024-11-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-13 03:46:41', 1, '2024-11-13 04:06:50', 0, NULL, 1),
(22857, 'Amsavarshini G', '4', '8939737940', '', 'amsavarshini38@gmail.com', '2003-06-15', 21, '2', '2', 'Sekar', 'Farmer', 20000.00, 1, 0.00, 4.00, 'Chennai', 'Chennai', '2411140001', '1', '1', 'upload_files/candidate_tracker/44172640455_amsavarshiniresumeav.pdf', NULL, '1', '2024-11-14', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '1', '5', '', '', 'H1027', '', '55605', '55566', '1970-01-01', 1, '2024-11-14 01:04:31', 154, '2024-11-14 05:48:55', 0, NULL, 1),
(22858, 'Parthiv', '4', '7358891066', '9952320956', 'parthiv0105@gmail.com', '2004-05-01', 20, '2', '2', 'Ramesh', 'Weaver', 100000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2411140002', '1', '1', 'upload_files/candidate_tracker/52262856251_Resume01.docx', NULL, '1', '2024-11-14', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-14 04:00:49', 154, '2024-11-14 05:47:53', 0, NULL, 1),
(22859, 'Saroj kumar sharma', '4', '8936099011', '', 'ss0983867@gmail.com', '2002-04-15', 22, '2', '2', 'Jaychandar Sharma', 'Farmer', 120000.00, 3, 0.00, 18000.00, 'Bihar', 'Paiynoor (Chennai)', '2411140003', '56', '1', 'upload_files/candidate_tracker/36351129983_RESUME1.docx', NULL, '1', '2024-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-14 04:19:11', 1, '2024-11-14 04:30:29', 0, NULL, 1),
(22860, 'Vijaya Kumar D', '2', '8754542574', '9976844962', 'vijaykumard2000@gmail.com', '2000-03-18', 24, '2', '2', 'Durairaj R', 'Retired', 30000.00, 2, 0.00, 450000.00, 'Chennai', 'Chennai', '2411140004', '1', '2', 'upload_files/candidate_tracker/37511078733_VIJAYAKUMARDNEW3.pdf', NULL, '1', '2024-11-14', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-14 04:21:01', 104, '2024-11-14 10:34:38', 0, NULL, 1),
(22861, '', '0', '6382914504', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411140005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-14 04:26:15', 0, NULL, 0, NULL, 1),
(22862, 'Dhanalakshmi B', '6', '7448820809', '8531868104', 'dhanab1511@gmail.com', '2003-11-15', 20, '2', '2', 'Rani B', 'Student', 12000.00, 2, 0.00, 20000.00, 'Sivaganga', 'Tnagar Chennai', '2411140006', '1', '1', 'upload_files/candidate_tracker/89177560984_dhanalakshmiresume.pdf', NULL, '1', '2024-11-14', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - candidate was not good at communication and she was having plans for other profession also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-14 05:15:09', 154, '2024-11-14 05:50:14', 0, NULL, 1),
(22863, 'C sivaranjani', '6', '8124653019', '7639221354', 'ranjani6575@gmailc', '2003-08-01', 21, '2', '2', 'Chinnadurai', 'Student', 25000.00, 2, 0.00, 20000.00, 'Kallakurichi', 'Tnagar, Chennai', '2411140007', '1', '1', 'upload_files/candidate_tracker/77546985424_sivaresume.pdf', NULL, '1', '2024-11-14', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and convincing is good but interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-14 05:16:01', 154, '2024-11-14 05:51:28', 0, NULL, 1),
(22864, 'Abinaya', '6', '7639221354', '8883221714', 'abinayagovindhan153@gmail.com', '2003-11-21', 20, '2', '2', 'Govindhan', 'Student', 16000.00, 2, 0.00, 20000.00, 'Kallakurichi', 'Tnagar, Chennai', '2411140008', '1', '1', 'upload_files/candidate_tracker/44863650521_Abinayaresume.pdf', NULL, '1', '2024-11-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not even  try to speak', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', '55651', '5151', '1970-01-01', 1, '2024-11-14 05:16:07', 154, '2024-11-14 05:49:37', 0, NULL, 1),
(22865, 'Pooja', '4', '8608434968', '8939324453', 'poojapushba2003@gmail.com', '2003-03-26', 21, '2', '2', 'Srinivasan', 'Kooli', 30000.00, 1, 0.00, 15000.00, '305a 5th sastri nagar Sharma nagar vyasarpadi', 'Vyasarpadi Chennai', '2411140009', '1', '1', 'upload_files/candidate_tracker/46696027767_Resume4.docx', NULL, '1', '2024-11-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1027', '', '55605', '55566', '1970-01-01', 1, '2024-11-14 06:07:31', 154, '2024-11-15 06:13:26', 0, NULL, 1),
(22866, 'Surya p', '13', '9384178442', '9597178442', 'suryapanneer04@gmail.com', '2004-06-22', 20, '2', '2', 'Panneer p', 'Daily work', 15000.00, 0, 0.00, 200000.00, 'Vishwanath Dass nagar Sattur Virudhunagar', 'Maduravayal vanagaram 6th st kanniamman nagar', '2411140010', '1', '1', 'upload_files/candidate_tracker/22112890613_suryapanneerv10.pdf', NULL, '1', '2024-11-14', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-14 06:08:19', 154, '2024-11-14 11:51:31', 0, NULL, 1),
(22867, 'SNEHA.P', '13', '9361717521', '7373453693', 'snehapmkn@gmail.com', '2002-04-29', 22, '3', '2', 'Prakash', 'Coolie', 10000.00, 1, 0.00, 15000.00, 'Trichy', 'Thambaram, Chennai', '2411140011', '', '1', 'upload_files/candidate_tracker/23418981215_SNEHA.PMCA20241.pdf', NULL, '1', '2024-11-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-14 06:34:19', 1, '2024-11-14 06:47:56', 0, NULL, 1),
(22868, 'EVANGELIN', '6', '8667475687', '9941526744', 'evangelinsabastion2908@gmail.com', '2004-08-29', 20, '2', '2', 'Filomena', 'House wife', 15000.00, 1, 0.00, 18000.00, 'No.3,3rd Street KM GARDEN PERAMBUR BARRACKS ROAD', 'No.3,3rd STREET KM GARDEN PERAMBUR BARRACKS ROAD', '2411140012', '1', '2', 'upload_files/candidate_tracker/22312426904_Evangelinresumepdf.pdf', NULL, '1', '2024-11-14', 0, '', '3', '59', '2024-11-21', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can be trained in our roles need to check in training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'CA130', '5151', '2024-11-21', 1, '2024-11-14 06:43:37', 60, '2024-11-19 06:09:33', 0, NULL, 1),
(22869, 'Sharu mathi', '6', '6381648431', '7299887238', 'sharumathi646@gmail.com', '2003-07-11', 21, '2', '2', 'Monalisa', 'Housewife', 20000.00, 2, 0.00, 18000.00, '22/78, VV Koil Street kosapet chennai -12', '22/78, VV Koil Street kosapet chennai -12', '2411140013', '1', '1', 'upload_files/candidate_tracker/29631283488_SharumathiR202411121354350000.pdf', NULL, '1', '2024-11-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she asked 1 day leave for every week', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55651', '5151', '1970-01-01', 1, '2024-11-14 06:43:48', 154, '2024-11-14 05:49:24', 0, NULL, 1),
(22870, 'SURIYADEVI.V', '13', '7373453693', '9361717521', 'suriyadevivaithiyanathan12@gmail.com', '2002-05-16', 22, '3', '2', 'VAITHIYANATHAN', 'DRIVER', 10000.00, 1, 0.00, 18.00, 'PUDUKKOTTAI', 'CHROMEPET CHENNAI', '2411140014', '', '1', 'upload_files/candidate_tracker/14855507277_SURIYADEVI.VBCA2023.pdf', NULL, '1', '2024-11-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-14 06:43:59', 1, '2024-11-14 06:49:50', 0, NULL, 1),
(22871, 'K.Selvadharshini', '6', '7871391991', '8838900380', 'kselvadharshini438@gmail.com', '2004-06-10', 20, '2', '2', 'A.Kandipan ( late )', '----', 5000.00, 1, 0.00, 18000.00, 'No: 8/2 grey nagar 2nd Street pulianthope ch-12', 'No 8/2 grey nagar 2nd Street pulianthope Ch-12', '2411140015', '1', '1', 'upload_files/candidate_tracker/31861002035_AdobeScanJun262024.pdf', NULL, '1', '2024-11-14', 0, '', '3', '59', '2024-11-21', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can be trained in our roles kindly check in 7 days training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1287', '5151', '2024-11-21', 1, '2024-11-14 06:45:55', 60, '2024-11-19 06:12:40', 0, NULL, 1),
(22872, 'Lukmaan.R', '11', '6374643071', '', 'syedluqmaan.2@gmail.com', '1998-04-08', 26, '3', '2', 'Riyasdheen', 'Owner at restaurant', 70000.00, 1, 25000.00, 25000.00, 'Poonnamalle', 'Poonnamalle', '2411140016', '', '2', 'upload_files/candidate_tracker/88069536166_luqsrecruiter.pdf', NULL, '1', '2024-11-14', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'High expectation', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '5151', '1970-01-01', 1, '2024-11-14 07:14:34', 154, '2024-11-14 05:50:39', 0, NULL, 1),
(22873, 'Ashwin Kumar B', '13', '9361003309', '', 'ashwinbaskaran2002@gmail.com', '2002-09-01', 22, '2', '2', 'Baskaraselvan', 'Conductor', 120000.00, 1, 0.00, 300000.00, 'Ramanathapuram', 'Chennai', '2411140017', '1', '1', 'upload_files/candidate_tracker/99240390959_AshwinKumarBResume..11.pdf', NULL, '1', '2024-11-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-14 07:17:23', 104, '2024-11-14 03:14:18', 0, NULL, 1),
(22874, 'Surya .D', '6', '9345250440', '9789926561', 'suriya.shivabalan@gmail.com', '2000-10-14', 24, '2', '2', 'Dhayalan', 'Auto driver', 20000.00, 0, 0.00, 16000.00, 'Mylapore', 'Mylapore', '2411140018', '56', '1', 'upload_files/candidate_tracker/38801071540_DOC20241110WA0001.2.pdf', NULL, '1', '2024-11-15', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected - candidate was not good at communication ,having interest in it profession ,did not have sustainablity in old companies', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-14 08:53:16', 154, '2024-11-15 06:15:46', 0, NULL, 1),
(22875, 'Vetri', '6', '6381364207', '7708562252', 'vetrisv10@gmail.com', '2001-08-15', 23, '2', '2', 'M.K. Srinivasan', 'Garment company', 50000.00, 2, 0.00, 15000.00, 'Wanarapet Chennai', 'Warapet Chennai', '2411140019', '45', '1', 'upload_files/candidate_tracker/12422360796_VetriSFlowCVResume20240805.pdf', NULL, '1', '2024-11-14', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and convincing is good but interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-14 09:13:10', 154, '2024-11-14 05:51:16', 0, NULL, 1),
(22876, 'ESWARAN K', '6', '6369943624', '6379763723', 'keswarankeswaran50@gmail.com', '2002-10-14', 22, '2', '2', 'KANDASAMY', 'Dily wages', 20000.00, 1, 0.00, 15000.00, 'Vinayagapuram', 'Vinayagapuram', '2411140020', '45', '1', 'upload_files/candidate_tracker/66885670260_Eswarankresume202411080911110000.pdf', NULL, '1', '2024-11-14', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is good.he is looking for non-voice and also he clearly mentioned for customer support in the quetionary sheet', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-11-14 09:33:49', 154, '2024-11-14 05:50:51', 0, NULL, 1),
(22877, 'Surya', '6', '9962610705', '9344154207', 'Sdfys00084@gmail.com', '2001-08-22', 23, '2', '2', 'Arunachalam', 'Tailor', 15000.00, 2, 15000.00, 18000.00, 'Thoothukudi', 'Gundiy', '2411140021', '45', '2', 'upload_files/candidate_tracker/68714150665_cv81726492835714.pdf202411141533380000.pdf', NULL, '1', '2024-11-14', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-14 09:33:59', 154, '2024-11-14 05:47:26', 0, NULL, 1),
(22878, 'GOKUL G', '13', '7305355573', '9500455573', 'gokulguru003@gmail.com', '2003-03-30', 21, '3', '2', 'GURUMURTHY R', 'ITI FITTER', 100000.00, 1, 0.00, 15000.00, 'TRICHY', 'TRICHY', '2411140022', '', '1', 'upload_files/candidate_tracker/42011720016_GOKULGRESUME.pdf', NULL, '1', '2024-11-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-14 09:52:00', 1, '2024-11-14 09:54:59', 0, NULL, 1),
(22879, 'Vaitheeswari', '21', '7402527759', '9688985974', 'jkeshvari157@gmail.com', '2003-07-17', 21, '2', '2', 'Jeevanathan', 'Security', 35000.00, 3, 15500.00, 20000.00, 'Villivakkam', 'Villivakkam', '2411140023', '56', '2', 'upload_files/candidate_tracker/61027572502_j.vaitheeswari.pdf', NULL, '3', '2024-11-18', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-14 11:42:24', 1, '2024-11-16 10:09:08', 0, NULL, 1),
(22880, 'Kamalesh M', '4', '7010552414', '', 'Kamaleshmk17@gmail.com', '2003-05-06', 21, '2', '2', 'Murugan', 'Cell phone service', 60000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2411140024', '1', '1', 'upload_files/candidate_tracker/55339768245_kamaleshM202407051211430000.pdf', NULL, '3', '2024-11-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', '', '', '1970-01-01', 1, '2024-11-14 11:46:22', 153, '2024-11-15 10:20:03', 0, NULL, 1),
(22881, 'Srija', '21', '9962394203', '', 'srija3116@gmail.com', '2000-01-31', 24, '2', '1', 'Namasivayam', 'Sales manager', 30000.00, 1, 15500.00, 20000.00, 'Villivakkam', 'Villivakkam', '2411140025', '56', '2', 'upload_files/candidate_tracker/42690483327_SrijaResume.pdf', NULL, '3', '2024-11-18', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-14 12:08:05', 1, '2024-11-14 12:19:36', 0, NULL, 1),
(22882, 'Lakshmi Priya.H', '4', '8939589583', '', 'lakshmipriyalakshmi54@gmail.com', '1998-02-03', 26, '2', '2', 'Harikrishna.s father', 'Driver', 20000.00, 2, 19980.00, 26000.00, 'Thiruvottiyur', 'Minjur', '2411140026', '1', '2', 'upload_files/candidate_tracker/83437949720_myjobsimpleresume.docx', NULL, '1', '2024-11-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-11-14 12:33:41', 154, '2024-11-15 06:13:38', 0, NULL, 1),
(22883, 'Priyanka', '4', '9944033065', '', 'Priyankatamilselvan111@gmail.com', '2002-11-01', 22, '2', '2', 'Tamilselvan', 'Caterer', 10000.00, 2, 0.00, 15000.00, 'Vaniyambadi, Tiruppatur', 'Chrompet, Chennai', '2411140027', '1', '1', 'upload_files/candidate_tracker/13556055576_priyankaResume202410061848500000.pdf', NULL, '1', '2024-11-15', 0, '', '3', '59', '2024-11-18', 170000.00, '', '1', '1970-01-01', '2', 'Communication Ok Fresher 1yr gap hired for renewal need to check in the training and confirm gokul final round selected', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '2024-11-18', 1, '2024-11-14 12:53:13', 60, '2024-11-16 06:37:39', 0, NULL, 1),
(22884, 'MANI BHARATHI.C', '4', '9360724583', '8939026647', 'sudhansudhan18592@gmail.com', '2004-03-20', 20, '2', '2', 'Chandra Kumar', 'Fisherman', 15000.00, 1, 0.00, 18000.00, 'Tondiarpet', 'Tondiarpet', '2411140028', '56', '1', 'upload_files/candidate_tracker/38834988072_CURRICULUMVITAE1.pdf', NULL, '1', '2024-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-14 01:35:04', 1, '2024-11-14 01:46:07', 0, NULL, 1),
(22885, 'SURIYA', '4', '8610691664', '9962679052', 'suriyayoyo0007@gmail.com', '2003-09-26', 21, '2', '2', 'ANU', 'Tiffen centre', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2411140029', '56', '1', 'upload_files/candidate_tracker/68529945774_suriyaCV.pdf', NULL, '1', '2024-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-14 01:36:42', 1, '2024-11-14 02:05:06', 0, NULL, 1),
(22886, 'RAJKUMAR M', '13', '9345450479', '', 'rajkumarkelur@gmail.com', '2002-11-21', 21, '2', '2', 'MOHAN', 'REVENUE', 21000.00, 1, 0.00, 20000.00, 'THIRUVANNAMALAI', 'CHENNAI', '2411150001', '1', '1', 'upload_files/candidate_tracker/74892693104_RajResume.pdf', NULL, '1', '2024-11-15', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-15 03:58:06', 154, '2024-11-15 09:41:37', 0, NULL, 1),
(22887, 'Pavithra M', '6', '7806969234', '', 'pavithramoorthy234@gmail.com', '2003-12-23', 20, '2', '2', 'Moorthy s', 'Cookie(Daily wagers)', 70000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2411150002', '50', '1', 'upload_files/candidate_tracker/802724011_Resume.PavithraM2.pdf', NULL, '1', '2024-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Discussed but not interested to join this sales roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-15 04:48:10', 154, '2024-11-15 06:14:46', 0, NULL, 1),
(22888, 'Vengateshwaran.R', '6', '8939623870', '', 'vengateshwaran891@gmail.com', '2002-05-03', 22, '2', '2', 'Rajendiran.K', 'Market Worker', 17000.00, 3, 0.00, 18000.00, 'Cuddalore District', 'Koyambedu', '2411150003', '45', '1', 'upload_files/candidate_tracker/78423314521_Resume.pdf', NULL, '1', '2024-11-15', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and convincing is good but interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-15 05:18:29', 154, '2024-11-15 06:15:57', 0, NULL, 1),
(22889, 'S. Joegodvin', '4', '9003311927', '7395891839', 'joegadvin@gmail.com', '2003-10-11', 21, '2', '2', 'T. Sagayaraj', 'Carpenter', 25000.00, 2, 0.00, 15000.00, 'Middle street thirumalaisamuthiram', 'Middle street thirumalaisamuthiram', '2411150004', '1', '1', 'upload_files/candidate_tracker/74416074127_joeresume17.docx', NULL, '3', '2024-11-15', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-15 05:20:26', 154, '2024-11-15 06:10:51', 0, NULL, 1),
(22890, 'VISHVABHARATHI A', '4', '7010049866', '9524817498', 'vishvabharathi1111@gmail.com', '1999-11-11', 25, '2', '2', 'ARUL J', 'FARMER', 400000.00, 1, 0.00, 250000.00, 'Ambattur', 'Ambattur', '2411150005', '50', '1', 'upload_files/candidate_tracker/91466642992_cv41731566990325.pdf', NULL, '1', '2024-11-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-15 05:57:21', 1, '2024-11-15 06:00:11', 0, NULL, 1),
(22891, 'Subash R', '6', '8608505652', '8838392311', 'subashnicky243@gmail.com', '2000-09-18', 24, '2', '2', 'Ravichandran', 'MRF contract staff', 25000.00, 1, 0.00, 20000.00, 'Thiruvottiyur chennai', 'Chennai thiruvottiyur', '2411150006', '45', '1', 'upload_files/candidate_tracker/57519496345_SBI.pdf', NULL, '1', '2024-11-16', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-15 06:21:57', 154, '2024-11-16 06:41:43', 0, NULL, 1),
(22892, 'Harish P', '6', '9150561101', '8220108146', 'hariviji180@gmail.com', '2003-02-14', 21, '2', '2', 'Vijayalakshmi', 'Pharmacist', 20000.00, 1, 0.00, 16000.00, 'Tiruvallur', 'Thiruvallur', '2411150007', '57', '1', 'upload_files/candidate_tracker/8862425837_HAResume.pdf', NULL, '1', '2024-11-15', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-15 06:23:15', 154, '2024-11-15 06:10:17', 0, NULL, 1),
(22893, 'Kowsalya', '6', '9176595810', '6383021984', 'Kowsalyaselvi336@gmail.com', '2004-06-21', 20, '2', '2', 'Anandhraj', 'Coolie', 12000.00, 1, 0.00, 15000.00, 'Chennai Thiruvottriyur', 'Chennai Thiruvottriyur', '2411150008', '1', '1', 'upload_files/candidate_tracker/12352703164_KowsalyaResume.....pdf', NULL, '1', '2024-11-15', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speak well and not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55651', '5151', '1970-01-01', 1, '2024-11-15 06:32:08', 154, '2024-11-15 06:15:17', 0, NULL, 1),
(22894, 'anbu', '13', '7708105973', '7538805973', 'anbuklk05@gmail.com', '2002-05-13', 22, '3', '2', 'kumar', 'farmer', 15000.00, 0, 0.00, 18000.00, 'chennai', 'chennai', '2411150009', '', '1', 'upload_files/candidate_tracker/6455058147_ANBUK.pdf', NULL, '1', '2024-11-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-15 06:39:58', 154, '2024-11-15 12:21:39', 0, NULL, 1),
(22895, 'Sugantha Priya RK', '13', '9489693896', '9342555426', 'Priyakannan112004@gmail.com', '2004-01-01', 20, '3', '2', 'Kannan.N', 'Marketing manager', 80000.00, 1, 0.00, 12000.00, 'Coimbatore', 'Vyasarpadi', '2411150010', '', '1', 'upload_files/candidate_tracker/9190940789_suganresume.pdf', NULL, '1', '2024-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-15 06:57:34', 1, '2024-11-15 07:02:59', 0, NULL, 1),
(22896, 'Saha A Sharon S', '13', '7695995196', '8015994787', 'sahaasharon@gmail.com', '2001-07-07', 23, '3', '2', 'Sahayadhasan', 'Fisherman', 164000.00, 2, 0.00, 400000.00, 'Nagercoil', 'Madipakkam', '2411150011', '', '1', 'upload_files/candidate_tracker/43181305102_SAHARESUME4.pdf', NULL, '1', '2024-11-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-15 07:42:56', 1, '2024-11-15 07:48:10', 0, NULL, 1),
(22897, 'Malini M', '33', '9042324058', '', 'Malinimohan2264@gmail.com', '2004-06-22', 20, '5', '2', 'Dhanalakshmi', 'Home maker', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai, pallikaranai', '2411150012', '', '1', 'upload_files/candidate_tracker/73749110311_CopyofMaliniMNewResume.202410241308440000.pdf', NULL, '1', '2024-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-15 09:52:45', 1, '2024-11-15 09:58:15', 0, NULL, 1),
(22898, '', '0', '8925759665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411150013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-15 09:58:27', 0, NULL, 0, NULL, 1),
(22899, 'Mithra', '4', '8122164105', '9962774623', 'mithrasampath2003@gmail.com', '2003-05-29', 21, '5', '2', 'M.Sampath', 'Workings in bakery', 50000.00, 1, 0.00, 20000.00, 'Perumbakkam', 'Perumbakkam', '2411150014', '', '1', 'upload_files/candidate_tracker/92348314936_monkey.docx', NULL, '1', '2024-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-15 11:03:20', 1, '2024-11-15 11:13:06', 0, NULL, 1),
(22900, 'SATHIYAMOORTHI', '13', '7695986054', '9842395209', 'sathiyamoorthi22092002@gmail.com', '2002-09-22', 22, '2', '2', 'SRINIVASAN', 'Daily wages', 10000.00, 2, 0.00, 180000.00, 'Pallipalayam', 'Pallipalayam, Namakkal District', '2411150015', '1', '1', 'upload_files/candidate_tracker/607782612_S.SATHIYAMOORTHIB.TECHITresume.pdf202403181336190000.pdf202403201202411141759220000.pdf', NULL, '1', '2024-11-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-15 11:33:38', 154, '2024-11-15 05:15:49', 0, NULL, 1),
(22901, 'Aswini D', '4', '9150374526', '8754255935', 'aswiniusha36@gmail.com', '2002-10-28', 22, '2', '2', 'Durai S', 'Electrician', 20000.00, 3, 25000.00, 25000.00, 'Chennai', 'Chennai', '2411150016', '1', '2', 'upload_files/candidate_tracker/18094197650_AswiniDResume.pdf', NULL, '1', '2024-11-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-11-15 11:58:50', 154, '2024-11-16 06:42:20', 0, NULL, 1),
(22902, 'R.Ragavi', '4', '8680012584', '', 'ragaviramesh405@gmail.com', '2000-01-27', 24, '2', '2', 'B.Ramesh', 'security head', 60000.00, 2, 0.00, 13000.00, '64/2,Bharathudasan street ,Ayyampet -614201', 'Ayyampet', '2411160001', '1', '2', 'upload_files/candidate_tracker/15207523823_resume222.pdf', NULL, '1', '2024-11-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-16 04:44:36', 154, '2024-11-16 06:41:54', 0, NULL, 1),
(22903, 'Pavith s', '13', '6382991732', '9344145767', 'paviths2003@gmail.com', '2003-07-09', 21, '2', '2', 'Selva kumar', 'Daily worker', 180000.00, 1, 0.00, 200000.00, 'Tiruchirappalli', 'Ashok nagar, chennai', '2411160002', '1', '1', 'upload_files/candidate_tracker/7629474619_pavithjavadeveloper1.pdf', NULL, '1', '2024-11-16', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-16 04:55:57', 154, '2024-11-16 10:45:13', 0, NULL, 1),
(22904, 'Dhanush.M', '6', '9894346114', '9843624616', 'dhanushbme@gmail.com', '2003-05-24', 21, '2', '2', 'Murugan.G', 'Driver', 20000.00, 0, 0.00, 16000.00, 'Erode', 'Vadapapani', '2411160003', '50', '1', 'upload_files/candidate_tracker/790537531_DhanushResume2.pdf', NULL, '1', '2024-11-16', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and convincing is good but interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-16 04:56:08', 154, '2024-11-16 06:43:53', 0, NULL, 1),
(22905, 'N.Logeshwari', '6', '8838911259', '8056259344', 'jayanagaraj1965@gmail.com', '2000-10-15', 24, '3', '2', 'Jaya.N', 'Housewife', 20000.00, 1, 20000.00, 22000.00, '50/2 Mallan ponnappan str, triplicane,Chennai 5', '50/2 Mallan ponnappan str, triplicane,Chennai 5', '2411160004', '', '2', 'upload_files/candidate_tracker/52904971928_Logicolourresume.pdf', NULL, '1', '2024-11-16', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And performance is Ok But Her voice is low and expected higher package also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-11-16 04:58:49', 154, '2024-11-16 06:43:43', 0, NULL, 1),
(22906, 'Anitha', '6', '7200049715', '6382484027', 'anitharamesh1020@gmail.com', '2002-08-20', 22, '2', '2', 'S.Ramesh', 'Auto driver', 80000.00, 2, 18000.00, 20000.00, 'Pallavaram', 'Pallavaram', '2411160005', '1', '2', 'upload_files/candidate_tracker/4326872780_ANIT2002.pdf', NULL, '1', '2024-11-16', 2, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55651', '5151', '1970-01-01', 1, '2024-11-16 05:01:45', 154, '2024-11-16 06:42:58', 0, NULL, 1),
(22907, 'Saranya', '6', '9025231823', '8015979991', 'saranyajayasri1995@gmail.com', '1995-12-24', 28, '2', '2', 'Rathinasamy', 'Coolie', 20000.00, 1, 9000.00, 13000.00, 'Chennai', 'Chennai', '2411160006', '50', '2', 'upload_files/candidate_tracker/37224400069_sarpfd.pdf', NULL, '1', '2024-11-16', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-16 05:14:20', 154, '2024-11-16 06:42:45', 0, NULL, 1),
(22908, 'vinothkumar b', '5', '6380749429', '', 'vinothcr74@gmail.com', '1999-06-14', 25, '2', '2', 'balamurugan n', 'buainess', 30000.00, 1, 20000.00, 23000.00, 'sarojini steeet theni', 'tambaram', '2411160007', '50', '2', 'upload_files/candidate_tracker/14976121842_CV2024082817315036.pdf', NULL, '1', '2024-11-16', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to reschedule', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2024-11-16 05:27:30', 154, '2024-11-16 06:43:09', 0, NULL, 1),
(22909, 'vishal mani', '13', '9344370036', '', 'iamvishalsr@gmail.com', '2000-06-03', 24, '3', '2', 's.manimozhi', 'homemaker', 25000.00, 1, 0.00, 3.00, 'tirunelveli', 'chennai', '2411160008', '', '1', 'upload_files/candidate_tracker/13712646401_Vishalmani.pdf', NULL, '1', '2024-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-16 05:31:09', 1, '2024-11-16 05:42:53', 0, NULL, 1),
(22910, 'Aravind.R', '6', '9360733050', '8807152219', 'simtharavind@gmail.com', '2000-02-13', 24, '2', '2', 'Ravikumar', 'Death', 18000.00, 0, 0.00, 20000.00, '16/4ganganstreetoldwashmenpetchennai', '16/4ganaganstreetoldwashmenpetchennai', '2411160009', '50', '2', 'upload_files/candidate_tracker/96345183581_aravindresume.docx', NULL, '1', '2024-11-16', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - candidate was not ok with salary  and not interested in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-16 06:12:58', 154, '2024-11-16 06:43:18', 0, NULL, 1),
(22911, 'Charulatha', '6', '9789912923', '8681079884', 'clatha125@gmail.com', '2003-10-19', 21, '2', '2', 'Srinivasan', 'House wife', 10000.00, 1, 0.00, 15000.00, 'Thirumullaivoyal near Ambathur Chennai-62', 'Thirumullaivoyal near Ambathur Chennai-62', '2411160010', '50', '1', 'upload_files/candidate_tracker/60666272850_CV2024110818101314.pdf', NULL, '1', '2024-11-16', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-16 06:39:49', 154, '2024-11-16 06:41:34', 0, NULL, 1),
(22912, 'Sabeena . B', '11', '8072130074', '9994425702', 'sabeenaasinar7@gmil.com', '2000-03-09', 24, '3', '2', 'Babukutty. B', 'Mechanical engineering contractor', 50000.00, 4, 0.00, 5000.00, 'Cuddalore', 'Cuddalore', '2411160011', '', '1', 'upload_files/candidate_tracker/44769596332_sabeenaasinar....pdf', NULL, '1', '2024-11-16', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability doubt', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-11-16 06:58:39', 154, '2024-11-16 06:43:34', 0, NULL, 1),
(22913, 'Nivetha Elangovan', '6', '7845479374', '9962023430', 'nivethacathrine@gmail.com', '2003-10-01', 21, '2', '2', 'Elangovan T', 'Tiles business', 30000.00, 1, 15000.00, 18000.00, 'Perambur Purasawalkam', 'Perambur Purasawalkam', '2411160012', '1', '2', 'upload_files/candidate_tracker/39067188735_DOC20241024WA0000..pdf', NULL, '1', '2024-11-18', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not so good at communication and shy type and not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-16 07:34:51', 154, '2024-11-18 05:23:13', 0, NULL, 1),
(22914, 'SELVAGANESH', '6', '6382532159', '8939402734', 'selvaganeshct2002@gmail.com', '2002-12-06', 21, '2', '2', 'CHINNAIYAN', 'Driver', 15000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2411160013', '1', '1', 'upload_files/candidate_tracker/60463378966_SELVAGANESHNEWPDF.pdf', NULL, '1', '2024-11-19', 0, '', '3', '59', '2024-11-22', 204000.00, '', '5', '1970-01-01', '2', 'Fresher fr our roles pressure handling not sure if he join let us try in training and confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '2024-11-22', 1, '2024-11-16 07:57:12', 60, '2024-12-06 03:26:26', 0, NULL, 1),
(22915, 'S. Stella', '6', '9361184576', '', 'stellakutty52@gmail.com', '2003-08-28', 21, '2', '2', 'Marykumar', 'Housewife', 15000.00, 1, 0.00, 15000.00, 'Tirunelveli ktc nagar', 'Ktc Nagar', '2411170001', '1', '1', 'upload_files/candidate_tracker/89639596986_StellaResume.pdf', NULL, '1', '2024-11-20', 0, '', '3', '59', '2024-12-02', 168000.00, '', '', '1970-01-01', '2', 'Communication Ok Can give a try and check in  7 days training based on manager decision proceeded with the cost', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-17 03:15:33', 154, '2024-11-20 04:51:14', 0, NULL, 1),
(22916, 'RAGUL R', '6', '9361497797', '', 'rasappanraghul04@gamil.com', '2004-06-19', 20, '2', '2', 'Rasappan', 'Farmer', 20000.00, 1, 0.00, 16000.00, 'Chidambaram', 'Chennai', '2411170002', '1', '1', 'upload_files/candidate_tracker/50663359261_1718698853372.pdf', NULL, '1', '2024-11-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1028', '', '55651', '5151', '1970-01-01', 1, '2024-11-17 08:18:33', 154, '2024-11-20 04:49:52', 0, NULL, 1),
(22917, 'Praveen kumar k', '6', '9514868110', '', 'praveen11072003@gmail.com', '2003-07-11', 21, '2', '2', 'karpaga arasu', 'auto driver', 18000.00, 1, 0.00, 18000.00, 'mylapore', 'mylapore', '2411170003', '1', '1', 'upload_files/candidate_tracker/91754598977_KPraveenKumar.pdf', NULL, '3', '2024-11-18', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'silent person and no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-17 09:50:58', 154, '2024-11-18 04:01:30', 0, NULL, 1),
(22918, 'RITHU KRISHNAN B', '4', '9626426225', '', 'rithukrishnan69@gmail.com', '2003-11-22', 20, '2', '2', 'BALAKRISHNAN S', 'COOLIE', 8000.00, 2, 0.00, 15000.00, 'Thiruvaiyaru , Thanjavur (dt)', 'Thiruvaiyaru , Thanjavur (dt)', '2411170004', '1', '1', 'upload_files/candidate_tracker/1046817981_Rithukrishnanresume.pdf', NULL, '1', '2024-11-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-17 10:26:43', 154, '2024-11-18 05:23:03', 0, NULL, 1),
(22919, 'Gokulakannan N', '6', '9789038552', '9789963867', 'gokulvidhu06@gmail.com', '2001-09-23', 23, '2', '2', 'Kamatchi', 'House wife', 50000.00, 2, 0.00, 23000.00, 'Saidapet', 'Saidapet', '2411180001', '50', '1', 'upload_files/candidate_tracker/87120081702_gokulresume11.docx', NULL, '1', '2024-11-18', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate voice and communication ok but past1 month work in kotak bank field work, not interest to quit the job , so he only looking for non voice process only so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-18 04:44:14', 154, '2024-11-18 05:23:33', 0, NULL, 1),
(22920, 'Logesh v c', '13', '8072925882', '', 'spatanlogesh01@gmail.com', '2003-05-02', 21, '2', '2', 'Priya c / chandrasekharan v', 'Nurse/Tailor', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2411180002', '1', '1', 'upload_files/candidate_tracker/12415487972_LOGESHRESUME.pdf', NULL, '1', '2024-11-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-18 05:55:22', 154, '2024-11-18 11:38:17', 0, NULL, 1),
(22921, 'A.mydeen beevi', '6', '8807665625', '', 'mydeen672002@gmail.com', '2002-07-06', 22, '2', '2', 'Abdul rahuman', 'Hotel management', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2411180003', '49', '1', 'upload_files/candidate_tracker/96889666763_mydeenbeeviresume1.docx', NULL, '1', '2024-11-18', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-18 05:58:36', 154, '2024-11-18 04:01:20', 0, NULL, 1),
(22922, 'AJAY PRASATH', '6', '7871708305', '', 'ajayyprasathh@gmail.com', '2000-03-21', 24, '2', '2', 'Benjamin Franklin', 'Police Officer', 55000.00, 1, 13500.00, 18000.00, 'Chennai', 'Alandur, Chennai', '2411180004', '1', '2', 'upload_files/candidate_tracker/33104336995_PHOTO..PDF', NULL, '1', '2024-11-18', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and convincing is good but interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-18 06:09:07', 154, '2024-11-18 05:23:46', 0, NULL, 1),
(22923, 'Praveen kumar S', '13', '9080874976', '7598354140', 'praveenkumar16052001@gmail.com', '2001-05-16', 23, '3', '2', 'Subramanian', 'Father', 150000.00, 1, 0.00, 350000.00, 'Tirunelveli', 'Tirunelveli', '2411180005', '', '1', 'upload_files/candidate_tracker/29424790638_S.PraveenKumarCV.pdf', NULL, '1', '2024-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-18 07:04:02', 1, '2024-11-18 07:08:48', 0, NULL, 1),
(22924, 'Prathapvembaiyan', '6', '9344255724', '9655909002', 'Prathapvembaiyan@gmail.com', '2003-05-11', 21, '2', '2', 'Vem baiyan', 'farmer', 25000.00, 1, 16000.00, 18000.00, 'Pattukkottai', 'Sholinganallur', '2411180006', '1', '2', 'upload_files/candidate_tracker/14767270221_CV2024081919381215.pdf', NULL, '1', '2024-11-18', 1, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate vocie and commuication  not good and  he past 3 years work from other domine, and he ery interst to medical coding , so not fit for my team ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-18 07:28:42', 154, '2024-11-18 05:23:23', 0, NULL, 1),
(22925, 'Saranya', '4', '9790813599', '9840159568', 'saranyaekambaram97@gmail.com', '1997-06-28', 27, '2', '2', 'Ekambaram', 'Business', 180000.00, 1, 211000.00, 310000.00, 'Chennai', 'Chennai', '2411180007', '1', '2', 'upload_files/candidate_tracker/70360241191_Cv...pdf', NULL, '1', '2024-11-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-11-18 12:33:28', 154, '2024-11-19 04:31:21', 0, NULL, 1),
(22926, '', '0', '8838450151', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411190001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-19 01:33:36', 0, NULL, 0, NULL, 1),
(22927, '', '0', '7826827856', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411190002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-19 03:25:53', 0, NULL, 0, NULL, 1),
(22928, 'Logeshwaran A', '13', '9787930970', '7200411044', 'logesh.a2901@gmail.com', '2001-11-29', 22, '2', '2', 'Alagarsamy M', 'Farmer', 10000.00, 2, 0.00, 400000.00, 'Pudukkottai', 'Chennai', '2411190003', '1', '1', 'upload_files/candidate_tracker/73479051312_DocumentfromLoki.pdf', NULL, '1', '2024-11-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-19 04:53:49', 154, '2024-11-19 10:39:56', 0, NULL, 1),
(22929, 'MANOJ KUMAR V', '13', '6379132841', '9965152078', 'manojtp946@gmail.com', '2003-01-07', 21, '2', '2', 'S VEERAIAH', 'EX ARMY', 35000.00, 0, 0.00, 15000.00, 'SIVAGANGA', 'CHENNAI', '2411190004', '1', '1', 'upload_files/candidate_tracker/26464491105_ManojKumarB.EECE8.17CGPA.pdf', NULL, '1', '2024-11-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-19 05:14:09', 154, '2024-11-19 04:32:51', 0, NULL, 1),
(22930, '', '0', '9551403791', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411190005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-19 05:18:11', 0, NULL, 0, NULL, 1),
(22931, 'Mugilan M', '13', '7397630531', '', 'mugilan2033@gmail.com', '2003-03-16', 21, '2', '2', 'Murugan R', '-', 20000.00, 1, 0.00, 15000.00, 'Villupuram', 'Velachery', '2411190006', '1', '1', 'upload_files/candidate_tracker/61273263459_MugilanBEECE20248.2CGPAFrontend.pdf', NULL, '1', '2024-11-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-19 05:22:23', 154, '2024-11-19 11:07:54', 0, NULL, 1),
(22932, 'Mohamed Suhaibu', '6', '9791711839', '', 'suhaibuyahya28@gmail.com', '2002-03-29', 22, '2', '2', 'parents', 'business', 20000.00, 3, 0.00, 15000.00, 'adirampattinam thanjavur district', 'mann chennai', '2411190007', '56', '1', 'upload_files/candidate_tracker/56473235201_Resume2.pdf', NULL, '3', '2024-11-19', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected-candidate was  not even wear a proper outfit communication was not good not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-19 05:23:31', 154, '2024-11-19 04:31:46', 0, NULL, 1),
(22933, 'Sangeetha S', '6', '9600164190', '', 'sangeesangeetha3373@gmail.com', '2001-06-15', 23, '1', '2', 'Rama devi s', 'Sales', 23000.00, 1, 0.00, 15000.00, 'Chinna echankuzhi', 'Manali new town', '2411190008', '', '1', 'upload_files/candidate_tracker/50618688412_SangeethaResume5.pdf', NULL, '1', '2024-11-19', 0, 'P1287', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not good at communication and  not have confidence and not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-19 05:24:13', 154, '2024-11-19 04:32:14', 0, NULL, 1),
(22934, 'Surya', '6', '8778100468', '9751589276', 'suriyavelu521@gmail.com', '1999-11-06', 25, '2', '2', 'Sumathi', 'Sales', 15000.00, 1, 16000.00, 20000.00, 'Arcot', 'Arcot', '2411190009', '57', '2', 'upload_files/candidate_tracker/13383535398_Suriya1.pdf', NULL, '1', '2024-11-19', 10, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is unfit for sales profile,1yr experience collection, 6m working in tamil matrimony. 6m he take over for father work. communication not well.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-11-19 05:27:56', 154, '2024-11-19 04:31:33', 0, NULL, 1),
(22935, 'Mohan kumar', '6', '8056214067', '7358158429', 'mohannaughty0@gmail.com', '2002-02-27', 22, '2', '2', 'Kalai selvi', 'Icds helper', 84000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2411190010', '49', '1', 'upload_files/candidate_tracker/41455703384_ResumeP.MohanKuamr4.pdf', NULL, '1', '2024-11-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not Interested in insurance sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-19 05:29:01', 154, '2024-11-19 12:10:20', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22936, 'Asma sumera', '6', '9986504192', '9986504182', 'Asmasumera03@gmail.com', '2001-03-03', 23, '2', '2', 'Muneer ahmed', 'Shop keeper', 30000.00, 2, 0.00, 17000.00, 'Arvind residency JP nagar 7th phase Bangalore', 'Jp nagar 7th phase arvind residency arvind layout', '2411190011', '1', '1', 'upload_files/candidate_tracker/38868142708_asmasumera.pdf', NULL, '1', '2024-11-18', 0, '', '3', '59', '2024-12-09', 192000.00, '', '3', '2024-12-31', '2', 'Communication Good Fresher open for telecalling can give a try and check in 7 days training', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '2024-12-09', 1, '2024-11-19 05:29:18', 104, '2024-12-11 05:58:19', 0, NULL, 1),
(22937, 'sanjay', '13', '9360988563', '9962319565', 'sanjaydofficial777@gmail.com', '2001-05-17', 23, '3', '2', 'chithra', 'accountant', 120000.00, 1, 0.00, 3.50, 'chennai', 'chennai', '2411190012', '', '1', 'upload_files/candidate_tracker/73430759075_Dsanjayresume.pdf', NULL, '1', '2024-11-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-19 06:24:52', 1, '2024-11-19 06:38:51', 0, NULL, 1),
(22938, 'Vaitheeswari', '4', '8072370536', '9276048829', 'Vaitheeswari2001v@gmail.com', '2001-09-10', 23, '2', '2', 'Vallu velmurugan', 'Sales', 30000.00, 1, 21000.00, 25000.00, 'Chennai', 'Pallavarm', '2411190013', '1', '2', 'upload_files/candidate_tracker/39361603101_cafs.pdf', NULL, '1', '2024-11-19', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability problem\nabsconded in previous company', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1027', '', '55824', '55560', '1970-01-01', 1, '2024-11-19 06:29:00', 104, '2024-11-19 06:31:06', 0, NULL, 1),
(22939, 'Lavanya B', '6', '9962570983', '', 'Lavanyabalraj0@gmail.com', '2003-07-22', 21, '2', '2', 'Chitra', 'House wife', 26000.00, 2, 16000.00, 18500.00, 'Thambram', 'Thambaram', '2411190014', '1', '2', 'upload_files/candidate_tracker/45385994563_LAVANYA.B212.pdf', NULL, '1', '2024-11-19', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good ,also long disteance and expected higher package .then sustainable doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '55666', '5151', '1970-01-01', 1, '2024-11-19 06:31:05', 154, '2024-11-19 04:32:36', 0, NULL, 1),
(22940, 'Syed iyaz.R', '6', '6383093396', '9789944472', 'iyazsyed4@gmail.com', '2003-05-03', 21, '2', '2', 'Mother', 'Sister', 30000.00, 1, 16000.00, 20000.00, 'Alandur', 'Ashrkana Street Chennai -16', '2411190015', '1', '2', 'upload_files/candidate_tracker/64095781092_PDF1732001825975.pdf', NULL, '1', '2024-11-19', 30, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'time pass', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-19 07:05:09', 154, '2024-11-19 04:30:10', 0, NULL, 1),
(22941, 'Uma.g', '4', '9962309176', '9176574524', 'umaselva487@gmail.com', '1994-09-12', 30, '6', '1', 'Gopi', 'Daily salary', 20000.00, 1, 15000.00, 17000.00, 'No:63 madha koil Street thondiarpet', 'No:63 madha koil Street thondiarpet', '2411190016', '', '2', 'upload_files/candidate_tracker/31320644215_reasume.docx', NULL, '1', '2024-11-19', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-19 07:12:45', 1, '2024-11-19 07:28:33', 0, NULL, 1),
(22942, 'Suganthi', '6', '7540014189', '9962342134', 'guganrajguganraj3@gamil.com', '2003-04-14', 21, '2', '1', 'Pathmanathan', 'Daily work', 15000.00, 3, 0.00, 17000.00, 'Anni Sathya nagar b block 385', '385b block annai Sathya nagar', '2411190017', '57', '1', 'upload_files/candidate_tracker/94571850754_resumesuganthi.pdf', NULL, '3', '2024-11-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-19 07:12:57', 154, '2024-11-19 01:05:38', 0, NULL, 1),
(22943, 'Dinesh D', '6', '9360319637', '8930606056', 'dineshdinagarapandiyan@gmail.com', '2003-06-12', 21, '2', '2', 'R Dinakaran pandiyan', 'Farmer', 19000.00, 0, 17000.00, 20000.00, 'Melaselvanur,Ramanathapuram Dist, 623703', 'Porur,Chennai ,600089', '2411190018', '1', '2', 'upload_files/candidate_tracker/99051087728_Resume..pdf', NULL, '1', '2024-11-19', 0, '', '3', '59', '2024-11-25', 192000.00, '', '5', '1970-01-01', '2', 'Communication Good Open to sales profile can be trained in our roles should check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55645', '5151', '2024-11-25', 1, '2024-11-19 08:01:54', 60, '2024-11-19 05:33:25', 0, NULL, 1),
(22944, 'shandosh .m', '6', '8903606056', '9360319637', 'sandyshandosh@gmail.com', '2003-07-07', 21, '2', '2', 'murugesan .s', 'driver', 25000.00, 1, 17000.00, 20000.00, 'madurai', 'mugalivakkam .porur chennai .', '2411190019', '1', '2', 'upload_files/candidate_tracker/82996141811_resume3.pdf', NULL, '1', '2024-11-19', 0, '', '3', '59', '2024-11-25', 192000.00, '', '5', '1970-01-01', '2', 'Communication Good Open to sales profile can be trained in our roles should check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', 'P1287', '5151', '2024-11-25', 1, '2024-11-19 08:02:04', 60, '2024-11-19 05:34:04', 0, NULL, 1),
(22945, '', '0', '7708724187', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411190020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-19 08:28:24', 0, NULL, 0, NULL, 1),
(22946, 'Deepa', '6', '9742598057', '9066263770', 'Sara.ritu.341@gmail.com', '2002-10-30', 22, '1', '2', 'Bharath Kumar', 'Plumber', 30000.00, 3, 23000.00, 25000.00, 'R t nagar', 'Bommanahalli', '2411190021', '', '2', 'upload_files/candidate_tracker/62756518196_DeepuBResume.pdf', NULL, '1', '2025-05-27', 30, '55786', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She will join june 2nd for dm suggested 21k in hand', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2024-11-19 10:30:08', 60, '2025-05-29 06:22:49', 0, NULL, 1),
(22947, 'Sanjay kanth', '6', '8838788136', '', 'Sanjaykanth132002@gmail.com', '2002-11-13', 22, '2', '2', 'Saravanan', 'TNEB', 70000.00, 2, 0.00, 2.50, 'Attipattu near minjur', 'Attipattu', '2411190022', '1', '1', 'upload_files/candidate_tracker/15496885007_ImagetoPDF2024080912.27.59.pdf', NULL, '1', '2024-11-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-11-19 01:37:43', 154, '2024-11-20 04:49:26', 0, NULL, 1),
(22948, 'Hariprasanth . S', '13', '9524198606', '8122427806', 'hariprasanth806@gmail.com', '2002-01-15', 22, '2', '2', 'Selvaraj', 'Lorry Driver', 30000.00, 1, 0.00, 200000.00, 'Thathiengarpet', 'Chennai', '2411200001', '1', '1', 'upload_files/candidate_tracker/39133012819_HariprasanthCV.pdf', NULL, '1', '2024-11-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2024-11-20 04:33:52', 1, '2024-11-20 04:37:16', 0, NULL, 1),
(22949, 'Swetha sri', '6', '9025856486', '8838113957', 'sriswetha3003@gmail.com', '2003-03-30', 21, '2', '2', 'Anbu selvi S', 'House wife', 20000.00, 1, 0.00, 15000.00, 'Sivaganga', 'T nagar', '2411200002', '50', '1', 'upload_files/candidate_tracker/57071129015_overleafresume1compressed.pdf', NULL, '1', '2024-11-20', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate mainly looking for banking for and govt work only just temporvery looking for job and not fit for sales , because vocie is very low and very silent  type  , so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-20 05:28:23', 154, '2024-11-20 04:51:56', 0, NULL, 1),
(22950, 'Pranesh D', '6', '9751022457', '8939287656', 'vismipranesh@gmail.com', '2003-06-08', 21, '3', '2', 'DHANDAPANI', 'Daily wages', 300000.00, 0, 0.00, 18000.00, 'VELLAKOVIL', 'Chennai', '2411200003', '', '1', 'upload_files/candidate_tracker/1518132751_CV2024111913401215.pdf', NULL, '1', '2024-11-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-20 05:48:15', 1, '2024-11-20 05:53:56', 0, NULL, 1),
(22951, 'Dhanalakshmi.k', '6', '6369070737', '8248596039', 'dhanalalshmikpriya2003@gmail.com', '2003-08-13', 21, '2', '2', 'RAJESHWARI', 'HOUSE WIFE', 20000.00, 1, 15000.00, 20000.00, 'tondaripet', 'Tondairpet', '2411200004', '50', '2', 'upload_files/candidate_tracker/90741933953_K.DHANNALAKHSMI.pdf', NULL, '1', '2024-11-20', 6, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - candidate was not talkative not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-20 06:00:07', 154, '2024-11-20 04:50:56', 0, NULL, 1),
(22952, 'PRIYA DHARSHINI', '6', '9080209393', '6369070723', 'priyadharshini2003@gmail.com', '2003-12-17', 20, '2', '2', 'SELVI', 'HOUSE WIFE', 20000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2411200005', '50', '2', 'upload_files/candidate_tracker/79025827951_CV2024090922562651.pdf', NULL, '1', '2024-11-20', 6, '', '3', '59', '2024-11-22', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok mentioned 2 months loan sales but no documents need to check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2024-11-22', 1, '2024-11-20 06:00:38', 60, '2024-11-21 06:11:03', 0, NULL, 1),
(22953, 'Karthick', '6', '9597894378', '', 'karthick.cp98@gmail.com', '1998-07-16', 26, '2', '2', 'Kannan', 'Student', 10000.00, 1, 0.00, 18000.00, 'Tirunelveli', 'Velachery', '2411200006', '1', '1', 'upload_files/candidate_tracker/79177707404_KarthickFrontend1.pdf', NULL, '1', '2024-11-20', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good ,also his attire is not good then sustainable doubt', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '55666', '5151', '1970-01-01', 1, '2024-11-20 06:05:26', 154, '2024-11-20 04:52:12', 0, NULL, 1),
(22954, 'M VASANTH', '6', '9566216210', '9551717481', 'mathewvasanthmathew@gmail.com', '1998-01-21', 26, '2', '1', 'S MUTHURAJ', 'DRIVER', 35000.00, 1, 17000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2411200007', '1', '2', 'upload_files/candidate_tracker/89810382808_vasanthresume.pdf', NULL, '1', '2024-11-20', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-11-20 06:07:36', 154, '2024-11-20 04:49:40', 0, NULL, 1),
(22955, 'ranjith r', '6', '9944691912', '', 'kvrranjith441@gmail.com', '2001-01-27', 23, '2', '2', 'ravichandran', 'building constru', 200000.00, 2, 0.00, 20000.00, 'thanjavur', 'chennai', '2411200008', '1', '1', 'upload_files/candidate_tracker/29979839522_RANJITHResume.pdf', NULL, '1', '2024-11-21', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-20 06:34:21', 154, '2024-11-21 05:37:57', 0, NULL, 1),
(22956, 'Suriya E', '8', '8610233675', '', 'samsuriya127@gmail.com', '1998-09-20', 26, '3', '2', 'Ealumalai', 'Head sealsman', 30000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2411200009', '', '2', 'upload_files/candidate_tracker/58218617339_SURIYAECopy1.pdf', NULL, '1', '2024-11-20', 0, '', '3', '59', '2024-11-22', 240000.00, '', '3', '2024-12-09', '1', 'Rejoining Candidate after 2yrs Reviewed by Gokul Commitment Given 10 days - 1NOP / m1-30K / m2 - 50K / M3 - 80K and M0-10K SIP / M1 - 30K SIP / m2 - 40K sIP / M3 - 50K SIP', '7', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '55605', '55566', '2024-11-22', 1, '2024-11-20 06:56:24', 60, '2024-11-21 01:23:05', 0, NULL, 1),
(22957, 'Shiny jasper .s', '6', '9094145897', '7338880468', 'shinyjasper2003@gmail.com', '2003-11-25', 20, '2', '2', 'P.Mary samson', 'TELECALLER', 20.00, 1, 0.00, 18.00, 'Chennai perambur', 'Perambur', '2411200010', '1', '1', 'upload_files/candidate_tracker/57028435723_ShinyJasperResume.pdf', NULL, '1', '2024-11-20', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected -customer was  good at communication but not trustable in stability and already  got rejected by our company', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-20 07:09:08', 154, '2024-11-20 04:50:44', 0, NULL, 1),
(22958, 'Mohammed Raushan M', '13', '8870035157', '', 'mohammedraushan73@gmail.com', '2002-05-09', 22, '2', '2', 'Mohideen Batcha', 'Working in abroad', 30000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Chennai', '2411200011', '1', '1', 'upload_files/candidate_tracker/96960565558_Mohammed.pdf', NULL, '1', '2024-11-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-20 07:16:36', 154, '2024-11-20 01:03:54', 0, NULL, 1),
(22959, 'Satheesh P', '31', '8428319965', '8438815417', 'satheeshpalani16@gmail.com', '1999-06-16', 25, '2', '2', 'Palanisamy D', 'Cooli', 80000.00, 3, 3.50, 4.00, 'Namakkal', 'Namakkal', '2411200012', '1', '2', 'upload_files/candidate_tracker/67119550124_SatheeshPResume.pdf', NULL, '1', '2024-11-20', 5, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-20 07:18:46', 154, '2024-11-20 12:57:40', 0, NULL, 1),
(22960, 'Sibiraj G', '13', '9786257467', '6369025102', 'gsibirajsibiraj@gmail.com', '2003-03-03', 21, '3', '2', 'Ganapathi', 'Framer', 60000.00, 1, 0.00, 15000.00, 'TIRUVANNAMALAI', 'Chennai', '2411200013', '', '1', 'upload_files/candidate_tracker/68585025530_Sibirajresume1.pdf', NULL, '1', '2024-11-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-20 09:10:39', 1, '2024-11-20 09:15:56', 0, NULL, 1),
(22961, 'Maris Sivaranjani', '6', '7539934477', '', 'vmarissivaranjani@gmail.com', '2003-07-04', 21, '2', '2', 'Vandimalayan', 'Dirver', 30000.00, 1, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2411200014', '1', '1', 'upload_files/candidate_tracker/56825972622_MarisSivaranjaniResume218.pdf', NULL, '1', '2024-11-20', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is ok ,But she is intrested in non-voice process,also she is sensitive type,sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2024-11-20 09:10:52', 154, '2024-11-20 04:52:24', 0, NULL, 1),
(22962, 'Logeshwari B', '5', '9176587579', '', 'Logusoni2210@gmail.com', '2002-10-22', 22, '1', '2', 'BABURAO KS', 'Aluminum fabrication', 30000.00, 2, 0.00, 16000.00, 'Teynampet', 'Teynampet', '2411200015', '', '1', 'upload_files/candidate_tracker/91457927804_Resume13112024083629am.pdf', NULL, '1', '2024-11-20', 0, '77828', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-20 09:30:54', 154, '2024-11-20 04:48:09', 0, NULL, 1),
(22963, 'Kalanithi.s', '4', '8778847667', '', 'Kalanithikalanithi2610@gmail.com', '2002-10-26', 22, '2', '2', 'Suresh.m', 'Leather worker', 40000.00, 2, 11000.00, 15000.00, 'Salem', 'Chennai', '2411200016', '1', '2', 'upload_files/candidate_tracker/58709238288_Kalanithisuresh21.pdf', NULL, '1', '2024-11-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-11-20 09:38:10', 154, '2024-11-20 04:48:58', 0, NULL, 1),
(22964, 'rukesh', '6', '7395854010', '8056260965', 'rukeshthambidurai@gmail.com', '2001-09-20', 23, '2', '2', 'thambidurai', 'goverment bus depo', 300000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2411200017', '1', '1', 'upload_files/candidate_tracker/22053116715_RukeshThambidurai.pdf', NULL, '1', '2024-11-21', 0, '', '3', '59', '2024-12-11', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Fresher for Sales calling focusing much for logistics sustainabilitydoubts if he join let us try', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'CA130', '5151', '2024-12-11', 1, '2024-11-20 12:28:36', 60, '2024-12-06 03:18:34', 0, NULL, 1),
(22965, 'THAKER AHAMED R', '6', '9710891311', '', 'thayarthayar7@gmail.com', '2002-12-23', 21, '2', '2', 'Father : syed rofe', 'Tailore', 18000.00, 1, 16000.00, 18000.00, 'Chennai', 'Chennai', '2411200018', '56', '2', 'upload_files/candidate_tracker/43433478114_THAKERAHAMEDRResume.pdf', NULL, '1', '2024-11-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'candidate went without attending interview', '', '', '', '', '', '1970-01-01', 1, '2024-11-20 01:29:50', 154, '2024-11-21 12:38:58', 0, NULL, 1),
(22966, 'KOKILA B', '6', '9551106580', '9342229233', 'Kokilaboopathi327@gmail.com', '2004-06-07', 20, '2', '2', 'Boopathi', 'Own Business', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2411200019', '56', '1', 'upload_files/candidate_tracker/17907809262_KokilaResumedt02062024.pdf', NULL, '1', '2024-11-21', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit foe sales,she is not intrest in calling', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-20 01:51:06', 154, '2024-11-21 05:46:46', 0, NULL, 1),
(22967, 'Sangeetha', '4', '6381601217', '', 'sanasangi14@gmail.com', '1998-08-14', 26, '2', '1', 'Mahendran', 'Railway ICF', 50.00, 1, 0.00, 25000.00, '33/3 p.e koil street Ayanavaram Chennai 23', '33/3 p.e koil Street Ayanavaram Chennai 23', '2411200020', '1', '2', 'upload_files/candidate_tracker/94374657275_SangeethasResumeupdated1.pdf', NULL, '1', '2024-11-21', 0, '', '3', '59', '2024-11-26', 240000.00, '', '3', '2025-01-31', '2', 'Communication Ok recently married  have exp in calling but not a relevant one can give a try and check', '1', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1027', '', '55824', '55560', '2024-11-26', 1, '2024-11-20 03:36:12', 60, '2024-11-25 05:18:56', 0, NULL, 1),
(22968, '', '0', '6381967818', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411200021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-20 03:49:23', 0, NULL, 0, NULL, 1),
(22969, 'Dhanush s', '6', '7305648369', '', 'ssdhanush673@gmail.com', '2002-08-19', 22, '5', '2', 'Sankar', 'Customer service representative', 35000.00, 1, 22000.00, 30000.00, 'Chennai 41', 'CHENNAI', '2411200022', '', '2', 'upload_files/candidate_tracker/66395302144_DhanushResume.pdf', NULL, '1', '2024-11-21', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-20 05:21:21', 1, '2024-11-20 05:31:25', 0, NULL, 1),
(22970, 'G Thangamari', '6', '6382746117', '8015461345', 'ganapathithangamari@gmail.com', '2001-01-24', 23, '2', '2', 'Ganapati', 'Farmer', 25000.00, 1, 0.00, 18000.00, 'Villivakkam', 'Tenkasi', '2411210001', '50', '1', 'upload_files/candidate_tracker/53627661945_BlueSimpleProfessionalCVResume3.pdf', NULL, '2', '2024-11-21', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate already working another domain salary take home 28k to 30k and high salary expectation', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-21 04:56:27', 154, '2024-11-21 05:59:00', 0, NULL, 1),
(22971, 'RAKESH r', '13', '9751673380', '', 'rakeshr8474@gmail.com', '2002-09-20', 22, '2', '2', 'RAJAGOPAL', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Velachery,Chennai', '2411210002', '1', '1', 'upload_files/candidate_tracker/87563613298_RAKESHR21.pdf', NULL, '1', '2024-11-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-21 05:18:16', 104, '2024-11-21 11:05:27', 0, NULL, 1),
(22972, 'AANANTHA SHOBANA E', '6', '9566341473', '6369136668', 'Aananthashobana1997@gmail.com', '1997-09-17', 27, '2', '2', 'SAROJA E', 'Nurse', 15000.00, 1, 0.00, 20000.00, 'Pallipalayam, Namakkal dist', 'Kodambakam', '2411210003', '50', '1', 'upload_files/candidate_tracker/68916472790_AananthashobanaE1.pdf', NULL, '1', '2024-11-21', 0, '', '3', '59', '2024-11-22', 192000.00, '', '3', '2024-12-13', '2', 'Fresher for our role can be trained age around 27 yrs Have exp in Matured character personally depressed after her fathers death should check in 7 days training and confirm long run need to check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2024-11-22', 1, '2024-11-21 05:36:34', 60, '2024-11-21 06:43:03', 0, NULL, 1),
(22973, 'Maharajan R', '13', '9659316431', '', 'maharajanr2003@gmail.com', '2003-04-12', 21, '3', '2', 'M.Rathinavel', 'Driver', 8000.00, 4, 0.00, 15000.00, 'Periyakulam', 'Chennai', '2411210004', '', '1', 'upload_files/candidate_tracker/53332248165_MaharajanResume.pdf', NULL, '1', '2024-11-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-21 05:37:15', 104, '2024-11-21 11:41:36', 0, NULL, 1),
(22974, 'L.SARUMATHI', '4', '9790326977', '8754244802', 'sarulakshmanan.2002@gmail.com', '2002-05-21', 22, '2', '2', 'LAKSHMANAN', 'Farmer', 12000.00, 1, 12000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2411210005', '1', '2', 'upload_files/candidate_tracker/77809087327_sarumathi.docx', NULL, '1', '2024-11-21', 20, '', '3', '59', '2024-11-25', 156000.00, '', '3', '2025-05-25', '2', 'Communication Ok Can be trained in our roles and check', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '2024-11-25', 1, '2024-11-21 06:30:28', 60, '2024-11-23 06:49:47', 0, NULL, 1),
(22975, 'Naveen', '6', '8248149476', '9790460459', 'naveennaveen04801@gmail.com', '2002-02-02', 22, '2', '2', 'Elayaraja', 'Driver', 30000.00, 1, 0.00, 18000.00, 'No 12 A velankanni street venkateshwara nagar', 'Ambattur', '2411210006', '50', '1', 'upload_files/candidate_tracker/21803064545_CV202209281057341.pdf', NULL, '1', '2024-11-21', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'REJECTED -candidate was not suitable for sales not at all speaking', '5', '1', '', '4', '6', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-21 06:44:09', 154, '2024-11-21 05:58:20', 0, NULL, 1),
(22976, 'R SANTHIYA', '6', '9092686075', '9941763690', 'santhiyaram2502@gmail.com', '2000-02-25', 24, '2', '2', 'P RAMAMOORTHY', 'Construction', 15000.00, 1, 15000.00, 18000.00, 'Kolathur chennai', 'Kolathur chennai', '2411210007', '57', '2', 'upload_files/candidate_tracker/81768591959_RESUME11.pdf', NULL, '3', '2024-11-21', 0, '', '3', '59', '2024-11-25', 198000.00, '', '3', '2024-12-09', '2', 'Communication Ok Can be trained in our roles need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-11-25', 1, '2024-11-21 07:04:21', 60, '2024-11-23 06:48:29', 0, NULL, 1),
(22977, 'Karthika', '6', '7604020516', '', 'karthikap200313@gmail.com', '2003-11-13', 21, '2', '2', 'Palani.g', 'Turner', 20000.00, 1, 15000.00, 18000.00, 'Chennai', 'Perambur', '2411210008', '56', '2', 'upload_files/candidate_tracker/46464410694_2pageformatCopy.doc', NULL, '1', '2024-11-21', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance Is Ok,also like slow Person and sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-11-21 07:19:39', 154, '2024-11-21 05:58:51', 0, NULL, 1),
(22978, 'Sandhiya K', '6', '8754582683', '9087163196', 'sandhiyajanu25@gmail.com', '2001-10-25', 23, '2', '2', 'Karikalan', 'Auto driver', 30000.00, 1, 0.00, 15000.00, 'No.1 mohandoss road Anna salai,Chennai 2', 'Chennai', '2411210009', '57', '1', 'upload_files/candidate_tracker/91135547005_Sandhiyanewresume22.pdf', NULL, '1', '2024-11-21', 0, '', '3', '59', '2024-11-25', 168000.00, '', '5', '1970-01-01', '2', '5050-Seems not much interest to work,sustainability doubts / Shared breakup', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '2024-11-25', 1, '2024-11-21 09:42:54', 60, '2024-12-06 03:05:30', 0, NULL, 1),
(22979, 'Vasanth', '6', '7395990732', '', 'vasanthvasa393@gmail.com', '2002-04-04', 22, '2', '2', 'Sankar', 'Na', 20000.00, 1, 0.00, 20000.00, 'Kilpauk', 'Kilpauk', '2411210010', '1', '1', 'upload_files/candidate_tracker/7103138641_resumeforvasanth.pdf', NULL, '1', '2024-11-22', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-21 12:42:17', 154, '2024-11-22 05:57:32', 0, NULL, 1),
(22980, 'SHABURA BANU', '4', '6379409118', '7010169077', 'shaburavajee97@gmail.com', '1997-10-20', 27, '2', '2', 'Monisha Banu', 'Police', 70000.00, 2, 20000.00, 25000.00, '13, 4th floor, A Block Lutheran Quarters kilpauk', '13,4th floor A Block Lutheran Quarters kilpauk', '2411210011', '1', '2', 'upload_files/candidate_tracker/15021714075_shabura.pdf', NULL, '1', '2024-11-22', 0, '', '3', '59', '2024-11-25', 228000.00, '', '3', '2025-04-15', '2', 'Can be trained in our roles have calling exp too', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55824', '55560', '2024-11-25', 1, '2024-11-21 01:03:01', 60, '2024-11-23 06:58:59', 0, NULL, 1),
(22981, '', '0', '9361323564', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411220001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-22 04:15:50', 0, NULL, 0, NULL, 1),
(22982, 'vinodh chand a g', '4', '8148389395', '8148390647', 'vinodchand2201@gmail.com', '1994-01-22', 30, '2', '2', 'giridhar a c', 'retired', 23000.00, 1, 3.20, 4.00, 'ranipet', 'chennai', '2411220002', '50', '2', 'upload_files/candidate_tracker/58513843188_Resume.docx', NULL, '1', '2024-11-22', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-22 04:21:39', 104, '2024-11-22 12:53:59', 0, NULL, 1),
(22983, 'nagisetty venkata pavan', '13', '9566123513', '', 'pavanrtf20@gmail.com', '2000-12-12', 23, '2', '2', 'n thirupal', 'lab', 100000.00, 1, 0.00, 200000.00, 'chennai', 'chennai', '2411220003', '1', '1', 'upload_files/candidate_tracker/42144375677_cresume.pdf', NULL, '1', '2024-11-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-22 04:56:21', 104, '2024-11-22 03:26:51', 0, NULL, 1),
(22984, 'Rishi', '4', '9080359436', '6374236659', 'rishithegreat6753@gmail.com', '2002-09-20', 0, '2', '2', 'Shanmuga raj', 'Unemployed', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2411220004', '50', '1', 'upload_files/candidate_tracker/67347281088_ResumeRishiFormat43.pdf', NULL, '1', '2024-11-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not intrested in sales', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-22 05:34:57', 154, '2024-11-22 12:03:24', 0, NULL, 1),
(22985, 'Logesh A', '13', '8608446701', '9514509649', 'rogith.rocks216002@gmail.com', '2002-06-21', 22, '3', '2', 'Anbu S', 'Auto driver', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2411220005', '', '1', 'upload_files/candidate_tracker/87234419972_logeshAresume.pdf', NULL, '1', '2024-11-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-22 05:37:03', 154, '2024-11-22 12:08:12', 0, NULL, 1),
(22986, 'Shakthi Eswaran', '13', '9097233337', '', 'shakthi4089@gmail.com', '2002-03-28', 22, '2', '2', 'M.Gubendran', 'Daily wages', 26000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2411220006', '1', '1', 'upload_files/candidate_tracker/92207376708_mycv2.pdf', NULL, '1', '2024-11-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-22 05:37:29', 104, '2024-11-22 03:37:49', 0, NULL, 1),
(22987, 'Praveen Ravikumar', '13', '6379866113', '', 'praveenravikumar492003@gmail.com', '2003-09-04', 21, '2', '2', 'Parents', 'Business', 35000.00, 1, 0.00, 20000.00, '109/1, chellappa street, otteri,ch -12', '109/1, Chellappa Street, Otteri,Ch -12', '2411220007', '1', '1', 'upload_files/candidate_tracker/82065832990_praveenresume02.pdf', NULL, '1', '2024-11-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-22 05:45:21', 104, '2024-11-22 03:27:44', 0, NULL, 1),
(22988, 'M kalaiyarasi', '6', '7358626652', '', 'joykalai93@gmail.com', '2003-09-16', 21, '2', '2', 'S.murugan', 'Daily wages', 20000.00, 2, 0.00, 18000.00, '147 5th Street kalyanapuram elephant Gate chennai', '147 5th kalyanapuram elephant gate', '2411220008', '45', '1', 'upload_files/candidate_tracker/32372727786_kalaiyarasi.pdf', NULL, '1', '2024-11-22', 0, '', '3', '59', '2024-11-25', 192000.00, '', '3', '2025-04-29', '2', 'Communication Ok Can be trained in ou roles and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-11-25', 1, '2024-11-22 05:49:01', 60, '2024-11-23 06:51:35', 0, NULL, 1),
(22989, 'NAVEEN M', '4', '9498446944', '9750242663', 'naveennaveen40817@gmail.com', '2000-05-19', 24, '2', '2', 'MURUGAN K', 'Farmer', 50000.00, 1, 0.00, 20000.00, 'Dharmapuri', 'Chennai, Ashok Nagar', '2411220009', '50', '1', 'upload_files/candidate_tracker/39331556408_DOC20241114WA0012..pdf', NULL, '1', '2024-11-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-22 05:51:09', 1, '2024-11-22 07:46:44', 0, NULL, 1),
(22990, 'Fathima roja', '6', '6383520107', '9962114030', 'mpfathi445@gmail.com', '2000-07-29', 24, '2', '2', 'Babu', 'Painter', 10000.00, 1, 12000.00, 20000.00, 'Mayiladuthurai', 'Solinganallur', '2411220010', '45', '1', 'upload_files/candidate_tracker/3018131778_Resume202403197787350.pdf', NULL, '1', '2024-11-22', 1, '', '3', '59', '2024-11-25', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can give a try and check in 7days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-11-25', 1, '2024-11-22 05:55:35', 60, '2024-11-23 06:53:34', 0, NULL, 1),
(22991, 'Surendaran k', '5', '9994517201', '', 'Surendaran002@gmail.com', '1999-08-04', 25, '2', '1', 'Anusalini S', 'TNPc', 25000.00, 1, 0.00, 2.50, 'No 6/2 , Dhanakodi Ammal street kodambakka', 'No 6/2 Dhanakodi Ammal street', '2411220011', '50', '1', 'upload_files/candidate_tracker/19522020855_resumesurendaran.pdf', NULL, '1', '2024-11-22', 0, '', '3', '59', '2024-12-02', 192000.00, '', '', '1970-01-01', '1', 'Fresher for our role need to check in training and confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-22 05:55:54', 154, '2024-11-22 05:59:52', 0, NULL, 1),
(22992, 'Harish Balaji Narasimhan', '13', '9791066672', '6382602915', 'harishn605@gmail.com', '2000-12-26', 23, '3', '2', 'Narasimhan A', 'Retired', 25000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2411220012', '', '1', 'upload_files/candidate_tracker/17250892139_Harishwdresume.pdf', NULL, '1', '2024-11-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'marks is less than 80% in maths in both HSC xxamp SSLC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-22 06:02:20', 154, '2024-11-22 04:26:19', 0, NULL, 1),
(22993, 'Shaam S', '6', '9344039748', '9444572616', 'shaam130503@gmail.com', '2003-05-13', 21, '2', '2', 'Siva balan K', 'Worker', 15000.00, 1, 0.00, 15.00, 'Thiruvallur', 'Thiruvallur', '2411220013', '50', '1', 'upload_files/candidate_tracker/89752188804_Resume18062024031814PM.pdf', NULL, '1', '2024-11-22', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication is good but he is not interested in sales his  interested in customer support', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-22 06:07:43', 154, '2024-11-22 06:01:27', 0, NULL, 1),
(22994, 'Abdul Azeez', '6', '9176786188', '', 'abdulazeez30919@gmail.com', '2002-09-14', 22, '2', '1', 'Farook basha', 'Driver', 35000.00, 2, 0.00, 4.30, 'Chennai', 'Chennai', '2411220014', '1', '2', 'upload_files/candidate_tracker/81523772648_azez.pdf', NULL, '1', '2024-11-22', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have exp in calling salary exp is high he need time to confirm', '5', '1', '', '1', '8', '', '2', '2024-12-09', '2', '3', '', '', 'H1027', '', '55645', '5151', '1970-01-01', 1, '2024-11-22 06:33:22', 154, '2024-11-22 06:00:23', 0, NULL, 1),
(22995, 'S. Keerthanan', '6', '7299630073', '9043300299', 'keerthanasathish04@gmail.com', '2004-01-05', 20, '3', '2', 'Satish', 'Business', 15000.00, 0, 0.00, 13000.00, 'Kodungaiyur', 'Kodungaiyur', '2411220015', '', '1', 'upload_files/candidate_tracker/91367698013_s.keerthanaresume..pdf', NULL, '1', '2024-11-22', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'reject - candidate was not ok with communication and not suitable for sales', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-22 07:14:35', 154, '2024-11-22 06:00:51', 0, NULL, 1),
(22996, 'Saraswathy.M', '6', '9043300299', '7299630073', 'saraswathymarisamy123@gmail.com', '2003-11-13', 21, '3', '2', 'Marisamy.N', 'Driver', 8000.00, 1, 0.00, 15000.00, 'Shenoy Nagar', 'Shenoy Nagar', '2411220016', '', '1', 'upload_files/candidate_tracker/15143253903_DOC20241107WA00141.pdf', NULL, '1', '2024-11-22', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She need time to confirm due to rain issues her home is not in good conditions', '5', '1', '', '1', '3', '', '2', '2024-12-09', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-22 07:16:04', 154, '2024-11-22 05:59:34', 0, NULL, 1),
(22997, 'Pasupathi', '6', '6385123485', '9791072903', 'pasupathibca77@gmail.com', '2003-10-02', 21, '2', '2', 'Senthil kumar', 'Hotel incharge', 40000.00, 2, 0.00, 13000.00, '101 pilliyar Kovil street injambakkam Chennai', '101 pilliyar Kovil street injambakkam Chennai', '2411220017', '50', '1', 'upload_files/candidate_tracker/34006816888_CV2024073109051780.pdf', NULL, '1', '2024-11-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'did not attend interview.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-22 07:24:35', 154, '2024-11-22 03:07:59', 0, NULL, 1),
(22998, 'E.Allen Georgena', '6', '6369965557', '', 'georgenaallen18@gmail.com', '2002-05-19', 22, '2', '2', 'E.Noorjahan', 'House wife', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2411220018', '1', '1', 'upload_files/candidate_tracker/57599377229_ALLENGEORGENAE1.pdf', NULL, '1', '2024-11-22', 0, '', '3', '59', '2024-11-25', 168000.00, '', NULL, '2024-12-14', '2', 'Communication Ok Can be trained in our roles need to check in training', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1066', '5151', '2024-11-25', 1, '2024-11-22 07:26:59', 60, '2024-11-25 10:06:30', 0, NULL, 1),
(22999, 'Sharmila', '6', '9003761366', '8610649601', 'sharmil.0098@gmail.com', '1998-07-10', 26, '1', '2', 'D/O Durairaj', 'Farmer', 30000.00, 0, 22000.00, 26000.00, 'Thanjavur', 'Guindy', '2411220019', '', '2', 'upload_files/candidate_tracker/24654668110_SharmilaResume11.pdf', NULL, '1', '2024-11-22', 0, '77929', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication not good and not fit for my team ,', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-22 07:27:40', 154, '2024-11-22 06:01:15', 0, NULL, 1),
(23000, 'Kaviya C', '6', '7010028211', '7812802573', 'kaviyask926@gmail.com', '2004-07-16', 20, '1', '2', 'S.Chinnadurai', 'Dailywagesaa', 20000.00, 2, 14000.00, 18000.00, 'Chinnasalem', 'Dlf, porur', '2411220020', '', '2', 'upload_files/candidate_tracker/63562961971_ResumeKaviyaFormat1.pdf', NULL, '1', '2024-11-22', 0, '55806', '3', '59', '2024-11-30', 168000.00, '', '', '1970-01-01', '2', 'Have 2 months exp in Vizza can give a try and check in 7 days training', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-22 07:29:54', 154, '2024-11-22 05:58:10', 0, NULL, 1),
(23001, 'ASWIN PRASAD M S', '4', '7010600943', '9600253249', 'aswinsenthil702@gmail.com', '2001-04-21', 23, '2', '2', 'SENTHIL KUMAR M', 'Police', 60000.00, 1, 0.00, 20000.00, 'Theni', 'Chennai', '2411220021', '50', '1', 'upload_files/candidate_tracker/15177111483_AswinprasathMSresume.pdf', NULL, '1', '2024-11-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-22 07:37:22', 1, '2024-11-22 07:40:42', 0, NULL, 1),
(23002, 'kamaludeen', '4', '7502321123', '', 'b.kamaludeen22@gmail.com', '2002-08-22', 22, '2', '2', 'bashriya banu', 'home maker', 15000.00, 0, 0.00, 2.50, 'trichirappalli', 'chennai', '2411220022', '50', '1', 'upload_files/candidate_tracker/44200925567_RESUME.pdf', NULL, '3', '2024-11-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-22 07:49:07', 1, '2024-11-22 07:53:50', 0, NULL, 1),
(23003, 'Anitha V', '4', '9791372634', '', 'anithavivekananthan937@gmail.com', '2002-09-27', 22, '6', '2', 'Vivekananthan', 'Farmer', 25000.00, 2, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2411220023', '', '1', 'upload_files/candidate_tracker/52075853269_Suryasmiresume202411031440530000.pdf', NULL, '1', '2024-11-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-22 08:05:04', 1, '2024-11-22 08:08:11', 0, NULL, 1),
(23004, 'Yeturi Vasantha', '6', '8667782230', '9176254573', 'vasantha123v@gmail.com', '1997-04-19', 27, '2', '1', 'Raja', 'Self-employed', 30000.00, 1, 20000.00, 25000.00, 'Zakeer hussain nagar near water tank Nellore', 'Valmik street periyar nagar Pallikaranai Chennai', '2411220024', '50', '2', 'upload_files/candidate_tracker/35376526638_VasanthaResume.docx', NULL, '1', '2024-11-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-22 09:28:11', 154, '2024-11-22 06:00:34', 0, NULL, 1),
(23005, 'Sooriyamoorthi P', '6', '6383364166', '', 'suryazen0000@gmail.com', '2002-05-15', 22, '2', '2', 'Padmanathan', 'Shop', 40000.00, 2, 0.00, 300000.00, 'Trichy', 'Chennai', '2411220025', '1', '1', 'upload_files/candidate_tracker/56870074961_resume.investment.pdf', NULL, '2', '2024-11-25', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidated communication and performance is not good ,also he is very slow and he is not interested in out sourcing call', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55666', '5151', '1970-01-01', 1, '2024-11-22 10:58:02', 154, '2024-11-25 06:31:01', 0, NULL, 1),
(23006, 'Divya Perumal', '20', '9962799313', '9884858334', 'pdivya1994@gmail.com', '1994-10-14', 30, '2', '1', 'Dinesh', 'Process expert', 50000.00, 0, 306000.00, 350000.00, 'Chennai', 'Chennai', '2411230001', '11', '2', 'upload_files/candidate_tracker/6260980446_divyaupdatedresume1.docx', NULL, '1', '2024-11-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-23 05:11:20', 1, '2024-11-23 05:21:39', 0, NULL, 1),
(23007, '', '0', '9788999965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411230002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-23 05:42:21', 0, NULL, 0, NULL, 1),
(23008, 'Nasrin banu', '6', '9043746071', '6381148804', 'nasrinbanu1258@gmail.com', '2003-02-28', 21, '2', '1', 'Mohammed haneef', 'marketing sales Department', 15000.00, 1, 18000.00, 18000.00, 'Thirumulaivoyal', 'Thirumulaivoyal', '2411230003', '57', '2', 'upload_files/candidate_tracker/17255878657_nasrin.docx', NULL, '1', '2024-11-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected -having experience in voice process ,interested in sales also ,ready for immediate joining ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-23 07:45:45', 154, '2024-11-23 04:10:30', 0, NULL, 1),
(23009, 'Joseph raj', '3', '9176008661', '9789897582', 'josephd31122002@gmail.com', '2002-12-31', 21, '3', '2', 'Sagayamary', 'Self employed', 15000.00, 0, 0.00, 20000.00, 'Pallavaram', 'Pallavaram', '2411230004', '', '1', 'upload_files/candidate_tracker/77398624366_Resume05102023101817PM.pdf', NULL, '1', '2024-11-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-23 07:47:41', 1, '2024-11-23 07:51:55', 0, NULL, 1),
(23010, 'Divya Selvi. S', '6', '6379091574', '', 'judithdivya02@gmail.com', '2002-05-20', 22, '2', '2', 'Selvamani. C (late)', '-', 20000.00, 2, 0.00, 15000.00, 'Annanur', 'Annanur', '2411230005', '57', '1', 'upload_files/candidate_tracker/45107894084_DOC20240910WA0001..pdf', NULL, '1', '2024-11-23', 0, '', '3', '59', '2024-12-06', 168000.00, '', '3', '2025-03-31', '2', 'Communication Ok fresher Candidate can give a try and check n training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-12-06', 1, '2024-11-23 07:48:19', 60, '2024-12-06 10:15:20', 0, NULL, 1),
(23011, 'E. parthasaray', '6', '9840604610', '9936066703', 'e.parthasarathy1234@gamil.com', '2003-05-08', 21, '2', '2', 'Elango. M', 'hotel', 35000.00, 0, 0.00, 20000.00, 'rent house', '321/4th block 99 th Street muthamizh nagar', '2411230006', '50', '1', 'upload_files/candidate_tracker/70085209641_sarathyresume.pdf', NULL, '1', '2024-11-23', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'REJECTED- CANDIDATE WAS NOT GOOD AT COMMUNICATION ,LONG  DISTANCE ASKING MORE SALARY', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-23 07:53:26', 154, '2024-11-23 04:10:18', 0, NULL, 1),
(23012, 'Sakthi', '6', '7449067043', '9150549087', 'sakthisakthi4015@gmail.com', '2004-04-01', 20, '2', '2', 'Mariyammal', 'Hotel', 90000.00, 1, 0.00, 16000.00, '8/176 pullukattuvalasai,tenkasi', 'Velachery', '2411230007', '1', '1', 'upload_files/candidate_tracker/850115873_sakthi.pdf', NULL, '1', '2024-11-25', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate only looking for telecaling only , not go for out side call so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-23 01:07:59', 154, '2024-11-25 06:30:46', 0, NULL, 1),
(23013, '', '0', '9043677820', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-25 03:54:53', 0, NULL, 0, NULL, 1),
(23014, 'ARCHANA R', '4', '6383774384', '', 'archanaravi0402@gmail.com', '2002-07-04', 22, '2', '2', 'Ravi S', 'Fresher', 12000.00, 0, 0.00, 15000.00, 'Thiruvarur', 'Thiruvarur', '2411250002', '1', '1', 'upload_files/candidate_tracker/96172822533_Archanaupdatedresume.docx', NULL, '1', '2024-11-25', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-11-25 04:33:06', 154, '2024-11-25 06:29:15', 0, NULL, 1),
(23015, 'Vignesh.j', '6', '6381879962', '8903967061', 'vj330076@gmail.com', '2002-08-09', 22, '2', '2', 'Jayaraman.s', 'Hotel server', 12000.00, 1, 0.00, 15000.00, 'Erode', 'Chennai', '2411250003', '1', '1', 'upload_files/candidate_tracker/32047073456_J.vigneshresume202408281450420000.pdf', NULL, '1', '2024-11-25', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected-not even speaking at all nervous ,not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-25 04:41:58', 154, '2024-11-25 06:30:20', 0, NULL, 1),
(23016, 'Tamilvanan S', '13', '9363232930', '7397714818', 'tamilvanan.officials@gmail.com', '2003-07-13', 21, '3', '2', 'Sakthivel N', 'Daily wages', 35000.00, 1, 0.00, 18000.00, '90/111, New Street, cantonment, Trichy.', 'Gomathi illama, Madipakkam, ullagaram,', '2411250004', '', '1', 'upload_files/candidate_tracker/65084813566_ITCareerResume.pdf', NULL, '1', '2024-11-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-25 04:49:03', 104, '2024-11-26 11:49:45', 0, NULL, 1),
(23017, 'Hema varshini', '6', '9150446831', '', 'hemavarshini101263@gmail.com', '2000-04-12', 24, '2', '1', 'Yuvaraj s', 'Southern railways', 600000.00, 1, 18000.00, 20000.00, 'Aynavaram', 'Chennai', '2411250005', '1', '2', 'upload_files/candidate_tracker/83889410976_HEMAVARSHINI1.pdf', NULL, '2', '2024-11-25', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-11-25 04:56:22', 154, '2024-11-25 06:29:41', 0, NULL, 1),
(23018, 'Manikandan S', '6', '8925271593', '8838722114', 'Maniprasanth2k@gmail.com', '2003-07-22', 21, '2', '2', 'Saravanan M', 'Sales', 120000.00, 1, 0.00, 18000.00, 'Thiruvotriyur', '-Thiruvotriyur', '2411250006', '50', '1', 'upload_files/candidate_tracker/18862110991_ManiResume11.pdf', NULL, '1', '2024-11-25', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'silent person skills Average', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-25 04:59:49', 154, '2024-11-25 06:29:05', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23019, 'Mohamed Fazil S', '13', '9597036512', '', 'smohamedfazil16@gmail.com', '2001-02-11', 23, '3', '2', 'Shajahan', 'Labour', 30000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Tenkasi', '2411250007', '', '1', 'upload_files/candidate_tracker/88027060025_Fazilresume.pdf', NULL, '1', '2024-11-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-25 05:02:02', 1, '2024-11-25 05:06:31', 0, NULL, 1),
(23020, 'Mohamed Marwan', '13', '6369850437', '6382535107', 'almarwan387@gmail.com', '2000-11-28', 23, '5', '1', 'Mohamed ibrahim', 'farmer', 20000.00, 1, 0.00, 15000.00, 'ramnathapuram', 'chennai', '2411250008', '', '1', 'upload_files/candidate_tracker/53326393635_Screenshot20240508at10.01.08PM.pdf', NULL, '1', '2024-11-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-25 05:02:21', 1, '2024-11-25 05:06:57', 0, NULL, 1),
(23021, 'Besh nirenjeyan M', '31', '8015605350', '', 'beshnirenjeyan@gmail.com', '2003-08-10', 21, '2', '2', 'Muthupandian', 'Advocate', 40000.00, 1, 0.00, 250000.00, 'Sivaganga', 'Medavakkam, Chennai', '2411250009', '1', '1', 'upload_files/candidate_tracker/19897467906_DOC20240925WA0001..pdf', NULL, '1', '2024-11-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-25 05:10:04', 104, '2024-11-26 11:47:29', 0, NULL, 1),
(23022, 'Prem T', '13', '9952760572', '9360104074', 'Premt641@gmail.com', '2000-12-10', 23, '3', '2', 'Thangaparagasam R', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Chennai', '2411250010', '', '1', 'upload_files/candidate_tracker/80465995453_PREM.TFRESHERCVResume1.pdf', NULL, '1', '2024-11-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-25 05:10:05', 1, '2024-11-25 05:19:36', 0, NULL, 1),
(23023, 'Sanjay E', '13', '7397098875', '', 'Sanjayelumalai02@gmail.com', '2002-05-10', 22, '2', '2', 'G Elumalai', 'Taylor', 27000.00, 1, 0.00, 200000.00, 'Tiruttani', 'Chennai', '2411250011', '1', '1', 'upload_files/candidate_tracker/90358063505_SanjayResume.pdf', NULL, '1', '2024-11-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-25 05:47:10', 104, '2024-11-26 11:45:42', 0, NULL, 1),
(23024, 'Kishore', '6', '9176336908', '9941283970', 'kishoreravi100@gmail.com', '2000-09-11', 24, '2', '2', 'Ravi.v', 'Tea shop', 50000.00, 1, 0.00, 16000.00, 'No 1 A 5 Street Vinobaj Nagar Hasthinapuram Chro', '1 A 5 St Vinobaj Nagar Hasthinapuram Chrome', '2411250012', '42', '1', 'upload_files/candidate_tracker/69588727924_Kishorecv.pdf', NULL, '1', '2024-11-25', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected- not having proper communication , not interested in sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-25 05:48:32', 154, '2024-11-25 06:30:07', 0, NULL, 1),
(23025, 'R.Suryagopal', '6', '9940597218', '9940567789', 'suryagopal26@gmail.com', '2003-07-21', 21, '2', '2', 'Ramu', 'No', 30000.00, 3, 0.00, 16000.00, 'Alandhu road Jothi ammal nager saidapet', 'Alandhu road Jothi ammal nager saidapet', '2411250013', '57', '1', 'upload_files/candidate_tracker/39895976450_SuryaGopal.pdf', NULL, '1', '2024-11-25', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - candidate was not ok with communication , notinterested in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-25 05:51:46', 154, '2024-11-25 06:29:57', 0, NULL, 1),
(23026, 'Ilapuram Kavya', '6', '9573798194', '9701603927', 'kavyasree2923@gmail.com', '2009-11-25', 0, '1', '2', 'I Vani', 'Beautician', 35000.00, 1, 0.00, 18000.00, 'Venkatagiri', 'BTM layout', '2411250014', '', '1', 'upload_files/candidate_tracker/32200551940_IKavyaResume16.pdf', NULL, '1', '2024-11-25', 0, '77988', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-25 06:15:34', 1, '2024-11-25 06:20:07', 0, NULL, 1),
(23027, 'Priya dharshini s', '6', '8939699233', '', 'sspriya2503@gmail.com', '2003-10-25', 21, '2', '2', 'Sekar', 'Carpenter', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2411250015', '1', '1', 'upload_files/candidate_tracker/72534058303_priyass.pdf', NULL, '1', '2024-11-25', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-11-25 06:17:03', 154, '2024-11-25 06:29:26', 0, NULL, 1),
(23028, 'Monish .M', '6', '7695893884', '9841617540', 'monishamonim22@gmail.com', '2003-10-22', 21, '2', '2', 'g.magendiran/ M.senbaga valli', 'Relationship management', 9000.00, 0, 0.00, 16000.00, 'Vyasarpadi', 'Vyasarpadi', '2411250016', '57', '1', 'upload_files/candidate_tracker/39587981290_MonishaM.pdf', NULL, '1', '2024-11-25', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-25 07:42:19', 154, '2024-11-25 06:28:56', 0, NULL, 1),
(23029, 'Nandhini P', '6', '6374154514', '8778281788', 'nandhinivelan226@gmail.com', '2002-06-22', 22, '2', '2', 'R. Palanivelan R. Kanmani', 'Technician', 500000.00, 1, 0.00, 15000.00, 'Uthangarai', 'Anna nagar East', '2411250017', '50', '1', 'upload_files/candidate_tracker/11088748959_NANDHINIRESUME1.pdf', NULL, '1', '2024-11-25', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication an voice ok but she interested in international voice process , and loking for customer service , and after4 months join the mba so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-25 07:42:25', 154, '2024-11-25 06:30:36', 0, NULL, 1),
(23030, 'v b navaneethan', '6', '6381928590', '', 'Naveen.15murugan@gmail.com', '2002-06-22', 22, '2', '2', 'balamurugan', 'echanic', 20000.00, 1, 0.00, 16000.00, 'udumalpet', 'chennai', '2411250018', '50', '1', 'upload_files/candidate_tracker/57032958317_Navaneethanfresher.pdf', NULL, '1', '2024-11-25', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-25 07:49:48', 154, '2024-11-25 06:28:46', 0, NULL, 1),
(23031, 'Sivamurugan S', '6', '9659671826', '', 'kittushiva292@gmail.com', '2000-03-18', 24, '2', '2', 'P SIVASAKTHIVEL', 'Daily wages', 84000.00, 3, 0.00, 16000.00, 'Vriddhachalam', 'Vriddhachalam', '2411250019', '57', '1', 'upload_files/candidate_tracker/92266868336_SIVAMURUGAN.SRESUME.pdf', NULL, '1', '2024-11-25', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-25 09:10:36', 154, '2024-11-25 06:28:35', 0, NULL, 1),
(23032, 'Mughilvannan V', '13', '8220944101', '7305083466', 'mughilvannan5@gmail.com', '2000-09-23', 24, '2', '2', 'Venkatesan', 'Farmer', 15000.00, 1, 0.00, 300000.00, 'Kallakurichi', 'Chennai', '2411250020', '1', '1', 'upload_files/candidate_tracker/83103324755_MughilvannanVResume1.pdf', NULL, '1', '2024-11-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-25 10:05:53', 104, '2024-11-26 11:46:05', 0, NULL, 1),
(23033, 'MUKESH C', '6', '9360466753', '', 'mukeshrooney20@gmail.com', '2003-09-24', 21, '2', '2', 'CHANDRASEKARAN', 'Painting contractor', 40000.00, 1, 0.00, 14000.00, 'No 115 6th Street sharama nagar', 'Chennai', '2411250021', '50', '1', 'upload_files/candidate_tracker/1617309693_Mukeshresume.pdf', NULL, '1', '2024-11-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected -candidate was interested in sales ,confidence  in speech also ok for immediate joining', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-25 01:04:37', 153, '2024-11-27 06:27:39', 0, NULL, 1),
(23034, 'Siva M', '2', '9360104074', '8098987006', 'sivamani072001@gmail.com', '2001-07-08', 23, '6', '2', 'manikandan k', 'Farmer', 45000.00, 1, 450000.00, 700000.00, 'ARIYALUR', 'ARIYALUR', '2411250022', '', '2', 'upload_files/candidate_tracker/26135316071_Sivanodejsdeveloper.pdf', NULL, '2', '2024-12-07', 60, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-25 02:56:34', 1, '2024-11-25 03:00:08', 0, NULL, 1),
(23035, 'Tharani', '6', '6381382800', '', 'tharanisangar20@gmail.com', '2000-03-01', 24, '2', '2', 'Sankaralingam', 'Farmer', 800000.00, 1, 17000.00, 200000.00, 'Tenkasi', 'Tenkasi', '2411260001', '1', '2', 'upload_files/candidate_tracker/2329253433_Tharanires.pdf', NULL, '1', '2024-11-26', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'recejected - having less confidence in speech ,not suitable for sales                                                                                                                                        ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-26 03:45:09', 154, '2024-11-26 05:26:42', 0, NULL, 1),
(23036, 'Sridhar R', '6', '9629797561', '', 'srisridhar03rv93@gmail.com', '2000-12-03', 23, '3', '2', 'Viji R', 'Former', 15000.00, 1, 0.00, 15000.00, 'Ulundurpet', 'West mambalam', '2411260002', '', '1', 'upload_files/candidate_tracker/62624185565_SridharRResume.pdf', NULL, '1', '2024-11-26', 0, '', '3', '59', '2024-11-27', 192000.00, '', '3', '2024-12-02', '2', 'Communication Ok fresher 2 yrs gap need to train a lot and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-11-27', 1, '2024-11-26 05:59:07', 60, '2024-11-26 04:28:26', 0, NULL, 1),
(23037, 'Bharath Kumar B', '2', '8072516008', '', 'bharathboopathi51550@gmail.com', '2000-02-21', 24, '2', '2', 'Boopathy SD', 'Sale man', 350000.00, 2, 0.00, 300000.00, 'Kanchipuram', 'Kanchipuram', '2411260003', '1', '1', 'upload_files/candidate_tracker/49820748600_DocumentfromNegative.pdf', NULL, '1', '2024-11-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-26 06:14:45', 104, '2024-11-26 12:28:54', 0, NULL, 1),
(23038, 'Naresh', '6', '9962156772', '', 'Nareshdhoni45@gmail.com', '1999-10-08', 25, '2', '2', 'A.gopal', 'Watch man', 40000.00, 1, 5.00, 12000.00, 'Mylapore', 'Mylapore', '2411260004', '50', '2', 'upload_files/candidate_tracker/89333761318_RESUMENARESH.docx', NULL, '1', '2024-11-26', 5, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', 'not in formals', '', '', '', '', '', '1970-01-01', 1, '2024-11-26 07:13:32', 154, '2024-11-26 03:02:01', 0, NULL, 1),
(23039, 'Sujitha', '6', '6369287669', '8883450552', 'rsujitharsujitha40@gmail.com', '1998-10-05', 26, '2', '2', 'R anitha', 'Home maker', 25000.00, 2, 0.00, 20000.00, 'Madurai', 'Chennai', '2411260005', '50', '1', 'upload_files/candidate_tracker/98314610973_SujithaCompleteresume2024.pdf', NULL, '1', '2024-11-26', 0, '', '3', '59', '2024-12-10', 168000.00, '', '5', '1970-01-01', '2', 'Communication ok Can be trained in our roles need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '2024-12-10', 1, '2024-11-26 07:46:23', 60, '2024-12-06 11:09:54', 0, NULL, 1),
(23040, 'M.KAVIYARASU', '6', '9361476180', '', 'Mkavi@gmail.com', '2001-03-13', 23, '2', '2', 'S.Mahesh', 'Conductor', 40.00, 2, 0.00, 18.00, 'Tenkasi', 'Tambaram', '2411260006', '1', '1', 'upload_files/candidate_tracker/55749055289_Resumepdf.pdf', NULL, '1', '2024-11-26', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - candidate was slow at speaking not active and long distance', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-26 07:47:19', 154, '2024-11-26 05:26:32', 0, NULL, 1),
(23041, 'Lokesh sivakumar', '6', '8124711299', '', 'lokilxki2003@gmail.com', '2003-09-15', 21, '2', '2', 'Siva kumar. B', 'Tamil nadu fiber net copration (OA)', 12000.00, 1, 0.00, 20000.00, 'Valasaravakam', 'Valasaravakam', '2411260007', '1', '1', 'upload_files/candidate_tracker/12152503936_LokeshResume.pdf', NULL, '1', '2024-11-27', 0, '', '3', '59', '2024-12-02', 192000.00, '', '3', '2024-12-02', '2', 'Fresher open for Sales Can be trained in our roles need to check in training and confirm', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'CA130', '5151', '2024-12-02', 1, '2024-11-26 11:15:51', 60, '2024-12-02 06:02:36', 0, NULL, 1),
(23042, 'Akansha Lautre', '4', '9834606979', '9146410763', 'akanshalautre123@gmail.com', '2009-03-09', 15, '2', '2', 'Parent', 'Self employed', 30000.00, 2, 0.00, 25000.00, 'Nagpur', 'Hyderabad', '2411260008', '50', '2', 'upload_files/candidate_tracker/52027826658_CV2024111019291981.pdf', NULL, '3', '2024-11-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-26 12:53:59', 1, '2024-11-26 12:59:11', 0, NULL, 1),
(23043, 'Mahalakshmi', '6', '9080106118', '6380047628', 'mahaganesh266@gmail.com', '2004-06-26', 20, '2', '2', 'Ganesamoorthy', 'Carpenter', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2411270001', '57', '1', 'upload_files/candidate_tracker/59557512185_460632736566421.pdf', NULL, '1', '2024-11-27', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-27 05:08:20', 153, '2024-11-27 06:24:34', 0, NULL, 1),
(23044, 'G.sundar', '6', '7530021578', '', 'sundarsk6879@gmail.com', '2001-08-06', 23, '2', '2', 'G.kannathal', 'House wife', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Tnagar', '2411270002', '50', '1', 'upload_files/candidate_tracker/9327543477_sundarresume.docx', NULL, '1', '2024-11-27', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and convincing skills is low and interested in Customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-11-27 05:29:38', 153, '2024-11-27 06:28:30', 0, NULL, 1),
(23045, 'KV Gowtham', '4', '8825483545', '', 'victorygowtham2004@gmail.com', '2004-03-04', 20, '2', '2', 'Vinayagam', 'Optician', 25000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2411270003', '50', '1', 'upload_files/candidate_tracker/36095231792_kvGOWTHAMpdf.pdf', NULL, '1', '2024-11-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-27 05:55:25', 1, '2024-11-27 06:02:56', 0, NULL, 1),
(23046, 'LEELARAAM', '6', '6381392520', '9677286130', 'mleelaraam@gmail.com', '2001-04-24', 23, '2', '2', 'MURALI KRISHNAN', 'DRIVER', 30000.00, 1, 0.00, 16000.00, 'vetrinagar, chennai', 'chennai.', '2411270004', '50', '1', 'upload_files/candidate_tracker/85942099495_LEELARAAMRESUME.2.pdf', NULL, '1', '2024-11-27', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-27 06:52:33', 153, '2024-11-27 06:28:07', 0, NULL, 1),
(23047, 'Danusha.S', '6', '9597379655', '', 'danusha12902@gmail.com', '2002-09-12', 22, '2', '2', 'Selvakumar', 'Painter', 15000.00, 1, 18000.00, 20000.00, 'Mahendra city', 'Mehendra city', '2411270005', '1', '2', 'upload_files/candidate_tracker/37444831073_s.danusharesume.pdf', NULL, '1', '2024-11-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SELECTED - candidate have already experienced in sales ,having good communication and confidence and also syed sir suggested to hire at 14k as salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-27 07:08:48', 60, '2024-11-29 06:55:39', 0, NULL, 1),
(23048, 'PRANESH D', '6', '8939287656', '9751022457', 'vismipranesh@gmail.com', '2003-06-08', 21, '2', '2', 'DHANDAPANI', 'Daily wages', 300000.00, 1, 204000.00, 210000.00, 'Tirupur', 'Chennai', '2411270006', '50', '2', 'upload_files/candidate_tracker/82859904831_CV2024111913061616.pdf', NULL, '1', '2024-11-27', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not suitable for sales profile,communication not good, 6m exp. product not knowledge also not good, pre work exp.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-11-27 07:25:42', 153, '2024-11-27 06:27:56', 0, NULL, 1),
(23049, 'Mani C', '13', '7810072196', '9345891963', 'manismanis3224@gmail.com', '2002-04-17', 22, '3', '2', 'Chakkaraivel', 'Farmer', 30000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Chennai', '2411270007', '', '1', 'upload_files/candidate_tracker/6086821473_ManiS1.pdf', NULL, '1', '2024-11-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-27 08:03:30', 154, '2024-11-27 03:33:37', 0, NULL, 1),
(23050, 'Rohith', '6', '9080949141', '8190861327', 'rohithd06dollar@gmail.com', '2001-09-28', 23, '2', '2', 'Dasarathan', 'Contracted', 15000.00, 1, 18500.00, 20000.00, 'Velachery', 'Velachery', '2411270008', '45', '2', 'upload_files/candidate_tracker/50189492815_Rohithresumeformerge.pdf', NULL, '1', '2024-11-27', 3, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', 'did not attend', '', '', '', '', '', '1970-01-01', 1, '2024-11-27 09:05:23', 154, '2024-11-27 03:51:24', 0, NULL, 1),
(23051, 'C.semaan', '6', '8667343487', '7449136683', 'cuterascalsemaan@gmail.com', '2002-03-25', 22, '2', '2', 'Chithirai selvam', 'Shop', 20000.00, 1, 18500.00, 20000.00, 'Velachery', 'Velachery', '2411270009', '45', '2', 'upload_files/candidate_tracker/44259839422_SEMAANRESUME11.pdf', NULL, '1', '2024-11-27', 3, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', 'did not attend', '', '', '', '', '', '1970-01-01', 1, '2024-11-27 09:05:45', 154, '2024-11-27 03:51:19', 0, NULL, 1),
(23052, 'VINOTHRAJA R', '13', '6382999845', '', 'vinothking21r@gmail.com', '2009-11-27', 0, '3', '2', 'RABORT A', 'Shop keeper', 36000.00, 1, 0.00, 25000.00, 'erode', 'VILLIVAKKAM, CHENNAI', '2411270010', '', '1', 'upload_files/candidate_tracker/97789856058_VINOTHRAJARESUME.pdf', NULL, '1', '2024-11-27', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-11-27 09:28:06', 154, '2024-11-27 03:33:45', 0, NULL, 1),
(23053, 'Vasanth M', '6', '6384524856', '8248779892', 'vasanth242002pvm@gmail.com', '2002-01-24', 22, '2', '2', 'Muralidass', 'Dailywages', 25000.00, 2, 0.00, 20000.00, 'Kanchipuram', 'Poonamalle', '2411270011', '50', '1', 'upload_files/candidate_tracker/42338356899_vasanthresumeNT1.pdf', NULL, '1', '2024-11-28', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-27 02:43:05', 104, '2024-11-28 06:46:04', 0, NULL, 1),
(23054, 'Mohanamala S S', '6', '9361355291', '', 'mohanav2114@gmail.com', '2002-05-21', 22, '2', '2', 'Selvakumar', 'Cashier', 50000.00, 1, 0.00, 15000.00, 'Chennai,Kolathur', 'Chennai', '2411280001', '50', '1', 'upload_files/candidate_tracker/98456244206_mohanamalaresume1.pdf', NULL, '1', '2024-11-28', 0, '', '3', '59', '2024-12-02', 168000.00, '', '5', '1970-01-01', '1', 'Fresher Employee need to train a lot will check and confirm in the training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-12-02', 1, '2024-11-28 04:59:50', 60, '2024-12-06 10:56:01', 0, NULL, 1),
(23055, 'Vanitha k', '6', '9790454618', '', 'vanithakalvikathan2702@gmail.com', '2002-11-27', 22, '2', '2', 'Saroja k', 'Flower shop', 72000.00, 2, 0.00, 300000.00, 'Ashok pillar chennai', 'Ashok pillar chennai', '2411280002', '50', '1', 'upload_files/candidate_tracker/72874239968_Vanitharesume.Pdf1111.pdf', NULL, '2', '2024-11-28', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication not good and just ne month looking for job after 1 month go for native place and try for it related job so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-28 05:03:20', 104, '2024-11-28 06:46:17', 0, NULL, 1),
(23056, 'Mohammed Waqas', '6', '7200308907', '7904892013', 'www.waqasboss@gmail.com', '1998-02-05', 26, '2', '2', 'Noorullah', 'Shoe maker', 25000.00, 2, 18.50, 30000.00, 'Rahaman nagar 4th Street khaderpet Ambur', 'Lala kutty street periyamet chennai', '2411280003', '50', '2', 'upload_files/candidate_tracker/52999922938_WaqasResume.pdf', NULL, '1', '2024-11-28', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-11-28 05:51:13', 104, '2024-11-28 06:36:31', 0, NULL, 1),
(23057, 'Jagadesh R S', '13', '8939050021', '9585666336', 'jaga639@gmail.com', '2000-11-02', 24, '3', '2', 'Kanimozhi S', 'Homemaker', 50000.00, 1, 0.00, 300000.00, 'TIRUPPUR', 'Chennai', '2411280004', '', '1', 'upload_files/candidate_tracker/92593135889_JagadeshRSresumedoc3.pdf', NULL, '1', '2024-11-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-28 06:10:52', 1, '2024-11-28 06:14:14', 0, NULL, 1),
(23058, 'E. N. Keerthivasan', '6', '8675196751', '', 'enkeerthivasan2000@gmail.com', '2000-12-06', 23, '2', '2', 'Nadarajan', 'Farmer', 20000.00, 4, 0.00, 15000.00, 'Maduranthagam', 'Maduranthagam', '2411280005', '1', '1', 'upload_files/candidate_tracker/62701918012_Keerthivasanresumenew.pdf', NULL, '1', '2024-11-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '', '', '1970-01-01', 1, '2024-11-28 06:30:21', 154, '2024-11-28 12:36:51', 0, NULL, 1),
(23059, 'Mohan raj', '6', '6383162413', '', 'rajmohan6432@gmail.com', '2000-08-01', 24, '2', '2', 'Sankaran', 'Cooli', 9000.00, 1, 0.00, 15000.00, 'Maduranthagam', 'Maduranthagam', '2411280006', '1', '1', 'upload_files/candidate_tracker/91638161631_MOHANRESUME2.pdf', NULL, '1', '2024-11-28', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - candidate was not fluency in  interview ,long distance  not sure about stability', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2024-11-28 06:30:24', 104, '2024-11-28 06:46:29', 0, NULL, 1),
(23060, 'ajay kumar', '31', '6382039194', '', 'ajaykumar.raja3006@gmail.com', '2004-02-06', 20, '3', '2', 'malathi', 'farmar', 60000.00, 1, 0.00, 15000.00, 'thennagudi main road sirkali', 'kodambbakam chennai', '2411280007', '', '1', 'upload_files/candidate_tracker/46123682519_ajay.pdf', NULL, '1', '2024-11-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-28 06:34:39', 1, '2024-11-28 06:49:10', 0, NULL, 1),
(23061, 'G.Lokesh', '31', '9363028244', '', 'gurulokesh563@gmail.com', '2003-10-12', 21, '3', '2', 'Gurunathan', 'Farmer', 15000.00, 1, 0.00, 25000.00, '3/352,south street,Thiruvarur(dt), 609501)', 'Palakarar street, Kodambakkam', '2411280008', '', '1', 'upload_files/candidate_tracker/79835430803_Lokeshresume.pdf', NULL, '1', '2024-11-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-28 06:36:25', 1, '2024-11-28 06:50:06', 0, NULL, 1),
(23062, 'Karmiya.B', '6', '9791413854', '', 'karmiyab@gmail.com', '2000-09-12', 24, '1', '2', 'R.Baskaran', 'Farmer', 75000.00, 2, 0.00, 15000.00, 'Ekkatuthangal', 'Ekkatuthangal', '2411280009', '', '1', 'upload_files/candidate_tracker/15791231573_karmiya.B.pdf', NULL, '1', '2024-11-28', 0, '77901', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication not good and she not handle presure so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-11-28 06:36:59', 104, '2024-11-28 06:51:38', 0, NULL, 1),
(23063, 'Arul', '31', '8072873550', '', 'Arulkumar.2540@gmail.com', '2004-05-06', 20, '3', '2', 'Sekar', 'Farmer', 45000.00, 1, 0.00, 7000.00, 'Thiruvarur', 'Kodambakkam', '2411280010', '', '1', 'upload_files/candidate_tracker/11815473922_ARUL2.pdf', NULL, '1', '2024-11-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-28 06:44:36', 1, '2024-11-28 06:47:29', 0, NULL, 1),
(23064, 'Hariharan.R', '4', '9940669463', '', 'maarihari2@gmail.com', '1998-04-06', 26, '2', '2', 'T.Rajendran', 'Private transport', 40000.00, 1, 23500.00, 25000.00, 'Pallavaram', 'Pallavaram', '2411280011', '50', '2', 'upload_files/candidate_tracker/93651967070_HariHaranResume.docx1121.pdf', NULL, '1', '2024-11-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-28 07:02:36', 1, '2024-11-28 07:04:36', 0, NULL, 1),
(23065, 'Riyaz Ahamed S', '13', '9790422043', '', 'riyazahamedsana@gmail.com', '2002-09-13', 22, '2', '2', 'Sanavullah', 'Died', 96000.00, 1, 0.00, 11000.00, 'Trichy', 'Chennai', '2411280012', '1', '1', 'upload_files/candidate_tracker/99441711683_RiyazCV1.pdf', NULL, '1', '2024-11-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-11-28 07:42:00', 104, '2024-11-28 03:31:49', 0, NULL, 1),
(23066, 'Swetha', '11', '6379106181', '9944019944', 'swethasuresh0502@gmail.com', '2000-11-14', 24, '2', '2', 'Suresh Kumar', 'Advocate', 30000.00, 1, 0.00, 5000.00, 'Thiruvallur', 'Thiruvallur', '2411280013', '1', '1', 'upload_files/candidate_tracker/66481910846_SWETHAResumeUpdated.pdf', NULL, '1', '2024-11-28', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Mainly focusing on stipend', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '77778', '55605', '1970-01-01', 1, '2024-11-28 08:01:46', 104, '2024-11-28 06:45:32', 0, NULL, 1),
(23067, 'Mohammed Tharick k', '4', '7448839259', '9500456374', 'mohammedtharick26@gmail.com', '2003-01-12', 21, '2', '2', 'Kather Ibrahim M', 'Labour', 10000.00, 2, 0.00, 18000.00, 'Tindivanam', 'Chennai', '2411280014', '50', '1', 'upload_files/candidate_tracker/30431920112_updatedresume.pdf', NULL, '1', '2024-11-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-28 11:45:36', 1, '2024-11-28 11:52:57', 0, NULL, 1),
(23068, 'RUBINI M', '33', '8667489282', '9486319632', 'rubinimohandoss@gmail.com', '2002-08-14', 22, '5', '2', 'MOHANDOSS', 'Farmer', 20000.00, 0, 0.00, 25000.00, 'Thanjavur', 'Chennai', '2411280015', '', '1', 'upload_files/candidate_tracker/60292054978_RUBINI.pdf', NULL, '1', '2024-11-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-28 02:44:16', 1, '2024-11-28 04:59:23', 0, NULL, 1),
(23069, 'V. selva priya', '6', '8525974476', '6369592534', 'Ssri78722@gmail.com', '2004-07-09', 20, '2', '2', 'M.mukilan', 'Freshers', 80000.00, 2, 0.00, 14000.00, 'Bigstreet, triplicane 600005', 'Bigstreet triplicane', '2411280016', '1', '1', 'upload_files/candidate_tracker/12561766303_Resume1.docx202408251010380000.pdf', NULL, '3', '2024-11-29', 0, '', '3', '59', '2024-12-02', 168000.00, '', '3', '2025-04-14', '1', 'communication Ok Fresher for our roles can give a try ancd check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '2024-12-02', 1, '2024-11-28 03:35:05', 60, '2024-12-02 06:04:03', 0, NULL, 1),
(23070, 'sowmiya v', '5', '8056171183', '7305949810', 'sowmiyavijayakumar11@gmail.com', '1993-09-28', 31, '2', '2', 'bhavanivijayakumar', 'house keeping', 18000.00, 0, 15000.00, 18000.00, 'triplicane', 'tiplicane', '2411290001', '45', '2', 'upload_files/candidate_tracker/24219427138_Sowmiya.pdf', NULL, '1', '2024-11-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-11-29 04:27:27', 104, '2024-11-29 11:55:42', 0, NULL, 1),
(23071, 'Divya v m', '4', '9176034647', '9600134647', 'Vdivya15@rocketmail.com', '1990-08-10', 34, '6', '2', 'Sumathi', 'House wife', 20000.00, 1, 0.00, 25000.00, 'Royapettah', 'Royapettah', '2411290002', '', '2', 'upload_files/candidate_tracker/95039851650_DIVYACASRESUME.pdf', NULL, '1', '2024-11-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-29 04:57:00', 1, '2024-11-29 05:30:53', 0, NULL, 1),
(23072, 'Mohammed Rizwan', '6', '9043261851', '', 'rizmohammed407@gmail.com', '2003-03-15', 21, '2', '2', 'Riyas', 'Driver', 30000.00, 1, 0.00, 2.00, 'New washermenpet, Chennai', 'New washermenpet, Chennai', '2411290003', '50', '1', 'upload_files/candidate_tracker/70412711458_ResumeRizwan.pdf', NULL, '1', '2024-11-29', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-29 05:23:43', 104, '2024-11-29 12:21:07', 0, NULL, 1),
(23073, 'Vigneshwaran', '13', '6385249566', '9514147850', 'vigneshwaranbsc2019@gmail.com', '2001-11-09', 23, '3', '2', 'Kottaisamy', 'Farmer', 17000.00, 2, 0.00, 300000.00, 'Karaikudi', 'Karaikudi', '2411290004', '', '1', 'upload_files/candidate_tracker/16652790105_VigneshResume1.pdf', NULL, '1', '2024-11-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-11-29 06:03:46', 1, '2024-11-29 06:17:27', 0, NULL, 1),
(23074, 'Nandhini.u', '4', '9150331464', '9840064598', 'nandhiniu898@gmail.com', '2001-04-05', 23, '2', '2', 'Parents', 'Driver', 40000.00, 2, 20000.00, 22000.00, 'Old whashermenpet', 'Old whashermenpet', '2411290005', '45', '2', 'upload_files/candidate_tracker/31615604294_Nandhini.U.pdf', NULL, '1', '2024-11-29', 1, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', 'Thinking about leaving time.', '', '', '', '', '1970-01-01', 1, '2024-11-29 06:24:17', 104, '2024-11-29 12:21:47', 0, NULL, 1),
(23075, 'M.meenatchi', '6', '9080729498', '9790276385', 'MMEENATCHImmeenatchi056@gmail.com', '2004-07-17', 20, '2', '2', 'Kaliyammal', 'Telecaller', 70000.00, 1, 0.00, 14000.00, 'Kandavarayanppatti,tiruppathir(tk), Sivaganga', 'Triplicane,chennai', '2411290006', '1', '1', 'upload_files/candidate_tracker/79084341781_meenatchi.pdf', NULL, '1', '2024-11-29', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2024-11-29 07:27:07', 104, '2024-12-11 09:47:59', 0, NULL, 1),
(23076, 'Jarmina Beevi R', '6', '8072476937', '9585759780', 'jarminajasr@gmail.com', '2001-11-02', 23, '2', '2', 'Rasul Sickkander', 'Cooli', 2.00, 1, 15000.00, 20000.00, 'Madhavalayam kanniyakumari', 'Chennai Royapettah', '2411290007', '50', '2', 'upload_files/candidate_tracker/94287006381_resumeword.pdf', NULL, '1', '2025-01-10', 30, '', '3', '59', '2025-01-20', 186000.00, '', '5', '1970-01-01', '2', 'Communicaiton Ok 5050 Sustainability doubts need to checjk in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2025-01-20', 1, '2024-11-29 07:34:47', 60, '2025-01-17 07:21:51', 0, NULL, 1),
(23077, '', '0', '6381000387', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2411290008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-11-29 07:47:42', 0, NULL, 0, NULL, 1),
(23078, 'Karthika R', '4', '9789821366', '7339358451', 'karthika38balu@Gmail.com', '1996-04-10', 28, '2', '1', 'Ramkumar R', 'Sales manager', 50000.00, 4, 19000.00, 22000.00, 'Achirapakkam', 'Tambaram sanatorium', '2411290009', '50', '2', 'upload_files/candidate_tracker/47515976225_KARTHIKARESUME2024.doc', NULL, '1', '2024-11-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-11-29 07:48:42', 104, '2024-11-29 06:02:10', 0, NULL, 1),
(23079, 'THANGAMURUGAN.S', '5', '9524511650', '', 'thangamshan28@gmail.com', '1994-12-28', 29, '3', '2', 'DHANALAKSHMI', 'HOUSEWIFE', 25000.00, 1, 24000.00, 30000.00, 'NAMAKKAL', 'CHENNAI', '2411290010', '', '2', 'upload_files/candidate_tracker/63705600514_STM.RESUME25.pdf', NULL, '1', '2024-11-29', 0, '', '3', '59', '2024-12-26', 350000.00, '', '5', '1970-01-01', '1', 'Communication Over Speed Need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55735', '55557', '2024-12-26', 1, '2024-11-29 10:29:17', 60, '2024-12-24 05:53:02', 0, NULL, 1),
(23080, 'Thangapandiyan T', '29', '9952887322', '', 'styleboyboxer@gmail.com', '1997-06-18', 27, '2', '2', 'Thangamani', 'Business', 30000.00, 1, 25000.00, 27000.00, '197, North Street kodukkur District Ariyalur', 'Chennai puliyanthopu narasima nagar 2st', '2411290011', '1', '2', 'upload_files/candidate_tracker/5349183756_ThangapandianResume.pdf', NULL, '1', '2024-12-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-11-29 12:41:06', 153, '2024-12-03 04:54:42', 0, NULL, 1),
(23081, 'Pavithra.v', '11', '9080455951', '7603880671', 'Pavithravenkat832@gmail.com', '2002-03-07', 22, '3', '2', 'Indira.v', 'Own business', 25000.00, 2, 0.00, 5000.00, 'Triplicane Chennai', 'Triplicane Chennai', '2411300001', '', '1', 'upload_files/candidate_tracker/17362870770_pavithraresume11.pdf', NULL, '1', '2024-11-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-11-30 05:29:13', 104, '2024-11-30 01:03:43', 0, NULL, 1),
(23082, 'N.Ranjith kumar', '4', '6383090481', '7448680224', 'ranjithk3155@gmail.com', '2009-11-30', 0, '2', '2', 'D.Natarajan', 'Apso airport', 20000.00, 0, 0.00, 20000.00, 'Patel st Razak garden arumbakkam', 'Patel st Razak garden arumbakkam', '2411300002', '1', '1', 'upload_files/candidate_tracker/42456424681_N.RANJITHKUMARRESUME.pdf', NULL, '1', '2025-03-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2024-11-30 09:28:50', 153, '2025-03-04 12:42:32', 0, NULL, 1),
(23083, 'Jerun Raj J', '4', '9843484133', '9843884133', 'jpjerun0908@gmail.com', '2004-08-09', 20, '2', '2', 'John peter', 'Carpenter', 25000.00, 0, 20000.00, 25000.00, '528/Kalimangalam, viralimalai tk, Pudukkottai', 'Chennai', '2412020001', '50', '2', 'upload_files/candidate_tracker/31852404323_JerunResume.pdf', NULL, '3', '2024-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-02 04:18:45', 1, '2024-12-02 04:29:18', 0, NULL, 1),
(23084, '', '0', '6383261220', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412020002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-02 04:44:31', 0, NULL, 0, NULL, 1),
(23085, 'Rallapalli meghana', '6', '9008507913', '8247077936', 'meghanarallapalli2@gmail.com', '2002-04-22', 22, '2', '2', 'Rallapalli malliswari', 'Home maker', 50000.00, 1, 0.00, 26.00, 'Anantapur', 'Madiwala', '2412020003', '39', '2', 'upload_files/candidate_tracker/40582138621_CV2024112911320136.pdf', NULL, '1', '2024-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-02 05:07:42', 1, '2024-12-02 05:12:29', 0, NULL, 1),
(23086, 'Suji X', '13', '6381474850', '', 'sujixavier03@gmail.com', '2003-05-03', 21, '3', '2', 'Xavier', 'Farmer', 70000.00, 2, 0.00, 3.00, 'Thanjavur', 'Chennai', '2412020004', '', '1', 'upload_files/candidate_tracker/24656275720_sujiX1BEEEECGPA8.2.pdf', NULL, '1', '2024-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-02 05:11:52', 1, '2024-12-02 05:15:04', 0, NULL, 1),
(23087, 'Sundarapandian G', '13', '8189902223', '7871611824', 'sundarapandi2110@gmail.com', '1997-10-21', 27, '3', '2', 'Sivaneswari G', 'Farmer', 1.80, 2, 0.00, 12000.00, 'Madurai', 'Perungalathur chennai', '2412020005', '', '1', 'upload_files/candidate_tracker/27740922021_Resumesundar.pdf', NULL, '1', '2024-12-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-02 05:20:56', 1, '2024-12-02 05:27:41', 0, NULL, 1),
(23088, 'Raphina', '6', '6374996541', '', 'raphinaj@gmail.com', '2004-05-31', 0, '2', '2', 'john peter', 'tenth', 30000.00, 1, 0.00, 15000.00, 'chennai washermenpet', 'washermenpet', '2412020006', '50', '1', 'upload_files/candidate_tracker/89616660082_Resume.pdf', NULL, '2', '2024-12-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'for time being looking for opportunities 6 months - She is planning to go with MCom full time course and for short note she is looking for opportunities also not much to go with sales calling ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-12-02 05:21:08', 153, '2024-12-02 03:47:57', 0, NULL, 1),
(23089, 'Krishnan M', '6', '8668174551', '9444763973', 'marankrishnan57@gmail.com', '2001-08-21', 23, '2', '2', 'Mohan TK', 'Office assistant', 30000.00, 1, 18500.00, 20000.00, 'Chennai', 'Chennai', '2412020007', '50', '2', 'upload_files/candidate_tracker/92195992974_CV2024112311493115.pdf', NULL, '1', '2024-12-02', 0, '', '3', '59', '2024-12-06', 192000.00, '', '5', '1970-01-01', '1', 'Have exp but no sustainability 1yr 3 companies processed as fresher need to check in 7 days training', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-12-06', 1, '2024-12-02 05:49:28', 60, '2024-12-05 07:06:45', 0, NULL, 1),
(23090, 'Priya', '6', '7695833703', '8489858687', 'Mathupriya664@gmail.Com', '2003-02-13', 21, '1', '2', 'Palaniyammmal', 'Farmer', 75000.00, 0, 0.00, 14000.00, 'Triplecane', 'Triplecane', '2412020008', '', '1', 'upload_files/candidate_tracker/70183493110_priya.pdf', NULL, '3', '2024-12-02', 0, 'V. selva priya', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Discussed - Too long distance Seems not much comfort in Sales Calling ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-02 05:52:13', 153, '2024-12-02 06:22:37', 0, NULL, 1),
(23091, 'Adhishri Surendhar', '16', '9791039318', '', 'adhishri98@gmail.com', '1998-05-18', 26, '2', '1', 'Surendhar S', 'HR', 50000.00, 1, 20000.00, 30000.00, 'Chennai', 'Chennai', '2412020009', '1', '2', 'upload_files/candidate_tracker/21691588776_AdhishriResume.docx', NULL, '1', '2024-12-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2024-12-02 05:58:30', 153, '2024-12-02 04:54:49', 0, NULL, 1),
(23092, 'Priyadharshini D', '6', '9962553706', '8056065740', 'priyadharshini2002pd@gmail.com', '2002-11-21', 22, '2', '2', 'Parents', 'Printing press', 20000.00, 1, 0.00, 17000.00, 'Arumbakkam', 'Arumbakkam', '2412020010', '1', '2', 'upload_files/candidate_tracker/55170434678_Resume..202405052108240000.pdf', NULL, '1', '2024-12-02', 0, '', '3', '59', '2024-12-09', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok just 6 months exp in paisa bazaar salary is high but nor sure on her sustainability and joining let us try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '2024-12-09', 1, '2024-12-02 06:04:06', 60, '2024-12-06 10:51:15', 0, NULL, 1),
(23093, 'akila', '4', '8124422698', '', 'loganathanakila26@gmail.com', '2000-05-04', 24, '2', '2', 'loganathan', 'farmer', 20000.00, 2, 25000.00, 30000.00, 'chennai', 'chennaj', '2412020011', '1', '2', 'upload_files/candidate_tracker/14709779362_AkilaLoganadhancompressed.pdf', NULL, '1', '2024-12-02', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55824', '55560', '1970-01-01', 1, '2024-12-02 06:31:56', 153, '2024-12-02 03:41:11', 0, NULL, 1),
(23094, 'A Omini', '6', '7448652005', '7200402005', 'ominiangel17@gmail.com', '2002-04-17', 22, '2', '1', 'K Vincent', 'Computer service', 180000.00, 2, 0.00, 15000.00, 'Madhavaram chennai', 'Madhavaram chennai', '2412020012', '50', '1', 'upload_files/candidate_tracker/80475830160_OMINIRESUME.pdf', NULL, '1', '2024-12-02', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-02 06:40:06', 153, '2024-12-02 03:48:45', 0, NULL, 1),
(23095, 'Govarthini', '6', '9629735936', '', 'govarthini50462@gmail.com', '2004-03-30', 20, '1', '2', 'Murugan', 'Farmer', 20.00, 1, 0.00, 15.00, 'Pollachi', 'Velachery', '2412020013', '', '1', 'upload_files/candidate_tracker/90158600933_GOVARTHINI.RESUME.pdf', NULL, '1', '2024-12-02', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok sales profile, communication not good, lack of mindset', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-12-02 06:40:56', 153, '2024-12-02 03:46:52', 0, NULL, 1),
(23096, 'Jasline Benadics. C', '6', '7845211238', '9688031689', 'benadics3@gmail.com', '1998-04-23', 26, '2', '2', 'Chinnapparaj, rose mary', 'Catagiest, house wife', 72000.00, 7, 0.00, 18000.00, 'Arcadu, villupuram', 'Chromepet, chennai', '2412020014', '45', '1', 'upload_files/candidate_tracker/59317824867_Jaslinebendics1.pdf', NULL, '1', '2024-12-02', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidaet mainly interest in HR only so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-02 06:42:23', 153, '2024-12-02 03:41:22', 0, NULL, 1),
(23097, 'Dinesh Kumar', '6', '7373800820', '8088921269', 'dineshthiruvarur123@gmail.com', '2001-09-11', 23, '2', '2', 'SELVAMANI', 'FARMER', 20000.00, 1, 21000.00, 27000.00, 'Thiruvarur', 'Chennai', '2412020015', '1', '2', 'upload_files/candidate_tracker/32547016562_DineshResume.docx', NULL, '1', '2024-12-02', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is 50/50, over all 1yr exp. but salary exp 25k take home. character issue, unfit for field sales. because of His body language totally different.reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2024-12-02 06:44:06', 153, '2024-12-02 04:47:09', 0, NULL, 1),
(23098, 'Malar', '11', '7305343305', '', 'malarswetha10@gmail.com', '2003-12-10', 20, '3', '2', 'Thangam', 'Business', 200000.00, 1, 0.00, 350000.00, 'Chennai', 'Maduravoyal', '2412020016', '', '1', 'upload_files/candidate_tracker/80399626432_MalarCV.pdf', NULL, '1', '2024-12-02', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected, sal expectation high', '6', '2', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55605', '1970-01-01', 1, '2024-12-02 07:05:43', 153, '2024-12-02 03:39:43', 0, NULL, 1),
(23099, 'VARUN V', '6', '8610201487', '', 'varunveera40@gmail.com', '1999-10-14', 25, '2', '1', 'VANI SHREE', 'HOUSEWIFE', 15000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2412020017', '1', '2', 'upload_files/candidate_tracker/39772302653_Varun.pdf', NULL, '1', '2024-12-02', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected - candidate was have communication but not ok with salary as he was not having any experience certificates', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-02 07:14:56', 153, '2024-12-02 03:41:35', 0, NULL, 1),
(23100, 'Divya.p', '6', '7358257647', '9677065364', 'divya1299.bc@gmail.com', '1999-01-12', 25, '2', '2', 'Periyasamy', 'Carpenter', 20000.00, 1, 22000.00, 25000.00, 'Pudukkottai', 'Kodambakkam', '2412020018', '45', '2', 'upload_files/candidate_tracker/28464934002_NEWDIVYARESUME1.pdf', NULL, '1', '2024-12-02', 0, '', '3', '59', '2024-12-04', 186000.00, '', '3', '2024-12-04', '2', 'communication Ok have exp in semivoice but not a relevant domain can be trained Need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '2024-12-04', 1, '2024-12-02 09:02:17', 60, '2024-12-04 09:59:12', 0, NULL, 1),
(23101, 'Sathish. P', '13', '6382780537', '', 'sathishmahi321@gmail.com', '2001-06-18', 23, '3', '2', 'Perumal. T', 'Daily wages', 20000.00, 2, 0.00, 23000.00, 'chennai', 'chennai', '2412020019', '', '2', 'upload_files/candidate_tracker/77239571706_SathishPythonFullStackDeveloperResume.pdf', NULL, '1', '2024-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-02 09:46:33', 1, '2024-12-02 10:06:36', 0, NULL, 1),
(23102, 'Gayathri', '6', '7200652679', '7299450602', 'gayathriramesh111002@gmail.com', '2002-10-11', 22, '2', '2', 'Ramesh', 'Working in tea shop', 20000.00, 1, 0.00, 20.00, 'Chennai', 'Chennai', '2412020020', '1', '1', 'upload_files/candidate_tracker/15017840196_gayathriresume.pdf', NULL, '1', '2024-12-03', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'health issues person so not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-02 11:34:21', 104, '2024-12-03 02:53:02', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23103, 'Kowsalya S M', '6', '9345710984', '', 'kowsalyas1007@gmail.com', '2000-07-10', 24, '2', '2', 'Santhosh kumar', 'Business', 25000.00, 1, 0.00, 20000.00, 'Krishnagiri', 'Chennai', '2412020021', '1', '1', 'upload_files/candidate_tracker/63620330275_kowsalyaSMresumePdf11.pdf', NULL, '1', '2024-12-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not intersted as she got another offer with 25K in recruitment but not sure she seems to be doubt will not sustain too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-02 12:43:57', 104, '2024-12-03 02:46:50', 0, NULL, 1),
(23104, 'Lavanya s', '6', '9345714096', '', 'lavanyasekar1404@gmail.com', '2000-04-13', 24, '2', '2', 'Sekar.v', 'Farmer', 20000.00, 2, 0.00, 25.00, '5/133,voc street,ogalur , Perambalur,(621108)', 'A24,2nd main road,Anna nagar ,Chennai (600102)', '2412020022', '1', '1', 'upload_files/candidate_tracker/58598885587_lavanyaResume.pdf', NULL, '1', '2024-12-03', 0, '', '3', '59', '2024-12-04', 168000.00, '', '3', '2024-12-04', '2', 'Communication Ok Fresher for our roles can give a try and check in our profiles need to check in training period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '2024-12-04', 1, '2024-12-02 12:45:48', 60, '2024-12-04 10:00:39', 0, NULL, 1),
(23105, 'Roshni', '4', '7402525299', '8526978339', 'roshnikumar272@gmail.com', '2009-12-03', 0, '2', '2', 'Kumar', 'Farmer', 80000.00, 1, 0.00, 15000.00, 'Ammaiyagaram', 'Ammaiyagaram', '2412030001', '1', '1', 'upload_files/candidate_tracker/63653585699_resume11.docx', NULL, '1', '2024-12-03', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-03 04:54:21', 104, '2024-12-03 10:31:24', 0, NULL, 1),
(23106, 'sumithira.m', '6', '6380630379', '9042388486', 'Sumithramurugan2002@gmai.com', '2002-10-12', 22, '2', '2', 'kalpana murugan', 'daily Wages', 10000.00, 1, 0.00, 16000.00, 'chennai triplicane', 'triplicane', '2412030002', '50', '1', 'upload_files/candidate_tracker/43902558019_RESUMEM.SUMITHIRA.pdf', NULL, '1', '2024-12-03', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-03 05:07:04', 104, '2024-12-03 02:52:50', 0, NULL, 1),
(23107, 'Kabilan M', '13', '6374554595', '9788042804', 'Kabilan4151@gmail.com', '2003-08-20', 21, '3', '1', 'Nagalakshmi M', 'Nil', 15000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Velachery', '2412030003', '', '1', 'upload_files/candidate_tracker/94320102463_KABILANMB.EMECHCGPA7.12.pdf', NULL, '1', '2024-12-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-03 05:25:45', 1, '2024-12-03 05:30:32', 0, NULL, 1),
(23108, 'Anbarasu E', '13', '9629203201', '', 'anbuvallavan2@gmail.com', '2002-11-06', 22, '3', '2', 'Elumalai', 'Nil', 15000.00, 1, 0.00, 15000.00, 'middle street, prithivimangalam, Kallakurichi', 'Velachery, Chennai', '2412030004', '', '1', 'upload_files/candidate_tracker/47623052303_AnbarasuCV1.pdf', NULL, '1', '2024-12-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-03 05:26:13', 1, '2024-12-03 05:33:37', 0, NULL, 1),
(23109, 'Justin J', '31', '8248520467', '', 'justinjenifer289@gmail.com', '2001-09-28', 23, '3', '2', 'John Pushpanathan', 'Painter', 20000.00, 1, 0.00, 500000.00, 'Neyveli', 'Chennai', '2412030005', '', '1', 'upload_files/candidate_tracker/81704379925_JustinsnewResume.pdf', NULL, '1', '2024-12-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-03 05:34:18', 1, '2024-12-03 05:41:59', 0, NULL, 1),
(23110, 'Sargunam', '4', '8438834581', '9751580568', 'rajsargunan213@gmail.com', '2000-07-21', 24, '2', '1', 'Janani', 'Working', 23000.00, 1, 18000.00, 18000.00, 'South Street karukkadipatti orathanadu Thanjavur', 'Thanjavur', '2412030006', '1', '2', 'upload_files/candidate_tracker/93520686126_Resume26062024080929am.pdf', NULL, '1', '2024-12-03', 2, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustainability issue', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-03 05:41:06', 104, '2024-12-03 02:51:48', 0, NULL, 1),
(23111, 'arun kumar', '6', '9698182606', '9629072716', 'arunmatthew6t@gmail.com', '1998-12-13', 25, '2', '2', 'manoharan', 'business', 700000.00, 1, 0.00, 3.70, 'madurai', 'chennai', '2412030007', '50', '1', 'upload_files/candidate_tracker/90244939138_ArunkumarResume.pdf', NULL, '1', '2024-12-03', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate convincing and communication is low and not interested in sales interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-03 05:50:57', 104, '2024-12-03 02:46:27', 0, NULL, 1),
(23112, 'M. Vasanth', '4', '6379685413', '8525086413', 'vv7338030@gmail.com', '2001-12-31', 22, '2', '2', 'S Maheskumar', 'Private', 25000.00, 1, 10000.00, 15000.00, 'Pattukkottai', 'Pattukkottai', '2412030008', '1', '2', 'upload_files/candidate_tracker/48658282113_VasanthMaheskumarResume.pdf', NULL, '1', '2024-12-03', 1, '', '3', '59', '2024-12-09', 156000.00, '', '5', '1970-01-01', '2', 'Too long distance and the salary exp is high being a fresher for this roles 5050 If he joins let us try', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-12-09', 1, '2024-12-03 05:57:01', 60, '2024-12-06 02:54:34', 0, NULL, 1),
(23113, 'Manjuladevi', '20', '6379800787', '9600539298', 'pugalmaja@gmail.com', '2001-12-01', 23, '2', '2', 'Manjula', 'BBA', 30000.00, 3000, 0.00, 16000.00, 'Tambaram', 'Thambaram', '2412030009', '50', '1', 'upload_files/candidate_tracker/25382174473_DOC20241104WA0001..docx', NULL, '1', '2024-12-03', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'long distance . Average skill . not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-03 06:08:12', 104, '2024-12-03 02:50:34', 0, NULL, 1),
(23114, 'surya.p', '6', '9345377247', '9176754728', 'suryasurya82552@gmail.com', '2003-08-16', 21, '1', '2', 'devi.m', 'Printing press contractor', 130000.00, 1, 0.00, 16000.00, 'purasaiwakkam', 'Otteri', '2412030010', '', '2', 'upload_files/candidate_tracker/21578242471_Resume.pdf', NULL, '1', '2024-12-03', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is unfit for the sales. communication not good.sal exp 16 tk home, sustainability issues.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-12-03 06:09:04', 104, '2024-12-03 02:49:57', 0, NULL, 1),
(23115, 'M. Saran', '6', '9361284225', '9962738752', 'saransam2503@gmail.com', '2003-08-25', 21, '1', '2', 'T. Mohan', 'Super whiser', 120000.00, 1, 0.00, 16000.00, 'Shenoy nagar', 'Shenoynagar', '2412030011', '', '1', 'upload_files/candidate_tracker/46398253148_Saran.MResume2024.pdf', NULL, '1', '2024-12-03', 0, '77934', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is unfit for the sales. communication not good.sal exp 16 tk home, sustainability issues.friends suriya so not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-12-03 06:14:38', 104, '2024-12-03 02:48:25', 0, NULL, 1),
(23116, 'SANTHOSH k', '6', '7904674463', '', 'santhoshksanthoshk71@gmail.com', '2003-11-13', 21, '2', '2', 'Kalaimani', 'Business', 30000.00, 1, 0.00, 20000.00, 'Villupuram', 'Maduravoyal', '2412030012', '50', '1', 'upload_files/candidate_tracker/30631113913_Ashok2025.pdf', NULL, '1', '2024-12-03', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected - candidate was not good at communication and not interested in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-03 06:28:20', 104, '2024-12-03 02:47:07', 0, NULL, 1),
(23117, 'Mohamed askar ali', '6', '9364310569', '', 'askar040301@gmail.com', '2004-03-01', 20, '2', '2', 'Sheik dawood', 'Business', 35000.00, 2, 0.00, 20000.00, 'Kanchipuram', 'Maduravoyal', '2412030013', '50', '1', 'upload_files/candidate_tracker/42024256983_RESUME.pdf', NULL, '1', '2024-12-03', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-03 06:28:37', 104, '2024-12-03 02:52:22', 0, NULL, 1),
(23118, 'Hari prasant T', '6', '6380641168', '', 'prasathhari233@gmail.com', '2001-11-06', 0, '1', '2', 'Thilipkumar S', 'Bank supervisor', 40000.00, 1, 0.00, 15000.00, 'Theni', 'Chennai', '2412030014', '', '1', 'upload_files/candidate_tracker/89928220151_07hari.pdf', NULL, '1', '2024-12-03', 0, '7817', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-03 06:32:48', 104, '2024-12-03 02:49:50', 0, NULL, 1),
(23119, 'DENIS RAJ A', '6', '7550116425', '8939218146', 'dennisgarnier2912@gmail.com', '1999-10-16', 25, '2', '2', 'Amal Raj S', 'Labour', 15000.00, 1, 2.20, 3.50, 'Vyasarpadi, Chennai', 'Vyasarpadi, Chennai', '2412030015', '50', '2', 'upload_files/candidate_tracker/34920610926_GreenGraphicDesignerCurriculumVitaeLetterhead202411181303310000.pdf', NULL, '1', '2024-12-03', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication is ok but his performance and attitude is not good, sustainable doubt also expected higher package', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-12-03 06:40:13', 104, '2024-12-03 02:46:38', 0, NULL, 1),
(23120, 'SURENDAR K', '13', '7550183273', '', 'surendarvinoth52@gmail.com', '2001-04-23', 23, '3', '2', 'KAMALAKANNAN A', 'Mechanic', 35000.00, 1, 0.00, 240000.00, 'Chennai, Redhills', 'Chennai, Redhills', '2412030016', '', '1', 'upload_files/candidate_tracker/30950060378_Surendarevolution.pdf', NULL, '1', '2024-12-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-03 07:08:45', 1, '2024-12-03 07:14:40', 0, NULL, 1),
(23121, 'Poongavanam P', '13', '6381745862', '9543704093', 'poongavanamp18@gmail.com', '2002-04-30', 22, '6', '2', 'Palani K', 'Driving', 25000.00, 1, 0.00, 240000.00, 'Tiruvannamalai', 'Chennai', '2412030017', '', '1', 'upload_files/candidate_tracker/12693378778_JakesResume21.pdf', NULL, '1', '2024-12-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-03 07:08:58', 1, '2024-12-03 07:14:45', 0, NULL, 1),
(23122, 'priyanga elango', '29', '9600724276', '9361560043', 'priyaelango717@gmail.com', '2001-09-17', 23, '2', '1', 'prasath g', 'self employed', 25000.00, 1, 18000.00, 25000.00, 'puzhuthivakkam', 'puzhuthivakkam', '2412030018', '45', '2', 'upload_files/candidate_tracker/37684101183_PRIYANGAELANGORESUME.pdf', NULL, '1', '2024-12-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-12-03 07:15:22', 153, '2024-12-03 04:48:51', 0, NULL, 1),
(23123, 'Chamundeeswari', '4', '9500135763', '', 'Chamuvelyudham@gmail.com', '1990-05-25', 34, '5', '1', 'Mukundhan', 'Team lead', 45000.00, 1, 560000.00, 600000.00, 'Chennai', 'Chennai', '2412030019', '', '2', 'upload_files/candidate_tracker/89975050971_ChamuResume112.pdf', NULL, '1', '2024-12-03', 7, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-03 09:02:02', 1, '2024-12-03 09:04:10', 0, NULL, 1),
(23124, 'Athaullah Khan', '13', '8939296165', '', 'athaullahkhan48@gmail.com', '2001-03-25', 23, '3', '2', 'Shehbas Khan', 'PHP WordPress developer', 22000.00, 5, 8000.00, 15000.00, 'Chennai', 'Chennai', '2412030020', '', '2', 'upload_files/candidate_tracker/26912673342_AthaullahsCV1.pdf', NULL, '1', '2024-12-03', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-03 10:49:53', 1, '2024-12-03 10:52:58', 0, NULL, 1),
(23125, 'Patooru Sireesha', '6', '6305478808', '', 'sirishapatooru17@gmail.com', '1999-09-17', 25, '2', '2', 'P.krishna', 'Auto driver', 15000.00, 1, 0.00, 200000.00, 'Rajeev nagar colony,SLV nagar Tirupati', 'BTM layout', '2412040001', '1', '1', 'upload_files/candidate_tracker/57802754542_Sirisha11resume1.pdf', NULL, '1', '2024-12-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-12-04 04:42:24', 1, '2024-12-04 04:47:13', 0, NULL, 1),
(23126, 'Gomathi', '4', '9176019382', '', 'kosikagomathi@gmail.com', '1998-01-13', 26, '2', '1', 'Shanthi', 'Home maker', 20000.00, 1, 18000.00, 20000.00, 'No:153,Ajees nagar 2nd Street, tondiarpet', 'No:153,Ajees nagar 2nd Street, tondiarpet', '2412040002', '50', '2', 'upload_files/candidate_tracker/2754336262_M.GomathiResume1.pdf', NULL, '1', '2024-12-04', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-12-04 06:47:54', 154, '2024-12-04 06:11:33', 0, NULL, 1),
(23127, '', '0', '6382270741', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412040003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-04 07:06:11', 0, NULL, 0, NULL, 1),
(23128, 'Roshini.s', '6', '6369881932', '9585405426', 'Roshinideivanai080603@gmail.com', '2003-06-08', 21, '2', '2', 'Deivanai.s', 'Home maker', 20000.00, 0, 13500.00, 17000.00, '2/163 9b,veeramani street madipakkam', '2/163 9b,veeramani street madipakkam', '2412040004', '50', '2', 'upload_files/candidate_tracker/99670167835_Roshiniresume411.pdf', NULL, '1', '2024-12-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-04 07:16:22', 154, '2024-12-04 06:11:06', 0, NULL, 1),
(23129, 'Mahalakshmi', '6', '8925761236', '', 'Mahalakshmim56826@gmail.com', '2003-11-21', 21, '2', '2', 'M.devi', 'Home maker', 15000.00, 1, 0.00, 16000.00, 'No:38,Bala murugan Nagar ,mangadu', 'No:38,Bala murugan Nagar, mangadu', '2412040005', '45', '1', 'upload_files/candidate_tracker/53454611315_Mahalakshmi.pdf', NULL, '1', '2024-12-04', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected -candidate was interested in iT field  and looking for interviews in that field', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-04 07:23:56', 154, '2024-12-04 06:11:22', 0, NULL, 1),
(23130, 'Meghana', '5', '9133440509', '9030454030', 'meghana93980@gmail.com', '2001-10-13', 23, '2', '2', 'Gayathri', 'Business', 25.00, 1, 20.00, 23.00, 'Thirupati', 'Tirupati', '2412040006', '1', '2', 'upload_files/candidate_tracker/52129158324_Meghanaresumeword1.pdf', NULL, '1', '2024-12-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2024-12-04 01:07:47', 1, '2024-12-04 01:37:25', 0, NULL, 1),
(23131, '', '0', '7397104552', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412050001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-05 03:03:26', 0, NULL, 0, NULL, 1),
(23132, 'KARTHIKA N', '6', '9384721528', '8825513429', 'Karthika22052003@gmail.com', '2003-05-22', 21, '2', '2', 'NATARAJAN', '12', 150000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2412050002', '1', '1', 'upload_files/candidate_tracker/57428254526_Karthikaresume.docx', NULL, '1', '2024-12-05', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication not good and voice also not well , so not fit for my team , but money need person', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-05 04:21:30', 154, '2024-12-05 06:56:48', 0, NULL, 1),
(23133, 'Venkat babu', '4', '7397104452', '', 'Tamilvenkat270@gmail.com', '2000-06-22', 24, '2', '2', 'Tamilselvi', 'Icds helper', 10000.00, 1, 0.00, 12000.00, 'Melavasal', 'Melavasal', '2412050003', '1', '1', 'upload_files/candidate_tracker/93200232304_Venkatoffresume2.pdf', NULL, '1', '2024-12-05', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SUSTAINABILITY ISSUE NOT FIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-05 04:38:17', 154, '2024-12-05 06:53:42', 0, NULL, 1),
(23134, 'M.mohamed Ashfaq', '6', '8248772410', '9841952774', 'mohamedashfaq384@gmail.com', '2002-02-11', 22, '2', '2', 'Father - Mohamed Moulana', 'Security', 30000.00, 2, 0.00, 20000.00, 'Chennai old washermenpet', 'Old washermenpet', '2412050004', '50', '1', 'upload_files/candidate_tracker/72644605744_AshfaqResume.docx', NULL, '1', '2024-12-05', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was ok with communication but not ok with salary and so having ideas for other options also', '5', '1', '', '1', '8', '', '2', '2024-12-09', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-05 04:39:42', 154, '2024-12-05 06:56:04', 0, NULL, 1),
(23135, 'N yogesh', '6', '8939789476', '9176260251', 'nyogeshmsyogesh@gmail.com', '2000-01-05', 24, '2', '2', 'B Nagoor', 'daily wage employee', 15000.00, 0, 0.00, 17000.00, 'old washermanpet', 'old washermanpet', '2412050005', '50', '1', 'upload_files/candidate_tracker/40160634628_nyogesh.pdf', NULL, '1', '2024-12-05', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'REJECTED- candidate was not have stability in work and communication was not so good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-05 05:03:16', 154, '2024-12-05 06:56:18', 0, NULL, 1),
(23136, 'Priyadarshini T', '4', '7402159421', '', 'darshini.priyat20@gmail.com', '1996-08-20', 28, '2', '2', 'Thirisangu A', 'Driver', 30000.00, 1, 0.00, 15000.00, 'Pudukkottai', 'Chennai', '2412050006', '50', '1', 'upload_files/candidate_tracker/44060040840_PRIYATCV.pdf', NULL, '1', '2024-12-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-12-05 05:16:46', 154, '2024-12-05 06:54:40', 0, NULL, 1),
(23137, 'Ranjitha', '6', '6369079722', '', 'ranjithasneha6@gmail.com', '2002-04-01', 22, '2', '2', 'Anandan', 'Tailor', 25000.00, 2, 19000.00, 20000.00, 'Cheyyar , Tiruvannamalai', 'West mambalam,Chennai.', '2412050007', '1', '2', 'upload_files/candidate_tracker/64852367631_RanjithaIT.pdf', NULL, '1', '2024-12-05', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-05 05:26:03', 154, '2024-12-05 06:53:32', 0, NULL, 1),
(23138, 'Madhesh K', '6', '8668119861', '', 'madhesh241@gmail.com', '2000-03-18', 24, '2', '2', 'V.Kanna', 'Business', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2412050008', '50', '1', 'upload_files/candidate_tracker/52844373512_DOC20240904WA0006..pdf', NULL, '1', '2024-12-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-05 05:38:31', 154, '2024-12-05 06:55:43', 0, NULL, 1),
(23139, 'R Saran', '6', '9940464313', '', 'rsaran99404@gmail.com', '2003-03-05', 21, '1', '2', 'P.Rajaram', 'ASHOK LEYLAND PVT LTD', 30000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2412050009', '', '1', 'upload_files/candidate_tracker/59361216880_saran.pdf', NULL, '1', '2024-12-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-05 05:47:53', 154, '2024-12-05 06:55:22', 0, NULL, 1),
(23140, 'ARUNESHWARAN', '6', '9345616231', '', 'ajarunesh854@gmail.com', '2002-11-13', 22, '1', '2', 'Janarthanan', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'BODI', 'BODI', '2412050010', '', '1', 'upload_files/candidate_tracker/38625767750_3.pdf', NULL, '1', '2024-12-05', 0, '78017', '3', '59', '2024-12-09', 192000.00, '', '5', '1970-01-01', '1', 'Communication for Sales ok Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-12-09', 1, '2024-12-05 05:48:35', 60, '2024-12-06 10:33:46', 0, NULL, 1),
(23141, 'R.azhaguradhi', '6', '9566032556', '9566056025', 'azhagurathi2805@gmail.com', '2002-05-28', 22, '2', '2', 'Rajaselvam', 'Coolie', 15000.00, 1, 0.00, 15000.00, 'No.21,vSM garden, jafferkhanpet,ch_83', 'No.21,VSM Garden, jafferkhanpet', '2412050011', '1', '1', 'upload_files/candidate_tracker/65564059187_CV2023120721421627.pdf', NULL, '1', '2024-12-05', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate fresher and already working part time supermarket then not interested in sales interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-05 05:54:31', 154, '2024-12-05 06:57:00', 0, NULL, 1),
(23142, 'karthik R S', '13', '9789435024', '7550005551', 'kaniss9899@gmail.com', '1998-04-28', 26, '2', '2', 'Ramalakshmi', 'Cooli', 50000.00, 5, 0.00, 15000.00, 'chennai', 'chennai', '2412050012', '1', '1', 'upload_files/candidate_tracker/70106275441_karthikResume.pdf', NULL, '1', '2024-12-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-12-05 06:00:26', 154, '2024-12-05 11:46:37', 0, NULL, 1),
(23143, '', '0', '8870577527', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412050013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-05 06:27:11', 0, NULL, 0, NULL, 1),
(23144, 'Sriram Kumar B', '6', '6374341280', '', 'sriramkumar256@gmail.com', '2000-07-30', 24, '2', '2', 'Srinivasa Rao B', 'Carpenter', 40000.00, 1, 14500.00, 20000.00, 'Perambur Chennai', 'Perambur Chennai', '2412050014', '1', '2', 'upload_files/candidate_tracker/94167961224_DOC20241129WA0016..pdf', NULL, '1', '2024-12-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok, 1years Experience same domain Already he getting 14.5k now  he expectation 20k, kindly Negotiate the Salary and confirm the joining Date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '55645', '5151', '1970-01-01', 1, '2024-12-05 06:37:14', 154, '2024-12-05 06:54:22', 0, NULL, 1),
(23145, 'R.Dhanalakshmi', '6', '8807991779', '8870577527', 'rb9852718@gmail.com', '2002-10-03', 22, '2', '2', 'Ramesh babu', 'Driver', 15000.00, 1, 0.00, 15000.00, 'No.11/6, kamarajar salai, Ashok nagar,ch_83', 'No.11/6, kamarajar salai, Ashok nagar,ch_83', '2412050015', '1', '1', 'upload_files/candidate_tracker/27217980079_dhana.pdf', NULL, '1', '2024-12-05', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication ok but she mainly looking presure free job  and she need 6.30 logout  so not fit for my team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-05 06:38:31', 154, '2024-12-05 06:56:35', 0, NULL, 1),
(23146, 'Nandhakumar Annadurai', '6', '9677153107', '', 'nandhakumarank39@gmail.com', '2002-12-03', 22, '2', '2', 'Annadurai', 'No', 1000000.00, 0, 22000.00, 20000.00, 'Veppur, Cuddalore', 'Chinmay Nagar, Koyambedu', '2412050016', '45', '2', 'upload_files/candidate_tracker/71404401457_CV.pdf', NULL, '1', '2024-12-05', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-05 06:54:16', 154, '2024-12-05 06:53:14', 0, NULL, 1),
(23147, 'Ishavardhani A', '6', '9626295383', '', 'ishaamirt@gmail.com', '2002-10-13', 22, '2', '2', 'anandhan', 'tech it', 40000.00, 2, 0.00, 20.00, 'ellore', 'hennai', '2412050017', '50', '1', 'upload_files/candidate_tracker/40685792476_resume.pdf', NULL, '1', '2024-12-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Except high salary', '5', '2', '', '1', '8', '', '2', '2024-12-07', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-05 07:24:40', 154, '2024-12-05 06:55:09', 0, NULL, 1),
(23148, 'sarfraz ahmed qazi', '5', '7022173433', '', 'sarfrazahmedqazi932@gmail.com', '2002-03-11', 22, '2', '2', 'mohamed ali qazi', 'alim', 100000.00, 5, 0.00, 25000.00, 'sadat colony vishal nagar old hubli', 'btm layout stags', '2412050018', '1', '1', 'upload_files/candidate_tracker/2136202909_SarfrazAhmedQazi1.pdf', NULL, '1', '2024-12-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1022', '0', '0', '0', NULL, 1, '2024-12-05 07:46:49', 1, '2024-12-05 07:52:09', 0, NULL, 1),
(23149, 'Nivetha', '6', '9025585309', '9176845737', 'nivethanivi071011@gmail.com', '2002-11-10', 22, '2', '2', 'Thamarai', 'House wife', 80000.00, 2, 14.00, 16.00, 'Ayanavaram', 'Ayanavaram', '2412050019', '50', '2', 'upload_files/candidate_tracker/17963665890_NivethaResume.pdf', NULL, '1', '2024-12-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good skill and 1 year experience from loans.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-05 09:52:37', 154, '2024-12-05 06:54:06', 0, NULL, 1),
(23150, 'Ajay', '13', '9003082987', '', 'ajayarasu005@gmail.com', '2001-10-10', 23, '2', '2', 'N.thennarasu', 'Former', 30000.00, 4, 0.00, 216000.00, 'Velavan nager, villandai, Villupuram,605756', 'Medavakkm, Chennai', '2412050020', '1', '1', 'upload_files/candidate_tracker/10260327698_T.Ajaycv1.pdf', NULL, '1', '2024-12-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-12-05 10:00:59', 154, '2024-12-05 03:46:57', 0, NULL, 1),
(23151, 'Gokulapriya. G', '6', '7867822670', '', 'ggokulapriya921@gmail.com', '2002-06-24', 22, '2', '2', 'GOVINDARAJ', 'Fruit business l', 15700.00, 1, 0.00, 20000.00, 'SALEM', 'Chennai', '2412050021', '1', '1', 'upload_files/candidate_tracker/76392761899_resume2.docx', NULL, '1', '2024-12-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '', '', '1970-01-01', 1, '2024-12-05 12:10:34', 126, '2024-12-06 12:32:43', 0, NULL, 1),
(23152, 'Jeenath nisha', '6', '9344577937', '6379902366', 'jeenath3322@gmail.com', '2000-05-21', 24, '2', '1', 'Saran', 'Driving', 35000.00, 3, 0.00, 20000.00, 'Ennore', 'Ennnor', '2412050022', '1', '1', 'upload_files/candidate_tracker/55182888294_jeenathresume.pdf', NULL, '1', '2024-12-09', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '', '', '1970-01-01', 1, '2024-12-05 01:15:29', 126, '2024-12-09 03:38:04', 0, NULL, 1),
(23153, 'ASHOK.A', '4', '9551075689', '', 'ashokangamuthu96@gmail.com', '1996-09-04', 28, '2', '2', 'SHANTHI', 'House wife', 8000.00, 2, 18000.00, 18000.00, 'Chennai', 'Chennai', '2412060001', '50', '2', 'upload_files/candidate_tracker/97862141069_AshokResume3.PDF', NULL, '1', '2024-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Back office working only will not sustain and handle the sales pressure', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-12-06 04:44:51', 154, '2024-12-06 06:38:36', 0, NULL, 1),
(23154, 'M. Vasanth', '6', '8939001805', '', 'vasanth2913@gmail.com', '2004-05-29', 20, '2', '2', 'Moorthy', 'Carpenter', 30000.00, 0, 0.00, 15000.00, 'NO. 2 KOTHAVAL CHAVADI EXTENSION WEST SAIDAPET', 'Chennai', '2412060002', '50', '1', 'upload_files/candidate_tracker/54149785585_resume.pdf', NULL, '1', '2024-12-06', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-06 05:04:15', 154, '2024-12-06 06:38:11', 0, NULL, 1),
(23155, 'Santhosh P', '6', '8220112137', '9710271903', 'yuvisanthosh88@gmail.com', '2001-07-22', 23, '2', '2', 'V.parthasarathi', 'Welder', 12000.00, 1, 0.00, 15000.00, 'Sriperumbudur', 'Sriperumbudur', '2412060003', '45', '1', 'upload_files/candidate_tracker/9762671627_Santhoshresume3.pdf', NULL, '1', '2024-12-06', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication not well and very long distance , candidate after 4 month join new course , so money ned to join the work after 4 months relave the work so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-06 05:12:38', 154, '2024-12-06 06:39:22', 0, NULL, 1),
(23156, 'K.Dhamodharan', '6', '8925644528', '8189829521', 'dhamodharandharan14@gmail.com', '2001-11-14', 23, '2', '2', 'A.kamaraj', 'Wages', 14000.00, 1, 13500.00, 18000.00, 'Ayanavaram', 'Ayanavaram', '2412060004', '50', '2', 'upload_files/candidate_tracker/88419291290_Dhamodharan..pdf', NULL, '1', '2024-12-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales and he is not fit for direct appointment', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-06 05:26:41', 154, '2024-12-06 06:38:49', 0, NULL, 1),
(23157, 'Venkatesh.s', '4', '7338794175', '', 'venkatvictor101@gmail.com', '2001-03-06', 23, '2', '2', 'Manonmani', 'House keeping', 10000.00, 1, 15000.00, 22000.00, 'Perumbakkam', 'Perumbakkam', '2412060005', '50', '2', 'upload_files/candidate_tracker/88474260951_cv.pdf', NULL, '1', '2024-12-06', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'having exp in different domain and expecting high package', '', '', '', '', '', '1970-01-01', 1, '2024-12-06 05:43:24', 154, '2024-12-06 11:51:22', 0, NULL, 1),
(23158, 'Manikandan', '4', '8428385349', '', 'manigan89@gmail.com', '1995-09-01', 29, '2', '1', 'Veni', 'Former', 10000.00, 1, 27000.00, 30000.00, 'Chennai', 'Chennai', '2412060006', '50', '2', 'upload_files/candidate_tracker/74216431226_Manikandankumarresumecopy.pdf', NULL, '1', '2024-12-06', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'having exp in different domain and expecting high package', '', '', '', '', '', '1970-01-01', 1, '2024-12-06 05:43:58', 154, '2024-12-06 11:50:56', 0, NULL, 1),
(23159, 'Jayaprakash', '6', '8220526610', '9488458451', 'jayaprakashj417@gmail.com', '1999-11-24', 25, '2', '2', 'Paramasivam', 'Saidapet', 55000.00, 2, 0.00, 20000.00, 'Darasuram/ kumbakonam', 'Darasuram/ kumbakonam', '2412060007', '45', '1', 'upload_files/candidate_tracker/15515985199_Jayaprakashresume.pdf', NULL, '1', '2024-12-06', 0, '', '3', '59', '2024-12-09', 192000.00, '', '3', '2024-12-11', '2', 'Communication Ok Fresher Need to train a lot need to check in training and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2024-12-09', 1, '2024-12-06 05:56:08', 60, '2024-12-07 04:27:50', 0, NULL, 1),
(23160, 'Vimala', '4', '8778924061', '7338973476', 'vimala2803rameshkumar@gmail.com', '2001-12-28', 22, '2', '2', 'M .Rameshkumar', 'Electretion', 15000.00, 1, 20000.00, 22000.00, 'chennai', 'chennai', '2412060008', '50', '2', 'upload_files/candidate_tracker/67899647989_R.VimalaRameshkumar.pdf', NULL, '2', '2024-12-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-12-06 06:11:00', 154, '2024-12-06 06:38:25', 0, NULL, 1),
(23161, 'Neville Christopher', '5', '9361670026', '9094034445', 'neville.chris.j@gmail.com', '2002-03-21', 22, '1', '2', 'Janarthanan', 'Business', 28000.00, 1, 13200.00, 22000.00, 'Valasaravakkam', 'Valasaravakkam', '2412060009', '', '2', 'upload_files/candidate_tracker/70459401002_NEVILLECHRISTOPHERResume.docx', NULL, '1', '2024-12-06', 0, '55776', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2024-12-06 06:57:33', 154, '2024-12-06 06:39:11', 0, NULL, 1),
(23162, 'vinoth', '4', '7305471483', '', 'vinothe568@gmail.com', '2002-12-30', 21, '2', '2', 'elumalai', '.', 80000.00, 1, 0.00, 18000.00, 'chennai', 'Chennai', '2412060010', '1', '1', 'upload_files/candidate_tracker/69829971807_VinothResume.pdf', NULL, '1', '2024-12-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2024-12-06 12:52:54', 1, '2024-12-06 01:00:05', 0, NULL, 1),
(23163, '', '0', '7305560960', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-06 03:24:30', 0, NULL, 0, NULL, 1),
(23164, 'Anitha', '6', '7449227966', '7594822796', 'anithabobby1410@gmail.com', '2001-06-10', 23, '2', '2', 'Balasubramaniyam', 'Work from office', 50000.00, 1, 12000.00, 20000.00, 'Velachery Chennai', 'No 92 orandiamman kovil street Velachery Chennai', '2412060012', '1', '2', 'upload_files/candidate_tracker/2619638391_BAnithaResume1.pdf', NULL, '1', '2024-12-07', 0, '', '3', '59', '2024-12-11', 180000.00, '', '5', '1970-01-01', '2', 'Communication Good Have exp  in calling can be trained in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '2024-12-11', 1, '2024-12-06 04:55:22', 60, '2024-12-07 04:55:07', 0, NULL, 1),
(23165, 'Seenivasan A', '6', '9894093059', '9080992262', 'seenibairavar9894@gmail.com', '1997-06-15', 27, '2', '2', 'Alagarsamy s', 'Electrician', 24000.00, 1, 14000.00, 20000.00, 'Madurai', 'Kelambakkam', '2412070001', '1', '2', 'upload_files/candidate_tracker/24337728478_updatedconverted11.pdf', NULL, '1', '2024-12-07', 0, '', '3', '59', '2024-12-09', 204000.00, '', '3', '2024-12-14', '2', 'Communication Ok Have exp in calling but not a relevant one need to train and check in 7 days training h need to relocate too long distance', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '2024-12-09', 1, '2024-12-07 02:36:37', 60, '2024-12-07 04:17:08', 0, NULL, 1),
(23166, 'S.kannukiniyal', '4', '7708733240', '8056389951', 'kkannukiniyal@gmail.com', '2003-02-03', 21, '4', '2', 'Madhavi', 'Maid', 20000.00, 0, 12000.00, 18000.00, 'Kelavasthachavadi ...thanjavur', 'Kelavasthachavadi ...thanjavur', '2412070002', '', '2', 'upload_files/candidate_tracker/71570612238_CV2024053016472834.pdf', NULL, '1', '2024-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-07 05:42:55', 1, '2024-12-07 02:19:25', 0, NULL, 1),
(23167, 'Vishali.S', '4', '9095760719', '9095760720', 'vishalivishali843@gmail.com', '2001-06-20', 23, '4', '2', 'K.Saikumar', 'Farmer', 20000.00, 0, 15000.00, 15000.00, 'Thanjavur budalur', 'Thanjavur budalur', '2412070003', '', '2', 'upload_files/candidate_tracker/56291392307_fnlresume.pdf', NULL, '1', '2024-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-07 05:44:16', 1, '2024-12-07 12:29:35', 0, NULL, 1),
(23168, 'P. Jamesvasanthan', '6', '8939829945', '9025070014', 'jamesvasanthan041201@gmail.com', '2001-12-04', 23, '2', '2', 'J. Philip Durai Raj', 'Transport clerk', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'New washermenpet', '2412070004', '45', '1', 'upload_files/candidate_tracker/71126460586_JamesCV1.pdf', NULL, '1', '2024-12-07', 0, '', '3', '59', '2024-12-11', 192000.00, '', '3', '2024-12-11', '2', 'Fresher for our roles can be trained and need to check in 7 days', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-12-11', 1, '2024-12-07 05:54:43', 60, '2024-12-11 10:14:00', 0, NULL, 1),
(23169, 'Hasan Mohamed', '4', '8220246929', '', 'afsalhasan93@gmail.com', '2001-10-17', 23, '2', '2', 'Shahul hameed', 'Driver', 15000.00, 2, 0.00, 10000.00, 'valoothoor', 'valoothoor', '2412070005', '1', '1', 'upload_files/candidate_tracker/36667977259_CV2024120113570537.pdf', NULL, '1', '2024-12-07', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-07 06:11:54', 154, '2024-12-07 06:22:29', 0, NULL, 1),
(23170, 'S.Pitha', '4', '6382753488', '9025748247', 'Prithaswaminathan@gmail.com', '2003-03-11', 21, '4', '2', 'Selvarani Swaminathan', 'Housewife', 10000.00, 2, 10000.00, 15000.00, 'Pullavarayankudikadu', 'Pullavarayankudikadu', '2412070006', '', '2', 'upload_files/candidate_tracker/48271502007_ResumePritharesume.Format12.pdf', NULL, '1', '2024-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-07 06:12:43', 1, '2024-12-07 06:42:05', 0, NULL, 1),
(23171, 'Chandni', '4', '9677682631', '9578971372', 'Chandnirajan@gmail.com', '1999-11-25', 25, '2', '2', 'Thiyagarajan', 'Business', 200000.00, 1, 17000.00, 15000.00, 'Musiri', 'Musiri', '2412070007', '1', '2', 'upload_files/candidate_tracker/34480641962_11CHANDNI11063843.docx', NULL, '1', '2024-12-07', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-07 06:18:55', 154, '2024-12-07 06:22:19', 0, NULL, 1),
(23172, 'Sarubala', '4', '9361304467', '9443846816', 'sarubalasarubala2@gmail.com', '2001-06-04', 23, '2', '2', 'S.Elangovan', 'B.E', 10000.00, 2, 10000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2412070008', '1', '2', 'upload_files/candidate_tracker/51447173762_SarubalacvColorProfessionalResume07.pdf', NULL, '1', '2024-12-13', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is ok with the profile completed bE CS....6 month experience in front end developer without salary.. she tried in various IT SECTOR but have no chance,,,so she is joined in swiggy process in thanjavur reimen solution,,,,,,expected 13k..have laptop....father farmer and business,,,,immediate joining..kindly check once', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-07 06:24:58', 104, '2024-12-13 06:47:39', 0, NULL, 1),
(23173, '', '0', '9047634310', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412070009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-07 06:28:42', 0, NULL, 0, NULL, 1),
(23174, '', '0', '8807669016', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412070010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-07 06:49:36', 0, NULL, 0, NULL, 1),
(23175, '', '0', '6383328508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412070011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-07 06:51:25', 0, NULL, 0, NULL, 1),
(23176, 'Masthan ali k', '6', '6369088952', '8608606249', 'masthanvijay860860@gmail.com', '2003-11-26', 21, '2', '2', 'M. Kareem Basha', 'No', 12000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2412070012', '1', '1', 'upload_files/candidate_tracker/22596615378_MASTHANALI.pdf', NULL, '1', '2024-12-07', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not confident and not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-07 09:06:10', 154, '2024-12-07 06:22:54', 0, NULL, 1),
(23177, 'a.k.s. mathesh', '11', '9789611569', '9500594486', 'Mathesh.aks@gmail.com', '2000-07-15', 24, '6', '2', 'a.k. sivasankaran', 'landlord', 46000.00, 1, 0.00, 360000.00, 'madurai', 'madurai', '2412070013', '', '1', 'upload_files/candidate_tracker/5826098969_MatheshInternResume.pdf', NULL, '1', '2024-12-07', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expectation  high', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2024-12-07 09:08:20', 154, '2024-12-07 06:23:04', 0, NULL, 1),
(23178, 'D.harish', '6', '7695919726', '9940142279', 'harishharish02669@gmail.com', '2004-08-13', 20, '2', '2', 'Dhachinamoorthy', 'Mechanic', 20000.00, 1, 0.00, 18000.00, 'Tondiarpert', 'Tondiarpert', '2412070014', '1', '1', 'upload_files/candidate_tracker/47955713702_DocScanner25Jun2024929am.pdf', NULL, '1', '2024-12-09', 0, '', '3', '59', '2024-12-16', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok Fresher for our roles need to check in training and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '2024-12-16', 1, '2024-12-07 12:45:41', 60, '2024-12-14 06:32:05', 0, NULL, 1),
(23179, 'jai varshan v', '6', '7397474737', '', 'jaivarshan111@gmail.com', '2003-06-16', 21, '2', '2', 'vinod', 'marketing', 40000.00, 1, 0.00, 18000.00, 'kilpauk', 'kilpauk', '2412070015', '1', '2', 'upload_files/candidate_tracker/51376333419_VARSHANSUPDATEDRESUME2.pdf', NULL, '1', '2024-12-09', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he speaks but some attitude so let try 7 days then we will confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2024-12-07 01:00:37', 154, '2024-12-09 06:27:47', 0, NULL, 1),
(23180, 'goutham v', '6', '6379134565', '', 'goutham372003@gmail.com', '2003-07-03', 21, '2', '2', 'viswanathan s', 'bike work shop', 25000.00, 1, 0.00, 18000.00, 'chennai', 'Chennai', '2412070016', '1', '1', 'upload_files/candidate_tracker/59991102265_CV2024043000075855compressed.pdf', NULL, '1', '2025-01-03', 0, '', '3', '59', '2025-01-07', 192000.00, '', '3', '2025-01-20', '1', 'Fresher Communication Ok Open for Telecalling can give a try and check in training and confirm', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '2025-01-06', 1, '2024-12-07 01:07:47', 60, '2025-01-20 10:01:51', 0, NULL, 1),
(23181, 'abdul rahman', '6', '9840121906', '9940266126', 'abdulalikhan1309@gmail.com', '1999-09-13', 25, '2', '2', 'haneef alikhan', 'Customer service associate', 20000.00, 1, 20000.00, 25000.00, 'pallavaram', 'chennai', '2412090001', '1', '2', 'upload_files/candidate_tracker/8513411046_AbdulRahmanCV.pdf', NULL, '1', '2024-12-09', 5, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', 'experienced in customer support not in sales', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-12-09 02:13:48', 154, '2024-12-09 11:53:00', 0, NULL, 1),
(23182, 'Mohammed jumail', '6', '8190887683', '8220177963', 'mohammedjumail23@gmail.com', '2004-05-23', 20, '2', '2', 'Haja nijamudeen', 'Business', 250000.00, 1, 0.00, 16000.00, 'Nagapattinam', 'Porur', '2412090002', '1', '1', 'upload_files/candidate_tracker/38219166362_Jumail.pdf', NULL, '1', '2024-12-09', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill. and Health issues', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-09 04:38:32', 154, '2024-12-09 06:26:42', 0, NULL, 1),
(23183, 'Vetrivel', '6', '9444921080', '7550247575', 'vetrivelan2014@gmail.com', '2001-08-02', 23, '2', '2', 'Mohan ram', 'Carmera man', 15000.00, 0, 12900.00, 16000.00, 'Vadapalani', 'Vadapalani', '2412090003', '1', '2', 'upload_files/candidate_tracker/30677313664_VetriResume071220241.pdf', NULL, '1', '2024-12-09', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate was have experienced in other but not looking interested and Less active , not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-09 04:43:16', 154, '2024-12-09 06:30:06', 0, NULL, 1),
(23184, 'Boomika', '4', '9025745986', '', 'boomikaa09@gmail.com', '2003-07-09', 21, '2', '2', 'Dhanam', 'Farmer', 3000.00, 2, 0.00, 15000.00, 'Ariyalur', 'Ariyalur', '2412090004', '1', '1', 'upload_files/candidate_tracker/25635294847_CV2024112020523536.pdf', NULL, '1', '2024-12-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'long distance travel issue and not much profile...not to fit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-09 04:46:57', 154, '2024-12-09 06:27:12', 0, NULL, 1),
(23185, 'Keerthana', '4', '7339094436', '', 'keerthanasai333@gmail.com', '1997-03-07', 27, '2', '2', 'NA', 'Accounts payable', 20000.00, 1, 26000.00, 35000.00, 'Thanjavur', 'Thanjavur', '2412090005', '1', '2', 'upload_files/candidate_tracker/89287970902_62c26d4b4c55457abac9d6a9483b6733.pdf', NULL, '1', '2024-12-09', 3, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'high expectation and not fit for our domain', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-09 05:14:15', 154, '2024-12-09 06:27:24', 0, NULL, 1),
(23186, 'ASALAVAN P', '4', '9047969442', '', 'asalasalavan7@gmail.com', '2003-04-18', 21, '2', '2', 'Punniyamoorthy', 'farmer', 45000.00, 2, 0.00, 18000.00, 'K Mettu Street kandirathethem Ariyalur', 'k Mettu Street kandirathethem Ariyalur', '2412090006', '1', '1', 'upload_files/candidate_tracker/99657881518_reasumnew.pdf', NULL, '1', '2024-12-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1 and half years searching for job , telling interview issue, or referance , issue link that, have no disciple and not fit for telecalling', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-09 05:35:33', 153, '2024-12-10 09:07:39', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23187, 'vignesh', '6', '6369242269', '9585109050', 'vickykutta001@gmail.con', '2002-12-19', 21, '2', '2', 'selvaraj', 'showdirector', 30.00, 1, 0.00, 15000.00, 'dindigul', 'vadapalani', '2412090007', '50', '1', 'upload_files/candidate_tracker/30353898730_vickykutttapdf.pdf', NULL, '1', '2024-12-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'did not attend', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-12-09 06:06:12', 154, '2024-12-09 02:46:38', 0, NULL, 1),
(23188, 'SELVAM S', '6', '8056641598', '6383575761', 'selvam.suresh0706@gmail.com', '1998-06-07', 26, '1', '2', 'Swapna', 'Assistant manager', 15000.00, 1, 320000.00, 35000.00, 'Dharmapuri', 'Chennai', '2412090008', '', '2', 'upload_files/candidate_tracker/46168780228_SelvamSuresh2.pdf', NULL, '1', '2024-12-09', 30, '77794', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and convincing skill is low then Sustainability doubt ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-09 06:10:23', 154, '2024-12-09 06:30:45', 0, NULL, 1),
(23189, 'Eswari S', '4', '9677157508', '9840199846', 'seswari2499@gmail.com', '1999-04-24', 25, '2', '2', 'Sooriakannu', 'Business', 20000.00, 3, 20000.00, 25000.00, 'Chennai', 'Chennai', '2412090009', '50', '2', 'upload_files/candidate_tracker/2437886837_eswari1.pdf', NULL, '1', '2024-12-09', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2024-12-09 06:12:58', 104, '2024-12-09 06:33:38', 0, NULL, 1),
(23190, 'prem kumar', '6', '9360715954', '', 'pp4759415@gmail.com', '2004-05-01', 20, '2', '2', 'maha lakshmi', 'house working', 15000.00, 1, 0.00, 13000.00, 'perambur chennai', 'perambur chennai', '2412090010', '1', '1', 'upload_files/candidate_tracker/84925217322_RESUMEOFPREMKUMAR01.docx202410171614180000.pdf', NULL, '1', '2024-12-09', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and voice not well , he not understanding what im saying   and not fit for out side call so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-09 06:32:02', 154, '2024-12-09 06:30:19', 0, NULL, 1),
(23191, 'Abinaya', '6', '7094435906', '', 'abinayamanokar123@gmail.com', '2003-02-15', 21, '3', '2', 'Manokar', 'Farmer', 10000.00, 3, 15000.00, 18000.00, 'Thanjavur', 'Vadapalani', '2412090011', '', '2', 'upload_files/candidate_tracker/25223929112_ABIresumecompressed.pdf', NULL, '1', '2024-12-09', 15, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-09 06:37:56', 154, '2024-12-09 06:28:39', 0, NULL, 1),
(23192, 'Sahaya Ruban A', '6', '6381584486', '', 'eagleruban1720@gmail.com', '2001-05-31', 23, '2', '2', 'Anthony Xavier', 'Business', 25000.00, 1, 0.00, 15000.00, 'Alangulam, Tenkasi-627851', 'Ekkattuthangal, Chennai-600032', '2412090012', '45', '1', 'upload_files/candidate_tracker/51562477126_RubanResume1.pdf', NULL, '1', '2024-12-09', 0, '', '3', '59', '2024-12-10', 198000.00, '', '5', '1970-01-01', '2', 'Communication Ok Have Career Gap Fresher for Sales Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', 'having previous exp documents', '', '', '', 'P1287', '5151', '2024-12-10', 1, '2024-12-09 06:47:48', 60, '2024-12-09 07:22:07', 0, NULL, 1),
(23193, 'Prasanth', '6', '6374380276', '9551530982', 'prasanthshaa750@gmail.com', '2000-08-11', 24, '2', '2', 'Gajalakshmi', 'House keeping', 20000.00, 1, 0.00, 15000.00, 'Muthupet, thiruvarur district.', 'Chennai', '2412090013', '45', '1', 'upload_files/candidate_tracker/58768985453_BlackModernProfessionalResume202410082225500000.pdf', NULL, '1', '2024-12-09', 0, '', '3', '59', '2024-12-11', 192000.00, '', '5', '1970-01-01', '2', 'Good Candidate No UG only 12th Career Gap due to family and father health conditions Can be trained in our roles and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2024-12-11', 1, '2024-12-09 06:50:24', 60, '2024-12-09 04:39:23', 0, NULL, 1),
(23194, 'sivasurya r', '6', '9345071207', '', 'suryaking481@gmail.com', '2002-06-24', 22, '1', '2', 'rathakrishanan c', 'farmer', 30000.00, 2, 0.00, 18000.00, 'v.puthur meet street thirukkovilr villuppuram dt.', 'redhills', '2412090014', '', '1', 'upload_files/candidate_tracker/34550973226_sivasuryacv5.pdf', NULL, '1', '2024-12-09', 0, '00000', '3', '59', '2024-12-10', 192000.00, '', '5', '1970-01-01', '1', 'Reference Profile Fresher 5050 Sustainability need to see can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '2024-12-10', 1, '2024-12-09 07:17:46', 60, '2024-12-09 07:29:55', 0, NULL, 1),
(23195, 'Saranya.k', '6', '8148187373', '9952973370', 'saranyakalaiselvam6@gmail.com', '2003-03-28', 21, '2', '2', 'Saranya', 'Chief', 10000.00, 2, 0.00, 16.00, 'ADYAR', 'Adyar', '2412090015', '45', '2', 'upload_files/candidate_tracker/96888784061_saranyaResume.docx', NULL, '1', '2024-12-09', 15, '', '3', '59', '2024-12-12', 204000.00, '', '3', '2024-12-30', '2', 'Communication Ok Have exp in sales but not a relevant open for telecalling Can give a try and train', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2024-12-12', 1, '2024-12-09 07:36:45', 60, '2024-12-12 10:52:23', 0, NULL, 1),
(23196, 'Vishnupriya', '6', '9043544605', '7092771331', 'vishnupriya18.2003@gmail.com', '2003-05-26', 21, '3', '2', 'Kousalya', 'Housewife', 120000.00, 2, 13500.00, 16000.00, 'Chennai', 'Chennai', '2412090016', '', '2', 'upload_files/candidate_tracker/52323046327_resume091220241.pdf', NULL, '1', '2024-12-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good skill , let will see 7 days training Period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-09 07:41:06', 154, '2024-12-09 06:26:52', 0, NULL, 1),
(23197, 'Nantha Kumar', '13', '6369484309', '', 'nanthakumar636916@gmail.com', '2001-11-16', 23, '2', '2', 'Senthil Kumar', 'Textile merchant', 15000.00, 1, 0.00, 6000.00, 'Theni', 'Theni', '2412090017', '1', '1', 'upload_files/candidate_tracker/28630450012_Nanthakumarresumes.pdf', NULL, '1', '2024-12-09', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-12-09 08:10:34', 154, '2024-12-09 02:55:42', 0, NULL, 1),
(23198, 'Devadharshini m', '4', '9342461126', '7639398735', 'mdevadharshini38@gmail.com', '2003-07-09', 21, '2', '2', 'K.Malaiyappan', 'Security', 60000.00, 1, 0.00, 10.00, 'Thanjavur', 'Thanjavur', '2412090018', '1', '1', 'upload_files/candidate_tracker/6674509575_devadharshini.M.docx', NULL, '1', '2024-12-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for team not fit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-09 10:43:12', 154, '2024-12-19 12:55:44', 0, NULL, 1),
(23199, 'RAJKUMAR S', '6', '9698858630', '', 'rajkumar969886@gmail.com', '2000-09-05', 24, '2', '2', 'SATHISH KUMAR R', 'M com', 72000.00, 4, 0.00, 15000.00, '36/A Cuddalore main road bhuvanagiri Cuddalore', '69 kakkanji st pallikarani', '2412090019', '1', '1', 'upload_files/candidate_tracker/14428861536_RajKumarResume1.pdf', NULL, '1', '2024-12-10', 0, '', '3', '59', '2024-12-12', 192000.00, '', '3', '2024-12-13', '2', 'Communication Ok Fresher for our roles Need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '2024-12-12', 1, '2024-12-09 01:09:38', 60, '2024-12-12 10:57:57', 0, NULL, 1),
(23200, 'mirza mahdi hussain', '6', '9150748080', '', 'mirzamahdihussain7@gmail.com', '2004-06-09', 20, '2', '2', 'mirza mohamed sajjad', 'fresher', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2412090020', '1', '1', 'upload_files/candidate_tracker/40200760039_MIRZARESUME.pdf', NULL, '1', '2024-12-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and convincing skill is good once will try training period and once confirm DOJ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-09 01:19:57', 154, '2024-12-10 06:21:54', 0, NULL, 1),
(23201, '', '0', '7200302722', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412090021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-09 01:26:07', 0, NULL, 0, NULL, 1),
(23202, 'R.shalini', '4', '6374650873', '', 'shaliniramesh6374650873@gmail.com', '2003-09-27', 21, '2', '2', 'Ramesh', 'Telecaller', 30000.00, 2, 0.00, 15000.00, 'Gantharvakkottai', 'Sothuppalai', '2412100001', '1', '1', 'upload_files/candidate_tracker/577704854_shaliniresume.docx', NULL, '3', '2024-12-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She very low profile ...have now clear knowledge about job and not Fit for job', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-10 03:59:17', 154, '2024-12-10 06:19:29', 0, NULL, 1),
(23203, 'Sushma chitteni', '13', '8309521218', '', 'sushmachitteni@gmail.com', '2003-07-23', 21, '3', '2', 'Subbarao', 'Farmer', 20000.00, 1, 0.00, 370000.00, 'Srikalahasthi', 'Srikalahasthi', '2412100002', '', '1', 'upload_files/candidate_tracker/31948579414_FINALRESUME.docx', NULL, '1', '2024-12-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-10 05:00:24', 1, '2024-12-10 05:03:43', 0, NULL, 1),
(23204, 'Prem Kumar.R', '6', '8428466498', '', 'premkumar46r@gmail.com', '2001-02-19', 23, '2', '2', 'Lakshmi', 'Home', 20000.00, 0, 16000.00, 16000.00, 'No.23 raghupati nagar', 'Meenampakkam', '2412100003', '1', '2', 'upload_files/candidate_tracker/84345103908_PREMKUMARR.pdf', NULL, '1', '2024-12-10', 0, '', '3', '59', '2024-12-12', 204000.00, '', '1', '1970-01-01', '1', 'Communication OK 5050 Profile Career Gap few months exp in Star Health Documents verified Can check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CA130', '5151', '2024-12-12', 1, '2024-12-10 05:30:14', 60, '2024-12-12 10:28:51', 0, NULL, 1),
(23205, 'Abdul Rahman', '6', '8667568337', '', 'rahman241178602@gmail.com', '2002-11-24', 22, '2', '2', 'Jamaludeen', 'Business', 30000.00, 0, 2.40, 3.00, 'Chennai', 'Chennai', '2412100004', '50', '2', 'upload_files/candidate_tracker/50405489013_AbdulRahmanJResumeupdate.pdf', NULL, '1', '2024-12-10', 0, '', '3', '59', '2024-12-16', 192000.00, '', '3', '2025-01-10', '1', 'Fresher Need to train  alot will check in training and confirm his profile', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-12-16', 1, '2024-12-10 05:38:39', 60, '2024-12-14 06:33:27', 0, NULL, 1),
(23206, 'Priyadharshini', '6', '9025010583', '', 'priyamunu699@gmail.com', '1999-03-12', 25, '2', '2', 'Shanthi', 'House wife', 20000.00, 2, 14000.00, 17000.00, '2/3 thulasi street choolai, Chennai 112', 'Chennai', '2412100005', '50', '2', 'upload_files/candidate_tracker/18183804691_PRIYADHARSHINIlastest.pdf', NULL, '1', '2024-12-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'check his exisiting salary slip if she get 16k salary in hand means kindly proceed with same', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-10 06:08:55', 154, '2025-02-12 05:06:44', 0, NULL, 1),
(23207, 'sainathreddy', '6', '9441089628', '9590044345', 'SAINATHR267@GMAIL.COM', '2003-05-05', 21, '2', '2', 'maheshreddy', 'farmer', 86000.00, 1, 0.00, 27000.00, 'andhrapradesh', 'bangalore', '2412100006', '1', '1', 'upload_files/candidate_tracker/24422635746_Updatedresume.pdf', NULL, '1', '2024-12-10', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of knowledge and confident', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-12-10 06:22:54', 126, '2024-12-10 12:45:25', 0, NULL, 1),
(23208, 'Ayushma', '11', '9944427483', '9787775229', 'Ayushmakumaresan@gmail.com', '2003-05-03', 21, '2', '2', 'Kumaresan', 'Student', 35000.00, 1, 0.00, 500000.00, 'Pondicherry', 'Semenjeri', '2412100007', '1', '1', 'upload_files/candidate_tracker/48690163396_Ayushresumw1.pdf', NULL, '1', '2024-12-10', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected, high expectation', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2024-12-10 06:26:13', 154, '2024-12-10 06:23:11', 0, NULL, 1),
(23209, '', '0', '9360186681', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412100008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-10 06:33:17', 0, NULL, 0, NULL, 1),
(23210, 'Kesavan M', '13', '9360987435', '7200529106', 'Kesavankesav100@gmail.com', '2002-01-16', 22, '3', '2', 'Murugan R', 'Masan', 80000.00, 1, 0.00, 20000.00, 'No 13,E Nanthanar street,perungalathur', 'Chennai', '2412100009', '', '1', 'upload_files/candidate_tracker/37688385246_KESAVANM.pdf', NULL, '1', '2024-12-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-10 06:34:40', 1, '2024-12-10 06:41:23', 0, NULL, 1),
(23211, 'Yaswanth sai pathakamuri', '6', '9908189895', '', 'yaswanthsaip2002@gmail.com', '2002-04-02', 22, '2', '2', 'Pullanaidu pathakamuri', 'Farmer', 30000.00, 1, 0.00, 25000.00, 'Anantapur,Andhra Pradesh', 'Btm layout 1st stage, Bangalore', '2412100010', '1', '1', 'upload_files/candidate_tracker/5211242285_YESWANTHSAI21.pdf', NULL, '1', '2024-12-10', 0, '', '5', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'education background is Completely different doubt with Sustainability', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', '55671', '55555', '1970-01-01', 1, '2024-12-10 06:35:03', 126, '2024-12-10 12:48:48', 0, NULL, 1),
(23212, 'M B Divakar', '6', '9884191272', '', 'mbdivakarmmd@gmail.com', '2001-06-03', 23, '2', '2', 'M P Bhushanam', 'Fire and rescue service', 40000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2412100011', '50', '1', 'upload_files/candidate_tracker/59113300265_resumedivakar.pdf', NULL, '1', '2024-12-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', 'will come tomorrow', '', '', '', '', '', '1970-01-01', 1, '2024-12-10 06:37:57', 154, '2024-12-10 02:51:29', 0, NULL, 1),
(23213, 'V.srinivas', '6', '9655933819', '', 'ktmseenu2510@gmail.com', '2002-10-25', 22, '1', '2', 'S.vadivelu', 'Tncsc', 100000.00, 1, 0.00, 20000.00, 'Saithapet', 'Saithapet', '2412100012', '', '1', 'upload_files/candidate_tracker/1535498334_Kaagaz202412101226104128011.pdf', NULL, '1', '2024-12-10', 0, '00000', '3', '59', '2024-12-12', 192000.00, '', '3', '2025-02-06', '2', 'Communication Ok Fresher for Sales Can give a try and check Internal Reference', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '2024-12-12', 1, '2024-12-10 06:43:58', 60, '2024-12-11 07:56:21', 0, NULL, 1),
(23214, 'Mohamed azarudeen', '6', '9629960110', '8015150086', 'Mohamedfarvesh0504@gmail.com', '2000-04-05', 24, '1', '2', 'Rahamathullah', 'Voice', 40000.00, 1, 15000.00, 19000.00, 'Ulundurpet', 'Karapakkam', '2412100013', '', '2', 'upload_files/candidate_tracker/67996750907_AzarresumefresherCopy.pdf', NULL, '2', '2024-12-10', 9, 'Danush', '3', '59', '2024-12-18', 192000.00, '', '5', '1970-01-01', '1', 'Communication OK Fresher for our roles  Need to check in 7 days training', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '2024-12-18', 1, '2024-12-10 07:09:19', 60, '2024-12-13 07:09:33', 0, NULL, 1),
(23215, 'Hari Haran A', '6', '9962880182', '9940584362', 'harihariha62@gmail.com', '2002-01-29', 22, '2', '2', 'Alagesan R', 'Two wheeler mechanic', 30000.00, 1, 0.00, 17000.00, 'GP madhavan street dharga road zamin pallavaram', 'GP madhavan street dharga road zamin pallavaram', '2412100014', '1', '1', 'upload_files/candidate_tracker/65787480756_hariharanresume.pdf', NULL, '1', '2024-12-10', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1027', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-10 08:03:54', 154, '2024-12-10 06:19:19', 0, NULL, 1),
(23216, 'Premkumar U', '6', '8248581741', '9941556015', 'Upremkumar15785@gmail.com', '1998-04-11', 26, '2', '2', 'Chennai Corporation', 'Health inspector', 55000.00, 0, 15000.00, 20000.00, 'Korukkupet sigirinthapalayam chennai 21', 'Moolakadai pandiyan theatre oppsite', '2412100015', '1', '2', 'upload_files/candidate_tracker/27368192902_Prem.pdf', NULL, '3', '2024-12-10', 5, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and convincing skill is low then interested in customer support', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1027', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-10 08:14:36', 154, '2024-12-10 06:24:28', 0, NULL, 1),
(23217, '', '0', '8946057756', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412100016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-10 11:34:10', 0, NULL, 0, NULL, 1),
(23218, '', '0', '8838125228', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412100017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-10 04:13:22', 0, NULL, 0, NULL, 1),
(23219, '', '0', '8639007271', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412110001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-11 03:38:57', 0, NULL, 0, NULL, 1),
(23220, '', '0', '6383364697', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412110002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-11 03:47:29', 0, NULL, 0, NULL, 1),
(23221, 'anisha begum', '4', '6369746925', '6380643377', 'anishaazeem03@gmail.com', '2003-01-03', 21, '2', '1', 'ameer basha', 'driver', 750000.00, 0, 21000.00, 23000.00, 'tirplicane', 'tirplicane', '2412110003', '50', '2', 'upload_files/candidate_tracker/92720972467_ANISHABEGUM.A.pdf', NULL, '1', '2024-12-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-12-11 05:37:22', 154, '2024-12-11 02:33:53', 0, NULL, 1),
(23222, '', '0', '9840650028', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412110004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-11 05:39:02', 0, NULL, 0, NULL, 1),
(23223, 'Ravi Chandran R', '6', '7200301667', '', 'srameshramesh603@gmail.com', '2003-07-10', 21, '2', '2', 'Ramesh.S', 'Driver', 120000.00, 1, 0.00, 250000.00, 'Tindivanam', 'Porur', '2412110005', '50', '1', 'upload_files/candidate_tracker/28321105199_RRavichandranResume.pdf', NULL, '1', '2024-12-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not Interested in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-12-11 06:09:04', 154, '2024-12-11 11:58:42', 0, NULL, 1),
(23224, '', '0', '8800880071', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412110006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-11 06:33:01', 0, NULL, 0, NULL, 1),
(23225, 'Sasi. m', '4', '7603890951', '', 'sasimanickam137@gmail.com', '2003-07-19', 21, '2', '2', 'Malathi', 'Tailor', 5000.00, 1, 0.00, 15000.00, '12, Sadhurkadu, Thirunallur, Orathanadu( T. K)', '12, Sadhirkadi, Thirunallur, Orathanadu (T. K)', '2412110007', '1', '1', 'upload_files/candidate_tracker/48250872100_DocScannerDec1120241215PM.pdf', NULL, '1', '2024-12-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is not fit,,, concentrated in govt job only', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1022', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-11 06:40:03', 154, '2024-12-11 05:01:17', 0, NULL, 1),
(23226, '', '0', '6374025591', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-11 07:14:36', 0, NULL, 0, NULL, 1),
(23227, 'Karthick', '13', '9360948863', '9444931172', 'karthicksaravanan449@gmail.com', '2002-05-04', 22, '3', '2', 'Saravanan', 'No', 500000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2412110009', '', '1', 'upload_files/candidate_tracker/87276315552_KarthickResume.pdf', NULL, '1', '2024-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-11 07:43:03', 1, '2024-12-11 07:53:09', 0, NULL, 1),
(23228, 'Kishore G', '6', '9080654263', '', 'kishoregnanasambandam@gmail.com', '1999-09-04', 25, '2', '2', 'Parent', 'Farmer', 70000.00, 1, 0.00, 15.00, 'Nagapattinam', 'Chennai', '2412110010', '50', '1', 'upload_files/candidate_tracker/62164118102_Kishoreres.pdf', NULL, '1', '2024-12-12', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and convincing skill low and he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-11 07:51:40', 154, '2024-12-12 06:55:59', 0, NULL, 1),
(23229, '', '0', '8762183037', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412110011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-11 08:01:00', 0, NULL, 0, NULL, 1),
(23230, 'Sreekanth', '5', '9704739696', '9010361685', 'sreekanthburgala@gmail.com', '2001-03-20', 23, '3', '2', 'Venkata ramana', 'Business', 10000.00, 0, 0.00, 15000.00, 'Tadipatri', 'Tadipatri', '2412120001', '', '1', 'upload_files/candidate_tracker/15027757858_pythondeveloperbcomcomputer.pdf', NULL, '1', '2024-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-12 04:32:33', 1, '2024-12-12 04:36:49', 0, NULL, 1),
(23231, 'sarabesh', '4', '6383175875', '', 'sarabesh0306@gmail.com', '2003-06-03', 21, '2', '2', 'ayaprakash', 'agriculture', 3.50, 1, 0.00, 2.50, 'MANNARGUDI', 'MANNARGUDI', '2412120002', '1', '1', 'upload_files/candidate_tracker/56661722567_SARABESHRESUME.pdf', NULL, '1', '2024-12-12', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales , sustainability issue intrsted in foreign only', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-12 05:01:52', 154, '2024-12-12 06:55:16', 0, NULL, 1),
(23232, '', '0', '7373905577', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412120003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-12 05:03:58', 0, NULL, 0, NULL, 1),
(23233, 'SELVARASAN S', '6', '7806982066', '9344653737', 'selvarasan3062001@gmail.com', '2001-06-30', 23, '2', '2', 'SUBRAMANI', 'Farmar', 70000.00, 1, 0.00, 20000.00, '270, Ambedkar (St),Munnur Mangalam, TvMalai,606705', 'Nandanam, Chennai,600035', '2412120004', '1', '2', 'upload_files/candidate_tracker/25717215942_SELVARESUME1compressed.pdf', NULL, '1', '2024-12-12', 0, '', '3', '59', '2024-12-16', 204000.00, '', '3', '2025-03-01', '1', 'Communication Ok Have exp in Telesales Relevant Exp can be trained need to check in training and confirm', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1066', '5151', '2024-12-16', 1, '2024-12-12 05:25:59', 60, '2024-12-14 05:35:18', 0, NULL, 1),
(23234, 'SathishKumar', '4', '9080026994', '', 'sathishvarathan1998@gmail.com', '1998-05-28', 26, '2', '2', 'Varatharajan', 'BE ECE', 12000.00, 2, 25000.00, 25000.00, 'Chennai', 'Chennai', '2412120005', '50', '2', 'upload_files/candidate_tracker/9874198365_MinimalistWhiteandGreyProfessionalResume2.pdf', NULL, '1', '2024-12-12', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-12 06:18:46', 1, '2024-12-12 06:23:01', 0, NULL, 1),
(23235, 'Praven kumar s', '6', '9600107065', '7305468842', 'Pk7431240@gmail.com', '2003-10-15', 21, '2', '2', 'Selvakumar', 'Business (grossery shop)', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2412120006', '57', '1', 'upload_files/candidate_tracker/78473110074_resumecompressed.pdf', NULL, '1', '2024-12-12', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and convincing skill low and he is interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-12 06:26:50', 154, '2024-12-12 06:55:35', 0, NULL, 1),
(23236, 'Celciya dhiviya varthini R', '4', '9363358306', '6369450142', 'Celciyadhiviyavarthini05@gmail.com', '2004-04-16', 20, '2', '2', 'Romiyo Antrowes m', 'Electrician', 72000.00, 1, 0.00, 18000.00, 'Tanjore', 'Tanjore', '2412120007', '1', '1', 'upload_files/candidate_tracker/26365052576_ResumeCELCIYADHIVIYAVARTHINI.RFormat1.pdf', NULL, '1', '2024-12-12', 0, '', '3', '59', '2024-12-18', 150000.00, '', '4', '2025-01-10', '1', 'Communication Ok Can be trained in our roles need to check in training and confirm', '1', '1', '4', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '2024-12-18', 1, '2024-12-12 06:58:48', 60, '2024-12-17 07:04:37', 0, NULL, 1),
(23237, 'Rahul', '4', '9659272341', '', 'rahulelangovan2000@gmail.com', '2000-07-05', 24, '2', '2', 'R. Elangovan', 'Own business', 5000.00, 1, 0.00, 180000.00, 'Sirklai', 'ambattur Chennai', '2412120008', '50', '1', 'upload_files/candidate_tracker/66325300283_Rahulresume.pdf', NULL, '1', '2024-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-12 07:28:21', 1, '2024-12-12 07:34:12', 0, NULL, 1),
(23238, 'Joseph Manvel Raja', '4', '9003326609', '', 'josephraja0033@gmail.com', '1998-10-22', 26, '2', '2', 'Jeyaraj', 'Farmer', 10000.00, 1, 300000.00, 500000.00, 'Theni', 'Theni', '2412120009', '50', '2', 'upload_files/candidate_tracker/2571260590_JosephResumeQAEngineer1.pdf', NULL, '2', '2024-12-12', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-12 09:32:23', 1, '2024-12-12 09:35:34', 0, NULL, 1),
(23239, 'KARTHICK.S', '4', '8110931451', '8925673816', 'karthik42149@gmail.com', '2002-06-01', 22, '2', '2', 'SAKTHIVEL', 'WELDER', 25000.00, 4, 16000.00, 18000.00, '2/535 XAVIER NAGAR VILAR ROAD THANJAVUR', 'PANDIYAN HOLO PLACK', '2412130001', '1', '2', 'upload_files/candidate_tracker/36637420171_DOC20241202WA0029.1.pdf', NULL, '1', '2024-12-13', 20, '', '3', '59', '2024-12-26', 180000.00, '', '5', '1970-01-01', '1', 'Communicaiton Ok Have Exp but not a relevant one can give a try and check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2024-12-26', 1, '2024-12-13 05:22:34', 60, '2024-12-24 05:54:50', 0, NULL, 1),
(23240, 'M.Sathish Kumar', '6', '7092509832', '8270024408', 'shobanbabu726@gmail.com', '2001-11-26', 23, '2', '2', 'Poongothai', 'Security', 10.00, 1, 0.00, 12000.00, 'No.73 C7 block pwd quarters saidapet Chennai', 'No.73 C7 block pwd quarters saidapet Chennai', '2412130002', '1', '1', 'upload_files/candidate_tracker/27486755002_SathishKumarResume202423rdnov1.pdf', NULL, '1', '2024-12-13', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not having confidence and not ok with timing', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-13 05:34:19', 104, '2024-12-13 06:48:09', 0, NULL, 1),
(23241, 'Mohamed Jasim', '6', '8300124520', '', 'mohamedjasim005@gmail.com', '2001-02-05', 23, '2', '2', 'Jahir hussain', 'Driver', 18000.00, 2, 0.00, 20000.00, 'Kumbakonam', 'Chennai', '2412130003', '50', '1', 'upload_files/candidate_tracker/16550439507_MDJasimcv.pdf', NULL, '1', '2024-12-13', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interested IT related', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-13 05:43:00', 104, '2024-12-13 06:46:49', 0, NULL, 1),
(23242, 'M. Manoj', '6', '7708274728', '8608413521', 'Mmanoj0584@gmail.com', '2004-02-26', 20, '2', '2', 'M. Petchiammal', 'Construction works', 85000.00, 0, 0.00, 18000.00, 'Parvathipuram, Tenkasi', 'DMS, teynampet', '2412130004', '1', '1', 'upload_files/candidate_tracker/84223260884_M.MANOJRESUMEPR.docx', NULL, '1', '2024-12-13', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication  and voice ok but salary exp is more high and aftre 4 month join for police course , so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-13 07:14:35', 104, '2024-12-13 06:48:26', 0, NULL, 1),
(23243, 'Mohana bala', '4', '8056393185', '', 'Mohanamohanabala2@gmail.com', '2003-04-13', 21, '2', '2', 'Palanisamy', 'Plumber', 10000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2412130005', '1', '1', 'upload_files/candidate_tracker/99141629460_mohanaRESUME.pdf', NULL, '1', '2024-12-13', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for tele calling,,,,have no option to select', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-13 08:53:14', 104, '2024-12-13 06:47:01', 0, NULL, 1),
(23244, 'Muthukumar S', '6', '9087949522', '', 'muthukumar.sundaramoorthy1@gmail.com', '2004-01-12', 20, '2', '2', 'Sundaramoorthy R', 'Farmer', 10000.00, 1, 0.00, 18000.00, 'Melmarvathur', 'Chennai', '2412130006', '50', '1', 'upload_files/candidate_tracker/76976151094_MUTHUKUMARSUNDARAMOORTHYupdated.pdf', NULL, '1', '2024-12-14', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok, Communication Good, Pls check Sustainability. Kindly confirm the salary and joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-12-13 10:16:33', 153, '2024-12-14 12:39:54', 0, NULL, 1),
(23245, 'K.SANTHOSH', '6', '9600134761', '9940378220', 'santhosh2003109@gmail.com', '2003-10-09', 21, '2', '2', 'N.krishnamoorthy', 'Watchman', 15000.00, 0, 0.00, 14000.00, '21/33 nettal garden 2nd Street perambur Chennai 11', '21/33 nettal garden 2nd Street perambur Chennai-11', '2412130007', '50', '1', 'upload_files/candidate_tracker/2556187001_DOC20240710WA0000.202411201716070000.pdf', NULL, '1', '2024-12-14', 0, '', '3', '59', '2024-12-17', 192000.00, '', NULL, '2025-07-30', '1', 'Communication Ok Fresher Can be trained in our roles need to check and confirm in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2024-12-17', 1, '2024-12-13 11:11:27', 60, '2024-12-14 03:50:49', 0, NULL, 1),
(23246, 'Sandhiya.S', '6', '7010430290', '8608251258', 'sandhiya.subramani03@gmail.com', '2003-10-10', 21, '2', '2', 'Subramani', 'Delivery man', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2412130008', '1', '1', 'upload_files/candidate_tracker/91287156031_SandhiyaResume.pdf', NULL, '1', '2024-12-14', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication  ok but voice not good and very low voice , aslo  very long distance so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-13 01:35:42', 153, '2024-12-14 12:39:02', 0, NULL, 1),
(23247, 'Aruna P', '6', '8124788643', '9092776200', 'arunapalani513@gamil.com', '2003-04-05', 21, '2', '2', 'Palani M', 'Cattering service', 35000.00, 2, 10000.00, 20000.00, 'Chennai', 'Chennai', '2412140001', '1', '2', 'upload_files/candidate_tracker/53380015177_Arunaresume.pdf', NULL, '1', '2024-12-14', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-14 04:26:50', 153, '2024-12-14 12:40:14', 0, NULL, 1),
(23248, 'sundareshwar s', '6', '8825552988', '', 'sundareshwar562@gmail.com', '2001-11-28', 23, '2', '2', 'r. srinivasan', 'business', 25000.00, 1, 0.00, 18000.00, 'saidapet chennai', 'saidapet chennai', '2412140002', '1', '1', 'upload_files/candidate_tracker/35356353756_ResumeTESTING.pdf', NULL, '1', '2024-12-14', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was ok with communication but  not  ok with salary with our standards', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-14 05:09:05', 153, '2024-12-14 12:39:28', 0, NULL, 1),
(23249, 'liyaquath ali', '6', '7397426686', '', 'liyaquathali11@gmail.com', '2003-01-11', 21, '2', '2', 'mohammed rafic', 'business', 20000.00, 1, 0.00, 18000.00, 'saidapet chennai', 'saidapet chennai', '2412140003', '1', '1', 'upload_files/candidate_tracker/65219262340_Liyaquathali2compressed.pdf', NULL, '1', '2024-12-14', 0, '', '3', '59', '2024-12-16', 192000.00, '', '5', '1970-01-01', '1', '9 months Exp in Telecollection Fresher for Sales need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '2024-12-16', 1, '2024-12-14 05:09:36', 60, '2024-12-14 04:13:53', 0, NULL, 1),
(23250, 'Sanjay Kumar M', '6', '9791056385', '9003054524', 'sanjaysandy683@gmail.com', '2004-03-01', 20, '2', '2', 'Meenakshi Sundaram', 'Export company', 100000.00, 1, 0.00, 16.00, 'Chennai', 'Chennai', '2412140004', '50', '1', 'upload_files/candidate_tracker/30654259653_WhiteBlackMinimalistProfessionalResume202405250025570000.pdf', NULL, '1', '2024-12-14', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and vocie not ok and past 2 month work from starhealth insurance , after family issue relave the job , after not try any job future plan is business so not fit for my team ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-14 05:27:57', 153, '2024-12-14 12:39:17', 0, NULL, 1),
(23251, 'Sri Krishna', '6', '8939121476', '8807221014', 'krishsri177@gmail.com', '2003-09-06', 21, '2', '2', 'Venkatesan', 'Auto driver', 1600000.00, 1, 0.00, 16.00, 'Chennai', 'Chennai', '2412140005', '50', '1', 'upload_files/candidate_tracker/3486659358_Srikrishnav.pdf', NULL, '1', '2024-12-14', 0, '', '3', '59', '2024-12-16', 192000.00, '', '3', '2025-04-30', '2', 'Communication Ok Can give a try in training and confirm them', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-12-16', 1, '2024-12-14 05:28:12', 60, '2024-12-14 04:02:20', 0, NULL, 1),
(23252, 'Kavya', '4', '8939728244', '', 'gskavya143@gmail.com', '2004-01-18', 20, '2', '2', 'M Gunasekar', 'Private company', 86000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2412140006', '50', '1', 'upload_files/candidate_tracker/12134145939_kavya.docx', NULL, '1', '2024-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-14 06:13:34', 1, '2024-12-14 06:17:16', 0, NULL, 1),
(23253, 'B.revathi', '4', '9840679306', '', 'Revi.babu@gmail.com', '1990-07-03', 34, '2', '1', 'Babu Pugazhenthi', 'Retird', 12000.00, 1, 18000.00, 20000.00, 'Ramapuram chennai', 'Ramapuram chennai', '2412140007', '50', '2', 'upload_files/candidate_tracker/53153974361_RevathiResume.docx', NULL, '1', '2024-12-17', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-14 06:31:06', 1, '2024-12-14 07:35:50', 0, NULL, 1),
(23254, 'Krishna veni A', '6', '6383424023', '9159588233', 'veni16112001@gmail.com', '2001-11-17', 23, '2', '2', 'Chitra A', 'Housewife', 20.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Chennai', '2412140008', '1', '1', 'upload_files/candidate_tracker/73330465639_krishnaveniresume.docx', NULL, '1', '2024-12-14', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill and long distance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-14 06:46:59', 153, '2024-12-14 02:48:19', 0, NULL, 1),
(23255, 'Bala Kumar', '6', '8610242442', '9715681564', 'balaperiyasamy9797@gmail.com', '1997-09-03', 27, '2', '2', 'Periyasamy', 'Farming', 60000.00, 1, 14000.00, 16000.00, 'Tirupur', 'Tirupur', '2412140009', '50', '2', 'upload_files/candidate_tracker/51562221326_Bala121224.pdf', NULL, '1', '2024-12-16', 5, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was good at communication and interested in sales and have experience in vizza for 5months kannan sir also checked we shall provide 16k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-14 07:07:21', 154, '2024-12-16 06:38:23', 0, NULL, 1),
(23256, 'Vaithish palanisamy', '13', '7904881081', '', 'vaithishpalanisamy@gmail.com', '2002-04-07', 22, '6', '2', 'Palanisamy,sudha', 'Business', 20000.00, 2, 0.00, 350000.00, 'Chennai', 'Chennai', '2412140010', '', '1', 'upload_files/candidate_tracker/57855626994_VaithishPalanisamyresume2.pdf', NULL, '1', '2024-12-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-14 09:01:00', 1, '2024-12-14 09:04:15', 0, NULL, 1),
(23257, 'S.Akash', '4', '7094028771', '', 'Abiakash252001@gmail.com', '2001-05-02', 23, '2', '2', 'Mr D santha moorthi', 'Business', 40000.00, 0, 0.00, 18000.00, 'Krishnagiri', 'Guindy', '2412140011', '50', '1', 'upload_files/candidate_tracker/10997909774_SAkashResume.docx', NULL, '1', '2024-12-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-14 09:43:14', 1, '2024-12-14 09:53:02', 0, NULL, 1),
(23258, 'R.H.KAVIYA', '4', '9360376589', '9360840056', 'kaviyarajasekar951@gmail.com', '2002-09-04', 22, '2', '1', 'Hariharan', 'Ac techinician', 20000.00, 1, 16000.00, 20000.00, 'Porur', 'Porur', '2412140012', '50', '2', 'upload_files/candidate_tracker/2719087906_CV2024121213040847.pdf', NULL, '1', '2024-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-14 09:53:17', 1, '2024-12-14 10:05:07', 0, NULL, 1),
(23259, 'prem kumar', '6', '6374797277', '', 'premjii082003@gmail.com', '2003-08-08', 21, '2', '2', 'none', 'one', 200000.00, 3, 0.00, 250000.00, 'chennai', 'chennai adyar', '2412140013', '50', '1', 'upload_files/candidate_tracker/50577052897_Premcvnew.pdf', NULL, '1', '2024-12-16', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-14 10:03:19', 154, '2024-12-16 06:34:59', 0, NULL, 1),
(23260, 'Anupriya', '6', '8680895056', '7358313856', 'Anupriya143413@gmail.com', '2002-02-28', 22, '2', '2', 'S.Annamalai', 'Security', 40000.00, 1, 12000.00, 15000.00, 'Perungudi,Chennai', 'Perungudi,Chennai', '2412140014', '50', '2', 'upload_files/candidate_tracker/22832725226_DOC20240413WA00021714392506739Anupriya.pdf', NULL, '1', '2024-12-16', 15, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-14 10:23:41', 154, '2024-12-16 06:35:10', 0, NULL, 1),
(23261, 'kishore', '6', '9159418335', '', 'r.k.kishore2003@gmail.com', '2003-03-01', 21, '2', '2', 'Renukadevi', 'Daily wages', 7000.00, 0, 0.00, 17000.00, 'Chennai', 'Chennai', '2412140015', '1', '1', 'upload_files/candidate_tracker/98387813621_KISHORERESUME202411271901420000.pdf', NULL, '1', '2024-12-16', 0, '', '3', '59', '2024-12-18', 192000.00, '', '3', '2024-12-20', '2', 'Freseher Communication Ok Can be trained in our roles need to check in training and confirm', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '2024-12-18', 1, '2024-12-14 01:03:45', 60, '2024-12-16 04:47:38', 0, NULL, 1),
(23262, 'Shek Mufeed', '6', '9206266573', '9945608654', 'eedmuf7@gmail.com', '1995-05-10', 29, '1', '1', 'Shaheena', 'Telecalling', 35000.00, 1, 30000.00, 30000.00, 'Banashankari Kaveri nagar', 'Arakeri Laxmi layout banarghatta road', '2412150001', '', '2', 'upload_files/candidate_tracker/23698803955_CV2024120901420617.pdf', NULL, '1', '2024-12-16', 0, 'Arshiya begum', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'looking for high package', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2024-12-15 06:59:43', 104, '2024-12-19 06:56:53', 0, NULL, 1),
(23263, 'Sathish', '6', '9361433406', '9894833895', 'Kslsathish7@gmail.com', '2000-05-08', 24, '2', '2', 'M.Sanjay', 'Gold smith', 15000.00, 1, 0.00, 14000.00, 'Five lamps Karaikudi', 'Ganga nagar Valasaravakkam', '2412160001', '50', '1', 'upload_files/candidate_tracker/311804248_Sathish.pdf', NULL, '1', '2024-12-16', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales and his dress code was not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-16 04:57:18', 154, '2024-12-16 06:37:01', 0, NULL, 1),
(23264, 'S.Abitha Parveen', '6', '8015834407', '', 'abithasweety018@gmail.com', '1997-01-18', 27, '2', '1', 'Mohammed Ali Jinnah', 'Teacher', 20000.00, 1, 14500.00, 16000.00, 'Chennai', 'Chennai', '2412160002', '57', '2', 'upload_files/candidate_tracker/78201984225_Abitha.pdf', NULL, '1', '2024-12-16', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales and her was not enough to pitch sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-16 05:27:11', 154, '2024-12-16 06:37:12', 0, NULL, 1),
(23265, 'Prathip Kumar k', '6', '9345317065', '8778181725', 'prathipkumar222003@gmail.com', '2003-07-22', 21, '2', '2', 'KANNAN', 'Business', 8000.00, 1, 0.00, 20000.00, 'Chennai', 'T.Nagar', '2412160003', '1', '1', 'upload_files/candidate_tracker/51033619274_PRATHIPRESUME1.pdf', NULL, '1', '2024-12-16', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate convincing skill and communication is low and interested in Customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-16 05:28:42', 154, '2024-12-16 06:40:12', 0, NULL, 1),
(23266, 'Priyanka P', '11', '8825530748', '6369617149', 'priyankasakthi1013@gmail.com', '2003-10-10', 21, '2', '2', 'Pandian P', 'Driver (MTC)', 47000.00, 1, 0.00, 4000.00, 'Villupuram district', 'Taramani,Chennai', '2412160004', '1', '1', 'upload_files/candidate_tracker/37137751006_Priyanka.P202411111430480000.pdf', NULL, '1', '2024-12-16', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2024-12-16 05:30:32', 154, '2024-12-16 06:39:48', 0, NULL, 1),
(23267, 'charan', '6', '9840775091', '7395957276', 'charanrc1875@gmail.com', '2000-04-17', 24, '2', '2', 'manivannan', 'btech deee', 200000.00, 1, 14200.00, 170000.00, 'chennai', 'vyasarpadi', '2412160005', '1', '2', 'upload_files/candidate_tracker/51171926310_Charannew.pdf', NULL, '1', '2024-12-16', 0, '', '3', '59', '2025-01-02', 204000.00, '', '3', '2025-01-06', '1', 'Communication Ok can be trained in our roles and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '2025-01-02', 1, '2024-12-16 05:33:11', 60, '2024-12-28 06:26:20', 0, NULL, 1),
(23268, 'Afrin Fathima M', '6', '6374523509', '', 'afrinfathima011@gmail.com', '2002-09-08', 22, '2', '2', 'Mumthaj Begum M', 'House wife', 15000.00, 2, 0.00, 20000.00, 'Old washermanpet', 'Old washermanpet', '2412160006', '45', '1', 'upload_files/candidate_tracker/99480964537_M.AfrinfathimaResume.pdf', NULL, '1', '2024-12-16', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-16 05:43:50', 154, '2024-12-16 06:35:55', 0, NULL, 1),
(23269, '', '0', '8045118540', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412160007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-16 05:52:37', 0, NULL, 0, NULL, 1),
(23270, 'reshmi', '6', '9176160914', '', 'reshmiramesh2809@gmail.com', '2003-09-28', 21, '2', '2', 'rameshbabu', '-', 300000.00, 1, 0.00, 20000.00, 'chenn', 'chenn', '2412160008', '56', '1', 'upload_files/candidate_tracker/82002909701_Reshmi202406301247000000.pdf', NULL, '1', '2024-12-16', 0, '', '3', '59', '2024-12-23', 168000.00, '', '3', '2024-12-24', '2', 'Fresher Communication Ok Can be trained in our roles and check in the training period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '2024-12-23', 1, '2024-12-16 06:05:03', 60, '2024-12-17 02:57:09', 0, NULL, 1),
(23271, 'Geetha.T', '6', '7395951027', '9884412388', 'geethammu1020@gmail.com', '2002-12-10', 22, '2', '2', 'R.Thandavarayan', 'Business', 25000.00, 2, 0.00, 15000.00, 'Thousand lights', 'Thousand lights', '2412160009', '56', '1', 'upload_files/candidate_tracker/88582400816_DOC20241128WA0003.docx', NULL, '1', '2024-12-17', 0, '', '3', '59', '2024-12-26', 168000.00, '', '3', '2024-12-26', '2', 'Communication Ok Fresher Need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '2024-12-26', 1, '2024-12-16 06:10:07', 60, '2024-12-24 05:56:01', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23272, 'faizel rahman', '6', '8754468033', '', 'faizel33.fr@gmail.com', '1999-02-04', 25, '2', '1', 'shifana', 'house wife', 30000.00, 2, 0.00, 200000.00, 'kodungaiyur', 'kodungaiyur', '2412160010', '1', '1', 'upload_files/candidate_tracker/25899125154_CV20210317073357.pdf', NULL, '1', '2024-12-16', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was not at all communicating and not so interested in sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-16 06:20:33', 154, '2024-12-16 06:37:58', 0, NULL, 1),
(23273, 'Deepika.s', '6', '8056118540', '', 'sridharkavi2002@gmail.com', '2004-06-01', 20, '2', '2', 'Sridhar.E', 'Supervisor', 18000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2412160011', '56', '1', 'upload_files/candidate_tracker/13326086323_DocumentfromDeez.pdf', NULL, '1', '2024-12-17', 0, '', '3', '59', '2024-12-23', 168000.00, '', '3', '2024-12-27', '1', 'Communication Ok Need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55645', '5151', '2024-12-23', 1, '2024-12-16 06:22:01', 60, '2024-12-21 07:14:14', 0, NULL, 1),
(23274, 'Mathumitha.M', '6', '7395967724', '9498076793', 'mithamathu1924@gmail.com', '2001-02-24', 23, '2', '2', 'Manimaran.S Suganthi.V', 'Real estate business', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2412160012', '50', '1', 'upload_files/candidate_tracker/48015254208_Resume27.11.2412.pdf', NULL, '1', '2024-12-16', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate only interest in accounts only and communication also not well , so  not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-16 06:28:58', 154, '2024-12-16 06:39:37', 0, NULL, 1),
(23275, 'Tejashwini', '6', '7397006597', '7010686079', 'csetejashwini@gmail.com', '2003-05-24', 21, '2', '2', 'Umagandan', 'Farmer', 70000.00, 2, 0.00, 20.00, 'Thiruchitambalam, pattukkotai, Thanjavur', 'Kodampakam', '2412160013', '50', '1', 'upload_files/candidate_tracker/9528890107_TejashwiniResume.pdf', NULL, '1', '2024-12-16', 0, '', '3', '59', '2024-12-17', 168000.00, '', '3', '2025-05-06', '2', 'Communication Ok Fresher for our roles  Need to train in training period and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '2024-12-17', 1, '2024-12-16 06:46:54', 60, '2024-12-17 10:19:07', 0, NULL, 1),
(23276, '', '0', '9962684269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412160014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-16 06:49:42', 0, NULL, 0, NULL, 1),
(23277, 'Hemashree S', '6', '9962474994', '', 'Shemashree584@gmail.com', '2004-04-27', 20, '2', '2', 'Rajeshwari S', 'Government employee', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2412160015', '56', '1', 'upload_files/candidate_tracker/42255897806_HemashreeResumeNewwithoutPIC.pdf', NULL, '1', '2024-12-18', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-16 07:09:42', 154, '2024-12-18 11:54:37', 0, NULL, 1),
(23278, 'Mohammedrafeek', '35', '9363312002', '9840464509', 'mohammedrafeek909@gmail.com', '2003-10-21', 21, '2', '2', '.rabiya', '.driver', 30000.00, 0, 0.00, 15000.00, '.mkb nagar', '.vyasarpadi chennai', '2412160016', '56', '1', 'upload_files/candidate_tracker/24700430601_MohammedRafeek32.pdf', NULL, '1', '2024-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-16 07:11:52', 1, '2024-12-16 07:17:55', 0, NULL, 1),
(23279, 'Sharmila S', '33', '9677089678', '9087043011', 'sharmilasharmi070@gmail.com', '2004-05-30', 20, '2', '2', 'S. Ponnarasi', 'House keeping', 13800.00, 1, 0.00, 15000.00, 'Venkatraman street teynampet chennai 18', 'Venkatraman street teynampet chennai 18', '2412160017', '56', '1', 'upload_files/candidate_tracker/3139164842_CV2024100900014457.pdf', NULL, '1', '2024-12-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-16 07:26:28', 1, '2024-12-16 07:35:02', 0, NULL, 1),
(23280, 'Suhashini', '33', '9087043011', '9677089678', 'suhashini3011@gmail.com', '2004-05-11', 20, '2', '2', 'Venkateswarlu', 'Cook', 10000.00, 5, 0.00, 15000.00, 'Saidapet chennai', 'Saidapet chennai', '2412160018', '56', '1', 'upload_files/candidate_tracker/30106574558_suhashini30116713a43fd262a.docx', NULL, '1', '2024-12-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-16 07:27:11', 1, '2024-12-16 07:34:07', 0, NULL, 1),
(23281, '', '0', '9363537045', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412160019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-16 07:58:23', 0, NULL, 0, NULL, 1),
(23282, 'Syedsiddq', '6', '8925401509', '', 'syedsiddiq8925@gmail.com', '2003-07-07', 21, '2', '2', 'Parents', 'Driving', 100000.00, 0, 0.00, 20000.00, 'Tambaram', 'Tambaram', '2412160020', '56', '1', 'upload_files/candidate_tracker/89602427637_SyedSiddiqupdatedCV.pdf', NULL, '1', '2024-12-18', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication and convincing skill low and then not interested in sales interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-16 08:28:53', 154, '2024-12-18 11:58:43', 0, NULL, 1),
(23283, 'Shahabudeen', '6', '8754193418', '', 'shahabudeen818@gmail.com', '2001-06-28', 23, '2', '2', 'Faruk', 'Tele caller', 15000.00, 1, 11000.00, 15000.00, 'Arakkkonam', 'Perambur', '2412160021', '50', '2', 'upload_files/candidate_tracker/23882698922_ShahabudeenResumeB.pdf', NULL, '3', '2024-12-16', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-16 08:32:39', 154, '2024-12-16 06:35:45', 0, NULL, 1),
(23284, '', '0', '7299653458', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412160022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-16 08:39:01', 0, NULL, 0, NULL, 1),
(23285, 'Shahabudeen', '23', '8098162314', '8754193418', 'shahabudeen818@gmail.com', '2001-06-28', 23, '2', '2', 'Faruk', 'Chief', 12000.00, 1, 0.00, 15000.00, 'Arakkkonam', 'Pera', '2412160023', '50', '1', 'upload_files/candidate_tracker/53241840130_shahabudeen.nresumedeveloper.pdf', NULL, '1', '2024-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-16 08:42:14', 1, '2024-12-16 08:50:51', 0, NULL, 1),
(23286, 'Adaikalraj S', '13', '8531936118', '9585186689', 'adaikalraj2003@gmail.com', '2003-01-27', 21, '3', '2', 'Sivakumar P', 'Farmer', 72000.00, 0, 0.00, 3.50, 'Trichy', 'Chennai', '2412160024', '', '1', 'upload_files/candidate_tracker/50304467130_ADAIKALRAJ.S11.pdf', NULL, '1', '2024-12-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-16 09:21:34', 1, '2024-12-16 09:43:11', 0, NULL, 1),
(23287, 'Thishaanth', '13', '9176820398', '', 'balathishaanth@gmail.com', '2001-10-28', 23, '3', '2', 'Parents', 'Business', 10000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2412160025', '', '1', 'upload_files/candidate_tracker/59871295270_IMG20241107221300.pdf', NULL, '1', '2024-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-16 09:40:13', 1, '2024-12-16 09:48:08', 0, NULL, 1),
(23288, 'Ragul', '6', '7867999025', '', 'ragul2982@gmail.com', '1998-07-03', 26, '2', '2', 'Rajamani A', 'Pharmacist', 79000.00, 1, 0.00, 25000.00, 'Velacherry', 'Velacherry', '2412160026', '50', '1', 'upload_files/candidate_tracker/24061379300_ragul.pdf', NULL, '1', '2024-12-16', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was not suitable for sales as  he was having idea for other for other jobs .', '5', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-16 09:57:51', 154, '2024-12-16 06:38:09', 0, NULL, 1),
(23289, 'Sridhar d', '34', '8681805527', '', 'd.s.sridharsri@gmail.com', '2002-07-29', 22, '2', '2', 'A devar , D seetha', 'Diploma in computer science engineering', 15000.00, 1, 0.00, 15000.00, 'Minjur', 'Minjur neithavoyal', '2412160027', '56', '1', 'upload_files/candidate_tracker/70208744870_ProfessionalMinimalistCVResume11zon.pdf', NULL, '1', '2024-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-16 11:31:52', 1, '2024-12-16 11:47:22', 0, NULL, 1),
(23290, 'Sathiyanarayanan. K', '6', '9080013668', '9884500391', 'sathyasathya17598@gmail.com', '2003-10-09', 21, '2', '2', 'Kannan. M', 'Manager', 25000.00, 0, 0.00, 25000.00, '272,middle street sendirakillai cuddalore 608501', 'A4, Sri garudadri apartment , chennai600117', '2412160028', '1', '1', 'upload_files/candidate_tracker/19619240454_SathyaResume1.pdf', NULL, '1', '2024-12-17', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and voice ok but candidate ned high package so not fit for my package , so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-16 12:43:49', 154, '2024-12-17 12:08:58', 0, NULL, 1),
(23291, '', '0', '9176089683', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412160029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-16 01:02:38', 0, NULL, 0, NULL, 1),
(23292, 'vishwa s', '6', '8778684566', '', 'floydloman@gmail.com', '1999-07-01', 25, '2', '2', 'siva prakash', 'driver', 40000.00, 1, 20000.00, 20000.00, 'chennai perambur', 'chennaiperambur', '2412170001', '50', '1', 'upload_files/candidate_tracker/2613947853_ResumeVishwas4.pdf', NULL, '1', '2024-12-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-12-17 03:48:59', 154, '2024-12-17 01:03:05', 0, NULL, 1),
(23293, 'A.Abisha', '6', '8778324365', '', 'aabisha127@gmail.com', '2003-07-22', 21, '2', '2', 'Sujatha', 'House wife', 12000.00, 2, 0.00, 14000.00, 'Thanjavur', 'Paadi, Chennai', '2412170002', '1', '1', 'upload_files/candidate_tracker/23882193552_AbishaA.pdf', NULL, '3', '2024-12-17', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-17 04:52:10', 154, '2024-12-17 12:08:02', 0, NULL, 1),
(23294, 'dhanush g', '6', '7358494234', '8072325431', 'dhanush292001@gmail.com', '2001-08-29', 23, '2', '2', 'Jayalakshmi', 'Clerk', 20000.00, 1, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2412170003', '50', '1', 'upload_files/candidate_tracker/47629956697_Dhanushresume.pdf', NULL, '1', '2024-12-17', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales and his attitude was not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-17 05:05:21', 154, '2024-12-17 12:08:39', 0, NULL, 1),
(23295, 'Saranya Dhamodharan', '13', '7448428596', '7010830876', 'saranyadhaan@gmail.com', '2002-06-15', 22, '3', '2', 'Nil', 'Nil', 20000.00, 1, 0.00, 20000.00, 'Saidapet, Chennai', 'Saidapet, Chennai', '2412170004', '', '1', 'upload_files/candidate_tracker/55829650227_SaranyaDhamresume3copy.pdf', NULL, '1', '2024-12-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-17 05:32:36', 1, '2024-12-17 05:47:21', 0, NULL, 1),
(23296, 'S. Shiyamaladevi', '6', '8248317158', '', 'shiyamselva8248@gmail.com', '2002-10-07', 22, '2', '2', 'Selvakumar', 'Former', 20000.00, 1, 0.00, 14000.00, 'Nagapattinam', 'Paadi, chennai', '2412170005', '1', '1', 'upload_files/candidate_tracker/89943719125_RESUME.pdf', NULL, '1', '2024-12-17', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate convincing skill and communication is low and interested in Customer support ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-17 05:33:22', 154, '2024-12-17 12:09:23', 0, NULL, 1),
(23297, 'Yuvasree', '6', '9444552570', '9941020630', 'yuvasreeravikumar20@gmail.com', '2003-04-20', 21, '2', '2', 'No', 'No', 15000.00, 1, 0.00, 15000.00, 'No 216 Ponndi thamgammala st new washermenpet', 'No 216 Ponndi thamgammala st new washermenpet', '2412170006', '1', '1', 'upload_files/candidate_tracker/72715876680_Yuvasreeresume.pdf', NULL, '3', '2024-12-17', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was having idea with other other professions and not ok with salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-17 05:35:12', 154, '2024-12-17 12:08:48', 0, NULL, 1),
(23298, 'Udhaya G', '4', '9600476041', '', 'udhayarajan187@gmail.com', '1999-07-18', 0, '2', '2', 'Govindarajan', 'Noon meal organizer', 20000.00, 3, 0.00, 16000.00, '1096, Thuraiyundarkottai, Sadaiyarkovil po', '1096, Thuraiyundarkottai, Sadaiyarkovil po', '2412170007', '1', '1', 'upload_files/candidate_tracker/13553558001_UDHAYA.G2.pdf', NULL, '1', '2024-12-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is ok with the profile , completed eCE in loyola -20. chennai...and joined in quality control....for 1 year due to covid she releived...and studied govt exam,,,for past 2 and half year and not cleared...so he need a job ,,,,,father sathunavu amaipalar for past 20 years salary 25k....mother govt hostel cook 7 years salary 20k,,,own house and 3 sisters ,,,1 sis ---prepare govt exam,,,,3rd sister engg studied...4 th sister 12th.....have laptop...travel time 40mins.....imeediate joining...expected 13k to 14k....kindly check once and confirm', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-17 05:48:32', 154, '2024-12-18 11:55:14', 0, NULL, 1),
(23299, 'Abirami s', '4', '9345852382', '9751219492', 'abiramis0305@gmail.com', '2002-05-03', 22, '3', '2', 'Sivanantham s', 'Aqua consultant', 20000.00, 2, 17000.00, 15000.00, 'P:52 karunavathi Nagar 2 street n.K road thanjavur', 'P:52 karunavathi Nagar 2 street n.K road thanjavur', '2412170008', '', '2', 'upload_files/candidate_tracker/34079120850_ABIRAMIS..pdf', NULL, '1', '2024-12-17', 10, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is not fit for our team,,,expected temporary job,currently in job data entry and not releived , ,,,expected singapore father work in tie up singapore company so need to go only', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-17 06:21:49', 154, '2024-12-17 02:32:38', 0, NULL, 1),
(23300, 'N. SIVAKUMAR', '6', '6385141714', '', 'Sukumarsukumar65354@gmail.com', '2003-11-03', 21, '2', '2', 'Neppoliyan', 'Coolie', 15000.00, 2, 0.00, 20000.00, '11/4 Ezhil Nagar A Block 14th street kodugaiyur', '11/4 Ezhil Nagar A Block 14th street kodugaiyur', '2412170009', '45', '1', 'upload_files/candidate_tracker/14678415120_N.Sivakumar.pdf', NULL, '1', '2024-12-17', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'long distance and not fit for sales also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-17 06:47:13', 154, '2024-12-17 12:51:32', 0, NULL, 1),
(23301, 'E.suganya', '4', '9698293449', '9345852382', 'Suganyaelangovans4@gmail.com', '1993-04-19', 31, '3', '2', 'Elangovan', 'Watch man', 10000.00, 1, 15000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2412170010', '', '2', 'upload_files/candidate_tracker/94999385180_SuganyaResume.pdf', NULL, '1', '2024-12-17', 15, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'worked in hr and data entry,,,,have no job need and age high due to marriage...not performed well in interview', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-17 07:02:10', 154, '2024-12-17 02:32:50', 0, NULL, 1),
(23302, 'M.Karthik', '4', '8939315004', '8778698809', 'kuttykarthick784@gmail.com', '2002-06-12', 22, '1', '2', 'Murugan', 'Coolie', 12000.00, 0, 0.00, 18000.00, 'No 3 Kamarajar Nagar glass factory thiruvottiyur', 'No 3 Kamarajar Nagar glass factory thiruvottiyur', '2412170011', '', '1', 'upload_files/candidate_tracker/64986317560_CV202307132047474.pdf', NULL, '3', '2024-12-17', 0, 'Nil', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-17 07:07:43', 1, '2024-12-17 07:29:46', 0, NULL, 1),
(23303, '', '0', '7200865855', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412170012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-17 08:33:10', 0, NULL, 0, NULL, 1),
(23304, 'g. clara sharon', '6', '7010695624', '9445331013', 'reethug07@gmail.com', '2001-06-18', 23, '2', '2', 'g. gnana prakasam', 'e.b Corporation', 25000.00, 1, 15000.00, 18000.00, 'perambur', 'perambur', '2412170013', '50', '2', 'upload_files/candidate_tracker/36643973549_resumeclarasharon.pdf', NULL, '1', '2024-12-18', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok,1.5 yrs experience. sales field totally fresher sal exp 18k but candidate worth 15k to 16k kindly negotiate the salary and joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-12-17 01:06:17', 154, '2024-12-18 11:58:04', 0, NULL, 1),
(23305, '', '0', '8072753086', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412170014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-17 02:55:18', 0, NULL, 0, NULL, 1),
(23306, 'agilan', '6', '7639603145', '', 'agilanvip007@gmail.com', '2003-11-10', 21, '2', '2', 'ashok', 'cooli', 100000.00, 0, 0.00, 15000.00, 'ponneri', 'ponneri', '2412170015', '56', '1', 'upload_files/candidate_tracker/83042232396_agilanresume.pdf', NULL, '1', '2024-12-18', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-17 03:01:50', 154, '2024-12-18 11:55:00', 0, NULL, 1),
(23307, 'sanjay.u', '35', '6383684609', '', 'usanjayusanjay@gmail.com', '2003-09-27', 21, '2', '2', 'Parent', 'Real estate', 25000.00, 1, 0.00, 18000.00, 'No 36/A nn garden 8th lane oldwashermenpet', 'Chennai', '2412170016', '56', '1', 'upload_files/candidate_tracker/68741406543_USanjayresume.docx', NULL, '1', '2024-12-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-17 04:00:45', 1, '2024-12-17 04:09:10', 0, NULL, 1),
(23308, 'NAVEEN N', '13', '7708173487', '', 'naveennaveenn143@gmail.com', '2002-08-17', 22, '3', '2', 'NAMBIRAJAN B', 'SECURITY OFFICER', 30000.00, 2, 0.00, 15000.00, 'NO 114, SANGOLIKUPPAM, CUDDALORE-607 005', 'kavitha gents pG ,Velachery, Chennai-600042', '2412180001', '', '1', 'upload_files/candidate_tracker/99424116055_DOC20241217WA0002.1.pdf', NULL, '1', '2024-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-18 04:18:40', 1, '2024-12-18 04:28:17', 0, NULL, 1),
(23309, 'Deepak', '31', '9629436401', '', 'edeepak20030909@gmail.com', '2003-09-09', 21, '3', '2', 'ELAVARASAN', 'theatre operator', 15000.00, 1, 0.00, 18000.00, 'Kallakkurichi District veerabayankaram', 'Velachery, Chennai', '2412180002', '', '1', 'upload_files/candidate_tracker/731612806_Resume.pdf', NULL, '1', '2024-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-18 04:18:43', 1, '2024-12-18 04:28:16', 0, NULL, 1),
(23310, 'S.R.VIGNESHKUMAR', '13', '8838800714', '', 'vigneshsrak20@gmail.com', '2003-09-15', 21, '3', '2', 'Renganathan', 'Weaving', 9500.00, 2, 0.00, 16000.00, 'Ramanathapuram District Paramakudi', 'Chennai Sholinganallur', '2412180003', '', '1', 'upload_files/candidate_tracker/84904762206_VIGNESHKUMARRESUME.pdf', NULL, '1', '2024-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-18 04:18:48', 1, '2024-12-18 04:28:15', 0, NULL, 1),
(23311, 'A.Ganesh kumar', '4', '9965785470', '9080904424', 'ganeshkumar9080904424@gmail.com', '2003-03-17', 21, '2', '2', 'S.Azahagar samy', 'Cooli', 100000.00, 2, 0.00, 15000.00, 'Thanjavuar', 'Thanjavuar', '2412180004', '1', '1', 'upload_files/candidate_tracker/60929768078_resume.pdf', NULL, '1', '2024-12-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite for team and telesales, have no sales pitch...not explaining answers better, 1 and half year in mechanical labour so not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-18 04:20:38', 154, '2024-12-18 11:57:38', 0, NULL, 1),
(23312, 'Sabarish D', '4', '9360487247', '', 'sabari5102019@gmail.com', '2002-06-05', 22, '2', '2', 'DHANAPAL', 'Driver', 15000.00, 0, 0.00, 20000.00, 'Karur', 'Collector nagar, Chennai', '2412180005', '50', '1', 'upload_files/candidate_tracker/59849690002_RESUMEnew.pdf', NULL, '1', '2024-12-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-18 04:23:30', 1, '2024-12-18 04:32:13', 0, NULL, 1),
(23313, 'Malavika', '6', '8925016876', '8144856448', 'Malavika.gm888@gmail.com', '2002-01-21', 22, '2', '2', 'Selvakumar', 'Driver', 25000.00, 2, 0.00, 15.00, 'Thindivanam', 'Kodampakam', '2412180006', '50', '1', 'upload_files/candidate_tracker/29451305179_malu.pdf', NULL, '1', '2024-12-18', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skill low and then not interested in sales interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-18 04:31:46', 154, '2024-12-18 11:58:56', 0, NULL, 1),
(23314, 'Subalakshmi s', '4', '6374335688', '9751142272', 'suba22073@gmail.com', '2003-07-22', 21, '2', '2', 'Shankar Ram S', 'Daily wages', 15000.00, 1, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2412180007', '1', '1', 'upload_files/candidate_tracker/78778060004_CV20241204072650.pdf', NULL, '1', '2024-12-18', 0, '', '3', '59', '2024-12-19', 150000.00, '', NULL, '2025-06-12', '2', 'Communication Ok  Have Calling exp for 4 months Can be trained in our roles need to check in training and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '2024-12-19', 1, '2024-12-18 04:46:27', 60, '2024-12-18 06:06:23', 0, NULL, 1),
(23315, 'Ramji', '4', '9791592202', '7305783529', 'ramjiezhil@gmail.com', '2001-07-13', 23, '2', '2', 'Arivukodi', 'Not employed', 15.00, 1, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2412180008', '1', '1', 'upload_files/candidate_tracker/89568163105_RamjiResume.docx', NULL, '1', '2024-12-18', 0, '', '3', '59', '2025-01-02', 150000.00, '', '5', '1970-01-01', '2', 'Communication Ok 5050 profile need to check in training and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2025-01-02', 1, '2024-12-18 04:48:20', 60, '2024-12-31 06:15:04', 0, NULL, 1),
(23316, 'Akash', '4', '9597089110', '', 'akashakeditz@gmail.com', '2003-08-25', 21, '2', '2', 'S.kumaran', 'Driver', 25000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2412180009', '1', '1', 'upload_files/candidate_tracker/35018660571_BlueGradientCompanyResume.pdf', NULL, '1', '2024-12-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not performing well in interview, not answering any question unfit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-18 04:49:59', 154, '2024-12-18 11:55:41', 0, NULL, 1),
(23317, 'Akash', '4', '9791707648', '', 'akashkutty36@gmail.com', '2000-09-01', 24, '2', '2', 'Shanthi', 'Farmer', 38000.00, 2, 0.00, 18000.00, 'Thiruvarur', 'Thiruvarur', '2412180010', '1', '1', 'upload_files/candidate_tracker/20134289831_DOC20241012WA0001..pdf', NULL, '1', '2024-12-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is ok speak well and have a try to work,,,,but very long distance and focus on business is high priority....travel issue not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-18 05:02:05', 154, '2024-12-18 11:55:24', 0, NULL, 1),
(23318, 'Aiswaryalakshmi G', '13', '7810078268', '', 'aiswaryalakshmi1502@gmail.com', '2002-03-15', 22, '3', '2', 'Govindaraj R', 'Cooli', 15000.00, 6, 0.00, 3.00, 'Virudhunagar', 'Chennai', '2412180011', '', '1', 'upload_files/candidate_tracker/65445571170_AishuGresume.pdf', NULL, '1', '2024-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-18 05:08:58', 1, '2024-12-18 05:15:52', 0, NULL, 1),
(23319, 'Divya', '6', '7539926518', '6384552925', 'nathandivya5@gmail.com', '2000-08-21', 24, '2', '2', 'Shanmuganathan', 'Driver', 60000.00, 1, 0.00, 20.00, 'Chennai', 'Guindy', '2412180012', '1', '1', 'upload_files/candidate_tracker/15758435248_Divya.pdf', NULL, '1', '2024-12-18', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate mainly looking for it related job and currently fullstock job on going , and very low voice , not presure handiling so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-18 05:25:58', 154, '2024-12-18 11:58:34', 0, NULL, 1),
(23320, 'Susmitha', '6', '9047090213', '6384552925', 'Susmookaiyan13@gmail.com', '2000-05-13', 24, '2', '2', 'Mookaiyan', 'Farmer', 40000.00, 3, 0.00, 15000.00, 'Chennai', 'Guindy', '2412180013', '1', '1', 'upload_files/candidate_tracker/22299490705_resume1.pdf', NULL, '1', '2024-12-18', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not confident and not ok with timing and salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-18 05:35:25', 154, '2024-12-18 11:58:24', 0, NULL, 1),
(23321, 'Sanjay kumar. M', '6', '9060870063', '8884367061', 'shettysanjaykumar@gmail.com', '2002-04-09', 22, '2', '2', 'Mariswamy', 'Student', 18.00, 1, 0.00, 15.00, 'Vijaynagar Bangalore', 'Vijaynagar', '2412180014', '57', '1', 'upload_files/candidate_tracker/20652295445_MyDocument.pdf', NULL, '1', '2024-12-18', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2024-12-18 05:47:39', 104, '2024-12-18 12:57:01', 0, NULL, 1),
(23322, 'UDAY J', '6', '9380523483', '9980509506', 'udayj9380@gmail.com', '2000-05-05', 24, '2', '2', 'Jagadish N', 'Student', 90000.00, 1, 0.00, 16000.00, 'Vijayanagar', 'Vijayanagar', '2412180015', '57', '1', 'upload_files/candidate_tracker/47728773368_uday065.pdf', NULL, '1', '2024-12-18', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2024-12-18 05:50:15', 104, '2024-12-18 12:55:24', 0, NULL, 1),
(23323, 'Alby Shaji', '6', '9538107734', '8722996434', 'albyshaji959@gmail.com', '2002-02-26', 22, '2', '2', 'Shaji P N', 'Automobile', 30000.00, 1, 0.00, 20000.00, 'BTM', 'BTM', '2412180016', '57', '1', 'upload_files/candidate_tracker/84323109753_AlbyShajiCV202410.pdf', NULL, '1', '2024-12-18', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2024-12-18 05:51:48', 154, '2025-06-11 07:28:28', 0, NULL, 1),
(23324, 'A.Nithyasri', '6', '9176163516', '8939414753', 'nithyasri2325@gmail.com', '2000-04-23', 24, '2', '2', 'J.Adhikesavan', 'House keeping', 25000.00, 2, 15000.00, 16000.00, 'Chennai', 'Chennai', '2412180017', '57', '2', 'upload_files/candidate_tracker/37750487918_AdobeScan09May2024.pdf', NULL, '2', '2024-12-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-12-18 06:04:54', 154, '2024-12-18 12:04:00', 0, NULL, 1),
(23325, 'Mohammed Salman', '6', '7200130556', '', 'salmanbinnazer06@gmail.com', '2004-09-17', 20, '2', '2', 'Nazeer Hussain', 'Business', 20000.00, 1, 0.00, 300000.00, 'Perambur chennai', 'Perambur chennai', '2412180018', '50', '1', 'upload_files/candidate_tracker/33586298523_salmanupdatedlFINALpro1resume1.pdf', NULL, '1', '2024-12-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'job needed person new joinee so lets try 7 days ctc 16k', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-18 06:21:14', 154, '2024-12-18 12:14:33', 0, NULL, 1),
(23326, 'Chandru. D', '6', '8883553786', '', 'chandrukhan8883@gmail.com', '2001-07-15', 23, '2', '2', 'Durai', 'Farmer', 20000.00, 1, 0.00, 220000.00, 'Metupuliyur, Krishnagiri,', 'Ramapuram, chennai', '2412180019', '1', '1', 'upload_files/candidate_tracker/99371983452_MyResume.UDATED.pdf1.pdf', NULL, '1', '2024-12-19', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is unfit for sales profile, then he previously working in home Appliance, observation skills low. communication not good, ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2024-12-18 01:37:39', 154, '2024-12-19 02:42:41', 0, NULL, 1),
(23327, 'AMALA JASMINE I', '22', '9344658208', '9345996255', 'jasminejessy2801@gmail.com', '2009-12-18', 0, '6', '2', 'Immaculate Prasad raj', 'Business', 200000.00, 1, 0.00, 1.68, 'Chennai', 'Chennai', '2412180020', '', '1', 'upload_files/candidate_tracker/29295805422_seoresume1removed111.pdf', NULL, '1', '2024-12-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-18 03:10:13', 1, '2024-12-18 03:18:24', 0, NULL, 1),
(23328, '', '0', '6379657344', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412180021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-18 05:15:05', 0, NULL, 0, NULL, 1),
(23329, 'Jaya Suriya E', '13', '7708184276', '', 'jsuriya154@gmail.com', '2002-04-15', 22, '3', '2', 'Elavarasan J', 'Driver', 22000.00, 2, 0.00, 10000.00, 'Chidambaram', 'Ekkattuthangal', '2412190001', '', '1', 'upload_files/candidate_tracker/98143467370_JayaSuriyaResume1.pdf', NULL, '1', '2024-12-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-19 04:44:54', 1, '2024-12-19 04:51:00', 0, NULL, 1),
(23330, 'Suriyakannan V', '13', '8072757409', '9500735609', 'suriyakannan8072@gmail.com', '2004-07-09', 20, '3', '2', 'Velmurugan S', 'Coolie', 10000.00, 1, 0.00, 7000.00, '1/73 South st,mannarkovil, Tirunelveli', '35/8A, West Jafferkhanpet, Chennai, 600083', '2412190002', '', '1', 'upload_files/candidate_tracker/51248164388_Suriyaresume2.pdf', NULL, '1', '2024-12-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-19 04:55:26', 1, '2024-12-19 05:07:00', 0, NULL, 1),
(23331, 'SANTHOSH R', '13', '6385811795', '9585866550', 'san967790@gmail.com', '2004-07-29', 20, '3', '2', 'RAJENDRA UDAIYAR S', 'Coolie', 10000.00, 1, 0.00, 6000.00, 'South St Courtallam Kudiyiruppu.', 'Chennai', '2412190003', '', '1', 'upload_files/candidate_tracker/3268510858_SanthoshR2.pdf', NULL, '1', '2024-12-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-19 04:56:14', 1, '2024-12-19 05:02:50', 0, NULL, 1),
(23332, 'Naveen kumar.E', '13', '9159432105', '7200710556', 'iamnaveenkumare@gmail.com', '2001-10-21', 23, '3', '2', 'Elumalai.B', 'Farmer', 30000.00, 2, 0.00, 30000.00, 'Kancheepuram', 'Kancheepuram', '2412190004', '', '1', 'upload_files/candidate_tracker/92596687461_naveenkumarresumecv.pdf', NULL, '1', '2024-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-19 05:14:17', 1, '2024-12-19 05:22:15', 0, NULL, 1),
(23333, 'Mohamed Abul Hasan', '13', '9790937061', '', 'abulhasan9431@gmail.com', '2002-01-07', 22, '3', '2', 'Thamemun Ansari S', 'Kooli', 20000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2412190005', '', '1', 'upload_files/candidate_tracker/16338701423_Resume.pdf', NULL, '1', '2024-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-19 05:14:21', 1, '2024-12-19 05:24:08', 0, NULL, 1),
(23334, 'Vignesh E', '13', '9342550113', '', 'v3506844@gmail.com', '2003-05-11', 21, '3', '2', 'EZHUMALAI G', 'Farmer', 30000.00, 1, 0.00, 12000.00, 'Cuddalore', 'Chennai', '2412190006', '', '1', 'upload_files/candidate_tracker/23478438129_VigneshResume.pdf', NULL, '1', '2024-12-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-19 05:25:50', 1, '2024-12-19 05:40:11', 0, NULL, 1),
(23335, 'Lakshmi', '4', '8946049131', '9944948832', 'lakshmisekar9624@gmail.com', '1996-03-24', 28, '2', '2', 'Amutha', 'House wife', 30000.00, 1, 19800.00, 20000.00, 'Velachery', 'Velachery', '2412190007', '1', '2', 'upload_files/candidate_tracker/9415663509_CV2024111912495480.pdf', NULL, '1', '2024-12-19', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55824', '55560', '1970-01-01', 1, '2024-12-19 05:39:37', 154, '2024-12-19 12:56:35', 0, NULL, 1),
(23336, 'Soundarya M', '6', '9840147903', '9345456051', 'soundaryam816@gmail.com', '1997-09-17', 27, '2', '1', 'J karthikeyan', 'It', 15000.00, 0, 16000.00, 18000.00, 'Chennai', 'Chennai', '2412190008', '57', '2', 'upload_files/candidate_tracker/7716249026_Soundarya.M.pdf', NULL, '1', '2025-02-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'looking for non voice', '', '', '', '', '', '1970-01-01', 1, '2024-12-19 05:49:04', 104, '2025-02-26 04:05:16', 0, NULL, 1),
(23337, 'Dharshini baskar', '6', '9363277229', '', 'dharshu1118@gmail.com', '1999-11-18', 25, '2', '2', 'Baskar', 'Agricultural wages', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2412190009', '50', '1', 'upload_files/candidate_tracker/91048840838_RESUMEDHARSHINI1.docx', NULL, '1', '2024-12-19', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not good at communication and not ok with salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-19 06:21:32', 154, '2024-12-19 12:56:23', 0, NULL, 1),
(23338, 'Kirubahar', '13', '9159171518', '8072577249', 'rgiri1538@gmail.com', '2003-10-06', 21, '3', '2', 'Rajkumaar', 'Former', 30000.00, 2, 0.00, 30000.00, 'Trichy', 'Chennai', '2412190010', '', '1', 'upload_files/candidate_tracker/69917434142_DOC20241219WA0000..pdf', NULL, '1', '2024-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-19 06:28:20', 1, '2024-12-19 06:37:53', 0, NULL, 1),
(23339, 'Rajmohan R', '13', '8825714986', '9361926904', 'rrajmohan740@gmail.com', '2004-04-10', 20, '5', '2', 'Raghupathi s', 'Driver', 25000.00, 1, 0.00, 25000.00, 'Panruti', 'Chennai', '2412190011', '', '1', 'upload_files/candidate_tracker/98520117352_DOC20241219WA0000..pdf', NULL, '1', '2024-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-19 06:28:58', 1, '2024-12-19 07:04:25', 0, NULL, 1),
(23340, 'Hari haran R', '13', '9344479052', '9865255779', 'harirsmesh@gmail.com', '2004-05-28', 20, '3', '2', 'Ramesh kumar k', 'Hotel', 30000.00, 1, 0.00, 25000.00, 'Sathyamangalam', 'Chennai', '2412190012', '', '1', 'upload_files/candidate_tracker/84679104367_HARIHARANR.pdf', NULL, '1', '2024-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-19 06:30:35', 1, '2024-12-19 07:01:37', 0, NULL, 1),
(23341, 'Jansi Sreshta', '6', '7200581810', '9884244741', 'jansi8863@gmail.com', '1997-06-07', 27, '2', '2', 'Parent', 'Bank employee', 1.50, 1, 0.00, 18000.00, 'Perambur', 'Perambur', '2412190013', '57', '1', 'upload_files/candidate_tracker/98295516619_AdobeScanFeb142024.pdf', NULL, '2', '2024-12-19', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-19 06:45:26', 154, '2024-12-19 12:56:06', 0, NULL, 1),
(23342, 'V YOGAVARDHAN', '6', '6384061937', '9047349561', 'yogavardhan2813@gmail.com', '2003-01-28', 21, '2', '2', 'Vengatachalam', 'Farmer', 12000.00, 1, 0.00, 18000.00, 'Valagaiman', 'Thambaram', '2412190014', '50', '1', 'upload_files/candidate_tracker/77021557366_resumenewpdf.pdf', NULL, '1', '2024-12-19', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-19 07:09:38', 154, '2024-12-19 01:02:31', 0, NULL, 1),
(23343, 'Jayasurya M', '6', '9488767921', '7806935540', 'mjayasurya3715@gmail.com', '2001-04-17', 23, '2', '2', 'MUTHARASAN.k', 'Farmer', 20000.00, 3, 0.00, 22000.00, 'Krishnagiri', 'Ramapuram-Chennai', '2412190015', '1', '1', 'upload_files/candidate_tracker/29644604396_SuryaResume.pdf', NULL, '1', '2024-12-19', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate all ok but  not interest to out side call and only work n office work so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-19 07:21:20', 154, '2024-12-19 01:21:52', 0, NULL, 1),
(23344, 'senivasan', '6', '9789917721', '9789947786', 'seenivasansenivasan125@gmail.com', '2001-03-05', 23, '2', '2', 'chidambaram', 'business', 40000.00, 2, 0.00, 14000.00, 'murugasan Street, West kk nagar', 'chennai', '2412190016', '50', '1', 'upload_files/candidate_tracker/73080238544_senivasanresume1.pdf', NULL, '1', '2024-12-20', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication and convincing skill low and then not interested in sales interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-19 07:52:08', 154, '2024-12-20 11:57:46', 0, NULL, 1),
(23345, 'Manikandan', '4', '6385812047', '9500235508', 'Manivvvr2002@gmail.com', '2002-11-06', 22, '2', '2', 'Mahalakshmi', 'It', 25000.00, 4, 0.00, 12000.00, 'Thirunelvelli', 'Chennai', '2412190017', '50', '1', 'upload_files/candidate_tracker/28420542372_ManiCV.pdf', NULL, '1', '2024-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-19 08:50:10', 1, '2024-12-19 08:58:32', 0, NULL, 1),
(23346, '', '0', '7397240778', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412190018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-19 09:08:19', 0, NULL, 0, NULL, 1),
(23347, 'Vaishnavi', '4', '7297240779', '6381428997', 'vaishnaviraji05@gmail.com', '2002-05-30', 22, '2', '2', 'Vaishu', 'Student', 25000.00, 1, 0.00, 15.00, 'Anna nagar, Chennai', 'Chennai', '2412190019', '50', '1', 'upload_files/candidate_tracker/17329405761_VAISHNAVICV.pdf', NULL, '1', '2024-12-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Interested in sales', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-12-19 09:09:12', 154, '2024-12-20 01:01:45', 0, NULL, 1),
(23348, 'Majnu Sanjai P', '13', '6380853153', '', 'majnu1717@gmail.com', '2002-04-15', 22, '2', '2', 'Palani P', 'Farmer', 20000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2412190020', '1', '1', 'upload_files/candidate_tracker/239610978_P.MajnusanjaiBME20238.1CGPAPythonFullStack.pdf', NULL, '1', '2024-12-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-12-19 09:24:46', 154, '2024-12-19 03:13:51', 0, NULL, 1),
(23349, 'Sriram S', '13', '7845462838', '', 'sriram15901@gmail.com', '2001-09-15', 23, '2', '2', 'Sugumar D', 'Business', 40000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2412190021', '1', '1', 'upload_files/candidate_tracker/84282702215_SriramResume15.pdf', NULL, '1', '2024-12-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-12-19 09:25:06', 154, '2024-12-19 03:04:41', 0, NULL, 1),
(23350, 'PRAVEEN KUMAR V', '13', '6374486297', '', 'prraveenkumarv@gmail.com', '2002-05-23', 22, '2', '2', 'Venkatesan', 'Farmer', 20000.00, 1, 0.00, 300000.00, 'PANRUTI', 'Chrompet', '2412190022', '1', '1', 'upload_files/candidate_tracker/98781700988_PraveenkumarVMca2024.pdf', NULL, '1', '2024-12-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2024-12-19 09:25:46', 154, '2024-12-19 03:11:33', 0, NULL, 1),
(23351, 'Swetha A', '6', '6369533328', '7550011338', 'swethaswetha071124@gmail.com', '2003-11-07', 21, '2', '2', 'Anandan D', 'Carpenter', 90000.00, 1, 0.00, 15000.00, 'Kolathur chennai 600099', 'Kolathur chennai 600099', '2412190023', '1', '1', 'upload_files/candidate_tracker/37761666637_IamsharingSwetharesumewithyou.pdf', NULL, '1', '2024-12-19', 0, '', '3', '59', '2024-12-23', 172000.00, '', '3', '2024-12-23', '2', 'Communication Ok have Pharma Exp Family need is there can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '55651', '5151', '2024-12-23', 1, '2024-12-19 09:44:09', 60, '2024-12-20 06:34:16', 0, NULL, 1),
(23352, 'R jothi Lakshmi', '4', '8056984639', '', 'ijaynithu@gmail.comhi', '1998-09-17', 26, '2', '2', 'Ravi', 'Business', 3.00, 3, 16000.00, 20000.00, 'Tirunelveli', 'Tirunelveli', '2412190024', '1', '2', 'upload_files/candidate_tracker/32047105113_jothiresume.pdf', NULL, '3', '2025-01-03', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2024-12-19 10:22:50', 1, '2024-12-19 10:37:09', 0, NULL, 1),
(23353, 'Surendar v', '4', '7358499901', '7358281989', 'surendarvenkatesan1999@gmail.com', '1999-04-16', 25, '2', '2', 'Venkatesan g', 'Auto driver', 80000.00, 0, 0.00, 20000.00, 'ROYAPURAM', 'Same', '2412190025', '50', '1', 'upload_files/candidate_tracker/29829783062_SURENDARRESUME2024.pdf', NULL, '1', '2024-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-19 10:28:48', 1, '2024-12-19 10:36:11', 0, NULL, 1),
(23354, 'niharika', '4', '9655390167', '', 'harika18898@gmail.com', '1998-08-18', 26, '2', '2', 'yayathi naidu', 'farmer', 100000.00, 0, 0.00, 25000.00, 'andra pradesh', 'andra pradesh', '2412190026', '50', '1', 'upload_files/candidate_tracker/56222799705_Voiceresume.pdf', NULL, '1', '2024-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-19 10:45:46', 1, '2024-12-19 10:53:42', 0, NULL, 1),
(23355, 'Vinoth r', '4', '7604989382', '', 'vinothr1663@gmail.com', '2002-12-27', 21, '2', '2', 'Ramesh', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Dindigul', '2412190027', '1', '1', 'upload_files/candidate_tracker/99067007383_vinoth.pdf', NULL, '1', '2024-12-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2024-12-19 11:45:48', 1, '2024-12-19 11:50:14', 0, NULL, 1),
(23356, 'Gokula suriya.s', '14', '7604901736', '', 'gokulasurya.kvp@gmail.com', '1997-08-29', 27, '3', '2', 'K.selvaraj', 'Agriculture', 50000.00, 1, 0.00, 20000.00, 'Kavindapadi,erode', 'Chennai', '2412200001', '', '2', 'upload_files/candidate_tracker/61512689271_gokulresume.pdf', NULL, '1', '2024-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-20 04:56:02', 1, '2024-12-20 05:13:53', 0, NULL, 1),
(23357, 'J.Ramya', '4', '7305199283', '', 'ramyajayaraman24@gmail.com', '2003-04-16', 21, '2', '2', 'Pv.Jayaraman', 'Former', 60000.00, 3, 10000.00, 14000.00, 'Krishnan Kovil street ,ammapet Thanjavur', 'Krishnan Kovil street ,ammapet Thanjavur', '2412200002', '1', '2', 'upload_files/candidate_tracker/42003424929_1720176250625RAMYAJResume5.pdf', NULL, '1', '2024-12-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile...completed bA and worked as a telecaller in digihotels website creating sales...due to brother marriage releived from job......and salary issue in previous company...mother work in mill,,,,3 elder brother and 1 brother getting marriger another one work in chennai as aiyer and another 1 studied...half hour travel from office..monday joining...have laptop...expected 14k kindly check once and confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-20 05:07:09', 153, '2024-12-20 11:14:14', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23358, 'Kavitha', '4', '8072866916', '8248821286', 'kavithabalakrishnan395@gmail.com', '2004-06-19', 20, '2', '2', 'Revathy', 'Driver', 18000.00, 0, 12000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2412200003', '1', '2', 'upload_files/candidate_tracker/76025448731_kavithabalkiipdf9.pdf', NULL, '1', '2024-12-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite for telesales choosing data entry only....and have no skills for sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-20 05:11:39', 153, '2024-12-20 11:14:33', 0, NULL, 1),
(23359, 'Sowmiya', '4', '9342624231', '8056534765', 'Sowmiyaavasctnj@gmail.com', '2004-04-09', 20, '2', '2', 'Sumathi', 'Housewife', 18000.00, 1, 12000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2412200004', '1', '2', 'upload_files/candidate_tracker/59535556535_SSOWMIYAResume.pdf', NULL, '1', '2024-12-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'choosing data entry only..not handled pressure and target,,,,', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-20 05:13:06', 153, '2024-12-20 11:02:51', 0, NULL, 1),
(23360, 'A. Poornima', '4', '9551650795', '9003148575', 'Poorniarumugam006@gmail.com', '2004-06-26', 20, '2', '2', 'Poorni', 'Student', 72.00, 1, 0.00, 15.00, 'K. P park puliyanthope ch-12', 'K. P park puliyanthope ch-12', '2412200005', '50', '1', 'upload_files/candidate_tracker/62194729862_poornimacv.pdf', NULL, '1', '2024-12-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested in sales', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-12-20 05:58:26', 154, '2024-12-20 01:01:07', 0, NULL, 1),
(23361, 'Mahalakshmi', '6', '6380320757', '', 'Spmahalakshmi2002@gmail.com', '2002-11-27', 22, '2', '2', 'Punitha', 'Housewife', 10000.00, 1, 16000.00, 18000.00, 'AYANAVARAM', 'Villivakkam', '2412200006', '45', '2', 'upload_files/candidate_tracker/81630489133_ResumeMAHALAKSHMIFormat1.pdf', NULL, '1', '2024-12-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not interest in tele sales', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-20 06:03:13', 154, '2024-12-20 11:49:12', 0, NULL, 1),
(23362, 'Dilli babu', '6', '9345763414', '8925732270', 'dillibabu312004@gmail.com', '2004-03-31', 20, '2', '2', 'Sankar', 'eb contractor', 40000.00, 2, 0.00, 15000.00, 'Ennore', 'Chennai ennore', '2412200007', '50', '1', 'upload_files/candidate_tracker/79644943394_dillibabu1.pdf', NULL, '1', '2024-12-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-12-20 07:37:57', 153, '2024-12-21 12:28:50', 0, NULL, 1),
(23363, 'Vetrivel R', '4', '8778634532', '9159027999', 'itsmevetri10@gmail.com', '1994-10-09', 30, '2', '2', 'Radha R', 'Rtd Conductor', 30000.00, 1, 25000.00, 30000.00, 'Trichy', 'Trichy', '2412200008', '56', '2', 'upload_files/candidate_tracker/82630188034_vetriupdate.pdf', NULL, '1', '2024-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-20 07:40:16', 1, '2024-12-20 07:55:51', 0, NULL, 1),
(23364, 'Sasmitha K', '6', '8056820118', '8838057211', 'Ksasmitha48@gmail.com', '2004-10-23', 20, '2', '2', '-', 'Coolie', 66000.00, 2, 0.00, 15000.00, 'Theni', 'Chromepet, Chennai', '2412200009', '50', '1', 'upload_files/candidate_tracker/24095081702_Sasmitha.pdf', NULL, '1', '2024-12-20', 0, '', '3', '59', '2024-12-23', 172000.00, '', '5', '1970-01-01', '2', 'Communication Ok focus on Digital marketing Much 5050 sustainability open to learn need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '2024-12-23', 1, '2024-12-20 07:43:22', 60, '2024-12-20 06:32:44', 0, NULL, 1),
(23365, 'Vasantha krishnan M', '33', '8681998643', '9791097820', 'vasanthakrishnan360@gmail.com', '1998-09-12', 26, '3', '2', 'N. Manivel', 'Tailor', 30000.00, 1, 20000.00, 25000.00, 'Chennai', 'Vandalur', '2412200010', '', '2', 'upload_files/candidate_tracker/39879858243_Vasanthresume.pdf', NULL, '1', '2024-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-20 09:30:32', 1, '2024-12-20 09:37:37', 0, NULL, 1),
(23366, 'Natarajan', '13', '9361983912', '7305241308', 'natarajandev01@gmail.com', '2000-06-20', 24, '3', '2', 'Murugan', 'Steel work', 18.00, 2, 0.00, 2.20, 'Chidambaram', 'Velachery', '2412210001', '', '1', 'upload_files/candidate_tracker/21917563408_ResumeJFSD.pdf', NULL, '1', '2024-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-21 03:59:12', 1, '2024-12-21 04:07:17', 0, NULL, 1),
(23367, 'Raja', '13', '7305241308', '9787254827', 'rajaraja86196@gmail.com', '2002-07-10', 22, '3', '2', 'Sedhu', 'farmer', 15000.00, 2, 0.00, 10000.00, 'Perambalur .', 'Velachery,Chennai.', '2412210002', '', '1', 'upload_files/candidate_tracker/56853046603_Rajacv.pdf', NULL, '1', '2024-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-21 03:59:19', 1, '2024-12-21 04:08:13', 0, NULL, 1),
(23368, 'Arunraj', '13', '9345802289', '9790593825', 'arunrajraj0011@gmail.com', '2004-12-12', 20, '3', '2', 'Raj', 'Former', 16000.00, 1, 0.00, 150000.00, 'Thiruthonipuram, Sirkazhi, Mayiladuthrai,609111', 'Velachery,Chennai', '2412210003', '', '1', 'upload_files/candidate_tracker/52316429320_ArunrajFrontendCV.pdf', NULL, '1', '2024-12-21', 0, '', '3', '59', '2025-01-21', 120000.00, '', '1', '1970-01-01', '2', 'IT intern with TxxampC accepted for Sathish Team Interview Round s with Sathish Gokul Arun', '2', '2', '2', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-12-21 04:16:23', 60, '2025-01-20 06:32:48', 0, NULL, 1),
(23369, 'Lohith', '34', '6374173338', '', 'rajrohith902@gmail.com', '2003-06-11', 21, '3', '2', 'Parent', 'It', 20000.00, 1, 0.00, 10000.00, 'Thiruvarur', 'Tambaram', '2412210004', '', '1', 'upload_files/candidate_tracker/68520742762_Lohithfrontendcv.pdf', NULL, '2', '2024-12-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-21 04:16:24', 1, '2024-12-21 04:21:08', 0, NULL, 1),
(23370, 'Deva dharsan', '31', '6374943396', '', 'www.k.ddharsan734@gmail.com', '2003-09-29', 21, '3', '2', 'Krishna moorthy', 'Wages', 30000.00, 2, 0.00, 15000.00, 'Dindigul', 'Chennai', '2412210005', '', '1', 'upload_files/candidate_tracker/56300466646_DevadharsanCVResume.pdf', NULL, '1', '2024-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-21 04:25:56', 1, '2024-12-21 04:43:19', 0, NULL, 1),
(23371, 'Sangavi.s', '31', '8940879292', '8940682881', 'sangavi12092002s@gmail.com', '2002-09-12', 22, '3', '2', 'Dhanalakshmi', 'Handloom', 4000.00, 1, 0.00, 20000.00, 'Ariyalur', 'Tambaram sanitoriam', '2412210006', '', '1', 'upload_files/candidate_tracker/53918314853_SangaviResume1.pdf', NULL, '1', '2024-12-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-21 04:40:38', 1, '2024-12-21 05:13:18', 0, NULL, 1),
(23372, 'Chandru M', '2', '9344549156', '9786881715', 'chandrusanjai30@gmail.com', '2003-05-30', 21, '3', '2', 'Revathi M', 'Farmer', 75000.00, 1, 0.00, 15000.00, 'Tindivanam', 'Chennai', '2412210007', '', '1', 'upload_files/candidate_tracker/19377708814_chandrureva.pdf', NULL, '1', '2024-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-21 04:42:27', 1, '2024-12-21 04:47:09', 0, NULL, 1),
(23373, 'S.Gokul raj', '6', '6382776893', '', 'gokulshanmugam130803@gmail.com', '2003-08-13', 21, '2', '2', 'M.shanmugasundaram', 'Quick learner and quick decision making', 15000.00, 1, 0.00, 25000.00, '21/E Anna nagar 2rd cross rayanoour karur', 'Medavakkam.chennai', '2412210008', '1', '1', 'upload_files/candidate_tracker/32743848039_S.GokulRaj.pdf', NULL, '1', '2024-12-21', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication ok but candidate not interst to out sid call so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-21 05:58:51', 153, '2024-12-21 11:53:15', 0, NULL, 1),
(23374, 'MOHAMED HALIFA.T', '6', '9345436452', '9790741430', 'mohamedkalifa3721@gmail.com', '2002-03-22', 22, '2', '2', 'Tameem', 'Seles', 30000.00, 2, 0.00, 18000.00, 'Royapettah', 'Royapettah', '2412210009', '1', '1', 'upload_files/candidate_tracker/86866236786_MOHAMEDOFFERLETTER.pdf', NULL, '1', '2024-12-21', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'CANDIDATE WAS NOT OK WITH COMMUNICATION AND NOT AT HAVING CONFIDENCE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-21 06:51:15', 153, '2024-12-21 01:18:56', 0, NULL, 1),
(23375, 'pavithra', '6', '9840644029', '', 'pavithravinoth258@gmail.com', '1999-12-28', 24, '2', '1', 'v.lingesan', 'casual labour', 50000.00, 2, 0.00, 17000.00, 'periya maathur', 'periya maathur', '2412210010', '50', '1', 'upload_files/candidate_tracker/70621319967_PavithraResume.pdf', NULL, '1', '2024-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not intersted with the timings looking for 5 days work only\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-21 07:33:44', 153, '2024-12-21 03:56:48', 0, NULL, 1),
(23376, 'Sanjay ram', '6', '8925262614', '6381110577', 'sanjayrko21@gmail.com', '2003-02-21', 21, '2', '2', 'R Vasanthi', 'Self employed ( business )', 20000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2412210011', '57', '2', 'upload_files/candidate_tracker/35308962023_pdf.pdf', NULL, '1', '2024-12-21', 0, '', '3', '59', '2024-12-23', 204000.00, '', '5', '1970-01-01', '2', 'Communication Ok 5050 for Sales Profile have exp but no salart payslips received cash in hand only can give a try and check in training', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2024-12-23', 1, '2024-12-21 07:34:06', 60, '2024-12-21 05:52:12', 0, NULL, 1),
(23377, 'nitishkumar s', '4', '6382902560', '', 'nitishkumars1302@gmail.com', '2002-02-13', 22, '2', '2', 'parent', 'railway admin', 100000.00, 1, 0.00, 300000.00, 'Madurai', 'Madurai', '2412210012', '50', '1', 'upload_files/candidate_tracker/4691796820_S.NitishkumarResume.pdf', NULL, '2', '2024-12-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-21 07:53:13', 1, '2024-12-21 08:01:04', 0, NULL, 1),
(23378, 'S Akhila', '6', '7989878056', '', 'akhilasunkara11@gmail.com', '2003-08-15', 21, '3', '2', 'S Ramana reddy', 'Farmer', 500000.00, 1, 0.00, 20000.00, 'Prakasam', 'Prakasam', '2412210013', '', '1', 'upload_files/candidate_tracker/78305739120_akhila.reddy.pdf', NULL, '1', '2024-12-21', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2024-12-21 08:04:38', 104, '2024-12-28 12:41:03', 0, NULL, 1),
(23379, 'G. H Deepika', '6', '7207046381', '6302079382', 'ghdeepikaghdeepika@gmail.com', '2009-12-21', 0, '3', '2', 'H. Narayana', 'Farmer', 10000.00, 3, 0.00, 25.00, 'Anathapur', 'Anathapur', '2412210014', '', '1', 'upload_files/candidate_tracker/92689453261_DEEPIKAR1.pdf', NULL, '1', '2024-12-21', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2024-12-21 08:04:41', 104, '2024-12-28 12:41:46', 0, NULL, 1),
(23380, 'Sudharsan S', '13', '7010513186', '', 'sudharsans731@gmail.com', '2002-07-15', 22, '3', '2', 'Akila', 'Farmer', 10000.00, 2, 0.00, 120000.00, 'Chidambaram', 'Chennai', '2412210015', '', '1', 'upload_files/candidate_tracker/94183895379_SudharsanResume.pdf', NULL, '1', '2024-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-21 09:07:10', 1, '2024-12-21 09:10:29', 0, NULL, 1),
(23381, 'Deepanraj', '13', '7871496615', '6379795813', 'deepanrajaraman12@gmail.com', '2001-12-12', 23, '6', '2', 'Rajaraman', 'Driver', 12000.00, 1, 0.00, 200000.00, 'Mayiladuthurai', 'Chennai', '2412210016', '', '1', 'upload_files/candidate_tracker/53381495139_DEEPANRAJRESUME.pdf', NULL, '1', '2024-12-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-21 09:11:45', 1, '2024-12-21 09:14:34', 0, NULL, 1),
(23382, 'Kotteswari', '4', '6383782467', '8680976383', 'kottymithu2007@gmail.com', '1998-07-20', 26, '2', '1', 'Ilavarasan', 'House wife', 25000.00, 1, 0.00, 20000.00, 'Palavalkam Chennai 600041', 'Palavalkam Chennai 600041', '2412210017', '50', '1', 'upload_files/candidate_tracker/51758712974_RESUMEFRESHER.pdf', NULL, '1', '2024-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-21 09:54:41', 1, '2024-12-21 10:02:21', 0, NULL, 1),
(23383, 'KOWSIKA J', '4', '7871184233', '', 'kowsika18ca52@gmail.com', '1999-11-28', 25, '2', '2', 'JAYAKUMAR R', 'Driver', 10000.00, 1, 0.00, 15000.00, '96,Vigneshwara nagar,Singaperumal kulam,Thanjavur', 'Same as permanent location', '2412220001', '1', '1', 'upload_files/candidate_tracker/79126912362_KowsikaJResume5.pdf', NULL, '1', '2024-12-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile,,,,completed mca..23....and two months worked in night shift due to health issue releived from job,,,,and trying join in kvb with recomendation as a sales exective but no vacancy not joined,,,,father ambulance driver,,,, sister bcom,,,,,own house....office travel time 15 mins have bike....tried IT company in thanjavur but bond basis not accepted,,,,have good sales skills,,,,,but expected system related job......kindly cross check once surely.......expected 12 to 15k,,,,no laptop ready to arrange imeedaiate joining....tried in training and confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-22 04:40:22', 154, '2024-12-24 10:43:59', 0, NULL, 1),
(23384, 'Kavin raj S', '13', '9677774338', '', 'kavinrajsundaram@gmail.com', '2000-02-16', 24, '3', '1', 'Sneka', 'Software developer', 50000.00, 1, 0.00, 2.50, 'Pothanur, p. Velur, Namakkal distict 638181.', 'Pothanur, p. Velur, namakkal distict 638181', '2412230001', '', '1', 'upload_files/candidate_tracker/22337140677_kavinrajCV.pdf', NULL, '1', '2024-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-23 04:37:44', 1, '2024-12-23 04:52:48', 0, NULL, 1),
(23385, 'Kiranraj', '4', '9087336990', '', 'Kiranrajsundarrajan10302@gmail.com', '2002-03-10', 22, '2', '2', 'Sundararajan', 'Agriculture', 7000.00, 1, 0.00, 18000.00, 'Orathanadu', 'Orathanadu', '2412230002', '1', '1', 'upload_files/candidate_tracker/56553288961_KIRANUPDATEDRESUME1.docx', NULL, '1', '2024-12-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not professionally behave in a interview...not fit for team , and telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-23 04:52:23', 153, '2024-12-23 12:01:39', 0, NULL, 1),
(23386, 'M.c.sharmila', '6', '7010345019', '8925441405', 'Sharmimc7798@gmail.com', '1998-07-07', 26, '2', '2', 'M.T.chandrasekaran', 'Weaver', 9000.00, 2, 0.00, 14000.00, 'Paramakudi, Ramanathapuram district', 'Chennai, thiruvotriur', '2412230003', '50', '1', 'upload_files/candidate_tracker/67804626504_Hsc4.pdf', NULL, '2', '2024-12-23', 0, '', '3', '59', '2024-12-24', 168000.00, '', '3', '2025-06-10', '2', 'Fresher Career Gap Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2024-12-24', 1, '2024-12-23 05:45:47', 60, '2024-12-23 06:47:34', 0, NULL, 1),
(23387, 'Ardhanki Mahesh', '6', '7780639286', '', 'ardhankimahesh5@gmail.com', '2002-01-13', 22, '2', '2', 'Ardhanki munirathnam', 'Farmer', 16000.00, 0, 18000.00, 20000.00, 'Chinna Kanaparthi (v), Thottambedu (M), Tirupati', '127,10th main road,keb colony,btm 1st stage', '2412230004', '57', '2', 'upload_files/candidate_tracker/92857996943_ardhankiMahesh.pdf', NULL, '1', '2024-12-23', 15, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2024-12-23 06:12:42', 104, '2024-12-28 12:42:34', 0, NULL, 1),
(23388, 'Shanmugam Bharath', '6', '9346409765', '6300974717', 'bharathss2001@gmail.com', '2001-08-21', 23, '2', '2', 'Sathyavani', 'House wife', 30.00, 1, 18000.00, 20000.00, '343,LBS. Nagar, kothur, Nellore, Andhra Pradesh', '127, 10th Main ,KEB Colony, 1st Stage, BTM Layout', '2412230005', '57', '2', 'upload_files/candidate_tracker/75016936850_cvnew.pdf', NULL, '1', '2024-12-23', 15, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2024-12-23 06:13:23', 104, '2024-12-28 12:44:28', 0, NULL, 1),
(23389, 'Dinesh Kumar', '6', '6381124262', '9884595661', 'dineshece184panimalar@gmail.com', '2001-10-01', 23, '2', '2', 'parent', 'ilver designer', 40000.00, 1, 17800.00, 21000.00, 'ambattur chenai', 'ambattur chennai', '2412230006', '1', '2', 'upload_files/candidate_tracker/82078494967_S.DINESHKUMAR1.pdf', NULL, '1', '2024-12-23', 0, '', '3', '59', '2025-01-22', 204000.00, '', '3', '2025-04-29', '1', 'Communication Ok 5050 Sustainability doubts in this profile need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1070', '5151', '2025-01-22', 1, '2024-12-23 06:18:45', 60, '2025-01-22 10:16:46', 0, NULL, 1),
(23390, 'Sivaranjani', '6', '9047221679', '8608227597', 'sivaranjani.pothuraja.2912@gmail.com', '2004-12-29', 19, '2', '2', 'Pothumani', 'Self-employed', 30000.00, 1, 0.00, 16000.00, 'Theni', 'Chennai', '2412230007', '50', '1', 'upload_files/candidate_tracker/19878698248_sivaranjani.pdf', NULL, '1', '2024-12-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was  good at communication ,also confident and also ready for immediate joining and kannan sir also checked and will give 14-15 k', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-23 06:27:10', 154, '2024-12-23 12:42:42', 0, NULL, 1),
(23391, 'Jayasuriya K', '6', '8610098155', '', 'suriyajaya0580@gmail.com', '1999-02-13', 25, '2', '2', 'Kannaiyan', 'No', 15000.00, 5, 0.00, 25000.00, 'Pallavaram', 'Pallavaram', '2412230008', '50', '1', 'upload_files/candidate_tracker/281896105_RESUMEJayasuriya.pdf', NULL, '3', '2025-01-13', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate dress code and communication not good and he not fit for calling work so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-23 06:51:16', 153, '2025-01-13 12:57:02', 0, NULL, 1),
(23392, 'vasanth kumar s', '6', '8610899064', '7299755870', 'Vasanthsekar28@gmail.com', '2003-09-28', 21, '3', '2', 'sekar r', 'electrician', 20000.00, 1, 15000.00, 18000.00, 'pv kovil street royapuram', 'pv kovil street royapuram', '2412230009', '', '2', 'upload_files/candidate_tracker/89613557923_VasanthResume.pdf', NULL, '1', '2024-12-23', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-23 07:55:12', 154, '2024-12-23 03:08:15', 0, NULL, 1),
(23393, 'G Dhanush', '6', '6383827332', '', 'dhanushganesan3@gmail.com', '2003-06-16', 21, '3', '2', 'R.Ganesan', 'Can business', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2412230010', '', '1', 'upload_files/candidate_tracker/56221847826_Dhanush.Gresumepdf.pdf', NULL, '1', '2024-12-23', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skill low and then not interested in sales interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-23 07:55:29', 154, '2024-12-23 03:08:07', 0, NULL, 1),
(23394, 'Sumithra', '6', '6381305264', '9626410310', 'sumithrasethuraj25@gmail.com', '2003-12-25', 20, '2', '2', 'Sethuraj', 'Librarian', 28000.00, 1, 0.00, 15000.00, 'Arakkonam', 'Arakkonam', '2412230011', '1', '1', 'upload_files/candidate_tracker/90270941300_sumii.pdf', NULL, '1', '2024-12-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2024-12-23 09:13:14', 154, '2024-12-26 09:20:58', 0, NULL, 1),
(23395, 'Vidhya', '6', '9843630241', '8940085856', 'vidhyavid45@gmail.com', '2004-08-10', 20, '2', '2', 'Nagarajan', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Vellore', 'Vellore', '2412230012', '1', '1', 'upload_files/candidate_tracker/11262492337_CV20241223035823.pdf', NULL, '1', '2024-12-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2024-12-23 09:23:46', 154, '2024-12-27 09:41:21', 0, NULL, 1),
(23396, 'rajalingam', '13', '9715119428', '9655119428', 'rajasmith427@gmail.com', '2000-06-03', 24, '3', '2', 'eswaran', 'farmer', 2.50, 2, 3.00, 4.00, 'chennai', 'chennai', '2412230013', '', '2', 'upload_files/candidate_tracker/48439113543_RajaLingam.docx', NULL, '1', '2024-12-23', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-23 09:32:32', 1, '2024-12-23 09:38:29', 0, NULL, 1),
(23397, 'Kanthan', '13', '7708628661', '9500556962', 'kanthan27112001@gmail.com', '2001-11-27', 23, '3', '2', 'Rethinavalli', 'Farmer', 20000.00, 1, 3.00, 5.00, 'Chennai', 'Chennai', '2412230014', '', '2', 'upload_files/candidate_tracker/51166541925_KanthanTemplate.pdf', NULL, '1', '2024-12-23', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-23 09:32:52', 1, '2024-12-23 09:41:21', 0, NULL, 1),
(23398, 'R.Ishwarya', '4', '9791724745', '9944280414', 'Ishwaryaragupathy22@gmail.com', '2002-03-22', 22, '2', '2', 'R.sushila', 'Tailor', 7000.00, 0, 0.00, 15000.00, 'NO .31 12th street,Burma colony, Thanjavur', 'Thanjavur', '2412230015', '1', '1', 'upload_files/candidate_tracker/38958815764_R.ISHWARYARESUMENEW1.pdf', NULL, '1', '2024-12-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile,,completed mcom 24 passed,, single child father passed,,,mother only doing tailoring,,,,next street to office ,,,,own house with grand father and mother,,,,,already attend two interview due to night shift family not accepted,,,,have intrested in sales ...expected 12 to 15k,,,,,have laptop,,,,immediate joining,,,kindly check once and confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-23 09:39:48', 153, '2024-12-24 10:45:05', 0, NULL, 1),
(23399, 'PRIYA DHARSHINI I', '6', '9025892874', '', 'Priyadarshini1432222@gmail.com', '2003-03-22', 21, '2', '1', 'adhithya', 'Freelancer', 10000.00, 2, 120000.00, 200000.00, 'Karaikudi', 'Tirunelveli', '2412230016', '50', '2', 'upload_files/candidate_tracker/56115717547_PRIYADHARSHINII2.pdf', NULL, '1', '2024-12-23', 10, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate was not from chennai ,married couple looking for job  and not  sure about stablity', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-23 11:39:10', 154, '2024-12-23 05:42:26', 0, NULL, 1),
(23400, 'ADHITHYA', '6', '9976219163', '', 'adhithya9976@gmail.com', '2003-11-30', 21, '2', '1', 'PRIYADHARSHINI', 'Freelance', 10000.00, 0, 120000.00, 220000.00, 'KARAIKKUDI', 'KARAIKKUDI', '2412230017', '50', '2', 'upload_files/candidate_tracker/33017927745_AdhithyaS.docx1.pdf', NULL, '1', '2024-12-23', 10, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales \n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-23 11:46:11', 154, '2024-12-23 05:42:12', 0, NULL, 1),
(23401, 'Rehana', '4', '9791611687', '9345020966', 'rehuibu24@gmail.com', '1996-12-11', 28, '2', '1', 'Mohamed ibrahim', 'Marketing executive', 15000.00, 1, 15000.00, 18000.00, 'No.81/36 langs garden road pudupet chennai-600002', 'No.81/36 langs garden road pudupet chennai-600002', '2412230018', '1', '2', 'upload_files/candidate_tracker/73640930010_ResumeJobresumeFormat1.pdf', NULL, '1', '2024-12-24', 0, '', '3', '59', '2025-01-02', 216000.00, '', '1', '1970-01-01', '2', 'Communication Good Need to check in 7 days training and confirm', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55824', '55560', '2025-01-02', 1, '2024-12-23 03:43:13', 60, '2024-12-31 06:17:59', 0, NULL, 1),
(23402, '', '0', '7358728493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412240001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-24 05:08:32', 0, NULL, 0, NULL, 1),
(23403, 'Kalpana E', '4', '9342778867', '', 'ekalpana1703@gmail.com', '1996-06-05', 28, '2', '1', 'Ellappan c', 'no', 20000.00, 0, 0.00, 18000.00, 'Saidapet', 'Iyyappanthangal, chennai', '2412240002', '50', '1', 'upload_files/candidate_tracker/80140453335_KalpanaECV1.pdf', NULL, '1', '2024-12-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-24 05:15:50', 1, '2024-12-24 12:56:46', 0, NULL, 1),
(23404, 'KEERTHANA S', '6', '9363290045', '', 'keerthanasbotany02@gmail.com', '2002-10-26', 22, '2', '2', 'SELVA KUMAR K', 'DAILY WAGES', 8000.00, 1, 0.00, 18000.00, 'MAMBAKKAM, KANCHIPURAM DISTRICT', 'PORUR', '2412240003', '50', '1', 'upload_files/candidate_tracker/52839770950_KeerthanaSResume.pdf', NULL, '1', '2024-12-24', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NO BASIC SKILL', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-24 05:17:47', 154, '2024-12-24 11:44:36', 0, NULL, 1),
(23405, 'mohamed naufal shameem', '4', '6382429484', '9629601020', 'naufalshameem08@gmail.com', '2002-11-09', 22, '2', '2', 'shahul hameed', 'manager in accai south region', 50000.00, 1, 15000.00, 21000.00, 'kodambakkam chennai', 'kodambakkam chennai', '2412240004', '1', '2', 'upload_files/candidate_tracker/4018687094_NAUKRIMOHAMEDNAUFALSHAMEEM.pdf', NULL, '1', '2024-12-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2024-12-24 05:30:24', 154, '2024-12-24 12:00:43', 0, NULL, 1),
(23406, 'M.Rajkumar', '6', '6382781409', '9940724467', 'rajk174529@gmail.com', '2001-01-03', 23, '2', '2', 'S.Murugesan', 'Driver', 30000.00, 1, 15000.00, 25000.00, '251/184, Thirumalaiyanpatti, Manaparai', 'No.7 Gandhi nagar, new perugalathur.', '2412240005', '50', '2', 'upload_files/candidate_tracker/20048916676_CV1.pdf', NULL, '1', '2024-12-24', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not good at communication and not ok for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-24 05:32:02', 154, '2024-12-24 11:41:02', 0, NULL, 1),
(23407, 'Manjula', '6', '6379233279', '8668058362', 'mj27111998@gmail.com', '1998-11-27', 26, '2', '2', 'Manikandan', 'Business', 50000.00, 1, 20000.00, 25000.00, 'Mangalampet Cuddalore dt', 'Saidapet, Chennai', '2412240006', '50', '2', 'upload_files/candidate_tracker/83213711001_Manjujj.pdf', NULL, '1', '2024-12-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '\nJob Needed person ,Exp but dont have any Documents so Salary will be try 14k to 15k in hand salary ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-24 05:32:57', 154, '2024-12-24 11:40:50', 0, NULL, 1),
(23408, 'D.Suryaprakash', '6', '9092450939', '7200851810', 'sp653149@gmail.com', '1997-10-16', 27, '2', '2', 'Parent', 'Data entry Opretor', 18.00, 1, 0.00, 16.00, 'Vyasarpadi', 'Vyasarpadi', '2412240007', '57', '2', 'upload_files/candidate_tracker/99715403212_SURYAPRAKASHFINALRESUME.docx', NULL, '1', '2024-12-24', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not Suitable for sales profile, communication not good. field work not interested, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2024-12-24 06:41:10', 154, '2024-12-24 12:50:48', 0, NULL, 1),
(23409, 'Muthuselvi', '4', '7339088905', '9791990822', 'muthuselvi.maheshwaran07@gmail.com', '1995-07-08', 29, '2', '1', 'Maheshwaran', 'Employee', 40000.00, 1, 0.00, 25000.00, 'Pallikaranai', 'Pallikaranai chennai', '2412240008', '50', '1', 'upload_files/candidate_tracker/84221429649_blueprofessionalmodernCVresume202411281614010000.pdf', NULL, '3', '2024-12-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-24 06:48:47', 1, '2024-12-24 06:53:10', 0, NULL, 1),
(23410, 'Monika', '6', '7019704694', '', 'rmonika24680@gmail.com', '2006-12-11', 18, '2', '2', 'Indumathi', 'Employee', 120000.00, 1, 0.00, 16000.00, '#36 nasuku nilaya, thathaguni banglore 560062', '#36 nasuku Nilaya, Thathaguni Banglore 560062', '2412240009', '57', '1', 'upload_files/candidate_tracker/21562208212_CV.pdf', NULL, '1', '2024-12-24', 0, '', '1', '131', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2024-12-24 07:03:00', 104, '2024-12-28 12:45:49', 0, NULL, 1),
(23411, 'Ajith kumar', '6', '8190048365', '9791054385', 'ajitha65@gmail.com', '1998-12-30', 25, '2', '2', 'Sathya', 'Work', 25000.00, 2, 17500.00, 20000.00, 'Chennai', 'Chennai', '2412240010', '50', '2', 'upload_files/candidate_tracker/98301356751_iexxlfzudl.doc', NULL, '3', '2025-01-07', 0, '', '3', '59', '2025-02-20', 210000.00, '', '5', '1970-01-01', '1', 'Communication Ok Have exp but not in relevant one can give a try and check in training', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2025-02-20', 1, '2024-12-24 10:42:05', 60, '2025-02-19 06:45:19', 0, NULL, 1),
(23412, '', '0', '8940650028', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412240011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-24 12:38:46', 0, NULL, 0, NULL, 1),
(23413, 'NANDHINI KOTHANDAM', '6', '9361740582', '9786482984', 'nandhinikk01@gmail.com', '2001-06-13', 23, '2', '2', 'Kothandam', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2412260001', '50', '1', 'upload_files/candidate_tracker/97710043162_NandhinikkResume.pdf', NULL, '1', '2024-12-26', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NO BASIC SKILL', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-26 04:33:17', 154, '2024-12-26 10:29:17', 0, NULL, 1),
(23414, 'Jenith Selva Subahar V', '6', '7598690442', '', 'subavelington@gmail.com', '1998-05-05', 26, '2', '2', 'Velington', '.', 30000.00, 1, 0.00, 18000.00, 'Thoothukudi', 'Chennai', '2412260002', '50', '1', 'upload_files/candidate_tracker/52759260720_JenithsResumeUpdated.pdf', NULL, '1', '2024-12-26', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication was not good and  also looking for other profession .', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-26 05:54:01', 154, '2024-12-26 11:38:05', 0, NULL, 1),
(23415, 'Raman parthi', '13', '9361872258', '8939220633', 'ramanparthiyadav@gmail.com', '2001-06-27', 23, '3', '2', 'Murali', 'Farmer', 300000.00, 1, 0.00, 370000.00, 'Nethaji Street pathapalayam village gummidipoondi', 'Nethaji Street pathapalayam Gummidipoondi', '2412260003', '', '1', 'upload_files/candidate_tracker/88888478308_RamanResume1.pdf', NULL, '1', '2024-12-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-26 06:07:13', 1, '2024-12-26 06:09:54', 0, NULL, 1),
(23416, 'Dharani', '6', '9884333048', '7397267255', 'dharanirdharani02@gmail.com', '2003-09-02', 21, '2', '2', 'Raja', 'Chennai', 15000.00, 1, 0.00, 15000.00, 'Chennai vysarpadi', 'Vysarpadi', '2412260004', '50', '1', 'upload_files/candidate_tracker/23650385819_DHARANIRRESUME.pdf', NULL, '1', '2024-12-26', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-26 06:12:55', 154, '2024-12-26 12:54:40', 0, NULL, 1),
(23417, 'M.RiyasKhan', '6', '9344707474', '9840693460', 'Riyas2509200317@gmail.com', '2003-09-25', 21, '2', '2', 'Mansoor.U', 'Chennai', 20000.00, 1, 0.00, 15000.00, 'Tondiarpet', 'Tomdiarpet', '2412260005', '50', '1', 'upload_files/candidate_tracker/44587013702_riyaskhan.pdf', NULL, '3', '2024-12-26', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication not good and very long distance also so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2024-12-26 06:25:07', 154, '2024-12-26 12:48:47', 0, NULL, 1),
(23418, 'Vijayakumar M', '4', '8754223115', '', 'vijaymvk235@gmail.com', '2003-09-09', 21, '2', '2', 'Parent', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Ulundurpet', 'Velachery', '2412260006', '50', '1', 'upload_files/candidate_tracker/7244357067_vijay1.pdf', NULL, '3', '2024-12-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-26 07:03:32', 1, '2024-12-26 07:20:16', 0, NULL, 1),
(23419, 'Maheswari S', '4', '9884408618', '', 'magi292000au@gmail.com', '2000-08-29', 24, '2', '2', 'D Shankar Father', 'Driver', 30000.00, 1, 16000.00, 20000.00, 'Mugalivakkam, chennai', 'Chennai', '2412260007', '1', '2', 'upload_files/candidate_tracker/82499408801_CV202409242021555017Oct2411.32.04.pdf', NULL, '1', '2024-12-26', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55824', '55560', '1970-01-01', 1, '2024-12-26 07:04:27', 104, '2024-12-27 06:30:04', 0, NULL, 1),
(23420, 'Lokeshwari.A', '13', '9490272230', '', 'Lokia6769@gmail.Com', '2003-08-19', 21, '3', '2', 'Arumugam', 'Weaver', 15000.00, 2, 0.00, 15000.00, 'Puttur', 'Avadi', '2412260008', '', '1', 'upload_files/candidate_tracker/67573775566_Lokiresume2compressed.pdf', NULL, '1', '2024-12-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-26 08:09:07', 1, '2024-12-26 08:41:07', 0, NULL, 1),
(23421, 'Navin krishnan S R', '13', '8925385579', '', 'navinkrish155@gmail.com', '2001-09-18', 23, '3', '2', 'Ramachandran', 'Shopkeeper', 15000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2412260009', '', '2', 'upload_files/candidate_tracker/27737546748_NavinFEResume1.pdf', NULL, '1', '2024-12-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2024-12-26 09:10:35', 154, '2024-12-26 03:13:36', 0, NULL, 1),
(23422, 'Siva D', '4', '9500213175', '', 'sivad1772@gmail.com', '2009-12-26', 0, '2', '2', 'Devaraj', 'If do', 20000.00, 2147483647, 0.00, 18000.00, 'Tiruvannamalai', 'Saidapet', '2412260010', '50', '1', 'upload_files/candidate_tracker/71778311556_SivaResume.pdf', NULL, '1', '2024-12-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-26 12:45:17', 1, '2024-12-26 12:50:59', 0, NULL, 1),
(23423, 'Anu S', '4', '9360816839', '6380085478', 'anus200025@gmail.com', '2000-10-05', 24, '2', '2', 'T.selvarasu,S.Vanitha', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Chennai', '2412260011', '1', '1', 'upload_files/candidate_tracker/81621057953_AnuIT1.pdf', NULL, '1', '2024-12-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2024-12-26 02:24:39', 1, '2024-12-26 02:32:23', 0, NULL, 1),
(23424, 'Sindhuja .v', '6', '7397641220', '9790017976', 'sindhujaramji@gmail.com', '1997-05-05', 27, '2', '1', 'Vivek', 'Senior engineer', 35000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2412270001', '50', '1', 'upload_files/candidate_tracker/40306725369_SIndhuVupdated21.pdf', NULL, '1', '2024-12-27', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-27 05:19:58', 154, '2024-12-27 11:06:28', 0, NULL, 1),
(23425, 'Jaya Suriya', '6', '9150359373', '9514576721', 'jjsuriya19@gmail.com', '2002-06-29', 22, '2', '2', 'Jaya Pal', 'Farmer', 15000.00, 2, 0.00, 18000.00, 'Virudhachalam', 'Velachery - Chennai', '2412270002', '50', '1', 'upload_files/candidate_tracker/25091898305_JayaSuriyaBECSE2023.pdf', NULL, '1', '2024-12-27', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not intrested in slales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2024-12-27 06:27:39', 154, '2024-12-27 01:25:16', 0, NULL, 1),
(23426, '', '0', '9514576721', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412270003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-27 06:47:36', 0, NULL, 0, NULL, 1),
(23427, 'Venkatesh R', '13', '9384775156', '9500565127', 'myvenkat003@gmail.com', '2001-05-03', 23, '3', '2', 'Ravi', 'Shopkeeper', 15000.00, 2, 0.00, 25000.00, 'Madurai', 'Chennai', '2412270004', '', '1', 'upload_files/candidate_tracker/1593628148_venkatesh.pdf', NULL, '1', '2024-12-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-27 06:54:19', 1, '2024-12-27 06:58:24', 0, NULL, 1),
(23428, 'Vicky Robinson.R', '6', '9790792247', '8939080327', 'vicky0209200@gmail.com', '2001-09-02', 23, '2', '2', 'Ramani L', 'Tailor', 30.00, 1, 17.00, 20.00, 'Chennai', 'Chennai', '2412270005', '1', '2', 'upload_files/candidate_tracker/86428354157_vickyResume.pdf', NULL, '1', '2024-12-27', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55651', '5151', '1970-01-01', 1, '2024-12-27 07:01:14', 154, '2024-12-27 01:22:05', 0, NULL, 1),
(23429, 'Sadhana', '6', '7358205381', '', 'sargamsadhana629@gmail.com', '2000-05-30', 24, '2', '2', 'Solai', 'Auto driver', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2412270006', '57', '2', 'upload_files/candidate_tracker/42546252209_TapScanner122120241019.pdf', NULL, '1', '2024-12-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was confident at communication and also have experience and syed sir also checked and will give 14k as salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-27 07:14:34', 154, '2024-12-27 02:42:05', 0, NULL, 1),
(23430, 'Yogesh', '6', '9344337250', '', 'yogeshoffl12@gmail.com', '2001-11-17', 23, '2', '2', 'Saravanan', 'Fabric checker', 18000.00, 1, 12900.00, 18000.00, 'Chennai', 'Chennai', '2412270007', '1', '2', 'upload_files/candidate_tracker/7189657522_YogeshResume.pdf', NULL, '1', '2024-12-27', 0, '', '3', '59', '2025-01-03', 204000.00, '', '5', '1970-01-01', '1', 'Communication ok have exp in calling but in support can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1066', '5151', '2025-01-03', 1, '2024-12-27 07:18:59', 60, '2024-12-28 06:24:27', 0, NULL, 1),
(23431, 'barath kumar . k', '4', '9962444159', '9962445159', 'leobarath31@gmail.com', '2004-06-25', 20, '2', '2', 'priya', 'house wife', 170000.00, 1, 17500.00, 20000.00, 'chennai', 'chennai', '2412270008', '50', '2', 'upload_files/candidate_tracker/94584146809_DocumentfromAshhh.pdf', NULL, '1', '2024-12-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-27 07:29:24', 1, '2024-12-27 07:40:19', 0, NULL, 1),
(23432, 'vinayagamoorthy', '6', '8754673273', '7358493970', 'Vinayagamoorthy3009@gmail.com', '2003-09-30', 21, '1', '2', 'Jayashankar', 'Farmer', 20000.00, 3, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2412270009', '', '1', 'upload_files/candidate_tracker/92434775193_vinayresume2.pdf', NULL, '1', '2024-12-27', 0, 'CAFSUSR00976', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-27 08:11:57', 154, '2024-12-27 02:37:36', 0, NULL, 1),
(23433, 'ubarathi', '4', '8870225328', '', 'subarathiit@gmail.com', '1998-04-28', 26, '2', '2', 'Karuppaiyan', 'worker', 30000.00, 0, 0.00, 14000.00, 'chennai', 'chennai', '2412270010', '50', '1', 'upload_files/candidate_tracker/97242342410_SUBARATHI..RESUME331compressed1.pdf', NULL, '1', '2024-12-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-27 09:31:29', 1, '2024-12-27 09:35:16', 0, NULL, 1),
(23434, 'Vasanth Kumar k', '6', '9345242691', '', 'vasanthkumar200218@gmail.com', '2002-12-18', 22, '2', '2', 'Kannan', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Villupuram', 'Chennai', '2412270011', '50', '1', 'upload_files/candidate_tracker/16800784527_resume.pdf', NULL, '3', '2024-12-31', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not so good at communication and preferring another field and not having confidence', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-27 10:42:45', 154, '2024-12-31 10:27:10', 0, NULL, 1),
(23435, 'Jothi Lakshmi', '4', '9944056687', '8056348038', 'jyothimanoger@gmail.com', '2000-08-29', 24, '2', '2', 'Manoger', 'Past away', 75000.00, 1, 26000.00, 20000.00, 'Kk nagar', 'Kk nagar west', '2412270012', '50', '2', 'upload_files/candidate_tracker/63324219251_JOTHILAKSHMIRESUME.pdf', NULL, '1', '2024-12-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-27 11:30:33', 1, '2024-12-27 11:36:11', 0, NULL, 1),
(23436, 'Abinanthanan.A', '13', '6374700331', '', 'abbianbu@gmail.com', '2009-12-28', 0, '3', '2', 'Anbalagan.B', 'Own business', 45000.00, 0, 0.00, 20000.00, 'Tindivanam', 'Tindivanam', '2412280001', '', '1', 'upload_files/candidate_tracker/91961476322_Abinanthanan.resume.pdf', NULL, '1', '2024-12-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-28 03:47:16', 1, '2024-12-28 04:00:49', 0, NULL, 1),
(23437, 'ASHOK KUMAR P', '13', '8608382406', '', 'ashokkumarr15@gmail.com', '1998-05-25', 26, '3', '2', 'PALANIVEL P', 'Mason', 20000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2412280002', '', '2', 'upload_files/candidate_tracker/96836018114_Ashokexp.pdf1.pdf', NULL, '1', '2024-12-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-28 04:55:54', 1, '2024-12-28 05:06:05', 0, NULL, 1),
(23438, 'Sherin Mathew', '4', '7358620744', '', 'sherinsk75@gmail.com', '2002-05-07', 22, '2', '2', 'Kezia', '-', 240000.00, 1, 0.00, 14500.00, 'Chennai Nungambakkam choolaimedu', 'Chennai Nungambakkam choolaimedu', '2412280003', '50', '1', 'upload_files/candidate_tracker/51549630458_SherinResume20241.pdf', NULL, '1', '2024-12-30', 0, '', '3', '59', '2025-01-02', 180000.00, '', '3', '2025-01-04', '2', 'Communication Good  Not open for Sales but open for Renewal Support Backend roles as discusssed processing for the same', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '55605', '55566', '2025-01-02', 1, '2024-12-28 05:01:15', 154, '2025-01-02 11:13:51', 0, NULL, 1),
(23439, 'Celin Rebekha', '6', '9344239453', '', 'Celinrebekha27@gmail.com', '1995-09-27', 29, '2', '1', 'Joseph', 'Bba', 10000.00, 0, 0.00, 20000.00, 'Arumbakkam', 'Arumbakkam', '2412280004', '50', '1', 'upload_files/candidate_tracker/29283256185_CelinRebekhaResume.pdf', NULL, '1', '2024-12-28', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'attitude and married so not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-28 05:22:19', 154, '2024-12-28 11:24:17', 0, NULL, 1),
(23440, '', '0', '6383421865', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412280005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-28 06:07:28', 0, NULL, 0, NULL, 1),
(23441, 'Priya s', '6', '9176741903', '9566059304', 'priyasrini1903@gmail.com', '2002-03-19', 22, '2', '2', 'Srinivasan s', 'Finance', 18000.00, 1, 0.00, 18000.00, 'New washermenpet', 'New washermenpet', '2412280006', '50', '2', 'upload_files/candidate_tracker/67164940599_PRIYASRESUME.pdf', NULL, '1', '2024-12-28', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales and she intrested in non voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-28 06:11:56', 154, '2024-12-28 12:09:20', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23442, 'Sulthana', '6', '9150448499', '9566097712', 'sulthana0728@gmail.com', '2002-12-07', 22, '2', '2', 'D.Sekar', 'Data entry', 15000.00, 1, 15000.00, 18000.00, 'Old washermenpet', 'Old washermenpet', '2412280007', '50', '2', 'upload_files/candidate_tracker/55705922027_CV2024080810593375.pdf', NULL, '1', '2024-12-28', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not looking confident and not at all speaking a lot and not have experience in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-28 06:11:58', 154, '2024-12-28 12:09:57', 0, NULL, 1),
(23443, 'Aravinth M', '4', '9342695198', '', 'aravinth25mt@gmail.com', '2004-11-25', 20, '2', '2', 'Muruganandam', 'Farmer', 10000.00, 0, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2412280008', '1', '1', 'upload_files/candidate_tracker/91151640706_AravinthResume1.pdf', NULL, '1', '2024-12-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not performing well in interview...not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-28 07:34:34', 104, '2024-12-30 05:34:14', 0, NULL, 1),
(23444, 'MADHAN T', '13', '9360739056', '', 'madhanthangavelu04@gmail.com', '2004-04-02', 20, '3', '2', 'Thangavelu', 'GoldSmith', 25000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2412280009', '', '1', 'upload_files/candidate_tracker/70204497187_MADHANSOFTWAREDEVELOPER.pdf', NULL, '1', '2024-12-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-28 10:28:00', 1, '2024-12-28 10:33:45', 0, NULL, 1),
(23445, 'V.Priyadharshini', '4', '8754841883', '9159449240', 'priyadharshinip755@gmail.com', '2002-06-18', 22, '2', '1', 'V.Arivumani', 'Auto Driver', 30000.00, 3, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2412300001', '1', '2', 'upload_files/candidate_tracker/65079437916_DocScannerDec3020241044AM.pdf', NULL, '1', '2024-12-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability issue and not suite for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-30 05:05:24', 104, '2024-12-30 05:34:35', 0, NULL, 1),
(23446, 'D.Kaneez Fathima', '4', '9994136823', '9042953946', 'kaneezfathima344@gmail.com', '2004-04-13', 20, '2', '2', 'Y.Dastagir Basha', 'Delivery Man', 92000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2412300002', '50', '1', 'upload_files/candidate_tracker/80240263925_Document2.pdf', NULL, '1', '2024-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Telecalling looking only for Non voice process', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2024-12-30 05:38:04', 154, '2024-12-31 10:36:32', 0, NULL, 1),
(23447, 'Ajish Basha', '6', '9952512438', '8973278336', 'ajishbasha73@gmail.com', '2001-03-07', 23, '2', '2', 'Gowrimabee', '7th', 15000.00, 2, 17500.00, 20000.00, 'Kallakurichi', 'Good will mens hostel Teynampet', '2412300003', '1', '2', 'upload_files/candidate_tracker/90668502617_AJISHBASHA.docx', NULL, '1', '2024-12-30', 0, '', '3', '59', '2025-01-06', 204000.00, '', NULL, '2026-02-27', '1', 'Communication Ok Can be trained in our role and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'CA130', '5151', '2025-01-06', 1, '2024-12-30 05:40:32', 60, '2025-01-04 07:19:58', 0, NULL, 1),
(23448, 'Sharmila S', '6', '9150876105', '7904651522', 'sharmila10082002@gmail.com', '2002-08-10', 22, '2', '2', 'Sathiyavani S', 'Company supervisor', 10000.00, 1, 15000.00, 18000.00, 'Pondicherry', 'Pondicherry', '2412300004', '1', '2', 'upload_files/candidate_tracker/3860182601_sharmila.pdf', NULL, '1', '2024-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested in Sales Looking for HR role only always focus for friend opportunity also will not sustain and  not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2024-12-30 05:43:04', 154, '2024-12-31 10:11:54', 0, NULL, 1),
(23449, 'Kalai selvi', '6', '7904651522', '9150876105', 'kalaivijayakumar2001@gmail.com', '2001-08-05', 23, '2', '2', 'Sumathi', 'Helper - schl', 10000.00, 1, 15000.00, 18000.00, 'Karaikal', 'West mampalam', '2412300004', '1', '2', 'upload_files/candidate_tracker/29194223365_lunaresume1removed.pdf', NULL, '1', '2024-12-30', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not intrest in tell calling', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55651', '5151', '1970-01-01', 1, '2024-12-30 05:43:06', 104, '2024-12-30 05:56:58', 0, NULL, 1),
(23450, 'Ezhilanand N', '6', '9943891174', '9443034151', 'masteranand2002@gmail.com', '2002-04-24', 22, '2', '2', 'Neher K', 'Driver', 17000.00, 1, 18000.00, 20000.00, 'Pondicherry', 'As pg hospital Ekkattuthangal', '2412300005', '1', '2', 'upload_files/candidate_tracker/69260276955_Resume.pdf', NULL, '3', '2024-12-30', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'nno basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2024-12-30 05:43:30', 104, '2024-12-30 05:56:45', 0, NULL, 1),
(23451, 'Srilekha', '13', '7200184934', '', 'srilekha1322@gmail.com', '2003-11-22', 21, '3', '2', 'Sumathi', 'Home work', 20.00, 1, 0.00, 3.00, 'Kamarajapurm in Tambaram', 'Chennai', '2412300006', '', '1', 'upload_files/candidate_tracker/11680248908_resume1.pdf', NULL, '1', '2024-12-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-30 05:56:28', 1, '2024-12-30 06:01:36', 0, NULL, 1),
(23452, 'Ramya', '4', '6379165801', '', 'Ramyaramya2004@gmail.com', '2004-09-08', 20, '3', '2', 'Murugesan', 'Farmer', 20000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2412300007', '', '1', 'upload_files/candidate_tracker/86415276089_Ramya.M.pdf', NULL, '1', '2024-12-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telecalling......low profile', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-30 06:00:48', 104, '2024-12-30 06:10:44', 0, NULL, 1),
(23453, 'SIVAPRAKASAM S', '6', '9003885371', '9791858440', 'singlesiva80@gmail.com', '2003-11-21', 21, '2', '2', 'SIVA V', 'Kooli', 20000.00, 1, 0.00, 15000.00, 'Vilupuram', 'Thuraipakkam', '2412300008', '1', '1', 'upload_files/candidate_tracker/52272915231_SIVAPRAKASAMRESUME1.pdf', NULL, '3', '2024-12-30', 0, '', '3', '59', '2025-01-02', 192000.00, '', '3', '2025-01-30', '1', 'Fresher for our roles need to train and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CA130', '5151', '2025-01-02', 1, '2024-12-30 06:01:26', 60, '2024-12-31 06:13:47', 0, NULL, 1),
(23454, 'Anusiya J', '31', '7904041790', '7598603826', 'anusiyaj15072002@gmail.com', '2002-07-15', 22, '6', '2', 'Jeya Chandran', 'Former', 25000.00, 6, 0.00, 15000.00, 'Tuticorin', 'Chennai', '2412300009', '', '1', 'upload_files/candidate_tracker/28058190186_AnusiyaJResume.pdf', NULL, '1', '2024-12-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-30 06:54:36', 1, '2024-12-30 06:59:45', 0, NULL, 1),
(23455, 'Sathiyaseelan s', '6', '8667625192', '9952771634', 'santhoshsebas10@gmail.com', '1996-06-29', 28, '2', '2', 'Alosia', 'House wife', 200000.00, 1, 300000.00, 350000.00, 'Thuraiyur', 'Ashok pillar', '2412300010', '1', '2', 'upload_files/candidate_tracker/63623902794_DOC20220507WA0008.pdf', NULL, '1', '2025-01-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok, 2yrs exp shriram sales xxamp Collection, communication is ok, sal exp 20k above, negotiate the salary and confirm the joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2024-12-30 08:06:02', 154, '2025-01-09 12:46:44', 0, NULL, 1),
(23456, 'K.Ruchitha', '6', '6305880276', '', 'ruchithakongara@gmail.com', '2003-03-10', 21, '2', '2', 'Madhu', 'Employee', 50.00, 1, 0.00, 18.00, 'Kalyandurg', 'Banglore,btm layout', '2412300011', '57', '1', 'upload_files/candidate_tracker/68000141046_resume.pdf', NULL, '1', '2025-01-04', 0, '', '3', '59', '2025-01-08', 168000.00, '', '3', '2025-02-10', '2', 'Communication Ok Fresher need to check in the training and confirm Long Run Doubts in this profile', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '4', '3', '', '', '', '', '55671', '55555', '2025-01-08', 1, '2024-12-30 10:33:28', 60, '2025-01-08 03:52:35', 0, NULL, 1),
(23457, 'K.Anusha', '6', '9347677821', '7670838932', 'akonduru23@gmail.com', '2009-12-30', 0, '2', '2', 'Sunitha', 'House wife', 50000.00, 1, 0.00, 16000.00, 'Odeevidu,kavalapalli, rayachoty', 'Banglore,BTM 2ND STAGE', '2412300012', '57', '1', 'upload_files/candidate_tracker/98960465439_ANURESUME1compressed1.pdf', NULL, '1', '2024-12-30', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she will not sustain his back round it and his aim also need to work in it middle if she got a job she will left', '5', '2', '', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2024-12-30 10:33:48', 104, '2024-12-30 05:55:53', 0, NULL, 1),
(23458, '', '0', '9842623676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2412310001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2024-12-31 03:42:34', 0, NULL, 0, NULL, 1),
(23459, 'John Wesly', '4', '8270175391', '9025957647', 'johnweslycfctkp@gmail.com', '2002-11-23', 22, '3', '2', 'Sagayajaraj', 'Tea master', 10000.00, 1, 18000.00, 18000.00, 'Thirukkattupalli', 'Thirukkattupalli', '2412310002', '', '2', 'upload_files/candidate_tracker/14246895971_johnwesly.pdf', NULL, '1', '2024-12-31', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for partime and sustainability issue .......', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2024-12-31 04:49:45', 154, '2024-12-31 10:40:56', 0, NULL, 1),
(23460, 'Daniel Akash J', '6', '8056287183', '', 'akashdaniel52@gmail.com', '2001-07-27', 23, '2', '2', 'James Valavan S', 'Social worker', 28000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2412310003', '50', '1', 'upload_files/candidate_tracker/27350477097_DanielAkashresume.pdf', NULL, '1', '2024-12-31', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and convincing skill low then interested in customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2024-12-31 04:51:31', 154, '2024-12-31 10:40:40', 0, NULL, 1),
(23461, 'Aarthi.V', '6', '8939708112', '', 'vaarthinaga2003@gmail.com', '2003-05-07', 21, '1', '2', 'Nagavalli', 'House wife', 20000.00, 1, 0.00, 30000.00, 'Kilpauk', 'Kilpack', '2412310004', '', '2', 'upload_files/candidate_tracker/96439342270_Aarthicvnew.pdf', NULL, '1', '2024-12-31', 0, '55854', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performnce is ok.but sustainable doubt also expected higher packge', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-12-31 05:21:29', 154, '2024-12-31 12:38:54', 0, NULL, 1),
(23462, 'nirmal Antony v', '6', '7010630143', '', 'mrheaven2025@gmail.com', '1996-09-18', 28, '1', '2', 'Mom (Jospinmary)', 'House wife', 20000.00, 1, 375000.00, 500000.00, '49/24canal bank road Gandhi nagar Adyar Chennai', '49/24canal bank road Gandhi nagar Adyar Chennai', '2412310005', '', '2', 'upload_files/candidate_tracker/75531153670_DOC20240812WA00031.docx', NULL, '1', '2024-12-31', 0, '55854', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and operformance is good ,but expected Higher package', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2024-12-31 05:37:00', 154, '2024-12-31 12:39:08', 0, NULL, 1),
(23463, 'Thamarai selvi V', '6', '8939308060', '9444239576', 'vthamaraiselvivenkatesh2001@gmail.com', '2001-11-07', 23, '2', '2', 'Venkatesan KR', 'Driver', 15.00, 2, 18.00, 20.00, 'Chennai', 'Chennai', '2412310006', '50', '2', 'upload_files/candidate_tracker/4105400342_DocScannerDec3120241155AM.pdf', NULL, '3', '2024-12-31', 0, '', '3', '59', '2025-01-06', 198000.00, '', '3', '2025-01-07', '2', 'Communicaiton Ok Have Exp in Loan sales 1yrs proper document she has need to check in training period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2025-01-06', 1, '2024-12-31 05:40:55', 60, '2025-01-04 07:32:44', 0, NULL, 1),
(23464, 'Balaji A S', '6', '9566519640', '', 'balasrinivasan34@gmail.com', '1999-06-28', 25, '2', '2', 'Srinivasan C A', 'Farmar', 12000.00, 2, 0.00, 15000.00, 'Athimanjeripet', 'Athimanjeripet', '2412310007', '50', '1', 'upload_files/candidate_tracker/70926330888_Bala.B.EResume11.pdf', NULL, '1', '2024-12-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-31 05:51:21', 1, '2024-12-31 06:02:54', 0, NULL, 1),
(23465, 'Padmasri k', '6', '6281688053', '9398753725', 'padmasree.k04@gmail.com', '2004-07-22', 20, '2', '2', 'Sairam', 'Job', 5000.00, 1, 0.00, 15000.00, 'Banasankari 2nd stage', 'Banasankari 2nd stage', '2412310008', '57', '1', 'upload_files/candidate_tracker/50175538725_PADMASRIresume.docx', NULL, '1', '2024-12-31', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher suggested ctc 14k', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2024-12-31 07:00:43', 153, '2025-01-04 03:56:25', 0, NULL, 1),
(23466, 'C Sairam', '6', '7995051698', '7569991698', 'saisairam416@gmail.com', '2009-12-31', 0, '2', '2', 'Giri', 'Farmer', 30000.00, 1, 0.00, 18000.00, 'Andhraprabdesh, chittor district, Palamaner', 'Bangalore, Banashankari Stage II', '2412310009', '57', '1', 'upload_files/candidate_tracker/44787684567_SAIRAMC.docx', NULL, '1', '2024-12-31', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2024-12-31 07:02:42', 154, '2025-01-02 05:43:18', 0, NULL, 1),
(23467, 'sangeetha', '4', '9150611602', '', 'gunasekaransangeetha6@gmail.com', '1998-02-28', 26, '2', '2', 'Gunasekaran', 'worker', 300000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2412310010', '50', '1', 'upload_files/candidate_tracker/74760256208_SangeethaGunasekaran1735629694335.pdf', NULL, '1', '2025-01-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-31 07:30:18', 1, '2024-12-31 07:34:14', 0, NULL, 1),
(23468, 'PRAVEEN M', '4', '6374610858', '', 'praveenm8112001@gmail.com', '2001-11-17', 23, '2', '2', 'Murugesan .P', 'Former', 25000.00, 1, 0.00, 15000.00, 'Chithamur', 'Chithamur', '2412310011', '50', '1', 'upload_files/candidate_tracker/57223672115_praveenresume3.pdf', NULL, '3', '2025-01-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-31 08:28:56', 1, '2024-12-31 08:38:06', 0, NULL, 1),
(23469, 'SRIPRIYA', '4', '9629562285', '', 'sripriyakamaraj2702@gmail.com', '1994-02-27', 30, '2', '1', 'Rathish', 'worker', 400000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2412310012', '50', '1', 'upload_files/candidate_tracker/7835181876_srirsm.doc', NULL, '1', '2025-01-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2024-12-31 08:57:15', 1, '2024-12-31 09:02:06', 0, NULL, 1),
(23470, 'Nivedha', '6', '8122479162', '8220979893', 'nivedharamach97@gmail.com', '1998-06-17', 26, '2', '1', 'T.Gunasekaran', 'S.r.water service', 15000.00, 1, 15000.00, 200000.00, 'Trichy', 'Chennai', '2412310013', '50', '2', 'upload_files/candidate_tracker/38844408017_ResumeResume.docx', NULL, '1', '2024-12-31', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2024-12-31 09:36:18', 104, '2024-12-31 04:21:55', 0, NULL, 1),
(23471, 'Kamalesh D', '6', '9952362773', '', 'kamaldprathap@gmail.com', '2002-02-12', 22, '2', '2', 'Dhanraj', 'Business man', 12000.00, 1, 0.00, 15000.00, 'Perumalpattu', 'Perumalpattu', '2403250102', '1', '1', 'upload_files/candidate_tracker/63121470697_BlackWhiteandGrayMinimalistProfessionalGraphicDesignerResume1.pdf', NULL, '1', '2025-01-03', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and sales convincing skill better but long distance and sustainability is doubt ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2025-01-01 01:40:27', 154, '2025-01-03 11:17:07', 0, NULL, 1),
(23472, 'Babu', '6', '9704817088', '7660840363', 'agbabu1998@gmail.com', '1998-06-15', 26, '2', '2', 'Ganapati', 'Weaving', 30000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2501020001', '50', '1', 'upload_files/candidate_tracker/94146156321_resume1damu.pdf', NULL, '2', '2025-01-02', 0, '', '5', '149', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', 'candidate was not having good communication and  did not have any work experience not suitable for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-02 04:36:48', 154, '2025-01-02 02:40:40', 0, NULL, 1),
(23473, 'dinesh hari', '33', '9150467797', '9962103378', 'Dineshhari658@gmail.com', '2001-08-25', 23, '2', '2', 'Hari babu', 'Cooli', 10000.00, 1, 15500.00, 18000.00, 'Chennai', 'Chennai', '2501020002', '57', '2', 'upload_files/candidate_tracker/93294872690_CV202406250839329.pdf', NULL, '1', '2025-01-02', 0, '', '6', '0', NULL, 0.00, '', NULL, '1970-01-01', '1', NULL, '4', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-02 04:45:02', 1, '2025-01-02 04:57:27', 0, NULL, 1),
(23474, 'ARUN KM', '6', '9677853477', '8754292883', 'arunmakalingam@gmail.com', '2001-02-20', 23, '2', '2', 'Makalingam', 'Textile business', 25000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2501020003', '50', '1', 'upload_files/candidate_tracker/19829574113_arunresume.pdf', NULL, '1', '2025-01-02', 0, '', '5', '19', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-02 05:03:45', 154, '2025-01-02 11:05:05', 0, NULL, 1),
(23475, 'Yuvaraj S', '6', '8754292883', '9677853477', 'singh372001@gmail.com', '2001-07-03', 23, '2', '2', 'M.Sudhandiraraj', 'Farmer', 100000.00, 1, 0.00, 200000.00, 'Dindigul', 'Perungudi', '2501020004', '50', '1', 'upload_files/candidate_tracker/78499849402_Yuvanresume202407252206030000.pdf', NULL, '1', '2025-01-02', 0, '', '5', '89', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-02 05:03:52', 154, '2025-01-02 11:05:19', 0, NULL, 1),
(23476, 'dinesh hari', '6', '9150467798', '9962103378', 'Dineshhari658@gmail.com', '2001-08-25', 23, '2', '2', 'Hari babu', 'Cooli', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2501020005', '57', '2', 'upload_files/candidate_tracker/39602110471_CV202406250839329signed.pdf', NULL, '1', '2025-01-02', 0, '', '5', '149', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', 'candidate was not waited till interview ,he tells that he was having another interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-02 05:04:59', 154, '2025-01-02 11:02:36', 0, NULL, 1),
(23477, 'Priya.k', '6', '9791168364', '', 'priyababurao26@gmail.com', '2002-10-26', 22, '2', '1', 'K.BabuRao', 'Cooli', 13000.00, 10, 0.00, 15000.00, 'Triplicane ( Ice House)', 'Triplicane ( Ice House)', '2501020006', '57', '1', 'upload_files/candidate_tracker/19036841249_DocumentfromPriya.pdf', NULL, '1', '2025-01-08', 0, '', '7', '59', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', 'Candidate Communication And Performance Is good ,will check with her in the training Period.as discussed CTC 1.80/LPA.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-02 06:33:45', 104, '2025-01-08 12:41:04', 0, NULL, 1),
(23478, 'Jefrin', '6', '9123592937', '9626457439', 'jefrin190@gmail.com', '2002-07-23', 22, '2', '2', 'Santhi N', 'Tailor', 30000.00, 1, 2.00, 20000.00, 'Nagercoil', 'Tambaram', '2501020007', '1', '2', 'upload_files/candidate_tracker/47476601580_Jefrinresume202411280525050000.pdf', NULL, '1', '2025-01-02', 0, '', '10', '', '1970-01-01', 0.00, '', NULL, '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '', '', '1970-01-01', 1, '2025-01-02 06:50:29', 153, '2025-01-02 01:00:36', 0, NULL, 1),
(23479, 'Jenita', '4', '9344120106', '', 'jenij1934@gmail.com', '2000-08-09', 24, '2', '2', 'Antony', 'Steel polish', 50000.00, 1, 17000.00, 20000.00, '49/51,Rettaikuzhi lane tondiarpet ch-81', '49/51,Rettaikuzhi lane tondiarpet ch-81', '2501020008', '1', '2', 'upload_files/candidate_tracker/26624287063_JENITARESUME.pdf', NULL, '1', '2025-01-02', 0, '', '10', '', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1027', '', '', '', '1970-01-01', 1, '2025-01-02 07:45:11', 154, '2025-01-02 02:40:58', 0, NULL, 1),
(23480, 'Vijay g', '6', '8489694648', '8072585024', 'vijaysakar1998@gmail.com', '1998-11-22', 26, '2', '2', 'Gananasaekaran', 'Hotel', 30000.00, 1, 17000.00, 20000.00, 'Vadapalani Chennai', 'Venkateshwara st', '2501020009', '50', '2', 'upload_files/candidate_tracker/77119346905_vg1.pdf', NULL, '1', '2025-01-29', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-02 11:29:51', 154, '2025-01-29 10:34:35', 0, NULL, 1),
(23481, 'Mahalakshmi', '6', '6385590345', '9840643486', 'gmaha241@gmail.com', '2001-10-13', 23, '2', '2', 'Ganrsan', 'Electrician', 20000.00, 1, 16000.00, 17000.00, 'Amjikarai', 'Amjikarai', '2501020010', '1', '2', 'upload_files/candidate_tracker/39194537136_resume.pdf', NULL, '1', '2025-01-03', 2, '', '5', '137', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', 'candiate communication ok but she not work properly in previous company so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2025-01-02 01:18:46', 154, '2025-01-03 10:44:09', 0, NULL, 1),
(23482, 'R. Andrew', '6', '9361031257', '', 'andrewravi2002@gmail.com', '2002-10-16', 22, '2', '2', 'A. Ravi', 'Driving', 25000.00, 1, 19000.00, 18000.00, 'Tondiarpet', '15/a Tondiar nagar 2street tondiarpet chennai-81', '2501020011', '1', '2', 'upload_files/candidate_tracker/68028209111_NewANDREW.pdf', NULL, '1', '2025-01-03', 0, '', '5', '89', '1970-01-01', 0.00, '', NULL, '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-02 02:25:05', 154, '2025-01-03 12:59:38', 0, NULL, 1),
(23483, 'Jagatheeswaran M', '6', '7904606355', '9080927154', 'JAGATHEESWARANMUTHUKUMAR25@GMAIL.COM', '2003-12-25', 21, '2', '2', 'Muthukumar M', 'Business', 20000.00, 1, 0.00, 20000.00, 'Villupuram', 'Saidapet', '2501020012', '1', '1', 'upload_files/candidate_tracker/73011345190_JagatheeswaranResume.pdf', NULL, '1', '2025-01-03', 0, '', '3', '59', '2025-01-08', 192000.00, '', '', '2025-01-10', '1', 'Communication Ok Fresher for Our Roles need to check in training and confirm', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '2025-01-08', 1, '2025-01-02 06:03:02', 154, '2025-01-09 09:41:04', 0, NULL, 1),
(23484, 'Madhavan AJ', '6', '6383286600', '7904606355', 'Madhavanmass15@gmail.com', '2004-03-06', 20, '2', '2', 'T.S.A.Jayavelu', 'Supervisor', 16000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2501030001', '1', '1', 'upload_files/candidate_tracker/87961089306_ResumeMadhavan.AJ.pdf', NULL, '1', '2025-01-03', 0, '', '3', '59', '2025-01-06', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Fresher for our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '2025-01-06', 1, '2025-01-03 02:46:50', 60, '2025-01-04 07:21:33', 0, NULL, 1),
(23485, '', '0', '7676672094', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501030002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-03 02:51:16', 0, NULL, 0, NULL, 1),
(23486, 'Rithika', '4', '9363062788', '9043160066', 'rithikajain9988@gmail.com', '1993-12-10', 31, '2', '2', 'mahendra kumar', 'business', 100000.00, 2, 37000.00, 40000.00, 'sowcarpet', 'sowcarpet', '2501030003', '56', '2', 'upload_files/candidate_tracker/4102479049_RITHIKAJAIN.docx', NULL, '1', '2025-01-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-03 04:22:26', 1, '2025-01-03 04:26:15', 0, NULL, 1),
(23487, 'Lavanya S', '6', '7305441455', '7358558383', 'lavanyatheprincess19@gmail.com', '2002-11-19', 22, '2', '2', 'Sundarraj', 'Lorry driver', 20000.00, 1, 0.00, 18000.00, 'Ponneri', 'Ponneri', '2501030004', '50', '1', 'upload_files/candidate_tracker/22969617587_SLavanyaBE202412221024530000.pdf', NULL, '1', '2025-01-03', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-03 04:56:04', 154, '2025-01-03 10:54:48', 0, NULL, 1),
(23488, 'DHATCHAYINI', '6', '7010958066', '', 'dhachudhandapani6114@gmail.com', '2004-11-06', 20, '2', '2', 'DHANDAPANI', 'POSTMAN', 50000.00, 3, 0.00, 18000.00, '12A, Angalammankoil street District', 'Saidapet', '2501030005', '50', '1', 'upload_files/candidate_tracker/98377862819_DhatchayiniD.pdf', NULL, '1', '2025-01-03', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was  slow at responding  have ideas for other jobs also  and not  at all speaking', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-03 05:32:00', 154, '2025-01-03 11:39:32', 0, NULL, 1),
(23489, 'Haritha', '6', '9952908663', '9840242519', 'harithaharitha09750@gmail.com', '2002-04-20', 22, '2', '2', 'Mohan', 'VAO', 250000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2501030006', '57', '1', 'upload_files/candidate_tracker/54489098635_HARITHA.pdf', NULL, '1', '2025-01-03', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not so good at communication looking for higher ctc and also not interested in field calls', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-03 05:59:09', 154, '2025-01-03 12:37:43', 0, NULL, 1),
(23490, 'Hariharan K', '6', '6383432341', '7092780015', 'captainhari2001@gmail.com', '2001-10-24', 23, '2', '2', 'Jayanthi K', 'Security', 25.00, 1, 0.00, 18000.00, 'Nagapattinam', 'Vandalur', '2501030007', '57', '1', 'upload_files/candidate_tracker/41635344336_HariharanRESUME.doc', NULL, '1', '2025-01-03', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication and convincing skill is low and then long distance , he is interested in customer support', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-01-03 06:02:32', 154, '2025-01-03 12:46:13', 0, NULL, 1),
(23491, 'Kavitha m', '6', '6374160637', '9514119188', 'mskavitha2024@gmail.com', '2001-06-20', 23, '2', '2', 'Mani M', 'Farmer', 10000.00, 2, 0.00, 18000.00, 'Tiruvannamalai', 'Alandur', '2501030008', '57', '1', 'upload_files/candidate_tracker/3411016347_KAVITHAM.pdf', NULL, '1', '2025-01-03', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is 50/50, Exp 3 month Real-estate reason for resigned salary low like 15, now she exp 17k above, candidate not worth for the Salary, Sustainability issues', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-01-03 06:03:07', 154, '2025-01-03 12:43:22', 0, NULL, 1),
(23492, 'Prathap s', '6', '8940640234', '9940281395', 'prathapdhanush5@gmail.com', '1998-04-05', 26, '2', '2', 'Sengeni', 'Security', 9500.00, 2, 15000.00, 17000.00, '12mariyamman Kovil Street.ozhavett', 'No.26, Rotary Nagar 3d Street Triplicane Chennai', '2501030009', '1', '2', 'upload_files/candidate_tracker/45948230861_jpg.pdf', NULL, '1', '2025-01-03', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-03 06:05:56', 154, '2025-01-03 12:29:43', 0, NULL, 1),
(23493, '', '0', '7845584315', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501030010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-03 06:30:05', 0, NULL, 0, NULL, 1),
(23494, '', '0', '6374097624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501030011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-03 08:34:57', 0, NULL, 0, NULL, 1),
(23495, 'SABARISAN', '4', '6374097623', '', 'sabarisanm074@gmail.com', '2002-08-27', 22, '2', '2', 'Murugan', 'coolie', 100000.00, 1, 0.00, 14000.00, 'Saraswathi Nagar, Andankovil East,Karur.', 'chennai', '2501030012', '50', '1', 'upload_files/candidate_tracker/99891769243_M.SABARISANRESUME1.pdf', NULL, '1', '2025-01-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-03 08:47:18', 1, '2025-01-03 09:11:58', 0, NULL, 1),
(23496, 'Immanuvel D', '13', '9092270618', '', 'immanuvelselvan66@gmail.com', '2003-07-12', 21, '3', '2', 'Deivanayagam', 'Shop', 10000.00, 2, 0.00, 300000.00, '14, srinivasa nager, mangadu, Chennai 122', '14, srinivasa nager, mangadu, Chennai 122', '2501030013', '', '1', 'upload_files/candidate_tracker/44883563216_ImmanResume.pdf', NULL, '1', '2025-01-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-03 09:35:19', 1, '2025-01-03 09:38:43', 0, NULL, 1),
(23497, 'Keerthana T', '6', '9344836227', '', 'keerthanatamilselvan0@gmail.com', '2003-03-01', 21, '2', '2', 'Vinay Giri', 'Farmer', 15000.00, 1, 0.00, 16000.00, 'Mayiladuthurai', 'Ambathur', '2501030014', '57', '1', 'upload_files/candidate_tracker/13970519238_KEERTHANARESUME.pdf', NULL, '1', '2025-01-03', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good skill. 6 month experience at lic 2023. will Analyst 7 days training', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-03 09:50:57', 154, '2025-01-03 03:52:59', 0, NULL, 1),
(23498, 'Lakih Ahmed', '6', '9514003786', '6382580019', 'liakhahamed786@gmail.com', '2000-08-22', 24, '2', '2', 'Rahamath bee', 'Home maker', 20000.00, 1, 22500.00, 20000.00, '6c bazar road 1st lane Mylapore Chennai', 'Mylapore', '2501030015', '1', '2', 'upload_files/candidate_tracker/67662527630_LAKIHAHMEDRESUME1108.docx', NULL, '1', '2025-01-03', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-03 09:58:18', 154, '2025-01-03 03:49:11', 0, NULL, 1),
(23499, 'Bavithran muruganandham', '4', '9384356881', '9384351482', 'bavithran091@gmail.com', '2000-05-22', 24, '2', '2', 'Muruganandham', 'Society sales man', 20000.00, 1, 0.00, 180000.00, 'Thanjavur', 'Chennai', '2501030016', '50', '1', 'upload_files/candidate_tracker/79734844298_BavithranMCAjavaandsqlResume.pdf', NULL, '1', '2025-01-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-03 10:04:08', 1, '2025-01-03 10:07:24', 0, NULL, 1),
(23500, 'KISHORE S', '4', '8939334734', '6383551906', 'kishoreigns2003@gmail.com', '2003-09-19', 21, '2', '2', 'SIVARAJ (FATHER)', 'Fresher', 20000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2501030017', '50', '1', 'upload_files/candidate_tracker/85644556001_KISHORERESUME1.pdf', NULL, '1', '2025-01-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-03 11:18:49', 1, '2025-01-03 11:30:41', 0, NULL, 1),
(23501, 'arjun', '4', '8110863761', '', 'arjun240902@gmail.com', '2002-09-24', 22, '2', '2', 'vijayaragavan', 'bussiness owner', 2.00, 1, 14500.00, 20000.00, 'thanjavur', 'thanjavur', '2501030018', '1', '2', 'upload_files/candidate_tracker/90505914360_DocScanner03Jan20250903PM.pdf', NULL, '1', '2025-01-04', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit ........no job need...two years looking in father business,,,,,choosing data entry,,', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-03 01:37:23', 153, '2025-01-04 11:11:15', 0, NULL, 1),
(23502, 'sachin', '6', '7010905538', '', 'sachinaravind25@gmail.com', '1998-04-24', 26, '2', '2', 't.senthil kumar', 'nnc employee', 200000.00, 0, 0.00, 18000.00, 'chennai', 'chennai', '2501040001', '50', '1', 'upload_files/candidate_tracker/98729359420_DOC20241213WA0004.1.pdf', NULL, '1', '2025-01-04', 0, '', '10', '', '1970-01-01', 0.00, '', NULL, '1970-01-01', '1', 'not Interested in sales and not in formals', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-04 04:34:24', 154, '2025-01-04 10:44:56', 0, NULL, 1),
(23503, 'Visali.y', '6', '9361068919', '', 'visaliyogeswaran@gmail.com', '2002-01-25', 22, '2', '2', 'Yogeswaran', 'Interior furniture', 30000.00, 1, 0.00, 16000.00, 'No.333 s a colony 5th Street sharamanagar', 'No 14 ambedkar nagar 1 st Street madhavaram', '2501040002', '45', '1', 'upload_files/candidate_tracker/30007954069_visaliresume.docx', NULL, '1', '2025-01-04', 0, '', '5', '89', '1970-01-01', 0.00, '', NULL, '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-04 04:50:43', 154, '2025-01-04 11:01:52', 0, NULL, 1),
(23504, 'Guru prasath V', '13', '8489676567', '', 'vemulaguruprasath@gmail.com', '2001-09-01', 23, '5', '2', 'Chandrakala V', 'Housewife', 2000.00, 0, 0.00, 350000.00, 'Velama Kandrigai (village)', 'Velama Kandrigai (village)', '2501040003', '', '1', 'upload_files/candidate_tracker/15408206816_Guruprasathresume.pdf', NULL, '1', '2025-01-04', 0, '', '6', '0', NULL, 0.00, '', NULL, '1970-01-01', '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-04 05:22:00', 1, '2025-01-04 05:29:13', 0, NULL, 1),
(23505, 'SHEIK SALEEM', '4', '7667248092', '8870081640', 'saleemsheik384@gmail.com', '2002-09-14', 22, '2', '2', 'SHEIK ALAVUDEEN', 'Kooli', 18000.00, 1, 0.00, 12000.00, 'Ayyampettai', 'Ayyampettai', '2403250104', '1', '1', 'upload_files/candidate_tracker/91910675150_SHEIKSALEEEMRESUME2024.pdf', NULL, '1', '2025-01-04', 0, '', '3', '59', '2025-01-06', 150000.00, '', '', '2025-01-23', '2', 'Communication Ok Fresher for our roles need to train from scratch can check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '2025-01-06', 1, '2025-01-04 05:31:56', 60, '2025-01-04 06:17:26', 0, NULL, 1),
(23506, 'Ayisha', '4', '9150956551', '9094810213', 'ayisha592000@gmail.com', '2000-09-05', 24, '3', '2', 'Shareef s j', 'TV mechanic', 15000.00, 1, 25000.00, 30000.00, 'Pulianthope', 'Pulianthope', '2501040005', '', '2', 'upload_files/candidate_tracker/66216473558_AyishaResume.pdf.pdf', NULL, '1', '2025-01-04', 30, '', '5', '11', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', 'not selected for E sales ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2025-01-04 07:27:59', 154, '2025-01-04 01:22:56', 0, NULL, 1),
(23507, 'ANGU HARIHARAN. D', '6', '7449211051', '', 'ANGUHARIHARAN2003@GMAIL.COM', '2003-06-15', 21, '2', '2', 'dhanapal r', 'old spare parts', 150000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2501040006', '50', '1', 'upload_files/candidate_tracker/99254282006_Anguhariharan.pdf', NULL, '1', '2025-01-07', 0, '', '1', '', '1970-01-01', 0.00, '', NULL, '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'candidate went without attending', '', '', '', '', '', '1970-01-01', 1, '2025-01-04 08:21:20', 154, '2025-01-07 11:31:06', 0, NULL, 1),
(23508, '', '0', '9941412917', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501040007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', NULL, '1970-01-01', '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-04 09:17:26', 0, NULL, 0, NULL, 1),
(23509, 'naveen kumar', '6', '9176256928', '8681009252', 'havocnaveen2551@gmail.com', '2001-09-11', 23, '2', '2', 't. egambaram', 'wage work', 45000.00, 4, 18000.00, 20000.00, 'colour Street panaiyur. tindivanam viluppuram', 'velu nagar Second Street peerkankaranai .', '2501040008', '1', '2', 'upload_files/candidate_tracker/16253171709_NaveenKumarE.pdf', NULL, '1', '2025-01-23', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and peformacne is little bit not good,also long distance sustsainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', '55666', '5151', '1970-01-01', 1, '2025-01-04 12:32:47', 154, '2025-01-23 12:52:40', 0, NULL, 1),
(23510, 'Mohamed Thahir', '4', '8072006280', '', 'thahirmohamed493@gmail.com', '2001-07-29', 23, '2', '2', 'Fairose banu S', 'Nill', 10000.00, 1, 15000.00, 15000.00, 'Tanjore', 'Mela Thiruppanthuruthi', '2403250106', '1', '2', 'upload_files/candidate_tracker/83514013604_CV2024101109423979.pdf', NULL, '1', '2025-01-06', 0, '', '3', '59', '2025-01-09', 168000.00, '', '3', '2025-01-09', '1', 'Communication Ok Can be trained in our roles need to check in training', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '2025-01-09', 1, '2025-01-05 02:28:48', 153, '2025-01-09 10:04:30', 0, NULL, 1),
(23511, 'Ajay. G', '6', '8675252516', '', '3ajaygopi@gmail.com', '2002-02-18', 22, '2', '2', 'Gopi', 'Steel dinger', 18000.00, 1, 12500.00, 25000.00, 'Triplicane', 'Triplicane', '2501060001', '1', '2', 'upload_files/candidate_tracker/40746744644_ajay.pdf', NULL, '1', '2025-01-06', 0, '', '5', '137', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'candiate commuication not good and very long distance so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CA130', '5151', '1970-01-01', 1, '2025-01-06 04:16:33', 154, '2025-01-06 10:24:08', 0, NULL, 1),
(23512, '', '0', '8098903483', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501060002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-06 04:17:16', 0, NULL, 154, '2026-03-12 01:06:36', 0),
(23513, 'S. preethi sneha', '4', '9080993215', '8838938080', 'Snehapreethi03@gmail.com', '2000-07-26', 24, '2', '2', 'Chandra', 'Client cordnation', 30.00, 1, 7000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2501060003', '1', '2', 'upload_files/candidate_tracker/16150344778_PreethiSnehaResume21.pdf', NULL, '1', '2025-01-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'she is ok with the profile...completed MBA in hr and worked in sharekhan,,,,as a customer executive for MF AND SHARES....father passed...mother home maker....grandfather only care taking but recently passed away,,,rental house only.....near by house....brother worked in coimbatore...as it recriter...25k salary..have no laptop...wednesday joining.....expected 13k', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-06 04:24:33', 154, '2025-01-06 10:24:26', 0, NULL, 1),
(23514, 'vasia siddiqua', '11', '9840371234', '8667514492', 'vasiasiddiqua30@gmail.com', '2003-06-30', 21, '2', '2', 'rizwanullah', 'business', 300000.00, 2, 0.00, 5000.00, 'purasaiwakkam tana street chennai', 'purasaiwakkam tana street chennai', '2501060004', '1', '1', 'upload_files/candidate_tracker/14714811836_ResumeNew.pdf', NULL, '2', '2024-11-25', 0, '', '6', '', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-01-06 04:39:41', 104, '2025-01-07 09:49:04', 0, NULL, 1),
(23515, 'elvis john', '4', '7539903319', '8939120652', 'iamjohn2315@gmail.com', '1997-12-23', 27, '2', '1', 'sherlin jenifer', 'nil', 25000.00, 1, 23500.00, 23000.00, 'trichy', 'trichy', '2501060005', '1', '2', 'upload_files/candidate_tracker/43109879921_Resumepdf.pdf', NULL, '1', '2025-01-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '1', '1970-01-01', '1', 'no fit...expected high....long distance ..', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-06 04:59:07', 154, '2025-01-06 12:16:10', 0, NULL, 1),
(23516, 'Vinothini', '6', '6374422024', '', 'vinosvg2016@gmail.com', '1997-05-22', 27, '2', '1', 'Thatchanamoorthy', 'Chemist', 20000.00, 1, 0.00, 18000.00, 'Thenampet', 'Thenampet', '2501060006', '50', '1', 'upload_files/candidate_tracker/4583798059_myresume.pdf', NULL, '1', '2025-01-06', 0, '', '5', '89', '1970-01-01', 0.00, '', '1', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-06 05:15:01', 154, '2025-01-06 12:15:51', 0, NULL, 1),
(23517, 'Swathy v', '6', '7358481610', '', 'swathyviji489@gmail.com', '2003-04-30', 21, '2', '2', 'Vijayaragavalu G', '12', 300000.00, 1, 15000.00, 18000.00, 'No:7/242 A vajaravel street TTK Nagar pozhichalur', '7/242 A vajaravel street TTK Nagar pozhichalur', '2501060007', '1', '2', 'upload_files/candidate_tracker/4079504926_DocumentfromSwathy.pdf', NULL, '1', '2025-01-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'not fit for sales and distance also long', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '55651', '5151', '1970-01-01', 1, '2025-01-06 05:43:37', 154, '2025-01-06 12:15:26', 0, NULL, 1),
(23518, 'Geetha', '6', '8825894237', '9940454502', 'geethageetha11082003@gmail.com', '2003-08-11', 21, '2', '2', 'Rajendran', 'Driver', 10000.00, 1, 15000.00, 17000.00, 'Saidapet', 'Saidapet', '2501060008', '50', '2', 'upload_files/candidate_tracker/2477041204_GeethaRResume04112023185223.pdf', NULL, '1', '2025-01-06', 0, '', '8', '102', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'Not attend interview ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-01-06 06:07:38', 154, '2025-01-06 12:20:27', 0, NULL, 1),
(23519, 'Suresh', '13', '6374391120', '', 'sureshsakthivel786@gmail.com', '2002-04-10', 22, '5', '2', 'Sakthivel', 'Fresher', 25000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2501060009', '', '1', 'upload_files/candidate_tracker/89827542438_SureshResume.pdf', NULL, '1', '2025-01-06', 0, '', '10', '0', NULL, 0.00, '', '1', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-06 06:09:59', 1, '2025-01-06 06:18:58', 0, NULL, 1),
(23520, 'Jenifer.B', '6', '7305442473', '9952977473', 'jeniferbabu446@gmail.com', '2004-07-29', 20, '2', '2', 'Babu A', 'Auto Driver', 10000.00, 0, 0.00, 15000.00, '17000', 'Saidapet', '2501060010', '50', '2', 'upload_files/candidate_tracker/19373268618_Jenifer.Bbscc.s.docx', NULL, '1', '2025-01-06', 0, '', '5', '89', '1970-01-01', 0.00, '', '1', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-06 06:12:11', 154, '2025-01-06 12:23:08', 0, NULL, 1),
(23521, 'devi m', '6', '9790700471', '7358304497', 'bharathbovas1@gmail.com', '1999-01-12', 25, '2', '2', 'manoharan', 'nil', 10000.00, 2, 20000.00, 25000.00, 'chennai', 'chennai', '2501060011', '50', '2', 'upload_files/candidate_tracker/35337410489_WhatsAppImage20250106at12.12.30PM.pdf', NULL, '1', '2025-01-06', 0, '', '3', '59', '2025-01-17', 192000.00, '', '3', '2025-01-31', '2', 'Communication Ok 5050 on sustainability need to review and check in training phone she need to arrange', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2025-01-17', 1, '2025-01-06 06:30:43', 154, '2025-01-17 10:30:33', 0, NULL, 1),
(23522, 'Mythili', '6', '9940659821', '', 'mythilim127@gmail.com', '2003-11-09', 21, '2', '2', 'Boopathi', 'Coolie', 10000.00, 1, 0.00, 15000.00, 'Royapuram', 'Royapuram', '2501060012', '50', '1', 'upload_files/candidate_tracker/69922939213_DocumentfromMythu0601202512.40.02inverted.pdf', NULL, '1', '2025-01-06', 0, '', '5', '105', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'Candidate Communication Little Bit Only Good ,Also Her Performance Is Not Good And Then Sustainable Is Doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-06 06:42:14', 154, '2025-01-06 01:27:22', 0, NULL, 1),
(23523, 'Gaja lakshni.k', '6', '9043915985', '', 'gajakumar18@gmalim.com', '2003-10-18', 21, '2', '2', 'C.u.kumar', 'Business', 18000.00, 1, 0.00, 15000.00, 'Sowcarpet', 'Sowcarpet', '2501060013', '50', '1', 'upload_files/candidate_tracker/40979723573_Gajapdf.pdf', NULL, '1', '2025-01-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'Not much comfort to work in target looking for non voice also her friend got rejected in the interview she will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-06 06:44:04', 154, '2025-01-06 02:48:04', 0, NULL, 1),
(23524, 'Prabhakaran M', '6', '9080061896', '', 'dsprabha454@gmail.com', '2000-04-04', 24, '2', '2', 'Suguna', 'Nil', 14000.00, 2, 0.00, 1.80, 'Chennai', 'Chennai', '2501060014', '1', '1', 'upload_files/candidate_tracker/51791361322_Prabhakaranmresume.pdf', NULL, '1', '2025-01-07', 0, '', '1', '57', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-01-06 06:44:15', 154, '2025-01-07 01:19:22', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23525, 'S Rajarathinam', '6', '8754057797', '', 'Jillaraja613@gmail.com', '2002-07-22', 22, '2', '2', 'Sankar', 'Sales man', 150000.00, 1, 15000.00, 21000.00, 'Tirunelveli', 'Chennai', '2501060015', '1', '2', 'upload_files/candidate_tracker/19856422775_Rajarathinams.pdf', NULL, '1', '2025-01-06', 0, '', '5', '57', '1970-01-01', 0.00, '', '1', '1970-01-01', '1', 'candidate is unfit for sales profile, communication not good, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2025-01-06 07:10:46', 154, '2025-01-06 01:10:49', 0, NULL, 1),
(23526, 'Keerthivasan', '6', '9150663058', '9551858996', 'k.keerthivasan38@GMAIL.COM', '2001-10-08', 23, '3', '2', 'No', 'No', 50000.00, 1, 2.19, 3.50, '15/A ganapathy Nagar kolathur Chennai 99', '15/A ganapathy Nagar kolathur Chennai 99', '2501060016', '', '2', 'upload_files/candidate_tracker/77195876100_keerthivasan.pdf', NULL, '1', '2025-01-06', 0, '', '6', '', '1970-01-01', 0.00, '', '1', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', 'candidate went without attending', '', '', '', '', '', '1970-01-01', 1, '2025-01-06 09:20:23', 154, '2025-01-06 03:50:30', 0, NULL, 1),
(23527, '', '0', '7358584582', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501060017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-06 10:13:27', 0, NULL, 0, NULL, 1),
(23528, 'Nithishkumar P', '4', '9360465278', '9159345395', 'nithishpalaniswamy6@gmail.com', '2001-04-11', 23, '2', '2', 'Palaniswamy S', 'Tasmac salesman', 100000.00, 1, 0.00, 17000.00, 'Neepathurai, Chengam, Tiruvannamalai', 'T Nagar', '2501060018', '50', '1', 'upload_files/candidate_tracker/53905421147_Nithishresumenew.pdf', NULL, '3', '2025-01-07', 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-06 12:36:05', 1, '2025-01-06 01:12:37', 0, NULL, 1),
(23529, 'Gomathi', '4', '8807412228', '', 'gomathivn1@gmail.com', '2002-09-19', 22, '2', '2', 'N.Kalaivani', 'Care taker', 30000.00, 1, 16000.00, 20000.00, 'Tirupathi', 'Arumbakkam', '2501060019', '50', '2', 'upload_files/candidate_tracker/5211805449_GomathiResumePresent.docx', NULL, '1', '2025-01-09', 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-06 02:29:54', 1, '2025-01-07 06:51:36', 0, NULL, 1),
(23530, 'Arun prasath', '4', '7538891491', '', 'arunprasath2002ap@gmail.com', '2002-11-09', 22, '2', '2', 'Sekar', 'Farmer', 60000.00, 0, 0.00, 2.00, 'Nagapattinam', 'Nagapattinam', '2501070001', '1', '1', 'upload_files/candidate_tracker/84032498741_PinkSimpleProfileResume17.pdf', NULL, '1', '2025-01-07', 0, '', '7', '59', '1970-01-01', 0.00, '', NULL, '1970-01-01', '1', 'He is ok with the profile ...completed diploma in Nagapattinam....and studied BE in madurai...expected high exposure.....and studied 6 month course in Palanasam.....mother passed last year....father centring work daily wages......not interested in IT current....he is interested in Tele calling...bcoz of he is speaking well......expected 13 to 14k.....have laptop....only issue distance.....100km...Aliyur....near Nagapattinam....ready to relocate to thanjavur hostel...so kindly check and confirm...apart from distance all good', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-07 04:07:21', 154, '2025-01-07 11:17:52', 0, NULL, 1),
(23531, 'shuruthilaya', '6', '6385428262', '9677572436', 'shruthiravi252k@gmail.com', '2000-08-25', 24, '2', '2', 'ravi', 'retired nlc', 45000.00, 1, 0.00, 22000.00, 'neyveli', 'chennai', '2501070002', '50', '1', 'upload_files/candidate_tracker/12471254645_ShuruthilayaDataAnalystResumeUpdated.pdf', NULL, '1', '2025-01-07', 0, '', '5', '89', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-07 05:21:15', 154, '2025-01-07 11:35:24', 0, NULL, 1),
(23532, 'Nithya', '33', '9962237649', '9176275243', 'nithyavenky18@gmail.com', '2004-01-18', 20, '2', '2', 'S. Venkateshan', 'Mason', 108000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2501070003', '50', '1', 'upload_files/candidate_tracker/81709734676_nithyaresume4.pdf', NULL, '1', '2025-01-08', 0, '', '6', '0', NULL, 0.00, '', NULL, '1970-01-01', '2', NULL, '4', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-07 05:22:32', 1, '2025-01-07 05:25:23', 0, NULL, 1),
(23533, 'AJAY K', '6', '9600148163', '9952981109', 'masterajay152@gmail.com', '2002-05-01', 22, '2', '2', 'A. Kamaraj', 'Coolie', 28000.00, 2, 18000.00, 21000.00, 'Chennai', 'Chennai', '2501070004', '57', '2', 'upload_files/candidate_tracker/72070503138_AJAYRESUME.pdf', NULL, '1', '2025-01-07', 0, '', '3', '59', '2025-01-09', 204000.00, '', '', '2025-01-10', '1', 'Communication ok can give a try and check in training period', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2025-01-09', 1, '2025-01-07 05:24:36', 60, '2025-01-08 07:08:36', 0, NULL, 1),
(23534, 'Srija', '4', '8438011383', '9597571404', 'srigirija20@gmail.com', '2001-11-22', 23, '2', '2', 'Vishwanathan', 'Accounting', 300000.00, 1, 18000.00, 19000.00, 'Ushanagar 2nd Street, ullagaram.madipakam', 'Ushanagar 2nd Street, ullagaram madipakam chennai', '2501070005', '1', '2', 'upload_files/candidate_tracker/27895632632_resume1.pdf', NULL, '1', '2025-01-07', 0, '', '1', '59', '1970-01-01', 0.00, '', NULL, '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-01-07 05:24:50', 154, '2025-01-07 12:03:12', 0, NULL, 1),
(23535, 'KARTHICK BABU', '6', '9360824179', '', 'bsc.idd.karthickbabu@gmail.com', '2001-11-06', 23, '2', '2', 'Sakthi', 'Coolie', 200000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2501070006', '57', '2', 'upload_files/candidate_tracker/6916744785_KARTHICKBABU.S1.pdf', NULL, '1', '2025-01-07', 0, '', '5', '149', '1970-01-01', 0.00, '', NULL, '1970-01-01', '1', 'candidate was not suitable for sales and not have any ideas about the field', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-07 05:33:15', 154, '2025-01-07 12:28:38', 0, NULL, 1),
(23536, 'Hari Haran', '6', '8428460003', '9087104071', 'hhari4931@gmail.com', '2000-10-16', 24, '2', '2', 'Ponkumar', 'Shop', 20000.00, 1, 19500.00, 30000.00, 'Chennai', 'Chennai', '2501070007', '50', '2', 'upload_files/candidate_tracker/41453124585_wepikpastelsimplefinncampbellpilatestrainerresume202410170555386ACW.pdf', NULL, '1', '2025-01-07', 0, '', '1', '149', '1970-01-01', 0.00, '', NULL, '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-07 05:35:30', 154, '2025-01-07 12:15:26', 0, NULL, 1),
(23537, 'Sonu G R', '6', '8088780815', '', 'sonuramakrishna76@gmail.com', '2003-10-06', 21, '2', '2', 'Ramakrishnachari', 'Painter', 30000.00, 3, 0.00, 17000.00, 'Byatarayanapura', 'Byatarayanapura', '2501070008', '57', '1', 'upload_files/candidate_tracker/15470616263_sonucvcompressed.pdf', NULL, '1', '2025-01-08', 0, '', '5', '147', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', 'looking for non voice', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-01-07 06:30:17', 154, '2025-01-11 09:51:14', 0, NULL, 1),
(23538, 'Amrutha R', '6', '7349194632', '', 'ramrutha486@gmail.com', '2002-11-01', 22, '1', '2', 'Raju', 'Painter', 30000.00, 2, 0.00, 17000.00, 'Rajarajeshwari Nagar', 'Rajarajeshwari Nagar', '2501070009', '', '1', 'upload_files/candidate_tracker/78891363338_1bf2db76d8a546b0ac0a3af970a87b23.pdf', NULL, '1', '2025-01-08', 0, '55833', '5', '147', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', 'candidate not intrested', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-01-07 06:30:58', 154, '2025-01-11 09:54:08', 0, NULL, 1),
(23539, 'Narendran M', '13', '7358977178', '', 'narensundar2@gmail.com', '2000-03-24', 24, '5', '1', 'Meenakshi sundhram', 'Bero shop', 15000.00, 1, 550000.00, 850000.00, 'Chennai', 'Chennai', '2501070010', '', '2', 'upload_files/candidate_tracker/40391031658_Narendran.pdf', NULL, '1', '2025-01-07', 1, '', '10', '0', NULL, 0.00, '', NULL, '1970-01-01', '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-07 06:48:25', 1, '2025-01-07 06:52:52', 0, NULL, 1),
(23540, 'Krishna Raj', '4', '9600440263', '9791982316', 'krishnaraghav093@gmail.com', '2002-03-09', 22, '2', '2', 'Raghavan', 'Driver', 200000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2501070011', '1', '1', 'upload_files/candidate_tracker/92355410775_IMG202409220147561.pdf', NULL, '1', '2025-01-07', 0, '', '7', '59', '1970-01-01', 0.00, '', NULL, '1970-01-01', '1', 'He is ok with the profile...completed BE In park college....CS.....working in us based company in chennai...and night shift health issue....and no OT charges....so he releived from job....and already selected in IT company...but due to uncle death he releived....so high expenses in chennai....so ready to settle in thanjavur......father driver in foreign....and brother going to higher studies in London this month....have KTM bike.....not interested to work in foreign....so mother passed away....kindly check and confirm...salary 13 to 14k....immediate joining', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-07 06:50:28', 154, '2025-01-07 01:19:35', 0, NULL, 1),
(23541, 'Naveen', '4', '9361028061', '', 'naveen2002631331@gmail.com', '2002-12-08', 22, '2', '2', 'ravi', 'work', 30000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2501070012', '50', '1', 'upload_files/candidate_tracker/70797012537_Naveenresumenewcopycompressed.pdf', NULL, '1', '2025-01-08', 0, '', '6', '0', NULL, 0.00, '', NULL, '1970-01-01', '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-07 07:53:37', 1, '2025-01-07 12:53:50', 0, NULL, 1),
(23542, 'ManiMaran R', '6', '9025128586', '', 'manimaran88manoj@gmail.com', '2003-06-06', 21, '2', '2', 'Ramachandran M', 'MSF Employee', 25000.00, 1, 0.00, 400000.00, 'Egmore', 'Egmore', '2501070013', '50', '1', 'upload_files/candidate_tracker/88464257166_ManimaranR1.pdf', NULL, '1', '2025-01-08', 0, '', '5', '149', '1970-01-01', 0.00, '', NULL, '1970-01-01', '1', 'candidate was not so good at communication and he was having interest in other fields', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-07 09:01:15', 104, '2025-01-08 12:19:28', 0, NULL, 1),
(23543, 'J. Dhanush kumar', '6', '9344211866', '', 'dhanush1607sk@gmail.com', '2000-06-07', 24, '1', '2', 'Jayaram', 'Business', 30000.00, 2, 0.00, 20000.00, 'Redhills', 'Redhills', '2501070014', '', '1', 'upload_files/candidate_tracker/18691144550_TapScanner0701202516391.pdf', NULL, '1', '2025-01-07', 0, '55758', '5', '149', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', 'candidate was not at all good at communication and not having confidence not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-07 09:23:43', 154, '2025-01-07 06:12:42', 0, NULL, 1),
(23544, 'Charan', '4', '9360473200', '8489656144', 'charankrish72@gmail.com', '2002-06-29', 22, '2', '2', 'Sivashankar', 'Compounder', 15000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Thanjavur new bustand', '2501070015', '1', '1', 'upload_files/candidate_tracker/58309133108_NAUKRICHARANS1733920478495charans.pdf.pdf', NULL, '1', '2025-01-08', 0, '', '5', '74', '1970-01-01', 0.00, '', NULL, '1970-01-01', '1', 'not fit for tele calling kindly  avoid', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-07 09:27:49', 154, '2025-01-09 10:07:31', 0, NULL, 1),
(23545, '', '0', '9344211867', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501070016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', NULL, '1970-01-01', '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-07 09:33:34', 0, NULL, 0, NULL, 1),
(23546, 'Abinaya asok', '4', '8248644661', '', 'asokabinayaasok@gmail.com', '2000-10-21', 24, '2', '2', 'Asokkumarram', 'Advocate', 500000.00, 1, 0.00, 2.50, 'Guduvanchery', 'Guduvanchery', '2501070017', '50', '1', 'upload_files/candidate_tracker/14279204554_ABINAYACV1.docx', NULL, '1', '2025-01-08', 0, '', '1', '59', '1970-01-01', 0.00, '', NULL, '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-01-07 10:40:25', 104, '2025-01-08 12:55:05', 0, NULL, 1),
(23547, 'Raghul', '31', '9677847501', '', 'raghulraviworld@gmail.com', '2003-10-25', 21, '3', '2', 'Ravi', 'Taylor', 10000.00, 0, 0.00, 15000.00, 'Arani', 'Velachery', '2501080001', '', '1', 'upload_files/candidate_tracker/72570963668_Raghulprofile.pdf', NULL, '1', '2025-01-08', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-08 03:57:12', 154, '2025-01-08 06:09:59', 0, NULL, 1),
(23548, 'Yazhini T', '4', '8778971663', '9003502726', 'thiruyazhini9@gmail.com', '2002-03-11', 22, '2', '2', 'Thirunavukkarasu.V', 'Farmer', 100000.00, 1, 0.00, 14000.00, 'Thanjavur', 'Thanjavur', '2501080002', '1', '1', 'upload_files/candidate_tracker/69786867955_MinimalistModernProfessionalCVResume1.pdf', NULL, '1', '2025-01-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have no clarity about job not fit for team', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-08 04:04:12', 154, '2025-01-09 10:07:44', 0, NULL, 1),
(23549, 'saran kanth', '31', '6385345038', '9597984788', 'Sarankanth43@gmail.com', '2004-02-08', 20, '3', '2', 'iyyappan', 'carpenter', 9000.00, 1, 0.00, 15000.00, 'lashmipuram kottarm post Kanyakumari distrct', 'hennai', '2501080003', '', '1', 'upload_files/candidate_tracker/72583508569_ISaranKanth.BSC.IT.2024..pdf', NULL, '1', '2025-01-08', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-08 04:20:19', 154, '2025-01-08 06:10:48', 0, NULL, 1),
(23550, 'Abirami.j', '4', '7200190783', '9840346873', 'j.abirami24@gamil.com', '2003-12-24', 21, '2', '2', 'Jayam.k', 'Machine operator', 17000.00, 0, 0.00, 14000.00, 'Ambattur Dunlop', 'Ambattur Dunlop', '2501080004', '50', '1', 'upload_files/candidate_tracker/3967379927_AdobeScanJan082025.pdf', NULL, '1', '2025-01-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-08 04:40:32', 1, '2025-01-08 05:40:11', 0, NULL, 1),
(23551, 'Sanjay S', '31', '9345600175', '', 'csesanjay17@gmail.com', '2003-01-17', 21, '3', '2', 'Sasikumar S', 'Monthly wages', 8600.00, 1, 0.00, 13000.00, '64,Anna nagar,new Street, Pudukottai-622002', 'Velachery, Chennai', '2501080005', '', '1', 'upload_files/candidate_tracker/36393475285_SanjaySBE2024JavaFullStack.pdf', NULL, '1', '2025-01-08', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-08 04:40:46', 104, '2025-01-08 10:27:19', 0, NULL, 1),
(23552, 'Magesh.s', '6', '6374226390', '6380896360', 'premasenthilk@gmail.com', '2003-07-31', 21, '2', '2', 'Senthilkumar', 'Sales TL', 18000.00, 1, 0.00, 15000.00, 'Ambattur', 'Ambattur, kallikuppam', '2501080006', '50', '1', 'upload_files/candidate_tracker/35886346857_mahii.pdf', NULL, '1', '2025-01-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he asking too much time to join', '5', '1', '', '1', '8', '', '2', '2025-01-10', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-08 04:41:07', 104, '2025-01-08 12:23:35', 0, NULL, 1),
(23553, 'MOHAMED JAFRAN M', '31', '9790540736', '8778987014', 'mdjafrannagore@gmail.com', '2001-09-20', 23, '3', '2', 'Mohamed yousof', 'Labour', 30000.00, 1, 0.00, 15000.00, 'Nagore, Nagapattinam', 'Alandur, Guindy', '2501080007', '', '1', 'upload_files/candidate_tracker/53407552782_Jafranresume1.pdf', NULL, '1', '2025-01-08', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-08 04:43:32', 154, '2025-01-08 06:10:23', 0, NULL, 1),
(23554, 'saravana kumaran s', '31', '8667244416', '', 'Saravanapes@gmail.com', '2004-08-07', 20, '3', '2', 'saker m', 'hotel master', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2501080008', '', '1', 'upload_files/candidate_tracker/30644896922_SaravanaKumaran.S.B.comCA.2024.JavaFullStack.pdf', NULL, '1', '2025-01-08', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-08 04:44:12', 154, '2025-01-08 06:09:32', 0, NULL, 1),
(23555, 'Mohamed kaif', '31', '9677978227', '', 'mohamedkaif353@gmail.com', '2002-10-25', 22, '3', '2', 'Shajahan', 'Labour', 15000.00, 1, 0.00, 20000.00, 'Nagapattinam', 'Chennai', '2501080009', '', '1', 'upload_files/candidate_tracker/87055442500_MohamedkaifSBsccs2024.pdf', NULL, '1', '2025-01-08', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-08 04:47:56', 154, '2025-01-08 06:09:06', 0, NULL, 1),
(23556, 'SWETHA N', '4', '9445347216', '9677260255', 'swethaswetha4319@gmail.com', '2002-11-17', 22, '2', '2', 'narasimhan', 'student graduated', 30000.00, 1, 0.00, 15.00, 'CHENNAI', 'CHENNAI', '2501080010', '50', '1', 'upload_files/candidate_tracker/4805788019_swethaN17326941070251.pdf', NULL, '1', '2025-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-08 04:52:59', 1, '2025-01-08 06:39:58', 0, NULL, 1),
(23557, 'Abirami.j', '6', '7200160783', '9840346873', 'j.abirami24@gmail.com', '2003-12-24', 0, '2', '2', 'Jayam.k', 'Machine operator', 17000.00, 0, 0.00, 15000.00, 'Ambattur Dunlop', 'Ambattur Dunlop', '2501080011', '50', '1', 'upload_files/candidate_tracker/11886541798_AdobeScanJan082025.pdf', NULL, '1', '2025-01-08', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-01-08 04:57:37', 104, '2025-01-08 12:24:23', 0, NULL, 1),
(23558, 'Franklinprabhu', '4', '8667289486', '', 'franklinfranklin85034@gmail.com', '2003-04-18', 21, '2', '2', 'Anthony paulraj', 'Building contract', 42000.00, 2, 0.00, 14000.00, 'Thanjavur', 'Thanjavur', '2501080012', '1', '1', 'upload_files/candidate_tracker/62660177362_franklinprabhua.pdf', NULL, '1', '2025-01-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'high attitude and have no disipline', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-08 05:06:03', 153, '2025-01-08 03:07:37', 0, NULL, 1),
(23559, 'Divya N', '6', '9092919400', '9941646503', 'Diyajai20297@gmail.com', '1997-08-20', 27, '2', '2', 'Parent', 'Nil', 45000.00, 3, 16000.00, 18000.00, 'Pammal', 'Pammal', '2501080013', '50', '2', 'upload_files/candidate_tracker/76087901772_Diyaresumenew.docx', NULL, '2', '2025-01-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She is intrested in Bike health Insurance job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-08 05:06:36', 104, '2025-01-08 12:22:28', 0, NULL, 1),
(23560, 'Vasantha kumar.k', '6', '8248972541', '7904606355', 'vasanthakumarbadefence@gmail.com', '2003-01-28', 21, '2', '2', 'Karuppaiya.k', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Veppur', 'Saidapet', '2501080014', '1', '1', 'upload_files/candidate_tracker/24163987657_VASANTHAKUMARK.pdf', NULL, '1', '2025-01-08', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-08 05:41:42', 154, '2025-01-09 09:41:17', 0, NULL, 1),
(23561, '', '0', '6360201803', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501080015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-08 05:57:05', 0, NULL, 0, NULL, 1),
(23562, 'Hareeshkumar S', '6', '6360101803', '9845009215', 'Shareesh180@gmail.com', '2000-07-10', 24, '2', '2', 'Shiva naik', 'Nil', 50000.00, 2, 0.00, 22000.00, 'Bengaluru kudlu get', 'Bengaluru', '2501080016', '57', '1', 'upload_files/candidate_tracker/33749968607_hareeshRR...PDF', NULL, '1', '2025-01-08', 0, '', '3', '59', '2025-01-20', 192000.00, '', '3', '2025-01-25', '2', 'Fresher for our role need to train from Scratch can give a try and check', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '2025-01-20', 1, '2025-01-08 06:01:06', 60, '2025-01-22 12:21:36', 0, NULL, 1),
(23563, 'Jenova', '4', '9597427448', '7358649461', 'francisjenova1997@gmail.com', '1997-12-17', 27, '2', '1', 'Charles Kingston raj', 'It', 50000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2501080017', '50', '1', 'upload_files/candidate_tracker/43352688607_CURRICULUMVITAEJenova12.pdf', NULL, '2', '2025-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-08 06:17:12', 1, '2025-01-08 06:21:04', 0, NULL, 1),
(23564, 'Mohammed Imamuthin', '4', '9094948552', '', 'imamuthin24102001@gmail.com', '2010-01-08', 0, '2', '2', 'Jabarulla khan', 'Worker', 15000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2501080018', '50', '1', 'upload_files/candidate_tracker/14034289312_J.MohammedImamuthindetails1.pdf', NULL, '3', '2025-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-08 06:43:37', 1, '2025-01-08 06:57:43', 0, NULL, 1),
(23565, 'raahulsivi s', '6', '8778606390', '', 'raahulsivisivakumar@gmail.com', '2003-05-14', 21, '2', '2', 'sivakumar s', 'farmer', 10000.00, 1, 0.00, 15000.00, 'thanjavur', 'chennai', '2501080019', '50', '1', 'upload_files/candidate_tracker/64357119698_raahulsivi.pdf', NULL, '1', '2025-01-21', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-08 06:45:36', 154, '2025-01-21 12:42:48', 0, NULL, 1),
(23566, 'Karthik Kumar', '6', '7337673738', '', 'bk0107297@gmail.com', '1998-04-05', 26, '2', '2', 'Gouramma', 'Agriculture', 30000.00, 1, 0.00, 20000.00, 'Hebbal', 'Hebbal', '2501080020', '57', '1', 'upload_files/candidate_tracker/32548764542_karthikkumarResume.pdf', NULL, '1', '2025-01-08', 0, '', '3', '59', '2025-01-20', 192000.00, '', '5', '1970-01-01', '2', 'Fresher need to check in 7 daya trsaniin', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '2025-01-20', 1, '2025-01-08 07:22:37', 60, '2025-01-17 07:20:12', 0, NULL, 1),
(23567, 'kash s', '4', '8754182914', '', 'sakash8754@gmail.com', '2003-09-05', 21, '2', '2', 'saravanan', 'wellder', 35000.00, 1, 0.00, 200000.00, 'tiruvallur', 'tiruvallur', '2501080021', '50', '1', 'upload_files/candidate_tracker/65161753311_Akashresume.pdf', NULL, '1', '2025-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-08 10:02:15', 1, '2025-01-08 10:06:38', 0, NULL, 1),
(23568, 'Selvam P', '4', '6380334747', '', 'softwarestudent12@gmail.com', '2004-06-12', 20, '2', '2', 'Palanimurugan', 'Taxi driver', 7000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Chennai,porur', '2501080022', '50', '1', 'upload_files/candidate_tracker/3490826075_selvamResumefrontend.pdf', NULL, '1', '2025-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-08 10:42:53', 1, '2025-01-08 10:49:22', 0, NULL, 1),
(23569, 'Kausalya', '4', '7339253008', '9962238895', 'kausalyaselvi2@gmail.com', '2004-05-24', 20, '2', '2', 'Ramesh', 'Auto Driver', 30000.00, 1, 0.00, 15000.00, 'Anna Nagar', 'Anna Nagar', '2501080023', '50', '1', 'upload_files/candidate_tracker/9018178607_17363352663181736335263999KausalyaRresume.pdf', NULL, '3', '2025-01-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-08 10:52:34', 1, '2025-01-08 11:27:02', 0, NULL, 1),
(23570, 'Benazeer.N', '4', '9344078761', '', 'nagoorsheik1607@gmail.com', '2001-07-16', 23, '2', '2', 'Parents', 'Driver', 20000.00, 1, 0.00, 20000.00, 'Ponneri', 'Redhills', '2501080024', '50', '1', 'upload_files/candidate_tracker/30178705355_Resume2.pdf', NULL, '1', '2025-01-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-08 11:46:24', 1, '2025-01-08 11:54:15', 0, NULL, 1),
(23571, 'UMA MAHESWARI', '6', '8870691202', '9176823538', 'umamahes9715@gmail.com', '1997-01-05', 28, '2', '1', 'Muthuvel', 'Mutual fund backoffice', 20000.00, 0, 0.00, 20000.00, 'Ambattur', 'Ambattur', '2501090001', '50', '1', 'upload_files/candidate_tracker/12646686120_PUmaMaheswariResume3.pdf', NULL, '1', '2025-01-09', 0, '', '5', '89', '1970-01-01', 0.00, '', '1', '1970-01-01', '1', 'silent person. and voice Stuck ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-09 04:45:13', 154, '2025-01-09 11:18:27', 0, NULL, 1),
(23572, 'joshua Praveen', '4', '9952071871', '', 'joshuapraveen1614@gmail.com', '2000-04-16', 24, '2', '2', 'thara', 'o', 30000.00, 1, 0.00, 15000.00, 'ambattur', 'chennai', '2501090002', '50', '1', 'upload_files/candidate_tracker/51293296741_JoshuaResume..pdf', NULL, '1', '2025-01-10', 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-09 05:20:21', 1, '2025-01-09 05:25:08', 0, NULL, 1),
(23573, 'Pavithra.V', '6', '7305794727', '8056252362', 'pavithrav0602@gmail.com', '2004-02-16', 20, '2', '2', 'Vinothkumar.g', 'Student', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2501090003', '50', '1', 'upload_files/candidate_tracker/29439964846_ResumePavithra.v.pdf', NULL, '1', '2025-01-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'lets try 7 days then we will confirm salary basic freshers salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-09 05:33:52', 154, '2025-01-09 11:51:37', 0, NULL, 1),
(23574, '', '0', '9361325645', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501090004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-09 05:42:04', 0, NULL, 0, NULL, 1),
(23575, 'Muralikrishnan', '4', '6383973595', '', 'eng.muralikm@gmail.com', '2001-03-01', 23, '2', '2', 'Murugan', 'Farmer', 15000.00, 1, 0.00, 200000.00, 'Panruti', 'Maraimalai nagar chennai', '2501090005', '1', '1', 'upload_files/candidate_tracker/56846497032_muralimkresume.pdf', NULL, '1', '2025-02-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-01-09 05:56:35', 154, '2025-02-20 12:59:09', 0, NULL, 1),
(23576, 'Jawahaar kj', '6', '9087040392', '', 'raguljawahaar@gmail.com', '2000-05-24', 24, '2', '2', 'Kanakaraj s', 'Retired staff (Eveready)', 15000.00, 1, 18000.00, 18000.00, 'Chennai', 'Chennai', '2501090006', '50', '2', 'upload_files/candidate_tracker/33446585369_Jawahaarresume20241111T210627.474.pdf', NULL, '1', '2025-01-10', 0, '', '3', '59', '2025-01-16', 192000.00, '', '3', '2025-02-05', '2', 'Communication OK Need to check and confirm in the training period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1066', '5151', '2025-01-16', 1, '2025-01-09 06:06:20', 60, '2025-01-16 12:55:15', 0, NULL, 1),
(23577, 'S SUNITHA', '6', '9380546136', '7795910095', 'sunilight2024@gmail.com', '1977-06-10', 47, '2', '2', 'Sreenivas s', 'Retired', 12000.00, 3, 0.00, 22000.00, '109, 2 cross, BDA LAYOUT, jp nagar 9 Phase', '109, 2 cross, BDA LAYOUT, jp nagar 9 phase,', '2501090007', '57', '1', 'upload_files/candidate_tracker/63391225368_AdobeScan09Jan2025.pdf', NULL, '1', '2025-01-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '1', '1970-01-01', '1', 'suggested 18k  ctc confirm the joining', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-01-09 06:11:11', 60, '2025-01-13 02:53:21', 0, NULL, 1),
(23578, 'A.Gugan', '4', '8122329061', '9043656896', 'gugan9820@gmail.com', '2003-06-20', 21, '2', '2', 'Ananthakumar', 'Plumper', 80.00, 2, 0.00, 15000.00, 'Guduvanchery', 'Guduvanchery', '2501090008', '50', '1', 'upload_files/candidate_tracker/63272817969_gugan2.pdf', NULL, '1', '2025-01-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-01-09 06:24:13', 154, '2025-01-10 01:07:08', 0, NULL, 1),
(23579, 'Lokesh', '6', '9994316826', '', 'lokeshmari39@gmail.com', '2002-06-08', 22, '3', '2', 'Mariyappan', 'Farmer', 300000.00, 1, 23000.00, 25000.00, 'Dharmapuri, Tamilnadu', 'Btm,bangalore', '2501090009', '', '2', 'upload_files/candidate_tracker/15854245147_ProfessionalCVResume.pdf', NULL, '1', '2025-01-09', 0, '', '3', '59', '2025-02-10', 216000.00, '', '3', '2025-02-27', '2', 'Communication Good Can be trained in our roles need to check and confirm in the training period', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '2025-02-10', 1, '2025-01-09 06:54:46', 60, '2025-02-08 07:21:49', 0, NULL, 1),
(23580, 'MOHANA PRIYA R', '6', '9994869885', '', 'mohana12121priya@gmail.com', '2000-10-23', 24, '2', '1', 'Kathiresan', 'Welder', 13000.00, 1, 13000.00, 16000.00, 'Thoothukudi', 'Mangadu', '2501090010', '1', '2', 'upload_files/candidate_tracker/61635287552_default.pdf', NULL, '1', '2025-01-09', 0, '', '5', '137', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'candidate not interest on telecalling work and  mainly lookig for non voice process an dsalart exp for very high so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'CA130', '5151', '1970-01-01', 1, '2025-01-09 07:06:40', 154, '2025-01-09 01:33:13', 0, NULL, 1),
(23581, 'S.Anitha', '4', '9884754535', '8870855306', 'selvamanitha03@gmail.com', '1996-06-25', 28, '2', '2', 'I.Selvam S. Gnanamaheshwari', 'Welder', 15000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2501090011', '50', '2', 'upload_files/candidate_tracker/1671109923_MyResume.pdf', NULL, '1', '2025-01-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-09 07:14:40', 154, '2025-01-09 01:17:51', 0, NULL, 1),
(23582, 'MANOJ G', '6', '8431511834', '', '29mjmanoj@gmail.com', '2001-05-29', 23, '2', '2', 'Ganesh. K', 'Fresher', 28000.00, 2, 0.00, 20000.00, 'Govindrajnagar', 'Govindrajnagar', '2501090012', '57', '1', 'upload_files/candidate_tracker/53685647258_manoj.gresume.pdf', NULL, '1', '2025-01-09', 0, '', '5', '30', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'looking for non voice process', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-01-09 08:32:34', 154, '2025-01-10 03:20:05', 0, NULL, 1),
(23583, 'Ravi kumar v', '6', '8095597224', '', 'ravireigns47@gmail.com', '2001-10-17', 23, '2', '2', 'Radhamma', 'Fresher', 20000.00, 1, 0.00, 20000.00, 'BENGALURU', 'BENGALURU', '2501090013', '57', '1', 'upload_files/candidate_tracker/90666766129_Resumeravikumar.pdf', NULL, '1', '2025-01-09', 0, '', '5', '30', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'not looking for voice process', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-01-09 08:32:44', 154, '2025-01-10 03:20:58', 0, NULL, 1),
(23584, 'Kishore i', '5', '7338717143', '7299107023', 'ikishore160@gmail.com', '2003-06-13', 21, '2', '2', 'Iyappan m', 'Kuli', 40000.00, 0, 220000.00, 300000.00, 'Chennai', 'Chennai', '2501090014', '1', '2', 'upload_files/candidate_tracker/5431544713_RESUMEKISHORE.pdf', NULL, '1', '2025-01-10', 0, '', '3', '59', '2025-02-10', 198000.00, '', '3', '2025-07-30', '1', 'Communication Ok Can be trained in our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'CA130', '5151', '2025-02-10', 1, '2025-01-09 11:19:07', 60, '2025-02-08 06:59:58', 0, NULL, 1),
(23585, 'P.Anthalapriya', '4', '8523916063', '9965273293', 'Priyapraba8998@gmail.com', '1998-05-09', 26, '2', '1', 'P.prabakaran', 'Fresher', 15000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2501090015', '1', '1', 'upload_files/candidate_tracker/41940965153_jobresume.pdf', NULL, '1', '2025-01-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '1', '1970-01-01', '1', 'Not Fit for telecalling, unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-09 11:42:06', 154, '2025-01-10 11:07:15', 0, NULL, 1),
(23586, 'Vigneshwaran S', '4', '7904685470', '', 'vpsvicky001@gmail.com', '2004-04-23', 20, '2', '2', 'v.p. senthi azhagan', 'Customer', 20000.00, 1, 0.00, 18000.00, 'vadapalani chennai', 'vadapalani chennai', '2501090016', '50', '1', 'upload_files/candidate_tracker/64190250708_Vigneshwaran.SCV.pdf', NULL, '1', '2025-01-11', 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-09 11:49:49', 1, '2025-01-09 11:56:27', 0, NULL, 1),
(23587, 'RAKSHANA.V', '4', '8124638557', '9566008347', 'rakshanav54@gmail.com', '2003-07-08', 21, '2', '2', 's.veeraragavan', 'Fittwr', 250000.00, 0, 0.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2501090017', '50', '1', 'upload_files/candidate_tracker/10082822158_DocumentfromRakshanaVeeraragavan123608.docx', NULL, '1', '2025-01-10', 0, '', '10', '0', NULL, 0.00, '', '1', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-09 01:50:23', 1, '2025-01-09 01:57:17', 0, NULL, 1),
(23588, '', '0', '7010323361', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501090018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-09 04:12:40', 0, NULL, 0, NULL, 1),
(23589, 'Ranjitha sasikumar', '4', '7904849403', '6384834711', 'ranjitharavi6050@gmail.com', '1995-07-12', 29, '2', '1', 'Sasikumar K', 'Supervisor', 15000.00, 1, 0.00, 12000.00, '93,ambalakar street, kurungulam east -613303.', '93,ambalakar street, kurungulam east -613303.', '2501090019', '1', '2', 'upload_files/candidate_tracker/73845050528_ranjithanewresume.pdf', NULL, '1', '2025-01-10', 0, '', '3', '59', '2025-01-20', 156000.00, '', NULL, '2025-01-21', '2', 'Communication Ok Age Can give a try and check in training', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-01-20', 1, '2025-01-09 04:30:27', 60, '2025-01-24 10:43:57', 0, NULL, 1),
(23590, 'Arivarasi', '4', '7339330171', '', 'Arivarasi2000@gmail.com', '2000-06-17', 24, '2', '1', 'P sivakumar', 'Foreign', 20000.00, 3, 0.00, 15000.00, 'Orathanadu', 'Orathanadu', '2501100001', '1', '1', 'upload_files/candidate_tracker/24028145581_1000136167.pdf', NULL, '1', '2025-01-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'Have no knowledge about job ...unfit for sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-10 04:30:53', 154, '2025-01-10 11:06:55', 0, NULL, 1),
(23591, 'ATHIFA. M', '6', '9363340413', '7550015557', 'athifabhaseer@gmail.com', '2004-06-11', 20, '2', '2', 'MOHAMMED BASHEER. K', 'AUTO DRIVER', 12000.00, 1, 0.00, 10000.00, 'No 109,Q BLOCK,MMDA COLONY, ARUMBAKKAM CHENNAI-106', 'No 109,Q BLOCK,MMDA COLONY, ARUMBAKKAM CHENNAI-106', '2501100002', '1', '1', 'upload_files/candidate_tracker/51732595807_ATHIFARESUME.pdf', NULL, '1', '2025-01-10', 0, '', '5', '105', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'candidate  Performance is ok ,but voice communication is very low Then Her Sustainable is doubt.Also she told,she is more sensitive Type', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-01-10 04:51:38', 153, '2025-01-10 10:45:55', 0, NULL, 1),
(23592, 'Sandeep', '4', '9345108479', '', 'urssandy02@gmail.com', '2002-07-29', 22, '2', '2', 'Rajendran', 'Accounts manager', 25000.00, 1, 13500.00, 15000.00, '1424,mela neethukara street, Karanthai, Thanjavur', '1424,Mela Neethukara Street, Karanthai, Thanjavur', '2501100003', '1', '2', 'upload_files/candidate_tracker/38832765697_Sandys202501101050340000.pdf', NULL, '1', '2025-01-10', 0, '', '3', '59', '2025-01-23', 159996.00, '', '3', '2025-04-30', '1', 'Communication Ok Can be trained in our roles and check during the training period', '1', '1', '4', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-01-23', 1, '2025-01-10 05:14:06', 60, '2025-01-24 10:28:50', 0, NULL, 1),
(23593, 'Shreyas.D', '6', '8050802096', '8050801344', 'je805080@gmail.com', '2004-08-25', 20, '2', '2', 'Dharmaraju', 'Tailor', 20000.00, 1, 0.00, 18000.00, 'Wilson garden', 'Wilson garden', '2501100004', '57', '1', 'upload_files/candidate_tracker/81582590134_PDFGallery20250110110328compressed.pdf', NULL, '1', '2025-01-10', 0, '', '5', '147', '1970-01-01', 0.00, '', '1', '1970-01-01', '1', 'not intrested for voice', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-01-10 05:25:29', 154, '2025-01-11 12:00:06', 0, NULL, 1),
(23594, 'Mohamed yasith', '4', '7598127705', '', 'yasith2651@gmail.com', '2002-08-16', 22, '2', '2', 'A.M. Mohamed Sulthan naseer', 'Electrition', 40000.00, 3, 18000.00, 20000.00, 'Mayiladuthurai', 'Chennai', '2501100005', '50', '2', 'upload_files/candidate_tracker/67357195128_MohamedYasith.pdf', NULL, '1', '2025-01-10', 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-10 05:29:30', 1, '2025-01-10 05:32:20', 0, NULL, 1),
(23595, '', '0', '7070554640', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501100006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-10 05:59:31', 0, NULL, 0, NULL, 1),
(23596, 'philip thomas', '6', '7907108674', '9400011529', 'philipkuttythomas@gmail.com', '1994-01-19', 30, '2', '2', 'shaly thomas', 'house wife', 20000.00, 1, 0.00, 16000.00, 'kerala', 'madiwala', '2501100007', '57', '1', 'upload_files/candidate_tracker/67511593796_philipJ.pdf', NULL, '1', '2025-01-10', 0, '', '3', '59', '2025-01-15', 192000.00, '', '3', '2025-03-29', '2', 'Communication Good Long Career Gap Higher age long run based on commitment doubts can give a try and check in training days', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '2025-01-15', 1, '2025-01-10 06:12:36', 60, '2025-01-16 01:02:05', 0, NULL, 1),
(23597, 'Marklee', '11', '7358332726', '9677222464', 'marklee1848@gmail.com', '2002-04-26', 22, '3', '2', 'Aron m c', 'Human resource manager', 80000.00, 3, 0.00, 30000.00, 'Narayana swamy 2nd Street West Saidapet', 'Chennai', '2501100008', '', '1', 'upload_files/candidate_tracker/95238373806_A.marknleeresume.docx', NULL, '1', '2025-01-10', 0, '', '5', '109', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'Looking for marketing', '6', '1', '', '1', '8', '', '1', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-10 06:37:45', 153, '2025-01-10 12:52:14', 0, NULL, 1),
(23598, 'lavanya.k', '11', '7871427981', '8144133666', 'lavanyalavanyak18@gmail.com', '2000-08-21', 24, '3', '2', 'kumar', 'human resources managers', 80000.00, 2, 0.00, 30000.00, 'chrompet', 'chrompet', '2501100009', '', '1', 'upload_files/candidate_tracker/82466980570_LAVANYAKRESUME.pdf2.pdf', NULL, '1', '2025-01-10', 0, '', '5', '109', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'Rejected', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-10 06:44:28', 153, '2025-01-10 12:52:01', 0, NULL, 1),
(23599, 'Rathnakumar s', '6', '6382847232', '9786370895', 'rathnav681@gmail.com', '1999-02-06', 25, '2', '2', 'Sozharajan p', 'Conductor', 25000.00, 2, 0.00, 15000.00, 'Pungavadi North Street Attur Tk Salem DT', 'Chennai palavathagal', '2501100010', '45', '1', 'upload_files/candidate_tracker/52038354607_DocScannerSep132024939PM5.pdf', NULL, '1', '2025-01-10', 0, '', '1', '149', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-10 07:29:09', 153, '2025-01-10 03:03:01', 0, NULL, 1),
(23600, 'Kiran K', '6', '8884565510', '', 'kirankey256@gmail.com', '2001-10-10', 23, '1', '2', 'Kanniyappan', 'No occupation', 30000.00, 3, 23000.00, 23000.00, 'Anandapuram Mysore road', 'Anandapuram Mysore Road', '2501100011', '', '2', 'upload_files/candidate_tracker/40849672659_KiranKResumeVFS.pdf', NULL, '1', '2025-01-10', 30, 'C99085', '3', '59', '2025-02-17', 252000.00, '', '3', '2025-02-21', '1', 'Communication Ok Documents verified have exp in semivoice process can be trained in our roles check in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55555', '5151', '2025-02-17', 1, '2025-01-10 09:55:31', 60, '2025-02-15 06:37:47', 0, NULL, 1),
(23601, 'M.subiksha', '11', '7200220781', '', 'subikshamani07@gmail.com', '2005-05-10', 19, '3', '2', 'A.manikkannan', 'Cycle mechanic', 20000.00, 1, 0.00, 8000.00, 'Chennai', 'Chennai', '2501100012', '', '1', 'upload_files/candidate_tracker/91475577912_SUBIKSHAMRESUME.pdf', NULL, '1', '2025-01-10', 0, '', '5', '109', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'Rejected', '6', '2', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-10 10:53:22', 154, '2025-01-10 06:41:25', 0, NULL, 1),
(23602, 'Kaviya', '6', '6381474119', '', 'kaviyam2711@gmail.com', '2003-11-27', 21, '2', '2', 'Manikandan.M', 'Makeup', 20000.00, 0, 0.00, 15000.00, 'Kovilambakam', 'Kovilambakam', '2501110001', '1', '1', 'upload_files/candidate_tracker/1239010119_AdobeScanJan112025.pdf', NULL, '1', '2025-01-11', 0, '', '1', '149', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-11 02:37:56', 154, '2025-01-11 10:11:48', 0, NULL, 1),
(23603, 'Maheshwari', '6', '9940282112', '8015916309', 'maheshwarimahi2112@gmail.com', '1999-02-21', 25, '2', '2', 'Thangamariyappan', 'Driver', 500000.00, 0, 0.00, 20000.00, 'Ashok pillar', 'Ashok pillar', '2501110002', '50', '1', 'upload_files/candidate_tracker/44499428535_Maheshwari.Tresume.pdf', NULL, '1', '2025-01-11', 0, '', '5', '105', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'Candidate Not Communicating Much More also her performance is very slow and low, Sustainability is doubt ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-11 04:26:32', 154, '2025-01-11 10:24:10', 0, NULL, 1),
(23604, 'Jenifer.R', '6', '8637425901', '8610186900', 'rrabaka6@gmail.com', '2000-03-27', 24, '2', '2', 'Kavitha.R', 'House wife', 100000.00, 1, 0.00, 15000.00, 'No 22 otteri', 'No 20 purasawalkam', '2501110003', '50', '1', 'upload_files/candidate_tracker/98054184386_JENIFFERRESUM.docx', NULL, '3', '2025-01-11', 0, '', '7', '59', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'good skill. consider Fresher', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-11 04:47:56', 154, '2025-01-11 10:53:04', 0, NULL, 1),
(23605, 'Shivakumar A', '6', '8867310122', '8867507805', 'shivakumararavind2002@gmail.com', '2002-02-16', 22, '3', '2', 'Aravinda AR', 'Farmer', 50000.00, 1, 0.00, 4.00, 'Adaguru , piriyapattana taluku ,mysore 571102', 'Benglore ,appu srinagar', '2501110004', '', '1', 'upload_files/candidate_tracker/93306618381_shivakumarAresume1removed.pdf', NULL, '1', '2025-01-11', 0, '', '5', '147', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'not intrested in voice process', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-01-11 04:57:30', 154, '2025-01-11 02:39:46', 0, NULL, 1),
(23606, 'Jayaharshini', '4', '7904003875', '9442060533', 'Jayaaharshini@gmail.com', '2003-10-28', 21, '2', '2', 'Prabavathi', '-', 3000.00, 1, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2501110005', '1', '1', 'upload_files/candidate_tracker/29966563840_HARSHINIRESUME.pdf', NULL, '1', '2025-01-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'not fit for telecalling choosing data entry and not intrested in job,,,,expected accounts related jon only so only atten interivew for financial company..current he want pay a fees for mba so only looking for job', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-11 05:14:43', 153, '2025-01-11 10:54:05', 0, NULL, 1),
(23607, 'T. Antony mercy', '4', '9087977186', '9047260680', 'mercythomas2609@gmail.com', '2003-09-26', 21, '2', '2', 'T. Thomas Anthuvan', 'Welder', 20000.00, 2, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2501160010', '1', '1', 'upload_files/candidate_tracker/17389322741_DocumentfromKutty.pdf', NULL, '1', '2025-01-11', 0, '', '3', '59', '2025-01-15', 150000.00, '', '3', '2025-02-27', '2', 'Communication Ok Can give a try and check in 7 days training 30 min travel distance', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '2025-01-15', 1, '2025-01-11 05:51:10', 60, '2025-01-17 03:41:44', 0, NULL, 1),
(23608, 'Bharath Kumar P', '4', '7395848429', '', 'bharathkumar202002@gmail.com', '2002-08-20', 22, '2', '2', 'Perumal G', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Tirupathur', 'Chennai', '2501110006', '50', '1', 'upload_files/candidate_tracker/35268172695_BharathKumarNonVoiceprocess1.pdf', NULL, '1', '2025-01-13', 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-11 05:57:00', 1, '2025-01-11 06:04:09', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23609, 'Arunaldu P', '4', '6369455207', '', 'arunaldup2001@gmail.com', '2001-04-05', 23, '2', '2', 'Pazhanivel', 'Late', 300000.00, 1, 0.00, 3.50, 'CUDDALORE', 'CUDDALORE', '2501110007', '50', '2', 'upload_files/candidate_tracker/1890957919_ArunalduPResume.pdf', NULL, '3', '2025-01-16', 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-11 06:46:06', 1, '2025-01-11 06:50:33', 0, NULL, 1),
(23610, '', '0', '9940696316', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-11 07:22:53', 0, NULL, 0, NULL, 1),
(23611, 'Rakesh R', '6', '8296488040', '', 'rakesh61901@gmail.com', '2010-01-11', 0, '2', '2', 'Raja', 'Tailor', 25000.00, 0, 20000.00, 22000.00, 'Jayanagar', 'Jayanagar', '2501160012', '57', '2', 'upload_files/candidate_tracker/17496115792_RakeshR1.pdf', NULL, '1', '2025-01-11', 0, '', '3', '59', '2025-01-22', 222000.00, '', '3', '2025-02-28', '1', 'Communication Ok Can give a try and check in training Have exp but not a relevant one Need to check', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '2025-01-22', 1, '2025-01-11 07:29:05', 60, '2025-01-22 12:20:33', 0, NULL, 1),
(23612, 'akash j', '6', '9710408564', '', 'arun@cafsindia.com', '2003-08-15', 21, '2', '2', 'father -g jothi basu mother-j sangeetha', 'father business mother working in pvt company', 175000.00, 1, 0.00, 15000.00, 'chennai', 'No 26 Shri jothi nagar nemilicherry thirunindravur', '2501160011', '50', '1', 'upload_files/candidate_tracker/9182061048_AkashJ.pdf', NULL, '1', '2025-01-13', 0, '', '3', '59', '2025-01-16', 192000.00, '', '3', '2025-01-16', '1', 'Communication Ok Can give a try and check in 7 days training', '5', '1', '4', '1', '3', '1', '2', '1970-01-01', '1', '3', 'akashronaldoa@gmail.com', '', '', '', 'P1287', '5151', '2025-01-16', 1, '2025-01-11 08:14:06', 60, '2025-01-24 10:47:15', 0, NULL, 1),
(23613, 'Sofiya Fathima', '6', '8838901013', '8608846381', 'affansofia33@gmail.com', '2005-06-17', 19, '2', '2', 'Shabana begum', 'Office worker', 15.00, 1, 0.00, 19.00, 'Amirunissa street Mount road Chennai', 'Amirunissa street Mount road Chennai', '2501110009', '50', '2', 'upload_files/candidate_tracker/9729338155_WhatsAppImage20250111at3.09.31PM.pdf', NULL, '1', '2025-01-11', 0, '', '5', '89', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', 'not Interested voice process', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-11 09:12:32', 154, '2025-01-11 04:38:40', 0, NULL, 1),
(23614, 'Miraclin', '6', '8925074743', '9841133138', 'Miraclin656@gmail.com', '2004-09-27', 20, '2', '2', 'Susairaj', 'Business man', 25000.00, 2, 0.00, 15.00, '17/2 periya malappan street', '17/2 periya malappan street', '2501110010', '50', '2', 'upload_files/candidate_tracker/26854823460_miraclinresume1.pdf', NULL, '1', '2025-01-11', 0, '', '6', '', '1970-01-01', 0.00, '', '1', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', 'went without attending', '', '', '', '', '', '1970-01-01', 1, '2025-01-11 09:50:54', 154, '2025-01-11 04:40:59', 0, NULL, 1),
(23615, '', '0', '7305310235', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501110011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-11 12:50:04', 0, NULL, 0, NULL, 1),
(23616, '', '0', '6380885135', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501110012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '1', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-11 02:56:50', 0, NULL, 0, NULL, 1),
(23617, 'Likhith Gowda', '6', '9739498824', '9839498824', 'likhhithgowda@gmail.com', '2002-08-01', 22, '2', '2', 'suresh', 'chef', 600000.00, 1, 0.00, 20000.00, 'bangalore', 'bangalore', '2501130001', '1', '1', 'upload_files/candidate_tracker/16130624386_RESUMELIKHITHGOWDA.docx', NULL, '2', '2025-01-13', 0, '', '3', '59', '2025-01-20', 198000.00, '', '3', '2025-01-23', '2', 'Fresher Communicaiton Ok Can give a try and check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55671', '55555', '2025-01-20', 1, '2025-01-13 04:45:53', 60, '2025-01-17 07:23:15', 0, NULL, 1),
(23618, 'Fouziya', '6', '9710523219', '6379441588', 'fouziyafouzi.0412@gmail.com', '2003-12-04', 21, '2', '2', 'Parent', 'Sbi credit card sales', 20000.00, 1, 20000.00, 20000.00, 'Chennai', 'Chennai', '2501130002', '1', '2', 'upload_files/candidate_tracker/84972960343_KFOUZIYA2025cv.pdf', NULL, '1', '2025-01-13', 30, '', '3', '59', '2025-01-24', 228000.00, '', '3', '2025-01-29', '2', 'Communication Ok Can give a try and check in 7 days training', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', '55645', '5151', '2025-01-24', 1, '2025-01-13 05:14:07', 60, '2025-01-24 10:23:46', 0, NULL, 1),
(23619, 'sathishkumar', '6', '8122070843', '9092484881', 'sathishkittu27@gmail.com', '1999-08-27', 25, '2', '2', 'parimala', 'housewife', 20000.00, 1, 18000.00, 20000.00, 'manali', 'manalu', '2501130003', '1', '2', 'upload_files/candidate_tracker/79364302246_IMG202412282209062.pdf', NULL, '1', '2025-01-13', 0, '', '3', '59', '2025-01-17', 216000.00, '', '3', '2025-12-16', '2', 'Communication Ok Fresher for our roles have 4 yrs exp in store sales can give a try and train need to analyse and  confirm in the training period', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CA130', '5151', '2025-01-17', 1, '2025-01-13 05:16:55', 60, '2025-01-17 10:04:39', 0, NULL, 1),
(23620, 'V. Ponni', '6', '9344729554', '9884171434', 'Ponniponni720@gamil.com', '2002-10-19', 22, '2', '2', 'P. Velmurugan', 'Coolie', 3000.00, 2, 17000.00, 20000.00, 'Katchaleeswarar Garden Broadway Chennai', 'Katchaleeswarar Garden Broadway Chennai', '2501130004', '50', '2', 'upload_files/candidate_tracker/86871622923_CV2025011301090274.pdf', NULL, '1', '2025-01-13', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very silent person and no basic skil', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-13 05:21:29', 153, '2025-01-13 05:35:55', 0, NULL, 1),
(23621, 'Lakshmi K', '6', '6379740019', '', 'lakshmilaxmi0826@gmail.com', '2002-03-26', 22, '2', '2', 'Krishna mani S', 'Business', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2501130005', '50', '1', 'upload_files/candidate_tracker/10278013063_EmailingResume28112023115728AM.pdf', NULL, '1', '2025-01-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication and performance is ok. but 50/50 will check with her in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-13 06:55:57', 153, '2025-01-13 12:35:33', 0, NULL, 1),
(23622, 'K.janani', '6', '6385230239', '9841615512', 'jananijanani545@gmail.com', '2000-06-19', 24, '2', '2', 'No', 'Ma', 60.00, 1, 0.00, 17.00, '10/20 palani Amman kovil 3rd st chi,5', 'Triplicane', '2501130006', '57', '1', 'upload_files/candidate_tracker/78371811596_JANANI128491.pdf', NULL, '1', '2025-01-13', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-01-13 07:10:37', 153, '2025-01-15 09:25:57', 0, NULL, 1),
(23623, 'jaya priya m', '4', '7358303972', '9790783363', 'teenasherlyn@gmail.com', '2001-09-12', 24, '2', '2', 'moorthi', 'walder', 21000.00, 1, 15000.00, 17000.00, 'chennai', 'chennai', '2501130007', '1', '2', 'upload_files/candidate_tracker/82904003460_jpcv.pdf', NULL, '1', '2026-02-05', 0, '', '3', '59', '2026-02-09', 192000.00, '', '3', '2026-02-26', '2', 'Communication ok fresher for our renewal roles need to check in training and see let us try', '1', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '7', '', '', 'H1030', '', '55605', '55566', '2026-02-09', 1, '2025-01-13 08:28:45', 159, '2026-02-07 05:40:28', 0, NULL, 1),
(23624, '', '0', '6360893115', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501130008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-13 08:35:02', 0, NULL, 0, NULL, 1),
(23625, 'Priyanka B', '6', '8431355116', '', 'priyanakapriyak231@gmail.com', '2003-03-03', 21, '2', '2', 'T Babu', 'Tailor', 15000.00, 1, 0.00, 18000.00, 'Rajajinagar', 'Rajajinagar', '2501130009', '57', '1', 'upload_files/candidate_tracker/5556453924_priyaresume.pdf', NULL, '1', '2025-01-13', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is not good no  Confidence', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-01-13 08:40:55', 153, '2025-01-15 09:35:09', 0, NULL, 1),
(23626, 'Padmapriya G', '6', '9620211247', '', 'padmapriya232003@gmail.com', '2003-12-23', 21, '2', '2', 'Ganesh', 'Carpenter', 20000.00, 1, 0.00, 18000.00, 'Magadi road', 'Magadi road', '2501130010', '57', '1', 'upload_files/candidate_tracker/36913770125_c203a7440a4747f19d411731fa0d9428.pdf', NULL, '1', '2025-01-13', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-01-13 08:41:41', 153, '2025-01-15 09:34:07', 0, NULL, 1),
(23627, 'SOUNDARYA', '6', '7339274300', '', 'raguramansoundh@gmail.com', '1999-09-28', 25, '2', '2', 'Raguraman', 'Painter', 12000.00, 2, 17000.00, 20000.00, 'Villupuram', 'Shozinganalur', '2501150001', '1', '2', 'upload_files/candidate_tracker/35407627575_SoundaryaRResumeV3.1.pdf', NULL, '1', '2025-01-16', 15, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is not ok, Observation skills low, Reject the profile \nthanks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2025-01-15 11:11:59', 154, '2025-01-16 02:56:57', 0, NULL, 1),
(23628, 'Gayathri', '4', '9176387803', '', 'gayathri17835@gmail.com', '1998-06-17', 26, '2', '1', 'Manikandan', 'Business', 25000.00, 2, 25000.00, 25000.00, 'Ashok nagar', 'Jafferkhanpet', '2501160001', '50', '2', 'upload_files/candidate_tracker/42002384676_gayathrisresumeoct.pdf', NULL, '1', '2025-01-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'having exp in different field and not intrested in sales', '', '', '', '', '', '1970-01-01', 1, '2025-01-16 04:29:05', 154, '2025-01-16 10:46:34', 0, NULL, 1),
(23629, 'Hemalatha K', '6', '9080758685', '9566150144', 'jio963941@gmail.com', '2004-06-20', 20, '2', '2', 'Visalakshi K', 'Home maker', 8000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2501160002', '45', '1', 'upload_files/candidate_tracker/45594511085_HEMALATHAKRESUMEupdated.docx', NULL, '1', '2025-01-16', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for the job , no basic skill and 3 company chang last 6 month', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-16 05:20:02', 154, '2025-01-16 11:32:27', 0, NULL, 1),
(23630, 'Kowsalya.M', '6', '7305439944', '', 'kowsi4885@gmail.com', '2003-06-29', 21, '2', '2', 'Mariyappan.S', 'Load man', 98000.00, 2, 14000.00, 15000.00, '38/75 pidariyar koil Street, Broadway', 'chennai', '2501160003', '1', '2', 'upload_files/candidate_tracker/84431445508_CV2024092216531717.pdf', NULL, '1', '2025-01-16', 15, '', '3', '59', '2025-01-17', 174000.00, '', '3', '2025-01-21', '2', 'Communication Ok have few months exp can be trained give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '2025-01-17', 1, '2025-01-16 05:26:47', 60, '2025-01-16 07:49:13', 0, NULL, 1),
(23631, 'Sharmila.L', '6', '9840795594', '9283218802', 'sharmilalakshmanan27@gmail.com', '2003-09-27', 21, '2', '2', 'Lakshmanan.M', 'Clerk', 10000.00, 1, 0.00, 15000.00, '50A/119, Kamarajar salai, Virugambakkam Chennai', '50A/119, Kamarajar salai, Virugambakkam Chennai', '2501160004', '1', '2', 'upload_files/candidate_tracker/14700888983_Resume.pdf', NULL, '1', '2025-01-16', 0, '', '3', '59', '2025-01-17', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for our role 3 months exp but no documents need to check in training', '5', '1', '2', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '2025-01-17', 1, '2025-01-16 05:27:59', 60, '2025-01-16 07:50:20', 0, NULL, 1),
(23632, 'SHYAM JEROLD G', '4', '9025826449', '9489698169', 'Shyamjerold74@gmail.com', '2001-10-04', 23, '2', '2', 'GUNASEKARAN P', 'Reteried TNPL Electrical Manager', 24000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2501160005', '1', '1', 'upload_files/candidate_tracker/26733566532_Resume18112023094744am1737006330996ShyamJerold.pdf', NULL, '1', '2025-01-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telecalling, intrested in govt job', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-16 05:33:25', 154, '2025-01-16 11:32:36', 0, NULL, 1),
(23633, 'Abdul Rahman', '6', '9042230259', '', 'Rahman90422@gmail.com', '2002-04-03', 22, '2', '1', 'JASMINE', 'Fresher', 240000.00, 3, 0.00, 220000.00, 'Chennai', 'Broadway,chennai', '2501160006', '50', '1', 'upload_files/candidate_tracker/97353219196_ABDNEW.pdf', NULL, '1', '2025-01-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'not in formals', '', '', '', '', '', '1970-01-01', 1, '2025-01-16 06:01:44', 154, '2025-01-16 11:50:59', 0, NULL, 1),
(23634, 'Gowthami bv', '6', '7349178338', '9052654411', 'Ggowthami436@gmail.com', '2001-05-04', 23, '2', '1', 'Sathish', 'Logistics', 20000.00, 1, 18000.00, 20000.00, 'Kolar', 'BTM 1st stage', '2501160007', '57', '2', 'upload_files/candidate_tracker/50709992440_Kaagaz2025010817455475227.pdf', NULL, '1', '2025-01-16', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'due to communication skill', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-01-16 06:19:40', 104, '2025-01-18 11:07:47', 0, NULL, 1),
(23635, 'Sindhu S', '6', '9150992418', '8825853400', 'chinnisindhu2002@gmail.com', '2002-08-24', 22, '2', '2', 'Srinivasan', 'Daily labour', 30000.00, 2, 15000.00, 20000.00, 'Tharamani', 'Tharamani', '2501160008', '50', '2', 'upload_files/candidate_tracker/39274161950_sindhu.633.pdf', NULL, '1', '2025-01-16', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good skill. already Experience at non voice. i suggest 17.5 k ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-16 07:38:54', 154, '2025-01-16 02:57:31', 0, NULL, 1),
(23636, 'Saranya S', '6', '6380325087', '9940670756', 'srinivasansaranya19@gmail.com', '2002-08-19', 22, '2', '2', 'Srinivasan S', 'Watch man', 30000.00, 1, 15000.00, 20000.00, 'Adyar', 'Adyar', '2501160009', '50', '2', 'upload_files/candidate_tracker/82689106284_SaranyaSrinivasanResume1.pdf', NULL, '1', '2025-01-16', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not  Fit For sales profiles, bcz of she was looking backend process like data entry, she resigned previous job heavy work target based, she unfit ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-01-16 07:43:19', 154, '2025-01-16 02:57:11', 0, NULL, 1),
(23637, 'Inbarasan.k', '4', '9384634941', '9514792606', 'Frikfighter413@gmail.com', '2001-11-30', 23, '2', '1', 'Karmegam.k', 'Bussiness', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2501160013', '50', '1', 'upload_files/candidate_tracker/51610021086_INBARASAN.KRESUME.pdf', NULL, '1', '2025-01-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-16 08:21:00', 1, '2025-01-16 08:30:48', 0, NULL, 1),
(23638, 'Parameshwari', '6', '9790540448', '9043061006', 'parameshwari0448@gmail.com', '2003-09-05', 21, '2', '2', 'Ramesh Kumar', 'Na', 200000.00, 1, 204000.00, 250000.00, 'Vridhachalam', 'Chennai', '2501160014', '45', '2', 'upload_files/candidate_tracker/70610884296_NAUKRIPARAMESHWARIcompressed1.pdf', NULL, '1', '2025-01-16', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-01-16 10:25:41', 153, '2025-01-16 05:37:36', 0, NULL, 1),
(23639, 'GURUPRASATH B', '6', '9043061006', '9790540448', 'guruprasath0915@gmail.com', '2000-09-15', 24, '2', '2', 'Anitha', 'Private employee', 20000.00, 1, 180000.00, 250000.00, 'Virudhachalam', 'Chennai', '2501160015', '45', '2', 'upload_files/candidate_tracker/79595091830_NAUKRIGURUPRASATH.pdf', NULL, '1', '2025-01-16', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill. and long distance ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-16 10:26:41', 153, '2025-01-16 05:38:12', 0, NULL, 1),
(23640, 'Gangadharan B', '6', '9362999808', '', 'gangadharanganges99@gmail.com', '1999-01-02', 26, '2', '2', 'Balamukunthan', 'None', 12000.00, 2, 15000.00, 17000.00, 'Ayanavaram', 'Ayanavaram', '2501160016', '50', '2', 'upload_files/candidate_tracker/61006809554_1ResumeGangadharan1.....new.pdf', NULL, '1', '2025-01-17', 0, '', '3', '59', '2025-01-20', 208200.00, '', '3', '2025-01-21', '2', 'Communication ok have exp in loan collection and sales can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2025-01-20', 1, '2025-01-16 11:08:14', 60, '2025-01-17 06:36:23', 0, NULL, 1),
(23641, 'Riyas Mohamed', '6', '6369878273', '', 'riyasmohamed507@gmail.com', '2001-02-16', 23, '2', '2', 'haji udhuman', 'driver', 18000.00, 0, 0.00, 16000.00, 'triplicane', 'triplicane', '2501160017', '50', '1', 'upload_files/candidate_tracker/88472625404_Newresume.pdf', NULL, '1', '2025-01-17', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and performance is ok .but he is interested in non voice ,', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-16 11:12:31', 154, '2025-01-17 11:30:47', 0, NULL, 1),
(23642, 'Santhoshkumar.V', '6', '9789417236', '', 'santhoshkumarv6103@gmail.com', '2003-01-06', 22, '2', '2', 'Velmurugan.P', 'Former', 20000.00, 1, 0.00, 20000.00, 'Karur', 'Chengalpattu', '2501170001', '50', '1', 'upload_files/candidate_tracker/34432599425_RESUMESANTHOSHKUMAR.V1.pdf', NULL, '1', '2025-01-17', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-17 04:07:26', 154, '2025-01-17 11:29:46', 0, NULL, 1),
(23643, 'Surya k', '6', '7448781785', '6385578962', 'suryak78178@gmail.com', '2003-10-13', 21, '2', '2', 'Kumar', 'Former', 20000.00, 2, 0.00, 20000.00, 'Karur', 'Chengalpattu', '2501170002', '50', '1', 'upload_files/candidate_tracker/26798490448_suryaresume..1.pdf', NULL, '1', '2025-01-17', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was interested in sales and good at communication ,also ready to joining by any time kannan also checked with candidate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-17 04:07:34', 154, '2025-01-17 11:30:38', 0, NULL, 1),
(23644, 'Bhavani V', '4', '7358134957', '7358358397', 'bharathbovas1@gmail.com', '1995-10-20', 29, '3', '1', 'Bharath Kumar s', 'RADIANT cash management services pvt ltd', 25000.00, 1, 15000.00, 18000.00, 'Purasaiwakkam', 'Purasaiwakkam', '2501170003', '', '2', 'upload_files/candidate_tracker/6463279905_RESUME.pdf', NULL, '1', '2025-01-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-17 04:27:08', 1, '2025-01-17 04:34:31', 0, NULL, 1),
(23645, 'ASHOK', '4', '8110036806', '9566177967', 'ashokselva15@gmail.com', '2001-06-15', 23, '2', '2', 'RAVI', 'Construction work', 25000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2501170004', '1', '1', 'upload_files/candidate_tracker/99809081674_R.ASHOK202411141312390000.pdf', NULL, '1', '2025-01-17', 0, '', '3', '59', '2025-01-20', 162000.00, '', '3', '2025-01-21', '1', 'Communication Average 5050 for your profile can give try and check in training period', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-01-20', 1, '2025-01-17 04:36:44', 60, '2025-01-20 10:41:37', 0, NULL, 1),
(23646, 'Bhavani V', '6', '7358358397', '7358304497', 'bharathbovas1@gmail.com', '1995-10-20', 29, '3', '1', 'Bharath Kumar s', 'Radiant valuable logistics Pvt Ltd', 25000.00, 1, 15000.00, 18000.00, 'Purasaiwakkam', 'Purasaiwakkam', '2501170005', '', '2', 'upload_files/candidate_tracker/36146077124_RESUME.pdf', NULL, '1', '2025-01-17', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok,', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-01-17 04:41:22', 154, '2025-01-17 11:30:05', 0, NULL, 1),
(23647, 'S.Gowtham', '6', '7200776678', '9840873265', 'gowthamsuresh199@gmail.com', '1999-04-23', 25, '2', '2', 'KR Suresh', 'Daily wages', 10000.00, 1, 18000.00, 20000.00, 'Ambattur OT', 'Ambattur OT', '2501170006', '50', '1', 'upload_files/candidate_tracker/50789213606_Resume.docx', NULL, '1', '2025-01-17', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-17 06:15:57', 154, '2025-01-17 12:51:17', 0, NULL, 1),
(23648, 'Balasubramaniyan', '4', '7904344929', '0000000000', 'balaflintoff@gmail.com', '1998-12-12', 26, '2', '2', 'T vadivel', 'Auto driver', 20000.00, 1, 369000.00, 450000.00, 'Chennai', 'Chennai', '2501170007', '50', '2', 'upload_files/candidate_tracker/25764659419_BalaResume.pdf', NULL, '1', '2025-01-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-17 06:19:13', 1, '2025-01-17 06:23:00', 0, NULL, 1),
(23649, 'G SEKHAR', '6', '9182628255', '8179355124', 'sekharchinna1432@gmail.com', '2003-01-10', 22, '2', '2', 'G rajappa', 'Farmer', 300000.00, 1, 0.00, 18.00, 'Kullam', 'Bengaluru', '2501170008', '57', '1', 'upload_files/candidate_tracker/12521462235_newresume2.pdf', NULL, '1', '2025-01-17', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication not upto the mark', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-01-17 06:24:34', 154, '2025-01-18 10:04:20', 0, NULL, 1),
(23650, '', '0', '9962064796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501170009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-17 10:17:54', 0, NULL, 0, NULL, 1),
(23651, 'Dinesh babu', '4', '6382311013', '8939971563', 'dineshbabu28111998@gmail.com', '1998-11-28', 26, '2', '2', 'Umashankar', 'Machine operator', 4.50, 2, 280000.00, 350000.00, 'No:7/13 4th Street Devi karumariamman nagar', 'Chennai', '2501170010', '50', '2', 'upload_files/candidate_tracker/68903523956_whiteSimpleResume1.pdf.pdf', NULL, '1', '2025-01-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-17 10:25:07', 1, '2025-01-17 10:32:34', 0, NULL, 1),
(23652, 'Rasathi', '4', '7904449660', '9080669760', 'rasathit0210@gmail.com', '2000-10-02', 24, '2', '2', 'S Thiruppathi', 'Supervisor', 400000.00, 2, 0.00, 25000.00, 'Tiruvallur', 'Tiruvallur', '2501170011', '50', '2', 'upload_files/candidate_tracker/78167178866_resumeresume2.pdf', NULL, '1', '2025-01-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-17 11:50:41', 1, '2025-01-17 11:55:09', 0, NULL, 1),
(23653, 'Viswash m', '4', '9025786110', '', 'viswashm10@gmail.com', '2003-11-10', 21, '2', '2', 'Mohan S', 'Lorry driver', 300000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2501170012', '50', '1', 'upload_files/candidate_tracker/61717864433_ViswashM2.pdf', NULL, '1', '2025-01-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-17 12:38:50', 1, '2025-01-17 12:41:07', 0, NULL, 1),
(23654, 'Afrah Shafi', '4', '9363697387', '', 'afrahshafi89@gmail.com', '2004-04-20', 20, '2', '2', 'shafiullah', 'elect techni', 70000.00, 4, 17000.00, 18000.00, 'vm street lane royapettah chennai', 'vm street lane royapettah chennai', '2501170013', '1', '2', 'upload_files/candidate_tracker/5914172098_AFRAHSHAFIRESUME3.pdf', NULL, '3', '2025-01-18', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-01-17 01:31:55', 154, '2025-01-18 12:26:42', 0, NULL, 1),
(23655, 'R.KARPAGAM', '4', '9042702462', '9042702492', 'rkarpagamrkarpagam550@gmail.com', '2003-12-05', 21, '2', '2', 'R.Soundravalli', 'Home Maker', 120000.00, 1, 0.00, 15000.00, 'Pappana Sandhu, Iyyankulam Vadakarai, Meelaveedhi.', 'Pappana Sandhu, Iyyankulam Vadakarai, Meelaveedhi', '2501180001', '1', '1', 'upload_files/candidate_tracker/40438578810_KARPAGAMR.pdf', NULL, '1', '2025-01-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-18 04:55:03', 153, '2025-01-18 10:31:31', 0, NULL, 1),
(23656, 'Fyzoonisha M', '4', '6383374044', '', 'fyzoonisha@gmail.com', '2002-07-02', 22, '2', '2', 'Muneer S', 'Business', 132000.00, 1, 0.00, 15000.00, 'Kolathur,chennai', 'Kolathur, Chennai', '2501180002', '50', '1', 'upload_files/candidate_tracker/11644275666_fyzoonisharesume.pdf', NULL, '1', '2025-01-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-18 05:48:45', 1, '2025-01-18 05:53:05', 0, NULL, 1),
(23657, 'Anupriya.P', '6', '9585335923', '6380074006', 'anuammu8901@gmail.com', '2001-09-08', 23, '2', '2', 'Father', 'Textile business', 50000.00, 2, 18000.00, 18000.00, 'Chennai', 'Chennai', '2501180003', '50', '2', 'upload_files/candidate_tracker/19582888920_Anupriyaresume.pdf', NULL, '1', '2025-01-18', 0, '', '3', '59', '2025-01-21', 186000.00, '', '3', '2025-01-23', '2', 'Communication Ok  5months back she attended interview for HR Profile through Indeed now for Sales 5050 On sustainability need to check in training and confirm', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2025-01-21', 1, '2025-01-18 06:18:16', 60, '2025-01-21 10:57:30', 0, NULL, 1),
(23658, 'Monish M', '16', '9206752969', '9688228868', 'monishm279@gmail.com', '1997-04-10', 27, '3', '2', 'Aruna Kumari', 'Housewife', 20000.00, 0, 20000.00, 25000.00, 'Hulimavu, Bengaluru', 'Hulimavu, Bengaluru', '2501180004', '', '2', 'upload_files/candidate_tracker/81778551830_MonishMResume2025.pdf', NULL, '1', '2025-01-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-18 06:20:49', 1, '2025-01-18 06:26:14', 0, NULL, 1),
(23659, 'Bhanumathi.G', '4', '9488553216', '9962123430', 'bhanumathiganeshan1989@gmail.com', '1989-12-19', 35, '2', '1', 'MaruthuPrakash', 'Not working', 60000.00, 0, 0.00, 15000.00, 'Thoraipakkam OMR', 'Chennai', '2501180005', '45', '1', 'upload_files/candidate_tracker/58379636513_IMG20250118WA0013.pdf', NULL, '1', '2025-01-18', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Above 30 age she will not be suitable for our sales', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-18 07:00:25', 154, '2025-01-18 01:17:35', 0, NULL, 1),
(23660, 'Kishor kumar. M', '11', '6369777600', '9884996383', 'kishorkumar52941@gmail.com', '2003-05-27', 21, '6', '2', 'Mariyappan', 'Retail shop', 60000.00, 1, 0.00, 1000.00, 'No 10 old post office street korattur chennai-76', 'No 10 old post office street korattur chennai-76', '2501180006', '', '1', 'upload_files/candidate_tracker/79334124146_DOC20241221WA0001..pdf', NULL, '1', '2025-01-18', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-18 07:20:57', 154, '2025-01-18 01:19:01', 0, NULL, 1),
(23661, 'Nallarasan S', '6', '9500448057', '', 'nallarasangk@gmail.com', '2003-07-17', 21, '2', '2', 'Selvarasu N', 'Farmer', 20000.00, 5, 0.00, 18000.00, 'Nagapatinam', 'Chennai', '2501180007', '50', '1', 'upload_files/candidate_tracker/382199904_Resume.pdf', NULL, '1', '2025-01-21', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales and he intrested in iT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-18 07:32:30', 154, '2025-01-21 12:52:25', 0, NULL, 1),
(23662, 'Sherin Fariya', '4', '9789873056', '', 'sherinfariya22@gmail.com', '2003-12-22', 21, '2', '2', 'Mohamed Farook', 'Labour', 70000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2501180008', '50', '1', 'upload_files/candidate_tracker/97288174931_SHERINFARIYAMF1.pdf', NULL, '2', '2025-01-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-18 08:39:58', 1, '2025-01-18 08:46:39', 0, NULL, 1),
(23663, 'Anamika', '4', '7397040266', '8489019637', 'anamikaaswini5@gmail.com', '2000-01-31', 24, '2', '2', 'Vijaya', 'Fishing', 30000.00, 1, 17000.00, 22000.00, 'Kanyakumari', 'Chennai', '2501180009', '1', '2', 'upload_files/candidate_tracker/63833986586_Anamikaresume.docx', NULL, '1', '2025-01-18', 0, '', '3', '59', '2025-01-23', 246000.00, '', '3', '2025-01-25', '2', 'Communication Ok have WFH Exp for 4yrs  Can be trained in our roles need to check in training', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1027', '', '55824', '55560', '2025-01-23', 1, '2025-01-18 08:43:52', 60, '2025-01-22 10:47:46', 0, NULL, 1),
(23664, 'Reshma', '4', '9150756166', '', 'reshmaramesh2122@gmail.com', '2002-03-21', 22, '2', '2', 'Ramesh', 'Accountant', 96000.00, 1, 280000.00, 29000.00, 'Chennai', 'Chennai', '2501180010', '1', '2', 'upload_files/candidate_tracker/91388730665_ReshmaResumefinal.pdf', NULL, '1', '2025-01-20', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55824', '55560', '1970-01-01', 1, '2025-01-18 03:32:57', 154, '2025-01-20 02:46:14', 0, NULL, 1),
(23665, 'Reddipalli sreelekha', '6', '9959603320', '', 'reddypallisreelekha2000@gmail.com', '2000-06-26', 24, '2', '2', 'Nagaraju', 'Farming', 50000.00, 1, 220000.00, 400000.00, 'Andra pradesh', 'Battarahalli', '2501180011', '1', '2', 'upload_files/candidate_tracker/46785126377_REDDIPALLISREELEKHAResume.pdf', NULL, '1', '2025-01-20', 0, '', '3', '59', '2025-01-27', 240000.00, '', NULL, '2026-04-25', '2', 'Communication Ok Have exp in calling cAn be trained in our roles need to check in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55555', '5151', '2025-01-27', 1, '2025-01-18 03:55:17', 60, '2025-01-27 11:20:36', 0, NULL, 1),
(23666, 'Gnanamagdhalin', '4', '6381921327', '9360739960', 'gnanamagdhalin2003@gmail.com', '2003-03-13', 21, '2', '2', 'Arockiyadoss', 'farmer', 10000.00, 0, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2501190001', '1', '1', 'upload_files/candidate_tracker/20009266418_64f9d33ffdb44472b3ab9fafe4fb539eAUSZvxvaWigz.pdf', NULL, '3', '2025-01-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile..fresher..complted ba english in bon secures college.....native 25 km from ofice..father retired govt staff...aged person both so she is helpless and need job .....speak well ready to work in any environment and salary not expected basic 12k only have laptop and joining imeediately....kindly check once and cofirm', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-19 05:24:32', 154, '2025-01-20 11:07:18', 0, NULL, 1),
(23667, 'gokul', '6', '6381677583', '7845892703', 'gokulaalive@gmail.com', '2003-12-28', 21, '2', '2', 'M. anantha Kumar', 'Business', 60000.00, 1, 0.00, 18000.00, 'K.k nagar,', 'Chennai', '2501200001', '1', '1', 'upload_files/candidate_tracker/58616030756_Resumegokul2025jan20.pdf', NULL, '1', '2025-01-20', 0, '', '3', '59', '2025-01-23', 192000.00, '', '3', '2025-01-23', '1', 'Communication Ok  can give a try and check in training  sustainability 5050', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', '55666', '5151', '2025-01-23', 1, '2025-01-20 01:56:43', 60, '2025-01-22 11:25:26', 0, NULL, 1),
(23668, 'Avinash', '6', '8867122173', '', 'ajjuakash4@gmail.com', '1999-06-28', 25, '3', '2', 'Single', 'Sales', 75000.00, 2, 42000.00, 42000.00, 'Btm layout', 'Btm layout', '2501200002', '', '2', 'upload_files/candidate_tracker/56172027635_AvinashUpdatedCV.pdf', NULL, '1', '2025-01-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'suggested ctc 18 to 20k cross check previous data and immediate joining', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-01-20 04:23:12', 60, '2025-01-25 04:44:51', 0, NULL, 1),
(23669, 'Mini', '6', '7358573407', '9150251018', 'minithangaraj1999@gmail.com', '1999-04-02', 25, '1', '2', 'Thangaraj', 'Building contract', 30.00, 2, 0.00, 18.00, 'Ennore', 'Ennore', '2501200003', '', '1', 'upload_files/candidate_tracker/63510373649_MINITRESUME.pdf', NULL, '1', '2025-01-20', 0, 'C99054', '3', '59', '2025-01-20', 180000.00, '', NULL, '2026-02-21', '2', 'communication Ok Rejoining candidate Babu Own reference and acceptance', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2025-01-20', 1, '2025-01-20 04:42:03', 60, '2025-01-20 11:09:03', 0, NULL, 1),
(23670, 'Arun Pandian K', '6', '7871739843', '9791579943', 'karunpandian107@gmail.com', '1999-07-28', 25, '2', '2', 'Krishnamoorthy R', 'Carpenter', 25000.00, 1, 13000.00, 20000.00, 'Madurai', 'Madurai', '2501200004', '45', '2', 'upload_files/candidate_tracker/73293872859_ResumeArun11.pdf', NULL, '1', '2025-01-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-20 04:53:37', 154, '2025-01-20 11:10:04', 0, NULL, 1),
(23671, 'Sri Syamala Devi', '4', '9842734171', '7339401371', 'srishasrisha18@gmail.com', '2002-06-14', 22, '2', '2', 'Purusothaman', 'Plumber', 9000.00, 1, 0.00, 12000.00, '3, South Vettukara Street, Thanjavur 613001', '3, South Vettukara Street, Thanjavur 613001', '2501200005', '1', '1', 'upload_files/candidate_tracker/45218805786_CV2024111517323577compressed1.pdf', NULL, '1', '2025-01-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for tele sales ,,,not facing pressure', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-20 05:01:35', 154, '2025-01-20 10:56:20', 0, NULL, 1),
(23672, 'Shalini varghese', '6', '8837071509', '9862248736', 'Shalinivarghese345@gmail.com', '2000-02-29', 24, '2', '2', 'G.varghese', 'Retired army', 20000.00, 2, 0.00, 20000.00, 'Tiruvannamalai,polur tamilnadu', 'Nungambakkam', '2501200006', '1', '1', 'upload_files/candidate_tracker/32387047069_ShaliniVargheseResume11.docx', NULL, '1', '2025-01-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was good at communication also fluency in english and interested in sales and ready to join ,we shall give 15k as salary .', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-20 05:19:54', 154, '2025-01-20 11:36:40', 0, NULL, 1),
(23673, 'DANIEL RUBEN', '4', '6382883517', '6380559707', 'rubenleinad596@gmail.com', '2000-10-06', 24, '2', '2', 'ARULANANDHASAMY', 'Building Contractor', 78000.00, 1, 13000.00, 14000.00, 'THANJAVUR', 'THANJAVUR', '2501200007', '1', '2', 'upload_files/candidate_tracker/93133404319_DOC20241223WA0002..pdf', NULL, '1', '2025-01-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'completly looking for IT ONLY NOT FIT FOR SALES', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-20 05:25:37', 154, '2025-01-20 11:24:12', 0, NULL, 1),
(23674, 'Madhumitha J', '11', '6369166721', '9488094409', 'madhumitha2620@gmail.com', '2000-09-26', 24, '6', '2', 'Jeevanandam M', 'Retired', 8.00, 1, 0.00, 10000.00, 'Tiruvannamalai', 'Chennai', '2501200008', '', '1', 'upload_files/candidate_tracker/90091358835_MadhumithaJresume.pdf', NULL, '1', '2025-01-20', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shorlisted but she not joined for intern', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-20 05:28:22', 154, '2025-01-20 11:18:13', 0, NULL, 1),
(23675, 'Nithiya. P', '35', '9043557432', '9884002205', 'nithiya82002@gmail.com', '2002-07-08', 22, '2', '2', 'Perumal.A', 'Coolie', 45000.00, 5, 0.00, 15000.00, 'Koyambedu', 'Koyambedu', '2501200009', '57', '1', 'upload_files/candidate_tracker/59617748669_NITHIYARESUME.pdf', NULL, '1', '2025-01-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'looking for non voice', '', '', '', '', '', '1970-01-01', 1, '2025-01-20 05:32:41', 154, '2025-01-20 11:40:50', 0, NULL, 1),
(23676, 'M.GAYATHRI', '6', '9940374244', '', 'mm7500037@gmail.com', '1999-07-02', 25, '2', '2', 'V.MOHAN KUMAR', 'BUSINESS', 70000.00, 1, 0.00, 15000.00, 'Old Washermanpet', 'Old Washermanpet', '2501200010', '50', '1', 'upload_files/candidate_tracker/67726077446_M.GAYATHRIRESUME.docx', NULL, '1', '2025-01-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-20 05:53:16', 154, '2025-01-20 12:16:30', 0, NULL, 1),
(23677, 'Ashik Vk', '11', '7598892782', '', 'ashik.vk2242@gmail.com', '2004-12-02', 20, '3', '2', 'R. Vinukumar', 'Tnstc', 40000.00, 1, 0.00, 10000.00, 'Kanyakumari', 'Shollinganallur, Chennai', '2501200011', '', '1', 'upload_files/candidate_tracker/69416197167_AshikCV.pdf', NULL, '1', '2025-01-20', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '6', '2', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-20 06:01:03', 154, '2025-01-20 11:48:04', 0, NULL, 1),
(23678, 'yazhini P', '6', '9344021856', '', 'yazhiniofficial1602@gmail.com', '2002-02-16', 22, '2', '2', 'S.palanisami', 'state government employee', 40000.00, 1, 0.00, 14000.00, 'thanjavur', 'chennai', '2501200012', '50', '1', 'upload_files/candidate_tracker/22642827219_yazhiniMBACV.pdf', NULL, '1', '2025-01-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested to join as the distance is too long to travel not open to releocate too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-20 06:05:21', 154, '2025-01-22 03:59:20', 0, NULL, 1),
(23679, 'RABIYATHUL BASHEERIA A', '6', '8870951614', '9080113522', 'Rabiyalathif09@gmail.com', '1996-05-09', 28, '2', '1', 'RAHMADULLA P', 'Manager in Mankind pharmacy', 50000.00, 2, 15000.00, 18000.00, 'Falt no 2 sai nivas apartment kodungaiyur', 'Falt No 2 sai nivas apartment kodungaiyur', '2501200013', '57', '2', 'upload_files/candidate_tracker/77520882822_RABIYARESUME1.pdf', NULL, '1', '2025-01-20', 1, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-20 06:09:09', 154, '2025-01-20 12:17:32', 0, NULL, 1),
(23680, '', '0', '8870951516', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501200014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-20 06:26:45', 0, NULL, 0, NULL, 1),
(23681, 'Ajith D', '4', '9003790527', '9786363375', 'ajithdevarajdevaraj@gmail.com', '2001-05-27', 23, '2', '2', 'Devaraj', 'Farmer', 36000.00, 3, 0.00, 14000.00, 'Thiruvarur', 'chennai', '2501200015', '50', '1', 'upload_files/candidate_tracker/97885054075_AjithResume.pdf', NULL, '1', '2025-01-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-20 06:35:07', 1, '2025-01-20 08:44:01', 0, NULL, 1),
(23682, 'K.vasuBharathi', '6', '7358560399', '9790632403', 'k.vasubharathi@gmail.com', '1999-09-25', 25, '2', '2', 'sheshanbharathi', 'tailor', 20000.00, 3, 1800.00, 13000.00, 'No.16/2 Eswaran koil street Erukancherry', 'No.16/2 Eswaran koil street Erukancherry', '2501200016', '1', '2', 'upload_files/candidate_tracker/81493128372_vasure.pdf', NULL, '3', '2025-01-20', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'silent person. not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-20 07:00:24', 154, '2025-01-20 01:23:50', 0, NULL, 1),
(23683, 'Sriman Raj', '6', '7010820834', '9003130475', 'srimanraj33@gmai.com', '2001-09-03', 23, '2', '2', 'Sakthivel', 'Provision store', 100000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2501200017', '1', '2', 'upload_files/candidate_tracker/96182551099_ResumeUPDATED.pdf', NULL, '1', '2025-01-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected ctc 16k lets try 7 days we will confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '55651', '5151', '1970-01-01', 1, '2025-01-20 07:00:27', 154, '2025-01-20 01:23:39', 0, NULL, 1),
(23684, 'golla sruthi', '4', '9392865657', '', 'gollasruthi2@gmail.com', '2003-03-06', 21, '3', '2', 'g .sreekanth reddy', 'farmer', 15.00, 1, 0.00, 15.00, 'ananthapur', 'bangelore', '2501200018', '', '1', 'upload_files/candidate_tracker/45819470548_GOLLASRUTHIFlowCVResume202411054compressed.pdf', NULL, '1', '2025-01-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-20 07:15:41', 1, '2025-01-20 10:22:05', 0, NULL, 1),
(23685, 'A. Sree Lakshmi', '6', '8121150649', '', 'sreea1611@gmail.com', '2003-11-16', 21, '2', '2', 'A usha', 'Business', 20000.00, 1, 18.00, 22.00, 'Visakhapatnam', 'Royapettah', '2501200019', '57', '2', 'upload_files/candidate_tracker/62066035228_Sreelakshmi.docx', NULL, '1', '2025-01-20', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-20 07:47:56', 154, '2025-01-20 02:51:45', 0, NULL, 1),
(23686, 'Ilyas Hussain', '6', '7358539835', '', 'Mailmeilyas96@gmail.com', '1996-04-02', 28, '3', '2', 'Fida Hussain', 'Turner', 8000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2501200020', '', '2', 'upload_files/candidate_tracker/70733969714_ilyasupdres5.pdf', NULL, '1', '2025-01-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'except high salary not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-20 09:17:44', 154, '2025-01-20 03:10:04', 0, NULL, 1),
(23687, 'Sanjay R', '6', '9344156087', '8148536203', 'Sanjayofficialra02@gmail.com', '2002-10-02', 22, '2', '2', 'Ramesh', 'Foreign', 500000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2501200021', '1', '1', 'upload_files/candidate_tracker/78156875515_sanjayCV.pdf', NULL, '2', '2025-01-27', 0, '', '3', '59', '2025-02-03', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can be trained in our roles need to check and confirm', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '2025-02-03', 1, '2025-01-20 09:46:31', 60, '2025-02-01 06:38:15', 0, NULL, 1),
(23688, '', '0', '9345499176', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501200022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-20 10:21:25', 0, NULL, 0, NULL, 1),
(23689, 'mohamed thameem', '6', '9042805958', '', 'thameemmohamed22@gmail.com', '2001-04-25', 23, '2', '2', 'diwan mohamed', 'Business', 15000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2501200023', '50', '1', 'upload_files/candidate_tracker/41716591464_thameemResumeNEW3.pdf', NULL, '1', '2025-01-21', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill . and long distance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-20 12:22:29', 154, '2025-01-21 10:56:36', 0, NULL, 1),
(23690, 'SARULATTHA', '6', '6381262754', '', 'sarulattha62@gmail.com', '2003-10-16', 21, '2', '2', 'Senthil vel', 'Business medical', 20000.00, 1, 0.00, 20000.00, 'Chennai avadi', 'Chennai avadi', '2501200024', '50', '1', 'upload_files/candidate_tracker/39178205200_sarulatthaUIUXdesigner.pdf', NULL, '1', '2025-01-21', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, communication is ok, pls cross check settled family, father medical business mother beautician, distance too long avadi, pls Filter. Confirm the joining date..\nThanks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-01-20 12:24:34', 154, '2025-01-21 10:56:58', 0, NULL, 1),
(23691, '', '0', '9361498588', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501200025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-20 05:13:58', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23692, 'Rishiba suresh', '4', '8925039139', '9629593388', 'rishibask@gmail.com', '2001-09-19', 23, '2', '2', 'Suresh', 'Painter', 75000.00, 1, 0.00, 15000.00, '41,Ganapathy Nagar, East Street, Thanjavur', '41,Ganapathy Nagar, East Street, Thanjavur', '2501210001', '1', '1', 'upload_files/candidate_tracker/88853594433_Rishiba.pdf', NULL, '1', '2025-01-21', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales, choosing data entry', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-21 04:50:18', 154, '2025-01-21 10:56:47', 0, NULL, 1),
(23693, '', '0', '1702207023', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501210002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-21 05:03:20', 0, NULL, 0, NULL, 1),
(23694, 'Gokulanand V', '6', '8838428483', '', 'gokulrajes2001@gmail.com', '2001-03-15', 23, '2', '2', 'Venkateswaran', 'Searching job', 20000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2501210003', '45', '1', 'upload_files/candidate_tracker/46437646462_V.Gokulanandresume2.pdf', NULL, '1', '2025-01-21', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not wearing proper formal and he is not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-21 05:05:28', 154, '2025-01-21 11:17:14', 0, NULL, 1),
(23695, 'Fouzia fathima A', '6', '7871497210', '', 'fouziafathima21@gmail.com', '2003-08-21', 21, '3', '2', 'Nargis banu', 'House wife', 17000.00, 1, 0.00, 14000.00, 'Old washermenpet', 'Old washermenpet', '2501210004', '', '2', 'upload_files/candidate_tracker/39182927078_FouziResume.pdf', NULL, '1', '2025-01-21', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'job needed person salary in hand 14k lets try 7 days then we will confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-21 05:20:37', 154, '2025-01-22 04:42:47', 0, NULL, 1),
(23696, 'Ayesha Banu A', '6', '9841859598', '', 'abanu0922@gmail.com', '2003-01-09', 22, '3', '2', 'Parveen banu', 'House wife', 17000.00, 0, 0.00, 14500.00, 'Triplicane', 'Triplicane', '2501210005', '', '2', 'upload_files/candidate_tracker/1524833778_AyeshaBanuA.pdf', NULL, '1', '2025-01-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in this profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-21 05:21:09', 154, '2025-01-21 12:42:28', 0, NULL, 1),
(23697, 'naushad hussain mohamed naguib', '4', '7539991015', '', 'noushadhussain7@gmail.com', '2000-05-25', 24, '2', '2', 'mohamed naguib', 'unemployed', 400000.00, 2, 0.00, 15000.00, 'thanjavur', 'thanjavur', '2501210006', '1', '1', 'upload_files/candidate_tracker/84354257142_NaushadHussainCv.pdf', NULL, '1', '2025-01-22', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for telesaes and telecalling', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-21 05:21:44', 153, '2025-01-22 12:31:06', 0, NULL, 1),
(23698, 'kalaivanan', '6', '9677293224', '9444761550', 'kalaivanan512001@gmail.com', '2001-01-05', 24, '2', '2', 'Karpagam D', 'Librarian in bharath institute', 50000.00, 2, 20000.00, 20000.00, 'Plotno-1b,doorno-15, Brindavannagar,Madambakkam', 'Plotno-1b,Doorno-15,Brindavannagar,Madambakkam', '2501210007', '50', '2', 'upload_files/candidate_tracker/65757367480_Resumeupdated.pdf', NULL, '1', '2025-01-21', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', 'long distance and not much intrested in sales', '', '', '', '', '', '1970-01-01', 1, '2025-01-21 05:44:57', 154, '2025-01-21 01:13:20', 0, NULL, 1),
(23699, 'SUBHASHINI', '6', '6382938007', '7092035184', 'ysubhashini5@gmail.com', '2001-06-16', 23, '2', '1', 'Lokesh', 'BPO', 15.00, 1, 0.00, 21000.00, 'Chennai', 'Chennai', '2501210008', '45', '1', 'upload_files/candidate_tracker/55753263724_ResumeofSubhashiniLatest2024.pdf', NULL, '1', '2025-01-21', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'good skill. married woman Experience 1 yr at insurance filed. but will analysis 7 days training.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-21 05:47:56', 154, '2025-01-22 04:57:35', 0, NULL, 1),
(23700, 'Karthick. V', '6', '6385132316', '', 'karthickreo1234@gmail.com', '2003-06-28', 21, '2', '2', 'K. Thangaraj', 'Nil', 10000.00, 1, 0.00, 18000.00, '31,ottraivadai street aringar anna nagar manali', '31,ottraivadai street aringar anna nagar manali', '2501210009', '50', '1', 'upload_files/candidate_tracker/96467962439_ResumeKarthick.docx', NULL, '1', '2025-01-21', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate performance And communication is  Low.also his voice is low pitch.then sustainable doubt.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-21 05:52:09', 154, '2025-01-21 12:42:38', 0, NULL, 1),
(23701, 'pawan nithik m', '6', '7358486356', '8608936191', 'hebronpawannithik003@gmail.com', '2003-10-30', 21, '2', '2', 'murugesh s', 'Supervisor', 25000.00, 1, 0.00, 15000.00, 'poombuhar nagar kolathur chennai', 'kambar nagar kolathur chennai', '2501210010', '50', '1', 'upload_files/candidate_tracker/10502200644_HPN.pdf', NULL, '1', '2025-01-21', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was not good  at communication and not so confident at the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-21 06:04:41', 154, '2025-01-21 12:43:02', 0, NULL, 1),
(23702, 'P mohanraj', '6', '8608936191', '7358486356', 'mohanrajp173@gmail.com', '2003-12-16', 21, '2', '2', 'K. Perumal', 'Labour', 15000.00, 1, 0.00, 15000.00, '76/139, 4th cross street, ponniyammanmedu,', '76/139, 4th cross street, ponniyammanmedu', '2501210011', '50', '1', 'upload_files/candidate_tracker/70421956663_mohanraj.p.pdf', NULL, '1', '2025-01-21', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is not suitable for sales profile, communication not good,Appt not interested,reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-01-21 06:06:02', 154, '2025-01-21 12:43:13', 0, NULL, 1),
(23703, 'Athidhyan R S', '6', '7010134340', '', 'athidhyan4001@gmail.com', '1995-09-02', 29, '2', '2', 'Karpagam M', 'Assistant Engineer', 100000.00, 1, 30000.00, 20000.00, 'Trichy', 'Trichy', '2501210012', '1', '2', 'upload_files/candidate_tracker/72917847127_Aathiresume24.211.pdf', NULL, '1', '2025-01-21', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', 'high salary expectation', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-01-21 06:11:06', 154, '2025-01-21 01:13:47', 0, NULL, 1),
(23704, '', '0', '6382259987', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501210013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-21 06:24:46', 0, NULL, 0, NULL, 1),
(23705, 'LOGESHWARAN', '13', '9940399357', '8190868292', 'logeshwarang18@gmail.com', '2002-03-18', 22, '3', '2', 'Ganapathy', 'Driver', 2.50, 1, 0.00, 3.00, 'Mathur', 'Mathur', '2501210014', '', '1', 'upload_files/candidate_tracker/88030100257_Loki.pdf', NULL, '1', '2025-01-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-21 07:14:01', 1, '2025-01-21 07:17:58', 0, NULL, 1),
(23706, 'DHANALAKSHMI R', '11', '9789923179', '6383932782', 'lakshmidhana2801@gmail.com', '2003-01-28', 21, '3', '2', 'Ramachandran', 'Business', 50000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2501210015', '', '1', 'upload_files/candidate_tracker/9929983355_235111040DHANALAKSHMIRNOVEMBER.pdf', NULL, '1', '2025-01-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-01-21 07:18:23', 154, '2025-01-21 01:12:01', 0, NULL, 1),
(23707, '', '0', '9150273985', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501210016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-21 09:15:22', 0, NULL, 0, NULL, 1),
(23708, 'U Aadhira', '4', '6385408119', '', 'aadhu.uk@gmail.com', '1998-04-10', 26, '5', '2', 'Unnikrishnan', 'AR Caller', 40000.00, 1, 0.00, 40000.00, 'Chennai', 'Chennai', '2501210017', '', '1', 'upload_files/candidate_tracker/9967826115_AadhiraCV01102025065614.pdf', NULL, '1', '2025-01-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-21 09:22:19', 1, '2025-01-21 09:25:29', 0, NULL, 1),
(23709, 'Tejaswini', '6', '8296577325', '', 'tejaswinikarthi4425@gmail.com', '1997-12-25', 27, '2', '1', 'Karthik', 'Hr Department', 17000.00, 0, 0.00, 17000.00, 'Thathaguni,Agra cross, kanakapura main road by', 'Thathaguni,Agra cross, kanakapura main road by', '2501210018', '57', '1', 'upload_files/candidate_tracker/8895150028_BlueSimpleProfessionalCVResume202411091534100000.pdf', NULL, '1', '2025-01-21', 0, '', '3', '59', '2025-01-27', 180000.00, '', '3', '2025-04-29', '2', 'Communication Ok fresher for Telesales can be trained in our roles need to check and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55555', '5151', '2025-01-27', 1, '2025-01-21 09:28:06', 60, '2025-01-27 10:15:54', 0, NULL, 1),
(23710, 'Priya P', '4', '6381817633', '', 'priyapanneerselvam2511@gmail.com', '2002-11-25', 22, '2', '2', 'Amsa', 'Trainer', 170000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2501210019', '50', '1', 'upload_files/candidate_tracker/64233781190_PriyaResume.pdf', NULL, '1', '2025-01-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-21 10:42:05', 1, '2025-01-21 10:48:59', 0, NULL, 1),
(23711, 'G. Vignesh', '11', '8939134282', '8248444434', 'vickyvicky05.07.2004@gmail.com', '2004-07-05', 20, '2', '2', 'Balaji', 'Railway', 3.80, 1, 0.00, 25000.00, 'Villivakkam', 'Villivakkam', '2501210020', '50', '1', 'upload_files/candidate_tracker/21834005956_G.VIGNESHResume1.pdf', NULL, '1', '2025-01-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-21 11:02:02', 1, '2025-01-21 11:05:16', 0, NULL, 1),
(23712, 'mohaiyadeen raja y', '11', '9171358469', '', 'ymohaiyadeenraja@gmail.com', '1999-02-25', 25, '6', '2', 'yasin mohamed', 'student', 20000.00, 2, 0.00, 7000.00, 'theni', 'chennai', '2501210021', '', '1', 'upload_files/candidate_tracker/29964028219_Ymohaiyadeenraja.pdf', NULL, '1', '2025-01-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-01-21 11:21:00', 154, '2025-01-21 05:34:49', 0, NULL, 1),
(23713, 'Gowtham S', '6', '6383688595', '', 'Gowthamkrizz9921@gmail.com', '1999-07-14', 25, '2', '2', 'sachidhanadham', 'farmer', 15000.00, 1, 0.00, 17000.00, 'kanchipuram', 'kanchipuram', '2501210022', '50', '1', 'upload_files/candidate_tracker/43902291867_gowthamresume.pdf', NULL, '1', '2025-01-23', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he si not intersted telecalling', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-21 11:59:55', 154, '2025-01-23 01:05:22', 0, NULL, 1),
(23714, 'subash kumaran', '6', '7200401554', '7448359390', 'subashkmrn@gmail.com', '1997-06-29', 27, '2', '1', 'swathy .m', 'house wife', 25000.00, 2, 0.00, 25000.00, 'chennai', 'chennai', '2501210023', '1', '1', 'upload_files/candidate_tracker/21397512510_subash.docx', NULL, '1', '2025-01-22', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales and iTI Degree only so already i have in that list of some person in my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2025-01-21 01:35:38', 154, '2025-01-22 10:59:23', 0, NULL, 1),
(23715, '884360119039', '4', '8870341659', '', 'jj6792765@gmail.com', '2003-01-25', 21, '2', '2', 'K.suresh and S.Suganthi porselvi', 'Tailor and house wife', 180000.00, 2, 15000.00, 16000.00, 'Chengalpattu', 'Chengalpattu', '2501210024', '50', '2', 'upload_files/candidate_tracker/28872880945_floraresume.pdf.pdf', NULL, '1', '2025-01-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-21 01:54:14', 1, '2025-01-21 02:02:48', 0, NULL, 1),
(23716, 'Gopinathan S', '30', '7339521182', '7448776123', 'gopinathangopinathan14@gmail.com', '2004-08-13', 20, '2', '2', 'Settu K', 'Farmer', 13000.00, 4, 0.00, 15000.00, 'Melvailamur, melmalaiyanur Tk, Vilupuram dt-604201', 'Saidapet,chennai', '2501220001', '50', '1', 'upload_files/candidate_tracker/61958518746_171720551654916.pdf', NULL, '1', '2025-01-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '9', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-22 04:36:14', 1, '2025-01-22 04:03:27', 0, NULL, 1),
(23717, 'Lavanya R', '6', '9344887600', '7010366087', 'Lavanya26022004@gmail.com', '2004-02-26', 20, '2', '2', 'Raj kumar.S', 'Driver', 15000.00, 1, 0.00, 28000.00, 'Chennai', 'Chennai', '2501220002', '1', '2', 'upload_files/candidate_tracker/19647993617_lavvv.pdf', NULL, '1', '2025-01-22', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate salary exp its very high and only looking for backend wok not inerst in voice process, so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'CA130', '5151', '1970-01-01', 1, '2025-01-22 04:39:49', 154, '2025-01-22 10:49:08', 0, NULL, 1),
(23718, 'Balaji D', '6', '6383521169', '9791372291', 'Sathyabalaji650@gmail.com', '2002-11-02', 22, '2', '2', 'Dhanasekar N', 'Daily Wages', 15000.00, 1, 15000.00, 21000.00, 'No.157/22c, JN Road,Gandhipuram, Tiruvallur-602001', 'No.157/22c, JN Road,Gandhipuram, Tiruvallur-602001', '2501220003', '1', '2', 'upload_files/candidate_tracker/96573829797_BalajiDResume.pdf', NULL, '1', '2025-01-23', 2, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' candidate was not ok with communication and no idea about sales job and interested in other professions', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-22 04:47:54', 154, '2025-01-23 10:41:35', 0, NULL, 1),
(23719, 'Kishore', '4', '9626636068', '', 'Kishore.muruganantham06@gmail.com', '2002-11-22', 22, '2', '2', 'Muruganantham', 'Driver', 25000.00, 0, 14500.00, 13000.00, 'Orathanadu', 'Orathanadu', '2501220004', '1', '2', 'upload_files/candidate_tracker/59301111434_PDFMaker1737349081071.pdf', NULL, '1', '2025-01-22', 0, '', '3', '59', '2025-02-03', 162000.00, '', '5', '1970-01-01', '1', 'Communication Ok 5050 sustainability doubts not sure delayed joining several times and even shown no interest in voice inbetween he followed and pushed for joining let us try', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-02-03', 1, '2025-01-22 05:05:07', 60, '2025-02-01 06:32:35', 0, NULL, 1),
(23720, '', '0', '9751846283', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501220005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-22 05:09:06', 0, NULL, 0, NULL, 1),
(23721, 'Logesh', '6', '7904293525', '7305138839', 'logeshb895@gmail.com', '2003-01-12', 22, '2', '2', 'Ranganathan', 'Business', 40000.00, 1, 0.00, 20000.00, 'Gingee', 'Mogappair east', '2501220006', '1', '1', 'upload_files/candidate_tracker/72003107851_LogeshR.pdf', NULL, '1', '2025-01-22', 0, '', '3', '59', '2025-01-23', 192000.00, '', '3', '2025-02-05', '1', 'Communication Ok can be trained in our roles and check in training period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '2025-01-23', 1, '2025-01-22 05:16:49', 60, '2025-01-22 07:18:17', 0, NULL, 1),
(23722, 'SURYA', '6', '9080062407', '8015777599', 'suryavinayagam05@gmail.com', '2003-11-09', 21, '2', '2', 'Vinayagam. V', 'Mason', 73000.00, 2, 0.00, 20000.00, 'Villupuran', 'Tharamani', '2501220007', '1', '1', 'upload_files/candidate_tracker/41983592972_Suryaresume1.pdf', NULL, '1', '2025-01-22', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication ok but not iterested i filed work so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2025-01-22 05:33:38', 154, '2025-01-22 11:34:31', 0, NULL, 1),
(23723, 'bharti', '6', '9606442660', '9902988451', 'bharathirhajooli@gmail.com', '2001-10-02', 23, '1', '2', 'sharanappa', 'ontract', 20000.00, 3, 18000.00, 20000.00, 'bilekahalli banglore', 'billekahalli banglore', '2501220008', '', '2', 'upload_files/candidate_tracker/67177939187_bharathiResume.pdf', NULL, '1', '2025-01-22', 1, 'C99077', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication not that much expectation salary to high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-01-22 05:46:05', 154, '2025-01-28 01:01:32', 0, NULL, 1),
(23724, 'MOHAMED FAZIL M T', '11', '7449131821', '', 'mohamedfaziltaj@gmail.com', '2002-06-10', 22, '6', '2', 'Mohamed Tajudeen M U', 'Painter', 12000.00, 2, 0.00, 5000.00, 'Sithalapakkam', 'Sithalapakkam', '2501220009', '', '1', 'upload_files/candidate_tracker/88069048574_MohamedFazilMT.pdf', NULL, '1', '2025-01-22', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-22 05:56:41', 154, '2025-01-22 12:23:51', 0, NULL, 1),
(23725, 'Palani Selvaraj', '11', '7338766399', '', 'selvarajpalani260@gmail.com', '2002-11-29', 22, '6', '2', 'Selvaraj M', 'Scooter Mechanic', 9000.00, 1, 0.00, 5000.00, 'New Perungalathur', 'New Perungalathur', '2501220010', '', '1', 'upload_files/candidate_tracker/83644659898_Resume06012025044315pm.pdf', NULL, '1', '2025-01-22', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Worked for 2 weeks but quit at the time of internship', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-22 05:56:59', 154, '2025-01-22 12:23:40', 0, NULL, 1),
(23726, 'Harini M', '11', '8668049232', '', 'harinim2810@gmail.com', '2002-10-28', 22, '3', '2', 'MuraliKrishnan D', 'Auto Driver', 72000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2501220011', '', '1', 'upload_files/candidate_tracker/89225129766_DOC20240930WA0007..pdf', NULL, '1', '2025-01-22', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-22 06:22:05', 154, '2025-01-22 12:23:28', 0, NULL, 1),
(23727, 'Akash T', '6', '8946055097', '', 'akashash3001@gmail.com', '2002-01-30', 22, '2', '2', 'Tamilselvan', 'Fresher', 40000.00, 1, 0.00, 15000.00, '15000', 'Chennai', '2501220012', '50', '1', 'upload_files/candidate_tracker/64439604721_akashresume1701162562041Akash.pdf', NULL, '1', '2025-01-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And performance is good.but little bit voice correlation problem 5050 will check with him in the training Period.as discussed CTC 1.68LAP.Kindly check with him', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-22 06:42:05', 153, '2025-01-29 02:48:35', 0, NULL, 1),
(23728, 'Surendhar B', '6', '9176877304', '9363977901', 'surendharsuren81199@gmail.com', '2003-11-07', 21, '2', '2', 'Kumudha.B', 'Working', 30000.00, 2, 15000.00, 20000.00, 'Chennai ayanavaram', 'Chennai ayanavaram', '2501220013', '45', '2', 'upload_files/candidate_tracker/33993540932_surendharresume2.pdf', NULL, '1', '2025-01-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-01-22 07:13:36', 154, '2025-01-22 04:03:09', 0, NULL, 1),
(23729, 'SANTHOSH s', '4', '9150839599', '', 'santhoshsenthil378@gmail.com', '2002-05-06', 22, '2', '2', 'K Senthil Kumar', 'Business', 15000.00, 1, 0.00, 15000.00, 'Trichy', 'Che', '2501220014', '50', '1', 'upload_files/candidate_tracker/52353179792_SanthoshResume.pdf1.pdf', NULL, '1', '2025-01-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-22 08:09:12', 1, '2025-01-22 08:13:45', 0, NULL, 1),
(23730, 'R. Swetha', '6', '7904980811', '9940424547', 'swetharamesh1410@gmail.com', '2003-12-10', 21, '2', '2', 'Ramesh', 'Auto driver', 20000.00, 1, 0.00, 16000.00, 'No 56/16 , chetty street, kaladipet', 'No 33, Rmv nagar, tiruvottiyur, chennai', '2501220015', '50', '1', 'upload_files/candidate_tracker/57585421817_2ceceaa2585c441d89fb7bc1c5c2c56e.pdf', NULL, '1', '2025-01-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And performance is Good.This Her Voice is Bold Her Confident Level is also good.bu5 will Check With her in the training Period.as discussed CTC 1.68LPA', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-22 09:08:02', 154, '2025-01-22 02:53:20', 0, NULL, 1),
(23731, 'AMREEN NAZ A', '11', '7550181576', '', 'amreennaz71@gmail.com', '2002-04-27', 22, '3', '2', 'Akbar basha A', 'Retired', 200000.00, 2, 0.00, 10000.00, 'Anthony Street Royappettah chennai 14', 'Anthony Street Royappettah chennai 14', '2501220016', '', '1', 'upload_files/candidate_tracker/12190277102_RESUMEAmreenNaz11.pdf', NULL, '1', '2025-01-22', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-22 10:03:43', 154, '2025-01-22 03:49:43', 0, NULL, 1),
(23732, '', '0', '8925714755', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501220017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-22 10:42:25', 0, NULL, 0, NULL, 1),
(23733, 'PRADEEP R', '4', '8778319692', '', 'pradeepravichandran8777@gmail.com', '2003-11-25', 21, '2', '2', 'Lalitha. R', 'None', 60000.00, 1, 0.00, 18000.00, 'Pazhamarneri, Thanjavur', 'Thanjavur', '2501220018', '1', '2', 'upload_files/candidate_tracker/41900892919_Resume.pdf', NULL, '1', '2025-01-23', 0, '', '3', '59', '2025-02-03', 162000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can give a try and check in training let us try', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-02-03', 1, '2025-01-22 12:16:06', 60, '2025-02-01 06:33:45', 0, NULL, 1),
(23734, 'N A Reshma', '5', '9600087410', '6374517606', 'Nandhipogureshma@gmail.com', '2000-07-12', 24, '3', '2', 'Asirvadam', 'Private employee', 15000.00, 1, 25000.00, 30000.00, 'Kilpauk', 'Kilpauk', '2501220019', '', '2', 'upload_files/candidate_tracker/7514234003_RESHMARESUME.pdf', NULL, '1', '2025-01-22', 0, '', '3', '59', '2025-02-03', 240000.00, '', '3', '2025-02-03', '2', 'Communication Ok Earlier attended and not joined appeared again after years and selectetd let us try through training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '5', '1', '', '', '', '', '55650', '55560', '2025-02-03', 1, '2025-01-22 12:32:50', 60, '2025-02-01 06:37:01', 0, NULL, 1),
(23735, 'Bhuvaneshwari', '4', '9751180526', '', 'bhuvanak1904@gmail.com', '2003-01-04', 22, '2', '2', 'Kathiresan', 'Farmer', 8000.00, 1, 0.00, 2.50, 'Ramanathapuram', 'Chennai', '2501220020', '50', '1', 'upload_files/candidate_tracker/37270947680_BhuvanaDevopsengineer.pdf', NULL, '1', '2025-01-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-22 12:46:33', 1, '2025-01-22 12:56:54', 0, NULL, 1),
(23736, 'Karthikeyan M', '13', '7448776123', '8248523070', 'karthim6123@gmail.com', '2002-10-15', 22, '2', '2', 'Meganathan G', 'Weaver', 13000.00, 1, 0.00, 20000.00, 'Panapakkam, Ranipet 631051', 'Saidapet ,Chennai', '2501220021', '50', '1', 'upload_files/candidate_tracker/77405835677_Karthiresume.pdf', NULL, '1', '2025-01-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-22 04:08:52', 1, '2025-01-22 04:13:11', 0, NULL, 1),
(23737, 'Arun Kumar P', '6', '9952502244', '8248512744', 'arunkumarprabhu2003@gmail.com', '2003-12-25', 21, '2', '2', 'Prabhakaran M', 'Shop owner', 80000.00, 2, 0.00, 20000.00, '55 i/2 naidu south Street Indra Nagar', '3/489 guru Lakshmi mugappair', '2501230001', '50', '1', 'upload_files/candidate_tracker/2022978434_ArunResume1.pdf', NULL, '1', '2025-01-23', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication skill and voice good , but he need weekly 2 days leave for studys so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-01-23 04:18:39', 154, '2025-01-23 10:50:11', 0, NULL, 1),
(23738, 'Mohammed Khidhr Chittane', '4', '9092603606', '', 'mohammedkhidhrc@gmail.com', '2003-10-08', 21, '2', '2', 'J RIZWANA', 'House wife', 10000.00, 7, 0.00, 16000.00, 'Chennai', 'Chennai', '2501230002', '45', '1', 'upload_files/candidate_tracker/62323051897_resume9.pdf', NULL, '1', '2025-01-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'not in formals', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-23 05:21:11', 104, '2025-01-24 11:49:30', 0, NULL, 1),
(23739, 'Deepashalini Vadivalagan', '4', '9715995043', '9443098534', 'deepashaliniphy1@gmail.com', '2003-03-03', 21, '2', '2', 'Vadivalagan', 'Cooli', 6000.00, 1, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2501230003', '1', '1', 'upload_files/candidate_tracker/76147447635_Deepa.pdf', NULL, '1', '2025-01-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit have no clear voice and not suite for team and telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-23 05:28:53', 154, '2025-01-23 11:14:12', 0, NULL, 1),
(23740, 'Christian A', '11', '8825926248', '', 'a82385785@gmail.com', '2002-10-25', 22, '3', '2', 'Ambethkar p', 'Co Operative bank manager rtd', 75000.00, 1, 0.00, 5000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2501230004', '', '1', 'upload_files/candidate_tracker/59894737424_Resume.pdf', NULL, '1', '2025-01-23', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-23 05:34:19', 154, '2025-01-23 12:14:49', 0, NULL, 1),
(23741, 'Sathish s', '6', '9962431416', '8939287255', 'Sathish0622@gmail.com', '2002-06-06', 22, '2', '2', 'Selvaraj', 'Cooli', 20000.00, 2, 0.00, 18000.00, 'Tondayarpet', 'Tondayarpet', '2501230005', '50', '2', 'upload_files/candidate_tracker/71081798139_sathish.pdf', NULL, '1', '2025-02-04', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate commuication not good and most fales commitment , so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-01-23 05:38:12', 154, '2025-02-04 07:04:54', 0, NULL, 1),
(23742, 'Valarmathi settu', '6', '9566104440', '', 'settumalar123@gmail.com', '2001-06-10', 23, '2', '2', 'Anuradha S', 'House wife', 15000.00, 1, 0.00, 20000.00, 'T nagar', 't.nagar', '2501230006', '50', '1', 'upload_files/candidate_tracker/81730182863_DOC20241115WA0005.2024resumeValarmathiS.docx', NULL, '1', '2025-01-23', 0, '', '3', '59', '2025-01-27', 174000.00, '', '3', '2025-06-27', '2', 'Communication Ok Can be trained in our roles and need to check in training period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2025-01-27', 1, '2025-01-23 05:51:04', 60, '2025-01-27 10:01:05', 0, NULL, 1),
(23743, 'Saffri S', '4', '7094577938', '6380453877', 'rosariosaffri@gmail.com', '2000-06-23', 24, '2', '2', 'Suresh', 'Seaman', 30000.00, 1, 200000.00, 350000.00, 'Chennai', 'Pallavaram', '2501230007', '50', '2', 'upload_files/candidate_tracker/50256497686_RESUMEnew.pdf.pdf', NULL, '1', '2025-01-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-23 06:04:38', 1, '2025-01-23 06:10:27', 0, NULL, 1),
(23744, 'GOVINDHARAJAN V', '11', '9344407145', '8610078762', 'rajgovind8584@gmail.com', '2002-10-19', 22, '6', '2', 'Vinayagamoorthy g', 'Finance', 25000.00, 1, 0.00, 6000.00, 'No 6/10 Jothi Nagar 2nd Street, Ekkattuthangal', 'No 6/10 Jothi Nagar 2nd Street, Ekkattuthangal', '2501230008', '', '1', 'upload_files/candidate_tracker/99909653570_RESUME.pdf', NULL, '1', '2025-01-23', 0, '', '2', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Currently doing internship', '6', '1', '', '1', '8', '', '2', '2025-04-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-23 06:08:54', 154, '2025-01-23 12:14:40', 0, NULL, 1),
(23745, 'S.keerthika subramani', '6', '8524013181', '9789237294', 'keerthikasubramani31@gmail.com', '2000-07-30', 24, '2', '1', 'K.Subramani', 'Finance', 18000.00, 0, 0.00, 16000.00, 'Perambur, Chennai', 'Chennai', '2501230009', '50', '1', 'upload_files/candidate_tracker/90108687524_1706116141346ResumeKeerthika.pdf', NULL, '1', '2025-01-23', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she wants 6PM Log Out not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-23 06:09:37', 154, '2025-01-23 12:14:29', 0, NULL, 1),
(23746, 'JAYANTHI', '5', '9042440997', '', 'jayasri1023@gmail.com', '2001-07-23', 23, '2', '1', 'Mano', 'Banking', 30000.00, 1, 300000.00, 400000.00, 'Chennai', 'Chennai', '2501230010', '50', '2', 'upload_files/candidate_tracker/89937458315_JayanthiBCA3.pdf', NULL, '1', '2025-02-28', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-01-23 06:15:56', 154, '2025-02-28 12:30:58', 0, NULL, 1),
(23747, 'Abinaya U', '7', '9962614637', '', 'abinayaudayakumar18@gmail.com', '2001-08-13', 23, '1', '2', 'P. Udayakumar', 'Business', 75000.00, 1, 173000.00, 300000.00, '97/56 Gangaiamman Kovil Street Vadapalani Chennai', '97/56 Gangaiamman Kovil Street Vadapalani Chennai', '2501230011', '', '2', 'upload_files/candidate_tracker/55049521219_CVABINAYAU.pdf', NULL, '1', '2025-01-23', 0, 'Nil', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-01-23 06:32:58', 154, '2025-01-23 01:12:38', 0, NULL, 1),
(23748, 'A. Deenadhayalan', '4', '6385833469', '', 'dhayalandeena100@gmail.com', '2002-01-22', 23, '2', '2', 'Aryan raj', 'Farmers', 30000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2501230012', '1', '1', 'upload_files/candidate_tracker/14746354156_A.Deenadhayalan.pdf', NULL, '1', '2025-01-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit for telesales and telecalling,looking for temporary job only', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-23 07:06:23', 154, '2025-01-23 12:54:12', 0, NULL, 1),
(23749, 'Surjithkumar S', '11', '9080228355', '9150983872', 'surjithkumar345@gmail.com', '2003-04-30', 21, '3', '2', 'Sankar', 'Farmer', 72000.00, 1, 0.00, 20000.00, 'Vellore', 'Velachery', '2501230013', '', '1', 'upload_files/candidate_tracker/13058957793_Surjithkumar..pdf', NULL, '1', '2025-01-23', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-23 07:38:26', 154, '2025-01-23 01:27:09', 0, NULL, 1),
(23750, 'vijayaraghul gajendran', '6', '9025448688', '', 'vijayarghul555@gmail.com', '2002-08-31', 22, '2', '2', 'gajendran', 'finance', 200000.00, 1, 0.00, 25000.00, 'nagapattinam', 'porur', '2501230014', '50', '1', 'upload_files/candidate_tracker/58487247677_vijayaraghulGcv..2.pdf', NULL, '1', '2025-01-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate unfit for sales, field work not interested,reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-01-23 08:00:30', 154, '2025-01-23 02:37:34', 0, NULL, 1),
(23751, 'Naveen Kumar vel', '4', '9940932537', '6382420032', 'NaveenKumarnandhu2212@gmail.com', '1999-12-19', 25, '2', '2', 'Vel', 'Catering', 30000.00, 1, 18000.00, 25000.00, 'Tamilnadu', 'Bangalore', '2501230015', '57', '2', 'upload_files/candidate_tracker/36506593645_naveenproper.pdf', NULL, '1', '2025-01-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-23 09:32:23', 1, '2025-01-23 09:48:34', 0, NULL, 1),
(23752, '', '0', '6382420032', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501230016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-23 09:41:16', 0, NULL, 0, NULL, 1),
(23753, 'Jack Royalson H', '4', '7826068987', '', 'jackroyalson1@gmail.com', '2002-04-02', 22, '2', '2', 'Helstone', 'Pastor', 90000.00, 1, 0.00, 25000.00, 'Pozhichalur', 'Pozhichalur', '2501230017', '50', '1', 'upload_files/candidate_tracker/60459137557_JACKROYALSONH202501231155560000.pdf', NULL, '1', '2025-01-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-23 11:15:09', 1, '2025-01-23 11:18:48', 0, NULL, 1),
(23754, 'Vasanthakumar. G', '6', '9710414882', '', 'Vasavas1699@gmail.com', '1999-05-16', 25, '2', '2', 'Malathi .', 'Tele caller', 17500.00, 1, 19500.00, 19000.00, 'Perambur', 'Perambur', '2501230018', '1', '2', 'upload_files/candidate_tracker/25418907214_Resume.pdf', NULL, '1', '2025-01-24', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was not good at communication and he was already had interest in other  prossions', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-23 11:26:11', 104, '2025-01-24 12:24:15', 0, NULL, 1),
(23755, 'SENTHILNATHAN', '6', '9150840168', '9791316350', 'senthilnathan3685@gmail.com', '2004-01-28', 20, '2', '2', 'Saravanan', 'Building contractor', 20000.00, 2, 126000.00, 216000.00, '11/A, MGR Nager,8th Cross, Kallakurichi', '11/A,MGR Nagar,8th Cross, Kallakurichi', '2501230019', '1', '2', 'upload_files/candidate_tracker/3769815575_SENTHILNATHANCV.docx', NULL, '1', '2025-01-24', 3, '', '3', '59', '2025-02-03', 192000.00, '', '1', '1970-01-01', '2', 'Communication Ok Fresher can be trained in our roles need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '2025-02-03', 1, '2025-01-23 01:04:29', 60, '2025-02-01 06:35:10', 0, NULL, 1),
(23756, 'Dhanisha', '6', '9940650783', '7397784216', 'dhanishat59@gmail.com', '2002-05-09', 22, '2', '2', 'Thameen basha', 'Vu Tv service', 15000.00, 2, 15000.00, 17000.00, 'Chennai', 'Chennai', '2501240001', '1', '2', 'upload_files/candidate_tracker/12178445603_DhanishaResume1.pdf', NULL, '1', '2025-01-24', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate coomunication is well But performance is not good ,also there is gap between continous  answering.not handle pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-01-24 04:16:29', 153, '2025-01-24 02:41:29', 0, NULL, 1),
(23757, 'Thaheera nihaal', '5', '7200159005', '9150171356', 'tahira.akber1707@gmail.com', '1999-07-17', 25, '1', '2', 'Abdul akbar', 'RWD supplier', 50000.00, 3, 30000.00, 30000.00, 'Chennai', 'Chennai', '2501240002', '', '2', 'upload_files/candidate_tracker/49757804982_ImageToPDF2101202518.42.26ruk.pdf', NULL, '1', '2025-01-24', 0, '55870', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-01-24 04:23:25', 104, '2025-01-24 11:50:14', 0, NULL, 1),
(23758, 'B. Ranjith', '6', '8939587904', '', 'branjith2930@gmail.com', '2001-05-28', 23, '2', '2', 'Babu T', 'Painter', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2501240003', '50', '1', 'upload_files/candidate_tracker/46686568503_Ranjith11zon.pdf', NULL, '1', '2025-01-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-24 04:51:34', 104, '2025-01-24 11:44:31', 0, NULL, 1),
(23759, 'Madhumitha R', '11', '9361443498', '8056373649', 'madhu2002ra@gmail.com', '2002-07-13', 22, '6', '2', 'Ramesh P', 'Business', 100000.00, 1, 0.00, 20000.00, 'THENI', 'THENI', '2501240004', '', '1', 'upload_files/candidate_tracker/422754663_SISTMBA43410119MADHUMITHAR.pdf', NULL, '1', '2025-01-24', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shortlisted but not joined', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-24 05:24:55', 154, '2025-01-24 04:05:47', 0, NULL, 1),
(23760, 'Nandhini srinivasan', '6', '8939411977', '', 'snandhini261297@gmail.com', '1997-12-26', 27, '2', '1', 'Rajkumar', 'Own business', 100000.00, 1, 0.00, 25000.00, 'Ayanavaram', 'Ayanavaram, chennai', '2501240005', '50', '1', 'upload_files/candidate_tracker/41622299549_NandhiniCV.pdf', NULL, '2', '2025-01-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-01-24 05:30:54', 154, '2025-01-24 03:59:07', 0, NULL, 1),
(23761, 'gopinath s', '4', '6380019217', '', 'emogopi3@gmail.com', '2002-06-28', 22, '2', '2', 'suresh', 'worker in medimix company', 20000.00, 1, 0.00, 18000.00, 'madhavaram', 'madhavaram', '2501240006', '1', '1', 'upload_files/candidate_tracker/73764519451_GOPINATHS2.docx', NULL, '2', '2025-01-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-01-24 05:54:21', 1, '2025-01-24 06:00:34', 0, NULL, 1),
(23762, '', '0', '7094180591', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501240007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-24 07:39:41', 0, NULL, 0, NULL, 1),
(23763, 'Vigneshwari', '4', '8667820800', '7094180591', 'vidhya22101999@gmail.com', '1999-07-22', 25, '2', '1', 'Vivek', 'Executive for eye hospital', 30000.00, 1, 21000.00, 21000.00, 'Karaikudi', 'Choolaimedu Chennai', '2501240008', '1', '2', 'upload_files/candidate_tracker/93163056049_vickyresume.docx', NULL, '1', '2025-01-24', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-01-24 07:52:35', 154, '2025-01-24 03:59:42', 0, NULL, 1),
(23764, 'Bharathi', '26', '6369945147', '9941214686', 'bharathiloganathan007@gmail.com', '2010-01-24', 0, '1', '2', 'Loganathan', 'Driver', 20000.00, 1, 14000.00, 18.00, 'Vyasarpadi', 'Parris', '2501240009', '', '2', 'upload_files/candidate_tracker/69884082743_Untitled1.docx', NULL, '1', '2025-01-24', 0, 'Creative hands', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-24 09:15:30', 1, '2025-01-24 09:21:41', 0, NULL, 1),
(23765, 'aladi akash', '6', '9345318241', '9360373796', 'aladiakash2002@gmail.com', '2002-10-28', 22, '2', '2', 'no', 'no', 50000.00, 1, 0.00, 15000.00, 'madurai', 'chennai', '2501240010', '50', '1', 'upload_files/candidate_tracker/72127922380_AshResume2.pdf', NULL, '1', '2025-01-25', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-24 10:21:27', 154, '2025-01-25 02:41:41', 0, NULL, 1),
(23766, 'Ayisha begum', '4', '9962030571', '', 'ayishafathima2030@gmail.com', '2000-05-01', 24, '2', '2', 'fathima', 'nil', 1.00, 4, 25000.00, 28000.00, 'chennai', 'chennai', '2501240011', '50', '2', 'upload_files/candidate_tracker/80253485510_CV2025010501245972.pdf', NULL, '1', '2025-01-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-24 10:58:53', 1, '2025-01-24 11:24:47', 0, NULL, 1),
(23767, 'Ashok R', '6', '7200129592', '6369665798', 'raviashok937@gmail.com', '2004-10-29', 20, '2', '2', 'Parent', 'Tailor ( father)', 9000.00, 1, 0.00, 17000.00, 'Pulianthope', 'Pulianthope', '2501250001', '50', '1', 'upload_files/candidate_tracker/53169150658_CRS20241.pdf', NULL, '1', '2025-01-25', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE COMMUNICATION AND PERFORMACNE IS NOT GOOD ALSO SUSTAINABLE IS DOUBT', '5', '2', '', '4', '6', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-25 03:42:43', 154, '2025-01-25 12:30:11', 0, NULL, 1),
(23768, 'Ibrahim I', '6', '8608302165', '', 'muthahar255@gmail.com', '2002-01-15', 23, '2', '2', 'Iqbal', 'Labour', 15000.00, 3, 21000.00, 25000.00, 'Gudiyatham', 'Chennai', '2501250002', '50', '2', 'upload_files/candidate_tracker/16528337696_CV202501251103477.pdf', NULL, '1', '2025-01-25', 2, '', '3', '59', '2025-01-28', 228000.00, '', '3', '2025-01-28', '2', 'Communication Ok 5050 Candidate Sustainability doubts in this profile fresher to insurance domain need to check in 7 days training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '2025-01-28', 1, '2025-01-25 04:41:28', 60, '2025-01-28 10:01:32', 0, NULL, 1),
(23769, 'V Ruban Kumar', '6', '7358539260', '', 'contactrubankumar@gmail.com', '2003-06-11', 21, '2', '2', 'Sajitha V', 'Daily wages', 120000.00, 0, 0.00, 15000.00, 'No.24, Sindhu street Surya nagar Minjur 601203', 'No.24,Sindhu street Surya nagar Minjur 601203', '2501250003', '50', '1', 'upload_files/candidate_tracker/90471095402_RubanKumarV.pdf', NULL, '1', '2025-01-25', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not active and he was not shown any interest regarding  to this profession', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-25 04:48:04', 154, '2025-01-25 10:36:11', 0, NULL, 1),
(23770, 'Deepak Ram r', '6', '9940253219', '', 'deepakxram@outlook.com', '2001-12-22', 23, '2', '2', 'ramesh', 'business', 30000.00, 1, 14000.00, 18000.00, 'chennai', 'Chennai', '2501250004', '50', '2', 'upload_files/candidate_tracker/29170534271_DeepakResume1.pdf', NULL, '1', '2025-01-25', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales Attitude was not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-25 05:12:49', 154, '2025-01-25 11:16:04', 0, NULL, 1),
(23771, 'Sangeetha C', '11', '9677221132', '6369235373', 'sangee27oct@gmail.com', '2002-10-27', 22, '6', '2', 'Chandran', 'Business', 25000.00, 2, 0.00, 8000.00, 'Chennai', 'Chennai', '2501250005', '', '1', 'upload_files/candidate_tracker/40219939232_RESUMEHR.pdf', NULL, '1', '2025-01-25', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-25 06:20:09', 154, '2025-01-25 12:14:00', 0, NULL, 1),
(23772, 'Harikkrishnan', '6', '6379415343', '', 'harikkrishnan66066@gmail.com', '2000-08-26', 24, '2', '2', 'Balaraman', 'Farmer', 15000.00, 5, 0.00, 18500.00, 'Periyapalayam', 'Periyapalayam', '2501250006', '1', '1', 'upload_files/candidate_tracker/85530488564_HarikkrishResume1.pdf', NULL, '1', '2025-01-25', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication was not  clear and not sure about his job stability and not ok with salary\ngood and ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-25 08:10:12', 154, '2025-01-25 02:48:38', 0, NULL, 1),
(23773, '', '0', '7200593884', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501250007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-25 10:42:03', 0, NULL, 0, NULL, 1),
(23774, 'Rohini', '6', '9043435548', '6379295110', 'rohiniramya19@gmail.com', '2003-12-19', 21, '2', '2', 'Muralidharan', 'Agriculture', 300000.00, 1, 15000.00, 180000.00, 'Walajabad, main road kancheepuram', 'No 29 narayana swamy street pallavaram', '2501260001', '50', '2', 'upload_files/candidate_tracker/52978372676_RohiniResume.pdf', NULL, '1', '2025-02-03', 15, '', '3', '59', '2025-02-13', 186000.00, '', NULL, '2025-09-20', '2', 'Communication Ok Fresher for our roles Can give a try and check in training period', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '2025-02-13', 1, '2025-01-26 01:24:57', 60, '2025-02-12 07:27:05', 0, NULL, 1),
(23775, 'SANJAY SRINIVASAN', '4', '7339654044', '', 'ss2785548@gmail.com', '2001-11-26', 23, '2', '2', 'SRINIVASAN', 'Tailor', 18000.00, 1, 11000.00, 18000.00, '95 /gapanthi nagar East street mebalam Thanjavur', '95/ Ganapathi nagar East street mebalam Thanjavur', '2501270001', '1', '2', 'upload_files/candidate_tracker/4947241854_Sanjaysrinivasan4.pdf', NULL, '1', '2025-01-27', 0, '', '3', '59', '2025-02-04', 162000.00, '', '1', '1970-01-01', '1', 'Communication Ok  Can give a try and check in training period', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-02-04', 1, '2025-01-27 04:03:40', 60, '2025-02-03 07:28:06', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23776, 'Jeyasurya K', '13', '7871495333', '9025117073', 'jeyasurya11052002@gmail.com', '2002-05-11', 22, '2', '2', 'kumar S', 'Collie', 10000.00, 1, 0.00, 20000.00, 'Theni', 'Chennai', '2501270002', '27', '1', 'upload_files/candidate_tracker/12404695791_JeyasuryaFullStackDeveloper.pdf', NULL, '1', '2025-01-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-27 04:03:49', 153, '2025-01-27 04:32:34', 0, NULL, 1),
(23777, 'Jothi prakasam w', '6', '7358621364', '7305951727', 'Jothiprakasam09@gmail.com', '2002-09-17', 22, '2', '2', 'Williams', 'Field exicutive', 120000.00, 1, 0.00, 20000.00, 'Chenna', 'Perambur', '2501270003', '50', '1', 'upload_files/candidate_tracker/67405478647_SharejothiPrakasamresume.pdf', NULL, '1', '2025-01-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was good at communication and also interested and have bike we shall provide 15-16k as salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-27 04:07:40', 153, '2025-01-27 10:17:38', 0, NULL, 1),
(23778, 'Renuka S', '31', '8438828405', '', 'renukasekar2222@gmail.com', '2003-12-22', 21, '3', '2', 'Sudha S', 'Fresher', 40000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2501270004', '', '1', 'upload_files/candidate_tracker/94161164741_Renukasekar.pdf', NULL, '1', '2025-01-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-27 04:14:08', 1, '2025-01-27 04:19:44', 0, NULL, 1),
(23779, 'Aarthi.V', '4', '7358523166', '', 'aarthiaarthi20668@gmail.com', '2004-12-24', 20, '2', '2', 'E.Veerabathiran -V.Rani', 'College student', 50000.00, 1, 0.00, 15.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2501270005', '27', '1', 'upload_files/candidate_tracker/86727310945_AdobeScan27Jan2025.pdf', NULL, '1', '2025-01-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable', '1', '2', '', '1', '8', '', '2', '2025-08-21', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 04:29:50', 153, '2025-01-27 04:13:00', 0, NULL, 1),
(23780, 'Thaslima wajid Hussain', '6', '6383487156', '', 'thaslima050304@gmail.com', '2004-03-05', 20, '2', '2', 'Wajid Hussain', 'Tailor', 8000.00, 1, 0.00, 15000.00, 'Alandur metro', 'Alandur', '2501270006', '27', '1', 'upload_files/candidate_tracker/45992699172_thaslimaresume.pdf', NULL, '1', '2025-05-07', 0, '', '3', '59', '2025-05-12', 168000.00, '', '3', '2025-05-13', '2', 'Communication Ok Need to check in training and confirm let us try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55732', '5151', '2025-05-12', 1, '2025-01-27 04:29:56', 60, '2025-05-10 05:53:58', 0, NULL, 1),
(23781, 'Thamarai selvi S', '4', '7358223142', '9025358363', 's.thamarai6305selvi@gmail.com', '2005-03-06', 19, '2', '2', 'Suyambudurai D - Dhanalakshmi S', 'Coolie', 12000.00, 1, 0.00, 15000.00, 'Thiruvottriyur chennai-19', 'No.44 sp Kovil 1st St., tvt chennai-19', '2501270007', '27', '1', 'upload_files/candidate_tracker/55233397291_THAMARAISELVIRESUME.pdf', NULL, '1', '2025-01-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not be suitable for sales', '1', '2', '', '1', '8', '', '2', '2025-08-20', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 04:30:12', 153, '2025-01-27 04:14:14', 0, NULL, 1),
(23782, 'Sushanthika R', '4', '7305642305', '9840507567', 'sushanthikaraju@gmail.com', '2005-04-10', 19, '2', '2', 'Raju A', 'Timber merchant', 96000.00, 1, 0.00, 15000.00, 'Poonamallee, Kumananchavadi.', 'Poonamallee, Kumananchavadi', '2501270008', '27', '1', 'upload_files/candidate_tracker/50916419637_SUSHANTHIKA.RRESUME.docx', NULL, '1', '2025-01-27', 0, '', '2', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Currently pursuing degree will check if comes back', '1', '2', '', '1', '8', '', '2', '2025-05-02', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 04:30:20', 153, '2025-01-27 04:20:50', 0, NULL, 1),
(23783, 'Sumaiya Fathima H', '4', '9094164927', '', 'hsumaiyafathima2135@gmail.com', '2005-03-21', 19, '2', '2', 'M.A.HAKEEM', 'Tailor', 80000.00, 1, 0.00, 15.00, 'Triplicane,Chennai-05', 'Triplicane, Chennai-05', '2501270009', '27', '1', 'upload_files/candidate_tracker/79308884045_MYRESUME2.docx', NULL, '1', '2025-01-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Wil not be suitable', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 04:31:40', 153, '2025-01-27 04:20:22', 0, NULL, 1),
(23784, 'Kousalya M', '2', '9367150337', '9884455889', 'koushikkousi1997@gmail.com', '1997-11-19', 27, '2', '1', 'Karthikeyan', 'Water can delivery driver', 20000.00, 1, 0.00, 10000.00, 'D.no.86 sannathi street Aathurai p/vtvamali .tk.td', 'D.no.38 9 th cross street mangala Nagar porur', '2501270010', '27', '1', 'upload_files/candidate_tracker/74080658164_KOUSALYARESUME111.pdf', NULL, '1', '2025-01-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-27 04:39:41', 153, '2025-01-27 04:34:10', 0, NULL, 1),
(23785, 'R L SHRUTHI', '4', '7812810023', '', 'shivasarvesh27@gmail.com', '2005-03-27', 19, '2', '2', 'G RAJESH', 'DEBT COLLECTOR', 15000.00, 0, 0.00, 15000.00, 'G18, TNUHDB FLATS, THAILAVARAM, GUDUVANCHERY', 'G18, TNUHDB FLATS, THAILAVARAM , GUDUVANCHERY', '2501270011', '27', '1', 'upload_files/candidate_tracker/5748122186_RESUME25.pdf', NULL, '1', '2025-01-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Gommunication not good', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 04:59:01', 153, '2025-01-27 04:19:10', 0, NULL, 1),
(23786, 'Nandita', '4', '9345932060', '9840716980', 's.nandita2403@gmail.com', '2003-11-24', 21, '2', '2', 'K.Manonmani', 'Housewife', 2500.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2501270012', '27', '1', 'upload_files/candidate_tracker/20966611146_Nandita.S.pdf', NULL, '1', '2025-01-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not sustain in our company', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 04:59:35', 153, '2025-01-27 04:14:37', 0, NULL, 1),
(23787, 'Kousalya M', '2', '9361750337', '9884455889', 'koushikkousi1997@gmail.com', '1997-11-19', 0, '3', '1', 'Karthikeyan', 'Water can delivery driver', 20000.00, 1, 0.00, 10000.00, 'D.no.86 sannathi street Aathurai p/vtvamali .tk.td', 'D.no.38 9 th cross street mangala Nagar porur', '2501270013', '', '1', 'upload_files/candidate_tracker/6883784083_KOUSALYARESUME111.pdf', NULL, '1', '2025-01-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-27 05:04:16', 1, '2025-01-27 05:05:35', 0, NULL, 1),
(23788, 'Hemalatha S', '4', '9677230312', '6380301982', 'hemalathahemu008@gmail.com', '2005-02-22', 19, '2', '2', 'Srinivasan N', 'Clerk', 17000.00, 1, 0.00, 15000.00, 'Thiruvottiyur Chennai-19', 'Thiruvottiyur Chennai-19', '2501270014', '27', '1', 'upload_files/candidate_tracker/36907868644_Document1.docx', NULL, '1', '2025-01-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Tottaly fresher will not sustain for sales', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 05:06:05', 153, '2025-01-27 03:53:02', 0, NULL, 1),
(23789, 'Jeevitha', '4', '8248718007', '7904760244', 'jeevithalg11125@gmail.com', '2005-01-11', 20, '2', '2', 'Loganathan . S', 'Welder', 12000.00, 1, 0.00, 15000.00, 'Thiruvottiyur ,chennai-19', 'Thiruvottiyur, chennai-19', '2501270015', '27', '1', 'upload_files/candidate_tracker/44731923000_JeeviCV.pdf', NULL, '1', '2025-01-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not be suitable for sales', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 05:06:22', 153, '2025-01-27 04:17:23', 0, NULL, 1),
(23790, 'Amsavalli.M', '4', '8939769905', '9962932566', 'mamsavalli2005@gmail.com', '2005-09-09', 19, '2', '2', 'M.Tamilselvi', 'Housekeeping', 10000.00, 2, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2501270016', '27', '1', 'upload_files/candidate_tracker/72988931657_Amsavalli.M2.pdf', NULL, '1', '2025-01-27', 0, '', '2', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Currently pursuing degree will check if comes back', '1', '1', '', '1', '8', '', '2', '2025-05-02', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 05:06:25', 153, '2025-01-27 04:17:51', 0, NULL, 1),
(23791, 'Nithyasri Shenbagum S', '4', '8778520830', '8056287124', '23nithyasri@gmail.com', '2005-05-23', 19, '2', '2', 'S. SRINIVAS', 'Medical shop worker', 13000.00, 1, 0.00, 15000.00, 'Velachery', 'Velachery', '2501270017', '27', '1', 'upload_files/candidate_tracker/76702189587_nithyasriresume.pdf', NULL, '1', '2025-01-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Wiull not be suitable for sales', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 05:06:30', 153, '2025-01-27 04:18:26', 0, NULL, 1),
(23792, 'KALIDOSS p', '4', '9150375242', '', 'Kalidossnandhu2003@gmail.com', '2003-03-13', 21, '2', '2', 'Pandian', 'Farmers', 100000.00, 3, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2501270018', '1', '1', 'upload_files/candidate_tracker/78060964849_Kalidoss.resume.docx', NULL, '1', '2025-01-28', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite for team...choosing data entry', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-27 05:08:57', 153, '2025-01-28 11:11:08', 0, NULL, 1),
(23793, 'Swetha s', '6', '7305733026', '8608262524', 'swethasubi09@gmail.com', '2001-08-09', 23, '1', '1', 'Boopalan', 'Surgical company', 16000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2501270019', '', '1', 'upload_files/candidate_tracker/8792052520_Swetha.S.Doc.pdf', NULL, '1', '2025-01-27', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'noon voice needed', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-27 05:22:45', 153, '2025-01-27 11:35:16', 0, NULL, 1),
(23794, 'Anusree R', '11', '9600498403', '9345502735', 'anusree1301@gmail.com', '2003-01-13', 22, '6', '2', 'Ravi. K', 'Student', 50000.00, 1, 0.00, 5000.00, 'No.1,Vellammal Nagar,Orikkai,Kanchipuram ,631502', 'No.1,Vellammal Nagar,Orikkai, kanchipuram,631502', '2501270020', '', '1', 'upload_files/candidate_tracker/83268612457_Anusree.RResume.pdf', NULL, '1', '2025-01-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-27 05:30:50', 1, '2025-01-27 05:40:09', 0, NULL, 1),
(23795, 'poojaasree k', '4', '7358418136', '', 'poojaakannan02@gmail.com', '2004-05-02', 20, '3', '2', 'kannan d', 'Rice Business', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2501270021', '', '1', 'upload_files/candidate_tracker/51051119813_POOJAAKANNAN8.pdf', NULL, '1', '2025-01-27', 0, '', '', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-27 05:33:55', 153, '2025-01-27 03:17:52', 0, NULL, 1),
(23796, 'Hardeeka.G', '4', '6379924744', '', 'patelhardeeka@gmail.com', '2003-07-03', 21, '2', '2', 'Ganesh', 'Business', 30000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2501270022', '27', '1', 'upload_files/candidate_tracker/1822073413_resumehardeeka.g.pdf', NULL, '1', '2025-01-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication too low', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 05:33:58', 153, '2025-01-27 04:19:35', 0, NULL, 1),
(23797, 'Nithya .k', '2', '9710248737', '9790817558', 'Nithyakuppan16@gamil.com', '2001-11-16', 23, '2', '2', 'Kuppan', 'Sales man', 12000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2501270023', '27', '1', 'upload_files/candidate_tracker/30022518203_Nithya111.pdf', NULL, '1', '2025-01-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-27 05:38:56', 153, '2025-01-27 04:33:51', 0, NULL, 1),
(23798, 'Ponkani S', '13', '9965434341', '8148309742', 'ponkanicse@gmail.com', '2004-11-27', 20, '2', '2', 'Selvaraj', 'Farmer', 20000.00, 2, 0.00, 18000.00, 'Porur', 'Porur', '2501270024', '27', '1', 'upload_files/candidate_tracker/32225449462_DocumentfromPonkani.pdf', NULL, '1', '2025-01-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-27 05:38:59', 153, '2025-01-27 04:33:35', 0, NULL, 1),
(23799, '794805155517', '4', '8148366230', '9344156088', 'Sanjayofficialra02@gmail.com', '2002-10-02', 22, '2', '2', 'Ramesh', 'Foreign', 500000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Chennai', '2501270025', '1', '1', 'upload_files/candidate_tracker/74536118805_DOC20250126WA0005..pdf', NULL, '3', '2025-01-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-01-27 05:42:57', 1, '2025-01-27 05:47:17', 0, NULL, 1),
(23800, 'Kavitha S', '4', '9150213545', '9150313545', 'Kavithasuresh270@gmail.com', '2004-02-20', 20, '3', '2', 'Suresh R', 'Vegetable vendor', 12000.00, 1, 0.00, 15000.00, '9/1 Madhavan Perumal Street Mylapore Chennai 4', '9/1 Madhava Perumal Street Mylapore Chennai 4', '2501270026', '', '1', 'upload_files/candidate_tracker/51301253741_KAVITHARESUMEP1.pdf', NULL, '1', '2025-01-27', 0, '', '', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-27 05:50:19', 153, '2025-01-27 03:17:20', 0, NULL, 1),
(23801, 'Sugirtha Mary', '4', '7200037897', '', 'sugirthamary2004@gmail.com', '2004-01-01', 21, '2', '2', 'Ji sundar raj', 'Book business', 30000.00, 4, 0.00, 16000.00, 'Chennai', '20/ 430 Ayothiya Nagar triplicane Chennai', '2501270027', '27', '1', 'upload_files/candidate_tracker/8643738429_sugirtharesume7.pdf', NULL, '1', '2025-01-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Gommunication not good', '1', '1', '', '1', '8', '', '2', '2025-05-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 05:57:27', 153, '2025-01-29 06:43:34', 0, NULL, 1),
(23802, 'K. Nandhini', '5', '6369772322', '8122755863', 'nandhinikannan30@gmail.com', '1997-11-30', 27, '2', '2', 'S. Kamala kannan', 'Apartment Manager', 15000.00, 1, 20000.00, 25000.00, 'Triplicane, Chennai', 'Triplicane, Chennai', '2501270028', '57', '2', 'upload_files/candidate_tracker/21485904088_Nandhinikannan.docx', NULL, '1', '2025-01-27', 5, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-27 06:02:33', 153, '2025-01-27 12:15:54', 0, NULL, 1),
(23803, 'Mohanapriya', '4', '9962429252', '', 'mohanapriya0427@gmail.com', '2001-06-27', 23, '2', '2', 'Balachandar', 'metro marshal', 18000.00, 1, 15000.00, 22000.00, 'No:74/96,Bangarustreet,Sayani,Ayanavaram', 'No:74/96,Bangarustreet,sayani,ayanavaram', '2501270029', '1', '2', 'upload_files/candidate_tracker/13563462148_MohanapriyaResume2.pdf', NULL, '1', '2025-01-27', 0, '', '1', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-01-27 06:08:42', 153, '2025-01-27 03:36:11', 0, NULL, 1),
(23804, 'K.kashifa', '4', '9361776646', '9361767477', 'Kashkashifa2002@gmail.com', '2002-08-11', 22, '2', '2', 'Kaleem', 'Business', 1.50, 8, 20.00, 25.00, 'Chennai', 'Periamet', '2501270030', '50', '2', 'upload_files/candidate_tracker/73579985254_KKashifaResume1.pdf', NULL, '3', '2025-01-27', 3, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2025-01-27 06:09:46', 153, '2025-01-28 07:06:14', 0, NULL, 1),
(23805, 'D Dhanalakshmi', '6', '9025839458', '6383252524', 'desingudhana@gmail.com', '2004-05-16', 20, '2', '2', 'C. Desingu', 'Farmer', 20000.00, 1, 0.00, 18000.00, 'Vanthavasi', 'Chennai', '2501270031', '50', '1', 'upload_files/candidate_tracker/89101609610_Dhanalakshmi.D2025012513363000001.pdf', NULL, '1', '2025-01-27', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candaiate all details ok , communication good , but exp salary is 25k above so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-01-27 06:14:20', 153, '2025-01-27 01:01:44', 0, NULL, 1),
(23806, 'K V Rameshkumar', '6', '7358565697', '9840769098', 'ramesh165k@gmail.com', '2003-05-16', 21, '2', '2', 'Velvizhi', 'House wife', 15000.00, 0, 0.00, 17000.00, 'Kundrathur', 'Ambattur', '2501270032', '1', '1', 'upload_files/candidate_tracker/9985461611_RESUMEBBA.pdf', NULL, '1', '2025-01-27', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is unfit for the job,communication not good, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '55645', '5151', '1970-01-01', 1, '2025-01-27 06:28:33', 153, '2025-01-28 07:06:04', 0, NULL, 1),
(23807, 'Allistarfernandaz.H.D', '6', '9360741298', '', 'allistarfernandaz@gmail.com', '2003-03-12', 21, '3', '2', 'Harry Druz.f', 'Driver', 16000.00, 2, 0.00, 25000.00, 'Chengalvarayan street ayanavaram chennai -12', 'Ayanavaram', '2501270033', '', '1', 'upload_files/candidate_tracker/4852142120_alliesterfernandez2.pdf', NULL, '1', '2025-01-27', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-27 06:29:03', 153, '2025-01-27 03:31:08', 0, NULL, 1),
(23808, 'K. Nandhini', '35', '8122755863', '6369762322', 'nandhinikannan30@gmail.com', '1997-11-30', 27, '3', '2', 'S. Kamalakannan', 'Apartment Manager', 35000.00, 1, 20000.00, 25000.00, 'Triplicane, Chennai', 'Triplicane, Chennai', '2501270034', '', '2', 'upload_files/candidate_tracker/97899234334_Nandhinikannan.docx', NULL, '1', '2025-01-27', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-27 06:30:29', 1, '2025-01-27 06:34:12', 0, NULL, 1),
(23809, 'Akshaya M', '4', '7305570586', '7010758564', 'makshaya150@gmail.com', '2005-05-11', 19, '2', '2', 'Murugan', 'Astrology', 12000.00, 2, 0.00, 15000.00, 'Taramani', 'Taramani', '2501270035', '27', '1', 'upload_files/candidate_tracker/96083467850_Imagetopdf03Dec2024.pdf', NULL, '1', '2025-01-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She will not be suitable for sales and jut looking for time being', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 06:56:45', 153, '2025-01-29 06:43:27', 0, NULL, 1),
(23810, 'Janani.B', '20', '6381959606', '8248727607', 'jananijanu1808@gmail.com', '2002-12-07', 22, '2', '2', 'Babu.G', 'Cad draughts man', 200000.00, 1, 0.00, 15000.00, 'Ambur', 'Roya', '2501270036', '45', '1', 'upload_files/candidate_tracker/72404050667_Jananiresume1.pdf', NULL, '1', '2025-01-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performacne os not good .also she is slow  then sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-27 06:58:08', 153, '2025-01-27 03:12:34', 0, NULL, 1),
(23811, 'Thenmozhi', '13', '6380761314', '9791137854', 'thensivam206@gmail.com', '2003-06-20', 21, '2', '2', 'Tamilselvi', 'Housewife', 14000.00, 1, 0.00, 25000.00, 'Cuddalore', 'Kotturpuram', '2501270037', '27', '1', 'upload_files/candidate_tracker/22655165010_THENMOZHIRESUME.pdf', NULL, '1', '2025-01-27', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-27 07:12:32', 153, '2025-01-27 04:32:55', 0, NULL, 1),
(23812, 'Thenmozhi', '13', '9791137854', '6380761314', 'thensivam206@gmail.com', '2003-06-20', 21, '2', '2', 'Tamilselvi', 'Housewife', 14000.00, 1, 0.00, 25000.00, 'Cuddalore', 'Kotturpuram', '2501270038', '27', '1', 'upload_files/candidate_tracker/19113266793_THENMOZHIRESUME.pdf', NULL, '1', '2025-01-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-27 07:26:02', 153, '2025-01-27 04:32:06', 0, NULL, 1),
(23813, 'Renushree.D', '6', '8925737349', '9345035395', 'renushreed4@gmail.com', '2005-07-15', 19, '2', '2', 'Dilli babu', 'Auto driver', 12000.00, 1, 0.00, 14000.00, 'T nagar', 'T nagar', '2501270039', '27', '1', 'upload_files/candidate_tracker/25951805245_ec145fa40ab14120b218045e2b42c0bd.pdf', NULL, '1', '2025-05-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, communication average. provide the fresher salary . kindly confirm the joining date', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55732', '5151', '1970-01-01', 1, '2025-01-27 07:58:23', 154, '2025-05-09 06:15:35', 0, NULL, 1),
(23814, 'Saniya Fathima', '5', '9176406899', '9962083428', 'saniyafathima2004@gmail.com', '2004-10-27', 20, '2', '2', 'Farooqua Fathima', 'Teacher', 10000.00, 1, 0.00, 14000.00, 'Perambur', 'Perambur', '2501270040', '27', '1', 'upload_files/candidate_tracker/70201395857_SaniyaFathimaCV1.pdf', NULL, '1', '2025-01-27', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Came after exams', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 07:58:26', 153, '2025-01-29 06:43:44', 0, NULL, 1),
(23815, 'Sarah Ahmed. M', '5', '9445184446', '9840020152', 'Sarahintell@gmail.com', '2005-06-16', 19, '2', '2', 'Mujeeb Ahmed. V', 'Business', 35000.00, 1, 0.00, 14000.00, 'Teynampet', 'Teynampet', '2501270041', '27', '1', 'upload_files/candidate_tracker/20419386224_sarahcv2.docx', NULL, '1', '2025-01-27', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Came after exams', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 07:58:45', 153, '2025-01-29 06:44:00', 0, NULL, 1),
(23816, 'Fathima Nilofer T A', '6', '8248283319', '9094653860', 'angelnilo554@gmail.com', '2004-05-05', 20, '2', '2', 'Thameemun Ansari.K.M', 'Student', 96000.00, 1, 0.00, 13000.00, '32/53,Malaiyappan Street,Mannady,chennai-01', '32/53,Malaiyappan Street,Mannady,chennai-01', '2501270042', '27', '1', 'upload_files/candidate_tracker/18090916104_NiloferResume.pdf', NULL, '1', '2025-01-27', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Came after exams', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 08:28:01', 153, '2025-01-27 03:54:17', 0, NULL, 1),
(23817, '', '0', '7338932669', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501270043', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-27 08:29:41', 0, NULL, 0, NULL, 1),
(23818, 'Kowsalya M', '4', '7305802755', '', 'mkowsalya451@gmail.com', '2004-05-26', 20, '2', '2', 'Murugan K', 'Welding', 83000.00, 1, 0.00, 15000.00, 'Gerugambakkam', 'Gerugambakkam', '2501270044', '50', '1', 'upload_files/candidate_tracker/75136591855_creativehandshrresume.docx', NULL, '1', '2025-01-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-27 08:33:44', 1, '2025-01-27 08:50:27', 0, NULL, 1),
(23819, 'Muthulakshmi', '5', '7338932668', '8248283319', 'muthulakshmisaras@gmail.com', '2005-04-29', 19, '2', '2', 'Saraswathi', 'Farmer', 8000.00, 0, 0.00, 13000.00, '149,coral merchant st,mannady', '149,coral merchant st,mannady', '2501270045', '27', '1', 'upload_files/candidate_tracker/20461192427_muthulakshmiresume33.pdf', NULL, '1', '2025-01-27', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Came after exams', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 08:54:57', 104, '2025-02-26 06:50:55', 0, NULL, 1),
(23820, 'Dhivya. N', '11', '9994889083', '', 'nagadhiv@gmail.com', '2001-11-04', 23, '6', '2', 'Nagarajan. J', 'Technical officer in annamalai university', 70000.00, 1, 0.00, 15000.00, 'Vandigate Chidambaram', 'Padavattamman Kovil Street, Sholinganallur', '2501270046', '', '1', 'upload_files/candidate_tracker/20833678274_N.DHIVYARESUME1.pdf', NULL, '1', '2025-01-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-27 09:36:14', 154, '2025-01-28 09:32:45', 0, NULL, 1),
(23821, 'Gomathi S', '4', '9843856848', '', 'narayanansethu39@gmail.com', '2004-01-06', 21, '2', '2', 'Sethu Narayanan', 'Car Driver', 20000.00, 1, 0.00, 20000.00, 'Madurai', 'Avadi', '2501270047', '50', '1', 'upload_files/candidate_tracker/28252383901_GOMATHIS1.pdf', NULL, '1', '2025-01-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-27 09:37:29', 1, '2025-01-27 09:47:09', 0, NULL, 1),
(23822, 'jackson jino', '34', '9345299463', '', 'jackjino007@gmail.com', '2003-05-10', 21, '2', '2', 'parent', 'b e', 500000.00, 0, 0.00, 3000000.00, 'chennai', 'chennai', '2501270048', '50', '1', 'upload_files/candidate_tracker/28898338217_JacksonJinodResume.pdf', NULL, '3', '2025-01-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-27 11:15:04', 1, '2025-01-27 11:19:55', 0, NULL, 1),
(23823, 'Reena A', '4', '7550131227', '', 'reenaachu123456@gmail.com', '2001-05-12', 23, '6', '1', 'Akash', 'Fashion designer', 50.00, 1, 0.00, 30000.00, 'Iyyapanthangal', 'Iyyapanthangal', '2501270049', '', '2', 'upload_files/candidate_tracker/8232982971_ReenaAResume1.pdf', NULL, '1', '2025-01-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-27 11:21:42', 1, '2025-01-27 11:25:59', 0, NULL, 1),
(23824, 'DHAMODHARAN M', '4', '9345649776', '', 'dhamud135@gmail.com', '2004-06-11', 20, '2', '2', 'MUTHUVEL G', 'PRIVATE ACCOUNTANT', 17000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2501270050', '1', '1', 'upload_files/candidate_tracker/41885913943_ProfessionalResumeft.DHAMU.pdf', NULL, '1', '2025-01-28', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for telesales intrested in foreign only', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-27 12:50:29', 153, '2025-01-28 10:30:37', 0, NULL, 1),
(23825, 'arokia rashmi', '4', '7448913147', '', 'rashmi14112002r@gmail.com', '2002-11-14', 22, '2', '2', 'ravi raj', 'fisherman', 30000.00, 1, 0.00, 12000.00, 'thanjavur', 'Thanjavur', '2501270051', '1', '1', 'upload_files/candidate_tracker/53395736285_Rashmi.Rcv.pdf', NULL, '1', '2025-05-10', 0, '', '3', '59', '2025-05-15', 150000.00, '', '3', '2025-06-12', '2', 'Communication Ok Fresher for our roles need to train from scratch check in training and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2025-05-15', 1, '2025-01-27 12:50:39', 60, '2025-05-14 05:33:19', 0, NULL, 1),
(23826, '', '0', '9962164484', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501270052', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-27 02:24:04', 0, NULL, 0, NULL, 1),
(23827, '', '0', '9360106899', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501270053', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-27 05:55:57', 0, NULL, 0, NULL, 1),
(23828, 'MANOJ VELMURUGAN', '6', '9384946172', '9994485528', 'manoj938494@gmail.com', '2000-08-29', 24, '2', '2', 'VELMURUGAN', 'CNC programmer', 35000.00, 1, 0.00, 14000.00, 'Coimbatore', 'Chennai', '2501280001', '50', '1', 'upload_files/candidate_tracker/62678559998_BlackandWhiteMinimalistSimpleDesignFreelancerResume2024121620344700002.pdf', NULL, '1', '2025-01-28', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'silent person. not fit for the job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-28 04:46:01', 154, '2025-01-28 11:03:07', 0, NULL, 1),
(23829, 'Ramesh p', '13', '6374535853', '9788265086', 'rameshpaneerselvam6374@gmail.com', '2001-06-01', 23, '2', '2', 'Paneer Selvam D', 'Handloom saree', 15000.00, 2, 0.00, 15000.00, '545 pillaiyar Kovil st, Arni ,T.V malai', '3/103 sathya nagar, Ramapuram , Chennai', '2501280002', '27', '1', 'upload_files/candidate_tracker/53194491091_RAMESHP12.pdf', NULL, '1', '2025-01-28', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-28 04:55:46', 154, '2025-01-28 11:58:34', 0, NULL, 1),
(23830, 'Aruna Murugaiyan', '4', '9361155732', '7084242510', 'arunavasu2510@gmail.com', '2002-10-19', 22, '2', '2', 'Murugaiyan', 'Farmer', 50000.00, 4, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2501280003', '1', '1', 'upload_files/candidate_tracker/72570774753_ARUNAMURUGAIYAN.pdf', NULL, '1', '2025-01-28', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for tele calling looking for part time only', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-28 05:03:38', 153, '2025-01-28 10:46:36', 0, NULL, 1),
(23831, 'Jeeva Janani K B', '11', '9025518455', '', 'Jeevajanani2002@gmail.com', '2002-11-10', 22, '6', '2', 'Balamurugan k', 'Government employee', 50000.00, 2, 0.00, 25000.00, 'Cuddalore', 'Omr', '2501280004', '', '1', 'upload_files/candidate_tracker/76597558175_SISTMBA43410089JEEVAJANANI.KB.pdf', NULL, '1', '2025-01-28', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Did internship 2 weeks and quit', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-28 05:43:10', 154, '2025-01-28 12:17:45', 0, NULL, 1),
(23832, 'Ruksanaa.M', '6', '8682907013', '8825625518', 'Ruksanaa2004@gmail.com', '2004-10-17', 20, '2', '2', 'R.Mohammed Anus', 'Business', 15000.00, 1, 0.00, 13000.00, 'No,4/7East C.I.T Nagar 3rd Main road chennai-35', 'No,4/7 East C.I.T Nagar 3rd main road chennai-35', '2501280005', '27', '1', 'upload_files/candidate_tracker/6489766483_Ruksanaresume202412072117320000.pdf', NULL, '1', '2025-01-28', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Came after exams', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '5151', '1970-01-01', 1, '2025-01-28 05:44:03', 154, '2025-01-29 09:27:20', 0, NULL, 1),
(23833, 'Umma kulsum K', '6', '9840609935', '9941584546', 'umma290105@gmail.com', '2005-01-29', 19, '2', '2', 'Khilafath A', 'Mouzin', 9000.00, 1, 0.00, 13000.00, 'FB mosque compound CIT nagar Nandanam ch-35', 'FB mosque compound CIT nagar Nandanam ch-35', '2501280006', '27', '1', 'upload_files/candidate_tracker/56166864980_ummakulsum.pdf', NULL, '1', '2025-01-28', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Came after exams', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-28 05:44:05', 154, '2025-01-29 09:27:30', 0, NULL, 1),
(23834, 'Ahmed Zulaika Vellari amanullah', '6', '8778452885', '9003168538', 'ahmedzulaika0401@gmail.com', '2005-01-04', 20, '2', '2', 'Amanullah', 'Auto driver', 9000.00, 2, 0.00, 13000.00, '16/4A masoothi pallam 2nd Street saidapet chn-15', '16/4A masoothi pallam 2nd Street Saidapet Ch-15', '2501280007', '27', '1', 'upload_files/candidate_tracker/28544265323_ResumeZulaika.pdf', NULL, '1', '2025-01-28', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Came after exams', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-28 05:44:36', 154, '2025-01-29 09:27:39', 0, NULL, 1),
(23835, 'Hemapriya K', '6', '9361374258', '', 'khemapriya2002@gmail.com', '2002-11-25', 22, '2', '2', 'Revathi.K', 'Farmer', 10000.00, 1, 16000.00, 25000.00, 'Trichy', 'Chennai', '2501280008', '45', '2', 'upload_files/candidate_tracker/98034026987_HemapriyaKResume.pdf', NULL, '1', '2025-01-28', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-28 06:03:51', 154, '2025-01-28 12:04:52', 0, NULL, 1),
(23836, 'SNEHA A', '6', '7397105724', '', 'snehams27072003@Gmail.com', '2003-07-27', 21, '2', '2', 'G.Arumugam , A.chitra', 'Farmers', 15000.00, 1, 0.00, 15000.00, 'Villupuram district,Gingee', 'New perungalathur', '2501280009', '50', '1', 'upload_files/candidate_tracker/34789864594_Sneha.A.pdf', NULL, '1', '2025-01-29', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And performance is not good,also she is not spoken much more then his voice is very low ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-28 06:08:03', 154, '2025-01-29 12:20:09', 0, NULL, 1),
(23837, 'Prakash M', '11', '6379086853', '9962271704', 'hariprakash231997@gmail.com', '1997-03-02', 27, '6', '2', 'Murugan V', 'FARMER', 15000.00, 1, 0.00, 15000.00, 'Mogappair esat, Chennai', 'Mog appair East, Chennai', '2501280010', '', '1', 'upload_files/candidate_tracker/37576333163_temp1737538863391compressed.pdf', NULL, '1', '2025-01-28', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-28 06:09:34', 154, '2025-01-28 12:19:54', 0, NULL, 1),
(23838, 'Ravish T', '6', '6383977674', '', 'ravish5237@gmail.com', '2001-11-23', 23, '2', '2', 'Thiyagarajan', 'Teacher', 100000.00, 1, 0.00, 300000.00, 'Thoothukudi', 'Chennai', '2501280011', '1', '1', 'upload_files/candidate_tracker/1663682926_RAVISHT.pdf', NULL, '1', '2025-01-29', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was interested in hr profession and not interested in sales and not ok with salary also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-28 06:29:27', 154, '2025-01-29 10:08:59', 0, NULL, 1),
(23839, 'Praveen p jannu', '6', '7899321830', '7899610529', 'jannupraveen26@gmail.com', '2002-05-29', 22, '3', '2', 'Purandhar v jannu', 'Teli caller', 30000.00, 1, 0.00, 23000.00, 'Btm layout', 'Btm layout', '2501280012', '', '2', 'upload_files/candidate_tracker/89643249676_PraveenPJannu1.pdf', NULL, '1', '2025-01-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good  Communication selected salary 16k having 6 months Experience has tele caller', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-01-28 06:38:48', 154, '2025-02-15 07:07:44', 0, NULL, 1),
(23840, 'r shree madhav', '13', '9150518560', '', 'shreemashav2305@gmail.com', '2002-04-23', 22, '3', '2', 'radha j', 'cashier', 20000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2501280013', '', '1', 'upload_files/candidate_tracker/7428090882_RShreeMadhavResume.pdf', NULL, '1', '2025-01-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'not intrested', '', '', '', '', '', '1970-01-01', 1, '2025-01-28 06:58:17', 154, '2025-01-28 01:00:04', 0, NULL, 1),
(23841, 'VIJAY SIVAKUMAR', '5', '9597699664', '9840441286', 'Vijayd2d2@gmail.com', '1997-12-14', 27, '2', '2', 'Kiruba karan', 'Salaried', 500000.00, 1, 25000.00, 31000.00, 'CHENNAI', 'CHENNAI', '2501280014', '1', '2', 'upload_files/candidate_tracker/87318115798_VijayResume12.pdf', NULL, '1', '2025-01-28', 0, '', '3', '59', '2025-02-24', 330000.00, '', '5', '1970-01-01', '1', 'Communication Ok Can give a try and checkn in our process previously attended candidate offered last time but not joined let us try this time', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1027', '', '55650', '55560', '2025-02-24', 1, '2025-01-28 07:04:48', 60, '2025-02-22 05:28:40', 0, NULL, 1),
(23842, 'Praveen Ram', '13', '9994245142', '', 'praveenram2328@gmail.com', '2003-09-23', 21, '2', '2', 'R Muthupandi', 'Cooli worker', 13000.00, 1, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2501280015', '27', '1', 'upload_files/candidate_tracker/80756255811_PRAVEENRAMresume.pdf', NULL, '1', '2025-01-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-01-28 07:05:12', 154, '2025-01-28 12:55:24', 0, NULL, 1),
(23843, '', '0', '9159256426', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501280016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-28 07:31:15', 0, NULL, 0, NULL, 1),
(23844, 'Saravanakumar K', '4', '6374781355', '', 'ksaravanakumar0302@gmail.com', '2001-02-04', 23, '2', '1', 'Kaliyamoorhy', 'Farmer', 10000.00, 1, 16000.00, 16000.00, 'Mayiladuthurai', 'Thanjavur', '2501280017', '1', '2', 'upload_files/candidate_tracker/97933070493_SKnewresume.pdf', NULL, '1', '2025-01-29', 0, '', '3', '59', '2025-02-03', 174000.00, '', '5', '1970-01-01', '1', 'Communication Ok Can be trained in our roles need to check and confirm in the training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '2025-02-03', 1, '2025-01-28 08:33:52', 60, '2025-02-01 06:40:59', 0, NULL, 1),
(23845, '', '0', '9080560655', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501280018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-28 08:43:56', 0, NULL, 0, NULL, 1),
(23846, '', '0', '9361777321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501280019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-28 10:56:52', 0, NULL, 0, NULL, 1),
(23847, '', '0', '7810035479', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501280020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-28 12:10:25', 0, NULL, 0, NULL, 1),
(23848, 'Yoghesh T', '5', '8300899104', '9344101419', '17yoghesh2001@gmail.com', '2001-11-17', 23, '2', '2', 'Thangadurai', 'Farmer', 40000.00, 1, 2.25, 3.00, 'Dharmapuri', 'Chennai ayapakkam', '2501280021', '1', '2', 'upload_files/candidate_tracker/63386301583_yogheshupdatedresume.pdf', NULL, '1', '2025-07-19', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55650', '55560', '1970-01-01', 1, '2025-01-28 02:44:26', 154, '2025-07-19 03:18:48', 0, NULL, 1),
(23849, '', '0', '8072585024', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-29 04:13:56', 0, NULL, 0, NULL, 1),
(23850, 'Karthick L', '6', '8610817748', '9715241882', 'karthick1450@gmail.com', '2000-06-04', 24, '2', '2', 'Laxmanan', 'Driver', 14000.00, 1, 0.00, 2.50, '22/kizzndi main Street sempoondi 603406', 'Washmanpet', '2501290002', '50', '1', 'upload_files/candidate_tracker/88808490266_karthick.pdf', NULL, '2', '2025-01-29', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate all ok but after 6 month start for business and mba also so not fit for my team\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-01-29 04:23:40', 154, '2025-01-29 10:31:22', 0, NULL, 1),
(23851, 'Gajasri.k', '4', '9843565044', '8098502342', 'gajasrikarthik@gmail.com', '2003-09-08', 21, '2', '2', 'Parent', 'Tailor', 30000.00, 1, 0.00, 15000.00, 'Medavakkam', 'Medavakkam', '2501290003', '1', '1', 'upload_files/candidate_tracker/87236362342_DOC20250128WA0003..pdf', NULL, '1', '2025-01-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-01-29 04:26:01', 154, '2025-01-29 11:26:35', 0, NULL, 1),
(23852, 'Hari J', '6', '6382518607', '', 'hariifet30@gmail.com', '2001-10-10', 23, '2', '2', 'Parent', 'Fresher', 500000.00, 1, 0.00, 200000.00, 'Tindivanam', 'Tindivanam', '2501290004', '50', '1', 'upload_files/candidate_tracker/82380477023_HARIJRESUME.pdf', NULL, '1', '2025-01-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Distance Issue', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-29 04:33:54', 154, '2025-01-29 10:42:18', 0, NULL, 1),
(23853, 'Samyuktha Ramesh', '4', '6382183345', '', 'samyuktharamesh74@gmail.com', '2002-07-02', 22, '2', '2', 'ramesh', 'self employed', 60000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2501290005', '50', '1', 'upload_files/candidate_tracker/11339933619_SamyukthaRameshCV.pdf', NULL, '1', '2025-01-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-29 04:46:49', 1, '2025-01-29 04:50:36', 0, NULL, 1),
(23854, 'p dilip', '6', '9652463637', '6385324400', 'dilipnaidu2207@gmail.com', '2000-07-22', 24, '2', '2', 'venkata sasi', 'farmer', 50000.00, 0, 19000.00, 24000.00, 'tirupati', 'chennai', '2501290006', '1', '2', 'upload_files/candidate_tracker/21778230346_Dilip2207.pdf', NULL, '1', '2025-01-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok, communication ok\npls cross check sustainability,confirm the salary and joining Thanks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', '55645', '5151', '1970-01-01', 1, '2025-01-29 05:46:39', 154, '2025-01-29 11:35:22', 0, NULL, 1),
(23855, 'Sanjay s', '6', '7092521708', '7010517946', 'sanjaisaravanan1020@gmail.com', '2002-10-20', 22, '2', '1', 'Saravanan v', 'Farmer', 75000.00, 0, 15000.00, 18000.00, 'Ponneri', 'Kolathur', '2501290007', '50', '2', 'upload_files/candidate_tracker/99599939073_SanjayResume2.pdf', NULL, '1', '2025-01-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not worth of his asking salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-29 05:54:30', 154, '2025-01-29 03:35:40', 0, NULL, 1),
(23856, 'Rayala akhila', '6', '9182387910', '', 'akhilarayala0@gmail.com', '2000-10-16', 24, '3', '2', 'Ramanjaneyulu', 'Farmer', 10000.00, 2, 0.00, 2.50, 'Anantapur', 'bangalore', '2501290008', '', '1', 'upload_files/candidate_tracker/94943036772_akhilaresume.docx', NULL, '1', '2025-01-29', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'only knowing telugu  language', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-01-29 06:00:51', 154, '2025-01-29 12:15:53', 0, NULL, 1),
(23857, 'Hemnathmoorthi', '4', '9360398659', '', 'hemnathema305@gmail.com', '2001-04-02', 23, '2', '2', 'moorthi', 'business', 1.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2501290009', '50', '1', 'upload_files/candidate_tracker/72868314424_newresume1.docx', NULL, '1', '2025-01-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-29 06:21:32', 1, '2025-01-29 06:26:13', 0, NULL, 1),
(23858, 'Sibivalantinamary A', '4', '9790468599', '9025674763', 'valentinasibi99@gmail.com', '1999-05-26', 25, '2', '2', 'Arulraj', 'Telecalleing', 10000.00, 4, 24500.00, 25000.00, 'Cuddalore', 'Thiruvanmiyur', '2501290010', '1', '2', 'upload_files/candidate_tracker/86268161911_UpdatedCV.Sibi.pdf', NULL, '1', '2025-01-29', 5, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55824', '55560', '1970-01-01', 1, '2025-01-29 06:48:28', 154, '2025-01-29 12:41:44', 0, NULL, 1),
(23859, 'Swathika', '6', '9360582540', '9751589246', 'hiasioc15@gmail.com', '2003-10-15', 21, '2', '2', 'Muthuvairavan A', 'Coolie', 20000.00, 2, 0.00, 17000.00, 'Kovilpatti', 'Chennai', '2501290011', '50', '1', 'upload_files/candidate_tracker/21625088223_DOC20250127WA0337.1.pdf', NULL, '1', '2025-01-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And performance is ok.also her voice is bold.as discussed CTC 1.56LPA.Kindly Check With her ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-29 07:04:54', 154, '2025-01-29 01:41:22', 0, NULL, 1),
(23860, 'Ashya', '6', '9751367540', '9025886602', 'ashya262@gmail.com', '2003-06-02', 21, '2', '2', 'K. Arasumani', 'Farmer', 30000.00, 1, 0.00, 15000.00, 'Kallakuruchi', 'Chennai', '2501290012', '50', '1', 'upload_files/candidate_tracker/60131924187_CV2025012912110919compressed11.pdf', NULL, '1', '2025-01-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was better at communication and having interested  in sales and having confidence  about the job ,we shall provide 14k as salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-29 07:05:21', 154, '2025-01-29 01:39:57', 0, NULL, 1),
(23861, 'SENALAKSHMIDEVI', '6', '9894377429', '9894977429', 'Senavenkat@28gmail.com', '2002-07-28', 22, '2', '2', 'Venkatesan', 'Electrician', 30000.00, 1, 0.00, 15000.00, 'Pondychery', 'Chennai', '2501290013', '50', '1', 'upload_files/candidate_tracker/860569014_CV2025012912094496compressed11.pdf', NULL, '1', '2025-01-29', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate only interested in bank work and not fit for voce process , comuncation good but voice not clear', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-01-29 07:05:44', 154, '2025-01-29 01:41:02', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23862, 'Anitharohini M', '6', '8680837203', '7558119804', 'rohinianitha2003@gmail.com', '2003-04-17', 21, '2', '2', 'Muthuramalingam K', 'Coolie', 20000.00, 2, 0.00, 15000.00, 'Kovilpatti', 'Chennai', '2501290014', '50', '1', 'upload_files/candidate_tracker/2658437833_ShareDOC20250127WA0006..pdf', NULL, '1', '2025-01-29', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-29 07:06:54', 154, '2025-01-29 01:40:25', 0, NULL, 1),
(23863, 'Kaviya', '4', '7358394842', '', 'Spkaviyasiva@gmail.com', '2004-07-29', 20, '2', '2', 'Sivagami', 'Farmer', 10000.00, 0, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2501290015', '1', '1', 'upload_files/candidate_tracker/14491548839_1000148470.pdf', NULL, '1', '2025-01-29', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit for telecalling and telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-01-29 07:47:50', 154, '2025-01-29 01:42:02', 0, NULL, 1),
(23864, '221577116080', '4', '9345885340', '', 'madhu.s1629@gmil.com', '2003-03-16', 21, '2', '2', 'Parents', 'Working', 80000.00, 1, 0.00, 15000.00, 'No 39/4 Kutty na street chintadripet', 'No 39/4 Kutty na street chintadripet', '2501290016', '50', '1', 'upload_files/candidate_tracker/30069829378_MadhuReusme.pdf', NULL, '1', '2025-01-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-29 08:19:57', 1, '2025-01-30 05:06:54', 0, NULL, 1),
(23865, 'J Surya', '5', '8870836825', '8939244902', 'suryarg4433@gmail.com', '1999-05-03', 25, '2', '2', 'T Jayavel', 'Carpenter', 20000.00, 1, 18000.00, 25000.00, 'Thrivottiyur chennai', 'Same as', '2501290017', '50', '2', 'upload_files/candidate_tracker/96550598410_CurrentResumeSuryaJ2024.docx', NULL, '1', '2025-01-29', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-01-29 08:22:10', 154, '2025-01-29 03:07:03', 0, NULL, 1),
(23866, 'ShamaInfant', '6', '9344105934', '', 'shamashafno@gmail.com', '1997-01-14', 28, '2', '1', 'M Kingsley', 'HR', 250000.00, 1, 12000.00, 15000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2501290018', '1', '2', 'upload_files/candidate_tracker/75043683604_Shamaresume2.pdf', NULL, '1', '2025-01-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', 'not intrested in tamil voice', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-01-29 09:16:11', 154, '2025-01-29 04:26:43', 0, NULL, 1),
(23867, 'Pankaj kumar sunil kumar', '5', '9344156245', '', 'pankajkumar3082011@gmail.com', '1995-08-30', 29, '2', '2', 'Sunil kumar', 'Labour', 26000.00, 2, 3.39, 3.60, 'Ambattur', 'Ambattur', '2501290019', '50', '2', 'upload_files/candidate_tracker/4612681698_PankajBanking.pdf', NULL, '1', '2025-01-29', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '4', '6', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-01-29 09:19:49', 154, '2025-01-29 04:00:06', 0, NULL, 1),
(23868, 'Mathivarman', '6', '9840376672', '8925004672', 'mathivsk12345@gmail.com', '2001-05-29', 23, '2', '2', 'Nithya', 'Sales', 18000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2501290020', '50', '2', 'upload_files/candidate_tracker/28864260744_MathivarmanSFlowCVResume202501155.pdf', NULL, '1', '2025-01-29', 0, '', '3', '59', '2025-02-13', 216000.00, '', '3', '2025-02-13', '1', 'Communication Ok Have Exp in calling but not in relevant domain can be trained in our roles need to check and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55645', '5151', '2025-02-13', 1, '2025-01-29 09:55:45', 60, '2025-02-12 05:38:08', 0, NULL, 1),
(23869, 'Mohankumar Paramasivam', '6', '9677370736', '', 'mohan8201@gmail.com', '1994-06-05', 30, '2', '2', 'aramasivam', 'farmar', 15000.00, 1, 0.00, 40000.00, 'coimbatore', 'Chennai', '2501300001', '50', '1', 'upload_files/candidate_tracker/34995817481_mycv2025.pdf', NULL, '1', '2025-01-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'experience in hr field and expecting the same package in sales field', '', '', '', '', '', '1970-01-01', 1, '2025-01-30 01:05:36', 154, '2025-01-30 10:38:16', 0, NULL, 1),
(23870, '', '0', '9344905671', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501300002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-30 05:07:07', 0, NULL, 0, NULL, 1),
(23871, 'RAHESH S', '6', '9344905679', '', 'raheshsaravanan@gmail.com', '2002-12-02', 22, '2', '2', 'Saravanan M', 'Farmer', 140000.00, 1, 0.00, 17500.00, 'madurai', 'Koyambedu, Chennai', '2501300003', '50', '1', 'upload_files/candidate_tracker/98480698890_raheshs1.pdf', NULL, '1', '2025-01-30', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate not respond', '5', '1', '', '1', '8', '', '2', '2025-02-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-30 05:08:05', 154, '2025-01-30 10:56:55', 0, NULL, 1),
(23872, 'Preethi M', '6', '8870392132', '', 'Preethisaratha2020@gmail.com', '2003-06-30', 21, '2', '2', 'Mariappan V', 'Driver', 15000.00, 1, 20000.00, 25000.00, 'Tirunelveli', 'Chennai', '2501300004', '50', '2', 'upload_files/candidate_tracker/98736311278_Resume.pdf', NULL, '3', '2025-01-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and voice good , past 7 month iT requirement work on night shift , that reason to relave  past salary 20k i will inform  16k to 17k , so tr for 7 days training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-01-30 05:16:13', 154, '2025-01-30 11:26:09', 0, NULL, 1),
(23873, 'K Elam Dharani', '6', '9442407118', '', 'elamdharani2005@gmail.com', '2005-07-12', 19, '2', '2', 'Kannan G', 'Electrician', 15000.00, 3, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2501300005', '50', '1', 'upload_files/candidate_tracker/26813444167_attachment.pdf', NULL, '3', '2025-01-30', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'CANDIDATE WAS NOT GOOD AT COMMUNICATION NOT AT ALL SPEAKING AND NOT HAVING ANY IDEAS ABOUT SALES AND JOB', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-30 05:16:38', 154, '2025-01-30 11:24:27', 0, NULL, 1),
(23874, 'Sambath kumar. V', '6', '7358299409', '8124244085', 'Sambath7358299409@gmail.Com', '2003-12-30', 21, '2', '2', 'Vijaya kumar', 'Hotal', 12000.00, 1, 0.00, 17000.00, 'Solaiyamman nager redhills ch52', 'Solaiman nager redhills', '2501300006', '50', '1', 'upload_files/candidate_tracker/2464908012_SAMPATHRESUME.pdf', NULL, '1', '2025-01-30', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-30 05:17:46', 154, '2025-01-30 11:30:19', 0, NULL, 1),
(23875, 'Mukesh t', '6', '8124244085', '7358299409', 'mukesh9940384639@gmail.com', '2003-12-14', 21, '2', '2', 'M Tamilarasan', 'Tailor', 22000.00, 1, 0.00, 17000.00, 'Redhills chennai', 'Redhills chennai', '2501300007', '50', '1', 'upload_files/candidate_tracker/91664267159_Documentfrommoni.pdf', NULL, '1', '2025-01-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'job needed person ctc 16k fresher salary lets try 7 days then we will confirm', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-30 05:19:29', 154, '2025-01-30 11:47:55', 0, NULL, 1),
(23876, 'V uday kiran', '6', '9989262054', '6302610235', 'udaykiran.vupplapati@gmail.com', '2003-10-13', 21, '2', '2', 'V.venkatesulu naidu', 'Farmer', 20000.00, 1, 0.00, 150000.00, 'Andhra Pradesh,517419', 'Guindy', '2501300008', '50', '1', 'upload_files/candidate_tracker/75686451793_UdayKiranVupplapatiResumeFresher.pdf', NULL, '1', '2025-01-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher . good skill', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-30 05:40:51', 154, '2025-01-30 12:29:32', 0, NULL, 1),
(23877, 'anthony lawrance', '6', '8925092519', '', 'anthonylawrance2004@gmail.com', '2004-01-26', 21, '2', '2', 'Anthony raj s', 'autodriver', 15000.00, 2, 14.00, 15.00, 'New washermanpet', 'New washermanpet', '2501300009', '50', '2', 'upload_files/candidate_tracker/71344028600_Myresumecrt.pdf', NULL, '3', '2025-01-30', 2, '', '3', '59', '2025-02-03', 192000.00, '', '3', '2025-02-03', '2', 'Communication Ok fresher for our roles need to check in training and confirm let us try', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '2025-02-03', 1, '2025-01-30 05:56:06', 60, '2025-02-01 06:52:58', 0, NULL, 1),
(23878, 'Sai akash. M', '6', '9342990781', '', 'saiakash.mb@gmail.com', '2004-06-21', 20, '2', '2', 'Bhuvaneshwari.m', 'House wife', 20000.00, 1, 15000.00, 20000.00, '132/164 ambal street sathuma naga ch-6000 19', '132/164 ambal street sathuma naga ch-6000', '2501300010', '50', '2', 'upload_files/candidate_tracker/77062816781_saiAkash.pdf', NULL, '1', '2025-01-30', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate not suitable for sales xxamp Field work, communication not good, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-01-30 06:01:04', 154, '2025-01-30 12:06:52', 0, NULL, 1),
(23879, 'sakthivel R', '6', '8825938644', '', 'sakthiramesh2728@gmail.com', '2003-07-27', 21, '2', '2', 'ramesh', 'driver', 16000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2501300011', '50', '1', 'upload_files/candidate_tracker/7069765156_SakthivelResume8061.pdf', NULL, '1', '2025-01-31', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not worth of his asking salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-30 06:05:51', 154, '2025-01-31 10:58:49', 0, NULL, 1),
(23880, 'Guhan dharamalingam', '33', '7708071610', '7418198744', 'guhan0722@gmail.com', '2002-12-18', 22, '6', '2', 'DHARMALINGAM', 'Farmer', 450000.00, 1, 0.00, 20000.00, 'Mayiladuthurai', 'St.thomes mount', '2501300012', '', '1', 'upload_files/candidate_tracker/26437622863_CV202412241103525.pdf', NULL, '1', '2025-01-30', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-30 06:14:18', 154, '2025-01-30 12:13:26', 0, NULL, 1),
(23881, 'RIFAYUDEEN', '33', '7418197544', '', 'rifadeen007@gmail.com', '2002-10-10', 22, '5', '2', 'Jaagir usen', 'Farmer', 45000.00, 3, 0.00, 20000.00, 'mayiladuthurai', 'St.thomes mount', '2501300013', '', '1', 'upload_files/candidate_tracker/19581677680_CV2025012314352912.pdf', NULL, '1', '2025-01-30', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-30 06:14:21', 154, '2025-01-30 12:22:03', 0, NULL, 1),
(23882, 'Rafiyudeen', '33', '7538896557', '7708971610', 'rafiyudeen557@gmail.com', '2002-12-10', 22, '6', '2', 'Jaahir hassar', 'Farmer', 45000.00, 3, 0.00, 20000.00, 'Mayailaduthurai', 'St.thomas mount', '2501300014', '', '1', 'upload_files/candidate_tracker/25923127960_CV2025012510281226.pdf', NULL, '1', '2025-01-30', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales team', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-30 06:15:14', 154, '2025-01-30 12:21:24', 0, NULL, 1),
(23883, 'Akila.p', '6', '7305665209', '7401561688', 'Akila062003@gmail.com', '2003-02-06', 21, '2', '2', 'Perumal.R', 'Kooli', 40000.00, 1, 0.00, 18000.00, 'Koyambedu', 'Koyambedu', '2501300015', '1', '1', 'upload_files/candidate_tracker/189913314_resume.pdf', NULL, '1', '2025-01-30', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was not at all speaking and interested in other profession and not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-30 06:33:54', 154, '2025-01-30 01:07:35', 0, NULL, 1),
(23884, 'MARY SHALINI', '6', '6374184503', '', 'maryshalin23@gmail.com', '1999-12-23', 25, '2', '2', 'Antony raj', 'Hotel', 25.00, 4, 0.00, 21.00, 'Tambaram', 'Tambaram', '2501300016', '1', '2', 'upload_files/candidate_tracker/23677170046_SHALINI.pdf', NULL, '1', '2025-01-30', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expecting high salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '55651', '5151', '1970-01-01', 1, '2025-01-30 07:12:53', 154, '2025-01-30 01:18:53', 0, NULL, 1),
(23885, 'Bavani p', '6', '8124557188', '', 'Bavanipandurangen@gmail.com', '2004-04-25', 20, '2', '2', 'Pandurangen', 'Former', 40000.00, 3, 0.00, 18000.00, 'Viluppuram', 'Tambaram', '2501300017', '1', '1', 'upload_files/candidate_tracker/49623415289_BavaniResume.docx', NULL, '1', '2025-01-30', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.Then she is not performed well in the interview, also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '55666', '5151', '1970-01-01', 1, '2025-01-30 07:13:46', 154, '2025-01-30 01:25:40', 0, NULL, 1),
(23886, 'Azhaguthamizh', '6', '9597338633', '8680884988', 'Azhaguthamizh292002@gmail.com', '2001-06-30', 23, '2', '2', 'Vijayakumari', 'Single parent', 20.00, 3, 17.00, 20.00, 'Tambaram', 'Tambaram', '2501300018', '1', '2', 'upload_files/candidate_tracker/62287448514_THAMIZHRESUME.pdf', NULL, '1', '2025-01-30', 1, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '', '', '1970-01-01', 1, '2025-01-30 07:14:56', 154, '2025-01-30 04:12:13', 0, NULL, 1),
(23887, 'Nithish Kumar', '6', '8838923932', '', 'nithishkumar605@gmail.com', '1999-06-26', 25, '2', '2', 'mathesh', 'trailor', 20000.00, 3, 19000.00, 25000.00, 'chennai', 'chennai', '2501300019', '50', '2', 'upload_files/candidate_tracker/77112731725_nitheeshupdated.pdf', NULL, '1', '2025-01-31', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-01-30 07:24:40', 154, '2025-01-31 03:22:52', 0, NULL, 1),
(23888, '', '0', '9940309989', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501300020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-30 07:33:35', 0, NULL, 0, NULL, 1),
(23889, 'Rosee Chandiran', '4', '9688440367', '', 'roseeavsit@gmail.com', '1993-06-04', 31, '2', '1', 'Udhaya kumar', 'Banking', 5.00, 1, 0.00, 4.00, 'Chennai', 'West Saidapet Chennai', '2501300021', '50', '2', 'upload_files/candidate_tracker/20050512824_RoseeResume.pdf', NULL, '1', '2025-01-30', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-30 08:16:09', 154, '2025-01-30 04:13:01', 0, NULL, 1),
(23890, 'Sreesha B', '11', '6369201047', '7904276197', 'sreeshababu618@gmail.com', '2002-06-06', 22, '3', '2', 'Babu', 'bomb squad police officer', 35000.00, 1, 0.00, 10000.00, 'Latteri, Vellore', 'Triplicane, Chennai', '2501300022', '', '1', 'upload_files/candidate_tracker/46687027844_SREESHACVUPDATED.pdf', NULL, '1', '2025-01-30', 0, '', '2', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Currently doing internship', '6', '1', '', '1', '8', '', '2', '2025-05-01', '3', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-30 09:05:22', 154, '2025-01-30 03:01:23', 0, NULL, 1),
(23891, 'Ranjitha v', '4', '7010052115', '', 'ranjithavijayakumar26@gmail.com', '1998-04-12', 26, '2', '1', 'Vignesh (husband)', 'Business', 40000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2501300023', '50', '1', 'upload_files/candidate_tracker/98059755272_Ranjitharesum1.pdf', NULL, '2', '2025-01-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '1', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-30 10:28:00', 1, '2025-01-30 10:33:35', 0, NULL, 1),
(23892, 'Shajakhan m', '6', '8072998287', '8015748908', 'shajahan2732003@gmail.com', '2003-03-27', 21, '2', '2', 'Mohammad yaseen', 'Business', 4.00, 1, 0.00, 18000.00, 'Kodambakkam,Chennai', 'Kodambakkam, Chennai', '2501300024', '50', '1', 'upload_files/candidate_tracker/94724218985_2830.pdf', NULL, '1', '2025-01-31', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate not interest in out side call and no bike also , he need 6.45 logout so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-01-30 11:29:32', 154, '2025-01-31 11:36:38', 0, NULL, 1),
(23893, 'nithish kumar', '4', '8973116144', '', 'nithishkumar605@gmail.com', '1999-06-26', 25, '2', '2', 'madhesh', 'tailor', 20000.00, 3, 0.00, 23000.00, 'chennai', 'guindy', '2501300025', '50', '1', 'upload_files/candidate_tracker/25201437122_nitheeshupdated.pdf', NULL, '1', '2025-01-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-30 12:01:08', 1, '2025-01-30 12:04:30', 0, NULL, 1),
(23894, 'Haricharan subramanian', '4', '8220745105', '', 'riderhari45@gmail.com', '2003-10-05', 21, '2', '2', 'T.subramanian', 'Driver', 15000.00, 1, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2501310001', '1', '1', 'upload_files/candidate_tracker/91483459652_RESUME1.pdf', NULL, '1', '2025-01-31', 0, '', '3', '59', '2025-02-03', 150000.00, '', '1', '1970-01-01', '1', 'Fresher need to train from Scratch can give a try and check in training and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-02-03', 1, '2025-01-31 04:33:21', 60, '2025-02-01 06:42:31', 0, NULL, 1),
(23895, 'dhivakar', '4', '8015821861', '', '18em09dhivakar@gmail.com', '2000-09-19', 24, '2', '2', 'dhanabal', 'milk', 12000.00, 2, 13000.00, 18000.00, 'chennai', 'chennai', '2501310002', '50', '2', 'upload_files/candidate_tracker/32833160318_DHIVAKARsResume3.pdf', NULL, '1', '2025-02-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-31 05:08:27', 1, '2025-01-31 05:13:15', 0, NULL, 1),
(23896, 'Rakesh N', '5', '9566237394', '', 'Rakeshnathaniel@gmail.com', '1993-08-24', 31, '2', '1', 'Ashwini R', 'Mechanical', 50000.00, 1, 18000.00, 25000.00, 'Chetpet', 'Chetpet', '2501310003', '45', '2', 'upload_files/candidate_tracker/11990425204_N.RakeshResumenew.pdf', NULL, '3', '2025-01-31', 1, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit with sales industry coz 6 years experience in operation team but obersvation ability is very poor even sales knowledge also not good and attitude level like fresher category so reject this candidate as well ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2025-01-31 05:10:58', 153, '2025-01-31 11:30:56', 0, NULL, 1),
(23897, 'Nikha . R', '11', '7305622038', '9962851569', 'nighajayanthi24@gmail.com', '2003-05-24', 21, '6', '2', 'Raja.k', 'Fisherman', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2501310004', '', '1', 'upload_files/candidate_tracker/4191508801_Resume.pdf', NULL, '1', '2025-01-31', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable ', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-31 05:21:26', 154, '2025-01-31 11:42:37', 0, NULL, 1),
(23898, 'DIVYASHREE', '11', '8056240719', '', 'shankerdivya4223@gmail.com', '2003-02-04', 21, '6', '2', 'Shankar', 'Security guard', 35000.00, 1, 0.00, 15000.00, 'Chennai royapuram', 'Chennai royapuram', '2501310005', '', '1', 'upload_files/candidate_tracker/36130534403_recentresume.doc', NULL, '1', '2025-01-31', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lagging in communication', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-01-31 05:21:30', 154, '2025-01-31 11:42:24', 0, NULL, 1),
(23899, 'M sindhu Mohan', '5', '9344039567', '9677645794', 'sindhumohan119@gmail.com', '1995-09-11', 29, '2', '2', 'Mohan', 'Retired BSNL', 18000.00, 1, 20000.00, 27000.00, 'Cuddalore district', 'Saidapet', '2501310006', '1', '2', 'upload_files/candidate_tracker/40338656651_sindhu23456789.pdf', NULL, '1', '2025-01-31', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good Communication skills and Limited Technical Expertise then lack of problem solving abilities so  finally we rejected this candidate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', '55634', '55557', '1970-01-01', 1, '2025-01-31 06:11:32', 154, '2025-01-31 03:00:33', 0, NULL, 1),
(23900, 'R.selvi', '6', '9361247611', '', 'selvir7707@gmail.com', '2001-06-11', 23, '1', '2', 'M.Raji (father)', 'Cooli', 200000.00, 1, 15.00, 20.00, 'Thuraipakkam', 'Thuraipakkam', '2501310007', '', '2', 'upload_files/candidate_tracker/84067217804_DOC20240620WA0006..pdf', NULL, '1', '2025-01-31', 0, 'P1404', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.Long Distance Slang Might be very low .also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-01-31 06:21:10', 154, '2025-01-31 12:12:47', 0, NULL, 1),
(23901, 'Sathish C', '6', '6380487355', '', 'sathishchandrasekaran007@gmail.com', '2002-05-27', 22, '2', '2', 'Chandrasekaran M', 'Farmer', 30000.00, 1, 0.00, 16000.00, 'Aranthangi', 'Guduvancheri', '2501310008', '50', '1', 'upload_files/candidate_tracker/48265941390_SATHISHsResume.pdf', NULL, '1', '2025-02-01', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-01-31 06:28:10', 104, '2025-02-01 01:14:21', 0, NULL, 1),
(23902, 'dillibabu', '4', '9342279276', '', 'dilli15092001@gmail.com', '2001-09-15', 23, '2', '2', 'venkatesan', 'leather cutter', 38000.00, 1, 14000.00, 18000.00, 'chennai', 'chennai', '2501310009', '50', '2', 'upload_files/candidate_tracker/38524899502_DILLIBABUVENKATESAN.pdf', NULL, '1', '2025-02-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-31 06:40:28', 1, '2025-01-31 06:45:46', 0, NULL, 1),
(23903, '820333194425', '4', '6382013714', '9363673836', 'selvamaniselvamani187@gmail.com', '2001-06-01', 23, '2', '2', 'Saraswati', 'Farmer', 20000.00, 1, 18000.00, 19000.00, 'Tiruttani', 'Tiruttani', '2501310010', '50', '2', 'upload_files/candidate_tracker/16945386648_SelvamaniResume.pdf', NULL, '3', '2025-01-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-31 06:43:06', 1, '2025-01-31 06:47:27', 0, NULL, 1),
(23904, 'Preethi Grace R D', '6', '7010583497', '', 'preethigrace.rd@gmail.com', '1995-05-04', 29, '2', '1', 'P T Nevil Raj', 'Business', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2501310011', '50', '2', 'upload_files/candidate_tracker/2513075936_PreethiRD.pdf', NULL, '1', '2025-02-01', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was ok with communication but married and mother so canxquott be sure about her stability and time management ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-31 06:43:08', 154, '2025-02-01 10:37:42', 0, NULL, 1),
(23905, 'Chandru V', '6', '7530076851', '6374473861', 'chandruavs10@gmail.com', '2000-02-10', 24, '2', '2', 'Varadharaj', 'Centering Contractor', 18000.00, 2, 180000.00, 300000.00, 'Perambalur', 'Chennai', '2501310012', '42', '2', 'upload_files/candidate_tracker/79490824006_01.pdf', NULL, '1', '2025-01-31', 7, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate unfit for sales, communication not good, lack of confident. reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-01-31 06:46:42', 154, '2025-01-31 12:33:11', 0, NULL, 1),
(23906, '', '0', '9962329733', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501310013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-31 06:51:24', 0, NULL, 0, NULL, 1),
(23907, 'Dharanasri A', '6', '9840516710', '9710606784', 'spadedharr@gmail.com', '2004-05-26', 20, '2', '2', 'Father Name - Anandan K', 'Clerk', 15000.00, 0, 0.00, 20000.00, '90/29 Pillayar Kovil Street Arumbakkam Chennai 106', '90/29 Pillayar Kovil Street Arumbakkam Chennai 106', '2501310014', '45', '1', 'upload_files/candidate_tracker/29753321882_759cbe4860354fe1a78830e496a7ab17.pdf202501292113280000.pdf', NULL, '1', '2025-01-31', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate have better communication and interested and also ok for immediate joining we shall provide 14k as salary kannan sir also checked this candidate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-01-31 06:53:44', 154, '2025-01-31 12:44:28', 0, NULL, 1),
(23908, '451663035254', '4', '7695907595', '9790652680', 'Sgokuldon2411@gmail.com', '2003-06-28', 21, '2', '2', 'Usha', 'Farmer', 18000.00, 1, 0.00, 19000.00, 'Tiruttani', 'Tiruttani', '2501310015', '50', '2', 'upload_files/candidate_tracker/32757190429_GokulResume.pdf', NULL, '3', '2025-01-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-31 06:54:59', 1, '2025-01-31 06:58:48', 0, NULL, 1),
(23909, '', '0', '9962627945', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2501310016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-01-31 07:02:04', 0, NULL, 0, NULL, 1),
(23910, 'Anwar firthos', '4', '9360370284', '9094772204', 'anwarfirthos@gmail.com', '2004-01-29', 21, '2', '2', 'Gani', 'Water can supply', 30000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2501310017', '50', '1', 'upload_files/candidate_tracker/85876200252_ANWAR...RESUME.pdf', NULL, '1', '2025-02-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-31 07:16:00', 1, '2025-01-31 07:19:38', 0, NULL, 1),
(23911, 'Vigneshwaran A', '6', '9361642183', '', 'vickyanbuvpt@gmail.com', '2002-08-03', 22, '2', '2', 'Anbazhagan', 'Farmer', 50000.00, 2, 0.00, 20000.00, 'Perambalur', 'Chennai', '2501310018', '50', '1', 'upload_files/candidate_tracker/86403303140_VigneshwaranAResume.pdf', NULL, '1', '2025-02-01', 0, '', '3', '59', '2025-02-05', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can give a try and check in training period and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2025-02-05', 1, '2025-01-31 07:23:43', 60, '2025-02-04 06:53:48', 0, NULL, 1),
(23912, 'Karthikeyan s', '6', '8015005859', '', 'keyan2021200@gmail.com', '2003-03-29', 21, '2', '2', 'Singaravel', 'Farmer', 25000.00, 2, 0.00, 25000.00, 'Kallakuritchi dist', 'Chennai', '2501310019', '50', '2', 'upload_files/candidate_tracker/15828670573_karthigeyan.doc', NULL, '1', '2025-02-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Not Interested in sales, have done customer care related works  and expecting high package', '', '', '', '', '', '1970-01-01', 1, '2025-01-31 07:33:05', 154, '2025-02-01 10:38:25', 0, NULL, 1),
(23913, 'Roselin P', '6', '7812835519', '9003193847', 'roselinpaulpalani@gmail.com', '2002-12-02', 22, '2', '2', 'Paul palani', 'Factory', 15000.00, 1, 0.00, 20000.00, 'Porur', 'Iyyapanthangal', '2501310020', '50', '1', 'upload_files/candidate_tracker/18938800379_SJResume202402060012370000.pdf', NULL, '3', '2025-02-10', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-01-31 12:18:21', 153, '2025-02-10 01:06:47', 0, NULL, 1),
(23914, 'vasanth kumar', '4', '9080568078', '', 'vasanthmsp6@gmail.c', '2000-05-24', 24, '2', '2', 'murugeshan', 'farmer', 10000.00, 2, 55000.00, 20000.00, 'chennai', 'chennai', '2501310021', '50', '2', 'upload_files/candidate_tracker/93471186925_NAUKRIVASANTHKUMAR1738238292065VasanthKumar2.pdf', NULL, '1', '2025-02-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-31 12:26:26', 1, '2025-01-31 12:29:42', 0, NULL, 1),
(23915, 'abhishek', '4', '8807698695', '', 'abishekabishek7093@gmail.com', '2000-04-11', 24, '2', '2', 'udhya', 'farmer', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2501310022', '50', '1', 'upload_files/candidate_tracker/23342749626_Resume20250131T175642.741.pdf', NULL, '1', '2025-02-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-31 12:32:35', 1, '2025-01-31 12:35:11', 0, NULL, 1),
(23916, '908760045454', '4', '9962846101', '9840313380', 's2bca211903233@gmail.com', '2002-01-25', 23, '2', '2', 'Durai raji', 'Driver', 120000.00, 1, 0.00, 18000.00, 'Ambattur', 'Ambattur', '2501310023', '50', '1', 'upload_files/candidate_tracker/41555631785_VASANTHAKUMARRESUME.pdf', NULL, '1', '2025-02-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-01-31 05:33:00', 1, '2025-01-31 05:43:30', 0, NULL, 1),
(23917, 'Sangeetha sm', '6', '9591769983', '7019863185', 'sssangeetha806@gmail.com', '1992-07-24', 32, '2', '1', 'Sangamesh', 'Manager', 1.00, 0, 19000.00, 35000.00, 'Koramangala', 'Koramangala', '2502010001', '57', '2', 'upload_files/candidate_tracker/36760392628_Resume.pdf', NULL, '3', '2025-02-01', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'suggested ctc 18k if she k then finalize', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-02-01 05:05:01', 60, '2025-02-05 12:44:03', 0, NULL, 1),
(23918, 'Abirami R', '4', '6373437595', '9790380025', 'abiramir7595@gmail.com', '2002-02-20', 22, '2', '2', 'Parents', 'Driver', 25000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2502010002', '1', '1', 'upload_files/candidate_tracker/9141757637_AbiramiRamasamy1.pdf', NULL, '1', '2025-02-01', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales choosing data entry', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-01 05:07:35', 153, '2025-02-01 10:46:47', 0, NULL, 1),
(23919, 'Durgam Kavitha', '6', '8977557816', '', 'durgamha826@gmail.com', '2002-07-04', 22, '2', '2', 'Ramanamma', 'Farmer', 3.50, 1, 0.00, 3.50, 'Puttaparthi', 'BTM layout', '2502010003', '57', '1', 'upload_files/candidate_tracker/80537326175_DurgamKavitha1.pdf', NULL, '3', '2025-02-01', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-01 05:19:51', 154, '2025-02-03 01:04:55', 0, NULL, 1),
(23920, 'Rangareddy Gari Sandhya', '6', '9392702173', '7569781953', 'rangareddygarisandhya278@gmail.com', '2002-08-20', 22, '2', '2', 'Chandra sekhar Reddy', 'Farmer', 3000.00, 2, 0.00, 4.40, 'kotacheruvu', 'BTM Layout', '2502010004', '57', '1', 'upload_files/candidate_tracker/63743372236_rangareddygarisandhya2786742d3eacae393.pdf', NULL, '3', '2025-02-01', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not intrested for voice process', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-01 05:19:53', 154, '2025-02-03 01:05:56', 0, NULL, 1),
(23921, 'DURGADEVI', '4', '9965609767', '9790374187', 'durgadhanush18@gmail.com', '1996-04-18', 28, '2', '2', 'VELAVAN', 'FARMER', 50000.00, 1, 25000.00, 30000.00, 'PUDUKOTTAI', 'NUNGAMBAKKAM', '2502010005', '1', '2', 'upload_files/candidate_tracker/35779389433_DurgaDeviVExeBajaj1.pdf', NULL, '1', '2025-02-01', 15, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55824', '55560', '1970-01-01', 1, '2025-02-01 05:55:12', 154, '2025-02-01 12:13:02', 0, NULL, 1),
(23922, 'Manobala krishnamoorthi', '4', '7010155199', '', 'manobalakrishnamoorthi@gmail.com', '2003-06-06', 21, '2', '2', 'Krishnamoorthi', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2502010006', '1', '1', 'upload_files/candidate_tracker/34652215299_manobala.pdf', NULL, '1', '2025-02-01', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit looking for temporary job...studied banking job and choosing data entry', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-01 05:59:57', 154, '2025-02-01 12:13:17', 0, NULL, 1),
(23923, 'Mugesh Raj', '4', '9442045697', '', 'mukeshravi16@gmail.com', '1998-10-16', 26, '2', '2', 'Ravivarman', 'mining', 25000.00, 1, 20000.00, 25000.00, 'chennai', 'chennai', '2502010007', '50', '2', 'upload_files/candidate_tracker/83031114133_RMUGESHRAJRESUME.pdf', NULL, '1', '2025-02-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-01 06:24:45', 1, '2025-02-01 06:42:40', 0, NULL, 1),
(23924, 'Kanchana Narayanan', '4', '7358472636', '9087129947', 'Kanchana031290@gmail.com', '1990-12-03', 34, '3', '1', 'Narayanan', 'Mechanic', 40000.00, 1, 23000.00, 30000.00, 'Nanganallur', 'Nanganallur', '2502010008', '', '2', 'upload_files/candidate_tracker/44659396284_kanchanaresume.pdf', NULL, '1', '2025-02-01', 15, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'wont suitable for sales ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2025-02-01 06:31:38', 154, '2025-02-01 03:26:02', 0, NULL, 1),
(23925, 'Selvabharathi annadurai', '4', '8124499091', '8680868575', 'selvabharathi921@gmail.com', '2000-12-26', 24, '2', '2', 'Annadurai', 'Business', 28000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2502010009', '50', '1', 'upload_files/candidate_tracker/75570836004_selvaresume.pdf', NULL, '1', '2025-02-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-01 06:33:50', 1, '2025-02-03 04:25:34', 0, NULL, 1),
(23926, 'u syed saifullah', '6', '8939773368', '', 'usyedsaifullah2346@gmail.com', '2003-06-28', 21, '2', '2', 'zahada begum', 'housewife', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2502010010', '50', '1', 'upload_files/candidate_tracker/61496587009_Resume.pdf', NULL, '2', '2025-02-03', 0, '', '3', '59', '2025-02-10', 192000.00, '', '3', '2025-02-10', '2', 'Fresher for our roles Communication Ok Can give a try and check in training  period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2025-02-10', 1, '2025-02-01 07:18:16', 60, '2025-02-08 07:02:49', 0, NULL, 1),
(23927, 'Annapoorani', '4', '6383464057', '', 'annapooranig34@gmail.com', '2002-05-01', 22, '2', '2', 'Nill', 'Nill', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2502010011', '50', '1', 'upload_files/candidate_tracker/24727060920_Resume11111.docx', NULL, '1', '2025-02-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-01 07:19:28', 1, '2025-02-01 08:48:45', 0, NULL, 1),
(23928, '', '0', '9121510853', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502010012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-01 07:26:11', 0, NULL, 0, NULL, 1),
(23929, 'DASAPPAGARI ANILKUMAR', '6', '6302304723', '', 'anilkumargt451@gmail.com', '2000-10-20', 24, '1', '2', 'D Marenna', 'Former', 20000.00, 3, 0.00, 15000.00, 'Konapuram, Gummagatta 515863', 'Marathahalli, Banglore', '2502010013', '', '1', 'upload_files/candidate_tracker/28068650398_ANILRESUME112.pdf', NULL, '1', '2025-02-01', 0, 'C99077', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-01 08:56:12', 154, '2025-02-04 06:08:16', 0, NULL, 1),
(23930, 'Ramkumar', '6', '6383247090', '8883970215', 'ramsandy9788@gmail.com', '2001-08-09', 23, '2', '2', 'Baskar', 'Daily wages', 75000.00, 2, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2502010014', '1', '1', 'upload_files/candidate_tracker/14399171054_RAMKUMAR3.pdf', NULL, '1', '2025-02-01', 0, '', '3', '59', '2025-02-12', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Fresher for our roles can give a try and check in training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1027', '', 'CA130', '5151', '2025-02-12', 1, '2025-02-01 08:57:27', 60, '2025-02-11 07:11:03', 0, NULL, 1),
(23931, 'Ashefa Banu Abdul Khan', '4', '8680047832', '', 'ashefabanu794@gmail.com', '2002-05-19', 22, '2', '1', 'Dinesh', 'Allset business solutions (Tl)', 28.00, 0, 21.00, 26.00, 'Thiruvalluvar', 'Thiruvallur', '2502010015', '45', '2', 'upload_files/candidate_tracker/59075703659_AshefaBanuResume.pdf', NULL, '3', '2025-02-01', 1, '', '3', '59', '2025-02-05', 276000.00, '', '3', '2025-05-30', '2', 'Communication Good Long Distance open to travel as her husband is working near by Long run doubts in this profile', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55824', '55560', '2025-02-05', 1, '2025-02-01 09:18:35', 60, '2025-02-04 06:56:23', 0, NULL, 1),
(23932, 'Pravati mallik', '6', '8861528268', '9972909767', 'spra0748@gmail.com', '2001-01-12', 24, '2', '1', 'Mallikarjun', 'Job', 250000.00, 5, 22000.00, 25000.00, 'Yadgiri karnataka', '7th cross techaras colony,near bsk 2nd stage', '2502010016', '57', '2', 'upload_files/candidate_tracker/7999202282_PRAVATIRESUME.pdf', NULL, '1', '2025-02-01', 1, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-01 09:25:33', 154, '2025-02-03 01:06:40', 0, NULL, 1),
(23933, '', '0', '9597391809', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502020001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-02 12:55:49', 0, NULL, 0, NULL, 1),
(23934, 'D Parasuraman', '6', '7305552857', '9884501760', 'ramand669900@gmail.com', '1999-06-29', 25, '2', '2', 'G E Devaraj', 'Godown incharge', 89000.00, 1, 18000.00, 20000.00, 'No 207 Nehru Nagar 2nd Street Vyasarpadi', 'No 207 Nehru Nagar 2nd Street chennai-39', '2502030001', '50', '2', 'upload_files/candidate_tracker/49120218332_RESUME1.pdf', NULL, '1', '2025-02-03', 10, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not good at communication and also expecting high salary ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-03 04:26:53', 154, '2025-02-03 11:10:59', 0, NULL, 1),
(23935, 'B.MohammedAfnnan', '6', '6381556495', '9597289737', 'affu.afnan10@gmail.com', '2001-01-10', 24, '2', '2', 'B.Faiz ahmed', 'Leader supervisor', 300000.00, 4, 16000.00, 18000.00, 'Chennai Central', 'Jalapat 4 cross 2 street', '2502030002', '50', '2', 'upload_files/candidate_tracker/49661577070_Afnan.pdf', NULL, '1', '2025-02-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-02-03 04:51:43', 154, '2025-02-04 12:23:48', 0, NULL, 1),
(23936, 'Nivyasri Murugesan', '4', '9025103185', '6374546803', 'tvrnivi00@gmail.com', '1999-11-09', 25, '2', '2', 'Murugesan', 'Farmer', 65000.00, 1, 20000.00, 25000.00, '1/77c middle street thiruneuper,thiruvarur 610103', 'kutty street pooja hostel Nungambakkam Chennai', '2502030003', '50', '2', 'upload_files/candidate_tracker/90675022080_Niviresume.docx', NULL, '1', '2025-02-03', 1, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she wont be suitable for sales ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2025-02-03 04:55:24', 154, '2025-02-03 12:09:26', 0, NULL, 1),
(23937, 'Sethupraveen a', '6', '9344036934', '9283307612', 'sethupraveen2418@gmail.com', '2004-01-28', 21, '1', '2', 'Kanniga', 'Student', 9500.00, 1, 0.00, 15000.00, 'Saidapet chennai', 'Saidapet chennai', '2502030004', '', '1', 'upload_files/candidate_tracker/13680578977_SETHUPRAVEENA4.pdf', NULL, '1', '2025-02-03', 0, '77882', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate ok. good skill. previous work from home IT realated . fresher for sales filed. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-02-03 05:12:16', 154, '2025-02-03 12:08:04', 0, NULL, 1),
(23938, 'D.Namasri Devendiran', '6', '7358608265', '9043151900', 'namasridev@gmail.com', '2001-11-16', 23, '2', '2', 'S.devendiran', 'Daily wages', 60000.00, 1, 0.00, 20000.00, '198/2 tsunami kudiyiruppu , Nagapattinam', '267/13 ayothya nagar triplicane Chennai', '2502030005', '50', '1', 'upload_files/candidate_tracker/95682406511_namasriresume4.pdf', NULL, '3', '2025-02-03', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-02-03 05:12:40', 154, '2025-02-03 12:08:39', 0, NULL, 1),
(23939, 'S Aravind', '6', '9345319446', '9094046237', 'aravindaravind8757@gmail.com', '2004-01-04', 21, '3', '2', 'j.saravanan', 'Coolli', 18.00, 1, 13.00, 14.00, 'Koduungaiyur', 'Koduungaiyur', '2502030006', '', '2', 'upload_files/candidate_tracker/13136964345_CV2024020718413357.pdf', NULL, '1', '2025-02-03', 2, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good also he not spoken and answered much more in the interview process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-02-03 05:13:16', 154, '2025-02-03 12:09:48', 0, NULL, 1),
(23940, 'Vijay kishore', '6', '7395976514', '', 'Vijaykishore013@gmail.com', '2000-11-13', 24, '2', '2', 'Venkatesan', 'Construction work', 60000.00, 1, 0.00, 2.50, 'Chennai', 'Pallavaram', '2502030007', '1', '1', 'upload_files/candidate_tracker/84594820949_vijayresume.pdf', NULL, '3', '2025-02-03', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate only interest in international voice process only and only need calling work , not interest in field work so , not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2025-02-03 05:19:25', 154, '2025-02-03 12:09:08', 0, NULL, 1),
(23941, 'jebastin', '6', '7448713797', '', 'jebastinjstn@gmail.com', '2001-07-14', 23, '2', '2', 'johnson', 'tailor', 8000.00, 1, 22500.00, 18500.00, 'saidapet', 'saidapet', '2502030008', '1', '2', 'upload_files/candidate_tracker/91310392850_JebastinCV.pdf', NULL, '1', '2025-02-03', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not willing to work after 6.30PM', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2025-02-03 05:23:58', 154, '2025-02-03 12:08:31', 0, NULL, 1),
(23942, 'manikandan', '6', '7401316997', '', 'manimckandan@gmail.com', '2001-04-09', 23, '2', '2', 'parent', 'auto', 8000.00, 1, 0.00, 250000.00, 't nager', 't nager', '2502030009', '1', '1', 'upload_files/candidate_tracker/23724693920_CV29.pdf', NULL, '3', '2025-02-03', 0, '', '3', '59', '2025-02-04', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok 5050 Sustainability came along with the friends joining itself doubts if joins let us try in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '2025-02-04', 1, '2025-02-03 05:25:51', 60, '2025-02-03 07:29:44', 0, NULL, 1),
(23943, 'Pranav Krishnan', '11', '9962017530', '', 'pranav7574@gmail.com', '2003-10-02', 21, '3', '2', 'krishnan', 'it', 100000.00, 0, 0.00, 10000.00, 'chennai', 'chennai', '2502030010', '', '1', 'upload_files/candidate_tracker/29338355365_CVPRANAV.pdf', NULL, '1', '2025-02-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-03 06:06:02', 154, '2025-02-03 12:21:15', 0, NULL, 1),
(23944, '', '0', '9790919286', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502030011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-03 06:09:40', 0, NULL, 0, NULL, 1),
(23945, '', '0', '9741769614', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502030012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-03 06:31:44', 0, NULL, 0, NULL, 1),
(23946, 'Vishnupriyan samayanan', '11', '8489770191', '8015378769', 'vishnuraja416@gmail.com', '2002-04-17', 22, '6', '2', 'nagajothi s', 'house wife', 100000.00, 1, 0.00, 20000.00, 'madurai', 'madurai', '2502030013', '', '1', 'upload_files/candidate_tracker/6390738554_VishnupriyanSCV2.pdf', NULL, '1', '2025-02-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-03 06:42:47', 1, '2025-02-03 06:50:04', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23947, 'Sowndarya', '4', '9345981295', '9025182049', 'Sowndaryasrinivasan92@gmail.com', '2003-02-09', 21, '2', '2', 'Srinivasan', 'Manager', 30000.00, 0, 0.00, 20000.00, 'Same', 'Chennai', '2502030014', '50', '1', 'upload_files/candidate_tracker/87567242984_SowndaryaSrinivasan.pdf', NULL, '2', '2025-02-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-03 10:15:00', 1, '2025-02-03 10:21:27', 0, NULL, 1),
(23948, 'Saranya S', '6', '6374788708', '8344326113', 'saranyaniya604@gmail.com', '2001-07-09', 23, '1', '2', 'Saravanan', '??', 52000.00, 4, 25000.00, 20000.00, 'Ariyalur', 'Ennore', '2502040001', '', '2', 'upload_files/candidate_tracker/38244197466_Scan04Feb25104358compressed.pdf', NULL, '1', '2025-02-04', 2, 'C99061', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate was basic at communication but cant able to explain her old job process properly and  long distance expecting salary more for fresher', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-04 04:56:08', 154, '2025-02-04 07:05:15', 0, NULL, 1),
(23949, 'Savitha.k', '6', '9363251160', '7092660462', 'savitha9363@gmail.com', '2003-04-08', 21, '2', '2', 'Kanagaraj.S', 'Loadman', 15.00, 2, 0.00, 15000.00, 'No.422 Kattabomman street vyarspadi.chennai-39', '1/7 Raja velu street Perambur, chennai 39', '2502040002', '50', '1', 'upload_files/candidate_tracker/24095985239_Savitha.pdf.pdf', NULL, '1', '2025-02-04', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not so good at communication and also not at all interested and have less confidence', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-04 05:09:27', 154, '2025-02-04 11:51:48', 0, NULL, 1),
(23950, 'Yuvarani R', '6', '9150994142', '9566163851', 'yuvarani3124@gmail.com', '2002-04-30', 22, '2', '2', 'L.Ravi', 'Carpenter', 15000.00, 1, 0.00, 15000.00, 'No 22 chinna thambi street vyasarpadi Chennai 39', 'No 22 chinna thambi street vyasarpadi Chennai 39', '2502040003', '50', '1', 'upload_files/candidate_tracker/52359409757_doc.pdf', NULL, '1', '2025-02-04', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not even try to speak in interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-02-04 05:11:15', 154, '2025-02-04 11:51:09', 0, NULL, 1),
(23951, 'HARIPRASATH', '6', '6381198611', '', 'honesthari2003@gmail.com', '2003-04-09', 21, '2', '2', 'Balaji', 'Driver', 15000.00, 0, 18000.00, 20000.00, 'Chennai', 'Chennai', '2502040004', '50', '2', 'upload_files/candidate_tracker/61061742395_resumecompressed.pdf', NULL, '1', '2025-02-04', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basiic skill. and long distance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-02-04 05:23:05', 154, '2025-02-04 03:37:55', 0, NULL, 1),
(23952, 'Bharathi K', '34', '8925125325', '', 'kbharathi364@gmail.com', '2003-06-30', 21, '2', '2', 'Kalaivani k', 'House keeping', 16000.00, 2, 0.00, 200000.00, 'Chennai City', 'Chennai City', '2502040005', '50', '1', 'upload_files/candidate_tracker/2481496998_BharathiResume.pdf', NULL, '1', '2025-02-04', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-04 05:29:18', 154, '2025-02-04 12:48:32', 0, NULL, 1),
(23953, 'Nijam Mohaideen', '13', '9944358489', '', 'nijammohaideen25@gmail.com', '2000-08-25', 24, '3', '2', 'Abdul Rahim', 'Grocery shop', 15000.00, 2, 0.00, 250000.00, 'Pudukkottai', 'Tambaram, Chennai', '2502040006', '', '1', 'upload_files/candidate_tracker/17636423548_A.NijamMohaideen.pdf', NULL, '1', '2025-02-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-04 05:53:23', 1, '2025-02-04 05:57:11', 0, NULL, 1),
(23954, 'Podaralla vanaja', '6', '9392642936', '9391409763', 'podarallavanaja@gmail.com', '2003-04-15', 21, '1', '2', 'P.Sathyaprasad', 'Auto driver', 5000.00, 1, 0.00, 18000.00, 'Anantapur, andhrapradesh', 'Bengaluru,Karnataka', '2502040007', '', '1', 'upload_files/candidate_tracker/7014158047_VANAJARESUME.pdf', NULL, '1', '2025-02-04', 0, 'C99077', '3', '59', '2025-02-05', 180000.00, '', '3', '2025-05-31', '2', 'Communication Ok 5050 for our roles sustainability doubts preparing IT course internal team reference let us see in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '2025-02-05', 1, '2025-02-04 05:55:53', 60, '2025-02-04 07:52:37', 0, NULL, 1),
(23955, 'R Sanjay Kumar', '4', '6385103411', '', 'Sanjaysk2k@gmail.com', '2003-09-19', 21, '3', '2', 'Gomathi', 'Home maker', 280000.00, 0, 300000.00, 400000.00, 'Chennai', 'Chennai', '2502040008', '', '2', 'upload_files/candidate_tracker/32183551450_Resume.docx', NULL, '1', '2025-02-04', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-04 05:59:52', 154, '2025-02-04 11:58:59', 0, NULL, 1),
(23956, 'charulatha', '6', '9025698551', '9962634923', 'lathacharu783@gmail.com', '2001-06-22', 23, '1', '1', 'ramesh', 'driving', 15000.00, 0, 21000.00, 27000.00, 'tondiyarpet', 'tondiarpet', '2502040009', '', '2', 'upload_files/candidate_tracker/1851176221_CharuResume2.pdf', NULL, '1', '2025-02-04', 40, '77852', '3', '59', '2025-02-11', 240000.00, '', '3', '2025-02-11', '1', 'Communication Ok Can be trained in our roles internal reference Need to check and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2025-02-11', 1, '2025-02-04 06:18:58', 60, '2025-02-11 10:02:14', 0, NULL, 1),
(23957, 'VELAYUTHAM ARUNACHALAM', '6', '9488762975', '7558178469', 'Velayutham565@gmail.com', '2010-02-04', 0, '2', '2', 'ARUNACHALAM L', 'Worker', 30000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Chennai, porur', '2502040010', '45', '1', 'upload_files/candidate_tracker/21508253208_DOC20250203WA0000..pdf', NULL, '1', '2025-02-04', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-04 07:15:47', 154, '2025-02-04 06:46:30', 0, NULL, 1),
(23958, 'BASKAR KRISHNA SENTHIL KUMAR BALAJI', '6', '7558178469', '9488762975', 'baskysin9202@gmail.com', '2002-09-15', 22, '2', '2', 'SENTHIL kumar balaji', 'Labour', 30000.00, 1, 0.00, 20000.00, 'Sivagangai', 'Chennai porur', '2502040011', '45', '1', 'upload_files/candidate_tracker/68349615988_BASKARKRISHNA.SRESUME1.pdf', NULL, '1', '2025-02-04', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-04 07:19:21', 154, '2025-02-04 06:46:18', 0, NULL, 1),
(23959, 'Malaraju sathish kumar', '6', '6309728173', '', 'sathishsiva225@gmail.com', '2001-02-25', 23, '2', '2', 'Hari kishor', 'NA', 30000.00, 2, 0.00, 25.00, 'Andhra Pradesh', 'Bangalore', '2502040012', '57', '1', 'upload_files/candidate_tracker/50078994363_SathishMresume9.pdf', NULL, '1', '2025-02-04', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for short term work and waiting for UPSC ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-04 08:10:53', 154, '2025-02-04 05:57:57', 0, NULL, 1),
(23960, 'Chandru', '6', '9962771426', '', 'chandruuwork03@gmail.com', '2003-04-09', 21, '2', '2', 'Murugan', 'Driver', 40000.00, 1, 0.00, 230000.00, 'Chennai', 'CHENNAI', '2502040013', '1', '1', 'upload_files/candidate_tracker/97076548004_Chandrucv202502042005290000.pdf', NULL, '1', '2025-02-05', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication not well , stammering to while speak , and very lacey , not welling to out side call so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2025-02-04 08:14:16', 153, '2025-02-05 12:23:12', 0, NULL, 1),
(23961, 'Pavithra C', '6', '6374949203', '9677018356', 'pavithraccmc392@gmail.com', '2003-05-13', 21, '2', '2', 'Charles vijayashanthi', 'Painter', 75.00, 1, 0.00, 20000.00, 'Kilpauk', 'Kilapuk', '2502040014', '1', '1', 'upload_files/candidate_tracker/98630403640_PDFReader202502041500.pdf', NULL, '1', '2025-02-04', 0, '', '3', '59', '2025-02-10', 180000.00, '', '1', '1970-01-01', '2', 'Communication Ok Can be trained in our roles need to check in training and confirm', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', 'CA130', '5151', '2025-02-10', 1, '2025-02-04 09:16:10', 104, '2025-02-27 10:25:33', 0, NULL, 1),
(23962, 'Shalini priya', '6', '7200647623', '8438281917', 'shalinipriya@gmail.com', '2002-09-20', 22, '2', '2', 'Venkatesan Shyamala devi', 'Coolie', 75000.00, 1, 0.00, 18000.00, 'Villivakkam', 'Villivakkam', '2502040015', '1', '1', 'upload_files/candidate_tracker/71462921805_ShaliniResume673.pdf', NULL, '1', '2025-02-04', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And performance is little bit good.but her voice is very slow also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-02-04 09:16:41', 154, '2025-02-04 07:05:48', 0, NULL, 1),
(23963, 'K Yashwanth', '6', '7373382337', '', 'yashwanth.krishnakumar@gmail.com', '2003-11-25', 21, '2', '2', 'Krishna kumar & yamuna', 'Site manager', 30000.00, 1, 0.00, 17000.00, '3C, Periyar street, Anagaputhur,Chennai -600070', '3C, Periyar street, Anagaputhur,Chennai -600070', '2502040016', '1', '1', 'upload_files/candidate_tracker/27254237800_YashwanthCV.pdf', NULL, '1', '2025-02-05', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-04 01:18:29', 104, '2025-02-14 09:53:16', 0, NULL, 1),
(23964, 'Abdul Rasheed', '6', '9176467804', '9176482119', 'www.alrasheed017@gmail.com', '2002-11-19', 22, '2', '2', 'parent', 'clerk', 120000.00, 2, 18000.00, 25000.00, 'Chennai', 'Chennai', '2502040017', '50', '2', 'upload_files/candidate_tracker/90094154752_RasheedResume.docx1.docx', NULL, '1', '2025-02-05', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-04 02:51:17', 153, '2025-02-05 12:11:18', 0, NULL, 1),
(23965, 'Asma Farheen', '6', '8428360086', '9840429451', 'farasfarheen@gmail.com', '2002-03-14', 22, '2', '2', 'R mohammed zakir , b abidha', 'Father -sales executive, mother -home maker', 120000.00, 1, 0.00, 15000.00, 'Chennai Metro Region', 'Chennai Metro Region', '2502040018', '1', '1', 'upload_files/candidate_tracker/16718187492_farheenresumenew10746182.pdf', NULL, '1', '2025-02-05', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2025-02-04 04:49:16', 153, '2025-02-05 11:16:30', 0, NULL, 1),
(23966, 'Mohamed irfan', '6', '8667614297', '', 'mohamedirfan7863@gmail.com', '2000-04-27', 24, '2', '2', 'Fathima', 'House wife', 40000.00, 1, 0.00, 17000.00, 'Nagapattinam', 'Royapeta', '2502050001', '1', '1', 'upload_files/candidate_tracker/69442847218_Irfanresumenew123.pdf', NULL, '1', '2025-02-05', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-05 05:44:12', 154, '2025-02-05 01:01:01', 0, NULL, 1),
(23967, 'Ali Abbas.R', '6', '7010231047', '9444929886', '8915aliabbas@gmail.com', '1998-12-27', 26, '2', '2', 'Y.Raza Hussain', 'Late', 25000.00, 1, 0.00, 17000.00, 'Nesapakkam kk nagar chennai 600078', 'Kk nagar', '2502050002', '45', '2', 'upload_files/candidate_tracker/90536677185_resumeAbbasNew.pdf', NULL, '1', '2025-02-05', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-05 06:40:40', 153, '2025-02-05 01:03:46', 0, NULL, 1),
(23968, 'M Sri Lakshmi', '6', '9361486809', '9363622594', 'prabhavathisrilakshmi@gmail.com', '2010-02-05', 0, '2', '2', 'Munisundaram N', 'EB worker', 43000.00, 4, 0.00, 20500.00, 'Gummidipoondi', 'Perambalur', '2502050003', '50', '1', 'upload_files/candidate_tracker/29150277204_SriLakhsmiResume.pdf', NULL, '1', '2025-02-05', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not  good with communication and also not known about job and  not have confidence', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-05 07:52:08', 153, '2025-02-05 02:46:00', 0, NULL, 1),
(23969, 'Kavya k', '6', '6360923886', '', 'Kamala0426@gmail.com', '2001-02-26', 23, '2', '2', 'NA', 'Salary', 250000.00, 0, 22000.00, 26000.00, 'Bangalore, Near Nagasandra Metro Station', 'Bangalore', '2502050004', '57', '2', 'upload_files/candidate_tracker/55888118225_KAVYAKCV.pdf', NULL, '1', '2025-02-05', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'high expectation', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-02-05 08:58:57', 154, '2025-02-07 10:48:08', 0, NULL, 1),
(23970, 'KAYYURU SUREKHA', '6', '7396150195', '8309376419', 'kayyurusurekha12@gmail.com', '2003-07-10', 21, '2', '2', 'Eswaraiah', 'Farmer', 3000.00, 2, 0.00, 20000.00, 'Kayyuru(v), tirupathi(d), andhrapradesh', 'Bengaluru', '2502050005', '57', '1', 'upload_files/candidate_tracker/37007025677_surekha.pdf', NULL, '1', '2025-02-05', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'language known only telugu', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-05 09:00:35', 154, '2025-02-07 10:49:59', 0, NULL, 1),
(23971, 'KRISHNAN S', '6', '9566081358', '9566031873', 'krishvsdevil@gmail.com', '2001-07-03', 23, '2', '2', 'Seetu', 'BBA', 50000.00, 1, 40000.00, 25000.00, 'Kallakurichi', 'Alwarpet', '2502050006', '1', '2', 'upload_files/candidate_tracker/28469467449_KRISHNANRESUME.pdf', NULL, '1', '2025-02-05', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-02-05 09:10:00', 154, '2025-02-05 03:38:02', 0, NULL, 1),
(23972, 'Gokul.S', '6', '7550137103', '7550264103', 'gokulsankar1980@gmail.com', '2002-10-27', 22, '2', '2', 'Sankar', 'Farmer', 20000.00, 1, 0.00, 17000.00, 'West jafferkhanpet, Ashok nagar,Chennai -83', 'West jafferkhanpet, Ashok Nagar, Chennai 83', '2502050007', '57', '1', 'upload_files/candidate_tracker/15325098141_gokul.25.docx', NULL, '1', '2025-02-05', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not intersted telle calling', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-02-05 09:28:10', 154, '2025-02-05 03:33:52', 0, NULL, 1),
(23973, 'Keerthika', '6', '9514684619', '9087675494', 'keerthifeb2@gmail.com', '2004-02-02', 21, '2', '2', 'Venkatesan', 'It', 30000.00, 1, 0.00, 14000.00, 'Sandhiyappan 2nd street otteri chennai 12', 'Sandiyappan 2nd street otteri chennai 12', '2502050008', '50', '1', 'upload_files/candidate_tracker/14373950788_PDFReader202502051518.pdf', NULL, '1', '2025-02-05', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too Long distance so its not work out and she need early log out', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-02-05 09:29:08', 153, '2025-02-05 03:40:56', 0, NULL, 1),
(23974, 'Swathi D', '23', '9629540352', '8056204179', 'swathidhilipkumar08@gmail.com', '2004-03-16', 20, '2', '2', 'Anjali D', 'Business', 35000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2502050009', '50', '1', 'upload_files/candidate_tracker/95482445130_jobapplication.pdf', NULL, '3', '2025-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-05 10:07:02', 1, '2025-02-05 10:11:09', 0, NULL, 1),
(23975, 'shoban.s', '5', '6363466292', '6360954675', 'shobanssarvana76009@gmAil.com', '2001-03-12', 23, '1', '2', 'saravana', 'Electrician', 50000.00, 1, 30000.00, 35000.00, 'ulsoor bangalore', 'murphy town uksoor', '2502050010', '', '2', 'upload_files/candidate_tracker/79531359693_AcctStatementXX3935161020242.pdf', NULL, '2', '2025-02-05', 0, '55833', '3', '59', '2025-02-13', 360000.00, '', '3', '2025-06-27', '1', 'Communication Ok reappeared for the interview should give commitment for the increment can be trained  have releveant exp', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '2025-02-13', 1, '2025-02-05 12:46:56', 153, '2025-02-12 07:01:04', 0, NULL, 1),
(23976, '', '0', '6379891007', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502050011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-05 03:20:48', 0, NULL, 0, NULL, 1),
(23977, 'Nithya amaravathy', '6', '7092551437', '', 'nithyaamar99@gmail.com', '1999-12-11', 25, '2', '2', 'Gopal', 'Cooli', 30000.00, 2, 0.00, 20000.00, 'Chennai, thiruvotiyur', 'Chennai, thiruvotiyur', '2502050012', '1', '1', 'upload_files/candidate_tracker/68751675300_nithyaCVResume1.pdf', NULL, '1', '2025-02-06', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE WAS OK WITH COMMUNICATION BUT NOT OK WITH SALARY AND SHE WAS NOT INTERESTED', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-05 06:15:08', 153, '2025-02-06 01:18:48', 0, NULL, 1),
(23978, '', '0', '7397344476', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502060001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-06 04:02:47', 0, NULL, 0, NULL, 1),
(23979, '', '0', '7305639746', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502060002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-06 04:03:41', 0, NULL, 0, NULL, 1),
(23980, 'Balaji p', '6', '7010603066', '', 'balajivanitha1905@gmail.com', '2002-11-19', 22, '2', '2', 'PANDIAN', 'Own business', 50000.00, 2, 20000.00, 25000.00, 'Kolapakkam', 'Kolapakkam', '2502060003', '50', '2', 'upload_files/candidate_tracker/3358095867_Resume28012025071024pm.pdf', NULL, '1', '2025-02-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok, product knowledge good.1yr experience vizza insurance, salary expectation high like 25k something .pls negotiate the salary and confirm the joining date thanks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-02-06 04:17:01', 153, '2025-02-06 01:19:13', 0, NULL, 1),
(23981, 'Karthika Bommuraj', '4', '8438887179', '9787799409', 'karthikanaveen11@gmail.com', '1996-11-22', 28, '2', '1', 'Bommuraj', 'Muthuraj', 25000.00, 2, 0.00, 12000.00, 'Yagappa Nagar, thanjavur', 'Yagappa nagar, thanjavur', '2502060004', '1', '1', 'upload_files/candidate_tracker/9762285675_CV20250129160655631.pdf', NULL, '1', '2025-02-06', 0, '', '3', '59', '2025-02-12', 150000.00, '', '3', '2025-02-28', '2', 'Communication OK fresher for our role career gap married 2yrs kid 5050 sustainability doubts let us try and check', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-02-12', 1, '2025-02-06 04:21:35', 60, '2025-02-12 09:57:56', 0, NULL, 1),
(23982, 'AjayKumar S', '6', '9025612251', '', 'ajaysakthi1302@gmail.com', '2002-02-13', 22, '2', '2', 'Shanmugavel. M', 'Coolie', 15000.00, 2, 19000.00, 25000.00, 'Naduvirpatti-ettayapuram', 'Tambaram', '2502060005', '50', '2', 'upload_files/candidate_tracker/8024621220_AJAYKUMARSRESUME1.pdf', NULL, '1', '2025-02-06', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not intrested in sales and not fit for sales also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-02-06 04:23:45', 153, '2025-02-06 02:43:08', 0, NULL, 1),
(23983, 'Bhathula Vamsi', '6', '7702313816', '7702840300', 'bhathulavamsi61@gmail.com', '2002-02-06', 23, '3', '2', 'Ramesh', 'Farmer', 40000.00, 1, 0.00, 20000.00, 'Chittoor district Andhra Pradesh India', 'Devarachikannahalli Bengaluru Karnataka India', '2502060006', '', '1', 'upload_files/candidate_tracker/43432970643_vamsi2.pdf', NULL, '1', '2025-02-06', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication problem', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-06 04:52:22', 154, '2025-02-07 10:55:44', 0, NULL, 1),
(23984, 'Karthik anandh', '6', '9686649088', '8688546173', 'akarthikraju143@gmail.com', '2002-01-24', 23, '3', '2', 'A.Chandhra', 'Business', 40000.00, 1, 0.00, 20000.00, 'C.m.colony(v),chittoor(D), Andhrapradesh -517001', 'Krishna layout,devarachikanahalli,Bangalore-560002', '2502060007', '', '1', 'upload_files/candidate_tracker/75677733307_CV2024101010005266.pdf', NULL, '1', '2025-02-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication is good  and confident', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-06 04:54:37', 154, '2025-02-07 10:52:32', 0, NULL, 1),
(23985, 'pradeep m', '6', '8122853575', '', 'pradeep9500996946@gmail.com', '2004-01-06', 21, '2', '2', 'maheshwari', 'tailor', 25000.00, 0, 15000.00, 18000.00, 'korukkupet', 'korukkupet', '2502060008', '1', '2', 'upload_files/candidate_tracker/5170804327_M.PRADEEPRESUME.pdf', NULL, '1', '2025-02-06', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was not ok with communication and not having interest at sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-06 05:03:31', 153, '2025-02-06 11:23:26', 0, NULL, 1),
(23986, 'SAM JOHN D', '13', '8903961397', '', 'samjarvis890@gmail.com', '1998-03-10', 26, '3', '2', 'DHAVITHU RAJAN Y', 'PAINTING', 100000.00, 1, 0.00, 10.00, 'Rajapalayam', 'Chennai', '2502060009', '', '1', 'upload_files/candidate_tracker/29096985965_SamphpResume.pdf', NULL, '1', '2025-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-06 05:08:49', 1, '2025-02-06 05:15:52', 0, NULL, 1),
(23987, 'Archana G N', '6', '9482133151', '9492133151', 'archanapoojari567@gmail.com', '2001-10-21', 23, '2', '2', 'Narasimha poojari', 'Farmer', 35000.00, 0, 0.00, 200000.00, 'Chikkamagaluru', 'BTM layout Bengaluru', '2502060010', '57', '1', 'upload_files/candidate_tracker/39166310105_Archanaresume.pdf', NULL, '1', '2025-02-06', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Suggested ctc 14 to 15k', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-02-06 05:10:37', 154, '2025-02-07 10:56:55', 0, NULL, 1),
(23988, '3899 3329 2653', '20', '8489969061', '9944111103', 'yogalakshmi19012004@gmail.com', '2004-01-19', 21, '2', '2', 'daily wages', 'daily wages', 150000.00, 1, 0.00, 20000.00, 'No. ; 498 kamarajar street aranvoyal thiruvallur', 'avadi', '2502060011', '50', '1', 'upload_files/candidate_tracker/47132424800_2a6ba294cb024f37991c6b7c3d456f25.pdf', NULL, '1', '2025-02-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-06 05:18:20', 1, '2025-02-06 05:37:53', 0, NULL, 1),
(23989, 'Deviambika', '4', '7448732105', '8939377149', 'Ambika2000devi@gmail.com', '2000-02-25', 24, '2', '2', 'Ambika', 'Fishermen', 20000.00, 1, 20000.00, 20000.00, 'Chennai', 'chennai new washermenpet', '2502060012', '1', '2', 'upload_files/candidate_tracker/17548580799_DOC20250106WA0010.pdf', NULL, '1', '2025-02-06', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55824', '55560', '1970-01-01', 1, '2025-02-06 05:21:41', 153, '2025-02-06 02:43:59', 0, NULL, 1),
(23990, 'V.Keerthana', '4', '8428063585', '9940464614', 'keerthibmc404@gmail.com', '1994-11-04', 30, '2', '1', 'Viswanathan (late)', 'Nil', 100000.00, 1, 0.00, 200000.00, 'Chennai, Perambur', 'Nil', '2502060013', '45', '1', 'upload_files/candidate_tracker/60551151723_RESUME112.pdf', NULL, '1', '2025-02-06', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2025-02-06 05:26:25', 153, '2025-02-06 02:46:21', 0, NULL, 1),
(23991, 'Suvarna R', '6', '9902770233', '9880380698', 'suvarnars108@gmail.com', '1989-07-31', 35, '2', '1', 'Rangappa', 'Own business', 50000.00, 2, 0.00, 35000.00, 'Shivamoga', 'Bangalore', '2502060014', '57', '2', 'upload_files/candidate_tracker/40243247937_SuvarnaResume2111111.pdf', NULL, '1', '2025-02-06', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expectation its high', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-02-06 05:39:01', 154, '2025-02-07 10:58:15', 0, NULL, 1),
(23992, 'Vinobala', '4', '7708049955', '', 'Vinobala817@gmail.com', '2000-07-27', 24, '2', '2', 'Palanimurugan', 'Auto driver', 15000.00, 1, 18000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2502060015', '1', '2', 'upload_files/candidate_tracker/76716651052_vinobala.Resume1.docx', NULL, '1', '2025-02-06', 20, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is ok with the profile father auto driver...he is completed diploma and worked as a medical rep for 3 years 15k salary....due to salary issue releived from the job ....and worked few month in mobile shop and joined in muthood telecalling loan section 4 month taking two day leave company absconded.....have laptop expected 15k..imeediate joining...kindly check once and confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-06 05:58:46', 153, '2025-02-06 11:35:17', 0, NULL, 1),
(23993, 'Mohamed faisel', '6', '8610649302', '9025730383', 'Www.faiselfaisel548@gamil.com', '1998-09-30', 26, '2', '2', 'Syed Mohamad', 'Travels', 30000.00, 2, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2502060016', '50', '1', 'upload_files/candidate_tracker/64280414745_RESUMEfaisel.pdf', NULL, '1', '2025-02-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales and he is not willing in out side work', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-02-06 06:03:17', 153, '2025-02-08 12:21:46', 0, NULL, 1),
(23994, 'SUSHMITHA P', '6', '9741796802', '', 'Prakashsushmitha734@gmail.com', '1993-06-27', 31, '2', '1', 'Prakash R', 'Accounts manager', 700000.00, 1, 29900.00, 40000.00, '#864/2 sri veerabhadraswamy layout uttarahalli', '#864/2 sri veerabhadraswamy layout uttarahalli', '2502060017', '57', '2', 'upload_files/candidate_tracker/46292228158_psushmithacv1.pdf', NULL, '1', '2025-02-06', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'expectation its very high', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-02-06 07:03:25', 154, '2025-02-17 12:07:30', 0, NULL, 1),
(23995, 'Kaviya Thalapathi', '6', '7338919032', '9380905963', 'kaviyathalapathi02@gmail.com', '2003-11-02', 21, '2', '2', 'Thalapathi R', 'Driver', 15000.00, 1, 0.00, 14000.00, '2/20 City babu street periyapanicherry, Kundrathur', '2/20 City babu street periyapanicherry, Kundrathur', '2502060018', '50', '1', 'upload_files/candidate_tracker/46330001026_Kaviya.T.docx', NULL, '1', '2025-02-07', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication is good but location in periyapaniyur its long distance so, sustainability doubt and then her is interested in IT ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-06 07:40:56', 153, '2025-02-07 12:36:43', 0, NULL, 1),
(23996, '', '0', '7397251511', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502060019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-06 07:54:17', 0, NULL, 0, NULL, 1),
(23997, '', '0', '8489883872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502060020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-06 09:13:52', 0, NULL, 0, NULL, 1),
(23998, '', '0', '9940021591', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502060021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-06 10:14:07', 0, NULL, 0, NULL, 1),
(23999, '', '0', '8098746796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502060022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-06 10:26:18', 0, NULL, 0, NULL, 1),
(24000, '', '0', '9363289975', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502060023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-06 11:28:42', 0, NULL, 0, NULL, 1),
(24001, '', '0', '6369943788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502060024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-06 08:01:56', 0, NULL, 0, NULL, 1),
(24002, 'NITHYAPRIYA P', '11', '7358630976', '6383681475', 'nithyapriya492018@gmail.com', '2000-09-04', 24, '2', '2', 'Palanivel.M', 'Auto driver', 150000.00, 0, 3.00, 18000.00, 'Vyasapadi', 'Vyasapadi', '2502070001', '50', '2', 'upload_files/candidate_tracker/88205482027_AllPDFcurrentresume.pdf', NULL, '1', '2025-02-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-07 04:00:16', 1, '2025-02-07 04:07:39', 0, NULL, 1),
(24003, 'Rasigapriya R', '33', '8754226500', '7708157316', 'rasigapriya1014@gmail.com', '2003-06-10', 21, '6', '2', 'rajasekar', 'police', 300000.00, 0, 0.00, 100000.00, 'Dharmapuri', 'Dharmapuri', '2502070002', '', '1', 'upload_files/candidate_tracker/60634425896_RasigapriyaRFlowCVResume20241214compressed.pdf', NULL, '1', '2025-02-07', 0, '', '1', '104', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-07 04:38:25', 104, '2025-02-07 06:50:20', 0, NULL, 1),
(24004, 'Jagan', '6', '7358161393', '9962519083', 'Jaganleo143@gmail.com', '2003-07-19', 21, '2', '2', 'E. Mahendran', 'Telecaller', 15000.00, 1, 0.00, 15000.00, 'No.4 5th cross st sivarajipuram,puliyanthope,Ch-12', 'No.4 5th cross st sivarajipuram,puliyanthope,Ch-12', '2502070003', '50', '1', 'upload_files/candidate_tracker/32063491547_JaganResume.pdf', NULL, '1', '2025-02-07', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for the job. very silent person and no other skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-02-07 04:53:22', 153, '2025-02-07 12:20:16', 0, NULL, 1),
(24005, 'JOYAL RAJ.K', '6', '7904133027', '', 'joelrajjjcc@gmail.com', '2002-10-04', 22, '2', '2', 'S. KAVIRAJ', 'TELECALLER', 15000.00, 1, 14000.00, 18000.00, 'No 3 cox street CHINTHARIPET CHENNAI 2', 'No 3 cox street CHINTHARIPET CHENNAI 2', '2502070004', '50', '2', 'upload_files/candidate_tracker/86818160976_CamScanner0207202510.32.pdf', NULL, '1', '2025-02-07', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication is good but existing working customer support so, his look like same customer support ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-07 04:54:20', 153, '2025-02-07 11:14:25', 0, NULL, 1),
(24006, 'Logeswaran pavadai', '33', '9944962414', '', 'lwaran691@gmail.com', '2001-04-25', 23, '3', '2', 'Pavadai', 'Farmar', 4000.00, 2, 0.00, 18000.00, '2/303 murugan Kovil st nanakkalmedu Villupuram', 'A3 Housing board saivamuthaya street Royapetta', '2502070005', '', '1', 'upload_files/candidate_tracker/58119659786_IMG20250125WA0000.pdf', NULL, '1', '2025-02-07', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales team', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-07 05:04:24', 104, '2025-02-07 06:50:38', 0, NULL, 1),
(24007, 'Mani J', '6', '8056272991', '9941860508', 'manigandan9346@gmail.com', '2002-09-26', 22, '2', '2', 'Jayakumar', 'Car driver', 45000.00, 1, 0.00, 230000.00, 'Chennai ( New wasermenpet )', 'Chennai ( New wasermenpet)', '2502070006', '50', '1', 'upload_files/candidate_tracker/83388041016_mani2.pdf', NULL, '1', '2025-02-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 05:46:21', 153, '2025-02-07 11:41:30', 0, NULL, 1),
(24008, 'Shahil Vengatesh Sukumar', '4', '7339205824', '', 'shahilvengatesh11@gmail.com', '2001-09-19', 23, '2', '2', 'Sukumar', 'Tailor', 30000.00, 1, 0.00, 17000.00, 'Thanjavur', 'Thanjavur', '2502070007', '1', '1', 'upload_files/candidate_tracker/14289989604_resume.pdf', NULL, '1', '2025-02-07', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-07 05:48:53', 153, '2025-02-07 11:31:29', 0, NULL, 1),
(24009, '', '0', '9342673977', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502070008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-07 05:57:07', 0, NULL, 0, NULL, 1),
(24010, 'Krishanth', '4', '9342431054', '', 'kdkrishanth66@gmail.com', '2002-08-08', 22, '2', '2', 'Yacob', 'Chief', 12000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2502070009', '1', '1', 'upload_files/candidate_tracker/68584152702_krishcv.pdf.pdf', NULL, '1', '2025-02-07', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite for telecalling..have no hope in telecalling', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-07 06:10:10', 153, '2025-02-07 11:54:30', 0, NULL, 1),
(24011, 'S HARSHINI', '34', '9345337998', '', 'harshiniss04@gmail.com', '2004-11-04', 20, '2', '2', 'Senthil Kumari S', 'Teacher', 15000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2502070010', '27', '1', 'upload_files/candidate_tracker/59116039281_FinalCVHarshini4.pdf', NULL, '1', '2025-02-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 06:11:07', 153, '2025-02-07 01:04:47', 0, NULL, 1),
(24012, 'S U SALIHA ATHIYYA', '34', '7010356948', '', 'salihaathiyya@gmail.com', '2005-03-17', 19, '2', '2', 'Upayadulla S L', 'Driver', 8000.00, 2, 0.00, 20000.00, 'Kanchipuram', 'Royapuram, Chennai', '2502070011', '27', '1', 'upload_files/candidate_tracker/61193199298_Resume.pdf', NULL, '1', '2025-02-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 06:11:33', 153, '2025-02-07 01:04:54', 0, NULL, 1),
(24013, 'ASHIFA', '34', '9841663377', '9841332020', 'ashifa.mk2002@gmail.com', '2002-11-06', 22, '2', '2', 'A.Muhammadu kamaludeen', 'Civil engineer', 15000.00, 1, 0.00, 20000.00, 'ARUMBAKKAM CHENNAI', 'ARUMBAKKAM CHENNAI', '2502070012', '27', '1', 'upload_files/candidate_tracker/3091120709_ASHIFARESUMEPDF.pdf', NULL, '1', '2025-02-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 06:11:48', 153, '2025-02-07 01:12:18', 0, NULL, 1),
(24014, 'Fathima sabana M', '34', '6385103748', '', 'shafanashafana39@gmail.com', '2000-10-24', 24, '2', '2', 'M.asiya banu', 'House wife', 10000.00, 2, 0.00, 20000.00, 'Triplicane chennai', 'Triplicane Chennai', '2502070013', '27', '1', 'upload_files/candidate_tracker/85243657974_FathimaSabanaresume1.pdf', NULL, '1', '2025-02-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 06:11:51', 153, '2025-02-07 01:12:11', 0, NULL, 1),
(24015, 'Sowmiya V', '34', '9384136895', '9940914574', 'vengadeshsowmiya0604@gmail.com', '2005-04-06', 19, '2', '2', 'Vengadesh', 'Farmer', 8000.00, 0, 0.00, 20000.00, 'No 71/45 middle street melattur Thanjavur', 'No 9/5 pragadeshwarar nagar Arumbakkam chennai', '2502070014', '27', '1', 'upload_files/candidate_tracker/31283250123_CV2025012722112538.pdf', NULL, '1', '2025-02-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 06:11:59', 153, '2025-02-07 01:01:05', 0, NULL, 1),
(24016, 'Preethi lalithkumar', '34', '8056833806', '9677044803', 'lpreethi400@gmail.com', '2005-05-19', 19, '2', '2', 'N. Lalith kumar', 'Electrician', 15000.00, 1, 0.00, 20000.00, 'Saidapet chennai- 15', 'Saidapet chennai- 15', '2502070015', '27', '1', 'upload_files/candidate_tracker/55127393596_CV202501272101586.pdf', NULL, '1', '2025-02-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 06:12:04', 153, '2025-02-07 01:07:30', 0, NULL, 1),
(24017, 'Anisha Mariam.A', '34', '9342642817', '', 'anishamariam25092004@gmail.com', '2004-09-25', 20, '2', '2', 'Amanulla', 'Chef', 8000.00, 1, 0.00, 20000.00, 'Tondiarpet Chennai', 'Tondiarpet Chennai', '2502070016', '27', '1', 'upload_files/candidate_tracker/12263819670_DOC20250123WA0005..pdf', NULL, '1', '2025-02-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 06:12:58', 153, '2025-02-07 01:03:49', 0, NULL, 1),
(24018, 'K. M. Noorul Naufila', '34', '8838243553', '', 'naufilanoorul@gmail.com', '2004-11-21', 20, '2', '2', 'Kithur Mohideen', 'Business', 18000.00, 1, 0.00, 20000.00, 'Pudupet, Chennai', 'Pudupet, Chennai', '2502070017', '27', '1', 'upload_files/candidate_tracker/48385280472_WhiteMinimalistResume202501231316310000.pdf', NULL, '1', '2025-02-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 06:13:21', 153, '2025-02-07 01:06:00', 0, NULL, 1),
(24019, '', '0', '8667663484', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502070018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-07 06:46:03', 0, NULL, 0, NULL, 1),
(24020, 'Yasmin Shameem', '34', '8925113324', '9094065248', 'shameerayasmin0786@gmail.com', '2005-05-09', 19, '2', '2', 'Parveen.S', 'Sales representative', 10000.00, 3, 0.00, 20000.00, '70/120 vanniyar 2 nd lane choolaimedu Chennai', '70/120 vanniyar 2 nd lane choolaimedu Chennai', '2502070019', '27', '1', 'upload_files/candidate_tracker/54101776803_Resume5.pdf', NULL, '1', '2025-02-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 07:31:50', 153, '2025-02-07 01:20:37', 0, NULL, 1),
(24021, 'Sumaya Shaik M', '34', '8248222144', '8939039503', 'Yasmins.ecsan22@jbascollege.edu.in', '2005-08-27', 19, '2', '2', 'Mujeeb shaik A', 'Coolie', 70000.00, 1, 0.00, 20000.00, 'Purasawalkam', 'Purasawalkam', '2502070020', '27', '1', 'upload_files/candidate_tracker/46129266292_Sumaiyaresume.pdf', NULL, '1', '2025-02-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 07:31:58', 153, '2025-02-07 02:32:32', 0, NULL, 1),
(24022, '', '0', '7358540323', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502070021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-07 07:32:34', 0, NULL, 0, NULL, 1),
(24023, 'N Anandha saran', '6', '9385761826', '9965769056', 'sarananand2711@gmail.com', '2000-11-27', 24, '2', '2', 'P Nagarajan', 'Painter', 12000.00, 1, 0.00, 15000.00, 'Aruppukottai', 'Arumbakkam', '2502070022', '50', '1', 'upload_files/candidate_tracker/13045503431_BlueSimpleProfessionalCVResume1.pdf', NULL, '1', '2025-02-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE COMMUNICATION WAS GOOD AND ALSO INTERESTED IN SALES  AND OK FOR IMMEDIATE JOINING WE SHALL PROVIDE 15K AS SALARY', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-07 07:55:12', 153, '2025-02-08 02:47:24', 0, NULL, 1),
(24024, 'MOHSINA K', '34', '7397298706', '', 'Mohaina022003@gmail.com', '2003-12-02', 21, '2', '2', 'A M KHALID BASHA', 'OLD CLOTH MERCHANT', 15000.00, 5, 0.00, 18000.00, 'Pulianthope, chennai 12', 'Pulianthope, Chennai 12', '2502070023', '27', '1', 'upload_files/candidate_tracker/88004941875_MOHSINAK202502071225340000.pdf', NULL, '1', '2025-02-07', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 08:01:07', 153, '2025-02-07 02:35:40', 0, NULL, 1),
(24025, 'Chandhini S.T', '34', '9600727857', '', 'Chandhinist2004@gmail.com', '2004-09-15', 20, '2', '2', 'Zareen', 'House wife', 15000.00, 5, 0.00, 20000.00, 'Chennai', 'Chennai', '2502070024', '27', '1', 'upload_files/candidate_tracker/66805441257_ImagetoPDF2025012819.37.51.pdf', NULL, '1', '2025-02-07', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-07 08:01:24', 153, '2025-02-07 02:36:01', 0, NULL, 1),
(24026, 'PRASANTH SENATHIPATHI', '11', '9655419646', '', 'prasanthips9655@gmail.com', '2002-11-04', 22, '2', '2', 'Senathipathi', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Dharapuram', 'Shipskart', '2502070025', '50', '1', 'upload_files/candidate_tracker/64223578164_Prasanth.SCV.docx', NULL, '1', '2025-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-07 08:02:24', 1, '2025-02-07 08:10:52', 0, NULL, 1),
(24027, '', '0', '9080196051', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502070026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-07 08:05:09', 0, NULL, 0, NULL, 1),
(24028, 'Yogesh Yadav s', '6', '9449466746', '', 'yogeshyadav94494@gmail.com', '2002-04-04', 22, '2', '2', 'Srinivas', 'Food business', 400000.00, 1, 0.00, 20000.00, 'Bangalare', 'Bangalare', '2502070027', '57', '1', 'upload_files/candidate_tracker/61369288429_2.pdf', NULL, '1', '2025-02-07', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'lack of communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-07 08:05:54', 154, '2025-02-07 02:48:37', 0, NULL, 1),
(24029, 'Gowtham kumar', '4', '9080106051', '', 'gowthamkumar2021@gmail.com', '2002-02-25', 22, '2', '2', 'Kumar', 'Business', 200000.00, 1, 0.00, 20000.00, 'Vadaplani', 'Vadaplani', '2502070028', '50', '1', 'upload_files/candidate_tracker/2599159606_Gowthamresume1.pdf', NULL, '1', '2025-02-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-07 08:08:06', 1, '2025-02-07 08:11:10', 0, NULL, 1),
(24030, 'Adhithan Gunasekar', '4', '9500151982', '', 'aadhithyasachin@gmail.com', '1995-12-04', 29, '2', '1', 'Anandhi A', 'Junior officer', 18000.00, 1, 19500.00, 22000.00, 'Chennai', 'Chennai', '2502070029', '50', '2', 'upload_files/candidate_tracker/61030904180_DOC20231212WA0022.docx', NULL, '1', '2025-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-07 11:00:57', 1, '2025-02-07 11:04:37', 0, NULL, 1),
(24031, 'Sneha M', '6', '9043663653', '8190933270', 'Snehasneha72345@gamil.com', '2002-07-24', 22, '2', '2', 'Parents', 'Farmer', 72000.00, 1, 0.00, 15000.00, 'Ariyalur', 'Ambattur, Chennai', '2502070030', '1', '1', 'upload_files/candidate_tracker/38487608648_snehacv.pdf', NULL, '1', '2025-02-11', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-07 01:31:01', 153, '2025-02-11 02:44:07', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24032, 'Marwa S', '4', '9629041165', '', 'officialmarwa704@gmail.com', '2004-01-21', 21, '2', '1', 'Afsal', 'Group Collection Manager', 16000.00, 1, 0.00, 15000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2502080001', '1', '2', 'upload_files/candidate_tracker/40636189501_MarwaSResume.pdf', NULL, '1', '2025-02-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit for telecalling ', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-08 03:49:07', 153, '2025-02-08 10:13:28', 0, NULL, 1),
(24033, 'Srinithi .S', '6', '6382467720', '9840570754', 'Srinithi5raji@gmail.com', '2004-07-05', 20, '2', '2', 'Subramanian (father)', 'Hotel (captain)', 35000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai ,saidapet', '2502080002', '1', '1', 'upload_files/candidate_tracker/34661457697_SRINI.pdf', NULL, '1', '2025-02-08', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CA130', '5151', '1970-01-01', 1, '2025-02-08 04:19:02', 153, '2025-02-08 12:00:08', 0, NULL, 1),
(24034, 'sharma panchanathan', '6', '9094244677', '', 'Sharma2512e@gmail.com', '2002-11-25', 22, '2', '2', 'parent', 'carpenter', 300000.00, 1, 0.00, 15000.00, 'k k nagar', 'kk nagar', '2502080003', '50', '1', 'upload_files/candidate_tracker/58659091432_AdobeScan30Sep2024.pdf', NULL, '1', '2025-02-08', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is unfit for sales profile, communication not good, Appearance not good, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-02-08 04:34:59', 154, '2025-02-08 11:31:17', 0, NULL, 1),
(24035, 'S. Arshath haq', '6', '6385707981', '', 'arshathhaqs@gmail.com', '2002-07-05', 22, '2', '2', 'Shaik farid', 'Mobile accessories shop', 15000.00, 2, 0.00, 14000.00, 'Chennai chepauk', 'Chennai chepauk', '2502080004', '50', '1', 'upload_files/candidate_tracker/46321991915_arshathhaqresume1.pdf', NULL, '1', '2025-02-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-08 04:36:09', 153, '2025-02-08 10:58:10', 0, NULL, 1),
(24036, '', '0', '9965769056', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502080005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-08 04:48:18', 0, NULL, 0, NULL, 1),
(24037, 'Pradeesh Kumar', '6', '7358013328', '', 'pradeeshkumar0211@gmail.com', '2002-11-02', 22, '2', '2', 'ramesh kumar', 'metro water', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2502080006', '50', '1', 'upload_files/candidate_tracker/37369525217_JOB.pdf.pdf', NULL, '1', '2025-02-08', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-08 05:22:43', 153, '2025-02-08 11:30:40', 0, NULL, 1),
(24038, 'monisha sankar', '4', '9361587093', '9789992853', 'monishashankar968@gmail.com', '2003-12-16', 21, '2', '2', 'sankar', 'machine oprator', 12000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2502080007', '50', '1', 'upload_files/candidate_tracker/28205511909_MONISHASresume.pdf', NULL, '1', '2025-02-08', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-08 06:19:27', 153, '2025-02-08 01:01:15', 0, NULL, 1),
(24039, 'Rajesh D', '6', '9384415471', '8939615176', 'd.rajesh9384@gmail.com', '2001-04-10', 23, '2', '2', 'Dharman A', 'Former', 50000.00, 3, 18000.00, 22000.00, 'Villupuram', 'Maduravoyal', '2502080008', '1', '2', 'upload_files/candidate_tracker/97609011731_RajeshResume.1.pdf', NULL, '1', '2025-02-08', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Already having exp arun kindly speak with employee then wee will confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55651', '5151', '1970-01-01', 1, '2025-02-08 06:57:28', 60, '2025-02-11 04:30:56', 0, NULL, 1),
(24040, 'M Musharaf', '2', '8754412445', '6374548585', 'mushumusharaf44@gmail.com', '2002-12-12', 22, '3', '2', 'Musthafa k', 'Superviser', 20000.00, 2, 0.00, 6.00, 'Chennai, Kundrathur', 'Chennai, Kundrathur', '2502080009', '', '1', 'upload_files/candidate_tracker/11143828088_CV2025020717081589.pdf', NULL, '1', '2025-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-08 09:09:06', 1, '2025-02-08 09:13:22', 0, NULL, 1),
(24041, 'Mebukson', '6', '8524996695', '6383632701', 'Mepuson46@gmail.com', '2004-12-14', 20, '2', '2', 'Sathya Rubini', 'Fashion designer', 500000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Tirunelveli', '2502080010', '1', '1', 'upload_files/candidate_tracker/83535248055_SMepuksonResume3.pdf', NULL, '1', '2025-02-10', 0, '', '3', '59', '1970-01-01', 180000.00, '', '2', '1970-01-01', '2', 'communication Ok fresher for our roles 12th graduate can give a try and check in training period', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '2025-02-12', 1, '2025-02-08 12:38:53', 60, '2025-02-12 10:21:32', 0, NULL, 1),
(24042, 'K. Ajay', '6', '8680932730', '9941192552', 'aajaykannan108@gmail.com', '1999-04-23', 25, '2', '2', 'Kannan', 'Driver', 25000.00, 2, 14000.00, 18000.00, 'Chennai', 'K. K. NAGAR', '2502100001', '50', '2', 'upload_files/candidate_tracker/33170747999_Ajay.pdf', NULL, '1', '2025-02-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lets try 7 days then we will confirm fresher salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-02-10 05:13:00', 153, '2025-02-10 12:02:29', 0, NULL, 1),
(24043, 'thilakarnesan k', '5', '8608998198', '9566154813', 'thilakar243@gmail.com', '2000-06-24', 24, '2', '2', 'anjugam', 'house wife', 50000.00, 1, 17500.00, 20000.00, 'chennai', 'ambattur', '2502100002', '50', '2', 'upload_files/candidate_tracker/47035181506_THILAKARNESANRESUME.pdf', NULL, '1', '2025-02-10', 0, '', '3', '59', '2025-02-20', 252000.00, '', '3', '2025-02-25', '1', 'Communication Good Can be trained in our role have exp documents verified need to check and confirm in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '2025-02-20', 1, '2025-02-10 05:31:29', 60, '2025-02-18 04:42:06', 0, NULL, 1),
(24044, 'SATHEES KUMAR B', '6', '9941666103', '9940216842', 'Kumarsathish8795@gmail.com', '1999-10-24', 25, '2', '2', 'Balasubramaniyan S', 'House keeping', 20000.00, 1, 14000.00, 20000.00, 'Thirisulam', 'Thirisulam', '2502100003', '50', '2', 'upload_files/candidate_tracker/24000249784_DOC20250210WA0002..pdf', NULL, '1', '2025-02-10', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-10 05:39:22', 153, '2025-02-10 11:42:42', 0, NULL, 1),
(24045, 'Natchathira C', '4', '9360418792', '8270278849', 'natchathira02@gmail.com', '2002-05-16', 22, '2', '2', 'Chandrabose', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2502100004', '1', '1', 'upload_files/candidate_tracker/63030108997_Natchathira.pdf.pdf', NULL, '2', '2025-02-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not performing well....expected high in fresher....have no clarity in voice and preferred data entry...', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-10 05:44:59', 154, '2025-02-10 01:23:10', 0, NULL, 1),
(24046, '', '0', '6384355123', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-10 05:47:40', 0, NULL, 0, NULL, 1),
(24047, 'Karthick s', '6', '9884855989', '9551156014', 'kavinkarthi758@gmail.com', '1999-11-23', 25, '2', '2', 'Mariya poorani', 'Working', 15000.00, 0, 15000.00, 17000.00, 'No47/48 venkettamal samadhi street purasiwalkkam', 'Chennai', '2502100006', '1', '2', 'upload_files/candidate_tracker/82256182807_karthickresume.pdf', NULL, '1', '2025-02-12', 0, '', '3', '59', '2025-02-17', 210000.00, '', '5', '1970-01-01', '1', 'Communication Ok Need to be trained in our roles check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55666', '5151', '2025-02-17', 1, '2025-02-10 05:48:20', 60, '2025-02-15 04:46:34', 0, NULL, 1),
(24048, 'santhosh', '6', '7338895997', '9710316318', 'santhoshvinayagamurthy22@gmail.com', '2001-12-20', 23, '2', '2', 'vinayagamurthy', 'finance', 500000.00, 1, 240000.00, 300000.00, 'strahans road pattalam chennai', 'Strahans Road Pattalam Chennai', '2502100007', '1', '2', 'upload_files/candidate_tracker/42599158832_SandySatzzlatestCVrelease.pdf', NULL, '1', '2025-02-10', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good English communication skills but attitude and maturity not good he needs so much experience sales so not convinced this profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1027', '', '55634', '55557', '1970-01-01', 1, '2025-02-10 06:24:49', 153, '2025-02-10 12:22:00', 0, NULL, 1),
(24049, '', '0', '9361722204', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502100008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-10 06:26:56', 0, NULL, 0, NULL, 1),
(24050, 'aYYANAR', '13', '7094017928', '8993961397', 'inr70940bca@gmail.com', '1998-06-10', 26, '3', '2', 'Lakshmi', 'Farmer', 15000.00, 4, 0.00, 15000.00, 'Tiruvannamalai', 'Tambaram', '2502100009', '', '1', 'upload_files/candidate_tracker/1173935047_ayyanaritresume.pdf.pdf', NULL, '1', '2025-02-10', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-10 06:37:20', 153, '2025-02-10 12:24:08', 0, NULL, 1),
(24051, 'Preethi k n', '6', '9380018080', '', 'nagarajpreethi74@gmail.com', '2001-09-17', 23, '3', '1', 'Ramesh', 'Tailoring', 50000.00, 0, 0.00, 20000.00, 'Neralakere. Nerlkere post tariker (t)', 'Koramangala', '2502100010', '', '2', 'upload_files/candidate_tracker/76785523778_viewDoc1.pdf', NULL, '1', '2025-02-10', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication problem', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-10 07:08:57', 154, '2025-02-11 09:17:48', 0, NULL, 1),
(24052, 'Vankayala Varalakshmi', '6', '9550894673', '', 'yadavvaralakshmi059@gmail.com', '2003-04-20', 21, '2', '2', 'Nageswara Rao', 'Contractor', 40000.00, 1, 15000.00, 16000.00, 'Tirupati', 'Mico layout,btm layout', '2502100011', '57', '2', 'upload_files/candidate_tracker/991392309_kavitharr11.pdf', NULL, '1', '2025-02-10', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'kannada not known', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-10 07:58:27', 154, '2025-02-11 10:55:50', 0, NULL, 1),
(24053, 'Pedda mavi reddy gari Kavitha sri', '6', '8978371560', '8978344676', 'kavithasri200320@gmail.com', '2003-05-06', 21, '2', '2', 'Hussain kumar reddy', 'Employee', 35000.00, 1, 16000.00, 16000.00, 'Kadapa', 'Sri Lakshmi sreenivasa ladies hostel btm 2 stage', '2502100012', '57', '2', 'upload_files/candidate_tracker/57287314415_kavitharr11.pdf', NULL, '1', '2025-02-10', 1, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication problem', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-10 07:59:49', 154, '2025-02-11 09:19:31', 0, NULL, 1),
(24054, 'Mukthi R', '6', '8431832959', '', 'mukthigowda18@gmail.com', '2000-06-07', 24, '3', '2', 'Raghu T', 'Farmer', 30000.00, 2, 0.00, 400000.00, 'Maddur', 'Bangalore', '2502110001', '', '1', 'upload_files/candidate_tracker/80069568259_mukthi1.pdf', NULL, '1', '2025-02-11', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for IT', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-11 05:06:05', 154, '2025-02-12 12:21:24', 0, NULL, 1),
(24055, 'Ansal ahamed. m', '4', '8012430124', '8015307517', 'aansalahamed@gmail.com', '2005-08-30', 19, '2', '2', 'Makkan mohamed', 'Fisher man', 60000.00, 2, 0.00, 20000.00, 'Thanjavur', 'Chennai, triplecan', '2502110002', '50', '1', 'upload_files/candidate_tracker/48042974403_CV2025020622394880.pdf', NULL, '1', '2025-02-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-11 05:24:46', 1, '2025-02-11 05:35:41', 0, NULL, 1),
(24056, 'Dharanidharan A', '4', '9361876855', '9787138546', 'akdharaniakdharan@gmail.com', '2001-06-08', 23, '2', '2', 'Arumugam R', 'Farmer', 7500.00, 1, 0.00, 20000.00, 'Tuticorin', 'Chennai', '2502110003', '50', '1', 'upload_files/candidate_tracker/56662157394_DDRESUMEFD.pdf', NULL, '1', '2025-02-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-11 05:38:23', 1, '2025-02-11 06:07:49', 0, NULL, 1),
(24057, 'MOHANA PRIYA', '5', '7338884860', '6381105138', 'Mohanapriya.s3005@gmail.com', '2001-05-30', 23, '2', '2', 'Dhana Lakshmi', 'Tailor', 20000.00, 1, 17500.00, 27000.00, 'Pallavaram', 'Pallavaram', '2502110004', '1', '2', 'upload_files/candidate_tracker/84048952682_Resume.pdf', NULL, '1', '2025-02-11', 0, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Gaurav sir has to finalise', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55650', '55560', '1970-01-01', 1, '2025-02-11 06:12:15', 154, '2025-02-11 11:55:59', 0, NULL, 1),
(24058, 'Eswar R', '6', '9080239530', '9884117971', 'eshwarravichandhran@gmail.com', '2002-11-18', 22, '2', '2', 'Ravichandran R', 'Garden supervisor', 20000.00, 1, 22000.00, 18000.00, 'Aminjikarai', 'Aminjikarai', '2502110005', '50', '2', 'upload_files/candidate_tracker/34003352432_MyResume.pdf', NULL, '1', '2025-02-11', 6, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-02-11 06:12:53', 153, '2025-02-11 12:33:51', 0, NULL, 1),
(24059, 'Aakash', '4', '8072581312', '9080239530', 'akashjack154@gmail.com', '2003-09-17', 21, '2', '2', 'Sridhar .d', '20000', 20000.00, 1, 0.00, 19000.00, 'Chennai', 'Chennai', '2502110006', '50', '1', 'upload_files/candidate_tracker/51201360021_Akashresume.docx', NULL, '1', '2025-02-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-11 06:13:08', 154, '2025-02-11 02:36:54', 0, NULL, 1),
(24060, 'Mohamed Adham M', '4', '8015307517', '8012430124', 'mohamedadham0420@gmail.com', '2003-04-20', 21, '2', '2', 'Mohamed Imran', 'Fisher man', 60000.00, 2, 0.00, 20000.00, 'Mallipattinam', 'Chennai, Triplicane', '2502110007', '50', '1', 'upload_files/candidate_tracker/3757018978_MohamedAdham11.pdf', NULL, '1', '2025-02-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-11 06:13:46', 1, '2025-02-11 06:17:11', 0, NULL, 1),
(24061, 'Vibin j', '33', '7356583629', '7902394530', 'jvibin67@gmail.com', '2004-08-05', 20, '4', '2', 'Joy George', 'Mechanic', 25000.00, 1, 16200.00, 18000.00, 'Kerala, palakkad', 'Banglore', '2502110008', '', '2', 'upload_files/candidate_tracker/27967188836_vibinresume.pdf', NULL, '1', '2025-02-11', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-11 06:35:04', 1, '2025-02-12 06:55:28', 0, NULL, 1),
(24062, 'Gokula Kannan', '20', '9500863118', '8883088233', 'gokulakannan875@gmail.com', '1999-01-02', 26, '1', '2', 'RAMESHBABU', 'Driver', 40000.00, 1, 25000.00, 28000.00, 'Salem', 'Salem', '2502110009', '', '2', 'upload_files/candidate_tracker/1151573015_DOC20241015WA0002..pdf', NULL, '1', '2025-02-11', 0, '55870', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-11 06:49:30', 154, '2025-02-11 02:36:38', 0, NULL, 1),
(24063, 'syed mehran', '20', '9739653718', '', 'syedmehransyeds1@gmail.com', '2003-04-01', 21, '2', '2', 'syed nazeer ahmed', 'business', 40000.00, 2, 0.00, 25000.00, 'btm layout', 'btm layout', '2502110010', '18', '1', 'upload_files/candidate_tracker/1064389122_SyedMehranResume.pdf', NULL, '1', '2025-02-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-11 07:10:05', 1, '2025-02-11 07:17:39', 0, NULL, 1),
(24064, 'Sushmitha.A', '4', '7695822514', '', 'sushmithaarokiadass@gmail.com', '1998-07-05', 26, '2', '1', 'Amala Julie.A', 'Serfoji college (lab assistant)', 80000.00, 1, 0.00, 30000.00, 'Michaelpatti', 'Michaelpatti', '2502110011', '1', '1', 'upload_files/candidate_tracker/6153414579_myresume.pdf', NULL, '1', '2025-02-12', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales and team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-11 07:15:04', 153, '2025-02-12 09:58:55', 0, NULL, 1),
(24065, 'RAMACHANDIRAN M', '4', '9788682338', '8760651092', 'murugesanramachandiran4@gmail.com', '2003-06-15', 21, '2', '2', 'Rajeswari', 'Housewife', 5000.00, 1, 0.00, 200000.00, 'South Street Avarampatti,Budalur (TK), Thanjavur', 'South Street Avarampatti,Budalur (TK), Thanjavur', '2502110012', '1', '1', 'upload_files/candidate_tracker/57988331446_RamachandiranResume.pdf', NULL, '1', '2025-02-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit For telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-11 10:57:46', 104, '2025-02-19 10:22:56', 0, NULL, 1),
(24066, 'S Ashwin Prakash', '6', '6380937620', '8072202334', 'ashwinsaravanan22@gmail.com', '2004-06-05', 20, '2', '2', 'Saravanan Annamalai', 'Senior executive', 16000.00, 0, 0.00, 15000.00, 'Korattur chennai', 'Korattur', '2502110013', '50', '1', 'upload_files/candidate_tracker/9450483273_AshwinPrakashresume.pdf', NULL, '1', '2025-02-12', 0, '', '3', '59', '2025-02-17', 192000.00, '', '3', '2025-03-05', '1', 'Communication Ok Can give a try and check in training fresher for our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2025-02-17', 1, '2025-02-11 11:04:54', 60, '2025-02-15 04:48:53', 0, NULL, 1),
(24067, '', '0', '7550262376', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502110014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-11 11:23:57', 0, NULL, 0, NULL, 1),
(24068, 'Abishek', '4', '8939292292', '', 'k.shek0723@gmail.com', '2003-07-23', 21, '2', '2', 'Kandhan.N', 'Security', 20000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2502110015', '50', '2', 'upload_files/candidate_tracker/66431204820_AbiResume.pdf', NULL, '1', '2025-02-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-11 11:30:56', 1, '2025-02-12 04:07:50', 0, NULL, 1),
(24069, 'Vinoth', '4', '8122309794', '9445339794', 'Vinovino9794@gmail.com', '2002-10-10', 22, '2', '2', 'S.R.Sundhar rajan', 'Weavar', 15000.00, 1, 15000.00, 18000.00, '16 kms Nagar bharathi Puram Dindigul', '18 yathaval street porur chennai', '2502110016', '50', '2', 'upload_files/candidate_tracker/15072319278_Vinoth.Resume.pdf', NULL, '1', '2025-02-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-11 11:32:24', 153, '2025-02-12 12:55:14', 0, NULL, 1),
(24070, 'Mahendran P', '6', '8610344495', '6374132429', 'mahendrandce1994@gmail.com', '1994-12-19', 30, '2', '1', 'Meenachi', 'Daily Labour', 30000.00, 2, 18000.00, 20000.00, 'Trichy', 'Trichy', '2502120001', '1', '2', 'upload_files/candidate_tracker/14891878267_Mahendran2.docx', NULL, '3', '2025-02-24', 0, '', '3', '59', '2025-03-06', 216000.00, '', '3', '2025-05-05', '1', 'Communication Ok Can be trained in our roles need to check in training and confirm', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', '5151', '2025-03-06', 1, '2025-02-12 02:13:17', 60, '2025-03-05 05:52:23', 0, NULL, 1),
(24071, 'Mohamed Raiyan', '13', '7449227447', '8675197280', 'mmohamedraiyan@gmail.com', '2001-11-29', 23, '3', '2', 'Mohamed Ali Jinnah', 'Aalim', 15000.00, 2, 0.00, 12000.00, 'Muthupet', 'Triplicane', '2502120002', '', '1', 'upload_files/candidate_tracker/78097355000_RaiyanResume.pdf', NULL, '1', '2025-02-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-12 05:01:02', 1, '2025-02-12 05:09:34', 0, NULL, 1),
(24072, 'Ajithkmuar thulasiraj', '4', '7418834328', '', 'ajithkumarhari263@gmail.com', '1999-03-22', 25, '2', '2', 'Thulasiraj', 'Saree business', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2502120003', '1', '1', 'upload_files/candidate_tracker/20032891243_ajith.docx', NULL, '1', '2025-02-12', 0, '', '3', '59', '2025-02-17', 168000.00, '', '3', '2025-04-17', '1', 'Communication Ok Can be trained in our roles need to check in training and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '2025-02-17', 1, '2025-02-12 05:08:07', 60, '2025-02-15 04:47:41', 0, NULL, 1),
(24073, '904031790477', '35', '6374540632', '', 'vinmani2003@gmail.com', '2003-03-15', 21, '2', '2', 'Vikram', 'Farmer', 60000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2502120004', '50', '1', 'upload_files/candidate_tracker/42506175162_VinmaniVeeramaniResume.pdf', NULL, '1', '2025-02-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-12 05:11:36', 1, '2025-02-12 05:17:08', 0, NULL, 1),
(24074, 'eliza edwin v', '6', '6374220904', '9003528460', 'elizaedein0@gmail.com', '2002-07-30', 22, '2', '2', 'venu', 'b.com general', 80000.00, 1, 17000.00, 18000.00, 'arakkonam', 'ambathur', '2502120005', '1', '2', 'upload_files/candidate_tracker/18024900486_ELIZAEDWINV1.docx', NULL, '3', '2025-02-12', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not good at communication and also less in interested in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-12 05:16:15', 154, '2025-02-12 11:15:55', 0, NULL, 1),
(24075, '', '0', '9884414492', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502120006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-12 06:24:15', 0, NULL, 0, NULL, 1),
(24076, 'Mosina Sherin', '6', '9514055127', '', 'MosinaSherin2801@gmail.com', '2003-10-01', 21, '2', '2', 'Parent', 'Shopkeeper', 20000.00, 2, 0.00, 17000.00, '1/662 sector 1 kodungaiyur chennai 600118', '1/662 sector 1 kodungaiyur chennai 600118', '2502120007', '50', '1', 'upload_files/candidate_tracker/27746964219_ImagetoPDF2024123122.31.19.pdf', NULL, '2', '2025-02-13', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-12 06:32:06', 153, '2025-02-13 11:06:43', 0, NULL, 1),
(24077, '', '0', '9841203263', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502120008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-12 06:34:51', 0, NULL, 0, NULL, 1),
(24078, 'Praveen K S', '11', '8526913444', '6381928659', 'praveenks1112002@gmail.com', '2002-11-01', 22, '3', '2', 'Kalai Selvan R', 'Farmer', 70000.00, 0, 0.00, 200000.00, 'Ayothiyapattinam, Salem', 'Ayothiyapattinam, Salem', '2502120009', '', '1', 'upload_files/candidate_tracker/85062429201_PraveenKS.pdf', NULL, '1', '2025-02-13', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication not good', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-12 06:42:57', 154, '2025-02-13 10:37:36', 0, NULL, 1),
(24079, '', '0', '9942298105', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502120010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-12 06:59:13', 0, NULL, 0, NULL, 1),
(24080, '', '0', '7305881483', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502120011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-12 07:38:06', 0, NULL, 0, NULL, 1),
(24081, 'S.Kalaiselvi', '4', '8778947238', '7338766195', 'kalaikalai43162@gmail.com', '2002-10-30', 22, '2', '2', 'K.sivakumar', 'Cooli', 92000.00, 1, 0.00, 20000.00, '116/7th cross street jothiammal nagar chennai -30', '2/29 1st mandapam road kilpauk garden', '2502120012', '50', '1', 'upload_files/candidate_tracker/57080086937_KALAISELVI.pdf', NULL, '1', '2025-02-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-12 07:53:32', 1, '2025-02-12 08:40:08', 0, NULL, 1),
(24082, '877760818321', '4', '8608232693', '', 'sathishkumar20011126@gmail.com', '2001-11-26', 23, '2', '2', 'Santhi S', 'Home maker', 30000.00, 3, 0.00, 18000.00, 'Chennai Tambaram', 'Chennai Tambaram', '2502120013', '50', '1', 'upload_files/candidate_tracker/62960605292_S.SathishKumarResume1.pdf', NULL, '1', '2025-02-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-12 08:19:14', 1, '2025-02-12 08:24:52', 0, NULL, 1),
(24083, 'M.Sathish kumar', '4', '7358205609', '7305328002', 'sathish19031996@gmail.com', '1996-03-19', 28, '2', '2', 'A.murugananthan', 'Textile', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Perambur', '2502120014', '50', '1', 'upload_files/candidate_tracker/70796666895_CVSathish1.docx', NULL, '1', '2025-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-12 08:54:55', 1, '2025-02-12 08:58:27', 0, NULL, 1),
(24084, 'Pavithra B', '4', '7305877347', '8428890898', 'paviben31@gmail.com', '2001-05-31', 23, '2', '2', 'Bakthavachalam', '10th', 10000.00, 0, 21000.00, 25000.00, 'Chennai', 'Chennai', '2502120015', '50', '2', 'upload_files/candidate_tracker/99215595392_PaviResume.pdf', NULL, '1', '2025-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-12 08:58:46', 1, '2025-02-12 09:02:24', 0, NULL, 1),
(24085, 'Kavyashree p', '6', '7975285548', '9701708222', 'kavyashrisandeep@gmail.com', '2010-02-12', 0, '2', '1', 'Sandeep Kumar', 'Lab technician', 70000.00, 1, 31000.00, 35000.00, 'Madiwala extention jai bheem nagar 1st main road', 'Madiwala extention jai bheem nagar 1st main road', '2502120016', '57', '2', 'upload_files/candidate_tracker/97107959138_KavyashreePCV.pdf', NULL, '1', '2025-02-12', 10, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'hidg expectation salary', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-02-12 09:41:58', 154, '2025-02-14 10:13:40', 0, NULL, 1),
(24086, 'DHARSHINI PRIYA R', '4', '9500981980', '9791018113', 'dharshinirathina2001@gmail.com', '2001-07-22', 23, '2', '2', 'Rathina kumar', 'Land lord', 60000.00, 1, 0.00, 15000.00, '16, Adakara street m.chavadi thanjavur', '16, Adakara street m.chavadi thanjavur', '2502120017', '1', '1', 'upload_files/candidate_tracker/18481458401_Resumedharshinipriya.docx', NULL, '1', '2025-02-13', 0, '', '3', '59', '2025-02-17', 156000.00, '', '3', '2025-02-24', '1', 'Communication Ok  fresher for our insurance sales need to check in training and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '2025-02-17', 1, '2025-02-12 02:28:50', 60, '2025-02-15 04:52:40', 0, NULL, 1),
(24087, 'LogeshwaranB', '6', '6384812023', '', 'logesh.usa19@gmail.com', '2002-02-19', 22, '2', '2', 'Bommaiyan. B', 'Kooli worker', 12000.00, 1, 0.00, 17000.00, 'Theni', 'Theni', '2502130001', '45', '1', 'upload_files/candidate_tracker/69447517580_b.Logeshwaran.CV.pdf', NULL, '1', '2025-02-13', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was ok with communication but long distance and will join at month end and so not sure about his job need', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-13 05:03:35', 153, '2025-02-13 11:07:12', 0, NULL, 1),
(24088, 'Manikandan', '6', '9025745788', '9952674203', 'manikandan07022000@gmail.com', '2000-02-07', 0, '2', '2', 'Mariyammal', 'Farmer', 10000.00, 3, 0.00, 18000.00, 'Vazlimuthur, THIRUVADANAI,RAMANADHAPURAM', 'Ponnamallee, near by bus stand Gandhi nagar', '2502130002', '50', '1', 'upload_files/candidate_tracker/2328643504_PDFScanner22102024115414.pdf', NULL, '3', '2025-02-13', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-02-13 05:07:56', 153, '2025-02-13 11:57:50', 0, NULL, 1),
(24089, 'S HARIHARAN', '4', '8778998120', '9600637418', 'mshariharan050@gmail.com', '2002-02-23', 22, '2', '2', 'Sekar', 'Sales work', 25000.00, 1, 0.00, 15000.00, 'North mein street Thanjavur', 'North mein street Thanjavur', '2502130003', '1', '1', 'upload_files/candidate_tracker/53961268488_RESUMEHARI1.docx', NULL, '1', '2025-02-13', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for job intrested in business only', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-13 05:13:30', 154, '2025-02-13 11:07:39', 0, NULL, 1),
(24090, 'Dhamotharan.s', '4', '8124157614', '9940895445', 'dhamotharan242002@gmail.com', '2002-05-24', 22, '2', '2', 'N.selvam', 'Painter', 15000.00, 1, 0.00, 15000.00, 'Nana sahib layam ,nalukal Mandapam, Thanjavur', 'Thanjavur', '2502130004', '1', '1', 'upload_files/candidate_tracker/49408563479_RESUMEDHAMOTHARAN1.pdf', NULL, '1', '2025-02-13', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not performing well and not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-13 05:14:19', 153, '2025-02-13 11:08:21', 0, NULL, 1),
(24091, 'Manjupriya k', '6', '9789873702', '', 'mp3134572@gmail.com', '2002-11-27', 22, '2', '2', 'Parent', 'No', 40000.00, 1, 1.00, 22000.00, '1394thstreet j j r nagar vysarpadi chennai 600039', 'Chennai', '2502130005', '1', '2', 'upload_files/candidate_tracker/55699883065_Mandy.pdf', NULL, '1', '2025-02-13', 0, '', '3', '59', '2025-02-17', 216000.00, '', NULL, '2025-05-06', '2', 'Communication Ok  have exp in customer support and inbound calls can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55651', '5151', '2025-02-17', 1, '2025-02-13 05:22:34', 60, '2025-02-15 05:42:17', 0, NULL, 1),
(24092, 'Dhiviyan', '13', '9360275478', '8098229231', 'dhonidhiviyan7755@gmail.com', '2002-07-08', 22, '2', '2', 'Thiyagarajan', 'Farmer', 25000.00, 2, 0.00, 3.50, 'Cuddalore', 'Vadapalani, Chennai', '2502130006', '1', '1', 'upload_files/candidate_tracker/46585420098_DHIVIYANRESUME31725514821404Dhiviyan.T.pdf', NULL, '1', '2025-02-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-02-13 05:23:10', 154, '2025-02-13 11:21:23', 0, NULL, 1),
(24093, 'Ayshathul Rabiya.A', '6', '8838316188', '9940385762', 'Ayshuabdul525@gmail.com', '2004-04-28', 20, '2', '1', 'Abdul wahab', 'Mobile service', 30.00, 3, 0.00, 15.00, 'Tondaiyarpet chennai', 'tondaiyarpet chennai', '2502130007', '50', '1', 'upload_files/candidate_tracker/59582791891_AyshathulRabiyaRESUME.pdf', NULL, '1', '2025-02-13', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-13 05:36:14', 153, '2025-02-13 11:45:22', 0, NULL, 1),
(24094, 'N.Vishu Hasini', '11', '9384623487', '9841853417', 'vishuhasinin.02@gmail.com', '2002-12-02', 22, '6', '2', 'S.Natarajan', 'Business', 600000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2502130008', '', '1', 'upload_files/candidate_tracker/35723256901_NresumeVishuHasini.pdf', NULL, '1', '2025-02-13', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our team', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-13 05:44:51', 154, '2025-02-21 01:02:27', 0, NULL, 1),
(24095, 'Sneha S', '11', '9551946462', '', 'snehapooja.ss@gmail.com', '2002-10-19', 22, '6', '2', 'Sivakumar K', 'Post office', 40000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2502130009', '', '1', 'upload_files/candidate_tracker/6155674875_CV2025012412072235.pdf', NULL, '1', '2025-02-13', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitbale', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-13 05:45:01', 154, '2025-02-21 01:02:40', 0, NULL, 1),
(24096, 'Sandeep Elavarasan S', '4', '7708114396', '', 'sandeepsagayaraj22@gmail.com', '2003-12-22', 21, '2', '2', 'Sagaya Raj S', 'Security', 12000.00, 2, 0.00, 18000.00, 'Villupuram', 'Saidapet chennai', '2502130010', '50', '1', 'upload_files/candidate_tracker/74228338835_CV2024071123121576.pdf', NULL, '1', '2025-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-13 05:45:19', 1, '2025-02-13 05:49:33', 0, NULL, 1),
(24097, 'Rishika s', '11', '9677260286', '8925452491', 'Rishikasaravanan2013@gmail.com', '2003-03-20', 21, '5', '2', 'Saravanan.p', 'Labour', 7000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2502130011', '', '1', 'upload_files/candidate_tracker/78495173666_Rishika.pdf', NULL, '1', '2025-02-13', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-13 06:05:38', 154, '2025-05-22 02:42:33', 0, NULL, 1),
(24098, 'Deepika.r', '5', '6385117282', '9566115315', 'deepikaruth23@gmail.com', '2001-03-23', 23, '2', '2', 'Amul.r', 'No', 200000.00, 1, 24000.00, 30000.00, 'No:3/19 ponnagar parivakkam poonamallee ch -56', 'No:39 periyar street a.k.a nagar pudhur Ambattur', '2502130012', '1', '2', 'upload_files/candidate_tracker/50542538550_DEEPIKAResume231.pdf', NULL, '1', '2025-02-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Jagadeesh Team. Immedeate Joiner Expected Salary is 30K but can negotiate her last CTC 24k as she is having a gap', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1027', '', '55634', '55557', '1970-01-01', 1, '2025-02-13 06:30:18', 104, '2025-02-15 06:32:35', 0, NULL, 1),
(24099, '', '0', '9363915800', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502130013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-13 06:32:41', 0, NULL, 0, NULL, 1),
(24100, 'Gayathri A', '6', '9176400931', '', 'gayathrigayuctk16@gmail.com', '2002-07-16', 22, '2', '2', 'Aravindhan L', 'Painter', 12000.00, 1, 16500.00, 20000.00, 'Pallikaranai', 'Pallikaranai', '2502130014', '1', '2', 'upload_files/candidate_tracker/33584679094_DOC20241111WA0001..pdf', NULL, '3', '2025-02-13', 0, '', '3', '59', '2025-02-17', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in calling can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '2025-02-17', 1, '2025-02-13 06:36:30', 60, '2025-02-15 04:55:00', 0, NULL, 1),
(24101, '', '0', '9944078910', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502130015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-13 07:17:18', 0, NULL, 0, NULL, 1),
(24102, 'Mohammed saleem', '11', '7871318402', '6385625401', 'saleemmohammed875@gmail.com', '2002-02-23', 22, '5', '2', 'Amanulla s', 'Driver', 40000.00, 3, 0.00, 1.00, 'Villupuram', 'Chennai', '2502130016', '', '1', 'upload_files/candidate_tracker/67155998245_MohammedSaleemResume20251.pdf', NULL, '1', '2025-02-13', 0, '', '2', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Currently doing internship', '6', '1', '', '1', '8', '', '2', '2025-05-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-13 07:40:13', 154, '2025-02-21 01:02:12', 0, NULL, 1),
(24103, 'Narenraj G', '6', '7395854246', '9952563872', 'narenrajg@gmail.com', '2001-01-19', 24, '3', '2', 'Gunasundar', 'Small business', 18000.00, 1, 0.00, 19000.00, 'Arani', 'Chennai', '2502130017', '', '1', 'upload_files/candidate_tracker/55889688436_Narenrajresume.docx', NULL, '1', '2025-02-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '4', '5', '', '2', '1970-01-01', '3', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-13 07:46:38', 154, '2025-02-13 05:22:41', 0, NULL, 1),
(24104, 'Brindha sarathi B', '6', '7806803664', '9789779026', 'brindhasarathisarathi@gmail.com', '2003-07-19', 0, '3', '2', 'BABU N', 'Daily wages', 17000.00, 2, 0.00, 18000.00, 'Cheyyar Thiruvannamalai District', 'Chennai', '2502130018', '', '1', 'upload_files/candidate_tracker/18850391615_BrindaSarathichennairesumeintern.docx', NULL, '1', '2025-02-13', 3, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-13 09:11:49', 154, '2025-02-13 05:22:57', 0, NULL, 1),
(24105, '', '0', '9840730398', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502130019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-13 09:50:29', 0, NULL, 0, NULL, 1),
(24106, 'Devadharshini', '4', '7339541031', '8807558031', 'ddevadharshini771@gmail.com', '2003-05-04', 21, '2', '2', 'Devendhiran', 'Telly calling', 10000.00, 3, 15500.00, 18000.00, '74,malanlmedu street nedungadu', 'West Saidhapet', '2502130020', '50', '2', 'upload_files/candidate_tracker/98975778113_DEVADHARSHINIRESUME.pdf', NULL, '1', '2025-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-13 11:37:55', 1, '2025-02-14 06:32:55', 0, NULL, 1),
(24107, 'Thilagavathi. D', '6', '6379439013', '9176943460', 'thilakavathikanchana@gmail.com', '2003-10-27', 21, '1', '2', 'Kanchana. D', 'Koli', 1000.00, 0, 0.00, 15000.00, '3/101 sandhiyappan 3 rd, street, otteri , chennai', '3/101 sandhiyappan 3 rd, street, otteri , chennai', '2502140001', '', '2', 'upload_files/candidate_tracker/78429754437_ImagetoPDF2025021219.21.5122.pdf', NULL, '1', '2025-02-14', 0, '', '3', '59', '2025-02-17', 180000.00, '', '1', '1970-01-01', '1', 'Communication ok fresher for our roles but exp in different companies reference try in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2025-02-17', 1, '2025-02-14 04:50:55', 60, '2025-02-15 07:52:05', 0, NULL, 1),
(24108, 'Ramakrishnan N', '13', '9500720305', '8754392256', 'ramspiffy@gmail.com', '2000-02-02', 25, '1', '2', 'Nallaperumal', 'Running a hardware shop', 20000.00, 1, 0.00, 20000.00, 'Tirupur', 'Chennai', '2502140002', '', '1', 'upload_files/candidate_tracker/78012135543_Ramakrishnan.pdf', NULL, '1', '2025-02-14', 0, 'Satheesh', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-14 05:12:05', 153, '2025-02-14 12:30:40', 0, NULL, 1),
(24109, 'Priyatharshini', '6', '6374845404', '9345223677', 'priyatharshinit020@gmail.com', '2003-08-04', 21, '2', '2', 'Thangam', 'Farmer', 10000.00, 3, 0.00, 18000.00, '123,south Street , kombaithozhu,theni dt', 'Perungudi,sarasvathi hostel,kanthanchavadi', '2502140003', '50', '1', 'upload_files/candidate_tracker/80943858563_PanguResume....2.pdf', NULL, '1', '2025-02-14', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-14 05:16:47', 153, '2025-02-14 12:03:14', 0, NULL, 1),
(24110, 'Magesh', '6', '7373894291', '7812814003', 'magesh5605@gmail.com', '1998-05-20', 26, '2', '2', 'Govarathinam', 'Electrician', 30000.00, 2, 0.00, 27000.00, '1/110, Kamarajar street', 'Maddur', '2502140004', '50', '2', 'upload_files/candidate_tracker/67006214288_20250203130630.pdf', NULL, '1', '2025-02-14', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-14 05:35:30', 153, '2025-02-14 12:07:14', 0, NULL, 1),
(24111, 'Kalaiyarasi', '6', '9345223677', '6385873412', 'Kalaikeerthi2002@gmail.com', '2002-08-31', 22, '2', '2', 'Ramadoss', 'Farmer', 10000.00, 1, 18000.00, 20000.00, '1/77 Main road, sozhiyan kottagam', 'Perungudi,sarasvathi hostel,kanthanchavadi', '2502140005', '50', '2', 'upload_files/candidate_tracker/96785438895_Kalaiyarasi2025.pdf', NULL, '1', '2025-02-14', 17, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance not much more,then she is very slow,also she need customer support process only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-02-14 05:39:21', 154, '2025-02-15 07:11:42', 0, NULL, 1),
(24112, 'Dinesh P', '6', '9884330506', '9342066955', 'samisaacjj@gmail.com', '2002-12-23', 22, '2', '2', 'POOSALINGAM K', 'SUPERVISOR', 120000.00, 1, 17000.00, 18000.00, 'Ambattur', 'Ambattur', '2502140006', '1', '2', 'upload_files/candidate_tracker/75078663755_dinesh3.pdf', NULL, '1', '2025-02-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales and dress was not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55651', '5151', '1970-01-01', 1, '2025-02-14 05:46:31', 154, '2025-02-14 11:50:18', 0, NULL, 1),
(24113, 'Dineshiya A', '6', '8838739355', '9942337799', 'Adineshiya2002@gmail.com', '2002-04-11', 22, '2', '2', 'Ayyappan', 'Driver', 15000.00, 2, 0.00, 18000.00, 'Pudukkottai', 'Chennai', '2502140007', '50', '2', 'upload_files/candidate_tracker/65533149263_DINESHIYAACVDOCX.docx.pdf', NULL, '1', '2025-02-14', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'previous loan collection job. not fit for the job . health issues', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-02-14 05:58:04', 153, '2025-02-14 12:04:12', 0, NULL, 1),
(24114, 'murugan nithyabhavani', '6', '9629540161', '6385468911', 'bhavanimurugan02@gmai.com', '2001-11-02', 23, '2', '2', 'm.chitra', 'house wife', 200000.00, 1, 1.00, 16000.00, 'virudhunagar', 'virudhunagar', '2502140008', '50', '2', 'upload_files/candidate_tracker/20015733717_NITHYABHAVANI.pdf', NULL, '1', '2025-02-14', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'previuos loan collection job work. no basic skill . ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-02-14 05:58:18', 153, '2025-02-14 12:14:19', 0, NULL, 1),
(24115, 'Nanditha AM', '6', '8431649815', '', 'amnanditha24@gmail.com', '2010-02-14', 0, '2', '2', 'Murulidhara A S', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'Aralaguppe Tiptur taluk Tumkur district Karnataka', 'BTM layout banglore', '2502140009', '57', '1', 'upload_files/candidate_tracker/12463898565_nanditharesume.pdf', NULL, '1', '2025-02-14', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good communication  salary expectation 16k', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-14 07:53:15', 154, '2025-02-17 04:32:30', 0, NULL, 1),
(24116, 'Sreemagal v', '6', '9345011506', '9600584947', 'sreesreemathi289@gmail.com', '2004-09-28', 20, '2', '2', 'Mathi roja', 'Tailor', 27000.00, 1, 18000.00, 19000.00, 'Chennai', 'Chennai', '2502150001', '1', '2', 'upload_files/candidate_tracker/67049034955_SREEMAGALRESUME.docx', NULL, '1', '2025-02-15', 0, '', '3', '59', '2025-02-20', 180000.00, '', '3', '2025-03-03', '2', 'Communication Ok State Kabadi player max 1yr will travel Previous 6 months exp documents verified need to check in training and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', '55666', '5151', '2025-02-20', 1, '2025-02-15 02:47:55', 60, '2025-02-18 05:39:05', 0, NULL, 1),
(24117, 'Divya dharshini.j', '5', '9150852290', '9789918930', 'dazzlingdivya002@gamil.com', '2002-08-15', 22, '2', '2', 'J.gandhimathi', 'House wife', 400000.00, 2, 18000.00, 22000.00, 'Chennai', 'Chennai', '2502150002', '1', '2', 'upload_files/candidate_tracker/74026358941_DivyadharshiJayasankar.OfferLetter.pdf', NULL, '1', '2025-02-15', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55650', '55560', '1970-01-01', 1, '2025-02-15 04:58:07', 154, '2026-03-11 05:55:31', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24118, 'Viviliyaraj stephenraj', '4', '6369639826', '', 'rajviviliya04@gmail.com', '2002-08-04', 22, '2', '2', 'Stephenraj', 'Driver', 76000.00, 2, 17500.00, 15000.00, '2095, vanadurga nagar , manojipatti, Thanjavur', '2095, vanadurganagar, manojipattai, Thanjavur', '2502150003', '1', '2', 'upload_files/candidate_tracker/85403921527_ViviliyarajS.pdf', NULL, '1', '2025-02-15', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no fit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-15 05:05:44', 104, '2025-02-15 11:01:50', 0, NULL, 1),
(24119, 'Deepika.k', '6', '9841536865', '9543942912', 'deepikakesavan002@gmail.com', '2002-08-15', 22, '2', '2', 'Kesavan', 'Warehouse manager', 300000.00, 1, 15000.00, 25000.00, 'Perambur', 'Perambur', '2502150004', '1', '2', 'upload_files/candidate_tracker/68152183348_Deepikakresume.pdf', NULL, '1', '2025-02-15', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate commuication is very low and very soft and sencitive type so not fit for my team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'CA130', '5151', '1970-01-01', 1, '2025-02-15 05:20:28', 153, '2025-02-15 11:12:17', 0, NULL, 1),
(24120, 'Leela sowmiya D', '4', '9940714670', '', 'leelasowmi26@gmail.com', '2001-05-21', 23, '2', '2', 'Durai, lakshmi', 'Msc', 250000.00, 1, 0.00, 20000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2502150005', '50', '1', 'upload_files/candidate_tracker/20240696833_leelacv.pdf', NULL, '3', '2025-02-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-15 05:34:54', 1, '2025-02-15 05:42:17', 0, NULL, 1),
(24121, 'Arumugam', '4', '8220420952', '7708283854', 'arumugamrm11@gmail.com', '1999-02-11', 26, '2', '2', 'R.muthulakshmi', 'Former', 8000.00, 5, 0.00, 2.00, 'THANJAVUR', 'THANJAVUR', '2502150006', '1', '1', 'upload_files/candidate_tracker/53370870260_ArumugamRResume1.pdf', NULL, '1', '2025-02-15', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is ok with the profile completed mca ...in uG doing 1 years studio job,,,,and doing pg....and worked in local finance job collection.....father passed....mother doing farming...5 children ...first one driver second one in thirupur...third one in IT JOB salary 60k.....2 sisters married....wanted banking related office job....expected 15k....1 hr travel from office to home...orathanadu native have bike...and laptop....he wants to discusss with IT brother and confirm joiningg....kindly check once and confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-15 05:44:10', 104, '2025-02-15 01:23:03', 0, NULL, 1),
(24122, 'Ganesh Kumar', '4', '7092552123', '7200799850', 'gk01468@gmail.com', '2004-03-31', 20, '2', '2', 'Sivasankar P', 'Driver', 25000.00, 1, 18000.00, 20000.00, 'Avadi', 'Avadi', '2502150007', '50', '2', 'upload_files/candidate_tracker/42099213545_CV2025012719212688.pdf', NULL, '1', '2025-02-17', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-15 06:10:04', 1, '2025-02-15 06:28:19', 0, NULL, 1),
(24123, 'Poovarasan', '13', '7397369302', '7358182336', 'poovarasanj72@gmail.com', '1999-04-28', 25, '5', '2', 'Jalendran', 'Fisherman', 35000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2502150008', '', '1', 'upload_files/candidate_tracker/13147877075_Myresume3.pdf', NULL, '1', '2025-02-15', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-15 06:15:22', 153, '2025-02-15 11:54:34', 0, NULL, 1),
(24124, 'PRASANNA . S', '4', '9345685556', '7092552123', 'prasannasivasubramaniyam@gmail.com', '2003-07-19', 21, '2', '2', 'SIVASUBRAMANIYAM', 'Supervisor', 75000.00, 1, 0.00, 20000.00, 'Avadi', 'Pattabhiram', '2502150009', '50', '1', 'upload_files/candidate_tracker/57592212757_Prasanna.pdf', NULL, '1', '2025-02-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-15 06:15:31', 1, '2025-02-15 06:28:24', 0, NULL, 1),
(24125, 'Musthafa Faizur Rahman S', '6', '6382910409', '6382815545', 'Musthafafaiz5@gmail.com', '1997-03-28', 27, '2', '1', 'Afshan farisa', '190000', 15000.00, 1, 18000.00, 20000.00, 'Parreys', 'Seven wells', '2502150010', '50', '2', 'upload_files/candidate_tracker/88905142584_CV2025021422411297.pdf', NULL, '1', '2025-02-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-15 06:24:41', 104, '2025-02-15 03:12:39', 0, NULL, 1),
(24126, 'Malavika Manavalan', '6', '7708768114', '7010644839', 'abithamalavika@gmail.com', '2003-01-21', 22, '2', '2', 'Manavalan D/Pachaiyammal M', 'Own business', 10.00, 2, 0.00, 15.00, 'Irandam kattalai', 'Irandam kattalai', '2502150011', '1', '1', 'upload_files/candidate_tracker/79581055597_IamsharingDOC20240712WA0000.withyou.pdf', NULL, '1', '2025-02-24', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '5', 'Voice too low..', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-02-15 06:42:57', 154, '2025-02-25 06:09:21', 0, NULL, 1),
(24127, 'Frenklin Jones', '6', '9944542806', '7708258380', 'franklinpmgdisha04@gmail.com', '2004-06-13', 20, '2', '2', 'Jegan', 'Salaried', 25000.00, 1, 15.00, 20.00, '31 kottur malayantipattinam pollachi', '31 kottur malayantipattinam pollachi', '2502150012', '1', '2', 'upload_files/candidate_tracker/42974263803_FranklinJonesresume.pdf', NULL, '1', '2025-02-18', 30, '', '3', '59', '2025-02-24', 198000.00, '', '5', '1970-01-01', '2', 'Communication Ok Have few months exp in calling fresher for our roles need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55651', '5151', '2025-02-24', 1, '2025-02-15 02:06:52', 60, '2025-02-22 05:32:53', 0, NULL, 1),
(24128, 'Sangeetha', '16', '9944538653', '', 'sangee1292@gmail.com', '1991-01-12', 34, '3', '1', 'Santhosh kumar A', 'IT', 25000.00, 1, 0.00, 25000.00, 'Santhavasal, thiruvannamalai', 'Santhavasal, thiruvannamalai', '2502150013', '', '2', 'upload_files/candidate_tracker/72101054870_SangeethaSeniorMISexecutive5yr.doc', NULL, '1', '2025-02-17', 0, '', '3', '59', '2025-02-17', 216000.00, '', '1', '1970-01-01', '1', 'Rejoining  Our Old employees in Operation good Profile', '3', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '55566', '5151', '2025-02-17', 1, '2025-02-15 02:35:06', 60, '2025-02-17 10:04:20', 0, NULL, 1),
(24129, '', '0', '9345775964', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502160001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-16 11:06:50', 0, NULL, 0, NULL, 1),
(24130, '', '0', '6379561936', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502170001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-17 02:30:25', 0, NULL, 0, NULL, 1),
(24131, 'Ananthivalli', '5', '9514465662', '9791142239', 'ananthivalli30@gmail.com', '1998-09-13', 26, '2', '2', 'Mr.Ramasamy', 'Agriculture', 200000.00, 3, 22000.00, 30000.00, 'Salem', 'Chennai', '2502170002', '1', '2', 'upload_files/candidate_tracker/42384924864_ANANDHAVALLI.R1.pdf', NULL, '1', '2025-02-17', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Limited Technical Expertise and Lack of Problem Solving Abilities then candidate lacked knowledge about the company and role Negative Attitude so not to fit sales department', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', 'H1018', '', '55634', '55557', '1970-01-01', 1, '2025-02-17 04:36:34', 154, '2025-02-17 07:19:48', 0, NULL, 1),
(24132, '', '0', '9952594026', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502170003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-17 04:45:30', 0, NULL, 0, NULL, 1),
(24133, 'Saran', '6', '9025059446', '9944493445', 'saisaran1131@gmail.com', '2003-02-07', 22, '2', '2', 'Gnanasekar', 'Farmer', 25000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2502170004', '1', '1', 'upload_files/candidate_tracker/29693991184_RESUMESARAN.pdf', NULL, '1', '2025-02-17', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not good at communication and he was interested in IT and not sure about is stability', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-17 05:05:05', 104, '2025-02-17 11:09:22', 0, NULL, 1),
(24134, '340035820462', '20', '9597151271', '9597861597', 'Tom59378@gmail.com', '1997-06-09', 27, '2', '2', 'No', 'No', 15000.00, 0, 15000.00, 20000.00, 'Devakottai', 'Chennai', '2502170005', '10', '2', 'upload_files/candidate_tracker/61199271855_M.ADILCVCopy11492.docx', NULL, '1', '2025-02-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-17 05:11:47', 1, '2025-02-17 05:21:36', 0, NULL, 1),
(24135, 'Ranjith K', '6', '6369948647', '9551312756', 'ranjithofficial96@gmail.com', '2003-10-21', 21, '2', '2', 'Kumar P', 'Mason', 20000.00, 1, 0.00, 18000.00, 'Vadaperumbakkam', 'Vadaperumbakkam', '2502170006', '50', '1', 'upload_files/candidate_tracker/51482498747_BlackandWhiteSimpleInfographicResume.pdf', NULL, '1', '2025-02-17', 0, '', '5', '102', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1066', '5151', '1970-01-01', 1, '2025-02-17 05:24:04', 104, '2025-02-17 11:32:09', 0, NULL, 1),
(24136, 'M R Abishek', '6', '8248012467', '7358182093', 'aabi44808@gmail.com', '2004-04-13', 20, '2', '2', 'M G RAJENDRA BABU', 'Catering supervisor', 18000.00, 1, 12000.00, 16000.00, 'Mathur mmda', 'Mathur mmda', '2502170007', '50', '2', 'upload_files/candidate_tracker/18863528824_DarkBlueLightGreenGreyColorBlocksMarketingResume1.pdf', NULL, '1', '2025-02-17', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And performance is good . little bit attitude will check with him in the training Period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-02-17 05:24:11', 153, '2025-02-17 01:06:51', 0, NULL, 1),
(24137, 'Mahalakshmi', '4', '8122533749', '', 'Mahalakshmitamil.t@gmail.com', '2004-02-04', 21, '2', '2', 'Amudha', 'House wife', 10000.00, 2, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2502170008', '1', '1', 'upload_files/candidate_tracker/45574414950_1000161137.pdf', NULL, '1', '2025-02-17', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for sales', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-17 05:36:16', 154, '2025-02-17 11:31:53', 0, NULL, 1),
(24138, 'Nandhini', '4', '9655839610', '', 'Nandhininagulan5@gmail.com', '2004-06-13', 20, '2', '2', 'Paneerselvam', 'Farmer', 12000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2502170009', '1', '1', 'upload_files/candidate_tracker/34052592833_1000161143.pdf', NULL, '1', '2025-02-17', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-17 05:36:18', 154, '2025-02-17 11:35:06', 0, NULL, 1),
(24139, 'Kalaivendhan S', '4', '6369271469', '', 'Kalaiskvendhan113@gmail.com', '2003-07-26', 21, '2', '2', 'Subramaniyan G', 'Couli', 80000.00, 1, 0.00, 14000.00, 'Mayiladuthurai', 'Chennai', '2502170010', '50', '1', 'upload_files/candidate_tracker/88190997263_ResumeFinal2.pdf', NULL, '1', '2025-02-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-17 05:51:05', 1, '2025-02-20 07:16:56', 0, NULL, 1),
(24140, 'DEEPAPRIYA', '11', '8056214853', '9380896045', 'mdeepapriya30@gmail.com', '2002-12-30', 22, '3', '2', 'K.Marimuthu', 'Painter', 20000.00, 1, 0.00, 5000.00, 'No:141/23,srinivasapuram, pattinapakkam,Chennai28', 'No:141/23,srinivasapuram, Pattinapakkam,Chennai28', '2502170011', '', '1', 'upload_files/candidate_tracker/61301737390_downloadfile.PDF', NULL, '1', '2025-02-17', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-17 06:27:15', 154, '2025-02-17 07:20:19', 0, NULL, 1),
(24141, 'Jayashree V', '11', '7010621844', '9176739037', 'banuvenkatesajaya@gmail.com', '2002-11-11', 22, '3', '2', 'Venkatesa Perumal R', 'Driver', 19000.00, 1, 0.00, 5000.00, 'No.220/35, Raja Gramani Garden, Mandaveli', 'Chennai', '2502170012', '', '1', 'upload_files/candidate_tracker/70620869608_Jayashree.resume.pdf', NULL, '1', '2025-02-17', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-17 06:27:56', 154, '2025-02-17 07:20:32', 0, NULL, 1),
(24142, 'Yogesh kannan G', '11', '8925452491', '9677260286', 'yogeshevan4@gmail.com', '2001-09-24', 23, '2', '2', 'Nirmala s', 'Employee', 180000.00, 1, 0.00, 20000.00, 'No:11, susil francis street, ambedkar nagar,', 'Pattabiram', '2502170013', '1', '1', 'upload_files/candidate_tracker/71445006693_yogeshkannan1.pdf', NULL, '1', '2025-02-17', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-02-17 06:28:17', 154, '2025-05-22 02:43:18', 0, NULL, 1),
(24143, 'Hemanth Kumar S', '11', '9344054872', '', 'hemanthkumars2503@gmail.com', '2003-08-25', 21, '3', '2', 'Suresh Kumar D', 'Photographer', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2502170014', '', '1', 'upload_files/candidate_tracker/36265787440_HemanthKumarResume.pdf', NULL, '1', '2025-02-17', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-17 06:28:42', 154, '2025-02-17 07:21:07', 0, NULL, 1),
(24144, '', '0', '8807043044', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502170015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-17 06:31:36', 0, NULL, 0, NULL, 1),
(24145, 'VarunKumar Manokar', '13', '6369696300', '9003910716', 'kumarmvarun39@gmail.com', '1996-01-06', 29, '2', '2', 'Manokar V', 'Rtd employee', 10000.00, 1, 17000.00, 20000.00, 'THIRUVARUR', 'Chennai KK nagar', '2502170016', '50', '2', 'upload_files/candidate_tracker/86850123642_VarunKumarDeveloperCv.pdf', NULL, '1', '2025-02-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-17 07:15:57', 1, '2025-02-17 07:21:06', 0, NULL, 1),
(24146, 'Divya S', '6', '8122075108', '', 'diya12082003@gmail.com', '2003-08-12', 21, '2', '2', 'Selvaraj', 'Labour', 25000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2502170017', '50', '2', 'upload_files/candidate_tracker/85120562327_202405311235020000.pdf', NULL, '1', '2025-02-18', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not intersted voice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-02-17 07:39:24', 154, '2025-02-18 01:35:38', 0, NULL, 1),
(24147, 'Prejwal kumar N', '5', '9688466472', '7904284714', 'prejwalkumar01@gmail.com', '2001-10-15', 23, '2', '2', 'Navaratnam S', 'Business', 60000.00, 1, 27000.00, 30000.00, 'Pudukkottai', 'Saidapet,chennai', '2502170018', '50', '2', 'upload_files/candidate_tracker/27496850551_PrejwalkumarNCV.pdf', NULL, '1', '2025-02-18', 0, '', '3', '59', '2025-02-24', 360000.00, '', '3', '2025-03-29', '2', 'Communication Ok Can be trained in our roles new to our roles will check in training and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55634', '55557', '2025-02-24', 1, '2025-02-17 07:56:43', 60, '2025-02-22 05:31:22', 0, NULL, 1),
(24148, 'Karishma', '6', '8123520698', '7996596746', 'karishuk317@gmail.com', '1998-10-31', 26, '2', '1', 'Munna', 'Photo Grapher', 200000.00, 1, 20000.00, 22000.00, 'K r puram', 'Kr puram', '2502170019', '57', '2', 'upload_files/candidate_tracker/78399701146_IMG20250217WA00132.pdf', NULL, '2', '2025-02-17', 0, '', '3', '59', '2025-02-24', 204000.00, '', '3', '2026-01-06', '2', 'Communication Ok Can be trained in our roles need to check in training and confirm', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '2025-06-17', 1, '2025-02-17 08:59:26', 60, '2025-06-17 11:41:11', 0, NULL, 1),
(24149, '', '0', '8884062918', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502170020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-17 09:28:43', 0, NULL, 0, NULL, 1),
(24150, 'Salman Farook', '13', '7824911749', '7299599963', '01salmanfarook@gmail.com', '2001-11-27', 23, '3', '2', 'Mohammed Sulthan Ali', 'Self employee', 10000.00, 1, 0.00, 20000.00, 'Vadapalani Chennai', 'Chennai', '2502170021', '', '1', 'upload_files/candidate_tracker/98777650104_SalmanRESUME1.pdf', NULL, '1', '2025-02-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-17 09:37:04', 153, '2025-02-17 03:12:26', 0, NULL, 1),
(24151, 'Harshavardhan bg', '6', '8884062918', '9741550679', 'harshavardhan2661@gmail.com', '1999-10-20', 25, '1', '2', 'Gurumurthy', 'Business', 30000.00, 1, 20000.00, 22000.00, 'Bommanahalli', 'Bommanahalli', '2502170022', '', '2', 'upload_files/candidate_tracker/40348210038_Resumecompressed.pdf', NULL, '1', '2025-02-17', 0, '55786', '3', '59', '2025-02-20', 240000.00, '', '3', '2025-03-29', '1', 'Communication Ok Can be trained in our roles internal team reference need to check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55555', '5151', '2025-02-20', 1, '2025-02-17 09:42:07', 60, '2025-02-19 06:58:17', 0, NULL, 1),
(24152, 'Mohan kumar H', '6', '8682043399', '', 'mohanop2327@gmail.com', '1998-07-27', 26, '2', '2', 'Renuka Devi H', 'House wife', 20000.00, 1, 20000.00, 20000.00, 'chennai', 'porur', '2502170023', '50', '2', 'upload_files/candidate_tracker/75717676193_Resume.pdf', NULL, '1', '2025-02-17', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill, alredy atan 5 interviews', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-02-17 09:44:35', 153, '2025-02-17 03:36:39', 0, NULL, 1),
(24153, '74182666105', '28', '9788764283', '', 'danijacop.m@gmail.com', '2000-07-16', 24, '2', '2', 'Mariya Anthony', 'Farmer', 150000.00, 2, 0.00, 25000.00, 'Cuddalore', 'Chennai Kodambakkam', '2502170024', '50', '1', 'upload_files/candidate_tracker/88177758440_DeniJacobcv.pdf', NULL, '1', '2025-02-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-17 12:09:35', 1, '2025-02-17 12:15:31', 0, NULL, 1),
(24154, 'Mohamad tharic', '6', '9788666074', '', 'mohamadtharic5@gmail.com', '2000-03-14', 24, '2', '2', 'Jalila banu', 'House wife', 50000.00, 3, 0.00, 250000.00, 'ARAKANDANALLUR', 'Maduravoyal', '2502170025', '50', '1', 'upload_files/candidate_tracker/94943246473_Mohamadtharicresume.pdf', NULL, '1', '2025-02-18', 0, '', '3', '59', '2025-02-20', 192000.00, '', '3', '2025-03-01', '2', 'Fresher Last 2022 he appeared and got rejected Now Can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '2025-02-20', 1, '2025-02-17 12:14:49', 60, '2025-02-18 07:33:09', 0, NULL, 1),
(24155, '', '0', '9176313357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502170026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-17 01:32:37', 0, NULL, 0, NULL, 1),
(24156, 'sp sivasaran', '6', '8523980294', '7092257392', 'shivasaran68@gmail.com', '2004-09-29', 20, '2', '2', 'sakthiganapathi k', 'ransport manager', 25000.00, 1, 0.00, 17000.00, 'thiruvallur', 'chennai', '2502170027', '1', '1', 'upload_files/candidate_tracker/85691716410_Sivasaram.docx', NULL, '1', '2025-02-18', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CA130', '5151', '1970-01-01', 1, '2025-02-17 03:12:45', 154, '2025-02-18 01:15:15', 0, NULL, 1),
(24157, 'Sudharshan', '4', '6380846673', '', 'sudhan2002s@gmail.com', '2002-11-18', 22, '2', '2', 'Senthilkumar', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Krishnagiri', 'Tiruvanmiyur', '2502170028', '50', '1', 'upload_files/candidate_tracker/79849982999_9b0835cf726a4a8a8d841eeb5a41dcf0.pdf', NULL, '1', '2025-02-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-17 06:31:31', 1, '2025-02-18 06:58:11', 0, NULL, 1),
(24158, 'david livingstan', '6', '9940292243', '9360175401', 'livingstondavid943@gmail.com', '1999-02-16', 26, '2', '2', 'geetha', 'no', 300000.00, 3, 0.00, 27000.00, 'vadapalani', 'vadapalani', '2502180001', '1', '1', 'upload_files/candidate_tracker/40654705465_DavidResumeJan2021.pdf', NULL, '1', '2025-02-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-02-18 03:48:45', 154, '2025-02-18 02:56:36', 0, NULL, 1),
(24159, 'MASROOR AHMED S', '6', '8682061797', '', 'masroorahmed0820@gmail.com', '2004-07-08', 20, '2', '2', 'Parveen Banu S', 'Tailor', 15000.00, 2, 0.00, 18000.00, 'Royapuram', 'Royapuram', '2502180002', '1', '1', 'upload_files/candidate_tracker/36112633362_ahmedresume.pdf', NULL, '1', '2025-02-18', 0, '', '3', '59', '2025-02-20', 192000.00, '', NULL, '2026-03-31', '2', 'Communication Ok Can be trained in our roles need to check in training and confirm Seems to learn in this profile', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '2025-02-20', 1, '2025-02-18 05:19:16', 60, '2025-02-18 05:57:49', 0, NULL, 1),
(24160, 'V Vijay Babu', '4', '8608902390', '', 'vb9469502@gmail.com', '2001-07-23', 23, '2', '2', 'Daveed', 'Corporation', 15000.00, 2147483647, 0.00, 15000.00, 'Tondiarpet Chennai _81', 'Tondiarpet Chennai _81', '2502180003', '57', '1', 'upload_files/candidate_tracker/20846583467_VIJAY2.pdf', NULL, '3', '2025-02-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-18 05:28:36', 154, '2025-02-18 02:56:22', 0, NULL, 1),
(24161, 'M sahira banu', '4', '6366038319', '8056142441', 'sahirabanu6366@gmail.com', '1998-03-18', 26, '2', '1', 'Mahaboob basha', 'Carpenter', 50000.00, 2, 24000.00, 30000.00, 'Royapettah', 'Royapettah', '2502180004', '1', '2', 'upload_files/candidate_tracker/15824587762_SahiraBanuResumeDEC20241.pdf', NULL, '1', '2025-02-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1027', '', '', '', '1970-01-01', 1, '2025-02-18 05:28:59', 104, '2025-02-18 11:26:41', 0, NULL, 1),
(24162, 'DIVYA PRIYA', '6', '9600027602', '9600030840', 'divyait307@gmail.com', '2000-07-30', 24, '2', '2', 'Dhurairaj m', 'Formar', 60000.00, 3, 0.00, 22000.00, 'Perambalur', 'Saidapet', '2502180005', '50', '2', 'upload_files/candidate_tracker/5934337923_docresume.pdf', NULL, '3', '2025-02-18', 0, '', '3', '59', '2025-02-24', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok have calling exp can give and try in our training period', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2025-02-24', 1, '2025-02-18 05:49:15', 60, '2025-02-22 05:34:06', 0, NULL, 1),
(24163, 'Karthick kumar R', '6', '8111089366', '', 'karthickkumarsaraswathi@gmail.com', '2010-02-18', 0, '2', '2', 'Ramesh C', 'Farmer', 40000.00, 1, 0.00, 250000.00, 'Sholinghur', 'Sholinghur', '2502180006', '1', '1', 'upload_files/candidate_tracker/85168143767_ResumeKarthick8.pdf', NULL, '1', '2025-02-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-02-18 05:51:24', 154, '2025-02-18 02:51:29', 0, NULL, 1),
(24164, 'Karthikeyan selvakumar', '4', '9597347022', '', 'Karthi3421306@gmail.com', '1999-06-13', 25, '2', '2', 'Selvakumar', 'Engineer', 50000.00, 1, 0.00, 16000.00, 'Dindigul', 'Jafferkhanpet,Ashok nagar', '2502180007', '50', '1', 'upload_files/candidate_tracker/14845986666_KarthikeyanS.pdf', NULL, '1', '2025-02-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-18 05:52:40', 153, '2025-02-18 02:48:04', 0, NULL, 1),
(24165, 'AKASH NEELAKANDAN', '4', '8754857591', '', 'akashve87@gmail.com', '2002-07-15', 22, '2', '2', 'NEELAKANDAN', 'Farmer', 30000.00, 1, 0.00, 18.00, 'Mayiladuthurai', 'Chennai', '2502180008', '45', '1', 'upload_files/candidate_tracker/84078526999_startup.pdf', NULL, '1', '2025-02-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-18 05:56:05', 1, '2025-02-18 06:03:10', 0, NULL, 1),
(24166, 'Logeshwaran Maneksha', '4', '7548882393', '', 'waranlogesh692@gmail.com', '2003-01-12', 22, '2', '2', 'Maneksha.J', 'Farmer', 30000.00, 1, 0.00, 18000.00, 'Thambikottai Vadakadu, ayyappan kovil street', 'Thoraipakkam, okkiyampet, chennai', '2502180009', '45', '1', 'upload_files/candidate_tracker/27752643563_LOGESH.RESUME3.pdf', NULL, '1', '2025-02-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-18 05:56:16', 1, '2025-02-18 06:05:17', 0, NULL, 1),
(24167, '', '0', '8838974208', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502180010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-18 07:06:23', 0, NULL, 0, NULL, 1),
(24168, 'Muralikrishnan M', '6', '9025351683', '', 'muralimanokaran678@gmail.com', '2000-01-01', 25, '2', '2', 'Parvathy', 'Daily labour', 72000.00, 2, 13000.00, 16000.00, 'Cuddalore', 'Chennai', '2502180011', '50', '2', 'upload_files/candidate_tracker/85400778236_Muralikrishnan.pdf', NULL, '1', '2025-02-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-18 07:19:01', 153, '2025-02-19 01:07:07', 0, NULL, 1),
(24169, 'Mathew M', '34', '7092910555', '9877810800', 'mathew7555@gmail.com', '2001-11-20', 23, '3', '2', 'Munusamy', 'Tea shop', 20000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2502180012', '', '1', 'upload_files/candidate_tracker/67403459429_MathewAnalyst1.pdf', NULL, '1', '2025-02-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-18 07:19:36', 1, '2025-02-18 07:24:34', 0, NULL, 1),
(24170, '', '0', '6374123833', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502180013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-18 07:20:10', 0, NULL, 0, NULL, 1),
(24171, '', '0', '9042361145', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502180014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-18 08:36:40', 0, NULL, 0, NULL, 1),
(24172, 'A.Mohamed hafeel Hafeel', '4', '9361166593', '9342778236', 'abdulribbairibbai@gmail.com', '2002-09-18', 22, '3', '2', 'Abdulribbai', 'Bakery', 30.00, 2, 0.00, 16.00, 'Chennai', 'Chennai', '2502180015', '', '1', 'upload_files/candidate_tracker/34511575555_HAFEELRESUME.docx', NULL, '1', '2025-02-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-18 09:15:44', 1, '2025-02-18 09:23:17', 0, NULL, 1),
(24173, 'riyaz khan', '4', '6383236841', '9677102854', 'sjrp38808@gmail.com', '2003-02-27', 21, '3', '2', 'saleem', 'bag company', 25000.00, 1, 0.00, 16000.00, 'Kodungaiyur', 'Kodungaiyur', '2502180016', '', '1', 'upload_files/candidate_tracker/48621458899_RIYAZKHANuiux.pdf', NULL, '1', '2025-02-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-18 09:16:04', 1, '2025-02-18 09:20:06', 0, NULL, 1),
(24174, '', '0', '6369538219', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502180017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-18 09:37:51', 0, NULL, 0, NULL, 1),
(24175, 'Dhinesh P', '4', '8870551402', '8015170984', 'dineshtamil389@gmail.com', '2003-07-12', 21, '2', '2', 'K.ponnusamy', 'Farmer', 10000.00, 2, 0.00, 18000.00, 'Veeraganur', 'Veeraganur', '2502180018', '50', '1', 'upload_files/candidate_tracker/2981087894_DHINESHP.CV.pdf', NULL, '1', '2025-02-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-18 10:37:37', 1, '2025-02-18 10:41:26', 0, NULL, 1),
(24176, 'Haripriya', '4', '9962879899', '', 'haripriya.m302004@gmail.com', '2004-03-30', 20, '2', '2', 'Marikkan', 'Business man', 120000.00, 1, 0.00, 12000.00, 'Kodungaiyur', 'Kodungaiyur', '2502180019', '50', '1', 'upload_files/candidate_tracker/49208180731_HaripriyaResume.pdf', NULL, '1', '2025-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-18 10:46:56', 1, '2025-03-03 03:12:34', 0, NULL, 1),
(24177, 'Jhansi Rani', '4', '9952091044', '', 'jhansiranishankar@gmail.com', '2003-07-31', 21, '2', '2', 'Shankar', 'Coolie', 120000.00, 0, 0.00, 13000.00, 'No-7/4, Ezhilnager B-Block 3rd Street Kodungaiur', 'No-7/4, Ezhilnager B-Block 3rd Street Kodungaiur', '2502180020', '50', '1', 'upload_files/candidate_tracker/25136842720_jhansiraniResume.pdf', NULL, '3', '2025-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-18 10:48:01', 1, '2025-03-03 03:20:16', 0, NULL, 1),
(24178, 'parthibanmanivanan', '6', '8838908238', '8667766069', 'parthy2404@gmail.com', '2001-12-15', 23, '2', '2', 'manivannan', 'driver', 30000.00, 1, 0.00, 20000.00, 'annarg', 'henna porur', '2502180021', '50', '1', 'upload_files/candidate_tracker/1823740255_PARTHIBANRESUME.docx', NULL, '3', '2025-02-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-18 11:15:07', 153, '2025-02-19 01:07:47', 0, NULL, 1),
(24179, 'A ARUN JOE', '4', '9787807656', '', 'joekdarun@gmail.com', '2003-12-17', 21, '2', '2', 'AROKIA RAJ.A', 'Driver', 23000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2502180022', '1', '1', 'upload_files/candidate_tracker/84020740213_arun.pdf', NULL, '1', '2025-02-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suite for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-18 11:31:40', 104, '2025-02-19 10:48:09', 0, NULL, 1),
(24180, '', '0', '9042361144', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502180023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-18 03:38:43', 0, NULL, 0, NULL, 1),
(24181, '', '0', '9003840466', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502190001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-19 04:32:00', 0, NULL, 0, NULL, 1),
(24182, 'Mohamed shabith M', '6', '9150113942', '9176577161', 'msabithmohamed@gmail.com', '2004-06-22', 20, '2', '2', 'Mohamed bahim K', 'Auto driver', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2502190002', '27', '1', 'upload_files/candidate_tracker/45794870083_sabithresume.pdf', NULL, '1', '2025-02-19', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was having good communication and interested in sales and also ok for immediate joining', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-19 05:30:38', 153, '2025-02-19 11:51:45', 0, NULL, 1),
(24183, 'ABDUR RAHIM A.B', '6', '6374593025', '', 'abdurrahim4922@gmail.com', '2003-01-07', 22, '2', '2', 'Basheer ahamed', 'School manger', 20000.00, 3, 0.00, 18000.00, 'Chennai', 'Chennai', '2502190003', '50', '1', 'upload_files/candidate_tracker/84699210310_ABDURRAHIMRESUME.pdf', NULL, '1', '2025-02-19', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-02-19 05:36:24', 153, '2025-02-19 11:51:12', 0, NULL, 1),
(24184, 'Priyanka Yadav K H', '6', '8867710173', '', 'priyankayadavkh1@gmail.com', '1998-06-26', 26, '3', '2', 'Saraswati', 'House wife', 10000.00, 0, 0.00, 20000.00, 'Adugodi bangalore', 'Adugodi bangalore', '2502190004', '', '2', 'upload_files/candidate_tracker/8655736086_Resume20241compressed.pdf', NULL, '1', '2025-02-19', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'ex employee of cafs in E sales team cross check with sustainity suggested ctc 17k for dm', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-02-19 06:01:49', 154, '2025-02-20 10:05:45', 0, NULL, 1),
(24185, 'Seema Saniya', '6', '9739877282', '9591470481', 'Angelsaniya95@gmail.com', '1987-07-24', 37, '2', '2', 'Syed Imtiyaz ( Father)', 'B.A 1st year Correspondence', 10000.00, 2, 32.00, 35.00, 'Jp nagar 7th phase', 'Jp nagar 7th phase', '2502190005', '57', '2', 'upload_files/candidate_tracker/67235428266_SeemaBiodata1.pdf', NULL, '3', '2025-02-19', 20, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-02-19 06:24:35', 154, '2025-02-20 10:06:33', 0, NULL, 1),
(24186, 'Rithika S', '6', '8778315518', '9750411507', 'rithikasenthil270305@gmail.com', '2005-03-27', 19, '2', '2', 'Senthil kumar M', 'Car mechanic', 10000.00, 1, 0.00, 17000.00, 'Royapettah Chennai', 'Royapettah', '2502190006', '27', '1', 'upload_files/candidate_tracker/82703705581_DOC20250109WA0010.docx', NULL, '1', '2025-02-19', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-19 06:57:05', 153, '2025-02-19 01:08:15', 0, NULL, 1),
(24187, '', '0', '8015115323', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502190007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-19 07:07:41', 0, NULL, 0, NULL, 1),
(24188, 'Monisha Parui Asthaparui', '16', '9080177405', '9080178405', 'monishaparui200@gmail.com', '2000-06-14', 24, '3', '2', 'Astha Parui', 'Gold Smith', 30000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2502190008', '', '2', 'upload_files/candidate_tracker/46283177937_MonishaParuiAResumeupdated.pdf', NULL, '1', '2025-02-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-19 07:12:57', 154, '2025-02-19 01:26:15', 0, NULL, 1),
(24189, '', '0', '7299126883', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502190009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-19 08:03:14', 0, NULL, 0, NULL, 1),
(24190, '', '0', '8919397628', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502190010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-19 08:31:32', 0, NULL, 0, NULL, 1),
(24191, 'Sarathkumar', '25', '8015213764', '', 'sksarath317@gmail.com', '1999-07-05', 25, '2', '2', 'Kamalakannan', 'Own business', 25000.00, 2, 14000.00, 16000.00, 'Chennai', 'Chennai', '2502190011', '50', '2', 'upload_files/candidate_tracker/50347189930_sarathkumar.k.pdf', NULL, '1', '2025-02-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-19 10:44:00', 1, '2025-02-19 11:05:46', 0, NULL, 1),
(24192, 'Veeramani R', '4', '9080465196', '9842266831', 'manisamy4899@gmail.com', '1999-08-04', 25, '2', '2', 'Rethinasamy.D', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Ariyalur', 'Thambaram', '2502190012', '1', '1', 'upload_files/candidate_tracker/36869432722_CV2024112812400494.pdf', NULL, '1', '2025-02-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1027', '', '55605', '55566', '1970-01-01', 1, '2025-02-19 11:21:30', 154, '2025-02-20 12:25:27', 0, NULL, 1),
(24193, '', '0', '6383452565', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502190013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-19 02:18:54', 0, NULL, 0, NULL, 1),
(24194, 'Alaguthiyagarajan A', '2', '9787059714', '', 'alaguthiyagarajana@gmail.com', '2003-07-18', 21, '6', '2', 'Alagappan A', 'Theatre worker', 30000.00, 1, 0.00, 150000.00, 'Chennai', 'Chennai', '2502200001', '', '1', 'upload_files/candidate_tracker/53714927143_A.Alaguthiyagarajan1.pdf', NULL, '1', '2025-02-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-20 05:07:53', 1, '2025-02-20 05:11:57', 0, NULL, 1),
(24195, 'Revath kumar M', '6', '9840329084', '9962105504', 'revathkumar6@gmail.com', '2004-08-21', 20, '2', '2', 'M.Navaneetham', 'Services staff at sboa school', 15000.00, 1, 0.00, 22000.00, 'No: 58/a, 6TH, vallalar street, puthagaram,', 'Kolathur ,chennai -99', '2502200002', '27', '1', 'upload_files/candidate_tracker/50237905035_CV2025022008143635.pdf', NULL, '1', '2025-02-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok, communication good, he interested. date of exp may end, bcz examination,thanks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-02-20 05:13:38', 154, '2025-02-20 12:00:32', 0, NULL, 1),
(24196, 'n nethish kumar', '4', '9364507790', '', 'nethishkumar623@gmail.com', '2002-11-06', 22, '2', '2', 'nandhakumar', 'newspaper vendor', 20000.00, 1, 20000.00, 18000.00, 'kodungaiyur', 'kodungaiyur', '2502200003', '50', '2', 'upload_files/candidate_tracker/5357202208_NETHISHRESUME.pdf', NULL, '1', '2025-02-20', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-20 05:17:24', 154, '2025-02-20 12:53:07', 0, NULL, 1),
(24197, 'Abbasali am', '4', '6383064586', '7092767884', 'abbasparadise786@gmail.com', '2002-11-14', 22, '2', '2', 'Mohamed kasim', 'Sales', 20000.00, 0, 0.00, 16000.00, 'Karur', 'Tiruppur', '2502200004', '50', '1', 'upload_files/candidate_tracker/88377407474_AbbasaliAmResume.pdf', NULL, '1', '2025-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-20 05:18:31', 1, '2025-02-20 05:21:26', 0, NULL, 1),
(24198, 'Harish M Murali', '4', '9941156955', '7305457219', 'harishmurali2207@gmail.com', '2001-07-20', 23, '2', '2', 'Murali', 'Machine operator', 60000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2502200005', '50', '1', 'upload_files/candidate_tracker/93317871994_HarishM.pdf', NULL, '1', '2025-02-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'not comfort with the salary, expecting 19-20k, having exp in different field', '', '', '', '', '', '1970-01-01', 1, '2025-02-20 05:20:23', 154, '2025-02-20 11:20:20', 0, NULL, 1),
(24199, 'Raphina', '6', '9176051450', '6374996541', 'raphinaj@gmail.com', '2004-05-31', 20, '2', '2', 'john peter', 'tenth', 40000.00, 1, 0.00, 15000.00, 'chennai washermenpet', 'washermenpet', '2502200006', '50', '1', 'upload_files/candidate_tracker/18192629751_Resume.pdf', NULL, '2', '2025-02-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'already attended 2 months back', '', '', '', '', '', '1970-01-01', 1, '2025-02-20 05:26:34', 154, '2025-02-20 11:26:20', 0, NULL, 1),
(24200, 'SANKAR M', '4', '6383433425', '', 'sankarmani3004@gmail.com', '2004-09-01', 20, '2', '2', 'Prema M', 'Company', 9000.00, 1, 0.00, 18000.00, 'Thirumalpur', 'Thirumalpur', '2502200007', '1', '1', 'upload_files/candidate_tracker/91233479321_sankarMresume.pdf', NULL, '1', '2025-02-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1027', '', '55605', '55566', '1970-01-01', 1, '2025-02-20 05:30:43', 154, '2025-02-20 12:54:34', 0, NULL, 1),
(24201, 'Kaviyarasu s', '4', '9941161668', '8072324734', 'kavileo07@gmail.com', '1996-07-31', 28, '2', '2', 'Saravanan', 'Sweet master', 24000.00, 1, 23000.00, 26000.00, 'Chennai', 'Chennai Thiruvottiyur', '2502200008', '1', '2', 'upload_files/candidate_tracker/1768957418_KAVIYARASUSResume.pdf', NULL, '1', '2025-02-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-02-20 05:31:56', 154, '2025-02-20 12:25:16', 0, NULL, 1),
(24202, 'palani D', '4', '6383239708', '', 'palanidevaraj5@gmail.com', '2004-12-13', 20, '2', '2', 'Devaraj', 'Weaving', 10000.00, 2, 0.00, 18000.00, 'Thirumalpur', 'Thirumalpur', '2502200009', '1', '1', 'upload_files/candidate_tracker/78888447270_WhiteandGreenInfographicResume202501202155410000.pdf', NULL, '1', '2025-02-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1027', '', '55605', '55566', '1970-01-01', 1, '2025-02-20 05:46:42', 154, '2025-02-20 12:57:11', 0, NULL, 1),
(24203, 'Srimathi Chandrasekar', '4', '9597889062', '', 'srimathisekaran23@gmail.com', '2002-04-23', 22, '2', '2', 'Chandrasekaran', 'Labour', 10000.00, 1, 16000.00, 25000.00, '1/21 Nadu street, Inam puliyur, Trichy', 'No1 pammal Main road, pallavaram, Chennai', '2502200010', '1', '2', 'upload_files/candidate_tracker/83096991101_Srimathi1.pdf', NULL, '1', '2025-02-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1027', '', '55605', '55566', '1970-01-01', 1, '2025-02-20 06:05:19', 154, '2025-02-20 01:22:02', 0, NULL, 1),
(24204, 'Priyadharshini.R', '4', '9345841108', '8925032782', 'Priyavichu3@gmail.com', '2001-06-27', 23, '2', '1', 'Vishnu', 'Driver', 25000.00, 1, 0.00, 16000.00, 'Maduravoyal', 'Mduravoyal', '2502200011', '50', '1', 'upload_files/candidate_tracker/69462174952_PRIYADHARSHINI.Rresume1.pdf', NULL, '3', '2025-02-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-20 06:05:55', 153, '2025-02-21 02:40:32', 0, NULL, 1),
(24205, 'JAWAHAR.S', '6', '8248857064', '', 'jawahar0703@gmail.com', '2001-07-07', 23, '2', '2', 'Sampath. R', 'Driver', 20000.00, 1, 0.00, 16000.00, 'Pudupet', 'Pudupet', '2502200012', '50', '1', 'upload_files/candidate_tracker/50183823283_JawaharsResume.pdf', NULL, '1', '2025-02-20', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-02-20 06:11:21', 154, '2025-02-20 01:16:33', 0, NULL, 1),
(24206, 'Oviya S', '6', '7358311038', '', 'ovisriovisri@gmail.com', '2004-01-26', 21, '2', '2', 'S. Varalakshmi', 'House wife', 300000.00, 1, 0.00, 15000.00, 'Anna nagar', 'Anna nagar', '2502200013', '1', '1', 'upload_files/candidate_tracker/49583744941_RESUMEblue.pdf', NULL, '1', '2025-02-20', 0, '', '3', '59', '2025-02-24', 168000.00, '', '3', '2025-07-23', '2', 'Communication Ok Fresher seems to be doubtful in a long run can give a try and check  in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '2025-02-24', 1, '2025-02-20 06:24:22', 60, '2025-02-21 06:21:01', 0, NULL, 1),
(24207, '', '0', '6382608767', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502200014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-20 06:33:24', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24208, 'Jothi', '4', '6374555323', '9786018098', 'jojothi0510@gmail.com', '1997-11-20', 27, '2', '1', 'Karthik', 'Site supervisor', 40000.00, 2, 18000.00, 20000.00, 'Kallakurichi', 'Tambaram', '2502200015', '50', '2', 'upload_files/candidate_tracker/82887804437_1updatedJothiresume3Y11.pdf', NULL, '1', '2025-02-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-20 06:55:04', 154, '2025-02-20 12:47:32', 0, NULL, 1),
(24209, 'A Tabsheer Ahmed', '4', '7010167748', '', 'tabsheer661@gmail.com', '2000-05-11', 24, '2', '2', 'A Nazeer Ahmed', 'Own business', 20000.00, 1, 0.00, 25000.00, 'Ambur', 'Chennai', '2502200016', '50', '1', 'upload_files/candidate_tracker/77843659482_TABsheerResumee.pdf', NULL, '1', '2025-02-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-20 07:23:20', 1, '2025-02-20 07:27:33', 0, NULL, 1),
(24210, 'Wajith', '4', '9444489186', '7550153351', 'wwajithzehan@gmail.com', '2003-06-26', 21, '1', '2', 'Hussna', 'No', 25000.00, 1, 22000.00, 22000.00, 'Thousand lights', 'Thousand lights', '2502200017', '', '2', 'upload_files/candidate_tracker/87630430341_WajithResume.pdf', NULL, '1', '2025-02-20', 0, '12345', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-20 07:57:43', 1, '2025-02-20 08:06:16', 0, NULL, 1),
(24211, 'Vignesh', '4', '6385232465', '9626718528', 'vigneshravi429@gmail.com', '2000-09-15', 24, '2', '2', 'Ravi', 'Farmer', 50000.00, 2, 13000.00, 16000.00, 'Su.keenanur village,Viruthachalam Tk, Cuddalore(D)', 'Kcs dharshan Building, selaiyur, thambaram', '2502200018', '1', '2', 'upload_files/candidate_tracker/41679196353_CV20240823155020new1.docx', NULL, '1', '2025-02-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-02-20 09:10:25', 154, '2025-02-21 01:05:50', 0, NULL, 1),
(24212, 'gOKULAPRIYA', '6', '6360536690', '7708790817', 'Spriya12101998@gmail.com', '1998-10-12', 26, '2', '2', 'P Srinivasan', '12th', 20.00, 1, 0.00, 21.00, 'Salem', 'Chennai', '2502200019', '1', '2', 'upload_files/candidate_tracker/63983699024_GOKULAPRIYA.pdf', NULL, '1', '2025-02-20', 0, '', '3', '59', '2025-03-03', 216000.00, '', '3', '2025-04-30', '2', 'Communication Ok Sustainability doubts a lot in this profile need to check in training and confirm', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1027', '', '55645', '5151', '2025-03-03', 1, '2025-02-20 09:41:41', 60, '2025-03-01 06:09:51', 0, NULL, 1),
(24213, 'AJITH GEORGE', '6', '7708164241', '', 'maxajith39@gmail.com', '1999-10-02', 25, '2', '2', 'George', 'Mason', 15000.00, 2, 15000.00, 18000.00, 'Kanyakumari', 'T nager', '2502200020', '50', '2', 'upload_files/candidate_tracker/75902925203_AJITH11.pdf', NULL, '1', '2025-02-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-20 11:39:32', 154, '2025-02-21 06:08:28', 0, NULL, 1),
(24214, 'Thanish Aravinth', '6', '9003887179', '', 'thanisharavinth@gmail.com', '1997-02-20', 28, '2', '2', 'Thanka Raj', 'Mason', 15000.00, 2, 15000.00, 18000.00, 'Kanaya Kumari', 'T nagar', '2502200021', '50', '2', 'upload_files/candidate_tracker/97809618622_THANISHARAVINTHCV11.pdf', NULL, '1', '2025-02-21', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-02-20 11:40:08', 153, '2025-02-21 12:22:48', 0, NULL, 1),
(24215, 'Nishanthini', '6', '8489821021', '9677085525', 'peter.cobrin@nef.org.uk', '1997-12-25', 27, '2', '2', 'Mohan', 'Nil', 200000.00, 2, 220000.00, 280000.00, 'Keynes West Sussex Heywards Health,SEA', 'Keynes West Sussex Heywards Health,SEA', '2502210001', '50', '2', 'upload_files/candidate_tracker/2759247980_compressedNishnathiniResume1.pdf', NULL, '1', '2025-02-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-21 04:32:35', 154, '2025-02-21 06:08:04', 0, NULL, 1),
(24216, 'T. NITHYA KALYANI', '4', '8300045168', '', 'nithyakalyanicse@gmail.com', '2003-02-22', 21, '2', '2', 'M.Thirupathi', 'Representative', 13000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2502210002', '1', '1', 'upload_files/candidate_tracker/206981045_RESUME.docx', NULL, '1', '2025-02-21', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite for team', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-21 05:31:58', 104, '2025-02-21 11:21:26', 0, NULL, 1),
(24217, 'Md amin', '6', '8414076705', '7085845499', 'mdamin12965@gmail.com', '2004-06-19', 20, '2', '2', 'Md askiyamat', 'Business', 400000.00, 3, 0.00, 18000.00, 'Shillong', 'Shillong', '2502210003', '57', '1', 'upload_files/candidate_tracker/83796784204_AminResume.pdf', NULL, '1', '2025-02-21', 0, '', '3', '59', '2025-03-03', 180000.00, '', '3', '2025-05-10', '2', 'Communication Ok 12th graduate need to check in training period and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '2025-03-03', 1, '2025-02-21 05:32:22', 60, '2025-03-01 06:21:23', 0, NULL, 1),
(24218, '', '0', '8431041741', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502210004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-21 06:14:02', 0, NULL, 0, NULL, 1),
(24219, 'Priyadharshini R', '6', '7358590763', '7358735414', 'rathikumar456@gmail.com', '2003-06-09', 21, '2', '2', 'Rathikumar', 'Supervisor', 23000.00, 2, 18500.00, 24500.00, 'Pattamandiri', 'Pattamandiri', '2502210005', '1', '2', 'upload_files/candidate_tracker/69242542882_DOC20230614WA0000.docx', NULL, '3', '2025-03-03', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was having good communication and interested in sales and ok with immediate joining', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-21 06:23:32', 154, '2025-03-03 02:41:09', 0, NULL, 1),
(24220, 'B manikandan', '6', '8486395643', '9941149246', 'mank35762@gmail.com', '2004-11-15', 20, '2', '2', 'Baskar n', 'Auto driver', 90000.00, 2, 0.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2502210006', '27', '1', 'upload_files/candidate_tracker/37809276901_ManikandanResumeAnudipBSFI.1.pdf', NULL, '1', '2025-02-21', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is ok.but his voice is low also sustainable is doubt', '5', '2', '', '1', '8', '', '2', '2025-06-10', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-02-21 06:50:11', 153, '2025-02-21 02:38:19', 0, NULL, 1),
(24221, 'DILLIBABU S', '6', '8939371403', '9600162391', 'sasidilli2004@gmail.com', '2004-10-11', 20, '2', '2', 'Sasikumar.P', 'Loading', 86000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2502210007', '27', '1', 'upload_files/candidate_tracker/64520407443_DILLIBABUResumeAnudip.pdf', NULL, '1', '2025-02-21', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'long ditance and no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-02-21 06:53:31', 153, '2025-02-21 02:37:59', 0, NULL, 1),
(24222, 'Vinoth', '6', '6383111216', '', 'Pv8831313@gmail.com', '2001-03-15', 23, '1', '2', 'R.palani', 'Mechanic', 30.00, 1, 14000.00, 20000.00, 'Villupuram', 'Palavathangal', '2502210008', '', '2', 'upload_files/candidate_tracker/51447863310_Vinothstar1.doc', NULL, '1', '2025-02-21', 0, 'C99070', '3', '59', '2025-02-24', 204000.00, '', '3', '2025-02-24', '2', 'Communication Ok have calling exp can give and check in training period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2025-02-24', 1, '2025-02-21 07:11:44', 154, '2025-05-14 11:41:49', 0, NULL, 1),
(24223, 'M n punith', '4', '7095622352', '', 'punith.muthu12@gmail.com', '2000-11-22', 24, '2', '2', 'M Nagarajulu naidu', 'Goverment employee', 100000.00, 1, 23000.00, 25000.00, '# 10-6 Battuvalluru village Gudipala mandal', 'Jp nagar 6th phase', '2502210009', '57', '2', 'upload_files/candidate_tracker/57326206356_CV11739870247128.pdf', NULL, '1', '2025-02-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-21 07:23:21', 1, '2025-02-21 07:27:16', 0, NULL, 1),
(24224, 'Divakar R', '4', '9962189674', '', 'divakarrk18@gmail.com', '2002-01-09', 23, '2', '2', 'Raghu B', 'TNEB', 70000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2502210010', '50', '1', 'upload_files/candidate_tracker/95883721631_Untitledcloneclone4.pdf', NULL, '1', '2025-02-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-21 07:25:40', 154, '2025-02-21 06:07:23', 0, NULL, 1),
(24225, '', '0', '9740379694', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502210011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-21 07:26:07', 0, NULL, 0, NULL, 1),
(24226, 'Bhavanishankar n', '4', '9585989700', '', 'bhavanishankar2019n@gmail.com', '2001-03-23', 23, '2', '2', 'Nethaji P', 'Sales man', 20000.00, 1, 0.00, 20000.00, 'Redhills', 'Kolathur', '2502210012', '50', '1', 'upload_files/candidate_tracker/97561796865_RESUME.pdf', NULL, '1', '2025-02-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-21 07:26:29', 154, '2025-02-21 06:09:20', 0, NULL, 1),
(24227, 'Ajithkumar M', '4', '9360974388', '', 'kumarajithkumar810014106@gmail.com', '1996-11-18', 28, '2', '2', 'MURUGAN', 'Farmer', 100000.00, 1, 24000.00, 24000.00, 'Theni', 'Chennai', '2502210013', '50', '2', 'upload_files/candidate_tracker/6443994625_AJITHKUMARCV.pdf', NULL, '1', '2025-02-21', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-21 07:36:49', 1, '2025-02-21 08:02:43', 0, NULL, 1),
(24228, '558207390265', '4', '6383319154', '7448441877', 'mugeshraj1911@gmail.com', '2000-11-19', 24, '2', '2', 'Yuvaraj', 'BBA', 2.50, 0, 18000.00, 23000.00, 'Chennai', 'Chennai', '2502210014', '50', '2', 'upload_files/candidate_tracker/41731075628_MugeshRajResume1.pdf', NULL, '1', '2025-02-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-21 07:46:07', 1, '2025-02-21 08:11:37', 0, NULL, 1),
(24229, 'Viswas B', '6', '8015963714', '', 'viswasb26@gmail.com', '2002-09-26', 22, '2', '2', 'Kanchana B', 'Tailor', 6000.00, 1, 0.00, 17000.00, 'Thiruvallur', 'Thiruvallur', '2502210015', '50', '1', 'upload_files/candidate_tracker/93676455539_Viswas1.pdf', NULL, '1', '2025-02-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-21 09:08:48', 104, '2025-02-22 02:39:22', 0, NULL, 1),
(24230, '', '0', '6374691113', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502210016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-21 10:03:43', 0, NULL, 0, NULL, 1),
(24231, 'Niyamathulla', '5', '7708021432', '9962420548', 'niyamathduke390@gmail.com', '2001-03-12', 23, '2', '1', 'Ramya', 'House wife', 20000.00, 1, 20000.00, 24000.00, 'Chennai', 'Chennai', '2502210017', '50', '2', 'upload_files/candidate_tracker/95211763911_NIYAMATHULLA.pdf', NULL, '1', '2025-02-22', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not selected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-02-21 10:58:04', 104, '2025-02-22 01:28:03', 0, NULL, 1),
(24232, 'Tamilselvi A', '6', '8015272603', '8015855257', 'aishwariyaishu2603@gmail.com', '2003-12-23', 21, '2', '2', 'Sumathy A', 'Home maker', 15000.00, 1, 0.00, 15000.00, 'Retteri, chennai', 'Retteri, chennai', '2502210018', '1', '1', 'upload_files/candidate_tracker/89222736433_BlackandWhiteMinimalisticSimpleResume202502211850210000.pdf', NULL, '1', '2025-02-24', 0, '', '3', '59', '2025-03-03', 180000.00, '', '4', '2025-04-26', '2', 'Communication Ok Fresher for our roles need to train from sctrach can give a try and check in training', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '2025-03-03', 1, '2025-02-21 01:06:12', 153, '2025-03-03 09:56:51', 0, NULL, 1),
(24233, 'Sathish G', '6', '6381267531', '9360131551', 'sathishg7547@gmail.com', '2001-12-25', 23, '2', '2', 'Gangadharan VA', 'Weaver', 20000.00, 2, 15500.00, 20000.00, 'Arakkonam', 'Saidapet', '2502210019', '1', '2', 'upload_files/candidate_tracker/83439446101_SathishResume6122024.pdf', NULL, '1', '2025-02-24', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-02-21 01:55:12', 1, '2025-02-21 02:03:08', 0, NULL, 1),
(24234, 'Ranjith M', '6', '7397399664', '9363783438', 'thajo508@gmail.com', '2000-10-28', 24, '2', '2', 'Selvi', 'Labour', 15000.00, 1, 19000.00, 20000.00, 'Trichy', 'Chennai jafferkhanpet', '2502210020', '1', '2', 'upload_files/candidate_tracker/3424094107_ranji.docx', NULL, '1', '2025-03-13', 1, '', '3', '59', '2025-03-17', 216000.00, '', '3', '2025-03-18', '2', 'Communication Ok Have exp in calling relevant one can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-03-17', 1, '2025-02-21 02:28:40', 60, '2025-03-15 06:06:33', 0, NULL, 1),
(24235, 'Santhosh I', '6', '9751391038', '', 'Santhoshyadav116@gmail.com', '2004-04-04', 20, '2', '2', 'Indrasenan', 'Daily wages', 20000.00, 1, 0.00, 20000.00, 'Tiruttani, tamil nadu', 'Chennai, tamil nadu', '2502210021', '50', '1', 'upload_files/candidate_tracker/42756858838_Santhosh1.pdf', NULL, '1', '2025-02-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '5151', '1970-01-01', 1, '2025-02-21 02:48:26', 104, '2025-02-22 02:39:32', 0, NULL, 1),
(24236, 'Jasvanth G', '6', '8754766487', '', 'yjasvanth@gmail.com', '2004-12-15', 20, '2', '2', 'Venkatesulu', 'Daily veggies', 20000.00, 1, 0.00, 20000.00, 'Tiruttani', 'Chennai', '2502210022', '50', '1', 'upload_files/candidate_tracker/43664972400_JASURESUME.pdf', NULL, '1', '2025-02-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-21 02:58:59', 104, '2025-02-22 02:39:39', 0, NULL, 1),
(24237, 'Nivetha Dhanassekaran', '6', '9566801503', '8675471805', 'nivethadhanasekaran1@gmail.com', '2001-04-11', 23, '2', '2', 'Dhanassekaran', 'Telecaller', 25000.00, 1, 20000.00, 25000.00, 'Thanjavur', 'Valluvar kottam, Chennai', '2502220001', '1', '2', 'upload_files/candidate_tracker/24210807186_fc71c4c2b06a49d396e681c821543d70.pdf', NULL, '1', '2025-02-22', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was good at communication and also interested in sales ,she will join after wed have experience related to sales                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-22 02:53:09', 104, '2025-02-22 01:28:21', 0, NULL, 1),
(24238, 'Swetha A', '6', '6384145805', '8098077212', 'Swethasweey414@gmail.com', '2001-06-29', 23, '2', '2', 'Annadurai M', 'Government employee', 50000.00, 1, 18000.00, 25000.00, 'Thanjavur', 'Chennai (valluvar kottam)', '2502220002', '1', '2', 'upload_files/candidate_tracker/17482970092_1739947147514swetharesume.pdf', NULL, '1', '2025-02-22', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, communication is average , 1yr experience csc field.settled family, just she came for chennai explore with friends, just try 7days training process, confirm the joining date and salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-02-22 03:57:54', 104, '2025-02-22 02:35:33', 0, NULL, 1),
(24239, 'Anitha R', '5', '9600703554', '7338927034', 'anitha.rramamoorthy@gmail.com', '2001-07-20', 23, '2', '2', 'Ramamoorthy R', 'Daily wages', 6000.00, 1, 26000.00, 30000.00, 'Mathur, Chennai', 'Mathur, Chennai', '2502220003', '1', '2', 'upload_files/candidate_tracker/9057436961_AnithaResume.pdf', NULL, '1', '2025-02-22', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1027', '', '55650', '55560', '1970-01-01', 1, '2025-02-22 04:23:23', 154, '2025-02-25 06:54:49', 0, NULL, 1),
(24240, 'Vishali', '4', '9080319692', '9025258087', 'Vishalip099@gmail.com', '2001-02-12', 24, '2', '2', 'Thangaraj', 'Painter', 25000.00, 1, 0.00, 13000.00, 'Pattukkottai', 'Pattukkottai', '2502220004', '1', '1', 'upload_files/candidate_tracker/88664548572_VAISHUP3.pdf', NULL, '1', '2025-02-22', 0, '', '3', '59', '2025-02-27', 162000.00, '', '1', '1970-01-01', '2', 'Communication ok can be trained in our roles and need to check and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-02-27', 1, '2025-02-22 05:46:21', 60, '2025-02-26 07:49:17', 0, NULL, 1),
(24241, 'Rekha D S', '6', '9113835329', '6363251635', 'rekhads2002@gmail.com', '2002-01-03', 23, '2', '2', 'Srinivasa D K', 'Former', 10000.00, 2, 0.00, 250000.00, 'Bangalore', 'Bangalore', '2502220005', '57', '1', 'upload_files/candidate_tracker/23837477554_RekhaRESUMENEWONE7.pdf', NULL, '1', '2025-02-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication is very good and did 2 internships  salary expectation 17k', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-22 05:49:48', 104, '2025-02-22 04:43:00', 0, NULL, 1),
(24242, 'Selvavarshini S', '6', '9791350625', '9629281725', 'selvavarshini10@gmail.com', '2003-03-10', 21, '2', '2', 'Selvaraju K', 'Document writter', 16000.00, 1, 0.00, 2.50, 'Namakkal', 'chennai', '2502220006', '45', '1', 'upload_files/candidate_tracker/83285129341_Selvavarshinicv202502131753470000.pdf', NULL, '1', '2025-02-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, communication good, she exp salary above 18k but she is fresher, so kindly confirm the salary xxamp joining date, kindly cross check she interested in AI HTML ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-02-22 06:06:11', 104, '2025-02-22 02:36:13', 0, NULL, 1),
(24243, 'Rohith G', '6', '7892873240', '7892973240', 'rohithjoe1234@gmail.com', '1999-07-21', 25, '2', '2', 'Gandhi R', 'Auto driver', 14000.00, 1, 0.00, 18000.00, '1st cross Dr TCM Royan near Ambedkar statue', 'Bengaluru', '2502220007', '1', '1', 'upload_files/candidate_tracker/19626681495_RohiResume.pdf', NULL, '1', '2025-02-22', 0, '', '3', '59', '2025-02-27', 192000.00, '', '5', '1970-01-01', '1', 'Fresher for our role can be trained need to check in training and confirm', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55671', '55555', '2025-02-27', 1, '2025-02-22 06:37:11', 60, '2025-02-26 08:14:25', 0, NULL, 1),
(24244, 'SARANYA.S', '5', '8939716139', '', 'saranyapriya1107@gmail.com', '2001-07-11', 23, '2', '2', 'Usha', 'Home maker', 8000.00, 1, 28000.00, 30000.00, 'Chennai', 'Chennai', '2502220008', '50', '2', 'upload_files/candidate_tracker/92845481102_PRIYARESUME.pdf', NULL, '1', '2025-02-22', 20, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-02-22 06:57:33', 104, '2025-02-22 02:38:22', 0, NULL, 1),
(24245, 'Samsunisha', '6', '8838621250', '8124069884', 'samsunisha1008@gmail.com', '2004-08-10', 20, '2', '2', 'Sheik abdullah', 'Daily wages', 15.00, 1, 0.00, 18.00, 'Arumbakkam', 'Arumbakkam', '2502220009', '45', '1', 'upload_files/candidate_tracker/30322269975_Samsunisharesume1.pdf', NULL, '1', '2025-02-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '5', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-22 07:09:41', 104, '2025-02-22 02:39:13', 0, NULL, 1),
(24246, 'Vasanthapriya.M', '4', '9791983554', '7418379757', 'priyasinthu2001@gmail.com', '2001-06-20', 23, '2', '1', 'Prakash', 'RND - Machine fabrication', 25000.00, 2, 0.00, 15000.00, 'Theni', 'Porur', '2502220010', '50', '1', 'upload_files/candidate_tracker/68421017346_RESUME.docx', NULL, '1', '2025-02-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-22 10:25:22', 1, '2025-02-22 10:33:40', 0, NULL, 1),
(24247, '', '0', '7358857905', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502220011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-22 11:02:12', 0, NULL, 0, NULL, 1),
(24248, '', '0', '8825666909', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502230001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-23 12:29:08', 0, NULL, 0, NULL, 1),
(24249, 'Dharani Sukumar', '4', '9842389921', '', 'stharani657@gmail.com', '2000-02-25', 24, '2', '2', 'R Sukumar, S Sarala', 'Tailor', 30000.00, 1, 0.00, 14000.00, 'Thanjavur', 'Thanjavur', '2502240001', '1', '1', 'upload_files/candidate_tracker/51327480800_Dharani.pdf', NULL, '1', '2025-02-24', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for team and sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-24 04:03:48', 154, '2025-02-24 10:05:26', 0, NULL, 1),
(24250, 'S. Srivishnu', '4', '6383680961', '8524916091', 'srivishnu7868@gmail.com', '2001-02-08', 24, '2', '2', 'K. Selva kumar', 'Business', 20000.00, 25, 0.00, 16000.00, 'Injambakkam chennai', 'Srivilliputur', '2502240002', '50', '1', 'upload_files/candidate_tracker/56640907269_srivishnuresume24.docx', NULL, '1', '2025-02-24', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', 'Not interested in sales, parents wont allow', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-24 05:00:52', 154, '2025-02-24 12:04:20', 0, NULL, 1),
(24251, '', '0', '8270595923', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502240003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-24 05:00:59', 0, NULL, 0, NULL, 1),
(24252, 'SUBALAKSHMI.S', '4', '9361145245', '8124489045', 'crazysuba2002@gmail.com', '2002-06-17', 22, '2', '2', 'Subramaniyan', 'Farmer', 30000.00, 2, 21000.00, 20000.00, 'Kallakurichi', 'Maraimalai nagar, Chennai', '2502240004', '1', '2', 'upload_files/candidate_tracker/8030801021_SubaLakshmi.Sresume.pdf', NULL, '1', '2025-02-24', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', 'False Commitment', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-02-24 05:06:49', 154, '2025-02-24 02:56:32', 0, NULL, 1),
(24253, 'Aarthi', '4', '9384623188', '', 'aarthipooja10@gmail.com', '2000-10-05', 24, '2', '1', 'Devendiran', 'Retired postman', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2502240005', '50', '1', 'upload_files/candidate_tracker/72788402513_ResumeAarthi.D.pdf', NULL, '1', '2025-02-24', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales team', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', 'communication not good and long distance.', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-24 05:09:25', 154, '2025-02-24 11:26:10', 0, NULL, 1),
(24254, 'Subash M', '4', '9677276618', '', 'saisubash289@gmail.com', '2010-02-24', 0, '2', '2', 'Annapoorani', 'Tailor', 20000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2502240006', '1', '2', 'upload_files/candidate_tracker/84694598767_SUBASHRESUME.pdf', NULL, '1', '2025-02-24', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Already attend interview and joined he left at the joining date, while working in previous company he gave this try', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-02-24 05:13:08', 154, '2025-02-24 11:48:35', 0, NULL, 1),
(24255, '', '0', '9080532997', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502240007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-24 05:33:42', 0, NULL, 0, NULL, 1),
(24256, '', '0', '7395963046', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502240008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-24 05:34:01', 0, NULL, 0, NULL, 1),
(24257, '', '0', '8008779215', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502240009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-24 05:34:52', 0, NULL, 0, NULL, 1),
(24258, 'manojkumar pushpalingam', '6', '8489806464', '', 'kumarm49755@gmail.com', '2002-10-03', 22, '2', '2', 'pushpalingam', 'business', 30000.00, 2, 0.00, 18000.00, 'dindigul', 'chennai', '2502240010', '50', '1', 'upload_files/candidate_tracker/9456834428_ManojkumarsResume1.pdf', NULL, '1', '2025-02-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication was good and interest in sales and we shall try for 7 days training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-24 05:56:37', 153, '2025-02-24 12:15:24', 0, NULL, 1),
(24259, 'shruthi', '6', '9342865616', '9361050720', 'shruthidharan2104@gmail.com', '2010-02-24', 0, '1', '2', 'sreeja', 'private work', 40000.00, 1, 17000.00, 21000.00, 'ambattur', 'ambattur', '2502240011', '', '2', 'upload_files/candidate_tracker/85507615264_shruthiresume.docx', NULL, '1', '2025-02-24', 1, 'c99084', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'long distance', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-02-24 06:10:14', 154, '2025-02-24 01:10:13', 0, NULL, 1),
(24260, 'M.Bharanidharan', '6', '7550143404', '', 'bharanib805@gmail.com', '2002-08-29', 22, '2', '2', 'K.Mariappan', 'Police', 60000.00, 1, 0.00, 18000.00, 'Tondaiyapet', 'Tondaiyapet', '2502240012', '1', '1', 'upload_files/candidate_tracker/30364285200_DocumentfromBharani.pdf', NULL, '1', '2025-02-25', 0, '', '3', '59', '2025-03-03', 204000.00, '', '4', '2025-05-06', '1', 'Communication Ok Can give a try and check in training period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '2025-03-03', 1, '2025-02-24 06:15:21', 60, '2025-03-01 06:14:45', 0, NULL, 1),
(24261, 'Karthikeyan J', '6', '7871311766', '9551765904', 'kk4786718@gmail.com', '2002-11-20', 22, '2', '2', 'Kowsalya', 'Company worker', 18000.00, 1, 0.00, 200000.00, 'Perambur', 'Perambur', '2502240013', '50', '1', 'upload_files/candidate_tracker/44295180263_DocumentfromKarthi.pdf', NULL, '1', '2025-02-24', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-02-24 07:00:54', 153, '2025-02-24 02:51:58', 0, NULL, 1),
(24262, 'Surjith Kumar E', '4', '7305211430', '', 'surjithkumarmatcho@gmail.com', '2005-06-18', 19, '2', '2', 'Ezhilan', 'Office boy', 25000.00, 1, 0.00, 20000.00, 'No.2,13th Street navel hospital road periyamet', 'No.2,13th Street navel hospital road periyamet', '2502240014', '45', '1', 'upload_files/candidate_tracker/98051384553_1000126847.pdf', NULL, '1', '2025-02-24', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales team', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-24 07:03:00', 154, '2025-02-24 05:05:16', 0, NULL, 1),
(24263, 'S. Ragavan', '6', '8148544002', '9840661073', 'Ragavan3636Ragavan@gmail.com', '2006-05-12', 18, '2', '2', 'Sivakumar', 'Auto driver', 20000.00, 2, 0.00, 20000.00, 'Elephant gate', 'Elephant gate', '2502240015', '45', '1', 'upload_files/candidate_tracker/67065386974_Screenshot20250224124453652com.whatsapp3.pdf', NULL, '1', '2025-02-24', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-24 07:05:59', 154, '2025-02-24 05:04:57', 0, NULL, 1),
(24264, 'Saranya R', '6', '9047968759', '8610077341', 'saranya200105@gmail.com', '2001-05-14', 23, '3', '2', 'Santhi', 'House wife', 100000.00, 2, 21000.00, 25000.00, 'Kumbakonam', 'Chennai, thiruvotriyur', '2502240016', '', '2', 'upload_files/candidate_tracker/86590188792_Saranyacv.pdf202501251216470000.pdf', NULL, '1', '2025-02-24', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-24 07:07:57', 154, '2025-02-28 02:58:01', 0, NULL, 1),
(24265, 'SARAL.E', '6', '9080786459', '', 'saraledvin7500@gmail.com', '2000-02-26', 24, '2', '2', 'Meena.E', 'House maid', 10000.00, 3, 0.00, 17000.00, 'Chennai', 'Chennai', '2502240017', '1', '1', 'upload_files/candidate_tracker/43968062486_Saral1.docx', NULL, '1', '2025-02-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1027', '', '', '', '1970-01-01', 1, '2025-02-24 07:09:07', 104, '2025-02-24 02:49:33', 0, NULL, 1),
(24266, 'Mageshwari', '4', '9677294614', '9514243270', 'mahisagi12@gmail.com', '1997-12-20', 27, '2', '2', 'K. Arogya mary', 'Housewife', 15000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2502240018', '1', '2', 'upload_files/candidate_tracker/59048169575_Mageshwari.docx', NULL, '1', '2025-02-24', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1027', '', '', '', '1970-01-01', 1, '2025-02-24 07:25:47', 154, '2025-02-24 06:51:35', 0, NULL, 1),
(24267, 'vIMALA', '5', '7448463082', '9363577394', 'divi022712@gmail.com', '2002-01-27', 23, '2', '2', 'Palani', 'Driver', 50000.00, 1, 29000.00, 35000.00, 'Chennai', 'Chennai', '2502240019', '1', '2', 'upload_files/candidate_tracker/70675127732_vimalavimala.pdf', NULL, '1', '2025-02-24', 15, '', '3', '59', '2025-03-10', 375000.00, '', '5', '1970-01-01', '1', 'Communication Ok Previous attended and hold due to position hold now we have processed to the Porrselvam team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55650', '55560', '2025-03-10', 1, '2025-02-24 08:00:27', 60, '2025-03-03 05:30:26', 0, NULL, 1),
(24268, 'Naveenkumar S', '6', '7550349421', '7092200712', 'naveen10394m@gmail.com', '2000-10-19', 24, '2', '2', 'Senthikumar', 'Agri', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2502240020', '50', '1', 'upload_files/candidate_tracker/99446250353_Naveenresume.pdf', NULL, '1', '2025-02-25', 0, '', '3', '59', '2025-03-03', 198000.00, '', NULL, '2025-03-25', '2', 'Communication Ok Career Gap need to train from scratch can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2025-03-03', 1, '2025-02-24 11:34:28', 60, '2025-03-01 06:12:47', 0, NULL, 1),
(24269, '', '0', '7812889335', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502240021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-24 12:07:32', 0, NULL, 0, NULL, 1),
(24270, 'Besikar', '6', '9585903539', '', 'besilove2001@gmail.com', '2003-06-27', 21, '2', '2', 'Sundar', 'Driver', 35000.00, 1, 0.00, 20000.00, '532, sagaya matha street , tiruvannamalai', '161, gangai amman colony , kodambakkam', '2502240022', '1', '1', 'upload_files/candidate_tracker/38050484728_BESICV.pdf', NULL, '1', '2025-02-25', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2025-02-24 01:26:42', 153, '2025-02-25 12:11:47', 0, NULL, 1),
(24271, 'Arun Kumar', '4', '9080086074', '9003292172', 'samstephen638@gmail.com', '2004-01-30', 21, '2', '2', 'D Shanmugam', 'Own business', 800000.00, 1, 21000.00, 23000.00, 'CHENNAI', 'CHENNAI', '2502240023', '1', '2', 'upload_files/candidate_tracker/14963632948_CV2024121520234433.pdf', NULL, '1', '2025-02-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', 'Need time to discuss with parents', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-02-24 05:47:54', 154, '2025-02-25 04:08:08', 0, NULL, 1),
(24272, 'Sadaiyappan Murugan', '4', '6369942229', '8610784144', 'Sadaiyappan02012002@gmail', '2002-01-02', 23, '2', '2', 'Murugan', 'Concertd', 15000.00, 1, 0.00, 15000.00, 'Salem', 'Chennai', '2502250001', '50', '1', 'upload_files/candidate_tracker/88622310116_sadaiyappanresume.pdf', NULL, '1', '2025-02-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', 'Voice too low, Not much comfort with targets, Interested in customer support role only.', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-25 04:20:22', 154, '2025-02-25 03:23:07', 0, NULL, 1),
(24273, 'SUBHASHINI.K', '6', '9941420142', '', 'subhashini3322@gmail.com', '2003-06-22', 21, '2', '2', 'A.kumar', 'Two wheeler mechanic', 10000.00, 0, 0.00, 15000.00, 'No-26/75 little mount', 'Chennai', '2502250002', '50', '1', 'upload_files/candidate_tracker/84394148654_SUBHASHINI.KResume11.pdf', NULL, '1', '2025-02-25', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-02-25 04:48:57', 153, '2025-02-25 12:14:19', 0, NULL, 1),
(24274, 'M Srinivasan', '4', '7305921556', '', 'srinivasanm3333@gmail.com', '2003-08-16', 21, '2', '2', 'N Murugan', 'Worker', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2502250003', '50', '1', 'upload_files/candidate_tracker/45704219572_sriniresume1.pdf', NULL, '1', '2025-02-25', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He was thinking about the sales pressure', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-25 05:09:11', 154, '2025-02-25 02:33:49', 0, NULL, 1),
(24275, 'Yogeshraj Maruthamuthu', '4', '7639967336', '9003927693', 'intelligentboy2102002@gmail.com', '2002-10-02', 22, '2', '2', 'Maruthamuthu', 'Farmer', 20000.00, 0, 13000.00, 15000.00, 'THANJAVUR', 'THANJAVUR', '2502250004', '1', '2', 'upload_files/candidate_tracker/92123161157_yogeshrajresume.pdf', NULL, '1', '2025-02-25', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-25 05:12:01', 154, '2025-02-25 11:15:55', 0, NULL, 1),
(24276, '', '0', '7299057075', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502250005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-25 05:24:08', 0, NULL, 0, NULL, 1),
(24277, 'Subash', '4', '7299057875', '7339527459', 'subashkoushi0622@gmail.com', '2002-01-22', 23, '2', '2', 'Manjula', 'House keeping', 120000.00, 1, 17500.00, 19000.00, 'CHETPET', 'CHETPET', '2502250006', '45', '2', 'upload_files/candidate_tracker/39792950755_DOC20240201WA0000.202407022207270000.pdf', NULL, '1', '2025-02-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'will confirm and say tomorrow', '', '', '', '', '', '1970-01-01', 1, '2025-02-25 05:24:23', 154, '2025-02-25 03:26:29', 0, NULL, 1),
(24278, 'KARTHI K', '6', '7708031860', '7540064140', 'KARTHIAK672@GAMIL.COM', '2001-04-10', 23, '2', '2', 'Kaliyaperumal', 'Farmer', 350000.00, 1, 0.00, 22000.00, 'Nagapatinam', 'Chennai', '2502250007', '50', '2', 'upload_files/candidate_tracker/49565150086_DOC20240412WA0005.11741086927048Karthi.pdf', NULL, '3', '2025-03-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-25 05:30:05', 1, '2025-03-06 08:20:08', 0, NULL, 1),
(24279, 'Samkumar sankar', '4', '9962889664', '8124026359', 'shamku5035@gmail.com', '2004-01-08', 21, '2', '2', 'Sankar', 'Builder', 45000.00, 1, 0.00, 18500.00, 'Chennai', 'Chennai', '2502250008', '50', '1', 'upload_files/candidate_tracker/47630399658_samKumarresume.pdf', NULL, '1', '2025-02-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', 'answering in only one word...  Communication not good', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-25 06:22:36', 154, '2025-02-25 12:58:17', 0, NULL, 1),
(24280, 'Sushil Kumar', '6', '6203525589', '', 'sk7047804@gmail.com', '2003-06-30', 21, '2', '2', 'Ramsinghasan sah', 'Farmer', 20.00, 2, 17000.00, 25000.00, 'Bihar', 'Koramangala', '2502250009', '57', '2', 'upload_files/candidate_tracker/55046220629_AllupdateResume1yrEXPpdf.pdf', NULL, '2', '2025-02-25', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication problem fresher 23k', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-25 06:38:17', 154, '2025-02-27 12:52:50', 0, NULL, 1),
(24281, 'Gokula Krishnan', '4', '7338767271', '9865242026', 'Selgokul14@gmail.com', '1999-12-14', 25, '2', '2', 'Rajeswari', 'Housewife', 145000.00, 2, 0.00, 22000.00, 'Guindy', 'Guindy', '2502250010', '45', '1', 'upload_files/candidate_tracker/76531671997_Resumegokullatest.pdf', NULL, '1', '2025-02-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', 'Communication not good', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-25 06:47:13', 154, '2025-02-25 01:30:37', 0, NULL, 1),
(24282, 'Vinayak hugar', '6', '9611382238', '', 'vinayakhugar1995@gmail.com', '1995-05-05', 29, '2', '2', 'Chandrashekhar', 'Ex govt employee', 25000.00, 1, 0.00, 25000.00, 'Hubli karnataka', 'Hosa road Bangalore', '2502250011', '57', '1', 'upload_files/candidate_tracker/35435774674_RESUME.pdf', NULL, '1', '2025-02-25', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication problem', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-25 07:00:55', 154, '2025-02-27 12:53:18', 0, NULL, 1),
(24283, 'Pavithran', '4', '7550101742', '7200342037', 'Smartpavithran9@gmail.com', '1997-01-09', 28, '2', '2', 'Vijaya', 'Hoisewife', 30000.00, 1, 18000.00, 23000.00, 'Chennai', 'Perambur', '2502250012', '50', '2', 'upload_files/candidate_tracker/2572078681_paviRrrr.docx', NULL, '1', '2025-02-25', 2, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', 'Interested in non voice only', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-25 07:09:25', 154, '2025-02-25 02:51:08', 0, NULL, 1),
(24284, 'RAJASEKHAR KAKKU', '5', '8686694917', '', 'abhichinnu.121@gmail.com', '1996-06-20', 28, '2', '2', 'Venkateshwarlu', 'Painter', 40000.00, 4, 24000.00, 26000.00, 'Santha pet , Nellore 524001', 'Perambur, Chennai 600011', '2502250013', '50', '2', 'upload_files/candidate_tracker/45337447874_RajasekharNewUpdate2024.Feb.docx', NULL, '1', '2025-02-25', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'reschedule', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2025-02-25 07:16:20', 154, '2025-02-25 06:40:45', 0, NULL, 1),
(24285, 'Bharani sai kumar', '6', '8939197769', '8925536776', 'bharanibj2411@gmail.com', '2004-03-24', 20, '2', '2', 'Neela kannan', 'Chennai', 35000.00, 2, 15000.00, 18000.00, '63 A2 ANU FLATS CLC LINE 8TH STREET CHROMPET', '63 A2 ANU FLATS CLC LINE 8TH STREET CHROMPET', '2502250014', '50', '2', 'upload_files/candidate_tracker/60578846540_Bharaniresume3.docx', NULL, '1', '2025-02-26', 0, '', '3', '59', '2025-02-27', 204000.00, '', '3', '2025-02-27', '2', 'Communication Ok 5050 profile career gap due to accident can be trained in our roles and check in training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2025-02-27', 1, '2025-02-25 10:55:27', 60, '2025-02-26 07:46:03', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24286, 'Vishnu Prasath', '34', '7339097908', '', 'vishnuprasathvp65@gmail.com', '2002-12-18', 22, '2', '2', 'Siva Kumar', 'catering', 50000.00, 0, 0.00, 18000.00, 'puducherry', 'chennai', '2502250015', '50', '1', 'upload_files/candidate_tracker/84242868097_VISHNUPRASATHSRESUME1.pdf', NULL, '1', '2025-02-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-25 11:10:30', 1, '2025-02-25 11:16:59', 0, NULL, 1),
(24287, 'Ashwin', '4', '9551129414', '', 'ashwinash018@gmail.com', '2003-11-08', 21, '2', '2', 'Venu Gopal', 'Shop kepper', 10000.00, 1, 14000.00, 15000.00, '2/37 pillayar koil Street athur karanodai 600067', 'Karanodai', '2502250016', '50', '2', 'upload_files/candidate_tracker/1152648534_Ashwin.pdf', NULL, '1', '2025-02-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-25 11:18:18', 1, '2025-02-25 11:51:19', 0, NULL, 1),
(24288, 'MALAVIKA M', '4', '7010644839', '9941680112', 'abithamalavika@gmail.com', '2003-01-21', 22, '2', '2', 'Manavalan D', 'Own Business', 30.00, 2, 0.00, 15.00, 'Kundrathur', 'Kundrathur', '2502250017', '50', '1', 'upload_files/candidate_tracker/54185964757_IamsharingDOC20240712WA0000.withyou.pdf', NULL, '1', '2025-02-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', 'He came a week ago by internal team rejected. now consultancy sent her', '', '', '', '', '1970-01-01', 1, '2025-02-25 12:12:00', 104, '2025-02-26 04:08:14', 0, NULL, 1),
(24289, 'Loknath v M', '6', '9600365523', '', 'loknathloki3448@gmail.com', '2004-08-07', 20, '2', '2', 'Venkatesan B', 'Car driver', 12000.00, 1, 0.00, 20000.00, 'Ponneri', 'Chennai', '2502260001', '1', '1', 'upload_files/candidate_tracker/37987977100_lokiresumenew1.docx', NULL, '1', '2025-02-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He will not suitable for sales, he pursuing IT course', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-02-26 05:12:42', 153, '2025-02-26 12:07:47', 0, NULL, 1),
(24290, 'Shrivatchav', '6', '8428133800', '', 'shrivatchavbabu2003@gmail.com', '2003-10-05', 21, '2', '2', 'Divakarbabu', 'Business', 20000.00, 1, 0.00, 20000.00, 'Ponneri', 'Chennai', '2502260002', '1', '1', 'upload_files/candidate_tracker/54748806961_CVResume.pdf', NULL, '1', '2025-02-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He will not suitable for sales, he pursuing IT course', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-02-26 05:13:20', 153, '2025-02-26 12:07:55', 0, NULL, 1),
(24291, 'Bhavani', '4', '6380982442', '', 'bhavanipugal425@gmail.com', '2003-06-08', 21, '2', '2', 'Pugalendran', 'Self employed', 17000.00, 2, 0.00, 17000.00, '39th Jothi nagar lakshmipuram rettri Chennai -99', '39th Jothi nagar lakshmipuram rettri Chennai -99', '2502260003', '50', '1', 'upload_files/candidate_tracker/68971424946_resume.pdf', NULL, '1', '2025-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-26 05:19:55', 1, '2025-02-26 05:23:16', 0, NULL, 1),
(24292, 'Benjamin Franklin', '5', '7010185467', '6383805019', 'benjaminsony711@gmail.com', '1998-02-22', 27, '2', '2', 'Malgiya', 'Security', 400000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2502260004', '1', '2', 'upload_files/candidate_tracker/96472534607_BenjaminFranklinResume21.docx', NULL, '1', '2025-02-26', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'The candidate struggled to effectively convey their thoughts and ideas during the interview and candidatexquots technical knowledge fell short of the requirements for the position so i decided final status is rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55634', '55557', '1970-01-01', 1, '2025-02-26 05:41:24', 153, '2025-02-27 03:17:01', 0, NULL, 1),
(24293, 'Karthikeyan B', '6', '6379599284', '9384172989', 'karthikeyanbb4@gmail.com', '2005-07-02', 19, '2', '2', 'Balaraman E', 'Chennai Nungambakkam', 350000.00, 1, 14000.00, 16000.00, 'Tiruvannamalai Dt Kadaladi Village', 'Chennai Nungambakkam', '2502260005', '1', '2', 'upload_files/candidate_tracker/52620738508_Karthikeyan.Karma2025022113.2.14.pdf', NULL, '1', '2025-02-26', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is little bit good.but he very slow and voice is very  low.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-02-26 05:54:15', 153, '2025-02-26 01:24:43', 0, NULL, 1),
(24294, 'Arputhan', '6', '6382205718', '', 'arputhanarputhan7@gmail.com', '2001-11-19', 23, '2', '2', 'Vijaya', 'Housewife', 15000.00, 0, 0.00, 16500.00, 'Perambur', 'Perambur', '2502260006', '57', '1', 'upload_files/candidate_tracker/91391644952_ArputhanResume.pdf', NULL, '1', '2025-02-26', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'CANDIDATE WAS NOT CONFIDENT IN COMMUNICATION AND STABILITY WAS NOT SURE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-26 05:59:43', 153, '2025-02-26 01:25:18', 0, NULL, 1),
(24295, 'Heman', '6', '6385653527', '', 'hemanbharathi@gmail.com', '1999-04-23', 25, '2', '2', 'bharathi', '-', 50000.00, 1, 0.00, 21000.00, 'ramanthapuram', 'kodambakkam', '2502260007', '1', '1', 'upload_files/candidate_tracker/51264253086_HemanNew.pdf', NULL, '1', '2025-02-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He wil not willing to take calls in own mobile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-02-26 06:12:12', 153, '2025-02-26 02:49:25', 0, NULL, 1),
(24296, 'Brinda R', '6', '7022632587', '9611560681', 'rbrinda44@gmail.com', '2002-01-13', 23, '2', '2', 'Manodini', 'House keeping', 20000.00, 1, 15000.00, 20000.00, '#922, 31st B cross Tilak nagar Jayanagar', 'Bangalore', '2502260008', '1', '2', 'upload_files/candidate_tracker/43905307763_BRINDAJOBRESUME.pdf', NULL, '1', '2025-02-26', 30, '', '3', '59', '2025-04-07', 216000.00, '', '3', '2025-04-09', '2', 'Communication Ok fresher for our roles  can be trained in our roles need to check and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55671', '55555', '2025-04-07', 1, '2025-02-26 06:18:54', 60, '2025-04-03 04:36:03', 0, NULL, 1),
(24297, 'Nikhil c', '6', '8089226327', '8527713009', 'Nikhil.Nikhil.C@gmail.com', '1996-04-03', 28, '2', '2', 'Chandrababu c', 'Driver', 20000.00, 0, 20000.00, 25000.00, 'Kerala', 'Banglore', '2502260009', '57', '2', 'upload_files/candidate_tracker/25278815544_NikhilResumeNew.pdf', NULL, '1', '2025-02-26', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'kannada not known', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-26 06:27:49', 104, '2025-02-28 06:02:05', 0, NULL, 1),
(24298, 'Raghul', '4', '7305467241', '', 'draghul3232@gmail.com', '2004-08-21', 20, '2', '2', 'Dhanapal K', 'Dress sales man', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Guindy, Chennai', '2502260010', '50', '1', 'upload_files/candidate_tracker/61429692357_RaghulResume2.pdf', NULL, '1', '2025-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-26 06:39:48', 1, '2025-02-26 06:44:24', 0, NULL, 1),
(24299, 'pratheeba', '6', '6379560491', '', 'pratheeba487@gmail.com', '2001-11-18', 23, '2', '2', 'subbiah', 'n/a', 15000.00, 1, 0.00, 250000.00, 'pudukkottai', 'chennai', '2502260011', '50', '1', 'upload_files/candidate_tracker/58553251094_PratheebaS.pdf', NULL, '1', '2025-02-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is unfit for sales profile, she looking banking process related, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-02-26 07:53:20', 154, '2025-02-27 06:09:00', 0, NULL, 1),
(24300, 'Vaishali', '6', '7373117378', '', 'vaishuvaishu5097@gamil.com', '2003-02-05', 22, '1', '2', 'RAMESH', 'Tailor', 30000.00, 2, 13000.00, 18000.00, '4/389, tondiapet, chennai', '4/389, anna Street, ptmuthu nagar , redhills', '2502260012', '', '2', 'upload_files/candidate_tracker/55305398258_56100174421677315828.pdf', NULL, '1', '2025-02-26', 0, '99096', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and vocie good , past mobile insurance workin, timing reason to relaving so try for 7 days training period, and exp salary for 15 to 16k', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-02-26 08:02:50', 153, '2025-02-26 02:41:38', 0, NULL, 1),
(24301, 'Ravichandran.k', '6', '6380467030', '', 'ravichandran.k6501@gmail.com', '2001-05-06', 23, '1', '2', 'Kumar', 'Driver', 20000.00, 1, 14500.00, 20000.00, '1/2823,nethaji st, ambedkar nagar, redhills', '1/2823,nethiji st, ambedkar nagar, redhills', '2502260013', '', '2', 'upload_files/candidate_tracker/77138354435_RajResume.pdf', NULL, '1', '2025-02-26', 15, '99096', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-02-26 08:17:00', 153, '2025-02-26 02:40:53', 0, NULL, 1),
(24302, 'Karan Kumar Suresh Kumar', '6', '8220122577', '', 'karan70207k@gmail.com', '1997-02-07', 28, '2', '2', 'Suresh Kumar', 'International Marbles Company', 60000.00, 1, 0.00, 14000.00, 'Kanniyakumari', 'Chennai', '2502260014', '50', '1', 'upload_files/candidate_tracker/64876513609_Resume.pdf', NULL, '1', '2025-02-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication was good and have interest in sales and also ok for immediate joining we shall give 15-16k as salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-26 01:11:17', 154, '2025-02-27 04:12:25', 0, NULL, 1),
(24303, '', '0', '7397118184', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502260015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-26 01:50:21', 0, NULL, 0, NULL, 1),
(24304, 'S.Pavithra devi', '5', '6374156376', '', 'pavi55455@gmail.com', '2000-10-05', 24, '2', '2', 'M.Sekar', 'Business', 60000.00, 2, 15000.00, 20000.00, 'Pudukkottai', 'Saithapet Chennai', '2502270001', '50', '2', 'upload_files/candidate_tracker/91475672555_CV2025022707544929.pdf', NULL, '1', '2025-02-27', 0, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Poor Communication Skills and  Limited Technical Expertise...Lack of Problem-Solving Abilities and finally Unprepared and Disorganized so not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55634', '55557', '1970-01-01', 1, '2025-02-27 03:45:06', 153, '2025-02-27 02:51:04', 0, NULL, 1),
(24305, 'Sanjay m', '6', '7259151190', '', 'Sanju69227@gmail.com', '2002-05-05', 22, '2', '2', 'Manjappa', 'Bussiness', 25000.00, 2, 20000.00, 25000.00, 'Bengaluru', 'Neelsandra bengaluru', '2502270002', '57', '2', 'upload_files/candidate_tracker/61486981629_SanjaysResume.pdf', NULL, '1', '2025-02-27', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication problem', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-02-27 05:30:54', 154, '2025-02-27 05:42:49', 0, NULL, 1),
(24306, 'KEERTHANA D', '6', '9916464092', '', 'keerthanavd294@gmail.com', '2000-03-13', 24, '2', '1', 'Dakshina murthy', 'Carpenter', 25000.00, 1, 0.00, 19000.00, 'Jayanagar 5th block', 'Jayanagar. 5th block', '2502270003', '57', '2', 'upload_files/candidate_tracker/60377067973_Keerthanaresume.pdf', NULL, '1', '2025-02-27', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'salary expectation 17k  in hand and  do not have previous company payslips or relevant documents', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '2025-03-12', 1, '2025-02-27 05:36:14', 147, '2025-03-12 07:46:21', 0, NULL, 1),
(24307, 'Yuvashree', '6', '7200669550', '7845558389', 'mahayuva601@gmail.com', '2010-02-27', 0, '1', '2', 'Gajalakshmi.M', 'House wife', 180000.00, 1, 12000.00, 17000.00, '1181/69 block v.o.c Nagar Tondiarpet Chennai-81', '1181/69 block v.o.c Nagar Tondiarpet Chennai-81', '2502270004', '', '2', 'upload_files/candidate_tracker/68825363820_M.YUVASREEResume.pdf', NULL, '1', '2025-02-27', 0, 'P1287', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication was  not good and not even know their company process and work properly and not sure about stability', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-27 05:44:57', 153, '2025-02-27 12:10:42', 0, NULL, 1),
(24308, 'Durga', '6', '6379402322', '6374221845', 'dhurga20040625@gmail.com', '2004-06-25', 20, '1', '2', 'Saroja', 'House wife', 130000.00, 1, 12000.00, 18000.00, 'No.9Rope godown stress', 'No.9 Rope godown stress', '2502270005', '', '2', 'upload_files/candidate_tracker/37058576074_DurgaResume.pdf', NULL, '1', '2025-02-27', 0, 'P1287', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'cANDIDATE  WAS NOT GOOD AT COMMUNICATION AND NOT ABLE TO EXPLAIN THEIR EXISTING WORK PROCESS AND PLAN NOT SUITABLE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-27 06:10:42', 153, '2025-02-27 12:10:07', 0, NULL, 1),
(24309, 'Deva Antony', '6', '9345309956', '9789812720', 'cmdevaantony@gmail.com', '2003-04-01', 21, '2', '2', 'Charles enigo', 'Bcom', 100000.00, 1, 0.00, 16000.00, 'Avadi', 'Avadi', '2502270006', '50', '1', 'upload_files/candidate_tracker/31000947429_DevaAntonyRESUME.pdf', NULL, '1', '2025-02-28', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-27 06:14:30', 153, '2025-03-06 02:51:41', 0, NULL, 1),
(24310, 'Mukesh', '6', '9363095415', '9840356396', 'mukeshmurugan1302@gmail.com', '2003-11-13', 21, '2', '2', 'Kalpana', 'Food corporation of india', 16000.00, 1, 15000.00, 20000.00, 'Sharama nagar', 'Sharama nagar', '2502270007', '1', '2', 'upload_files/candidate_tracker/50973231024_Mukesh.pdf', NULL, '1', '2025-02-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '4', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-02-27 06:19:25', 153, '2025-02-27 01:20:16', 0, NULL, 1),
(24311, 'SREEJA.K', '6', '8248663329', '9840761589', 'knsriju@gmail.com', '2003-11-05', 21, '2', '2', 'K.nirmala', 'Tailoring', 34000.00, 1, 0.00, 15000.00, 'Kodungaiyur', 'Kodungaiyur', '2502270008', '1', '1', 'upload_files/candidate_tracker/26336418180_srijapdf.pdf', NULL, '1', '2025-02-27', 0, '', '3', '59', '2025-03-03', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can be trained in our roles fresher should check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '2025-03-03', 1, '2025-02-27 06:29:18', 60, '2025-03-01 06:16:24', 0, NULL, 1),
(24312, 'Padhmavathy s', '6', '9940626092', '7358657598', 'Padhmavathysridhar@gmail.com', '2001-08-12', 23, '2', '2', 'Lakshmi', '12th', 20000.00, 0, 17000.00, 20000.00, 'Chennai', 'Chennai', '2502270009', '45', '2', 'upload_files/candidate_tracker/73850995645_DocumentfromPv.pdf', NULL, '1', '2025-02-27', 0, '', '3', '59', '2025-03-03', 186000.00, '', '5', '1970-01-01', '2', 'Communication Ok Fresher for our roles career gap due to personal family issues need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2025-03-03', 1, '2025-02-27 07:07:52', 60, '2025-03-01 06:18:24', 0, NULL, 1),
(24313, 'vedaprakash.k', '6', '7395980380', '8778864470', 'vedakamaraj27@gmail.com', '2001-08-14', 23, '2', '2', 'kamaraj.s', 'driver', 20000.00, 1, 0.00, 18000.00, '1/50 Amman koil Street soorapattu puzhal', '1/50 Amman koil Street soorapattu puzhal', '2502270010', '50', '1', 'upload_files/candidate_tracker/29643973324_vedaprakash.pdf', NULL, '1', '2025-02-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-02-27 08:05:04', 153, '2025-02-28 11:49:17', 0, NULL, 1),
(24314, 'Saravanan .v', '6', '8015155392', '9884167418', 'Saravanan8015155@gmail.com', '2003-01-21', 22, '2', '2', 'Vadivel', 'Coolie', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2502270011', '50', '1', 'upload_files/candidate_tracker/30180177438_CV2025022713241719.pdf', NULL, '1', '2025-02-28', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-02-27 08:06:13', 153, '2025-03-06 02:51:55', 0, NULL, 1),
(24315, 'LOGESHWARAN S', '4', '9629182702', '', 'logeshwaranlog24@gmail.com', '2001-04-24', 23, '2', '2', 'revathi', 'farmer', 20000.00, 1, 0.00, 18000.00, 'Trichy', 'Trichy', '2502270012', '50', '1', 'upload_files/candidate_tracker/33134796068_LogeshwaranS.pdf', NULL, '1', '2025-02-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-27 12:08:44', 1, '2025-02-27 12:15:09', 0, NULL, 1),
(24316, '', '0', '6379741377', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502270013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-27 12:16:10', 0, NULL, 0, NULL, 1),
(24317, '', '0', '9677208546', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502270014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-27 01:42:55', 0, NULL, 0, NULL, 1),
(24318, 'Madhumitha Maduraiveeran', '6', '6374400458', '', 'mitha1071@gmail.com', '2001-04-19', 23, '2', '2', 'Sudarmani', 'Tailor', 120000.00, 2, 0.00, 18000.00, 'Chengalpattu', 'Chengalpattu', '2502280001', '50', '1', 'upload_files/candidate_tracker/5394992957_MadhumithasResume5.pdf', NULL, '2', '2025-02-28', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-28 04:37:19', 154, '2025-03-07 10:36:37', 0, NULL, 1),
(24319, 'Rajagurumani', '23', '7871522552', '8531870420', 'rajagurumani246@gmail.com', '2000-11-24', 24, '3', '2', 'Maharasi', 'Staff Nurse', 75000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2502280002', '', '1', 'upload_files/candidate_tracker/39767837219_RajagurumaniRResume.pdf', NULL, '1', '2025-02-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-28 04:50:13', 153, '2025-02-28 10:46:14', 0, NULL, 1),
(24320, 'Koushik', '6', '9840966442', '9710196442', 'koushikpurushothaman@gmail.com', '2002-10-29', 22, '2', '2', 'Purushothaman', 'Own business', 30000.00, 1, 15000.00, 18000.00, 'KOYEMBEDU', 'KOYEMBEDU', '2502280003', '50', '2', 'upload_files/candidate_tracker/35731694374_CV2024091309070037.pdf', NULL, '1', '2025-02-28', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-02-28 04:52:45', 153, '2025-03-06 02:51:46', 0, NULL, 1),
(24321, 'Abinaya s', '4', '9345545749', '8946035057', 'abinaya140399@gmail.com', '2000-03-11', 24, '2', '2', 'Salendhiran', 'Farmer', 25000.00, 2, 19500.00, 20000.00, 'Middle street, Alagiyamanavalan', '583, Bharathidasan nagar, vilar road Thanjavur', '2502280004', '1', '2', 'upload_files/candidate_tracker/48663570884_Abiresume111.pdf', NULL, '1', '2025-02-28', 3, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-28 04:56:23', 154, '2025-02-28 10:40:04', 0, NULL, 1),
(24322, 'Swetha sivakumar', '4', '8270489105', '', 'Swetha827048@gmail.com', '2001-01-06', 24, '2', '2', 'Sivakumar', 'Driver', 400000.00, 2, 25000.00, 30000.00, 'Anakudi, kumbakonam', 'Anakudi, kumbakonam', '2502280005', '1', '2', 'upload_files/candidate_tracker/6661957956_SWE2001.docx1.pdf', NULL, '1', '2025-02-28', 3, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-02-28 05:06:47', 154, '2025-02-28 11:01:22', 0, NULL, 1),
(24323, '', '0', '9360491181', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2502280006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-02-28 05:10:44', 0, NULL, 0, NULL, 1),
(24324, 'Girish Kumar', '6', '9642757329', '8121418389', 'girishlllav@gmail.com', '1999-08-26', 25, '2', '2', 'Suseelamma', 'House wife', 300000.00, 0, 3.50, 3.90, 'Banglore btm layout', 'Btm layout', '2502280007', '1', '2', 'upload_files/candidate_tracker/69417744251_girishkumarreddyresume.pdf', NULL, '1', '2025-02-28', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'dUE TO COMMUNICATION AND SKILLS', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55555', '5151', '1970-01-01', 1, '2025-02-28 05:41:34', 154, '2025-02-28 12:58:10', 0, NULL, 1),
(24325, 'Sangeetha S', '23', '8838131490', '', 'sange8376@gmail.com', '2001-12-23', 23, '3', '2', 'T.Sankar', 'Bc', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2502280008', '', '1', 'upload_files/candidate_tracker/19251334447_SangeethaM.Scmathematics2024UIUXdesign.pdf', NULL, '1', '2025-02-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-28 05:47:01', 153, '2025-02-28 11:49:35', 0, NULL, 1),
(24326, 'Subalakshmi', '23', '6369936750', '', 'subalakshmianvi@gmail.com', '2002-02-01', 23, '3', '2', 'Velusamy', 'Fisherman', 20000.00, 2, 0.00, 15.00, 'Karaikal', 'Chennai', '2502280009', '', '1', 'upload_files/candidate_tracker/70048594502_subalakshmiBscCS2022.pdf', NULL, '1', '2025-02-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-28 05:48:59', 153, '2025-02-28 11:49:42', 0, NULL, 1),
(24327, 'V Kamini', '23', '8825493640', '', 'kamini20velavan@gmail.com', '2001-09-11', 23, '3', '2', 'A.Velavan', 'Fisherman', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2502280010', '', '1', 'upload_files/candidate_tracker/10517297469_KaminiBCA2021UIUX1.pdf', NULL, '1', '2025-02-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-02-28 05:50:33', 153, '2025-02-28 11:49:49', 0, NULL, 1),
(24328, 'kARAN', '6', '8056146053', '8825733087', 'karanpitchumani0705@gmail.com', '2002-05-22', 22, '2', '2', 'Kanagavathi P', '12th', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'KK NAGAR', '2502280011', '1', '1', 'upload_files/candidate_tracker/13745599944_Karan.PResume.doc', NULL, '1', '2025-02-28', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-02-28 06:45:39', 153, '2025-02-28 12:23:19', 0, NULL, 1),
(24329, 'M SREENANDAN', '6', '8217617155', '', 'sreenandan7@gmail.com', '1994-03-10', 30, '2', '2', 'T MURALIDHARA', 'Retired instructor', 24642.00, 1, 24642.00, 30000.00, 'Jayanagara west, Tumkur', 'Vidyaranyapura, bangalore', '2502280012', '1', '2', 'upload_files/candidate_tracker/4311071494_SREENANDANmyResume.docx', NULL, '1', '2025-02-28', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55555', '5151', '1970-01-01', 1, '2025-02-28 07:14:51', 154, '2025-03-18 04:24:17', 0, NULL, 1),
(24330, 'Divya D', '6', '8760555855', '9789893038', 'dhanasekardivya072@gmail.com', '2003-08-06', 21, '2', '2', 'Dhana Sekar.R', 'sales', 13.00, 1, 13.00, 18.00, 'Chennai', 'Choolai', '2502280013', '1', '2', 'upload_files/candidate_tracker/20822949192_DivyaResume.pdf', NULL, '1', '2025-02-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'voice too low... Not speaking anything', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-02-28 07:15:54', 153, '2025-03-06 02:52:26', 0, NULL, 1),
(24331, 'Vidhya', '4', '9345346953', '', 'vidhyarajendran01234@gmail.com', '2004-04-23', 20, '2', '2', '9047215522', 'Work', 75000.00, 1, 0.00, 20000.00, 'Nesapakkam', 'Chennai', '2502280014', '50', '1', 'upload_files/candidate_tracker/50288684234_resume.png.pdf', NULL, '1', '2025-03-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-28 07:47:51', 1, '2025-02-28 02:28:39', 0, NULL, 1),
(24332, 'Srilogeshwari.S', '6', '6382755728', '9597578767', 'lithikalithika488@gmail.com', '2004-01-02', 21, '2', '2', 'Saravanan.A', 'Coolie', 15000.00, 1, 0.00, 15000.00, '51/261Nethaji nagar 2 nd Street tondiarpet Ch-81', '51/261Nethaji nagar 2 nd Street tondiarpet Ch-81', '2502280015', '1', '1', 'upload_files/candidate_tracker/48261324942_lithika.pdf', NULL, '1', '2025-02-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-02-28 08:20:40', 153, '2025-02-28 03:11:17', 0, NULL, 1),
(24333, 'Sarmila s', '6', '9500812112', '7200104795', 'sambathsharmi@gmail.com', '2003-06-05', 21, '2', '2', 'Sambath E', 'Coolie', 15000.00, 1, 22000.00, 18000.00, '129, perumal Kovil Street paranambedu', '129, perumal Kovil Street paranambedu', '2502280016', '1', '2', 'upload_files/candidate_tracker/14700412362_CV2025010820041244.pdf', NULL, '1', '2025-02-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-02-28 08:21:43', 153, '2025-02-28 03:12:01', 0, NULL, 1),
(24334, 'Desiga K', '4', '7708188452', '', 'Kannandesiga16@gmail.com', '2003-03-16', 21, '2', '2', 'Kannan E', 'Fisherman', 24000.00, 1, 15000.00, 20000.00, 'Cuddalore', 'Cuddalore', '2502280017', '50', '2', 'upload_files/candidate_tracker/9655717506_DESIGACV.pdf', NULL, '1', '2025-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-28 08:24:43', 1, '2025-02-28 08:31:46', 0, NULL, 1),
(24335, 'y joshua', '21', '8220793967', '', 'joshuay7806@gmail.com', '2001-05-12', 23, '2', '2', 'a yesudass', 'crane operator', 17000.00, 0, 19000.00, 20000.00, 'pudukkottai', 'hennai', '2502280018', '50', '2', 'upload_files/candidate_tracker/58674727785_JoshuaYCV1.pdf', NULL, '3', '2025-03-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-02-28 08:59:29', 1, '2025-03-05 05:59:50', 0, NULL, 1),
(24336, 'SOLAIPANDI', '6', '8072022118', '', 'hkay37172@gmail.com', '2010-02-28', 0, '2', '2', 'Jayalakshmi', 'I m fresher', 20000.00, 2, 0.00, 15000.00, 'Permabur', 'Chennai', '2502280019', '50', '1', 'upload_files/candidate_tracker/31620041454_Resume20240830111656.pdf', NULL, '1', '2025-03-01', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was not good at interview and not interested in sales   and  not suitable for our work', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-02-28 11:21:51', 154, '2025-03-01 12:14:59', 0, NULL, 1),
(24337, 'Parthipan', '6', '7010754416', '', 'parthi24@gmail.con', '2002-06-06', 22, '2', '2', 'Mani', 'Business', 28000.00, 4, 0.00, 18000.00, 'Tiruvannamalai ,Mathur post ,annamalaipuram.', 'Chennai,Chengalpattu, Gandhinagar.', '2502280020', '1', '1', 'upload_files/candidate_tracker/97542547996_DocScanner03Mar2025111pm.pdf', NULL, '1', '2025-03-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-02-28 01:29:17', 153, '2025-03-03 02:46:44', 0, NULL, 1),
(24338, 'Amrin Raja a m', '4', '9385750538', '7811954921', 'amraja0109@gmail.com', '2000-01-09', 25, '2', '2', 'Arul Raj Pandian D', 'Farmer', 150000.00, 1, 0.00, 20000.00, '19/28 East Street, Nambi Thalaivan Pattayam-627115', 'No 40, annai valakanni nager, pothur Chennai-62', '2503010001', '45', '1', 'upload_files/candidate_tracker/68719195498_CV2025022821453870.pdf', NULL, '1', '2025-03-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-01 04:40:55', 154, '2025-03-01 12:08:33', 0, NULL, 1),
(24339, 'Rakesh', '4', '6383884357', '', 'RakeshT4728F@gmail.com', '2004-07-04', 20, '2', '2', 'Kalidass', 'Sales', 20000.00, 1, 0.00, 25.00, 'Urapakkam kaveri nagar Brindavanam F2', 'Urapakkam kaveri nagar Brindavanam F2', '2503010002', '1', '1', 'upload_files/candidate_tracker/96277914397_RakeshRESUME.pdf', NULL, '2', '2025-03-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-03-01 04:50:07', 154, '2025-03-01 11:33:29', 0, NULL, 1),
(24340, 'Senthamizhan AP', '6', '8754304301', '', 'Ap.senthamizhan1998@gmail.com', '1998-05-04', 26, '2', '2', 'Parent', 'Retired TNEB', 30000.00, 3, 0.00, 22000.00, 'Tirupathur district', 'Chepauk, Chennai', '2503010003', '50', '1', 'upload_files/candidate_tracker/3279176486_SENTHAMIZHAN.docx', NULL, '1', '2025-03-03', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not suitable for sales profile, Lazy character, communication not good, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-03-01 05:06:19', 153, '2025-03-03 12:24:46', 0, NULL, 1),
(24341, 'thupakula dinesh', '4', '9676144669', '', 'tupakuladinesh1234@gmail.com', '2002-04-10', 22, '2', '2', 't. ramesh', 'business', 20000.00, 1, 0.00, 16000.00, 'chennai', 'chittoor', '2503010004', '50', '1', 'upload_files/candidate_tracker/61077021468_DineshResumenew.pdf', NULL, '1', '2025-03-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-01 05:07:54', 153, '2025-03-03 03:30:27', 0, NULL, 1),
(24342, '', '0', '9385750537', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503010005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-01 05:08:52', 0, NULL, 0, NULL, 1),
(24343, 'Naveen Raj', '6', '7358270764', '8925285888', 'naveenjj7076@gmail.com', '2004-04-12', 20, '2', '2', 'Saravanan', 'Driver', 20000.00, 1, 16000.00, 18000.00, 'string:Chennai', 'string:Chennai', '2503010006', '50', '2', 'upload_files/candidate_tracker/85304713010_NaveenRaj.docx', NULL, '1', '2025-03-01', 0, '', '1', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2025-03-01 06:01:40', 154, '2025-03-01 12:14:33', 0, NULL, 1),
(24344, 'umme haniya', '6', '9986993747', '7406420141', 'syedanaheedahussaini@gmail.com', '2003-01-10', 22, '2', '2', 'Syed khaleelulla Hussaini', 'Businessman', 60000.00, 2, 0.00, 22000.00, 'Tilak nagar', 'Tilak Nagar', '2503010007', '57', '1', 'upload_files/candidate_tracker/1869337047_XLSViewer.pdf', NULL, '1', '2025-03-01', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication problem', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-03-01 06:40:00', 154, '2025-03-04 12:53:12', 0, NULL, 1),
(24345, 'Syeda nadeeda', '6', '7406420141', '9986993747', 'realhani5758@gmail.com', '2003-04-01', 21, '2', '2', 'Syed babu', 'Tailor', 60000.00, 1, 0.00, 22000.00, 'Minhaj nagar', 'Minhaj nagar', '2503010008', '57', '1', 'upload_files/candidate_tracker/24807834028_cv161733307069025.pdf', NULL, '3', '2025-03-01', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected low communication and no confidence', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-03-01 06:40:43', 154, '2025-03-04 12:51:35', 0, NULL, 1),
(24346, 'N Sowmiya', '4', '9499050802', '9940620030', 'sowmiyakrishnan97@gmail.com', '1997-11-10', 27, '3', '2', 'K N Krishnan', 'Car driver', 18000.00, 1, 25000.00, 30000.00, 'No 40 Ponnan Street Purasaiwakam chennai 7', 'No 40 Ponnan Street Purasaiwakam chennai 7', '2503010009', '', '2', 'upload_files/candidate_tracker/57521093066_SOWMIYAN2025.pdf', NULL, '1', '2025-03-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-01 10:35:27', 1, '2025-03-01 10:40:31', 0, NULL, 1),
(24347, '575366798222', '4', '9025750938', '8925712872', 'karthik000582@gmail.com', '2003-01-16', 22, '2', '2', 'Parent', 'Labour', 6000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'Chennai', '2503020001', '50', '1', 'upload_files/candidate_tracker/61240407249_k.Karthik.pdf', NULL, '1', '2025-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-02 12:04:57', 1, '2025-03-02 12:13:24', 0, NULL, 1),
(24348, '', '0', '9600752445', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503030001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-03 04:11:01', 0, NULL, 0, NULL, 1),
(24349, 'SATHISH M', '4', '9444492657', '6379880277', 'ssat55901@gmail.com', '2003-01-09', 22, '3', '2', 'Murugan K', 'Daily wager', 25000.00, 1, 0.00, 211200.00, 'Chennai', 'Chennai', '2503030002', '', '1', 'upload_files/candidate_tracker/98933888066_SathishResume.pdf', NULL, '1', '2025-03-03', 0, '', '3', '59', '2025-03-03', 211200.00, '', '1', '1970-01-01', '1', 'Rejoining Candidate Proper Relieving and joining again due to course delay', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2025-03-03', 1, '2025-03-03 04:35:57', 60, '2025-03-03 10:26:30', 0, NULL, 1),
(24350, '', '0', '6371550062', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503030003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-03 04:51:51', 0, NULL, 0, NULL, 1),
(24351, 'K Srivenkat', '5', '8310046846', '7899654228', 'ksrivenkat9@gmail.com', '1999-11-13', 25, '2', '2', 'K Shivagangamma', 'Home maker', 10000.00, 1, 20410.00, 28000.00, '2nd Cross, Basaveshwara Nagar, Ballari.', 'Marathahalli, Bengaluru', '2503030004', '1', '2', 'upload_files/candidate_tracker/87644021387_VenkatResume2025013112085920.pdf', NULL, '1', '2025-03-03', 0, '', '3', '59', '2025-03-10', 276000.00, '', '5', '2025-03-10', '2', 'Communication Ok have exp in calling bbut nt insurance domain can be trained in ourrole and check', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55555', '5151', '2025-03-10', 1, '2025-03-03 04:51:59', 154, '2025-03-18 04:26:08', 0, NULL, 1),
(24352, 'Sheeba', '6', '7395932617', '7395932617', 'sheeba2000s@gmail.com', '2000-04-08', 24, '2', '2', 'V sathyaseelan', 'Welder', 25000.00, 1, 0.00, 18000.00, 'No 29/7 rettai kuzhi lane Tondairpet', 'No 29/7 Rettai kuzhi lane Tondairpet', '2503030005', '1', '2', 'upload_files/candidate_tracker/14311517942_SHEEBARESUMEUPDATE1234.pdf', NULL, '1', '2025-03-03', 0, '', '3', '59', '2025-03-06', 204000.00, '', '5', '1970-01-01', '2', 'Communication Ok Have exp in calling but not a sustainable one need to check in the training period and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55645', '5151', '2025-03-06', 1, '2025-03-03 06:08:43', 60, '2025-03-04 10:29:22', 0, NULL, 1),
(24353, 'Redlin jijo', '5', '7550360179', '9994512185', 'redlinjijo1234@gmail.com', '2000-09-09', 24, '2', '2', 'manoharan s', 'contracter', 50000.00, 1, 0.00, 400000.00, 'ummancode mekkamandapam post kanyakumari district', 'mount raod', '2503030006', '50', '1', 'upload_files/candidate_tracker/10343890828_resumeredlin.pdf', NULL, '1', '2025-03-03', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-03-03 06:14:54', 154, '2025-03-03 02:38:17', 0, NULL, 1),
(24354, 'Thiyagaraja.b', '20', '9789918021', '9445682276', 'thiyagu-deepu@yahoo.com', '1990-01-20', 35, '2', '1', 'N babu', 'Central government', 50000.00, 1, 0.00, 25000.00, 'T.H road Chennai 81', 'TH road Chennai 81', '2503030007', '45', '2', 'upload_files/candidate_tracker/90551111698_ThiyagarajanResume.pdf', NULL, '3', '2025-03-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-03 06:37:38', 153, '2025-03-03 03:31:29', 0, NULL, 1),
(24355, 'T.S.ASWINI', '6', '9025375742', '8610378810', 'aswinibba0612@gmail.com', '2002-12-06', 22, '3', '2', 'T.M.SRINIVASAN', 'Private company (accountant)', 20000.00, 2, 0.00, 15000.00, 'No.302 railway station road kavaraipettai', 'No.302 railway station road kavaraipettai', '2503030008', '', '1', 'upload_files/candidate_tracker/20113095809_ResumeAswini2.pdf', NULL, '1', '2025-03-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-03 06:56:26', 153, '2025-03-03 02:49:24', 0, NULL, 1),
(24356, 'CHEDULURU JAGADESH', '4', '9014434533', '', 'chedulurujagadesh@gmail.com', '2002-11-10', 22, '2', '2', 'Dhanalakshmi', 'House wife', 5000.00, 3, 0.00, 14000.00, 'Mount road', 'Mount road', '2503030009', '50', '1', 'upload_files/candidate_tracker/20570458386_JagadeshResume.pdf', NULL, '1', '2025-03-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-03 07:26:08', 1, '2025-03-03 07:37:33', 0, NULL, 1),
(24357, 'Syed sajid.f', '6', '8778868609', '', 'sajidsyed097@gmail.com', '1997-03-09', 27, '2', '2', 'Syed faiyaz', 'Tailor', 100000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2503030010', '57', '2', 'upload_files/candidate_tracker/35690552518_SYEDSAJIDCV21.pdf', NULL, '1', '2025-03-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-03 09:05:16', 153, '2025-03-03 03:29:53', 0, NULL, 1),
(24358, '', '0', '9789296985', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503030011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-03 10:28:34', 0, NULL, 0, NULL, 1),
(24359, 'Sarika.M', '5', '9514087814', '', 'muthusarika49@gmail.com', '2001-09-02', 23, '2', '2', 'Muthuraman', 'Security', 15000.00, 2, 24000.00, 30000.00, 'South Boag Road t.nagar', 'West saidhapet', '2503030012', '1', '2', 'upload_files/candidate_tracker/88058616285_PDFGallery20231212111022.pdf', NULL, '1', '2025-03-04', 15, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-03-03 10:30:01', 153, '2025-03-04 12:06:55', 0, NULL, 1),
(24360, '', '0', '9360504312', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503030013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-03 11:24:44', 0, NULL, 0, NULL, 1),
(24361, 'Jamuna A', '6', '7806929987', '7010568134', 'jamunaazhagesan@email.com', '2002-09-16', 22, '2', '2', 'Azhagesan', 'advocate', 3000000.00, 1, 216000.00, 250000.00, '52/37, Venkatrama Iyer St ,kondithope ,chennai 79', '52/37, Venkatrama Iyer St ,kondithope ,chennai 79', '2503030014', '1', '2', 'upload_files/candidate_tracker/68378538331_Jamunaresume.pdf', NULL, '1', '2025-03-04', 20, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE COMMUNICATION AND PERFORMANCE IS NOT GOOD ALSO HER SUSTIANABLE IS DOUBT AND HER VOICE IS VERY LOW', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-03-03 01:17:12', 154, '2025-03-04 04:56:11', 0, NULL, 1),
(24362, '', '0', '9445648201', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503030015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-03 01:48:03', 0, NULL, 0, NULL, 1),
(24363, 'Haripriya', '4', '8122040988', '9962879899', 'haripriya.m302004@gmail.com', '2004-03-30', 20, '2', '2', 'Marikkan', 'Business man', 120000.00, 1, 0.00, 12000.00, 'Kodungaiyur', 'Kodungaiyur', '2503030016', '50', '1', 'upload_files/candidate_tracker/36065514072_HaripriyaResume.pdf', NULL, '1', '2025-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-03 03:24:32', 1, '2025-03-03 03:26:14', 0, NULL, 1),
(24364, 'Vaishnavi', '5', '6379347311', '7358145009', 'Vaishnavishan20@gmail.com', '2000-11-27', 24, '2', '2', 'Shanmugam', 'Daily wages', 40000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2503040001', '1', '2', 'upload_files/candidate_tracker/13048529482_DOC20250205WA0001.PDF', NULL, '1', '2025-03-04', 30, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-03-04 03:58:21', 153, '2025-03-04 12:06:25', 0, NULL, 1),
(24365, 'Vasanthi', '4', '7904538808', '8870579888', 'vasanthigunasekaran1402@gmail.com', '2002-12-02', 22, '2', '2', 'D/o Gunasekaran', 'Business man', 25000.00, 1, 0.00, 20000.00, 'Thiruvarur', 'Thiruvarur', '2503040002', '1', '1', 'upload_files/candidate_tracker/13088634296_Resume1.pdf', NULL, '1', '2025-03-04', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-03-04 04:11:32', 154, '2025-03-04 09:59:09', 0, NULL, 1),
(24366, 'nandhakumar', '6', '6374635085', '7845404354', 'Nandha8800kumar@gmail.com', '2001-12-11', 23, '3', '2', 'jayalakshmi', 'house wife', 20000.00, 1, 0.00, 20000.00, 'porur', 'porur', '2503040003', '', '1', 'upload_files/candidate_tracker/6421359155_CV2025012910205912.pdf', NULL, '1', '2025-03-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-04 04:26:35', 154, '2025-03-04 10:08:08', 0, NULL, 1),
(24367, 'suvarna s', '5', '9945530040', '9945530030', 'suvarnasnks087@gmail.com', '2001-10-21', 23, '2', '2', 'sampangirama', 'farmer', 60000.00, 1, 23000.00, 33000.00, 'lakshmipura bannerghatta road', 'lakshmipura bannerghatta road', '2503040004', '1', '2', 'upload_files/candidate_tracker/21231719011_SuvarnaS.pdf', NULL, '1', '2025-03-04', 30, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SELECTED FOR MUTUAL FUND RE SUGGESTED 23K \n', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55555', '5151', '1970-01-01', 1, '2025-03-04 04:49:25', 154, '2025-03-04 12:47:11', 0, NULL, 1),
(24368, 'Dharanikumar', '6', '9159092112', '9443793310', 'dharanikumarsaravanan786@gmail.com', '2000-04-03', 24, '2', '2', 'Saravanan', 'Auto driver', 45000.00, 1, 11000.00, 25000.00, 'Namakkal', 'Chennai', '2503040005', '1', '2', 'upload_files/candidate_tracker/94906931130_DharanikumarSaravananResume2025.pdf', NULL, '1', '2025-03-04', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication is little bit ok but his performance is not good also he have some health problem,then is is not ready to go outside calls', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', '55666', '5151', '1970-01-01', 1, '2025-03-04 05:03:29', 153, '2025-03-04 12:07:26', 0, NULL, 1),
(24369, 'Durgadevi', '6', '8110889491', '', 'vijaymanivel69@gmail.com', '1999-12-07', 25, '1', '2', 'Raja', 'No', 5000.00, 1, 18500.00, 20000.00, 'Tittakudi', 'Ambattur', '2503040006', '', '2', 'upload_files/candidate_tracker/2756134730_DURGADEVIR1740922665162.pdf', NULL, '1', '2025-03-04', 0, 'C99084', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-03-04 05:08:45', 153, '2025-03-04 12:32:28', 0, NULL, 1),
(24370, '6715 9280 6381', '4', '7200434542', '', 'immanuelraja2003@gmail.com', '2003-12-26', 21, '3', '2', 'Amburose .S', 'Old cloth exchange ( Daily wages )', 6000.00, 0, 0.00, 18000.00, '17/9 musthura begum street royapettah Chennai 14', '17/ 9 musthura begum street royapettah Chennai 14', '2503040007', '', '2', 'upload_files/candidate_tracker/21875852540_raja1.pdf', NULL, '1', '2025-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-04 06:18:55', 1, '2025-03-04 06:42:46', 0, NULL, 1),
(24371, 'Suruthi Gnanasekaran', '13', '9361485370', '9150646632', 'suruthigk96@gmail.com', '2002-06-09', 22, '3', '2', 'Gnanasekaran', 'Supervisor', 40000.00, 1, 22000.00, 25000.00, 'Thanjore', 'Perungalathur', '2503040008', '', '2', 'upload_files/candidate_tracker/75894594462_SuruthiGKResume2.pdf', NULL, '2', '2025-03-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-04 06:29:54', 153, '2025-03-04 12:43:54', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24372, 'VIJAY VEKATESAN V', '6', '9840332368', '9962787689', 'v4252136@gmail.com', '2003-11-20', 21, '2', '2', 'VENKATESAN G', 'Carpentor', 15000.00, 2, 0.00, 15000.00, 'Kodungaiyur, Chennai', 'Kodungaiyur, Chennai', '2503040009', '50', '1', 'upload_files/candidate_tracker/31882402446_IMG20240802WA00001.pdf', NULL, '2', '2025-03-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-04 06:35:54', 153, '2025-03-04 12:43:12', 0, NULL, 1),
(24373, 's.ajithkumar', '4', '8098962590', '8610938922', 'ajithkumarthala717@gmail.com', '2002-04-21', 22, '2', '2', 'Subramaniyan', 'Yes', 10000.00, 7, 0.00, 18000.00, 'Cuddalore', 'Cudd', '2503040010', '50', '1', 'upload_files/candidate_tracker/17544982143_a29295aec3484611a2c576ca27f7f3a2.pdf', NULL, '1', '2025-03-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-04 06:39:13', 1, '2025-03-04 06:45:41', 0, NULL, 1),
(24374, 'Paleti prathyusha', '6', '9014439085', '9985688622', 'prathyushadba.456@gmail.com', '1998-05-07', 26, '2', '2', 'Father anilbreddy', '3', 4.00, 1, 3.90, 4.30, 'Tirupati', 'Banglore', '2503040011', '1', '2', 'upload_files/candidate_tracker/49149791957_PPRATHYUSHAHOMZ.pdf', NULL, '1', '2025-03-04', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55555', '5151', '1970-01-01', 1, '2025-03-04 07:04:45', 154, '2025-03-18 04:23:18', 0, NULL, 1),
(24375, 'VIJAY BALAJI R', '4', '8220533541', '8667492852', 'rvijaybalaji5@gmail.com', '1997-11-22', 27, '2', '2', 'RAJADURAI', 'UNEMPLOYED', 20000.00, 1, 0.00, 25000.00, 'KUMBAKONAM', 'PATTABIRAM', '2503040012', '45', '1', 'upload_files/candidate_tracker/99642922871_VijayBalajiRRESUME.pdf', NULL, '3', '2025-03-04', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-04 08:05:20', 153, '2025-03-04 02:40:29', 0, NULL, 1),
(24376, '', '0', '8072609281', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503040013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-04 08:27:48', 0, NULL, 0, NULL, 1),
(24377, 'VIKRAM SWAMINATHAN', '4', '7448834977', '9363561299', 'vikram29102002@gmail.com', '2002-11-29', 22, '2', '2', 'SWAMINATHAN', 'Credit collection Associate', 15000.00, 1, 13000.00, 16000.00, 'Thanjavur District', 'Thanjavur District', '2503040014', '1', '2', 'upload_files/candidate_tracker/35767698407_VikramSwaminthanResume41.pdf', NULL, '1', '2025-03-05', 0, '', '3', '59', '2025-03-10', 156000.00, '', '3', '2025-05-02', '2', 'Communication Ok Fresher for our roles have exp but not a sustainable can give a try and check in trainig', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-03-10', 1, '2025-03-04 10:28:01', 60, '2025-03-08 05:26:02', 0, NULL, 1),
(24378, '', '0', '8807379201', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503040015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-04 11:49:42', 0, NULL, 0, NULL, 1),
(24379, '', '0', '9688944121', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503040016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-04 12:15:47', 0, NULL, 0, NULL, 1),
(24380, 'Roshini.G', '6', '9788944121', '', 'roshinig2001@gmail.com', '2001-12-11', 23, '2', '2', 'Pradeepa-Mother', 'Fresher', 1000.00, 0, 0.00, 15000.00, 'Theni', 'Chennai', '2503040017', '1', '1', 'upload_files/candidate_tracker/13134328392_RoshiniResume1.pdf', NULL, '1', '2025-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-03-04 12:16:06', 1, '2025-03-04 12:22:18', 0, NULL, 1),
(24381, 'Sujithra baskar', '4', '9361467581', '9385677581', 'sujithrasujithra39@gmail.com', '2004-07-12', 20, '1', '2', 'Baskar', 'FORMER', 20000.00, 1, 0.00, 15000.00, 'MARIAMMAN KOVIL THANJAVUR', 'MARIAMMAN KOVIL THANJAVUR', '2503050001', '', '1', 'upload_files/candidate_tracker/79659650663_vinoth1.pdf', NULL, '1', '2025-03-05', 0, 'C99092', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telecalling', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2025-03-05 04:11:16', 154, '2025-03-05 03:57:25', 0, NULL, 1),
(24382, 'Dhanush Prabhakaran', '5', '9786489914', '7548813673', 'dhanush191199@gmail.com', '1999-11-19', 25, '2', '2', 'Kavitha. P', 'Yes', 15000.00, 2, 20000.00, 20000.00, 'Arakkonam', 'Arakkonam', '2503050002', '1', '2', 'upload_files/candidate_tracker/95374091794_DhanushResume031.doc', NULL, '1', '2025-03-05', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for RM role\nand FSC ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55656', '55557', '1970-01-01', 1, '2025-03-05 05:34:33', 153, '2025-03-05 02:34:37', 0, NULL, 1),
(24383, 'Nandhakumar', '6', '6379508595', '8220577340', 'www.nandha1807@gmail.com', '2000-07-01', 24, '3', '2', 'Kanaga', 'Agri', 20000.00, 2, 18000.00, 20000.00, 'Triplicane', 'Triplicane', '2503050003', '', '2', 'upload_files/candidate_tracker/31924930468_NandhakumarResume.pdf', NULL, '1', '2025-03-05', 3, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-05 07:11:08', 153, '2025-03-05 01:37:00', 0, NULL, 1),
(24384, 'Samundeeswaran', '6', '7358982591', '7358488022', 'samuashok17042@gmail.com', '2001-09-14', 23, '3', '2', 'Indhumathi', 'Government employee', 15000.00, 2, 18000.00, 18000.00, 'C.N.A KRISHNASWAMY ROAD CRYSTAL MANSION', 'C.N.A KRISHNASWAMY ROAD CRYSTAL MANSION', '2503050004', '', '2', 'upload_files/candidate_tracker/43000895041_Samundeeswaran9.pdf', NULL, '1', '2025-03-05', 3, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-03-05 07:11:26', 153, '2025-03-05 01:31:50', 0, NULL, 1),
(24385, 'MOHANAPRIYA A', '6', '6374759912', '6383182849', 'mohanapriyamohanapriya54@gmail.com', '2002-10-04', 22, '2', '2', 'K Arumugam', 'B. A(corier manager)', 300000.00, 1, 0.00, 2.00, 'Villupuram', 'Chennai', '2503050005', '1', '1', 'upload_files/candidate_tracker/57339863575_MohanapriyaResumeCAFS.pdf', NULL, '1', '2025-03-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was ok with communication and interested in sales  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-03-05 01:25:02', 154, '2025-03-08 11:38:28', 0, NULL, 1),
(24386, 'MERLIN BUELA A', '6', '8940969738', '9551113564', 'buelamerlin@gmail.com', '2000-10-26', 24, '2', '2', 'Alexander', 'Hostel staff', 15000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2503050006', '1', '2', 'upload_files/candidate_tracker/63371355528_MerlinBuelaResume1.pdf', NULL, '1', '2025-03-06', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was experienced but did not know about the product and have doubt about stability', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-03-05 02:19:40', 153, '2025-03-06 12:13:23', 0, NULL, 1),
(24387, 'Madhumitha S', '6', '8925458123', '9941840152', 'mitham597@gmail.com', '2002-11-27', 22, '2', '2', 'Srinivasan.G', 'Painter', 15000.00, 1, 14000.00, 17000.00, 'Chennai', 'Chennai', '2503050007', '1', '2', 'upload_files/candidate_tracker/17090435182_SMadhumithaResume1.pdf', NULL, '1', '2025-03-06', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not good at communication and did not know about plan details and not sure about her stability', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-03-05 02:57:22', 153, '2025-03-06 12:12:15', 0, NULL, 1),
(24388, 'Mohammed Saqlain H', '6', '9901704023', '9845687400', 'Smuhammedsaqlain@gmail.com', '1997-06-18', 27, '2', '2', 'Fareeda banu', 'House wife', 25000.00, 1, 0.00, 26000.00, 'Bangalore', 'Bangalore', '2503060001', '1', '2', 'upload_files/candidate_tracker/43094071863_SaqlainResumePerfios1.pdf', NULL, '1', '2025-03-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '1', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-03-06 04:13:16', 154, '2025-03-15 12:36:02', 0, NULL, 1),
(24389, 'Kameshwari v', '6', '6374781806', '9791166290', 'Kwari790@gmail.com', '1999-11-14', 25, '2', '1', 'Veeramani g', 'Painter', 10000.00, 0, 0.00, 15000.00, 'Chennai', 'Korukkupet', '2503060002', '1', '2', 'upload_files/candidate_tracker/34848067193_kameswariresume.pdf', NULL, '1', '2025-03-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-03-06 05:32:45', 104, '2025-03-08 10:36:52', 0, NULL, 1),
(24390, 'Sam john', '6', '9962311382', '8903961397', 'samjarvis890@gmail.com', '1998-03-10', 26, '3', '2', 'DHAVITHU RAJAN Y', 'Cooli', 100000.00, 1, 0.00, 12.00, 'Rajapalayam', 'Chennai, Tambaram', '2503060003', '', '1', 'upload_files/candidate_tracker/27803341244_samjohnnonitresume1.pdf', NULL, '1', '2025-03-06', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-03-06 06:02:30', 153, '2025-03-06 12:33:00', 0, NULL, 1),
(24391, 'Dhanush Raj U', '13', '9361734099', '9940375427', 'u.dhanushraj@gmail.com', '2004-09-04', 20, '3', '2', 'Udayaraja', 'Driver', 25000.00, 1, 0.00, 22000.00, 'New washermenpet', 'Chennai', '2503060004', '', '1', 'upload_files/candidate_tracker/9811325376_Dhanushraj.pdf202502101343500000.pdf202502112039570000.pdf', NULL, '1', '2025-03-06', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-06 06:03:40', 153, '2025-03-06 12:36:02', 0, NULL, 1),
(24392, 'Balaji v', '6', '9360749336', '8608554886', 'balajiofficial099@gmail.com', '2001-08-02', 23, '2', '2', 'Venkatesan m', 'Painter', 15000.00, 1, 0.00, 20000.00, 'Chinna mettu palayam, Thiruvottiyur, ch-19', 'Chinna Mettu Palayam, Thiruvottiyur, ch-19', '2503060005', '45', '1', 'upload_files/candidate_tracker/27350582660_Balajiresume.pdf', NULL, '1', '2025-03-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-06 06:05:55', 153, '2025-03-06 12:34:44', 0, NULL, 1),
(24393, 'Deepak T thulasirao', '13', '9789891007', '9940166166', 'thulasiraodeepak@gmail.com', '2003-08-26', 21, '3', '2', 'Thulasirao M', 'Driver', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2503060006', '', '1', 'upload_files/candidate_tracker/22929567961_DeepakThulasirao202501251010420000.pdf', NULL, '1', '2025-03-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-06 06:11:13', 153, '2025-03-06 11:50:49', 0, NULL, 1),
(24394, 'KARTHICK R S', '13', '8531998637', '9840963768', 'rskarthickoffical@gmail.com', '1999-12-23', 25, '3', '2', 'Ramalingam', 'LIC', 200000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2503060007', '', '1', 'upload_files/candidate_tracker/63814244561_Karthickresume.pdf', NULL, '1', '2025-03-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-06 06:30:01', 153, '2025-03-06 12:36:13', 0, NULL, 1),
(24395, 'Rajashree', '4', '9600176539', '', 'dyanraji30@gmail.com', '1995-05-12', 29, '2', '2', 'Sankar', 'Nil', 30000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2503060008', '45', '1', 'upload_files/candidate_tracker/39612568697_Kaagaz202503061351453618041.pdf', NULL, '1', '2025-03-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-06 08:07:27', 153, '2025-03-06 03:06:55', 0, NULL, 1),
(24396, 'prathap r', '13', '9500645516', '9865965519', 'raviprathap03@gmail.com', '2004-01-25', 21, '3', '2', 'selvi r', 'house keeping', 15000.00, 1, 0.00, 20000.00, 'west mada Street acharapakkam', 'venketraman street teynampet chennai', '2503060009', '', '1', 'upload_files/candidate_tracker/19749062386_PRATHAP.RRESUME.pdf', NULL, '1', '2025-03-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-06 09:06:38', 1, '2025-03-06 09:15:05', 0, NULL, 1),
(24397, 'Pradeep p', '13', '9345467776', '', 'pradeepsathiya4@gmail.com', '2003-11-27', 21, '3', '2', 'Paramasivan.N', 'Driver', 35000.00, 1, 0.00, 20000.00, 'No.35 West maada st acharapakkam', 'Velachery Chennai', '2503060010', '', '1', 'upload_files/candidate_tracker/36355793550_PRADEEP.PRESUME1.pdf', NULL, '1', '2025-03-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-06 09:08:37', 1, '2025-03-06 09:15:22', 0, NULL, 1),
(24398, '', '0', '8270582020', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-06 10:48:17', 0, NULL, 0, NULL, 1),
(24399, 'Aravind M', '13', '7200512030', '6369001057', 'aravindanandh58@gmail.com', '2001-04-18', 23, '6', '2', 'Murugan A', 'Farmer', 25000.00, 1, 0.00, 20000.00, 'Villupuram', 'Ambattur', '2503070001', '', '1', 'upload_files/candidate_tracker/96681205280_AravindResume3.pdf', NULL, '1', '2025-03-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-07 06:06:29', 1, '2025-03-07 06:10:41', 0, NULL, 1),
(24400, 'Srikanth K', '13', '9751856859', '9944169566', 'Srikanthsrikanth4547@gmail.com', '2002-09-01', 22, '3', '2', 'Kolanji', 'Farmer', 30000.00, 0, 0.00, 3.50, 'Perambalur', 'Chennai', '2503070002', '', '1', 'upload_files/candidate_tracker/99879859405_ResumeSrikanthk.pdf202501281319070000.pdf202501282122490000.pdf', NULL, '1', '2025-03-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-07 06:07:18', 1, '2025-03-07 06:22:50', 0, NULL, 1),
(24401, ' Dhayalan A', '13', '9791644761', '9150296138', 'dhayaarumugam135@gmail.com', '2002-03-31', 22, '6', '2', 'Arumugam', 'Farmer', 10000.00, 2, 0.00, 10000.00, 'Kalpa', 'Thiruvanmur', '2503070003', '', '1', 'upload_files/candidate_tracker/72727156381_Dhayalan1.pdf', NULL, '1', '2025-03-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-07 06:08:26', 1, '2025-03-07 06:18:06', 0, NULL, 1),
(24402, 'Vijay p', '13', '9629655439', '', 'Vijayv2104@gmail.com', '2004-02-21', 21, '3', '2', 'Periya samy', 'Farmer', 30000.00, 3, 0.00, 3.50, 'Perambalur', 'Chennai', '2503070004', '', '1', 'upload_files/candidate_tracker/7193119900_Resumevijay3.pdf', NULL, '1', '2025-03-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-07 06:24:19', 1, '2025-03-07 06:29:25', 0, NULL, 1),
(24403, 'Spurgeon', '6', '8939895581', '', 'spurgeonjerry12@gmail.com', '2001-09-12', 23, '2', '2', 'Rajasekhar Babu', 'Dieter supervisor', 100000.00, 1, 18000.00, 22000.00, 'No.7/E, South nada street, Welcome colony', 'Villivakkam, Chennai -600049', '2503070005', '1', '2', 'upload_files/candidate_tracker/88543044576_SpurgeonsResume2025.pdf', NULL, '3', '2025-03-07', 6, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Given several false reasons for the gap not much serious to the job however thought of giving a try in the next round but he left without attending', '5', '1', '', '4', '6', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-07 06:25:41', 153, '2025-03-07 01:09:35', 0, NULL, 1),
(24404, '', '0', '9791437569', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503070006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-07 06:43:23', 0, NULL, 0, NULL, 1),
(24405, 'Gangaraju k r', '6', '7338050263', '', 'gangarajukrg12@gmail.com', '2002-05-25', 22, '2', '2', 'Ramachandraiah', 'Former', 75000.00, 1, 18000.00, 27000.00, 'No 72 yajamanappa layout nagashettyhalli', 'Bangalore 560094', '2503080001', '1', '2', 'upload_files/candidate_tracker/77884903738_resumeGANGARAJU.pdf', NULL, '1', '2025-03-08', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55671', '55555', '1970-01-01', 1, '2025-03-08 03:55:37', 154, '2025-03-14 09:25:52', 0, NULL, 1),
(24406, 'Mala D', '4', '8946095357', '9840834868', 'saimala1299@gmail.com', '1999-02-01', 26, '1', '2', 'Deva S - father', 'Carpenter', 20000.00, 1, 21000.00, 25000.00, '26, jaganathapuram 1st rd Velachery Chennai', 'Velachery Chennai', '2503080002', '', '2', 'upload_files/candidate_tracker/96752440650_cafs.pdf', NULL, '1', '2025-03-08', 0, 'P1015', '3', '59', '2025-03-13', 288000.00, '', '3', '2025-04-07', '2', 'Communication Ok Have exp in calling can be trained have all the previous exp documents', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '2025-03-13', 1, '2025-03-08 05:00:27', 60, '2025-03-12 06:34:17', 0, NULL, 1),
(24407, 'S.Subathra', '6', '8098592105', '', 'SUBATHRAS1278@GMAIL.COM', '2004-05-21', 20, '2', '2', 'S.Chithra', 'House wife', 78000.00, 1, 0.00, 17000.00, 'Thanjavur', 'Royapettah', '2503080003', '1', '1', 'upload_files/candidate_tracker/58000419026_subathra1.pdf', NULL, '1', '2025-03-08', 0, '', '3', '59', '2025-03-10', 180000.00, '', '3', '2025-05-27', '2', 'Communication ok fresher for our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '2025-03-10', 1, '2025-03-08 05:11:51', 60, '2025-03-08 05:28:13', 0, NULL, 1),
(24408, 'RAMESH DHAYALAN', '6', '9042027776', '8610814136', 'rameshivani1918@gmail.com', '2001-04-09', 23, '2', '2', 'Dhayalan', 'Electrican', 30000.00, 1, 21250.00, 28000.00, 'Minjur', 'Minjur', '2503080004', '1', '2', 'upload_files/candidate_tracker/9800807890_RAMESHCV.pdf', NULL, '1', '2025-03-08', 90, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-03-08 05:40:13', 154, '2025-03-08 12:35:39', 0, NULL, 1),
(24409, 'vignesh', '6', '8610356479', '9952717909', 'vignesh270324@gmail.com', '2004-03-27', 20, '2', '2', 'valarmathi', 'house wife', 40000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2503080005', '50', '1', 'upload_files/candidate_tracker/16097662545_Myresume.pdf', NULL, '1', '2025-03-08', 0, '', '3', '59', '2025-03-10', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for job need to train from scratch can give a try and check', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2025-03-10', 1, '2025-03-08 06:10:00', 60, '2025-03-08 05:31:39', 0, NULL, 1),
(24410, 'Asha R', '6', '7338972864', '9176395945', 'asharameshbabu0221@gmail.com', '2002-05-02', 22, '2', '2', 'Ramesh babu, shoba.', 'Sales marketing', 40000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2503080006', '1', '2', 'upload_files/candidate_tracker/27833076747_ashaaaaa.pdf', NULL, '3', '2025-03-08', 30, '', '3', '59', '2025-03-10', 228000.00, '', '3', '2025-03-10', '2', 'Communication Ok have exp in calling  can be trained in our domain have both voice and non voice exp', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-03-10', 1, '2025-03-08 06:46:10', 60, '2025-03-08 05:36:39', 0, NULL, 1),
(24411, 'Dhivakar K', '23', '9791084267', '7299506086', 'dhivakar00177@gmail.com', '2001-07-01', 23, '3', '2', 'Kuppan k', 'Kuli', 30000.00, 1, 0.00, 15000.00, 'No 27 church street gandhi ngr Selaiyur Chennai 73', 'No 27 church street gandhi ngr Selaiyur Chennai 73', '2503080007', '', '1', 'upload_files/candidate_tracker/72491857314_DhivakarResume3.pdf', NULL, '1', '2025-03-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-08 08:22:16', 1, '2025-03-08 08:47:35', 0, NULL, 1),
(24412, '', '0', '9003910716', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503080008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-08 10:45:22', 0, NULL, 0, NULL, 1),
(24413, '', '0', '6380155435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503100001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-10 06:48:18', 0, NULL, 0, NULL, 1),
(24414, 'deva m', '4', '6380394982', '9841544800', 'thaladeva654@gmail.com', '2001-08-10', 23, '2', '2', 'mahadevan k', 'watchman', 180000.00, 1, 15000.00, 20000.00, 'chennai', 'perambur', '2503100002', '1', '2', 'upload_files/candidate_tracker/75002032215_NewresumeDeva.pdf', NULL, '1', '2025-03-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average Sutaibility for our roles is less pressure handling doubts not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-03-10 07:01:38', 153, '2025-03-10 04:10:23', 0, NULL, 1),
(24415, 'Srinivasan M', '4', '8754209258', '9025532942', 'vasuvasuvasuvasu71@gmail.com', '2000-06-26', 24, '2', '2', 'Murugan', 'Food supply', 60000.00, 1, 20000.00, 20000.00, 'Chennai', 'Chennai', '2503100003', '1', '2', 'upload_files/candidate_tracker/7031381307_HRRecruiter.pdf', NULL, '1', '2025-03-10', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'giving only one word answer. having medical concerns and expecting high salary.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-10 07:05:28', 154, '2025-03-10 01:21:33', 0, NULL, 1),
(24416, '', '0', '8296941512', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503100004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-10 06:52:15', 0, NULL, 0, NULL, 1),
(24417, 'M. Sruthi', '6', '9962089342', '9962297509', 'sruthimani2002@gmail.com', '2002-09-24', 22, '2', '2', 'V. Mani', 'Interior designer', 75000.00, 1, 17500.00, 20000.00, 'Ambedkar college road perambur barracks', 'Ambedkar college road', '2503110001', '1', '2', 'upload_files/candidate_tracker/36358095977_CV2025022715313544.pdf', NULL, '1', '2025-03-11', 0, '', '3', '59', '2025-03-17', 192000.00, '', '3', '2025-03-22', '2', 'Communication Ok have exp but no documents can be trained in our roles need to check and confirm in the training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-03-17', 1, '2025-03-11 02:17:08', 60, '2025-03-14 06:13:34', 0, NULL, 1),
(24418, 'Bharathram B', '6', '9390069047', '6374376052', 'bharathram6903@gmail.com', '2003-09-06', 21, '2', '2', 'M. Baskaran', 'Worker', 165000.00, 1, 18500.00, 25000.00, 'Vellore', 'Vellore', '2503110002', '1', '2', 'upload_files/candidate_tracker/95372168964_Bharathram1.pdf', NULL, '1', '2025-03-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication no suitable for our roles will not sustain and handle pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-03-11 04:09:57', 153, '2025-03-11 11:48:57', 0, NULL, 1),
(24419, 'THILAK S', '6', '9361062457', '9390069047', 'apputhilak49@gmail.com', '2010-03-11', 0, '2', '2', 'SURESH KUMAR', 'Worker', 155000.00, 1, 0.00, 20000.00, 'Vellore', 'Vellore', '2503110003', '1', '1', 'upload_files/candidate_tracker/19064328985_ResumeTHILAK.pdf', NULL, '1', '2025-03-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication no suitable for our roles will not sustain and handle pressure need to open up a lot', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-03-11 04:11:08', 153, '2025-03-11 11:49:08', 0, NULL, 1),
(24420, 'Shohebaktar Gulburga', '6', '9108184618', '9731947161', 'Shohebgulbarga23595@gmail.com', '2001-03-02', 24, '2', '2', 'Allabaksh', 'Kuli', 15000.00, 3, 0.00, 25000.00, 'Neharu nagar bijapur 586101', 'Madiwala bangalore', '2503110004', '1', '1', 'upload_files/candidate_tracker/92477279358_CV202411291831393.pdf', NULL, '1', '2025-03-11', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'salary expectation 25k fresher and communication problem', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55671', '55555', '1970-01-01', 1, '2025-03-11 04:52:06', 154, '2025-03-11 05:55:45', 0, NULL, 1),
(24421, 'H.Umana Nasreen', '4', '9994654291', '9789134229', 'Nasinasreen880@gmail.com', '2003-03-30', 21, '2', '2', 'haja maideen', 'Insurance sales', 15000.00, 1, 0.00, 12000.00, 'Kamaliya street chakkarappalli thanjavur', 'Kamaliya street chakkarappali thanjavur', '2503110005', '1', '1', 'upload_files/candidate_tracker/60825712538_CV2024110914532972.pdf', NULL, '1', '2025-03-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for team,, all the confirmation depends on parents only..', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2025-03-11 05:19:17', 154, '2025-03-11 10:59:52', 0, NULL, 1),
(24422, 'P. Noorul Hasna', '4', '6385688798', '9566434918', 'hasnaasath@gmail.com', '2004-12-08', 20, '2', '2', 'Ummahani', 'House wife', 70000.00, 2, 0.00, 12000.00, '96,jinnah street chakkarapalli, Ayyempet', '96,jinnah street chakkarapalli, Ayyempet', '2503110006', '1', '1', 'upload_files/candidate_tracker/39269775940_resume.pdf.pdf', NULL, '1', '2025-03-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit....have no maturity', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2025-03-11 05:19:53', 154, '2025-03-11 11:42:18', 0, NULL, 1),
(24423, 'Ajith.v', '6', '7812883949', '9677174087', 'ajithvenkadesan12@gmail.com', '2003-11-05', 21, '2', '2', 'Alamelu my mom', 'House wife', 50000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2503110007', '1', '2', 'upload_files/candidate_tracker/16967141504_Ajithresume.pdf', NULL, '1', '2025-03-11', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected. good skill. training days willl analysis . but joining april', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2025-03-11 05:30:27', 153, '2025-03-11 12:48:55', 0, NULL, 1),
(24424, 'Swetha', '6', '7010265310', '', 'swethasasi0109@gmail.com', '2002-09-01', 22, '2', '2', 'Father:M.Sasi. Mother:S.Rani', 'Farmer', 280000.00, 1, 0.00, 21000.00, 'Sivaganga', 'Chennai', '2503110008', '1', '2', 'upload_files/candidate_tracker/8614803080_SWETHAS1YEAREXP1.pdf', NULL, '1', '2025-03-11', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-03-11 05:56:38', 153, '2025-03-11 12:53:26', 0, NULL, 1),
(24425, 'Sudharsan M', '6', '9003771264', '8807098954', 'Sudharsanm535@gmail.com', '2003-02-08', 22, '2', '2', 'Manikandan', 'Farmer', 73000.00, 1, 0.00, 25000.00, 'Thanjavur', 'Tambaram', '2503110009', '50', '1', 'upload_files/candidate_tracker/9275699695_SudharsanResume1.pdf.pdf', NULL, '1', '2025-03-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-11 06:31:18', 153, '2025-03-12 03:07:21', 0, NULL, 1),
(24426, 'Akash M', '4', '9361828920', '', 'akashmanivannan6@gmail.com', '2010-03-11', 0, '2', '2', 'Manivannan', 'Agriculture', 25000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Chennai perungulathur', '2503110010', '50', '1', 'upload_files/candidate_tracker/31024782152_AKASHRESUME11.pdf', NULL, '3', '2025-03-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-11 06:38:42', 154, '2025-03-22 10:48:50', 0, NULL, 1),
(24427, 'praveenkumar v', '6', '9585904472', '9790284472', 'praveensai4472@gmail.com', '2001-05-31', 23, '2', '2', 'Vijaya veeran', 'Farmour', 25000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Velechery, chennai', '2503110011', '1', '1', 'upload_files/candidate_tracker/81933241953_PRAVEENCURRICULUMVITEA.pdf', NULL, '1', '2025-03-11', 0, '', '3', '59', '2025-03-17', 204000.00, '', '5', '1970-01-01', '1', 'Communication ok  can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '2025-03-17', 1, '2025-03-11 07:28:58', 60, '2025-03-15 06:46:46', 0, NULL, 1),
(24428, 'Bharath M', '6', '8762934665', '7349701553', 'bharathgowda5600@gmail.com', '2001-05-12', 23, '2', '2', 'Geetha ks', 'Salaried', 20000.00, 1, 15270.00, 25000.00, 'Indiranagar Bengaluru', 'Indiranagar Bengaluru', '2503110012', '1', '2', 'upload_files/candidate_tracker/50000689705_resume.pdf', NULL, '1', '2025-03-11', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55555', '5151', '1970-01-01', 1, '2025-03-11 08:00:00', 154, '2025-03-18 04:25:00', 0, NULL, 1),
(24429, 'Meeran Parvesh Musharaf SM', '13', '9344287100', '7639128710', 'meeranf36@gmail.com', '2001-11-09', 23, '3', '2', 'Sheik mohammed', 'Driver', 72000.00, 3, 0.00, 15000.00, '128/b2 karpudaiyar palli vattam', 'Velachery, Chennai', '2503120001', '', '1', 'upload_files/candidate_tracker/36451805297_MeeranSMBscComputer2021.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 03:41:13', 154, '2025-03-28 04:49:35', 0, NULL, 1),
(24430, 'Hemeshwaran Saravanan', '31', '9361851714', '9488822476', 'hemeshwaran2502@gmail.com', '2002-02-25', 23, '3', '2', 'Saravanan', 'Driver', 10000.00, 1, 0.00, 1.50, 'Thiruvarur', 'Velachery', '2503120002', '', '1', 'upload_files/candidate_tracker/24996032966_HemeshwaranBsc2022FrontendDevelopment.pdf202503120925000000.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 03:41:41', 154, '2025-03-28 04:49:45', 0, NULL, 1),
(24431, 'Monesh Arumugam', '13', '9385971252', '9003333250', 'mone2k03@gmail.com', '2003-07-04', 21, '3', '2', 'Arumugam', 'Auto driver', 15000.00, 1, 0.00, 6000.00, 'Arakkonam', 'Velachery', '2503120003', '', '1', 'upload_files/candidate_tracker/78330210599_MoneshArumugamBE2024JavaFullstack.pdf', NULL, '1', '2025-03-12', 0, '', '3', '59', '2025-04-03', 120000.00, '', '1', '1970-01-01', '2', 'Intern with employment 3.5yrs agreement agreed terms and conditions', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '55566', '5151', '2025-04-03', 1, '2025-03-12 03:41:47', 60, '2025-04-03 11:12:31', 0, NULL, 1),
(24432, 'Dhana Selvan', '13', '6369608407', '9344287100', 'dhanaselvan1998@gmail.com', '1998-06-01', 26, '3', '2', 'Annamalai. R', 'Agriculture', 30000.00, 6, 0.00, 15000.00, 'Neyveli', 'Velachery, chennai', '2503120004', '', '1', 'upload_files/candidate_tracker/4078261874_DhanaselvanA1.docx', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 03:42:34', 154, '2025-03-28 04:50:15', 0, NULL, 1),
(24433, 'K Vignesh', '31', '7397334667', '9345447687', 'vignesh.kumar0115@gmail.com', '1999-03-15', 25, '3', '2', 'K Selvi', 'House Keeping', 12000.00, 2, 0.00, 15000.00, 'Nungambakkam', 'Nungambakkam', '2503120005', '', '1', 'upload_files/candidate_tracker/69097188482_Vignesh11.docx', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 03:48:43', 154, '2025-03-28 04:56:08', 0, NULL, 1),
(24434, 'Vishnu Ram', '31', '7339310034', '7092800341', 'vishnuram41081@gmail.com', '2004-08-11', 20, '3', '2', 'Vijayalakshmi', 'Nurse', 30000.00, 1, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2503120006', '', '1', 'upload_files/candidate_tracker/93108027231_VISHNURAMResume1.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 03:48:43', 154, '2025-03-28 04:56:37', 0, NULL, 1),
(24435, 'Sathish S', '31', '7358576194', '9962601139', 'sathishdon2342000@gmail.com', '2000-04-23', 24, '3', '2', 'Bhanabakkiyam', 'Housekeeping', 250000.00, 1, 0.00, 150000.00, 'Chennai', 'Chennai- nungambakkam', '2503120007', '', '1', 'upload_files/candidate_tracker/73814566465_SathishSB.comComputerApplication.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 03:48:58', 154, '2025-03-28 04:56:47', 0, NULL, 1),
(24436, 'RAGAVAN P', '6', '9342611453', '9600769068', 'ragavan2004ragava@gmail.com', '2004-10-06', 20, '2', '2', 'Parasuraman', 'Formar', 50000.00, 2, 0.00, 20000.00, 'Mayiladuthurai', 'Chennai', '2503120008', '1', '1', 'upload_files/candidate_tracker/35343624572_Ragavannew.pdf', NULL, '1', '2025-03-12', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-03-12 04:05:33', 153, '2025-03-12 11:48:32', 0, NULL, 1),
(24437, 'DHANUSH KUMAR P', '31', '8056929698', '8939355740', 'vdhanush2700@gmail.com', '2001-06-28', 23, '3', '2', 'Suganya', 'House wife', 10000.00, 0, 0.00, 1.50, 'Chennai', 'Velachery', '2503120009', '', '1', 'upload_files/candidate_tracker/18018206861_DHANUSHKUMARPMCA2023.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 04:29:47', 154, '2025-03-28 04:56:57', 0, NULL, 1),
(24438, 'Kishore.k.v', '13', '8870942548', '7094892299', 'kishorekurieef@gmail.com', '2002-11-22', 22, '3', '2', 'Sumathy', 'Business', 40000.00, 2, 0.00, 10000.00, 'Kallakurichi', 'Velachery', '2503120010', '', '1', 'upload_files/candidate_tracker/768623350_KISHORE.K.V2024BCAFRONTEND.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 04:30:12', 154, '2025-03-28 04:57:09', 0, NULL, 1),
(24439, 'Dinesh Kumar.c', '2', '9952129326', '9342157834', 'dineshkumar19022003@gmail.com', '2003-02-19', 22, '3', '2', 'Gunasekaran', 'Pwd contractor', 30000.00, 1, 0.00, 20000.00, '21, parasuramapuram main street , puducherry', '42, 1st St, Ramnagar, Sarathy Nagar, Velachery', '2503120011', '', '1', 'upload_files/candidate_tracker/55149095106_DineshKumarBMMinAnimation2023.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 04:32:56', 154, '2025-03-28 04:55:46', 0, NULL, 1),
(24440, 'Saravanan B', '31', '9585675369', '6379216274', 'saravanan00963@gmail.com', '2002-12-14', 22, '3', '2', 'Balamurugan S', 'Printer', 96000.00, 2, 0.00, 10000.00, 'Sivakasi', 'Velachery chennai', '2503120012', '', '1', 'upload_files/candidate_tracker/47209172636_SaravananBECSE2024Fullstackdeveloper.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 04:33:14', 153, '2025-03-12 11:28:13', 0, NULL, 1),
(24441, 'M.Sathish Kumar', '13', '6369683010', '8668015133', 'm.sathish3010@gmail.com', '2001-02-01', 24, '3', '2', 'G.Muthuvel', 'Farmer', 500000.00, 1, 0.00, 2.50, 'Chinna salem', 'Chennai', '2503120013', '', '1', 'upload_files/candidate_tracker/20058727094_Sathish.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 04:33:33', 154, '2025-03-28 04:57:55', 0, NULL, 1),
(24442, 'S gOPINATH', '2', '8248272067', '9942090824', 'gopi360ajith@gmail.com', '2003-04-17', 21, '3', '2', 'T.Senthil kimar', 'Farmer', 20000.00, 1, 0.00, 10000.00, 'Thammampatti salem (D.T)', 'Navalur', '2503120014', '', '1', 'upload_files/candidate_tracker/70219669693_S.GopinathBCA.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 04:34:14', 153, '2025-03-12 10:36:04', 0, NULL, 1),
(24443, 'Prathap', '2', '9361562206', '9360232691', 'lprathap381@gmail.com', '2002-01-04', 23, '3', '2', 'Loganathan', 'Sweet shop', 15000.00, 1, 0.00, 15000.00, 'Mambakkam ranipet district', 'Kelambakkam Chennai', '2503120015', '', '1', 'upload_files/candidate_tracker/20396119885_Prathapfrontenddeveloper.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 04:34:17', 154, '2025-03-28 04:57:20', 0, NULL, 1),
(24444, 'Naveen raj A', '13', '6380498995', '9182481482', 'rajn94654@GMAIL.COM', '2002-01-22', 23, '3', '2', 'Arivalagan', 'farmer', 60000.00, 1, 0.00, 10000.00, 'Arur,Sankarapuram', 'Velachery, Chennai', '2503120016', '', '1', 'upload_files/candidate_tracker/34845983733_NaveenrajMCA2024.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 04:35:08', 153, '2025-03-12 12:22:17', 0, NULL, 1),
(24445, 'D.Ramesh', '13', '9965272143', '9629881443', 'ramesh.2004dpm@gmail.com', '2004-07-17', 20, '3', '2', 'A Dhanasekar', 'Daily wages', 90000.00, 2, 0.00, 10000.00, 'Vellore', 'Velachery', '2503120017', '', '1', 'upload_files/candidate_tracker/31317908611_D.Rameshb.scmathsfullstockdevloper.pdf', NULL, '1', '2025-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-12 04:49:19', 154, '2025-03-28 04:57:34', 0, NULL, 1),
(24446, 'Naveenesh B', '6', '9361632834', '7502270810', 'naveenesh1996@gmail.com', '2000-05-19', 24, '2', '1', 'Bharathi', 'Former', 20000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2503120018', '1', '2', 'upload_files/candidate_tracker/9563856480_naveeneshresume2.pdf', NULL, '1', '2025-03-12', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Projecting himself a over active not clear with the communication voice clarity poor too long distance not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-03-12 05:59:41', 153, '2025-03-12 12:17:32', 0, NULL, 1),
(24447, 'm MANOJ', '6', '7358228702', '8124428206', 'manojmanoj68355@gmail.com', '2003-10-20', 21, '2', '2', 'k malayadhri', 'telesales', 100000.00, 2, 18000.00, 19000.00, 'ennore', 'ennore', '2503120019', '1', '2', 'upload_files/candidate_tracker/40346550345_RESUME.docx', NULL, '1', '2025-03-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Full of stories School drop and not even clear with his education completed no sustainability with his previous exp not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-03-12 06:33:24', 153, '2025-03-12 01:04:51', 0, NULL, 1),
(24448, '', '0', '9791239317', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503120020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-12 07:02:54', 0, NULL, 0, NULL, 1),
(24449, 'manikandan', '4', '6369299269', '9176865055', '53manikandan143143@gmail.com', '2004-03-08', 21, '2', '2', 'amutha', 'mother', 20000.00, 1, 0.00, 20000.00, 'chennai', 'annanagar', '2503120021', '50', '1', 'upload_files/candidate_tracker/97622960170_NAUKRIG.MANIKANDAN.pdf', NULL, '1', '2025-03-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-12 07:45:55', 153, '2025-03-12 03:34:36', 0, NULL, 1),
(24450, '', '0', '6374772095', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503120022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-12 09:09:56', 0, NULL, 0, NULL, 1),
(24451, 'Akash M', '4', '9361828620', '9003771264', 'akashmanivannan6@gmail.com', '2004-06-03', 20, '2', '2', 'Manivannan', 'Farmer', 73000.00, 1, 0.00, 25000.00, 'Kumbakonam', 'Perungulathur', '2503120023', '50', '1', 'upload_files/candidate_tracker/95127380696_Akashresume.pdf.pdf', NULL, '1', '2025-03-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-12 09:20:15', 153, '2025-03-12 03:32:26', 0, NULL, 1),
(24452, 'Suresh kumar', '5', '7200385371', '', 'rajsuresh3777@gmail.com', '1996-01-31', 29, '2', '2', 'Muthuraj', 'Government red', 20000.00, 2, 20000.00, 20000.00, 'Chennai', 'Porur Chennai', '2503120024', '1', '2', 'upload_files/candidate_tracker/54002251546_RESUMESURESHKUMAR1.pdf', NULL, '1', '2025-03-13', 0, '', '3', '59', '2025-04-07', 246000.00, '', '4', '2025-06-03', '1', '5050 Try for FSC need to train from scratch check and confirm in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55735', '55557', '2025-04-07', 1, '2025-03-12 10:21:13', 60, '2025-04-03 05:33:55', 0, NULL, 1),
(24453, 'Divya M', '4', '6385845112', '8754329449', 'divyamanisekaran03@gmail.com', '2000-03-24', 24, '2', '2', 'Sridevi', 'Home maker', 1000.00, 1, 25000.00, 28000.00, 'Perambur', 'Perambur', '2503120025', '1', '2', 'upload_files/candidate_tracker/46388883923_resumedivya.pdf', NULL, '1', '2025-03-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-03-12 12:26:12', 154, '2025-03-13 09:46:06', 0, NULL, 1),
(24454, 'Aravind Kumar s', '6', '9176208340', '9176208349', 'ARAVINDrio2002@gmail.com', '2002-07-11', 22, '2', '2', 'Selvakumar', 'Private limited', 40000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2503120026', '1', '2', 'upload_files/candidate_tracker/76994664218_ress.pdf', NULL, '1', '2025-03-13', 15, '', '3', '59', '2025-03-18', 204000.00, '', '3', '2025-03-18', '1', 'Communication Ok 2 months expin calling 5050 profile sustainability doubts a lot caN Give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '2025-03-18', 1, '2025-03-12 01:02:24', 60, '2025-03-18 09:56:17', 0, NULL, 1),
(24455, 'J babu', '13', '9962585593', '6374144306', 'yakupmd56@gmail.com', '2005-09-12', 19, '5', '2', 'A javeed', 'Central govt staff', 35000.00, 1, 0.00, 22500.00, 'Icf east colony chennai', 'Icf east colonh chennai', '2503120027', '', '1', 'upload_files/candidate_tracker/62933930687_RESUME.pdf', NULL, '1', '2025-03-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-12 01:04:20', 1, '2025-03-12 01:18:04', 0, NULL, 1),
(24456, 'Vinodhini', '6', '9884057164', '', 'vinureena123@gmail.com', '2000-02-14', 25, '2', '2', 'Venkat ramanan', 'Foreign exchange', 63000.00, 1, 0.00, 17000.00, 'Chengalpattu', 'Chengalpattu', '2503120028', '1', '1', 'upload_files/candidate_tracker/10578216962_RESUME8.pdf', NULL, '1', '2025-03-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-12 05:47:25', 153, '2025-03-13 11:05:06', 0, NULL, 1),
(24457, 'kalaiarasan v', '6', '9384138573', '7708138573', 'kyarasan500@gmail.com', '2004-04-07', 20, '2', '2', 'vijayakumar s', 'hotel chef', 20000.00, 1, 18000.00, 20000.00, 'srivilliputhur', 'porur chennai', '2503130001', '1', '2', 'upload_files/candidate_tracker/11440672653_kalaiarasanv.pdf', NULL, '1', '2025-03-13', 1, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-03-13 03:53:43', 153, '2025-03-13 03:18:37', 0, NULL, 1),
(24458, 'Gopiga pandeeswari k', '6', '7708138573', '9384138573', 'gopiga4711@gmail.com', '2004-11-04', 20, '2', '2', 'Karpaga pandi M', 'Building contractor', 30000.00, 2, 18000.00, 22000.00, '2/255 Vettrilaiyurani, Virudhunagar district', 'Little mount chennai', '2503130002', '1', '2', 'upload_files/candidate_tracker/24245585769_CV2025022210351179.pdf', NULL, '1', '2025-03-13', 30, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, communication tamil good, 6m bajaj loan, confirm the joining xxamp Salary,Thanks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2025-03-13 04:06:30', 154, '2025-03-13 03:13:54', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24459, '723069765135', '20', '9123534029', '9181487749', 'lokeshanand921@gmail.com', '2010-03-13', 0, '2', '2', 'thamarai selvi', 'wealth Manager', 50000.00, 1, 22500.00, 30000.00, 'ennore', 'Viyasarpadi', '2503130003', '1', '2', 'upload_files/candidate_tracker/11641366120_LOKESHRESUME.docx', NULL, '1', '2025-03-13', 3, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1027', '0', '0', '0', NULL, 1, '2025-03-13 04:43:42', 1, '2025-03-13 04:51:48', 0, NULL, 1),
(24460, 'a v balaji', '13', '8508680732', '7397360311', 'balajimg0003@gmail.com', '2000-06-03', 24, '3', '2', 'm girija', 'homemaker', 700000.00, 0, 0.00, 300000.00, 'thiruvannamalai', 'vadapalani chennai', '2503130004', '', '1', 'upload_files/candidate_tracker/37293513225_Resume.pdf', NULL, '1', '2025-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-13 05:04:18', 1, '2025-03-13 05:20:42', 0, NULL, 1),
(24461, 'logesh', '5', '8148774965', '', 'lokeshanand921@gmail.com', '2010-03-13', 0, '2', '2', 'anand', 'working', 30000.00, 1, 22500.00, 20000.00, 'chennai', 'Chennai', '2503130005', '50', '2', 'upload_files/candidate_tracker/87422847320_LOKESHRESUME1.docx', NULL, '1', '2025-03-13', 0, '', '3', '59', '2025-03-17', 336000.00, '', '1', '1970-01-01', '1', 'Have exp can give a try with the commitment target 2L Life 10SIP 2Knet increase apr', '5', '2', '1', '1', '8', '1', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '2025-03-17', 1, '2025-03-13 05:05:36', 153, '2025-03-17 09:34:47', 0, NULL, 1),
(24462, 'Mathavan', '13', '8270661498', '', 'mathavanr284@gmail.com', '2002-07-24', 22, '3', '2', 'M. Raman', 'Farmer', 300000.00, 2, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2503130006', '', '1', 'upload_files/candidate_tracker/88489600172_Mathavan.Raman.pdf', NULL, '1', '2025-03-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-13 05:06:46', 153, '2025-03-13 10:59:09', 0, NULL, 1),
(24463, 'RAGHUL R', '5', '7397413665', '8056233959', 'rjoel6688@gmail.com', '1997-10-31', 27, '2', '2', 'RAJAN R', 'BUSINESS', 40000.00, 1, 0.00, 18000.00, 'No 1 veeraswamy 2 nd Street Ayanavaram chennai-23', 'No 1 veeraswamy 2 nd Street Ayanavaram chennai-23', '2503130007', '1', '1', 'upload_files/candidate_tracker/15914587209_raghulresume1.pdf', NULL, '1', '2025-03-13', 0, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Asking for customer support role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55735', '55557', '1970-01-01', 1, '2025-03-13 05:16:49', 153, '2025-03-13 01:18:15', 0, NULL, 1),
(24464, 'Vijayalaxmi Vathare', '6', '7483476391', '7204569348', 'vijayalaxmi7223@gmail.com', '2003-02-07', 22, '2', '2', 'Kashavva Vathare', 'House wife', 2000.00, 0, 0.00, 25000.00, 'Kamaatenatti, Chikkodi, Belagavi', 'Kamaatenatti, Chikkodi, Belagavi', '2503130008', '1', '1', 'upload_files/candidate_tracker/18983360440_LAXMIRESUME.pdf', NULL, '1', '2025-03-13', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication is not good and salary expectation is high fresher', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55671', '55555', '1970-01-01', 1, '2025-03-13 05:26:35', 154, '2025-03-13 11:31:47', 0, NULL, 1),
(24465, 'NandhaGopal g', '6', '6382590690', '9710656134', 'nandhagopal.g2001@gmail.com', '2001-04-04', 23, '1', '2', 'E govindan', 'TNEB', 300000.00, 1, 23000.00, 25000.00, 'Oldwashermenpet', 'Oldwashermenpet', '2503130009', '', '2', 'upload_files/candidate_tracker/92632880283_NANDHARESUME.pdf', NULL, '1', '2025-03-13', 0, 'Bharani', '3', '59', '2025-03-20', 216000.00, '', '3', '2025-05-31', '1', 'Communication Ok have exp for few months but not a relevant one can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2025-03-20', 1, '2025-03-13 05:37:53', 60, '2025-03-18 06:10:05', 0, NULL, 1),
(24466, 'Sumanesh t', '5', '9384639257', '7871001472', 'Sumansudesh17112001@mail.com', '2001-11-17', 23, '2', '1', 'Idaya kani', 'House wife', 25.00, 2, 20000.00, 30000.00, 'Chennai', 'Chennai', '2503130010', '1', '2', 'upload_files/candidate_tracker/474849430_Sumanesh1.pdf', NULL, '1', '2025-03-13', 15, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55656', '55557', '1970-01-01', 1, '2025-03-13 05:50:28', 154, '2025-03-13 03:54:57', 0, NULL, 1),
(24467, 'Rakesh thirumal', '4', '9360618758', '8939150083', 'rakesh2004x@gmail.com', '2004-04-07', 20, '2', '2', 'Thirumal', 'Casting and molding', 18000.00, 0, 0.00, 15000.00, 'Pallavaram', 'Pallavaram', '2503130011', '50', '1', 'upload_files/candidate_tracker/80773405801_RakeshTresume.docx', NULL, '1', '2025-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-13 06:24:35', 1, '2025-03-13 06:28:24', 0, NULL, 1),
(24468, '', '0', '7092087398', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503130012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-13 06:33:25', 0, NULL, 0, NULL, 1),
(24469, '', '0', '7904502522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503130013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-13 03:15:10', 0, NULL, 0, NULL, 1),
(24470, 'balachandar kumar', '6', '8778723654', '', 'balachandark0001@gmail.com', '1996-04-30', 28, '2', '2', 'rukmani', 'quality analyst', 40000.00, 1, 22000.00, 25000.00, 'chennai', 'chennai', '2503130014', '1', '2', 'upload_files/candidate_tracker/14151466914_balachandarresume2025.pdf', NULL, '1', '2025-03-14', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-13 07:24:55', 153, '2025-03-14 12:31:13', 0, NULL, 1),
(24471, 'janagar k', '4', '8531899516', '', 'janagark2426@gmail.com', '2002-06-26', 22, '5', '2', 'kalivaradhan', 'former', 90000.00, 3, 13500.00, 18000.00, 'ariyalur', 'chennai', '2503140001', '', '2', 'upload_files/candidate_tracker/16633926539_JanaResume.pdf', NULL, '1', '2025-03-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-14 03:15:22', 1, '2025-03-14 03:23:01', 0, NULL, 1),
(24472, 'sathish', '6', '7200213386', '8778367267', 'sathishnanoo@gmail.com', '1998-07-02', 26, '2', '2', 'v ragupathy', 'car driver', 28000.00, 1, 21000.00, 26000.00, 'medavakam', 'perambur', '2503140002', '1', '2', 'upload_files/candidate_tracker/11022164709_SathishNewCV2.pdf', NULL, '1', '2025-03-14', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-14 05:07:20', 153, '2025-03-14 12:30:48', 0, NULL, 1),
(24473, 'm alan sam manova', '6', '6302283732', '8179429165', 'alansammanova@gmail.com', '2001-10-05', 23, '1', '2', 'm nirmala', 'sales', 100000.00, 1, 16000.00, 17000.00, 'pannur village vijayapuram mandalam chittoor dis', 'melpatti ponnappa st vyasarpadi chennai', '2503140003', '', '2', 'upload_files/candidate_tracker/8984568142_AlansamResume.pdf', NULL, '1', '2025-03-14', 0, '77852', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, communication not good, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-03-14 05:09:37', 153, '2025-03-14 12:30:20', 0, NULL, 1),
(24474, 'Durga', '13', '8072952047', '9360304677', 'durgapandian2003@gmail.com', '2003-12-30', 21, '5', '2', 'Pandian', 'Carpenter', 15000.00, 2, 0.00, 15000.00, 'Pattukkottai', 'Kk nagar chennai', '2503140004', '', '1', 'upload_files/candidate_tracker/13746673768_DURGAPRESUME7.pdf', NULL, '1', '2025-03-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-14 05:38:45', 153, '2025-03-14 11:53:07', 0, NULL, 1),
(24475, 'UMASHANKAR N', '6', '7305641799', '', 'umashankarnvu@gmail.com', '2000-10-21', 24, '5', '2', 'Nallathambi', 'Carpenter', 50000.00, 3, 0.00, 14000.00, '1/226 andal nagar 8th street porur', '1/226 andal nagar 8th street porur', '2503140005', '', '1', 'upload_files/candidate_tracker/99687105401_Umashankar.pdf', NULL, '1', '2025-03-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-14 06:28:24', 1, '2025-03-14 06:36:08', 0, NULL, 1),
(24476, 'Ksselvamani', '11', '8074865065', '6281296679', 'Ksselvamani003@gmail.com', '2001-03-07', 24, '2', '2', 'Srinivasan', 'S', 20000.00, 0, 20000.00, 19000.00, 'chennai', 'chennai avadi', '2503140006', '50', '2', 'upload_files/candidate_tracker/90955730467_selvamaniresumewithoutphoto11.pdf', NULL, '3', '2025-03-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-14 11:30:35', 1, '2025-03-14 11:41:47', 0, NULL, 1),
(24477, '', '0', '8883088968', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-14 01:25:58', 0, NULL, 0, NULL, 1),
(24478, 'Mukesh', '6', '9790930282', '7092325546', 'mukeshappu296@gmail.com', '2004-05-31', 20, '2', '2', 'Senthil kumar', 'Textail', 30000.00, 1, 0.00, 17000.00, 'Mutamil nagar kodugaiyur', 'Mutamil nagar kodugaiyur', '2503150001', '50', '2', 'upload_files/candidate_tracker/55153277594_MukeshResume1.pdf', NULL, '1', '2025-03-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-15 08:09:34', 153, '2025-03-15 04:50:17', 0, NULL, 1),
(24479, 'Kirubakaran Deivendiran', '4', '9943666473', '', 'deivendirankirubakaran@gmail.com', '2003-08-22', 21, '2', '2', 'Deivendhiran', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Thiruppachethi,Sivagangai.', 'Sakthinagar,porur,chennai.', '2503150002', '1', '1', 'upload_files/candidate_tracker/96941176754_ImagePDF202503111549.pdf', NULL, '1', '2025-03-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-03-15 12:38:24', 1, '2025-03-16 02:08:40', 0, NULL, 1),
(24480, 'Arthi G', '6', '9444545198', '9150523300', 'arthiganesan2909@gmail.com', '2000-09-29', 24, '2', '2', 'Ganesan', 'Retail shop', 30000.00, 1, 0.00, 17000.00, 'Mathur', 'Mathur', '2503170001', '1', '2', 'upload_files/candidate_tracker/88939906482_1615977343864ResumeArthi1newup.docx', NULL, '1', '2025-03-17', 0, '', '3', '59', '2025-03-18', 192000.00, '', NULL, '2025-10-03', '2', 'Communciation Ok Good in projecting Very active candidate can be trained in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-03-18', 1, '2025-03-17 04:44:36', 60, '2025-03-17 06:10:05', 0, NULL, 1),
(24481, 'Savitha', '6', '9677080718', '', 'savitha16112002@gmail.com', '2002-11-16', 22, '2', '2', 'Devaki', 'House wife', 40000.00, 1, 17000.00, 20000.00, 'Ayanavaram', 'Ayavaram', '2503170002', '1', '2', 'upload_files/candidate_tracker/93556858741_Savithapdfresumeexp.pdf', NULL, '1', '2025-03-17', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was ok with communication but expectation of salary was more compare to her experience and not having existing company experience letter', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-03-17 05:01:05', 153, '2025-03-17 04:34:31', 0, NULL, 1),
(24482, 'Keerthana Sankar', '6', '7397337236', '7397424753', 'keerthanakanishkaa@gmail.com', '2001-03-31', 23, '2', '2', 'Sankar', 'Cooly', 70000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2503170003', '1', '2', 'upload_files/candidate_tracker/63239970477_keerthanaresume.pdf', NULL, '1', '2025-03-17', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'already experince at loan tele calling at 6 month. good skill , will analiys 7 days training', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-03-17 05:55:01', 153, '2025-03-17 12:51:53', 0, NULL, 1),
(24483, 'Satyam Raikar', '6', '9686430372', '9113292506', 'satyamraikar97@gmail.com', '1997-11-24', 27, '2', '2', 'Priyanka Raikar', 'NA', 27000.00, 1, 27000.00, 40000.00, 'Belgaum', 'Belgaum', '2503170004', '1', '2', 'upload_files/candidate_tracker/13177712593_SatyamRaikar.pdf', NULL, '1', '2025-03-17', 15, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55555', '5151', '1970-01-01', 1, '2025-03-17 05:55:20', 154, '2025-03-17 05:02:04', 0, NULL, 1),
(24484, 'sri rakshitha m', '11', '6381192954', '9363033352', 'srirakshitha1009@gmail.com', '2002-09-10', 22, '3', '1', 'hemanth', 'business', 100000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2503170005', '', '1', 'upload_files/candidate_tracker/55542193621_Rakshithasresume.pdf', NULL, '1', '2025-03-17', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our recruitment team', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-03-17 06:04:51', 154, '2025-03-17 12:22:33', 0, NULL, 1),
(24485, '', '0', '6382718634', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503170006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-17 06:11:10', 0, NULL, 0, NULL, 1),
(24486, 'Saranya R', '6', '8925222499', '', 'saranya31evangeline@gmail.com', '1996-10-31', 28, '3', '2', 'Raji', 'Retired police', 30000.00, 2, 15000.00, 22000.00, 'Chennai', 'Chennai', '2503170007', '', '2', 'upload_files/candidate_tracker/80112464264_SaranyaResume202502241625460000.pdf', NULL, '1', '2025-03-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-17 06:26:24', 154, '2025-03-18 12:36:48', 0, NULL, 1),
(24487, 'Gokul ReddY', '5', '9345991955', '9361896731', 'gokulreddy1111@gmail.com', '1999-10-09', 25, '2', '2', 'MUNIRAJ ( Father)', 'Data entry', 250000.00, 1, 283000.00, 350000.00, 'Room no, 3/17b suvalpet 1st Street,', 'Room no 12 ettyappam nagar extn kolathur', '2503170008', '1', '2', 'upload_files/candidate_tracker/96511210334_cv.pdf', NULL, '1', '2025-03-17', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'reschedule', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-03-17 06:33:21', 154, '2025-03-17 03:34:59', 0, NULL, 1),
(24488, 'kishore r', '4', '6374423312', '', 'rkishoreukt@gmail.com', '2003-04-24', 21, '2', '2', 'ramesh s', 'driver', 20000.00, 1, 0.00, 18000.00, 'Velamakandriga', 'Velamakandriga', '2503170009', '50', '1', 'upload_files/candidate_tracker/67973729923_KishoreR.pdf', NULL, '1', '2025-03-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-17 06:44:32', 1, '2025-03-17 07:23:57', 0, NULL, 1),
(24489, 'francis malkin smila', '6', '6382718634', '6385528352', 'maggiesmila@gmail.com', '2003-09-29', 21, '2', '2', 'xavier', 'tellecalling', 20000.00, 2, 15000.00, 180000.00, 'arumbakkam', 'arumbakkam', '2503170010', '1', '2', 'upload_files/candidate_tracker/90996513534_BlackandWhiteMinimalistSimpleDesignFreelancerResume202503171028130000.pdf', NULL, '1', '2025-03-17', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good .aslo sustainable is doubt', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 153, '2025-03-17 12:33:55', 154, '2025-03-17 02:34:44', 0, NULL, 1),
(24490, 'Lilli E', '5', '9361419193', '9790483067', 'aarthia545@gmail.com', '2001-06-05', 23, '2', '2', 'Mano', 'BD', 30.00, 3, 20000.00, 25000.00, 'Chennai', 'Chennai', '2503170011', '1', '2', 'upload_files/candidate_tracker/63314320043_LILLY.pdf', NULL, '1', '2025-03-18', 15, '', '2', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'RNR', '5', '1', '', '1', '8', '', '2', '2025-04-11', '1', '1', '', '', 'H1017', '', '55735', '55557', '1970-01-01', 1, '2025-03-17 11:58:34', 154, '2025-03-27 07:18:51', 0, NULL, 1),
(24491, 'Balaji Sivakumar', '4', '9384407282', '', 'balajisk26@gmail.com', '2000-09-26', 24, '2', '2', 'Sivakumar', 'Daily wages', 30000.00, 3, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2503170012', '1', '1', 'upload_files/candidate_tracker/70028457752_default1.pdf', NULL, '1', '2025-03-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2025-03-17 12:00:47', 154, '2025-03-18 11:12:41', 0, NULL, 1),
(24492, 'Menika Bhavani', '4', '8939280849', '8428424668', 'menakaj610@gmail.com', '1999-10-06', 25, '2', '2', 'A.jayaraj', 'Leather business', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2503170013', '1', '1', 'upload_files/candidate_tracker/46190271470_Menikaresume25.docx', NULL, '1', '2025-03-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-03-17 01:40:31', 1, '2025-03-17 01:47:11', 0, NULL, 1),
(24493, '', '0', '9788887269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503170014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-17 04:41:04', 0, NULL, 0, NULL, 1),
(24494, 'Sanjana shivaKumar', '6', '6383600640', '8754725584', 'Sanjanashivakumar4@gmail.com', '2001-08-16', 23, '2', '2', 'ShivaKumar', 'Telesales executive', 40000.00, 1, 17000.00, 20000.00, 'Thiruvotriyur', 'Thiruvotriyur', '2503180001', '1', '2', 'upload_files/candidate_tracker/46180383993_WhiteClassicCleanResume202503091815300000.pdf', NULL, '1', '2025-03-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok ,communication good, over all 2.5 yrs Exp, but 5m only sales, so pls cross check sustainability and Pls confirm the joining  date xxamp Salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-03-18 04:39:59', 154, '2025-03-18 12:36:17', 0, NULL, 1),
(24495, 'Manojkumar P', '4', '8056261474', '9941509314', 'manojkumar1417manoj@gmail.com', '2003-01-20', 22, '2', '2', 'K.Palani', 'Worker', 40000.00, 1, 0.00, 25000.00, 'No 40A karunya cross street, Srinivasa Nagar', 'Ayapakkam Chennai 77', '2503180002', '45', '1', 'upload_files/candidate_tracker/34161848137_RESNEW.pdf', NULL, '1', '2025-03-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-18 05:24:44', 153, '2025-03-18 12:38:07', 0, NULL, 1),
(24496, 'Priyanka p', '6', '9025893658', '9841461196', 'priyankapri1508@gmail.com', '1999-08-15', 25, '2', '2', 'Palayam', 'Electrician', 250000.00, 1, 19000.00, 30000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2503180003', '1', '2', 'upload_files/candidate_tracker/83429657617_PriyankaResume22.pdf', NULL, '1', '2025-03-18', 30, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dont have communication skill and fluent ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-03-18 05:48:21', 154, '2025-03-18 03:32:27', 0, NULL, 1),
(24497, 'MartinRock T', '6', '7010887579', '9790806053', 'Martinrock032@gmail.com', '2000-10-22', 24, '2', '2', 'Thomas', 'Printing press', 20000.00, 0, 0.00, 20000.00, 'Flat No.S2, second floor, No.5 V.M street,', 'Royapettah', '2503180004', '50', '1', 'upload_files/candidate_tracker/54656368112_ResumeMARTINROCKTn.pdf', NULL, '1', '2025-03-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-18 05:49:35', 154, '2025-03-19 12:32:14', 0, NULL, 1),
(24498, 'Sumithra Vincent', '5', '9788887260', '8189924019', 'sumikutty79@gmail.com', '1997-03-29', 27, '2', '2', 'Vincent (late)', 'Nill', 2.00, 0, 0.00, 22.00, 'Urapakkam', 'Urapakkam', '2503180005', '1', '2', 'upload_files/candidate_tracker/46509139877_SUMITHRAVINCENT32.pdf', NULL, '1', '2025-03-18', 1, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not comfort with the timing and long distance', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-03-18 05:52:16', 155, '2025-03-20 12:33:08', 0, NULL, 1),
(24499, 'Mohanraj T', '6', '6380384411', '7904358626', 'mohanraj2180@gmail.com', '2000-08-02', 24, '2', '2', 'Amudha', 'Farmer', 30000.00, 1, 0.00, 19500.00, 'No 99 new colony jakkampettai,tindivanam', 'High level mens hostel, Vadapalani', '2503180006', '1', '1', 'upload_files/candidate_tracker/55034699158_MohanrajResume2025.pdf', NULL, '1', '2025-03-18', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for IT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-18 06:13:45', 154, '2025-03-18 02:33:31', 0, NULL, 1),
(24500, 'HARISH P', '4', '7092145429', '', 'harish2108hp@gmail.com', '2001-08-21', 23, '2', '2', 'Palani Samy R', 'Tailor', 25000.00, 1, 0.00, 20000.00, '5/25 kamarajar street padikuppam koyambedu', '5/25 kamarajar street padikuppam koyambedu', '2503180007', '1', '1', 'upload_files/candidate_tracker/39551409337_HarishResume.pdf', NULL, '1', '2025-03-18', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'previously worked in uS chat process for 1yr... giving only one word answer xxamp not comfortable working with targets', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-18 06:13:58', 154, '2025-03-18 02:33:15', 0, NULL, 1),
(24501, '', '0', '7010887577', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503180008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-18 06:35:53', 0, NULL, 0, NULL, 1),
(24502, 'sanjay', '6', '8939385403', '9884807664', 'sanjaybow22@gmail.com', '2003-01-16', 22, '2', '2', 'lakshimi', 'tea shop', 2.50, 1, 18500.00, 20000.00, 'New washermenpet', 'new Washermenpet', '2503180009', '1', '2', 'upload_files/candidate_tracker/90271797252_Sanjayy.pdf.pdf.pdfnew.pdf', NULL, '1', '2025-03-18', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2025-03-18 07:00:14', 154, '2025-03-18 04:26:32', 0, NULL, 1),
(24503, 'Ravi chandran R', '6', '9841834672', '9940611209', 'rc976218@gmail.com', '2003-08-03', 21, '2', '2', 'Rajappa k', 'Driver', 250000.00, 2, 0.00, 18000.00, 'Vyasarbade', 'Mullai nagar', '2503180010', '1', '1', 'upload_files/candidate_tracker/64295869573_ravi.pdf', NULL, '1', '2025-03-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-03-18 07:00:33', 154, '2025-03-18 04:18:58', 0, NULL, 1),
(24504, '', '0', '9790572169', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503180011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-18 07:01:18', 0, NULL, 0, NULL, 1),
(24505, 'Pallavi Parappa Nyamagoud', '6', '9019756399', '9986669955', 'Pallavinyamgoud2001@gmail.com', '2001-08-16', 23, '2', '2', 'Parappa Nyamagoud', 'Fresher', 10000.00, 3, 0.00, 300000.00, 'Jamkhandi', 'Jamkhandi', '2503180012', '1', '1', 'upload_files/candidate_tracker/42678384553_pallavinyamagoudresume1.docx', NULL, '3', '2025-03-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-03-18 09:21:37', 154, '2025-03-19 12:17:41', 0, NULL, 1),
(24506, 'Pavithra P', '6', '8668009021', '', 'pavithraprakash151217@gmail.com', '2004-03-15', 21, '2', '2', 'Dhanalakshmi.p', 'Shopkeeper', 10000.00, 1, 0.00, 3.00, 'Kundrathur chennai 69', 'Kundrathur chennai 69', '2503190001', '1', '1', 'upload_files/candidate_tracker/85252845246_Resumedetails.pdf', NULL, '1', '2025-04-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-19 01:45:39', 153, '2025-04-04 02:53:17', 0, NULL, 1),
(24507, 'Shiyamaladevi', '4', '8098133133', '8248317158', 'Shyamselva8248@gmail.com', '2002-10-07', 22, '2', '2', 'Selvakumar', 'Painter', 40000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2503190002', '1', '1', 'upload_files/candidate_tracker/59863911960_RESUME.pdf', NULL, '1', '2025-03-19', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-03-19 05:16:56', 154, '2025-03-19 01:13:57', 0, NULL, 1),
(24508, 'Babu j', '6', '6374144306', '9962585593', 'yakupmd56@gmail.com', '2005-09-12', 19, '2', '2', 'A javeed', 'CENTRAL GOVT STAFF', 800000.00, 1, 0.00, 21500.00, 'Icf east colony chennai ayanavaram', 'Icf east colony chennai ayanavaram', '2503190003', '1', '1', 'upload_files/candidate_tracker/67403915888_RESUME.pdf', NULL, '1', '2025-03-19', 0, '', '3', '59', '2025-03-20', 192000.00, '', '3', '2025-03-20', '1', 'Communication Ok Fresher 5050 Sustainability doubt need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-03-20', 1, '2025-03-19 06:15:22', 60, '2025-03-19 06:10:15', 0, NULL, 1),
(24509, 'Abinaya A', '6', '9025968132', '9080022108', 'adhimoolamabinaya@gmail.com', '2001-01-25', 24, '2', '2', 'Suguna', 'Farmer', 20000.00, 2, 0.00, 16000.00, 'Dharmapuri', 'Dharmapuri', '2503190004', '1', '2', 'upload_files/candidate_tracker/22326453482_BlackandWhiteCleanProfessionalA4Resume3.pdf', NULL, '1', '2025-03-19', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-03-19 06:40:08', 154, '2025-03-19 01:23:03', 0, NULL, 1),
(24510, 'Surya sivaprakasan', '6', '9080022108', '9344321799', 'suryasmilekiller@gmail.com', '2001-01-04', 24, '2', '2', 'Sivaprakasan', 'Farmer', 30000.00, 2, 0.00, 17000.00, 'Dharmapuri', 'Dharmapuri', '2503190005', '1', '2', 'upload_files/candidate_tracker/41447942310_imgtopdf1903251257019.pdf', NULL, '1', '2025-03-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-19 07:16:37', 154, '2025-03-19 01:26:41', 0, NULL, 1),
(24511, '', '0', '8838689375', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-19 08:10:42', 0, NULL, 0, NULL, 1),
(24512, '', '0', '9566132294', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503190007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-19 09:03:48', 0, NULL, 0, NULL, 1),
(24513, 'EV SANJAY', '6', '8838689375', '9840698922', 'sanju260595@gmail.com', '1995-05-26', 29, '2', '2', 'eK VELAYUDHAN', 'SHOP KEEPER', 30000.00, 0, 0.00, 0.00, 'PERAMBUR', 'CHENNAI', '2503190008', '50', '1', 'upload_files/candidate_tracker/69560436718_ImagetoPDF2025031717.04.00.pdf', NULL, '1', '2025-03-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '2', '1970-01-01', '2', '5', '', '', '', '', '', '', '1970-01-01', 154, '2025-03-19 02:42:25', 154, '2025-03-19 02:52:18', 0, NULL, 1),
(24514, 'Gowsalya sakthivel', '6', '6374736598', '9176646802', 'Gowsi354@gmail', '2001-09-29', 23, '2', '1', 'Anandaraj', 'Designer', 20000.00, 0, 18000.00, 20000.00, 'Navalar Colony, MGR Nagar, Choolai Pallam,', 'Chennai', '2503190009', '1', '2', 'upload_files/candidate_tracker/74611067565_gowsalyaaresume1.pdf', NULL, '1', '2025-03-20', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2025-03-19 01:00:22', 154, '2025-03-20 01:25:39', 0, NULL, 1),
(24515, '', '0', '9940014607', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503190010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-19 01:05:33', 0, NULL, 0, NULL, 1),
(24516, 'Selvam P', '6', '9962606674', '9840984340', 'chiyaanselvam9962@gmail.com', '1997-07-31', 27, '2', '2', 'Periyamani m', 'NA', 100000.00, 1, 0.00, 15000.00, 'No-2/855 Nethaji Nagar, Redhills, Tiruvallur', 'No-2/855 Nethaji Nagar, Redhills, Tiruvallur', '2503190011', '1', '1', 'upload_files/candidate_tracker/41507285971_pdfrendition11.pdf', NULL, '1', '2025-03-20', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication not good ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-03-19 01:22:42', 154, '2025-03-20 02:40:35', 0, NULL, 1),
(24517, 'R BRINDHA', '6', '9840208216', '6379335805', 'dhabrin525@gmail.com', '2010-03-20', 0, '2', '2', 'Parent', 'Working', 20000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2503200001', '1', '2', 'upload_files/candidate_tracker/93169504038_BRINDHARESUME.docx', NULL, '1', '2025-03-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-20 04:16:39', 154, '2025-03-20 12:44:32', 0, NULL, 1),
(24518, 'Bezalel Herald A S', '13', '9345764617', '', 'bezalelherald6@gmail.com', '2002-12-06', 22, '3', '2', 'Anlet Sharmila C', 'Lab technician', 60000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2503200002', '', '1', 'upload_files/candidate_tracker/32483660191_HeraldResume.pdf', NULL, '1', '2025-03-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-20 04:23:52', 1, '2025-03-20 04:31:16', 0, NULL, 1),
(24519, 'NIKITHA.V', '6', '9345450040', '', 'nikithavinothkumar@gmail.com', '2003-04-07', 21, '2', '2', 'Vinothkumar', 'Business', 120000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2503200003', '1', '1', 'upload_files/candidate_tracker/50370386395_sistM.Sc43739029Nikitha.V.pdf', NULL, '1', '2025-03-20', 0, '', '3', '59', '2025-03-27', 180000.00, '', '5', '1970-01-01', '2', 'Communication Good Can be trained in our roles will take a leave for exam inbetween can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-03-27', 1, '2025-03-20 04:38:14', 60, '2025-03-26 06:42:20', 0, NULL, 1),
(24520, 'Lokesh C', '6', '6381314420', '9486620723', 'lokeshlokeshc007@gmail.com', '2003-05-02', 21, '2', '2', 'Chiranjeevi', 'Sales representative', 120000.00, 0, 0.00, 18000.00, 'arakkonam', 'arakkonam', '2503200004', '1', '1', 'upload_files/candidate_tracker/18814546583_SIST.Msc.43739019.Lokesh.c.pdf', NULL, '1', '2025-03-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-03-20 04:38:21', 154, '2025-03-20 11:00:48', 0, NULL, 1),
(24521, 'Ganesh rao. K', '5', '7299347453', '9551755225', 'Ganeshraoganesh03@gmail.com', '2001-10-03', 23, '2', '2', 'Vijayalakshmi bhai . K', 'House wife', 30000.00, 1, 21500.00, 28000.00, 'Chennai', 'Chennai', '2503200005', '1', '2', 'upload_files/candidate_tracker/32642248558_GANESHCV.pdf', NULL, '1', '2025-03-20', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55650', '55560', '1970-01-01', 1, '2025-03-20 05:02:25', 154, '2025-03-20 12:58:01', 0, NULL, 1),
(24522, 'Mohamed Nivas', '13', '8838143510', '8778700338', 'mohamednivas439@gmail.com', '2003-10-22', 21, '3', '2', 'Ramzan ali', 'Driver', 40000.00, 0, 0.00, 20000.00, '143/a, Paarai street, Nellukkundupatti', 'S2, ponnamalle, Chennai 600122', '2503200006', '', '1', 'upload_files/candidate_tracker/91370375707_MohamedNivasResume.pdf', NULL, '1', '2025-03-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-20 05:38:25', 1, '2025-03-20 05:47:54', 0, NULL, 1),
(24523, 'Deepika ilangovan', '6', '9840852357', '8861306672', 'deepikadeeps1107@gmail.com', '2000-07-11', 24, '2', '2', 'Ilangovan', 'Self employed', 15.00, 0, 0.00, 17.00, 'Ponnamallee', 'Ponnamalle', '2503200007', '1', '1', 'upload_files/candidate_tracker/55259533066_DEEPIKAIRESUME2.docx', NULL, '1', '2025-03-20', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'voice too low... and looking for IT Also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-20 05:52:02', 154, '2025-03-20 02:41:21', 0, NULL, 1),
(24524, 'yokesgwaran', '11', '9791197708', '', 'yokeshthiru159@gmail.com', '2002-09-15', 22, '6', '2', 'thirunavukkarasu', 'student', 500000.00, 1, 0.00, 5000.00, 'medavakkam', 'medavakkam', '2503200008', '', '1', 'upload_files/candidate_tracker/4804278287_Resume.pdf', NULL, '1', '2025-03-20', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our recruitment team', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-03-20 06:39:41', 154, '2025-03-20 01:05:20', 0, NULL, 1),
(24525, 'Pooja. M', '6', '8792211238', '', 'pooja.m.personal@gmail.com', '2002-03-06', 23, '2', '2', 'Mohan. a', 'Daily wager', 20000.00, 1, 0.00, 17000.00, 'Ittamadu Banashankari 3rd stage', 'Ittamadu Banashankari 3rd stage', '2503200009', '1', '1', 'upload_files/candidate_tracker/7264016339_CV2025020610464658.pdf', NULL, '1', '2025-03-20', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55555', '5151', '1970-01-01', 1, '2025-03-20 06:43:25', 154, '2025-03-20 04:13:13', 0, NULL, 1),
(24526, 'Karthik b r', '6', '9686558757', '9980701854', 'karthikrameshbr88@gmail.com', '2001-03-04', 24, '2', '2', 'ramesh', 'Business', 30000.00, 1, 0.00, 25000.00, 'jayanagar', 'jayanagar', '2503200010', '1', '1', 'upload_files/candidate_tracker/72985255870_Karthikres77.pdf.pdf', NULL, '1', '2025-03-20', 0, '', '3', '59', '2025-03-27', 198000.00, '', '3', '2025-03-31', '1', 'Communication Ok Can be trained in our roles and check  in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55555', '5151', '2025-03-27', 1, '2025-03-20 07:36:43', 60, '2025-03-26 06:44:31', 0, NULL, 1),
(24527, 'Jeevarekha V', '5', '9342288277', '9342276119', 'tamileelanela@gmail.com', '1993-04-18', 31, '2', '2', 'Sasimohan', 'Hotelier', 30000.00, 0, 21000.00, 25000.00, 'Salem', 'Triplicane', '2503200011', '1', '2', 'upload_files/candidate_tracker/69711720403_CV2025031920391295.pdf', NULL, '1', '2025-03-20', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for FSC \nDont have communication skils ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-03-20 07:53:14', 154, '2025-03-20 03:47:43', 0, NULL, 1),
(24528, 'Kishore', '4', '9940175432', '9003297859', 'kishore.rocker18@gmail.com', '2004-10-23', 20, '2', '2', 'Guganraj', 'Businesses', 40.00, 1, 20.00, 20.00, 'Tondiyarpet', 'Tondiyarpet', '2503200012', '1', '2', 'upload_files/candidate_tracker/21828025263_KishoreResume.pdf', NULL, '1', '2025-03-21', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-03-20 01:04:17', 154, '2025-03-21 12:57:38', 0, NULL, 1),
(24529, 'Parthipan R', '31', '9080416826', '', 'parthi28052002@gmail.com', '2002-05-28', 22, '3', '2', 'Amudha R', 'Tea shop', 20000.00, 1, 0.00, 15000.00, 'Trichy', 'Chennai', '2503210001', '', '1', 'upload_files/candidate_tracker/16445563440_ParthipanFrontendDeveloper11.pdf', NULL, '1', '2025-03-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-21 05:16:43', 1, '2025-03-21 05:20:04', 0, NULL, 1),
(24530, 'Lakshanchandrasekar', '4', '8072445503', '9626010266', 'lakshancsekar2000@gmail.com', '2001-11-28', 23, '3', '2', 'Renukadevi', 'House wife', 100000.00, 1, 0.00, 16500.00, 'Chennai', 'Avadi', '2503210002', '', '1', 'upload_files/candidate_tracker/53911179912_LakshanC.docx', NULL, '1', '2025-03-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-21 05:21:46', 154, '2025-03-21 12:02:08', 0, NULL, 1),
(24531, 'M.Sivagami', '4', '9361833156', '8122120904', 'ssivagami207@gmail.com', '2002-04-16', 22, '2', '2', 'Pachayammal .M', 'Coolie', 15000.00, 2, 16000.00, 20000.00, '23 Suriya Narayanan 1st Street Kasimedu Chen 13', '23 Suriya Narayanan 1st Street Kasimedu Chen 13', '2503210003', '1', '2', 'upload_files/candidate_tracker/83854044920_RESUME.docx', NULL, '1', '2025-03-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-03-21 05:28:38', 154, '2025-03-21 12:32:12', 0, NULL, 1),
(24532, 'Gayathri.S', '4', '9790738810', '7339482342', 'swagaya3@gmail.com', '2002-03-12', 23, '2', '2', 'Renuga', 'Toilor', 15000.00, 1, 16000.00, 20000.00, '34 arumugam St Chennai : 21', '34 arumugam St Chennai : 21', '2503210004', '1', '2', 'upload_files/candidate_tracker/33743082712_gayath1.docx', NULL, '1', '2025-03-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-03-21 05:29:00', 154, '2025-03-21 12:32:34', 0, NULL, 1),
(24533, 'Kalavala Sai Deepa', '6', '6303781414', '', 'saideepa08267@gmail.com', '2002-02-14', 23, '3', '2', 'Kalavala padmavathi', 'House wife', 30000.00, 2, 0.00, 20000.00, 'Anantapur', 'BTM 2nd stage Bangalore', '2503210005', '', '1', 'upload_files/candidate_tracker/83631164753_deepu1.pdf', NULL, '1', '2025-03-21', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for it job', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-03-21 05:39:21', 154, '2025-03-21 12:06:17', 0, NULL, 1),
(24534, 'm gunaseelan', '4', '8939150150', '9884150150', 'seelanguna310@gmail.com', '1999-11-25', 25, '2', '1', 'sumithra', 'focu on career', 25000.00, 4, 0.00, 20000.00, 'chennai', 'chennai', '2503210006', '1', '1', 'upload_files/candidate_tracker/96763538451_Gunaseelan.pdf', NULL, '1', '2025-03-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-03-21 05:51:11', 154, '2025-03-21 04:36:23', 0, NULL, 1),
(24535, 'Barath Kumar', '4', '9710161612', '7448834906', 'barathkumar01012004@gmail.com', '2004-05-01', 20, '2', '2', 'Kala', 'Focus on carrier', 25000.00, 5, 0.00, 20000.00, 'City', 'City', '2503210007', '1', '1', 'upload_files/candidate_tracker/55534390136_607e808afff84553bd8332142b242bae.pdf', NULL, '1', '2025-03-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-03-21 05:51:32', 154, '2025-03-21 04:36:37', 0, NULL, 1),
(24536, 'Priyanka', '11', '7397441361', '9841899873', 'priyalakshmi6075@gmail.com', '2001-12-16', 23, '3', '2', 'Lakshmi', 'Daily wages', 20000.00, 1, 0.00, 19000.00, 'No.6/13 ,7th Street svm Nagar ennore chennai-57', 'No.6/13 ,7th Street svm Nagar ennore chennai-57', '2503210008', '', '2', 'upload_files/candidate_tracker/35663229599_CV2025032019452081.pdf', NULL, '1', '2025-03-21', 20, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our recruitment team', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-03-21 06:04:29', 154, '2025-03-21 12:04:05', 0, NULL, 1),
(24537, 'A Maxshall Raj', '6', '7092777880', '9445330361', 'maxshallraj@gmail.com', '1995-06-18', 29, '2', '2', 'N arul raj', 'Admin', 20000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2503210009', '1', '1', 'upload_files/candidate_tracker/58671446663_Maxs.pdf', NULL, '1', '2025-03-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-21 06:30:14', 154, '2025-03-21 01:16:17', 0, NULL, 1),
(24538, 'Madhavan T', '4', '9345017892', '9840133548', 'Maddypavimaddypavi@gmail.com', '2000-03-18', 25, '2', '2', 'Thiyagarajan', 'Driver', 25000.00, 5, 17.00, 20.00, 'Chennai', 'Chennai', '2503210010', '1', '2', 'upload_files/candidate_tracker/74232091476_Resume10.pdf', NULL, '1', '2025-03-21', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-03-21 06:42:56', 154, '2025-03-21 04:37:02', 0, NULL, 1),
(24539, '', '0', '7200336674', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503210011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-21 11:05:00', 0, NULL, 0, NULL, 1),
(24540, 'Manikandan .C', '11', '9790753383', '9942247902', 'mkmani2912@gmail.com', '2003-12-29', 21, '2', '2', 'T.Chandramohan', 'Office admin', 30000.00, 1, 0.00, 18000.00, '35/14 pandram street Vadapalani Chennai -600026', '35/14 pandram street Vadapalani Chennai -600026', '2503210012', '1', '1', 'upload_files/candidate_tracker/76629321274_1000055946.pdf', NULL, '1', '2025-03-24', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our recruitment team', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-03-21 01:30:25', 154, '2025-03-24 12:00:08', 0, NULL, 1),
(24541, 'Harini P', '11', '8883614808', '7810033578', 'pharini1308@gmail.com', '2002-08-13', 22, '2', '2', 'Periyaiya', 'Driver', 30000.00, 1, 18000.00, 20000.00, 'Pudukkottai', 'West mambalam', '2503210013', '1', '2', 'upload_files/candidate_tracker/60764200502_HariniNew.pdf', NULL, '1', '2025-03-22', 15, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our recruitment team', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-03-21 04:19:52', 154, '2025-03-22 03:10:47', 0, NULL, 1),
(24542, 'Dinakar', '13', '9342659996', '9940965791', 'duraidinakar22@gmail.com', '2004-03-22', 21, '3', '2', 'Thangadurai', 'Farmer', 48000.00, 2, 0.00, 6000.00, 'Chennai', 'Chennai', '2503220001', '', '1', 'upload_files/candidate_tracker/78219765037_DinakarFrontend.pdf', NULL, '1', '2025-03-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-22 04:19:31', 154, '2025-03-22 09:59:39', 0, NULL, 1),
(24543, 'Logeshwaran', '6', '9360661784', '9962821782', 'wlogesh052@gmail.com', '2003-07-23', 21, '2', '2', 'Muthu lakshmi', 'Home maker', 30000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2503220002', '1', '2', 'upload_files/candidate_tracker/57660158467_20250322103113.pdf', NULL, '1', '2025-03-22', 0, '', '3', '59', '2025-03-24', 198000.00, '', '1', '1970-01-01', '1', 'Communication Ok Fresher for our roles have few months exp but no relevant documents can check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1070', '5151', '2025-03-24', 1, '2025-03-22 04:56:48', 60, '2025-03-24 10:29:52', 0, NULL, 1),
(24544, 'Bhavani marimuthu', '6', '6369164701', '9047517546', 'bhavanimbhavani373@gmail.com', '2003-09-09', 21, '2', '2', 'MUTHU LAKSHMI', 'Former', 50000.00, 2, 0.00, 16000.00, 'Pudukkottai', 'Vadapalani', '2503220003', '1', '1', 'upload_files/candidate_tracker/84157308420_B.pdf', NULL, '1', '2025-03-22', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-03-22 09:36:35', 154, '2025-03-22 04:00:28', 0, NULL, 1),
(24545, 'Kishore Kumar Elangovan', '4', '6369303491', '9710773160', 'kumarkishore96680@gmail.com', '2002-05-15', 22, '3', '2', 'Elangovan', 'Sales mN', 120000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2503220004', '', '2', 'upload_files/candidate_tracker/26131569720_ResumeKishoreKumar1.pdf', NULL, '1', '2025-03-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-22 10:45:57', 1, '2025-03-22 10:48:53', 0, NULL, 1),
(24546, 'Jaya Shree', '6', '8925019179', '9840409082', 'shree19179@gmail.com', '2003-02-18', 22, '2', '2', 'Kalidash', 'Carpenter', 30000.00, 1, 0.00, 15000.00, 'Chennai-53', 'Chennai-53', '2503220005', '1', '1', 'upload_files/candidate_tracker/23462672120_Jayashreekresume2.pdf', NULL, '1', '2025-03-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was good at communication and also experienced in sales and interested in earnings and will provide salary 14-15k and she will join by april start', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-03-22 11:34:17', 154, '2025-03-24 03:00:45', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24547, 'Kamalesh c', '6', '9962441627', '', 'kamaleshelano@gmail.com', '2000-12-29', 24, '2', '2', 's.chandra sekaran', 'Driver', 30000.00, 1, 25000.00, 28000.00, 'Chennai avadi', 'Chennai Avadi', '2503220006', '1', '2', 'upload_files/candidate_tracker/93333758017_MyResume.pdf', NULL, '1', '2025-03-24', 5, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dont have good communication skills \nNot fit for rm Profile ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-03-22 12:50:52', 154, '2025-03-24 04:47:46', 0, NULL, 1),
(24548, 'Dharaneshwaran S', '6', '9025334294', '8608140453', 'skdharanesh1404@gmail.com', '2001-02-13', 24, '2', '2', 'Mother-Kavitha', 'Home maker', 15000.00, 0, 0.00, 18000.00, '3/72 Middle street Sripuramputhur, Tiruchirappalli', '3/72 Middle street Sripuramputhur, Tiruchirappalli', '2503240001', '1', '1', 'upload_files/candidate_tracker/35517986466_2023.pdf', NULL, '1', '2025-03-24', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And Performance is little bit ok.but his sustainable is doubt also distance is long', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-03-24 05:22:57', 154, '2025-03-24 12:45:43', 0, NULL, 1),
(24549, '', '0', '9344687492', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503240002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-24 06:07:39', 0, NULL, 0, NULL, 1),
(24550, 'Praveen kumar Raja', '5', '9514134961', '9840995732', 'praveenpinto618@gmail.com', '1998-06-06', 26, '2', '2', 'Richard', 'Nill', 1.00, 2, 28.50, 30.00, 'No 13/25 1st Hoppmen street Alandur chennai 16', 'No 17 parthiban street Ullagram chennai 91', '2503240003', '45', '2', 'upload_files/candidate_tracker/9745844054_resume1.pdf', NULL, '1', '2025-03-24', 7, '', '3', '59', '2025-04-07', 345696.00, '', '3', '2025-04-30', '1', 'Communication Ok Can be trained in our roles commitment by gaurav sir - 2L plus 10K sip ok 3K', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '2025-04-07', 1, '2025-03-24 06:29:52', 60, '2025-04-07 10:29:29', 0, NULL, 1),
(24551, '', '0', '9080767174', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503240004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-24 06:49:55', 0, NULL, 0, NULL, 1),
(24552, 'Harisankaradoss', '4', '8220301294', '9865679154', 'harisankaradoss@gmail.com', '2000-12-30', 24, '2', '2', 'Malarkodi', 'Nurse', 20000.00, 0, 13000.00, 14000.00, 'Thanjavur', 'Thanjavur', '2503240005', '1', '2', 'upload_files/candidate_tracker/47400321527_HariNow.pdf', NULL, '1', '2025-03-25', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR TEAM', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-03-24 07:35:24', 154, '2025-03-25 10:04:36', 0, NULL, 1),
(24553, 'Sugirtha Sivakumar', '11', '7358448326', '', 'sugirthasivakumar18@gmail.com', '2001-12-18', 23, '3', '2', 'Sivakumar', 'Sales executive', 350000.00, 0, 0.00, 275000.00, 'Chennai', 'Chennai', '2503240006', '', '1', 'upload_files/candidate_tracker/73992209440_SUGIRTHAHR.pdf', NULL, '1', '2025-03-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-03-24 07:49:03', 1, '2025-03-24 07:52:06', 0, NULL, 1),
(24554, 'Prasanna D', '4', '6383341587', '6383341587', 'prasannasachi222@gmail.com', '2000-11-20', 24, '2', '2', 'Dharuman', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'Thiruvannamalai', 'Chennai', '2503240007', '1', '1', 'upload_files/candidate_tracker/74474492160_PrasannaMCAFresherCV.pdf', NULL, '1', '2025-03-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-24 08:17:05', 154, '2025-03-28 04:28:18', 0, NULL, 1),
(24555, 'Indian raja', '5', '7373876959', '', 'indianraju1496@gmail.com', '1996-04-01', 28, '2', '2', 'Muthu', 'Farmer', 20000.00, 0, 0.00, 20000.00, 'Theni', 'Chennai', '2503240008', '1', '1', 'upload_files/candidate_tracker/66017754951_RESUME2025INDIANRAJA.pdf', NULL, '1', '2025-03-25', 0, '', '3', '59', '2025-04-07', 252000.00, '', '3', '2025-05-16', '2', 'Communication Ok fresher for our roles career gap can be trained in our roles hired for FSC', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55735', '55557', '2025-04-07', 1, '2025-03-24 02:53:42', 60, '2025-04-03 05:27:34', 0, NULL, 1),
(24556, 'Balamurugan karuppiya', '6', '6380242316', '7358086818', 'balamurugan22012001@gmail.com', '2001-01-22', 24, '2', '2', 'karthikeyan', 'selfemployee', 60000.00, 1, 0.00, 20000.00, 'Tambaram Chennai', 'Tambaram Chennai', '2503250001', '1', '1', 'upload_files/candidate_tracker/10424700285_BALAMURUGAN.K.pdf', NULL, '3', '2025-03-25', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for designing field only, not suit for sales and expecting high salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-25 12:38:24', 154, '2025-03-25 11:21:46', 0, NULL, 1),
(24557, 'Dharshni Ramakrishnan', '6', '8248185324', '7639848874', 'dharshnir1998@gmail.com', '1998-11-23', 26, '2', '1', 'Baskar', 'Data Analyst', 70000.00, 0, 2.75, 4.00, 'No: 54/A, village street, Thiruvottiyur', 'Chennai', '2503250002', '1', '2', 'upload_files/candidate_tracker/78510899913_R.DHARSHNINEWRESUMEdoc..1.docx', NULL, '1', '2025-03-26', 15, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-03-25 04:31:21', 154, '2025-03-26 11:32:47', 0, NULL, 1),
(24558, 'Thamizharasan', '6', '8124717062', '8124717002', 'thamizh2002k@gmail.com', '2002-03-04', 23, '2', '2', 'Annapoorani', 'Goverment Staff', 40000.00, 1, 265000.00, 240000.00, 'Kedar, Vilupuram', 'Triplicane, Chennai', '2503250003', '1', '2', 'upload_files/candidate_tracker/92567694373_Resume..pdf', NULL, '1', '2025-03-25', 1, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication not good and mainly looking job in  designing field only and doing bsc comp in correspondence so plan for IT courses also.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-25 04:34:46', 154, '2025-03-25 11:22:01', 0, NULL, 1),
(24559, 'T Lahari', '6', '8919236066', '9866109751', 'tlahari317@gmail.com', '2000-08-20', 24, '2', '2', 'Krishna', 'Driver', 15000.00, 2, 0.00, 20000.00, 'Punganur, chittoor d, Andhra Pradesh', 'Btm layout bangalore', '2503250004', '1', '1', 'upload_files/candidate_tracker/45497910558_LahariL1.pdf', NULL, '1', '2025-03-25', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good communication skill fresher 14k in hand ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55671', '55555', '1970-01-01', 1, '2025-03-25 04:57:29', 154, '2025-04-07 10:20:35', 0, NULL, 1),
(24560, 'Ram mohan reddY', '6', '7892477561', '7780422645', 'rameswara7561@gmail.com', '1998-08-15', 26, '2', '2', 'B.Gopal', 'Former', 10000.00, 2, 0.00, 20000.00, 'Bangalore', 'BTM(Mico layout)', '2503250005', '1', '1', 'upload_files/candidate_tracker/49358630563_RamMohanResumeRS23.pdf', NULL, '1', '2025-03-25', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication problem ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55671', '55555', '1970-01-01', 1, '2025-03-25 04:59:09', 154, '2025-03-26 09:42:28', 0, NULL, 1),
(24561, 'Noorul Afrin', '4', '9444462607', '', 'noorulafrin18@gmail.com', '2003-11-05', 21, '2', '2', 'Y.majeed', 'Executive', 15000.00, 0, 0.00, 2.50, 'Egmore Chennai', 'Egmore Chennai', '2503250006', '1', '1', 'upload_files/candidate_tracker/80766151420_noorulafrinresume.pdf', NULL, '1', '2025-03-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-25 05:15:21', 154, '2025-03-28 04:27:27', 0, NULL, 1),
(24562, 'Gopika', '4', '7812855112', '', 'sakthivelgopika6@gmail.com', '2003-07-07', 21, '2', '2', 'Sakthivel', 'Welding', 20000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2503250007', '1', '1', 'upload_files/candidate_tracker/67265481242_gopika.REsume2.pdf', NULL, '1', '2025-03-25', 0, '', '5', '74', '1970-01-01', 0.00, '', '3', '2025-03-29', '2', 'NOT FIT FOR TELECALLING', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2025-03-25 05:33:00', 154, '2025-03-25 11:41:15', 0, NULL, 1),
(24563, 'Prithika.A', '6', '6385550929', '6385550929', 'prithikaarumugam2002@gmail.com', '2010-03-25', 0, '2', '2', 'Arumugam', 'Cooly', 12000.00, 2, 0.00, 15000.00, '6 vada agaram road marakkanam Villupuram', 'Moogambigai ladies hostel saidapet', '2503250007', '1', '1', 'upload_files/candidate_tracker/80224447721_CV1.pdf', NULL, '1', '2025-03-25', 0, '', '3', '59', '2025-03-27', 192000.00, '', '3', '2025-03-29', '2', 'Communication Ok Can be trained in our roles  need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'CA130', '5151', '2025-03-27', 1, '2025-03-25 05:33:00', 60, '2025-03-26 06:56:40', 0, NULL, 1),
(24564, 'HEMALAKSHMI S', '6', '7200185221', '9444866686', 'hemalakshmi1807@gmail.com', '2002-05-18', 22, '1', '2', 'velammal S', 'Working in exports', 15.00, 1, 2.30, 2.50, 'Chennai', 'Chennai', '2503250008', '', '2', 'upload_files/candidate_tracker/38422143623_MinimalistModernProfessionalCVResume.pdf', NULL, '1', '2025-03-25', 0, '77852', '3', '59', '2025-04-07', 228000.00, '', '3', '2025-12-18', '1', 'communication Ok have exp in relevant sales can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2025-04-07', 1, '2025-03-25 05:38:37', 60, '2025-04-03 05:26:01', 0, NULL, 1),
(24565, 'Navyatha sd', '6', '7338271129', '6361399053', 'navyathasd99@gmail.com', '1999-02-10', 26, '2', '2', 'SannaGowda', 'Teacher', 60000.00, 1, 23000.00, 30000.00, 'Shikaripur', 'Jp nagar', '2503250009', '1', '2', 'upload_files/candidate_tracker/10471517510_NavyathasdResume.pdf', NULL, '1', '2025-03-25', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for 23k salary not looking for rm ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55671', '55555', '1970-01-01', 1, '2025-03-25 05:51:29', 154, '2025-03-26 09:50:56', 0, NULL, 1),
(24566, 'CHRISTHU RAJ', '4', '9629974532', '9629974532', 'christhurajraj3@gmail.com', '2002-04-15', 22, '2', '2', 'DOMINIC SAVIYO', 'FARMER', 25000.00, 0, 0.00, 20000.00, 'Kallakurichi', 'Kallakurichi', '2503250010', '1', '1', 'upload_files/candidate_tracker/20059470287_D.CHRISTHURAJ1.pdf', NULL, '1', '2025-03-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-03-25 06:05:59', 154, '2025-03-28 04:27:40', 0, NULL, 1),
(24567, 'Akshaya A', '6', '8489538737', '9487370523', 'rishoakshaya@gmail.com', '2002-05-10', 22, '2', '2', 'A. Albert', 'Fisherman', 15000.00, 2, 0.00, 15000.00, 'Valanar colony, Kadiapattanam, Kanyakumari.', 'Nil', '2503250011', '45', '1', 'upload_files/candidate_tracker/14372642260_Akshayaresume.pdf', NULL, '1', '2025-03-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-25 06:09:07', 154, '2025-03-28 04:28:37', 0, NULL, 1),
(24568, 'Benlin sherina j', '6', '9043366941', '7639057982', 'Jijupious@gmail.com', '2002-05-24', 22, '2', '2', 'John pious G', 'Fisher man', 15000.00, 1, 0.00, 15000.00, 'Victoriya garden, kadiapattanam, kanyakumari.', 'Nil', '2503250012', '45', '1', 'upload_files/candidate_tracker/42887131544_Benlinsherinaj2.pdf', NULL, '1', '2025-03-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-25 06:10:03', 154, '2025-03-28 04:29:25', 0, NULL, 1),
(24569, '', '0', '6302354708', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503250013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-25 06:43:31', 0, NULL, 0, NULL, 1),
(24570, 'Mohamed Ashiq Sheriff Irshad Ahamed', '11', '9524130262', '9095498588', 'ashiq2610@gmail.com', '1997-10-26', 27, '2', '2', 'Nazmunnisha Begum', 'Nil', 1.00, 1, 18000.00, 25000.00, 'Trichy', 'Chennai', '2503250014', '45', '2', 'upload_files/candidate_tracker/52300942835_DocumentfromMohamedAshiqSheriff.pdf', NULL, '1', '2025-03-25', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-03-25 09:01:50', 154, '2025-03-28 04:28:05', 0, NULL, 1),
(24571, 'Pragatheswaran T', '4', '8056375557', '9444362040', 'pragatheswarant2003@gmail.com', '2003-07-06', 21, '2', '2', 'Thangavel', 'Driver', 37000.00, 1, 17500.00, 21000.00, 'Thanjavur', 'Thanjavur', '2503260001', '1', '2', 'upload_files/candidate_tracker/71507821541_PCRRESUMEupdated.pdf', NULL, '1', '2025-03-26', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is ok with the profile completed BE in madurai....doing part time maths tution in madurai....while studying....after college completion joining hexa ware 10 months experience.....( due to partiality in ABM promotion with TL ) quit the job...........father worked in chennai govt driver 20k only salary.....brother 10th std only.... home 1 km from office....studying revenue and group 2 govt exam......have no laptop ready to arranged.....expected 20k....past company 17.5 k....take home...imeediate joining......next month sister marriage need 10days leave.....kindly check once and confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-03-26 04:43:07', 154, '2025-03-26 10:57:26', 0, NULL, 1),
(24572, 'Dhanvanthri.s', '6', '6385638118', '8189812346', 'dhanvanthiri789@gmail.com', '1998-09-07', 26, '1', '2', 'M.saravanakumar', 'Driver', 25000.00, 2, 0.00, 15000.00, 'Karaikudi', 'Nungambakkam', '2503260002', '', '1', 'upload_files/candidate_tracker/56074931809_resume1.pdf', NULL, '1', '2025-03-26', 0, '99066', '3', '59', '2025-04-07', 192000.00, '', '3', '2025-06-11', '1', 'Communication Ok Can be trained in our roles Need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2025-04-07', 1, '2025-03-26 05:00:47', 60, '2025-04-03 05:30:18', 0, NULL, 1),
(24573, 'Vijayahariharan', '5', '8939999174', '9342057841', 'vijayahariharan1994@gmail.com', '1994-02-23', 31, '2', '1', 'Vaishnavi', 'Working', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2503260003', '1', '1', 'upload_files/candidate_tracker/79023092747_Vijay2024new.pdf', NULL, '1', '2025-03-26', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for RM profile ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55656', '55557', '1970-01-01', 1, '2025-03-26 05:21:13', 154, '2025-03-26 11:52:23', 0, NULL, 1),
(24574, 'kiruthika', '6', '9344432284', '7358291450', 'kirthigayuva05@gmail.com', '2002-01-27', 23, '2', '2', 'yuvaraj', 'daily wages', 75000.00, 1, 18000.00, 20000.00, 'triplicane', 'triplicane', '2503260004', '1', '2', 'upload_files/candidate_tracker/17168255001_KirthigaYuvarajCV.pdf', NULL, '1', '2025-03-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-26 05:41:44', 154, '2025-03-26 03:15:15', 0, NULL, 1),
(24575, 'KEERTHANA', '6', '7540051128', '8682924988', 'Joshvakeerthi@gmail.com', '2001-12-01', 23, '2', '1', 'Sham', 'Paindar', 20000.00, 3, 18000.00, 30000.00, 'Chennai', 'Chennai', '2503260005', '1', '2', 'upload_files/candidate_tracker/9190037034_KeerthanaResume.pdf', NULL, '1', '2025-03-26', 4, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shorlisted as FSE for Gnanshekar team. Please negotiate the salary and can join on 10th April', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-03-26 07:53:44', 154, '2025-03-26 04:41:05', 0, NULL, 1),
(24576, '', '0', '7305234740', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503260006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-26 02:24:59', 0, NULL, 0, NULL, 1),
(24577, 'Akshita.S.Betageri', '6', '7676962376', '', 'akshitabestie123@gmail.com', '1997-11-21', 27, '2', '2', 'Shakuntala', 'B.E', 15000.00, 0, 0.00, 16000.00, 'KHB colony MIG B-10 hulkoti', 'Banglore', '2503270001', '1', '1', 'upload_files/candidate_tracker/84741722893_cv.pdf', NULL, '1', '2025-03-27', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for temporary time period', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55671', '55555', '1970-01-01', 1, '2025-03-27 05:37:32', 154, '2025-03-27 12:23:45', 0, NULL, 1),
(24578, 'N.loganathan', '4', '8056497844', '', 'lloganathanbe@gmail.com', '1997-12-11', 27, '2', '2', 'O.navakotti', 'Weaver', 1.50, 3, 12000.00, 15000.00, 'Salem', 'Ambattur', '2503270002', '1', '2', 'upload_files/candidate_tracker/93006630693_resumefinal.pdf', NULL, '1', '2025-03-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-03-27 05:49:33', 154, '2025-03-27 02:34:25', 0, NULL, 1),
(24579, 'v kishore kumar', '6', '8428726757', '8056828820', 'kishorekumar1579@gmail.com', '2003-05-10', 21, '2', '2', 'venkatesan', 'driver', 180000.00, 1, 13000.00, 18000.00, 'redhills', 'redhills', '2503270003', '50', '2', 'upload_files/candidate_tracker/35545727000_KishoreKumarResume.pdf', NULL, '1', '2025-03-27', 0, '', '3', '59', '2025-04-07', 210000.00, '', '3', '2025-04-09', '2', 'Communication Ok no sustainability in his previous can be trained and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2025-04-07', 1, '2025-03-27 05:56:40', 60, '2025-04-03 05:32:00', 0, NULL, 1),
(24580, '', '0', '8803687795', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503270004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-27 06:47:39', 0, NULL, 0, NULL, 1),
(24581, 'HARIHARAN CHINNAPPA', '4', '8903687795', '', 'hariharanchinnappa@gmail.com', '1995-07-07', 29, '2', '2', 'K CHINNAPPA', 'Telephone supervisor', 45000.00, 1, 15000.00, 25000.00, 'Thanjavur', 'Tamabaram', '2503270005', '1', '2', 'upload_files/candidate_tracker/17917440601_Resume.pdf', NULL, '1', '2025-03-27', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-03-27 06:51:49', 154, '2025-03-27 02:33:43', 0, NULL, 1),
(24582, 'G.B.manoj kumar', '6', '9566125109', '9361275024', 'mk8443812@gmail.com', '1999-07-18', 25, '2', '1', 'Bala', 'Gold loan a.m', 200000.00, 1, 21000.00, 25000.00, 'K.k.nagar', 'K.k.nagar', '2503280001', '1', '2', 'upload_files/candidate_tracker/3958479364_G.B.MANOJKUMAR1.pdf', NULL, '1', '2025-03-28', 3, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for tam lead position.. salary exp high... sustainability issue....', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-03-28 09:07:27', 154, '2025-03-28 03:23:18', 0, NULL, 1),
(24583, '', '0', '9944908823', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503280002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-28 10:39:20', 0, NULL, 0, NULL, 1),
(24584, 'S Kaleeshwaran', '6', '6380423405', '', 'kaleeshwaran045@gmail.com', '2001-06-04', 23, '2', '2', 'P.Subramani', 'Daily wages', 25000.00, 1, 0.00, 16000.00, 'Erode', 'Ambattur', '2503280003', '1', '1', 'upload_files/candidate_tracker/97731026760_resume.docx', NULL, '1', '2025-03-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-03-28 12:59:06', 154, '2025-03-29 01:12:40', 0, NULL, 1),
(24585, 'Lakshana sre R', '11', '9342324411', '', 'lakshanasrer.hr@gmail.com', '1999-07-08', 25, '2', '1', 'Vignesh', 'Advocate', 100000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2503280004', '1', '1', 'upload_files/candidate_tracker/97062043767_Lakshanaresume12.pdf', NULL, '1', '2025-03-29', 0, '', '3', '59', '2025-03-31', 180000.00, '', '1', '1970-01-01', '1', 'First 1 month intern with 5K stipend and based on performance will go for employment', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55605', '55566', '2025-03-31', 1, '2025-03-28 01:15:15', 159, '2026-01-30 10:15:18', 0, NULL, 1),
(24586, 'Subekha.R', '6', '9884025284', '9962376317', 'ravisubekha@gmail.com', '2002-10-05', 22, '2', '2', 'Ravi.k', 'Auto driver', 2000.00, 1, 18500.00, 23000.00, 'Chennai', 'Chennai', '2503290001', '1', '2', 'upload_files/candidate_tracker/9589266032_56271298356975247007.pdf', NULL, '1', '2025-03-29', 0, '', '3', '59', '2025-04-10', 252000.00, '', '3', '2025-04-12', '2', 'Communication Ok have exp for few months in Shriram can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55735', '55557', '2025-04-10', 1, '2025-03-29 04:58:58', 60, '2025-04-09 07:16:48', 0, NULL, 1),
(24587, 'Vignesh', '6', '9042556880', '9551521080', 'kviknesh623@gmail.com', '2004-03-27', 21, '2', '2', 'Kathiravan', 'Carpenter', 30000.00, 1, 14000.00, 16000.00, 'Ennore', 'Ennore', '2503290002', '1', '2', 'upload_files/candidate_tracker/92582877738_VigneshResume.pdf', NULL, '1', '2025-03-29', 8, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-03-29 05:40:32', 154, '2025-03-29 02:52:09', 0, NULL, 1),
(24588, 'Thangamani C', '6', '9791263119', '8015832002', 'goldenbellsinnadurai@gmail.com', '2010-03-29', 0, '2', '2', 'Govindhammal', 'Senior executive', 20000.00, 3, 17000.00, 23000.00, 'Pallapatti,karur', 'Saidhapet,chennai', '2503290003', '1', '2', 'upload_files/candidate_tracker/64398125212_ThangamaniC.Resume.pdf', NULL, '1', '2025-03-29', 15, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-03-29 06:40:54', 154, '2025-03-29 02:48:14', 0, NULL, 1),
(24589, 's.jagadeesh', '6', '6381855475', '7299579380', 'jaggiselvaraj@gmail.com', '2003-01-31', 22, '2', '2', 'malar', 'professional cook', 70.00, 1, 20.00, 25000.00, 'teynampet', 'teynampet', '2503290004', '1', '2', 'upload_files/candidate_tracker/86128381008_jaggiresumenew.pdf', NULL, '1', '2025-03-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-03-29 07:02:18', 154, '2025-03-29 03:28:03', 0, NULL, 1),
(24590, 'Somiya', '6', '9840313859', '6381855475', 'somiya220506@gmail.com', '2006-05-22', 18, '2', '2', 'Ezhilkandhan', 'Driver', 1000.00, 1, 20000.00, 21000.00, 'Kotturpuram', 'Kotturpuram', '2503290005', '1', '2', 'upload_files/candidate_tracker/96777971958_somiresumenew.pdf', NULL, '1', '2025-03-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-03-29 07:03:28', 154, '2025-03-29 02:47:07', 0, NULL, 1),
(24591, 'Nivetha Elangovan', '20', '8072870946', '8072870946', 'nivetha.pw@gmail.com', '2001-10-16', 23, '2', '2', 'Elangovan', 'Not working', 12000.00, 2, 264000.00, 350000.00, 'No:200 Bhavani nagar, salamagalam, padappai-601301', 'No:200 Bhavani nagar, salamagalam, padappai-601301', '2503290006', '45', '2', 'upload_files/candidate_tracker/47037945461_resume.pdf', NULL, '1', '2025-03-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-03-29 07:40:16', 154, '2025-03-29 03:28:59', 0, NULL, 1),
(24592, 'Mamtha', '20', '9952490593', '9952490593', 'mamthakannan14@gmail.com', '2004-04-14', 20, '2', '1', 'Sivakumar', 'Field executive', 20000.00, 4, 0.00, 18000.00, 'Kallakurichi', 'Sowcarpet', '2503290007', '1', '1', 'upload_files/candidate_tracker/48263611031_mamtharesume.pdf1.pdf', NULL, '1', '2025-03-29', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-03-29 07:44:58', 154, '2025-03-29 03:27:45', 0, NULL, 1),
(24593, 'M ARUNKUMAR', '6', '7010530167', '8925018751', 'Arunstella21@gmail.com', '2002-01-24', 23, '2', '2', 'Annalakshmi', 'House keeping', 30000.00, 0, 0.00, 16000.00, 'Ekkatuthangal', 'Ekkatuthangal', '2503290008', '1', '1', 'upload_files/candidate_tracker/70929811357_cv191743196395555.pdf', NULL, '1', '2025-03-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-03-29 09:11:13', 154, '2025-03-29 03:50:28', 0, NULL, 1),
(24594, 'Sajanmathew A', '5', '9894300501', '9361579919', 'Sajanmathew237@gmail.com', '2000-09-01', 24, '2', '2', 'Antony dass', 'Business Development Excecutive', 600000.00, 2, 324000.00, 420000.00, 'Villupuram', 'Chennai', '2503290009', '1', '2', 'upload_files/candidate_tracker/58063774663_sajanmathewRESUME.pdf', NULL, '1', '2025-03-31', 15, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55650', '55560', '1970-01-01', 1, '2025-03-29 12:57:33', 154, '2025-03-31 12:06:55', 0, NULL, 1),
(24595, 'Keerthigadevi M', '6', '7826083184', '9962211480', 'keerthimurugan32@gmail.com', '2004-08-01', 20, '2', '2', 'Murugan V', 'Chennai', 12000.00, 2, 0.00, 15000.00, 'No. 613 , R R Nagar 6 Th Street, Kodungaiyur.', 'No. 613 , R R Nagar 6 Th Street, Kodungaiyur.', '2503310001', '1', '1', 'upload_files/candidate_tracker/39888698201_65869573193099.pdf', NULL, '1', '2025-03-31', 0, '', '3', '59', '2025-04-10', 168000.00, '', '3', '2026-03-06', '2', 'Communication Ok Can be trained in our roles yet to complete her college can check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '2025-04-10', 1, '2025-03-31 04:24:11', 60, '2025-04-09 07:24:16', 0, NULL, 1),
(24596, 'Beula', '5', '9003976234', '8754739193', 'beulasb8754@gmail.com', '1999-09-17', 25, '2', '2', 'k.vidhubala', 'house wife', 150000.00, 2, 24751.00, 24000.00, 'tirupur', 'chennai', '2503310002', '1', '2', 'upload_files/candidate_tracker/38963552953_curriculumvitaebeula.pdf', NULL, '1', '2025-03-31', 0, '', '3', '59', '2025-04-07', 300000.00, '', '4', '2025-08-09', '1', 'Communication Ok an be trained in our roles and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55656', '55557', '2025-04-07', 1, '2025-03-31 04:31:52', 60, '2025-04-07 10:31:47', 0, NULL, 1),
(24597, 'Subasree S', '6', '9360891874', '9843030295', 'sreesuba2810@gmail.com', '2004-01-24', 21, '2', '2', 'Solaimuthu.K', 'Farmer', 60000.00, 1, 0.00, 13000.00, 'Perambalur', 'Perambalur', '2503310003', '1', '1', 'upload_files/candidate_tracker/59775590064_SubaKS.pdf', NULL, '1', '2025-03-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-03-31 04:47:06', 154, '2025-03-31 12:13:39', 0, NULL, 1),
(24598, 'jairus amram', '4', '8838379712', '9543333682', 'jairusamram7@gmail.com', '2001-09-15', 23, '3', '2', 'paul deveraj', 'elf bus', 13000.00, 1, 18500.00, 30000.00, 'jawahar road ramana nagar perambur', 'jawahar road ramana nagar perambur', '2503310004', '', '2', 'upload_files/candidate_tracker/88996466837_Resume.docx', NULL, '1', '2025-03-31', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '', '', '1970-01-01', 1, '2025-03-31 04:57:10', 154, '2025-03-31 12:34:43', 0, NULL, 1),
(24599, 'NAVEEN AKASH', '5', '6379741760', '9751555126', 'naveenakash50860@gmail.com', '2010-03-31', 0, '2', '2', 'Swaminathan', 'Farmer', 40000.00, 2, 22000.00, 25000.00, 'Ponnamaravathi', 'Ambattur', '2503310005', '1', '2', 'upload_files/candidate_tracker/98005780447_NaveenAkashresume.pdf', NULL, '1', '2025-03-31', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-03-31 05:35:47', 154, '2025-03-31 03:18:11', 0, NULL, 1),
(24600, 'Prasanth. G', '6', '7339002502', '9940419459', 'makeover.by.prashanth.2000@gmail.com', '2000-02-25', 25, '1', '2', 'Gunasekar', 'Truck mechanic', 15000.00, 2, 22000.00, 23000.00, '240 ambedkar nagar 4th street 2 nd cross', '240 ambedkar nagar 4th street 2 nd cross', '2503310006', '', '2', 'upload_files/candidate_tracker/17073352517_PrasanthResume.pdf', NULL, '1', '2025-03-31', 0, '55855', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was ok with communication but with his expectation of salary was more and not sure about his stability', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-03-31 05:55:15', 154, '2025-03-31 12:07:48', 0, NULL, 1),
(24601, 'Aasha', '6', '7358904352', '8148408712', 'welcomeaasha@gmail.com', '2001-10-25', 23, '2', '2', '???????????', 'Farmer', 48000.00, 2, 0.00, 27000.00, 'Thanjvur', 'Chennai,chormpet', '2503310007', '1', '2', 'upload_files/candidate_tracker/31870261270_aashacv.docx', NULL, '1', '2025-03-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-03-31 06:04:20', 153, '2025-03-31 04:14:24', 0, NULL, 1),
(24602, 'KALAISELVI U', '20', '7358790662', '7358657349', 'ks996831@gmail.com', '1998-02-25', 27, '2', '2', 'S UMAPATHY', 'TURNER', 10000.00, 1, 24500.00, 30000.00, 'CHENNAI', 'CHENNAI', '2503310008', '1', '2', 'upload_files/candidate_tracker/31893855633_KalaiselviResume1.docx', NULL, '1', '2025-03-31', 15, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-03-31 06:27:55', 154, '2025-03-31 03:17:48', 0, NULL, 1),
(24603, 'Nanthini', '6', '7708322740', '9363336504', 'nandhuinfo1995@gmail.com', '2010-03-31', 15, '2', '1', 'Jayabalaji', 'Business', 30000.00, 2, 21000.00, 24000.00, 'Kodungayur', 'Kodungayur', '2503310009', '1', '2', 'upload_files/candidate_tracker/64344349789_Nanthini1.pdf', NULL, '3', '2025-03-31', 45, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-03-31 07:36:02', 154, '2025-03-31 01:23:28', 0, NULL, 1),
(24604, 'V NIVEDHA', '6', '9566140415', '9566140415', 'nivedhavasudevan03@gmail.com', '2000-12-03', 24, '2', '2', 'V Ganga devi', 'House wife', 15000.00, 1, 17000.00, 21000.00, '17 pillayar kovil street kallikuppam ambattur', '1/9 Thilagavathi Street gangai nagar ambattur', '2503310010', '1', '2', 'upload_files/candidate_tracker/73486278958_CV2024121117074994.pdf', NULL, '3', '2025-04-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '4', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-03-31 08:26:36', 154, '2025-04-07 01:32:16', 0, NULL, 1),
(24605, '', '0', '9600057346', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503310011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-31 11:16:49', 0, NULL, 0, NULL, 1),
(24606, '', '0', '7094528110', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2503310012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-03-31 04:47:40', 0, NULL, 0, NULL, 1),
(24607, 'K suriyaprakash', '6', '9344546828', '7397221201', 'samvelsuriya856@gmail.com', '2002-12-19', 22, '2', '2', 'Anandhi', 'Nil', 17000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2504010001', '1', '1', 'upload_files/candidate_tracker/76839689520_Suriya.pdf', NULL, '1', '2025-04-01', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was good at communication and also interested in sales and have experience in terms of sales  we shall provide 15-16k as salary but he will join by next month due to he was in notice period kindly check with joining ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-01 04:45:39', 154, '2025-04-01 12:40:10', 0, NULL, 1),
(24608, 'Lisbon anthony', '6', '7299459496', '9566086121', 'immancruz267@gmail.com', '1998-07-17', 26, '2', '2', 'Sathiya ramesh', 'Southern railway', 80000.00, 2, 0.00, 22000.00, 'Puliyanthope', 'Madhavaram kodungayur', '2504010002', '1', '1', 'upload_files/candidate_tracker/64984009010_LisbonResume295.pdf', NULL, '1', '2025-04-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-01 04:50:26', 154, '2025-04-01 11:51:25', 0, NULL, 1),
(24609, 'Rajkumar', '6', '9600108113', '8838449306', 'kidrajkumar1122@gmail.com', '2001-10-19', 23, '2', '2', 'Parent', 'No', 15000.00, 3, 0.00, 18000.00, 'Kilpauk,cheppet', 'Kilpauk', '2504010003', '45', '1', 'upload_files/candidate_tracker/8082537062_IMG20231207WA000031.pdf', NULL, '1', '2025-04-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-01 04:52:13', 154, '2025-04-01 10:44:37', 0, NULL, 1),
(24610, 'sHANKARI a', '6', '7305821907', '8939162641', 'ajithshankari123@gmail.com', '2002-09-29', 22, '2', '1', 'J r shopping', 'Seal excutive', 30000.00, 1, 20000.00, 22000.00, 'Thiruvattur', 'Athipattu puthu nagar', '2504010004', '1', '2', 'upload_files/candidate_tracker/98661923233_ShankariResumeNew.pdf', NULL, '3', '2025-04-01', 0, '', '3', '59', '2025-04-07', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for our sales need to train from scractch can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-04-07', 1, '2025-04-01 05:39:39', 60, '2025-04-03 06:16:17', 0, NULL, 1),
(24611, 'Arun Kumar Thangamudi', '6', '9597947437', '9597947437', 'arunr15lover@gmail.com', '2004-06-21', 20, '2', '2', 'Mainavathi.T', 'Tailor', 20000.00, 1, 0.00, 16000.00, 'Erode', 'Ekkatuthangal', '2504010005', '50', '1', 'upload_files/candidate_tracker/78136952978_DOC20250318WA0000..pdf', NULL, '1', '2025-04-01', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is unfit for the sales profile. very slow. reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-04-01 06:09:48', 154, '2025-04-01 01:06:22', 0, NULL, 1),
(24612, 'santhana Rajan', '6', '9150947980', '9655226428', 'santhanamrajans@gmail.com', '2004-06-19', 20, '2', '2', '9655226428', 'Farmer', 20000.00, 3, 0.00, 15000.00, 'kallakurichi', 'Ekkatuthangala', '2504010006', '50', '1', 'upload_files/candidate_tracker/62587267456_RESUMEFORSANTHANAMNEW.pdf', NULL, '1', '2025-04-01', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And performance is good.Will Check With Him inthe training Period ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-04-01 06:14:19', 154, '2025-04-01 01:23:41', 0, NULL, 1),
(24613, 'santhoshkumar.s', '6', '8610579913', '', 'santhoshkumar11255@gmail.com', '2001-12-24', 23, '2', '2', 'Rajeswari', 'Home maker', 25000.00, 1, 0.00, 16000.00, '51,karikalan street, Karungalpalayam,erode.', 'Ekkatuthangal,chennai', '2504010007', '50', '1', 'upload_files/candidate_tracker/77503061386_SKa887.pdf', NULL, '1', '2025-04-01', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-04-01 06:14:28', 154, '2025-04-01 01:16:35', 0, NULL, 1),
(24614, 'Nandhini Rajagopal', '6', '6385863757', '6385863757', 'nanthini18122003@gmail.com', '2003-12-05', 21, '2', '2', 'Rajagopal', 'Weaving', 15000.00, 1, 0.00, 15000.00, 'Erode', 'Ekkatuthangal', '2504010008', '50', '1', 'upload_files/candidate_tracker/11153851592_NANDHINIRESUME.pdf', NULL, '1', '2025-04-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-01 06:14:29', 154, '2025-04-07 10:09:52', 0, NULL, 1),
(24615, 'Priyadharshini manickam', '6', '9360985982', '6381158311', 'priyadharshinimmba2024@jkkn.ac.in', '2004-06-04', 20, '2', '2', 'Manickam', 'Business', 25000.00, 1, 0.00, 15000.00, 'Namakkal', 'Ekkattuthangal', '2504010009', '50', '1', 'upload_files/candidate_tracker/73383998091_72e2441490de483c975b29c7ef33c3f3.pdf', NULL, '1', '2025-04-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-01 06:15:00', 154, '2025-04-07 10:09:37', 0, NULL, 1),
(24616, 'r s logesh kumar', '6', '8608601206', '8608501386', 'logeshkumar988@gmail.com', '2004-02-26', 21, '2', '2', 'sundaram n', 'load man', 23000.00, 1, 0.00, 15000.00, 'erode', 'ekatuthangal', '2504010010', '50', '1', 'upload_files/candidate_tracker/24684298340_LOGESH2.pdf', NULL, '1', '2025-04-01', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not suitable for sales profile. communication not good, not interested Appointmentxquots outside.reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-04-01 06:15:20', 154, '2025-04-01 01:21:04', 0, NULL, 1),
(24617, 'Meerapriya subramani', '6', '9487740825', '6380061510', 'Meerapriya@gmail.com', '2004-08-16', 20, '2', '2', 'subramani a', 'Driver', 23000.00, 3, 0.00, 15000.00, 'Salem', 'Ekkatuthangal', '2504010011', '50', '1', 'upload_files/candidate_tracker/86412980559_MeeraPriyaResume.pdf', NULL, '1', '2025-04-01', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-04-01 06:15:20', 154, '2025-04-01 03:28:56', 0, NULL, 1),
(24618, 'Pavithra Chandran', '6', '9384329489', '9677363578', 'Cpavithraee@gmail.com', '2003-10-02', 21, '2', '2', 'Chandran', 'DRIVER', 20000.00, 2, 0.00, 15000.00, 'Salem', 'Ekkattuthangal', '2504010012', '50', '1', 'upload_files/candidate_tracker/56798538418_PAVITHRARESUME1.pdf', NULL, '1', '2025-04-01', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate performance and communication is little bit not good.also his voice I low and not talk much more. She will not handle pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-04-01 06:15:24', 154, '2025-04-01 01:26:35', 0, NULL, 1),
(24619, 'Selva Bharathi P', '6', '6384356175', '9688456175', 'Selvabharathip05@gmail.com', '2003-12-05', 21, '2', '2', 'Pathmanaban K', 'Late', 1000.00, 1, 0.00, 15000.00, 'Erode', 'Ekkatuthangal', '2504010013', '50', '1', 'upload_files/candidate_tracker/50974386037_SelvaNew202503211629140000.pdf', NULL, '1', '2025-04-01', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, fresher 50/50 will try to understand 7 days of Training period. give me a fresher salary and confirm the joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-04-01 06:19:43', 154, '2025-04-01 01:25:35', 0, NULL, 1),
(24620, 'KAMALI L', '4', '6385135159', '8124526275', 'kamalikaran021@gmail.com', '2002-11-11', 22, '2', '2', 'Amutha', 'Tailor', 10000.00, 1, 14000.00, 16000.00, '29, Venkatesan 1st lane, Royapuram,chennai-13', '29, Venkatesan 1st lane, Royapuram chennai-13', '2504010014', '1', '2', 'upload_files/candidate_tracker/22806595906_Kamaliresume.pdf', NULL, '1', '2025-04-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-04-01 06:23:53', 154, '2025-04-01 04:28:44', 0, NULL, 1),
(24621, 'purusoth', '6', '6380003502', '8531081401', 'purusothn67@gmail.com', '1999-06-01', 25, '2', '2', 'Nagaraj', 'Farmer', 15.00, 0, 14500.00, 18500.00, 'Tiruvannamalai', 'Tiruvannamalai', '2504010015', '1', '2', 'upload_files/candidate_tracker/37799349859_DOC20250218WA0009..pdf', NULL, '3', '2025-04-01', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-04-01 07:18:48', 154, '2025-04-01 04:29:42', 0, NULL, 1),
(24622, 'Sureshkumar p', '6', '8270498907', '9360589253', 'kr4760382@gmail.com', '2004-06-10', 20, '2', '2', 'Palanisamy c', 'Former', 200000.00, 3, 16000.00, 18000.00, 'Ariyalur (dr) andipattakadu south Street, 621701', 'Ambattur ot', '2504010016', '1', '2', 'upload_files/candidate_tracker/491609031_P.Sureshkumar.pdf', NULL, '1', '2025-04-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-04-01 01:47:38', 154, '2025-04-08 12:30:49', 0, NULL, 1),
(24623, 'P.kavitha', '6', '7449076573', '9884116740', 'kavikarthika2361@gmail.com', '2000-11-26', 24, '2', '2', 'Kalavathi', 'Shop keeper', 700000.00, 3, 0.00, 15000.00, 'Ambattur ot', 'Ambattur ot', '2504020001', '1', '1', 'upload_files/candidate_tracker/40431369768_KavithaPResume.pdf', NULL, '1', '2025-04-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-04-02 03:51:45', 154, '2025-04-02 04:51:35', 0, NULL, 1),
(24624, 'Vaishnavi', '6', '9363988854', '', 'vaishnavimukesh09@gmail.com', '2001-06-15', 23, '2', '1', 'Mukesh', 'Security Guard', 28000.00, 3, 0.00, 15000.00, 'Korattur', 'Korattur', '2504020002', '1', '1', 'upload_files/candidate_tracker/7811405034_VAISHNAVIRESUME.pdf', NULL, '1', '2025-04-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Career Gap seems to confident and asked her to come for 2nd round post lunch but she didnt come', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-04-02 04:49:33', 154, '2025-04-02 04:53:08', 0, NULL, 1),
(24625, 's feroz', '6', '6369886218', '8939461551', 'syedferoza34@gmail.com', '2006-05-31', 18, '2', '2', 'syed nasir ali', 'computer opretor', 40000.00, 2, 0.00, 18000.00, 'Chennai', 'chennai', '2504020003', '1', '1', 'upload_files/candidate_tracker/5627899092_Note2Apr2025at104326AM.pdf', NULL, '1', '2025-04-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-04-02 05:02:18', 154, '2025-04-02 11:37:10', 0, NULL, 1),
(24626, 'Nithin k', '6', '7829247498', '6362910633', 'nithinrock444@gmail.com', '2003-07-01', 21, '2', '2', 'Kumar H', 'B.com', 25000.00, 1, 0.00, 22000.00, 'Kengeri', 'Kengeri', '2504020004', '1', '1', 'upload_files/candidate_tracker/96025188615_nithon12.pdf', NULL, '1', '2025-04-02', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'salary expectation 25k fresher', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55671', '55555', '1970-01-01', 1, '2025-04-02 06:08:22', 154, '2025-04-02 07:22:43', 0, NULL, 1),
(24627, 'Vignesh', '6', '9176955301', '7358265879', 'vivicky883@gmail.com', '2005-03-13', 20, '2', '2', 'Murugan', 'Daliy wager', 30.00, 1, 0.00, 18000.00, 'Teynampet', 'Teynampet', '2504020005', '1', '1', 'upload_files/candidate_tracker/19749696847_RESUMEM.VIGNESH.pdf', NULL, '1', '2025-04-02', 0, '', '3', '59', '2025-04-10', 192000.00, '', '3', '2025-05-14', '2', 'Communication Ok fresher for our roles need to train from scratch can give a try and check', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '2025-04-10', 1, '2025-04-02 06:17:53', 60, '2025-04-09 07:24:35', 0, NULL, 1),
(24628, 'Angeldilli', '6', '7092897412', '7358265879', 'Angeldilli2004@gmail.com', '2004-11-22', 20, '2', '2', 'Dilli', 'Auto driver', 50000.00, 3, 0.00, 18000.00, 'West tambaram', 'West', '2504020006', '1', '1', 'upload_files/candidate_tracker/62290087246_ANGEL.DRESUME.docx', NULL, '1', '2025-04-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-02 06:17:54', 154, '2025-04-02 12:55:19', 0, NULL, 1),
(24629, 'Kanimozhi dilli', '6', '7358265879', '7092897412', 'Kanimozhipreethi03@gmail.com', '2003-10-03', 21, '2', '2', 'Dilli', 'Auto driver', 50000.00, 3, 0.00, 18000.00, 'West tambaram', 'West tambaram', '2504020007', '1', '1', 'upload_files/candidate_tracker/89125237234_RESUMED.KANIMOZHI.pdf', NULL, '1', '2025-04-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-02 06:18:25', 154, '2025-04-02 12:55:50', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24630, 'Jeeva rajarajan', '4', '9952411683', '9944391683', 'jeevar7273708@gmail.com', '2003-07-14', 21, '2', '2', 'Rajarajan', 'Farmer', 8000.00, 1, 0.00, 13000.00, 'thanjavur', 'thanjavur', '2504020008', '1', '1', 'upload_files/candidate_tracker/16623320626_JeevaRResume2025.pdf', NULL, '1', '2025-04-03', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'intested in digital marketing only not suite', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-02 06:48:44', 154, '2025-04-03 10:31:25', 0, NULL, 1),
(24631, 'Anjum fathima', '6', '8608918684', '6381221696', 'Rahmananjum22@gmail.com', '2000-06-27', 24, '2', '2', 'Rahman hussain', 'Welder', 30000.00, 2, 13.00, 16.00, 'Royapettah', 'Royapettah', '2504020009', '1', '2', 'upload_files/candidate_tracker/76795519044_Resume3.pdf', NULL, '1', '2025-04-02', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, 3yrs experience in voice process, sales profile fresher, communication and confident level good, confirm the joining date xxamp salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-04-02 06:49:59', 154, '2025-04-02 01:31:43', 0, NULL, 1),
(24632, 'SOWMIYA M', '6', '6383048879', '6383048879', 'Sowmiyaa189@gmail.com', '2001-11-02', 23, '2', '2', 'Manokaran', 'Landry shop', 4.00, 1, 0.00, 20000.00, 'Ambattur', 'Ambattur', '2504020010', '1', '2', 'upload_files/candidate_tracker/5307135031_sowmiyaresume.pdf', NULL, '1', '2025-04-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-04-02 06:51:59', 154, '2025-04-07 01:33:23', 0, NULL, 1),
(24633, 'Srinivasan Maheswaran', '6', '9500591661', '9360315362', 'msrinivasan1592000@gmail.com', '2000-09-15', 24, '2', '2', 'Arunadevi', 'Tailor', 28000.00, 1, 234000.00, 300000.00, 'Theni', 'Chennai', '2504020011', '1', '2', 'upload_files/candidate_tracker/16681213134_Sriniresume.pdf', NULL, '1', '2025-04-02', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need time to confirm 5050 profile long constraint if he finds a room can give a try  sustainability questions\n', '5', '1', '', '1', '8', '', '2', '2025-04-05', '3', '5', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-04-02 07:51:52', 154, '2025-04-02 03:26:22', 0, NULL, 1),
(24634, '', '0', '9150534819', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504020012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-02 09:09:29', 0, NULL, 0, NULL, 1),
(24635, 'Aadhaiya', '6', '7299798906', '7299798906', 'Kaadhaiya99@gmail.com', '2001-09-10', 23, '2', '2', 'Mariyamma', 'House wife', 35000.00, 2, 0.00, 30000.00, 'No. 13 gandhipuram 2nd Street, Chennai -600017', 'No. 13 gandhipuram 2nd Street, Chennai - 600017', '2504020013', '1', '1', 'upload_files/candidate_tracker/36086743820_AadhaiyaCV.pdf', NULL, '1', '2025-04-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Career Gap not suitable for our roles will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '5', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-02 09:18:14', 154, '2025-04-02 05:47:09', 0, NULL, 1),
(24636, 'VINOTHKUMAR P', '6', '9150534819', '9092035591', 'VINOVINOTH1143@GMAIL.COM', '2000-04-09', 24, '3', '1', 'PERUMAL', 'DRIVER', 12000.00, 0, 18000.00, 18000.00, 'KANCHEEPUARM', 'CHENNAI', '2504020014', '', '2', 'upload_files/candidate_tracker/15115550490_1000093996.pdf', NULL, '1', '2025-04-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Long Distance Not clear with the communication will not sustain and handle our work pressure', '5', '1', '', '', '', '', '2', '1970-01-01', '3', '5', '', '', '', '', '55605', '55566', '1970-01-01', 154, '2025-04-02 02:58:31', 154, '2025-04-02 05:46:34', 0, NULL, 1),
(24637, 'Preethika R', '4', '9080163218', '9080163218', 'preethipreethu538@gmail.com', '1998-09-28', 26, '2', '1', 'Ajay Pramod N', 'Software Engineer', 10000.00, 1, 14000.00, 18000.00, 'Chennai', 'Chennai', '2504020015', '1', '2', 'upload_files/candidate_tracker/21063174599_RPREETHIKARESUME.pdf', NULL, '1', '2025-04-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have exp in collections but have sustainability with her previous exp only 1 company solid exp she has recently married need to hold sfor some time and based on other profile can try', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-04-02 12:56:10', 154, '2025-04-03 12:34:43', 0, NULL, 1),
(24638, 'Mohammed Ashik Mohamed iqbal', '6', '9360727564', '9361221262', 'mohammedash1995@gmail.com', '1995-06-11', 29, '2', '2', 'Nazimbanu', 'House wife', 18000.00, 0, 13000.00, 17000.00, 'Madipakkam', 'Madipakkam', '2504020016', '1', '2', 'upload_files/candidate_tracker/89222456548_AshikResumeinterview.pdf', NULL, '1', '2025-04-03', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'already worked 3 years in non voice and chat process.. Looking for non voice process.. communication not good and very slow', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-02 03:06:28', 154, '2025-04-03 12:33:49', 0, NULL, 1),
(24639, 'Sumithra', '6', '7200262830', '7200262830', 'Sumithraj141@gamil.com', '2003-12-09', 21, '2', '2', 'Chandra', 'House keeping', 30.00, 0, 0.00, 18.00, 'Chennai', 'Chennai', '2504020017', '1', '1', 'upload_files/candidate_tracker/69345257211_Sumithra.pdf', NULL, '1', '2025-04-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have exp in pharma only but communication Ok highest graducation is 10th only can give a try and check', '5', '1', '', '1', '8', '', '2', '2025-04-07', '3', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-04-02 04:10:12', 154, '2025-04-03 03:53:51', 0, NULL, 1),
(24640, 'Sharmilabegum jahaheer', '4', '8778126930', '8870892128', 'sharmilabegum195@gmail.com', '1998-10-17', 26, '2', '1', 'Roshan khan', 'Driver', 15000.00, 1, 10000.00, 14000.00, 'Marriammankovil, thanjavur', 'Marriammankovil, thanjavur', '2504030001', '1', '2', 'upload_files/candidate_tracker/66287126036_SHARMILABEGUMJRESUME1.docx', NULL, '1', '2025-04-03', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for telesales , have baby 1 year', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-03 04:17:15', 154, '2025-04-03 10:15:51', 0, NULL, 1),
(24641, 'Dinesh. J', '6', '7092147704', '9444100762', 'dinesharini2001@gmail.com', '2001-11-24', 23, '2', '2', 'Janakiraman', 'Supervisor', 3.50, 1, 0.00, 17.50, 'No 51 jJ nagar vadagarai redhills Chennai 52', 'No 51 jJ nagar vadagarai redhills Chennai 52', '2504030002', '1', '1', 'upload_files/candidate_tracker/76631832864_Dineshresume2025.pdf', NULL, '1', '2025-04-03', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'already worked in core for 2 years.. Location far around 23 kms from office... communication average and salary expectation is high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-03 04:33:53', 154, '2025-04-03 12:32:59', 0, NULL, 1),
(24642, 'Macthalin Tharsuse', '4', '8428697459', '', 'macthalintharsuse@gmail.com', '2001-07-08', 23, '2', '2', 'R. Tharsuse', 'Conductor', 200000.00, 2, 10000.00, 15000.00, 'THANJAVUR', 'THANJAVUR', '2504030003', '1', '2', 'upload_files/candidate_tracker/22406991829_MACRESUMEnew.pdf', NULL, '1', '2025-04-03', 0, '', '3', '59', '2025-04-07', 162000.00, '', '3', '2025-04-16', '2', 'Communication Ok have few months exp in calling can give a try and check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-04-07', 1, '2025-04-03 04:59:50', 60, '2025-04-04 04:48:42', 0, NULL, 1),
(24643, 'S Thiyagarajan', '6', '8667706361', '9176063811', 'thiyaga262@gmail.com', '2003-08-16', 21, '2', '2', 'Siva sankar', 'Garland shop', 3.50, 2, 0.00, 3.00, 'Chennai', 'Chennai', '2504030004', '1', '1', 'upload_files/candidate_tracker/6025684122_finalresume.pdf', NULL, '1', '2025-04-03', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '4', '6', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-03 06:08:49', 154, '2025-04-09 04:14:09', 0, NULL, 1),
(24644, 'Gomathi', '6', '9176937389', '7358541398', 'gomathijeeva7@gamil.com', '2000-10-20', 24, '2', '1', 'Kumaresan', 'Export import supervisor', 30000.00, 1, 18000.00, 20000.00, 'New Washmenerpet', 'Vyasarpadi', '2504030005', '1', '2', 'upload_files/candidate_tracker/24340244897_GomathiResume1.pdf', NULL, '1', '2025-04-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-03 07:31:09', 154, '2025-04-07 01:23:05', 0, NULL, 1),
(24645, 'vethamani a', '6', '8668012294', '8668012294', 'vethamanivethamani09@gmail.com', '2004-07-09', 20, '2', '2', 'Rani', 'House keeping', 20.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2504030006', '1', '1', 'upload_files/candidate_tracker/46570344740_GraphicDesignerResume202501072134500000.pdf', NULL, '1', '2025-04-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile fresher need to train from scratch getting married at the earliest currrent distance so long', '5', '1', '', '1', '8', '', '2', '2025-04-07', '3', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-04-03 09:08:10', 154, '2025-04-03 03:54:26', 0, NULL, 1),
(24646, 'Sumathi', '6', '9150743909', '7358354987', 'subhasuji1415@gmail.com', '1998-01-15', 27, '2', '2', 'Purushothaman', 'Late', 20000.00, 1, 18000.00, 23000.00, 'Maraimalai nagar', 'Maraimalai nagar', '2504030007', '1', '2', 'upload_files/candidate_tracker/38009229073_cv21741950519751.pdf', NULL, '1', '2025-04-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Freshr for Telesales thinking a lot about the target will not sustain and handle our work roles\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-03 09:15:38', 154, '2025-04-03 03:55:19', 0, NULL, 1),
(24647, 'David raj', '6', '7358354987', '9150743909', 'davidste3004@gmail.com', '2010-04-03', 0, '2', '2', 'Stephen', 'Daily wages', 20000.00, 0, 18000.00, 23000.00, 'Iyyapanthangal', 'Iyyapanthangal', '2504030008', '1', '2', 'upload_files/candidate_tracker/73335623625_DavidResume11.pdf', NULL, '1', '2025-04-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our sales roles ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-03 09:15:49', 154, '2025-04-03 03:55:45', 0, NULL, 1),
(24648, 'Harsh Bhansali', '4', '6382247205', '9360494883', 'harshchinu123456@gmail.com', '1996-10-06', 28, '2', '2', 'Rajesh bhansali', 'Working professional', 45000.00, 1, 29000.00, 32000.00, 'Chennai', 'Chennai', '2504030009', '1', '2', 'upload_files/candidate_tracker/73196914192_HARSHBHANSALIRESUME.pdf', NULL, '1', '2025-04-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-03 11:24:00', 154, '2025-04-04 03:48:27', 0, NULL, 1),
(24649, 'Ebinezer J', '11', '6380433534', '', 'ebinesarkai@gmail.com', '2002-05-05', 22, '2', '2', 'John A', 'Former', 15000.00, 1, 0.00, 7000.00, 'Dindigul', 'Dindigul', '2504030010', '1', '1', 'upload_files/candidate_tracker/28198824270_EbinezerJ.Resume..pdf', NULL, '1', '2025-04-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-04-03 01:54:29', 1, '2025-04-03 01:59:44', 0, NULL, 1),
(24650, 'Dhinakaran R', '6', '9150861107', '9840163705', 'dhinakar250@gmail.com', '2000-02-18', 25, '2', '2', 'ramesh babu', 'daily wages', 400000.00, 1, 15000.00, 15000.00, 'chennai', 'chennai', '2504040001', '50', '2', 'upload_files/candidate_tracker/79364050491_DhinakaranDefault.docx', NULL, '1', '2025-04-04', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-04 05:48:31', 153, '2025-04-04 02:52:18', 0, NULL, 1),
(24651, '521197419839', '4', '8903005076', '', 'martinasr5076@gmail.com', '2001-05-29', 23, '4', '2', 'Mary selva rani', 'Teacher', 300000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2504040002', '', '1', 'upload_files/candidate_tracker/45308936700_MARTININFANTRESUMEPDF.pdf', NULL, '1', '2025-04-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-04 06:32:03', 1, '2025-04-04 06:43:32', 0, NULL, 1),
(24652, 'Nithyanandhan V', '13', '9003242618', '', 'nithyanandhan068@yahoo.com', '1997-09-09', 27, '3', '2', 'Venkatesan G', 'Business', 17000.00, 1, 25000.00, 35000.00, 'Sriperumbudur, chennai', 'Sriperumbudur , chennai', '2504040003', '', '2', 'upload_files/candidate_tracker/27087208975_NithyDResume.pdf', NULL, '1', '2025-04-04', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-04 09:04:26', 153, '2025-04-04 02:53:00', 0, NULL, 1),
(24653, 'kishor vishal wk', '6', '7092270289', '', '19kishorvishal19@gmail.com', '2010-04-04', 0, '2', '2', 'william', 'driver', 20000.00, 1, 13000.00, 15000.00, 'soorammal street egmore chennai', 'soorammal street egmore Chennai', '2504040004', '1', '2', 'upload_files/candidate_tracker/14655749971_Kishor2.pdf', NULL, '1', '2025-04-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-04 09:46:18', 154, '2025-04-07 10:12:25', 0, NULL, 1),
(24654, 'D Arunkumar', '6', '9363404345', '9751808629', 'arunnura2602@gmail.com', '1998-05-07', 26, '2', '2', 'Duraipandi', 'Driver', 20000.00, 1, 14000.00, 15000.00, 'Kadayam', 'Kodambakkam', '2504040005', '1', '2', 'upload_files/candidate_tracker/3768054799_CopyofResume4.pdf', NULL, '1', '2025-04-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-04 09:46:28', 153, '2025-04-04 04:57:49', 0, NULL, 1),
(24655, 'TamilSelvi', '11', '9788690780', '9629431907', 'tamilselvidurai2201@gmail.com', '2001-01-22', 24, '2', '2', 'Durairaj T', 'Electrician', 15000.00, 2, 16000.00, 20000.00, 'Madurai', 'Madurai', '2504040006', '1', '2', 'upload_files/candidate_tracker/72151715845_TAMILSELVIDRESUME.pdf', NULL, '1', '2025-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-04-04 10:16:52', 1, '2025-04-04 10:53:04', 0, NULL, 1),
(24656, 'KARTHIGA SAKTHIVEL', '11', '7339602888', '7339602888', 'karthigakarthiga809@gmail.com', '2002-04-21', 22, '2', '2', 'Sakthivel B', 'Mechanic', 30000.00, 1, 18000.00, 22000.00, 'Madurai', 'Chennai', '2504040007', '1', '2', 'upload_files/candidate_tracker/64099806472_karthigaResume.docx', NULL, '1', '2025-04-09', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '3', '', '2', '1970-01-01', '1', '8', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-04 10:57:18', 154, '2025-04-09 04:20:47', 0, NULL, 1),
(24657, 'AKASHRAJ THIYAGARAJAN', '4', '8610044335', '9344116419', 'rockakash030@gmail.com', '2001-11-03', 23, '2', '2', 'J.THIYAGARAJAN', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Mig-178 Tamil university Barathi nagar Thanjavur', 'Mig-178 Tamil UniversityBarathi Nagar Thanjavur', '2504040008', '1', '1', 'upload_files/candidate_tracker/97478429118_t.akashrajresumebpo.pdf', NULL, '1', '2025-04-05', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-04 11:08:08', 154, '2025-04-05 09:57:01', 0, NULL, 1),
(24658, '', '0', '6385932342', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504050001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-05 08:28:16', 0, NULL, 0, NULL, 1),
(24659, 'Palani Bharathi Natarajan', '6', '9655393051', '9655393051', 'npalanibharathi4@gmail.com', '1999-06-24', 25, '2', '2', 'Natarajan', 'Farmer', 100000.00, 1, 18000.00, 20000.00, 'Thanjavur', 'Chennai', '2504060001', '1', '2', 'upload_files/candidate_tracker/22877047718_PalaniBharathiResume.pdf', NULL, '1', '2025-04-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-06 06:41:04', 154, '2025-04-07 01:20:33', 0, NULL, 1),
(24660, '', '0', '7094648847', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504070001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-07 04:00:04', 0, NULL, 0, NULL, 1),
(24661, 'SATHISH B', '6', '8189948056', '9597024264', 'sathishkarthi119@gmail.com', '2010-04-07', 0, '2', '2', 'Boopathi', 'Security guard', 18000.00, 1, 20000.00, 23000.00, 'Chengalpet', 'Chengalpet', '2504070002', '1', '2', 'upload_files/candidate_tracker/15216173142_SATHISHB.pdf', NULL, '1', '2025-04-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-07 04:25:32', 154, '2025-04-07 01:21:10', 0, NULL, 1),
(24662, 'Nithya .k', '13', '9444715190', '9790817558', 'Nithyakuppan16@gamil.com', '2001-11-16', 23, '3', '2', 'Kuppan', 'Sales man', 12000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2504070003', '', '1', 'upload_files/candidate_tracker/36697537424_Nithya1.pdf', NULL, '1', '2025-04-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-07 05:26:03', 154, '2025-04-07 11:21:43', 0, NULL, 1),
(24663, 'Ponkani Selvarasu', '13', '6381633200', '9965434341', 'ponkanicse@gmail.com', '2004-11-27', 20, '3', '2', 'Selvaraj', 'Farmer', 48000.00, 2, 0.00, 18000.00, 'Porur', 'Porur', '2504070004', '', '1', 'upload_files/candidate_tracker/63886262828_Ponkanijava2024.pdf', NULL, '1', '2025-04-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-07 05:27:48', 154, '2025-04-07 11:22:12', 0, NULL, 1),
(24664, 'MANIVEL MOORTHI', '31', '9894743296', '8220543096', 'manivel462001@gmail.com', '2010-04-07', 0, '3', '2', 'MOORTHI', 'Farmer', 20000.00, 1, 0.00, 20000.00, '1/147 East Street Sengappadai- 625704', 'No 3 East karikalam 1st Street addampakkam', '2504070005', '', '1', 'upload_files/candidate_tracker/14321310906_MANIVELResume.pdf', NULL, '1', '2025-04-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-07 05:31:33', 154, '2025-04-07 11:21:34', 0, NULL, 1),
(24665, 'Jeson', '6', '7200841508', '7200841508', 'jesonbbas1@gmail.com', '2003-03-25', 22, '2', '2', 'Nelson', 'Cooli', 10000.00, 1, 17000.00, 20000.00, '34 kali street puzhal Chennai 600066', 'Puzhal', '2504070006', '1', '2', 'upload_files/candidate_tracker/63271885127_CV2025012810593552.pdf', NULL, '2', '2025-04-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-07 05:40:45', 154, '2025-04-07 01:22:21', 0, NULL, 1),
(24666, '', '0', '9940133726', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504070007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-07 05:41:55', 0, NULL, 0, NULL, 1),
(24667, 'Dilip', '4', '9080923592', '7401333723', 'dilipand246@gmail.com', '2010-04-07', 0, '2', '2', 'Geetha', 'Nil', 20000.00, 1, 0.00, 22.00, 'Chennai Redhills', 'Chennai Redhills', '2504070008', '6', '2', 'upload_files/candidate_tracker/62727096430_DilipResume1.pdf', NULL, '1', '2025-04-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-07 05:45:40', 1, '2025-04-07 05:50:27', 154, '2025-04-07 12:15:37', 0),
(24668, '', '0', '7603986628', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504070009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-07 06:05:05', 0, NULL, 0, NULL, 1),
(24669, 'Dilip', '6', '9080923582', '7401333723', 'dilipand246@gmail.com', '2010-04-07', 0, '2', '2', 'Geetha', 'House wife', 150000.00, 1, 20000.00, 22000.00, 'Chennai Redhills', 'Chennai Redhills', '2504070010', '1', '2', 'upload_files/candidate_tracker/84870857473_DilipResume1.pdf', NULL, '1', '2025-04-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-07 06:09:24', 154, '2025-04-10 12:34:30', 0, NULL, 1),
(24670, 'Akash.s', '6', '9345854129', '8925019735', 'Sathishoman2016@gmail.com', '2003-06-09', 21, '2', '2', 'Sathishkumar .s', 'Chennai Corporation Cleaning Department', 20000.00, 1, 15000.00, 18000.00, 'No 40/30 periyar st valasaravakkam chennai 87', 'No 40/30 periyar street valasaravakkam chennai 87', '2504070011', '1', '2', 'upload_files/candidate_tracker/50954716541_AkashResume.pdf', NULL, '1', '2025-04-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-04-07 06:37:00', 154, '2025-04-07 04:23:29', 0, NULL, 1),
(24671, 'JAYASURYA M', '6', '9345916202', '7708681256', 'jayasurya1069@gmail.com', '2001-08-10', 23, '2', '2', 'MURUGAN S', 'Daily wages', 20000.00, 0, 17000.00, 20000.00, 'Mayiladuthurai', 'Chennai', '2504070012', '50', '2', 'upload_files/candidate_tracker/83913298596_Jayasuryaresume.pdf', NULL, '1', '2025-04-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-07 08:28:09', 154, '2025-04-08 11:53:52', 0, NULL, 1),
(24672, 'Yobesh devitraja', '6', '6381539100', '9442359588', 'yobeshappu@gmail.com', '2000-02-26', 24, '2', '2', 'Parimala', 'Photography and designing', 15000.00, 0, 0.00, 20000.00, 'kambainallur', 'Kambainallur', '2504070013', '1', '1', 'upload_files/candidate_tracker/63260059328_yobeshRESUME2.pdf', NULL, '1', '2025-04-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-07 08:38:40', 154, '2025-04-07 04:07:36', 0, NULL, 1),
(24673, 'Shaguftha.k', '6', '8807410432', '9843460432', 'safiyadanish32@gmail.com', '2004-06-01', 20, '2', '2', 'Kamar mohmood', 'Mosque work', 10000.00, 3, 0.00, 15000.00, 'Vellore', 'Chennai', '2504070014', '42', '1', 'upload_files/candidate_tracker/45033325079_ShagufthaResume.pdf', NULL, '1', '2025-04-07', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'COMMUNICATION NOT GOOD. GIVING ONLY ONE WORD ANSWER', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-07 08:50:13', 154, '2025-04-07 04:05:53', 0, NULL, 1),
(24674, 'Gayathri Murugan', '6', '9342528869', '9342528869', '45gayathri@gmail.com', '2004-04-23', 20, '2', '2', 'Murugan', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Tiruvannamalai', 'Chennai', '2504070015', '42', '1', 'upload_files/candidate_tracker/15614858359_Telecallresume.pdf', NULL, '1', '2025-04-07', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was good at communication and interested in sales ,she was in need of job and we shall provide 15-16k as salary and will join by next week', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-07 08:54:18', 154, '2025-04-07 04:05:00', 0, NULL, 1),
(24675, 'Kokila.M', '6', '9500249346', '7200841508', 'kokila071004@gmail.com', '2004-10-07', 20, '2', '2', 'Munusamy.V', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Tiruvannamalai', 'Chennai', '2504070016', '42', '1', 'upload_files/candidate_tracker/15500845003_DOC20250403WA0069..pdf', NULL, '1', '2025-04-07', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'COMMUNICATION NOT GOOD. GIVING ONLY ONE WORD ANSWER', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-07 08:57:08', 154, '2025-04-07 04:06:29', 0, NULL, 1),
(24676, '', '0', '9945319397', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504070017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-07 09:56:13', 0, NULL, 0, NULL, 1),
(24677, 'Syeda Asfiya Hussaini', '6', '8747845145', '9845724559', 'asfiyahussainisyeda@gmail.com', '2007-09-09', 17, '3', '2', 'Syed khaleelulla Hussaini', '2nd pu', 40000.00, 2, 0.00, 17000.00, '1st main ,2nd cross JHBCS layout', '1st Main ,2nd Cross JHBCS Layout', '2504070018', '', '1', 'upload_files/candidate_tracker/5323583874_AsfiyaResume.pdf', NULL, '1', '2025-04-07', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Suggested ctc 14k immediate joining', '5', '2', '', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-04-07 09:59:23', 154, '2025-04-08 12:08:04', 0, NULL, 1),
(24678, 'Archana A', '4', '9940176424', '', 'archanaaa435@gmail.com', '2001-03-23', 24, '2', '2', 'Arivalagan', 'Fresher', 85000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai ( perambur)', '2504070019', '1', '1', 'upload_files/candidate_tracker/83468876589_Archana.AResume.pdf', NULL, '1', '2025-04-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-04-07 10:41:40', 154, '2025-04-08 10:56:06', 0, NULL, 1),
(24679, 'B Ramya', '4', '7358108201', '8610743774', 'ramyaravi461@gmail.com', '2010-04-07', 0, '2', '1', 'Baskar', 'Medical Billing', 20000.00, 3, 0.00, 15000.00, 'Royapettah', 'Royapettah', '2504070020', '1', '1', 'upload_files/candidate_tracker/17818077601_RamyaResume2.pdf', NULL, '1', '2025-04-10', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-04-07 11:56:32', 153, '2025-04-10 11:09:46', 0, NULL, 1),
(24680, '', '0', '9042595904', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504070021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-07 12:59:12', 0, NULL, 0, NULL, 1),
(24681, '', '0', '9600566365', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504070022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-07 08:05:00', 0, NULL, 0, NULL, 1),
(24682, 'Manivel R', '6', '7904855012', '7904855012', 'Manivelabd143@gmail.com', '2000-07-12', 24, '2', '2', 'Alli rani', 'Farmer', 20000.00, 1, 0.00, 18000.00, '5/91 north street kallai karur-639110', 'Vadapalani', '2504080001', '1', '2', 'upload_files/candidate_tracker/25900825760_ImagetoPDF2025040811.56.25.pdf', NULL, '1', '2025-04-08', 6, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-08 06:02:44', 154, '2025-04-08 04:27:21', 0, NULL, 1),
(24683, 'Habibullah.A', '6', '7845777572', '9884146436', 'hu64684@gmail.com', '2000-12-18', 24, '2', '2', 'Father and mother', 'Auto driver', 40000.00, 2, 15000.00, 18000.00, '12/15 West cement road old watchmenpet Chennai 21', '12/15 West cement road old watchmenpet Chennai 21', '2504080002', '1', '2', 'upload_files/candidate_tracker/28425391103_MohammedHabibullah.pdf', NULL, '1', '2025-04-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-08 06:02:48', 154, '2025-04-08 04:28:36', 0, NULL, 1),
(24684, 'Balajiraj.k', '4', '9443675225', '7418957522', 'bhalaji0707@gmail.com', '2000-11-02', 24, '2', '2', 'Kannan', 'Cable operator', 25000.00, 1, 15000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2504080003', '1', '2', 'upload_files/candidate_tracker/47174686836_BALAJIRESUMEnew.pdf', NULL, '1', '2025-04-08', 20, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-08 07:13:22', 154, '2025-04-10 12:34:57', 0, NULL, 1),
(24685, 'SANJAY S', '6', '8220432183', '8220432183', 'sanjaybrendon07@gmail.com', '2002-07-29', 22, '2', '2', 'Julie S', 'Home maker', 250000.00, 1, 0.00, 20000.00, 'Perundurai,Erode', 'Villivakkam, Chennai', '2504080004', '1', '1', 'upload_files/candidate_tracker/30204946747_SanjayResume202501231527000000.pdf', NULL, '1', '2025-04-08', 0, '', '3', '59', '2025-04-15', 228000.00, '', '3', '2025-05-21', '2', 'Communication Ok fresher for our insurance sales have exp in real estate domain can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '2025-04-15', 1, '2025-04-08 07:53:36', 60, '2025-05-02 04:50:23', 0, NULL, 1),
(24686, 'ARAVINDHRAJ H', '13', '8870399637', '9080704944', 'aravindhrajhariharan@gmail.com', '1997-06-13', 27, '3', '2', 'Hari haran ps', 'Business', 20000.00, 1, 10800.00, 30000.00, 'Velachery', 'Velachery', '2504080005', '', '2', 'upload_files/candidate_tracker/87269099098_AravindhrajHariharanResume.pdf', NULL, '1', '2025-04-08', 15, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-08 09:07:37', 154, '2025-04-08 03:32:08', 0, NULL, 1),
(24687, 'Mohammed riyasdeen', '6', '9342973287', '9342973287', 'mdriyas1508@gmail.com', '2004-11-19', 20, '2', '2', 'Sarkkarai gani', 'Family business', 15000.00, 2, 0.00, 18000.00, 'Cuddalore dt panruti', 'Tambaram', '2504080006', '1', '2', 'upload_files/candidate_tracker/87875447748_riyasresume.pdf', NULL, '1', '2025-04-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-08 09:20:50', 154, '2025-04-08 04:25:47', 0, NULL, 1),
(24688, '', '0', '9843824344', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504080007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-08 10:38:05', 0, NULL, 0, NULL, 1),
(24689, '', '0', '6379254064', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504080008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-08 11:19:29', 0, NULL, 0, NULL, 1),
(24690, '', '0', '7019751723', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504080009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-08 01:26:24', 0, NULL, 0, NULL, 1),
(24691, 'Arivanantham', '6', '9894797026', '9790031184', 'Arivulucky3@gmail.com', '2001-05-01', 23, '2', '2', 'Mariyammal', '6TH STREET, MGR NAGAR , KODUNGAIYUR , CHENNAI', 30000.00, 1, 0.00, 20000.00, 'Alagapuri, A-kalayamputhur, palani', '6TH STREET, MGR NAGAR , KODUNGAIYUR . , CHENNAI', '2504090001', '1', '1', 'upload_files/candidate_tracker/79092520189_ARIVANANTHAMRESUME.pdf', NULL, '1', '2025-04-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-04-09 05:03:21', 154, '2025-04-09 11:37:26', 0, NULL, 1),
(24692, '', '0', '6382638554', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504090002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-09 06:09:32', 0, NULL, 0, NULL, 1),
(24693, 'Janani B', '6', '8220133756', '9626048568', 'jananiamu6@gmail.com', '2005-01-01', 20, '2', '2', 'Balamurugan T', 'Staff in a super market', 17000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2504090003', '1', '1', 'upload_files/candidate_tracker/92619023173_ModernProfessionalCVResume202503310130570000.pdf', NULL, '1', '2025-04-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, communication good, 7month personal loan Experience, Pls check distance. Confirm the joining and salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-04-09 06:32:28', 154, '2025-04-09 01:35:00', 0, NULL, 1),
(24694, 'prabhakar s', '6', '6382638554', '6382638554', 'prabhasrini5@gmail.com', '1997-04-28', 27, '2', '2', 'srimivasan', 'retired', 0.00, 3, 20000.00, 25000.00, 'erukancher  chennai', 'erukancher  chennai', '2504090004', '50', '2', 'upload_files/candidate_tracker/746141010_TapScanner230120251547.pdf', NULL, '1', '2025-04-09', 0, '', '3', '59', '2025-04-10', 300000.00, '', '3', '2025-04-19', '2', 'Communication Ok Can be trained in our roles have exp in bank bazaar need to check in our process', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55735', '55557', '2025-04-10', 154, '2025-04-09 12:12:01', 60, '2025-04-10 10:36:55', 0, NULL, 1),
(24695, 'Vincent Vijay G', '6', '9087852790', '', 'vincentvijay1228@gmail.com', '1999-04-28', 25, '2', '2', 'Leena Rose G', 'Coolie', 16000.00, 8, 0.00, 25000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2504090005', '1', '1', 'upload_files/candidate_tracker/12213237313_VINCENTVIJAYG18.pdf', NULL, '2', '2025-04-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-04-09 09:08:49', 153, '2025-04-10 11:11:06', 0, NULL, 1),
(24696, 'Karthikeyan', '13', '8940371648', '9629351161', 'Karthicbalu1207@gmail.com', '1998-07-12', 26, '3', '2', 'Balu', 'Former', 10000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'Chennai', '2504090006', '', '1', 'upload_files/candidate_tracker/41326402115_KarthikResume.pdf', NULL, '1', '2025-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-09 09:38:39', 1, '2025-04-09 09:47:19', 0, NULL, 1),
(24697, 'KIRTHICK.R', '13', '7397555314', '', 'kirthickram2002@gmail.com', '2002-05-04', 22, '3', '2', 'S.RAMAMOORTHI(late)', '-', 8000.00, 1, 0.00, 20000.00, 'ERODE', 'KOYAMBEDU', '2504090007', '', '1', 'upload_files/candidate_tracker/98617370885_Kirthick3.pdf', NULL, '1', '2025-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-09 09:40:15', 1, '2025-04-09 09:50:11', 0, NULL, 1),
(24698, 'Vignesh D', '13', '9361062592', '7695820018', 'Vigneshdhanavel00@gmail.com', '2002-03-09', 23, '3', '2', 'Dhanavel. S', 'Farmer', 23000.00, 1, 0.00, 21000.00, 'Marungur', 'Koyembedu', '2504090008', '', '1', 'upload_files/candidate_tracker/22388554588_Vignesh.pdf', NULL, '1', '2025-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-09 09:41:31', 1, '2025-04-09 09:50:11', 0, NULL, 1),
(24699, 'Hemantha M', '5', '9620241379', '8431332997', 'hemanthmnaik1904@gmail.com', '2010-04-09', 0, '2', '2', 'Mallinaik', 'Account executive', 25000.00, 1, 270000.00, 320000.00, 'Banglore', 'Davanagere', '2504090009', '1', '2', 'upload_files/candidate_tracker/4399277140_hemanthCV.docx', NULL, '1', '2025-04-09', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '5', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-04-09 09:43:53', 154, '2025-04-09 03:33:20', 0, NULL, 1),
(24700, '', '0', '7395818980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504090010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-09 12:25:53', 0, NULL, 0, NULL, 1),
(24701, 'MYthili', '4', '8838068779', '7904528141', 'mythili86201@gmail.com', '2001-06-08', 23, '2', '2', 'Karnan', 'Area sales manager', 30000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2504090011', '1', '1', 'upload_files/candidate_tracker/56198163496_resume.pdf', NULL, '1', '2025-04-10', 0, '', '3', '59', '2025-04-21', 162000.00, '', '1', '1970-01-01', '2', 'Communication Ok Can be trained in our roles need to check and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '2025-04-21', 1, '2025-04-09 01:28:18', 60, '2025-04-19 07:36:16', 0, NULL, 1),
(24702, 'janani k', '6', '7305873251', '9962134688', 'janukaviya123@gmail.com', '2001-02-21', 24, '2', '2', 'kannan m', 'plumber', 30000.00, 1, 16000.00, 20000.00, 'thiruverkadu', 'thiruverkadu', '2504100001', '45', '2', 'upload_files/candidate_tracker/72290422780_JANANI20251.pdf', NULL, '1', '2025-04-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was ok with communication and also interested and experienced in sales and she was also ok for immediate joining and we shall provide 16-17k as salary ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-10 04:50:17', 154, '2025-04-10 12:41:26', 0, NULL, 1),
(24703, 'Praveena R', '5', '9941161766', '', 'praveenaramesh2019@gmail.com', '2003-05-19', 21, '2', '2', 'Ponselvi R', 'Tailor', 25000.00, 1, 19750.00, 23000.00, 'Royapuram', 'Royapuram', '2504100002', '45', '2', 'upload_files/candidate_tracker/68513760375_PRAVEENA.RRESUME1.docx', NULL, '1', '2025-04-10', 0, '', '3', '59', '2025-04-15', 276000.00, '', '3', '2025-04-17', '2', 'Communication Ok have exp in Muthoot finance can be trained in our insurance roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '2025-04-15', 1, '2025-04-10 04:51:31', 60, '2025-04-12 06:50:59', 0, NULL, 1),
(24704, 'V.jothika', '33', '8122385323', '8939653125', 'vjothikavjothika@gmail.com', '2002-12-08', 22, '2', '2', 'K.velu', 'Cooli', 27000.00, 1, 0.00, 15000.00, 'Rk Nagar 2nd Street korukkupet Chennai', 'Rk nagar 2nd Street korukkupet Chennai', '2504100003', '45', '1', 'upload_files/candidate_tracker/1812074785_jothikaRESUME1.pdf', NULL, '1', '2025-04-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-10 04:54:33', 1, '2025-04-10 05:25:31', 0, NULL, 1),
(24705, 'BHARATH MANIKANDAN', '4', '7708879049', '7708883080', 'bharathlokey466@gmail.com', '2003-01-23', 22, '2', '2', 'Manikandan N', 'Cab Driver', 60000.00, 1, 14000.00, 15000.00, 'Guduvanchery', 'Guduvanchery', '2504100004', '1', '2', 'upload_files/candidate_tracker/69887210989_Resume.pdf', NULL, '1', '2025-04-10', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-04-10 05:26:12', 153, '2025-04-10 12:38:24', 0, NULL, 1),
(24706, 'Mohammed Faizal O M F', '6', '9686199373', '9448796355', 'Mdfaizal0097@gmail.com', '1997-07-24', 27, '2', '2', 'Faizur Rehaman', 'Business', 20000.00, 1, 18000.00, 25000.00, 'Bangalore', 'Bangalore', '2504100005', '1', '2', 'upload_files/candidate_tracker/34049542608_faizalsalesreusmepdf1.pdf', NULL, '1', '2025-04-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-04-10 07:51:06', 1, '2025-04-12 07:20:48', 0, NULL, 1),
(24707, '', '0', '9003068384', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504100006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-10 08:43:51', 0, NULL, 0, NULL, 1),
(24708, 'Ragul B', '13', '9345657149', '', 'ragulbalaji17@gmail.com', '2003-01-27', 22, '3', '2', 'Balaji', 'Farmer', 15000.00, 1, 0.00, 2.50, 'Mayiladuthurai', 'Karapakam', '2504100007', '', '1', 'upload_files/candidate_tracker/47676972044_RAGULBResume.pdf', NULL, '1', '2025-04-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-10 09:03:08', 1, '2025-04-10 09:09:17', 0, NULL, 1),
(24709, 'Gopinath m t', '6', '9940499563', '9176600291', 'gopijo44@gmail.com', '1997-04-04', 28, '2', '2', 'thiruvengadam', 'record assistant', 40000.00, 2, 23000.00, 27000.00, 'Chennai', 'Chennai', '2504100008', '1', '2', 'upload_files/candidate_tracker/40149465468_Gopinathresume.pdf', NULL, '1', '2025-04-12', 15, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for FSC rold \n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-04-10 10:44:38', 154, '2025-04-12 02:45:14', 0, NULL, 1),
(24710, 'Samkumar R', '4', '7397573096', '', 'samkumartamizhan444@gmail.com', '2004-06-21', 20, '2', '2', 'RAMU N', 'FARMER', 20000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2504100009', '1', '1', 'upload_files/candidate_tracker/78436408505_sam.pdf', NULL, '1', '2025-04-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-04-10 12:32:11', 1, '2025-04-10 12:37:05', 0, NULL, 1),
(24711, '', '0', '9361179167', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504100010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-10 01:10:32', 0, NULL, 0, NULL, 1),
(24712, 'deepa s', '6', '8344654178', '', 'deepavasan60@gmail.com', '1999-06-19', 25, '5', '1', 'udhayakumar s', 'business', 50000.00, 1, 22500.00, 30000.00, 'maraneri sivakasi.', 'chennai', '2504100011', '', '2', 'upload_files/candidate_tracker/89550789551_DeepaSresume2.pdf', NULL, '1', '2025-04-14', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-10 02:07:48', 1, '2025-04-10 02:15:52', 0, NULL, 1),
(24713, 'Wajeeha Sulthana A', '6', '8248790076', '8624879007', 'wajeeha5283@gmail.com', '2004-10-04', 20, '2', '2', 'Ajaz A', 'Office Staff', 300000.00, 1, 0.00, 15000.00, 'Royapettah', 'Royapettah', '2504110001', '1', '1', 'upload_files/candidate_tracker/13038958707_Resume.pdf', NULL, '1', '2025-04-11', 0, '', '3', '59', '2025-04-28', 180000.00, '', '5', '1970-01-01', '1', 'Communication Ok seems to be slow but can be trained in our roles and try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-04-28', 1, '2025-04-11 05:33:28', 60, '2025-04-26 07:03:23', 0, NULL, 1),
(24714, 'Nandakumar', '6', '7338891312', '7338891312', 'snanda13122001@gmail.com', '2001-12-13', 23, '2', '2', 'Parents', 'Driver', 20000.00, 1, 0.00, 18000.00, 'Arumbakkam', 'Arumbakkam', '2504110002', '1', '1', 'upload_files/candidate_tracker/46599967527_NANDACV.doc', NULL, '1', '2025-04-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-11 05:41:33', 154, '2025-04-11 12:16:45', 0, NULL, 1),
(24715, 'Tamilarasan', '13', '8610884606', '9626633413', 'ctamilarasan445@gmail.com', '2003-04-01', 22, '5', '2', 'Chennaiyan', 'Labour', 25000.00, 2, 0.00, 25000.00, '2/71,bathrikaur(vil),MNGunda(pt),Tirupathir(Tk&Dt)', 'Chennai,kavangarai', '2504110003', '', '1', 'upload_files/candidate_tracker/6105135668_Tamilarasan1.pdf', NULL, '1', '2025-04-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '4', '6', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-11 05:52:41', 154, '2025-04-11 11:35:07', 0, NULL, 1),
(24716, 'Siva', '2', '6382090639', '6382090639', 'sivasimmons561@gmail.com', '2001-01-23', 24, '3', '2', 'Murugan', 'Security', 300000.00, 1, 200000.00, 380000.00, 'Chennai', 'Chennai Velachery', '2504110004', '', '2', 'upload_files/candidate_tracker/6856926353_SIVAMresume3.pdf', NULL, '1', '2025-04-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-11 05:54:20', 154, '2025-04-11 11:31:31', 0, NULL, 1),
(24717, 'Nazeeba abdul malick', '6', '9786921505', '8248807340', 'nazeeba.1097@gmail.com', '1997-02-10', 28, '2', '1', 'Irffan', 'Incharge in AK', 500000.00, 0, 0.00, 25000.00, 'Morapur, Dharmapuri', 'Sandhasahip street, meesapet market, Rayapetta', '2504110005', '1', '1', 'upload_files/candidate_tracker/68355595562_NazeebaResume.docx', NULL, '1', '2025-04-11', 0, '', '3', '59', '2025-04-21', 252000.00, '', '3', '2025-09-15', '2', 'Communication Ok Need to train from Scratch have exp in teaching', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55735', '55557', '2025-04-21', 1, '2025-04-11 06:12:31', 154, '2025-05-29 11:14:24', 0, NULL, 1),
(24718, 'Buvaneshwaran', '4', '9342314216', '9487710674', 'buvaneshmurugan95@gmail.com', '2000-05-09', 24, '2', '2', 'Murugan', 'Coolie', 15000.00, 2, 0.00, 20000.00, 'Tambaram', 'Tambaram', '2504110006', '1', '1', 'upload_files/candidate_tracker/18277262113_BuvaneshRESUME12.pdf', NULL, '1', '2025-04-12', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'giving only one word answer and communicatio not good', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-11 12:44:15', 154, '2025-04-12 01:20:04', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24719, 'Michael', '6', '9940358302', '7448922351', 'mich97244@gmail.com', '2002-10-16', 22, '2', '2', 'Velu. B', 'Auto Drive', 120000.00, 0, 14000.00, 16000.00, 'No. 5b puzhal murugesan street perambur Chennai 12', 'No. 5b puzhal murugesan street perambur chennai 12', '2504120001', '1', '2', 'upload_files/candidate_tracker/475572707_NewresumeDOC20241204WA0016..pdf', NULL, '3', '2025-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1027', '0', '0', '0', NULL, 1, '2025-04-12 02:19:11', 1, '2025-04-12 02:28:21', 0, NULL, 1),
(24720, 'Floramary.s', '6', '6380035542', '7395964683', 'florasagayam61@gmail.com', '2001-08-19', 23, '2', '2', 'Father', 'Driver', 20000.00, 1, 20000.00, 23000.00, 'vyasarpadi, Chennai -39', 'Vyasarpadi, Chennai -39', '2504120002', '1', '2', 'upload_files/candidate_tracker/46720845219_FLORAMARY9.pdf', NULL, '1', '2025-04-12', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was good at communication and have experience at sales and we shall provide at 15-16k as salary and also ok for immediate joining', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-12 05:39:17', 154, '2025-04-24 06:56:31', 0, NULL, 1),
(24721, 'V ashwini', '6', '6374380631', '6374380631', 'Www.achukutty29@gmail.com', '1999-09-29', 25, '2', '2', 'Santhi', 'Housewife', 30000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2504120003', '1', '2', 'upload_files/candidate_tracker/12625199478_812.docx', NULL, '1', '2025-04-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok communication good, exp candidate \nConfirm the joining date xxamp Salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-04-12 05:39:21', 154, '2025-04-12 02:33:32', 0, NULL, 1),
(24722, 'Maqbul Nazeef A', '6', '7094265127', '9787923851', 'maqbulnazeef1@gmail.com', '2000-11-26', 24, '2', '2', 'Adam Malik', 'Buisness', 20000.00, 1, 0.00, 15000.00, 'Puduvalasai,Ramanathapuram', 'ST Thomas mount', '2504120004', '1', '1', 'upload_files/candidate_tracker/12059875490_CV2024110916494476.pdf', NULL, '1', '2025-04-12', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication not good, Looking for IT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-12 07:34:17', 154, '2025-04-12 03:29:14', 0, NULL, 1),
(24723, 'mohammed faizal', '6', '9686199373', '9686199373', 'mdfaizal0097@gmail.com', '1997-04-27', 27, '2', '2', 'faiur rehaman', 'business', 20000.00, 1, 18000.00, 20000.00, 'wahnermpet', 'washernmpet', '2504120005', '1', '2', '0', NULL, '1', '2025-04-12', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'having exp of 1 year in teleperformance in  sales bangalore. not comfortable with tamil speaking, Born and bought up bvangalore for father buisness come to chennai.. expecting kannada, hindi voice process.', '5', '1', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 154, '2025-04-12 01:05:27', 154, '2025-04-12 02:43:33', 0, NULL, 1),
(24724, 'Dhanesh', '6', '8838746610', '', 'lonelynobita50@gmail.com', '1998-04-18', 26, '2', '2', 'Palani', 'Nil', 25000.00, 2, 0.00, 18000.00, 'Sholinganallur', 'Sholinganallur', '2504120006', '1', '1', 'upload_files/candidate_tracker/94262643993_a98f588e325548f8bb6722712afd259c.pdf', NULL, '1', '2025-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-04-12 09:24:56', 1, '2025-04-12 09:34:35', 154, '2025-04-12 03:12:08', 0),
(24725, 'dhanesh p', '6', '8838746610', '8838746610', 'lonclynobita50@gmail.com', '1998-04-18', 26, '2', '2', 'palani', 'nil', 25000.00, 2, 18000.00, 18000.00, 'perumbakkam', 'perumbakkam', '2504120007', '1', '2', 'upload_files/candidate_tracker/79318026453_10000964011.pdf', NULL, '1', '2025-04-12', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales team', '5', '1', '', '', '', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 154, '2025-04-12 03:08:54', 154, '2025-04-12 03:31:30', 0, NULL, 1),
(24726, '', '0', '9655831259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504130001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-13 06:36:02', 0, NULL, 0, NULL, 1),
(24727, 'waqar ahmed khan . n', '4', '6380400784', '', 'nwaqarak24@gmail.com', '2002-05-25', 22, '2', '2', 'naushad ahmed khan', 'auto driver', 19000.00, 2, 0.00, 18000.00, 'baba Flats ballard street perambur chennai', 'baba flats ballard street perambur chennai', '2504150001', '1', '1', 'upload_files/candidate_tracker/4910807079_CV2025040720140385.pdf', NULL, '2', '2025-04-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-04-15 04:53:41', 154, '2025-04-15 06:53:31', 0, NULL, 1),
(24728, 'SATHISH KUMAR P', '16', '7448655314', '9677381723', 'shakthikumar480@gmail.com', '1995-11-04', 29, '1', '1', 'Mrs Yuva Rani', 'House wife', 15009.00, 1, 6.00, 33000.00, 'Chennai', 'Chennai', '2504150002', '', '2', 'upload_files/candidate_tracker/47091989957_CURRICULAMVITAEsathish11.pdf', NULL, '1', '2025-04-15', 0, 'C99096', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-15 05:56:10', 104, '2025-04-15 07:06:32', 0, NULL, 1),
(24729, 'Aruvu Jayanthi', '4', '6382041348', '9043297484', 'sonikrishsam@gmail.com', '1999-05-18', 25, '2', '1', 'A.Sathish', 'Marketing', 2.50, 2, 17000.00, 23000.00, 'No 36 East namachivaya puram choolaimedu chennai', 'No 36 East namachivaya puram choolaimedu chennai', '2504150003', '1', '2', 'upload_files/candidate_tracker/97957135903_ARUVUJAYANTHI01200.pdf', NULL, '3', '2025-04-15', 0, '', '3', '59', '2025-04-21', 216000.00, '', '3', '2025-04-22', '2', 'Communication Ok have exp in happy calling can give a try and check in training final round gokul sir', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1028', '', '55605', '55566', '2025-04-21', 1, '2025-04-15 06:43:31', 60, '2025-04-19 07:32:16', 0, NULL, 1),
(24730, 'Sharan chanderapirakash', '6', '7200784165', '6369343805', 'Sharanchandraprakash12@gmail.com', '1998-12-12', 26, '2', '2', 'chandraprakash', 'bussiness', 180000.00, 0, 27000.00, 27000.00, 'trichy', 'trichy', '2504150004', '1', '2', 'upload_files/candidate_tracker/9761645295_resume.122.pdf', NULL, '1', '2025-04-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-15 07:35:45', 104, '2025-04-15 07:06:57', 0, NULL, 1),
(24731, 'D Roshini priya', '6', '7358688233', '9444903908', 'nvroshinipriya@gmail.com', '2004-02-12', 21, '2', '2', 'NV Dhansekaran', 'Retired postman', 13000.00, 1, 0.00, 15000.00, 'Chennai', 'Thiruvottiyur', '2504150005', '1', '2', 'upload_files/candidate_tracker/26258411215_DRoshiniPriya.docx', NULL, '1', '2025-04-16', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-04-15 08:44:21', 154, '2025-04-16 12:50:26', 0, NULL, 1),
(24732, 'DIVYA R', '6', '9884217840', '9884217840', 'divdivya1110@gmail.com', '2000-04-06', 25, '2', '2', 'E Ravi Kumar', 'Mechanic', 90000.00, 2, 20000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2504150006', '1', '2', 'upload_files/candidate_tracker/7603658993_RDivyaResume.2025.pdf', NULL, '1', '2025-04-16', 0, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55735', '55557', '1970-01-01', 1, '2025-04-15 05:46:23', 154, '2025-04-16 02:36:01', 0, NULL, 1),
(24733, 'suganthi Mohan', '4', '8610384691', '', 'suganthimohan899@gmail.com', '2003-05-15', 21, '2', '2', 'Punithavalli', 'House wife', 17000.00, 0, 17000.00, 19000.00, 'Thanjavur', 'Thanjavur', '2504160001', '1', '2', 'upload_files/candidate_tracker/89754539954_RESUME2024111.doc', NULL, '1', '2025-04-16', 20, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile completed BCOM-- first 6 month work in nalam agency in thanjavur brother business for 6  month..company will shift to kumbakonam so left the job and joined in mallika furniture for 1 year,,,due to timing issured need to releived the job...father passed out...mother oly ....suganthi is the only care taker in family...expected 15k...have laptop and imeediate joining kindly check once and confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-16 04:35:36', 154, '2025-04-16 10:20:34', 0, NULL, 1),
(24734, 'naveena', '4', '7094032926', '9626718473', 'www.tnaveena2000@gmail.com', '2000-12-17', 24, '2', '2', 'thirugananam vijaya', 'kuli', 35000.00, 1, 17800.00, 18000.00, 'thanjavur', 'thanjavur', '2504160002', '1', '2', 'upload_files/candidate_tracker/2555217969_RESUME2024111.doc', NULL, '1', '2025-04-16', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-16 04:36:13', 154, '2025-04-16 12:23:32', 0, NULL, 1),
(24735, 'Sivasankari A', '4', '8220854287', '9342098020', 'sivasankarisiva69@gmail.com', '2001-02-21', 24, '2', '2', 'Alagesan G', 'Farmar', 8000.00, 2, 0.00, 15.00, 'Kumbakonam', 'Kumbakonam', '2504160003', '1', '2', 'upload_files/candidate_tracker/22943572874_resumeSivasangari1.docx', NULL, '1', '2025-04-16', 0, '', '3', '59', '2025-04-21', 180000.00, '', '3', '2025-04-23', '1', 'Communication Ok have exp in calling not relevant one can give a try and check', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-04-21', 1, '2025-04-16 04:41:24', 154, '2025-04-23 09:29:07', 0, NULL, 1),
(24736, 'Swetha.J', '6', '9043557681', '9789830262', 'swethapaapu160@gmail.com', '2002-08-19', 22, '2', '2', 'Sumitha.J', 'Cooli', 10000.00, 0, 13000.00, 15000.00, 'Chennai', 'Thiruvottriyur', '2504160004', '1', '2', 'upload_files/candidate_tracker/12892565498_JSWETHAgoodcv.com211024.100947.pdf', NULL, '1', '2025-04-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-16 04:44:10', 154, '2025-04-16 01:33:28', 0, NULL, 1),
(24737, '', '0', '7358311845', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504160005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-16 04:45:04', 0, NULL, 0, NULL, 1),
(24738, 'Mohamed Musthaba Majith Asankani', '6', '6384710400', '9791170426', 'mohamedmajith61@gmail.com', '2003-11-03', 21, '2', '2', 'Bakurdeen', 'Business', 60000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2504160006', '1', '1', 'upload_files/candidate_tracker/67424552387_Musthafaresume.pdf', NULL, '1', '2025-04-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-16 05:03:09', 154, '2025-04-16 01:33:45', 0, NULL, 1),
(24739, 'SREEMATHI A', '6', '7358311845', '9840204216', 'SREEMAAMUL@GMAIL.COM', '2010-04-16', 0, '2', '2', 'AMULRAJ L', 'DAILY WAGES', 10000.00, 1, 0.00, 15000.00, 'WASHERNEMPET', 'WASHERNEMPET', '2504160007', '1', '1', 'upload_files/candidate_tracker/20337729468_sreemathiresume.pdf', NULL, '1', '2025-04-16', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '', '', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 154, '2025-04-16 10:52:32', 154, '2025-04-16 01:31:26', 0, NULL, 1),
(24740, 'Swetha b', '6', '8438581394', '9344958485', 'swethatennu@gmail.com', '2004-04-10', 21, '2', '2', 'jothimani', 'daily wage', 20000.00, 2, 15000.00, 17000.00, 'Tiruppur', 'Chennai', '2504160008', '45', '2', 'upload_files/candidate_tracker/13471692145_ResumeSwetha.pdf', NULL, '1', '2025-04-16', 0, '', '3', '59', '2025-04-21', 189000.00, '', '1', '1970-01-01', '2', 'communication ok can be trained in our roles need to check in training and confirm Internal transfer from Babu to Rajasekar', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '2025-04-21', 1, '2025-04-16 07:44:13', 60, '2025-04-21 11:22:17', 0, NULL, 1),
(24741, 'PAULRAJ P', '13', '7305435776', '9790937950', 'paulrajpaulraj246@gmail.com', '2002-10-25', 22, '3', '2', 'SUMATHI P', 'Daily wages', 18000.00, 1, 0.00, 25000.00, 'Vyasarpadi,Chennai', 'Vyasarpadi, Chennai', '2504160009', '', '1', 'upload_files/candidate_tracker/13483154202_PAULRAJFULLSTACKDEVELOPER.pdf', NULL, '1', '2025-04-16', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-16 08:33:37', 154, '2025-04-16 03:43:06', 0, NULL, 1),
(24742, 'Karen christina', '4', '7397260841', '', 'karenchris1705@gmail.com', '2003-10-05', 21, '2', '2', 'C. Philip', 'Lic agent', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2504160010', '1', '1', 'upload_files/candidate_tracker/9861338967_karenchristinaresume.pdf', NULL, '1', '2025-04-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-04-16 09:42:32', 1, '2025-04-16 09:46:41', 0, NULL, 1),
(24743, '', '0', '6379596802', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504160011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-16 10:31:36', 0, NULL, 0, NULL, 1),
(24744, 'SHAFIYA FATHIMA', '4', '9952012639', '9952012639', 'shafiyashifa678@gmail.com', '2001-12-15', 23, '2', '2', 'SYED INAYETHULLA', 'DAILY WORK', 18000.00, 1, 0.00, 15000.00, 'VIRUGAMBAKKAM', 'VIRUGAMBAKKAM', '2504160012', '1', '1', 'upload_files/candidate_tracker/75655623709_DOC20240428WA0000.pdf', NULL, '1', '2025-04-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-04-16 03:09:59', 154, '2025-04-17 10:56:47', 0, NULL, 1),
(24745, '', '0', '7550202546', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504170001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-17 05:09:26', 0, NULL, 0, NULL, 1),
(24746, 'asmin parveen', '6', '7550202546', '7550202546', 'singleyasmin26@gmail.com', '2004-02-22', 21, '2', '2', 'abdul salam ansari', 'emploee', 0.00, 0, 0.00, 18000.00, 'chrompet', 'chrompet', '2504170002', '1', '1', 'upload_files/candidate_tracker/81518185623_A.YASMINPARVEEN.pdf', NULL, '1', '2025-04-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 154, '2025-04-17 10:55:45', 154, '2025-04-17 11:38:56', 0, NULL, 1),
(24747, 'S.HASEENA BANU', '4', '8667851531', '8870973527', 'Haseenabanu2105@gmail.com', '1997-05-21', 27, '2', '1', 'Syed abdupla', 'Sale', 22000.00, 1, 13000.00, 14000.00, 'Thanjavur', 'Thanjavur', '2504170003', '1', '2', 'upload_files/candidate_tracker/12829435042_HASEENABANUSRESUME.pdf', NULL, '1', '2025-04-17', 1, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-17 05:34:18', 154, '2025-04-18 12:57:48', 0, NULL, 1),
(24748, 'Christopher V', '8', '7305715415', '6385122401', 'christovincent2004@gmail.com', '2010-04-17', 0, '2', '2', 'Elizabeth Rani V', 'House keeping', 16000.00, 1, 15000.00, 25000.00, 'Kanagam, Taramani, Chennai', 'Kanagam, Taramani, Chennai', '2504170004', '1', '2', 'upload_files/candidate_tracker/20562462789_CHRISTOPHERVgoodcv.com290125.101143.pdf', NULL, '1', '2025-04-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '4', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-04-17 06:02:27', 154, '2025-04-17 02:48:49', 0, NULL, 1),
(24749, 'Raghulsanjay.v', '6', '6380357947', '6380357947', 'rahulsanjay846@gmail.com', '2005-02-01', 20, '2', '2', 'Venkatesh', 'Automen', 11000.00, 0, 0.00, 25000.00, 'Triplicane chennai', 'Triplicane chennai', '2504170005', '27', '1', 'upload_files/candidate_tracker/98722076671_resumeforrahul.pdf', NULL, '1', '2025-04-17', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', 'MAY END ( YET TO COMPLETE EXAM)', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-04-17 06:08:23', 154, '2025-04-17 02:47:47', 0, NULL, 1),
(24750, 'MUNNANGI DEEPAK RAJU', '6', '6301935892', '7093271944', 'rajudeepak353@gmail.com', '2004-09-08', 20, '2', '2', 'MUNNANGI JOSHI BABU', 'electrician', 12000.00, 5, 0.00, 2.50, 'Royapuram', 'Royapuram', '2504170006', '45', '1', 'upload_files/candidate_tracker/95425796795_DEEPAKResume.pdf', NULL, '1', '2025-05-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Average Communication Sales Pressue handling doubts Very high salary exp already got multiple offers and drop only for the salary ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-17 06:23:37', 154, '2025-05-22 12:23:31', 0, NULL, 1),
(24751, 'MUNNANGI DEEPAK RAJU', '6', '6301935892', '7093271944', 'rajudeepak353@gmail.com', '2010-04-17', 0, '2', '2', 'munnangi joseph babu', 'ELECTRICIAN', 12000.00, 3, 0.00, 2.50, 'ROYAPURAM', 'PULLIANTHOP', '2504170007', '27', '1', 'upload_files/candidate_tracker/15750291495_DEEPAKResume2.pdf', NULL, '1', '2025-04-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '2', '1970-01-01', '2', '3', 'MAY END ( YET TO COMPLETE THE EXAM)', '', '', '', '55605', '55566', '1970-01-01', 154, '2025-04-17 12:16:08', 154, '2025-04-17 02:48:15', 0, NULL, 1),
(24752, 'RANJITHA', '6', '9884178314', '9884178314', 'rr4508029@gmail.com', '2003-01-24', 22, '2', '2', 'ANITHASRi.S', 'HOUSE WIFE', 144000.00, 2, 12000.00, 18000.00, 'No-15, K.MKoil street, Ayanavaram', 'No-15, K. M. P. Koil street, Ayanavaram', '2504170008', '1', '2', 'upload_files/candidate_tracker/38427783203_Resume25112024084325pm.pdf', NULL, '1', '2025-04-17', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was ok with communication but not ok with stability and she attend the interview in her existing company break hrs and will  not sure about her stabiilty\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-17 09:05:51', 154, '2025-04-17 04:46:08', 0, NULL, 1),
(24753, 'SOWMIYA B', '6', '7603973442', '', 'SOWMIYAB992@GMAIL.COM', '1999-11-22', 25, '2', '2', 'BALASUBRAMANI', 'PRINTING', 20000.00, 1, 18000.00, 21000.00, 'Ayanavaram', 'AYANAVARAM', '2504170009', '1', '2', 'upload_files/candidate_tracker/92631803546_Resume05032025022822PM.pdf', NULL, '1', '2025-04-17', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales team', '5', '1', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 154, '2025-04-17 04:52:58', 154, '2025-04-17 04:57:32', 0, NULL, 1),
(24754, 'Anuja C', '11', '7892976371', '', 'anujachandru6015@gmail.com', '2001-09-06', 23, '2', '1', 'Tharun Kumar A B', 'Process Executive', 60000.00, 1, 0.00, 18000.00, 'Bangalore', 'Bangalore', '2504170010', '1', '1', 'upload_files/candidate_tracker/22282884221_ANUJAC1.pdf', NULL, '1', '2025-04-17', 0, '', '3', '59', '2025-04-21', 216000.00, '', NULL, '2025-04-30', '2', 'Communication Ok can be trained in our HR Roles Can give a try', '6', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '8', '', '', 'H1018', '', '55566', '5151', '2025-04-21', 1, '2025-04-17 11:24:10', 60, '2025-04-19 07:33:42', 0, NULL, 1),
(24755, 'S s keerthana', '6', '8925159905', '8925159905', 'Keerthana8905@gmail.com', '1999-10-20', 25, '2', '2', 'Parent', 'Degree', 40000.00, 2, 20000.00, 25000.00, 'No/ 11 bala vinayagar koil street Pattabiram', 'No / 11 bala vinayagar sasthri Nagar pattabiram', '2504170011', '1', '2', 'upload_files/candidate_tracker/56015391839_S.SKeerthana.Resume.pdf', NULL, '3', '2025-04-18', 0, '', '3', '59', '2025-04-22', 240000.00, '', '5', '1970-01-01', '2', 'Communication Ok too long distance not sure on sustainability she may join for time being need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55650', '55560', '2025-04-22', 1, '2025-04-17 11:26:31', 60, '2025-04-21 06:42:48', 0, NULL, 1),
(24756, 'Abinesh Desingh', '6', '7200014366', '9962263578', 'abineshdesingh@gmail.com', '2004-06-07', 20, '2', '2', 'LOKESH D', 'WORK', 40000.00, 10, 0.00, 20000.00, 'ENNORE', 'ENNORE', '2504170012', '1', '1', 'upload_files/candidate_tracker/27915598549_ABINESHD.pdf', NULL, '1', '2025-04-18', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-04-17 04:32:03', 154, '2025-04-18 11:07:27', 0, NULL, 1),
(24757, 'Arun kumar R', '14', '9941038944', '', 'charmyarun@gmail.com', '2002-09-16', 22, '3', '2', 'Ramar M', 'Daily Wages', 25000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2504180001', '', '1', 'upload_files/candidate_tracker/43458552959_ArunR.pdf', NULL, '1', '2025-04-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-18 04:50:17', 154, '2025-04-18 10:50:04', 0, NULL, 1),
(24758, 'bhuvaneshwari k', '6', '7358158816', '6383143835', 'kbhuvana032005@gmail.com', '2005-01-03', 20, '2', '2', 'kannnan', 'gurukal', 150000.00, 0, 0.00, 15.00, 'vadapalini', 'vadapalini', '2504180002', '45', '1', 'upload_files/candidate_tracker/97063423475_BhuvaneshwariKannanResume.pdf', NULL, '1', '2025-04-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good skill. will analiys 7 days training .  \ni suggest freshers salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-04-18 04:52:17', 154, '2025-04-18 11:43:49', 0, NULL, 1),
(24759, 'Kavitha. K', '6', '9344397404', '9344397404', 'Kavi62454@gmail.com', '2005-08-20', 19, '2', '2', 'Lalitha. K', 'Building contractor', 20000.00, 1, 0.00, 15000.00, 'Ramapuram', 'Ramapuram', '2504180003', '45', '1', 'upload_files/candidate_tracker/91829082913_kavithaResume1.pdf', NULL, '1', '2025-04-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'canditate is ok communication good fresher ... kindly confirm the salary and joining date ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55732', '5151', '1970-01-01', 1, '2025-04-18 04:52:39', 154, '2025-04-18 05:12:08', 0, NULL, 1),
(24760, 'om vishal', '14', '9360347126', '', 'omievishal@gmail.com', '2004-06-16', 20, '3', '2', 'rethinasamy', 'Library assitant', 25000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2504180004', '', '1', 'upload_files/candidate_tracker/56754368735_Omvishal.pdf', NULL, '1', '2025-04-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-18 04:54:05', 154, '2025-04-18 01:07:47', 0, NULL, 1),
(24761, 'Femila jency S', '4', '9597600641', '7299899376', 'jencyfemila2000@gmail.com', '2000-12-31', 24, '2', '2', 'A.santhana seelan', 'Sdhabathi', 30000.00, 1, 12000.00, 15000.00, '68, anthoniyar Kovil street m chavadi Thanjavur.', '68, anthoniyar Kovil street m chavadi Thanjavur', '2504180005', '1', '2', 'upload_files/candidate_tracker/12598893820_newjency22.pdf', NULL, '1', '2025-04-18', 30, '', '3', '59', '2025-04-22', 168000.00, '', '3', '2025-07-30', '2', 'Communication Ok Can be trained in our roles and check in training', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-04-22', 1, '2025-04-18 05:04:35', 60, '2025-04-21 06:59:59', 0, NULL, 1),
(24762, '', '0', '9994505598', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504180006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-18 05:22:08', 0, NULL, 0, NULL, 1),
(24763, 'E.Rajathi', '4', '8531911285', '9047327621', 'rajathicog@gmail.com', '2003-04-03', 22, '2', '2', 'C.Elangovan', 'Daily workers', 20000.00, 1, 0.00, 13000.00, '5/32, nayakkar street, Papanasam, thanjavur', '5/32, Nayakkar Street, Papanasam, thanjavur', '2504180007', '1', '1', 'upload_files/candidate_tracker/63090411941_CV2025040208073086.pdf', NULL, '1', '2025-04-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not performing well', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-18 05:25:28', 154, '2025-04-18 11:39:11', 0, NULL, 1),
(24764, 'Pavithra v', '4', '9500919041', '9629968623', 'pv6107594@gmail.com', '2001-06-20', 23, '2', '2', 'T. vaithilingam', 'Daily workers', 20000.00, 2, 0.00, 13000.00, '58/16 B mainroad, Papanasam, thanjavur', '58/16 B main road, Papanasam, Thanjavur', '2504180008', '1', '1', 'upload_files/candidate_tracker/38769963550_PavithraVCV.pdf', NULL, '1', '2025-04-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite unfit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-18 05:25:55', 154, '2025-04-18 11:52:18', 0, NULL, 1),
(24765, 'K. Lavanya', '4', '8056913403', '8940406319', 'dineshlavanya171@gmail.com', '2004-02-26', 21, '2', '2', 'K. Latha', 'Daily wages', 6000.00, 1, 0.00, 13000.00, '4/7 B, vathalai thoppu Street, papanasam', '4/7B, vathalai thoppu Street, papanasam', '2504180009', '1', '1', 'upload_files/candidate_tracker/99388495162_CV2025040208490540.pdf', NULL, '1', '2025-04-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit for telesales not performing well', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-18 05:26:17', 154, '2025-04-18 11:38:22', 0, NULL, 1),
(24766, 'Harish Kumar.B', '6', '9384612443', '9363008651', 'harishduke22@gmail.com', '2003-11-15', 21, '1', '2', 'B.balaraman', 'Business', 100000.00, 1, 15000.00, 18000.00, '12/2anandha Krishna street', '12/2anandha Krishna street', '2504180010', '', '2', 'upload_files/candidate_tracker/59793220596_86673531814harishresumepdf.pdf', NULL, '1', '2025-04-18', 0, 'p1066', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication And performance is good,but 5050 will check with him in the training Period ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-04-18 06:36:14', 154, '2025-04-18 01:04:56', 0, NULL, 1),
(24767, 'Dinesh R', '6', '9444391241', '9444391242', 'dineshdinu2212@gmail.com', '2004-12-22', 20, '2', '2', 'Ramesh', 'ECG technician', 30000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2504180011', '1', '1', 'upload_files/candidate_tracker/93943304803_Dinesh.R202504171645090000.pdf', NULL, '1', '2025-04-18', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication not good. Giving only one word answer. Not fir for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-18 09:17:50', 154, '2025-04-18 03:38:02', 0, NULL, 1),
(24768, 'Mavin Krishnan R', '6', '6369102208', '', 'krishnanamavin@gmail.com', '2005-02-24', 20, '2', '2', 'Rama moorthy K', 'Farmer', 60000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2504180012', '1', '1', 'upload_files/candidate_tracker/90663423886_CV2025041610443345.pdf', NULL, '1', '2025-04-18', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication not good. very slow. Not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-18 09:18:27', 154, '2025-04-18 03:37:27', 0, NULL, 1),
(24769, 'RAJESH', '5', '9791090990', '', 'smartrajesh0515@gmail.com', '2000-05-15', 24, '2', '2', 'Anandhi', 'Owned', 30000.00, 1, 17000.00, 23000.00, 'Thiruvottiyure', 'Thiruvottiyure', '2504180013', '1', '2', 'upload_files/candidate_tracker/36012027074_SMFGREPAYMENT.pdf', NULL, '1', '2025-04-19', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-04-18 01:04:26', 1, '2025-04-18 01:08:12', 0, NULL, 1),
(24770, '', '0', '8610901357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504180014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-18 06:17:43', 0, NULL, 0, NULL, 1),
(24771, 'Sripriya V', '6', '9840345320', '8939275807', 'priyasripriya76@gmail.com', '2002-06-05', 22, '2', '2', 'Sundhari', 'House keeping', 15000.00, 10, 13000.00, 18000.00, 'Chennai', 'Chennai', '2504190001', '1', '2', 'upload_files/candidate_tracker/24653202029_resume.docx', NULL, '1', '2025-04-19', 0, '', '3', '59', '2025-04-21', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok fresher for insurance sales have exp in loan sales can be trained in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55732', '5151', '2025-04-21', 1, '2025-04-19 01:14:38', 60, '2025-04-19 06:11:55', 0, NULL, 1),
(24772, 'Sathish s', '5', '6382236739', '6382236739', 'sathishadhi0@gmail.com', '2003-06-16', 21, '2', '2', 'Sathiyamoorthy', 'Farmer', 200000.00, 1, 0.00, 30000.00, 'Cuddalore', 'Chennai', '2504190002', '1', '1', 'upload_files/candidate_tracker/35675542869_Cv.pdf', NULL, '1', '2025-04-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-19 05:40:03', 154, '2025-04-19 11:51:37', 0, NULL, 1),
(24773, 'SUHEL', '6', '6382700958', '7358309137', 'suhelbabu36@gmail.com', '2003-10-15', 21, '2', '2', 'Babu', 'Meat Shop', 35000.00, 2, 20000.00, 30000.00, 'Sachidhanandham street No 25/57 Perambur Barracks', 'Sachidhanandham street No 25/57 Perambur Barracks', '2504190003', '27', '1', 'upload_files/candidate_tracker/90101615841_DOC20250217WA0015.S.pdf', NULL, '1', '2025-04-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-19 05:44:23', 154, '2025-04-19 12:58:25', 0, NULL, 1),
(24774, 'JEEVITHA PRIYA D', '6', '9360864311', '9360864311', 'jeevithapriya2004@gmail.com', '2004-01-27', 21, '2', '1', 'B.DEVARAJULU', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'No 1/210 pillaiyar Kovil Street velanjeri Trt', 'MCM garden 3rd street post office', '2504190004', '27', '1', 'upload_files/candidate_tracker/57641877557_ImagetoPDF2025041911.47.29.pdf', NULL, '1', '2025-04-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-19 05:44:58', 154, '2025-04-19 12:59:57', 0, NULL, 1),
(24775, 'Sharmila c', '6', '8925049956', '9043990903', 'Ssharmi622@gmail.com', '2003-03-21', 22, '2', '2', 'Chandran', 'Cooli', 20000.00, 2, 0.00, 20000.00, 'No;3, mayandi colony 2nd street triplcane Chennai', 'Same', '2504190005', '1', '1', 'upload_files/candidate_tracker/28503233650_default1.PDF', NULL, '3', '2025-04-19', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, Communication average, 1.5 yrs experience loan tele sales. 2month working vizza insurance, pls cross check sustainability and confirm the joining date.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55732', '5151', '1970-01-01', 1, '2025-04-19 05:47:45', 154, '2025-04-19 12:42:57', 0, NULL, 1),
(24776, 'Aswini s', '6', '7397051132', '9025459779', 'aswinishalu.s@gmail.com', '2005-03-16', 20, '2', '2', 'Suman', 'Employee', 20000.00, 1, 0.00, 18000.00, '28/49 kasima nagar 3rd street rayapuram chennai 13', '28/49 kasima nagar 3rd street rayapuram chennai 13', '2504190006', '27', '1', 'upload_files/candidate_tracker/75470988042_ImagetoPDF2025041911.52.34.pdf', NULL, '1', '2025-04-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-19 05:47:47', 154, '2025-04-19 12:59:14', 0, NULL, 1),
(24777, 'Iswarya Devi N', '6', '8300798302', '8300798302', 'Vimalish1431@gmail.com', '2000-03-14', 25, '2', '2', 'Nagaraj', 'Farmer', 10000.00, 2, 0.00, 16000.00, 'Kodaikanal', 'Royapettah', '2504190007', '1', '1', 'upload_files/candidate_tracker/74361029095_Document10.pdf', NULL, '1', '2025-04-19', 0, '', '3', '59', '2025-04-21', 186000.00, '', '3', '2025-05-02', '1', 'Communication ok have exp for few months in calling can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '2025-04-21', 1, '2025-04-19 05:55:01', 60, '2025-04-19 07:39:06', 0, NULL, 1),
(24778, 's divya', '6', '7305312476', '7305312476', 'divyasrini2204@gmail.com', '2004-06-22', 20, '2', '2', 'srinivasan', 'flower worker', 15000.00, 1, 0.00, 16000.00, 'old washermenpet', 'old washermenpet', '2504190008', '1', '1', 'upload_files/candidate_tracker/96330482827_DivyaResume.pdf.pdf', NULL, '1', '2025-04-19', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill. and silent person . ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-04-19 06:30:57', 154, '2025-04-19 03:02:39', 0, NULL, 1),
(24779, 'A.Yasmin', '5', '7305312476', '7305312476', 'aaliyay75@gmail.com', '2000-09-30', 24, '2', '2', 'A.Abdullah', 'Trader', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2504190009', '1', '1', 'upload_files/candidate_tracker/5919378943_yasu.pdf', NULL, '1', '2025-04-19', 0, '', '3', '59', '2025-04-24', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in calling can be trained in our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '2025-04-24', 1, '2025-04-19 06:31:09', 60, '2025-04-23 07:24:15', 0, NULL, 1),
(24780, 'nisha k', '6', '7305371470', '7305371470', 'nishanishu1470@gmail.com', '2002-04-07', 23, '2', '2', 'kamaaldeen', 'chicken sentre', 15000.00, 1, 0.00, 18000.00, 'tiruvottiyur', 'tiruvottiyur', '2504190010', '1', '1', 'upload_files/candidate_tracker/86791628315_Nisharesume.pdf', NULL, '1', '2025-04-19', 0, '', '3', '59', '2025-04-21', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can be trained in our roles need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '2025-04-21', 1, '2025-04-19 06:31:16', 60, '2025-04-19 07:37:44', 0, NULL, 1),
(24781, 'Sandiya', '6', '9150916073', '6374228459', 'Harshapapa23@gmail.com', '2004-03-23', 21, '2', '2', 'Kumar', 'Cable TV operator', 15000.00, 2, 0.00, 18000.00, 'Adambakkam', 'Adambakkam', '2504190011', '1', '1', 'upload_files/candidate_tracker/65978573940_Myresume10.pdf', NULL, '1', '2025-04-19', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-19 06:43:00', 154, '2025-04-19 03:51:38', 0, NULL, 1),
(24782, 'Vasantaragavan kamaraj', '6', '8838399375', '8838399375', 'ragavanvasanth647@gmail.com', '2003-04-06', 22, '2', '2', 'Kamaraj k', 'EX police service man', 36000.00, 0, 0.00, 20000.00, 'Chennai', 'Trichy', '2504190012', '1', '1', 'upload_files/candidate_tracker/86743793189_VasantaragavanMBA.pdf', NULL, '1', '2025-04-21', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking only for queries handling not open for upsales and calling will not sustain and handle our work pressure', '5', '1', '', '1', '8', '', '2', '2025-05-20', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-19 07:03:40', 154, '2025-04-21 03:25:07', 0, NULL, 1),
(24783, 'Rajakumaran R', '5', '9345662458', '', 'merchymerchy10@gmail.com', '2000-05-29', 24, '2', '2', 'Radhakrishnan', 'Former', 30000.00, 1, 0.00, 20000.00, 'Ariyalur', 'Chennai', '2504190013', '1', '2', 'upload_files/candidate_tracker/96825549400_RAJAKUMARAN1.docx', NULL, '1', '2025-04-21', 0, '', '3', '59', '2025-04-24', 240000.00, '', '3', '2025-04-26', '2', 'Communication Good Can be trained in our roles final round with Gaurav sir need to check in training', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '4', '1', '', '', 'H1018', '', '55650', '55560', '2025-04-24', 1, '2025-04-19 07:25:56', 60, '2025-04-23 07:31:22', 0, NULL, 1),
(24784, 'ASAIN BHASHA K', '6', '9042548096', '9345481612', 'asainbhasha@gmail.com', '2003-06-15', 21, '2', '2', 'Dilshath begam', 'House wife', 20000.00, 0, 200000.00, 300000.00, 'Chidambaram', 'Guindy', '2504190014', '1', '2', 'upload_files/candidate_tracker/81544721376_AsainBhashaKUpdateCV.pdf', NULL, '1', '2025-04-19', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good cus handling skill  . but salary expection  high. my suggestion 18.5 k only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-04-19 07:38:32', 154, '2025-04-19 03:52:18', 0, NULL, 1),
(24785, 'Afrin Fathima', '4', '9626986178', '', 'afrinfathimasathik@gmail.com', '2004-04-24', 20, '2', '2', 'Rasool beevi', 'House wife', 6000.00, 1, 0.00, 15000.00, 'Koradacheri', 'Koradacheri', '2504190015', '1', '1', 'upload_files/candidate_tracker/53650593552_ResumeAfrinFormat1.pdf', NULL, '1', '2025-04-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-19 07:48:31', 154, '2025-04-21 10:27:37', 0, NULL, 1),
(24786, 'Mohamed Musthaq M', '6', '8428696842', '', 'musthaqmohamed270@gmail.com', '2001-03-11', 24, '5', '2', 'Syedunnisa Begum', 'S.i.e.t staff', 45000.00, 2, 19000.00, 25000.00, 'No 97 D block Parthasarathi nagar housing board', 'Old Washermanpet', '2504190016', '', '2', 'upload_files/candidate_tracker/8892517129_MusthaqResume.pdf', NULL, '1', '2025-04-21', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested work in MF team \nhe willing to work in Health biz', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-19 09:13:50', 154, '2025-04-21 03:25:58', 0, NULL, 1),
(24787, 'Paneer selvam.p', '6', '9342504090', '9841263429', 'salamonra3@gmail.com', '2003-01-28', 22, '2', '2', 'Paul issack', 'Paint work', 30000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2504200001', '1', '1', 'upload_files/candidate_tracker/47556971096_ResumepaneerSelvam1.pdf', NULL, '1', '2025-04-21', 0, '', '3', '59', '2025-04-24', 192000.00, '', '3', '2025-05-30', '1', 'Communication Ok fresher for our roles can be trained in our roles and check in training', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55645', '5151', '2025-04-24', 1, '2025-04-20 03:38:10', 154, '2025-04-24 09:30:10', 0, NULL, 1),
(24788, 'sWETHA', '6', '8825488861', '8939288460', 'swethaesthar01@gmail.com', '2004-11-20', 20, '1', '2', 'Devika', 'tailor', 12000.00, 1, 0.00, 15000.00, '273/6th block kailasam street tondiapet Ch-81', '273/6th block kailasam street tondiapet Ch-81', '2504210001', '', '1', 'upload_files/candidate_tracker/61128542577_BlueandWhiteGradientModernPreSchoolTeacherResume202504210959010000.pdf', NULL, '3', '2025-04-21', 0, 'KEERTHIGA DEVI', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not proper communication skill ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-04-21 04:15:18', 154, '2025-04-21 11:49:32', 0, NULL, 1),
(24789, '', '0', '9677578305', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504210002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-21 04:38:57', 0, NULL, 0, NULL, 1),
(24790, 'Sneha', '4', '9790393742', '', '97kamalilatha@gmail.com', '2004-04-06', 21, '2', '2', 'Pakkirisamy', 'Driver', 8000.00, 2, 0.00, 15000.00, '486,east street, keela valachery', '486,east street, keela valachery', '2504210003', '1', '1', 'upload_files/candidate_tracker/29777814445_BeigeBlackSimpleFreshGraduateResume202404272047410000.pdf', NULL, '1', '2025-04-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-21 04:39:51', 154, '2025-04-21 11:41:45', 0, NULL, 1),
(24791, 'saravanan s', '6', '7708799128', '9360708371', 'saravananselvam225@gmail.com', '2003-01-09', 22, '2', '2', 'Chithra', 'Homemaker', 21750.00, 1, 21750.00, 35000.00, 'Aruppukottai-626101', 'Aruppukottai-626101', '2504210004', '1', '2', 'upload_files/candidate_tracker/70509460471_SaravananUpdatedResume.pdf', NULL, '1', '2025-04-23', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-21 05:03:15', 154, '2025-04-23 04:26:57', 0, NULL, 1),
(24792, 'nivetha Sree RN', '6', '8220318528', '', 'sreenivetha670@gmail.com', '2002-12-31', 22, '2', '2', 'Ravichandran', 'Police', 400000.00, 0, 0.00, 15000.00, 'Rajapathai vadasery Nagercoil', '130 NTR street Kodambakkam', '2504210005', '1', '1', 'upload_files/candidate_tracker/94784990382_NivethaSreeRN.pdf', NULL, '1', '2025-04-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Low long gap in speaking will not sustain and not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-21 05:18:23', 154, '2025-04-21 01:52:18', 0, NULL, 1),
(24793, 'Alfiya fareen S', '5', '7418761217', '', 'alfualfiya75@gmail.com', '2002-06-17', 22, '2', '2', 'O.syed arif', 'Driver', 30000.00, 1, 18000.00, 30000.00, 'Tiruvannamalai', 'Chennai', '2504210006', '1', '2', 'upload_files/candidate_tracker/2566134301_ALFIYAFAREENResume.docx', NULL, '1', '2025-04-21', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No convincing skills xxamp higher expectation...\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-04-21 05:25:44', 154, '2025-04-21 05:29:37', 0, NULL, 1),
(24794, 'SHYAM SUNDAR', '5', '9444909154', '7305424336', 'shaamdeepa01050213@gmail.com', '1999-02-05', 26, '2', '2', 'D.Mahalakshmi', 'ART counsellor in Govt Hospital', 50000.00, 1, 24000.00, 28000.00, 'No 5/3 Jamal mohideen Street pudupet chennai', 'No 5/3 Jamal Mohideen Street pudupet chennai', '2504210007', '1', '2', 'upload_files/candidate_tracker/39295561975_ResumeSingle11.docx', NULL, '1', '2025-04-21', 0, '', '3', '59', '2025-04-24', 324000.00, '', '3', '2025-05-29', '2', 'Communication Ok have exp but not a relevant one last few months in shriram insurance need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55650', '55560', '2025-04-24', 1, '2025-04-21 05:28:07', 60, '2025-04-23 07:28:38', 0, NULL, 1),
(24795, 'Lokeshwari B', '6', '8124057625', '9962249760', 'pujabalaji1976@gmail.com', '2004-10-29', 20, '2', '2', 'Bhavani B', 'Tailor', 100000.00, 0, 0.00, 15000.00, 'Old washermenpet', 'Old washermenpet', '2504210008', '27', '1', 'upload_files/candidate_tracker/32857738868_SimpleResumeinWhiteandPastelBlueMinimalistStyle202504112014290000.pdf', NULL, '1', '2025-04-21', 0, '', '3', '59', '2025-05-02', 174000.00, '', '3', '2025-05-03', '2', 'Communication Ok Fresher for our sales profiles job fair employee need to train a lot Should check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55732', '5151', '2025-05-02', 1, '2025-04-21 05:41:53', 60, '2025-04-30 07:21:16', 0, NULL, 1),
(24796, 'Kaleelur rahman s', '6', '8925424517', '', 'kaleelurrahman769@gmail.com', '2004-05-15', 20, '2', '2', 'Mohammad saleem', 'Watchman', 20000.00, 1, 16000.00, 18000.00, 'New washermenpet', 'New washermenpet', '2504210009', '27', '2', 'upload_files/candidate_tracker/11854628353_MinimalCustomerServiceResume202504211123170000.pdf', NULL, '1', '2025-04-21', 0, '', '3', '59', '2025-05-02', 210000.00, '', '3', '2025-05-03', '1', 'Communication Ok Fresher for our roles can be trained will check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55732', '5151', '2025-04-30', 1, '2025-04-21 05:43:04', 60, '2025-04-30 07:14:04', 0, NULL, 1),
(24797, 'prathap V', '6', '7397289458', '', 'prathapvembaiyan@gmail.com', '2003-05-11', 21, '2', '2', 'Vembaiyan', 'Former', 25000.00, 1, 15000.00, 17000.00, 'Thanjavur', 'Anna nagar', '2504210010', '1', '2', 'upload_files/candidate_tracker/93063660869_CV20240807143844881.pdf', NULL, '1', '2025-04-21', 0, '', '3', '59', '2025-04-28', 180000.00, '', '3', '2025-12-16', '2', 'Communication ok have exp in calling can be trained in our roles came for chennai and selected for rajasekar but moved to thanjavur', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '2025-04-28', 1, '2025-04-21 06:01:13', 60, '2025-04-26 07:06:51', 0, NULL, 1),
(24798, 'a k mohammed yasir', '6', '7617327166', '7397371915', 'yasirzayn25@gmail.com', '2000-07-05', 24, '2', '2', 'abdul kuddus', 'government servant', 85000.00, 1, 17000.00, 20000.00, 'royapettah chennai', 'royapettah chennai', '2504210011', '1', '2', 'upload_files/candidate_tracker/4566321035_MyResume.pdf', NULL, '1', '2025-04-21', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for sales team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-04-21 06:25:24', 154, '2025-04-21 01:50:55', 0, NULL, 1),
(24799, 'KAMESH M', '4', '9791031799', '9361570964', 'aadhimoolam90@gmail.com', '1990-09-09', 34, '4', '1', 'MAGESHWARI M', 'Farmer', 25000.00, 3, 15000.00, 18000.00, '42,Kadambadi Amman Nagar,Nerkundram, ch-107', '42,Kadambadi Amman Nagar, Nerkundram, Ch-017', '2504210012', '', '2', 'upload_files/candidate_tracker/2131468240_kAMESHM2resume.pdf', NULL, '1', '2025-04-21', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-21 06:34:28', 1, '2025-04-21 06:57:27', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24800, 'rishiKumar v', '13', '9047607256', '', 'rishikumarv06@gmail.com', '2003-01-24', 22, '3', '2', 'velmurugan m', 'saree manufacturing', 18000.00, 4, 0.00, 400000.00, 'theni', 'mambalam', '2504210013', '', '1', 'upload_files/candidate_tracker/88272138295_RishikumarCV.pdf.pdf', NULL, '1', '2025-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-21 06:38:15', 1, '2025-04-21 07:01:48', 0, NULL, 1),
(24801, 'Naveen M', '4', '8903565627', '6381001544', 'murugannaveen11@gmail.com', '2002-07-02', 22, '4', '2', 'Murugan', 'Daily worker', 30000.00, 1, 14000.00, 18000.00, 'Theni', 'Koyampedu', '2504210014', '', '2', 'upload_files/candidate_tracker/36449669158_Documentfrom.pdf', NULL, '3', '2025-04-21', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-21 06:40:37', 1, '2025-04-21 07:08:48', 0, NULL, 1),
(24802, 'sreya s', '11', '8220417814', '', 'sreyaakeshav@gmail.com', '2003-07-05', 21, '6', '2', 'keshav murthy s', 'business', 85000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2504210015', '', '1', 'upload_files/candidate_tracker/816717999_SreyaResume.pdf', NULL, '1', '2025-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-21 07:31:33', 1, '2025-04-21 07:34:25', 0, NULL, 1),
(24803, 'Hari Sree. M', '6', '8248716093', '8248155139', 'harisree2004001@gmail.com', '2004-07-17', 20, '2', '2', 'Murugaiyan. A', 'Fishermen', 180000.00, 1, 0.00, 15000.00, 'New washermen pet', 'New washermen pet', '2504210016', '27', '1', 'upload_files/candidate_tracker/70614422634_ImagetoPDF2025042113.29.44.pdf', NULL, '1', '2025-04-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suits for our role will not handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '2025-04-21', 1, '2025-04-21 07:31:50', 154, '2025-04-21 03:27:12', 0, NULL, 1),
(24804, 'Maheswari Nakeeran', '4', '7200627228', '9626869613', 'maheswarigirivasan01@gmail.com', '2004-04-02', 21, '2', '2', 'Jaya N', 'House wife', 300000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2504210017', '1', '1', 'upload_files/candidate_tracker/51180509597_MaheswariNResume.pdf', NULL, '1', '2025-04-22', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-21 08:03:04', 154, '2025-04-22 11:54:52', 0, NULL, 1),
(24805, 'Nivetha gopinath', '4', '9345652082', '9626803376', 'nivethagopinath05@gmail.com', '2004-10-17', 20, '5', '2', 'Gopinath & priya', 'Coolie', 78000.00, 2, 0.00, 18000.00, 'Pernambut, Vellore district', 'Pernambut, Vellore district', '2504210018', '', '1', 'upload_files/candidate_tracker/80419658786_eCampusNivethagopinath.pdf', NULL, '1', '2025-04-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-21 10:56:36', 1, '2025-04-21 11:10:29', 0, NULL, 1),
(24806, 'Ajay Kumar', '6', '6369645157', '8838165733', 'Ajaykumar.a03.05.2003@gmail.com', '2003-05-03', 21, '2', '2', 's.anandan', 'cooli', 15000.00, 0, 0.00, 15000.00, 'neelankarai', 'neelankarai', '2504210019', '1', '1', 'upload_files/candidate_tracker/54567115895_Ajaykumar.A.pdf', NULL, '1', '2025-04-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication average need to open up a lot Will not sustain in our profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-04-21 11:03:16', 154, '2025-04-22 12:06:25', 0, NULL, 1),
(24807, 'K Manikandan', '2', '9629637215', '8637452410', 'mani19692000@gmail.com', '2000-05-12', 24, '3', '2', 'Karunakaran k', 'Nil', 2.20, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2504210020', '', '1', 'upload_files/candidate_tracker/83605414889_Resume2.pdf', NULL, '1', '2025-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-21 11:03:31', 1, '2025-04-21 11:12:57', 0, NULL, 1),
(24808, '', '0', '8015282769', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504210021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-21 12:52:19', 0, NULL, 0, NULL, 1),
(24809, 'Kavibharathi M', '4', '9597358967', '9788358967', 'kavimathi2125@gmail.com', '2001-03-21', 24, '2', '2', 'Mathivanan', 'Hostel cashier', 15000.00, 2, 11000.00, 15000.00, 'Thirukattupalli', 'Thirukattupalli', '2504210022', '1', '2', 'upload_files/candidate_tracker/31029461087_Resume1.pdf', NULL, '1', '2025-04-22', 1, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suite for team, unfi for sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-21 01:37:25', 154, '2025-04-22 01:19:20', 0, NULL, 1),
(24810, 'Iyappan G', '6', '9345522823', '9787651851', 'iyappancs769@gmail.com', '1998-06-02', 26, '2', '2', 'Selvi', 'Former', 10.00, 2, 12.00, 20.00, 'Pudukottai', 'Karapakkam', '2504210023', '1', '2', 'upload_files/candidate_tracker/65903632423_UpdateResume.docx', NULL, '1', '2025-04-26', 10, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '4', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-21 01:58:29', 154, '2025-04-26 01:02:27', 0, NULL, 1),
(24811, 'Hema Kumar', '6', '9080294674', '9344927761', 'hemakumar2000appu@gmail.com', '2000-06-21', 24, '2', '2', 'Vanaroja', 'Housewife', 20000.00, 0, 20000.00, 25000.00, 'Vellore', 'Vellore', '2504210024', '1', '2', 'upload_files/candidate_tracker/48652221870_HK.pdf', NULL, '1', '2025-04-22', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not suitable sales field. Sounds not good, reject the profile,, Salary high expectations, thanks', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-04-21 06:45:28', 154, '2025-04-22 12:02:12', 0, NULL, 1),
(24812, 'Vivek.s', '4', '7200138441', '', 'vivekdme22216187@gmail.com', '2006-03-13', 19, '2', '2', 'Shokkalingam.r', 'farmer', 10000.00, 2, 0.00, 15000.00, '1/15 KUDIYANA (ST),KULIMATHUR THANJAVUR (DT)613101', '1/15KUDIYANA(ST),KULIMATHUR THANJAVUR(DT)613101', '2504220001', '1', '1', 'upload_files/candidate_tracker/27136981933_RESUM.pdf', NULL, '1', '2025-04-22', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR SALES', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-22 04:47:30', 154, '2025-04-22 10:46:34', 0, NULL, 1),
(24813, 'sarath m', '11', '8939225016', '9941106700', 'srpepe143@gmail.com', '2000-07-28', 24, '2', '2', 'mani k', 'civil servant', 49000.00, 0, 0.00, 0.00, 'avadi chennai', 'avadi chennai', '2504220002', '1', '1', 'upload_files/candidate_tracker/50965970535_CVSARATHM.pdf', NULL, '1', '2025-04-23', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our recruitment team', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-04-22 05:10:36', 154, '2025-04-23 12:09:39', 0, NULL, 1),
(24814, 'Gopi', '6', '8940035407', '8939475369', 'gobigobi8940@gmail.com', '2001-06-20', 23, '1', '2', 'ELUMALAI', 'Farmer', 12000.00, 1, 0.00, 18000.00, 'KALLAKURICHI', 'Thirisulam', '2504220003', '', '1', 'upload_files/candidate_tracker/40924809219_GOBI.pdf', NULL, '1', '2025-04-22', 0, 'C99082', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-22 05:19:11', 154, '2025-04-23 01:40:42', 0, NULL, 1),
(24815, 'ajith', '6', '8668176623', '6380352615', 'ajithscahs@gmail.com', '2001-11-01', 23, '2', '2', 'elumalai', 'armer', 20000.00, 1, 0.00, 15000.00, 'hennai', 'hennai', '2504220004', '1', '1', 'upload_files/candidate_tracker/25929713129_Ajithresume2.pdf', NULL, '1', '2025-04-22', 0, '', '3', '59', '2025-04-28', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Can be trained in our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '2025-04-28', 1, '2025-04-22 05:33:23', 60, '2025-04-26 07:09:05', 0, NULL, 1),
(24816, 'Suresh v', '6', '8190089168', '8190089168', 'Suresh.ve2000@gmail.com', '2000-07-24', 24, '1', '2', 'R Vijaya kumar', 'Rice mill', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2504220005', '', '1', 'upload_files/candidate_tracker/43409897693_SURESH1.pdf', NULL, '1', '2025-04-22', 0, 'C99118', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was not good at communication not having any experiences and not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-22 06:30:42', 154, '2025-04-22 01:33:19', 0, NULL, 1),
(24817, '', '0', '8190089168', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504220005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-22 06:30:42', 0, NULL, 0, NULL, 1),
(24818, 'Ramkumar', '6', '8925274006', '8925274006', 'rrrramkumar48@gmail.com', '2000-12-26', 24, '1', '2', 'Ponraj R', 'Coolie ( Load man)', 30000.00, 1, 0.00, 20000.00, 'Sattur ( Viruthunagar district )', 'Tondiarpet', '2504220006', '', '1', 'upload_files/candidate_tracker/23486040542_RAMKUMARCV.pdf', NULL, '1', '2025-04-22', 0, 'C99118', '2', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was  ok with communication and interested in sales and incentives but not sure about stability and would like to confirm again', '5', '1', '', '1', '8', '', '2', '2025-04-23', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-22 06:31:04', 154, '2025-04-22 01:33:40', 0, NULL, 1),
(24819, 'Maathesh mathiyazhagan', '4', '8610730580', '', 'maatheshm2152@gmail.com', '2002-05-21', 22, '2', '2', 'Rani', 'Non', 10000.00, 2, 18000.00, 20000.00, 'Thiruvarur', 'Thanjavur', '2504220007', '1', '2', 'upload_files/candidate_tracker/61738957859_MaatheshRESUME.pdf', NULL, '3', '2025-04-22', 0, '', '3', '59', '2025-05-02', 180000.00, '', '3', '2025-05-16', '1', 'Need to check and confirm after training period.', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '2025-05-02', 1, '2025-04-22 07:08:55', 60, '2025-05-02 10:18:42', 0, NULL, 1),
(24820, 'J.MOHAMED NAFIL', '4', '9940830015', '', 'mohamednafilmohamednafil50@gmail.com', '2005-01-15', 20, '2', '2', 'Appuroja', 'House wife', 20000.00, 0, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2504220008', '1', '1', 'upload_files/candidate_tracker/43001917127_Mohamednafil.resume202502042128280000.pdf', NULL, '1', '2025-04-24', 0, '', '3', '59', '2025-05-12', 174000.00, '', '5', '1970-01-01', '1', 'communication Ok Can be trained in our roles and check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '2025-05-12', 1, '2025-04-22 08:05:21', 60, '2025-05-10 05:49:06', 0, NULL, 1),
(24821, '', '0', '9629679618', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504220009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-22 10:05:45', 0, NULL, 0, NULL, 1),
(24822, '', '0', '6379761526', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504220010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-22 11:27:24', 0, NULL, 0, NULL, 1),
(24823, 'Karthick Prabhakaran. M', '6', '6379761562', '8248443823', 'karthickprabhakarn@gmail.com', '2003-01-08', 22, '2', '2', 'Murugan. M', 'Photographer', 15000.00, 3, 0.00, 20000.00, 'Virudhunagar', 'Virudhunagar', '2504220011', '1', '1', 'upload_files/candidate_tracker/37840384511_KarthickPrabhakaranMResume.pdf', NULL, '1', '2025-04-23', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales, Looking for IT', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-22 11:27:36', 154, '2025-04-23 01:10:54', 0, NULL, 1),
(24824, 'AJAY SAMSON A', '4', '9940715269', '', 'ajaysamson07@gmail.com', '2002-05-25', 22, '2', '2', 'Anthony Raj M', 'Daily wage', 20.00, 2, 20.00, 20.00, 'Thirukkattupalli', 'Thirukkattupalli', '2504220012', '1', '2', 'upload_files/candidate_tracker/5352381503_AjayResume202503281511270000.pdf', NULL, '1', '2025-04-23', 0, '', '3', '59', '2025-04-24', 180000.00, '', '3', '2025-06-25', '2', 'Communication ok need to check in training and confirm sustainability doubts over confidence let us try', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '2025-04-24', 1, '2025-04-22 01:29:20', 60, '2025-04-23 07:39:56', 0, NULL, 1),
(24825, 'Gunasekar', '11', '6382107708', '', 'sekarguna126@gmail.com', '2001-01-09', 24, '3', '2', 'Aarumugam', 'Driver', 200000.00, 1, 200000.00, 250000.00, 'Chennai', 'Chennai', '2504220013', '', '2', 'upload_files/candidate_tracker/67833570870_GunasekarHRResumeBordered1.pdf', NULL, '2', '2025-04-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-22 03:09:58', 1, '2025-04-22 03:14:12', 0, NULL, 1),
(24826, 'Saran jr', '6', '7094543563', '9600516275', 'Saranjeyakumar2003@gmail.com', '2003-03-07', 22, '2', '2', 'Rajathi j', 'Bank staff', 50000.00, 2, 20000.00, 22000.00, 'Madurai', 'Chennai', '2504230001', '1', '2', 'upload_files/candidate_tracker/87823203677_Resume21042025080115PM.pdf', NULL, '1', '2025-04-23', 15, '', '3', '59', '2025-04-24', 216000.00, '', '1', '1970-01-01', '1', '`Have Exp in Vizzza for an year next company only for 3 months Communication Ok can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55732', '5151', '2025-04-24', 1, '2025-04-23 04:37:10', 60, '2025-04-24 09:47:16', 0, NULL, 1),
(24827, 'Ragul', '4', '9677262329', '9677262329', 'ragulsakthivel0777@gmail.com', '2000-08-05', 24, '2', '2', 'SAKTHIVEL', 'SUPERVISOR', 35000.00, 1, 21700.00, 23000.00, 'Chennai', 'Chennai', '2504230002', '1', '2', 'upload_files/candidate_tracker/27351696676_RAGUL1Resume1742110426080RAGUL.S.pdf', NULL, '1', '2025-04-23', 3, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-23 04:47:03', 154, '2025-04-23 11:40:47', 0, NULL, 1),
(24828, 'Nixon Raj', '4', '7708687662', '9655287376', 'nixonste630@gmail.com', '1999-03-13', 26, '2', '2', 'Vedhamuthu', 'Delievery executive', 15000.00, 1, 15000.00, 17000.00, 'Thanjavur', 'Thanjavur', '2504230003', '1', '2', 'upload_files/candidate_tracker/14360509145_CV20250417093641.pdf', NULL, '1', '2025-04-23', 0, '', '3', '59', '2025-04-24', 180000.00, '', '', '2025-04-26', '1', 'Communication Ok have exp in loan calls can be trained and check in training period', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2025-04-24', 1, '2025-04-23 04:50:16', 60, '2025-04-24 09:48:42', 0, NULL, 1),
(24829, 'Santhosh.r', '6', '9840458702', '9042766738', 'santhoshwork980@gmail.com', '2004-11-23', 20, '2', '2', 'L.RAVI', 'Retrain', 22000.00, 2, 0.00, 13000.00, 'Villivakkam', 'No 21 ram plaza moorthy nagar chennai 38', '2504230004', '1', '1', 'upload_files/candidate_tracker/81237175173_RESUMESANTHOSHR.pdf', NULL, '1', '2025-04-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-23 05:03:26', 154, '2025-04-23 11:42:21', 0, NULL, 1),
(24830, 'Keerthana', '6', '6383059397', '6383059397', 'keerthi6383059397@gmail.com', '2004-08-02', 20, '2', '2', 'Shankar', 'Car driver', 15000.00, 1, 0.00, 17000.00, 'South boag road tnagar chennai 17', 'South boag road tnagar chennai 17', '2504230005', '1', '1', 'upload_files/candidate_tracker/17114674848_keerthana.s.pdf', NULL, '1', '2025-04-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-23 05:15:44', 154, '2025-04-23 01:01:23', 0, NULL, 1),
(24831, 'Blossom christina', '6', '9360114907', '', 'blossomchristina9360@gmail.com', '2004-10-05', 20, '4', '2', 'Antony', 'Cargo field', 15000.00, 3, 0.00, 17000.00, 'No, 12/3 kk Nagar 7th street Nanganallur', 'No, 12/3 kk Nagar 7th street Nanganallur', '2504230006', '', '1', 'upload_files/candidate_tracker/62395386635_BLOSSOMCHRISTINARESUMEPDF.pdf', NULL, '1', '2025-04-23', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-23 05:15:58', 154, '2025-04-23 12:45:56', 0, NULL, 1),
(24832, 'Abdulwahab J', '6', '9344001151', '', 'abdulabdulwahab1326@gmail.com', '2002-05-26', 22, '2', '2', 'JaheerHussain', 'Farmer', 25000.00, 1, 14500.00, 17000.00, 'Dindigul', 'Velachery', '2504230007', '1', '2', 'upload_files/candidate_tracker/90161442454_ABDUL.pdf', NULL, '1', '2025-04-23', 0, '', '3', '59', '2025-04-24', 204000.00, '', '', '2025-05-08', '2', 'Communication Ok have 6 months exp in sales calling can be trained in our roles will check intraining and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '2025-04-24', 1, '2025-04-23 06:33:36', 60, '2025-04-23 07:32:45', 0, NULL, 1),
(24833, 'Prasath Ayyasamy', '4', '9345723793', '8012423087', 'prasatha256@gmail.com', '1998-02-14', 27, '2', '2', 'Ayyasamy', 'Worker', 500000.00, 1, 24.00, 30.00, 'Tiruchirappalli', 'Chennai', '2504230008', '1', '2', 'upload_files/candidate_tracker/81930123813_PRASANTHARESUME.pdf', NULL, '1', '2025-04-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-23 06:37:24', 154, '2025-04-23 02:57:02', 0, NULL, 1),
(24834, 'Pranavkumar M', '13', '9445811503', '', 'mpk2020.india@gmail.com', '2002-09-15', 22, '3', '2', 'Muthusamy', 'Admin', 40000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2504230009', '', '1', 'upload_files/candidate_tracker/68699670863_PranavCV.pdf', NULL, '1', '2025-04-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-23 06:46:22', 1, '2025-04-23 07:10:00', 0, NULL, 1),
(24835, 'raguraman k', '13', '7904776038', '9940238756', 'raguraman1092002@gmail.com', '2002-09-10', 22, '3', '2', 'kumaravel m', 'designer coordinator', 50000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2504230010', '', '1', 'upload_files/candidate_tracker/56562858839_FinalResume.pdf', NULL, '1', '2025-04-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-23 07:05:43', 1, '2025-04-23 07:12:26', 0, NULL, 1),
(24836, 'K KEERTHANA', '6', '9952028152', '', 'Keerthanakrishnan040@gmail.com', '1997-04-04', 28, '2', '2', 'C Krishnan', 'ITC PVT lt(retired)', 15000.00, 1, 14000.00, 15000.00, 'Minjur', 'Minjur', '2504230011', '1', '2', 'upload_files/candidate_tracker/5616963717_DOC20250423WA0013.pdf', NULL, '1', '2025-04-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-04-23 07:11:00', 154, '2025-04-23 01:32:01', 0, NULL, 1),
(24837, 'Balaji', '5', '9884164687', '8939615489', 'balabala2952002@gmail.com', '2002-05-29', 22, '2', '2', 'Gopi G', 'Cooly', 20000.00, 1, 0.00, 22000.00, 'Perambur, Chennai', 'Perambur, Chennai', '2504230012', '1', '2', 'upload_files/candidate_tracker/60008508425_Recentresume7.pdf', NULL, '1', '2025-04-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-04-23 07:16:03', 154, '2025-04-23 02:48:56', 0, NULL, 1),
(24838, 'Kalaivani k', '13', '9025316953', '7550256973', 'kvani0371@gmail.com', '2003-11-13', 21, '3', '1', 'Kumaresan', 'Auto Mobiles', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2504230013', '', '1', 'upload_files/candidate_tracker/77330108931_kalaivani.pdf', NULL, '1', '2025-04-23', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-23 09:03:30', 154, '2025-04-23 03:08:14', 0, NULL, 1),
(24839, 'Prakash', '13', '7550256973', '9025316953', 'jesusjames350@gmail.com', '2003-02-26', 22, '3', '2', 'Laila', 'Coolie', 10000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2504230014', '', '1', 'upload_files/candidate_tracker/70635970079_ScienceandEngineeringResumeinGreenBlackSimpleStyle.pdf', NULL, '1', '2025-04-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-23 09:04:05', 1, '2025-04-23 09:09:39', 0, NULL, 1),
(24840, 'Ram Kumar', '4', '6379975196', '7871458027', 'ramkumarg5657@yahoo.com', '2000-06-12', 24, '2', '2', 'T.Gandhi', 'Sailered', 30000.00, 1, 0.00, 24000.00, 'Chemnai', 'Chennai', '2504230015', '1', '2', 'upload_files/candidate_tracker/87647968754_RamkumarGResume.pdf', NULL, '1', '2025-04-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-23 09:29:23', 154, '2025-04-23 04:26:00', 0, NULL, 1),
(24841, 'SUMITHRA .S', '6', '6385840115', '', 'ssumipavi1505@gmail.com', '2003-05-15', 21, '2', '2', 'Chithra S', 'House keeping', 15000.00, 1, 0.00, 20000.00, 'Marakkanam', 'Marakkanam', '2504240001', '1', '1', 'upload_files/candidate_tracker/60429893752_SUMITHRARESUME.pdf', NULL, '1', '2025-04-24', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Long distance need to open up a lot given time to decide on this job if she comes back should try and confirm', '5', '1', '', '1', '8', '', '2', '2025-04-30', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-04-24 02:49:12', 154, '2025-04-24 12:32:37', 0, NULL, 1),
(24842, 'Rasika', '4', '7339238250', '', 'rasikajan111@gmail.com', '2003-04-29', 21, '2', '2', 'Nagarajan', 'Driver', 30000.00, 2, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2504240002', '1', '1', 'upload_files/candidate_tracker/90899034806_Resume30032025113040AM.pdf', NULL, '1', '2025-04-24', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT SUITE', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-24 04:48:55', 154, '2025-04-24 11:07:16', 0, NULL, 1),
(24843, 'Sam Moses Danny', '6', '8248122207', '7094085096', 'Sammoses210496@gmail.com', '1996-04-21', 29, '2', '2', 'A.Daniel selva prabharakaran', 'Lab technician (Rtd)', 20000.00, 1, 15000.00, 18000.00, 'Potti Naidu st kvt Nagar vandavasi', 'Eekattuthangal', '2504240003', '45', '2', 'upload_files/candidate_tracker/97293836718_SamMosesDanny2.docx', NULL, '1', '2025-04-24', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Career Gap in between age around 29 years have exp in calling but not in relevant sales profile pressure handling in our insurance roles is tough ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-24 05:16:02', 154, '2025-04-24 01:14:26', 0, NULL, 1),
(24844, 'MUTHUPRIYA G', '6', '9600516275', '7094543563', 'muthupriyag34@gmail.com', '2002-03-26', 23, '2', '2', 'Ganesan', 'Farmer', 40000.00, 2, 20000.00, 22000.00, 'Madurai', 'Thambaram', '2504240004', '1', '2', 'upload_files/candidate_tracker/32776157646_Resume22122024115651AM.pdf', NULL, '1', '2025-04-24', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Was Ok With Communication And Have Experience In Vizza And Interested In Sales And We Shall Provide 14-15k As Salary And She Was Ok For Immediate Joining', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-24 05:19:06', 154, '2025-04-24 03:18:18', 0, NULL, 1),
(24845, 'KARTHIKEYAN V', '6', '9345281057', '7401373314', 'karthickdeepak67@gmail.com', '2003-01-05', 22, '2', '2', 'Vinayagam R', 'Steel Industries', 15000.00, 1, 0.00, 17000.00, '8/3 Ayyavu Aachari Street Choolai Chennai 112', '26/2 A P Road Choolai Chennai 112', '2504240005', '1', '1', 'upload_files/candidate_tracker/41971059644_KarthiKeyanVResume.pdf', NULL, '1', '2025-04-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for voice much looking for non voice process need to open up a lot will not sustain in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-24 06:59:46', 154, '2025-04-24 01:34:22', 0, NULL, 1),
(24846, 'asha', '4', '6381907502', '9566702929', 'ashatamil762@gmail.com', '1999-06-20', 25, '2', '1', 'nallathambi', 'business', 30000.00, 1, 17000.00, 17000.00, 'mannargudi', 'mannargudi', '2504240006', '1', '2', 'upload_files/candidate_tracker/99143801151_AshaResumenew.pdf', NULL, '1', '2025-04-24', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-24 07:20:16', 154, '2025-04-24 02:57:22', 0, NULL, 1),
(24847, 'Keerthana dhakshanamoorthy', '4', '8122864216', '9659878058', 'keerthanamoorthy3311@gmail.com', '1997-11-27', 27, '2', '1', 'S. Babu Sekar', 'Welder', 20000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2504240007', '1', '2', 'upload_files/candidate_tracker/46379319174_resume.docx', NULL, '1', '2025-04-24', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for job', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-24 08:32:58', 154, '2025-04-24 02:28:11', 0, NULL, 1),
(24848, '', '0', '9361311674', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504240008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-24 09:45:18', 0, NULL, 0, NULL, 1),
(24849, 'Vengatesan', '6', '6374332269', '9600462269', 'tvenkat532@gmail.com', '2002-05-23', 22, '2', '2', 'Thiruvengadam', 'Ekkatuthangal', 35000.00, 1, 0.00, 20000.00, 'Ekkatuthangal', 'Ekkatuthangal', '2504240009', '1', '1', 'upload_files/candidate_tracker/21489965236_WhiteandBlueProfessionalCVResume202504181320320000.pdf', NULL, '1', '2025-04-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication not clear have exp in non voice no graduation pressure handling doubts in our roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-24 10:48:47', 154, '2025-04-28 01:29:05', 0, NULL, 1),
(24850, 'Ravi J R', '6', '9902307794', '', 'ravishpoojary39@gmail.com', '1998-11-04', 26, '2', '2', 'Sumathi', 'Farmer', 30000.00, 2, 0.00, 25000.00, 'Yadavanadu village somavarpet tq kodagu', 'Madiwala', '2504240010', '1', '1', 'upload_files/candidate_tracker/18661385373_RaviGF.pdf', NULL, '1', '2025-04-25', 0, '', '5', '158', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is not good rejected by satish sir', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', 'Communication is not good rejected by satish sir', '', 'H1029', '', '55555', '5151', '1970-01-01', 1, '2025-04-24 10:53:03', 104, '2025-04-25 07:16:30', 0, NULL, 1),
(24851, '', '0', '6374442361', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-25 01:50:12', 0, NULL, 0, NULL, 1),
(24852, 'Reegana Begam Abdul Majith', '4', '6385586523', '7806842649', 'reeganabegam2003@gmail.com', '2003-09-28', 21, '2', '2', 'Sharmila', 'Telecaller', 100000.00, 2, 0.00, 20000.00, 'Saliyamangalam,vaaniyar street, Thanjavur', 'Saliyamangalam vaaniyar street Thanjavur', '2504250002', '1', '1', 'upload_files/candidate_tracker/2046657906_ReeganaResume1.pdf', NULL, '1', '2025-04-25', 0, '', '3', '59', '2025-05-02', 150000.00, '', '3', '2025-06-24', '2', 'Communication Ok Fresher sustainability doubts seems to much focus in non voice let us try in training', '1', '1', '1', '4', '5', '', '2', '2025-04-30', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2025-05-02', 1, '2025-04-25 04:54:22', 60, '2025-04-30 07:22:50', 0, NULL, 1),
(24853, 'TAMIL SELVAN R', '6', '9361350005', '9344749693', 'tamilshawn1128rpc@gmail.com', '2004-03-11', 21, '2', '2', 'RAJA & SELVI', 'Self employed', 200000.00, 2, 2500000.00, 300000.00, 'Korukkupet,Chennai', 'Korukkupet,Chennai', '2504250003', '1', '2', 'upload_files/candidate_tracker/53195609903_TAMILSELVANCVcompressedcompressed.pdf', NULL, '1', '2025-04-25', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-04-25 07:08:18', 104, '2025-04-25 07:13:33', 0, NULL, 1),
(24854, 'Nirmal kumar D', '24', '9940611420', '', 'Nirmal42020@gmail.com', '1999-08-20', 25, '2', '2', 'Dhandapani N', 'Bussiness', 40000.00, 1, 21500.00, 28500.00, 'Kodungaiyur', 'Kodungaiyur', '2504250004', '1', '2', 'upload_files/candidate_tracker/34804772921_Resume.docx1624173454187.pdf', NULL, '1', '2025-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-04-25 01:15:50', 1, '2025-04-25 01:22:53', 0, NULL, 1),
(24855, 'Meghana KR', '5', '8970197335', '', 'Meghakr2320@gmail.com', '2000-07-19', 24, '2', '2', 'SANTHOSH', 'Bank Employee', 60000.00, 1, 22000.00, 25000.00, 'Chitradurga', 'Peenya st, Near Jalahalli cross', '2504260001', '1', '2', 'upload_files/candidate_tracker/63662360067_MEGHANAKRCV1111.pdf', NULL, '3', '2025-04-26', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Arun cross check previous ctc with the documents based on we can decide for Dm or FSC', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1029', '', '55555', '5151', '1970-01-01', 1, '2025-04-26 03:49:55', 154, '2025-04-26 03:50:58', 0, NULL, 1),
(24856, 'R. Babithira', '4', '7200564766', '', 'babithira11th@gmail.com', '2004-06-06', 20, '2', '2', 'N. Raveendran/R.Vasanthi', 'Farmer', 25000.00, 1, 0.00, 12000.00, 'THANJAVUR', 'THANJAVUR', '2504260002', '1', '1', 'upload_files/candidate_tracker/89880387797_R.Babithiraresume.pdf', NULL, '1', '2025-04-26', 0, '', '3', '59', '2025-05-12', 150000.00, '', '3', '2025-06-30', '2', 'Communication Ok Fresher need ta train from scratch and confirm in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-05-12', 1, '2025-04-26 04:38:17', 60, '2025-05-10 05:50:27', 0, NULL, 1),
(24857, 'vaideeswari', '6', '7305637294', '8939318817', 'vaidheswarimunishkumar@gmail.com', '2003-11-27', 21, '2', '2', 'munish kumar', 'daily wages', 120000.00, 1, 0.00, 250000.00, 'namalwarpet', 'namalwarpet', '2504260003', '1', '1', 'upload_files/candidate_tracker/49976606002_VAIDHESWARIResume.pdf', NULL, '1', '2025-04-26', 0, '', '3', '59', '2025-04-28', 180000.00, '', '3', '2025-06-18', '2', 'Communication Good Fresher for our roles future FIL in star Health insurance Need to focus on data need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55645', '5151', '2025-04-28', 1, '2025-04-26 06:01:59', 60, '2025-04-26 07:10:48', 0, NULL, 1),
(24858, 'GHOUSIA M', '6', '7010864141', '9840107833', 'mghousia5@gmail.com', '2003-03-25', 22, '2', '2', 'MAHABOOB BASHA S', 'Daily wager', 15000.00, 1, 0.00, 18000.00, 'Redhills', 'Redhills', '2504260004', '1', '1', 'upload_files/candidate_tracker/38174829699_DOC20250404WA0007..pdf', NULL, '1', '2025-04-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-26 06:15:54', 154, '2025-04-26 12:53:15', 0, NULL, 1),
(24859, 'Swetha Vijay Kumar', '5', '9342330552', '6380112724', 'vswetha2601@gmail.com', '2001-11-26', 23, '2', '1', 'Dinesh', 'Editor', 30000.00, 1, 21000.00, 25000.00, 'T nagar', 'T nagar', '2504260005', '1', '2', 'upload_files/candidate_tracker/36116500161_RESUMESWETHA1.pdf', NULL, '1', '2025-04-28', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for FSC role\n ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55656', '55557', '1970-01-01', 1, '2025-04-26 10:09:37', 154, '2025-04-28 12:16:31', 0, NULL, 1),
(24860, '', '0', '9945018873', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504260006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-26 10:36:22', 0, NULL, 0, NULL, 1),
(24861, 'Nirmala', '6', '6381274463', '', 'Mnnirmala2001@gmail.com', '2001-10-20', 23, '2', '2', 'Muthupandian', 'Cooli', 84000.00, 1, 15000.00, 18000.00, 'Sivagiri, tenkasi district', 'Puducherry', '2504260007', '1', '2', 'upload_files/candidate_tracker/82269181551_NIRMALA.pdf', NULL, '1', '2025-04-26', 15, '', '3', '59', '2025-05-05', 204000.00, '', '3', '2025-07-01', '2', 'Communication Ok  can be trained in our roles need to check and confirm', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '4', '3', '', '', 'H1028', '', '55732', '5151', '2025-05-05', 1, '2025-04-26 10:39:57', 104, '2025-05-05 09:54:43', 0, NULL, 1),
(24862, 'Patan Muskhan Mubeen', '11', '6379074723', '8074013656', 'muskhanmubeen@gmail.com', '2003-10-21', 21, '2', '2', 'Shamsheer Khan', 'Framing', 1.50, 1, 18000.00, 25000.00, 'Guntur dist Andhra Pradesh', 'Kodambakkam Chennai', '2504270001', '1', '2', 'upload_files/candidate_tracker/92453253787_MuskhanResume.pdf', NULL, '1', '2025-04-28', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our recruitment team', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-04-27 04:26:54', 154, '2025-04-28 01:33:29', 0, NULL, 1),
(24863, 'Nachiappan Mathankumar', '5', '9486357211', '', 'nachiappan260696@gmail.com', '1996-06-26', 28, '2', '2', 'Murugesan', 'Driver', 29000.00, 1, 17000.00, 19000.00, 'Virudhunagar', 'Virudhunagar', '2504280001', '1', '2', 'upload_files/candidate_tracker/3788352248_MathanResume1.pdf', NULL, '1', '2025-04-29', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for FSC \n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-04-28 03:51:32', 154, '2025-04-29 12:33:09', 0, NULL, 1),
(24864, 'Thangavel v', '6', '9385765628', '', 'thangavelveeran420@gmail.com', '2000-12-26', 24, '2', '2', 'Veeran', 'Daily labour', 86000.00, 2, 16500.00, 21000.00, 'Vellithiryppur', 'Vellithiryppur', '2504280002', '1', '2', 'upload_files/candidate_tracker/67362574979_DOC20241004WA0032.2.docx', NULL, '1', '2025-04-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok but slang not much comfort also no convincing understanding is not much good will not hnadle our work pressure he is completely into field ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-28 04:02:21', 154, '2025-04-28 01:27:19', 0, NULL, 1),
(24865, 'S.SANJAI MOORTHY', '6', '9003569255', '9688275561', 'sanjaimoorthy7@gmail.com', '2003-07-25', 21, '2', '2', 'M.Sanker', 'Daily wages', 7000.00, 1, 0.00, 15000.00, 'Ganapathi Pattu, Villupuram Dt', 'Kovilambakkam, Chengalapattu Dt.', '2504280003', '1', '1', 'upload_files/candidate_tracker/23893181930_Resume.pdf', NULL, '1', '2025-04-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication No not suitable for sales calling he much open for non voice only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-28 04:26:40', 154, '2025-04-28 01:28:31', 0, NULL, 1),
(24866, 'M. Divyesh', '6', '6374845053', '', 'divyeshdivyesh8494@gmail.com', '2006-11-13', 18, '2', '2', 'M. Eswari', 'Passed away', 20000.00, 1, 0.00, 17000.00, 'No. 22 Patel Street North Prakash Nagar', 'No22 Patel Street North Prakash Nagar', '2504280004', '1', '1', 'upload_files/candidate_tracker/48230689279_Resume.docx', NULL, '1', '2025-04-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance up down 72 kms 2026 passing graduate will not sustain in our role also timing is not much comfort for him', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-28 04:55:28', 154, '2025-04-28 01:29:56', 0, NULL, 1),
(24867, 'NanthaKumar Velmurugan', '6', '9384561781', '9788163496', 'nanthanaveen1@gmail.com', '2003-12-17', 21, '2', '2', 'K.Velmurugan', 'Coolie', 10000.00, 1, 12000.00, 17500.00, 'Madurai', 'Chennai', '2504280005', '1', '2', 'upload_files/candidate_tracker/87141093126_Resume.pdf', NULL, '1', '2025-04-28', 0, '', '3', '59', '2025-04-29', 204000.00, '', NULL, '2025-05-06', '2', 'Communication Ok Hav exp in Vizza fr 10 months can be trained in our roles already friend is working in syed team from same company Let us try in  training an confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '2025-04-29', 1, '2025-04-28 05:37:55', 60, '2025-04-29 09:49:15', 0, NULL, 1),
(24868, 'Nithish R', '6', '7550124783', '8124362871', 'rnithish73@gmail.com', '2004-03-12', 21, '2', '2', 'Bhuvaneshwari', 'House wife', 17000.00, 1, 17000.00, 18000.00, 'chennai', 'chennai', '2504280006', '1', '2', 'upload_files/candidate_tracker/21034343491_CV2024092316524811.pdf', NULL, '1', '2025-04-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average Left the initial job only due to pressure and target also not much comfort in sales time being he is trying in this profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-28 05:38:36', 154, '2025-04-28 01:30:36', 0, NULL, 1),
(24869, 'R.ATHIRUBAN', '6', '9952189082', '', 'athiruban.2419@gmail.com', '2002-04-24', 23, '2', '2', 'Raja', 'Daily worker', 10000.00, 0, 0.00, 19000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2504280007', '1', '1', 'upload_files/candidate_tracker/34868175828_Athiresume.pdf', NULL, '1', '2025-04-28', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Avearge need to check for Thanjavur location let us interview and confirm', '5', '1', '', '1', '8', '', '2', '2025-04-30', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-28 05:43:52', 154, '2025-04-28 01:31:28', 0, NULL, 1),
(24870, 'N. saivigneshwar', '4', '6379187296', '8428187296', 'svigneshwar69@gmail.com', '2000-09-15', 24, '2', '2', 'Nagaraj', 'Tasmac', 40000.00, 0, 20500.00, 25000.00, 'Chennai', 'Chennai', '2504280008', '1', '1', 'upload_files/candidate_tracker/38600019123_SeniorCustomerServiceExecutive2.pdf', NULL, '1', '2025-04-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-28 06:05:51', 154, '2025-04-29 12:53:07', 0, NULL, 1),
(24871, 'Nikita Dodamani', '11', '9035268932', '9945980002', 'nikitadodamani99@gmail.com', '1998-07-31', 26, '6', '2', 'Vivekananda', 'HR recruiter', 4.00, 2, 0.00, 20.00, 'BIJAPUR(KAR)', 'BIJAPUR(KAR)', '2504280009', '', '1', 'upload_files/candidate_tracker/81423810022_HRjobresume.pdf', NULL, '1', '2025-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-28 06:27:04', 1, '2025-04-28 06:30:51', 0, NULL, 1),
(24872, 'Nageswari', '4', '9003469731', '', 'Nageswari6343@gmail.com', '2002-12-31', 22, '2', '2', 'Boobathi', 'Dailywages', 15000.00, 1, 0.00, 20000.00, 'Papanasam', 'Papanasam', '2504280010', '1', '1', 'upload_files/candidate_tracker/63070101387_Nageswari.pdf', NULL, '1', '2025-04-28', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-28 06:51:11', 154, '2025-04-28 03:19:18', 0, NULL, 1),
(24873, '', '0', '7904250705', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504280011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-28 06:52:15', 0, NULL, 0, NULL, 1),
(24874, 'Anuratha', '4', '8248555908', '', 'anuratharamesh50@gmail.com', '2004-11-06', 20, '2', '2', 'Suriyanarayanan', 'Wage', 90000.00, 1, 0.00, 15000.00, '6th Street, anna colony ,thanjavur', '6th Street, anna colony ,thanjavur', '2504280012', '1', '1', 'upload_files/candidate_tracker/69623460754_AnuradhaResume.pdf', NULL, '1', '2025-04-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suite for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-28 06:52:58', 154, '2025-04-30 10:30:29', 0, NULL, 1),
(24875, 'R Mohamed Asikin', '13', '7339510197', '8807781722', 'mohamedasiky20@gmail.com', '2000-07-02', 24, '4', '2', 'M. Rubaideen', 'Driver', 19000.00, 2, 0.00, 390000.00, 'Ramanathapuram', 'Royapettah Chennai', '2504280013', '', '1', 'upload_files/candidate_tracker/46468599775_MohamedAsikincanva.pdf', NULL, '1', '2025-04-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-04-28 09:37:55', 154, '2025-04-28 03:20:02', 0, NULL, 1),
(24876, 'Mahesh P', '33', '7795761489', '', 'maheshprakash625@gmail.com', '1999-12-21', 25, '3', '2', 'prakash dv', 'employee', 50000.00, 1, 20000.00, 28000.00, 'bangarpet', 'jp nagar sixth phase', '2504280014', '', '2', 'upload_files/candidate_tracker/57359146973_mahesh2.pdf', NULL, '1', '2025-04-29', 60, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-28 09:50:30', 1, '2025-04-28 11:04:05', 0, NULL, 1),
(24877, 'Vasundarya. S', '5', '9345154981', '8144855034', 'vasundaryasundar@gmail.com', '2002-11-21', 22, '2', '2', 'S. Sundarakumar(Father), S. Thayalini(Mother)', 'Business', 6000.00, 1, 0.00, 20000.00, 'Thuraiyur(Trichy district)', 'Porur(Chennai)', '2504280015', '1', '1', 'upload_files/candidate_tracker/17701969330_vasundarya.pdf', NULL, '1', '2025-04-29', 0, '', '3', '59', '2025-05-05', 216000.00, '', '3', '2025-06-28', '2', 'Communication Good and confident to handle this profile need to check in training and confirm for this role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55656', '55557', '2025-05-05', 1, '2025-04-28 10:07:11', 60, '2025-05-03 11:03:45', 0, NULL, 1),
(24878, 'R  VIGNESH', '4', '9360739196', '8807233768', 'vigneshrlsv18@gmail.com', '2002-07-15', 22, '2', '2', 'Rama moorthy s', 'Driver', 45000.00, 1, 18500.00, 20000.00, 'Ramanathapuram', 'Chennai', '2504290001', '1', '2', 'upload_files/candidate_tracker/86957714998_ResumeVigneshR3.pdf', NULL, '1', '2025-04-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-04-29 02:09:08', 154, '2025-04-29 12:44:44', 0, NULL, 1),
(24879, 'L.Ameeshayahini', '4', '8807432240', '6380227236', 'ameeshayahini02@gmail.com', '2002-12-13', 22, '2', '2', 'Leonartgeorge.J', 'Farmer', 7000.00, 3, 0.00, 13000.00, '1/21,Matha Kovil street, Eachangudi.', '1/21,Matha Kovil street, Eachangudi.', '2504290002', '1', '1', 'upload_files/candidate_tracker/48173599875_Ameesharesume.pdf', NULL, '1', '2025-04-29', 0, '', '3', '59', '2025-05-02', 150000.00, '', '3', '2025-06-30', '2', 'Communication fresher for our sales calling need to check in training and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-05-02', 1, '2025-04-29 04:15:16', 60, '2025-05-02 07:16:49', 0, NULL, 1),
(24880, 'Malarvizhi.T', '6', '8925384034', '8925456176', 'Malarvizhit@gmail.com', '2002-11-27', 22, '2', '2', 'Thiyagarajan.s', 'Watchman', 7000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2504290003', '1', '2', 'upload_files/candidate_tracker/3592756243_MALARVIZHI.docx', NULL, '1', '2025-04-29', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-04-29 04:59:54', 154, '2025-04-29 12:38:23', 0, NULL, 1),
(24881, 'Hari kRishnan', '6', '7092769522', '7395905729', 'khari7543@gmail.com', '2002-10-29', 22, '2', '2', 'Selvaraj', 'Audit assistant', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Kolathur', '2504290004', '1', '2', 'upload_files/candidate_tracker/86391721835_CV2024121622263722.pdf', NULL, '1', '2025-04-29', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was not good at communication and  not even trying to talk and will not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-29 05:00:28', 154, '2025-04-29 12:43:19', 0, NULL, 1),
(24882, 'Gopi M', '13', '7904856405', '9344552072', 'Gopiyadhav321@gmail.com', '2002-06-25', 22, '3', '2', 'Munirathinam', 'Farmer', 20.00, 1, 0.00, 20.00, 'Thiruvallur', 'Thiruvallur', '2504290005', '', '1', 'upload_files/candidate_tracker/65335216704_GopiYadav3.pdf', NULL, '1', '2025-04-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-04-29 05:36:51', 1, '2025-04-29 05:44:15', 0, NULL, 1),
(24883, 'A Aishwarya', '6', '9345392909', '', 'aisha160701@gmail.com', '2001-07-16', 23, '2', '2', 'Algarswami swami', 'Telecalling', 80000.00, 2, 12500.00, 16000.00, 'Chennai', 'Thiruvottiyur', '2504290006', '1', '2', 'upload_files/candidate_tracker/60382590829_Resume1.pdf', NULL, '1', '2025-04-29', 0, '', '3', '59', '2025-05-05', 192000.00, '', '', '2025-05-17', '2', 'Communication Ok Can be trained in our roles and check in training', '5', '1', '1', '4', '6', '1', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '2025-05-05', 1, '2025-04-29 06:56:07', 104, '2025-05-05 09:48:09', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24884, 'Nathiya perumal', '6', '6369251606', '8807953010', 'nathiyaperumal55@gmail.com', '2002-04-29', 23, '2', '2', 'Perumal', 'Corporate contractor', 20000.00, 2, 0.00, 165000.00, 'Tiruchengode', 'Saidapet', '2504290007', '1', '2', 'upload_files/candidate_tracker/79737598378_nathiya11.pdf', NULL, '1', '2025-04-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, communication good, confirm the joining date xxamp salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55732', '5151', '1970-01-01', 1, '2025-04-29 06:56:07', 154, '2025-04-30 04:13:34', 0, NULL, 1),
(24885, '', '0', '9489646681', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504290008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-29 07:09:13', 0, NULL, 0, NULL, 1),
(24886, '', '0', '9843915752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504290009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-29 07:09:17', 0, NULL, 0, NULL, 1),
(24887, 'Naveen Kannan', '6', '9360309819', '8807014269', 'nockoutnaveenvijay236@gmail.com', '2003-06-09', 21, '3', '2', 'Siva Kumar', 'Building Contractor', 1.50, 0, 0.00, 16000.00, 'Coimbatore', 'Btm layout 2nd stage', '2504290010', '', '1', 'upload_files/candidate_tracker/16716743735_NaveenKannanATSResume.pdf', NULL, '1', '2025-04-29', 0, '', '5', '158', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No proper Communication', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-04-29 07:09:20', 157, '2025-04-29 01:31:02', 0, NULL, 1),
(24888, 'Mahalingam', '6', '7010098824', '', 'mahalingam24042004@gmail.com', '2004-04-24', 21, '3', '2', 'M. Paramasivam', 'Car Driver', 20000.00, 1, 0.00, 18000.00, 'Maraimalai Nagar, Chengalpattu', 'Maraimalai Nagar, Chengalpattu', '2504290011', '', '1', 'upload_files/candidate_tracker/28600306223_CV2025042813383674.pdf', NULL, '1', '2025-04-29', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-04-29 07:18:49', 154, '2025-04-29 01:07:02', 0, NULL, 1),
(24889, 'R.Aarthi', '6', '9361533852', '9176565514', 'devideviraji88@gmail.com', '2004-11-26', 20, '2', '2', 'J.Raji', 'Molding', 12000.00, 1, 0.00, 18000.00, 'Chennai', 'Tondiarpet', '2504290012', '1', '1', 'upload_files/candidate_tracker/85211539219_Scanned20250426163740.pdf', NULL, '1', '2025-04-29', 0, '', '3', '59', '2025-05-02', 180000.00, '', '1', '1970-01-01', '2', 'Fresher Communication Ok Need to check in traiing and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '2025-05-02', 1, '2025-04-29 07:30:51', 60, '2025-05-02 07:14:00', 0, NULL, 1),
(24890, 'Nainavathi.i', '6', '9150161485', '', 'nainavathii@gmail.com', '2004-07-27', 20, '2', '2', 'I.Parameshwari', 'House wife', 16000.00, 1, 0.00, 20000.00, 'Korukkupet', 'Chennai', '2504290013', '1', '1', 'upload_files/candidate_tracker/24069824021_Scanned20250429131011.pdf', NULL, '1', '2025-04-29', 0, '', '3', '59', '2025-05-02', 180000.00, '', '3', '2025-05-07', '2', 'Selected for rajasekar team.', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '2025-05-02', 1, '2025-04-29 07:32:37', 154, '2025-05-05 02:26:10', 0, NULL, 1),
(24891, 'Lakshmi Sruthi', '4', '8489010235', '9659336646', 'klakshmisuruthi26@gmail.com', '2001-12-26', 23, '2', '2', 'Kumar', 'Agriculture', 100000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2504290014', '1', '1', 'upload_files/candidate_tracker/47334129537_k.lakshmisuruthiResume.pdf', NULL, '1', '2025-04-29', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-04-29 09:26:56', 154, '2025-04-29 03:01:21', 0, NULL, 1),
(24892, 'R. Sabesh', '4', '7904510978', '7305557105', 'Kappuk44@gmail.com', '2001-11-23', 23, '2', '2', 'Ragunathan.G', 'Fisherman', 40000.00, 0, 0.00, 16000.00, 'Tondiyarpet', 'Tondiyarpet', '2504290015', '1', '1', 'upload_files/candidate_tracker/4812310869_sabeshmargedpdfcopy.pdf', NULL, '1', '2025-04-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-04-29 02:22:38', 1, '2025-04-30 02:13:18', 0, NULL, 1),
(24893, '', '0', '8925049482', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2504290016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-04-29 04:36:29', 0, NULL, 0, NULL, 1),
(24894, 'kedaranatha biradara', '33', '9964715332', '', 'kedarbiradar3@gmail.com', '2001-06-11', 23, '5', '2', 'nagashetti', 'form', 15000.00, 1, 0.00, 400000.00, 'navalaspur bidar kar', 'k narayanpur bengalo', '2504300001', '', '1', 'upload_files/candidate_tracker/58797770340_kedarresume.pdf', NULL, '1', '2025-04-30', 0, '', '4', '157', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate needs time ', '4', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-04-30 03:51:46', 157, '2025-04-30 12:03:10', 0, NULL, 1),
(24895, 'abdul ajis', '6', '8098099624', '7358436778', 'aamjath98@gmail.com', '2010-04-30', 0, '4', '2', 'kurshith begum', 'house wife', 20000.00, 3, 22000.00, 24000.00, 'hennai', 'hennai', '2504300002', '', '2', 'upload_files/candidate_tracker/21787104742_AbdulAJISresume.pdf', NULL, '1', '2025-04-30', 0, '', '8', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'did not turn up for further rounds', '5', '1', '', '1', '8', '', '2', '2025-05-02', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-04-30 05:32:15', 154, '2025-04-30 12:32:46', 0, NULL, 1),
(24896, 'Shailesh kumar MG', '6', '7338857237', '7397105445', 'shaileshmg8545@gmail.com', '2002-07-30', 22, '2', '2', 'Muruganantham k', 'Business', 60000.00, 1, 0.00, 21000.00, 'Chennai', 'Chennai', '2504300003', '1', '1', 'upload_files/candidate_tracker/59913521545_CopyofBlueandGraySimpleProfessionalCVResume1.pdf', NULL, '1', '2025-04-30', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-04-30 05:58:13', 154, '2025-04-30 12:43:25', 0, NULL, 1),
(24897, 'L. Monika', '11', '9344735537', '7358615273', 'monikalogaiyan456@gmail.com', '2001-04-05', 24, '2', '2', 'V. K. Logaiyan', 'Manager', 400000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2504300004', '1', '1', 'upload_files/candidate_tracker/95619574109_MonikaLResume1.pdf', NULL, '1', '2025-04-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-30 06:26:01', 154, '2025-04-30 12:44:08', 0, NULL, 1),
(24898, 'SANTHOSH D', '11', '7200705426', '9344735537', 'santhoshdavid111@gmail.com', '2004-03-29', 21, '2', '2', 'David Gnana Pandian G', 'Hotel Management', 400000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2504300005', '1', '1', 'upload_files/candidate_tracker/67048605117_SanthoshDResume.pdf', NULL, '1', '2025-04-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-30 06:28:09', 154, '2025-04-30 12:44:28', 0, NULL, 1),
(24899, 'Sambavi', '6', '7339029376', '', 'sambavi3803@gmail.com', '2003-08-03', 21, '2', '2', 'Sivaperumal M', 'Farmer', 10000.00, 1, 0.00, 17000.00, 'North Street puliyur post kullanchavadi Cuddalore', 'Svs nagar 4th Street valsarvakkam', '2504300006', '1', '1', 'upload_files/candidate_tracker/5827926582_samresume.pdf', NULL, '1', '2025-04-30', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not ok  with communication and not sure about stability ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-30 06:48:40', 154, '2025-04-30 01:16:13', 0, NULL, 1),
(24900, 'Sabitha Soundarrajan', '6', '7305718168', '9629475116', 'sabitha.s2309@gmail.com', '2003-09-23', 21, '2', '2', 'Soundarrajan N', 'Farmer', 12000.00, 1, 0.00, 17000.00, 'Mariyamman Kovil Street Rampakkam Villupuram', 'Svs nagar valasaravakkam chennai', '2504300007', '1', '1', 'upload_files/candidate_tracker/81991557442_SABITHA1.pdf', NULL, '1', '2025-04-30', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for our roles\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-30 06:48:51', 154, '2025-04-30 01:27:04', 0, NULL, 1),
(24901, 'Sujitha.s', '6', '8667238543', '', 'Sujiselavm845@gmail.com', '2003-09-29', 21, '2', '2', 'Tamilselvi', 'Teacher', 15000.00, 1, 0.00, 17000.00, 'Cuddalore', 'Chennai', '2504300008', '1', '1', 'upload_files/candidate_tracker/98630593183_resume.pdf', NULL, '1', '2025-04-30', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-30 06:48:55', 154, '2025-04-30 01:27:48', 0, NULL, 1),
(24902, 'Harini Murugan', '6', '8122631889', '', 'Hariniriniiiii22@gmail.com', '2003-11-03', 21, '2', '2', 'Uma', 'Cable tv operater', 20000.00, 2, 0.00, 17000.00, 'Vriddhichalam', 'Svs nagar, valasaravakkam, Chennai', '2504300009', '1', '1', 'upload_files/candidate_tracker/45371553378_Hariniresume.pdf', NULL, '1', '2025-04-30', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-04-30 06:49:48', 154, '2025-04-30 01:28:41', 0, NULL, 1),
(24903, 'Boopathy sundaramoorthy', '20', '7538882602', '', 'sbells471@gmail.com', '1997-05-25', 27, '2', '2', 'Sundaramoorthy', 'Business', 4.50, 1, 17000.00, 20000.00, 'Gandhi market, Trichy', 'Alandur, chennai', '2504300010', '1', '2', 'upload_files/candidate_tracker/91328499814_S.BoopathyResume01.pdf', NULL, '1', '2025-05-02', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-04-30 11:41:40', 104, '2025-05-02 05:15:02', 0, NULL, 1),
(24904, 'Mary swapna', '6', '7305300312', '', 'cutesopnaj@gmail.com', '2004-11-21', 20, '2', '2', 'Juliet mary', 'Cooking', 10.00, 1, 0.00, 18.00, 'St.thomas mount', 'St Thomas mount', '2504300011', '1', '2', 'upload_files/candidate_tracker/19040428967_RmarySwapna1.pdf', NULL, '1', '2025-05-02', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', 'She Left without attend second round due to stomach pain', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-04-30 12:04:46', 104, '2025-05-02 05:18:58', 0, NULL, 1),
(24905, 'Sneha', '6', '9361313818', '9047841817', 'snehajansirani@gmail.com', '2002-05-23', 22, '2', '2', 'C. Selvakumar', 'Daily wages', 15000.00, 1, 0.00, 16000.00, 'Cuddalore district', 'Cuddalore District', '2504300012', '1', '1', 'upload_files/candidate_tracker/76420864626_snehas.pdf', NULL, '1', '2025-05-02', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was bold and good at communication and also  job needed and ok for immediate joining', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-04-30 12:17:27', 104, '2025-05-02 05:12:41', 0, NULL, 1),
(24906, '', '0', '9965178901', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505020001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-02 04:39:24', 0, NULL, 0, NULL, 1),
(24907, 'Alvin David', '31', '9342125465', '9788222341', 'allwindavid064@gmail.com', '2003-08-24', 21, '3', '2', 'Sakthi Arokiam', '72,000', 20000.00, 1, 0.00, 180000.00, 'Trichy', 'Chennai Velachery', '2505020002', '', '1', 'upload_files/candidate_tracker/387172226_AlvinDavidBCA20246.9CGPAFrontendDeveloper.pdf', NULL, '1', '2025-05-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-02 05:01:59', 1, '2025-05-02 05:06:55', 0, NULL, 1),
(24908, 'Harshiniya. K', '4', '9363010437', '9677580287', 'harshiniyak125@gmail.com', '2004-04-10', 21, '2', '2', 'Selvi', 'Former', 10000.00, 1, 0.00, 15000.00, 'Thirumanur', 'Thirumanur', '2505020003', '1', '1', 'upload_files/candidate_tracker/50740912794_harshiniya.pdf', NULL, '1', '2025-05-02', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT SUITE FOR TELESALES', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-02 05:03:38', 154, '2025-05-02 11:23:17', 0, NULL, 1),
(24909, 'pandian', '31', '8667200399', '9789390891', 'pandiyan00049@gmail.com', '2001-06-27', 23, '3', '2', 'ravi', '70,000', 20000.00, 1, 0.00, 180000.00, 'chennai', 'ponneri', '2505020004', '', '1', 'upload_files/candidate_tracker/42578779476_PandiyanBSCChemistry2021GCPA60PythonFullStack.pdf', NULL, '1', '2025-05-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-02 05:25:25', 1, '2025-05-02 05:36:57', 0, NULL, 1),
(24910, 'Irudaya alen', '31', '6369729776', '8940223467', 'alen24139@gmail.com', '2004-05-23', 20, '3', '2', 'Sahaya paul Raj', 'Farmer', 14000.00, 1, 0.00, 200000.00, 'Sivaganga', 'Valachary', '2505020005', '', '1', 'upload_files/candidate_tracker/92038138811_IRUDAYAALENSBCOMCA2024CGPA7.30FrontEndDeveloper.pdf', NULL, '1', '2025-05-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-02 05:31:06', 154, '2025-05-02 11:30:29', 0, NULL, 1),
(24911, 'Yuvaraj p', '31', '9994971985', '9585998530', 'yuvaraj7503@gmail.com', '2004-05-07', 20, '3', '2', 'Ponnusamy', 'Front End developer', 10000.00, 1, 0.00, 2.50, 'Dharamapuri', 'Guindy', '2505020006', '', '1', 'upload_files/candidate_tracker/38404071718_YuvarajPBSCcs2024CGPA7.8FrontEndDeveloper.pdf', NULL, '1', '2025-05-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-02 05:43:27', 1, '2025-05-02 05:52:41', 0, NULL, 1),
(24912, 'kamal . k', '31', '8754245838', '', 'ramkamal5886@gmail.com', '2000-11-04', 24, '3', '2', 'kannan', 'farming', 16000.00, 2, 0.00, 130000.00, 'chennai', 'santhosapuram', '2505020007', '', '1', 'upload_files/candidate_tracker/66551416605_kamalM.Sc.cs20237.1CGPApythonfullstackdeveloper.pdf', NULL, '1', '2025-05-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-02 05:48:51', 1, '2025-05-02 05:58:21', 0, NULL, 1),
(24913, 'Epsiba A', '31', '9360190427', '', 'epsirajan13@gmail.com', '2010-05-02', 0, '3', '2', 'Arockarajan C', 'Driver', 25000.00, 2, 0.00, 14000.00, 'chennai', 'chennai', '2505020008', '', '1', 'upload_files/candidate_tracker/1502683461_EpsibaABCAJavafullstackResume.pdf', NULL, '1', '2025-05-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-02 05:59:04', 1, '2025-05-02 06:28:22', 0, NULL, 1),
(24914, 'Safrin', '6', '9551802984', '9566273174', 's.safrin52002@gmail.com', '2002-11-05', 22, '2', '2', 'Shajahan', 'MTC employee', 18000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2505020009', '1', '1', 'upload_files/candidate_tracker/41093635001_SafrinResume.pdf', NULL, '1', '2025-05-02', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for sales team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-05-02 06:07:47', 154, '2025-05-02 03:14:36', 0, NULL, 1),
(24915, 'mohammed bayas noorul alam', '6', '9080784521', '9043788509', 'bayasmohammed867@gmail.com', '2003-08-15', 21, '2', '2', 'issath nisha', 'house wife', 50000.00, 2, 15000.00, 20000.00, 'thoothukudi', 'villivakkam .chennai', '2505020010', '1', '2', 'upload_files/candidate_tracker/34257268873_AdobeScan2May20251.pdf', NULL, '1', '2025-05-02', 0, '', '3', '59', '2025-05-08', 216000.00, '', '3', '2025-06-04', '2', 'Communication Ok   can be trained in our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '2025-05-08', 1, '2025-05-02 06:14:16', 60, '2025-05-07 07:14:43', 0, NULL, 1),
(24916, 'S.madhu Sri', '6', '9884910116', '9884120116', 'MADHUSRI010105@gmail.com', '2004-08-16', 20, '2', '2', 'Uma', 'Home maker', 15000.00, 1, 0.00, 20000.00, 'Foxen street perambur', 'Foxen street perambur', '2505020011', '45', '1', 'upload_files/candidate_tracker/84429115975_madhuresume.pdf', NULL, '1', '2025-05-02', 0, '', '3', '59', '2025-05-05', 180000.00, '', '3', '2025-05-29', '2', 'Communication Ok Energetic and talkative but not sure on our process should check in training and confirm', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2025-05-05', 1, '2025-05-02 06:31:15', 104, '2025-05-05 09:37:51', 0, NULL, 1),
(24917, 'ahmed jassim', '11', '8939490004', '7373198969', 'raffiqjassim@gmail.com', '2003-11-10', 21, '6', '2', 'mohammed rafi', 'business', 90000.00, 1, 0.00, 1.00, 'Chennai', 'Chennai', '2505020012', '', '1', 'upload_files/candidate_tracker/80986645958_JassimsCV2025.pdf', NULL, '1', '2025-05-02', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our recruitment team', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '5151', '1970-01-01', 1, '2025-05-02 06:47:27', 154, '2025-05-02 04:36:03', 0, NULL, 1),
(24918, 'Charulavanya', '6', '7448474526', '', 'charubaskar940@gmail.com', '2005-07-31', 19, '2', '2', 'Baskar', 'Catering', 20000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2505020013', '1', '1', 'upload_files/candidate_tracker/62616134194_B.Charulavanya1746084624844.pdf', NULL, '1', '2025-05-02', 0, '', '3', '59', '2025-05-09', 156000.00, '', '3', '2025-07-31', '2', 'Communication Ok Fresher for our roles can be trained in our process and check in training', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-05-09', 1, '2025-05-02 07:44:57', 60, '2025-05-08 06:53:21', 0, NULL, 1),
(24919, 'Bhumika Y Golecha', '6', '9176323647', '9841455989', 'golechabhumi@gmail.com', '2004-06-05', 20, '2', '2', 'Yuvaraj', 'Business', 60000.00, 2, 0.00, 18000.00, 'Sowcarpet', '23/26 arunachalem street', '2505020014', '1', '1', 'upload_files/candidate_tracker/82310498236_Imaged4284737NMNT2.0Result.pdf', NULL, '1', '2025-05-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-02 07:47:32', 104, '2025-05-02 05:25:21', 0, NULL, 1),
(24920, 'Santosh v', '8', '8056290303', '9840741861', 'Santoshritz90@gmail.com', '2003-09-26', 21, '3', '2', 'Parents', 'Sales man', 120000.00, 1, 16000.00, 20000.00, 'Perungalathur', 'Perungalathur', '2505020015', '', '2', 'upload_files/candidate_tracker/45231833061_santoshresume3removed11.pdf', NULL, '1', '2025-05-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-02 11:31:15', 1, '2025-05-02 11:37:40', 0, NULL, 1),
(24921, 'S Pavithra', '6', '9080156328', '9486579590', 'spavithraparamu@gmail.com', '2000-03-20', 25, '2', '2', 'R Sankar', 'Hydrolic Mechanic', 17000.00, 1, 20000.00, 27000.00, 'Cuddalore', 'Cuddalore', '2505030001', '1', '2', 'upload_files/candidate_tracker/7061500315_FinalCVPavithra.pdf', NULL, '1', '2025-05-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-05-03 06:04:58', 154, '2025-05-08 09:22:01', 0, NULL, 1),
(24922, 'VIJAYALAKSHMI G', '11', '8220289645', '', 'Vijiigopz@gmail.com', '2003-11-10', 21, '3', '2', 'Gopalakrishnan.S', 'DG operator', 20000.00, 1, 0.00, 10000.00, 'Manali, Chennai-600068', 'Manali, Chennai-600068', '2505030002', '', '1', 'upload_files/candidate_tracker/17001221817_VGRESUME.pdf', NULL, '1', '2025-05-03', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our recruitment team', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-05-03 07:59:17', 154, '2025-05-07 06:37:22', 0, NULL, 1),
(24923, '', '0', '9025496023', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505030003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-03 12:36:36', 0, NULL, 0, NULL, 1),
(24924, 'Kathiravan murali', '6', '8088819240', '', 'Kathiravan.murali09@gmail.com', '2002-08-09', 22, '2', '2', 'Murali', 'Driver', 50000.00, 1, 16000.00, 22000.00, 'Salem', 'Poonamallee', '2505030004', '1', '2', 'upload_files/candidate_tracker/69713324132_Kathiravanresume202.pdf', NULL, '1', '2025-05-05', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for FSC', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55656', '55557', '1970-01-01', 1, '2025-05-03 12:39:10', 154, '2025-05-07 06:52:43', 0, NULL, 1),
(24925, 'm.anitha', '4', '6383538754', '7010297314', 'anithamurugesan2004@gmail.com', '2004-10-28', 20, '2', '2', 'Mother name:M.Muthulakshmi', 'farmer', 15000.00, 1, 0.00, 12000.00, '72/4,voc nagar,pudur, orathanadu union office', '72/4 ,voc nagar , pudur, orathanadu union office', '2505050001', '1', '1', 'upload_files/candidate_tracker/27123095983_anitha.resume.pdf', NULL, '1', '2025-05-05', 0, '', '3', '59', '2025-05-12', 150000.00, '', '3', '2025-06-30', '1', 'Communication Ok Fresher need to check in training and confirm', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-05-12', 1, '2025-05-05 12:15:15', 154, '2025-05-12 10:14:58', 0, NULL, 1),
(24926, 'Aruna M', '2', '7339079437', '8056684862', 'arunapoopathi@gmail.com', '1993-11-27', 31, '3', '1', 'J.Shanmugasundaram', 'Marketing', 20.00, 1, 0.00, 20.00, 'Tirunelveli', 'Chennai', '2505050002', '', '1', 'upload_files/candidate_tracker/26348774677_ResumeArunaPoopathi1.pdf', NULL, '1', '2025-05-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-05 05:35:39', 1, '2025-05-05 05:45:59', 0, NULL, 1),
(24927, 'jeevitha', '6', '9150448989', '', 'jeevithamurugan04@gmail.com', '2004-11-17', 20, '2', '2', 'murugan', 'car drive', 10000.00, 1, 0.00, 15000.00, 'ayanavaram', 'ayanavaram', '2505050003', '1', '1', 'upload_files/candidate_tracker/14363742330_Resumewithphoto.pdf', NULL, '1', '2025-05-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'GOOD SKILL. but not fit sales filed.  will analysis 7 days training days', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2025-05-05 05:38:37', 154, '2025-05-07 09:59:45', 0, NULL, 1),
(24928, 'Aravindkumar', '6', '7299148493', '', 'arvindharvin95@gmail.com', '1995-03-08', 30, '2', '2', 'Baskaran', 'Ac mechanic', 50000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2505050004', '1', '2', 'upload_files/candidate_tracker/6115277602_AravindkumarResume.pdf', NULL, '1', '2025-05-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-05 06:17:36', 154, '2025-05-05 06:33:55', 0, NULL, 1),
(24929, 'Priyadharshini.R', '6', '9840907996', '9994877169', 'Priyaravipriyaravi56@gmail.com', '2004-07-11', 20, '2', '2', 'Ravi.k', 'Car Driver', 12000.00, 1, 0.00, 18000.00, 'Ayanavaram', 'Ayanavaram', '2505050005', '1', '1', 'upload_files/candidate_tracker/22944451068_PDFReader202504282241.pdf', NULL, '3', '2025-05-06', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was ok with communication but not at all good for sales and responding slowly like less intersted and also had ideas in sports related profession', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2025-05-05 07:14:18', 154, '2025-05-07 09:57:43', 0, NULL, 1),
(24930, 'Ashwini P', '6', '9790964109', '9840631109', 'ashwiniiprabhakaran2004@gmail.com', '2004-06-15', 20, '2', '2', 'Prabhakaran S', 'Driver', 9000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2505050006', '1', '1', 'upload_files/candidate_tracker/20737286537_Document.docx', NULL, '1', '2025-05-06', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-05-05 07:22:58', 154, '2025-05-07 06:26:41', 0, NULL, 1),
(24931, 'Shilpa', '6', '9363177092', '7845604059', 'shilpajerry2002@gmail.com', '2002-07-05', 22, '2', '2', 'Lawrance', 'Security', 40000.00, 2, 20000.00, 22000.00, 'Chennai', 'Chennai', '2505050007', '1', '2', 'upload_files/candidate_tracker/24804679299_ShilpaResume...pdf', NULL, '1', '2025-05-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-05 09:39:20', 154, '2025-05-05 05:49:15', 0, NULL, 1),
(24932, 'Arichandran thiyagarajan', '4', '9566490819', '9600456770', 'arichandranthiyagarajan@gmail.com', '2004-06-15', 20, '2', '2', 'Thiyagarajan.M', 'Business', 20000.00, 1, 0.00, 15000.00, 'Punalkulam', 'Punalkulam', '2505050008', '1', '1', 'upload_files/candidate_tracker/67824167991_ArichandranResume.pdf', NULL, '1', '2025-05-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR TELESALES', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-05 10:48:34', 154, '2025-05-07 06:29:15', 0, NULL, 1),
(24933, 'Jeevan Antony A D', '6', '6374965937', '', 'jeevanantony762004@gmail.com', '2004-06-07', 20, '2', '2', 'Dominic Xavier A', 'Others', 20000.00, 1, 0.00, 17000.00, 'Minjur', 'Minjur', '2505050009', '1', '1', 'upload_files/candidate_tracker/53654448412_Resumecv.pdf', NULL, '1', '2025-05-06', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate was  not at all good at communication and also not sure about his stability', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2025-05-05 12:06:28', 154, '2025-05-07 06:31:27', 0, NULL, 1),
(24934, 'Karthikeyan selvam', '28', '8668186488', '', 'karthisharma98@gmail.com', '1998-05-20', 26, '3', '2', 'Selvam', 'Textile business', 35000.00, 2, 0.00, 300000.00, 'Kambainallur, kambainallur (po)', 'Kambainallur, kambainallur (po)', '2505060001', '', '1', 'upload_files/candidate_tracker/12740373650_Karthikeyan.pdf', NULL, '1', '2025-05-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-06 04:26:19', 1, '2025-05-06 04:33:25', 0, NULL, 1),
(24935, 'shalini', '6', '9123521619', '', 'shalini.m0215@gmail.com', '1999-08-15', 25, '2', '2', 'manohar', 'golds smith', 60000.00, 2, 17000.00, 20000.00, 'klp utsav apartment cooks road otteri', 'klp utsav Apartment cooks road otteri', '2505060002', '1', '2', 'upload_files/candidate_tracker/90628905751_Resume.pdf', NULL, '1', '2025-05-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-06 04:45:29', 154, '2025-05-06 05:46:54', 0, NULL, 1),
(24936, 'sharath', '6', '8428905459', '', 'sharathk2597@gmail.com', '1997-11-25', 27, '2', '2', 'k. jayalakshmi', 'house wife', 20000.00, 1, 0.00, 15000.00, 'villivakkam', 'villivakkam', '2505060003', '1', '1', 'upload_files/candidate_tracker/67764644978_Sharath0605.pdf', NULL, '1', '2025-05-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-06 05:25:37', 154, '2025-05-07 06:28:24', 0, NULL, 1),
(24937, 'Monika thirumalai', '6', '9790772567', '9952042871', 'Monikamanikandanmonimani@gmail.com', '2000-04-15', 25, '3', '1', 'Manikandan', 'Ship india logistics', 18000.00, 1, 0.00, 15000.00, 'Korukkupet', 'Korukkupet', '2505060004', '', '1', 'upload_files/candidate_tracker/63651522526_monikaresume.pdf', NULL, '1', '2025-05-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-06 05:59:20', 154, '2025-05-06 05:52:21', 0, NULL, 1),
(24938, 'Abinaya', '6', '9943573939', '', 'abinayaa2411@gmail.com', '1999-06-27', 25, '2', '1', 'Arputhaarasan', 'Muniraj', 50000.00, 2, 0.00, 20000.00, 'Kondithope police quarters,sowcorpet', 'Sowcorpet', '2505060005', '1', '1', 'upload_files/candidate_tracker/24588643430_AdobeScanMar302025.pdf', NULL, '1', '2025-05-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-06 06:01:59', 154, '2025-05-06 05:52:42', 0, NULL, 1),
(24939, 'udhayanithi', '6', '9360194631', '9444430702', 'udhayaramesh03@gmail.com', '2003-08-06', 21, '2', '2', 'ramesh', 'farmer', 15000.00, 2, 0.00, 16000.00, 'sathanur / valangaimaan taluk / thiruvarur dist.', 'sathanur/valangaimaan taluk /thiruvarur dist.', '2505060006', '1', '1', 'upload_files/candidate_tracker/54374009704_UDHAYARESUME.pdf', NULL, '1', '2025-05-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '5', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-06 06:07:29', 154, '2025-05-07 06:29:43', 0, NULL, 1),
(24940, 'sai prakash', '4', '7695852875', '9976608102', 'saipraxx5@gmail.com', '2004-08-03', 20, '2', '2', 'senthil kumar', 'painter', 16000.00, 1, 0.00, 15000.00, 'thiruvonamangalam / valangaiman tk/thiruvarur dt', 'thiruvonamangalam / valangaiman tk /thiruvarur dt', '2505060007', '1', '1', 'upload_files/candidate_tracker/85619825725_SAIPRAKASHSResume.docx', NULL, '1', '2025-05-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-06 06:07:38', 154, '2025-05-07 06:29:31', 0, NULL, 1),
(24941, 'padmavathi R', '6', '9361572461', '', 'padmavathi2372@gmail.com', '2001-07-23', 23, '2', '2', 'Ramakrishnan', 'electrician', 25000.00, 1, 17000.00, 23000.00, '102 Reddiyur, Nimmiyambattu post, Vaniyambadi', 'Rajalakshmi women pg , Industrial estate,Ambattur', '2505060008', '1', '2', 'upload_files/candidate_tracker/25481679049_RESUMEpadma.pdf', NULL, '1', '2025-05-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good skill. experince at another filed. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-05-06 06:58:05', 154, '2025-05-06 03:44:33', 0, NULL, 1),
(24942, 'S ISWARYA', '6', '9444554686', '6379311982', 'iswaryasekar2@gmail.com', '2000-06-29', 24, '2', '2', 'SEKAR', 'Transportation', 60000.00, 1, 17500.00, 18000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2505060009', '1', '2', 'upload_files/candidate_tracker/74809853876_LinkedInresume.pdf', NULL, '1', '2025-05-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-06 07:00:25', 154, '2025-05-06 03:45:50', 0, NULL, 1),
(24943, 'Yuvaraj B', '6', '6382526749', '9488804898', 'yuvarajyuvaraj0310@gmail.com', '2000-10-03', 24, '2', '2', 'R Balakrishnan', 'Police( retrd)', 100000.00, 0, 0.00, 20000.00, 'Cuddalore', 'Arumbakkam, Chennai', '2505060010', '59', '1', 'upload_files/candidate_tracker/38333661228_YUVARAJBsc.MBA..docx', NULL, '1', '2025-05-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-06 07:22:16', 154, '2025-05-08 04:03:06', 0, NULL, 1),
(24944, 'C.VISHAL', '6', '9003019515', '9952942037', 'vishalvicky070303@gmail.com', '2003-03-07', 22, '2', '2', 'Chandramohan.m', 'Fisher man', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2505060011', '1', '1', 'upload_files/candidate_tracker/87506847831_downloadresume3.pdf', NULL, '1', '2025-05-08', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was not so good at communication and also quite not interested in job and not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-05-06 08:34:34', 154, '2025-05-08 05:33:24', 0, NULL, 1),
(24945, 'Abdul Rahman', '6', '8248854631', '9952003142', 'abu008311@gmail.com', '2003-10-13', 21, '2', '2', 'Yasmeen banu', 'tailor', 30000.00, 2, 0.00, 20000.00, 'New washermanpet', 'New washermanpet', '2505060012', '27', '1', 'upload_files/candidate_tracker/81324953287_ABdulReHamanKgoodcv.com140225.44417.pdf', NULL, '1', '2025-05-06', 0, '', '3', '59', '2025-05-12', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok Fresher need to check in training and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '2025-05-12', 1, '2025-05-06 10:07:02', 60, '2025-05-10 05:52:52', 0, NULL, 1),
(24946, 'S.Haris', '6', '8925692803', '8015232162', 'harishsankar84@gmail.com', '2005-03-20', 20, '2', '2', 'S.sumathi', 'House keeping work', 120000.00, 1, 0.00, 20000.00, 'Tondairpet', 'Todairpet', '2505060013', '27', '1', 'upload_files/candidate_tracker/34798364314_SHARISgoodcv.com050425.42214.pdf', NULL, '1', '2025-05-06', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-05-06 10:07:09', 154, '2025-05-07 06:29:03', 0, NULL, 1),
(24947, 'Sankari A', '4', '9025238945', '9750510190', 'p.a.r.sankari@gmail.com', '2004-03-19', 21, '2', '2', 'Appadurai', 'Kooli', 30000.00, 1, 0.00, 15000.00, 'Soorappallam', 'Soorappallam', '2505060014', '1', '1', 'upload_files/candidate_tracker/99461368151_Resume.pdf', NULL, '1', '2025-05-07', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-06 01:55:48', 154, '2025-05-08 09:22:16', 0, NULL, 1),
(24948, 'Jaya surya s', '6', '8681805961', '', 'jai917666@gmail.com', '2004-09-08', 20, '1', '2', 'Logeshwaran', 'No', 30000.00, 2, 0.00, 16500.00, 'Vysarapadi chennai', 'Vayasarapadi', '2505070001', '', '1', 'upload_files/candidate_tracker/96293993389_resume123.pdf', NULL, '1', '2025-05-07', 0, 'C99119', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'long distance and no basic skills', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-05-07 04:31:50', 154, '2025-05-08 09:22:24', 0, NULL, 1),
(24949, 'JUHI MAJEE', '11', '9789911924', '', 'juhimajee25@gmail.com', '2003-07-25', 21, '3', '2', 'Kashi majee', 'Student', 30000.00, 2, 0.00, 30000.00, 'CHENNAI', 'CHENNAI', '2505070002', '', '1', 'upload_files/candidate_tracker/46105780446_Juhicv.pdf', NULL, '1', '2025-05-07', 0, '', '1', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-05-07 05:59:38', 154, '2025-05-08 09:22:58', 0, NULL, 1),
(24950, 'M JOHN BRITTO', '5', '9787700459', '8220007703', 'Mjohnbritto9@gmail.com', '2000-07-18', 24, '2', '1', 'DEEPTHI', 'HDFC', 40000.00, 1, 2.40, 3.50, '138 Karunanidhi street GKM colony chennai', '138 Karunanidhi street GKM colony chennai', '2505070003', '1', '2', 'upload_files/candidate_tracker/64230762987_JBresume.pdf', NULL, '1', '2025-05-07', 0, '', '3', '59', '2025-05-12', 216000.00, '', '', '2025-05-24', '1', 'Communication Ok have 6 months in calling later career gap sustainability doubts in this profile let us try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1018', '', '55650', '55560', '2025-05-12', 1, '2025-05-07 07:39:44', 60, '2025-05-12 10:15:36', 0, NULL, 1),
(24951, 'A.M.Harish rao Rao', '6', '9597038680', '', 'raoharish974@gmail.com', '2003-09-21', 21, '5', '2', 'kavitha', 'dailwages', 13000.00, 0, 18000.00, 17000.00, 'Chennai', 'Chennai', '2505070004', '', '2', 'upload_files/candidate_tracker/67386906936_harishraoresume1.pdf', NULL, '1', '2025-05-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No clarity in work he is disabled and will suffer a lot to handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-07 09:14:45', 154, '2025-05-07 06:41:05', 0, NULL, 1),
(24952, 'Keerthivasan kannan', '4', '8668197678', '', 'keerthimani1217@gmail.com', '1997-08-17', 27, '2', '2', 'Kannan', 'Farmer', 250000.00, 1, 15000.00, 17000.00, 'Thanjavur', 'Thanjavur', '2505070005', '1', '2', 'upload_files/candidate_tracker/27129146416_keerthivasaresume.pdf', NULL, '2', '2025-05-08', 5, '', '3', '59', '2025-05-19', 180000.00, '', '5', '1970-01-01', '1', 'Communication Ok interested to learn in sales can give a try and check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-05-19', 1, '2025-05-07 09:29:35', 60, '2025-05-17 05:36:08', 0, NULL, 1),
(24953, 'S.V hareesh Narayanan', '6', '8778541908', '9884192220', 'narayananhareesh21@gmail.com', '2005-01-01', 20, '2', '2', 'Shanmugam .N', 'Fresher', 30000.00, 0, 0.00, 20.00, 'Chennai', 'Chennai', '2505070006', '1', '1', 'upload_files/candidate_tracker/66535831733_BIODATAHAREES.pdf', NULL, '1', '2025-05-08', 0, '', '3', '59', '2025-05-15', 192000.00, '', '3', '2025-06-30', '2', 'Communication Ok Can be trained in our roles need ot check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55656', '55557', '2025-05-15', 1, '2025-05-07 12:39:30', 60, '2025-05-14 05:28:03', 0, NULL, 1),
(24954, 'Thiyakeshwara Rao D', '4', '8870278169', '7708845761', 'thiyakesh2000@gmail.com', '2000-06-24', 24, '2', '2', 'Dhamodhara Rao', 'Packer', 8000.00, 1, 14000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2505070007', '1', '2', 'upload_files/candidate_tracker/60151748073_ResumeThiyakeshwaraRaocompressed.pdf', NULL, '1', '2025-05-08', 30, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT SUITE FOR TEAM AND EXPECTED HIGH', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-07 12:44:58', 154, '2025-05-08 11:31:59', 0, NULL, 1),
(24955, 'SATHISHKUMAR H', '5', '6379534870', '', 'sathishkumar.h322003@gmail.com', '2003-02-03', 22, '2', '2', 'Harikrishnan S', 'Driver', 20000.00, 2, 18000.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2505070008', '1', '2', 'upload_files/candidate_tracker/30037160419_resume.pdf', NULL, '1', '2025-05-09', 0, '', '3', '59', '2025-05-12', 228000.00, '', '3', '2025-12-31', '1', 'Communication Ok have basic knowledge in MF Exp in Medical Can be trained in our roles and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55650', '55560', '2025-05-12', 1, '2025-05-07 12:54:23', 60, '2025-05-12 10:17:33', 0, NULL, 1),
(24956, 'Thulasi Raja', '4', '6380000642', '9655295720', 'hitmanthulasi@gmail.com', '2001-04-11', 24, '2', '2', 'Vaithilingam. K', 'Farmer', 15000.00, 2, 0.00, 20.00, 'Thiruvarur, Needamangalam, munnavalkottai', 'Munnavalkottai', '2505070009', '1', '1', 'upload_files/candidate_tracker/24806247850_thulasirajaresume1.pdf', NULL, '1', '2025-05-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR TEAM', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-07 01:08:40', 154, '2025-05-08 10:36:13', 0, NULL, 1),
(24957, 'Chennakrishnan E', '5', '9344049809', '', 'chennakrishnan014@gmail.com', '2002-07-10', 22, '2', '2', 'Elumalai', 'Farmer', 10000.00, 2, 0.00, 16000.00, 'thiruvannamalai 606703', 'Vandalur', '2505080001', '1', '1', 'upload_files/candidate_tracker/75759371451_E.Chennakrishnan.pdf', NULL, '1', '2025-05-08', 0, '', '3', '59', '2025-06-16', 199200.00, '', '3', '2025-07-09', '2', 'Communication Ok Can be trained in our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55650', '55560', '2025-06-16', 1, '2025-05-08 03:55:04', 60, '2025-06-14 06:13:04', 0, NULL, 1),
(24958, 'Vaishaali', '5', '7845611545', '9087555005', 'vaishalivaisu2496@gmail.com', '1996-09-24', 28, '2', '2', 'Panchanathan', 'Pensioner', 20000.00, 1, 250000.00, 320000.00, '24/9 Nochikkuppam Mylapore Chennai -600004', '24/9 Nochikkuppam Mylapore Chennai -600004', '2505080002', '1', '2', 'upload_files/candidate_tracker/28894030077_RESUME..pdf', NULL, '1', '2025-05-08', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'nOT BOLD AND DOESNT FIT FOR SALES', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-05-08 04:21:08', 104, '2025-05-09 06:59:05', 0, NULL, 1),
(24959, 'S.Anu Sri', '6', '9941913516', '9940692887', 'sridharanu839@gmail.com', '2004-06-16', 20, '2', '2', 'M.Sridhar', 'Cooli', 22000.00, 1, 8000.00, 15000.00, 'No:18, sundarpuram 4th Street pulianthope', 'Chennai', '2505080003', '1', '2', 'upload_files/candidate_tracker/4954452305_Nargisfathimaresume.pdf202504301354210000.pdf', NULL, '1', '2025-05-08', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not so good at communication ,slowly responding  and also interested in other profession ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-05-08 05:33:45', 154, '2025-05-08 02:33:36', 0, NULL, 1),
(24960, '', '0', '9841727685', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505080004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-08 09:41:39', 0, NULL, 0, NULL, 1),
(24961, 'Monisha A', '4', '7358699016', '9566132853', 'm3402724@gmail.com', '2005-10-18', 19, '2', '2', 'father - anthony george j', 'attender- ashok leyland', 120000.00, 0, 0.00, 10000.00, 'southlock road thatavankarai kuppam ennore', 'raja shanmugam nagar thiruvottriyur', '2505080005', '1', '1', 'upload_files/candidate_tracker/4041026129_MonishaAResumeStylishcopy4.docx', NULL, '1', '2025-05-09', 0, '', '3', '59', '2025-05-12', 168000.00, '', '3', '2025-05-28', '2', 'Fresher Communication Good Energetic let us try for Renewals 2yrs NDA', '1', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '7', 'final Round with the Gokul Sir', '', 'H1017', '', '55605', '55566', '2025-05-12', 1, '2025-05-08 12:14:39', 60, '2025-05-13 10:19:41', 0, NULL, 1),
(24962, 'Sri Gowtham', '2', '9087267305', '', 'srigowthamsrigowthamm@gmail.com', '2004-06-08', 20, '4', '2', '7200729438', 'Chennai', 25000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Thiruvallur', '2505090001', '', '1', 'upload_files/candidate_tracker/52957262007_SriGowthammBsccs2024javafullstackdeveloper2.pdf', NULL, '2', '2025-05-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-09 04:01:05', 1, '2025-05-09 04:05:08', 0, NULL, 1),
(24963, 'Selvam k', '4', '9894632370', '9003486498', 'selvamkannan714@email.com', '2003-10-11', 21, '2', '2', 'Kannan', 'Farmer', 280000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2505090002', '1', '1', 'upload_files/candidate_tracker/71322037658_K.Selvamresume.pdf', NULL, '1', '2025-05-09', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He Is Ok With The Profile....fresher...completed MBA...Marketing...Father Farmer...doing partime job in gaming centre...interested in sales only....Travel time 8km...have laptop and immediate Joining...kindly cross check once confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-09 04:06:56', 154, '2025-05-09 10:12:18', 0, NULL, 1),
(24964, 'NIVEDHA.S', '6', '9361312071', '9094633745', 'nivedha9361312071@gmail.com', '2005-09-20', 19, '2', '2', 'Sivakumar.G', 'Driver', 75000.00, 1, 0.00, 12000.00, '20/1New street , kaladipet, chennai-600019', '20/1/new street, kaladipet, chennai -600019', '2505090003', '1', '1', 'upload_files/candidate_tracker/79877966965_RESUME.pdf', NULL, '1', '2025-05-09', 0, '', '3', '59', '2025-05-12', 168000.00, '', '3', '2025-05-12', '1', 'Communication Ok Fresher let us train and check in the training period', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '2025-05-12', 1, '2025-05-09 04:49:15', 60, '2025-05-10 05:56:18', 0, NULL, 1),
(24965, 'R. Harathi', '6', '8189872564', '8124518925', 'harathiravi89@gmail.com', '2005-09-23', 19, '2', '2', 'G. Ravi', 'Plumber', 72000.00, 1, 0.00, 12000.00, '45/4 amman kovil Street vyasarpadi chennai', '45/4 Amman kovil Street vyasarpadi chennai', '2505090004', '1', '1', 'upload_files/candidate_tracker/10289417393_HarathiResume.pdf', NULL, '1', '2025-05-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking much for non voice process  xxamp Accounts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-09 04:49:31', 104, '2025-05-09 06:55:51', 0, NULL, 1),
(24966, 'Mathan Akash', '4', '8270705343', '6369107033', 'mathanakash140@gmail.com', '2003-05-12', 21, '2', '2', 'AROKIADOSS', 'Farmer', 12000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2505090005', '1', '1', 'upload_files/candidate_tracker/78451877636_MathanAkashResume.pdf', NULL, '1', '2025-05-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-09 04:58:26', 104, '2025-05-09 06:56:17', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24967, 'HAVVA NARGEES .M', '6', '7200144374', '', 'havvanargees18@gmail.com', '2003-11-02', 21, '2', '2', 'Mohammed Anwar', 'Driver', 120000.00, 1, 0.00, 16000.00, 'Alandur Chennai', 'Alandur Chennai', '2505090006', '27', '1', 'upload_files/candidate_tracker/20568708703_HAVVANARGEES.pdf', NULL, '1', '2025-05-09', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not suitable for sales profile, Communication average, reject the profile...', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-05-09 05:23:03', 154, '2025-05-09 04:38:27', 0, NULL, 1),
(24968, 'Sujatha.k', '4', '8940244279', '', 'sujathakumarappan69@gmail.com', '2002-05-09', 23, '2', '2', 'Kumarappan', 'Tailor', 80000.00, 1, 0.00, 14000.00, 'Pondicherry', 'Velachery', '2505090007', '1', '1', 'upload_files/candidate_tracker/70551115282_FrontendUIUXdesignSujathacv.pdf', NULL, '1', '2025-05-09', 0, '', '3', '59', '2025-05-13', 192000.00, '', NULL, '2025-07-25', '2', 'Communication Ok fresher career gap for 2 yrs tried multiple IT vacancies but no opportunities need job try in training and confirm', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55824', '55560', '2025-05-13', 1, '2025-05-09 06:03:00', 60, '2025-05-12 07:06:50', 0, NULL, 1),
(24969, 'Ancil', '6', '7358638084', '9884416940', 'kingajith11051999@gmail.com', '1999-05-11', 25, '2', '2', 'Balraj D', 'Office', 15000.00, 3, 0.00, 20.00, 'sanjay nagar MPM Street', 'Vyasarpadi', '2505090008', '1', '1', 'upload_files/candidate_tracker/22429690815_AncilResume.pdf', NULL, '3', '2025-05-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'worked in Retail sales no proper communication very lag will  not sustain and not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-09 06:06:18', 154, '2025-05-09 01:09:59', 0, NULL, 1),
(24970, 'JAGADEESAN G', '6', '8072349751', '9941677004', 'jagadishsree25@gmail.com', '2001-10-23', 23, '2', '2', 'Nil', 'Nil', 20000.00, 1, 19000.00, 23000.00, 'Chennai', 'Chennai', '2505090009', '1', '2', 'upload_files/candidate_tracker/8520219387_JagadeesanGResumeFinal.docx', NULL, '1', '2025-05-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude issues no sustainability in previous exp will not handle the pressure in our sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-05-09 06:12:58', 154, '2025-05-09 01:25:25', 0, NULL, 1),
(24971, 'Nafiya begum. S', '6', '6379440740', '9840468935', 'nafiya1501@gmail.com', '2005-01-15', 20, '2', '2', 'M. Samsu hasan', 'Driver', 100000.00, 2, 0.00, 18000.00, 'Arumbakkam Chennai', 'Arumbakkam Chennai', '2505090010', '27', '1', 'upload_files/candidate_tracker/32526251848_CV2025042314471892.pdf', NULL, '1', '2025-05-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not open for Target much no clarity with her interest', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-09 06:14:51', 154, '2025-05-09 02:42:36', 0, NULL, 1),
(24972, 'Madhan kumar', '6', '7092585361', '9840585362', 'madhankumar122070@gmail.com', '2004-11-06', 20, '2', '2', 'Nil', 'Nil', 20000.00, 1, 0.00, 18000.00, 'Royapuram', 'Royapuram', '2505090011', '1', '1', 'upload_files/candidate_tracker/46271961028_MADHANKUMARRESUME.pdf', NULL, '1', '2025-05-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice process only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-09 06:24:34', 154, '2025-05-09 01:26:42', 0, NULL, 1),
(24973, 'pradeep surya g', '5', '7339011190', '7305559459', 'pradeepsurya2004@gmail.com', '2004-07-02', 20, '5', '2', 'ganesan r', 'driver', 30000.00, 1, 0.00, 20000.00, 'coimbatore', 'coimbatore', '2505090012', '', '1', 'upload_files/candidate_tracker/44839594698_Pradeepsurya.Gresume.pdf', NULL, '2', '2025-05-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-09 07:33:31', 1, '2025-05-09 07:45:27', 0, NULL, 1),
(24974, 'Tharunkumar.B', '13', '8838137590', '', 'tharunkumarb2002@gmail.com', '2002-04-05', 23, '3', '2', 'Balamurugan', 'Daily wages', 15000.00, 1, 0.00, 240000.00, 'Madurai', 'Chennai', '2505090013', '', '1', 'upload_files/candidate_tracker/74769637846_BTHARUNRESUME2.pdf', NULL, '1', '2025-05-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-09 07:38:53', 154, '2025-05-09 01:14:38', 0, NULL, 1),
(24975, 'Ragul Raj', '5', '9788883508', '', 'ragul04092000@gmail.com', '2000-09-04', 24, '3', '2', 'Lakshmanan', 'Farmer', 20000.00, 1, 22000.00, 25000.00, 'Salem', 'Chennai', '2505090014', '', '2', 'upload_files/candidate_tracker/92521940142_RagulLResume202411.pdf', NULL, '1', '2025-05-09', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-05-09 07:51:53', 154, '2025-05-09 05:03:56', 0, NULL, 1),
(24976, 'Susmithasen. V', '4', '6381236343', '', 'susmithavasanthakumar0@gmail.com', '2001-06-02', 23, '2', '2', 'Parent', 'Chief', 30000.00, 2, 20000.00, 20000.00, 'pookara vastha street Thanjavur', 'Pookara vastha street Thanjavur', '2505090015', '1', '2', 'upload_files/candidate_tracker/2464223241_SUSMITHASEN.V.pdf.pdf', NULL, '1', '2025-05-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-09 09:42:47', 154, '2025-05-10 01:03:36', 0, NULL, 1),
(24977, 'FATHIMA NAZIYA.F', '4', '9150518266', '', 'naziyafaizal4444@gmail.com', '2003-05-19', 21, '2', '2', 'Faizal sali', 'Renewal relationship manager', 50000.00, 1, 0.00, 15000.00, 'Kolathur', 'Egmore', '2505090016', '1', '1', 'upload_files/candidate_tracker/10854042574_BusinessanalyticswithExcel15daysinternedwithyounity.pdf', NULL, '1', '2025-05-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-05-09 10:23:38', 154, '2025-05-12 06:12:35', 0, NULL, 1),
(24978, 'Abishek', '6', '7397350841', '9840961193', 'abishekdayalan@gmail.com', '1998-10-23', 26, '2', '2', 'Dayalan', 'Retired Bank Manager', 100000.00, 1, 0.00, 15000.00, 'Perungalathur', 'Perungalathur', '2505090017', '1', '2', 'upload_files/candidate_tracker/57559659076_ABIRESUME.docx', NULL, '1', '2025-05-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-09 12:38:26', 104, '2025-05-12 03:02:34', 0, NULL, 1),
(24979, '', '0', '8825860289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505090018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-09 01:26:04', 0, NULL, 0, NULL, 1),
(24980, 'Abitha.M', '4', '9751847656', '6384621136', 'abithamurugesan0515@gmail.com', '2005-02-05', 20, '2', '2', 'G.Murugesan', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Sugar mill , kurungulam melpathi Thanjavur 613303', 'Sugarmill kurungulam melpathi Thanjavur', '2505100001', '1', '1', 'upload_files/candidate_tracker/4957064360_AdobeScanMay022025.pdf', NULL, '1', '2025-05-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for team,', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-10 04:08:28', 154, '2025-05-10 10:23:28', 0, NULL, 1),
(24981, 'Pauline Meegal.A', '6', '8072748114', '8870694742', 'paulinemeegal753@gmail.com', '2002-05-06', 23, '2', '2', 'Joice Sheela', 'Caretaker', 20000.00, 1, 0.00, 18000.00, 'Perambur, Chennai', 'Perambur, Chennai', '2505100002', '1', '1', 'upload_files/candidate_tracker/76753969667_Pauline.pdf', NULL, '1', '2025-05-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok But sounds low pressure handling doubts a lot ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-10 04:41:15', 154, '2025-05-10 12:35:58', 0, NULL, 1),
(24982, 'J.Preethi kumari', '6', '8124898847', '', 'Peethikumari891@gmail.com', '2004-09-09', 20, '2', '2', 'P.Jagdevo kumar', 'Business', 30000.00, 4, 0.00, 20000.00, 'Minjur', 'Minjur', '2505100003', '1', '1', 'upload_files/candidate_tracker/59166614025_preethiresume.pdf', NULL, '1', '2025-05-10', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-05-10 04:44:10', 154, '2025-05-10 12:33:33', 0, NULL, 1),
(24983, '', '0', '8124889847', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505100004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-10 05:03:28', 0, NULL, 0, NULL, 1),
(24984, 'Sham sundar. S', '4', '7639410987', '8270705343', 'Shambcozz1213@gmail.com', '2003-04-01', 22, '2', '2', 'Senthil kumar', 'Hotel superior', 23000.00, 1, 0.00, 10000.00, 'Sriram Nagar third street eswari nagar', 'Sriram Nagar third street eswari nagar', '2505100005', '1', '1', 'upload_files/candidate_tracker/44727691443_ShamSundarresume202401200727090000.pdf', NULL, '1', '2025-05-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-10 05:04:37', 154, '2025-05-10 01:05:39', 0, NULL, 1),
(24985, 'Narayanan kumanan', '4', '8220808883', '8778641866', 'narayanan.rk25@gmail.com', '1999-12-25', 25, '2', '2', 'Kumanan.R', 'Self Business', 50000.00, 1, 0.00, 20000.00, '47 Anbu Nagar 1st Street vilar Road Tanjore', 'Tanjore', '2505100006', '1', '1', 'upload_files/candidate_tracker/65015237274_Narayanancv..pdf', NULL, '1', '2025-05-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustainability issue', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-10 05:28:51', 154, '2025-05-10 01:05:10', 0, NULL, 1),
(24986, 'C.Rajeshwari', '6', '7200019455', '', 'rajicrajeshwari90@gmail.com', '2002-07-17', 22, '2', '2', 'N.Cheralathan', 'Daily wages', 10000.00, 2, 16000.00, 18000.00, 'Thiruvottriyur', 'Thiruvottriyur', '2505100007', '1', '2', 'upload_files/candidate_tracker/12200915789_CV2025050400591088.pdf', NULL, '1', '2025-05-10', 0, '', '3', '59', '2025-05-15', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok Can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55732', '5151', '2025-05-14', 1, '2025-05-10 05:29:13', 60, '2025-05-14 05:25:58', 0, NULL, 1),
(24987, 'Jobancy J', '6', '7598462162', '', 'jobancyjohns@gmail.com', '2003-02-02', 22, '2', '2', 'Johns', 'Business man', 67000.00, 2, 0.00, 20000.00, 'Kanyakumari', 'Velachery', '2505100008', '1', '1', 'upload_files/candidate_tracker/51605856231_resume.pdf', NULL, '1', '2025-05-10', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good ,also her tamil lang is slightly problem.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-05-10 05:59:08', 154, '2025-05-10 12:32:36', 0, NULL, 1),
(24988, 'ARTHI S', '4', '9342253611', '9843770121', 'arthisakthi2010@gmail.com', '2000-10-20', 24, '2', '1', 'Vengatesan', 'Farmer', 62000.00, 1, 0.00, 18000.00, '974pallaku street kasanadu pudur Thanjavur', '974 pallaku street kasanadu pudur Thanjavur', '2505100009', '1', '1', 'upload_files/candidate_tracker/52432570709_ARTHIRESUME1.pdf', NULL, '1', '2025-05-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-10 06:11:08', 154, '2025-05-10 01:03:08', 0, NULL, 1),
(24989, 'Mohanraj Arulshanmugam', '4', '9345046073', '', 'mohanrajarulshanmugam04@gmail.com', '2005-09-04', 19, '2', '2', 'Arulshanmugam', 'driver', 20000.00, 1, 0.00, 15000.00, 'Mannargudi', 'Thanjavur', '2505100010', '1', '1', 'upload_files/candidate_tracker/10032729016_Mohanraj.AResume.pdf', NULL, '1', '2025-05-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-10 06:21:10', 154, '2025-05-10 01:02:31', 0, NULL, 1),
(24990, 'ashika a', '4', '7200900426', '', 'ashikaananth04@gmail.com', '2004-07-01', 20, '5', '2', 'abinash', 'bio medical engineering', 18000.00, 1, 0.00, 16000.00, 'porur', 'porur', '2505100011', '', '1', 'upload_files/candidate_tracker/61244119357_AshikaAB.comAF.pdf', NULL, '1', '2025-05-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-10 07:03:33', 154, '2025-05-13 09:24:38', 0, NULL, 1),
(24991, '', '0', '9790381082', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505100012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-10 11:30:14', 0, NULL, 0, NULL, 1),
(24992, 'S.MOHAMED YASER', '6', '6382986593', '', 'mohamedyaser1049@gmail.com', '2001-03-04', 24, '2', '2', 'sithic', 'driver', 30000.00, 1, 2.64, 3.00, 'Viruthunagar', 'Chennai', '2505100013', '1', '2', 'upload_files/candidate_tracker/59024899320_recrt2.pdf', NULL, '1', '2025-05-12', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-10 12:53:12', 154, '2025-05-12 12:47:09', 0, NULL, 1),
(24993, 'Dilli Ganesh S', '6', '7358485154', '', 'ganeshdgn6@gmail.com', '2000-10-21', 24, '2', '2', 'Sekar', 'Daily wage', 35000.00, 0, 20000.00, 24000.00, 'Chennai', 'Chennai', '2505110001', '1', '2', 'upload_files/candidate_tracker/89147047535_GaneshResume.pdf', NULL, '1', '2025-05-29', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2025-05-11 11:09:07', 154, '2025-05-29 01:09:07', 0, NULL, 1),
(24994, 'David Riyash', '6', '9840223967', '', 'davidriyash8@gmail.com', '1998-11-03', 26, '2', '2', 'ASANTHAMARY', 'Home maker', 10000.00, 1, 0.00, 15000.00, 'Chennai perambur', 'Chennai perambur', '2505120001', '1', '1', 'upload_files/candidate_tracker/61597987248_DavidRiyashupdatedresume.docx', NULL, '1', '2025-05-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-12 01:36:40', 154, '2025-05-12 12:48:33', 0, NULL, 1),
(24995, 'Mohamed Afrose S', '13', '9940112385', '7358653559', 'smohamedafrose@gmail.com', '2004-11-26', 20, '2', '2', 'Mohamed Shafi I', 'Auto Driver', 25000.00, 1, 0.00, 2.00, 'Chennai', 'Chennai', '2505120002', '1', '1', 'upload_files/candidate_tracker/28428951231_MohameedAfroseResume32.pdf', NULL, '1', '2025-07-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-05-12 03:07:17', 154, '2025-07-28 11:38:30', 0, NULL, 1),
(24996, 'Varshini G', '4', '8778065718', '9123528859', 'varshinigopi1975@gmail.com', '2005-09-24', 19, '2', '2', 'Gopi T', 'Tailor', 10000.00, 1, 0.00, 13000.00, 'uratchi,kannathankudi West,oraththanadu (Tk)', 'Pookara puthu vantha street,Thanjavur.', '2505120003', '1', '1', 'upload_files/candidate_tracker/94707275826_VarshiniResume1.pdf', NULL, '1', '2025-05-12', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-12 03:57:34', 154, '2025-05-12 05:20:12', 0, NULL, 1),
(24997, 'MENAGA.R', '6', '7538881373', '9363862258', 'menagar2003@gmail.com', '2003-05-06', 22, '2', '2', 'Ravichandran', 'Driver', 10000.00, 1, 15000.00, 14000.00, 'Vandaiyariruppu', 'Vandaiyariruppu', '2505120004', '1', '2', 'upload_files/candidate_tracker/19415510128_MenagaFinal16032025.pdf', NULL, '1', '2025-05-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile completed - 25....native 10km from office mba in part time only....2023...joined in a vmr construction company telecalling 10k salary in trichy...due to salary issue relieved....and joined in vision properties sales ....in trichy..15k salary....and releived 6 month and joined in java python course in chennai for 6 months..due to mother health issue and finacial situtaion try to work in native....brother currently joined in engg in salem,,,,father driver and farmer..own house...have laptop...expected 14 to 15...immediate joining..kindly chek once and confirm', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-12 04:38:44', 154, '2025-05-12 05:48:54', 0, NULL, 1),
(24998, 'Hariharan', '6', '6381146770', '9382193440', 'hariharansc48@gmail.com', '2002-02-25', 23, '2', '2', 'Sivakumar', 'Interior decorator', 30000.00, 1, 0.00, 18000.00, 'Aynawaram', 'Aynawaram', '2505120005', '1', '1', 'upload_files/candidate_tracker/4080700548_1234567890.pdf', NULL, '1', '2025-05-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-12 04:56:32', 154, '2025-05-12 11:55:57', 0, NULL, 1),
(24999, 'VIDHYASRI K', '4', '9345579854', '8072204481', 'vidhyasrik648@gmail.com', '2000-12-28', 24, '2', '2', 'Kalyanasundaram', 'Business', 40000.00, 1, 0.00, 25000.00, 'No.16 Arun nagar , mannarkudi', 'No.16 Arun nagar , mannarkudi', '2505120006', '1', '1', 'upload_files/candidate_tracker/87337777690_vidhya.pdf', NULL, '1', '2025-05-12', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2025-05-12 05:25:29', 154, '2025-05-12 05:21:04', 0, NULL, 1),
(25000, 'Archana', '6', '6381483157', '9600502183', 'achu302k@gmail.com', '2004-10-30', 20, '2', '2', 'R.RAGHU', 'Auto driver', 10000.00, 2, 0.00, 16000.00, '8/40 krishnappa Street chepauk', '8/40 Krishnappa Street Chepauk Chennai.600005', '2505120007', '27', '1', 'upload_files/candidate_tracker/73147171831_Aresume.docx', NULL, '1', '2025-05-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-12 05:46:04', 154, '2025-05-12 12:45:56', 0, NULL, 1),
(25001, 'P SUNIL', '6', '6364031958', '', 'ssuni9520@gmail.com', '2000-05-10', 25, '2', '2', 'Prakash.m', 'Building contractors', 35000.00, 3, 0.00, 250000.00, 'Kodigehalli magadi main road Bengaluru', 'Bengaluru', '2505120008', '1', '1', 'upload_files/candidate_tracker/58757316814_resumessuni.pdf', NULL, '1', '2025-05-12', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55555', '5151', '1970-01-01', 1, '2025-05-12 05:47:15', 154, '2025-05-13 09:21:58', 0, NULL, 1),
(25002, 'Jothika V', '6', '9003317746', '6383536391', 'jothika11b@gmail.com', '2004-05-29', 20, '2', '2', 'c.venkatesan', 'Painter', 10000.00, 0, 0.00, 15000.00, 'Parthasarathi Puram 2nd Street t.nagar chennai 17', 'Parthasarathi Puram 2nd Street t.nagat chennai 17', '2505120009', '27', '1', 'upload_files/candidate_tracker/72950716276_IMG20250512WA0000.pdf', NULL, '1', '2025-05-12', 0, '', '5', '156', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not suitable for sales profile, lack of confidence, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55732', '5151', '1970-01-01', 1, '2025-05-12 05:48:22', 154, '2025-05-12 04:16:32', 0, NULL, 1),
(25003, '', '0', '9941223723', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505120010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-12 06:11:58', 0, NULL, 0, NULL, 1),
(25004, 'Kamacthi', '6', '8122136993', '6369743986', 'kamatchi20242024@gmail.com', '2010-05-12', 0, '4', '2', 'Vengadesh', 'driving', 1.50, 2, 0.00, 14.00, 'Koyambedu chennai', 'Koyambedu chennai', '2505120011', '', '1', 'upload_files/candidate_tracker/74332674769_downloadresume.pdf', NULL, '1', '2025-05-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was good at communication and bold  ,interested in sales and  lets try her in first 7days of training period and we shall provide 13-14k as salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-05-12 06:12:16', 154, '2025-05-12 06:13:03', 0, NULL, 1),
(25005, 'AYSHA AFRIN', '4', '9841223723', '9840522359', 'Afrinaysha00@gmail.com', '2005-05-18', 19, '6', '2', 'Ansarkhan', 'Auto driver', 10000.00, 1, 0.00, 15000.00, '98 ms Koil Street Royapuram Chennai 600013', '98 ms Koil Street Royapuram Chennai 600013', '2505120012', '', '1', 'upload_files/candidate_tracker/93965952364_inbound565169284051255776.pdf', NULL, '1', '2025-05-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-12 06:25:01', 154, '2025-05-19 09:22:44', 0, NULL, 1),
(25006, 'Steffy Steffy', '6', '7200657993', '9962660735', 'www.ssteffy605@gmail.com', '2004-11-09', 20, '2', '2', 'sheela', 'House wife', 8000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2505120013', '27', '1', 'upload_files/candidate_tracker/94922135485_AllPDFReader2025051212.46.22.pdf', NULL, '1', '2025-05-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-12 07:06:39', 154, '2025-05-12 03:21:59', 0, NULL, 1),
(25007, 'Thirisha R', '6', '8015770646', '7200610456', 'rthirsha18@gmail.com', '2004-12-18', 20, '2', '2', 'Ramesh.G', 'Self employed', 20000.00, 2, 0.00, 18000.00, 'Kondungaiyur', 'Kondungaiyur', '2505120014', '27', '1', 'upload_files/candidate_tracker/9103766560_Thirsharesume.pdf1.pdf', NULL, '1', '2025-05-12', 0, '', '3', '59', '2025-05-19', 168000.00, '', '5', '1970-01-01', '1', 'Communication Ok fresher need to train from scratch willl check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55732', '5151', '2025-05-19', 1, '2025-05-12 07:24:25', 60, '2025-05-17 05:37:39', 0, NULL, 1),
(25008, 'Ariffunisa', '6', '9150990158', '9841123008', 'Ariffunisaanwarhussain924@gmail.com', '2004-02-09', 21, '2', '2', 'Anwar Hussain', 'Auto driver', 12000.00, 1, 0.00, 13000.00, 'Kodambakkam', 'Koda', '2505120015', '27', '1', 'upload_files/candidate_tracker/87208341731_AllPDFReader2025051212.46.22.pdf', NULL, '1', '2025-05-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-12 07:27:48', 154, '2025-05-12 06:13:40', 0, NULL, 1),
(25009, 'David Raj Y', '6', '9840979265', '9551476865', 'davidraj30042005@gmail.com', '2005-04-30', 20, '2', '2', 'Prasanna', 'House keeping', 14000.00, 2, 0.00, 20000.00, '160 e block osankulam kilpauk,chennai-600010', '365c bamford railway quarters ayanavaram Ch-23', '2505120016', '57', '1', 'upload_files/candidate_tracker/96185564175_Davidresume.docx', NULL, '1', '2025-05-12', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'silent person ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-05-12 10:17:57', 154, '2025-05-12 05:22:03', 0, NULL, 1),
(25010, 'janani nandeeswari', '6', '9551844342', '', 'jananiamalraj26@gmail.com', '2001-09-26', 23, '2', '2', 'nandheeshwari', 'dailywages', 12000.00, 1, 17000.00, 18000.00, 'new washermenpet', 'new washermenpet', '2505120017', '1', '2', 'upload_files/candidate_tracker/71182386275_jananiresume5.pdf', NULL, '1', '2025-05-13', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2025-05-12 11:50:32', 154, '2025-05-13 04:58:17', 0, NULL, 1),
(25011, '', '0', '7200293846', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505120018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-12 12:56:06', 0, NULL, 0, NULL, 1),
(25012, 'Srinivasan kanniyappan', '6', '8838635708', '', 'srini14102001@gmail.com', '2001-10-14', 23, '2', '2', 'Kanniyappan', 'Tiles fitting', 10000.00, 1, 216000.00, 240000.00, 'Chennai', 'Chennai', '2505130001', '1', '2', 'upload_files/candidate_tracker/73631368661_Srinivasan.k.pdf', NULL, '3', '2025-05-13', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-05-13 04:27:16', 154, '2025-05-13 03:57:54', 0, NULL, 1),
(25013, 'manimaran', '6', '9123520306', '', 'lfmanimaran269@gmail.com', '2000-09-26', 24, '2', '2', 'perimala', 'supervisor', 15000.00, 1, 0.00, 18000.00, 'ayanavaram', 'ayanavanaram', '2505130002', '1', '2', 'upload_files/candidate_tracker/11879597429_ManimaranResume1.pdf', NULL, '3', '2025-05-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-05-13 05:16:53', 154, '2025-05-13 01:20:22', 0, NULL, 1),
(25014, 'GNANA KRISHNAN MARIMUTHU', '13', '9025250129', '6381585923', 'gkrishmarimuthu@gmail.com', '2001-12-22', 23, '3', '2', 'MARIMUTHU', 'Farmer', 72000.00, 1, 0.00, 3.00, 'Ramanathapuram ,Kamudi', 'Chennai, Saidapet', '2505130003', '', '1', 'upload_files/candidate_tracker/80473070612_Gnanakrishnanresume.pdf', NULL, '1', '2025-05-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-13 05:51:39', 1, '2025-05-13 05:56:30', 0, NULL, 1),
(25015, 'Christy Lebana.D', '4', '7305309034', '7010119299', 'christy100495@gmail.com', '1995-07-17', 29, '2', '1', 'Srinath', 'Data analysts', 25000.00, 0, 18500.00, 20000.00, 'Virudhungar', 'Chennai', '2505130004', '1', '2', 'upload_files/candidate_tracker/13809877418_DOC20240529WA0059..docx', NULL, '1', '2025-05-13', 5, '', '3', '59', '2025-05-15', 252000.00, '', '3', '2026-01-31', '2', 'Selected for FSC Karthiks team, will check in Training period', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55824', '55560', '2025-05-15', 1, '2025-05-13 06:45:08', 60, '2025-05-14 06:21:48', 0, NULL, 1),
(25016, 'Swetha.e', '6', '7358507822', '9176719096', 'sweethaellumalai605@gmail.com', '2002-06-30', 22, '1', '2', 'T m.elumalai,e.sangeetha', 'Food factory manager, leather company', 80000.00, 1, 15000.00, 20000.00, 'No.49/9 sabapathy nagar 2nd St ch_600044', 'Nagalkeni', '2505130005', '', '2', 'upload_files/candidate_tracker/2388569871_swetharesume.pdf', NULL, '1', '2025-05-13', 0, 'C99135', '3', '59', '2025-05-15', 186000.00, '', '3', '2025-05-21', '2', 'Selected fror deshwaran team', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55732', '5151', '2025-05-15', 1, '2025-05-13 07:04:16', 60, '2025-05-14 07:11:03', 0, NULL, 1),
(25017, 'Malathi Saravanan', '5', '7305227458', '8870783542', 'malathisaravananmec@gmail.com', '1999-06-02', 25, '2', '2', 'Saravanan', '12th', 20000.00, 1, 17000.00, 19000.00, 'Pour', 'Porur', '2505130006', '1', '2', 'upload_files/candidate_tracker/19690220100_DOC20240512WA0009.pdf', NULL, '1', '2025-05-13', 3, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55650', '55560', '1970-01-01', 1, '2025-05-13 07:19:04', 154, '2025-05-13 03:44:53', 0, NULL, 1),
(25018, 'Najma Banu', '6', '9113294361', '', 'najmabanu91132@gmail.com', '1980-02-13', 45, '2', '1', 'Mohammad Taher', 'Mechanic', 30000.00, 6, 0.00, 18.00, 'Bismillah Nagar', 'Bismillah Nagar', '2505130007', '57', '1', 'upload_files/candidate_tracker/4587634925_NajmaBanuresume1.pdf', NULL, '3', '2025-05-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CONFIRM THE JOINING AND SUGGESTED CTC 18K FOR DM', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-05-13 07:31:33', 154, '2025-05-13 05:55:02', 0, NULL, 1),
(25019, 'Swathi', '6', '7904470172', '8015839634', 'Swathig136@gmail.com', '2003-10-22', 21, '1', '2', 'Pushpa', 'St Stephens school working', 50000.00, 1, 13000.00, 20000.00, 'Pallavaram', 'Pallavaram', '2505130008', '', '2', 'upload_files/candidate_tracker/81892959651_Swathi.pdf.pdf', NULL, '1', '2025-05-13', 0, 'C99135', '3', '59', '2025-05-15', 198000.00, '', '3', '2025-05-21', '1', 'Selected for deshwaran team.', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55732', '5151', '1970-01-01', 1, '2025-05-13 07:40:41', 60, '2025-05-14 07:13:17', 0, NULL, 1),
(25020, 'sona', '6', '9791106995', '8939038457', 'sonapadmanaban96@gmail.com', '2005-05-12', 20, '2', '2', 'Sopna', 'Tailor', 80000.00, 1, 0.00, 18000.00, 'No 4a 1 st street kavangarai,puzhal chennai 600066', 'No 4a 1 st street kavangarai,puzhal chennai 600066', '2505130009', '1', '1', 'upload_files/candidate_tracker/90686916867_DOC20250430WA0001..pdf', NULL, '1', '2025-05-13', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-05-13 09:13:00', 104, '2025-05-13 04:49:24', 0, NULL, 1),
(25021, 'mubeena kathoon s', '6', '7358436778', '', 'smk9087108768@gmail.com', '2004-11-09', 20, '2', '2', 'Saleem khan', 'Security', 15000.00, 1, 0.00, 18000.00, 'tondiarpet, chennai 600081', 'Pulianthope, chennai 600012', '2505130010', '1', '1', 'upload_files/candidate_tracker/72350449814_Muberesume.pdf', NULL, '3', '2025-05-13', 0, '', '3', '59', '2025-05-19', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher will check in training and confirm long run doubts in this profile', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55732', '5151', '2025-05-19', 1, '2025-05-13 09:13:13', 60, '2025-05-17 05:39:07', 0, NULL, 1),
(25022, 'asha  uvanjalee', '6', '7200337747', '', 'ashayuvanjalee28@gmail.com', '2005-05-28', 19, '2', '2', 'Yuvaraj.B', 'Driver', 15.00, 1, 0.00, 18.00, 'Navalar nagar , tondairpet , Chennai 81', 'Navalar nagar, tondairpet, Chennai 81.', '2505130011', '1', '1', 'upload_files/candidate_tracker/51133347949_ashuu.pdf', NULL, '1', '2025-05-13', 0, '', '3', '59', '2025-05-15', 168000.00, '', '3', '2025-05-15', '2', 'Fresher need to train a lot in this profile will check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'P1287', '5151', '2025-05-15', 1, '2025-05-13 09:15:19', 60, '2025-05-14 05:30:59', 0, NULL, 1),
(25023, 'lavanya dilliraj', '6', '9344943855', '', 'lavanyaa2346@gmail.com', '2001-04-23', 24, '2', '2', 'dilliraj', 'cooli', 25000.00, 2, 15000.00, 18000.00, 'chennai korukupet', 'korukupet', '2505130012', '1', '2', 'upload_files/candidate_tracker/38643922969_lavanyaresume2.pdf', NULL, '3', '2025-05-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-13 09:25:27', 154, '2025-05-13 05:05:04', 0, NULL, 1),
(25024, 'THIRUMALAI N', '13', '7358736640', '', 'thirumalainagarajan05@gmail.com', '2002-08-24', 22, '3', '2', 'Nagarajan', 'Driver', 25000.00, 0, 0.00, 350000.00, 'Chennai', 'Chennai', '2505130013', '', '1', 'upload_files/candidate_tracker/54759542918_thirumalairesumepydev.pdf', NULL, '1', '2025-05-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-13 09:27:36', 1, '2025-05-13 09:33:55', 0, NULL, 1),
(25025, 'C PRASATH', '13', '6381453977', '', 'prasathjr11@gmail.com', '2002-12-27', 22, '3', '2', 'Chakkaravarthi', 'Teacher', 70000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2505130014', '', '1', 'upload_files/candidate_tracker/26389842596_ResumeML.pdf', NULL, '1', '2025-05-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-13 09:31:39', 1, '2025-05-13 09:33:54', 0, NULL, 1),
(25026, 'Rogini', '6', '8825867715', '9345132004', 'roginim2530@gmail.com', '2005-07-30', 19, '2', '2', 'Anjali', 'House wife', 3000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2505130015', '27', '1', 'upload_files/candidate_tracker/3754101441_MRoginiRESUME.pdf', NULL, '1', '2025-05-13', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Came after exams', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-05-13 09:49:07', 104, '2025-05-13 04:50:55', 0, NULL, 1),
(25027, 'B.divya', '6', '6379142381', '7550242157', 'Divyaprabhavathi2002@gamil.com', '2002-01-13', 23, '2', '2', 'Prabavathi', 'House wife', 11000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2505130016', '27', '1', 'upload_files/candidate_tracker/63081781439_CV2025051122024564.pdf', NULL, '1', '2025-05-13', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Came after exams', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-05-13 10:02:17', 104, '2025-05-13 04:50:40', 0, NULL, 1),
(25028, '', '0', '8940682881', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-14 04:45:37', 0, NULL, 0, NULL, 1),
(25029, 'sangavi', '13', '6384411347', '', 'sangavi12092002s@gmial.com', '2002-09-12', 22, '3', '2', 'dhanalakshmi', 'handloom', 4000.00, 1, 0.00, 2.50, 'kancheepuram', 'Chennai', '2505140002', '', '1', 'upload_files/candidate_tracker/6781046170_SANGAVI.pdf', NULL, '3', '2025-05-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-14 04:56:42', 104, '2025-05-14 10:43:48', 0, NULL, 1),
(25030, 'Thilothamma P', '11', '8438102639', '9444260282', 'thilothamma26@gmail.com', '2003-01-26', 22, '2', '2', 'Parthiban', 'Car driver', 18000.00, 2, 0.00, 6000.00, 'Muggapair east', 'Muggapair east', '2505140003', '1', '1', 'upload_files/candidate_tracker/63998390728_Thilo1.pdf', NULL, '1', '2025-05-14', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-05-14 05:12:42', 154, '2025-05-14 02:44:06', 0, NULL, 1),
(25031, 'Gulimi Gowtham kumar', '6', '6361742630', '', 'kumargowtham745@gmail.com', '2005-02-22', 20, '2', '2', 'Vishal', 'Diploma', 25000.00, 1, 0.00, 20000.00, 'Electronic city Bangalore', 'Dhoddathogur', '2505140004', '1', '1', 'upload_files/candidate_tracker/38538406717_GGowthamfresherresume.pdf', NULL, '1', '2025-05-14', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55555', '5151', '1970-01-01', 1, '2025-05-14 05:56:32', 154, '2025-05-14 01:01:35', 0, NULL, 1),
(25032, 'Chethan A', '6', '9972676318', '', 'chethugirija1908@gmail.com', '2002-06-07', 22, '2', '2', 'Girija', 'Housewife', 80000.00, 1, 0.00, 300000.00, 'Bangalore', 'Bangalore', '2505140005', '1', '1', 'upload_files/candidate_tracker/5817987312_Documentfrom.pdf', NULL, '1', '2025-05-14', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'confirm the joining and suggested ctc 16k for dm', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55555', '5151', '1970-01-01', 1, '2025-05-14 06:35:29', 154, '2025-05-15 03:35:38', 0, NULL, 1),
(25033, 'blessy', '4', '9087315781', '9841249205', 'blessysweety20@gmail.com', '1994-06-01', 30, '2', '1', 'Balaji', 'Executive', 25.00, 2, 28000.00, 32000.00, 'Chennai', 'Chennai', '2505140006', '45', '2', 'upload_files/candidate_tracker/84237914440_BlessyResume1.pdf', NULL, '1', '2025-05-14', 0, '', '3', '59', '2025-05-19', 324000.00, '', '5', '1970-01-01', '1', 'Communication ok have exp in sales calling can give a try in our roles and check', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '2025-05-19', 1, '2025-05-14 06:43:35', 60, '2025-05-17 05:40:58', 0, NULL, 1),
(25034, 'Abirami B', '6', '7200512755', '9677298595', 'abirami.sb4918@gmail.com', '2004-11-05', 20, '2', '2', 'Sridevi B', 'Cook', 10000.00, 0, 0.00, 16000.00, 'Triplicane, Chennai', '9/12, Meccapuram 1st Street', '2505140007', '27', '1', 'upload_files/candidate_tracker/28220627368_ABIRAMIBRESUME.pdf', NULL, '1', '2025-05-14', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-05-14 07:35:24', 154, '2025-05-14 02:37:10', 0, NULL, 1),
(25035, 'M.Charumathi', '6', '8939235180', '9551199120', 'charurani2003@gmail.com', '2003-07-27', 21, '1', '2', 'V.Moorthy', 'Cooli', 180000.00, 1, 0.00, 15.00, '117/46, Nethaji Nagar 5 Street Tondiarpet, Ch-81', '117/46, Nethaji Nagar 5 Street Tondiarpet, Ch-81', '2505150001', '', '1', 'upload_files/candidate_tracker/64929694069_DOC20250515WA0000..pdf', NULL, '1', '2025-05-15', 0, 'C99122', '3', '59', '2025-05-19', 180000.00, '', '3', '2025-07-07', '2', 'Communication Ok Can be trained in our roles will check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2025-05-19', 1, '2025-05-15 05:18:11', 60, '2025-05-17 05:43:55', 0, NULL, 1),
(25036, 'Azeeza sadiq basha', '11', '8148764846', '', 'azeezaazee56@gmail.com', '2002-11-28', 22, '2', '2', 'Sadiq basha', 'Driver', 35000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2505150002', '1', '1', 'upload_files/candidate_tracker/63806026411_Azeezanewresume.pdf', NULL, '1', '2025-05-15', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-05-15 07:15:39', 154, '2025-05-15 01:25:44', 0, NULL, 1),
(25037, 'Pavithra.M', '6', '7338984171', '', 'pavithra230605@gmail.com', '2005-06-23', 19, '2', '2', 'Munusamy', 'Sales executive', 25000.00, 1, 0.00, 20000.00, 'Chennai, chrompet', 'Chrompet', '2505150003', '27', '1', 'upload_files/candidate_tracker/4053451786_pdfresume.pdf', NULL, '1', '2025-05-15', 0, '', '3', '59', '2025-05-22', 180000.00, '', '3', '2025-06-28', '2', 'Communication Ok need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55732', '5151', '2025-05-22', 1, '2025-05-15 07:49:22', 60, '2025-05-21 08:23:36', 0, NULL, 1),
(25038, 'Blessy. L', '6', '9094885367', '9976464790', 'blessyjacob390@gmail.com', '2005-01-04', 20, '2', '2', 'P.Lakshmanan', 'Daily wages', 30000.00, 1, 0.00, 18000.00, 'Chennai,Perungalathur', 'Chennai ,Perungalathur', '2505150004', '27', '1', 'upload_files/candidate_tracker/31309485054_BlessyLResume.docx', NULL, '1', '2025-05-15', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not intersted this filed', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-05-15 07:49:34', 154, '2025-05-15 03:50:44', 0, NULL, 1),
(25039, 'Namitha V', '6', '9626631251', '6382292600', 'namithasweety007@gmail.com', '2005-11-09', 19, '2', '2', 'Vasudevan', 'Farmer', 30000.00, 2, 0.00, 18000.00, '6/196A mettu street kalathur Ulundhurpet', '81,v.G.P.salai , saidapet chennai', '2505150005', '27', '1', 'upload_files/candidate_tracker/45811084809_Resume.pdf', NULL, '1', '2025-05-15', 0, '', '3', '59', '2025-05-26', 180000.00, '', '3', '2026-01-02', '2', 'Communication Ok Can be trained in our roles need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', '5151', '2025-05-26', 1, '2025-05-15 07:49:41', 60, '2025-05-24 05:58:36', 0, NULL, 1),
(25040, '', '0', '9363055977', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505150006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-15 07:55:27', 0, NULL, 0, NULL, 1),
(25041, 'gladina Sangeetha', '6', '6383622197', '8807413196', 'gladinasangeetha79@gmail.com', '2004-10-01', 20, '2', '2', 'Elizabeth', 'Private employee', 15000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2505150007', '1', '2', 'upload_files/candidate_tracker/8800234638_gladinaSangeetharesume.pdf', NULL, '1', '2025-06-18', 0, '', '10', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-15 12:08:48', 159, '2026-03-03 01:33:29', 0, NULL, 1),
(25042, 'NIKITHA D', '6', '6374019106', '', 'nikkithadurairaj0@gmail.com', '2002-01-27', 23, '2', '2', 'Durai Raj', 'Agriculture', 60000.00, 1, 0.00, 200000.00, 'Cuddalore', 'Chennai', '2505150008', '1', '1', 'upload_files/candidate_tracker/81568694875_Resume.pdf', NULL, '1', '2025-05-16', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-05-15 12:19:58', 154, '2025-05-16 02:52:36', 0, NULL, 1),
(25043, '', '0', '7904746468', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505150009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-15 12:54:03', 0, NULL, 0, NULL, 1),
(25044, 'Bagavathi Nagarajan', '6', '6374054494', '9750281844', 'bagavathiammu68@gmail.com', '2010-05-16', 0, '2', '2', 'Nagarajam', 'Electrical', 10000.00, 1, 14000.00, 20000.00, 'Rameswaram', 'Saidapet', '2505160001', '1', '2', 'upload_files/candidate_tracker/26453033526_bagavathiresume.pdf', NULL, '1', '2025-05-16', 5, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-05-16 04:32:28', 154, '2025-05-16 11:21:47', 0, NULL, 1),
(25045, 'pravinkumar mohan', '6', '8778202070', '', 'pravinkr4696@gmail.com', '1998-06-04', 26, '2', '2', 'mohan v', 'own business', 60000.00, 1, 20000.00, 22000.00, 'chennai', 'chennai', '2505160002', '1', '2', 'upload_files/candidate_tracker/29656954042_PravinKumarMResume2.pdf', NULL, '1', '2025-05-16', 0, '', '3', '59', '2025-05-26', 222000.00, '', '3', '2025-06-28', '1', 'Communication Ok Have exp Can give a try and check distance need to check and Long run too doubts in this profile', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55732', '5151', '2025-05-26', 1, '2025-05-16 04:33:53', 60, '2025-05-26 10:26:26', 0, NULL, 1),
(25046, 'Rakesh', '4', '6369918193', '', 'rockzrakesh2001@gmail.com', '2001-03-12', 24, '6', '2', 'JALAKKANNI', 'House wife', 30000.00, 2, 0.00, 17000.00, 'Pattabiram', 'Pattabiram', '2505160003', '', '1', 'upload_files/candidate_tracker/89235025965_RakeshCV.doc', NULL, '1', '2025-05-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-16 05:14:11', 1, '2025-05-16 05:24:06', 0, NULL, 1),
(25047, 'JOSHUUA PATRIC S', '6', '9597402001', '8939219294', 'joshuapatric46@gmail.com', '2001-03-10', 24, '1', '2', 'A. Stanley', 'Salried', 15000.00, 0, 0.00, 24000.00, 'Thousand lights', 'Thousand lights', '2505160004', '', '2', 'upload_files/candidate_tracker/91864885731_Joshua.pdf', NULL, '1', '2025-05-16', 0, '', '3', '59', '2025-06-05', 240000.00, '', '5', '1970-01-01', '1', 'Communication Good have exp in shriram finance open for health issurance Over projecting himself can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55732', '5151', '2025-06-05', 1, '2025-05-16 06:26:38', 60, '2025-06-04 06:52:05', 0, NULL, 1),
(25048, 'Yuvashri T D', '6', '9150567183', '', 'yuvashri.devaraj@gmail.com', '2001-07-30', 23, '2', '2', 'T.D. shantha chitra devi', 'SSLC', 18000.00, 1, 22583.00, 25000.00, '56/13 North railway station road thiruvottiyur', '1B Block 1GS m meadows & builders Pallavaram', '2505160005', '1', '2', 'upload_files/candidate_tracker/45522161695_Yuvashriresume.pdf', NULL, '1', '2025-05-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-05-16 06:33:20', 154, '2025-05-16 03:36:24', 0, NULL, 1),
(25049, 'Jenifer.c', '6', '7305178169', '9150977154', 'jeniprakash1708@gmail.com', '2004-07-08', 20, '2', '1', 'Prakash', 'Driving', 200000.00, 3, 0.00, 20000.00, 'Tambaram', 'Singaperumal kovil', '2505160006', '1', '1', 'upload_files/candidate_tracker/40483076833_JENIFERRESUME11.pdf', NULL, '1', '2025-05-16', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-05-16 06:57:12', 154, '2025-05-16 02:34:04', 0, NULL, 1),
(25050, 'Hazeera N.J', '20', '8608788951', '8072071988', 'hazee172004@gmail.com', '2004-11-17', 20, '2', '2', 'S.K.Nasartheen', 'Business', 100000.00, 2, 0.00, 20000.00, 'Triplicane', 'Triplicane', '2505160007', '1', '1', 'upload_files/candidate_tracker/39309685378_Blue20Simple20Professional20CV20Resume202501242111580000.pdf', NULL, '1', '2025-05-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-05-16 07:12:57', 1, '2025-05-16 07:21:41', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25051, 'Geetha V', '6', '9962597202', '9962451041', 'geethaanupriya5566@gmail.com', '2004-07-14', 20, '3', '2', 'Stella kumari', 'Households', 14000.00, 1, 4500.00, 20000.00, 'No13,2nd street semmanpet kellys kilpauk Chennai10', 'No13,2nd street semmanpet kellys kilpauk Chennai10', '2505160008', '', '2', 'upload_files/candidate_tracker/9322305550_DocScanner16May20251258pm.pdf', NULL, '1', '2025-05-16', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-05-16 07:18:15', 104, '2025-05-16 04:49:47', 0, NULL, 1),
(25052, 'nandha gopal', '17', '7358877502', '8940845102', 'nandhagopal20k@gmail.com', '2002-10-10', 22, '5', '2', 'vinayagam', 'farmer', 400000.00, 1, 0.00, 350000.00, 'arambakkam gummudipoondi', 'chennai', '2505160009', '', '1', 'upload_files/candidate_tracker/87520378188_NandhaGopalResume.pdf', NULL, '1', '2025-05-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-16 12:11:54', 1, '2025-05-16 12:18:06', 0, NULL, 1),
(25053, '303906491010', '4', '9360767002', '9940323604', 'yakeshjustin02@gmail.com', '2001-10-20', 23, '3', '2', 'Ramaiah KL', 'Hpcl labour', 16000.00, 1, 14000.00, 18000.00, '3/55 Bharathiyar street, veppampattu, thiruvallur', '3/55 Bharathiyar street, veppampattu, thiruvallur', '2505160010', '', '2', 'upload_files/candidate_tracker/75605470329_CreamBrownSimpleWebDeveloperCV211.pdf', NULL, '1', '2025-05-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-16 03:23:47', 1, '2025-05-16 03:31:48', 0, NULL, 1),
(25054, 'Mohan Raj S', '6', '8667744339', '6380524885', 'mohansiva122018@gmail.com', '2001-11-10', 23, '2', '2', 'Sivaprakasam R', 'Agriculture', 17000.00, 1, 0.00, 4.00, 'Chidambaram', 'Chidambaram', '2505190001', '59', '1', 'upload_files/candidate_tracker/3840045513_MOHANRAJSRESUMEupdated.pdf', NULL, '1', '2025-05-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-19 04:45:53', 154, '2025-05-19 12:23:24', 0, NULL, 1),
(25055, 'Hayath basha', '6', '6382135387', '8754775456', 'hayathbasha2023@gamil.com', '2003-06-03', 21, '2', '2', 'Zahidha', 'House wife', 30000.00, 0, 15.00, 18.00, 'Attipattu', 'Attipattu', '2505190002', '1', '2', 'upload_files/candidate_tracker/77987780205_8a990a357cd54fc1a91cdabc40813150resume.pdf', NULL, '1', '2025-05-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-19 04:58:24', 154, '2025-05-19 12:23:49', 0, NULL, 1),
(25056, 'LOKESH.S', '11', '9080101943', '', 'lokeshsivakumar2004@gmail.com', '2004-02-26', 21, '2', '2', 'SIVAKUMAR.G (FATHER)', 'Farmer', 700000.00, 1, 0.00, 3000.00, 'Vellore', 'Vellore', '2505190003', '1', '1', 'upload_files/candidate_tracker/26829710344_LOKESHRESUMESRM.pdf', NULL, '1', '2025-05-19', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-05-19 06:18:10', 154, '2025-05-19 12:24:34', 0, NULL, 1),
(25057, 'Sanjevi T', '11', '9677197565', '9500104236', 'sanjevit10@gmail.com', '2003-10-09', 21, '5', '2', 'E Thirumal', 'Maintenance manager', 180000.00, 2, 0.00, 1.00, 'Madhavaram', 'Madhavaram chennai', '2505190004', '', '1', 'upload_files/candidate_tracker/89693361778_Sanjevires.pdf', NULL, '1', '2025-05-19', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-05-19 07:08:12', 154, '2025-05-19 03:34:24', 0, NULL, 1),
(25058, 'Herald Manish m s', '11', '7200346369', '', 'heraldmanish0000@gmail.com', '2004-05-07', 21, '5', '2', 'manisekar', 'priest', 160000.00, 1, 0.00, 1.00, 'velachery', 'velachery', '2505190005', '', '1', 'upload_files/candidate_tracker/82489433767_HMMS252.pdf', NULL, '1', '2025-05-19', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-05-19 07:08:34', 154, '2025-05-19 03:35:10', 0, NULL, 1),
(25059, 'Akash dhanapal', '11', '8056115847', '9790561098', 'akashdhanapal1604@gmail.com', '2004-06-16', 20, '5', '2', 'Dhanapal', 'Cleaning service', 35000.00, 1, 0.00, 1.00, 'No 61, perumal kovil street,kotturpuram,ch-85', 'No 61, perumal kovil street,kotturpuram,ch-85', '2505190006', '', '1', 'upload_files/candidate_tracker/20298242325_AKASHINTERNSHIPRESUME.pdf', NULL, '1', '2025-05-19', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-05-19 07:08:47', 154, '2025-05-19 03:36:01', 0, NULL, 1),
(25060, 'Charulatha K', '6', '8778867665', '9344422327', 'charukirubakaran05@gmail.com', '2004-08-05', 20, '2', '2', 'Kiruba Karan J', 'Private employee', 55000.00, 1, 0.00, 20000.00, 'Tondiarpet, chennai', 'Tondiarpet, chennai', '2505190007', '1', '1', 'upload_files/candidate_tracker/39602716076_CHARULATHAKresume.pdf', NULL, '1', '2025-05-20', 0, '', '3', '59', '2025-05-30', 168000.00, '', '3', '2025-07-04', '2', 'Communication Ok can be trained in our roles need to check and confirm', '5', '1', '4', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-05-29', 1, '2025-05-19 07:39:44', 154, '2025-05-30 09:42:37', 0, NULL, 1),
(25061, 'K Dhivya Bharathi', '6', '6381278841', '9884313976', 'divyabharu2004@gmail.com', '2004-08-15', 20, '3', '2', 'Kumar', 'Auto driver', 10000.00, 1, 0.00, 15000.00, 'Old washermenpet', 'Old washermenpet', '2505190008', '', '1', 'upload_files/candidate_tracker/99882831419_divyaresume.pdf1.pdf', NULL, '1', '2025-05-19', 0, '', '3', '59', '2025-05-22', 168000.00, '', '5', '1970-01-01', '2', 'Fresher need to check in training and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1287', '5151', '2025-05-22', 1, '2025-05-19 11:00:29', 60, '2025-05-21 08:26:01', 0, NULL, 1),
(25062, 'Deepika Raja', '6', '7448831780', '8056122822', 'Crazydevildeepi29@gmail.com', '2004-06-29', 20, '3', '2', 'Raja', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Chromepet', 'Chromepet', '2505190009', '', '1', 'upload_files/candidate_tracker/85857733076_dpx1.pdf', NULL, '1', '2025-05-19', 0, '', '3', '59', '2025-05-22', 168000.00, '', '3', '2025-06-28', '2', 'Communication Ok fresher for our roles need to check in training and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55732', '5151', '2025-05-22', 1, '2025-05-19 11:42:45', 60, '2025-05-21 08:24:52', 0, NULL, 1),
(25063, 'Karthick G', '6', '9790073655', '', 'karthickg0604@gmail.com', '1996-11-19', 28, '2', '2', 'Mother - G. meenakshi', 'Housewife', 14300.00, 0, 14300.00, 23000.00, 'Madurai', 'Chennai', '2505200001', '1', '2', 'upload_files/candidate_tracker/36508343082_fcvKarthickupdated.pdf', NULL, '1', '2025-05-20', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-05-20 03:53:08', 154, '2025-05-20 04:15:59', 0, NULL, 1),
(25064, 'NAVIN KUMAR', '6', '9361713205', '', 'navinkumarcost2211@gmail.com', '2000-11-22', 24, '2', '2', 'Parandhaman', 'Farmer', 40000.00, 2, 0.00, 20000.00, 'Cuddalore', 'Chennai', '2505200002', '59', '1', 'upload_files/candidate_tracker/74326349966_CV2025052006395356.pdf', NULL, '1', '2025-05-20', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-05-20 04:38:29', 154, '2025-05-20 12:07:16', 0, NULL, 1),
(25065, 'Chandru venkatesh', '13', '6382797457', '', 'chandruvenkatesh24@gmail.com', '2004-01-24', 21, '3', '2', 'Saraswathy', 'Tailor', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2505200003', '', '1', 'upload_files/candidate_tracker/62996918050_BlackandWhiteCleanProfessionalA4Resume202505171550280000.pdf', NULL, '1', '2025-05-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-20 06:55:20', 1, '2025-05-20 06:59:21', 0, NULL, 1),
(25066, 'Pradeep K D', '6', '8546976214', '8970102854', 'pradeepkd214@gmail.com', '2000-08-01', 24, '2', '2', 'Kanthyappa', 'Agriculture', 100000.00, 1, 0.00, 20000.00, 'Shivamogga', 'Dasarahalli', '2505200004', '1', '1', 'upload_files/candidate_tracker/20451588683_PradeepK20Dcv88691.pdf', NULL, '1', '2025-05-20', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55555', '5151', '1970-01-01', 1, '2025-05-20 07:03:56', 104, '2025-05-20 03:30:21', 0, NULL, 1),
(25067, 'JESITHA ANGEL', '6', '9789963612', '9003170081', 'jesithaangel656@gmail.com', '2004-01-04', 21, '2', '2', 'Simiyon raja', 'Driver', 18000.00, 1, 0.00, 15000.00, 'Porur', 'Porur', '2505200005', '27', '1', 'upload_files/candidate_tracker/58868399853_PDFGallery.pdf', NULL, '1', '2025-05-20', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected for the reason too low communication.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-05-20 09:14:41', 154, '2025-05-20 04:17:01', 0, NULL, 1),
(25068, 'R KARTHIKA', '6', '9080368790', '', 'crazydoll132005@gmail.com', '2005-01-03', 20, '2', '2', 'R DHANALAKSHMI', 'housekeeping', 11000.00, 0, 0.00, 15000.00, 'T nagar', 'T nagar', '2505200006', '27', '1', 'upload_files/candidate_tracker/80281370140_R.KARTHIKARESUMENEW.docx', NULL, '1', '2025-05-20', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain for our role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-05-20 09:14:46', 154, '2025-05-20 04:17:38', 0, NULL, 1),
(25069, '', '0', '9353256581', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505200007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-20 12:14:15', 0, NULL, 0, NULL, 1),
(25070, 'S prashanth', '5', '9019224272', '8880281599', 'Prashanthcs07@gmail.com', '1999-09-08', 25, '2', '2', 'S suri', 'Auto driver', 15000.00, 0, 22000.00, 25000.00, 'No. Muddapura prabhu camp kampli sugar factory', 'Uttarahalli. Banashankari. Banglore', '2505200008', '1', '2', 'upload_files/candidate_tracker/10457342329_Prashanthresume11.doc', NULL, '1', '2025-05-21', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he will join monday or tuesday suggested ctc for 10 to 15% from the previous ctc selected for rm', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55555', '5151', '1970-01-01', 1, '2025-05-20 12:38:47', 60, '2025-05-24 04:34:51', 0, NULL, 1),
(25071, 'Sharan k', '6', '9361004132', '9941189505', 'Sharansharan25664@gmail.com', '2004-10-10', 20, '2', '2', 'Karthikeyan u', 'Superviser', 15000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2505200009', '1', '1', 'upload_files/candidate_tracker/28868998396_DOCresumesharan.pdf', NULL, '1', '2025-05-21', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate performance is little bit ok.but his communication is not good.also pronunciation of words is very low.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-05-20 04:19:23', 154, '2025-05-21 04:21:35', 0, NULL, 1),
(25072, '', '0', '8939390319', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505210001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-21 03:53:46', 0, NULL, 0, NULL, 1),
(25073, 'Kevin Raj P', '13', '9940287295', '', 'kevinchris665@gmail.com', '2003-03-13', 22, '6', '2', 'peter james', 'security', 30000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2505210002', '', '1', 'upload_files/candidate_tracker/85351420944_KEVINRAJPRESUME.pdf', NULL, '1', '2025-05-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-21 05:09:06', 1, '2025-05-21 05:13:23', 0, NULL, 1),
(25074, 'Guna Sekar D', '13', '9344184204', '', 'gunasekar132003@gmail.com', '2003-03-01', 22, '3', '2', 'Delli Anand S', 'Leyland employee', 60000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2505210003', '', '1', 'upload_files/candidate_tracker/83717153134_GUNASEKARRESUME1.pdf', NULL, '1', '2025-05-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-21 05:09:46', 1, '2025-05-21 05:14:34', 0, NULL, 1),
(25075, 'Snekha R k', '6', '9884245914', '', 'snekhasai2@gmail.com', '2003-05-02', 22, '2', '2', 'P. Ramesh Kannan  Rk valli', 'Employee', 20000.00, 1, 0.00, 18000.00, '#47.blk.no.Air nagar Ernavoor,Chennai600057', '#47.blk.no.Air nagar Ernavoor,Chennai600057', '2505210004', '27', '1', 'upload_files/candidate_tracker/59125862197_SNEKHARESUME.pdf', NULL, '1', '2025-05-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-21 05:12:40', 154, '2025-05-21 12:15:17', 0, NULL, 1),
(25076, 'Mohammed azarudeen', '23', '7358102948', '', 'mohammedazar705@gmail.com', '2004-11-19', 20, '1', '2', 'Thamin ansari', 'Painter', 10000.00, 1, 0.00, 20000.00, 'Perambur, Chennai-11', 'Perambur, Chennai-11', '2505210005', '', '1', 'upload_files/candidate_tracker/89116730919_Mohammedazarudeen202505201700250000.pdf', NULL, '1', '2025-05-21', 0, '55824', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-21 06:35:26', 1, '2025-05-21 06:42:17', 0, NULL, 1),
(25077, 'sathyanarayanan', '31', '7373227374', '8122797375', 'sathyario62@gmail.com', '2001-03-19', 24, '6', '2', 'ramanathan', 'business', 300000.00, 2, 0.00, 250000.00, 'redhills', 'redhills', '2505210006', '', '1', 'upload_files/candidate_tracker/70341231021_finalresume2.pdf', NULL, '1', '2025-05-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-21 06:42:25', 1, '2025-05-21 06:51:35', 0, NULL, 1),
(25078, 'P.SHABINISHA', '6', '7604800265', '9962251952', 'shabinisha93@gmail.com', '2005-03-03', 20, '2', '2', 'G.PALANI', 'Driver', 30000.00, 2, 0.00, 17000.00, 'F/6, Muthamizil nagar, Tondiarpet, Chennai -81', 'F/6, Muthamizil nagar, Tondiarpet, Chennai -81', '2505210007', '1', '1', 'upload_files/candidate_tracker/76682408140_P.shabinisha202505211546220000.pdf', NULL, '1', '2025-05-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-21 07:24:33', 154, '2025-05-26 12:36:52', 0, NULL, 1),
(25079, 'Gaurav sharma', '14', '8248316218', '9543888553', 'gauravsharmadr13@gmail.com', '2002-11-13', 22, '3', '2', 'Dinesh Kumar Sharma', 'Businessman', 40000.00, 1, 0.00, 28000.00, 'Chennai', 'Chennai', '2505210008', '', '1', 'upload_files/candidate_tracker/8980257880_resume2k24final.pdf', NULL, '1', '2025-05-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-21 09:04:47', 1, '2025-05-21 09:09:18', 0, NULL, 1),
(25080, 'nikhil', '5', '9916968042', '', 'Nikhilboob7@gmail.com', '2004-10-17', 20, '2', '2', 'rajesh', 'bba', 200000.00, 1, 0.00, 35000.00, 'raichur', 'jp nagar bangalore', '2505210009', '1', '1', 'upload_files/candidate_tracker/94637902341_Nikhilresume.pdf', NULL, '1', '2025-05-21', 0, '', '3', '59', '2025-06-02', 216000.00, '', '4', '2025-07-15', '2', 'Communication Good Can be trained for FSC roles need to check in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', '55555', '5151', '2025-06-02', 1, '2025-05-21 09:07:32', 60, '2025-05-31 07:23:41', 0, NULL, 1),
(25081, 'Pavithra Jyothi', '6', '9108850264', '9742072698', 'pavithrajyothi79@gmail.com', '1999-06-12', 25, '2', '2', 'cathrine mary', 'sales', 15000.00, 2, 0.00, 20000.00, 'veerannapalya Bangalore', 'veerannapalya banglore', '2505210010', '1', '2', 'upload_files/candidate_tracker/89227367160_PAVITHRAJYOTHIRESUME.docx', NULL, '1', '2025-05-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-05-21 09:48:06', 104, '2025-05-22 09:32:43', 0, NULL, 1),
(25082, 'Sharukullah', '6', '7824053983', '6369338320', 'sharukss1015@gmail.com', '1999-11-10', 25, '2', '2', 'A.m.noorullah', 'Driver', 40000.00, 2, 22105.00, 22105.00, 'No.34 balavinayagar street arumbakkam', 'No.34 balavinayagar street arumbakkam', '2505210011', '1', '2', 'upload_files/candidate_tracker/19593362698_sharukullahupdatedresume.pdf', NULL, '1', '2025-05-21', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, communication good , 11 months experience Landmark insurance broker pls cross check the sustainability , and confirm the joining date ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '55732', '5151', '1970-01-01', 1, '2025-05-21 11:07:35', 154, '2025-05-22 03:56:37', 0, NULL, 1),
(25083, 'Arul Samuel Arul Ananth Kumar', '2', '9345899822', '9500343036', 'arulsamuela@gmail.com', '2002-10-02', 22, '2', '2', 'Arul Ananth Kumar', 'Foreman, Daily Thanthi', 60000.00, 1, 0.00, 15000.00, 'Tiruchirappalli', 'Tiruchirappalli', '2505210012', '1', '1', 'upload_files/candidate_tracker/54988790133_ArulSamuelResume2025.pdf', NULL, '1', '2025-05-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-21 12:01:59', 154, '2025-05-24 02:10:33', 0, NULL, 1),
(25084, 'NIVAS. S', '6', '8680099512', '9884415380', 'suryanivas658@gmail.com', '2004-04-09', 21, '2', '2', 'R. Selvam', 'No', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2505220001', '1', '1', 'upload_files/candidate_tracker/54998641830_Nivas.s.docx', NULL, '1', '2025-05-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication slow not much serious with the job roles not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-22 05:53:34', 154, '2025-05-22 04:43:52', 0, NULL, 1),
(25085, 'SATHISH', '6', '7550015976', '', 'SATHISHAPPU75500@GMAIL.COM', '2004-02-03', 21, '3', '2', 'KASIM', 'Self employed', 96000.00, 2, 0.00, 14000.00, 'Madhavaram', 'Madhavaram', '2505220002', '', '1', 'upload_files/candidate_tracker/53246645978_SATHISHK.pdf', NULL, '1', '2025-05-22', 0, '', '3', '59', '2025-05-26', 192000.00, '', '5', '1970-01-01', '2', 'Fresher 5050 Profile seems to project himself not sure on sustainability let us try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55732', '5151', '2025-05-26', 1, '2025-05-22 06:30:58', 60, '2025-05-24 06:01:13', 0, NULL, 1),
(25086, 'Pradeepa v', '6', '8072880199', '', 'Pradeepavtr99@gmail.com', '1999-12-09', 25, '2', '1', 'Vanjagan. K', 'Farmer', 10000.00, 0, 15000.00, 20000.00, 'ambattur', 'erode', '2505220003', '1', '2', 'upload_files/candidate_tracker/59715315954_Resume17042025101048PM.pdf', NULL, '1', '2025-05-23', 0, '', '3', '59', '2025-05-26', 192000.00, '', '3', '2025-09-04', '1', 'Communication Ok fresher for our roles have exp in customer support need to check in training', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55732', '5151', '2025-05-26', 1, '2025-05-22 07:13:47', 154, '2025-05-24 06:20:25', 0, NULL, 1),
(25087, 'ahamed aslam s', '6', '7305371880', '8939749500', 'theaslam@gmail.com', '2004-07-31', 20, '2', '2', 'salma', 'muslim', 80000.00, 1, 18000.00, 20000.00, 'tvt thangal chennai', 'Tvt Thangal Chennai', '2505220004', '1', '2', 'upload_files/candidate_tracker/20773587615_AhamedAslamSresume2.pdf', NULL, '1', '2025-05-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok Much focus for IT seems to give some stories sustainability doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-22 07:45:57', 154, '2025-05-22 04:44:48', 0, NULL, 1),
(25088, 'R Saravanan', '6', '9629797873', '9551266056', 'marxsaravanan331@gmail.com', '2003-09-06', 21, '3', '2', 'ramachandran', 'daily wages', 15000.00, 1, 0.00, 18000.00, '617/b dlb nagar putlur Thiruvallur', 'thiruvallur', '2505220005', '', '1', 'upload_files/candidate_tracker/31376389205_Saravananresume.word.pdf', NULL, '1', '2025-05-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance focus in non voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-22 07:46:10', 154, '2025-05-22 04:49:54', 0, NULL, 1),
(25089, 'Sathish S', '2', '9080069328', '9514775507', 'sathishs021102@gmail.com', '2002-11-02', 22, '3', '2', 'Subramani', 'Carpenter', 20000.00, 4, 0.00, 15000.00, 'Chennai', 'Chennai', '2505220006', '', '1', 'upload_files/candidate_tracker/46197694507_BlackWhiteMinimalistCVResume.pdf', NULL, '1', '2025-05-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-22 08:01:47', 1, '2025-05-22 08:24:08', 0, NULL, 1),
(25090, 'Yaakash', '4', '9080263738', '', 'yaakashsrofficial@gmail.com', '2004-01-26', 21, '2', '2', 'Selvaraj', 'Nil', 18000.00, 0, 18000.00, 20000.00, 'Chennai', 'Chennai', '2505220007', '1', '2', 'upload_files/candidate_tracker/32819954589_YaakashSelvarajResume.pdf', NULL, '1', '2025-05-22', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Look for renewal only communication Average long rn doubts no parents ', '1', '1', '', '1', '8', '', '2', '2025-05-27', '3', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-22 08:18:20', 154, '2025-05-22 04:46:26', 0, NULL, 1),
(25091, 'Abdul Hakeem R', '13', '6382112714', '', 'abdulhakeem1504@gmail.com', '2004-10-15', 20, '6', '2', 'Abdul Rahim J', 'Lab Assistant', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2505220008', '', '1', 'upload_files/candidate_tracker/70354468440_AbdulHakeemDeveloper.pdf', NULL, '1', '2025-05-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-22 09:13:34', 1, '2025-05-22 09:16:09', 0, NULL, 1),
(25092, 'K.Lavanya', '6', '7904347304', '6383111298', 'lavanyashanthi07@gmail.com', '2003-10-12', 21, '2', '2', 'P.kannan', 'Daily wages', 18000.00, 2, 0.00, 15000.00, 'Vyasarpadi', 'Vyasarpadi', '2505220009', '1', '1', 'upload_files/candidate_tracker/73819337284_LavanyaResume.pdf', NULL, '1', '2025-05-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up a lot  will not sustain in our profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-22 09:19:39', 154, '2025-05-22 04:38:13', 0, NULL, 1),
(25093, 'Varshini', '6', '9500883851', '7397478851', 'varshinivarshini620@gmail.com', '2005-02-07', 20, '2', '2', 'Kumar', 'Plumber', 10000.00, 1, 0.00, 15000.00, 'Virugambakkam', 'Virugambakkam', '2505220010', '1', '1', 'upload_files/candidate_tracker/44286605585_resume.pdf', NULL, '1', '2025-05-22', 0, '', '3', '59', '2025-05-26', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'P1287', '5151', '2025-05-26', 1, '2025-05-22 09:19:50', 60, '2025-05-24 06:03:40', 0, NULL, 1),
(25094, 'S.Leena Rose', '6', '7200035336', '9176290511', 'leenarose2004918@gmail.com', '2004-09-18', 20, '2', '2', 'S.Sugritha Raj', 'Leather cutter', 8000.00, 2, 0.00, 15000.00, 'N0 40 ottagapalayam Vadapalani chennai 26', 'Vadapalani', '2505220011', '1', '1', 'upload_files/candidate_tracker/15017208126_leena.pdf', NULL, '1', '2025-05-22', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not at speaking and not so good at communication and not sure about stability', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-05-22 09:20:02', 154, '2025-05-22 04:52:02', 0, NULL, 1),
(25095, '', '0', '9360368502', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505220012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-22 09:20:08', 0, NULL, 0, NULL, 1),
(25096, 'A.Nandhini', '6', '6380664766', '9789969721', 'chandranandhini377@gmail.com', '2004-07-16', 20, '2', '2', 'P.Ashokan', 'Daily waves', 20000.00, 1, 0.00, 15000.00, 'Vyasarpadi', 'Vyasarpadi', '2505220013', '1', '1', 'upload_files/candidate_tracker/342497987_LavanyaResume.pdf', NULL, '1', '2025-05-22', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-05-22 09:20:21', 154, '2025-05-22 06:38:20', 0, NULL, 1),
(25097, 'Saran R', '6', '9841569523', '', 'r.saran6379@gmail.com', '2004-04-17', 21, '2', '2', 'Rangabashyam', 'Media', 12000.00, 0, 0.00, 21000.00, 'Chengalpattu', 'Chengalpattu', '2505220014', '1', '1', 'upload_files/candidate_tracker/6922706479_atsfriendlyresume.docx202503262213470000.docx', NULL, '1', '2025-05-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-22 01:02:30', 154, '2025-05-23 11:38:10', 0, NULL, 1),
(25098, 'Prajwal s', '4', '7204342752', '', 'yuvaprajwal.s19@gmail.com', '2004-03-23', 21, '2', '2', 'Rajamma KM', 'House wife', 11000.00, 0, 0.00, 2.80, 'Manchenahalli chikkabalapur', 'Chikkabanavara', '2505220015', '1', '1', 'upload_files/candidate_tracker/6601569004_Prajwals11.docx', NULL, '1', '2025-05-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-05-22 01:13:42', 1, '2025-05-22 03:12:31', 0, NULL, 1),
(25099, '', '0', '8056826372', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505220016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-22 01:15:00', 0, NULL, 0, NULL, 1),
(25100, 'Bhavana B', '4', '6364170781', '', 'bhavanagowda3403@gmail.com', '2003-04-03', 22, '2', '2', 'Byreddy', 'Former', 20000.00, 1, 0.00, 2.80, 'Chinthadapi', 'Chikkabanavara', '2505220017', '1', '1', 'upload_files/candidate_tracker/94504842215_Bhavanaresume.pdf', NULL, '1', '2025-05-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-05-22 01:26:31', 1, '2025-05-22 03:57:38', 0, NULL, 1),
(25101, 'Mallesh BM', '4', '9740053126', '', 'bmmallesh93@gmail.com', '2003-10-21', 21, '2', '2', 'Manjunath BN', 'Former', 40000.00, 1, 0.00, 2.80, 'Sidlaghatta', 'Chikkabanavara', '2505220018', '1', '1', 'upload_files/candidate_tracker/35235519170_mallesh.docx', NULL, '1', '2025-05-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-05-22 03:20:21', 1, '2025-05-22 03:23:41', 0, NULL, 1),
(25102, 'Syed Abdul kather', '5', '8695594607', '', 'syedabu5217@gmail.com', '1999-05-21', 26, '2', '2', 'Regina begam', 'Housewife', 25000.00, 1, 0.00, 30000.00, 'Puliyangudi', 'Chennai', '2505220019', '1', '2', 'upload_files/candidate_tracker/93119145135_syedresume12.pdf', NULL, '1', '2025-05-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-22 07:03:16', 154, '2025-05-23 01:19:37', 0, NULL, 1),
(25103, 'Gayathri S', '6', '8825888713', '8778096602', 'GAYATHRISUMI2003@GMAIL.COM', '2003-07-15', 21, '2', '2', 'Selvam.D', 'Driver', 20000.00, 1, 0.00, 18000.00, 'No 48 cdn nagar 5th street nerkunduram chennai', 'No48 cdn nagar 5th street Nerkunduram Chennai', '2505230001', '1', '1', 'upload_files/candidate_tracker/59162583358_GayathriResume.pdf', NULL, '1', '2025-05-24', 0, '', '3', '59', '2025-05-26', 168000.00, '', '3', '2025-06-03', '2', 'Communication Good Fresher can be trained need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '2025-05-26', 1, '2025-05-23 04:35:50', 60, '2025-05-24 06:07:39', 0, NULL, 1),
(25104, 'praveenkumar', '2', '6381867047', '9342772245', 'praveenm7047@gmail.com', '2004-05-28', 20, '2', '2', 'Murugan', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Erode', 'Egmore', '2505230002', '1', '1', 'upload_files/candidate_tracker/12665905032_pvresume.pdf', NULL, '1', '2025-05-23', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-05-23 04:38:38', 154, '2025-05-23 10:28:12', 0, NULL, 1),
(25105, 'Ramesh R', '6', '9384927651', '9944826496', 'rameshkuttysamy@gmail.com', '2005-10-04', 19, '1', '2', 'RAVICHANDRAN', 'Farmer', 400000.00, 1, 0.00, 250000.00, 'No 15 ashok nagar thirukattalai PDKT', 'Chennai thirumangalam', '2505230003', '', '1', 'upload_files/candidate_tracker/8062941624_ModernProfessionalCVResume202501202156300000.pdf', NULL, '1', '2025-05-23', 0, 'CAFSUSR00700', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was ok with communication ,no idea about sales interested in working lets try in 7days training time', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-05-23 04:51:57', 154, '2025-05-23 11:38:59', 0, NULL, 1),
(25106, 'Sathish C', '5', '9962816026', '', 'nanthasathish12@gmail.com', '2000-10-30', 24, '2', '2', 'Chelladurai K', 'Driver', 100000.00, 1, 27000.00, 32000.00, 'CHENNAI', 'CHENNAI', '2505230004', '1', '2', 'upload_files/candidate_tracker/66833079102_SathishC.pdf', NULL, '1', '2025-05-23', 0, '', '3', '59', '2025-05-26', 369696.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp in Byjus can be trained in our roles and check,provided CTC based on sriram sir preference', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55735', '55557', '2025-05-26', 1, '2025-05-23 05:07:57', 60, '2025-05-26 10:00:39', 0, NULL, 1),
(25107, 'shanthi nila', '11', '9080410892', '9363304497', 'shanthinilabalamurugan@gmail.com', '2004-06-26', 20, '2', '2', 'balamurugan', 'shipping and forwarding', 120000.00, 1, 0.00, 5000.00, 'perambur chennai', 'perambur chennai', '2505230005', '1', '1', 'upload_files/candidate_tracker/63108740856_NILALastNamePhoneNumberEmailLinkedInYourLinkedInURLLocationPeramburChennaiProf.pdf', NULL, '1', '2025-05-23', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-05-23 05:13:00', 154, '2025-05-23 12:05:41', 0, NULL, 1),
(25108, 'Lakshmi B', '5', '7604942901', '', 'lakshujm@gmail.com', '1998-04-26', 27, '2', '2', 'Babu v', 'Father', 100000.00, 1, 18.00, 20.00, 'Perambur', 'Perambur', '2505230006', '1', '2', 'upload_files/candidate_tracker/14115926738_RESUMELakshmi1.pdf', NULL, '1', '2025-05-23', 0, '', '3', '59', '2025-05-26', 282000.00, '', '1', '1970-01-01', '2', 'Communication good Have exp in calling Credit for 6 yrs can be trained in our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55735', '55557', '2025-05-26', 1, '2025-05-23 05:36:01', 60, '2025-05-26 10:02:23', 0, NULL, 1),
(25109, 'Krishna Kumar', '5', '8667641842', '9566280272', 'kkrishnak904@gmail.com', '1997-11-07', 27, '2', '2', 'Kumar C', 'Circle Secratary in AIADMK', 1.00, 1, 400000.00, 550000.00, 'Chennai', 'Chennai', '2505230007', '57', '2', 'upload_files/candidate_tracker/61172742998_Resume28022025100636am.pdf', NULL, '1', '2025-05-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-23 05:44:19', 154, '2025-05-23 01:07:44', 0, NULL, 1),
(25110, 'Rathish K', '5', '9443530959', '9442830959', 'rathishkandavelb02@gmail.com', '2002-12-28', 22, '2', '2', 'Kandavel B', 'Weaver', 15000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2505230008', '1', '1', 'upload_files/candidate_tracker/71517495387_RATHISHKResume.pdf', NULL, '1', '2025-05-24', 0, '', '3', '59', '2025-06-19', 300000.00, '', '5', '1970-01-01', '2', 'Communication Good working as a HR Intern open to learn in other areas can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1018', '', '55735', '55557', '2025-06-19', 1, '2025-05-23 06:20:18', 60, '2025-06-18 05:07:56', 0, NULL, 1),
(25111, 'kannan R', '6', '6380632268', '9360676175', 'Kr900204@gmail.com', '2002-10-20', 22, '2', '2', 'Rajagopal', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Chennai', '2505230009', '1', '1', 'upload_files/candidate_tracker/73946215730_KannanResume.pdf', NULL, '1', '2025-05-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-05-23 06:59:36', 154, '2025-05-23 02:47:14', 0, NULL, 1),
(25112, 'aRAVIND m', '13', '6369001057', '7200512030', 'aravindanandh58@gmail.com', '2001-04-18', 24, '6', '2', 'Murugan A', 'Farmer', 25000.00, 1, 0.00, 15000.00, 'Villupuram', 'Ambattur', '2505230010', '', '1', 'upload_files/candidate_tracker/60539837742_AravindM4.pdf', NULL, '1', '2025-05-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-23 07:20:53', 154, '2025-05-23 01:03:29', 0, NULL, 1),
(25113, 'Susanth', '6', '9514324741', '7305579095', 'susanthmech123@gmail.com', '1998-07-16', 26, '2', '2', 'Selvam S', 'Maintenance incharge', 40000.00, 1, 300000.00, 450000.00, 'No 41 subbayan street karungalpalayam', 'No53b shanthi nikethan colony extensionmadambakkam', '2505230011', '1', '2', 'upload_files/candidate_tracker/7846574029_SUSANTHRESUME17DECNEW.pdf', NULL, '1', '2025-05-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-05-23 09:06:42', 154, '2025-05-23 04:01:31', 0, NULL, 1),
(25114, 'Surendar Perumal', '6', '9566314681', '9003308195', 'sedhusuren@gmail.com', '2003-09-14', 21, '2', '2', 'Kavitha R', 'Green grocer', 45000.00, 1, 0.00, 20000.00, 'Krishnagiri', 'Velacherry', '2505230012', '1', '1', 'upload_files/candidate_tracker/46937382258_SurendarPRESUME.pdf', NULL, '1', '2025-06-16', 0, '', '3', '59', '2025-06-23', 192000.00, '', '3', '2025-07-30', '2', 'Fresher for our role will check abd confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '2025-06-23', 1, '2025-05-23 12:53:07', 60, '2025-06-22 06:17:39', 0, NULL, 1),
(25115, 'Sapna ajit Huddar', '6', '8497018921', '7204855568', 'sapnahukkeri168@gmail.com', '1999-04-26', 26, '2', '1', 'Ajit huddar', 'Engineer', 50000.00, 1, 0.00, 18000.00, 'Belagavi', 'Bangalore', '2505240001', '1', '1', 'upload_files/candidate_tracker/19295643099_SapnaResume.pdf', NULL, '1', '2025-05-31', 0, '', '3', '59', '2025-06-09', 192000.00, '', '1', '1970-01-01', '2', 'Communication Ok Married fresher for our insurance Sales DM Team', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55671', '55555', '2025-06-09', 1, '2025-05-24 04:59:02', 60, '2025-06-07 06:28:45', 0, NULL, 1),
(25116, 'HASHIM Ahmed', '6', '6381840121', '', 'aryanhashu143@gmail.com', '2000-05-08', 25, '2', '2', 'Zakia sulthana', 'Indian', 25000.00, 2, 0.00, 21000.00, 'Triplicane', 'Triplicane chennai', '2505240002', '1', '1', 'upload_files/candidate_tracker/47875473254_1000171866.pdf', NULL, '1', '2025-05-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-05-24 05:40:19', 154, '2025-05-24 12:12:06', 0, NULL, 1),
(25117, 'Yokeshwaran S', '6', '9361639691', '', 'wyogesh480@gmail.com', '2004-12-13', 20, '2', '2', 'Sukumar', 'Auto driver', 84000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2505240003', '1', '1', 'upload_files/candidate_tracker/82622734532_yokii1312.doc', NULL, '1', '2025-05-24', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-05-24 05:51:42', 154, '2025-05-24 12:41:18', 0, NULL, 1),
(25118, 'Meenakshi V', '5', '6383314369', '9952052238', 'meenuajith22@gamil.com', '1997-07-22', 27, '2', '1', 'Velmurugan', 'Accountant', 25000.00, 1, 20000.00, 22000.00, 'No 22 Devaraj Street Mgr Nagar Chennai', 'chennai', '2505240004', '1', '2', 'upload_files/candidate_tracker/92723352392_MeenakshiResume1.pdf', NULL, '1', '2025-05-24', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1005', '', '55650', '55560', '1970-01-01', 1, '2025-05-24 08:38:06', 154, '2025-05-27 07:14:17', 0, NULL, 1),
(25119, 'Sowmia B', '6', '7401557045', '9360451304', 'sowmiyab9922@gmail.com', '1999-11-22', 25, '2', '2', 'C.balasubramani', 'Printing office', 20000.00, 1, 0.00, 18000.00, '40/99/1a barraka road 1st namalverpet', 'Chennai', '2505240005', '1', '2', 'upload_files/candidate_tracker/63410336519_ResumeRESUMEFormat6.pdf', NULL, '1', '2025-05-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-24 09:33:48', 154, '2025-05-24 04:10:19', 0, NULL, 1),
(25120, 'Gayathiri J', '6', '6385280089', '8680968024', 'gayathrigayathri8185@gmail.com', '2002-05-12', 23, '2', '1', 'Rajeswarn V', 'Auto mobile shop', 30000.00, 1, 17500.00, 20000.00, 'Chennai villivakkam', 'Chennai villivakkam', '2505240006', '57', '2', 'upload_files/candidate_tracker/83889275990_CV2024060722193793.pdf', NULL, '1', '2025-05-24', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-24 11:01:02', 154, '2025-05-24 05:12:06', 0, NULL, 1),
(25121, 'prasanna M', '6', '9363386868', '9715806034', 'prsamestrow46@gmail.com', '2004-08-11', 20, '2', '2', 'muthupalaniappan', 'labour', 35000.00, 1, 15000.00, 18000.00, 'kodaikanal', 'chennai', '2505240007', '1', '2', 'upload_files/candidate_tracker/78460638417_Prasanna.pdf', NULL, '1', '2025-05-27', 2, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-24 12:59:08', 154, '2025-05-27 03:18:29', 0, NULL, 1),
(25122, 'Arunkumarsundaram', '31', '9344642797', '9787538362', 'arunkumar131002@gmail.com', '2002-01-13', 23, '2', '2', 'Sundaram', 'Former', 70000.00, 1, 0.00, 3.00, 'Karur', 'Karur', '2505260001', '1', '1', 'upload_files/candidate_tracker/5912443226_Arunkumarphoto.pdf', NULL, '1', '2025-05-26', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-05-26 04:21:13', 154, '2025-05-26 10:10:43', 0, NULL, 1),
(25123, 'Prakash s', '6', '9677583488', '9003368190', 'Prarek2430@gamil.com', '2005-06-24', 19, '2', '2', 'M. Saravanan', '70,000', 20000.00, 1, 0.00, 16000.00, 'No, 9 Eb. Road Winterpet ,Arakkonam', 'ARAKKONAM', '2505260002', '1', '1', 'upload_files/candidate_tracker/49900059789_Prakash.SRESUME.pdf', NULL, '1', '2025-05-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-26 04:29:47', 154, '2025-05-26 11:47:11', 0, NULL, 1),
(25124, 'Kishore R', '6', '8428028851', '8190912530', 'Jairamkishore66@gmail.com', '2004-06-17', 20, '2', '2', 'R. SAGUNTHALA', '80,000', 28000.00, 1, 0.00, 16000.00, 'Tnhb150b housing board arakkonam', 'ARAKKONAM', '2505260003', '1', '1', 'upload_files/candidate_tracker/58779527075_RKISHORERESUMEcompressed1.pdf', NULL, '1', '2025-05-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-26 04:30:00', 154, '2025-05-26 11:47:36', 0, NULL, 1),
(25125, 'MEENAKSHISUNDARAM', '6', '6381498264', '', 'Sundarkutty2002@gmail.com', '2003-08-27', 21, '2', '2', 'Thirumurugan', 'Tailor', 20000.00, 1, 0.00, 20000.00, '1 Thiru vi ka street', 'Chennai', '2505260004', '1', '1', 'upload_files/candidate_tracker/44306366283_Sundarresume.docx', NULL, '1', '2025-05-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-05-26 05:08:15', 154, '2025-05-26 11:48:21', 0, NULL, 1),
(25126, 'Sri Devi M', '6', '9566166909', '8778805660', 'sridevimurugan285@gmail.com', '2002-12-20', 22, '2', '2', 'S MURUGAN', 'Working on hotel', 15000.00, 1, 0.00, 20000.00, 'Adyar', 'Adyar', '2505260005', '45', '1', 'upload_files/candidate_tracker/12820048334_SRIDEVIresume.pdf', NULL, '1', '2025-05-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-26 05:15:00', 154, '2025-05-26 12:16:23', 0, NULL, 1),
(25127, 'Sri PriYa a', '6', '9962354291', '9094980794', 'priyasaranya585@gmail.com', '2005-05-05', 20, '2', '2', 'a.rajeshwari', 'Working on housekeeping', 13000.00, 1, 0.00, 20000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2505260006', '45', '1', 'upload_files/candidate_tracker/83633712086_DOC20250526WA0000..docx', NULL, '1', '2025-05-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-26 05:18:26', 154, '2025-05-26 12:16:51', 0, NULL, 1),
(25128, 'Mogiligundla Madhuri', '6', '7305008153', '7550189058', 'kirubamm1405@gmail.com', '2000-12-05', 24, '1', '2', 'M.Ramamoorthy', 'B.com', 50.00, 3, 0.00, 15000.00, 'Perambur', 'Sharma nagar', '2505260007', '', '1', 'upload_files/candidate_tracker/35432322390_NEW...pdf', NULL, '1', '2025-05-26', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-05-26 05:24:42', 154, '2025-05-26 12:20:32', 0, NULL, 1),
(25129, 'T.mounika', '6', '8148186645', '9840658101', 'mounikagana2018@gmail.com', '1995-06-26', 29, '1', '1', 'Ganapathi.p', 'B.com', 50.00, 2, 0.00, 15000.00, 'Nehru park', 'Nehru park', '2505260008', '', '1', 'upload_files/candidate_tracker/38749550841_Mounikares.pdf', NULL, '1', '2025-05-26', 0, '99082', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-05-26 05:25:49', 154, '2025-05-26 12:21:29', 0, NULL, 1),
(25130, 'Jagadeesh K', '6', '9361270787', '8754053474', 'jagankannamma@gmail.com', '2000-03-29', 25, '2', '2', 'Karunakaran', 'Cooli', 30000.00, 2, 18000.00, 20000.00, 'Tiruvallur', 'Porur', '2505260009', '1', '2', 'upload_files/candidate_tracker/87517618159_JagadeeshCVResume.pdf.pdf', NULL, '1', '2025-05-26', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'voice to low and comuunication not good... last company got abscond due to target and pressure in sales from Justdial..  not giving proper reasons... ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-26 05:33:22', 154, '2025-05-26 12:19:57', 0, NULL, 1),
(25131, 'Nithish j', '13', '9361223720', '9600313514', 'nithishjayasankar01@gmail.com', '2000-01-01', 25, '3', '2', 'Jayasankar k', 'Information Technology', 600000.00, 1, 600000.00, 800000.00, 'Neyveli', 'Chennai', '2505260010', '', '2', 'upload_files/candidate_tracker/55299941959_NithishResume.pdf', NULL, '1', '2025-05-26', 90, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-26 06:10:23', 1, '2025-05-26 06:20:14', 0, NULL, 1),
(25132, '', '0', '7383035271', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505260011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-26 06:21:34', 0, NULL, 0, NULL, 1),
(25133, '', '0', '8778482636', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505260012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-26 06:39:36', 0, NULL, 0, NULL, 1),
(25134, 'Dhanush M', '6', '8056225272', '', 'Dhanushmat@gmail.com', '2003-08-16', 21, '2', '2', 'Mohan', 'Tailor', 25000.00, 1, 14000.00, 15000.00, 'Perambur', 'Perambur', '2505260013', '1', '2', 'upload_files/candidate_tracker/30235120565_RESUME2.pdf', NULL, '1', '2025-05-26', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Job needed person, degree discontinued due to financial issue, 3 years did some local works did not go for any proper job, last worked in unique Business solution due to salary issue relieved....  Voice not clear and pronouncation not clear so not fit for sales and looking for data entry also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-05-26 06:59:26', 154, '2025-05-26 12:37:47', 0, NULL, 1),
(25135, '637004586669', '28', '6382992397', '', 'gokulnandam003@gmail.com', '2001-02-24', 24, '3', '2', 'Yoganandam', 'Retired', 20000.00, 1, 0.00, 200000.00, 'Krishnagiri, Tamilnadu', 'Banglore', '2505260014', '', '1', 'upload_files/candidate_tracker/60113619013_GokulRajYResume.pdf', NULL, '2', '2025-05-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-05-26 08:33:09', 1, '2025-05-26 08:38:42', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25136, 'kavya p', '6', '7558113057', '', 'p.kavya0610@gmail.com', '2002-06-10', 22, '2', '2', 'palraj u', 'farmer', 7500.00, 1, 0.00, 180000.00, 'tenkasi', 'chennai', '2505260015', '1', '1', 'upload_files/candidate_tracker/1550257940_KavyaPResume21.pdf', NULL, '1', '2025-05-27', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-05-26 09:44:40', 154, '2025-05-27 03:15:22', 0, NULL, 1),
(25137, 'Rohith Ramasamy', '6', '8940698291', '9524210155', 'rohithranalyst@gmail.com', '2004-10-15', 20, '2', '2', 'Parent - Father-Ramasamy.S,Mother:Rajamani.R', 'Business development executive', 25000.00, 1, 20000.00, 23000.00, 'Karur', 'Chennai', '2505260016', '1', '2', 'upload_files/candidate_tracker/77123115456_RohithBusinessdevelopmentResume.pdf', NULL, '1', '2025-05-28', 0, '', '3', '59', '2025-06-02', 216000.00, '', '3', '2025-11-29', '2', 'Communication Ok Can be trained in our roles have exp in sales need to check in traninig and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', 'P1070', '5151', '2025-06-02', 1, '2025-05-26 11:56:10', 60, '2025-05-31 07:36:13', 0, NULL, 1),
(25138, 'Miruthula. A', '2', '6383561251', '8270602529', 'miruthula0317@gmail.com', '2003-03-17', 22, '3', '2', 'Anbazhagan. R', 'Former', 15000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2505260017', '', '1', 'upload_files/candidate_tracker/11929789803_MituthulaResume1.pdf.pdf', NULL, '1', '2025-05-26', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-26 12:00:09', 154, '2025-05-26 05:45:17', 0, NULL, 1),
(25139, 'Supriya.S', '6', '8667738567', '9003274434', 'supriyashyam8104@gmail.com', '2004-08-06', 20, '1', '2', 'Shyam.v', 'Beautician', 12000.00, 1, 0.00, 15.00, 'Perambur Chennai', 'Perambur Chennai', '2505270001', '', '1', 'upload_files/candidate_tracker/28777330679_Supriyaresumenew.pdf', NULL, '1', '2025-05-27', 0, '77828', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skill', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-05-27 09:10:20', 154, '2025-05-27 03:20:12', 0, NULL, 1),
(25140, 'Durga K', '6', '9384464594', '', 'durgakumar.95k@gmail.com', '1995-05-20', 30, '1', '1', 'Narenthiran.b', 'Salaried', 6.00, 0, 2.00, 3.00, 'Jayankondam', 'West mambalam', '2505270002', '', '2', 'upload_files/candidate_tracker/14083501619_durgares.feb.pdf', NULL, '1', '2025-05-27', 0, '1418', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate expected higher package', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-05-27 09:15:16', 154, '2025-05-27 03:23:37', 0, NULL, 1),
(25141, '', '0', '9071161196', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505270003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-27 10:13:33', 0, NULL, 0, NULL, 1),
(25142, '', '0', '6360310721', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505270004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-27 10:13:38', 0, NULL, 0, NULL, 1),
(25143, 'ajay v', '6', '6380961415', '', 'ajaikumardarling2527@gmail.com', '2001-12-17', 23, '2', '2', 'babu', 'hair dresser', 30000.00, 1, 18500.00, 23000.00, 'chennai', 'chennai', '2505270005', '1', '2', 'upload_files/candidate_tracker/57282631820_RESUMEPDFdesigncompressed.pdf', NULL, '1', '2025-05-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is Good.already have 1 yr star Health experiance .his product explaination is also good.will check with him in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2025-05-27 10:47:16', 154, '2025-05-28 01:11:27', 0, NULL, 1),
(25144, 'PALVISHA SINGH', '6', '8009473692', '', 'palvishasingh67@gmail.com', '2003-07-16', 21, '2', '2', 'nikhil', 'bachelor', 250000.00, 1, 0.00, 30000.00, 'renukoot up', 'jp nagar', '2505280001', '1', '1', 'upload_files/candidate_tracker/34065590126_Palvisharesume...pdf.pdf', NULL, '1', '2025-05-28', 0, '', '3', '59', '2025-06-02', 216000.00, '', '4', '2025-07-15', '2', 'Communication gfood can be trained in our roles and check', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55671', '55555', '2025-06-02', 1, '2025-05-28 04:38:06', 60, '2025-05-31 07:37:24', 0, NULL, 1),
(25145, 't farooq mohammed', '6', '9600167626', '9941808278', 'Farooqmohammed1414@gmail.com', '2003-02-14', 22, '2', '2', 'thamin ansari', 'sales', 1.00, 2, 15.00, 18.00, 'indhira nagar azhvar thiru nagar alwarthinagar', 'chennai', '2505280002', '1', '2', 'upload_files/candidate_tracker/13845984617_IMG5083.pdf', NULL, '1', '2025-05-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-05-28 05:59:26', 154, '2025-05-28 01:10:42', 0, NULL, 1),
(25146, 'rama dinesh', '6', '9363646066', '', 'ramd30d@gmail.com', '2010-05-28', 0, '2', '2', 'kumar', 'private employee', 30000.00, 1, 30000.00, 32000.00, 'chennai', 'chennai', '2505280003', '1', '2', 'upload_files/candidate_tracker/54946079137_Ramupdateresume.pdf', NULL, '1', '2025-05-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-05-28 06:04:09', 154, '2025-05-28 01:09:34', 0, NULL, 1),
(25147, 'Yuvan sankar', '4', '9791054385', '', 'yuvans814@gmail.com', '2000-12-24', 24, '2', '2', 'Balachandran', 'Security', 144000.00, 2, 13000.00, 18000.00, 'No16/20 evr periyar street Rani anna nagar', 'Chennai arumbakkam', '2505280004', '1', '2', 'upload_files/candidate_tracker/2713511735_RESUME.pdf', NULL, '1', '2025-05-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-05-28 06:14:02', 1, '2025-05-28 06:23:01', 0, NULL, 1),
(25148, 'Ramanan B', '13', '9363287637', '9361026958', 'ramananbalu3032@gmail.com', '2002-03-30', 23, '3', '2', 'Balu S', 'Printing Press', 100000.00, 2, 3000.00, 15000.00, 'Kalavai, Ranipet district', 'Chennai', '2505280005', '', '2', 'upload_files/candidate_tracker/94367940372_newresume.pdf', NULL, '1', '2025-05-28', 1, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-28 06:16:10', 154, '2025-05-28 01:07:35', 0, NULL, 1),
(25149, 'Keerthana.P', '6', '7338715202', '', 'keerthipanneer2001@gmail.com', '2001-03-22', 24, '1', '2', 'Panneerselvam R', 'Painter', 10000.00, 2, 14000.00, 18000.00, 'Otteri', 'Ayanavaram', '2505280006', '', '2', 'upload_files/candidate_tracker/69676643961_KeerthanaResume.doc', NULL, '1', '2025-05-28', 30, 'C99119', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'avarege skill. tele calling experince before 2 years. but still fresher.  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-05-28 06:40:10', 154, '2025-05-28 01:47:38', 0, NULL, 1),
(25150, 'S. Shruti', '11', '8939195968', '9962662148', 'shrutibarade@gmail.com', '2000-05-24', 25, '3', '2', 'B R Sathya Narayanan', 'Accounts executive', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2505280007', '', '1', 'upload_files/candidate_tracker/60824736517_resumenew24.pdf', NULL, '1', '2025-05-28', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', 'Good Communication and knowledge in HR field, Currently pursuing distance education in anna university, saturday class are there requested for 5 days work. she will for good with full Interest.', '', '', '', '', '1970-01-01', 1, '2025-05-28 06:46:44', 104, '2025-05-30 06:46:53', 0, NULL, 1),
(25151, 'Appu paul cunha', '5', '9148536274', '', 'preetambob@gmail.com', '1998-08-21', 26, '2', '2', 'Paul', 'Business', 30000.00, 3, 37000.00, 45000.00, 'Karwar', 'Btm banglore', '2505280008', '1', '2', 'upload_files/candidate_tracker/34238301923_FastScan.pdf', NULL, '1', '2025-05-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'already he getting ctc 37k per month expectation 44 try to close 38 to 39 k for the rm profile and cross check previous history salary', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55555', '5151', '1970-01-01', 1, '2025-05-28 06:52:07', 60, '2025-05-28 06:59:36', 0, NULL, 1),
(25152, 'Radhika.R', '6', '7448304413', '9710614075', 'radhikaravi2220@gmail.com', '2002-12-11', 22, '2', '2', 'Ravi', 'Velding', 200000.00, 1, 17500.00, 20000.00, 'Chennai', 'Chennai', '2505280009', '1', '2', 'upload_files/candidate_tracker/40069663719_cv2.pdf', NULL, '1', '2025-05-28', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-05-28 07:03:22', 154, '2025-05-31 03:51:11', 0, NULL, 1),
(25153, '', '0', '9148536184', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505280010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-28 07:17:50', 0, NULL, 0, NULL, 1),
(25154, 'H Misba Fathima', '6', '9150989583', '', 'hmisba2003@hdb.com', '2003-09-12', 21, '2', '2', 'Abdul Hameed', 'Medical shop', 23000.00, 1, 13000.00, 20000.00, 'Perambur', 'Perambur', '2505280011', '1', '2', 'upload_files/candidate_tracker/62958706719_FATHIMA1.pdf', NULL, '1', '2025-05-28', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-05-28 09:38:29', 154, '2025-05-28 03:26:50', 0, NULL, 1),
(25155, 'Vaishnavi', '6', '9361364618', '9176210559', 'vaishuvaishnavimass@gmail.com', '2004-06-30', 20, '2', '2', 'Venkatesan A', 'Building contractor', 20000.00, 1, 21000.00, 24000.00, 'Chennai', 'Chennai', '2505290001', '1', '2', 'upload_files/candidate_tracker/62557410063_DOC20250217WA0007.pdf', NULL, '1', '2025-05-29', 15, '', '3', '59', '2025-06-02', 216000.00, '', '5', '1970-01-01', '1', 'Communication k can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55645', '5151', '2025-06-02', 1, '2025-05-29 04:27:29', 60, '2025-05-31 07:40:04', 0, NULL, 1),
(25156, 'Grace Vinoliya', '6', '9360846545', '8939791379', 'gracevinoliyaw26@gmail.com', '2004-07-26', 20, '2', '2', 'Prem Kumar', 'Printer', 20000.00, 1, 0.00, 15000.00, 'Salaima nagar purasaiwalkam chennai 07', 'Salaima nagar purasaiwalkam chennai 07', '2505290002', '1', '1', 'upload_files/candidate_tracker/92276756352_GraceVinoliyaResume.pdf', NULL, '1', '2025-05-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-05-29 05:33:02', 154, '2025-05-29 12:58:14', 0, NULL, 1),
(25157, 'Padmasri. S', '6', '9962068569', '9841503963', 'dhanalakshmisrimadhu@gmail.com', '2005-01-02', 20, '2', '2', 'Senthilkumar. D', 'Colly', 20000.00, 1, 0.00, 15000.00, 'Puliyanthope', 'Puliyanthope', '2505290003', '1', '1', 'upload_files/candidate_tracker/31904861444_sri.pdf', NULL, '1', '2025-05-29', 0, '', '3', '59', '2025-06-02', 168000.00, '', '3', '2026-01-31', '2', 'Communication Good Can be traine d in our roles and check in trainig', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1287', '5151', '2025-06-02', 1, '2025-05-29 05:33:09', 60, '2025-05-31 07:38:49', 0, NULL, 1),
(25158, 'ARTHI M', '6', '9514392419', '', 'arthiarthim5@gmail.com', '2004-11-28', 20, '2', '2', 'R.Mani', 'Daily wages', 72000.00, 2, 0.00, 20000.00, 'Panruti Cuddalore district', 'Egmore', '2505290004', '1', '1', 'upload_files/candidate_tracker/70197475073_RESUME.pdf', NULL, '1', '2025-05-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-29 05:35:15', 154, '2025-05-29 02:44:00', 0, NULL, 1),
(25159, 'Saif ahmed', '5', '7022108315', '', 'saifshaikibn@gmail.com', '2001-09-01', 23, '2', '2', 'Wajiha begum', 'House wife', 10000.00, 0, 38000.00, 40000.00, 'Hosa road naganathpura', 'NaganathPura', '2505290005', '1', '2', 'upload_files/candidate_tracker/78187481481_SaifAhmedFlowCVResume202502091.pdf', NULL, '1', '2025-05-29', 0, '', '3', '59', '2025-06-12', 468000.00, '', '3', '2025-06-26', '1', 'Communication Good have exp in calling and sales but not in our domain can be trained and check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55555', '5151', '2025-06-12', 1, '2025-05-29 05:40:51', 60, '2025-06-11 07:17:05', 0, NULL, 1),
(25160, 'MEGALA BASKARAN', '6', '9944270002', '9940170002', 'bmegala2005@gmail.com', '2005-01-27', 20, '3', '2', 'Mahalaxmi', 'house wife', 10000.00, 1, 0.00, 15000.00, 'Thousand lights', 'Thousand lights', '2505290006', '', '1', 'upload_files/candidate_tracker/59004264874_DocumentfromMegs.pdf', NULL, '1', '2025-05-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-29 07:11:28', 154, '2025-05-29 01:00:50', 0, NULL, 1),
(25161, 'Gomathy ST', '6', '9940483769', '9003956255', 'gomathy277@gmail.com', '2005-03-08', 20, '3', '2', 'Poongodi T', 'House wife', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2505290007', '', '1', 'upload_files/candidate_tracker/42842590546_DocumentfromGomathyS.T.pdf', NULL, '1', '2025-05-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-29 07:12:22', 154, '2025-05-29 01:00:06', 0, NULL, 1),
(25162, 'Thenmozhi', '4', '9952415980', '7299555742', 'thenmozhil445@gamil.com', '2004-06-01', 20, '3', '2', 'Loganathan M', 'Travels manager', 18000.00, 1, 0.00, 15000.00, 'No:6, vinayagapuram 9th Street chennai- 81', 'No:6, vinayagapuram 9th Street chennai- 81', '2505290008', '', '1', 'upload_files/candidate_tracker/11109892339_THENMOZHIRESUME1.pdf', NULL, '1', '2025-05-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-29 07:12:27', 154, '2025-05-29 01:01:58', 0, NULL, 1),
(25163, 'Parveez Ahmed S', '5', '9686060186', '', 'Parveezahmed7866@gmail.com', '1994-06-18', 30, '2', '2', 'Sartaj Ahmed', 'Mango merchant', 40000.00, 2, 39000.00, 35000.00, 'venkatagirikote, Chintamani, Chikkaballapure.', '6 A cross, Balaji Nagar, Gurupannapalya, Bangalore', '2505290009', '1', '2', 'upload_files/candidate_tracker/54590213376_ParvezAhmedModified.pdf', NULL, '1', '2025-05-29', 0, '', '3', '59', '2025-06-17', 360000.00, '', '5', '1970-01-01', '1', 'Communication Ok Good Communication Can be trained in our profile have exp but not in relevant one will check in training', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55555', '5151', '2025-06-17', 1, '2025-05-29 07:23:32', 60, '2025-06-16 06:21:45', 0, NULL, 1),
(25164, 'Mageshwaran D', '4', '7904135483', '9176839632', 'dmageshwaran9@gmail.com', '2001-02-09', 24, '3', '2', 'Dayalan k', 'Retired railway worker', 250000.00, 0, 0.00, 250000.00, 'Chennai', 'Chennai', '2505290010', '', '1', 'upload_files/candidate_tracker/28638586987_CVNETMAGESH.pdf', NULL, '1', '2025-05-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-29 08:51:27', 154, '2025-05-29 05:06:37', 0, NULL, 1),
(25165, '', '0', '9176210559', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505290011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-29 09:54:04', 0, NULL, 0, NULL, 1),
(25166, 'Rahul Ummannavar', '6', '9606890756', '', 'rahulummannavar551@gmail.com', '2000-12-24', 24, '2', '2', 'gurusiddappa', 'bank employe', 35000.00, 1, 0.00, 25000.00, 'hubli', 'kengeri bangalore', '2505290012', '1', '1', 'upload_files/candidate_tracker/95151848333_CV17371137830012.pdf', NULL, '1', '2025-05-30', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55555', '5151', '1970-01-01', 1, '2025-05-29 01:26:09', 104, '2025-05-30 06:29:47', 0, NULL, 1),
(25167, 'SUBASRI.C', '6', '7708346075', '', 'subasric226@gmail.com', '2003-09-30', 21, '2', '2', 'Chinnaraja', 'Fisher man', 2.50, 1, 25.00, 25.00, 'Marakkanam', 'Saidapet', '2505300001', '1', '2', 'upload_files/candidate_tracker/7872108040_subasriresume11.pdf', NULL, '1', '2025-05-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was having good communication and already have experience in sales ,interested in sales and syed sir also checked with her based on his suggestion we shall provide 16-16.5k as take home including pf and kindly check with candidate and she was ok for immediate joining', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2025-05-30 05:27:57', 154, '2025-05-30 06:52:29', 0, NULL, 1),
(25168, '', '0', '9488308277', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505300002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-30 05:33:37', 0, NULL, 0, NULL, 1),
(25169, 'Mohamed Farhath Manas', '6', '9488308278', '', 'fmanas224@gmail.com', '1999-12-26', 25, '2', '2', 'Mohamed saleem', 'Driver', 25000.00, 1, 23000.00, 23000.00, 'Kumbakonam', 'Saidapet', '2505300003', '1', '2', 'upload_files/candidate_tracker/72503692457_FARHATH.pdf', NULL, '1', '2025-05-30', 0, '', '3', '59', '2025-06-05', 216000.00, '', '5', '1970-01-01', '2', 'Communication Ok  can be trained in our roles have exp in calling but no documents pertaining to that let us try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', '5151', '2025-06-05', 1, '2025-05-30 05:33:57', 60, '2025-06-04 06:42:56', 0, NULL, 1),
(25170, 'A Karthik Kumar', '6', '9962226857', '', 'karthikkumar2393@gmail.com', '1993-03-02', 32, '3', '1', 'Bhavani', 'Banking Executive', 40000.00, 1, 0.00, 20000.00, 'Ayanavaram', 'Ayanavaram', '2505300004', '', '1', 'upload_files/candidate_tracker/39095060455_KarthikResume.pdf', NULL, '1', '2025-05-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-05-30 05:39:25', 154, '2025-05-30 01:07:23', 0, NULL, 1),
(25171, 'darshan s p', '4', '8553671214', '', 'dharshanallu@gmail.com', '2001-08-08', 23, '2', '2', 'nagaveni', 'telesales', 40000.00, 2, 31000.00, 36000.00, 'btm layout', 'btm layout', '2505300005', '1', '2', 'upload_files/candidate_tracker/31501838525_DarshanResume.pdf', NULL, '1', '2025-05-31', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-05-30 01:38:43', 1, '2025-05-30 02:03:11', 0, NULL, 1),
(25172, 'Merrin Flora. P', '6', '9677253292', '', 'Merrinflora7@gmail.com', '2003-09-22', 21, '2', '2', 'Paul raj', 'Carpenter', 80000.00, 2, 0.00, 16000.00, 'No.2 gowri street kandasamy Nagar varanagram', 'No.2 gowri street kandasamy Nagar varanagram', '2505300006', '1', '1', 'upload_files/candidate_tracker/69714096282_Merrinfloraresume1.pdf', NULL, '1', '2025-05-31', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-05-30 02:57:00', 154, '2025-05-31 03:07:02', 0, NULL, 1),
(25173, 'Nishanth V', '11', '9790186464', '', 'nishanthsr2020@gmail.com', '2003-05-19', 22, '6', '2', 'Vetrivel T', 'Driver', 72000.00, 0, 0.00, 1.00, 'Cuddalore', 'Kodambakkam', '2505310001', '', '1', 'upload_files/candidate_tracker/71936692465_NishanthResume2.0.pdf', NULL, '1', '2025-05-31', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-05-31 05:13:12', 154, '2025-05-31 11:42:48', 0, NULL, 1),
(25174, 'YUVARANI S', '6', '6369438160', '', 'yuvaranisekar7@gmail.com', '2005-10-09', 19, '3', '2', 'Sekar D', 'Farmer', 78000.00, 2, 0.00, 15000.00, 'Tindivanam, villupuram, 604 306.', '36/31, Lingam street, KK nagar, chennai, 600028', '2505310002', '', '1', 'upload_files/candidate_tracker/14990831765_DOC20250531WA0011..pdf', NULL, '1', '2025-05-31', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-31 09:31:16', 154, '2025-05-31 03:39:01', 0, NULL, 1),
(25175, 'Divya. D', '6', '7603910485', '', '333dsdivya@gmail.com', '2005-02-02', 20, '3', '2', 'Dhanigasalam.C/Sathiya.D', 'Wage work', 72000.00, 1, 0.00, 13000.00, 'Gingee, villupuram, 604 306.', 'Koyambedu, Chennai-600107', '2505310003', '', '1', 'upload_files/candidate_tracker/58604175660_DOC20250531WA0012.1.pdf', NULL, '1', '2025-05-31', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-05-31 09:36:20', 154, '2025-05-31 03:48:16', 0, NULL, 1),
(25176, 'Mageshwari G', '4', '8056139665', '', 'Mageshwarigopal90@gmail.com', '2000-02-14', 25, '2', '1', 'Parthiban', 'Private limited', 30000.00, 1, 270000.00, 350000.00, 'Chennai', 'Chennai', '2505310004', '1', '2', 'upload_files/candidate_tracker/27429246370_mageshwariresumeupdate.pdf', NULL, '1', '2025-06-04', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55824', '55560', '1970-01-01', 1, '2025-05-31 10:07:20', 154, '2025-06-09 07:09:09', 0, NULL, 1),
(25177, '', '0', '8610676002', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2505310005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-05-31 10:21:31', 0, NULL, 0, NULL, 1),
(25178, 'Akash Kumar', '6', '8122426440', '4826364952', 'akashkumar26042005@gmail.com', '2005-04-26', 20, '2', '2', 'No', 'Fresher', 18000.00, 0, 0.00, 16000.00, 'No34 Solai 3rd Street Ayanwaram Chennai -24', 'No34 Solai 3rd Street Ayanwaram Chennai -23', '2505310006', '1', '1', 'upload_files/candidate_tracker/22121055179_DOC20250527WA0006.docx', NULL, '1', '2025-06-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-31 12:59:51', 154, '2025-06-02 11:29:56', 0, NULL, 1),
(25179, 'JacobGodwin AN', '6', '8838745868', '9094667081', 'jacobgodwin664@gmail.com', '1997-11-12', 27, '2', '2', 'Shanthi', 'Telecaller', 28000.00, 1, 0.00, 20000.00, 'Muthamizh Nagar kodungaiyui Chennai 118', 'Muthamizh Nagar kodungaiyui Chennai 118', '2505310007', '1', '1', 'upload_files/candidate_tracker/231738950_17410167378291741016726088RESUMETemplateForFreshers.pdf', NULL, '1', '2025-06-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-05-31 02:14:06', 154, '2025-06-02 02:59:30', 0, NULL, 1),
(25180, 'M. JANANI', '4', '6381923571', '9597994847', 'jananimukil2016@gmail.com', '2001-11-20', 23, '2', '1', 'MUKILMANNAN', 'Shop accountant', 23000.00, 0, 16000.00, 20000.00, '17/A1, AMUDHAM NAGAR, KODUNGAIYUR CHENNAI', '17/A1, AMUDHAM NAGAR, KODUNGAIYUR CHENNAI', '2506010001', '1', '2', 'upload_files/candidate_tracker/82707723543_JANANIMUTHU.pdf', NULL, '2', '2025-06-02', 15, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55824', '55560', '1970-01-01', 1, '2025-06-01 05:22:09', 154, '2025-06-02 04:07:57', 0, NULL, 1),
(25181, 'Keerthivasan.s', '6', '9361606090', '7548831406', 'Keerthivxzxn098@gmail.com', '2003-10-06', 21, '2', '2', 'Sekar.v', 'Centring', 10000.00, 0, 20000.00, 20000.00, 'No.1 jayam nagar, minjur 601203', 'No.1 jayam nagar, minjur 601303', '2506020001', '1', '2', 'upload_files/candidate_tracker/64752663275_Pi7toolPDF.pdf', NULL, '1', '2025-06-02', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'reject the profile, he totally  unfit for the sales job, fully wrong information', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-06-02 04:42:51', 154, '2025-06-02 12:49:51', 0, NULL, 1),
(25182, '', '0', '9361606080', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506020002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-02 04:54:58', 0, NULL, 0, NULL, 1),
(25183, 'Keerthivasan', '4', '7548831406', '9361606080', 'Keerthivxzxn098@gmail.com', '2003-10-06', 22, '2', '2', 'Vadivukkarsi', 'Kooli', 18000.00, 0, 0.00, 18000.00, 'No.1 jayam nagar minjur', 'No.1 jayam nagar minjur', '2506020003', '50', '2', 'upload_files/candidate_tracker/52670371990_Cv202510212217470000.pdf', NULL, '1', '2025-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-02 05:03:24', 1, '2025-12-19 12:46:24', 0, NULL, 1),
(25184, 'Gayathri Vaidhyanatha sharma', '13', '8682054595', '9025457560', 'gayathrimeeru18@gmail.com', '2000-07-18', 24, '3', '1', 'Arumugam', 'Mechanical engineer', 40000.00, 0, 0.00, 20000.00, 'Tenkasi', 'Chennai', '2506020004', '', '1', 'upload_files/candidate_tracker/37546409346_GayathriCV.pdf', NULL, '1', '2025-06-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-02 05:13:18', 1, '2025-06-02 05:15:55', 0, NULL, 1),
(25185, 'Bragadesh A', '13', '9566087471', '9840353882', 'bragadesh10@gmail.com', '1999-11-12', 25, '3', '2', 'R. Ashok kumar', 'Draftsman', 40000.00, 1, 10000.00, 25000.00, 'Chennai', 'Chennai', '2506020005', '', '2', 'upload_files/candidate_tracker/8705691754_BragadeeshsResume4.pdf', NULL, '1', '2025-06-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-02 05:50:55', 154, '2025-06-02 11:34:03', 0, NULL, 1),
(25186, 'Gayathri E', '6', '9344969139', '9600096120', 'gayathrima210125@gmail.com', '2005-01-21', 20, '2', '2', 'Elumlai S', 'Export', 15000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2506020006', '27', '1', 'upload_files/candidate_tracker/62824553173_SimpleResume291.docx', NULL, '1', '2025-06-02', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Came after exams', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-02 05:51:51', 154, '2025-06-02 03:40:05', 0, NULL, 1),
(25187, 'Gopika B', '6', '7305666798', '7401110313', 'mgopikammu@gmail.com', '2005-07-05', 19, '2', '2', 'Babu K', 'Mason', 13000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2506020007', '27', '1', 'upload_files/candidate_tracker/79720942051_GopikaResume.pdf', NULL, '1', '2025-06-02', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Came after exams', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', 'upscond', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-02 05:52:31', 154, '2025-06-02 03:41:39', 0, NULL, 1),
(25188, 'Aarthi.R', '6', '9952075237', '9840573827', 'aarthir010@gmail.com', '2004-01-18', 21, '2', '2', 'RADHAKRISHNAN', 'Mason', 12000.00, 1, 0.00, 17.00, 'Chennai', 'Chennai', '2506020008', '27', '1', 'upload_files/candidate_tracker/96416177979_downloadresume.pdf', NULL, '1', '2025-06-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-02 05:53:36', 154, '2025-06-02 03:12:22', 0, NULL, 1),
(25189, 'Saran raj vR', '6', '7338861979', '8838517239', 'Saranrajvasudevan02@gmail.com', '2004-09-02', 20, '2', '2', 'N.vasudevan', 'Watchman', 30000.00, 1, 0.00, 18000.00, '137,7th cross street, t.p.chathiram, chennai-10.', '137,7th cross street, t.p.chathiram, chennai-10.', '2506020009', '45', '1', 'upload_files/candidate_tracker/2920072846_DocScanner02Jun20251208.pdf', NULL, '1', '2025-06-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-02 06:30:26', 154, '2025-06-02 03:14:07', 0, NULL, 1),
(25190, 'Mohanapriya', '6', '7358332943', '', 'sivapremalatha583@gmail.com', '2004-09-14', 20, '2', '2', 'Shivashankar', 'Audio', 900000.00, 1, 0.00, 20.00, 'Koya arunagiri 5th Street Royapettah', 'Koya arunagiri 5th Street Royapettah', '2506020010', '1', '1', 'upload_files/candidate_tracker/30754417004_MohanapriyaResume6.pdf', NULL, '1', '2025-06-02', 0, '', '3', '59', '2025-06-09', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok Fresher for our Sales roles need to train from scratch will check in traninig', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', 'hold', '', 'H1017', '', '55666', '5151', '2025-06-09', 1, '2025-06-02 06:41:51', 60, '2025-06-07 06:31:04', 0, NULL, 1),
(25191, 'DINESHBABU', '6', '9344354020', '9566110914', 'dineshdinho148@gmail.com', '2005-04-26', 20, '3', '2', 'SRINIVASAN GR', 'Sales', 15000.00, 1, 0.00, 15000.00, 'Choolai', 'Pattalam', '2506020011', '', '1', 'upload_files/candidate_tracker/81324704134_ImagetoPDF2025011816.13.24.pdf', NULL, '1', '2025-06-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-02 06:48:19', 154, '2025-06-02 03:15:19', 0, NULL, 1),
(25192, 'arjun', '5', '8608978140', '8667434009', 'arjunajarjun4@gmail.com', '2004-03-25', 21, '3', '2', 'Yacobraj', 'Sales or systamatic work', 13000.00, 2, 0.00, 17.00, 'Chennai', 'Chennai', '2506020012', '', '1', 'upload_files/candidate_tracker/26403688796_CV2025031323222887.pdf', NULL, '1', '2025-06-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-02 06:49:40', 154, '2025-06-02 03:25:01', 0, NULL, 1),
(25193, 'Karthik pradheesh vP', '6', '9345855311', '9789865593', 'Pradheesh0109@gmail.com', '2002-09-01', 22, '2', '2', 'Monish kumar', 'Business', 15000.00, 2147483647, 0.00, 20000.00, 'Mogappair', 'Padi pudhu nagar', '2506020013', '45', '1', 'upload_files/candidate_tracker/61209373752_Logeshwaran.Mresume.docx202504281021290000.pdf', NULL, '1', '2025-06-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication  and Performance is not well.also he did not communicate more.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-06-02 06:51:18', 154, '2025-06-02 04:30:22', 0, NULL, 1),
(25194, 'karan', '6', '8939976739', '9941983515', 'boxerkaran28@gmail.com', '2005-06-25', 19, '3', '2', 'S.mathavan', 'Sales work', 15000.00, 1, 0.00, 20000.00, 'Choolai k.p.park', 'Choolai k.p.park', '2506020014', '', '1', 'upload_files/candidate_tracker/10167378558_cv11740535338187.pdf', NULL, '1', '2025-06-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-02 06:51:29', 154, '2025-06-02 06:22:41', 0, NULL, 1),
(25195, 'K.Thaseen sultana', '6', '8015124338', '9941180789', 'taseensultanataseen@gmail.com', '2004-05-14', 21, '2', '2', 'A. Mohammad khaleel', 'Watch mechanic', 9500.00, 2, 0.00, 18000.00, 'Perambur Chennai', 'perambur', '2506020015', '27', '1', 'upload_files/candidate_tracker/96066361104_thaseensultana1.pdf', NULL, '1', '2025-06-02', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-06-02 07:08:25', 154, '2025-06-02 06:23:03', 0, NULL, 1),
(25196, 'Samathnathan P', '6', '6381755492', '', 'samathnathan@Gmail.com', '2005-05-02', 20, '2', '2', 'Padmanaban', 'Business', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Ambattur Chennai', '2506020016', '27', '1', 'upload_files/candidate_tracker/53973338044_samathsresume.pdf.pdf', NULL, '1', '2025-06-02', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Came after exams', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-02 07:09:07', 154, '2025-06-02 06:23:58', 0, NULL, 1),
(25197, 'S Rinthiya', '6', '9941817148', '9551768262', 'rinthiya2429@gmail.com', '2003-10-24', 21, '2', '2', 'Sheela', 'House keeping', 7000.00, 1, 0.00, 16000.00, 'Vyasarpadi', 'Vyasarpadi', '2506020017', '27', '1', 'upload_files/candidate_tracker/4804075948_RinthiyaSResume.pdf', NULL, '1', '2025-06-02', 0, '', '3', '59', '2025-06-05', 180000.00, '', '3', '2025-08-25', '2', 'Communication Good Fresher Job failr committed salary can be trained in our roles and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2025-06-05', 1, '2025-06-02 07:09:22', 60, '2025-06-04 06:44:11', 0, NULL, 1),
(25198, 'Moniskumar.T', '6', '9789865593', '9345855322', 'Monishbablu935@gmail.com', '2001-11-10', 23, '2', '2', 'Thirumalai.s', 'Business', 15000.00, 2147483647, 0.00, 20000.00, 'Ambattur', 'Mannurpet', '2506020018', '27', '1', 'upload_files/candidate_tracker/90686287776_Monish.pdf', NULL, '1', '2025-06-02', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-06-02 07:16:28', 154, '2025-06-02 06:24:46', 0, NULL, 1),
(25199, 'Sanjay j', '6', '7305595718', '9444834825', 'sanjaytn188673@gmail.com', '2004-12-06', 20, '2', '2', 'Jayakumar.s', 'Bike Mechanic', 100000.00, 0, 0.00, 20000.00, 'Thirumullaivoyal', 'Chennai', '2506020019', '45', '1', 'upload_files/candidate_tracker/57908846215_SanjayJUpdatedResume10.pdf', NULL, '1', '2025-06-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'to long distance and not suitable for our sales too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-02 07:16:35', 154, '2025-06-02 06:25:18', 0, NULL, 1),
(25200, 'Mithun Kumar.k', '6', '9360053581', '9551228476', 'Mithunsekar007@gmail.com', '2004-12-04', 20, '2', '2', 'Kannan.p', 'Leathe', 100000.00, 1, 0.00, 20000.00, 'Thirumullaivoyal', 'Chennai', '2506020020', '45', '1', 'upload_files/candidate_tracker/84810823044_mithunresumestructured.pdf', NULL, '1', '2025-06-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long distance will not sustain in our roles for a long', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-02 07:18:01', 154, '2025-06-02 06:25:57', 0, NULL, 1),
(25201, 'Hari Haran', '5', '8610827033', '9094901449', 'hariharan.a2703@gmail.com', '1999-03-27', 26, '2', '1', 'lalitha', 'working', 25000.00, 2, 31000.00, 38000.00, 'nungambakkam', 't nagar', '2506020021', '1', '2', 'upload_files/candidate_tracker/57545100791_HariCv.pdf', NULL, '1', '2025-06-03', 60, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in B2B sales for 3 yrs saalry exp is very high got offer from Axis for 3.5 LPA not joined due to salary expectation for B2C fresher and sustainability doubts in our profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-06-02 07:39:24', 154, '2025-06-03 12:23:55', 0, NULL, 1),
(25202, 'Tamizhmaran pandiyan', '6', '7010200739', '9843551817', 'Maarann005@gmail.com', '2002-07-18', 22, '1', '2', 'Pandiyan S', 'Teacher', 40000.00, 1, 0.00, 20000.00, 'Thiruvarur', 'Chennai', '2506020022', '', '1', 'upload_files/candidate_tracker/25170003435_tresume1.pdf', NULL, '1', '2025-06-02', 0, 'P1376', '3', '59', '2025-06-09', 204000.00, '', '3', '2025-08-04', '1', 'Communication Ok can be trained in our roles reference profile will check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55645', '5151', '2025-06-09', 1, '2025-06-02 07:58:48', 60, '2025-06-07 06:29:59', 0, NULL, 1),
(25203, 'krithika s', '33', '7395980246', '', 'krithikaaa.2003@gmail.com', '2003-10-05', 21, '3', '2', 'subramanian r', 'hr manager', 600000.00, 1, 0.00, 10000.00, 'Saligramam, chennai', 'Saligramam, chennai', '2506020023', '', '1', 'upload_files/candidate_tracker/27869841086_KRITHIKARESUME.pdf', NULL, '1', '2025-06-02', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected for MF intern But not joined. due to her frined joined as a intern in this company already', '4', '1', '', '1', '8', '', '2', '1970-01-01', '4', '4', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-02 10:15:07', 154, '2025-06-02 06:27:29', 0, NULL, 1),
(25204, 'jAYASHREE', '6', '9566266931', '8056894832', 'jayas9644@gmail.com', '2004-12-15', 20, '2', '2', 'Murugaiya rao', 'Atm watchman', 80000.00, 1, 0.00, 20000.00, 'Redhills', 'Redhills', '2506020024', '1', '1', 'upload_files/candidate_tracker/98967948484_JayashreeMCV.docx', NULL, '1', '2025-06-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication Ok for telesales but to long distance up and down 64 Kms will not sustain for a long have few months calling exp in collections and later into cashier exp', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-02 03:39:18', 60, '2025-06-03 05:32:15', 0, NULL, 1),
(25205, 'dinakaran l', '6', '9361672989', '9942532035', 'dinakaran2035@gmail.com', '2000-07-18', 24, '2', '2', 'loganathan r', 'driver', 24000.00, 1, 1.40, 1.70, 'salem', 'vadapalani chennai', '2506020025', '1', '2', 'upload_files/candidate_tracker/69654218819_Resume.pdf', NULL, '1', '2025-06-05', 0, '', '3', '59', '2025-06-09', 198000.00, '', '5', '1970-01-01', '2', 'Communication Ok can give a try in our roles have exp in sales seems to be good in sales can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '2025-06-09', 1, '2025-06-02 09:25:26', 60, '2025-06-07 06:33:50', 0, NULL, 1),
(25206, 'Shree Varshan R', '4', '9043669741', '', 'shreevarshan11032005@gmail.com', '2005-03-11', 20, '2', '2', 'Ravi Chandran T', 'Mason', 100000.00, 1, 0.00, 20000.00, 'old Washermenpet, Chennai-21', 'old Washermenpet, Chennai-21', '2506030001', '27', '1', 'upload_files/candidate_tracker/21815695664_CV2025053112321392.pdf', NULL, '1', '2025-06-03', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for IT more than telesales', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-03 03:56:38', 154, '2025-06-03 11:09:07', 0, NULL, 1),
(25207, 'S Sirisha', '6', '9553087574', '9347741944', 'sireeshasrinivasulu66@gmail.com', '2004-04-09', 21, '1', '2', 'Srinivasulu', 'Agriculture', 80000.00, 1, 0.00, 15000.00, 'Yamaganipalli(v), Gudipalli (M), Chittoor(Dist)', 'HSR layout, Muneswara nagar, Varalakshmi nivas', '2506030002', '', '1', 'upload_files/candidate_tracker/34613853341_Sireesha1.pdf', NULL, '1', '2025-06-03', 0, '', '3', '59', '2025-06-12', 204000.00, '', '3', '2025-08-27', '2', 'Communication Ok fresher for our sales roles can give a try in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '2025-06-12', 1, '2025-06-03 05:04:31', 154, '2025-06-11 07:28:11', 0, NULL, 1),
(25208, 'Lakshmipathi D', '6', '9629662692', '8270233725', 'lachugaming995@gmail.com', '2004-09-21', 20, '2', '2', 'Dhanasekar E', 'Gardening', 36000.00, 1, 0.00, 20000.00, '146, Lachumanan street, vadaalapakkam, Tindivanam', 'Jothiyammal nagar 8th Street, Saidapet, chennai', '2506030003', '27', '1', 'upload_files/candidate_tracker/70060489754_Lakshmipathiresume.pdf', NULL, '1', '2025-06-03', 0, '', '3', '59', '2025-06-09', 192000.00, '', '3', '2025-07-29', '1', 'Fresher for sales communication Ok sustainability not sure will check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2025-06-09', 1, '2025-06-03 05:25:08', 60, '2025-06-07 06:32:34', 0, NULL, 1),
(25209, 'Nagarajan Raju', '6', '7092783748', '7092783747', 'rnagarajan722@gmail.com', '1994-10-01', 30, '2', '2', 'M Shanthi', 'Housewife', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2506030004', '1', '2', 'upload_files/candidate_tracker/44171565783_Resumenagarajan.pdf', NULL, '2', '2025-06-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Long Career Gap earlier and even in exp 2.5 yrs 3 companies travelled age 30 yrs working in different domains  not much suitable for our roles\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-06-03 05:29:24', 60, '2025-06-03 05:32:00', 0, NULL, 1),
(25210, 'Thurabudeen M', '4', '8939781048', '8939279904', 'basha5101978@gmail.com', '2003-12-23', 21, '2', '2', 'Father : Mahabu basha. K', 'Tailor', 15000.00, 1, 18500.00, 23000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2506030005', '27', '2', 'upload_files/candidate_tracker/74755049573_ThurabudeenExactResumeFormat.pdf', NULL, '1', '2025-06-03', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-03 05:30:15', 154, '2025-06-03 12:31:38', 0, NULL, 1),
(25211, 'V.	SWATHIKA', '4', '9943947574', '9943347574', 'swathikavasu15@gmail.com', '2003-03-15', 22, '3', '2', 'Vasudevan', 'Condocter', 20000.00, 1, 0.00, 12000.00, 'Rajendran arcodu ammanpettai Thanjavur', 'Rajendran arcodu ammanpettai Thanjavur', '2506030006', '', '1', 'upload_files/candidate_tracker/25458684978_Document1.docx', NULL, '1', '2025-06-03', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2025-06-03 05:49:53', 154, '2025-06-03 06:38:56', 0, NULL, 1),
(25212, 'T mohan babu', '6', '6380713735', '8754879294', 'bobbby302@gmail.com', '2003-04-14', 22, '2', '2', 'Thillai govindhan E', 'Safeguard', 20000.00, 1, 0.00, 15.00, '109,road st, uranithangal, gingee', 'No:6/123,6th blk, mogappair east,chennai-37', '2506030007', '27', '1', 'upload_files/candidate_tracker/36071006200_Re.pdf', NULL, '1', '2025-06-03', 0, '', '8', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Came after exams', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-03 05:53:12', 154, '2025-06-03 04:10:25', 0, NULL, 1),
(25213, 'Manju Bashini', '4', '9585106680', '8754736680', 'manjusampath471@gmail.com', '2002-03-25', 23, '3', '2', 'Amudha', 'House wife', 300000.00, 1, 110000.00, 16000.00, 'THANJAVUR', 'THANJAVUR', '2506030008', '', '2', 'upload_files/candidate_tracker/24655024602_MANJUBASHINIRESUME2025.pdf', NULL, '1', '2025-06-03', 0, '', '3', '59', '2025-06-05', 168000.00, '', '5', '1970-01-01', '1', 'Fresher for our roles have exp in customer support Hospital long back attended for our roles can  be trained and check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '2025-06-05', 1, '2025-06-03 05:55:14', 60, '2025-06-04 06:45:55', 0, NULL, 1),
(25214, 'Sivashaker R', '6', '7200613650', '', 'Sivas079469@gmail.com', '2005-05-05', 20, '1', '2', 'Rajkumar P', 'ICF', 20000.00, 1, 0.00, 16000.00, '435/6I.C.F South Colony 11 Street Chennai -600038', '435/6I.C.F South Colony 11 Street Chennai -600038', '2506030009', '', '1', 'upload_files/candidate_tracker/25148055214_IMG20250603WA0001.pdf', NULL, '1', '2025-06-03', 0, 'mo4717', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '5151', '1970-01-01', 1, '2025-06-03 05:55:47', 154, '2025-06-03 04:15:27', 0, NULL, 1),
(25215, 'Sivani M', '6', '9094294221', '8608164221', 'sivanisaras27@gmail.com', '2004-10-27', 20, '2', '2', 'Saraswathy M', 'Anganwadi helper', 8000.00, 1, 0.00, 15000.00, '150/26 Eggavalliamman Kovil Street thiruvottiyur', '150/26 Eggavalliamman Kovil Street thiruvottiyur', '2506030010', '27', '1', 'upload_files/candidate_tracker/5105840581_Sivani.pdf', NULL, '1', '2025-06-03', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is good.but her performance is slightly slow will check with her in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-06-03 05:57:05', 154, '2025-06-03 04:07:51', 0, NULL, 1),
(25216, 'Anitha anandharajan', '6', '9444640442', '9444981825', 'anithaanandharajan@gmail.com', '2004-11-17', 20, '2', '2', 'Anandharajan', 'Tailor', 7000.00, 1, 0.00, 15000.00, 'Ernavoor', 'Ernavoor', '2506030011', '27', '1', 'upload_files/candidate_tracker/38036059897_anitharesume1.pdf', NULL, '3', '2025-06-03', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performance  is ok but her communication And actiness is low.sustainable is doubt ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-06-03 05:58:07', 154, '2025-06-03 04:13:56', 0, NULL, 1),
(25217, 'r m silvaan wessley', '6', '9344750376', '6381746983', 'Silwaanwessley2610@gmail.com', '2005-02-13', 20, '2', '2', 'olive malathi', 'chennai', 45000.00, 1, 0.00, 15000.00, 'ernavoor', 'ernavoor', '2506030012', '27', '1', 'upload_files/candidate_tracker/85143864546_wessleyresume.pdf', NULL, '1', '2025-06-03', 0, '', '3', '59', '2025-06-05', 192000.00, '', '3', '2025-07-30', '1', 'Fresher communication good can be trained in our roles and check in training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2025-06-05', 1, '2025-06-03 05:58:42', 60, '2025-06-04 06:47:00', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25218, 'S.Elakiya', '6', '7338915648', '9551927485', 'elakiyasubramani23@gmail.com', '2005-09-23', 19, '2', '2', 'Subramani', 'Fishing', 7000.00, 0, 0.00, 15000.00, 'Ennore', 'Ennore', '2506030013', '27', '1', 'upload_files/candidate_tracker/33459491971_Resume.pdf', NULL, '1', '2025-06-03', 0, '', '3', '59', '2025-06-05', 180000.00, '', '1', '1970-01-01', '1', 'Fresher job fair candidate can be trained in our roles need to check and confirm in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2025-06-05', 1, '2025-06-03 06:09:16', 60, '2025-06-04 06:49:35', 0, NULL, 1),
(25219, 'Suganraj.C', '6', '9941960121', '', 'suganraj672@gmail.com', '2003-06-14', 21, '3', '2', 'S.cithraimuthu', 'Provision shop( business)', 10000.00, 2, 0.00, 20000.00, 'Perungudi , Chennai', 'Perungudi , Chennai', '2506030014', '', '1', 'upload_files/candidate_tracker/75450341310_resume.pdf', NULL, '1', '2025-06-03', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-03 06:14:12', 154, '2025-06-03 04:12:35', 0, NULL, 1),
(25220, '', '0', '7200613605', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506030015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-03 06:15:16', 0, NULL, 0, NULL, 1),
(25221, 'Balaji Gunasekaran', '4', '9087490949', '9884747838', 'balaji200028@gmail.com', '2000-06-28', 24, '1', '2', 'Gunasekaran.V', 'Kundrathur', 96000.00, 2, 13000.00, 20000.00, '1/251,15th,Street Ambethkarnagar,kundrathur', '1/251,15th,Street Ambethkarnagar,Kundrathur', '2506030016', '', '2', 'upload_files/candidate_tracker/21023405366_BALAJIRESUME.doc', NULL, '1', '2025-06-03', 0, 'MO4717', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-03 06:34:47', 1, '2025-06-03 06:54:42', 0, NULL, 1),
(25222, 'CHEEKURTHI RAVIKUMAR', '6', '7358274667', '8124487775', 'chravi449@gmail.com', '1995-08-11', 29, '2', '1', 'PENCHALAIAH', 'DRIVER', 65000.00, 0, 19700.00, 30000.00, 'Chennai', 'Chennai', '2506030017', '1', '2', 'upload_files/candidate_tracker/90260818576_RAVIKUMAR.pdf', NULL, '1', '2025-06-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Worked in multiple companies and frequent job changes will not handle our work roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-06-03 07:27:29', 154, '2025-06-04 12:40:03', 0, NULL, 1),
(25223, '', '0', '9626848967', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506030018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-03 01:22:31', 0, NULL, 0, NULL, 1),
(25224, 'Akshaya.A.M', '11', '9043450513', '', 'akshayamurugesan62@gmail.com', '2003-08-13', 21, '2', '2', 'Murugesan', 'Business', 20000.00, 1, 0.00, 5000.00, 'Chengalpattu', 'Chengalpattu', '2506030019', '1', '1', 'upload_files/candidate_tracker/75591693486_Akshayartsresumefinal.pdf', NULL, '1', '2025-06-04', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-06-03 05:37:41', 154, '2025-06-04 12:50:27', 0, NULL, 1),
(25225, 'S Dhanush', '11', '9043677321', '', 'dhanushoffical2610@gmail.com', '2004-10-26', 20, '2', '2', 'S Lokanadham', 'Business', 50000.00, 1, 0.00, 300000.00, 'Kodungaiyur,Chennai', 'Kodungaiyur,Chennai', '2506040001', '1', '1', 'upload_files/candidate_tracker/39598244894_DHANUSHSRESUME..pdf', NULL, '1', '2025-06-04', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-06-04 05:04:02', 154, '2025-06-04 12:40:54', 0, NULL, 1),
(25226, 'J Prakash', '11', '8448068082', '9786054351', 'prakashjvictor@gmail.com', '2003-08-09', 21, '2', '2', 'p jagadeeaan', 'indian navy', 60000.00, 2, 0.00, 5000.00, 'eswaran nagar nemilicherry chennai', 'eswaran nagar nemilicherry chennai', '2506040002', '1', '1', 'upload_files/candidate_tracker/34578437279_Newone.pdf', NULL, '1', '2025-06-04', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-06-04 05:51:10', 154, '2025-06-04 12:48:05', 0, NULL, 1),
(25227, 'ahamed sajath', '6', '8525080948', '9042687446', 'adsajath5421@gmail.com', '2001-11-13', 23, '2', '2', 'Anwar batsha', 'Working', 700000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2506040003', '1', '2', 'upload_files/candidate_tracker/22050716693_AHAMEDSAJATHResume21.pdf', NULL, '1', '2025-06-04', 60, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no responsibility just cam along wiht the friend and attended 6months working and just looking for a change\nnot suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-04 06:18:24', 154, '2025-06-04 01:19:11', 0, NULL, 1),
(25228, 'Ganishkar raja', '6', '6384769839', '8825800230', 'Ganishkarrajacbcs@gmail.com', '2000-11-08', 24, '2', '2', 'RAVI', 'Political', 50000.00, 2, 0.00, 18000.00, 'Ramanathapuram', 'Chrompet', '2506040004', '1', '1', 'upload_files/candidate_tracker/62405473572_GANISHKARRESUME1.pdf', NULL, '1', '2025-06-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Careeg Gap not much seriousness on the job political background not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-04 06:19:04', 154, '2025-06-04 01:35:36', 0, NULL, 1),
(25229, 'ROJUS DEVA PRASANTH', '11', '7904924303', '7806883900', 'rojusoffl@gmail.com', '2003-12-30', 21, '2', '2', 'Sumathi stella mary D', 'Teacher', 60000.00, 0, 0.00, 5000.00, 'Potheri,chennai', 'Potheri,chennai', '2506040005', '1', '1', 'upload_files/candidate_tracker/29066061326_CopyofRojusdevaprasath202506041124300000.pdf', NULL, '1', '2025-06-04', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-06-04 06:25:28', 154, '2025-06-04 12:49:41', 0, NULL, 1),
(25230, 'LOGESHWARAN P', '13', '7806842852', '', 'logeshwaranspl3232@gmail.com', '2010-06-04', 0, '5', '2', 'Selvi P', 'Housewife', 72000.00, 1, 0.00, 20000.00, 'Theni', 'Theni', '2506040006', '', '1', 'upload_files/candidate_tracker/72721050823_RESUME.pdf', NULL, '1', '2025-06-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-04 08:07:23', 1, '2025-06-04 08:11:45', 0, NULL, 1),
(25231, 'Vijay S', '6', '7339333880', '', 'vijayvija2002@icloud.com', '2002-09-01', 22, '3', '2', 'Suresh', 'Designer', 10000.00, 1, 0.00, 2.20, 'Gudiyatham,vellore', 'Guindy', '2506040007', '', '1', 'upload_files/candidate_tracker/27909854009_vijay.pdf', NULL, '1', '2025-06-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles will not handle our work pressure Not even opening the mouth no idea for what he applied', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-04 10:04:22', 154, '2025-06-04 05:10:42', 0, NULL, 1),
(25232, 'DEENADAYALAN S', '13', '8610734368', '', 'deenadayalans2214@gmail.com', '2002-10-09', 22, '3', '2', 'SUNDARAMOORTHY D', 'Die fitter', 15000.00, 1, 0.00, 3.50, 'Pondicherry', 'Kaatankulathur, Chengalpattu', '2506040008', '', '1', 'upload_files/candidate_tracker/37772141273_Deenadayalan.pdf', NULL, '1', '2025-06-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-04 11:08:25', 1, '2025-06-04 11:12:02', 0, NULL, 1),
(25233, 'Ishwarya arthi', '6', '9566909575', '', 'ishwaryaarthi5@gmail.com', '2000-02-15', 25, '2', '2', 'P.Venkatesan', 'Daily wages', 70000.00, 2, 18000.00, 25000.00, 'Puducherry', 'Ekkattuthangal,Chennai', '2506040009', '1', '2', 'upload_files/candidate_tracker/28380406711_Chellamsresume6.pdf', NULL, '1', '2025-06-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-04 11:47:04', 154, '2025-06-04 05:59:13', 0, NULL, 1),
(25234, 'SHRIKANTH A L', '13', '6374370190', '9600112725', 'al.shrikanth15@gmail.com', '2002-11-15', 22, '3', '2', 'Loganathan', 'Welder', 500000.00, 1, 0.00, 320000.00, 'Chennai', 'Chennai', '2506050001', '', '1', 'upload_files/candidate_tracker/81345313237_ShrikanthResume2.pdf', NULL, '1', '2025-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-05 05:19:35', 1, '2025-06-05 05:26:55', 0, NULL, 1),
(25235, 'Hem Kumar U', '13', '6369693613', '9884713191', 'hemkumar5414@gmail.com', '2003-03-14', 22, '3', '2', 'D.Umapathy', 'Service', 38000.00, 1, 0.00, 15000.00, 'No:227,TNHB, Ayapakkam, Chennai-600077', 'No:227,TNHB, Ayapakkam, Chennai-600077', '2506050002', '', '1', 'upload_files/candidate_tracker/5642368187_HemKumarCV.pdf', NULL, '1', '2025-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-05 05:19:57', 1, '2025-06-05 05:32:49', 0, NULL, 1),
(25236, 'Suhail u', '13', '9176850185', '', 'suhail180920@gmail.com', '2002-09-18', 22, '3', '2', 'Usman', 'Sales man', 15000.00, 1, 0.00, 15000.00, 'Virugambakkam, Chennai', 'Virugambakkam, Chennai', '2506050003', '', '1', 'upload_files/candidate_tracker/5102494029_suhailcvjava.pdf', NULL, '1', '2025-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-05 05:20:06', 1, '2025-06-05 05:34:10', 0, NULL, 1),
(25237, 'Sai Someshwar A P', '13', '7871994307', '', 'apsaisomeshwar467@gmail.com', '2002-07-04', 22, '3', '2', 'Prakasam A', 'Own Business', 40000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2506050004', '', '1', 'upload_files/candidate_tracker/28700210873_SaisomeshwarResumejavaNIR.pdf', NULL, '1', '2025-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-05 05:20:10', 1, '2025-06-05 05:30:10', 0, NULL, 1),
(25238, 'DHARANI P', '6', '9344328648', '9841022619', 'dharanip1101@gmail.com', '2001-12-11', 23, '2', '2', 'PARTHASARATHY E', 'Printing press', 12000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2506050005', '1', '1', 'upload_files/candidate_tracker/32620856154_ResumeDharani.docx', NULL, '1', '2025-06-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Offered but she not joined just 2 months exp in health insurance in 2023 and after that she is into education fresher now we offered her 1.74 LPA', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-05 05:52:17', 154, '2025-06-05 12:29:41', 0, NULL, 1),
(25239, 'I.Harini', '6', '9150125355', '', 'helanharini@gmail.com', '2004-07-18', 20, '5', '2', 'Ilayaraja', 'Private sector', 20000.00, 1, 0.00, 13000.00, 'Perambur', 'Perambur', '2506050006', '', '1', 'upload_files/candidate_tracker/61139147600_Resume1.pdf', NULL, '1', '2025-06-05', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.sustianable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-06-05 06:01:02', 154, '2025-06-05 12:49:03', 0, NULL, 1),
(25240, 'Keerthiga', '6', '9710978554', '', 'keerthikaloganathan11@gmail.com', '2005-05-11', 20, '1', '2', 'Loganathan', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2506050007', '', '1', 'upload_files/candidate_tracker/7779638207_Resume.pdf', NULL, '1', '2025-06-05', 0, 'C99122', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.Voice is Very Low also sustianable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-06-05 06:14:45', 154, '2025-06-05 03:15:11', 0, NULL, 1),
(25241, 'Hemalatha', '6', '8925620472', '7401188304', 'Hemalathavalli2005@gmail.com', '2005-11-25', 19, '2', '2', 'Valli.G', 'House keeping', 12000.00, 1, 0.00, 15000.00, 'Old washermenpet', 'Old washermenpet', '2506050008', '1', '1', 'upload_files/candidate_tracker/64818703977_76708632926309.pdf', NULL, '1', '2025-06-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sounds and pronouncing issues need to explore a lot not much suits for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-05 06:15:13', 154, '2025-06-05 02:36:17', 0, NULL, 1),
(25242, 'Archana', '6', '9566139583', '', 'archanaparchanap840@gmail.com', '2004-11-23', 20, '2', '2', 'ponnusamy', 'Driver', 20000.00, 3, 0.00, 15000.00, 'Chengalpattu', 'mountroad', '2506050009', '1', '1', 'upload_files/candidate_tracker/68292328307_ARCHANA1.pdf', NULL, '1', '2025-06-05', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good.she is intersted for non voice. sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-06-05 06:18:12', 154, '2025-06-05 03:13:53', 0, NULL, 1),
(25243, 'Karthick R', '13', '8248829971', '6381911548', 'rkarthick0610@gmail.com', '2001-10-06', 23, '3', '2', 'Ramasamy G', 'Business', 27000.00, 1, 0.00, 2.50, 'Thiruvarur', 'Thiruvarur', '2506050010', '', '1', 'upload_files/candidate_tracker/72653246995_KARTHICKBECSE7.98CGPA1.pdf', NULL, '1', '2025-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-05 06:19:46', 1, '2025-06-05 06:24:44', 0, NULL, 1),
(25244, 'Nabeela Simran', '6', '9632834568', '', 'nabeela1607@gmail.com', '1999-07-16', 25, '2', '2', 'Tasneem taj', 'House wife', 20000.00, 1, 20000.00, 27000.00, 'Btm layout', 'Btm layout', '2506050011', '1', '2', 'upload_files/candidate_tracker/12334371147_NabeelaSimran1.pdf', NULL, '1', '2025-06-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'suggested ctc 23k for dm', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55671', '55555', '1970-01-01', 1, '2025-06-05 07:05:11', 154, '2025-06-13 09:57:22', 0, NULL, 1),
(25245, 'Madhuri Barua', '6', '8210660572', '6200117712', 'Barua.madhuri5@gmail.com', '1983-11-22', 41, '2', '2', 'No', 'No', 10000.00, 0, 0.00, 32.00, 'Bangalore', 'Bangalore', '2506050012', '1', '2', 'upload_files/candidate_tracker/78457789721_1000140283.pdf', NULL, '1', '2025-06-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for dm suggested ctc 23k', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55671', '55555', '1970-01-01', 1, '2025-06-05 07:05:12', 154, '2025-06-13 09:57:58', 0, NULL, 1),
(25246, 'gopi', '13', '6369577696', '9843987819', 'gopisr2024@gmail.com', '2002-09-19', 22, '3', '2', 'Rajesh', 'Bussiness', 20000.00, 1, 0.00, 25000.00, 'Ambur', 'Anna nagar', '2506050013', '', '1', 'upload_files/candidate_tracker/97046666510_GopiS.RResume.pdf', NULL, '1', '2025-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-05 07:52:47', 1, '2025-06-05 09:14:41', 0, NULL, 1),
(25247, 'udhaYa shankar', '6', '9043092594', '', 'sssankar1044@gmail.com', '2002-04-21', 23, '2', '2', 'Balu', 'Driver', 10000.00, 1, 20000.00, 25000.00, 'Kallakurichi', 'Velachery chennai', '2506050014', '1', '2', 'upload_files/candidate_tracker/54873063053_UdhayasankarSDMAgencyChennaiHDFC.pdf', NULL, '1', '2025-06-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped not ok with the salary Max uptp 19K for DM roles have exp in Matrimony but long back and career gap was there and worked with another company and left in short note', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-05 08:20:15', 154, '2025-06-09 07:11:18', 0, NULL, 1),
(25248, 'Karthika.M', '33', '9003118321', '9841188336', 'karthikamageswaran@gmail.com', '2003-07-27', 21, '3', '2', 'Mageswaran.V', 'Business', 60000.00, 1, 0.00, 2000.00, 'Anna nagar', 'Shenoy nagar', '2506060001', '', '1', 'upload_files/candidate_tracker/80898034200_RESUMEMBA.pdf', NULL, '1', '2025-06-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to come back with confirmation from the college on the internship in same company,also candidate is not much aggresive', '4', '1', '', '1', '8', '', '2', '2025-06-09', '2', '4', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-06 06:21:46', 154, '2025-06-06 12:21:17', 0, NULL, 1),
(25249, 'Dhanush Kumar S', '33', '9047347542', '9345838652', 'kumardhanush010@gmail.com', '2004-03-04', 21, '3', '2', 'Saravanan E', 'Retail Business', 600000.00, 1, 0.00, 25000.00, 'Kolathur', 'Kolathur', '2506060002', '', '1', 'upload_files/candidate_tracker/8580380882_DHANUSHKUMAR.SResume.pdf', NULL, '1', '2025-06-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to come back with confirmation from the college on the internship in same company,also candidate is not much open up ', '4', '1', '', '1', '8', '', '2', '2025-06-09', '2', '4', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-06 06:21:56', 154, '2025-06-06 12:22:06', 0, NULL, 1),
(25250, 'Bowthiga T', '5', '8056772417', '', 'bowthi0328@gmail.com', '1996-01-28', 29, '2', '1', 'Gurunathan', 'IT', 50000.00, 0, 18000.00, 16000.00, 'Sivaganga', 'Chennai', '2506060003', '1', '2', 'upload_files/candidate_tracker/10139005199_Bowthiga.T1.pdf', NULL, '1', '2025-06-06', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55650', '55560', '1970-01-01', 1, '2025-06-06 06:56:34', 154, '2025-06-09 07:09:44', 0, NULL, 1),
(25251, 'Nandhini Perumal Babu', '4', '9025004414', '9952257430', 'nandhinisubash3120@gmail.com', '2000-01-03', 25, '2', '1', 'Subash Chandra Bose', 'Telecommunications Engineer', 35000.00, 1, 0.00, 20000.00, 'Dharmapuri', 'Koyambedu', '2506060004', '1', '2', 'upload_files/candidate_tracker/16179610594_nandhinisubashresume2.pdf', NULL, '1', '2025-06-07', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55824', '55560', '1970-01-01', 1, '2025-06-06 07:05:58', 154, '2025-06-07 11:42:15', 0, NULL, 1),
(25252, 'Kumaran u', '6', '9884498705', '7200608027', 'Kumaran160704@gmail.com', '2010-06-06', 0, '2', '2', 'Umapathy k', 'Cooli', 12000.00, 1, 0.00, 18000.00, 'Aminjikarai', 'Aminjikarai', '2506060005', '1', '1', 'upload_files/candidate_tracker/62063029790_Documentfrom.pdf', NULL, '1', '2025-06-06', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also sustianable is doubt', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-06-06 07:14:32', 154, '2025-06-06 04:34:10', 0, NULL, 1),
(25253, 'Narmadha. M', '6', '9176746362', '', 'narmadhaesthar@gmail.com', '2004-09-19', 20, '2', '2', 'G. Madhan raj', 'House keeping', 15000.00, 2, 0.00, 15000.00, 'Old Washarmanpet mint chennai', 'Old Washarmanpet mint chennai', '2506060006', '27', '1', 'upload_files/candidate_tracker/81796654076_EstherResumePDF.pdf', NULL, '1', '2025-06-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No confident need to open up a lot will not handle the work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-06 10:32:58', 154, '2025-06-06 05:37:28', 0, NULL, 1),
(25254, 'M.R.Hemapriya 349117357434', '6', '9176593570', '', 'hemapriyamr@gmail.com', '2005-03-21', 20, '2', '2', 'M.Ravi', 'Site engineer', 20000.00, 1, 0.00, 15000.00, 'Old Washermen pet', 'Old Washermen pet', '2506060007', '27', '1', 'upload_files/candidate_tracker/7024030742_downloadresume.pdf', NULL, '2', '2025-06-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles fresher will not handle the pressure and friends gang ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-06 10:33:05', 154, '2025-06-06 05:38:02', 0, NULL, 1),
(25255, 'mahendra', '6', '6383578773', '', 'm76321053@gmail.com', '2004-12-31', 20, '2', '2', 'Mahalingam', '25000', 25000.00, 0, 0.00, 20000.00, 'New washermenpet', 'New washermenpet', '2506060008', '27', '1', 'upload_files/candidate_tracker/59092286752_PDFReader202505221452.pdf', NULL, '1', '2025-06-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication very slow will not handle our work pressure and sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-06 10:33:40', 154, '2025-06-06 05:38:55', 0, NULL, 1),
(25256, 'salma ansar bhasha', '6', '8838324588', '', 'salma20040201@gmail.com', '2004-02-01', 21, '2', '2', 'Kairunisha', 'House keeping', 20000.00, 2, 0.00, 15000.00, 'Old washermen pet', 'Old washermen pet', '2506060009', '27', '1', 'upload_files/candidate_tracker/23388710311_Document28.pdf', NULL, '1', '2025-06-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up not much comfort with the target and pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-06 10:34:26', 154, '2025-06-06 05:42:21', 0, NULL, 1),
(25257, '', '0', '9042564350', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506070001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-07 02:48:25', 0, NULL, 0, NULL, 1),
(25258, 'Esakkiyappan M', '13', '9150989265', '9500158130', 'desakki123@gmail.com', '2003-06-02', 22, '2', '2', 'Murugan P', 'Driver', 18000.00, 2, 0.00, 300000.00, 'chennai', 'chennai', '2506070002', '1', '1', 'upload_files/candidate_tracker/58352292708_Esakkiappanresumee1.pdf', NULL, '1', '2025-06-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-06-07 04:49:26', 1, '2025-06-07 04:52:23', 0, NULL, 1),
(25259, 'Ashok S', '6', '6383527940', '', 'ashok.shanmugam2002@gmail.com', '2002-08-29', 22, '2', '2', 'SHANMUGAM', 'Agriculture or farming', 30000.00, 1, 22000.00, 26000.00, 'Avadi', 'Thiruniravur', '2506070003', '1', '2', 'upload_files/candidate_tracker/81240190863_AshokSresume.pdf', NULL, '1', '2025-06-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No seriousness in the job too long distance will not sustain and very lethurgic not suitable for our roles\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-06-07 05:46:41', 154, '2025-06-07 01:05:49', 0, NULL, 1),
(25260, 'Subbaiah M', '6', '8056542080', '', 'subbaiahbose06@gmail.com', '2004-06-01', 21, '2', '2', 'Muthu pandi s', 'Farmer', 40000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2506090001', '1', '1', 'upload_files/candidate_tracker/9509417809_CV20250605081751.pdf', NULL, '1', '2025-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile prepared for police exams and due to health issues unable to proceed further Fresher for Sales pressure handling doubts a lot this is the first interview let him explore the opportunities and if he come back let us try', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-09 04:58:29', 154, '2025-06-09 12:48:47', 0, NULL, 1),
(25261, 'B. Esakki muthu', '6', '9342195905', '', 'esakkimuthu898080@gmail.com', '2004-10-29', 20, '2', '2', 'S. Bala krishan', 'Building contractor', 40000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2506090002', '1', '1', 'upload_files/candidate_tracker/12766280971_msuniv.comhallticketsshowapr25hallticket.pdf', NULL, '1', '2025-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Open for Non voice profile no clarity with the job he needs to go let him explore the job opportunites he will not sustain in our sales roles\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-09 04:58:31', 154, '2025-06-09 12:50:18', 0, NULL, 1),
(25262, 'Bharathi Subramani', '6', '6383103625', '9940225180', 'bharathirack881@gmail.com', '2001-07-05', 23, '2', '2', 'Subramani', 'Watchman', 20000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2506090003', '1', '2', 'upload_files/candidate_tracker/41365732756_Bharathiresume11749053796195S.Bharathi.docx', NULL, '1', '2025-06-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok have exp in calling and direct sales 2.5yrs 3 companies worked too long distance not sure with his sustainability let us hold and try his profile', '5', '1', '', '1', '8', '', '2', '2025-06-12', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-06-09 05:29:53', 154, '2025-06-09 12:51:29', 0, NULL, 1),
(25263, 'Khaveya s', '6', '7092074995', '', 'Khaveya1803@gmail.com', '2005-03-18', 20, '2', '2', 'Saravanan', 'Own Business', 50000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2506090004', '1', '1', 'upload_files/candidate_tracker/95110004271_KhaveyaResume.pdf', NULL, '1', '2025-06-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-06-09 05:33:57', 154, '2025-06-09 11:46:37', 0, NULL, 1),
(25264, 'A Amreen Naz', '11', '6380566957', '7550181576', 'amreennaz71@gmail.com', '2002-04-27', 23, '3', '2', 'Akbar basha', 'Retired', 60000.00, 2, 0.00, 22000.00, 'No 10 Anthony street Royappettah Chennai', 'No 10 Anthony street Royappettah Chennai', '2506090005', '', '1', 'upload_files/candidate_tracker/66793202532_RESUMEAmreenNaz.pdf.pdf', NULL, '1', '2025-06-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-09 05:49:27', 154, '2025-06-11 06:23:00', 0, NULL, 1),
(25265, 'tamilarasan', '6', '8925042797', '', 'tamilronaldo2@gmail.com', '2004-07-02', 20, '2', '2', 'shanmugam', 'driver', 30000.00, 1, 0.00, 20000.00, 'Ayanavaram', 'Ayanavaram', '2506090006', '45', '1', 'upload_files/candidate_tracker/63286429965_tamilresume.pdf', NULL, '1', '2025-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Much comfort with Tele and partially field expecting a lot as he comparing his earnings with his friends looking much for the salary pressure handling doubts a lot', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-09 05:58:34', 154, '2025-06-09 01:04:26', 0, NULL, 1),
(25266, '', '0', '7010783893', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506090007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-09 07:26:09', 0, NULL, 0, NULL, 1),
(25267, 'aravindh', '11', '9500092105', '9500092917', 'aravindhramu1@gmail.com', '2001-01-11', 24, '6', '2', 'ramu', 'it', 75000.00, 1, 0.00, 100000.00, 'chennai', 'chennai', '2506090008', '', '1', 'upload_files/candidate_tracker/35862979342_AravindhRamuResume1.0.pdf', NULL, '2', '2025-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok but lot of stammerring he not seems to be normal will not sustain in our roles and not suitable much with our openings', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-09 07:28:59', 154, '2025-06-09 01:29:40', 0, NULL, 1),
(25268, 'KANIMOZHI M', '4', '9659364275', '', 'rajikanimozhili@gmail.com', '2004-07-05', 20, '5', '1', 'MOHAN.S', 'Sales man', 200000.00, 1, 0.00, 16000.00, 'Pallikaranai', 'Pallikaranai', '2506090009', '', '1', 'upload_files/candidate_tracker/11421272132_Resume.pdf', NULL, '1', '2025-06-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-09 11:56:41', 1, '2025-06-09 12:10:05', 0, NULL, 1),
(25269, 'Jothi.R', '6', '9363695841', '9445405389', 'jothi.jo01923@gmail.com', '1999-10-19', 25, '5', '2', 'Rajendran.s', 'Superintendent of Police', 40000.00, 1, 16000.00, 25000.00, 'No.2 Krishnan Street,West Mambalam, Chennai -33', 'No.2 Krishnan Street,West Mambalam, Chennai -33', '2506090010', '', '2', 'upload_files/candidate_tracker/90440372301_JothiRResume3.pdf', NULL, '1', '2025-06-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-09 12:56:27', 1, '2025-06-09 01:03:44', 0, NULL, 1),
(25270, 'Roshni MS', '6', '9345297120', '7338766301', 'roshnimadankumar157@gmail.com', '2005-07-15', 19, '2', '2', 'm.madankumar', 'Completed studies', 120000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2506100001', '45', '1', 'upload_files/candidate_tracker/71549084667_ROSHNIM1.docx', NULL, '1', '2025-06-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good skill , fresher, will analysis 7 days training ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-10 04:53:59', 154, '2025-06-10 11:33:09', 0, NULL, 1),
(25271, 'Gayathri T', '4', '9940170049', '6374050355', 'gayathriraj2604@gmail.com', '2000-07-05', 24, '2', '2', 'Thangaraj T', 'Auto driver', 20000.00, 1, 12000.00, 20000.00, 'MKB nagar', 'MKB Nagar', '2506100002', '1', '2', 'upload_files/candidate_tracker/61657449760_GayathriTResume.docx', NULL, '1', '2025-06-10', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '2nd Round pending', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-06-10 05:24:54', 154, '2025-06-10 12:47:33', 0, NULL, 1),
(25272, 'Ajitha alagu perumal', '6', '6374050355', '9940170049', 'ajitha242003@gmail.com', '2010-06-10', 0, '2', '2', 'Alagu perumal', 'Cooking master', 18000.00, 1, 12000.00, 18000.00, 'Perungalathur', 'Perungalathur', '2506100003', '1', '2', 'upload_files/candidate_tracker/36100956052_ajitharesume.pdf', NULL, '1', '2025-06-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was good at communication and also interested in sales and incentives and she was coming from perungaluthur but she was saying it was not an issue and also experienced in sales we shall provide 15-16k as take home and also ok for immediate joining', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1287', '5151', '1970-01-01', 1, '2025-06-10 05:25:35', 154, '2025-06-11 03:32:14', 0, NULL, 1),
(25273, 'Dilara bee', '6', '9962977023', '8939398750', 'dilarabee15@gmail.com', '2005-06-29', 19, '2', '2', 'Mohamed Sheriff', 'Crane Operator', 18000.00, 1, 0.00, 18000.00, 'pattalam Chennaii', 'pattalam Chennai', '2506100004', '1', '1', 'upload_files/candidate_tracker/41692995142_DILARABEEnew.pdf', NULL, '1', '2025-06-10', 0, '', '3', '59', '2025-06-16', 174000.00, '', '3', '2025-06-28', '2', 'Communication Good Can be trained in our roles fresher have knowledge in digi Mark 5050 sustainability let us try', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '2025-06-16', 1, '2025-06-10 05:28:17', 60, '2025-06-14 06:22:15', 0, NULL, 1),
(25274, 'Vaishanavi.k', '6', '9514192246', '', 'vaishnavikk956@gmail.com', '2004-05-06', 21, '1', '2', 'Kumar.k', 'Daily wages', 10000.00, 1, 0.00, 16000.00, 'Washermenpet', 'Washermenpet', '2506100005', '', '1', 'upload_files/candidate_tracker/63357820903_Vaishnavi.KCV4.pdf', NULL, '1', '2025-06-10', 0, 'T1287', '3', '59', '2025-06-12', 168000.00, '', '3', '2025-06-12', '2', 'Communication Ok Fresher for our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2025-06-12', 1, '2025-06-10 05:31:45', 60, '2025-06-11 07:22:43', 0, NULL, 1),
(25275, 'ANBU M', '13', '6381208220', '9655722724', 'anbuani21@gmail.com', '2003-10-21', 21, '3', '2', 'Muthu', 'Farmer', 100000.00, 1, 0.00, 15000.00, 'Pudukkottai, Aranthangi', 'Chennai, Velachery', '2506100006', '', '1', 'upload_files/candidate_tracker/46183519167_Anbuupdated.pdf', NULL, '1', '2025-06-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-10 05:44:55', 1, '2025-06-10 05:49:13', 0, NULL, 1),
(25276, 'Thavasi', '6', '9344423726', '9585832172', 'kajanapara42@gmail.com', '2004-05-29', 21, '2', '2', 'Palraj', 'Farmer', 72000.00, 2, 0.00, 18000.00, 'Theni', 'Vadapalani', '2506100007', '1', '1', 'upload_files/candidate_tracker/83125651436_ThavasiPalrajResume1.pdf', NULL, '1', '2025-06-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher communication Ok not much clear to our sales roles Pressure handling and sustainability doubts in this roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-10 05:46:20', 154, '2025-06-10 12:43:30', 0, NULL, 1),
(25277, 'Uvaisul Karni S', '6', '9962559590', '', 'uvaisulkarni00@gmail.com', '2005-08-15', 19, '2', '2', 'Shajahan M', 'Electrition', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2506100008', '1', '1', 'upload_files/candidate_tracker/32581897284_uvaisul1.pdf', NULL, '1', '2025-06-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok , communication average . provide the fresher salary. kindly confirm the joining date.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55732', '5151', '1970-01-01', 1, '2025-06-10 05:53:39', 154, '2025-06-10 01:24:01', 0, NULL, 1),
(25278, 'Arsheeya Z', '6', '7200233873', '', 'Arsheeyaziaudeen26@gmail.com', '2005-03-26', 20, '2', '2', 'Ziaudeen', 'Driver', 18000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2506100009', '1', '1', 'upload_files/candidate_tracker/14237676329_arsheeya1.pdf', NULL, '1', '2025-06-10', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up a lot interested to learn but 5050 in our roles if she is getting back will try for our roles', '5', '2', '', '1', '8', '', '2', '2025-06-13', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-10 05:53:57', 154, '2025-06-10 01:24:33', 0, NULL, 1),
(25279, 'Poornima', '6', '7603933575', '9962317987', 'rpoornima957@gmail.com', '2005-01-30', 20, '2', '2', 'Rajavel', 'Electrician', 48000.00, 1, 14000.00, 20000.00, 'Sharma nagar vyasarpadi chennai', 'Sharma nagar', '2506100010', '45', '2', 'upload_files/candidate_tracker/36949259391_Poornima.pdf', NULL, '3', '2025-06-10', 1, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication was not at all good and she was not suitable for sales and stability', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-06-10 06:17:19', 154, '2025-06-10 01:23:26', 0, NULL, 1),
(25280, 'Selvamurugan E', '11', '9176320435', '', 'selvamurugan8199@gmail.com', '2005-03-17', 20, '6', '2', 'Esakki muthu', 'Shop owner', 300000.00, 1, 0.00, 8000.00, 'Chennai', 'Chennai', '2506100011', '', '1', 'upload_files/candidate_tracker/65554715001_selvaMurugannew.pdf', NULL, '1', '2025-06-10', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-10 06:40:27', 154, '2025-06-10 12:44:07', 0, NULL, 1),
(25281, 'M santhosh', '11', '9940631843', '9361176288', 'msanthosh20055@gmail.com', '2005-08-29', 19, '6', '2', 'P Mani Kannan', 'Employee', 20000.00, 1, 0.00, 8000.00, 'Vadapalani', 'Vadapalani', '2506100012', '', '1', 'upload_files/candidate_tracker/39184137432_MsanthoshResume2025.pdf', NULL, '1', '2025-06-10', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-10 06:40:34', 154, '2025-06-10 12:44:32', 0, NULL, 1),
(25282, '', '0', '6379930263', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506100013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-10 07:57:15', 0, NULL, 0, NULL, 1),
(25283, 'karthikeyan', '6', '9597888389', '', 'karthikeyansakthivel46@gmail.com', '2002-12-08', 22, '2', '1', 'deepa', 'senior sales executive', 50000.00, 1, 30000.00, 36000.00, 'sholingar', 'sennerikuppam', '2506100014', '1', '2', 'upload_files/candidate_tracker/49272901710_KarthikeyanResume.pdf', NULL, '1', '2025-06-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long distance 1.5 yrs 2 companies very high salary exp holding multiple offers will not join us just he will trade with this not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-06-10 08:26:04', 154, '2025-06-10 03:36:38', 0, NULL, 1),
(25284, 'Deepak Loganathan', '13', '8825576641', '6369727574', 'deepakslvd143@gmail.com', '2005-02-10', 20, '2', '2', 'Father : Loganathan.P ,Mother : Savitha.L', 'Tailor', 60000.00, 0, 0.00, 450000.00, 'Sivagiri,Erode(dt)', 'Erode', '2506100015', '1', '1', 'upload_files/candidate_tracker/39235801801_Deepak202505182328340000.pdf', NULL, '1', '2025-06-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-10 10:39:41', 154, '2025-06-20 01:12:31', 0, NULL, 1),
(25285, 'rinsha', '4', '9094908922', '9677104047', 'rinshashalu04@gmail.com', '1998-12-04', 26, '2', '1', 'Krishna moorthy', 'Car driver', 50000.00, 0, 0.00, 26000.00, 'Ambattur Chennai -53', 'Ambattur Chennai -53', '2506100016', '1', '2', 'upload_files/candidate_tracker/45272724023_pdfrendition113.pdf', NULL, '1', '2025-06-11', 10, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55824', '55560', '1970-01-01', 1, '2025-06-10 12:00:29', 154, '2025-06-11 03:23:15', 0, NULL, 1),
(25286, 'Harish B', '13', '7358446849', '', 'harish.b2209@gmail.com', '2000-09-22', 24, '2', '1', 'baskaran r', 'driver', 20000.00, 2, 0.00, 500000.00, 'Chennai', 'Chennai', '2506100017', '1', '2', 'upload_files/candidate_tracker/57125698745_HarishResume.pdf', NULL, '1', '2025-06-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-10 12:25:31', 154, '2025-06-11 11:07:11', 0, NULL, 1),
(25287, 'KISHORE KUMAR RAVI', '13', '9629590338', '', 'kishoreravi0203@gmail.com', '2003-11-02', 21, '2', '2', 'SC Ravi', 'Supervisor in Theatre', 25000.00, 0, 0.00, 3.00, 'Chennai', 'Chennai', '2506100018', '1', '1', 'upload_files/candidate_tracker/76178516239_ResumeFrontEndDeveloper.pdf.pdf', NULL, '1', '2025-06-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-06-10 12:35:22', 1, '2025-06-10 12:48:39', 0, NULL, 1),
(25288, 'Gunaseelan k', '4', '9384334048', '', 'Gunaseelan4048f@gmail.com', '2003-01-02', 22, '2', '2', 'KUMARESAN', 'Farmer', 72000.00, 1, 0.00, 25000.00, 'Chengellpet', 'Chengellpet', '2506100019', '1', '1', 'upload_files/candidate_tracker/46961060441_GUNASEELANRESUME.pdf', NULL, '1', '2025-06-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1003', '0', '0', '0', NULL, 1, '2025-06-10 12:48:20', 1, '2025-06-10 12:56:32', 0, NULL, 1),
(25289, 'ABISHEK AMIRTHAVARSHAN S', '13', '8925565094', '9962737309', 'abishekamirthavarshans@gmail.com', '2004-06-15', 20, '2', '2', 'Sri Ranganathan V', 'Steel Polisher', 15000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2506110001', '1', '1', 'upload_files/candidate_tracker/45205927101_AbishekAmirthavarshanSResume1.pdf', NULL, '1', '2025-06-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-06-11 04:55:47', 1, '2025-06-11 05:06:35', 0, NULL, 1),
(25290, '', '0', '7199695269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506110002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-11 05:09:31', 0, NULL, 0, NULL, 1),
(25291, 'sudhakar', '6', '8608900890', '7010634166', 'sudhakarsiddes@gmail.com', '1996-10-26', 28, '2', '2', 'Siddes', 'Daily wages', 25000.00, 2, 16000.00, 20000.00, '1/50 Kamarajar nagar narasothy patti salem', 'Chennai mandaveli', '2506110003', '1', '2', 'upload_files/candidate_tracker/51261126890_sudharkar1.docx', NULL, '1', '2025-06-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-11 05:52:48', 154, '2025-06-12 12:36:31', 0, NULL, 1),
(25292, '', '0', '9944546587', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506110004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-11 06:13:53', 0, NULL, 0, NULL, 1),
(25293, 'pushpaveni g', '6', '9176497111', '8680926184', 'pushpaveniganesan26@gmail.com', '2004-11-26', 20, '2', '2', 'bhuvaneshwary g', 'private sector', 16000.00, 2, 0.00, 15000.00, 'triplicane chennai', 'triplicane chennai', '2506110005', '1', '1', 'upload_files/candidate_tracker/18185640351_PUSHPAVENIG.pdf', NULL, '1', '2025-06-12', 0, '', '3', '59', '2025-06-16', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok can give a try and check in training 5050 for our profile', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '2025-06-16', 1, '2025-06-11 06:18:00', 60, '2025-06-14 06:30:05', 0, NULL, 1),
(25294, 'Santhoshkumar Raveendran', '2', '6382077380', '8220422249', 'santhosh3908@gmail.com', '2003-11-20', 21, '2', '2', 'Raveendran K', 'Business', 20000.00, 1, 0.00, 3.00, 'Pudukkottai', 'Chennai', '2506110006', '1', '1', 'upload_files/candidate_tracker/65426238694_R.SanthoshKumarResume4.pdf', NULL, '1', '2025-06-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-06-11 06:30:40', 1, '2025-06-11 06:39:43', 0, NULL, 1),
(25295, 'Gopinath S', '13', '9360985406', '', 'gopinathsgs143@gmail.com', '2002-08-07', 22, '2', '2', 'Seerangan S', 'Driver', 35000.00, 2, 0.00, 30000.00, 'Salem', 'Chennai', '2506110007', '1', '1', 'upload_files/candidate_tracker/41363836080_GopinathSResume.pdf', NULL, '1', '2025-06-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-06-11 06:36:15', 1, '2025-06-11 06:49:19', 0, NULL, 1),
(25296, '', '0', '6369952186', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-11 06:38:28', 0, NULL, 0, NULL, 1),
(25297, '', '0', '9003740194', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506110009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-11 06:39:48', 0, NULL, 0, NULL, 1),
(25298, 'E.Raman', '6', '6380433123', '9629990355', 'ubbcraman@gmail.com', '1998-03-08', 27, '2', '2', 'A.ezhumalia', 'Foromesh', 200000.00, 3, 18000.00, 20000.00, 'Melmaruvathur', 'Alandur', '2506110010', '1', '2', 'upload_files/candidate_tracker/28775873175_resumescanvaa.pdf', NULL, '1', '2025-07-21', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Solid exp in  non voice process communication Average will not handle our sales calls not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-11 06:51:22', 104, '2025-07-21 06:21:53', 0, NULL, 1),
(25299, 'Divya kumari', '5', '7305233847', '7305304410', 'divyakumari2812000@gmail.com', '2000-01-28', 25, '2', '1', 'Saikrishnan', 'Hr', 40.00, 2, 20800.00, 26000.00, 'Perambur', 'Perambur', '2506110011', '1', '2', 'upload_files/candidate_tracker/53915664178_DOC20250415WA0014..pdf', NULL, '1', '2025-06-11', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for RM role ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55656', '55557', '1970-01-01', 1, '2025-06-11 06:57:23', 154, '2025-06-11 07:26:45', 0, NULL, 1),
(25300, 'satheesh raj r p', '13', '9344549005', '', 'satheexsh@gmail.com', '2003-10-10', 21, '6', '2', 'pathmaraj r', 'buisness', 50000.00, 1, 0.00, 400000.00, 'pudukkottai', 'chennai', '2506110012', '', '1', 'upload_files/candidate_tracker/61868664547_SatheeshRajResume.pdf', NULL, '1', '2025-06-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-11 07:12:30', 104, '2025-06-12 09:45:50', 0, NULL, 1),
(25301, 'Harini B', '4', '6382045242', '6382811515', 'harinibabu17@gmail.com', '1998-09-15', 26, '2', '1', 'Hariharan', 'Business', 50000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2506110013', '1', '1', 'upload_files/candidate_tracker/70339589696_HARINIRESUME.pdf', NULL, '1', '2025-06-11', 0, '', '3', '59', '2025-06-16', 174000.00, '', '1', '1970-01-01', '1', 'Communication Ok have career gap need to train from scratch can give a try in Renewals', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1030', '', '55605', '55566', '2025-06-16', 1, '2025-06-11 07:12:34', 60, '2025-06-14 06:23:54', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25302, 'S Rama Krishnan', '13', '9342679965', '6379190586', 'ramakrishnanramakrishnan906906@gmail.com', '2003-09-18', 21, '3', '2', 'Siva Rama nambi krishnan P', 'LIC AGENT', 40000.00, 1, 0.00, 250000.00, 'Kanchipuram', 'Chennai', '2506110014', '', '1', 'upload_files/candidate_tracker/25002324556_RamaKrishnan.pdf', NULL, '1', '2025-06-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-11 07:47:14', 1, '2025-06-11 07:51:05', 0, NULL, 1),
(25303, 'Janani theresa j', '6', '8681900706', '9551151973', 'littlejan3024@gmail.com', '2003-01-30', 22, '2', '2', 'Jospeh V', 'Daily wage earner', 10000.00, 1, 0.00, 15.00, 'chennai', 'Chennai', '2506110015', '1', '1', 'upload_files/candidate_tracker/78635364165_CV202503031152295.pdf', NULL, '1', '2025-06-11', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok, way of approach and body language, communication not good ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-06-11 09:28:06', 154, '2025-06-11 04:24:48', 0, NULL, 1),
(25304, 'Nandhini V', '4', '8610557356', '7092988240', 'gv44618@gmail.com', '2003-11-24', 21, '3', '2', 'Vasudevan', 'Daily wage earner', 12000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2506110016', '', '1', 'upload_files/candidate_tracker/22096165869_CV2025061022170491.pdf', NULL, '1', '2025-06-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-11 09:28:20', 154, '2025-06-11 05:42:29', 0, NULL, 1),
(25305, 'KALPANA', '6', '6385721533', '', 'Kalpanakavi42@gmail.com', '1992-04-15', 33, '2', '1', 'Balamurugan', 'Senior executive', 30000.00, 0, 0.00, 25000.00, 'Chennai perambur', 'Chennai perambur', '2506110017', '1', '2', 'upload_files/candidate_tracker/46295854960_KalpanaResume2.pdf', NULL, '3', '2025-06-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-11 09:30:53', 154, '2025-06-11 05:43:04', 0, NULL, 1),
(25306, '', '0', '9385823115', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506110018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-11 10:07:12', 0, NULL, 0, NULL, 1),
(25307, '', '0', '7200791898', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506110019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-11 10:48:02', 0, NULL, 0, NULL, 1),
(25308, 'manoj selvam', '13', '9787211508', '9787497202', 'manojselvam1508@gmail.com', '2003-01-15', 22, '2', '2', 'selvam', 'farmer', 10000.00, 2, 0.00, 15000.00, 'dharmapuri', 'dharmapuri', '2506110020', '1', '1', 'upload_files/candidate_tracker/51093024775_MANOJ.pdf', NULL, '1', '2025-06-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-11 11:58:21', 154, '2025-06-17 11:07:30', 0, NULL, 1),
(25309, 'PRAKASH  V', '6', '8825852253', '6369799399', 'svprakash0222@gmail.com', '2003-05-12', 22, '2', '2', 'VENKATESAN', 'Farmer', 10000.00, 2, 0.00, 20000.00, 'No, 453, Pathiyavady, , tamilnadu, pin-606751.', 'Egmore Chennai', '2506110021', '1', '1', 'upload_files/candidate_tracker/41932382833_prakashresume1.pdf', NULL, '1', '2025-06-16', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not clear about what next... he has mutiple thinking about his career want to become police preparing for that...  so not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-11 12:51:31', 154, '2025-06-16 01:31:44', 0, NULL, 1),
(25310, 'A.Muthu Lakshmi', '4', '6379437171', '6374423245', 'muthulakshmiarjunana@gmail.com', '2001-04-13', 24, '2', '1', 'Vignesh', 'Accounts Manager', 35000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2506110022', '1', '1', 'upload_files/candidate_tracker/79216507573_MUTHULAKSHMIAResume1.pdf', NULL, '1', '2025-06-12', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55824', '55560', '1970-01-01', 1, '2025-06-11 01:02:01', 154, '2025-06-13 09:59:26', 0, NULL, 1),
(25311, 'Praveen S', '14', '9677054141', '8925341174', 'praveensamiayya2003@gmail.com', '2003-10-18', 21, '2', '2', 'Samiayya', 'Farmer', 20.00, 1, 0.00, 200000.00, 'Thanjavur', 'Thanjavur', '2506110023', '1', '1', 'upload_files/candidate_tracker/30829953109_PRAVEENS.pdf', NULL, '1', '2025-06-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1020', '0', '0', '0', NULL, 1, '2025-06-11 01:04:00', 1, '2025-06-11 01:08:47', 0, NULL, 1),
(25312, '', '0', '8825544288', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506110024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-11 01:16:58', 0, NULL, 0, NULL, 1),
(25313, 'muskaan n', '6', '9110603359', '', 'muskaanjain208@gmail.com', '2001-06-25', 23, '2', '2', 'nirmal kumar jain', 'Businessman', 100000.00, 3, 39000.00, 43000.00, 'laxmi nivas peenya bangalore', 'Laxmi Nivas Peenya Bangalore', '2506110025', '1', '2', 'upload_files/candidate_tracker/74657686945_ResumeMuskaanJain.pdf', NULL, '1', '2025-06-12', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'REJECTED', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55671', '55555', '1970-01-01', 1, '2025-06-11 01:52:16', 154, '2025-06-13 09:30:54', 0, NULL, 1),
(25314, 'SUNIL KUMAR D', '6', '6374671042', '', 'focussunil2025@gmail.com', '2003-11-04', 21, '2', '2', 'Kamala devi', 'House wife', 283152.00, 2, 23596.00, 29000.00, 'Chennai', 'Chennai', '2506120001', '1', '2', 'upload_files/candidate_tracker/86161075108_sunilcv2003.pdf', NULL, '1', '2025-06-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-12 04:24:02', 154, '2025-06-12 06:38:29', 0, NULL, 1),
(25315, 'Logeswaran v', '6', '7010549331', '9551391227', 'logeswaran040624@gmail.com', '2004-06-04', 21, '1', '2', 'M.venketacen', 'No', 20000.00, 1, 0.00, 16000.00, 'Ayanavaram Chennai 23', 'Spenan blasa', '2506120002', '', '1', 'upload_files/candidate_tracker/5208224113_LogeswaranV202505241349580000.pdf', NULL, '1', '2025-06-12', 0, 'Up1287', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-06-12 04:35:26', 154, '2025-06-13 09:30:46', 0, NULL, 1),
(25316, 'Ayesha Siddqa.M', '5', '6383785082', '7092854028', 'ayeshash2813@gmail.com', '2000-05-22', 25, '2', '2', 'Mahaboob sherif', 'Dargha maintenance man', 25.00, 1, 17.00, 29.00, 'Triplicane', 'Triplicane', '2506120003', '1', '2', 'upload_files/candidate_tracker/16127929733_AyeshaResume.pdf', NULL, '3', '2025-06-12', 0, '', '1', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1030', '', '55735', '55557', '1970-01-01', 1, '2025-06-12 05:06:03', 154, '2025-06-13 09:59:41', 0, NULL, 1),
(25317, 'Dilli vignesh K', '6', '9840776485', '8122236959', 'dillivignesh54@gmail.com', '2003-01-20', 22, '2', '2', 'Kuppuraj G', 'house keeping', 25000.00, 1, 10000.00, 13000.00, '49 govinda Samy nagar korukkupet Chennai', '49 govinda Samy nagar korukkupet Chennai', '2506120004', '1', '2', 'upload_files/candidate_tracker/71371050621_DilliVigneshResume1.docx', NULL, '1', '2025-06-12', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-12 06:03:25', 154, '2025-06-12 06:34:55', 0, NULL, 1),
(25318, 'Mohamed Jabir Jahir Hussain', '13', '6380609289', '8110883676', 'Jabir25264@gmail.com', '2003-01-21', 22, '3', '2', 'Ismath Fathima', 'House Wife', 15000.00, 2, 0.00, 18000.00, 'Mayiladuthurai', 'Triplicane, Chennai', '2506120005', '', '1', 'upload_files/candidate_tracker/39021858051_RESUME.pdf', NULL, '1', '2025-06-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-12 06:29:00', 154, '2025-06-12 12:07:14', 0, NULL, 1),
(25319, 'Ranjith', '13', '7358650858', '', 'ranjithdhaks@gmail.com', '2005-06-11', 20, '3', '2', 'Dhakshana moorthy', 'Daily wages', 150000.00, 1, 0.00, 250000.00, 'Malayambakkam', 'Malayambakkam', '2506120006', '', '1', 'upload_files/candidate_tracker/46948074296_Ranjith.pdf', NULL, '1', '2025-06-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-12 06:48:38', 1, '2025-06-12 06:52:27', 0, NULL, 1),
(25320, 'Yuvan Sankar . v', '6', '7708628078', '7305133266', '01yuvan01@gmail.com', '2003-01-03', 22, '2', '2', 'Venkatesh', 'Ricpc contract employee', 15000.00, 4, 0.00, 14000.00, 'No6 senthil nagar 1st main road kolathur Chennai', 'No6 senthil nagar 1st main road kolathur Chennai', '2506120007', '1', '1', 'upload_files/candidate_tracker/8101388045_YUVANSANKARVresume2.pdf', NULL, '1', '2025-06-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '4', '6', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-12 07:47:42', 154, '2025-06-12 06:34:09', 0, NULL, 1),
(25321, 'Lingadharan J', '2', '8056606093', '9095234872', 'jlingadharan@gmail.com', '2001-11-29', 23, '2', '2', 'Jayakumar', 'Coolie', 30000.00, 1, 500000.00, 500000.00, 'Tiruvannamalai', 'Chennai, navalur', '2506120008', '1', '2', 'upload_files/candidate_tracker/11765157629_Resume.pdf', NULL, '1', '2025-06-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-06-12 10:51:51', 1, '2025-06-12 11:21:16', 0, NULL, 1),
(25322, 'Swathi', '6', '9345050858', '', 'swathigovindaraj2004@gmail.com', '2004-01-01', 21, '2', '2', 'Govindaraj', 'Farmer', 87000.00, 1, 0.00, 2.00, 'Kallakurichi', 'Chennai', '2506120009', '1', '1', 'upload_files/candidate_tracker/93863991434_swathicv.pdf', NULL, '1', '2025-06-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-12 11:01:53', 154, '2025-06-13 03:24:59', 0, NULL, 1),
(25323, 'Dinesh Sekar', '13', '8056051699', '9940573302', 'dineshsekar8080@gmail.com', '2003-10-08', 21, '3', '2', 'Sekar E', 'Retired', 660000.00, 1, 0.00, 400000.00, 'Maraimalainagar', 'Maraimalainagar', '2506120010', '', '1', 'upload_files/candidate_tracker/61295248076_RESUME.pdf', NULL, '1', '2025-06-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-12 12:20:46', 1, '2025-06-12 12:27:59', 0, NULL, 1),
(25324, 'KESAVAN S', '13', '9884490997', '9884380308', 'kesavanknrs@gmail.com', '2003-02-13', 22, '2', '2', 'Sakthivel', 'Labour', 20000.00, 2, 0.00, 4.00, 'Chennai', 'Chennai', '2506120011', '1', '1', 'upload_files/candidate_tracker/31984187002_KESAVANS.pdf', NULL, '1', '2025-06-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-06-12 12:38:36', 1, '2025-06-12 04:40:10', 0, NULL, 1),
(25325, 'muthu siva l', '13', '9342976698', '9444455598', 'muthusiva1750@gmail', '2004-04-25', 21, '2', '2', 'lingamuthu p', 'labour', 25000.00, 2, 0.00, 300000.00, 'chennai', 'chennai', '2506120012', '1', '1', 'upload_files/candidate_tracker/86197983482_resume1.pdf', NULL, '1', '2025-06-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-06-12 12:39:51', 1, '2025-06-12 12:51:45', 0, NULL, 1),
(25326, 'S E Anusha', '4', '9741492753', '', 'anushase21@gmail.com', '2002-05-01', 23, '2', '2', 'Erappa', 'Unemploy', 30000.00, 1, 0.00, 20000.00, 'Mandya', 'Bangalore', '2506120013', '1', '1', 'upload_files/candidate_tracker/24487959828_AnushaCVResume.pdf', NULL, '1', '2025-06-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-06-12 01:29:55', 1, '2025-06-12 01:34:14', 0, NULL, 1),
(25327, 'Dhaneshvaran Prabu', '13', '9499059513', '8807080715', 'dhaneshvaran.091@gmail.com', '2003-11-04', 21, '2', '2', 'Prabu', 'Programming manager', 30000.00, 1, 0.00, 15000.00, 'Madipakkam Chennai', 'Madipakkam Chennai', '2506120014', '1', '1', 'upload_files/candidate_tracker/92570184002_DocumentfromDhanesh.pdf', NULL, '1', '2025-06-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-06-12 02:50:04', 1, '2025-06-12 02:56:46', 0, NULL, 1),
(25328, 'D.vinoth', '14', '9629036646', '6383459737', 'Vinothdhakshna12@gmail.com', '2001-06-12', 24, '2', '2', 'Dhakshana moorthi a', 'Teacher', 30000.00, 2, 0.00, 300000.00, 'Arakkonam', 'Chennai arambakkam', '2506120015', '1', '1', 'upload_files/candidate_tracker/71214518968_Vinoth.Dresume.pdf', NULL, '1', '2025-06-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-12 02:55:39', 154, '2025-06-13 11:06:06', 0, NULL, 1),
(25329, 'YAMINI PRIYA S', '6', '7449037219', '', 'yaminipriya864@gmail.com', '2004-07-28', 20, '2', '2', '8000', 'Cooly', 8000.00, 1, 0.00, 17000.00, 'Manali', 'Manali', '2506130001', '1', '1', 'upload_files/candidate_tracker/23126946981_Yaminipriyaresume.pdf', NULL, '1', '2025-06-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-13 02:45:36', 154, '2025-06-13 11:20:06', 0, NULL, 1),
(25330, 'LOKESH P', '6', '9994828160', '9500600373', 'lokeychanlokeychan@gmail.com', '2003-10-12', 21, '2', '2', 'PERUMAL', 'Daily wages', 6000.00, 1, 0.00, 15000.00, '177/M, TNHB, Arakkonam.', 'Chennai', '2506130002', '27', '1', 'upload_files/candidate_tracker/86002274274_LOKESHRESUME.pdf', NULL, '1', '2025-06-13', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basick skill and not intersted voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-13 05:06:20', 154, '2025-06-13 12:13:48', 0, NULL, 1),
(25331, 'Monish B', '6', '9629620468', '', '14monishb07@gmail.com', '2002-07-14', 22, '2', '2', 'Balasundaram', 'Cleark', 20000.00, 1, 0.00, 15000.00, 'Arakkonam', 'Egmore', '2506130003', '27', '1', 'upload_files/candidate_tracker/20695294774_Cvmonish.pdf', NULL, '1', '2025-06-13', 0, '', '3', '59', '2025-06-16', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok can be trained in our roles will check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2025-06-16', 1, '2025-06-13 05:06:22', 60, '2025-06-14 06:31:29', 0, NULL, 1),
(25332, 'Vishnu', '6', '9080559796', '7448507228', 'vishnu30102003@gmail.com', '2003-10-30', 21, '2', '2', 'B. Palani', 'Carpenter', 10000.00, 1, 15000.00, 20000.00, 'Madhavaram', 'Madhavaram', '2506130004', '1', '2', 'upload_files/candidate_tracker/3195502915_vishnucv.pdf', NULL, '1', '2025-06-13', 0, '', '3', '59', '2025-06-19', 204000.00, '', '3', '2025-07-30', '1', 'Communication Ok Can be trained in our roles will check in training', '5', '1', '4', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1070', '5151', '2025-06-19', 1, '2025-06-13 05:08:28', 104, '2025-06-18 06:56:31', 0, NULL, 1),
(25333, 'PRAVEEN KUMAR', '13', '7904845044', '', 'praveenrmd1235@gmail.com', '2003-08-02', 21, '2', '2', 'Siva Kumar', 'None', 150000.00, 1, 0.00, 300000.00, 'Keelakarai', 'Keelakarai', '2506130005', '1', '1', 'upload_files/candidate_tracker/40031647918_PraveenResume2.pdf', NULL, '1', '2025-06-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-13 05:10:24', 154, '2025-06-23 11:53:13', 0, NULL, 1),
(25334, 'Bala KRISHNAN', '31', '9500404373', '', 'balakrish6654@gmail.com', '1996-09-20', 28, '3', '2', 'geetha', 'Accountant', 500000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2506130006', '', '1', 'upload_files/candidate_tracker/65160989853_BalaKrishnanMReactfr.pdf', NULL, '1', '2025-06-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-13 05:14:12', 1, '2025-06-13 05:27:30', 0, NULL, 1),
(25335, 'Manigandan pannerselvam', '6', '6381436506', '', 'mp7884574@gmail.com', '2004-04-05', 21, '2', '2', 'P revathi', 'Housewife', 10000.00, 0, 0.00, 18000.00, 'Kanchipuram', 'Kanchipuram', '2506130007', '1', '2', 'upload_files/candidate_tracker/18625938614_manikandanp.pdf', NULL, '1', '2025-06-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-06-13 05:19:07', 154, '2025-06-13 11:50:45', 0, NULL, 1),
(25336, 'Yuvaraj S', '23', '9342821989', '', 'yuviyuvaraj1236@gmail.com', '2003-10-01', 21, '2', '2', 'Sankar', 'Labour', 16000.00, 0, 0.00, 15000.00, 'Arakkonam', 'Arakkonam', '2506130008', '1', '1', 'upload_files/candidate_tracker/77975948913_SYUVARAJCTS.pdf', NULL, '1', '2025-06-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-13 05:25:55', 154, '2025-06-13 11:05:44', 0, NULL, 1),
(25337, 'BHARATHI SR', '6', '7548849059', '', 'srbharathi22@gmail.com', '1999-07-08', 25, '2', '2', 'Sarasu', 'Banking', 150000.00, 1, 17895.00, 200000.00, 'VILLUPURAM', 'Chennai', '2506130009', '1', '2', 'upload_files/candidate_tracker/30662877452_RESUME2.pdf', NULL, '3', '2025-06-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-13 05:26:57', 154, '2025-06-13 12:24:02', 0, NULL, 1),
(25338, 'ajay.', '6', '8148892923', '9840737948', 'ajayhari139@gmail', '2004-11-26', 20, '2', '2', 'hari', 'b.com', 26000.00, 1, 0.00, 18.00, 'chennai', 'chennai', '2506130010', '1', '1', 'upload_files/candidate_tracker/12178505916_DocScannerJun820251133AM.pdf', NULL, '3', '2025-06-16', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good also he is not interacting much more in the interview process.then he is shot temper', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-06-13 05:45:42', 154, '2025-06-16 03:42:02', 0, NULL, 1),
(25339, 'M.AKBAR BASHA', '5', '9176955125', '9003191855', 'akbarbasha302302@gmail.com', '1998-11-27', 26, '2', '1', 'Shahanas', 'House wife', 25000.00, 0, 25000.00, 27000.00, 'Chennai', 'Chennai', '2506130011', '1', '2', 'upload_files/candidate_tracker/71462853733_abbunew.pdf', NULL, '1', '2025-06-13', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for Rm role \n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1005', '', '55656', '55557', '1970-01-01', 1, '2025-06-13 05:57:24', 154, '2025-06-13 01:24:20', 0, NULL, 1),
(25340, 'Thanish Mohamed K', '13', '9597808966', '', 'thanishmohamed3110@gmail.com', '2004-10-31', 20, '2', '2', 'Kadar Maideen', 'Wager', 10000.00, 2, 0.00, 400000.00, 'Tirunelveli', 'Tirunelveli', '2506130012', '1', '1', 'upload_files/candidate_tracker/70972766213_thanishresume.pdf', NULL, '1', '2025-06-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-06-13 06:23:25', 154, '2025-06-16 05:09:58', 0, NULL, 1),
(25341, 'Nandhini V', '6', '8056140206', '9790809860', 'nandhinivs209@gmail.com', '2004-12-20', 20, '2', '2', 'Vadivel C', 'Carpenter', 35000.00, 1, 0.00, 18000.00, 'T.Nagar', 'T.Nagar', '2506130013', '1', '1', 'upload_files/candidate_tracker/3276495163_NandhiniResume1.pdf', NULL, '1', '2025-06-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-13 06:35:22', 154, '2025-06-13 01:25:26', 0, NULL, 1),
(25342, 'Srinivas', '6', '6379926043', '9940160245', 'sreenee2905@gmail.com', '2004-05-29', 21, '2', '2', 'Arul. K', 'Car driver', 20000.00, 1, 0.00, 15000.00, 'No. 75, b/kalyanapuram,vyasarpadi, chennai-600039', 'No. 23,sundaram 6th Street,vyasarpadi, chennai -39', '2506130014', '1', '1', 'upload_files/candidate_tracker/93276666922_CVSRINIVASRESUME.pdf', NULL, '1', '2025-06-14', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-13 06:54:06', 154, '2025-06-14 05:22:52', 0, NULL, 1),
(25343, 'Barkathbee.H', '6', '9840667793', '', 'barkathhayath@gmail.com', '1997-10-31', 27, '2', '1', 'Hayath Basha.J', 'Bussiness', 180000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2506130015', '1', '1', 'upload_files/candidate_tracker/5855005366_BarkathbeeResume2.pdf', NULL, '1', '2025-06-16', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and perfomance is good.but she is married also she is expecting less schedule time.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-06-13 07:05:39', 154, '2025-06-16 04:55:21', 0, NULL, 1),
(25344, 'Sakthivel l', '6', '9944670878', '9944670877', 'vel90072@gmail.com', '2010-06-13', 0, '2', '2', 'Laxmikanthan', 'Weaving', 30000.00, 3, 0.00, 16000.00, 'Vellore', 'Thambaram', '2506130016', '1', '1', 'upload_files/candidate_tracker/72724339372_Sakthivel1.pdf', NULL, '1', '2025-06-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-13 07:32:29', 154, '2025-06-13 01:26:44', 0, NULL, 1),
(25345, 'shalini lakshmi', '6', '6381300133', '8838456949', 'shalinilakshmi.akm@gmail.com', '2001-12-30', 23, '2', '2', 'rani', 'house wife', 20000.00, 0, 0.00, 300000.00, 'arakkonam', 'bengaluru', '2506130017', '49', '1', 'upload_files/candidate_tracker/33280024291_Shalini.SResume1.pdf', NULL, '2', '2025-06-14', 0, '', '3', '59', '2025-06-16', 204000.00, '', '5', '1970-01-01', '2', 'Communication Ok Fresher for our roles need to train and check in our profile family need is there', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '2025-06-16', 1, '2025-06-13 07:52:06', 60, '2025-06-14 06:33:40', 0, NULL, 1),
(25346, 'Akash M', '4', '6379990128', '', 'akashmanivannan6@gmail.com', '2004-06-03', 21, '3', '2', 'Manivannan', 'Farmer', 12000.00, 1, 0.00, 18000.00, 'Kumbakonam', 'Chennai Thiruvanmiyur', '2506130018', '', '1', 'upload_files/candidate_tracker/45415441366_AkashM.pdf', NULL, '1', '2025-06-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-13 08:11:46', 1, '2025-06-13 08:17:42', 0, NULL, 1),
(25347, 'Sudharsan M', '4', '7904988146', '', 'sudharsanm535@gmail.com', '2003-02-08', 22, '3', '2', 'Manikandan', 'Farmer', 12000.00, 1, 0.00, 18000.00, 'Thanjavur', 'Thiruvaanmiyur,chennai', '2506130019', '', '1', 'upload_files/candidate_tracker/6420737259_SudharsanBsccs.pdf', NULL, '1', '2025-06-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-13 08:12:22', 1, '2025-06-13 08:17:47', 0, NULL, 1),
(25348, 'Roopa', '6', '7483439788', '9916566100', 'roopasiva5@gmail.com', '1992-06-22', 32, '2', '1', 'Sivakumar redyy', 'Draftsman', 400000.00, 2, 300000.00, 400000.00, 'Bangalore', 'Wilson garden', '2506130020', '49', '2', 'upload_files/candidate_tracker/90632210207_RoopaD.pdf', NULL, '1', '2025-06-14', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She has expecting high ctc she doesnxquott have  core related experience and sustainability its very doubt', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-06-13 09:46:24', 154, '2025-06-14 04:56:51', 0, NULL, 1),
(25349, 'Vishwam', '23', '8248886357', '9344736798', 'vishwavks08@email.com', '2002-09-27', 22, '2', '2', 'Senthilkumar', 'Painter', 10000.00, 1, 12000.00, 16000.00, 'East vanjiamman Kovil Street karur', 'Chennai', '2506130021', '1', '2', 'upload_files/candidate_tracker/30856822947_VISHWAM1.pdf', NULL, '1', '2025-06-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-13 10:12:23', 154, '2025-06-19 11:53:00', 0, NULL, 1),
(25350, 'Joash Earnest', '23', '7448705939', '9710753808', 'joashearnest@gmail.com', '2000-05-15', 25, '2', '2', 'lawrence david', 'marketing', 100000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2506130022', '1', '1', 'upload_files/candidate_tracker/5633025482_Joashresume.pdf', NULL, '1', '2025-06-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-13 11:26:04', 154, '2025-06-21 12:21:37', 0, NULL, 1),
(25351, 'Priyadharshini', '6', '9840650385', '7200162406', 'priyadharshinisaminathan09@gmail.com', '2004-11-09', 20, '2', '2', 'Rajeswarai', 'Provision store', 10000.00, 1, 0.00, 15000.00, '80/56 vsv prathma apartments 1st floor F2 block', '80/56 vsv prathma apartments 1st floor F2 block', '2506130023', '1', '1', 'upload_files/candidate_tracker/38217669030_downloadresume141.pdf', NULL, '1', '2025-06-16', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'voice too low... Not opening up a lot.. not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-13 01:15:28', 104, '2025-06-17 01:27:59', 0, NULL, 1),
(25352, 'Abitha', '6', '9751660317', '9786952317', 'abithadhamodharan2002@gmail.com', '2001-11-08', 23, '2', '2', 'D. Lakshmi', 'Sanitation worker', 12000.00, 2, 0.00, 20000.00, 'Thiruvannamalai', 'Chennai', '2506130024', '1', '1', 'upload_files/candidate_tracker/40090638493_abitha.pdf', NULL, '1', '2025-06-14', 0, '', '3', '59', '2025-06-16', 174000.00, '', '5', '1970-01-01', '2', 'Communication Ok career gap doing B.ED 5050 for our roles will check and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '2025-06-16', 1, '2025-06-13 01:30:29', 60, '2025-06-14 06:36:58', 0, NULL, 1),
(25353, '', '0', '9786951988', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506130025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-13 01:31:21', 0, NULL, 0, NULL, 1),
(25354, '', '0', '7200640148', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506130026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-13 02:16:25', 0, NULL, 0, NULL, 1),
(25355, '', '0', '9629590368', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506130027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-13 03:11:17', 0, NULL, 0, NULL, 1),
(25356, '', '0', '9884414033', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506130028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-13 03:47:13', 0, NULL, 0, NULL, 1),
(25357, 'Sakkilahemd A', '23', '7200477616', '9884882010', 'Sakkilahmeduxi@gmail.com', '2002-08-16', 22, '6', '2', 'Shanaz', 'Currently im doing freelancing', 16000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2506140001', '', '1', 'upload_files/candidate_tracker/83244474035_SAKKIL1.pdf', NULL, '1', '2025-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-14 05:47:08', 1, '2025-06-14 05:53:22', 0, NULL, 1),
(25358, 'Santhosh Kumar S', '6', '6374216192', '', 'santhkumar767@gmail.com', '2002-05-14', 23, '2', '2', 'Sakthivel N', 'Grocery Store Owner', 20000.00, 1, 0.00, 220000.00, 'Aranthangi, Pudukkottai', 'Kodambakkam, Chennai', '2506140002', '1', '1', 'upload_files/candidate_tracker/66804420728_SanthoshkumarEmailsanthkumar767gmail.com.pdf', NULL, '1', '2025-06-14', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'candidate not attend the second round', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-14 06:02:30', 104, '2025-06-14 05:38:33', 0, NULL, 1),
(25359, '', '0', '7401042491', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506140003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-14 09:08:01', 0, NULL, 0, NULL, 1),
(25360, '', '0', '7972077904', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506140004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-14 10:43:44', 0, NULL, 0, NULL, 1),
(25361, 'vishva', '6', '9344117710', '', 'vishva.inbox@gmai.com', '2001-07-01', 23, '2', '2', 'Chihra', 'House wife', 25.00, 1, 0.00, 18000.00, 'Ambattur', 'Ambattur', '2506150001', '1', '1', 'upload_files/candidate_tracker/87096476653_CopyofCopyofNavyBlueandBlackProfessionalResume1.pdf', NULL, '3', '2025-06-16', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate voice is not proper and looking for customer support max... thinking a lot for target and pressure.. will not sustain in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-15 11:45:44', 154, '2025-06-16 03:40:28', 0, NULL, 1),
(25362, 'Koushik', '6', '7200483820', '9941630141', 'koushikkoushik1511@gmail.com', '2003-11-15', 21, '2', '2', 'J.ramesh', 'Airport supervisor', 25.00, 1, 0.00, 20000.00, '5/10-46 st.thomas mount Chennai -600016', '5/10-46 st.thomas mount Chennai -600016', '2506160001', '1', '1', 'upload_files/candidate_tracker/4284574862_koushikresumepdf20250616100849.pdf', NULL, '1', '2025-06-16', 0, '', '3', '59', '2025-06-19', 204000.00, '', '3', '2025-06-21', '2', 'Communication Ok Can be trained in our roles will check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', '5151', '2025-06-19', 1, '2025-06-16 04:28:03', 60, '2025-06-18 05:10:36', 0, NULL, 1),
(25363, '', '0', '9629560338', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506160002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-16 04:29:33', 0, NULL, 0, NULL, 1),
(25364, 'Bharath R', '6', '8939360887', '6308854441', 'b24930312@gmail.com', '2005-04-29', 20, '2', '2', 'Radhakrishnan K', 'milk business', 74000.00, 1, 0.00, 16000.00, 'chennai', 'Triplicane', '2506160003', '1', '1', 'upload_files/candidate_tracker/24228312109_BHARATHRESUME.pdf', NULL, '3', '2025-06-16', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good also he is not interacting much more in the interview process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-06-16 04:30:44', 154, '2025-06-16 12:42:59', 0, NULL, 1),
(25365, '', '0', '9025854462', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506160004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-16 04:46:18', 0, NULL, 0, NULL, 1),
(25366, '', '0', '9597428842', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506160005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-16 05:56:03', 0, NULL, 0, NULL, 1),
(25367, 'THAMIZHAN. C', '6', '9345400976', '9655936569', 'Thamizhandaa66@gmail.com', '2003-03-31', 22, '2', '2', 'M.chinnathambi', 'Farmer', 18000.00, 1, 0.00, 20000.00, '148,amman kollai medu,Kallakurichi-605751', 'Palani Andavar Koil St, Vadapalani, Chennai,600026', '2506160006', '1', '1', 'upload_files/candidate_tracker/1451752492_Thamizhan.pdf', NULL, '1', '2025-06-17', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-06-16 06:17:12', 154, '2025-06-17 10:40:30', 0, NULL, 1),
(25368, 'Parthiban T', '6', '8939019178', '9514589431', 't.parthi402@gmail.com', '1997-12-22', 27, '1', '2', 'Thirumal S', 'Shop keeper', 50000.00, 1, 0.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2506160007', '', '2', 'upload_files/candidate_tracker/6156872192_parthibannew.docx', NULL, '1', '2025-06-16', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-06-16 06:49:43', 154, '2025-06-16 04:58:33', 0, NULL, 1),
(25369, 'Tejaswini k', '6', '9901139460', '8618943845', 'ktejaswini728@gmail.com', '2001-04-10', 24, '2', '2', 'S veena', 'House wife', 25000.00, 1, 27000.00, 32000.00, 'Shivamogga', 'Bommanahalli', '2506160008', '1', '2', 'upload_files/candidate_tracker/61431998551_Tejaswini.kcv14pdf1.pdf', NULL, '1', '2025-06-16', 0, '', '3', '59', '2025-06-23', 276000.00, '', '5', '1970-01-01', '1', 'Will check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55671', '55555', '2025-06-23', 1, '2025-06-16 07:14:18', 60, '2025-06-22 06:18:36', 0, NULL, 1),
(25370, 'Navinsri Pugazhendhi', '6', '8939782854', '9884087949', 'nsri57389@gmail.com', '2003-02-20', 22, '2', '2', 'Pugazhendhi', 'Shopkeeper', 10000.00, 1, 14000.00, 14000.00, 'Kancheepuram', 'Kancheepuram', '2506160009', '1', '2', 'upload_files/candidate_tracker/18654778544_Untitleddocument.pdf', NULL, '1', '2025-06-16', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'worked in capital honda for 5 months. Got relieved last year june month after that not even try any job... candidate looks very childish will not sustain our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55605', '55566', '1970-01-01', 1, '2025-06-16 07:15:47', 154, '2025-06-16 03:39:03', 0, NULL, 1),
(25371, 'V.Archana', '6', '6383866160', '7094546617', 'Ajiiv@gmail.com', '2004-09-24', 20, '2', '2', 'Velmurugan', 'Realistate', 12000.00, 1, 0.00, 16000.00, '23 pillaiyar Kovil Street Thanikalampattu', '10 ,3th karani garden near West saidapet', '2506160010', '1', '1', 'upload_files/candidate_tracker/93069343227_Archanaresume.pdf.pdf', NULL, '1', '2025-06-16', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good also she is not interacting much more in the interview process.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-06-16 07:16:59', 154, '2025-06-16 03:43:36', 0, NULL, 1),
(25372, 'Ayisha Mariyam M S', '6', '9043775254', '9841155538', 'ayishamariyam29@gmail.com', '2005-03-29', 20, '2', '2', 'D Mohammed Sulthan', 'Hardware Staff', 12000.00, 1, 0.00, 16000.00, '5/2,Meenambal Nagar,3rd Street,Korukkupet', '5/2,Meenambal Nagar,3rd Street,Korukkupet', '2506160011', '1', '1', 'upload_files/candidate_tracker/47437419791_Resume.pdf', NULL, '1', '2025-06-16', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is Little bit Good.Pressure not handle little bit sensitive type.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-06-16 07:17:12', 154, '2025-06-16 04:24:23', 0, NULL, 1),
(25373, '', '0', '8667566762', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-16 07:48:41', 0, NULL, 0, NULL, 1),
(25374, 'Saravanababu', '23', '8939060627', '', 'rsbsaravana@gmail.com', '2001-05-01', 24, '2', '2', 'Ravi', 'Nil', 20000.00, 1, 10000.00, 20000.00, 'MKB Nagar vyasarpadi Chennai', 'MKB Nagar vyasarpadi Chennai', '2506160013', '1', '2', 'upload_files/candidate_tracker/32786836704_A415.pdf', NULL, '1', '2025-06-17', 7, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-16 08:30:24', 154, '2025-06-17 11:11:25', 0, NULL, 1),
(25375, '', '0', '8610268483', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506160014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-16 09:31:14', 0, NULL, 0, NULL, 1),
(25376, '', '0', '8248575769', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506160015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-16 10:04:10', 0, NULL, 0, NULL, 1),
(25377, 'Rohini.s', '4', '8925429956', '6374612120', 'rohinimanju2004@gmail.com', '2004-03-10', 21, '5', '1', 'Jabakumar', 'Interior designer', 30000.00, 1, 0.00, 17000.00, 'Porur', 'Porur', '2506160016', '', '1', 'upload_files/candidate_tracker/40706622401_PDFGallery20250610134643.pdf', NULL, '1', '2025-06-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-16 11:04:53', 1, '2025-06-16 12:23:12', 0, NULL, 1),
(25378, 'Karventhan', '23', '8072792588', '9487142040', 'karventhan.uiux@gmail.com', '2001-10-25', 23, '2', '2', 'rajendran', 'business', 50000.00, 1, 2.40, 3.40, 'dindigul', 'chennai', '2506160017', '1', '2', 'upload_files/candidate_tracker/3174368046_Karventhanresume.pdf', NULL, '1', '2025-06-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-16 11:11:34', 154, '2025-06-21 12:22:18', 0, NULL, 1),
(25379, 'umesh s', '6', '6369294416', '9597091329', 'umeshsiv13@gmail.com', '2003-01-13', 22, '2', '2', 'gomathi', 'custo supp', 40000.00, 1, 25000.00, 30000.00, 'kattupakkam', 'kattupakkam', '2506160018', '1', '2', 'upload_files/candidate_tracker/38619370158_UmeshSResume1.pdf', NULL, '1', '2025-06-17', 1, '', '3', '59', '2025-06-19', 216000.00, '', '5', '1970-01-01', '1', 'Have exp in calling but not in sales Can be trained in our roles and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55666', '5151', '2025-06-19', 1, '2025-06-16 12:07:50', 60, '2025-06-18 05:18:56', 0, NULL, 1),
(25380, 'aravinth raja', '6', '9342829408', '7338929408', 'munnabalaji98@gmail.com', '2003-12-09', 21, '2', '2', 'parveen', 'customer support', 40000.00, 1, 25000.00, 30000.00, 'anna nagar', 'iyyapathangal', '2506170001', '1', '2', 'upload_files/candidate_tracker/86178291826_AravithRajanewresume.docx', NULL, '1', '2025-06-17', 1, '', '3', '59', '2025-06-19', 216000.00, '', '5', '1970-01-01', '1', 'Communication Ok have exp in calling but not in sales location too long will check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1070', '5151', '2025-06-19', 1, '2025-06-17 05:48:38', 60, '2025-06-18 05:12:07', 0, NULL, 1),
(25381, 'S Varshini', '6', '8680919165', '', 'varshini.s199505@gmail.com', '2005-02-17', 20, '2', '2', 'G saravanan', 'Driver', 100000.00, 1, 0.00, 18000.00, 'Meenambakkam', 'Meenambakkam', '2506170002', '1', '1', 'upload_files/candidate_tracker/18962579486_CV2025053022113447.pdf', NULL, '1', '2025-06-17', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also in her profile she mentioned experiance in SBI Life but she does not pitch in her old process.sustsainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-06-17 05:54:05', 154, '2025-06-17 01:10:04', 0, NULL, 1),
(25382, 'Nandha Kumar', '23', '9566296515', '8838672024', 'nandhakumar.h05@gmail.com', '2001-03-15', 24, '2', '2', 'D.Hari krishnan', 'Construction', 20000.00, 0, 300000.00, 350000.00, 'Chennai', 'Chennai', '2506170003', '1', '2', 'upload_files/candidate_tracker/50718681823_NandhaKumar.pdf', NULL, '1', '2025-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-06-17 05:56:04', 1, '2025-06-17 08:36:40', 0, NULL, 1),
(25383, 'Abish jose', '6', '7550185563', '9080422093', 'abishjose123@gmail.com', '2000-10-16', 24, '1', '2', 'Jose k g', 'Sals', 156000.00, 1, 156000.00, 210000.00, 'Chennai eranavoor', 'Chennai eranavoor', '2506170004', '', '2', 'upload_files/candidate_tracker/91885633650_Abish.J.pdf', NULL, '1', '2025-06-17', 15, 'P1404', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is little bit ok.but activeness is very less.also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-06-17 06:05:06', 154, '2025-06-17 12:10:48', 0, NULL, 1),
(25384, 'VENKAT RAMAN R S', '6', '9600955826', '9344308533', 'venkatsakthivel21@gmail.com', '2010-06-17', 0, '3', '2', 'R Sakthivel', 'Auto Driver', 1000.00, 1, 0.00, 25000.00, 'Kilpauk', 'Kilpauk', '2506170005', '', '1', 'upload_files/candidate_tracker/30027306088_CV2025053021500138.pdf', NULL, '1', '2025-06-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-17 06:12:28', 154, '2025-06-17 01:17:44', 0, NULL, 1),
(25385, 'Bhavani Raja', '6', '9894442380', '', 'bhavaniraja85@gmail.com', '2003-09-30', 21, '2', '2', 'Parents', 'Tele calling', 20000.00, 1, 0.00, 25.00, 'Cuddalore', 'Thuraipakkam', '2506170006', '1', '1', 'upload_files/candidate_tracker/83717228234_Resume..BhavaniRaja.pdf', NULL, '1', '2025-06-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-17 06:32:13', 154, '2025-06-17 03:31:11', 0, NULL, 1),
(25386, 'safrin safeena', '4', '8122756901', '', 'safrinsafeena1911@gmail.com', '2004-11-19', 20, '5', '2', 'Sathik batcha', 'Supervisor', 45000.00, 3, 0.00, 18000.00, 'chennai', 'chennai', '2506170007', '', '1', 'upload_files/candidate_tracker/41731088203_SafrinSafeenaresume.pdf', NULL, '3', '2025-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '5', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-17 07:14:11', 1, '2025-06-17 07:24:21', 0, NULL, 1),
(25387, '', '0', '6382022416', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506170008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-17 10:38:57', 0, NULL, 0, NULL, 1),
(25388, '', '0', '9042700299', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506170009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-17 11:46:44', 0, NULL, 0, NULL, 1),
(25389, '', '0', '8925577286', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506170010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-17 11:53:08', 0, NULL, 0, NULL, 1),
(25390, 'Ananda Kumar', '31', '9942061760', '', 'apjkalam94@gmail.com', '1994-06-10', 31, '2', '1', 'Periyanayagi', 'Govt job', 28000.00, 1, 0.00, 20000.00, 'Thousand lights', 'Thousand lights', '2506170011', '1', '1', 'upload_files/candidate_tracker/45609217866_K.AnandakumarFullstackDeveloper.pdf', NULL, '1', '2025-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-06-17 11:55:19', 1, '2025-06-17 12:30:58', 0, NULL, 1),
(25391, 'Sibi R', '6', '9500311438', '9789975775', 'mrsibirajasekaran987@gmail.com', '2001-08-10', 23, '3', '2', 'Rebecca', 'Working', 20000.00, 0, 25000.00, 28000.00, 'Erode', 'Mogapair West Chennai', '2506170012', '', '2', 'upload_files/candidate_tracker/96228643112_Teamleadoperationresume.pdf', NULL, '1', '2025-06-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-17 12:52:47', 154, '2025-06-18 12:14:03', 0, NULL, 1),
(25392, 'Hansraj P', '31', '6381810834', '', 'hansrajp940@gmail.com', '2000-01-15', 25, '2', '2', 'Kalamani', 'Front end Developer', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2506170013', '1', '1', 'upload_files/candidate_tracker/50575226474_HANSRAJFRONTENDRESUME2023.pdf', NULL, '1', '2025-06-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-06-17 01:22:33', 1, '2025-06-17 01:28:23', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25393, 'shanmuga raj r', '31', '8925430535', '', 'shanmuga13raj@gmail.com', '2002-03-01', 23, '2', '2', 'parent', 'tailor', 25000.00, 1, 0.00, 250000.00, 'tirupur', 'chennai', '2506170014', '1', '1', 'upload_files/candidate_tracker/39599558074_ShanmugarajFrontendDeveloper.pdf', NULL, '1', '2025-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2025-06-17 01:25:39', 1, '2025-06-17 01:44:54', 0, NULL, 1),
(25394, 'vinitha s', '31', '9629719355', '9444646355', 'vinitha1dec2001@gmail.com', '2001-06-17', 24, '2', '2', 'k shanmugam', 'tailor', 25000.00, 1, 0.00, 18000.00, 'tiruppur', 'chennai', '2506170015', '1', '1', 'upload_files/candidate_tracker/99550850854_VINITHA1.pdf', NULL, '1', '2025-06-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, 'H1008', '0', '0', '0', NULL, 1, '2025-06-17 02:36:14', 1, '2025-06-17 02:57:56', 0, NULL, 1),
(25395, '', '0', '8883788688', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506170016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-17 02:38:55', 0, NULL, 0, NULL, 1),
(25396, 'harikrishanan', '5', '7338714089', '', 'harishteejay038@gmail.com', '2001-01-11', 24, '2', '2', 'rajendran', 'business', 100000.00, 1, 22500.00, 25000.00, 'saidapet', 'saidapet', '2506170017', '1', '2', 'upload_files/candidate_tracker/40253464957_RsResume.pdf', NULL, '1', '2025-06-19', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for RM role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55656', '55557', '1970-01-01', 1, '2025-06-17 05:04:02', 154, '2025-06-19 12:10:53', 0, NULL, 1),
(25397, '', '0', '8056835692', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506180001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-18 02:08:17', 0, NULL, 0, NULL, 1),
(25398, 'Sharmila. E', '6', '6379217380', '9345156660', 'esharmila333@gmail.com', '2003-10-17', 21, '2', '2', 'Ezhumalai. S', 'Former', 20000.00, 1, 0.00, 23000.00, 'Villupuram', 'Ayanavaram', '2506180002', '1', '1', 'upload_files/candidate_tracker/88632363314_SHARMILAresume.pdf', NULL, '1', '2025-06-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-18 04:16:09', 154, '2025-06-18 12:12:50', 0, NULL, 1),
(25399, 'Chandralekha A', '6', '7603987840', '8148960341', 'chandralekha2110@gmail.com', '2004-03-05', 21, '2', '2', 'Anandhan', 'Former', 20000.00, 4, 0.00, 25000.00, 'Pombur', 'Pombur', '2506180003', '1', '1', 'upload_files/candidate_tracker/55598814512_CHANDRALEKHAACV1.pdf', NULL, '1', '2025-06-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-18 04:17:26', 154, '2025-06-18 12:12:12', 0, NULL, 1),
(25400, '', '0', '7358627460', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506180004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-18 04:18:53', 0, NULL, 0, NULL, 1),
(25401, 'Anna poorani', '5', '8489494069', '', 'annapooranim235@gmail.com', '2002-04-08', 23, '2', '2', 'Malaisamy', 'Driver', 200000.00, 1, 180000.00, 20000.00, 'Madurai', 'Chennai', '2506180005', '1', '2', 'upload_files/candidate_tracker/61302687827_M.Annapoorani.pdf', NULL, '1', '2025-06-18', 0, '', '1', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1030', '', '55735', '55557', '1970-01-01', 1, '2025-06-18 04:36:54', 154, '2025-06-18 07:11:57', 0, NULL, 1),
(25402, 'JOYCE RUBAVATHY', '6', '7904895434', '', 'rubavathyjoyce@gmail.com', '2004-04-01', 21, '2', '2', 'Vanitha', 'tailor', 25000.00, 0, 16000.00, 15000.00, 'thiruvertiyur', 'thiruvetriyur', '2506180006', '1', '2', 'upload_files/candidate_tracker/18939164_joycerubavathy.docx', NULL, '1', '2025-06-18', 0, '', '3', '59', '2025-06-19', 183000.00, '', '3', '2025-06-20', '2', 'Communication Ok have exp in calling part time loan profile  can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '2025-06-19', 1, '2025-06-18 04:56:50', 60, '2025-06-19 09:53:30', 0, NULL, 1),
(25403, 'Abishek M', '6', '9677167521', '8778693380', 'abishekmalini2002@gmail.com', '2002-08-21', 22, '2', '2', 'Parents', 'Housewife', 27000.00, 3, 27500.00, 28500.00, 'Pulianthope,Chennai', 'Pulianthope, Chennai', '2506180007', '1', '2', 'upload_files/candidate_tracker/46930557529_AbishekManoharanResume1.pdf', NULL, '1', '2025-06-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Pronunciation issues will not sustain in our roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-18 05:27:14', 154, '2025-06-18 01:31:04', 0, NULL, 1),
(25404, 'Mary selsiya j', '5', '6379878716', '7358320625', 'selsiya12345678@gmail.com', '2000-03-08', 25, '2', '2', 'Joseph sp', 'Binder', 12000.00, 1, 26000.00, 30000.00, 'Chennai', 'Chennai', '2506180008', '1', '2', 'upload_files/candidate_tracker/6088545780_DOC20240803WA0010.1.pdf', NULL, '1', '2025-06-18', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-06-18 05:47:47', 154, '2025-06-18 07:12:53', 0, NULL, 1),
(25405, 'yokaa lakshmi', '6', '7338981653', '', 'yokaasaravanan@gmail.com', '2002-09-14', 22, '2', '2', 'saravanan', 'Civil engineer', 20000.00, 1, 20000.00, 25000.00, 'Ashok pillar', 'Ashok pillar', '2506180009', '1', '2', 'upload_files/candidate_tracker/1390686192_YOKAALAKSHMICV.pdf', NULL, '1', '2025-06-18', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good.also her voice is loe and she is not performed in the one to one interview Process interaction', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-06-18 05:47:50', 154, '2025-06-18 01:28:36', 0, NULL, 1),
(25406, 'Sridharshini s', '6', '9489158598', '6381784058', 'Sridharshini001@gamil.com', '2001-06-15', 24, '2', '2', 'K Selvaraj', 'Driver', 20000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2506180010', '1', '2', 'upload_files/candidate_tracker/5513994110_sridharshiniresume.pdf', NULL, '1', '2025-06-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-18 05:48:01', 154, '2025-06-18 01:27:48', 0, NULL, 1),
(25407, 'S.Hema', '6', '6382949039', '', 'hemanila21@gmail.com', '2000-03-16', 25, '2', '2', 'P.Sampath', 'Farmer', 4000.00, 1, 19000.00, 23000.00, 'Nagapattinam', 'Chennai', '2506180011', '1', '2', 'upload_files/candidate_tracker/42354366045_HemaCV1.pdf', NULL, '1', '2025-06-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-06-18 06:20:03', 154, '2025-06-18 01:27:11', 0, NULL, 1),
(25408, '', '0', '7305546363', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506180012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-18 07:06:12', 0, NULL, 0, NULL, 1),
(25409, 'Nancy Edwina E', '11', '9361498790', '8682049110', 'nancyedwina2002@gmail.com', '2002-10-18', 22, '2', '2', 'Ejilane Sagayaraj A', 'PWD work assistant', 80000.00, 0, 0.00, 20000.00, '72,MMG Nagar PK salai karaikal', '72,MMG Nagar PK salai karaikal', '2506180013', '1', '1', 'upload_files/candidate_tracker/29447098272_NancyResume4.pdf', NULL, '2', '2025-05-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-06-18 07:24:05', 104, '2025-06-18 01:09:06', 0, NULL, 1),
(25410, 'Sachin s Mestri', '5', '7619113141', '', 'sachinsmestri1999@gmail.com', '1999-07-18', 25, '2', '2', 'Soma shekarappa', 'Public sector', 300000.00, 2, 0.00, 300000.00, 'Bengaluru', 'Bengaluru', '2506180014', '49', '1', 'upload_files/candidate_tracker/48147977077_CV20250509013003.pdf', NULL, '1', '2025-06-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-18 08:09:35', 1, '2025-06-18 08:14:12', 0, NULL, 1),
(25411, '', '0', '8082498166', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506180015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-18 10:59:08', 0, NULL, 0, NULL, 1),
(25412, 'Gunasekaran.M', '31', '9345621193', '8015421854', 'gunasekaranp9345@gmail.com', '2004-04-15', 21, '3', '2', 'Parameswari', 'Tailor', 12000.00, 1, 0.00, 18000.00, 'Rajapalayam', 'Chennai', '2506180016', '', '1', 'upload_files/candidate_tracker/49165170416_GunasekaranBscmaths2024Fullstackdeveloper.pdf', NULL, '1', '2025-06-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-18 11:59:15', 154, '2025-06-19 10:27:52', 0, NULL, 1),
(25413, '', '0', '6369697478', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506180017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-18 12:00:21', 0, NULL, 0, NULL, 1),
(25414, 'Vageshwaran S', '31', '8056726020', '', 'mail2vageshwaran@gmail.com', '1999-10-27', 25, '2', '2', 'Sivalingam', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'Dharmapuri, Tamilnadu', 'Navalur, Chennai', '2506180018', '1', '1', 'upload_files/candidate_tracker/36262664931_VageshwaranResume.pdf', NULL, '1', '2025-06-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-18 01:20:31', 154, '2025-06-19 05:53:51', 0, NULL, 1),
(25415, 'Domesh r', '6', '6383389266', '9655142178', 'rdomeshraja@gmail.com', '2004-10-12', 20, '2', '2', 'Raja p', 'Painter', 72000.00, 1, 0.00, 18000.00, '199, kamatchi nagar vaiyaoor Kanchipuram', 'Ms mansion, triplicane Chennai', '2506180019', '1', '1', 'upload_files/candidate_tracker/92320838203_DomeshResume2025.pdf', NULL, '1', '2025-06-19', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-18 01:25:58', 154, '2025-06-19 12:53:02', 0, NULL, 1),
(25416, '', '0', '8122980456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506180020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-18 01:35:58', 0, NULL, 0, NULL, 1),
(25417, '', '0', '8925958691', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506180021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-18 01:45:18', 0, NULL, 0, NULL, 1),
(25418, 'Nikitha malaiarasi j', '6', '7305032844', '', 'jnikithamalaiarasi@gmail.com', '2004-11-12', 20, '1', '2', 'Jayraj.v', 'Kulli', 13000.00, 1, 0.00, 15000.00, '631,19th Street shastri Nagar vyasarpadi', '631,19th Street shastri nagar vyasarpadi', '2506190001', '', '1', 'upload_files/candidate_tracker/2244576764_NikithaMalaiarasiResume.pdf', NULL, '1', '2025-06-19', 0, 'JOYCE RUBAVATHY', '3', '59', '2025-06-23', 174000.00, '', '3', '2025-07-30', '2', 'Communication ok can check in training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2025-06-23', 1, '2025-06-19 04:48:17', 60, '2025-06-22 06:23:26', 0, NULL, 1),
(25419, 'Prathish', '6', '7305555154', '9941856419', 'Prathishnike@gmail.com', '2005-05-25', 20, '2', '2', 'Ramesh R', 'Driver', 19000.00, 1, 0.00, 17000.00, 'Kilpauk Garden', 'Kilpauk Garden', '2506190002', '1', '1', 'upload_files/candidate_tracker/43053688125_PrathishRResume202506052206130000.pdf', NULL, '1', '2025-06-19', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is good.but he not comfort for timing and out side appointment not suitable.sustainable is doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-06-19 05:43:05', 154, '2025-06-19 12:53:28', 0, NULL, 1),
(25420, '', '0', '8807747298', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506190003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-19 06:16:48', 0, NULL, 0, NULL, 1),
(25421, 'Yuvaraj b shetty', '6', '9986523565', '9620796958', 'yuvaraj.shetty903@gmail.com', '1986-07-01', 38, '2', '2', 'MALLIka b shetty', 'Home maker', 20000.00, 2, 15000.00, 25000.00, 'Jp nagar', 'Jp nagar', '2506190004', '49', '1', 'upload_files/candidate_tracker/26777380926_YuvaraJShettynew.pdf', NULL, '1', '2025-06-19', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No proper communication,lack of knowledge and experience.Sutainability issues . For our profile not suits. ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-06-19 06:40:32', 154, '2025-06-19 05:53:19', 0, NULL, 1),
(25422, 'Revanth K P', '6', '7406935065', '', 'revanthukp1995@gmail.com', '1997-03-26', 28, '2', '2', 'Punyananda', 'No', 20000.00, 1, 20000.00, 20000.00, 'Btm 1 stage', 'Btm 1 stage', '2506190005', '49', '1', 'upload_files/candidate_tracker/17295746124_REVANTHKPResume1.pdf', NULL, '2', '2025-06-19', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Its about yuvaraj shetty reference, same scenerio lack of communications and knowledge about sales . mathematical calculations.', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-06-19 06:50:18', 154, '2025-06-19 05:52:59', 0, NULL, 1),
(25423, 'Nandhini', '6', '9962885351', '9790746277', 'nandhinidivagar1508@gmail.com', '1999-09-16', 25, '1', '1', 'Divagar', 'Pre-sales', 500000.00, 1, 20000.00, 20000.00, 'Old Washermanpet', 'Kolarhur', '2506190006', '', '2', 'upload_files/candidate_tracker/85064866074_NandhiniUpdateResume1.pdf', NULL, '1', '2025-06-19', 1, '77879', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-19 07:38:14', 154, '2025-06-19 05:46:11', 0, NULL, 1),
(25424, 'krish balaji s', '4', '9342681457', '', 'balajivicky8190@gmail.com', '2004-12-07', 20, '2', '2', 'latha', 'tailor', 15000.00, 1, 0.00, 19000.00, 'kattukudipatti', 'choolaimedu', '2506190007', '1', '1', 'upload_files/candidate_tracker/47465824724_KRISHBALAJIRESUME1.docx', NULL, '1', '2025-06-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-06-19 07:46:14', 1, '2025-06-19 09:26:54', 0, NULL, 1),
(25425, 'G. Vaishnavi', '6', '8072946800', '8610358635', 'vyshnavioff@gmail.com', '2003-11-25', 21, '2', '2', 'Gandhi Rajan', 'Business', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2506190008', '1', '1', 'upload_files/candidate_tracker/24299052285_DOC20250610WA0059.1.pdf', NULL, '1', '2025-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up a lot not suitable for our roles\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-19 08:23:36', 154, '2025-06-20 05:50:39', 0, NULL, 1),
(25426, 'Pavithra P', '6', '9363525197', '8637451755', 'pavithra.palanisamy099@gmail.com', '2004-10-09', 20, '2', '2', 'Palanisamy R', 'Sales Man', 240000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2506190009', '1', '2', 'upload_files/candidate_tracker/55900135898_CV2025061201251943.pdf', NULL, '1', '2025-06-20', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1287', '5151', '1970-01-01', 1, '2025-06-19 08:28:50', 154, '2025-06-20 05:24:28', 0, NULL, 1),
(25427, '', '0', '8610358635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506190010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-19 02:24:03', 0, NULL, 0, NULL, 1),
(25428, '', '0', '9361821907', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506200001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-20 04:20:29', 0, NULL, 0, NULL, 1),
(25429, 'P.Manjula', '6', '9789856906', '8925125313', 'mp8271222@gmail.com', '2001-09-16', 23, '2', '2', 'Padmanabhan', 'printing press', 22000.00, 1, 18.00, 20.00, 'No.70/41 mint Subrayalu street', 'No.70/41 mint subraylu street', '2506200002', '1', '2', 'upload_files/candidate_tracker/56751908139_resentmanjuresume.docx', NULL, '1', '2025-06-20', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-06-20 04:55:54', 154, '2025-06-20 12:02:08', 0, NULL, 1),
(25430, 'JEEVANANDHAM C', '23', '9361770468', '', 'jerva26jeeva09jeeva2001@gmail.com', '2001-09-26', 23, '3', '2', 'Chinnasamay', 'Farmer', 15000.00, 0, 0.00, 15000.00, 'Dharmapuri', 'Dharmapuri', '2506200003', '', '1', 'upload_files/candidate_tracker/34476085129_Jeevanandhamcj.pdf', NULL, '1', '2025-06-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-20 05:01:15', 154, '2025-06-20 11:03:04', 0, NULL, 1),
(25431, 'DHURVASAN N', '23', '9345300363', '8015516535', 'dhurvadvdhurvasan@gmail.com', '2001-11-25', 23, '3', '2', 'NANJAPPAN', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Dharmapuri', '2506200004', '', '1', 'upload_files/candidate_tracker/82578704654_DHURVASAN1.pdf', NULL, '1', '2025-06-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-20 05:01:24', 154, '2025-06-20 11:03:49', 0, NULL, 1),
(25432, 'dhanushkumar d', '6', '6379094072', '8870860218', 'dhunushkumar0421@gmail.com', '2003-04-21', 22, '2', '2', 'desaraj', 'tneb', 60000.00, 3, 0.00, 250000.00, 'sivan koil street sattan kuppam pulicat', 'ennore', '2506200005', '1', '1', 'upload_files/candidate_tracker/1992088467_Dhanushcv.pdf', NULL, '1', '2025-06-20', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-06-20 05:03:05', 154, '2025-06-20 12:15:03', 0, NULL, 1),
(25433, 'M. VISWANATHAN', '6', '9363511592', '8489447059', 'viswanathan23597@gmail.Com', '1997-05-23', 28, '2', '2', 'R. MAHALINGAM', 'DRIVER', 20000.00, 1, 14000.00, 18000.00, 'Seethappatti, kurunikulathuppatti poKadavur, karur', 'TNagar,mothilal street, ananda apartment c7,', '2506200006', '1', '2', 'upload_files/candidate_tracker/4426337785_CVVISWA.pdf', NULL, '1', '2025-06-20', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No sustainability fresher for our roles ager around 28 have exp in customer support for an year Multiple career gap no clarity with the job profile he wants to enter.not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-20 05:32:39', 154, '2025-06-20 05:50:29', 0, NULL, 1),
(25434, 'Jagadhishan r', '23', '8838425703', '', 'jagadhishan1@gmail.com', '2003-08-28', 21, '3', '2', 'Father: Raja kannu, mother: banu', 'Father: bank appreiser, mother: house wife', 50000.00, 1, 0.00, 20000.00, 'Vilanthangal road kallakurichi', 'Saidapet chennai', '2506200007', '', '1', 'upload_files/candidate_tracker/22999565538_Jagadhishanuxuidesignerresume.pdf', NULL, '1', '2025-06-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-20 05:36:22', 154, '2025-06-20 11:38:04', 0, NULL, 1),
(25435, '', '0', '8489447059', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506200008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-20 05:46:20', 0, NULL, 0, NULL, 1),
(25436, 'K WAHIDA BEGUM', '5', '8667820261', '9677204924', 'Vaidhuvaidhu230@gmail.com', '2004-11-22', 20, '1', '2', 'KALEEL BASHA', 'WORKING', 40000.00, 2, 28000.00, 30000.00, 'CHENNAI', 'TRIPLICANE', '2506200009', '', '2', 'upload_files/candidate_tracker/83239197416_Wahida.pdf', NULL, '1', '2025-06-20', 0, 'Joyce Rubavathy', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-06-20 05:46:57', 154, '2025-06-20 05:52:56', 0, NULL, 1),
(25437, 'Devaprasath S', '6', '9363989491', '9087099689', 'prasathdeva412@gmail.com', '2004-02-13', 21, '1', '2', 'Sudhakaran', 'Working', 50000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2506200010', '', '2', 'upload_files/candidate_tracker/4401877728_Deva.pdf', NULL, '1', '2025-06-20', 0, 'Joyce Rubavathy', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate have experience of about 7 months in customer care executive but dont have any documents seems to be abscond..... have no clarity of exp... after that worked in steven holidays for 5 months and no documents for that also... seems to be doubt... sustainability doubts so not fit for our role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-20 05:47:17', 154, '2025-06-20 01:46:52', 0, NULL, 1),
(25438, 'Mohamed ameen', '6', '9384797564', '', 'umohamedameen@gmail.com', '2001-08-07', 23, '2', '2', 'Umar Abdullah', 'Tv service', 45000.00, 1, 13000.00, 15000.00, 'Mudukukalathur', 'Pattur mangaduu', '2506200011', '1', '2', 'upload_files/candidate_tracker/10560404479_AmeenResume.pdf2.pdf', NULL, '1', '2025-06-20', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have exp in vizza for 4 months.... candidate is ok but currently doing dental treatment... he was not able to speak constantly for some time have some difficulty in speaking and have idea for digital marketing and IT full stack also ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-20 06:16:58', 154, '2025-06-20 01:47:41', 0, NULL, 1),
(25439, 'K WAHIDA BEGUM', '4', '8777820261', '9677204924', 'Vaidhuvaidhu230@gmail.com', '2004-11-22', 20, '3', '2', 'KALEEL BASHA', 'WORKING', 40000.00, 2, 28000.00, 30000.00, 'CHENNAI', 'TRIPLICANE', '2506200012', '', '2', 'upload_files/candidate_tracker/26436183539_Wahida.pdf', NULL, '1', '2025-06-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-20 06:18:45', 1, '2025-06-20 06:21:42', 0, NULL, 1),
(25440, 'MARGREAT j', '6', '6379606422', '9677241449', 'margreat2005@gmail.com', '2005-04-08', 20, '2', '2', 'Jayaraj .a', 'Daily wages', 10000.00, 1, 0.00, 16000.00, 'Dasspuram Kodambakkam Chennai', 'Dasspuram Kodambakkam Chennai', '2506200013', '1', '1', 'upload_files/candidate_tracker/18589199474_MargreatResume20251.docx', NULL, '1', '2025-06-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is ok.but 5050 profile.nned to check in the training period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-06-20 06:38:48', 154, '2025-06-20 02:31:20', 0, NULL, 1),
(25441, 'Akshaya k', '6', '7200037357', '', 'kakshaya235@gmail.com', '2004-05-18', 21, '2', '2', 'Karunanidhi V', 'Health assistants', 20000.00, 2, 0.00, 17000.00, '19/37 Truspuram kodambakkam Chennai 24', '19/37 Truspuram kodambakkam Chennai 24', '2506200014', '1', '1', 'upload_files/candidate_tracker/75324719636_Resume1.pdf', NULL, '1', '2025-06-20', 0, '', '3', '59', '2025-06-23', 180000.00, '', '5', '1970-01-01', '2', 'Will check in training and confirm', '5', '1', '2', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1287', '5151', '2025-06-23', 1, '2025-06-20 06:38:52', 60, '2025-06-22 06:28:09', 0, NULL, 1),
(25442, 'Carlina.p', '6', '7200240682', '9962429885', 'josprakash765@gmail.com', '2005-04-25', 20, '2', '2', 'Prakash', 'Daily wages', 10000.00, 1, 0.00, 16000.00, 'Kodambakam', 'Kodambakam', '2506200015', '1', '1', 'upload_files/candidate_tracker/55772347127_carlinaResume.pdf', NULL, '1', '2025-06-20', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'need to open a lot.... voice too low... so not fit for this profile', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-20 06:40:11', 154, '2025-06-20 03:10:13', 0, NULL, 1),
(25443, 'Vishnu pathmanaban', '6', '8925039764', '9345009625', 'pdvishnu3@gmail.com', '2003-09-23', 21, '2', '2', 'Pathmanaban', 'Two Wheeler Mechanic', 3.00, 1, 13000.00, 15000.00, 'No 6, 6th street, ulaganadhapuram, ennore ,Chennai', 'No 6, 6th street, ulaganadhapuram, ennore ,Chennai', '2506200016', '49', '2', 'upload_files/candidate_tracker/51031634167_RESUME.pdf', NULL, '1', '2025-08-14', 15, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-06-20 07:17:46', 154, '2025-08-14 02:37:11', 0, NULL, 1),
(25444, 'JAYASURIYA  g n', '6', '8015884618', '9940593234', 'gnjayasuriya955@gmail.com', '2005-02-08', 20, '2', '2', 'G P Narasimmalu', 'Cooli', 96000.00, 2, 0.00, 15000.00, 'Korukkupet', 'Korukkupet', '2506200017', '1', '1', 'upload_files/candidate_tracker/53570399599_suriya.pdf', NULL, '1', '2025-06-21', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-06-20 07:29:35', 154, '2025-06-21 01:23:06', 0, NULL, 1),
(25445, '', '0', '8870055428', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506200018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-20 07:32:58', 0, NULL, 0, NULL, 1),
(25446, 'GAJALAKSHMI S', '6', '6383744061', '6380079768', 'gajalakshmig75@gmail.com', '2004-10-22', 20, '2', '2', 'S. Mala', 'House wife', 15000.00, 1, 0.00, 16000.00, '1/103 post office street thuraipakkam', '1/103 post office street thuraipakkam', '2506200019', '1', '1', 'upload_files/candidate_tracker/25369555673_downloadresume7.pdf', NULL, '1', '2025-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas to profle she prefer too long distance not suitable for our roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-20 07:35:12', 154, '2025-06-20 04:14:20', 0, NULL, 1),
(25447, 'Nandhini.A', '6', '9884738145', '7448475913', 'abinandhuabinandhu382@gmail.com', '2003-04-28', 22, '2', '2', 'Annamalai', 'Bilding worker', 20000.00, 1, 0.00, 16000.00, 'No:10 Dr ambedkar nagar Perungudi', 'No:10 Dr ambedkar nagar Perungudi', '2506200019', '1', '1', 'upload_files/candidate_tracker/26347299409_Untitleddocument3.pdf', NULL, '1', '2025-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not a suitable profile too long distance no basic ideas in the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-20 07:35:12', 154, '2025-06-20 05:51:13', 0, NULL, 1),
(25448, 'J.Harani', '6', '7092114942', '9710326661', 'haranij2@gmail.com', '2004-06-02', 21, '2', '2', 'Priya', 'Home wife', 14000.00, 1, 0.00, 17000.00, 'No.5/4 Subramanian colony street , Adyar', 'No.5/4 Subramanian colony street,Adyar', '2506200020', '1', '1', 'upload_files/candidate_tracker/53033878186_Haraniresume.pdf', NULL, '1', '2025-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles no basic ideas of the profile she prefer to go not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-20 07:35:26', 154, '2025-06-20 05:51:58', 0, NULL, 1),
(25449, 'Abinaya Annamalai', '6', '7871919605', '7871627448', 'abinaveen363@gmail.com', '2004-11-03', 20, '2', '2', 'Sangeetha', 'House wife', 12000.00, 1, 0.00, 16000.00, 'No :10 Dr Ambedkar nagar perungudi', 'No :10 Dr Ambedkar nagar perungudi', '2506200021', '1', '1', 'upload_files/candidate_tracker/23837449797_AbinayaAResume11.pdf', NULL, '1', '2025-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No qulaity profile too long distance not suitable for our roles\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-20 07:35:58', 154, '2025-06-20 05:52:13', 0, NULL, 1),
(25450, 'V.Aarthi', '6', '9940045048', '7358523166', 'aarthiaarthi20668@gmail.com', '2004-12-24', 20, '3', '2', 'E.Veerabathiran -V.Rani', 'Car driver', 50000.00, 1, 0.00, 15000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2506200022', '', '1', 'upload_files/candidate_tracker/87757498977_GreyMinimalistProfessionalResumeDocumentA4202505091936310000.pdf', NULL, '1', '2025-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-20 12:16:32', 1, '2025-06-20 12:19:27', 0, NULL, 1),
(25451, 'Santhosh J', '23', '9345491794', '', 'Santhozz.uiux@gmail.com', '2002-09-23', 22, '2', '2', 'Yasodhai', 'Home maker', 360000.00, 0, 360000.00, 480000.00, 'Manamadurai, Sivaganga District.', 'Hyderabad', '2506210001', '1', '2', 'upload_files/candidate_tracker/56846585983_SanthoshJcomp.resume.pdf', NULL, '1', '2025-06-21', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-21 04:26:16', 154, '2025-06-21 12:22:38', 0, NULL, 1),
(25452, '', '0', '9943210214', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506210002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-21 04:55:50', 0, NULL, 0, NULL, 1),
(25453, 'REVATHY', '6', '8148181371', '9094343348', 'revathyveera3009@gmail.com', '2000-09-30', 24, '2', '2', 'I.Veeravel', 'Clark', 20000.00, 1, 18000.00, 20000.00, 'Puliyandhop', 'Puliyandhop', '2506210003', '1', '2', 'upload_files/candidate_tracker/30490116104_RevathyNewResume2.pdf', NULL, '1', '2025-06-21', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'experince other filed. good skill. move to rajasekar team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-21 05:25:47', 104, '2025-06-21 04:54:31', 0, NULL, 1),
(25454, 'Sakthivel.k', '6', '7305312019', '8489470556', 'sakthivelsmart67@gmail.com', '2004-10-21', 20, '2', '2', 'Uma Mageswari', 'Telecalling', 10000.00, 1, 0.00, 18000.00, '1417 ac block voc nagar Tondirpet chennai - 81', '817 ac block voc nagar Tondirpet chennai -81', '2506210004', '1', '1', 'upload_files/candidate_tracker/32483137807_WhiteMinimalistProfessionalResume2.pdf', NULL, '1', '2025-06-21', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-06-21 05:47:42', 154, '2025-06-21 01:21:34', 0, NULL, 1),
(25455, 'L.PRIYADARSHINI', '11', '8939092593', '9551952438', 'Priyanarayanan232@gmail.com', '2010-06-21', 0, '2', '2', 'M.Lakshmi narayanan', 'Business', 50000.00, 0, 0.00, 4.50, 'No2317, LIG2, TNHB, Avadi', 'No2317, LIG2, TNHB, Avadi', '2506210005', '1', '1', 'upload_files/candidate_tracker/60668747172_Updateresume1.docx', NULL, '1', '2025-06-21', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-06-21 06:22:46', 154, '2025-06-21 01:28:29', 0, NULL, 1),
(25456, 'Rufasstalin B', '23', '7305991994', '8883060755', 'rufasstalin0@gmail.com', '2003-12-18', 21, '2', '2', 'Juli joice B', 'House wife', 20000.00, 1, 8000.00, 25000.00, 'Periyakrishnapuram, Ariyalur', 'Guindy, Chennai', '2506210006', '1', '2', 'upload_files/candidate_tracker/34863863953_RufasstalinResume2.pdf', NULL, '1', '2025-06-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-21 11:26:15', 154, '2025-06-26 09:48:35', 0, NULL, 1),
(25457, 'Jesintha', '6', '6382672110', '9344912570', 'jesinthadivyadharshini@gmail.com', '2000-11-03', 24, '2', '2', 'Latha (mother)', 'House wife', 100000.00, 1, 18000.00, 25000.00, 'Chennai perambur', 'Chennai perambur', '2506210007', '1', '2', 'upload_files/candidate_tracker/83825675151_Jesintha1743237630377.pdf', NULL, '1', '2025-06-21', 1, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-06-21 12:12:29', 154, '2025-06-21 06:28:48', 0, NULL, 1),
(25458, '', '0', '9952061991', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506220001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-22 03:43:25', 0, NULL, 0, NULL, 1),
(25459, 'Gokul lokesh', '23', '6369402100', '9941810056', 'gokul277200@gmail.com', '2002-07-27', 22, '2', '2', 'Lokesh', 'Servier', 18000.00, 1, 8000.00, 17000.00, 'Chennai', 'Chennai', '2506230001', '1', '2', 'upload_files/candidate_tracker/6141405798_Gokuluiuxdesigner.pdf1.pdf', NULL, '1', '2025-06-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-23 05:14:10', 154, '2025-06-23 11:00:06', 0, NULL, 1),
(25460, 'R. HEMANTH KUMAR', '23', '7397494748', '9710208441', 'kingonly2511@gmail.com', '2002-11-25', 22, '2', '2', 'Ramakrishna M', 'Labour', 15000.00, 1, 8000.00, 15000.00, 'chennai', 'chennai', '2506230002', '1', '2', 'upload_files/candidate_tracker/3145924377_hemanthresume2.pdf', NULL, '1', '2025-06-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-23 05:14:56', 154, '2025-06-23 10:57:48', 0, NULL, 1),
(25461, '', '0', '8754916835', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506230003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-23 05:15:17', 0, NULL, 0, NULL, 1),
(25462, 'Ansileena raja', '6', '9360417553', '', 'ansileenaselva@gmail.com', '2003-08-23', 21, '2', '2', 'Raja', 'Real estate business', 25000.00, 1, 0.00, 15000.00, 'Thoothukudi', 'Chennai', '2506230004', '1', '1', 'upload_files/candidate_tracker/49161197964_ANSILEENARFlowCVResume20250206.pdf', NULL, '1', '2025-06-23', 0, '', '3', '59', '2025-06-26', 180000.00, '', '3', '2025-07-31', '1', 'Communication Ok have exp but not a relevant one can giev atry and check in traning', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '2025-06-26', 1, '2025-06-23 05:17:32', 60, '2025-06-24 07:20:57', 0, NULL, 1),
(25463, 'Anthoni Raj.m', '6', '8870730957', '', 'antonymickel100@gmail.com', '2001-08-15', 23, '2', '2', 'Pushparani.M', 'Farmer', 12000.00, 1, 0.00, 16000.00, 'kallakurichi', 'Keelkattalai', '2506230005', '27', '1', 'upload_files/candidate_tracker/78312387858_AnthoniResume.pdf', NULL, '1', '2025-06-23', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication not good, distance long,,,salary exp high, reject the profile\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-06-23 06:00:32', 154, '2025-06-23 04:23:00', 0, NULL, 1),
(25464, 'KISHOTHKUMAR S', '23', '9042987442', '9790097029', 'kishot009@gmail.com', '2000-02-17', 25, '2', '2', 'Shanthi', 'Home maker', 1500000.00, 1, 22000.00, 30000.00, 'Chennai', 'Chennai', '2506230006', '1', '2', 'upload_files/candidate_tracker/84484163771_KishotResumeWG.pdf', NULL, '1', '2025-06-23', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-23 06:13:32', 154, '2025-06-23 11:58:16', 0, NULL, 1),
(25465, 'bakkiammal', '5', '9710961167', '9629807490', 'blessybakkiam@gmail.com', '2002-09-06', 22, '2', '2', 'Narayanan P', 'unemployed', 30000.00, 1, 20000.00, 25000.00, 'chennai', 'chennai', '2506230007', '1', '2', 'upload_files/candidate_tracker/18513911296_BlessyBcomResume.pdf', NULL, '1', '2025-06-23', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1030', '', '55650', '55560', '1970-01-01', 1, '2025-06-23 06:31:03', 154, '2025-06-23 05:31:38', 0, NULL, 1),
(25466, 'UDHAYASURIYA', '6', '8015111429', '6382404460', 'suriyalogavathi@gmail.com', '2002-06-14', 23, '2', '2', 'B.mohan', 'Paint contractor and business', 35000.00, 1, 15000.00, 16000.00, 'No 77 karumariamman Street New washerment', 'No 77 karumariamman street New washerment', '2506230008', '1', '2', 'upload_files/candidate_tracker/76001561728_UDHAYASURIYAPDF.pdf', NULL, '1', '2025-06-23', 0, '', '3', '59', '2025-06-26', 198000.00, '', '3', '2025-06-26', '1', 'Communication Ok have exp in calling but gap is there can give a try and check n training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1070', '5151', '2025-06-26', 1, '2025-06-23 06:34:40', 60, '2025-06-24 07:18:21', 0, NULL, 1),
(25467, 'NARMADHA KUMAR', '6', '9345813399', '8825541902', 'narmadhak7834@gmail.com', '2010-06-23', 0, '2', '2', 'Kumar', 'Daily wages', 20000.00, 1, 2.00, 2.80, 'Dharmapuri', 'Chromepet', '2506230009', '45', '2', 'upload_files/candidate_tracker/32026488058_NARMADHA.K11.pdf', NULL, '1', '2025-06-23', 0, '', '3', '59', '2025-06-30', 240000.00, '', '3', '2025-07-29', '2', 'Communication ok can be trained in our roles need to check in training Selected for FSC/RE roles', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '2025-06-30', 1, '2025-06-23 06:58:59', 60, '2025-07-12 06:49:00', 0, NULL, 1),
(25468, 'Abitha', '6', '7010054618', '9361641690', 'abithasugumar@email.com', '2004-09-07', 20, '2', '1', 'Prakash vimala', 'Hsc', 15000.00, 3, 15000.00, 17000.00, '228 , voc nagar 6th street, pulionthope, Chennai', '228,vocnagar 6th street, pulionthope Chennai', '2506230010', '1', '2', 'upload_files/candidate_tracker/39035250871_ABITHAP.pdf', NULL, '1', '2025-06-23', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-23 07:02:51', 154, '2025-06-23 04:24:54', 0, NULL, 1),
(25469, 'Manikandan prakash', '6', '7010884400', '', 'manidous24@gmail.com', '1997-04-17', 28, '1', '2', 'Prakash', 'Networking', 25000.00, 1, 300000.00, 400000.00, '9/4 thiruvalluvar nagar 1st main road kodungaiyur', '9/4 t.v 1st main road nagar kodungaiyur chennai', '2506230011', '', '2', 'upload_files/candidate_tracker/64444462002_MyResume.pdf', NULL, '1', '2025-06-23', 0, 'Joyce Rubavathy', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-23 07:14:12', 154, '2025-06-23 04:25:30', 0, NULL, 1),
(25470, 'Haren Mariya.X', '6', '9566181304', '8526674285', 'harenmariya018@gmail.com', '2004-10-27', 20, '2', '2', 'Leo Ray', 'Manager', 30000.00, 2, 0.00, 17000.00, 'Kallakurichi', 'Saidapet', '2506230012', '27', '1', 'upload_files/candidate_tracker/17762215800_MariyaResume.pdf', NULL, '1', '2025-06-23', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-06-23 07:18:52', 154, '2025-06-23 04:26:22', 0, NULL, 1),
(25471, 'Manikandan prakash', '6', '7871759530', '7010884400', 'manidous24@gmail.com', '1997-04-17', 28, '1', '2', 'Prakash', 'Networking', 25000.00, 1, 300000.00, 400000.00, '9/4 thiruvalluvar nagar 7th Streetkodungaiyur', '9/4 t.v 1st main road nagar kodungaiyur chennai', '2506230013', '', '2', 'upload_files/candidate_tracker/47350056769_MyResume.pdf', NULL, '1', '2025-06-23', 0, 'Joys', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-23 07:37:22', 154, '2025-06-23 01:34:05', 0, NULL, 1),
(25472, 'Vivek A', '23', '9787217398', '', 'vivekanand1901@gmail.com', '1996-01-19', 29, '2', '2', 'Anand', 'Production Manager in Private company', 150000.00, 1, 259200.00, 450000.00, 'Salem, Tamilnadu', 'Chennai, Tamilnadu', '2506230014', '1', '2', 'upload_files/candidate_tracker/90352733370_VivekUXUI.pdf', NULL, '1', '2025-06-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-23 08:00:35', 154, '2025-06-24 11:48:44', 0, NULL, 1),
(25473, 'Sandhiya', '5', '7397359323', '9566049192', 'sandhiyaramani3014@gmail.com', '2001-01-30', 24, '2', '2', 'Ramani', 'Daily wages', 14000.00, 1, 23000.00, 25000.00, '49/35 kanniyappan gramani Nagar 2nd Street', '49/35 kanniyappan gramani Nagar 2nd Street', '2506230015', '1', '2', 'upload_files/candidate_tracker/41453125076_resume.pdf', NULL, '1', '2025-06-23', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', 'H1030', '', '55650', '55560', '1970-01-01', 1, '2025-06-23 09:43:34', 154, '2025-06-23 05:33:56', 0, NULL, 1),
(25474, '', '0', '8056342540', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506230016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-23 10:07:36', 0, NULL, 0, NULL, 1),
(25475, 'KAZEEM NIZAMUDEEN', '9', '8248088706', '', 'kazeem.nizamudeen@gmail.com', '1982-10-14', 42, '1', '1', 'nil', 'business', 250000.00, 0, 250000.00, 300000.00, 'chennai', 'chennai', '2506230017', '', '2', 'upload_files/candidate_tracker/52853988589_KazeemNizamudeenResume.pdf', NULL, '1', '2025-06-23', 0, '5151', '3', '59', '2025-06-26', 1800000.00, '', '1', '1970-01-01', '1', 'Suresh sir reference joining for VP role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', 'kazeem.nizamudeen@gmail.com', '', '', '', '5151', '5151', '2025-06-26', 1, '2025-06-23 01:16:15', 60, '2025-06-24 02:42:01', 0, NULL, 1),
(25476, 'Ayisha A', '6', '6383266723', '7418273253', 'ayzsha0608@gmail.com', '2000-05-08', 25, '2', '1', 'I.Mohd Mujahidullah', 'Ship chandler', 25000.00, 1, 0.00, 20000.00, 'No 51/23 Angamuthu street Royapettah Chennai 14', 'Angamuthu street Royapettah Chennai 14', '2506230018', '1', '2', 'upload_files/candidate_tracker/23812058779_M.AYISHA.pdf', NULL, '1', '2025-06-24', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'lot of job changes in short period... having 1 yr kid  and expecting holidays in saturday.... sustainability doubts so not fit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-23 02:15:30', 154, '2025-06-24 03:58:49', 0, NULL, 1),
(25477, 'Priyadharshini R', '6', '6374430266', '9003044035', 'priyadharshiniramesh001@gmail.com', '2001-09-03', 23, '2', '2', 'Ramesh', 'Mechanic', 20000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2506230019', '1', '2', 'upload_files/candidate_tracker/34405641561_CV20250605231334521.pdf', NULL, '1', '2025-06-24', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice more... comuunication is good but thinking a lot for target and pressure.... sustainability doubts... so not fit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-23 02:29:21', 154, '2025-06-24 03:33:46', 0, NULL, 1),
(25478, 'vinitha s', '5', '6369078738', '9585758602', 'vinithasanthanam0824@gmail.com', '2000-08-24', 24, '2', '2', 'santhanam m', 'bike mechanic', 20000.00, 1, 25936.00, 25000.00, 'guduvanchery', 'guindy', '2506230020', '1', '2', 'upload_files/candidate_tracker/94248311443_Vinithacurriculumvitae.pdf', NULL, '1', '2025-06-25', 1, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-06-23 04:09:09', 154, '2025-06-25 02:59:09', 0, NULL, 1),
(25479, 'Harish Ragavendran.b', '6', '9150820777', '6382534653', 'harishragavendrandr@gmail.com', '2005-06-10', 20, '2', '2', 'Baskaran', 'Finance manager', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2506230021', '1', '1', 'upload_files/candidate_tracker/35529584827_Document1.pdf', NULL, '1', '2025-06-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-23 06:15:35', 154, '2025-06-24 03:33:14', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25480, '', '0', '9629828508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506240001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-24 03:58:37', 0, NULL, 0, NULL, 1),
(25481, '', '0', '8838946480', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506240002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-24 04:38:56', 0, NULL, 0, NULL, 1),
(25482, 'Mahadevan E', '23', '9787297737', '', 'mahadevanebca@gmail.com', '2004-02-07', 21, '2', '1', 'Elavarasan', 'Farmer', 70000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2506240003', '1', '1', 'upload_files/candidate_tracker/62029909070_UIDesignerM.pdf', NULL, '1', '2025-06-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-24 05:12:47', 154, '2025-06-24 10:49:03', 0, NULL, 1),
(25483, 'KARTHICKRAJA M', '6', '8525854152', '8248832009', 'karthickmathiyalagan2000@gmail.com', '2000-02-15', 25, '2', '2', 'Mathiyalagan K', 'Farmer', 200000.00, 1, 250000.00, 300000.00, 'Attur, Salem', 'Ekkattuthangal, Chennai', '2506240004', '1', '2', 'upload_files/candidate_tracker/97594348709_RESUME001.pdf', NULL, '1', '2025-06-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-06-24 05:32:31', 154, '2025-06-24 03:37:30', 0, NULL, 1),
(25484, 'm chandini', '6', '7558144318', '8124761727', 'mcsonu69@gmail.com', '2003-09-09', 21, '2', '2', 'muneer ali', 'Business', 25000.00, 1, 0.00, 18000.00, 'jafferkhanpet', 'jafferkhanpet', '2506240005', '1', '1', 'upload_files/candidate_tracker/70560328572_M.chandini2.pdf', NULL, '1', '2025-06-24', 0, '', '3', '59', '2025-06-26', 180000.00, '', NULL, '2026-02-10', '2', 'Communication Ok can be trained in our roles and check in traning have 6 months exp in same domain', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '2025-06-26', 1, '2025-06-24 05:38:30', 60, '2025-06-24 07:22:09', 0, NULL, 1),
(25485, 'ABARNA M', '6', '7200917727', '', 'abarna07042002@gmail.com', '2002-04-07', 23, '2', '2', 'T Mani', 'Tailor', 10000.00, 1, 18000.00, 18000.00, 'No 8 Pycrofts nagar Teynampet Chennai - 18', 'No 8 Pycrofts nagar Teynampet Chennai - 18', '2506240006', '1', '2', 'upload_files/candidate_tracker/87789670254_DOC20250313WA0001..pdf', NULL, '1', '2025-06-24', 0, '', '3', '59', '2025-06-26', 198000.00, '', '3', '2025-06-26', '2', 'Communication Ok have exp in calling but different domain verified the documents can give a try in outr roles and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '2025-06-26', 1, '2025-06-24 05:42:38', 60, '2025-06-24 07:23:25', 0, NULL, 1),
(25486, 'KOUSALYA CHINNASWAMY', '6', '7305543586', '9171620501', 'kousalyachinnaswamy@gmail.com', '2000-06-26', 24, '2', '2', 'Kasiammal k', 'House keeping', 10000.00, 3, 18000.00, 20000.00, 'No.1, F1, MRG NAGAR , THORAIPAKKAM, CHENNAI-97', 'No.1, F1, MRG NAGAR , THORAIPAKKAM, CHENNAI-97', '2506240007', '1', '2', 'upload_files/candidate_tracker/56540218816_MyResumeNew2024.pdf', NULL, '1', '2025-06-24', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'worked in textiles sales of about 5 years since college... worked for bajaj finance of almost 2 months in sales... looking for non voice more and doubts for sustainbility', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-24 05:43:31', 154, '2025-06-24 03:26:01', 0, NULL, 1),
(25487, 'dillibabu', '6', '6383411486', '9176740367', 'd429626@gmail.com', '2004-11-05', 20, '2', '2', 'latha', 'housewife', 15000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2506240008', '1', '1', 'upload_files/candidate_tracker/26948915385_Resume.pdf', NULL, '1', '2025-06-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-24 07:09:02', 154, '2025-06-24 03:32:32', 0, NULL, 1),
(25488, 'Dhanush Kumar', '6', '6379943371', '8608375536', 'dhanushleon46@gmail.com', '2003-09-23', 21, '2', '2', 'Siva kumar', 'Painter', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Mount road', '2506240009', '1', '1', 'upload_files/candidate_tracker/6309552860_DhanushKumarResume1.pdf', NULL, '1', '2025-06-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-24 07:09:03', 154, '2025-06-24 03:31:30', 0, NULL, 1),
(25489, 'Ganesh ram meiyappan', '13', '6379050292', '9245720452', 'ramg47060@gmail.com', '2004-07-15', 20, '2', '2', 'Meiyappan', 'Mill employer', 15000.00, 3, 0.00, 300000.00, 'Kovilpatti', 'Chennai', '2506240010', '1', '1', 'upload_files/candidate_tracker/96964782775_BlueandWhiteCleanProfessionalA4Resume3.pdf', NULL, '1', '2025-06-28', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-24 08:07:55', 154, '2025-06-28 12:14:11', 0, NULL, 1),
(25490, 'Deepak karunagaran', '6', '9894363322', '', 'deepakkarunagaran621@gmail.com', '2003-08-05', 21, '2', '2', 'Karunagaran', 'Government employee', 400000.00, 1, 0.00, 18000.00, 'Chennai', 'Koyambedu', '2506240011', '27', '1', 'upload_files/candidate_tracker/59173700666_DEEPAKwalmart.pdf', NULL, '1', '2025-06-24', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-24 08:45:33', 154, '2025-06-24 04:08:57', 0, NULL, 1),
(25491, 'Balaji', '6', '9940576346', '', 'panio.studio.99@gmail.com', '2003-07-26', 21, '2', '2', 'RV Babu', 'Government employee', 300000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2506240012', '27', '1', 'upload_files/candidate_tracker/1525008924_RESUMEBALAJINEW.pdf', NULL, '1', '2025-06-24', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is ok,but he said ,He is very emotional type,Sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-06-24 08:45:44', 154, '2025-06-24 04:07:43', 0, NULL, 1),
(25492, 'THAMARAIPRIYA  a', '6', '7695886420', '9043936189', 'rishapriya972000@gmail.com', '2005-11-23', 19, '2', '2', 'G. Apparaj', 'Fisherman', 8000.00, 5, 0.00, 20000.00, '19.murugan kovil street, mudasal odai. Chidambaram', 'No 2 dhanakodi ammal street Kodambakkam. 600024', '2506240013', '1', '1', 'upload_files/candidate_tracker/3517486077_Thamaraipriya..pdf', NULL, '1', '2025-06-24', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is ok,but he have some health issue Wheezing problem.so sustainable is doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-06-24 09:35:07', 154, '2025-06-24 04:12:48', 0, NULL, 1),
(25493, 'Rakesh Saravanan', '5', '7812850923', '', 'rakeshsaravanan0601@gmail.com', '2002-01-06', 23, '2', '2', 'Saravanan', 'Photographer', 15000.00, 1, 3.00, 4.00, 'No 6 VILLUPURAM ROAD FIRE STATION OPPOSITE GINGEE', 'No 17 22nd cross street Shenoy Nagar Chennai', '2506240014', '1', '2', 'upload_files/candidate_tracker/98614622231_RAKESHResume.pdf', NULL, '1', '2025-06-24', 0, '', '1', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1030', '', '55735', '55557', '1970-01-01', 1, '2025-06-24 09:43:28', 154, '2025-06-24 04:21:50', 0, NULL, 1),
(25494, 'NirmalRaj P', '6', '9345636470', '9791819626', 'nirmal13raj2003p@gmail.com', '2003-06-13', 22, '2', '2', 'Vimala my Mother', 'Housewife', 400000.00, 1, 0.00, 20000.00, 'St.thomas Mount, Chennai', 'St.thomas Mount, Chennai', '2506240015', '1', '1', 'upload_files/candidate_tracker/19694413661_CV20250604120456.pdf', NULL, '1', '2025-06-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-24 12:56:06', 154, '2025-06-26 12:39:06', 0, NULL, 1),
(25495, 'DHARANI', '6', '6383549526', '7092862250', 'dharaniperumal2003@gmail.com', '2003-01-03', 22, '2', '2', 'K.N.perunal', 'Team lead', 60000.00, 2, 18000.00, 20000.00, 'Madhavaram', 'Madhavaram', '2506240016', '1', '2', 'upload_files/candidate_tracker/58174228933_Dharaniresume.pdf', NULL, '1', '2025-06-25', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is ok.but her performance is low bcos she have exp in star health ,but she doesxquott have product knowledge.aslo expected high salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-06-24 12:58:44', 154, '2025-06-25 01:21:13', 0, NULL, 1),
(25496, '', '0', '9884003858', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506240017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-24 04:10:37', 0, NULL, 0, NULL, 1),
(25497, '456134226247', '4', '9003089242', '', 'roopa5792@gmail.com', '1993-09-30', 31, '2', '1', 'Prabu', 'Working', 70000.00, 1, 20500.00, 30000.00, 'Chennai', 'Chennai', '2506250001', '56', '2', 'upload_files/candidate_tracker/24739547553_ReumeRoopa.docx', NULL, '1', '2025-06-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-25 02:14:50', 1, '2025-06-25 02:17:24', 0, NULL, 1),
(25498, 'Madhavan Ganeshan', '13', '9962052707', '', 'mrmaddy442@gmail.com', '2001-04-19', 24, '3', '2', 'Ganeshan. R', 'Daily wages', 15000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2506250002', '', '1', 'upload_files/candidate_tracker/86032827117_MadhavanGResume.pdf', NULL, '1', '2025-06-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-25 04:36:29', 154, '2025-06-25 10:23:41', 0, NULL, 1),
(25499, 'R Naveen Raj', '31', '9094879049', '9080824667', 'Naveen19100@gmail.com', '1996-10-11', 28, '3', '2', 'Arokiamary Malini', 'Sub inspector of police', 50000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2506250003', '', '1', 'upload_files/candidate_tracker/12043537247_NaveenRajResume2025Updated1.pdf', NULL, '1', '2025-06-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-25 04:36:31', 154, '2025-06-25 10:21:11', 0, NULL, 1),
(25500, 'VIJAY V', '13', '9361798477', '9786846208', 'vijayvasd12@gmail.com', '1999-10-12', 25, '3', '2', 'M VEERARAGAVAN', 'Farmer', 3000.00, 1, 0.00, 20000.00, 'Sholighur Ranipet(dt)', 'Chennai Anna nagar', '2506250004', '', '1', 'upload_files/candidate_tracker/84487294165_NewResume11.pdf', NULL, '1', '2025-06-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-25 04:36:45', 154, '2025-06-25 10:29:22', 0, NULL, 1),
(25501, 'Shalini R', '6', '8925481028', '', 'shaliniraju921@gmail.com', '2005-05-29', 20, '2', '2', 'Raju.V', 'Security', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chintadripet', '2506250005', '1', '1', 'upload_files/candidate_tracker/60558498398_ShaliniRResume2.docx', NULL, '1', '2025-06-25', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is ok.but his voice is low also sustainable is doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-06-25 05:13:55', 154, '2025-06-25 01:28:29', 0, NULL, 1),
(25502, 'R Balaji', '23', '8056228651', '9840213811', 'balajiramesh.designer@gmail.com', '2001-08-29', 23, '2', '2', 'Ramesh babu', 'Welder', 40000.00, 1, 17000.00, 25000.00, 'chennai', 'chennai', '2506250006', '1', '2', 'upload_files/candidate_tracker/18419648213_BalajiRameshResume.pdf', NULL, '1', '2025-06-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-25 05:33:20', 154, '2025-06-25 11:20:51', 0, NULL, 1),
(25503, 'Puneeth N', '6', '8147874529', '', 'punith6111@gmail.com', '2003-11-20', 21, '2', '2', 'Neela M', 'House wife', 30000.00, 1, 0.00, 20000.00, 'Bengaluru', 'Bengaluru', '2506250007', '1', '2', 'upload_files/candidate_tracker/93440600177_RESUMEPneethN2003.pdf', NULL, '1', '2025-06-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Suggeted 21k for dm', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55671', '55555', '1970-01-01', 1, '2025-06-25 05:42:43', 154, '2025-06-26 06:23:47', 0, NULL, 1),
(25504, 'Sandhiya.k', '6', '8072585440', '', 'sandysandhiya2090@gmail.com', '2005-09-24', 19, '2', '2', 'Kumar', 'Coli', 10000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2506250008', '27', '1', 'upload_files/candidate_tracker/87260718932_PDFMaker1747316812709.pdf', NULL, '1', '2025-06-25', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'voice too low.... Going for IT classes also and trying for jobs... very reserved need to open up a lot', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-25 05:58:18', 154, '2025-06-25 12:36:37', 0, NULL, 1),
(25505, 'ARTHI D', '6', '9344066868', '7708499165', 'rthistella@gmail.com', '2005-08-19', 19, '2', '2', 'Dhanasekar', 'Vegetable seller', 20000.00, 1, 0.00, 16000.00, 'Tindivanam', 'Chennai', '2506250009', '27', '1', 'upload_files/candidate_tracker/62549687897_ARTHIResumeUpdated.docx', NULL, '1', '2025-06-25', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'having must interest in photoshop and digital marketing... going classes and aking coaching for that also.... thinking a lot for target and pressure... sustainability doubts', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-25 05:58:25', 154, '2025-06-25 12:30:47', 0, NULL, 1),
(25506, 'Sathya T', '6', '6379737939', '7358204445', 'sandhiyas8936@gmail.com', '2005-01-27', 20, '2', '1', 'Karthi', 'Banking analyze', 40000.00, 2, 0.00, 15000.00, 'None', 'Anna Nagar', '2506250010', '1', '1', 'upload_files/candidate_tracker/49563617373_SandhiyaT.docx', NULL, '1', '2025-06-25', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-25 06:14:29', 154, '2025-06-25 02:38:36', 0, NULL, 1),
(25507, 'Swathi.R', '6', '9789699501', '', 'swathirswathi48@gmail.com', '2005-01-29', 20, '2', '2', 'R.Mekala', 'Gardan working', 12000.00, 1, 0.00, 15.00, 'Navalur', 'Navalur', '2506250011', '1', '1', 'upload_files/candidate_tracker/25341504235_RESUME1.docx', NULL, '1', '2025-06-25', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'voice too low and very soft voice.... distance also too long ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-25 06:18:34', 154, '2025-06-25 02:46:17', 0, NULL, 1),
(25508, 'Hemanathan karnan', '13', '7448735780', '', 'hemanathan718@gmail.com', '1998-08-20', 26, '3', '2', 'Karnan p', '2.5 lpa', 20000.00, 2, 0.00, 3.60, 'Chennai', 'Chennai', '2506250012', '', '1', 'upload_files/candidate_tracker/24442977605_Hemanathank.pdf', NULL, '1', '2025-06-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-25 06:18:49', 154, '2025-06-25 12:00:25', 0, NULL, 1),
(25509, 'M.jayashree', '6', '7305546213', '', 'Mjayashree877@gmail.com', '2004-11-17', 20, '2', '2', 'Shanthi.M', 'Hostel work', 12000.00, 1, 0.00, 15.00, 'Thuraipakkam', 'Thuraipakkam', '2506250013', '1', '1', 'upload_files/candidate_tracker/92038759117_RESUME3.docx', NULL, '1', '2025-06-25', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'thinking of distance a lot.... voice too low... very reserved....', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-25 06:18:51', 154, '2025-06-25 02:45:26', 0, NULL, 1),
(25510, '', '0', '6363470920', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506250014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-25 06:22:16', 0, NULL, 0, NULL, 1),
(25511, 'Swetha sundaresan', '6', '9360450165', '', 'sweetyswetha1321@gmail.com', '2004-12-21', 20, '2', '2', 'Saraswathi', 'House keeping', 12000.00, 2, 0.00, 15.00, 'Thuraippakkam', 'Thuraippakkam', '2506250015', '1', '1', 'upload_files/candidate_tracker/112768074_swetharesume2.pdf', NULL, '1', '2025-06-25', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for our roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-25 06:30:14', 154, '2025-06-25 02:47:22', 0, NULL, 1),
(25512, 'RAGA SRI R', '6', '9080770051', '7092197622', 'ragasriragaresh@gmail.com', '2005-01-31', 20, '3', '2', 'Rajan M', 'Fisherman', 12000.00, 1, 0.00, 15.00, 'No.30,1st Street thalankuppam ennore Chennai -57', '-', '2506250016', '', '1', 'upload_files/candidate_tracker/60422942012_Resume.pdf', NULL, '1', '2025-06-25', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'travel distance is high and also interested in charted accountant', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-25 06:51:46', 154, '2025-06-25 04:07:33', 0, NULL, 1),
(25513, 'KAVIYA', '6', '9384266023', '9551425346', 'kaviyad862005@gmail.com', '2005-06-08', 20, '3', '2', 'Desappan. M', 'Fishermen', 12000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2506250017', '', '1', 'upload_files/candidate_tracker/14940852970_DocumentfromKaviya.D.pdf', NULL, '1', '2025-06-25', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very low voice and interested in HR field', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-25 06:54:00', 154, '2025-06-25 04:05:28', 0, NULL, 1),
(25514, 'Jabarani E', '6', '8248422530', '', 'jabarani72@gmail.com', '2004-10-09', 20, '3', '2', 'Elumalai R', 'Plumber', 15000.00, 2, 0.00, 15.00, 'Chennai', 'Chennai', '2506250018', '', '1', 'upload_files/candidate_tracker/71262185781_Imagetopdf02Jun2025.pdf', NULL, '1', '2025-06-25', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not even interested in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-06-25 06:55:22', 154, '2025-06-25 04:09:34', 0, NULL, 1),
(25515, 'Ilakkia paramasivam', '6', '9791941297', '9150966411', 'Ilakkyashivguru@gmail.com', '1997-12-12', 27, '2', '2', 'Mrs.prema', 'Ashok Leyland', 1.00, 1, 0.00, 18000.00, 'No.41/B 1 st street annai sivagami nagar,Ennore.', 'No.41/B 1st street annai sivagami nagar ennore', '2506250019', '1', '1', 'upload_files/candidate_tracker/90876910334_ILAKKYARESUME.docx', NULL, '1', '2025-06-25', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'long gap in career due to family issue.... communication average but very childish... not fit in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-25 07:03:12', 154, '2025-06-25 02:59:44', 0, NULL, 1),
(25516, 'Yuvaraj', '6', '6369323374', '7092788289', 'yuva41483@gmail.com', '2004-06-30', 20, '2', '2', 'Yuvaraj', '-', 15000.00, 1, 0.00, 15000.00, '40/69 v.v Kovil Street kosapet chennai 12', 'Kosapet purasawalkam', '2506250020', '1', '1', 'upload_files/candidate_tracker/74521098203_AdobeScan25Jun2025.pdf', NULL, '3', '2025-06-25', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-06-25 09:07:21', 154, '2025-06-25 03:23:17', 0, NULL, 1),
(25517, 'Sathish Sekar', '2', '8072125699', '8148326949', 'sathishsekar114@gmail.com', '1990-11-14', 34, '3', '1', 'Husenabanu J', 'Private sector', 35000.00, 2, 0.00, 5000.00, 'Chennai Pallavaram', 'Chennai Pallavaram', '2506250021', '', '1', 'upload_files/candidate_tracker/43286335091_SathishS1.pdf', NULL, '1', '2025-06-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-25 09:33:15', 154, '2025-06-25 03:11:23', 0, NULL, 1),
(25518, 'Ekshan Paul K', '6', '9092945549', '9841166757', 'ekshanpaulhlr@gmail.com', '1994-06-23', 31, '2', '1', 'K.Thangam Vatsala', 'Business', 50000.00, 1, 24000.00, 30000.00, 'No.2B 75/77 KG Marina bay , santhome ,ch - 4', 'No.2B 75/77 KG Marina bay , santhome ,ch - 4', '2506250022', '1', '2', 'upload_files/candidate_tracker/44737534503_EKSHANPAULKERESUME.pdf', NULL, '1', '2025-06-25', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-06-25 09:37:34', 154, '2025-06-25 04:06:05', 0, NULL, 1),
(25519, 'Mahalakshmi', '4', '6381513762', '', 'mahathalamuthu751@gmail.com', '2005-01-01', 20, '2', '2', 'Thala muthu', 'He is passed away', 9000.00, 1, 0.00, 20000.00, 'Theni', 'Chennai', '2506250023', '1', '1', 'upload_files/candidate_tracker/39131669849_MahaLakshmiResume.pdf', NULL, '1', '2025-06-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-06-25 10:28:14', 1, '2025-06-25 10:53:00', 0, NULL, 1),
(25520, 'Nagarjuna', '13', '6369063735', '', 'nagarjunanagarajan402@gmail.com', '2002-07-13', 22, '2', '2', 'nagaraj - jeyasankari', 'business', 80000.00, 1, 0.00, 500000.00, 'Sivakasi.', 'Sivakasi.', '2506250024', '1', '1', 'upload_files/candidate_tracker/59617373506_NagarjunaResume.pdf', NULL, '1', '2025-06-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-25 12:40:08', 154, '2025-06-30 10:22:56', 0, NULL, 1),
(25521, 'Ravikumar M', '13', '9363188279', '9384114211', 'ravikumar936318@gmail.com', '2004-12-08', 20, '2', '2', 'Manikkam M', 'Building construction', 50000.00, 2, 0.00, 15000.00, 'Villupuram', 'Chennai', '2506260001', '1', '1', 'upload_files/candidate_tracker/41458362959_Ravikumar9363188279.pdf', NULL, '1', '2025-06-26', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-26 02:30:52', 154, '2025-06-26 11:04:03', 0, NULL, 1),
(25522, 'A barakath nisha', '6', '8939042320', '9843752515', 'barakath1292005@gmail.com', '2005-09-12', 19, '2', '2', 'ABDUL razak', 'Rapido driver', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2506260002', '1', '1', 'upload_files/candidate_tracker/32623747392_DOC20250612WA0007.202506161330420000.pdf', NULL, '1', '2025-06-26', 0, '', '3', '59', '2025-06-30', 180000.00, '', '3', '2025-07-05', '2', 'Communication Ok fresher for our roles holding IRDA number from Reliance need to get NOC on the same check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '2025-06-30', 1, '2025-06-26 03:33:36', 60, '2025-06-28 06:41:01', 0, NULL, 1),
(25523, 'Surya shree.m', '6', '8925004984', '', 'Suryashree1209@gmail.com', '2004-09-12', 20, '2', '2', 'S.Mohan', 'Cooli', 10000.00, 1, 0.00, 15000.00, 'Manali', 'Manali', '2506260003', '1', '1', 'upload_files/candidate_tracker/75522773117_suryaresume.pdf202506261016040000.pdf', NULL, '1', '2025-06-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-26 04:08:34', 154, '2025-06-26 12:27:55', 0, NULL, 1),
(25524, '', '0', '9677234659', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506260004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-26 04:14:52', 0, NULL, 0, NULL, 1),
(25525, 'Pirashath', '6', '9025204505', '', 'sriprasanth8552@gmail.com', '2002-04-09', 23, '2', '2', 'Panchalai G', 'Farmer', 300000.00, 1, 0.00, 22000.00, 'Thiruvannamalai', 'Little Mount', '2506260005', '1', '1', 'upload_files/candidate_tracker/66744059433_Pra21.pdf', NULL, '1', '2025-06-26', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-26 04:31:37', 154, '2025-06-26 01:05:18', 0, NULL, 1),
(25526, 'Madhankumar m', '6', '7092377696', '6383904480', 'madhan984013@gmail.com', '2025-06-26', 0, '2', '2', 'Mohan', 'Supervisor', 50000.00, 1, 2.00, 2.50, 'No2 mahalingam street gokulam colony', 'No2 mahalingam street gokulam colony', '2506260006', '45', '2', 'upload_files/candidate_tracker/50090595303_MADHANKUMARGUIDEHOUSE1compressed.pdf', NULL, '1', '2025-06-26', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice process ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-26 05:28:00', 154, '2025-06-26 01:01:23', 0, NULL, 1),
(25527, 'Monica Shree M', '6', '9345815401', '', 'monicashree14@gmail.com', '2003-04-14', 22, '2', '2', 'T.S.Mageshwaran', 'Business', 35000.00, 0, 0.00, 20000.00, 'Tondiarpet', 'Tondiarpet', '2506260007', '1', '1', 'upload_files/candidate_tracker/40291945230_MonicaShreeResume.pdf', NULL, '1', '2025-06-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-26 05:39:50', 154, '2025-06-28 06:54:58', 0, NULL, 1),
(25528, 'PRATHAPGUNASEKARAN', '6', '6369378466', '', 'prathapps860@gmail.com', '1999-02-11', 26, '2', '2', 'Gunasekaran,Santhi', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'Erode', 'Thoreipakkam, Chennai', '2506260008', '1', '2', 'upload_files/candidate_tracker/48019903524_RESUMEPRATHAP.pdf', NULL, '1', '2025-06-27', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking max for customer support... not open for sales thinking a lot... more interested in bike related things... did bike second hand buisness for about 1 year...', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-26 06:06:06', 154, '2025-06-27 04:13:48', 0, NULL, 1),
(25529, '', '0', '9444272054', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506260009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-26 06:18:29', 0, NULL, 0, NULL, 1),
(25530, 'Darshini N', '6', '8144467591', '', 'nagarajandarshini2306@domain.com', '2004-06-23', 21, '2', '2', 'Nagarajan R', 'Tiles contractor', 10000.00, 1, 0.00, 16000.00, 'Karaikudi', 'Chennai', '2506260010', '1', '1', 'upload_files/candidate_tracker/32491617289_DarshiniResume2025.pdf', NULL, '1', '2025-06-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-26 07:49:53', 154, '2025-06-27 04:06:23', 0, NULL, 1),
(25531, '', '0', '8925361912', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506260011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-26 08:52:17', 0, NULL, 0, NULL, 1),
(25532, 'Arul Jyothi', '33', '7010527801', '', 'jyothiarul11@gmail.com', '2002-03-20', 23, '2', '2', 'Soundarapandiyan', 'Business', 400000.00, 2, 0.00, 20000.00, 'Chennai', 'Tambaram, Chennai', '2506260012', '1', '1', 'upload_files/candidate_tracker/68026023528_ArulJyothi.s.finance.pdf', NULL, '1', '2025-06-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-06-26 08:54:34', 1, '2025-06-26 08:57:17', 0, NULL, 1),
(25533, 'Maniyarasan M', '31', '9962571858', '8489571858', 'muruganmaniyarasan8@gmail.com', '2001-06-20', 24, '2', '2', 'Murugan', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Ulundurpet', 'Ramapuram', '2506260013', '1', '1', 'upload_files/candidate_tracker/79247813387_resume2.pdf', NULL, '1', '2025-06-26', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-26 09:40:24', 154, '2025-06-26 03:20:41', 0, NULL, 1),
(25534, 'lawrence ruban', '6', '9962506265', '8838088808', 'lawrencelenzs35@gmail.com', '1999-09-29', 25, '2', '2', 'wilson', 'driver', 25000.00, 1, 0.00, 20000.00, 'raghavan street karkil nagar thiruvottiyur', 'raghavan street karkil nagar thiruvottiyur', '2506260014', '1', '1', 'upload_files/candidate_tracker/71007257809_lawrence.docx', NULL, '1', '2025-06-27', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-26 10:06:19', 154, '2025-06-27 03:54:16', 0, NULL, 1),
(25535, 'Srikanth', '13', '6379218197', '', 'sri569130@gmail.com', '2003-07-02', 21, '3', '2', 'Chandramohan', 'Farmer', 20000.00, 1, 0.00, 250000.00, 'Ariyalur', 'Chennai', '2506260015', '', '1', 'upload_files/candidate_tracker/29785722444_SrikanthJavaDeveloper.pdf', NULL, '1', '2025-06-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-26 10:55:23', 1, '2025-06-26 11:00:56', 0, NULL, 1),
(25536, '435220181283', '4', '7305410926', '8220349028', 'kanimozhi09022002@gmail.com', '2002-02-09', 23, '5', '2', 'Mariyammal', 'House wife', 30000.00, 2, 13000.00, 16000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2506260016', '', '2', 'upload_files/candidate_tracker/46423104611_KaniMozhi.pdf', NULL, '1', '2025-06-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-26 11:59:04', 1, '2025-06-26 12:44:34', 0, NULL, 1),
(25537, 'mani.ct', '4', '9629086434', '', 'ctmanish41@gmail.com', '2001-11-13', 23, '2', '2', 'chidambaram', 'business', 25000.00, 1, 250000.00, 350000.00, 'pudukkottai', 'chennai', '2506260017', '1', '2', 'upload_files/candidate_tracker/75815230812_CT.Maniresume.pdf', NULL, '1', '2025-06-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-06-26 12:17:20', 1, '2025-06-26 12:23:19', 0, NULL, 1),
(25538, 'Nimedha shanmuganathan', '6', '8072002138', '', 'nimedhanimedha13@gmail.com', '2004-11-13', 20, '2', '2', 'Rathi', 'Tailor', 15000.00, 1, 0.00, 16000.00, 'Devakottai', 'Kolathoor', '2506260018', '1', '1', 'upload_files/candidate_tracker/39224932540_downloadresume1.pdf', NULL, '1', '2025-06-27', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'need to open up a lot.... very reserved not speaking that much... so not fit for sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-26 01:10:28', 154, '2025-06-27 04:14:41', 0, NULL, 1),
(25539, 'Harish varma', '6', '8838132247', '', 'harishvarma3123@gmail.com', '2003-04-06', 22, '2', '2', 'Parents', 'Buliding Contracter', 50000.00, 1, 0.00, 17.00, 'Thirupattur', 'Thirupattur', '2506260019', '1', '1', 'upload_files/candidate_tracker/29341068250_harishresume.pdf', NULL, '1', '2025-06-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-26 02:30:36', 154, '2025-06-27 01:16:35', 0, NULL, 1),
(25540, 'bahid j', '6', '9787397448', '9566696107', 'bahidbahid292@gmail.com', '2010-06-26', 0, '2', '2', 'jaffer sadiek', 'labour', 20000.00, 2, 0.00, 16000.00, 'trichy', 'hennai', '2506260020', '1', '1', 'upload_files/candidate_tracker/46414960796_Bahid.pdf', NULL, '1', '2025-06-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-26 04:30:44', 154, '2025-06-27 03:58:27', 0, NULL, 1),
(25541, 'Prem Perumal', '6', '7200061876', '', 'premperumal1326@gmail.com', '2004-10-13', 20, '2', '2', 'Perumal', 'Lorry driver', 90000.00, 0, 0.00, 20000.00, '1,thiruvalluvar street, Melathur, west Tambaram-69', '1,thiruvalluvar street, Melathur, westTambaram -69', '2506270001', '1', '1', 'upload_files/candidate_tracker/42769312878_resume.....1.pdf', NULL, '1', '2025-06-30', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-27 04:47:33', 154, '2025-06-30 03:09:06', 0, NULL, 1),
(25542, 'T Firdose ahmed', '6', '9344506781', '8870030892', 'Firdosefiddu033@gamil.com', '2002-04-20', 23, '2', '2', 'No', 'No', 100000.00, 2, 0.00, 18000.00, 'Ambur', 'Oomerabad', '2506270002', '1', '1', 'upload_files/candidate_tracker/82234396716_CV2025060311471644.pdf', NULL, '3', '2025-06-27', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'his tamil slang is kind of urdu mixed... mother tongue urdu.. very shy... need to open up a lot.. so not fit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-27 05:01:23', 154, '2025-06-27 01:05:49', 0, NULL, 1),
(25543, '399361141161', '4', '7305822969', '', 'desozarobin33@gmail.com', '2005-03-20', 20, '5', '2', 'Britto', '-', 120000.00, 1, 0.00, 15000.00, '1/18 Gangai Amman Kovil street', 'Ramapuram', '2506270003', '', '1', 'upload_files/candidate_tracker/56044021033_GrayGreenMinimalistCorporateProfessionalResume202506171639590000.pdf', NULL, '1', '2025-06-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-27 05:07:43', 1, '2025-06-27 05:12:25', 0, NULL, 1),
(25544, '', '0', '7685953750', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2506270004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-06-27 05:21:46', 0, NULL, 0, NULL, 1),
(25545, 'KARKU VELRAJ V', '6', '9345669869', '9941242562', 'karkuvelraj900@gmail.com', '2005-05-22', 20, '2', '2', 'Vasagan', 'Printer', 17000.00, 1, 0.00, 17000.00, 'No 36/50 Ezhil Ngar B, block 8th Street Kodungaiyu', 'Chennai', '2506270005', '1', '1', 'upload_files/candidate_tracker/41169703514_IMG20250625115327.pdf', NULL, '1', '2025-07-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also sustainable is doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-06-27 06:07:39', 154, '2025-07-02 03:35:40', 0, NULL, 1),
(25546, 'Deepika', '4', '7010008550', '9092374408', 'deepika20mk@gmail.com', '2000-04-20', 25, '2', '2', 'Kanniyamal', 'House keeping', 10000.00, 1, 15000.00, 16000.00, 'Tondiarpet', 'Parrys corner', '2506270006', '1', '2', 'upload_files/candidate_tracker/46343184935_ResumeDeepika.pdf', NULL, '1', '2025-06-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-27 06:09:38', 154, '2025-06-27 12:55:47', 0, NULL, 1),
(25547, 'Jayapriya G', '4', '8939276718', '9962772663', 'jayapriya0205@gmail.com', '2002-05-02', 23, '2', '2', 'Gopi S', 'Courier', 12000.00, 1, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2506270007', '1', '1', 'upload_files/candidate_tracker/55111104754_CV.pdf', NULL, '1', '2025-06-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1003', '0', '0', '0', NULL, 1, '2025-06-27 06:19:15', 1, '2025-06-27 06:26:48', 0, NULL, 1),
(25548, 'Muthusivaraj N', '13', '9092769567', '', 'muthusivaraj003@gmail.com', '2002-08-03', 22, '3', '2', 'Nagarajan', 'Former', 30000.00, 2, 0.00, 3.00, 'Thiruvarur', 'Chennai', '2506270008', '', '1', 'upload_files/candidate_tracker/84156136518_ResumeMuthusivarajN.pdf', NULL, '1', '2025-06-27', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-27 06:25:14', 154, '2025-06-27 12:03:45', 0, NULL, 1),
(25549, 'N Zakiya Khatoon', '4', '8610849907', '9940347417', 'nzakiya786@gmail.com', '2004-10-15', 20, '3', '2', 'S Naushath Ahmed Khan', 'Auto driver', 1.20, 2, 0.00, 18.00, 'Perambur Chennai', 'Perambur', '2506270009', '', '1', 'upload_files/candidate_tracker/12900054807_Resume.pdf', NULL, '1', '2025-07-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-27 06:28:37', 1, '2025-06-27 06:36:53', 0, NULL, 1),
(25550, 'Arun Kumar G', '13', '6385478318', '', 'arun.moorthy1304@gmail.com', '2003-04-13', 22, '5', '2', 'Gurumoorthy P', 'Mill Worker', 180000.00, 1, 0.00, 300000.00, 'Rajaplayam', 'Chennai', '2506270010', '', '1', 'upload_files/candidate_tracker/18269058250_ArunKumarGresume.pdf', NULL, '1', '2025-06-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-27 07:00:22', 1, '2025-06-27 07:03:58', 0, NULL, 1),
(25551, '669605842384', '17', '7299105561', '', 'rajdilli2525@gmail.com', '1995-10-18', 29, '1', '2', 'Gokulraj', 'Driver', 25000.00, 2, 30000.00, 35000.00, 'No.6, thilagar nagar 1st street th.road', 'Chennai', '2506270011', '', '2', 'upload_files/candidate_tracker/8862355742_DILLIRAJ.NEW.PDF.pdf', NULL, '1', '2025-06-27', 0, 'Direct walkin', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-27 07:02:50', 1, '2025-06-27 07:09:15', 60, '2025-06-27 02:43:44', 0),
(25552, 'Dhilipan T', '6', '8098849590', '9025007405', 'dhilipant331@gmail.com', '2004-03-05', 21, '2', '2', 'Thirumalai M', 'Vijai Trucking (Sales executive)', 25000.00, 1, 0.00, 25000.00, 'No:8,Manikkapuram,Kundrathur Chennai- 69', '5/7 Ambal Nagar Kundrathur Chennai -69', '2506270012', '27', '1', 'upload_files/candidate_tracker/58905476072_DhilipanTResume.pdf', NULL, '1', '2025-06-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-27 07:12:39', 154, '2025-06-27 04:09:19', 0, NULL, 1),
(25553, 'Akshaya E', '4', '9176371560', '', 'hemaelangoven2004@gmail.com', '2003-04-20', 22, '2', '2', 'elangoven r', 'car driver', 15000.00, 1, 18000.00, 25000.00, 'villivakkam', 'villivakkam chennai', '2506270013', '1', '2', 'upload_files/candidate_tracker/46583712190_AkshayaResume.pdf', NULL, '1', '2025-06-28', 0, '', '3', '59', '2025-07-03', 264000.00, '', '5', '1970-01-01', '1', 'Communication Ok have exp in calling but not a relevant one need to check n training and confirm', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55824', '55560', '2025-07-03', 1, '2025-06-27 07:14:35', 60, '2025-07-02 07:30:28', 0, NULL, 1),
(25554, 'DILLIRAJ G', '5', '7299015561', '', 'rajdilli2525@gmail.com', '1995-10-18', 29, '1', '2', 'Gokulraj', 'Driver', 25000.00, 2, 30000.00, 35000.00, 'No.6, thilagar nagar 1st street th.road', 'Chennai', '2506270014', '', '2', 'upload_files/candidate_tracker/9238337060_DILLIRAJ.NEW.PDF.pdf', NULL, '1', '2025-06-27', 0, '55555', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-06-27 07:21:22', 154, '2025-06-27 05:02:40', 0, NULL, 1),
(25555, 'Sivanesan D', '6', '6385363917', '9944975064', 'sivanesandharman@gmail.com', '2004-04-18', 21, '2', '2', 'Dharman', 'Farmer', 18000.00, 1, 0.00, 20000.00, 'Dindigul', 'Dindigul', '2506270015', '1', '1', 'upload_files/candidate_tracker/79683481267_Sivanesan.Resume.pdf', NULL, '1', '2025-07-01', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-27 07:26:27', 154, '2025-07-01 02:39:33', 0, NULL, 1),
(25556, 'SREEKANTH V', '13', '8838824743', '', 'sreekanthvadivel@gmail.com', '2003-05-26', 22, '2', '2', 'Vadivelu R', 'Weaver', 30000.00, 1, 0.00, 200000.00, 'Salem', 'Chen', '2506270016', '1', '1', 'upload_files/candidate_tracker/3646501617_SreekanthVResume.pdf', NULL, '1', '2025-06-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-27 07:44:05', 154, '2025-06-30 11:40:04', 0, NULL, 1),
(25557, 'Gowtham G', '6', '8122487383', '8760000575', 'gowgangu474@gmail.com', '2003-11-12', 21, '2', '2', 'Ganeshen', 'Barbara Shop', 30000.00, 2, 14000.00, 17000.00, 'Madurai', 'Chennai Anna nagar', '2506270017', '1', '2', 'upload_files/candidate_tracker/65378902421_Gowthamnewresume.pdf.pdf', NULL, '1', '2025-06-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-27 07:54:24', 154, '2025-06-27 03:41:46', 0, NULL, 1),
(25558, 'Sarankumar T', '6', '9442231740', '8111056433', 'saranofficial2003@gmail.com', '2003-01-06', 22, '2', '2', 'A.Thiyagarajan', 'Advocate', 20000.00, 1, 14000.00, 17000.00, 'Madurai', 'Chennai', '2506270018', '1', '2', 'upload_files/candidate_tracker/67654949914_sarankumarnewCV2.pdf', NULL, '1', '2025-06-27', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-27 07:54:29', 154, '2025-06-27 03:55:40', 0, NULL, 1),
(25559, 'Jayaprakash irulappan', '31', '8489755101', '6374455242', 'irulappanprakash2001@gmail.com', '2001-05-14', 24, '2', '2', 'Irulappan', 'Mechanic', 20000.00, 1, 0.00, 200000.00, 'Madurai', 'Madurai', '2506270019', '1', '1', 'upload_files/candidate_tracker/92741420599_Jayaprakashresumeofficiallatest.pdf', NULL, '1', '2025-06-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-27 09:13:56', 154, '2025-06-30 10:47:22', 0, NULL, 1),
(25560, 'Shainy sharal', '6', '6383245933', '', 'Shainysharal@gmail', '2005-02-24', 20, '2', '2', 'Kirubakaran', 'pastor', 25000.00, 1, 0.00, 20000.00, 'chengapattu', 'Chengalpattu', '2506270020', '1', '1', 'upload_files/candidate_tracker/44872353368_PDFGallery20250605183521.pdf', NULL, '1', '2025-06-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-27 09:18:44', 154, '2025-06-27 04:04:50', 0, NULL, 1),
(25561, 'DHINESH J', '13', '8883521616', '', 'dhineshjo2912@gmail.com', '2003-12-29', 21, '5', '2', 'Jothi s', 'Farmer', 15000.00, 2, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2506270021', '', '1', 'upload_files/candidate_tracker/67130947104_DHINESHJResume.pdf', NULL, '1', '2025-06-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-27 10:20:09', 1, '2025-06-27 10:23:58', 0, NULL, 1),
(25562, 'Giridharan K', '13', '9176160043', '9841273579', 'gd02675@gmail.com', '2002-10-26', 22, '5', '2', 'Kannan S', 'Driver', 28000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2506270022', '', '1', 'upload_files/candidate_tracker/1405059243_GiriResume.pdf', NULL, '1', '2025-06-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-27 10:25:20', 1, '2025-06-27 10:28:10', 0, NULL, 1),
(25563, 'Nandhakumar G', '13', '8610099703', '', 'nandha0517@gmail.com', '2003-05-17', 22, '5', '2', 'Gnanavel D', 'Post office packer', 25000.00, 1, 0.00, 25000.00, 'Ranipet, Tamil Nadu', 'Ranipet, Tamil Nadu', '2506270023', '', '1', 'upload_files/candidate_tracker/37807469115_nandhakumarresume1.pdf', NULL, '1', '2025-07-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-27 10:41:03', 1, '2025-06-27 10:47:33', 0, NULL, 1),
(25564, 'S Safeer Ali', '13', '7092771796', '', 'msabeer208@gmail.com', '2001-05-26', 24, '5', '2', 'M Sahul Hameed', 'Labour', 25000.00, 1, 0.00, 250000.00, 'Tirunelveli, Tamil Nadu', 'Tirunelveli, Tamil Nadu', '2506270024', '', '1', 'upload_files/candidate_tracker/65398097420_SafeerAli.pdf', NULL, '1', '2025-07-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-27 11:11:22', 1, '2025-06-27 11:14:05', 0, NULL, 1),
(25565, 'Chandru M', '13', '9344418375', '', 'chandrum690@gmail.com', '2002-11-01', 22, '5', '2', 'MURUGAN', 'Farmer', 72000.00, 3, 0.00, 20000.00, 'Kallakurichi', 'Solinganallur', '2506270025', '', '1', 'upload_files/candidate_tracker/62800356318_chandrur.pdf', NULL, '1', '2025-07-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-27 11:37:26', 1, '2025-06-27 11:47:22', 0, NULL, 1),
(25566, 'Vijay', '4', '7904124496', '9176197550', 'vs144688@gmail.com', '2003-06-25', 22, '3', '2', 'Selvam', 'Tea Shop', 30000.00, 0, 0.00, 17000.00, 'Kattur nalla Muthu street choolai Chennai 112', 'Kattur nalla Muthu street choolai Chennai 112', '2506270026', '', '1', 'upload_files/candidate_tracker/58082265983_Vjresume.docx', NULL, '1', '2025-07-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-27 12:45:13', 1, '2025-06-27 12:50:25', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25567, 'M Akbarkhan', '6', '9840566712', '9941287610', 'Akbarkhanamijth@gmail.com', '2005-02-09', 20, '2', '2', 'Mehaboob khan sahera banu', 'Catering service', 80000.00, 2, 0.00, 17000.00, '62/85 madurai samy madam v.o.c nagar 1st street', '62/85 madurai samy madam v.o.c nagar 1st street', '2506270027', '1', '1', 'upload_files/candidate_tracker/25900934200_mergefile20250613215552.pdf', NULL, '1', '2025-06-28', 0, '', '3', '59', '2025-07-01', 192000.00, '', '3', '2025-07-08', '2', 'Communication Ok Fresher need to train from scratch will check in training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '2025-07-01', 1, '2025-06-27 01:07:16', 60, '2025-07-01 10:27:44', 0, NULL, 1),
(25568, 'Sheerin.R', '6', '9952090217', '9500169217', 'rahmathullahsalma@gmail.com', '2003-07-30', 22, '2', '2', 'Rahamathullah', 'Office boy', 15000.00, 1, 18500.00, 20000.00, 'Old Washermanpet', 'Old Washermanpet', '2506270028', '1', '2', 'upload_files/candidate_tracker/56526024955_CV2025072814360282.pdf', NULL, '1', '2025-10-09', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-27 02:40:23', 154, '2025-10-09 05:07:23', 0, NULL, 1),
(25569, 'Sandhiya P', '4', '9940575354', '', 'santhiyapalanisamy213@gmail.com', '1998-04-16', 27, '2', '2', 'Palanisamy R', 'Farmer', 40000.00, 2, 22000.00, 27000.00, 'Erode', 'Chennai', '2506280001', '1', '2', 'upload_files/candidate_tracker/37079314864_SandhiyaPResume2.pdf', NULL, '1', '2025-06-28', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55824', '55560', '1970-01-01', 1, '2025-06-28 04:35:21', 154, '2025-06-28 11:57:41', 0, NULL, 1),
(25570, 'Yuvaraja p', '6', '9442977661', '9363649591', 'yuvarajakmd@gmail.com', '2000-04-22', 25, '1', '2', 'Palanisamy', 'Farmer', 20000.00, 1, 14000.00, 17000.00, 'Erode', 'Vadapalani', '2506280002', '', '2', 'upload_files/candidate_tracker/93242577493_Yuvaraja4858202506272202420000.pdf', NULL, '1', '2025-06-28', 0, 'C99119', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was not ok with communication ,will not suitable for sales as he is not ready to speak and looking very slow', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-06-28 04:43:03', 154, '2025-06-28 11:44:30', 0, NULL, 1),
(25571, 'Sharon sunitha', '6', '9094814579', '9884410894', 'sharonsunitha27@gamil.com', '1999-01-27', 26, '2', '2', 'Jacob martin roy', 'MA ENGLISH LITERATURE', 40000.00, 0, 18200.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2506280003', '1', '2', 'upload_files/candidate_tracker/98162660788_SHARONSUNITHA.pdf', NULL, '1', '2025-06-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-06-28 05:06:00', 154, '2025-06-28 02:57:16', 0, NULL, 1),
(25572, 'Mahes Kumar M', '6', '7598937904', '', 'mahebsf007@gmail.com', '2001-08-31', 23, '2', '2', 'Mariyadass A', 'Driver', 15000.00, 1, 0.00, 16000.00, 'Vadapalni', 'Vadapalani', '2506280004', '1', '1', 'upload_files/candidate_tracker/2967919914_MaheskumarFresherResume.pdf', NULL, '1', '2025-06-28', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have a career gap... was doing finance buisness with his father... now stopped due to father health issue.. now looking for job... need to open up a lot... giving only one word answer... not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-28 05:11:01', 154, '2025-06-28 02:55:54', 0, NULL, 1),
(25573, 'Mohammad Abdullah M', '6', '9025022090', '7402094748', 'mabdullah48163@gmail.com', '2001-03-23', 24, '2', '2', 'Abdul malik . R', 'Welder', 25000.00, 2, 0.00, 18000.00, '15a/8, anna street, tindivanam , 604001', 'Saidapet', '2506280005', '1', '1', 'upload_files/candidate_tracker/27043851502_AbdullahResumecompressedcompressed.pdf', NULL, '3', '2025-06-28', 0, '', '3', '59', '2025-06-30', 192000.00, '', '3', '2025-08-18', '1', 'Fresher can be trained in our roles communication Ok check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '2025-06-30', 1, '2025-06-28 05:14:03', 60, '2025-06-28 06:42:11', 0, NULL, 1),
(25574, 'Sethunathan kubendiran', '6', '9042308096', '9025022090', 'nsethu411@gmail.com', '2001-05-20', 24, '2', '2', 'Gubendiran', 'Driver', 25000.00, 1, 0.00, 18000.00, 'Tindivanam', 'Saidapet', '2506280006', '1', '1', 'upload_files/candidate_tracker/64926338982_SETHUNATHAN.Resume1.pdf.docx', NULL, '3', '2025-06-28', 0, '', '3', '59', '2025-06-30', 192000.00, '', '3', '2025-08-30', '2', 'communication Ok fresher for our roles over confidence will check intraining and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '2025-06-30', 1, '2025-06-28 05:14:34', 60, '2025-06-28 06:44:43', 0, NULL, 1),
(25575, 'Prasanth', '13', '6369028269', '', 'prasanthbm22@gmail.com', '2001-10-22', 23, '3', '2', 'Balu', 'Weaver', 18000.00, 1, 0.00, 2.50, 'Salem', 'Chennai', '2506280007', '', '1', 'upload_files/candidate_tracker/42262339950_ResumePrasanth.pdf', NULL, '1', '2025-06-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-28 05:18:59', 154, '2025-06-28 10:58:34', 0, NULL, 1),
(25576, 'suriya .k', '6', '9944533232', '9176371560', 'suryaarya1014@gmail.com', '2004-07-02', 20, '2', '2', 'kalaiselavan .j', 'corporation', 20000.00, 1, 16000.00, 20000.00, 'km garden choolai chennai', 'km garden choolai', '2506280008', '1', '2', 'upload_files/candidate_tracker/44464878186_suriyaresume.docx', NULL, '1', '2026-03-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-28 05:24:44', 154, '2026-03-02 04:40:30', 0, NULL, 1),
(25577, 'prathiksha s', '6', '7305912266', '9362999309', 'prathikshakutta@gmail.com', '2002-06-11', 23, '2', '2', 'srinivasan k', 'car driver', 25000.00, 1, 16000.00, 20000.00, 'anna nagar', 'anna nagar', '2506280009', '1', '2', 'upload_files/candidate_tracker/419524363_Prathiksha.pdf', NULL, '1', '2025-06-28', 0, '', '3', '59', '2025-07-03', 180000.00, '', '5', '1970-01-01', '1', 'Communication ok have few months exp 5050 for our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '2025-07-03', 1, '2025-06-28 05:25:41', 60, '2025-07-02 07:29:01', 0, NULL, 1),
(25578, 'ARIYANKA T', '13', '6380911523', '', 'ariyanka2004@gmail.com', '2004-04-20', 21, '2', '2', 'PADMA T', 'Village Health Nurse', 20000.00, 1, 0.00, 250000.00, 'Kovilpatti', 'Velachery', '2506280010', '1', '1', 'upload_files/candidate_tracker/96453491833_AriyankaResume1.pdf', NULL, '1', '2025-06-28', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-28 06:42:50', 154, '2025-06-28 12:43:15', 0, NULL, 1),
(25579, 'ELAVARASI. E', '6', '9176514549', '9176093933', 'elavarasiessakidurai@gmail.com', '2000-01-04', 25, '2', '2', 'Esakkidurai', 'Smallbuisness', 25000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2506280011', '1', '1', 'upload_files/candidate_tracker/78332309302_ElavarasiCareerResume.pdf', NULL, '1', '2025-06-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was good at communication and also have basic experience in sales showing interest in sales need of a job lets try  it for  7 days training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2025-06-28 06:46:14', 154, '2025-07-01 09:27:30', 0, NULL, 1),
(25580, 'Ajay kumar D', '6', '6374824766', '', 'ajaysivakumar0112@gmail.com', '2002-12-01', 22, '2', '2', 'Sivakumar R', 'Farmer', 80000.00, 1, 0.00, 17000.00, '3rd gangai nagar,Velachery,chennai', '3rd gangai nagar,Velachery,chennai', '2506280012', '1', '1', 'upload_files/candidate_tracker/21841679664_AJAYKUMARS.pdf.pdf', NULL, '1', '2025-06-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-28 07:15:44', 154, '2025-06-28 06:51:47', 0, NULL, 1),
(25581, 'Navinkumar Sivanantham', '13', '7598827687', '', 'navinkumar21000@gmail.com', '2003-02-21', 22, '5', '2', 'Sivanantham', 'Private company', 30000.00, 3, 0.00, 400000.00, 'Guduvancheri, chengalpattu-603202', 'Guduvancheri, chengalpattu-603202', '2506280013', '', '1', 'upload_files/candidate_tracker/20546059263_NavinkumarResume.pdf', NULL, '1', '2025-07-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-28 07:15:54', 1, '2025-06-28 07:21:02', 0, NULL, 1),
(25582, 'SIVAGURU', '6', '6382909323', '', 'gurusiva866@gmail.com', '2003-06-11', 22, '2', '2', 'Murugan', 'Business', 80000.00, 1, 0.00, 17000.00, 'Town', 'Chennai', '2506280014', '1', '1', 'upload_files/candidate_tracker/40294033169_Sivagurupdf202506242013520000.pdf', NULL, '1', '2025-06-28', 0, '', '3', '59', '2025-06-30', 192000.00, '', '3', '2025-06-30', '2', 'Communication Ok fresher long run doubts and pressure handling also however we can check  in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '2025-06-30', 1, '2025-06-28 07:16:01', 60, '2025-06-28 06:47:51', 0, NULL, 1),
(25583, 'Thamim s', '6', '7397294512', '8939326746', 'ansaritamim74@gmail.com', '2004-11-26', 20, '2', '2', 'Sadhik', 'Vegetable vendor', 12000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2506280015', '1', '1', 'upload_files/candidate_tracker/47897286111_thamimresume.pdf', NULL, '1', '2025-06-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-28 08:02:59', 154, '2025-06-28 06:51:01', 0, NULL, 1),
(25584, 'subhashree', '4', '9962198034', '', 'subhashreejayakumar3113@gmail.com', '2002-07-31', 22, '2', '2', 'jayakumar', 'business', 45000.00, 1, 16000.00, 18000.00, 'chennai', 'chennai', '2506280016', '1', '2', 'upload_files/candidate_tracker/77753064752_subhashreecv1.pdf', NULL, '1', '2025-06-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-06-28 08:03:50', 1, '2025-06-28 08:08:21', 0, NULL, 1),
(25585, 'Rounak parveen A', '6', '9345758936', '9003111707', 'rounak3938@gmail.com', '2004-04-04', 21, '2', '1', 'Imran Basha', 'Daily wages', 17000.00, 1, 0.00, 18000.00, 'Mount Road', 'Mount road', '2506280017', '1', '1', 'upload_files/candidate_tracker/37019855268_Resume.pdf', NULL, '1', '2025-07-31', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-28 09:42:51', 154, '2025-07-31 02:51:23', 0, NULL, 1),
(25586, 'Gopianan S', '13', '8682951226', '', 'gopianans@gmail.com', '2001-02-23', 24, '2', '2', 'Tamilselvi', 'House wife', 15000.00, 1, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2506280018', '1', '1', 'upload_files/candidate_tracker/42511931760_Gopiananresume.pdf', NULL, '1', '2025-07-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-28 11:22:15', 154, '2025-07-01 10:22:17', 0, NULL, 1),
(25587, 'Naveenkumar Seetharaman', '13', '9444791116', '9444991116', 'iamnk229@gmail.com', '2001-09-22', 23, '2', '2', 'Seetharaman P', 'Farmer', 60000.00, 1, 0.00, 15000.00, 'Kanchipuram', 'Kundrathur', '2506280019', '1', '1', 'upload_files/candidate_tracker/15486152959_SNaveenkumarJavaFullStackResume1.pdf', NULL, '1', '2025-06-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-28 11:32:50', 154, '2025-06-30 10:25:46', 0, NULL, 1),
(25588, 'samjuliun p', '6', '9962560857', '', 'psamjuliun54@gmail.com', '2004-11-17', 20, '2', '2', 'domin', 'bcom gen', 30000.00, 1, 0.00, 20000.00, 'mrg nagar vela', 'velachery', '2506280020', '1', '1', 'upload_files/candidate_tracker/46023630446_SamJuliunP.pdf', NULL, '1', '2025-06-30', 0, '', '3', '59', '2025-07-07', 192000.00, '', '3', '2025-07-08', '1', 'Communication Ok can be trained in our roles and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '2025-07-07', 1, '2025-06-28 12:54:01', 60, '2025-07-05 09:55:47', 0, NULL, 1),
(25589, 'NithishKumar', '13', '9789532695', '6383049973', 'nithish333aarish3@gmail.com', '2002-10-30', 22, '2', '2', 'iyyanar a', 'farmer', 5000.00, 2, 0.00, 15000.00, 'vilupuram', 'chennai', '2506280021', '1', '1', 'upload_files/candidate_tracker/15400296878_NithishRESUME.pdf', NULL, '1', '2025-07-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-28 12:55:53', 154, '2025-07-04 11:08:22', 0, NULL, 1),
(25590, 'Sandhiya.M', '6', '9962779039', '9841437338', 'sandhiyamorthi0510@gmail.com', '2001-10-05', 23, '2', '2', 'Moorthi.S', 'Painter', 95000.00, 1, 0.00, 15000.00, 'No:36, 31st cross street,t.P.Chathiram', 'No:36, 31st cross street,t.P.Chathiram', '2506280022', '1', '1', 'upload_files/candidate_tracker/1571869782_SANDHIYA.M1.pdf', NULL, '1', '2025-06-30', 0, '', '3', '59', '2025-07-07', 180000.00, '', '3', '2025-07-10', '2', 'Communication Ok 5050 First day dropped by Gopi and reschedule with Syed and got selected for his team let us try and confirm in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55645', '5151', '2025-07-07', 1, '2025-06-28 12:56:06', 60, '2025-07-05 10:02:26', 0, NULL, 1),
(25591, 'Chandru k', '6', '9342622163', '', 'alonechan00@gmail.com', '2004-09-04', 20, '2', '2', 'Kumar k', 'Daily wages', 35000.00, 1, 0.00, 16000.00, '4/22 kamachiamman street ekkatuthangal Chennai 32', '4/22 kamachiamman street ekkatuthangal Chennai 32', '2506280023', '1', '1', 'upload_files/candidate_tracker/80998190313_chandruresume.docx2025062921511000001.pdf', NULL, '1', '2025-06-30', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is ok.but his voice is low also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-06-28 12:57:56', 154, '2025-06-30 03:02:15', 0, NULL, 1),
(25592, 'Christhuraj J', '6', '6382637316', '9361532791', 'Christhuraj2105@gmail.com', '2004-11-08', 20, '2', '2', 'John Peter s', 'Daily wages', 15000.00, 2, 0.00, 15000.00, '56 vishalakshi nagar ekkatuthangal chennai 600032', '56 vishalakshi nagar ekkatuthangal chennai 600032', '2506280024', '1', '1', 'upload_files/candidate_tracker/20155782750_downloadresume.pdf', NULL, '1', '2025-06-30', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-28 01:02:41', 154, '2025-06-30 02:47:41', 0, NULL, 1),
(25593, 'V.leena', '6', '7395944048', '', 'Leenavijaya47@gmail.com', '1999-12-19', 25, '2', '2', 'V.vijaya', 'Housewife', 50000.00, 0, 0.00, 15000.00, 'Chintadripet', 'Chintadripet', '2506280025', '1', '1', 'upload_files/candidate_tracker/3663882637_leena194.pdf', NULL, '1', '2025-06-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-28 03:08:26', 154, '2025-06-30 03:44:50', 0, NULL, 1),
(25594, 'Selva kumar', '4', '7603882626', '9677236047', 'selvak4747@gmail.com', '2001-06-29', 24, '5', '2', 'Sathya moorthy', 'Hotel work', 25000.00, 1, 15000.00, 18000.00, '13/28, iyyappillai garden, 2nd Street, Kaladipet', '13/28, iyyappillai garden, 2nd Street, kaladipet', '2506280026', '', '2', 'upload_files/candidate_tracker/97820377920_CV2025062611022019.pdf', NULL, '1', '2025-06-30', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-28 03:45:49', 1, '2025-06-29 12:55:51', 0, NULL, 1),
(25595, 'sikkandhar badsha riyakath ali', '13', '9944250866', '', 'sikkandharbadsha37@gmail.com', '2003-11-20', 21, '2', '2', 'riyakath ali', 'master in hotel', 18000.00, 1, 0.00, 2.00, 'madurai', 'chennai', '2506280027', '1', '1', 'upload_files/candidate_tracker/98518535416_SikkandharBadshaCV.pdf', NULL, '1', '2025-07-01', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-28 05:20:32', 154, '2025-07-01 11:04:41', 0, NULL, 1),
(25596, 'Adhishvar N', '13', '9884143883', '', 'adhishvar.46@gmail.com', '2002-01-27', 23, '5', '2', 'Chitra devi', 'House wife', 12000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2506290001', '', '1', 'upload_files/candidate_tracker/49116187783_AdhishvarNewresume.pdf', NULL, '1', '2025-07-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-29 03:50:46', 1, '2025-06-29 03:55:39', 0, NULL, 1),
(25597, 'Nithishkumar S', '31', '8056671855', '8248860298', 'nithishsiva2003@gmail.com', '2003-06-01', 22, '2', '2', 'Sivalingam K', 'Private company manager', 25000.00, 1, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2506300001', '1', '1', 'upload_files/candidate_tracker/20958583947_NithishKumarResume.pdf', NULL, '1', '2025-06-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-30 02:00:25', 154, '2025-06-30 11:50:25', 0, NULL, 1),
(25598, 'Thalapala Sravana Lakshmikar', '6', '7794929130', '9989901327', 'itsmeluckythalapala@gmail.com', '2004-01-30', 21, '2', '2', 'T sankara', 'No occupation', 15000.00, 1, 0.00, 25000.00, 'Ptm', 'Ptm', '2506300002', '49', '1', 'upload_files/candidate_tracker/88403502390_ThalapalaSravanaLakshmikarResume.pdf', NULL, '1', '2025-06-30', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suit for our job', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-06-30 05:20:33', 154, '2025-07-01 03:04:06', 0, NULL, 1),
(25599, 'JENIFER RAJINIKANTH', '6', '9047066528', '9840582959', 'jeniferrajinikanth@gmail.com', '2004-06-22', 21, '1', '2', 'Parents', 'Ar caller', 40000.00, 2, 17250.00, 20000.00, 'No 15 lingam main street puzhal chennai', 'No 15 lingam main street puzhal chennai', '2506300003', '', '2', 'upload_files/candidate_tracker/70741136447_resume.jen.pdf', NULL, '1', '2025-06-30', 0, 'Vishnu', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good skill. experince at tele calling . expection high .', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-30 05:20:49', 154, '2025-06-30 12:50:49', 0, NULL, 1),
(25600, 'Swetha.s', '6', '8072870249', '9003226498', 'swethasrinivasan2401@gmail.com', '2004-02-24', 21, '1', '2', 'Parent', 'Cooly', 40000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2506300004', '', '2', 'upload_files/candidate_tracker/63729775082_swetha30.6.25.pdf', NULL, '1', '2025-06-30', 0, 'Vishnu', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-30 05:25:21', 154, '2025-06-30 06:36:20', 0, NULL, 1),
(25601, 'Muthu Palaniappan', '13', '8056310213', '8056810982', 'mpaofficial2003@gmail.com', '2003-02-13', 22, '2', '2', 'Meyyammai', 'Office staff', 150000.00, 2, 0.00, 240000.00, 'Karaikudi', 'Karaikudi', '2506300005', '1', '1', 'upload_files/candidate_tracker/82887265005_Muthuresume.pdf', NULL, '1', '2025-06-30', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-30 05:31:39', 154, '2025-06-30 11:12:29', 0, NULL, 1),
(25602, 'Manoj vasudevan', '6', '9123501772', '', 'manojcr7y218@gmail.com', '2005-01-01', 20, '2', '2', 'Vasudevan', 'B.com (general)', 20000.00, 1, 0.00, 20000.00, 'No.218,4th block,5th mainroad.', 'Kodungaiyur,muthamizhal nagar.', '2506300006', '1', '1', 'upload_files/candidate_tracker/18485115465_cv61741284275675.pdf', NULL, '1', '2025-06-30', 0, '', '3', '59', '2025-07-07', 192000.00, '', '3', '2025-07-08', '1', 'Communication Ok 5050 profile for our roles need to check in training and confirm', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55732', '5151', '2025-07-07', 1, '2025-06-30 05:34:31', 104, '2025-07-05 03:23:22', 0, NULL, 1),
(25603, 'Sridhar S', '13', '6379101321', '9003925952', 'sridharsri0067@gmail.com', '2001-01-28', 24, '1', '2', 'Sampath .jk', 'Farmer', 18000.00, 1, 0.00, 3.00, 'Ranipettai', 'Ranipettai', '2506300007', '', '1', 'upload_files/candidate_tracker/77736691025_SridharSampathResume.pdf', NULL, '1', '2025-06-30', 0, 'Sathish', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-30 05:49:16', 154, '2025-06-30 11:45:41', 0, NULL, 1),
(25604, 'LURTHU VALAN F', '5', '8754619403', '', 'valanlurthu@gmail.com', '2003-03-25', 22, '2', '2', 'Francis Britto', 'Driver', 8000.00, 2, 0.00, 23000.00, 'Trichy', 'Chennai', '2506300008', '1', '1', 'upload_files/candidate_tracker/12862155107_VALANRESUME11.pdf', NULL, '1', '2025-06-30', 0, '', '3', '59', '2025-07-03', 223200.00, '', '3', '2025-12-24', '1', 'Communication Ok Have exp but not in relevant one need to train and open to learn can give a try and check', '5', '1', '2', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55650', '55560', '2025-07-03', 1, '2025-06-30 05:53:26', 60, '2025-07-02 07:31:52', 0, NULL, 1),
(25605, 'Elavarasan', '6', '8111091118', '', 'elavarasan294@gmail.com', '2010-06-30', 0, '2', '2', 'Arasalikumar', 'Farmer', 10.00, 2, 0.00, 16000.00, 'Moolakadu. Serpattu main road (kallakurichi)', 'Poruru. Ayyapanagal', '2506300009', '1', '1', 'upload_files/candidate_tracker/48424044280_Elavarasan.AResume295.pdf', NULL, '3', '2025-06-30', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-06-30 06:12:08', 154, '2025-07-10 07:27:15', 0, NULL, 1),
(25606, 'Akbar basha', '6', '9347261117', '', 'nawabakbar59@gmail.com', '2000-05-19', 25, '2', '2', 'Mohammad Ali Khan', 'Driver', 20000.00, 2, 23000.00, 30000.00, 'Bangalore gb palya', 'Garvepalya', '2506300010', '49', '1', 'upload_files/candidate_tracker/135039873_Akbarbasha.RESUME2.01.docx', NULL, '1', '2025-06-30', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for our job', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-06-30 06:30:29', 154, '2025-07-01 03:05:44', 0, NULL, 1),
(25607, 'R JEYSURIYA', '6', '7639565275', '7604822195', 'Donsuriya4247@gmail.com', '2004-07-04', 20, '2', '2', 'Rajamanickam', 'Daily wages', 10000.00, 1, 0.00, 20000.00, 'Aruppukottai', 'Aruppukottai', '2506300011', '1', '1', 'upload_files/candidate_tracker/13009172869_Jeysuriyaresume.pdf', NULL, '1', '2025-07-02', 0, '', '3', '59', '2025-07-14', 192000.00, '', '3', '2025-09-27', '2', 'Communication Ok fresher need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '2025-07-14', 1, '2025-06-30 06:31:13', 60, '2025-07-14 10:06:35', 0, NULL, 1),
(25608, 'D.ajaz', '6', '9642336471', '', 'www.aejazvks@gmail.com', '2001-04-10', 24, '2', '2', 'Vali sab', 'Mill worker', 25000.00, 1, 23000.00, 30000.00, 'Banglore', 'Gharvebhavi palya', '2506300012', '49', '2', 'upload_files/candidate_tracker/67075019678_AJAZ.newresume2.01.docx', NULL, '1', '2025-06-30', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for our job', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-06-30 06:31:20', 154, '2025-07-01 03:04:52', 0, NULL, 1),
(25609, 'Naveenkumar R', '23', '8760696699', '7538819087', 'naveenkumarrajkumar.designer@gmail.com', '2000-05-19', 25, '3', '2', 'RAJKUMAR N', 'BUSINESSMAN', 72000.00, 4, 0.00, 15000.00, 'Tiruchirapalli', 'Chennai', '2506300013', '', '1', 'upload_files/candidate_tracker/8448336178_NaveenkumarRRESUME.pdf', NULL, '1', '2025-06-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-30 06:31:35', 154, '2025-06-30 12:19:34', 0, NULL, 1),
(25610, 'Pugazhanthi.m', '23', '7305377743', '9566184472', 'Pugazh.mahalingam@gmail.com', '2001-07-05', 23, '3', '2', 'Mahalingam', 'TNHB (Watch man)', 60000.00, 1, 0.00, 15000.00, 'Kumunancha adi', 'Kumunanchavadi', '2506300014', '', '1', 'upload_files/candidate_tracker/65163197884_DocumentfromPugazhanthiM2.pdf', NULL, '1', '2025-06-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-30 06:32:20', 154, '2025-06-30 12:37:50', 0, NULL, 1),
(25611, 'Harish Malikjohn', '6', '8870448512', '9751641615', 'Harish975164161@gmail.com', '2003-04-24', 22, '2', '2', 'Shageetha', 'Home maker', 20000.00, 1, 0.00, 300000.00, 'Thiruvannamalai', 'Chrompet', '2506300015', '45', '1', 'upload_files/candidate_tracker/11267908664_harish2.pdf', NULL, '1', '2025-06-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for core IT profile not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-30 07:13:58', 154, '2025-06-30 05:48:06', 0, NULL, 1),
(25612, 'antony sathiya selvam.', '6', '6374907930', '7845634841', 'antonysathya19@gmail.com', '2005-03-30', 20, '2', '2', 'john peter', 'farmer', 25000.00, 2, 0.00, 300000.00, 'pallikaranai', 'pallikaranai', '2506300016', '45', '1', 'upload_files/candidate_tracker/78699398768_Sathyaresume.pdf', NULL, '1', '2025-06-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for oour roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-06-30 07:16:15', 154, '2025-06-30 03:47:34', 0, NULL, 1),
(25613, 'N Anandharaja', '6', '6382792563', '9840620658', 'anandraja5624@gmail.com', '2004-08-28', 20, '2', '2', 'NEELAMEGAM', 'Tamil/english', 25000.00, 1, 0.00, 20000.00, 'Perambalur Dt, neikuppai', 'mogappair east', '2506300017', '1', '1', 'upload_files/candidate_tracker/24763048796_Rajaresume2025.pdf', NULL, '1', '2025-06-30', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-06-30 07:31:58', 154, '2025-06-30 04:15:23', 0, NULL, 1),
(25614, 'Vishnu', '33', '8056221305', '', 'vishnusakthivel61@gmail.com', '2005-01-21', 20, '3', '2', 'Sakthivel', 'Self employed', 30000.00, 2, 0.00, 19000.00, 'Chennai', 'Chennai', '2506300018', '', '1', 'upload_files/candidate_tracker/76080522570_VISHNURESUME.pdf', NULL, '1', '2025-07-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-06-30 07:38:28', 1, '2025-06-30 07:43:06', 0, NULL, 1),
(25615, '4381 4444 1320', '4', '6369554603', '', 'lavanyaka.3@gmail.com', '2003-11-08', 21, '2', '2', 'K.p.adhi narayanan', 'X army retarded', 100000.00, 1, 0.00, 18000.00, 'Ambattur', 'Ambattur', '2506300019', '1', '1', 'upload_files/candidate_tracker/26155639209_LAVANYA.ARESUME.pdf', NULL, '1', '2025-07-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-06-30 07:44:29', 1, '2025-06-30 07:55:22', 0, NULL, 1),
(25616, 'ABUTHALHA MOHAMED FAROOK', '6', '7708638467', '', 'Abufarook85@gmail.com', '1997-10-07', 27, '2', '2', 'MOHAMED FAROOK i', 'Restaurant job', 40000.00, 2, 0.00, 25000.00, 'Nagapattinam', 'Nagapattinam', '2506300020', '1', '2', 'upload_files/candidate_tracker/6964416820_MYCV.pdf', NULL, '1', '2025-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles career gap he was into own business  time being he s looking for as he is getting married asap\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-06-30 08:47:58', 154, '2025-07-07 01:10:10', 0, NULL, 1),
(25617, 'Rekha R', '6', '9845116694', '9845118864', 'rekha18bcom2009@gmail.com', '1984-11-11', 40, '2', '1', 'Manjunatha', 'Manager', 25000.00, 1, 21000.00, 29000.00, 'Bangalore', 'Bangalore', '2506300021', '57', '2', 'upload_files/candidate_tracker/54837543992_Rekhanewresume1.docx', NULL, '1', '2025-06-30', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-06-30 08:54:35', 154, '2025-07-01 03:03:18', 0, NULL, 1),
(25618, 'stane cruise s', '23', '9442141915', '8903450181', 'stanecruise001@gmail.com', '2003-04-11', 22, '3', '2', 'selvan', 'sailor', 600000.00, 1, 0.00, 13000.00, 'thoothukudi', 'chennai', '2506300022', '', '1', 'upload_files/candidate_tracker/55230074594_StaneResume.pdf', NULL, '1', '2025-06-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-06-30 09:26:44', 154, '2025-06-30 03:04:21', 0, NULL, 1),
(25619, 'Saraswathi R', '6', '7708420464', '', 'divyathomas3107@gmail.com', '2004-08-31', 20, '2', '2', 'R.Mahalakshmi', 'House wife', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2506300023', '1', '1', 'upload_files/candidate_tracker/26350932586_Saraswathiresume1.pdf', NULL, '1', '2025-07-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-06-30 10:54:00', 154, '2025-07-01 04:24:53', 0, NULL, 1),
(25620, 'AMUTHAGANESH T', '13', '9080287564', '', 'amuthaganeshjothi@gmail.com', '1999-08-03', 25, '2', '2', 'JOTHI', 'Software developer', 20000.00, 2, 0.00, 0.00, 'Madurai', 'Chennai', '2506300024', '1', '1', 'upload_files/candidate_tracker/86427764817_amuthaganeshcodes.pdf', NULL, '1', '2025-07-03', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-06-30 06:34:52', 154, '2025-07-03 10:50:54', 0, NULL, 1),
(25621, 'Nateqa A', '6', '9342304443', '', 'zianateqa06@gmail.com', '2002-07-06', 22, '2', '2', 'Mohammed Ahsan Rahmani', 'Preacher', 30000.00, 2, 30000.00, 40000.00, 'Hsr layout', 'Hsr layout', '2507010001', '49', '2', 'upload_files/candidate_tracker/47532020634_Natresumeupd.pdf', NULL, '1', '2025-07-01', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is expecting high salary but suggested 22 to 23k for dm', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-07-01 04:23:08', 154, '2025-07-01 02:55:35', 0, NULL, 1),
(25622, 'Amsavalli.M', '4', '7538880727', '9025710907', 'dharsinim2021@gmail.com', '2005-08-17', 19, '2', '2', 'Murugesan.A', 'Formar', 60000.00, 4, 0.00, 15000.00, 'Pattukottai', 'Thoraipakam, PTC', '2507010002', '3', '1', 'upload_files/candidate_tracker/31714267606_AMSAVALLIM.pdf', NULL, '1', '2025-07-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-01 04:51:20', 1, '2025-07-01 05:01:25', 0, NULL, 1),
(25623, 'Vandhana', '6', '8015253377', '', 'vandhanabalasubramanian5@gmail.com', '2002-10-26', 22, '2', '2', 'Balasubramaniam', 'Software developer', 3000000.00, 0, 0.00, 20000.00, 'Anna nagar', 'Anna nagar', '2507010003', '1', '1', 'upload_files/candidate_tracker/91244453697_vandhanacv2.pdf', NULL, '1', '2025-07-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-01 04:52:53', 154, '2025-07-09 12:47:29', 0, NULL, 1),
(25624, 'Kaviya', '6', '6384313910', '', 'kaviyanajaraj@gmail.com', '2004-02-02', 21, '2', '2', 'Nagarajan', 'Textiles designer', 200000.00, 1, 15000.00, 25000.00, 'Salem', 'Chennai', '2507010004', '1', '2', 'upload_files/candidate_tracker/51472241539_Kaviyaresume2.pdf', NULL, '1', '2025-07-02', 0, '', '3', '59', '2025-07-07', 192000.00, '', '3', '2025-07-07', '2', 'Communication Ok have exp but not in relevant seems to be fit for our roles let us try and confirm in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '2025-07-07', 1, '2025-07-01 05:25:06', 60, '2025-07-05 10:00:45', 0, NULL, 1),
(25625, 'Kiruthika R', '6', '9360085511', '', 'keerthiravi1109@gmail.com', '2001-09-11', 23, '2', '2', 'Kalaiarasi', 'Government job', 25000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2507010005', '1', '1', 'upload_files/candidate_tracker/47116203921_kiruthika.pdf', NULL, '1', '2025-07-01', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55555', '5151', '1970-01-01', 1, '2025-07-01 05:55:34', 104, '2025-07-01 02:51:57', 0, NULL, 1),
(25626, '', '0', '9566872089', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507010006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-01 05:56:02', 0, NULL, 0, NULL, 1),
(25627, 'Naveena Nagaraj', '6', '9894841304', '', 'navinagaraj17@gmail.com', '2003-05-17', 22, '2', '2', 'Nagaraj', 'TNEB', 30000.00, 1, 0.00, 15000.00, 'Bhavani, Erode', 'HSR layout', '2507010007', '1', '1', 'upload_files/candidate_tracker/78793715549_Nontech.pdf', NULL, '1', '2025-07-01', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for our job', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55555', '5151', '1970-01-01', 1, '2025-07-01 05:58:56', 104, '2025-07-01 02:52:09', 0, NULL, 1),
(25628, 'Naveen D', '6', '7094812382', '9952053230', 'abinaveen68@gmail.com', '2000-07-12', 24, '2', '2', 'Dhanapalan', 'Clerk', 25000.00, 2, 15000.00, 15000.00, 'Redhills chennai', 'Redhills chennai', '2507010008', '1', '2', 'upload_files/candidate_tracker/76381824795_resume.pdf', NULL, '1', '2025-07-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-07-01 05:59:51', 154, '2025-07-01 01:13:03', 0, NULL, 1),
(25629, '', '0', '8248114950', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507010009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-01 06:00:36', 0, NULL, 0, NULL, 1),
(25630, 'A POOJASRI', '6', '9342620489', '8344835975', 'apoojasri413@gmail.com', '2004-09-22', 20, '2', '2', 'Shanmugapriya', 'Working in jewellery shop', 17000.00, 1, 0.00, 15000.00, 'Annanagar East', 'Annanagar East', '2507010010', '1', '1', 'upload_files/candidate_tracker/78346945000_BlackandwhiteGreyscalePhotoStudentResume202506171826190000.pdf', NULL, '1', '2025-07-01', 0, '', '3', '59', '2025-07-03', 174000.00, '', '3', '2025-12-01', '2', 'communication Ok Fresher for our sales roles can give a try and check in training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-07-03', 1, '2025-07-01 06:14:34', 60, '2025-07-02 07:33:36', 0, NULL, 1),
(25631, 'RANJANI V', '4', '8220145479', '8428226915', 'ranjiniv685@gmail.com', '2003-09-18', 21, '2', '2', 'Velmurugan', 'Work', 20000.00, 1, 0.00, 19000.00, 'Villupuram', 'Poomamallee', '2507010011', '1', '2', 'upload_files/candidate_tracker/90553115732_resumeorg.pdf', NULL, '1', '2025-07-01', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55824', '55560', '1970-01-01', 1, '2025-07-01 06:18:21', 154, '2025-07-01 04:22:38', 0, NULL, 1),
(25632, 'SURENDHAR k', '6', '6380483930', '9360862743', 'surendharsurendhar717@gmail.com', '2006-04-23', 19, '2', '2', 'KANDHASAMY M', 'BA CRIMINOLOGY', 19000.00, 1, 0.00, 20000.00, 'No,38, RAGAVAN NAGAR', 'Kodungaiyur muthamizhal nagar', '2507010012', '1', '1', 'upload_files/candidate_tracker/17394541642_Document1.docx', NULL, '1', '2025-07-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-01 07:02:26', 154, '2025-07-04 03:49:22', 0, NULL, 1),
(25633, 'senthil kumar d', '6', '8838195037', '9962878650', 'senthilhitler777@gmail.com', '2004-01-29', 21, '2', '2', 'manimegalai.d', 'account manager', 120000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2507010013', '1', '1', 'upload_files/candidate_tracker/99472947222_newsenthilresume.png.pdf', NULL, '1', '2025-07-01', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-01 07:12:54', 154, '2025-07-01 02:37:17', 0, NULL, 1),
(25634, 'Vijayapritha', '4', '6369039557', '9597863278', 'vijayapreetha8@gmail.com', '1999-09-14', 25, '2', '1', 'Praveenkumar', 'IT employer', 40000.00, 1, 10000.00, 15000.00, '192/7, VALUVAR STREET, PORU', '192/7, VALLUVAR STREET,PORUR', '2507010014', '1', '2', 'upload_files/candidate_tracker/26240692355_VijayaprithaResume.pdf', NULL, '1', '2025-07-01', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55824', '55560', '1970-01-01', 1, '2025-07-01 07:25:11', 154, '2025-07-01 04:24:06', 0, NULL, 1),
(25635, 'prakash p', '6', '9551716417', '', 'soloprakash2705@gmail.com', '2004-02-21', 21, '2', '2', 'saritha', 'house wife', 12000.00, 2, 15000.00, 18000.00, 'chennai', 'chennai', '2507010015', '1', '2', 'upload_files/candidate_tracker/2558128887_Me.pdf', NULL, '1', '2025-07-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-01 07:29:08', 154, '2025-07-01 03:09:08', 0, NULL, 1),
(25636, 'Poovaranjani raja', '6', '7558192047', '7010957023', 'ranjani812005@gmail.com', '2005-01-08', 20, '2', '2', 'Raja .V', 'Farmer', 9000.00, 1, 0.00, 16000.00, 'Aduthakudi , Ramanathapuram', 'Karapakkam, chennai', '2507010016', '1', '1', 'upload_files/candidate_tracker/49740876260_poovaranjaniR.pdf', NULL, '1', '2025-07-03', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-01 07:39:29', 154, '2025-07-03 03:47:56', 0, NULL, 1),
(25637, 'Subhashini', '6', '7200187576', '9751667087', '0906subhashini@gmail.com', '2005-06-09', 20, '2', '2', 'Ramesh Sudha', 'Wages', 20000.00, 1, 0.00, 20000.00, 'Villupuram', 'Tambaram', '2507010017', '1', '1', 'upload_files/candidate_tracker/59839933682_DOC20250628WA0008..pdf', NULL, '1', '2025-07-04', 0, '', '3', '59', '2025-07-07', 174000.00, '', '3', '2025-07-09', '2', 'Communication Ok but seems to be doubt in long run location too long she is from tambaram 5050', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '2025-07-07', 1, '2025-07-01 09:31:33', 60, '2025-07-05 10:09:22', 0, NULL, 1),
(25638, '304906293635', '31', '6380272933', '9360353758', 'durgeshpradeep63@gmail.com', '2003-10-23', 21, '5', '2', 'Raja', 'Driver', 5000.00, 0, 0.00, 3.50, 'Theni', 'Chennai', '2507010018', '', '1', 'upload_files/candidate_tracker/102289081_PRADEEPAI1..pdf', NULL, '1', '2025-07-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-01 09:39:01', 1, '2025-07-01 09:43:04', 0, NULL, 1),
(25639, 'Arunraj', '13', '9042848527', '', 'ssarunraj0@gmail.com', '2004-07-18', 20, '5', '2', 'Subramani', 'Weaver', 25000.00, 1, 0.00, 25000.00, 'Arani', 'Chennai', '2507010019', '', '1', 'upload_files/candidate_tracker/78311178747_ARUNRAJSITResumeFinalOnePage1.pdf', NULL, '1', '2025-07-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-01 10:38:09', 1, '2025-07-01 10:42:25', 0, NULL, 1),
(25640, 'JOHNSON RAJA M', '4', '9597109810', '9361491391', 'johnsonrajam18@gmail.com', '2005-02-14', 20, '2', '2', 'Charles', 'Bussiness', 50000.00, 1, 0.00, 18000.00, 'COIMBATORE, TAMILNADU', 'BANGLORE, KARANATAKA', '2507010020', '49', '1', 'upload_files/candidate_tracker/26781003263_JOHNSON.pdf', NULL, '1', '2025-07-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-01 10:46:06', 1, '2025-07-01 10:50:32', 0, NULL, 1),
(25641, '500759054140', '13', '9962425939', '', 'balajigovindaraj2699@gmail.com', '1999-06-02', 26, '5', '2', 'Govind', 'Deiver', 10000.00, 1, 0.00, 25000.00, 'Thanjavur', 'Thanjavur', '2507010021', '', '1', 'upload_files/candidate_tracker/77996931397_BalajiGovind.pdf', NULL, '1', '2025-07-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-01 11:06:29', 1, '2025-07-01 11:10:13', 0, NULL, 1),
(25642, 'Rajkumar Senthil', '13', '8608987157', '', 'srajkumarop@gmail.com', '2003-03-03', 22, '2', '2', 'Senthil', 'Farmer', 20000.00, 1, 0.00, 250000.00, 'Mayiladuthurai', 'Chennai', '2507010022', '1', '1', 'upload_files/candidate_tracker/29589111684_RAJKUMARS.pdf', NULL, '1', '2025-07-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-01 11:40:59', 154, '2025-07-03 12:21:17', 0, NULL, 1),
(25643, 'Suryaprakash k k', '6', '8838108466', '', 'blackdesigner007@gmail.com', '2002-01-21', 23, '2', '2', 'P k kannan', '3d generalist', 20000.00, 0, 0.00, 16000.00, 'Red hills Chennai', 'Ambattur Chennai', '2507010023', '1', '1', 'upload_files/candidate_tracker/69636914882_suriyaresume.pdf', NULL, '1', '2025-07-05', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-07-01 11:42:56', 154, '2025-07-05 06:17:46', 0, NULL, 1),
(25644, 'Ganesh.k', '6', '8122124818', '', 'ganeshkaruppasamy1106@gmail.com', '2003-06-11', 22, '2', '2', 'Karuppasamy G', 'Carpenter', 25000.00, 1, 14000.00, 1600019000.00, 'Chennai Nanganallur', 'Chennai', '2507010024', '1', '2', 'upload_files/candidate_tracker/65646251952_GaneshresumeCVResume3.pdf', NULL, '1', '2025-07-03', 30, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-01 11:45:39', 154, '2025-07-03 12:34:32', 0, NULL, 1),
(25645, 'Arunmathavan K', '13', '9361816855', '', 'arunmathavankamaraj2003@gmail.com', '2003-03-13', 22, '2', '2', 'Kamaraj', 'Daily wages', 17000.00, 1, 0.00, 20000.00, 'Venkateshwarapuram, Tenkasi district', 'Venkateshwarapuram, Tenkasi district', '2507010025', '1', '1', 'upload_files/candidate_tracker/97637501595_ArunmathavanCV.pdf', NULL, '1', '2025-07-02', 0, '', '3', '59', '2025-08-04', 120000.00, '', '4', '2025-08-30', '2', 'agreed as per company norms, proceeding with Internship and employement', '2', '1', '2', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '2025-08-04', 1, '2025-07-01 11:48:19', 60, '2025-08-04 12:54:11', 0, NULL, 1),
(25646, 'Aishwarya B', '4', '7550279390', '6369080318', 'aishwaryarajan779@gmail.com', '2004-12-12', 20, '2', '2', 'Vasantha B', 'House wife', 5000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2507010026', '1', '1', 'upload_files/candidate_tracker/66690491889_Aishwaryasresume.pdf', NULL, '1', '2025-07-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-07-01 11:54:38', 1, '2025-07-01 12:05:38', 0, NULL, 1),
(25647, 'Surya', '2', '8667660815', '9840959567', 'suryajv2002@gmail.com', '2002-08-09', 22, '6', '2', 'Vijaya Kumar', 'Software developer', 2.00, 1, 0.00, 15000.00, 'Royapettah', 'Choolaimedu', '2507010027', '', '1', 'upload_files/candidate_tracker/52001714932_suryajv200267658dfee5b951.pdf', NULL, '1', '2025-07-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-01 12:36:12', 1, '2025-07-01 12:43:47', 0, NULL, 1),
(25648, 'Sanjay G', '6', '6383320045', '', 'sanjaybb1325@gmail.com', '2003-10-10', 21, '2', '2', 'Gubendran', 'Watch machanic', 120000.00, 1, 0.00, 16000.00, 'CHENNAI', 'CHENNAI', '2507010028', '1', '1', 'upload_files/candidate_tracker/73713981957_SANJAYG1.pdf202507011009080000.pdf', NULL, '1', '2025-07-02', 0, '', '3', '59', '2025-07-07', 192000.00, '', '3', '2025-07-10', '1', 'Communication Ok let us check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55732', '5151', '2025-07-07', 1, '2025-07-01 01:08:56', 60, '2025-07-05 10:04:48', 0, NULL, 1),
(25649, 'Muthu prasath', '5', '9952435916', '', 'Prasathj3333@gmail.com', '1997-02-01', 28, '2', '2', 'Jeyasankar', 'Business', 60000.00, 2, 306900.00, 380000.00, 'Chennai', 'Chennai', '2507010029', '1', '2', 'upload_files/candidate_tracker/50459142732_DOC20241207WA0001.5.pdf', NULL, '1', '2025-07-02', 0, '', '3', '59', '2025-07-14', 337000.00, '', '3', '2025-07-16', '1', 'Communication Ok have exp in bank sales have career gap can be trained ini our roles check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55656', '55557', '2025-07-14', 1, '2025-07-01 01:26:46', 60, '2025-07-12 03:49:56', 0, NULL, 1),
(25650, '2135 8846 9754', '13', '9003896119', '', 'msksrisriman2002@gmail.com', '2003-12-13', 21, '5', '2', 'Murugan M', 'Mechenic', 100000.00, 2, 0.00, 20000.00, 'Tindivanam', 'Chennai', '2507010030', '', '1', 'upload_files/candidate_tracker/13903282183_Srimanjava202507010822220000.pdf', NULL, '1', '2025-07-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-01 02:29:31', 1, '2025-07-01 02:33:39', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25651, 'J Nishath fathima', '6', '7358550801', '7305639746', 'nishathfathima132@gmail.com', '2002-01-08', 23, '2', '2', 'Jameel', 'Car Driver', 30000.00, 2, 18500.00, 20000.00, 'Old Washermanpet ,mint', 'Old Washermanpet ,mint', '2507020001', '1', '2', 'upload_files/candidate_tracker/45471598969_j.nishathfathima.pdf', NULL, '1', '2025-07-30', 0, '', '3', '59', '2025-07-31', 195000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in calling sales HDFC/Sundaram Finance have gap too can be trained in our roles and check in training', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-07-31', 1, '2025-07-02 04:41:45', 60, '2025-07-30 06:27:46', 0, NULL, 1),
(25652, '', '0', '7358980203', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507020002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-02 04:42:39', 0, NULL, 0, NULL, 1),
(25653, 'Kishore R', '6', '7305382908', '', 'Kishoreramu899@gmail.com', '2002-09-28', 22, '2', '2', 'B.ramu', 'Driver', 18000.00, 1, 0.00, 2.15, 'Gummidipoondi', 'Gummidipoondi', '2507020003', '27', '1', 'upload_files/candidate_tracker/54509994719_RKishoreATSResumeFinal.docx', NULL, '1', '2025-07-02', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-02 04:52:16', 154, '2025-07-02 11:10:03', 0, NULL, 1),
(25654, 'Monisha s', '6', '6369559580', '6383697144', 'monishas01082003@gmail.com', '2003-08-01', 21, '3', '2', 'Jothilakshmi s', 'Housekeeping', 12000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2507020004', '', '1', 'upload_files/candidate_tracker/76117871961_monishasuresh1.pdf', NULL, '1', '2025-07-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-02 04:58:29', 154, '2025-07-02 12:05:40', 0, NULL, 1),
(25655, 'Isha.R', '6', '7397411883', '6380973482', 'isharavikumar1320@gmail.com', '2003-01-13', 22, '3', '2', 'Ravikumar', 'Flour mill', 20000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2507020005', '', '1', 'upload_files/candidate_tracker/52412382373_CV2025062917583478.pdf', NULL, '1', '2025-07-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-02 05:09:39', 154, '2025-07-02 12:04:47', 0, NULL, 1),
(25656, 'Abitha E', '6', '9487932451', '6374389251', 'abiarthi855@gmail.com', '2003-03-23', 22, '2', '2', 'ELUMALAI N', 'Farmer', 15000.00, 2, 0.00, 15000.00, '204 radhanagar Chromepet Chennai', '204 radhanagar Chromepet Chennai', '2507020006', '45', '1', 'upload_files/candidate_tracker/75598594246_Abitha.pdf', NULL, '1', '2025-07-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'open for non voice only not for sales calling', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-02 05:48:33', 154, '2025-07-02 12:36:05', 0, NULL, 1),
(25657, 'M Ramya', '6', '9361206001', '', 'ramyasrimano@gmail.com', '2000-11-19', 24, '2', '2', 'Manoharan', 'Agriculture', 20000.00, 2, 0.00, 15000.00, 'Chromepet', 'Chromepet', '2507020007', '45', '1', 'upload_files/candidate_tracker/84069446557_Resumeramya.pdf', NULL, '1', '2025-07-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice process only', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-02 05:48:41', 154, '2025-07-02 12:50:11', 0, NULL, 1),
(25658, 'Gokul S.S', '6', '9791614176', '', 'gokulss2248@gmail.com', '2003-03-30', 22, '2', '2', 'Parent', 'Daily Wages', 18000.00, 1, 15300.00, 20000.00, 'Salem', 'Thuraipakkam, Chennai', '2507020008', '1', '2', 'upload_files/candidate_tracker/61851882049_Gokulresume1.pdf', NULL, '1', '2025-07-02', 0, '', '3', '59', '2025-07-07', 204000.00, '', '3', '2025-07-07', '2', 'Communication Ok Can be trained in our roles and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1287', '5151', '2025-07-07', 1, '2025-07-02 05:52:39', 60, '2025-07-05 09:58:24', 0, NULL, 1),
(25659, 'LOGESHKUMAR V', '27', '8940552051', '9489015082', 'logeshkumar282002@gmail.com', '2002-08-02', 22, '3', '2', 'Vairamuthu A', 'Daily wages', 20000.00, 1, 0.00, 2.00, 'Megamalai estate, chinnamanur Vali Theni District', 'Chennai T.nagar', '2507020009', '', '1', 'upload_files/candidate_tracker/43546291524_logeshkumarVCV.pdf', NULL, '1', '2025-07-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-02 05:53:48', 154, '2025-07-02 11:35:46', 0, NULL, 1),
(25660, 'Manimaran s', '6', '7358011282', '7338929186', 'lfmanimaran269@gmail.com', '2000-09-26', 24, '2', '2', 'Pramila,sivanasan', 'Mother house wife, father supervisor', 15000.00, 1, 16000.00, 17000.00, 'Chennai, ayanavaram', 'Chennai ayanavaram', '2507020010', '1', '2', 'upload_files/candidate_tracker/99828078872_msresume3july1.pdf', NULL, '3', '2025-07-02', 10, '', '1', '154', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-02 05:55:41', 154, '2025-07-02 01:08:00', 0, NULL, 1),
(25661, 'R Susanna', '6', '8925352529', '9345189124', 'Susanglaspell1905@gmail.com', '1999-12-12', 25, '2', '2', 'Bharathi.R', 'Nithiya Amirtham', 20.00, 1, 0.00, 16.00, 'No 35/4 pulidevan 2nd cross Street', 'Ashok pillar', '2507020011', '1', '1', 'upload_files/candidate_tracker/56243902497_BlueandGraySimpleProfessionalCVResume2025031720215800001.pdf', NULL, '1', '2025-07-02', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-02 06:09:31', 154, '2025-07-02 01:09:37', 0, NULL, 1),
(25662, 'Divya priya.p', '6', '7418169176', '', 'pdivyapriya1@gmail.com', '2000-10-01', 24, '2', '2', 'Prabhakaran', 'NA', 15000.00, 0, 0.00, 20000.00, 'Chromepet', 'Chromepet', '2507020012', '45', '1', 'upload_files/candidate_tracker/93278785777_DIVYAPRIYARESUME2.pdf', NULL, '1', '2025-07-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Core IT profile and for time being looking into this will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-02 06:10:11', 154, '2025-07-02 12:34:01', 0, NULL, 1),
(25663, 'Girija V', '6', '9384627127', '9962711927', 'vgirijagirija608@gmail.com', '2003-09-18', 21, '2', '2', 'Velu', 'Book buliding', 15000.00, 2, 0.00, 18000.00, 'ROYAPETTAH', 'ROYAPETTAH', '2507020013', '56', '1', 'upload_files/candidate_tracker/70389483344_Girijaresume.pdf', NULL, '1', '2025-07-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication is little bit ok and performance is not good.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-07-02 06:52:33', 154, '2025-07-02 03:36:08', 0, NULL, 1),
(25664, 'Suba Lakshmi K', '6', '8525959502', '9965140850', 'Suba82783@gmail.com', '2002-09-11', 22, '2', '2', 'Krishnan', 'Driver', 18000.00, 1, 0.00, 17000.00, 'Vadipatti Madurai', 'T Nagar Chennai', '2507020014', '1', '1', 'upload_files/candidate_tracker/12027400267_Subalakshmi.k2.pdf', NULL, '1', '2025-07-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-02 09:46:00', 154, '2025-07-03 04:22:08', 0, NULL, 1),
(25665, 'Bharathkumar.D', '6', '8428569647', '8838108466', 'bharath17032000@gmail.com', '2000-03-17', 25, '2', '2', 'D divya', '3d model', 40000.00, 0, 0.00, 17000.00, 'T Nagar', 'T Nagar', '2507020015', '1', '1', 'upload_files/candidate_tracker/18589263189_resumebharathkumar.pdf', NULL, '1', '2025-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles m,uch interested to work in designing based roles only\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-02 11:42:10', 154, '2025-07-05 06:17:53', 0, NULL, 1),
(25666, 'Yuvashree Gowtham', '4', '7200455204', '7200455203', 'rsasikala171989@gmail.com', '2005-06-20', 20, '2', '2', 'Ramesh', 'employee', 15.00, 1, 0.00, 15.00, 'Tamilnadu', 'Tamilnadu', '2507020016', '56', '1', 'upload_files/candidate_tracker/44424725246_interview.pdf', NULL, '1', '2025-07-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-02 11:49:32', 1, '2025-07-02 12:13:52', 0, NULL, 1),
(25667, 'Hariharan A', '13', '6381619911', '7806978039', 'hariharan.ariyagounden@gmail.com', '2003-07-01', 22, '5', '2', 'ariyagounden', 'mechanic', 25000.00, 1, 0.00, 20000.00, 'Erode', 'Erode', '2507020017', '', '1', 'upload_files/candidate_tracker/43299030562_HariharanFullstackdeveloper.pdf', NULL, '1', '2025-07-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-02 12:35:15', 1, '2025-07-02 01:00:15', 0, NULL, 1),
(25668, 'KISHORE S', '6', '9042565185', '', 'kishoreselvam1108@gmail.com', '2004-08-11', 20, '1', '2', 'Selvam', 'Van driver', 17000.00, 2, 0.00, 17000.00, 'Thiruvottiyur', 'Thiruvottiyur,chennai-600019', '2507030001', '', '1', 'upload_files/candidate_tracker/63962511063_DOC20240619WA0001.1.pdf', NULL, '1', '2025-07-03', 0, 'P1404', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not well.also he couldxquott interact well.sustainable is doubt...', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-07-03 05:14:13', 154, '2025-07-03 12:35:32', 0, NULL, 1),
(25669, 'mohammed upayathulla m', '31', '9345611217', '', 'mohammedupayathulla@gmail.com', '2002-04-18', 23, '2', '2', 'mubarak ali', 'mutton stall', 20000.00, 1, 0.00, 2.00, 'Linemedu, Salem', 'vadapalani chenn', '2507030002', '26', '1', 'upload_files/candidate_tracker/90144604775_MohammedupayathullaM2.pdf', NULL, '1', '2025-07-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-03 05:18:09', 154, '2025-07-03 10:54:21', 0, NULL, 1),
(25670, 'SIVASHANGARI S U', '6', '7845160423', '', 'shang2597@gmail.com', '1997-10-25', 27, '1', '2', 'Sethuraman', 'Business', 200000.00, 1, 0.00, 19000.00, 'Devakottai', 'Devakottai', '2507030003', '', '1', 'upload_files/candidate_tracker/95769695160_shangresume..pdf', NULL, '1', '2025-07-03', 0, 'C99155', '3', '59', '2025-07-07', 192000.00, '', '3', '2025-09-30', '2', 'Communication Ok Need to check in training and confirm long career gap', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55732', '5151', '2025-07-07', 1, '2025-07-03 05:36:40', 60, '2025-07-05 10:06:19', 0, NULL, 1),
(25671, 'SANTHOSH', '6', '9176100411', '9884043322', 'Santhoshkishali21@gmail.com', '2002-10-21', 22, '2', '2', 'CHANDRASAKERAN', 'Chief security', 30000.00, 1, 24000.00, 23000.00, 'Pondycherry', 'Chooli', '2507030004', '1', '2', 'upload_files/candidate_tracker/87901406887_RESUMECMC.pdf', NULL, '3', '2025-07-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-03 05:56:52', 154, '2025-07-03 01:23:34', 0, NULL, 1),
(25672, 'jeelani', '6', '6385707048', '9952088041', 'ccjeelani@gmail.com', '2002-10-31', 22, '2', '2', 'chanma', 'house wife', 17500.00, 0, 210488.00, 240000.00, 'arakkonam', 'arakkonamn', '2507030005', '45', '2', 'upload_files/candidate_tracker/40140198913_JeelaniNew.pdf', NULL, '1', '2025-07-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communcation Good But too long distance daily travel not possible will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-03 05:59:33', 154, '2025-07-03 04:15:09', 0, NULL, 1),
(25673, 'Magesh Kumar K', '5', '9840155940', '', 'Magesh.2898@gmail.com', '1999-06-28', 26, '2', '2', 'Kuttisamy.P', 'Govt. Sector', 400000.00, 1, 18000.00, 30000.00, 'Chennai', 'Choolai', '2507030006', '1', '2', 'upload_files/candidate_tracker/29811512705_MAGESHKUMARKpdf1.pdf', NULL, '1', '2025-07-03', 15, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55656', '55557', '1970-01-01', 1, '2025-07-03 06:15:08', 154, '2025-07-03 04:26:06', 0, NULL, 1),
(25674, 'MARIYA ROSELIN A', '6', '6385676663', '', 'roselin160702@gmail.com', '2002-07-16', 22, '2', '2', 'Arulsamy', 'Farmer', 20000.00, 1, 0.00, 16000.00, 'Ramanathapuram', 'Chennai', '2507030007', '1', '1', 'upload_files/candidate_tracker/29544414366_cv.roselin.pdf', NULL, '1', '2025-07-03', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-03 06:27:29', 154, '2025-07-03 03:46:56', 0, NULL, 1),
(25675, 'Roobini K', '6', '9003411229', '7358474412', 'divyaroobi2004@gmail.com', '2004-04-06', 21, '2', '2', 'Kannan', 'Auto driver', 10000.00, 1, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2507030008', '1', '1', 'upload_files/candidate_tracker/63460297911_Roobini.docx', NULL, '1', '2025-07-04', 0, '', '3', '59', '2025-07-10', 186000.00, '', '1', '1970-01-01', '2', 'Communication Good seems to put effort in learning can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-07-10', 1, '2025-07-03 07:06:12', 60, '2025-07-09 06:21:53', 0, NULL, 1),
(25676, '', '0', '9342425509', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507030009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-03 07:09:31', 0, NULL, 0, NULL, 1),
(25677, 'PRIYADARSHINI SIVAKUMAR', '6', '7200397439', '9087736540', 'priyadharshini050305@gmail.com', '2005-03-05', 20, '2', '2', 'E.sivakumar', 'Tailor', 24000.00, 1, 0.00, 16000.00, 'CHENNAI', 'CHENNAI', '2507030010', '1', '1', 'upload_files/candidate_tracker/77860585853_SPriyaDarshiniResume1.pdf', NULL, '1', '2025-07-03', 0, '', '3', '59', '2025-07-07', 174000.00, '', '3', '2025-07-08', '2', 'Communication Ok Fresher for our roles will check and confirm in training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '2025-07-07', 1, '2025-07-03 07:10:01', 60, '2025-07-05 10:07:44', 0, NULL, 1),
(25678, '', '0', '9025640129', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507030011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-03 09:13:49', 0, NULL, 0, NULL, 1),
(25679, 'M.shobana', '6', '9025640127', '9361724070', 'shoh10168@gmail.com', '2005-10-17', 19, '2', '2', 'Marimuthu', 'Ac operator', 30000.00, 1, 0.00, 16000.00, 'Madhuravoyal', 'Chennai', '2507030012', '27', '1', 'upload_files/candidate_tracker/53281149501_resume1.pdf', NULL, '1', '2025-07-03', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-03 09:26:11', 154, '2025-07-03 04:08:04', 0, NULL, 1),
(25680, 'vijay sebastin', '6', '9361724070', '9025640129', 'vijaysebastin007@gmail.com', '2005-08-21', 19, '2', '2', 'ruso', 'hotol work', 20000.00, 1, 0.00, 15000.00, 'sesh st varutharajapura pudupet chennai', 'chennai', '2507030013', '27', '1', 'upload_files/candidate_tracker/90543228456_ImagetoPDF2025030514.39.56.pdf', NULL, '1', '2025-07-03', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-03 09:27:51', 154, '2025-07-03 04:07:30', 0, NULL, 1),
(25681, 'umesh k', '13', '6369012237', '', 'umeshmanju2424@gmail.om', '2001-03-09', 24, '3', '2', 'kannadhasan', 'Farmer', 25000.00, 0, 0.00, 20000.00, 'thiruthuraipoondi', 'Chennai', '2507030014', '', '1', 'upload_files/candidate_tracker/25341239788_UmeshAccordupdateresume.pdf', NULL, '1', '2025-07-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-03 09:50:32', 1, '2025-07-03 09:57:37', 0, NULL, 1),
(25682, 'Logeshwaran k', '6', '6382667038', '9080062150', 'lokeshwarank9013@gmail.com', '2000-02-12', 25, '2', '2', 'Karuppaiya M', 'Labour', 35000.00, 1, 17500.00, 20000.00, 'Thiruvottriyur', 'Thiruvottriyur', '2507030015', '1', '2', 'upload_files/candidate_tracker/41930322744_CV2025041120110242.pdf', NULL, '1', '2025-07-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have exp in sales but he got terminated in his previous for mislead and unproefssional business ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-03 09:57:46', 154, '2025-07-08 04:01:53', 0, NULL, 1),
(25683, 'naveenkumar venkatesan', '6', '6369662411', '9952959588', 'naveenkumar390w@gmail.com', '2004-06-29', 21, '2', '2', 'venkatesan.r', 'car driver', 70000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2507030016', '1', '1', 'upload_files/candidate_tracker/57608152374_NaveenKumarCVResume2.pdf', NULL, '1', '2025-07-05', 0, '', '3', '59', '2025-07-07', 192000.00, '', '3', '2025-07-09', '1', 'Communication Ok Fresher can be trained in our roles will check and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '2025-07-07', 1, '2025-07-03 11:42:36', 60, '2025-07-05 06:53:40', 0, NULL, 1),
(25684, 'Sahana parveen. M', '6', '8754990303', '9751405332', 'm.sahanaparveen2004@gmail.com', '2004-09-14', 20, '2', '1', 'Mohamed Ali.A', 'Car Driver', 130000.00, 1, 0.00, 13000.00, 'Thulasingam street, pudupet,chennai', 'Thulasingam street, pudupet,chennai', '2507030017', '1', '1', 'upload_files/candidate_tracker/26757643977_Resume.pdf', NULL, '1', '2025-07-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-03 12:07:33', 154, '2025-07-04 11:26:26', 0, NULL, 1),
(25685, 'V.C.Rakshana', '6', '9092166583', '', 'rakshanarakshana632@gmail.com', '2005-05-21', 20, '2', '2', 'Chandran', 'Cooli', 10000.00, 1, 0.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2507030018', '1', '1', 'upload_files/candidate_tracker/13858878977_RakshanaResume.docx', NULL, '2', '2025-07-08', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate not suitable for voice process, communication not good, active level low,, reject the profile', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2025-07-03 12:12:15', 154, '2025-07-08 04:21:20', 0, NULL, 1),
(25686, 'Naveen N', '5', '6385868760', '', 'naveerojnavee4224@gmail.com', '2000-05-14', 25, '2', '2', 'Nallathambi', 'Forming', 72000.00, 1, 0.00, 20000.00, 'Salem', 'Anna nagar', '2507030019', '1', '1', 'upload_files/candidate_tracker/35472644901_NAVEENResume.pdf', NULL, '1', '2025-07-04', 0, '', '3', '59', '2025-07-14', 248000.00, '', '3', '2025-07-23', '1', 'Communication Ok Fresher convincing ok can be trained in our roles check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55656', '55557', '2025-07-14', 1, '2025-07-03 12:16:54', 104, '2025-07-14 07:15:03', 0, NULL, 1),
(25687, 'Rajashree v', '4', '9940136296', '9677103785', 'Vrajashree11@gmail.com', '2003-06-10', 22, '2', '2', 'N.e velu', 'Shop', 10000.00, 1, 0.00, 16000.00, 'Ambattur', 'Ambattur', '2507040001', '1', '1', 'upload_files/candidate_tracker/95180529620_Rajashree.vfreshers.pdf', NULL, '1', '2025-07-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1025', '0', '0', '0', NULL, 1, '2025-07-04 04:59:39', 1, '2025-07-04 09:34:05', 0, NULL, 1),
(25688, 'Shali .', '6', '9363512754', '9710998581', 'shaliservin@gmail.com', '2005-08-25', 19, '2', '2', 'Glorisa', 'House keeping', 14000.00, 1, 0.00, 18000.00, 'Santhome Mylapore', 'Santhome', '2507040002', '1', '1', 'upload_files/candidate_tracker/52874090746_resumeshalibcom.pdf', NULL, '1', '2025-07-04', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE WAS NOT AT SPEAKING SO RESERVED  EVEN I TRIED TO LET HER SPEAK AND  SO  SHE WILL NOT BE SUITABLE FOR SALES', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-07-04 05:03:29', 154, '2025-07-04 01:30:03', 0, NULL, 1),
(25689, 'Teena Pavithra GB', '6', '9677231422', '9840569611', 'teenapavithra256@gmail.com', '2004-06-25', 21, '1', '2', 'B. Jyothirmai', 'House wife', 150000.00, 1, 0.00, 17000.00, 'No: 14 kanchi Nagar extn,vinayagapuram, ch -99', 'No: 14 kanchi Nagar extn ,vinayagapuram, ch -9', '2507040003', '', '1', 'upload_files/candidate_tracker/51167391727_teenapavithranewResume.pdf', NULL, '1', '2025-07-04', 0, '', '3', '59', '2025-07-07', 174000.00, '', '3', '2025-07-12', '1', 'Communication Ok Reference profile can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2025-07-07', 1, '2025-07-04 05:30:34', 60, '2025-07-05 02:41:31', 0, NULL, 1),
(25690, '', '0', '9940818999', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507040004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-04 05:45:31', 0, NULL, 0, NULL, 1),
(25691, 'reena', '6', '9344160663', '', 'reenajerome14@gmail.com', '2003-07-14', 21, '1', '2', 'jerome', 'car driver', 20000.00, 1, 16000.00, 18000.00, 'saidapet', 'saidapet', '2507040005', '', '2', 'upload_files/candidate_tracker/64427238735_ReenaResumepdf.pdf', NULL, '1', '2025-07-04', 0, '77828', '3', '59', '2025-07-10', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in non voice only based on the manager commitment proceeded with 1.92 LPA can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '2025-07-10', 1, '2025-07-04 05:50:56', 60, '2025-07-09 06:23:28', 0, NULL, 1),
(25692, 'SANJAY VENKAT  R', '6', '7806892845', '', 'sanjayrock7806@gmail.com', '2004-09-26', 20, '2', '2', 'Ramesh', 'Electrition', 20000.00, 1, 0.00, 15000.00, 'Ayapakkam tnhb no 5807', 'Kilpauk TYLORS ROAD', '2507040006', '1', '1', 'upload_files/candidate_tracker/34837199692_CV20250619231141.pdf', NULL, '1', '2025-07-04', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-07-04 05:56:53', 104, '2025-07-04 05:06:27', 0, NULL, 1),
(25693, 'R mala', '6', '7200146463', '', 'Jj1260410@gmail.com', '2004-05-06', 21, '1', '2', 'Ramesh', 'Photograher', 15000.00, 1, 0.00, 16000.00, 'Washermanpet', 'Washermanpet', '2507040007', '', '1', 'upload_files/candidate_tracker/51070661517_17490228267111.pdf', NULL, '1', '2025-07-04', 0, '77828', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-04 06:07:54', 154, '2025-07-04 01:25:18', 0, NULL, 1),
(25694, 'KARTHICK PURUSHOTHAMAN', '6', '7200601431', '7200501864', 'ukarthi638@gmail.com', '2004-11-01', 20, '2', '2', 'NEELA ATHI', 'MAHESHWARI', 108000.00, 0, 0.00, 20000.00, 'CHENNAI CITY', 'CHENNAI CITY', '2507040008', '1', '1', 'upload_files/candidate_tracker/18716176265_Resume2.pdf', NULL, '1', '2025-07-05', 0, '', '3', '59', '2025-07-10', 192000.00, '', '3', '2025-08-29', '1', 'Communication Ok Fresher can be trained in our roles will check in training', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '2025-07-07', 1, '2025-07-04 06:10:49', 60, '2025-07-05 07:00:30', 0, NULL, 1),
(25695, 'SRINITHI K', '6', '9003734104', '8778168375', 'Srinithimanjula05@gmail.com', '2004-03-24', 21, '2', '2', 'Kumar k', 'Painting contractor', 30000.00, 1, 0.00, 300000.00, 'Villupuram', 'Porur - chennai', '2507040009', '1', '1', 'upload_files/candidate_tracker/32225338241_RESUME.pdf', NULL, '1', '2025-07-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-07-04 06:54:04', 1, '2025-07-04 07:06:29', 0, NULL, 1),
(25696, '', '0', '9962023299', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507040010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-04 08:29:32', 0, NULL, 0, NULL, 1),
(25697, '', '0', '7092321042', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507040011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-04 08:37:15', 0, NULL, 0, NULL, 1),
(25698, '', '0', '7550237613', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507040012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-04 08:40:32', 0, NULL, 0, NULL, 1),
(25699, 'sanjeev Kumar S', '2', '8072065271', '', 'sanjeevkumar8072065271@gmail.com', '2001-07-08', 23, '2', '2', 'Suresh babu', 'Spares incharge', 300000.00, 0, 0.00, 200000.00, 'CHENNAI', 'CHENNAI', '2507040013', '1', '1', 'upload_files/candidate_tracker/90968267678_resume2.pdf', NULL, '1', '2025-07-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-04 09:57:42', 154, '2025-07-07 11:23:35', 0, NULL, 1),
(25700, 'Ajay Aravindu G', '23', '9360213684', '', 'gajay113112@gmail.com', '2004-07-13', 20, '3', '2', 'R.Govindasamy', 'Worker', 50000.00, 1, 0.00, 350000.00, 'Padappai, chennai', 'Padappai, Chennai', '2507040014', '', '1', 'upload_files/candidate_tracker/2104334175_Resume.pdf', NULL, '1', '2025-07-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-04 10:27:02', 154, '2025-07-04 04:03:54', 0, NULL, 1),
(25701, '', '0', '9884962199', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507040015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-04 10:34:01', 0, NULL, 0, NULL, 1),
(25702, 'Gokul Krishnan B', '13', '7695858918', '6374743280', 'krishnangokul2003@gmail.com', '2003-07-23', 21, '6', '2', 'Babu K', 'IT trainer', 20000.00, 1, 0.00, 250000.00, '5/164 Kamarajar Street Alathur, Chengalpattu', '5/164 Kamarajar Street Alathur, Chengalpattu', '2507040016', '', '1', 'upload_files/candidate_tracker/33916179865_GokulKrishnanB.pdf', NULL, '1', '2025-07-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-04 11:06:09', 1, '2025-07-04 03:52:01', 0, NULL, 1),
(25703, 'Ravindhiran', '6', '7695885751', '7824935751', 'Ravindhirannagarajan123@gmail.com', '2004-11-12', 20, '2', '2', 'Nagarajan', 'Driver', 25000.00, 1, 0.00, 18000.00, 'Thiruvottriyur', 'Thiruvottriyur', '2507040017', '1', '1', 'upload_files/candidate_tracker/54963344040_RavindhiranRaviravindhirannagarajan123gmail.com30875561.pdf', NULL, '1', '2025-07-07', 0, '', '3', '59', '2025-07-10', 192000.00, '', '3', '2025-07-31', '2', 'Communication Ok fresher GYM work part time let us try in training anf confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-07-10', 1, '2025-07-04 11:06:41', 60, '2025-07-09 06:31:35', 0, NULL, 1),
(25704, '', '0', '9994810558', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507040018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-04 01:02:47', 0, NULL, 0, NULL, 1),
(25705, '', '0', '7094326651', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507050001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-05 05:30:07', 0, NULL, 0, NULL, 1),
(25706, 'Ashwin', '6', '9790656128', '', 'ashwin1510304@gmail.com', '2004-10-15', 20, '2', '2', 'Gopalakrishnan', 'Office attender', 30000.00, 1, 0.00, 20000.00, 'Tondiarpet', 'Tondiarpet Chennai', '2507050002', '1', '1', 'upload_files/candidate_tracker/1810353450_Ashwin.pdf', NULL, '1', '2025-07-08', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-05 05:57:49', 154, '2025-07-08 11:37:11', 0, NULL, 1),
(25707, 'Sowmiya . C', '6', '6379503766', '9952346425', 'sowmiyasowmi1820@gmail.com', '2003-08-18', 21, '2', '2', 'V. Chidambaram', 'Driver', 30.00, 0, 15.00, 17.00, 'Vadapalani', 'Vadapalani', '2507050003', '1', '2', 'upload_files/candidate_tracker/60661863291_sowmiyaresume10.pdf', NULL, '1', '2025-07-05', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-07-05 05:59:14', 104, '2025-07-05 06:25:39', 0, NULL, 1),
(25708, 'lavanya elangovan', '6', '7604937283', '', 'lavanyacharu3007@gmail.com', '2002-07-30', 22, '2', '2', 'no', 'driver', 25.00, 2, 15.00, 18.00, 'dharmapuri', 'thiruvanmiyur', '2507050004', '1', '2', 'upload_files/candidate_tracker/88734649728_LavanyaResume...pdf', NULL, '1', '2025-07-05', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, communication average. 1.6 years experionce IT.  5months working tele marketing, please cross check sustainability and kindly confirm joining date.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55732', '5151', '1970-01-01', 1, '2025-07-05 06:00:24', 154, '2025-07-05 04:26:42', 0, NULL, 1),
(25709, 'Jayasudha j', '6', '8438698661', '9626026304', 'rjsutha848@gmail.com', '2002-06-09', 23, '2', '2', 'Jayakumar', 'Driver', 100000.00, 1, 0.00, 160000.00, 'Thanjavur', 'Saidapet', '2507050005', '1', '1', 'upload_files/candidate_tracker/85566815324_jayasudharesume.pdf', NULL, '1', '2025-07-05', 0, '', '1', '156', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55732', '5151', '1970-01-01', 1, '2025-07-05 06:01:11', 154, '2025-07-10 07:27:50', 0, NULL, 1),
(25710, 'Sandhiya shanmugavel', '5', '6374336103', '', 'sandyoga24@gmail.com', '2003-09-19', 21, '2', '2', 'Yoganathan', 'Driver', 30000.00, 0, 0.00, 16000.00, 'Thiruvarur', 'Velachery', '2507050006', '1', '1', 'upload_files/candidate_tracker/42045844000_Resume.pdf', NULL, '1', '2025-07-05', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also she was not active.then sustainable is doubt...', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-07-05 06:02:32', 104, '2025-07-05 06:26:43', 0, NULL, 1),
(25711, 'Rishi Kumar', '5', '9092195118', '9941965857', 'rishikumar26102000@gmail.com', '2000-10-27', 24, '2', '2', 'Murugan', 'Business', 30000.00, 1, 16000.00, 20000.00, 'Pallavaram', 'Pallavaram', '2507050007', '1', '2', 'upload_files/candidate_tracker/8297383755_RishiMBAresume.pdf', NULL, '1', '2025-07-05', 0, '', '3', '59', '2025-07-07', 249600.00, '', '5', '1970-01-01', '1', 'Communication Ok Have exp in Shriram and vizza can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-07-05 06:10:41', 154, '2025-07-10 07:29:50', 0, NULL, 1),
(25712, 'Sangavikarunamoorthi', '4', '8015732541', '', 'sangavimoorthi1920@gmail.com', '2000-07-19', 24, '2', '2', 'Karunamoorthi', 'Chief', 60000.00, 3, 17800.00, 22000.00, 'Karaikudi Sivagangai dis', 'T.nagar chennai', '2507050008', '1', '2', 'upload_files/candidate_tracker/11436878720_sangaviresume12.pdf', NULL, '1', '2025-07-05', 0, '', '3', '59', '2025-07-07', 249600.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in renewal lots of job switches will check in training and confirm', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55824', '55560', '1970-01-01', 1, '2025-07-05 06:10:43', 154, '2025-07-10 07:30:34', 0, NULL, 1),
(25713, 'Mathubala P', '6', '8925788296', '', 'mathubala1962005@gmail.com', '2005-06-19', 20, '3', '2', 'Poosai pandi', 'Coolie', 15000.00, 2, 0.00, 15000.00, 'Tenkasi', 'Ashok pillar', '2507050009', '', '1', 'upload_files/candidate_tracker/99300791148_mathu.pdf', NULL, '1', '2025-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open to speak will not sustain and not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '2025-07-10', 1, '2025-07-05 06:37:35', 154, '2025-07-10 07:31:15', 0, NULL, 1),
(25714, 'Revathi', '6', '9840317314', '8015238925', 'rr0017064@gamil.com', '2004-01-25', 21, '2', '2', 'Ramesh', 'No', 15000.00, 0, 9000.00, 18000.00, 'Chennai', 'Chennai', '2507050010', '1', '2', 'upload_files/candidate_tracker/60356069076_Revathiresume.doc', NULL, '1', '2025-07-05', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No confident to speak not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-05 08:44:09', 104, '2025-07-05 06:27:29', 0, NULL, 1),
(25715, 'Bhuvana', '6', '8015238925', '7449262152', 'bhuvanaganesh333@gmail.com', '2004-05-02', 21, '2', '2', 'Ganesan', 'Security', 15000.00, 2, 9000.00, 18000.00, 'Chennai', 'Chennai', '2507050011', '1', '2', 'upload_files/candidate_tracker/29185336400_Bhuvanaresume.pdf', NULL, '1', '2025-07-05', 5, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-05 08:48:26', 154, '2025-07-05 06:17:09', 0, NULL, 1),
(25716, 'Chandran', '6', '7305109630', '', 'mschandran506@gmail.com', '2002-12-20', 22, '2', '2', 'Murugan', 'Mason', 30000.00, 2, 0.00, 20000.00, 'Tenkasi', 'Ashok nagar', '2507050012', '1', '1', 'upload_files/candidate_tracker/42843259250_Resume.pdf', NULL, '1', '2025-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is not open for sales calling looking for HR profile only but not suitable for us\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-05 11:27:35', 154, '2025-07-07 04:25:31', 0, NULL, 1),
(25717, 'Kalpana', '6', '8428077461', '', 'kalpanamurali2406@gmail.com', '2002-07-09', 22, '2', '2', 'Murali and shyamala', 'Coolie', 40000.00, 1, 14800.00, 18000.00, 'Chennai', 'Chennai', '2507050013', '1', '2', 'upload_files/candidate_tracker/48423884041_DOC20250625WA0001.1.pdf', NULL, '1', '2025-07-05', 0, '', '3', '59', '2025-07-10', 198000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in calling for more than 2 yrs but in our roles pressure handling need to check will check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55645', '5151', '2025-07-10', 1, '2025-07-05 11:49:39', 60, '2025-07-09 06:29:59', 0, NULL, 1),
(25718, 'S.monisha', '6', '6303998623', '7842109923', 'monimonisha204@gmail.com', '2002-03-09', 23, '2', '2', 'Selvam', 'Driver', 30000.00, 2, 13000.00, 18000.00, '7/324,Rama naidu colony,nagari', 'Purasawalkam,chennai', '2507050014', '1', '2', 'upload_files/candidate_tracker/6561190645_MonishaResume2.pdf', NULL, '1', '2025-07-05', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok for sales profile.. communication average. reject the profile..', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-07-05 11:49:45', 104, '2025-07-05 06:31:35', 0, NULL, 1),
(25719, '', '0', '7200501864', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507050015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-05 04:25:25', 0, NULL, 0, NULL, 1),
(25720, 'J. Mutharasan', '13', '8825984518', '8825983518', 'mutharasan9795@gmail.com', '2004-06-25', 21, '2', '2', 'Jeyadurai A', 'Driver', 7200.00, 1, 0.00, 300000.00, 'Tenkasi', 'Chennai', '2507060001', '1', '1', 'upload_files/candidate_tracker/87543207455_MuthuFinalResume.pdf', NULL, '1', '2025-07-07', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-06 12:43:29', 154, '2025-07-07 09:51:42', 0, NULL, 1),
(25721, 'M Sandhiya', '6', '9361839712', '', 'sandhiyagurusekar@gmail.com', '2002-01-23', 23, '2', '2', 'G.Murugesh', 'Casting', 30000.00, 2, 0.00, 18000.00, 'Coimbatore', 'Thambaram', '2507070001', '1', '1', 'upload_files/candidate_tracker/4119568891_Anu.pdf', NULL, '1', '2025-07-07', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, fresher but way of approach Good, product explain all r good.provide 15k salary and confirm the joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-07-07 03:25:16', 154, '2025-07-07 03:53:23', 0, NULL, 1),
(25722, 'b jaiganesh', '6', '6369342829', '9080979326', 'jaiganeshb2003@gmail.com', '2003-10-31', 21, '2', '2', 'saeala', 'teacher', 30.00, 1, 150000.00, 18000.00, 't nagar', 't nagar', '2507070002', '1', '2', 'upload_files/candidate_tracker/17258064161_JaiGaneshresume.pdf', NULL, '3', '2025-07-07', 15, '', '3', '59', '2025-07-17', 204000.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp but no documents for that need to check the BGV His friend Pooja also selected seems to check indepth', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-07-07 04:26:30', 60, '2025-07-16 06:22:51', 0, NULL, 1),
(25723, 'Rishwanth S', '2', '9809015040', '', 'srishwanth02@gmail.com', '2002-12-28', 22, '3', '2', 'Senthil M', 'Agriculture', 50000.00, 0, 0.00, 15000.00, 'Palakkad', 'Coimbatore', '2507070003', '', '1', 'upload_files/candidate_tracker/52786785054_RISHWANTHSResume.pdf', NULL, '1', '2025-07-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-07 05:11:39', 1, '2025-07-07 05:15:07', 0, NULL, 1),
(25724, 'pavithra k', '4', '7670918067', '', 'pavithra3175@gmail.com', '2001-07-25', 23, '2', '2', 'k kummaraswami', 'potter', 25000.00, 0, 16000.00, 20000.00, 'Chennai', 'velachery', '2507070004', '1', '2', 'upload_files/candidate_tracker/30372337031_PavitharaK2025new.docx', NULL, '1', '2025-07-07', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55824', '55560', '1970-01-01', 1, '2025-07-07 05:22:06', 154, '2025-07-07 01:03:11', 0, NULL, 1),
(25725, 'Arulnathan G', '6', '9600390381', '', 'arulnathan114@gmail.com', '2002-09-27', 22, '2', '2', 'Ganapathisundharam', 'Business', 75000.00, 1, 0.00, 25000.00, 'Thanjavur', 'Chennai', '2507070005', '1', '1', 'upload_files/candidate_tracker/49913074720_ArulNathanCV.docx', NULL, '1', '2025-07-07', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-07 05:29:02', 154, '2025-07-07 12:45:24', 0, NULL, 1),
(25726, 'Lavanya Priyadharshini P', '6', '9943081521', '9840435087', 'plavanya552@gmail.com', '2003-06-25', 22, '2', '2', 'Poonguzhali', 'Teacher', 120000.00, 1, 0.00, 15000.00, 'Villivakkam', 'Villivakkam', '2507070006', '1', '2', 'upload_files/candidate_tracker/87594467886_Resume3.pdf', NULL, '1', '2025-07-07', 0, '', '1', '156', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55732', '5151', '1970-01-01', 1, '2025-07-07 05:55:14', 154, '2025-07-07 03:12:21', 0, NULL, 1),
(25727, 'revathi r', '4', '7299079074', '6382515231', 'revathikumar1799@gmail.com', '1999-08-17', 25, '2', '2', 'R. Devi', 'Mother', 18000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2507070007', '1', '2', 'upload_files/candidate_tracker/34237800570_Revathiresume1.pdf', NULL, '1', '2025-07-07', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55824', '55560', '1970-01-01', 1, '2025-07-07 06:10:35', 154, '2025-07-07 01:32:26', 0, NULL, 1),
(25728, 'ANTONYJOHNKENNADY D', '6', '6369435449', '', 'antonyjohnkennady2004@gmail.com', '2010-07-07', 0, '1', '2', 'Siriyapushpam', 'Farmer', 20000.00, 3, 0.00, 20000.00, '19, murugan kovil street, ulundurpet -607201', '19, murugan kovil street, ulundurpet - 607201', '2507070008', '', '1', 'upload_files/candidate_tracker/22703136681_ANTONYJOHNKENNADYDCV2.pdf', NULL, '1', '2025-07-07', 0, '77840', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-07 06:22:55', 154, '2025-07-07 12:48:13', 0, NULL, 1),
(25729, '.logesh', '6', '9962157541', '', 'logeshakash29@gmali.com', '2004-10-29', 20, '2', '2', 'g.mohan', 'plumber', 20000.00, 2, 0.00, 15000.00, 'chennai', 'mylarpora', '2507070009', '45', '1', 'upload_files/candidate_tracker/24057207833_IMG20250707WA0000.pdf', NULL, '1', '2025-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice process only ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-07 06:29:12', 154, '2025-07-07 01:28:57', 0, NULL, 1),
(25730, 'Lavanya', '5', '9043669086', '7305400949', 'lavanyasherina@gmail.com', '2001-11-02', 23, '2', '2', 'Neelavanan', 'Business', 100000.00, 1, 22000.00, 23000.00, 'Perambur', 'Perambur', '2507070010', '1', '2', 'upload_files/candidate_tracker/93142462115_lavanya20updated202025250331142424.pdf.pdf', NULL, '1', '2025-07-07', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for next round, selected by gaurav sir also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-07-07 06:30:24', 154, '2025-07-09 05:32:04', 0, NULL, 1),
(25731, 'Arjun m', '6', '9345783409', '', 'arjuntharun2020@gmail.com', '2003-08-31', 21, '2', '2', 'Muthu', 'None', 18000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2507070011', '45', '1', 'upload_files/candidate_tracker/54412063837_Arjunresumefresher.pdf', NULL, '1', '2025-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is openly interested to work in non voice process only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-07 06:31:41', 154, '2025-07-07 01:24:53', 0, NULL, 1),
(25732, 'Sekar', '6', '9551354670', '9962268100', 'nagarajsekar66@gmail', '2002-11-14', 22, '2', '2', 'Nagaraj', 'Cooli', 30000.00, 2, 20000.00, 20000.00, 'Old Washermenpet', 'Old Washermenpet', '2507070012', '1', '2', 'upload_files/candidate_tracker/18543933136_SEKAR011.pdf', NULL, '3', '2025-07-07', 1, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'worked in  field sales for 1 year due to jaundice got relieved... and then worked in muthoot for 7 months in sales and operations relieved due to same reaosn... i suspect the reason is not true.. and more looking for operations only.. so not fit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-07 06:56:03', 154, '2025-07-07 02:35:28', 0, NULL, 1),
(25733, '', '0', '6382720803', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507070013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-07 09:29:14', 0, NULL, 0, NULL, 1),
(25734, '', '0', '7708094320', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507070014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-07 10:41:57', 0, NULL, 0, NULL, 1),
(25735, 'Subham Swain', '5', '8431998670', '9337809749', 'subhamswain010@gmail.com', '1998-07-29', 26, '2', '2', 'Bijay Swain', 'Govt employee', 60000.00, 1, 23700.00, 32000.00, 'Rourkela', 'Banglore', '2507070015', '49', '2', 'upload_files/candidate_tracker/47977808742_Untitled1.pdf', NULL, '1', '2025-07-08', 0, '', '3', '59', '2025-07-17', 312000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in calling but not a relevant one need to check in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '2025-07-17', 1, '2025-07-07 12:14:35', 60, '2025-07-16 06:24:12', 0, NULL, 1),
(25736, 'Gowsik kumar. m', '6', '9841448462', '6382653710', 'gowshikm8@gmail.com', '2005-05-13', 20, '2', '2', 'sumathi', 'student', 25000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2507070016', '1', '1', 'upload_files/candidate_tracker/10665431606_webresume.pdf', NULL, '1', '2025-07-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok , communication average. provide the fresher salary. kindly confirm the joining date.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55732', '5151', '1970-01-01', 1, '2025-07-07 04:47:50', 154, '2025-07-08 04:29:10', 0, NULL, 1),
(25737, '', '0', '8428463374', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507070017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-07 05:37:56', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25738, 'Gayathri', '33', '8438678381', '', 'Gayathrir.04.11@gmail.com', '2010-07-08', 0, '5', '2', 'Rajkumar', 'Business', 20000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2507080001', '', '1', 'upload_files/candidate_tracker/89277398591_Gayathri.RRESUME1.pdf', NULL, '1', '2025-07-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-08 02:36:21', 1, '2025-07-08 02:40:58', 0, NULL, 1),
(25739, 'Madhan.R', '6', '8939649935', '9500143376', 'madhanr252@gmail.com', '2003-03-16', 22, '2', '2', 'Kumudha', 'Sales executive', 18.00, 1, 0.00, 20000.00, 'ECR injambakkam', 'Vandalur', '2507080002', '45', '1', 'upload_files/candidate_tracker/90194636355_CV2025020316034776.pdf', NULL, '1', '2025-07-08', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for IT xxamp not much comfortable in working with sales and targets so not fit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-08 04:21:45', 154, '2025-07-08 11:35:00', 0, NULL, 1),
(25740, 'Hamnath murugan', '6', '9087442448', '8939649935', 'ham075780@gmail.com', '2004-01-09', 21, '2', '2', 'Murugan S', 'Conductor', 72000.00, 1, 0.00, 20000.00, 'Thoothukudi, kovilpatti', 'Vandalur', '2507080003', '45', '1', 'upload_files/candidate_tracker/54031889818_Hamnathresume.pdf', NULL, '1', '2025-07-08', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for IT max. Need to open up a lot. Giving only one word answer', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-08 04:23:01', 154, '2025-07-08 11:35:42', 0, NULL, 1),
(25741, 'N Sneha', '6', '9500103043', '9677331822', 'devasneha0108@gmail.com', '2000-08-01', 24, '3', '2', 'Nickolas S', 'Tea seller', 12000.00, 1, 17000.00, 25000.00, 'No.13, Ambedkar st,old Thirumangalam, Anna Nagar', 'No.13, Ambedkar st,old Thirumangalam, Anna Nagar,', '2507080004', '', '2', 'upload_files/candidate_tracker/7167894075_SnehaResume.pdf', NULL, '1', '2025-07-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-08 05:51:34', 154, '2025-07-08 12:17:31', 0, NULL, 1),
(25742, 'Shanjana R', '6', '8248664738', '9789938488', 'kuttysanjana0@gmail.com', '2005-03-10', 20, '2', '2', 'Ramesh Babu', 'Painter', 120000.00, 1, 0.00, 16000.00, 'No46 kamaraj Nagar3rd street korukkupet chennai', 'No46kamaraj Nagar3rd street korukkupet chennai', '2507080005', '1', '1', 'upload_files/candidate_tracker/95649484055_SHANJANARESUMENEW3.pdf', NULL, '1', '2025-07-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much aggressive to the sales need to explore a lot will not handle pressure', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-08 05:54:42', 154, '2025-07-08 01:01:37', 0, NULL, 1),
(25743, 'Kaviya .m', '6', '7812857538', '7200086469', 'kaviyasudha22012005@gmail.com', '2005-01-22', 20, '2', '2', 'Mathivanan.p', 'Fisherman', 120000.00, 1, 0.00, 16000.00, '665/ 21 block v.o.c nagar tondiarpet', '665/ 21 block v.o.c nagar tondiarpet', '2507080006', '1', '1', 'upload_files/candidate_tracker/34223792599_KAVIYARESUME.pdf', NULL, '1', '2025-07-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'preferred for non voice process only', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-08 05:59:42', 154, '2025-07-08 01:17:53', 0, NULL, 1),
(25744, 'Kabir Hussain', '6', '6381164585', '6382318582', 'kabirhussain0206@gmail.com', '2004-06-19', 21, '3', '2', 'Unmarried', 'Sales', 30000.00, 1, 17000.00, 20000.00, '14/5 ellis puram pudupakkam, triplicane chennai', '14/5 ellis puram pudupakkam, triplicane chennai', '2507080007', '', '2', 'upload_files/candidate_tracker/56775802483_KabirPDFR1.pdf', NULL, '1', '2025-07-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for our role just for sake he is looking a job totally a waste profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-08 06:43:52', 154, '2025-07-08 02:50:34', 0, NULL, 1),
(25745, 'Dhanasree M', '4', '8838009303', '8939744420', 'dhanasri.sree@gmail.com', '1999-12-10', 25, '2', '2', 'Murugan J', 'Centring worker', 1.75, 1, 24.00, 24.00, 'Kodambakkam', 'Kodambakkam', '2507080008', '1', '2', 'upload_files/candidate_tracker/67218747771_NewResume.pdf', NULL, '1', '2025-07-08', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55824', '55560', '1970-01-01', 1, '2025-07-08 06:59:45', 154, '2025-07-08 03:38:58', 0, NULL, 1),
(25746, 'Gokulakrishnan', '6', '7094828896', '8489249970', 'vgokul229@gmail.com', '2002-06-07', 23, '2', '2', 'Vijaya', 'Yes', 30000.00, 3, 0.00, 18000.00, 'Kallakurichi', 'Annanagar', '2507080009', '1', '2', 'upload_files/candidate_tracker/93676908239_Gokul3.pdf', NULL, '1', '2025-07-08', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-08 07:36:12', 154, '2025-07-08 04:00:38', 0, NULL, 1),
(25747, 'DINESH KUMAR. U', '6', '9791791655', '9789920258', 'dhinodj125@gmail.com', '1999-10-12', 25, '2', '2', 'Uthiran. A', 'Fruit shop', 20000.00, 2, 0.00, 18000.00, 'Mariyanayagam main street perambur', 'Mariyanayagam main street Perambur', '2507080010', '1', '1', 'upload_files/candidate_tracker/32301085980_Resume1.pdf', NULL, '1', '2025-07-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-08 09:12:49', 154, '2025-07-11 02:38:32', 0, NULL, 1),
(25748, '', '0', '6383358667', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507080011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-08 09:46:17', 0, NULL, 0, NULL, 1),
(25749, 'Chithambaram c', '6', '8778223869', '', 'chithambaramc2004@gmail.com', '2004-06-05', 21, '2', '2', 'Rajeshwary', 'Wages', 9500.00, 2, 0.00, 15000.00, 'No:17/3 Nehru High Road, Nanganallur, Chennai -61', 'Meenambakkam', '2507080012', '1', '1', 'upload_files/candidate_tracker/46748644525_ProfessionalModernCVResume202506221903450000.pdf', NULL, '1', '2025-07-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-08 11:37:52', 154, '2025-07-09 03:41:48', 0, NULL, 1),
(25750, '', '0', '9176958751', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507080013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-08 01:07:21', 0, NULL, 0, NULL, 1),
(25751, 'Yuvaraj K', '13', '9087681173', '', 'yuvarajkumar210@gmail.com', '2005-08-25', 19, '2', '2', 'Kumar M', 'Labour', 80000.00, 1, 0.00, 200000.00, '368, Pilliyar Kovil Street Bagavanthapuram', 'Kanchipuram', '2507090001', '1', '1', 'upload_files/candidate_tracker/6811800895_yuvarajresume.docx', NULL, '1', '2025-07-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-09 01:59:00', 154, '2025-07-09 10:40:55', 0, NULL, 1),
(25752, 'Moulika J', '6', '7418634858', '9840987341', 'charuchar8010@gmail.com', '1998-06-05', 27, '2', '1', 'Jaikanth', 'Rk agency pvt Ltd', 400000.00, 1, 22000.00, 20000.00, 'New France road 2 nd lane pattalam ch 600012', 'New France road 2 nd lane pattalam ch 12', '2507090002', '1', '2', 'upload_files/candidate_tracker/70895199360_rsume.pdf', NULL, '1', '2025-07-09', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-09 05:20:04', 154, '2025-07-09 12:46:34', 0, NULL, 1),
(25753, 'Satheesh kumar K', '6', '9361398379', '9360326020', 'shatheeshk618@gmail.com', '2002-11-16', 22, '2', '2', 'Karthikeyan A', 'Goldsmith', 35000.00, 1, 14000.00, 20000.00, '14,manjanakara st, South gate, Madurai -1', '21a, Gangai nagar 2nd st, Velachery', '2507090003', '1', '2', 'upload_files/candidate_tracker/51806306032_Seeishu.pdf', NULL, '1', '2025-07-09', 1, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-09 05:27:41', 154, '2025-07-09 05:16:01', 0, NULL, 1),
(25754, 'Nithish kumar', '6', '9342091245', '9840405136', 'gunaguna1735@gmail.com', '2005-03-17', 20, '3', '2', 'Rishika hr', 'BBA', 21000.00, 1, 0.00, 17000.00, 'Nandhanam chennai 600035', 'Chennai', '2507090004', '', '1', 'upload_files/candidate_tracker/43915191051_nithish.docx', NULL, '1', '2025-07-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-09 06:14:05', 154, '2025-07-09 12:47:54', 0, NULL, 1),
(25755, 'Lokesh.K', '6', '6379950183', '8122696615', 'sailokeshlokesh2626@gmail.com', '2004-01-30', 21, '2', '2', 'Kumar', 'Field management', 12500.00, 1, 0.00, 15000.00, 'Anakaputhur', 'Anakaputhur', '2507090005', '1', '1', 'upload_files/candidate_tracker/40243617126_Lokeshkteam531.pdf', NULL, '1', '2025-07-09', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is unfit for sales. communication not good, distance too long, reject', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-07-09 06:54:25', 154, '2025-07-09 01:18:16', 0, NULL, 1),
(25756, 'Kaleem Basha A', '34', '9791186025', '9884052592', 'kaleembasha6921@gmail.com', '2000-12-02', 24, '3', '2', 'Jaibunbee', 'Information technology', 30000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2507090006', '', '1', 'upload_files/candidate_tracker/17805679925_kaleemresumedata.pdf', NULL, '1', '2025-07-09', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-09 07:23:34', 154, '2025-07-09 01:03:13', 0, NULL, 1),
(25757, '', '0', '9176512090', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507090007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-09 07:39:56', 0, NULL, 0, NULL, 1),
(25758, 'Pooja', '6', '9688562285', '9688562288', 'rppooja2304@gmail.com', '2004-04-23', 21, '2', '2', 'Rajendran', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Thiruvarur', 'Chennai', '2507090008', '45', '1', 'upload_files/candidate_tracker/10909632573_RCV1.pdf', NULL, '1', '2025-07-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok but not to open without friends sustainability doubts in this profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-09 08:17:12', 154, '2025-07-09 04:32:46', 0, NULL, 1),
(25759, '', '0', '9780852570', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507090009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-09 08:18:30', 0, NULL, 0, NULL, 1),
(25760, 'Dineshkumar S', '6', '6382492123', '9962287296', 'dineshkumar.shenbagaraj@gmail.com', '2001-02-25', 24, '2', '2', 'Shenbagaraj s', 'Laundry Shop', 35000.00, 1, 16000.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2507090010', '1', '2', 'upload_files/candidate_tracker/22255421409_dineshresume.pdf', NULL, '1', '2025-07-09', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok, communication average. 9months experience for Kotak Mahindra Bank. please cross check sustainability and confirm the joining date.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55732', '5151', '1970-01-01', 1, '2025-07-09 08:18:53', 154, '2025-07-09 05:16:16', 0, NULL, 1),
(25761, 'JayasreeJayaraman', '6', '6384227143', '8940578568', 'jayasrij908@gmail.com', '2003-07-14', 21, '2', '2', 'Jayaraman', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Thiruvarur', 'Chennai', '2507090011', '45', '1', 'upload_files/candidate_tracker/35194693577_JobresumeColorFormat01.pdf', NULL, '1', '2025-07-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our sales roles will not handle our work pressure in sales much prefer to go with non voice\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-09 08:19:59', 154, '2025-07-09 04:14:31', 0, NULL, 1),
(25762, 'Lavanya palani', '6', '9344327732', '9698004550', 'vpslavanya2002@gmail.com', '2002-08-27', 22, '2', '2', 'Palani', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Thiruvarur', 'Chennai', '2507090012', '45', '1', 'upload_files/candidate_tracker/8161707847_JobresumeColorFormat01.pdf', NULL, '1', '2025-07-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher and much preferred to work in non voice will not handle our sales task', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-09 08:22:30', 154, '2025-07-09 04:15:02', 0, NULL, 1),
(25763, 'Sreemathi.k', '6', '9361843848', '8248607921', 'sreemathisreemathi20@gmail.com', '2004-01-31', 21, '1', '2', 'Sumithra', 'Daily wages', 200000.00, 1, 0.00, 18000.00, '22 ³street Bharathiyar nagar chennai -57', '22³street Bharathiyar nagar chennai -57', '2507090013', '', '1', 'upload_files/candidate_tracker/9436604056_sreeresume.docx', NULL, '1', '2025-07-09', 0, '77979', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-09 09:12:52', 154, '2025-07-09 03:24:50', 0, NULL, 1),
(25764, 'Surendhar Nagalingam', '6', '7538896456', '', 'nsurendhar99@gmail.com', '1999-08-26', 25, '2', '2', 'Nagalingam', 'Teacher', 100000.00, 1, 0.00, 500000.00, 'Chennai', 'Vellore', '2507090014', '1', '1', 'upload_files/candidate_tracker/66682386730_SurendharNewCVOffCampusResume.pdf', NULL, '1', '2025-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Sales he is much for marketing but not open to call the customers continously also his salary exp is very high will not sustain and handle', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-09 10:44:47', 154, '2025-07-15 03:27:19', 0, NULL, 1),
(25765, 'SANDHIYA A', '6', '7871591312', '9445118688', 'arumugamsandhiya2003@gmail.com', '2003-07-18', 21, '2', '2', 'Parent', 'Fruit seller', 85000.00, 1, 0.00, 18.00, 'Royapettah', 'Royapettah', '2507090015', '1', '2', 'upload_files/candidate_tracker/47874544475_sandhiyaDOC20250703WA0057.pdf', NULL, '1', '2025-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication Ok but not much comfort with the salary her exp is high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-07-09 12:35:08', 154, '2025-07-14 01:24:25', 0, NULL, 1),
(25766, 'Bala vignesh Y', '4', '6379663194', '9344397652', 'ybalu113@gmail.com', '2003-05-20', 22, '2', '2', 'Nirmala', 'House\'wife', 14000.00, 2, 0.00, 18000.00, '34/62 kannagi Street choolaimedu chennai-94', '34/62 Kannagi Street Choolaimedu Chennai-94', '2507090016', '1', '1', 'upload_files/candidate_tracker/44508780753_Balavignesh.pdf', NULL, '1', '2025-07-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-07-09 01:46:57', 1, '2025-07-09 01:58:35', 0, NULL, 1),
(25767, 'Aparna R', '6', '8608619701', '', 'aparnaravi.0411@gmail.com', '1999-11-04', 25, '2', '2', 'G Ravi', 'Painter', 30000.00, 2, 21000.00, 25000.00, 'Chennai', 'Chennai', '2507100001', '1', '2', 'upload_files/candidate_tracker/28481632493_AparnaR.pdf', NULL, '1', '2025-07-10', 3, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-07-10 04:51:56', 154, '2025-07-10 11:39:46', 0, NULL, 1),
(25768, 'varsha y', '6', '8110882743', '7305753715', 'varshayuvaraj31@gmail.com', '2004-10-03', 20, '2', '2', 'balakrishnan', 'mfl - labour', 10000.00, 0, 0.00, 20000.00, 'mathur', 'mathur', '2507100002', '1', '1', 'upload_files/candidate_tracker/96986116107_VARSHARES.pdf', NULL, '1', '2025-07-10', 0, '', '3', '59', '2025-07-14', 180000.00, '', '3', '2025-07-22', '1', 'Communication Ok fresher for our roles sounds good can be trained in our roles', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '2025-07-14', 1, '2025-07-10 05:09:00', 60, '2025-07-12 03:51:58', 0, NULL, 1),
(25769, 'Sathiya Priya', '6', '7305753715', '8110882743', 'sathiyapriyasaravana96@gmail.com', '2004-09-09', 20, '2', '2', 'saravana kumar e', 'coolie', 15000.00, 1, 0.00, 18000.00, 'thiruvottyur', 'thiruv', '2507100003', '1', '1', 'upload_files/candidate_tracker/19315383171_SATHIYARES2.pdf', NULL, '1', '2025-07-10', 0, '', '3', '59', '2025-07-14', 180000.00, '', '3', '2025-07-21', '2', 'Communication Ok fresher for our roles sounds good can be trained in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55732', '5151', '2025-07-14', 1, '2025-07-10 05:09:02', 60, '2025-07-12 03:51:11', 0, NULL, 1),
(25770, 'Renganathan Sekar', '13', '9360988257', '9976954896', 'renganathansp8@gmail.com', '2004-06-08', 21, '2', '2', 'Sekar', 'Tailor', 22000.00, 1, 0.00, 3.50, 'Tirupur', 'Tirupur', '2507100004', '1', '1', 'upload_files/candidate_tracker/58426380683_RenganthanSResume.pdf', NULL, '1', '2025-07-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-10 05:56:13', 154, '2025-07-16 09:53:19', 0, NULL, 1),
(25771, 'T Manimegalai', '6', '7550282985', '8939446080', 'itsmemegha08@gmail.com', '2003-02-01', 22, '2', '2', 'Thathan L', 'Framer', 15000.00, 2, 20000.00, 22000.00, 'Tiruvannamalai', 'Iyyapathagal', '2507100005', '1', '2', 'upload_files/candidate_tracker/87333889140_Megha.pdf', NULL, '1', '2025-07-10', 2, '', '3', '59', '2025-07-21', 216000.00, '', '3', '2025-07-29', '2', 'Communication Ok have exp in star health sales in autobobile can give a try and check in training last year also attended', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '2025-07-21', 1, '2025-07-10 06:01:33', 60, '2025-07-19 05:06:04', 0, NULL, 1),
(25772, 'Abishek Archunan', '6', '8072351815', '9363270293', 'sshek355@gmail.com', '2004-10-24', 20, '2', '2', 'Archunan', 'Cooly', 17000.00, 1, 0.00, 20000.00, 'Pudukkottai', 'Valsaravakkam', '2507100006', '1', '1', 'upload_files/candidate_tracker/13233558689_AbishekA.V.pdf', NULL, '1', '2025-07-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-10 06:59:43', 154, '2025-07-10 01:15:51', 0, NULL, 1),
(25773, 'Mariyen Josephine', '6', '9042903058', '9889043489', 'jmariyen@gmail.com', '2010-07-10', 0, '3', '2', 'Premalatha', 'Fresher', 96000.00, 0, 0.00, 3.00, 'Villivakkam- chennai', 'Chennai', '2507100007', '', '1', 'upload_files/candidate_tracker/61255833936_MariyenJosephine.pdf', NULL, '1', '2025-07-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for IT openings not suitable for us', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-10 07:35:58', 154, '2025-07-10 02:37:00', 0, NULL, 1),
(25774, 'Harini S', '6', '7010975341', '8015353478', 's06658724@gmail.com', '2005-02-20', 20, '2', '2', 'Saravanan', 'Kooli', 15.00, 2, 0.00, 20.00, '174/241 Mangammal garden 6th St New washermenpet', '174/241 Mangammal garden 6th St New washermenpet', '2507100008', '1', '2', 'upload_files/candidate_tracker/48085667061_attachment.pdf', NULL, '1', '2025-07-11', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is ok but her performance is not good.also sustainable is doubt...', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-07-10 09:23:13', 154, '2025-07-11 01:13:37', 0, NULL, 1),
(25775, 'AFSARULLAH', '6', '9176380726', '', 'althafalthaf3567@gmail.com', '2004-09-30', 20, '2', '2', 'Amanullah', 'Daily wages', 30000.00, 2, 0.00, 18000.00, 'Washmenpet, Chennai', 'washmenpet, Chennai', '2507100009', '1', '1', 'upload_files/candidate_tracker/35074333981_AFSARULLAH.A1.pdf', NULL, '1', '2025-07-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-07-10 11:28:46', 154, '2025-07-10 05:14:15', 0, NULL, 1),
(25776, '', '0', '7094197967', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507100010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-10 12:31:56', 0, NULL, 0, NULL, 1),
(25777, 'Poun Pandiyan P', '5', '8610759752', '', 'pounpandiyan14@gmail.com', '2003-12-14', 21, '2', '2', 'Pandiyan P', 'Farmer', 25000.00, 2, 0.00, 17000.00, 'Tiruchirappalli', 'Tiruchirappalli', '2507100011', '1', '1', 'upload_files/candidate_tracker/38701602122_PounPandiyanresume.pdf', NULL, '1', '2025-07-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-07-10 12:32:59', 1, '2025-07-10 12:37:37', 0, NULL, 1),
(25778, 'Balaji .M', '6', '9786624834', '9047650962', 'balabala3437@gmail.com', '2003-10-02', 21, '2', '2', 'K.Moorthi', 'Sweet master', 25000.00, 1, 0.00, 18000.00, 'Dharmapuri', 'Chennai', '2507100012', '1', '1', 'upload_files/candidate_tracker/98613354800_Balajimoorthyresume.pdf', NULL, '1', '2025-07-11', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performamce is not good.his voice is low nad he is not intereacting much more in the one to one process.Sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-07-10 12:35:47', 154, '2025-07-11 12:44:47', 0, NULL, 1),
(25779, 'Balaji.A.r', '6', '7358196925', '', 'balajieswar76@gmail.com', '2004-12-06', 20, '2', '1', 'Anandharaj.k', 'Carpenter', 15000.00, 1, 0.00, 17000.00, 'Kovilpathagai', 'Kovilpathagai', '2507100013', '1', '1', 'upload_files/candidate_tracker/67123266085_BlackandWhiteCleanProfessionalA4Resume202506281019310000.pdf', NULL, '1', '2025-07-11', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performamce is ok.but hi active is less also long distance.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-07-10 12:43:34', 154, '2025-07-11 12:45:42', 0, NULL, 1),
(25780, '', '0', '7358196935', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507100014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-10 12:50:46', 0, NULL, 0, NULL, 1),
(25781, 'Grace B', '6', '7305368591', '9600073783', 'balaprodn@gmail.com', '1998-05-21', 27, '2', '2', 'Balu', 'Painter', 30000.00, 2, 0.00, 17000.00, 'Tiruvottriyur, Chennai', 'Tiruvottriyur, Chennai', '2507100015', '1', '1', 'upload_files/candidate_tracker/32069424875_BGRACEBPO.pdf', NULL, '1', '2025-07-11', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication average. Looking more for MLT.. more dependent on parents will not sustain for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-10 03:50:05', 154, '2025-07-11 02:53:31', 0, NULL, 1),
(25782, 'Prasanth veeramani', '6', '6374429760', '', 'itzmeteddy136@gmail.com', '2005-04-10', 20, '2', '2', 'KARTHIKA K V', 'Student', 5000.00, 1, 0.00, 15000.00, 'Dharumapuri', 'Meenambakkam', '2507110001', '1', '1', 'upload_files/candidate_tracker/19345193364_PRASATHV.PDF', NULL, '1', '2025-07-11', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-11 01:20:09', 154, '2025-07-11 01:08:00', 0, NULL, 1),
(25783, 'Naveen kumar M', '6', '6381193861', '7695951686', 'naveenkumarnk262003@gmail.com', '2003-08-26', 21, '2', '2', 'A.Murugadass', 'Father', 20000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2507110002', '61', '1', 'upload_files/candidate_tracker/73323475960_Naveenkumarnk.pdf', NULL, '3', '2025-07-11', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate unfit for sales profile, communication not good, lack of confident , reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-07-11 04:05:58', 104, '2025-07-11 06:10:43', 0, NULL, 1),
(25784, 'Ramith S Shet', '6', '7483831168', '6361993874', 'Ramithshet23@gmail.com', '2001-06-25', 24, '2', '2', 'Sudhakar R shet', 'Student', 25000.00, 1, 0.00, 35000.00, 'Khb colony sirsi', 'Hsr', '2507110003', '49', '1', 'upload_files/candidate_tracker/52857406456_ramithsResume.pdf', NULL, '1', '2025-07-11', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for our job', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-07-11 04:28:15', 154, '2025-07-11 11:20:22', 0, NULL, 1),
(25785, 'Sudeepa D R', '6', '6361993874', '7483831168', 'sudeepsudeep43995@gmail.com', '2002-05-07', 23, '2', '2', 'Rajasekhar', 'Student', 100000.00, 0, 0.00, 30000.00, 'Banavara, Arsikere (T), Hassan (D)', 'HSR', '2507110004', '49', '1', 'upload_files/candidate_tracker/69655426395_CV2025070519203918.pdf', NULL, '1', '2025-07-11', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability language issues', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-07-11 04:29:05', 154, '2025-07-11 11:21:04', 0, NULL, 1),
(25786, 'M Mohammed Yusuf', '6', '6374994242', '8883135123', 'mohdyusuf0507@gmail.com', '2004-07-05', 21, '2', '2', 'M Mohammed sikkander', 'Mechanic', 15000.00, 1, 0.00, 20000.00, '9 ,Ansari Nagar, Mahaboobpalayam ,Madurai', 'Pudupet', '2507110005', '61', '1', 'upload_files/candidate_tracker/65999202288_YusufDeveloperresume.pdf', NULL, '1', '2025-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-11 04:47:03', 104, '2025-07-11 06:10:58', 0, NULL, 1),
(25787, 'NIZAMUDEEN A', '6', '9843464693', '', 'nizamudeen241004@gmail.com', '2004-10-24', 20, '2', '2', 'ALAVUDEEN', 'Herbal products courier', 15000.00, 1, 0.00, 20000.00, '40,karpaga nagar 6th Street , k pudur , madurai', 'Pudupetai', '2507110006', '61', '1', 'upload_files/candidate_tracker/21676848126_resumeN.pdf.pdf', NULL, '1', '2025-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-11 04:50:10', 104, '2025-07-11 06:09:30', 0, NULL, 1),
(25788, 'Ganeshan', '6', '6369589841', '8891450741', 'vedhadora52@gmail.com', '2003-01-11', 22, '2', '2', 'Velmurugan', 'Ironing shop', 80000.00, 2, 0.00, 18000.00, 'Perumparai, Dindigul', 'Madurai', '2507110007', '61', '1', 'upload_files/candidate_tracker/55706072680_ganeshanresumefinal.pdf', NULL, '1', '2025-07-11', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate unfit for sales profile, communication not good, lack of confident , reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-07-11 04:52:23', 104, '2025-07-11 06:11:15', 0, NULL, 1),
(25789, 'd.Abdul haseeb hussain', '6', '8072272716', '9940123895', 'haseebjack017@gmail.com', '2004-12-31', 20, '2', '2', 'dilawer hussain', 'business', 30000.00, 1, 0.00, 20000.00, 'chennai-saidapet', 'saidapet', '2507110008', '1', '1', 'upload_files/candidate_tracker/77819637285_Resume.pdf', NULL, '1', '2025-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for sales calls he s into model profile and just for sake he attended the interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-07-11 04:55:10', 154, '2025-07-11 12:27:41', 0, NULL, 1),
(25790, 'M.vinitha', '6', '9791539754', '9710509754', 'vealkannaivelakani@gmail.com', '2000-05-02', 25, '2', '2', 'M.jayanthi', 'House keeping', 20000.00, 2, 15000.00, 15000.00, '26 thideer nager purasiwalkam Chennai', '26thideer nagar purasiwalkam Chennai', '2507110009', '61', '2', 'upload_files/candidate_tracker/5655443649_vinitha.pdf', NULL, '1', '2025-07-11', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-11 05:21:28', 104, '2025-07-11 06:11:26', 0, NULL, 1),
(25791, 'C.sangetha', '6', '9360647550', '9677270854', 'sangeethasumathi41@gmail.com', '2004-12-06', 20, '2', '2', 'Chinnaiya', 'Painter', 40000.00, 1, 0.00, 15000.00, 'Tvk nagar teynampet chennai 18', 'Tvk nagar teynampet chennai 18', '2507110010', '61', '1', 'upload_files/candidate_tracker/80652828599_Resume.pdf', NULL, '1', '2025-07-11', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate unfit for sales profile, communication not good, lack of confident ,she having Wheezing problem xxamp Thyroid,some health issues, reject the profile...', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-07-11 05:37:33', 104, '2025-07-11 06:11:39', 0, NULL, 1),
(25792, 'Durga Devi R', '6', '9884789386', '9080957421', 'Crazykamalam@gmail.com', '2004-02-13', 21, '2', '2', 'Raja sekar R', 'Daily wages', 40000.00, 1, 0.00, 20000.00, 'Teynampet Chennai', 'Teynampet Chennai', '2507110011', '61', '1', 'upload_files/candidate_tracker/40813311533_DOC20250630WA0005..pdf', NULL, '1', '2025-07-11', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate unfit for sales profile, communication not good, lack of confident ,she having bp xxamp Some health issues, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-07-11 05:37:42', 104, '2025-07-11 06:11:47', 0, NULL, 1),
(25793, 'sumeer ahmed j', '6', '9360701337', '7358291814', 'toxic.sumeer@gmail.com', '2005-01-15', 20, '2', '2', 'S jameel ahmed', 'Driver', 10500.00, 2, 0.00, 18000.00, 'Chennai', 'Mannady', '2507110012', '1', '1', 'upload_files/candidate_tracker/17946643291_1000329622.pdf', NULL, '1', '2025-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles Long gap in communicating will not fit for our roles ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-11 05:40:05', 154, '2025-07-11 04:38:13', 0, NULL, 1),
(25794, 's syed abdul rahman', '6', '7305807733', '', 'syedabdulrahman195@gmail.com', '2005-09-13', 19, '2', '2', 'syed samsudeen', 'employee', 15500.00, 1, 0.00, 18000.00, 'chennai', 'sevenwells', '2507110013', '1', '1', 'upload_files/candidate_tracker/8919949323_Resumeee.pdf', NULL, '1', '2025-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up a lot will not handle our work roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-11 05:40:05', 154, '2025-07-11 04:37:48', 0, NULL, 1),
(25795, 'REHAN ALI', '4', '9361625575', '6383120877', 'gtrehan008@gmail.com', '2004-11-04', 20, '5', '2', 'H. FAYAZ ALI', 'BUSINESS', 60000.00, 1, 0.00, 16.00, 'AYANAVARAM', 'AYANAVARAM', '2507110014', '', '1', 'upload_files/candidate_tracker/82760357974_Imagetopdf11Jul2025.pdf', NULL, '1', '2025-07-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-11 05:51:37', 1, '2025-07-11 06:02:07', 0, NULL, 1),
(25796, 'Devaraju M', '6', '7337716250', '6362485818', 'devaraju733771@gmail.com', '2001-01-04', 24, '2', '2', 'Manjunatha', 'Former', 15000.00, 2, 0.00, 25000.00, 'Bangalore', 'Bangalore', '2507110015', '39', '1', 'upload_files/candidate_tracker/58536212782_DEVARAJU.M2.pdf', NULL, '1', '2025-07-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-11 05:57:22', 1, '2025-07-11 06:02:06', 0, NULL, 1),
(25797, 'Mahalakshmi KM', '33', '7483868587', '', 'mahalakshmikm50@gmail.com', '2002-06-10', 23, '2', '2', 'Mallikarjuniha kp', 'Farmer', 11.00, 1, 0.00, 25000.00, 'madhugiri', 'Banglore', '2507110016', '39', '1', 'upload_files/candidate_tracker/9569465730_Mahalakshmik.m1.pdf', NULL, '1', '2025-07-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-11 05:58:18', 1, '2025-07-11 06:02:29', 0, NULL, 1),
(25798, 'asfiya', '6', '9500453939', '7358488526', 'asfiyasheriff53@gmail.com', '1997-01-01', 28, '2', '2', 'meharaj', 'homemaker', 250000.00, 0, 2.50, 3.25, 'tiruppur', 'vadapalani chennai', '2507110017', '49', '2', 'upload_files/candidate_tracker/16844347954_ResumeDOC20250507WA0024..pdf', NULL, '1', '2025-07-11', 0, '', '3', '59', '2025-07-14', 280000.00, '', '3', '2025-12-31', '2', 'Selecetd for RE Role Health Have exp in same for 3yrs can be trained to our process let us try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2025-07-14', 1, '2025-07-11 06:07:41', 60, '2025-07-12 05:51:35', 0, NULL, 1),
(25799, 'Monna mohamed saleem', '6', '7358816442', '8903143113', 'mrsaleem387@gmail.com', '1998-04-03', 27, '2', '2', 'Rameesha', 'Not working', 16500.00, 1, 16500.00, 20000.00, 'tenkasi district', 'triplicane', '2507110018', '61', '2', 'upload_files/candidate_tracker/20793222310_saleemcv.pdf', NULL, '1', '2025-07-11', 1, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'pronouncation of words is not accurate and not much interested in insurance sales.. so not fit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-11 06:14:17', 104, '2025-07-11 06:12:04', 0, NULL, 1),
(25800, 'matisha marya f', '6', '8925221245', '', 'matishamarya12@gmail.com', '2004-09-02', 20, '2', '2', 'franklin', 'Driver', 30000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2507110019', '1', '1', 'upload_files/candidate_tracker/52390106662_MatishaMarya.pdf', NULL, '1', '2025-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up a lot will not handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-11 06:55:27', 154, '2025-07-11 04:39:17', 0, NULL, 1),
(25801, 'S. mohammed rafiq', '6', '6379050492', '9790228236', 'mdrafi99427@gmail.com', '1999-04-27', 26, '3', '2', 'M. Siddiq ahemad', 'Bike technician', 40000.00, 2, 0.00, 22000.00, 'Perambur', 'Pudupet', '2507110020', '', '1', 'upload_files/candidate_tracker/15301982435_1752212840300.pdf', NULL, '1', '2025-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not a relevant profile will fit for office assistant roles only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-11 06:58:48', 154, '2025-07-11 03:51:42', 0, NULL, 1),
(25802, '', '0', '9566057514', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507110021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-11 06:58:53', 0, NULL, 0, NULL, 1),
(25803, 'Deepa CG', '6', '9080389096', '', 'deepacg96@gmail.com', '2004-11-21', 20, '2', '2', 'Chandran', 'Govt Driver', 60000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2507110022', '61', '1', 'upload_files/candidate_tracker/74751082929_DeepaResume.pdf', NULL, '1', '2025-07-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-11 07:10:55', 104, '2025-07-11 06:12:31', 0, NULL, 1),
(25804, 'Rekha', '6', '9944390847', '9789420846', 'rekharamesh3030@gmail.com', '2004-11-30', 20, '2', '2', 'Ramesh', 'Clerk', 50000.00, 1, 0.00, 20000.00, 'Arakkonam', 'Arakkonam', '2507110023', '61', '1', 'upload_files/candidate_tracker/44257824713_Rekharesume.pdf', NULL, '1', '2025-07-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-11 07:11:02', 104, '2025-07-11 06:12:22', 0, NULL, 1),
(25805, 'E Devibala', '6', '8098253887', '8998253887', 'devibalae07@gmail.com', '2005-02-02', 20, '2', '2', 'Elumalai C', 'Driver', 200000.00, 1, 0.00, 20000.00, 'Manali new town', 'Manali new Town', '2507110024', '1', '1', 'upload_files/candidate_tracker/3334770258_Devibala.E.pdf', NULL, '1', '2025-07-14', 0, '', '3', '59', '2025-07-17', 180000.00, '', '3', '2025-08-30', '1', 'Communication Ok Fresher for our roles can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-07-17', 1, '2025-07-11 07:31:01', 60, '2025-07-16 06:41:29', 0, NULL, 1),
(25806, 'Sachin B', '26', '7349652903', '', 'sachinbasavaraju07@gmail.com', '2000-03-09', 25, '2', '2', 'Basavaraju H P', 'B com', 50000.00, 1, 25000.00, 35000.00, '32/10 1st main road 10th cross deepanjali nagar', '32/10 1st main road 10th cross deepanjali nagar', '2507110025', '39', '2', 'upload_files/candidate_tracker/42846658391_NewResume1.pdf', NULL, '1', '2025-07-11', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-11 07:37:48', 1, '2025-07-11 07:42:25', 0, NULL, 1),
(25807, '', '0', '8939047467', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507110026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-11 07:42:24', 0, NULL, 0, NULL, 1),
(25808, 'barathselvam murugan', '6', '6384927639', '', 'bharath77069@gmail.com', '2004-02-27', 21, '2', '2', 'murugan', 'buisnesd', 30000.00, 1, 0.00, 16000.00, 'tirunelveli', 'anna nagar', '2507110027', '61', '2', 'upload_files/candidate_tracker/28884598494_BharathSelvamM202507032045070000.pdf', NULL, '1', '2025-07-11', 1, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-07-11 07:49:27', 104, '2025-07-11 06:12:43', 0, NULL, 1),
(25809, 'I. Madhumitha', '20', '8754208964', '', 'imadhumitha96@gmail.com', '2002-10-16', 22, '2', '2', 'Iyappan chandra', 'Coolie', 96000.00, 1, 0.00, 18000.00, 'Vallioor , thirunelaveli district', 'Vallioor , thirunelaveli district', '2507110028', '1', '1', 'upload_files/candidate_tracker/61024348156_madhuresume.pdf', NULL, '1', '2025-07-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2025-07-11 09:04:57', 1, '2025-07-11 09:17:23', 0, NULL, 1),
(25810, 'Sanjay', '6', '9677197543', '', 'sanjaystark45@gmail.com', '2001-06-12', 24, '2', '2', 'Kasthuri', 'Home maker', 45000.00, 1, 17000.00, 19000.00, 'Madhavaram', 'Madhavaram', '2507110029', '1', '2', 'upload_files/candidate_tracker/61876599795_sanjayresume.docx', NULL, '1', '2025-07-11', 0, '', '3', '59', '2025-07-14', 204000.00, '', '3', '2025-07-15', '1', 'Communication Ok Career Gap he had recently completed graducation and lookin for job will check in training have exp in Jio fiber calls', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55732', '5151', '2025-07-14', 1, '2025-07-11 09:11:58', 60, '2025-07-12 05:49:37', 0, NULL, 1),
(25811, 'Keerthi maria D', '5', '9945700422', '9743002715', 'keerthimaria07@gmail.com', '2004-01-05', 21, '2', '2', 'Dinesh Kumar', 'Driver', 10000.00, 1, 25.00, 30.00, 'Begur Bommanahalli', 'Begur Bommanahalli', '2507110030', '1', '2', 'upload_files/candidate_tracker/23402391398_KeerthiMariaResume.pdf', NULL, '1', '2025-07-12', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-07-11 01:12:32', 1, '2025-07-11 01:16:48', 0, NULL, 1),
(25812, 'Sindhu TR', '6', '9632842849', '8971181651', 'sindhurgowda24@gmail.com', '2001-10-15', 23, '2', '2', 'Ravi TL', 'Farmer', 10000.00, 2, 0.00, 20000.00, 'D Tumkur, Hirisave (h), cRP, Hassan (d)', 'D Tumkur', '2507120001', '39', '1', 'upload_files/candidate_tracker/43601595214_SINDHU.RESUME3.pdf', NULL, '1', '2025-07-12', 0, '', '3', '59', '2025-07-21', 204000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for our roles need to check in training and confirm', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '2025-07-21', 1, '2025-07-12 05:14:22', 60, '2025-07-19 05:07:43', 0, NULL, 1),
(25813, 'Karthika M', '6', '9360717950', '9788038179', 'karthika240499@gmail.com', '1999-09-04', 25, '2', '2', 'Murugan N', 'Farmer', 25000.00, 1, 17000.00, 22000.00, 'No,238,Thilukkampatti,vilappatti, Pudukkottai (dt)', '313,comfy inn , kamaraj arangam, teynampet,chennai', '2507120002', '1', '2', 'upload_files/candidate_tracker/74883315084_KarthikaResume.pdf', NULL, '1', '2025-07-12', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have exp in non voice xxamp teaching fresher for sales exp salary alos pressure handling doubts in this role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-12 05:25:39', 154, '2025-07-12 11:57:52', 0, NULL, 1),
(25814, 'Pooja .V.G', '6', '9080979326', '', 'poojavg4@gmail.com', '2004-04-19', 21, '2', '2', 'Jamuna', 'B.com', 15.00, 1, 15.00, 17.00, 'Chennai', 'Nugambakam', '2507120003', '1', '2', 'upload_files/candidate_tracker/90413798673_V.GpoojaResume1.pdf', NULL, '1', '2025-07-12', 0, '', '3', '59', '2025-07-14', 198000.00, '', '3', '2025-09-03', '2', 'Communication Ok have exp in sales calling can be trained in our roles and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55732', '5151', '2025-07-14', 1, '2025-07-12 06:11:21', 60, '2025-07-12 05:53:06', 0, NULL, 1),
(25815, 'Dhanancheziyan P R', '6', '7418601013', '9941327868', 'dhanancheziyanpr@gmail.com', '2004-04-11', 21, '2', '2', 'PARASURAMAN.V', 'Security', 12000.00, 1, 0.00, 16000.00, '13, ellaiamman Kovil Street Mylapore light House', '13, Ellaiamman Kovil Street Mylapore light House', '2507120004', '1', '1', 'upload_files/candidate_tracker/62380828099_OfficialresumeDC.pdf', NULL, '1', '2025-07-14', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok for sales , over performance , sustainability issues, reject the profile...', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-07-12 06:30:57', 154, '2025-07-14 11:22:11', 0, NULL, 1),
(25816, 'Maha siva sundari M', '6', '6379112844', '9941666628', 'sundari21072004@gmail.com', '2004-07-21', 20, '2', '2', 'Maharajan S', 'VKV Travel boarding checking', 30000.00, 1, 0.00, 15000.00, 'Nanganallur', 'Nanganallur', '2507120005', '1', '1', 'upload_files/candidate_tracker/85403898364_SundariCv1.pdf', NULL, '1', '2025-07-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average not suitablr for sales calling will not sustain', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-12 08:05:44', 60, '2025-07-12 05:07:45', 0, NULL, 1),
(25817, 'Swetha. S', '6', '6383070974', '9080517565', 'Swethadhanush02@gmail.com', '2002-08-05', 22, '2', '1', 'Dhanush prabu T', 'Software engineer', 35000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Chennai', '2507120006', '1', '1', 'upload_files/candidate_tracker/36655176774_SwethaSResume.docx', NULL, '1', '2025-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'pronunciation no clear sustinability doubts\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-12 09:42:02', 154, '2025-07-14 12:48:21', 0, NULL, 1),
(25818, 'Vishnu Prasad E', '2', '9092732731', '', 'epvskrr@gmail.com', '2004-02-01', 21, '2', '2', 'Eswara Moorthy', 'Business', 30000.00, 1, 0.00, 300000.00, 'Karur', 'Chennai', '2507120007', '1', '1', 'upload_files/candidate_tracker/56976132628_VishnuprasadResume.pdf', NULL, '1', '2025-07-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-07-12 12:09:16', 1, '2025-07-12 01:50:39', 0, NULL, 1),
(25819, '', '0', '8778551998', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507120008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-12 12:49:11', 0, NULL, 0, NULL, 1),
(25820, 'Janani N', '6', '7305796679', '7871323867', 'jenijanani2006@gmail.com', '2006-01-01', 19, '2', '2', 'Valarmathi N', 'Ennore', 10000.00, 1, 0.00, 20000.00, 'Ennore', 'Ennore', '2507120009', '1', '1', 'upload_files/candidate_tracker/73622181115_Resume07022025101833pm.pdf', NULL, '1', '2025-07-14', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-12 01:18:33', 154, '2025-07-14 01:27:19', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25821, 'S.H Siddi Sijji Sadina', '6', '9342447066', '', 'siddisadina@gmail.com', '2005-02-12', 20, '2', '2', 'Parents', 'Voice process', 30000.00, 1, 0.00, 15000.00, 'Venkatesan street Kalai arangam opposite chennai', 'Venkatesan street Kalai arangam opposite chennai', '2507120010', '1', '1', 'upload_files/candidate_tracker/64251976095_ssiddi.pdf', NULL, '1', '2025-07-14', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is unfit for sales, communication not good, Lack of confidents, pressure handling, reject the profile', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-07-12 01:26:40', 154, '2025-07-14 12:49:02', 0, NULL, 1),
(25822, '', '0', '7200359508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507120011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-12 01:31:52', 0, NULL, 0, NULL, 1),
(25823, 'Hariharan K', '13', '9025172024', '8508557407', 'haran6538@gmail.com', '2004-09-08', 20, '2', '2', 'Kanagaraj M', 'Farmer', 60000.00, 1, 0.00, 300000.00, 'Ariyalur', 'Chennai', '2507120012', '1', '1', 'upload_files/candidate_tracker/76776573083_HariharanProfessionalResume202507101008500000.pdf', NULL, '1', '2025-07-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-07-12 02:38:49', 154, '2025-07-14 02:53:10', 0, NULL, 1),
(25824, '', '0', '8110912722', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507120013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-12 02:54:06', 0, NULL, 0, NULL, 1),
(25825, 'Mohan M', '13', '9944703738', '', 'mohancheenu04@gmail.com', '2004-04-02', 21, '2', '2', 'Manogaran B', 'Business', 20000.00, 2, 0.00, 15000.00, 'Tiruvallur', 'Tiruvallur', '2507130001', '1', '1', 'upload_files/candidate_tracker/9252752984_MohanMResume1.pdf', NULL, '1', '2025-07-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-13 04:56:13', 154, '2025-07-14 11:00:20', 0, NULL, 1),
(25826, 'Enumula Naresh', '6', '8501824977', '9731942715', 'nareshnar0056@gmail.com', '2001-01-01', 24, '2', '2', 'Narasakka (Mother)', 'House wife', 20000.00, 4, 0.00, 18000.00, 'Banglore', 'Banglore', '2507140001', '49', '1', 'upload_files/candidate_tracker/49946676015_e.naresh.e.docx', NULL, '3', '2025-07-14', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication issues and also he worked previously in driving field. he will not sustain also our profile.', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-07-14 02:47:12', 154, '2025-07-14 04:22:30', 0, NULL, 1),
(25827, 'Sethuram P', '23', '9600309604', '7339469946', 'sethuramprakadh.co@gmail.com', '2003-04-03', 22, '3', '2', 'Prakash C', 'Tailor', 25000.00, 1, 0.00, 2.50, 'Tirupur', 'Tirupur', '2507140002', '', '1', 'upload_files/candidate_tracker/24961590579_SethuramPresume1.pdf', NULL, '1', '2025-07-14', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-14 04:41:15', 154, '2025-07-14 10:39:46', 0, NULL, 1),
(25828, 'Annapoorani S', '6', '7418561255', '', 'aannapoorani34@gmail.com', '2005-02-27', 20, '2', '2', 'saravanan.S', 'voice process', 20000.00, 1, 0.00, 16000.00, 'Anna arch MMD 1st Street and', 'Anna Arch MMD 1st Street And', '2507140003', '1', '1', 'upload_files/candidate_tracker/53760851600_CV2025031010525319.pdf', NULL, '1', '2025-07-14', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is unfit for sales, communication not good, Lack of confidents, pressure handling, reject the profile', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-07-14 04:44:20', 154, '2025-07-14 12:49:41', 0, NULL, 1),
(25829, 'Vijalakshmi p', '6', '8946085325', '', 'Vijipalani1222@gmail.com', '2004-04-22', 21, '2', '2', 'Palani', 'Labour', 10000.00, 1, 0.00, 18000.00, 'Annanur', 'Annanur', '2507140004', '62', '1', 'upload_files/candidate_tracker/38444659801_CV111.pdf', NULL, '1', '2025-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance Pressure handling doubts ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-14 05:01:32', 104, '2025-07-14 06:21:38', 0, NULL, 1),
(25830, 'SANDHIYA K', '6', '8072990748', '9629415496', 'sandhiyak059@gmail.com', '2005-05-23', 20, '2', '2', 'KUMAR K', 'FARMAN', 13000.00, 2, 0.00, 18000.00, '1/109, IRULAR COLLNY, THIRUVALLUR', '1/109, IRULAR COLLNY, THIRUVALLUR', '2507140005', '62', '1', 'upload_files/candidate_tracker/53187821252_sandhiyaRESUME.pdf', NULL, '1', '2025-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'too long distance open for non voice much', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-14 05:02:03', 104, '2025-07-14 06:21:49', 0, NULL, 1),
(25831, 'Monica.p', '6', '8189953853', '', 'moniperumalds@gmail.com', '1998-09-19', 26, '2', '1', 'Suresh.A', 'Supervisor', 20000.00, 2, 0.00, 20000.00, 'No,62 ottha vadai street,tiruvallur', 'Tiruvallur', '2507140006', '62', '1', 'upload_files/candidate_tracker/22742847707_MonicaS2.docx', NULL, '1', '2025-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable fr our roles\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-14 05:05:57', 104, '2025-07-14 06:22:01', 0, NULL, 1),
(25832, 'Sarathkumar', '6', '9150724079', '7418274494', 'sarathkumar62157@gmail.com', '2004-03-29', 21, '2', '2', 'Tamilselvi', 'Factory worker', 70000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2507140007', '1', '1', 'upload_files/candidate_tracker/9691016477_SARATHKUMARE1.pdf', NULL, '1', '2025-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up no confidence seems to be very lag', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-14 05:13:19', 154, '2025-07-14 04:37:30', 0, NULL, 1),
(25833, 'Sathiyamoorthi', '13', '6374793976', '9940194736', 'charan270104@gmail.com', '2004-01-27', 21, '2', '2', 'Nirmala', 'Student', 100000.00, 1, 0.00, 1.50, 'Chennai', 'Chennai', '2507140008', '1', '1', 'upload_files/candidate_tracker/3551068844_SathiyamoorthyResume.pdf1.pdf', NULL, '1', '2025-07-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-14 05:16:18', 154, '2025-07-14 11:00:49', 0, NULL, 1),
(25834, 'Vigneshwaran.V', '2', '9171016602', '9176350591', 'vigneshjeenesh@gmail.com', '2004-04-28', 21, '2', '2', 'R Viswanathan', 'Rapido bike driver', 150000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2507140009', '1', '1', 'upload_files/candidate_tracker/32168709868_DOC20250713WA0002..pdf', NULL, '1', '2025-07-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-14 05:26:33', 154, '2025-07-14 11:04:01', 0, NULL, 1),
(25835, 'Ranjini', '6', '9884338908', '7358338762', 'ranjini10062003@gmail.com', '2003-06-10', 22, '2', '2', 'Selvi', 'Tailor', 12000.00, 0, 0.00, 18000.00, 'Nungambakkam, Chennai', 'Nungambakkam, Chennai', '2507140010', '1', '1', 'upload_files/candidate_tracker/44796673747_cd5ef03b08ea46ec80c22b21c212235f.pdf', NULL, '1', '2025-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up a lot pressure handling doubts will not sustain for a long', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-14 05:57:16', 154, '2025-07-14 04:00:08', 0, NULL, 1),
(25836, 'Janani R', '6', '7305691856', '', 'rjanani321@gmail.com', '2003-08-11', 21, '2', '2', 'Ravi S', 'Tailer', 10000.00, 2, 0.00, 3.40, 'Chennai', 'Chennai', '2507140011', '1', '1', 'upload_files/candidate_tracker/44888451929_JananiRResume4.pdf', NULL, '1', '2025-07-14', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-14 06:01:07', 154, '2025-07-14 01:26:40', 0, NULL, 1),
(25837, 'deepakkumar r', '31', '9952841275', '', 'deepak.kumarr.dev@gmail.com', '2004-08-22', 20, '2', '2', 'ramamoorthy', 'medical salesman', 15000.00, 1, 0.00, 20000.00, 'Pudukkottai', 'Pudukkottai', '2507140012', '1', '1', 'upload_files/candidate_tracker/2429669082_Deepakfullstackdeveloper.pdf', NULL, '1', '2025-07-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-14 06:23:03', 154, '2025-07-18 10:15:07', 0, NULL, 1),
(25838, 'Devika.s', '6', '7904310429', '7299556249', 'Thulasisankar1979@gmail.com', '2003-09-23', 21, '2', '2', 'Thulasi', 'Cooli', 96000.00, 2, 13500.00, 16000.00, 'Chennai', 'Chennai', '2507140013', '62', '2', 'upload_files/candidate_tracker/8466475972_CV2025070315210692.pdf', NULL, '1', '2025-07-14', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-14 06:34:54', 104, '2025-07-14 06:22:15', 0, NULL, 1),
(25839, 'Dhana lakshmi', '6', '9176575491', '', 'dhanalakshmisekarsheela@gmail.com', '2003-06-15', 22, '3', '2', 'Sekar.s', 'Cooli', 95000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2507140014', '', '1', 'upload_files/candidate_tracker/514402213_dhanalakshmisekarresume.pdf', NULL, '1', '2025-07-14', 0, '', '3', '59', '2025-07-15', 180000.00, '', '3', '2025-07-15', '2', 'Communication Ok 5050 Can be trained and check in our roles check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55732', '5151', '2025-07-15', 1, '2025-07-14 06:39:39', 60, '2025-07-14 07:21:51', 0, NULL, 1),
(25840, 'Ajay', '6', '6369612764', '8807602764', 'aajay795462@gmail.com', '2005-03-13', 20, '2', '2', 'E.KRISHNAN', 'WELDER', 20000.00, 1, 0.00, 19000.00, 'Chengelpattu', 'Thirukkalukundram', '2507140015', '1', '1', 'upload_files/candidate_tracker/50777461961_Ajayresume.pdf', NULL, '1', '2025-07-14', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-07-14 06:48:56', 154, '2025-07-14 02:40:17', 0, NULL, 1),
(25841, 'duraimurugan s', '6', '9345706427', '9944273823', 'duraimurugan143s@gmail.com', '2006-03-19', 19, '2', '2', 'sathishkumar', 'centring', 19000.00, 2, 0.00, 19000.00, 'chengalpat', 'chennai', '2507140016', '1', '1', 'upload_files/candidate_tracker/31830698226_Durai.pdf', NULL, '1', '2025-07-14', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-07-14 06:48:57', 154, '2025-07-14 02:39:12', 0, NULL, 1),
(25842, 'Devendiran V', '6', '8248900710', '9345706427', 'devavmgm9790@gmail.com', '2004-04-27', 21, '2', '2', 'Vengatesan', 'Centring', 22000.00, 2, 0.00, 20000.00, 'Thirukalukundram', 'Thirukalukundram', '2507140017', '1', '1', 'upload_files/candidate_tracker/49621654091_Deva.pdf', NULL, '1', '2025-07-14', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-07-14 06:49:06', 154, '2025-07-14 02:38:51', 0, NULL, 1),
(25843, 'Diwakar', '6', '8438143246', '', 'diwakardj2004@gmail.com', '2004-12-10', 20, '2', '2', 'B.venkateshan', 'Barber', 25000.00, 1, 0.00, 17000.00, 'Thirukkazhukundram', 'Thirukkazhukundram', '2507140018', '1', '1', 'upload_files/candidate_tracker/94359497804_PDFReader202507141241.pdf', NULL, '1', '2025-07-14', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-07-14 06:49:26', 154, '2025-07-14 02:39:50', 0, NULL, 1),
(25844, 'ADHITHIYAN R', '6', '9894273500', '8807245630', 'radhithiyan10@gmail.com', '2005-03-02', 20, '2', '2', 'Raja', 'TNEB', 40000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chennai', '2507140019', '1', '1', 'upload_files/candidate_tracker/56332939559_ADHITHIYANResume.pdf', NULL, '1', '2025-07-14', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-07-14 06:49:50', 154, '2025-07-14 02:40:59', 0, NULL, 1),
(25845, 'Thulasi S', '6', '8072157325', '9551519048', 'thulasi010305@gmail.com', '2005-03-01', 20, '2', '2', 'Sankar', 'Driver', 15000.00, 1, 0.00, 18000.00, 'Madhavaram', 'Madhavaram', '2507140020', '62', '1', 'upload_files/candidate_tracker/81897955138_CV2025071112591770.pdf', NULL, '1', '2025-07-14', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-14 07:05:23', 104, '2025-07-14 06:22:34', 0, NULL, 1),
(25846, 'Ananttha Varathan. S', '6', '9384634090', '8778817224', 'anandsandy03@gmail.com', '2003-08-26', 21, '2', '2', 'n siva kumar', 'fitter', 20000.00, 1, 0.00, 17.00, 'Chennai', 'Chennai', '2507140021', '1', '1', 'upload_files/candidate_tracker/35577085710_anantthavrthanresume.pdf', NULL, '1', '2025-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude very casual too long distance will not sustain', '5', '1', '', '4', '6', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-14 07:30:29', 154, '2025-07-14 04:41:32', 0, NULL, 1),
(25847, 'M.Swetha', '6', '6369735382', '', 'swethasweth4545@gmail.com', '2000-04-05', 25, '2', '2', 'D/o of Muthukrishnan', 'Business', 15000.00, 1, 0.00, 2.50, 'Madurai', 'Chennai', '2507140022', '1', '1', 'upload_files/candidate_tracker/62581745408_Swetha.MNewResume.pdf', NULL, '1', '2025-07-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location traevl doubts focus much for IT will not sustain and handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-14 07:38:46', 154, '2025-07-16 12:32:35', 0, NULL, 1),
(25848, 'DHANUSH ALLIMUTHU', '6', '9360685718', '8489170018', 'dhanushallimuthu1611@gmail.com', '2003-11-16', 21, '2', '2', 'THANAVALLI', 'Former', 72000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Thambaram', '2507140023', '45', '1', 'upload_files/candidate_tracker/67432924483_Dhanush.pdf', NULL, '1', '2025-07-14', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for IT.... Not at all interested in sales... ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-14 08:17:35', 154, '2025-07-14 03:15:29', 0, NULL, 1),
(25849, 'K velumani', '6', '6381588314', '8973796294', 'kvelumani004@gmail.com', '2004-08-30', 20, '2', '2', 'Kanagaraj.v', 'Former', 75000.00, 1, 0.00, 20000.00, 'Dindigul', 'Thambaram', '2507140024', '45', '1', 'upload_files/candidate_tracker/37358083483_veluresume.pdf', NULL, '1', '2025-07-14', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication not good, not interested in sales looking for non voice, customer support and IT job', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-14 08:17:54', 154, '2025-07-14 03:16:36', 0, NULL, 1),
(25850, 'Bharathi Kannan Subramanian', '5', '8098898773', '', 'bharathikannan945@gmail.com', '1998-09-20', 26, '2', '2', 'Subramanian', 'Business', 300000.00, 1, 306000.00, 350000.00, 'Thammampatti, Salem', 'BTM layout 2nd stage, Bengaluru', '2507140025', '49', '2', 'upload_files/candidate_tracker/91169978709_BharathiKannanResume1.pdf', NULL, '1', '2025-07-14', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected for rm he will join august 1st suggested ctc 25k', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-07-14 08:31:58', 154, '2025-07-14 06:47:57', 0, NULL, 1),
(25851, 'DINESH V G', '6', '9626408826', '6369784796', 'dineshvg22@gmail.com', '1999-06-17', 26, '2', '2', 'GOVINDHARAJ', 'FARMER', 15000.00, 0, 20000.00, 25000.00, '2/154, PERIYAMITTHALLI, KARIMANGALAM DHARMAPURI', '2/154, PERIYAMITTHALLI, KARIMANGALAM DHARMAPURI', '2507140026', '49', '2', 'upload_files/candidate_tracker/55241195442_dineshresume.docx', NULL, '1', '2025-07-14', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of communication in english he will not sustain, he will be strong on tamil only', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-07-14 09:15:25', 104, '2025-07-14 07:17:19', 0, NULL, 1),
(25852, 'Avinash Raj R', '2', '8610412173', '', 'avinashselvi214@gmail.com', '2003-09-21', 21, '5', '2', 'Rangaraj', 'Driver', 4.00, 2, 0.00, 3.50, 'Pondicherry', 'Pondicherry', '2507140027', '', '1', 'upload_files/candidate_tracker/23659998582_AvinashrajMernstack121.pdf', NULL, '1', '2025-07-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-14 10:12:40', 1, '2025-07-14 10:17:53', 0, NULL, 1),
(25853, '', '0', '9980709360', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507140028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-14 10:47:21', 0, NULL, 0, NULL, 1),
(25854, 'Vijay kumar e', '13', '7603917058', '', 'vijaykumarelumalai123@gmail.com', '2003-09-17', 21, '2', '2', 'elumalai m', 'bussiness', 60000.00, 1, 0.00, 200000.00, 'ranipet', 'chennai', '2507140029', '1', '1', 'upload_files/candidate_tracker/75611164198_VIJAYKUMAR.pdf', NULL, '1', '2025-07-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-14 11:35:47', 154, '2025-07-18 10:04:52', 0, NULL, 1),
(25855, 'Muthu K', '34', '9003485542', '', 'muthuraj8608@gmail.com', '2000-01-06', 25, '3', '2', 'Kumar', 'Farmer', 7000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2507140030', '', '1', 'upload_files/candidate_tracker/92832644106_MuthukumarKYC1.pdf', NULL, '1', '2025-07-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-14 12:28:52', 1, '2025-07-14 12:36:01', 0, NULL, 1),
(25856, 'Rendhika Sri A', '6', '8946070102', '8148812471', 'rendhisri25@gmail.com', '2005-04-25', 20, '2', '2', 'Arumugam (father)', 'Fisherman', 20000.00, 1, 0.00, 18000.00, 'Cuddalore', 'Royapuram Chennai', '2507140031', '1', '1', 'upload_files/candidate_tracker/44833158093_RENDHIKASRI.A.pdf', NULL, '1', '2025-07-15', 0, '', '3', '59', '2025-07-17', 174000.00, '', '3', '2026-01-17', '2', 'Communication Ok 5050 Sustainability profile can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1287', '5151', '2025-07-17', 1, '2025-07-14 12:50:52', 60, '2025-07-16 06:43:19', 0, NULL, 1),
(25857, '', '0', '6385539366', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507150001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-15 03:53:23', 0, NULL, 0, NULL, 1),
(25858, 'Tamilarasi A', '6', '8015759884', '6374143979', 'tamilarasi071204@gmail.com', '2004-12-07', 20, '2', '2', 'Malar A', 'House Keeping', 12000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2507150002', '61', '1', 'upload_files/candidate_tracker/27716327998_mee1.pdf', NULL, '1', '2025-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She need to open up a lot given some time too but she didnt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-15 04:07:28', 154, '2025-07-15 10:45:39', 0, NULL, 1),
(25859, 'yokishwar R', '6', '9363376642', '9363386642', 'yokishwar7@gmail.com', '2004-12-11', 20, '2', '2', 'Anu R', 'House wife', 80000.00, 1, 0.00, 20000.00, 'No.94,thirupavai salai , Balaji nagar , avadi-54', 'Spencer plaza', '2507150003', '61', '1', 'upload_files/candidate_tracker/15750316035_YOKISHWARRRESUME.docx', NULL, '1', '2025-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance also he needs to open up a lot ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-15 04:07:31', 154, '2025-07-15 10:44:24', 0, NULL, 1),
(25860, 'Abinanthana.D', '6', '9150594527', '', 'abinandhana7@gmail.com', '2005-06-01', 20, '2', '2', 'Malathi.D', 'House wife', 10000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2507150004', '61', '1', 'upload_files/candidate_tracker/48189692990_IMG20250517WA0003.pdf', NULL, '1', '2025-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he needs to open up a lot will not handle our sales pressure', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-15 04:07:43', 154, '2025-07-15 11:15:43', 0, NULL, 1),
(25861, 'R Fathima Sheereen', '6', '9940544659', '9790742328', 'fathimashereenr38@gmail.com', '2004-10-19', 20, '2', '2', 'J Sheriffa', 'House wife', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2507150005', '61', '1', 'upload_files/candidate_tracker/86016514924_Resume.pdf', NULL, '1', '2025-07-15', 0, '', '3', '59', '2025-07-21', 180000.00, '', '3', '2025-07-21', '2', 'Fresher Communication Ok Can be trained in our roles and check', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2025-07-21', 1, '2025-07-15 04:31:54', 60, '2025-07-19 05:09:02', 0, NULL, 1),
(25862, 'GADDAM SHESHADRI', '6', '9003253571', '9003284510', 'gsheshadrigsheshadri83@gmail.com', '2005-05-31', 20, '2', '2', 'G. Venkatarathnam', 'Coolie', 20000.00, 1, 0.00, 18000.00, 'Korukkupet', 'Korukkupet', '2507150006', '61', '1', 'upload_files/candidate_tracker/9545908350_1.pdf', NULL, '1', '2025-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice process\n', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-15 05:08:04', 154, '2025-07-15 11:31:50', 0, NULL, 1),
(25863, 'Iyyanar N', '6', '6381249635', '', 'iyyanarn189@gmail.com', '2004-09-19', 20, '2', '2', 'E.Nagaraj', 'Coolie', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai korukkupet egambamaram street 36/38', '2507150007', '61', '1', 'upload_files/candidate_tracker/52483789789_IYYANARRESUME.pdf', NULL, '1', '2025-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Open for non voice process only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-15 05:09:42', 154, '2025-07-15 11:31:18', 0, NULL, 1),
(25864, 'Chandru', '6', '9729914349', '9342412138', 'dc812873@gmail.com', '2003-12-08', 21, '2', '2', 'D.Anbarasi', 'Building worker', 20000.00, 1, 0.00, 25000.00, '5/35 Thiruvallur salai seethamal road teynampet', 'Teynampet', '2507150008', '61', '1', 'upload_files/candidate_tracker/39581468937_chandru1.pdf', NULL, '1', '2025-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Comfort to work in  non voice and data entry profiles only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-15 05:48:01', 154, '2025-07-15 11:59:39', 0, NULL, 1),
(25865, 'D Sanjeshwara Atchayendran', '6', '9094941113', '7449106995', 'sanjeshwara12@gmail.com', '2002-06-12', 23, '2', '2', 'Devendran', 'Cash billing', 20000.00, 1, 0.00, 20000.00, 'No 46/3 r.o.b.5st halls garden royapettah ch 14', 'No 46/3 r.o.b', '2507150009', '61', '1', 'upload_files/candidate_tracker/52333122921_SanjeshwaraResume610.pdf', NULL, '1', '2025-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is open for non voice only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-15 05:48:28', 154, '2025-07-15 12:18:07', 0, NULL, 1),
(25866, 'Dinesh', '6', '9786747194', '7118998339', 'dineshgk412@gmail.com', '2003-01-17', 22, '2', '2', 'Thirumalai', 'Former', 15000.00, 1, 0.00, 25000.00, 'Tindivanam', 'Chennai', '2507150010', '1', '1', 'upload_files/candidate_tracker/73644347546_Developercv22.pdf', NULL, '1', '2025-07-15', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-15 06:07:06', 154, '2025-07-15 01:09:31', 0, NULL, 1),
(25867, 'Surendhar S', '6', '9361353171', '9626523098', 'surendhars209@gmail.com', '2004-01-01', 21, '2', '2', 'N.shanmugam', 'Plumber', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2507150011', '62', '1', 'upload_files/candidate_tracker/41155610468_DOC20250702WA0025.2.pdf', NULL, '1', '2025-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for field visit seems not much comfort to worj in this domain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-15 06:24:38', 154, '2025-07-15 12:59:37', 0, NULL, 1),
(25868, 'Haridass', '6', '6383081851', '8428417985', 'haridass7686@gmail.com', '2003-12-13', 21, '2', '2', 'Murugan', 'Farmer', 15000.00, 1, 0.00, 25000.00, 'Melmarvathur', 'Chennai', '2507150012', '62', '1', 'upload_files/candidate_tracker/67365450769_hariresume.docx', NULL, '1', '2025-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance and not much comfort with field sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-15 06:25:32', 154, '2025-07-15 01:30:30', 0, NULL, 1),
(25869, 'YOGESHWARAN J', '6', '7401097584', '', 'yogeshwaranj064@gmail.com', '2005-03-04', 20, '2', '2', 'Jayanandan v', 'Auto driver', 15000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2507150013', '1', '1', 'upload_files/candidate_tracker/37762352096_YogeshwaranJResume.pdf', NULL, '1', '2025-07-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Still into Studies he will not handle our work pressure not much suits for our roles frequent leaves will be availed ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-15 06:28:13', 154, '2025-07-16 11:19:19', 0, NULL, 1),
(25870, 'BHARATHIRAJA GOVINDAN', '13', '9894286257', '', 'bharathicsee@gmail.com', '2003-07-03', 22, '2', '2', 'govindan', 'n/a', 70000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2507150014', '1', '1', 'upload_files/candidate_tracker/62905478516_BHARATHIRAJAGOVINDAN.docx', NULL, '1', '2025-07-21', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-15 06:54:44', 154, '2025-07-21 12:48:52', 0, NULL, 1),
(25871, 'Kalidass M', '6', '8940476468', '9751133591', 'kalidassmasanam@gmail.com', '2002-04-15', 23, '2', '2', 'Masanamuthu', 'Coolie', 15000.00, 1, 0.00, 25000.00, 'Ramanathapuram District, Sayalkudi', 'Ramanathapuram district, Sayalkudi', '2507150015', '49', '1', 'upload_files/candidate_tracker/43052322763_KalidassResume1.pdf', NULL, '1', '2025-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distane not suitable for our roles too will not sustain and handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-15 06:59:19', 154, '2025-07-15 02:42:06', 0, NULL, 1),
(25872, 'Ravichandran sekar', '6', '9345971221', '', 'ssravi2529@gmail.com', '2003-10-25', 21, '2', '2', 'Sekar', 'Handwloming', 30000.00, 2, 250000.00, 300000.00, 'Dindigul', 'Perungudi', '2507150016', '1', '2', 'upload_files/candidate_tracker/98746539740_ravi2024.pdf', NULL, '1', '2025-07-15', 0, '', '3', '59', '2025-07-21', 276000.00, '', '3', '2025-07-21', '1', 'Communication Ok have exp in Policy Bazaar hired for RM role syed team need to check  in trainign', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55645', '5151', '2025-07-21', 1, '2025-07-15 07:28:09', 60, '2025-07-19 05:12:20', 0, NULL, 1),
(25873, 'AjithKumar Kannadhasan', '6', '8925329643', '7305960615', 'ajith556645@gmail.com', '1999-01-05', 26, '2', '2', 'G Kannadhasan', 'Farmer', 36000.00, 1, 250000.00, 280000.00, 'Aranthangi', 'Kanthanchavadi', '2507150017', '1', '2', 'upload_files/candidate_tracker/73103552073_Ajithkumarresume.pdf', NULL, '1', '2025-07-15', 0, '', '3', '59', '2025-07-21', 252000.00, '', '3', '2025-07-21', '2', 'Communication Ok have 10 months exp in policy bazaar can be trained and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55645', '5151', '2025-07-21', 1, '2025-07-15 07:38:20', 60, '2025-07-19 05:10:59', 0, NULL, 1),
(25874, 'Vishnu M', '33', '7904396280', '8838203571', 'thisisvishnu18@gmail.com', '2002-11-18', 22, '3', '2', 'Mariyappan', 'Labour', 30000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2507150018', '', '2', 'upload_files/candidate_tracker/33270848289_Account.Resume.02.pdf', NULL, '1', '2025-07-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-15 09:02:33', 1, '2025-07-15 09:04:40', 0, NULL, 1),
(25875, 'Abdul Razack', '13', '6379608383', '', 'abdulrazack0006@gmail.com', '2003-05-06', 22, '3', '2', 'Ravuthar Naina', 'Daily wages', 60000.00, 1, 0.00, 20000.00, 'ilayangudi', 'Karapakkam, Chennai', '2507150019', '', '1', 'upload_files/candidate_tracker/19028396541_AbdulRazackJavaSoftwaredeveloper.pdf', NULL, '1', '2025-07-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-15 10:30:06', 1, '2025-07-15 10:38:41', 0, NULL, 1),
(25876, 'vasanthpriyan', '20', '9345768005', '8220543416', 'vasanthpriyan57@gmail.com', '2001-11-09', 23, '2', '2', 'anan', 'teacher', 40000.00, 1, 0.00, 18000.00, 'chennai', 'sholi', '2507150020', '1', '1', 'upload_files/candidate_tracker/51708754699_poerationsresume.pdf', NULL, '1', '2025-07-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2025-07-15 10:38:18', 1, '2025-07-15 10:52:53', 0, NULL, 1),
(25877, '', '0', '9655121149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507150021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-15 11:10:38', 0, NULL, 0, NULL, 1),
(25878, '', '0', '6381116478', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507150022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-15 11:11:19', 0, NULL, 0, NULL, 1),
(25879, '', '0', '9178311757', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507150023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-15 02:05:21', 0, NULL, 0, NULL, 1),
(25880, 'Shaik Syed Meer', '6', '8179345586', '9573297947', 'syedmeershaik263@gmail.com', '2002-08-13', 22, '2', '2', 'Shaik shakeera', 'Telesales', 45000.00, 0, 25000.00, 28000.00, 'Madanapalle', 'Madanapalle', '2507150024', '49', '2', 'upload_files/candidate_tracker/93096016134_ShaikSyedmeerResume3.pdf', NULL, '2', '2025-07-16', 15, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and experience', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-07-15 02:06:28', 154, '2025-07-16 04:40:26', 0, NULL, 1),
(25881, 'Jayachitra M', '6', '8122756235', '8428607097', 'echitra35@gmail.com', '2004-05-25', 21, '2', '2', 'Murali G', 'Auto driver', 18000.00, 1, 0.00, 16000.00, 'Ayanavaram', 'Ayanavaram', '2507160001', '1', '1', 'upload_files/candidate_tracker/40319298523_M.jayachitraresume....pdf', NULL, '1', '2025-08-11', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is little ok.but her voice is low also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-07-16 01:12:08', 154, '2025-08-11 01:29:09', 0, NULL, 1),
(25882, 'Dinesh Kumar venkatasalam', '13', '8525087737', '', 'dineshkumarv717@gmail.com', '2010-07-16', 0, '2', '2', 'Venkatasalam k', 'Driver', 35000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2507160002', '1', '1', 'upload_files/candidate_tracker/48616366966_Resume.pdf', NULL, '1', '2025-07-16', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-16 05:03:35', 154, '2025-07-16 10:47:26', 0, NULL, 1),
(25883, 'V.Sivakumar', '6', '7558124096', '8344528281', 'siva.v272003@gmail.com', '2003-07-27', 21, '2', '2', 'R.Velmurugan', 'Collie', 10000.00, 1, 12000.00, 20000.00, 'Tirunelveli', 'Ambattur Chennai', '2507160003', '62', '2', 'upload_files/candidate_tracker/99947346459_VSivakumarResume.pdf', NULL, '1', '2025-07-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication not clear just a push from consultancy', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-16 05:11:39', 154, '2025-07-16 11:18:25', 0, NULL, 1),
(25884, 'Kavin Sylvester M', '6', '7397412770', '9445021593', 'Kavinsylvester2005@gmail.com', '2005-02-09', 20, '2', '2', 'L.Maria Louis', 'Sales executive', 70000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2507160004', '1', '1', 'upload_files/candidate_tracker/44587422273_CV2025062718332495.pdf', NULL, '1', '2025-07-16', 0, '', '3', '59', '2025-07-17', 192000.00, '', '3', '2025-07-19', '2', 'Communication Ok Fresher open to learn can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', '5151', '2025-07-17', 1, '2025-07-16 05:19:29', 60, '2025-07-16 06:44:37', 0, NULL, 1),
(25885, 'Niviea Jacob Wilson', '6', '9677607995', '', 'nivieaevangelin@gmail.com', '1996-11-15', 28, '2', '2', 'Jacob Wilson', 'Technician Grade 2 Officer', 40000.00, 0, 0.00, 300000.00, 'Kumbakonam', 'Chennai', '2507160005', '1', '1', 'upload_files/candidate_tracker/24241704349_NivieaResume1.pdf', NULL, '1', '2025-07-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long career Gap fresher already holding an offer for 2.4 with IDBI just for addtional opportunities she is looking will not join us not much suitable too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-16 05:19:46', 154, '2025-07-17 12:24:01', 0, NULL, 1),
(25886, '', '0', '9600184770', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507160006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-16 05:30:45', 0, NULL, 0, NULL, 1),
(25887, 'SUDHAKAR GAJENDHIRAN', '5', '7092992554', '9994362689', 'sudhamass1234@gmail.com', '1997-11-23', 27, '2', '2', 'Renuga G', 'Tailer', 20000.00, 1, 29000.00, 35000.00, 'Kovur', 'Saidapet', '2507160007', '1', '2', 'upload_files/candidate_tracker/30126810905_sudhakar2025jannewresume21.pdf', NULL, '1', '2025-07-16', 15, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55650', '55560', '1970-01-01', 1, '2025-07-16 05:37:16', 154, '2025-07-16 12:07:53', 0, NULL, 1),
(25888, 'GAYATHRI M', '6', '6362320752', '8940190812', 'G56034020@GMAIL.COM', '2002-09-19', 22, '2', '2', 'rathna', 'home maker', 15.00, 2, 0.00, 25000.00, 'bangalore', 'bangalore', '2507160008', '49', '2', 'upload_files/candidate_tracker/87301629371_resume.pdf', NULL, '1', '2025-07-17', 0, '', '3', '59', '2025-07-28', 251000.00, '', '3', '2025-08-30', '2', 'communication Ok 5050 long run doubts in this job roles will check and training and decide', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '2025-07-28', 1, '2025-07-16 05:49:41', 60, '2025-07-25 09:59:20', 0, NULL, 1),
(25889, 'Jothilakshmanan neelakandan', '2', '9342040458', '', 'jothilaxman7@gmail.com', '2010-07-16', 0, '5', '2', 'Neelakandan', 'Farmer', 81000.00, 2, 0.00, 500000.00, 'Chennai', 'Chennai', '2507160009', '', '1', 'upload_files/candidate_tracker/33928168110_jothilakshmananresume2.pdf', NULL, '2', '2025-07-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-16 06:00:20', 1, '2025-07-16 06:10:38', 0, NULL, 1),
(25890, 'Tharun M', '5', '8072873930', '', 'mtharunvicky@gmail.com', '2010-07-16', 0, '1', '2', 'Madhanraj', 'Graduation', 20000.00, 1, 350000.00, 420000.00, 'Alangayam vaniyambadi 635701', 'Chamrajpet kr market 560016', '2507160010', '', '2', 'upload_files/candidate_tracker/61807102011_DOC20241218WA0009.pdf', NULL, '1', '2025-07-16', 0, 'CA168', '3', '59', '2025-07-28', 336000.00, '', '5', '1970-01-01', '1', 'Communication Ok Have exp in collection can give a try and check but not sure on his sustainability let us check in training', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '2025-07-28', 1, '2025-07-16 06:26:12', 60, '2025-07-24 05:05:59', 0, NULL, 1),
(25891, '', '0', '9080326477', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507160011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-16 06:34:51', 0, NULL, 0, NULL, 1),
(25892, 'Suraj Mali', '6', '9008241814', '', 'surajsunilmali297@gmail.com', '2002-11-02', 22, '2', '2', 'Sunil Mali', 'Supervisor', 20000.00, 2, 19500.00, 25000.00, 'Hubli', 'Hubli', '2507160012', '39', '2', 'upload_files/candidate_tracker/19785179377_CV2025070814500797.pdf', NULL, '1', '2025-07-16', 10, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-16 06:58:20', 1, '2025-07-16 07:03:30', 0, NULL, 1),
(25893, 'SIVAGANESH P', '6', '8675458419', '7339640445', 'sivaganesh102000@gmail.com', '2000-10-24', 24, '3', '2', 'R.pitchaikani', 'Mill labour', 10000.00, 2, 0.00, 15000.00, 'Aruppukottai', 'Velachery', '2507160013', '', '1', 'upload_files/candidate_tracker/42123679067_Sivaganeshresume1.pdf', NULL, '1', '2025-07-16', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-07-16 07:01:33', 154, '2025-07-16 01:17:00', 0, NULL, 1),
(25894, 'Praveen V', '6', '6383476014', '9994492907', 'praveensasikumar2003@gmail.com', '2003-04-30', 22, '3', '2', 'Veeraragavan P', 'Building Contractors', 40000.00, 1, 0.00, 15.00, 'Madurai', 'Velachery, Chennai', '2507160014', '', '1', 'upload_files/candidate_tracker/18606344386_PraveenResume1.pdf', NULL, '1', '2025-07-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Focus for IT vacancies not suitable for our roles\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-16 07:04:01', 154, '2025-07-16 02:43:51', 0, NULL, 1),
(25895, 'Guna', '6', '8637453466', '8610333041', 'guna95726@gmail.com', '2003-01-23', 22, '2', '2', 'Senthilkumar', 'Former', 14000.00, 1, 0.00, 18000.00, 'Perambalur', 'Koyampedu', '2507160015', '62', '1', 'upload_files/candidate_tracker/49090383580_Gunaresume20241.pdf', NULL, '1', '2025-07-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Much suits for non voice process only \n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-16 07:05:34', 154, '2025-07-16 03:55:54', 0, NULL, 1),
(25896, 'Khaji ahmed basha', '6', '9182716140', '9100802327', 'khajiahmed123@gmail.com', '2003-01-20', 22, '2', '2', 'K khasim', 'Business', 80000.00, 2, 0.00, 25000.00, 'Madanapall', 'Madanapall', '2507160016', '39', '1', 'upload_files/candidate_tracker/37683324186_ahmedresume.pdf', NULL, '1', '2025-07-16', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lack of communication and sustainability issues', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-07-16 07:06:24', 154, '2025-07-16 04:40:57', 0, NULL, 1),
(25897, '', '0', '7338947816', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507160017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-16 07:40:24', 0, NULL, 0, NULL, 1),
(25898, 'bharathraj s', '13', '7806836868', '', 'bharathrajcse25@gmail.com', '2004-03-16', 21, '2', '2', 'devaki', 'tailor', 15000.00, 1, 0.00, 25000.00, 'thirukalukundram chengalpet district', 'guindy', '2507160018', '1', '1', 'upload_files/candidate_tracker/31428842115_BharathrajResume2.pdf', NULL, '1', '2025-07-16', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-16 07:41:05', 154, '2025-07-16 02:34:49', 0, NULL, 1),
(25899, 'Harish R.v', '6', '9962077231', '9176901801', 'Harizzevp@gmail.com', '2001-03-05', 24, '2', '2', 'Veeraswami R', 'Government employee', 30000.00, 2, 15000.00, 20000.00, 'Sowcarpet', 'Sowcarpet', '2507160019', '61', '2', 'upload_files/candidate_tracker/40028139530_Ronaldo.pdf', NULL, '1', '2025-07-16', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No clarity with the exp mentioned seems to give stories a lot will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-16 07:44:39', 154, '2025-07-16 05:15:29', 0, NULL, 1),
(25900, 'Jasmine', '6', '8610898930', '', 'jasminecyril2004@gmail.com', '2004-12-21', 20, '2', '2', 'Cyril Arockia Rajan.V', 'Computer designer', 50000.00, 1, 0.00, 160000.00, 'Pallavaram Chennai', 'Pallavaram Chennai', '2507160020', '1', '1', 'upload_files/candidate_tracker/56598572217_InShot20250613164957474.pdf', NULL, '1', '2025-07-17', 0, '', '3', '59', '2025-07-21', 180000.00, '', '5', '1970-01-01', '2', 'Fresher Communication Ok location long need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', '5151', '2025-07-21', 1, '2025-07-16 07:53:21', 60, '2025-07-19 05:13:32', 0, NULL, 1),
(25901, 'Preethi Priyanka', '6', '9884187532', '8148661864', 'Preethiraj1012@gmail.com', '1998-12-10', 26, '2', '2', 'V.pushparaj', 'Business', 35000.00, 1, 19500.00, 23000.00, 'Chennai', 'Chennai', '2507160021', '1', '2', 'upload_files/candidate_tracker/88457422409_Preethipriyanka2025.pdf', NULL, '1', '2025-07-16', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok, but she having some personal issues there, mentally she affected, so unfit for sales profile', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2025-07-16 08:00:01', 154, '2025-07-16 05:16:32', 0, NULL, 1),
(25902, 'Raja Manikandan P', '13', '7904029939', '7904929939', 'prajamanikandan459@gmail.com', '2010-07-16', 0, '5', '2', 'Palani', 'Business', 200000.00, 1, 0.00, 100000.00, 'Dindigul', 'Dindigul', '2507160022', '', '1', 'upload_files/candidate_tracker/13818216966_RAJAMANIKANDAN30.pdf', NULL, '1', '2025-07-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-16 08:24:16', 1, '2025-07-16 08:27:30', 0, NULL, 1),
(25903, 'gowtham', '13', '8248482743', '', 'gowthams.myself@gmail.com', '2004-05-25', 21, '5', '2', 'shidambaram', 'driver', 75000.00, 1, 0.00, 30000.00, 'dharmapuri', 'Chennai', '2507160023', '', '1', 'upload_files/candidate_tracker/16116763159_Gowthamresume.pdf', NULL, '1', '2025-07-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-16 09:58:25', 1, '2025-07-16 10:01:47', 0, NULL, 1),
(25904, 'Abdul Razak S', '6', '7338947186', '9840552769', 'ar5612300@gmail.com', '2002-09-03', 22, '2', '2', 'Abdul sathar', 'MGC S/o', 16000.00, 1, 15000.00, 20000.00, 'Pattalam market', 'Pattalam market', '2507160024', '61', '2', 'upload_files/candidate_tracker/12513679108_abdul07.pdf', NULL, '1', '2025-07-16', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-16 10:03:02', 154, '2025-07-16 05:16:04', 0, NULL, 1),
(25905, 'Lalith Kishore H', '13', '9884545966', '7299367272', 'lalithkishore200417@gmail.com', '2004-05-17', 21, '5', '2', 'tamilarasi h', 'house wife', 50000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2507160025', '', '1', 'upload_files/candidate_tracker/31110879389_LalithKishoreHResume.pdf', NULL, '1', '2025-07-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-16 10:21:18', 1, '2025-07-16 10:25:07', 0, NULL, 1),
(25906, '', '0', '9578226171', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507160026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-16 12:57:37', 0, NULL, 0, NULL, 1),
(25907, 'riyaaz baig j', '13', '9499943480', '9841642517', 'riyaazbaig@gmail.com', '2003-09-13', 21, '2', '2', 'javeed baig r', 'service engineer', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2507160027', '1', '1', 'upload_files/candidate_tracker/48338826415_RiyaazP.pdf', NULL, '1', '2025-07-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-16 04:01:00', 154, '2025-07-17 11:07:37', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25908, 'K.lakshmi', '6', '8015682930', '', 'lakshmikrishnan331@gmail.com', '2006-08-18', 18, '2', '2', 'N.krishnana', 'Tailor', 12000.00, 1, 0.00, 16000.00, '3/9 Rajaji street ekkattuthangal chennai 32', '3/9 Rajaji street ekkattuthangal chennai 32', '2507170001', '1', '1', 'upload_files/candidate_tracker/84239344333_Lakshmik.pdf', NULL, '1', '2025-07-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-17 02:37:41', 154, '2025-07-17 04:03:44', 0, NULL, 1),
(25909, 'Nandhagopal V', '13', '6381514885', '9513333260', 'nandhagopal0812@gmail.com', '2003-10-09', 21, '2', '2', 'Latha v', 'Self employed', 12000.00, 1, 0.00, 300000.00, 'Sivagangai', 'Chennai-vandalur', '2507170002', '1', '1', 'upload_files/candidate_tracker/40873779293_0655e215af1a473a80dc813fdcf8aaf1.pdf', NULL, '1', '2025-07-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-17 04:40:36', 154, '2025-07-17 10:27:56', 0, NULL, 1),
(25910, 'Pavithran B', '13', '8072494203', '', 'Pavithranb045@gmail.com', '2004-07-22', 20, '2', '2', 'Baskar K', 'Coolie', 90000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2507170003', '1', '1', 'upload_files/candidate_tracker/5655869789_Pavithran.docx', NULL, '1', '2025-07-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-17 04:41:20', 154, '2025-07-17 10:40:53', 0, NULL, 1),
(25911, 'M keshew', '6', '9940209939', '9840123080', 'keshew9@gmail.com', '2005-01-25', 20, '2', '2', 'G.Marimuthu M. Aanadha selvi', 'Koli', 30000.00, 1, 0.00, 15000.00, 'No 10 Kari krishna perumal Kovil Street Manali', 'No 10 Kari krishna perumal Kovil Street manali', '2507170004', '1', '1', 'upload_files/candidate_tracker/10324839308_Resume.docx', NULL, '1', '2025-07-17', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is unfit for sales,, communication not good, lack of confident, reject the profile', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-07-17 05:26:29', 154, '2025-07-17 12:42:52', 0, NULL, 1),
(25912, 'Nafeela Aafrin. Z', '6', '9094230298', '8610873654', 'nafeelaaafrin@gmail.com', '2002-02-13', 23, '3', '2', 'A. c. Zahir Hussain', 'Bike mechanic', 15000.00, 1, 14000.00, 17000.00, 'Chennai', 'Chennai', '2507170005', '', '2', 'upload_files/candidate_tracker/22397329812_780252900015131signed.pdf', NULL, '1', '2025-07-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Complete airtel customer support exp as team leader much comfort to work in that domain only she will not sustain more than a year in back office too if she comes back for sales let us try', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-17 05:32:20', 154, '2025-07-17 12:51:17', 0, NULL, 1),
(25913, 'Sham Daniel S', '6', '7395998589', '9345715429', 'shamdani5518@gmail.com', '2005-09-04', 19, '2', '2', 'STALIN.C', 'Painter', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2507170006', '62', '1', 'upload_files/candidate_tracker/66596097423_ImageToPDF2406202523.45.35.pdf', NULL, '1', '2025-07-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is open for B2B process only and holding an offer with Justdial not open for direct sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-17 05:55:35', 154, '2025-07-17 01:07:01', 0, NULL, 1),
(25914, 'Vignesh G', '6', '8072878064', '7200195060', 'vigneshganapathy12@gmail.com', '2004-08-12', 20, '2', '2', 'Ganapathy R.d', 'Driver', 15000.00, 4, 0.00, 15000.00, 'Old washermentpet chennai', 'Old washermentpet chennai', '2507170007', '62', '1', 'upload_files/candidate_tracker/1874825260_VigneshResume.pdf', NULL, '1', '2025-07-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our sales communication pronunciation not much clear', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-17 05:55:56', 154, '2025-07-17 03:28:17', 0, NULL, 1),
(25915, 'Jamuna Rani S', '6', '7397397668', '9363225956', 'jamjeni2710@gmail.com', '1998-10-27', 26, '2', '2', 'Selvam', 'Flour mill', 18000.00, 1, 18000.00, 19000.00, 'Pulidevan first cross lane mgr nagar', 'Pulidevan first cross lane', '2507170008', '1', '2', 'upload_files/candidate_tracker/5935936902_Jamuna1.pdf', NULL, '1', '2025-07-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'complete non voice exp Pressure handling doubts in this profile long run doubts ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-17 06:01:14', 154, '2025-07-17 03:27:31', 0, NULL, 1),
(25916, 'Agnes J Dennida Jayachandran', '6', '8270031181', '', 'agnesdenitaj@gmail.com', '2005-07-12', 20, '2', '2', 'Sam Jayachandran', 'Vrl logistics clerk', 25000.00, 1, 0.00, 15000.00, 'No13/8, Dr Ambedkar Salai valasaravakkam chennai87', 'No13/8, Dr Ambedkar Salai valasaravakkam chennai87', '2507170009', '1', '1', 'upload_files/candidate_tracker/86795271973_AGNESJDENNIDAResume1.pdf', NULL, '1', '2025-07-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles already joined FS insurance and absconded in 2 days as she is not comfort to work in this domain\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-17 07:21:25', 154, '2025-07-18 11:47:40', 0, NULL, 1),
(25917, '', '0', '7259288034', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507170010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-17 07:24:26', 0, NULL, 0, NULL, 1),
(25918, 'Thrisha S', '6', '8940041878', '', '3sha.seven@gmail.com', '2005-03-05', 20, '2', '2', 'Selva Kumar S', 'Waste marketing', 25000.00, 2, 0.00, 16000.00, 'Porur Chennai 116', 'Porur Chennai 116', '2507170011', '1', '1', 'upload_files/candidate_tracker/32415493803_DOC20250120WA0002.202502181832270000.pdf202504021005320000.pdf', NULL, '1', '2025-07-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-17 07:25:47', 154, '2025-07-17 04:04:02', 0, NULL, 1),
(25919, 'Ragul P', '6', '7550173079', '8610714343', 'ragulp2504@gmail.com', '2005-04-25', 20, '2', '2', 'Perumal swamy.s', 'Labour', 60000.00, 0, 0.00, 15.00, 'Perambur', 'Perambur', '2507170012', '62', '1', 'upload_files/candidate_tracker/79555649139_Resumeofp.Ragul.pdf', NULL, '1', '2025-07-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-17 07:37:44', 154, '2025-07-17 04:06:36', 0, NULL, 1),
(25920, 'K Gopika', '6', '8778508286', '', 'kathavarayangopika@gmail.com', '2005-05-30', 20, '2', '2', 'B Kathavarayan', 'Labour', 16000.00, 1, 12000.00, 15000.00, '678,jJ nagar, f street, Korukkupet, ch-21', '678, JJ nagar, f street, Korukkupet, ch-21', '2507170013', '1', '2', 'upload_files/candidate_tracker/90079758812_Gopikaresume2.pdf', NULL, '1', '2025-07-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Much suits for non voice only\n', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-17 08:43:53', 154, '2025-07-18 11:48:30', 0, NULL, 1),
(25921, 'Yasar Arafath M', '13', '6380769774', '', 'yasararf2110@gmail.com', '2000-10-21', 24, '2', '2', 'Mohamed Rafik s', 'Coolie', 15000.00, 2, 0.00, 150000.00, '8/6,Santhanapuram,Varaganeri,trichy-620008', '8/6,Santhanapuram,Varaganeri,trichy-620008', '2507170014', '1', '1', 'upload_files/candidate_tracker/74544541637_YasarResume.pdf', NULL, '1', '2025-07-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-17 10:58:44', 154, '2025-07-23 10:23:32', 0, NULL, 1),
(25922, 'Juveriya sulthana', '20', '8428127520', '', 'smbjuveria@gmail.com', '2001-03-07', 24, '5', '1', 'Muneer basha', 'Accounts manager', 30000.00, 0, 0.00, 20000.00, 'Tondiarpet', 'Tondiarpet', '2507170015', '', '1', 'upload_files/candidate_tracker/47238201191_JResume.docx', NULL, '1', '2025-07-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-17 11:39:08', 1, '2025-07-17 03:30:20', 0, NULL, 1),
(25923, 'B Mohamed Faahim', '13', '7305764616', '', 'mohamedfaahim2004@gmail.com', '2004-01-13', 21, '6', '2', 'Bareen Mohamed', 'Government Staff Retired', 50000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2507170016', '', '1', 'upload_files/candidate_tracker/5217352717_MohamedFaahimResumeNew.pdf', NULL, '1', '2025-07-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-17 11:43:09', 1, '2025-07-17 11:46:03', 0, NULL, 1),
(25924, 'mathavan sridhar', '13', '8072519496', '', 'mathavansridhar@gmail.com', '2004-07-14', 21, '5', '2', 'sridhar r', 'temple servant', 15000.00, 0, 0.00, 18000.00, 'Trichy', 'Trichy', '2507170017', '', '1', 'upload_files/candidate_tracker/32372489080_maddyresumee.pdf', NULL, '2', '2025-07-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-17 02:55:31', 1, '2025-07-18 02:46:34', 0, NULL, 1),
(25925, 'Manjunath.V', '6', '7259714559', '9035160243', 'manjaking2014@gmail.com', '2001-02-07', 24, '5', '2', 'Venkatachalaiah', 'B.A', 30000.00, 1, 18000.00, 18000.00, 'No 42 2 nd cross bhovi colony S.g palya Bangalore', 'No 42 2 Nd Cross Bhovi Colony S.G Palya Bangalore', '2507180001', '', '2', 'upload_files/candidate_tracker/39237048013_MANJUNATHRESUME777.pdf', NULL, '3', '2025-07-18', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-18 06:14:42', 1, '2025-07-18 06:20:55', 0, NULL, 1),
(25926, 'Vinotha', '6', '7695823417', '', 'vinothapandian2005@gmail.com', '2005-05-10', 20, '2', '2', 'Pandian', 'Cable operator', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2507180002', '1', '1', 'upload_files/candidate_tracker/13854667706_VinothaResume.pdf', NULL, '1', '2025-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average reviewed using the content writing but not upto the expectation for our support roles ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-18 07:25:04', 154, '2025-07-19 05:57:08', 0, NULL, 1),
(25927, 'Dharshini k', '6', '9342232006', '8148608591', 'dharshinikarunakaran7@gmail.com', '2004-10-19', 20, '2', '2', 'K. Sridevi', 'Housewife', 15000.00, 1, 0.00, 15000.00, 'B 49 M. d. L. B colony new washermanpet chennai', 'Chennai', '2507180003', '1', '1', 'upload_files/candidate_tracker/40406516316_Dharshini.kupdatedresume11zon.pdf', NULL, '1', '2025-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Much focus for Customer support roles but will not sustain for a long in our profile not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-18 07:39:41', 154, '2025-07-19 05:57:40', 0, NULL, 1),
(25928, 'Kiruthika', '6', '8148013630', '9944713630', 'kkiruthikak23@gmail.com', '2004-03-27', 21, '2', '2', 'Krishnan', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Sivaganga', 'Coimbatore', '2507180004', '1', '1', 'upload_files/candidate_tracker/37749059676_krithika.pdf', NULL, '1', '2025-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will suitable for non voice only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-18 10:40:16', 154, '2025-07-19 05:58:53', 0, NULL, 1),
(25929, 'Mohammed Asmin Ali', '6', '6383107623', '9840331617', 'Mohamedali4372@email.com', '2001-09-13', 23, '2', '2', 'Jaina Beevi', 'Tailor', 35000.00, 1, 0.00, 15000.00, 'Mayiladuthurai', 'Chennai', '2507180005', '1', '1', 'upload_files/candidate_tracker/94480564236_Myresume2.pdf', NULL, '2', '2025-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fro time being he is looking into this much looking for UI/UX', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-18 12:11:14', 154, '2025-07-19 06:01:03', 0, NULL, 1),
(25930, 'harish venkatesan', '6', '8220827442', '', 'harishvenkat0528@gmail.com', '2003-05-28', 22, '2', '2', 'uma', 'homeworker', 35000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2507180006', '1', '1', 'upload_files/candidate_tracker/83455193831_HarishMBAresume..pdf', NULL, '1', '2025-07-19', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-18 12:33:25', 154, '2025-07-19 01:25:11', 0, NULL, 1),
(25931, 'Indhumathi Saravanan', '6', '7550278272', '9080499561', 'indhumathisaravanan12@gmail.com', '2001-04-12', 24, '2', '2', 'Saravanan', 'Iron man', 15000.00, 1, 17000.00, 20000.00, 'Alapakkam', 'Alapakkam', '2507180007', '1', '2', 'upload_files/candidate_tracker/66124570224_Indhu.pdf', NULL, '1', '2025-07-21', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is ok but seems to be telling lie... two year went to UK for studies but due to health issue dropped college , worked their for part time clear debts.... have exp for 2 months in hdb before ...  ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-18 01:03:32', 154, '2025-07-21 04:22:09', 0, NULL, 1),
(25932, '', '0', '9884272739', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507180008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-18 02:12:27', 0, NULL, 0, NULL, 1),
(25933, 'Vidhya sree B', '6', '8939414118', '9094691929', 'harividhya27@gmail.com', '2004-11-27', 20, '2', '2', 'Nithya B', 'Assistant manager in repco micro finance', 20000.00, 1, 0.00, 15000.00, 'chennai', 'Tondiarpet,chennai', '2507180009', '1', '1', 'upload_files/candidate_tracker/28349225857_B.vidhyasreeresume.pdf', NULL, '2', '2025-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for customer care not open for target ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-18 02:28:28', 154, '2025-07-19 05:58:12', 0, NULL, 1),
(25934, 'Ananthan velalichamy', '6', '9361307829', '', 'anandabhi1512@gmail.com', '2010-07-19', 0, '2', '1', 'Malar vizhi A    Vellaichammi A', 'Work at bank', 25000.00, 1, 0.00, 20000.00, 'Dindigul', 'Chennai parambur', '2507190001', '61', '1', 'upload_files/candidate_tracker/14041567066_AnandhanResume1pdf.pdf', NULL, '1', '2025-07-19', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-19 04:45:35', 154, '2025-07-19 01:18:28', 0, NULL, 1),
(25935, 'VIGNESH K', '6', '6374783811', '8870015954', 'vigneshdon361@gmail.com', '2004-04-02', 21, '2', '2', 'DHARANI S', 'Friend', 25000.00, 0, 0.00, 20000.00, 'Chengalpettu district', 'Chennai', '2507190002', '1', '1', 'upload_files/candidate_tracker/97218914482_Documentfromvigneshdon361.pdf', NULL, '1', '2025-07-19', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-07-19 05:43:00', 154, '2025-07-19 03:36:09', 0, NULL, 1),
(25936, 'Dhiwagar D', '13', '8754817856', '', 'dhiwadhiwa518@gmail.com', '2003-03-18', 22, '6', '1', 'Deenadhayalan', 'Farmer', 7000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Chennai', '2507190003', '', '1', 'upload_files/candidate_tracker/41890924344_DhiwagarDResume.pdf', NULL, '1', '2025-07-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-19 05:45:49', 1, '2025-07-19 05:48:11', 0, NULL, 1),
(25937, 'Abinesh', '6', '9551555287', '9787074113', 'abineshabi2460@gmail.com', '2004-05-20', 21, '2', '2', 'Mari', 'Auto driver', 20000.00, 2, 0.00, 15000.00, 'Melmaruvathur', 'Guindy', '2507190004', '61', '1', 'upload_files/candidate_tracker/67976697396_Resume1.pdf', NULL, '1', '2025-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-19 06:05:04', 154, '2025-07-19 06:00:37', 0, NULL, 1),
(25938, 'Sam Daniel L', '6', '9363150234', '9840171947', 'sam2345dani@gmail.com', '2005-05-19', 20, '3', '2', 'E Loyola Raj ( father)', 'Church pastor', 50000.00, 1, 0.00, 20000.00, 'Tambaram', 'Tambaram', '2507190005', '', '1', 'upload_files/candidate_tracker/83259194395_BlueSimpleProfessionalCVResume202504301348500000.pdf', NULL, '1', '2025-07-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-19 06:37:37', 154, '2025-07-19 06:03:26', 0, NULL, 1),
(25939, 'R.sridevi', '6', '7824014673', '9344493397', 'Saisrimak18@gmail.com', '2004-12-14', 20, '2', '2', 'Raji', 'Helper', 30000.00, 4, 0.00, 20000.00, '18/5 AE kovil street new washermenpet', '18/5 AE kovil street new washermenpet', '2507190006', '61', '1', 'upload_files/candidate_tracker/86552508063_PDFReader202507191251.pdf', NULL, '1', '2025-07-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-19 06:52:22', 154, '2025-07-19 06:03:12', 0, NULL, 1),
(25940, 'A .sathya', '6', '9345464579', '9962097218', 'Sathyasneha2805@gaiml.com', '2005-08-02', 19, '2', '2', 'K.Arumugam', 'Cooli', 20000.00, 6, 0.00, 18000.00, 'New amaranjipuram street thondiyarpet chennai', 'Thondiyarpet', '2507190007', '61', '1', 'upload_files/candidate_tracker/62651582208_SATHYA.pdf', NULL, '1', '2025-07-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-19 06:52:33', 154, '2025-07-19 06:03:02', 0, NULL, 1),
(25941, 'Harikishore Madhavan', '31', '7094099090', '', 'harikishore1515@gmail.com', '2003-05-15', 22, '2', '2', 'Madhavan', 'Business', 20000.00, 1, 0.00, 250000.00, 'Thanjaur', 'Chennai', '2507190008', '1', '1', 'upload_files/candidate_tracker/7597609604_HARIKISHOREBEECE2024React.pdf', NULL, '1', '2025-07-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-19 07:07:40', 154, '2025-07-22 11:26:57', 0, NULL, 1),
(25942, '', '0', '6379017410', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507190009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-19 07:27:05', 0, NULL, 0, NULL, 1),
(25943, 'Shruthi', '6', '6379885524', '9025442741', 'shruthishruthi69677@gmail.com', '2002-12-31', 22, '2', '2', 'Dhanalakshmi', 'Teacher', 13000.00, 1, 0.00, 18.00, 'Salem', 'Salem', '2507190010', '1', '1', 'upload_files/candidate_tracker/91652687490_ShruthiCV1.pdf', NULL, '1', '2025-07-21', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-07-19 07:42:45', 154, '2025-07-21 11:31:57', 0, NULL, 1),
(25944, 'Depesh hari', '4', '7904943849', '', 'deepeshs1997@gmail.com', '1997-11-28', 27, '2', '2', 'Jothi', 'Chennai', 60000.00, 2, 0.00, 30000.00, 'KANCHEEPURAM( INCLUDING CHENGALPATTU DISTRICT)', 'KANCHEEPURAM( INCLUDING CHENGALPATTU DISTRICT)', '2507190011', '49', '1', 'upload_files/candidate_tracker/12887869248_DEEPESHRESUMErestruction.pdf', NULL, '1', '2025-07-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-19 07:43:49', 1, '2025-07-19 07:47:28', 0, NULL, 1),
(25945, 'gowtham felixsilverstar', '13', '6385879955', '6381594009', 'fgowtham4k@gmail.com', '2004-02-05', 21, '6', '2', 'felix silverstar', 'supervisor', 80000.00, 1, 0.00, 15000.00, 'erode', 'porur', '2507190012', '', '1', 'upload_files/candidate_tracker/3808227021_ResumeGowtham.pdf', NULL, '1', '2025-07-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-19 07:51:15', 1, '2025-07-19 12:11:44', 0, NULL, 1),
(25946, 'Janaki.v', '4', '8807922289', '', 'janakivasu72@gmail.com', '2004-05-20', 21, '6', '2', 'Vasu.R', 'Welder', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2507190013', '', '1', 'upload_files/candidate_tracker/87627149765_RESUME3.pdf', NULL, '1', '2025-07-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-19 07:51:31', 1, '2025-07-19 07:57:06', 0, NULL, 1),
(25947, 'Devaprakash R', '6', '6380091125', '9585209925', 'devaprakash7277@gmail.com', '2003-09-02', 21, '2', '2', 'Ramu s', 'Corpenter', 70000.00, 1, 0.00, 15000.00, 'Bharathidasan pettai pelakuppam road tindivanam', 'Bharathidasan Pettai Pelakuppam Road Tindivanam', '2507190014', '57', '1', 'upload_files/candidate_tracker/86324960868_resumedeva.pdf', NULL, '3', '2025-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice process much will not sustain in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-19 07:58:58', 154, '2025-07-19 05:59:26', 0, NULL, 1),
(25948, 'Ganapathi Onsi Parantaman', '6', '9940962270', '9170706455', 'ganapathiop143@gmail.com', '2002-06-26', 23, '2', '2', 'Paranthaman', '2', 200000.00, 2, 18000.00, 230000.00, '1134,Kulakarai Veedhi, Ammaiyarkuppam', 'Thiruvallur', '2507190015', '49', '2', 'upload_files/candidate_tracker/20662947755_Ganapathiopresume.pdf', NULL, '1', '2025-07-22', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long distance not open for sales too he is looking for insurance coordination and much of non voice ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-19 08:07:00', 154, '2025-07-22 03:27:31', 0, NULL, 1),
(25949, 'Nirmal G', '6', '9600383469', '', 'nirmalmusic290@gmail.com', '2003-10-28', 21, '2', '2', 'Ganesan', 'Driver', 25000.00, 1, 0.00, 18000.00, 'Salem', 'Sriperumbuthur', '2507190016', '1', '1', 'upload_files/candidate_tracker/61494698871_BlueandWhiteCleanProfessionalA4Resume.pdf.pdf', NULL, '1', '2025-07-21', 0, '', '3', '59', '2025-07-28', 192000.00, '', '3', '2025-12-01', '2', 'Communication Ok Can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1287', '5151', '2025-07-28', 1, '2025-07-19 08:16:35', 60, '2025-07-24 05:15:45', 0, NULL, 1),
(25950, 'A.aisha sidhiga', '6', '9342909499', '', 'aisha12and23in1999@gmail.com', '1999-06-23', 26, '2', '2', 'Thahira banu', 'Tailor', 15.00, 2, 0.00, 18.00, 'Thiruvottiyur , Chennai', 'Thiruvottiyur , Chennai', '2507190017', '1', '1', 'upload_files/candidate_tracker/55240726153_Resume2.pdf', NULL, '1', '2025-07-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not open for Insurance domain as she used to practice the religious norms\n ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-07-19 11:15:24', 154, '2025-07-22 12:27:14', 0, NULL, 1),
(25951, 'franklin justin jospeh', '13', '8682055939', '8248172269', 'franklinjustin64@gmail.com', '2004-09-24', 20, '6', '2', 'mercy mary', 'teacher', 30000.00, 2, 0.00, 2.50, 'Chennai', 'Chennai', '2507190018', '', '1', 'upload_files/candidate_tracker/47155757023_FranklinJustinResume.pdf', NULL, '1', '2025-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-19 11:58:11', 1, '2025-07-19 12:10:19', 0, NULL, 1),
(25952, 'Hari Krishnan B', '6', '7395965373', '', 'Bharikrishnanbabu@gmail.com', '2003-08-17', 21, '2', '2', 'Babu V', 'Self employed', 14000.00, 1, 0.00, 18.00, 'Chennai', 'Chennai', '2507190019', '1', '1', 'upload_files/candidate_tracker/30453414307_HARIKRISHNAN1personal11.pdf', NULL, '1', '2025-07-31', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-19 01:07:35', 154, '2025-07-31 12:36:51', 0, NULL, 1),
(25953, 'Akash Kumar A', '6', '8925254371', '7299204823', 'akashkumar93619@gmail.com', '2004-04-12', 21, '2', '2', 'Arumugamanikandan', 'Business', 30000.00, 2, 0.00, 20000.00, 'No.1 ram nagar 2nd Street avadi', 'No.1 ram nagar 2nd Street avadi', '2507190020', '1', '1', 'upload_files/candidate_tracker/93840508338_akashResume.pdf', NULL, '1', '2025-07-21', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'canidate communcation and performance is not good .also Voice correlation Problem.sustainable is doubt', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-07-19 01:10:45', 154, '2025-07-21 05:31:44', 0, NULL, 1),
(25954, 'Rajesh C N', '5', '8431680853', '', 'chrisrajesh1698@gmail.com', '1998-09-16', 26, '2', '2', 'Shantha', 'Housewife', 25000.00, 2, 20000.00, 27000.00, 'Hindupur.', 'Bommanahalli', '2507190021', '49', '2', 'upload_files/candidate_tracker/3532611745_RajeshResume.pdf', NULL, '2', '2025-07-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-19 01:20:39', 1, '2025-07-19 01:27:27', 0, NULL, 1),
(25955, 'Batulabee Shahin farhana', '6', '8925209191', '', 'bathulabe3@gmail.com', '2003-03-08', 22, '2', '2', 'A.G.Mohamed Arif', 'sticker work', 30000.00, 1, 15000.00, 19000.00, 'Mount road', 'Mount road', '2507200001', '1', '2', 'upload_files/candidate_tracker/51868536081_Resume.pdf', NULL, '1', '2025-07-21', 1, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performacne is not good.aslo she is not activeness.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-07-20 01:11:11', 154, '2025-07-21 01:04:20', 0, NULL, 1),
(25956, 'Dharnisha M', '6', '8925188676', '9841398132', 'mdharnishamanimaran@gmail.com', '2004-09-22', 20, '2', '2', 'Manimaran', 'Business', 250000.00, 0, 0.00, 18.00, 'New Amaranjipuram street, tondairpet, Chennai 81', 'New Amaranjipuram street, tondairpet, Chennai 81', '2507200002', '1', '1', 'upload_files/candidate_tracker/38958225016_NishaResume.pdf', NULL, '1', '2025-07-22', 0, '', '3', '59', '2025-07-24', 180000.00, '', '3', '2025-07-28', '2', 'Communication Ok 5050 for our roles  can be trained in our roles and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '2025-07-24', 1, '2025-07-20 03:46:11', 60, '2025-07-23 07:16:28', 0, NULL, 1),
(25957, 'Kowsalya A', '6', '9363502622', '9361307829', 'kowsikowsi02410@gmail.com', '2002-03-02', 23, '2', '1', 'Anandhan V', 'Farmer', 20.00, 0, 0.00, 20000.00, 'Dindigul', 'Perambur', '2507210001', '61', '2', 'upload_files/candidate_tracker/34010535906_KowsalyaAResume.pdf', NULL, '1', '2025-07-21', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performacne is not good.aslo she is not Interesact More.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-07-21 04:39:03', 154, '2025-07-21 12:46:13', 0, NULL, 1),
(25958, 'hari balakrishnan', '6', '9597953798', '9626121719', 'hariprasanna1118@gmail.com', '2001-07-05', 24, '3', '2', 'balakrushnan', 'indian', 100000.00, 4, 3.00, 3.50, 'gingee', 'chennai', '2507210002', '', '2', 'upload_files/candidate_tracker/10928144237_CV2024112617591191.pdf', NULL, '1', '2025-07-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Completely looking for non voice process not suitable for our roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-21 05:04:56', 154, '2025-07-21 12:45:31', 0, NULL, 1),
(25959, 'Joyes.j', '6', '9790774795', '9840051514', 'joyessarah3@gmail.com', '2005-07-10', 20, '3', '2', 'Sandhiya.j', 'HOME MAKER', 85000.00, 0, 0.00, 25000.00, '43A appar swamy koil Street Thiruvottiyur', '43A appar swamy koil Street Thiruvottiyur', '2507210003', '', '1', 'upload_files/candidate_tracker/3949230119_JoyesFinalResumeCalibri1.docx', NULL, '1', '2025-07-21', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-21 05:11:15', 154, '2025-07-21 02:45:55', 0, NULL, 1),
(25960, 'Kavitha G', '13', '8248684102', '', 'kavitha05102001@gmail.com', '2001-10-05', 23, '3', '2', 'Father', 'Plumper', 30000.00, 1, 0.00, 25000.00, 'Mayiladuthurai', 'Chennai', '2507210004', '', '1', 'upload_files/candidate_tracker/84821931364_kavithaNew321.pdf', NULL, '1', '2025-07-21', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-21 05:29:03', 154, '2025-07-21 11:11:23', 0, NULL, 1),
(25961, 'N Gopi', '6', '6380693877', '', 'nsgopi.03@gmail.com', '2004-08-30', 20, '2', '2', 'nirmal', 'government', 20000.00, 0, 250000.00, 500000.00, 'Thiruvannamalai', 'Thiruvannamalai', '2507210005', '1', '2', 'upload_files/candidate_tracker/55502616613_Resumeprofessional.pdf', NULL, '1', '2025-07-21', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-07-21 05:31:15', 154, '2025-07-21 12:44:09', 0, NULL, 1),
(25962, 'A. Sagaya abilasha', '11', '8122963478', '9043930535', 'alex20402007@gamil.com', '2003-09-04', 21, '2', '2', 'Shyla', 'Homemaker', 40000.00, 1, 0.00, 1.00, '6 THOMAIYAR street kamarajapuram chennai -70', 'Spencer plaza', '2507210006', '1', '1', 'upload_files/candidate_tracker/86577962575_downloadresume.pdf', NULL, '1', '2025-07-21', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for our team', '6', '2', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-07-21 05:53:24', 154, '2025-07-21 02:43:43', 0, NULL, 1),
(25963, 'Manikandan V', '6', '9944407684', '', 'manims1901@gmail.com', '2001-11-03', 23, '2', '2', 'Velmurugan R', 'Electrician', 15000.00, 2, 0.00, 15000.00, 'Dindigul', 'Chennai', '2507210007', '1', '1', 'upload_files/candidate_tracker/62069834991_manikandanresume.docx', NULL, '1', '2025-07-21', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performacne is not good.aslo He is lethagicaly Answered And  sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-07-21 06:05:39', 154, '2025-07-21 02:47:16', 0, NULL, 1),
(25964, 'Sathiya B', '6', '9677665167', '7826903667', 'sathyasatyabalu@gmail.com', '2002-05-01', 23, '2', '2', 'Balusamy', 'Farmer', 15.00, 1, 15.00, 16000.00, 'Anna nagar street, thengiyanatham ,kallakurichi.', '11 th Street, near lighthouse railways station.', '2507210008', '1', '2', 'upload_files/candidate_tracker/56900673813_CV2025060400404696.pdf', NULL, '1', '2025-07-21', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'ok with communication but not sure about her stability because she was interested it jobs also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1287', '5151', '1970-01-01', 1, '2025-07-21 06:05:59', 154, '2025-07-21 04:21:23', 0, NULL, 1),
(25965, 'ARIVAZHAGAN BABU', '6', '6382775215', '6381907073', 'sullanarivu@gmail.com', '1999-05-25', 26, '2', '2', 'S.Babu', 'Wage labour', 40000.00, 2, 0.00, 16000.00, 'Pattukonampatti,pappireddipatti, Dharmapuri', ',Egmore,chennai.600 002', '2507210009', '1', '1', 'upload_files/candidate_tracker/79118200531_RESUMEB.ARIVAZHAGAN.docx', NULL, '1', '2025-07-21', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-21 06:11:18', 154, '2025-07-21 02:46:33', 0, NULL, 1),
(25966, 'Arish A', '6', '7604865557', '', 'dhineshiampeter@gmail.con', '2004-05-08', 21, '2', '2', 'Azhaganathan', 'Farmer', 18000.00, 2, 0.00, 18000.00, 'Cuddalore', 'Sribermputhur', '2507210010', '1', '1', 'upload_files/candidate_tracker/22923556353_ArishA202507201527310000.pdf', NULL, '1', '2025-07-21', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-07-21 06:40:33', 154, '2025-07-21 02:46:58', 0, NULL, 1),
(25967, 'Nivedha A', '6', '8939134666', '9556071967', 'nivedhashokkumar13@gmail.com', '2004-11-13', 20, '2', '2', 'Ashok kumar', 'Auto driver', 15000.00, 1, 0.00, 20000.00, '39/18 jeeva nagar 2nd street new washermenpet', '39/18 jeeva nagar 2nd street chennai 81', '2507210011', '62', '1', 'upload_files/candidate_tracker/41065605302_NivethaResume1.pdf', NULL, '1', '2025-07-23', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and peerformance is not well.sustainable doubt.expected higher package', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-07-21 06:49:33', 154, '2025-07-23 02:44:49', 0, NULL, 1),
(25968, 'A Maria Josphine', '6', '9342535714', '6385508456', 'mariariba2005@gmail.com', '2005-02-19', 20, '2', '2', 'Amala durai.A', 'Painter', 15000.00, 1, 0.00, 20000.00, 'No 2 Anna street Tv nagar Ayanavaram chennai -23', 'No 2 Anna street Tv nagar Ayanavaram chennai -23', '2507210012', '62', '1', 'upload_files/candidate_tracker/26982984079_22.pdf', NULL, '1', '2025-07-23', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performace is not good.aslo sustainable is doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-07-21 06:49:52', 154, '2025-07-23 02:45:32', 0, NULL, 1),
(25969, 'Balaji V', '13', '6382229587', '7550075527', 'balajiofficial2507@gmail.com', '1999-07-25', 25, '3', '2', 'Venkatesan M', 'Carpenter', 25000.00, 0, 300000.00, 300000.00, 'Chennai', 'Chennai', '2507210013', '', '2', 'upload_files/candidate_tracker/15127602937_BalajiResume.pdf', NULL, '1', '2025-07-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-21 06:55:33', 154, '2025-07-21 12:38:06', 0, NULL, 1),
(25970, '', '0', '9150952495', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507210014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-21 06:55:44', 0, NULL, 0, NULL, 1),
(25971, 'Senthil m', '6', '9486118334', '8489163454', 'senthilkames@gmail.com', '2001-07-11', 24, '3', '2', 'Muthukrishnan', 'Farmer', 30000.00, 1, 22000.00, 24000.00, 'Kameswaram,Nagapattinam', 'Saidhapet, chennai', '2507210015', '', '2', 'upload_files/candidate_tracker/25570333971_Resume1.docx', NULL, '1', '2025-07-21', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok, but he doing own photography business, so need leaves bcz of met appt, so not suitable for our field,..', '5', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-07-21 07:30:04', 154, '2025-07-21 04:05:12', 0, NULL, 1),
(25972, 'Sanjay Kumar s', '6', '8778521483', '9790976721', 'sanjaysham02032004@gmail.com', '2004-03-02', 21, '2', '2', 'sathya', 'office admin', 14000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2507210016', '62', '1', 'upload_files/candidate_tracker/78445356292_SanjayKumarResume25.docx', NULL, '1', '2025-07-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok fresher but much focused to work in non voice  sales convincing no pressure handling doubts\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-21 07:40:41', 154, '2025-07-21 05:26:20', 0, NULL, 1),
(25973, 'jeevan adhitya p', '6', '9003708621', '9786258781', 'jeevanadhitya2003@gmail.com', '2003-05-21', 22, '2', '2', 'palani', 'government Teacher', 100000.00, 2, 0.00, 15000.00, 'tiruvannamalai', 'chennai', '2507210017', '1', '1', 'upload_files/candidate_tracker/74498682634_JeevanAdhityaresume.pdf', NULL, '1', '2025-08-07', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not having seriousness to look for job, one year career gap, looking for IT also, pressure handling doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', 'not having seriousness to look for job, one year career gap, looking for IT also, pressure handling doubts', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2025-07-21 09:25:24', 154, '2025-08-07 12:54:37', 0, NULL, 1),
(25974, 'Balaji k', '6', '9514393621', '7428326981', 'balajibala51220@gmail.com', '2000-12-05', 24, '2', '2', 'Amirthan', 'House keeper', 20000.00, 1, 20000.00, 23000.00, 'Korattur ,chennai', 'Korattur, Chennai', '2507210018', '1', '2', 'upload_files/candidate_tracker/63763231264_balajiresume2025.pdf', NULL, '1', '2025-07-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication average he is open much for admin / non voice not suitable for your roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-21 09:57:24', 154, '2025-07-21 05:04:53', 0, NULL, 1),
(25975, 'Santhosh R', '6', '7428326981', '9962084363', 'Santhoshsand1412@gmail.com', '2002-07-21', 23, '2', '2', 'Lakshmi', 'Nurse', 15000.00, 1, 20000.00, 22000.00, 'Korattur ,chennai', 'Veppaampattu', '2507210019', '1', '2', 'upload_files/candidate_tracker/84712111789_BlueCleanStudentInternshipFresherResume.pdf', NULL, '1', '2025-07-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok 5050 Long run doubts he is planning to go with MBA also have some business plan completed Digital marketing Pressure handling in our roles doubtfull', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-21 10:08:49', 154, '2025-07-21 05:30:53', 0, NULL, 1),
(25976, 'A Mohamed Ali', '6', '7010050714', '', 'amohamedali086@gmail.com', '2001-02-28', 24, '2', '2', 'Allapichai M', 'Working in Textile Shop', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2507210020', '1', '1', 'upload_files/candidate_tracker/19196365927_MohamedAliCV2.pdf', NULL, '1', '2025-07-23', 0, '', '3', '59', '2025-08-04', 192000.00, '', '', '1970-01-01', '1', 'Communication ok long career gap for 4 yrs exam preparations 5050 for our roles let us try and confirm', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-07-21 12:23:44', 154, '2025-07-23 04:01:46', 0, NULL, 1),
(25977, 'Sandhiya. S', '6', '8122942472', '8925188676', 'sandhiya04062004@gmail.com', '2004-06-04', 21, '2', '2', 'Suresh kumar', 'Business', 20000.00, 1, 0.00, 16000.00, '60/40 vinayagapuram main Street tondiarpet ch -81', 'Chennai', '2507220001', '1', '1', 'upload_files/candidate_tracker/20006003566_Sandhiya.S202506151931370000.pdf', NULL, '1', '2025-07-22', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok , communication not good, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-07-22 05:27:47', 154, '2025-07-22 12:26:37', 0, NULL, 1),
(25978, 'Dhanushpandi P', '6', '7010691924', '9940873339', 'dhanushpandi1104@gmail.com', '2004-04-11', 21, '1', '2', 'Poopandi M', 'Supervisor', 150000.00, 2, 0.00, 20000.00, 'Madurai', 'Chennai', '2507220002', '', '1', 'upload_files/candidate_tracker/1500382586_WhatsAppImage20250723at5.45.27PM.pdf', NULL, '1', '2025-07-22', 0, 'C99159', '3', '59', '2025-07-28', 192000.00, '', '3', '2025-08-06', '2', 'Communication ok can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2025-07-28', 1, '2025-07-22 05:32:59', 60, '2025-07-24 05:27:36', 0, NULL, 1),
(25979, '', '0', '8925353413', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507220003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-22 05:50:47', 0, NULL, 0, NULL, 1),
(25980, '', '0', '9342277609', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507220004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-22 06:02:41', 0, NULL, 0, NULL, 1),
(25981, 'Gobinatha R', '2', '9360761260', '', 'gobigobi3108@gmail.com', '2002-05-13', 23, '5', '2', 'Ramalingam P', 'Cooli', 15000.00, 2, 0.00, 240000.00, 'Salem', 'Salem', '2507220005', '', '1', 'upload_files/candidate_tracker/15472746157_GobinathRResume.pdf', NULL, '1', '2025-07-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-22 06:21:50', 1, '2025-07-22 06:26:11', 0, NULL, 1),
(25982, 'G.yamuna devi', '6', '6374292099', '9384647354', 'Yamuyamuna829@gmail.com', '2004-07-01', 21, '2', '2', 'G.gunasekaran G.selvi', 'Givernment Retired man', 12000.00, 1, 20000.00, 22000.00, 'No: 9/1 s.s puram m.k Radha nagar dms teynampet', 'Muthaiya street DMS teynampet chennai', '2507220006', '62', '2', 'upload_files/candidate_tracker/86606297643_YAMUNARESUME2.pdf', NULL, '1', '2025-07-22', 9, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Manager shortlisted the profile initially later after the detailed discsussion not much comfort to proceed further based on the candidate input on appointments and the meetings', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-07-22 07:12:19', 154, '2025-07-22 03:35:35', 0, NULL, 1),
(25983, 'Aswin Bhakiya A', '6', '6382501522', '', 'aswinbhakiya20@gmail.com', '2004-11-10', 20, '2', '2', 'P.Arul manickam', 'Unemployed', 20000.00, 1, 0.00, 250000.00, 'No:12Annasalai,sasthrinagar,vyasarpadichennai-39.', 'No:12Annasalai,sasthrinagar,vyasarpadichennai-39.', '2507220007', '1', '1', 'upload_files/candidate_tracker/14100866222_ASWINBHAKIYA.ACV.pdf', NULL, '1', '2025-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Communication Ok but not clear with the domain to work looking for non voice too joined MBA in PULC will not run in a long with us', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-22 11:18:47', 154, '2025-07-24 03:03:06', 0, NULL, 1),
(25984, 'Jawahar M', '6', '9150602494', '', 'mjawahar2003@gmail.com', '2003-10-04', 21, '2', '2', 'Magesh Kumar', 'Driver', 15000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2507220008', '1', '1', 'upload_files/candidate_tracker/43324883776_R1.pdf', NULL, '1', '2025-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much aggresive in communication for sales open much for non voice only\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-07-22 12:48:20', 154, '2025-07-23 12:31:13', 0, NULL, 1),
(25985, 'Swetha', '6', '9342660212', '9514417287', 'maniswethaswetha@gmail.com', '2003-11-12', 21, '2', '2', 'Sivagami', 'Pionner company', 12000.00, 1, 15000.00, 17000.00, 'Meenapakam', 'Meenapakam', '2507220009', '1', '2', 'upload_files/candidate_tracker/29694230085_RESUMEOFSwetha.S.docx', NULL, '1', '2025-09-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good aslo very slow.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-07-22 01:45:01', 154, '2025-09-02 04:45:55', 0, NULL, 1),
(25986, 'senthamizh selvan .s. s', '6', '9092650873', '7395947386', 'senthamizhselvan2204@gmail.com', '2004-04-22', 21, '2', '2', 'sudharsan', 'office boy', 20000.00, 1, 0.00, 18000.00, 'vysarpadi chennai', 'vysarpadi chennai', '2507220010', '1', '1', 'upload_files/candidate_tracker/55743926410_SenthamizhSelvanResume.pdf', NULL, '1', '2025-07-23', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is not ok for sales profile, communication not good, reject', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-07-22 02:02:48', 154, '2025-07-23 02:57:30', 0, NULL, 1),
(25987, 'Bharath S', '6', '9505925833', '', 'bharahth123@gmail.com', '2002-06-16', 23, '2', '2', 'Soundbarraj', 'Farmer', 40000.00, 1, 25000.00, 35000.00, 'Marathalli', 'Bellandur', '2507220011', '49', '2', 'upload_files/candidate_tracker/20075382367_BharathRusum.docx', NULL, '1', '2025-07-24', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-07-22 02:11:16', 104, '2025-07-24 03:13:25', 0, NULL, 1),
(25988, 'Abirami.R', '6', '7695864129', '6374489345', 'raviabirami004@gmail.com', '2004-05-19', 21, '2', '2', 'Indhira', 'Housewife', 30000.00, 1, 24000.00, 27000.00, 'Chennai ,manali', 'Chennai,manali', '2507220012', '1', '2', 'upload_files/candidate_tracker/99957477347_downloadresume4.pdf', NULL, '3', '2025-07-23', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to check the documents and confirm', '5', '1', '', '1', '8', '', '2', '2025-07-25', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-07-22 03:37:25', 154, '2025-07-23 12:31:43', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25989, 'Jayapriya radhakrishnan', '6', '9962541625', '9962522625', 'jayapriyajessy@gmail.com', '2004-02-19', 21, '2', '2', 'Radhakrishnan', 'Admin officer', 50000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2507220013', '1', '2', 'upload_files/candidate_tracker/69512922765_JP1.pdf', NULL, '1', '2025-07-23', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performacne is not good.aslo she is sensitive type.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2025-07-22 03:37:35', 154, '2025-07-23 12:26:27', 0, NULL, 1),
(25990, 'Vaishnavi selvaraj', '4', '9042003793', '8925674336', 'vaishuselvaraj765@gmail.com', '2005-07-15', 20, '2', '2', 'Selvaraj', 'Mation supervisor', 20000.00, 1, 0.00, 15000.00, '01 north street town karambai keelavasal Thanjavur', '01 north street town karambai keelavasal Thanjavur', '2507230001', '1', '1', 'upload_files/candidate_tracker/12272741919_CV2025060918570512.pdf', NULL, '1', '2025-07-24', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', '5151', '1970-01-01', 1, '2025-07-23 04:03:47', 154, '2025-07-24 05:03:29', 0, NULL, 1),
(25991, '', '0', '7200991049', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507230002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-23 04:27:38', 0, NULL, 0, NULL, 1),
(25992, 'Sivabalan D', '6', '9551150990', '9551150989', 'sivab7813@gmail.com', '2004-09-29', 20, '1', '2', 'Durai v', 'Goldsmith', 10000.00, 1, 0.00, 15000.00, '56/57, Sabapathy street Perambur Chennai-11', '56/57, Sabapathy street Perambur Chennai-11', '2507230003', '', '1', 'upload_files/candidate_tracker/41805947698_sivaresumecopypage0001.pdf', NULL, '1', '2025-07-23', 0, '77879', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-23 04:43:24', 154, '2025-07-23 12:43:25', 0, NULL, 1),
(25993, 'Monisha I', '6', '9176749520', '8122893577', 'Monisha12124@gmail.com', '2004-01-12', 21, '3', '2', 'K.iyanar', 'Car driver', 84000.00, 1, 0.00, 18000.00, 'No 3/2 rangandhapuram ayanavaram', 'No3/2 rangandhapuram ayanavaram', '2507230004', '', '1', 'upload_files/candidate_tracker/35697737935_MoniResume.pdf', NULL, '1', '2025-07-23', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-23 04:52:21', 154, '2025-07-23 04:18:22', 0, NULL, 1),
(25994, 'Jai Akash A', '6', '8148620202', '9710016442', 'Jaiakash635@gmail.com', '2005-03-06', 20, '3', '2', 'Uma Maheswari J', 'Typist', 200000.00, 1, 0.00, 18000.00, 'Thiruverkadu', 'Thiruverkadu', '2507230005', '', '1', 'upload_files/candidate_tracker/24517887086_JaiAkashResume1.pdf', NULL, '1', '2025-07-23', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate  not suitable for sales profile. distance, interested non voice,reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-07-23 05:09:12', 154, '2025-07-23 12:43:59', 0, NULL, 1),
(25995, 'Babby Yovaan raj', '6', '9500647145', '9176550464', 'babbyyovaan01@gmail.com', '2010-03-01', 15, '3', '2', 'Anbu', 'Private employee', 30000.00, 3, 0.00, 18000.00, 'Guduvanchery', 'Chennai chepauk', '2507230006', '', '1', 'upload_files/candidate_tracker/63533722708_11.pdf', NULL, '1', '2025-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our role have exp for 6 months casa grand later he is not open to sales and attended only for non voice ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-23 05:10:20', 154, '2025-07-23 05:38:43', 0, NULL, 1),
(25996, 'Dharanidharan A', '6', '7397091647', '', 'akdharaniakdharan@gmail.com', '2001-06-08', 24, '3', '2', 'Arumugam R', 'Daily wager', 14000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2507230007', '', '1', 'upload_files/candidate_tracker/87751997467_DDRESUMENonIT.pdf', NULL, '1', '2025-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he suits for non voice process only will nt sustain in sales\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-23 05:17:39', 154, '2025-07-23 05:37:43', 0, NULL, 1),
(25997, 'VIJAY kumar', '6', '7418463681', '9345625681', 'Vijaysriramulu12345@gmail.com', '2003-06-14', 22, '2', '2', 'Sriramulu. A', 'Vandalur', 15000.00, 2, 0.00, 18000.00, '2/108 Gandhi nager Bhagavatyapuram Sirugumi post', 'Vandalur', '2507230008', '1', '1', 'upload_files/candidate_tracker/43359404378_VIJAYKUMARSJ4.pdf', NULL, '1', '2025-07-23', 0, '', '3', '59', '2025-07-28', 192000.00, '', '3', '2025-08-01', '2', 'Communication Ok Can give a try and check in training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55732', '5151', '2025-07-28', 1, '2025-07-23 05:18:47', 60, '2025-07-24 05:29:30', 0, NULL, 1),
(25998, 'Mouli m', '6', '7603819066', '', 'mouli0128@gmail.com', '2005-01-28', 20, '3', '2', 'Moorthy T', 'Tailor', 18000.00, 2, 0.00, 17000.00, 'Kolathur, Chennai -110', 'Kolathur, Chennai -110', '2507230009', '', '1', 'upload_files/candidate_tracker/46132175166_DOC20250525WA0001..pdf', NULL, '1', '2025-07-23', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-23 05:20:42', 154, '2025-07-23 04:15:53', 0, NULL, 1),
(25999, 'DHANUSH s', '6', '9150913543', '9962923543', 'dhanush28032005@gmail.com', '2005-03-28', 20, '3', '2', 'Selvam k', 'Mason', 10000.00, 2, 0.00, 17000.00, 'Kolathur l,chennai', 'Kolathur chennai', '2507230010', '', '1', 'upload_files/candidate_tracker/75845172511_DHANUSHCV.pdf', NULL, '1', '2025-07-23', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-23 05:20:55', 154, '2025-07-23 04:17:26', 0, NULL, 1),
(26000, 'SABEER AHAMED', '6', '7010123884', '6382256302', 'mr.shaffier2003@gmail.com', '2003-06-05', 22, '3', '2', 'Wahith', 'Driver', 40000.00, 1, 19509.00, 23000.00, 'Panaiyur Ecr Chennai', 'Panaiyur Ecr Chennai', '2507230011', '', '2', 'upload_files/candidate_tracker/30051279075_SABEERResume1.pdf', NULL, '1', '2025-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication not clear multiple breaks in between also has exp in nonvoice and retail only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-23 05:22:34', 154, '2025-07-23 04:56:42', 0, NULL, 1),
(26001, 'Ahamed basha', '6', '6382256302', '7010123884', 'ahamedbasha191@gmail.com', '2005-07-05', 20, '3', '2', 'Mohammed Rafi', 'Driver', 40000.00, 1, 0.00, 20000.00, 'No 13 jakeer Usain 5th Street panaiyur chennai', 'No 13 jakeer Usain 5th Street panaiyur chennai', '2507230012', '', '1', 'upload_files/candidate_tracker/29234510505_AHAMEDBASHAResume2.pdf', NULL, '1', '2025-07-23', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-23 05:22:46', 154, '2025-07-23 04:14:12', 0, NULL, 1),
(26002, 'PRIYA LAKSHMI K', '6', '8754434756', '9940342619', 'priyalakshmi25k@gmail.com', '2003-03-25', 22, '3', '2', 'Karthick', 'Painter', 16000.00, 1, 17000.00, 15000.00, 'No 26 pnk garden 3rd St Mylapore Chennai 600004', 'No 6 Bharathi Nagar Avenue Mandhavelipakkam l', '2507230013', '', '2', 'upload_files/candidate_tracker/6362734532_PriyalashmiUpdateResume202506200007200000.pdf', NULL, '1', '2025-07-23', 0, '', '3', '59', '2025-07-28', 192000.00, '', '5', '1970-01-01', '2', 'Fresher for our sales 5050 sustainability doubts will check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2025-07-28', 1, '2025-07-23 05:25:32', 60, '2025-07-24 05:30:39', 0, NULL, 1),
(26003, 'Suriya Manikandan G', '5', '7401516071', '9655022370', 'suryagovind1996@gmail.com', '1996-12-02', 28, '2', '2', 'Govindhasamy', 'Cooli', 30000.00, 1, 0.00, 21000.00, 'New Washermanpet', 'New Washermanpet', '2507230014', '42', '2', 'upload_files/candidate_tracker/91468843918_SURIYAMANIKANDAN.GResume.docx', NULL, '1', '2025-07-23', 0, '', '3', '59', '2025-07-24', 260000.00, '', '3', '2025-07-24', '1', 'Communication Good seems to aggresive in speaking have exp in collections only but can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '2025-07-24', 1, '2025-07-23 05:26:35', 60, '2025-07-24 10:06:52', 0, NULL, 1),
(26004, 'Monisha', '6', '8248481217', '8754409123', 'monishalakshmi0101@gmail.com', '2005-01-01', 20, '2', '2', 'Dhana lakshmi', 'House wife', 20000.00, 1, 15000.00, 15000.00, 'No.16/25,Rajiv Gandhi Nagar Thiruvottiyur ch-19', 'No.16/25,Rajiv Gandhi Nagar Thiruvottiyur Ch-19', '2507230015', '56', '2', 'upload_files/candidate_tracker/60028301359_CV20250213214301441.pdf', NULL, '1', '2025-07-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-23 05:33:17', 154, '2025-07-23 03:27:42', 0, NULL, 1),
(26005, 'Padma Priya.R', '6', '9003437652', '', 'padmapriya0270@gmail.com', '2004-07-15', 21, '3', '2', 'Ramachandran', 'Coolie', 12000.00, 1, 14000.00, 16000.00, 'Chennai', 'Kodungaiyur, Chennai', '2507230016', '', '2', 'upload_files/candidate_tracker/1465023405_PADMAPRIYAR1.pdf', NULL, '1', '2025-07-23', 1, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-07-23 05:39:19', 154, '2025-07-23 03:52:20', 0, NULL, 1),
(26006, 'A Murali', '6', '9360254920', '8939162919', 'muralimirali350@gmail.com', '2003-12-05', 21, '3', '2', 'Arikrishnan', 'Cooli', 30000.00, 3, 18000.00, 18000.00, '2/652mogappair east chennai', '2/652mogappair east chennai', '2507230017', '', '2', 'upload_files/candidate_tracker/23839032411_murali42.pdf', NULL, '1', '2025-07-23', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much serious with the job profiles will not handle our sales roles', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-23 05:50:56', 154, '2025-07-23 03:26:16', 0, NULL, 1),
(26007, 'Anitha Ramachandran', '4', '8838086799', '', 'anitharam1308@gmail.com', '2001-08-13', 23, '2', '2', 'Ramachandran', 'Labour', 20000.00, 2, 0.00, 20000.00, 'Krishnagiri', 'Bangalore', '2507230018', '49', '1', 'upload_files/candidate_tracker/77287806255_Anitharesume2.pdf', NULL, '1', '2025-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-23 05:54:42', 1, '2025-07-23 05:59:17', 0, NULL, 1),
(26008, 'Sri Mugil T', '4', '6381966868', '', 'srimugilthiruvalluvan@gmail.com', '2001-05-13', 24, '2', '2', 'Thiruvalluvan t', 'Buisness', 20000.00, 1, 0.00, 25000.00, 'Krishnagiri', 'Bangalore', '2507230019', '49', '1', 'upload_files/candidate_tracker/19985943726_Mugilresume2.pdf', NULL, '1', '2025-07-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-23 05:56:48', 1, '2025-07-23 05:59:14', 0, NULL, 1),
(26009, 'Yamuna R', '4', '8122893577', '8122642517', 'yamuna252003@gmail.com', '2003-11-25', 21, '3', '2', 'M.Ramesh', 'Carpenter ( cooli )', 72000.00, 1, 0.00, 18000.00, 'No.113 medavakkam 2nd Street kilpauk', 'No.113 medavakkam 2nd Street kilpauk', '2507230020', '', '1', 'upload_files/candidate_tracker/75302405361_PDFMaker1753253173284.docx', NULL, '1', '2025-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Career gap Not strong to handle the pressue will not sustain', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-23 05:58:16', 154, '2025-07-23 05:44:55', 0, NULL, 1),
(26010, 'DHANALAKSHMI m', '6', '7200317482', '9543416390', 'dhanamari382@gmail.com', '2004-07-30', 20, '3', '1', 'aRUL', 'DAILY WAGES', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2507230021', '', '1', 'upload_files/candidate_tracker/9039755720_DHANALAKSHMIMResume11.docx', NULL, '1', '2025-07-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-23 05:58:50', 154, '2025-07-23 03:36:56', 0, NULL, 1),
(26011, 'Sindhuja k', '6', '8248791835', '9962496856', 'Sins0431k@gmail.com', '2003-01-10', 22, '3', '2', 'Kumaresan', 'engineering', 30000.00, 0, 0.00, 18000.00, '22/57 alagiri street,Mgr Nagar, chennai -78', '22/57 alagiri street, Mgr Nagar, chennai 78', '2507230022', '', '1', 'upload_files/candidate_tracker/50982386057_Sindujaresume.pdf', NULL, '1', '2025-07-23', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-23 05:58:55', 154, '2025-07-23 04:11:27', 0, NULL, 1),
(26012, 'Ammulu.K', '6', '9080874613', '9940413817', 'ammulukammulu1@gmail.com', '2004-05-04', 21, '3', '1', 'Vignesh.B', 'Company work', 180000.00, 0, 0.00, 15000.00, 'A.I.R Nager Lift gate chennai -57', '80/21 A.I.R Nager', '2507230023', '', '1', 'upload_files/candidate_tracker/46315774351_amuluresume1.pdf', NULL, '1', '2025-07-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-23 05:59:09', 154, '2025-07-23 03:35:52', 0, NULL, 1),
(26013, 'Kaseem fathima', '6', '9361084429', '9840577508', 'Kaseemfathimaw02@gmail.com', '2002-05-15', 23, '3', '2', 'Wahidullah', 'Driver', 30000.00, 2, 0.00, 18000.00, '4/680,82nd street muthamizh nagar kodungaiyur ch', '4/680,82nd street muthamizh nagar kodungaiyur ch', '2507230024', '', '1', 'upload_files/candidate_tracker/78448106211_kaseemfathimaw.pdf', NULL, '1', '2025-07-23', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-23 05:59:55', 154, '2025-07-23 04:13:05', 0, NULL, 1),
(26014, 'AISHWARYA  A', '6', '9445191877', '', 'aishwaryaannadurai10@gmail.com', '2001-02-22', 24, '3', '2', 'Annadurai', 'Plumbing contracter', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2507230025', '', '1', 'upload_files/candidate_tracker/5131772388_newresume.pdf', NULL, '1', '2025-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-23 06:00:46', 154, '2025-07-23 03:12:00', 0, NULL, 1),
(26015, 'Affila M H', '6', '7338761824', '', 'affilabae@gmail.com', '2003-12-24', 21, '2', '2', 'mohammed hilal', 'vehicle manager', 30000.00, 0, 0.00, 20.00, 'Chennai', 'Chennai', '2507230026', '1', '1', 'upload_files/candidate_tracker/66825040288_Document7.pdf', NULL, '1', '2025-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 she need time to decide have a plan to go with own business will not handle our sales profiles will not sustain ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-23 06:11:46', 154, '2025-07-23 05:39:29', 0, NULL, 1),
(26016, 'Ashvin Balaji', '6', '9444865932', '', 'ashvinbalaji5@gmail.com', '2001-05-14', 24, '3', '2', 'Suresh Manikandan', 'Project engineer', 50000.00, 1, 22000.00, 22000.00, 'CHENNAI', 'CHENNAI', '2507230027', '', '2', 'upload_files/candidate_tracker/5537782007_AshvinResume12.02.25.pdf', NULL, '1', '2025-07-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-23 06:23:06', 154, '2025-07-23 03:07:05', 0, NULL, 1),
(26017, 'Abinaya', '4', '9042386707', '', 'abianandan24@gmail.com', '2004-03-21', 21, '2', '2', 'Abi', 'Telecalling', 16000.00, 20, 17143.00, 20000.00, 'Chepauk', 'Chepauk', '2507230028', '1', '2', 'upload_files/candidate_tracker/96871410979_8.PDF', NULL, '1', '2025-07-23', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55824', '55560', '1970-01-01', 1, '2025-07-23 06:51:25', 154, '2025-07-23 05:42:45', 0, NULL, 1),
(26018, 'Seema V', '6', '6379677024', '9344729554', 'seemavelmurugan@gmail.com', '2004-11-21', 20, '3', '2', 'P Velmurugan', 'Driver', 20000.00, 2, 0.00, 20000.00, 'Chennai Mannady', 'Chennai Mannady', '2507230029', '', '1', 'upload_files/candidate_tracker/63246151905_SeemaResume20252.docx', NULL, '1', '2025-07-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-23 06:56:41', 154, '2025-07-23 03:28:16', 0, NULL, 1),
(26019, 'Tamil mozhi R', '6', '7845515239', '9080520306', 'tamilmozhijackey05@gmail.com', '2005-05-05', 20, '3', '2', 'Deepak A', 'Medical representative', 30000.00, 1, 0.00, 20000.00, 'Clive battery chennai', 'No 61 narasiyer street washermenpet chennai', '2507230030', '', '1', 'upload_files/candidate_tracker/83837165965_TamilMozhiResume.pdf', NULL, '1', '2025-07-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-23 06:56:53', 154, '2025-07-23 03:28:36', 0, NULL, 1),
(26020, '', '0', '7358207236', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507230031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-23 06:57:31', 0, NULL, 0, NULL, 1),
(26021, 'praveenkumar', '6', '8925315445', '8870379719', 'pazhanivelpraveenkumar@gmail.com', '2002-08-21', 22, '3', '2', 'no', 'no', 15000.00, 1, 0.00, 20000.00, 'kallakurichi', 'chennai', '2507230032', '', '1', 'upload_files/candidate_tracker/70849889401_Praveenresume.pdf', NULL, '1', '2025-07-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-23 06:57:33', 154, '2025-07-23 03:06:19', 0, NULL, 1),
(26022, 'S Manisha', '6', '8939600673', '9962884735', 'msha9722@gmail.com', '2005-07-10', 20, '3', '2', 'A Sargunam', 'Painter', 30000.00, 1, 0.00, 15000.00, 'Vadapalani', 'Vadapalani', '2507230033', '', '1', 'upload_files/candidate_tracker/2854010600_Manisharesume1.pdf', NULL, '1', '2025-07-23', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-23 07:23:01', 154, '2025-07-23 04:20:32', 0, NULL, 1),
(26023, 'Nandhini S', '6', '8056067626', '', 'nandhinipriya3020@gmail.com', '2004-09-20', 20, '3', '2', 'S.Thilagavathi', 'House keeping', 15000.00, 1, 0.00, 18000.00, 'Vadapalani', 'Chennai', '2507230034', '', '1', 'upload_files/candidate_tracker/52975117551_NANDHINISresume1.pdf', NULL, '1', '2025-07-23', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-23 07:23:14', 154, '2025-07-23 04:23:18', 0, NULL, 1),
(26024, 'Soundariya', '6', '8939365431', '9500343785', 's62006536@gmail.com', '2004-07-25', 20, '3', '2', 'Angel', 'House keeping', 13000.00, 1, 0.00, 15000.00, 'Vadapalani', 'Vadapalani', '2507230035', '', '1', 'upload_files/candidate_tracker/79821176809_soundaryaresumes.pdf', NULL, '1', '2025-07-23', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-23 07:23:15', 154, '2025-07-23 04:21:47', 0, NULL, 1),
(26025, 'Vino Eliyesar J', '6', '6379306967', '9940555231', 'Vinoeliyesar@gmail.com', '2004-07-27', 20, '3', '2', 'John edwin', 'Coolie', 96000.00, 1, 0.00, 16000.00, 'chennai', 'chennai', '2507230036', '', '1', 'upload_files/candidate_tracker/80205597577_VinoEliyesarUresume.pdf', NULL, '1', '2025-07-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-23 08:36:48', 154, '2025-07-23 04:45:06', 0, NULL, 1),
(26026, 'Pradeep Raj.M', '6', '8122312683', '9710719030', 'mpradeepraj21@gmail.com', '2005-07-12', 20, '3', '2', 'Murugan', 'Tailor', 12000.00, 1, 0.00, 16000.00, 'Tondiarpet', 'Tondiarpet', '2507230037', '', '1', 'upload_files/candidate_tracker/87457351027_PradeepRajUresume.pdf', NULL, '1', '2025-07-23', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-23 08:38:41', 154, '2025-07-23 04:19:36', 0, NULL, 1),
(26027, 'DIVAKAR', '6', '9176856551', '9382207936', 'divakar94127@gmail.com', '1994-12-07', 30, '2', '2', 'CHANDRASEKARAN', 'Retired government employee', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2507230038', '62', '1', 'upload_files/candidate_tracker/44352454230_DOC20250123WA0001..pdf', NULL, '1', '2025-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long Distance not a relevant profile for sales too will not handle our sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-23 09:16:37', 154, '2025-07-23 04:44:14', 0, NULL, 1),
(26028, 'Akash A', '6', '9361182969', '', 'ajithakash124@gmail.com', '2004-09-05', 20, '3', '2', 'Arumugam', 'Carpenter', 35000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2507230039', '', '1', 'upload_files/candidate_tracker/74178762694_Resume23072025024916PM.pdf', NULL, '1', '2025-07-23', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-23 09:51:22', 154, '2025-07-23 04:40:05', 0, NULL, 1),
(26029, 'Govarathan G', '6', '8668015605', '', 'govarthangovarthan36@gmail.com', '2004-03-16', 21, '2', '2', 'Lakshmi K', 'Tilor', 25000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2507230040', '73', '1', 'upload_files/candidate_tracker/74097092755_GOVARATHANresume1.pdf', NULL, '1', '2025-07-23', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-23 09:52:07', 154, '2026-04-29 12:18:25', 0, NULL, 1),
(26030, 'ARUN', '13', '8489395365', '', 'arunmalaravan@gmail.com', '1999-09-09', 25, '2', '2', 'Palanisamy K', 'Farmer', 10000.00, 1, 2.20, 5.00, 'Cuddalore, Panruti', 'Chennai, K.K Nagar', '2507230041', '1', '2', 'upload_files/candidate_tracker/24207101118_ARUNPFullstackdeveloper.pdf', NULL, '1', '2025-07-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-07-23 10:27:21', 1, '2025-07-28 10:06:05', 0, NULL, 1),
(26031, '', '0', '9894937311', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507230042', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-23 10:36:04', 0, NULL, 0, NULL, 1),
(26032, 'parthiban p', '6', '6383319519', '8925414701', 'pparthibanp514p@gmail.com', '2003-05-03', 22, '2', '1', 'suji', 'house wife', 30000.00, 1, 21000.00, 25000.00, 'ponneri', 'ponneri', '2507230043', '1', '2', 'upload_files/candidate_tracker/14289720860_RESUME.pdf', NULL, '1', '2025-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'too long distance from ponneri have exp but not convincing in his profile not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-23 10:40:00', 154, '2025-07-24 12:34:30', 0, NULL, 1),
(26033, 'sugi', '6', '9952950911', '9597608376', 'thanasuki73@gmail.com', '2002-09-19', 22, '2', '2', 'poongothai', 'nil', 20000.00, 2, 0.00, 20000.00, 'Tirunelveli', 'vadapalani', '2507230044', '1', '1', 'upload_files/candidate_tracker/99556603810_sugisresume202506271908120000.pdf', NULL, '1', '2025-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Exp in 3d/graphic designer today attended interview in Shree consultancy much comfort to go with that only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-23 10:42:26', 154, '2025-07-23 05:43:35', 0, NULL, 1),
(26034, '', '0', '8270957668', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507230045', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-23 11:18:42', 0, NULL, 0, NULL, 1),
(26035, 'Nithish kumar', '6', '9353506235', '', 'NITHI1054@GMAIL.COM', '2004-10-24', 20, '2', '2', 'Indumathi', 'Tailoring', 15000.00, 0, 0.00, 20000.00, 'Anjaneya Nagar, Ittmadu Main Road, Banashankari', 'Anjaneya Nagar, Ittmadu Main Road, Banashankari', '2507230046', '1', '1', 'upload_files/candidate_tracker/37278911814_DOC20250717WA0000.202507211858300000.pdf', NULL, '1', '2025-07-24', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55555', '5151', '1970-01-01', 1, '2025-07-23 01:12:14', 104, '2025-07-24 03:25:41', 0, NULL, 1),
(26036, 'kishore balajee munichamy', '4', '9360648795', '9360772946', 'kishorekb1903@gmail.com', '2003-10-19', 21, '2', '2', 'munichamy', 'business', 70000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2507230047', '1', '1', 'upload_files/candidate_tracker/15616550557_Kishoreresume2.pdf', NULL, '1', '2025-07-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-07-23 01:13:35', 1, '2025-07-23 01:16:31', 0, NULL, 1),
(26037, 'Madhan raj Sakthivel', '6', '6360399602', '', 'madhanrajmadhanraj32@gmail.com', '2003-06-07', 22, '2', '2', 'Sakthivel, Mythili', 'My father working in Amazon sales', 13000.00, 0, 0.00, 15000.00, 'Salem', 'Chennai', '2507240001', '1', '1', 'upload_files/candidate_tracker/29200298878_Madhanrajresume1.pdf', NULL, '1', '2025-08-01', 0, '', '3', '59', '2025-08-04', 192000.00, '', '3', '2025-09-29', '2', 'Communication Ok fresher job need is there 5050 on our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '2025-08-04', 1, '2025-07-24 12:59:47', 60, '2025-08-04 10:04:17', 0, NULL, 1),
(26038, 'Hari Priya S', '5', '8904556904', '', 'haripriyapriyasuresh@gmail.com', '2003-07-23', 22, '2', '2', 'Suresh', 'Bangalore Karnataka', 15000.00, 1, 20.00, 25.00, 'Banshankari', 'Banshankari', '2507240002', '49', '2', 'upload_files/candidate_tracker/11154781854_HariPriyaResume.pdf', NULL, '1', '2025-07-24', 0, '', '3', '59', '2025-07-28', 246000.00, '', '3', '2025-08-30', '2', 'Communicaiton Have exp in lead generation can give a try and check', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', 'good communication with experience and salary part need to confirm expecting 22 t0 23k', '', '', '55671', '55555', '2025-07-28', 1, '2025-07-24 04:05:46', 60, '2025-07-26 07:21:33', 0, NULL, 1),
(26039, 'Afrin R', '6', '7397545185', '9894988406', 'afrinriyas16@gmail.com', '2004-02-16', 21, '2', '2', 'Riyash', 'Helper', 10000.00, 2, 0.00, 16000.00, '1/99 h perumal Kovil Street koonimedu Villupuram', 'Ellis road triplicane', '2507240003', '1', '1', 'upload_files/candidate_tracker/38139517873_Afrin.RResumenew.pdf', NULL, '1', '2025-07-24', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not suitable for salees profile, sounds not good, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-07-24 04:56:52', 154, '2025-07-24 12:48:34', 0, NULL, 1),
(26040, 'S.Rajeswari', '4', '6385149824', '8754975698', 'rajeswaris1015@gmail.com', '2004-10-15', 20, '2', '2', 'B.sundaram', 'Coolie', 60000.00, 1, 0.00, 15.00, 'Oldwashermenpet Chennai -21', 'Oldwashermenpet Chennai -21', '2507240004', '56', '1', 'upload_files/candidate_tracker/77632771667_rajeswariresume.docx', NULL, '1', '2025-07-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-24 05:10:09', 1, '2025-07-24 05:33:05', 0, NULL, 1),
(26041, 'pradeep rajadurai w', '2', '9629016003', '', 'pradeeprajaduraiw1902@gmail.com', '2002-02-19', 23, '6', '2', 'wilson premkumar p', 'conductor', 450000.00, 2, 400000.00, 700000.00, 'thoothukudi', 'thoothukudi', '2507240005', '', '2', 'upload_files/candidate_tracker/49416964972_PradeepRajaduraiWResume.pdf', NULL, '1', '2025-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-24 05:15:04', 1, '2025-07-24 05:57:15', 0, NULL, 1),
(26042, 'godwin gnana muthu j', '13', '6369810937', '', 'godwingnanamuthu567@gmail.com', '2002-01-08', 23, '2', '2', 'p.selvakumari', 'teacher', 600000.00, 10, 0.00, 25000.00, 'chennai', 'chennai', '2507240006', '1', '1', 'upload_files/candidate_tracker/26737731862_GodwinJResume2.pdf', NULL, '1', '2025-07-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-24 05:26:23', 154, '2025-07-24 11:13:03', 0, NULL, 1),
(26043, 'Fathima Ashna M B', '11', '8754584329', '6374455120', 'fathimaashna07@gmail.com', '2002-09-07', 22, '2', '1', 'Mohamed Idris Gani', 'Software developer', 30000.00, 2, 0.00, 18000.00, 'Sevenwells, Chennai-1', 'Sevenwells, Chennai-1', '2507240007', '1', '1', 'upload_files/candidate_tracker/80429502549_DeepPurpleProfessionalCollegeStudentCVResume202507172039030000.pdf', NULL, '1', '2025-07-24', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-07-24 05:32:40', 154, '2025-07-24 03:22:01', 0, NULL, 1),
(26044, 'M S Silambarasi', '5', '9025317684', '9444100016', 'silambarasi0620@gmail.com', '1994-08-20', 30, '2', '2', 'M sivaji', 'Retired', 500000.00, 1, 25000.00, 29000.00, 'Chennai', 'Chennai', '2507240008', '1', '2', 'upload_files/candidate_tracker/70915058012_Silambu.pdf', NULL, '1', '2025-07-24', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for Rm role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55656', '55557', '1970-01-01', 1, '2025-07-24 05:37:21', 154, '2025-07-24 02:34:14', 0, NULL, 1),
(26045, 'MalavikaV', '6', '8637479136', '7092165936', 'abiv2963@gmail.com', '2004-06-23', 21, '1', '2', 'Vijayan m', 'Sanitary worker', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2507240009', '', '1', 'upload_files/candidate_tracker/90338356983_malavika3.pdf', NULL, '1', '2025-07-24', 0, '77979', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-24 05:47:43', 154, '2025-07-24 02:32:55', 0, NULL, 1),
(26046, 'Pavithra S', '6', '7200021410', '9342778120', 'Pavi21043@gmail.com', '2005-04-29', 20, '1', '2', 'Sinivasan. P', 'Coolie', 15000.00, 1, 0.00, 18000.00, 'Perambur', 'Puliyanthope', '2507240010', '', '1', 'upload_files/candidate_tracker/40297931856_ResumePavithra.pdf', NULL, '1', '2025-07-24', 0, 'C99082', '3', '59', '2025-07-28', 180000.00, '', '3', '2025-09-29', '2', 'Communication Ok have exp in part time credit card joined hospittal as front office for 2 days and left due to mother health and dress code need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2025-07-28', 1, '2025-07-24 05:57:54', 60, '2025-07-24 05:32:15', 0, NULL, 1),
(26047, 'Kavithragavan.M', '6', '9487987621', '6383149591', 'kavithm11@gmail.com', '2001-10-23', 23, '2', '2', 'Murugesan.R', 'Driver', 7000.00, 1, 0.00, 18000.00, '9/244 west street kelaiyapillaiyur tenkasi -627423', '1/1A Driver street puthupet chennai -02', '2507240011', '1', '1', 'upload_files/candidate_tracker/72087882986_Ragavaresume.pdf', NULL, '1', '2025-07-24', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-24 06:09:46', 154, '2025-07-24 02:35:50', 0, NULL, 1),
(26048, 'Mohamed jalvathi Kamal deen', '6', '9994515813', '', 'mohamedjalvathi@gmail.com', '2002-05-24', 23, '2', '2', 'Kamal deen', 'Business', 20000.00, 1, 0.00, 17000.00, 'Cumbum -Tn', 'Chennai', '2507240012', '1', '1', 'upload_files/candidate_tracker/2749194098_1000061631.pdf', NULL, '1', '2025-07-24', 0, '', '1', '156', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55732', '5151', '1970-01-01', 1, '2025-07-24 06:20:54', 154, '2025-07-24 02:40:42', 0, NULL, 1),
(26049, 'hariharan K', '6', '6369605597', '9600159842', 'hari20056369@gmail.com', '2005-02-20', 20, '2', '2', 'Kannan', 'House keeping', 20000.00, 1, 0.00, 18000.00, 'Saidapet', 'Saidapet', '2507240013', '56', '1', 'upload_files/candidate_tracker/68786355577_HARIHARANresume.docx', NULL, '1', '2025-07-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No not suitable profile will not sustain in work roles ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-24 06:27:47', 154, '2025-07-24 03:00:37', 0, NULL, 1),
(26050, 'Akash S', '6', '8056821699', '9626843942', 'akashsak08@gmail.con', '2002-01-25', 23, '2', '2', 'Selvam S', 'Driver', 45000.00, 1, 0.00, 22000.00, 'Ariyalur', 'Chennai', '2507240014', '62', '1', 'upload_files/candidate_tracker/41125406750_MYRESUME001.pdf', NULL, '1', '2025-07-24', 0, '', '1', '156', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55732', '5151', '1970-01-01', 1, '2025-07-24 06:44:47', 154, '2025-07-24 02:48:05', 0, NULL, 1),
(26051, 'Pushparaj.s', '6', '9092356159', '', 'pushparaj292005@gmail.com', '2005-04-29', 20, '2', '2', 'Selvaraj.v', 'Fruit shop', 30000.00, 0, 0.00, 18000.00, 'Pallavaram', 'Pallavaram', '2507240015', '1', '1', 'upload_files/candidate_tracker/27418483552_pushparaj.pdf', NULL, '1', '2025-07-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-24 08:12:03', 154, '2025-07-25 03:44:40', 0, NULL, 1),
(26052, 'Krishna Sharma', '11', '7619601408', '', 'ks7619shar@gmail.com', '2001-08-19', 23, '2', '2', 'Sangeeta devi', 'House wife', 35000.00, 1, 0.00, 35000.00, 'Banglore', 'Banglore', '2507240016', '49', '1', 'upload_files/candidate_tracker/10042495428_krishnasharma1.docx', NULL, '3', '2025-07-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-24 08:30:52', 1, '2025-07-24 02:16:32', 0, NULL, 1),
(26053, '', '0', '9945499384', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507240017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-24 09:14:59', 0, NULL, 0, NULL, 1),
(26054, 'ABUL HASAN A', '6', '8838481232', '', 'abulhasan4693@gmail.com', '2004-02-08', 21, '2', '2', 'Naseema begum', 'House wife', 35000.00, 1, 0.00, 30000.00, 'CHENNAI', 'CHENNAI', '2507240018', '1', '1', 'upload_files/candidate_tracker/75726151167_AbulHasan88384812321.pdf', NULL, '1', '2025-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Complete IT graduate just for exp he attended the interview location too long salary exp is also high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-24 10:10:37', 154, '2025-07-28 05:46:04', 0, NULL, 1),
(26055, 'Abdul rahman', '13', '9361148479', '', 'Abdulrahman1762003@gmail.com', '2003-06-18', 22, '2', '2', 'Mohamed ali', 'N/a', 20000.00, 0, 0.00, 15000.00, 'Karaikudi', 'Karaikudi', '2507240019', '1', '1', 'upload_files/candidate_tracker/48107700577_Abdulrahmanresume.pdf', NULL, '1', '2025-07-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-24 11:23:05', 154, '2025-07-29 01:02:10', 0, NULL, 1),
(26056, '475566522976', '4', '9984990227', '9884689211', 'sambath5881@gmail.com', '1999-05-28', 26, '2', '2', 'Sambathraj', 'Printing press', 30.00, 1, 0.00, 18.00, '182 d block village st Thiruvottiyur ch - 600019', '56/35 golden Avenue thiruvottiyur ch -600019', '2507240020', '1', '2', 'upload_files/candidate_tracker/38527747794_Pramilaresume.pdf', NULL, '1', '2025-07-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-07-24 12:14:23', 1, '2025-07-24 12:21:14', 0, NULL, 1),
(26057, 'Supriya A', '6', '9025816471', '6374351930', 'asupriya2002154@gmail.com', '2002-04-15', 23, '2', '2', 'Amudapaku sukumar (brother)', 'Senior Medical coder at VEE technologies', 3500000.00, 2, 0.00, 300000.00, 'Avadi', 'Avadi', '2507240021', '1', '1', 'upload_files/candidate_tracker/30356093907_Supriyaresumeoriginal.pdf', NULL, '1', '2025-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location Too long much open for IT profile sustainability doubts in our roles ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-24 12:17:39', 154, '2025-07-28 05:46:33', 0, NULL, 1),
(26058, 'pranav sarwin a p', '25', '9790824965', '', 'sarwinpranav@gmail.com', '2003-11-04', 21, '2', '2', 'ashokkumar s', 'icf', 800000.00, 0, 0.00, 20000.00, 'villivakkam', 'villivakkam', '2507240022', '1', '1', 'upload_files/candidate_tracker/7771888417_cvpranav.pdf', NULL, '1', '2025-07-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-07-24 12:37:25', 1, '2025-07-24 12:59:55', 0, NULL, 1),
(26059, 'Harshitha', '6', '8618427978', '', 'pharshitha2003@gmail.com', '2003-06-04', 22, '2', '2', 'Prabhakar Reddy', '10th', 20000.00, 1, 0.00, 2.40, '#29 chikkannaswami layout sai garments road', 'Banglore', '2507240023', '1', '1', 'upload_files/candidate_tracker/4404157470_harshitharesume.pdf', NULL, '1', '2025-07-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Totally Fresher good communication she is bold and traveling distance is bit for 20km confirm on that already i confirmed with her she is ok to come', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55671', '55555', '1970-01-01', 1, '2025-07-24 12:44:09', 147, '2025-07-25 06:19:20', 0, NULL, 1),
(26060, 'Naresh M', '6', '7904538733', '', 'nareshsmarty719@gmail.com', '2003-07-10', 22, '3', '2', 'Magesh', 'Telesales', 20000.00, 1, 0.00, 15000.00, 'Pondicherry', 'Kolathur', '2507250001', '', '1', 'upload_files/candidate_tracker/19624859111_Naresh.Mresume.pdf', NULL, '1', '2025-07-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-25 04:26:38', 154, '2025-07-25 12:03:35', 0, NULL, 1),
(26061, 'salmanbasha', '6', '6380570218', '7092318983', 'salmansal0211@gmail.com', '2001-11-02', 23, '3', '2', 'aheethbasha', 'telecalling', 20000.00, 2, 0.00, 15000.00, 'tindivanam', 'tambaram', '2507250002', '', '1', 'upload_files/candidate_tracker/96218696824_salman1.pdf1.pdf', NULL, '1', '2025-07-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-25 04:40:19', 154, '2025-07-25 12:18:43', 0, NULL, 1),
(26062, 'SANJAY', '6', '9884160298', '7846614769', 'sanjayselvaraj805@gmail.com', '2002-10-08', 22, '2', '2', 'Selvaraj', 'Building labour', 20000.00, 1, 16000.00, 18000.00, 'Perambur', 'Perambur', '2507250003', '1', '2', 'upload_files/candidate_tracker/47426866963_CV2025060519525848.pdf', NULL, '1', '2025-07-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-07-25 05:01:35', 154, '2025-07-25 12:19:20', 0, NULL, 1),
(26063, 'Lakshmanan M', '13', '6379099784', '', '12twins7@gmail.com', '2001-07-12', 24, '2', '2', 'manthiram p', 'shop keeper', 70000.00, 4, 315000.00, 550000.00, 'puducherry', 'chennai', '2507250004', '1', '2', 'upload_files/candidate_tracker/94280345572_Resume.pdf', NULL, '1', '2025-07-29', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-25 05:37:55', 154, '2025-07-29 02:41:35', 0, NULL, 1),
(26064, 'Alwin Arockiam A', '6', '9344279980', '6384396457', 'alwin14072001@gmail.com', '2001-07-14', 24, '2', '2', 'Antony Jesu Raja', 'Business', 20000.00, 1, 15000.00, 17000.00, '1/309 Sinthamani Nagar,Vembar-628906', 'Guindy', '2507250005', '1', '2', 'upload_files/candidate_tracker/71975609584_AlwinArockiamCV.pdf', NULL, '1', '2025-07-25', 0, '', '3', '59', '2025-07-31', 192000.00, '', '3', '2025-08-01', '2', 'Communication Ok fresher for our roles have exp not a relevant one need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55732', '5151', '2025-07-31', 1, '2025-07-25 05:52:38', 60, '2025-07-30 06:24:56', 0, NULL, 1),
(26065, 'Priyadharshini C', '6', '9150252830', '', 'tharshinip104@gmail.com', '2005-06-04', 20, '2', '2', 'M.Chellappan', 'Farmer', 6000.00, 2, 0.00, 15000.00, 'Kancheepuram', 'Maduravoyal , chennai', '2507250006', '1', '1', 'upload_files/candidate_tracker/69983166670_PRIYADARSHINI.pdf', NULL, '1', '2025-07-25', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-25 06:12:53', 154, '2025-07-25 03:23:48', 0, NULL, 1),
(26066, 'Mohamed Mubarak kani S', '6', '8428534010', '6374732236', 'mohamadmubarak1221@gmail.com', '2004-12-21', 20, '3', '2', 'Mohamed Sulaiman S', 'Fruits and vegetables saler', 15000.00, 1, 0.00, 16000.00, 'No:59 Avvai nagar bharathiyar cross street padi', 'No:59 Avvai nagar bharathiyar cross street padi', '2507250007', '', '1', 'upload_files/candidate_tracker/78420265534_Mubarakresume.pdf202505042013250000.pdf', NULL, '1', '2025-07-25', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-25 06:25:57', 154, '2025-07-25 03:31:19', 0, NULL, 1),
(26067, 'Silviya nancy', '6', '6374817578', '8072149676', 'silviyanancy2202@gmail.com', '1999-02-22', 26, '2', '1', 'Prakash', 'AC mechanic', 20000.00, 2, 20000.00, 28000.00, '42/2 B B 2nd st triplicane', '42/2 B B 2nd st triplicane', '2507250008', '61', '2', 'upload_files/candidate_tracker/20023354851_cv11753251705409.pdf', NULL, '1', '2025-07-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-25 06:33:50', 154, '2025-07-25 03:32:26', 0, NULL, 1),
(26068, 'GAYATHRI K', '6', '8754562858', '', 'Gayathri2858@gmail.com', '2004-06-12', 21, '2', '2', 'SHEN NAMMAL', 'House keeping', 80000.00, 0, 15000.00, 18000.00, 'Ambattur', 'AYAPPAKKAM', '2507250009', '1', '2', 'upload_files/candidate_tracker/35853914784_Gayathri.K.pdf', NULL, '1', '2025-07-25', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-07-25 06:35:12', 154, '2025-07-25 04:18:40', 0, NULL, 1),
(26069, 'S. Thasina mohammed saleem', '6', '9176648908', '9514704346', 'thasinathasu2609@gmail.com', '2001-12-26', 23, '2', '2', 'D. S Jonsha Freddy', 'Car Sales executive', 20000.00, 1, 28000.00, 30000.00, 'No 13/4 padavatamman street west mambalam', 'No 13/4 padavatamman street west mambalam', '2507250010', '61', '2', 'upload_files/candidate_tracker/31134621054_DocScanner15Jul2025606pm1.pdf', NULL, '1', '2025-07-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-25 06:35:30', 154, '2025-07-25 03:31:42', 0, NULL, 1),
(26070, 'Jaz sumitha', '23', '9952989618', '9840800620', 'jazsumithag@gmail.com', '2004-01-21', 21, '4', '2', 'Gopi', 'Electrician', 18000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2507250011', '', '1', 'upload_files/candidate_tracker/83977997874_JazSumitharesume.pdf', NULL, '1', '2025-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-25 06:35:41', 1, '2025-07-25 06:41:45', 0, NULL, 1),
(26071, 'Gokul Venkatesh P', '2', '9629593609', '', 'gokulvenkat678@gmail.com', '2001-05-24', 24, '2', '2', 'pandairaj r', 'business', 60000.00, 1, 412000.00, 600000.00, 'chennai', 'sivakasi', '2507250012', '1', '2', 'upload_files/candidate_tracker/71321494628_ResumeFullstackGokulVenkatesh.pdf', NULL, '1', '2025-07-29', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-25 06:37:45', 154, '2025-07-29 02:41:20', 0, NULL, 1),
(26072, 'Kaviya P', '6', '8807873046', '9150842244', 'Kaviyakavi760@gmail.com', '2004-11-01', 20, '3', '2', 'Mythili P', 'Business', 12000.00, 1, 0.00, 17000.00, 'No 43 Raja street,MTH road,Padi-600050', 'No 43 Raja street,MTH road,Padi-600050', '2507250013', '', '1', 'upload_files/candidate_tracker/58212330484_PDFGallery20250725121405.pdf', NULL, '1', '2025-07-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-25 06:41:38', 154, '2025-07-25 03:59:29', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26073, 'gowtham k', '6', '9962400079', '9092356159', 'gkumar46551@gmail.com', '2004-10-08', 20, '2', '2', 'kumar', 'driver', 25000.00, 2, 20000.00, 18000.00, 'pallavaram', 'pallavaram', '2507250014', '1', '2', 'upload_files/candidate_tracker/34082157015_gowthamk2.pdf', NULL, '1', '2025-07-25', 10, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-25 06:52:16', 154, '2025-07-25 03:43:19', 0, NULL, 1),
(26074, 'Pirasanna', '6', '9566275140', '9962400079', 'praveenprasana1238@gamil.com', '2005-04-28', 20, '2', '2', 'Kumar', 'Driver', 20000.00, 1, 0.00, 18000.00, 'Pallavaram', 'Pallavaram', '2507250015', '1', '1', 'upload_files/candidate_tracker/90021719445_mani.pdf', NULL, '1', '2025-07-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-25 06:52:35', 154, '2025-07-25 03:00:26', 0, NULL, 1),
(26075, '', '0', '9962400049', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507250016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-25 07:12:55', 0, NULL, 0, NULL, 1),
(26076, 'R.premkumar', '6', '8807530893', '9791918739', 'pp0667915@gmail.com', '2001-07-03', 24, '2', '2', 'Rajeshkanna', 'Driving', 20000.00, 2, 0.00, 14000.00, 'Cuddalore', 'Cuddalore', '2507250017', '1', '1', 'upload_files/candidate_tracker/66008645638_resume1.pdf', NULL, '1', '2025-07-25', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-07-25 07:13:07', 154, '2025-07-25 04:03:11', 0, NULL, 1),
(26077, 'mukeshkanna murugan', '2', '8220757046', '8189843804', 'mukeshkanna7508@gmail.com', '2001-04-02', 24, '5', '2', 'murugan d', 'farmer', 20000.00, 1, 400000.00, 600000.00, 'cuddalore', 'chennai', '2507250018', '', '2', 'upload_files/candidate_tracker/80012176971_MukeshMernStack.pdf', NULL, '1', '2025-07-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-25 07:26:54', 1, '2025-07-25 07:31:37', 0, NULL, 1),
(26078, 'Balaprasanna Manmathan', '13', '8667624066', '9047300880', 'balaprasannamanmathan@gmail.com', '2003-11-20', 21, '2', '2', 'manmathan k', 'carpentor', 65000.00, 1, 0.00, 10000.00, 'paramathi namakkal', 'avadi chennai', '2507250019', '1', '1', 'upload_files/candidate_tracker/90548281494_BalaprasannaFrontend.pdf', NULL, '1', '2025-07-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-25 07:38:16', 154, '2025-07-28 10:30:01', 0, NULL, 1),
(26079, 'Hemalatha S', '6', '9080998103', '9381098498', 'hemalathaofficial31@gmail.com', '2004-03-31', 21, '3', '2', 'Amutha', 'Tailor', 200000.00, 1, 15000.00, 17000.00, '24/32 kattur nalla muthu street choolai Chennai', '24/32 kattur nalla muthu street choolai Chennai', '2507250020', '', '2', 'upload_files/candidate_tracker/69569850097_HEMARESUME.pdf', NULL, '1', '2025-07-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-25 08:59:28', 154, '2025-07-25 04:03:59', 0, NULL, 1),
(26080, 'S.Rajarajan Srinivasan', '13', '9600541684', '9894753489', 'rajarajanrr9600@gmail.com', '2005-01-02', 20, '3', '2', 'Srinivasan', 'Tv mechanic', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2507250021', '', '1', 'upload_files/candidate_tracker/74331441988_rajarajanresume.pdf', NULL, '1', '2025-07-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-25 09:17:54', 154, '2025-07-25 02:55:45', 0, NULL, 1),
(26081, 'Divya.m', '6', '9043667661', '', 'divyamurugan4426@gmail.com', '2003-05-16', 22, '2', '2', 'Murugan', 'Daily worker', 30000.00, 1, 0.00, 17.00, '11th street Lakshmi Nagar moulivakkam', '11th street Lakshmi Nagar moulivakkam', '2507250022', '1', '1', 'upload_files/candidate_tracker/87818918069_DivyaMResume.docx', NULL, '3', '2025-09-19', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'canidate communication and performance is ok.but she is much more intrested in his core iT.Presure handling and sustainable is doubt ', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2025-07-25 09:29:22', 154, '2025-09-19 04:17:52', 0, NULL, 1),
(26082, 'Divyadharshini', '13', '6383876560', '', 'divyaece15201@gmail.com', '2001-02-15', 24, '3', '2', 'Govindaraj', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Trichy', 'Perungalathur', '2507250023', '', '1', 'upload_files/candidate_tracker/88342521435_DivyadharshiniResumeUpdated1.pdf', NULL, '1', '2025-07-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-25 09:42:56', 154, '2025-07-25 03:22:18', 0, NULL, 1),
(26083, 'Deepika m', '4', '6374589490', '9940442809', 'deepikadeepu09122004@gmail.com', '2004-12-09', 20, '5', '2', 'Manohar', 'Welder', 20000.00, 1, 0.00, 15000.00, 'Tiruvallur', 'Tiruvallur', '2507250024', '', '1', 'upload_files/candidate_tracker/65178412969_DOC20250530WA0013..pdf', NULL, '1', '2025-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-25 10:13:13', 1, '2025-07-25 10:16:34', 0, NULL, 1),
(26084, 'Riswana Parveen', '6', '9384112603', '9500790412', 'rrisu5121@gmail.com', '2002-09-03', 22, '2', '2', 'Barkathunisha - Mother', 'Labour', 10000.00, 0, 0.00, 18000.00, 'Gingee', 'Gingee', '2507250025', '1', '1', 'upload_files/candidate_tracker/782853245_RiswanaResume.pdf', NULL, '1', '2025-08-08', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-07-25 10:17:11', 154, '2025-08-08 04:38:25', 0, NULL, 1),
(26085, 'Harshath R', '6', '9363392902', '', 'harshathrf11@gmail.com', '2002-11-25', 22, '2', '2', 'Ramju', 'Cable', 50000.00, 1, 14000.00, 20000.00, '208/A/4, Snowdon Road, Ooty. 643001.', '208/A/4, Snowdon Road, Ooty. 643001', '2507250026', '1', '2', 'upload_files/candidate_tracker/5447523251_Resume.pdf', NULL, '1', '2025-07-26', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-25 12:20:13', 154, '2025-07-26 12:45:32', 0, NULL, 1),
(26086, '', '0', '6379381863', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507250027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-25 01:18:33', 0, NULL, 0, NULL, 1),
(26087, '', '0', '9941394390', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507250028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-25 02:30:47', 0, NULL, 0, NULL, 1),
(26088, 'Madhanraj', '6', '8870300808', '', 'madhanrajdofficial@gmail.com', '2000-08-30', 24, '2', '2', 'Indhumathi', 'Housewife', 30000.00, 1, 0.00, 20000.00, 'Ranipet', 'Ranipet', '2507250029', '1', '1', 'upload_files/candidate_tracker/35949516386_MadhansCV2.pdf', NULL, '1', '2025-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Currently pursuuing also having a career gap not much suitable for our sales roles will not sustain ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-25 04:16:35', 154, '2025-07-28 05:44:03', 0, NULL, 1),
(26089, '358940266781', '6', '7424985051', '7619213424', 'anjanas030194@gmail.com', '1994-01-22', 31, '2', '2', 'Narayan Sharma', 'Pandit', 2.40, 3, 23000.00, 30000.00, 'Rajasthan', 'Bangalore', '2507250030', '49', '2', 'upload_files/candidate_tracker/58018536478_ACVResume.pdf', NULL, '1', '2025-08-07', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-07-25 06:48:43', 154, '2025-08-08 04:29:31', 0, NULL, 1),
(26090, 'N Suhashini', '6', '7358351327', '', 'suhashinisuhashini456@gmail.com', '2004-08-03', 20, '2', '2', 'Bommiyammal.N', 'House keeping', 14000.00, 4, 0.00, 15000.00, '33/25 Thoraipakkam kannagi nagar', '32/25 Thoraipakkam kannagi nagar', '2507260001', '62', '1', 'upload_files/candidate_tracker/10888474878_SUHASHINI.docx', NULL, '1', '2025-07-26', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-26 05:56:37', 154, '2025-07-26 12:49:16', 0, NULL, 1),
(26091, 'Keerthika R', '6', '8056050524', '7397405131', 'keertisan2005@gmail.com', '2005-02-18', 20, '2', '2', 'Raja K', 'Plumber', 8000.00, 1, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2507260002', '62', '1', 'upload_files/candidate_tracker/4704119491_keerthika.R.pdf', NULL, '1', '2025-07-26', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-26 05:57:18', 154, '2025-07-26 12:48:37', 0, NULL, 1),
(26092, 'Deepika.k', '6', '8438180557', '9003152100', 'd24461208@gmail.com', '2003-03-04', 22, '2', '2', 'Kumaran.P', 'Security', 8000.00, 1, 0.00, 15000.00, 'Mylapore', 'Mylapore', '2507260003', '62', '1', 'upload_files/candidate_tracker/42323428447_DEEPIKAk8.pdf', NULL, '1', '2025-07-26', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-26 05:59:08', 154, '2025-07-26 12:47:57', 0, NULL, 1),
(26093, 'S.jayashree', '6', '8925846610', '', 'devishrishri308@gmail.com', '2003-11-28', 21, '2', '2', 'Somasundram.E', 'Textile work', 10000.00, 4, 0.00, 18000.00, '38/27 ezhil nagar okkigam thourai Pakkam chennai', '38/27 ezhil nagar okkigam thourai Pakkam Chennai', '2507260004', '62', '1', 'upload_files/candidate_tracker/89780034205_jayashree.doc', NULL, '1', '2025-07-26', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-26 05:59:20', 154, '2025-07-26 12:46:38', 0, NULL, 1),
(26094, '', '0', '9944221838', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507260005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-26 12:46:36', 0, NULL, 0, NULL, 1),
(26095, 'Sanjana', '6', '8148223055', '9865987655', 'Sanjukathiresan9@gmail.com', '2001-06-24', 24, '2', '2', 'Kathiresan', 'Fisher man', 20000.00, 2, 0.00, 13000.00, 'Cuddalore', 'Thiruvanmiyur', '2507260006', '1', '1', 'upload_files/candidate_tracker/59691576087_Untitleddesign.pdf', NULL, '1', '2025-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have exp as purchase executive also looking for same domain for time being she s looking for this also she has some health issues long run doubts in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-26 12:51:07', 154, '2025-07-28 05:47:16', 0, NULL, 1),
(26096, '', '0', '9150912011', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507260007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-26 12:57:54', 0, NULL, 0, NULL, 1),
(26097, 'mukeshkumar', '6', '7845183900', '', 'samdo4519@gmail.com', '2004-04-19', 21, '2', '2', 'muniraj', 'painter', 10000.00, 1, 0.00, 15000.00, 'thousand lights', 'thousand lights', '2507260008', '1', '1', 'upload_files/candidate_tracker/86944079953_MUKESHKUMARRESUME.docx', NULL, '1', '2025-07-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-07-26 02:08:42', 154, '2025-07-28 05:49:53', 0, NULL, 1),
(26098, 'K DARMA VEERA', '4', '8681097176', '', 'dveera911@gmail.com', '2005-05-14', 20, '2', '2', 'TAMIL SELVI', 'house keeping', 100000.00, 1, 0.00, 15000.00, 'Perumbakkam', 'Shenoy Nagar', '2507260009', '1', '1', 'upload_files/candidate_tracker/18192459530_Screenshot202507281138021999c04817c0de5652397fc8b56c3b3817compressed.pdf', NULL, '1', '2025-07-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-07-26 02:32:12', 154, '2025-07-28 05:49:40', 0, NULL, 1),
(26099, 'Yogesh A', '6', '8072887632', '9994516356', 'yogesh1726a@gmail.com', '2002-08-17', 22, '2', '2', 'Arumugam', 'Daily wager', 1.20, 0, 0.00, 20000.00, 'Ranipet', 'Ranipet', '2507270001', '1', '1', 'upload_files/candidate_tracker/34007171771_yogeshresume.pdf202507280855300000.pdf', NULL, '1', '2025-07-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok , communication good, confirm the joining date and salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-07-27 11:31:14', 154, '2025-07-28 03:01:19', 0, NULL, 1),
(26100, 'Rahil', '4', '7349095438', '8147458717', 'rahilb.albz.123@gmail.com', '2000-04-20', 25, '2', '2', 'Basha. B', 'Self buisness', 25000.00, 4, 0.00, 25000.00, 'Sullia', 'Bangalore', '2507280001', '1', '2', 'upload_files/candidate_tracker/41406392989_734909543811.pdf', NULL, '1', '2025-07-31', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-07-28 01:50:56', 1, '2025-07-28 01:56:06', 0, NULL, 1),
(26101, 'Bhoomika.P', '6', '8105836913', '9380186054', 'BHOOMIKAPRAHALAD2007@GMAIL.COM', '2003-11-07', 21, '2', '2', 'S Prahalada', 'Store Incharge manager', 48000.00, 0, 23000.00, 25000.00, 'Bank colony', 'Bank colony', '2507280002', '49', '2', 'upload_files/candidate_tracker/53574345063_BhoomikaPrahaladresume.pdf', NULL, '1', '2025-07-28', 0, '', '3', '59', '2025-08-11', 246000.00, '', '3', '2025-08-20', '2', 'Communication Ok Have exp in backend process can give a try for our sales process and check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '2025-08-11', 1, '2025-07-28 05:04:03', 60, '2025-08-11 10:07:25', 0, NULL, 1),
(26102, 'Mohammed shadmaan', '6', '7418383608', '8122365171', 'mohamedshadmaan135791@gmail.com', '2003-01-21', 22, '1', '2', 'Shamoon basha', 'Tanning industry', 20000.00, 0, 15000.00, 18000.00, 'Pallavaram', 'Pallavaram', '2507280003', '', '2', 'upload_files/candidate_tracker/81531610196_MohammedShadmaanStyledResume.pdf', NULL, '1', '2025-07-28', 0, 'C99106', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-07-28 05:11:39', 154, '2025-07-28 12:37:17', 0, NULL, 1),
(26103, 'Muthu Kumar', '6', '8610735990', '6380445905', 'muthukumat436@gmail.com', '1999-01-16', 26, '2', '2', 'Murugan', 'Police', 60000.00, 1, 17000.00, 18000.00, 'Ambattur', 'Ambattur', '2507280004', '1', '2', 'upload_files/candidate_tracker/52343548736_0Muthu991pdf1.docx', NULL, '1', '2025-07-28', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is unfit for sales, communication not good, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-07-28 05:19:13', 154, '2025-07-28 12:09:39', 0, NULL, 1),
(26104, 'J. Kumutha', '6', '6379391965', '9600804963', 'kumutha2832003@gmail.com', '2003-03-28', 22, '1', '2', 'C.jayachandran', 'Coil', 8500.00, 0, 0.00, 18000.00, 'Aruppukottai', 'Aruppukottai', '2507280005', '', '1', 'upload_files/candidate_tracker/40922730041_newkumutharesume.docx', NULL, '1', '2025-07-28', 0, 'Jeysuriya', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-07-28 05:31:01', 154, '2025-07-28 12:38:52', 0, NULL, 1),
(26105, 'Rajashree v', '6', '9677103785', '9940136296', 'Vrajashree11@gmail.com', '2003-06-10', 22, '2', '2', 'N.e velu', 'Shop', 10000.00, 1, 0.00, 16000.00, 'Ambattur', 'Ambattur', '2507280006', '1', '1', 'upload_files/candidate_tracker/62664633048_Rajashree.vfreshers.pdf', NULL, '1', '2025-07-28', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55864', '5151', '1970-01-01', 1, '2025-07-28 05:49:14', 154, '2025-07-28 03:25:14', 0, NULL, 1),
(26106, '', '0', '9953067113', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507280007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-28 06:05:36', 0, NULL, 0, NULL, 1),
(26107, 'Shalini.k', '6', '9952067113', '9600110914', 'shalukms7@gmail.com', '2004-09-29', 20, '2', '2', 'Krishna Kumar.s', 'Driver', 150000.00, 1, 0.00, 300000.00, 'Thiruvottriyur', 'Thiruvottriyur', '2507280008', '1', '1', 'upload_files/candidate_tracker/16325851580_Resume.pdf', NULL, '1', '2025-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Targets will not handle our sales pressure not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-28 06:12:45', 154, '2025-07-28 05:44:31', 0, NULL, 1),
(26108, 'Ranjith kumar N', '6', '9884346501', '7448680224', 'ranjithk3155@gmail.com', '2002-12-31', 22, '2', '2', 'D.Natarajan', 'Apso airport', 20000.00, 0, 0.00, 20000.00, 'Patel st Razak garden arumbakkam', 'Patel st Razak garden arumbakkam', '2507280009', '1', '1', 'upload_files/candidate_tracker/18433117001_RANJITHKUMARfresher.pdf', NULL, '1', '2025-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No convincing not much shown interest on job attended around 15 interviews IT without knowing the skills required just for sake and family push he is looking for job will not handle our sales pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-28 06:16:12', 154, '2025-07-28 05:43:32', 0, NULL, 1),
(26109, 'sivaraman', '6', '6369869780', '7806825204', 'sivacruze20@gmail.com', '2002-11-16', 0, '2', '2', 'balakrishnan', 'Carpenter', 50000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2507280010', '1', '2', 'upload_files/candidate_tracker/75515715028_Sivaresume16.pdf', NULL, '1', '2025-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Complete UI UX profile have exp n collection only sustainability doubts in sales profile pressure handling too doubts not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-28 07:27:06', 154, '2025-07-28 05:45:34', 0, NULL, 1),
(26110, 'Lavanya m', '6', '7200792468', '9344409292', 'lavanyamohan2420@gmail.com', '2002-09-24', 22, '2', '2', 'L.Mohan', 'Auto driver', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2507280011', '1', '1', 'upload_files/candidate_tracker/25821997020_Resume.pdf', NULL, '1', '2025-07-28', 0, '', '3', '59', '2025-08-04', 180000.00, '', '3', '2025-08-09', '2', 'Fresher communication ok tried for teaching and now not comfort to continue with that let us try and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '2025-08-04', 1, '2025-07-28 07:27:57', 60, '2025-08-03 03:42:30', 0, NULL, 1),
(26111, 'Lavanya', '4', '8220530122', '', 'lavanyasuriya1423@gmail.com', '2000-11-14', 24, '2', '1', 'Vasugi', 'Work', 15000.00, 1, 0.00, 13000.00, '482Arasamara santhuKodimarathu moolai Thanjavur', '482Arasamara santhu kodimarathu moolai Thanjavur', '2507280012', '1', '1', 'upload_files/candidate_tracker/5413071743_Resume.pdf', NULL, '2', '2025-07-28', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-07-28 08:50:06', 154, '2025-07-28 02:38:49', 0, NULL, 1),
(26112, 'Ramanathan M', '6', '6381164892', '', 'rambm281202@gmail.com', '2002-12-28', 22, '2', '2', 'Muralidaran', 'Weaver', 8000.00, 2, 0.00, 18000.00, 'Paramakudi, Ramanathapuram', 'Mudichur, Chennai', '2507280013', '1', '1', 'upload_files/candidate_tracker/6125902264_RamResume21.pdf', NULL, '1', '2025-07-29', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-28 09:31:58', 154, '2025-07-29 12:50:42', 0, NULL, 1),
(26113, '', '0', '7094584892', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507280014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-28 09:42:10', 0, NULL, 0, NULL, 1),
(26114, 'Dilli Ganesh', '6', '7094584892', '', 'ganesh.praba2409@gmail.com', '2000-09-24', 24, '1', '2', 's u prabakar', 'Government employee', 60000.00, 1, 22000.00, 24000.00, 'chennai', 'chennai', '2507280015', '', '2', 'upload_files/candidate_tracker/63026141469_updatedResumeDILLIGANESH.pdf', NULL, '1', '2025-07-28', 0, '77852', '3', '59', '2025-07-31', 228000.00, '', '1', '1970-01-01', '1', 'have exp in calling but no sustainability and have career gap too can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55645', '5151', '2025-07-31', 154, '2025-07-28 03:39:19', 60, '2025-07-30 07:23:08', 0, NULL, 1),
(26115, 'Godwin C', '13', '8015186879', '8072786879', 'cgodwinsam@gmail.com', '2004-03-29', 21, '6', '2', 'C Daisy Sangeetha priya', 'Faculty', 15000.00, 0, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2507280016', '', '1', 'upload_files/candidate_tracker/58296326305_GodwinRes.pdf', NULL, '1', '2025-07-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-28 11:07:22', 1, '2025-07-28 11:16:28', 0, NULL, 1),
(26116, '', '0', '7338745684', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507280017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-28 11:08:49', 0, NULL, 0, NULL, 1),
(26117, 'Tharanidharan R', '6', '7448930213', '7448930212', 'tharanidharan219@gmail.com', '2004-12-09', 20, '2', '2', 'Sivagami R', 'Business', 150000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2507280018', '1', '1', 'upload_files/candidate_tracker/30727918622_downloadresume4.pdf', NULL, '1', '2025-07-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok Fresher for roles but open for other roles too  sustainability doubts in this profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-28 11:52:39', 154, '2025-07-31 11:53:56', 0, NULL, 1),
(26118, 'Anchami varadhi Sreelekha', '6', '7993713428', '8106247456', 'varadhisweety1@gmail.com', '2010-07-28', 0, '2', '2', 'Nagaraju', 'Customer support executive', 20.00, 2, 20.00, 25.00, 'Guntakal', 'Marathalli', '2507280019', '49', '2', 'upload_files/candidate_tracker/41990845821_MyProfile.pdf', NULL, '1', '2025-07-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is having good experience  and communication  skills knowing languages Telugu  and English  only she is ok', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-07-28 11:57:22', 154, '2025-07-29 03:18:15', 0, NULL, 1),
(26119, 'KANNIYAPPAN E', '6', '7603813217', '', 'kanniyappane519@gmail.co', '2005-06-20', 20, '2', '2', 'Elumalai', 'Former', 6000.00, 1, 0.00, 18000.00, 'Tiruvannamalai', 'Porur', '2507280020', '1', '1', 'upload_files/candidate_tracker/66761428269_KANNIYAPPANRESUMECopy.doc', NULL, '3', '2025-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not much communicative for sales need to open up a lot also he need to explore the opportunities will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-28 01:04:05', 154, '2025-07-29 12:39:15', 0, NULL, 1),
(26120, 'Priyadharshini Selvan', '4', '8056420155', '', 'dharshinikayal3114@gmail.com', '2004-04-14', 21, '3', '2', 'Podhammal', 'Daily wage Work', 60000.00, 1, 0.00, 1.90, '2/224 ammasipalayam kokkarayanpettai namakkal', '2/9 start street shanthi Nagar Ramapuram', '2507280021', '', '1', 'upload_files/candidate_tracker/40526662915_priyadharshiniselvanresume...pdf', NULL, '1', '2025-07-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-28 01:18:11', 1, '2025-07-28 01:23:10', 0, NULL, 1),
(26121, 'Dhanush M', '6', '9095799421', '8526908805', 'dhanush95421@gmail.com', '2004-05-09', 21, '2', '2', 'Mohan M', 'Daily wages', 10000.00, 1, 0.00, 200000.00, 'Rasipuram, Namakkal (District), Tamilnadu', 'Rasipuram', '2507280022', '1', '1', 'upload_files/candidate_tracker/26056251796_CV2025072221320893.pdf', NULL, '1', '2025-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not much communicative for sales need to open up a lot  will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-28 01:22:15', 154, '2025-07-29 11:35:59', 0, NULL, 1),
(26122, 'SOUNDAR RAJAN B', '13', '8248993863', '9751734198', 'srsoundar9090@gmail.com', '2003-08-19', 21, '2', '2', 'USHA B', 'Tailor', 6000.00, 1, 0.00, 400000.00, 'Tirupathur', 'Chennai', '2507280023', '1', '1', 'upload_files/candidate_tracker/72224346685_SOUNDARRESUME25.pdf', NULL, '1', '2025-08-06', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-28 02:09:24', 154, '2025-08-06 10:53:47', 0, NULL, 1),
(26123, 'Rukesh', '6', '9345678391', '', 'viratrukesh2004@gmail.com', '2004-11-22', 20, '2', '2', 'Muniyappan A', 'Kooli', 6000.00, 2, 0.00, 20000.00, 'Thiruvannamali', 'Thiruvannamali', '2507290001', '1', '1', 'upload_files/candidate_tracker/84834098399_RukeshMResume1.pdf', NULL, '1', '2025-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not much communicative for sales need to open up a lot also he need to explore the opportunities will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-29 01:50:50', 154, '2025-07-29 12:38:40', 0, NULL, 1),
(26124, 'b.g.mohana priya', '6', '9345726155', '', 'mohanapriya.bg20@gmail.com', '1999-06-20', 26, '2', '2', 'Bhanu murthy , geetha lakshmi', 'Pvt limited company', 20000.00, 0, 12000.00, 15000.00, 'Chennai', 'Chennai', '2507290002', '1', '2', 'upload_files/candidate_tracker/58128160648_Resumeofmohananapriya1.pdf', NULL, '1', '2025-07-30', 5, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Multiple job swtich nort sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-07-29 05:49:53', 154, '2025-07-30 02:34:04', 0, NULL, 1),
(26125, 'Girivasan K', '13', '9025449325', '', 'girivasankumaravel11@gmail.com', '2004-07-11', 21, '2', '2', 'Kumaravel', 'Farmer', 25000.00, 2, 0.00, 1.50, 'Salem', 'Salem', '2507290003', '1', '1', 'upload_files/candidate_tracker/51343545678_GIRIVASANKFD.pdf', NULL, '1', '2025-07-29', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-29 05:59:41', 154, '2025-07-29 11:50:48', 0, NULL, 1),
(26126, 'S Kanniyappan', '6', '9003132725', '7550245389', 'kanniyappankannish@gmail.com', '1991-06-15', 34, '1', '1', 'Deepa', 'House wife', 25000.00, 2, 430000.00, 600000.00, 'Tiruvannamalai', 'T nagar', '2507290004', '', '2', 'upload_files/candidate_tracker/73450713452_KannishResume1.pdf', NULL, '1', '2025-07-29', 15, '77870', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Aged 32 complete exp in operation current CTC 4.2 LPA open for ops only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-29 06:04:14', 154, '2025-07-29 11:59:40', 0, NULL, 1),
(26127, 'Anusri', '6', '8680916189', '', 'anusriesh@gmail.com', '2004-06-15', 21, '2', '2', 'Dhanasekaran', 'Fisherman', 10000.00, 1, 0.00, 15000.00, 'E Block no 23 Nochinagar Mylapore Chennai 04', 'Mylapore', '2507290005', '1', '1', 'upload_files/candidate_tracker/26222851625_anusri.anu.pdf', NULL, '1', '2025-07-30', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'CA130', '5151', '1970-01-01', 1, '2025-07-29 06:26:19', 154, '2025-07-30 02:34:42', 0, NULL, 1),
(26128, 'mohanavelu k', '2', '8678997734', '9884305234', 'ksmohanavelu08@gmail.com', '2001-12-08', 23, '2', '2', 'kathirvel', 'bussiness', 25000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2507290006', '1', '1', 'upload_files/candidate_tracker/69939585241_MOHANAVELUKSResumeupdated.pdf', NULL, '1', '2026-02-20', 0, '', '3', '59', '2026-03-16', 144000.00, '', '4', '2026-03-21', '2', 'IT Profile Terms and conditions accepted React Profile for Monesh Apti/Progr/System/ cleared', '2', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '55566', '55566', '2026-03-16', 1, '2025-07-29 06:43:00', 60, '2026-03-16 11:40:05', 0, NULL, 1),
(26129, 'LOKESHWARI R', '6', '8525048098', '', 'lokeylokeshwari709@gmail.com', '2000-05-04', 25, '2', '2', 'ramesh', 'shopkeeper', 17.00, 1, 20.00, 25.00, 'bommanahalli', 'bommanahalli', '2507290007', '49', '2', 'upload_files/candidate_tracker/59279872913_Lokeshwariresume.pdf', NULL, '1', '2025-07-28', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication looking for time been looking for better opportunity', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-07-29 06:45:08', 154, '2025-07-29 03:25:42', 0, NULL, 1),
(26130, '', '0', '8489701157', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507290008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-29 06:48:04', 0, NULL, 0, NULL, 1),
(26131, '', '0', '7760044797', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507290009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-29 07:06:12', 0, NULL, 0, NULL, 1),
(26132, 'Mohamed rasik', '6', '9345789943', '9787292399', 'mohamadrasik2000@gmail.com', '2004-12-20', 20, '2', '2', 'Rawthar kani', 'Tea shop', 100000.00, 3, 0.00, 15000.00, 'Chrompet', 'Chrompet', '2507290010', '1', '1', 'upload_files/candidate_tracker/42831388071_downloadresume8.pdf', NULL, '1', '2025-07-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-07-29 09:19:06', 154, '2025-07-29 04:49:39', 0, NULL, 1),
(26133, 'sahana', '4', '8965349054', '', 'sahana78@gmail.com', '2000-10-29', 24, '2', '2', 'ram', 'shopkepper', 18.00, 1, 0.00, 20.00, 'bangalore', 'btm', '2507290011', '49', '1', 'upload_files/candidate_tracker/59515813427_Sahananewcv.pdf', NULL, '1', '2025-07-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-29 09:55:12', 1, '2025-07-29 09:57:41', 0, NULL, 1),
(26134, 'aman', '4', '9064268905', '', 'amankumar09@gmail.com', '2003-10-29', 21, '2', '2', 'subramany', 'shop', 20.00, 0, 0.00, 20.00, 'bangalore', 'bommanahalli', '2507290012', '49', '1', 'upload_files/candidate_tracker/42766879522_AmanResume1212242.pdf', NULL, '1', '2025-07-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-29 09:58:32', 1, '2025-07-29 10:00:05', 0, NULL, 1),
(26135, 'Chris Jones yesunesan', '5', '7200677899', '', 'cj549816@gmail.com', '2004-06-02', 21, '6', '2', 'Yesunesan A', 'Technitian', 15000.00, 0, 28000.00, 38000.00, 'Chennai', 'Adyar', '2507290013', '', '2', 'upload_files/candidate_tracker/76837100601_ChrisJonesResum.pdf', NULL, '1', '2025-07-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-29 10:43:45', 1, '2025-07-29 10:47:11', 0, NULL, 1),
(26136, 'Nithiya. M', '6', '9962245839', '9940224583', 'jashunithiya@gmail.com', '2004-07-27', 21, '2', '2', 'Mohan. M', 'Car driver', 20000.00, 2, 0.00, 17000.00, 'No, 10 gurusamy nagar 4st pulianthope chennai- 12', 'Pulianthope -ch12', '2507290014', '1', '1', 'upload_files/candidate_tracker/6914439292_NITHYAREUME.pdf', NULL, '1', '2025-07-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, communication average. provide the fresher salary, kindly confirm the joining date.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55732', '5151', '1970-01-01', 1, '2025-07-29 01:15:25', 154, '2025-07-30 02:38:23', 0, NULL, 1),
(26137, '', '0', '9940630482', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507290015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-29 01:58:27', 0, NULL, 0, NULL, 1),
(26138, 'Santhosh Kumar', '6', '7904344965', '8610843418', 'santhoshsandy7409565@gmail.com', '2003-09-19', 21, '2', '2', 'Ajith', 'Farmer', 60000.00, 2, 0.00, 20000.00, '3/20, M.patti, parur(post), mangalampet Cuddalore', 'Ramapuram, chennai', '2507290016', '1', '1', 'upload_files/candidate_tracker/24313285616_downloadresume.pdf', NULL, '3', '2025-07-30', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-07-29 02:45:38', 154, '2025-07-30 02:35:15', 0, NULL, 1),
(26139, 'Jayanthi S', '6', '9094338504', '', 'Jayanthi1822@gmail.com', '2004-11-18', 20, '2', '2', 'Santhana Mariappan', 'Auto driver', 18000.00, 1, 0.00, 17000.00, '151/124, Bricklin Road, Otteri, Chennai-600012', 'Otteri', '2507290017', '1', '1', 'upload_files/candidate_tracker/98509533069_Jayanthi.SResume.pdf', NULL, '1', '2025-07-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fersher not much comfort to target also much comfort to work in non voice process ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-29 05:18:06', 154, '2025-07-30 12:27:34', 0, NULL, 1),
(26140, 'Vignesh.s', '4', '9787053267', '9843228702', 'vignesh9787053267@gmail.com', '2000-10-13', 24, '2', '2', 'Sankar.M', 'Driver', 18000.00, 1, 0.00, 18000.00, '48/407 Abdul Wahab nagar 2nd st Reddipalayam road', '48/407 Abdul Wahab nagar 2nd st Reddipalayam road', '2507300001', '1', '1', 'upload_files/candidate_tracker/57605928073_1000181769.pdf', NULL, '1', '2025-07-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-07-30 04:24:16', 154, '2025-07-30 10:02:38', 0, NULL, 1),
(26141, 'Aneesa Tabassum S', '6', '8072698429', '9363008283', 'aneesatabassums@gmail.com', '2004-12-28', 20, '2', '2', 'Sanaullah', 'Labour', 120000.00, 1, 0.00, 15000.00, 'No:24/19, old Washermenpet,chennai - 21.', 'No: 24/19, Old Washermenpet, Chennai - 21', '2507300002', '1', '1', 'upload_files/candidate_tracker/23556672172_ANEESATABASSUMSResume1.pdf', NULL, '1', '2025-07-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher have a plan to go with CA and also not much communicative to handle our work roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-30 04:56:45', 154, '2025-07-30 11:28:59', 0, NULL, 1),
(26142, 'Arjun Ashokan', '6', '8939752605', '8939076425', 'crarjun491@gmail.com', '2004-07-02', 21, '3', '2', 'Ashokan A', 'Cooli', 40000.00, 2, 0.00, 18000.00, 'Dr Radhakrishnan street Manali Chennai 68', 'Dr Radhakrishnan street Manali Chennai 68', '2507300003', '', '1', 'upload_files/candidate_tracker/1221648388_arjuna1.pdf.pdf', NULL, '1', '2025-07-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Much open to work in non voice process only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-30 05:02:02', 154, '2025-07-30 11:36:38', 0, NULL, 1),
(26143, 'Mohanapriya A', '6', '9080700588', '6374759912', 'mohanapriyamohanapriya54@gmail.com', '2002-10-04', 22, '2', '2', 'K arumugam', 'Bank corier manager', 300000.00, 1, 0.00, 2.00, 'Chennai', 'Vadapalani', '2507300004', '1', '1', 'upload_files/candidate_tracker/97915493019_downloadresume.pdf', NULL, '1', '2025-07-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long back we have selected and give her joining earlier she appeared again tody not clear with the ideas to get into particular profiles if we give a chance again will have the sustainability issues\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-07-30 05:09:24', 154, '2025-07-30 12:05:03', 0, NULL, 1),
(26144, 'Brindha S', '6', '9894405537', '9789955144', 'dhanabrin@gmail.com', '2000-11-28', 24, '2', '1', 'Durai raj', 'Vs trans logistics', 25000.00, 1, 0.00, 15000.00, 'Kodungayur', 'Kodungayur', '2507300005', '62', '1', 'upload_files/candidate_tracker/3304697263_BRINDHARESUME2.docx', NULL, '1', '2025-07-30', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-07-30 06:18:58', 154, '2025-07-30 12:47:55', 0, NULL, 1),
(26145, 'kalavathi', '13', '9047587364', '', 'mkalavathibsc@gmail.com', '1999-09-06', 25, '6', '2', 'moorthi p', 'searching for job', 15000.00, 2, 0.00, 20000.00, 'velachery chennai', 'chennai', '2507300006', '', '1', 'upload_files/candidate_tracker/30203051363_CV.pdf', NULL, '1', '2025-07-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-30 07:54:32', 1, '2025-07-30 08:31:08', 0, NULL, 1),
(26146, 'Mercy jeba', '6', '8668035447', '6374338373', 'mercyjeba7@gmail.com', '2004-10-16', 20, '2', '2', 'Anthony raj', 'Daily wages', 120000.00, 2, 0.00, 18000.00, 'Rangoon street thousand lights chennai-600006', 'R. O. B street royapettah chennai', '2507300007', '1', '1', 'upload_files/candidate_tracker/89906471518_mercyresume.pdf', NULL, '1', '2025-07-31', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-07-30 09:39:09', 154, '2025-07-31 02:50:39', 0, NULL, 1),
(26147, 'Akshaya G', '4', '7904255902', '8056050894', 'akshayasubbarao58@gmail.com', '2004-10-23', 20, '6', '2', 'Jayalakshmi.G', 'Worker at Hospital', 200000.00, 1, 0.00, 18000.00, 'Thousand lights Chennai', 'Thousand lights Chennai', '2507300008', '', '1', 'upload_files/candidate_tracker/86979227442_Akshaya.pdf', NULL, '1', '2025-07-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-30 10:20:21', 1, '2025-07-30 10:28:39', 0, NULL, 1),
(26148, 'Kavin N', '13', '6383719994', '8883111103', 'itsmengk2001@gmail.com', '2001-08-31', 23, '2', '2', 'Gandhimathi N', 'home maid', 20000.00, 1, 0.00, 200000.00, 'Erode', 'Erode', '2507300009', '1', '1', 'upload_files/candidate_tracker/48696146773_Resumeofngk.pdf', NULL, '1', '2025-08-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-30 10:41:59', 154, '2025-08-04 11:21:09', 0, NULL, 1),
(26149, '', '0', '9345095031', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507300010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-30 11:32:44', 0, NULL, 0, NULL, 1),
(26150, 'tamizharasan', '2', '7904237706', '', 'tamizharasan2000k@gmail.com', '2000-05-28', 25, '3', '2', 'kumar', 'daily worker', 30000.00, 2, 220000.00, 500000.00, 'tiruvannamalai', 'tiruvannamalai', '2507300011', '', '2', 'upload_files/candidate_tracker/81455004910_TAMIZHARASANK.docx', NULL, '1', '2025-08-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-30 12:42:17', 1, '2025-07-30 03:51:01', 0, NULL, 1),
(26151, 'Celeen mary.s', '6', '8925395079', '7395903070', 'Celineavi09@gmail.com', '2006-04-09', 19, '2', '2', 'Felsiya.S ,sebestian', 'Telle caller and real estate, driver', 4.00, 1, 0.00, 15.00, 'No 710, 14th street sastri nagar,ch600039', 'Mkb nagar , near p5 police..TNHP apartment', '2507300012', '1', '1', 'upload_files/candidate_tracker/65229057094_Workexper202507291339510000.pdf', NULL, '1', '2025-08-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-07-30 01:31:45', 154, '2025-08-02 04:09:05', 0, NULL, 1),
(26152, 'Gokul Raj .V', '6', '7305277494', '8939693155', 'akashakhy3@gmail.com', '2005-03-08', 20, '2', '2', 'Venkatesan.A', 'Daily wages', 17000.00, 1, 0.00, 19000.00, 'No.239 7th Street JJR nagar vyasarpadi', 'No.239 7th Street JJR nagar vyasarpadi', '2507310001', '1', '1', 'upload_files/candidate_tracker/5985588055_Akhynewresume...pdf', NULL, '1', '2025-07-31', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-07-31 02:45:15', 154, '2025-07-31 12:53:13', 0, NULL, 1),
(26153, 'Aravindhan M', '6', '9597578694', '9597472269', 'aravindhanaravindh106@gmail.com', '2004-04-18', 21, '2', '2', 'Jayalakshmi', 'Farmer', 15.00, 2, 0.00, 18.00, '416, sundekuppam post, village,Krishnagiri -635101', 'Moorthy nagar,padi, chennai', '2507310002', '1', '1', 'upload_files/candidate_tracker/66311226122_arvindrec.pdf', NULL, '1', '2025-07-31', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and vocie aslo good , he need work and looking also voice process so try for 7 days training period, exp salary is 16 to 18k salary ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CA130', '5151', '1970-01-01', 1, '2025-07-31 04:08:16', 154, '2025-07-31 12:05:27', 0, NULL, 1),
(26154, 'YOGASRI', '6', '8148549014', '6383081723', 'srimavelumani@gmail.com', '2002-09-14', 22, '2', '2', 'velu', 'cooli', 9000.00, 1, 0.00, 16000.00, 'old Washermanpet', 'periyamarket', '2507310003', '1', '1', 'upload_files/candidate_tracker/96019330701_PDFGallery20250726165208.pdf', NULL, '1', '2025-07-31', 0, '', '3', '59', '2025-08-04', 180000.00, '', '4', '2025-08-14', '2', 'Communication Ok fresher seems to be in dilemma can give  try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '2025-08-04', 1, '2025-07-31 04:31:20', 60, '2025-08-03 03:49:20', 0, NULL, 1),
(26155, 'Jeevitha. P', '6', '9080930181', '9363793097', 'Jeevithaponraj123@gmail.com', '2005-06-23', 20, '1', '2', 'Muthulakshmi', 'Supervisor', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2507310004', '', '1', 'upload_files/candidate_tracker/25379653116_DocScanner31Jul20251031AM.pdf', NULL, '1', '2025-07-31', 0, 'C99082', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-07-31 04:45:57', 154, '2025-07-31 11:52:46', 0, NULL, 1),
(26156, 'Pugazholi', '13', '9345645937', '7904113084', 'kpugazholi@gmail.com', '2003-03-12', 22, '3', '2', 'Kannappan', 'Annamalai University', 100000.00, 1, 0.00, 50000.00, '195 Thillai amman nagar palli padai chidambaram', 'Chennai', '2507310005', '', '1', 'upload_files/candidate_tracker/61318118039_ResumePUGAZHOLIK1.pdf', NULL, '1', '2025-07-31', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-31 05:10:24', 154, '2025-07-31 02:42:00', 0, NULL, 1),
(26157, 'ABDULLAH S', '6', '9952077074', '8012476839', 'Abdullah527880@gmail.com', '2004-10-05', 20, '2', '2', 'Safiullah', 'Retirement', 80000.00, 3, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2507310006', '49', '1', 'upload_files/candidate_tracker/3856418494_ABDULLAH.pdf', NULL, '1', '2025-07-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location too long alos he is open only for telecalling not for field sales will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-07-31 05:23:33', 154, '2025-08-02 12:09:12', 0, NULL, 1),
(26158, 'Anbazhagan S', '6', '9087262650', '9087442650', 'abianbazhagan09@gmail.com', '2004-08-09', 20, '2', '2', 'Shanmugam M', 'Security officer', 20000.00, 1, 0.00, 19000.00, '9/1, Manali new town, Chennai 600103', '9/1, Manali new town, Chennai 600103', '2507310007', '1', '1', 'upload_files/candidate_tracker/60146734377_AnbazhaganSResume201.pdf', NULL, '1', '2025-07-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our sales profile he too prefer to go with the non voice will not sustain in a long', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-07-31 05:44:54', 154, '2025-07-31 12:57:30', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26159, 'Ganesh R', '6', '9094666787', '', '2001ganeshraman@gmail.com', '2001-06-20', 24, '2', '2', 'Raman', 'Auto driver', 130000.00, 1, 20000.00, 27000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2507310008', '1', '2', 'upload_files/candidate_tracker/49919737833_GaneshRHCINSURANCEOPERATIONSASSOCIATE.pdf', NULL, '1', '2025-07-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for our roles complete non voice interested candidate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-31 05:53:36', 154, '2025-07-31 12:59:13', 0, NULL, 1),
(26160, 'Bharath Adhithyan B', '13', '9677780248', '6369364344', 'bharathadhithyan@gmail.com', '2004-05-08', 21, '3', '2', 'Balasubramaniam SP', 'Farmer, Business', 20000.00, 1, 0.00, 300000.00, 'Pattukottai, Thanjavur', 'Chennai', '2507310009', '', '1', 'upload_files/candidate_tracker/77388514693_Bharathresume.pdf', NULL, '1', '2025-07-31', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-07-31 06:03:16', 154, '2025-07-31 02:43:43', 0, NULL, 1),
(26161, 'Veerabathran ramu', '5', '9094939643', '9003106161', 'veerabathran96@gmail.com', '1996-09-30', 28, '2', '2', 'Ramu', 'Private company employee', 40000.00, 1, 20000.00, 24000.00, 'Chennai', 'Tenyampet', '2507310010', '1', '2', 'upload_files/candidate_tracker/79230937633_Resume.pdf', NULL, '1', '2025-07-31', 15, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55656', '55557', '1970-01-01', 1, '2025-07-31 06:09:37', 154, '2025-08-02 12:12:06', 0, NULL, 1),
(26162, 'Francis leander M', '4', '8122940808', '9952947374', 'francissteve077@gmail.com', '1998-04-14', 27, '1', '2', 'Michael.L', 'Flim industry', 40000.00, 1, 0.00, 20000.00, 'No.1/68 loop road behind santhome church', 'Santhome church back side', '2507310011', '', '1', 'upload_files/candidate_tracker/47759988521_Resume.pdf', NULL, '1', '2025-07-31', 0, 'P1066', '3', '59', '2025-08-01', 216000.00, '', '5', '1970-01-01', '1', 'Communication Tamil ok have exp in branch handling anna nagar cycle internal team charles reference need to check in 7 days training for renewal and confirm', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '55605', '55566', '2025-08-01', 1, '2025-07-31 06:12:01', 60, '2025-08-01 09:54:48', 0, NULL, 1),
(26163, 'Hari hara subramaniam', '6', '8939437566', '9962386695', 'harihhs4268@gmail.com', '1996-11-03', 28, '2', '2', 'Vasanthi narayanan', 'Home maker', 50000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2507310012', '1', '2', 'upload_files/candidate_tracker/88974860125_HaRiHaRaSuBrAmAnIAm2024Resume.pdf', NULL, '1', '2025-07-31', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-07-31 06:48:45', 154, '2025-07-31 04:00:43', 0, NULL, 1),
(26164, 'Ajay M', '6', '7358687277', '', 'ajayjosaph53@gmail.com', '2004-03-18', 21, '2', '2', 'Murugan', 'Daily wages', 18000.00, 4, 0.00, 18000.00, 'Tambaram', 'Tambaram', '2507310013', '1', '1', 'upload_files/candidate_tracker/62156026757_AjayCV.pdf', NULL, '1', '2025-07-31', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also sustainable is doubt.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-07-31 07:15:37', 154, '2025-07-31 04:24:53', 0, NULL, 1),
(26165, 'MANIKANDAN', '4', '7200627752', '', 'm56701138@gmail.com', '2003-03-19', 22, '5', '2', 'Murugan', 'Business', 20000.00, 1, 0.00, 15000.00, 'Adyar', 'Adyar', '2507310014', '', '1', 'upload_files/candidate_tracker/35588571774_Manikandan1.pdf', NULL, '3', '2025-08-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-31 07:34:37', 1, '2025-07-31 07:40:57', 0, NULL, 1),
(26166, 'Nallathambi', '6', '7845705872', '9488108694', 'dineshkarthi025@gmail.com', '1999-10-25', 25, '2', '2', 'Selvamani', 'Tea estate', 20000.00, 3, 0.00, 20000.00, 'Chingona 6th devicon valparai', '106 govantharaji nagar periya pani seri pooru', '2507310015', '1', '1', 'upload_files/candidate_tracker/53605641542_175385760581317538576025201658243889214Nallathambiresume.docx', NULL, '1', '2025-07-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication slang issue had his own business not much convinced for our sales too will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-07-31 08:10:53', 154, '2025-07-31 04:51:08', 0, NULL, 1),
(26167, 'Kishorekumar Arumugam', '6', '8072423466', '7639311448', 'Kishorekumar261611@gmail.com', '2002-05-15', 23, '2', '2', 'Arumugam', 'Business', 50.00, 1, 2.50, 2.50, 'Dindigul', 'Velcherry', '2507310016', '1', '2', 'upload_files/candidate_tracker/376128351_A1.pdf', NULL, '1', '2025-08-01', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-31 08:21:52', 154, '2025-08-01 01:23:03', 0, NULL, 1),
(26168, 'Dhanush Murugesan', '23', '9345830095', '9345331175', 'dhanush04362@gmail.com', '2003-12-29', 21, '2', '2', 'Alagu meena', 'House wife', 40000.00, 1, 0.00, 2.50, 'Thanjavur', 'Chennai', '2507310017', '1', '1', 'upload_files/candidate_tracker/95052588467_Resume1.pdf', NULL, '1', '2025-07-31', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-07-31 09:07:41', 154, '2025-07-31 02:47:11', 0, NULL, 1),
(26169, 'Sham R', '6', '9445523361', '9042463801', 'opshyam671@gmail.com', '2006-01-21', 19, '2', '2', 'Deepa R', 'Mobile shop', 40000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2507310018', '1', '1', 'upload_files/candidate_tracker/79147778751_ShyamResume.pdf', NULL, '1', '2025-07-31', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-07-31 09:33:36', 154, '2025-07-31 05:43:05', 0, NULL, 1),
(26170, 'S naveen', '6', '8056519632', '8098606790', 'naveensubramaniam3@gmail.com', '2003-07-17', 22, '2', '2', 'R subramanian', 'Watchman', 10000.00, 2, 0.00, 1600.00, 'Vengapakkam', 'Vengapakkan', '2507310019', '1', '1', 'upload_files/candidate_tracker/50693014089_833ed32607d4474eaa99d3d1861b2376.pdf', NULL, '1', '2025-07-31', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-07-31 09:35:23', 154, '2025-07-31 04:24:06', 0, NULL, 1),
(26171, 'Riyaskhan', '6', '7708129187', '8526643737', 'riyasmsd1@gmail.com', '2003-12-28', 21, '2', '2', 'Noushath', 'Driver', 20000.00, 1, 0.00, 16000.00, 'Dindigul', 'Chennai', '2507310020', '1', '1', 'upload_files/candidate_tracker/24488480791_riyas.resumepdf.pdf', NULL, '1', '2025-08-01', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performance and communication little bit not good.also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-07-31 09:35:57', 154, '2025-08-01 12:32:49', 0, NULL, 1),
(26172, 'Sandhiya', '6', '7418019419', '8056673999', 'sandhiya0733@gmail.com', '2005-01-15', 20, '2', '2', 'Ayirangan', 'Driver', 20000.00, 2, 0.00, 16000.00, 'Dindigul', 'Chennai', '2507310021', '1', '1', 'upload_files/candidate_tracker/94974347503_Sandhiyaresume.pdf', NULL, '1', '2025-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much comfort in sales target/discussed for renewal too but not much ok to go with this not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-07-31 09:36:16', 154, '2025-08-01 12:01:41', 0, NULL, 1),
(26173, '', '0', '8393030463', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507310022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-31 09:53:52', 0, NULL, 0, NULL, 1),
(26174, '', '0', '8072106966', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2507310023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-07-31 10:30:22', 0, NULL, 0, NULL, 1),
(26175, 'Syed Ahmed raza', '17', '9620954419', '', 'syedahmedraza.htms@gmail.com', '2002-05-20', 23, '2', '2', 'syed mansoor', 'bba', 35000.00, 0, 2.00, 24000.00, 'bapuji nagar', 'bengaluru', '2507310024', '49', '2', 'upload_files/candidate_tracker/95073530779_SyedAhmedcv.pdf', NULL, '1', '2025-08-02', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-07-31 06:00:02', 1, '2025-07-31 06:04:11', 0, NULL, 1),
(26176, 'Yasar Arafath', '6', '7010004987', '9840842434', 'arafathyasar291@gmail.com', '2003-03-18', 22, '2', '2', 'S. Liyakath Ali', 'Painter', 25000.00, 1, 13000.00, 15000.00, '114 sp garden kannammapet T Nagar chennai', '42/64 Masquare Garden East Jones road saidapet', '2508010001', '1', '2', 'upload_files/candidate_tracker/36185287667_CV2025062617504646.pdf', NULL, '1', '2025-08-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-08-01 04:39:08', 154, '2025-08-01 12:10:23', 0, NULL, 1),
(26177, 'Salman Faris Shajahan', '4', '9442779376', '8870370352', 'salmanfaris0502@gmail.com', '2001-10-19', 23, '2', '2', 'Shajahan', 'Driving', 20000.00, 0, 16000.00, 17000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2508010002', '1', '2', 'upload_files/candidate_tracker/59539195964_ResumeSalmanF.pdf.pdf', NULL, '1', '2025-08-01', 0, '', '3', '59', '2025-08-04', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok already attended a few years back via virtual in between worled with multiple companies and gained exp can give a try and check', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', '5151', '2025-08-04', 1, '2025-08-01 04:44:46', 60, '2025-08-03 03:52:32', 0, NULL, 1),
(26178, 'Tharun', '6', '9962188392', '9940623088', 'tharun99621@gmail.com', '2001-04-10', 24, '2', '2', 'Ravi', 'Mechanic', 20000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2508010003', '1', '1', 'upload_files/candidate_tracker/94075838905_Tharun.pdf', NULL, '1', '2025-08-02', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-08-01 04:57:57', 154, '2025-08-02 04:11:12', 0, NULL, 1),
(26179, 'Moulish k', '6', '9791798151', '9566044332', 'moulishktm@gmail.com', '2003-04-12', 22, '2', '2', 'Kanniyappan C', 'Farmar', 15000.00, 1, 0.00, 35000.00, 'Thondamanallur', 'Vettuvankeni', '2508010004', '1', '1', 'upload_files/candidate_tracker/73292999897_DOC20250618WA0009.pdf', NULL, '3', '2025-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude candidate not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-08-01 05:16:30', 154, '2025-08-01 01:03:29', 0, NULL, 1),
(26180, 'Deepa. E', '6', '6379880754', '', 'elumalaihills576@gmail.com', '2004-12-19', 20, '2', '2', 'Elumalai. M', 'Work in shop', 17000.00, 2, 0.00, 30000.00, 'Chengalpattu', 'Chengalpattu', '2508010005', '1', '1', 'upload_files/candidate_tracker/7039593129_Deepa271.pdf202507311909520000.pdf', NULL, '3', '2025-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance will not handle our sales pressure not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-08-01 05:17:48', 154, '2025-08-01 01:04:10', 0, NULL, 1),
(26181, 'Yogesh Waran P', '6', '9445565126', '9962110224', 'yogeshwaran252706@gmail.com', '2002-06-25', 23, '2', '2', 'K Palani', 'CONDUCTOR', 300000.00, 1, 0.00, 1.80, 'Chennai', 'Nungambakkam', '2508010006', '62', '1', 'upload_files/candidate_tracker/24604807724_IMG20250721WA00011.pdf', NULL, '1', '2025-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok not much comfort with the sales calling sustainability doubts in this profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-01 05:24:47', 154, '2025-08-01 01:05:10', 0, NULL, 1),
(26182, 'Preethi sekar', '6', '9080673591', '', 'spreethipreethis@gmail.com', '2005-03-19', 20, '2', '2', 'Jayalakshmi s', 'House wife', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Mayiladuthurai', '2508010007', '1', '1', 'upload_files/candidate_tracker/37011906091_Preetiresum.pdf', NULL, '1', '2025-08-05', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE COMMUNICATION WAS NOT SO GOOD  AND HAVE SOME PROUNCIATION  ISSUES WILL NOT SUITABLE FOR SALES', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-08-01 05:30:18', 154, '2025-08-05 01:27:18', 0, NULL, 1),
(26183, 'Saran kumar S', '6', '7806943503', '', '2004sarankumar@gmailcom', '2004-07-23', 21, '2', '2', 'Saravanan K', 'Saloon', 35.00, 1, 0.00, 18000.00, 'Perambur', 'Perambur', '2508010008', '62', '1', 'upload_files/candidate_tracker/65496037730_SaranKumarResumeTwoPage.docx', NULL, '1', '2025-08-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-01 05:45:40', 154, '2025-08-01 01:12:06', 0, NULL, 1),
(26184, 'Sugumar S', '6', '9360359562', '', 'Sugumarsss2004@gmail.com', '2004-06-09', 21, '2', '2', 'Latha', 'Sudhahar', 50000.00, 2, 0.00, 15000.00, 'Ariyalur', 'Ambattur', '2508010009', '1', '1', 'upload_files/candidate_tracker/75493794597_ban.pdf', NULL, '3', '2025-08-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-01 05:45:52', 154, '2025-08-01 01:21:52', 0, NULL, 1),
(26185, 'Prem Kumar', '6', '9360002953', '9176189762', 'premkumardino@gmail.com', '2004-05-29', 21, '2', '2', 'Dhayalan S', 'Security in government school', 30000.00, 1, 0.00, 18000.00, '31/4 Rangasayee 3rd lane, Perambur, Chennai', '31/4 Rangasayee 3rd lane, Perambur, Chennai', '2508010010', '62', '1', 'upload_files/candidate_tracker/24591365832_PremKumarresume202507142247320000.pdf', NULL, '1', '2025-08-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-01 05:54:24', 154, '2025-08-01 01:12:36', 0, NULL, 1),
(26186, 'Nivetha Magimaidass', '6', '9384239467', '8124011307', 'nivetha300701@gmail.com', '2001-07-30', 24, '2', '2', 'Parent', 'Electrician', 13000.00, 1, 18000.00, 22000.00, 'Thiruvotriyur', 'Thiruvotriyur', '2508010011', '1', '2', 'upload_files/candidate_tracker/2189292409_Nivetharesumeupdated113723.pdf', NULL, '1', '2025-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she asked time to confirm her interest in this job role if she comes back let us try', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55605', '55566', '1970-01-01', 1, '2025-08-01 06:11:09', 154, '2025-08-01 06:00:03', 0, NULL, 1),
(26187, 'Gokulakrishnan', '6', '9962397337', '7299671824', 'Gokulgogo04@gamil.com', '2003-11-04', 21, '2', '2', 'Palani', 'Tinkering', 1000000.00, 2, 0.00, 17.00, 'Kotturpuram', 'Kotturpuram', '2508010012', '1', '1', 'upload_files/candidate_tracker/91330709611_GokulCV.pdf', NULL, '1', '2025-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not much serious with the job roles worked in customer support and other domain but no sustainabilyt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-01 06:13:37', 154, '2025-08-01 03:00:11', 0, NULL, 1),
(26188, 'praveen kumar K', '6', '9043404061', '6369840612', 'kpkjob123@gmail.com', '2001-08-21', 23, '2', '2', 'Kumar', 'Cooli', 10000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2508010013', '1', '2', 'upload_files/candidate_tracker/12336936959_PraveenKumarKResume.pdf', NULL, '1', '2025-08-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2025-08-01 06:21:48', 154, '2025-08-01 06:00:15', 0, NULL, 1),
(26189, 'Sanjay', '6', '8939099521', '9952020691', 'sanjay@gamil.com', '2002-07-30', 23, '2', '2', 'Kumaresan', 'Tinkering', 1000000.00, 2, 0.00, 17000.00, 'Kotturpuram', 'Kotturpuram', '2508010014', '1', '1', 'upload_files/candidate_tracker/53460782371_sanjay.docx', NULL, '1', '2025-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much seriousness to the profile will not sustaina nd not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-01 06:22:59', 154, '2025-08-01 02:44:57', 0, NULL, 1),
(26190, 'Naveen kumar', '5', '9884333793', '7871904998', 'naveenkannagi2000@gmail.com', '2000-10-02', 24, '2', '2', 'Kannagai', 'Financial advisor', 30000.00, 1, 360000.00, 400000.00, 'Chennai', 'Chennai', '2508010015', '1', '2', 'upload_files/candidate_tracker/21392439999_NaveenResume.pdf', NULL, '1', '2025-08-02', 1, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for RM role ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55656', '55557', '1970-01-01', 1, '2025-08-01 06:38:23', 154, '2025-08-19 07:14:08', 0, NULL, 1),
(26191, 'Michael Melvin l', '6', '8489628267', '8489628268', 'michaelmelvin78@gmail.com', '2002-11-18', 22, '2', '2', 'Lourdu samy', 'Null', 20000.00, 2, 0.00, 18000.00, 'Chennai, Velachery', 'Chennai, Velachery', '2508010016', '1', '1', 'upload_files/candidate_tracker/3734657303_CV2025050711040183.pdf', NULL, '1', '2025-08-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-08-01 06:39:20', 154, '2025-08-01 03:02:50', 0, NULL, 1),
(26192, 'Priyanshu B', '13', '8883991992', '', 'priyanspriyan19@gmail.com', '2003-10-27', 21, '2', '2', 'belarmin peter raj d', 'cooli', 20000.00, 1, 0.00, 25000.00, 'nagercoil', 'chrompet', '2508010017', '1', '1', 'upload_files/candidate_tracker/90460979885_PriyanshuB.pdf', NULL, '1', '2025-09-14', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-01 07:02:31', 154, '2025-09-14 09:48:42', 0, NULL, 1),
(26193, '', '0', '8778238898', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508010018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-01 07:49:18', 0, NULL, 0, NULL, 1),
(26194, '', '0', '8523910774', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508010019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-01 08:19:08', 0, NULL, 0, NULL, 1),
(26195, 'S Keerthana', '6', '7339627131', '', 'keerthikarls2020@gmail.com', '2003-02-12', 22, '2', '2', 'Sankar k', 'Tailor', 20000.00, 1, 0.00, 17000.00, 'Puducherry', 'Puducherry', '2508010020', '1', '1', 'upload_files/candidate_tracker/15986028660_KeerthanaResume.pdf', NULL, '1', '2025-08-01', 0, '', '1', '154', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-08-01 08:26:33', 154, '2025-08-02 12:10:41', 0, NULL, 1),
(26196, '', '0', '9342467978', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508010021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-01 09:06:01', 0, NULL, 0, NULL, 1),
(26197, 'Sulaiman', '6', '9342467979', '7010569097', 'sulaiman4910057@gmail.com', '2005-03-28', 20, '2', '2', 'Asifa', 'House keeping', 20000.00, 1, 0.00, 20000.00, 'Perambur', 'Chennai', '2508010022', '1', '1', 'upload_files/candidate_tracker/48212165713_Sulaiman.CV.docx', NULL, '1', '2025-08-06', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', 'Had partime expereience as accounts executive and now full time. but wants to work in a company so attened interview had sales skills, good comminication and boldness lil attitude and can try, GD done by Jothiga', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2025-08-01 09:08:04', 104, '2025-08-06 03:11:32', 0, NULL, 1),
(26198, 'Suranjana M', '4', '9566028336', '', 'm.suranjana2004@gmail.com', '2004-12-21', 20, '5', '2', 'Munish', 'Airtel', 25000.00, 1, 0.00, 15000.00, '64 washerman street chintadripet chennai 2', 'Chintadripet chennai 2', '2508010023', '', '1', 'upload_files/candidate_tracker/40555036896_SuranjanaCV.pdf202507231529320000.pdf', NULL, '1', '2025-08-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-01 09:45:47', 1, '2025-08-01 09:59:34', 0, NULL, 1),
(26199, '', '0', '6385482513', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508010024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-01 09:47:25', 0, NULL, 0, NULL, 1),
(26200, '', '0', '7010254796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508010025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-01 09:50:44', 0, NULL, 0, NULL, 1),
(26201, 'Kaviya K', '4', '9025691467', '9600107472', 'kaviyakannan456@gmail.com', '2003-04-28', 22, '2', '2', 'Kannan', 'Admin', 3000000.00, 1, 21000.00, 25000.00, 'Chennai', 'Chennai', '2508010026', '1', '2', 'upload_files/candidate_tracker/3765907860_CV2025072109574137.pdf', NULL, '1', '2025-08-02', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected as  E sales RM.\nGaurav sir  also met him', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55824', '55560', '1970-01-01', 1, '2025-08-01 10:21:07', 154, '2025-08-19 07:14:37', 0, NULL, 1),
(26202, '', '0', '6384695748', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508010027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-01 11:35:37', 0, NULL, 0, NULL, 1),
(26203, 'a asif ahamed', '4', '6369648058', '', 'ahamedasifaa3@gmail.com', '2003-01-10', 22, '3', '2', 'm abushalih', 'technician', 30000.00, 1, 0.00, 18000.00, 'thanjavur', 'thanjavur', '2508010028', '', '1', 'upload_files/candidate_tracker/14384452499_AsifAhamedAResume.pdf', NULL, '1', '2025-08-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-01 11:54:36', 1, '2025-08-01 02:06:40', 0, NULL, 1),
(26204, 'Ajith Kumar C', '6', '9344742461', '', 'ajithkumar200014@gmail.com', '2000-05-14', 25, '2', '2', 'Chinnadurai .s', 'Tailoring', 250000.00, 1, 0.00, 20000.00, 'Bathalagundo', 'Viralipatti', '2508020001', '1', '1', 'upload_files/candidate_tracker/43886791827_Ajithresume1.docx', NULL, '1', '2025-08-06', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not Even opened his mouth for a single conversation, GD done by Jothiga.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', 'not Even opened his mouth for a single conversation, GD done by Jothiga.', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-08-02 01:44:38', 104, '2025-08-06 03:11:59', 0, NULL, 1),
(26205, 'PRASANNA U B', '6', '9361624132', '9543233460', 'ubprasannaub@gmail.com', '2002-12-02', 22, '2', '2', 'Undal Balakrishnan', 'Weaving', 25000.00, 1, 0.00, 250000.00, '12/29 Vijaya mandapa Street M.cahavady Thanjavur', 'Thanjavur', '2508020002', '49', '1', 'upload_files/candidate_tracker/99450626945_PRASANNAUB4.pdf', NULL, '1', '2025-08-04', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-02 05:05:44', 104, '2025-08-04 03:18:18', 0, NULL, 1),
(26206, '', '0', '7904634703', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508020003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-02 05:20:04', 0, NULL, 0, NULL, 1),
(26207, 'Monica R', '6', '6379183740', '8939294965', 'monica12c.sci@gmail.com', '2005-04-20', 20, '2', '2', 'Rajabadhar E', 'Car Driver', 10000.00, 0, 0.00, 20000.00, 'No:3/15, Moogambigai Nagar,3rd Street, Ramapuram', 'No:3/15, Moogambigai Nagar,3rd Street, Ramapuram', '2508020004', '1', '1', 'upload_files/candidate_tracker/48069497772_MonicaRResume1compressed1compressed.pdf', NULL, '1', '2025-08-02', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-08-02 05:53:37', 154, '2025-08-02 12:41:31', 0, NULL, 1),
(26208, 'Anbuselvi S', '6', '8680914150', '8939116444', 'anbuselvi.bsccs@gmail.com', '2004-07-28', 21, '2', '2', 'Seetharaman.V', 'Labour', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2508020005', '1', '1', 'upload_files/candidate_tracker/70364886841_ANBU...pdf', NULL, '1', '2025-08-02', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-08-02 05:54:04', 154, '2025-08-02 12:42:09', 0, NULL, 1),
(26209, '', '0', '9894835171', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508020006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-02 07:43:21', 0, NULL, 0, NULL, 1),
(26210, 'Sudha', '4', '6381962855', '', 'Sudhakannan339@gmail.com', '1997-04-06', 28, '2', '2', 'kannan. ananthi', 'carpenter', 40000.00, 1, 0.00, 14000.00, 'korukkupet chennai', 'korukkupet chennai', '2508020007', '1', '1', 'upload_files/candidate_tracker/86583235034_sudharesume2.pdf', NULL, '1', '2025-08-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-08-02 08:15:09', 1, '2025-08-02 08:25:26', 0, NULL, 1),
(26211, 'bharath m', '4', '9629953869', '', 'bharathautobote@gmail.com', '1998-07-28', 27, '5', '2', 'm mani', 'daily wages', 13000.00, 1, 10000.00, 25000.00, 'thuraiyur', 'thurayur', '2508020008', '', '2', 'upload_files/candidate_tracker/26371185583_Bharath.pdf.pdf', NULL, '1', '2025-08-05', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-02 10:44:43', 1, '2025-08-02 10:52:21', 0, NULL, 1),
(26212, 'Amina Sundus sathakathulla', '6', '8637429608', '', 'aminasundus309@gmail.com', '2004-10-28', 20, '2', '2', 'Sathakathulla', 'Driver', 400000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2508020009', '1', '1', 'upload_files/candidate_tracker/6050496220_BlueSimpleProfessionalCVResume202501242130410000.pdf', NULL, '1', '2025-08-04', 0, '', '3', '59', '2025-08-11', 180000.00, '', '3', '2025-08-11', '1', 'Communication ok Fresher for our sales can give a try and check in training', '5', '1', '1', '4', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55645', '5151', '2025-08-11', 1, '2025-08-02 11:55:43', 60, '2025-08-11 10:00:14', 0, NULL, 1),
(26213, 'VIJAYARAGAVAN V', '4', '6384764217', '6383166721', 'vijayaragavan2552@gmail.com', '2000-07-03', 25, '2', '2', 'VEDHACHALAM M', 'FARMER', 250000.00, 1, 16000.00, 18000.00, 'Thanjavur', 'Koyambedu', '2508020010', '1', '2', 'upload_files/candidate_tracker/63230399649_CV202507211619151.pdf', NULL, '1', '2025-08-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-08-02 12:01:23', 1, '2025-08-02 12:11:43', 0, NULL, 1),
(26214, '', '0', '9600644141', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508020011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-02 12:16:54', 0, NULL, 0, NULL, 1),
(26215, 'nisha n', '6', '6382953231', '', 'nisha08nanda@gmail.com', '2005-07-08', 20, '2', '2', 'nanda kumar', 'driver', 100000.00, 1, 0.00, 250000.00, 'chennai', 'Chennai', '2508020012', '49', '1', 'upload_files/candidate_tracker/76898648891_NISHANBPO.pdf', NULL, '1', '2025-08-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-02 12:24:59', 1, '2025-08-02 01:03:06', 0, NULL, 1),
(26216, 'preethi.j', '6', '8610611102', '7092240856', 'preethipreethi00550@gmail.com', '2004-05-08', 21, '2', '2', 'jagadeesan/kavitha', 'driver', 20000.00, 1, 0.00, 15.00, 'chennai', 'chennai', '2508020013', '1', '1', 'upload_files/candidate_tracker/71932290039_preethi.jresume1.pdf', NULL, '1', '2025-08-05', 0, '', '3', '59', '2025-08-07', 180000.00, '', '3', '2025-08-07', '2', 'Communication Ok fresher can give a try and check her friend profile almost not got shortlisted let us check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '2025-08-07', 1, '2025-08-02 12:56:38', 60, '2025-08-07 09:38:53', 0, NULL, 1),
(26217, 'r.karthika', '6', '8148320074', '9790881780', 'karthikaradhakrishnan419@gmail.com', '2003-11-18', 21, '2', '2', 'abinaya', 'freelancer', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2508020014', '1', '1', 'upload_files/candidate_tracker/74085553076_CV2025021720350720.pdf', NULL, '1', '2025-08-04', 0, '', '3', '59', '2025-08-07', 180000.00, '', '3', '2025-08-11', '2', 'Communication of fresher need to check in training and confirm let us try', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '2025-08-07', 1, '2025-08-02 12:56:59', 60, '2025-08-07 09:41:31', 0, NULL, 1),
(26218, 'K.Haripriya', '11', '8892047416', '', 'haripriya2002kannan@gmail.com', '2002-09-02', 22, '2', '2', 'Kannan S', 'CAD / CAM programmer', 40000.00, 0, 0.00, 250000.00, 'electronic city phase 2 bangalore 560100', 'electronic city phase 2 bangalore 560100', '2508020015', '1', '1', 'upload_files/candidate_tracker/50215854651_HaripriyaResume.pdf', NULL, '2', '2025-08-02', 0, '', '3', '59', '2025-08-04', 250000.00, '', '4', '2026-03-18', '2', 'Communication Good Fresher can be trained in our HR roles in bangalore 2yrs NDA will be initiated can check and confirm', '6', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '2025-08-04', 1, '2025-08-02 01:12:59', 162, '2025-08-29 09:51:39', 0, NULL, 1),
(26219, '', '0', '7695997982', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508030001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-03 10:43:17', 0, NULL, 0, NULL, 1),
(26220, 'M.GAYATHIRI', '6', '8248954581', '9841208576', 'murugangayathri37@gmail.com', '2004-05-11', 21, '2', '2', 'S.Murugan', 'Nil', 22000.00, 1, 0.00, 17000.00, 'Royapettah', 'Royapettah', '2508040001', '62', '1', 'upload_files/candidate_tracker/52301911681_20250804105707.pdf', NULL, '1', '2025-08-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'much focused for data entry only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-04 05:17:38', 154, '2025-08-04 05:57:53', 0, NULL, 1),
(26221, 'tharun', '6', '8438108783', '9080154920', 'justtharun123@gmail.com', '2003-01-30', 22, '3', '2', 'k.babu', 'private employee', 200000.00, 1, 0.00, 20000.00, 'murichembedu village annupambattu post ponneri', 'murichembedu village annupambattu post ponneri', '2508040002', '', '1', 'upload_files/candidate_tracker/12098501077_TharunResume.pdf', NULL, '1', '2025-08-04', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not clear what domain too choose... worked for 5 months and did chartered accounts course for a year... and now also looking for the same field.. sustainability and pressure handling high doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-08-04 05:24:58', 154, '2025-08-04 01:31:43', 0, NULL, 1),
(26222, 'SharmilaDevi. M', '13', '9962889138', '9940121599', 'sharmiladevik23@gmail.com', '1997-12-23', 27, '3', '1', 'ManiKandan', 'Line inspector', 20000.00, 1, 0.00, 20000.00, 'Mogappair West', 'Mogappair West', '2508040003', '', '1', 'upload_files/candidate_tracker/12212670697_SHARMILARESUME1721304165525SharmilaDevi.P.K.pdf', NULL, '1', '2025-08-04', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-04 05:34:50', 154, '2025-08-04 11:21:53', 0, NULL, 1),
(26223, '', '0', '9965566043', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508040004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-04 06:44:43', 0, NULL, 0, NULL, 1),
(26224, '', '0', '9789029012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508040005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-04 06:54:24', 0, NULL, 0, NULL, 1),
(26225, 'Divakaran', '6', '9360891152', '8608551000', 'divadeena777@gmail.com', '2000-04-20', 25, '2', '2', 'Paramasivam', 'Dailywages', 14000.00, 1, 0.00, 20000.00, 'Dindugul', 'Dindugul', '2508040006', '1', '1', 'upload_files/candidate_tracker/83163558316_DOC20250611WA0000..docx', NULL, '1', '2025-08-06', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He speaks well 2021 passed out and prepared for Goverment exams, now trying for job came along with his friend, I rejected his friend but can try this profile, but he went. GD done by Jothiga', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', 'He speaks well 2021 passed out and prepared for Goverment exams, now trying for job came along with his friend, I rejected his friend but can try this profile, but he went. GD done by Jothiga', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-08-04 06:54:36', 104, '2025-08-06 03:13:24', 0, NULL, 1),
(26226, '', '0', '9025722989', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508040007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-04 06:55:38', 0, NULL, 0, NULL, 1),
(26227, 'Aarthi J', '6', '9043666261', '9176752352', 'aarthiaaruj2003@gmail.com', '2003-12-07', 21, '2', '2', 'Jayaraman A', 'Cooli', 10000.00, 2, 0.00, 15000.00, 'Pattalam', 'Pattalam', '2508040008', '45', '1', 'upload_files/candidate_tracker/86582799511_Phone9043946957202506081246220000.pdf202507102048420000.pdf', NULL, '2', '2025-08-04', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for accounts max... ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-08-04 06:57:12', 154, '2025-08-04 03:32:11', 0, NULL, 1),
(26228, 'KAVIYA S', '6', '8428907029', '9941062402', 'kaviyas0162003@gmail.com', '2003-06-01', 22, '2', '2', 'M SELVAM', 'Coolie', 10000.00, 1, 0.00, 15000.00, 'Pattalam', 'Pattalam', '2508040009', '45', '1', 'upload_files/candidate_tracker/29514181436_KAVIYASRESUME.pdf', NULL, '2', '2025-08-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-04 06:57:25', 154, '2025-08-04 03:49:41', 0, NULL, 1),
(26229, '', '0', '9550610474', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508040010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-04 06:59:13', 0, NULL, 0, NULL, 1),
(26230, '', '0', '9360118504', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508040011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-04 07:43:45', 0, NULL, 0, NULL, 1),
(26231, 'Mohamed Vasim B', '23', '9080067391', '', 'vasim7112003@gmail.com', '2003-11-07', 21, '4', '2', 'A Mohammed basheer', 'Electrician', 30000.00, 1, 0.00, 30000.00, 'Little mount saidapet', 'Little mount saidapet', '2508040012', '', '1', 'upload_files/candidate_tracker/49245480199_MohamedVasimResume1.pdf', NULL, '1', '2025-08-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-04 09:21:50', 1, '2025-08-04 09:27:47', 0, NULL, 1),
(26232, 'Habeeb mohamed sathakkathulla.s', '6', '8189817421', '', 'habeebmohamed012@gmail.com', '1998-05-30', 27, '2', '2', 'No', 'No', 20000.00, 2, 0.00, 180000.00, 'Mannady', 'Mannady', '2508040013', '1', '1', 'upload_files/candidate_tracker/98368746346_Habeebnewcv.pdf', NULL, '1', '2025-08-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for our roles he is much comfort to handle the cashier roles only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-08-04 09:31:15', 154, '2025-08-04 06:03:23', 0, NULL, 1),
(26233, 'Mohamed Ansari', '13', '9080606184', '', 'mohamedansariprofessional@gmail.com', '2002-01-28', 23, '3', '2', 'Mohaideen', 'Driver', 20000.00, 1, 0.00, 35000.00, 'Tenkasi', 'Tenkasi', '2508040014', '', '1', 'upload_files/candidate_tracker/18169156621_MohamedAnsariMCACV4..pdf', NULL, '1', '2025-08-04', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-04 10:40:17', 104, '2025-08-04 04:19:19', 0, NULL, 1),
(26234, 'yogeshrajikumar', '6', '8925660424', '6381775412', 'yogiganesh2004@gmail.com', '2004-09-22', 20, '2', '2', 'kavitha', 'homemaker', 10000.00, 1, 0.00, 16000.00, 'kodungaiyur', 'kodugaiyur', '2508040015', '1', '1', 'upload_files/candidate_tracker/26111276809_Resumeyogesh.docx', NULL, '1', '2025-08-07', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication not good, need to open up a lot pressure handling doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', 'communication not good, need to open up a lot pressure handling doubts', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2025-08-04 11:10:05', 154, '2025-08-07 12:57:20', 0, NULL, 1),
(26235, '', '0', '7305895828', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508040016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-04 02:46:44', 0, NULL, 0, NULL, 1),
(26236, 'Gopi Krishnan S', '6', '9345948833', '', 'gopikrishnan.s100@gmail.com', '2002-10-17', 22, '2', '2', 'Jayanthi S', 'Farmer', 12000.00, 2, 0.00, 2.60, 'Ambur, Vellore', 'tirumangalam , chennai', '2508050001', '1', '1', 'upload_files/candidate_tracker/90426513805_GopiKrishnanCV2.O.pdf', NULL, '1', '2025-08-06', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not Even opened his mouth for a single conversation initially, but later tried to interact with others, but no sales skills and  GD done by Jothiga.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', 'not Even opened his mouth for a single conversation initially, but later tried to interact with others, but no sales skills and  GD done by Jothiga.', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-08-05 04:49:26', 104, '2025-08-06 03:17:35', 0, NULL, 1),
(26237, 'Mohammad Arsath', '6', '9150353090', '', 'mohamedarsath746@gmail.com', '2001-02-14', 24, '2', '2', 'Abdul Malik', 'Restaurant cashier', 35000.00, 1, 25000.00, 30000.00, '710beachstreetGopalapattinamMimisalpincode614 621', 'Triplicane', '2508050002', '1', '2', 'upload_files/candidate_tracker/99601770541_ARSATHA.pdf', NULL, '1', '2025-08-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication sounds Ok but not much clarity on his exp pertaining to the investment domain he worked not much suitable for our roles career gap he voluntarily didnt attend the interview just through reference and relative companies he worked', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-05 04:58:53', 154, '2025-08-05 12:33:15', 0, NULL, 1),
(26238, 'SANJAY v', '6', '8681988824', '9710967338', 'sanjayvelmurugan17@gmail.com', '2004-11-17', 20, '2', '2', 'Velmurugan', 'Tailor', 15000.00, 1, 0.00, 16000.00, '20/2 peram balu street oldwashermenpet chennai 21', '20/2 peram balu street oldwashermenpet chennai 21', '2508050003', '1', '1', 'upload_files/candidate_tracker/10594092226_Sanjayv.pdf', NULL, '3', '2025-08-05', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-08-05 05:14:24', 154, '2025-08-05 12:42:12', 0, NULL, 1),
(26239, 'Divya', '6', '6369601551', '8610611102', 'Divyadiv2k5@gmail.com', '2005-02-03', 20, '2', '2', 'K ramesh', 'Labour work', 25000.00, 1, 0.00, 15000.00, 'Korrukkupet', 'Korrukupet', '2508050004', '1', '1', 'upload_files/candidate_tracker/5967631761_PreethiUpdatedResumeADPP.pdf', NULL, '1', '2025-08-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-05 05:57:52', 154, '2025-08-05 04:47:44', 0, NULL, 1),
(26240, 'M. Bhuvaneswari', '6', '8838794264', '7200283810', 'Muthukumarbhuvaneswari03@gmail.com', '1995-09-25', 29, '3', '1', 'Devi', 'Coole', 10000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2508050005', '', '2', 'upload_files/candidate_tracker/16928626636_Bhuvaneshwari.pdf', NULL, '2', '2025-08-05', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-05 06:00:02', 154, '2025-08-05 04:49:03', 0, NULL, 1),
(26241, '', '0', '9585986357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508050006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-05 06:13:12', 0, NULL, 0, NULL, 1),
(26242, 'MANIKKAM.V', '6', '6369762655', '', 'manikkam22manikkam@gmail.com', '2000-11-22', 24, '2', '2', 'VALLIAPPAN.PR', 'working', 30000.00, 1, 0.00, 2.25, 'Chennai', 'Chennai', '2508050007', '1', '1', 'upload_files/candidate_tracker/82650375255_ManikkamV4.pdf', NULL, '1', '2025-08-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-08-05 06:15:35', 154, '2025-08-05 04:21:14', 0, NULL, 1),
(26243, '', '0', '9686389840', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508050008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-05 06:21:16', 0, NULL, 0, NULL, 1),
(26244, 'Nandhini S', '6', '8248236415', '9789252060', 'vijaynandhini19@gmail.com', '1999-07-13', 26, '2', '1', 'Vijay B', 'Senior engineer', 50000.00, 1, 13000.00, 20000.00, 'Chennai', 'Chennai', '2508050009', '1', '2', 'upload_files/candidate_tracker/44254537111_CV2025072411315264.pdf', NULL, '1', '2025-08-05', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2025-08-05 06:23:05', 154, '2025-08-05 02:53:43', 0, NULL, 1),
(26245, 'Harris Jaisal Peter Raj', '13', '9360113704', '8056114552', 'harrisjaisal@gmail.com', '2001-11-10', 23, '2', '2', 'Peter Raj', 'Fisherman', 80000.00, 1, 0.00, 35000.00, '3/222, Fathima Street, Kadiapattanam', 'Pallavaram Chennai', '2508050010', '60', '1', 'upload_files/candidate_tracker/40867849527_JaisalCV.pdf', NULL, '1', '2025-08-05', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-05 06:27:59', 154, '2025-08-05 12:22:55', 0, NULL, 1),
(26246, 'Kamalasundari', '6', '8838907592', '', 'kamalasundari131@gmail.com', '2001-01-13', 24, '2', '1', 'Sundararajan', 'Farmer', 10000.00, 1, 15000.00, 18000.00, 'Pudukkottai', 'Chennai', '2508050011', '1', '2', 'upload_files/candidate_tracker/71153552381_KAMALASUNDARIRESUMENEW.pdf', NULL, '1', '2025-08-05', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-08-05 06:35:52', 154, '2025-08-05 04:05:52', 0, NULL, 1),
(26247, 'Harvind S', '6', '9677295366', '', 'harvindsaravanan7@gmail.com', '2004-09-10', 20, '2', '2', 'Saravanan', 'Cooli', 15000.00, 1, 0.00, 15000.00, 'Uthukottai', 'Uthukottai', '2508050012', '1', '1', 'upload_files/candidate_tracker/85551775693_Harvindresumeb.comcs.pdf', NULL, '1', '2025-08-05', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-08-05 06:36:47', 154, '2025-08-05 01:05:05', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26248, 'M Prasanna', '6', '8148250246', '', 'Mmprasanna900@gmail.com', '2000-10-04', 24, '2', '2', 'Malathi m', 'Farmer', 10000.00, 4, 15000.00, 18000.00, 'Pudukkottai', 'Palavathangal', '2508050013', '1', '2', 'upload_files/candidate_tracker/96552472285_PRASANNAM17.pdf', NULL, '1', '2025-08-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-05 06:38:05', 154, '2025-08-05 04:12:55', 0, NULL, 1),
(26249, 'Teena S', '6', '7530036263', '7904653160', 'steenasteena5@gmail.com', '2002-10-29', 22, '2', '2', 'Saravanan', 'Farmer', 10000.00, 2, 15000.00, 18000.00, 'Trichy', 'Palavanthagal', '2508050014', '1', '2', 'upload_files/candidate_tracker/57150218137_TEENA2025Resume.pdf', NULL, '1', '2025-08-05', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE  COMMUNICATION WAS  OK BUT NOT HAVING CONFIDENT AND INTERESTED IN IT NOT SURE ABOUT SUSTAINABILITY ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1287', '5151', '1970-01-01', 1, '2025-08-05 06:40:20', 154, '2025-08-05 04:07:20', 0, NULL, 1),
(26250, 'POOPATHI', '6', '9566683254', '9894128033', 'flowerpathi20@gmail.com', '2002-05-31', 23, '2', '2', 'ARUNACHALAM. M', 'Farmer', 15000.00, 2, 16000.00, 20000.00, 'Kallakkurichi', 'Ashok nagar', '2508050015', '1', '2', 'upload_files/candidate_tracker/677499399_FLOWERPATHI007APPLICATION.pdf', NULL, '1', '2025-08-05', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-08-05 06:41:04', 154, '2025-08-05 02:45:48', 0, NULL, 1),
(26251, '', '0', '9042046470', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508050016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-05 07:01:11', 0, NULL, 0, NULL, 1),
(26252, 'Madhan M', '13', '9789065813', '9444676380', 'madhan00045@gmail.com', '2003-04-19', 22, '3', '2', 'Mannu K', 'Building contractor', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2508050017', '', '1', 'upload_files/candidate_tracker/72484647762_Resume1.pdf', NULL, '1', '2025-08-05', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-05 07:23:23', 154, '2025-08-05 01:17:02', 0, NULL, 1),
(26253, 'p vishal', '6', '7092610540', '', 'vishalpappoo1112@gmail.com', '2000-09-12', 24, '2', '1', 'prabakaran', 'electrician', 30000.00, 1, 21000.00, 25000.00, 'tiruvallur', 'tiruvallur', '2508050018', '1', '2', 'upload_files/candidate_tracker/9845088186_Vishalresume.pdf', NULL, '1', '2025-08-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-08-05 07:31:48', 154, '2025-08-05 02:32:41', 0, NULL, 1),
(26254, 'Rakesh K', '6', '7299207436', '6374028129', 'rockyrakeshk2004@gmail.com', '2004-10-14', 20, '2', '2', 'Kanchana', 'Driving', 20000.00, 1, 0.00, 20000.00, 'Iyya Street Chinthadripet Chennai 2', 'Iyya Street Chinthadripet Chennai 2', '2508050019', '1', '1', 'upload_files/candidate_tracker/80062356529_Rakeshkresume.pdf', NULL, '1', '2025-08-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-05 09:10:15', 154, '2025-08-05 04:02:42', 0, NULL, 1),
(26255, 'Lijesh S', '6', '9042988312', '9940097451', 'lijeshs177@gmail.com', '2005-04-10', 20, '2', '2', 'G. Srinivasan', 'Own Business', 25000.00, 1, 0.00, 20000.00, 'Kodungaiyur kannadasan nagar chennai -600118', 'Kodungaiyur kannadasan nagar chennai -600118', '2508050020', '1', '1', 'upload_files/candidate_tracker/76336544609_ProfessionalModernCVResume2.pdf', NULL, '3', '2025-08-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average need to open up a lot sounds low voice will not handle our work roles will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-05 09:10:20', 154, '2025-08-05 04:04:05', 0, NULL, 1),
(26256, 'mani deivam', '23', '9385337923', '', 'manirathnam3424@gmail.com', '2004-04-30', 21, '2', '2', 'deivam v', 'front end developer', 7500.00, 0, 0.00, 300000.00, 'salem', 'perungalathur', '2508050021', '1', '1', 'upload_files/candidate_tracker/47863110046_ManiResume1.pdf', NULL, '1', '2025-08-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-05 09:12:17', 154, '2025-08-08 10:15:53', 0, NULL, 1),
(26257, '', '0', '8122994086', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508050022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-05 09:17:46', 0, NULL, 0, NULL, 1),
(26258, 'Bharathi Panchamoorthi', '6', '8489300945', '9843866571', 'bharathipanjamoorthi02@gmail.com', '2002-06-02', 23, '2', '2', 'Panjamoorthi', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'South Street, soorakkottai, Thanjavur', 'Saidapet', '2508050023', '1', '1', 'upload_files/candidate_tracker/49421070581_ImagetoPDF2025071909.03.42compress.pdf', NULL, '1', '2025-08-05', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performance is ok,but communication little bit not good.also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-08-05 09:55:10', 154, '2025-08-05 04:46:12', 0, NULL, 1),
(26259, 'Yogavardhan v', '6', '9047349561', '6384061937', 'yogavardhan2813@gmail.com', '2003-01-28', 22, '2', '2', 'Vengatachalam', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Padagacheri, valangaiman, Thiruvarur', 'Saidapet', '2508050024', '1', '1', 'upload_files/candidate_tracker/91549705404_Yogavardhanfinal11compress.pdf', NULL, '1', '2025-08-05', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-08-05 09:58:03', 154, '2025-08-05 04:55:07', 0, NULL, 1),
(26260, 'nithyasri kumar', '6', '7305578408', '8015912573', 'ainithya13@gmail.com', '2003-09-13', 21, '2', '2', 'kalaiarasi', 'housewife', 40000.00, 1, 21000.00, 28000.00, 'avadi', 'avadi', '2508050025', '1', '2', 'upload_files/candidate_tracker/37345182583_NithyaSriKResume3.pdf', NULL, '1', '2025-08-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-08-05 11:02:56', 1, '2025-08-05 11:06:58', 0, NULL, 1),
(26261, 'Divyasree U', '6', '9036003591', '', 'divyashreeu799100@gmail.com', '1997-07-24', 28, '3', '1', 'Santhosh KR', 'Agriculture', 10000.00, 1, 16000.00, 17000.00, 'Banglore', 'Banglore', '2508050026', '', '2', 'upload_files/candidate_tracker/38512201443_DivyasreeUResume11.pdf', NULL, '1', '2025-08-04', 0, '', '3', '59', '2025-08-04', 210000.00, '', '3', '2026-02-18', '2', 'Have exp in CAFS for 8 months no proper resignation termination mail given to the candidate,As referred again by the manager for the same role we have hired her for the position with no change in the salary part', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '2025-08-04', 1, '2025-08-05 11:55:05', 60, '2025-08-06 11:22:16', 0, NULL, 1),
(26262, 'Sandeep kumar poddar', '6', '9353707216', '7204512757', 'andeepkumarsandipkumar256@gmail.com', '2002-02-02', 23, '2', '2', 'pushpa', 'education', 15000.00, 1, 0.00, 20000.00, 'hebbal dasarahalli ambdker colony', 'hebbal dasarahalli anbdker colony', '2508050027', '1', '1', 'upload_files/candidate_tracker/54386298372_AdobeScan11Jul2025.pdf', NULL, '1', '2025-08-06', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Due to lack of  speech and communication so he is not selected', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55555', '5151', '1970-01-01', 1, '2025-08-05 01:05:20', 162, '2025-08-29 10:23:50', 0, NULL, 1),
(26263, '', '0', '9361918529', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508050028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-05 02:45:57', 0, NULL, 0, NULL, 1),
(26264, 'Amreen', '6', '9840162328', '9840946731', 'amreenak993@gmail.com', '2000-05-22', 25, '2', '1', 'akthar basha', 'house wife', 30000.00, 2, 17000.00, 22000.00, 'old Washermenpet', 'old washermenpet', '2508050029', '1', '2', 'upload_files/candidate_tracker/96236875623_AMREEN0.pdf', NULL, '1', '2025-08-06', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok, but not suitable for sales profile, some health issues there, reject the profile\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-08-05 06:14:36', 104, '2025-08-06 03:19:09', 0, NULL, 1),
(26265, 'LIVINGSTAN CAROL RAJAN R', '6', '7550397681', '', 'albertlivingstan@gmail.com', '2003-09-15', 21, '2', '2', 'RAJAN', 'Retired Police', 30000.00, 1, 0.00, 20000.00, 'SEVVAPET', 'SEVVAPET', '2508060001', '1', '1', 'upload_files/candidate_tracker/38369145131_LivingstanResume..pdf', NULL, '1', '2025-08-06', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', 'Totaly frehser, from thiruvallur but given 10 to 20 interviews english fear, can try once moved to giri raja, GD done by Jothiga', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2025-08-06 04:30:06', 154, '2025-08-06 02:41:11', 0, NULL, 1),
(26266, 'Arthik M', '2', '9943708818', '', 'arthiksk64@gmail.com', '2003-06-08', 22, '3', '2', 'Murugan', 'Software developer', 20000.00, 2, 0.00, 200000.00, 'Tenkasi', 'Tenkasi', '2508060002', '', '1', 'upload_files/candidate_tracker/93002710735_ArthikMdeveloper.pdf', NULL, '1', '2025-08-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-06 04:33:00', 154, '2025-08-06 10:18:31', 0, NULL, 1),
(26267, 'Kevin frankle', '31', '9790594240', '9655018182', 'kevinj.dev15@gmail.com', '2002-05-15', 23, '3', '2', 'John francis', 'Fresher', 50000.00, 1, 0.00, 15000.00, 'Coimbatore', 'Coimbatore', '2508060003', '', '1', 'upload_files/candidate_tracker/54548291320_KevinFrankleResume2025.pdf', NULL, '1', '2025-08-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-06 04:51:55', 154, '2025-08-06 10:39:01', 0, NULL, 1),
(26268, 'Siva M', '13', '7373314740', '', 'sivamurugan0012@gmail.com', '2002-01-07', 23, '2', '2', 'murugan', 'farmer', 30000.00, 2, 28750.00, 58000.00, 'madurai', 'madurai', '2508060004', '1', '2', 'upload_files/candidate_tracker/29564684212_SivaResume1.pdf', NULL, '1', '2025-08-08', 90, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-06 05:36:56', 154, '2025-08-08 11:07:21', 0, NULL, 1),
(26269, '', '0', '9940544988', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508060005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-06 05:39:44', 0, NULL, 0, NULL, 1),
(26270, 'Vaishnavi v', '6', '7338865303', '7339186911', 'vvaishnavi191522@gmail.com', '2002-04-15', 23, '2', '1', 'Athi sankar', 'Business', 2500000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2508060006', '49', '1', 'upload_files/candidate_tracker/61461773369_vaishnaviresume1.pdf', NULL, '1', '2025-08-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, communication good, 1yrs exp abroad, pls cross check sustainability, confirm the joining date and salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', 'Good Communicator and Speaks Boldly, but has a career gap and limited work experience in customer support in Qatar. married, husband doing business fishing transport. sustainalibity issue. arun sir talking second round, GD done by Jothiga.', '', '', '55645', '5151', '1970-01-01', 1, '2025-08-06 05:42:45', 154, '2025-08-06 03:03:45', 0, NULL, 1),
(26271, 'Divya sri .M', '6', '7530001251', '9003398954', 'divyasrimanimaran@gmail.com', '2002-12-12', 22, '3', '2', 'M.selvi', 'House wife', 12000.00, 2, 0.00, 20000.00, 'No.2 azhgammal street,old washermenpet chennai -21', 'No.2 azhgammal street,old washermenpet chennai -21', '2508060007', '', '1', 'upload_files/candidate_tracker/43345322827_DivyaSriM.pdf', NULL, '1', '2025-08-06', 0, '', '3', '59', '2025-08-19', 156000.00, '', '1', '1970-01-01', '2', 'Communication ok fresher for job have career gap need to train and check in 7days if ok then will continue with the job if not drop after 7 days', '5', '1', '1', '1', '8', '', '2', '2025-08-25', '2', '3', '', '', '', '', '55605', '55566', '2025-08-19', 1, '2025-08-06 05:46:41', 60, '2025-09-26 05:37:10', 0, NULL, 1),
(26272, 'R.Nowfil Ismail', '6', '8939398346', '7639488846', 'zmailnowfi@gmail.com', '2002-01-23', 23, '2', '2', 'Narkis Begam', 'House wife', 30000.00, 2, 0.00, 20000.00, '4/502 East Street irumeni Ramnathapuram', 'Ice House triplicane chennai', '2508060008', '62', '1', 'upload_files/candidate_tracker/94487352805_CV2023072123232187.pdf', NULL, '1', '2025-08-06', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not Suitable for Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', 'not Even opened his mouth for a single conversation, GD done by Jothiga.', '', '', '77778', '55566', '1970-01-01', 1, '2025-08-06 06:00:17', 154, '2025-08-06 02:45:44', 0, NULL, 1),
(26273, 'Kannan Mohanraj', '13', '6383300211', '', 'mail2kannan2504@gmail.com', '2004-04-25', 21, '2', '2', 'Mohanraj D', 'Vendor', 25000.00, 1, 0.00, 18000.00, 'No 8 , ramalingapuram,Avadi', 'Avadi , Chennai 600071', '2508060009', '1', '1', 'upload_files/candidate_tracker/47513498129_kannanresume1.pdf', NULL, '1', '2025-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-08-06 06:24:41', 1, '2025-08-06 06:31:59', 0, NULL, 1),
(26274, 'Sachin.m', '6', '9962360561', '', 'kjrss05k@gmail.com', '2004-09-01', 20, '2', '2', 'Mohan.G', 'Daily Wages', 20000.00, 4, 25000.00, 25000.00, 'Choolai', 'Choolai', '2508060010', '1', '2', 'upload_files/candidate_tracker/73123040930_sachinpdf1.pdf', NULL, '1', '2025-08-06', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok ,communication Average, experience in same domain, confirm the joining date xxamp salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', 'Had telesales experience good communication expectation high can try', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2025-08-06 07:02:24', 104, '2025-08-06 04:28:37', 0, NULL, 1),
(26275, 'karthikeyan s', '23', '8838604160', '', 'skarthikeyan2605@gmail.com', '2000-05-26', 25, '2', '2', 'subramanian', 'farmer', 15000.00, 3, 0.00, 300000.00, 'Trichy', 'Trichy', '2508060011', '1', '1', 'upload_files/candidate_tracker/79283604054_karthi.resume.pdf', NULL, '1', '2025-08-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-08-06 07:46:22', 1, '2025-08-06 10:29:32', 0, NULL, 1),
(26276, 'Afrin begum', '6', '6379939658', '7200147859', 'Afrin200320@gmail.com', '2003-09-20', 21, '2', '2', 'Syed akbar', 'Business', 30000.00, 3, 25000.00, 27000.00, 'Chennai', 'Chennai', '2508060012', '49', '2', 'upload_files/candidate_tracker/89324808609_AfrinBegumS.pdf', NULL, '2', '2025-08-06', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Had only minimum yrs of expereience high expectation, not suitable for insurance slaes', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-08-06 08:14:15', 154, '2025-08-06 03:41:48', 0, NULL, 1),
(26277, 'Golla Greeshma', '6', '6301606676', '7013314322', 'ggollagreeshma@gmail.com', '2002-08-12', 22, '2', '2', 'Golla Sham Prasad', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'Bangalore', 'Bangalore', '2508060013', '1', '1', 'upload_files/candidate_tracker/97158803370_downloadresume.pdf', NULL, '1', '2025-08-06', 0, '', '3', '59', '2025-08-07', 234000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for sales have own business plan can give a try and check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55671', '55555', '2025-08-07', 1, '2025-08-06 09:22:32', 60, '2025-08-07 09:40:22', 0, NULL, 1),
(26278, 'Sharmila Banu', '6', '9677206169', '7200147859', 'sharmilagani2003@gmail.com', '2003-10-14', 21, '2', '2', 'Ibrahim gani', 'Business', 25000.00, 2, 1.80, 2.50, 'CHENNAI', 'CHENNAI', '2508060014', '49', '2', 'upload_files/candidate_tracker/6758325676_SharmilaResumeUpdated.docx', NULL, '2', '2025-08-06', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not Suitable for Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-08-06 09:48:05', 154, '2025-08-06 03:39:58', 0, NULL, 1),
(26279, 'Sheran Shanmugham', '4', '9677793325', '', 'Sheranofficial27@gmail.com', '2004-11-27', 20, '2', '2', 'Shanthi (mom)', 'Stay at home', 30000.00, 2, 0.00, 17000.00, 'Pasupathikovil', 'Pasupathukovil', '2508060015', '1', '1', 'upload_files/candidate_tracker/64315590998_ResumeOfGSSHERAN.pdf', NULL, '1', '2025-08-07', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', '5151', '1970-01-01', 1, '2025-08-06 10:36:28', 154, '2025-08-07 10:00:37', 0, NULL, 1),
(26280, 'Eswari P', '6', '9751094775', '9176531018', 'selvibhuvana.p@gmail.com', '2003-03-10', 22, '2', '1', 'Jagadeshwaran', 'It', 50000.00, 1, 13000.00, 16000.00, '5/108, north street, thirumanickam, peraiyur taluk', '6/22,Vasantham Garden, Mullai Nagar,Vyasarpadi.', '2508060016', '1', '2', 'upload_files/candidate_tracker/69335916401_EswariResumeNew.doc', NULL, '1', '2025-08-07', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', 'candidate is ok 50-50, can try for our roles, pressure handling doubts', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2025-08-06 10:51:24', 154, '2025-08-07 12:00:16', 0, NULL, 1),
(26281, 'Madhuri Gayakude', '4', '9008156582', '7619336357', 'madhurigaykude@gmail.com', '2004-01-05', 21, '5', '2', 'Sangeeta Gayakude', 'Housewife', 15000.00, 3, 0.00, 20000.00, 'Bedakihal', 'Bedakihal', '2508060017', '', '1', 'upload_files/candidate_tracker/94933516084_MADHURIRESUME.pdf', NULL, '1', '2025-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-06 12:13:58', 1, '2025-08-06 12:36:13', 0, NULL, 1),
(26282, '', '0', '8248060037', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508060018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-06 12:16:11', 0, NULL, 0, NULL, 1),
(26283, 'B. Kalaivani', '6', '9345331861', '8248051791', 'bkalaivani661@gmail.com', '2005-08-01', 20, '2', '2', 'Valarmathi. B', 'House wife', 20000.00, 2, 0.00, 15000.00, 'No 68, 8 th street, k. M. Garden , chennai 600112', 'No 68, 8 th street, k. M. Garden , chennai 600112', '2508060019', '1', '1', 'upload_files/candidate_tracker/87090365841_DOC20250628WA0000.202508061800440000.pdf', NULL, '1', '2025-08-08', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not Suitable for Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-08-06 02:24:58', 154, '2025-08-08 04:42:20', 0, NULL, 1),
(26284, '', '0', '8248870225', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508060020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-06 04:35:22', 0, NULL, 0, NULL, 1),
(26285, '', '0', '6383559373', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508060021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-06 05:36:31', 0, NULL, 0, NULL, 1),
(26286, 'Shashidhar s', '6', '9916410965', '7676233144', 'shashi613286@gmail.com', '2000-12-28', 24, '2', '2', 'Pushpa m', 'Housewife', 100000.00, 1, 0.00, 250000.00, 'Bommasandra', 'Bommasabdra', '2508070001', '1', '1', 'upload_files/candidate_tracker/51101727227_info.docx', NULL, '1', '2025-08-08', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking high salary', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2025-08-07 03:17:02', 154, '2025-10-07 11:48:26', 0, NULL, 1),
(26287, 'Harish', '6', '9019773575', '9986388016', 'harishraghuram90@gmail.com', '2002-03-13', 23, '2', '2', 'Raghu ram', 'B.com', 3.50, 0, 15000.00, 22000.00, 'Kolar', 'Marathahalli', '2508070002', '1', '2', 'upload_files/candidate_tracker/64387576829_HarishResume.pdf', NULL, '1', '2025-08-07', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lack of communication no English', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2025-08-07 04:19:40', 162, '2025-09-24 11:44:46', 0, NULL, 1),
(26288, 'Naresh kumar N', '6', '9123560896', '9094097165', 'nnareshk031@gmail.com', '2004-01-05', 21, '2', '2', 'M.NAGARAJ', 'Daily wages', 14000.00, 2, 0.00, 15000.00, 'No.20/45 Andiappan street choolai chennai', 'No.20/45 Andiappan street choolai chennai', '2508070003', '27', '1', 'upload_files/candidate_tracker/25884391332_nareshkumarresume.pdf', NULL, '1', '2025-08-07', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', 'candidate is ok 50-50, fresher , little bit overactive, can give a try for our roles.', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-08-07 04:35:10', 154, '2025-08-07 12:37:51', 0, NULL, 1),
(26289, 'Ck Arun', '13', '9361275713', '6369979342', 'arunck0405@gmail.com', '2004-09-05', 20, '2', '2', 'Kanagaraj .c', 'Labour', 15000.00, 1, 0.00, 2.00, 'Karur', 'Chennai', '2508070004', '1', '1', 'upload_files/candidate_tracker/1672623431_Arunresumedocument.pdf', NULL, '1', '2025-08-07', 0, '', '3', '59', '2025-09-01', 120000.00, '', '1', '1970-01-01', '2', 'Selected for IT employement Contractual terms and conditions approved Node + Mysql', '2', '1', '2', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '55566', '5151', '2025-09-01', 1, '2025-08-07 05:02:37', 60, '2025-09-01 10:44:02', 0, NULL, 1),
(26290, 'Rajesh R', '6', '9025566178', '9710216263', 'rajeshr007178@gmail.com', '2003-09-27', 21, '2', '2', 'D.Raja', 'Auto driver', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2508070005', '27', '1', 'upload_files/candidate_tracker/10590295197_Rajesh007.pdf', NULL, '1', '2025-08-07', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telecalling. communication and slang not proper. need to open up a lot', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '5151', '1970-01-01', 1, '2025-08-07 05:03:49', 154, '2025-08-07 11:55:15', 0, NULL, 1),
(26291, 'A.dhivya', '4', '7904803768', '', 'adhivya261@gmail.com', '2001-06-04', 24, '2', '2', 'Guna sundhari', 'Telecaller', 10000.00, 1, 12000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2508070006', '1', '2', 'upload_files/candidate_tracker/15190665088_AResume366.pdf', NULL, '1', '2025-08-07', 20, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-08-07 05:56:37', 154, '2025-08-07 11:49:59', 0, NULL, 1),
(26292, 'Jeromemillioner', '6', '6381151183', '6380082320', 'jeromemilliner96@gmail.com', '2001-07-21', 24, '2', '2', 'Mother: juliet', '2', 60000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2508070007', '1', '1', 'upload_files/candidate_tracker/70869436769_DocScannerMay22025919PM1.pdf', NULL, '3', '2025-08-07', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'voice too low, need to open up a lot.. pressure handling doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', 'voice too low, need to open up a lot.. pressure handling doubts', 'H1028', '', '55864', '55566', '1970-01-01', 1, '2025-08-07 06:02:26', 154, '2025-08-07 12:52:42', 0, NULL, 1),
(26293, 'Preethi', '6', '9150377124', '6385548290', 'preethiprincesspj2002@gmail.com', '2002-09-01', 22, '2', '2', 'Ramesh', 'Farmer', 30000.00, 2, 0.00, 20000.00, 'Gingee, Villupuram district', 'Thousand light, Chennai', '2508070008', '1', '2', 'upload_files/candidate_tracker/97677099300_preethiresume1.pdf', NULL, '2', '2025-08-07', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'CA130', '5151', '1970-01-01', 1, '2025-08-07 06:03:53', 154, '2025-08-07 12:50:12', 0, NULL, 1),
(26294, 'Keerthana', '6', '6385110656', '9840656564', 'keerthanabalamurugan200573@gmail.com', '2005-03-07', 20, '2', '2', 'Parent', 'Fresher', 40.00, 2, 0.00, 15.00, 'No 39 indhira Gandhi Nagar 1st Street Chennai 39', 'No 39 indhira Gandhi Nagar 1st Street Chennai 39', '2508070009', '1', '1', 'upload_files/candidate_tracker/8071884593_Keerthanafinalresume.pdf', NULL, '1', '2025-08-13', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-08-07 06:05:51', 159, '2025-08-13 11:12:05', 0, NULL, 1),
(26295, 'goura suragimath', '6', '9036601367', '7996073879', 'figourasuragimath@gmail.com', '1998-01-04', 27, '3', '2', 'Jagadish', 'bussiness', 100000.00, 1, 400000.00, 500000.00, 'gadag', 'jp nagar', '2508070010', '', '2', 'upload_files/candidate_tracker/42593100786_GouraCV.pdf', NULL, '1', '2025-08-07', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High salary looking 40k', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-08-07 06:32:50', 162, '2025-09-24 11:54:17', 0, NULL, 1),
(26296, 'Gurunathan E', '6', '8056205613', '', 'guruyhp1595@gmail.com', '1995-10-15', 29, '2', '1', 'Rekha', 'Employee', 500000.00, 1, 24000.00, 30000.00, 'Chrompet', 'Chennai Chrompet', '2508070011', '49', '2', 'upload_files/candidate_tracker/56839386031_Gurunathan.pdf', NULL, '1', '2025-08-07', 15, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'having exp in only Field sales as a free lancer and phonepe. not fit for telecalling', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-08-07 07:05:54', 154, '2025-08-07 02:39:14', 0, NULL, 1),
(26297, 'A sheera banu Abdul Babu', '6', '8220679130', '9942215248', 'sheerababu07@gmail.com', '2004-03-07', 21, '2', '2', 'A.Abdul babu', 'Driver', 20000.00, 1, 0.00, 18000.00, 'Pudukkottai', 'Chennai', '2508070012', '1', '1', 'upload_files/candidate_tracker/80745149025_DocumentfromSheeruuu.pdf', NULL, '1', '2025-08-07', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not serious about going to job. major looking for IT only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-08-07 07:12:45', 154, '2025-08-07 02:36:05', 0, NULL, 1),
(26298, 'subiksha', '6', '7806947299', '', 'subiksha781@gmail.com', '2003-12-29', 21, '2', '2', 'dhamu', 'bsnl', 20000.00, 1, 0.00, 18000.00, 'pudukkottai', 'chennai', '2508070013', '1', '1', 'upload_files/candidate_tracker/83388896353_Resume19072025083327PM.pdf', NULL, '1', '2025-08-07', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for our roles. voice too low and looking for IT only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-08-07 07:12:55', 154, '2025-08-07 02:37:34', 0, NULL, 1),
(26299, '', '0', '8248176093', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508070014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-07 07:15:51', 0, NULL, 0, NULL, 1),
(26300, '', '0', '8056331752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508070015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-07 07:15:52', 0, NULL, 0, NULL, 1),
(26301, 'Sarathi', '6', '7806843674', '7397122539', 'sarathivf780@gmail.com', '2003-05-23', 22, '2', '2', 'Latha', 'House wife', 30000.00, 2, 18000.00, 22000.00, 'Padi', 'Padi', '2508070016', '1', '2', 'upload_files/candidate_tracker/30082068114_Sart.pdf', NULL, '1', '2025-08-08', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1030', '0', '0', '0', NULL, 1, '2025-08-07 07:18:18', 1, '2025-08-07 07:21:54', 0, NULL, 1),
(26302, 'Mohammad farhannagooraniba', '6', '9566100960', '9994797970', 'Ffaru@gmail.com', '2005-05-07', 20, '2', '2', 'Nagoor aniba', 'Work', 170000.00, 2, 0.00, 20000.00, '17km garden ¹st street pattalam Chennai', '17km garden ¹st street pattalam Chennai', '2508070017', '1', '1', 'upload_files/candidate_tracker/27649484219_faranResume.pdf', NULL, '1', '2025-08-08', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also sustainable is doubt', '5', '1', '', '4', '6', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-08-07 08:01:26', 154, '2025-08-08 04:43:40', 0, NULL, 1),
(26303, 'Padmini P', '6', '8015120928', '', 'priyaparamasivam028@gmail.com', '2004-03-09', 21, '2', '2', 'Paramasivam R', 'Retired Head Havildar', 20000.00, 3, 0.00, 12000.00, 'Chennai', 'Chennai', '2508070018', '1', '1', 'upload_files/candidate_tracker/22901853392_PADMINIP.pdf', NULL, '1', '2025-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'need to open up a lot seems very reserved much focus into non voice process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-08-07 12:11:42', 154, '2025-08-09 11:41:24', 0, NULL, 1),
(26304, 'Shashikumar R', '6', '8792226741', '6361895825', 'shashikumarr952@gmail.com', '1999-01-19', 26, '3', '2', 'Ravikumar PN', 'Supervisor', 50000.00, 1, 0.00, 18.00, 'Bangalore', 'Bangalore', '2508070019', '', '1', 'upload_files/candidate_tracker/98433711057_shashikumarResume3.pdf', NULL, '1', '2025-08-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-07 12:25:24', 1, '2025-08-07 12:35:12', 0, NULL, 1),
(26305, 'Pavithra.c', '6', '7845538143', '', 'pavithrachithirai256@gmail.com', '2004-06-25', 21, '2', '2', 'Deena', 'Tamil voice process', 1500.00, 1, 0.00, 1500.00, 'Vyasarpadi', 'Vyasarpadi', '2508080001', '1', '1', 'upload_files/candidate_tracker/97064766056_pavi1.pdf', NULL, '1', '2025-08-08', 0, '', '3', '59', '2025-08-11', 180000.00, '', '3', '2025-08-11', '2', 'Communication Ok reveiwed via group discussion need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1287', '5151', '2025-08-11', 1, '2025-08-08 04:29:06', 60, '2025-08-11 09:55:13', 0, NULL, 1),
(26306, 'Keerthana c.s', '4', '7305214070', '9176076943', 'keerthanac.s30@gmail.com', '2003-05-30', 22, '2', '2', 'srilekha', 'Bca', 30000.00, 1, 0.00, 22000.00, 'Perambur Chennai', 'Perambur', '2508080002', '1', '1', 'upload_files/candidate_tracker/9213344235_KEERTHANACSResume.pdf', NULL, '1', '2025-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', '0', '0', NULL, 1, '2025-08-08 04:57:38', 1, '2025-08-08 05:04:47', 0, NULL, 1),
(26307, 'Indhumathi S', '6', '7200351026', '', 'indiaindhu28@gmail.com', '2004-01-26', 21, '2', '2', 'S Shanthi', 'Nil', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2508080003', '1', '1', 'upload_files/candidate_tracker/83058140327_IndhumathiResume.pdf', NULL, '1', '2025-08-08', 0, '', '3', '59', '2025-08-11', 180000.00, '', '3', '2025-08-11', '2', 'Communication Ok fresher she is into sports weight lifting also doing MBA full time due to sports only for exmas she can appear can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '2025-08-11', 1, '2025-08-08 04:58:36', 60, '2025-08-11 09:56:41', 0, NULL, 1),
(26308, 'Chaitanya G R', '6', '9164232770', '8971724925', 'chaitanyagr1998@gmail.com', '1998-03-26', 27, '1', '2', 'Rudrappa G S', 'Farmer', 5000.00, 1, 28000.00, 30000.00, 'Varthur', 'Varthur', '2508080004', '', '2', 'upload_files/candidate_tracker/2098074353_ChaitanyaGR.docx', NULL, '1', '2025-08-08', 0, 'gayathri', '3', '59', '2025-08-11', 264000.00, '', '3', '2025-08-18', '2', 'Communication Ok Having medcial issues Bipolar disorder based on the manager approval we have given her the joining', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '2025-08-11', 1, '2025-08-08 05:26:02', 60, '2025-08-11 10:10:15', 0, NULL, 1),
(26309, 'S.Houdd peer baks rifaideen', '6', '7639897339', '7708430270', 'rifaideen9346@gmail.com', '2005-03-03', 20, '2', '2', 'M.k syed Ibrahim', 'Work', 120000.00, 2, 17000.00, 21000.00, '18/101achrappan st ch-1', '18/101achrappan st ch-1', '2508080005', '1', '2', 'upload_files/candidate_tracker/69900254638_RifaiResume.pdf.pdf', NULL, '1', '2025-08-08', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not Suitable for Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-08-08 05:40:34', 154, '2025-08-08 03:08:36', 0, NULL, 1),
(26310, 'Prathap a', '6', '6383739180', '', 'prathapm602@gmail.com', '2000-05-14', 25, '2', '1', 'ANANDAN A', 'Weldor', 20000.00, 0, 0.00, 20000.00, 'Avadi', 'Avadi', '2508080006', '1', '2', 'upload_files/candidate_tracker/47690709098_PRATHAPRESUME1.pdf', NULL, '1', '2025-08-08', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not Suitable for Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-08-08 05:48:17', 154, '2025-08-08 03:07:46', 0, NULL, 1),
(26311, '', '0', '9360069781', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508080007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-08 06:33:37', 0, NULL, 0, NULL, 1),
(26312, 'justine js', '13', '9361629122', '', 'justinjustin5145@gmail.com', '2004-10-11', 20, '3', '2', 'jayasingh', 'bus driver', 30000.00, 0, 0.00, 40000.00, 'chennai', 'chebnai', '2508080008', '', '1', 'upload_files/candidate_tracker/16700955797_JustineFullstackdeveloper.pdf', NULL, '1', '2025-08-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-08 06:54:29', 154, '2025-08-08 12:34:51', 0, NULL, 1),
(26313, 'SOUNDHARYA  R', '6', '8667677680', '9940415917', 'Soundharya.r.568@gmail.com', '1998-02-28', 27, '2', '2', 'Nil', 'Nil', 150000.00, 0, 18500.00, 18000.00, 'Tambaram', 'Saidapet', '2508080009', '1', '2', 'upload_files/candidate_tracker/78631034320_soucv.pdf', NULL, '1', '2025-08-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'getting married on 4Sept have exp but will have a  leave issues.once done with all her personal works let us try', '5', '1', '', '1', '1', '', '2', '2025-09-08', '2', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-08-08 06:56:15', 154, '2025-08-08 04:44:36', 0, NULL, 1),
(26314, 'RAKESH E', '6', '8940159902', '9500159902', 'rakeshsonu54321@gmail.com', '2004-10-25', 20, '2', '2', 'M.ELANGO', 'B.com', 12000.00, 0, 0.00, 18000.00, 'Chintadripet Chennai', 'Chintadripet Chennai', '2508080010', '1', '1', 'upload_files/candidate_tracker/59042295448_Rakeshresume1.pdf', NULL, '1', '2025-08-08', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is unfit for sales profile, sustainability issues, already he selected  4 companies but worked 3 to 4 days only,,,reject ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-08-08 07:23:31', 154, '2025-08-08 04:45:36', 0, NULL, 1),
(26315, 'Prabaharan S', '13', '8525954649', '', 'prabaharansathiyamoorthy@gmail.com', '2004-03-23', 21, '3', '2', 'Sathiyamoorthy S', 'Farmer', 10000.00, 0, 0.00, 15000.00, 'Thiruthuraipoondi', 'Chennai', '2508080011', '', '1', 'upload_files/candidate_tracker/93530411402_PrabaharanB.TechIT20256.7cgpa.pdf', NULL, '1', '2025-08-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-08 07:37:59', 154, '2025-08-08 01:25:14', 0, NULL, 1),
(26316, 'Salomi Oli Arasi C', '13', '9361176971', '', 'salomioliarasi526@gmail.com', '2004-01-26', 21, '3', '2', 'Christy raj kumar A', 'Interior Decorator', 50000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2508080012', '', '1', 'upload_files/candidate_tracker/33533908617_SALOMIUPDATEDRESUME.pdf', NULL, '1', '2025-08-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-08 09:21:07', 154, '2025-08-08 02:56:52', 0, NULL, 1),
(26317, 'M Vishal', '13', '9841526811', '6381068518', 'visvishal039@gmail.com', '2005-03-10', 20, '2', '2', 'A. Mani', 'Carpenter', 20000.00, 1, 0.00, 150000.00, 'Chennai', 'Chennai', '2508080013', '1', '1', 'upload_files/candidate_tracker/94278955268_VishalResumepdf.aicompressed.pdf', NULL, '1', '2025-08-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-08 11:10:50', 154, '2025-08-11 10:34:23', 0, NULL, 1),
(26318, 'vishwaa', '13', '7010568861', '', 'vishwahere586@gmail.com', '2004-04-22', 21, '2', '2', 'anbarasan', 'technician', 40000.00, 1, 0.00, 15000.00, 'kamaraj nagar vanniyar palayam cuddalore', 'cuddalore', '2508080014', '1', '1', 'upload_files/candidate_tracker/82164311688_VISHWAS...pdf', NULL, '1', '2025-08-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-08-08 11:50:32', 1, '2025-08-08 02:18:34', 0, NULL, 1),
(26319, 'Sujivinotha K S', '6', '7200882902', '7338802808', 'saivinotha444@gmail.com', '2004-07-29', 21, '2', '2', 'Kamaraj .S', 'Land mediator', 96000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2508080015', '1', '1', 'upload_files/candidate_tracker/10305535379_resumesuji.pdf', NULL, '1', '2025-08-13', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-08-08 01:13:32', 159, '2025-08-13 12:41:30', 0, NULL, 1),
(26320, 'Mohammed muddasir j', '6', '8667425100', '', 'mudasirmudas07@gmail.com', '2002-12-31', 22, '2', '2', 'Jeelani basha', 'Business', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2508090001', '1', '1', 'upload_files/candidate_tracker/39685413036_Muddasirresume.pdf', NULL, '1', '2025-08-09', 0, '', '3', '59', '2025-08-11', 198000.00, '', '3', '2025-08-22', '2', 'Communication Ok fresher open to learn insurance domain can give a try and check', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '2025-08-11', 1, '2025-08-09 12:30:21', 60, '2025-08-11 10:02:06', 0, NULL, 1),
(26321, 'DUGGASANI SAIKRUPA', '4', '9347954499', '', 'saikrupa1609@gmail.com', '2001-09-16', 23, '4', '2', 'Jayaramireddy', 'Business', 50000.00, 1, 20000.00, 25000.00, 'Nellore', 'Nungambakam', '2508090002', '', '2', 'upload_files/candidate_tracker/6170330544_SaiResumeUpdated.pdf', NULL, '1', '2025-08-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-09 05:58:52', 154, '2025-08-09 11:56:44', 0, NULL, 1),
(26322, 'A.Priyadharshini', '4', '6382572479', '', 'priyayadavvvvvv07@gmail.com', '2001-11-04', 23, '2', '2', 'Alwar', 'Clerk', 25000.00, 0, 21000.00, 23000.00, 'Washermenpet chennai', 'Washermenpet chennai', '2508090003', '1', '2', 'upload_files/candidate_tracker/73860895870_PriyadharshiniRESUME.pdf', NULL, '1', '2025-08-09', 0, '', '3', '59', '2025-08-12', 284400.00, '', '3', '2025-09-26', '2', 'Communication Ok have exp in telesales can give a try and check in our roles gaurav sir committed to go woth PF after 3 months based on performance', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55824', '55560', '2025-08-12', 1, '2025-08-09 06:02:51', 60, '2025-08-11 07:39:55', 0, NULL, 1),
(26323, 'Manoj kumar', '6', '8489882091', '8524869540', 'manojpah27@gmail.com', '2005-01-27', 20, '2', '2', 'Pushpam', 'Daily wages', 20000.00, 1, 0.00, 1.80, 'Ambattur', 'Ambattur', '2508090004', '1', '1', 'upload_files/candidate_tracker/21588111102_ManojKumarBCAResume.pdf', NULL, '2', '2025-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not open for sales communication average', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-08-09 06:23:16', 154, '2025-08-09 01:12:21', 0, NULL, 1),
(26324, 'Hemalatha G', '6', '8438678125', '', 'hemalathasgs25@gmail.com', '2002-02-25', 23, '2', '2', 'Gnaanasekar', 'Businesses', 30000.00, 0, 0.00, 20000.00, 'Koyambedu', 'Koyambedu', '2508090005', '62', '1', 'upload_files/candidate_tracker/16872450564_hemalatharesume11compressed.pdf', NULL, '1', '2025-08-09', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication and performance is good.5050 profile will check with her in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-08-09 06:39:45', 154, '2025-08-19 07:15:38', 0, NULL, 1),
(26325, 'SOMASUNDARAM', '13', '9940326663', '9498314732', 'somasundaram06029@gmail.com', '1996-09-17', 28, '5', '2', 'V.S.Raja', 'Teacher', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2508090006', '', '1', 'upload_files/candidate_tracker/14896388567_document.pdf', NULL, '1', '2025-08-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '4', '6', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-09 07:35:41', 154, '2025-08-09 02:37:33', 0, NULL, 1),
(26326, 'Dhareppa Hanamant Anjutagi', '4', '7899175394', '', 'dareppaanjutgi@gmail.com', '2003-06-06', 22, '5', '2', 'Hanamant', 'No', 1000.00, 0, 0.00, 20000.00, 'S/o Hanamant Anjutagi loni b.k bijapur Karnataka', 'Bijapur', '2508090007', '', '1', 'upload_files/candidate_tracker/59017781489_DHAREPPAHANAMANTANJUTAGIResume.pdf', NULL, '1', '2025-08-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '4', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-09 08:13:00', 1, '2025-08-21 05:17:25', 0, NULL, 1),
(26327, 'BOREDDY SRAVANI', '4', '9676912039', '', 'sravsboreddy2002@gmail.com', '2002-06-12', 23, '2', '2', 'sidda reddy', 'farmer', 20.00, 2, 0.00, 18.00, 'bangalore', 'btm', '2508090008', '49', '1', 'upload_files/candidate_tracker/60248534678_BOREDDYSRAVANI102.pdf', NULL, '1', '2025-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-09 08:18:23', 1, '2025-08-09 08:34:08', 0, NULL, 1),
(26328, 'vignesh', '6', '8925142317', '7022602542', 'smvignesh216@gmail.com', '2004-07-14', 21, '2', '2', 'gursamy v', 'electriction', 15000.00, 1, 0.00, 16.00, 'kilpauk', 'kilpauk', '2508090009', '1', '1', 'upload_files/candidate_tracker/55788121236_VigneshGresume.pdf', NULL, '1', '2025-08-09', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good.then his sustainable is doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2025-08-09 09:35:34', 154, '2025-08-11 04:02:40', 0, NULL, 1),
(26329, 'REHAN ALI F', '6', '6383120877', '9361625575', 'gtrehan008@gmail.com', '2004-11-04', 20, '2', '2', 'H FAYAZ ALI', 'AUTOMOBILE BUSINESS', 50000.00, 1, 0.00, 18000.00, 'Ayanavaram', 'CHENNAI', '2508090010', '1', '1', 'upload_files/candidate_tracker/20279300354_RehanAliRESUME.pdf', NULL, '3', '2025-08-09', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good.also his voice is scrolled , then sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2025-08-09 09:46:36', 154, '2025-08-11 04:02:55', 0, NULL, 1),
(26330, '', '0', '9025156541', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508090011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-09 10:25:49', 0, NULL, 0, NULL, 1),
(26331, 'Jasmine. A', '6', '9884381471', '', 'jasuamuljasu@gmail.com', '2005-07-02', 20, '2', '2', 'Amul', 'Railway', 25000.00, 2, 0.00, 15000.00, 'Ayanavaram Chennai', 'Ayanavaram', '2508090012', '1', '1', 'upload_files/candidate_tracker/8538010949_AdobeScan21Jul20251.pdf', NULL, '1', '2025-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Pronunciation issues group discussion rejected candidate\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-08-09 11:25:16', 154, '2025-08-11 02:46:44', 0, NULL, 1),
(26332, 'Abisha', '4', '9344102637', '9976846088', 'abisharabel@gmail.com', '2002-10-27', 22, '5', '2', 'Rabel savari muthu', 'Fitter', 600000.00, 1, 0.00, 16000.00, 'Trichyrappalli', 'Karapakkam chennai', '2508090013', '', '1', 'upload_files/candidate_tracker/52574147686_Abisharesume1.pdf', NULL, '1', '2025-08-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-09 04:26:54', 1, '2025-08-10 10:19:03', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26333, 'AARTHI P', '6', '8248277763', '9159922794', 'abipadmanathan@gmail.com', '2002-12-27', 22, '2', '2', 'Padmanaban', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Chennai', '2508100001', '1', '1', 'upload_files/candidate_tracker/4875250024_Resume.pdf', NULL, '1', '2025-08-11', 0, '', '3', '59', '2025-08-12', 180000.00, '', '3', '2025-08-16', '2', 'Communication Ok fresher need to train from sctrch open for learning can give a try for our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55645', '5151', '2025-08-12', 1, '2025-08-10 04:34:55', 60, '2025-08-11 06:00:27', 0, NULL, 1),
(26334, '', '0', '9952014036', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508110001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-11 02:39:10', 0, NULL, 0, NULL, 1),
(26335, 'Rahul', '13', '8072600915', '9003412644', 'rhlcharles2003@gmail.com', '2003-02-21', 22, '2', '2', 'R Balasubramanian', 'unemployed', 18000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2508110002', '1', '1', 'upload_files/candidate_tracker/86547927365_MyResume.pdf', NULL, '1', '2025-08-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-11 04:12:08', 154, '2025-08-11 10:00:47', 0, NULL, 1),
(26336, 'Rishi s', '13', '8072531832', '7094348952', 'rishisr0126g@gmail.com', '2004-05-27', 21, '2', '2', 'suresh k', 'farmer', 90000.00, 0, 0.00, 15000.00, 'pudukottai', 'chennai', '2508110003', '1', '1', 'upload_files/candidate_tracker/15082505417_RISHIResume.pdf', NULL, '1', '2025-09-13', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-11 05:24:05', 154, '2025-09-13 10:37:51', 0, NULL, 1),
(26337, 'Agilan', '31', '6379894397', '9080258009', 'agilanhdca@gmail.com', '2004-01-30', 21, '3', '2', 'Baskaran', 'Daily wages', 40000.00, 2, 0.00, 18000.00, 'Tiruvannamalai arni', 'Vadapalani', '2508110004', '', '1', 'upload_files/candidate_tracker/80619294935_CV2025081109361340.pdf', NULL, '1', '2025-08-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-11 05:56:33', 154, '2025-08-11 11:48:14', 0, NULL, 1),
(26338, 'Harish pandurangan', '31', '7010719864', '', 'harishbca2703@gmail.com', '2003-07-02', 22, '3', '2', 'Pandurangan', 'Farmer', 20000.00, 1, 0.00, 17000.00, 'Vadapalani', 'Vadapalani', '2508110005', '', '1', 'upload_files/candidate_tracker/80908699535_CV2025043011235439.pdf', NULL, '1', '2025-08-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-11 05:57:18', 154, '2025-08-11 11:49:22', 0, NULL, 1),
(26339, 'S j senthamizhan', '6', '8015671779', '9677226963', 'senthamizhan.sj.thamizhan@gmail.com', '2004-10-27', 20, '1', '2', 'P.sivanganam', 'Security', 16.00, 2, 0.00, 18.00, 'Redhills', 'Redhills', '2508110006', '', '1', 'upload_files/candidate_tracker/19583515674_CompressedMSenthamizhansjresume202508102159420000.pdf', NULL, '1', '2025-08-11', 0, 'C99137', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-11 06:17:56', 154, '2025-08-11 02:47:50', 0, NULL, 1),
(26340, 'Angelin S', '6', '9360916731', '9597224749', 'angelinangel0478@gmail.Com', '2004-08-30', 20, '2', '2', 'C. Sathilinga Pandi', 'Any other', 50000.00, 5, 15000.00, 20000.00, 'Tirunelveli', 'kandanchavadi,Chennai', '2508110007', '1', '2', 'upload_files/candidate_tracker/70607207208_Angelin1.pdf', NULL, '1', '2025-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles need to open up seems to be reserved very much will not sustain and handle our pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-11 06:22:06', 154, '2025-08-11 02:48:58', 0, NULL, 1),
(26341, 'bhuvaneshwari Selvam', '6', '9043878594', '8946047645', 'bhuvaneshwariselvam9904@gmail.com', '2004-09-09', 20, '2', '2', 'Selvam.k', 'Sculptor', 250000.00, 2, 0.00, 25000.00, 'Kolathur', 'Kolathur', '2508110008', '1', '1', 'upload_files/candidate_tracker/36749740663_CV2025073118094654.pdf', NULL, '1', '2025-08-11', 0, '', '3', '59', '2025-08-12', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher Can be trained in our roles and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55645', '5151', '2025-08-11', 1, '2025-08-11 07:03:47', 60, '2025-08-11 05:59:02', 0, NULL, 1),
(26342, 'S r Sanjey', '6', '8946016696', '9597469642', 'Sowmyaa19092008@gmail.com', '2003-08-15', 21, '2', '2', 'S.N.saravanan', 'Finance manager', 70000.00, 1, 0.00, 20000.00, 'No.42 Mahaveer Avenue kundrathur chennai - 69', 'Kundrathur,Chennai', '2508110009', '1', '1', 'upload_files/candidate_tracker/70715691262_resume.pdf', NULL, '1', '2025-08-11', 0, '', '3', '59', '2025-08-13', 204000.00, '', '5', '1970-01-01', '1', 'Communication Good very confident only thing is the distance can give a try and check for our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55645', '5151', '2025-08-12', 1, '2025-08-11 07:56:07', 60, '2025-08-12 03:22:28', 0, NULL, 1),
(26343, '', '0', '7305395205', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508110010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-11 12:45:04', 0, NULL, 0, NULL, 1),
(26344, '', '0', '7448908410', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508110011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-11 01:15:38', 0, NULL, 0, NULL, 1),
(26345, '', '0', '8610064892', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508110012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-11 01:43:00', 0, NULL, 0, NULL, 1),
(26346, 'vengatesh n', '13', '8220539169', '', 'vengatesh122003@gmail.com', '2003-12-10', 21, '2', '2', 'navaneethakannan', 'farmer', 10000.00, 1, 0.00, 25000.00, 'pallikaranai chennai', 'pallikaranai chennai', '2508120001', '1', '1', 'upload_files/candidate_tracker/20594303059_vengateshnresume.pdf', NULL, '1', '2025-08-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-12 01:44:20', 104, '2025-11-10 12:35:16', 0, NULL, 1),
(26347, '', '0', '8074438677', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508120002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-12 07:16:51', 0, NULL, 0, NULL, 1),
(26348, 'Abhishek', '6', '7411553533', '', 'abhishek.htr.32t@gmail.com', '2000-06-01', 25, '2', '1', 'Amith', 'Construction', 80000.00, 2, 28560.00, 30000.00, 'R h colony no 03', 'Kudlu gate', '2508120003', '1', '2', 'upload_files/candidate_tracker/46210750013_AbhishekResume111.pdf', NULL, '1', '2025-08-18', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55555', '5151', '1970-01-01', 1, '2025-08-12 07:18:13', 162, '2025-09-24 11:59:44', 0, NULL, 1),
(26349, 'Askar ali T', '23', '7358573301', '', 'askarali7358@gmail.com', '2004-03-16', 21, '3', '2', 'Thilaver basha S', 'BCA', 120000.00, 1, 0.00, 16000.00, 'No 23 30 Shivan Nagar 2nd Street', 'New washermenpet chennai', '2508120004', '', '1', 'upload_files/candidate_tracker/47216406346_askaraliresume.pdf', NULL, '1', '2025-08-12', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok 5050 for our roles can give a try and check in training but not sure as he cam along with his friends', '2', '1', '', '1', '8', '', '2', '2025-08-13', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-12 07:41:40', 154, '2025-08-19 07:10:25', 0, NULL, 1),
(26350, '', '0', '6382418348', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508120005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-12 07:42:19', 0, NULL, 0, NULL, 1),
(26351, 'Mubarak .C', '6', '9585199697', '', 'mubaraksonukutty@gmail.com', '2006-01-11', 19, '3', '2', 'Chan basha', 'Coolie', 15000.00, 4, 0.00, 20000.00, 'Villupuram', 'Villupuram', '2508120006', '', '1', 'upload_files/candidate_tracker/84245362697_MubarakResumeWithLatestPhoto.pdf2.pdf', NULL, '1', '2025-08-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain in our roles just worked for 3 months in the Collection but not mcuh comfort with that roles not suitable', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-12 07:43:14', 154, '2025-08-19 07:16:13', 0, NULL, 1),
(26352, '', '0', '8825179268', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508120007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-12 07:43:26', 0, NULL, 0, NULL, 1),
(26353, 'vamsi devi c s', '7', '7397298746', '', 'vamsi.srini1@gmail.com', '1998-10-10', 26, '3', '1', 'puru', 'sr exective', 30000.00, 2, 25000.00, 27000.00, 'chennai', 'chennai', '2508120008', '', '2', 'upload_files/candidate_tracker/86437550614_VamsiDeviCVUpdated.pdf', NULL, '1', '2025-08-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Final roudn rejected by gokul have exp in MF but multiple switches also career gap', '7', '1', '', '1', '8', '', '2', '1970-01-01', '4', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-12 09:42:45', 154, '2025-08-19 07:11:52', 0, NULL, 1),
(26354, 'dhanvanthry.p', '6', '9042077859', '8825836884', 'dpDhanvanthry@gmail.com', '2005-05-13', 20, '2', '2', 'kolanchi', 'Pharmacy', 30.00, 1, 0.00, 15000.00, 'chennai', 'chennai Ekkatuthangal', '2508130001', '1', '1', 'upload_files/candidate_tracker/91831993688_dpdhanvanthryresume.pdf', NULL, '1', '2025-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-13 05:12:40', 159, '2025-08-13 11:00:41', 0, NULL, 1),
(26355, 'Kamalakannan', '6', '8981782286', '9342605864', 'kannantamilini2@gmail.com', '2006-11-30', 18, '2', '2', 'Kasipandian', 'Plumber', 2000000.00, 0, 0.00, 17000.00, 'Thoothukudi', 'Thoothukudi', '2508130002', '1', '1', 'upload_files/candidate_tracker/40229946177_if4ityrft61.pdf', NULL, '1', '2025-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-13 05:27:11', 159, '2025-08-13 11:12:52', 0, NULL, 1),
(26356, 'dhesiya', '6', '8015438023', '', 'mdesiya009@gmail.com', '2004-02-24', 21, '3', '2', 'murugan', 'daily wages', 20000.00, 2, 0.00, 15000.00, 'thindivanam', 'thindivanam', '2508130003', '', '1', 'upload_files/candidate_tracker/57588252563_DesiyaResume.pdf', NULL, '1', '2025-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-08-13 05:30:05', 159, '2025-08-13 11:41:12', 0, NULL, 1),
(26357, 'Afrin Fathima A', '6', '7358155528', '9789099215', 'fathimaafrin756@gmail.com', '2010-08-13', 0, '2', '2', 'Ayub khan A (father)', 'Sales man', 14000.00, 1, 0.00, 15.00, '300,18th Street union carbide colonychennai 600118', '300,18th Street union carbide colonychennai 600118', '2508130004', '1', '1', 'upload_files/candidate_tracker/8834817516_afrinresume.docx', NULL, '1', '2025-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-08-13 05:38:41', 159, '2025-08-13 11:25:15', 0, NULL, 1),
(26358, 'Kaviya', '6', '8778875434', '', 'Kaviyadevi01245@gmail.com', '2004-07-15', 21, '1', '2', 'Siva', 'Businessman', 25000.00, 1, 0.00, 18000.00, '143,gangai amman Kovil Street, new nappalayam', '143,gangai amman Kovil Street, new napppalayam', '2508130005', '', '1', 'upload_files/candidate_tracker/95427507595_Kaviya.pdf', NULL, '1', '2025-08-13', 0, '12345', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-13 05:42:22', 159, '2025-08-13 11:50:22', 0, NULL, 1),
(26359, 'jayaprabhu', '6', '8939278468', '8098778422', 'suryamdl1105@gmail.com', '2004-05-11', 21, '2', '2', 'lingeswaran d', 'business', 35000.00, 1, 0.00, 1.70, 'chennai medavakkam', 'chennai', '2508130006', '1', '1', 'upload_files/candidate_tracker/16258677410_JAYAPRABHURESUME.pdf', NULL, '1', '2025-08-13', 0, '', '3', '59', '2025-08-18', 192000.00, '', '3', '2025-08-19', '1', 'Communication Ok fresher for our sales roles can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55732', '5151', '2025-08-18', 1, '2025-08-13 06:00:00', 60, '2025-08-17 11:13:30', 0, NULL, 1),
(26360, 'Vignesh', '6', '9944572899', '8778864174', 'vickyvvicky1432@gmail.com', '2002-05-03', 23, '2', '2', 'Nadarajan', 'Daily wages', 1.60, 2, 0.00, 1.80, 'Vellore', 'Medavakkam, Chennai', '2508130007', '1', '1', 'upload_files/candidate_tracker/57903928370_Vignesh.N.pdf', NULL, '1', '2025-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-08-13 06:00:19', 159, '2025-08-13 11:49:40', 0, NULL, 1),
(26361, 'M.jayashree', '6', '9176545591', '8939545591', 'jaishreekirthana@gmail.com', '2001-09-17', 23, '2', '2', 'K.murugan', 'retirement', 20.00, 0, 16.00, 18.00, 'Vettuvankeni', 'Vettuvankeni', '2508130008', '1', '2', 'upload_files/candidate_tracker/38447626830_Jayashreeprofessional1.pdf', NULL, '1', '2025-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-08-13 06:18:46', 159, '2025-08-13 12:25:32', 0, NULL, 1),
(26362, 'Gopinath V', '6', '6381407812', '8012008548', '131143gopi@gmail.com', '2003-03-14', 22, '2', '2', 'Manimegalai V', 'Daily wages', 25000.00, 0, 14000.00, 18000.00, 'Pudukottai', 'Thoraipakam', '2508130009', '1', '2', 'upload_files/candidate_tracker/65995291219_GOPINATHV.pdf', NULL, '1', '2025-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-08-13 06:19:21', 1, '2025-08-13 06:50:32', 0, NULL, 1),
(26363, 'JANA PRAVEEN IRWIN', '6', '8531817148', '9345489154', 'janapraveen7@gmail.com', '2002-03-05', 23, '2', '2', 'IRWIN M', 'CARPENTER', 30000.00, 0, 16000.00, 19000.00, 'Thanjavur', 'Arumbakkam', '2508130010', '1', '2', 'upload_files/candidate_tracker/54263339793_Janapraveen.Icompressed1.pdf', NULL, '1', '2025-08-13', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communicationa and performance is ok.aslo his core in iT ,but sustainable in sale is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-08-13 06:22:21', 154, '2025-08-13 04:35:20', 0, NULL, 1),
(26364, 'Mareeswari', '6', '9025148611', '9959601270', 'mareeswarimareeswari06@gmail.com', '2002-05-28', 23, '2', '2', 'Murugan', 'Cooli', 7000.00, 1, 0.00, 18.00, 'Tenkasi', 'Tenkasi', '2508130011', '1', '2', 'upload_files/candidate_tracker/79586671212_MareeswariM.pdf', NULL, '1', '2025-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-08-13 06:23:09', 159, '2025-08-13 12:09:46', 0, NULL, 1),
(26365, 'Yugeshwar', '5', '9994689746', '9789895160', 'Yugeshwar999@gmail.com', '2000-02-28', 25, '5', '1', 'Deepika', 'Global carrear consultant', 30000.00, 1, 32000.00, 4.50, 'Pallavaram', 'Pallavaram', '2508130012', '', '2', 'upload_files/candidate_tracker/36428651541_CV2025110921383618.pdf', NULL, '1', '2025-11-22', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2025-08-13 06:36:03', 104, '2025-11-22 03:07:55', 0, NULL, 1),
(26366, 'Lokesh V g', '6', '9843377718', '', 'Vlokeshraju12@gmail.com', '2002-12-16', 22, '2', '1', 'Father - Gajendran', 'Driver', 12000.00, 1, 0.00, 25000.00, 'Tiruttani', 'Tiruttani', '2508130013', '1', '1', 'upload_files/candidate_tracker/24464627100_attachment.pdf', NULL, '1', '2025-08-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-08-13 07:16:29', 1, '2025-08-13 09:07:30', 0, NULL, 1),
(26367, 'suresh', '6', '8825921926', '', 'sureshrock50904@gmail.com', '1997-08-08', 28, '2', '2', 'srinivasan', 'scan center worker', 120000.00, 1, 0.00, 14000.00, 'mylapore', 'chennai', '2508130014', '1', '1', 'upload_files/candidate_tracker/10286163480_SURESH1.pdf', NULL, '1', '2025-08-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-08-13 09:20:50', 1, '2025-08-13 09:41:00', 0, NULL, 1),
(26368, 'rohan n', '6', '7019980227', '9632480577', 'rohan8151184@gmail.com', '2003-11-22', 21, '1', '2', 'nagaraju m', 'farmer', 35000.00, 2, 16000.00, 20000.00, 'chikkahosahalli', 'anekal', '2508140001', '', '2', 'upload_files/candidate_tracker/16333810169_CV.docx', NULL, '1', '2025-08-14', 0, '55785', '3', '59', '2025-08-18', 240000.00, '', NULL, '2026-01-10', '1', 'Communication Ok fresher for our sales roles 5050 can give a try and check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '2025-08-18', 1, '2025-08-14 04:38:38', 162, '2025-09-17 12:38:59', 0, NULL, 1),
(26369, 'Vishali V', '4', '9003767510', '', 'Vishalivanitha2003@gmail.com', '2003-09-30', 21, '2', '2', 'Vanitha M', 'House wife', 10000.00, 0, 0.00, 15000.00, 'Thanjavur', '596, second floor, kuringi nagar ,new housing unit', '2508140002', '1', '1', 'upload_files/candidate_tracker/87983792310_VishaliVanithResume11.pdf', NULL, '1', '2025-08-14', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-08-14 05:21:02', 154, '2025-08-14 11:04:25', 0, NULL, 1),
(26370, 'C.karthikeyan', '6', '7358554320', '9940271479', 'Karthisekar2406@gmail.com', '1998-02-07', 27, '2', '2', 'C.chitra', 'No', 8000.00, 0, 17000.00, 20000.00, 'Guindy', 'Guindy', '2508140003', '1', '2', 'upload_files/candidate_tracker/73989781600_KarthikeyanResume.pdf', NULL, '1', '2025-08-14', 0, '', '1', '156', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55732', '5151', '1970-01-01', 1, '2025-08-14 05:21:40', 154, '2025-08-14 12:41:27', 0, NULL, 1),
(26371, '', '0', '7845280780', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508140004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-14 05:22:34', 0, NULL, 0, NULL, 1),
(26372, 'Balaji m', '4', '8124420478', '', 'siddharthbalaji8@gmail.com', '2003-08-14', 22, '2', '2', 'Mutharasi', 'Student', 80000.00, 1, 0.00, 20000.00, 'Mylapore', 'Mylapore', '2508140005', '1', '1', 'upload_files/candidate_tracker/99116312691_Balaji.MResume..pdf', NULL, '1', '2025-08-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', '0', '0', NULL, 1, '2025-08-14 05:22:52', 1, '2025-08-14 05:28:12', 0, NULL, 1),
(26373, 'ABU SUFYAN', '6', '7550397385', '7401157155', 'Sufyanabu14@gmail.com', '2001-01-31', 24, '2', '2', 'Mohamed sathakathulla', 'Own a Tea shop', 20000.00, 1, 0.00, 20000.00, 'ramanathapuram district.', 'Mannady chennai', '2508140006', '1', '1', 'upload_files/candidate_tracker/8706406765_CV202507111227347.pdf', NULL, '1', '2025-08-14', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2025-08-14 05:24:03', 154, '2025-08-14 01:21:05', 0, NULL, 1),
(26374, 'Jayajothi P', '6', '9043208694', '9025096369', 'jayajothijayajothi667@gmail.com', '2004-11-18', 20, '2', '2', 'Prakash', 'Door polish contractor', 40000.00, 1, 0.00, 15000.00, 'Koyambedu', 'Koyambedu', '2508140007', '1', '1', 'upload_files/candidate_tracker/7541795793_PDFGallery20250814103315.pdf', NULL, '1', '2025-08-14', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-08-14 06:24:34', 154, '2025-08-14 01:22:07', 0, NULL, 1),
(26375, 'Nivetha V', '6', '6369650955', '9843481452', 'Nivethavenkat1230@gmail.com', '2004-07-27', 21, '2', '2', 'Venkatraman', 'Farmer', 40000.00, 1, 0.00, 15000.00, 'Koyambedu', 'Koyambedu', '2508140008', '1', '1', 'upload_files/candidate_tracker/89650326515_nivethanewresume.pdf', NULL, '1', '2025-08-14', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-08-14 06:34:17', 154, '2025-08-14 01:23:01', 0, NULL, 1),
(26376, 'Gokul.. V', '6', '9003081023', '', 'Gokulkdmkdmgokul@gmail.com', '2002-03-13', 23, '2', '2', 'Varadhan', 'Sales', 10000.00, 2, 20000.00, 22000.00, 'Uthiramerur', 'Chindharipet', '2508140009', '1', '2', 'upload_files/candidate_tracker/70961076855_Gokul.VResume11668327851245GokulV1.docx', NULL, '1', '2025-08-14', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles will not handle our work pressure ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-14 07:31:23', 154, '2025-08-14 03:04:20', 0, NULL, 1),
(26377, 'n kamesh kumar', '6', '6382969376', '9361840436', 'nkameshkumae30@gmail.com', '2003-04-30', 22, '2', '2', 'n valli devi', 'nill', 15000.00, 1, 0.00, 20000.00, 'shenoy nagar', 'shenoy nagar', '2508140010', '1', '1', 'upload_files/candidate_tracker/51648511323_MyResume.pdf', NULL, '1', '2025-08-18', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability doubt will go for IT role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-08-14 08:07:25', 154, '2025-08-18 12:54:45', 0, NULL, 1),
(26378, 'Lavanya', '6', '9176481195', '9176481295', 'lavanyajp2003@gmail.com', '2003-03-04', 22, '3', '2', 'Lavanya', 'Tellecallar', 20000.00, 2, 16500.00, 18000.00, 'Chennai', 'Tondairpet', '2508140011', '', '2', 'upload_files/candidate_tracker/49380374326_a7bc4054199a4ccebf8548a6883e8450.pdf', NULL, '1', '2025-08-14', 1, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-08-14 09:17:03', 154, '2025-08-14 04:07:21', 0, NULL, 1),
(26379, '', '0', '8270073805', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508140012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-14 09:22:53', 0, NULL, 0, NULL, 1),
(26380, 'Ajay', '6', '8056093312', '9791123467', 'ajaypajay2929@gmail.com', '2005-07-29', 20, '2', '2', 'Pachaiyappan', 'Chennai', 20000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2508140013', '1', '1', 'upload_files/candidate_tracker/28324931733_downloadresume.pdf', NULL, '1', '2025-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-08-14 10:26:50', 1, '2025-08-15 11:18:47', 0, NULL, 1),
(26381, 'Vishali L', '6', '6369851369', '6374085612', 'vishalilvishalil398@gmail.com', '2000-12-10', 24, '2', '2', 'Loganathan G', 'Security', 25.00, 1, 17.00, 20.00, 'Pattabiram', 'Pattabiram', '2508140014', '1', '2', 'upload_files/candidate_tracker/4024239457_VishaliL.pdf', NULL, '1', '2025-08-19', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok , communication average, distance too long .,reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-08-14 10:53:36', 154, '2025-08-19 03:25:47', 0, NULL, 1),
(26382, 'Yogeswari', '6', '9940721945', '8122881945', 'em787856@gmail.com', '2005-03-04', 20, '2', '2', 'Elumalai', 'Electrician', 80000.00, 1, 0.00, 30000.00, 'Arni', 'Chennai', '2508140015', '1', '1', 'upload_files/candidate_tracker/16446913853_yogeshwari1.pdf', NULL, '1', '2025-08-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Avarage skill.  Once re locate confirm then joining it. Fresher. Will analysis 7 days training ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-08-14 02:52:24', 154, '2025-08-18 03:41:12', 0, NULL, 1),
(26383, '', '0', '9840691234', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508160001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-16 02:45:35', 0, NULL, 0, NULL, 1),
(26384, 'PRAVEEN KUMAR B', '13', '8754661074', '', 'ppb4975@gmail.com', '2004-05-29', 21, '2', '2', 'Valli', 'Daily wages', 6000.00, 1, 0.00, 400000.00, 'Tindivanam', 'Tindivanam', '2508160002', '1', '1', 'upload_files/candidate_tracker/30306755793_PRAVEENKUMARBWEBDEVELOPER2021202551.pdf', NULL, '1', '2025-08-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-16 05:13:28', 154, '2025-08-20 11:37:15', 0, NULL, 1),
(26385, 'Dhivyaramesh', '6', '9025793876', '', 'dhivyaramesh2110@gmail.com', '2001-10-21', 23, '2', '1', 'Kalaiyarasan', 'Designing engineer', 60000.00, 2, 14000.00, 20000.00, 'Ariyalur', 'Pallavaram', '2508160003', '1', '2', 'upload_files/candidate_tracker/94457828366_DhivyaK.pdf', NULL, '1', '2025-08-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have exp in same domain but no sustainability and not much communicative for our roles too sustainability doubts recently married and have some personal issues pertaining to this also salary exp is very high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-08-16 05:43:00', 154, '2025-08-16 12:47:20', 0, NULL, 1),
(26386, 'Pradeepa', '4', '9150171446', '7538896975', 'pradeepapkt19@gmail.com', '2002-06-15', 23, '2', '2', 'Pappaiyan', 'Retired govt employee', 36000.00, 0, 0.00, 15000.00, '24A, Thangavel nagar 2nd st, pattukkottai', 'Pattukkottai', '2508160004', '1', '1', 'upload_files/candidate_tracker/50627957269_PradeepaCVnew.pdf', NULL, '1', '2025-08-16', 0, '', '3', '59', '2025-08-20', 162000.00, '', '3', '2025-09-10', '2', 'Communication Ok fresher for our roles can give a try and check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-08-20', 1, '2025-08-16 06:02:44', 60, '2025-08-19 03:26:55', 0, NULL, 1),
(26387, '', '0', '7339120259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508160005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-16 06:12:18', 0, NULL, 0, NULL, 1),
(26388, 'G.harinee sri', '6', '9840691237', '9840561234', 'harineesri124@gmail.com', '2005-01-24', 20, '2', '2', 'P.Gnana prakash', 'Transport', 120000.00, 2, 0.00, 180000.00, '14/2 N.N.garden 5th line old washermenpet', '14/2N.N.garden 5th line old washermenpet', '2508160006', '1', '1', 'upload_files/candidate_tracker/18001688009_harineesri.docx', NULL, '1', '2025-08-16', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is little bit ok.but she is intrested in customer support', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-08-16 06:13:48', 154, '2025-08-16 01:19:50', 0, NULL, 1),
(26389, '', '0', '8680800388', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508160007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-16 06:34:27', 0, NULL, 0, NULL, 1),
(26390, 'ABITHA PANNEERSELVAM', '6', '9789217242', '9976418392', 'abitha1181@gmail.com', '2001-08-11', 24, '2', '2', 'Panneerselvam', 'Farmer', 6000.00, 2, 0.00, 18000.00, 'Kumbakonam', 'Chennai', '2508160008', '1', '2', 'upload_files/candidate_tracker/56535780010_ABITHARESUME45.pdf', NULL, '1', '2025-08-16', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good.also she did not perform well in the interview.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-08-16 06:42:39', 154, '2025-08-16 03:11:33', 0, NULL, 1),
(26391, 'Avanthiya thamaraiselvan', '6', '8925103114', '8608521180', 'avanthiya2001@gmail.com', '2001-03-14', 24, '2', '2', 'Thamarai selvan', 'Farmer', 6000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Chennai', '2508160009', '1', '1', 'upload_files/candidate_tracker/92413084730_CV202508131242595.pdf', NULL, '1', '2025-08-16', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-08-16 06:42:39', 154, '2025-08-16 02:33:23', 0, NULL, 1),
(26392, 'Anupriya', '6', '7639826313', '8754683256', 'anu038874@gmail.com', '2001-06-22', 24, '2', '2', 'R. Govindasamy', 'Farmer', 8000.00, 2, 16000.00, 18000.00, 'Kumbakonam', 'Chennai', '2508160010', '1', '2', 'upload_files/candidate_tracker/93718495996_IMG20250624175131.pdf', NULL, '1', '2025-08-16', 1, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.voice is very low and sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-08-16 06:46:55', 154, '2025-08-16 03:11:03', 0, NULL, 1),
(26393, '', '0', '9361498840', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508160011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-16 08:27:01', 0, NULL, 0, NULL, 1),
(26394, '', '0', '9345605731', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-16 12:41:57', 0, NULL, 0, NULL, 1),
(26395, '', '0', '9964769603', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508170001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-17 12:40:52', 0, NULL, 0, NULL, 1),
(26396, '', '0', '9345055183', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508170002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-17 12:58:05', 0, NULL, 0, NULL, 1),
(26397, 'Maria joseph S', '6', '6385312783', '8248799468', 'ajayjosa822@gmail.com', '2001-06-02', 24, '2', '2', 'Sebastian', 'Daily worker', 300000.00, 2, 0.00, 15000.00, 'Vettavalam, Thiruvannamalai-DT', 'Madhavaram', '2508170003', '1', '1', 'upload_files/candidate_tracker/53520147919_DOC20250704WA0054..pdf123.pdf', NULL, '1', '2025-08-19', 0, '', '3', '59', '2025-08-21', 192000.00, '', '3', '2025-09-04', '2', 'Communication Ok fresher for telesales need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55732', '5151', '2025-08-21', 1, '2025-08-17 02:47:31', 60, '2025-08-20 05:30:04', 0, NULL, 1),
(26398, 'Deepalakshmi', '6', '6383048323', '7868038046', 'deepalakshmib177@gmail.com', '2005-07-17', 20, '2', '2', 'B. Selvi', 'Daily wages', 72000.00, 1, 0.00, 30000.00, 'Kalambur, Arni.', 'Kalambur, Arni.', '2508170004', '1', '1', 'upload_files/candidate_tracker/92743970851_Deepalakshmi.BResume.pdf', NULL, '1', '2025-08-18', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Childish Girl wil not suitable for us', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-08-17 03:39:59', 154, '2025-08-18 02:43:08', 0, NULL, 1),
(26399, 'Bakya Lakshmi', '6', '9344190283', '9840797178', 'bakya183@gmail.com', '2003-12-16', 21, '3', '2', 'Kalaiselvi', 'Daily wages', 15000.00, 1, 12000.00, 20000.00, 'Otteri', 'Otteri', '2508180001', '', '2', 'upload_files/candidate_tracker/80586878322_BAKYALAKSHMI.pdf', NULL, '1', '2025-08-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-18 03:51:54', 154, '2025-08-18 12:56:01', 0, NULL, 1),
(26400, 'Nithishkumar', '4', '7548855645', '', 'nithishtrp96@gmail.com', '2004-08-23', 20, '2', '2', 'Kannadhasan', 'Police', 300000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2508180002', '1', '1', 'upload_files/candidate_tracker/54575327239_nithishkumar.pdf', NULL, '1', '2025-08-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not performing well', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-08-18 04:25:55', 154, '2025-08-18 10:04:15', 0, NULL, 1),
(26401, 'Sangeethapriya K', '4', '9962927503', '', 'sangeethapriya725414@gmail.com', '2000-09-14', 24, '2', '2', 'Selvamathi K', 'Working', 13000.00, 0, 22000.00, 25000.00, 'Chennai', 'Chennai', '2508180003', '1', '2', 'upload_files/candidate_tracker/80102970711_newnewnew.pdf', NULL, '1', '2025-08-18', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55824', '55560', '1970-01-01', 1, '2025-08-18 04:46:26', 154, '2025-08-18 12:03:25', 0, NULL, 1),
(26402, 'Tamilselvam', '4', '8778687821', '', 'tamilashokmail@gmail.com', '2003-08-09', 22, '2', '2', 'Ashok', 'Carpenter', 15000.00, 1, 12000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2508180004', '1', '2', 'upload_files/candidate_tracker/32457324635_Tamil.pdf', NULL, '1', '2025-08-18', 20, '', '3', '59', '2025-08-22', 168000.00, '', '5', '1970-01-01', '1', 'communication Ok Have exp in Shirram for few months 5050 for our role can give atry and check', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-08-22', 1, '2025-08-18 04:49:09', 60, '2025-08-21 06:29:15', 0, NULL, 1),
(26403, '', '0', '9094771720', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508180005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-18 04:51:13', 0, NULL, 0, NULL, 1),
(26404, 'Rahim Lal K R', '6', '9361563846', '8220994663', 'rahimlalkr@gmail.com', '2001-02-09', 24, '2', '2', 'Prema', 'House maker', 200000.00, 2, 0.00, 16000.00, 'Chennai,valasaravakkam', 'Chennai,valasaravakkam,600087', '2508180006', '1', '2', 'upload_files/candidate_tracker/88628375710_RahimlalResume2023.pdf', NULL, '1', '2025-08-18', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok for sales field. he interested in cini field so not suitable for sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-08-18 05:01:45', 154, '2025-08-18 12:21:34', 0, NULL, 1),
(26405, 'Rasika', '6', '9943918091', '6382240935', 'rasigasathiyamoorthy@gmail.com', '2005-06-07', 20, '2', '2', 'Sathiyamoorthy', 'Welder', 20000.00, 2, 16000.00, 18000.00, '2/23,west street kattalicheri,mayiladuthirai', '2/20,kamban street, Ramana Nagar, perambur', '2508180007', '1', '2', 'upload_files/candidate_tracker/24088987936_RasikaSathiyamoorththiResume202506140902480000.pdf', NULL, '1', '2025-08-19', 0, '', '3', '59', '2025-08-25', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for our roles need to check in training and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '2025-08-25', 1, '2025-08-18 05:08:42', 60, '2025-08-23 04:46:20', 0, NULL, 1),
(26406, 'Yoshma jeeva jothi Y', '6', '7845061884', '9092485709', 'jeevajothiyoshma@gmail.com', '2005-07-04', 20, '2', '2', 'Yohanandan', 'Farmer', 78000.00, 2, 0.00, 30000.00, 'Arni', 'Arni', '2508180008', '1', '1', 'upload_files/candidate_tracker/1437840361_YoshmaResume.pdf', NULL, '1', '2025-08-18', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication too low Will not Suitable for Sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-08-18 05:26:39', 154, '2025-08-18 02:40:39', 0, NULL, 1),
(26407, 'Nanthish Kumar G', '13', '7708302734', '', 'nanthishkumar04@gmail.com', '2001-01-03', 24, '2', '2', 'Ganesh kumar M', 'Fisherman', 20000.00, 3, 0.00, 25000.00, 'Chennai', 'Chennai', '2508180009', '1', '1', 'upload_files/candidate_tracker/63049781123_NanthishKumarGResume.pdf', NULL, '1', '2025-08-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-18 05:59:09', 154, '2025-08-18 11:52:25', 0, NULL, 1),
(26408, 'Rubiya N', '6', '7299329309', '8610595193', 'nrubythomas@gmail.com', '2002-12-02', 22, '2', '2', 'Nobel thomas', 'Superviser (hotel management)', 20000.00, 1, 13000.00, 18000.00, 'No:43,3rd cross St pallavaram chennai -43', 'No:43,3rd cross St pallavaram chennai -43', '2508180010', '1', '2', 'upload_files/candidate_tracker/12666009374_rubiyaresume.pdf', NULL, '1', '2025-08-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-18 06:08:15', 154, '2025-08-18 02:47:51', 0, NULL, 1),
(26409, 'Ranjini', '6', '7305973554', '8939605460', 'Ranjinir952@gmail.com', '2003-03-18', 22, '2', '1', 'M.Rajendran', 'Wíñdoor work', 10000.00, 1, 13000.00, 18000.00, '5/?5 bajanai Kovil Street Ramapuram', '5/?5 bajanai Kovil Street Ramapuram', '2508180011', '1', '2', 'upload_files/candidate_tracker/28277155900_ranjiniresume.pdf', NULL, '1', '2025-08-18', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-18 06:09:28', 154, '2025-08-18 02:48:39', 0, NULL, 1),
(26410, 'GURU PRASAD V', '13', '7200706298', '7305610514', 'guru26042004@gmail.com', '2004-04-26', 21, '3', '2', 'Viswanathan G', 'Tea shop', 70000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2508180012', '', '1', 'upload_files/candidate_tracker/26199271562_GURURESUME.pdf', NULL, '1', '2025-08-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-18 06:11:09', 154, '2025-08-18 12:19:39', 0, NULL, 1),
(26411, 'V.Malini', '4', '8760529984', '', 'malinivedhaiyan@gmail.com', '2010-08-18', 0, '2', '2', 'G.Vedhaiyan', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Muthupet Thiruvarur(DT)', 'Thanjavur', '2508180013', '1', '1', 'upload_files/candidate_tracker/46886292253_V.MALINIRESUME.docx', NULL, '1', '2025-08-18', 0, '', '3', '59', '2025-08-19', 168000.00, '', '3', '2025-09-30', '2', 'Communication Ok fresher for our telesales open to relocate too long distance need to check in training', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-08-19', 1, '2025-08-18 06:27:35', 60, '2025-08-18 06:16:02', 0, NULL, 1),
(26412, 'logeshwaran j', '6', '8870970935', '', 'jlogesh43@gmail.com', '2005-04-11', 20, '2', '2', 'jaisankar', 'mason', 18000.00, 1, 0.00, 16000.00, 'trichy', 'Chennai', '2508180014', '1', '1', 'upload_files/candidate_tracker/89236396965_logeshresume.pdf', NULL, '1', '2025-08-18', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not Suitable for Sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-08-18 06:41:15', 154, '2025-08-18 02:39:35', 0, NULL, 1),
(26413, '', '0', '9384936096', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508180015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-18 06:45:28', 0, NULL, 0, NULL, 1),
(26414, 'Madheswaran', '6', '9629143159', '', 'sathyasumathi16@gmail.com', '2004-04-29', 21, '2', '2', 'Sumathi', 'Tailor', 20000.00, 1, 18000.00, 25000.00, 'Tirupur', 'CHENNAI', '2508180016', '1', '2', 'upload_files/candidate_tracker/22112367256_Madheswaran.S.pdf', NULL, '1', '2025-08-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-08-18 07:32:50', 154, '2025-08-18 03:39:33', 0, NULL, 1),
(26415, 'Zakir hasan b', '6', '9363162357', '', 'zakir94.hasan@gmail.com', '1999-08-06', 26, '2', '2', 'Basheer', 'B.com', 50000.00, 2, 420000.00, 420000.00, 'Royapettah, Chennai', 'Royapettah, chennai', '2508180017', '1', '2', 'upload_files/candidate_tracker/76883694338_ZakirhasanB2.pdf11.pdf', NULL, '1', '2025-08-19', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2025-08-18 08:26:29', 154, '2025-08-19 11:11:12', 0, NULL, 1),
(26416, 'Karthikeyan B', '6', '7200212348', '', 'karthikeyan43636@gmail.com', '2005-04-04', 20, '2', '2', 'Balaraman', 'Travels', 50000.00, 2, 22000.00, 28000.00, 'Saidapet', 'Saidapet', '2508180018', '1', '2', 'upload_files/candidate_tracker/41237413682_Karthik202508181516330000.pdf', NULL, '1', '2025-08-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-08-18 09:36:01', 154, '2025-08-18 04:13:55', 0, NULL, 1),
(26417, 'gopi m', '6', '8428244878', '', 'gopicrezyboy46@gmail.com', '2005-05-13', 20, '2', '2', 'Vanitha', 'House wife', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2508180019', '1', '1', 'upload_files/candidate_tracker/3108827585_Gopiresume.pdf', NULL, '1', '2025-08-18', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2025-08-18 09:36:05', 154, '2025-08-18 04:18:57', 0, NULL, 1),
(26418, 'Jaganathan P', '13', '9944665825', '', 'jaganathan.1808@gmail.com', '2005-08-18', 20, '2', '2', 'Parasuraman', 'Weaver', 25000.00, 1, 0.00, 2.00, 'Kanchipuram', 'Kanchipuram', '2508180020', '1', '1', 'upload_files/candidate_tracker/93062800860_JaganathansResume.pdf', NULL, '1', '2025-08-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-08-18 10:06:25', 1, '2025-08-18 10:14:43', 0, NULL, 1),
(26419, 'Hariharan', '31', '9566839455', '', 'ronaldofanboy77777@gmail.com', '2004-03-10', 21, '2', '2', 'Krishnan M (Father)', 'ELECTRICIAN', 25000.00, 0, 0.00, 15000.00, 'Nagercoil', 'Chennai', '2508180021', '1', '1', 'upload_files/candidate_tracker/51865833155_HariharanKS.pdf', NULL, '1', '2025-08-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-18 11:04:17', 159, '2025-08-25 11:58:02', 0, NULL, 1),
(26420, 'Praveen.J', '2', '9360585253', '7530093093', 'praveen.aeropilot@gmail.com', '2003-11-19', 21, '2', '2', 'jayaprakash', 'agriculture', 18000.00, 1, 0.00, 200000.00, 'madurai', 'madurai', '2508180022', '1', '1', 'upload_files/candidate_tracker/63716224773_PraveenResume.pdf', NULL, '1', '2025-08-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-08-18 11:25:11', 1, '2025-08-18 11:34:05', 0, NULL, 1),
(26421, 'Savita Sunil Desai', '6', '6362279842', '9356599728', 'savitamanaganvi@gmail.com', '2000-06-09', 25, '2', '1', 'Sunil Basagonda Desai', 'Salaried', 15000.00, 0, 15000.00, 20000.00, 'Bengaluru', 'Bengaluru', '2508180023', '1', '2', 'upload_files/candidate_tracker/69675373110_SavitaDesaiFresherResume.pdf', NULL, '1', '2025-11-18', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of communication ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2025-08-18 12:13:21', 162, '2025-11-19 09:40:37', 0, NULL, 1),
(26422, 'Nikkhath fathima.v', '6', '9360317311', '1245780000', 'ar5211579@gmail.com', '2005-01-31', 20, '2', '2', 'N.vaseeruddin & s.raziya suthana', 'B.sc physics', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2508180024', '1', '1', 'upload_files/candidate_tracker/62654131969_nikkiresume1.docx', NULL, '1', '2025-08-19', 0, '', '3', '59', '2025-08-21', 180000.00, '', '3', '2025-11-11', '1', 'Communication Ok Fresher need to train and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1287', '5151', '2025-08-21', 1, '2025-08-18 12:17:51', 60, '2025-08-20 05:31:16', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26423, 'D Preethi', '6', '8610770374', '', 'preethidhanalakshmi07@gmail.com', '2000-06-07', 25, '2', '2', 'Dhanalakshmi M', 'Xerox office', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2508180025', '1', '1', 'upload_files/candidate_tracker/50581580622_Preethi.pdf', NULL, '1', '2025-08-19', 0, '', '3', '59', '2025-08-25', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1287', '5151', '2025-08-25', 1, '2025-08-18 12:24:09', 60, '2025-08-23 04:45:00', 0, NULL, 1),
(26424, 'Mownitha', '6', '8825422380', '7299552765', 'mownithakirubakaran@gmail.com', '2005-04-23', 20, '2', '2', 'Kirubakaran', 'Building contractor', 40000.00, 3, 0.00, 20000.00, 'Vellore', 'Velachery Chennai', '2508180026', '1', '1', 'upload_files/candidate_tracker/27192960385_Mownitha1.pdf', NULL, '1', '2025-08-20', 0, '', '3', '59', '2025-08-25', 180000.00, '', '3', '2025-08-29', '1', 'Communication ok fresher fr telesales need to relocate from vellore need to check in training and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '2025-08-25', 1, '2025-08-18 12:35:58', 60, '2025-08-23 04:48:09', 0, NULL, 1),
(26425, '', '0', '9945833059', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508180027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-18 01:25:04', 0, NULL, 0, NULL, 1),
(26426, 'Dhanushkumar G', '23', '8754258424', '', 'dhanushkumar7887@gmail.com', '2004-01-03', 21, '2', '2', 'Gopi A', 'Farmer', 50000.00, 2, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2508180028', '1', '1', 'upload_files/candidate_tracker/56675173351_DResume1.pdf', NULL, '1', '2025-08-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-18 01:32:49', 154, '2025-08-20 10:51:50', 0, NULL, 1),
(26427, 'mohammed rahamathulla basha', '6', '8825795957', '9566216663', 'rahamathullahpsy2019@gmail.com', '2001-04-09', 24, '2', '2', 'rahimmunisa begum', 'business', 800000.00, 1, 18000.00, 250000.00, 'aminjikarai chennai', 'perambur chennai', '2508180029', '1', '2', 'upload_files/candidate_tracker/31035992336_MOHAMMEDRESUME1.pdf', NULL, '1', '2025-08-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-08-18 01:43:18', 154, '2025-08-19 01:09:20', 0, NULL, 1),
(26428, 'Kirthika sri M', '6', '7550220905', '9789967389', 'kirthikachandra9205@gmail.com', '2005-02-09', 20, '2', '2', 'S. Muthu & M. Chandra Kumari', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Old washermenpet, Chennai', 'Old washermenpet, chennai', '2508180030', '1', '1', 'upload_files/candidate_tracker/80538803559_kirthiresume1.pdf', NULL, '1', '2025-08-19', 0, '', '1', '156', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55732', '5151', '1970-01-01', 1, '2025-08-18 07:22:18', 154, '2025-08-19 01:25:30', 0, NULL, 1),
(26429, 'SENTHAMIZHBHARATHI M', '6', '9360480617', '9791606676', 'msenthamizhbharathi@gmail.com', '1999-06-10', 26, '1', '2', 'Poongodi', 'Housekeeping', 10000.00, 1, 15000.00, 20000.00, 'Villupuram', 'Chennai', '2508190001', '', '2', 'upload_files/candidate_tracker/4735343299_Senthamizhbharathim11.pdf', NULL, '1', '2025-08-19', 0, '66649', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not ok for sales field. exp but communication not good, product knowledge not good reject', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-08-19 04:51:15', 154, '2025-08-19 03:40:50', 0, NULL, 1),
(26430, '', '0', '9360477106', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508190002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-19 05:11:17', 0, NULL, 0, NULL, 1),
(26431, 'Pavithra Raja', '4', '7558136229', '9600262546', 'atpavithrar2003@gmail.com', '2003-01-23', 22, '2', '2', 'Raja. G', 'Agriculture', 25000.00, 1, 0.00, 15000.00, 'Papanasam, Thanjavur -614203', 'Papanasam, Thanjavur -614203', '2508190003', '1', '1', 'upload_files/candidate_tracker/35704053088_PavithraRajaResume1.pdf', NULL, '1', '2025-08-19', 0, '', '2', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile completed mba...fresher father farmer joined family...30km travel from home....she ok with every thing and highly job need...expected 13 to 15k...have laptop...imeediate joining.....but have no maturity...speaked will dont have understanding in the interview....two times cried bcoz of family pressure....family expected to go to job.....need to speak arun sir and need a feedback', '1', '1', '', '4', '5', '', '2', '2025-08-21', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-08-19 05:25:35', 154, '2025-08-19 11:07:04', 0, NULL, 1),
(26432, '', '0', '9345448401', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-19 05:51:17', 0, NULL, 0, NULL, 1),
(26433, 'bavadharini', '6', '8056176726', '9940493835', 'bavabavadharani26@gmail.com', '2004-08-26', 20, '1', '2', 'amudhavalli', 'housewife', 100000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2508190005', '', '1', 'upload_files/candidate_tracker/43420668740_BlackandWhiteBasicCleanResume.pdf.pdf', NULL, '1', '2025-08-19', 0, 'CAFSUSR01117', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not ok for sales profile, communication not good, lack of confident reject the profile', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-08-19 06:10:12', 154, '2025-08-19 01:21:45', 0, NULL, 1),
(26434, 'akshaya', '6', '9940493835', '8056176726', 'akshayagaja05@gmail.com', '2004-12-05', 20, '1', '2', 'gajendran', 'car driver', 100000.00, 1, 0.00, 20000.00, 'new kamaraj nagar perambur chennai', 'veera savarka st ramana nagar perambur chenn', '2508190006', '', '1', 'upload_files/candidate_tracker/21820010515_resumeaks.pdf', NULL, '1', '2025-08-19', 0, 'CAFSUSR01117', '3', '59', '2025-08-21', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok Fresher for our sales roles will check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2025-08-21', 1, '2025-08-19 06:10:51', 60, '2025-08-20 05:32:33', 0, NULL, 1),
(26435, 'Kasim Sheriff', '13', '9677105171', '', 'kasimsheriff007@gmail.com', '2004-10-26', 20, '2', '2', 'Noor Mohamed Hussain', 'Security Officer', 25000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2508190007', '1', '1', 'upload_files/candidate_tracker/12484426952_KasimSheriffHResume.pdf11.pdf', NULL, '2', '2025-08-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-08-19 06:33:06', 1, '2025-08-19 11:46:48', 0, NULL, 1),
(26436, 'Vigneshwari.p', '6', '7395947692', '', 'raniswetha820@gmail.com', '2003-10-14', 21, '3', '2', 'Selvi.m', 'Daily', 35000.00, 3, 15000.00, 18000.00, 'Purasaiwakkam', 'Purswallkam', '2508190008', '', '2', 'upload_files/candidate_tracker/89208863471_vicky.pdf', NULL, '1', '2025-08-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-19 06:36:38', 154, '2025-08-19 03:37:17', 0, NULL, 1),
(26437, 'Esha.S', '6', '9345789796', '', 'eshas2905@gmail.com', '2004-05-29', 21, '3', '2', 'S.Sakthivel', 'Daily wages', 40000.00, 2, 0.00, 18000.00, 'Thiruvottyur', 'Thiruvottyur', '2508190009', '', '2', 'upload_files/candidate_tracker/12253348276_Esha.pdf', NULL, '1', '2025-08-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-19 06:36:51', 154, '2025-08-19 03:38:02', 0, NULL, 1),
(26438, 'P Vimala', '5', '9363577394', '', 'divi022712@gmail.com', '2002-01-27', 23, '2', '2', 'Palani K', 'Driver', 45000.00, 1, 28000.00, 33000.00, 'No1/76Gajapathy Street,Shenoy Nagar, Chennai-30', 'No1/76Gajapathy Street,Shenoy Nagar, Chennai -30', '2508190010', '1', '2', 'upload_files/candidate_tracker/47473217473_Resume17082025055902pm.pdf', NULL, '1', '2025-08-19', 0, '', '3', '59', '2025-08-21', 375000.00, '', '3', '2025-08-22', '2', 'Communication Ok this is 3rd time we are giving her a chance 1st position hold from our end 2nd she didnt join  due to family issues now let us check in final chance', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55656', '55557', '2025-08-21', 1, '2025-08-19 06:38:55', 60, '2025-08-20 05:34:13', 0, NULL, 1),
(26439, 'Surya', '6', '9551248473', '9962283483', 'Suryaamudha312@gmail.com', '1999-02-01', 26, '2', '2', 'N Ravi', 'False celling', 21000.00, 1, 20000.00, 25000.00, 'Anna nagar', 'Maduravoyal', '2508190011', '1', '2', 'upload_files/candidate_tracker/98455925670_suryacv6.docx', NULL, '1', '2025-08-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-19 07:14:14', 154, '2025-08-19 02:44:07', 0, NULL, 1),
(26440, 'Monaravi', '6', '8270525316', '', 'carolinmona304@gmail.com', '2003-10-22', 21, '3', '2', 'Banu', 'Mother', 14000.00, 2, 20000.00, 18000.00, 'Chennai', 'Chennai', '2508190012', '', '2', 'upload_files/candidate_tracker/63301108969_MonaCV.doc', NULL, '1', '2025-08-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-19 07:20:18', 154, '2025-08-19 03:39:07', 0, NULL, 1),
(26441, 'Mohamed kaif abdul kasim', '13', '8778117440', '', 'Mohamedkaif2603@gmail.com', '2004-03-26', 21, '2', '2', 'Nabeena beevi', 'House wife', 5000.00, 2, 0.00, 30000.00, 'Chennai', 'Chennai', '2508190013', '1', '1', 'upload_files/candidate_tracker/66996889910_ResumeKaifFE.pdf', NULL, '1', '2025-08-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-19 07:22:34', 154, '2025-08-19 02:47:51', 0, NULL, 1),
(26442, 'K Hariram', '6', '9344079407', '', 'harir8452@gmail.com', '2003-08-24', 21, '2', '2', 'Kanagaraj M', 'Ramco cement pvt ltd company', 18000.00, 0, 0.00, 15000.00, '17, Elango Salai Rd, Subbarayan Nagar, Teynampet', 'Chennai', '2508190014', '1', '1', 'upload_files/candidate_tracker/44464497026_HariramBcomca.pdf', NULL, '1', '2025-08-20', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication slang is different and interested in IT also and have experience in vizza for 7 days only and relieved due to some reasons. Sustainability doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55882', '55566', '1970-01-01', 1, '2025-08-19 09:14:42', 154, '2025-08-20 01:26:33', 0, NULL, 1),
(26443, '', '0', '9934409407', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508190015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-19 09:16:05', 0, NULL, 0, NULL, 1),
(26444, 'Jayavarman V', '13', '9345311192', '', 'jayavarman0703@gmail.com', '2004-03-07', 21, '2', '2', 'Parent', 'Business', 100000.00, 2, 0.00, 2.50, 'Chennai', 'Chennai', '2508190016', '1', '1', 'upload_files/candidate_tracker/14200976350_jayavarmanresume123.pdf', NULL, '1', '2025-08-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-19 10:03:46', 154, '2025-08-21 12:22:14', 0, NULL, 1),
(26445, 'Chandhiyasri S', '6', '8667486869', '9941706564', 'Schandhiyasri@gmail.com', '2005-03-11', 20, '2', '2', 'J.suresh', 'Auto driver', 20000.00, 1, 0.00, 17000.00, 'Korukkupet', 'Korukkupet', '2508190017', '1', '1', 'upload_files/candidate_tracker/3506058918_ChandhiyaSri.S.pdf', NULL, '1', '2025-08-20', 0, '', '3', '59', '2025-08-21', 180000.00, '', '3', '2025-10-01', '2', 'Communication Ok have exp in credit card for 3 months very long back can check in training and confirm open to learn will check and confirm in trainig', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '2025-08-21', 1, '2025-08-19 11:22:53', 60, '2025-08-20 05:35:39', 0, NULL, 1),
(26446, 'MohamedThahseen s', '13', '8056340240', '8524874003', 'mdthahseen13@gmail.com', '2004-10-13', 20, '2', '2', 'Seiku Abdul Kader', 'Driver', 7000.00, 1, 0.00, 15000.00, 'Mayiladuthurai', 'Chennai', '2508190018', '1', '1', 'upload_files/candidate_tracker/6528910698_CAREEROBJECTIVE3.docx', NULL, '1', '2025-08-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-19 12:10:00', 154, '2025-08-22 10:04:55', 0, NULL, 1),
(26447, 'sharath B', '6', '8618092817', '', 'sharath07.b@gmail.com', '1989-07-06', 36, '2', '2', 'Bharath', 'software engineer', 35000.00, 1, 0.00, 25000.00, 'sarjapur', 'sarjapur', '2508190019', '1', '2', 'upload_files/candidate_tracker/47844941591_NewSharathBResume1.pdf', NULL, '1', '2026-03-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '1', '1970-01-01', '1', '3', '', '', 'H1031', '', '', '', '1970-01-01', 1, '2025-08-19 12:51:47', 162, '2026-03-07 11:38:59', 0, NULL, 1),
(26448, 'Dhanikash Manivasakan', '13', '7448673286', '9597004292', 'dhanikashm42@gmail.com', '2002-08-14', 23, '2', '2', 'Manivasakan P', 'Bussiness', 38000.00, 2, 0.00, 2000.00, 'Chennai', 'Thanjavur', '2508190020', '1', '1', 'upload_files/candidate_tracker/97603566767_resume.docx', NULL, '1', '2025-08-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-08-19 01:35:36', 1, '2025-08-19 03:21:10', 0, NULL, 1),
(26449, '', '0', '9663455648', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508190021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-19 01:36:27', 0, NULL, 0, NULL, 1),
(26450, 'Sachin k', '6', '6361016882', '7483527585', 'ssachink4659@gmail.com', '2002-12-01', 22, '3', '2', 'Gowri', 'Btech', 12000.00, 1, 0.00, 22.00, 'Bengaluru', 'Bengaluru', '2508190022', '', '1', 'upload_files/candidate_tracker/18957438743_DOC20250625WA0000..pdf', NULL, '1', '2025-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-19 01:45:14', 1, '2025-08-19 01:49:06', 0, NULL, 1),
(26451, 'Ansar Alee s', '13', '8072325842', '9500786010', 'ansaralee2205a@gmail.com', '2002-05-22', 23, '2', '2', 'syed abdul rahman', 'working', 20000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2508190023', '1', '1', 'upload_files/candidate_tracker/6795595524_AnsarCV.pdf', NULL, '1', '2025-08-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-19 05:58:05', 154, '2025-08-20 02:47:32', 0, NULL, 1),
(26452, 'S.Aarthi Rebekhal', '4', '8220404404', '', 'aarthirebekhal@gmail.com', '2004-04-02', 21, '2', '2', 'M.savari nathan', 'Electrician', 720000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2508200001', '1', '1', 'upload_files/candidate_tracker/19177650151_AARTHIRESUME1.pdf', NULL, '1', '2025-08-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not performing well', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', '5151', '1970-01-01', 1, '2025-08-20 04:17:14', 154, '2025-08-20 10:00:37', 0, NULL, 1),
(26453, 'Mohamed arshath aaha', '6', '6385744924', '7092187484', 'arshathali4000@gmail.com', '2003-11-30', 21, '2', '2', 'Mumtaj begam', 'Telecalling', 25000.00, 2, 0.00, 17000.00, 'Chennai ,porur', 'Porur', '2508200002', '1', '1', 'upload_files/candidate_tracker/39326080438_S.MOHAMEDARSHATHAAHACV.pdf.pdf', NULL, '1', '2025-08-20', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suit for our roles... very attitude... sustainability doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-08-20 05:05:35', 154, '2025-08-20 02:39:39', 0, NULL, 1),
(26454, 'Nithish M', '13', '9629317691', '', 'nithishm139@gmail.com', '2002-09-18', 22, '3', '2', 'Geetha', 'lab technician', 30000.00, 1, 0.00, 2000.00, 'virudhachalam', 'virudhachalam', '2508200003', '', '1', 'upload_files/candidate_tracker/54820282299_Cv.pdf', NULL, '1', '2025-08-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-08-20 06:28:16', 154, '2025-08-20 12:14:45', 0, NULL, 1),
(26455, 'Naveen kumar', '34', '9578428701', '', 'naveenrajendran47@gmail.com', '2002-09-05', 22, '2', '2', 'Rajendran', 'Farmer', 10000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2508200004', '1', '1', 'upload_files/candidate_tracker/59018928477_NaveenkumarResume.pdf', NULL, '1', '2025-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1008', '0', '0', '0', NULL, 1, '2025-08-20 08:02:16', 1, '2025-08-20 08:11:19', 0, NULL, 1),
(26456, '', '0', '9025671032', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508200005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-20 08:46:31', 0, NULL, 0, NULL, 1),
(26457, '', '0', '9019874366', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508200006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-20 09:14:55', 0, NULL, 0, NULL, 1),
(26458, 'Fouziya Farzeen', '5', '6374314072', '', 'fouziyafarzu@gmail.com', '1999-09-28', 25, '2', '1', 'Fazal', 'Business', 3.00, 1, 25000.00, 26000.00, 'Purasaiwalkam', 'Purasaiwalkam', '2508200007', '1', '2', 'upload_files/candidate_tracker/79777831561_BlueandWhiteCleanProfessionalA4Resume202508070010320000.pdf', NULL, '1', '2025-08-21', 15, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2025-08-20 09:55:21', 154, '2025-08-21 12:57:44', 0, NULL, 1),
(26459, 'Lavanya D', '25', '9886953517', '6361194949', 'sonulav1694@gmail.com', '1994-03-16', 31, '5', '2', 'N Dayanand', 'Real estate', 20000.00, 1, 0.00, 25000.00, 'Bangalore', 'Banglore', '2508200008', '', '2', 'upload_files/candidate_tracker/15107558869_LavanyaResume1.pdf', NULL, '1', '2025-08-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-20 10:02:46', 1, '2025-08-20 10:09:08', 0, NULL, 1),
(26460, '', '0', '7871615132', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-20 10:07:26', 0, NULL, 0, NULL, 1),
(26461, 'Bharathi.S', '6', '9150134483', '9566274483', 'sekarbharathi036@gmail.com', '2003-05-17', 22, '2', '2', 'Sekar', 'Paniter', 96000.00, 3, 17000.00, 15000.00, 'No: 55 Appasamy street chetpet Chennai 600031', 'Same as permanent address', '2508200010', '1', '2', 'upload_files/candidate_tracker/43176611924_BharathiSekar1.pdf', NULL, '1', '2025-08-21', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2025-08-20 11:42:27', 154, '2025-08-21 01:24:55', 0, NULL, 1),
(26462, '', '0', '9177066566', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508200011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-20 02:10:18', 0, NULL, 0, NULL, 1),
(26463, 'Sandhiya', '6', '8838547228', '8428969307', 'sandhiyasambandan78@gmail.com', '2005-07-27', 20, '2', '2', 'S.Jayamala', 'Housewife', 10000.00, 2, 0.00, 18000.00, 'No 3 b pumping station street Royapuram', 'No 3 b pumping station street Royapuram', '2508200012', '1', '1', 'upload_files/candidate_tracker/51412595778_sanoriginalpdf.pdf', NULL, '1', '2025-08-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-20 02:39:46', 154, '2025-08-21 01:31:06', 0, NULL, 1),
(26464, 'Vignesh', '6', '6381912844', '', 'vignesh.sivaji24@gmail.com', '2003-06-29', 22, '1', '2', 'Sivaji. B', 'Purchase merchandiser', 40000.00, 0, 0.00, 200000.00, 'Madhavaram, Chennai', 'Madhavaram, Chennai', '2508210001', '', '1', 'upload_files/candidate_tracker/56146771262_VigneshResume.202504251036520000.pdf', NULL, '1', '2025-08-21', 0, '55692', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate not suitable for sales, 2yrs carrier gab, communication not good, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-08-21 05:05:58', 154, '2025-08-21 12:07:45', 0, NULL, 1),
(26465, 'Kalirajan Samuthirakani', '13', '9942769300', '', 'skalirajans@gmail.com', '2004-01-15', 21, '2', '2', 'Samuthirakani', 'Tailor', 4000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2508210002', '1', '1', 'upload_files/candidate_tracker/75879851903_RESUME5.pdf', NULL, '1', '2025-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-08-21 05:11:52', 1, '2025-08-21 05:26:51', 0, NULL, 1),
(26466, 'Harish.c', '6', '6369642557', '', 'hariharan44533@gmail.com', '2001-10-10', 23, '2', '2', 'K.charles', 'Saloon', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2508210003', '1', '1', 'upload_files/candidate_tracker/50083379804_MyResume1.pdf', NULL, '1', '2025-08-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-08-21 05:25:49', 154, '2025-08-21 11:12:20', 0, NULL, 1),
(26467, 'Durga Ganesan', '6', '8015500608', '8610134294', 'sendmailtodurga@gmail.comi', '2003-08-08', 22, '2', '2', 'Ganesan', 'Former', 15000.00, 1, 13000.00, 18000.00, 'Karaikudi,Sivaganga', 'Porur , Chennai', '2508210004', '1', '2', 'upload_files/candidate_tracker/31229384704_resume.pdf', NULL, '1', '2025-08-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-08-21 05:35:14', 154, '2025-08-21 01:07:21', 0, NULL, 1),
(26468, 'R M ATCHAYA', '4', '7904513647', '', 'atchayarm06@gmail.com', '2004-03-15', 21, '2', '2', 'R Raja Manickam', 'Oil business', 25000.00, 2, 0.00, 12000.00, 'Thathojiyappa santhu kondirajapalayam', 'Thathojiyappa santhu kondirajapalayam', '2508210005', '1', '1', 'upload_files/candidate_tracker/39409693772_downloadresume6.pdf', NULL, '1', '2025-08-21', 0, '', '3', '59', '2025-08-25', 156000.00, '', '3', '2025-08-29', '2', 'Communication Ok fresher for telesales need to chec k in training and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-08-25', 1, '2025-08-21 05:35:20', 60, '2025-08-23 04:49:24', 0, NULL, 1),
(26469, 'a  umapathi', '6', '9110217184', '', 'uy87900400@gmail.com', '2000-02-12', 25, '2', '2', 'narasimhulu', 'sugarfactr', 40000.00, 1, 25000.00, 25000.00, 'udupi garden btm  second stage bangalore', 'Udupi Garden Btm  Second Stage Bangalore', '2508210006', '1', '2', '0', NULL, '1', '2025-08-25', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'lack of knowledge and communication . not  suitable for sales job', '5', '1', '', '', '', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', 'I1077', '55555', '1970-01-01', 1, '2025-08-21 06:03:19', 162, '2025-08-28 10:45:34', 0, NULL, 1),
(26470, '', '0', '8838139985', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508210007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-21 06:20:32', 0, NULL, 0, NULL, 1),
(26471, 'Hema C', '4', '6364155518', '9113937566', 'hemacchandrus@gmail.com', '2003-08-26', 21, '5', '2', 'Chandru', 'Working', 15000.00, 2, 24000.00, 27000.00, 'JP Nagar', 'Bangalore', '2508210008', '', '2', 'upload_files/candidate_tracker/65603032515_HEMAC1.pdf', NULL, '3', '2025-08-23', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-21 07:00:04', 1, '2025-08-21 07:04:13', 0, NULL, 1),
(26472, 'Cicilia mary.s', '6', '8807652485', '7339092376', 'marysoosainathan@gmail.com', '2002-06-05', 23, '2', '1', 'Soosainathan (dad)', 'Security', 1.50, 1, 0.00, 15000.00, 'Redhills', 'Mannadi', '2508210009', '1', '1', 'upload_files/candidate_tracker/77863906318_ciciliaResume1724761755886CiciliaMary.pdf', NULL, '1', '2025-08-22', 0, '', '3', '59', '2025-08-25', 180000.00, '', '4', '2025-09-03', '2', 'Communication good fresher but married divorced having kid family need is there open to learn but not sure on sustainability in consideration to her commitments', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '2025-08-25', 1, '2025-08-21 07:01:33', 60, '2025-08-23 04:57:37', 0, NULL, 1),
(26473, 'Kishore.s', '6', '9360208822', '9942420156', 'sksathes801@gmail.com', '2003-05-05', 22, '2', '2', 'Sivanathan-selvi', 'Agriculture', 300000.00, 1, 0.00, 18000.00, 'Namakkal', 'Namakkal', '2508210010', '1', '1', 'upload_files/candidate_tracker/77582697340_Kishoreresume.pdf202508192325530000.pdf', NULL, '3', '2025-08-21', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2025-08-21 07:57:48', 154, '2025-08-21 03:10:59', 0, NULL, 1),
(26474, 'vadde aparna', '33', '6309784953', '9676407075', 'vaddeaparna21@gmail.com', '2001-08-23', 23, '3', '2', 'vekataramulu', 'bpharm', 50000.00, 2, 0.00, 16000.00, 'andhra pradesh', 'jp nagar', '2508210011', '', '1', 'upload_files/candidate_tracker/73153913739_V.Aparna.pdf', NULL, '1', '2025-08-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-21 08:57:23', 1, '2025-08-21 09:03:47', 0, NULL, 1),
(26475, 'Sangeeta Narayan Naik', '6', '9741378020', '', 'naiks7360@gmail.com', '1997-10-12', 27, '2', '1', 'Sunil', 'Salaried', 40000.00, 3, 0.00, 28000.00, 'Btm 4th stage', 'Btm 4th stage', '2508210012', '1', '2', 'upload_files/candidate_tracker/50160209145_SangeetaResume1.pdf', NULL, '1', '2025-08-25', 0, '', '3', '59', '2025-09-04', 276000.00, '', '5', '1970-01-01', '2', 'Communication Ok have a gap for more than an year need to check in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '2025-09-04', 1, '2025-08-21 09:00:16', 60, '2025-09-03 07:44:32', 0, NULL, 1),
(26476, '', '0', '9741378920', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508210013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-21 09:12:19', 0, NULL, 0, NULL, 1),
(26477, 'Lakshmi.S', '4', '8951251712', '7349401977', 'lacchulacchu52@gmail.com', '2000-06-10', 25, '4', '2', 'Siddappa', 'Gardener', 30000.00, 2, 0.00, 18000.00, 'Banglore', 'Banglore', '2508210014', '', '1', 'upload_files/candidate_tracker/57760356748_Lakshmi.S2.pdf', NULL, '1', '2025-08-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-21 10:13:09', 1, '2025-08-21 10:34:16', 0, NULL, 1),
(26478, 'Madhur Krishna Moger', '6', '6364450205', '', 'madhuramoger1997@gmail.com', '1997-05-15', 28, '2', '1', 'Nagaraj', 'Salaried', 50000.00, 3, 0.00, 25000.00, 'Hertar heble Bhatkal', 'No 31 3rd floor vijayanagar', '2508210015', '1', '2', 'upload_files/candidate_tracker/75498210175_MadhuaMogerResume.pdf', NULL, '1', '2025-08-25', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sELECTED FOR DM ASHFAQ TEAM SUGGESTED CTC 22K', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2025-08-21 11:17:40', 162, '2025-09-24 12:00:33', 0, NULL, 1),
(26479, 'gEETHA S', '5', '9597209559', '', 'Gsasi958@gmail.com', '2002-07-27', 23, '2', '2', 'Manimegalai', 'Leather Factory', 30000.00, 2, 25000.00, 30000.00, 'Ranipet', 'Thiruvallur', '2508220001', '1', '2', 'upload_files/candidate_tracker/83054362773_Resume26072025105250am.pdf', NULL, '1', '2025-08-23', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for RM role ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55656', '55557', '1970-01-01', 1, '2025-08-22 04:48:52', 154, '2025-08-23 02:39:43', 0, NULL, 1),
(26480, 'Gowtham.S', '6', '9342561386', '', 'senthilgowtham350@gmail.com', '2004-02-05', 21, '2', '2', 'Senthil Kumar.s', 'Coolie', 25000.00, 1, 0.00, 18.00, 'Arakkonam', 'Arakkonam', '2508220002', '1', '1', 'upload_files/candidate_tracker/58246661759_GowthamResume.pdf', NULL, '1', '2025-08-22', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-08-22 04:52:47', 154, '2025-08-22 02:37:10', 0, NULL, 1),
(26481, 'Santhosh Kumar', '4', '9500881936', '8220244542', 'vijayannasanthoshkumar9500@gmail.com', '2003-06-01', 22, '2', '2', 'Shanmugam.m', 'Milk merchant', 20000.00, 1, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2508220003', '1', '1', 'upload_files/candidate_tracker/50932392647_CV2025060513243624.pdf', NULL, '1', '2025-08-22', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-08-22 04:55:31', 159, '2025-08-22 11:55:38', 0, NULL, 1),
(26482, 'Mariselvam S', '6', '9342563728', '8778264037', 'mariselvam0121@gmail.com', '1999-06-01', 26, '2', '1', 'Jeyajothi M', 'Design engineer', 25000.00, 0, 0.00, 20000.00, 'Sivakasi', 'Chennai', '2508220004', '57', '1', 'upload_files/candidate_tracker/27235077872_SelfDeclarationForm.pdf', NULL, '1', '2025-08-22', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-08-22 05:04:55', 154, '2025-08-23 02:55:27', 0, NULL, 1),
(26483, 'sunil t', '22', '6374930110', '', 'suniltamilselvan14@gmail.com', '2002-02-14', 23, '2', '2', 'brother arul agathesh', 'graphic designer', 30000.00, 1, 0.00, 240000.00, 'chidambaram', 'saligramam', '2508220005', '1', '1', 'upload_files/candidate_tracker/18869160759_SUNILRESUME1.pdf', NULL, '1', '2025-08-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-08-22 05:15:09', 154, '2025-08-23 02:36:17', 0, NULL, 1),
(26484, '', '0', '9342562386', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508220006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-22 05:17:49', 0, NULL, 0, NULL, 1),
(26485, 'divya tharshine', '6', '9789956381', '', 'divyatharshine000@gmail.com', '2002-10-05', 22, '2', '2', 'maran', 'fisher man', 15.00, 20, 0.00, 3.00, 'thiruvanmiyur', 'thiruvanmiyur', '2508220007', '1', '1', 'upload_files/candidate_tracker/90605700676_DivyaaResume.pdf', NULL, '3', '2025-08-23', 0, '', '3', '59', '2025-08-25', 204000.00, '', '3', '2025-09-02', '2', 'Communication Good have few months exp in hathway huge personal issues out of family staying with friend need to check n training should not come with personal issues to the working environment let us check and  confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55645', '5151', '2025-08-25', 1, '2025-08-22 05:32:40', 60, '2025-08-23 04:59:52', 0, NULL, 1),
(26486, 'S Keerthana', '6', '9360657882', '9710151563', 'kkeerthu249@gmail.com', '2004-06-21', 0, '2', '2', 'Stephen', 'Helper', 18000.00, 1, 0.00, 16000.00, 'Velachery', 'Velachery', '2508220008', '1', '1', 'upload_files/candidate_tracker/61910943691_CV2025052906044514.pdf', NULL, '1', '2025-08-22', 0, '', '3', '59', '2025-08-25', 187200.00, '', '3', '2025-09-03', '2', 'Communication Ok 5050 for our roles 3 months with friend in star health stated food poison as reasons and sustainability too doubts a lot let us check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-08-25', 1, '2025-08-22 05:38:54', 60, '2025-08-23 04:53:25', 0, NULL, 1),
(26487, 'badru farzana', '6', '6379386937', '', 'farsanajesima@gmail.com', '2001-05-25', 24, '2', '2', 'jesima', 'home maker', 30000.00, 0, 16517.00, 18000.00, 'old washermanpet', 'old washermanpet', '2508220009', '1', '2', 'upload_files/candidate_tracker/94398139361_BADRUFARSANAresume.pdf', NULL, '1', '2025-08-22', 0, '', '3', '59', '2025-08-25', 216000.00, '', '3', '2026-02-25', '2', 'Communication Ok sounds good but sustainability doubts previous exp teaching and 3 months star health reasons for leaving not seems to be correct need to check in training and confirm doubtful in sustainability in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55732', '5151', '2025-08-25', 1, '2025-08-22 05:38:59', 60, '2025-08-23 04:51:36', 0, NULL, 1),
(26488, 'monisha', '5', '9444781242', '', 'monishamonisha3260@gmail.com', '2003-07-05', 22, '2', '2', 'shivakumar', 'daily wages', 57000.00, 1, 17600.00, 22000.00, 'taramani', 'taramani', '2508220010', '1', '2', 'upload_files/candidate_tracker/46926619739_MonishaVS.pdf', NULL, '1', '2025-08-22', 0, '', '3', '59', '2025-08-25', 300000.00, '', '4', '2025-11-01', '2', 'communication Ok have 1.5 yrs of exp in Paisabazaar Can give a try profile good candidate open fr insurance domain can give atry and check based on sriram sir approval 3LPA', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55656', '55557', '2025-08-25', 1, '2025-08-22 06:05:05', 60, '2025-08-25 09:49:28', 0, NULL, 1),
(26489, 'k s bhavani', '6', '7550170024', '', 'bhavanisrinivasan211@gmail.com', '2000-11-02', 24, '2', '1', 'karthick', 'supervisor', 18000.00, 0, 18000.00, 22000.00, 'tondiarpet', 'tondiarpet', '2508220011', '1', '2', 'upload_files/candidate_tracker/56738012251_bhavaniresume.pdf', NULL, '1', '2025-08-22', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, communication Average, 50/50, Pls confirm the salary and joining date,', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2025-08-22 06:44:04', 154, '2025-08-22 03:29:18', 0, NULL, 1),
(26490, 'Abraham Bill Clinton R', '23', '6381018516', '9176966620', 'abrahambillclinton@gmail.com', '2010-08-22', 0, '2', '2', 'Robert Kennedy', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2508220012', '1', '1', 'upload_files/candidate_tracker/84233829169_AbrahamBillClintonResume2.pdf', NULL, '1', '2025-08-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-08-22 09:10:45', 1, '2025-08-22 09:15:20', 0, NULL, 1),
(26491, '', '0', '9176966620', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508220013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-22 09:25:41', 0, NULL, 0, NULL, 1),
(26492, 'H. Shabir khan', '4', '9884779961', '9710482341', 'shabirkhan1704@gmail.com', '2004-05-17', 21, '5', '2', 'H. Saidabee', 'Petrol pump staff', 120000.00, 0, 0.00, 16.00, 'Palavakkam', 'Palavakkam', '2508220014', '', '1', 'upload_files/candidate_tracker/31006701592_ShabirkhanResume.pdf202505172030050000copy.pdf', NULL, '1', '2025-08-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-22 10:10:22', 1, '2025-08-22 10:21:26', 0, NULL, 1),
(26493, 'ABDHUL MUTHALIF BASHA', '6', '7200232913', '8056252913', 'abdulmuthalif410@gmail.com', '2004-09-16', 20, '2', '2', 'BASHA', 'Fresher', 96000.00, 1, 0.00, 16000.00, 'Ennore', 'Ennore', '2508220015', '1', '1', 'upload_files/candidate_tracker/23524353776_ABDULMUTHALIFModernResume1.pdf', NULL, '1', '2025-08-23', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-08-22 11:47:59', 154, '2025-08-23 12:02:31', 0, NULL, 1),
(26494, 'Anitha R', '5', '9742640127', '7259584488', 'anitharamappa127@gmail.com', '2000-06-13', 25, '2', '1', 'Muruli h', 'Job', 300000.00, 1, 23000.00, 30000.00, 'Bangalore', 'Bangalore', '2508220016', '1', '2', 'upload_files/candidate_tracker/35803367538_AnithaResumeNew2.pdf', NULL, '1', '2025-08-25', 0, '', '3', '59', '2025-09-04', 276000.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp but not a relevant one can give a try and check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1031', '', '55671', '55555', '2025-09-04', 1, '2025-08-22 12:22:33', 60, '2025-09-03 07:43:12', 0, NULL, 1),
(26495, 'santhamoorthi', '23', '9543878426', '', 'santhamoorthi485@gmail.com', '2006-06-20', 19, '2', '2', 'subramani', 'Daily wages', 150000.00, 2, 0.00, 18000.00, 'dharmapuri', 'dharmapuri', '2508220017', '1', '1', 'upload_files/candidate_tracker/68845595671_SanthaMoorthiCV.pdf', NULL, '1', '2025-08-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-08-22 12:23:52', 159, '2025-08-29 10:51:15', 0, NULL, 1),
(26496, '', '0', '9632323331', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508220018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-22 12:54:24', 0, NULL, 0, NULL, 1),
(26497, 'Gomathi V', '6', '8248381898', '9047995742', 'gomathivelmurugan243@gmail.com', '2003-06-03', 22, '2', '1', 'Suraj Ghosh D', 'Medical billing in Hexaware theology', 45000.00, 2, 0.00, 15000.00, 'Ayanavaram', 'Ayanavaram', '2508220019', '1', '1', 'upload_files/candidate_tracker/55113961041_GomathiVresume.pdf', NULL, '1', '2025-08-23', 0, '', '3', '59', '2025-08-25', 180000.00, '', '1', '1970-01-01', '2', 'Communication Ok married just a register marriage may have personal issues related to this 5050 sustainability in our roles let us try and confirm', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1287', '5151', '2025-08-25', 1, '2025-08-22 04:20:57', 104, '2025-08-25 09:39:44', 0, NULL, 1),
(26498, 'MARIAPPA KAMALA KANNAN', '4', '8489998863', '9361367451', 'mariappa2582004@gmail.com', '2004-08-25', 20, '2', '2', 'Kamala kannan', 'Driver', 10000.00, 1, 0.00, 13000.00, 'South Street,palliagaharam, Thanjavur 613003.', 'South Street, palliagaharam, Thanjavur 613003.', '2508230001', '1', '1', 'upload_files/candidate_tracker/41039823691_DOC20241211WA0020.202412271109540000.pdf', NULL, '1', '2025-08-23', 0, '', '3', '59', '2025-08-25', 156000.00, '', '3', '2025-10-04', '1', 'Communication Ok fresher for telesales tried multiple and got oppor but he didnt prefer that due to salary and field having family commitments can give a try and check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-08-25', 1, '2025-08-23 04:55:16', 60, '2025-08-23 05:01:19', 0, NULL, 1),
(26499, 'Abdul Hameed Akram', '6', '7395990814', '', 'abdulakram7395@gmail.com', '1999-06-03', 26, '2', '2', 'Mohamed hakkim', 'Business', 40000.00, 0, 18000.00, 22000.00, 'Choolaimedu Chennai', 'Choolaimedu Chennai', '2508230002', '1', '2', 'upload_files/candidate_tracker/88512032994_CV2025081310110441.pdf', NULL, '1', '2025-08-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-08-23 06:24:07', 159, '2025-08-25 11:49:10', 0, NULL, 1),
(26500, 'Niranjan', '6', '9980642857', '8197055241', 'nsniranjan210@gmail.com', '2005-01-08', 20, '2', '2', 'Shivappa', 'Cmc worker', 200000.00, 1, 0.00, 20000.00, 'Adi Basaveshwara colony yaramarus Raichur', 'Mico layout btm 2nd stage', '2508230003', '1', '1', 'upload_files/candidate_tracker/43704429333_Niranjan1.pdf', NULL, '1', '2025-08-25', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication, will not suitable for sales.', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', 'I1077', '55566', '1970-01-01', 1, '2025-08-23 07:55:53', 162, '2025-08-25 02:58:45', 0, NULL, 1),
(26501, 'Shyamalamahesh', '4', '9380849419', '9900696797', 'shyamalamahesh3@gmail.com', '1997-08-19', 28, '3', '1', 'Mahesh', 'Telecaller', 40000.00, 1, 0.00, 20000.00, '475, 9th crss, Buvaneswari Nagar, Bengaluru-560085', 'Same as above', '2508230004', '', '1', 'upload_files/candidate_tracker/5118763992_ShyamalaResume.doc', NULL, '1', '2025-08-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-23 09:01:30', 1, '2025-08-23 10:57:23', 0, NULL, 1),
(26502, '', '0', '7904499107', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508230005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-23 10:20:57', 0, NULL, 0, NULL, 1),
(26503, 'Sanjay R', '20', '6382011108', '', 'Sanjayravid@gmail.com', '2004-02-03', 21, '5', '2', 'Ravichandran', 'Farmer', 30000.00, 0, 0.00, 15000.00, 'Coimbatore', 'West mambalam', '2508230006', '', '1', 'upload_files/candidate_tracker/19702831194_SanjayResume.pdf', NULL, '3', '2025-08-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-23 10:47:47', 1, '2025-08-23 10:53:48', 0, NULL, 1),
(26504, 'Abraham Bill Clinton R', '23', '7604987057', '6381018516', 'abrahambillclinton@gmail.com', '2004-10-25', 20, '2', '2', 'Robert Kennedy', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2508240001', '1', '1', 'upload_files/candidate_tracker/22502590111_AbrahamBillClintonResume.pdf', NULL, '1', '2025-08-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-24 06:04:53', 159, '2025-08-25 11:18:02', 0, NULL, 1),
(26505, '', '0', '8867679615', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-25 03:49:42', 0, NULL, 0, NULL, 1),
(26506, '', '0', '6360034418', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508250002', '0', '0', NULL, NULL, '0', NULL, 0, '', '5', '163', NULL, 0.00, '', '0', NULL, '1', 'Lack of consistency . not suitable for the organisation', '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-25 04:10:28', 0, NULL, 0, NULL, 1),
(26507, 'Adarsha A', '6', '8296583315', '7702081304', 'adhuadarsha123@gmail.com', '2000-06-05', 25, '2', '2', 'Ananthappa', 'Supervisor ( LERC company )', 30000.00, 3, 19000.00, 25000.00, 'Lakkenahalli ( v ) kolar district Karnataka 563129', 'BTM layout Bengaluru 560068', '2508250003', '1', '2', 'upload_files/candidate_tracker/91227104410_RESUME.pdf', NULL, '1', '2025-08-26', 0, '', '3', '59', '2025-09-08', 258000.00, '', '5', '1970-01-01', '2', 'Communication Ok Fresher for our roles have exp in other domain can give a try and check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '2025-09-08', 1, '2025-08-25 04:16:07', 60, '2025-09-05 03:53:53', 0, NULL, 1),
(26508, 'Dhivya R', '4', '6385892104', '8531091345', 'dhivyasurenthiran2002@gmail.com', '2002-06-03', 23, '2', '2', 'R Jayamala', 'Business', 72000.00, 2, 17000.00, 15000.00, '1649/3, East street, Thennamanadu, Orathanadu', '1649/3, East street, Thennamanadu, Orathanadu', '2508250004', '1', '2', 'upload_files/candidate_tracker/36610159822_DHIVYA.pdf', NULL, '1', '2025-08-25', 0, '', '3', '59', '2025-08-28', 168000.00, '', '3', '2025-10-22', '2', 'Communication Ok Fresher for our roles have exp in telecaling can give a try and check in our roles', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-08-28', 1, '2025-08-25 04:44:56', 60, '2025-08-26 06:51:46', 0, NULL, 1),
(26509, 'Amala Divya.k', '6', '7010431481', '8778783699', 'careerupdates.divya@gmail.com', '2001-08-02', 24, '2', '2', 'Parent', 'Daily wage worker', 40000.00, 2, 20000.00, 25000.00, 'Cuddalore', 'Chennai', '2508250005', '1', '2', 'upload_files/candidate_tracker/4339970819_AmalaDivyaResume.pdf', NULL, '1', '2025-08-25', 1, '', '3', '59', '2025-09-01', 216000.00, '', '3', '2025-09-05', '2', 'Communication Good Can be trained in our roles and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '2025-09-01', 1, '2025-08-25 05:08:39', 60, '2025-08-30 06:04:11', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26510, 'Bakthavatchalam', '6', '8122822136', '6382213664', 'Baktha1701@gmail.com', '1997-01-17', 28, '2', '1', 'Arociapriya', 'Driver', 200000.00, 2, 16000.00, 20000.00, 'Avadi', 'Avadi', '2508250006', '1', '2', 'upload_files/candidate_tracker/49179432868_TU9718333892.pdf', NULL, '1', '2025-08-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-25 05:21:52', 159, '2025-08-25 11:54:45', 0, NULL, 1),
(26511, 'Gowtham', '13', '9345626417', '', 'agowtham689@gmail.com', '2003-07-28', 22, '2', '2', 'Santhi A', 'Tailor', 25000.00, 1, 0.00, 300000.00, 'Erode', 'Semmenchery', '2508250007', '1', '1', 'upload_files/candidate_tracker/10245371148_GowthamAResume11.docx', NULL, '1', '2025-08-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-25 05:51:10', 159, '2025-08-25 11:54:33', 0, NULL, 1),
(26512, '', '0', '8904386797', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508250008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-25 06:33:59', 0, NULL, 0, NULL, 1),
(26513, '', '0', '6380616981', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508250009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-25 06:59:38', 0, NULL, 0, NULL, 1),
(26514, 'jackwin', '31', '8220553012', '9789710582', 'Jackwin98@yahoo.com', '1998-09-03', 26, '2', '2', 'Johnson', 'Accountant', 1000.00, 1, 4.08, 5.00, 'Kanyakumari', 'Chennai', '2508250010', '1', '2', 'upload_files/candidate_tracker/14424388365_JackwinJohnsoncv20251.pdf', NULL, '1', '2025-08-25', 15, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-25 09:41:38', 159, '2025-08-25 03:25:25', 0, NULL, 1),
(26515, '', '0', '7358945399', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508250011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-25 04:15:20', 0, NULL, 0, NULL, 1),
(26516, 'Dhanush R', '23', '6383503048', '', 'dhanushharish77@gmail.com', '2003-03-21', 22, '6', '2', 'Rajendran P', 'Office Assistant', 30000.00, 0, 0.00, 2.50, 'Vadapalani', 'Vadapalani', '2508260001', '', '1', 'upload_files/candidate_tracker/92245912629_DhanushRFrontendDeveloperandUXDesign.pdf', NULL, '1', '2025-08-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-26 04:56:30', 1, '2025-08-26 05:00:32', 0, NULL, 1),
(26517, 'Mageshwari Gopal', '5', '9344702645', '9962217734', 'Magikutty3756@gmail.com', '1996-05-02', 29, '1', '1', 'Venkatesh', 'Private sector', 35000.00, 1, 21000.00, 23000.00, 'Todiarpet', 'Tondiarpet', '2508260002', '', '2', 'upload_files/candidate_tracker/84911858149_MAGESHWARIRESUMEPDF.pdf', NULL, '1', '2025-08-26', 1, '55792', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-08-26 05:23:12', 154, '2025-08-26 11:14:40', 0, NULL, 1),
(26518, 'sindhu', '6', '7604841594', '', 'sindhuksindhu597@gmail.com', '2003-08-22', 22, '2', '2', 'kumar', 'land broker', 20000.00, 1, 17000.00, 19000.00, 'royapeta', 'royapetai', '2508260003', '1', '2', 'upload_files/candidate_tracker/85763037082_SINDHUKRESUME4.docx', NULL, '1', '2025-08-26', 0, '', '3', '59', '2025-08-28', 216000.00, '', '1', '1970-01-01', '2', 'Communication ok have exp in telecalling same domain sustainability doubts giving reason for every chnages klet us try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55666', '5151', '2025-08-28', 1, '2025-08-26 05:58:32', 60, '2025-08-26 06:53:37', 0, NULL, 1),
(26519, '', '0', '6306932190', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508260004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-26 06:18:25', 0, NULL, 0, NULL, 1),
(26520, 'r lethika', '6', '9080260598', '9952420383', 'lethikaravi2003@gmail.com', '2003-04-04', 22, '2', '2', 'ravikumar', 'bussines', 100000.00, 1, 0.00, 250000.00, 'bodinayakanur', 'chennai', '2508260005', '1', '1', 'upload_files/candidate_tracker/74928518169_Sona1.pdf', NULL, '1', '2025-08-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-08-26 07:01:18', 154, '2025-08-29 06:01:52', 0, NULL, 1),
(26521, 'Abinaya', '6', '7904389681', '6369135043', 'abinayaabi25976@gmail.com', '2005-04-29', 20, '3', '2', 'Alamelu', 'Tamil, telugu, English', 13000.00, 1, 0.00, 16.00, 'Erode', 'Chennai', '2508260006', '', '1', 'upload_files/candidate_tracker/87099629949_Abinaya.pdf', NULL, '1', '2025-08-26', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-08-26 07:12:50', 154, '2025-08-26 01:17:56', 0, NULL, 1),
(26522, '', '0', '9791622741', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508260007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-26 09:19:40', 0, NULL, 0, NULL, 1),
(26523, '', '0', '7871895064', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508260008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-26 09:45:09', 0, NULL, 0, NULL, 1),
(26524, 'Imran jamaludeen', '6', '9962726181', '7871926632', 'imranjamaludeen02@gmail.com', '2000-06-02', 25, '2', '2', 'Jamaludeen', 'Water service', 15000.00, 1, 23000.00, 25000.00, 'Chennai', 'Chennai', '2508260009', '1', '2', 'upload_files/candidate_tracker/57881134000_IMRANRESUME1.pdf', NULL, '1', '2025-08-28', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, not suitable for voice process, reject the profile, previous show exp only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-08-26 10:18:30', 154, '2025-08-28 12:23:05', 0, NULL, 1),
(26525, 'shantha kumaran R', '23', '9677094751', '8608758331', 'shanthakumaran82@gmail.com', '2004-10-06', 20, '2', '2', 'Ramesh', 'Product manager', 50000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2508260010', '1', '1', 'upload_files/candidate_tracker/50483899387_UXRESUME.pdf', NULL, '1', '2025-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2025-08-26 10:38:50', 1, '2025-08-26 10:52:04', 0, NULL, 1),
(26526, '', '0', '9940307983', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508260011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-26 12:05:23', 0, NULL, 0, NULL, 1),
(26527, '', '0', '7358965955', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-27 08:21:44', 0, NULL, 0, NULL, 1),
(26528, 'Aswinraj Manikandan', '23', '9080209994', '', 'hexastore13@gmail.com', '2002-05-13', 23, '2', '2', 'Malarkodi M', 'House wife', 15000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2508270002', '1', '1', 'upload_files/candidate_tracker/73361071071_UIUXDesignerResumecompressed1.pdf', NULL, '1', '2025-09-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-08-27 11:28:37', 154, '2025-09-01 11:23:37', 0, NULL, 1),
(26529, 'Vetri V', '6', '9361044535', '8778553826', 'mvetri028@gmail.com', '2003-12-08', 21, '2', '2', 'G.Venkatesan', 'Daily wages', 15000.00, 1, 0.00, 16000.00, '6th block,934, Mugappair west chennai 37', '6th Block,934, Mugappair west chennai 37', '2508270003', '1', '1', 'upload_files/candidate_tracker/63653769607_CV20250504213125462.pdf', NULL, '1', '2025-08-28', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2025-08-27 04:22:15', 154, '2025-08-28 12:33:05', 0, NULL, 1),
(26530, '', '0', '8015595515', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508270004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-27 04:49:45', 0, NULL, 0, NULL, 1),
(26531, '', '0', '7200041716', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-28 03:10:59', 0, NULL, 0, NULL, 1),
(26532, 'Suriya R', '6', '9551259693', '9940470954', 'suriyasurya1371@gmail.com', '2000-08-20', 25, '2', '2', 'Ramesh', 'Driver', 25000.00, 1, 0.00, 25000.00, 'Kundrathur', 'Kundrathur', '2508280002', '1', '2', 'upload_files/candidate_tracker/69222073603_1689656740877suriya2.pdf', NULL, '1', '2025-08-28', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55864', '55566', '1970-01-01', 1, '2025-08-28 03:31:59', 154, '2025-08-28 12:38:17', 0, NULL, 1),
(26533, 'Padmavathi', '5', '9042115701', '8248724607', 'sowmiyashree632@gmail.com', '1995-05-20', 30, '3', '1', 'Parthiban', 'Working', 25000.00, 1, 18500.00, 20000.00, 'Trichy', 'Valluvarkottam Chennai', '2508280003', '', '2', 'upload_files/candidate_tracker/8747842135_PadmavathiRESUME.pdf', NULL, '1', '2025-08-28', 0, '', '3', '59', '2025-09-01', 252000.00, '', '3', '2025-09-02', '1', 'Communication Good have exp in sales can give a try and check in our roles candidate is confident and open to learn let us try', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '2025-09-01', 1, '2025-08-28 05:53:31', 60, '2025-09-01 09:50:32', 0, NULL, 1),
(26534, '', '0', '8248724607', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508280004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-28 06:01:54', 0, NULL, 0, NULL, 1),
(26535, 'Sanjay R', '6', '8248227095', '9176808654', 'kdsanjay942@gmail.com', '2004-11-17', 20, '2', '2', 'Ramesh G', 'business', 200000.00, 2, 0.00, 16000.00, '22,SLR camp,m.mettupatti, namakkal', 'No 2968, TNHB Avadi, Chennai', '2508280005', '1', '1', 'upload_files/candidate_tracker/65567367064_SanjayR5.pdf', NULL, '1', '2025-08-28', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-08-28 06:51:54', 154, '2025-08-28 02:53:46', 0, NULL, 1),
(26536, 'Chaithra MD', '6', '9591677670', '9141609776', 'Chaithraammu49@gmail.com', '2003-01-11', 22, '2', '2', 'Dinesh ML', 'Auto driver', 36000.00, 1, 0.00, 20000.00, 'Kumaraswami layout', 'Kumaraswami layout', '2508280006', '49', '1', 'upload_files/candidate_tracker/72045564716_Chaithraresume1.docx1.docx', NULL, '1', '2025-08-29', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-08-28 02:04:26', 162, '2025-09-04 10:22:45', 0, NULL, 1),
(26537, 'Rajkumar Baskar', '4', '8072245687', '9791221012', 'rajkumar09042003@gmail.com', '2003-04-09', 22, '2', '2', 'Baskar R', 'Driver', 30000.00, 3, 0.00, 15000.00, 'THANJAVUR', 'THANJAVUR', '2508290001', '1', '1', 'upload_files/candidate_tracker/33667379816_RAJKUMARB.1.pdf', NULL, '1', '2025-08-29', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-08-29 04:56:14', 154, '2025-08-29 10:42:31', 0, NULL, 1),
(26538, 'SUGURUPUTTAIAHGARISANGAMESWARREDDY', '6', '7995593097', '9381152657', 'sangameswareradhuadarsha123@gmail.com', '1999-01-01', 26, '2', '2', 'Lakshmi Narayana Reddy', 'Farmer', 30000.00, 1, 20000.00, 23000.00, 'Nagepalli (v) sathya sai (d) Andhra Pradesh', 'Bangalore BTM layout 2nd stage', '2508290002', '1', '2', 'upload_files/candidate_tracker/14774201122_RESUME2.pdf', NULL, '1', '2025-08-30', 1, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lack of consistency and communication .', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2025-08-29 05:05:01', 162, '2025-09-24 12:13:04', 0, NULL, 1),
(26539, 'Saranyashankar', '6', '8610007351', '', 'saranyashankar2317@gmail.com', '2001-05-15', 24, '3', '2', 'Shankar', 'Former', 25000.00, 2, 0.00, 20000.00, 'Ranipet', 'Ranipet', '2508290003', '', '1', 'upload_files/candidate_tracker/55826135343_CV2025070320550950.pdf', NULL, '1', '2025-08-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-29 05:52:47', 154, '2025-08-29 06:02:45', 0, NULL, 1),
(26540, 'Yamuna', '6', '6380723174', '', 'Yamunavinoth03@gmail.com', '2002-09-13', 22, '3', '1', 'Vinoth kumar', 'Logistics', 30000.00, 1, 0.00, 16000.00, 'Arni', 'Vyasarpadi', '2508290004', '', '1', 'upload_files/candidate_tracker/64792239579_Yamunaresume1.docx', NULL, '1', '2025-08-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-08-29 05:52:53', 154, '2025-08-29 06:02:12', 0, NULL, 1),
(26541, 'Harshitha LS', '6', '9742054243', '9606846752', 'hharshithapalegar@mail.con', '2002-10-02', 22, '2', '2', 'Shekar T', 'Labour', 15000.00, 1, 0.00, 25000.00, 'JC Nagar kurubarahalli', 'JC nagar kurubarahalli', '2508290005', '49', '1', 'upload_files/candidate_tracker/11015542757_270796009990524.pdf', NULL, '1', '2025-08-29', 0, '', '3', '59', '2025-09-15', 204000.00, '', '5', '1970-01-01', '2', 'Communication ok Fresher for our roles need to check in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '2025-09-15', 1, '2025-08-29 07:42:26', 60, '2025-09-13 02:55:16', 0, NULL, 1),
(26542, 'Preethi K l', '6', '7411126813', '6364210026', 'preethilnaik702@gmail.com', '2002-10-12', 22, '2', '2', 'Lalya naik', 'Farmer', 30000.00, 1, 0.00, 20000.00, 'Shivamogga', 'Shivamogga', '2508290006', '49', '1', 'upload_files/candidate_tracker/68736481740_preethiresume.pdf', NULL, '1', '2025-08-29', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'I1077', '55555', '1970-01-01', 1, '2025-08-29 07:43:18', 162, '2025-09-04 09:56:49', 0, NULL, 1),
(26543, 'devendran venkatesan', '6', '6382173671', '', 'dv3961831@gmail.com', '2004-04-08', 21, '2', '2', 'parent', 'shop keeper', 15.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2508290007', '1', '1', 'upload_files/candidate_tracker/70723229_Resume.pdf', NULL, '1', '2025-08-30', 0, '', '3', '59', '2025-09-01', 192000.00, '', '3', '2025-09-02', '1', 'Communication ok fresher for our roles can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '2025-09-01', 1, '2025-08-29 11:48:27', 60, '2025-08-30 06:25:46', 0, NULL, 1),
(26544, 'Yashwanth k', '6', '9360701875', '9360701875', 'yashwanth13dec@gmail.com', '2004-12-13', 20, '2', '2', 'Sudha', 'Teacher', 10000.00, 1, 0.00, 18000.00, 'Mylapore', 'Mylapore', '2508290008', '1', '1', 'upload_files/candidate_tracker/48058104203_yashresume.pdf', NULL, '1', '2025-08-30', 0, '', '3', '59', '2025-09-01', 192000.00, '', '3', '2025-09-03', '2', 'Communication Ok fresher seems to ok for our role can be trained need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '2025-09-01', 1, '2025-08-29 12:36:38', 154, '2025-08-30 06:30:52', 0, NULL, 1),
(26545, 'Thabeshwar Maran', '4', '6379360241', '9095581559', 'Thabeshwarm@gmail.com', '2002-12-13', 22, '2', '2', 'Pushpa', 'Block development officer', 50000.00, 1, 0.00, 18000.00, '10/2 pudhupalli street mylapore', '10/2 pudhupalli street Mylapore', '2508290009', '1', '1', 'upload_files/candidate_tracker/9043007436_ThabeshwarMCV1.PDF', NULL, '1', '2025-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-08-29 03:31:06', 1, '2025-08-29 03:43:45', 0, NULL, 1),
(26546, 'siva suruthi r', '6', '6381902517', '', 'suruthirajan2020@gmail.com', '1999-12-20', 25, '2', '2', 'muthulakshmi', 'teacher', 60000.00, 3, 0.00, 15000.00, 'tirychendur', 'siruseri', '2508300001', '1', '1', 'upload_files/candidate_tracker/87310145603_ResumeRSivaSuruthi.pdf', NULL, '1', '2025-08-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok , commmunication averager , will check with 7 days of training Period, confirm the salary and joining date', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-08-30 05:01:40', 154, '2025-08-30 01:28:00', 0, NULL, 1),
(26547, 'Praveen Ravichandran', '4', '9940414457', '6385341186', 'naveenpraveen5544@gmail.com', '2004-06-07', 21, '5', '2', 'Ravichandran', 'Former', 30000.00, 1, 0.00, 17000.00, '22,Othai strret Melattur, Papanasam , Thanjavur', '22,Othai Strret Melattur, Papanasam , Thanjavur', '2508300002', '', '1', 'upload_files/candidate_tracker/28871393528_praveen.docx', NULL, '1', '2025-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-08-30 05:10:51', 1, '2025-08-30 05:20:13', 0, NULL, 1),
(26548, '', '0', '8122723122', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508300003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-30 05:38:17', 0, NULL, 0, NULL, 1),
(26549, 'ASHMITHA C', '4', '8667261091', '', 'Mohanashmitha80@gmail.com', '2004-11-10', 20, '2', '2', 'CHANDRAMOHAN K', 'DRIVER', 55000.00, 1, 0.00, 12000.00, 'THANJAVUR', 'THANJAVUR', '2508300004', '1', '1', 'upload_files/candidate_tracker/22821009439_MOHANASHMITHA.pdf', NULL, '1', '2025-08-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-08-30 05:58:42', 154, '2025-08-30 11:52:37', 0, NULL, 1),
(26550, 'Mani maran', '6', '9361532575', '7826982284', 'Sivakumarmanimaran@gmail.com', '2003-11-15', 21, '2', '2', 'Sivakumar', 'Driver', 40.00, 1, 0.00, 15.00, 'Thanjavur , pattukkottai', 'Chennai', '2508300005', '1', '1', 'upload_files/candidate_tracker/65651504859_CVManimaranResume.pdf', NULL, '1', '2025-08-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-08-30 06:54:17', 154, '2025-08-30 01:26:38', 0, NULL, 1),
(26551, 'Sivasakthi moorthy', '6', '9025669022', '', 'siva0408sakthi@gmail.com', '2003-08-04', 22, '2', '2', 'Moorthy', 'Fishing', 40.00, 1, 0.00, 15.00, 'Thanjavur', 'Chennai', '2508300006', '1', '1', 'upload_files/candidate_tracker/23854363360_Sivasakthi.M.pdf', NULL, '1', '2025-08-30', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-08-30 06:54:50', 154, '2025-08-30 01:28:10', 0, NULL, 1),
(26552, 'Sandhiya V', '4', '8072949418', '9941605028', 'sandhiyajayarathinam@gmail.com', '2004-03-24', 21, '2', '2', 'Jayarathinam', 'House wife', 38000.00, 2, 22000.00, 25000.00, 'K.p.park', 'K.p.park', '2508300007', '1', '2', 'upload_files/candidate_tracker/83374132045_Sandhiya2.pdf', NULL, '1', '2025-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-08-30 07:59:04', 1, '2025-08-30 08:02:38', 0, NULL, 1),
(26553, 'Sridevi S', '4', '9361095268', '', 'srideviaruna123@gmail.com', '2004-10-16', 20, '2', '2', 'Aruna', 'Daily wages', 11000.00, 1, 17000.00, 18000.00, 'Vellore', 'Thousand lights', '2508300008', '1', '2', 'upload_files/candidate_tracker/27157790747_SrideviRESUME.pdf', NULL, '1', '2025-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-08-30 11:34:42', 1, '2025-08-30 11:37:24', 0, NULL, 1),
(26554, '', '0', '8610681492', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508300009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-30 12:01:41', 0, NULL, 0, NULL, 1),
(26555, 'Joshva L', '6', '9345033827', '9840150059', 'joshvaj762@gmail.com', '2003-10-03', 21, '2', '2', 'Loganathan', 'Car driver', 25000.00, 2, 0.00, 18000.00, 'Mylapore', 'Mylapore', '2508300010', '1', '1', 'upload_files/candidate_tracker/82461080716_joshvanewresumee.docx', NULL, '1', '2025-09-01', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is not suitable for sales profile, communication not Good.reject the profile..', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2025-08-30 12:46:40', 154, '2025-09-01 03:25:58', 0, NULL, 1),
(26556, '', '0', '9345033927', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2508300011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-08-30 01:23:20', 0, NULL, 0, NULL, 1),
(26557, 'Bhuvaneswari karthick', '6', '9094457544', '', 'bhuvaneshwarikarthick13@gmail.com', '2005-04-13', 20, '3', '2', 'S.karthick', 'Laundry shop', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2509010001', '', '1', 'upload_files/candidate_tracker/83529938880_BHUVANESHWARIKARTHICK111.pdf', NULL, '1', '2025-09-01', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'poor communication', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2025-09-01 05:52:05', 154, '2025-09-01 01:13:16', 0, NULL, 1),
(26558, 'SHARMILA PUSHPARAJ', '6', '7200536245', '9043525568', 'sharmilapushparaj09@gmail.com', '2005-03-09', 20, '3', '2', 'PUSHPARAJ .B', 'Own business', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2509010002', '', '1', 'upload_files/candidate_tracker/61296425887_Sharmilaresume.pdf.pdf', NULL, '1', '2025-09-01', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2025-09-01 05:52:14', 154, '2025-09-01 01:14:26', 0, NULL, 1),
(26559, 'Janani M', '11', '7871702757', '', 'jananimoorthy0225@gmail.com', '2003-01-25', 22, '2', '2', 'Moorthy T', 'Driver', 20000.00, 1, 15000.00, 18000.00, 'Madhavaram,Chennai', 'Madhavaram,Chennai', '2509010003', '1', '2', 'upload_files/candidate_tracker/86115617164_RESUMEMJANANI.pdf', NULL, '1', '2025-09-01', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-09-01 05:53:16', 154, '2025-09-01 12:58:34', 0, NULL, 1),
(26560, '', '0', '8123516907', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509010004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-01 06:22:58', 0, NULL, 0, NULL, 1),
(26561, 'Sampathkumar j', '6', '8838512610', '6381336114', 'Samsampath479@gmail.com', '2000-04-02', 25, '3', '2', 'Malarkodi mother', 'Hitachi bank ltd', 15000.00, 1, 0.00, 20000.00, 'Mayiladuthurai', 'Velachery', '2509010005', '', '1', 'upload_files/candidate_tracker/88010559356_DOC20250814WA0001.compressed.pdf', NULL, '1', '2025-09-01', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very reserved and quiet in the interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2025-09-01 06:35:12', 154, '2025-09-01 01:25:29', 0, NULL, 1),
(26562, 'Anusha T', '6', '7975515115', '9448748287', 'anushatreddy2002@gmail.com', '2002-01-24', 23, '1', '1', 'abhishek', 'working', 500000.00, 1, 0.00, 400000.00, 'banglore', 'banglore', '2509010006', '', '1', 'upload_files/candidate_tracker/14541949820_AnushaResume12.pdf', NULL, '1', '2025-09-17', 0, '55785', '3', '59', '2025-09-22', 240000.00, '', NULL, '2026-04-25', '2', 'Communication Ok Based on manager approval given her joining', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '2025-09-22', 1, '2025-09-01 06:35:19', 60, '2025-09-20 06:46:58', 0, NULL, 1),
(26563, 'Santhosh Y', '6', '7019154894', '', 'santhoshy922@gmail.com', '2004-01-27', 21, '2', '2', 'Yarranna', 'Cylinder supplier', 20000.00, 1, 0.00, 20.00, 'Agrahara dasarahalli bengaluru', '7th main Agrahara dasarahalli bengalore 560079', '2509010007', '1', '1', 'upload_files/candidate_tracker/37905701103_santhoshresume.docx', NULL, '1', '2025-09-04', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'LACK OF COMMUNICATION AND KNOWLEDGE ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', 'I1077', '55566', '1970-01-01', 1, '2025-09-01 07:23:44', 154, '2025-09-06 10:28:20', 0, NULL, 1),
(26564, 'Vijay A', '4', '6384399496', '8248533207', 'Vijayyajiv123456@gmail.com', '2004-12-24', 20, '3', '2', 'Arumugam P', 'Clerical Assistant In Anna University Tirunelveli', 200000.00, 1, 0.00, 20000.00, 'L/278 Anna Nagar Alangulam Tenkasi', 'Tirunelveli', '2509010008', '', '1', 'upload_files/candidate_tracker/24538969098_RESU3.pdf', NULL, '1', '2025-09-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-01 08:08:23', 1, '2025-09-01 08:17:01', 0, NULL, 1),
(26565, 'Maria Priyadharshini', '6', '9176028275', '9787419718', 'smariapriyadharshini@gmail.com', '2004-07-04', 21, '2', '2', 'Josphin', 'Daily wages', 20000.00, 2, 0.00, 15000.00, '32/9, MarriyammanKovil,Eraiyur,Kallakurichi-607201', '18, padmanabhacolony 1st, rajakadai,Chennai 19', '2509010009', '1', '1', 'upload_files/candidate_tracker/17089294142_MARIAPRIYADHARSHINI.pdf', NULL, '1', '2025-09-02', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-09-01 09:31:30', 154, '2025-09-02 03:02:02', 0, NULL, 1),
(26566, 'Dharshini', '6', '8807146535', '8925085718', 'Ajaykdharshu@gamil.com', '2002-05-02', 0, '2', '2', 'Kurinji kumaran', 'Advocate', 20000.00, 1, 0.00, 16000.00, 'Kallakurichi', 'Tambaram', '2509010010', '1', '1', 'upload_files/candidate_tracker/13212939799_DARSHINI13compressed1.pdf', NULL, '1', '2025-09-03', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication little ok,but her performance is not good.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-09-01 10:00:43', 154, '2025-09-03 03:21:44', 0, NULL, 1),
(26567, 'Praveen Sankar', '13', '7550376897', '8870662913', 'praveenvicky7550@gmail.com', '2005-05-25', 20, '2', '2', 'Sankar Kaliyamoorthy', 'Business / Fancy shop', 10000.00, 1, 0.00, 15000.00, 'Swamimalai, Thanjavur', 'Porur, Chennai', '2509010011', '1', '1', 'upload_files/candidate_tracker/30550936197_PraveenBCA2.pdf', NULL, '1', '2025-09-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-09-01 10:17:04', 1, '2025-09-01 10:28:32', 0, NULL, 1),
(26568, '', '0', '8056300641', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509010012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-01 10:35:46', 0, NULL, 0, NULL, 1),
(26569, 'bhavani', '6', '9176294401', '', 'bhava05062004@gmail.com', '2004-06-05', 21, '2', '2', 'kirubavathy', 'house keeper', 40000.00, 1, 22000.00, 18000.00, 'kolathur', 'kolathur', '2509010013', '1', '2', 'upload_files/candidate_tracker/28440484937_BHAVANIlCV.pdf', NULL, '1', '2025-09-02', 0, '', '3', '59', '2025-09-08', 216000.00, '', '3', '2025-09-12', '2', 'Communication Ok have exp in other domain open for our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1070', '5151', '2025-09-08', 1, '2025-09-01 10:41:21', 60, '2025-09-05 03:55:03', 0, NULL, 1),
(26570, 'Harikrishnan', '13', '9342408995', '', 'harihk2824@gmail.com', '2004-06-28', 21, '2', '2', 'Kumar P', 'Private sector', 35000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Chennai', '2509010014', '1', '1', 'upload_files/candidate_tracker/29030143161_HARIKRISHNAKLFINAL1pdf.pdf', NULL, '1', '2025-09-05', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-09-01 12:46:17', 154, '2025-09-05 03:39:57', 0, NULL, 1),
(26571, 'C.Gunasree', '4', '9952266707', '8015229669', 'Gunasreechandran@gmail.com', '2005-06-27', 20, '3', '2', 'K.Chandran', 'Welder', 60000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2509020001', '', '1', 'upload_files/candidate_tracker/54450555399_gunasreeresume.pdf', NULL, '1', '2025-09-02', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2025-09-02 05:11:38', 154, '2025-09-02 12:09:36', 0, NULL, 1),
(26572, 'R.jenifer', '4', '7094865349', '9578289873', 'Jeniferkumar55@gmail.com', '2005-04-27', 20, '3', '2', 'J.S.Rajkumar', 'Plumber', 50000.00, 1, 0.00, 15.00, 'Thanjavur', 'Thanjavur.', '2509020002', '', '1', 'upload_files/candidate_tracker/27010322467_JeniferR1.pdf', NULL, '1', '2025-09-02', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite for team', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2025-09-02 05:12:36', 154, '2025-09-02 12:09:57', 0, NULL, 1),
(26573, 'faritha begum', '5', '6381953275', '', 'fari.ahmed2412@gmail.com', '1993-11-24', 31, '2', '1', 'zakeer husain', 'tailor', 60000.00, 2, 30000.00, 35000.00, 'vyasarpadi', 'vyasarpadi', '2509020003', '1', '2', 'upload_files/candidate_tracker/1192430103_BegumResume.pdf', NULL, '1', '2025-09-03', 0, '', '3', '59', '2025-09-08', 350000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in other domain confident and open for sales roles can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55656', '55557', '2025-09-08', 1, '2025-09-02 05:21:52', 60, '2025-09-05 03:56:29', 0, NULL, 1),
(26574, '', '0', '9159695386', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509020004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-02 05:57:42', 0, NULL, 0, NULL, 1),
(26575, 'r.abinesh', '6', '7550285798', '9940088797', 'rabinesh019@gmail.com', '2003-04-28', 22, '2', '2', 'ravichandran', 'registration power agent of bhaashyam constrution', 30000.00, 2, 0.00, 18000.00, 'vasanthan colony / anna nagar west/chennai', 'anna nagar chennai', '2509020005', '1', '1', 'upload_files/candidate_tracker/1477599318_Canva.pdf', NULL, '2', '2025-09-02', 0, '', '3', '59', '2025-09-04', 192000.00, '', '3', '2025-10-10', '1', 'Communication Ok fresher for our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1070', '5151', '2025-09-04', 1, '2025-09-02 06:05:21', 60, '2025-09-03 07:45:39', 0, NULL, 1),
(26576, 'srimathi', '11', '9176757142', '', 'sanjeevisrimathi@gmail.com', '2003-05-11', 22, '2', '2', 'sanjeevi', 'private company', 15000.00, 1, 0.00, 15000.00, 'tnagar chennai', 'tnagar', '2509020006', '1', '1', 'upload_files/candidate_tracker/40241102540_CV2025082918254295.pdf', NULL, '1', '2025-09-02', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-09-02 06:44:36', 154, '2025-09-02 03:04:58', 0, NULL, 1),
(26577, 'Ramya', '6', '6385128381', '', 'ramyadoss998@gmail.com', '2001-02-25', 24, '2', '2', 'Kirthika', 'House wife', 17000.00, 1, 0.00, 15000.00, 'Karur', 'Vadapalani', '2509020007', '1', '1', 'upload_files/candidate_tracker/57323033359_ramyadoss.resume1.pdf', NULL, '1', '2025-09-02', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good aslo very slow And Lazy.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-09-02 06:54:18', 154, '2025-09-02 04:45:35', 0, NULL, 1),
(26578, 'Jasmeena B', '6', '9042870935', '6380840062', 'jasmeenabhaskar@gmail.com', '2004-07-16', 21, '2', '2', 'Bhaskar P', 'Shop keeper', 12000.00, 1, 0.00, 17000.00, 'Padiyanallur,chennai - 600052', 'Padiyanallur, Chennai - 600052', '2509020008', '1', '1', 'upload_files/candidate_tracker/11527528136_DOC20250831WA0009..pdf', NULL, '1', '2025-09-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-09-02 09:51:27', 159, '2025-09-03 09:57:44', 0, NULL, 1),
(26579, 'Karthikeyan K', '4', '9342867740', '', 'Karthikeyankathiravan19@gmail.com', '2004-05-19', 21, '5', '2', 'Karthiravan B', 'Business man', 30000.00, 1, 0.00, 20000.00, '5-1 anna Nagar street ,Mukkudal, tirunelveli.', 'Lal bahadur Street solinganallur.', '2509020009', '', '1', 'upload_files/candidate_tracker/28971995104_karthiresume.pdf', NULL, '1', '2025-09-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-02 02:08:36', 1, '2025-09-02 02:17:56', 0, NULL, 1),
(26580, 'PRABHAKAR N', '10', '7845323100', '', 'prabhakar220494@gmail.com', '1994-04-22', 31, '1', '1', 'R SINDHU', 'Housewife', 25000.00, 1, 560000.00, 700000.00, 'Bengaluru', 'Bengaluru', '2509030001', '', '2', 'upload_files/candidate_tracker/26816800586_PrabhakarNResume2.pdf', NULL, '2', '2025-09-04', 60, '55786 VASU', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'For BDM profile suggested ctc 7lac confirm from your end for the mail confirmation  for the offer so the he will drop the mail for resignation to star healt', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-09-03 02:13:21', 162, '2025-09-24 12:07:11', 0, NULL, 1),
(26581, 'Santhiya selvam', '4', '6382242157', '', 'Santhiyasandy2516@gmail.com', '2000-07-16', 25, '2', '2', 'Selvam m', 'Farmer', 15000.00, 1, 16000.00, 20000.00, 'Thiruthuraipoondi', 'Saidapet', '2509030002', '1', '2', 'upload_files/candidate_tracker/30337261667_Santhiya.pdf', NULL, '1', '2025-09-03', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55824', '55560', '1970-01-01', 1, '2025-09-03 04:08:19', 154, '2025-09-03 11:58:20', 0, NULL, 1),
(26582, '', '0', '7010582502', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509030003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-03 05:55:12', 0, NULL, 0, NULL, 1),
(26583, 'rangappa kambagi', '6', '9481432540', '', 'rangappa.g.k20@gmail.com', '1998-02-01', 27, '2', '1', 'radhika', 'house wife', 50000.00, 1, 20000.00, 22000.00, 'banashankari', 'kanakapura', '2509030004', '49', '2', 'upload_files/candidate_tracker/59477229925_0resumeNonvoice2.pdf', NULL, '1', '2025-09-03', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of consistency , doubt arises if  he will stay for 2 years .', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'I1077', '55566', '1970-01-01', 1, '2025-09-03 06:03:44', 162, '2025-09-03 05:31:08', 0, NULL, 1),
(26584, '', '0', '6383773086', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509030005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-03 06:10:28', 0, NULL, 0, NULL, 1),
(26585, 'Abishek rajkumar', '6', '6383773087', '9003415607', 'abishek638377@gmail.com', '2003-07-08', 0, '2', '2', 'Bhuvaneshwari', 'Hoes kepper', 17000.00, 1, 180000.00, 21000.00, 'Chennai Velachery', 'Chennai Velachery', '2509030006', '1', '2', 'upload_files/candidate_tracker/32788282860_resume.docx', NULL, '1', '2025-09-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-09-03 06:10:58', 154, '2025-09-03 03:22:28', 0, NULL, 1),
(26586, 'mohanraj', '6', '8248808852', '9976439792', 'mr8009761@gmail.com', '2001-07-05', 24, '2', '2', 'Seenivasan m', 'Carpenter', 230000.00, 2, 0.00, 150000.00, 'Ranipet dt.soraiyur', 'Velachery.chennai', '2509030007', '1', '1', 'upload_files/candidate_tracker/3445604049_Untitleddesign1.pdf202506080826190000.pdf202508251859400000.pdf', NULL, '1', '2025-09-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-09-03 06:14:52', 154, '2025-09-03 03:22:09', 0, NULL, 1),
(26587, 'Sharmimani', '6', '6381620846', '7449030765', 'sharmimoni376@gmail.com', '2000-07-09', 25, '2', '1', 'R.Sudhagar', 'Senior telecaller', 22000.00, 2, 13456.00, 18000.00, 'Thiruvannamalai', 'Redhills', '2509030008', '1', '2', 'upload_files/candidate_tracker/86525298262_Resume.docx', NULL, '1', '2025-09-04', 0, '', '3', '59', '2025-09-08', 204000.00, '', NULL, '2025-09-22', '2', 'Communication Ok have exp in collections recently married fresher for insurance sales can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '2025-09-08', 1, '2025-09-03 06:35:43', 60, '2025-09-05 04:12:24', 0, NULL, 1),
(26588, 'Arul pandi S', '13', '7200687045', '9629869952', 'arulpandi9629@gmail.com', '2001-11-13', 23, '3', '2', 'Shanmugapandi A', 'Former', 25000.00, 2, 0.00, 20000.00, 'Chennai', 'Saidapet chennai', '2509030009', '', '1', 'upload_files/candidate_tracker/56498973216_17490228267111.pdf', NULL, '1', '2025-09-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-09-03 06:39:48', 159, '2025-09-03 12:43:19', 0, NULL, 1),
(26589, '', '0', '9481123871', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509030010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-03 06:58:28', 0, NULL, 0, NULL, 1),
(26590, 'YOSHIKA N', '6', '7200010998', '9884014671', 'nyoshika03@gmail.com', '2003-04-21', 22, '2', '2', 'Natarajan', 'Coolie', 120000.00, 1, 16000.00, 18000.00, 'Tiruvottiyur (Chennai)', 'Tiruvottiyur', '2509030011', '1', '2', 'upload_files/candidate_tracker/59022040492_20250904115443.pdf', NULL, '1', '2025-09-04', 0, '', '3', '59', '2025-09-08', 204000.00, '', '3', '2025-12-30', '2', 'Communication Ok have exp in Manapurram customer handling can give a try and check for our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'CA130', '5151', '2025-09-08', 1, '2025-09-03 03:51:53', 60, '2025-09-05 03:59:17', 0, NULL, 1),
(26591, 'X EDWIN RAJ', '6', '9486112209', '9940934008', 'edwinraj1212@gmail.com', '2010-09-04', 0, '2', '2', 'Sagayamary', 'House wife', 30000.00, 3, 325000.00, 350000.00, 'Thanjavur', 'Chennai', '2509040001', '1', '2', 'upload_files/candidate_tracker/54164606974_EdwinResume11.docx', NULL, '1', '2025-09-04', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-09-04 04:24:29', 154, '2025-09-04 06:12:19', 0, NULL, 1),
(26592, 'Hariharan Srinivasan', '6', '9360917123', '9345189898', 'srinihari67177@gmail.com', '2003-09-23', 21, '1', '2', 'Sumathi', 'Teacher', 20000.00, 0, 0.00, 19000.00, 'Rasipuram', 'Thipilicane', '2509040002', '', '1', 'upload_files/candidate_tracker/60856747163_Hariharan.pdf.pdf', NULL, '1', '2025-09-04', 0, 'C99197', '3', '59', '2025-09-08', 192000.00, '', '3', '2025-10-25', '2', 'Communication Ok Fresher for our role internal team reference can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '2025-09-08', 1, '2025-09-04 04:27:14', 60, '2025-09-05 03:57:58', 0, NULL, 1),
(26593, '', '0', '7305270350', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509040003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-04 05:39:10', 0, NULL, 0, NULL, 1),
(26594, '', '0', '9944966364', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509040004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-04 05:43:00', 0, NULL, 0, NULL, 1),
(26595, 'Iyyappan', '6', '8015920841', '6382385087', 'parthiban120669@gmail.com', '2004-02-10', 21, '2', '2', 'Parthiban', 'Farmar', 30.00, 3, 0.00, 15.00, 'Vandavasi', 'Vyasarpadi', '2509040005', '1', '1', 'upload_files/candidate_tracker/15482820844_iyyappan.pdf', NULL, '1', '2025-09-04', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2025-09-04 06:23:33', 154, '2025-09-04 06:12:57', 0, NULL, 1),
(26596, 'R K HARIHARAN', '6', '9092264949', '9842680657', 'harankumar2829@gmail.com', '2003-02-15', 22, '2', '2', 'R KUMAR', 'Daily wages', 12000.00, 1, 23000.00, 25000.00, 'Karur', 'Ashok Nagar', '2509040006', '1', '2', 'upload_files/candidate_tracker/81369044455_HariHaranRKResume.pdf', NULL, '1', '2025-09-04', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-09-04 06:25:05', 154, '2025-09-04 06:13:24', 0, NULL, 1),
(26597, '', '0', '9972237028', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509040007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-04 06:55:40', 0, NULL, 0, NULL, 1),
(26598, 'shyam sundar', '13', '8637618421', '', 'mshyamsundar3131@gmail.com', '1998-12-06', 26, '2', '2', 'maheshkumar', 'private company', 20000.00, 2, 0.00, 25000.00, 'ernakulam', 'ernakulam', '2509040008', '1', '1', 'upload_files/candidate_tracker/61668428501_Resume03062025114605am.pdf', NULL, '1', '2025-09-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-09-04 07:03:32', 1, '2025-09-04 07:24:46', 0, NULL, 1),
(26599, 'PARTHIBAN M', '5', '8667319670', '', 'mparthibanparthi669721@gmail.com', '1997-06-06', 28, '1', '1', 'Jayashree', 'Self employed', 25000.00, 1, 25000.00, 28000.00, 'Basavanagudi', 'tata silk farm', '2509040009', '', '2', 'upload_files/candidate_tracker/7278601977_parthi1111.pdf1.pdf', NULL, '1', '2025-09-04', 1, '.', '3', '59', '2025-09-12', 264000.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp in sales but much of field relocated to bangalore open for our roles can give a try and check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55555', '5151', '2025-09-12', 1, '2025-09-04 09:50:31', 60, '2025-09-11 07:26:58', 0, NULL, 1),
(26600, '', '0', '6383431778', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509040010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-04 10:11:22', 0, NULL, 0, NULL, 1),
(26601, '', '0', '6382627126', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509040011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-04 10:52:19', 0, NULL, 0, NULL, 1),
(26602, 'SURESH P', '6', '9944111950', '', 'kpsureshavk@gmail.com', '2002-06-22', 23, '2', '2', 'Pandurangan', 'Weavers', 25000.00, 1, 18000.00, 20000.00, 'THIRUTHANI', 'TAMBARAM', '2509040012', '1', '2', 'upload_files/candidate_tracker/46068826724_SURESH.P.Resume.pdf', NULL, '1', '2025-09-06', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-09-04 12:00:11', 154, '2025-09-06 11:10:01', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26603, 'Kabilanmadhavan', '6', '9445503612', '', 'bakikabilan1518@gmail.com', '2004-05-22', 21, '2', '2', 'K.madhavan', 'Plumber', 20000.00, 1, 0.00, 16000.00, 'Singa perumal koil', 'Chrompet', '2509040013', '1', '1', 'upload_files/candidate_tracker/94016718362_kabilan.pdf', NULL, '1', '2025-09-05', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-09-04 02:03:07', 159, '2025-09-05 11:00:27', 0, NULL, 1),
(26604, 'Mohammed aslam', '6', '6382627125', '8428433625', 'amohammed9949@gmail.com', '2005-01-14', 20, '2', '2', 'Samirudeen', 'No', 15000.00, 1, 0.00, 18000.00, 'Sp koil,chengalpattu', 'Chromepet', '2509040014', '1', '1', 'upload_files/candidate_tracker/8860640152_mohammedaslamresumebs2.pdf', NULL, '1', '2025-09-05', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-09-04 02:14:39', 154, '2025-09-05 03:39:32', 0, NULL, 1),
(26605, '', '0', '8015294492', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509040015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-04 06:05:52', 0, NULL, 0, NULL, 1),
(26606, 'jahannathan', '4', '6383169622', '', 'janajahan7@gmail.com', '2001-07-06', 24, '2', '2', 'vedhalingam', 'tnj art plate', 30000.00, 3, 0.00, 14.00, 'Kandhithawoostha line melalangam thanajavur', 'Kandhithawoostha line melalangam Thanjavur', '2509050001', '1', '1', 'upload_files/candidate_tracker/56093414277_JAHANNATHANCV.pdf.pdf.pdf', NULL, '1', '2025-09-05', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT SUITE FOR TEAM', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-09-05 05:08:42', 154, '2025-09-05 12:11:47', 0, NULL, 1),
(26607, 'DHINESH KUMAR V', '2', '8778635009', '', 'dinesh5047dk@gmail.com', '1999-04-10', 26, '2', '2', 'renukadevi', 'business', 60000.00, 2, 335000.00, 650000.00, 'Chennai', 'Chennai', '2509050002', '1', '2', 'upload_files/candidate_tracker/97074524870_DhineshKumarVfullStackDevResume.pdf', NULL, '1', '2025-09-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-09-05 05:46:16', 159, '2025-09-08 02:37:38', 0, NULL, 1),
(26608, 'haseena begum', '6', '9087612006', '7305092111', 'hasee3103@gmail.com', '2004-03-31', 21, '2', '2', 'Mohamed younus.M', 'Security Officer', 40000.00, 1, 15000.00, 18000.00, 'Guindy', 'Guindy', '2509050003', '1', '2', 'upload_files/candidate_tracker/40039250546_Resume08072025075501pm.PDF', NULL, '1', '2025-09-05', 0, '', '3', '59', '2025-09-08', 204000.00, '', '3', '2026-01-03', '2', 'selected for gopinath team. have experience in justdial. lets check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '2025-09-08', 1, '2025-09-05 06:19:58', 60, '2025-09-06 03:11:06', 0, NULL, 1),
(26609, 'Shakthi V', '6', '7603850969', '7299180593', 'shakthi1573@gmail.com', '2003-07-15', 22, '2', '2', 'Venkateshan', 'Mesan', 20000.00, 1, 0.00, 16000.00, 'Guindy', 'Guindy', '2509050004', '1', '1', 'upload_files/candidate_tracker/15916670515_Resume08082025072609pm.pdf', NULL, '1', '2025-09-05', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'CA130', '5151', '1970-01-01', 1, '2025-09-05 06:20:07', 154, '2025-09-05 01:46:03', 0, NULL, 1),
(26610, 'Sona Christy A N', '6', '8925400752', '9952356383', 'christysona2314@gmail.com', '2003-09-14', 21, '2', '2', 'ArokiyaNavamani A', 'Driver', 15000.00, 2, 0.00, 18000.00, 'Pammal , chennai', 'Pammal, chennai', '2509050005', '1', '1', 'upload_files/candidate_tracker/36113180890_ChristySona.pdf', NULL, '1', '2025-09-06', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-09-05 07:28:41', 154, '2025-09-06 10:52:48', 0, NULL, 1),
(26611, 'Dhanushri.S', '11', '9994915376', '', 'dhanucreator24@gmail.com', '2004-08-04', 21, '2', '2', 'Rajam .S', 'Self employe', 10000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Selaiyur', '2509050006', '1', '1', 'upload_files/candidate_tracker/97049973629_resume.pdf', NULL, '1', '2025-09-05', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-09-05 07:31:22', 154, '2025-09-05 01:46:56', 0, NULL, 1),
(26612, 'Muthu Priya S', '11', '8925396107', '', 'priyasankar41203@gmail.com', '2003-12-04', 21, '2', '2', 'D Sankara Narayanan', 'Dental Technician', 30000.00, 1, 0.00, 15000.00, 'West Mambalam', 'West mambalam', '2509050007', '1', '1', 'upload_files/candidate_tracker/42879308168_PriyaResumecopy.pdf', NULL, '1', '2025-09-05', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-09-05 07:32:22', 154, '2025-09-05 01:46:38', 0, NULL, 1),
(26613, 'Vaishnavi muthuraj', '6', '9417542419', '', 'vaissmuthuraj@gmail.com', '2003-06-10', 22, '2', '2', 'Muthuraj', 'Cooli', 80000.00, 2, 0.00, 15000.00, 'Tenkasi', 'Perungalathur', '2509050008', '1', '1', 'upload_files/candidate_tracker/24661278688_Vaishnavi..pdf', NULL, '1', '2025-09-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-09-05 07:34:31', 159, '2025-09-05 02:34:35', 0, NULL, 1),
(26614, 'Jenifer', '4', '9003318247', '', 'jeniferpannerselvam17@gmail.com', '2004-11-18', 20, '2', '2', 'Panner Selvam', 'Cooli', 80000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Poonamalle', '2509050009', '1', '1', 'upload_files/candidate_tracker/72196571309_jeni.pdf', NULL, '2', '2025-09-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-09-05 08:52:46', 1, '2025-09-05 09:10:53', 0, NULL, 1),
(26615, 'Kamali Venkatesan', '4', '8220677870', '9384330038', 'kamalivengatesan8@gmail.com', '2003-05-18', 22, '2', '2', 'Venkatesan', 'Mason', 20000.00, 1, 21000.00, 18000.00, 'Thanjavur', 'Thanjavur', '2509050010', '1', '2', 'upload_files/candidate_tracker/89610536502_resume11.pdf', NULL, '1', '2025-09-06', 30, '', '3', '59', '2025-09-09', 204000.00, '', '3', '2025-10-30', '1', 'Communication Ok have exp in same domain for 1.5 yrs can be trained in our roles worked in City union bank chennai will check in training and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', '5151', '2025-09-09', 1, '2025-09-05 01:30:16', 60, '2025-09-08 07:18:19', 0, NULL, 1),
(26616, '', '0', '8270422621', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509050011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-05 01:34:36', 0, NULL, 0, NULL, 1),
(26617, 'Muthu esakki', '21', '7812821350', '9843028035', 'Bavani2572002@gmail.com', '2002-07-25', 23, '2', '2', 'Tharmar', 'No', 15000.00, 7, 2.00, 20000.00, 'Tuticorin', 'Tuticorin', '2509050012', '1', '2', 'upload_files/candidate_tracker/78619887665_MuthuesakkiResume1.pdf', NULL, '1', '2025-09-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-09-05 01:37:12', 1, '2025-09-12 02:21:41', 0, NULL, 1),
(26618, '', '0', '8825792412', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509060001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-06 01:13:51', 0, NULL, 0, NULL, 1),
(26619, 'Nandhini selvakumar', '6', '7530021208', '7538563975', 'nandhinilinna1208@gmail.com', '2002-08-12', 23, '2', '2', 'Selvakumar', 'Travels', 50000.00, 0, 20000.00, 22000.00, 'Koyambedu', 'Koyambedu', '2509060002', '1', '2', 'upload_files/candidate_tracker/51558895046_ResumeNandhini.pdf', NULL, '1', '2025-09-06', 3, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-09-06 06:11:04', 154, '2025-09-06 12:25:35', 0, NULL, 1),
(26620, 'sivakumar', '6', '9361861160', '9500308098', 'Sivakumar182003@gmail.com', '2003-01-18', 22, '2', '2', 'Parent', 'Nurse', 20000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2509060003', '1', '1', 'upload_files/candidate_tracker/78250674816_Sivaresumebpo.pdf', NULL, '1', '2025-09-06', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also have star agent person is frnd. sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2025-09-06 06:32:51', 154, '2025-09-06 02:35:19', 0, NULL, 1),
(26621, 'Arulmozhi M', '6', '8925052483', '9080591295', 'mozhi4719@gmail.com', '2000-06-01', 25, '2', '2', 'Mani G', 'Cooli', 15.00, 3, 20.00, 23.00, 'Kallakurichi', 'Valluvarkottam', '2509060004', '1', '2', 'upload_files/candidate_tracker/55861798443_M.ARULMOZHILRESUMEnew.pdf', NULL, '1', '2025-09-06', 30, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-09-06 06:47:44', 154, '2025-09-06 02:35:41', 0, NULL, 1),
(26622, 'VIGNESH ALEX VICTOR', '6', '9363354386', '9942497751', 'vigneshvictor2003@gmail.com', '2003-03-08', 22, '2', '2', 'Alex Victor', 'Cooli', 18000.00, 1, 22000.00, 25000.00, 'Nagercoil', 'Chrompet', '2509060005', '1', '2', 'upload_files/candidate_tracker/64693799445_VigneshCV.pdf', NULL, '1', '2025-09-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-09-06 06:49:21', 1, '2025-09-06 06:56:40', 0, NULL, 1),
(26623, 'Logeshwaran S', '2', '7603800787', '6374309446', 'logeshsaran55@gmail.com', '1996-10-27', 28, '2', '1', 'manju saranya', 'full stack developer', 40000.00, 1, 14000.00, 30000.00, 'udumalpet', 'udumalpet', '2509060006', '1', '2', 'upload_files/candidate_tracker/88163983331_LogeshFullStackDeveloper.pdf', NULL, '1', '2025-09-10', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-09-06 07:08:56', 154, '2025-09-10 02:55:40', 0, NULL, 1),
(26624, 'Sumavathi M', '28', '9113535556', '', 'sumavathi100@gmail.com', '2003-09-20', 21, '3', '2', 'Eshwar M', 'Brother student', 2000.00, 3, 0.00, 18.00, 'Kolar', 'Kolar', '2509060007', '', '1', 'upload_files/candidate_tracker/76104141454_SumavathiMResumeAligned2.pdf', NULL, '1', '2025-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-06 07:32:21', 1, '2025-09-06 07:35:49', 0, NULL, 1),
(26625, '', '0', '9786054351', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509060008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-06 11:54:48', 0, NULL, 0, NULL, 1),
(26626, 'Swetha', '6', '8939288460', '8825488861', 'Swethaesthar01@gmail.com', '2004-11-20', 20, '2', '2', 'Devika', 'tailor', 15000.00, 1, 0.00, 15000.00, 'No:309/3rd fr kailasam st tondiarpet chennai 81', 'No:309/3rd fr kailasam st tondiarpet chennai 81', '2509060009', '1', '1', 'upload_files/candidate_tracker/54784654190_BlueandWhiteGradientModernPreSchoolTeacherResume202509052107430000.pdf', NULL, '1', '2025-09-09', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and perfomance is ok.but sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-09-06 01:39:45', 154, '2025-09-09 12:00:08', 0, NULL, 1),
(26627, 'Manimaran.n', '6', '9363578637', '6382190124', 'randymani160921@gmail.com', '2001-09-16', 23, '2', '2', 'Nagaraj', 'Buisness', 100000.00, 780, 0.00, 15000.00, 'Chennai nerkundram', 'Chennai nerkundram', '2509070001', '1', '1', 'upload_files/candidate_tracker/63510209923_GrayandWhiteSimpleCleanResume.pdf', NULL, '1', '2025-09-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-09-07 12:35:41', 154, '2025-09-08 05:02:09', 0, NULL, 1),
(26628, 'Shirley Cella', '6', '6382190124', '7010491934', 'shirleycella880420@gmail.com', '2004-08-09', 21, '2', '2', 'David udaya kumar', 'Business', 75000.00, 1, 190000.00, 300000.00, '5/vijayalakshmi nagar, anakaputhur', '5/vijaylakshmi nagar, anakaputhur', '2509070002', '1', '2', 'upload_files/candidate_tracker/71133113427_Shirleypdf.pdf', NULL, '1', '2025-09-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-09-07 12:36:55', 154, '2025-09-08 05:02:27', 0, NULL, 1),
(26629, 'mohanprasath', '6', '9940500739', '', 'mohanprasath1022@gmail.com', '2003-10-22', 21, '2', '2', 'thirunavukarasu', 'silver business', 50000.00, 1, 21000.00, 21000.00, 'chrompet', 'chrompet', '2509080001', '1', '2', 'upload_files/candidate_tracker/35117179002_DocumentfromMohan.pdf', NULL, '1', '2025-09-08', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-09-08 02:39:05', 154, '2025-09-08 12:25:50', 0, NULL, 1),
(26630, 'RAMJI E', '4', '7305783529', '9791592202', 'ramjiezhil@gmail.com', '2001-07-13', 24, '3', '2', 'Arivokodi', 'Hose wife', 4500.00, 1, 0.00, 1200.00, 'Thanjavur', 'Thanjavur', '2509080002', '', '1', 'upload_files/candidate_tracker/31007079537_RamjiResume1.docx', NULL, '1', '2025-09-08', 0, '', '3', '59', '2025-09-11', 156000.00, '', '4', '2025-09-22', '2', 'communication ok have exp in Muthoot for 7 months previously we have given offer earlier and not joined now rehire can give a try and check', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '2025-09-11', 1, '2025-09-08 04:38:15', 60, '2025-09-11 10:33:00', 0, NULL, 1),
(26631, 'Narmatha.M', '4', '8220773568', '9600657649', 'nandhinimuru.com@gmail.com', '2005-01-13', 20, '2', '2', 'Murugavel', 'Fruit shop', 60000.00, 1, 0.00, 15000.00, '11 E seppanavaari thenkarai 4 th Street', 'Thanjavur', '2509080003', '1', '1', 'upload_files/candidate_tracker/6370655779_Narmatha1.pdf', NULL, '1', '2025-09-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not performing well', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-09-08 04:49:13', 154, '2025-09-08 11:00:23', 0, NULL, 1),
(26632, 'Jerlin. R', '4', '8110803468', '7094909739', 'jerlinraja142@gmail.com', '2004-10-07', 20, '2', '2', 'Raja. P', 'Demolison work', 80000.00, 1, 0.00, 15000.00, '293C Fatima nager nk road thanjavur', '293C Fatima nager no road thanjavur', '2509080004', '1', '1', 'upload_files/candidate_tracker/20305223022_jerlinresumepdf.pdf', NULL, '1', '2025-09-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-09-08 04:49:52', 154, '2025-09-08 11:02:12', 0, NULL, 1),
(26633, 'Akash selvaraj', '11', '9488263121', '', 'Akashselvaraj2003@gmail.com', '2003-11-09', 21, '2', '2', 'SELVARAJ', 'Business', 500000.00, 1, 0.00, 3000.00, 'Shollingnallur', 'Shollingnallur', '2509080005', '1', '1', 'upload_files/candidate_tracker/46309227334_AKASHRESUME.PDF2025080118422500001.pdf', NULL, '1', '2025-09-08', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-09-08 05:03:22', 154, '2025-09-08 11:07:25', 0, NULL, 1),
(26634, 'Deenadayalan', '4', '7010111986', '', 'dinadayalan828@gmail.com', '2005-07-16', 20, '2', '2', 'Sathiya seelan', 'Driver', 12000.00, 2, 0.00, 13000.00, 'South Street palliagraharam', 'South Street palliagraharam', '2509080006', '1', '1', 'upload_files/candidate_tracker/79073109619_dheena.docx', NULL, '1', '2025-09-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is ok with the profile completed bba ..fresher...25 passed...father driver...2 brother....parttime...in roadside shop.....work...location 10km.....ready to ARRANGE LAPTOP........salary 12k expected..imeediate joining...', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-09-08 05:07:21', 154, '2025-09-08 11:03:40', 0, NULL, 1),
(26635, 'Prakash R', '6', '9361388208', '8220913208', 'prakashprakash2196@gmail.com', '2002-05-06', 23, '2', '2', 'Selvi', 'Farmer', 13000.00, 1, 0.00, 18000.00, 'T-Nagar,Chennai', 'T-Nagar,Chennai', '2509080007', '1', '1', 'upload_files/candidate_tracker/7391251799_CV2024092109474294.pdf', NULL, '3', '2025-09-08', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2025-09-08 05:11:56', 154, '2025-09-08 12:24:49', 0, NULL, 1),
(26636, 'MI FAIZAL AHMED', '6', '7010407009', '8939314012', 'faizx.al15@gmail.com', '2003-11-15', 21, '2', '2', 'H. MUBARAK BASHA', 'Water can business', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2509080008', '1', '1', 'upload_files/candidate_tracker/30042002761_MIFAIZALAHMED2.pdf', NULL, '3', '2025-09-08', 0, '', '3', '59', '2025-09-11', 192000.00, '', '3', '2026-01-31', '1', 'Communication ok fresher open for sales profiles need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CA130', '5151', '2025-09-11', 1, '2025-09-08 05:34:36', 60, '2025-09-10 07:14:19', 0, NULL, 1),
(26637, '', '0', '6369998779', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509080009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-08 05:53:48', 0, NULL, 0, NULL, 1),
(26638, 'hariprasanth', '6', '7871949877', '', 'hariprasanth783@gmail.com', '1998-11-08', 26, '3', '2', 'venkatesan', 'welding', 420000.00, 1, 0.00, 35000.00, 'chennai', 'chennai', '2509080010', '', '1', 'upload_files/candidate_tracker/39254370934_Hariresumenew.pdf', NULL, '1', '2025-09-08', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-09-08 05:59:24', 154, '2025-09-08 03:33:09', 0, NULL, 1),
(26639, 'Preethi', '4', '9361331608', '', 'preethisumathi@gmail.com', '2001-12-19', 23, '3', '2', 'Kuppusamy', 'Farmer', 10000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2509080011', '', '1', 'upload_files/candidate_tracker/37330087692_Preethi.pdf', NULL, '1', '2025-09-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2025-09-08 06:13:53', 154, '2025-09-08 03:00:08', 0, NULL, 1),
(26640, 'dinesh', '6', '8531867268', '', 'mdineshkumae336@gmail.com', '1997-11-18', 27, '2', '2', 'm devaki', 'handloom wiever', 10000.00, 1, 18000.00, 20000.00, 'selam', 'selam', '2509080012', '1', '2', 'upload_files/candidate_tracker/93659156316_dineshreume.pdf', NULL, '1', '2025-09-08', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-09-08 06:42:23', 154, '2025-09-08 05:00:21', 0, NULL, 1),
(26641, 'Gunasekar k', '6', '9025348522', '9884748784', 'gunasekar143451@gmail.com', '2002-01-14', 23, '2', '2', 'Umamaheshwari', 'Sales', 15000.00, 1, 0.00, 21000.00, 'Chennai', 'Chennai', '2509080013', '1', '1', 'upload_files/candidate_tracker/33242522609_Resume.pdf', NULL, '1', '2025-09-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-09-08 07:00:18', 154, '2025-09-08 05:01:50', 0, NULL, 1),
(26642, 'Mohamed Abdul Kalam', '6', '6385859012', '', 'Abuabu3233@hotmail.com', '2002-05-26', 23, '2', '2', 'Haja meeran mohideen', 'Shopkeeper', 33000.00, 2, 33000.00, 33000.00, 'Tenkasi', 'Chennai', '2509080014', '1', '2', 'upload_files/candidate_tracker/9268117736_CV.pdf', NULL, '1', '2025-09-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-09-08 12:21:15', 154, '2025-09-09 11:45:09', 0, NULL, 1),
(26643, 'Lazarus Thoguru', '5', '9916779482', '', 'lazarusthoguru2@gmail.com', '1997-10-30', 27, '2', '2', 'Isaac Thoguru', 'Late', 1.00, 1, 27000.00, 30000.00, 'Bangalore', 'Bangalore', '2509080015', '1', '2', 'upload_files/candidate_tracker/58698418762_CV2025090310465859.pdf', NULL, '1', '2025-09-09', 0, '', '3', '59', '2025-09-15', 300000.00, '', '5', '1970-01-01', '1', 'Selecetd for RM role Have exp in sales calling can be trained in our roles fresher for insurance domain', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1031', '', '55555', '5151', '2025-09-15', 1, '2025-09-08 12:53:31', 162, '2025-09-24 12:13:55', 0, NULL, 1),
(26644, 'Bhargavi B', '6', '7483756159', '', 'byrappabhargavi9@gmail.com', '2001-12-12', 23, '2', '2', 'Byrappa', 'Agriculture', 15000.00, 2, 30000.00, 32000.00, 'Ammagarahalli', 'Banglore', '2509080016', '1', '2', 'upload_files/candidate_tracker/22404997994_CV2025090310451866.pdf', NULL, '1', '2025-09-09', 0, '', '3', '59', '2025-09-15', 276000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in calling but not a relevant domain can be trained in our roles check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1031', '', '55671', '55555', '2025-09-15', 1, '2025-09-08 12:54:03', 60, '2025-09-13 02:56:45', 0, NULL, 1),
(26645, '', '0', '8667393010', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509080017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-08 02:10:15', 0, NULL, 0, NULL, 1),
(26646, 'Prasad Ramadass', '6', '6382044542', '', 'prasanthtyson783@gmail.com', '1999-10-20', 25, '2', '2', 'Lakshmi Ramadass', 'Customer relationship executive', 40000.00, 1, 0.00, 19000.00, 'No.147 Nagathaman kovil st, Poonamallee 600123', 'NO 1414 (34, Shenoy nagar Main Rd, 600010', '2509080018', '1', '1', 'upload_files/candidate_tracker/24994620151_PRASADRAMADASS11.pdf', NULL, '1', '2025-09-09', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is not suitable for sales profile, sounds not good, interested in Agent feild, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-09-08 08:06:42', 154, '2025-09-09 11:46:05', 0, NULL, 1),
(26647, '', '0', '9597053559', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-09 02:40:00', 0, NULL, 0, NULL, 1),
(26648, 'Ramya.S', '6', '8056112704', '', 'ramya150503@gmail.com', '2003-05-15', 22, '2', '2', 'J Sridhar', 'Electrician', 12000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2509090002', '45', '1', 'upload_files/candidate_tracker/32871734073_ResumeofRamya.pdf', NULL, '1', '2025-09-09', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-09-09 04:26:36', 154, '2025-09-09 12:00:28', 0, NULL, 1),
(26649, 'Vishwa S', '6', '6374977056', '', 'vishwavisfeb17@gmail.com', '2002-02-17', 23, '2', '2', 'Saravanan.K.B', 'Weaver', 13000.00, 1, 0.00, 18000.00, 'Kumbakonam', 'Kumbakonam', '2509090003', '1', '2', 'upload_files/candidate_tracker/79718284883_VishwaCv.pdf', NULL, '1', '2025-09-09', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55864', '55566', '1970-01-01', 1, '2025-09-09 04:46:31', 154, '2025-09-09 11:59:32', 0, NULL, 1),
(26650, 'Vaanmathi.C', '4', '8015261309', '8883030401', 'vaan65460@gmail.com', '2000-12-15', 24, '1', '2', 'Chidambaram', 'Cashier', 120000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2509090004', '', '1', 'upload_files/candidate_tracker/2908620968_vaanmathi1757259216467.pdf', NULL, '1', '2025-09-09', 0, 'C99127', '3', '59', '2025-09-11', 156000.00, '', '3', '2025-12-08', '2', 'Communication Ok career gap for 2yrs internal team reference sounds confident let us try in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '2025-09-11', 1, '2025-09-09 04:52:10', 60, '2025-09-10 07:18:19', 0, NULL, 1),
(26651, 'Saraswati', '6', '8197621055', '', 'Saraswathi8494@Gmail.com', '2000-06-23', 25, '2', '1', 'Arun Kumar', 'Foundation', 30000.00, 3, 0.00, 16000.00, 'Bannergatta road', 'Bannergatta road', '2509090005', '1', '1', 'upload_files/candidate_tracker/74420022641_ResumeSaraswati.pdf', NULL, '1', '2025-09-09', 0, '', '3', '59', '2025-09-11', 204000.00, '', '1', '1970-01-01', '2', 'Communication Average career gap can give atry and check in our training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '2025-09-11', 1, '2025-09-09 05:15:25', 60, '2025-09-10 07:19:20', 0, NULL, 1),
(26652, 'Gokul Saran Saravanan', '13', '8903756517', '9942756517', 'gokulsaransaravanan@gmail.com', '2003-06-03', 22, '6', '2', 'Saravanan', 'Self employed', 30000.00, 1, 0.00, 350000.00, 'Salem', 'Salem', '2509090006', '', '1', 'upload_files/candidate_tracker/92049044236_GokulSaranSResume2.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:34:51', 1, '2025-09-09 08:08:57', 0, NULL, 1),
(26653, 'Ch. Diswanthkumar', '13', '7550269672', '', 'diswanthkumar.ch@gmail.com', '2003-08-26', 22, '5', '2', 'Ramanaiah. Ch', 'Transport business', 22500.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2509090007', '', '1', 'upload_files/candidate_tracker/92504047802_DiswanthkumarResume1.pdf', NULL, '1', '2025-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:38:07', 1, '2025-09-09 10:42:06', 0, NULL, 1),
(26654, '', '0', '9600831998', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509090008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-09 05:39:21', 0, NULL, 0, NULL, 1),
(26655, 'Guhan.R', '31', '9566511319', '8807256866', 'guhanrajan04@gmail.com', '2003-09-04', 22, '6', '2', 'RAJAN.S', 'DRIVER', 15000.00, 0, 0.00, 300000.00, 'NO :93 6TH C STREET THENDRAL NAGAR', 'THANJAVUR', '2509090009', '', '1', 'upload_files/candidate_tracker/33425350107_GUHANRESUME.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:39:24', 1, '2025-09-09 05:43:12', 0, NULL, 1),
(26656, 'Kalaiselvan Krishnan', '31', '9791551390', '9600507195', 'kalaikrishnak108@gmail.com', '2004-06-15', 21, '3', '2', 'Kalaimani', 'Smfg Manager', 50.00, 5, 0.00, 20.00, 'Pallavaram', 'Pallavaram', '2509090010', '', '1', 'upload_files/candidate_tracker/21589172623_kalai.pdf', NULL, '1', '2025-09-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:40:52', 1, '2025-09-09 05:43:51', 0, NULL, 1),
(26657, '', '0', '9361558274', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509090011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-09 05:40:59', 0, NULL, 0, NULL, 1),
(26658, 'VIJAY', '13', '9655097500', '9092688986', 'vijaystark517@gmail.com', '2003-02-17', 22, '6', '2', 'Murali', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Mahabalipuram', 'Mahabalipuram', '2509090012', '', '1', 'upload_files/candidate_tracker/78861449919_MvijayResume.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:41:07', 1, '2025-09-09 06:02:42', 0, NULL, 1),
(26659, '716055331679', '13', '8072388378', '', 'shanmugam25sb@gmail.com', '2000-03-25', 25, '5', '2', 'Basavan R', 'Conductor', 40000.00, 2, 22200.00, 35000.00, 'Krishnagiri', 'Ekkatuthagal, Chennai.', '2509090013', '', '2', 'upload_files/candidate_tracker/33536316540_ShanmugamBResume.pdf', NULL, '1', '2025-09-14', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:42:01', 1, '2025-09-09 05:55:27', 0, NULL, 1),
(26660, 'SELVARAJ M', '13', '9025670935', '', 'selva01042003@gmail.com', '2003-03-01', 22, '3', '2', 'Murugan', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Dindigul', 'Dindigul', '2509090014', '', '1', 'upload_files/candidate_tracker/25888464531_Resume15082025121412pm.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:43:41', 1, '2025-09-09 06:01:18', 0, NULL, 1),
(26661, 'Loorthu Rishwan', '2', '8072370028', '', 'loorthurishwan@gmail.com', '2004-01-25', 21, '5', '2', 'Tharmapitchai', 'Fisherman', 7000.00, 1, 0.00, 2.00, 'Chennai', 'Taramani, Chennai', '2509090015', '', '1', 'upload_files/candidate_tracker/2120787258_LoorthuRishwan1.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:46:37', 1, '2025-09-09 05:52:22', 0, NULL, 1),
(26662, 'Gunaseelan kalidass', '13', '6369917668', '8531807069', 'mrguna2504@gmail.com', '2002-09-10', 22, '6', '2', 'Kalidass G', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Sethiyathope, Cuddalore', 'Kodambakkam, chennai', '2509090016', '', '1', 'upload_files/candidate_tracker/97418325578_GunaseelanResumeFs1.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:48:14', 1, '2025-09-09 06:45:24', 0, NULL, 1),
(26663, 'KALIDASH .M', '13', '9786453653', '9940725687', 'kalidashm71@gmail.com', '2003-04-25', 22, '3', '2', 'Murugan', 'Daily wage', 75000.00, 1, 0.00, 17000.00, 'Dindigul', 'Dindigul', '2509090017', '', '1', 'upload_files/candidate_tracker/79716508859_kalidashcvresume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:52:22', 1, '2025-09-09 05:56:12', 0, NULL, 1),
(26664, 'Danush', '13', '7200246521', '8682894439', 'rdhanush329@gmail.com', '2003-12-04', 21, '6', '2', 'Ravi', 'Auto Driver', 10000.00, 1, 0.00, 25000.00, 'Ramapuram, Chennai', 'Ramapuram Chennai', '2509090018', '', '1', 'upload_files/candidate_tracker/6897595771_Dhanushresume.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:52:34', 1, '2025-09-09 02:07:28', 0, NULL, 1),
(26665, '', '0', '9791475790', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509090019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-09 05:53:40', 0, NULL, 0, NULL, 1),
(26666, 'Rajesh R', '13', '7305706778', '', 'rajtrk730@gmail.com', '2003-08-03', 22, '6', '2', 'Ramakrishnan D', 'Farmer', 10000.00, 1, 0.00, 400000.00, 'Thirukovilur', 'Chennai', '2509090020', '', '1', 'upload_files/candidate_tracker/55147016214_RAJESHRFullStackDeveloper.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:55:58', 1, '2025-09-09 06:01:13', 0, NULL, 1),
(26667, 'Daniel Raj k', '13', '8438361407', '', 'danielraj2625@gmail.com', '2004-07-14', 21, '6', '2', 'Kirubanandhan', 'Worker', 95000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2509090021', '', '1', 'upload_files/candidate_tracker/48795879473_SoftwareEngineerresume2.pdf', NULL, '1', '2025-09-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 05:56:46', 1, '2025-09-12 06:18:52', 0, NULL, 1),
(26668, 'Santhoshkumar S', '13', '8190835587', '9965640290', 'cskrajtvm@gmail.com', '2003-11-20', 21, '5', '2', 'Subbaraj R', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'Tenkasi', 'Chennai', '2509090022', '', '1', 'upload_files/candidate_tracker/96621525846_SanthoshkumarResume2.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 06:00:18', 1, '2025-09-09 06:03:42', 0, NULL, 1),
(26669, 'Rajakumari iruthayaraj', '5', '8778964410', '', 'rajakumari91197@gmail.com', '1997-11-09', 27, '2', '2', 'Iruthayaraj', 'Staff', 12000.00, 0, 35000.00, 42000.00, 'Kumbakonam', 'Chennai', '2509090023', '1', '2', 'upload_files/candidate_tracker/80473405406_RAJAKUMARI.IRUTHAYARAJRESUME.PDF.pdf', NULL, '1', '2025-09-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-09-09 06:03:17', 1, '2025-09-09 06:06:09', 0, NULL, 1),
(26670, 'KISHOREKUMAR RAJKUMAR', '13', '6369912047', '', 'kishorekumarrajkumar2004@gmail.com', '2004-06-26', 21, '5', '2', 'RajKumar', 'Painter', 20000.00, 1, 240000.00, 300000.00, 'Nagapattinam', 'Nagapattinam', '2509090024', '', '2', 'upload_files/candidate_tracker/77881543205_kishorekumar20250825.pdf', NULL, '2', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 06:06:17', 1, '2025-09-09 06:20:10', 0, NULL, 1),
(26671, '', '0', '9843206086', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509090025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-09 06:06:39', 0, NULL, 0, NULL, 1),
(26672, 'Gokula Prasanna', '31', '7339242008', '', 'kgokulaprasanna@gmail.com', '1994-11-19', 30, '2', '2', 'Kamalakkannan', 'Business', 50000.00, 1, 300000.00, 450000.00, 'Batlagundu', 'Chennai', '2509090026', '1', '2', 'upload_files/candidate_tracker/73316868367_GokulaPrasannaK.pdf', NULL, '1', '2025-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2025-09-09 06:13:35', 1, '2025-09-09 06:23:46', 0, NULL, 1),
(26673, 'ANANTH', '13', '9361688291', '9344332256', 'ananthkarthi18@gmail.com', '2004-04-07', 21, '5', '2', 'Shanmugaraj K', 'Father', 20000.00, 2, 0.00, 300000.00, 'Sivakasi', 'Chennai', '2509090027', '', '1', 'upload_files/candidate_tracker/46424477892_AnanthJavaDeveloper07.pdf', NULL, '1', '2025-09-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 06:15:54', 1, '2025-09-09 06:25:12', 0, NULL, 1),
(26674, 'BHARATH KUMAR N', '13', '7305293707', '', 'bharathkumar231003@gmail.com', '2003-10-23', 21, '5', '2', 'Nanda Kumar', 'News Editor', 180000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2509090028', '', '1', 'upload_files/candidate_tracker/53145368459_BHARATHRESUME.pdf', NULL, '1', '2025-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 06:18:16', 1, '2025-09-09 06:42:06', 0, NULL, 1),
(26675, 'Naveenkumar N', '13', '8610840667', '', 'naveenkumarsivasiva1234@gmail.com', '2001-10-14', 23, '3', '2', 'Narayanasamy S', 'Farmer', 7000.00, 1, 0.00, 350000.00, 'Tiruvannamalai', 'Chennai', '2509090029', '', '1', 'upload_files/candidate_tracker/71490465495_NaveenkumarN1.pdf', NULL, '2', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 06:28:28', 1, '2025-09-09 06:31:11', 0, NULL, 1),
(26676, '', '0', '8610890384', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509090030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-09 06:37:11', 0, NULL, 0, NULL, 1),
(26677, 'PRABHULING M PHULAR', '5', '6363857255', '', 'abhip4u7747@gmail.com', '1992-06-10', 33, '1', '1', 'KOMALA', 'Housewife', 300000.00, 6, 19800.00, 30000.00, 'ALOOR(B) SUNTANUR ALAND GULBARGA', 'Near Yallamma Temple Electronic City Bangalore', '2509090031', '', '2', 'upload_files/candidate_tracker/13750414839_prabhuling.resume1.pdf', NULL, '1', '2025-09-09', 0, 'CA168', '3', '59', '2025-09-15', 400000.00, '', '1', '1970-01-01', '1', 'Solid exp in bluechip for 12yrs based on manager approval we have given him the pack', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55555', '5151', '2025-09-15', 1, '2025-09-09 06:40:05', 60, '2025-09-13 02:58:44', 0, NULL, 1),
(26678, 'Vignesh B', '31', '6381098422', '', 'vigneshbala6381@gmail.com', '2004-05-31', 21, '6', '2', 'Balamurugan P', 'Civil engineer', 50000.00, 1, 0.00, 20000.00, 'no 48 aishwaryam apartment Rajiv nagar nemilicheri', 'Pattabiram', '2509090032', '', '1', 'upload_files/candidate_tracker/82585375861_VigneshResumeonline.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 06:44:54', 1, '2025-09-09 06:49:31', 0, NULL, 1),
(26679, 'santhoshkumar n', '6', '9884560079', '9003263282', 'santysanthosh0704@gmail.com', '2001-04-07', 24, '3', '2', 'r nandha gopal', 'welding', 45000.00, 1, 220000.00, 300000.00, 'ayanavaram chennai', 'Ayanavaram Chennai', '2509090033', '', '2', 'upload_files/candidate_tracker/27066394850_SanthoshKumarUpdatedResume14.pdf', NULL, '1', '2025-09-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-09 06:57:27', 154, '2025-09-09 01:18:07', 0, NULL, 1),
(26680, 'rishal francis v r', '6', '7449265275', '9884560079', 'rishalrishal1501@gmail.com', '2000-06-28', 25, '3', '2', 'stephan', 'tv mechanic', 40000.00, 1, 0.00, 20000.00, 'ayanavaram chennai', 'ayanavaram chennai', '2509090034', '', '1', 'upload_files/candidate_tracker/62385103024_RishalFransisResume.pdf', NULL, '1', '2025-09-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-09 06:57:31', 154, '2025-09-09 01:18:51', 0, NULL, 1),
(26681, 'VINOTH ESAKKIMUTHU', '4', '6374397235', '9361898252', 'mskvvinoth81@gmail.com', '2005-02-17', 20, '2', '2', 'Esakki muthu M', 'Supervisor', 25000.00, 1, 0.00, 15000.00, 'TENKASI', 'Thirumazhisai', '2509090035', '1', '1', 'upload_files/candidate_tracker/76256301307_vinothe202505082144570000.docx', NULL, '1', '2025-09-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-09-09 07:08:00', 1, '2025-09-09 07:12:00', 0, NULL, 1),
(26682, 'Ashokraj Kuppusami', '13', '8428985812', '', 'ashokrajk001@gmail.com', '2001-09-09', 24, '5', '2', 'kuppusami', 'kuli', 10000.00, 1, 15000.00, 20000.00, 'NAMAKKAL', 'chennai', '2509090036', '', '2', 'upload_files/candidate_tracker/22875425482_AhshokrajK8428985812.pdf', NULL, '1', '2025-09-28', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:13:56', 1, '2025-09-09 07:18:27', 0, NULL, 1),
(26683, 'V Yogeshwaran', '13', '8939346299', '9884467932', 'Veekayvijay04@gmail.com', '2002-11-08', 22, '3', '2', 'C VIJAYAKUMAR', 'DME', 30000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2509090037', '', '1', 'upload_files/candidate_tracker/9153444327_YogeshwaranVResumeJavaDev2025.pdf', NULL, '1', '2025-09-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:19:16', 1, '2025-09-09 07:26:41', 0, NULL, 1),
(26684, 'Vishal P', '13', '7904139710', '', 'vishalp1706@gmail.com', '2004-06-17', 21, '6', '2', 'prabakaran r', 'employee in private company', 20.00, 1, 0.00, 3.00, 'Villupuram', 'karapakkam.chennai', '2509090038', '', '1', 'upload_files/candidate_tracker/11020012008_VISHALPRESUME1.pdf', NULL, '2', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:19:41', 1, '2025-09-09 07:44:58', 0, NULL, 1),
(26685, 'Tamilselvan N', '13', '9894305262', '', 'tamilkirant@gmail.com', '2004-07-30', 21, '2', '2', 'Nataraj D', 'Farmer', 72000.00, 1, 0.00, 2.00, 'Chengalpattu', 'Chengalpattu', '2509090039', '1', '1', 'upload_files/candidate_tracker/90709905739_Tamilselvanresume.pdf', NULL, '2', '2025-09-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-09-09 07:21:36', 1, '2025-09-09 07:38:36', 0, NULL, 1),
(26686, 'Ganesh pandi', '2', '8925091647', '', 'ganesh2003730@gmail.com', '2003-05-30', 22, '5', '2', 'Pachamal', 'agriculture or farming', 120000.00, 3, 0.00, 300000.00, 'Ramanathapuram', 'Chennai', '2509090040', '', '1', 'upload_files/candidate_tracker/7065830478_GaneshPandiFullstackDeveloperUpdatedResume202508312045460000.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:22:28', 1, '2025-09-09 07:33:39', 0, NULL, 1),
(26687, 'Rubika Sakthi', '2', '6383790833', '', 'rubikamca@gmail.com', '2002-10-08', 22, '6', '2', 'Sakthi V', 'Driver', 100000.00, 2, 0.00, 15000.00, 'Salem', 'Chennai', '2509090041', '', '1', 'upload_files/candidate_tracker/7557840855_RubikaSh.pdf', NULL, '1', '2025-09-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:24:48', 1, '2025-09-09 03:45:44', 0, NULL, 1),
(26688, 'Shalin SK', '13', '7010961953', '', 'shalinsunil1@gmail.com', '2003-04-02', 22, '6', '2', 'Sunil Kumar V K', 'Business', 100000.00, 1, 0.00, 300000.00, 'CHENNAI', 'CHENNAI', '2509090042', '', '1', 'upload_files/candidate_tracker/38639325325_SHALINRESUME1.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:25:06', 1, '2025-09-09 07:27:08', 0, NULL, 1),
(26689, '', '0', '9566918616', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509090043', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-09 07:26:01', 0, NULL, 0, NULL, 1),
(26690, 'VASANTHA KUMAR K', '13', '8939040398', '9092566905', 'vasanthakumar2038@gmail.com', '2005-05-20', 20, '3', '2', 'Kannan R', 'Centering work', 20000.00, 1, 0.00, 25000.00, 'Shenoy nagar', 'Maduravoyal', '2509090044', '', '1', 'upload_files/candidate_tracker/28656721945_VasanthDeveloperResume1.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:28:29', 1, '2025-09-09 07:32:24', 0, NULL, 1),
(26691, 'Karthikeyan', '23', '9025145991', '9789783634', 'karthikeyandotd@gmail.com', '2001-01-10', 24, '6', '2', 'Thanalakshmi', 'Coolie (Daily wages)', 5000.00, 1, 0.00, 15000.00, 'Thoothukudi', 'Chennai', '2509090045', '', '1', 'upload_files/candidate_tracker/71163868688_KARTHIKEYANRESUME.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:29:01', 1, '2025-09-09 07:33:57', 0, NULL, 1),
(26692, 'Kamalesh D', '13', '9361786026', '', 'dkamalesh486@gmail.com', '2004-11-02', 20, '3', '2', 'Lakshmi D', 'Farmer', 12000.00, 2, 0.00, 20000.00, 'perambalur', 'perambalur', '2509090046', '', '1', 'upload_files/candidate_tracker/62988031466_KamaleshDuraisamyResume.doc', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:29:04', 1, '2025-09-14 04:28:33', 0, NULL, 1),
(26693, 'ManiKandan P', '13', '9361486641', '', 'humarousmani@gmail.com', '2001-06-24', 24, '5', '2', 'Panneer Selvam', 'Farmer', 15000.00, 1, 0.00, 4.00, 'Ramanathapuram', 'Chennai', '2509090047', '', '1', 'upload_files/candidate_tracker/5408321915_MANIKANDANPFullStackDeveloper.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:33:53', 1, '2025-09-09 07:41:34', 0, NULL, 1),
(26694, 'karthikeyan ambalavanan', '13', '8189986901', '', 'vanikarthikeyan01@gmail.com', '2001-12-01', 23, '5', '1', 'vani', 'home maker', 30000.00, 1, 14000.00, 30000.00, 'madurai', 'madurai', '2509090048', '', '2', 'upload_files/candidate_tracker/24546498033_AkResume.pdf', NULL, '2', '2025-09-14', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:37:51', 1, '2025-09-09 07:48:43', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26695, 'Mohammed Ismail I', '23', '7200930417', '', 'Mdismail0417@gmail.com', '2004-05-04', 21, '5', '2', 'Mohammed Ibrahim', 'Driver', 12000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2509090049', '', '1', 'upload_files/candidate_tracker/93927438200_ismail.resume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:39:35', 1, '2025-09-12 06:40:44', 0, NULL, 1),
(26696, '', '0', '9087936236', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509090050', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-09 07:40:27', 0, NULL, 0, NULL, 1),
(26697, 'SENTHIL KUMAR M', '2', '7904678493', '6381046044', 'kumarsenthil1023@gmail.com', '2003-12-15', 21, '6', '2', 'Parent - Muthukrishnan', 'Driver', 40000.00, 1, 0.00, 3.00, 'Sivakasi', 'Sivakasi', '2509090051', '', '1', 'upload_files/candidate_tracker/22679285255_SenthilKumarresume.pdf', NULL, '3', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:46:20', 1, '2025-09-09 09:37:49', 0, NULL, 1),
(26698, 'jino jebarson r', '31', '6380102651', '', 'jinovj250@gmail.com', '2003-02-18', 22, '6', '2', 'mary jeleestine', 'teacher', 45000.00, 1, 0.00, 20000.00, 'nagercoil', 'chennai', '2509090052', '', '1', 'upload_files/candidate_tracker/39001354775_JinoJebarsonB.E.MECH20248.0.CGPAFrontEndDevelopment33441compressed.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:52:06', 1, '2025-09-09 07:55:50', 0, NULL, 1),
(26699, 'M Kathir', '31', '9342174664', '', 'kathirm41@gmail.com', '2004-05-14', 21, '5', '2', 'Munusamy', 'Farmer', 72000.00, 1, 0.00, 10000.00, 'Thiruvallur', 'Thiruvallur', '2509090053', '', '1', 'upload_files/candidate_tracker/22105096581_kathirCV.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 07:53:09', 1, '2025-09-09 07:57:47', 0, NULL, 1),
(26700, 'Ishrath begum', '6', '8148848629', '', 'ISHRATHFAZILATH@GMAIL.COM', '2005-07-01', 20, '2', '2', 'Abdul shanavaz', 'Auto driver', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Thiruvottiyur,Chennai', '2509090054', '1', '1', 'upload_files/candidate_tracker/33468173414_Ishrathbegum.pdf', NULL, '1', '2025-09-10', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-09-09 07:56:32', 154, '2025-09-10 12:52:49', 0, NULL, 1),
(26701, 'Ragavendhar M', '13', '9843130385', '', 'ragavendhar508@gmail.com', '2003-04-17', 22, '3', '2', 'Murugan k', 'Farmer', 10000.00, 2, 0.00, 25000.00, 'Villupuram', 'Chennai', '2509090055', '', '1', 'upload_files/candidate_tracker/56959792141_Resume21.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 08:02:38', 1, '2025-09-09 08:19:13', 0, NULL, 1),
(26702, 'sanjay kumar', '31', '9600417117', '', 'sanjaykumarvgs@gmail.com', '2003-01-19', 22, '3', '2', 'vijayakumar k', 'labour', 180000.00, 0, 0.00, 2.84, 'karaikudi', 'karaikudi', '2509090056', '', '1', 'upload_files/candidate_tracker/56973879608_SanjaykumarVResume.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 08:08:40', 1, '2025-09-13 06:09:00', 0, NULL, 1),
(26703, 'Madhavan M', '13', '8190949059', '', 'madhavanmm081@Gmail.com', '2002-08-12', 23, '6', '2', 'Mariappan', 'mCA', 300000.00, 1, 0.00, 300000.00, 'Vasudevanallur', 'Chennai', '2509090057', '', '1', 'upload_files/candidate_tracker/28241633729_Madhavanresume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 08:23:52', 1, '2025-09-09 08:39:40', 0, NULL, 1),
(26704, '', '0', '9360227470', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509090058', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-09 08:24:15', 0, NULL, 0, NULL, 1),
(26705, 'Rojar Nickson', '13', '9087685650', '', 'nicksonrojar@gmail.com', '2002-01-13', 23, '6', '2', 'Sakayaraj', 'Fisherman', 6000.00, 3, 0.00, 15000.00, 'Rameswaram', 'Chennai', '2509090059', '', '1', 'upload_files/candidate_tracker/2807467359_RojarNickson..pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 08:27:23', 1, '2025-09-09 08:33:38', 0, NULL, 1),
(26706, 'Adithya Kumaresan', '13', '8668139271', '', 'adithyakumaresan2003@gmail.com', '2003-02-20', 22, '6', '2', 'Mother\'s Name: Sivakami , Father\'s Name: Kumaresan', 'BE- CSE (Fresher)', 15000.00, 2, 0.00, 300000.00, 'Madurai', 'Chennai', '2509090060', '', '1', 'upload_files/candidate_tracker/36477150219_Adithyakresumefinal.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 08:28:31', 1, '2025-09-09 08:57:34', 0, NULL, 1),
(26707, 'M. Mohamed Fayaas', '13', '7695956872', '', 'fayazmohamed823@gmail.com', '2004-02-07', 21, '4', '2', 'Mohamed Ali Jinnah', 'Plumber', 60000.00, 2, 0.00, 25000.00, 'Tirunelveli', 'Tirunelveli', '2509090061', '', '1', 'upload_files/candidate_tracker/17748267595_MOHAMEDFAYAASRESUME1.pdf', NULL, '3', '2025-09-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 08:45:10', 1, '2025-09-09 08:54:57', 0, NULL, 1),
(26708, 'karthik i', '13', '7806828490', '', 'karthiki30052003@gmail.com', '2003-05-30', 22, '6', '2', 'iyyanar m', 'fresher', 30000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2509090062', '', '1', 'upload_files/candidate_tracker/38116389069_karthikISoftwareDeveloperResume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 09:00:52', 1, '2025-09-09 09:53:40', 0, NULL, 1),
(26709, 'SRIDHAR J', '2', '9655367838', '8973474026', 'jayaramansridhar27@gmail.com', '2003-11-27', 21, '6', '2', 'Jayaraman', 'Farmer', 20000.00, 0, 0.00, 20000.00, 'Kallakurichi', 'Maraimalai Nagar', '2509090063', '', '1', 'upload_files/candidate_tracker/95684609588_DocumentfromSridharJ.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 09:10:51', 1, '2025-09-09 09:25:40', 0, NULL, 1),
(26710, 'Vijayaragavan', '13', '9384217682', '', 'Vijayragavan572@gmail.com', '2001-11-20', 23, '6', '2', 'Kumar', 'Advocate\'s Clerk', 23000.00, 1, 0.00, 250000.00, 'Madurai', 'Madurai', '2509090064', '', '1', 'upload_files/candidate_tracker/91475613652_VijayaragavanResumec.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 09:16:19', 1, '2025-09-09 09:19:16', 0, NULL, 1),
(26711, 'Veerasekar C', '13', '8072374178', '', 'veerasekar940@gmail.com', '2003-09-23', 21, '5', '2', 'Senthamizhselvi c', 'Stall', 15000.00, 1, 0.00, 300000.00, '27 west st kattanumannarkoil Cuddalore', 'Kungumam nagar porur', '2509090065', '', '1', 'upload_files/candidate_tracker/4040606244_VeerasekarResumeFinal1.docx', NULL, '1', '2025-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 09:32:50', 1, '2025-09-09 09:42:21', 0, NULL, 1),
(26712, 'sANTHOSH KUMAR', '2', '9342506820', '', 'santhosh.spidey99@gmail.com', '2004-07-28', 21, '2', '2', '9865522989', 'Driver', 30000.00, 2, 0.00, 18000.00, 'Cuddalore', 'Chennai, madhuravyol', '2509090066', '1', '1', 'upload_files/candidate_tracker/80439174450_SANTHOSHKUMAR.SFULLSTACKDEVELOPER.pdf', NULL, '1', '2025-11-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'The candidate had previously attended the aptitude test and was not selected. In this attempt, he was again rejected in the aptitude round(2.5/10). He stated that he is technically strong and requested to be considered for a technical round.program test (2/6)', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-09-09 09:35:40', 159, '2025-11-04 02:50:48', 0, NULL, 1),
(26713, 'Vimal Boopathi', '13', '9025873326', '7871473326', 'vimalboopathid.official11@gmail.com', '2010-09-09', 0, '6', '2', 'Dharman', 'Graduated Fresher', 114000.00, 1, 0.00, 10000.00, 'Tiruppur', 'Chennai', '2509090067', '', '1', 'upload_files/candidate_tracker/95414014072_VimalBoopathiDUpdatedresume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 09:41:10', 1, '2025-09-09 09:43:43', 0, NULL, 1),
(26714, 'rajkumar nagendran', '2', '9080986236', '', 'nrajkumarnrajkumar865@gmail.com', '2002-11-04', 22, '3', '2', 'nagendran', 'co-op housing society', 80000.00, 0, 0.00, 350000.00, 'madurai', 'madurai', '2509090068', '', '1', 'upload_files/candidate_tracker/76061512229_RajkumarNagendran.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 09:44:54', 1, '2025-09-09 09:58:35', 0, NULL, 1),
(26715, 'Mahabuf sheriff H', '13', '9360171073', '', 'mssheriff114@gmail.com', '2003-12-03', 21, '6', '2', 'sabitha', 'petrol bunk', 10000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2509090069', '', '1', 'upload_files/candidate_tracker/64090297953_MahabufsheriffHFSD1.docx', NULL, '2', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 10:04:40', 1, '2025-09-09 10:08:32', 0, NULL, 1),
(26716, 'mohamed fazil', '13', '7397565259', '', 'fazilmd251@gmail.com', '2001-07-28', 24, '5', '2', 'ziavudeen', 'driver', 30000.00, 2, 0.00, 400000.00, 'nagappattinam', 'chennai', '2509090070', '', '1', 'upload_files/candidate_tracker/36407081427_mdfazilresume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 10:15:35', 1, '2025-09-09 10:20:27', 0, NULL, 1),
(26717, '', '0', '9363068629', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509090071', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-09 10:17:30', 0, NULL, 0, NULL, 1),
(26718, 'Muthu Karuppan', '31', '9677999619', '8438498772', 'muthu23off@gmail.com', '2002-08-23', 23, '6', '2', 'Alagurani', 'Checking', 8000.00, 0, 0.00, 15000.00, 'Coimbatore', 'Tiruppur', '2509090072', '', '1', 'upload_files/candidate_tracker/63040341655_muthuitnew.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 10:19:48', 1, '2025-09-09 10:36:38', 0, NULL, 1),
(26719, '', '0', '8778846313', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509090073', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-09 10:59:55', 0, NULL, 0, NULL, 1),
(26720, 'Sabarimuthu', '14', '8667582362', '', 'muthusabari305@gmail.com', '2003-11-13', 21, '3', '2', 'Amutheeswari', 'Teacher', 22000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2509090074', '', '1', 'upload_files/candidate_tracker/24447690823_ssabari.pdf', NULL, '3', '2025-09-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 12:32:21', 1, '2025-09-09 12:35:57', 0, NULL, 1),
(26721, 'Harish K', '34', '9487032640', '', 'harishpoovai75@gmail.com', '2003-10-18', 21, '5', '2', 'Kulanthaivel', 'Farmer', 4000.00, 1, 0.00, 300000.00, 'Nagapattinam', 'Chennai', '2509090075', '', '1', 'upload_files/candidate_tracker/59425116143_HARISH.KRESUME.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 12:56:23', 1, '2025-09-09 01:54:13', 0, NULL, 1),
(26722, 'Tharun', '6', '8748845266', '', 'ramtharun1436@gmail.com', '2001-11-03', 23, '2', '2', 'Subramani', 'Driving', 40000.00, 0, 0.00, 20000.00, 'Bethamangalla', 'Rupena agrahara', '2509090076', '1', '1', 'upload_files/candidate_tracker/88265880429_TharunS.pdf', NULL, '1', '2025-09-10', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of consistency and attending interview for parents force .', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', 'I1077', '55566', '1970-01-01', 1, '2025-09-09 01:07:41', 154, '2025-09-11 07:18:33', 0, NULL, 1),
(26723, 'Kabilan Rajendran', '34', '6383145302', '', 'ankabil044@gmail.com', '2004-08-19', 21, '3', '2', 'Rajendran', 'Fisherman', 15000.00, 2, 0.00, 300000.00, 'Nagapattinam', 'Nagapattinam', '2509090077', '', '1', 'upload_files/candidate_tracker/80680916320_KabilanResume.pdf', NULL, '1', '2025-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 01:37:49', 1, '2025-09-09 01:42:34', 0, NULL, 1),
(26724, '', '0', '9677057345', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509090078', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-09 01:38:19', 0, NULL, 0, NULL, 1),
(26725, 'Mohammed Zaid C', '2', '9043795013', '', 'mohammedzaid.connect@gmail.com', '2003-07-25', 22, '6', '2', 'Mohammed Farooq C', 'Fresher', 25000.00, 1, 0.00, 400000.00, 'Vaniyambadi', 'Chennai', '2509090079', '', '1', 'upload_files/candidate_tracker/58865871863_CMOHAMMEDZAIDFlowCVResume20250909.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2025-09-09 03:19:22', 1, '2025-09-09 03:24:47', 0, NULL, 1),
(26726, 'renith soban babu s', '6', '9361411291', '9159455753', 'shamrenith007@gmail.com', '2003-07-18', 22, '2', '2', 'anutha bhanu', 'grade one head clerk -district court erode', 140000.00, 0, 0.00, 18000.00, 'erode', 'chennai', '2509090080', '1', '1', 'upload_files/candidate_tracker/92909814247_ResumeofReniths202509092158130000.pdf', NULL, '1', '2025-09-12', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-09-09 03:52:05', 154, '2025-09-13 04:16:22', 0, NULL, 1),
(26727, 'dennis dizoza', '6', '9092526322', '9361411291', 'dsouzadennis0@gmail.com', '2005-07-13', 20, '2', '2', 'antony patrick', 'freelancer', 360000.00, 0, 0.00, 20000.00, 'erode', 'chennai', '2509090081', '1', '1', 'upload_files/candidate_tracker/85201406623_DennisResume.pdf', NULL, '1', '2025-09-12', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-09-09 05:19:05', 154, '2025-09-13 04:15:23', 0, NULL, 1),
(26728, 'Praveenkumar Kathiravan', '13', '6383389032', '', 'praveen638338@gmail.com', '2003-01-26', 22, '6', '2', 'suseela subasini', 'tailor', 40000.00, 1, 0.00, 240000.00, 'tenkasi', 'chennai', '2509090082', '', '1', 'upload_files/candidate_tracker/90082545728_PraveenkumarKResume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-09 06:17:47', 1, '2025-09-09 06:30:19', 0, NULL, 1),
(26729, 'KIMIS CHELLAKUMAR', '6', '6383167914', '', 'kimis@redsoun.com', '2003-11-27', 21, '2', '2', 'sujatha davidson', 'house wife', 240000.00, 2, 0.00, 20000.00, 'karunya st pallayamkottai Tirunelveli', 'chennai', '2509090083', '1', '1', 'upload_files/candidate_tracker/56295133703_RESUME.pdf', NULL, '2', '2025-09-12', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-09-09 08:05:54', 154, '2025-09-13 04:15:00', 0, NULL, 1),
(26730, 'THEERAJ KUMAR', '6', '6382437618', '', 'theerejkumar007@gmail.com', '2004-07-07', 21, '2', '2', 'Thirugnanasambandam', 'Office assistant (commercial tax)', 40000.00, 1, 0.00, 20000.00, '114-A Vasantha nagar, 46-pudur, solar , Erode -2', '2 floor,KK pg GSR garden ,International chennai', '2509090084', '1', '1', 'upload_files/candidate_tracker/21248229576_TheerejKumarARVoiceProcessResume.pdf', NULL, '1', '2025-09-12', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-09-09 09:27:36', 154, '2025-09-13 04:14:32', 0, NULL, 1),
(26731, 'KHATEEJA FARHEEN m A', '6', '9043094210', '', 'Farheenkhateeja1@gmail.com', '2004-03-01', 21, '2', '2', 'M.A.munawar basha', 'Elecrtician', 12000.00, 3, 0.00, 18000.00, '23 nehru nagar 2nd st pallavaram chennai-43', 'Pallavaram', '2509100001', '1', '1', 'upload_files/candidate_tracker/60129249534_KhateejaFarheenResume.docx', NULL, '1', '2025-09-10', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-09-10 12:48:43', 154, '2025-09-10 12:53:43', 0, NULL, 1),
(26732, 'Vengadesh S', '2', '9003856001', '9600307312', 'vengadeshcode@gmail.com', '2001-10-28', 23, '3', '2', 'Saravanan A', 'Gold Smith', 30000.00, 1, 0.00, 20000.00, 'Dindigul', 'Dindigul', '2509100002', '', '1', 'upload_files/candidate_tracker/87781518760_newres.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-10 12:56:43', 1, '2025-09-10 01:34:52', 0, NULL, 1),
(26733, '', '0', '6369007764', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509100003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-10 03:03:30', 0, NULL, 0, NULL, 1),
(26734, 'Murugan', '13', '6382054413', '9551332320', 'murugankannan326@gamil.com', '2003-05-23', 22, '5', '2', 'N/A', 'N/A', 150000.00, 1, 0.00, 200000.00, 'Ariyalur', 'Chennai', '2509100004', '', '1', 'upload_files/candidate_tracker/78543262280_PythonMuruganResume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-10 03:45:28', 1, '2025-09-10 03:52:30', 0, NULL, 1),
(26735, 'Sabari Raman', '33', '9789499286', '9003211530', 'sabariramanh@gmail.com', '1993-04-28', 32, '3', '2', 'V Hari haran', 'Accountant', 280000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2509100005', '', '1', 'upload_files/candidate_tracker/21865949293_super.docx', NULL, '1', '2025-09-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-10 04:18:18', 1, '2025-09-10 04:22:01', 0, NULL, 1),
(26736, 'Sukumar K', '13', '9940575511', '7305657740', 'sukumar.ka86@gmail.com', '2003-06-06', 22, '6', '2', 'Kumar', 'Painting Contractor', 20000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2509100006', '', '1', 'upload_files/candidate_tracker/56423980178_Sukumark2.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-10 05:12:35', 1, '2025-09-10 05:17:15', 0, NULL, 1),
(26737, 'Kathiravan K', '13', '8148847904', '', 'karunakathir106@gmail.com', '2003-12-27', 21, '6', '2', 'Karunanithi R', 'Farmer\'s', 10000.00, 2, 0.00, 20000.00, 'Cuddalore', 'Chennai', '2509100007', '', '1', 'upload_files/candidate_tracker/8196312164_Kathiravankresume1.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-10 05:16:04', 1, '2025-09-10 05:20:19', 0, NULL, 1),
(26738, '', '0', '8056733773', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509100008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-10 05:25:07', 0, NULL, 0, NULL, 1),
(26739, 'Vijayaraj G', '6', '9363205793', '', 'vijayaraj412002@gmail.com', '2002-01-04', 23, '2', '2', 'Govindharaj R', 'Farmer', 10000.00, 2, 0.00, 18000.00, '2/98 , west street malvoi. Trichy. (621652)', 'Nungambakam', '2509100009', '1', '1', 'upload_files/candidate_tracker/35768153708_CV2024092009532834.pdf', NULL, '1', '2025-09-10', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-09-10 05:27:43', 154, '2025-09-10 12:54:45', 0, NULL, 1),
(26740, 'Priyadharshini R', '6', '6385143425', '9952773037', 'Priyadharshinir144@gmail.com', '2004-07-10', 21, '2', '2', 'C.Raji', 'Daily wages', 10000.00, 1, 0.00, 15000.00, 'No.93 SS Puram A Block Otteri chennai 12', 'Chennai', '2509100010', '1', '1', 'upload_files/candidate_tracker/19640288955_PriyadharshiniPDF.pdf', NULL, '1', '2025-09-10', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-09-10 05:31:30', 154, '2025-09-10 01:32:39', 0, NULL, 1),
(26741, 'Hemalatha. S', '6', '8754566447', '9094001346', 'hhemashalman@email.com', '2005-09-01', 20, '2', '2', 'Lakshmi', 'Amma , housewife', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2509100011', '1', '1', 'upload_files/candidate_tracker/40708822002_HemaResume.pdf', NULL, '1', '2025-09-10', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She not fit for my team ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '1970-01-01', 1, '2025-09-10 05:33:27', 154, '2025-09-10 01:30:30', 0, NULL, 1),
(26742, 'mohamed muthahar m m', '31', '7448993537', '', 'mmohamedmuthahar@gmail.com', '2002-05-12', 23, '4', '2', 'mohamed mydeen', 'government employee', 30000.00, 3, 0.00, 500000.00, 'tirunelveli', 'tirunelveli', '2509100012', '', '1', 'upload_files/candidate_tracker/42124883506_MuthuResume.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-10 05:35:43', 1, '2025-09-10 05:44:51', 0, NULL, 1),
(26743, 'Rajamanikandan Thirupachur Selvaraj', '13', '9790906330', '', 'c3ms4u@gmail.com', '1977-03-28', 48, '6', '1', 'pavithra', '-', 0.00, 2, 0.00, 0.00, 'saligramam', 'saligramam', '2509100013', '', '2', 'upload_files/candidate_tracker/11623441849_FullStackDesignertsr.pdf', NULL, '1', '2025-09-14', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-10 05:42:42', 1, '2025-09-10 07:24:56', 0, NULL, 1),
(26744, '', '0', '9788622058', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509100014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-10 05:44:10', 0, NULL, 0, NULL, 1),
(26745, 'KESAVAN S', '13', '9087573860', '8760743745', 'kesavans14k@gmail.com', '2003-02-14', 22, '6', '2', 'Shanmugam.N', 'Weaker', 15000.00, 1, 0.00, 120000.00, 'Salem', 'Chennai', '2509100015', '', '1', 'upload_files/candidate_tracker/94994239927_KesavanBEcsepythonfullstack2024.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-10 05:52:26', 1, '2025-09-10 05:56:32', 0, NULL, 1),
(26746, 'Jayapriya R', '6', '6374214127', '9344410698', 'jayapriya5992@gmail.com', '2004-04-13', 21, '2', '2', 'Ranjithkumar', 'Driver', 20000.00, 1, 180000.00, 210000.00, 'Vysarapadi', 'Vysarapadi', '2509100016', '1', '2', 'upload_files/candidate_tracker/1793627539_jayapriyaresume1.docx', NULL, '1', '2025-09-10', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-09-10 05:53:17', 154, '2025-09-10 12:19:02', 0, NULL, 1),
(26747, 'Dhanalakshmi. B', '6', '8838842297', '8925684805', 'dhanamcheeku@gmail.com', '2004-04-18', 21, '2', '2', 'Balraj', 'Photographer', 20000.00, 0, 0.00, 18000.00, 'No: 50/1 venkastesan street, New Washermanpet', 'No:179 (46/2) TH.Road, New Washermanpet', '2509100017', '1', '1', 'upload_files/candidate_tracker/18973152421_DHANALAKSHMI1.pdf', NULL, '1', '2025-09-10', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-09-10 05:53:43', 154, '2025-09-10 01:15:51', 0, NULL, 1),
(26748, '', '0', '8220459316', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509100018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-10 06:27:56', 0, NULL, 0, NULL, 1),
(26749, '', '0', '8925348006', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509100019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-10 06:32:31', 0, NULL, 0, NULL, 1),
(26750, '', '0', '9677067589', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509100020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-10 06:34:27', 0, NULL, 0, NULL, 1),
(26751, 'praveen u s', '13', '6381202637', '6383245213', 'praveensubramani2004@gmail.com', '2004-04-05', 21, '3', '2', 'subramani p', 'driver', 20000.00, 2, 0.00, 30000.00, 'perambalur', 'perambalur', '2509100021', '', '1', 'upload_files/candidate_tracker/54932750111_Resume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-10 06:41:28', 1, '2025-09-11 01:49:28', 0, NULL, 1),
(26752, 'Meena', '5', '9566861266', '', 'meenaraman9611@gmail.com', '1996-09-11', 28, '2', '2', 'Raman', 'Farmer', 15000.00, 1, 0.00, 4.00, 'Pattukkottai', 'Chennai', '2509100022', '1', '2', 'upload_files/candidate_tracker/16541092285_MEENARRESUME2025update.pdf', NULL, '1', '2025-09-10', 0, '', '3', '59', '2025-09-11', 276000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp but no sustainability with multiple reasons can give a try and check sep oct 2L life plus 10K sip then 25K net take home', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55824', '55560', '2025-09-11', 1, '2025-09-10 06:45:39', 60, '2025-09-10 07:20:46', 0, NULL, 1),
(26753, 'Bhoomika N', '6', '7975139370', '', 'bhoomikansagar11@gmail.com', '2010-09-10', 0, '2', '2', 'Nendrappa', 'N', 20000.00, 1, 2.40, 3.30, 'Shimoga', 'Banglore', '2509100023', '1', '2', 'upload_files/candidate_tracker/4295292858_BHOOMIKA.sagar2.pdf', NULL, '1', '2025-09-10', 0, '', '3', '59', '2025-09-15', 276000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in calling but not in insurance can be trained', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '2025-09-15', 1, '2025-09-10 06:54:08', 60, '2025-09-13 03:03:09', 0, NULL, 1),
(26754, 'Magesh kumar A', '13', '8778289742', '', 'mageshkumar9273@gmail.com', '2004-10-23', 20, '6', '2', 'Anandhan', 'Sdb Security Services', 215000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2509100024', '', '1', 'upload_files/candidate_tracker/58820907299_NewResume.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-10 07:54:10', 1, '2025-09-10 07:59:14', 0, NULL, 1),
(26755, 'B S Krithick Nagarjun', '13', '9360554541', '7358300745', 'Sharathkrithick@gmail.com', '2005-04-04', 20, '6', '2', 'Sharath Kumar B S', 'Driver', 30000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2509100025', '', '1', 'upload_files/candidate_tracker/41833848999_Resumekrithick5.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-10 08:03:12', 1, '2025-09-10 08:08:57', 0, NULL, 1),
(26756, '', '0', '7826844529', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509100026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-10 09:03:47', 0, NULL, 0, NULL, 1),
(26757, 'Pradeep Kumar S', '13', '9176378602', '6380330619', 'pradeepkumar.sjob2025@gmail.com', '2001-10-21', 23, '3', '2', 'S.Sasi Kumar', 'Police', 70000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2509100027', '', '1', 'upload_files/candidate_tracker/8715335912_1202509040053300000.pdf', NULL, '1', '2025-09-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-09-10 09:45:35', 154, '2025-09-10 03:30:45', 0, NULL, 1),
(26758, 'V S Dhirubhai', '31', '7305419024', '7397719024', 'dhirubhaisairaj@gmail.com', '2003-10-22', 21, '6', '2', 'v sairaj', 'business', 25000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2509100028', '', '1', 'upload_files/candidate_tracker/37271037930_DhirubhaiResume2025.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-10 10:41:28', 1, '2025-09-10 10:47:55', 0, NULL, 1),
(26759, 'Abinaya S', '6', '6383764354', '8925831121', 'abinaya222003@gmail.com', '2003-10-22', 21, '2', '2', 'Sumathi', 'House keeping', 150000.00, 1, 18000.00, 18000.00, 'Mylapore', 'Ambedkar bridge Mylapore', '2509100029', '1', '2', 'upload_files/candidate_tracker/87413344973_Abinayasilambarasanresume.docx', NULL, '1', '2025-09-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good also he core is difffrent.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-09-10 11:28:47', 154, '2025-09-27 02:28:04', 0, NULL, 1),
(26760, 'Saikrishnan P', '6', '7397453623', '', 'ritsai99@gmail.com', '1999-11-19', 25, '2', '2', 'Lakshmi S', 'Housewife', 30000.00, 0, 13000.00, 18000.00, 'No.3A,Pillaiyar koil street, Menambedu, Chennai', 'No. 3A , Pillaiyar koil Street, Menambedu,Chennai', '2509100030', '1', '2', 'upload_files/candidate_tracker/35896061142_SkResume.pdf', NULL, '1', '2025-09-11', 0, '', '1', '156', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55732', '5151', '1970-01-01', 1, '2025-09-10 12:44:57', 154, '2025-09-11 01:08:12', 0, NULL, 1),
(26761, 'Harish', '4', '8248404459', '8248385351', 'Harishanbukp2002@gmail.com', '2002-12-18', 22, '2', '2', 'Anbukarasan', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Valangaiman', '2509100031', '1', '1', 'upload_files/candidate_tracker/62062307964_Resume1.pdf', NULL, '1', '2025-09-11', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', '5151', '1970-01-01', 1, '2025-09-10 01:17:31', 154, '2025-09-11 05:27:23', 0, NULL, 1),
(26762, 'Dhinesh D', '6', '6383098930', '', 'dhineshmba24@gmail.com', '2002-10-20', 22, '2', '2', 'Father', 'PIMS staff', 45000.00, 1, 0.00, 250000.00, 'Puducherry', 'Chennai', '2509100032', '1', '1', 'upload_files/candidate_tracker/2282992091_MBARESUME25.pdf', NULL, '1', '2025-09-11', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2025-09-10 06:18:38', 154, '2025-09-11 01:23:30', 0, NULL, 1),
(26763, 'Srilekha A', '6', '9840153232', '9962726777', 'srilekhaarul05@gmail.com', '2005-05-05', 20, '2', '2', 'Aruldoss', 'Fisherman', 13000.00, 2, 0.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur chennai 600019', '2509110001', '1', '1', 'upload_files/candidate_tracker/64298558811_sriresume.pdf', NULL, '1', '2025-09-11', 0, '', '3', '59', '2025-09-15', 180000.00, '', '3', '2025-09-20', '2', 'Communication ok fresher need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55645', '5151', '2025-09-15', 1, '2025-09-11 12:48:13', 60, '2025-09-13 03:06:37', 0, NULL, 1),
(26764, 'Sudalai raja', '6', '8838314816', '7448811037', 'a.sudalairaja311908306@gmail.com', '2001-09-07', 24, '2', '2', 'Ayyanar', 'Coolie', 12000.00, 1, 15000.00, 18000.00, 'West Mambalam', 'West Mambalam', '2509110002', '1', '2', 'upload_files/candidate_tracker/41563490532_sudalaibiodata1.pdf', NULL, '1', '2025-09-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-09-11 05:36:10', 154, '2025-09-11 01:08:41', 0, NULL, 1),
(26765, 'GOKULA KRISHNAN M', '6', '8903906345', '9894306345', 'gokulakrishnan6345@gmail.com', '2004-06-09', 21, '2', '2', 'Manikandan', 'Market research', 3.00, 1, 2.00, 2.50, '1/229 kasigoundan pudur mangalam road AVINASHI', 'Solliganallur chennai', '2509110003', '1', '2', 'upload_files/candidate_tracker/43189107115_GokulakrishnanM1.pdf', NULL, '1', '2025-09-11', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2025-09-11 06:19:23', 154, '2025-09-11 01:29:54', 0, NULL, 1),
(26766, 'Apsara', '11', '9025873899', '6374162919', 'apsarasha05@gmail.com', '1999-05-05', 26, '3', '2', 'Abdulnasar', 'Reporter', 180000.00, 1, 0.00, 15000.00, 'No 34 nachammai illam T.T.nagar karaikudi', 'vadapalani, chennai', '2509110004', '', '1', 'upload_files/candidate_tracker/85753603636_Apsara1755061369795.pdf', NULL, '1', '2025-09-11', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-09-11 06:20:18', 154, '2025-09-11 01:09:06', 0, NULL, 1),
(26767, 'AJAY KUMAR S', '6', '6364595739', '9964078013', 'ajaytuber7@gmail.com', '2002-09-07', 23, '2', '2', 'VIJAY KUMAR', 'IT', 500000.00, 1, 0.00, 300000.00, 'BENGALURU', 'BENGALURU', '2509110005', '1', '1', 'upload_files/candidate_tracker/20366673636_ajaykumars.pdf', NULL, '1', '2025-10-31', 0, '', '3', '59', '2025-11-10', 216000.00, '', '3', '2025-11-29', '2', 'Communication Ok fresher fr our roles need to check in training and confirm', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '2025-11-10', 1, '2025-09-11 06:23:53', 60, '2025-11-10 12:36:36', 0, NULL, 1),
(26768, 'Prasshanth A S', '6', '7904865184', '9445455694', 'asprasshanth@yahoo.com', '1997-05-26', 28, '2', '2', 'Sivakkumar R G', 'Cpcl - manager', 35000.00, 1, 15000.00, 18000.00, 'madahavram milk colony, chennai', 'Madhavaram milk colony, chennai', '2509110006', '1', '2', 'upload_files/candidate_tracker/53262092572_CV2025080617125819.pdf', NULL, '1', '2025-09-11', 1, '', '3', '59', '2025-09-15', 216000.00, '', '3', '2025-09-18', '1', 'Communication ok previously attended long back and gave offer but not joined  this is 2nd chance 5050 sustainability let us try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '2025-09-15', 1, '2025-09-11 07:16:57', 60, '2025-09-13 03:05:26', 0, NULL, 1),
(26769, 'Iffath unissa', '6', '8754546086', '8286702100', 'iffathsha52@gmail.com', '2000-10-21', 24, '2', '2', 'Fayaz Basha', 'Business', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2509120001', '1', '1', 'upload_files/candidate_tracker/90099687525_Untitled1.pdf', NULL, '1', '2025-09-12', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'high non voice preferred... sistainability doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2025-09-12 02:58:41', 154, '2025-09-12 02:58:02', 0, NULL, 1),
(26770, 'S MUTHU', '2', '9751359662', '9047435357', 'muthushankar95@gmail.com', '1995-06-09', 30, '6', '2', 'Sankar', 'Painter', 15000.00, 2, 68000.00, 90000.00, 'Chennai', 'Chennai', '2509120002', '', '2', 'upload_files/candidate_tracker/71174030098_MUTHURESUME.pdf', NULL, '1', '2025-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 03:34:03', 1, '2025-09-12 03:40:09', 0, NULL, 1),
(26771, 'KARAN M', '6', '6379812275', '', 'kishorekaran200@gmail.com', '2004-05-12', 21, '2', '2', 'E Manivannan', 'Auto driver', 240000.00, 1, 0.00, 16000.00, '36/34, sathiyavani Muthu Nagar 3rd kannigapuram,', '36/34, sathiyavani Muthu Nagar 3rd kannigapuram,', '2509120003', '1', '1', 'upload_files/candidate_tracker/32098595011_Document1.pdf', NULL, '1', '2025-09-12', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2025-09-12 05:39:50', 154, '2025-09-12 02:48:33', 0, NULL, 1),
(26772, '', '0', '8754546085', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509120004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-12 05:40:18', 0, NULL, 0, NULL, 1),
(26773, '', '0', '6369233159', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509120005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-12 05:50:39', 0, NULL, 0, NULL, 1),
(26774, 'saranya r', '4', '8637405123', '8072674394', 'saranyarajavel09@gmail.com', '2001-01-09', 24, '2', '1', 'p. surendar', 'warehouse manager', 25000.00, 1, 25000.00, 27000.00, 'chennai', 'chennai', '2509120006', '1', '2', 'upload_files/candidate_tracker/5521841507_saranyaResume2.pdf', NULL, '1', '2025-09-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-09-12 05:57:11', 154, '2025-09-12 12:38:51', 0, NULL, 1),
(26775, 'Kotte Saikiran', '13', '9398429515', '', 'saikirankotte003@gmail.com', '2003-06-11', 22, '6', '2', 'kotte tirupathi', 'farmer', 30000.00, 2, 0.00, 400000.00, 'Mancherial', 'Hyderabad', '2509120007', '', '1', 'upload_files/candidate_tracker/25738748788_sai78.pdf', NULL, '3', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 06:09:21', 1, '2025-09-12 07:45:03', 0, NULL, 1),
(26776, 'PRADEEPAN K', '13', '9361734325', '', 'Pradeepank6070@gmail.com', '2004-07-01', 21, '3', '1', 'Kumar', 'Farmer', 100000.00, 1, 0.00, 10000.00, 'Gingee', 'West tambarm', '2509120008', '', '1', 'upload_files/candidate_tracker/16062320701_PRADEEPANKJAVAFullstack2024.pdf', NULL, '1', '2025-09-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 06:10:37', 1, '2025-09-12 06:19:26', 0, NULL, 1),
(26777, 'm.iyyappan', '2', '9600361158', '9750110164', 'iyyappanmurali59@gmail.com', '2002-01-23', 23, '6', '2', 'v.murali', 'driver', 18000.00, 2, 0.00, 25000.00, 'trichy', 'chennai avadi', '2509120009', '', '1', 'upload_files/candidate_tracker/96384877411_MERNStackIyyappanresume.docx', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 06:12:07', 1, '2025-09-12 12:11:01', 0, NULL, 1),
(26778, 'K Akkash', '13', '9345529844', '9566892170', 'akkashkarthik@gmail.com', '2000-10-09', 24, '5', '2', 'Parent', 'Supervisor government job', 500000.00, 1, 0.00, 40000.00, 'Pondicherry', 'Pondicherry', '2509120010', '', '1', 'upload_files/candidate_tracker/39343097037_AkkashResume.pdf', NULL, '2', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 06:12:12', 1, '2025-09-12 06:25:15', 0, NULL, 1),
(26779, 'ezhilarasan p', '13', '9843732705', '', 'ezhilarasancse2002@gmail.com', '2002-08-03', 23, '6', '2', 'palanivel s', 'labour', 960000.00, 2, 0.00, 2.00, 'pondicherry', 'pondicherry', '2509120011', '', '1', 'upload_files/candidate_tracker/66519236563_EZHILARASANPALANIVEL...pdf', NULL, '2', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 06:13:20', 1, '2025-09-12 06:30:36', 0, NULL, 1),
(26780, 'Vignesh R', '13', '7339063939', '', 'iamvigneshofficial@gmail.com', '2004-02-23', 21, '3', '2', 'Rajalingam R', 'Daily wages', 20000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2509120012', '', '1', 'upload_files/candidate_tracker/99203764245_JavaDeveloperResume.pdf', NULL, '1', '2025-09-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 06:13:26', 1, '2025-09-12 04:52:49', 0, NULL, 1),
(26781, '', '0', '8610179770', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509120013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-12 06:14:39', 0, NULL, 0, NULL, 1),
(26782, '', '0', '9150580164', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509120014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-12 06:17:47', 0, NULL, 0, NULL, 1),
(26783, 'Pavithra', '6', '6374681077', '', 'Pavithrav62@gmail.com', '2003-07-07', 22, '2', '2', 'Vijay kumar', 'Sales man', 15000.00, 1, 0.00, 15000.00, 'Royapettah', 'Chennai', '2509120015', '1', '1', 'upload_files/candidate_tracker/44409626890_resume.pdf', NULL, '1', '2025-09-12', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'expecting non voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-09-12 06:17:48', 154, '2025-09-12 02:57:43', 0, NULL, 1),
(26784, 'Abdullah', '13', '9092090418', '8220081420', 'aa6517856@gmail.com', '2003-06-05', 22, '6', '2', 'Narges Begam', 'Home Maker', 5000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2509120016', '', '1', 'upload_files/candidate_tracker/18396313763_AbdullahRes1.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 06:24:36', 1, '2025-09-12 06:28:29', 0, NULL, 1),
(26785, 'Rubisten A', '2', '6374215923', '', 'rubin262002@gmail.com', '2002-08-26', 23, '3', '1', 'Amulraj', 'Farmer', 600000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2509120017', '', '1', 'upload_files/candidate_tracker/45159259454_resume2.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 06:25:02', 1, '2025-09-12 06:42:15', 0, NULL, 1),
(26786, 'rathis edwin s', '13', '9976071319', '', 'rathishaks49@gmail.com', '2001-08-05', 24, '5', '2', 'samuthirarajan', 'dailyworker', 15000.00, 1, 0.00, 25000.00, 'Tiruchirappalli 621652', 'maduravoyal chennai', '2509120018', '', '1', 'upload_files/candidate_tracker/61133341600_RathisEdwinS.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 06:28:47', 1, '2025-09-12 06:36:43', 0, NULL, 1),
(26787, 'mUKESH mr', '2', '6383334199', '', 'mukeshmr2004@gmail.com', '2004-02-06', 21, '6', '2', 'Manikandan K', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Tiruchirappalli', 'Tiruchirappalli', '2509120019', '', '1', 'upload_files/candidate_tracker/77176289220_Mukesh.pdf', NULL, '1', '2025-09-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-09-12 06:32:31', 154, '2025-09-14 09:51:48', 0, NULL, 1),
(26788, 'Sivasubramaniyan Meipporul', '31', '7904890829', '', 'vmsivatvs@gmail.com', '2010-09-12', 0, '5', '2', 'Meipporul', 'Farmer', 15000.00, 2, 15000.00, 15000.00, 'Chennai', 'Chennai', '2509120020', '', '2', 'upload_files/candidate_tracker/38658411303_ShivaResFronten1209.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 06:34:54', 1, '2025-09-13 04:41:45', 0, NULL, 1),
(26789, '', '0', '9080513711', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509120021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-12 06:39:19', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26790, 'Thanish Priyan', '34', '9566261950', '', 'thanishpriyan@gmail.com', '2004-01-26', 21, '3', '2', 'Chinnadurai A', 'Private', 250000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2509120022', '', '1', 'upload_files/candidate_tracker/306520613_ThanishPriyanAC.pdf', NULL, '3', '2025-09-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 06:42:01', 1, '2025-09-12 07:41:54', 0, NULL, 1),
(26791, 'Bavankumar Baskar', '13', '8072224577', '9842132789', 'bavankumar2002@gmail.com', '2002-08-12', 23, '6', '2', 'baskar veerasamy', 'bio medical Engineering', 50000.00, 1, 0.00, 300000.00, 'madurai', 'chennai', '2509120023', '', '1', 'upload_files/candidate_tracker/88283485776_BavankumarBaskarresume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 06:57:55', 1, '2025-09-12 07:21:42', 0, NULL, 1),
(26792, '', '0', '6382070603', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509120024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-12 07:20:05', 0, NULL, 0, NULL, 1),
(26793, 'KANIMOZHI', '6', '9150580164', '', 'KANIMOZHI15122@GMAIL.COM', '2002-12-15', 22, '2', '2', 'ARUMUGAM', 'FISHERMAN', 14000.00, 3, 0.00, 15000.00, 'MYLAPORE', 'MYLAPORE', '2509120025', '1', '1', '0', NULL, '1', '2025-09-12', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'expecting non voice and early logout', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 154, '2025-09-12 12:55:23', 154, '2025-09-12 02:49:36', 0, NULL, 1),
(26794, 'Sivasubramani Velusamy', '13', '9150587625', '', 'velusiva292@gmail.com', '2004-02-01', 21, '3', '2', 'Velusamy M', 'Daily wages', 250000.00, 2, 0.00, 4.00, '699, Manakudi, Anumandhagudi post,sivaganga', 'No:7/2,Kalanivasal new road, Karaikudi-630001', '2509120026', '', '1', 'upload_files/candidate_tracker/22823044520_SivasubramanivResume.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 07:36:34', 1, '2025-09-12 07:43:01', 0, NULL, 1),
(26795, 'Karthika', '13', '8807908379', '', 'Karthika8628@gmail.com', '2004-07-04', 21, '5', '2', 'Karuppaiya', 'Wage work', 75000.00, 2, 0.00, 200000.00, 'Karaikudi', 'Karaikudi', '2509120027', '', '1', 'upload_files/candidate_tracker/80019085_JuniorsoftwareDeveloperkarthika202507152209530000.pdf', NULL, '3', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 07:36:54', 1, '2025-09-12 08:07:30', 0, NULL, 1),
(26796, 'nagarjun b n', '13', '9500555481', '9843776681', 'nagarjun0910@gmail.com', '2002-10-09', 22, '6', '2', 'nagarajan b n', 'weaver', 25000.00, 1, 0.00, 350000.00, 'ramanathapuram', 'chennai', '2509120028', '', '1', 'upload_files/candidate_tracker/98404004939_NAGARJUNBNCV.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 07:38:14', 1, '2025-09-13 03:24:37', 0, NULL, 1),
(26797, 'Baraneetharan', '13', '9489246515', '', 'baraneetharan1515@gmail.com', '2003-09-26', 21, '6', '2', 'Selvam', 'Company Supervisor', 15000.00, 1, 0.00, 20000.00, 'Theni, Tamilnadu', 'Tiruppur', '2509120029', '', '1', 'upload_files/candidate_tracker/74728113143_BaraneetharanSelvamResume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 08:12:26', 1, '2025-09-12 08:16:17', 0, NULL, 1),
(26798, 'lumin titus', '31', '9360730480', '', 'lumintitus05@gmail.com', '2002-11-05', 22, '6', '2', 'sekar dhanabal', 'teacher', 45000.00, 1, 0.00, 120000.00, 'chennai', 'chennai', '2509120030', '', '1', 'upload_files/candidate_tracker/16190196374_LuminTitus.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 09:21:31', 1, '2025-09-12 09:33:36', 0, NULL, 1),
(26799, '', '0', '8870574341', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509120031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-12 09:29:07', 0, NULL, 0, NULL, 1),
(26800, '698441842492', '13', '9361409268', '9585383483', 'hameedad0810@gmail.com', '2002-10-09', 22, '6', '2', 'Habib', 'Servant', 15000.00, 1, 0.00, 2.00, 'Tenkasi', 'Chennai', '2509120032', '', '1', 'upload_files/candidate_tracker/19630789238_MohamedHameedBackEndDeveloper.pdf', NULL, '1', '2025-09-14', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-09-12 09:31:44', 154, '2025-09-14 10:54:27', 0, NULL, 1),
(26801, 'elakkiya', '13', '8807209405', '6383523764', 'elakkiyabaskar2510@gmail.com', '2003-10-25', 21, '5', '2', 'baskaran.r', 'driver', 5000.00, 1, 0.00, 20000.00, 'villupuram', 'villupuram', '2509120033', '', '1', 'upload_files/candidate_tracker/67076043210_iyaBFullStackDeveloperResumeBulletPointsVillupuram.pdf', NULL, '2', '2025-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 09:31:59', 1, '2025-09-13 01:35:00', 0, NULL, 1),
(26802, '', '0', '9895468427', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509120034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-12 09:43:10', 0, NULL, 0, NULL, 1),
(26803, 'Harish gunasekar', '13', '9843025990', '8608733181', 'harishgdeer@gmail.com', '2010-09-12', 0, '6', '2', 'Gunasekar', 'Kooli', 72000.00, 2, 0.00, 18000.00, 'Trichy', 'Vadapalani', '2509120035', '', '1', 'upload_files/candidate_tracker/54191053650_Resume112.pdf', NULL, '3', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 09:57:25', 1, '2025-09-12 10:01:29', 0, NULL, 1),
(26804, '', '0', '9445707186', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509120036', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-12 11:12:48', 0, NULL, 0, NULL, 1),
(26805, 'ilayaganesan k', '31', '9626588402', '', 'kigkig367@gmail.com', '2003-05-06', 22, '6', '2', 'kulandaivel', 'business man', 20000.00, 2, 0.00, 400000.00, 'Panruti, Cuddalore', 'Panruti, Cuddalore', '2509120037', '', '1', 'upload_files/candidate_tracker/19400517529_RESUME.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 11:14:27', 1, '2025-09-12 11:22:12', 0, NULL, 1),
(26806, 'Vijayalakshmi K', '13', '8682894439', '', 'keerthikannan8682@gmail.com', '2003-05-04', 22, '4', '2', 'Kannan G', 'Daily wage', 92000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2509120038', '', '1', 'upload_files/candidate_tracker/98058024066_Updatedresumevijayalakshmi.pdf', NULL, '1', '2025-09-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 11:48:32', 1, '2025-09-12 11:58:39', 0, NULL, 1),
(26807, 'monica gunasekaran', '31', '9345414250', '9442677729', 'gmonica2593@gmail.com', '2003-09-25', 21, '3', '2', 'gunasekaran', 'driver', 10000.00, 0, 0.00, 300000.00, 'karaikudi', 'karaikudi', '2509120039', '', '1', 'upload_files/candidate_tracker/50646363405_Monicaresume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 01:19:15', 1, '2025-09-12 01:21:56', 0, NULL, 1),
(26808, 'sabarinathan', '13', '8220294061', '', 'sabarinathan14052003@gmail.com', '2003-05-14', 22, '6', '2', 'murugesan', 'fresher', 8000.00, 3, 0.00, 25000.00, 'pudukkottai', 'chennai', '2509120040', '', '1', 'upload_files/candidate_tracker/33449984241_SabarinathanResume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 02:02:04', 1, '2025-09-12 02:15:18', 0, NULL, 1),
(26809, 'Mithun R', '13', '9344014518', '', 'mithungugan007@gmail.com', '2005-07-10', 20, '3', '2', 'Rajavelu', 'Fresher', 25000.00, 1, 0.00, 300000.00, 'Ramapuram, Chennai', 'Ramapuram, Chennai', '2509120041', '', '1', 'upload_files/candidate_tracker/27578630700_MithunResume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 02:08:46', 1, '2025-09-13 04:56:13', 0, NULL, 1),
(26810, '', '0', '6383142368', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509120042', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-12 02:21:28', 0, NULL, 0, NULL, 1),
(26811, '', '0', '7094348952', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509120043', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-12 02:27:55', 0, NULL, 0, NULL, 1),
(26812, 'Vimalraj', '13', '7010351677', '', 'vimalrajsde@gmail.com', '2002-02-12', 23, '3', '2', 'Dhanushkodi', 'Hotel business', 30000.00, 1, 12000.00, 20000.00, 'Nallampalayam, Coimbatore', 'Nallampalayam, Coimbatore', '2509120044', '', '2', 'upload_files/candidate_tracker/31458878848_VimalMERNStack.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-12 02:39:03', 1, '2025-09-13 04:34:30', 0, NULL, 1),
(26813, '', '0', '8925304755', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509120045', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-12 05:27:00', 0, NULL, 0, NULL, 1),
(26814, 'vignesh', '13', '8925287205', '', 'vigneshpalani249@gmail.com', '2003-09-28', 21, '2', '2', 'palani.r', 'daily wages', 8000.00, 2, 0.00, 250000.00, 'sholingur', 'sholingur', '2509120046', '1', '1', 'upload_files/candidate_tracker/10748674780_VIGNESHPFullStackdeveloper.pdf', NULL, '1', '2025-10-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'not qualified in aptitude (4/10)', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-09-12 07:12:43', 154, '2025-10-24 05:37:55', 0, NULL, 1),
(26815, 'Sudharshan K', '23', '7010032082', '', 'sudharshan.k0777@gmail.com', '2004-08-07', 21, '2', '2', 'Kumaran', 'Teacher', 20000.00, 1, 0.00, 2.00, 'Arakkonam', 'Perungalathur', '2509130001', '1', '1', 'upload_files/candidate_tracker/12110337769_SudharshanUIUXResumePDF311.pdf', NULL, '1', '2025-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-09-13 03:13:30', 1, '2025-09-16 06:00:59', 0, NULL, 1),
(26816, 'Sharmili Saravanan', '6', '9150881508', '9150116335', 'sharmiligavara@gmail.com', '2003-05-24', 22, '2', '2', 'K.Saravanan', 'Driver', 35000.00, 0, 21000.00, 25000.00, 'Chennai', 'Chennai', '2509130002', '1', '2', 'upload_files/candidate_tracker/38640753773_sharmilicv2025.pdf', NULL, '1', '2025-09-13', 0, '', '3', '59', '2025-09-22', 228000.00, '', '3', '2025-09-24', '1', 'Communication Ok have exp but not exactly in insurance sales can be trained in our roles and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55645', '5151', '2025-09-22', 1, '2025-09-13 04:57:46', 60, '2025-09-20 06:44:27', 0, NULL, 1),
(26817, 'priya A', '6', '6379157072', '', 'priyaarunachallam@gmail.com', '2004-09-13', 21, '2', '2', 'E Arunchallam', 'farmer', 84000.00, 2, 0.00, 20000.00, 'tirunelveli', 'porur', '2509130003', '1', '1', 'upload_files/candidate_tracker/20190641143_CV2025070509421689.pdf', NULL, '1', '2025-09-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '', '', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-09-13 05:15:03', 154, '2025-09-13 11:38:20', 0, NULL, 1),
(26818, '', '0', '6382524195', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509130004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-13 06:07:43', 0, NULL, 0, NULL, 1),
(26819, 'Mohamed Fasith', '6', '9894055669', '8825795695', 'mohamedfasith44@gmail.com', '1998-07-11', 27, '2', '2', 'Sithika Begam', 'House wife', 15000.00, 0, 22000.00, 27000.00, 'Chennai', 'Chennai', '2509130005', '1', '2', 'upload_files/candidate_tracker/91112501136_FasithImpcv1.pdf', NULL, '1', '2025-09-13', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candiate communication and performance is not Good.Also Sustainable Is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2025-09-13 06:07:47', 154, '2025-09-13 04:12:38', 0, NULL, 1),
(26820, '', '0', '9025728287', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509130006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-13 06:36:05', 0, NULL, 0, NULL, 1),
(26821, 'Vijay', '6', '7305958764', '9445450468', 'svijayvijays2001@gmail.com', '2001-09-09', 24, '2', '2', 'Sridhar', 'Temple priest', 30000.00, 1, 17.50, 20000.00, 'Ambattur', 'Ambattur', '2509130007', '1', '2', 'upload_files/candidate_tracker/19966368947_S.VIJAYResume.pdf', NULL, '3', '2025-09-15', 2, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not ok, sounds not good, confident level very low, reject the profile', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-09-13 06:50:04', 154, '2025-09-15 01:36:48', 0, NULL, 1),
(26822, '', '0', '8939457203', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509130008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-13 06:57:12', 0, NULL, 0, NULL, 1),
(26823, 'Shabnam Hasiba Abdul Salam', '6', '9176951671', '', 'shabnamhasiba@gmail.com', '2003-12-03', 21, '2', '2', 'Abdul Salam', 'Business', 50000.00, 0, 0.00, 16.00, '40/20 Seeyali street pudupet Egmore Chennai', '40/20 Seeyali Street Pudupet Egmore Chennai', '2509130009', '1', '1', 'upload_files/candidate_tracker/42939536381_ResumeShabnamHasiba.pdf', NULL, '1', '2025-09-13', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication iand performance is ok.but little attitude also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-09-13 07:13:18', 154, '2025-09-16 01:11:39', 0, NULL, 1),
(26824, '', '0', '8667439592', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-13 09:07:40', 0, NULL, 0, NULL, 1),
(26825, 'ALenna shirin Tn', '11', '9500072143', '', 'alinashirin20@gmail.com', '2003-04-29', 22, '3', '2', 'Najeeb', 'Business', 20000.00, 1, 0.00, 4000.00, 'Chennai', 'chennai', '2509130011', '', '1', 'upload_files/candidate_tracker/28263690564_AleenashirinTN.pdf', NULL, '1', '2025-09-13', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '', '', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-09-13 10:17:13', 154, '2025-09-13 04:21:53', 0, NULL, 1),
(26826, 'Anisha JS', '11', '9976988789', '', 'anu.anisha0912@gmail.com', '2003-02-09', 22, '3', '2', 'justin salvaraj a', 'NLC emploee', 80000.00, 2, 0.00, 3000.00, 'neveli', 'neveli', '2509130012', '', '1', 'upload_files/candidate_tracker/4806240069_Anu1resume.pdf', NULL, '1', '2025-09-13', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '', '', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-09-13 10:23:53', 154, '2025-09-13 04:21:31', 0, NULL, 1),
(26827, 'Hari Parimelazhagan', '2', '8122549023', '', 'khari4965@gmail.com', '2010-09-13', 0, '5', '2', 'parimelazhagan', 'govt officer', 75000.00, 0, 180000.00, 420000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2509130013', '', '2', 'upload_files/candidate_tracker/62388756518_FinalRes.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-13 11:54:17', 1, '2025-09-13 11:59:39', 0, NULL, 1),
(26828, '', '0', '8838817893', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509130014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-13 12:13:08', 0, NULL, 0, NULL, 1),
(26829, 'priyadharshini', '13', '8531841175', '6384663115', 'pd0540268@gmail.com', '2004-05-01', 21, '5', '2', 'shanmugam.s', 'farmer', 5000.00, 1, 0.00, 20000.00, 'thindivanam', 'thambaram', '2509130015', '', '1', 'upload_files/candidate_tracker/80423983920_PriyaDharshiniBECSEJavaDeveloperpdf3.pdf', NULL, '2', '2025-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-13 12:45:21', 1, '2025-09-13 01:23:51', 0, NULL, 1),
(26830, 'Mohamed Yusuf M', '13', '9342516620', '', 'yusuf.coder25@gmail.com', '2003-11-10', 21, '6', '2', 'Mohamed Asain M', 'Kooli', 18000.00, 1, 0.00, 300000.00, '2B, North Street, Karambakkudi, Pudukkottai', 'Chennai', '2509130016', '', '1', 'upload_files/candidate_tracker/42276512733_MohamedYusufM.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-13 01:22:49', 1, '2025-09-13 01:41:56', 0, NULL, 1),
(26831, 'Pazhani bharathi s', '13', '9345710556', '', 'pazhanibharathi.ssp@gmail.com', '2003-05-07', 22, '6', '2', 'Sivakumar S', 'Teacher', 25000.00, 1, 0.00, 300000.00, 'THANJAVUR', 'chennai', '2509130017', '', '1', 'upload_files/candidate_tracker/88799693846_PBresumeOnlineApply.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-13 01:23:15', 1, '2025-09-13 01:55:41', 0, NULL, 1),
(26832, 'deepak m', '13', '6369779365', '', 'deepak.csemamse2021@gmail.com', '2003-12-23', 21, '6', '2', 'murugesan', 'businessman', 20000.00, 1, 0.00, 300000.00, 'trichy', 'chennai', '2509130018', '', '1', 'upload_files/candidate_tracker/64001719811_MainResume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-13 01:24:00', 1, '2025-09-13 01:35:18', 0, NULL, 1),
(26833, 'pavithra A', '13', '8098924904', '9092923881', 'Pavithraarumugam40@gmail.com', '2003-07-03', 22, '4', '2', 'Arumugam', 'Welding work shop', 75000.00, 1, 0.00, 20000.00, 'villuppuram', 'Chennai', '2509130019', '', '1', 'upload_files/candidate_tracker/8614247661_A.PavithraIT.new.pdf', NULL, '1', '2025-09-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-13 02:01:42', 1, '2025-09-13 02:11:27', 0, NULL, 1),
(26834, 'Kamesh M', '13', '9080764146', '7373907621', 'kennykamesh006@gmail.com', '2000-10-17', 24, '6', '2', 'Murugan D', 'Farmer', 50000.00, 1, 0.00, 25000.00, 'Tiruvannamalai', 'Chennai', '2509130020', '', '1', 'upload_files/candidate_tracker/41175156085_KameshMuruganCvProfessional.pdf.pdf', NULL, '1', '2025-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-13 03:09:12', 1, '2025-09-13 03:13:41', 0, NULL, 1),
(26835, 'Karthika', '13', '9159127367', '8807908379', 'Karthika8628@gmail.com', '2004-07-04', 21, '3', '2', 'Karuppaiya', 'Wage work', 75000.00, 2, 0.00, 200000.00, 'Karaikudi', 'Karaikudi', '2509130021', '', '1', 'upload_files/candidate_tracker/94410741442_JuniorsoftwareDeveloperkarthika202507152209530000.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-13 03:13:05', 1, '2025-09-13 03:16:56', 0, NULL, 1),
(26836, 'Surendar', '2', '8778897164', '', 'sureasurendhar1@gmail.com', '2002-04-17', 23, '5', '2', 'Subramani N', 'Driver', 25000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2509140001', '', '1', 'upload_files/candidate_tracker/15236380081_SurendharResumeUpdated1.pdf', NULL, '1', '2025-10-10', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Sathish Sir took the interview', '', '', '', '', '', '1970-01-01', 1, '2025-09-14 04:24:16', 104, '2025-10-10 06:17:49', 0, NULL, 1),
(26837, 'Swetha M', '13', '9361548380', '', 'swethamohanvdm@gmail.com', '2002-09-24', 22, '6', '2', 'Mohan S', 'Electrician', 45000.00, 2, 0.00, 400000.00, 'vriddhachalam 606001', 'shollinganallur chennai 600119', '2509140002', '', '1', 'upload_files/candidate_tracker/9231906103_SwethaMResume1.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-14 04:24:31', 1, '2025-09-14 04:30:07', 0, NULL, 1),
(26838, 'ADHARSH M', '31', '8124433871', '6385313885', 'adharshamya@gmail.com', '2003-04-05', 22, '6', '2', 'Murugan', 'Mechanic', 10000.00, 1, 0.00, 300000.00, 'Thoothukudi', 'Manappakkam,Chennai', '2509140003', '', '1', 'upload_files/candidate_tracker/70402038553_AdharshResume.pdf', NULL, '1', '2025-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-14 04:28:04', 1, '2025-09-14 04:32:11', 0, NULL, 1),
(26839, 'KARISHMA', '13', '6380510523', '', 'karishmar22042002@gmail.com', '2002-04-22', 23, '6', '2', 'Rahamath Khan', 'Daily wages', 20000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2509140004', '', '1', 'upload_files/candidate_tracker/83445650717_KarishmaResume..pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-14 04:40:27', 1, '2025-09-14 04:43:09', 0, NULL, 1),
(26840, 'Surya Prakash E', '13', '8248586422', '9965746322', 'rajasurya8677@gmail.com', '2002-07-31', 23, '3', '2', 'ezhumalai', 'coolie', 84000.00, 1, 0.00, 400000.00, 'Tenkasi', 'chennai', '2509140005', '', '1', 'upload_files/candidate_tracker/82994380545_SURYAPRAKASHResume.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-14 04:42:41', 1, '2025-09-14 04:46:10', 0, NULL, 1),
(26841, '', '0', '9361489821', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509140006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-14 05:20:51', 0, NULL, 0, NULL, 1),
(26842, '', '0', '9042288609', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-14 05:53:56', 0, NULL, 0, NULL, 1),
(26843, 'Aruna M', '13', '9361489821', '', 'abarnamabr@gmai.com', '2002-11-05', 22, '3', '2', 'MADASAM', 'Buliding contact', 40000.00, 1, 0.00, 25000.00, 'Theni', 'Chennai', '2509140008', '', '1', 'upload_files/candidate_tracker/52308801199_arunaM.pdf', NULL, '1', '2025-09-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '1', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 154, '2025-09-14 11:32:46', 154, '2025-09-14 11:43:51', 0, NULL, 1),
(26844, 'Seneha', '13', '9042288609', '', 'senehagayathri@gmai.com', '2003-09-13', 22, '3', '2', 'Selvaraj', 'Courier SHop', 10000.00, 1, 0.00, 20000.00, 'Arcot', 'Chennai', '2509140009', '', '1', '0', NULL, '1', '2025-09-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '1', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 154, '2025-09-14 11:42:47', 154, '2025-09-14 11:44:39', 0, NULL, 1),
(26845, '', '0', '7604957038', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509140010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-14 08:18:44', 0, NULL, 0, NULL, 1),
(26846, '', '0', '7397115957', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509140011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-14 08:28:47', 0, NULL, 0, NULL, 1),
(26847, 'Sudhan M', '13', '6384867600', '', 'sudhanmadhan10@gmail.com', '2003-08-25', 22, '3', '2', 'Manikandan K', 'Student (Fresher)', 15000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2509140012', '', '1', 'upload_files/candidate_tracker/98168726014_MyUpdateResume1.411.pdf', NULL, '1', '2025-09-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-14 09:58:56', 1, '2025-09-14 10:02:02', 0, NULL, 1),
(26848, 'Gajalakshmi c', '6', '8754621958', '', 'gajalakshmic08@gmail.com', '2003-08-25', 22, '2', '2', 'Chitty babu C', 'Daily Wages', 22000.00, 2, 0.00, 20000.00, '19,New street keezh bhuvanagiri', '19,New street keezh bhuvanagiri', '2509140013', '1', '1', 'upload_files/candidate_tracker/49242593211_C.Gajalakshmiresume.pdf', NULL, '1', '2025-09-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-09-14 03:33:59', 154, '2025-09-17 12:36:28', 0, NULL, 1),
(26849, 'Ashwin R', '13', '7010207590', '', 'rashwin4099@gmail.com', '2003-11-10', 21, '5', '2', 'Ramakrishnan T', 'ITI Management', 50000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2509140014', '', '1', 'upload_files/candidate_tracker/35443645358_AshwinRresume.pdf', NULL, '1', '2025-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-14 06:09:06', 1, '2025-09-22 09:40:34', 0, NULL, 1),
(26850, 'Esthar stela priya', '4', '6383493977', '', 'estherpriya8621@gmail.com', '2002-08-06', 23, '3', '2', 'David', 'Not working', 10000.00, 2, 18000.00, 23000.00, 'Kolathur', 'Kolathur', '2509150001', '', '2', 'upload_files/candidate_tracker/11706054466_EstherpriyaDOC20250815WA0015.docx', NULL, '1', '2025-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-15 05:03:48', 1, '2025-09-15 05:08:40', 0, NULL, 1),
(26851, 'G Dinakaran', '5', '6382155400', '9626441235', 'dinakaran1513@gmail.com', '1999-05-13', 26, '2', '2', 'N Govindan', 'Farmer', 25000.00, 2, 15000.00, 25000.00, 'No 74 mariyamman Kovil Street Tiruvannamalai', 'Chennai ,saidapet', '2509150002', '1', '2', 'upload_files/candidate_tracker/67294115385_ResumeG1757140948610GDinakaran.pdf', NULL, '1', '2025-09-15', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55650', '55560', '1970-01-01', 1, '2025-09-15 05:13:08', 154, '2025-09-15 12:21:28', 0, NULL, 1),
(26852, 'Afrin banu', '6', '9789155345', '6380415506', 'afrinjaffer786@gmail.com', '2005-02-28', 20, '3', '2', 'Kareemullah', 'Business', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2509150003', '', '1', 'upload_files/candidate_tracker/89449632839_AfrinBanu1.pdf', NULL, '1', '2025-09-15', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-09-15 06:47:14', 154, '2025-09-15 03:26:45', 0, NULL, 1),
(26853, 'Shiny star.K', '6', '9566065172', '', 'shinystar1891@gmail.com', '2001-09-18', 23, '2', '2', 'Kamalakaran', 'Auto driver', 90.00, 2, 0.00, 1520.00, 'Madhavaram', 'Madhavaram', '2509150004', '1', '1', 'upload_files/candidate_tracker/3948425828_ShinystarResume19Jul2513.11.271.pdf', NULL, '1', '2025-09-15', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-09-15 07:04:42', 154, '2025-09-15 03:27:09', 0, NULL, 1),
(26854, 'G YUGAN', '6', '9345667009', '6381358734', 'yuganraj968@gmail.com', '2002-08-17', 23, '1', '2', 'Gunasekaran', 'Farmer', 12000.00, 2, 0.00, 20000.00, 'No52 ELAVAMPATTI TIRUPATHUR ( DT) tamilnadu 635602', 'Ask Nagar, Adambakkam, Chennai, Tamil Nadu 600088', '2509150005', '', '1', 'upload_files/candidate_tracker/57965087539_yuganGresume2025.pdf', NULL, '3', '2025-09-15', 0, 'C99129', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-09-15 07:26:59', 154, '2025-09-15 04:33:38', 0, NULL, 1),
(26855, 'LOKESH D', '6', '9345373959', '9345667009', 'dlokesh07072002@gmail.com', '2002-07-05', 23, '1', '2', 'Dharuman.R', 'Farmer', 13000.00, 0, 0.00, 20000.00, 'Tirupathur', 'Guindy', '2509150006', '', '1', 'upload_files/candidate_tracker/51194060125_cv151757578549609.pdf', NULL, '1', '2025-09-15', 0, 'C99129', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-09-15 07:27:27', 154, '2025-09-15 04:33:20', 0, NULL, 1),
(26856, 'Praveen Kumar M', '5', '6379999543', '9787291805', 'praveenkumar.cool33@gmail.com', '2001-02-11', 24, '2', '1', 'Divya', 'House wife', 20000.00, 1, 20000.00, 25000.00, 'Thiruvallur', 'Thiruvallur', '2509150007', '1', '2', 'upload_files/candidate_tracker/64966093332_PraveenKumarResume.doc', NULL, '3', '2025-09-15', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55650', '55560', '1970-01-01', 1, '2025-09-15 09:09:03', 154, '2025-09-15 04:34:00', 0, NULL, 1),
(26857, '', '0', '7598085943', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509150008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-15 09:37:25', 0, NULL, 0, NULL, 1),
(26858, 'gowtham ravikumar', '6', '7358551591', '', 'gowthamravikumar5@gmail.com', '2001-02-04', 24, '2', '2', 'ravikumar', 'electrication', 30000.00, 2, 18000.00, 20000.00, 'Chennai', 'Chennai', '2509150009', '1', '2', 'upload_files/candidate_tracker/86862798753_Gowthamresume.pdf', NULL, '1', '2025-09-16', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate suitable for collection work, he not interested appt, Sounds not good.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-09-15 09:58:12', 154, '2025-09-16 12:26:49', 0, NULL, 1),
(26859, '', '0', '9585850126', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509150010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-15 01:21:08', 0, NULL, 0, NULL, 1),
(26860, 'arshiyamubarak', '4', '9363025785', '', 'arshiyamubarak2302@gmail.com', '2010-09-15', 0, '2', '1', 'jeelan.ku', 'automobile shop', 8000.00, 0, 0.00, 20000.00, 'dharmapuri', 'ayanavaram. chennai', '2509150011', '1', '1', 'upload_files/candidate_tracker/55436709727_ArshiyaMubarakResume.pdf.pdf', NULL, '1', '2025-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-09-15 02:02:37', 1, '2025-09-15 02:10:30', 0, NULL, 1),
(26861, 'ananth kumar m b', '5', '9902764478', '8217393562', 'ananthkumarmb@gmail.com', '1994-11-20', 30, '2', '2', 'basavaraju', 'farmer', 50000.00, 2, 20000.00, 30000.00, 'bangalore btm layout', 'btm layout', '2509160001', '1', '2', 'upload_files/candidate_tracker/76810217603_DOC20250816WA0005..pdf', NULL, '1', '2025-09-16', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'suggested ctc 25k for rm', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1031', '', '55555', '5151', '1970-01-01', 1, '2025-09-16 03:48:51', 154, '2025-09-17 05:21:40', 0, NULL, 1),
(26862, 'sunil s', '6', '9360268392', '7358691071', 'sunilvalentino5@gmail.com', '2002-09-14', 23, '2', '2', 's radha', 'ironing', 25000.00, 1, 0.00, 20000.00, 'ambattur', 'Ambattur', '2509160002', '1', '1', 'upload_files/candidate_tracker/12691553966_BlackWhiteMinimalistCVResume.pdf', NULL, '1', '2025-09-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-09-16 05:38:47', 154, '2025-09-16 12:27:19', 0, NULL, 1),
(26863, 'Abinaya V', '6', '9789312872', '7871970772', 'abinaya584838@gmail.com', '2005-02-17', 20, '2', '2', 'Banumathi V', 'House wife', 72000.00, 6, 0.00, 15000.00, 'Thoothukudi', 'Chennai', '2509160003', '1', '1', 'upload_files/candidate_tracker/36434777074_CV20250825043432.pdf', NULL, '1', '2025-09-16', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not suitable for sales profile, communication not good, low confident level, reject', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-09-16 05:53:10', 154, '2025-09-16 12:32:42', 0, NULL, 1),
(26864, '', '0', '9944633125', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509160004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-16 05:53:57', 0, NULL, 0, NULL, 1),
(26865, 'Praveena S', '6', '9080276236', '7339112448', 'pravee0605@gmail.com', '2004-01-06', 21, '2', '2', 'Uma', 'Tailer', 60000.00, 3, 0.00, 15000.00, 'Thoothukudi', 'Chennai', '2509160005', '1', '1', 'upload_files/candidate_tracker/31715990407_praveeCV211.pdf', NULL, '1', '2025-09-16', 0, '', '3', '59', '2025-09-17', 180000.00, '', '3', '2025-09-29', '2', 'Communication OK fresher  our insurance sales cam along with friends only she got selected fr this role family need is there can be trained in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '2025-09-17', 1, '2025-09-16 05:54:45', 60, '2025-09-16 07:13:35', 0, NULL, 1),
(26866, 'C Karthick', '5', '9500566100', '9094590717', 'karthickchandrasekar031@gmail.com', '1997-08-27', 28, '2', '2', 'C Devi', 'Accountant', 22000.00, 1, 300000.00, 350000.00, 'Chennai', 'Chennai', '2509160006', '1', '2', 'upload_files/candidate_tracker/96645678849_telesaleresume.docx', NULL, '1', '2025-09-17', 0, '', '3', '59', '2025-09-22', 348000.00, '', '3', '2025-12-31', '1', 'Communicaton Ok have exp in sales yes bacnk can be trained in our roles based on gaurav sir feedback proceeded withthis salary', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55650', '55560', '2025-09-22', 1, '2025-09-16 06:04:06', 60, '2025-09-20 06:57:02', 0, NULL, 1),
(26867, 'Antony Jeni V', '6', '9944636125', '9442886596', 'jjeni0744@gmail.com', '2005-01-25', 20, '2', '2', 'M. Vincent', 'Coolie', 15000.00, 5, 0.00, 15000.00, 'Thoothukudi', 'Chennai', '2509160007', '1', '1', 'upload_files/candidate_tracker/98351489649_Jenimyfile.pdf', NULL, '1', '2025-09-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-09-16 06:07:21', 154, '2025-09-16 12:57:17', 0, NULL, 1),
(26868, 'Deepika Mathiyalagan', '6', '9150659787', '', 'deepikamathi25@gmail.com', '2001-08-25', 24, '2', '2', 'Lakshmi Mathiyalagan', 'Homemaker', 15000.00, 1, 22000.00, 25000.00, 'Choolaimedu', 'Choolaimedu', '2509160008', '1', '2', 'upload_files/candidate_tracker/66893836006_DeepikaMathiyalagan.pdf', NULL, '1', '2025-09-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-09-16 06:36:24', 154, '2025-09-16 12:56:08', 0, NULL, 1),
(26869, '', '0', '9380302169', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509160009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-16 12:08:06', 0, NULL, 0, NULL, 1),
(26870, 'Gnaneshwari KS', '4', '7676546431', '7676536431', 'gnaneshwarignanu303@gmail.com', '2003-06-02', 22, '3', '2', 'Suresh', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Tumkur', 'Btm layout', '2509160010', '', '1', 'upload_files/candidate_tracker/26433028961_BlueAndPinkModernGraphicDesignerResume202412181541100000.pdf', NULL, '1', '2025-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-16 01:03:37', 1, '2025-09-16 01:08:26', 0, NULL, 1),
(26871, 'Rajesh Kumar M', '6', '8754170438', '8760659620', 'raajays4g@gmail.com', '1999-05-24', 26, '2', '2', 'Parents', 'Tailor', 15000.00, 1, 0.00, 16000.00, 'Dindigul', 'Chennai', '2509170001', '1', '1', 'upload_files/candidate_tracker/156432905_RAJESHKUMAR.pdf', NULL, '1', '2025-09-17', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also his understanding knowledge is very poor.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2025-09-17 04:17:37', 154, '2025-09-17 11:54:31', 0, NULL, 1),
(26872, 'Naveen G', '6', '9791216736', '', 'naveen.22.co@gmail.com', '2010-09-17', 0, '2', '2', 'M Guna Sekaran', 'Fresher', 150000.00, 1, 0.00, 16000.00, 'No. 1 Gandhi street Tharamani chennai 600113', 'Tharamani', '2509170002', '1', '1', 'upload_files/candidate_tracker/42668419841_NaveenGresume1.pdf', NULL, '1', '2025-09-17', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good.also he performed very lazy amnd drowsy .then he is dilemma person,so sustainable is doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2025-09-17 05:11:18', 154, '2025-09-17 11:54:56', 0, NULL, 1),
(26873, 'Sarathi s', '6', '8524925461', '', 'sarathisankar43@gmail.com', '2003-05-13', 22, '2', '2', 'Sankar s', 'Daily wages', 20000.00, 2, 0.00, 18000.00, '290 new Street chiththarasur, Cuddalore district', 'Cuddalore', '2509170003', '1', '1', 'upload_files/candidate_tracker/44057306650_sarathiresumedoc1.pdf', NULL, '1', '2025-09-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-09-17 05:49:21', 154, '2025-09-17 12:37:00', 0, NULL, 1),
(26874, 'Yoganath', '6', '9344493438', '8489027005', 'yoganathyoganath8524@gmail.com', '2004-05-08', 21, '2', '2', 'rajarathinam', 'not alive', 1.00, 2, 0.00, 19000.00, 'karaiyur .thiruppathur .sivaganagai', 'alandur madipakkam', '2509170004', '1', '1', 'upload_files/candidate_tracker/61714454397_YOGANATHR.pdf', NULL, '1', '2025-09-19', 0, '', '3', '59', '2025-09-22', 204000.00, '', '3', '2025-09-23', '2', 'Communication Ok 3 months exp in care Health  family need is there 5050 need to check in training', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '2025-09-22', 1, '2025-09-17 06:03:36', 104, '2025-09-22 09:30:31', 0, NULL, 1),
(26875, 'Kavya naik', '6', '9606872442', '', 'Kavyanaik2626@gmail.com', '1995-04-26', 30, '2', '1', 'Vikram naik', 'Employe', 20000.00, 1, 0.00, 15000.00, 'Honnavar uttara kannada', 'Banglore', '2509170005', '1', '1', 'upload_files/candidate_tracker/34661317136_KavyaResume.pdf', NULL, '1', '2025-09-17', 0, '', '3', '59', '2025-10-06', 216000.00, '', '3', '2026-01-28', '2', 'Communication Ok can be trained in our roles need to check in person and confirm', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55555', '5151', '2025-10-06', 1, '2025-09-17 06:35:23', 60, '2025-10-04 06:04:56', 0, NULL, 1),
(26876, 'Laxmi amrutha rojed', '6', '7259852878', '8446747345', 'laxmirojed@gmail.com', '2001-06-01', 24, '2', '1', 'AMRISH', 'Infosys -IT', 25000.00, 3, 19000.00, 20000.00, 'Hosa road Bangalore', 'Hosa road Bangalore', '2509170006', '1', '2', 'upload_files/candidate_tracker/58942349838_Laxmiresume.pdf', NULL, '1', '2025-09-17', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'LACK OF INTEREST AND COMMUNICATION ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', 'I1077', '55566', '1970-01-01', 1, '2025-09-17 06:48:28', 162, '2025-09-17 04:52:02', 0, NULL, 1),
(26877, 'varsha', '4', '7200847046', '', 'varshakothari1111@gmail.com', '2010-09-17', 0, '2', '2', 'ramanlal', 'employee', 300000.00, 1, 17000.00, 20000.00, 'chennai', 'chennai', '2509170007', '50', '2', 'upload_files/candidate_tracker/26964093827_BhuvanehwaranResume.pdf', NULL, '1', '2025-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-17 06:52:38', 1, '2025-09-17 06:55:21', 0, NULL, 1),
(26878, 'Kavitha', '6', '6381328721', '8428108259', 'kavithakumar2206@gmail.com', '2001-06-22', 24, '2', '2', 'Kumaravel.M', 'Gooli', 10000.00, 1, 21500.00, 25000.00, 'No:8/13 Bharathi Nagar 10th Street', 'Korukkupet Chennai -21', '2509170008', '1', '2', 'upload_files/candidate_tracker/51345429683_Kavitha312.pdf', NULL, '1', '2025-09-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2025-09-17 07:21:41', 154, '2025-09-17 01:14:02', 0, NULL, 1),
(26879, 'Jyothi R', '4', '8088985191', '9916566991', 'jr9649603@gmail.com', '2002-06-10', 23, '3', '1', 'Prakash kumar', 'Felid officer', 2.50, 0, 18000.00, 20000.00, 'Goripalya', 'Goripalya', '2509170009', '', '2', 'upload_files/candidate_tracker/18074058315_JyothiCV.pdf', NULL, '1', '2025-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-17 08:59:38', 1, '2025-09-17 09:05:05', 0, NULL, 1),
(26880, 'gajendra k', '6', '9481722531', '9972935214', 'kgajendra01072000@gmail.com', '2000-07-01', 25, '2', '2', 'Father', 'Formar', 20000.00, 5, 18000.00, 20000.00, 'CHIKKABALLAPUR', 'CHIKKABALLAPUR', '2509170010', '1', '2', 'upload_files/candidate_tracker/78822735085_gajendrak.pdf', NULL, '1', '2025-09-19', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Suggested ctc 20k for vasu team dm', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2025-09-17 09:27:52', 154, '2025-09-26 05:53:26', 0, NULL, 1),
(26881, 'Jeromemillioner', '4', '6380082320', '6381151183', 'jeromemilliner96@gmail.com', '2001-07-21', 24, '2', '2', 'Mother: juliet', 'B com. G', 60000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2509170011', '50', '1', 'upload_files/candidate_tracker/47288161765_DocScannerMay22025919PM1.pdf', NULL, '1', '2025-09-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-17 10:07:37', 1, '2025-09-17 10:12:38', 0, NULL, 1),
(26882, '', '0', '7338828826', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509170012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-17 12:07:57', 0, NULL, 0, NULL, 1),
(26883, 'Ashif G', '4', '8124089490', '', 'ashifashmugi@gmail.com', '1999-04-10', 26, '2', '2', 'Parveen', 'Housewife', 15000.00, 2, 19000.00, 20000.00, 'Chennai vyasarpadi', 'Chennai vyasarpadi', '2509170013', '50', '2', 'upload_files/candidate_tracker/67200301927_Updatedashifresume2025.pdf', NULL, '1', '2025-09-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-17 01:06:53', 1, '2025-09-17 01:11:14', 0, NULL, 1),
(26884, 'sneka kannan', '4', '6385287854', '9003486498', 'Sineka1407@gmail.com', '2004-09-14', 21, '2', '2', 'S.Kannan', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2509170014', '1', '1', 'upload_files/candidate_tracker/46398312923_CopyofDOC20250207WA0016.202508242045050000.pdf', NULL, '1', '2025-09-19', 0, '', '3', '59', '2025-09-22', 156000.00, '', '3', '2025-09-29', '1', 'Communication Ok fresher open for insurance sales can be trained and check', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', '5151', '2025-09-22', 1, '2025-09-17 02:03:19', 60, '2025-09-20 06:48:52', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26885, 'Mahammad Samreez', '4', '9449759313', '', 'samreezchammu@gmail.com', '2004-12-29', 20, '5', '2', 'Parent', 'Farmer', 30000.00, 6, 0.00, 18000.00, 'Belthangady', 'Belthangady', '2509170015', '', '1', 'upload_files/candidate_tracker/52338303992_Samreezcv.pdf', NULL, '2', '2025-09-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-17 03:27:32', 1, '2025-09-17 03:44:37', 0, NULL, 1),
(26886, 'Surutha.s', '6', '8300429382', '', 'suruthassuruthas@gmail.com', '2003-08-16', 22, '2', '2', 'Saker', 'Bus driver', 20000.00, 2, 0.00, 18.00, 'Villupuram', 'Koyambadu', '2509180001', '1', '1', 'upload_files/candidate_tracker/92162965811_Surutha.sFlowCVResume20250811.pdf', NULL, '1', '2025-09-22', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not responding for anything in the interview and very slow so not fit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2025-09-18 02:09:15', 154, '2025-09-22 12:34:38', 0, NULL, 1),
(26887, '', '0', '7094683109', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509180002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-18 04:54:38', 0, NULL, 0, NULL, 1),
(26888, 'AJAY', '6', '7092555444', '', 'ajay2020caa@gmail.com', '2004-02-17', 21, '2', '2', 'Arunkumar C', 'Car driver', 35000.00, 1, 0.00, 20000.00, '25 BAJANAI KOIL STREET, KANNAMAPET,T Nagar', '25 BAJANAI KOIL STREET, KANNAMAPET,T Nagar ,CH 17', '2509180003', '1', '1', 'upload_files/candidate_tracker/73742601437_DOC20250918WA0008.PDF', NULL, '1', '2025-09-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-09-18 05:58:48', 154, '2025-09-18 01:22:39', 0, NULL, 1),
(26889, 'Sathiya R', '6', '8072749426', '', 'Sathiyaraja1699sa@gmail.com', '2001-11-01', 23, '2', '2', 'Raja k', 'Driver', 80000.00, 2, 0.00, 18000.00, 'Chromepet', 'Chromepet', '2509180004', '50', '1', 'upload_files/candidate_tracker/58752953722_455A5CD40EDD44BF80CEA0F0171EA88D.pdf', NULL, '1', '2025-09-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Teaching profile till Nov  she is looking for job already she applied multiple schools and colleges and awaiting for the results', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-18 06:37:30', 154, '2025-09-18 02:37:38', 0, NULL, 1),
(26890, 'B.Yamini', '6', '7075828170', '9176237773', 'yyamuyamini19@gmail.com', '2004-12-06', 20, '2', '2', 'Babu', 'Daily Wager', 100000.00, 0, 0.00, 25000.00, '191,R.gollapalli, Modikuppam post, Gudiyatham,TN', 'Anna nagar', '2509180005', '1', '2', 'upload_files/candidate_tracker/87999458640_yaminiresume.pdf', NULL, '1', '2025-09-18', 15, '', '3', '59', '2025-10-03', 228000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp can give a try in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '2025-10-03', 1, '2025-09-18 06:39:00', 60, '2025-09-30 06:30:32', 0, NULL, 1),
(26891, 'Yokesh k', '6', '7538836063', '', 'yokeshyoo123@gmail.com', '2003-02-25', 22, '2', '2', 'Krishnan n', 'Real estate broker', 15000.00, 1, 0.00, 200000.00, 'Thanjavur', 'Chennai', '2509180006', '50', '1', 'upload_files/candidate_tracker/3105560516_Resume1.pdf', NULL, '1', '2025-09-19', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is good,but performance is little poor.also he is confusing in the term of process.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-09-18 08:44:58', 154, '2025-09-19 12:15:54', 0, NULL, 1),
(26892, '', '0', '6369165322', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509180007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-18 09:36:45', 0, NULL, 0, NULL, 1),
(26893, 'Harish kumar', '6', '6381448321', '7338928370', 'harimakk2@gmail.com', '2002-01-29', 23, '2', '2', 'Prabhakar', 'Auto driver', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2509180008', '50', '1', 'upload_files/candidate_tracker/7226050912_ResumeHarish2.pdf', NULL, '1', '2025-09-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-18 10:18:15', 154, '2025-09-23 06:05:42', 0, NULL, 1),
(26894, 'ManojKumar Meganathan', '5', '9087456784', '7448645875', 'markmanoj678@gmail.com', '1997-03-17', 28, '2', '2', 'Prema', 'Home maker', 40000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2509180009', '50', '2', 'upload_files/candidate_tracker/11901252055_CV2025091109111796.pdf', NULL, '1', '2025-09-19', 0, '', '5', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not enough sales skills, Over confident', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-09-18 10:54:48', 154, '2025-09-19 01:23:56', 0, NULL, 1),
(26895, 'Shafia Thabassum', '6', '9940539780', '6385543768', 'shafiathabassum2330@gmail.com', '2003-06-23', 22, '2', '2', 'Usman', 'Ac machanic', 20000.00, 1, 13000.00, 16000.00, 'Adambakkam', 'Adambakkam', '2509180010', '50', '2', 'upload_files/candidate_tracker/10311021109_ShafiaThabassumResume.pdf', NULL, '1', '2025-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she need time to decide focusing only on the salary and much comfort to work in non voice much', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-18 11:22:47', 154, '2025-09-19 04:46:42', 0, NULL, 1),
(26896, 'Tamilselvan j', '4', '9150432134', '9042387632', 'Tamilofficial58@gmail.com', '2003-03-19', 22, '2', '2', 'John Vorgees', 'Warehouse supervisor', 22000.00, 1, 17000.00, 21000.00, 'No.186 kk nagar vyasarpadi chennai', 'Chennai', '2509180011', '50', '2', 'upload_files/candidate_tracker/74753695236_Tamilresumepdf.pdf', NULL, '1', '2025-09-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-18 11:39:38', 1, '2025-09-19 03:02:40', 0, NULL, 1),
(26897, 'sriharikrishnaps', '6', '8925471198', '', 'sriharikrishna2003@gmail.com', '2003-08-10', 22, '2', '2', 'srinivasalu', 'mazdoor', 20.00, 2, 18000.00, 21000.00, 'portugese church street shanmugarayan nagar', 'portugese church street shanmugarayan nagar', '2509180012', '50', '2', 'upload_files/candidate_tracker/71171401794_SRIHARIRESUMET.pdf', NULL, '1', '2025-09-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-09-18 12:02:10', 154, '2025-09-19 04:49:43', 0, NULL, 1),
(26898, 'Janani', '4', '9150885556', '', 'jerryjanani303@gmail.com', '2010-09-18', 0, '2', '1', 'vignesh', 'defence', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2509180013', '50', '1', 'upload_files/candidate_tracker/39822247996_DOC20250804WA0029..pdf', NULL, '1', '2025-09-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-18 12:31:35', 1, '2025-09-18 12:35:24', 0, NULL, 1),
(26899, 'Gowtham E', '6', '8939676854', '', 'jaygowtham565@gmail.com', '2003-10-01', 21, '2', '2', 'Elangovan S', 'Xerox Shop', 20000.00, 1, 0.00, 15000.00, 'Aaduthurai, Kumbakonam', 'Mylapore, Chennai', '2509180014', '50', '1', 'upload_files/candidate_tracker/8141347469_GowthamECV.pdf', NULL, '1', '2025-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok Fresher much focus to go with Cyber security Role not much comfort with voice as of now if he didnt get any opportunities if he comes in future let us try', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-18 01:20:36', 154, '2025-09-22 12:33:46', 0, NULL, 1),
(26900, 'Jaiganesh Narayanan', '13', '8939129572', '', 'jaiganeshrio474@gmail.com', '2004-07-04', 21, '2', '2', 'Eswaran', 'Self Employed', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2509180015', '1', '1', 'upload_files/candidate_tracker/11334366378_JaiganeshNarayananAvasoftResumeSept251.pdf', NULL, '1', '2025-09-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-09-18 01:23:38', 1, '2025-09-18 01:49:06', 0, NULL, 1),
(26901, 'M G Raahul Jain', '22', '6380289805', '6369665842', 'rahuljain28gbhuvaneswari@gmail.com', '2005-03-28', 20, '2', '2', 'Bhuvaneshwari. G', 'House wife', 25000.00, 1, 0.00, 25000.00, 'Triplicane chennai', 'CHENNAI', '2509180016', '1', '1', 'upload_files/candidate_tracker/49281870943_MGRAAHULJAIN4.pdf', NULL, '3', '2025-09-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-09-18 01:29:24', 154, '2025-09-19 02:55:23', 0, NULL, 1),
(26902, 'Somanath B', '13', '6379720560', '7871449017', 'somanathboopathy@gmail.com', '2004-02-25', 21, '2', '2', 'Boopathy S', 'Cooli', 30000.00, 2, 0.00, 25000.00, 'Chennai-51', 'Chennai-51', '2509180017', '1', '1', 'upload_files/candidate_tracker/31794079060_SomanathBCV.pdf', NULL, '1', '2025-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', '0', '0', NULL, 1, '2025-09-18 02:22:06', 1, '2025-09-18 02:30:45', 0, NULL, 1),
(26903, 'jackson jublience joseph', '2', '7299127499', '9962962492', 'jackson98@outlook.in', '1998-12-20', 26, '2', '2', 'lawrance', 'Business', 50000.00, 1, 420000.00, 800000.00, 'chennai', 'chennai', '2509180018', '1', '2', 'upload_files/candidate_tracker/98913400971_Jacksonaug25.pdf', NULL, '1', '2025-09-20', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-09-18 04:56:25', 154, '2025-09-20 01:32:31', 0, NULL, 1),
(26904, 'Hemalatha Eswarapatham', '6', '8939668413', '9962404087', 'hemalathaeswaran9@gmail.com', '2003-02-15', 22, '2', '2', 'Eswarapatham N', 'Supervisor', 26000.00, 2, 0.00, 18000.00, 'I. O. C ,tondiarpet', 'I. O. C ,tondiarpet', '2509190001', '57', '1', 'upload_files/candidate_tracker/8433432272_CV2025091713342347.pdf', NULL, '1', '2025-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Seems to be slow and not aggressive for sales alos preferred to go with non voice family need is there', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-19 04:46:47', 154, '2025-09-19 11:11:58', 0, NULL, 1),
(26905, 'Velmurugan M', '13', '9698999873', '6383033020', 'velvm1997@gmail.com', '1997-05-16', 28, '2', '1', 'Arunjothi A', 'House wife', 25000.00, 0, 25000.00, 20000.00, 'Theni', 'Guindy', '2509190002', '1', '2', 'upload_files/candidate_tracker/21819249006_Velmurugan1.pdf', NULL, '1', '2025-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-09-19 04:48:15', 1, '2025-09-19 04:53:29', 0, NULL, 1),
(26906, 'harshan krishna k', '6', '7598973176', '8489443176', 'HarshanKrishna410@gmail.com', '2003-04-10', 22, '2', '2', 'prasanna mothe', 'eac', 14500.00, 0, 0.00, 17000.00, 'tiruvallur', 'tiruvallur', '2509190003', '50', '1', 'upload_files/candidate_tracker/28550575358_Screenshot20250918at5.04.19PM.pdf', NULL, '1', '2025-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good in Communication Too long Distance also he is open for IT Vacancies for time being he is looking into this ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-19 05:04:37', 154, '2025-09-19 04:46:08', 0, NULL, 1),
(26907, 'Ashwin', '11', '9080604930', '', 'ashwinbalajikrishnan@gmail.com', '2003-08-07', 22, '2', '2', 'Balaji', 'Business', 15000.00, 1, 0.00, 10000.00, 'Guindy, Chennai', 'Guindy, Chennai', '2509190004', '1', '1', 'upload_files/candidate_tracker/39134793707_Resume.pdf', NULL, '1', '2025-09-19', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-09-19 05:17:24', 154, '2025-09-19 01:24:24', 0, NULL, 1),
(26908, 'Thamilarasan', '4', '8438919027', '8270122110', 'tamilkingarasan69@gmail.com', '1995-04-08', 30, '2', '2', 'Balasingam', 'Painter', 15000.00, 1, 16000.00, 18000.00, 'Perambulur', 'Perumkalthur', '2509190005', '50', '2', 'upload_files/candidate_tracker/2103531206_tamil...pdf.pdf', NULL, '1', '2025-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-19 05:17:26', 1, '2025-09-19 05:43:04', 0, NULL, 1),
(26909, 'AJAY', '6', '6379410845', '6369048882', 'jkajay269@gmail.com', '1999-12-26', 25, '2', '2', 'JAGADEESAN', 'Tailor', 40000.00, 3, 0.00, 22000.00, 'Kallakurichi', 'Guindy', '2509190006', '50', '1', 'upload_files/candidate_tracker/97614051155_AjayCV.pdf', NULL, '1', '2025-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No sustainability 1.8 yrs 3 companies comparitively he is ok with non voice only for sales not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-19 05:28:36', 154, '2025-09-19 04:47:13', 0, NULL, 1),
(26910, 'Porselvan M', '11', '8668068728', '', 'porselvan26@gmail.com', '1997-11-26', 27, '2', '2', 'Jayadeepa', 'House wife', 25000.00, 1, 0.00, 3000.00, 'chennai', 'Ambattur Chennai', '2509190007', '1', '1', 'upload_files/candidate_tracker/82853339919_Porcheresume26111.pdf', NULL, '1', '2025-09-19', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-09-19 05:45:48', 154, '2025-09-19 01:25:08', 0, NULL, 1),
(26911, 'S Naveena', '22', '9940385514', '9025698712', 'naveenasenthil96@gmail.com', '1996-09-09', 29, '2', '1', 'Suthish kumar', 'Project manager', 30000.00, 1, 16000.00, 25000.00, 'Chennai', 'Chennai', '2509190008', '1', '2', 'upload_files/candidate_tracker/64415039079_SEOResume202505281111430000.pdf', NULL, '1', '2025-09-20', 0, '', '3', '59', '2025-10-06', 158496.00, '', '5', '1970-01-01', '1', 'Have exp in digital marketing and a gap too need to train for our roles 2yrs NDA for Digital Marketing', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '55605', '55566', '2025-10-06', 1, '2025-09-19 05:50:09', 60, '2025-10-04 06:07:17', 0, NULL, 1),
(26912, 'Bharath U', '6', '9884326276', '', 'bharathbharath7436@gmail.com', '2002-11-29', 22, '2', '2', 'Uma shankar', 'Working in TVS company', 30000.00, 0, 0.00, 2.70, 'Chennai', 'Chennai', '2509190009', '50', '1', 'upload_files/candidate_tracker/82570598499_resumeforjob1.pdf', NULL, '1', '2025-09-20', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is very slow. will not fit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-19 05:56:05', 154, '2025-09-22 10:08:17', 0, NULL, 1),
(26913, 'Paulin Priyanka Mariya Sahayanathan', '6', '9790862458', '', 'Paulinpriyanka1227@gmail.com', '1998-08-25', 27, '2', '2', 'Maria Sahayanathan', 'Retd (Ashok Leyland )', 10000.00, 1, 20000.00, 27000.00, 'Chennai', 'Chennai', '2509190010', '1', '2', 'upload_files/candidate_tracker/26506217706_IMG20250807WA0009.pdf', NULL, '3', '2025-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok for sales fresher have exp in retention but not suits with our budget CTC exp is 3LPA communicative but doubts in handling our sales pressure 2nd round GK sir reject', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-09-19 05:58:15', 154, '2025-09-19 03:08:17', 0, NULL, 1),
(26914, 'Prabhakaran Kottiswaran', '6', '8072227461', '9444911092', 'prabhakarankottieswaran@gmail.com', '2000-10-31', 24, '2', '2', 'Kottieswaran', 'Retired', 32000.00, 1, 14000.00, 17000.00, 'Chennai', 'Chennai', '2509190011', '1', '2', 'upload_files/candidate_tracker/43316267045_resumepdf.pdf', NULL, '1', '2025-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'mentioned exp as same for 6 months but voice no clarity and not suits for our roles will not handle our pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-09-19 06:51:32', 154, '2025-09-19 04:49:15', 0, NULL, 1),
(26915, 'naveen kumar', '6', '8681009252', '9176256928', 'havocnaveen2551@gmail.com', '2001-09-11', 24, '2', '2', 'egambaram', 'kooli', 45000.00, 3, 16000.00, 16000.00, 'tindivanam', 'saidapet', '2509190012', '1', '2', 'upload_files/candidate_tracker/62033028039_naveenkumare11.pdf', NULL, '1', '2025-09-19', 0, '', '3', '59', '2025-09-22', 198000.00, '', '3', '2025-09-29', '1', 'Previously attended with us and got rejected later got some exp and tried again 5050 check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55666', '5151', '2025-09-22', 1, '2025-09-19 06:58:35', 60, '2025-09-20 06:52:59', 0, NULL, 1),
(26916, 'Vigneshwar', '6', '9790742620', '8248101376', 'info2vigneshvicky@gmail.com', '2001-03-30', 24, '2', '2', 'velu p', 'building contractor', 20000.00, 2, 0.00, 18000.00, 'annai siva sakthi nagar lakshmipuram kolathur che', 'emarald street senthil nagar kolathur che', '2509190013', '50', '1', 'upload_files/candidate_tracker/72446240772_VVigneshwarresume.pdf', NULL, '3', '2025-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'open for non voice completely will not sustain in our sales profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-19 07:22:20', 154, '2025-09-19 04:48:51', 0, NULL, 1),
(26917, 'Tharakeshwaran T', '4', '9360310234', '', 'tharakeshthar@gmail.com', '2002-08-24', 23, '2', '2', 'Parents', 'BA LLB', 25000.00, 2, 0.00, 20000.00, 'CHENNAI CITY', 'CHENNAI CITY', '2509190014', '50', '1', 'upload_files/candidate_tracker/44554149745_Tharakcv.docx', NULL, '2', '2025-09-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-19 07:49:41', 1, '2025-09-19 08:52:28', 0, NULL, 1),
(26918, 'syed mohamed arsath p a', '6', '6381798020', '7299538066', 'smarsath2607@gmail.com', '1999-10-26', 25, '1', '2', 'faridha banu', 'house wife', 12000.00, 3, 30000.00, 24000.00, 'kundrathur', 'kundrathur', '2509190015', '', '2', 'upload_files/candidate_tracker/53096614877_ARSHATHRESUMEMAY24111.pdf', NULL, '1', '2025-09-19', 0, '77852', '3', '59', '2025-09-23', 300000.00, '', '3', '2025-09-30', '1', 'Communication Ok have complete exp in pharma sales Open for insurance and fresher to learn internal team madhan reference closed friend of Madhan itseems.Let us try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55645', '5151', '2025-09-23', 1, '2025-09-19 08:59:03', 60, '2025-09-23 09:48:25', 0, NULL, 1),
(26919, 'Swathi', '6', '9363191404', '', 'swathichandra533@gmail.com', '2004-06-13', 21, '2', '2', 'Chandra Sekaran', 'Self Employee', 96000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2509190016', '50', '1', 'upload_files/candidate_tracker/24858125243_SWATHICRESUME.pdf', NULL, '1', '2025-09-22', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for IT max', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-09-19 11:57:20', 154, '2025-09-22 12:35:19', 0, NULL, 1),
(26920, 'sandhya. d', '6', '7904595646', '', 'sandhyadeva0907@gmail.com', '2004-07-09', 21, '2', '2', 'a. devaraj', 'a.c technician', 15000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2509190017', '50', '1', 'upload_files/candidate_tracker/38245797476_Resume.pdf', NULL, '1', '2025-09-22', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for IT max. sustainability for our roles is doubtful', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-09-19 12:04:10', 154, '2025-09-22 12:37:13', 0, NULL, 1),
(26921, 'Nandhini D', '4', '9840225172', '9840328851', 'nandhinid739@gmail.com', '2004-03-12', 21, '2', '2', 'R.Dilli Babu & D.Ellammal', 'Daily wages', 96000.00, 1, 0.00, 300000.00, 'Avadi, Chennai', 'Avadi, Chennai', '2509190018', '50', '1', 'upload_files/candidate_tracker/67904539498_NandhiniResume.pdf', NULL, '1', '2025-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-19 12:32:48', 1, '2025-09-19 12:53:43', 0, NULL, 1),
(26922, 'Swetha v', '6', '9342197038', '', 'swethaveerapandian06@gmail.com', '2004-06-09', 21, '2', '2', 'Veerapandian', 'Banquet hall manager', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2509190019', '50', '1', 'upload_files/candidate_tracker/29277075112_Swethavresume.pdf', NULL, '1', '2025-09-22', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication ok, but mostly looking for IT, sustainability in our role is doubtful', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-09-19 12:44:47', 154, '2025-09-22 12:36:42', 0, NULL, 1),
(26923, '', '0', '7305356569', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509190020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-19 12:55:37', 0, NULL, 0, NULL, 1),
(26924, '6046 2003 4113', '34', '9080711887', '7299570113', 'thenmozhivaradharajan038@gmail.com', '2003-12-04', 21, '2', '2', 'Varadharajan.k,Anandhavalli.V', 'Lath (Labour)', 170000.00, 2, 0.00, 18000.00, 'Perambur', 'Perambur', '2509190021', '50', '1', 'upload_files/candidate_tracker/38567741702_ThenmozhiVaradharajan.VResume.pdf', NULL, '2', '2025-09-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-19 12:57:42', 1, '2025-09-19 01:03:25', 0, NULL, 1),
(26925, '', '0', '7358699704', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509190022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-19 01:23:02', 0, NULL, 0, NULL, 1),
(26926, '', '0', '9384305911', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509190023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-19 01:35:38', 0, NULL, 0, NULL, 1),
(26927, 'D Pradip raj', '23', '8124667729', '', 'pr4202689@gmail.com', '2003-09-10', 22, '2', '2', 'J Dhayalan', 'Customer relationship manager', 89000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2509190024', '50', '1', 'upload_files/candidate_tracker/68671052348_resume1.pdf', NULL, '1', '2025-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-19 02:14:03', 1, '2025-09-19 02:19:49', 0, NULL, 1),
(26928, '', '0', '9876543288', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509190025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-19 06:49:33', 0, NULL, 0, NULL, 1),
(26929, 'Emmanurel', '6', '9361751508', '9884001940', 'emmanlynn17@gmail.com', '2003-11-09', 21, '2', '2', 'Usha.L', 'Housekeeping', 12000.00, 1, 0.00, 17000.00, '38A/85 padavatamman koil street kosapet purasaiw', 'Chennai', '2509190026', '50', '1', 'upload_files/candidate_tracker/96512636502_BlueSimpleProfessionalCVResume1.pdf', NULL, '3', '2025-09-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-19 07:08:41', 154, '2025-09-22 10:07:46', 0, NULL, 1),
(26930, 'Nirmal Kumar', '6', '8610385026', '9361751508', 'Mrsingleboy29@gmail.com', '2005-03-30', 20, '2', '2', 'Babu', 'Coolie', 12000.00, 1, 0.00, 17.00, '17/6 anandha krishnan street choolai Chennai 112', '17/6 anandha krishnan street choolai Chennai 112', '2509200001', '50', '1', 'upload_files/candidate_tracker/23419745875_AdobeScan11Jun20255.pdf', NULL, '1', '2025-09-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-20 04:35:47', 154, '2025-09-22 10:06:54', 0, NULL, 1),
(26931, '', '0', '6381238613', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509200002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-20 04:48:41', 0, NULL, 0, NULL, 1),
(26932, 'B kishore Kumar', '6', '9150463661', '9087418028', 'Kishorraja0010@gmail.com', '2002-03-21', 23, '2', '2', 'S BALARAMAN', 'Florist', 30000.00, 1, 15000.00, 16000.00, 'Velachery', 'Keelkattalai', '2509200003', '1', '2', 'upload_files/candidate_tracker/5209884138_KishoreKumarb2.pdf', NULL, '1', '2025-09-20', 6, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-09-20 05:47:01', 154, '2025-09-20 01:31:03', 0, NULL, 1),
(26933, 'Sivamaran M', '6', '9360773097', '9566020875', 'sivamaransiva024@gmail.com', '2004-07-06', 21, '2', '2', 'N manimaran', 'Security', 14000.00, 1, 0.00, 15000.00, 'Kodambakkam', 'Kodambakkam', '2509200004', '1', '1', 'upload_files/candidate_tracker/29593802080_RESUME2.docx', NULL, '1', '2025-09-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-09-20 06:19:33', 154, '2025-09-20 01:31:47', 0, NULL, 1),
(26934, 'Kowsalya elumalai', '6', '6369684453', '', 'kowsalyaelumalai2002@gmail.com', '2002-08-09', 23, '2', '2', 'Elumalai', 'Coolie', 180000.00, 3, 13000.00, 20000.00, 'Manali', 'Manali', '2509200005', '1', '2', 'upload_files/candidate_tracker/44855136979_CV20250920122104.pdf', NULL, '1', '2025-09-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok. 9 m exp com good. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55645', '5151', '1970-01-01', 1, '2025-09-20 06:46:52', 154, '2025-09-20 07:08:16', 0, NULL, 1),
(26935, 'Priyadharshini', '6', '9360601820', '8754553520', 'Priyaramdoss2804@gmail.com', '2002-02-28', 23, '2', '2', 'Ramdoss', 'Driver', 30000.00, 1, 13000.00, 20000.00, 'Porur', 'Porur', '2509200006', '1', '2', 'upload_files/candidate_tracker/50048588495_Resume.pdf', NULL, '1', '2025-09-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, communication good. 9months exp in Hdb financial services cross check sustainability and confirm the joining date.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55732', '5151', '1970-01-01', 1, '2025-09-20 06:46:55', 154, '2025-09-20 07:08:08', 0, NULL, 1),
(26936, 'Karthik Kumar j', '4', '9962301898', '', 'jkarthikkumar05@gmail.com', '2004-12-05', 20, '2', '2', 'Jayakumar', 'Driver', 50000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2509200007', '50', '1', 'upload_files/candidate_tracker/46780469746_KARTHIKKUMARJ3.pdf', NULL, '1', '2025-09-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-20 07:32:59', 1, '2025-09-20 09:47:03', 0, NULL, 1),
(26937, 'Kaviya', '13', '9500147577', '9943483766', 'kaviya.p.22ds16@gmail.com', '2004-02-17', 21, '2', '2', 'Lakshmi', 'Cooli', 3000.00, 1, 0.00, 18000.00, 'viluppuram', 'Anna Nagar East', '2509200008', '50', '1', 'upload_files/candidate_tracker/90121043709_Kaviya.pdf', NULL, '1', '2025-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-20 08:26:18', 1, '2025-09-20 08:32:05', 0, NULL, 1),
(26938, '', '0', '9176188282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-20 08:27:51', 0, NULL, 0, NULL, 1),
(26939, '', '0', '6380860540', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509200010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-20 08:38:23', 0, NULL, 0, NULL, 1),
(26940, 'M.Parameswaran', '4', '6380620886', '', 'mbalaji152004@gmail.Com', '2004-05-01', 21, '2', '2', 'K. Marimuthu', 'TNEB', 30000.00, 3, 0.00, 20000.00, '8, Ambedkar Nagar, Acharapakkam, 603301', 'Saidapet-600015', '2509200011', '50', '1', 'upload_files/candidate_tracker/19009254295_parameshwaran.pdf', NULL, '3', '2025-09-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-20 09:20:40', 1, '2025-09-20 09:38:41', 0, NULL, 1),
(26941, 'Veeramani Ganesan', '13', '6369796684', '', 'veerags066@gmail.com', '2002-03-27', 23, '2', '2', 'Santhi', 'Null', 50000.00, 2, 2.60, 5.00, 'Vallam, Thanjavur', 'Ashok Pillar, Chennai', '2509200012', '1', '2', 'upload_files/candidate_tracker/76374729500_Veeramani.G.Nodejs.pdf', NULL, '1', '2025-09-24', 45, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-09-20 09:29:37', 1, '2025-09-20 09:40:02', 0, NULL, 1),
(26942, 'Mohamed Yusuf jamal', '5', '9080068107', '7449261406', 'jamalyusuf874@gmail.com', '1996-11-22', 28, '5', '1', 'Aladhiya', 'Work', 30000.00, 3, 32500.00, 40000.00, 'Chennai', 'Porur', '2509200013', '', '2', 'upload_files/candidate_tracker/98583016486_ALIYAYUSUFcorr.pdf', NULL, '1', '2025-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-20 09:46:20', 1, '2025-09-20 09:50:54', 0, NULL, 1),
(26943, 'Shanmugapriya', '4', '6380537723', '9384933013', 'seethapriya471@gmail.com', '2003-12-17', 21, '2', '2', 'Vadivel', 'Formar', 90000.00, 2, 0.00, 25000.00, 'Theni', 'Poonamallee', '2509200014', '50', '1', 'upload_files/candidate_tracker/70775764897_SHANMUGAPRIYA.VResume1.pdf', NULL, '1', '2025-09-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-20 09:56:36', 1, '2025-09-20 10:05:41', 0, NULL, 1),
(26944, 'melton nijanthu britto francismickeal', '2', '9345453081', '9942716209', 'melton619@outlook.com', '1999-10-06', 25, '2', '2', 'francis micheal', 'information technology', 100000.00, 1, 388800.00, 800000.00, 'udumalpet', 'coimbatore', '2509200015', '1', '2', 'upload_files/candidate_tracker/5288313594_MeltonSoftwareEngineerResume.pdf', NULL, '1', '2025-09-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-09-20 10:23:15', 154, '2025-09-22 06:18:13', 0, NULL, 1),
(26945, 'kathiravan r', '2', '8883939533', '', 'Kathiravanr1520@gmail.com', '2000-09-20', 25, '2', '2', 'rajasutha', 'home maker', 48000.00, 1, 480000.00, 700000.00, 'srimushnam', 'chennai', '2509200016', '1', '2', 'upload_files/candidate_tracker/45771135952_kathirupdated02cv.pdf', NULL, '1', '2025-09-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2025-09-20 10:37:52', 1, '2025-09-22 07:16:47', 0, NULL, 1),
(26946, 'Swathi', '4', '9094363338', '', 'swathichandra533@gmail.com', '2004-06-13', 21, '2', '2', 'Chandra Sekaran', 'Self Employee', 96000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2509200017', '50', '1', 'upload_files/candidate_tracker/39325077244_SWATHICRESUME.pdf', NULL, '1', '2025-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-20 12:34:58', 1, '2025-09-20 12:39:16', 0, NULL, 1),
(26947, '', '0', '7871739784', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509200018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-20 12:42:59', 0, NULL, 0, NULL, 1),
(26948, '', '0', '9884159481', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509200019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-20 01:42:40', 0, NULL, 0, NULL, 1),
(26949, '', '0', '9342810665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509210001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-21 08:56:25', 0, NULL, 0, NULL, 1),
(26950, '', '0', '8072771060', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509210002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-21 12:46:18', 0, NULL, 0, NULL, 1),
(26951, 'Rashmika', '4', '9600983245', '7305128166', 'rsrashmi3003@gmail.com', '2002-03-30', 23, '2', '2', 'Rajinikanth', 'Farmer', 50000.00, 1, 21000.00, 25000.00, 'Ramanathapuram', 'Tambaram', '2509220001', '1', '2', 'upload_files/candidate_tracker/21739425445_RashmikaRS2.pdf', NULL, '1', '2025-09-22', 30, '', '3', '59', '2025-11-05', 252000.00, '', '3', '2026-02-28', '2', 'Communication Ok have exp in justdial can give a try for our roles need to check in training', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55824', '55560', '2025-11-05', 1, '2025-09-22 03:52:50', 60, '2025-11-05 09:40:38', 0, NULL, 1),
(26952, 'T K Prathosh', '6', '9361915827', '8825802707', 'tkprathosh2005@gmail.com', '2005-06-04', 20, '2', '2', 'T S Kannan', 'Textile Shop', 30000.00, 1, 0.00, 25000.00, 'Madurai', 'Chennai', '2509220002', '1', '1', 'upload_files/candidate_tracker/47764959159_resume.pdf', NULL, '1', '2025-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to open up a lot seems to be much reserved will not sustain and handle our pressure not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-09-22 05:38:17', 154, '2025-09-22 05:27:08', 0, NULL, 1),
(26953, 'Sanjay A', '6', '6379979283', '6382334741', 'sanjaysanthip271@gmail.com', '2002-06-05', 23, '2', '2', 'No', 'Sales', 19000.00, 2, 1.00, 20000.00, 'Thiruvannamali', 'Maylapore', '2509220003', '1', '2', 'upload_files/candidate_tracker/42702713227_A.SANJAYRESUME.doc', NULL, '1', '2025-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not serious with the jobs long career gap and no job turnouts attended multiple/joined and left but not opening on these details much seems to give lot of stories', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-09-22 05:41:49', 154, '2025-09-22 05:23:58', 0, NULL, 1),
(26954, 'Paul Prakash k', '6', '9677391339', '7373697224', 'Jeffryyabesh@gmail.com', '2004-07-07', 21, '2', '2', 'Karuppaiya', 'Late', 70000.00, 2, 18500.00, 20000.00, 'Berra illam north mathevi road Perambalur', 'Kluster self car driving near alandhur chennai', '2509220004', '1', '2', 'upload_files/candidate_tracker/74433354113_BlackandWhiteCorporateResume1.pdf', NULL, '1', '2025-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is looking for customer support roles only and not much open for sales roles 5050 will not sustain and handle pressure in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-09-22 05:52:12', 154, '2025-10-07 11:47:35', 0, NULL, 1),
(26955, 'Dhiwakar raju', '5', '8220742273', '', 'DIWAJAI18@GMAIL.COM', '1998-03-10', 27, '2', '1', 'Jaishree', 'Teacher', 500000.00, 1, 0.00, 22000.00, 'Tollgate', 'Royapeetah', '2509220005', '1', '1', 'upload_files/candidate_tracker/42680913613_DHIWAKAR.pdf', NULL, '1', '2025-09-22', 0, '', '3', '59', '2025-09-29', 360000.00, '', '1', '1970-01-01', '1', 'Communication Ok complete different exp fresher for our core last company solid 8 yrs tenure can be trained based onArea manager recommends we proceeded with this CTC', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55656', '55557', '2025-09-29', 1, '2025-09-22 06:22:31', 60, '2025-09-27 05:28:10', 0, NULL, 1),
(26956, 'Sapthagirivasan M', '11', '9994088081', '', 'sapthagirivasan6@gmail.com', '2002-07-09', 23, '3', '2', 'Muthuraman K', 'Software employee', 600000.00, 1, 0.00, 25000.00, 'Chidambaram', 'Chidambaram', '2509220006', '', '1', 'upload_files/candidate_tracker/56457616257_SapthagirivasanResume.pdf.pdf', NULL, '1', '2025-09-22', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '4', '6', '', '2', '1970-01-01', '4', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-09-22 06:32:26', 154, '2025-09-22 12:39:41', 0, NULL, 1),
(26957, 'karthick anbu', '5', '7092334461', '9940051544', 'karthi1995srinithi@gmail.com', '1995-04-06', 30, '2', '2', 'anbu', 'buil contra', 2.00, 1, 3.00, 3.50, 'puzhal', 'puzhal', '2509220007', '1', '2', 'upload_files/candidate_tracker/89202730844_KarthickupdatedresumeNEW..doc', NULL, '1', '2025-09-22', 0, '', '3', '59', '2025-10-20', 324000.00, '', '5', '1970-01-01', '1', 'Communication Ok have exp in shriram but notmuch confident need to check in training and see', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55656', '55557', '2025-10-20', 1, '2025-09-22 06:46:26', 60, '2025-10-11 09:57:34', 0, NULL, 1),
(26958, 'farzana begum', '5', '9345145214', '8122221636', 'amrinfarzu2017@gmail.com', '1994-11-17', 30, '2', '1', 'jaffer khan', 'B.A English', 10000.00, 1, 30000.00, 35000.00, 'perambur', 'perambur', '2509220008', '1', '2', 'upload_files/candidate_tracker/86576218978_FARZANAcv.pdf', NULL, '1', '2025-09-22', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for RM role ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55656', '55557', '1970-01-01', 1, '2025-09-22 07:13:32', 154, '2025-09-22 03:14:27', 0, NULL, 1),
(26959, 'Sathya Sree', '11', '8122077885', '9361351703', 'sathyasreeveera@gmail.com', '2003-04-13', 22, '2', '2', 'Veeramanikandan', 'Driver', 10000.00, 1, 0.00, 15000.00, 'vriddachalam', 'vriddachalam', '2509220009', '50', '1', 'upload_files/candidate_tracker/58152239547_Sathyasreeresume.pdf', NULL, '3', '2025-09-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-22 07:34:35', 1, '2025-09-22 07:38:36', 0, NULL, 1),
(26960, 'Manikandan K', '6', '6381469341', '6381410086', 'manismart0227@gmal.com', '1998-12-09', 26, '2', '2', 'kalidasan', 'painter', 50000.00, 1, 17000.00, 25000.00, 'Chennai', 'Chennai', '2509220010', '1', '2', 'upload_files/candidate_tracker/54611182941_ManikandanResumeUpdate.pdf', NULL, '1', '2025-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for complete non voice process will not sustain and sometimes seems to have stammering too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-09-22 09:19:45', 154, '2025-09-22 03:24:12', 0, NULL, 1),
(26961, 'RADHIKA R', '5', '9487862317', '', 'RADHIKARPM7@GMAIL.COM', '2000-07-09', 25, '1', '2', 'Rajendiran R', 'Grocery and oil shop', 50000.00, 1, 0.00, 18000.00, 'Manalurpet', 'Ekkattuthangal', '2509220011', '', '1', 'upload_files/candidate_tracker/52039163402_Radhikaresume1.pdf', NULL, '1', '2025-09-22', 0, '500507', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for RM role ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2025-09-22 10:44:49', 154, '2025-09-22 05:40:05', 0, NULL, 1),
(26962, 'Sangeetha P', '6', '7094251697', '8428180984', 'sangeetha090521@gmail.com', '2002-09-05', 23, '2', '2', 'Rajalakshmi. P', 'Daily wages', 10000.00, 1, 0.00, 19500.00, 'Chennai', 'Chennai', '2509220012', '1', '1', 'upload_files/candidate_tracker/21639181091_P.SangeethaResume.pdf', NULL, '1', '2025-09-23', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-09-22 11:48:50', 154, '2025-09-23 11:23:13', 0, NULL, 1),
(26963, 'Sabreen Fathima .R', '4', '8778142015', '8056583121', 'heenasafah@gmail.com', '2005-03-10', 20, '2', '2', 'Syed Riyaz basha', 'Sofa maker', 1.00, 1, 0.00, 16.00, 'Chennai', 'Chennai', '2509220013', '1', '1', 'upload_files/candidate_tracker/10939165070_SabreenFathima.RResume.pdf', NULL, '1', '2025-09-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-09-22 12:00:45', 1, '2025-09-22 12:04:44', 0, NULL, 1),
(26964, 'Muthu kirshnamoorthy', '6', '6385845892', '', 'muthu984298@gmail.com', '2003-08-03', 22, '2', '2', 'KIRSHNAMOORTHY', 'Farmer', 20000.00, 1, 0.00, 20000.00, '1/40, 34 KOOTHANUR, NANNILAM (TK), THIRUVARUR (DT)', 'KANCHIPURAM, periyar nagar', '2509220014', '1', '1', 'upload_files/candidate_tracker/63936700668_muthuresume.pdf', NULL, '1', '2025-09-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-09-22 12:52:01', 154, '2025-09-23 07:01:03', 0, NULL, 1),
(26965, 'AJAY ANAND B', '6', '9600761997', '9865791080', 'ajayanandb2002@gmail.com', '2002-03-06', 23, '2', '2', 'BALRAJ R', 'TEACHER', 20000.00, 2, 15000.00, 16000.00, 'perambalur', 'Perugalathur', '2509220015', '1', '2', 'upload_files/candidate_tracker/28396607845_AjayAnandResume.pdf', NULL, '1', '2025-09-23', 30, '', '1', '156', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55732', '5151', '1970-01-01', 1, '2025-09-22 01:38:21', 154, '2025-09-23 12:34:28', 0, NULL, 1),
(26966, 'Narmadha S', '4', '8925286880', '', 'narmadha2002s@gmail.com', '2002-01-10', 23, '2', '2', 'Subramani', 'Farmer', 10000.00, 1, 18000.00, 23000.00, 'TIRUVALLUR', 'TIRUVALLUR', '2509230001', '50', '2', 'upload_files/candidate_tracker/31791288483_Narmadhaupdateresume.pdf', NULL, '3', '2025-09-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-23 01:57:06', 1, '2025-09-23 02:11:07', 0, NULL, 1),
(26967, 'Bharathi S', '4', '7200316404', '8754044631', 'bharathis11j@gmail.com', '2004-09-14', 21, '2', '2', 'Saravana Kumar S', 'Self Employed', 30000.00, 1, 0.00, 16000.00, 'Manali', 'Mathur', '2509230002', '50', '1', 'upload_files/candidate_tracker/78552567220_resume202508140827490000.pdf', NULL, '1', '2025-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-23 02:03:40', 1, '2025-09-23 02:12:31', 0, NULL, 1),
(26968, 'AJAYKUMAR S', '5', '6381360953', '6380415986', 'ajayak062001@gmail.com', '2001-09-06', 24, '2', '2', 'Mother : mariyammal', 'daily wage labor', 8000.00, 1, 26000.00, 25000.00, 'Sathiyamangalam, Pudukkottai, tamilnadu,', 'Ambattur', '2509230003', '1', '2', 'upload_files/candidate_tracker/92372089875_Ajay.pdf', NULL, '1', '2025-09-23', 0, '', '3', '59', '2025-09-25', 297000.00, '', '3', '2025-11-29', '1', 'Communication Ok have exp in Byjus and software producct sales can be trained in our roles committed to give PF Pt after 3 months', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1030', '', '55650', '55560', '2025-09-25', 1, '2025-09-23 05:15:11', 154, '2025-09-24 07:39:46', 0, NULL, 1),
(26969, 'Rasiq Ahamed', '5', '6383019941', '8124721166', 'rasikahamed1122@gmail.com', '1995-09-10', 30, '2', '1', 'Fathima', 'B a arabic', 25000.00, 3, 25000.00, 27000.00, 'Kodungaiyur', 'Sevenwells', '2509230004', '50', '2', 'upload_files/candidate_tracker/60264699106_RESUMEmynewone1.pdf', NULL, '1', '2025-09-23', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2025-09-23 05:58:29', 154, '2025-09-23 06:57:26', 0, NULL, 1),
(26970, 'Swapna K', '6', '7328449009', '7338449009', 'swapnak7219@gmail.com', '2003-02-04', 22, '2', '2', 'p Keshav', 'PGDM', 500000.00, 2, 0.00, 450000.00, 'Vijayanagar', 'Vijayanagar', '2509230005', '57', '1', 'upload_files/candidate_tracker/26399433920_SwapnaKResume2.pdf', NULL, '1', '2025-09-23', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-09-23 06:29:03', 162, '2025-09-23 05:10:14', 0, NULL, 1),
(26971, '', '0', '9360237542', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509230006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-23 08:55:44', 0, NULL, 0, NULL, 1),
(26972, 'Agastiya S', '4', '8667322778', '9940060120', 'Agastiyasrinivasan27@gmail.com', '2004-07-27', 21, '2', '2', 'Srinivas', 'Contraction', 20000.00, 2, 0.00, 16000.00, 'Mannivakkam near tambaram', 'Mannivakkam near tambaram', '2509230007', '50', '1', 'upload_files/candidate_tracker/86954373131_WhiteSimpleStudentCVResume202506061320410000.pdf', NULL, '1', '2025-09-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-23 10:26:28', 1, '2025-09-23 10:43:18', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26973, '', '0', '9840443748', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509230008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-23 11:40:49', 0, NULL, 0, NULL, 1),
(26974, 'vasanth', '6', '6385339961', '', 'vasanthrajendran143@gmail.com', '2001-10-07', 23, '2', '2', 'Rajendran', 'government employee', 300000.00, 1, 0.00, 22000.00, 'kulithalai', 'pallikaranai', '2509230009', '1', '1', 'upload_files/candidate_tracker/88526602133_Vasanthpdf.pdf', NULL, '1', '2025-09-24', 0, '', '3', '59', '2025-09-29', 192000.00, '', '1', '1970-01-01', '1', 'Communication Ok fresher career gap of 2yrs need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'CA130', '5151', '2025-09-29', 1, '2025-09-23 01:38:36', 60, '2025-09-27 05:29:18', 0, NULL, 1),
(26975, 'K Ranganath', '6', '6360036801', '', 'kranganath121@gmail.com', '1998-09-23', 27, '2', '2', 'Rajesh', 'Brother', 3.50, 2, 22800.00, 25000.00, 'Bengaluru', 'Bengaluru', '2509240001', '57', '2', 'upload_files/candidate_tracker/79350632432_RANGANATHk1.pdf', NULL, '1', '2025-09-25', 0, '', '3', '59', '2025-09-29', 276000.00, '', '3', '2025-11-04', '2', 'Communication Ok have exp but not in relevant profile recently joined and left porter can give  atyr and check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '2025-09-29', 1, '2025-09-24 04:40:00', 60, '2025-09-27 07:06:56', 0, NULL, 1),
(26976, 'P.dhivya Bharathi', '6', '6369448992', '7305262146', 'Pdhivyabharathi2@gmailcom', '2003-04-19', 22, '2', '2', 'N.perumal raj', 'Conductor', 40000.00, 1, 0.00, 20000.00, 'Washermenpet', 'Washermenpet', '2509240002', '1', '1', 'upload_files/candidate_tracker/36949393076_resume1.pdf', NULL, '1', '2026-03-27', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55882', '55566', '1970-01-01', 1, '2025-09-24 04:59:02', 159, '2026-03-27 11:17:44', 0, NULL, 1),
(26977, 'Dhivya bharathi', '6', '8608882795', '6369448992', 'Pdhivyabharathi2@gmail.com', '2003-04-19', 22, '2', '2', 'Perumal raj', 'Conductor', 50000.00, 1, 0.00, 15000.00, 'Vannarpet', 'Vannarapet', '2509240003', '1', '1', 'upload_files/candidate_tracker/5350457145_Pdhivyabharathi.pdf', NULL, '1', '2025-09-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-09-24 05:18:34', 104, '2025-09-24 04:49:04', 0, NULL, 1),
(26978, 'Arun kumar v', '6', '8438687994', '9500823970', 'arunk313357@gmail.com', '2004-04-10', 21, '2', '2', 'Varatharaj', 'Farmar', 20000.00, 2, 0.00, 18000.00, 'Trichy', 'Chennai', '2509240004', '1', '1', 'upload_files/candidate_tracker/94785935801_Arunkumarvresume1.pdf', NULL, '1', '2025-09-24', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-09-24 05:39:40', 154, '2025-09-24 04:48:45', 0, NULL, 1),
(26979, 'Ravoof Akila S', '4', '8438869575', '7358679575', 'ravoofakila2507@gmail.com', '2002-07-07', 23, '2', '1', 'Rajesh R', 'SME', 30000.00, 2, 0.00, 20000.00, 'Purasaiwalkkam , chennai', 'Purasaiwalkkam, Chennai', '2509240005', '50', '1', 'upload_files/candidate_tracker/32420983066_DOC20250922WA0000..pdf', NULL, '1', '2025-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-24 05:45:57', 1, '2025-09-24 05:50:56', 0, NULL, 1),
(26980, 'Revathi Ravi', '6', '9025912622', '9566726083', 'revathiflowers24@gmail.com', '2002-10-08', 22, '2', '2', 'Ravi', 'Sales person', 10000.00, 0, 0.00, 16000.00, 'Thiruvarur dt Mannargudi', 'T nagar', '2509240006', '57', '1', 'upload_files/candidate_tracker/86474999869_ProfessionalCVResume202509091314330000.pdf', NULL, '1', '2025-09-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-24 05:50:52', 159, '2025-09-24 04:32:18', 0, NULL, 1),
(26981, 'Santhiya Venkatesan', '6', '8667831473', '6379425773', 'santhiyavenkatesan2003@gmail.com', '2003-05-27', 22, '2', '2', 'Venkatesan', 'Bike mechanic', 10000.00, 1, 0.00, 16000.00, 'Thiruvarur', 'T Nagar', '2509240007', '57', '1', 'upload_files/candidate_tracker/69413396050_DOC20250922WA0037..pdf', NULL, '1', '2025-09-24', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-09-24 05:52:21', 154, '2025-09-24 04:46:43', 0, NULL, 1),
(26982, 'anne Auxilia mary r', '5', '6382949939', '8667262172', 'annerobert0411@gmail.com', '1998-07-11', 27, '2', '2', 'mariya j', 'home maker', 60000.00, 0, 280000.00, 350000.00, 'chennai', 'chennai', '2509240008', '1', '2', 'upload_files/candidate_tracker/9914417501_AnneAuxResume.pdf', NULL, '1', '2025-09-24', 0, '', '1', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55735', '55557', '1970-01-01', 1, '2025-09-24 06:21:58', 159, '2025-09-24 04:39:15', 0, NULL, 1),
(26983, 'Vignesh.m', '6', '9962499487', '9940132468', 'vigneshmuralidharan29@gmail.com', '2010-09-24', 0, '2', '2', 'Gajalakshmi', 'House wife', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2509240009', '50', '1', 'upload_files/candidate_tracker/62630874820_Vignesh.Mresume.pdf', NULL, '1', '2025-09-25', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no having clear idea about going to sales or IT. his core interest is towards IT job only, sustainability doubts. he wil jump if he gets IT Job', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-09-24 06:30:21', 154, '2025-09-25 01:15:07', 0, NULL, 1),
(26984, 'S.Priya', '22', '7092221699', '8940780956', 'spriya181101@gmail.com', '2001-11-18', 23, '6', '2', 'Abirami', 'Assistant Manager - Apollo Hospital', 5.00, 2, 18000.00, 20000.00, 'Madurai', 'Triplicane', '2509240010', '', '2', 'upload_files/candidate_tracker/95189005935_S.PriyaCVResume1compressed1.pdf', NULL, '1', '2025-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-24 06:43:51', 1, '2025-09-24 06:54:31', 0, NULL, 1),
(26985, 'sujithra', '6', '8610311752', '6379347311', 'sujishan92@gmail.com', '2004-02-09', 21, '2', '2', 'shanmugam', 'demolition works', 180000.00, 1, 23000.00, 28000.00, 'ernavoor', 'ernavoor', '2509240011', '1', '2', 'upload_files/candidate_tracker/97906829315_SujithraResume.pdf', NULL, '1', '2025-09-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Interviewed By Syed. as discussed with them candidate communication and performance is ok. She have 1 year experience in ar tellicalling. But her distance is to long.will check With her in the training period. ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55666', '5151', '1970-01-01', 1, '2025-09-24 07:11:44', 154, '2025-09-24 04:24:22', 0, NULL, 1),
(26986, 'Abinaya.p', '6', '8754487243', '9003211243', 'Abinayavalu@gmail.com', '2004-09-05', 21, '1', '2', 'Prakash', 'Driver', 17000.00, 1, 0.00, 15000.00, '302 Dharmpuram 6th Street T.nagar chennai 17', '302 Dharmpuram 6th Street T.naga chennai 17', '2509240012', '', '1', 'upload_files/candidate_tracker/18154420489_PDFReader202509011432.pdf', NULL, '1', '2025-09-24', 0, 'No', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-24 09:15:33', 159, '2025-09-24 04:34:31', 0, NULL, 1),
(26987, 'Harini M', '6', '9042729259', '9790898415', 'mothiharini@gmail.com', '1998-06-26', 27, '2', '2', 'T mothi', 'Property consultant', 20.00, 1, 16.50, 25.00, 'Chennai', 'Chennai', '2509240013', '1', '2', 'upload_files/candidate_tracker/65595880966_HariniUpdatedResume202505211756180000.pdf', NULL, '1', '2025-09-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have exp in customer handling but not open for renewal and sales calling salary exp is very high current exp is with Star health recently got increment and left looking for the salary much', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-09-24 10:28:21', 154, '2025-09-25 05:49:22', 0, NULL, 1),
(26988, 'Pradeep Kumar murugan', '33', '6380463864', '9790324144', 'pradeepkumar020504@gmail.com', '2003-08-29', 22, '5', '2', 'Parents', 'Daily vegas', 300000.00, 1, 15000.00, 20000.00, 'CHENNAI CITY', 'CHENNAI CITY', '2509240014', '', '2', 'upload_files/candidate_tracker/5943853795_pradeepKumarresume.pdf', NULL, '1', '2025-09-26', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-24 12:29:25', 1, '2025-09-24 12:34:55', 0, NULL, 1),
(26989, 'dharun joel', '22', '9600621699', '', 'dharunjoel02@gmail.com', '2005-05-02', 20, '2', '2', 'sivapriya', 'chartered accou', 50000.00, 10, 0.00, 10000.00, 'erode', 'medavakkam', '2509240015', '1', '1', 'upload_files/candidate_tracker/24586632139_DHARUNRESUMEdm.pdf', NULL, '1', '2025-09-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-09-24 12:51:21', 154, '2025-09-25 05:52:46', 0, NULL, 1),
(26990, 'B Somesh Kumar', '22', '9360891681', '9443786199', 'someshkumarsk283@gmail.com', '2006-03-28', 19, '2', '2', 'Bhaskaran R', 'Bank officer at kmbf', 35000.00, 1, 0.00, 10000.00, 'KUMBAKONAM', 'KUMBAKONAM', '2509240016', '1', '1', 'upload_files/candidate_tracker/7533187351_DOC20250812WA0010.202509241632070000.pdf', NULL, '1', '2025-09-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suits for our roles', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-09-24 03:41:19', 154, '2025-09-25 05:51:59', 0, NULL, 1),
(26991, 'Sakthivel M', '17', '7010787169', '9360891681', 'sakthimuru17@gmail.com', '2005-06-17', 20, '2', '2', 'Muruganandam', 'Mnc', 100000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2509240017', '1', '1', 'upload_files/candidate_tracker/50273638788_SakthiVelDigitalMarketingWebDevelopmentResume.docx', NULL, '1', '2025-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-09-24 03:43:47', 1, '2025-09-24 04:13:51', 0, NULL, 1),
(26992, '', '0', '8754044631', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-25 01:34:27', 0, NULL, 0, NULL, 1),
(26993, 'Harini. S', '6', '9363320819', '', 'saravannanhari2005@gmail.com', '2005-04-02', 20, '2', '2', 'Parent', 'Driver', 180000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2509250002', '50', '1', 'upload_files/candidate_tracker/93536755749_Hariniresume.pdf', NULL, '1', '2025-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice not open for targets in sales', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-25 06:58:56', 104, '2025-10-10 06:13:08', 0, NULL, 1),
(26994, 'Kishore P', '6', '7395927532', '9790848421', 'krishmeddy@gmail.com', '2005-03-17', 20, '1', '2', 'Parent', 'House keeping', 10000.00, 0, 15000.00, 16000.00, '66/55 A.sathanatha puram Thiruvottiyur ch-19', '66/55 A.sathanatha puram Thiruvottiyur ch-19', '2509250003', '', '2', 'upload_files/candidate_tracker/73298423193_resumepkishore.pdf', NULL, '1', '2025-09-25', 0, 'P1287', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-09-25 07:16:46', 154, '2025-09-25 03:06:53', 0, NULL, 1),
(26995, 'thirumalavasan', '6', '8248532072', '8428512470', 'vasam6796@gmail.com', '2005-04-18', 20, '1', '2', 'Parent', 'House keeping', 15000.00, 0, 0.00, 16000.00, '52(2).mettu street.pudupattu. po chunamet', 'No,165 TNHP FLAT RAMANA NAGAR PERAMBUR CHENNAI', '2509250004', '', '2', 'upload_files/candidate_tracker/58479408643_RESUMEMODEL.docx', NULL, '1', '2025-09-25', 0, 'P1287', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2025-09-25 07:19:11', 154, '2025-09-25 03:07:24', 0, NULL, 1),
(26996, 'Joshika S', '34', '6381869576', '', 'joshikas888@gmail.com', '2004-07-31', 21, '3', '2', 'Rajathi', 'Self employe', 120000.00, 1, 0.00, 1.50, 'Tondiarpet', 'Tondiarpet', '2509250005', '', '1', 'upload_files/candidate_tracker/15611138326_JOSHIKASResume...1.pdf', NULL, '1', '2025-09-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-25 09:13:06', 1, '2025-09-25 09:37:12', 0, NULL, 1),
(26997, 'Aswin', '31', '9944475237', '', 'aswingmr2706@gmail.com', '2000-06-27', 25, '2', '2', 'Ganeshan', 'Gold smith', 25000.00, 2, 200000.00, 500000.00, 'Thondi', 'Thondi', '2509250006', '1', '2', 'upload_files/candidate_tracker/83311030776_AswinGaneshanAG.pdf', NULL, '1', '2025-09-26', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1005', '0', '0', '0', NULL, 1, '2025-09-25 09:20:28', 1, '2025-09-25 09:24:53', 0, NULL, 1),
(26998, 'Chandru Sivakumar', '6', '9994113104', '', 'chandrusivakumar716@gmail.com', '2004-07-16', 21, '2', '2', 'Siva Kumar', 'Food marketing agency', 30000.00, 2, 0.00, 15.00, 'Salem', 'Chennai', '2509250007', '50', '1', 'upload_files/candidate_tracker/13313872240_PDFGallery20250925153828.pdf', NULL, '1', '2025-09-25', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-09-25 09:55:05', 159, '2025-09-26 04:31:57', 0, NULL, 1),
(26999, 'bdullah shihabudeen', '4', '8078597283', '7548899478', 'abdullahshihabudeen49@gmail.com', '1994-04-12', 31, '2', '1', 'arafa', 'to achieve good position in company', 100000.00, 4, 18000.00, 23000.00, 'Maruthuvar st kayalpatnam', 'krishna kovil st mannady chennai', '2509250008', '50', '2', 'upload_files/candidate_tracker/75062962474_AbdullahShihabudeenBBACVcopy.pdf', NULL, '1', '2025-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-25 11:48:33', 1, '2025-09-25 08:08:46', 0, NULL, 1),
(27000, 'Janaki devi A', '6', '9176231277', '9094062159', 'janakidevi0610@gmail.com', '2000-10-06', 24, '2', '2', 'R. Amirthalingam', 'Auto driver', 15000.00, 1, 20000.00, 22000.00, 'Perambur', 'Perambur', '2509250009', '50', '2', 'upload_files/candidate_tracker/82623902191_JanakiResume11.pdf', NULL, '1', '2025-09-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.aslo she mention in her profile have experiance in telecalling.but she is not communicating much more', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-09-25 11:56:49', 154, '2025-09-27 12:25:18', 0, NULL, 1),
(27001, '', '0', '9087058742', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509250010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-25 12:27:39', 0, NULL, 0, NULL, 1),
(27002, 'Anantha kumar.s', '6', '9496559432', '8590863109', 'dhikshithaselva69@gmail.com', '2004-04-19', 21, '2', '2', 'Selvan', 'Kulli', 20000.00, 1, 0.00, 20000.00, 'Thiruvananthapuram', 'Chennai', '2509250011', '1', '1', 'upload_files/candidate_tracker/41234609352_dhikshitharesume1.pdf1.pdf', NULL, '2', '2025-09-26', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-09-25 01:42:08', 159, '2025-09-26 04:35:46', 0, NULL, 1),
(27003, 'M Balaji', '6', '9940791428', '', 'jkb875422@gamil.com', '2003-01-15', 22, '2', '2', 'Munusamy', 'Daily wages', 92000.00, 2, 0.00, 16000.00, '1/94 Mandhaveli Street 54 Punnapakkam Tiruvallur', 'Villivakkam', '2509260001', '1', '1', 'upload_files/candidate_tracker/79616533006_Balaji.pdf', NULL, '1', '2025-09-26', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-09-26 12:48:38', 104, '2025-09-26 03:10:30', 0, NULL, 1),
(27004, 'Kannithai K', '13', '8825765363', '6382001970', 'kannitha133@gmail.com', '1998-05-30', 27, '3', '1', 'Selvapon', 'Beedi roller', 6000.00, 3, 30000.00, 50000.00, 'Chennai', 'Chennai', '2509260002', '', '2', 'upload_files/candidate_tracker/90160520355_JavaResume.pdf', NULL, '1', '2025-09-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-26 04:38:03', 1, '2025-09-26 04:47:58', 0, NULL, 1),
(27005, 'Ezhilarasan D', '13', '8768265279', '8680923178', 'ezhilarasand07@gmail.com', '2002-06-06', 23, '3', '2', 'Shyamalavathy D', 'Housekeeper', 50000.00, 2, 0.00, 250000.00, 'Chennai', 'Chennai', '2509260003', '', '1', 'upload_files/candidate_tracker/98672435548_ezhilarasand.pdf', NULL, '1', '2025-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-26 04:43:33', 1, '2025-09-26 05:03:33', 0, NULL, 1),
(27006, 'Devi Mukepshene', '13', '7550286947', '9094242165', 'devimukepshene@gmail.com', '2000-12-22', 24, '3', '2', 'Eswaraprasath', 'Private job', 40000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2509260004', '', '1', 'upload_files/candidate_tracker/18155023545_MyResumep.pdf', NULL, '1', '2025-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-26 04:47:17', 1, '2025-09-26 05:13:31', 0, NULL, 1),
(27007, 'ESWAR', '13', '8807223334', '', 'iamreswar@gmail.com', '2001-11-21', 23, '3', '2', 'Raghu', 'Office Assistant', 20000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2509260005', '', '1', 'upload_files/candidate_tracker/67977697198_ESWAR.CV.wp.pdf', NULL, '1', '2025-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-26 05:04:54', 1, '2025-09-26 05:09:51', 0, NULL, 1),
(27008, 'Dhanalakshmi Arunagiri', '2', '6385229865', '', 'dhanatechdeveloper@gmail.com', '1998-10-04', 26, '3', '2', 'Santhi Arunagiri', 'House wife', 8000.00, 1, 0.00, 15000.00, 'Sivaganga', 'Ekkatuthangal', '2509260006', '', '1', 'upload_files/candidate_tracker/19926076766_DhanalakshmiAR.pdf', NULL, '1', '2025-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-26 05:07:50', 1, '2025-09-26 05:17:51', 0, NULL, 1),
(27009, 'Keerthika G', '4', '8072032132', '8056489898', 'keerthiganesh1331@gmail.com', '2003-07-13', 22, '2', '2', 'Shanmuga priya g', 'Cooli', 72000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Chepak', '2509260007', '50', '1', 'upload_files/candidate_tracker/6350222605_KEERTHI.docx', NULL, '1', '2025-09-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-26 05:20:04', 1, '2025-09-26 05:23:47', 0, NULL, 1),
(27010, 'Varshini natarajan', '6', '6374943945', '9443956348', 'varshininatarajan06@gmail.com', '2002-12-18', 22, '2', '2', 'Natarajan', 'Sales man', 50000.00, 2, 20000.00, 20000.00, 'Perambalur', 'Velachchery', '2509260008', '1', '2', 'upload_files/candidate_tracker/49005030341_Newresume.pdf.pdf', NULL, '1', '2025-09-26', 0, '', '3', '59', '2025-10-03', 198000.00, '', '3', '2026-03-12', '2', 'Communication Ok have exp but not exactly in our domain can be trained need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55732', '5151', '2025-10-03', 1, '2025-09-26 05:54:09', 60, '2025-09-30 06:32:12', 0, NULL, 1),
(27011, 'Varshini natarajan', '4', '6374943645', '9443945348', 'varshininatarajan06@gmail.com', '2002-12-18', 22, '3', '2', 'Natarajan', 'Sales man', 50000.00, 2, 20000.00, 20000.00, 'Perambalur', 'Velachchery', '2509260009', '', '2', 'upload_files/candidate_tracker/15237027701_Newresume.pdf.pdf', NULL, '1', '2025-09-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-26 06:17:25', 1, '2025-09-26 06:40:50', 0, NULL, 1),
(27012, 'SUDEEP DAMODAR HARIKANT', '6', '8073647678', '7022340890', 'sudeepharikanth007@gmail.com', '2001-04-19', 24, '2', '2', 'MOTHER', 'JOB', 25000.00, 0, 22000.00, 400000.00, 'MURUDESHWAR', 'BTM LAYOUT 2ND STAGE', '2509260010', '57', '2', 'upload_files/candidate_tracker/20343608458_DOC20250908WA0000..pdf', NULL, '1', '2025-09-26', 0, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-09-26 07:59:49', 104, '2025-09-26 06:46:35', 0, NULL, 1),
(27013, 'Chozha valavan', '6', '9360054210', '9843582801', 'cholavalavan123@gmail.com', '2004-08-27', 21, '2', '2', 'Srinivasan', 'Plumber', 18000.00, 1, 0.00, 17000.00, 'Karaikal', 'Chennai', '2509260011', '50', '1', 'upload_files/candidate_tracker/98216806898_abhi1.pdf', NULL, '1', '2025-09-27', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-09-26 08:12:33', 154, '2025-09-27 12:54:52', 0, NULL, 1),
(27014, 'Vasanthakumar.M', '6', '7824980678', '9025838976', 'vasanthakumar.m759@gmail.com', '2002-09-13', 23, '2', '2', 'Parents', 'Shopkeeper', 50000.00, 1, 0.00, 20000.00, 'Sirkali', 'Chennai', '2509260012', '1', '1', 'upload_files/candidate_tracker/736875702_Vasanth.pdf', NULL, '1', '2025-09-26', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-09-26 08:25:23', 154, '2025-09-26 04:20:09', 0, NULL, 1),
(27015, 'Sabarinathan', '4', '6380131986', '9843243979', 'asabari153@gmail.com', '2003-09-27', 21, '2', '2', 'Anandhan', 'Carpenter', 20000.00, 1, 0.00, 15000.00, 'Vellore', 'Chennai,Mylapore', '2509260013', '50', '1', 'upload_files/candidate_tracker/71616990611_CV2025092211031075.pdf', NULL, '1', '2025-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-26 08:32:59', 1, '2025-09-26 08:37:34', 0, NULL, 1),
(27016, 'Shakshi Priya P', '13', '9789274547', '9791919939', 'shakshishaks17@gmail.com', '2002-07-17', 23, '3', '2', 'Prakasam', 'Photographer', 30000.00, 1, 0.00, 20000.00, 'Arcot', 'Chennai', '2509260014', '', '1', 'upload_files/candidate_tracker/94523867135_ShakshiPriya.pdf', NULL, '1', '2025-09-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-26 09:15:37', 1, '2025-09-26 09:18:23', 0, NULL, 1),
(27017, '', '0', '9036199083', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509260015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-26 09:18:36', 0, NULL, 0, NULL, 1),
(27018, 'Elakiya S', '4', '7812823099', '', 'elakiya.selvaramans@gmail.com', '2002-01-23', 23, '2', '2', 'Selvaraman padmavathi', 'Retail store keeper', 7000.00, 1, 0.00, 15000.00, 'Sivakasi tamilnadu', 'Kk Nagar, chennai', '2509260016', '50', '1', 'upload_files/candidate_tracker/38827758890_RESUMEPDF.pdf', NULL, '1', '2025-09-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-26 11:19:46', 1, '2025-09-26 11:28:49', 0, NULL, 1),
(27019, 'Praveen S', '6', '7812881593', '9578281881', 'praveen17256@gmail.com', '2004-07-01', 21, '1', '2', 'Shanmugasundharam', 'Driver', 20000.00, 0, 13500.00, 18000.00, 'Pollachi', 'Tri', '2509260017', '', '2', 'upload_files/candidate_tracker/12855784842_ResumeLow.pdf', NULL, '1', '2025-10-06', 0, '77879', '3', '59', '2025-10-14', 192000.00, '', '3', '2025-11-27', '2', 'Communication just 2 months exp in Vizza verified the documents considerin a sfresher we processed', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2025-10-14', 1, '2025-09-26 11:32:31', 60, '2025-10-14 10:05:56', 0, NULL, 1),
(27020, '', '0', '6383777031', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509260018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-26 12:01:25', 0, NULL, 0, NULL, 1),
(27021, 'K n Srikanth', '6', '9498403468', '', 'srikanth301103@gmail.com', '2003-11-30', 21, '2', '2', 'Nagaraj k s', 'Driver', 10000.00, 1, 0.00, 18000.00, '60/28,kanakkar st , thiruvottiyur,chennai - 19', '60/28,kanakkar st , thiruvottiyur,chennai -19', '2509270001', '1', '1', 'upload_files/candidate_tracker/54591140241_srikanthresume.pdf', NULL, '1', '2025-09-27', 0, '', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'CA130', '5151', '1970-01-01', 1, '2025-09-27 04:53:44', 154, '2025-09-27 12:55:31', 0, NULL, 1),
(27022, 'Naveen', '4', '7305045796', '9941207261', 'naveen270420@gmail.com', '2010-09-27', 0, '2', '2', 'A.AROKIASAMY', 'Coolie', 14000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2509270002', '50', '1', 'upload_files/candidate_tracker/56282910245_ResumeA.Naveen1.pdf', NULL, '3', '2025-09-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-27 06:01:40', 1, '2025-09-27 06:08:00', 0, NULL, 1),
(27023, 'Pedavalli Vishnu varsha', '11', '8328528466', '9492906036', 'vishnupedavalli@gmail.com', '2002-05-13', 23, '2', '2', 'P. Srinivas', 'Canara bank , AGM', 200000.00, 1, 0.00, 4.00, 'Guntur , Andhra Pradesh', 'Chennai', '2509270003', '1', '1', 'upload_files/candidate_tracker/76888675973_naukri1.pdf', NULL, '1', '2025-09-27', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-09-27 06:39:43', 154, '2025-09-27 02:28:23', 0, NULL, 1),
(27024, 'Divya TS', '6', '8150902859', '', 'divyats1692000@gmail.com', '2000-09-16', 25, '2', '2', 'Shivakumar', 'Former', 11000.00, 1, 20000.00, 25000.00, 'Rangapura,holalkere(tq),chitradurga(dist)', 'Rajajinagar', '2509270004', '1', '2', 'upload_files/candidate_tracker/73873934404_Divyaaresume.pdf', NULL, '1', '2025-09-27', 0, '', '3', '59', '2025-10-06', 264000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in justdial can be trained in our roles will check in person and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55671', '55555', '2025-10-06', 1, '2025-09-27 07:22:34', 60, '2025-10-04 06:09:21', 0, NULL, 1),
(27025, 'Sumithra', '6', '9043311321', '9566149711', 'sumilefty2627@gmail.com', '2005-02-26', 20, '2', '2', 'Ravi', 'Driver', 130000.00, 0, 0.00, 17000.00, 'No:4/b Malayathamman Kovil street mannurpet ch-50', 'No:4/b Malayathamman Kovil street mannurpet ch-50', '2509270005', '50', '1', 'upload_files/candidate_tracker/32899807888_resume.pdf', NULL, '3', '2025-09-30', 0, '', '3', '59', '2025-10-03', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for our roles 5050 need to check in training anfd confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55732', '5151', '2025-10-03', 1, '2025-09-27 07:42:30', 60, '2025-09-30 07:09:38', 0, NULL, 1),
(27026, '', '0', '7871995295', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509270006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-27 12:58:57', 0, NULL, 0, NULL, 1),
(27027, '', '0', '7305128166', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509270007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-27 02:55:31', 0, NULL, 0, NULL, 1),
(27028, '', '0', '9342170464', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-28 10:18:27', 0, NULL, 0, NULL, 1),
(27029, 'Ameer sulthan A', '6', '9342170464', '', 'Ameerking7863@gmail', '2003-12-28', 21, '2', '2', 'Amjath khan', 'Car driver', 15500.00, 2, 0.00, 18000.00, 'Chennai', 'Royapettah', '2509280002', '1', '1', 'upload_files/candidate_tracker/85931521597_CV2025091919120563.pdf', NULL, '1', '2025-09-29', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communicartion and performance is not good.aslo he is drowsy and sustainable is doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2025-09-28 10:27:13', 154, '2025-10-14 11:21:23', 0, NULL, 1),
(27030, 'Reshma Begum', '4', '9094261211', '8925256843', 'reshmarmaan@gmail.com', '1995-02-18', 30, '2', '1', 'Mohamed azarudeen', 'Travel consultant', 30000.00, 4, 24000.00, 28000.00, 'TNHB,Avadi, Chennai', 'TNHB,Avadi, Chennai', '2509280003', '1', '2', 'upload_files/candidate_tracker/86285912989_ReshmaBegumResume.2025.pdf', NULL, '1', '2025-09-29', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55824', '55560', '1970-01-01', 1, '2025-09-28 04:04:09', 104, '2025-09-29 06:06:39', 0, NULL, 1),
(27031, 'Naveenkumar S', '13', '8189915385', '9360624724', 'naveennk5302@gmail.com', '2002-03-05', 23, '3', '2', 'Senthikumar N', 'Daily wages', 216000.00, 1, 0.00, 3.00, 'Salem', 'Chennai', '2509290001', '', '1', 'upload_files/candidate_tracker/49361532457_Naveenkumarresume.pdf', NULL, '1', '2025-09-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-29 04:21:34', 1, '2025-09-29 04:27:46', 0, NULL, 1),
(27032, 'Siva.v', '31', '9361237713', '', 'siva.code.04@gmail.com', '2004-04-19', 21, '3', '2', 'Vellaisamy', 'Auto Driver', 20000.00, 3, 0.00, 30000.00, 'TIRUPPUR', 'Chennai,Velachery', '2509290002', '', '1', 'upload_files/candidate_tracker/53821733108_SIVAVELLAISAMYresume1.pdf', NULL, '1', '2025-09-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-29 04:21:50', 1, '2025-09-29 04:32:11', 0, NULL, 1),
(27033, 'Darmick K R', '13', '8825946654', '', 'darzaynforbe@gmail.com', '2004-04-16', 21, '3', '2', 'Ravi K', 'Auto Driver', 10000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2509290003', '', '1', 'upload_files/candidate_tracker/15543798175_darmickresume.pdf', NULL, '1', '2025-09-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-29 04:21:53', 1, '2025-09-29 04:26:51', 0, NULL, 1),
(27034, 'Vengadeshkumar R', '13', '7094138576', '', 'vengattamizhrasigan232@gmail.com', '2003-01-23', 22, '3', '2', 'Ramasamy K', 'Daily wages', 15000.00, 1, 0.00, 40000.00, 'Dindigul', 'Taramani', '2509290004', '', '1', 'upload_files/candidate_tracker/19870490466_VENGADESHFinal.pdf', NULL, '1', '2025-09-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-29 04:21:59', 1, '2025-09-29 04:46:09', 0, NULL, 1),
(27035, 'Thavamuniselvam B', '2', '9786909512', '', 'thavam1055@gmail.com', '2002-05-10', 23, '3', '2', 'Balamrugan A', 'Cooly', 30000.00, 1, 0.00, 3.50, 'Sivakasi', 'Chennai', '2509290005', '', '1', 'upload_files/candidate_tracker/29853205871_ThavamuniselvamB.pdf', NULL, '1', '2025-09-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-29 04:42:11', 1, '2025-09-29 04:46:51', 0, NULL, 1),
(27036, 'SASIPRIYA J', '2', '6374903302', '7871642838', 'priyajanapriya19@gmail.com', '2001-07-19', 24, '3', '1', 'Lakshminarayanan', 'It', 75000.00, 1, 0.00, 25000.00, 'Salem', 'Chennai', '2509290006', '', '1', 'upload_files/candidate_tracker/65231774653_PRIYA.JCV.pdf', NULL, '1', '2025-10-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-29 04:53:21', 1, '2025-09-29 05:13:56', 0, NULL, 1),
(27037, 'MAHA G', '13', '8807621203', '9791981512', 'mahaganesh1203@gmail.com', '2004-12-03', 20, '3', '2', 'R.Ganesh', 'Fisherman', 30000.00, 2, 0.00, 3.50, 'Parangipettai post, Bhuvanagiri t/k , Cuddalore.', '5th south Bethel nagar, injambakkam.', '2509290007', '', '1', 'upload_files/candidate_tracker/47588442042_MAHA3.pdf', NULL, '1', '2025-09-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-29 04:58:48', 1, '2025-09-29 05:11:06', 0, NULL, 1),
(27038, 'Muhtarasu M', '13', '6374030947', '', 'manikandanmanish413@gmail.com', '2004-02-23', 21, '3', '2', 'Manikandan K', 'Farmer', 50000.00, 1, 0.00, 4.50, 'Tiruchirapalli', 'Chennai', '2509290008', '', '1', 'upload_files/candidate_tracker/32143052193_MutharasuResumee.pdf', NULL, '1', '2025-09-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-29 04:58:53', 1, '2025-09-29 05:11:38', 0, NULL, 1),
(27039, 'Harshith g j', '6', '8095927793', '8147627201', 'harshithrocks193@gmail.com', '1993-06-21', 32, '2', '2', 'Jayaram', 'Professional', 400000.00, 2, 28000.00, 38000.00, 'Kengeri', 'Kengeri', '2509290009', '57', '2', 'upload_files/candidate_tracker/70952278299_HarshithResumeCorrected.pdf', NULL, '1', '2025-09-29', 0, '', '3', '59', '2025-10-20', 360000.00, '', '3', '2025-12-30', '2', 'Communication Ok have exp in calling but not a relevant one verified the documents based on the manager suggestion proceeded with this pack', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '2025-10-20', 1, '2025-09-29 06:21:09', 60, '2025-10-13 05:46:38', 0, NULL, 1),
(27040, 'Sivaraman', '6', '9841412174', '9080268460', 'sivaraman321r@gmail.com', '2002-06-04', 23, '2', '2', 'Sekar', 'Welder', 15000.00, 1, 15000.00, 18000.00, 'Puzhal', 'Puzhal', '2509290010', '1', '2', 'upload_files/candidate_tracker/87713331070_SIVARAMAN1.pdf', NULL, '2', '2025-09-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'careergap  also not serious with the job necessity just shifted companies to companies with no valid reasons also not showing much interest with the job roles will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-09-29 06:25:18', 159, '2025-09-29 03:23:18', 0, NULL, 1),
(27041, 'Karthik P', '6', '8892439778', '', 'karthik.victory1@gmail.com', '1985-09-27', 40, '2', '2', 'Pandurangan NG', 'Retaired', 25000.00, 1, 23000.00, 30000.00, 'Bangalore', 'Bangalore', '2509290011', '57', '2', 'upload_files/candidate_tracker/5654193052_Karthikresume.docx', NULL, '1', '2025-09-29', 0, '', '3', '59', '2025-10-06', 312000.00, '', '3', '2025-10-08', '1', 'Communication Ok have exp but in multiple domain not a relevant domain exp but can give a try in our roles need to check in training', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '2025-10-06', 1, '2025-09-29 06:42:20', 60, '2025-10-06 11:58:24', 0, NULL, 1),
(27042, 'A Manoj Kumar', '6', '8925047266', '9677114015', 'manojpriya1254@gmail.com', '2005-07-13', 20, '3', '2', 'Atchaiah A', 'medical representative', 80000.00, 2, 0.00, 18000.00, 'No 66 barath Nagar 2nd Street Chennai 57', 'No 66 barath Nagar 2nd Street Chennai 57', '2509290012', '', '1', 'upload_files/candidate_tracker/37420286522_RESUMEManoj.pdf', NULL, '1', '2025-09-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-29 07:08:35', 159, '2025-09-29 06:10:15', 0, NULL, 1),
(27043, 'Nargees M', '6', '7397280559', '8122953088', 'Nargees500@gmail.com', '2004-02-06', 21, '3', '2', 'Mohmmed ali m', 'Auto driver', 15000.00, 2, 0.00, 18000.00, '6th Street ulaganathapuram chennai 57', '66th Street ulaganathapuram chennai', '2509290013', '', '1', 'upload_files/candidate_tracker/29199790711_RESUMENARGEES1231.pdf', NULL, '1', '2025-09-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice process and not comfort with the targets', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-09-29 07:09:38', 159, '2025-09-29 03:24:46', 0, NULL, 1),
(27044, 'Amaresh', '6', '7892632459', '', 'subedaramaresh@gmail.com', '2000-03-04', 25, '2', '2', 'Basavaraj subedar', 'Farmer', 20000.00, 1, 23000.00, 30000.00, 'Shorapur', 'Shorapur', '2509290014', '57', '2', 'upload_files/candidate_tracker/1227950918_Ambi.pdf', NULL, '1', '2025-09-29', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for rm suggested ctc 25k', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-09-29 07:16:01', 60, '2025-10-03 06:08:15', 0, NULL, 1),
(27045, 'Akshaya suresh', '4', '9445771310', '', 'aakshiiakshaya@gmail.com', '2003-10-13', 21, '2', '2', 'Suresh', 'Driver', 30.00, 1, 0.00, 17.00, 'Chennai', 'Chennai', '2509290015', '50', '1', 'upload_files/candidate_tracker/3340974349_AKSHAYASRESUME.pdf11.pdf', NULL, '1', '2025-10-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-29 08:38:57', 1, '2025-09-29 08:45:54', 0, NULL, 1),
(27046, '', '0', '9740281818', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509290016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-29 11:08:32', 0, NULL, 0, NULL, 1),
(27047, '', '0', '9489294541', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2509290017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-09-29 12:08:05', 0, NULL, 0, NULL, 1),
(27048, 'Adhithyan B', '4', '6381092889', '9094135082', 'adhithyanezhil8973@gmail.com', '1998-07-20', 27, '2', '2', 'Surya', 'Customer support executive', 75000.00, 2, 16000.00, 16000.00, 'Perungalathur chennai', 'Perungalathur chennai', '2509290018', '50', '2', 'upload_files/candidate_tracker/23191375198_CompressedMAdhithyanresume.pdf', NULL, '1', '2025-10-02', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-09-29 12:20:54', 1, '2025-09-29 12:26:22', 0, NULL, 1),
(27049, 'Mohammed shaik dawood', '5', '7358192338', '7358242338', 'shaikdawood66@gmail.com', '1996-01-12', 29, '2', '1', 'Shifa fathima', 'House wife', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2509290019', '50', '1', 'upload_files/candidate_tracker/12921827842_Resume1753476400899Shaikdawood.docx', NULL, '1', '2025-09-30', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2025-09-29 12:21:37', 154, '2025-09-30 01:32:58', 0, NULL, 1),
(27050, 'Deena jaswa', '6', '9150761057', '8098482418', 'jxwajxph@gmail.com', '2003-11-01', 21, '2', '2', 'Vishuvasa mary', 'House wife', 40000.00, 0, 0.00, 15000.00, 'Chennai naganullur', 'Chennai naganullur', '2509300001', '1', '1', 'upload_files/candidate_tracker/72758147006_DeenaJaswaJ1.pdf', NULL, '1', '2025-09-30', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and perfromance is not good.also sustainable is doubt', '5', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-09-30 05:51:45', 154, '2025-09-30 03:14:17', 0, NULL, 1),
(27051, 'Gagan nV', '5', '9632519044', '9901924675', 'gagannv997@gmail.com', '1997-07-22', 28, '2', '2', 'Sunanda', 'House wife', 29000.00, 1, 31000.00, 36000.00, 'Bangalore', 'Nagarbhavi', '2509300002', '57', '2', 'upload_files/candidate_tracker/72940677874_Resume29092025050129pm.pdf', NULL, '1', '2025-09-30', 0, '', '3', '59', '2025-10-20', 400000.00, '', '3', '2025-12-30', '1', 'Communication Have multiple exp but not in a relevant one verified the documents and shared the breakup', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '2025-10-20', 1, '2025-09-30 05:59:43', 60, '2025-10-11 09:59:06', 0, NULL, 1),
(27052, 'Sridhar k', '6', '6380210485', '', 'ecesridhark@gmail.com', '2004-09-01', 21, '2', '2', 'Kanniyappan M', 'Tea shop', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2509300003', '50', '1', 'upload_files/candidate_tracker/30531960485_Sridharresume.pdf', NULL, '1', '2025-10-03', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-09-30 09:20:21', 154, '2025-10-03 02:36:53', 0, NULL, 1),
(27053, 'ramkumar i', '4', '9500710832', '', 'Ramkumariyyappanmyl@gmail.com', '2003-08-26', 22, '3', '2', 'iyyappan', 'hotel chef', 25000.00, 1, 18000.00, 18000.00, 'chennai', 'adambakkam chennai', '2510020001', '', '2', 'upload_files/candidate_tracker/81626619378_RamkumarBankingResume.pdf', NULL, '1', '2025-10-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-02 01:45:05', 1, '2025-10-02 01:49:31', 0, NULL, 1),
(27054, 'Bala murugan A', '6', '9789674537', '', 'balapanja555@gmail', '1997-02-27', 28, '2', '2', 'Parent', 'Farmer', 180000.00, 2, 0.00, 17000.00, 'Dindigul', 'Nukambakkam', '2510020002', '50', '1', 'upload_files/candidate_tracker/46787407388_BM.pdf', NULL, '1', '2025-10-03', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-10-02 04:10:43', 154, '2025-10-03 02:35:36', 0, NULL, 1),
(27055, 'Mohammed saajid', '6', '7382377229', '', 'saajidmohammed5@gmail.con', '2003-06-13', 22, '2', '2', 'noorul hameed', 'job', 30000.00, 1, 16000.00, 23000.00, 'mannadi', 'mannadi', '2510030001', '1', '2', 'upload_files/candidate_tracker/85931176720_Sajiupdatedresume.pdf', NULL, '1', '2025-10-03', 30, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-10-03 02:31:35', 154, '2025-10-03 02:34:55', 0, NULL, 1),
(27056, '', '0', '7482377229', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510030002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-03 04:42:16', 0, NULL, 0, NULL, 1),
(27057, 'Gokula Krishnan R', '6', '9025847829', '', 'gokulakrishnang30@gmail.com', '2003-04-01', 22, '2', '2', 'Sivagami', 'Cooli', 10000.00, 3, 250000.00, 300000.00, 'Villupuram', 'Chennai', '2510030003', '1', '2', 'upload_files/candidate_tracker/56198482463_GokulaKrishnanRResume.docx', NULL, '1', '2025-10-06', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also he is drowsy and very low.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-10-03 07:30:11', 154, '2025-10-06 04:36:02', 0, NULL, 1),
(27058, 'G srikanth', '6', '7338814781', '9550633137', 'srikanthg143243@gmail.com', '1995-05-05', 30, '2', '2', 'H gopal', 'Security guard', 14000.00, 2, 2.25, 3.50, 'Chennai', 'Chennai', '2510030004', '57', '2', 'upload_files/candidate_tracker/76054994806_Gsrikanthresume23.pdf', NULL, '1', '2025-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice roles only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-03 07:39:12', 154, '2025-10-03 06:13:26', 0, NULL, 1),
(27059, 'yalaguresh d jakkannavar', '6', '8618185817', '', 'naveenjakkannaver@gmail.com', '1997-11-07', 27, '2', '2', 'siddamma', 'Salaried', 280000.00, 0, 360000.00, 600000.00, 'vijayapura', 'banga marathahalli', '2510030005', '57', '2', 'upload_files/candidate_tracker/51036099818_YALAGURESHNEW1.pdf', NULL, '3', '2025-10-03', 90, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-10-03 10:10:06', 162, '2025-10-04 12:30:14', 0, NULL, 1),
(27060, 'Anish Kannan K', '6', '8754481989', '', 'anishkannan3428@gmail.com', '2001-09-19', 24, '2', '2', 'Kalai Selvi.K', 'House Keeping', 50000.00, 1, 20000.00, 25000.00, '7 C.G.Colony 6th Street,tondiarpet,chennai- 600081', '11 G.A.Road 7th Lane Royapuram, Chennai-600021', '2510030006', '1', '2', 'upload_files/candidate_tracker/23896493352_AnishKannanResume.pdf', NULL, '1', '2025-10-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, 1.5 yrs exp. confirm the joining date xxamp salary,', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-10-03 10:52:33', 154, '2025-10-08 12:58:08', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27061, 'LOKESH', '6', '8248098132', '', 'lokeshchithralokesh@gmail.com', '2004-10-01', 21, '2', '2', 'JAYARAJ', 'Agriculture wages', 8000.00, 1, 0.00, 17000.00, 'Thiruvarur', 'Vadapalani', '2510040001', '50', '1', 'upload_files/candidate_tracker/64800190933_ResumeLokesh.pdf', NULL, '1', '2025-10-06', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication and slang of speaking is not good, so not fit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-10-04 04:27:48', 154, '2025-10-06 01:24:16', 0, NULL, 1),
(27062, 'Sunil Kumar A N', '6', '7348879390', '', 'sunilkummarr7590@gmail.com', '1999-05-16', 26, '2', '2', 'Narasimhappa', 'Business', 70000.00, 1, 0.00, 2.50, 'Bangalore', 'Bangalore', '2510040002', '1', '1', 'upload_files/candidate_tracker/59953691057_SunilKumarResumepdf1.pdf', NULL, '1', '2025-10-06', 0, '', '3', '59', '2025-10-20', 216000.00, '', '3', '2025-12-29', '2', 'Communication Ok fresher for sales calling need to check in training and confirm,core IT testing profile', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '2025-10-20', 1, '2025-10-04 05:03:21', 60, '2025-10-11 10:07:56', 0, NULL, 1),
(27063, 'priyanka s', '6', '7760750873', '', 'priyankagowda773@gmail.com', '2002-05-08', 23, '3', '2', 'shivaraju', 'former', 10000.00, 1, 0.00, 30000.00, 'ramanagara karnataka', 'ramanagara karnataka', '2510040003', '', '1', 'upload_files/candidate_tracker/88636273869_PriyankaBE2024JavaSpringCGPA8.413.pdf', NULL, '1', '2025-10-06', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and confidence', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'I1077', '55566', '1970-01-01', 1, '2025-10-04 05:03:52', 154, '2025-10-07 11:45:31', 0, NULL, 1),
(27064, 'Yuvaraj Vasudevan', '4', '7397240274', '9941442006', 'vasudevanyuvi2011@gmail.com', '1998-11-20', 26, '2', '1', 'Shanmathi K', 'Subject Matter Expert', 17000.00, 1, 204000.00, 264000.00, 'Chennai', 'Chennai', '2510040004', '1', '2', 'upload_files/candidate_tracker/62224262882_Yuvarajnewresume2025.docx', NULL, '1', '2025-10-04', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested to join', '1', '1', '', '1', '8', '', '2', '2025-10-14', '1', '7', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2025-10-04 05:18:29', 154, '2025-10-04 04:15:50', 0, NULL, 1),
(27065, 'Shaik Zakir basha', '6', '9505200179', '8985695509', 'zakirshaik682@gmail.com', '2001-07-04', 24, '2', '2', 'shaik abbas', 'contractor', 30000.00, 1, 345000.00, 600000.00, 'kurnool andhra pradesh', 'bangalore', '2510040005', '57', '2', 'upload_files/candidate_tracker/26803817558_SHAIKZAKIR.pdf', NULL, '1', '2025-10-04', 30, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'lack of communication and knowledge', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'I1077', '55566', '1970-01-01', 1, '2025-10-04 06:00:28', 162, '2025-10-04 12:33:55', 0, NULL, 1),
(27066, 'Antony Vignesh Jesu', '6', '7708706923', '', '28599vignesh@gmail.com', '1999-05-28', 26, '2', '2', 'Jesu', 'Farmer', 30000.00, 1, 20000.00, 20000.00, '2/67, Muthupattinam, Sethidal, Ramanathapuram', 'Ekkattudhangal, Chennai - 600032', '2510040006', '50', '2', 'upload_files/candidate_tracker/47161696960_Newvickyresume.pdf', NULL, '1', '2025-10-06', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much necessity withh the jobs just for time being he is looking fr the jobs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-04 08:01:25', 154, '2025-10-06 04:37:03', 0, NULL, 1),
(27067, 'Ruba Sri S', '6', '6383410285', '8825996274', 'rubasrishankar@gmail.com', '2000-09-02', 25, '2', '1', 'Periyasamy', 'Business', 35000.00, 2, 20000.00, 20000.00, 'Chennai', 'Chennai', '2510040007', '50', '2', 'upload_files/candidate_tracker/28474845920_RubaSri.SResumeupdatednewcopy.pdf', NULL, '1', '2025-11-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-04 09:42:51', 154, '2025-11-03 04:27:14', 0, NULL, 1),
(27068, 'thagshigan uthayarajah', '6', '6379641882', '', 'thagshiganmsd@gmail.com', '2004-07-25', 21, '2', '2', 'uthayarajah', 'business', 60000.00, 0, 0.00, 300000.00, 'krishna nagar maduravoyal chennai', 'krishna nagar maduravoyal chennai', '2510040008', '1', '1', 'upload_files/candidate_tracker/71490219084_thagshiresume.pdf', NULL, '1', '2025-10-06', 0, '', '2', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication ok, 50-50 for our role, but not comfort with going to direct meetings, need time to think', '5', '1', '', '1', '8', '', '2', '2025-10-07', '2', '3', '', '', 'H1028', '', '55864', '55566', '1970-01-01', 1, '2025-10-04 10:46:46', 154, '2025-10-06 12:43:25', 0, NULL, 1),
(27069, 'Anil kumar', '12', '9606570131', '', 'Anilkumarsherkhane@gmail.com', '2003-09-14', 22, '5', '2', 'No', 'No', 25000.00, 0, 20000.00, 20000.00, 'Yesvantpur', 'Nandini Layout', '2510040009', '', '2', 'upload_files/candidate_tracker/17102954892_PDFMaker1743087392852.pdf', NULL, '3', '2025-10-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '2', '2', '0', '1', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-04 03:22:48', 1, '2025-10-04 04:41:35', 0, NULL, 1),
(27070, 'sruthi', '6', '7338910081', '9841513406', 'sruthiswathi10032004@gmail.com', '2002-03-27', 23, '2', '2', 'vijayakumari', 'house wife', 100000.00, 1, 0.00, 15000.00, 'model lane old Washermenpet chennai', 'model lane old Washermenpet chennai', '2510050001', '1', '1', 'upload_files/candidate_tracker/44856494235_S.SruthiSivakumarresume.pdf', NULL, '1', '2025-11-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, communication average. kindly provide the fresher salary and confirm the joining date.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55732', '5151', '1970-01-01', 1, '2025-10-05 08:45:55', 154, '2025-11-05 02:53:10', 0, NULL, 1),
(27071, 'alhasif syed mahamed', '6', '6380276101', '', 'alhasif2u@gmail.com', '2004-07-15', 21, '2', '2', 'syed mohamed', 'father', 50000.00, 1, 25000.00, 28000.00, 'ramanathapuram', 'ambattur', '2510050002', '1', '2', 'upload_files/candidate_tracker/35686945091_Hasifnew01.pdf', NULL, '1', '2025-10-07', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-10-05 06:22:02', 154, '2025-10-07 01:27:28', 0, NULL, 1),
(27072, 'Praveen E', '6', '8248828065', '7092876599', 'praveenkumar61218@gmail.com', '1997-11-16', 27, '2', '2', 'Ravi', 'Advocate', 50000.00, 2, 16000.00, 18000.00, 'Mangadu', 'Mangadu', '2510060001', '1', '2', 'upload_files/candidate_tracker/67342704555_CV2023011119012363.pdf', NULL, '1', '2025-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Distance too long also stammering issues he has will have difficulties in handling our roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-10-06 05:00:40', 154, '2025-10-06 01:25:06', 0, NULL, 1),
(27073, 'Vaishnavi', '6', '7397240779', '', 'vaishnaviraji05@gmail.com', '2002-05-30', 23, '2', '2', 'Rajeswari', 'Student', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2510060002', '1', '1', 'upload_files/candidate_tracker/82117685816_Myresume.pdf', NULL, '1', '2025-10-06', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability issues, 10 months 2 companies and salary exp also high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-10-06 05:01:38', 154, '2025-10-06 12:39:12', 0, NULL, 1),
(27074, 'Lokeshwari Udayakumar', '11', '8754488127', '', 'Lokeshwari.1997@gmail.com', '1997-01-17', 28, '2', '2', '.', '.', 34000.00, 1, 34000.00, 30000.00, 'Chennai', 'Chennai', '2510060003', '1', '2', 'upload_files/candidate_tracker/82608451132_Resumeupdated.pdf', NULL, '1', '2025-10-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good have exp in front office for a long much focused on hr roles now need to hold and check later ', '6', '1', '', '1', '8', '', '2', '2025-10-27', '1', '8', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-10-06 05:12:09', 154, '2025-10-06 01:15:01', 0, NULL, 1),
(27075, 'A. Poornima', '6', '9003148575', '9551650795', 'Poorniarumugam006@gmail.com', '2004-06-26', 21, '2', '2', 'Usha rani', 'Student', 20000.00, 1, 0.00, 18000.00, 'K. P park puliyanthope ch-12', 'Chennai', '2510060004', '1', '1', 'upload_files/candidate_tracker/48829793748_poornimacv.pdf', NULL, '1', '2025-10-06', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability issues, 10 months 2 companies and salary exp also high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-10-06 05:33:08', 154, '2025-10-06 12:38:29', 0, NULL, 1),
(27076, 'ARUNKUMAR', '6', '9790546725', '7094381443', 'saarunkumar2002@gmail.com', '2002-08-30', 23, '2', '2', 'SUBRAMANI', 'Farmer', 25000.00, 2, 0.00, 18000.00, 'Ulundurpet', 'Chennai', '2510060005', '1', '1', 'upload_files/candidate_tracker/79197412463_ARUNKUMARRESUME1.pdf', NULL, '1', '2025-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'much focused on data entry and not much interested to go with sales callings', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-10-06 05:35:42', 154, '2025-10-06 01:25:30', 0, NULL, 1),
(27077, 'Prasanth M', '6', '9994495438', '8344969825', 'prasanthmoorthy04@gmail.com', '2001-11-18', 23, '2', '1', 'Dharshini k', 'Doctor, BPT', 650000.00, 1, 0.00, 30000.00, 'Avinashi', 'Chennai', '2510060006', '1', '2', 'upload_files/candidate_tracker/56259291214_PrasanthMResume.pdf', NULL, '1', '2025-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication was good and had previous exp in ICICI life 5050 try so asked him to come back after luch for 2nd round but he didnt turned up', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-10-06 05:36:08', 154, '2025-10-06 05:07:44', 0, NULL, 1),
(27078, 'Manigandan Saravanan', '6', '9150067543', '9994236226', 'manigandan91500@gmail.com', '2002-11-24', 22, '2', '2', 'Saravanan', 'Bunk shop', 15000.00, 1, 0.00, 300000.00, '8/123 big bazaar st.pallikonda Vellore district', '8/123 big bazaar st .pallikonda Vellore district', '2510060007', '57', '1', 'upload_files/candidate_tracker/33967167266_CV202507181119209.pdf', NULL, '1', '2025-10-06', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication slang and pronouncation of speaking is not good and prefers HR Role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-10-06 05:47:45', 154, '2025-10-06 12:36:57', 0, NULL, 1),
(27079, 'Siddharthan Kumaran', '6', '8760990330', '', 'siddharthsiddharthan795@gmail.com', '2003-05-13', 22, '2', '2', 'Kumaran v', 'Driver', 15000.00, 1, 0.00, 18.00, 'Sirkali', 'Sirkali', '2510060008', '50', '1', 'upload_files/candidate_tracker/37183388457_ResumeSid1.pdf', NULL, '1', '2025-10-06', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication average, but need to open up a lot and not seem to be much comfort and searching for IT also so sustainability doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-10-06 05:53:40', 154, '2025-10-06 01:24:32', 0, NULL, 1),
(27080, 'M santhosh', '11', '9884387459', '9940631843', 'msanthosh20055@gmail.com', '2005-08-29', 20, '2', '2', 'Mani Kannan', 'Student', 18000.00, 1, 0.00, 3000.00, 'Chennai', 'Chennai', '2510060009', '1', '1', 'upload_files/candidate_tracker/51040519754_SanthoshMHRINTERNResume.pdf', NULL, '1', '2025-10-06', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-10-06 05:57:23', 154, '2025-10-06 01:14:34', 0, NULL, 1),
(27081, 'Vasuki L', '6', '8667511895', '8248337256', 'vasukivasuki1998@gmail.com', '1999-03-23', 26, '2', '1', 'Annamalai', 'Cooking', 25000.00, 0, 0.00, 20000.00, '2/3 middle street koothur, Perambalur District', 'Purasaiwalkkam', '2510060010', '50', '1', 'upload_files/candidate_tracker/19433314411_VasukiResume.pdf', NULL, '1', '2025-10-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic knowledge not suitable for our roles will not handle the sales callings', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-06 08:08:37', 154, '2025-10-09 02:32:05', 0, NULL, 1),
(27082, '', '0', '6382821319', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-06 10:14:39', 0, NULL, 0, NULL, 1),
(27083, '', '0', '8270941556', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510060012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-06 12:59:21', 0, NULL, 0, NULL, 1),
(27084, 'saravanan manivel', '2', '9551942405', '', 'yrsaravanan77@gmail.com', '2001-03-04', 24, '3', '2', 'manivel p', 'travel agency', 50000.00, 2, 0.00, 10000.00, 'tiruchendur', 'chennai', '2510060013', '', '1', 'upload_files/candidate_tracker/10857032944_Resume.pdf', NULL, '1', '2025-10-06', 0, '', '3', '59', '2025-10-22', 120000.00, '', '1', '1970-01-01', '1', 'Anudip Foundation Profile Direct interview in Foundation and cleared further rounds in office Processed with 3.5 yrs Agreement but no cheque for him in future may collect from salary Account Cheque', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '2025-10-22', 1, '2025-10-06 01:03:09', 60, '2025-10-22 12:44:26', 0, NULL, 1),
(27085, '', '0', '7200836286', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510060014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-06 10:41:25', 0, NULL, 0, NULL, 1),
(27086, 'sanjay mc', '6', '9008410894', '', 'sanjaymcsanjaymc12@gmail.com', '2002-07-01', 23, '2', '2', 'deepa', 'home maker', 40000.00, 2, 22500.00, 35000.00, 'bangalore', 'silk board', '2510070001', '57', '2', 'upload_files/candidate_tracker/32729661083_SanjayCASpdf.pdf', NULL, '1', '2025-10-07', 20, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without informing after 1st round (Hr round)', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'I1077', '55566', '1970-01-01', 1, '2025-10-07 04:29:50', 162, '2025-10-07 05:10:54', 0, NULL, 1),
(27087, 'R Kishore', '6', '7904071130', '9962101822', 'kishuramesh12@gmail.com', '1998-11-25', 26, '2', '2', 'R kavitha', 'Working in IT filed', 30000.00, 1, 0.00, 17000.00, 'Chennai Perambur', 'Chennai', '2510070002', '1', '1', 'upload_files/candidate_tracker/49030433885_Kishorehardikresume.pdf', NULL, '1', '2025-10-07', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-10-07 04:53:15', 154, '2025-10-07 12:33:35', 0, NULL, 1),
(27088, 'Riyaz A', '5', '9384066490', '7299291247', 'riyazhussain664@gmail.com', '1999-07-30', 26, '2', '2', 'Sabeeral', 'House wife', 30000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2510070003', '57', '2', 'upload_files/candidate_tracker/56806105913_MRRiyazResumePdf11.pdf', NULL, '1', '2025-10-07', 15, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-10-07 05:18:23', 154, '2025-11-07 10:27:16', 0, NULL, 1),
(27089, 'VIDYA GUNASEKAR', '6', '8248393320', '9042866137', 'sobiyass123456789@gmail.com', '2002-06-07', 23, '2', '2', 'GUNASEKAR', 'Health problem', 25000.00, 0, 16000.00, 17000.00, 'Gummdipoondi', 'Gummdipoondi', '2510070004', '1', '2', 'upload_files/candidate_tracker/44584147884_1.pdf', NULL, '3', '2025-10-07', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for our roles no clarity with her previous work will not handle our work pressure', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-10-07 06:05:19', 154, '2025-10-07 12:31:55', 0, NULL, 1),
(27090, 'sangeetha Lakshmanan', '4', '7904911009', '9655074862', 'sangeethabe20191@gmail.com', '1998-06-06', 27, '2', '2', 'Lakshmanan', 'Farmer', 13000.00, 2, 23000.00, 28000.00, 'Chennai', 'Chennai', '2510070005', '1', '2', 'upload_files/candidate_tracker/86422583810_Updatedcv.pdf', NULL, '1', '2025-10-07', 0, '', '3', '59', '2025-11-05', 288000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in  Casagrande sales can give a try in our roles need to check in training and confirm', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55824', '55560', '2025-11-05', 1, '2025-10-07 06:36:32', 60, '2025-11-05 09:42:27', 0, NULL, 1),
(27091, '', '0', '8939664556', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510070006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-07 06:38:05', 0, NULL, 0, NULL, 1),
(27092, 'MOHANAPRIYA MANIVANNAN', '4', '6369091256', '8124668992', 'mohanapriyamanivannan97@gmail.com', '1997-04-30', 28, '2', '1', 'Shankar', 'Business', 40000.00, 1, 16500.00, 20000.00, 'Rasipuram', 'Tambaram', '2510070007', '1', '2', 'upload_files/candidate_tracker/78931764028_1759139689819MohanaPriya3.pdf', NULL, '1', '2025-10-07', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55824', '55560', '1970-01-01', 1, '2025-10-07 06:40:53', 154, '2025-10-07 03:33:16', 0, NULL, 1),
(27093, '', '0', '7305377891', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510070008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-07 07:17:25', 0, NULL, 0, NULL, 1),
(27094, 'udayakumar rajendran', '4', '6374481459', '', 'udayaudaii2001@gmail.com', '2001-03-29', 24, '2', '2', 'rajendran', 'manager', 30000.00, 1, 0.00, 25000.00, 'ayanvaram', 'ayanvaram', '2510070009', '50', '1', 'upload_files/candidate_tracker/14252153278_udai.pdf', NULL, '1', '2025-10-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-07 11:04:31', 1, '2025-10-07 11:08:26', 0, NULL, 1),
(27095, '', '0', '8939023393', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510070010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-07 11:51:37', 0, NULL, 0, NULL, 1),
(27096, '', '0', '9176370881', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510070011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-07 05:58:00', 0, NULL, 0, NULL, 1),
(27097, '', '0', '7305314285', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510080001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-08 05:19:10', 0, NULL, 0, NULL, 1),
(27098, 'Aravinth S', '4', '9585929498', '', 'aravinths756@gmail.com', '2003-10-12', 21, '2', '2', 'Sekar', 'Farmer', 25000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2510080002', '1', '1', 'upload_files/candidate_tracker/98540958651_Aravinthresume.pdf', NULL, '1', '2025-10-08', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-10-08 05:33:56', 154, '2025-10-08 11:16:17', 0, NULL, 1),
(27099, 'ajay roshan ananda kumar', '6', '9791280980', '9367711449', 'tomajay8@gmail.com', '2000-11-13', 24, '2', '2', 'ajay', 'bpo Associate', 13000.00, 1, 18000.00, 21000.00, 'coimbatore', 'chennai', '2510080003', '1', '2', 'upload_files/candidate_tracker/37936930215_DownloadAjayRoshanResume.docx', NULL, '1', '2025-10-08', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles will not sustain and handle our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-10-08 05:43:16', 154, '2025-10-08 11:56:26', 0, NULL, 1),
(27100, 'mahesh kumar u', '6', '7019323404', '', 'maheshkumaru1@gmail.com', '2000-06-08', 25, '2', '2', 'uday', 'machine fitter', 50000.00, 1, 300000.00, 400000.00, 'electronic city phase i', 'electronic city phase i', '2510080004', '57', '2', 'upload_files/candidate_tracker/34769137765_NaukriMaheshKumarU2y0m.pdf', NULL, '1', '2025-10-08', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'LACK OF HONESTY', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'I1077', '55566', '1970-01-01', 1, '2025-10-08 07:04:07', 162, '2025-10-11 10:23:17', 0, NULL, 1),
(27101, 'Naresh Kumar M', '6', '6369287913', '7200570368', 'nareshrock621@gmail.com', '2001-09-22', 24, '2', '2', 'Muniyan M', 'Clerk', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2510080005', '1', '1', 'upload_files/candidate_tracker/3743737931_Nareshresume2.pdf', NULL, '3', '2025-10-08', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-10-08 07:22:09', 154, '2025-10-08 03:38:06', 0, NULL, 1),
(27102, 'd Nandhini', '6', '8248404105', '', 'nandynandz14@gmail.com', '1993-10-02', 32, '3', '1', 'Prince Raj kumar', 'Network engineer', 50000.00, 1, 34000.00, 38000.00, 'Minjur', 'Madhavaram', '2510080006', '', '2', 'upload_files/candidate_tracker/37714552172_NandhiniResumesep14..1.pdf', NULL, '1', '2025-10-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok but seems not much profiled to our roles even she has multiple exp in telecalling salary is very high she left without attending the final round of discussion assigned to gnanasekar(Abdul on behalf)', '5', '1', '', '1', '8', '', '2', '2025-10-20', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-08 07:31:56', 154, '2025-10-08 03:44:24', 0, NULL, 1),
(27103, 'Syed abthahir', '13', '7397522759', '9551601686', 'abthahirsyed05@gmail.com', '2010-10-08', 0, '3', '2', 'Ibrahim', 'Hotel', 10000.00, 1, 0.00, 12000.00, 'Devakottai', 'Chennai', '2510080007', '', '1', 'upload_files/candidate_tracker/92479068699_Syed1.pdf', NULL, '2', '2025-10-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-10-08 07:45:44', 154, '2025-10-08 01:30:07', 0, NULL, 1),
(27104, 'Harikrishnan', '13', '6383486132', '', 'harihari6383@gmail.com', '2010-10-06', 15, '3', '2', 'Parent', 'Cooli work', 30.00, 2, 15.00, 30.00, 'Chennai', 'Chennai', '2510080008', '', '2', 'upload_files/candidate_tracker/21247121183_HARIKRISHNANM.docx', NULL, '1', '2025-10-08', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-10-08 07:47:22', 154, '2025-10-08 03:39:08', 0, NULL, 1),
(27105, 'UDHAYAKUMAR S', '11', '9789908324', '', 'Udhayakumar4623@gmail.com', '2002-08-30', 23, '3', '1', 'Sivaraman s', 'Flour mill', 40000.00, 0, 0.00, 250000.00, 'Chennai', 'Chennai', '2510080009', '', '1', 'upload_files/candidate_tracker/66222807512_DocumentfromUdhaya1.pdf', NULL, '1', '2025-10-08', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-10-08 07:52:37', 154, '2025-10-08 03:47:02', 0, NULL, 1),
(27106, 'Manikandan Saravanan', '6', '9597736692', '8838314045', 'cristianomanishh@gmail.com', '2004-03-16', 21, '2', '2', 'Arthi.M', 'Medical Billing', 20000.00, 1, 0.00, 16000.00, 'Ramanathapuram', 'Chennai', '2510080010', '1', '1', 'upload_files/candidate_tracker/62488861329_MANIKANDANVoiceProcess.pdf', NULL, '1', '2025-10-08', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-10-08 08:49:16', 154, '2025-10-08 03:26:42', 0, NULL, 1),
(27107, 'Vijay Vignesh', '13', '8015745009', '', 'vijayvignesh1214@gmail.com', '2003-12-12', 21, '3', '2', 'Saravanan', 'Daily wages', 200000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2510080011', '', '1', 'upload_files/candidate_tracker/20625945325_RESUME.pdf', NULL, '1', '2025-10-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'below 80%', '', '', '', '', '', '1970-01-01', 1, '2025-10-08 08:52:30', 154, '2025-10-08 03:39:22', 0, NULL, 1),
(27108, 'Tamilarasi p.', '6', '9884890098', '', 'tzhamilbt@gmail.com', '2004-04-18', 21, '1', '2', 'Periyasamy', 'Watchmen', 30000.00, 1, 0.00, 18000.00, 'Chennai 82', 'Chennai 82', '2510080012', '', '1', 'upload_files/candidate_tracker/3454775122_P.TamilarasiRESUME1.pdf', NULL, '3', '2025-10-08', 0, 'C99180', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-10-08 09:24:04', 154, '2025-10-08 03:52:03', 0, NULL, 1),
(27109, 'Angelin pricilla.D', '6', '7401685070', '9941425756', 'pricillaangelin68@gmail.com', '2003-03-25', 22, '1', '2', 'Daniel babu', 'Lab assistant', 38000.00, 1, 0.00, 17000.00, 'Perambur', 'Perambur', '2510080013', '', '1', 'upload_files/candidate_tracker/99845021722_Angelin1.pdf', NULL, '1', '2025-10-08', 0, 'C99180', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-10-08 09:25:08', 154, '2025-10-08 03:51:41', 0, NULL, 1),
(27110, 'Ravoof Akila S', '4', '7904378097', '8438869575', 'akilaravoof@gmail.com', '2002-07-07', 23, '2', '1', 'Rajesh', 'SME', 30000.00, 2, 0.00, 20000.00, 'Purasaiwalkkam , chennai', 'Purasaiwalkkam, Chennai', '2510080014', '50', '1', 'upload_files/candidate_tracker/25515509815_DOC20250922WA0000..pdf', NULL, '2', '2025-10-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-08 09:34:44', 1, '2025-10-08 09:37:30', 0, NULL, 1),
(27111, 'JOHN JOEL RAJ', '13', '7598349060', '', 'johnjoelofi@gmail.com', '2003-03-13', 22, '3', '2', 'Father', 'Setc staff', 200000.00, 1, 0.00, 20000.00, 'Thoothukudi', 'Chennai', '2510080015', '', '1', 'upload_files/candidate_tracker/52907607835_JOHNJFSJ.pdf', NULL, '1', '2025-10-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-10-08 10:11:08', 154, '2025-10-08 03:48:36', 0, NULL, 1),
(27112, '', '0', '8072335436', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510080016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-08 12:19:37', 0, NULL, 0, NULL, 1),
(27113, 'MRamu', '22', '8438152992', '', 'ramubba77@gmail.com', '2001-07-16', 24, '2', '2', 'M.Sumathi', 'Own business', 10000.00, 2, 0.00, 5000.00, 'Chennai', 'Velachery cheakpost', '2510080017', '1', '1', 'upload_files/candidate_tracker/87004491315_RESUME.pdf', NULL, '1', '2025-10-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable digital marketing roles fresher no basic ideas', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-10-08 05:06:34', 154, '2025-10-09 12:48:10', 0, NULL, 1),
(27114, 'karthikaraj a', '6', '8778146361', '7639734333', 'karthikaravinth206@gmail.com', '2001-02-28', 24, '2', '2', 'amirthalingam', 'painter', 45000.00, 1, 0.00, 18000.00, 'arumbakkam', 'arumbakam', '2510090001', '50', '1', 'upload_files/candidate_tracker/8966203012_IDcard9Oct2025.pdf', NULL, '1', '2025-10-09', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also he is drowsy and very low understadning.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-10-09 05:19:02', 154, '2025-10-09 12:49:46', 0, NULL, 1),
(27115, '', '0', '9344103520', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510090002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-09 07:37:39', 0, NULL, 0, NULL, 1),
(27116, 'abdul razick', '6', '9620062314', '', 'abdulrazick08@gmail.com', '2000-03-08', 25, '2', '2', 'wajid akram', 'self emplyed', 20000.00, 0, 23000.00, 30000.00, 'Bangalore', 'Bangalore', '2510090003', '57', '2', 'upload_files/candidate_tracker/40160700744_RAZICKCV1.pdf', NULL, '1', '2025-10-09', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'LACK OF OFFICE MANNERS , COMMUNICATION AND KNOWLEDGE', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'I1077', '55566', '1970-01-01', 1, '2025-10-09 08:13:51', 162, '2025-10-11 10:26:52', 0, NULL, 1),
(27117, 'sumit Kumar', '13', '9262758245', '', 's4sumit30@gmail.com', '2003-08-14', 22, '3', '2', 'mohan kumar ram', 'farmer', 20000.00, 2, 0.00, 4.00, 'pallikaranai', 'pallikaranai', '2510090004', '', '1', 'upload_files/candidate_tracker/32610268756_Sumitresume2.pdf', NULL, '1', '2025-10-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-10-09 09:18:59', 154, '2025-10-09 02:54:41', 0, NULL, 1),
(27118, 'Farhana Begum.A', '6', '9962353584', '9003140563', 'safarbegum131@gmail.com', '2003-01-31', 22, '2', '2', 'Mohamed Asadullah.S', 'Accountant', 18000.00, 2, 0.00, 18000.00, 'Pattalam', 'Pattalam', '2510090005', '1', '1', 'upload_files/candidate_tracker/89015593317_CV2025061320050799.pdf', NULL, '3', '2025-10-09', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-10-09 09:22:26', 154, '2025-10-09 05:10:24', 0, NULL, 1),
(27119, 'ROSHAN KUMAR R D', '13', '8610445672', '', 'roshank6238@gmail.com', '2003-09-22', 22, '3', '2', 'Dhinakaran R', 'Medical technician', 60000.00, 3, 0.00, 17000.00, 'Chennai', 'Chennai', '2510090006', '', '1', 'upload_files/candidate_tracker/14344848493_DOC20250731WA0005..pdf', NULL, '1', '2025-10-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-10-09 09:29:14', 154, '2025-10-09 03:13:08', 0, NULL, 1),
(27120, '', '0', '9042421251', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510090007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-09 11:27:40', 0, NULL, 0, NULL, 1),
(27121, 'SRIRAM.B', '6', '7358503016', '', 'srigay0105@gmail.com', '1999-05-01', 26, '2', '2', 'Gayathri.D', 'Documentation executive', 20000.00, 0, 14000.00, 16000.00, 'Chennai', 'Chennai', '2510090008', '1', '2', 'upload_files/candidate_tracker/27393815988_Resume2025.pdf', NULL, '1', '2025-10-10', 4, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-10-09 01:18:35', 1, '2025-10-09 01:25:06', 0, NULL, 1),
(27122, 'Kakimetla Prasanth', '23', '8501860500', '', 'prasanthrdy19@gmail.com', '2002-06-19', 23, '2', '2', 'bhulakshmi', 'n/a', 20000.00, 1, 0.00, 3.00, 'guntur', 'medavakkam', '2510090009', '1', '1', 'upload_files/candidate_tracker/31227907524_PrasanthResume1.pdf', NULL, '1', '2025-10-10', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rebar referrence not ok woth the terms and conditions for IT positions', '2', '1', '', '1', '8', '', '2', '2025-10-27', '2', '2', '', '', 'H1005', '', '55605', '55566', '1970-01-01', 1, '2025-10-09 05:47:01', 104, '2025-10-10 06:16:30', 0, NULL, 1),
(27123, 'Thamihkodi', '6', '8438549987', '7530087658', 'thamizhkodi316@gmail.com', '2004-07-23', 21, '2', '2', 'Kolanjinathan j', 'Farmer', 72000.00, 1, 0.00, 15000.00, 'Ariyalur', 'Tambaram', '2510100001', '1', '1', 'upload_files/candidate_tracker/41775156916_CV2025072818535538.pdf', NULL, '1', '2025-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not  much aggressive to our sales will not handle our work roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-10-10 04:01:56', 104, '2025-10-10 06:13:36', 0, NULL, 1),
(27124, 'Jasmine', '4', '7418853772', '', 'jasminesheela1999@gmail.com', '1999-05-04', 26, '3', '2', 'S samuvel', 'Self employee', 20000.00, 2, 0.00, 15000.00, 'Thirukattupalli', 'Thirukattupalli', '2510100002', '', '1', 'upload_files/candidate_tracker/57401058968_jasmneRESUME.pdf', NULL, '3', '2025-10-10', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2025-10-10 06:33:59', 154, '2025-10-10 12:58:58', 0, NULL, 1),
(27125, 'vani k', '6', '6300188245', '', 'konkavani23@gmail.com', '1999-12-23', 25, '1', '1', 'ashok', 'software', 100000.00, 2, 20000.00, 25000.00, 'marathalli', 'marathalli', '2510100003', '', '2', 'upload_files/candidate_tracker/52840818263_van.pdf.pdf', NULL, '1', '2025-10-10', 0, '55866', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'ATTENDED 2 ROUNDS , WENT FOR LUNCH AND NEVER SHOWED UP FOR THIRD ROUND', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-10-10 06:38:50', 162, '2025-10-11 10:27:45', 0, NULL, 1),
(27126, '', '0', '8555046579', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510100004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-10 06:58:35', 0, NULL, 0, NULL, 1),
(27127, 'Benny hin calep', '4', '8220291428', '', 'bennycalep@gmail.com', '2000-06-09', 25, '3', '2', 'Jayaraj s', 'Tailor', 72000.00, 1, 0.00, 200000.00, 'Tirukoillur', 'Tiruvetriyur', '2510100005', '', '1', 'upload_files/candidate_tracker/7872253442_BennyHinCalep.pdf', NULL, '1', '2025-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-10 08:30:48', 1, '2025-10-10 08:37:50', 0, NULL, 1),
(27128, 'Podalakuru Nithya', '4', '6381977413', '8428583803', 'madhanithu0301@gmail.com', '2000-01-03', 25, '2', '1', 'Madhan kumar', 'Field executive', 45000.00, 1, 25000.00, 28000.00, 'Tambaram', 'Tambaram', '2510100006', '1', '2', 'upload_files/candidate_tracker/15342099901_resumeexp1.docx', NULL, '1', '2025-10-10', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '6', '', '', 'H1017', '', '55824', '55560', '1970-01-01', 1, '2025-10-10 09:03:08', 104, '2025-10-10 06:14:29', 0, NULL, 1),
(27129, '', '0', '9003534795', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510100007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-10 10:18:30', 0, NULL, 0, NULL, 1),
(27130, 'Mansoor asar', '6', '7550253903', '8807856609', 'mansoorasar218@gmail.com', '2004-02-23', 21, '2', '2', 'sikanther basha', 'interior', 35000.00, 1, 0.00, 300000.00, 'hennai', 'hennai', '2510100008', '50', '1', 'upload_files/candidate_tracker/7848184249_MansoorAsarCV.pdf', NULL, '1', '2025-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not completely open for sales having a kind of attitude and being a fresher his salary expectation is very highWill not sustain  in our roles ', '5', '1', '', '4', '6', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-10 10:50:03', 154, '2025-10-13 02:37:57', 0, NULL, 1),
(27131, '', '0', '6385217117', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510100009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-10 01:00:15', 0, NULL, 0, NULL, 1),
(27132, 'Ragapriya', '6', '8300885673', '9150742974', 'ragabapriya11@gmail.com', '2005-08-11', 20, '1', '2', 'Ananth Babu', 'Iron shop', 2000.00, 1, 0.00, 15000.00, 'choolai', 'choolai', '2510110001', '', '1', 'upload_files/candidate_tracker/862816504_UGPGProfessionalDegreeExaminationsOnlineApplicationforArrearCandidates.PDF', NULL, '2', '2025-10-11', 0, '77840', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-10-11 05:17:18', 154, '2025-10-11 12:02:35', 0, NULL, 1),
(27133, 'T Rajalakshmi A Thiyagarajan', '6', '8778761024', '', 'rt9097044@gmail.com', '1999-11-17', 25, '2', '1', 'Muralikrishnan', 'Medical Representative', 30000.00, 2, 15000.00, 17000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2510110002', '1', '2', 'upload_files/candidate_tracker/51625335101_Rajiresumenew.docx', NULL, '1', '2025-10-15', 0, '', '3', '59', '2025-11-03', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in Vizza for almost 2years later gap for 2years due to marriage need to check and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '2025-11-03', 1, '2025-10-11 05:17:25', 60, '2025-11-01 04:50:04', 0, NULL, 1),
(27134, 'KEERTHAN C', '4', '9791132697', '9094602555', 'keerthan102003@gmail.com', '2003-12-10', 21, '2', '2', 'jayasree', 'housewife', 16000.00, 1, 0.00, 19000.00, 'Chennai', 'Chennai', '2510110003', '50', '1', 'upload_files/candidate_tracker/25525583604_ResumeKeerthan.pdf', NULL, '1', '2025-10-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-11 05:18:56', 1, '2025-10-11 05:31:45', 0, NULL, 1),
(27135, 'Dilzad', '4', '9677252133', '', 'Kamardils91@gmail.com', '1991-07-24', 34, '2', '1', 'Sadiq', 'Not working', 10000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2510110004', '50', '2', 'upload_files/candidate_tracker/47408211577_newresume3.pdf', NULL, '3', '2025-10-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-11 06:16:26', 1, '2025-10-11 06:40:43', 0, NULL, 1),
(27136, 'PAWANSAN V', '6', '9585131022', '', 'pawanofficial1307@gmail.com', '2004-10-13', 20, '2', '2', 'Venkatesan c', 'Cooli', 7000.00, 1, 0.00, 20000.00, 'Purasiwakam', 'Chennai', '2510110005', '57', '1', 'upload_files/candidate_tracker/24329794115_PAWANSANresume.pdf', NULL, '1', '2025-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much suitable for our roles will not handle our work pressurenot suits for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-11 06:28:09', 154, '2025-10-11 02:40:58', 0, NULL, 1),
(27137, 'Ragavan', '6', '9677272121', '', 'Ragavan2421@gmail.com', '2004-08-21', 21, '2', '2', 'P.RAMESH', 'Driver', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2510110006', '57', '1', 'upload_files/candidate_tracker/75794147882_downloadresume1.pdf', NULL, '1', '2025-10-11', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also attire is very poor sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-10-11 06:32:33', 154, '2025-10-11 03:41:34', 0, NULL, 1),
(27138, '', '0', '8122922917', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510110007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-11 06:41:30', 0, NULL, 0, NULL, 1),
(27139, 'Kaviya', '6', '6382663263', '6374335359', 'kaviyaanjali156@gmail.com', '2002-10-14', 22, '2', '2', 'Ramanathan', 'Farmer', 10000.00, 2, 0.00, 17.00, 'Villupuram district', 'Chennai', '2510110008', '50', '1', 'upload_files/candidate_tracker/48556842530_KavyfinalResume.pdf', NULL, '1', '2025-10-11', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain in working with targets. sustainability doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-10-11 06:59:25', 154, '2025-10-11 03:41:00', 0, NULL, 1),
(27140, 'Saral Jasmine p', '6', '9345468061', '6379198863', 'Saral13112002@gmail.com', '2002-11-13', 22, '2', '2', 'Pichaimuthu', 'Coolie', 10000.00, 2, 0.00, 17000.00, 'Arakkonam', 'Chennai', '2510110009', '50', '1', 'upload_files/candidate_tracker/25537782246_SaraljasmineFlowCVResume202507152.pdf', NULL, '1', '2025-10-11', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not much active and will not handle pressure for sales and sustainability doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-10-11 07:00:01', 154, '2025-10-11 03:32:59', 0, NULL, 1),
(27141, 'naveena', '6', '9585028923', '9585769540', 'naveenamanimaran540@gmail.com', '2001-07-30', 24, '2', '2', 'Manimaran jayanthi', 'Agriculture', 60000.00, 2, 22.00, 25.00, 'Ariyalur', 'Koyambedu chennai', '2510110010', '50', '2', 'upload_files/candidate_tracker/64976101437_naveenaresume.pdf', NULL, '1', '2025-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not open for sales calling looking for support roles only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-11 09:03:02', 154, '2025-10-11 04:30:29', 0, NULL, 1),
(27142, 'Dhivya M', '6', '9597830035', '9360161958', 'mailtodhivya47@gmail.com', '2000-05-22', 25, '2', '2', 'Moorthy G', 'Tailer', 45000.00, 2, 22000.00, 25000.00, 'Vandavasi, Thiruvannamalai Dt', 'Koyambedu', '2510110011', '50', '2', 'upload_files/candidate_tracker/74233600418_DHIVYA1.pdf', NULL, '1', '2025-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'worked in different domain for a long and 6 months in calling,pressure handling and sustainability doubts as she is not much comfort withe sales callings', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-11 09:05:31', 154, '2025-10-11 04:30:07', 0, NULL, 1),
(27143, '', '0', '9025822636', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510110012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-11 09:39:59', 0, NULL, 0, NULL, 1),
(27144, 'k rajavarman', '6', '6381536032', '9442459588', 'rajavarman.karna@gmail.com', '2003-06-19', 22, '2', '2', 'karunanithi r', 'business man', 25000.00, 1, 0.00, 200000.00, 'sivaganga', 'chennai', '2510110013', '1', '1', 'upload_files/candidate_tracker/87821441656_Rajacv.pdf', NULL, '1', '2025-11-01', 0, '', '3', '59', '2025-11-03', 198000.00, '', '4', '2025-11-06', '1', 'Communication Ok seems to be 5050 for our roles can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1070', '5151', '2025-11-03', 1, '2025-10-11 10:02:21', 60, '2025-11-01 06:39:10', 0, NULL, 1),
(27145, '', '0', '6381536031', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510110014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-11 10:09:17', 0, NULL, 0, NULL, 1),
(27146, 'Yamuna', '4', '7305603122', '9884036648', 'yy1835788@gmail.com', '2004-03-21', 21, '2', '2', 'Raja Kumar', 'Auto driver', 20.00, 1, 0.00, 15000.00, 'TVS Colony 45th street Anna Nagar west extension', 'TVS Colony 45th street Anna Nagar west extension', '2510110015', '50', '1', 'upload_files/candidate_tracker/88128512665_downloadresume.pdf', NULL, '1', '2025-10-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-11 10:13:56', 1, '2025-10-11 10:18:40', 0, NULL, 1),
(27147, '', '0', '9176197272', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510110016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-11 10:14:21', 0, NULL, 0, NULL, 1),
(27148, '', '0', '9840868796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510110017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-11 11:42:41', 0, NULL, 0, NULL, 1),
(27149, 'Surya prakash', '5', '9943348114', '7402308231', 'surya14slr@gmail.com', '2000-07-05', 25, '2', '2', 'K.vengadapathi', 'Sales', 20000.00, 1, 20000.00, 25000.00, 'Villupuram', 'Villupuram', '2510110018', '1', '2', 'upload_files/candidate_tracker/24437610485_DOC20250925WA0004..pdf', NULL, '1', '2025-10-13', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55656', '55557', '1970-01-01', 1, '2025-10-11 12:58:45', 154, '2025-10-13 03:24:39', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27150, 'surya', '6', '8220611369', '9944228166', 'suryass8220@gmail.com', '2001-08-16', 24, '2', '2', 'anandhan', 'master craftsman', 30000.00, 5, 15000.00, 18000.00, 'arakkonam', 'arakkonam', '2510110019', '1', '2', 'upload_files/candidate_tracker/70908968965_Suryaresume22.pdf', NULL, '1', '2025-10-13', 15, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is little not good.also long distance.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-10-11 01:09:17', 154, '2025-10-13 02:34:39', 0, NULL, 1),
(27151, 'Sanjay. D', '6', '7200063248', '9677139600', 's7438871@gmail.com', '2005-01-14', 20, '2', '2', 'G.Durai', 'Bakery master', 30000.00, 1, 17000.00, 18000.00, '4/5 ponnagkinaru street villivakkam chennai-600049', 'Villivakkam', '2510110020', '1', '2', 'upload_files/candidate_tracker/93881477036_383827b4745346fbabd10d155056d9f0.pdf', NULL, '1', '2025-10-13', 2, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performace is not good.also attitude charater and attire is not good.sustainablke is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-10-11 01:42:02', 154, '2025-10-13 02:33:57', 0, NULL, 1),
(27152, 'J Anitha', '6', '7904398861', '9941226929', 'anitha3072005@gmail.com', '2005-07-30', 20, '2', '2', 'Jayakumar', 'Sales representative', 90000.00, 1, 0.00, 15.00, 'Old washermanpet', 'Old washermanpet', '2510130001', '50', '1', 'upload_files/candidate_tracker/51053136040_Anitha.JResume.pdf', NULL, '1', '2025-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is looking for core accounts profile only not open for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-13 04:35:24', 154, '2025-10-13 11:51:26', 0, NULL, 1),
(27153, 'Raju s', '6', '8012068978', '', 'raju06812@gmail.com', '1997-06-05', 28, '2', '2', 'Subramani', 'Farmer', 100000.00, 1, 18000.00, 20000.00, 'Namakkal', 'Chennai', '2510130002', '1', '2', 'upload_files/candidate_tracker/85054658544_RajuResume.pdf', NULL, '1', '2025-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Complete medical billing exp fr more than 5yrs since he is not getting any relevant now he is looking for these sort of roles also he is keen lookin for the same profile will not sustain in our roles for a long', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-10-13 04:38:34', 154, '2025-10-13 11:59:39', 0, NULL, 1),
(27154, 'N Harikrishnan', '6', '9884626423', '9380526467', 'Harikrishnanns624@gmail.com', '2000-01-21', 25, '2', '2', 'R Nagarajan', 'Diplamo in computer technology', 20000.00, 1, 0.00, 20000.00, 'Ambathur chennai', 'Ambathur chennai', '2510130003', '1', '1', 'upload_files/candidate_tracker/49406713649_HARI.pdf', NULL, '1', '2025-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles long career gap and no clarity to go with the particular roles ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-10-13 05:13:13', 154, '2025-10-13 12:07:32', 0, NULL, 1),
(27155, 'Aarthi', '6', '9600283494', '', 'aarthiaanbu@gmail.com', '2002-03-29', 23, '2', '2', 'Nill', 'Nill', 60000.00, 3, 30000.00, 45000.00, 'Dharmapuri', 'Coimbatore', '2510130004', '57', '2', 'upload_files/candidate_tracker/90353846289_Aarthiresume.pdf', NULL, '1', '2025-10-13', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking only for customer support roles and not open for sales callings\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-13 05:24:51', 154, '2025-10-13 12:41:52', 0, NULL, 1),
(27156, 'Monica Srinivasan', '6', '7411261610', '9036318047', 'monicasrinivasan1997@gmail.com', '1997-02-10', 28, '2', '1', 'Anantha Alwan', 'Production manager', 60000.00, 1, 0.00, 15.00, 'Chennai', 'Triplicane', '2510130005', '1', '1', 'upload_files/candidate_tracker/42141582509_MonicaSrinivasanResume.pdf', NULL, '1', '2025-10-14', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-10-13 06:03:10', 154, '2025-10-14 01:14:49', 0, NULL, 1),
(27157, 'Nithish', '6', '7339575286', '8925342201', 'nithis617@gmail.con', '2003-07-30', 22, '2', '2', 'Marimuthu', 'Carpenter', 20000.00, 0, 0.00, 18000.00, 'Kumbakonam', 'Chennai', '2510130006', '1', '1', 'upload_files/candidate_tracker/89809712521_NithisMCV.pdf', NULL, '1', '2025-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'MSC graducate and looking for coreIT vacancy for time being he is looking into this fresher', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-10-13 06:09:35', 154, '2025-10-13 01:22:02', 0, NULL, 1),
(27158, 'asneem uxana', '4', '8637647173', '', 'tasneemruxana@gmail.com', '2004-01-21', 21, '2', '2', 'farooq ali', 'business', 40000.00, 1, 0.00, 150000.00, 'chennai', 'chennai', '2510130007', '50', '1', 'upload_files/candidate_tracker/28256737050_Telecallerresume.docx', NULL, '3', '2025-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-13 07:07:17', 1, '2025-10-13 07:10:04', 0, NULL, 1),
(27159, 'G Praveena', '6', '8925205316', '9841640718', 'gpraveena724@gmail.com', '2004-07-25', 21, '6', '2', 'Govindan', 'Coolie', 12000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2510130008', '', '1', 'upload_files/candidate_tracker/77625848332_downloadresume.pdf', NULL, '1', '2025-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-13 07:23:08', 1, '2025-10-13 10:12:37', 0, NULL, 1),
(27160, 'kamalisvari p', '6', '9840155862', '8939545862', 'kamalikamali62334@gmail.com', '2003-08-23', 22, '2', '2', 'pandiyan', 'employee', 70000.00, 1, 17000.00, 19000.00, 'minjur', 'minjur', '2510130009', '50', '2', 'upload_files/candidate_tracker/23653523257_kamalicv.pdf', NULL, '1', '2025-10-13', 1, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-10-13 07:27:33', 154, '2025-10-13 03:56:30', 0, NULL, 1),
(27161, 'Angelin S', '6', '6379173038', '9597224749', 'angelinangel0478@gmail.Com', '2004-08-30', 21, '2', '2', 'C. Sathilinga Pandi', 'Any other', 50000.00, 5, 15000.00, 20000.00, 'Tirunelveli', 'kandanchavadi,Chennai', '2510130010', '1', '2', 'upload_files/candidate_tracker/5884784303_pdf.pdf', NULL, '1', '2025-10-13', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NO BASIC SKILL', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-10-13 08:12:54', 154, '2025-10-13 03:27:57', 0, NULL, 1),
(27162, 'BELSITA. A', '6', '9080760997', '', 'Belsibelsi1101@gmail.com', '2003-01-11', 22, '2', '2', 'Parent', 'Coolie', 40.00, 3, 13.00, 18.00, 'No:13/26 YMCA 2nd street Tondiarpet chennai-81', 'No:13/26 YMCA 2nd street Tondiarpet chennai-81', '2510130011', '50', '2', 'upload_files/candidate_tracker/20113692726_BelsitaNewresume.pdf', NULL, '1', '2025-10-14', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-10-13 08:36:32', 154, '2025-10-14 12:22:13', 0, NULL, 1),
(27163, 'Sadhamhussain I', '5', '8939318685', '', 'hsadham314@gmail.com', '2000-11-26', 24, '2', '2', 'N.Ibrahim', 'Electrician', 200000.00, 0, 220000.00, 400000.00, 'Redhills', 'Redhills', '2510130012', '57', '2', 'upload_files/candidate_tracker/78566512117_Resume15072025012259pm.pdf', NULL, '1', '2025-10-13', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2025-10-13 09:02:48', 154, '2025-10-13 03:39:26', 0, NULL, 1),
(27164, 'Sushmitha', '6', '9043250716', '9043250751', 'sushmithag410@gmail.com', '2005-05-09', 20, '1', '2', 'Gopi', 'Painter', 8000.00, 1, 13000.00, 16000.00, 'Tiruttani', 'Rayapuram, Chennai', '2510130013', '', '2', 'upload_files/candidate_tracker/96652109013_SUSHMITHAGCV.pdf', NULL, '1', '2025-10-13', 0, 'C99137', '3', '59', '2025-10-15', 180000.00, '', '3', '2026-02-02', '2', 'Communication Ok fresher need to check in training and confirm based on manager approval we have given him the joining', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1070', '5151', '2025-10-15', 1, '2025-10-13 09:03:30', 60, '2025-10-14 07:13:38', 0, NULL, 1),
(27165, 'Gousia begum U', '6', '8825460447', '9500162319', 'gousiasherif5@gmail.com', '2003-04-14', 22, '2', '1', 'Amanulla', 'Business', 50000.00, 0, 27000.00, 30000.00, 'chennai', 'chennai', '2510130014', '1', '2', 'upload_files/candidate_tracker/86418482870_GousiaResume.pdf', NULL, '1', '2025-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustainability issues In1.3yrs travelled with 3 companies and this is 4th also there is no proper explanation for the exit from the previous stated some issues related to posh and alos the previous reason also not seems to be valid', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-10-13 09:35:57', 154, '2025-10-13 04:05:29', 0, NULL, 1),
(27166, 'Thahiru Nisha', '6', '9884898163', '', 'banunisha858@gmail.com', '1999-08-09', 26, '2', '2', 'Banu', 'Home minister', 35000.00, 1, 15000.00, 20000.00, 'Tiruvallur', 'Tiruvallur', '2510130015', '50', '2', 'upload_files/candidate_tracker/78303425162_NishaRESUME.pdf', NULL, '1', '2025-10-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-13 09:42:18', 1, '2025-10-13 09:46:31', 0, NULL, 1),
(27167, 'challa rahitya', '6', '8639223829', '', 'rahitya23@gmail.com', '2002-12-23', 22, '3', '2', 'challa venkatta konndaih', 'farmer', 50000.00, 1, 0.00, 20000.00, 'andhra pradesh', 'btm layout', '2510130016', '', '1', 'upload_files/candidate_tracker/15898056553_Rahitya.pdf', NULL, '1', '2025-10-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-13 10:55:32', 1, '2025-10-13 11:18:22', 0, NULL, 1),
(27168, 'bandi mahitha', '6', '9390637227', '', 'mahithabhandi@gmail.com', '2002-10-10', 23, '3', '2', 'nallappa', 'farmer', 50000.00, 2, 0.00, 20000.00, 'andhra pradesh', 'btm layout', '2510130017', '', '1', 'upload_files/candidate_tracker/47968141245_Mahitha1.pdf', NULL, '1', '2025-10-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-13 10:55:33', 1, '2025-10-13 11:12:39', 0, NULL, 1),
(27169, 'ILAKKIYA K', '6', '8925737291', '8056062749', 'ilakkiyadharsh@gmail.com', '2005-10-01', 20, '2', '2', 'Krishnamoorthy V', 'Bookbinder', 20000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2510130018', '1', '1', 'upload_files/candidate_tracker/5011722075_ILAKKIYAK1.pdf202507310917560000.pdf', NULL, '1', '2025-10-14', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and perfomance is not good.Sensitive type she does not handle the pressure.sustainable is doubt', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-10-13 12:51:46', 154, '2025-10-14 01:14:13', 0, NULL, 1),
(27170, '', '0', '8248992166', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510130019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-13 01:18:06', 0, NULL, 0, NULL, 1),
(27171, '', '0', '8148105577', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-14 02:11:56', 0, NULL, 0, NULL, 1),
(27172, 'PRITHIVINAN S', '6', '9385309417', '', 'prithivinanbe@gmail.com', '1999-03-09', 26, '2', '2', 'Sathasivam', 'Fisherman', 15000.00, 3, 16000.00, 25000.00, 'Ramanathapuram, Tamilnadu', 'Jayanagar, Bangalore', '2510140002', '1', '2', 'upload_files/candidate_tracker/75080102427_PrithivinanSResume.pdf', NULL, '1', '2025-10-14', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'dOES NOT KNOW KANNADA AND NO PROPER COMMUNICATION IN ENGLISH', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', 'I1077', '55566', '1970-01-01', 1, '2025-10-14 04:48:04', 162, '2025-10-14 05:53:18', 0, NULL, 1),
(27173, 'priyadharshni', '6', '7092154306', '8925019546', 'tharshenipriya002@gmail.com', '2004-02-28', 21, '1', '2', 'indhra', 'triplicane', 14000.00, 0, 15000.00, 17000.00, 'triplicane', 'triplicane', '2510140003', '', '2', 'upload_files/candidate_tracker/58099223127_Imagetopdf14Oct2025.pdf', NULL, '1', '2025-10-14', 0, 'jobs', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and perfomance is not good.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-10-14 05:06:48', 154, '2025-10-15 10:11:13', 0, NULL, 1),
(27174, 'Ranjani V', '6', '7358410644', '8056251988', 'ranjaniv247@gmail.com', '2004-09-18', 21, '1', '2', 'Vedhachalam', 'Housekeeping', 10000.00, 1, 15000.00, 17000.00, 'Mylapore', 'Mylapore', '2510140004', '', '2', 'upload_files/candidate_tracker/50444379661_RanjaniVresume1.pdf', NULL, '1', '2025-10-14', 0, 'Jobs', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication and perfomance is not good.sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-10-14 05:07:54', 154, '2025-10-15 10:10:55', 0, NULL, 1),
(27175, 'AkshaaYa K', '6', '9025697516', '8610054060', 'akshuakshaya2004@gmail.com', '2004-12-23', 20, '1', '2', 'Kanniyappan', 'Auto driver', 40000.00, 3, 15000.00, 17000.00, 'Triplicane', 'Triplicane', '2510140005', '', '2', 'upload_files/candidate_tracker/68691451591_AkshayaReseumeDONE.docx', NULL, '1', '2025-10-14', 0, 'Jobs', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is ok.but 5050 profile,will check with her in the training period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-10-14 05:08:52', 154, '2025-10-15 10:10:35', 0, NULL, 1),
(27176, '', '0', '7092541306', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510140006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-14 05:13:58', 0, NULL, 0, NULL, 1),
(27177, 'Geethika P', '6', '9342654255', '9003058342', 'Geethikapremkumar@gmail.com', '2004-11-30', 20, '2', '2', 'Premkumar S', 'Labour worker', 16000.00, 0, 0.00, 17000.00, 'Old washermenpet', 'Old washermenpet', '2510140007', '1', '1', 'upload_files/candidate_tracker/24347466221_GeethikaResume.pdf', NULL, '1', '2025-10-14', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is good.but she is preparing for some gov exams.but sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55666', '5151', '1970-01-01', 1, '2025-10-14 05:21:55', 154, '2025-10-14 12:30:10', 0, NULL, 1),
(27178, 'Divyashree C J', '6', '7204136384', '', 'divyashreecj02@gmail.com', '2002-06-14', 23, '2', '2', 'Jayalakshmi', 'Senior service executive', 30000.00, 1, 18500.00, 25000.00, 'Mysore', 'Banglore', '2510140008', '1', '2', 'upload_files/candidate_tracker/17634741360_ResumeDivyashreeCJFormat1.pdf', NULL, '1', '2025-10-14', 1, '', '3', '59', '2025-11-10', 240000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in matrimony fresher for Sales Can give a try and check', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55671', '55555', '2025-11-10', 1, '2025-10-14 05:44:21', 60, '2025-11-10 12:29:18', 0, NULL, 1),
(27179, 'SETHUPATHY J', '1', '9074762953', '8939971150', 'sethupathysethu59@gamil.com', '2010-10-14', 0, '2', '2', 'Jaganathan', 'Chennai', 75000.00, 2, 20000.00, 22000.00, 'Kerala', 'Chennai', '2510140009', '50', '2', 'upload_files/candidate_tracker/60288859731_SethupathyTSO.pdf', NULL, '1', '2025-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-14 05:49:05', 1, '2025-10-14 05:54:11', 0, NULL, 1),
(27180, 'Balaji.p', '13', '6382261675', '6382140675', 'bp8459280@gmail.com', '2005-07-24', 20, '5', '2', 'Palani.p', 'Driver', 120000.00, 0, 0.00, 4.00, 'Near office', 'Avadi', '2510140010', '', '1', 'upload_files/candidate_tracker/97824160743_222201202.pdf', NULL, '1', '2025-10-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-14 07:25:53', 1, '2025-10-14 07:31:03', 0, NULL, 1),
(27181, 'Vimaleshwaran', '6', '9342142902', '', 'vimaleshwaranvelayudham@gmail.com', '2004-02-01', 21, '2', '2', 'Manjula', 'Home maker', 40000.00, 2, 0.00, 20000.00, 'chennai central', 'chennai central', '2510140011', '1', '1', 'upload_files/candidate_tracker/48831435886_VimaleshwaranResume.pdf', NULL, '1', '2025-10-15', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-10-14 09:48:00', 154, '2025-10-15 12:36:38', 0, NULL, 1),
(27182, 'Kadhiravan B', '6', '9786277518', '', 'pkathirvijay@gmail.com', '2003-01-28', 22, '2', '2', 'Balaraman G', 'Farmer', 8000.00, 1, 0.00, 200000.00, 'padhur, kallakurichi (dis)-606115', 'Chennai, Chromepet', '2510140012', '50', '1', 'upload_files/candidate_tracker/89137415836_kathiressumedoc.docx', NULL, '1', '2025-10-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-14 11:48:37', 154, '2025-10-15 12:00:50', 0, NULL, 1),
(27183, 'Gowtham', '11', '7358790794', '', 'gowthamchan1211@gmail.com', '2002-11-12', 22, '2', '2', 'Anjukam', 'Housewife', 30000.00, 1, 0.00, 20000.00, 'Municipality', 'Municipality', '2510140013', '1', '1', 'upload_files/candidate_tracker/60925418990_GOWTHAMRRESUME1.pdf', NULL, '1', '2025-10-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', '0', '0', NULL, 1, '2025-10-14 12:54:31', 1, '2025-10-14 09:28:46', 0, NULL, 1),
(27184, 'sivasridharan', '6', '8608319716', '8056402837', 'Sivasridharan353@gmail.com', '1997-05-05', 28, '2', '1', 'meera', 'accountant', 300002.00, 2, 18000.00, 20000.00, 'velachery', 'velachery', '2510140014', '1', '2', 'upload_files/candidate_tracker/5868509163_SivaSridharan.s1002251100437810.pdf', NULL, '1', '2025-10-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-10-14 01:01:41', 154, '2025-10-15 02:44:50', 0, NULL, 1),
(27185, 'n.jenifer mary', '6', '9791530183', '', 'jenijenifermary032@gmail.com', '1999-12-14', 25, '2', '2', 'Victoriya', 'Houses wife', 15.00, 1, 0.00, 15.00, 'Mayiladuthurai', 'Kodappkam', '2510150001', '50', '1', 'upload_files/candidate_tracker/39306129057_JeniferMary.pdf202501201545250000.pdf', NULL, '1', '2025-10-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for sales calling looking for non voice only', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-15 05:17:35', 154, '2025-10-16 04:12:33', 0, NULL, 1),
(27186, 'Kousic raj B', '6', '9629825243', '8428782067', 'skkousic021@gmail.com', '2001-02-05', 24, '2', '2', 'Babujayaraj', 'Company supervisor', 240000.00, 1, 19200.00, 24000.00, 'chengalpattu', 'Chromepet', '2510150002', '1', '2', 'upload_files/candidate_tracker/49964871314_B.kousicrajFlowCVResume20251014.pdf', NULL, '1', '2025-10-15', 30, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expected Higher Pacakge', '5', '1', '', '1', '8', '', '2', '2025-11-04', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-10-15 05:27:38', 154, '2025-10-15 02:45:18', 0, NULL, 1),
(27187, 'Gomathi', '6', '7695958260', '9944364890', 'gomathiganesan95g@gmail.com', '1995-06-10', 30, '2', '1', 'Uma maheswaran', 'IT- SAP Application', 35000.00, 2, 18500.00, 25000.00, 'Chennai', 'Chennai', '2510150003', '57', '2', 'upload_files/candidate_tracker/51098803402_GOMATHIRESUMEFINAL.pdf', NULL, '1', '2025-10-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-15 05:34:08', 154, '2025-10-15 02:43:59', 0, NULL, 1),
(27188, 'PRIYANGA. B', '5', '6374011270', '9361762342', 'priyayuva2342@gmail.com', '1999-03-20', 26, '2', '1', 'MUKESH J', 'IT professional', 7.00, 1, 2.85, 3.50, 'Korattur', 'Korattur', '2510150004', '1', '2', 'upload_files/candidate_tracker/6826141080_PriyangaModernResume.pdf', NULL, '1', '2025-10-16', 0, '', '3', '59', '2025-10-27', 300000.00, '', NULL, '2026-05-04', '1', 'Communication Ok have exp and gap in between can give a try in our roles she was into her own business based on suresh sir approval we have given', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55656', '55557', '2025-10-27', 1, '2025-10-15 05:57:37', 60, '2025-10-25 07:48:36', 0, NULL, 1),
(27189, 'Madhavan r', '13', '9884788975', '7338772790', 'm8nmadhavan76@gmail.com', '2003-10-20', 21, '2', '2', 'ramesh b', 'driver', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2510150005', '1', '1', 'upload_files/candidate_tracker/4859170827_Madhavancv.pdf', NULL, '1', '2025-10-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-10-15 12:47:43', 1, '2025-10-15 02:09:18', 0, NULL, 1),
(27190, 'janani v', '4', '9094394709', '8778855894', 'itmejanani98@gmail.com', '1998-09-03', 27, '2', '2', 'venkatesan', 'driver', 15000.00, 1, 20000.00, 23000.00, 'No 32B Varalakshmi Nagar Veppampattu 602024', 'No 32B Varalakshmi NagarVeppampattu 602024', '2510150006', '1', '2', 'upload_files/candidate_tracker/39449727713_JANANIVResume.docx', NULL, '1', '2025-10-16', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55824', '55560', '1970-01-01', 1, '2025-10-15 01:01:09', 154, '2025-10-16 11:35:00', 0, NULL, 1),
(27191, 'pratheswaran', '23', '9360594976', '', 'Prathees307@gmail.com', '2003-07-30', 22, '2', '2', 'dharmalingam', 'cook', 300000.00, 1, 0.00, 300000.00, 'Devakottai', 'Chennai', '2510150007', '1', '1', 'upload_files/candidate_tracker/9314515327_PratheesResumeUi.pdf', NULL, '1', '2025-10-16', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is looking for UI UX  givn him the complete info about the profile and the terms need to check if he comes back let us hold and confirm', '2', '1', '', '1', '8', '', '2', '2025-10-27', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-10-15 01:15:36', 154, '2025-10-16 01:27:38', 0, NULL, 1),
(27192, '', '0', '9629928847', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510150008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-15 01:36:24', 0, NULL, 0, NULL, 1),
(27193, '', '0', '9360848588', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510150009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-15 01:47:32', 0, NULL, 0, NULL, 1),
(27194, 'Elango Parthasarathi', '13', '7845637102', '', 'elangosarathi14@gmail.com', '2002-05-28', 23, '2', '2', 'parthasarathi', 'farming', 8000.00, 2, 21000.00, 45000.00, 'tiruvannamalai', 'Chennai', '2510150010', '1', '2', 'upload_files/candidate_tracker/65086459446_ElangoParthasarathiResume.pdf', NULL, '1', '2025-10-17', 20, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-10-15 05:39:54', 154, '2025-10-17 04:54:24', 0, NULL, 1),
(27195, 'Sandhiya V', '6', '7358659242', '8124985132', 'vsandhiya484@gmail.com', '2004-08-04', 21, '2', '2', 'Vadivel.S', 'Auto driver', 11000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2510160001', '1', '1', 'upload_files/candidate_tracker/52503816577_SANDHIYA7.pdf', NULL, '1', '2025-10-16', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is ok.but she is intrested in Non voice process also she said she is sensitive type sos sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2025-10-16 01:53:17', 154, '2025-11-07 10:23:04', 0, NULL, 1),
(27196, 'Jaivignesh G', '22', '8489245809', '9445714789', 'gjaivignesh2002@gmail.com', '2002-06-26', 23, '2', '2', 'V Ganesan', 'Electrician', 1.80, 0, 0.00, 1.80, 'Chennai', 'Chennai', '2510160002', '1', '1', 'upload_files/candidate_tracker/17546335216_JAIVIGNESHGDMFin.pdf', NULL, '1', '2025-10-16', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average for Digital marketing just SEM Exp Open to learn Written content is not upto the expectation need to check via meet and confirm later', '2', '1', '', '1', '8', '', '2', '2025-10-21', '1', '2', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-10-16 05:08:04', 154, '2025-10-16 01:28:26', 0, NULL, 1),
(27197, 'rahul', '6', '9043089540', '9094672542', 'rahul904308@gmail.com', '2005-10-05', 20, '2', '2', 'Lakshmi', 'No', 16000.00, 0, 0.00, 15000.00, 'Old washermenpet', 'Old washermenpet', '2510160003', '50', '1', 'upload_files/candidate_tracker/29430835180_DocScannerAug142025145PM.pdf', NULL, '1', '2025-10-16', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much suits for our roles but need to check after few days complete fresher let him look multiple interviews and check not much good with the sales pitch', '5', '2', '', '1', '8', '', '2', '2025-10-27', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-16 05:19:17', 154, '2025-10-16 04:49:56', 0, NULL, 1),
(27198, 'Purushothaman R', '6', '9940698433', '', 'pothaman074@gmail.com', '2004-08-19', 21, '2', '2', 'Ranjit Kumar B', 'Working', 20000.00, 0, 0.00, 17.00, 'CHENNAI CITY', 'CHENNAI CITY', '2510160004', '50', '1', 'upload_files/candidate_tracker/68459379838_resume.pdf', NULL, '1', '2025-10-17', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'prefers non voice and admin roles. not willing to work with sales and targets', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-10-16 05:20:14', 154, '2025-10-17 12:58:43', 0, NULL, 1),
(27199, 'Murugan V', '13', '9150470528', '8754553545', 'sathishmurugan8821@gmail.com', '2004-03-03', 21, '3', '2', 'Mery V', 'House keeping', 8000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2510160005', '', '1', 'upload_files/candidate_tracker/30167377456_MuruganVDeveloperResume.pdf', NULL, '1', '2025-10-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-16 05:54:05', 1, '2025-10-16 06:04:44', 0, NULL, 1),
(27200, 'Kalishwaran.k', '13', '8754553545', '9150470528', 'kalishkalai2003@gmail.com', '2003-07-11', 22, '3', '2', 'Kalaiyarasan.k', 'Car mechanic', 10000.00, 1, 0.00, 300000.00, 'Chennai', 'Chenai', '2510160006', '', '1', 'upload_files/candidate_tracker/40141424081_Kalishwaran.Kresume.pdf', NULL, '1', '2025-10-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-16 05:54:06', 1, '2025-10-16 06:04:58', 0, NULL, 1),
(27201, 'Sharon illavarasi pugalanthi', '4', '7358082636', '', 'sharonilavarasi@gmail.com', '1996-12-24', 28, '2', '2', 'Pugalanthi P', 'Ministry', 100000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2510160007', '50', '1', 'upload_files/candidate_tracker/29762021219_sharon1.docx', NULL, '1', '2025-10-18', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2025-10-16 06:13:48', 154, '2025-10-18 12:08:58', 0, NULL, 1),
(27202, 'Nivetha S', '22', '8344161544', '9087267426', 'nivetharagunath@gmail.com', '2002-09-13', 23, '3', '2', 'sivagami s', 'house wife', 30000.00, 1, 15000.00, 20000.00, 'trichy', 'chennai', '2510160008', '', '2', 'upload_files/candidate_tracker/12994588203_NIVETHASResume.pdf', NULL, '1', '2025-10-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-16 07:47:36', 1, '2025-10-16 07:54:27', 0, NULL, 1),
(27203, '', '0', '9087267426', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510160009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-16 07:48:00', 0, NULL, 0, NULL, 1),
(27204, 'manoj kumar c', '6', '9949902353', '9492655972', 'manojbujji86@gmail.com', '2000-10-15', 25, '2', '2', 'venkatareddy c', 'Business', 40000.00, 1, 300000.00, 400000.00, 'Bangalore', 'bangalore', '2510160010', '57', '2', 'upload_files/candidate_tracker/71977236772_ResumeManoj3.pdf', NULL, '1', '2025-10-16', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'INTERESTED ONLY IN NON VOICE PROCESS', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'I1077', '55566', '1970-01-01', 1, '2025-10-16 08:48:48', 162, '2025-10-18 10:14:10', 0, NULL, 1),
(27205, 'Sugumar', '13', '7305304891', '9840310702', 'sugumarsigamani4642@gmail.com', '2005-07-01', 20, '2', '2', 'Deiva sigamani', 'Painter', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2510160011', '1', '1', 'upload_files/candidate_tracker/99434998337_newresume.pdf', NULL, '1', '2025-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-10-16 09:08:41', 154, '2025-10-17 12:39:09', 0, NULL, 1),
(27206, '703033407330', '4', '9087734974', '', 'vickynirmal416@gmail.com', '2004-06-30', 21, '2', '2', 'Jayapal', 'Driver', 200000.00, 1, 0.00, 20000.00, 'Chennai', 'Wicom nagar', '2510160012', '50', '1', 'upload_files/candidate_tracker/30835518399_JNirmalkumar.pdf', NULL, '1', '2025-10-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-16 10:35:53', 1, '2025-10-16 10:59:11', 0, NULL, 1),
(27207, '', '0', '7358593725', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510160013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-16 11:32:30', 0, NULL, 0, NULL, 1),
(27208, 'Karuthapandi', '22', '9361798983', '8680851823', 'karuthapandi1211@gmail.com', '2003-06-21', 22, '2', '2', 'Nambi natchiyar', 'House wife', 300000.00, 2, 0.00, 18000.00, '22000', 'Mogapair', '2510160014', '1', '1', 'upload_files/candidate_tracker/92560894645_DOC20251003WA0001.202510031049520000.pdf', NULL, '1', '2025-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-10-16 12:48:24', 154, '2025-10-17 12:04:50', 0, NULL, 1),
(27209, 'aravind k', '13', '6369051128', '8838127816', 'aravindkumaravel26@gmail.com', '2003-06-26', 22, '2', '2', 'kumaravel p', 'marketing', 18000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2510160015', '1', '1', 'upload_files/candidate_tracker/23461640318_ResumeUpdated.pdf', NULL, '1', '2025-10-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-10-16 01:23:00', 104, '2025-10-17 06:09:59', 0, NULL, 1),
(27210, 'kishore kumar rrumugam', '13', '7305509823', '', 'kishorekumaroffl@gmail.com', '2003-09-19', 22, '2', '2', 'arumugam r', 'provisional store', 30000.00, 1, 0.00, 300000.00, 'chennai tondiarpet', 'tondiarpet', '2510160016', '1', '1', 'upload_files/candidate_tracker/18045263812_KishoreCVNew.pdf', NULL, '1', '2025-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-10-16 01:26:02', 104, '2025-10-17 11:15:32', 0, NULL, 1),
(27211, 'Yogesh.j', '13', '9345626618', '9840340963', 'yogeshjanakiraman52@gmail.com', '2003-05-18', 22, '2', '2', 'Janakiraman.A', 'Esic manager', 60000.00, 1, 0.00, 400000.00, 'Tharamani, Chennai', 'Tharamani , Chennai', '2510160017', '1', '1', 'upload_files/candidate_tracker/2570767346_mainresume.pdf', NULL, '1', '2025-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-10-16 02:00:52', 154, '2025-10-17 11:54:16', 0, NULL, 1),
(27212, 'M. Praveen kunar', '6', '6379576169', '', 'Praveenapk36@gmail.com', '2000-11-28', 24, '2', '2', 'Father', 'Electrican', 17000.00, 1, 0.00, 3.80, 'Ambattur', 'Ambattur', '2510170001', '1', '2', 'upload_files/candidate_tracker/60073240403_myresume.pdf', NULL, '1', '2025-10-17', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-10-17 04:46:57', 154, '2025-10-17 12:58:15', 0, NULL, 1),
(27213, 'SIVAN KARTHIC R', '4', '9361937908', '8825721041', 'sivankarthic164@gmail.com', '2004-09-16', 21, '2', '2', 'Ravi', 'Ac mechanic', 20000.00, 0, 0.00, 18000.00, '124/27 parameswar nagar,Tondiarpet,I.O.C,Chennai', 'Parameswar nagar, Tondiarpet,Chennai', '2510170002', '50', '1', 'upload_files/candidate_tracker/24173416291_sivankarthic12.pdf', NULL, '1', '2025-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-17 06:05:44', 1, '2025-10-17 06:18:46', 0, NULL, 1),
(27214, 'Ajay S', '13', '9840749545', '', 'ajay20050708@gmail.com', '2005-07-08', 20, '2', '2', 'Sadagopan', 'Business', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2510170003', '1', '1', 'upload_files/candidate_tracker/80097573329_RESUMEproject1.pdf', NULL, '1', '2025-10-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-10-17 06:34:56', 154, '2025-10-17 12:39:29', 0, NULL, 1),
(27215, 'abishek.v', '13', '9962858534', '9176558517', 'abishek0243@gmail.com', '2004-06-08', 21, '2', '2', 'venkatesh', 'labour', 20000.00, 1, 0.00, 15000.00, 'pvp Kovil street agaramel tiruvallur', 'chennai', '2510170004', '1', '1', 'upload_files/candidate_tracker/32567208242_Screenshot20251017at12.18.21PM.pdf', NULL, '1', '2025-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2025-10-17 06:35:05', 154, '2025-10-22 11:14:24', 0, NULL, 1),
(27216, 'Ali Usman', '13', '8122510013', '', 'aliusmanf.64@gmail.com', '2002-04-06', 23, '2', '2', 'Farook Mohamed', 'Petty Shop', 13000.00, 3, 0.00, 15000.00, 'Kosukurichi, Natham, Dindigul', 'Teynampet', '2510170005', '1', '1', 'upload_files/candidate_tracker/56843827992_AliUsmanResume1.pdf', NULL, '1', '2025-10-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-10-17 06:44:05', 154, '2025-10-22 11:09:06', 0, NULL, 1),
(27217, 'Vignesh.J', '13', '9962860036', '', 'vickyvigneshj199@gmail.com', '2004-05-20', 21, '2', '2', 'G Jayaraman', 'Watchman', 12000.00, 1, 0.00, 15000.00, 'Guindy', 'Guindy', '2510170006', '1', '1', 'upload_files/candidate_tracker/59623181610_FullStackJavaDeveloperResumeVignesh.J.pdf', NULL, '1', '2025-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2025-10-17 07:08:57', 154, '2025-10-17 12:49:55', 0, NULL, 1),
(27218, 'viswanathan k', '13', '7339152164', '', 'viswa.k1@outlook.com', '2002-10-25', 22, '2', '2', 'karuppaiya', 'head cook', 30000.00, 1, 0.00, 15000.00, 'nungambakkam', 'nungambakkam', '2510170007', '1', '1', 'upload_files/candidate_tracker/76517465162_ViswanathanResume.pdf', NULL, '1', '2025-10-22', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-10-17 07:47:58', 154, '2025-10-22 02:34:15', 0, NULL, 1),
(27219, 'Raj prem kumar', '4', '8220331812', '9514641678', 'Rajpremkumar312@gmail.com', '2001-12-18', 23, '2', '2', 'Sundarraj', 'Bussiness', 16000.00, 1, 0.00, 18000.00, 'Chennai mugappair west', 'Chennai mugappair west', '2510170008', '50', '1', 'upload_files/candidate_tracker/50084233499_Rajpremkumarresume1.dox1.docx', NULL, '1', '2025-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-17 08:11:53', 1, '2025-10-17 08:14:54', 0, NULL, 1),
(27220, 'Elugam shravani', '5', '7977174326', '9585222011', 'Shravaniboyer547@gmail.com', '1999-08-14', 26, '1', '2', 'Elugam gopal', 'Granite supervisor', 20000.00, 4, 35000.00, 35000.00, 'Perambur', 'Perambur', '2510170009', '', '2', 'upload_files/candidate_tracker/97779173116_SHRAVANIELUGAMPAPPU2.pdf', NULL, '1', '2025-10-17', 0, '55656', '3', '59', '2025-12-01', 300000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in stocks based  fresher for insurance need to train from scratch  let us check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '55656', '55557', '2025-12-01', 1, '2025-10-17 10:02:35', 60, '2025-11-29 06:22:38', 0, NULL, 1),
(27221, 'surya narayanan vm', '13', '6383741895', '', 'suryavidin@gmail.com', '2002-08-22', 23, '2', '2', 'murali vs', 'retired', 1.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2510170010', '1', '1', 'upload_files/candidate_tracker/93038435580_SuryaNarayananResume.pdf', NULL, '1', '2025-10-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-10-17 10:04:58', 154, '2025-10-18 09:24:57', 0, NULL, 1),
(27222, '', '0', '9345317469', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510170011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-17 11:28:01', 0, NULL, 0, NULL, 1),
(27223, 'Gollu Devudubabu', '13', '8897750332', '', 'babugollu8742@gmail.com', '2003-06-16', 22, '2', '2', 'Gollu Devudu', 'Farmer', 100000.00, 1, 0.00, 350000.00, 'Andhra Pradesh', 'Chennai, Tamil Nadu', '2510170012', '1', '1', 'upload_files/candidate_tracker/23772143993_DevudubabuResume.pdf', NULL, '1', '2025-10-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-10-17 02:33:05', 1, '2025-10-17 02:39:07', 0, NULL, 1),
(27224, 'arun kumar s', '13', '7639312880', '', 'krrisharunkumar0404@gmail.com', '2001-04-04', 24, '2', '2', 'sundaraiah', 'driver', 20000.00, 1, 0.00, 15000.00, 'tenkasi', 'guduvancherry', '2510170013', '1', '1', 'upload_files/candidate_tracker/17799604644_ARUNKUMARSresume.pdf', NULL, '1', '2025-10-21', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'not done well in aptitude (2/10)', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-10-17 03:11:26', 154, '2025-10-21 01:27:32', 0, NULL, 1),
(27225, 'Esakki Hariharan M', '13', '7539929913', '8663130310', 'esakkihariharanm@gmail.com', '2001-08-04', 24, '2', '2', 'Muthukumarasamy V', 'Shipping company', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2510180001', '1', '1', 'upload_files/candidate_tracker/76658925598_CV2025092316571275.pdf', NULL, '1', '2025-10-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-10-18 02:57:31', 1, '2025-10-18 03:03:43', 0, NULL, 1),
(27226, 'Alin Blessy.p', '6', '9514560237', '', 'blessyalin@gmail.com', '1999-10-07', 26, '2', '2', 'Pugalanthi', 'Ministry', 100000.00, 2, 0.00, 15000.00, 'Kodungaiyur', 'Kodungaiyur', '2510180002', '50', '1', 'upload_files/candidate_tracker/85918922928_AlinResume.pdf', NULL, '1', '2025-10-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-18 03:59:52', 154, '2025-10-18 11:58:07', 0, NULL, 1),
(27227, 'Mohamed Majith M', '13', '9442332116', '', 'majithmohamed30@gmail.com', '2005-04-30', 20, '2', '2', 'Mohamed younus', 'Driver', 15000.00, 2, 0.00, 20000.00, 'Theni', 'Royapettah, Chennai', '2510180003', '1', '1', 'upload_files/candidate_tracker/53357220427_MOHAMEDMAJITHM.pdf', NULL, '1', '2025-10-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2025-10-18 05:39:30', 154, '2025-10-18 11:25:14', 0, NULL, 1),
(27228, '', '0', '6383711883', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510180004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-18 05:57:43', 0, NULL, 0, NULL, 1),
(27229, '', '0', '8610369214', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510180005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-18 03:05:22', 0, NULL, 0, NULL, 1),
(27230, 'mari selvam s', '13', '7200311335', '', 'selvamsmari8@gmail.com', '2004-03-29', 21, '2', '2', 'shunmuga sundharam k', 'shopkeeper', 30000.00, 1, 0.00, 350000.00, 'chennai', 'chennai', '2510200001', '1', '1', 'upload_files/candidate_tracker/66463671373_Webdev.pdf', NULL, '1', '2025-10-21', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'not done well in aptitude (3/10)', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-10-20 04:11:45', 154, '2025-10-21 01:27:57', 0, NULL, 1),
(27231, 'Praveenkumar V', '13', '9344142163', '6374158317', 'praveenkumarv.au@gmail.com', '2003-10-14', 22, '2', '2', 'Venkatesan E', 'Self employed', 15000.00, 1, 0.00, 15000.00, 'tiruvallur', 'tiruvallur', '2510210001', '1', '1', 'upload_files/candidate_tracker/74375235353_CV.pdf', NULL, '1', '2025-10-21', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-10-21 03:46:21', 154, '2025-10-21 03:55:57', 0, NULL, 1),
(27232, 'Santhosh', '4', '9025767458', '', 'santhoshsenthil11043@gmail.com', '2003-04-11', 22, '2', '2', 'Senthil', 'Tailor', 40000.00, 2, 15000.00, 18000.00, 'Kallakurchi', 'Ekkattuthangal', '2510210002', '1', '2', 'upload_files/candidate_tracker/65170219438_SanthoshSResume.pdf', NULL, '1', '2026-01-24', 1, '', '3', '59', '2026-01-27', 204000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in renewal process need to check in training and confirm', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', 'H1017', '', '55566', '5151', '2026-01-27', 1, '2025-10-21 07:16:58', 60, '2026-01-24 07:19:28', 0, NULL, 1),
(27233, 'Vignesh M', '13', '9384415271', '', 'vickymvignesh56@gmail.com', '2003-06-18', 22, '2', '2', 'Sasi', 'Market work', 12000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Chennai anna nagar East', '2510210003', '1', '1', 'upload_files/candidate_tracker/9936337139_vigneshjava.pdf', NULL, '1', '2025-10-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in apptitude (2/10)', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-10-21 09:09:54', 159, '2025-10-27 02:49:17', 0, NULL, 1),
(27234, '', '0', '7094686699', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510210004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-21 09:13:45', 0, NULL, 0, NULL, 1),
(27235, 'GOKULMALLITHASAN', '13', '9790272913', '8220016225', 'gokulsmartym@gmail.com', '2000-04-28', 25, '2', '1', 'S. Mallithasan', 'Weaver', 25000.00, 1, 0.00, 20000.00, '148 Mullipattu road, mgr nagar, saidapet, Arni', 'Guindy, Chennai', '2510210005', '1', '1', 'upload_files/candidate_tracker/37133869594_gokulM.pdf', NULL, '1', '2025-10-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'not cleared aptitude', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-10-21 09:23:48', 154, '2025-10-23 04:40:33', 0, NULL, 1),
(27236, 'Karna m', '13', '6383549896', '', 'murugavelkarna20@gmail.com', '2001-12-20', 23, '2', '2', 'Murugavel', 'Farmer', 300000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Chennai, triplicane', '2510210006', '1', '1', 'upload_files/candidate_tracker/91807207296_KarnaResume.pdf', NULL, '1', '2025-10-22', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-10-21 10:22:22', 154, '2025-10-22 02:33:41', 0, NULL, 1),
(27237, 'Deepak alagarswamy', '13', '9047459467', '6374918828', 'deepakcode04@gmail.com', '2003-11-04', 21, '2', '2', 'Alagarsamy', 'Farmer', 14000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2510210007', '1', '1', 'upload_files/candidate_tracker/53088219174_MyResume.pdf', NULL, '1', '2025-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-10-21 11:41:22', 1, '2025-10-21 11:46:22', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27238, 'R Vaseekaran', '13', '9677145395', '', 'vaseekaranrb@gmail.com', '2001-06-07', 24, '2', '2', 'Rangarajan T', 'Doctor', 50000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2510220001', '1', '1', 'upload_files/candidate_tracker/79120079287_Resume25.pdf', NULL, '1', '2025-10-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Not cleared program test', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-10-22 04:21:06', 154, '2025-10-23 04:40:58', 0, NULL, 1),
(27239, 'SATHISHKUMAR', '6', '8939668327', '', 'Sathishkumar44010@gmail.com', '1995-08-15', 30, '2', '2', 'SELVARAJ', 'CARPENTER', 30000.00, 2, 350000.00, 400000.00, 'Chennai', 'Chennai', '2510220002', '1', '2', 'upload_files/candidate_tracker/84384178635_SATHISHKUMARRESUME20251.pdf', NULL, '1', '2025-10-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-10-22 06:47:18', 154, '2025-10-22 02:33:16', 0, NULL, 1),
(27240, 'vimalraj', '13', '9677859748', '6385801028', 'vimalrajaiah8846@gmail.com', '2002-08-31', 23, '3', '2', 'rajaiah', 'farmer', 12000.00, 1, 0.00, 16000.00, 'theni', 'chennai', '2510220003', '', '1', 'upload_files/candidate_tracker/16458018588_Flutterresume.pdf', NULL, '1', '2025-10-22', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-22 09:16:42', 154, '2025-10-22 04:17:18', 0, NULL, 1),
(27241, 'Sheela Senthilkumar', '4', '9025758806', '', 'sheelarevathi2003@gmail.com', '2003-11-05', 21, '2', '2', 'Revathi', 'Farmer', 85000.00, 2, 0.00, 16000.00, 'Kallakurichi', 'Kallakurichi', '2510220004', '50', '1', 'upload_files/candidate_tracker/31893976653_sheelaresume.pdf', NULL, '3', '2025-10-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', 'she had no clarity about the job role and thinking about salary and work timing so she doesnt want to attend the interview', '', '', '', '', '', '1970-01-01', 1, '2025-10-22 10:20:11', 154, '2025-10-23 03:12:25', 0, NULL, 1),
(27242, 'NAVEENKUMAR MC', '23', '7904751767', '', 'mcnaveenkumar03@gmail.com', '1999-12-03', 25, '2', '2', 'Baby k', 'House wife', 15000.00, 1, 0.00, 20000.00, 'Namakkal', 'Chennai', '2510220005', '1', '1', 'upload_files/candidate_tracker/30521141561_NaveenResume.pdf', NULL, '1', '2025-10-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-10-22 01:42:15', 154, '2025-10-23 04:43:33', 0, NULL, 1),
(27243, '', '0', '8072130751', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510220006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-22 10:42:58', 0, NULL, 0, NULL, 1),
(27244, 'Praveen G', '4', '9677249820', '', 'Praveenkumar242004@gmail.com', '2004-09-24', 21, '5', '2', 'Gunasekaran', 'Nil', 6000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2510230001', '', '1', 'upload_files/candidate_tracker/88119655810_praveenresume2025.pdf', NULL, '1', '2025-10-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-23 04:15:10', 1, '2025-10-23 04:20:42', 0, NULL, 1),
(27245, 'Gopinath p', '13', '6369180843', '', 'gopi17072004@gmail.com', '2004-07-17', 21, '2', '2', 'prabhakaran r', 'farmer', 30000.00, 1, 0.00, 400000.00, 'Theni', 'Theni', '2510230002', '1', '1', 'upload_files/candidate_tracker/2153262177_GopinathP.pdf', NULL, '1', '2025-10-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in program test', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-10-23 04:20:17', 159, '2025-10-29 03:24:13', 0, NULL, 1),
(27246, '3703 4294 2768', '4', '7339390297', '7395967970', 'lachumah3@gmail.com', '2005-07-01', 20, '2', '2', 'S.jothi', 'Export', 100000.00, 1, 0.00, 20000.00, 'Maduravoyal', 'Maduravoyal', '2510230003', '50', '1', 'upload_files/candidate_tracker/65379637241_LAKSHMI1.docx', NULL, '1', '2025-10-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-23 05:27:35', 1, '2025-10-23 05:32:25', 0, NULL, 1),
(27247, 'Amrutha G Y', '6', '8431917125', '', 'amruthagy25@gmail.com', '2002-06-10', 23, '2', '2', 'Shanthamma', 'Homemaker', 35000.00, 1, 300000.00, 400000.00, 'K gollahalli chintamani Chikkaballapur karnataka', 'RS Nivas, dhoddathoguru ECity phase 1 Bengaluru', '2510230004', '1', '2', 'upload_files/candidate_tracker/55282224146_AmruthaSalesExecutive2yearsRasume1.pdf', NULL, '1', '2025-10-24', 0, '', '3', '59', '2025-11-03', 276000.00, '', NULL, '2025-12-31', '2', 'Communication Ok have exp can be trained in our roles based on the manager approval we proceed with the joining', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55555', '5151', '2025-11-03', 1, '2025-10-23 06:08:09', 60, '2025-11-01 03:25:16', 0, NULL, 1),
(27248, 'kamala shree hb', '4', '8015243501', '', 'kamalashree879@gmail.com', '2003-12-27', 21, '5', '2', 'hari baskar m', 'restaurant cashier', 50000.00, 1, 0.00, 17000.00, 'purasaiwalkam chennai', 'purasaiwalkam', '2510230005', '', '1', 'upload_files/candidate_tracker/63194175364_Resume.pdf', NULL, '1', '2025-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-23 07:22:08', 1, '2025-10-23 07:28:26', 0, NULL, 1),
(27249, 'Dhanish k', '13', '7010188281', '', 'dhanishak7010@gmail.com', '2002-06-26', 23, '2', '2', 'Kubendirasamy v', 'Formar', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2510230006', '57', '1', 'upload_files/candidate_tracker/62898190030_FresherjavadeveloperdhanishCv.pdf', NULL, '1', '2025-10-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'not cleared aptitude', '', '', '', '', '', '1970-01-01', 1, '2025-10-23 09:04:17', 154, '2025-10-23 04:41:51', 0, NULL, 1),
(27250, 'Abinash J', '11', '8189975106', '9176191938', 'abinashjaisingh@gmail.com', '2003-12-04', 21, '6', '2', 'A.Jayasingh', 'Sales man', 15000.00, 1, 0.00, 3000.00, 'No 13 chardran st Manali Chennai-68', 'No 13 chardran st Manali Chennai-68', '2510230007', '', '1', 'upload_files/candidate_tracker/3284623138_AbinashJ202510221732530000.pdf', NULL, '1', '2025-10-23', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-10-23 09:04:32', 154, '2025-10-23 04:36:13', 0, NULL, 1),
(27251, 'Mohanraj V', '13', '9788853173', '6369282078', 'mohanraj15v@gmail.com', '2010-10-23', 0, '2', '2', 'Silumbayee', 'Developer', 50000.00, 2, 520000.00, 700000.00, 'Karur', 'Chennai', '2510230008', '1', '2', 'upload_files/candidate_tracker/49938199907_MohanrajV.pdf', NULL, '1', '2025-10-23', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2025-10-23 09:05:29', 154, '2025-10-23 03:04:41', 0, NULL, 1),
(27252, 'Purusothaman srinivasan', '4', '9677414699', '8838260005', 'purushothaman120297@gmail.com', '1997-06-12', 28, '2', '2', 'G.srinivasan', 'Weaver', 20000.00, 1, 201516.00, 250000.00, 'Salem, Tamil Nadu -637502', 'Padi, Chennai', '2510230009', '1', '2', 'upload_files/candidate_tracker/30535896142_PurusothamanNew.pdf', NULL, '1', '2025-10-25', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-10-23 10:16:18', 154, '2025-10-25 11:22:10', 0, NULL, 1),
(27253, 'Kavin P', '13', '9698122261', '9698632164', 'spkavin2000@gmail.com', '2000-12-13', 24, '5', '2', 'Periya Samy', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Tiruppur', 'Tiruppur', '2510230010', '', '1', 'upload_files/candidate_tracker/95697697126_KAVINats1.pdf', NULL, '1', '2025-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-23 11:08:09', 1, '2025-10-24 05:50:59', 0, NULL, 1),
(27254, '562258627577', '23', '6369241809', '9952067567', 'rsanthoshkumar754@gmail.com', '2004-07-01', 0, '2', '2', 'Ravi K', 'UI/UX Designer', 75000.00, 1, 0.00, 2.50, '2/9, perumal Kovil Street, Vandalur, chennai-48', '2/9, perumal Kovil Street, Vandalur, chennai-48', '2510230011', '1', '1', 'upload_files/candidate_tracker/38035558062_SanthoshKumarRUIUXDesignerResume.pdf', NULL, '1', '1970-01-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-10-23 11:30:09', 1, '2025-10-23 11:35:33', 0, NULL, 1),
(27255, 'aswath s a', '13', '7904463165', '', 'aswathkishor1623@gmail.com', '2001-09-16', 24, '2', '2', 'senthilnathan k', 'driver', 60000.00, 1, 0.00, 400000.00, 'nagapattinam', 'Chennai', '2510230012', '1', '1', 'upload_files/candidate_tracker/41749490677_AswathBackendresume.pdf', NULL, '1', '2025-10-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-10-23 11:30:24', 104, '2025-10-25 06:57:21', 0, NULL, 1),
(27256, '', '0', '8525962234', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510230013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-23 11:31:35', 0, NULL, 0, NULL, 1),
(27257, 'Sikkandhar Rajaak S', '13', '7010358099', '9655016941', 'sikkandharrajaak.s@gmail.com', '2004-09-15', 21, '2', '2', 'Sikkandhar A', 'Tailor', 20000.00, 2, 0.00, 2.70, 'Madurai', 'Chennai', '2510230014', '1', '1', 'upload_files/candidate_tracker/65418283788_JavaSoftwareEngineer.pdf', NULL, '1', '2025-10-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (4/10)', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-10-23 01:07:30', 159, '2025-10-29 03:22:02', 0, NULL, 1),
(27258, 'Roshine p', '4', '7200240851', '6380984040', 'roshine005@gmail.com', '2005-10-05', 20, '5', '2', 'Prem Kumar', 'Photographer', 25000.00, 1, 0.00, 18000.00, 'Kodungaiyur', 'Kodungaiyur', '2510230015', '', '1', 'upload_files/candidate_tracker/47224508045_RoshineResume.pdf', NULL, '1', '2025-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-23 01:13:38', 1, '2025-10-23 01:19:35', 0, NULL, 1),
(27259, 'partha sarathi', '23', '8870491273', '', 'sarathirengasamy961@gmail.com', '2002-10-06', 23, '2', '2', 'kalai vani', 'student', 15000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2510230016', '1', '1', 'upload_files/candidate_tracker/2471569401_ParthaSarathiResume.pdf', NULL, '1', '2025-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-10-23 01:31:32', 1, '2025-10-23 01:54:51', 0, NULL, 1),
(27260, 'Priyadharshini.M', '4', '8939856854', '7395958844', 'm.priyadharshini0315@gmail.com', '2004-09-15', 21, '2', '2', 'S.Tamizhselvi', 'Cooking in other house', 84000.00, 1, 0.00, 18000.00, 'No:12 SHANMUGARAYAN st, purasaiwalkkam chennai_7', 'No:12 SHANMUGARAYAN st, purasaiwalkkam chennai_7', '2510240001', '50', '1', 'upload_files/candidate_tracker/66124602343_DocScannerSep92025109PM.pdf', NULL, '1', '2025-10-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-24 04:50:27', 159, '2025-10-25 04:14:23', 0, NULL, 1),
(27261, 'Sudharsan Ganeshan', '13', '7339366709', '', 'gsgsudharsan@gmail.com', '2004-06-01', 21, '5', '2', 'Ganeshan C', 'Textile Salesman', 20000.00, 1, 0.00, 25000.00, 'Tirupattur', 'Perambur', '2510240002', '', '1', 'upload_files/candidate_tracker/37321954618_Sudharsan.GResume1.pdf', NULL, '1', '2025-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-24 05:37:19', 1, '2025-10-24 05:42:35', 0, NULL, 1),
(27262, 'Deepa Rani B', '4', '9150759098', '9042316255', 'deeparaniboopathy2103@gmail.com', '2003-01-20', 22, '2', '2', 'Boopathy', 'Carpenter', 20000.00, 1, 0.00, 20000.00, 'Chinmaya nagar, Chennai', 'Chinmaya nagar, Chennai', '2510240003', '1', '2', 'upload_files/candidate_tracker/87632266091_DeepaRani.pdf', NULL, '1', '2025-10-24', 0, '', '3', '59', '2025-11-03', 192000.00, '', '5', '1970-01-01', '1', 'Communication Ok fresher for our roles have customer support exp in KPN farm fresh need to check in 7 days training', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '7', '', '', 'H1005', '', '55605', '55566', '2025-11-03', 1, '2025-10-24 06:02:34', 60, '2025-11-01 04:44:35', 0, NULL, 1),
(27263, 'Veeramani shanmugam', '4', '9080100718', '', 'veeramani151229@gmail.com', '1998-12-29', 26, '2', '1', 'Anandhi', 'Physiotherapy', 20000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2510240004', '50', '1', 'upload_files/candidate_tracker/37680772171_veeramani.pdf', NULL, '2', '2025-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-24 06:15:19', 1, '2025-10-24 06:17:33', 0, NULL, 1),
(27264, 'Amuthakabilan Rajini', '13', '9486844963', '9444244963', 'kabilanrajini007@gmail.com', '2003-11-16', 21, '2', '2', 'Rajini', 'Driver', 25000.00, 1, 0.00, 25000.00, 'Mettur', 'Vadapalani', '2510240005', '1', '1', 'upload_files/candidate_tracker/96265328562_AK.pdf', NULL, '3', '2025-10-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in apptitude (3/10)', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-10-24 06:51:00', 159, '2025-10-27 02:46:44', 0, NULL, 1),
(27265, 'mourishkumar v', '13', '9789061410', '9840631732', 'mourish.venky8990@gmail.com', '2002-11-21', 22, '2', '2', 'mahalakshmi v', 'fresher', 20000.00, 1, 0.00, 120000.00, 'chennai', 'chennai', '2510240006', '1', '1', 'upload_files/candidate_tracker/4147682925_MourishCV.pdf', NULL, '1', '2025-10-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-10-24 07:00:10', 1, '2025-10-24 07:05:57', 0, NULL, 1),
(27266, 'Kesavan', '13', '7358082522', '', 'kesavanmanimurugan@gmail.com', '2001-09-12', 24, '2', '2', 'Manimurugan', 'Business', 40000.00, 1, 0.00, 3.00, '4/5 thandavaryan street royapettah Chennai', 'Chennai', '2510240007', '1', '1', 'upload_files/candidate_tracker/25674977187_KesavanResume40.pdf', NULL, '1', '2025-10-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in apptitude (5/10)', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-10-24 07:23:46', 159, '2025-10-29 03:29:45', 0, NULL, 1),
(27267, 'Rajakumar S', '23', '8489291711', '', 'rajakumarvisualdesigner@gmail.com', '1998-11-17', 26, '2', '2', 'selvakumar', 'tnstc', 50000.00, 1, 400000.00, 500000.00, 'KUMBAKONAM', 'KUMBAKONAM', '2510240008', '1', '2', 'upload_files/candidate_tracker/86076929579_RajakumarSUIUXDesignercompressed.pdf', NULL, '1', '2025-10-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, 'H1005', '0', '0', '0', NULL, 1, '2025-10-24 10:21:07', 1, '2025-10-24 11:01:47', 0, NULL, 1),
(27268, 'kalai selvam k', '23', '8220462033', '8489173525', 'kalaiselvam2000k@gmail.com', '2000-12-18', 24, '2', '2', 'kannan', 'kooli', 20000.00, 2, 0.00, 200000.00, 'dindigul', 'dindigul', '2510240009', '1', '1', 'upload_files/candidate_tracker/91439279148_kalaiselvamUIUX.pdf', NULL, '1', '2025-10-25', 0, '', '3', '59', '2025-11-17', 145000.00, '', '3', '2025-11-17', '2', 'Slecetd for UI/UX based on the task completion Have exp in React Too based on the manager decision need to proceed further Agreed with the TxxampC cheque will be submitted after 5 months self cheque salary account', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '55605', '55566', '2025-11-17', 1, '2025-10-24 12:14:40', 60, '2025-11-17 12:25:23', 0, NULL, 1),
(27269, 'dhayalan selvaraj', '13', '6374135234', '', 'dhayalanofficials@gmail.com', '2002-09-15', 23, '2', '2', 'selvaraj', 'operator', 18000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2510240010', '1', '1', 'upload_files/candidate_tracker/55771455906_DHAYALANresume.pdf', NULL, '1', '2025-10-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-10-24 01:12:07', 1, '2025-10-24 01:21:38', 0, NULL, 1),
(27270, 'Nellai Rajan', '23', '9840551226', '', 'mnellairajan@gmail.com', '2004-06-23', 21, '2', '2', 'muthusamy', 'office assistant', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2510250001', '1', '1', 'upload_files/candidate_tracker/89014114059_NellaiUpdatedResume.pdf', NULL, '1', '2025-10-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-10-25 04:15:58', 159, '2025-10-25 04:23:57', 0, NULL, 1),
(27271, 'Dhanush kumar N', '13', '7449059634', '7502893070', 'ndhanushkumar2004@gmail.com', '2004-02-22', 21, '5', '2', 'Nagarasan E', 'Farmer', 20000.00, 3, 0.00, 2.50, 'Dindigul', 'Chennai', '2510250002', '', '1', 'upload_files/candidate_tracker/55804349391_DhanushResume1756396436857.pdf', NULL, '1', '2025-10-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude(1/10)', '', '', '', '', '', '1970-01-01', 1, '2025-10-25 05:09:18', 159, '2025-10-25 04:09:21', 0, NULL, 1),
(27272, 'R. Nanthini', '4', '6379343578', '9698948003', 'nansha27@gmail.com', '1999-07-30', 26, '2', '2', 'Ramesh', 'Farmer', 20000.00, 1, 0.00, 18000.00, 'Permbalur', 'Pilaya kovil stree, JJ nagar, Tharamani.', '2510250003', '1', '1', 'upload_files/candidate_tracker/78489190758_R.Nanthini.pdf', NULL, '1', '2025-10-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-10-25 05:13:53', 159, '2025-10-25 04:09:51', 0, NULL, 1),
(27273, '', '0', '6382324289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510250004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-25 05:24:17', 0, NULL, 0, NULL, 1),
(27274, 'sANDHIYA', '6', '9345349005', '7708500154', 'santhiyas0609@gmail.com', '2003-01-09', 22, '2', '2', 'Nagaraj', 'Driver', 30000.00, 1, 23000.00, 25000.00, 'Rajiv Gandhi street, vilangudi, madurai-18', 'Usha ladies hostel,Nungambakkam, chennai', '2510250005', '1', '2', 'upload_files/candidate_tracker/53817220381_CopyofBlueSimpleProfessionalCVResume202508201959160000.pdf', NULL, '1', '2025-10-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-10-25 06:04:49', 159, '2025-10-25 03:55:06', 0, NULL, 1),
(27275, 'Dinesh Kumar', '6', '8248574276', '7397319548', 'Dineshkumar333143@gmail.com', '1996-12-08', 28, '2', '2', 'Sugirtha', 'House wife', 20000.00, 1, 14000.00, 16000.00, 'Chennai', 'Chennai', '2510250006', '1', '2', 'upload_files/candidate_tracker/24361089814_DINESHKUMARKRESUME1.pdf', NULL, '2', '2025-10-25', 0, '', '3', '59', '2025-11-03', 204000.00, '', '3', '2026-02-24', '2', 'Communication Ok seems to average need to check in training and confirm have 2 months exp in Vizza will check and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1070', '5151', '2025-11-03', 1, '2025-10-25 06:50:29', 60, '2025-11-01 04:45:58', 0, NULL, 1),
(27276, '', '0', '9080363216', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510250007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-25 06:53:42', 0, NULL, 0, NULL, 1),
(27277, 'David', '13', '8925728720', '9159578900', 'davidraja4013@gmail.com', '2001-06-25', 24, '5', '2', 'Thomas', 'Farmmer', 30000.00, 7, 300000.00, 600000.00, 'Kalakad , Tirunelveli, Tamilnadu - 62750q', 'Saidepet, chennai, tamilnadu', '2510250008', '', '2', 'upload_files/candidate_tracker/5598769988_DavidRajaResume.pdf', NULL, '1', '2025-10-25', 45, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-10-25 10:22:39', 159, '2025-10-25 06:06:55', 0, NULL, 1),
(27278, 'ashwinth k', '13', '7339053147', '', 'ashwinthkumar003@gmail.com', '2003-12-23', 21, '2', '2', 'kumar r', 'tailor', 6000.00, 2, 0.00, 15000.00, 'cuddalore', 'chennai', '2510250009', '1', '1', 'upload_files/candidate_tracker/51017526344_ASHWINTHK.pdf', NULL, '1', '2025-10-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-10-25 11:33:35', 1, '2025-10-25 12:02:59', 0, NULL, 1),
(27279, 'PRATHAP', '31', '6382120893', '9751603369', 'prathapg1318@gmail.com', '2001-05-13', 24, '2', '2', 'Ganesan', 'Former', 20000.00, 1, 0.00, 25000.00, 'Villupuram', 'Taramani', '2510250010', '1', '1', 'upload_files/candidate_tracker/83274773315_PRATHAPGRes1.pdf', NULL, '1', '2025-10-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in apptitude(4/10)', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-10-25 11:34:29', 159, '2025-10-27 02:46:58', 0, NULL, 1),
(27280, '', '0', '9344127894', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510250011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-25 12:30:09', 0, NULL, 0, NULL, 1),
(27281, 'Tamilselvan A', '23', '8667733129', '', 'tamilbba20@gmail.com', '1997-12-06', 27, '2', '2', 'Agoramoorthy', 'Farmer', 15000.00, 2, 0.00, 22000.00, 'Sirkali', 'Thiruvanmiyur', '2510250012', '1', '1', 'upload_files/candidate_tracker/94976774293_Tamilselvanui.ux.pdf', NULL, '1', '2025-10-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-10-25 12:54:33', 159, '2025-10-27 02:48:15', 0, NULL, 1),
(27282, 'Tamilarasan M', '13', '9087201907', '', 'tamilarasanm676@gmail.com', '2004-08-26', 21, '2', '2', 'murugan', 'daily wages', 100000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2510250013', '1', '1', 'upload_files/candidate_tracker/86951319162_Tamilarasanporfile.pdf', NULL, '1', '2025-10-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-10-25 05:35:52', 1, '2025-10-25 05:44:59', 0, NULL, 1),
(27283, 'Sathish S', '13', '8610700894', '6369683811', 'mrsathish576@gmail.com', '2005-07-16', 20, '2', '2', 'Siva Sankar C', 'Driver', 25000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2510250014', '1', '1', 'upload_files/candidate_tracker/90542826885_SathishResume.pdf', NULL, '1', '2025-10-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-10-25 05:40:07', 1, '2025-10-25 05:45:56', 0, NULL, 1),
(27284, 'Stephan j', '13', '7695960636', '', 'stephan57124@gmail.com', '2003-02-05', 22, '2', '2', 'Jayaprakash p', 'Self employed', 40000.00, 2, 0.00, 22000.00, 'Chennai', 'Chennai', '2510260001', '1', '1', 'upload_files/candidate_tracker/2311142261_8.pdf', NULL, '1', '2025-10-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in apptitude (3/10)', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-10-26 06:33:58', 159, '2025-10-27 02:49:56', 0, NULL, 1),
(27285, 'rohith', '13', '9150320499', '9042206047', 'rohith.d0608@gmail.com', '2001-09-20', 24, '2', '2', 'dhanasekaran', 'building construction', 30000.00, 1, 0.00, 3.00, 'chennai', 'pallikarani', '2510270001', '1', '1', 'upload_files/candidate_tracker/90900959452_DRohithMCA2024734CGPAfrontend.pdf', NULL, '1', '2025-10-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'REJECTED IN APPTITUDE (1/10)', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-10-27 12:53:03', 159, '2025-10-27 02:45:26', 0, NULL, 1),
(27286, 'RACHURI PAVAN KUMAR', '13', '7550189721', '7358489213', 'rachuripavankumar0@gmail.com', '1999-12-22', 25, '2', '2', 'Rachuri Srinivasulu', 'Daily wages worker', 30000.00, 1, 0.00, 30000.00, 'Andhra Pradesh', 'Chennai', '2510270002', '63', '1', 'upload_files/candidate_tracker/95173131401_resumeRV.pdf', NULL, '1', '2025-10-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'rejected in apptitude (4/10)', '', '', '', '', '1970-01-01', 1, '2025-10-27 05:45:28', 159, '2025-10-27 02:50:26', 0, NULL, 1),
(27287, 'M Sherril James Kumar Maria Kumar', '2', '9486907680', '', 'sherriljameskumar@gmail.com', '2003-05-27', 22, '2', '2', 'Maria Kumar', 'Supervisor', 90000.00, 1, 0.00, 25000.00, 'Colachel', 'Egmore', '2510270003', '63', '1', 'upload_files/candidate_tracker/2189649809_Sherrilresumeupdated.pdf', NULL, '1', '2025-10-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'rejected in apptitude (2/10)', '', '', '', '', '1970-01-01', 1, '2025-10-27 05:50:16', 159, '2025-10-27 02:50:44', 0, NULL, 1),
(27288, 'M Dhanush', '13', '8122595789', '', 'mdhanush102004@gmail.com', '2004-03-10', 21, '2', '2', 'Murugesan.T', 'Grocery Sector', 10000.00, 0, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2510270004', '63', '1', 'upload_files/candidate_tracker/47594289247_DhanushResumeFullStackDeveloper.pdf', NULL, '1', '2025-10-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'rejected in apptitude(4/10)', '', '', '', '', '1970-01-01', 1, '2025-10-27 06:23:59', 159, '2025-10-27 02:51:03', 0, NULL, 1),
(27289, 'Thamaraikanan', '31', '9344056748', '', 'kannanthamarai675@gmail.com', '2004-01-25', 21, '2', '2', 'Mahalakshmi', 'Tailor', 30000.00, 1, 0.00, 160000.00, 'Erode', 'Tambaram', '2510270005', '63', '1', 'upload_files/candidate_tracker/6126434606_DocumentfromTHAMARAIKANNAN.pdf', NULL, '1', '2025-10-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', 'rejected in apptitude (1/10)', '', '', '', '', '1970-01-01', 1, '2025-10-27 06:27:22', 159, '2025-10-27 02:51:16', 0, NULL, 1),
(27290, 'Sahil Harish Joshi', '4', '9884167194', '', 'jvarsha462@gmail.com', '2002-06-02', 23, '2', '2', 'Mother name:Varsha harish joshi', 'Jobseeker', 27.00, 0, 18.00, 22.00, 'Periyar nagar 60/61 , thiruvottiyur', 'Thiruvottiyur', '2510270006', '1', '2', 'upload_files/candidate_tracker/17986304063_Cvmaker1761312834804.pdf', NULL, '1', '2025-10-27', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-10-27 06:58:13', 154, '2025-10-27 02:43:57', 0, NULL, 1),
(27291, 'Abinaya s', '6', '7708520817', '6381881750', 'abinaya07102004@gmail.com', '2004-10-07', 21, '1', '2', 'Sendrayan', 'goldsmith', 100000.00, 1, 0.00, 15000.00, '185,sami sandhu m n g street Coimbatore', '185,sami sandhu m n g street Coimbatore', '2510270007', '', '1', 'upload_files/candidate_tracker/3805183919_abi0730.pdf', NULL, '1', '2025-10-27', 0, 'C99184', '3', '59', '2025-11-03', 180000.00, '', '3', '2025-11-04', '2', 'Communication Ok Fresher for our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2025-11-03', 1, '2025-10-27 06:59:26', 60, '2025-11-01 04:47:16', 0, NULL, 1),
(27292, 'SANTHA PRIYA A', '4', '9080901866', '', 'santhapriya02052005@gmail.com', '2005-05-02', 20, '2', '2', 'Arularasu', 'Others', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2510270008', '1', '1', 'upload_files/candidate_tracker/23173972904_downloadresume.pdf', NULL, '1', '2025-10-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-10-27 09:13:25', 159, '2025-10-29 03:33:22', 0, NULL, 1),
(27293, 'vijay prebu', '34', '9384416775', '', 'vijayprebu22@gmail.com', '2001-08-14', 24, '2', '2', 'vijayalayan', 'farmer', 35000.00, 1, 0.00, 20000.00, 'thanjavur', 'chennai', '2510270009', '64', '1', 'upload_files/candidate_tracker/53630563884_Vijaypreburesume.pdf', NULL, '1', '2025-10-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'rejected in program test', '', '', '', '', '1970-01-01', 1, '2025-10-27 09:13:39', 159, '2025-10-27 05:42:41', 0, NULL, 1),
(27294, 'ABDUL KALAM', '13', '7695960527', '8531902297', 'Alkalam456@gmail.com', '2002-02-21', 23, '3', '2', 'Kader basha', 'Farmer', 50000.00, 2, 0.00, 25000.00, 'Kallakurichi', 'Kallakurichi', '2510270010', '', '1', 'upload_files/candidate_tracker/61845150508_ABDULKALAMMERN1.pdf', NULL, '2', '2025-10-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-27 01:54:43', 1, '2025-10-27 02:23:11', 0, NULL, 1),
(27295, 'R.kalai Selvi', '20', '7200472573', '', 'kowsikalai01@gmail.com', '2002-06-15', 23, '2', '2', 'Rajendran', 'Former', 10000.00, 1, 14000.00, 22000.00, 'Chengalpattu', 'Rayapettah', '2510280001', '1', '2', 'upload_files/candidate_tracker/67310928859_kalai.resume.pdf', NULL, '1', '2025-10-28', 31, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-10-28 04:45:12', 159, '2025-10-28 04:42:48', 0, NULL, 1),
(27296, 'Naveen K', '2', '6383555520', '', 'ksnaveen503@gmail.com', '2002-10-10', 23, '2', '2', 'Kumaresan R', 'Furniture shop', 25000.00, 1, 0.00, 20000.00, 'Tiruppur', 'Cholaimedu, Chennai', '2510280002', '63', '1', 'upload_files/candidate_tracker/4307273956_DOC20251013WA0005..pdf', NULL, '1', '2025-10-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in program test', '', '', '', '', '', '1970-01-01', 1, '2025-10-28 05:30:26', 159, '2025-10-28 02:49:25', 0, NULL, 1),
(27297, 'Mohamed irfan', '2', '8678942285', '', 'irfan2003md@gmail.com', '2003-10-14', 22, '2', '2', 'Sahubar sathiq', 'Electronic shop', 15000.00, 2, 0.00, 15000.00, 'Mudukulathur', 'Pudupet', '2510280003', '63', '1', 'upload_files/candidate_tracker/62462640302_irfanresume1.pdf', NULL, '1', '2025-10-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in apptitude(0/10)', '', '', '', '', '', '1970-01-01', 1, '2025-10-28 05:30:38', 159, '2025-10-28 02:50:14', 0, NULL, 1),
(27298, 'NANDINI DESABOYINA', '6', '9989512561', '', 'desaboyinanandini@gmail.com', '2003-07-12', 22, '2', '2', 'D.subbarayuddu&D.Rajamma', 'MBA', 10000.00, 1, 0.00, 20000.00, 'Rajampet', 'BTM', '2510280004', '57', '1', 'upload_files/candidate_tracker/67695114450_NandiniMBAResume.docx', NULL, '1', '2025-10-28', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'DOES NOT KNOW KANNADA AND ENGLISH', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'I1077', '55566', '1970-01-01', 1, '2025-10-28 05:31:25', 162, '2025-10-29 10:03:03', 0, NULL, 1),
(27299, 'Adi Lakshmi', '6', '7702372161', '', 'adhi64479@gmail.com', '2002-11-09', 22, '2', '2', 'A. Nageswara,A.Manemma', 'Student', 10000.00, 1, 0.00, 20000.00, 'Chinna Orampadu, Ap, India', 'Btm 1st stage, Bangalore, Karnataka', '2510280005', '1', '1', 'upload_files/candidate_tracker/86910924007_DOC20251010WA0010.pdf', NULL, '1', '2025-10-28', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'DOES NOT KNOW KANNADA AND ENGLISH', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', 'I1077', '55566', '1970-01-01', 1, '2025-10-28 05:31:54', 162, '2025-10-29 09:57:48', 0, NULL, 1),
(27300, 'vasanth manimaran', '13', '6385355073', '9965653431', 'karuppurvasanth@gmail.com', '2002-12-19', 22, '2', '2', 'amirthavalli m', 'staff nurse', 15000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2510280006', '63', '1', 'upload_files/candidate_tracker/93825177290_VASANTHFINTERN.pdf', NULL, '1', '2025-10-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in apptitude (4/10)', '', '', '', '', '', '1970-01-01', 1, '2025-10-28 05:47:00', 159, '2025-10-28 02:37:56', 0, NULL, 1),
(27301, 'Haribaskar Ramalingam', '13', '8778517714', '', 'haribaskarhari03@gmail.com', '2003-11-13', 21, '2', '2', 'Ramalingam', 'Sales man', 20000.00, 1, 0.00, 15000.00, 'Banavaram', 'Koyambedu', '2510280007', '63', '1', 'upload_files/candidate_tracker/22759448145_Haribaskar.Resume.fresher1.pdf', NULL, '1', '2025-10-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in apptitude (2/10 )', '', '', '', '', '', '1970-01-01', 1, '2025-10-28 05:50:48', 159, '2025-10-28 02:37:05', 0, NULL, 1),
(27302, 'M VIKRAM', '4', '9025803057', '', 'mr.vikramctss2022@gmail.com', '2002-12-24', 22, '2', '2', 'M.malar vizhi', 'Home maker', 15000.00, 0, 0.00, 15000.00, 'Perambur, Mettupalayam', 'Perambur, Mettupalayam', '2510280008', '50', '1', 'upload_files/candidate_tracker/77180938132_VIKRAMMURALIGANESH1.pdf', NULL, '1', '2025-10-31', 0, '', '3', '59', '2025-11-10', 180000.00, '', NULL, '2026-01-02', '1', 'Communication Good Fresher for Telecalling RE profile for Renew can give a try and check in training', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '55605', '55566', '2025-11-10', 1, '2025-10-28 05:51:57', 60, '2025-11-10 09:55:10', 0, NULL, 1),
(27303, 'KALAIVANAN K', '4', '7708305736', '', 'kalaikannan1006@gmail.com', '2004-06-10', 21, '2', '2', 'Kannan p', 'Farmer', 200000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2510280009', '50', '1', 'upload_files/candidate_tracker/65947313331_KALAIVANANK.pdf', NULL, '1', '2025-10-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-28 05:55:30', 159, '2025-10-29 03:50:17', 0, NULL, 1),
(27304, 'ARUNKUMAR MURUGAN', '5', '8056658106', '8525811500', 'arunarun.ak908@gmail.com', '1997-06-09', 28, '5', '1', 'JEYARANJANI', 'GOVERNMENT SECTOR', 45000.00, 1, 17000.00, 25000.00, 'Peraiyur Madurai', 'Peraiyur Madurai', '2510280010', '', '2', 'upload_files/candidate_tracker/89086318660_ArunkumarResumeUpdated.pdf', NULL, '1', '2025-11-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-28 06:10:47', 1, '2025-10-28 06:25:06', 0, NULL, 1),
(27305, 'Sarath G', '2', '9042664495', '9551548148', 'gunasarath2@gmail.com', '2004-04-05', 21, '2', '2', 'Gunasekaran M', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2510280011', '63', '1', 'upload_files/candidate_tracker/29353598297_SARATHGMERNStackDeveloperSaidapetChennaiPhone919042664495Emailgunasarath2gmail.comLink.pdf', NULL, '1', '2025-10-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', 'rejected in apptitude(2/10)', '', '', '', '', '', '1970-01-01', 1, '2025-10-28 06:29:14', 159, '2025-10-28 02:39:47', 0, NULL, 1),
(27306, 'Ranjita Nagaraj Gouda', '6', '6361153307', '', 'goudaranjita277@gmail.com', '2001-05-06', 24, '2', '2', 'Nagaraj Gouda', 'Agriculture', 35000.00, 1, 18500.00, 22000.00, 'Vakkalakoppa sirsi uttara kannada 581358', 'Wilson garden 8th cross Bangalore', '2510280012', '1', '2', 'upload_files/candidate_tracker/56438570326_RanjitaNagarajGouda.pdf', NULL, '1', '2025-11-06', 1, '', '3', '59', '2025-11-10', 240000.00, '', '1', '1970-01-01', '2', 'Communication Ok based on the input from bangalore manager we are proceeding ahead can give a try and check', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1031', '', '55671', '55555', '2025-11-10', 1, '2025-10-28 06:29:30', 60, '2025-11-10 12:38:00', 0, NULL, 1),
(27307, '', '0', '9003730702', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510280013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-28 07:54:13', 0, NULL, 0, NULL, 1),
(27308, '', '0', '9345118689', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510280014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-28 07:56:28', 0, NULL, 0, NULL, 1),
(27309, 'Ramesh', '4', '9361778914', '9790763398', 'rameshdani144@gmail.com', '1998-09-04', 27, '3', '2', 'Chandran', 'Own business', 40000.00, 2, 16200.00, 20000.00, 'Chennai', 'Chennai', '2510280015', '', '2', 'upload_files/candidate_tracker/90330846548_C.RameshBabu4.pdf', NULL, '1', '2025-10-28', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-28 09:36:29', 159, '2025-10-28 05:33:52', 0, NULL, 1),
(27310, '', '0', '8610021921', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510280016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-28 09:53:33', 0, NULL, 0, NULL, 1),
(27311, 'abilash k', '13', '7339436539', '9943271674', 'abilashabi3003@gmail.com', '2004-01-10', 21, '2', '2', '-', '-', 40000.00, 1, 0.00, 400000.00, 'kumbakonam', 'kumbakonam', '2510280017', '1', '1', 'upload_files/candidate_tracker/94079982073_AbilashK11.pdf', NULL, '1', '2025-10-31', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (1/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-10-28 11:47:43', 159, '2025-10-31 12:10:07', 0, NULL, 1),
(27312, '', '0', '8825898696', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510280018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-28 12:07:22', 0, NULL, 0, NULL, 1),
(27313, 'Aswin S', '13', '6379896977', '', 'aswin952003@gmail.com', '2003-05-09', 22, '2', '2', 'Sankar M', 'Clerk', 30000.00, 1, 0.00, 20000.00, '143DrAmbedkarCollegeRoadVyasarpadiChennai-600039', '143DrAmbedkarCollegeRoadVyasarpadiChennai-600039', '2510280019', '1', '1', 'upload_files/candidate_tracker/92287995870_AswinSResume1.pdf', NULL, '3', '2025-10-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in apptitude (2/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-10-28 12:45:03', 159, '2025-10-29 03:30:11', 0, NULL, 1),
(27314, 'Mokanraj', '13', '9384401306', '8220532744', 'mohancodes5@gmail.com', '2005-06-13', 20, '2', '2', 'Kasthuri', 'Private Employee (Srivari Sweets Company)', 30000.00, 1, 0.00, 25000.00, 'Gingee', 'Velachery Chennai', '2510280020', '1', '1', 'upload_files/candidate_tracker/40547945465_MohanRajresumeFullstack.pdf', NULL, '1', '2025-10-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude(4/10)', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-10-28 03:17:56', 159, '2025-10-29 03:19:08', 0, NULL, 1),
(27315, 'Lokesh sankar', '13', '9080838169', '9361140106', 'lokesh200325@gmail.com', '2003-06-25', 22, '2', '2', 'Andal', 'Cooking assistant', 5500.00, 1, 0.00, 15000.00, 'Chengam thiruvannamalai district', 'Guindy', '2510280021', '1', '1', 'upload_files/candidate_tracker/20916644397_LOKESHSRESUME202509201800000000.pdf', NULL, '1', '2025-10-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (4/10)', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-10-28 04:58:35', 159, '2025-10-29 03:20:06', 0, NULL, 1),
(27316, 'Renuka', '4', '8015046408', '', 'Renukarevathi802@gmail.com', '2003-06-11', 22, '2', '2', 'Murugan', 'Work', 20000.00, 1, 26000.00, 30000.00, 'Chennai', 'Chennai', '2510290001', '50', '2', 'upload_files/candidate_tracker/45653325069_CV2025081921332987.pdf', NULL, '1', '2025-10-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-29 04:47:20', 159, '2025-10-29 03:49:34', 0, NULL, 1),
(27317, 'Suriya Prakash. J', '4', '6381080672', '', 'suriyaprakashjsem@gmail.com', '2003-06-01', 22, '2', '2', 'Jothivel', 'Former', 10000.00, 1, 0.00, 200000.00, 'Cuddalore', 'Chennai', '2510290002', '50', '1', 'upload_files/candidate_tracker/46332317813_SuriyaPrakashB1.pdf', NULL, '1', '2025-10-29', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-10-29 04:49:12', 159, '2025-10-29 04:50:34', 0, NULL, 1),
(27318, 'Austin Jose D', '13', '8122354929', '7550273557', 'austinjosedavid@gmail.com', '2002-10-24', 23, '2', '2', 'David Charles', 'Daily wages', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2510290003', '1', '1', 'upload_files/candidate_tracker/59995272157_MyResume.pdf', NULL, '1', '2025-10-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (3/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-10-29 05:15:50', 159, '2025-10-29 03:17:11', 0, NULL, 1),
(27319, 'S.santhosh', '5', '7395895297', '9123505974', 'Paulsanthosh25@gmail.com', '1996-09-16', 29, '2', '1', 'Jothi lakshmi', 'Arts and science', 40000.00, 1, 25000.00, 28000.00, 'Ambattur', 'Ambattur', '2510290004', '1', '2', 'upload_files/candidate_tracker/80750294162_Resume25202604181705290000.pdf', NULL, '3', '2026-04-27', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1028', '', '55656', '55557', '1970-01-01', 1, '2025-10-29 05:34:36', 154, '2026-04-27 03:16:38', 0, NULL, 1),
(27320, 'Vasanthi. J', '4', '6384926114', '', 'vasanthivasanthi5218@gmail.com', '2004-08-10', 21, '3', '2', 'Bakkiya Lakshmi', 'Coolie', 900000.00, 3, 0.00, 16000.00, 'Jeeava Nagar 1st Street Tondiarpet chennai 81', 'Jeeava Nagar 1st Street Tondiarpet chennai 81', '2510290005', '', '1', 'upload_files/candidate_tracker/24670631660_jvasanthiresume.docx', NULL, '1', '2025-10-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-10-29 05:35:13', 159, '2025-10-29 03:36:39', 0, NULL, 1),
(27321, 'Rajasekaran M', '13', '7358173649', '', 'rajamani344322@gmail.com', '2004-10-04', 21, '2', '2', 'Mani K', 'Farmer', 200000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2510290006', '1', '1', 'upload_files/candidate_tracker/78222657698_RajaResumeSoftwareDeveloper.pdf', NULL, '1', '2025-10-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude(4/10)', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-10-29 05:46:16', 159, '2025-10-29 03:18:03', 0, NULL, 1),
(27322, 'A Kailash Boopathi', '11', '9952046552', '', 'adilakshmikailash@gmail.com', '2003-06-03', 22, '2', '2', 'A Mahalakshmi', 'Tailor', 25000.00, 1, 0.00, 450000.00, 'Chennai-17', 'Chennai-17', '2510290007', '1', '1', 'upload_files/candidate_tracker/42364899468_AKailashboopathiresume.pdf', NULL, '1', '2025-10-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-10-29 06:07:18', 159, '2025-10-29 03:46:36', 0, NULL, 1),
(27323, 'Kalaiselvan N', '13', '9944465829', '', 'Kalaidev46@gmail.com', '2003-11-08', 21, '2', '2', 'Natarajan M', 'Farmer', 30000.00, 1, 0.00, 25000.00, 'Tenkasi', 'Ambattur,chennai', '2510290008', '1', '1', 'upload_files/candidate_tracker/2631544980_KALAISELVANNresume.pdf', NULL, '1', '2025-10-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (4/10)', '', 'H1005', '', '', '', '1970-01-01', 1, '2025-10-29 07:30:54', 159, '2025-10-29 03:16:42', 0, NULL, 1),
(27324, 'saravanan', '1', '8248183179', '9841324282', 'saravana8929@gmail.com', '2001-05-10', 24, '2', '2', 'pandiyan', 'shop', 25000.00, 1, 0.00, 15000.00, 'saidapet', 'saidapet', '2510290009', '50', '1', 'upload_files/candidate_tracker/48430838556_Saravana.pdf', NULL, '1', '2025-10-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-29 08:21:52', 1, '2025-10-29 08:26:41', 0, NULL, 1),
(27325, 'Kaviarasan S Subburaman', '2', '8072592816', '9047042857', 'kaviarasanpcs@gmail.com', '2001-10-26', 24, '2', '2', 'subburaman p.c', 'farmer', 10000.00, 1, 0.00, 10000.00, 'Oddanchatram', 'velachery', '2510290010', '1', '1', 'upload_files/candidate_tracker/59228984075_KaviResume1.pdf', NULL, '1', '2025-10-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (3/10)', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-10-29 09:13:34', 159, '2025-10-30 01:24:38', 0, NULL, 1),
(27326, 'ARUN KUMAR', '13', '7338969943', '', 'arunkumar773389@gmail.com', '2003-07-27', 22, '3', '2', 'Srikanth', 'Cable operator', 80000.00, 0, 0.00, 300000.00, 'Tiruttani', 'Kolathur', '2510290011', '', '1', 'upload_files/candidate_tracker/40005246646_Arunkumarresume.pdf', NULL, '1', '2025-10-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'rejected in aptitude(3/10)', '', '', '', '', '', '1970-01-01', 1, '2025-10-29 09:15:22', 159, '2025-10-29 04:47:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27327, 'Prem Kumar M', '31', '7358702353', '9962612837', 'premkumarbbaofficial@gmail.com', '2002-01-07', 23, '2', '2', 'Kavitha M', 'House wife', 15000.00, 2, 0.00, 10000.00, 'Adyar, Chennai', 'Adyar, Chennai', '2510290012', '1', '1', 'upload_files/candidate_tracker/45709598673_PremReactDevresume.pdf', NULL, '1', '2025-10-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (3/10)', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-10-29 09:50:14', 159, '2025-10-30 12:39:07', 0, NULL, 1),
(27328, 'Sanjay S', '6', '9003270829', '9840680021', 'sanjays30102002@gmail.com', '2002-10-30', 23, '2', '2', 'Selvam T', 'Private sector', 30000.00, 0, 16000.00, 16000.00, 'Pattabiram', 'Pattabiram', '2510300001', '50', '2', 'upload_files/candidate_tracker/64466767844_resumepdf.pdf', NULL, '2', '2025-11-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-10-30 04:27:50', 159, '2025-11-01 01:31:53', 0, NULL, 1),
(27329, 'AKASH', '6', '6383009619', '', 'akash281299@gmail.com', '1999-12-28', 25, '2', '2', 'VASANTHI', 'House wife', 20000.00, 1, 0.00, 25000.00, 'Ponneri', 'Ponneri', '2510300002', '1', '2', 'upload_files/candidate_tracker/38682710657_AkashCVUpdated.pdf', NULL, '1', '2025-10-30', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '1970-01-01', 1, '2025-10-30 05:59:10', 159, '2025-10-30 03:48:18', 0, NULL, 1),
(27330, 'Murugesh Mariappan', '13', '6380168014', '7708511633', 'murugeshrohit45@gmail.com', '2003-07-17', 22, '2', '2', 'Mariyappan', 'Daily wages', 20000.00, 1, 0.00, 15000.00, 'Shengottai', 'Chennai', '2510300003', '1', '1', 'upload_files/candidate_tracker/805406523_Murugeshcv2.pdf', NULL, '1', '2025-11-01', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude(2.5/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-10-30 12:03:04', 159, '2025-11-01 12:28:36', 0, NULL, 1),
(27331, '', '0', '9486258730', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2510300004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-10-30 12:50:19', 0, NULL, 0, NULL, 1),
(27332, 'A. KALANITHIMARAN', '13', '7397529556', '9626397813', 'akalanithimaran@gmail.com', '2005-05-31', 20, '2', '2', 'Anandhan', 'Driver', 20000.00, 1, 0.00, 20000.00, 'Thirukovilur, Kallakurich, Tamil Nadu -605766', 'Thiruvanmiyur, Chennai', '2510300005', '1', '1', 'upload_files/candidate_tracker/47393616283_Kalanithimaran.pdf', NULL, '1', '2025-11-01', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (3/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-10-30 01:32:55', 159, '2025-11-12 01:31:58', 0, NULL, 1),
(27333, 'karthikeyan', '20', '8838013633', '9789069026', 'karthikeyan0538@gmail.com', '2003-11-29', 21, '2', '2', 'krishnamurthy', 'vir', 15000.00, 1, 0.00, 16000.00, 'chenni', 'chennai', '2510300006', '50', '1', 'upload_files/candidate_tracker/54073453903_K.Karthikeyanresume.pdf', NULL, '1', '2025-11-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-30 04:33:21', 1, '2025-11-01 08:05:25', 0, NULL, 1),
(27334, 'GokulaKrishnan M', '13', '8973141991', '9363500663', 'gokulakrishnan1918@gmail.com', '2003-01-19', 22, '2', '2', 'Mahendran S', 'Driver', 25000.00, 1, 0.00, 10000.00, 'Udayarpalayam, Ariyalur District,Tamil Nadu', 'Porur, Chennai', '2510310001', '1', '1', 'upload_files/candidate_tracker/44416785382_GokulaKrishnanMweb.pdf', NULL, '1', '2025-10-31', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (2/10)', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-10-31 05:30:47', 159, '2025-10-31 12:10:52', 0, NULL, 1),
(27335, '230665196982', '6', '7899825269', '6364595739', 'kandraprashanth827@gmail.com', '2004-11-30', 20, '3', '2', 'THIMMA REDDY', 'AGRICULTURIST', 2200.00, 0, 0.00, 20000.00, 'CHIKKA HALLI,PAVAGADA, TUMKUR, KARNATAKA,561202', 'BTM LAYOUT', '2510310002', '', '1', 'upload_files/candidate_tracker/845055878_Prashanthcv.pdf', NULL, '1', '2025-10-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-31 05:37:12', 1, '2025-10-31 05:46:00', 0, NULL, 1),
(27336, 'MAHALAKSHMI k', '13', '9342271529', '9095652371', 'mahalakshmik1706@gmail.com', '2000-06-17', 25, '3', '2', 'Kolanjinathan', 'Weaver', 6000.00, 1, 0.00, 15000.00, 'Ariyalur', 'Chennai', '2510310003', '', '1', 'upload_files/candidate_tracker/54758122732_mahaa.pdf', NULL, '1', '2025-10-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-31 05:56:57', 1, '2025-10-31 06:11:04', 0, NULL, 1),
(27337, 'Sakthivel T', '13', '8220205212', '', 'stsakthivel2000@gmail.com', '2000-04-16', 25, '6', '2', 'Thangarasu P', 'farmer', 10000.00, 1, 0.00, 120000.00, 'Vriddhachalam', 'Vriddhachalam', '2510310004', '', '1', 'upload_files/candidate_tracker/93433206819_SakthivelResume2025.pdf', NULL, '1', '2025-10-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-31 08:32:26', 1, '2025-10-31 08:41:44', 0, NULL, 1),
(27338, '851942882554', '4', '9121221516', '6309542136', 'rajanin2002@gmail.com', '2002-12-21', 22, '2', '2', 'Lakshmi Ranghaaie', 'Telecaller', 2.30, 2, 19.00, 25.00, 'Anantapur', 'Bengaluru', '2510310005', '1', '2', 'upload_files/candidate_tracker/93411512329_Rajani.N.Resume.pdf', NULL, '3', '2025-10-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1031', '0', '0', '0', NULL, 1, '2025-10-31 08:33:47', 1, '2025-10-31 08:39:14', 0, NULL, 1),
(27339, 'Kavi Shree', '4', '8056075855', '9962008169', 'jkavishree@gmail.com', '2004-04-24', 21, '2', '2', 'Jai', 'Mrf', 400000.00, 1, 22000.00, 25000.00, 'No.1A/1st Ramanathapuram wimco nagar chennai', 'Wimco nagar', '2510310006', '50', '2', 'upload_files/candidate_tracker/94098444917_ResumeKavishreeresumepdfFormat7.pdf', NULL, '3', '2025-11-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-31 10:54:58', 1, '2025-10-31 11:02:58', 0, NULL, 1),
(27340, '788291115566', '4', '9840914542', '7448775673', 'keethanakeethana382@gmail.com', '2003-09-09', 22, '2', '2', 'Renuga S', 'Cooli', 15000.00, 2, 0.00, 20000.00, 'Chennai Royapuram', 'Chennai Royapuram', '2510310007', '50', '2', 'upload_files/candidate_tracker/45568580477_S.KEERTHANARESUME.docx', NULL, '1', '2025-11-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-10-31 11:49:34', 1, '2025-10-31 12:14:04', 0, NULL, 1),
(27341, 'Vignesh K', '13', '9080231521', '', 'vignesh20e2655@gmail.com', '2003-04-08', 22, '2', '1', 'Kannan', 'Plumber', 28000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2510310008', '1', '1', 'upload_files/candidate_tracker/45876753774_Rres.pdf', NULL, '1', '2025-11-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'not qualified in programming', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-10-31 12:37:52', 154, '2025-11-03 04:08:51', 0, NULL, 1),
(27342, 'Dhiwakar JJE', '23', '9080715950', '9841905153', 'dhivakardhiva6029@gmail.com', '2002-12-11', 22, '2', '2', 'Easter raj', 'Fitter', 45000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2510310009', '1', '1', 'upload_files/candidate_tracker/21144392569_DhivakarJJEresume20021211JE1.pdf', NULL, '1', '2025-11-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-10-31 01:30:46', 1, '2025-11-01 04:31:52', 0, NULL, 1),
(27343, 'Bala Moorthy.S', '13', '7868089169', '', 'balamoorthy0478@gmail.com', '2002-12-27', 22, '3', '2', 'Beula S', 'Farmer', 65000.00, 3, 0.00, 280000.00, 'Tirunelveli', 'Chennai', '2510310010', '', '1', 'upload_files/candidate_tracker/63709152808_Moorthyycv.pdf', NULL, '2', '2025-11-01', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude(3/10)', '', '', '', '', '', '1970-01-01', 1, '2025-10-31 04:50:17', 159, '2025-11-01 01:23:58', 0, NULL, 1),
(27344, 'deepika', '4', '8637624544', '', 'deepikavenkat55@gmail.com', '2002-11-20', 22, '2', '2', 'venkatesan', 'driver', 30000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2511010001', '50', '2', 'upload_files/candidate_tracker/34096200698_Deepikaresume.pdf', NULL, '1', '2025-11-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-01 10:32:34', 1, '2025-11-01 12:03:10', 0, NULL, 1),
(27345, 'Praveen kumar s', '13', '9159740403', '', 'veenappu13s@gmail.com', '2004-07-19', 21, '2', '2', 'Sakthivel / Jayakodi', 'Driver / housewife', 13000.00, 2, 0.00, 20000.00, 'Ariyalur', 'Sriperumbudur', '2511010002', '1', '1', 'upload_files/candidate_tracker/30281897885_PraveenSResume.pdf', NULL, '1', '2025-11-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-11-01 11:46:54', 1, '2025-11-01 12:02:25', 0, NULL, 1),
(27346, '', '0', '8190092030', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511010003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-01 01:09:00', 0, NULL, 0, NULL, 1),
(27347, 'Mohamed thowfik A', '13', '9677692160', '', 'mohamedthowfik2002@gmail.com', '2002-10-25', 23, '2', '2', 'Ajmeer ali', 'Business', 15000.00, 1, 0.00, 200000.00, 'Madurai', 'Chennai', '2511010004', '1', '1', 'upload_files/candidate_tracker/23299641706_Resume.pdf', NULL, '1', '2025-11-03', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'not qualified in aptitude', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-11-01 01:10:20', 104, '2025-11-03 06:54:59', 0, NULL, 1),
(27348, 'Nandhagopal V', '13', '9360557172', '', 'vnandhagopal31@gmail.com', '2002-03-28', 23, '2', '2', 'Velmurugan V', 'VAO', 60000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2511010005', '1', '1', 'upload_files/candidate_tracker/88099381862_NANDHAGOPALVCVFULLSTACK.docx', NULL, '1', '2025-11-03', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'not qualified in aptitude', 'H1017', '', '', '', '1970-01-01', 1, '2025-11-01 01:13:35', 104, '2025-11-03 06:55:16', 0, NULL, 1),
(27349, 'Pragatheeswaran S', '13', '8610625291', '', 'Pragatheeswaran0307@gmail.com', '2004-07-03', 21, '2', '2', 'Vanitha S', 'Shop keeper', 75000.00, 1, 0.00, 200000.00, 'Ramanathapuram', 'Chennai', '2511010006', '1', '1', 'upload_files/candidate_tracker/12993113536_Pragatheeswaran.pdf', NULL, '1', '2025-11-03', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', 'not qualified in aptitude', 'H1017', '', '', '', '1970-01-01', 1, '2025-11-01 01:18:50', 104, '2025-11-03 06:55:27', 0, NULL, 1),
(27350, 'Rahul', '13', '7548823769', '7667541203', 'rahulrameshr0@gmail.com', '2003-06-13', 22, '2', '2', 'K ramesh', 'Electrition', 20000.00, 1, 0.00, 2.50, 'Chennai, Tamil Nadu', 'Chennai, Tamil Nadu', '2511010007', '1', '1', 'upload_files/candidate_tracker/47520337776_RAHULPYTHONFULLSTACKBCA2024.pdf', NULL, '1', '2025-11-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (1/10)', '', 'H1028', '', '', '', '1970-01-01', 1, '2025-11-01 03:15:32', 159, '2025-11-04 02:49:51', 0, NULL, 1),
(27351, 'Mohammed Khalidh S', '13', '7305299533', '', 'smohammedkhalidh@gmail.com', '2005-04-15', 20, '2', '2', 'M sirajudeen', 'Electrician', 20000.00, 1, 0.00, 300000.00, 'Choolaimedu chennai 94', 'Choolaimedu chennai 94', '2511030001', '1', '1', 'upload_files/candidate_tracker/49880675591_MohammedKhalidhSdocx.pdf', NULL, '1', '2025-11-03', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', 'Not Qualified in apptitude', 'H1017', '', '', '', '1970-01-01', 1, '2025-11-03 05:16:49', 104, '2025-11-03 06:55:47', 0, NULL, 1),
(27352, 'Tamilselvan M', '4', '7305618587', '9962249325', 'mtamilselvan535@gmail.com', '2003-01-09', 22, '2', '2', 'Murugan M', 'Plumber', 15000.00, 1, 15000.00, 18000.00, 'New Perungalathur Chennai', 'New Perungalathur Chennai', '2511030002', '1', '2', 'upload_files/candidate_tracker/77371037501_TamilSelvanNewPDF.pdf', NULL, '1', '2025-11-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-11-03 05:52:12', 154, '2025-11-03 04:27:40', 0, NULL, 1),
(27353, 'Jeevardhan', '6', '8870223384', '8248187745', 'josephjeeva542@gmail.com', '1995-07-24', 30, '2', '1', 'R Selvam', 'Business man (hotel)', 40000.00, 1, 20000.00, 30000.00, 'Panruti', 'Panruti', '2511030003', '57', '2', 'upload_files/candidate_tracker/80066071928_JeevardhanUpdatedCV.pdf', NULL, '1', '2025-11-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-11-03 06:45:07', 154, '2025-11-03 04:27:00', 0, NULL, 1),
(27354, 'Kantharivel G', '13', '9994353200', '8110080220', 'kantharivel3@gmail.com', '2003-06-24', 22, '2', '2', 'Gopal', 'Car Driver', 170000.00, 1, 0.00, 23000.00, 'Thiruvannamalai', 'Chromepet', '2511040001', '1', '1', 'upload_files/candidate_tracker/68467669531_KantharivelResume2.pdf', NULL, '1', '2025-11-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (2/10)', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-11-04 04:08:42', 159, '2025-11-04 02:38:16', 0, NULL, 1),
(27355, '328926482076', '4', '9042218046', '', 'Kjayashree53@gmail.com', '2005-04-03', 20, '2', '2', 'Parents', 'Marketing', 100000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2511040002', '50', '1', 'upload_files/candidate_tracker/6796087905_MinimalistModernProfessionalCVResume202510131407000000.pdf', NULL, '3', '2025-11-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-04 05:08:39', 1, '2025-11-04 05:14:54', 0, NULL, 1),
(27356, 'SUGUMARAN S', '2', '7708336820', '', 'sugumaransenthil760@gmail.com', '2002-04-03', 23, '2', '2', 'SENTHILKUMAR S', 'Farmer', 10000.00, 1, 0.00, 450000.00, 'Okkapatty, Melur, Madurai', 'Vandikaran Road, Nehru Nagar, Velachery, CHENNAI', '2511040003', '1', '1', 'upload_files/candidate_tracker/50503825486_SSUGUMARAN1.pdf', NULL, '1', '2025-11-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (1/10)', '', 'H1005', '', '', '', '1970-01-01', 1, '2025-11-04 06:05:01', 159, '2025-11-04 02:53:42', 0, NULL, 1),
(27357, 'Barath s', '13', '9363246642', '9786145880', 'sbarath2904@gmail.com', '2004-09-29', 21, '3', '2', 'M. Settu', 'Labour', 36000.00, 1, 0.00, 30000.00, 'Thiruvannamalai', 'Crombet', '2511040004', '', '1', 'upload_files/candidate_tracker/1703426710_BARATHResume.pdf', NULL, '1', '2025-11-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (1/10)', '', '', '', '', '', '1970-01-01', 1, '2025-11-04 07:07:36', 159, '2025-11-04 02:53:21', 0, NULL, 1),
(27358, 'Prabhakaran D', '13', '8667250049', '6383011614', 'prabhakaran.skp2901@gmail.com', '2003-01-29', 22, '3', '2', 'Anjala. d', 'House wife', 30000.00, 1, 0.00, 25000.00, 'Tiruvannamalai', 'Chormpet', '2511040005', '', '1', 'upload_files/candidate_tracker/21483551293_prabhakaranResume.docx', NULL, '1', '2025-11-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (1/10)', '', '', '', '', '', '1970-01-01', 1, '2025-11-04 07:20:35', 159, '2025-11-04 02:37:40', 0, NULL, 1),
(27359, 'Srimathi S', '4', '8300557710', '9442461262', 'Sm6257242@gmail.com', '2003-06-18', 22, '5', '2', 'S.Sivasubramanian ,s.nalina', 'Retired employee', 20000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Karaikudi', '2511040006', '', '1', 'upload_files/candidate_tracker/32063944658_SRIMATHI.SResume1.pdf', NULL, '1', '2025-11-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-04 08:03:22', 1, '2025-11-04 01:52:30', 0, NULL, 1),
(27360, 'Thameem akif salam t s', '4', '7092803545', '8939845856', 'thameemakif0417@gmail.com', '2000-04-17', 25, '2', '2', 'Sadhik ali', 'Mechanic', 18000.00, 2, 15000.00, 23000.00, 'Teynampet', 'Teynampet', '2511040007', '1', '2', 'upload_files/candidate_tracker/36162195018_ThameemAkifSalamCV2.pdf', NULL, '1', '2025-11-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-11-04 10:53:12', 159, '2025-11-05 03:31:56', 0, NULL, 1),
(27361, 'Keerthana . C', '4', '8189916619', '', 'Keesekar22@gmail.com', '1998-07-22', 27, '2', '2', 'Chandra sekar', 'Textile representative', 50000.00, 2, 15000.00, 23000.00, 'Purasaiwakkam', 'Purasaiwakka', '2511040008', '1', '2', 'upload_files/candidate_tracker/64188386116_kittu.pdf', NULL, '1', '2025-11-05', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-11-04 11:08:47', 159, '2025-11-05 03:32:46', 0, NULL, 1),
(27362, '', '0', '9080625067', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511040009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-04 12:44:58', 0, NULL, 0, NULL, 1),
(27363, 'BoopathiRaja P', '31', '7306166653', '', 'poopathi0112@gmail.com', '2001-12-01', 23, '2', '2', 'Panneer Selvam', 'Coolie', 120000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai, Velachery', '2511040010', '1', '1', 'upload_files/candidate_tracker/4242470996_BoopathiRajaPFrontendDeveloper2025.pdf', NULL, '1', '2025-11-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude(4/10)', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-11-04 01:09:30', 159, '2025-11-05 11:24:15', 0, NULL, 1),
(27364, 'naveen p', '13', '9344337287', '', 'naveen.dpsn300@gmail.com', '2004-06-05', 21, '5', '2', 'periyasamy m', 'self employee', 20000.00, 1, 0.00, 200000.00, 'chennai', 'chennai', '2511040011', '', '1', 'upload_files/candidate_tracker/15123427070_NaveenP.pdf', NULL, '1', '2025-11-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'not ok with terms and conditions. (selected in system task)', '', '', '', '', '', '1970-01-01', 1, '2025-11-04 02:31:50', 159, '2025-11-27 09:57:09', 0, NULL, 1),
(27365, 'Dharani.D', '6', '7305671774', '8056209073', 'd02496281@gmail.com', '2003-05-25', 22, '2', '2', 'Dhachana moorthy', 'Painters', 22000.00, 1, 15000.00, 20000.00, 'No.5/ganthi selai, Old Pallavaram, chennai -117', 'No.5/ganthi selai, Old Pallavaram, chennai -117', '2511050001', '1', '2', 'upload_files/candidate_tracker/50294267076_DHARANID.pdf', NULL, '1', '2025-11-05', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, communication good, Convincing xxamp Product Skill good, Check once distance too long, pls confirm the joining date xxamp Salary( Sathya Team)', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-11-05 05:38:16', 154, '2025-11-05 02:43:38', 0, NULL, 1),
(27366, 'Dhanalakshmi G', '6', '7305619397', '', 'dhanamd662@gmail.com', '2003-12-24', 21, '2', '2', 'Ganesan', 'Iron man', 20000.00, 1, 15000.00, 20000.00, 'Tambaram', 'Tambaram', '2511050002', '1', '2', 'upload_files/candidate_tracker/65930251304_DhanalakshmiResume.pdf.pdf', NULL, '1', '2025-11-05', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, communication Average, check distance long, confirm the joining date xxamp salary, Self team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-11-05 05:38:26', 159, '2025-11-05 03:53:31', 0, NULL, 1),
(27367, 'Vasanth S', '13', '8939816997', '9962362537', 'vasa12346t@gmail.com', '2004-12-24', 20, '2', '2', 'Mahalakshmi', 'Private job', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2511050003', '1', '1', 'upload_files/candidate_tracker/19765941860_VASANTHRESUME.pdf', NULL, '1', '2025-11-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (2.5/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-05 06:07:52', 159, '2025-11-05 12:43:02', 0, NULL, 1),
(27368, 'Divya k', '6', '9941517077', '9941426330', 'divyakotti05@gmail.com', '2005-02-11', 20, '2', '2', 'Lalitha', 'Housewife', 100000.00, 1, 0.00, 15000.00, 'West saidapet', 'West saidapet', '2511050004', '1', '1', 'upload_files/candidate_tracker/61568427202_DivyaResumeFinal.pdf', NULL, '1', '2025-11-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-11-05 06:43:38', 159, '2025-11-05 03:55:40', 0, NULL, 1),
(27369, 'lokesh i', '13', '8667367720', '', 'lok493770@gmail.com', '2004-01-03', 21, '2', '2', 'iyyappan g', 'tailor', 20000.00, 1, 10100.00, 20000.00, 'chidambaram', 'chidambaram', '2511050005', '1', '2', 'upload_files/candidate_tracker/44230091998_LokeshFullStack.pdf', NULL, '1', '2025-11-07', 30, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-05 07:09:10', 154, '2025-11-07 12:11:49', 0, NULL, 1),
(27370, 'Syed Abdul Khaliq A', '13', '9384654344', '', 'mailtokhaliq2004@gmail.com', '2004-03-23', 21, '2', '2', 'syed abdul kader m', 'sales staff', 30000.00, 1, 0.00, 2.00, 'Chennai', 'Chennai', '2511050006', '1', '1', 'upload_files/candidate_tracker/71749613377_Syedresume.pdf', NULL, '1', '2025-11-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude(2/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-05 08:02:51', 159, '2025-11-06 12:28:32', 0, NULL, 1),
(27371, 'Abdullah', '13', '9025080593', '', 'abdwppr@gmail.com', '2004-03-28', 21, '5', '2', 'Niyas beevi (Mother)', 'Housewife', 30000.00, 3, 0.00, 2.50, 'Tirunelveli', 'Chennai', '2511050007', '', '1', 'upload_files/candidate_tracker/11462627614_Resume.pdf', NULL, '1', '2025-11-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-05 08:43:45', 1, '2025-11-05 09:00:12', 0, NULL, 1),
(27372, 'B. Gowtham', '13', '9025748213', '', 'gwth2004@gmail.com', '2004-07-18', 21, '2', '2', 'D. Bakkiyaraj', 'Farmer', 25000.00, 1, 0.00, 2.50, 'Tiruvannamalai', 'Chennai', '2511050008', '1', '1', 'upload_files/candidate_tracker/97987067242_B.Gowtham.pdf', NULL, '1', '2025-11-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'rejected in aptitude(4/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-05 08:55:57', 159, '2025-11-05 03:53:17', 0, NULL, 1),
(27373, 'ELANGO M', '13', '6374460166', '', '55elango66@gmail.com', '2004-01-03', 21, '5', '2', 'MANIKANDAN P', 'DAILY WAGES', 25000.00, 0, 0.00, 2.00, 'Chennai', 'Chennai', '2511050009', '', '1', 'upload_files/candidate_tracker/39876155356_ElangoMRESUME2.pdf', NULL, '1', '2025-11-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-05 08:57:51', 1, '2025-11-05 09:02:23', 0, NULL, 1),
(27374, 'Aravind Raj', '2', '9884340826', '6382981930', 'aravindmary03@gmail.com', '2002-03-30', 23, '3', '2', 'Arul dass', 'Former', 15000.00, 5, 350000.00, 450000.00, 'Chennai', 'Chennai', '2511050010', '', '2', 'upload_files/candidate_tracker/61331978579_AravindrajAruldassOct1.pdf', NULL, '1', '2025-11-05', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-05 09:44:30', 1, '2025-11-05 09:47:07', 0, NULL, 1),
(27375, 'Arunkumar J', '13', '8122512808', '', 'hiphoparun2019@gmail.com', '2004-06-25', 21, '2', '2', 'Jayavel V', 'Weaver', 10000.00, 1, 0.00, 300000.00, 'Kalambur', 'Chennai', '2511050011', '1', '1', 'upload_files/candidate_tracker/55096173959_ArunCV.pdf', NULL, '1', '2025-11-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude(4/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-05 10:43:18', 159, '2025-11-06 10:38:26', 0, NULL, 1),
(27376, 'Vidhya.N', '6', '7904003084', '', 'reddyvidhya512@gmail.com', '2005-04-12', 20, '2', '2', 'Nagi reddy (father)', 'B.com', 40000.00, 2, 0.00, 18000.00, 'Bengaluru', 'Bengaluru', '2511050012', '1', '1', 'upload_files/candidate_tracker/21009265457_Document251.pdf', NULL, '1', '2025-11-06', 0, '', '3', '59', '2025-11-10', 204000.00, '', '4', '2026-04-29', '2', 'Communication Ok fresher for our roles need to check in training and confirm', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '2025-11-10', 1, '2025-11-05 01:17:12', 60, '2025-11-10 12:39:30', 0, NULL, 1),
(27377, 'Deepashree.R', '6', '9789451960', '', 'deepashree7425@gmail.com', '2005-04-20', 20, '2', '2', 'Ramesh', 'Farmer', 40000.00, 1, 0.00, 18000.00, 'Tamilnadu', 'Bangalore', '2511050013', '1', '1', 'upload_files/candidate_tracker/47132378614_DIASRESUME.pdf', NULL, '1', '2025-11-06', 0, '', '3', '59', '2025-11-17', 204000.00, '', '3', '2025-11-22', '2', 'Communication Ok fresher for our insurance sales can check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '2025-11-17', 1, '2025-11-05 04:42:13', 60, '2025-11-15 07:01:15', 0, NULL, 1),
(27378, 'atchaYa Devi A', '22', '9080340236', '9080340237', 'atchayapandian52@gmail.com', '2004-04-22', 21, '2', '2', 'ARUMUGA PANDIAN', 'Shop', 60000.00, 4, 0.00, 20000.00, 'Tuticorin', 'Tuticorin', '2511060001', '1', '1', 'upload_files/candidate_tracker/68083409475_DOC20250629WA0013.202511032050330000.pdf', NULL, '1', '2025-11-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '4', '6', '', '2', '1970-01-01', '1', '2', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-11-06 04:35:47', 154, '2025-11-06 03:11:56', 0, NULL, 1),
(27379, 'R. Moses albert raj', '6', '8939679756', '9789992179', 'mosesalbe30@gmail.com', '2001-05-30', 24, '2', '2', 'Mariyal', 'Flipkart', 20000.00, 1, 0.00, 20000.00, '8888, k v n puram first Street virudhunagar', 'No 1 ponniamman Kovil Street pursawalkam', '2511060002', '1', '1', 'upload_files/candidate_tracker/30480095137_RESUMEMosesorg.pdf', NULL, '1', '2025-11-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-11-06 06:40:51', 154, '2025-11-06 03:11:21', 0, NULL, 1),
(27380, 'Divyashree k', '6', '7204219443', '8197929334', 'divyadeepa1910@gmail.com', '2001-04-10', 24, '3', '2', 'Sumathi.k', '2nd puc', 35000.00, 1, 0.00, 25000.00, 'Ulsoor', 'Ulsoor', '2511060003', '', '1', 'upload_files/candidate_tracker/5704756887_Resume2.pdf', NULL, '1', '2025-11-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-06 07:49:07', 1, '2025-11-06 08:03:08', 0, NULL, 1),
(27381, 'vignesh b', '6', '6379307775', '7395956654', 'vigneshbaskarr03@gmail.com', '2002-03-21', 23, '2', '2', 'baskar k', 'diver', 35000.00, 0, 0.00, 20000.00, 'sholinghur', 'chennai', '2511060004', '50', '1', 'upload_files/candidate_tracker/23723676110_VigneshResume.pdf', NULL, '1', '2025-11-10', 0, '', '3', '59', '2025-11-14', 192000.00, '', '3', '2025-11-27', '2', 'Communication Ok Fresher need to train and check in the training process let us consider ifor training and cehck', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '2025-11-14', 1, '2025-11-06 08:18:42', 60, '2025-11-14 10:07:32', 0, NULL, 1),
(27382, 'Swetha j', '6', '9952901713', '8608597975', 'swethamery2005@gmail.com', '2005-03-06', 20, '2', '2', 'Parents', 'Driver', 16000.00, 1, 0.00, 18000.00, 'Chennai -600019', 'Chennai -600019', '2511060005', '1', '1', 'upload_files/candidate_tracker/75348232495_swetharesume.pdf', NULL, '1', '2025-11-07', 0, '', '3', '59', '2025-11-10', 180000.00, '', '1', '1970-01-01', '2', 'Based on the interview from HR Team Sridhar and the Manager syed update we have processed the profile for Deshwaran Team let us check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55732', '5151', '2025-11-10', 1, '2025-11-06 01:22:59', 60, '2025-11-10 09:51:55', 0, NULL, 1),
(27383, 'E. Sasir rekha', '4', '8248019711', '9566861266', 'kavithabommi2004@gmail.com', '2010-11-06', 0, '2', '2', '7358885820', 'Former', 10000.00, 1, 0.00, 16000.00, 'Pattukkottai', 'Kon palayam', '2511060006', '1', '1', 'upload_files/candidate_tracker/28533498027_sasiresume.pdf', NULL, '1', '2025-11-07', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-06 01:43:59', 154, '2025-11-07 02:47:34', 0, NULL, 1),
(27384, 'Rajeshwari M', '4', '8870346300', '7904825578', 'rajeshwarimano32@gmail.com', '2003-09-11', 22, '2', '2', 'Ananthi M', 'House wife', 25000.00, 1, 15000.00, 16000.00, 'East Street, Painganadu,Mannargudi', 'painganadu, Mannargudi', '2511060007', '1', '2', 'upload_files/candidate_tracker/93492776710_RajeshwariResume.pdf', NULL, '1', '2025-11-07', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is ok with the profile completed bsc computer science,,,,father passed away...elder sister work in salem IT...25k salary in relative house ...she is in mannargudi...worked in finance company for gold loan....with 15k salary and releived due to mother health issue.....have laptop imeediate joining......need to cross check cleary for travel only thanjavur to mannargudi have bus facility frequently...but mannargudi to home 10km have no frequent bus...thats the issue in night time..but she is ok with that but our side need to cross check...and she is the only care taker for mother', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-06 01:49:07', 154, '2025-11-07 09:47:40', 0, NULL, 1),
(27385, 'Meena R', '4', '8838416052', '9566861266', 'meenaraman9611@gmail.com', '1996-09-11', 29, '2', '1', 'Raman', 'Farmer', 15000.00, 1, 20000.00, 20000.00, 'Pattukkottai', 'Pattukkottai', '2511060008', '1', '2', 'upload_files/candidate_tracker/47742582458_Meenaresumae.docx', NULL, '1', '2025-11-07', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-06 02:42:02', 154, '2025-11-07 02:47:00', 0, NULL, 1),
(27386, 'Darshan Gowda K', '6', '7483984465', '', 'darshangowdak913@gmail.com', '2003-03-25', 22, '2', '2', 'Krishnappa', 'Electrician', 25000.00, 1, 0.00, 22000.00, 'Sira', 'Bengaluru', '2511070001', '1', '1', 'upload_files/candidate_tracker/73547524620_DarshanGowdaK.pdf', NULL, '1', '2025-11-07', 0, '', '3', '59', '2025-11-13', 216000.00, '', '3', '2025-12-29', '1', 'Communication ok fresher for sales calling need to check in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '2025-11-13', 1, '2025-11-07 04:59:39', 60, '2025-11-12 06:28:57', 0, NULL, 1),
(27387, '', '0', '8956231425', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511070002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-07 11:10:18', 0, NULL, 0, NULL, 1),
(27388, 'mohamed yahya nasrullah', '5', '9080667082', '9841132100', 'yahyanasrullah2000@gmail.com', '2000-04-10', 25, '2', '2', 'amanullah - father', 'business', 2.00, 1, 4.20, 5.20, 'kattur sadaiyappan street periamet chennai', 'Kattur Sadaiyappan Street Periamet Chennai', '2511070003', '1', '2', 'upload_files/candidate_tracker/17886986507_YahyaNasrullahResume.pdf', NULL, '1', '2025-11-10', 30, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Seleted for Abdul team. Will Join after his notice period. Please negotiate the salary as per your choice and confrim the joining date. He is a good young candidate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', '55735', '55557', '1970-01-01', 1, '2025-11-07 01:20:26', 154, '2025-11-18 02:33:52', 0, NULL, 1),
(27389, '', '0', '9894584931', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-09 03:45:07', 0, NULL, 0, NULL, 1),
(27390, 'Sangavi', '4', '8428676954', '9361942797', 'sangavisekar98@gmail.com', '1998-04-05', 27, '2', '1', 'Boo balan', 'Assistant', 25000.00, 1, 0.00, 17000.00, 'C2, new housing unit, mannagudi , thiruvarur', 'C2 , new housing unit, mannagudi, thiruvarur', '2511100001', '1', '1', 'upload_files/candidate_tracker/36065932982_ResumeSangavi.pdf', NULL, '1', '2025-11-10', 0, '', '3', '59', '2025-11-17', 180000.00, '', '3', '2025-11-26', '2', 'Communication Ok fresher for insurance sales earlier worked in IT recently married need to check her sustainability', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-11-17', 1, '2025-11-10 04:51:12', 60, '2025-11-15 07:02:39', 0, NULL, 1),
(27391, 'Gayathri c', '4', '8220227375', '', 'gayathrichandra1995@gmail.com', '1995-01-04', 30, '2', '1', 'Manimaran s', 'Engineer', 40000.00, 1, 23000.00, 18000.00, 'THANJAVUR', 'THANJAVUR', '2511100002', '1', '2', 'upload_files/candidate_tracker/37775528049_mcaresume1111.pdf', NULL, '1', '2025-11-10', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile completed MCA in anjalai ammal engg clg....native thanjavur ..married in pudukottai...husband in singapore return 2027....1 child 2 years caring by mother single parent....she is worked in calibehr business support in chennai and after 8 month promoted as team lead..2019-2023.....taken 22k salary...have laptop....expected 15 to 17k kindly check and confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-10 05:46:44', 154, '2025-11-10 11:24:51', 0, NULL, 1),
(27392, 'Kavitha Karuppasamy', '4', '6384237334', '9751955714', 'kavithamaheswari21@gmail.com', '2005-09-20', 20, '2', '2', 'S.Karuppasamy', 'Hotel master', 10000.00, 1, 0.00, 11000.00, '2158 Rajaji nagar., mulligai pannai Thanjavur', '2158,Rajaji nagar, mulligai pannai, Thanjavur', '2511100003', '1', '1', 'upload_files/candidate_tracker/19619271860_KavithaResume.pdf', NULL, '1', '2025-11-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for team.', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-10 05:56:30', 154, '2025-11-10 12:21:16', 0, NULL, 1),
(27393, 'Keerthana.s', '4', '8825587143', '8056966986', 'Keerthuqueen661@gmail.com', '2005-10-13', 20, '2', '2', 'Anitha', 'Electtrision', 10.00, 2, 12000.00, 12000.00, 'Sevappanayagan vaari vadakarai thanjavur', 'Swvapanayagan vaari. Vadakarai Thanjavur', '2511100004', '1', '2', 'upload_files/candidate_tracker/27328199840_keerthana.pdf', NULL, '1', '2025-11-10', 1, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-10 05:57:40', 154, '2025-11-10 12:20:40', 0, NULL, 1),
(27394, 'R.Raveena', '13', '6374559371', '8122901019', 'raveenaravi2927@gmail.com', '2002-01-29', 23, '3', '2', 'Ravichandran', 'Chief', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2511100005', '', '1', 'upload_files/candidate_tracker/12859345860_raveena1.pdf', NULL, '1', '2025-11-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'rejected in aptitude (4/10)', '', '', '', '', '1970-01-01', 1, '2025-11-10 06:06:00', 159, '2025-11-10 12:47:44', 0, NULL, 1),
(27395, '', '0', '9344819460', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511100006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-10 08:25:33', 0, NULL, 0, NULL, 1),
(27396, 'Uthrakumar A', '13', '8610117810', '', 'uthra1742003@gmail.com', '2003-04-17', 22, '3', '2', 'Arumugam. D', 'Mason', 30000.00, 1, 0.00, 18000.00, 'Chengalpattu', 'Chengalpattu', '2511100007', '', '1', 'upload_files/candidate_tracker/51343620891_UthrakumarAresume.pdf', NULL, '1', '2025-11-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-10 01:12:59', 1, '2025-11-10 01:29:31', 0, NULL, 1),
(27397, '', '0', '9597710624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511100008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-10 01:51:15', 0, NULL, 0, NULL, 1),
(27398, 'archana', '4', '9962904822', '6385437179', 'archanamoorthy04@gmail.com', '2002-02-04', 23, '2', '2', 'Chitra', 'House wife', 20.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2511110001', '1', '2', 'upload_files/candidate_tracker/81533668140_ImagetoPDF20251110061921.pdf', NULL, '1', '2025-11-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-11-11 04:07:40', 154, '2025-11-11 02:36:47', 0, NULL, 1),
(27399, 'raj kumar a', '4', '9159255301', '8754934576', 'rk868726@gmail.com', '2002-08-19', 23, '2', '2', 'jancy', 'daily wages', 20000.00, 2, 10000.00, 13000.00, 'thanjavur', 'thanjavur', '2511110002', '1', '2', 'upload_files/candidate_tracker/89239651511_RAJKUMAR1.pdf', NULL, '1', '2025-11-11', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-11 05:10:29', 154, '2025-11-11 11:03:29', 0, NULL, 1),
(27400, 'Hazimoonisha. A', '6', '8939493807', '9840738579', 'hazi89512@gmail.com', '2005-05-23', 20, '3', '2', 'Afrose khan. M', 'Car driver', 30000.00, 2, 13000.00, 18000.00, 'Minjur', 'Minjur', '2511110003', '', '2', 'upload_files/candidate_tracker/25544364578_CV2025102820062814.pdf', NULL, '1', '2025-11-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-11-11 05:32:36', 154, '2025-11-11 02:38:12', 0, NULL, 1),
(27401, 'Arokia Jesica', '4', '8220786286', '7558181344', 'arokiajesica@gmail.com', '2004-02-28', 21, '2', '2', 'Claris', 'Teacher', 20000.00, 1, 0.00, 12000.00, 'Thanjavvur', 'Thanjavvur', '2511110004', '1', '1', 'upload_files/candidate_tracker/53340326696_ArokiaJesicaS.pdf', NULL, '1', '2025-11-11', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-11 06:00:16', 154, '2025-11-11 11:39:01', 0, NULL, 1),
(27402, '', '0', '9840897492', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511110005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-11 06:43:44', 0, NULL, 0, NULL, 1),
(27403, 'Abirami.p', '6', '9361294327', '8122521484', 'pasuabi1432@gmail.com', '1999-09-29', 26, '2', '1', 'Pasupathi', 'Transport supervisor', 28000.00, 2, 23000.00, 23000.00, 'Virugambakkam', 'Virugambakkam', '2511110006', '1', '2', 'upload_files/candidate_tracker/95349132044_AbiramiRESUME.pdf', NULL, '1', '2025-11-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-11-11 07:20:06', 154, '2025-11-11 02:36:17', 0, NULL, 1),
(27404, 'Muthulakshmi M', '6', '7539959237', '8825667917', 'muthulakshmimuthulakshmi314@gmail.com', '2004-05-13', 21, '2', '2', 'Madasamy.M - kanagalakshmi.M', 'Cooli', 12000.00, 1, 0.00, 16000.00, '-', 'Perambur , erukkancherry', '2511120001', '1', '1', 'upload_files/candidate_tracker/68492322544_PDFMuthulakshmi.pdf', NULL, '1', '2025-11-12', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also she is not talk about genral topic and her voice is low.sustainable is doubt.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2025-11-12 01:01:36', 154, '2025-11-13 09:15:48', 0, NULL, 1),
(27405, 'Prasanna Sasikumar', '2', '8939090409', '', 'prasanna20311@gmail.com', '2004-10-31', 21, '2', '2', 'Sasikumar', 'Farmer', 300000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Chennai', '2511120002', '1', '1', 'upload_files/candidate_tracker/76738425332_PrasannaFullstackDeveloperResume1.pdf', NULL, '1', '2025-11-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (4/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-12 04:37:04', 159, '2025-11-12 11:31:14', 0, NULL, 1),
(27406, 'priyadharsini chetty k', '11', '7358952302', '', 'priya23chetty@gmail.com', '2000-02-23', 25, '2', '2', 'karthikeyan', 'Business', 50000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2511120003', '1', '1', 'upload_files/candidate_tracker/61698323599_PriyadharsinichettyHRResume1.pdf', NULL, '1', '2025-11-12', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-11-12 05:07:50', 159, '2025-11-12 11:37:28', 0, NULL, 1),
(27407, 'Dhinakaran', '6', '6380860396', '9345392847', 'dinakaraofficial2000@gmail.com', '2000-11-15', 24, '2', '2', 'Padma', '7th std', 20000.00, 0, 18000.00, 20000.00, 'Kilpauk', 'Shennoy nager', '2511120004', '1', '2', 'upload_files/candidate_tracker/31125522587_DINAKARAN1.pdf', NULL, '1', '2025-11-12', 1, '', '3', '59', '2025-11-13', 192000.00, '', '3', '2025-12-03', '2', 'Communication Ok but not sure on his sustainability no valid reasons for his previous relieving and not much serious with the job abd his career gap let us check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '2025-11-13', 1, '2025-11-12 06:52:47', 60, '2025-11-13 09:40:35', 0, NULL, 1),
(27408, 'muthasir musthafa', '4', '7305374243', '', 'muthasirmusthafa007@gmail.com', '2000-10-30', 25, '2', '2', 'Gows Basha', 'Sales Man', 150000.00, 3, 18000.00, 21000.00, 'Triplicane', 'Triplicane', '2511120005', '1', '2', 'upload_files/candidate_tracker/32953483788_MyBestResume.pdf', NULL, '1', '2025-11-12', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '7', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-11-12 08:39:38', 154, '2025-11-12 06:23:23', 0, NULL, 1),
(27409, 'venkadeshwaran t', '14', '9655762282', '9488665576', 'venkadeshthavasiperumal99@gmail.com', '1999-12-11', 25, '2', '2', 'Thavasiperumal s', 'Daily wedges', 40000.00, 6, 0.00, 2.50, 'Tiruchendur Thoothukudi', 'Tambaram Chennai', '2511130001', '1', '1', 'upload_files/candidate_tracker/9871838359_venkadeshwaranT1.pdf', NULL, '1', '2025-11-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (4/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-13 04:28:59', 159, '2025-11-13 11:00:45', 0, NULL, 1),
(27410, 'Sangeetha', '6', '8778044603', '9840773546', '2000sangithasangi@gmail.com', '2000-05-29', 25, '2', '2', 'K Narayanan', 'SN packing (super vicer)', 26000.00, 1, 240000.00, 300000.00, 'Kodungaiyur', 'Kodungaiyur', '2511130002', '1', '2', 'upload_files/candidate_tracker/19578486798_Sangeetharesume2.pdf', NULL, '1', '2025-11-13', 15, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-11-13 05:00:50', 159, '2025-11-13 02:34:06', 0, NULL, 1),
(27411, 'g vignesh', '6', '8939041190', '8111066891', 'petervignesh09@gmail.com', '2003-07-19', 22, '2', '2', 'ganabathi', 'autodriving', 90000.00, 1, 17000.00, 24000.00, 'tondiarpet', 'tondiarpet', '2511130003', '1', '2', 'upload_files/candidate_tracker/32929465772_G.VIGNESH.pdf', NULL, '3', '2025-11-13', 30, '', '3', '59', '2025-11-17', 216000.00, '', '3', '2026-01-31', '1', 'Communication Ok have exp in consumer loan process fresher for insurance can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'CA130', '5151', '2025-11-17', 1, '2025-11-13 06:05:08', 60, '2025-11-15 07:03:56', 0, NULL, 1),
(27412, 'Lavanya B N', '6', '9606409578', '', 'bnlavanya18@gmail.com', '2000-02-18', 25, '2', '2', 'Narendra B N', 'Teacher', 50.00, 1, 350000.00, 600000.00, 'Tumkur', 'Banglore', '2511130004', '57', '2', 'upload_files/candidate_tracker/18571405351_LavanyaResume.docx', NULL, '1', '2025-11-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sELECTED FOR RM MAX SUGGESTED CTC UPTO 5LAC', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-11-13 06:21:33', 154, '2025-11-14 04:56:13', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27413, 'SACHIN D SILVA SELVAKUMAR', '5', '9500105373', '9025033185', 'dsilvasachin@gmail.com', '1997-02-24', 28, '2', '2', 'Ws Leena', 'home maker', 20000.00, 3, 3.70, 4.50, 'mangadu', 'chennai', '2511130005', '1', '2', 'upload_files/candidate_tracker/11733567101_SachinResume20241.pdf', NULL, '1', '2025-11-13', 0, '', '4', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for next round', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55735', '55557', '1970-01-01', 1, '2025-11-13 06:39:44', 154, '2025-11-13 02:33:38', 0, NULL, 1),
(27414, 'B.Logapriyadharshini', '4', '7418318187', '9677614628', 'logapriyabalachander120@gmail.com', '2003-10-12', 22, '2', '2', 'K Balachander , Thamilselvi', '12th', 20000.00, 1, 18000.00, 18000.00, 'Mathakottai, PWD Nagar , Thanjavur', 'PWD Nagar', '2511130006', '1', '2', 'upload_files/candidate_tracker/38775331129_DOC20251111WA0003.202511111548580000.pdf', NULL, '1', '2025-11-14', 1, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile completed bcom in bon securs college 24...and joined in swiggy process 1.2 yr experience in night shift 18k salary...due to salary issue releived from job and currently financial issue not willing to seek job in coimbatore....father hotel manager mother doing catering work order basis...brother worked in IT coimbatore 15k salary....expected 15k,,,,,travel time 5km from office...monday joining....no laptop....kindly cross check any intrested to seek job again in coimbatore...and intrested in telesales too', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-13 06:40:56', 154, '2025-11-14 10:41:07', 0, NULL, 1),
(27415, '', '0', '9092035591', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511130007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-13 08:01:10', 0, NULL, 0, NULL, 1),
(27416, '', '0', '9600169745', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511130008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-13 11:17:35', 0, NULL, 0, NULL, 1),
(27417, 'Mageswari S', '5', '7358471919', '', 'mageswarisahayam17@gmail.com', '2001-01-17', 24, '2', '2', 'T.Sahaya Asirvatham', 'Driver', 50000.00, 1, 25200.00, 28000.00, 'Vadapalani, chennai', 'Vadapalani Chennai', '2511130009', '1', '2', 'upload_files/candidate_tracker/73915169104_Mageswariresume..pdf', NULL, '1', '2025-11-14', 0, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit for Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55557', '55557', '1970-01-01', 1, '2025-11-13 01:08:32', 154, '2025-11-14 02:54:56', 0, NULL, 1),
(27418, '', '0', '8105807468', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-13 01:57:41', 0, NULL, 0, NULL, 1),
(27419, '', '0', '8867478785', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511130011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-13 01:59:36', 0, NULL, 0, NULL, 1),
(27420, 'Shradda', '11', '9108487794', '9035697794', 'shraddas353@gmail.com', '2000-12-14', 24, '5', '2', 'Suresh', 'FDC', 85000.00, 2, 0.00, 25000.00, 'Bangalore', 'Bangalore', '2511130012', '', '1', 'upload_files/candidate_tracker/75631794646_SHRADDASAVALASANG.pdf', NULL, '1', '2025-11-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-13 02:21:14', 1, '2025-11-21 01:05:48', 0, NULL, 1),
(27421, '', '0', '9353560581', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511130013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-13 02:40:07', 0, NULL, 0, NULL, 1),
(27422, 'Kiran Tammanna Naik', '4', '8073450543', '9036235164', 'naikk4356@gmail.com', '1997-09-30', 28, '5', '2', 'Yallavva naik', 'Kiran naik', 30000.00, 2, 0.00, 22000.00, 'Belgaum', 'Btm layout in banglore', '2511140001', '', '1', 'upload_files/candidate_tracker/22431861593_KIRANNAIKRESUME.pdf', NULL, '3', '2025-11-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-14 05:09:04', 1, '2025-11-14 05:19:31', 0, NULL, 1),
(27423, 'Varshith td', '6', '8217545957', '', 'Varshithtdcsd5147@gmail.com', '2000-01-18', 25, '2', '2', 'Hema latha. D', 'Banglore', 300000.00, 0, 25000.00, 28000.00, '8th cross Beereshwar nagar Jp 7thphase 560078', 'Jp nagar 7thphase 560078', '2511140002', '57', '2', 'upload_files/candidate_tracker/77034308594_CV2025091511320956.pdf', NULL, '1', '2025-11-14', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for dm ashfaq team suggested ctc 25k max', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-11-14 05:27:12', 154, '2025-11-15 04:29:41', 0, NULL, 1),
(27424, 'Preethi H', '6', '9003275973', '', 'preethiharibabu1706@gmail.com', '2003-06-17', 22, '1', '2', 'Haribabu P', 'Electrician', 120000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2511140003', '', '1', 'upload_files/candidate_tracker/4349354211_preethiresume2.pdf', NULL, '1', '2025-11-14', 0, 'THILAGAVATHI', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-11-14 05:39:25', 154, '2025-11-14 02:43:01', 0, NULL, 1),
(27425, 'gowtham r', '13', '9790853418', '9791110830', 'gowtham17.rr@gmail.com', '2002-03-11', 23, '3', '2', 'ramu', 'building contractor', 35000.00, 1, 0.00, 350000.00, 'chennai', 'chennai', '2511140004', '', '1', 'upload_files/candidate_tracker/39033079272_Gowtham2025cv.pdf', NULL, '1', '2025-11-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'rejected in aptitude (3/10)', '', '', '', '', '1970-01-01', 1, '2025-11-14 05:51:55', 159, '2025-11-14 03:11:25', 0, NULL, 1),
(27426, 'S Dinesh Kumar', '13', '7358473059', '9710015733', 'dineshkumar.s.btechcse@gmail.com', '2010-11-14', 0, '3', '2', 'Shanmugam', 'Electrical technician', 35000.00, 2, 0.00, 350000.00, 'Chennai', 'Chennai', '2511140005', '', '1', 'upload_files/candidate_tracker/37091803465_DineshKumar2025UpdatedResumenew1.pdf', NULL, '1', '2025-11-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'rejected in aptitude (4/10)', '', '', '', '', '1970-01-01', 1, '2025-11-14 05:52:19', 159, '2025-11-14 03:10:30', 0, NULL, 1),
(27427, 'Lakshmi Parasuraman', '5', '7339302185', '', 'lakshmiparasuraman96@gmail.com', '2000-09-23', 25, '2', '2', 'Parasuraman', 'Ex supervisor in L&T construction', 40000.00, 3, 31000.00, 31000.00, 'Velachery', 'Velachery', '2511140006', '1', '2', 'upload_files/candidate_tracker/75545273407_1000263937compressed.pdf', NULL, '1', '2025-11-14', 0, '', '3', '59', '2025-11-21', 336000.00, '', '3', '2025-12-10', '1', 'Communication have exp in sales calling but not in insurance worked in multiple domain Real estate/Aqua fresher for insurance can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55557', '55557', '2025-11-21', 1, '2025-11-14 06:20:57', 60, '2025-11-20 06:14:48', 0, NULL, 1),
(27428, 'Akash vk', '5', '8939526402', '', 'akashvkvk027@gmail.com', '2003-03-30', 22, '2', '2', 'Amutha', 'Bca', 80000.00, 1, 17500.00, 19000.00, 'Chennai', 'Chennai', '2511140007', '1', '2', 'upload_files/candidate_tracker/53860806030_Resume14112025114949am.pdf', NULL, '1', '2025-11-15', 1, '', '3', '59', '2025-11-19', 234000.00, '', '3', '2025-12-20', '1', 'Communication Good Have exp in sales based on the discussion with gaurav and the clarity given we have processed with the payout mentioned as sir mentioned 19 K net in the resume', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55560', '55560', '2025-11-19', 1, '2025-11-14 06:38:27', 60, '2025-11-18 06:28:40', 0, NULL, 1),
(27429, 'Amarnath j', '13', '9943464763', '9626820467', 'kuttyamarnath78@gmail.com', '2000-06-01', 25, '3', '2', 'Jayabal l', 'Farmer', 35000.00, 0, 0.00, 30000.00, 'Thanjavur', 'Arumbakkam', '2511140008', '', '1', 'upload_files/candidate_tracker/1410852274_Mr.AMARNATHRESUME.docx', NULL, '1', '2025-11-14', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', 'rejected in aptitude(0/10)', '', '', '', '', '1970-01-01', 1, '2025-11-14 09:05:34', 159, '2025-11-14 04:00:33', 0, NULL, 1),
(27430, 'reema afrin', '4', '7904527772', '8531819642', 'afrinreema21@gmail.com', '2005-03-26', 20, '2', '2', 'Kamaludeen', 'Bsc. computer science', 7000.00, 1, 15000.00, 17000.00, 'Needamangalam new street thiruvarur(dt)', 'Needamangalam new street thiruvarur(dt)', '2511140009', '1', '2', 'upload_files/candidate_tracker/68310430058_Reemaafrin1.pdf', NULL, '1', '2025-11-15', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-14 09:27:35', 154, '2025-12-01 11:17:40', 0, NULL, 1),
(27431, 'J Mohamed samsudeen', '4', '8870756142', '', 'samsudeen9143@gmail.com', '2003-07-09', 22, '2', '2', 'Junaidhu rahman', 'Rent', 30000.00, 1, 0.00, 20000.00, 'Thiruvarur district kodikkalpalayam', 'Anna nagar tower Chennai', '2511140010', '50', '1', 'upload_files/candidate_tracker/53418313658_ProfessionalCVResume202406021939130000.pdf', NULL, '1', '2025-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-14 10:29:00', 1, '2025-11-14 10:37:52', 0, NULL, 1),
(27432, 'R Gopalakrishnan', '13', '9342343220', '', 'gopalakrishnan150404@gmail.com', '2004-04-15', 21, '2', '2', 'Ramalingam', 'Grocery shop', 35000.00, 3, 0.00, 300000.00, 'Vyasarpadi, Chennai', 'Vyasarpadi, Chennai', '2511140011', '1', '1', 'upload_files/candidate_tracker/74996665723_GopalakrishnanCV2.pdf', NULL, '1', '2025-11-15', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (4/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-14 11:42:08', 159, '2025-11-15 12:13:50', 0, NULL, 1),
(27433, 'Dhanabalan S', '13', '7397501399', '9342780185', 'dhanabalansethuraj@gmail.com', '2004-05-06', 21, '2', '2', 'Sethuraj', 'Agriculture', 20000.00, 2, 0.00, 20000.00, 'Ramanathapuram', 'Chennai', '2511140012', '1', '1', 'upload_files/candidate_tracker/13221811494_DhanabalanSresume.pdf', NULL, '1', '2025-11-15', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (2/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-14 12:20:35', 159, '2025-11-15 12:13:27', 0, NULL, 1),
(27434, '', '0', '8220719228', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511140013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-14 01:00:30', 0, NULL, 0, NULL, 1),
(27435, 'M Arjun', '13', '7092219705', '', 'arjunm0310@gmail.com', '2004-10-03', 21, '2', '2', 'Mariappan', 'Printer', 20000.00, 1, 0.00, 200000.00, 'Sivakasi, Tamilnadu', 'Chennai, Thoraipakkam', '2511150001', '1', '1', 'upload_files/candidate_tracker/2463464092_ArjunResume.pdf', NULL, '2', '2025-11-15', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (4/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-15 04:44:30', 159, '2025-11-15 12:13:38', 0, NULL, 1),
(27436, 'Mohammad Nawazish Ali', '6', '9044745245', '', 'mohammad.ali78665@gmail.com', '1998-01-12', 27, '2', '2', 'NA', 'NA', 20000.00, 1, 300000.00, 460000.00, 'Varanasi UP', 'Margondanahalli Bangalore 560036', '2511150002', '57', '2', 'upload_files/candidate_tracker/53816240794_Resume.pdf', NULL, '1', '2025-11-15', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He worked in cognizant good communication good confident but no  Kannada\n  language last take home is 22000 expected 23 to 24k u can finalize for vasu team', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-11-15 05:22:32', 162, '2025-11-15 05:51:22', 0, NULL, 1),
(27437, 'VINODAKUMARA R P', '6', '8970323827', '6363576665', 'vinodkumarrp123@gmail.com', '1996-12-26', 28, '3', '2', 'PUTTASWAMY', 'AGRICULTURE', 10000.00, 1, 20837.00, 25000.00, 'RANGANA KOPPALU (V) , ANDALE (P) BELUR (T) HASSAN', 'SLR BOYS PG, VASANTH NAGAR BANGALORE', '2511150003', '', '2', 'upload_files/candidate_tracker/75490123749_MyResume2.01.pdf', NULL, '1', '2025-11-15', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication And is not consistent.', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-11-15 05:33:16', 162, '2025-11-15 03:43:27', 0, NULL, 1),
(27438, 'Vignesh Kumar', '6', '6383106025', '7708818799', 'Vigneshdhoni14177@gmail.com', '1997-11-13', 28, '2', '2', 'Nagamma K', 'Garments', 12000.00, 2, 357000.00, 550000.00, 'D.no 117/5/1 Ramnagar,Hosur-635109', 'D.No B1(93) 4th cross Road Ramnagar.', '2511150004', '57', '2', 'upload_files/candidate_tracker/91425348964_VigneshKumarResume.pdf', NULL, '1', '2025-11-15', 15, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice process only.', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'I1077', '55566', '1970-01-01', 1, '2025-11-15 05:36:08', 162, '2025-11-15 03:41:30', 0, NULL, 1),
(27439, 'Muthu Susmitha', '6', '7904670290', '9865448205', 'susmithasus2003@gmail.com', '2003-01-11', 22, '2', '2', 'Deepa', 'Tailor', 27000.00, 2, 0.00, 400000.00, 'Madurai', 'Thoraipakkam, Chennai', '2511150005', '57', '2', 'upload_files/candidate_tracker/21639404062_SusmithaCV.pdf', NULL, '1', '2025-11-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-11-15 06:25:13', 154, '2025-11-15 02:33:28', 0, NULL, 1),
(27440, 'Rajeswari gunaparthi', '6', '8925141810', '9087359605', 'rajeswarig247@gmail.com', '2003-04-27', 22, '2', '2', 'Lakshmi', 'House keeping', 18500.00, 1, 21500.00, 25000.00, 'Kodungaiyur', 'Kodungaiyur', '2511150006', '1', '2', 'upload_files/candidate_tracker/17688085150_DOC20251023WA0004..pdf', NULL, '1', '2025-11-15', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-11-15 10:56:31', 154, '2025-11-15 04:54:41', 0, NULL, 1),
(27441, 'Hariharan emayavaramban', '5', '9514047123', '9840504059', 'haribenny77@gmail.com', '1999-08-09', 26, '2', '2', 'Emayavaramban', 'Properioter', 40000.00, 1, 300000.00, 400000.00, 'Thanjavur', 'Nungambakkam', '2511160001', '1', '2', 'upload_files/candidate_tracker/44151408384_Nonvoice.pdf', NULL, '1', '2025-11-17', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Shortlisted for Gnanshekar team. Can Join in another 10 Days. Can offer 3.5L CTC  as he is a decent resource', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1017', '', '55656', '55557', '1970-01-01', 1, '2025-11-16 05:51:43', 154, '2025-11-17 05:56:36', 0, NULL, 1),
(27442, '', '0', '7200348533', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511160002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-16 07:40:47', 0, NULL, 0, NULL, 1),
(27443, 'Sri soundharyalakshmi.S', '4', '6369263129', '9095241714', 'soundharyashanmugam01@gmail.com', '2001-09-26', 24, '2', '2', 'Shanmugam.G', 'Just for formal', 11000.00, 0, 0.00, 13000.00, '975 co-operative colony Budalur Thanjavur 613602', '975 co-operative colony Budalur Thanjavur 613602', '2511170001', '1', '2', 'upload_files/candidate_tracker/57388535174_DocScanner26Apr20251025.pdf', NULL, '1', '2025-11-17', 0, '', '3', '59', '2025-11-19', 162000.00, '', NULL, '2026-01-13', '2', 'Communication Ok have exp in quality testing seems to be communicative over the call can give a try and check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-11-19', 1, '2025-11-17 04:06:09', 60, '2025-11-18 06:30:05', 0, NULL, 1),
(27444, 'Yokesh E', '13', '6380369840', '', 'yokeshezhumalai02@gmail.com', '2002-08-18', 23, '5', '2', 'Ezhumalai', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Villupuram', 'Tambaram sanatorium', '2511170002', '', '1', 'upload_files/candidate_tracker/78324856195_YokeshEPythonDeveloper.pdf', NULL, '1', '2025-11-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in system based task', '', '', '', '', '', '1970-01-01', 1, '2025-11-17 04:56:17', 159, '2025-11-19 11:08:00', 0, NULL, 1),
(27445, 'G shobanalakshmi', '4', '9080740260', '', 'gslam2406@gmail.com', '1993-11-22', 31, '3', '1', 'Kannan', 'Lab technician (business)', 50000.00, 2, 24000.00, 22000.00, 'Tiruvottriyur', 'Tiruvottriyur', '2511170003', '', '2', 'upload_files/candidate_tracker/49576516863_CV2025111610244618.pdf', NULL, '1', '2025-11-17', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2025-11-17 05:06:42', 154, '2025-11-17 01:14:50', 0, NULL, 1),
(27446, 'JAGADEESH B', '4', '9789094978', '7550155123', 'akashakakashak0105@gmail.com', '2005-05-01', 20, '2', '2', 'Babu kumar', 'Accountant manager', 300000.00, 1, 0.00, 18.00, 'No.33 Periyar street, Ambekar nagar, pattabiram', 'No.33 Periyar street, Ambekar nagar, pattabiram', '2511170004', '50', '1', 'upload_files/candidate_tracker/67741302863_Myresume1.pdf', NULL, '1', '2025-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-17 05:27:51', 1, '2025-11-17 05:31:29', 0, NULL, 1),
(27447, 'Hari Vignesh V', '31', '8248945523', '', 'harivignesh82489@gmail.com', '2003-06-03', 22, '3', '2', 'V. Vinayaga Moorthy', 'Advocate', 30000.00, 1, 0.00, 200000.00, 'Sattur', 'Tambaram', '2511170005', '', '1', 'upload_files/candidate_tracker/42836402671_HARI.FRESUMEcompressed.pdf', NULL, '1', '2025-11-17', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2025-11-19', '1', '2', 'system task completed (hold)', '', '', '', '', '', '1970-01-01', 1, '2025-11-17 05:35:39', 159, '2025-11-19 04:55:05', 0, NULL, 1),
(27448, 'Magimai Alphonsa', '6', '9344956506', '', 'magimaianthony00@gmail.com', '2000-11-14', 25, '2', '2', 'S. Anthony', 'Cooliy', 20000.00, 2, 0.00, 18.00, 'Perambur', 'Perambur', '2511170006', '1', '1', 'upload_files/candidate_tracker/49592573767_Magimai.pdf', NULL, '1', '2025-11-17', 0, '', '3', '59', '2025-11-24', 186000.00, '', '3', '2026-01-30', '1', 'Communication ok open to learn insurance can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55645', '5151', '2025-11-24', 1, '2025-11-17 07:59:53', 60, '2025-11-21 07:24:18', 0, NULL, 1),
(27449, 'Devayani', '6', '9150767204', '9176525323', 'devayanidevayani014@gmail.com', '2003-05-16', 22, '2', '2', 'Elumalai', 'Security guard', 20.00, 1, 0.00, 18.00, 'Adyar Chennai', 'Adyar Chennai', '2511170007', '1', '1', 'upload_files/candidate_tracker/92967040579_10003496771759989883922DevayaniE.pdf', NULL, '1', '2025-11-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-11-17 07:59:56', 154, '2025-11-17 03:42:02', 0, NULL, 1),
(27450, 'S lavanya', '4', '9080125471', '', 'lavanyasudha1021@gmail.com', '1998-10-21', 27, '5', '2', 'N sundararaj', 'Conductor', 25000.00, 1, 0.00, 15000.00, 'Anna Nagar', 'Anna Nagar', '2511170008', '', '1', 'upload_files/candidate_tracker/23737116655_3412.pdf', NULL, '3', '2025-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-17 11:18:54', 1, '2025-11-17 11:24:01', 0, NULL, 1),
(27451, 'arasu uDAIYAR', '13', '9500775632', '9345380842', 'arasbhavan@gmail.com', '2003-12-13', 21, '5', '2', 'Murugan.S', 'Daily wage', 35000.00, 2, 0.00, 30000.00, 'Sivakasi', 'Padipudhur, Chennai', '2511170009', '', '1', 'upload_files/candidate_tracker/73097665496_AUAU1compressed.pdf', NULL, '1', '2025-11-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (4/10)', '', '', '', '', '', '1970-01-01', 1, '2025-11-17 02:06:32', 159, '2025-11-18 11:09:14', 0, NULL, 1),
(27452, 'Adarsh T S', '6', '9110278728', '', 'tsadarsh82@gmail.com', '2001-03-29', 24, '4', '2', 'srinivas n', 'bussiness', 500000.00, 0, 0.00, 3.00, 'Tumkur', 'btm layou', '2511170010', '', '1', 'upload_files/candidate_tracker/55217853363_AdarshTSCV111754025142707.pdf', NULL, '1', '2025-11-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-17 02:27:40', 1, '2025-11-24 04:27:35', 0, NULL, 1),
(27453, 'Mahabuf sheriff', '6', '9360171073', '6374173194', 'mssheriff114@gmail.com', '2003-12-03', 21, '2', '2', 'Sabitha', 'Petrol bunk', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2511170011', '1', '1', 'upload_files/candidate_tracker/54909301468_sheriffNIT3.pdf', NULL, '1', '2025-11-18', 0, '', '3', '59', '2025-11-19', 192000.00, '', '3', '2025-11-29', '1', 'Communication Ok fresher for our sales have appeared earlier for IT in sunday drive now open for sales need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55666', '5151', '2025-11-19', 1, '2025-11-17 03:12:24', 60, '2025-11-19 10:21:15', 0, NULL, 1),
(27454, 'Subapriya', '4', '9043325802', '', 'Subapriyapasupathi@gmail.com', '2000-08-11', 25, '2', '2', 'Swaminathan', 'Farmer', 50000.00, 0, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2511180001', '1', '1', 'upload_files/candidate_tracker/45380647449_SubapriyaResume21.pdf', NULL, '1', '2025-11-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-18 04:44:56', 154, '2025-11-18 10:38:06', 0, NULL, 1),
(27455, 'kiran kumar', '11', '7305538234', '6380364197', 'Kirandass2003@gmail.com', '2003-11-28', 21, '4', '2', 'deva doss r', 'Laundry shop owner', 20000.00, 2, 0.00, 5000.00, 'pallavaram chennai', 'pallavaram chennai', '2511180002', '', '1', 'upload_files/candidate_tracker/1671948640_Kiranresume.pdf', NULL, '1', '2025-11-18', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-11-18 06:20:15', 154, '2025-11-18 12:21:19', 0, NULL, 1),
(27456, 'Anil P Gudadinni', '6', '9740611421', '7795108057', 'anilgudadinni20@gmail.com', '2000-09-05', 25, '2', '2', 'Parashuram', 'Farmer', 15000.00, 3, 17.00, 25.00, 'Kanak nagar managuli bijapura 586122', 'kundanalli colony Bangalore', '2511180003', '57', '2', 'upload_files/candidate_tracker/7852981651_AnilPGudadinni110725834096670.pdf', NULL, '1', '2025-11-18', 0, '', '8', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice process,', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'I1077', '55566', '1970-01-01', 1, '2025-11-18 07:39:06', 162, '2025-11-19 10:13:41', 0, NULL, 1),
(27457, 'Dinesh Honnappa Naik', '6', '8884746915', '', 'dinunaik88847@gmail.com', '2002-02-14', 23, '3', '2', 'Honnappa Naik', 'Labour', 20000.00, 2, 17000.00, 20000.00, 'Bhatkal', 'Jayanagar, Bengaluru', '2511180004', '', '2', 'upload_files/candidate_tracker/73598117353_WhatsAppImage20251009at16.33.29fb7d355f.pdf', NULL, '1', '2025-11-18', 10, '', '8', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice process only .', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'I1077', '55566', '1970-01-01', 1, '2025-11-18 07:39:18', 162, '2025-11-19 10:12:39', 0, NULL, 1),
(27458, 'GopalaKrishnan', '2', '6380781761', '', 'gokulkriahnan029@gmail.com', '2003-11-04', 22, '5', '2', 'Anbarasu', 'Shop keeper', 30000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2511180005', '', '1', 'upload_files/candidate_tracker/86941140206_downloadresume.pdf', NULL, '1', '2025-11-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-18 03:09:21', 1, '2025-11-18 03:12:19', 0, NULL, 1),
(27459, 'R.vijay', '6', '9025740699', '', 'vj9104@gmail.com', '2000-08-27', 25, '2', '2', 'Ramdoss', 'Labour', 55000.00, 1, 15000.00, 23000.00, 'Sakkanthi ,vanna nagar, Sivaganga', 'Beach station, Chennai', '2511190001', '1', '2', 'upload_files/candidate_tracker/93421559506_VijayR2111.pdf', NULL, '1', '2025-11-19', 10, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-11-19 03:56:42', 154, '2025-11-19 12:05:53', 0, NULL, 1),
(27460, 'Udhaya chandar A', '13', '6374014892', '7604885045', 'udhayachandar7@gmail.com', '2003-03-09', 22, '5', '2', 'Anbuselvan M', 'Former', 25000.00, 1, 0.00, 25000.00, 'Pudukkottai', 'Chennai', '2511190002', '', '1', 'upload_files/candidate_tracker/52914749442_UdhayachandarAResumePdfinter.pdf', NULL, '1', '2025-11-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-11-19 04:43:45', 159, '2025-11-20 11:50:08', 0, NULL, 1),
(27461, 'VANAJA S', '11', '9500497430', '9751308556', 'vanajasekar726@gmail.com', '2003-11-11', 22, '2', '2', 'sekar', 'he works in tvs company', 20000.00, 1, 0.00, 10000.00, 'vellore', 'santhome', '2511190003', '1', '1', 'upload_files/candidate_tracker/27832684712_Workshopsandachievements202511141004020000.pdf', NULL, '1', '2025-11-19', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-11-19 05:06:07', 154, '2025-11-19 11:19:02', 0, NULL, 1),
(27462, 'Janani', '4', '9787772539', '8608585701', 'jananirajendran0407@gmail.com', '2000-07-04', 25, '2', '2', 'Krishnaveni', 'Housewife', 1.00, 1, 19000.00, 25000.00, 'Ramanathapuram', 'Chennai', '2511190004', '1', '2', 'upload_files/candidate_tracker/62300019221_JananiNewResume20252.pdf', NULL, '1', '2025-11-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-11-19 05:27:50', 154, '2025-11-19 02:40:34', 0, NULL, 1),
(27463, 'Basavaraj', '6', '7406065188', '9380069822', 'BRAJ54889@GMAIL.COM', '2002-01-27', 23, '2', '2', 'Ganga', 'Housewife', 30000.00, 1, 19500.00, 35000.00, 'Murgeshpalya', 'Murgeshpalya', '2511190005', '57', '2', 'upload_files/candidate_tracker/60706028878_BasavarajResume.pdf', NULL, '1', '2025-11-19', 20, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is good in sales good communication and confident  in all languages he expected salary 23000 can push', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2025-11-19 06:06:04', 154, '2025-11-19 07:01:25', 0, NULL, 1),
(27464, 'Mariswari .S', '6', '8807176297', '9150530869', 'marisselvamurugan@gmail.com', '1999-09-29', 26, '2', '1', 'Saraswati', 'House wife', 15000.00, 2, 0.00, 20000.00, '13 F/2 chinnaya garden saidapet.chennai', '13 F/2 chinnaya garden saidapet.chennai', '2511200001', '1', '1', 'upload_files/candidate_tracker/60434012185_MariswariSResumecompressed.pdf', NULL, '1', '2025-11-20', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-11-20 04:57:50', 154, '2025-11-20 02:59:15', 0, NULL, 1),
(27465, 'Vinay R', '4', '9901381756', '', 'vinayvi139@gmail.com', '1998-08-21', 27, '3', '2', 'Raghu N', 'English kannada', 20000.00, 0, 0.00, 20000.00, 'Btm layout', 'Jai bheem nagar', '2511200002', '', '1', 'upload_files/candidate_tracker/3080060327_9146892710236.pdf', NULL, '1', '2025-11-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-20 05:13:41', 1, '2025-11-20 05:26:04', 0, NULL, 1),
(27466, 'Gopikasri C', '4', '6374569711', '7448845366', 'gopikachandru02@gmail.com', '2004-02-21', 21, '5', '2', 'CHANDRA KUMAR', 'RK CONTAINERS', 20000.00, 1, 17.00, 20.00, 'TONDIARPET', 'TONDIARPET', '2511200003', '', '2', 'upload_files/candidate_tracker/62399367075_resume.doc.pdf', NULL, '1', '2025-11-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-20 05:20:36', 1, '2025-11-20 05:42:17', 0, NULL, 1),
(27467, 'Christina A', '4', '8939505892', '7299224397', 'chtistinachristi@gmail.com', '2003-11-04', 22, '5', '2', 'Arul raji', 'Coolie', 20000.00, 1, 17000.00, 20000.00, '9/20 KASIPURAM B BLOCK 3RD STREET KASIMEDU', '9/20 KASIPURAM B BLOCK 3RD STREET KASIMEDU', '2511200004', '', '2', 'upload_files/candidate_tracker/3415564524_BlackandWhiteCleanProfessionalA4Resume202511110852480000.pdf', NULL, '1', '2025-11-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-20 05:21:52', 1, '2025-11-20 05:42:11', 0, NULL, 1),
(27468, 'M.Vishwa', '4', '9047635755', '7094953632', 'vishwaabinsh@gmail.com', '2002-11-23', 22, '2', '2', 'Murugesan', 'Mesan', 20000.00, 1, 0.00, 14000.00, 'Madukkur', 'Madukkur', '2511200005', '1', '1', 'upload_files/candidate_tracker/31897832256_VISHWA.pdf', NULL, '1', '2025-11-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT SUITE', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-20 05:35:43', 154, '2025-12-01 11:18:11', 0, NULL, 1),
(27469, 'Sahaya Berlin', '22', '6369531214', '', 'berlin16082k@gmail.com', '2000-08-16', 25, '3', '2', 'Kumar', 'Supervisor', 150000.00, 1, 25000.00, 36000.00, 'Pudukkottai', 'Chennai', '2511200006', '', '2', 'upload_files/candidate_tracker/55243053956_Berlin.pdf', NULL, '1', '2025-11-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-11-20 09:04:15', 154, '2025-11-20 03:34:57', 0, NULL, 1),
(27470, 'V.varsha vasu', '4', '8148354800', '', 'varshavasu272003@gmail.com', '2010-11-21', 0, '2', '2', 'Vasu', 'Driver', 550000.00, 1, 0.00, 150000.00, 'Thanjavur', 'Thanjavur', '2511210001', '1', '1', 'upload_files/candidate_tracker/57222325206_resumevarsha.pdf', NULL, '1', '2025-11-21', 0, '', '3', '59', '2025-11-25', 156000.00, '', '3', '2025-12-03', '1', 'Communication Good Completed MBA HR focusing much on that only  need to check in training and confirm', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-11-25', 1, '2025-11-21 01:56:38', 60, '2025-11-24 06:27:54', 0, NULL, 1),
(27471, 'Thangamayi M', '13', '8248646797', '', 'thangamayi2002@gmail.com', '2002-02-12', 23, '3', '2', 'Mahalingam M', 'Farmer', 18000.00, 2, 0.00, 15000.00, 'Madurai', 'Aavadi', '2511210002', '', '1', 'upload_files/candidate_tracker/25456991_ThangamayiCV.pdf', NULL, '1', '2025-11-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in system task', '', '', '', '', '', '1970-01-01', 1, '2025-11-21 04:47:13', 159, '2025-11-21 04:11:06', 0, NULL, 1),
(27472, 'Keerthivasan.V', '6', '6385310505', '8939706505', 'keerthivasan2612001@gmail.com', '2001-01-26', 24, '2', '2', 'Velu.s', 'Farmer', 97000.00, 11, 0.00, 16000.00, '1/21 A, manjambadi village, Attupakkam, Arakkonam.', '1/21 A, Manjambadi village, Attupakkam,Arakkonam.', '2511210003', '1', '1', 'upload_files/candidate_tracker/65894870522_Keerthiresume.pdf', NULL, '1', '2025-11-21', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-11-21 06:22:25', 154, '2025-11-21 03:07:14', 0, NULL, 1),
(27473, 'P.Vignesh', '13', '6379849464', '7598549513', 'vigneshvicky242002@gmail.com', '2002-04-24', 23, '5', '2', 'Paulraj T', 'Electronic shop', 200000.00, 1, 0.00, 15000.00, '4-12-4, arunachalampuram, Batlagundu, Dindigul', 'Thoraipakkam', '2511210004', '', '1', 'upload_files/candidate_tracker/11324934729_VIGNESHRESUME.pdf', NULL, '1', '2025-11-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'unwilling to submit originals', '', '', '', '', '', '1970-01-01', 1, '2025-11-21 06:24:38', 159, '2025-11-24 11:06:10', 0, NULL, 1),
(27474, 'Krishnakumar ekambaram', '13', '7667788884', '9840188884', 'Krishnaeka10k@gmail.com', '2004-11-18', 21, '2', '2', 'Ekambaram', 'NA', 25000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai, tambaram', '2511210005', '1', '1', 'upload_files/candidate_tracker/24368799278_Softwaredeveloper.pdf', NULL, '1', '2025-11-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in program test', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-21 08:33:30', 159, '2025-12-08 03:30:41', 0, NULL, 1),
(27475, 'Srujan v', '6', '8884499921', '8073549402', 'Srujanv069@gmail.com', '2000-11-03', 25, '2', '2', 'Vasu K', 'Photography Studio', 200000.00, 0, 0.00, 20000.00, 'Btm layout', 'Btm layout', '2511210006', '1', '1', 'upload_files/candidate_tracker/96563052144_DOC20250628WA000414.docx', NULL, '2', '2025-11-23', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication and seems to be inconsistent . Has arrears will switch after clearing .', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', 'I1077', '55566', '1970-01-01', 1, '2025-11-21 10:05:48', 162, '2025-11-27 06:20:09', 0, NULL, 1),
(27476, '', '0', '9360474057', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511210007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-21 10:32:34', 0, NULL, 0, NULL, 1),
(27477, 'Abdulkadhar', '5', '7395955848', '', 'kadharbai0503@gmail.com', '1999-04-03', 26, '2', '2', 'Mohammed ali', 'Mutton shop', 700000.00, 2, 23500.00, 28000.00, 'Manali new town', 'Manali new town', '2511220001', '1', '2', 'upload_files/candidate_tracker/88672705760_ResumeAbdulKadhar.M21.pdf', NULL, '1', '2025-11-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-11-22 02:58:03', 159, '2025-11-24 04:11:16', 0, NULL, 1),
(27478, 'gokulnath s', '5', '8056062016', '9840281835', 'gokulnathg35@gmail.com', '1998-11-09', 27, '2', '2', 'Father', 'Working', 40000.00, 2, 22000.00, 25000.00, 'Chennai', 'Chennai', '2511220002', '1', '2', 'upload_files/candidate_tracker/63700019529_Resume1.pdf', NULL, '1', '2025-11-24', 0, '', '3', '59', '2025-12-01', 309996.00, '', NULL, '2026-01-07', '1', 'Communication Ok have exp in bank bazaar for 2yrs credit card can be trained in our roles need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55560', '55560', '2025-12-01', 1, '2025-11-22 06:16:34', 60, '2025-11-29 06:25:27', 0, NULL, 1),
(27479, 'Vijayalakshmi K', '13', '7092528748', '8682894439', 'keerthikannan8682@gmail.com', '2003-05-04', 22, '3', '2', 'Kannan G', 'Daily wage', 92000.00, 1, 0.00, 25000.00, 'Chennai', 'No 28 Kattabomman st Anakaputhur chennai 70', '2511240001', '', '1', 'upload_files/candidate_tracker/22721906857_Updatedresume.pdf', NULL, '1', '2025-11-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (4/10)', '', '', '', '', '', '1970-01-01', 1, '2025-11-24 05:37:47', 159, '2025-11-24 03:03:19', 0, NULL, 1),
(27480, 'Dhanush R', '13', '9941217584', '7200246521', 'rdhanush329@gmail.com', '2003-12-04', 21, '5', '2', 'Ravi', 'Driver', 12000.00, 1, 0.00, 200000.00, 'Ramapuram, Chennai', 'Ramapuram Chennai', '2511240002', '', '1', 'upload_files/candidate_tracker/86776389135_Dhanushresume1.pdf', NULL, '1', '2025-11-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in system task', '', '', '', '', '', '1970-01-01', 1, '2025-11-24 05:38:16', 159, '2025-11-24 04:40:49', 0, NULL, 1),
(27481, 'Surendhar Subramani', '2', '9962774237', '', 'sureasurendhar1@gmail.com', '2010-11-24', 0, '3', '2', 'Subramani N', 'Driver', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2511240003', '', '1', 'upload_files/candidate_tracker/97553633051_SurendharResumeUpdated1.pdf', NULL, '1', '2025-11-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (0/10)', '', '', '', '', '', '1970-01-01', 1, '2025-11-24 05:48:26', 159, '2025-11-24 03:04:55', 0, NULL, 1),
(27482, 'Jayaprakash.G', '6', '9080963140', '9344409842', 'jaiprakash55255@gmail.com', '2003-10-24', 22, '2', '2', 'Amulu.k', 'Daily wages', 150000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2511240004', '1', '1', 'upload_files/candidate_tracker/85663977717_BlackandWhiteCleanProfessionalA4Resume202510022138480000.pdf', NULL, '1', '2025-11-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-11-24 05:53:17', 154, '2025-11-25 11:43:35', 0, NULL, 1),
(27483, 'Sabarish E', '13', '6369721553', '', 'sabarishs094@gmail.com', '2004-09-08', 21, '6', '2', 'Eswaran P', 'Daily wages', 20000.00, 2, 0.00, 25000.00, 'Salem-637107', 'Navalur, Chennai', '2511240005', '', '1', 'upload_files/candidate_tracker/95830225655_SabarishE.pdf', NULL, '1', '2025-11-24', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2025-11-24', '2', '2', 'second round not attended (aptitude 5/10)', '', '', '', '', '', '1970-01-01', 1, '2025-11-24 06:38:39', 159, '2025-11-24 03:43:34', 0, NULL, 1),
(27484, 'PADMAPRIYA M', '13', '8925329199', '6369254930', 'padmapriyamathiyazhagan25@gmail.com', '2001-03-09', 24, '6', '2', 'Mathiyazhagan', 'Farmer', 20000.00, 1, 0.00, 25000.00, 'Kodivayal,Aranthangi 614805', 'Navalur,Chennai', '2511240006', '', '1', 'upload_files/candidate_tracker/4246251751_PadmapriyaMCV.pdf202509240032470000.pdf', NULL, '1', '2025-11-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (3/10)', '', '', '', '', '', '1970-01-01', 1, '2025-11-24 06:40:29', 159, '2025-11-24 03:04:08', 0, NULL, 1),
(27485, 'bharathraj s', '13', '8807864457', '7806836868', 'bharathrajcse25@gmail.com', '2004-03-16', 21, '6', '2', 'devaki s', 'tailor', 12000.00, 1, 0.00, 25000.00, 'thirukkalukundram chengalpet', 'chengalpet', '2511240007', '', '1', 'upload_files/candidate_tracker/65950770718_BharathrajResume.pdf.pdf', NULL, '1', '2025-11-24', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2025-11-24', '2', '2', 'second round not attended (aptitude 4/10)', '', '', '', '', '', '1970-01-01', 1, '2025-11-24 06:45:09', 159, '2025-11-24 03:44:34', 0, NULL, 1),
(27486, 'Thirish Palanimuthu', '14', '9787034541', '', 'thirishsgl@gmail.com', '2004-01-03', 21, '5', '2', 'Palanimuthu M', 'Worker in spinning mill', 20000.00, 2, 0.00, 200000.00, 'Valappady (salem)', 'Chennai (Kumananchavadi)', '2511240008', '', '1', 'upload_files/candidate_tracker/86774359464_ResumeThirish3.pdf', NULL, '1', '2025-11-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (0/10)', '', '', '', '', '', '1970-01-01', 1, '2025-11-24 07:09:29', 159, '2025-11-24 03:05:41', 0, NULL, 1),
(27487, 'Sarmivinnarasi Vinchentraj', '4', '7010080878', '7373808629', 'sharmisharmi122003@gmail.com', '2003-12-24', 21, '2', '2', 'Vinchentraj', 'Farmer', 60000.00, 1, 15000.00, 15000.00, '3/793,Matha Kovil Street, alakkudi ,613601', '3/793,Matha Kovil Street, alakkudi ,613601', '2511240009', '1', '2', 'upload_files/candidate_tracker/83504588591_SarmiV.pdf', NULL, '1', '2025-11-25', 10, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-11-24 07:23:36', 154, '2025-11-25 12:01:33', 0, NULL, 1),
(27488, 'Subasri s', '11', '6380681527', '8883067618', 'Subasvkmr@gmail.com', '2003-02-23', 22, '2', '2', '8883067618', 'Farmer', 100000.00, 1, 0.00, 6000.00, 'Kallakurichi', 'Kallakurichi', '2511240010', '1', '1', 'upload_files/candidate_tracker/45823982040_subasriresume214.pdf', NULL, '1', '2025-11-24', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-11-24 09:02:36', 159, '2025-11-24 03:47:07', 0, NULL, 1),
(27489, 'Pushpalatha Murugan', '11', '9677378008', '', 'Subasvkmr@gmail.com', '2003-12-12', 21, '2', '2', 'Murugan', 'Electrician', 15000.00, 0, 0.00, 20000.00, 'Kallakurichi', 'Kallakurichi', '2511240011', '1', '1', 'upload_files/candidate_tracker/68732049328_PushpalathaResume..pdf', NULL, '1', '2025-11-24', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-11-24 09:06:23', 154, '2025-11-24 03:45:04', 0, NULL, 1),
(27490, 'SANJAY B', '13', '6379831467', '9840035494', 'sanjayswag@gamil.com', '2003-08-03', 22, '1', '2', 'a balakrishnan', 'retired', 40.00, 1, 0.00, 10000.00, 'Maduravoyal', 'Maduravoyal', '2511240012', '', '1', 'upload_files/candidate_tracker/62454257433_SANJAYBRESUME.pdf.pdf', NULL, '3', '2025-11-24', 0, '.', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'rejected in aptitude (1/10)', '', '', '', '', '', '1970-01-01', 1, '2025-11-24 09:32:09', 159, '2025-11-24 04:41:13', 0, NULL, 1),
(27491, 'Mughilvannan P', '4', '7810054517', '', 'mughilvannan07@gmail.com', '2001-06-06', 24, '2', '2', 'Pandiyan', 'Agriculture', 15000.00, 1, 10500.00, 18000.00, 'Tirukoilur', 'Ekkattuthangal', '2511240013', '1', '2', 'upload_files/candidate_tracker/35705909356_MughilResume.Expc.docx', NULL, '1', '2025-11-25', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-11-24 04:32:20', 154, '2025-11-25 11:40:30', 0, NULL, 1),
(27492, 'Hema Kumar', '6', '9344927761', '9080294674', 'hemakumar2112@gmail.com', '2000-06-21', 25, '2', '2', 'Vanaroja', 'House wife', 10000.00, 3, 25000.00, 32000.00, 'Gudiyatham', 'Gudiyatham', '2511250001', '1', '2', 'upload_files/candidate_tracker/25599754494_HKNEW.pdf', NULL, '1', '2025-11-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-11-25 05:05:28', 154, '2025-11-25 12:17:32', 0, NULL, 1),
(27493, 'Abirami', '11', '9789853980', '', 'ABIRAMIS2909@GMAIL.COM', '1999-09-29', 26, '2', '2', 'MP Sukumar', 'Self employed', 100000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2511250002', '1', '1', 'upload_files/candidate_tracker/1233187319_ABIRAMIResume2025Oct.pdf', NULL, '1', '2025-11-25', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2025-11-25 05:40:18', 154, '2025-11-25 11:41:14', 0, NULL, 1),
(27494, 'THIRUMALAIKKANNAN G', '13', '9080686611', '9363266989', 'thiruarjun61@gmail.com', '2004-10-16', 21, '5', '2', 'GOVINDASAMY K KANNAGI G', 'Farmer', 35000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2511250003', '', '1', 'upload_files/candidate_tracker/41379775014_THIRUMALAIKKANNANG.pdf', NULL, '1', '2025-11-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in system task', '', '', '', '', '', '1970-01-01', 1, '2025-11-25 06:10:11', 159, '2025-11-25 05:14:11', 0, NULL, 1),
(27495, 'Yaseen baasha', '6', '6381638266', '9597362701', 'yaseenbasha221@gmail.com', '1999-12-31', 25, '2', '2', 'Parents', 'Customer support', 20000.00, 2, 19.00, 26.00, 'Chennai', 'Chennai', '2511250004', '50', '2', 'upload_files/candidate_tracker/16669014766_YASEENRESUME.pdf', NULL, '1', '2025-11-28', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-11-25 06:50:40', 154, '2025-11-28 11:18:13', 0, NULL, 1),
(27496, 'Janani S', '11', '9566256208', '', 'janani04052002@gmail.com', '2002-05-04', 23, '3', '2', 'Shakthi vel S', 'Buffing', 10000.00, 1, 0.00, 3000.00, 'kKD nagar', 'Kodungaiyur, kKD nagar chennai', '2511250005', '', '1', 'upload_files/candidate_tracker/54955079638_SangeethaResumepdf1.pdf', NULL, '1', '2025-11-25', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-11-25 07:22:49', 154, '2025-11-25 02:30:09', 0, NULL, 1),
(27497, 'K. Deepika Selvi', '11', '9176660260', '', 'deepika2606660@gmail.com', '2004-10-25', 21, '3', '2', 'G. Amaravathi', 'Teacher', 50000.00, 1, 0.00, 3000.00, 'T3, Agatheeswar Nagar, Pallavaram', 'T3, Agatheeswar Nagar, Pallavaram', '2511250006', '', '1', 'upload_files/candidate_tracker/61907215901_DeepikaSelviInternshipresume202511242146020000.pdf', NULL, '1', '2025-11-25', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-11-25 09:03:25', 154, '2025-11-25 03:04:26', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27498, 'Siva k', '13', '9360908172', '9514907580', 'sivae542@gmail.com', '2001-04-10', 24, '6', '2', 'Kolanji', 'Farmer', 300000.00, 4, 0.00, 20000.00, 'Namaiyur', 'Chennai', '2511250007', '', '1', 'upload_files/candidate_tracker/12208120736_Siva.K.pdf', NULL, '1', '2025-11-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-25 12:54:50', 1, '2025-11-25 12:57:57', 0, NULL, 1),
(27499, '', '0', '9629366468', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511260001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-26 03:40:05', 0, NULL, 0, NULL, 1),
(27500, 'nivetha princy n', '6', '9363111082', '7299142491', 'nivethaprincy595@gmail.com', '2003-06-01', 22, '2', '2', 'kavitha', 'house wife', 15000.00, 2, 0.00, 15000.00, 'kannigapuram', 'perambur', '2511260002', '1', '1', 'upload_files/candidate_tracker/43622056567_rachel.docxcopycopycopy.docx', NULL, '1', '2025-11-26', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have exp in comsumer durable loan sales for 6 months.  But will not sustain for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-11-26 06:54:24', 159, '2025-11-26 01:09:24', 0, NULL, 1),
(27501, 'aravindhan s', '6', '8072694932', '7200625655', 'aravindhkayal08@gmail.com', '2003-11-10', 22, '2', '2', 'anjali devi', 'farmer', 15000.00, 3, 20000.00, 18000.00, 'chengalpattu', 'mambalam', '2511260003', '1', '2', 'upload_files/candidate_tracker/55699416501_rachel.docxcopycopycopy.docx', NULL, '1', '2025-11-26', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no professional approach in the interview and communication slang not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2025-11-26 06:54:46', 159, '2025-11-26 01:11:13', 0, NULL, 1),
(27502, 'Ganesh', '13', '8608724430', '', 'ganesh460457@gmail.com', '2002-04-07', 23, '2', '2', 'Venkatesan', 'Carpenter', 10000.00, 1, 0.00, 2.80, 'Perambalur', 'Perambalur', '2511260004', '1', '1', 'upload_files/candidate_tracker/86160799772_V.GaneshResume11.pdf', NULL, '1', '2025-11-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (1.5/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-26 12:03:54', 159, '2025-11-28 12:14:25', 0, NULL, 1),
(27503, '', '0', '7358440549', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511260005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-26 12:37:29', 0, NULL, 0, NULL, 1),
(27504, 'AjithKumar S', '13', '9363384609', '', 'ajithkumar200415@gmail.com', '2004-08-15', 21, '2', '2', 'Selvapandian', 'Plumber', 17000.00, 1, 0.00, 18000.00, 'Arakkonam', 'Perambur', '2511260006', '1', '1', 'upload_files/candidate_tracker/39684742205_Ajithresume3.pdf', NULL, '1', '2025-11-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude(3/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-26 01:47:14', 159, '2025-11-28 12:14:37', 0, NULL, 1),
(27505, 'Vidhya Ponnusamy', '13', '7010193440', '', 'aashikavidhya@gmail.com', '2003-08-21', 22, '3', '2', 'Ponnusamy M', 'Farmer', 70000.00, 2, 0.00, 240000.00, 'Salem', 'Salem', '2511270001', '', '1', 'upload_files/candidate_tracker/90754583378_VidhyaResume3.pdf', NULL, '1', '2025-11-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-11-27 04:30:23', 159, '2025-11-27 04:19:42', 0, NULL, 1),
(27506, 'Nithiyanandhan O', '13', '8940057812', '', 'nanthannithiya796@gmail.com', '2003-11-25', 22, '3', '2', 'J Ommurugan', 'Farmer', 20000.00, 3, 0.00, 15000.00, 'Villupuram', 'Villupuram', '2511270002', '', '1', 'upload_files/candidate_tracker/35762742995_resumeeee.pdf', NULL, '1', '2025-11-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-11-27 05:41:59', 159, '2025-11-27 05:23:29', 0, NULL, 1),
(27507, 'Naveen', '13', '6369860077', '9025561536', 'naveenragu2003@gmail.com', '2003-12-22', 21, '2', '2', 'Ragu', 'Driver', 35000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2511270003', '1', '1', 'upload_files/candidate_tracker/74436089434_NaveenResume.pdf', NULL, '1', '2025-11-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in system task', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-11-27 05:57:18', 159, '2025-11-29 09:52:18', 0, NULL, 1),
(27508, 'Murugavelu B V', '4', '9952957794', '7358659968', 'bvmurugavelu@gmail.com', '2002-03-27', 23, '2', '2', 'Boobalan', 'Engineer', 50000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2511270004', '50', '1', 'upload_files/candidate_tracker/69482137350_DOC20251016WA0174..pdf', NULL, '1', '2025-11-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-27 07:01:01', 1, '2025-11-27 01:22:08', 0, NULL, 1),
(27509, 'Lokesh', '6', '8825824418', '7358728368', 'lokeshvijay156@gmail.com', '1998-11-04', 27, '2', '2', 'Shanthi', 'House wife', 100000.00, 1, 22000.00, 18.00, 'Thirunindravur', 'Thirunindravur', '2511270005', '50', '2', 'upload_files/candidate_tracker/62298994356_vnd.openxmlformatsofficedocument.wordprocessingml.pdf', NULL, '1', '2025-12-04', 2, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-11-27 09:54:39', 154, '2025-12-04 03:43:32', 0, NULL, 1),
(27510, 'Vinothini', '4', '8248666466', '', 'Vidhyavino864@gmail.com', '2004-06-08', 21, '2', '2', 'Sivakumar', 'Farmer', 15000.00, 1, 0.00, 18.00, 'Kottaiyampalaiyam', 'Kolathur', '2511270006', '50', '1', 'upload_files/candidate_tracker/93136004268_webuildcv.pdf', NULL, '3', '2025-11-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-27 11:45:07', 1, '2025-11-27 11:51:22', 0, NULL, 1),
(27511, '', '0', '9150344770', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511270007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-27 12:24:44', 0, NULL, 0, NULL, 1),
(27512, 'Gokulakrishnan K', '4', '8870783164', '', 'gokulsugan007@gmail.com', '1999-10-20', 26, '2', '2', 'Kaliyaperumal V', 'Farmer', 30000.00, 3, 13000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2511280001', '1', '2', 'upload_files/candidate_tracker/15928890519_GokulakrishnanK.pdf', NULL, '1', '2025-11-28', 0, '', '3', '59', '2025-12-01', 186000.00, '', '1', '1970-01-01', '1', 'Communication Ok have 10 months exp in vizza chennai no valid documents given need to check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-12-01', 1, '2025-11-28 04:06:08', 60, '2025-11-29 06:30:37', 0, NULL, 1),
(27513, 'fAZLUR RAHMAN', '6', '7448353563', '9710095060', 'fazlfazul46@gmail.com', '2003-06-23', 22, '2', '2', 'Parveen', 'House keeper', 12000.00, 2, 20000.00, 18000.00, 'Triplicane', 'Triplicane', '2511280002', '50', '2', 'upload_files/candidate_tracker/40943337145_aacompressedcompressed.pdf', NULL, '1', '2025-11-28', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'prefers non voice and not performed well in the interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-11-28 05:35:54', 154, '2025-11-28 12:11:10', 0, NULL, 1),
(27514, '', '0', '7305903321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511280003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-28 11:15:42', 0, NULL, 0, NULL, 1),
(27515, '', '0', '6380599508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511280004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-28 11:53:19', 0, NULL, 0, NULL, 1),
(27516, '', '0', '7708515204', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-29 05:10:00', 0, NULL, 0, NULL, 1),
(27517, 'Srinivas S', '34', '9159643075', '', 'srinivass2786@gmail.com', '2003-11-27', 22, '2', '2', 'Shanmugam S', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2511290002', '50', '1', 'upload_files/candidate_tracker/99403032038_SriSTAnudipResume.pdf', NULL, '1', '2025-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-29 05:39:42', 1, '2025-11-29 05:42:55', 0, NULL, 1),
(27518, '', '0', '9629865173', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511290003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-29 05:45:06', 0, NULL, 0, NULL, 1),
(27519, 'Srinivas S', '4', '7806956505', '', 'srinivass2786@gmail.com', '2003-11-27', 22, '2', '2', 'Shanmugam S', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2511290004', '50', '1', 'upload_files/candidate_tracker/28223175191_SriSTAnudipResume.pdf', NULL, '1', '2025-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-29 05:45:49', 1, '2025-11-29 05:50:05', 0, NULL, 1),
(27520, 'Sneha S', '4', '9159399570', '', 'sivak63424@gmail.com', '2002-09-14', 23, '2', '2', 'Sivakumar S', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Vadapalani, Chennai', 'Vadapalani,Chennai', '2511290005', '50', '1', 'upload_files/candidate_tracker/55332932430_softwaretestingres.pdf', NULL, '1', '2025-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-29 06:06:53', 1, '2025-11-29 06:11:10', 0, NULL, 1),
(27521, '', '0', '9840181614', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511290006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-29 06:18:12', 0, NULL, 0, NULL, 1),
(27522, 'Aathirai', '6', '7904255346', '7845521802', 'adhiyaa64@gmail.com', '2004-09-25', 21, '2', '2', 'Puzhal mathi', 'Beautician', 50000.00, 1, 0.00, 18.00, 'Coimbatore', 'Triplicane Chennai', '2511290007', '1', '1', 'upload_files/candidate_tracker/8502323205_AATHIRAI.pdf', NULL, '1', '2025-12-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-11-29 06:32:32', 154, '2025-12-01 01:05:54', 0, NULL, 1),
(27523, '', '0', '6382887731', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511290008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-29 06:39:57', 0, NULL, 0, NULL, 1),
(27524, 'Syed hafiz A', '5', '9380865655', '9986791622', 'syedhafeezar@gmail.com', '2000-12-28', 24, '2', '2', 'syed arif', 'auto driver', 25000.00, 3, 27800.00, 32000.00, 'Bangalore ka', 'Bangalore ka', '2511290009', '57', '2', 'upload_files/candidate_tracker/68632005950_SyedHafizResume2025.pdf', NULL, '1', '2025-11-29', 0, '', '3', '59', '2025-12-04', 360000.00, '', NULL, '2026-02-27', '1', 'Have exp in different domain switched jobs multiple times duw to valid reasons can be trained in our roles will check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55555', '5151', '2025-12-04', 1, '2025-11-29 08:01:15', 60, '2025-12-04 10:12:58', 0, NULL, 1),
(27525, '', '0', '9025935233', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2511290010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-11-29 09:27:19', 0, NULL, 0, NULL, 1),
(27526, 'Kaarthik R', '33', '8667068908', '', 'kaarthikraja.2005@gmail.com', '2005-06-05', 20, '5', '2', 'Rajaram N', 'Accounts manager', 100000.00, 1, 12000.00, 20000.00, 'Pursawalkam', 'Pursawalkam', '2511290011', '', '2', 'upload_files/candidate_tracker/71337163914_CVKaarthik.pdf', NULL, '1', '2026-02-21', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-11-29 01:07:10', 1, '2026-02-21 05:39:42', 0, NULL, 1),
(27527, 'Abhinath R', '4', '7358167442', '', 'abhinathr88@gmail.com', '2003-05-27', 22, '2', '2', 'Ravindran', 'Accountant', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2512010001', '50', '1', 'upload_files/candidate_tracker/73675969572_BlackandWhiteCleanProfessionalA4ResumeforAccountManager2.pdf', NULL, '1', '2025-12-05', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-01 05:20:37', 159, '2025-12-05 11:03:14', 0, NULL, 1),
(27528, 'Priya M', '10', '8431137617', '7353612946', 'maranpriya478@gmail.com', '1994-12-20', 30, '1', '2', 'Maran S', 'Lorry driver', 60.00, 2, 55.00, 60.00, 'Bangalore', 'Bangalore', '2512010002', '', '2', 'upload_files/candidate_tracker/7691883994_Resume1.pdf', NULL, '1', '2025-12-01', 0, 'CA168', '3', '59', '2025-12-09', 720000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in same domain team lead profile Senior Branch Manager profile  based on the manager input we proceed with this cost', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '2025-12-09', 1, '2025-12-01 05:34:14', 60, '2025-12-09 11:22:33', 0, NULL, 1),
(27529, 'Prema C', '6', '8861712946', '8431137617', 'sarathprema30@gmail.com', '2000-01-22', 25, '1', '2', 'Chandra M', 'Hotel business', 60.00, 2, 20.00, 22.00, 'Bangalore', 'Bangalore', '2512010003', '', '2', 'upload_files/candidate_tracker/71647148758_Split202512011127.pdf', NULL, '1', '2025-12-01', 0, 'CA168', '3', '59', '2025-12-09', 264000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in vizza joining along with her TL Priya based on the manager input we are proceeding ahead', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '2025-12-09', 1, '2025-12-01 05:47:48', 162, '2026-04-13 01:06:54', 0, NULL, 1),
(27530, 'LEKHA G', '11', '8838006874', '', '2405084@saec.ac.in', '2002-12-16', 22, '2', '2', 'Govindan', 'Provision store', 40000.00, 1, 0.00, 5000.00, 'Chennai', 'Chennai', '2512010004', '1', '1', 'upload_files/candidate_tracker/58263908025_DOC20251118WA0045.1.pdf', NULL, '1', '2025-12-01', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-12-01 06:45:57', 154, '2025-12-01 12:54:30', 0, NULL, 1),
(27531, 'SORNA PARVATHI S', '11', '6381030793', '', 'Sornaparvathi07@gmail.com', '2003-11-21', 22, '2', '2', 'Sethu Sankara Narayanan S', 'Retired private employee', 20000.00, 1, 0.00, 5000.00, 'Chennai', 'Chennai', '2512010005', '1', '1', 'upload_files/candidate_tracker/48871918996_SPresumedocx1.pdf', NULL, '1', '2025-12-01', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-12-01 06:57:19', 154, '2025-12-01 12:54:06', 0, NULL, 1),
(27532, 'Ramya', '17', '7358011665', '7299832597', 'ramyaramya57654@gmail.com', '2001-04-14', 24, '2', '2', 'Ramesh', 'Self employed', 15000.00, 2, 17.00, 20.00, '12 b naggi Ready garden Guindy', 'Chennai', '2512010006', '1', '2', 'upload_files/candidate_tracker/48884833271_R.RAMYA4.pdf', NULL, '1', '2025-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1030', '0', '0', '0', NULL, 1, '2025-12-01 08:06:53', 1, '2025-12-01 08:15:16', 0, NULL, 1),
(27533, '', '0', '7358011664', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512010007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-01 08:18:37', 0, NULL, 0, NULL, 1),
(27534, 'Mohammed Tajunnoor', '33', '8248805365', '', 'mohamednoor6239@gmail.com', '2002-09-25', 23, '2', '2', 'Samsath Begam', 'House wife', 30000.00, 0, 0.00, 250000.00, 'Ramanathapuram', 'Ramanathapuram', '2512010008', '1', '1', 'upload_files/candidate_tracker/72842457044_MOHAMMEDTAJUNNOORHB.ComGraduateResume.pdf', NULL, '1', '2025-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-12-01 12:55:12', 1, '2025-12-01 01:01:43', 0, NULL, 1),
(27535, 'Shaziya farheen', '4', '7358256295', '9789015629', 'farheenshaziya15@gmail.com', '2003-05-05', 22, '2', '2', 'Mohammed Jamal', 'Assistant office Administrator', 35000.00, 0, 19000.00, 21000.00, 'No:9/3a,2nd floor, Mosque lane ,West Saidapet', 'No:9/3a,2nd floor, Mosque lane ,West Saidapet', '2512010009', '1', '2', 'upload_files/candidate_tracker/9342500025_ShaziyaFarheenResume.pdf', NULL, '1', '2025-12-02', 60, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-01 12:55:29', 154, '2025-12-02 03:41:30', 0, NULL, 1),
(27536, 'sheik mohammed', '4', '6381186460', '', 'sheikmohammed332211@gmail.com', '2000-10-08', 25, '2', '2', 'shahul hameed', 'business', 50.00, 2, 0.00, 30.00, 'chen egmo', 'egmore', '2512010010', '1', '1', 'upload_files/candidate_tracker/23232228545_Document.pdf', NULL, '3', '2025-12-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-01 12:57:27', 159, '2025-12-03 04:21:58', 0, NULL, 1),
(27537, 'IMMANUEL S', '33', '8056282158', '', 'simmanuel654@gmail.com', '2003-10-08', 22, '2', '2', 'Susila', 'Tailor', 150000.00, 0, 0.00, 20000.00, 'Chennai', 'Ayanavaram', '2512010011', '1', '1', 'upload_files/candidate_tracker/88239480887_IMMANUEL.SRESUME.pdf', NULL, '1', '2025-12-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-12-01 12:59:20', 1, '2025-12-01 01:05:24', 0, NULL, 1),
(27538, 'K Jeevanandham', '33', '9498418037', '9677274137', 'jeevadass1980@gmail.com', '2004-11-17', 21, '2', '2', 'V kamal Dass', '10th', 105000.00, 1, 0.00, 14500.00, 'Avadi', 'Avadi', '2512010012', '1', '1', 'upload_files/candidate_tracker/11148724348_KJeevanandhamresume1.pdf', NULL, '3', '2025-12-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-01 01:06:21', 154, '2025-12-02 03:39:44', 0, NULL, 1),
(27539, 'Sanjay K', '33', '6380149718', '', 'sanjay.k141102@gmail.com', '2002-11-14', 23, '2', '2', 'Kalyana Sundaram P', 'Electrician (Self-employed)', 20000.00, 1, 0.00, 18000.00, 'Madhavaram Milk Colony, Chennai', 'Madhavaram Milk Colony, Chennai', '2512010013', '1', '1', 'upload_files/candidate_tracker/91732933860_SANJAYK1compressed2.pdf', NULL, '1', '2025-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-12-01 03:26:04', 1, '2025-12-01 03:32:15', 0, NULL, 1),
(27540, 'Sneha D G', '6', '6363575120', '', 'snehagolsangisneha@gmail.com', '1999-10-08', 26, '1', '2', 'Dayanand', 'Labour', 30000.00, 2, 2.40, 3.50, 'Ranibennur', 'Vijaynagar', '2512020001', '', '2', 'upload_files/candidate_tracker/71008079025_SnehaDGResume4.pdf', NULL, '1', '2025-12-02', 0, 'C99229', '3', '59', '2025-12-09', 270000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in just dial fresher for our roles need to check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '2025-12-09', 1, '2025-12-02 05:28:26', 60, '2025-12-09 05:12:30', 0, NULL, 1),
(27541, 'jyothi', '5', '8639721170', '9941269598', 'jyothipoojadj15@gmail.com', '1999-01-17', 26, '2', '1', 'dinesh', 'senior accountant', 25000.00, 1, 19000.00, 23000.00, 'choolaimedu', 'choolaimedu', '2512020002', '42', '2', 'upload_files/candidate_tracker/84660395428_JyothiUResume.pdf', NULL, '1', '2025-12-02', 0, '', '3', '59', '2025-12-05', 285000.00, '', '3', '2025-12-05', '1', 'Communication Ok have exp in sales store exp goclours confident candidate open for insurance sales can be trained', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55557', '55557', '2025-12-05', 1, '2025-12-02 05:52:46', 60, '2025-12-04 07:36:11', 0, NULL, 1),
(27542, 'Sharon Ruby Devadharshini J', '11', '9884436918', '9710178568', 'jsharonruby@gmail.com', '2004-07-06', 21, '6', '2', 'S. J. M. RAJKUMAR', 'Daily wages', 100000.00, 0, 0.00, 3000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2512020003', '', '1', 'upload_files/candidate_tracker/20785927409_resume1.pdf', NULL, '1', '2025-12-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-02 05:55:32', 1, '2025-12-02 06:17:25', 0, NULL, 1),
(27543, 'Rakshitha.R', '6', '9611347874', '7892542535', 'rakshuuu88@gmail.com', '2004-10-10', 21, '2', '2', 'Ramesh', 'Supervisor', 30000.00, 1, 0.00, 18000.00, '#145 Hommadevanahalli gottigere post, Bangalore', '49, 1st Main Rd, Jitendra Nagar, Lal Bahadur', '2512020004', '1', '1', 'upload_files/candidate_tracker/17637683743_RakshithaR11.pdf', NULL, '1', '2025-12-02', 0, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55555', '5151', '1970-01-01', 1, '2025-12-02 05:56:01', 162, '2025-12-10 04:45:37', 0, NULL, 1),
(27544, 'Bharath H', '6', '6363054051', '', 'bharath652004@gmail.com', '2004-05-06', 21, '2', '2', 'Hanumanth', 'Driver', 25000.00, 3, 0.00, 18000.00, 'Hommadevanahalli banglore south', 'Konkunte cross road sharadha nagara', '2512020005', '1', '1', 'upload_files/candidate_tracker/14988796132_bh2.pdf', NULL, '1', '2025-12-02', 0, '', '3', '59', '2025-12-10', 204000.00, '', '1', '1970-01-01', '2', 'Fresher candidate, will check', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55555', '5151', '1970-01-01', 1, '2025-12-02 05:56:14', 104, '2025-12-10 09:42:22', 0, NULL, 1),
(27545, 'Mathuvini Mahendran', '4', '7418420719', '9843889632', 'mathuvini07@gmail.com', '2002-06-19', 23, '2', '2', 'Mahendran', 'Driver', 30000.00, 1, 15000.00, 16000.00, 'Thiruppanandal', 'Thiruppanandal', '2512020006', '1', '2', 'upload_files/candidate_tracker/1588192507_Mathuviniresume250108134703.pdf', NULL, '1', '2025-12-02', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suite', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-12-02 06:53:28', 154, '2025-12-02 12:45:02', 0, NULL, 1),
(27546, 'Shakila K', '4', '6369655816', '7094833365', 'shakilakamaraj1302@gmail.com', '2003-02-13', 22, '2', '2', 'Kamaraj', 'Agriculture', 30000.00, 3, 15000.00, 15500.00, 'Tiruvannamalai', 'Thiruppanandal', '2512020007', '1', '2', 'upload_files/candidate_tracker/60617599896_shakilaresume.pdf', NULL, '1', '2025-12-02', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-12-02 06:53:41', 154, '2025-12-02 12:44:31', 0, NULL, 1),
(27547, 'Mary swapna', '6', '8925176377', '', 'cutesopnaj@gmail.com', '2004-11-21', 21, '2', '2', 'Juliet mary', 'Cooking', 10.00, 1, 18000.00, 20000.00, 'St.Thomas Mount', 'St.Thomas Mount', '2512020008', '1', '2', 'upload_files/candidate_tracker/93333898858_DOC20251112WA0035.compressed.pdf', NULL, '2', '2025-12-02', 6, '', '1', '164', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1017', '', '55692', '5151', '1970-01-01', 1, '2025-12-02 09:17:27', 154, '2025-12-02 05:50:40', 0, NULL, 1),
(27548, '', '0', '9629927941', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512020009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-02 12:22:37', 0, NULL, 0, NULL, 1),
(27549, 'jai ganesh R', '6', '9345973191', '9080613369', 'r.jaiganesh2005@gmail.com', '2005-07-22', 20, '2', '2', 'D.Rajendiran', 'Farmer', 12000.00, 0, 0.00, 18000.00, 'vikravandi Villupuram district', 'Porur nearby signal(divin mens hostel)', '2512020010', '50', '1', 'upload_files/candidate_tracker/73342897092_Jaiganeshresume.pdf', NULL, '1', '2025-12-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-02 01:01:24', 154, '2025-12-03 06:42:42', 0, NULL, 1),
(27550, 'Mohammed usman gani A', '33', '8248895840', '9677284337', 'Usman.acct170@gmail.com', '2005-02-24', 20, '2', '2', 'Abusali', 'Accounting', 35000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2512020011', '1', '1', 'upload_files/candidate_tracker/1252167332_usman.resume11.pdf', NULL, '1', '2025-12-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-02 01:26:01', 104, '2026-01-08 09:50:59', 0, NULL, 1),
(27551, 'Deepak R', '33', '8438340802', '', 'deepakravikumar08@gmail.com', '2004-02-08', 21, '2', '2', 'ravikumar', 'pvt compay', 20000.00, 1, 16000.00, 20000.00, 'perambur', 'perambur', '2512020012', '1', '2', 'upload_files/candidate_tracker/21957037267_Deepakupdatedresume.pdf', NULL, '1', '2025-12-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-02 01:27:08', 159, '2025-12-03 03:04:51', 0, NULL, 1),
(27552, '', '0', '9080225809', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512020013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-02 01:30:05', 0, NULL, 0, NULL, 1),
(27553, '', '0', '6381186468', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512020014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-02 07:51:36', 0, NULL, 0, NULL, 1),
(27554, 'Viji Ravi', '4', '9043121905', '9790117253', 'Viji.avasctnj@gmail.com', '2003-05-12', 22, '2', '2', 'Vedhavalli', 'Coolie', 20000.00, 3, 20000.00, 16000.00, 'Ammapet', 'Ammapet', '2512030001', '1', '2', 'upload_files/candidate_tracker/43018276561_RESUME.pdf', NULL, '1', '2025-12-03', 0, '', '3', '59', '2025-12-05', 180000.00, '', NULL, '2026-01-19', '2', 'Communication Ok have exp in calling different domain can give a try in our roles', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-12-05', 1, '2025-12-03 04:34:18', 60, '2025-12-04 07:37:15', 0, NULL, 1),
(27555, 'Kiruthisha R', '4', '7845548427', '7639198251', 'kiruthisha007@gmail.com', '2004-11-18', 21, '2', '2', 'Ramesh', 'Farmer', 20000.00, 1, 0.00, 12000.00, '301/1 mela st aruthavapuram 2hanjavur (dt)', '301/1mela st aruthavapuram 2hanjavur (dt)', '2512030002', '1', '1', 'upload_files/candidate_tracker/43769483556_PDFGallery20251203101917.pdf', NULL, '1', '2025-12-03', 0, '', '3', '59', '2025-12-04', 156000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher for job can be trained in our roles and check open to learn let us check', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-12-04', 1, '2025-12-03 04:37:55', 60, '2025-12-04 09:45:24', 0, NULL, 1),
(27556, 'Nawaz sherif. A', '4', '9080728247', '8270973851', 'nawazsherif851@gmail.com', '2003-05-19', 22, '2', '2', 'Jahanara', 'Fresher', 20000.00, 1, 0.00, 15000.00, 'Thoothukkudi', 'Chennai velachery', '2512030003', '50', '1', 'upload_files/candidate_tracker/63341494728_downloadresume.pdf', NULL, '1', '2025-12-03', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'already have 2 month exp creditmantri for hindi voice process but not comfortable with hindi voice process so got relived but now he is the confused state to go with IT or sales so sustainability doubts', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-12-03 05:08:58', 159, '2025-12-03 04:31:12', 0, NULL, 1),
(27557, 'Naresh prabhu', '33', '9498387348', '', 'nareshprabhu07@gmail.com', '2000-02-27', 25, '2', '1', 'Sathya murthy', 'Courier', 40000.00, 2, 0.00, 18.00, 'Chromepet', 'Chromepet', '2512030004', '1', '1', 'upload_files/candidate_tracker/19336704962_NARESHPRABHURESUME11.pdf', NULL, '1', '2025-12-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-03 05:10:25', 159, '2025-12-03 03:04:31', 0, NULL, 1),
(27558, 'Kaniraj A', '5', '8867808291', '', 'kanirajarunkumar@gmail.com', '2001-04-10', 24, '2', '2', 'Arunkumar', 'Carpenter', 20000.00, 1, 3.50, 5.50, 'No.88B/7, 6th Cross, 9th Main Road, Prakashnagar', 'No.88B/7, 6th Cross, 9th Main Road, Prakashnaga', '2512030005', '57', '2', 'upload_files/candidate_tracker/19467350788_KanirajAResume.pdf', NULL, '3', '2025-12-03', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for rm suggested ctc upto 4lac but his Expectation 5lac but 4lac its final he dont have any core related experience but he have knowledge', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-12-03 05:25:04', 154, '2025-12-06 05:49:40', 0, NULL, 1),
(27559, 'gopalakrishnan', '6', '9597217895', '', 'krishnangopal5254@gmail.com', '1997-02-18', 28, '2', '2', 'M.pandi', 'wevar', 18000.00, 2, 0.00, 20000.00, 'west street,Jakkampatti, Aundipatti,Theni', 'ganapathy street,west mambalam,chennai', '2512030006', '1', '1', 'upload_files/candidate_tracker/97627209982_GopalSalesResume.pdf', NULL, '1', '2025-12-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-12-03 05:36:27', 154, '2025-12-03 12:47:06', 0, NULL, 1),
(27560, 'Kaliraj G', '6', '8098001281', '', 'kaliraj215154@gmail.com', '2000-06-18', 25, '2', '2', 'Ganesan T', 'Weaver', 10000.00, 2, 0.00, 20000.00, 'West street Aundipatti,Theni', 'West Mambalam', '2512030007', '1', '1', 'upload_files/candidate_tracker/1072198955_Kalirajmech.pdf', NULL, '1', '2025-12-03', 0, '', '3', '59', '2025-12-09', 204000.00, '', '3', '2026-04-29', '2', 'Communication Ok have exp in other domain fresher for telesales need to check in person and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55732', '5151', '2025-12-09', 1, '2025-12-03 05:37:41', 60, '2025-12-09 10:20:46', 0, NULL, 1),
(27561, 'VINIT SANGAPPA SULIKERI', '4', '6362605072', '7090747066', 'vinitsulikeri530@gmail.com', '1999-07-21', 26, '3', '2', 'Sangappa', 'NA', 40.00, 1, 0.00, 20.00, 'S b Nagar betgeri Gadag', 'Bellandur near jio office', '2512030008', '', '1', 'upload_files/candidate_tracker/20776262385_CV2025112419433733.pdf', NULL, '1', '2025-12-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-03 05:44:30', 1, '2025-12-03 05:49:28', 0, NULL, 1),
(27562, 'Dhanush Pandian Manikandan', '5', '7871180982', '6382858930', 'dhanushpandian22@gmail.com', '2001-12-22', 23, '2', '2', 'Manikandan', 'Driver', 20000.00, 1, 20000.00, 20000.00, 'Chennai', 'Chennai', '2512030009', '1', '2', 'upload_files/candidate_tracker/41816009550_DhanushnewResume.docx', NULL, '1', '2025-12-03', 0, '', '3', '59', '2025-12-08', 300000.00, '', '3', '2025-12-10', '2', 'Communication Ok have exp in concentrix for an year after that career gap need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55735', '55557', '2025-12-08', 1, '2025-12-03 05:47:57', 60, '2025-12-08 10:55:24', 0, NULL, 1),
(27563, 'Vasanth M', '6', '6382858930', '7871180982', 'vasanthm1000@gmail.com', '2001-08-13', 24, '2', '2', 'M.Mani', 'Business', 30000.00, 1, 0.00, 18000.00, 'Salem', 'Chennai', '2512030010', '1', '1', 'upload_files/candidate_tracker/73623069702_Resume.pdf', NULL, '1', '2025-12-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-12-03 06:04:43', 154, '2025-12-03 06:40:30', 0, NULL, 1),
(27564, 'Vikkash Mohanraj', '6', '7358406866', '', 'vikkashvicky2002@gmail.com', '2002-08-03', 23, '2', '2', 'Mohanraj p', 'Business', 20000.00, 1, 18000.00, 20000.00, 'Kanchipuram', 'Saidapet', '2512030011', '1', '2', 'upload_files/candidate_tracker/25443851592_VikkashM.docx', NULL, '1', '2025-12-03', 0, '', '3', '59', '2025-12-05', 216000.00, '', '5', '1970-01-01', '1', 'Communication Ok 6 months exp in sales calling but seems to be 5050 in sustainability need to check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1070', '5151', '2025-12-05', 1, '2025-12-03 06:05:15', 60, '2025-12-04 07:42:31', 0, NULL, 1),
(27565, 'Balamurugan.b', '4', '9080613369', '9344027971', 'balamurugan009751@gmail.com', '2004-11-26', 21, '2', '2', 'Baskaran', 'Farmer', 12000.00, 1, 0.00, 16000.00, 'T pitaripattu, Villupuram', 'Porur, Chennai', '2512030012', '50', '1', 'upload_files/candidate_tracker/27030566613_resume.pdf', NULL, '1', '2025-12-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-03 07:08:34', 154, '2025-12-03 06:42:06', 0, NULL, 1),
(27566, 'Shreyas a', '6', '8618937504', '9738181610', 'shreyassa548@gmail.com', '2006-06-29', 19, '1', '2', 'Sowmya', 'Bpo', 70000.00, 1, 0.00, 16000.00, 'Ramanagara magai', 'Nelamangala , Bangalore', '2512030013', '', '1', 'upload_files/candidate_tracker/68097978537_ShreyasResumeSimple.pdf', NULL, '1', '2025-12-03', 0, 'CA168', '1', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'I1077', '55566', '1970-01-01', 1, '2025-12-03 08:40:33', 162, '2025-12-03 03:16:49', 0, NULL, 1),
(27567, 'S Kishore Kumar', '13', '8056841420', '', 'kishorekumar.s2003@gmail.com', '2003-06-19', 22, '6', '2', 'Shankar', 'Quality checking in leather factory', 20000.00, 1, 0.00, 10000.00, 'Vellore', 'Vellore', '2512030014', '', '1', 'upload_files/candidate_tracker/72354258648_Resume.pdf', NULL, '1', '2025-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-03 11:15:19', 1, '2025-12-03 11:18:13', 0, NULL, 1),
(27568, 'Sarulatha', '4', '9176182385', '', 'johnsaru86@gmail.com', '1996-06-12', 29, '2', '1', 'John paul', 'Sales officer', 40000.00, 0, 17.00, 20.00, 'Pozhichalur', 'Pozhichalur', '2512030015', '50', '2', 'upload_files/candidate_tracker/42362209532_SARULATHACresumenew20241.docx', NULL, '1', '2025-12-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-03 11:29:24', 1, '2025-12-03 11:34:30', 0, NULL, 1),
(27569, '', '0', '8825597130', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512030016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-03 11:39:36', 0, NULL, 0, NULL, 1),
(27570, 'syed zainulabideen', '4', '9092581995', '9176172993', 'praveen333camy@gmail.com', '1995-10-29', 30, '2', '2', 'andal', 'homemaker', 14600.00, 0, 16000.00, 22000.00, 'chennai', 'chennai', '2512030017', '50', '2', 'upload_files/candidate_tracker/8893759182_ModernMinimalistProfessionalCVResume.pdf.pdf', NULL, '1', '2025-12-04', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-03 12:41:40', 1, '2025-12-03 12:46:43', 0, NULL, 1),
(27571, '', '0', '6374530448', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512030018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-03 12:43:47', 0, NULL, 0, NULL, 1),
(27572, '', '0', '7845440704', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512030019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-03 12:48:56', 0, NULL, 0, NULL, 1),
(27573, 'Gurumurthy G', '33', '8939178836', '', 'gurumurthygangadurai@gmail.com', '2003-02-02', 22, '2', '2', 'Parameswari. G', 'Home maker', 35000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2512030020', '1', '1', 'upload_files/candidate_tracker/82419969250_g.gurumurthyb.comresume.docx', NULL, '1', '2025-12-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-12-03 01:24:48', 1, '2025-12-03 01:31:05', 0, NULL, 1),
(27574, 'S Rajesh', '33', '9551903330', '', 'rmksraj@gmail.com', '2004-08-20', 21, '2', '2', 'K Srinivasan', 'Wage worker', 15000.00, 1, 0.00, 17000.00, 'No. 478, School Street, Panruti, Cuddalore, 607106', '28/32 Buddar Street, East Tambaram, Chennai-600059', '2512030021', '1', '1', 'upload_files/candidate_tracker/52413456392_RajeshResume.pdf', NULL, '1', '2025-12-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-03 01:35:13', 154, '2025-12-04 02:37:49', 0, NULL, 1),
(27575, 'Monisha k', '4', '6381284898', '', 'kmonisha167@gmail.com', '2002-02-28', 23, '2', '2', 'Karthikeyan and Rajalakshmi', 'Driver and Home Maker', 200000.00, 0, 0.00, 23000.00, 'Chennai', 'Chennai', '2512030022', '1', '2', 'upload_files/candidate_tracker/84076252613_MONISHAKcompress.pdf', NULL, '1', '2025-12-04', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'english communication is average and salary expectation seems to be high', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2025-12-03 01:58:48', 154, '2025-12-04 02:36:41', 0, NULL, 1),
(27576, 'sahista.M', '4', '9655488746', '9176374652', 'sahi2005sta02@gmail.com', '2005-01-02', 20, '2', '2', 'Sulthana', 'Tailor', 9000.00, 2, 0.00, 15000.00, '19/11 T.V.K nagar 4th Street Pulianthope ch-12', '19/11 T.V.K Nagar 4th Street Pulianthope Ch-12', '2512030023', '1', '1', 'upload_files/candidate_tracker/32484879538_downloadresume1.pdf', NULL, '1', '2025-12-04', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not even speaking lot of fear and planning for next level as professor', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2025-12-03 02:14:52', 154, '2025-12-04 03:44:19', 0, NULL, 1),
(27577, '', '0', '6374970615', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512030024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-03 03:05:08', 0, NULL, 0, NULL, 1),
(27578, 'Manikandan', '33', '7338898916', '9790864524', 'mani.rgmk18@gmail.com', '2005-07-10', 20, '2', '2', 'Ramesh', 'Invitation Printer', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2512040001', '1', '1', 'upload_files/candidate_tracker/15865665498_MANICV.pdf', NULL, '1', '2026-01-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-04 04:44:21', 154, '2026-01-21 12:36:10', 0, NULL, 1),
(27579, 'syed zainulabideen', '4', '9176172993', '9092581995', 'praveen333camy@gmail.com', '1995-10-29', 30, '2', '2', 'andal', 'homemaker', 16000.00, 0, 16000.00, 22000.00, 'choolai chennai', 'kolathur chennai', '2512040002', '50', '2', 'upload_files/candidate_tracker/82627902250_Mycv.pdf.pdf', NULL, '1', '2025-12-08', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-04 04:46:36', 159, '2025-12-08 11:54:44', 0, NULL, 1),
(27580, 'Veeramani S', '4', '8940082761', '9943235843', 'veeraveerabca@gmail.com', '2001-12-25', 23, '2', '2', 'Soundharajan', 'Farmer', 70000.00, 2, 0.00, 20000.00, 'kallumadai', 'kallumadai', '2512040003', '1', '1', 'upload_files/candidate_tracker/96303646833_Resume.pdf', NULL, '1', '2025-12-04', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate not Fit for profile ', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-12-04 04:49:19', 154, '2025-12-04 10:32:20', 0, NULL, 1),
(27581, 'Iswariya M R', '4', '8825587877', '9866731611', 'mriswariya25@gmail.com', '1999-05-31', 26, '2', '2', 'M Ramakrishnan', 'Security', 20000.00, 2, 12240.00, 20000.00, 'Chennai', 'Chennai', '2512040004', '1', '2', 'upload_files/candidate_tracker/50195676700_CVIswariyaMR.pdf', NULL, '1', '2025-12-04', 0, '', '3', '59', '2025-12-05', 204000.00, '', '1', '1970-01-01', '2', 'Communication Good Fresher for renewal  can be trained in our roles need to check in training', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '2025-12-05', 1, '2025-12-04 05:02:32', 60, '2025-12-04 07:43:27', 0, NULL, 1),
(27582, '', '0', '9080431359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512040005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-04 05:10:11', 0, NULL, 0, NULL, 1),
(27583, 'SHANMUGA PRIYA', '4', '9080431350', '8838535078', 'priyasathis67@gmail.com', '1999-07-07', 26, '2', '1', 'Sathis kumar', 'Senior engineer', 40000.00, 3, 15000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2512040006', '1', '2', 'upload_files/candidate_tracker/53183672262_Resume1.pdf', NULL, '1', '2025-12-04', 1, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-12-04 05:10:32', 154, '2025-12-04 10:52:18', 0, NULL, 1),
(27584, 'Aravindan K', '5', '8825637478', '8825478232', 'aravindlakshmi1524@gmail.com', '1998-10-15', 27, '2', '1', 'Jayalakshmi R', 'Housewife', 42000.00, 1, 550000.00, 700000.00, 'Tharamani Chennai', 'Tharamani chennai', '2512040007', '1', '2', 'upload_files/candidate_tracker/75364907606_edited84350983767808.pdf', NULL, '1', '2025-12-04', 0, '', '3', '59', '2025-12-15', 600000.00, '', '1', '1970-01-01', '1', 'Communication Good Have exp in relevant domain Target for 90 Days 20 Lakhs Business then 7-7.5 LPA (Arrear will also be given)now 6 LPA', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55557', '5151', '2025-12-15', 1, '2025-12-04 05:24:14', 60, '2025-12-13 05:47:46', 0, NULL, 1),
(27585, 'Aravind', '6', '8667598279', '9952652876', 'aravindvenkatesan2409@gmail.com', '2002-09-24', 23, '2', '2', 'Vijayalakshmi', 'Govt employee', 25000.00, 0, 20000.00, 27000.00, 'Cuddalore', 'Chennai', '2512040008', '57', '2', 'upload_files/candidate_tracker/55097133693_Aravindresume202510311924300000.pdf202511051609500000.pdf', NULL, '1', '2025-12-04', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-04 06:03:18', 154, '2025-12-04 03:44:45', 0, NULL, 1),
(27586, 'Kumaran', '6', '9597049090', '7825048566', 'Kumarankarthik745@gmail.com', '2002-07-26', 23, '2', '2', 'Natarajan', 'Former', 25000.00, 1, 0.00, 300000.00, 'Cuddalore', 'Chennai', '2512040009', '57', '2', 'upload_files/candidate_tracker/74889775734_kumaranresume04.12.2025.pdf', NULL, '1', '2025-12-04', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-04 06:04:17', 154, '2025-12-04 03:44:59', 0, NULL, 1),
(27587, 'satheesh', '13', '6374904885', '9940247791', 'satheeshkumaran316@gmail.com', '2004-07-08', 21, '2', '2', 'kumaran', 'tneb', 30000.00, 1, 0.00, 25000.00, 'ennore', 'chennai', '2512040010', '50', '1', 'upload_files/candidate_tracker/85273974152_satheeshresume..pdf', NULL, '1', '2025-12-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-04 06:23:37', 1, '2025-12-04 06:36:57', 0, NULL, 1),
(27588, 'S Mohamed Althaf', '31', '6374791486', '', 'mohamedalthaf11.3.2003@gmail.com', '2003-03-11', 22, '2', '2', 'H sheik mohammed', 'Labour', 8000.00, 1, 0.00, 3.50, 'Tirunelveli', 'Tirunelveli', '2512040011', '1', '1', 'upload_files/candidate_tracker/83500363064_MohamedalthafCVdocu.pdf202511261009270000.pdf', NULL, '1', '2025-12-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (4/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-04 06:23:42', 159, '2025-12-10 03:57:22', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27589, 'Madhavan G 8491 9442 9874', '4', '9941245217', '', 'madhavamadhava977@gmail.com', '2004-07-06', 21, '2', '2', 'Anna poorani', 'Cooli', 13000.00, 3, 14000.00, 16000.00, 'Wimco Nagar', 'Wimco Nagar', '2512040012', '50', '2', 'upload_files/candidate_tracker/84769562534_MADHAVANGRESUME.pdf', NULL, '1', '2025-12-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-04 07:05:24', 1, '2025-12-04 07:10:29', 0, NULL, 1),
(27590, '', '0', '8300156978', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512040013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-04 12:29:57', 0, NULL, 0, NULL, 1),
(27591, 'Divya .P', '4', '9080243479', '', 'divya23032005@gmail.com', '2005-02-23', 20, '6', '2', 'Magesh.p', 'Home maker', 10000.00, 1, 0.00, 18000.00, 'Thiruvannamala', 'Velachery', '2512040014', '', '1', 'upload_files/candidate_tracker/6130174458_DivyaPandiyanResume1.pdf', NULL, '1', '2025-12-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-04 12:49:50', 1, '2025-12-04 12:53:37', 0, NULL, 1),
(27592, '519469153671', '4', '6382604884', '', 'g.dhanalakshmivenkatesh@gmail.com', '1998-10-28', 27, '2', '2', 'Venkatesh', 'Business', 50000.00, 3, 18000.00, 18000.00, 'Korukkupet', 'Ayanavara', '2512040015', '50', '2', 'upload_files/candidate_tracker/72173659783_DhanalakshmiResume2025.PDF202511181658080000.pdf', NULL, '1', '2025-12-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-04 01:01:00', 1, '2025-12-04 01:12:52', 0, NULL, 1),
(27593, 'Dhanalakshmi', '4', '6383604884', '6382604884', 'g.dhanalakshmivenkatesh@gmail.com', '1998-10-28', 27, '2', '2', 'Venkatesh', 'Business', 50000.00, 3, 18000.00, 18000.00, 'Korukkupet', 'Ayanavara', '2512040016', '50', '2', 'upload_files/candidate_tracker/55576769578_DhanalakshmiResume2025.PDF202511181658080000.pdf', NULL, '1', '2025-12-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-04 01:17:13', 1, '2025-12-04 01:20:44', 0, NULL, 1),
(27594, 'Nandhakumar J', '33', '7358553258', '', 'Nandhakumar84709@gmail.com', '2002-01-20', 23, '2', '2', 'Jayakumar P', 'Mason', 15000.00, 2, 17500.00, 20000.00, 'Kattumannarkovil, Cuddalore', 'Saidapet, Chennai', '2512040017', '1', '2', 'upload_files/candidate_tracker/95786584622_NANDHAResume.pdf', NULL, '1', '2025-12-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-04 01:35:52', 154, '2025-12-05 12:44:01', 0, NULL, 1),
(27595, 'Vishwa R', '4', '6374228951', '6369215651', 'vishwa93mm@gmail.com', '2005-04-14', 20, '2', '2', 'Ravi', 'Farmer', 12000.00, 1, 0.00, 15000.00, 'Melapunavasal, thiruvaiyaru', 'Melapunavasal, thiruvaiyaru', '2512050001', '1', '1', 'upload_files/candidate_tracker/80827827075_vishwaresume2.pdf', NULL, '1', '2025-12-05', 0, '', '3', '59', '2025-12-08', 165000.00, '', '1', '1970-01-01', '1', 'Communication Ok fresher for our roles need to train from scratch can give a trya', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2025-12-08', 1, '2025-12-05 04:59:13', 60, '2025-12-08 09:44:59', 0, NULL, 1),
(27596, 'Rajasurya', '5', '6382891316', '', 'rajasurya1411@gmail.com', '1996-11-14', 29, '2', '2', 'G.M.Rajarethinam', 'Farmer', 20000.00, 1, 20000.00, 25000.00, 'Mayiladuthurai', 'Siruseri', '2512050002', '42', '2', 'upload_files/candidate_tracker/52685854411_RajasuryaResume.pdf', NULL, '1', '2025-12-05', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55560', '5151', '1970-01-01', 1, '2025-12-05 05:07:30', 154, '2025-12-05 02:35:20', 0, NULL, 1),
(27597, 'chakrapani n m', '5', '8374845723', '7842545507', 'nmchakri19@gmail.com', '1993-03-04', 32, '2', '1', 'N. Sirisha', 'Farmer', 5.00, 1, 18000.00, 25000.00, 'Tiruttani', 'Tiruttani', '2512050003', '42', '2', 'upload_files/candidate_tracker/71037545422_ChakrapaniResume.docx', NULL, '1', '2025-12-05', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-05 05:31:04', 159, '2025-12-05 02:41:19', 0, NULL, 1),
(27598, 'paulraj d', '5', '9176525977', '', 'dpaulrajmatthew17@gmail.com', '1999-10-17', 26, '2', '2', 'Yahoshuva D', 'Construction worker', 50000.00, 1, 22000.00, 30000.00, 'Thiruvottiyur chennai', 'Thiruvottiyur chennai', '2512050004', '42', '2', 'upload_files/candidate_tracker/14314122876_Paulresume.docx', NULL, '1', '2025-12-05', 1, '', '3', '59', '2025-12-08', 336000.00, '', NULL, '2026-01-08', '2', 'Communication Ok have exp in sales but different domain can give a try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55560', '5151', '2025-12-08', 1, '2025-12-05 05:31:18', 60, '2025-12-08 10:18:04', 0, NULL, 1),
(27599, '', '0', '7395977579', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512050005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-05 05:42:13', 0, NULL, 0, NULL, 1),
(27600, 'Jaffer Siddiq', '6', '8695354286', '9444045346', 'jaffersiddiq1234@gmail.com', '2001-08-02', 24, '2', '1', 'Mujeeb rahaman', 'Business', 35000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2512050006', '50', '1', 'upload_files/candidate_tracker/237498255_jafferstylishresume.pdf', NULL, '1', '2025-12-06', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not comfortable with insurance sales and more interested towards his core only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-12-05 07:22:30', 154, '2025-12-06 11:29:14', 0, NULL, 1),
(27601, '', '0', '9677195859', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512050007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-05 08:51:03', 0, NULL, 0, NULL, 1),
(27602, 'N.Adhisankar', '33', '7305857151', '', 'adhisankar0805@gmail.com', '2000-05-08', 25, '2', '2', 'D.Natarajan', 'Purchases Manager', 80000.00, 1, 15500.00, 25000.00, 'Chennai', 'Ambattur', '2512050008', '1', '2', 'upload_files/candidate_tracker/30781440368_adhicvnew.pdf', NULL, '1', '2025-12-06', 15, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-12-05 09:16:34', 159, '2025-12-06 10:46:11', 0, NULL, 1),
(27603, 'Vignesh periyasamy', '4', '7810075690', '9884959082', 'pvignesh166@gmail.com', '1995-07-30', 30, '2', '2', 'Periyasamy', 'Former', 30000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2512050009', '1', '2', 'upload_files/candidate_tracker/13279610089_VIGNESHRESUME2025.pdf', NULL, '1', '2025-12-06', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-12-05 10:13:57', 154, '2025-12-06 10:03:37', 0, NULL, 1),
(27604, 'Pradeesh.A', '33', '8438819356', '9943608521', 'a.pradeesh14@gmail.com', '2003-09-24', 22, '2', '2', 'Anantha babi', 'Artist', 40000.00, 3, 0.00, 20000.00, 'Mayiladuthurai', 'Chennai', '2512050010', '1', '1', 'upload_files/candidate_tracker/92922256272_Pradeesh.B.com.pdf', NULL, '1', '2025-12-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-12-05 01:10:01', 1, '2025-12-06 04:30:26', 0, NULL, 1),
(27605, '', '0', '9345695069', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512050011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-05 04:17:29', 0, NULL, 0, NULL, 1),
(27606, 'Aakash Balamurugan', '11', '8489191203', '9095786741', 'b.aakash1326@gmail.com', '2003-09-26', 22, '2', '2', 'P.Balamurugan', 'Painting contractor', 45000.00, 1, 0.00, 6000.00, 'Madurai', 'Madurai', '2512060001', '1', '1', 'upload_files/candidate_tracker/2096035879_Aakash.B1326.pdf', NULL, '1', '2025-12-06', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-12-06 04:35:04', 154, '2025-12-06 11:30:39', 0, NULL, 1),
(27607, 'S.JAYA SURIYA', '11', '9025731104', '', 'sjsuriya0007@outlook.com', '2003-10-20', 22, '2', '2', 'G.SRINIVASAN', 'Cooli', 240000.00, 1, 0.00, 6000.00, 'Madurai', 'Madurai', '2512060002', '1', '1', 'upload_files/candidate_tracker/49875047437_jayasuriyanewresume.pdf', NULL, '1', '2025-12-06', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-12-06 04:35:35', 154, '2025-12-06 11:30:04', 0, NULL, 1),
(27608, '', '0', '9799452545', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512060003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-06 05:06:48', 0, NULL, 0, NULL, 1),
(27609, 'G Sundar', '33', '9789452545', '', 'gsundar2003@gmail.com', '2003-09-26', 22, '2', '2', 'M Gnanasekaran', 'Painter', 72000.00, 0, 0.00, 20000.00, 'Madurai', 'Ashok nagar', '2512060004', '1', '1', 'upload_files/candidate_tracker/44248923792_SUNDAR.pdf', NULL, '1', '2025-12-06', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-12-06 05:07:37', 159, '2025-12-06 11:55:27', 0, NULL, 1),
(27610, 'A.Harish', '33', '6383072758', '', 'harishannadurai1208@gmail.com', '2002-08-12', 23, '2', '2', 'No', 'No', 500000.00, 0, 15000.00, 20000.00, 'Tiruvannamalai', 'Anna nagar', '2512060005', '1', '2', 'upload_files/candidate_tracker/60656161391_HARISHANNADURAIFlowCVResume20251206.pdf', NULL, '1', '2025-12-08', 7, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-12-06 01:00:09', 1, '2025-12-06 01:11:15', 0, NULL, 1),
(27611, '', '0', '9360434580', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512060006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-06 02:21:26', 0, NULL, 0, NULL, 1),
(27612, '', '0', '9952670098', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512070001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-07 01:26:07', 0, NULL, 0, NULL, 1),
(27613, '', '0', '9360357423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512070002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-07 01:40:54', 0, NULL, 0, NULL, 1),
(27614, '', '0', '9854198541', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512070003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-07 05:22:46', 0, NULL, 0, NULL, 1),
(27615, 'ABISHEK V', '13', '9943832542', '', 'abishekv65@gmail.com', '2001-07-16', 24, '2', '2', 'VENGAIMARBAN R', 'Farmer', 78000.00, 1, 0.00, 250000.00, 'Sivagangai', 'Chennai', '2512080001', '1', '1', 'upload_files/candidate_tracker/89019077078_AbishekVCVJavaFullStack.pdf', NULL, '1', '2025-12-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in system task', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-08 04:04:40', 159, '2025-12-08 03:02:25', 0, NULL, 1),
(27616, 'Santhosh S', '13', '9677812945', '6382500951', 'Santhoshsunderraj25@gmail.com', '2001-07-25', 24, '2', '2', 'Sunderraj', 'Shopkeeper', 25000.00, 2, 0.00, 15000.00, '21A,devipuram street,pattapathu, Tirunelveli town', 'No 192,balaji street,thadaperumbakkam,ponneri', '2512080002', '1', '1', 'upload_files/candidate_tracker/45671986286_SanthoshS202509111430230000.pdf', NULL, '1', '2025-12-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (3/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-08 05:03:08', 159, '2025-12-08 03:04:50', 0, NULL, 1),
(27617, 'Rohan singh J', '4', '8248366426', '', 'jjrohan2001@gmail.com', '2001-10-29', 24, '2', '2', 'Jessy', 'Architecture', 20000.00, 0, 0.00, 20000.00, 'Chennai,wimco nagar', 'Chennai,wimco nagar', '2512080003', '1', '1', 'upload_files/candidate_tracker/72233250682_resume1.docx', NULL, '1', '2025-12-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-12-08 05:06:33', 159, '2025-12-08 11:53:46', 0, NULL, 1),
(27618, 'HepzibaBeulah', '6', '9500591145', '9360580399', 'hepzibabeulah31@gmail.com', '1994-03-31', 31, '2', '2', 'Arunothayam felicita Mabel', 'Retired government Icf school teacher', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2512080004', '50', '1', 'upload_files/candidate_tracker/15165016895_BeulaCV.pdf', NULL, '1', '2025-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our telesales profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-08 05:18:40', 154, '2025-12-19 10:32:06', 0, NULL, 1),
(27619, 'kevin arockiam', '13', '8754565144', '9043655806', 'kevinarockiam806@gmail.com', '2005-06-08', 20, '2', '2', 'Raja prabha', 'Production manger', 200000.00, 1, 0.00, 300000.00, '7/40 karumari amman nagar kollachery kundrathur', '7/40 karumari amman nagar kollachery kundrathur', '2512080005', '1', '1', 'upload_files/candidate_tracker/48663979194_KevinResume.pdf', NULL, '1', '2025-12-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (0/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-08 05:18:59', 159, '2025-12-08 11:42:49', 0, NULL, 1),
(27620, '', '0', '8608283205', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512080006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-08 06:04:03', 0, NULL, 0, NULL, 1),
(27621, 'Tharun E', '5', '7358062505', '8608283505', 'tharunferrari444@gmail.com', '1998-10-04', 27, '2', '2', 'Elangovan P', 'Self-employed', 15000.00, 0, 25000.00, 28000.00, 'Aynavaram', 'Aynavaram', '2512080007', '42', '2', 'upload_files/candidate_tracker/80331348924_TharunEResumeupdated2025.pdf', NULL, '1', '2025-12-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-08 06:04:40', 159, '2025-12-08 12:35:22', 0, NULL, 1),
(27622, 'Subhasree Mugunthan', '5', '7401369801', '7339069093', 'subhasachin.7@gmail.com', '1996-01-15', 29, '6', '1', 'Parthiban D', 'Field executive', 25000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2512080008', '', '2', 'upload_files/candidate_tracker/51017039015_subhasreecv.pdf', NULL, '1', '2025-12-08', 0, '', '1', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55557', '55557', '1970-01-01', 1, '2025-12-08 06:06:29', 159, '2025-12-19 10:25:17', 0, NULL, 1),
(27623, 'Lokesh Velmurugan', '13', '9361496465', '9659913090', 'vplokesh07@gmail.com', '2004-05-18', 21, '3', '2', 'Velmurugan V', 'Farmer', 15000.00, 3, 0.00, 15000.00, '165, south Street ko-Chathiram Cuddalore dt', 'Velan mens pg anbu street ekkatuthangal', '2512080009', '', '1', 'upload_files/candidate_tracker/50671000825_LokeshResume.pdf', NULL, '1', '2025-12-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in program test', '', '', '', '', '', '1970-01-01', 1, '2025-12-08 06:22:23', 159, '2025-12-08 04:06:53', 0, NULL, 1),
(27624, 'PRAKASH M', '33', '9025893426', '', 'chandruprakash365@gmail.com', '2003-11-26', 22, '2', '2', 'Mariyappan m', 'Self employed', 60000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2512080010', '1', '1', 'upload_files/candidate_tracker/28220742198_downloadresume4.pdf', NULL, '1', '2025-12-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-08 06:27:43', 159, '2025-12-08 03:03:17', 0, NULL, 1),
(27625, 'Sowmiya c', '20', '9840475521', '9789324735', 'sowmiyakarthic01@gmail.com', '2001-04-01', 24, '2', '1', 'Karthic raj', 'Self employed', 30000.00, 2, 17000.00, 20000.00, 'T.nagar', 'T nagar', '2512080011', '1', '2', 'upload_files/candidate_tracker/62503027886_SOWMIYACV.pdf', NULL, '1', '2025-12-08', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-08 06:38:55', 159, '2025-12-08 03:01:17', 0, NULL, 1),
(27626, 'Rithika swathi A', '6', '8867690857', '', 'swathiashok2004@gmail.com', '2004-07-17', 21, '2', '2', 'Ashok kumar', 'Painter', 200000.00, 1, 24000.00, 30000.00, 'Singasandra bangalore', 'Singasandra bangalore', '2512080012', '57', '2', 'upload_files/candidate_tracker/17191239578_RithikaSwathiResume1.pdf', NULL, '1', '2025-12-08', 1, '', '3', '59', '2025-12-22', 252000.00, '', '5', '1970-01-01', '2', 'Communication Ok can be trained  in our roles need to check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', '55555', '2025-12-22', 1, '2025-12-08 08:34:21', 60, '2025-12-20 06:19:23', 0, NULL, 1),
(27627, 'A.K Kavya Varshini', '6', '9632502612', '9585566391', 'kavyavarshini574@gmail.com', '2004-07-15', 21, '2', '2', 'Anand.P', 'Buisness', 200000.00, 3, 0.00, 22000.00, 'Bangalore Rural', 'Bangalore Rural', '2512080013', '1', '1', 'upload_files/candidate_tracker/1388781239_KAVYAVARSHINIA.KNew.docx', NULL, '1', '2025-12-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1002', '0', '0', '0', NULL, 1, '2025-12-08 08:35:31', 1, '2025-12-08 08:39:04', 0, NULL, 1),
(27628, '', '0', '9445370736', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512080014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-08 09:30:18', 0, NULL, 0, NULL, 1),
(27629, 'sanjaykumar mohan', '4', '9361232885', '', 'josephsanjay28@gmail.com', '2001-06-28', 24, '2', '2', 'mohan c', 'stationary shop', 80000.00, 2, 20000.00, 27000.00, 'chennai', 'chennai', '2512080015', '1', '2', 'upload_files/candidate_tracker/87770042000_SanjaykumarMResume.pdf', NULL, '1', '2025-12-09', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Processed for GI profile based on Motor Exp in vizza he is a complete backend support no telecall exp rejected by Gokul', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-12-08 11:06:40', 159, '2025-12-09 01:18:37', 0, NULL, 1),
(27630, 'Vishnu c', '4', '9176496333', '9677269647', 'vishnuskfc45@gmail.com', '1998-03-21', 27, '2', '2', 'Latha rani', 'House wife', 10.00, 2, 16.00, 25.00, 'Chennai', 'Chennai', '2512080016', '1', '2', 'upload_files/candidate_tracker/73048108389_ShareVishnuChandranCV.docx1.docx', NULL, '1', '2025-12-09', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'relieved the previous company because felt the retention process as tough. so not suitable for our profile', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2025-12-08 03:36:13', 159, '2025-12-09 03:32:10', 0, NULL, 1),
(27631, 'Suryakumaar M', '5', '7092424509', '', 'Suryakumar57087@gmail.com', '1998-09-10', 27, '2', '2', 'Mageshwaran', 'Driver', 15000.00, 1, 20000.00, 27000.00, 'Avadi', 'Avadi', '2512090001', '1', '2', 'upload_files/candidate_tracker/71461767960_Resume.pdf', NULL, '1', '2025-12-09', 0, '', '3', '59', '2025-12-15', 348000.00, '', '3', '2026-01-31', '1', 'Communication Ok have exp in Bank bazaar open for our roles need to check in training and confirm', '5', '1', '1', '1', '6', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55735', '55557', '2025-12-15', 1, '2025-12-09 03:29:57', 60, '2025-12-13 05:38:36', 0, NULL, 1),
(27632, 'KRITTIKA M S', '11', '9840154460', '9345453424', 'krittikavenugopal@gmail.com', '2004-08-13', 21, '2', '2', 'V Murali', 'General Manager', 30000.00, 1, 0.00, 20000.00, 'Pakkam', 'Pakkam', '2512090002', '1', '1', 'upload_files/candidate_tracker/96750888858_MSKrittikaResume202512081034360000.pdf', NULL, '1', '2025-12-09', 0, '', '3', '161', '2025-12-15', 3000.00, '', '', '1970-01-01', '2', 'communication good', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1030', '', '55882', '55566', '1970-01-01', 1, '2025-12-09 04:59:28', 159, '2025-12-09 01:20:31', 0, NULL, 1),
(27633, 'A.Vikram', '33', '8825648092', '9363068551', 'vikramak949830@gmail.com', '2002-07-07', 23, '2', '2', 'K.Annamalai', 'Auto driver', 20000.00, 2, 14000.00, 25000.00, 'Mandaveli chennai', 'Mandaveli chennai', '2512090003', '1', '2', 'upload_files/candidate_tracker/5843769702_CV2025111115121730.pdf', NULL, '1', '2025-12-09', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much aggressive to the profile need to learn a lot not much suits for our role', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-09 05:01:13', 159, '2025-12-09 01:22:22', 0, NULL, 1),
(27634, 'Sneha.p', '6', '9739939084', '9341234234', 'Snehasnow004@gmail.com', '2001-03-26', 24, '3', '2', 'Parents', 'Work', 20000.00, 3, 18000.00, 20000.00, 'Bengaluru', 'Bengaluru', '2512090004', '', '2', 'upload_files/candidate_tracker/53676955377_snehare11.pdf', NULL, '1', '2025-12-09', 0, '', '3', '59', '2025-12-10', 264000.00, '', '3', '2026-01-03', '2', 'Exp in vizza reference as a team with Priya Need to check in detail on trining', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '2025-12-10', 1, '2025-12-09 05:28:08', 60, '2025-12-10 08:36:31', 0, NULL, 1),
(27635, 'Vijaya D', '6', '7406168588', '9620187682', 'vijayamd43@gmail.com', '1979-01-01', 46, '3', '1', 'Shambulingegowda', 'Salaried', 40000.00, 1, 20.00, 22.00, 'Bangalore', 'Bangalore', '2512090005', '', '2', 'upload_files/candidate_tracker/21153440598_VIJAYRES11.pdf', NULL, '1', '2025-12-09', 0, '', '3', '59', '2025-12-10', 264000.00, '', '1', '1970-01-01', '2', 'reference as a team priya need to check only kannada', '5', '2', '1', '2', '2', '1', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '2025-12-10', 1, '2025-12-09 05:31:05', 104, '2025-12-10 09:50:34', 0, NULL, 1),
(27636, 'Rangappa', '6', '6361397275', '7676245120', 'arogyaranga18@gmail.com', '1993-06-01', 32, '3', '1', 'Anju', 'Salaried', 50000.00, 2, 20.00, 22.00, 'Banglore', 'Bangalore', '2512090006', '', '2', 'upload_files/candidate_tracker/48324132142_20250927180344.pdf', NULL, '1', '2025-12-09', 0, '', '3', '59', '2025-12-11', 276000.00, '', '1', '1970-01-01', '2', 'Communication ok have exp in vizza core team of Priya need to check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '2025-12-11', 1, '2025-12-09 05:38:35', 60, '2025-12-11 11:38:42', 0, NULL, 1),
(27637, 'G.samuvel', '6', '9360040571', '', 'samuv2154@gmail.com', '2005-07-13', 0, '2', '2', 'K.gnanavel', 'Security', 15000.00, 3, 0.00, 18000.00, 'ThiruvalluvarNagar,ayanavaram,chennai - 23', 'ThiruvalluvarNagar,ayanavaram,chennai -23', '2512090007', '1', '1', 'upload_files/candidate_tracker/57101315213_APR2023CA31C.PDF', NULL, '1', '2025-12-09', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1070', '55566', '1970-01-01', 1, '2025-12-09 05:48:34', 159, '2025-12-09 02:39:36', 0, NULL, 1),
(27638, 'Hari Krishnan D', '13', '6380907917', '8778162536', 'harikrishnand2907@gmail.com', '2003-07-29', 22, '3', '2', 'Dilli babu J', 'Barber', 100000.00, 1, 0.00, 250000.00, '22/26 kothaval street Alandur Chennai 16', '22/26 kothaval street Alandur Chennai 16', '2512090008', '', '1', 'upload_files/candidate_tracker/22686301598_DHariKrishnan.pdf', NULL, '1', '2025-12-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (1/10)', '', '', '', '', '', '1970-01-01', 1, '2025-12-09 06:05:12', 159, '2025-12-09 12:52:31', 0, NULL, 1),
(27639, 'Sathiya', '4', '8825511789', '7904138755', 'rajendrensathiya069@gmail.com', '2004-08-21', 21, '2', '2', 'Rajendran kamatchi', 'Medical shop representative', 100000.00, 1, 0.00, 13.00, 'Thanjavur', 'Thanjavur', '2512090009', '1', '1', 'upload_files/candidate_tracker/89337798766_sathiyaresume.pdf', NULL, '1', '2025-12-09', 0, '', '3', '59', '2025-12-10', 156000.00, '', NULL, '2026-04-18', '2', 'communication ok fresher need to check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', '5151', '2025-12-10', 1, '2025-12-09 06:08:21', 154, '2025-12-10 11:05:32', 0, NULL, 1),
(27640, 'Keerthika B', '6', '7305771928', '9345640492', 'Keerthivjkeerthi@gmail.com', '2002-07-25', 23, '2', '2', 'R bathan', 'Driver', 8000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2512090010', '50', '1', 'upload_files/candidate_tracker/44884015413_Keerthika.pdf', NULL, '1', '2025-12-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-09 06:43:19', 154, '2025-12-10 04:18:30', 0, NULL, 1),
(27641, 'Shridhar Ganiger', '6', '9663982710', '8095411358', 'Shridharsg1234@gmail.com', '1994-10-20', 31, '2', '2', 'Shivu', 'Job', 15000.00, 4, 15000.00, 20000.00, 'Jamkhandi', 'Jayanagar', '2512090011', '1', '2', 'upload_files/candidate_tracker/26072884288_000SSSS.docx', NULL, '1', '2025-12-09', 0, '', '5', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lack of communication , ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', 'I1077', '55566', '1970-01-01', 1, '2025-12-09 06:53:44', 162, '2025-12-09 12:53:05', 0, NULL, 1),
(27642, 'Shameer', '33', '9361603374', '9551089220', 'shameerbrrsl@gmail.com', '2003-03-18', 22, '2', '2', 'Raziya begum S', '15000', 25000.00, 1, 15000.00, 22000.00, 'No:10, Modelhutment rd ext, Nandanam', 'No:10, Modelhutment rd ext, Nandanam', '2512090012', '1', '2', 'upload_files/candidate_tracker/20388518919_SHAMEERRESUME.pdf', NULL, '1', '2025-12-10', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Accounts profile have basic exp but not much strong to it let us hold and see later', '4', '1', '', '1', '8', '', '2', '2025-12-29', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-09 10:48:05', 159, '2025-12-10 04:10:26', 0, NULL, 1),
(27643, 'Devadharshini R', '4', '9500022280', '9445200407', 'r.varsha2408@gmail.com', '2004-05-15', 21, '2', '2', 'V Ramu', 'Laborer', 15000.00, 1, 0.00, 18000.00, 'T thiruverkadu,Chennai', 'Thiruverkadu, Chennai', '2512090013', '50', '1', 'upload_files/candidate_tracker/16929643693_DevadharshiniRResume.pdf', NULL, '1', '2025-12-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-09 11:32:17', 1, '2025-12-09 11:48:25', 0, NULL, 1),
(27644, 'Srimathi.A', '6', '9884517139', '', 'srimathirithick11@gmail.com', '2005-01-11', 20, '2', '2', 'Parent', 'Spray painter', 45000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2512100001', '1', '1', 'upload_files/candidate_tracker/39597636936_A.Srimathi.docx', NULL, '1', '2025-12-10', 0, '', '3', '59', '2025-12-15', 192000.00, '', '3', '2025-12-18', '1', 'Communication ok fresher for our roles have exp for 6 months in other domain 5050 check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55692', '5151', '2025-12-15', 1, '2025-12-10 04:56:37', 60, '2025-12-13 05:40:23', 0, NULL, 1),
(27645, 'Subasini A', '6', '8610550927', '', 'subasini2530@gmail.com', '2004-08-30', 21, '2', '2', 'J Amarnath', 'Spray painter', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2512100002', '1', '1', 'upload_files/candidate_tracker/33423561270_SubasiniResume.pdf', NULL, '1', '2025-12-10', 0, '', '3', '59', '2025-12-15', 192000.00, '', '3', '2025-12-17', '2', 'Communication Ok 5050 need to check in training have 6 months exp in other domain let us try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55732', '5151', '2025-12-15', 1, '2025-12-10 05:16:17', 60, '2025-12-13 05:42:17', 0, NULL, 1),
(27646, 'Aarthika Elangovan', '6', '9788050921', '', 'aarthikaelangovan95@gmail.com', '2002-04-16', 23, '2', '2', 'Kalaiselvi E', 'House wife', 10000.00, 2, 0.00, 20000.00, 'Thiruthuraipoodi, thiruvarur', 'Velachery, Chennai', '2512100003', '1', '1', 'upload_files/candidate_tracker/76371616077_AARTHIKA11.pdf', NULL, '1', '2025-12-10', 0, '', '3', '59', '2025-12-15', 180000.00, '', '5', '1970-01-01', '2', 'Communication Average family need is there training exp as part time need to check in training and confirm 5050', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '2025-12-15', 1, '2025-12-10 05:21:52', 60, '2025-12-13 05:45:15', 0, NULL, 1),
(27647, 'joshika r', '11', '9342682137', '8939732502', 'joshikaramesh29@gmail.com', '2003-11-29', 22, '2', '2', 'shoba r', 'student', 300000.00, 1, 0.00, 15000.00, 'ambattur', 'ambattur', '2512100004', '1', '1', 'upload_files/candidate_tracker/47162575173_Joshika.RResume.pdf', NULL, '1', '2025-12-11', 0, '', '3', '161', '2025-12-15', 3000.00, '', '', '1970-01-01', '2', 'Good communication', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1030', '', '55882', '55566', '1970-01-01', 1, '2025-12-10 05:23:17', 159, '2025-12-11 09:57:56', 0, NULL, 1),
(27648, '', '0', '9600401216', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-10 05:59:12', 0, NULL, 0, NULL, 1),
(27649, 'anisha begum', '4', '6380643377', '6369746925', 'anishaazeem03@gmail.com', '2003-01-03', 22, '2', '1', 'abdul azeem', 'auto driver', 18000.00, 0, 18000.00, 21000.00, 'Triplicane', 'Triplicane', '2512100006', '1', '2', 'upload_files/candidate_tracker/16776677248_AnishaResume4.pdf', NULL, '3', '2025-12-10', 0, '', '3', '59', '2025-12-15', 204000.00, '', '5', '1970-01-01', '2', 'Communication Good for renewal have exp but not the same open to learn married need to check her sustainability 2yrs NDA', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1030', '', '55605', '55566', '2025-12-15', 1, '2025-12-10 06:00:46', 60, '2025-12-13 05:43:53', 0, NULL, 1),
(27650, 'Immanuel S', '33', '6383940124', '', 'simmanuel654@gmail.com', '2003-10-08', 22, '2', '2', 'Susila', 'House wife', 25000.00, 0, 0.00, 20000.00, 'ayanavaram', 'Chennai', '2512100007', '1', '1', 'upload_files/candidate_tracker/40952564710_IMMANUEL.SRESUME.pdf', NULL, '1', '2025-12-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-10 06:08:58', 159, '2025-12-10 04:09:28', 0, NULL, 1),
(27651, '', '0', '9360580399', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512100008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-10 06:20:03', 0, NULL, 0, NULL, 1),
(27652, 'Suriyamathi U R', '4', '9025723139', '', 'suriyamathi67890@gmail.com', '2002-11-01', 23, '2', '2', 'revathi', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'yogamMedicals trichy main road keelapalur ariyalur', 'karanthai , thanjavur', '2512100009', '1', '1', 'upload_files/candidate_tracker/54554640519_CV2025101722573322.pdf', NULL, '1', '2025-12-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-12-10 06:36:09', 154, '2025-12-11 11:34:14', 0, NULL, 1),
(27653, '', '0', '9080072074', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512100010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-10 06:41:14', 0, NULL, 0, NULL, 1),
(27654, 'Akash p', '5', '8144760081', '9566128507', 'aachhu886@gmail.com', '2000-04-26', 25, '2', '2', 'P Abinash', 'BSc computer science', 40000.00, 1, 18500.00, 32000.00, 'Ayapakkam chennai', 'Chennai', '2512100011', '1', '2', 'upload_files/candidate_tracker/56762319093_AKASHRESUMEnew.pdf', NULL, '1', '2025-12-10', 30, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for my team, salary discussion to be made', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55735', '55557', '1970-01-01', 1, '2025-12-10 07:04:38', 159, '2025-12-10 02:37:00', 0, NULL, 1),
(27655, 'Anandhi', '6', '7845012410', '7200741243', 'anandhivadivel24@gmail.com', '2010-12-10', 0, '2', '2', 'Vadivel', 'SALARIED', 40000.00, 1, 0.00, 20000.00, 'Perungalathur', 'Perungalathur', '2512100012', '65', '1', 'upload_files/candidate_tracker/53230657541_AnandhiResume1.pdf', NULL, '1', '2025-12-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-10 07:53:35', 104, '2025-12-12 09:55:03', 0, NULL, 1),
(27656, 'Aravinthan T', '5', '9444132038', '9941280001', 'aravinthant1999@gmail.com', '1999-07-18', 26, '2', '2', 'M.k.Tamil selvan', 'Ex-servicemen', 45000.00, 1, 40000.00, 45000.00, 'No 3 South Ganeshan Street Rajiv Gandhi Nagar', 'Nesappakkam', '2512100013', '65', '2', 'upload_files/candidate_tracker/9757952226_ARavinthanresume2.pdf', NULL, '1', '2025-12-10', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-10 07:53:51', 104, '2025-12-12 09:55:19', 0, NULL, 1),
(27657, 'S.Basheena Barveen', '4', '7708470490', '8124818281', 'bb1602@srmist.in', '1997-06-11', 28, '2', '1', 'Sathik Basha', 'Uthamapalayam', 45000.00, 2, 18000.00, 30000.00, 'SRM college backside Pg hostal', 'SRM college backside Pg hostal', '2512100014', '65', '2', 'upload_files/candidate_tracker/86392583847_CopyofbasheenaBarbeenCV.pdf4.pdf', NULL, '1', '2025-12-10', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have telecalling customer support exp, will not handle our sales target pressure, sustainability doubts', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-12-10 10:30:34', 104, '2025-12-12 09:54:39', 0, NULL, 1),
(27658, 'Fahim', '4', '8124818281', '8608857678', 'fahimabdul1805@gmail.com', '2001-05-18', 24, '2', '2', 'M.Abdul Hakkeem', 'Uthamapalayam', 95000.00, 1, 0.00, 20000.00, 'SRM college backside', 'SRM college backside', '2512100015', '65', '1', 'upload_files/candidate_tracker/524111625_CopyofFahimCV.pdf21.pdf', NULL, '1', '2025-12-10', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'more intereted towards non voice only and sustainability also doubts', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-12-10 10:31:06', 104, '2025-12-12 09:54:51', 0, NULL, 1),
(27659, 'Patrick Ashlin S', '14', '9751997475', '', 'patrickashlin@gmail.com', '2010-12-10', 0, '5', '2', 'Suresh Kumar', 'High School assistant manager in CSI TND', 400000.00, 1, 0.00, 250000.00, 'Tuticorin', 'Chennai', '2512100016', '', '1', 'upload_files/candidate_tracker/95478365284_PatrickAshlin.pdf', NULL, '1', '2025-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-10 12:39:33', 1, '2025-12-10 12:42:25', 0, NULL, 1),
(27660, '', '0', '7200054583', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512100017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-10 02:49:55', 0, NULL, 0, NULL, 1),
(27661, 'S. LOHITH PRAKASH', '33', '9884732438', '', 'logithprakash10@gmail.com', '2003-11-09', 22, '2', '2', 'K . Senthil velan', 'Accountant', 120000.00, 2, 0.00, 15000.00, 'No63 Desiya nagar 4th Street New Washermanpet', 'No63 Desiya Nagar 4th Street New Washermanpet', '2512110001', '1', '1', 'upload_files/candidate_tracker/57704256867_CV202511251635306.pdf', NULL, '1', '2025-12-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-11 04:11:02', 159, '2025-12-11 10:54:50', 0, NULL, 1),
(27662, 'PAVITHRA R', '11', '8925018599', '9840037216', 'pavi9608@gmail.com', '2004-07-03', 21, '3', '2', 'M.Raja', 'Student', 450000.00, 0, 0.00, 350000.00, 'T.Nagar', 'T.Nagar', '2512110002', '', '1', 'upload_files/candidate_tracker/35717224746_PavithraResumewithicons.pdf', NULL, '1', '2025-12-11', 0, '', '2', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication is good and more interested towards HR roles and activities, will hold this profile and check', '6', '1', '', '1', '8', '', '2', '2025-12-15', '1', '8', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-12-11 04:37:56', 159, '2025-12-11 10:45:42', 0, NULL, 1),
(27663, 'Sri hari haran k', '33', '7401150664', '', 'Hariharan9678@gmail.com', '2004-10-08', 21, '2', '2', 'Kamalakannan', 'Entrepreneur', 35000.00, 1, 0.00, 20000.00, 'Tambaram', 'Tambaram', '2512110003', '1', '1', 'upload_files/candidate_tracker/20710775312_HARIHARANKRESUME.pdf', NULL, '1', '2025-12-11', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Account profile not much strong but let hold and look into it later', '4', '1', '', '1', '8', '', '2', '2025-12-29', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-11 04:41:02', 159, '2025-12-11 04:34:49', 0, NULL, 1),
(27664, 'Rishikesh L', '33', '6374151458', '', 'rishikeshlbma@gmail.com', '2002-10-07', 23, '2', '2', 'Lakshmanan', 'Labour', 30000.00, 1, 16000.00, 23000.00, 'Chennai', 'Chennai', '2512110004', '1', '2', 'upload_files/candidate_tracker/98403405205_Rishiresume1.pdf', NULL, '1', '2025-12-11', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-11 04:52:50', 159, '2025-12-11 11:47:42', 0, NULL, 1),
(27665, 'Janani suresh', '4', '9150730599', '9585679599', 'gpprakashtz94@gmail.com', '1993-09-03', 32, '1', '1', 'Suresh', 'Tele caller', 20000.00, 4, 18000.00, 19000.00, 'Orathanadu', 'Orathanadu', '2512110005', '', '2', 'upload_files/candidate_tracker/37717253296_JANANIRESUME.pdf', NULL, '1', '2025-12-11', 1, 'C99110', '3', '59', '2025-12-15', 204000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in insurance coordinator profile in hospital open for telecalling may get married in 2026 2nd marriage due to death of her husband need to check in training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '2025-12-15', 1, '2025-12-11 05:07:23', 60, '2025-12-13 05:52:46', 0, NULL, 1),
(27666, 'Jaganathan H', '6', '9080797253', '8056232647', 'hj690654@gmail.com', '2002-10-14', 23, '2', '2', 'Hemanathan', 'Turner', 25000.00, 1, 0.00, 17000.00, 'City', 'Chennai', '2512110006', '50', '1', 'upload_files/candidate_tracker/10323355694_Pi7ToolJaganCNT.pdf', NULL, '1', '2025-12-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-11 05:33:53', 159, '2025-12-11 04:23:47', 0, NULL, 1),
(27667, 'Thirisha', '33', '9600689806', '9940619564', 'thrisha818@gmail.com', '2003-06-02', 22, '2', '2', 'Varatharajan', 'Accountant', 50000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2512110007', '1', '2', 'upload_files/candidate_tracker/81146534172_CV2025051218402468.pdf', NULL, '1', '2025-12-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-11 05:52:55', 159, '2025-12-11 04:36:40', 0, NULL, 1),
(27668, 'gomathi', '5', '9344398100', '7010215529', 'ggomati88@gmail.com', '2001-11-23', 24, '2', '1', 'muthu', 'Business', 30000.00, 1, 288000.00, 300000.00, 'kolathur', 'kolathur', '2512110008', '1', '2', 'upload_files/candidate_tracker/88333783457_Gomathiresume.pdf', NULL, '1', '2025-12-11', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interviewed by nisha', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55557', '55557', '1970-01-01', 1, '2025-12-11 05:55:39', 159, '2025-12-11 04:47:03', 0, NULL, 1),
(27669, 'Vigneswaran.v', '5', '9566145210', '8680860394', 'vickyaaa0001@gmail.com', '1999-08-19', 26, '2', '2', 'Vasudevan M', 'Retried person', 18000.00, 1, 15500.00, 20000.00, 'No:33/15 dr.suburayan nagar 5th Street Kodambakkam', 'Chennai', '2512110009', '1', '2', 'upload_files/candidate_tracker/99770145342_vicky.pdf', NULL, '1', '2025-12-11', 0, '', '3', '59', '2025-12-15', 264000.00, '', '3', '2026-01-31', '1', 'Communication Ok have exp in HDB financial family need is there he is open fr telesales need to check in training', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55735', '55557', '2025-12-15', 1, '2025-12-11 06:15:26', 154, '2026-04-07 01:22:28', 0, NULL, 1),
(27670, 'a sabari', '4', '9360191316', '', 'sabarisa2208@gmail.com', '2000-08-22', 25, '3', '2', 'anbalagan k', 'agri', 10000.00, 2, 300000.00, 400000.00, 'perambalur', 'ch', '2512110010', '', '2', 'upload_files/candidate_tracker/36238965849_resume1.pdf', NULL, '1', '2025-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-11 06:49:49', 1, '2025-12-11 06:53:20', 0, NULL, 1),
(27671, 'tabassum banu', '6', '8431111871', '', 'zareenabegum878@gmail.com', '1990-03-09', 35, '2', '1', 'ayub khan', 'tailor', 50000.00, 1, 28000.00, 30000.00, 'btm stage i gurappan palya', 'btm stage i gurappan palya', '2512110011', '57', '2', 'upload_files/candidate_tracker/92782978857_TABASSUMBANU1.pdf', NULL, '1', '2025-12-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-11 07:01:21', 1, '2025-12-11 07:05:03', 0, NULL, 1),
(27672, 'Sudharshan S', '4', '8667293731', '', 's.shanfsd@gmail.com', '2005-07-21', 20, '2', '2', 'Samykkannu', 'Farmer', 14000.00, 0, 0.00, 2.50, 'CHENNAI', 'CHENNAI', '2512110012', '50', '1', 'upload_files/candidate_tracker/9095516650_SudharshanSResume.pdf', NULL, '1', '2025-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-11 07:28:59', 1, '2025-12-11 07:31:56', 0, NULL, 1),
(27673, '', '0', '9361580631', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512110013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-11 08:55:33', 0, NULL, 0, NULL, 1),
(27674, 'Sathishkumar R', '5', '7358082620', '9789683020', 'sathish2631715@gmail.com', '2004-06-12', 21, '2', '2', 'Rabin', 'Labour', 5000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2512110014', '50', '1', 'upload_files/candidate_tracker/84901581320_RESUME1206200421.pdf', NULL, '1', '2025-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Open for non voice networking based job roles not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-11 08:59:33', 104, '2025-12-12 06:25:47', 0, NULL, 1),
(27675, 'p. Keerthana', '6', '6379116347', '7397584363', 'Pkeerthanamuthu60@gmail.com', '2003-03-31', 22, '2', '2', 'Prabaharan', 'Driver', 20000.00, 1, 0.00, 18000.00, 'Saidapet', 'Trichy', '2512110015', '65', '1', 'upload_files/candidate_tracker/30018466496_DOC20251128WA0001..pdf', NULL, '1', '2025-12-11', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Already worked in vizza and relieved due to pressure only so this profile wont be suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2025-12-11 09:15:40', 104, '2025-12-12 09:57:05', 0, NULL, 1),
(27676, 'R.Ramya', '6', '8778105603', '9944233547', 'Smileylover4320@gamil.com', '2003-07-28', 22, '2', '2', 'Ravi Chandran', 'Gas mechanical', 25000.00, 1, 0.00, 20000.00, 'No:96,3rd street,, Ariyamagalam,trichy- 620010', 'Saidapet', '2512110016', '65', '1', 'upload_files/candidate_tracker/21778239951_whitesimplestudentcvresume202512012146570000.pdf', NULL, '1', '2025-12-11', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'previous experience in data entry only and seems to be reserved and not open up to the level we expected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2025-12-11 09:16:25', 104, '2025-12-12 09:56:55', 0, NULL, 1),
(27677, 'NIVETHA. S', '6', '9345325536', '9655214098', 'nivis580@gmail.com', '2003-07-26', 22, '2', '2', 'Sekar', 'Farmer', 18000.00, 0, 0.00, 20000.00, 'Vedharanyam', 'Saidapet', '2512110017', '65', '1', 'upload_files/candidate_tracker/83373113244_NIVETHA6.pdf', NULL, '1', '2025-12-11', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is average only and not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2025-12-11 09:16:54', 104, '2025-12-12 09:56:44', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27678, 'Kowsalya V', '6', '8754604583', '8778430789', 'kowsalya4583@gmail.com', '2003-06-21', 22, '2', '2', 'Venkatesan', 'Farmer', 30000.00, 1, 0.00, 18000.00, 'Villupuram', 'Ashok Pillar', '2512110018', '65', '1', 'upload_files/candidate_tracker/44211267246_KowsiResume111zon.pdf', NULL, '1', '2025-12-11', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE COMMUNICATION AND PERFORMANCE IS NOT GOOD.ALSO SUSTAINABLE IS DOUBT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2025-12-11 09:20:51', 104, '2025-12-12 09:55:48', 0, NULL, 1),
(27679, '', '0', '9344809709', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512110019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-11 09:38:23', 0, NULL, 0, NULL, 1),
(27680, 'Sindhu shree. S', '6', '7204540498', '9986147681', 'Sindhushree926@gmail.com', '2005-03-22', 20, '2', '2', 'Srinivas', 'Bangalore', 30000.00, 1, 18000.00, 22000.00, 'Hsr layout agara', 'Hsr layout agara bangalore', '2512110020', '57', '2', 'upload_files/candidate_tracker/43926870667_no.pdf', NULL, '1', '2025-12-11', 0, '', '3', '59', '2026-01-02', 252000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in LIC can be trained in our roles and check', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55671', '55555', '2026-01-02', 1, '2025-12-11 10:03:21', 60, '2025-12-31 05:42:25', 0, NULL, 1),
(27681, '', '0', '9345348271', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512110021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-11 11:37:38', 0, NULL, 0, NULL, 1),
(27682, 'M. Aslam ahamed', '33', '7502889261', '9047467979', 'aslamahamedaslam64@gmail.com', '2004-11-18', 21, '2', '2', 'M. Nabisha', 'Not father', 18000.00, 1, 18000.00, 2000.00, 'Theni', 'Chennai', '2512110022', '1', '2', 'upload_files/candidate_tracker/55728012369_1.pdf', NULL, '1', '2025-12-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '4', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-11 01:26:09', 104, '2025-12-12 06:31:43', 0, NULL, 1),
(27683, 'nivin v b', '33', '7358618912', '', 'nivinnevil07@gmail.com', '1999-04-07', 26, '2', '2', 'n. vincent', 'bussiness', 30000.00, 2, 182000.00, 220000.00, 'chennai', 'chennai', '2512110023', '1', '2', 'upload_files/candidate_tracker/35406149142_NivinResume.pdf', NULL, '1', '2025-12-15', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '3', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-11 01:27:48', 159, '2025-12-15 10:46:22', 0, NULL, 1),
(27684, '', '0', '9250611602', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512120001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-12 02:11:09', 0, NULL, 0, NULL, 1),
(27685, '', '0', '8296787588', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512120002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-12 04:35:48', 0, NULL, 0, NULL, 1),
(27686, 'Devadharshini.E', '6', '8825819198', '9786985798', 'dharshiniezhil09@gmail.com', '2003-07-09', 22, '2', '2', 'Ezhilvanan.S', 'Barber', 10.00, 0, 0.00, 15.00, 'Mannargudi', 'Ekkaduthangal', '2512120003', '65', '1', 'upload_files/candidate_tracker/30774035573_DEVINew.pdf', NULL, '1', '2025-12-12', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'need to open up a lot...  she is so reserved amd her idea is to go for HR side since there is no oppurtunity in HR side looking for telecalling... ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-12-12 04:35:59', 154, '2025-12-12 12:00:30', 0, NULL, 1),
(27687, 'nivetha', '4', '6379508060', '7305456197', 'nivexx321@gmail.com', '2005-03-03', 20, '2', '2', 'jayapal vk', 'hotel manager', 55000.00, 0, 0.00, 15000.00, 'chennai', 'kolathur', '2512120004', '50', '1', 'upload_files/candidate_tracker/58608377019_webresume.pdf', NULL, '1', '2025-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-12 05:10:36', 1, '2025-12-15 05:29:57', 0, NULL, 1),
(27688, 'Sanjay Raj P', '33', '9840529165', '8925620742', 'sanjayrajperumal@gmail.com', '2002-11-13', 23, '2', '2', 'Perumal D', 'Car Driver', 43000.00, 1, 18000.00, 23000.00, 'Guindy', 'Guindy', '2512120005', '1', '2', 'upload_files/candidate_tracker/2089646730_SANJAYRAJAccountsExecutive5.pdf', NULL, '1', '2025-12-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '5151', '1970-01-01', 1, '2025-12-12 05:16:27', 104, '2025-12-12 06:30:25', 0, NULL, 1),
(27689, 'Logesh A', '6', '9361333928', '', 'logeshashok2003@gmail.com', '2003-03-08', 22, '2', '2', 'Ashok', 'Mason', 90000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2512120006', '50', '2', 'upload_files/candidate_tracker/41022060496_LogeshResumeIT.pdf', NULL, '1', '2025-12-13', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not okay with targets ,distance and communication  is average only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2025-12-12 05:23:50', 104, '2025-12-13 12:49:49', 0, NULL, 1),
(27690, 'Dinesh Kumar p', '6', '6383446059', '', 'dineshkumarp942003@gmail.com', '2003-04-09', 22, '2', '2', 'Periyasamy k', 'Mechanic', 25000.00, 1, 0.00, 18000.00, 'Sivakasi', 'chennai', '2512120007', '1', '1', 'upload_files/candidate_tracker/74963295612_ResumeDINESHKUMARP1.pdf', NULL, '1', '2025-12-12', 0, '', '3', '59', '2025-12-22', 204000.00, '', '3', '2025-12-24', '1', 'Communication Ok fresher for our roles need to check in training and  confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', '5151', '2025-12-22', 1, '2025-12-12 05:31:23', 60, '2025-12-20 06:34:05', 0, NULL, 1),
(27691, 'ajithanathan', '6', '9790836876', '9791159213', 'ajitht23463@gmail.com', '1996-07-15', 29, '2', '2', 'jayavijayan', 'farther', 50000.00, 1, 27000.00, 35000.00, 'chennai', 'sowcarpet', '2512120008', '1', '2', 'upload_files/candidate_tracker/50459902008_CV20250811221430141.pdf', NULL, '1', '2025-12-12', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-12-12 06:08:09', 104, '2025-12-12 06:28:28', 0, NULL, 1),
(27692, 'Jayakumar.D', '6', '6383292106', '6369323428', 'jayakumardj0704@gmail.com', '2004-09-07', 21, '2', '2', 'Dhayalan', 'Bank Security', 20000.00, 1, 0.00, 17000.00, '21KanniyapanSt JothiRamalingamNagar Jafferkhanpet', '21KanniyapanSt JothiRamalingamNagar Jafferkhanpet', '2512120009', '50', '1', 'upload_files/candidate_tracker/62300678419_JAYAKUMARRESUME202511041152000000.pdf', NULL, '1', '2025-12-13', 0, '', '3', '59', '2025-12-16', 192000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher open to learn need to train from sctrach will check in training', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2025-12-16', 1, '2025-12-12 06:08:48', 60, '2025-12-16 09:50:49', 0, NULL, 1),
(27693, 'Akshara K', '6', '8870732242', '', 'akshararajan2812@gmail.com', '2000-12-28', 24, '2', '2', 'Devi', 'Tailoring', 30000.00, 1, 0.00, 18000.00, 'Thoothukudi', 'Chennai', '2512120010', '1', '1', 'upload_files/candidate_tracker/53457936944_Akshara2.pdf', NULL, '1', '2025-12-12', 0, '', '3', '59', '2025-12-17', 204000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp but not a relevant one need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55692', '5151', '2025-12-17', 1, '2025-12-12 06:21:43', 60, '2025-12-16 06:40:51', 0, NULL, 1),
(27694, '', '0', '9344652216', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512120011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-12 08:09:13', 0, NULL, 0, NULL, 1),
(27695, 'J.Nilofer Rushmi', '6', '9159077903', '9361393249', 'queennila4@gmail.com', '1999-08-10', 26, '2', '2', 'Jesudoss', 'Cement works business', 25000.00, 1, 0.00, 17000.00, 'Vadalur', 'Madhuravoyal erikarai', '2512120012', '50', '1', 'upload_files/candidate_tracker/33119738927_NiloferNewresume2025.pdf', NULL, '1', '2025-12-13', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Multiple job switches and having ENT issues so wont be suitable for tellecalling', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2025-12-12 08:19:31', 104, '2025-12-13 03:14:11', 0, NULL, 1),
(27696, 'Marishwari r', '14', '9360485201', '9500892893', 'marishwari276@gmail.com', '2000-10-29', 25, '2', '2', 'Ramar', 'Executive', 30000.00, 2, 0.00, 25000.00, 'Chennai', 'Mount road Chennai', '2512120013', '50', '1', 'upload_files/candidate_tracker/51524361716_Marishwariresume202512110828380000.pdf', NULL, '1', '2025-12-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-12 08:28:17', 1, '2025-12-12 08:33:27', 0, NULL, 1),
(27697, '', '0', '9361260646', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512120014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-12 09:18:54', 0, NULL, 0, NULL, 1),
(27698, 'Swarna Lakshmi', '6', '7305714133', '', 'sandhiyas81090@gmail.com', '2003-08-18', 22, '2', '2', 'Sivakumar', 'Driver', 20000.00, 1, 15000.00, 35000.00, 'Chennai ,porur', 'Chennai,Porur', '2512120015', '65', '2', 'upload_files/candidate_tracker/83003450136_1000276607.pdf', NULL, '1', '2025-12-13', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for rm role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2025-12-12 09:35:33', 104, '2025-12-13 12:53:49', 0, NULL, 1),
(27699, '', '0', '8248620028', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512120016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-12 09:42:26', 0, NULL, 0, NULL, 1),
(27700, '', '0', '7405714133', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512120017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-12 09:52:47', 0, NULL, 0, NULL, 1),
(27701, 'Priya dharshini V', '4', '7200150656', '', 'priyadharshini281819@gmail.com', '2004-10-19', 21, '2', '1', 'Vijayalakshmi', 'House keeping', 18000.00, 1, 0.00, 18000.00, 'Golden crest apartments,puzhal,chennai 66', 'Golden crest apartments ,puzhal ,chennai 66', '2512120018', '50', '1', 'upload_files/candidate_tracker/27179336408_PRIYADHARSHINIV2.pdf', NULL, '1', '2025-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-12 10:00:20', 1, '2025-12-12 10:04:52', 0, NULL, 1),
(27702, 'KIRAN KANTH', '21', '7092263572', '', 'ashlog66@gmail.com', '2002-11-12', 23, '2', '2', 'Venkatesan', 'Student', 100000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2512120019', '50', '1', 'upload_files/candidate_tracker/83117864985_CV2025121118044052.pdf', NULL, '1', '2025-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-12 10:13:39', 1, '2025-12-12 10:36:23', 0, NULL, 1),
(27703, '8163 4580 8953', '4', '9789803359', '9962736211', 'muralitarak9767@gmail.com', '2005-05-23', 20, '2', '2', 'venkatamurali', 'Mechanic', 120000.00, 1, 0.00, 15000.00, 'dr Ambedkar Nagar Mettu Street', 'ajax', '2512120020', '50', '1', 'upload_files/candidate_tracker/72543466781_downloadresume.pdf', NULL, '1', '2025-12-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-12 10:24:40', 1, '2025-12-12 02:29:17', 0, NULL, 1),
(27704, 'B.Gokul', '6', '8190805713', '9884917035', 'g4984235@gmail.com', '2002-09-02', 23, '2', '2', 'Balaji&chitra', 'Fraud analyst', 30000.00, 0, 0.00, 20000.00, 'Avadi', 'Chennai', '2512120021', '50', '2', 'upload_files/candidate_tracker/37747162157_GrayandWhiteSimpleCleanResumepdf1250423142249.pdf', NULL, '1', '2025-12-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-12 10:30:39', 104, '2025-12-12 06:33:07', 0, NULL, 1),
(27705, 'Mani Kandan', '4', '9677141449', '', 'maniramadass0001@gmail.com', '2004-06-25', 21, '2', '2', 'ramadass', 'transportation', 20000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2512120022', '50', '1', 'upload_files/candidate_tracker/94226124760_MANIKANDANR2.pdf', NULL, '1', '2025-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-12 11:36:42', 1, '2025-12-12 12:06:38', 0, NULL, 1),
(27706, 'Irfan basha S', '4', '8939660877', '9952078208', 'irfanbasha2206@gmail.com', '2001-06-22', 24, '2', '2', 'Reshma', 'Post Graduate of BSC computer science', 15000.00, 1, 15000.00, 20000.00, 'mkb nagar , vyasarpadi , ch - 39', 'mkb nagar , vyasarpadi , ch - 39', '2512120023', '50', '2', 'upload_files/candidate_tracker/68329312701_S.IRFANBASHAresume.pdf', NULL, '1', '2025-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-12 12:36:57', 1, '2025-12-12 12:46:47', 0, NULL, 1),
(27707, 'Devibala S', '4', '9361902098', '7325958934', 'devibala02042003@gmail.com', '2003-04-02', 22, '2', '2', 'Maheswari S', 'Weaving', 4500.00, 1, 0.00, 18000.00, 'Aruppukottai', 'Chennai', '2512120024', '50', '1', 'upload_files/candidate_tracker/62990336766_DevibalaResumeUpdatedWithTable.pdf', NULL, '1', '2025-12-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-12 12:59:00', 1, '2025-12-12 01:10:56', 0, NULL, 1),
(27708, 'Sushmeetha B', '6', '9360395635', '', 'sushmeethab35@gmail.com', '2001-11-01', 24, '2', '2', 'Balaraman V', 'Supervisor', 30000.00, 1, 20000.00, 25000.00, 'Theni', 'Mogapair', '2512120025', '1', '2', 'upload_files/candidate_tracker/26149099879_SushmeethaCV.pdf', NULL, '1', '2025-12-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-12-12 01:07:53', 159, '2025-12-13 04:00:56', 0, NULL, 1),
(27709, 'Sriram M', '33', '6369041794', '8122628377', 'sriramdevi22@gmail.com', '2004-05-03', 21, '2', '2', 'Devi m', 'Accountant', 20000.00, 1, 15000.00, 17000.00, 'Rajapalayam', 'RAJAPALAYAM', '2512120026', '1', '2', 'upload_files/candidate_tracker/20359909264_SRIRAMMFlowCVResume.pdf', NULL, '1', '2025-12-13', 5, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '2nd round interviewed by Manikumar and rejected not strong with the basics', '4', '2', '', '1', '8', '', '2', '2025-12-29', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-12 01:10:45', 104, '2025-12-13 03:15:49', 0, NULL, 1),
(27710, 'Thangadurai I', '33', '9940663432', '', 'thangadurait524@gmail.com', '2004-03-11', 21, '2', '2', 'Loganathan', 'Self employed', 20000.00, 1, 21000.00, 21000.00, 'Anna nagar', 'Anna nagar', '2512120027', '1', '2', 'upload_files/candidate_tracker/95324197746_THANGADURAILResumeCopy3.pdf', NULL, '1', '2025-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-12-12 01:11:43', 1, '2025-12-12 01:23:49', 0, NULL, 1),
(27711, 'Roshan kumar.R', '33', '8682868167', '', 'ramroshan299@gmail.com', '2003-09-29', 22, '2', '2', 'Ramekbal mandal', 'Cook', 28000.00, 2, 13393.00, 18000.00, 'MYLAPORE, CHENNAI -004', 'Mylapore,Chennai -004', '2512120028', '1', '2', 'upload_files/candidate_tracker/26765830701_Roshankumarresume1.pdf', NULL, '1', '2025-12-13', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-12 01:14:04', 104, '2025-12-13 03:18:01', 0, NULL, 1),
(27712, '', '0', '8122334824', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512120029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-12 01:19:04', 0, NULL, 0, NULL, 1),
(27713, 'Mohanraj. M', '4', '9361666817', '', 'mohanraj9361666@gmail.com', '2004-09-14', 21, '2', '2', 'Kanniyammal.M', 'Mistress', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2512120030', '50', '1', 'upload_files/candidate_tracker/63498603604_DHR00628.pdf', NULL, '1', '2025-12-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-12 02:05:59', 1, '2025-12-12 02:16:24', 0, NULL, 1),
(27714, '', '0', '9360475456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512120031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-12 05:02:48', 0, NULL, 0, NULL, 1),
(27715, 'Ayesha Tabassum shahed basha', '6', '8667586776', '8122334824', 'tabbu2902@gmail.com', '2003-06-29', 22, '2', '1', 'Riyaz Basha', 'Own business', 18000.00, 1, 0.00, 20000.00, 'Kodungaiyur', 'Kodungaiyur', '2512120032', '1', '1', 'upload_files/candidate_tracker/34521100534_AyeshaTabassum.pdf', NULL, '1', '2025-12-13', 0, '', '3', '59', '2025-12-15', 204000.00, '', NULL, '2026-02-28', '2', 'Communication ok fresher just 15 days exp can be trained need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55692', '5151', '2025-12-15', 1, '2025-12-12 06:08:35', 60, '2025-12-13 07:30:26', 0, NULL, 1),
(27716, 'Yogasooriya P', '5', '8610401020', '', 'yogasooriya@gmail.com', '1991-06-26', 34, '2', '2', 'Pachamal T', 'Retired', 600000.00, 1, 30000.00, 30000.00, 'Chennai', 'Chennai', '2512130001', '1', '2', 'upload_files/candidate_tracker/52097584607_cONTACT1.pdf.pdf', NULL, '1', '2025-12-13', 0, '', '3', '59', '2025-12-22', 264000.00, '', '', '1970-01-01', '1', 'Hired for team lead sort of profile renewal/GI profile can go max upto 23 also given joining on  19 Dec but delayed from candidate end', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-13 04:55:34', 159, '2025-12-15 05:26:00', 0, NULL, 1),
(27717, 'Aravinthan balamurugan', '23', '9943447297', '', 'baaravinthan@gmail.com', '2003-02-25', 22, '2', '2', 'Balamurugan P', 'Farmer', 30000.00, 1, 0.00, 3.00, 'Pattukkottai', 'Chennai', '2512130002', '1', '1', 'upload_files/candidate_tracker/10297083523_AravinthanResume16.pdf', NULL, '1', '2025-12-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-12-13 05:10:57', 104, '2025-12-13 12:48:32', 0, NULL, 1),
(27718, 'Samarth Sanjeev Sanadi', '6', '9008811625', '', 'samarthsanadi74@gmail.com', '2002-06-12', 23, '1', '2', 'Sanjeev Sanadi', 'Govt employee', 20000.00, 1, 240000.00, 300000.00, 'Belgam', 'Banglore', '2512130003', '', '2', 'upload_files/candidate_tracker/16607446794_CV20250511101632211.pdf', NULL, '1', '2025-12-13', 0, 'C99229', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-13 05:34:51', 1, '2025-12-13 05:46:35', 0, NULL, 1),
(27719, 'yogesh', '5', '9600052832', '8056039419', 'yogesh52832@gmail.com', '2001-03-17', 24, '2', '2', 'gajendran', 'auto driver', 15000.00, 1, 21000.00, 26000.00, 'chennai', 'chennai', '2512130004', '1', '2', 'upload_files/candidate_tracker/3492035384_YOGESH.pdf', NULL, '1', '2025-12-16', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for rm role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-12-13 06:30:53', 159, '2025-12-16 01:29:54', 0, NULL, 1),
(27720, 'Vijayakumar S', '4', '8438388749', '', 'vijaynetra0510@gmail.com', '1990-06-29', 35, '2', '1', 'Amsadevi', 'Home maker', 20000.00, 1, 0.00, 20000.00, 'Namakkal', 'Chennai', '2512130005', '50', '1', 'upload_files/candidate_tracker/30015256685_VijayakumarResume.pdf', NULL, '1', '2025-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-13 08:35:43', 1, '2025-12-13 09:43:44', 0, NULL, 1),
(27721, 'SAIFU NISHA BEGUM M', '6', '8148449705', '', 'saifunishabegum@gmail.com', '2003-04-29', 22, '2', '2', 'M Sulaiha beevi', 'House wife', 40000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2512130006', '1', '1', 'upload_files/candidate_tracker/97462820705_MSaifuNishaBegumCV.docx', NULL, '1', '2025-12-16', 0, '', '3', '59', '2025-12-22', 192000.00, '', '3', '2026-01-03', '2', 'Communication Average 5050 Family need is high required can give a try in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55692', '5151', '2025-12-22', 1, '2025-12-13 09:57:33', 60, '2025-12-20 06:55:13', 0, NULL, 1),
(27722, '', '0', '8825888560', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512130007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-13 02:25:27', 0, NULL, 0, NULL, 1),
(27723, 'kannammal', '6', '9345561426', '9344239481', 'kothaisri426@gmail.com', '2003-05-29', 22, '2', '2', 'janakiraman', 'temple work', 25000.00, 1, 18000.00, 20000.00, 'tirunelveli', 'chennai', '2512150001', '1', '2', 'upload_files/candidate_tracker/47553154400_KannammalJFlowCVResume20250819.pdf', NULL, '1', '2025-12-15', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Voice is very low and sustainability doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55882', '55566', '1970-01-01', 1, '2025-12-15 02:42:15', 159, '2025-12-15 03:51:52', 0, NULL, 1),
(27724, 'Mohamed tharik j', '6', '9092868733', '9698885975', 'mthariktucker@gmail.com', '2002-05-19', 23, '2', '2', 'Jawpar sathik', 'It developer', 25000.00, 2, 0.00, 18000.00, 'Tirunelveli', 'Chennai', '2512150002', '66', '1', 'upload_files/candidate_tracker/68130786227_TharikBioData1765116005675MohamedTharikJ.pdf', NULL, '1', '2025-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much confident on the job telesales have exp in accountant but not strong with that too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-15 04:12:50', 159, '2025-12-15 04:57:07', 0, NULL, 1),
(27725, 'manjunath a', '6', '8073738719', '8892282243', 'sandymanu48@gmail.com', '2001-07-30', 24, '2', '2', 'anjappa', 'Medical field', 35.00, 0, 0.00, 25.00, 'chickkaballapur vabsandhra', 'bangalore Koramangala', '2512150003', '1', '1', 'upload_files/candidate_tracker/14333131940_CV20250509185625662.pdf', NULL, '1', '2025-12-19', 0, '', '3', '59', '2026-01-05', 216000.00, '', '3', '2026-02-28', '2', 'Communication Ok can be trained in our roles need to check in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55671', '55555', '2026-01-05', 1, '2025-12-15 05:29:04', 60, '2026-01-03 04:22:00', 0, NULL, 1),
(27726, 'Ganesh', '6', '9629521619', '6382347907', 'a.a.ganesh2002@gmail.com', '2002-12-20', 22, '3', '2', 'Anjalai', 'House wife', 12000.00, 2, 0.00, 15000.00, 'Kallakurichi', 'Chrompet', '2512150004', '', '1', 'upload_files/candidate_tracker/95386409593_GaneshResumeDec2025202512142123210000.pdf', NULL, '1', '2025-12-15', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitbale', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2025-12-15 06:00:33', 159, '2025-12-15 03:54:52', 0, NULL, 1),
(27727, 'V . Shankar', '6', '9360700129', '', 'shankarvcommerce@gmail.com', '2003-03-26', 22, '2', '2', 'Venkatachalam', 'Business man', 15000.00, 1, 16000.00, 20000.00, 'Chidambaram', 'Burkit road, t nagar', '2512150005', '1', '2', 'upload_files/candidate_tracker/57386715861_20250226205620.pdf', NULL, '1', '2025-12-15', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable poor quality profile', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-12-15 06:04:49', 159, '2025-12-15 04:01:13', 0, NULL, 1),
(27728, 'Michael Bhevan R', '5', '9361104870', '', 'michael0902001@gmail.com', '2001-02-09', 24, '2', '2', 'S/k P Rajan', 'Tailor', 15000.00, 1, 0.00, 3.00, 'Arockia Nagar Kovilpapakudi madurai 18', 'Chennai', '2512150006', '1', '1', 'upload_files/candidate_tracker/83105929915_MichaelResumenon.pdf', NULL, '1', '2025-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-12-15 06:25:58', 1, '2025-12-15 06:35:56', 0, NULL, 1),
(27729, 'Krishnaharan sv', '5', '9345715221', '', 'kharan981@gmail.com', '2002-04-08', 23, '2', '2', 'Vasantha', 'Government employee', 40000.00, 1, 260000.00, 360000.00, 'Chennai', 'S Kolathur', '2512150007', '57', '2', 'upload_files/candidate_tracker/27092949244_1000135004.pdf', NULL, '1', '2025-12-15', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Suggested CTC upto 22K being a fresher and only few months exp but he didnt join the company,he got another offer with Bajaj itseems\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2025-12-15 06:29:00', 60, '2025-12-19 09:55:20', 0, NULL, 1),
(27730, 'Aparna', '6', '7406333269', '9741087370', 'aparnavk199044@gmail.com', '1990-04-05', 35, '2', '1', 'Varadacharya', 'Retirement', 30000.00, 1, 0.00, 20000.00, 'Pattegarpalya vijayanagar', 'Pattegarpalya vijayanagar', '2512150008', '1', '1', 'upload_files/candidate_tracker/15097152355_AparnaCVWord.docx', NULL, '1', '2025-12-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '', '', '1970-01-01', 1, '2025-12-15 06:45:19', 162, '2025-12-16 09:36:38', 0, NULL, 1),
(27731, 'S Thanigaivel', '6', '9841111633', '', 'ronaldocristiano2k7@gmail.com', '2004-03-20', 21, '2', '2', 'Sivakumar', 'Business', 70000.00, 1, 0.00, 10000.00, 'Ashok Nagar', 'Ashok Nagar', '2512150009', '1', '1', 'upload_files/candidate_tracker/82415786198_THANIGAIVELSDoc.pdf', NULL, '1', '2025-12-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-12-15 06:50:10', 159, '2025-12-16 03:08:32', 0, NULL, 1),
(27732, 'Nandhithaa j', '4', '8124650623', '8939256154', 'nandhithaajagadeesan2022@gmail.com', '2000-03-25', 25, '2', '2', 'Jagadeesan', 'Manager', 38000.00, 0, 0.00, 25000.00, 'No 14 jayalakshmi flats 3rd lane raja street', 'Perambur', '2512150010', '1', '1', 'upload_files/candidate_tracker/13720141234_NANDHITHAAJresume11.docx', NULL, '1', '2025-12-15', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Can be considered for Renewal/MF intern based employment initial 3 months with stipend upto 7K then employment', '1', '1', '', '1', '8', '', '2', '2025-12-22', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-15 08:02:51', 154, '2025-12-15 05:41:47', 0, NULL, 1),
(27733, '', '0', '7806810479', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512150011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-15 11:04:46', 0, NULL, 0, NULL, 1),
(27734, 'vikramathithan M', '34', '6374669320', '7397124289', 'vikramathithan927@gmail.com', '2004-10-25', 21, '5', '2', 'Mohanasundaram', 'Vegetable shop', 84000.00, 1, 0.00, 700000.00, 'Chennai', 'Chengalpattu', '2512150012', '', '1', 'upload_files/candidate_tracker/31879334264_VikramathithanResume.pdf', NULL, '1', '2025-12-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-15 11:40:35', 1, '2025-12-15 11:50:29', 0, NULL, 1),
(27735, 'Shruthika s', '4', '9003137686', '9003101063', 'Shruthikaselvakumar03@gmail.com', '2003-05-09', 22, '2', '2', 'Suji s', 'Accountant', 20000.00, 1, 17.50, 30000.00, 'Ambattur', 'Ambattur', '2512150013', '66', '2', 'upload_files/candidate_tracker/54451867934_Shruthika20SELVAKUMARcompressed.pdf', NULL, '1', '2025-12-16', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2025-12-15 12:07:42', 159, '2025-12-16 12:57:15', 0, NULL, 1),
(27736, 'DHINESH S', '6', '9361853811', '9750129264', 'adsdhinesh2004@gmail.com', '2003-06-18', 22, '6', '2', 'SIVASANKAR', 'Driver', 35000.00, 1, 18000.00, 22000.00, 'SAKKANGUDI', 'Velachery', '2512150014', '', '2', 'upload_files/candidate_tracker/2785206238_DhineshResume11.pdf', NULL, '1', '2025-12-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-15 12:57:57', 1, '2025-12-15 01:07:15', 0, NULL, 1),
(27737, 'Swathy kumar', '33', '7845291165', '9790846255', 'kswathy0102@gmail.com', '2005-02-01', 20, '2', '2', 'Kumar', 'Daily wages', 20000.00, 2, 17000.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2512160001', '1', '2', 'upload_files/candidate_tracker/87814111461_swathyresume1.pdf', NULL, '1', '2025-12-16', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-16 04:41:47', 159, '2025-12-16 12:59:42', 0, NULL, 1),
(27738, 'Navin', '6', '9176299498', '6380250146', 'navinnivi9498@gmail.com', '2002-12-04', 15, '2', '2', 'k Balaraman', 'Turner', 15000.00, 1, 23000.00, 23000.00, 'Kk nagar', 'Kk nagar', '2512160002', '1', '2', 'upload_files/candidate_tracker/4877300427_Cvmaker1765218360064.pdf', NULL, '1', '2025-12-16', 15, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2025-12-16 05:08:48', 154, '2025-12-16 12:35:07', 0, NULL, 1),
(27739, 'Bagavathi', '6', '8428406025', '9344392192', 'msbaga018@gmail.com', '2002-09-18', 23, '2', '2', 'Selvam', 'Farmer', 30000.00, 2, 25000.00, 28000.00, 'Trichy', 'Guindy Chennai', '2512160003', '65', '2', 'upload_files/candidate_tracker/58176113356_CV2025121321301926.pdf', NULL, '1', '2025-12-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-16 05:18:59', 159, '2025-12-17 11:59:39', 0, NULL, 1),
(27740, '', '0', '9500043067', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512160004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-16 05:19:27', 0, NULL, 0, NULL, 1),
(27741, 'Lokesh V', '6', '9940491863', '9176208272', 'lokeshviswanthan@gmail.com', '2004-02-18', 21, '2', '2', 'Viswanathan C', 'Plumber', 15000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2512160005', '50', '1', 'upload_files/candidate_tracker/31011746260_lokieeresume156.pdf', NULL, '1', '2025-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Core IT profile only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-16 05:34:39', 159, '2025-12-17 01:27:51', 0, NULL, 1),
(27742, 'vignesh .t', '5', '8190855360', '', 'vigneshvikkieoffi@gmail.com', '2001-08-22', 24, '2', '2', 't', 'relatiobship manager', 4000000.00, 0, 300000.00, 400000.00, 'chennai', 'chennai', '2512160006', '66', '2', 'upload_files/candidate_tracker/94096554194_vigneshresume.pdf', NULL, '1', '2025-12-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-16 06:12:34', 1, '2025-12-17 04:06:46', 0, NULL, 1),
(27743, 'mohammed faizal', '33', '8428506618', '9994739116', 'jmmfaizal@gmail.com', '2002-06-13', 23, '2', '2', 'Faizal', 'Account executive', 50000.00, 1, 13000.00, 15000.00, ':Chennai', 'Chennai', '2512160007', '1', '2', 'upload_files/candidate_tracker/57111120447_CVMohammedMohaideenFaizalAccountsExecutiveSynAgroChennai.pdf', NULL, '1', '2025-12-16', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-16 06:35:11', 159, '2025-12-16 03:07:10', 0, NULL, 1),
(27744, 'priyanka s', '6', '9380368425', '9597654150', 'priyankasekar214@gmail.com', '2004-04-21', 21, '2', '2', 'sekar', 'real estate', 20000.00, 0, 0.00, 16000.00, 'theni', 'chennai', '2512160008', '50', '1', 'upload_files/candidate_tracker/22395211261_CV202509162126426.pdf', NULL, '3', '2025-12-18', 0, '', '3', '59', '2025-12-19', 180000.00, '', '3', '2026-01-19', '2', 'Communication ok fresher for sales profile can be trained in our roles need to check in training', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2025-12-19', 1, '2025-12-16 06:56:40', 60, '2025-12-18 07:04:51', 0, NULL, 1),
(27745, '', '0', '7338988916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512160009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-16 07:16:48', 0, NULL, 0, NULL, 1),
(27746, 'monica Evangeline . g', '4', '9150161553', '', 'monicagaspar91501@gmail.com', '2004-08-17', 21, '5', '2', 'Gaspar Joseph durai . p', 'site supervisor', 40000.00, 0, 17500.00, 19000.00, 'perambur', 'perambur', '2512160010', '', '2', 'upload_files/candidate_tracker/61007947741_MONICACV.pdf', NULL, '1', '2025-12-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-16 07:27:37', 1, '2025-12-16 07:43:03', 0, NULL, 1),
(27747, 'Naveen Kumar VR', '6', '9962665641', '', 'rsnvp1972@gmail.com', '2002-07-20', 23, '2', '2', 'Rajasekar V', 'Driver', 20000.00, 2, 16000.00, 20000.00, 'Chennai pattabiram', 'Chennai pattabiram', '2512160011', '65', '2', 'upload_files/candidate_tracker/91570916608_DOC20250706WA0006..pdf', NULL, '1', '2025-12-16', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long and different domain experience', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2025-12-16 08:31:13', 154, '2025-12-16 04:34:14', 0, NULL, 1),
(27748, '', '0', '7904785312', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-16 08:45:55', 0, NULL, 0, NULL, 1),
(27749, 'Deepak Vishal', '4', '9344618911', '7845522597', 'vishal020120@gmail.com', '2000-01-02', 25, '2', '2', 'Parents', 'B. Com general', 20000.00, 1, 280000.00, 300000.00, 'Chennai', 'Chennai', '2512160013', '50', '2', 'upload_files/candidate_tracker/71566078248_Deepakcvresumeupdated202511zon.pdf', NULL, '1', '2025-12-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-16 09:20:55', 1, '2025-12-16 09:25:43', 0, NULL, 1),
(27750, 'laavanya', '5', '7904307502', '9843998513', 'mithramaara276@gmail.com', '2004-05-17', 21, '2', '2', 'manjula', 'Accountant', 50000.00, 1, 300000.00, 400000.00, 'chennai', 'chennai', '2512160014', '66', '2', 'upload_files/candidate_tracker/46994933549_ResumeLaavanya.pdf', NULL, '1', '2025-12-18', 5, '', '4', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for Next Round\nhaving good communication skills, will try for rm role ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2025-12-16 11:58:48', 139, '2025-12-18 04:54:10', 0, NULL, 1),
(27751, 'VARSHA R', '4', '9500138699', '9363784201', 'varshavarsha30597@gmail.com', '2004-06-02', 21, '2', '2', 'Ranjith', 'Farmer', 50000.00, 2, 260000.00, 250000.00, 'Thiruvannamali', 'Chennai', '2512160015', '50', '2', 'upload_files/candidate_tracker/26789755968_VarshaR.docx', NULL, '1', '2025-12-18', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-16 12:14:25', 1, '2025-12-16 12:40:26', 0, NULL, 1),
(27752, '732285950344', '4', '6382582733', '7397261210', 'HEMANTH988469@gmail.com', '2005-06-10', 20, '2', '2', 'PARTHASARATHI A D', 'Working in oil shop', 140000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2512160016', '50', '1', 'upload_files/candidate_tracker/25380803281_98E88FE679394414874A56E59C536F2E.pdf', NULL, '1', '2025-12-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-16 12:38:05', 1, '2025-12-16 01:02:06', 0, NULL, 1),
(27753, 'Viswanath D', '33', '8838127419', '', 'call.me.vishwa.17@gmail.com', '2000-10-17', 25, '2', '2', 'Dhanasekar. S', 'Driver', 300000.00, 1, 10000.00, 30000.00, 'Chennai', 'Chennai', '2512160017', '1', '2', 'upload_files/candidate_tracker/92898165388_Viswanathupdatedresume.pdf', NULL, '2', '2025-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-12-16 03:25:34', 1, '2025-12-16 03:30:44', 0, NULL, 1),
(27754, 'ASHIK ALI.S', '33', '7397515235', '', 'ashikgraphy123@gmail.com', '2002-01-29', 23, '2', '2', 'Fathima', 'House wife', 25000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2512170001', '1', '1', 'upload_files/candidate_tracker/78718447254_Resume.pdf', NULL, '1', '2025-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very low basics not suitable for our any roles', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-12-17 05:13:46', 159, '2025-12-17 12:15:01', 0, NULL, 1),
(27755, 'Faiz Ahmed Khan', '5', '7305873408', '', 'Khnauser1105@gmail.com', '2004-05-11', 21, '2', '2', 'Fazal Ahmed Khan', 'Logistic', 70000.00, 2, 240000.00, 350000.00, '29 Kennedy square perambur chennai', '29 Kennedy square perambur chennai', '2512170002', '1', '2', 'upload_files/candidate_tracker/50351326489_CV.pdf', NULL, '1', '2025-12-17', 10, '', '8', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Did not attended next round\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55735', '55557', '1970-01-01', 1, '2025-12-17 05:14:45', 159, '2025-12-17 02:51:49', 0, NULL, 1),
(27756, 'Gaurav d patel', '5', '9786208945', '9962454998', 'Gauravbinnyboy@gmail.com', '1996-11-17', 29, '2', '2', 'Dilip K Patel', 'Timber business', 500000.00, 2, 297000.00, 450000.00, 'Kolathur', 'Kolathur', '2512170003', '1', '2', 'upload_files/candidate_tracker/46818146140_GAURAVPATELnewresume.pdf', NULL, '1', '2025-12-17', 0, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for Sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', '55735', '55557', '1970-01-01', 1, '2025-12-17 05:36:47', 159, '2025-12-17 02:53:21', 0, NULL, 1),
(27757, 'Dharanidharan Sivajothi', '13', '9597025195', '6383428714', 'dharanidharans162@gmail.com', '2002-06-16', 23, '4', '2', 'Dhanalakshmi S', 'House wife', 200000.00, 1, 0.00, 250000.00, 'Villupuram', 'Tambaram', '2512170004', '', '1', 'upload_files/candidate_tracker/91750464364_DHARANIDHARANSD.pdf', NULL, '1', '2025-12-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in program test (0/5)', '', '', '', '', '', '1970-01-01', 1, '2025-12-17 05:41:27', 159, '2025-12-17 02:44:53', 0, NULL, 1),
(27758, 'Mugil', '6', '8015898265', '8778280732', 'mugilramadass@gmail.com', '2000-05-15', 25, '1', '2', 'Ramadass', 'Former', 1000000.00, 2, 21100.00, 22000.00, 'Villupuram', 'Chennai', '2512170005', '', '2', 'upload_files/candidate_tracker/48998052080_Mugil202511181722290000.pdf', NULL, '1', '2025-12-17', 0, '500507', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roles will not sustain', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-17 05:43:22', 159, '2025-12-17 02:56:37', 0, NULL, 1),
(27759, 'Subasri Mohanraj', '13', '9025790419', '', 'subasrim10@gmail.com', '2003-10-22', 22, '4', '2', 'S C Mohanraj', 'Writter', 10000.00, 1, 0.00, 20000.00, 'Tiruchirappalli', 'Chennai', '2512170006', '', '1', 'upload_files/candidate_tracker/55295099529_MSubasriResume.pdf', NULL, '1', '2025-12-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude(1/10)', '', '', '', '', '', '1970-01-01', 1, '2025-12-17 06:19:10', 159, '2025-12-17 01:34:00', 0, NULL, 1),
(27760, 'Jeeva Priya G', '4', '9361048706', '', 'jeevapriya27082004@gmail.com', '2004-08-27', 21, '2', '2', 'Gopi', 'Driver', 19.00, 1, 20.00, 22.00, 'No.32 west mada Street Maduravoya,l chennai-95', 'No.32 west mada Street Maduravoyal, chennai-95', '2512170007', '50', '2', 'upload_files/candidate_tracker/69467433405_JeevaPriyaG14.pdf', NULL, '3', '2025-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-17 08:04:00', 1, '2025-12-17 08:40:40', 0, NULL, 1),
(27761, 'Sriharan M', '4', '8270739411', '', 'Sriharan964@gmail.com', '2004-06-11', 21, '2', '2', 'G. Murugan', 'No', 15000.00, 1, 0.00, 20000.00, 'Villupuram', 'Villupuram', '2512170008', '50', '1', 'upload_files/candidate_tracker/60313087214_M.SRIHARANMBAresume202512151334390000.pdf', NULL, '1', '2025-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-17 10:19:18', 1, '2025-12-17 10:30:55', 0, NULL, 1),
(27762, '', '0', '6384353488', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512170009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-17 10:24:50', 0, NULL, 0, NULL, 1),
(27763, 'kasper', '6', '9344550700', '', 'kasper10032002@gmail.com', '2002-03-10', 23, '2', '2', 'selvam', 'farmer', 20000.00, 1, 0.00, 20000.00, 'induvanam', 'guindy', '2512170010', '1', '2', 'upload_files/candidate_tracker/4322244549_KasperCV..pdf.pdf', NULL, '2', '2025-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-12-17 10:37:19', 1, '2025-12-17 10:40:36', 0, NULL, 1),
(27764, 'mariselvam', '6', '6374352488', '6374353488', 'mariselvamkarthick54@gmail.com', '2004-11-28', 21, '2', '2', 'sangareshwari', 'payro park', 20000.00, 1, 0.00, 21000.00, 'thambaram', 'thambaram', '2512170011', '65', '1', 'upload_files/candidate_tracker/18374398638_ResumeMari.docx', NULL, '3', '2025-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our roleshave exp in non voice andmuch preferred for the same\n', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-17 11:38:37', 159, '2025-12-17 06:13:58', 0, NULL, 1),
(27765, '', '0', '6374353488', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512170012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-17 11:48:41', 0, NULL, 0, NULL, 1),
(27766, 'B ARUMUGAPRIYA', '4', '9360656340', '', 'arumugapriya7@gmail.com', '2002-07-12', 23, '2', '2', 'V Bala Murugan', 'Security', 10000.00, 1, 0.00, 20000.00, 'No 35 3rd street indra nagar Alwarthirunagar', 'Chennai', '2512170013', '50', '2', 'upload_files/candidate_tracker/51528452414_Arumugapriya.pdf', NULL, '1', '2025-12-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-17 12:44:51', 159, '2025-12-18 04:24:49', 0, NULL, 1),
(27767, 'S.Hemalatha', '6', '7358577414', '9789917179', 'hemalathahemalatha62029@gmail.com', '2003-06-05', 22, '2', '2', 'M.saravanan', 'Assistant manager', 30000.00, 1, 18000.00, 20000.00, 'Chennai', 'Tiruvattriur', '2512170014', '1', '2', 'upload_files/candidate_tracker/37370400464_Hemalatha.pdf', NULL, '1', '2025-12-19', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', 'P1070', '5151', '1970-01-01', 1, '2025-12-17 01:10:16', 159, '2025-12-19 12:34:41', 0, NULL, 1),
(27768, '', '0', '6379348142', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512170015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-17 01:15:59', 0, NULL, 0, NULL, 1),
(27769, '', '0', '6385386966', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512170016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-17 01:48:50', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27770, '', '0', '6374865673', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512170017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-17 02:20:43', 0, NULL, 0, NULL, 1),
(27771, 'Periya samy R', '33', '9942734272', '', 'rperiyasamy994273@gmail.com', '2002-11-02', 23, '2', '2', 'Rayar', 'Formar', 10000.00, 2, 0.00, 17000.00, 'Kallakurichi', 'Guindy', '2512180001', '1', '1', 'upload_files/candidate_tracker/31135909433_PeriyasamyRCV.pdf', NULL, '1', '2025-12-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-18 12:03:39', 159, '2025-12-18 04:21:01', 0, NULL, 1),
(27772, 'AKASH DURAIRAJ', '14', '9344248916', '6383318998', 'akashdurairaj5@gmail.com', '2003-08-14', 22, '1', '2', 'Durairaj', 'Agriculture', 40000.00, 1, 13000.00, 13000.00, 'Saidapet', 'Saidapet', '2512180002', '', '2', 'upload_files/candidate_tracker/95055848840_AkashResume2.pdf', NULL, '1', '2025-12-18', 7, '66708', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-18 05:23:02', 1, '2025-12-18 05:28:39', 0, NULL, 1),
(27773, 'Tamilazhagan C A', '13', '8903737414', '', 'tamilazhagan8903@gmail.com', '2003-06-21', 22, '3', '2', 'K.Chandramohan', 'Driver', 100000.00, 1, 0.00, 15.00, 'Kumbakonam', 'Kumbakonam', '2512180003', '', '1', 'upload_files/candidate_tracker/19242854182_TAMILAZHAGAN1.pdf', NULL, '1', '2025-12-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Not cleared The aptitude round', '', '', '', '', '', '1970-01-01', 1, '2025-12-18 05:24:16', 159, '2025-12-18 04:22:14', 0, NULL, 1),
(27774, 'Jesisheebarani Y', '33', '7305767317', '', 'jesisheebarani@gmail.com', '2002-02-10', 23, '2', '2', 'Yesudass', 'MRF Home Chief', 420000.00, 1, 19000.00, 25000.00, 'Chennai', 'Chennai', '2512180004', '1', '2', 'upload_files/candidate_tracker/36435824228_DOC20251211WA0008..pdf', NULL, '1', '2025-12-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-18 05:31:39', 159, '2025-12-18 04:22:34', 0, NULL, 1),
(27775, '', '0', '9660122410', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512180005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-18 05:53:20', 0, NULL, 0, NULL, 1),
(27776, 'Shashank.B', '5', '8660122410', '', 'Shashankshashu368@gmail.com', '2001-08-23', 24, '1', '2', 'Basavaraj C', 'Business', 20000.00, 2, 0.00, 350000.00, 'Banglore', 'Banglore', '2512180006', '', '2', 'upload_files/candidate_tracker/367583891_ShashankResumeBordered.pdf', NULL, '1', '2025-12-18', 0, 'C99229', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-18 06:00:36', 1, '2025-12-18 06:04:21', 0, NULL, 1),
(27777, '', '0', '9080823821', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512180007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-18 07:21:55', 0, NULL, 0, NULL, 1),
(27778, 'V Riya', '33', '9840557190', '', 'RIYAVJAIN1234@GMAIL.COM', '2003-10-30', 22, '2', '2', 'S vinod kumar', 'Businessman', 70000.00, 1, 15000.00, 20000.00, 'Perambur Purasawalkam', 'Perambur Purasawalkam', '2512180008', '50', '2', 'upload_files/candidate_tracker/80599799672_ResumeRJ25.pdf', NULL, '1', '2025-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-18 07:24:28', 1, '2025-12-18 07:27:22', 0, NULL, 1),
(27779, 'Kanchana devi', '6', '8778331366', '8230976108', 'kanchanasridhar2104@gmail.com', '2001-06-21', 24, '2', '1', 'Sridhar', 'Developer', 135000.00, 0, 0.00, 17000.00, 'Arkkonam', 'Arkkonam', '2512180009', '50', '1', 'upload_files/candidate_tracker/92997139758_kanchanaresume.pdf', NULL, '1', '2025-12-19', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-12-18 08:18:51', 159, '2025-12-19 12:35:04', 0, NULL, 1),
(27780, 'Santhosh s', '4', '9080182257', '', 'Santhoshs2508@gmail.com', '2000-08-25', 25, '2', '2', 'Saravanan k', 'Coolie', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2512180010', '50', '1', 'upload_files/candidate_tracker/91287581540_SanthoshSaravananResume20243.pdf', NULL, '1', '2025-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-18 10:59:28', 1, '2025-12-18 04:28:38', 0, NULL, 1),
(27781, 'Devaki Shankar', '4', '9025497377', '', 'Devakishankar312@gmail.com', '2001-01-31', 24, '2', '1', 'Naveen', 'Engineer', 40000.00, 0, 0.00, 4.60, 'Chennai', 'Chennai', '2512180011', '50', '2', 'upload_files/candidate_tracker/37476596191_DevakiShankarResume.compressed2.pdf', NULL, '1', '2025-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-18 11:36:57', 1, '2025-12-19 04:14:31', 0, NULL, 1),
(27782, 'Kalpana K', '4', '7338789267', '8825737162', 'kalpanapriya3848@gmail.com', '1998-10-27', 27, '2', '2', 'R krishnamoorty', 'Security', 20000.00, 0, 23000.00, 23000.00, 'Chennai', 'Medavakkam', '2512180012', '50', '2', 'upload_files/candidate_tracker/87587422411_DOC20250613WA0001.2.pdf', NULL, '3', '2025-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Mentioned exp in resume but no basic clarity in her previous exp too long distance will not sustain and not suitable for our roles', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-18 12:33:01', 159, '2025-12-19 03:03:33', 0, NULL, 1),
(27783, 'dinesh d', '20', '9043727721', '', 'dineshdilli0524@gmail.com', '1999-01-05', 26, '2', '1', 'd yuvarani', 'home maker', 30000.00, 0, 30000.00, 40000.00, 'chennai', 'chennai', '2512180013', '50', '2', 'upload_files/candidate_tracker/11497770604_DineshDResumeWithPhoto.pdf', NULL, '1', '2025-12-20', 60, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-18 03:15:32', 1, '2025-12-18 03:19:53', 0, NULL, 1),
(27784, 'Sedhush Kumar v', '33', '7358243270', '', 'kumarsedhus@gmail.com', '2004-01-01', 21, '2', '2', 'Viswanathan', 'Fabricator', 35000.00, 1, 0.00, 20000.00, 'Kolathur', 'Kolathur', '2512180014', '1', '1', 'upload_files/candidate_tracker/87960684643_updatedresumesedhush.pdf', NULL, '1', '2025-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much aggresive final year graduate need to open up a lot not suits for our roles', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-18 03:47:35', 159, '2025-12-19 01:33:10', 0, NULL, 1),
(27785, 'Syed Burhan sj', '5', '6374196782', '8807869401', 'syedburhansj@gmail.com', '2001-07-07', 24, '2', '2', 'syed javid sg', 'car driver', 400000.00, 1, 320000.00, 450000.00, 'pulianthope Chennai', 'pulianthope chenna', '2512180015', '1', '2', 'upload_files/candidate_tracker/6820388739_SYEDBURHANSJFlowCVResume202512044.pdf', NULL, '1', '2025-12-19', 30, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for RM role ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-12-18 07:51:22', 159, '2025-12-19 01:34:08', 0, NULL, 1),
(27786, 'Eswari .G', '6', '8925499504', '8807954097', 'gueswari2002@gmail.com', '2002-04-09', 23, '2', '2', 'g', 'coolie', 400000.00, 0, 0.00, 200000.00, 'chennai', 'chennai', '2512190001', '66', '1', 'upload_files/candidate_tracker/83667372898_eswariresume2.docx', NULL, '1', '2025-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not open up fresher much focus on accounts but not m,uch strong with that too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-19 04:23:20', 159, '2025-12-19 11:52:11', 0, NULL, 1),
(27787, '', '0', '9345568385', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512190002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-19 04:46:31', 0, NULL, 0, NULL, 1),
(27788, 'Gururprasath G', '13', '8610815328', '', 'guruprasathg007@gmail.com', '2004-03-18', 21, '3', '2', 'Gopi G', 'Electrition helper', 13000.00, 1, 0.00, 15000.00, 'Chennai', 'Urapakkam', '2512190003', '', '1', 'upload_files/candidate_tracker/68498839504_GuruprasathGASEresume.pdf', NULL, '1', '2025-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-19 05:17:34', 1, '2025-12-19 05:35:58', 0, NULL, 1),
(27789, 'Karuppusamy P', '13', '9025974620', '', 'karuppusamykanesh1503@gmail.com', '2003-07-15', 22, '3', '2', 'Vijayalakshmi', 'Tailer', 75000.00, 2, 0.00, 250000.00, '2/86 4th Street lakshmi Nagar mudichur Chennai-48', '2/86 4th Street lakshmi Nagar mudichur Chennai-48', '2512190004', '', '1', 'upload_files/candidate_tracker/24294902146_KARUPPUSAMYCV.pdf', NULL, '1', '2025-12-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-19 05:17:36', 1, '2025-12-19 05:26:28', 0, NULL, 1),
(27790, 'HARIKUMAR LAKSHMANAN', '13', '6369090392', '9843651790', 'dothari61@gmail.com', '2001-04-04', 24, '3', '2', 'LAKSHMANAN A', 'Business', 30000.00, 2, 0.00, 2.50, 'Virudhunagar', 'Poonamallee', '2512190005', '', '1', 'upload_files/candidate_tracker/44956261486_L.HARIKUMARRESUME.pdf', NULL, '1', '2025-12-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Not cleared the aptitude round', '', '', '', '', '', '1970-01-01', 1, '2025-12-19 05:17:57', 159, '2025-12-19 02:56:01', 0, NULL, 1),
(27791, 'aswana parveen', '13', '7200179951', '7200359951', 'Aswanaparveen786786@gmail.com', '2002-09-06', 23, '3', '2', 'Shakila banu', 'Daily ways', 7000.00, 1, 0.00, 2500000.00, 'Guduvvancherry', 'Guduvvancherry', '2512190006', '', '1', 'upload_files/candidate_tracker/90634562228_CV202512181458522.pdf', NULL, '1', '2025-12-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Not cleared the aptitude round', '', '', '', '', '', '1970-01-01', 1, '2025-12-19 05:18:02', 159, '2025-12-19 02:56:34', 0, NULL, 1),
(27792, 'Saravanan J', '34', '9150123523', '9698971352', 'jsaravananj76@gmail.com', '2003-11-05', 22, '3', '2', 'JAYARAMAN', 'Auto driver', 15000.00, 1, 0.00, 2.50, 'Guduvancherry', 'Guduvancherry', '2512190007', '', '1', 'upload_files/candidate_tracker/25895049928_resume19.12.2025.pdf', NULL, '1', '2025-12-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Not cleared the aptitude round', '', '', '', '', '', '1970-01-01', 1, '2025-12-19 05:18:07', 159, '2025-12-19 02:54:03', 0, NULL, 1),
(27793, 'Sujitha K', '13', '8778338705', '', 'ksujitha486@gmail.com', '2004-05-17', 21, '3', '2', 'B KUMAR', 'Security', 18000.00, 2, 0.00, 250000.00, 'No 181,Big street, Kaniyambadi, Vellore 632102', 'No.6, 4th street, Nellikuppam Rd,Guduvancheri', '2512190008', '', '1', 'upload_files/candidate_tracker/8143749774_Sujithacafsresume2.pdf', NULL, '1', '2025-12-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-19 05:18:09', 1, '2025-12-19 05:28:31', 0, NULL, 1),
(27794, 'Arulananthu A', '13', '7030994687', '', 'ananthuarul4022006@gmail.com', '2006-02-04', 19, '3', '2', 'Anthonisamy', 'Hotel server', 15000.00, 3, 0.00, 15000.00, 'Mariyamman Kovil Street,N.pilrampattu', 'First street Nanguram Nagar, nandhivaram', '2512190009', '', '1', 'upload_files/candidate_tracker/76333443802_arul.docx', NULL, '1', '2025-12-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', 'Not cleared the aptitude round', '', '', '', '', '', '1970-01-01', 1, '2025-12-19 05:18:15', 159, '2025-12-19 02:55:04', 0, NULL, 1),
(27795, 'Jeeva J', '13', '9500025797', '', 'jeevajala5@gmail.com', '2005-05-28', 20, '3', '2', 'Jalakendran.v', 'Building contractor', 15000.00, 1, 0.00, 15000.00, 'Karanaipuducheri', 'Karanaipuducheri', '2512190010', '', '1', 'upload_files/candidate_tracker/82224700672_BlackandWhiteCleanProfessionalA4Resume202512181836410000.pdf', NULL, '1', '2025-12-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', 'Not cleared the aptitude round', '', '', '', '', '', '1970-01-01', 1, '2025-12-19 05:18:42', 159, '2025-12-19 03:01:49', 0, NULL, 1),
(27796, 'Muralidoss A', '34', '7305866307', '8939781637', 'dossmurali927@gmail.com', '2005-01-28', 20, '3', '2', 'Aruldoss A', 'Security', 20000.00, 1, 0.00, 17000.00, 'No 32, Kathavarayan koil Street potheri East', 'No 32, Kathavarayan koil Street potheri East', '2512190011', '', '1', 'upload_files/candidate_tracker/11445488247_CV20251218090101.pdf', NULL, '1', '2025-12-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', 'Not cleared the aptitude round', '', '', '', '', '', '1970-01-01', 1, '2025-12-19 05:18:47', 159, '2025-12-19 02:57:25', 0, NULL, 1),
(27797, 'BHUVANA MUTHUSAMY', '13', '9626860337', '9626739724', 'bhuvanam784@gmail.com', '2005-03-10', 20, '3', '2', 'Saraswati', 'Daily wages', 5000.00, 0, 0.00, 250000.00, 'Erode', 'Guduvanchery', '2512190012', '', '1', 'upload_files/candidate_tracker/20591595171_CV2025121817271948.pdf', NULL, '1', '2025-12-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-19 05:20:53', 159, '2025-12-19 12:05:58', 0, NULL, 1),
(27798, 'mADUSRI SUBRAMANIAN', '13', '6385580314', '8870818979', 'madhusubu26@gmail.com', '2002-03-26', 23, '3', '2', 'Subramanian and Amutha', 'Post man', 22000.00, 1, 0.00, 2500000.00, 'Pattukkottai, Thanjavur District', 'Urappakkam', '2512190013', '', '1', 'upload_files/candidate_tracker/62470117685_CV2025121816352026.pdf', NULL, '1', '2025-12-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-19 05:22:33', 159, '2025-12-19 12:04:35', 0, NULL, 1),
(27799, 'Suwalakshmi.I', '13', '6381398957', '9003095410', 'Suwalakshmi1710@gmail.com', '2005-10-17', 20, '3', '2', 'I.Sudha', '8th', 15000.00, 1, 0.00, 250000.00, 'No.12 sakkarai vijaynagar koil Street koodapakkam,', 'No.28a Vembuli Amma koil Street vallancheri', '2512190014', '', '1', 'upload_files/candidate_tracker/70561412957_resumesuwasoftware.docx', NULL, '1', '2025-12-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-19 05:22:36', 1, '2025-12-19 05:36:00', 0, NULL, 1),
(27800, 'K Nandhini', '13', '8754248234', '8925007282', 'nandhinikotteswaran@gmail.com', '2005-04-20', 20, '3', '2', 'Kotteswaran', 'Wages', 5000.00, 0, 0.00, 250000.00, '24/1 kanchipuram highway road palur Chengalpattu.', '24/1 kanchipuram highway road palur Chengalpattu', '2512190015', '', '1', 'upload_files/candidate_tracker/47300012949_NANDHINI1.docx', NULL, '1', '2025-12-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Not cleared the aptitude round', '', '', '', '', '', '1970-01-01', 1, '2025-12-19 05:22:48', 159, '2025-12-19 02:53:15', 0, NULL, 1),
(27801, 'Ezhil Raj Gopi', '13', '7418707458', '9551620654', 'eraj4708@gmail.com', '2004-12-09', 21, '3', '2', 'Gopi', 'Acting car driver', 20000.00, 1, 0.00, 15000.00, 'West Tambaram', 'West Tambaram', '2512190016', '', '1', 'upload_files/candidate_tracker/51227367813_whitesimplestudentcvresume202511181540350000.pdf', NULL, '1', '2025-12-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', 'Not cleared the aptitude round', '', '', '', '', '', '1970-01-01', 1, '2025-12-19 05:24:49', 159, '2025-12-19 02:54:31', 0, NULL, 1),
(27802, 'Praveen s', '13', '6380329125', '', 'praveens0130@gmail.com', '2005-01-30', 20, '3', '2', 'Chitra', 'House wife', 15000.00, 1, 0.00, 15000.00, 'Plot H5 vijaya green city nellikuppam.', 'Plot H5 vijaya green city nellikuppam', '2512190017', '', '1', 'upload_files/candidate_tracker/33688767023_PRAVEENRESUME.pdf202511291807240000.pdf', NULL, '1', '2025-12-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', 'Not cleared the aptitude round', '', '', '', '', '', '1970-01-01', 1, '2025-12-19 05:38:34', 159, '2025-12-19 02:52:49', 0, NULL, 1),
(27803, 'Nandhini V', '4', '9361494932', '9047843006', 'nandhinivino2005@gmail.com', '2005-07-17', 20, '2', '2', 'Vinoth', 'Business', 15000.00, 0, 0.00, 15000.00, 'Orathanadu', 'Orathanadu', '2512190018', '1', '1', 'upload_files/candidate_tracker/53712595748_nandyresume2.pdf', NULL, '1', '2025-12-19', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2025-12-19 05:41:46', 154, '2025-12-19 05:50:22', 0, NULL, 1),
(27804, 'C. SARANKUMAR', '5', '9360889202', '9585552064', 'chweetysaran5050@gmail.com', '2010-12-19', 0, '2', '2', 'T.CHOZHARAJAN', 'TEXTILE SUPERVISOR', 25000.00, 1, 15000.00, 16000.00, 'Kandhasarapatty (Po), Karur-639005', 'Virugambakkam, Chennai -600092', '2512190019', '1', '2', 'upload_files/candidate_tracker/86883102354_SaranResume.pdf202512191108270000.pdf', NULL, '1', '2025-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2025-12-19 05:54:04', 1, '2025-12-19 06:03:04', 0, NULL, 1),
(27805, 'Sneka. S', '6', '9629943003', '', 'Sneka63001@gmail.com', '2001-03-06', 24, '2', '2', 'Sivakumar. K', 'Former', 20000.00, 2, 0.00, 18000.00, '11-b, south street,pudukkottai ullur, Thanjavur', 'Anna nagar, chennai', '2512190020', '1', '1', 'upload_files/candidate_tracker/52568471435_ConfirmationPage260310647302.pdf', NULL, '1', '2025-12-19', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performance in the interview was not good, looking for non voice only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2025-12-19 06:34:30', 159, '2025-12-19 01:34:13', 0, NULL, 1),
(27806, 'Deepa D', '5', '9500070117', '', 'deepadeepak0207@gmail.com', '1992-07-23', 33, '1', '1', 'deepak', 'acm in poonawalla', 80000.00, 1, 550000.00, 700000.00, 'chennai', 'chennai', '2512190021', '', '2', 'upload_files/candidate_tracker/2549867177_Resumeconverted.pdf', NULL, '1', '2025-12-19', 30, '55656', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for Our RM role \nexp  package also very high ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2025-12-19 07:42:11', 154, '2025-12-19 02:39:04', 0, NULL, 1),
(27807, 'Sham Sundar P', '4', '9677238764', '9840995461', 'shamsundar.p2004@gmail.com', '2004-10-13', 21, '2', '2', 'S perumal', 'Driver', 20000.00, 1, 0.00, 16000.00, 'Adyar', 'Adyar', '2512190022', '50', '1', 'upload_files/candidate_tracker/73261189853_Shamsundar.P.pdf', NULL, '1', '2025-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-19 07:49:31', 1, '2025-12-20 08:46:40', 0, NULL, 1),
(27808, 'AbithaArumugam', '6', '6384393365', '6382102925', 'abithadolly519@gmail.com', '2003-04-09', 22, '1', '2', 'Arumugam', 'Security', 15000.00, 1, 15000.00, 17000.00, '3/A meenambal sivaraj street kodungaiyur chennai', '3/A meenambal sivaraj street kodungaiyur chennai', '2512190023', '', '2', 'upload_files/candidate_tracker/53234510398_AbithaArumugamCVUpdated1.pdf', NULL, '1', '2025-12-19', 0, 'C199122', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2025-12-19 09:03:03', 159, '2025-12-19 03:11:09', 0, NULL, 1),
(27809, 'Prabhakaran A v', '4', '9361863250', '', 'prabhakaranvelu2000@gmail.com', '2000-04-06', 25, '6', '2', 'A Velu', 'Public servent', 800000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2512190024', '', '1', 'upload_files/candidate_tracker/78376367307_PRABHAKARANCV.pdf', NULL, '1', '2025-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-19 09:46:21', 1, '2025-12-19 09:50:46', 0, NULL, 1),
(27810, '', '0', '9750577704', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512190025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-19 09:51:51', 0, NULL, 0, NULL, 1),
(27811, 'Mithra Devi', '6', '9600515730', '7550082726', 'mithradev29@gmail.com', '1999-11-29', 26, '2', '1', 'Sarath Kumar', 'Business', 15000.00, 1, 12000.00, 18000.00, 'Kanchipuram', 'Kanchipuram', '2512190026', '1', '2', 'upload_files/candidate_tracker/90935882940_MITHRADEVIRESUME1.pdf', NULL, '1', '2025-12-20', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2025-12-19 09:56:11', 154, '2025-12-20 01:16:38', 0, NULL, 1),
(27812, 'Theenathayanithi D', '6', '8124516082', '7094862696', 'theenathayanithi@gmail.com', '2002-12-02', 23, '2', '2', 'Dhamodharan', 'Contract labour', 20000.00, 1, 0.00, 15000.00, 'Vyasarpadi', 'Vyasarpadi', '2512190027', '50', '1', 'upload_files/candidate_tracker/28201271084_CV2025121623021573.pdf', NULL, '1', '2025-12-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-19 10:57:12', 154, '2025-12-20 03:52:51', 0, NULL, 1),
(27813, 'Bakkiyalakshmi', '33', '8189825216', '8015845156', 'bakkiyalsugumar23@gmail.com', '2004-05-23', 21, '2', '2', 'Latha', 'Fresher', 20000.00, 1, 0.00, 220000.00, 'Puducherry', 'Chennai', '2512190028', '1', '1', 'upload_files/candidate_tracker/24543826927_Bakkiyalakshmiresume1.pdf', NULL, '1', '2025-12-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-19 12:42:54', 154, '2025-12-20 03:52:09', 0, NULL, 1),
(27814, 'atchaya', '4', '9940066806', '', 'atchu0606@gmail.com', '2000-06-06', 25, '2', '1', 'sahaya solomon', 'driver', 50000.00, 0, 0.00, 300000.00, 'iyappanthangal', 'iyappnthanga', '2512200001', '50', '1', 'upload_files/candidate_tracker/86050054257_P.ATCHAYA.pdf.pdf', NULL, '1', '2025-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-20 04:45:19', 1, '2025-12-20 04:48:39', 0, NULL, 1),
(27815, 'Shyam', '13', '9940699156', '8778588702', 'shyamsekar2004@gmail.com', '2004-01-24', 21, '2', '2', 'Sekar', 'Tiles work', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2512200002', '60', '1', 'upload_files/candidate_tracker/14607180822_ShyamResume.pdf', NULL, '1', '2025-12-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in program test', '', '', '', '', '', '1970-01-01', 1, '2025-12-20 05:07:23', 159, '2025-12-23 04:04:23', 0, NULL, 1),
(27816, 'Ramachandran Govintharaj', '13', '8056544890', '7010747840', 'ramachandrangovintharaj7@gmail.com', '2003-03-04', 22, '2', '2', 'Govintharaj M', 'Daily wages', 12000.00, 2, 0.00, 25000.00, 'Salem', 'Chennai', '2512200003', '60', '1', 'upload_files/candidate_tracker/57865761572_ramachandrandeveloperresume.pdf', NULL, '1', '2025-12-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'did not perform well in aptitude', '', '', '', '', '', '1970-01-01', 1, '2025-12-20 05:08:53', 154, '2025-12-20 03:53:48', 0, NULL, 1),
(27817, 'karthika elumalai', '6', '6379608558', '8124415749', 'karthikaelumalai73@gmail.com', '2003-02-28', 22, '2', '2', 'elumalai', 'textiles', 20000.00, 1, 15500.00, 22000.00, 'chennai', 'thiruvottiyur', '2512200004', '1', '2', 'upload_files/candidate_tracker/54012454695_Newresume.pdf', NULL, '1', '2025-12-20', 30, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candiate is not ok, but 50/50 Profile\nSustainability issues, ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-12-20 05:22:44', 154, '2025-12-20 12:48:16', 0, NULL, 1),
(27818, 'Dharshini Deenadayalan', '6', '8939265959', '9500017628', 'dhrshndd@gmail.com', '2003-06-08', 22, '2', '2', 'Deenadayalan', 'Security', 20000.00, 1, 16000.00, 18000.00, 'Chennai', 'Chennai', '2512200005', '1', '2', 'upload_files/candidate_tracker/27950278186_DOC20250913WA0003..pdf', NULL, '1', '2025-12-20', 30, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok, sounds not good, sustainability issues', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2025-12-20 05:23:08', 154, '2025-12-20 12:48:35', 0, NULL, 1),
(27819, 'NAVEEN S', '4', '7904706441', '9360527535', 'Suryanaveena774@gmail.com', '2005-06-20', 20, '2', '2', 'SATHYAKALA. S', 'Army', 60000.00, 1, 0.00, 20000.00, 'Chromepet', 'Chromepet', '2512200006', '50', '1', 'upload_files/candidate_tracker/79347038657_Finalresume1.pdf.pdf', NULL, '3', '2025-12-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-20 06:28:23', 159, '2025-12-22 01:33:16', 0, NULL, 1),
(27820, 'MuthuLakshmi M', '4', '8248162153', '8238162153', 'snehami153@gmail.com', '2010-12-20', 0, '5', '2', 'Muniyan k', 'regular job tasks', 17000.00, 4, 0.00, 20000.00, 'Villupuram', 'Tambaram', '2512200007', '', '1', 'upload_files/candidate_tracker/98286362899_MUTHULAKSHMI.pdf', NULL, '3', '2025-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-20 06:33:17', 1, '2025-12-20 06:45:07', 0, NULL, 1),
(27821, '', '0', '8428094403', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512200008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-20 06:47:22', 0, NULL, 0, NULL, 1),
(27822, 'Velprasaath', '6', '8248934681', '9884431991', 'velprasaath037@gmail.com', '1993-05-23', 0, '2', '2', 'Balakrishnan', 'Lucas tvs retired', 10000.00, 0, 0.00, 140000.00, 'Chennai', 'Chennai', '2512200009', '50', '1', 'upload_files/candidate_tracker/95347036896_velnaukriresumeaspdffile.pdf', NULL, '1', '2025-12-22', 0, '', '1', '154', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-12-20 08:26:11', 159, '2025-12-22 03:20:43', 0, NULL, 1),
(27823, 'R. Lokesh', '4', '8124498545', '', 'lokeshgunavathi@gmail.com', '2001-10-05', 24, '2', '2', 'R. Gunavathi', 'Housewife', 14000.00, 0, 0.00, 18000.00, 'LIG-651, 56thstreet,2ndmain road,Mathur,chennai-68', 'LIG-651, 56thstreet,2ndmain road,Mathur,chennai-68', '2512200010', '50', '1', 'upload_files/candidate_tracker/45244109757_R.Lokesh.docx', NULL, '1', '2025-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-20 09:58:17', 1, '2025-12-20 10:08:09', 0, NULL, 1),
(27824, 'Kishore', '33', '7358560424', '', 'kishoredevadoss01@gmail.com', '2002-08-05', 23, '2', '2', 'devadoss', 'self employed', 30000.00, 1, 9000.00, 30000.00, 'avadi', 'avadi', '2512200011', '1', '2', 'upload_files/candidate_tracker/5412346469_KISHOREResume.pdf', NULL, '1', '2025-12-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-20 02:02:34', 154, '2025-12-23 09:53:54', 0, NULL, 1),
(27825, 'SARANYA DEVI  V', '33', '6380990675', '9500645558', 'sana07022003@gmail.com', '2003-02-07', 22, '2', '1', 'Balaji R', 'Marketing executive', 500000.00, 1, 15000.00, 22000.00, 'Chennai', 'Chennai', '2512200012', '1', '2', 'upload_files/candidate_tracker/72377700969_Saranya.pdf', NULL, '1', '2025-12-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-20 02:15:27', 159, '2025-12-23 09:55:51', 0, NULL, 1),
(27826, '', '0', '9003134579', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512220001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-22 04:40:12', 0, NULL, 0, NULL, 1),
(27827, 'vijayaprawin seetha kumar', '6', '6382719277', '', 'vijayprawin1112@gmail.com', '2000-12-11', 25, '2', '2', 'kumar', 'teacher', 50000.00, 1, 0.00, 18000.00, 'ganapathy nagar tajpura arcot', 'No.11 odamanagar,maduravoyal, chennai 95', '2512220002', '50', '1', 'upload_files/candidate_tracker/48197424384_VIJAYAPRAWIN3.pdf', NULL, '1', '2025-12-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-22 05:02:22', 159, '2025-12-23 03:41:39', 0, NULL, 1),
(27828, 'Brindha sri N', '6', '9361416200', '7904535373', 'brundhasri2324@gmail.com', '2003-10-23', 22, '1', '2', 'Suganya', 'Kooli', 82000.00, 1, 0.00, 16000.00, '85, Ambedkar Street, Kammarapalayam. Vellore,', '85, Ambedkar Street, Kammarapalayam. Vellore', '2512220003', '', '1', 'upload_files/candidate_tracker/1937601999_CV2025061219575852.pdf', NULL, '1', '2025-12-22', 0, 'C99238', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2025-12-22 05:20:59', 159, '2025-12-22 01:45:03', 0, NULL, 1),
(27829, '', '0', '7397172432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512220004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-22 05:32:46', 0, NULL, 0, NULL, 1),
(27830, 'Harish', '5', '9384093439', '6383787588', 'harish190703@gmail.com', '2003-07-22', 22, '2', '2', 'Sankar', 'Police', 60000.00, 2, 21000.00, 24000.00, 'Chennai', 'Chennai', '2512220005', '50', '2', 'upload_files/candidate_tracker/26426794078_harishresume1.pdf', NULL, '1', '2025-12-22', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for RM', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2025-12-22 06:00:53', 154, '2025-12-22 03:19:29', 0, NULL, 1),
(27831, 'YUVARAJ V', '6', '6380919669', '', 'yuvarajv28072004@gmail.com', '2004-07-28', 21, '2', '2', 'K Ventakesan', 'Two-wheeler Mechanic', 7000.00, 1, 0.00, 15000.00, 'Madurantakam', 'Velachery', '2512220006', '66', '1', 'upload_files/candidate_tracker/94806151926_WhiteMinimalistResume202508290919580000.pdf', NULL, '1', '2025-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-22 06:10:18', 1, '2025-12-22 06:15:22', 0, NULL, 1),
(27832, 'MD Shujauddin', '6', '9483960387', '', 'mdshujauddinquadri786@gmail.com', '2002-10-29', 23, '2', '2', 'MD Rafeequddin', 'Lab Technician', 30000.00, 2, 0.00, 20000.00, 'Acc colony wadi', 'Near Halasuru Metro', '2512220007', '57', '1', 'upload_files/candidate_tracker/12931759578_shujaCV.pdf', NULL, '1', '2025-12-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-22 06:19:25', 162, '2025-12-22 12:10:47', 0, NULL, 1),
(27833, 'M Saranya', '4', '8248843738', '9176383483', 'saranyams5566@gmail.com', '2005-07-13', 20, '5', '2', 'Mageshwaran.samba', 'House keeping', 18000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2512220008', '', '2', 'upload_files/candidate_tracker/4534164193_339BDFB194FF40C698E73A09B4EA367B.pdf', NULL, '1', '2025-12-22', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-22 06:23:05', 159, '2025-12-22 01:34:58', 0, NULL, 1),
(27834, 'mohana priya s', '6', '9344934577', '', 'mohanapriya251202.s@gmail.com', '2002-12-25', 22, '2', '2', 'saravanan', 'own business', 35000.00, 1, 20000.00, 28000.00, 'chennai', 'chennai', '2512220009', '1', '2', 'upload_files/candidate_tracker/21143405132_AF59BA08DC174B088471363902CF4D33.pdf', NULL, '1', '2025-12-22', 0, '', '3', '59', '2026-01-02', 300000.00, '', '3', '2026-01-03', '2', 'Communication Good have exp in calling but not a relevant one  sound confident can check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55645', '5151', '2026-01-02', 1, '2025-12-22 06:31:06', 60, '2025-12-31 05:53:43', 0, NULL, 1),
(27835, '', '0', '7904535373', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512220010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-22 06:36:53', 0, NULL, 0, NULL, 1),
(27836, '', '0', '8825415193', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512220011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-22 06:50:24', 0, NULL, 0, NULL, 1),
(27837, '', '0', '8248705479', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512220012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-22 06:50:56', 0, NULL, 0, NULL, 1),
(27838, 'D. E. Suryaa', '6', '9797111479', '9790179697', 'elangovansuryaa@gmail', '1999-07-09', 26, '2', '2', 'Elangovan', 'Business', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2512220013', '50', '1', 'upload_files/candidate_tracker/91374666983_SuryaaElangovanResume.pdf', NULL, '1', '2025-12-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-22 07:01:47', 159, '2025-12-23 12:26:30', 0, NULL, 1),
(27839, 'harish kuberan', '6', '8056061158', '9884764771', 'thunderparker27@gmail.com', '2002-02-27', 23, '2', '2', 'kalidassan', 'sales', 200000.00, 1, 18000.00, 25000.00, 'mylapore', 'mylapore', '2512220014', '57', '2', 'upload_files/candidate_tracker/22652595076_HarishKuberanUpdatedResume.pdf', NULL, '1', '2025-12-22', 0, '', '3', '59', '2026-01-13', 216000.00, '', '3', '2026-04-13', '1', 'Communication Ok have exp can be trained in our roles need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55692', '5151', '2026-01-13', 1, '2025-12-22 07:21:10', 60, '2026-01-13 10:37:38', 0, NULL, 1),
(27840, '', '0', '9994073760', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512220015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-22 09:04:13', 0, NULL, 0, NULL, 1),
(27841, 'Venmani', '6', '9952627113', '9965974614', 'venmanivenmani25@gmail.com', '1998-05-29', 27, '2', '2', 'Chinnadurai', 'Farmer', 3.50, 5, 17500.00, 25000.00, 'Thanjavur', 'Chennai', '2512220016', '66', '2', 'upload_files/candidate_tracker/87377251379_VENMANI.C.pdf2.pdf', NULL, '1', '2025-12-23', 30, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, communication average only, product knowledge not good, salary expectation high, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-12-22 11:01:02', 159, '2025-12-23 03:32:28', 0, NULL, 1),
(27842, 'Karthikeyan', '4', '7401141777', '', 'tamilkarthi0077@gmail.com', '1997-04-07', 28, '2', '1', 'Sakthipriya', 'Ar', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2512220017', '50', '1', 'upload_files/candidate_tracker/80352924382_T.KARTHIKEYANWORKRESUME.pdf', NULL, '1', '2025-12-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-22 11:38:00', 159, '2025-12-23 03:40:06', 0, NULL, 1),
(27843, '', '0', '9952627112', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512220018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-22 11:50:02', 0, NULL, 0, NULL, 1),
(27844, 'Kaviya', '13', '9943483766', '9500147577', 'kaviya.p.22ds16@gmail.com', '2004-02-17', 21, '2', '2', 'Lakshmi', 'Cooli', 7000.00, 1, 0.00, 18000.00, 'viluppuram', 'Chennai', '2512220019', '50', '1', 'upload_files/candidate_tracker/28619164518_Kaviya.pdf', NULL, '1', '2025-12-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-22 12:29:37', 159, '2025-12-23 03:40:52', 0, NULL, 1),
(27845, 'Sentamizhselvan S', '13', '9786723862', '', 'tamizhdhonimsdhoni@gmail.com', '2002-12-22', 23, '2', '2', 'Subramaniyan', 'Farmer', 20000.00, 2, 0.00, 100000.00, 'Gingee', 'Guindy', '2512220020', '1', '1', 'upload_files/candidate_tracker/72770924824_sentamizhResume202512091000070000.docx', NULL, '1', '2025-12-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected in aptitude (0/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-22 12:44:45', 159, '2025-12-24 12:17:31', 0, NULL, 1),
(27846, '', '0', '8678942550', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512220021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-22 09:01:42', 0, NULL, 0, NULL, 1),
(27847, 's.valarmathi', '6', '8248211131', '9551414641', 'svalarmathisiva35@gmail.com', '2004-10-03', 21, '2', '2', 'rani', 'cooli', 85000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2512230001', '1', '1', 'upload_files/candidate_tracker/77321869325_S.valarmathiResume622.pdf', NULL, '3', '2025-12-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-12-23 05:30:24', 159, '2025-12-23 12:27:37', 0, NULL, 1),
(27848, 'Muthukumarmariyappan', '6', '8508348028', '7708494591', 'muthukumar85083@gmail.com', '2004-05-20', 21, '2', '2', 'Muthu lakshmi', 'House wife', 10000.00, 1, 0.00, 17000.00, 'Madurai', 'Guindy', '2512230002', '1', '1', 'upload_files/candidate_tracker/26751865745_download1.pdf', NULL, '1', '2025-12-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-12-23 05:49:59', 159, '2025-12-23 12:06:58', 0, NULL, 1),
(27849, 'BhuvaneshwariV', '6', '9444627315', '', 'bhuvaneshwari19976@gmail.com', '1997-06-28', 28, '2', '2', 'K vinayagam', 'Fruit seller', 8000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2512230003', '1', '1', 'upload_files/candidate_tracker/82869131544_CompressedSbhuvana.pdf.pdf', NULL, '1', '2025-12-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-12-23 06:19:10', 159, '2025-12-23 03:36:52', 0, NULL, 1),
(27850, 'Mari muthu T', '6', '9345231631', '8838145428', 'maariking631@gmail.com', '2003-11-11', 22, '2', '2', 'Thamaraiselvam', 'Farmer', 20000.00, 0, 0.00, 2.50, 'Pudukkottai alangudi', 'Velachery', '2512230004', '67', '1', 'upload_files/candidate_tracker/36479914658_Mari.pdf', NULL, '1', '2025-12-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-23 06:43:14', 159, '2025-12-23 04:29:12', 0, NULL, 1),
(27851, 'Barathkumar', '6', '7395870939', '9047059428', 'bk142397@gmail.com', '2002-10-05', 23, '2', '2', 'Vasukannan', 'Farmer', 20000.00, 1, 0.00, 18000.00, 'Thoothukudi', 'Velachery Chennai', '2512230005', '67', '1', 'upload_files/candidate_tracker/83676245561_AdobeScan23Dec20251.pdf', NULL, '1', '2025-12-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-23 06:43:36', 159, '2025-12-23 04:29:23', 0, NULL, 1),
(27852, 'mohan Raj', '5', '8925930506', '9150242616', 'smashmohan03@gmail.com', '1999-03-03', 26, '2', '2', 'Eswari', 'Chennai', 30.00, 1, 295000.00, 330000.00, 'Chennai', 'Chennai', '2512230006', '57', '2', 'upload_files/candidate_tracker/982697797_mohanupdateresume.pdf', NULL, '1', '2025-12-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '6', '', '', '', '', '', '', '1970-01-01', 1, '2025-12-23 07:29:59', 159, '2025-12-23 03:33:22', 0, NULL, 1),
(27853, 'Abdul Sukkoor Nafees', '14', '8754608486', '', 'mnafees2002@gmail.com', '2002-11-20', 23, '2', '2', 'Muthuvappa', 'Textile shop', 20000.00, 1, 312000.00, 500000.00, '28L Maruthuvar street kayalpatnam', 'Chennai', '2512230007', '50', '2', 'upload_files/candidate_tracker/38233366059_ABDULSUKKOORNAFEESResume.PDF', NULL, '1', '2025-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-23 08:21:51', 1, '2025-12-23 08:25:13', 0, NULL, 1),
(27854, 'BOOPATHI RAMACHANDRAN', '4', '8870819058', '', 'smartboopathi96@gmail.com', '1996-06-05', 29, '2', '2', 'RAMACHANDRAN', 'Admin Execitive', 35000.00, 1, 49000.00, 30000.00, 'Karur', 'Mugapair', '2512230008', '1', '2', 'upload_files/candidate_tracker/91301239590_BoopathiCV.pdf', NULL, '1', '2025-12-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2025-12-23 09:06:24', 154, '2025-12-23 03:28:26', 0, NULL, 1),
(27855, 'Selvakumar V', '13', '6382872334', '', 'selvakumarskv990@gmail.com', '2002-11-17', 23, '2', '2', 'Veerapathiran E', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'VELLORE', 'VELLORE', '2512230009', '1', '1', 'upload_files/candidate_tracker/97395278999_SELVAKUMARVResume.pdf', NULL, '1', '2025-12-26', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2025-12-29', '1', '2', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-12-23 09:53:50', 159, '2025-12-27 04:03:24', 0, NULL, 1),
(27856, 'SURENTHAR', '6', '9361141261', '9442356424', 'Surentharzz32@gmail.com', '2002-03-16', 23, '2', '2', 'Lakshmi Bharathi', 'House Wife', 220000.00, 0, 0.00, 250000.00, 'Thoothukudi', 'Chennai', '2512230010', '1', '2', 'upload_files/candidate_tracker/58406928229_CV20251219105432.pdf', NULL, '1', '2025-12-23', 1, '', '3', '59', '2025-12-29', 228000.00, '', '3', '2026-02-28', '2', 'Communication Ok fresher for insurance sales sounds ok for our roles talkative need to check in person and see', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '55645', '5151', '2025-12-29', 1, '2025-12-23 10:02:52', 60, '2025-12-27 06:45:28', 0, NULL, 1),
(27857, 'pon rathina lokesh p', '13', '9344531797', '', 'ponrathinalokesh@gmail.com', '2004-02-08', 21, '6', '2', 'palanivel k', 'shop keeper', 7500.00, 1, 0.00, 300000.00, 'tiruchendur', 'k k nagar chennai', '2512230011', '', '1', 'upload_files/candidate_tracker/92681919393_PonRathinaLokeshResume.pdf', NULL, '1', '2025-12-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-23 11:20:00', 154, '2025-12-24 03:06:22', 0, NULL, 1),
(27858, '', '0', '9344531787', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512230012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-23 11:25:05', 0, NULL, 0, NULL, 1),
(27859, 'Vignesh', '6', '9176161850', '8122075480', 'vignesh.s1787@gmail.com', '2004-06-16', 21, '2', '2', 'Vasuki', 'House wife', 25000.00, 0, 0.00, 16000.00, 'perambur, chennai', 'perambur, chennai', '2512230013', '1', '1', 'upload_files/candidate_tracker/98461960549_vigneshresume.pdf', NULL, '1', '2025-12-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-12-23 12:22:38', 154, '2025-12-24 02:57:12', 0, NULL, 1),
(27860, 'Vijayabalan R', '6', '9698006130', '', 'ravivijayabalan@gmail.com', '1997-03-07', 28, '2', '2', 'Ravi P', 'Former', 250000.00, 2, 15000.00, 25000.00, 'Chennai', 'Chennai', '2512230014', '50', '2', 'upload_files/candidate_tracker/20520741653_VijayabalanR2025.pdf', NULL, '3', '2025-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-23 01:48:46', 1, '2025-12-23 01:58:45', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27861, 'Nandha Kumar', '13', '8072859310', '', 'nandhakumar.tirupathi@gmail.com', '2003-12-27', 21, '2', '2', 'Thirupati', 'Farmer', 15000.00, 2, 0.00, 4.00, 'Tirunelveli', 'Chennai', '2512240001', '1', '1', 'upload_files/candidate_tracker/99026862513_NandhaKumarMERNStackDeveloperResume.pdf.pdf', NULL, '1', '2025-12-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (3/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-24 05:23:00', 159, '2025-12-24 12:19:30', 0, NULL, 1),
(27862, 'Monisha Shankar', '6', '8928283221', '9790883029', 'monimoni1511@gmail.com', '2002-08-11', 23, '2', '2', 'Shankar', 'Driver', 18000.00, 1, 16500.00, 20000.00, 'Chennai', 'Chennai', '2512240002', '67', '2', 'upload_files/candidate_tracker/24495961998_CV202510291901033.pdf', NULL, '1', '2025-12-24', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not ok, sustainability issues, sounds not Good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-12-24 05:45:02', 154, '2025-12-24 02:58:12', 0, NULL, 1),
(27863, 'Mohamed Idrees a', '13', '8015549770', '9843800476', 'mohamedidrees257@gmail.com', '2005-03-23', 20, '2', '2', 'abubacker sathuli', 'shopkeeper', 15000.00, 1, 0.00, 18000.00, 'tirunelveli', 'chennai', '2512240003', '1', '1', 'upload_files/candidate_tracker/36313586630_MDIDRRESCV.pdf', NULL, '1', '2025-12-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (2/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-24 11:24:52', 159, '2025-12-26 03:26:57', 0, NULL, 1),
(27864, 'Pricilda', '4', '9042572252', '9894715321', 'pricilda2017@gmail.com', '2000-02-08', 25, '2', '1', 'Maria alex', 'Coolie', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2512240004', '50', '1', 'upload_files/candidate_tracker/1531612553_PricildaResume.pdf', NULL, '1', '2025-12-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-24 12:15:21', 1, '2025-12-24 12:26:32', 0, NULL, 1),
(27865, 'Sivaranjani A', '5', '8122261075', '9786989129', 'sivaranjanibsc28@gmail.com', '1995-06-21', 30, '2', '2', 'Arumugam M', 'Daily wages', 30000.00, 3, 22500.00, 4.50, 'Villupuram', 'Chennai', '2512250001', '1', '2', 'upload_files/candidate_tracker/19965388094_shivan.pdf', NULL, '1', '2025-12-25', 0, '', '1', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55557', '55557', '1970-01-01', 1, '2025-12-25 06:55:20', 154, '2025-12-25 01:11:19', 0, NULL, 1),
(27866, 'Vinoth R', '6', '7010288188', '', 'vinothramaraja@gmail.com', '2003-12-15', 22, '2', '2', 'Ramaraja', 'Driver', 47000.00, 1, 25000.00, 30000.00, 'Kayarambedu, Guduvancheri - 603202', 'Kayarambedu, Guduvancheri - 603202', '2512250002', '1', '2', 'upload_files/candidate_tracker/48938402330_VinothRResume.pdf', NULL, '1', '2025-12-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He had experience with customer service related sales like holidays travels only onbound calls interested people will  call they will confirm the travels booking. so not suitable for our sales, also salary package high expecataion not suitable for that much.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-12-25 10:28:41', 159, '2025-12-26 03:23:37', 0, NULL, 1),
(27867, '', '0', '8438982284', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512250003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-25 11:33:05', 0, NULL, 0, NULL, 1),
(27868, 'Praveen Kumar K', '6', '8637498271', '', 'vkpkin33@gmail.com', '2002-02-07', 23, '2', '2', 'Usha S', 'Un Employed', 25000.00, 0, 20000.00, 30000.00, 'Vellore', 'Chennai', '2512250004', '1', '2', 'upload_files/candidate_tracker/70903019220_Praveen1766213596883.pdf', NULL, '1', '2025-12-26', 3, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2025-12-25 11:46:35', 159, '2025-12-25 05:28:17', 0, NULL, 1),
(27869, '', '0', '6385867603', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512250005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-25 12:19:01', 0, NULL, 0, NULL, 1),
(27870, 'Sridhar', '20', '7358161830', '', 'sridharselva96@gmail.com', '2004-07-08', 21, '3', '2', 'Sankar', 'Bus conductor', 25000.00, 1, 0.00, 20000.00, 'Tindivanam', 'Chennai', '2512250006', '', '1', 'upload_files/candidate_tracker/38494697249_sridharselva.pdf', NULL, '1', '2025-12-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-25 01:17:55', 1, '2025-12-25 01:29:06', 0, NULL, 1),
(27871, 'Balaji S', '13', '7904905076', '', 'balajisamytech@gmail.com', '2003-08-02', 22, '2', '2', 'Samy G', 'Electrician', 15000.00, 1, 0.00, 20000.00, 'Vellore', 'Vellore', '2512250007', '1', '1', 'upload_files/candidate_tracker/71351737476_BalajiResume.pdf', NULL, '1', '2025-12-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (1/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-25 02:39:19', 159, '2025-12-26 03:30:29', 0, NULL, 1),
(27872, 'Saaiganesh VH', '33', '9445223664', '9884496447', 'saaiganesh.vh@gmail.com', '2003-03-07', 22, '2', '2', 'Hemavathy', 'Assistant Secretary', 60000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2512250008', '1', '1', 'upload_files/candidate_tracker/94431183280_DOC20251223WA0000..pdf', NULL, '1', '2025-12-26', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-12-25 03:13:51', 104, '2026-01-08 09:51:21', 0, NULL, 1),
(27873, 'buvaneswari', '4', '9943937770', '', 'buvimathavan2003@gmail.com', '2003-07-01', 22, '3', '2', 'mathavan', 'bps', 50000.00, 2, 0.00, 33000.00, 'chrnnai', 'chrnnai', '2512260001', '', '2', 'upload_files/candidate_tracker/62885143566_resume1.pdf', NULL, '1', '2025-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-26 05:11:56', 1, '2025-12-26 05:14:05', 0, NULL, 1),
(27874, 'Surya Jayachandran', '6', '8939248394', '9380966407', 'suryadce18@gmail.com', '2000-05-01', 25, '2', '2', 'Jayachandran', 'Tailor', 18900.00, 0, 13160.00, 16500.00, 'Ambattur', 'Same as Permanent location', '2512260002', '1', '2', 'upload_files/candidate_tracker/46948338759_SuryaJBPOResume.pdf', NULL, '1', '2025-12-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication not good, he just sitting simly and  asked for demo sales nothing he speaks he just sitting simply with closed mouth. not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '77778', '55566', '1970-01-01', 1, '2025-12-26 05:25:41', 154, '2025-12-26 12:18:23', 0, NULL, 1),
(27875, 'Jagadeesh Senthilkumar', '13', '9629544343', '', 'Jagadeeshsendhil@gmail.com', '2002-12-09', 23, '2', '2', 'Senthilkumar', 'government Employee', 30000.00, 1, 0.00, 15000.00, 'Arani', 'Chennai', '2512260003', '1', '1', 'upload_files/candidate_tracker/17921436059_Resume1.pdf', NULL, '1', '2025-12-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (4/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-26 05:28:56', 159, '2025-12-26 12:51:58', 0, NULL, 1),
(27876, 'Gokulnath v', '13', '9941113363', '9655490262', 'vgokulnath1523@gmail.com', '2002-06-03', 23, '2', '2', 'Venugopal', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Vellore', 'Chennai', '2512260004', '1', '1', 'upload_files/candidate_tracker/4627621669_Gokulresume.pdf', NULL, '1', '2025-12-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude (3/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-26 05:35:39', 159, '2025-12-26 12:53:32', 0, NULL, 1),
(27877, '', '0', '8148189531', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512260005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-26 05:37:06', 0, NULL, 0, NULL, 1),
(27878, 'Karthikhaashree J', '33', '9025060663', '', 'karthikhaajana@gmail.com', '2003-06-22', 22, '2', '2', 'JANARTHANAN .M', 'Auto driver', 40000.00, 1, 0.00, 200000.00, 'Adambakkam , Velachery', 'Adambakkam,Velachery', '2512260006', '1', '1', 'upload_files/candidate_tracker/24425312036_karthikhaashreeresume.pdf', NULL, '1', '2025-12-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication is good. Currently pursuing CMA intermediate 2 attempt and if we ask any basic things any idea about our company accounts she said no idea simply.  if anything i asked she said no. also she got engaged can work only 1 year no practical experience in accounts. not suitable for our team', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2025-12-26 05:37:21', 159, '2025-12-26 03:27:27', 0, NULL, 1),
(27879, 'Pavithra sree', '33', '9345221840', '7200789177', 'pavithrasree0205@gmail.com', '2005-01-02', 20, '5', '2', 'Thirumalai', 'Painter', 20000.00, 1, 0.00, 20000.00, 'Thiruvottiyur, Chennai', 'Thiruvottiyur, Chennai', '2512260007', '', '1', 'upload_files/candidate_tracker/31680427156_cv.pdf', NULL, '1', '2025-12-26', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is okay, but she is getting very nervous. but she had some basic knowledge about accounts theoretically.  Even voice is too low', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-12-26 05:42:49', 159, '2025-12-26 12:24:30', 0, NULL, 1),
(27880, 'Akash P', '13', '9600107160', '', 'Sivaakash02akash@gmail.com', '2005-01-02', 20, '2', '2', 'Prasanna P', 'Driver', 15000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2512260008', '1', '1', 'upload_files/candidate_tracker/92054131034_Akashnewresume.pdf', NULL, '1', '2025-12-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected  in system task', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-26 05:50:37', 159, '2025-12-31 04:40:31', 0, NULL, 1),
(27881, 'sree', '4', '7397258134', '', 'sreemathisree999@hotmail.com', '1998-05-17', 27, '2', '1', 'sdfew', 'dfa', 4125.00, 4, 45.00, 57.00, 'Chennai', 'Chennai', '2512260009', '67', '2', 'upload_files/candidate_tracker/42375724052_SHGSflyer.pdf', NULL, '1', '2025-12-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-26 06:39:57', 1, '2025-12-26 06:43:44', 0, NULL, 1),
(27882, 'Safia farheen', '4', '8939827287', '', 'Safiyafarheen0608@gmail.com', '2010-12-26', 0, '2', '2', 'Nasar Hussain', 'Optician', 30000.00, 2, 15000.00, 20000.00, 'Chennai', 'Royapettah', '2512260010', '50', '2', 'upload_files/candidate_tracker/68148961630_SAFIYAFARHEEN.pdf', NULL, '1', '2025-12-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-12-26 06:41:05', 159, '2025-12-26 03:29:14', 0, NULL, 1),
(27883, 'Jeyapandian P', '6', '9597729434', '', 'jeyapandipitchaimani@gmail.com', '2003-05-21', 22, '2', '2', 'Pitchaimani', 'Daily wages', 25000.00, 1, 0.00, 20000.00, 'Theni', 'Chennai', '2512260011', '67', '1', 'upload_files/candidate_tracker/77625502610_JeyapandianResume.pdf', NULL, '1', '2025-12-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-26 07:14:24', 1, '2025-12-26 07:19:21', 0, NULL, 1),
(27884, 'gunasekaran s', '4', '7305590273', '', 'gunapraveen732@gmail.com', '2003-09-30', 22, '5', '2', 'subramani t', 'sales manager', 20000.00, 1, 0.00, 15000.00, 'avadi chennai', 'avadi chennai', '2512260012', '', '1', 'upload_files/candidate_tracker/29564690301_gunasekaranresume.pdf', NULL, '1', '2025-12-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '1', '1970-01-01', '3', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2025-12-26 09:13:40', 159, '2025-12-26 03:35:54', 0, NULL, 1),
(27885, 'KISHORE KUMAR N', '5', '7397520744', '9344497015', 'kishorkumar.n001@gmail.com', '2000-01-10', 25, '2', '2', 'Nagaraj S', 'Electrition', 18000.00, 0, 26000.00, 28000.00, 'Madurai', 'Chennai', '2512260013', '1', '2', 'upload_files/candidate_tracker/92446996924_HasHResume.pdf', NULL, '1', '2025-12-26', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2025-12-26 09:49:08', 154, '2025-12-26 03:50:16', 0, NULL, 1),
(27886, 'Sandhiya.S', '4', '6385102426', '9962337726', 'sandhiya201822@gmail.com', '2003-01-16', 22, '2', '2', 'Subrmaniyan', 'Welder', 50000.00, 2, 10000.00, 20000.00, 'Chennai', 'Chennai', '2512260014', '50', '2', 'upload_files/candidate_tracker/76169789918_SandhiyaResume.pdf', NULL, '1', '2025-12-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-26 11:31:34', 1, '2025-12-26 11:38:40', 0, NULL, 1),
(27887, '', '0', '8754054599', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512260015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-26 11:56:10', 0, NULL, 0, NULL, 1),
(27888, 'Akshata Mohan Naik', '6', '8861006308', '8618443808', 'naikacchu3@gmail.com', '2004-07-19', 21, '2', '2', 'Mohan Naik', 'Fresher', 40000.00, 1, 0.00, 25000.00, 'Honnavara', 'Electronic City', '2512260016', '1', '1', 'upload_files/candidate_tracker/84693305249_AkshuNk.pdf', NULL, '1', '2025-12-27', 0, '', '3', '59', '2025-12-30', 216000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher seems not much aggressive with the call need to check in training and see', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '2025-12-30', 1, '2025-12-26 12:18:00', 60, '2025-12-29 07:12:11', 0, NULL, 1),
(27889, 'Kavya pv', '6', '7676536784', '9686236142', 'kavya.harsha99@gmail.com', '1998-11-11', 27, '2', '2', 'Lakshmi devi', 'Housewife', 20000.00, 2, 0.00, 32000.00, 'Palyakere village, Chikkaballapur district', 'Marenahalli , jp nagar 2nd phase', '2512260017', '1', '2', 'upload_files/candidate_tracker/41802314308_KavyaPV1.pdf', NULL, '1', '2025-12-29', 0, '', '3', '59', '2026-01-02', 276000.00, '', '1', '1970-01-01', '2', 'Communication Ok need to check in taining and confirm let us see', '5', '1', '2', '2', '2', '1', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55555', '5151', '2026-01-02', 1, '2025-12-26 12:18:29', 60, '2026-01-03 11:18:42', 0, NULL, 1),
(27890, '', '0', '9591619299', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512260018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-26 12:25:12', 0, NULL, 0, NULL, 1),
(27891, 'Holy Pooja R', '4', '9840712713', '9840118891', 'holypooja2025@gmail.com', '2004-04-14', 21, '2', '2', 'Rajasekaran R', 'Self employed', 65000.00, 1, 16000.00, 18000.00, 'Chennai (M Corp.)', 'Chennai (M Corp.)', '2512260019', '1', '2', 'upload_files/candidate_tracker/43676198285_HOLYPOOJAR2.pdf', NULL, '1', '2025-12-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-12-26 01:39:02', 159, '2025-12-29 03:18:41', 0, NULL, 1),
(27892, 'Apeksha Devu Marathi', '20', '6361993593', '9482944175', 'apekshamarathi550@gmail.com', '2002-05-13', 23, '5', '2', 'Devu', 'Agriculture', 10000.00, 2, 17000.00, 25000.00, 'Sirasi devanalli', 'Kadubisanahalli', '2512270001', '', '2', 'upload_files/candidate_tracker/42869859656_ApekshaResume13.pdf', NULL, '1', '2025-12-27', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-27 04:13:42', 1, '2025-12-27 04:19:03', 0, NULL, 1),
(27893, 'Baseer Mohamed B', '6', '8056939105', '', 'mbaseer850@gmail.com', '2001-05-10', 24, '2', '2', 'Father: Bathuvoo Jamal', 'Restaurant assistant chief', 30000.00, 2, 17110.00, 22500.00, 'No.219, Mayakulam, ramanatha puram, pin cod-623515', 'No 158 angappa naik street Mannadi Chennai 600001', '2512270002', '1', '2', 'upload_files/candidate_tracker/34625255658_BaseerMohamedNew.pdf', NULL, '1', '2025-12-29', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2025-12-27 05:10:32', 159, '2025-12-29 12:12:16', 0, NULL, 1),
(27894, 'mugeshkumar v', '4', '9094314366', '8015903590', 'vmk1458@gmail.com', '2003-05-01', 22, '2', '2', 'nirmaladevi v', 'home maker', 22000.00, 1, 15000.00, 20000.00, 'ambattur', 'ambattur', '2512270003', '50', '2', 'upload_files/candidate_tracker/27898796637_MugeshkumarV1223253524012702.pdf', NULL, '1', '2025-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-27 06:10:13', 1, '2025-12-27 06:13:13', 0, NULL, 1),
(27895, 'Sudha P', '4', '9597652681', '', 'sudha26819@gmail.com', '2003-09-02', 22, '5', '2', 'Parimala', 'House Keeping', 28000.00, 1, 0.00, 2.16, 'Kallakurichi', 'Arumbakkam,Chennai', '2512270004', '', '2', 'upload_files/candidate_tracker/18431863399_SudhaP.Resume.pdf', NULL, '1', '2025-12-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-27 06:25:33', 1, '2025-12-27 06:40:01', 0, NULL, 1),
(27896, 'Om sandhiyarani', '6', '9176360532', '7338919824', 'sandhiyarani378@gmail.com', '2005-07-27', 20, '2', '2', 'Shanthi om', '80 k', 15.00, 2, 15.00, 16.00, 'Thiruvottiyur', 'Thiruvottiyur', '2512270005', '1', '2', 'upload_files/candidate_tracker/26356340374_SandhiyaRaniResumeUpdated.pdf', NULL, '3', '2025-12-27', 6, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'GOOD WITH COMMUNICATION AND HAVE CONFIDENCE IN NEED OF JOB REQUIREMENT AND OK FOR IMMEDIATE JOINING', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2025-12-27 06:31:47', 154, '2026-01-10 12:29:21', 0, NULL, 1),
(27897, 'DIONYSIUS IVAN ODELL I', '6', '9840225883', '8939234218', 'ivandanny887@gmail.com', '1999-07-28', 26, '2', '2', 'Y ISAAC ARULKUMAR', 'Retired', 130000.00, 2, 18000.00, 21000.00, 'Chennai', 'Chennai', '2512270006', '1', '2', 'upload_files/candidate_tracker/71108145970_DionysiusIvanCV....pdf', NULL, '1', '2025-12-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2025-12-27 06:33:12', 1, '2025-12-27 06:42:57', 0, NULL, 1),
(27898, 'Parashuram M', '6', '7337776014', '8660289357', 'ramparshuram59925@gmail.com', '2004-12-30', 20, '2', '2', 'Mahadevappa', 'Jobseeker', 20000.00, 0, 20000.00, 25000.00, 'BANGALORE URBAN', 'BANGALORE URBAN', '2512270007', '1', '2', 'upload_files/candidate_tracker/640652065_Resume06122025111455AM.pdf', NULL, '1', '2025-12-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'good communication and Confidence Level.. having Experience in Convincing the client in Previous job need to have salary discussion ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2025-12-27 07:31:25', 162, '2025-12-27 05:06:05', 0, NULL, 1),
(27899, '', '0', '7996218079', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512270008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-27 09:02:41', 0, NULL, 0, NULL, 1),
(27900, 'Veerakumar N', '13', '8270609457', '7639953743', 'veerakumarnece@gmail.com', '2003-08-09', 22, '2', '2', 'Nagarajan', 'Wages', 25000.00, 1, 0.00, 250000.00, '4/3,east Street,P.Ramasamypuram,virudhunagar', 'Kottivakkam,Chennai', '2512270009', '1', '1', 'upload_files/candidate_tracker/3677600985_VEERAKUMARNDOTNET.pdf', NULL, '1', '2025-12-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in aptitude (4/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-27 09:55:15', 159, '2025-12-29 06:43:07', 0, NULL, 1),
(27901, 'Dhatchanamoorthi M', '13', '9787878871', '', 'dhatchanamoorthi2004@gmail.com', '2004-09-21', 21, '2', '2', 'Muthu', 'Farmer', 15000.00, 1, 0.00, 25000.00, 'Perambalur', 'Chennai, Ashoknagar', '2512270010', '1', '1', 'upload_files/candidate_tracker/40848986212_DHATCHANAMOORTHINEWUPDATERESUME.pdf', NULL, '1', '2025-12-29', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-27 11:43:40', 159, '2025-12-29 06:42:55', 0, NULL, 1),
(27902, '', '0', '9360298754', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512270011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-27 12:11:16', 0, NULL, 0, NULL, 1),
(27903, 'subashkannan', '2', '8838506695', '', 'subashkannan0309@gmail.com', '2004-09-03', 21, '3', '2', 'ramesh', 'painter', 18000.00, 1, 0.00, 300000.00, 'mettupalayam', 'chennai', '2512270012', '', '1', 'upload_files/candidate_tracker/44188802058_SubashkannanR.pdf', NULL, '1', '2026-01-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-27 12:33:21', 1, '2025-12-27 12:41:43', 0, NULL, 1),
(27904, 'VIKNESH S', '2', '6380151098', '', 'viknezdeveloper@gmail.com', '2010-12-27', 0, '4', '2', 'Senthilkumar J', 'Farmer', 240000.00, 1, 0.00, 240000.00, 'Chidambaram,Cuddalore', 'Chennai', '2512270013', '', '1', 'upload_files/candidate_tracker/45008123568_SVikneshMernStackDeveloperResume.pdf', NULL, '1', '2025-12-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-27 01:09:17', 1, '2025-12-27 01:11:47', 0, NULL, 1),
(27905, 'vimal a', '20', '8086507348', '9446337348', 'vimalaugustine0@gmail.com', '2004-05-25', 21, '5', '2', 'augustine', 'carpenter', 20000.00, 1, 0.00, 26500.00, 'munnar kerala', 'chromepet', '2512270014', '', '1', 'upload_files/candidate_tracker/93107986342_VimalResume.pdf', NULL, '1', '2025-12-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-27 01:28:30', 1, '2025-12-27 01:36:00', 0, NULL, 1),
(27906, 'Vimal A', '6', '8086407348', '9446337348', 'vimalaugustine0@gmail.com', '2004-05-25', 21, '2', '2', 'augustine', 'carpenter', 20000.00, 1, 0.00, 2.50, 'munnar', 'chromepet', '2512270015', '1', '2', 'upload_files/candidate_tracker/2854295644_Resume.pdf', NULL, '1', '2025-12-29', 0, '', '3', '59', '2026-01-05', 210000.00, '', '1', '1970-01-01', '1', 'Communication Ok Fresher for our insurance Sales need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55645', '5151', '2026-01-05', 1, '2025-12-27 01:42:07', 60, '2026-01-03 04:23:33', 0, NULL, 1),
(27907, 'SELVAKUMAR N', '31', '9943060272', '9944194416', 'selva200305@gmail.com', '2003-05-02', 22, '2', '2', 'Neelavathi', 'Tailor', 144000.00, 1, 0.00, 15000.00, '16/10 Periyathottam 7th Street Kangayam road', '16/10 Periyathottam 7th Street Kangayam road', '2512280001', '1', '1', 'upload_files/candidate_tracker/57385717575_SelvakumarResume.pdf', NULL, '1', '2025-12-29', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-28 03:11:07', 159, '2025-12-29 06:43:27', 0, NULL, 1),
(27908, 'Praveen S', '31', '8220235676', '', 'ps460074@gmail.com', '2002-01-04', 23, '2', '2', 'Subramaniam', 'Tailor', 25000.00, 1, 0.00, 15000.00, 'Tiruppur', 'Tiruppur', '2512280002', '1', '1', 'upload_files/candidate_tracker/27340040032_PRAVEENResume1.pdf', NULL, '1', '2025-12-29', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-28 03:11:32', 159, '2025-12-29 06:44:09', 0, NULL, 1),
(27909, 'Raghulkrishnan Venkadachalam', '6', '9566797452', '9344391713', 'raghulkrishnan222@gmail.com', '2002-09-09', 23, '3', '2', 'Venkadachalam', 'Bussiness', 80000.00, 1, 0.00, 18000.00, 'Namakkal', 'Triplican', '2512290001', '', '1', 'upload_files/candidate_tracker/70592545676_SimpleProfessionalCVResume.pdf202407132032550000.pdf', NULL, '1', '2025-12-29', 0, '', '3', '59', '2025-12-30', 204000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher for telecalling 3 monhts exp in another profile career gap due to family sister marriage need to check in training and see', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2025-12-30', 1, '2025-12-29 04:29:12', 60, '2025-12-29 07:14:05', 0, NULL, 1),
(27910, 'h shamli', '6', '9345580628', '9094419795', 'shamlisham15391@gmail.com', '2004-05-14', 21, '2', '2', 'Jeeva', 'Fisher', 75000.00, 1, 16000.00, 20000.00, 'Adyar', 'Adyar', '2512290002', '1', '2', 'upload_files/candidate_tracker/49615543212_SHAMLIRESUME.pdf', NULL, '1', '2025-12-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-12-29 04:37:55', 159, '2025-12-29 01:16:23', 0, NULL, 1),
(27911, 'Priyanka Selvam', '5', '9344534545', '8148642611', 'priyafab26@gmail.com', '1993-06-26', 32, '1', '1', 'Mohan rao', 'Travels', 30000.00, 2, 23000.00, 30000.00, 'No 29 Neeliyappa mudali street ponneri 601204', 'No 29 Neeliyappa mudali street ponneri 601204', '2512290003', '', '2', 'upload_files/candidate_tracker/9190566919_PriyankaResume51.pdf', NULL, '1', '2025-12-29', 0, 'CAFSUSR01204', '3', '59', '2026-01-02', 357600.00, '', '3', '2026-02-28', '1', 'Communication Good have exp in sales calling fresher for insurance domain need to check in training and see', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '2026-01-02', 1, '2025-12-29 05:16:26', 60, '2026-01-02 11:21:11', 0, NULL, 1),
(27912, '', '0', '6381124521', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512290004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-29 05:39:14', 0, NULL, 0, NULL, 1),
(27913, 'Nandha Kumar nn', '6', '9444043570', '7845404354', 'nandha8800kumar@gmail.com', '2001-12-11', 24, '3', '2', 'Jayalakshmi', 'Home maker', 25000.00, 1, 18000.00, 20000.00, 'Porur', 'Porur', '2512290005', '', '2', 'upload_files/candidate_tracker/12794327149_DOC20251220WA0007..pdf', NULL, '1', '2025-12-29', 0, '', '3', '59', '2025-12-29', 240000.00, '', '1', '1970-01-01', '1', 'As discussed proceeding for the joining process', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-29 05:41:19', 60, '2025-12-29 11:31:55', 0, NULL, 1),
(27914, 'Dilip kumar', '28', '9629952489', '7200244284', 'dilipkumar99887@gmail.com', '2010-12-29', 0, '2', '2', 'Palanikumar', 'Supervisor', 30000.00, 1, 24000.00, 20000.00, 'Ambattur', 'Ambattur', '2512290006', '50', '2', 'upload_files/candidate_tracker/5476790586_UpdatedResumeDilipSTATS.pdf', NULL, '1', '2025-12-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-29 05:59:26', 1, '2025-12-29 06:03:56', 0, NULL, 1),
(27915, 'p lavanya', '4', '8838768947', '9283167089', 'lavanya254367@gmail.com', '2005-03-14', 20, '3', '2', 'palani', 'carpendar', 15000.00, 2, 12700.00, 16000.00, 'chennai', 'Chennai', '2512290007', '', '2', 'upload_files/candidate_tracker/97934445122_P.Lavanyaresume.pdf', NULL, '1', '2025-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-29 07:22:28', 1, '2025-12-29 07:51:07', 0, NULL, 1),
(27916, '', '0', '9025976259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512290008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-29 07:35:17', 0, NULL, 0, NULL, 1),
(27917, 'Sulfeya. b', '4', '9941603085', '', 'sulfeya27@gmail.com', '2003-04-27', 22, '2', '2', 'Ayisha', 'Working', 300000.00, 1, 0.00, 200000.00, 'Avadi', 'Avadi', '2512290009', '50', '1', 'upload_files/candidate_tracker/47501176020_CV2025071812481318.pdf', NULL, '3', '2025-12-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-29 08:32:18', 1, '2025-12-29 08:38:19', 0, NULL, 1),
(27918, 'R.pARTHIBAN', '6', '8248433790', '6383134946', 'parthibanparthi312@gmail.com', '2001-09-20', 24, '2', '2', 'E.RAJENDIRAN', 'Formar', 250000.00, 2, 16000.00, 20000.00, '19, North Street,c.k.padi ,tiruvannamalai', 'Chennai, Ekkattuthangal', '2512290010', '50', '2', 'upload_files/candidate_tracker/42541770206_ParthibanResume1.pdf', NULL, '1', '2025-12-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-29 08:47:57', 159, '2025-12-30 01:31:30', 0, NULL, 1),
(27919, '', '0', '8148905124', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512290011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-29 10:05:56', 0, NULL, 0, NULL, 1),
(27920, 'S Mohammad Fazil', '33', '9345979191', '', 'mohammedfazil19112004@gmail.com', '2004-11-19', 21, '2', '2', 'N.sakkarai bava', 'Sales man', 21000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2512290012', '1', '1', 'upload_files/candidate_tracker/83853737788_MhdFazilResume.pdf', NULL, '3', '2025-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-12-29 12:30:11', 1, '2025-12-29 12:34:29', 0, NULL, 1),
(27921, 'm mahalakshmi', '6', '9994663650', '9789256874', 'diyamaha271@gmail.com', '1999-11-05', 26, '2', '2', 'devi', 'private job', 300000.00, 0, 0.00, 23000.00, 'chennai', 'chennai', '2512290013', '1', '2', 'upload_files/candidate_tracker/75691239473_mahalakshimiresume.pdf', NULL, '1', '2025-12-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2025-12-29 12:34:30', 159, '2025-12-30 01:30:46', 0, NULL, 1),
(27922, 'J. Karpagavalli', '33', '7538804698', '9841608287', 'karpagavalliafa12157@gmail.com', '2003-07-24', 22, '2', '2', 'S.Jaya Kumar', 'Driver', 20000.00, 0, 8000.00, 15000.00, 'Rajeshwari Street, Metha Nagar, Aminjikarai', 'Rajeshwari Street, Metha Nagar, Aminjikarai', '2512290014', '1', '2', 'upload_files/candidate_tracker/14815097331_J.Karpagavalliresume6.docx', NULL, '1', '2025-12-30', 6, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2025-12-29 12:47:13', 1, '2025-12-29 01:56:01', 0, NULL, 1),
(27923, 'Santhoshkumar S', '13', '6383511275', '', 'santhoshanu31@gmail.com', '2002-08-31', 23, '2', '2', 'Saravanamuthu, Anuradha', 'Farmer', 30000.00, 3, 0.00, 20000.00, 'Ariyalur', 'Ariyalur', '2512290015', '1', '1', 'upload_files/candidate_tracker/88450461982_SanthoshKumarResumae.pdf', NULL, '1', '2025-12-31', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected in program test', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-29 01:48:43', 159, '2025-12-31 01:29:06', 0, NULL, 1),
(27924, 'Lakshmk Marathi', '4', '6361264297', '', 'bhagyamarathi3@gmail.com', '2005-09-04', 20, '5', '2', 'Umesh Marathi', 'Fresher', 3500.00, 1, 0.00, 20000.00, 'Manjuguni sirsi uttara kannada', 'Check post kengeri', '2512300001', '', '1', 'upload_files/candidate_tracker/13524267637_Bhagya.pdf', NULL, '1', '2026-01-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-30 02:05:03', 1, '2025-12-30 02:18:10', 0, NULL, 1),
(27925, '', '0', '8244558712', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512300002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-30 04:09:38', 0, NULL, 0, NULL, 1),
(27926, 'Naresh krishna', '31', '8610078544', '9944880268', 'nareshms2060@gmail.com', '2002-10-01', 23, '2', '2', 'murugesan', 'farmer', 5000.00, 4, 0.00, 500000.00, 'Nagapatinam', 'chennai', '2512300003', '1', '1', 'upload_files/candidate_tracker/31236065569_NareshkrishnaMResume.pdf', NULL, '1', '2026-02-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Not cleared aptitude', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-30 06:02:06', 159, '2026-02-04 10:50:19', 0, NULL, 1),
(27927, 'Tharun Raj M', '33', '8610884669', '9445483151', 'tharun2162@gmail.com', '2002-06-21', 23, '2', '2', 'K.Manoharan', 'Business', 15000.00, 1, 14000.00, 17000.00, '147ramasamystreetgblockponniammanmeduchennai600110', '147ramasamystreetgblockponniammanmeduchennai600110', '2512300004', '1', '2', 'upload_files/candidate_tracker/58522943440_TharunRajResume.pdf', NULL, '1', '2025-12-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-30 06:03:20', 159, '2025-12-30 01:32:15', 0, NULL, 1),
(27928, 'Sangeetha.M', '6', '8618850324', '8088341843', 'sangeetha09072@gmail.com', '2002-07-09', 23, '2', '2', 'Roopa', '2puc', 16.00, 2, 18.00, 22.00, '201,13th cross madiwala btm layout Bangalore', '201,13th cross madiwala btm layout Bangalore', '2512300005', '57', '2', 'upload_files/candidate_tracker/42921531724_resume4.pdf', NULL, '1', '2025-12-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good Communication and 2 years experience in LIC, good knowledge in sales', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2025-12-30 06:09:23', 154, '2026-01-02 10:07:14', 0, NULL, 1),
(27929, 'Sandhiya B', '6', '9566041430', '', 'sandhiyasusila2005@gmail.com', '2005-03-18', 20, '2', '2', 'Susila', 'Home maker', 12000.00, 1, 0.00, 20000.00, 'Chennai', 'Kk nagar,Chennai', '2512300006', '50', '1', 'upload_files/candidate_tracker/274236406_downloadresume.pdf', NULL, '1', '2026-01-06', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2025-12-30 06:12:25', 154, '2026-01-06 04:24:21', 0, NULL, 1),
(27930, 'mohammed fazil', '33', '9345981919', '', 'mohammedfazil19112004@gmail.com', '2004-11-19', 21, '5', '2', 'n.sakkarai bava', 'sales man', 21000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2512300007', '', '1', 'upload_files/candidate_tracker/25904523008_MhdFazilResume.pdf', NULL, '1', '2025-12-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-30 07:51:52', 1, '2025-12-30 07:57:44', 0, NULL, 1),
(27931, 'Dharshini R', '6', '9345606801', '7010812060', 'dharshini.rajagovindan@gmail.com', '2003-11-27', 22, '2', '2', 'Rajagovindan', 'Contractor', 22000.00, 1, 0.00, 25000.00, 'Neyveli', 'Poonamallee', '2512300008', '50', '1', 'upload_files/candidate_tracker/46630265595_DHARSHINIR.pdf', NULL, '1', '2026-01-02', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is 5050 and voice is too low, and have idea of going to higher studies for MSC and PHD', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-12-30 09:29:23', 154, '2026-01-02 11:30:06', 0, NULL, 1),
(27932, 'Priyadharshini L', '6', '7397301015', '', 'dharshinisag15@gmail.com', '1999-01-15', 26, '2', '2', 'Loganathan K', 'Icf', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2512300009', '50', '1', 'upload_files/candidate_tracker/68434511801_PriyadharshiniL.pdf', NULL, '1', '2025-12-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-30 09:59:52', 154, '2025-12-31 02:46:58', 0, NULL, 1),
(27933, 'lokeshwari', '4', '9600033676', '', 'logs1017@gmail.com', '2000-09-17', 25, '2', '2', 'Prabhakar', 'Saree sales supervisor', 20000.00, 0, 0.00, 20000.00, 'Villivakkam', 'Villivakkam Chennai', '2512300010', '1', '2', 'upload_files/candidate_tracker/526263861_DOC20250607WA0003.2.pdf', NULL, '1', '2026-01-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-30 10:27:56', 154, '2026-01-12 06:09:29', 0, NULL, 1),
(27934, 'Iniyan Senthilkumar', '4', '9342985224', '7904133869', 'iniyansenthilkumar416@gmail.com', '2000-05-20', 25, '2', '2', 'Senthil Kumar', 'Civil engineer', 60000.00, 1, 0.00, 18000.00, 'coimbatore', 'Chennai', '2512300011', '50', '1', 'upload_files/candidate_tracker/43293644517_INIYANSResume.pdf', NULL, '1', '2025-12-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-30 11:02:11', 1, '2025-12-30 11:27:07', 0, NULL, 1),
(27935, '', '0', '8428230123', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512300012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-30 12:50:58', 0, NULL, 0, NULL, 1),
(27936, 'Periyandavar k', '6', '8778139834', '9788746982', 'periyandavark85@gmail.com', '2000-08-29', 25, '2', '2', 'Jkumaresan', 'Daily wages', 70000.00, 1, 20000.00, 28000.00, 'Chennai', 'Chennai', '2512300013', '1', '2', 'upload_files/candidate_tracker/799511472_periyandavarresume28.09.2025.pdf', NULL, '1', '2026-01-07', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2025-12-30 02:21:07', 154, '2026-01-07 02:37:05', 0, NULL, 1),
(27937, 'Manoj Gabriel', '6', '6393426198', '9500056230', 'Gabrielbai2605@gmail.com', '2001-10-26', 24, '2', '2', 'Vinnrasi', 'Teacher', 25000.00, 1, 20000.00, 22000.00, 'Madhavaram', 'Madhavaram', '2512300014', '1', '2', 'upload_files/candidate_tracker/6287988129_K.GabrielResume.docx', NULL, '1', '2026-01-02', 0, '', '5', '164', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate was rejected ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55692', '5151', '1970-01-01', 1, '2025-12-30 07:21:00', 154, '2026-01-02 01:07:14', 0, NULL, 1),
(27938, 'Dinesh Pandiyan', '13', '7604856110', '', 'dineshpandiyan457@gmail.com', '2004-04-07', 21, '2', '2', 'Pandiyan', 'Farmer', 25000.00, 1, 0.00, 15000.00, 'Tittakudi', 'Chennai', '2512310001', '1', '1', 'upload_files/candidate_tracker/29940306161_DINESHRESUME.pdf', NULL, '1', '2025-12-31', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', 'Rejected in aptitude (4/10)', '', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-31 05:11:57', 159, '2025-12-31 12:00:05', 0, NULL, 1),
(27939, 'Arun P', '4', '8754218029', '7538877423', 'Arun298021@gmail.com', '2002-06-24', 23, '2', '2', 'R PaulRaj', 'Madura Coats Pvt LTD.', 300000.00, 2, 12000.00, 17000.00, 'MADURAI', 'Chennai', '2512310002', '50', '2', 'upload_files/candidate_tracker/26631045067_ArunCustomerSupportResumedec.pdf', NULL, '1', '2026-01-02', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-31 05:31:34', 1, '2025-12-31 05:37:08', 0, NULL, 1),
(27940, 'Bharanthan', '33', '9345750690', '', 'bharathanshanmugam@gmail.com', '2010-12-31', 0, '2', '2', 'SHANMUGAM', 'Farmer', 150000.00, 1, 19000.00, 25000.00, 'Panruti', 'Chennai', '2512310003', '1', '2', 'upload_files/candidate_tracker/28280687643_BharathanSResume1.pdf', NULL, '1', '2026-01-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '2', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2025-12-31 06:19:04', 104, '2026-01-02 09:44:05', 0, NULL, 1),
(27941, 'harshad m', '5', '8880502974', '9538757289', 'harshadm796@gmail.com', '1995-01-20', 30, '2', '1', 'sanya', 'home maker', 30000.00, 3, 30000.00, 32000.00, 'davangere', 'btm layout', '2512310004', '57', '2', 'upload_files/candidate_tracker/61448775369_harshadresume.doc', NULL, '1', '2025-12-31', 0, '', '3', '59', '2026-01-20', 360000.00, '', '3', '2026-04-01', '1', 'Communication Ok have exp but in our same domain open for insurance need to check in training and confirm', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '2026-01-20', 1, '2025-12-31 06:28:01', 60, '2026-01-20 09:57:14', 0, NULL, 1),
(27942, 'Swathy', '33', '9344029242', '9840189267', 'swathiravi253@gmail.com', '2004-10-27', 21, '2', '2', 'Ravi.R', 'Private', 300000.00, 1, 0.00, 18000.00, 'Ambattur , chennai', 'Ambattur , chennai', '2512310005', '1', '1', 'upload_files/candidate_tracker/56350195004_GrayandWhiteSimpleCleanResume202512271407590000.pdf', NULL, '1', '2026-01-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2025-12-31 06:36:43', 154, '2026-01-02 03:15:33', 0, NULL, 1),
(27943, 'SONIYA', '33', '9150265679', '', 'Soniyaantony42@gmail.com', '2000-09-07', 25, '2', '2', 'T. Paduvai antony', 'Driver', 25000.00, 1, 15000.00, 20000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2512310006', '1', '2', 'upload_files/candidate_tracker/38018744350_CV2025122710242236.pdf', NULL, '1', '2026-01-02', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2025-12-31 06:36:45', 154, '2026-01-02 02:32:31', 0, NULL, 1),
(27944, 'Swathy', '33', '9043089230', '', 'Swathyraghul3@gmail.com', '2005-03-28', 20, '5', '2', 'Nil', 'Nil', 25000.00, 1, 0.00, 16000.00, 'Perambur', 'Perambur', '2512310007', '', '1', 'upload_files/candidate_tracker/482662512_swathyRESUME.docx', NULL, '1', '2026-01-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2025-12-31 06:43:04', 154, '2026-01-03 02:58:15', 0, NULL, 1),
(27945, 'Kaviya Kumaresan', '6', '6369296637', '', 'kaviyakumaran078@gmail.com', '2002-06-11', 23, '2', '2', 'Kumaresan', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2512310008', '1', '2', 'upload_files/candidate_tracker/17349524506_kaviyakumaresanexp.pdf', NULL, '1', '2025-12-31', 0, '', '3', '59', '2026-01-05', 168000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in other domain process need to check in training and confirm', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'CI144', '5151', '2026-01-05', 1, '2025-12-31 06:55:11', 60, '2026-01-03 04:53:03', 0, NULL, 1),
(27946, 'Selvamurugan S', '4', '9080401537', '', 'selvamurugan570@gmail.com', '2001-09-04', 24, '2', '2', 'Selva kumar', 'Driver', 300000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2512310009', '50', '2', 'upload_files/candidate_tracker/9042584978_SelvaMuruganResume.pdf', NULL, '2', '2026-01-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-31 07:33:49', 1, '2025-12-31 07:38:20', 0, NULL, 1),
(27947, 'Malavika. P', '6', '6374787486', '8807242853', 'Malavikamalu2439@gmail.com', '2000-08-24', 25, '2', '2', 'Palanisamy', 'Agriculture', 30000.00, 2, 0.00, 18000.00, 'Pudukottai', 'Anna nagar, Chennai', '2512310010', '50', '1', 'upload_files/candidate_tracker/79809740948_Malavikaresume1.pdf', NULL, '1', '2026-01-02', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no sustainability in previous work exp, telling stories for getting relieved', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2025-12-31 08:48:37', 154, '2026-01-02 11:51:20', 0, NULL, 1),
(27948, 'Ajaybabu', '4', '8610624492', '8939100364', 'ajaybabu2633@gmail.com', '2001-11-26', 24, '2', '2', 'Parents', 'Government job', 17.50, 1, 15.00, 20000.00, 'Pattaibram', 'Pattaibram', '2512310011', '50', '2', 'upload_files/candidate_tracker/52990360307_resume.pdf', NULL, '1', '2026-01-04', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2025-12-31 08:55:15', 1, '2026-01-02 07:24:53', 0, NULL, 1),
(27949, '', '0', '9025507331', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2512310012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2025-12-31 10:19:19', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27950, 'Sivachandran A', '13', '7358050448', '8925740448', 'sivachandranarulmani@gmail.com', '2004-09-28', 21, '2', '2', 'Arul mani V', 'Cargo surveyor', 50000.00, 1, 0.00, 300000.00, 'Saidapet, chennai', 'Saidapet,chennai', '2512310013', '1', '1', 'upload_files/candidate_tracker/96533796186_SivachandranResume.pdf', NULL, '1', '2026-01-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', 'aptitude - 4/10', 'H1018', '', '', '', '1970-01-01', 1, '2025-12-31 11:54:14', 154, '2026-01-02 11:54:45', 0, NULL, 1),
(27951, '', '0', '8248636877', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601010001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-01 11:24:29', 0, NULL, 0, NULL, 1),
(27952, '', '0', '6383426198', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601020001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-02 04:27:31', 0, NULL, 0, NULL, 1),
(27953, 'Balji Sri Saranya', '6', '9704969590', '', 'saranyabalji@gmail.com', '2004-08-01', 21, '3', '2', 'Balji. Veera lachchababu', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'East Godavari, Andhrapradesh', 'Benguluru,karnataka', '2601020002', '', '1', 'upload_files/candidate_tracker/39248862153_pdfcopyofresumecc.pdf', NULL, '1', '2026-01-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-02 04:41:10', 1, '2026-01-02 04:49:26', 0, NULL, 1),
(27954, 'KAMALA SANTHOSHAM', '6', '7386970159', '', 'kamalasanthosham@gmail.com', '2004-11-12', 21, '3', '2', 'KAMALA ABRAHAM', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Guntur, Andhra pradesh', 'Banglore, Karnataka', '2601020003', '', '1', 'upload_files/candidate_tracker/80307311896_Myresume.pdf', NULL, '1', '2026-01-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-02 04:41:16', 1, '2026-01-02 04:49:35', 0, NULL, 1),
(27955, '', '0', '9705969590', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601020004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-02 04:51:44', 0, NULL, 0, NULL, 1),
(27956, 'jashni b', '6', '9629271389', '7339009614', 'jashni482@gmail.com', '2001-09-17', 24, '2', '2', 'anandhi', 'house wife', 10000.00, 1, 25000.00, 38000.00, 'Thoothukudi', 'chennai', '2601020005', '66', '2', 'upload_files/candidate_tracker/97505963_Jashni.pdf', NULL, '1', '2026-01-02', 7, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-02 06:12:26', 154, '2026-01-03 10:05:34', 0, NULL, 1),
(27957, 'Hemasri J', '4', '8610781514', '9486801878', 'jhemasriu@gmail.com', '2003-07-01', 22, '2', '2', 'D.Jeevanantham', 'Telecaller', 400000.00, 1, 0.00, 20000.00, 'Mayiladuthurai', 'Ambattur', '2601020006', '50', '1', 'upload_files/candidate_tracker/75662948619_Resume.pdf', NULL, '2', '2026-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-02 06:18:14', 1, '2026-01-02 06:20:56', 0, NULL, 1),
(27958, 'Arun kumar V', '6', '9962085388', '7550231349', 'arunkumar21052k2@gmail.com', '2002-05-21', 23, '2', '2', 'Devi. V', 'Retail shop business', 20000.00, 1, 14000.00, 20000.00, 'Old washermenpet', 'Chennai', '2601020007', '1', '2', 'upload_files/candidate_tracker/11131180336_ARUN.resume.pdf', NULL, '1', '2026-01-03', 0, '', '3', '59', '2026-01-05', 216000.00, '', '1', '1970-01-01', '1', 'Communication good have exp in imarque for BL/PL sales fresher for insurance can give a try in our roles need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55692', '5151', '2026-01-05', 1, '2026-01-02 06:38:14', 60, '2026-01-03 04:59:32', 0, NULL, 1),
(27959, 'Mohamed Ameerdeen S', '6', '9384934380', '9442484729', 'ameerdeem325@gmail.com', '2003-06-29', 22, '2', '2', 'Bharakath nisha', 'Student', 40.00, 0, 0.00, 18000.00, 'Royapuram chennai', 'Royapuram chennai', '2601020008', '1', '1', 'upload_files/candidate_tracker/42990883430_MOHAMEDAMEERDEENSPayslipOctober20251.pdf', NULL, '1', '2026-01-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-02 07:09:30', 154, '2026-01-03 09:34:09', 0, NULL, 1),
(27960, 'Abileshtharan', '13', '9840364075', '6379111160', 'abileshtharan@gmail.com', '2003-07-23', 22, '3', '2', 'Palanikumar', 'Kooli', 15000.00, 0, 0.00, 2.00, 'Viruthunagar', 'Chennai', '2601020009', '', '1', 'upload_files/candidate_tracker/611845055_ABILESHTHARANRESUME.pdf', NULL, '1', '2026-01-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-02 07:48:20', 154, '2026-01-03 10:04:27', 0, NULL, 1),
(27961, 'ANUNANDANA m', '4', '9778378180', '', 'anu154307@gamil.com', '2002-06-09', 23, '2', '2', 'Chandran', 'Tellecaller', 400000.00, 1, 18000.00, 25000.00, 'Kerala', 'Tondiarpet', '2601020010', '50', '2', 'upload_files/candidate_tracker/82954070105_ANUNANDANAM.pdf', NULL, '1', '2026-01-05', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', 'she is completely malayalam', '', '', '', '', '1970-01-01', 1, '2026-01-02 08:04:51', 159, '2026-01-05 11:51:55', 0, NULL, 1),
(27962, '', '0', '6383490231', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601020011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-02 09:22:00', 0, NULL, 0, NULL, 1),
(27963, 'sneka', '6', '8248917832', '7010481174', 'snegasnega421@gmail.com', '2005-01-27', 20, '2', '2', 'Durai babu', 'No', 30000.00, 1, 0.00, 18000.00, 'Ennore, kathivakkam', 'kathivakkam', '2601020012', '50', '1', 'upload_files/candidate_tracker/17149576746_SnekaResume1.pdf', NULL, '1', '2026-01-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE WAS OK WITH COMMUNICATION AND QUITE CONFIDENT ALSO INTERESTED AND TOLD THAT SHE  WILL JOIN BY THURSDAY  AND LOC ENNORE SO HAVE A LITTLE DOUBT ABOUT IT ALSO', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2026-01-02 11:04:30', 154, '2026-01-07 09:29:33', 0, NULL, 1),
(27964, 'IMRAN SHERIFF', '33', '9043892060', '', 'imransheriff200205@gmail.com', '2002-05-20', 23, '2', '2', 'KHADER SHERIFF', 'self Employed', 24000.00, 1, 16500.00, 20000.00, 'New Washermenpet', 'New Washermenpet', '2601020013', '1', '2', 'upload_files/candidate_tracker/51404568521_ResumeofIMRAN.pdf', NULL, '1', '2026-01-03', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-02 12:25:25', 154, '2026-01-03 04:23:04', 0, NULL, 1),
(27965, '', '0', '8681886479', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601020014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-02 12:50:07', 0, NULL, 0, NULL, 1),
(27966, '', '0', '8838008313', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601020015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-02 01:40:44', 0, NULL, 0, NULL, 1),
(27967, '', '0', '8940684805', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601020016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-02 01:54:27', 0, NULL, 0, NULL, 1),
(27968, '', '0', '8667731314', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601020017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-02 03:11:08', 0, NULL, 0, NULL, 1),
(27969, 'Aravind Surya G', '13', '6381763624', '7904228127', 'aravindsurya1245@gmail.com', '2005-04-12', 20, '2', '2', 'Ganesan', 'Business man', 15.00, 1, 0.00, 20000.00, 'Chennai, Tamil Nadu', 'Madurai, Tamil Nadu', '2601020018', '1', '1', 'upload_files/candidate_tracker/1515012686_AravindSuryaResume.pdf', NULL, '1', '2026-01-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-02 04:38:09', 154, '2026-01-03 06:18:34', 0, NULL, 1),
(27970, 'Mohamed Afzal', '33', '9445520960', '', 'mohamedafzal1212@gmail.com', '2003-12-02', 22, '2', '2', 'Sheik Udhuman', 'Business', 120000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2601020019', '1', '1', 'upload_files/candidate_tracker/84139689495_mohamedafzalresume.pdf', NULL, '1', '2026-01-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-02 05:24:28', 154, '2026-01-03 06:19:32', 0, NULL, 1),
(27971, 'Ranjith s', '5', '9043105909', '9043795909', 'appuranjith0821@gmail.com', '2001-08-08', 24, '3', '1', 'ammu s', 'private sector', 30000.00, 0, 25000.00, 30000.00, 'kolathur chennai', 'kolathur chennai', '2601030001', '', '2', 'upload_files/candidate_tracker/37039822909_RANJITHRESUME.pdf', NULL, '1', '2026-01-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-03 12:31:32', 1, '2026-01-03 12:38:10', 0, NULL, 1),
(27972, 'A Manicka Satheesh', '16', '9025329646', '9486481956', 'manickasatheesh77@gmail.com', '2002-02-26', 23, '2', '2', 'Ambalavanan', 'Daily wages', 17000.00, 2, 0.00, 1.80, 'Tirunelveli', 'Tambaram', '2601030002', '1', '1', 'upload_files/candidate_tracker/34510434871_ManickaSatheeshDataAnalystResumepdf1.pdf', NULL, '1', '2026-01-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-03 03:43:57', 154, '2026-01-03 04:32:44', 0, NULL, 1),
(27973, 'Madhavan P M', '16', '7092723557', '', 'maddypm982@gmail.com', '2002-08-09', 23, '2', '2', 'Parvathi muthu P', 'Daily wages', 50000.00, 2, 0.00, 240000.00, 'Ayapakkam, chennai-77', 'Ayapakkam, chennai-77', '2601030003', '1', '1', 'upload_files/candidate_tracker/2769453723_Resume.pdf', NULL, '1', '2026-01-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-03 03:48:03', 154, '2026-01-03 04:26:22', 0, NULL, 1),
(27974, '', '0', '8925481527', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601030004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-03 04:05:33', 0, NULL, 0, NULL, 1),
(27975, '', '0', '7418213611', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601030005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-03 04:42:35', 0, NULL, 0, NULL, 1),
(27976, 'Harish pandurangan', '13', '7904404322', '9585666480', 'harishbca2703@gmail.com', '2011-01-03', 0, '2', '2', 'Pandurangan', 'Farmer', 40000.00, 1, 0.00, 15000.00, 'Vadapalani', 'Vadapalani', '2601030006', '1', '1', 'upload_files/candidate_tracker/27510195155_HARISHCV.pdf', NULL, '1', '2026-01-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in written programming round (second round)', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-03 04:45:42', 154, '2026-01-03 06:19:07', 0, NULL, 1),
(27977, 'Vignesh Sivalingam', '4', '9176236316', '', 'vigneshsivalingam31@gmail.com', '1997-07-31', 28, '2', '2', 'Karpagam', 'Caretaker', 26000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2601030007', '50', '1', 'upload_files/candidate_tracker/58880225876_VigneshProfile.pdf', NULL, '1', '2026-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-03 05:05:51', 1, '2026-01-03 05:08:07', 0, NULL, 1),
(27978, 'barath kumar p', '33', '9345862460', '9840685110', 'barathkumar292003@gmail.com', '2003-10-29', 22, '2', '2', 'Nill', 'Student', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2601030008', '1', '1', 'upload_files/candidate_tracker/95844229121_ResumeUpdated.pdf', NULL, '1', '2026-01-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-03 05:21:48', 154, '2026-01-03 06:17:08', 0, NULL, 1),
(27979, 'angu hariharan dhanapal', '4', '8939730647', '', 'anguhariharan1506@gmail.com', '2003-06-15', 22, '2', '2', 'dhanapal', 'business', 50000.00, 2, 0.00, 300000.00, 'chennai', 'chennai', '2601030009', '50', '1', 'upload_files/candidate_tracker/19446912331_Anguhariharan.pdf', NULL, '1', '2026-01-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-03 05:46:24', 154, '2026-01-03 04:29:07', 0, NULL, 1),
(27980, '', '0', '8727863298', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601030010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-03 06:52:12', 0, NULL, 0, NULL, 1),
(27981, 'Raihana Abdulla', '4', '6380264020', '', 'araihananr@gmail.com', '1998-07-30', 27, '2', '1', 'Nawshath Ahmath', 'SAP Consultant', 60000.00, 1, 0.00, 17000.00, 'Chennai', 'Madurai', '2601030011', '50', '1', 'upload_files/candidate_tracker/28457749542_ResumeRaihanaNew111zon111.pdf', NULL, '1', '2026-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-03 07:31:07', 1, '2026-01-03 07:34:17', 0, NULL, 1),
(27982, 'Vinothini', '33', '9176168726', '7299633266', 'Vinothiniraja0911@gmail.com', '2004-11-09', 21, '2', '2', 'Katturaja', 'Ironing man', 20000.00, 1, 0.00, 18000.00, 'No. 168/76 annai sathya nagar, RA puram', 'Chennai', '2601030012', '50', '1', 'upload_files/candidate_tracker/83124925524_Resume.pdf', NULL, '1', '2026-01-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-03 07:38:55', 1, '2026-01-03 07:44:10', 0, NULL, 1),
(27983, 'mathan kumar g', '26', '9025523623', '8754687126', 'mathankumarg2002@gmail.com', '2002-11-13', 23, '2', '2', 'ganesan s', 'driver', 180000.00, 1, 0.00, 2.70, 'Thoothukudi', 'chennai', '2601030013', '1', '1', 'upload_files/candidate_tracker/67053388420_MathankumarMISEXECUTIVEResume.pdf', NULL, '1', '2026-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-01-03 08:01:36', 1, '2026-01-03 08:07:15', 0, NULL, 1),
(27984, 'Bala murugan', '4', '8428890203', '9715294840', 'balamurugan.001.c@gmail.com', '2002-04-16', 23, '2', '2', 'Chandran', 'Indian bank bc', 30000.00, 2, 18000.00, 18000.00, 'Plot no 1 kurinji nagar thirungar madurai', 'Plot no 1 kurinji nagar thirungar madurai', '2601030014', '50', '2', 'upload_files/candidate_tracker/56390290409_AdobeScan11Oct20251.pdf', NULL, '1', '2026-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-03 09:12:23', 1, '2026-01-03 09:18:25', 0, NULL, 1),
(27985, 'anumahalakshmi s', '6', '9003559825', '7708283322', 'anumahalakshmisaravanan@gmail.com', '2005-06-13', 20, '2', '2', 'Vairamani.S', 'tailor', 12000.00, 0, 0.00, 20000.00, 'Madurai', 'Chennai', '2601030015', '50', '1', 'upload_files/candidate_tracker/38161415292_Resume.pdf', NULL, '1', '2026-01-05', 0, '', '1', '164', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55692', '5151', '1970-01-01', 1, '2026-01-03 09:15:13', 154, '2026-01-05 04:43:05', 0, NULL, 1),
(27986, 'Ganapathyraman E', '6', '7904044132', '', 'ganapathyram2233@gmail.com', '2002-07-15', 23, '2', '2', 'Esakkiappan', 'Business', 20000.00, 1, 16.50, 20.00, '17/A 3rd Street North balabagya nagar Tirunelveli', 'Chennai', '2601030016', '1', '2', 'upload_files/candidate_tracker/12001955536_ram1.resume.pdf', NULL, '1', '2026-01-07', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-03 11:20:43', 154, '2026-01-07 03:14:32', 0, NULL, 1),
(27987, 'Nishanthi', '4', '7305905468', '', 'Nishanthin338@gmail.com', '2004-12-11', 21, '5', '2', 'Mallieswari', 'None', 10000.00, 1, 0.00, 15000.00, 'Kilpauk', 'Kilpauk', '2601030017', '', '1', 'upload_files/candidate_tracker/26139386506_downloadresume.pdf', NULL, '1', '2026-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-03 11:40:45', 1, '2026-01-03 11:44:00', 0, NULL, 1),
(27988, 'Varsha S', '33', '9361287838', '', 'varshasrini3@gmail.com', '2004-05-20', 21, '3', '2', 'Srinivasan', 'Business', 3.60, 3, 0.00, 15000.00, 'Tiruvallur', 'Tiruvallur', '2601040001', '', '1', 'upload_files/candidate_tracker/38852041773_varshaupdatedresume.pdf', NULL, '1', '2026-01-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-04 05:08:12', 154, '2026-01-05 04:37:09', 0, NULL, 1),
(27989, 'heena n khatri', '11', '9080567448', '', 'heenakhatri813@gmail.com', '2003-03-15', 22, '2', '2', 'father name - nensukh khatri', 'business', 50000.00, 2, 0.00, 1.00, 'muthukrishnan street kondithope market', 'muthukrishnan street kondithope market', '2601050001', '1', '1', 'upload_files/candidate_tracker/5414569599_HEENAKHATRI.pdf.pdf', NULL, '1', '2026-01-06', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dont know tamil even', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1018', '', '55882', '55566', '1970-01-01', 1, '2026-01-05 04:18:27', 159, '2026-01-07 09:59:03', 0, NULL, 1),
(27990, 'Banupriya', '6', '6381793947', '9361447678', 'banususai1@gmail.com', '1999-11-12', 26, '2', '2', 'Susai', 'Former', 25000.00, 2, 0.00, 18000.00, 'No,10 Anna St, Baburayan pettai village.', 'Babu nagar , Medavakkam, Chennai 100', '2601050002', '1', '2', 'upload_files/candidate_tracker/27272797471_BanuResume.pdf', NULL, '1', '2026-01-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-01-05 06:11:10', 154, '2026-01-05 04:38:12', 0, NULL, 1),
(27991, '', '0', '9944098183', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601050003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-05 06:42:09', 0, NULL, 0, NULL, 1),
(27992, '', '0', '8220949617', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601050004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-05 07:02:23', 0, NULL, 0, NULL, 1),
(27993, 'mohammedramalan', '6', '9003159090', '', 'mohammedramalan22@gmail.com', '2000-12-12', 25, '2', '2', 'mohamed mahuboob', 'Business', 300000.00, 3, 20000.00, 30000.00, 'tambaram', 'tamabaram', '2601050005', '1', '2', 'upload_files/candidate_tracker/98734826942_mohammedresume1.pdf', NULL, '1', '2026-01-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-01-05 07:09:32', 154, '2026-01-05 05:08:59', 0, NULL, 1),
(27994, 'd r kAVYA', '4', '8056257816', '9092347875', 'kavyavinay070@gmail.com', '2001-07-18', 24, '2', '1', 'Husband - Vinay babu', 'Legal clerk', 30000.00, 4, 22000.00, 20000.00, 'No.1 Sivarajapuram 6th Street pulianthope ch-12', 'No 1 Sivarajapuram 6th Street pulianthope ch-12', '2601050006', '1', '2', 'upload_files/candidate_tracker/60133260475_kavyaCV.pdf', NULL, '1', '2026-01-06', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2026-01-05 07:21:55', 154, '2026-01-06 04:08:08', 0, NULL, 1),
(27995, 'Sandhiya', '6', '8778506039', '8667696126', 'sandhiyam32005@gmail.com', '2005-05-05', 20, '2', '2', 'Parent', 'Buliding contractor', 350000.00, 1, 24500.00, 25000.00, 'Chennai', 'NEAR BY ARUMBAKKAM', '2601050007', '50', '2', 'upload_files/candidate_tracker/73770359754_SandhiyaCVcompressed.pdf', NULL, '1', '2026-01-08', 2, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she doesnxquott have any relevent experience but expecting high salary. also asked for demo sales  she is not getting what i aksed also she was thinking about the sales \n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2026-01-05 08:14:59', 154, '2026-01-08 04:12:46', 0, NULL, 1),
(27996, 'Nivetha A', '11', '7603828629', '6369584263', 'Nivethaashokkumar78@gmail.com', '2003-08-07', 22, '2', '2', 'Ashokkumar', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Arumbakkam', 'Arumbakkam', '2601050008', '1', '1', 'upload_files/candidate_tracker/25815105464_Nivetha.pdf', NULL, '1', '2026-01-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-05 08:15:44', 154, '2026-01-06 04:13:53', 0, NULL, 1),
(27997, 'Susmitha R', '6', '7094375320', '', 'susmirajendran696@gmail.com', '2001-03-14', 24, '2', '2', 'Renuka', 'Sales', 15000.00, 2, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2601050009', '1', '2', 'upload_files/candidate_tracker/39108874251_SUSMITHA.R.pdf', NULL, '1', '2026-01-05', 0, '', '3', '59', '2026-01-08', 180000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for our insurance roles but previously worked in other domain can give a try and check in training', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '4', '3', '', '', 'H1028', '', 'CI144', '5151', '2026-01-08', 1, '2026-01-05 10:02:32', 60, '2026-01-07 06:27:00', 0, NULL, 1),
(27998, 'Sonia', '6', '9445105928', '9003083842', 'soniyabaskar91@gmail.com', '1998-07-18', 27, '2', '2', 'Baskar', 'Electrician', 20000.00, 1, 16000.00, 17000.00, 'Chennai', 'Chennai', '2601050010', '50', '2', 'upload_files/candidate_tracker/79164512389_DOC20251227WA0000.1.pdf', NULL, '1', '2026-01-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-05 10:12:16', 154, '2026-01-06 03:51:26', 0, NULL, 1),
(27999, 'Ibrahim Bathusha', '33', '9159153220', '8825786969', 'ibrahimbathusha55@gmail.com', '2001-07-12', 24, '2', '2', 'Peer Mohamed', 'Auto driver', 15000.00, 6, 17000.00, 22000.00, '73,kaja nayagam street', 'Kodambakkam chennai', '2601050011', '1', '2', 'upload_files/candidate_tracker/8736466739_k.p.ibrahimbathusha1.pdf', NULL, '1', '2026-01-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much strong with the basics in the accounts 2nd round reject by Manikumar and team\n', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-05 10:51:33', 154, '2026-01-06 04:25:42', 0, NULL, 1),
(28000, '', '0', '8825531158', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601050012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-05 10:56:18', 0, NULL, 0, NULL, 1),
(28001, 'Azarudeen. h', '6', '9597867767', '6383587825', 'Azarudeen1262001@gmail.com', '2001-06-12', 24, '5', '2', 'Habibulla', 'Government jobs', 30000.00, 1, 0.00, 18000.00, '11/29, masilamani pettai, kamala nagar, vilupuram', '11/29, masilamani pettai, kamala nagar, vilupuram', '2601050013', '', '1', 'upload_files/candidate_tracker/34654177035_resume.pdf', NULL, '1', '2026-01-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-05 11:43:40', 154, '2026-01-05 06:13:06', 0, NULL, 1),
(28002, 'Muthupandi', '33', '8124744201', '9791920887', 'Muthupandisiva10@gmail.com', '1996-11-28', 29, '2', '2', 'No', 'Cooli', 400000.00, 1, 25000.00, 30000.00, 'Madurai', 'Velachery, chennai', '2601050014', '1', '2', 'upload_files/candidate_tracker/92903656236_Accounts.pdf', NULL, '1', '2026-01-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-05 12:44:13', 154, '2026-01-06 03:48:59', 0, NULL, 1),
(28003, 'Karthika Ammasi', '13', '9585606058', '', 'karthikaammasi2003@gmail.com', '2003-10-04', 22, '3', '2', 'Ammasi', 'Farmer', 30000.00, 2, 0.00, 300000.00, 'Dharmapuri', 'Chennai', '2601060001', '', '1', 'upload_files/candidate_tracker/71208349763_KarthikaAResume.pdf', NULL, '1', '2026-01-06', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-06 03:54:31', 154, '2026-01-06 04:29:15', 0, NULL, 1),
(28004, 'vignesh r', '4', '7305615671', '', 'vickyvigne23@gmail.com', '2000-06-05', 25, '2', '2', 'sumathi', 'work', 15000.00, 4, 15.00, 20.00, 'chennai redhills', 'Chennai Redhills', '2601060002', '50', '2', 'upload_files/candidate_tracker/93932341035_UpdatevickyResume.pdf', NULL, '1', '2026-01-07', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-06 04:54:32', 1, '2026-01-06 05:00:50', 0, NULL, 1),
(28005, 'Vijaykumar', '6', '8317369425', '7795903524', 'Kumarcv50@gmail.com', '2002-08-04', 23, '1', '2', 'Vasantha', 'House wife', 30000.00, 2, 20000.00, 25000.00, '#83 5th block Rajajinagar', '19th B Shakthi garden modalapalya', '2601060003', '', '2', 'upload_files/candidate_tracker/14795148309_CV2025120808363258.pdf', NULL, '1', '2026-01-06', 0, '55889', '3', '59', '2026-01-16', 264000.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp only for 6 monhts in integrated need to check in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '2026-01-16', 1, '2026-01-06 04:54:48', 60, '2026-01-14 06:27:55', 0, NULL, 1),
(28006, 'SNIGITAA SADHIK BASHA', '33', '9360848525', '', 'snigitaa.sss@gmail.com', '2001-10-29', 24, '3', '2', 'SADHIK BASHA', 'Business', 600000.00, 0, 0.00, 2.80, 'CHENNAI', 'CHENNAI', '2601060004', '', '1', 'upload_files/candidate_tracker/76561965805_SNIGITAARESUME2025NEWcomplete1422.pdf', NULL, '1', '2026-01-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-06 05:07:14', 154, '2026-01-06 03:48:41', 0, NULL, 1),
(28007, 'Swathi R', '33', '7200325651', '', 'rs6431195@gmail.com', '2002-05-03', 23, '3', '2', 'S.Ravichandran', 'Business', 100000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2601060005', '', '1', 'upload_files/candidate_tracker/26697139024_ResumeAccounts.pdf', NULL, '1', '2026-01-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-06 05:07:37', 154, '2026-01-06 03:35:47', 0, NULL, 1),
(28008, 'gurumurugeswari G', '13', '9600443586', '9363082717', 'GURUMURUGES1@GMAIL.COM', '2003-11-17', 22, '3', '2', 'Gnanasekaran G', 'fresher', 6000.00, 0, 0.00, 20000.00, 'rajapalaam', 'Chennai', '2601060006', '', '1', 'upload_files/candidate_tracker/19094989807_GurumurugeswariG1.pdf', NULL, '1', '2026-01-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-06 05:08:45', 154, '2026-01-06 04:12:33', 0, NULL, 1),
(28009, 'Dharani S', '13', '9361834478', '8508931816', 'dharaniisivadass@gmail.com', '2003-10-25', 22, '3', '2', 'D/O Sivadass', 'Tailor', 30000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Porur', '2601060007', '', '1', 'upload_files/candidate_tracker/39431033232_DharaniSivadass.docx', NULL, '1', '2026-01-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-06 05:22:03', 154, '2026-01-06 04:13:15', 0, NULL, 1),
(28010, 'Ganga N', '13', '7708989955', '', 'gangacse15@gmail.com', '2003-03-15', 22, '2', '2', 'Narayanan M', 'Farmer', 6000.00, 1, 0.00, 200000.00, 'Tindivanam', 'Tindivanam', '2601060008', '1', '1', 'upload_files/candidate_tracker/98482685893_GANGACSERESUME.pdf.pdf', NULL, '1', '2026-01-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-01-06 05:33:52', 1, '2026-01-06 05:42:46', 0, NULL, 1),
(28011, 'P.Subisha Lakshmi', '33', '9962110005', '9840196333', 'mesubisha@gmail.com', '1999-04-16', 26, '2', '2', 'P.J Palani Prabhu', 'Landlord', 500000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2601060009', '1', '2', 'upload_files/candidate_tracker/57430252286_subishanewresume.pdf', NULL, '1', '2026-01-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-06 05:48:21', 154, '2026-01-06 04:04:01', 0, NULL, 1),
(28012, 'J.ASWINI', '6', '6379750394', '8122416314', 'aswini.j.indra@gmail.com', '2000-03-11', 25, '2', '2', 'S.Jaishankar', 'Security incharge', 100000.00, 1, 15000.00, 20000.00, 'No.7 logambal street chetpet chennai - 31', 'No.7 logambal street chetpet chennai - 31', '2601060010', '31', '2', 'upload_files/candidate_tracker/37395885585_DocumentfromAshu.......pdf', NULL, '1', '2026-01-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-06 05:49:36', 154, '2026-01-06 03:59:59', 0, NULL, 1),
(28013, 'Sneha', '33', '6379126840', '9790803018', 'sneharammurthy113@gmail.com', '2003-08-02', 22, '3', '2', 'Parents', 'Working in Saloon', 12000.00, 1, 0.00, 20000.00, 'Mandaveli chennai', 'Mandaveli chennai', '2601060011', '', '2', 'upload_files/candidate_tracker/80534769731_sneharesume202512151425480000.pdf', NULL, '1', '2026-01-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-06 05:52:24', 154, '2026-01-06 04:16:02', 0, NULL, 1),
(28014, 'kasper s', '6', '6385319052', '9344550700', 'kasper10032002@gmail.com', '2002-03-10', 23, '2', '2', 'selvam', 'carpenter', 35000.00, 1, 0.00, 300000.00, 'guindy', 'guindy', '2601060012', '1', '1', 'upload_files/candidate_tracker/89142781619_KasperCV..pdf.pdf', NULL, '1', '2026-01-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-01-06 05:53:28', 154, '2026-01-06 04:00:49', 0, NULL, 1),
(28015, 'Vignesh Natarajan', '13', '6381423698', '8610151217', 'vigneshnatarajan1334@gmail.com', '2003-10-14', 22, '3', '2', 'Natarajan V', 'Driver', 30000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2601060013', '', '1', 'upload_files/candidate_tracker/69737501877_Resumeee.pdf', NULL, '1', '2026-01-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-06 05:55:50', 154, '2026-01-06 04:14:25', 0, NULL, 1),
(28016, 'Kannan suresh', '6', '8056869311', '9597404437', 's02444067@gmail.com', '1997-08-27', 28, '2', '2', 'Latha', 'Housewife', 30.00, 0, 400000.00, 500000.00, 'Mayiladuthurai', 'Chennai', '2601060014', '1', '2', 'upload_files/candidate_tracker/80948928858_DOC20251114WA00031.pdf', NULL, '1', '2026-01-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-01-06 06:01:14', 154, '2026-01-06 03:25:45', 0, NULL, 1),
(28017, 'lokesh n', '33', '8610104223', '', 'lokexh12@gmail.com', '2003-01-12', 22, '2', '2', 'nagaraj g', 'business', 80000.00, 1, 0.00, 10000.00, 'poonamallee', 'poonamallee', '2601060015', '1', '1', 'upload_files/candidate_tracker/58026330271_lokeshinternresume.pdf', NULL, '1', '2026-01-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-06 06:28:37', 154, '2026-01-06 04:27:48', 0, NULL, 1),
(28018, 'Palliwada charan raj', '6', '8106518605', '9963123201', 'palliwadacharanraj@gmail.com', '2002-09-26', 23, '2', '2', 'Parent', 'Business', 50000.00, 0, 24000.00, 25000.00, 'Tada', 'Chennai', '2601060016', '50', '2', 'upload_files/candidate_tracker/17173181086_charanresume11.pdf', NULL, '1', '2026-02-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-06 06:41:08', 159, '2026-02-11 04:07:20', 0, NULL, 1),
(28019, 'Vennila V', '6', '6374438773', '8754912759', 'nilavjay@gmail.com', '2001-12-12', 24, '2', '2', 'Velmurugan', 'Former', 20000.00, 2, 18000.00, 19000.00, 'Neyveli', 'Poonamallee', '2601060017', '1', '2', 'upload_files/candidate_tracker/54197973672_vennilaresume.pdf', NULL, '1', '2026-01-06', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is too low voice and she is too much depression and not stable wont fit here', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55882', '55566', '1970-01-01', 1, '2026-01-06 06:48:20', 154, '2026-01-06 03:52:05', 0, NULL, 1),
(28020, 'siva anand p', '6', '6383469622', '', 'sivanand2002@gmail.com', '2002-09-04', 23, '2', '2', 'ponkumar', 'private bus manager', 18000.00, 1, 0.00, 16000.00, 'polur', 'chennai', '2601060018', '1', '1', 'upload_files/candidate_tracker/22785748232_SivaAnand.pdf', NULL, '1', '2026-01-08', 0, '', '1', '164', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55692', '5151', '1970-01-01', 1, '2026-01-06 07:34:24', 159, '2026-01-08 02:32:49', 0, NULL, 1),
(28021, 'Preamkumar', '6', '6381570461', '', 'premanandhi324@gmail.com', '2001-09-20', 24, '2', '2', 'Indira', 'Homemaker', 20000.00, 1, 0.00, 17000.00, 'Kallakurichi', 'Chepauk, chennai', '2601060019', '50', '1', 'upload_files/candidate_tracker/42150917854_PREMKUMAR.pdf', NULL, '3', '2026-01-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-06 07:57:44', 154, '2026-01-07 02:38:29', 0, NULL, 1),
(28022, '', '0', '8807856058', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601060020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-06 09:00:56', 0, NULL, 0, NULL, 1),
(28023, 'Sivapriya S', '5', '6385302776', '9344145838', 'sivapriyas082@gmail.com', '2000-02-20', 25, '2', '2', 'selvam', 'coolie', 35000.00, 0, 4.50, 500000.00, 'chennai', 't. nagar', '2601060021', '66', '2', 'upload_files/candidate_tracker/10618992311_SivapriyaCV1231.pdf', NULL, '1', '2026-01-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-06 09:05:31', 1, '2026-01-06 09:11:00', 0, NULL, 1),
(28024, 'Samiullah. S', '6', '9789864458', '', 'Samiullah22102002@gmail.com', '2002-10-22', 23, '1', '2', 'Kowsar', 'Housewife', 16000.00, 1, 0.00, 25000.00, '5/2, Nainiappan garden, old washermenpet, ch 21', '5/2, Nainiappan garden, old washermenpet, ch 21', '2601060022', '', '2', 'upload_files/candidate_tracker/49771537619_Returndate.pdf', NULL, '1', '2026-01-06', 0, '', '5', '164', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'REJECT', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55692', '5151', '1970-01-01', 1, '2026-01-06 09:12:20', 154, '2026-01-06 04:20:59', 0, NULL, 1),
(28025, '', '0', '9361194511', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601060023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-06 09:50:01', 0, NULL, 0, NULL, 1),
(28026, 'P Surendhar', '5', '8825971572', '', 'surendharstorm1604@gmail.com', '1999-04-16', 26, '2', '2', 'M.Pachaiappan', 'Newspaper Business', 15000.00, 1, 18000.00, 28000.00, 'Chennai', 'Chennai', '2601060024', '66', '2', 'upload_files/candidate_tracker/52084477507_Surendhar.CV1.pdf', NULL, '1', '2026-01-07', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-06 10:35:29', 1, '2026-01-06 10:38:34', 0, NULL, 1),
(28027, 'Malarvizhi G', '4', '9363913795', '', 'Malarvizhi27g@gmail.com', '2002-11-27', 23, '2', '2', 'Gajendran', 'Driver', 55000.00, 2, 18000.00, 20000.00, '600006', '600006', '2601060025', '50', '2', 'upload_files/candidate_tracker/31914613059_MALARVIZHIFINALRESUME.pdf', NULL, '1', '2026-01-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-06 11:48:40', 1, '2026-01-06 11:51:38', 0, NULL, 1),
(28028, 'S.Lisbon anthony', '4', '7299459495', '', 'lisbonantonymk@gmail.com', '1998-07-17', 27, '2', '2', 'Sathiya ramesh', 'Southern railway', 80000.00, 2, 0.00, 20000.00, 'Chennai puliyanthope', 'Chennai Madhavaram', '2601060026', '50', '1', 'upload_files/candidate_tracker/85490632407_LisbonResumeJuly2025.docx.pdf', NULL, '1', '2026-01-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-06 12:19:22', 1, '2026-01-06 12:34:27', 0, NULL, 1),
(28029, 'Shivani', '11', '9790768288', '', 'shivaninesan1999@gmail.com', '1999-06-28', 26, '2', '2', 'Geetha', 'Home Maker', 80000.00, 0, 7500.00, 12000.00, 'Chennai', 'Chennai', '2601060027', '1', '2', 'upload_files/candidate_tracker/46794988757_Resume.pdf', NULL, '1', '2026-01-07', 10, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-06 12:47:13', 154, '2026-01-07 04:10:25', 0, NULL, 1),
(28030, 'Gayathri Devi v', '4', '9025570177', '9361635562', 'gayathrideviveerasingh@gmail.com', '2003-06-01', 22, '2', '2', 'Veerasingh', 'Hotal', 30000.00, 2, 2.00, 3.50, 'Kundrathur', 'Kundrathur', '2601060028', '1', '2', 'upload_files/candidate_tracker/64146669878_GayathriDeviresume.pdf', NULL, '1', '2026-01-07', 10, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-06 12:57:43', 154, '2026-01-07 02:41:13', 0, NULL, 1),
(28031, 'MANIPRAKASH VEERAKUMAR', '4', '6380614810', '7550301610', 'maniprakash55555@gmail.com', '1998-10-16', 27, '5', '2', 'VEERAKUMAR', 'FATHER', 60000.00, 1, 19000.00, 18000.00, 'NAGAPATTINAM', 'WEST THAMBARAM', '2601060029', '', '2', 'upload_files/candidate_tracker/52423880891_MANIPRAKASHCV.pdf', NULL, '1', '2026-01-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-06 02:04:20', 1, '2026-01-06 02:07:45', 0, NULL, 1),
(28032, 'Amutheswari', '13', '8220542827', '', 'nishaammu573@gmail.com', '2005-09-18', 20, '3', '2', 'Pachaiyappan', 'Photographer', 80000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2601070001', '', '1', 'upload_files/candidate_tracker/8970203670_resume1.pdf', NULL, '1', '2026-01-07', 0, '', '', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-07 04:56:12', 154, '2026-01-07 11:50:23', 0, NULL, 1),
(28033, 'S Sri Prasath', '33', '9790876766', '', 'sriprasathshankar03@gmail.com', '2002-06-03', 23, '2', '2', 'K Shankar', 'Technician', 240000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2601070002', '1', '2', 'upload_files/candidate_tracker/52821384852_SriPrasathResume.pdf', NULL, '1', '2026-01-07', 0, '', '3', '59', '2026-01-08', 180000.00, '', '1', '1970-01-01', '2', 'Communication Ok have 10 months exp in accounts career gap due to liver Transplant intern with employment stipend 10K for a month if he need to improve will have an additional 1 more month of intern if not he will be into employment', '4', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '2026-01-08', 1, '2026-01-07 05:01:43', 60, '2026-01-07 06:34:11', 0, NULL, 1),
(28034, 'Monisha Richard', '4', '9962902897', '9150991340', 'monisak19982607@gmail.com', '1998-07-26', 27, '2', '2', 'Richard', 'Electricion', 25000.00, 1, 19000.00, 25000.00, 'Chennai', 'Chennai', '2601070003', '50', '2', 'upload_files/candidate_tracker/68278733741_MonishaResume1.pdf', NULL, '3', '2026-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-07 05:09:20', 1, '2026-01-07 08:26:20', 0, NULL, 1),
(28035, 'jenitha c j', '5', '9167143325', '', 'jenitha2611@gmail.com', '1999-11-26', 26, '1', '2', 'Sujatha c', 'home maker', 30000.00, 2, 0.00, 30000.00, 't nagar', 't nagar', '2601070004', '', '2', 'upload_files/candidate_tracker/1182875098_JenithaCJ.pdf', NULL, '1', '2026-01-07', 0, '', '3', '59', '2026-01-12', 320000.00, '', NULL, '2026-02-25', '2', 'Communication Ok have exp in telecalling and exp as TL profile fresher for our insurance sales complete exp in Home loan Home first company need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55650', '55560', '2026-01-12', 1, '2026-01-07 05:11:18', 60, '2026-01-12 10:00:19', 0, NULL, 1),
(28036, 'sarankumar p', '6', '9043263476', '', 'sarankumar200015@gmail.com', '2000-02-15', 25, '2', '2', 'pattamuthu', 'driver', 250000.00, 2, 16000.00, 18000.00, 'pandian nagar virudhunagar', 'velachery chennai', '2601070005', '50', '2', 'upload_files/candidate_tracker/45830291530_SaranKumarMCA202231.pdf', NULL, '1', '2026-01-08', 30, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not to aggressive Customer support exp and not suitable for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55882', '5151', '1970-01-01', 1, '2026-01-07 06:23:42', 159, '2026-01-08 02:36:22', 0, NULL, 1),
(28037, '', '0', '9345664193', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601070006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-07 06:47:36', 0, NULL, 0, NULL, 1),
(28038, '', '0', '7448598101', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601070007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-07 06:51:01', 0, NULL, 0, NULL, 1),
(28039, 'G.Santhoshraja', '6', '7358243523', '', 'gsanthoshraja577@gmail.com', '2002-05-11', 23, '2', '2', 'Gopalakrishnan', 'Driver', 40000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2601070008', '50', '2', 'upload_files/candidate_tracker/42326950084_SanthoshRaja2025resume2.pdf', NULL, '3', '2026-01-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok , communication good, exp already, conform the joining xxamp salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2026-01-07 07:42:04', 159, '2026-01-08 02:33:38', 0, NULL, 1),
(28040, 'Ramya', '6', '9361431367', '9962507823', 'ramya968ramya968@gmail.com', '2005-06-03', 20, '2', '2', 'Vennila', 'Attender', 20000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2601070009', '68', '1', 'upload_files/candidate_tracker/6488080946_Ramyaresumev211.pdf', NULL, '1', '2026-01-08', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is very reserved.. need to open up more so not fit for our roles', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-01-07 07:53:14', 154, '2026-01-08 05:03:20', 0, NULL, 1),
(28041, 'Sanjay', '6', '9962507823', '9361431367', 'Sanjaychandrasekaran99@gmail.com', '2004-11-20', 21, '2', '2', 'Chandrasekar', 'Car alignment', 20000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2601070010', '68', '1', 'upload_files/candidate_tracker/3619617907_DOC20250227WA0001.docx', NULL, '1', '2026-01-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-07 07:53:20', 154, '2026-01-08 05:03:44', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28042, 'Ponraj Balamurugan', '6', '8220887365', '', 'ponraj2223@gmail.com', '2001-05-12', 24, '2', '2', 'Balamurugan', 'Tailor', 7000.00, 2, 15000.00, 20000.00, 'Rajapalayam', 'Guduvanchery', '2601070011', '50', '2', 'upload_files/candidate_tracker/11623481116_Ponraj.pdf', NULL, '1', '2026-01-08', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-01-07 08:07:06', 154, '2026-01-08 03:12:13', 0, NULL, 1),
(28043, 'Selvalakshmi', '11', '8825820964', '', 'tselvalakshmi0401@gmail.com', '2004-01-04', 22, '2', '2', 'Thalamuthu', 'Business', 60000.00, 3, 0.00, 400000.00, 'Chennai', 'Chennai', '2601070012', '1', '1', 'upload_files/candidate_tracker/98771465428_selvalakshmicompressed.pdf', NULL, '1', '2026-01-08', 0, '', '2', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SHe is working as a HR Intern', '6', '1', '', '1', '8', '', '2', '2026-02-19', '1', '8', '', '', 'H1030', '', '77778', '55566', '1970-01-01', 1, '2026-01-07 10:59:08', 154, '2026-01-08 04:06:42', 0, NULL, 1),
(28044, 'Priyadharshini', '13', '8111020155', '8056420155', 'dharshinikayal3114@gmail.com', '2004-04-14', 21, '2', '2', 'Podhammal', 'Daily wage Work', 15000.00, 1, 0.00, 20.00, 'Namakkal', '2/9 start street shanthi Nagar Ramapuram', '2601070013', '50', '1', 'upload_files/candidate_tracker/50436480307_priyadharshiniselvanresume...pdf', NULL, '2', '2026-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-07 11:01:00', 1, '2026-01-07 11:10:58', 0, NULL, 1),
(28045, 'P Dhinesh Kumar', '6', '9360425834', '', 'dhineshkumar190304@gmail.com', '2004-03-19', 21, '2', '2', 'Paramasivam', 'Mason', 250000.00, 1, 0.00, 250000.00, 'Ambattur, Chennai', 'Ambattur Chennai', '2601070014', '50', '1', 'upload_files/candidate_tracker/25076551370_DhineshBCA.pdf', NULL, '1', '2026-01-08', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'complete IT profile, and he did not perform well in the interview also', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-01-07 11:26:35', 154, '2026-01-08 03:12:45', 0, NULL, 1),
(28046, 'P S Tharunika', '6', '8008690915', '', 'tharuni4127@gmail.com', '2002-02-04', 23, '2', '2', 'Bhuvaneswari', 'House wife', 2.00, 1, 19000.00, 25.00, 'Andhra Pradesh', 'Egmore', '2601070015', '50', '2', 'upload_files/candidate_tracker/7087359307_TharunikaResume.pdf', NULL, '1', '2026-01-08', 15, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is purely into operations side in matrimony, and she is not much aggressive and active so will not fit for sales and working with targets\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-01-07 11:45:43', 154, '2026-01-08 03:10:31', 0, NULL, 1),
(28047, '303559265485', '4', '8870830738', '', 'naviiselvaraj@gmail.com', '2005-08-09', 20, '5', '2', 'Single', 'Fresher', 100000.00, 1, 0.00, 20000.00, 'Namakkal', 'Chennai', '2601070016', '', '1', 'upload_files/candidate_tracker/15253839421_NavyaSelvarajResume.pdf', NULL, '1', '2026-01-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-07 12:48:06', 1, '2026-01-07 12:52:41', 0, NULL, 1),
(28048, 'LAKSHMI PRRIYA', '11', '9094622188', '', 'lakshmiprriyamt@gmail.com', '2001-06-16', 24, '2', '2', 'R E MURALI', 'Shop', 8000.00, 1, 0.00, 25000.00, 'KOTTUR, CHENNAI', 'KOTTUR, CHENNAI', '2601070017', '1', '1', 'upload_files/candidate_tracker/42492383450_MTLAKSHMIPRRIYARESUME.pdf', NULL, '1', '2026-01-08', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High salary expectations', '6', '1', '', '1', '8', '', '2', '2026-01-09', '1', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-01-07 01:35:27', 159, '2026-01-08 02:34:27', 0, NULL, 1),
(28049, '', '0', '9384470085', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601070018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-07 05:15:39', 0, NULL, 0, NULL, 1),
(28050, 'Dhanasri palanivel', '6', '7010526005', '9842903156', 'dhanasripalanivel680@gmail.com', '2003-11-04', 22, '2', '2', 'Palanivel', 'Business', 80000.00, 1, 14000.00, 20000.00, 'Thoraipakkam', 'Thoraipakkam', '2601080001', '1', '2', 'upload_files/candidate_tracker/66354993724_BlueandWhiteProfessionalResume.pdf', NULL, '1', '2026-01-08', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate mainly looking for non voice so will not sustain in sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2026-01-08 04:29:14', 154, '2026-01-08 03:10:06', 0, NULL, 1),
(28051, 'Ashwin', '33', '9940694117', '', 'ashwin072004@gmail.com', '2004-07-26', 21, '2', '2', 'Pushkaran k', 'Business', 25000.00, 1, 15000.00, 25000.00, 'Thiruverkadu, chennai', 'Thiruverkadu, chennai', '2601080002', '1', '2', 'upload_files/candidate_tracker/93493735533_AshwinPResume1.pdf', NULL, '1', '2026-01-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-08 04:42:37', 154, '2026-01-08 04:07:51', 0, NULL, 1),
(28052, 'Rathin das M', '6', '9025992680', '8939106583', 'Ecomrd7@gmail.com', '1999-04-14', 26, '2', '2', 'Nil', 'Nil', 30000.00, 1, 180000.00, 300000.00, 'Poonamallee', 'Poonamallee', '2601080003', '68', '2', 'upload_files/candidate_tracker/99231511871_RDresume1.pdf', NULL, '1', '2026-01-08', 0, '', '5', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'I asked to sale for a demo he simply sitting no even try to sales any product', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2026-01-08 05:36:31', 154, '2026-01-08 05:04:29', 0, NULL, 1),
(28053, 'deepak.jv', '11', '7338788277', '7092823335', 'deepakjv8277@gmail.com', '2004-08-03', 21, '4', '2', 'vijayakumar', 'driver', 15000.00, 1, 0.00, 3000.00, 'pallavaram', 'pallavaram', '2601080004', '', '1', 'upload_files/candidate_tracker/3754009217_DeepakResume.pdf', NULL, '1', '2026-01-08', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2026-01-08 05:46:40', 154, '2026-01-08 04:16:17', 0, NULL, 1),
(28054, 'Pavithra', '6', '6360799128', '7829764458', 'pavithrapavi9568@gmail.com', '1996-04-04', 29, '1', '1', 'Babu', 'Salaried', 300000.00, 1, 15800.00, 18000.00, 'Bangalore', 'Bangalore', '2601080005', '', '2', 'upload_files/candidate_tracker/99392008138_CV2024040918365766.pdf', NULL, '1', '2026-01-08', 0, '55899', '3', '59', '2026-01-10', 240000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in telecalling career break internal team reference need to check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '2026-01-10', 1, '2026-01-08 06:15:03', 60, '2026-01-09 07:21:53', 0, NULL, 1),
(28055, 'Anubai R', '6', '8123272015', '', 'lalithabai217@gmail.com', '2002-03-02', 23, '1', '2', 'Ramareddy Nayak', 'Salaried', 30000.00, 1, 0.00, 15000.00, 'Banglore', 'Banglore', '2601080006', '', '1', 'upload_files/candidate_tracker/58652805626_DocScanner08Jan20261157am.pdf', NULL, '1', '2026-01-08', 0, '', '3', '59', '2026-01-10', 216000.00, '', '3', '2026-02-28', '2', 'Communication Ok fresher for telecalling need to check in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '2026-01-10', 1, '2026-01-08 06:15:29', 60, '2026-01-09 07:23:37', 0, NULL, 1),
(28056, 'Lakshmidevi', '1', '9880521479', '7996218079', 'luxsarasu@gmail.com', '1990-07-20', 35, '3', '2', 'Hanamantappa', 'Agriculture', 10000.00, 6, 20000.00, 25000.00, 'At Post Murdi tq Yelburga Dist Koppal 583237', 'Bommanahalli 560068', '2601080007', '', '2', 'upload_files/candidate_tracker/77797067342_LaxmideviHFlowCVResume202512101.pdf', NULL, '1', '2026-01-08', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-08 07:46:01', 1, '2026-01-08 08:05:52', 0, NULL, 1),
(28057, 'Nithish Kumar h', '4', '8124244242', '', 'nithishkumar27082001@gmail.com', '2001-08-27', 24, '2', '2', 'k hari', 'chennai', 50000.00, 1, 300000.00, 350000.00, 'chennai', 'chennai', '2601080008', '50', '2', 'upload_files/candidate_tracker/28907092318_BlackandWhiteCleanProfessionalA4Resume.pdf', NULL, '1', '2026-01-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-08 08:29:35', 154, '2026-01-12 06:20:16', 0, NULL, 1),
(28058, 'G Josephine', '6', '9150536446', '9841796857', 'josshhh023@gmail.com', '2004-03-23', 21, '2', '2', 'Gopala Krishnan', 'Null', 28000.00, 0, 21000.00, 25000.00, 'Chennai City', 'Chennai City', '2601080009', '50', '2', 'upload_files/candidate_tracker/43771135078_CopyofBlueandGraySimpleProfessionalCVResume1.pdf', NULL, '1', '2026-01-12', 15, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Relieved due to pressure and worked for 6 months only ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2026-01-08 08:31:45', 154, '2026-01-12 06:21:17', 0, NULL, 1),
(28059, '', '0', '8124244243', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601080010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-08 08:41:26', 0, NULL, 0, NULL, 1),
(28060, 'saranya narayanasamy', '4', '8270931620', '8072313602', 'saranyasaranya16255@gmail.com', '2011-01-08', 0, '2', '2', 'narayanasamy', 'father', 85000.00, 1, 20000.00, 21000.00, 'East Street, uthukadu Valangaiman Tk,Thiruvarur Dk', 'Thousand Lights', '2601080011', '50', '2', 'upload_files/candidate_tracker/81753737572_SARANYARESUME3.pdf', NULL, '1', '2026-01-09', 15, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Felt as pressure in previous company within 4 months', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2026-01-08 08:56:35', 159, '2026-01-09 10:52:02', 0, NULL, 1),
(28061, 'Shalini Saravanan', '4', '8072313602', '8270931620', 'shalinibca22@gmail.com', '2006-01-13', 19, '2', '2', 'Pangajavalli', 'Garments company', 80000.00, 1, 20000.00, 21000.00, 'balasamuthiram (po) thottiyam (Tk)Trichy (dt)', 'Thousand light', '2601080012', '50', '2', 'upload_files/candidate_tracker/54303107842_SHALINIresume1.pdf', NULL, '1', '2026-01-09', 15, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for job change within 4 months for no reason sustainability issue', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2026-01-08 08:58:57', 159, '2026-01-09 10:55:49', 0, NULL, 1),
(28062, 'S khaja gareeb nawaz', '6', '8618498045', '9036497786', 'nawaz777yellow@gmail.com', '2006-03-15', 19, '2', '2', 'Rabiya begum', 'Telecaller', 10000.00, 1, 0.00, 1.00, '25k', 'Banglore bommasandhra', '2601080013', '1', '1', 'upload_files/candidate_tracker/34020287905_SKHAJAGAREEBNAWAZ4.pdf', NULL, '1', '2026-01-09', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '', '', '1970-01-01', 1, '2026-01-08 11:56:49', 162, '2026-01-09 02:50:23', 0, NULL, 1),
(28063, '', '0', '9629285283', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601080014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-08 12:14:53', 0, NULL, 0, NULL, 1),
(28064, 'YOGESHRAJA A P', '6', '9952912814', '8754517776', 'yokeshraja7108@gmail.com', '2003-04-20', 22, '2', '2', 'Abiramai', 'Housewife', 50000.00, 2, 20000.00, 22000.00, 'No.51, 1st Main road, Thirumullaivoyal ch 62', 'No.51, 1st Main road, Thirumullaivoyal ch 62', '2601080015', '68', '2', 'upload_files/candidate_tracker/18390629260_resume.pdf', NULL, '1', '2026-01-12', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Experience in Customer support only and relieved  due to time constraints and target only worked in sales profile for 2 months ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2026-01-08 12:23:44', 154, '2026-01-12 06:25:09', 0, NULL, 1),
(28065, 'Sushmitha Rabeeca ammu', '6', '9092062052', '9043295226', 'sushmitharabeecaammu@gmail.com', '1999-01-24', 26, '2', '2', 'Kannan', 'ICF employee', 17000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2601080016', '68', '2', 'upload_files/candidate_tracker/77448352262_SUSHMITHARESUME1updated.doc', NULL, '1', '2026-01-10', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No sustainability and health issues and Lots of gap between each switches wont suitable for this profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2026-01-08 12:37:00', 104, '2026-02-02 09:21:04', 0, NULL, 1),
(28066, 'santhosh kumar m', '5', '9344086185', '', 'santhosh13.mba@gmail.com', '2000-07-13', 25, '2', '2', 'devaki', 'house wife', 25000.00, 2, 26000.00, 35000.00, 'tambaram', 'tambaram', '2601080017', '1', '2', 'upload_files/candidate_tracker/94722499006_Santhoshresume.pdf', NULL, '1', '2026-01-10', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for RM role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55656', '55557', '1970-01-01', 1, '2026-01-08 12:43:31', 154, '2026-01-10 11:21:10', 0, NULL, 1),
(28067, '', '0', '9025390643', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601080018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-08 12:59:03', 0, NULL, 0, NULL, 1),
(28068, 'Saranya c', '6', '9514990244', '9962219968', 'saranyasweety006@gmail.com', '1998-10-06', 27, '2', '1', 'Dhinakaran.v', 'Tcs team leader', 55000.00, 0, 18000.00, 22000.00, 'Ayanavaram', 'Ayanavaram', '2601090001', '1', '2', 'upload_files/candidate_tracker/5224338255_SARANYA2pgs.docx', NULL, '1', '2026-01-10', 15, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2026-01-09 12:55:25', 154, '2026-01-10 12:20:00', 0, NULL, 1),
(28069, '', '0', '7554787636', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601090002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-09 03:02:33', 0, NULL, 0, NULL, 1),
(28070, 'Keerthana Ramesh', '11', '7305553272', '8608730642', 'rameshkeerthana82@gmail.com', '2004-05-24', 21, '3', '2', 'R.Kamala', 'Working at a manufacturing company', 2.50, 0, 0.00, 2.30, 'Chennai', 'Chennai', '2601090003', '', '1', 'upload_files/candidate_tracker/98399240266_KeerthanaResumeHR31.pdf', NULL, '1', '2026-01-09', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '77778', '55566', '1970-01-01', 1, '2026-01-09 03:02:49', 159, '2026-01-09 02:53:00', 0, NULL, 1),
(28071, 'mamatha c', '6', '8148867271', '', 'Mmthyogesh@gmail.com', '1985-03-28', 40, '1', '1', 'yogesh', 'hotel business', 50000.00, 1, 23000.00, 25000.00, 'weavers colony bannerugatta road bangalore -', 'weavers colony bannerugatta road bangalore', '2601090004', '', '2', 'upload_files/candidate_tracker/89730178685_WhatsAppImage20260109at10.48.53.pdf', NULL, '1', '2026-01-09', 0, '55899', '3', '59', '2026-01-12', 282000.00, '', '1', '1970-01-01', '2', 'Have exp in Vizza only Kannada language need to check in training and confirm', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '2026-01-12', 1, '2026-01-09 05:06:54', 159, '2026-01-12 02:54:13', 0, NULL, 1),
(28072, 'Ramya Sree P R', '6', '8124153668', '', 'ramyasairamesh2002@gmail.com', '2002-08-01', 23, '2', '2', 'Ramesh', 'Farmer', 15000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2601090005', '50', '1', 'upload_files/candidate_tracker/90510884682_RamyaSreeP.R.pdf', NULL, '1', '2026-01-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, communication good. provide the fresher salary and confirm the joining date.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55732', '5151', '1970-01-01', 1, '2026-01-09 05:21:38', 154, '2026-01-10 12:45:10', 0, NULL, 1),
(28073, 'HARIS KUMAR U', '13', '9791781155', '', 'hariskumar2002voc@gmail.com', '2002-11-21', 23, '2', '2', 'Uma Sankar t', 'Teacher', 60000.00, 1, 0.00, 10000.00, 'Rajapalayam', 'Coimbatore', '2601090006', '1', '1', 'upload_files/candidate_tracker/78499489980_Haris221225.pdf', NULL, '1', '2026-01-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-01-09 05:29:10', 1, '2026-01-09 05:41:10', 0, NULL, 1),
(28074, 'Subash', '5', '7418771628', '', 'subashkrishnan555@gmail.com', '1999-02-10', 26, '2', '1', 'Subashini', 'Work', 400000.00, 1, 300000.00, 400000.00, 'Kallakurichi', 'Chennai', '2601090007', '66', '2', 'upload_files/candidate_tracker/39448148188_CV2025091617501567.pdf', NULL, '1', '2026-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-09 05:29:57', 1, '2026-01-09 05:36:27', 0, NULL, 1),
(28075, 'Praveen A', '13', '6369395597', '9894895158', 'praveenanthony5597@gmail.com', '2002-06-16', 23, '2', '2', 'Anthony P', 'Farmer', 54000.00, 2, 0.00, 400000.00, 'Tiruvannamalai', 'Chennai', '2601090008', '37', '1', 'upload_files/candidate_tracker/80519388414_PRAVEEN.pdf', NULL, '1', '2026-01-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-09 06:02:32', 1, '2026-01-09 06:05:18', 0, NULL, 1),
(28076, 'Mohan Kumar', '6', '8825939069', '7010915500', 'mohanmohan30286@gmail.com', '2002-09-07', 23, '2', '2', 'Jeya kumar.D', 'Real-estate', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2601090009', '66', '1', 'upload_files/candidate_tracker/33762290773_mohankumarjresume.pdf', NULL, '1', '2026-01-09', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'already have exp for 5 months in sriram for 5 months due to continous field sales he got relieved, and having more gaps between and after work and have done python course  also having idea for going to IT also so sustainability doubts xxamp communication slang also not that good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-01-09 06:27:39', 154, '2026-01-09 01:08:30', 0, NULL, 1),
(28077, 'A. Monika', '4', '9344096015', '7299440116', 'monimonika18546@gmail.com', '2004-07-21', 21, '2', '2', 'V. Anandhrajan, A. Gomathi', 'Bussiness', 50000.00, 0, 0.00, 15000.00, '5/9 thulasingam Street Pudupet', '5/9 Thulasingam Street Pudupet', '2601090010', '1', '1', 'upload_files/candidate_tracker/47116436429_MonikaResume.pdf', NULL, '1', '2026-01-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '6', '', '2', '1970-01-01', '4', '7', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-09 11:25:41', 154, '2026-01-10 02:45:19', 0, NULL, 1),
(28078, 'Priyanga', '33', '6369718243', '9600034265', 'Priyangavinayagam@gmail.com', '2002-11-28', 23, '2', '2', 'R.vinayagamoorthy', 'Driver', 50000.00, 1, 15000.00, 20000.00, 'Ramapuram', 'Ramapuram', '2601090011', '1', '2', 'upload_files/candidate_tracker/90112341160_CV202510222323432.pdf', NULL, '1', '2026-01-10', 7, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2026-01-09 11:47:06', 154, '2026-01-10 01:02:39', 0, NULL, 1),
(28079, 'Yamuna balu', '6', '9940515633', '6385843723', 'yamunakrishnan072@gmail.com', '2002-02-07', 23, '2', '2', 'Balu', 'Lorry driver', 500000.00, 1, 25000.00, 26000.00, 'Madipakkam', 'Madipakkam', '2601100001', '1', '2', 'upload_files/candidate_tracker/27060005808_DocumentfromYamuna.pdf', NULL, '1', '2026-01-10', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE IS OK.COMMUNICATION IS GOOD.cONFIRM THE SALARY xxamp JOINING dATE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55692', '5151', '1970-01-01', 1, '2026-01-10 04:14:02', 154, '2026-01-10 11:29:20', 0, NULL, 1),
(28080, '', '0', '7397713419', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601100002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-10 05:15:50', 0, NULL, 0, NULL, 1),
(28081, 'Asha Bala', '6', '7094692782', '7708729125', 'ashaasu58@gmail.com', '2004-03-05', 21, '2', '2', 'B. Jothi', 'Tailor', 30000.00, 2, 15000.00, 18000.00, 'Madurai', 'Chennai', '2601100003', '1', '2', 'upload_files/candidate_tracker/80731972266_Asharesume.pdf', NULL, '1', '2026-01-10', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is little ok.but she is expecting customer support.also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-01-10 05:40:14', 154, '2026-01-10 12:19:26', 0, NULL, 1),
(28082, 'NAVEENKUMAR SIVANANTHAM', '11', '9786512462', '', 'naveenkumarsivanantham@gmail.com', '2002-03-29', 23, '2', '1', 'Sivanantham', 'Driver', 12000.00, 1, 0.00, 18000.00, 'Erode', 'Erode', '2601100004', '50', '1', 'upload_files/candidate_tracker/12615702257_NaveenkumarHR.docx', NULL, '1', '2026-01-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-10 06:10:21', 1, '2026-01-10 06:13:05', 0, NULL, 1),
(28083, 'Rajesh s', '6', '8072515655', '9150696045', 'hardikrajesh2002@gmail.com', '2002-05-02', 23, '2', '2', 'Radhika', 'Selvaraj', 45000.00, 2, 0.00, 16000.00, 'Tirupattur', 'Tirupattur', '2601100005', '1', '1', 'upload_files/candidate_tracker/68040584200_rajeshresume.docx', NULL, '1', '2026-01-10', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2026-01-10 06:46:39', 154, '2026-01-10 01:00:25', 0, NULL, 1),
(28084, 'Nathiya M', '6', '8270392805', '7449177350', 'nathiyapapa28@gmail.com', '2005-05-24', 20, '2', '2', 'Moorthi k', 'Wage work', 15000.00, 1, 0.00, 20000.00, 'Salem', 'Salem', '2601100006', '50', '1', 'upload_files/candidate_tracker/68495564172_MYCV11.pdf', NULL, '1', '2026-01-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-10 07:35:53', 154, '2026-01-13 04:19:17', 0, NULL, 1),
(28085, 'Swetha', '7', '7550162407', '', 'swethajayakumar1904@gmail.com', '2001-04-19', 24, '2', '2', 'Jayakumar', 'Private company', 17000.00, 1, 16500.00, 25000.00, 'Chennai', 'Chennai', '2601100007', '1', '2', 'upload_files/candidate_tracker/85361011288_SWETHARESUME.pdf', NULL, '1', '2026-01-14', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2026-01-10 08:09:46', 154, '2026-01-14 12:10:28', 0, NULL, 1),
(28086, 'Preethi Sathyamoorthy', '4', '9345594209', '', 'preethisathyamoorthi120@gmail.com', '1995-06-04', 30, '2', '2', 'sathyamoorthy', 'advocate', 80.00, 0, 0.00, 25.00, 'mogappair', 'chennai', '2601100008', '1', '1', 'upload_files/candidate_tracker/29522290650_PREETHISATHYAMOORTHIResumeV5.docx.pdf', NULL, '1', '2026-01-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-10 12:55:42', 154, '2026-01-12 06:35:47', 0, NULL, 1),
(28087, 'A TAMIL SELVAN', '6', '9150254582', '', 'tamilcandy2@gmail.com', '2001-03-11', 24, '2', '1', 'Anandan', 'Driver', 40000.00, 0, 3.10, 4.50, 'Chennai', 'Chennai', '2601110001', '1', '2', 'upload_files/candidate_tracker/44361721657_Tamilselvan2026pdf.pdf', NULL, '1', '2026-01-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2026-01-11 02:04:19', 154, '2026-01-12 06:11:13', 0, NULL, 1),
(28088, '', '0', '7200979931', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601110002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-11 05:30:41', 0, NULL, 0, NULL, 1),
(28089, 'PRABHAYYA S NAMASTEMATH', '6', '6363903730', '8105941205', 'prabhunamastemath2001@gmail.com', '2001-03-30', 24, '5', '2', 'Paravva', 'farmer', 30000.00, 1, 0.00, 25000.00, 'dharwad', 'dharwad', '2601120001', '', '1', 'upload_files/candidate_tracker/58615349783_PRABHAYYASNAMASTEMATH.pdf', NULL, '1', '2026-01-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-12 04:39:26', 1, '2026-01-12 04:45:08', 0, NULL, 1),
(28090, 'Yasar Arafath Azad Ali', '13', '8667809841', '9150528042', 'yasar2003arafath@gmail.com', '2003-05-16', 22, '2', '2', 'Azad Ali', 'Driver it', 25000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2601120002', '1', '1', 'upload_files/candidate_tracker/37718145190_YasarArafathAzadAli1.pdf', NULL, '1', '2026-01-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2026-01-12 05:42:24', 154, '2026-01-12 06:33:22', 0, NULL, 1),
(28091, 'Salman Khan', '33', '9150528042', '8667809841', 'salmanm2810@gmail.com', '2002-10-28', 23, '2', '2', 'Muhaideen Abdul Kadhar', 'Watchman', 10000.00, 2, 20000.00, 23000.00, 'Pudukkottai', 'Pazhavantangal', '2601120003', '1', '2', 'upload_files/candidate_tracker/72951104880_Salmanresume15122.pdf', NULL, '1', '2026-01-12', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for our role', '4', '1', '', '4', '5', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-01-12 07:15:44', 154, '2026-01-12 06:34:18', 0, NULL, 1),
(28092, 'dharshini D', '6', '6369220152', '8056226877', 'banudharshini5@gmail.com', '2000-08-30', 25, '3', '2', 'Banumathi', 'House wife', 7000.00, 0, 0.00, 20000.00, 'New Washermanpet', 'New Washermanpet', '2601120004', '', '2', 'upload_files/candidate_tracker/42679883972_DharshiniDResume.pdf', NULL, '1', '2026-01-13', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Complete exp in non voice and looking for same too not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2026-01-12 07:23:13', 154, '2026-01-13 11:50:47', 0, NULL, 1),
(28093, 'R. Srikanth', '30', '9360872944', '8098729447', 'Srikanth936087@gamil.com', '2003-07-28', 22, '5', '2', 'N. Ravi', 'farmar', 15000.00, 1, 20000.00, 25000.00, 'Perumal kovil street avajpettai mgr thiruvallur', 'Kallpattu post thiruvallur', '2601120005', '', '2', 'upload_files/candidate_tracker/29800915518_Srikanth.pdf', NULL, '3', '2026-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '9', '1', '0', '4', '6', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-12 07:33:29', 1, '2026-01-12 07:52:41', 0, NULL, 1),
(28094, 'Bishal Chakraborty', '20', '7005777470', '7005424045', 'bishalchakraborty980@gmail.com', '2003-12-09', 22, '2', '2', '0', 'Relationship Executive', 25000.00, 0, 0.00, 23000.00, 'Agartala, Tripura', 'Aminjikarai, Pp Garden 1st Street', '2601120006', '50', '1', 'upload_files/candidate_tracker/1956033666_BIODataComplete.pdf', NULL, '1', '2026-01-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-12 07:51:10', 1, '2026-01-12 08:25:30', 0, NULL, 1),
(28095, '381728614349', '4', '9600279528', '7397379578', 'Preethimunuswamy21@gmail.com', '2004-02-21', 21, '2', '2', 'Munuswamy', '60000', 75000.00, 1, 0.00, 18000.00, 'East tambram', 'Selaiyur', '2601120007', '50', '1', 'upload_files/candidate_tracker/879615402_preethiCV11compressed1.pdf', NULL, '1', '2026-01-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-12 08:03:21', 1, '2026-01-12 08:32:47', 0, NULL, 1),
(28096, '', '0', '9344590802', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601120008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-12 08:50:48', 0, NULL, 0, NULL, 1),
(28097, 'Sanjay P', '6', '8778845144', '9790945341', 'sanjayp45144@gmail.com', '2004-06-12', 21, '2', '2', 'M Prabhakaran', 'Transport', 50000.00, 1, 0.00, 18000.00, 'Mount Road', 'Chennai Tiruvottiyur', '2601120009', '50', '1', 'upload_files/candidate_tracker/13299569822_DOC20251229WA0014..pdf', NULL, '1', '2026-01-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-12 09:28:28', 154, '2026-01-20 12:49:49', 0, NULL, 1),
(28098, 'AMERTHYASEN P', '5', '9150956521', '', 'joshjoojojo1222@gmail.com', '2001-05-22', 24, '2', '2', 'Purushothaman', 'Section manager lucas tvs', 2.00, 2, 19500.00, 25000.00, 'Chennai', 'Chennai', '2601120010', '50', '2', 'upload_files/candidate_tracker/62177238922_0c4182a3f83840478508264fc3dc8798.pdf', NULL, '1', '2026-01-13', 0, '', '1', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55557', '55557', '1970-01-01', 1, '2026-01-12 10:21:48', 154, '2026-01-13 06:29:25', 0, NULL, 1),
(28099, 'swetha R', '6', '7639093398', '9751612620', 'swetharavi066@gmail.com', '2003-03-11', 22, '2', '2', 'Ravi', 'Fisher man', 12000.00, 1, 18000.00, 20000.00, 'Ramanathapuram', 'Chennai', '2601120011', '50', '2', 'upload_files/candidate_tracker/51726189336_resumenew1.pdf', NULL, '2', '2026-01-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-12 12:35:31', 154, '2026-01-20 12:54:49', 0, NULL, 1),
(28100, 'Kaarthik', '33', '8489471223', '', 'kaarthikk2001@gmail.com', '2001-09-28', 24, '3', '2', 'Rajan R', 'Process Associate', 18000.00, 1, 0.00, 35000.00, 'Kanchipuram', 'Kanchipuram', '2601120012', '', '2', 'upload_files/candidate_tracker/54381249204_CV202512282335586.pdf', NULL, '1', '2026-01-13', 90, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-12 12:51:38', 1, '2026-01-12 12:55:40', 0, NULL, 1),
(28101, 'Harini S', '33', '6374278046', '', 'harinikavitha6@gmail.com', '2003-04-10', 22, '2', '2', 'Kavitha.S', 'House wife', 300000.00, 1, 15000.00, 20000.00, 'Purasaiwalkam', 'Purasaiwalkam', '2601120013', '1', '2', 'upload_files/candidate_tracker/55930920742_updated.pdf', NULL, '1', '2026-01-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-12 01:30:40', 154, '2026-01-13 06:18:41', 0, NULL, 1),
(28102, 'oune hanama', '4', '6360935245', '', 'mouneshwarinh@gmail.com', '2003-08-19', 22, '5', '2', 'eelakantagouda', '.', 50000.00, 2, 0.00, 20000.00, 'ubli', 'engaluru', '2601120014', '', '1', 'upload_files/candidate_tracker/25457855645_Resume.pdf', NULL, '1', '2026-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-12 01:41:01', 1, '2026-01-12 01:44:52', 0, NULL, 1),
(28103, 'Vignesh', '4', '6379393381', '', 'vigneshsp1512@gmail.com', '2002-12-15', 23, '2', '2', 'Padmanaban', 'Carpenter', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2601120015', '50', '1', 'upload_files/candidate_tracker/85397728592_VigneshResume1.pdf', NULL, '1', '2026-01-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-12 01:49:52', 1, '2026-01-12 01:54:24', 0, NULL, 1),
(28104, 'Gopalakrishnan C', '4', '7550004900', '', 'gopalakrishnan6655@gmail.com', '1997-06-25', 28, '2', '2', 'Chandra sekar', 'Auto driver', 20000.00, 0, 0.00, 16000.00, 'Chennai, Perambur', 'Chennai', '2601130001', '50', '2', 'upload_files/candidate_tracker/73284854628_Cresume.pdf', NULL, '1', '2026-01-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-13 04:42:59', 1, '2026-01-13 04:49:43', 0, NULL, 1),
(28105, 'Dhinakaran', '4', '9025157505', '9150529838', 'dhina7120@gmail.com', '2003-05-09', 22, '2', '2', 'Divya', 'House wife', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2601130002', '50', '1', 'upload_files/candidate_tracker/26843416588_resumedhinakaran.pdf', NULL, '1', '2026-01-14', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is not at all serious about his career, more gaps in between the education simply telling reasons for the gaps. will not suit for our roles', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-01-13 04:57:34', 154, '2026-01-14 12:40:08', 0, NULL, 1),
(28106, 'n mohammed saajid', '6', '9014006617', '7382377229', 'saajidmohammed5@gmail.com', '2003-06-13', 22, '2', '2', 'noorul hameed', 'Business', 18000.00, 1, 14000.00, 22000.00, 'sultan street mannadi george town', 'sultan street mannadi george town', '2601130003', '1', '2', 'upload_files/candidate_tracker/32196752479_Sajiupdatedresume.pdf', NULL, '1', '2026-01-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'CANDIDATE IS OK.COMMUNICATION IS GOOD. CONFIRM THE SALARY xxamp JOINING DATE.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55692', '5151', '1970-01-01', 1, '2026-01-13 05:05:12', 154, '2026-01-13 12:37:31', 0, NULL, 1),
(28107, 'Premkumar', '6', '7448800508', '7339049343', 'www.premkumarmani98@gmail.com', '1998-08-05', 27, '2', '2', 'Kanaga.M', 'Farmers', 10000.00, 2, 15000.00, 22000.00, 'Kanchipuram in uthiramerur', 'Uthiramerur', '2601130004', '50', '2', 'upload_files/candidate_tracker/19525315376_preamkumar.pdf', NULL, '2', '2026-01-14', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'his communication and slang is not good', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-01-13 05:25:44', 154, '2026-01-14 12:11:29', 0, NULL, 1),
(28108, 'Aswini s', '5', '7904362380', '6385752747', 'ishumathavan33@gmail.com', '1999-06-02', 26, '2', '1', 'Mathavan', 'Hr manager', 40000.00, 1, 18000.00, 20000.00, 'Perungudi', 'Chennai', '2601130005', '68', '2', 'upload_files/candidate_tracker/17642808212_ashwini.docx', NULL, '1', '2026-01-14', 0, '', '3', '59', '2026-01-16', 280000.00, '', NULL, '2026-02-28', '1', 'Communication Ok have exp in justdial fresher for our roles need to check in training', '5', '1', '2', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '2026-01-16', 1, '2026-01-13 05:56:11', 60, '2026-01-14 06:29:51', 0, NULL, 1),
(28109, 'joel b', '5', '9791467435', '7904605258', 'joelbabu1109@gmail.com', '2000-11-09', 25, '1', '2', 'julie b', 'business', 400000.00, 1, 400000.00, 450000.00, 'chennai', 'chennai', '2601130006', '', '2', 'upload_files/candidate_tracker/86601036504_Resume16092025124100PM.pdf', NULL, '1', '2026-01-13', 0, '55883', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Shall try again after  a month or 2 \n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2026-01-13 06:10:15', 154, '2026-01-13 12:38:29', 0, NULL, 1),
(28110, 'mohanprasath t', '5', '9790882223', '9940500739', 'mohanprasath1022@gmail.com', '2003-10-22', 22, '1', '2', 'thirunavukarasu g', 'business', 50000.00, 1, 21000.00, 25000.00, 'chrompet', 'chrompet', '2601130007', '', '2', 'upload_files/candidate_tracker/6285614590_resume.pdf', NULL, '1', '2026-01-13', 0, 'c99242', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55560', '55560', '1970-01-01', 1, '2026-01-13 06:17:03', 154, '2026-01-13 06:50:22', 0, NULL, 1),
(28111, 'Pavithra p', '13', '7639504827', '', 'pavi98290@gmail.com', '2001-10-22', 24, '3', '2', '-', '-', 200000.00, 1, 0.00, 250000.00, 'Vridhachalam', 'Chennai', '2601130008', '', '1', 'upload_files/candidate_tracker/51673573619_PAVITHRABE2023DataAnalystResume.pdf', NULL, '1', '2026-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-13 06:25:41', 1, '2026-01-13 06:28:39', 0, NULL, 1),
(28112, 'Keerthana.p', '6', '9710674950', '7338715202', 'keerthipanneer2001@gmail.com', '2001-03-22', 24, '2', '2', 'Panneer Selvam.R', 'Paint contractor', 10000.00, 2, 15000.00, 17000.00, 'Ayanavaram', 'Ayanavaram', '2601130009', '68', '2', 'upload_files/candidate_tracker/85011890316_Keerthana.pdf', NULL, '1', '2026-01-13', 15, '', '3', '59', '2026-01-21', 193200.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp but sustainability doubts a lot 2nd cahnce in cafs this time let us check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2026-01-21', 1, '2026-01-13 07:06:03', 60, '2026-01-21 10:15:47', 0, NULL, 1),
(28113, 'Divakar v', '4', '7092974191', '7338927754', 'realswag1630@gmail.com', '1996-12-13', 29, '2', '2', 'Manimala', 'B.A History', 200000.00, 0, 0.00, 18.00, 'Chennai', 'Madhavaram', '2601130010', '50', '1', 'upload_files/candidate_tracker/1037305299_Divakarresume1.pdf', NULL, '3', '2026-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-13 08:52:11', 1, '2026-01-13 08:57:48', 0, NULL, 1),
(28114, '', '0', '7305747892', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601130011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-13 11:56:42', 0, NULL, 0, NULL, 1),
(28115, '', '0', '9500068107', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601130012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-13 12:10:33', 0, NULL, 0, NULL, 1),
(28116, 'CHARULATHA. p', '4', '9150211562', '9962848458', 'Ccharu259@gmail', '2002-06-05', 23, '2', '2', 'P.jamuna', 'Sub Staff ccb Bank', 15000.00, 2, 0.00, 18000.00, 'M.C.M Garden street', 'M.C.M Garden street', '2601140001', '1', '1', 'upload_files/candidate_tracker/44863233185_RESUMEcharulatha2026.pdf', NULL, '1', '2026-01-14', 0, '', '2', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is  ok, communication is 50-50, but mainly focusing on banking exams, family need is also there so will hold the profile and try', '1', '1', '', '1', '8', '', '2', '2026-01-16', '1', '7', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2026-01-14 04:34:50', 154, '2026-01-14 11:22:21', 0, NULL, 1),
(28117, 'hari haran K', '6', '9342869114', '', 'haran.harik90s@gmail.com', '1999-05-21', 26, '2', '2', 'Kannan S', 'Goldsmith', 50000.00, 2, 229000.00, 345000.00, 'Chennai', 'Chennai', '2601140002', '68', '2', 'upload_files/candidate_tracker/60328765159_NewMeResume.pdf', NULL, '1', '2026-01-14', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is mostly looking for admin, operations side, he is itself more confused about what domain to choose, more career gaps and not much interested in sales also so not fit for our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-01-14 05:06:57', 154, '2026-01-14 11:32:08', 0, NULL, 1),
(28118, 'ASHOK ANGAMUTHU', '6', '9444687399', '9551075689', 'ashokangamuthu63@gmail.com', '1996-09-04', 29, '2', '2', 'SHANTHI', 'Daily wages', 4000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2601140003', '68', '2', 'upload_files/candidate_tracker/98268054450_AshokResume.pdf', NULL, '1', '2026-01-14', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is mostly looking for backoffice roles as he is having some health issues', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-01-14 06:38:54', 154, '2026-01-14 12:47:30', 0, NULL, 1),
(28119, 'paul i', '5', '9060159576', '9742317667', 'plirudayanathan23@gmail.cim', '1990-07-25', 35, '2', '2', 'Irudayanathan', 'Retired ITI officer', 400000.00, 2, 500000.00, 6000000.00, 'Bangalore', 'Bangalore', '2601140004', '57', '2', 'upload_files/candidate_tracker/76498482774_paul1216.pdf', NULL, '1', '2026-01-14', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-14 07:09:02', 162, '2026-01-14 01:00:07', 0, NULL, 1),
(28120, 'praveenraja g', '5', '6382872891', '9487105377', 'praveenraja.job@gmail.com', '2002-06-18', 23, '2', '2', 'govinthraj', 'Business', 15000.00, 1, 21700.00, 23000.00, 'chennai', 'triplicane', '2601140005', '50', '2', 'upload_files/candidate_tracker/18367627052_PraveenrajaGALL.pdf', NULL, '1', '2026-01-14', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2026-01-14 07:19:14', 154, '2026-01-14 03:41:07', 0, NULL, 1),
(28121, 'p srijith', '6', '6382966411', '6385420733', 'Srijith0031@gmail.com', '2003-12-30', 22, '2', '2', 'thamarai selvi', 'own business', 600000.00, 1, 0.00, 20000.00, 'thiruvanmiyur', 'thiruvanmiyur', '2601140006', '1', '1', 'upload_files/candidate_tracker/16012272630_ResumeSrijith.P.pdf', NULL, '1', '2026-01-14', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2026-01-14 07:39:50', 154, '2026-01-14 04:03:52', 0, NULL, 1),
(28122, '', '0', '8428048080', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-14 07:43:57', 0, NULL, 0, NULL, 1),
(28123, 'Raghul K', '6', '6382212566', '', 'remoraghul31@gmail.com', '2000-12-23', 25, '2', '2', 'Kathiresan', 'Operation Theatre Technician', 240000.00, 0, 180000.00, 300000.00, 'Avadi', 'Avadi', '2601140008', '1', '2', 'upload_files/candidate_tracker/92827051771_KRaghulResume1767263513345K.RAGHUL.docx', NULL, '1', '2026-01-16', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '77778', '55566', '1970-01-01', 1, '2026-01-14 11:20:49', 154, '2026-01-16 11:25:46', 0, NULL, 1),
(28124, 'CHANDRU.S', '5', '9600138714', '7871957549', 'Chandrusparx@gmail.com', '2004-05-10', 21, '1', '2', 'Shanmugam.B', 'Driver', 30000.00, 1, 250000.00, 300000.00, 'Vysarpadi', 'Vysarpadi', '2601160001', '', '2', 'upload_files/candidate_tracker/40194426618_WhiteMinimalistResume2025082600002700001.pdf', NULL, '1', '2026-01-03', 30, '77957', '3', '59', '2026-01-05', 252000.00, '', '1', '1970-01-01', '1', 'Rejoining after few months with Equitas Giri raja team', '5', '1', '4', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '2026-01-05', 1, '2026-01-16 06:59:32', 60, '2026-01-16 12:45:40', 0, NULL, 1),
(28125, 'v manigandan', '13', '8300799452', '8220848090', 'vmanigandan8298@gmail.com', '2000-06-03', 25, '2', '2', 'Vijay Kumar', 'Cooli', 18000.00, 1, 0.00, 18000.00, 'Kamarajar nagar,Irumbedu po,Arani-tk, 632317', 'Choolaimedu,Chennai', '2601160002', '1', '1', 'upload_files/candidate_tracker/72255086076_ManigandanR1.pdf', NULL, '1', '2026-01-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-16 11:08:01', 154, '2026-01-19 10:59:31', 0, NULL, 1),
(28126, 'teja.s', '33', '9445642701', '9080626064', 'tejasuresh01@gmail.com', '2003-01-27', 22, '2', '2', 'p.suresh', 'manager', 30000.00, 1, 0.00, 3000.00, 'west mambalam chennai', 'west mambalam', '2601170001', '1', '1', 'upload_files/candidate_tracker/24369603416_TEJAResumecompressed.pdf', NULL, '1', '2026-01-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-17 09:06:31', 154, '2026-01-17 05:33:23', 0, NULL, 1),
(28127, 'VINOTHKUMAR', '6', '9360968263', '8110806413', 'vinothchellappan26@gmail.com', '2000-01-26', 25, '2', '2', 'CHELLAM', 'Auto i', 15000.00, 2, 0.00, 250000.00, 'Thiruvarur', 'Thiruvarur', '2601170002', '1', '2', 'upload_files/candidate_tracker/78770784440_VinothkumarBio.pdf', NULL, '1', '2026-01-19', 0, '', '3', '59', '2026-01-21', 192000.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp in collection and indian oil field fresher for insurance sales but can be trained need to travel a certain distance let us check', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CI144', '5151', '2026-01-21', 1, '2026-01-17 09:54:07', 60, '2026-01-21 10:16:28', 0, NULL, 1),
(28128, 'Shalini F', '4', '9080187171', '7305378485', 'shalinishivii@gmail.com', '1999-09-12', 26, '5', '2', 'Mother: Amudha .A', 'house wife', 348000.00, 1, 25000.00, 28000.00, 'kolathur chennai', 'kolathur chennai', '2601170003', '', '2', 'upload_files/candidate_tracker/37467989231_CV2026010719051641.pdf', NULL, '1', '2026-01-17', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-17 10:58:09', 1, '2026-01-17 11:06:46', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28129, 'BOOBALASAKTHI B', '13', '8525932115', '9952292115', 'boobalasakthi02@gmail.com', '2004-05-02', 21, '2', '2', 'BALUCHAMY U', 'Municipal Supervisor', 40000.00, 2, 0.00, 25000.00, 'Ramanathapuram', 'Chennai', '2601170004', '1', '1', 'upload_files/candidate_tracker/43430892433_RESUMEBOOBALASAKTHI4.pdf', NULL, '1', '2026-01-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-17 12:37:24', 154, '2026-01-27 03:07:42', 0, NULL, 1),
(28130, 'Kairunnisha S', '6', '9514761595', '', 'Kairunnisha0922@gmail.com', '1997-09-22', 28, '2', '2', 'Syed saleem', 'Police', 100000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2601170005', '1', '2', 'upload_files/candidate_tracker/59448335153_CV2025012016483867.pdf', NULL, '1', '2026-01-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-17 01:50:50', 154, '2026-01-19 01:11:32', 0, NULL, 1),
(28131, '', '0', '7448391923', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601180001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-18 04:09:42', 0, NULL, 0, NULL, 1),
(28132, 'Gayarunniyan pT', '6', '9361326407', '7397365976', 'gayarunniyan29@gmail.com', '2005-04-04', 20, '2', '2', 'Thanagaivel', 'Warping', 12000.00, 1, 0.00, 18000.00, 'Punniyam kerumbedu Thiruvallur dist', 'Perumbur loca works', '2601180002', '1', '1', 'upload_files/candidate_tracker/5370331168_gayarunniyanmainresumeIT.pdf', NULL, '1', '2026-01-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-01-18 04:51:30', 154, '2026-01-19 12:00:11', 0, NULL, 1),
(28133, 'Sreeram sundar', '33', '9566949397', '8825512037', 'Sreeramsundar53@gmail.com', '2004-03-30', 21, '2', '1', 'V Veerapagu', 'Newspaper agent', 40000.00, 1, 0.00, 18000.00, 'Thoothukudi', 'Chennai', '2601190001', '1', '1', 'upload_files/candidate_tracker/34889654787_sreeramresume01.pdf', NULL, '1', '2026-01-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-19 04:02:30', 154, '2026-01-19 04:15:05', 0, NULL, 1),
(28134, 'Paul prince krishnan', '5', '8148068354', '8072863767', 'princeking2028prisha@gmail.com', '1996-03-28', 29, '2', '1', 'Sharmela D.R', 'System engineer', 40000.00, 1, 26000.00, 32000.00, 'Korattur chennai', 'Korattur chennai', '2601190002', '1', '2', 'upload_files/candidate_tracker/34661595394_PaulPrinceResume05012026.docx', NULL, '1', '2026-01-19', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55650', '55560', '1970-01-01', 1, '2026-01-19 04:33:58', 154, '2026-01-19 01:14:26', 0, NULL, 1),
(28135, '', '0', '7010626384', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601190003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-19 04:38:19', 0, NULL, 0, NULL, 1),
(28136, 'Mohammed Niyas S', '6', '7397365979', '9361326407', 'Mohamedniyas291198@gmail.com', '1998-11-29', 27, '2', '2', 'Ponnachi', 'Home maker', 15000.00, 1, 14000.00, 18000.00, 'Korukkupet', 'Chennai', '2601190004', '1', '2', 'upload_files/candidate_tracker/86677330173_CV2026010718110515.pdf', NULL, '1', '2026-01-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-01-19 04:51:02', 154, '2026-01-19 11:58:14', 0, NULL, 1),
(28137, 'Nadhiya', '6', '6369159628', '6369159358', 'cchnadhiya1@gmail.com', '2000-04-17', 25, '1', '2', 'Nil', 'Nil', 100000.00, 2, 23000.00, 28000.00, 'No:608 17th east mkb nagar Vyasarpadi Chennai', 'No:608 17th east mkb nagar Vyasarpadi Chennai', '2601190005', '', '2', 'upload_files/candidate_tracker/23966261668_correctresume.pdf', NULL, '1', '2026-01-19', 0, '55855', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2026-01-19 05:02:20', 154, '2026-01-19 10:46:30', 0, NULL, 1),
(28138, '', '0', '6369159328', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-19 05:13:12', 0, NULL, 0, NULL, 1),
(28139, '', '0', '9363255841', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601190007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-19 05:42:04', 0, NULL, 0, NULL, 1),
(28140, 'EZHILARSAN', '6', '7806990321', '', 'mrezhilarasan2003@gmail.com', '2003-04-06', 22, '2', '2', 'ANUMUTHU', 'Working private company', 16000.00, 2, 0.00, 18000.00, 'AMBUR', 'Tambaram', '2601190008', '1', '1', 'upload_files/candidate_tracker/17351616699_ezhilarasanresume1.pdf', NULL, '1', '2026-01-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-19 05:58:42', 154, '2026-01-19 01:12:45', 0, NULL, 1),
(28141, 'B Keerthi', '5', '7358023732', '7401583868', 'Keerthibabu65@gmail.com', '1998-11-25', 27, '2', '1', 'Bharathi', 'Home maker', 18.00, 1, 18.00, 21.00, 'Chennai', 'Chennai', '2601190009', '68', '2', 'upload_files/candidate_tracker/69582043675_ResumeKeerthi1.docx', NULL, '1', '2026-02-02', 15, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2026-01-19 06:26:44', 159, '2026-02-04 03:12:11', 0, NULL, 1),
(28142, 'M. Esther', '6', '6382798390', '6382239556', 'esthuesthumalovesjesus@gmail.com', '2005-02-15', 20, '1', '2', 'A. Moses', 'Painter', 25000.00, 1, 16000.00, 18000.00, 'Pondicherry murugesan Street, old washermenpet', 'Pondicherry murugesan Street, old washermenpet,', '2601190010', '', '2', 'upload_files/candidate_tracker/26577482421_Estherresume1.docx', NULL, '1', '2026-01-19', 15, 'R.Aarthi - C99137 Babu sir team', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2026-01-19 06:39:14', 154, '2026-01-19 04:12:50', 0, NULL, 1),
(28143, 'M. Swetha', '6', '9087716485', '8248753694', 'swethaswetha0347@gmail.com', '2006-12-10', 19, '1', '2', 'M. Mathiyalagan', 'Auto driver', 25000.00, 1, 17000.00, 19000.00, 'Bishop Lane, old Washermenpet,', 'Bishop Lane, old washermenpet', '2601190011', '', '2', 'upload_files/candidate_tracker/31510510079_SwethaResume.doc', NULL, '1', '2026-01-19', 15, 'R.Aarthi - C99137 Babu sir team', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2026-01-19 06:39:36', 154, '2026-01-19 04:12:16', 0, NULL, 1),
(28144, 'karthi', '6', '7305269795', '', 'sk.kathi172@gmail.com', '2004-03-17', 21, '2', '2', 'sankar', 'daily wages', 960000.00, 1, 0.00, 3.00, 'mmda', 'cjhennai', '2601190012', '66', '1', 'upload_files/candidate_tracker/1350927585_karthisumaa.pdf', NULL, '1', '2026-01-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-19 07:35:56', 1, '2026-01-19 07:42:23', 0, NULL, 1),
(28145, 'Jaya surya R', '6', '9176309619', '7338973546', 'jayasuryar89@gmail.com', '2002-10-14', 23, '2', '2', 'raman s s', 'rental', 50000.00, 2, 0.00, 18000.00, 'chakkarabani Garden Agaram Perambur ch', 'chakkarabani garden agaram perambur ch', '2601190013', '1', '1', 'upload_files/candidate_tracker/27786357188_Resume.pdf', NULL, '1', '2026-01-20', 0, '', '1', '156', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55732', '5151', '1970-01-01', 1, '2026-01-19 08:02:16', 154, '2026-01-20 11:37:55', 0, NULL, 1),
(28146, '', '0', '7339049343', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601190014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-19 10:12:01', 0, NULL, 0, NULL, 1),
(28147, 'Gomathi Kannan', '4', '8939272604', '8939407820', 'gomathiaarthi04@gmail.com', '2001-12-04', 24, '2', '2', 'Kannan', 'Flower shop', 15000.00, 1, 12000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2601190015', '1', '2', 'upload_files/candidate_tracker/32441857226_gomessaran.docx', NULL, '1', '2026-01-20', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-19 12:00:05', 154, '2026-01-20 12:41:42', 0, NULL, 1),
(28148, 'Meenakshi.R', '4', '9489703072', '9629997943', 'abiravijaya@gmail.com', '2005-02-05', 20, '2', '2', 'N.Ravi', 'Farmer', 72000.00, 1, 12000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2601190016', '1', '2', 'upload_files/candidate_tracker/28707623781_rmeenakshi.pdf', NULL, '1', '2026-01-20', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-19 12:02:43', 154, '2026-01-20 12:42:13', 0, NULL, 1),
(28149, 'Sunantha G', '4', '7339541296', '', 'sunantha4gi@gmail.com', '2002-12-28', 23, '2', '2', 'Ganeshan', 'Farmer', 7000.00, 0, 0.00, 20000.00, 'Namakkal', 'Chennai', '2601190017', '50', '1', 'upload_files/candidate_tracker/66177728891_sunantharesume.pdf', NULL, '1', '2026-01-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-19 12:18:07', 1, '2026-01-19 12:28:41', 0, NULL, 1),
(28150, 'Sonabai', '6', '7550348388', '', 'sonashanmu@gmail.com', '1998-05-13', 27, '2', '1', 'Ajay', 'Auto driver', 30000.00, 1, 28000.00, 30000.00, 'Chennai', 'Chennai', '2601190018', '1', '2', 'upload_files/candidate_tracker/27636900349_SonaResume2025.pdf', NULL, '1', '2026-01-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-19 12:39:22', 154, '2026-01-20 01:20:11', 0, NULL, 1),
(28151, 'Aravindkumar', '6', '9677443749', '8925149140', 'smartaravind1997@gmail.com', '1997-11-28', 28, '2', '2', 'Suganthamani', 'Agriculture', 6000.00, 1, 20000.00, 25000.00, 'Coimbatore', 'Coimbatore', '2601190019', '1', '2', 'upload_files/candidate_tracker/66731687472_CV2026010915065978.pdf', NULL, '1', '2026-01-27', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication slang is totally native slang and did only complete field sales or microfinance and group loans and no exp in voice process not suitable and package is 22k expected is more than this', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55882', '55566', '1970-01-01', 1, '2026-01-19 01:15:46', 154, '2026-01-27 03:06:13', 0, NULL, 1),
(28152, '', '0', '7010356414', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601200001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-20 02:55:55', 0, NULL, 0, NULL, 1),
(28153, 'KALPANA M', '5', '8714311432', '9061066369', 'kalpanamurugan129@gmail.com', '2000-09-12', 25, '2', '1', 'Sooraj R', 'Student councilor', 40000.00, 1, 27000.00, 29000.00, 'Chennai', 'Chennai', '2601200002', '68', '2', 'upload_files/candidate_tracker/19298469229_Kalpana.M.pdf', NULL, '1', '2026-01-20', 0, '', '1', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55557', '55557', '1970-01-01', 1, '2026-01-20 04:44:33', 154, '2026-01-20 11:15:22', 0, NULL, 1),
(28154, 'Abirami M', '33', '9360606857', '7305785081', 'abirami041204@gmail.com', '2004-12-04', 21, '2', '2', 'Mohan G', 'Coolie', 20000.00, 1, 14000.00, 18000.00, 'No.139,kamaraj nagar, Kilpauk,ch-10', 'No.139,Kamaraj Nagar, Kilpauk,Ch-10', '2601200003', '1', '2', 'upload_files/candidate_tracker/95358666451_Resume1.pdf', NULL, '1', '2026-01-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-20 05:03:37', 154, '2026-01-20 01:21:31', 0, NULL, 1),
(28155, 'Pavitha', '4', '6384706636', '', 'pavitha2410002@gmail.com', '2002-10-24', 23, '2', '2', 'Paramasivam', 'Farming', 30000.00, 5, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2601200004', '1', '1', 'upload_files/candidate_tracker/91622387934_Pavitharesume1.pdf', NULL, '1', '2026-01-20', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-20 05:53:32', 154, '2026-01-20 12:41:16', 0, NULL, 1),
(28156, '', '0', '9585773926', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601200005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-20 06:43:17', 0, NULL, 0, NULL, 1),
(28157, 'JAYAKUMAR J', '6', '9791078588', '9551591356', 'jaikumar0785@gmail.com', '2001-07-23', 24, '2', '2', 'Jayapal', 'Thele sales', 40000.00, 1, 25000.00, 28000.00, 'Nanmangalam', 'Nanmangalam', '2601200006', '1', '2', 'upload_files/candidate_tracker/85404814694_JAYAKUMARResume111.pdf', NULL, '1', '2026-01-20', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2026-01-20 07:14:48', 104, '2026-02-02 09:20:11', 0, NULL, 1),
(28158, 'Arista mary', '4', '8610912644', '7867906133', 'aristamary1108@gmail.com', '2003-07-11', 22, '2', '2', 'Savariraj', 'Farmer', 72000.00, 2, 0.00, 14.00, 'Thanjavur', 'Vallam', '2601200007', '1', '1', 'upload_files/candidate_tracker/43530113485_Arista..newresume.pdf', NULL, '1', '2026-01-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-20 07:38:44', 154, '2026-01-21 04:24:27', 0, NULL, 1),
(28159, 'GOKUL KUMARAVEL', '5', '9363731395', '', 'gokul.kumaravel1302@gmail.com', '1995-02-13', 30, '3', '2', 'Kumaravel G', 'Manager', 25000.00, 1, 850000.00, 950000.00, 'Ambattur', 'Ambattur', '2601200008', '', '2', 'upload_files/candidate_tracker/45726925707_GokulResumenew.pdf', NULL, '1', '2026-01-20', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-20 09:09:37', 154, '2026-01-20 03:46:00', 0, NULL, 1),
(28160, 'stephen raj john loordhu samy', '6', '8072804715', '', 'rajubaiii1998@gmail.com', '1999-06-27', 26, '2', '2', 'poongodi', 'Coolie', 10000.00, 1, 21000.00, 26000.00, 'Chennai', 'chennai', '2601200009', '1', '2', 'upload_files/candidate_tracker/28968061434_CV2026011917343682.pdf', NULL, '1', '2026-01-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-20 09:24:02', 154, '2026-01-20 05:18:02', 0, NULL, 1),
(28161, 'Prakash. R', '20', '9789979566', '9941065367', 'rprakashrprakashraj3@gmail.com', '2004-08-25', 21, '2', '2', 'Rajendran. M', 'Ironing', 96000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2601200010', '1', '1', 'upload_files/candidate_tracker/46129685349_Prakashresume2.pdf', NULL, '1', '2026-01-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-01-20 09:41:38', 1, '2026-01-20 10:39:33', 0, NULL, 1),
(28162, 'Mahendran navaneetham', '5', '7092323149', '9361187785', 'Mahendran120992@gmail.com', '1992-09-12', 33, '2', '1', 'Priya', 'Housewife', 100000.00, 2, 35000.00, 35000.00, 'Chennai', 'Chennai', '2601200011', '1', '2', 'upload_files/candidate_tracker/59714121760_MahendranN.pdf', NULL, '1', '2026-01-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Shortlisted for Abdul Team. Immed Joiner. Shall join this week. Dont have laptop with old health sales experience', '5', '2', '', '4', '6', '', '2', '1970-01-01', '4', '1', '', '', 'H1018', '', '55735', '55557', '1970-01-01', 1, '2026-01-20 09:50:11', 154, '2026-01-27 04:44:56', 0, NULL, 1),
(28163, 'Rekshana devi R', '5', '6369085850', '9342259321', 'rekshanadevi@gmail.com', '2003-09-28', 22, '2', '2', 'Jothy', 'Homemaker', 15000.00, 2, 0.00, 15000.00, 'Villupuram', 'Chennai', '2601200012', '1', '1', 'upload_files/candidate_tracker/40609973674_rekshanaresumecompressed.pdf', NULL, '1', '2026-01-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-01-20 11:04:57', 1, '2026-01-20 11:09:20', 0, NULL, 1),
(28164, 'K.sathish kumar', '6', '9360443086', '', 'sathish10904@gmail.com', '2004-09-01', 21, '2', '2', 'T.krishnamoorthy', 'Van driver', 25000.00, 2, 0.00, 15000.00, 'Nungambakkam', 'Nungambakkam', '2601200013', '50', '1', 'upload_files/candidate_tracker/69475963881_ImagetoPDF2026012016.42.52.pdf', NULL, '1', '2026-01-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-20 11:19:30', 154, '2026-01-21 12:20:03', 0, NULL, 1),
(28165, 'Priyanga', '33', '6381598271', '9952253011', 'priyanga072002@gmail.com', '2002-07-09', 23, '2', '2', 'Velmurugan. P', 'Farmer', 20000.00, 4, 13000.00, 20000.00, 'Villupuram', 'Villupuram', '2601200014', '1', '2', 'upload_files/candidate_tracker/72431851353_RESUME.pdf', NULL, '1', '2026-01-21', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-20 01:22:43', 154, '2026-01-21 12:21:23', 0, NULL, 1),
(28166, 'KEERTHIGA M', '4', '6381418581', '6380726128', 'mkeerthiga05@gmail.com', '2002-05-05', 23, '2', '2', 'MURUGAN', 'Fisher man', 40000.00, 1, 16560.00, 250000.00, 'Chennai', 'Triplicane', '2601200015', '1', '2', 'upload_files/candidate_tracker/36909535345_KEERTHIGAM1.pdf', NULL, '1', '2026-01-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-20 01:53:41', 154, '2026-01-21 04:42:36', 0, NULL, 1),
(28167, 'VIMALA R', '6', '8220498746', '8778756958', 'vimala0826@gmail.com', '2003-07-26', 22, '2', '2', 'Robert', 'Driver', 20000.00, 3, 17766.00, 23000.00, 'Thiruninravur', 'Thiruninravur', '2601200016', '1', '2', 'upload_files/candidate_tracker/67856639654_VimalaResume.pdf', NULL, '1', '2026-01-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-20 03:33:28', 154, '2026-01-21 04:44:29', 0, NULL, 1),
(28168, 'ROSHINI V', '6', '9080573198', '8508031579', 'mailmeroshini005@gmail.com', '2005-04-29', 20, '2', '2', 'Vinodh', 'Daily wages', 100000.00, 1, 0.00, 18000.00, 'Tirunelveli', 'Tirunelveli', '2601210001', '50', '1', 'upload_files/candidate_tracker/1221091218_ROSHINIRESUME.pdf', NULL, '1', '2026-01-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-21 05:09:45', 154, '2026-01-22 12:29:54', 0, NULL, 1),
(28169, 'S Srivarshini G Senthil Kumar', '14', '7338754522', '7639640140', 'srivarshinisenthilkumar3678@gmail.com', '2005-03-22', 20, '3', '2', 'Senthil Kumar G', 'Auto Driver', 20000.00, 1, 0.00, 15000.00, 'No: 1058,Lig 1 ,3rd main road,Mathur , chennai -68', 'No:3678,44th cross street, Mathur, Chennai -68', '2601210002', '', '1', 'upload_files/candidate_tracker/99858045298_Srivarshiniresume.pdf1.pdf', NULL, '1', '2026-01-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-21 05:22:54', 1, '2026-01-21 05:37:27', 0, NULL, 1),
(28170, 'Subasree.k', '14', '9786774427', '9715902157', 'saisubasri2005@gmail.com', '2005-01-18', 21, '3', '2', 'KUMAR.C', 'Working in petrol pump', 8000.00, 1, 0.00, 15000.00, 'No 152 Uppalam , ponneri taluk 601204', 'No 152 Uppalam , Ponneri Taluk 601204', '2601210003', '', '1', 'upload_files/candidate_tracker/84837503875_resume2026.pdf', NULL, '1', '2026-01-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-21 05:22:59', 1, '2026-01-21 05:37:29', 0, NULL, 1),
(28171, 'Mohit M', '14', '9345984304', '9381182534', 'mmohitmanohar@gmail.com', '2005-04-20', 20, '3', '2', 'Manohar s', 'Printing press (Manager)', 50000.00, 1, 0.00, 20000.00, 'No:16/26, Perumal koyil , kodungaiyur,chennai-118.', 'No:16/26, Perumal koyil , kodungaiyur,chennai-118.', '2601210004', '', '1', 'upload_files/candidate_tracker/4130465258_MohitMResume202601101204430000.pdf', NULL, '1', '2026-01-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-21 05:25:29', 1, '2026-01-21 05:42:08', 0, NULL, 1),
(28172, 'Vigneshwaran v', '14', '8072711175', '9677162714', 'vigneshv1517@gmail.com', '2004-07-21', 21, '3', '2', 'Veeramuthu', 'Farmer', 20000.00, 1, 0.00, 20000.00, '24, erikarai, minjur, ponneri tk, 601203', '24, erikarai, minjur, ponneri tk, 601203', '2601210005', '', '1', 'upload_files/candidate_tracker/91667501569_vigneshwaran.vresume.pdf', NULL, '1', '2026-01-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-21 05:26:42', 1, '2026-01-21 05:41:43', 0, NULL, 1),
(28173, 'Dinesh Kumar. L', '14', '6369711015', '9940051882', 'dineahkumar31072005@gmail.com', '2005-07-31', 20, '3', '2', 'Lakshmipathi', 'Civi construction', 25000.00, 2, 0.00, 18000.00, 'Selliaman kovil street nallur redhills', 'Selliaman kovil street nallur redhills', '2601210006', '', '1', 'upload_files/candidate_tracker/81100772123_DOC20260106WA0007..pdf202601102010520000.pdf', NULL, '1', '2026-01-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-21 05:28:43', 1, '2026-01-21 06:05:45', 0, NULL, 1),
(28174, 'Loganayai', '14', '8438202127', '8925619908', 'Lokanayaki1222@gmail.com', '2004-12-22', 21, '3', '2', 'Ravi Shankar', 'Null', 15000.00, 1, 0.00, 18000.00, 'No:13/25 Lakshmi puram, Vadapalani, Ch-26', 'No:13/25 Lakshmi puram, Vadapalani , Ch-26', '2601210007', '', '1', 'upload_files/candidate_tracker/37390945591_Lokanayakiresume1.pdf', NULL, '1', '2026-01-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-21 05:43:04', 1, '2026-01-21 06:18:24', 0, NULL, 1),
(28175, 'S Vignesh', '6', '9710170582', '', 'vickydonour38@gmail.com', '1998-02-04', 27, '2', '1', 'Reena c', 'Salaried', 50000.00, 1, 35000.00, 45000.00, '2/284, 2nd block mogappair west chennai 37', '2/284, 2nd block mogappair west chennai 37', '2601210008', '1', '2', 'upload_files/candidate_tracker/77716322_VigneshSResume.pdf', NULL, '1', '2026-01-21', 10, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-01-21 05:44:33', 154, '2026-01-21 04:40:45', 0, NULL, 1),
(28176, 'Karthick', '34', '9751843458', '7397305859', 'karthick143256@gmail.com', '2004-01-07', 22, '2', '2', 'Ezhumalai', 'Farmar', 20.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Chennai,ramaburam', '2601210009', '1', '1', 'upload_files/candidate_tracker/68188032333_karthickresumek.pdf', NULL, '1', '2026-01-21', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-21 06:29:03', 154, '2026-01-21 12:15:37', 0, NULL, 1),
(28177, 'Kiruthiga g', '4', '9150720483', '9940168475', 'kiruthigagganeshbabu@gmail.com', '2000-11-04', 25, '2', '2', 'K.ganesh babu', 'Nil', 16000.00, 1, 16560.00, 25000.00, 'Chennai', 'Chennai', '2601210010', '1', '2', 'upload_files/candidate_tracker/41583137998_CopyofKIRUTHIGAG.pdf', NULL, '1', '2026-01-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-21 06:34:39', 154, '2026-01-21 04:41:50', 0, NULL, 1),
(28178, 'Sneha', '4', '8939483471', '', 'Snehaganesan2021@gmail.com', '2004-01-05', 22, '2', '2', 'Ganesan', 'Cooking master', 20000.00, 2, 14000.00, 15000.00, 'Anna nagar Chennai', 'Anna nagar Chennai', '2601210011', '50', '2', 'upload_files/candidate_tracker/21161957539_downloadfile.PDF', NULL, '3', '2026-01-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-21 06:53:40', 1, '2026-01-21 07:29:24', 0, NULL, 1),
(28179, 'DHANUSH KUMAR R', '6', '9071362042', '', 'DHANUSHKUMAR700@GMAIL.COM', '2002-12-12', 23, '2', '2', 'RAVINDRA KUMAR', 'NOT WORKING', 20000.00, 2, 45000.00, 50000.00, 'Bangalore', 'KALYAN NAGAR', '2601210012', '57', '2', '0', NULL, '1', '2026-01-21', 60, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '1', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-21 07:14:02', 162, '2026-01-21 01:23:50', 0, NULL, 1),
(28180, 'LOKESH WARAN', '6', '7358342799', '8072246420', 'lk0549485@gmail.com', '2004-05-17', 21, '2', '2', 'P.velmurugan', 'Yes', 3.50, 1, 17.50, 20.00, 'Avadi', 'Avadi', '2601210013', '50', '2', 'upload_files/candidate_tracker/69958390297_Untitleddocument.pdf', NULL, '1', '2026-01-23', 1, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2026-01-21 08:12:12', 159, '2026-01-23 05:13:16', 0, NULL, 1),
(28181, 'Mohammad Althaf Sardar', '6', '9092601939', '', 'itsalthaf019@gmail.com', '2001-09-19', 24, '2', '2', 'Sardar', 'Tailor', 15000.00, 0, 15000.00, 30000.00, 'Pallavaram', 'Pallavaram', '2601210014', '1', '2', 'upload_files/candidate_tracker/46701489885_MohammedalthafResume.pdf', NULL, '1', '2026-01-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-21 12:30:53', 154, '2026-01-22 12:35:15', 0, NULL, 1),
(28182, '', '0', '9551425918', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601210015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-21 12:42:07', 0, NULL, 0, NULL, 1),
(28183, 'H NARESH', '6', '9361350598', '9551425917', 'nareshjesvin@gmail.com', '1996-01-22', 29, '2', '2', 'Parents', 'Private limited Employee', 22000.00, 1, 22000.00, 27000.00, 'Chennai', 'Chennai', '2601210016', '1', '2', 'upload_files/candidate_tracker/55593060495_LatestResume2.doc', NULL, '1', '2026-01-22', 5, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-21 01:03:21', 154, '2026-01-22 12:32:33', 0, NULL, 1),
(28184, 'vaitheeswari. p', '6', '7810057638', '9176245053', 'vaitheevaitheeshwari4@gmail.com', '2003-10-16', 22, '2', '2', 'perumal. d', 'wilding work', 100000.00, 1, 20000.00, 25000.00, 'poonamalee', 'saligramam', '2601210017', '1', '2', 'upload_files/candidate_tracker/66865396712_VaitheeshwariPResumeV34compressed.pdf', NULL, '1', '2026-01-22', 0, '', '3', '59', '2026-01-27', 230400.00, '', '3', '2026-04-30', '1', 'Communicaiton Ok have exp but no a relevant one final round interview by Kazeem sir need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55645', '5151', '2026-01-27', 1, '2026-01-21 04:19:50', 60, '2026-01-24 07:17:52', 0, NULL, 1),
(28185, 'Kasthuri Muruganandam', '4', '9786473674', '9360859523', 'karthikkasthuri0@gmail.com', '2001-09-12', 24, '2', '1', 'Karthikeyan', 'Welder', 25000.00, 2, 0.00, 16000.00, 'Thanjavur', 'Thanjavur', '2601220001', '1', '2', 'upload_files/candidate_tracker/61175100291_DOC20250727WA0000..pdf', NULL, '1', '2026-01-22', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-22 03:46:59', 154, '2026-01-22 11:48:35', 0, NULL, 1),
(28186, 'Bakkiasri P', '31', '6383597783', '9994822791', 'bakkiasri2001@gmail.com', '2001-06-30', 24, '2', '2', 'Pandi Gopal', 'Coolie', 18000.00, 1, 0.00, 180000.00, 'Pudhu thamaraipatti,Madurai-625107', 'Anna nagar,Chennai-600101', '2601220002', '1', '1', 'upload_files/candidate_tracker/34265834551_BAKKIASRI.pdf', NULL, '1', '2026-01-22', 0, '', '3', '59', '2026-02-09', 144000.00, '', '1', '1970-01-01', '2', 'Freshr for OT Temrs ad conditions applies', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '2026-02-09', 1, '2026-01-22 04:43:03', 154, '2026-03-02 10:41:26', 0, NULL, 1),
(28187, '', '0', '6379100359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601220003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-22 04:57:46', 0, NULL, 0, NULL, 1),
(28188, 'Hemanth Kumar R', '13', '8925137023', '', 'hemanthkumarcp7441@gmail.com', '2003-11-15', 22, '3', '2', 'Raj Kumar S', 'Business', 500000.00, 0, 0.00, 150000.00, 'Chennai', 'Chennai', '2601220004', '', '1', 'upload_files/candidate_tracker/23428101778_resume.pdf', NULL, '1', '2026-01-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-22 04:59:24', 1, '2026-01-22 05:24:57', 0, NULL, 1),
(28189, 'A.mohammed althaf', '6', '8610287757', '8015579245', 'mohammedalthaf7442@gmail.com', '2004-10-10', 21, '1', '2', 'Abdul Jabbar', 'Bcom general', 15000.00, 2, 0.00, 17000.00, 'Venus Perambur', 'Venus Perambur', '2601220005', '', '1', 'upload_files/candidate_tracker/20545288316_CV202506081308068.pdf', NULL, '1', '2026-01-22', 0, 'C99226', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2026-01-22 06:00:56', 154, '2026-01-22 02:33:55', 0, NULL, 1),
(28190, 'waqar ahmed khan', '6', '9940347417', '6380400784', 'nwaqarak24@gmail.com', '2002-05-25', 23, '1', '2', 'naushath ahmed khan', 'auto driver', 19000.00, 2, 16000.00, 18000.00, 'perambur venus', 'perambur', '2601220006', '', '2', 'upload_files/candidate_tracker/73016510344_Newresume.pdf', NULL, '1', '2026-01-22', 1, 'c99226', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication skill ad speaking skill all ok , very poor family backround , very work need person , so try for 7 days training period , exp salary is 17 to 18 k ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2026-01-22 06:08:20', 154, '2026-01-22 01:30:51', 0, NULL, 1),
(28191, 'Vishwa v', '13', '9092662806', '9789873169', 'Vishwa04.v@gmail.com', '2004-11-04', 21, '3', '2', 'Vijay', 'Farmer', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2601220007', '', '1', 'upload_files/candidate_tracker/24779963342_VishwaResumeUpdated.pdf', NULL, '1', '2026-01-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-22 06:08:33', 154, '2026-01-22 02:58:28', 0, NULL, 1),
(28192, '', '0', '9344952240', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601220008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-22 06:11:47', 0, NULL, 0, NULL, 1),
(28193, 'VISHNU SHANKAR R H', '2', '9176017127', '', 'rhvishnushankar@gmail.com', '2004-12-24', 21, '3', '2', 'vishnu shankar', 'business', 32000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2601220009', '', '1', 'upload_files/candidate_tracker/24456872370_VishnuShankarMERNResume.pdf', NULL, '1', '2026-01-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-22 06:11:50', 154, '2026-01-22 02:57:40', 0, NULL, 1),
(28194, 'Mohammed Jarsith J', '13', '9344952249', '', 'mohammadjarsith@gmail.com', '2011-01-22', 15, '3', '2', 'JAHABARSADIQ', 'Business', 30000.00, 1, 0.00, 200000.00, 'Mannargudi', 'Mannargudi', '2601220010', '', '1', 'upload_files/candidate_tracker/84786224572_SISTMCAMCA44510038MOHAMMADJARSITH1.pdf', NULL, '1', '2026-01-22', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-22 06:12:42', 154, '2026-01-22 02:59:42', 0, NULL, 1),
(28195, 'Kaseelan A', '22', '9840142854', '9551645737', 'kaseelankavi@gmail.com', '2000-04-24', 25, '3', '2', 'Arumugam M', 'Daily vacanger', 10000.00, 3, 20000.00, 30000.00, 'New colony,C.Meyyur,Thiruvennainallur, Villupuram', 'Alayamman Kovil Street Teynampet', '2601220011', '', '2', 'upload_files/candidate_tracker/28902847482_KaseelanAResumeweb1.pdf', NULL, '1', '2026-01-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-22 06:15:58', 1, '2026-01-22 06:19:49', 0, NULL, 1),
(28196, '', '0', '8722005156', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601220012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-22 06:22:16', 0, NULL, 0, NULL, 1),
(28197, 'roshan kumar p', '13', '7358423594', '7401032226', 'mailtoroshan04@gmail.com', '2002-04-04', 23, '3', '2', 'pradeep kumar r', 'transport accountant', 50000.00, 1, 0.00, 250000.00, 'chennai', 'chennai', '2601220013', '', '1', 'upload_files/candidate_tracker/9343685225_RoshanKumarResume.pdf', NULL, '1', '2026-03-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '2nd round not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-22 06:38:08', 159, '2026-03-04 05:24:04', 0, NULL, 1),
(28198, 'R. CHANDRU', '6', '9940074359', '6383146583', 'abichandru2002@gmail.com', '0202-06-04', 1823, '2', '2', 'Parent', 'Voice process', 84000.00, 2, 17000.00, 20000.00, 'Chennai', 'Chennai', '2601220014', '50', '1', 'upload_files/candidate_tracker/77183645294_R.chandruresume.pdf', NULL, '1', '2026-01-23', 1, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-22 07:35:22', 159, '2026-01-23 01:05:51', 0, NULL, 1),
(28199, 'Mukesh R', '13', '6369408012', '', 'r.mukeshraja5738@gmail.com', '2003-07-18', 22, '4', '2', 'Mariammal.R', 'Organisor', 8000.00, 3, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2601220015', '', '1', 'upload_files/candidate_tracker/32678032482_WhiteSimpleStudentCVResume1.pdf', NULL, '3', '2026-01-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-22 11:44:24', 1, '2026-01-22 12:01:25', 0, NULL, 1),
(28200, 'Sanjay velsamy', '6', '6380797461', '', 'sanjuchoky123@gmail.com', '2001-06-12', 24, '2', '2', 'Velsamy', 'Driver', 40000.00, 1, 0.00, 300000.00, 'Tenkasi', 'Valasaravakkam', '2601220016', '1', '2', 'upload_files/candidate_tracker/68061576159_RESUME01compressed1.pdf', NULL, '2', '2026-01-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-22 01:08:40', 159, '2026-01-23 01:26:01', 0, NULL, 1),
(28201, 'Mithra devi G', '11', '8144534622', '', 'mithrashri2000@gmail.com', '2000-08-29', 25, '2', '2', 'Gunakumar L', 'Retired southern railway technician', 20000.00, 1, 0.00, 20000.00, 'Perambur Chennai', 'Perambur Chennai', '2601220017', '1', '1', 'upload_files/candidate_tracker/45228124275_MithraCv.pdf', NULL, '1', '2026-01-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-22 01:33:17', 154, '2026-01-23 06:12:20', 0, NULL, 1),
(28202, 'susikumar', '4', '6383657696', '', 'suthishk934@gmail.com', '2003-03-17', 22, '2', '2', 'mariappan', 'farmer', 100000.00, 1, 14000.00, 18000.00, 'tirunelveli', 'amana mens pg sandiyappan st kanthanchavadii', '2601230001', '67', '2', 'upload_files/candidate_tracker/30150718495_Susikumarnewresume.pdf', NULL, '1', '2026-01-28', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-23 04:29:24', 1, '2026-01-27 08:08:46', 0, NULL, 1),
(28203, 'Durganandhini G', '4', '9042109048', '', 'durganandhini705@gmail.com', '2004-02-23', 21, '2', '2', 'Gurusamy', 'Mason', 4000.00, 0, 0.00, 14000.00, '79,Ottarur, uthandiyur (post) sathyamangalam', 'Gummidipoondi', '2601230002', '1', '1', 'upload_files/candidate_tracker/5566622081_DURGANANDHINIRESUME51.docx', NULL, '1', '2026-01-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-01-23 05:03:40', 1, '2026-01-23 05:18:16', 0, NULL, 1),
(28204, 'Arulmani', '13', '9942682123', '', 'arulmaniravo@gmail.com', '2004-07-02', 21, '2', '2', 'Alagesan', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Salem', 'Chennai', '2601230003', '1', '1', 'upload_files/candidate_tracker/16428512694_arulmaniresume.pdf', NULL, '1', '2026-01-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'not cleared program test', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-23 05:12:13', 159, '2026-01-23 12:48:34', 0, NULL, 1),
(28205, 'Mohammed Umar', '6', '8939773252', '', 'Mu3331127@gmail.com', '2003-06-10', 22, '2', '2', 'Mohammed yusuf', 'Daily wages', 20000.00, 1, 230000.00, 300000.00, 'Chennai', 'Chennai', '2601230004', '50', '2', 'upload_files/candidate_tracker/39568977670_Umarresume.pdf', NULL, '1', '2026-01-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-23 05:23:22', 159, '2026-01-23 12:41:12', 0, NULL, 1),
(28206, 'Indhuja', '6', '9840905065', '7010722533', 'indhujaatarah26@gmail.com', '2002-02-26', 23, '2', '2', 'Arumugam.G', 'Self employed', 400000.00, 2, 22000.00, 28000.00, 'Chennai', 'Chennai', '2601230005', '57', '2', 'upload_files/candidate_tracker/94980487051_IndhujaCVUP.pdf', NULL, '1', '2026-01-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-23 05:31:15', 159, '2026-01-23 12:29:49', 0, NULL, 1),
(28207, 'Balaji K', '4', '8925353515', '9361107818', 'k71076061@gmail.com', '2001-05-10', 24, '2', '2', 'Karuna karan', 'Auto driver', 30000.00, 1, 21000.00, 21000.00, 'Villivakkam Chennai', 'Villivakkam Chennai', '2601230006', '1', '2', 'upload_files/candidate_tracker/18217910372_890554a03ef64fb08ac633a87bf3e828.pdf', NULL, '1', '2026-01-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-23 05:31:53', 159, '2026-01-23 12:39:38', 0, NULL, 1),
(28208, 'Dhamodharan', '6', '8189829521', '', 'Dhamodharandharan14@gmail.com', '2001-11-14', 24, '2', '2', 'Kamaraj A', 'Daily wages', 15000.00, 1, 22000.00, 27000.00, 'Ayanavaram', 'Ayanavaram', '2601230007', '50', '2', 'upload_files/candidate_tracker/13240223569_HDFCBANKpdfgear.com.pdf', NULL, '1', '2026-01-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-23 06:12:06', 159, '2026-01-23 02:43:50', 0, NULL, 1),
(28209, 'NANDINAYUNI MANASA', '6', '9381676599', '9573816955', 'chakri12199@gmail.com', '2006-12-03', 19, '2', '2', 'Anuradha', 'Farmer', 15000.00, 2, 18.00, 20.00, 'Madhanapali', 'Mahadeshwara nagar', '2601230008', '1', '2', 'upload_files/candidate_tracker/39293336034_manasa.pdf', NULL, '1', '2026-01-23', 0, '', '3', '59', '2026-01-28', 240000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in 2 companies for a months basis no document proof based on manager recommendation we have given', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55555', '5151', '2026-01-28', 1, '2026-01-23 06:16:12', 60, '2026-01-28 11:02:26', 0, NULL, 1),
(28210, 'AADHIVISHNU', '13', '8428418708', '', 'aadhivishnu43@gmail.com', '2004-03-04', 21, '2', '2', 'ATHIYAPPAN', 'Farmer', 12000.00, 2, 0.00, 10000.00, 'Pudukkottai', 'Chennai', '2601230009', '1', '1', 'upload_files/candidate_tracker/10276867133_AAADHIVISHNUJavaFullStackDeveloper.pdf', NULL, '1', '2026-01-23', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-23 06:20:35', 159, '2026-01-23 12:07:47', 0, NULL, 1),
(28211, 'Bharkavi Barathiraja', '4', '9944763414', '8344624910', 'bharkavikbr@gmail.com', '1999-04-06', 26, '2', '2', 'Barathiraja', 'Business', 70000.00, 1, 0.00, 25000.00, 'Salem', 'Ekkatuthangal', '2601230010', '50', '2', 'upload_files/candidate_tracker/30296634024_Bharkavi1.pdf', NULL, '1', '2026-01-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-23 08:27:59', 1, '2026-01-23 08:32:33', 0, NULL, 1),
(28212, 'Prakash A', '4', '9360456578', '', 'prakashback001@gmail.com', '2002-06-05', 23, '5', '2', 'Chitra', 'Agriculture', 8000.00, 2, 0.00, 18000.00, 'Thiruvallur', 'Thiruvallur', '2601230011', '', '2', 'upload_files/candidate_tracker/65017609088_Prakash.A20resume.pdf', NULL, '1', '2026-01-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-23 12:01:44', 1, '2026-01-23 12:07:45', 0, NULL, 1),
(28213, 'sanjay', '6', '9176992308', '', 'dharvinjessy@gmail.com', '2002-08-23', 23, '2', '2', 'velayudham.s', 'wages', 20000.00, 2, 18.00, 20.00, 'pulianthope', 'pulianthope', '2601240001', '1', '2', 'upload_files/candidate_tracker/89009980442_CvSanjayv.pdf', NULL, '3', '2026-01-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-01-24 06:44:24', 1, '2026-01-24 07:02:05', 0, NULL, 1),
(28214, 'Jenifer.B', '6', '7904154121', '9941998816', 'jenijenifer79041@gmail.com', '2002-07-14', 23, '2', '2', 'M.Berna', 'Coolie', 40000.00, 1, 18000.00, 20000.00, 'Aavur muthaiah street,new Washermanpet ch_81', 'Aavur muthaiah street, new Washermanpet ch_81', '2601240002', '1', '2', 'upload_files/candidate_tracker/31611137583_JENIFER.B.docx', NULL, '2', '2026-01-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was good at communication very confident and have prior work experience in voice process and interested in sales for salary we can suggest 17k-18k will join by feb 1st week', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2026-01-24 06:52:49', 154, '2026-01-28 07:22:53', 0, NULL, 1),
(28215, 'GOPINATH MANI', '33', '7548871206', '7639369919', 'gopin8327@gmail.com', '1999-06-09', 26, '2', '2', 'Mani', 'Driver', 40000.00, 1, 18000.00, 25000.00, 'Krishnagiri', 'Anna nagar', '2601240003', '1', '2', 'upload_files/candidate_tracker/1165178954_Gopinath20252.pdf', NULL, '1', '2026-01-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-24 07:07:12', 159, '2026-01-24 03:12:15', 0, NULL, 1),
(28216, 'Sakthivel K', '4', '8438315240', '6374443039', 'chansakthi224@gmail.com', '2005-04-22', 20, '2', '2', 'Geetha lakshmi v', 'House wife', 30000.00, 1, 15000.00, 20000.00, 'Porur', 'Porur', '2601240004', '1', '2', 'upload_files/candidate_tracker/74557690165_SAKTHIVELKhealthclaims.pdf', NULL, '1', '2026-01-27', 30, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'need only non voice', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-01-24 07:12:50', 154, '2026-01-27 03:04:15', 0, NULL, 1),
(28217, 'saranya', '6', '7338857566', '8807461568', 'saranyakalaimani20@gmail.com', '2001-12-18', 24, '2', '2', 'parent', 'business', 20000.00, 1, 0.00, 25000.00, 'perambur', 'perambur', '2601240005', '50', '1', 'upload_files/candidate_tracker/55670475025_saranyatemplateresume.pdf', NULL, '1', '2026-01-28', 0, '', '3', '59', '2026-02-02', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok 5050 seems to be doubtful holding an offer with other profile too need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '2026-02-02', 1, '2026-01-24 07:19:29', 60, '2026-01-30 07:38:26', 0, NULL, 1),
(28218, 'Aathi S', '13', '9361842720', '7845442229', 'aathisiva6@gmail.com', '2000-08-30', 25, '5', '2', 'Siva', 'Driver', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2601240006', '', '1', 'upload_files/candidate_tracker/56670352618_Aathi.S.pdf', NULL, '1', '2026-01-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-24 09:14:19', 1, '2026-01-24 09:31:27', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28219, 'Anusha Rajagopal', '4', '8248513647', '', 'anu400872@gmail.com', '2000-10-02', 25, '2', '2', 'Rajagopal', 'Sub inspector of police retired', 20000.00, 2, 10000.00, 30000.00, 'Thanjavur', 'Thanjavur', '2601240007', '1', '2', 'upload_files/candidate_tracker/29711967699_AnushaResumeSoftwareDeveloper.pdf', NULL, '1', '2026-01-27', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-24 09:31:15', 154, '2026-01-27 01:38:44', 0, NULL, 1),
(28220, 'kanagavalli.t', '4', '9677033436', '8073994290', 'kanagavallit32@gmail.com', '2003-05-06', 22, '2', '2', 'thirumurugan.k.k', 'business man', 1000000.00, 1, 0.00, 30.00, 'west jones road west saidapet chennai', 'west jones road west saidapet chennai', '2601240008', '1', '1', 'upload_files/candidate_tracker/76745198822_FresherResume.pdf', NULL, '1', '2026-01-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-24 09:53:01', 154, '2026-01-27 02:58:48', 0, NULL, 1),
(28221, 'Mahadevi', '6', '9344703233', '', 'mmahadevi.tnj@gmail.com', '2001-10-28', 24, '2', '2', 'Mahalingam', 'Farmer', 20000.00, 2, 15000.00, 15000.00, 'Pudhukottai', 'Thanjavur', '2601240009', '1', '2', 'upload_files/candidate_tracker/12674225491_DOC20251029WA0003..pdf', NULL, '1', '2026-01-27', 10, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is suitable for the profile native gandarvakottai around 25 km travel by bus. worked as a accountant in trichy for 1 year due to travel issue relieved from job and joined in varanda race for banking exam for 3 months and pursuing government exam for past 10 months, father farmer, brother xxamp sister are studying . expected 15k salary, have laptop immediate joining. kindly cross check  once and confirm', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CI144', '5151', '1970-01-01', 1, '2026-01-24 11:12:07', 154, '2026-01-27 01:38:11', 0, NULL, 1),
(28222, 'Rajkumar S', '4', '8903022872', '', 'rajsivadoss8@gmail.com', '2005-05-22', 20, '2', '2', 'Sivadoss M', 'Government Employee', 28000.00, 1, 13000.00, 16000.00, 'Thiruvarur', 'Thiruvarur', '2601240010', '1', '2', 'upload_files/candidate_tracker/89240539689_IMG20260108WA0003.PDF', NULL, '1', '2026-01-27', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-24 11:15:01', 154, '2026-01-27 10:17:34', 0, NULL, 1),
(28223, '', '0', '6381846574', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601240011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-24 11:37:19', 0, NULL, 0, NULL, 1),
(28224, '2379 4051 6444', '33', '8838134261', '', 'vijai.in12345@gmail.com', '2006-03-30', 19, '2', '2', 'Kirubakaran. A', 'Private company employee', 50000.00, 1, 0.00, 300000.00, 'Ambuttur Chennai', 'Ambuttur Chennai', '2601240012', '1', '1', 'upload_files/candidate_tracker/42861377722_VijaiResume.pdf', NULL, '1', '2026-01-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-01-24 01:21:25', 1, '2026-01-24 01:33:59', 0, NULL, 1),
(28225, 'B Joseph Ashirvadham', '4', '9677293221', '7339566735', 'ashirvadhamj@gmail.com', '2004-07-30', 21, '2', '2', 'Benjamin Lawrence', '10th', 240000.00, 1, 0.00, 18000.00, '3/65, mettu street St Thomas mount Chennai 600016', '3/65, mettu street St Thomas mount Chennai 600016', '2601240013', '1', '1', 'upload_files/candidate_tracker/59698942322_CV202412241122029.pdf', NULL, '1', '2026-01-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-01-24 01:29:35', 1, '2026-01-24 01:36:09', 0, NULL, 1),
(28226, '2379 4051 6444', '33', '8838134262', '', 'vijai.in12345@gmail.com', '2006-03-30', 19, '2', '2', 'Kirubakaran. A', 'Private company employee', 50000.00, 0, 0.00, 300000.00, 'Ambuttur Chennai', 'Ambuttur Chennai', '2601240014', '1', '1', 'upload_files/candidate_tracker/1173401747_VijaiResume.pdf', NULL, '1', '2026-01-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-01-24 01:37:44', 1, '2026-01-27 03:46:44', 0, NULL, 1),
(28227, 'Kaviya G', '6', '7010668624', '9600093531', 'kaviya2332002@gmail.com', '2002-03-23', 23, '2', '1', 'Bharanidharan', 'Business', 100000.00, 2, 0.00, 20000.00, 'Perambur', 'Perambur', '2601240015', '50', '1', 'upload_files/candidate_tracker/50912110164_1000983920.pdf', NULL, '1', '2026-01-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communicationa and performance is not good also she is married and have 7 month baby.Sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2026-01-24 03:11:15', 154, '2026-01-27 04:05:43', 0, NULL, 1),
(28228, '', '0', '9003569362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-27 03:57:57', 0, NULL, 0, NULL, 1),
(28229, 'Tamilselvan R', '6', '7305769699', '8939170234', 'rtamilselvan525@gmail.com', '2005-10-05', 20, '2', '2', 'Ramalingam', 'Entrepreneur', 100000.00, 1, 0.00, 20000.00, 'West Mambalam, chennai - 600033', 'West mambalam chennai - 600033', '2601270002', '1', '1', 'upload_files/candidate_tracker/82491989550_downloadresume.pdf', NULL, '1', '2026-01-27', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is poor and no idea about which role to choose and not opening up', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55882', '55566', '1970-01-01', 1, '2026-01-27 04:17:16', 154, '2026-01-27 01:22:00', 0, NULL, 1),
(28230, 'SHARANABASAVA KARANAM', '5', '6360695431', '8197925012', 'sharan.karz123@gmail.com', '1993-05-13', 32, '2', '2', 'Lingappa karanam', 'Govt job', 50000.00, 2, 25800.00, 30000.00, 'Marthalli bridge', 'Marthalli bridge', '2601270003', '57', '2', 'upload_files/candidate_tracker/24847571814_resume.sharan.docx', NULL, '1', '2026-01-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-27 04:23:33', 162, '2026-01-27 10:22:45', 0, NULL, 1),
(28231, 'MOHAMED ARSATH', '6', '7708691655', '', 'arszth13@gmail.com', '2002-12-30', 23, '2', '2', 'Kathar nizam', 'Daily vages', 60000.00, 2, 0.00, 250000.00, 'Thiruvarur', 'Thiruvarur', '2601270004', '1', '1', 'upload_files/candidate_tracker/9281680751_Resume2202601271017.pdf', NULL, '1', '2026-01-27', 0, '', '3', '59', '2026-01-29', 180000.00, '', '3', '2026-02-09', '2', 'Communication Ok fresher for telecalling sales insurance need to travel for more than an hour let us check', '5', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CI144', '5151', '2026-01-29', 1, '2026-01-27 04:34:44', 154, '2026-01-29 10:23:43', 0, NULL, 1),
(28232, 'Dinesh', '13', '7339570870', '', 'dinesh.lakshumanan@gmail.com', '2001-05-01', 24, '2', '2', 'Lakshmanan', 'Driver', 15000.00, 0, 0.00, 20000.00, 'Chennai', 'Velachery Chennai', '2601270005', '1', '2', 'upload_files/candidate_tracker/78267613804_Dinesh.pdf', NULL, '1', '2026-01-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-27 04:45:17', 154, '2026-01-27 02:44:45', 0, NULL, 1),
(28233, 'Antony Jaya Surya', '6', '8870664014', '7708228446', 'antonysurya2082000@gmail.com', '2011-01-27', 0, '2', '2', 'John peter', 'Working in hotel', 10000.00, 2, 20000.00, 2000025000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2601270006', '50', '2', 'upload_files/candidate_tracker/89273611487_DOC20250304WA0000..pdf', NULL, '1', '2026-01-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-27 04:48:48', 159, '2026-01-29 04:34:35', 0, NULL, 1),
(28234, 'DHARANI S', '13', '9360139784', '8122577023', 'sdharani700@gmail.com', '2004-12-19', 21, '2', '2', 'SUBBIAH G', 'Security', 25000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Tirupur', '2601270007', '1', '1', 'upload_files/candidate_tracker/89334889320_resumecafs.pdf', NULL, '1', '2026-01-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-27 04:58:31', 154, '2026-01-27 02:45:26', 0, NULL, 1),
(28235, 'Lidiya Paul arul samy', '6', '8668192264', '9345007467', 'lidiyagunapaularulsamy@gmail.com', '2002-08-01', 23, '2', '2', 'M.Paul Arul Samy', 'TNCSC-Vellore', 400000.00, 2, 13000.00, 14000.00, 'Thanjavur', 'Thanjavur', '2601270008', '1', '2', 'upload_files/candidate_tracker/8052040367_resume1.pdf', NULL, '1', '2026-01-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is suitable for profile completed nursing in thanjavur and worked in a front office executive in coimbatore for 2 years and relieved joined in a delta super e commerce site company, so company shutdown so she relieved with 10 months experience father civil service with 25k salary, sister studying, elder sister next month marriage, so kindly cross check in this parameter for leave extention. expected salary 13k have laptop. 5km travel from home. kindly cross check once and confirm', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CI144', '5151', '1970-01-01', 1, '2026-01-27 05:03:03', 154, '2026-01-27 01:37:04', 0, NULL, 1),
(28236, 'Aswini', '23', '6381075901', '', 'sraswini742@gmail.com', '2003-12-07', 22, '2', '2', 'Sivalingam', 'Farmer', 10000.00, 2, 0.00, 300000.00, 'Villupuram', 'Villupuram', '2601270009', '1', '1', 'upload_files/candidate_tracker/70899623959_Ashuresume231compressed.pdf', NULL, '1', '2026-01-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-27 05:05:19', 154, '2026-01-27 02:44:03', 0, NULL, 1),
(28237, 'J. Monicka shree', '4', '8531839258', '9943025989', 'Shreemonickashree@gmail.com', '2004-04-03', 21, '2', '2', 'S. Jayaraman', 'Driver', 98000.00, 0, 0.00, 19000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2601270010', '1', '1', 'upload_files/candidate_tracker/66260140482_resume1.pdf', NULL, '1', '2026-01-27', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-27 05:37:15', 154, '2026-01-27 01:39:13', 0, NULL, 1),
(28238, 'KIRUBANITHI KRISHNAMOORTHY', '13', '6369275558', '8870038107', 'kirubanithi780@gmail.com', '2004-06-20', 21, '2', '2', 'Krishnamoorthy', 'Barber shop', 15000.00, 1, 0.00, 300000.00, 'Mayiladuthurai', 'Velachery', '2601270011', '1', '1', 'upload_files/candidate_tracker/40775706280_KirubanithiK1.pdf', NULL, '1', '2026-01-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-27 05:38:18', 154, '2026-01-27 03:08:48', 0, NULL, 1),
(28239, 'Lavanya anandan', '4', '8870634075', '8870586325', 'lavanyaanandhan56@gmail.com', '2005-05-08', 20, '2', '2', 'Anandhan', 'Farmer', 95000.00, 1, 0.00, 15000.00, 'Thiruvaiyaru, thanjavur', 'Thiruvaiyaru', '2601270012', '1', '1', 'upload_files/candidate_tracker/8000511751_RESUMELAVANYA.A1.pdf', NULL, '1', '2026-01-27', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-27 05:40:23', 154, '2026-01-27 01:39:38', 0, NULL, 1),
(28240, 'jairus amram', '4', '9543333682', '8838379712', 'jairusamram7@gmail.com', '2001-09-15', 24, '2', '2', 'helan chellathai', 'tpa dep in hospital', 30.00, 1, 18500.00, 25000.00, 'jawahar road ramana nagar Perambur Chennai 11', 'Jawahar Road, Ramana Nagar, Perambur Chennai', '2601270013', '1', '2', 'upload_files/candidate_tracker/93768664024_jairusamram7gmail.comCV.pdf', NULL, '1', '2026-01-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-27 05:42:59', 154, '2026-01-27 04:04:11', 0, NULL, 1),
(28241, 'R subash', '4', '8939558905', '8939558908', 'subshvels@gmail.com', '2004-09-02', 21, '2', '2', 'Dhanalakshmi', 'Catering business', 100000.00, 1, 0.00, 17000.18, 'Thiruvamiyur', 'Avvai nagar ganapathy 2 nd street', '2601270014', '1', '1', 'upload_files/candidate_tracker/47267551252_1769085615957.pdf', NULL, '1', '2026-01-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-27 05:47:57', 159, '2026-03-03 10:31:36', 0, NULL, 1),
(28242, 'praveen J', '14', '9952966593', '', 'pj329439@gmail.com', '2004-05-08', 21, '3', '2', 'Leema J', 'House keeping', 30000.00, 1, 0.00, 10.00, 'Kattankulathur', 'Potheri', '2601270015', '', '1', 'upload_files/candidate_tracker/96029128839_Praveen.JFlutter.pdf', NULL, '1', '2026-01-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-27 06:11:36', 154, '2026-01-27 12:06:21', 0, NULL, 1),
(28243, 'Swathi S', '4', '8015447935', '9361888036', 'swathiswathi17088@gmail.com', '2005-11-01', 20, '2', '2', 'Senthil', 'Farmer', 70000.00, 1, 0.00, 16000.00, 'Cuddalore', 'Cuddalore', '2601270016', '50', '1', 'upload_files/candidate_tracker/82530793361_swathiresume.pdf', NULL, '1', '2026-01-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-27 06:18:36', 1, '2026-01-27 06:21:58', 0, NULL, 1),
(28244, 'Imran u', '6', '8056508597', '', 'massimran360@gmail.com', '2002-07-17', 23, '2', '2', 'Shakeela', 'House wife', 20000.00, 4, 18000.00, 20000.00, 'No,11 salamath nagar', 'T nagar', '2601270017', '50', '2', 'upload_files/candidate_tracker/80846646929_imran.uresume.pdf', NULL, '1', '2026-01-28', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-01-27 06:28:56', 154, '2026-01-28 03:46:01', 0, NULL, 1),
(28245, 'Nithya', '6', '7022186710', '', 'nithyakiran25nk@gmail.com', '2002-10-10', 23, '1', '1', 'Kiran', 'Salaried', 50000.00, 3, 18000.00, 22000.00, 'Bengaluru', 'Bengaluru', '2601270018', '', '2', 'upload_files/candidate_tracker/11077929226_DocScanner27Jan20261238pm.pdf', NULL, '1', '2026-01-27', 0, '55899', '3', '59', '2026-04-13', 264000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in insurance sales priya Team earlier in previous one', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '2', '3', '', '', '', '', '55899', 'C99176', '2026-04-13', 1, '2026-01-27 07:00:56', 60, '2026-04-13 10:04:24', 0, NULL, 1),
(28246, 'Karthikeyan S', '4', '9345827491', '', 'karthi250603@gmail.com', '2003-06-25', 22, '2', '2', 'Selvumarugan', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Pudukkottai', 'Pudukkottai', '2601270019', '50', '1', 'upload_files/candidate_tracker/92976276324_DOC20260127WA0015..pdf', NULL, '2', '2026-01-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-27 09:05:21', 1, '2026-01-27 09:32:35', 0, NULL, 1),
(28247, 'karpagavalli k', '4', '6374355010', '9566763281', 'karpagavallikcse@gmail.com', '2011-01-27', 0, '2', '2', 'devibala s', 'dailywages', 10000.00, 1, 0.00, 18000.00, 'madurai', 'chennai', '2601270020', '50', '1', 'upload_files/candidate_tracker/59334171303_KarpagavalliResumeupto8th.pdf', NULL, '3', '2026-01-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-27 10:24:06', 1, '2026-01-27 10:27:37', 0, NULL, 1),
(28248, 'Kamalesan S', '22', '8270439646', '6382995913', 'kamalesh2k004@gmail.com', '2004-04-30', 21, '2', '2', 'Selvam K', 'Job seeker', 45000.00, 1, 0.00, 25000.00, 'Chinnamanur,Theni district', 'Chrompet, Chennai', '2601270021', '1', '1', 'upload_files/candidate_tracker/48786007439_ImagetoPDF2026012722.14.22.pdf', NULL, '1', '2026-02-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', '0', '0', NULL, 1, '2026-01-27 11:33:23', 1, '2026-01-27 04:51:09', 0, NULL, 1),
(28249, '', '0', '8148253495', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601270022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-27 11:36:00', 0, NULL, 0, NULL, 1),
(28250, '', '0', '7305337964', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601270023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-27 12:27:13', 0, NULL, 0, NULL, 1),
(28251, 'krishnamoorthi t', '6', '6382031935', '', 'krishnamoorthi22km@gmail.com', '1999-04-20', 26, '2', '2', 'thailappan', 'building contractor', 30000.00, 1, 0.00, 20000.00, 'erode', 'chennai', '2601270024', '1', '1', 'upload_files/candidate_tracker/72430940857_KrishnaMoorthiVoiceProcessresume.pdf', NULL, '1', '2026-01-28', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2026-01-27 12:51:06', 154, '2026-01-28 02:43:19', 0, NULL, 1),
(28252, '', '0', '9150566286', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601270025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-27 01:44:43', 0, NULL, 0, NULL, 1),
(28253, 'Sanjay S', '6', '6382093035', '', 'sanjayselvam1611@gmail.com', '2002-11-16', 23, '2', '2', 'Selvakumar R', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2601280001', '1', '1', 'upload_files/candidate_tracker/39657098963_SanjayCV.pdf', NULL, '1', '2026-01-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is suitable for the profile having good communication with objection handling skills, father farmer monthly 25k income brother studying, having 3 months experience in scrum water tech as a publisher for 3 months relieved due to long travel. having laptop nearby 5km from home, expecting salary 12 - 13k ,willing to join on feb 1st, 1 year after may be go to foreign due to fam situation. kindly cross check and verify. ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CI144', '5151', '1970-01-01', 1, '2026-01-28 02:35:40', 154, '2026-01-28 01:26:36', 0, NULL, 1),
(28254, '', '0', '7868816288', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601280002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-28 04:22:02', 0, NULL, 0, NULL, 1),
(28255, 'K.kirthiga', '4', '7868826288', '9500937689', 'Kkirthiga56@gmail.com', '2001-10-08', 24, '2', '2', 'G.kulandai velu', 'School Security', 50000.00, 2, 0.00, 10000.00, 'Pookkara Pudhu Vastha Street', 'Pookkara Pudhu Vastha', '2601280003', '1', '1', 'upload_files/candidate_tracker/28670156372_DOC20251221WA0005.pdf', NULL, '1', '2026-01-28', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR TEAM', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-28 04:23:52', 154, '2026-01-28 11:26:32', 0, NULL, 1),
(28256, '', '0', '9361574459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601280004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-28 04:44:11', 0, NULL, 0, NULL, 1),
(28257, 'Chandru Elumalai', '13', '9498849413', '', 'chandrue0603@gmail.com', '2003-06-24', 22, '5', '2', 'Elumalai R', 'Electrician', 25000.00, 3, 0.00, 300000.00, 'Vellore', 'Chennai', '2601280005', '', '1', 'upload_files/candidate_tracker/57803896006_ResumeChandruE.pdf', NULL, '1', '2026-01-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round 2 not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-28 05:33:58', 154, '2026-01-28 03:47:26', 0, NULL, 1),
(28258, 'Jai vanthi', '4', '8680854204', '', 'jaivanthisrivanthi@gmail.com', '2002-07-14', 23, '2', '2', 'N Jaishankar', 'Carpenter', 20000.00, 1, 18000.00, 20000.00, 'Kumbakonam', 'Kumbakonam', '2601280006', '1', '2', 'upload_files/candidate_tracker/73147246831_JaivanthiJ.pdf', NULL, '1', '2026-01-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile completed msc in 2025 in coimbatore..joined in first source night shift 20k salary work from home, currently project closed so she layed off...and change other process with same salary she is not willing to continue and looking for job in local...mature and talk active and professional to have laptop....father carpenter ...sister software developer with 15k salary....the only issue travel from dharasuram kumbakonam...kindly cross check in this parameter....and have  previous company procedures so need 2 week to join....expected 15 to 20k...', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-28 05:46:12', 154, '2026-01-29 11:56:30', 0, NULL, 1),
(28259, 'Anitha', '6', '9742380574', '', 'anithakowshik66@gmail.com', '1995-04-25', 30, '1', '2', 'Jayamma', 'Salaried', 40000.00, 1, 15.00, 20.00, 'Bangalore', 'Bangalore', '2601280007', '', '2', 'upload_files/candidate_tracker/93072865569_ANITHARESUME1.pdf', NULL, '1', '2026-01-28', 0, '55899', '3', '59', '2026-01-29', 240000.00, '', '3', '2026-03-31', '2', 'Communication Ok have Exp in Vizza  internal reference need to check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '2026-01-29', 1, '2026-01-28 05:53:50', 60, '2026-01-29 09:59:47', 0, NULL, 1),
(28260, 'Kavipriyan Murugan', '13', '7397525724', '', 'kavipriyan885@gmail.com', '2003-07-29', 22, '2', '2', 'Renuga devi', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Salem', 'Chennai', '2601280008', '1', '1', 'upload_files/candidate_tracker/94293915841_KAVIPRIYANQA1.pdf', NULL, '2', '2026-01-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', '0', '0', NULL, 1, '2026-01-28 06:09:36', 1, '2026-01-28 06:24:31', 0, NULL, 1),
(28261, '', '0', '7305546462', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601280009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-28 06:18:46', 0, NULL, 0, NULL, 1),
(28262, 'BASKARAN SHANMUGAM', '13', '7010827871', '', 'baskaran003s@gmail.com', '2003-10-02', 22, '5', '2', 'Shanmugam', 'Farmer', 200000.00, 1, 0.00, 15000.00, 'Vandavasi', 'Velachery', '2601280010', '', '1', 'upload_files/candidate_tracker/6878543701_resume.pdf', NULL, '1', '2026-01-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'round 2 not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-28 06:32:00', 154, '2026-01-28 03:55:21', 0, NULL, 1),
(28263, 'Vanitha T', '6', '9791655805', '9003758314', 'vanithavaira93@gmail.com', '1993-04-12', 32, '2', '1', 'Vairamuthuraj A', 'IT', 60000.00, 1, 0.00, 20000.00, 'Sivakasi', 'Chennai', '2601280011', '1', '1', 'upload_files/candidate_tracker/47159925485_VanithaT.docx', NULL, '1', '2026-01-28', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2026-01-28 06:33:33', 154, '2026-01-28 03:50:25', 0, NULL, 1),
(28264, 'Jayashree M', '6', '6381177673', '', 'jayashrees306@gmail.com', '2003-09-10', 22, '2', '2', 'Yamuna M', 'Security women', 17000.00, 1, 16500.00, 17500.00, 'Vysarpadi', 'Vysarpadi', '2601280012', '1', '2', 'upload_files/candidate_tracker/83264373540_resume.doc.pdf', NULL, '1', '2026-01-28', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance i slittle ok.but she is very slow also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-01-28 06:38:25', 154, '2026-01-28 05:49:01', 0, NULL, 1),
(28265, 'Althaf Hussain J', '13', '9094095610', '9840525284', 'althafhussain2k3@gmail.com', '2003-04-03', 22, '3', '2', 'F Jeelan', 'Accountant', 40000.00, 1, 0.00, 18000.00, '4/9,Hameedia Mosque Garden, 1st Street, Arcot Road', 'Saligramam, Chennai', '2601280013', '', '1', 'upload_files/candidate_tracker/35385254584_AlthafHussainJResume2.pdf', NULL, '1', '2026-01-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Round 1 not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-28 06:39:37', 154, '2026-01-28 03:54:24', 0, NULL, 1),
(28266, 'Syed Arif', '5', '8667679903', '9363624911', 'sayeedarif96@gmail.com', '2003-07-03', 22, '2', '2', 'Rahima bee v', 'Home maker', 60000.00, 2, 25000.00, 35000.00, '22, O block , pallakuma Nagar, Chennai - 04', '22, O block , pallakuma Nagar, Chennai - 04', '2601280014', '1', '2', 'upload_files/candidate_tracker/77905851863_resume.pdf', NULL, '1', '2026-01-28', 0, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected by sriram sir', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1018', '', '55735', '55557', '1970-01-01', 1, '2026-01-28 06:41:30', 154, '2026-01-28 04:36:30', 0, NULL, 1),
(28267, '', '0', '7338856577', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601280015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-28 06:44:20', 0, NULL, 0, NULL, 1),
(28268, '', '0', '6383063531', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601280016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-28 06:45:43', 0, NULL, 0, NULL, 1),
(28269, '', '0', '9840525284', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601280017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-28 07:10:16', 0, NULL, 0, NULL, 1),
(28270, 'SivasakthiPandian Ravichandran', '6', '6369196268', '6379538131', 'sivasakthipandian07@gmail.com', '2001-09-23', 24, '2', '2', 'Ravichandran', 'Farmer', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2601280018', '50', '1', 'upload_files/candidate_tracker/69145608957_RESUME.....pdf', NULL, '1', '2026-01-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-28 08:10:36', 154, '2026-01-29 01:09:59', 0, NULL, 1),
(28271, '', '0', '9113992185', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601280019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-28 08:16:41', 0, NULL, 0, NULL, 1),
(28272, 'Yoga Lakshmi', '4', '7358375373', '9176760255', 'Yogalakshmimurali1998@gmail.com', '1998-09-18', 27, '2', '2', 'Murali', 'Driver', 20000.00, 1, 0.00, 16.00, 'Chennai', 'Chennai', '2601280020', '50', '1', 'upload_files/candidate_tracker/58830052528_YogaLakshmi.M22092025085337PM.pdf', NULL, '1', '2026-02-21', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-01-28 09:04:52', 159, '2026-02-20 12:36:57', 0, NULL, 1),
(28273, 'Prema Velautham Pillai', '11', '8838276042', '9442526040', 'premavpremav74@gmail.com', '2002-11-27', 23, '2', '2', 'Velayutham Pillai', 'Driver', 700000.00, 1, 180000.00, 240000.00, 'Mylaudy, Nagercoil', 'Saidapet, Chennai', '2601280021', '1', '2', 'upload_files/candidate_tracker/78992584077_V.PremaResume.pdf1.pdf', NULL, '1', '2026-01-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-28 09:07:52', 154, '2026-01-28 05:50:01', 0, NULL, 1),
(28274, 'abishek', '6', '9600786475', '', 'abisheke2k@gmail.com', '2001-11-27', 24, '2', '2', 'elango', 'farmer', 20000.00, 0, 18500.00, 18000.00, 'coimbatore', 'chennai', '2601280022', '1', '2', 'upload_files/candidate_tracker/43490685699_ABISHEKRESUME2K25.pdf', NULL, '1', '2026-01-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is ok.will check with him in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-01-28 12:57:20', 154, '2026-01-29 01:08:53', 0, NULL, 1),
(28275, 'Bharathidhasan J', '4', '9361887220', '', 'thijos10@gmail.com', '2000-03-10', 26, '2', '2', 'Joseph', 'Unemployed', 10000.00, 1, 0.00, 15000.00, 'Budalur', 'Budalur', '2601280023', '1', '1', 'upload_files/candidate_tracker/83258270882_J.BHARATHIDHASAN.pdf', NULL, '1', '2026-03-17', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-28 01:30:16', 154, '2026-03-17 01:12:02', 0, NULL, 1),
(28276, 'abinaya m', '6', '9080237106', '', 'Abinaya29092004@gmail.com', '2004-09-29', 21, '2', '2', 'manivannan', 'government highe sec school teacher', 50000.00, 0, 0.00, 15000.00, 'cuddalore', 'chennai', '2601280024', '1', '1', 'upload_files/candidate_tracker/43918608627_CV2025050817424384.pdf', NULL, '1', '2026-01-29', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and peerformance little ok.but she is very luxary.let her not handle pressure ,so sustainable is doubt', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-01-28 01:36:09', 154, '2026-01-29 01:07:38', 0, NULL, 1),
(28277, 'Gayathri M', '13', '9042488505', '', 'gayathrimuthu64@gmail.com', '2004-06-16', 21, '2', '2', 'Marimuthu', 'Weaver', 100000.00, 1, 0.00, 2000000.00, 'Vennandur', 'Chennai', '2601280025', '1', '1', 'upload_files/candidate_tracker/31324842724_GAYATHRIMARIMUTHUFlowCVResume20251125.pdf', NULL, '2', '2026-02-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', '0', '0', NULL, 1, '2026-01-28 01:58:40', 1, '2026-01-28 02:01:54', 0, NULL, 1),
(28278, 'Rekha A', '4', '8056057579', '9094645819', 'rekhaashokan1999@gmail.com', '1999-11-07', 26, '2', '1', 'Ashokan', 'Tele sales', 10000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2601280026', '1', '2', 'upload_files/candidate_tracker/21815656350_Resume29012026060526PM.pdf', NULL, '1', '2026-01-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-01-28 02:16:16', 1, '2026-01-30 06:38:02', 0, NULL, 1),
(28279, 'Mohammed Imthiyas', '33', '9884218514', '', 'mohammadimthiyas250@gmail.com', '2001-07-09', 24, '2', '2', 'Maha jabeen', 'House wife', 200000.00, 1, 17500.00, 22000.00, '10D vetrivel street kodungaiyur Chennai -118', '10D vetrivel street kodungaiyur Chennai-118', '2601280027', '1', '2', 'upload_files/candidate_tracker/841615665_MOHAMMEDIMTHIYAS.PDF.pdf', NULL, '1', '2026-01-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '4', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-28 02:32:54', 154, '2026-01-29 05:06:55', 0, NULL, 1),
(28280, 'SIVAKUMAR K', '13', '9342474302', '', 'kumarsiva200426@gmail.com', '2004-08-21', 21, '2', '2', 'S.Kuthalingam,k.Chitra devi', 'Collie', 20000.00, 1, 0.00, 17000.00, 'Rajapalayam', 'Chennai(Ashok pillar)', '2601290001', '1', '1', 'upload_files/candidate_tracker/63490267424_SivakumarResume.pdf', NULL, '1', '2026-01-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round 2 not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-29 04:13:36', 154, '2026-01-29 05:05:15', 0, NULL, 1),
(28281, 'Divya', '5', '8925785886', '', 'dpradeepplkg1@gmail.com', '1999-05-20', 26, '2', '1', 'Seni siga mani', 'Cooli', 20000.00, 1, 18000.00, 21000.00, 'Attipattu', 'Attipattu', '2601290002', '1', '2', 'upload_files/candidate_tracker/24256080348_CV20260129083120.pdf', NULL, '1', '2026-01-30', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55560', '55560', '1970-01-01', 1, '2026-01-29 04:19:39', 159, '2026-01-30 05:37:49', 0, NULL, 1),
(28282, 'Aravindhan Rajendhiran', '6', '8190854231', '8086407348', 'aravinth30102004oct@gmail.com', '2004-10-30', 21, '1', '2', 'Aravinth Rajendhiran', 'tnstc', 60000.00, 2, 0.00, 20000.00, 'namakkal', 'srm near', '2601290003', '', '1', 'upload_files/candidate_tracker/55007310786_AravindhanBankingResume.pdf', NULL, '1', '2026-01-29', 0, 'CAFSUSR01220', '3', '59', '2026-02-05', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for our roles internal team reference need to check in training only', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2026-02-05', 1, '2026-01-29 04:31:56', 60, '2026-02-04 07:18:18', 0, NULL, 1),
(28283, 'Tejyasri.P', '6', '7010294942', '8939545862', 'theja92005@gmail.com', '2005-09-09', 20, '2', '2', 'Pandiyan.B', 'Bhansali chemical pvt ltd', 25000.00, 1, 0.00, 18000.00, 'Minjur', 'Minjur', '2601290004', '1', '1', 'upload_files/candidate_tracker/58981694500_ThejuCV.pdf', NULL, '1', '2026-01-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-29 05:08:07', 154, '2026-01-29 11:44:49', 0, NULL, 1),
(28284, 'Sharmila kanagavalli', '4', '9600675493', '', 'sharmi27112001@gmail.com', '2001-07-27', 24, '2', '2', 'Kanagavalli', 'SELF owned', 25000.00, 0, 22000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2601290005', '1', '2', 'upload_files/candidate_tracker/130476979_CV2025122212451395.pdf', NULL, '1', '2026-01-29', 0, '', '3', '59', '2026-02-02', 210000.00, '', '3', '2026-02-10', '1', 'Communication Good Have exp in IDFC process for an year inbetween gap due to opportunities in abroad can be trained in our roles', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2026-02-02', 1, '2026-01-29 05:50:37', 60, '2026-02-02 09:49:34', 0, NULL, 1),
(28285, 'P Mercydyana', '4', '9791745085', '9566404259', 'spmercydyanaspmercydyana@gmail.com', '2004-11-30', 21, '2', '2', 'S Pushparaj', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Udaiyalur', 'Udaiyalur', '2601290006', '1', '1', 'upload_files/candidate_tracker/69717922038_mercyresume1.pdf', NULL, '1', '2026-01-29', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-29 05:53:36', 154, '2026-01-29 12:55:28', 0, NULL, 1),
(28286, '255621840439', '4', '6383802340', '9962161879', 'Vadivujithu@gmail.com', '2002-05-14', 23, '2', '2', 'Parent', 'Telecalling', 20000.00, 0, 20000.00, 25000.00, 'Thiruvottiyur', 'Thousands lights', '2601290007', '50', '2', 'upload_files/candidate_tracker/45731963106_SHANTHIRESUME.pdf', NULL, '1', '2026-02-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-29 05:57:48', 1, '2026-01-29 06:06:20', 0, NULL, 1),
(28287, 'shamim', '4', '6374635614', '9962734412', 'shamimshamim6374@gmail.com', '2000-11-05', 25, '2', '2', 'abdulmajith', 'auto driver', 35.00, 1, 23.00, 25.00, 'chennai', 'chennai', '2601290008', '1', '2', 'upload_files/candidate_tracker/82551956544_ShamimResume2sharr.pdf', NULL, '3', '2026-01-29', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-29 06:23:22', 154, '2026-01-29 01:11:25', 0, NULL, 1),
(28288, 'Ajith S', '13', '8925255315', '8056013196', 'ajithsk6515@gmail.com', '1999-08-18', 26, '2', '2', 'Sankar', 'Building contractor', 30000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2601290009', '1', '1', 'upload_files/candidate_tracker/29453824538_ASP.NETDEVELOPERAJITH11.pdf', NULL, '1', '2026-01-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round 1 not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-29 06:36:48', 154, '2026-01-29 05:08:34', 0, NULL, 1),
(28289, 'LAVANYA R', '4', '8220393752', '8220764782', 'lavajayaraj@gmail.com', '2000-06-01', 25, '2', '2', 'Rajendhran', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2601290010', '1', '1', 'upload_files/candidate_tracker/43016219327_lavanyaresume.pdf', NULL, '1', '2026-01-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-29 07:05:55', 154, '2026-01-30 11:46:10', 0, NULL, 1),
(28290, 'RAJESHKANNAN', '6', '8754511538', '9600121926', 'rajeshkannan608@gmail.com', '1992-12-01', 33, '2', '2', 'Rajeswari', 'Home maker', 30000.00, 1, 280000.00, 380000.00, 'Chennai Kolathur', 'Chennai', '2601290011', '57', '2', 'upload_files/candidate_tracker/53077002100_RAJESHKANNANUpdateNewResume.pdf', NULL, '1', '2026-01-29', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-29 07:17:31', 154, '2026-01-29 04:35:35', 0, NULL, 1),
(28291, 'Mohamed Thasik', '2', '6379112645', '', 'mohamedthasik2004@gmail.com', '2004-12-07', 21, '2', '2', 'Akbar Ali', 'Tea shop employee', 17000.00, 1, 15000.00, 25000.00, 'Villupuram district', 'Tondiarpet, Chennai', '2601290012', '1', '2', 'upload_files/candidate_tracker/7669984601_Thasik1ex202601171249250000.pdf', NULL, '1', '2026-01-29', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'round 1 not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-29 07:56:20', 154, '2026-01-29 05:06:28', 0, NULL, 1),
(28292, 'Shakeer ali. A', '20', '9597971585', '', 'N.abdulsalam181973@gmail.com', '2005-06-05', 20, '2', '2', 'N.abdul Salam', 'Retail shop', 120000.00, 1, 0.00, 30000.00, 'Chennai', 'Cuddalore', '2601290013', '1', '1', 'upload_files/candidate_tracker/92934120264_resume.pdf', NULL, '1', '2026-01-29', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-01-29 10:43:33', 159, '2026-01-29 05:12:30', 0, NULL, 1),
(28293, 'Haridass M', '5', '6383846281', '', 'haridassm2210@gmail.com', '2001-04-13', 24, '2', '2', 'Murugesan', 'Daily wages', 24000.00, 2, 17600.00, 23000.00, 'Krishnagiri', 'Velachery', '2601290014', '1', '2', 'upload_files/candidate_tracker/96612159369_HaridossResumePDF.pdf', NULL, '1', '2026-01-31', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-01-29 01:08:57', 154, '2026-01-31 03:47:58', 0, NULL, 1),
(28294, 'Prithiviraj A', '6', '9750547521', '', 'Prithivirajayyavu10@gmail.com', '2001-10-23', 24, '2', '2', 'ayyavu', 'driver', 40000.00, 1, 30000.00, 35000.00, 'ariyalur', 'chennai', '2601290015', '69', '2', 'upload_files/candidate_tracker/88964558936_Prithiviraj.pdf', NULL, '1', '2026-01-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-29 05:25:47', 154, '2026-01-30 07:00:15', 0, NULL, 1),
(28295, 'Tamilselvi', '4', '6374674236', '', 'ts541430@gmail.com', '2005-01-06', 21, '5', '2', 'Kasthuri', 'House wife', 12000.00, 2, 0.00, 22000.00, 'Maduravoyal', 'Maduravoyal', '2601300001', '', '1', 'upload_files/candidate_tracker/58678710149_Resume29012026103150AM.pdf', NULL, '1', '2026-01-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-30 12:17:56', 1, '2026-01-30 12:21:02', 0, NULL, 1),
(28296, '', '0', '7695907356', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601300002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-30 03:37:16', 0, NULL, 0, NULL, 1),
(28297, 'Avaneesh J', '13', '9486435359', '', 'avaneeshj18@gmai.com', '2003-09-09', 22, '3', '2', 'Jayasankar V', 'Government Employee (ICF - Technician', 45000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2601300003', '', '1', 'upload_files/candidate_tracker/46486103682_AvaneeshCVSE.pdf', NULL, '1', '2026-01-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Round 2 not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-30 04:29:12', 159, '2026-01-30 12:37:06', 0, NULL, 1),
(28298, 'Magesh Balakrishnan', '13', '9344069269', '', 'magesh2003vb@gmail.com', '2003-06-06', 22, '5', '2', 'V.S.Balakrishnan', 'Salesman', 300000.00, 2, 0.00, 300000.00, 'Thiruttani', 'Madipakkam', '2601300004', '', '1', 'upload_files/candidate_tracker/43214923231_V.B.MageshResume.pdf', NULL, '1', '2026-01-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Round 2 not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-30 04:34:07', 159, '2026-01-30 12:37:45', 0, NULL, 1),
(28299, 'Mathavan', '4', '9361295530', '', 'mathavankm01@gmail.com', '2002-03-15', 23, '2', '2', 'Murugesan', 'Interior worker', 35000.00, 1, 0.00, 15000.00, 'west street, Uranipuram', 'West Street, Uranipuram', '2601300005', '1', '1', 'upload_files/candidate_tracker/81445721047_Mathavancafs.pdf', NULL, '1', '2026-01-31', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-30 04:57:17', 154, '2026-01-31 12:16:11', 0, NULL, 1),
(28300, 'Nirmala R', '4', '9361170356', '', 'nirmala0652004@gmail.com', '2004-05-06', 21, '2', '2', 'Ravi', 'Farmer', 8000.00, 3, 0.00, 15000.00, 'Pudukkottai', 'Pudukkottai', '2601300006', '1', '1', 'upload_files/candidate_tracker/60628498430_ModernMinimalistCVResume.pdf', NULL, '1', '2026-01-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-30 05:06:19', 154, '2026-01-30 11:45:53', 0, NULL, 1),
(28301, 'varalakshmi manoharan', '6', '9025773995', '', 'vara58631@gmail.com', '2000-08-11', 25, '2', '2', 'manoharan', 'labour', 15000.00, 0, 0.00, 18000.00, 'chennai', 'chennai', '2601300007', '66', '1', 'upload_files/candidate_tracker/8108180758_Varalakshmitelesales.pdf', NULL, '1', '2026-01-30', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was ok with communication and have in need of job and looking confident we can try her', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2026-01-30 05:10:16', 159, '2026-01-30 05:38:30', 0, NULL, 1),
(28302, 'A VADIVAZHAGAN', '11', '7339656006', '9003570116', 'vadivaakashv2@gmail.com', '2002-08-08', 23, '2', '2', 'S AZHAGAPPAN', 'Carpenter', 20000.00, 1, 0.00, 16000.00, 'No : 12 Reddiyar street kariyamanickam puducherry', 'No 12 Reddiyar street kariyamanickam puducherry', '2601300008', '1', '1', 'upload_files/candidate_tracker/6451108813_VADIVAZHAGANA2.pdf', NULL, '1', '2026-01-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-30 05:36:54', 104, '2026-03-28 05:54:45', 0, NULL, 1),
(28303, 'e.vishal', '4', '7358208736', '9840335310', 'vishalelangovan14@gmail.com', '2003-07-14', 22, '2', '2', 'c.elangovan', 'light music/orchestra', 340000.00, 0, 0.00, 180000.00, 'thousand lights', 'thousand lifhts', '2601300009', '1', '1', 'upload_files/candidate_tracker/46304474087_Vishalnew.pdf.pdf', NULL, '1', '2026-01-30', 0, '', '3', '59', '2026-02-02', 180000.00, '', '1', '1970-01-01', '1', 'Communication Ok fresher need to train from scratch Feb xxamp Mar 12K then 15K from march onwards', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '2026-02-02', 1, '2026-01-30 05:49:23', 60, '2026-02-02 09:47:47', 0, NULL, 1),
(28304, 'Javid Akthar F', '13', '9585164820', '9789320490', 'javithfj05@gmail.com', '2004-08-15', 21, '3', '2', 'Firdhsoh khan', 'Farmer', 20000.00, 2, 0.00, 12000.00, 'Tirupattur', 'Tirupattur', '2601300010', '', '1', 'upload_files/candidate_tracker/63690150519_javidpython2.pdf', NULL, '1', '2026-01-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-30 05:51:46', 159, '2026-01-30 05:37:27', 0, NULL, 1),
(28305, 'naresh kumar', '6', '8123360276', '', 'nareshkumar148346@gmail.com', '2000-11-25', 25, '1', '2', 'raja', 'salaried', 50000.00, 1, 25000.00, 27000.00, 'Bangalore', 'bangalore', '2601300011', '', '2', 'upload_files/candidate_tracker/73565853034_nareshresume.docx', NULL, '1', '2026-01-30', 0, '55899', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Suggested ctc 19 to 20k max priya team', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2026-01-30 06:24:38', 60, '2026-02-04 05:42:01', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28306, 'v.yuvarani', '4', '7448319003', '9500680966', 'yuva2000@gmail.com', '2000-03-26', 25, '2', '1', 'Umapathi', 'Team management', 10000.00, 1, 20000.00, 25000.00, 'Royapettah', 'Royapettah', '2601300012', '1', '2', 'upload_files/candidate_tracker/14410559920_Resume29012026060526PM.pdf', NULL, '1', '2026-01-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-01-30 06:46:40', 1, '2026-01-30 06:56:38', 0, NULL, 1),
(28307, 'Ravi C', '23', '8778224709', '', 'ravichinnathambi359@gmail.com', '2003-06-28', 22, '3', '2', 'Mani c', 'Mother', 18000.00, 2, 0.00, 15000.00, '1/72,Karattuvalavu,Thiruchengode,Namakkal', '1/72, Karattuvalavu,Thiruchengode, Namakkal', '2601300013', '', '1', 'upload_files/candidate_tracker/74946478609_RAVICFlutterResume.pdf', NULL, '1', '2026-01-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Programming not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-30 06:54:52', 159, '2026-01-30 05:39:53', 0, NULL, 1),
(28308, 'PRAVEEN A', '23', '6383224046', '', 'praveenarumugam47@gmail.com', '2004-06-24', 21, '3', '2', 'P ARUMUGAM', 'Farmer', 18000.00, 2, 0.00, 15000.00, '1/20, Ballakuzhi,Tirchengodu, Namakkal.', '1/20, Ballakuzhi,Tirchengodu, Namakkal.', '2601300014', '', '1', 'upload_files/candidate_tracker/29787292669_PRAVEENAFlutterResume.pdf', NULL, '1', '2026-01-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Programming not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-30 06:55:22', 159, '2026-01-30 05:39:31', 0, NULL, 1),
(28309, 'KARTHICKRAJA', '6', '9791315016', '', 'jjkarthi46@gmail.com', '2003-03-29', 22, '2', '2', 'Jayakumar', 'Painter', 200000.00, 2, 19000.00, 20000.00, 'Tiruvottriyur chennai', 'Tiruvottriyur chennai', '2601300015', '1', '2', 'upload_files/candidate_tracker/15628576501_KarthickrajaJResume21.pdf', NULL, '1', '2026-02-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-01-30 06:57:47', 159, '2026-02-03 05:09:23', 0, NULL, 1),
(28310, 'T.VISWANATH', '13', '9003252573', '9360434243', 'viswanath010148@gmail.com', '2002-10-03', 23, '3', '2', 'S. Thanigasalam', 'S.Thanigasalam', 20000.00, 1, 0.00, 20000.00, 'THIRUVANNAMALAI', 'ANNA NAGAR, CHENNAI.', '2601300016', '', '1', 'upload_files/candidate_tracker/42441589112_VISWARESUMEITProfessional.docx', NULL, '1', '2026-01-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-30 07:01:15', 159, '2026-01-30 05:40:35', 0, NULL, 1),
(28311, 'KABILAN G', '13', '9360434243', '9003252573', 'kabilkabilan427@gmail.com', '2003-10-05', 22, '3', '2', 'GUNASEKARAN', 'FARMER', 20000.00, 1, 0.00, 20000.00, 'THANJAVUR (DIST), PATTUKOTTAI', 'Chennai', '2601300017', '', '1', 'upload_files/candidate_tracker/23346331863_kabiresume2.pdf', NULL, '1', '2026-01-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-30 07:01:28', 159, '2026-01-30 05:40:57', 0, NULL, 1),
(28312, 'Ashok a', '23', '8807072934', '8870215982', 'aashokayyanar@gmail.com', '2005-03-25', 20, '3', '2', 'Ayyanar', 'Father', 19000.00, 1, 0.00, 15000.00, 'Villuppuram', 'Kovilambakkam', '2601300018', '', '1', 'upload_files/candidate_tracker/7045493785_AshokAFlutterResume3.pdf', NULL, '1', '2026-01-30', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'programming not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-30 07:07:51', 159, '2026-01-30 05:40:17', 0, NULL, 1),
(28313, 'Saravanan M', '5', '7373658291', '', 'saravanantamizhan03@gmail.com', '1995-05-23', 30, '2', '2', 'Rani muthusamy', 'Sales executive', 30000.00, 0, 15000.00, 25000.00, 'Chennai', 'Chennai', '2601300019', '1', '2', 'upload_files/candidate_tracker/12268604501_saravanan2025final.pdf', NULL, '1', '2026-01-30', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1018', '', '55650', '55560', '1970-01-01', 1, '2026-01-30 08:50:29', 159, '2026-01-30 06:49:48', 0, NULL, 1),
(28314, 'LOKESHWARAN M K', '5', '9344244480', '8681841462', 'lokeshrekha9699@gmail.com', '1996-09-30', 29, '2', '1', 'M G KANNIYAPPAN', 'Civil contractor', 1000000.00, 1, 30000.00, 33000.00, 'Velachery', 'Velachery', '2601300020', '68', '2', 'upload_files/candidate_tracker/74131829524_lokeshresumenew.pdf', NULL, '1', '2026-01-30', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2026-01-30 09:04:46', 154, '2026-03-02 10:47:24', 0, NULL, 1),
(28315, '', '0', '6384618461', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601300021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-30 01:37:15', 0, NULL, 0, NULL, 1),
(28316, 'Guhan Muthuramalingam', '13', '7708904986', '', 'guhanm0000@gmail.com', '2002-07-27', 23, '3', '2', 'Muthuramalingam', 'Agriculture', 20000.00, 0, 0.00, 15000.00, 'Pudukkottai', 'Chennai', '2601310001', '', '1', 'upload_files/candidate_tracker/58326499509_GuhanJavaFSD.pdf', NULL, '1', '2026-01-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-31 03:50:08', 1, '2026-01-31 03:52:58', 0, NULL, 1),
(28317, 'Kirubanithi', '4', '9150131455', '', 'Kirubanithivelladurai@gmail.com', '2001-11-05', 24, '2', '2', 'Velladurai', 'Formar', 10000.00, 0, 0.00, 15000.00, 'Vellur orathanadu tk thanjvur dt', 'Vellur orathanadu tk thanjavur dt', '2601310002', '1', '1', 'upload_files/candidate_tracker/46560147706_kirubanithiresume2.pdf', NULL, '1', '2026-01-31', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-31 04:17:07', 154, '2026-01-31 12:15:32', 0, NULL, 1),
(28318, 'Pavithra.E', '4', '6381062289', '8675239977', 'pavithra.e55@gmail.com', '2001-07-25', 24, '2', '1', 'M.Aravind', 'Accounting Manager', 30000.00, 1, 0.00, 15000.00, 'Thiruvarur', 'Thanjavur', '2601310003', '1', '1', 'upload_files/candidate_tracker/84413371916_1769834930727PavithraResume20251210WA0002..pdf', NULL, '1', '2026-01-31', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-01-31 04:33:12', 154, '2026-01-31 12:14:46', 0, NULL, 1),
(28319, 'Dharshini', '13', '7010788873', '', 'dharshuuuma2005@gmail.com', '2005-05-05', 20, '6', '2', 'Raja S', 'Farmer', 10000.00, 1, 0.00, 30000.00, 'Theni', 'Chennai', '2601310004', '', '1', 'upload_files/candidate_tracker/74156446068_dharshinibackenddeveloper311.pdf', NULL, '1', '2026-01-31', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round 1 not cleared (1/10)', '', '', '', '', '', '1970-01-01', 1, '2026-01-31 04:54:40', 154, '2026-01-31 03:32:14', 0, NULL, 1),
(28320, '', '0', '9342127522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601310005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-31 04:57:31', 0, NULL, 0, NULL, 1),
(28321, 'Ahmed naseer', '4', '9095598239', '7418097265', 'ahamednasheer3@gmail.com', '2004-04-23', 21, '2', '2', 'Hajamoideen', 'Driving', 30.00, 1, 0.00, 22.00, 'Karaikal', 'Triplicane', '2601310006', '1', '1', 'upload_files/candidate_tracker/2639546471_nasirresume.pdf', NULL, '1', '2026-01-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-31 04:58:23', 154, '2026-01-31 12:42:12', 0, NULL, 1),
(28322, 'Kishore Kirubakaran D', '13', '6374785077', '', 'kishorekirubakaran.info@gmail.com', '2003-09-18', 22, '5', '2', 'Daniel Thanraj', 'Tailor', 35000.00, 1, 0.00, 20000.00, 'ayanavaram, chennai -23', 'ayanavaram ,chennai -23', '2601310007', '', '1', 'upload_files/candidate_tracker/38673674382_KishoreCV1.pdf', NULL, '1', '2026-01-31', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round 2 not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-01-31 05:05:28', 154, '2026-01-31 03:37:36', 0, NULL, 1),
(28323, 'Balaji R', '11', '7338790061', '9092155897', 'balajirameshkumar1982@gmail.com', '2002-08-19', 23, '2', '2', 'A.Ramesh kumar', 'Transportation', 50000.00, 2, 0.00, 300000.00, 'Mowlivakkam', 'Mowlivakkam', '2601310008', '1', '1', 'upload_files/candidate_tracker/40562561721_BalajiR20261.pdf', NULL, '1', '2026-01-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-01-31 05:46:30', 154, '2026-01-31 04:33:05', 0, NULL, 1),
(28324, 'Mohamed aslam', '4', '8760882516', '6379545802', 'aslamnoor811@gmail.com', '2003-03-16', 22, '3', '2', 'Mohamed yusuf', 'Business', 30000.00, 0, 0.00, 30.00, 'Karaikal', 'Anna salai', '2601310009', '', '1', 'upload_files/candidate_tracker/86109932524_aslamnew.pdf', NULL, '1', '2026-01-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-31 06:15:24', 154, '2026-01-31 12:43:48', 0, NULL, 1),
(28325, 'santhosh kumar s', '6', '9025540265', '', 'santhoshssd786@gmail.com', '2004-06-18', 21, '2', '2', 'sankar a', 'daily wages', 15000.00, 2, 0.00, 18000.00, 'chennai', 'chennai', '2601310010', '66', '1', 'upload_files/candidate_tracker/76772140884_santhoshkumarsales.docx', NULL, '1', '2026-02-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-31 07:16:51', 1, '2026-01-31 07:22:54', 0, NULL, 1),
(28326, 'shanthiraleka', '6', '9080404313', '7639560993', 'Shanthiraleka13@email.com', '2002-07-15', 23, '2', '2', 'Rani', 'House keeping', 50000.00, 1, 0.00, 20000.00, '73/2 beemanna 2nd street abiramapuram alwarpet', '73/2 beemanna 2nd street abiramapuram alwarpet', '2601310011', '50', '1', 'upload_files/candidate_tracker/4527053129_shanthiraleka.docx', NULL, '1', '2026-01-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-01-31 07:18:12', 154, '2026-01-31 03:26:26', 0, NULL, 1),
(28327, 'D.PRIYA DHARASHINI', '6', '8939704319', '', 'aravdevpriyarav@gmail.com', '1998-09-28', 27, '2', '1', 'Devaraj.st', 'Transport', 200000.00, 1, 20000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2601310012', '1', '2', 'upload_files/candidate_tracker/78827817250_52213943e23c4ac9b29237532ab3e5791754239686PRIYARESUME111.docx', NULL, '1', '2026-02-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-31 07:39:38', 159, '2026-02-03 05:07:46', 0, NULL, 1),
(28328, 'M Sakthika', '13', '8122318335', '8508717734', 'sakthika711@gmail.com', '2003-11-07', 22, '3', '2', 'Muthu kumaran', 'Business man', 10.00, 1, 0.00, 20.00, 'Cuddolore', 'Chennai', '2601310013', '', '1', 'upload_files/candidate_tracker/59670340351_SakthikaResume.pdf', NULL, '1', '2026-01-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-31 08:20:03', 1, '2026-01-31 08:22:57', 0, NULL, 1),
(28329, '928980516438', '4', '9390863611', '9390963611', 'bhoomikagurasala@gmail.com', '2002-02-08', 23, '2', '2', 'Gurasala Munaswami', 'Farmer', 2.50, 1, 20000.00, 25000.00, 'Varadaiahpalam', 'Varadaiahpalam', '2601310014', '50', '2', 'upload_files/candidate_tracker/26310768841_GURASALABHOOMIKAResumeSameSize.pdf', NULL, '1', '2026-02-02', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-01-31 10:21:54', 1, '2026-01-31 02:06:29', 0, NULL, 1),
(28330, '', '0', '9360332761', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601310015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-31 11:51:16', 0, NULL, 0, NULL, 1),
(28331, '', '0', '8754485421', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601310016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-31 12:12:56', 0, NULL, 0, NULL, 1),
(28332, 'jabez jaba kumar v', '4', '7810056421', '9150976951', 'jabez7003@gmail.com', '2003-09-15', 22, '2', '2', 'd victor selvaraj', 'no occupation', 2.40, 0, 16000.00, 20000.00, 'chennai', 'chennai', '2601310017', '1', '2', 'upload_files/candidate_tracker/57355576109_Jabezcv.pdf', NULL, '1', '2026-02-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-01-31 01:06:36', 154, '2026-02-02 02:36:29', 0, NULL, 1),
(28333, '', '0', '9087589112', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601310018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-31 01:22:15', 0, NULL, 0, NULL, 1),
(28334, '', '0', '7397242965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2601310019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-01-31 01:37:46', 0, NULL, 0, NULL, 1),
(28335, 'Reenamohan', '6', '8072052168', '8148086799', 'Kattreena2604@gmail.com', '2002-11-04', 23, '2', '2', 'Pasca marry', 'Office work', 20000.00, 1, 16800.00, 23000.00, 'Choolaimedu', 'Choolaimedu', '2602010001', '1', '2', 'upload_files/candidate_tracker/83903119533_Reenamohanv.pdf', NULL, '1', '2026-02-02', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'CANDIDATE IS OK.COMMUNICATION OK.kINDLY CONFIRM THE SALARY', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55692', '5151', '1970-01-01', 1, '2026-02-01 06:07:25', 154, '2026-02-02 12:34:11', 0, NULL, 1),
(28336, 'Neelavati', '4', '7349180171', '', 'neelavathi2510@gmail.com', '1999-10-25', 26, '2', '2', 'Hulugappa v', 'Let', 15000.00, 2, 16800.00, 23000.00, 'Hospet', 'Bangalore vijaynagar', '2602020001', '1', '2', 'upload_files/candidate_tracker/27430757653_RESUMEPDF.pdf', NULL, '1', '2026-02-03', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-02 01:33:03', 154, '2026-02-03 10:41:36', 0, NULL, 1),
(28337, 'Kernob lois s p', '11', '6369083395', '', 'kernoblois@gmail.com', '2002-06-13', 23, '2', '2', 'prince joshua', 'sub inspector of police', 700000.00, 1, 0.00, 20000.00, 't p chatram police quarters', 'anna nagar east', '2602020002', '1', '1', 'upload_files/candidate_tracker/93013028259_KernobLoisResume4.pdf', NULL, '1', '2026-02-02', 0, '', '3', '59', '2026-02-06', 180000.00, '', '5', '1970-01-01', '1', 'For 2 months intern stipend of 12K then 15K salary HR recruitment', '6', '1', '2', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '55605', '55566', '2026-02-06', 1, '2026-02-02 04:13:21', 60, '2026-02-05 07:12:45', 0, NULL, 1),
(28338, '', '0', '6369093395', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602020003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-02 04:21:33', 0, NULL, 0, NULL, 1),
(28339, 'Sathiya Narayanan P', '13', '8438632069', '9171134050', 'sathiyanarayanan1811@gmail.com', '2003-11-18', 22, '3', '2', 'Prakash v', 'Daily wages', 6000.00, 1, 0.00, 300000.00, 'Vellore', 'Tambaram', '2602020004', '', '1', 'upload_files/candidate_tracker/12776594444_sathiyafinalresume.pdf', NULL, '1', '2026-02-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-02 04:37:58', 1, '2026-02-02 04:42:00', 0, NULL, 1),
(28340, 'Vanathi', '4', '8248805936', '', 'vanuvanathi17012000@gmail.com', '2000-01-17', 26, '2', '1', 'Ruthran', 'Sales executive', 25000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2602020005', '1', '1', 'upload_files/candidate_tracker/67496116765_VANATHI260202104126.pdf', NULL, '1', '2026-02-02', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-02 04:58:27', 154, '2026-02-02 12:38:58', 0, NULL, 1),
(28341, 'MONISH KUMAR P', '6', '6369946795', '6379083182', 'monishkumar63790@gmail.com', '2002-03-27', 23, '3', '2', 'Poobalan', 'Buisness', 200000.00, 1, 15000.00, 16500.00, 'Ooty', 'Chennai', '2602020006', '', '2', 'upload_files/candidate_tracker/49683849312_MonishKumarPResumeFinalProfileSummary.pdf', NULL, '1', '2026-02-02', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-02-02 05:13:54', 159, '2026-02-02 11:55:35', 0, NULL, 1),
(28342, 'Kameshkumar Murugan', '6', '6374404151', '6380685531', 'sumathikameshkumar@gmail.com', '2004-01-05', 22, '2', '2', 'Murugan', 'Auto driver', 100000.00, 1, 15000.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2602020007', '68', '2', 'upload_files/candidate_tracker/52057185828_20251221231943.pdf', NULL, '1', '2026-02-02', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-02-02 05:47:33', 154, '2026-02-02 12:32:19', 0, NULL, 1),
(28343, 'S Sathish', '6', '9025201529', '7010122196', 'sathishsivaku28@gmail.com', '1994-02-28', 31, '2', '1', 'Elsiya j', 'Digital marketing', 40000.00, 2, 27000.00, 40000.00, 'Royapuram', 'Royapuram', '2602020008', '57', '2', 'upload_files/candidate_tracker/29762502842_Resume.docx', NULL, '1', '2026-02-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-02 05:51:18', 154, '2026-02-02 03:05:49', 0, NULL, 1),
(28344, 'uthriya', '5', '6304036314', '9659910425', 'uthriyauthi@gmail.com', '2002-08-21', 23, '2', '1', 'mark antony', 'driver', 25000.00, 2, 24000.00, 27000.00, 'perambur chennai', 'perambur chennai', '2602020009', '1', '2', 'upload_files/candidate_tracker/97512151974_UTHRIYARESUME3.pdf', NULL, '1', '2026-02-02', 0, '', '3', '59', '2026-02-05', 350000.00, '', '1', '1970-01-01', '1', 'Communication Good Have exp in shriram for 6 months recently married openf or insurance again let us check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55650', '55560', '2026-02-05', 1, '2026-02-02 06:21:17', 60, '2026-02-04 07:19:56', 0, NULL, 1),
(28345, 'Divya bharathi.M', '6', '6384609135', '9344572185', 'divyanivi2000@gmail.com', '2004-10-26', 21, '2', '2', 'Kumar,sailaja', 'B.com', 15000.00, 2, 0.00, 18000.00, '25/47 dr.ambethkar nagar korrukupet 4th street', '25/47 Dr.ambethkar nagar korrukupet 4th street', '2602020010', '50', '1', 'upload_files/candidate_tracker/77671070901_DOCdivya5.docx', NULL, '1', '2026-02-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-02 06:21:43', 159, '2026-02-03 04:59:45', 0, NULL, 1),
(28346, 'Yogesh kumar', '5', '9296619629', '9296529902', 'yogesh04chaudhary@gmail.com', '2001-07-04', 24, '2', '2', 'Awdhesh choudhary', 'Retired', 30000.00, 4, 360000.00, 500000.00, 'Khagaul, Patna, bihar', 'J.P NAGAR, 8TH PHASE, BANGALORE', '2602020011', '57', '2', 'upload_files/candidate_tracker/85799623415_CV2026012215224562.pdf', NULL, '1', '2026-02-02', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected for pc but suggested ctc 3.5lac max if its k will try', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2026-02-02 06:59:59', 162, '2026-02-11 03:12:42', 0, NULL, 1),
(28347, 'Santhiyaguraja S', '5', '8807967667', '9087031296', 'rajamba266@gmail.com', '1994-06-26', 31, '2', '1', 'Bhuvaneswari S', 'XML operator', 45000.00, 0, 30000.00, 35000.00, 'Puducherry', 'Kelambakkam, Chennai', '2602020012', '68', '2', 'upload_files/candidate_tracker/58461094847_SanthiyagurajaResume.pdf', NULL, '1', '2026-02-02', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for rm role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2026-02-02 07:42:16', 159, '2026-02-02 03:05:21', 0, NULL, 1),
(28348, 'Kumudha K', '11', '8610346606', '', 'kumudhak07@gmail.com', '2001-07-23', 24, '2', '2', 'Kumar M', 'Driver', 90000.00, 1, 144000.00, 250000.00, 'Chennai', 'Chennai', '2602020013', '1', '2', 'upload_files/candidate_tracker/99766444246_KumudhaK.pdf', NULL, '1', '2026-02-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-02 09:42:06', 159, '2026-02-03 05:08:26', 0, NULL, 1),
(28349, '', '0', '9952156923', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602020014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-02 09:56:47', 0, NULL, 0, NULL, 1),
(28350, 'ajay willson p', '6', '6369849506', '9789468604', 'ajaymicheal445@gmail.com', '2001-05-12', 24, '2', '2', 'pushparaj tharsilameary', 'customer support executive', 15000.00, 2, 0.00, 20000.00, 'govindhanallur cuddalore district', 'khan street choolaimedu', '2602020015', '1', '1', 'upload_files/candidate_tracker/79266552241_AJAYWILLSANPTvoicecall.docx', NULL, '1', '2026-02-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-02 10:46:19', 159, '2026-02-03 05:03:21', 0, NULL, 1),
(28351, 'Babu S', '4', '8925481307', '6361182813', 'charlesbabu165@gmail.com', '2002-04-21', 23, '2', '2', 'stalin b', 'contracter', 30000.00, 1, 0.00, 25000.00, 'ambattur', 'ambattur', '2602020016', '50', '2', 'upload_files/candidate_tracker/14102715533_BabuResume.pdf', NULL, '1', '2026-02-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-02 10:48:46', 1, '2026-02-02 11:06:58', 0, NULL, 1),
(28352, 'Dhanalakshmi', '11', '6369619115', '', 'dhanalakshmip209@gmail.com', '2001-12-11', 24, '2', '2', 'Periya nadar', 'Business', 1.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2602020017', '1', '1', 'upload_files/candidate_tracker/10479010744_DhanalakshmiResume.pdf', NULL, '1', '2026-02-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-02 11:51:06', 159, '2026-02-03 11:04:10', 0, NULL, 1),
(28353, 'Pavithra S', '33', '9361337810', '', 'pavithrasrinivasan1923@gmail.com', '2005-05-19', 20, '2', '2', 'Srinivasan M', 'Petrol Bunk-Team Leader', 25000.00, 1, 180000.00, 300000.00, 'Chennai', 'Chennai', '2602020018', '50', '2', 'upload_files/candidate_tracker/53775221712_PavithraResume.pdf', NULL, '1', '2026-02-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-02 12:37:47', 1, '2026-02-02 12:41:00', 0, NULL, 1),
(28354, 'Jayakumar', '5', '7092760194', '9841721588', 'jayajayakumar390@gmail.com', '2002-01-29', 24, '2', '2', 'Prasad', '45000', 85000.00, 2, 25000.00, 28000.00, 'Chennai', 'Chennai', '2602030001', '1', '2', 'upload_files/candidate_tracker/34975595292_jayakumarresume.pdf', NULL, '2', '2026-02-03', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for rm role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55656', '55557', '1970-01-01', 1, '2026-02-03 04:07:07', 159, '2026-02-03 05:01:04', 0, NULL, 1),
(28355, 'VIJAY RAMKUMAR P', '31', '9384711092', '', 'vijaydevexecutive@gmail.com', '1999-12-21', 26, '3', '2', 'VIGNESH KUMAR P (sibling)', 'Developer', 50000.00, 1, 0.00, 20000.00, 'Sivakasi', 'Sivakasi', '2602030002', '', '1', 'upload_files/candidate_tracker/27529874888_VIJAYRAMKUMARREACT.PDF', NULL, '1', '2026-02-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-03 04:19:33', 1, '2026-02-03 04:25:41', 0, NULL, 1),
(28356, 'SARATH KUMAR D', '13', '6369074600', '', 'sarathdev6719@gmail.com', '2001-12-04', 24, '2', '2', 'D', 'Farmer', 7000.00, 0, 0.00, 2.00, 'Vellore', 'Guindy', '2602030003', '1', '1', 'upload_files/candidate_tracker/63929032714_SARATHKUMARDPYTHONFULLSTACKDEVELOPERRESUME.pdf', NULL, '1', '2026-02-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Not cleared aptitude', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-03 04:19:44', 159, '2026-02-03 10:57:30', 0, NULL, 1),
(28357, 'Pavitha', '6', '6379454615', '8939561927', 'pavikesavan1928@gmail.com', '2005-01-09', 21, '2', '2', 'Parent', 'Spca manager', 35000.00, 1, 0.00, 16000.00, '45/52 A siavshankaran street Erukkancherry chennai', '45/52 A siavshankaran street Erukkancherry chennai', '2602030004', '1', '1', 'upload_files/candidate_tracker/66154485281_Resume1.pdf', NULL, '1', '2026-02-05', 0, '', '3', '59', '2026-02-09', 180000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher for our sales roles and need to train from scratch let us try', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1287', '5151', '2026-02-09', 1, '2026-02-03 04:34:17', 60, '2026-02-06 07:33:47', 0, NULL, 1),
(28358, 'Ashiya W', '13', '9344795259', '', 'ashisparkle2004@gmail.com', '2004-09-05', 21, '5', '2', 'Wahith Basha', 'Business', 15000.00, 1, 0.00, 25000.00, 'Chengam,Thiruvannamalai', 'Velachery', '2602030005', '', '1', 'upload_files/candidate_tracker/29371384026_ashiya.pdf', NULL, '1', '2026-02-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-03 04:54:29', 1, '2026-02-03 05:04:16', 0, NULL, 1),
(28359, 'KAVISHKUMAR', '13', '9597065717', '8428863299', 'kavishk721@gmail.com', '2003-10-05', 22, '2', '2', 'Kumar', 'Coolie', 15000.00, 1, 0.00, 25000.00, 'Salem', 'Chennai', '2602030006', '1', '1', 'upload_files/candidate_tracker/60182803881_KAVISHKUMARResume.pdf', NULL, '1', '2026-02-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'Not cleared aptitude', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-03 04:57:32', 159, '2026-02-03 12:05:32', 0, NULL, 1),
(28360, 'KEVIN BERYL K', '13', '9176414727', '9941298571', 'kevinberyl55@gmail.com', '2004-05-18', 21, '2', '2', 'Kokila Doss k', 'Private company', 25000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2602030007', '1', '1', 'upload_files/candidate_tracker/62429971084_resume.pdf', NULL, '1', '2026-02-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Not cleared program test', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-03 04:57:50', 159, '2026-02-03 02:38:17', 0, NULL, 1),
(28361, 'KATHIRSELVAM VEERAIYA', '13', '9344472138', '', 'kathirselvamv82@gmail.com', '2004-10-12', 21, '3', '2', 'VEERAIYA', 'Daily wage', 13000.00, 2, 0.00, 200000.00, 'Peravurani', 'Chennai', '2602030008', '', '1', 'upload_files/candidate_tracker/11903720823_KathirselvamBackendDeveloperResume.pdf', NULL, '1', '2026-02-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Not attended system task', '', '', '', '', '', '1970-01-01', 1, '2026-02-03 05:04:46', 159, '2026-02-05 10:01:55', 0, NULL, 1),
(28362, 'Karthika', '13', '8248556366', '', 'karthikamoorthy0212@gmail.com', '2004-12-02', 21, '2', '2', 'Punniyamoorthy', 'Tea shop', 10000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2602030009', '1', '1', 'upload_files/candidate_tracker/54825511200_Javadeveloper11.pdf', NULL, '1', '2026-02-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Not cleared aptitude', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-03 05:05:03', 159, '2026-02-03 12:05:57', 0, NULL, 1),
(28363, 'Abhinisha Murugesan', '13', '6383935598', '6383936698', 'abhimurugesan1234@gmail.com', '2004-02-28', 21, '5', '2', 'Murugesan p', 'Carpenter', 20000.00, 0, 0.00, 25000.00, 'Kallakurichi', 'Chennai', '2602030010', '', '1', 'upload_files/candidate_tracker/75173527023_CVOGWalkin.pdf', NULL, '1', '2026-02-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-03 05:12:18', 1, '2026-02-03 05:21:16', 0, NULL, 1),
(28364, 'Lomiya S', '13', '9443324834', '', 'Slomiya565@gmail.com', '2004-07-11', 21, '2', '2', 'Sudhakar', 'Farmer', 10000.00, 2, 0.00, 2.00, 'Thiruvannamalai', 'Chennai', '2602030011', '1', '1', 'upload_files/candidate_tracker/35874315534_LOMIYA1.pdf', NULL, '1', '2026-02-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Not cleared aptitude', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-03 05:17:03', 159, '2026-02-03 12:06:37', 0, NULL, 1),
(28365, 'Madhumitha Babu', '13', '8610331771', '9486227709', 'mathumithababu2306@gmail.com', '2004-06-23', 21, '2', '2', 'Babu R', 'Driver', 10000.00, 1, 0.00, 2.00, 'Vellore', 'Chennai', '2602030012', '1', '1', 'upload_files/candidate_tracker/17585679079_resume.pdf', NULL, '1', '2026-02-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Not cleared aptitude', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-03 05:52:33', 159, '2026-02-03 02:40:15', 0, NULL, 1),
(28366, 'SUNANDA M P', '6', '8296985824', '', 'sunandampnayak1999@gmail.com', '1999-05-20', 26, '2', '2', 'PARAMESHANAYAKA', 'Farmer', 10000.00, 3, 16000.00, 22000.00, 'Manchabayanahalli Gavadagere Hobali Hunsur Taluku', 'Kudlu gate Bangalore', '2602030013', '1', '2', 'upload_files/candidate_tracker/26007636397_sunanda20250603111.pdf', NULL, '2', '2026-02-03', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1008', '', '', '', '1970-01-01', 1, '2026-02-03 06:02:40', 162, '2026-02-09 02:42:29', 0, NULL, 1),
(28367, 'Vishnupriya Ramu', '13', '8148795910', '8220150019', 'priyaramu2029@gmail.com', '2004-05-20', 21, '3', '2', 'Ramu D', 'Ex army', 10000.00, 1, 0.00, 2.00, 'Vellore', 'Chennai', '2602030014', '', '1', 'upload_files/candidate_tracker/8042154573_Resume.pdf', NULL, '1', '2026-02-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'not cleared system task', '', '', '', '', '', '1970-01-01', 1, '2026-02-03 06:05:39', 159, '2026-02-05 10:00:37', 0, NULL, 1),
(28368, 'Lohitha', '4', '7558124436', '7305633794', 'rameshlohitha006@gmail.com', '2001-10-05', 24, '2', '2', 'Banumathi', 'House wife', 20000.00, 1, 18500.00, 23000.00, 'Perambur Chennai', 'Perambur chennai', '2602030015', '1', '2', 'upload_files/candidate_tracker/77018372958_Resume.docx', NULL, '1', '2026-02-03', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55824', '55560', '1970-01-01', 1, '2026-02-03 06:28:48', 159, '2026-02-03 05:05:06', 0, NULL, 1),
(28369, 'Sivaguru', '13', '9943390658', '', 'rsivaguru0804@gmail.com', '2004-04-08', 21, '3', '2', 'Ravichandran', 'Farmer', 8000.00, 0, 0.00, 2.75, 'Pudukkottai', 'Pudukkottai', '2602030016', '', '1', 'upload_files/candidate_tracker/14437370374_SivaGuruRresume.pdf', NULL, '1', '2026-02-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', 'Not cleared program test', '', '', '', '', '', '1970-01-01', 1, '2026-02-03 06:30:59', 159, '2026-02-05 10:02:17', 0, NULL, 1),
(28370, 'Jayamani Madhan', '22', '8778021610', '9344567176', 'jayamanim886@gmail.com', '2011-02-03', 0, '2', '2', 'Madhan P', 'Farmer', 100000.00, 1, 0.00, 400000.00, 'Dharmapuri', 'Dharmapuri', '2602030017', '57', '1', 'upload_files/candidate_tracker/2432450292_DeedyResumeReversed.pdf', NULL, '1', '2026-02-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', 'he doesxquotnt have job clarity and asked for IT Roles', '', '', '', '', '', '1970-01-01', 1, '2026-02-03 06:35:57', 159, '2026-02-03 04:38:24', 0, NULL, 1),
(28371, 'T.Anbarasu', '6', '9994505348', '9952657749', 'anbarasu458@gmail.com', '2004-10-09', 21, '5', '2', 'Thangaraj', 'Late', 10000.00, 2, 0.00, 350000.00, 'Mettur,Salem', 'Mettur,Salem', '2602030018', '', '1', 'upload_files/candidate_tracker/38707557666_RESUME.pdf', NULL, '1', '2026-02-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-03 06:36:30', 159, '2026-02-03 05:06:44', 0, NULL, 1),
(28372, '', '0', '6382460012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602030019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-03 07:07:01', 0, NULL, 0, NULL, 1),
(28373, '', '0', '6374625472', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602030020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-03 07:25:09', 0, NULL, 0, NULL, 1),
(28374, 'manoj raj manikandan', '6', '9345262846', '8925411026', 'manojraj.manikandan@gmail.com', '2005-06-29', 20, '2', '2', 'Sandhi .M', 'Wages', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2602030021', '1', '1', 'upload_files/candidate_tracker/37387346803_Voiceprocessresume.pdf', NULL, '1', '2026-02-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-02-03 07:38:51', 154, '2026-02-07 12:45:59', 0, NULL, 1),
(28375, '', '0', '8838131672', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602030022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-03 10:14:55', 0, NULL, 0, NULL, 1),
(28376, 'MATILDA A', '4', '7806874752', '6382002571', 'matilda2001@gmail.com', '2001-06-29', 24, '2', '1', 'Gokulakrishana', 'Advocate', 216000.00, 2, 0.00, 20000.00, 'Kolathur Chennai 99', '42, Bhagavathi ammal 1st Street Kolathur', '2602030023', '1', '1', 'upload_files/candidate_tracker/75760337719_CV20251230023956.pdf', NULL, '1', '2026-02-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-03 12:22:45', 159, '2026-02-04 05:44:24', 0, NULL, 1),
(28377, 'Kiruthika Anbalagan', '4', '8754145930', '', 'kiruthikaa17092002@gmail.com', '2002-09-17', 23, '6', '2', 'Anbalagan', 'Farmer', 25000.00, 1, 15000.00, 19000.00, 'Kumbeswarar', 'Kumbakonam', '2602030024', '', '2', 'upload_files/candidate_tracker/73637304699_DOC20260203WA0007.pdf', NULL, '1', '2026-02-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-03 12:28:54', 1, '2026-02-03 12:35:32', 0, NULL, 1),
(28378, 'Muniyandi Sowmiya', '4', '9884589352', '7806881355', 'sowmiya.lep.icon@gmail.com', '2003-06-14', 22, '2', '2', 'Muniyandi Priya', 'Car driver', 100000.00, 1, 15000.00, 20000.00, 'Tondairpet', 'Tondairpet', '2602030025', '1', '2', 'upload_files/candidate_tracker/56360669470_SowmiyaCv.pdf', NULL, '1', '2026-02-04', 0, '', '3', '59', '2026-02-09', 192000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher for our roles need to train and check let us try for Ops', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', 'H1017', '', '55605', '55566', '2026-02-09', 1, '2026-02-03 12:40:11', 60, '2026-02-06 07:30:00', 0, NULL, 1),
(28379, 'DIVYA J', '6', '9361586357', '', 'jdivyajayamani@gmail.com', '1999-09-15', 26, '2', '2', 'Jayamani', 'Auto Driver', 18000.00, 1, 18000.00, 22000.00, 'Munuswamy Nagar triplicane Chennai 600005', 'Munuswamy Nagar triplicane Chennai 600005', '2602040001', '68', '2', 'upload_files/candidate_tracker/42523439627_DIVYAResume1.pdf', NULL, '1', '2026-02-04', 15, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2026-02-04 04:23:24', 159, '2026-02-04 02:59:48', 0, NULL, 1),
(28380, 'Manju raja', '4', '9344244058', '9952858308', 'Manjuraja1904@gmail.com', '2005-04-19', 20, '2', '2', 'Raja', 'Coolie', 25000.00, 2, 10000.00, 15000.00, 'Muniyandavar colony,Thanjavur', 'Muniyandavar colony,Thanjavur', '2602040002', '1', '2', 'upload_files/candidate_tracker/89648745003_ResumeBcom...pdf', NULL, '1', '2026-02-05', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-04 05:15:53', 154, '2026-02-05 02:54:13', 0, NULL, 1),
(28381, 'Sivaraj s', '6', '7339181350', '9790276497', 'sivavr2003@gmail.com', '2011-02-04', 0, '2', '2', 'Sivakumar k', 'Farmer', 1.00, 20000, 0.00, 18000.00, 'Cuddalore', 'Guindy', '2602040003', '1', '1', 'upload_files/candidate_tracker/79179564098_sivarajS.pdf', NULL, '1', '2026-02-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'Deepika', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-04 05:16:32', 159, '2026-02-04 05:27:20', 0, NULL, 1),
(28382, 'Tharunkumar R', '6', '9980064806', '7259772811', 'tharunkumar21121999@gmail.com', '2011-02-04', 0, '2', '2', 'Ramanjineya vt', 'Stone cutting work', 25000.00, 4, 0.00, 25000.00, 'Hanagal village post molakalamuru taluk', 'Malleswaram 18th cross singla', '2602040004', '1', '2', 'upload_files/candidate_tracker/35541509115_TharunKumarR3.pdf', NULL, '1', '2026-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-02-04 05:19:59', 1, '2026-02-04 05:29:46', 0, NULL, 1),
(28383, 'Arivukarasu k', '6', '9363343764', '8072318164', 'arivu3232@gmail.com', '2001-04-22', 24, '2', '2', 'Kumar', 'Former', 60000.00, 2, 0.00, 20000.00, 'Ulundhurpet', 'Vadapalani', '2602040005', '1', '1', 'upload_files/candidate_tracker/84949931799_ArivuCV202601020759210000.pdf', NULL, '1', '2026-02-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Deepika', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-04 05:35:49', 159, '2026-02-04 05:25:14', 0, NULL, 1),
(28384, '', '0', '7795023468', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602040006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-04 05:44:02', 0, NULL, 0, NULL, 1),
(28385, 'R Vasudevan', '4', '7358785211', '9940318160', 'vasudevan.prakash01@gmail.com', '2001-05-23', 24, '2', '2', 'Ranganathan', 'Supervisor', 30000.00, 1, 15000.00, 20000.00, 'Triplicane, chennai', 'Triplicane, icehouse', '2602040007', '1', '2', 'upload_files/candidate_tracker/35265246793_R.Vasudevanresume202512061219030000.pdf', NULL, '1', '2026-02-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-04 06:05:33', 159, '2026-02-04 05:12:23', 0, NULL, 1),
(28386, 'Shalini', '6', '8838724922', '9629890654', 'shaliniharishni@gmail.com', '2005-07-11', 20, '2', '2', 'P.s Vanitha devi', 'Housewife', 50000.00, 1, 0.00, 10000.00, 'Ayyampettai', 'Ayyampettai', '2602040008', '1', '1', 'upload_files/candidate_tracker/50690179895_ShaliniResume1.pdf', NULL, '1', '2026-02-04', 0, '', '5', '168', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Just looking for a salary only wished for accountant job not sustain for longer doing Mba finance having a exam this month so long leave required .', '5', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'CI144', '5151', '1970-01-01', 1, '2026-02-04 06:08:07', 154, '2026-02-04 12:39:36', 0, NULL, 1),
(28387, 'Uthayan', '6', '6382944257', '7305265260', 'uthayanvdr315@gmail.com', '1999-09-29', 26, '2', '2', 'M.sandilyan', 'Farmer', 15000.00, 1, 18000.00, 15000.00, 'Thiruvarur', 'Thiruvarur', '2602040009', '1', '2', 'upload_files/candidate_tracker/16707547632_DOC20260107WA0005..pdf', NULL, '1', '2026-02-04', 0, '', '5', '168', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Already attended 2 years back. having no proper communication skill having experience in telecaller for loan recovery in startup but relieved due to family situation and having no experience certificate not profiled one sustainability issue', '5', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'CI144', '5151', '1970-01-01', 1, '2026-02-04 06:20:38', 154, '2026-02-04 12:38:47', 0, NULL, 1),
(28388, 'Harivardhani', '6', '9952972069', '9940814408', 'harinijeevanadham@gmail.com', '2003-12-11', 22, '2', '2', 'Malathy .G', 'Thiruvarur icm principal', 60000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2602040010', '1', '1', 'upload_files/candidate_tracker/92647013834_Harivardhani.pdf', NULL, '1', '2026-02-04', 0, '', '5', '168', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Having communication skill but sustainability doubt wishing for accountant job doing Mba finance this month exam so will take long days and if needed means march after only able to join.', '5', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'CI144', '5151', '1970-01-01', 1, '2026-02-04 06:27:05', 154, '2026-02-04 12:38:06', 0, NULL, 1),
(28389, '', '0', '9840437964', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602040011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-04 06:44:24', 0, NULL, 0, NULL, 1),
(28390, 'Silambarasan.S', '20', '9342654943', '', 'silambusankar2@gmail.com', '2004-05-07', 21, '2', '2', 'Sankar', 'Farmar', 10000.00, 1, 0.00, 3.00, 'Tiruvannamalai', 'Chennai', '2602040012', '50', '1', 'upload_files/candidate_tracker/38557458159_silamburesume3.pdf', NULL, '1', '2026-02-04', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-04 06:50:38', 159, '2026-02-04 06:12:25', 0, NULL, 1),
(28391, 'Sharabeshwaran N', '13', '8122073973', '', 'Sharabeshwarann@gmail.com', '2005-01-27', 21, '3', '2', 'Nandhakumar V', 'Election', 2.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2602040013', '', '1', 'upload_files/candidate_tracker/22867298006_sharabeshwaranNFlowCVResume202505161.pdf', NULL, '1', '2026-02-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Not cleared program test', '', '', '', '', '', '1970-01-01', 1, '2026-02-04 07:04:43', 159, '2026-02-04 05:08:58', 0, NULL, 1),
(28392, 'Balaji', '13', '9363517083', '8189897766', 'balajibala18110@gmail.com', '2003-11-18', 22, '3', '2', 'Siva', 'Coolie', 25000.00, 1, 0.00, 18000.00, 'poonamallee', 'poonamallee', '2602040014', '', '1', 'upload_files/candidate_tracker/35495545123_balajiresume.pdf', NULL, '1', '2026-02-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Not cleared aptitude', '', '', '', '', '', '1970-01-01', 1, '2026-02-04 07:06:26', 159, '2026-02-04 02:58:12', 0, NULL, 1),
(28393, '', '0', '7708753646', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602040015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-04 07:19:25', 0, NULL, 0, NULL, 1),
(28394, 'ATCHAYA K', '6', '9597852339', '9790352339', 'atchayak02@gmail.com', '2002-12-27', 23, '2', '2', 'R.karunakaran', 'Farmer', 10000.00, 2, 9000.00, 12000.00, '468,New street, varagur Thanjavur -613101', '468,New street, varagur, Thanjavur -613101', '2602040016', '1', '2', 'upload_files/candidate_tracker/36964580541_atchayak11.pdf', NULL, '1', '2026-02-05', 0, '', '3', '59', '2026-02-09', 156000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher for our roles need to check in training and see  for our sales callings', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CI144', '5151', '2026-02-09', 1, '2026-02-04 07:31:00', 60, '2026-02-06 07:31:47', 0, NULL, 1),
(28395, 'Veeramani Manickam', '4', '9043229368', '', 'maniveera9043@gmail.com', '1998-04-25', 27, '2', '2', 'Manickam', 'Farmer', 25000.00, 1, 0.00, 20000.00, 'Dharmapuri', 'Chennai', '2602040017', '50', '1', 'upload_files/candidate_tracker/45598300369_DOC20260203WA0002..pdf', NULL, '1', '2026-02-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-04 08:17:39', 1, '2026-02-04 08:20:56', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28396, 'Poornimashree Muralidharan', '33', '7200634445', '', 'm.poornimashree24@gmail.com', '2003-12-24', 22, '3', '2', 'K.Muralidharan', 'Rtd. Chief pharmacist', 50000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2602040018', '', '1', 'upload_files/candidate_tracker/37394232714_cv.pdf', NULL, '1', '2026-02-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', 'She has joined as an accounts intern.', '', '', '', '', '', '1970-01-01', 1, '2026-02-04 09:25:47', 159, '2026-02-04 03:09:03', 0, NULL, 1),
(28397, 'krishnakumar c', '33', '9344972765', '', 'krishnacsc2727@gmail.com', '2001-09-27', 24, '3', '2', 'chinniah cs', 'business', 40000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2602040019', '', '1', 'upload_files/candidate_tracker/47634053719_krishnakumarcv.pdf', NULL, '1', '2026-02-04', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', 'he has joined as an accounts intern', '', '', '', '', '', '1970-01-01', 1, '2026-02-04 09:25:56', 159, '2026-02-04 03:09:41', 0, NULL, 1),
(28398, '', '0', '9344972766', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602040020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-04 09:56:08', 0, NULL, 0, NULL, 1),
(28399, 'john regan robert kennady', '6', '6385261405', '6385261406', 'johnreganrobert2003@gmail.com', '2003-07-02', 22, '2', '2', 'robert kennedy', 'architec', 200000.00, 2, 17000.00, 24000.00, 'nungambakkam', 'nungambakkam', '2602040021', '1', '2', 'upload_files/candidate_tracker/96008026969_GreenElegantProfessionalResume.pdf', NULL, '1', '2026-02-04', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Worst profile for our roles not suitable for any roles in our company', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', 'Jaya suriya', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-04 10:04:12', 159, '2026-02-04 05:22:57', 0, NULL, 1),
(28400, 'Augustin samraj', '6', '9688634126', '', 'samaugustin01@gmail.com', '1995-11-27', 30, '3', '1', 'Abraham', 'Cooli', 15000.00, 0, 26500.00, 30000.00, 'Gummidipoondi', 'Gummidipoondi', '2602040022', '', '2', 'upload_files/candidate_tracker/75346931633_11.pdf', NULL, '1', '2026-02-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-04 10:52:42', 159, '2026-02-04 05:19:23', 0, NULL, 1),
(28401, 'mohamed siraj', '6', '8939824780', '8825488861', 'iamsiraj28@gmail.com', '2005-07-28', 20, '1', '2', 'rizwan', 'painter', 18000.00, 1, 0.00, 15000.00, 'tondairpet', 'tondairpet', '2602040023', '', '1', 'upload_files/candidate_tracker/23900538034_WhiteSimpleStudentCVResume202505262007590000.pdf', NULL, '1', '2026-02-04', 0, 'C99122', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2026-02-04 11:23:38', 159, '2026-02-04 06:11:53', 0, NULL, 1),
(28402, 'Sofiya', '6', '8508809183', '', 'sofiyasofisofiyasofi31@gmail.com', '2004-04-14', 21, '2', '2', 'No', 'Sales executive', 32000.00, 1, 15000.00, 18000.00, 'thiruvannamalai district cheyyar', 'jeenis rd saidapet Chennai', '2602040024', '1', '2', 'upload_files/candidate_tracker/57265131846_sofiyacv2026.pdf', NULL, '3', '2026-02-05', 0, '', '3', '59', '2026-02-09', 204000.00, '', '3', '2026-02-09', '2', 'Communication Ok have exp in calling but not in our roles need to check in training in our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1287', '5151', '2026-02-09', 1, '2026-02-04 11:40:27', 60, '2026-02-06 07:35:21', 0, NULL, 1),
(28403, 'divyadarshini', '6', '6380464731', '9677352607', 'divyadarshinidivya57@gmail.com', '2002-03-31', 23, '2', '2', 'S.pushpalatha', 'House keeping', 8000.00, 2, 0.00, 18.00, '16/47 Dr Thomas road t.nagar chennai 17', '16/47 Dr Thomas road T.nagar chennai 17', '2602040025', '50', '1', 'upload_files/candidate_tracker/67957716865_DivyadarshiniResumewithPhoto.pdf', NULL, '1', '2026-02-06', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2026-02-04 12:27:28', 154, '2026-02-06 12:50:58', 0, NULL, 1),
(28404, 'Lokesh lal krishnan', '4', '9151070402', '9841330284', 'stalinashamoni@gmail.com', '2004-10-28', 21, '2', '2', 'Babulal', 'Charcoal factory', 500000.00, 1, 0.00, 12000.00, 'Choolai', 'Choolai', '2602040026', '1', '1', 'upload_files/candidate_tracker/94529519165_1000869209.pdf', NULL, '1', '2026-02-05', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-02-04 06:49:52', 159, '2026-02-05 12:48:08', 0, NULL, 1),
(28405, 'Sandhya S', '13', '9080239902', '', 'sandhyasampathkumar9909@gmail.com', '1999-09-23', 26, '2', '1', 'Manick', 'Process associate', 35000.00, 1, 0.00, 5.00, 'Anna Nagar', 'Madipakkam', '2602050001', '1', '2', 'upload_files/candidate_tracker/36503279736_SandhyaResume.pdf', NULL, '1', '2026-02-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-05 04:43:46', 159, '2026-02-05 01:19:38', 0, NULL, 1),
(28406, 'KIRUTHIKA T', '6', '9095762700', '9791990525', 'Kiruthikatj978@gmail.com', '2003-04-24', 22, '2', '2', 'R.Thangaraj', 'Farmer', 10000.00, 2, 9000.00, 12000.00, '496,New Street, varagur,Thanjavur.', '496,New Street, varagur,Thanjavur', '2602050002', '1', '2', 'upload_files/candidate_tracker/35543660989_KIRUTHIP.pdf', NULL, '1', '2026-02-05', 0, '', '3', '59', '2026-02-09', 156000.00, '', '1', '1970-01-01', '2', 'Communication ok fresher for our sales roles need to check in training amd confirm', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CI144', '5151', '2026-02-09', 1, '2026-02-05 05:06:26', 60, '2026-02-06 07:32:41', 0, NULL, 1),
(28407, 'Prajwal N', '5', '9663259932', '', 'Prajjureddy153@gmail.com', '2011-02-05', 0, '2', '2', 'Nagaraj', 'Business', 200000.00, 1, 30000.00, 40000.00, '#1171 Jp Nagar 2nd phase 18th a main Bangalore -78', 'BTM 1st stage', '2602050003', '57', '2', 'upload_files/candidate_tracker/23055206843_MyResume2.pdf', NULL, '1', '2026-02-05', 0, '', '3', '59', '2026-02-16', 410000.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp in policy bazaar good in communicating can give a try in our roles already he holds an offer with Chola can give atry', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '2026-02-16', 1, '2026-02-05 05:22:58', 60, '2026-02-16 10:00:47', 0, NULL, 1),
(28408, 'naveen kumar', '5', '8867550664', '', 'mpnaveen1627@gmail.com', '1999-01-16', 27, '2', '2', 'Puttamma', 'Housewife', 90000.00, 1, 3.40, 5.00, 'Anekal Bangalore Karnataka 562106', 'Anekal Bangalore Karnataka 562106', '2602050004', '57', '2', 'upload_files/candidate_tracker/60776517790_DOC20260205WA0003..pdf', NULL, '1', '2026-02-05', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Has experience But seems like will not get used to insurance domain .', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2026-02-05 05:56:12', 154, '2026-02-06 12:01:16', 0, NULL, 1),
(28409, '', '0', '6402958401', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602050005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-05 06:01:23', 0, NULL, 0, NULL, 1),
(28410, 'N MARUTHI', '6', '7676453366', '9880243785', 'themenzsignature@gmail.com', '2001-06-01', 24, '2', '2', 'N YALLAPPA', 'FORMER', 60000.00, 3, 232800.00, 380000.00, 'Bellary', 'Bangalore', '2602050006', '1', '2', 'upload_files/candidate_tracker/7609267739_resume.pdf', NULL, '1', '2026-02-07', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-05 06:02:35', 159, '2026-02-07 05:29:44', 0, NULL, 1),
(28411, 'Chinnaiah Gari Bharath kumar', '6', '6302958401', '', 'cbharathreddy1998@gmail.com', '1998-05-15', 27, '2', '2', 'Padmavathi', 'House wife', 10000.00, 1, 23000.00, 30000.00, 'Penukonda', 'Bangalore', '2602050007', '57', '2', 'upload_files/candidate_tracker/19299232650_1000171987.pdf', NULL, '1', '2026-02-05', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Does not seem to be consistent in any of the previous companies . Did not sustain in previous jobs for more than 1 TO 3 months.', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2026-02-05 06:10:26', 154, '2026-02-06 12:01:54', 0, NULL, 1),
(28412, 'Saranya K', '13', '7092497110', '', 'saranyakannan2306@gmail.com', '2004-01-06', 22, '2', '2', 'Kannan', 'Coolie', 15000.00, 1, 0.00, 15000.00, 'DINDIGUL', 'Chennai', '2602050008', '50', '1', 'upload_files/candidate_tracker/18073029573_SARANYAresumeee.pdf', NULL, '1', '2026-02-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-05 06:37:18', 154, '2026-02-06 12:49:14', 0, NULL, 1),
(28413, '', '0', '9952000642', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602050009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-05 09:29:22', 0, NULL, 0, NULL, 1),
(28414, 'kanishka.d', '4', '7305807853', '', 'kanishkask77@gmail.com', '2011-02-05', 0, '2', '2', 'dhinakaran. v', 'unemployed', 16500.00, 2, 16500.00, 25000.00, 'chennai', 'chennai - royapuram', '2602050010', '1', '2', 'upload_files/candidate_tracker/6127821295_KANISHKACV.pdf', NULL, '1', '2026-02-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2026-02-05 10:05:25', 159, '2026-02-05 03:53:46', 0, NULL, 1),
(28415, 'Krupashree H', '6', '7406302376', '8546837637', 'hkrupashree@gmail.com', '2011-02-05', 0, '2', '2', 'Bharathi', 'Housewife', 15000.00, 2, 0.00, 27.00, 'Hospet', 'Bangalore', '2602050011', '69', '2', 'upload_files/candidate_tracker/48468801867_resumelatest.docx', NULL, '1', '2026-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-05 12:31:43', 1, '2026-02-05 12:34:34', 0, NULL, 1),
(28416, 'Gopinath s', '4', '9025246006', '9840329597', 'ngopi5750@gmail.com', '2004-11-03', 21, '2', '2', 'Sivakumar', 'Driver', 20000.00, 1, 0.00, 18000.00, '10 2nd Street sundarapuram puliyanthope', '6/31 6th Street kc garden tvk nagar Perambur', '2602050012', '1', '1', 'upload_files/candidate_tracker/36300928454_Gopinath.Sresume.pdf', NULL, '1', '2026-02-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication not much sounds good fresher not much suits for our backend roles', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-05 02:58:20', 154, '2026-02-06 12:43:15', 0, NULL, 1),
(28417, 'Archana M N', '6', '8618452921', '8971338416', 'Archanaarchana8983@gmail.com', '2002-06-10', 23, '3', '2', 'Narayanaswami M', 'Farmer', 10000.00, 4, 18000.00, 20000.00, 'Srinivaspura', 'Mahadevapura', '2602050013', '', '2', 'upload_files/candidate_tracker/26347631360_acchubaby.pdf', NULL, '1', '2026-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-05 03:43:36', 1, '2026-02-06 04:54:08', 0, NULL, 1),
(28418, 'Surya', '4', '9489432655', '', 'suryasiva94899@gmail.com', '2002-09-11', 23, '2', '2', 'Sivanantham', 'Driver', 20000.00, 1, 0.00, 17000.00, 'Peraurani,thanajvur', 'Thanajavur', '2602060001', '1', '1', 'upload_files/candidate_tracker/12775134257_SuryaSResume.pdf', NULL, '2', '2026-02-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-06 01:58:21', 154, '2026-02-06 11:14:58', 0, NULL, 1),
(28419, 'surya narayanan', '13', '6382976249', '9444414777', 'suryavidin@gmail.com', '2002-08-22', 23, '2', '2', 'murali', 'etired', 1.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2602060002', '1', '1', 'upload_files/candidate_tracker/28277662390_SuryaNarayananResume.pdf', NULL, '1', '2026-02-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2026-02-06 04:33:37', 159, '2026-02-06 10:16:11', 0, NULL, 1),
(28420, 'buvana cholan', '6', '6380682043', '', 'cholanbhuvana@gmail.com', '2002-07-15', 23, '1', '2', 'cholan s', 'tncsc', 35000.00, 1, 0.00, 20000.00, '1/145 perumal Kovil Street thiruvarur(Dt)', '32/2 thalayari Palayam Kodambakkam Chennai', '2602060003', '', '1', 'upload_files/candidate_tracker/92139746504_BUVANACHOLAN.pdf', NULL, '1', '2026-02-06', 0, '55734', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not suitable for sales, 3 years exp in Gold field, pressure Handling low,', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2026-02-06 05:04:48', 154, '2026-02-06 12:49:56', 0, NULL, 1),
(28421, 'M.suganya', '4', '9600202576', '8122674221', 'sugu3180@gmail.com', '1990-07-15', 35, '2', '1', 'M.govindarasu', 'Business', 15000.00, 2, 0.00, 18000.00, 'Thanjavur', 'Vaduvur', '2602060004', '1', '1', 'upload_files/candidate_tracker/58305606916_RESUME.docx', NULL, '1', '2026-02-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit\n', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-06 05:44:32', 154, '2026-02-06 11:37:44', 0, NULL, 1),
(28422, 'Hari Krishnan.R', '4', '6383230360', '8056642159', 'harikrishnanravichandran1205@gmail.com', '2005-05-12', 20, '3', '2', 'Shanith', 'Company work', 12000.00, 1, 0.00, 18.00, 'Madhavaram', 'Chennai', '2602060005', '', '1', 'upload_files/candidate_tracker/93280497560_HarikrishnanResume1.pdf', NULL, '1', '2026-02-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preparing for Police exams time being he is looking for opportunities\n', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-06 05:56:09', 154, '2026-02-06 12:44:55', 0, NULL, 1),
(28423, 'Aakash Sekar', '6', '9361033781', '', 'aakashsekar773@gmail.com', '2004-05-12', 21, '2', '2', 'P . Sekar', 'Daily wages', 10000.00, 1, 0.00, 14000.00, '31, Bharathi Nagar,vilar bypass, Thanjavur,613006.', '41, padmanabhan Nagar,Vilar road,Thanjavur,613006.', '2602060006', '1', '1', 'upload_files/candidate_tracker/44279151082_AakashBECSEResume.pdf', NULL, '1', '2026-02-07', 0, '', '3', '59', '2026-02-09', 156000.00, '', NULL, '2026-03-07', '2', 'Communication Ok fresher for employment need to check in training', '5', '1', '4', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CI144', '5151', '2026-02-09', 1, '2026-02-06 07:27:23', 60, '2026-02-09 12:00:30', 0, NULL, 1),
(28424, 'Harish K', '13', '9342648009', '', 'harishk8009@gmail.com', '2003-12-12', 22, '3', '2', 'Vithya K', 'Homemaker', 20000.00, 1, 0.00, 300000.00, 'Vellore', 'Chennai', '2602060007', '', '1', 'upload_files/candidate_tracker/73200982243_HarishKResume.pdf', NULL, '1', '2026-02-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-06 07:57:54', 154, '2026-02-06 02:37:33', 0, NULL, 1),
(28425, 'Nivetha .S', '6', '6381630406', '8220274509', 'nivethasubramaniyan24@gmail.com', '2002-01-24', 24, '2', '2', 'S.Godeeswari', 'Nutrition organizer', 13000.00, 1, 19000.00, 30000.00, 'Thanjavur', 'Pallavaram', '2602060008', '1', '2', 'upload_files/candidate_tracker/5980103615_NIVETHAUP.pdf', NULL, '1', '2026-02-07', 10, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good skill person. 6 month experience health insurance.  Expectations very high so Find out her previous salary details and then proceed.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2026-02-06 12:15:23', 159, '2026-02-07 05:26:58', 0, NULL, 1),
(28426, '', '0', '8870597728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602060009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-06 03:50:04', 0, NULL, 0, NULL, 1),
(28427, '', '0', '6383567578', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602060010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-06 05:17:16', 0, NULL, 0, NULL, 1),
(28428, 'Raghul', '13', '7397243770', '9677847501', 'raghulraviworld@gmail.com', '2003-10-25', 22, '2', '2', 'Ravi', 'Taylor', 10000.00, 0, 0.00, 15000.00, 'Arani', 'Taramani , Chennai', '2602070001', '1', '1', 'upload_files/candidate_tracker/43591888494_raghulcv.pdf', NULL, '1', '2026-02-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round one not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-07 04:27:08', 154, '2026-02-07 10:31:19', 0, NULL, 1),
(28429, 'vijayasanthi veeran', '6', '9150299749', '', 'vijivijayasanthi02091998@gmail.com', '1998-09-02', 27, '1', '2', 'veeran', 'Farmer', 500000.00, 4, 33000.00, 45000.00, 'periyakurikkai kallakurichi', 'mgr nagar chennai', '2602070002', '', '2', 'upload_files/candidate_tracker/82397386675_DOC20260206WA0010.1.pdf', NULL, '1', '2026-02-07', 0, '55734', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, but salary expectation very high, communication Not Good, observation skills very low..', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2026-02-07 06:13:14', 154, '2026-02-07 01:01:37', 0, NULL, 1),
(28430, 'HEMANATHAN M', '6', '8925311880', '9629776690', 'hemdona6@gmail.com', '2004-04-27', 21, '2', '2', 'A. Madhurai M. Rani', 'driving', 20.00, 1, 23000.00, 23000.00, 'Uthiramerur', 'Potheri', '2602070003', '1', '2', 'upload_files/candidate_tracker/38653124695_Hemanth11.pdf', NULL, '1', '2026-02-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-07 06:18:22', 154, '2026-02-07 12:25:00', 0, NULL, 1),
(28431, 'surya murugan', '6', '9345320449', '9962212752', 'surya42023@gamil.com', '2002-09-04', 23, '2', '2', 'murugan', 'company staff', 20000.00, 1, 0.00, 20000.00, 'potheri', 'srm collage', '2602070004', '1', '1', 'upload_files/candidate_tracker/86760391032_surya.pdf', NULL, '1', '2026-02-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-07 06:28:34', 154, '2026-02-07 12:25:52', 0, NULL, 1),
(28432, 'Ravichandran m', '6', '8838188943', '9514585101', 'rc9234792@gmail.com', '2002-06-19', 23, '2', '2', 'K. Mallayan', 'Flower shop', 40.00, 1, 18.00, 18.00, 'Senneer kuppam', 'Senneer kuppam', '2602070005', '1', '2', 'upload_files/candidate_tracker/39748062292_raviresume.pdf', NULL, '1', '2026-02-09', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and performance is not good.his Only vioce is ok , Also Pressure Handle iAnd  sustainable is  doubt.Excepted High salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2026-02-07 06:30:24', 154, '2026-02-09 12:24:42', 0, NULL, 1),
(28433, 'Harshini', '4', '8072522940', '8190931871', 'harishnithiyagu@gmail.com', '2003-03-01', 22, '2', '2', 'Thiyagarajan', 'TNPSC JUNIOR ASSISTANT', 40000.00, 3, 8000.00, 13000.00, 'Mariya cottage kamachi nagar maariyamman Kovil', 'Mariya cottage kamachi nagar maariyamman Kovil', '2602070006', '1', '2', 'upload_files/candidate_tracker/44410219662_Harishniupdatedresume1.docx', NULL, '1', '2026-02-09', 1, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-07 07:30:02', 154, '2026-02-09 12:33:04', 0, NULL, 1),
(28434, 'Poornima Chandru Sherugar', '33', '8088552388', '', 'poornimasherugar1@gmail.com', '2004-05-30', 21, '2', '2', 'Chandru Sherugar', 'Wages', 30000.00, 1, 0.00, 3.20, 'Manchikeri Yellapur Uttarakannada', 'BTM Layout', '2602070007', '1', '1', 'upload_files/candidate_tracker/55575397865_PoornimaSherugar20260107100941000052170522036274.pdf', NULL, '1', '2026-02-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-02-07 09:10:33', 1, '2026-02-07 09:33:35', 0, NULL, 1),
(28435, '', '0', '7019181058', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602070008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-07 09:14:49', 0, NULL, 0, NULL, 1),
(28436, 'Swetha', '4', '9360022495', '7708436270', 'swethaseenivasan670@gmail.com', '2003-05-17', 22, '2', '2', 'D.Seenivasan', 'Masan', 60000.00, 1, 8000.00, 14000.00, 'Karanthai, Thanjavur', 'Karanthai, Thanjavur', '2602070009', '1', '2', 'upload_files/candidate_tracker/3103319622_CV2026020214420764.pdf', NULL, '1', '2026-02-09', 1, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-07 09:27:03', 154, '2026-02-09 12:33:33', 0, NULL, 1),
(28437, 'Bharath Raj', '5', '8838605563', '', 'bharathmadasamy@gmail.com', '2000-06-18', 25, '2', '2', 'Kumar', 'Self employed', 11000.00, 1, 2.50, 3.70, 'Virudhunagar', 'Chennai', '2602070010', '1', '2', 'upload_files/candidate_tracker/59346705141_BHARATHRAJRESUME.pdf', NULL, '1', '2026-02-07', 0, '', '3', '59', '2026-02-16', 325000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp for an year in icici and career gap due to govt exams and all can be trained in our roles need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', 'H1028', '', '55735', '55557', '2026-02-16', 1, '2026-02-07 09:29:15', 60, '2026-02-16 09:55:13', 0, NULL, 1),
(28438, 'Mariyaraj prathish', '6', '6385261985', '9962038747', 'rajprathish00789@gmail.com', '2001-08-23', 24, '2', '2', 'D sagayakumar', 'Cooli', 50000.00, 1, 18000.00, 25000.00, 'Pammal', 'Pammal', '2602070011', '1', '2', 'upload_files/candidate_tracker/78363054719_RPRESUME.docx', NULL, '1', '2026-02-09', 10, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-07 01:11:46', 154, '2026-02-09 03:22:53', 0, NULL, 1),
(28439, '', '0', '7358448009', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602070012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-07 01:11:52', 0, NULL, 0, NULL, 1),
(28440, 'Sweatha', '4', '8248041195', '7418357674', 'SweathaCs8@gmail.com', '2002-12-31', 23, '3', '2', 'Selvam c', 'Machine operator', 18000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Nanjikottai Thanjavur', '2602080001', '', '1', 'upload_files/candidate_tracker/92150067017_CV20250813192146591.pdf', NULL, '1', '2026-02-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-08 01:17:43', 154, '2026-02-10 11:39:45', 0, NULL, 1),
(28441, 'vignesh j', '13', '7092210098', '', 'vigneshjaishankars@gmail.com', '2002-03-20', 23, '2', '2', 'Jaishankar', 'Metal contractor', 20000.00, 1, 0.00, 2.00, 'Chennai', 'Chennai', '2602090001', '1', '1', 'upload_files/candidate_tracker/88350223864_VigneshResume.pdf', NULL, '1', '2026-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round one not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-09 04:34:04', 154, '2026-02-09 12:28:11', 0, NULL, 1),
(28442, 'KALAISELVAN KANDHAN', '13', '6382254267', '9080418286', 'magi59456@gmail.com', '2003-02-17', 22, '2', '2', 'Kandhan', 'Photographer', 20000.00, 1, 0.00, 3.00, 'Panruti', 'Chennai', '2602090002', '1', '1', 'upload_files/candidate_tracker/27248216947_Kalaiselvanresumecopy.pdf', NULL, '1', '2026-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round one not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-09 04:35:09', 154, '2026-02-09 12:27:33', 0, NULL, 1),
(28443, 'Vasanth jayavel', '2', '9025166992', '9080005567', 'jayavelvasanth@gmail.com', '2001-12-25', 24, '2', '2', 'Jayavel', 'Auto driver', 1.70, 1, 0.00, 1.80, 'No.', 'Chennai', '2602090003', '1', '1', 'upload_files/candidate_tracker/90690767550_vasanth.j.cv.pdf', NULL, '1', '2026-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round one not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-09 04:35:17', 154, '2026-02-09 12:29:18', 0, NULL, 1),
(28444, '', '0', '6382254266', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602090004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-09 04:48:11', 0, NULL, 0, NULL, 1),
(28445, 'Mahendra Pandi', '6', '7358983199', '', 'mahendrapandi581@gmail.com', '2005-07-09', 20, '1', '2', 'Maheswari', 'House', 15000.00, 3, 14000.00, 15000.00, 'Chennai', 'Chennai', '2602090005', '', '2', 'upload_files/candidate_tracker/55170044667_RecruiteroptimizedResumeMahendraPandi1.pdf', NULL, '1', '2026-02-09', 0, 'c99094', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and performance is not good.Also Sustainble is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2026-02-09 05:14:46', 154, '2026-02-09 12:28:12', 0, NULL, 1),
(28446, 'KarthickE', '6', '9914351469', '', 'Yashwathkarthick@gmail.com', '2003-09-09', 22, '3', '2', 'Elumalai c', 'Carpenter', 10000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2602090006', '', '1', 'upload_files/candidate_tracker/56671880474_KARTHICK.pdf', NULL, '1', '2026-02-09', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-02-09 05:15:23', 154, '2026-02-09 12:22:59', 0, NULL, 1),
(28447, 'Nagarjun B N', '13', '9843776681', '9500555481', 'nagarjun0910@gmail.com', '2002-10-09', 23, '2', '2', 'Nagarajan B N', 'Weaver', 180000.00, 1, 0.00, 300000.00, 'Ramanathapuram', 'Chennai', '2602090007', '1', '1', 'upload_files/candidate_tracker/56913731185_NAGARJUNBNCV4.pdf', NULL, '1', '2026-02-09', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round one cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-09 05:15:41', 154, '2026-02-09 03:17:43', 0, NULL, 1),
(28448, 'a mohamed khalid', '13', '7358987640', '', 'mohamedkhalid7358@gmail.com', '2003-04-16', 22, '2', '2', 'asan mohideen abdul kader', 'foreign', 25000.00, 1, 0.00, 20000.00, 'tirunelveli', 'chennai', '2602090008', '1', '1', 'upload_files/candidate_tracker/50501446640_Khalidresume.pdf', NULL, '1', '2026-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round one not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-09 05:18:40', 154, '2026-02-09 03:21:58', 0, NULL, 1),
(28449, 'Nithishkumar Saravanan', '13', '8072777852', '6384958763', 'nithish1422004@gmail.com', '2004-02-14', 21, '2', '2', 'Saravanan', 'Former', 10000.00, 1, 0.00, 15000.00, 'Vaniyambadi', 'Vaniyambadi', '2602090009', '1', '1', 'upload_files/candidate_tracker/12446533568_1000061123.pdf', NULL, '1', '2026-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round one not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-09 05:18:43', 154, '2026-02-09 03:20:56', 0, NULL, 1),
(28450, 'deepak s', '13', '6385127584', '9789926303', 'Deepakselvam2611@gmail.com', '2000-12-04', 25, '2', '2', 'Tamilselvi', 'House wife', 35000.00, 2, 15000.00, 1.50, 'Chennai', 'Chennai', '2602090010', '1', '2', 'upload_files/candidate_tracker/29834747034_DeepakS.pdf', NULL, '3', '2026-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round one not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-09 05:32:56', 154, '2026-02-09 02:16:33', 0, NULL, 1),
(28451, 'Praveen kumar.c', '6', '9080944101', '6395456965', 'carlospraveen@gmail.com', '1998-09-21', 27, '2', '2', 'Chakravarthy', 'Export', 25000.00, 1, 200000.00, 300000.00, 'Kundrathur', 'Kundrathur', '2602090011', '1', '2', 'upload_files/candidate_tracker/10329774149_praveekumarresume1.pdf', NULL, '1', '2026-02-09', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-09 05:48:18', 154, '2026-02-09 03:18:08', 0, NULL, 1),
(28452, 'Shweta Biradar', '4', '7483830517', '', 'shwetabiradar139@gmail.com', '2003-07-09', 22, '2', '2', 'Saraswati ( sister)', 'Working in company', 15000.00, 1, 0.00, 20000.00, 'vijayapur', 'Bangalore', '2602090012', '1', '1', 'upload_files/candidate_tracker/1933822125_ShwetaBResume1.pdf', NULL, '1', '2026-02-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-02-09 06:24:28', 1, '2026-02-09 07:00:21', 0, NULL, 1),
(28453, 'Vijaya Kumar V', '13', '7358256522', '7358208841', 'vijayakumar15574@gmail.com', '2004-09-03', 21, '2', '2', 'Kalpana', 'Wages', 1200000.00, 4, 0.00, 17000.00, 'Villivakkam', 'Villivakkam', '2602090013', '1', '1', 'upload_files/candidate_tracker/34070898610_vijayakumarResume21.pdf', NULL, '1', '2026-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'round one not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-09 06:27:53', 154, '2026-02-09 03:19:55', 0, NULL, 1),
(28454, '', '0', '8610591894', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602090014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-09 07:04:10', 0, NULL, 0, NULL, 1),
(28455, 'E Nivetha', '6', '9025000436', '6383925823', 'nivathaelumalai@gmail.com', '2006-01-14', 20, '2', '2', 'Elumalai M', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Tiruvannamalai', 'Chennai', '2602090015', '50', '1', 'upload_files/candidate_tracker/20048395476_NIVETHARESUME.pdf', NULL, '1', '2026-02-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-09 09:04:48', 159, '2026-02-10 05:19:17', 0, NULL, 1),
(28456, 'Kaveeya Kamaraj', '5', '6380668295', '9952245052', 'kaveeyadm1010@gmail.com', '1997-11-10', 28, '2', '2', 'M kamaraj', 'Business', 500000.00, 1, 0.00, 350000.00, 'TIRUVALLUR', 'TIRUVALLUR', '2602090016', '1', '2', 'upload_files/candidate_tracker/37198984337_KaveeyaKamarajResume3.pdf', NULL, '1', '2026-02-10', 0, '', '3', '59', '2026-02-16', 350000.00, '', '1', '1970-01-01', '2', 'Communication ok fresher for our roles have exp in other domain only for an year time but confident and matured to hande this can give a try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55656', '55557', '2026-02-16', 1, '2026-02-09 09:21:11', 60, '2026-02-16 09:53:41', 0, NULL, 1),
(28457, 'nandhakumaran', '11', '9025946758', '', 'nandhakumaran0611@gmail.com', '2002-11-06', 23, '2', '2', 'palani', 'security', 15000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2602090017', '1', '1', 'upload_files/candidate_tracker/53902270195_P.Nandhakumaran.pdf', NULL, '1', '2026-02-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-09 10:18:49', 154, '2026-02-10 02:46:37', 0, NULL, 1),
(28458, 'nandhini', '11', '7358998697', '', 'rnandhini393@gmail.com', '2000-01-03', 26, '2', '2', 'raju', 'weaver', 50000.00, 1, 16000.00, 20000.00, 'ariyalur dt', 'chennai', '2602090018', '1', '2', 'upload_files/candidate_tracker/41090447612_Resume.pdf', NULL, '1', '2026-02-12', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-02-09 10:21:57', 1, '2026-02-09 10:30:19', 0, NULL, 1),
(28459, 'Thanga pritha .P', '11', '6382983388', '6383457514', 'Thangaprida@gmail.com', '2002-08-26', 23, '2', '2', 'Pugalraj. C', 'Retailer', 40000.00, 2, 0.00, 15000.00, 'Jallipatti , coimbatore', 'Arumpakam, chennai', '2602090019', '1', '1', 'upload_files/candidate_tracker/63617460933_HRJD.pdf', NULL, '1', '2026-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-02-09 10:37:55', 1, '2026-02-09 10:46:22', 0, NULL, 1),
(28460, 'Sumankumar', '4', '8438369066', '', 'sksuman462@gmail.com', '2002-04-14', 23, '2', '2', 'Sasimaran', 'Indane gas Incharge', 27000.00, 2, 19000.00, 21000.00, 'No 90 sundaram 3rd Street Vyasarpadi 39', 'No 90 sundaram 3rd Street Vyasarpadi Chennai 39', '2602090020', '50', '2', 'upload_files/candidate_tracker/81205113128_SumankumarResumeOG.docx', NULL, '1', '2026-02-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-09 12:14:03', 1, '2026-02-09 12:16:54', 0, NULL, 1),
(28461, 'alsafa syed musthafa', '11', '8610280053', '', 'alsafa.0811@gmail.com', '2002-11-08', 23, '2', '2', 'syed musthafa', 'warehouse manager', 50000.00, 1, 0.00, 250000.00, 'vadapalani', 'vadapalani', '2602090021', '1', '1', 'upload_files/candidate_tracker/7902258705_Alsafascv.pdf', NULL, '1', '2026-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-02-09 02:33:11', 1, '2026-02-09 02:43:15', 0, NULL, 1),
(28462, 'Melwin Immanuel D', '13', '8525885844', '', 'immanuelmelwin@gmail.com', '2003-10-07', 22, '3', '2', 'Deva asir.S', 'Buisness', 30000.00, 2, 0.00, 300000.00, 'Thoothukudi', 'Chennai', '2602100001', '', '1', 'upload_files/candidate_tracker/80819436357_Melwinresume2.pdf', NULL, '1', '2026-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-10 04:43:28', 1, '2026-02-10 04:50:30', 0, NULL, 1),
(28463, 'naveen pandi m', '13', '9003108678', '9952959498', 'mnaveenpandi22@gamil.com', '2000-04-22', 25, '3', '1', 'meenatchi', 'house wife', 2.75, 0, 0.00, 2.70, 'chennai', 'chennai', '2602100002', '', '1', 'upload_files/candidate_tracker/54925219057_MNaveenPandiResume.pdf1.pdf', NULL, '1', '2026-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-10 05:03:36', 1, '2026-02-10 05:10:47', 0, NULL, 1),
(28464, 'Guna Ashokkumar', '4', '9384359299', '9487439026', 'crazyguna801@gmail.com', '2002-04-22', 23, '2', '2', 'V. Ashokkumar', 'Mutton shop', 25000.00, 1, 0.00, 15000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2602100003', '1', '1', 'upload_files/candidate_tracker/10644640528_GUNARESUME11.pdf', NULL, '3', '2026-02-10', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-10 05:05:15', 154, '2026-02-10 11:39:23', 0, NULL, 1),
(28465, 'a s arjun', '6', '9600263198', '7558174750', 'santhabai1976@gmail.com', '1999-11-30', 26, '2', '2', 'santhabai', 'shop', 10000.00, 2, 25000.00, 28000.00, 'kanyakumari', 'kanyakumari', '2602100004', '50', '2', 'upload_files/candidate_tracker/41890318538_CUSTOMERCARERESUME.pdf', NULL, '1', '2026-02-13', 10, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-10 05:25:41', 159, '2026-02-13 01:17:52', 0, NULL, 1),
(28466, 'Pavithra K', '13', '6369986507', '', 'pavithrakamalakannan6@gmail.com', '2005-10-03', 20, '3', '2', 'Kamalakannan', 'Driver', 62000.00, 2, 0.00, 300000.00, 'Vandavasi', 'Chennai, Kovilambakkam', '2602100005', '', '1', 'upload_files/candidate_tracker/53669008099_PAVTHRA.pdf', NULL, '1', '2026-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-10 05:43:52', 1, '2026-02-10 05:48:34', 0, NULL, 1),
(28467, 'Sagar . O. N', '13', '9363204029', '', 'sagar007ak@gmail.com', '2004-05-15', 21, '3', '2', 'Nanda Kumar', 'Salesman', 20000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2602100006', '', '1', 'upload_files/candidate_tracker/4671651442_DARes1.pdf', NULL, '1', '2026-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-10 05:44:02', 1, '2026-02-10 05:47:16', 0, NULL, 1),
(28468, 'sivaraman s j', '5', '7448863610', '8124817513', 'ram.sri1082@gmail.com', '1996-07-15', 29, '3', '2', 's jothilingam', 'media', 20000.00, 2, 420000.00, 420000.00, 'chennai', 'chennai', '2602100007', '', '2', 'upload_files/candidate_tracker/58809862164_RESUME.pdf', NULL, '1', '2026-02-10', 1, '', '3', '59', '2026-02-10', 380000.00, '', '1', '1970-01-01', '1', 'Rejoining candidate after a coule of years direct reporting to gaurav sir based on the confirmation from Gaurav sir we are proceeding', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55560', '5151', '2026-02-10', 1, '2026-02-10 06:50:13', 60, '2026-02-12 03:27:42', 0, NULL, 1),
(28469, 'Simmathri', '6', '8870792117', '8682091228', 'naughtyboy0406@gmail.com', '2001-06-04', 24, '2', '2', 'Maliyadri', 'Sanitary worker', 50000.00, 2, 17000.00, 23000.00, 'Ambattur industrial estate', 'Ambattur industrial estate', '2602100008', '1', '2', 'upload_files/candidate_tracker/48276095539_SIMHADRIRESUME17072024.docx', NULL, '1', '2026-02-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2026-02-10 06:59:37', 154, '2026-02-10 02:45:54', 0, NULL, 1),
(28470, 'rajesh', '6', '7604842216', '8681964300', 'rajeshtamilselvi38@gmail.com', '2005-02-28', 20, '2', '2', 'tamil selvi', 'house wife', 50000.00, 1, 0.00, 18000.00, 'redhills', 'redhills', '2602100009', '50', '1', 'upload_files/candidate_tracker/16124593410_DocScanner03Feb20261200PM.pdf', NULL, '1', '2026-02-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-10 07:42:18', 159, '2026-02-10 05:12:14', 0, NULL, 1),
(28471, '', '0', '8681974300', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602100010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-10 07:48:39', 0, NULL, 0, NULL, 1),
(28472, 'Srinivasan R', '6', '8681964300', '7604842216', 'Seenuclash31124@gmail.com', '2004-11-03', 21, '2', '2', 'Ravikumar', 'Business', 35000.00, 1, 0.00, 18000.00, 'Puzhal', 'Puzhal', '2602100011', '50', '1', 'upload_files/candidate_tracker/70625236725_DocScanner03Feb20261201PM.pdf', NULL, '1', '2026-02-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-10 07:48:58', 159, '2026-02-10 05:16:39', 0, NULL, 1),
(28473, 'Abirami', '6', '9790880021', '9176909906', 'ranguabi@gmail.com', '1995-08-24', 30, '3', '1', 'Murugan', 'Employee', 30000.00, 3, 0.00, 20000.00, 'Madhavaram', 'Madhavaram', '2602100012', '', '1', 'upload_files/candidate_tracker/61087113966_ABIRAMIRresume1.pdf', NULL, '1', '2026-02-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', 'Venpa staffing -7708752899', '', '', '', '', '1970-01-01', 1, '2026-02-10 08:00:57', 159, '2026-02-13 04:54:04', 0, NULL, 1),
(28474, 'Sakthivel T', '13', '7010440532', '8098531923', 'sakthivel30.ts@gmail.com', '2002-05-30', 23, '3', '2', 'Thangavel M', 'Farmer', 30.00, 2, 0.00, 3.50, 'Perambalur', 'Sholinganallur', '2602100013', '', '1', 'upload_files/candidate_tracker/21043850297_SakthivelTResume1.pdf', NULL, '1', '2026-02-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', 'Aptitude not clear', '', '', '', '', '1970-01-01', 1, '2026-02-10 08:02:35', 159, '2026-02-12 05:37:03', 0, NULL, 1),
(28475, 'Abirami Sivamathavan', '4', '9384239316', '7010643681', 'abiramisivamathavan@gmail.com', '2001-06-22', 24, '5', '1', 'Sabarinathan', 'No', 160000.00, 2, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2602100014', '', '1', 'upload_files/candidate_tracker/68826010821_DocScanner09Feb20261246pm.pdf', NULL, '1', '2026-02-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-10 08:07:44', 1, '2026-02-10 08:10:00', 0, NULL, 1),
(28476, 'naveenkumar', '6', '9597745163', '7305901106', 'naveencadet1029@gmail.com', '2000-04-09', 25, '2', '2', 'Deivanai', 'Former', 10000.00, 1, 18000.00, 20000.00, '247, thenmathimangalam, Tiruvannamalai', '75,vsm garden street,Ashok nagar ,Chennai.', '2602100015', '50', '2', 'upload_files/candidate_tracker/81230661283_DOC20260206WA0006..pdf', NULL, '1', '2026-02-12', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-10 09:03:25', 159, '2026-02-12 05:30:53', 0, NULL, 1),
(28477, 'yazhini', '6', '7358284438', '', 'yazhinirameshkavin@gmail.com', '1996-06-27', 29, '3', '1', 'ramesh', 'photographer', 70000.00, 0, 0.00, 25000.00, 'karaikkal', 'vadapalani', '2602100016', '', '1', 'upload_files/candidate_tracker/52430101511_yazhiniresume.pdf', NULL, '1', '2026-02-10', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', 'venpa staffing', '', '', '55864', '55566', '1970-01-01', 1, '2026-02-10 09:12:50', 159, '2026-02-13 04:55:24', 0, NULL, 1),
(28478, 'S Mohammed Tanzeel', '5', '7358700705', '', 'tanzeelnara01@gmail.com', '1996-02-12', 29, '2', '2', 'Md shajahan', 'Salaried', 45000.00, 1, 390000.00, 400000.00, 'Vaniyambadi', 'Chennai periamet', '2602100017', '57', '2', 'upload_files/candidate_tracker/35876509082_TanzeelupdatedResume1.docx', NULL, '1', '2026-02-10', 0, '', '5', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected by sriram sir', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2026-02-10 09:18:07', 154, '2026-02-10 06:09:12', 0, NULL, 1),
(28479, '', '0', '6380364197', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602100018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-10 10:10:50', 0, NULL, 0, NULL, 1),
(28480, 'S.kiruthika', '6', '9150996331', '', 'kiruthikasrinivasan34@gmail.com', '2001-09-01', 24, '2', '2', 'Srinivasan', 'Electrician', 60000.00, 1, 15000.00, 25000.00, 'Perambur', 'Perambur', '2602100019', '50', '2', 'upload_files/candidate_tracker/67102078170_Kiruthikaresume.pdf', NULL, '2', '2026-02-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-10 12:21:55', 159, '2026-02-11 04:19:22', 0, NULL, 1),
(28481, 'M. Chithramegalai', '6', '7010126671', '9943581979', 'Chithramegalai4747@gmail.com', '2003-10-07', 22, '2', '2', 'Marijuana. P', 'Farmer', 20000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2602110001', '1', '1', 'upload_files/candidate_tracker/53972257979_CV2026021107243761.pdf', NULL, '1', '2026-02-11', 0, '', '3', '59', '2026-02-12', 156000.00, '', '3', '2026-02-12', '2', 'Communication fresher for our roles coming along with freind 9 months exp need to travel for almost 30kms need to check in traininf and check', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CI144', '5151', '2026-02-12', 1, '2026-02-11 05:01:06', 60, '2026-02-11 07:14:01', 0, NULL, 1),
(28482, 'Shalini.P', '4', '7010447075', '9787834896', 'shalu701044@gmail.com', '2003-07-26', 22, '2', '2', 'Mahamayee', 'Organiser', 10.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2602110002', '1', '1', 'upload_files/candidate_tracker/46602855577_CV202602110715359.pdf', NULL, '1', '2026-02-11', 0, '', '3', '59', '2026-02-12', 156000.00, '', '3', '2026-02-12', '1', 'Communication fresher for our roles coming along with freind 9 months exp need to travel for almost 30kms need to check in traininf and check', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2026-02-12', 1, '2026-02-11 05:01:11', 60, '2026-02-12 10:18:38', 0, NULL, 1),
(28483, 'Sowmiya.M', '4', '6382193194', '9597409265', 'sowmiyamanivannan23@gmail.com', '2002-08-23', 23, '2', '2', 'Manivannan.T', 'Salesman', 30000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2602110003', '1', '1', 'upload_files/candidate_tracker/19362640207_CV2025120411144562.pdf', NULL, '1', '2026-02-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-11 05:03:46', 154, '2026-02-11 12:43:11', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28484, '', '0', '6381105481', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602110004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-11 05:08:57', 0, NULL, 0, NULL, 1),
(28485, 'Ashima A', '11', '9488115272', '', 'ashimaashi262003@gmail.com', '2003-07-26', 22, '2', '2', 'Antony', 'Driver', 15000.00, 1, 0.00, 2000.00, 'Nagercoil', 'Tambaram', '2602110005', '1', '1', 'upload_files/candidate_tracker/78261532944_AshimaAntony121.pdf', NULL, '1', '2026-02-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-11 05:34:48', 159, '2026-02-11 04:03:01', 0, NULL, 1),
(28486, 'E.SOWNDARYA', '11', '9384655747', '7845884829', 'soundaryaaezhilan@gmail.com', '2000-05-03', 25, '2', '2', 'Ezhilan', 'Landpromotors', 50000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2602110006', '1', '1', 'upload_files/candidate_tracker/39365778931_updatedresumesow1.pdf', NULL, '1', '2026-02-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-11 06:03:28', 159, '2026-02-11 04:05:09', 0, NULL, 1),
(28487, 'VENKATESAN R', '6', '7358355842', '9790893784', 'venkatrc26@gmail.com', '1995-10-26', 30, '2', '2', 'Chinna Ponnu', 'House wife', 15000.00, 5, 21500.00, 25000.00, 'Ayanavaram', 'ayanavaram in chennai', '2602110007', '1', '2', 'upload_files/candidate_tracker/29402578670_NewResume20251.pdf', NULL, '1', '2026-02-11', 60, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', 'jAYA SURIYA', 'H1018', '', '55882', '55566', '1970-01-01', 1, '2026-02-11 06:09:49', 159, '2026-02-12 09:56:23', 0, NULL, 1),
(28488, 'Monisha v', '33', '7305658294', '', 'Monishavijayakumar013@gmail.com', '2003-04-14', 22, '2', '2', 'K .vijayakumar', 'Welder', 35000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2602110008', '1', '2', 'upload_files/candidate_tracker/29555208174_resume.pdf', NULL, '1', '2026-02-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-11 06:42:47', 159, '2026-02-11 04:06:02', 0, NULL, 1),
(28489, 'pREM KUMAR K', '6', '6381058465', '', 'iampremkumarcs@gmail.com', '1998-07-07', 27, '2', '2', 'Kumar M', 'Building contractor', 100000.00, 2, 21000.00, 22000.00, 'No:77 East Namachivayapuram Choolaimedu', 'Chennai-94', '2602110009', '1', '2', 'upload_files/candidate_tracker/43793167357_Prem2025.pdf', NULL, '1', '2026-02-11', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', 'Deepika', 'H1018', '', '55882', '55566', '1970-01-01', 1, '2026-02-11 06:44:38', 159, '2026-02-12 09:48:22', 0, NULL, 1),
(28490, 'Anirudh S', '6', '6379650095', '9043708946', 'anirudh.saran1234@gmail.com', '2003-07-09', 22, '2', '2', 'Saravanan S', 'Business', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2602110010', '1', '1', 'upload_files/candidate_tracker/93332237486_ANIRUDHSCV1.pdf', NULL, '1', '2026-02-12', 0, '', '3', '59', '2026-02-13', 198000.00, '', '1', '1970-01-01', '1', 'Communication Ok fresher for telesales need to check in training only', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55645', '5151', '2026-02-13', 1, '2026-02-11 06:54:06', 60, '2026-02-13 10:19:59', 0, NULL, 1),
(28491, 'Aswini', '6', '8124029189', '9840051719', 'ashusathish2000@gmail.com', '2000-12-30', 25, '2', '2', 'Sathishkumar', 'Supervisor', 50000.00, 2, 23000.00, 25000.00, 'Egmore', 'Egmore', '2602110011', '1', '2', 'upload_files/candidate_tracker/49840008855_ASHWINIRESUME.pdf', NULL, '1', '2026-02-12', 10, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good.also have experiance but expected Higher package', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2026-02-11 07:20:36', 159, '2026-02-12 05:28:41', 0, NULL, 1),
(28492, 'afreen fathima', '6', '8189929856', '7358416594', 'afreenfathima.1605@gmail.com', '2003-05-16', 22, '2', '2', 'baidu', 'car parts busines', 45000.00, 2, 20000.00, 23000.00, 'chennai', 'purasawakkam', '2602110012', '1', '2', 'upload_files/candidate_tracker/66455278121_CopyofAfreenFathima1.pdf', NULL, '1', '2026-02-12', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2026-02-11 07:20:42', 159, '2026-02-12 05:27:29', 0, NULL, 1),
(28493, 'Vengatesh J S', '6', '8015201771', '', 'vengateshvengat843@gmail.com', '2004-06-16', 21, '2', '2', 'Saravanan J K', 'daily weager', 30000.00, 1, 0.00, 18000.00, 'Madurai', 'Madurai', '2602110013', '1', '1', 'upload_files/candidate_tracker/40954260731_resume.pdf', NULL, '1', '2026-02-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'selvalakshmi', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-11 07:45:47', 159, '2026-02-16 05:37:29', 0, NULL, 1),
(28494, '', '0', '6369562045', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602110014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-11 08:08:04', 0, NULL, 0, NULL, 1),
(28495, 'Sudha S', '5', '6382671271', '7904836232', 'sudharenu7905@gmail.com', '1999-11-25', 26, '2', '1', 'Ananth. M', 'Kinesys Healthcare', 30000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2602110015', '1', '1', 'upload_files/candidate_tracker/79210915597_sudharesume11.docx', NULL, '1', '2026-02-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2026-02-11 10:20:24', 159, '2026-02-11 04:40:10', 0, NULL, 1),
(28496, 'Vinishalaxmi Ganesan', '6', '9791287806', '9791859021', 'vinishalaxmi2108@gmail.com', '2003-08-21', 22, '2', '2', 'Ganesan A Janaki G', 'Electrician House wife', 15.00, 1, 0.00, 15.00, 'Puducherry', 'Puducherry', '2602110016', '1', '1', 'upload_files/candidate_tracker/20370686281_VinishaLaxmiGResume.pdf', NULL, '1', '2026-02-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', 'Jaya suriya', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-11 10:21:01', 159, '2026-02-13 12:52:07', 0, NULL, 1),
(28497, 'Abinaya', '6', '6382805212', '9342052682', 'abhinayasabhi8@gmail.com', '1999-06-25', 26, '2', '2', 'Rajalakshmi', 'Home maker', 25.00, 1, 0.00, 15000.00, 'Virudhachalam', 'T nagar', '2602110017', '1', '1', 'upload_files/candidate_tracker/76156028720_ABINAYAresume.pdf', NULL, '1', '2026-02-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2026-02-11 10:24:56', 159, '2026-02-16 11:42:47', 0, NULL, 1),
(28498, 'akash s', '4', '6369264736', '', 'sivanandhamakash@gmail.com', '2000-04-01', 25, '4', '2', 'sivanandham a', 'electrici', 30000.00, 1, 18500.00, 25000.00, 'saiadepet', 'saidapet', '2602110018', '', '2', 'upload_files/candidate_tracker/24846493427_Akashresumeicici.pdf', NULL, '1', '2026-02-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-11 10:43:29', 1, '2026-02-11 10:47:05', 0, NULL, 1),
(28499, 'Sorna', '6', '9342548964', '', 'sornapriya206@gmail.com', '2003-06-20', 22, '2', '2', 'Vennila.s', 'Fresher', 500000.00, 2, 0.00, 200000.00, 'K.k.nagar', 'K.k.nagar', '2602110019', '1', '1', 'upload_files/candidate_tracker/91261037392_SornaResume.pdf', NULL, '1', '2026-02-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-02-11 12:04:09', 1, '2026-02-11 12:16:43', 0, NULL, 1),
(28500, 'munishajay', '11', '6379001469', '', 'munishajay438@gmail.com', '2001-10-25', 24, '2', '2', 'pal pandi', 'shop keeper', 30000.00, 2, 0.00, 200000.00, 'chennai', 'chennai', '2602110020', '1', '1', 'upload_files/candidate_tracker/16642585906_Ajayresume.pdf', NULL, '1', '2026-02-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-02-11 01:13:20', 1, '2026-02-11 01:20:16', 0, NULL, 1),
(28501, 'soorya kannan', '11', '9551647492', '', 'sooryakannan03@gmaail.com', '2001-01-04', 25, '2', '2', 'sumathi', 'house wife', 15000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2602110021', '1', '1', 'upload_files/candidate_tracker/63040356622_SOORYA.pdf', NULL, '1', '2026-02-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-11 01:32:31', 159, '2026-02-12 05:35:16', 0, NULL, 1),
(28502, 'Sivaani T', '11', '9840449829', '9884391483', 'ashoksivaani@gmail.com', '2004-11-02', 21, '2', '2', 'Thiruvenkadam S', 'PRO', 120000.00, 1, 15000.00, 18000.00, 'TNHB appartments bharathi Salai Ramapuram Chennai', 'TNHB appartments bharathi Salai Ramapuram Chennai', '2602110022', '1', '2', 'upload_files/candidate_tracker/69316773309_SivaaniTresume11.pdf', NULL, '1', '2026-02-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2026-02-11 01:39:46', 159, '2026-02-17 12:39:52', 0, NULL, 1),
(28503, 'Blessy Mercyline', '11', '8056017780', '', 'mercelineblessy@gmail.com', '2001-09-11', 24, '2', '1', 'Warren John Pereira', 'Coordinator - Hospital', 25000.00, 1, 0.00, 23000.00, 'Chennai', 'Chennai', '2602120001', '1', '1', 'upload_files/candidate_tracker/67724342674_RESUME18.01.20252.pdf', NULL, '1', '2026-02-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-12 03:53:58', 159, '2026-02-13 01:15:43', 0, NULL, 1),
(28504, '', '0', '7708030817', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602120002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-12 04:09:05', 0, NULL, 0, NULL, 1),
(28505, 'Mohamed RifaYath A', '13', '8903677609', '', 'mmohamedrifayath@gmail.com', '2003-02-20', 22, '3', '2', 'Akbar Ali', 'Driver', 35000.00, 3, 0.00, 3500000.00, 'Aduthurai', 'Aduthurai', '2602120003', '', '1', 'upload_files/candidate_tracker/51255753252_ResumeMohamedRifayath.pdf', NULL, '1', '2026-02-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', 'Aptitude not clear', '', '', '', '', '1970-01-01', 1, '2026-02-12 05:12:41', 159, '2026-02-12 05:36:26', 0, NULL, 1),
(28506, '', '0', '8903078127', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602120004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-12 05:24:12', 0, NULL, 0, NULL, 1),
(28507, 'sivaamritha', '4', '9344458337', '', 'amrithasiva22@gmail.com', '2003-04-22', 22, '2', '2', 's p kumaran', 'cusomer relationship manag', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2602120005', '50', '1', 'upload_files/candidate_tracker/541434521_K.SivaAmrithaFlowCVResume20250805.pdf', NULL, '1', '2026-02-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-12 05:40:44', 1, '2026-02-12 05:48:45', 0, NULL, 1),
(28508, 'Mohammed bilal', '13', '6383743737', '8608696990', 'mohammad32bilal@gmail.com', '2004-08-23', 21, '2', '2', 'Syed ali', 'Driver', 40000.00, 2, 0.00, 10000.00, 'Tirunelveli', 'Chennai', '2602120006', '1', '1', 'upload_files/candidate_tracker/38624640118_Bilalamzresume.pdf', NULL, '1', '2026-02-12', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-02-12 06:24:30', 159, '2026-02-12 12:05:46', 0, NULL, 1),
(28509, 'Ajitha', '4', '9952284945', '', 'aajitha941@gmail.com', '2001-07-24', 24, '1', '2', 'Maniarasan', 'Farmer', 10000.00, 3, 0.00, 15000.00, 'Gandharvakottai', 'Gandharvakottai', '2602120007', '', '1', 'upload_files/candidate_tracker/81938406669_AjithaResume.pdf', NULL, '1', '2026-02-12', 0, 'P1023', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-12 06:34:37', 154, '2026-02-12 04:01:21', 0, NULL, 1),
(28510, 'Dherthi Priya', '5', '6385045102', '7299755270', 'dherthipriya70@gmail.com', '2000-09-14', 25, '2', '2', 'Kovannan', 'Nil', 80000.00, 2, 26500.00, 35000.00, 'Pallavaram Chennai', 'Pallavaram Chennai', '2602120008', '1', '2', 'upload_files/candidate_tracker/28557426855_DherthiPriyaResume.pdf', NULL, '1', '2026-02-14', 0, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interested in Operations only', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55656', '55557', '1970-01-01', 1, '2026-02-12 07:00:36', 154, '2026-02-14 01:14:52', 0, NULL, 1),
(28511, 'KARTHIKEYAN G', '13', '8489681398', '', 'karthikgopal8489@gmail.com', '2003-07-06', 22, '2', '2', 'gopal', 'na', 15000.00, 2, 0.00, 3.50, 'thanjavur', 'Chennai', '2602120009', '1', '1', 'upload_files/candidate_tracker/68449838652_KARTHIKEYANRESUME.pdf', NULL, '1', '2026-02-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', 'aptitude not clear', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-12 07:18:35', 159, '2026-02-13 02:55:45', 0, NULL, 1),
(28512, 'Bhagya shree', '6', '7092979158', '9791883852', 'bhagyashreeparasuraman@gmail.com', '2003-08-08', 22, '2', '2', 'Parasuraman', 'Government employee', 20000.00, 2, 0.00, 2.50, 'Arakkonam', 'Ambatur', '2602120010', '50', '1', 'upload_files/candidate_tracker/84133995078_BhagyaShreePRESUME.Pdf', NULL, '1', '2026-02-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-12 07:35:05', 159, '2026-02-12 05:31:07', 0, NULL, 1),
(28513, 'Premavathi M', '6', '9566514364', '9943422789', 'Prema200400@gmail.com', '2004-06-05', 21, '2', '2', 'Mohan. M', 'Painter', 16000.00, 1, 0.00, 2.50, 'Tiruvallur', 'Thirumullaivoyal', '2602120011', '50', '1', 'upload_files/candidate_tracker/68558550562_pdf2resumeprema.pdf', NULL, '1', '2026-02-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-12 07:35:06', 159, '2026-02-12 05:32:26', 0, NULL, 1),
(28514, 'Dharshan L', '13', '9043813443', '', 'dharshanlak2005@gmail.com', '2005-04-24', 20, '2', '1', 'Lakshmanan', 'Agriculture', 15000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2602120012', '1', '1', 'upload_files/candidate_tracker/73072913746_DharshanResume1.pdf', NULL, '1', '2026-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1007', '0', '0', '0', NULL, 1, '2026-02-12 10:05:39', 1, '2026-02-12 10:18:52', 0, NULL, 1),
(28515, 'sanjai kannah', '4', '6382017912', '6380412316', 'sanjaikannah07@gmail.com', '2001-01-03', 25, '2', '2', 'veerapandian', 'driver', 20000.00, 1, 0.00, 15000.00, 'thanjavur', 'thanjavur', '2602120013', '1', '1', 'upload_files/candidate_tracker/35578601384_Sanjayresume2.pdf', NULL, '1', '2026-02-13', 0, '', '3', '59', '2026-02-16', 162000.00, '', NULL, '2026-02-24', '1', 'Communciation Ok fresher for our roles need to check in training and see', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2026-02-16', 1, '2026-02-12 10:15:17', 60, '2026-02-16 12:34:27', 0, NULL, 1),
(28516, '', '0', '6382017922', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602120014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-12 10:52:41', 0, NULL, 0, NULL, 1),
(28517, 'vijay N', '13', '9585831569', '', 'vijay21924@gmail.com', '2004-09-21', 21, '2', '1', 'neelamegam', 'former', 25000.00, 1, 0.00, 300000.00, 'Ariyalur', 'chennai', '2602120015', '1', '1', 'upload_files/candidate_tracker/24263065325_VIJAYNBCA20254.pdf', NULL, '1', '2026-02-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'kiran', 'aptitude not clear', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-12 10:54:13', 159, '2026-02-14 12:12:04', 0, NULL, 1),
(28518, 'akileswaran m', '13', '9361275614', '', 'akileswaran505@gmail.com', '2004-10-09', 21, '2', '2', 'murugesan', 'former', 10000.00, 1, 0.00, 2.00, 'chennai', 'chennai', '2602120016', '1', '1', 'upload_files/candidate_tracker/84072238113_AkileswaranMJavaDeveloperResume.pdf', NULL, '1', '2026-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2026-02-12 11:41:56', 1, '2026-02-12 11:48:31', 0, NULL, 1),
(28519, 'Manimaran A', '6', '9585553239', '9677474296', 'maran5647@gmail.com', '2000-04-15', 25, '2', '2', 'BHAVANI', 'House wife', 30000.00, 1, 15000.00, 20000.00, 'Pondicherry', 'Kodambakkam', '2602120017', '1', '2', 'upload_files/candidate_tracker/52380215514_ManimaranUpdatedResume.pdf', NULL, '1', '2026-02-13', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-02-12 11:56:02', 159, '2026-02-13 01:14:18', 0, NULL, 1),
(28520, 'suweetha R', '6', '6383678649', '9500008831', 'swethachitra18@gmail.com', '2004-08-07', 21, '2', '2', 'father', 'automobile consulting', 6.00, 1, 0.00, 16.50, 'ambattur industrial estate', 'ambattur industrial estate', '2602120018', '50', '1', 'upload_files/candidate_tracker/24327965688_text.pdf', NULL, '1', '2026-02-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-12 12:03:05', 159, '2026-02-13 01:25:22', 0, NULL, 1),
(28521, 'muthuvel p', '13', '9345169159', '', 'mvel89112@gmail.com', '2005-01-10', 21, '2', '2', 'poongodi', 'employee', 10000.00, 1, 0.00, 1.80, 'chennai', 'chennai', '2602120019', '1', '1', 'upload_files/candidate_tracker/36701460270_MuthuvelPJavaFullstackDeveloper.pdf', NULL, '1', '2026-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2026-02-12 12:50:25', 1, '2026-02-12 12:54:05', 0, NULL, 1),
(28522, 'Subasri E', '33', '9487844257', '', 'subasri2409@gmail.com', '2002-09-24', 23, '2', '2', 'Elangovan', 'Unemployed', 25000.00, 2, 0.00, 25000.00, '67/24 Pillaiyar kovil street , kaspa , Vellore -1', '67/24 Pillaiyar kovil street , kaspa , Vellore -1', '2602120020', '1', '2', 'upload_files/candidate_tracker/20513604886_Resumeedit1.pdf', NULL, '1', '2026-02-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-12 12:52:33', 159, '2026-02-13 03:01:53', 0, NULL, 1),
(28523, 'Milinda Anna Edward', '11', '9499903912', '', 'milindaanna@gmail.com', '1997-12-12', 28, '2', '2', 'Elvis Jude Edward', 'Own Business', 20000.00, 3, 15000.00, 18000.00, 'Mathur', 'Mathur', '2602120021', '1', '2', 'upload_files/candidate_tracker/45355629852_MilindaAnnaEdwardResume.pdf', NULL, '1', '2026-02-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-12 12:59:19', 159, '2026-02-13 03:02:43', 0, NULL, 1),
(28524, '', '0', '9840702046', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602120022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-12 01:11:01', 0, NULL, 0, NULL, 1),
(28525, 'Thilothini', '4', '9962372990', '', 'thilothini1701@gmail.com', '2001-01-17', 25, '2', '1', 'Siva', 'Quality engineer', 18000.00, 2, 12000.00, 20000.00, '4/913 Mogappair West Chennai 600037', '4/913 Mogappair West Chennai 600037', '2602120023', '50', '2', 'upload_files/candidate_tracker/39164478708_THILOTHINICV1.pdf', NULL, '1', '2026-02-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-12 01:22:08', 1, '2026-02-12 01:33:21', 0, NULL, 1),
(28526, 'Amrutha R', '6', '6363307440', '', 'ramrutha923@gmail.com', '2002-08-30', 23, '5', '2', 'Rajkumar S', 'Employee', 40000.00, 1, 224000.00, 445000.00, 'Bengaluru', 'Bengaluru', '2602120024', '', '2', 'upload_files/candidate_tracker/20180997928_AmruthaUpdatedResume.pdf', NULL, '1', '2026-02-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-12 01:34:47', 1, '2026-02-12 01:36:58', 0, NULL, 1),
(28527, '', '0', '6282017912', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602120025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-12 02:19:53', 0, NULL, 0, NULL, 1),
(28528, 'Gokul Nagaraj', '31', '8056856632', '9123582902', 'gokulnagarajece@gmail.com', '2002-03-12', 23, '2', '2', 'Nagaraj G', 'Fitter', 20000.00, 1, 0.00, 4.00, 'Tiruvallur', 'Tiruvallur', '2602130001', '1', '1', 'upload_files/candidate_tracker/86927567324_GOKULRESUMEFINAL1.pdf', NULL, '1', '2026-02-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'aptitude not clear', 'H1000', '', '', '', '1970-01-01', 1, '2026-02-13 03:03:40', 159, '2026-02-13 02:57:28', 0, NULL, 1),
(28529, 'Priyadharshini k', '6', '7904847942', '6380672593', 'shredharshu@gmail.com', '2005-07-12', 20, '1', '2', 'Karunanidhi', 'Formar', 52000.00, 1, 0.00, 16000.00, 'Saidapet chennai', 'Saidapet chennai', '2602130002', '', '1', 'upload_files/candidate_tracker/49259582736_PRIYADHARSHINIRESUMENEW2.pdf', NULL, '1', '2026-02-13', 0, 'P1287', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', 'pavitha reference', '', '', '', '', '1970-01-01', 1, '2026-02-13 04:45:54', 159, '2026-02-13 10:29:07', 0, NULL, 1),
(28530, 'Srimathy Y', '6', '7845857113', '8015760114', 'y.srimathy0206@gmail.com', '2005-06-02', 20, '2', '2', 'Karpagam', 'House keeping', 10000.00, 0, 15.00, 19.00, 'Chennai', 'Chennai', '2602130003', '1', '2', 'upload_files/candidate_tracker/35291960516_Srimathyresume2.docx', NULL, '1', '2026-02-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and performance is ok. also she have Experience. Will Check With her in the training period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', 'jaya suriya', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-02-13 06:14:05', 154, '2026-02-13 02:33:50', 0, NULL, 1),
(28531, 'Mohammed Waleeullah putto', '13', '9442307714', '7094297212', 'Mohammedwaleeullahp@gmail.com', '2006-08-14', 19, '3', '2', 'Mohammed Ismail', 'Retired businessman', 18000.00, 5, 0.00, 20000.00, 'Melvisharam ranipet', 'Chennai periamet', '2602130004', '', '1', 'upload_files/candidate_tracker/49951999914_MohammedWaleeullahPFlowCVResume20260120.pdf', NULL, '1', '2026-02-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'aptitude not clear', '', '', '', '', '1970-01-01', 1, '2026-02-13 06:26:40', 159, '2026-02-13 02:56:57', 0, NULL, 1),
(28532, 'Vishnupriya', '13', '9698840494', '', 'vpriyaarvind@gmail.com', '1992-08-31', 33, '2', '1', 'Arvind Kumar', 'Manager', 50000.00, 1, 240000.00, 400000.00, 'Chennai', 'Chennai', '2602130005', '50', '2', 'upload_files/candidate_tracker/51424864507_VishnupriyaSelvarajresumae4.pdf', NULL, '1', '2026-02-14', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-13 07:29:48', 154, '2026-02-14 03:29:24', 0, NULL, 1),
(28533, 'refana fathima', '11', '7200520654', '8122284733', 'refana9786@gmail.com', '1997-06-08', 28, '2', '1', 'salman akram', 'sales consultant', 21000.00, 1, 0.00, 17000.00, 'madravoyal', 'maduravoyal', '2602130006', '1', '1', 'upload_files/candidate_tracker/97880256349_RefanaResume.pdf', NULL, '1', '2026-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-02-13 09:56:51', 1, '2026-02-13 10:01:41', 0, NULL, 1),
(28534, 'Dhanush', '13', '8939134623', '', 'dhanushg1508@gmail.com', '2003-08-15', 22, '3', '2', 'ganesan n', 'overt taff', 50000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2602130007', '', '1', 'upload_files/candidate_tracker/16386164969_DhanushGanesan14.pdf', NULL, '1', '2026-02-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-13 11:49:42', 1, '2026-02-13 11:53:24', 0, NULL, 1),
(28535, '', '0', '7540019063', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602130008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-13 12:03:58', 0, NULL, 0, NULL, 1),
(28536, 'Uma Maheswari.R', '5', '9094668408', '9710141590', 'uma13273@gmail.com', '2004-02-28', 21, '2', '2', 'Ramu', 'Driver', 11500.00, 1, 20000.00, 27000.00, 'Ayanavaram chennai', 'Ayanavaram chennai', '2602130009', '66', '2', 'upload_files/candidate_tracker/39047289996_20260209094350.pdf', NULL, '1', '2026-02-14', 0, '', '3', '59', '2026-03-02', 345696.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp bank bazaar Can be trained in our roles need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '2026-03-02', 1, '2026-02-13 01:02:16', 60, '2026-03-02 09:40:13', 0, NULL, 1),
(28537, '', '0', '9182039470', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-13 01:04:39', 0, NULL, 0, NULL, 1),
(28538, '', '0', '9940165422', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602130011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-13 01:26:23', 0, NULL, 0, NULL, 1),
(28539, '', '0', '7338918519', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602130012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-13 02:06:29', 0, NULL, 0, NULL, 1),
(28540, 'Sandeep kumar', '6', '9840498599', '', 'sandeep.v20042609@gmail.com', '2004-09-26', 21, '2', '2', 'Vijaya Kumar', 'ICF', 600000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2602130013', '1', '1', 'upload_files/candidate_tracker/46232136243_ResumeVSandeepKumarFinal.pdf', NULL, '1', '2026-02-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-13 03:26:56', 154, '2026-02-25 12:21:40', 0, NULL, 1),
(28541, 'Sabarish S', '11', '8667635962', '', 'imjustclassy565@gmail.com', '2002-12-07', 23, '2', '2', 'subramanian', 'business', 50000.00, 1, 0.00, 15000.00, 'Coimbatore', 'chennai', '2602140001', '1', '1', 'upload_files/candidate_tracker/28545092149_SABARISHSUBRAMANIANHRIOrgResume.pdf1.pdf5.pdf.pdf', NULL, '1', '2026-02-14', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-02-14 04:11:32', 154, '2026-02-14 03:24:05', 0, NULL, 1),
(28542, 'Vishnu R', '6', '9021069791', '', 'vishnur1817333@gmail.com', '2004-03-28', 21, '2', '2', 'Ramu', 'Farmer', 72000.00, 1, 0.00, 15000.00, 'Dindigul', 'Chennai', '2602140002', '50', '1', 'upload_files/candidate_tracker/32210527663_VishnuResume.pdf', NULL, '1', '2026-02-14', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2026-02-14 04:59:03', 159, '2026-02-14 01:30:58', 0, NULL, 1),
(28543, 'vimal', '6', '9840982118', '9176126512', 'vimalchris1995@gmail.com', '1995-07-17', 30, '2', '2', 'N sampathammal', 'Retired', 10000.00, 1, 15000.00, 25000.00, 'Ambattur', 'Ambattur', '2602140003', '1', '2', 'upload_files/candidate_tracker/31103447959_vimal123451744181854698vimalchristopher.docx', NULL, '1', '2026-02-14', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2026-02-14 05:35:44', 154, '2026-02-14 03:25:31', 0, NULL, 1),
(28544, 'Gobi Kumaravelu', '6', '8248667505', '7200863597', 'gobi7923@gmail.com', '2002-10-17', 23, '2', '2', 'Kumaravelu', 'Watchman', 25000.00, 1, 0.00, 20000.00, 'Kanyakumari', 'Chennai,Avadi', '2602140004', '50', '1', 'upload_files/candidate_tracker/67533226956_resume23.pdf', NULL, '2', '2026-02-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-14 05:38:46', 159, '2026-02-16 03:01:03', 0, NULL, 1),
(28545, 'gokul raghavan thangapandian', '6', '7358650350', '9094267126', 'gokulraghavan68@g.mail.com', '2011-02-14', 0, '2', '2', 'thangapandian.a', 'buissness man', 50000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2602140005', '50', '1', 'upload_files/candidate_tracker/28337955780_GokulRaghavanTResumeUpdated.pdf', NULL, '1', '2026-02-14', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-02-14 05:41:55', 159, '2026-02-14 01:21:04', 0, NULL, 1),
(28546, 'Swathy S', '11', '6374198306', '', 'swathy.sridhar2000@gmail.com', '2000-07-10', 25, '2', '2', 'Sridhar P', 'Sales Manager', 300000.00, 1, 12000.00, 20000.00, 'Chennai', 'Chennai', '2602140006', '1', '2', 'upload_files/candidate_tracker/79786378502_DOC20260202WA0001.1.pdf', NULL, '1', '2026-02-14', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-02-14 05:42:19', 159, '2026-02-14 01:33:55', 0, NULL, 1),
(28547, 'Sakthi Bala', '13', '9384601962', '9600037847', 'sakthibala64469@gmail.com', '2003-10-16', 22, '2', '2', 'Balasubramaniyan', 'Shop keeper', 30000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2602140007', '1', '2', 'upload_files/candidate_tracker/69702992975_Sakthiexp20261.pdf', NULL, '1', '2026-02-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-02-14 06:38:58', 1, '2026-02-14 06:47:11', 0, NULL, 1),
(28548, '', '0', '8838361281', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-14 07:25:32', 0, NULL, 0, NULL, 1),
(28549, 'MOHAMED ASHIF ALI A', '13', '6382947757', '9677717960', 'mohamedashif180@gmail.com', '2001-01-12', 25, '2', '2', 'Thoulath Nisha', 'House wife', 10000.00, 0, 150000.00, 200000.00, 'Velachery Chennai', 'Velachery Chennai', '2602140009', '1', '2', 'upload_files/candidate_tracker/19821463513_AshifResume.pdf', NULL, '1', '2026-02-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not clear', 'kiran', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-14 08:00:34', 159, '2026-02-16 11:57:51', 0, NULL, 1),
(28550, '', '0', '6382947747', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602140010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-14 08:55:39', 0, NULL, 0, NULL, 1),
(28551, '', '0', '9025858478', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602140011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-14 08:57:00', 0, NULL, 0, NULL, 1),
(28552, 'Nithishkumar', '13', '8428401070', '', 'nithishkumarsde20702@gmail.com', '2002-07-20', 23, '6', '2', 'Balaji C', 'Daily wage', 20000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2602140012', '', '1', 'upload_files/candidate_tracker/42863715010_Nithishkuumarsoftwaredeveloper.pdf', NULL, '1', '2026-02-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-14 09:16:06', 159, '2026-02-14 02:59:33', 0, NULL, 1),
(28553, 'Mosses Rabinson T', '6', '9384639080', '', 'mossesrabinson66@gmail.com', '2000-06-06', 25, '2', '2', 'Thiyakaran D', 'Sales Manager', 27000.00, 1, 27000.00, 32000.00, 'Chennai', 'Chennai', '2602140013', '1', '2', 'upload_files/candidate_tracker/86214882454_UpdatedResume11.pdf', NULL, '1', '2026-02-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-02-14 11:23:46', 159, '2026-02-16 02:40:23', 0, NULL, 1),
(28554, 'Janani Murugan', '6', '9840428030', '', 'janameera43807@gmail.com', '2001-01-24', 25, '2', '2', 'Murugan G', 'Farmer', 14000.00, 1, 0.00, 18000.00, 'Vettamangalam,Tanjore district', 'Poonamallee, Chennai', '2602140014', '1', '1', 'upload_files/candidate_tracker/7991282345_MJANANI02062026.pdf', NULL, '1', '2026-02-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-02-14 12:21:20', 1, '2026-02-14 12:31:17', 0, NULL, 1),
(28555, 'A Ajay', '6', '6383052867', '8778557061', 'ajayajay77547@gmail.com', '2005-05-18', 20, '4', '2', 'ARIVAZHAGAN', 'Small sole trader', 25000.00, 1, 18000.00, 20000.00, 'Chennai', 'Sevvapet', '2602140015', '', '2', 'upload_files/candidate_tracker/98601212224_AjayResume.pdf', NULL, '1', '2026-02-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-14 12:36:51', 1, '2026-02-14 12:42:59', 0, NULL, 1),
(28556, 'MADDELA ROSHINI NAGA SRI', '11', '7337544460', '', 'roshininagasri64@gmail.com', '2004-04-07', 21, '2', '2', 'M.Naga Srinivasa Rao', 'Railways', 60000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2602140016', '1', '1', 'upload_files/candidate_tracker/91575494037_RoshniCV1.pdf', NULL, '1', '2026-02-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-14 01:07:15', 159, '2026-02-16 01:25:30', 0, NULL, 1),
(28557, 'Lakshmi priYa', '11', '7358368805', '', 'lakshmipriyasiva14@gmail.com', '2005-03-14', 20, '2', '2', 'quadinator in Autotech', 'bcom CA', 40000.00, 1, 15000.00, 22000.00, 'Chennai', 'Chennai', '2602140017', '1', '2', 'upload_files/candidate_tracker/35797308732_LakshmiPriyaResumecompressed.pdf', NULL, '1', '2026-02-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '', '', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-14 01:14:47', 159, '2026-02-16 03:02:26', 0, NULL, 1),
(28558, 'Divya.B', '33', '9884646772', '', 'divyathilagavathi.b@gmail.com', '2002-03-13', 23, '2', '2', 'V.Baskaran', 'General store', 160000.00, 2, 14000.00, 20000.00, 'Chennai', 'Chennai', '2602140018', '1', '2', 'upload_files/candidate_tracker/28254966687_cv.pdf', NULL, '1', '2026-02-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-14 01:19:05', 159, '2026-02-16 05:27:10', 0, NULL, 1),
(28559, 'Akash', '34', '9080937735', '', 'akashanbazhagan798@gmail.com', '2000-06-07', 25, '5', '2', 'Anbazhagan', 'Chooli', 20000.00, 0, 30000.00, 350000.00, 'Coimbatore', 'Chennai', '2602140019', '', '2', 'upload_files/candidate_tracker/7085579682_AkashAnbu.pdf', NULL, '3', '2026-02-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-14 01:21:14', 1, '2026-02-14 01:25:39', 0, NULL, 1),
(28560, 'Anandhi A', '11', '7200238185', '6385257155', 'anandhianand687@gmail.com', '2004-09-10', 21, '2', '2', 'Anand', 'Business man', 200000.00, 3, 0.00, 15000.00, 'Agaramel, poonamallee', 'Agaramel,Poonamallee', '2602140020', '1', '1', 'upload_files/candidate_tracker/56244975830_Uploadedresume.pdf', NULL, '1', '2026-02-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-02-14 01:51:43', 1, '2026-02-15 11:35:27', 0, NULL, 1),
(28561, '', '0', '6369622119', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602140021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-14 03:47:45', 0, NULL, 0, NULL, 1),
(28562, 'Tamil mani.M', '5', '8438308512', '', 'tamilmanim1998@gmail.com', '1998-07-09', 27, '2', '2', 'B.Mohan', 'Retired', 50000.00, 0, 400000.00, 450000.00, 'Ambattur', 'Ambattur', '2602160001', '1', '2', 'upload_files/candidate_tracker/6830225362_resumecompressed.pdf', NULL, '1', '2026-02-16', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55656', '55557', '1970-01-01', 1, '2026-02-16 04:51:11', 159, '2026-02-16 02:41:30', 0, NULL, 1),
(28563, 'THIYAGARAJ', '6', '7092716876', '', 'thiyagaraj.k11@gmail.com', '1997-05-30', 28, '2', '2', 'Kanniyappan', 'Cooli', 40000.00, 3, 2.80, 3.50, 'No 19 anna st gandhi nagar selaiyur chennai 73', 'Chennai', '2602160002', '1', '2', 'upload_files/candidate_tracker/9698254453_ThiyagarajResume.pdf', NULL, '3', '2026-02-16', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55882', '55566', '1970-01-01', 1, '2026-02-16 04:59:59', 159, '2026-02-16 02:40:55', 0, NULL, 1),
(28564, 'SANGEETHA', '11', '9150194624', '9840670754', 'sangeethamageshkumar14@gmail.com', '2003-04-01', 22, '2', '2', 'P MAGESH KUMAR', 'MUSICIAN', 300000.00, 1, 24000.00, 20000.00, 'CHENNAI - TRIPLICANE', 'CHENNAI - TRIPLICANE', '2602160003', '1', '2', 'upload_files/candidate_tracker/7628003158_SangeethaResume.pdf', NULL, '1', '2026-02-16', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2026-02-16 05:01:08', 159, '2026-02-16 02:38:27', 0, NULL, 1),
(28565, 'Dhanush', '13', '8825420759', '', 'dhanushg1508@gmail.com', '2003-08-15', 22, '5', '2', 'ganesan n', 'government stall', 50000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2602160004', '', '1', 'upload_files/candidate_tracker/20620951098_DhanushGanesan14.pdf', NULL, '1', '2026-02-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-16 05:12:47', 1, '2026-02-16 05:17:08', 0, NULL, 1),
(28566, 'sneha R', '4', '8220793245', '9600625959', 'chandransneha27@gmail.com', '2002-03-27', 23, '2', '2', 'ramachandran', 'theatre Assistant in sb hospital', 240000.00, 0, 270000.00, 216000.00, 'thanjavur', 'thanjavur', '2602160005', '1', '2', 'upload_files/candidate_tracker/94151363515_resume.pdf', NULL, '1', '2026-02-17', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile completed bsc in bon secures college2022 passed out....2022 to 2024 worked in excela technology us based shift 23k,,,due to project closure and joined in malabar gold backend process and  releived ...father assistant to doctor native kerala ....settled in thanjavur..rental house local only expected 17k..kindly cross check and confirm...immediate joining', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-16 05:39:16', 154, '2026-02-17 02:58:09', 0, NULL, 1),
(28567, 'Nagarajan Sakthivel', '13', '9384648859', '', 'nagasakthi2000@gmail.com', '2001-03-27', 24, '3', '2', 'parent', 'driver', 30000.00, 2, 0.00, 350000.00, 'chennai', 'chennai', '2602160006', '', '1', 'upload_files/candidate_tracker/32154932566_NagarajanS.pdf', NULL, '1', '2026-02-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-16 06:59:47', 159, '2026-02-16 12:54:32', 0, NULL, 1),
(28568, 'Gowtham A', '13', '9629042179', '', 'gowthamarul2179@gmail.com', '2004-07-05', 21, '3', '2', 'Arul T', 'Driver', 15000.00, 1, 0.00, 250000.00, 'Chidambaram', 'Velachery', '2602160007', '', '1', 'upload_files/candidate_tracker/44434902398_GowthamResume2026f.pdf', NULL, '1', '2026-02-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-16 07:00:56', 159, '2026-02-16 12:54:42', 0, NULL, 1),
(28569, 'Kartheeswaran s', '6', '8072716159', '', 'kartheeswarans13@gmail.com', '2005-04-11', 20, '2', '2', 'Subbiah', 'Father', 30000.00, 1, 0.00, 20000.00, '2-2/2, Arunthathiyar street, Peraiyur, madurai', 'Madurai', '2602160008', '1', '1', 'upload_files/candidate_tracker/99823810561_CV2025082110361873.pdf', NULL, '3', '2026-02-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-16 08:12:54', 159, '2026-02-16 05:42:28', 0, NULL, 1),
(28570, '', '0', '9514714962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602160009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-16 10:22:13', 0, NULL, 0, NULL, 1),
(28571, 'SRIDHAR T', '13', '8098505481', '', 'vijitamil04@gmail.com', '1999-11-18', 26, '2', '2', 'Father', 'Engineer', 50000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Chennai', '2602160010', '1', '1', 'upload_files/candidate_tracker/93808320058_SRIDHARRESUME2.03IT.pdf', NULL, '1', '2026-02-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-16 10:49:57', 154, '2026-02-18 03:01:10', 0, NULL, 1),
(28572, 'immanuvel david m', '6', '9047774596', '9942039056', 'immanuveldavid17@gmail.com', '1997-02-17', 28, '2', '2', 'mariyaselvam', 'father', 1.00, 1, 2.40, 3.00, 'irudayampattu Sankarapuram dt Tamil Nadu 605702', 'NO:12/9’ Kadaperi, Tamabaram, Chennai 600045', '2602160011', '1', '2', 'upload_files/candidate_tracker/69560960904_IMMANUVELRESUME..pdf', NULL, '1', '2026-02-17', 15, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2026-02-16 12:34:47', 159, '2026-02-17 01:31:47', 0, NULL, 1),
(28573, 'Balaji M', '9', '9786485692', '', 'balajimba.1@gmail.com', '1988-06-23', 37, '1', '1', 'Divyasri P S', 'Salaried', 130000.00, 1, 1150000.00, 1350000.00, 'Chennai', 'Chennai', '2602160012', '', '2', 'upload_files/candidate_tracker/6044837925_BalajiResume1.pdf', NULL, '1', '2026-02-16', 15, '55605', '3', '59', '2026-03-02', 1275000.00, '', NULL, '2026-03-09', '1', 'Reference Profile Suresh Sir (Lingam Reference) profile for Branch Manager Role', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', '', '', '5151', '5151', '2026-03-02', 1, '2026-02-16 01:23:03', 154, '2026-03-02 10:42:34', 0, NULL, 1),
(28574, 'Suganthi', '4', '9943465208', '9361059835', 'suganthi30598@gmail.com', '1998-05-30', 27, '2', '1', 'Subash chandra bose', 'Senior house keeping Associate', 30000.00, 1, 17000.00, 20000.00, 'No. 1183/58A, Thamarankottai North, Rasiyankadu,', 'No. 1183/58A, Thamarankottai North, Rasiyankadu', '2602160013', '1', '2', 'upload_files/candidate_tracker/85860584828_RESUMESUGANTHI.pdf', NULL, '1', '2026-02-17', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'long distance', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-16 01:57:29', 154, '2026-02-17 03:00:37', 0, NULL, 1),
(28575, 'Abinaya S', '4', '8220563599', '', 'abinaya123az@gmail.com', '2002-03-09', 23, '2', '2', 'Gokul', 'Technician', 30000.00, 1, 20000.00, 25000.00, 'Vellore', 'Ambathur, Chennai', '2602160014', '50', '2', 'upload_files/candidate_tracker/34515712807_AbinayaResumeEdited.pdf', NULL, '1', '2026-02-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-16 08:24:08', 1, '2026-02-16 08:30:29', 0, NULL, 1),
(28576, 'Sakthivel M', '13', '6381086975', '', 'murugansakthivel175@gmail.com', '2004-08-13', 21, '2', '2', 'Kiran HR', 'Wages', 10000.00, 0, 0.00, 15000.00, 'Villupuram', 'Villupuram', '2602170001', '1', '1', 'upload_files/candidate_tracker/69378734469_SakthivelMSoftware11768801336949.pdf', NULL, '1', '2026-02-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Aptitude not cleared', '', 'H1018', '', '', '', '2026-02-17', 1, '2026-02-17 04:21:03', 159, '2026-02-17 12:41:39', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28577, 'Poojastee J', '13', '7305901106', '9597745163', 'poojastee30@gmail.com', '2001-06-11', 24, '3', '2', 'Jayaraman', 'Farmer', 25000.00, 1, 0.00, 2.00, 'Thiruppadhal', 'Chennai', '2602170002', '', '1', 'upload_files/candidate_tracker/25440874503_PoojasteeResumeFinal1767524684689Poojastee.docx', NULL, '1', '2026-02-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Aptitude Not Cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-17 04:52:29', 159, '2026-02-17 12:40:07', 0, NULL, 1),
(28578, 'Gowtham Ranganathan', '6', '9080400487', '9600791269', 'gowtham17012002@gmail.com', '2002-02-17', 24, '2', '2', 'Ranganathan M', 'Farmer', 180000.00, 1, 0.00, 160000.00, 'Abimanyu street nadvoor jolarpettai Tirupattur', 'Ashok nagar', '2602170003', '1', '1', 'upload_files/candidate_tracker/37947370970_gowthamCV.pdf', NULL, '1', '2026-02-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-17 04:55:53', 159, '2026-02-17 11:35:08', 0, NULL, 1),
(28579, 'JENANI PRIYA J', '11', '8072854433', '', 'jenanikumar2000@gmail.com', '2000-11-02', 25, '2', '2', 'Jayakumar', 'Foreman in telephonic department - NLC', 800000.00, 1, 0.00, 20000.00, 'NEYVELI -3', 'Sas Hostel Thiruvanmiyur, Chennai', '2602170004', '1', '2', 'upload_files/candidate_tracker/46963942871_Jenanipriyacv1.pdf', NULL, '1', '2026-02-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '', '1970-01-01', 1, '2026-02-17 05:23:27', 159, '2026-02-17 01:39:44', 0, NULL, 1),
(28580, 'Ratheesh', '13', '9500413586', '', 'ratheeshkrishnan2003@gmail.com', '2003-03-26', 22, '2', '2', 'Krishnan R', 'Ex army', 28000.00, 1, 0.00, 25000.00, 'Nagercoil', 'Chennai', '2602170005', '1', '1', 'upload_files/candidate_tracker/73689659377_RATHEESHKB.ECSE.pdf', NULL, '1', '2026-02-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Aptitude Not Cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-17 05:45:08', 159, '2026-02-17 12:54:52', 0, NULL, 1),
(28581, 'Elisha Samuel S', '11', '9499049862', '', 'thomasselvan9@gmail.com', '2001-10-31', 24, '4', '2', 'TK selvan', 'Process associate in wvi', 53000.00, 1, 12184.00, 15000.00, 'Hyderabad', 'Kodambakkam, Chennai', '2602170006', '', '2', 'upload_files/candidate_tracker/17080370147_RESUME2025.pdf', NULL, '1', '2026-02-17', 3, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '', '1970-01-01', 1, '2026-02-17 06:39:08', 159, '2026-02-17 01:24:34', 0, NULL, 1),
(28582, 'R AARTHY', '6', '7358491053', '8428909596', 'barathinagar7thst@gmail.com', '2004-11-03', 21, '2', '2', 'N.Rajasekar', 'Cooli', 20000.00, 2, 16.00, 16.00, 'Chennai', 'Chennai', '2602170007', '1', '2', 'upload_files/candidate_tracker/5303131560_AARTHI.pdf', NULL, '1', '2026-02-17', 2, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-17 06:51:34', 159, '2026-02-17 01:41:27', 0, NULL, 1),
(28583, 'Preethi.M', '4', '9361060166', '7358227821', 'preethipreethi96967@gmail.com', '1999-05-09', 26, '2', '1', 'Husband', 'Indian', 35000.00, 1, 15000.00, 18000.00, 'Thanjavur', 'Thanjavur', '2602170008', '1', '2', 'upload_files/candidate_tracker/69055560687_PREETHIRESYME.pdf', NULL, '1', '2026-02-17', 0, '', '3', '59', '2026-03-02', 204000.00, '', '3', '2026-03-11', '1', 'Communication Ok have exp but not in relevant one can give a try and check in training', '1', '1', '4', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '2026-03-02', 1, '2026-02-17 07:03:19', 60, '2026-03-02 09:38:26', 0, NULL, 1),
(28584, 'Naveed Abdul Khader', '33', '9003026817', '', 'naveedabdulkhader006@gmail.com', '2002-11-06', 23, '2', '2', 'Reehana Begum', 'Cashier', 12000.00, 1, 18000.00, 18000.00, 'Chennai', 'Chennai', '2602170009', '1', '2', 'upload_files/candidate_tracker/94062360013_NaveedResumenew.pdf', NULL, '1', '2026-02-17', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '3', '7', '', '', 'H1017', '', '55605', '', '1970-01-01', 1, '2026-02-17 09:35:55', 159, '2026-02-17 04:31:31', 0, NULL, 1),
(28585, 'asifa thasleen p', '5', '9176392823', '', 'asithasleen@gmail.com', '1997-10-19', 28, '2', '1', 'abdul rahman', 'bussiness', 10000.00, 1, 0.00, 22000.00, 'chennai', 'chennai', '2602170010', '1', '2', 'upload_files/candidate_tracker/64353882546_AsifaThasleenconvertedcompressed.pdf', NULL, '1', '2026-02-17', 0, '', '4', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for Rm profile\ndont have exp in sales\nbut we can try for rm role ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2026-02-17 10:09:43', 154, '2026-02-17 04:48:13', 0, NULL, 1),
(28586, 'Sakthivel A', '13', '6374857173', '7904653247', 'sakthivelidn@gmail.com', '1999-07-24', 26, '2', '2', 'Annamalai', 'Full Stack Developer (Job Seeker)', 200000.00, 1, 3.80, 8.00, 'Adyar', 'Basentnagar', '2602170011', '1', '2', 'upload_files/candidate_tracker/65043922443_sakthivelfullstckdeveloper.pdf', NULL, '1', '2026-02-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', 'kiran', 'H1018', '', '55605', '', '1970-01-01', 1, '2026-02-17 11:52:14', 154, '2026-02-18 12:08:16', 0, NULL, 1),
(28587, 'SANJAYKUMAR JAYAKUMAR', '10', '8940534824', '7094401169', 'iitzzsha@gmail.com', '2003-10-01', 22, '2', '2', 'SINDHUBYRAVI', 'Tailoring', 35000.00, 1, 22000.00, 24000.00, 'Guindy', 'Guindy', '2602170012', '50', '2', 'upload_files/candidate_tracker/28142935770_resume.pdf', NULL, '1', '2026-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-17 01:01:32', 1, '2026-02-17 01:08:17', 0, NULL, 1),
(28588, '', '0', '7305734293', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602180001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-18 04:36:35', 0, NULL, 0, NULL, 1),
(28589, 's Janathul firdous fathima', '6', '9150279226', '9566117352', 'firdousjannath0102@gmail.com', '2000-12-01', 25, '2', '2', 'Sadam hussain', 'Auto driver', 20000.00, 0, 15000.00, 18000.00, '5/13,Mir Ashak hussain street,koyathoppu,egmore', '5/13,Mir Ashak hussain street,koyathoppu,egmore', '2602180002', '1', '2', 'upload_files/candidate_tracker/19121794108_JanathulFirdousFathimaResumeUpdated.pdf', NULL, '1', '2026-02-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-18 04:51:10', 154, '2026-02-18 12:39:42', 0, NULL, 1),
(28590, 'Mythili M', '6', '6379237148', '9094058654', 'Mythilimani2302@gmail.com', '2005-02-23', 20, '2', '2', 'Mani', 'Labourer', 15000.00, 1, 15000.00, 18000.00, 'NO: 50/94,Perambalur street,chennai-600021.', 'NO: 50/94,Perambalur street,chennai-600021.', '2602180003', '1', '2', 'upload_files/candidate_tracker/77395099932_mythuresume.pdf', NULL, '1', '2026-02-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good skill. Fresher. Will analysis 7 days training ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2026-02-18 04:52:10', 154, '2026-02-18 12:41:07', 0, NULL, 1),
(28591, 'Udhayan', '6', '9894354095', '8939686023', 'udhayanoviya@gmail.com', '2003-12-04', 22, '3', '2', 'Sumathi', 'Sales executive', 50000.00, 1, 23000.00, 25000.00, 'Royapuram', 'Royapuram', '2602180004', '', '2', 'upload_files/candidate_tracker/82465300149_UdhayanCV.pdf', NULL, '1', '2026-02-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-18 05:15:14', 1, '2026-02-18 05:19:53', 0, NULL, 1),
(28592, 'Mercy B', '6', '9840721040', '9094245351', 'Mercybala2004@gmail.com', '2004-11-01', 21, '2', '2', 'v. Balakrishnan', 'LUCAS TVS Machine Operator', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2602180005', '50', '1', 'upload_files/candidate_tracker/35183912819_Resume.pdf', NULL, '1', '2026-02-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-18 05:31:48', 154, '2026-02-18 01:33:41', 0, NULL, 1),
(28593, 'Nizafa banu', '6', '9585946191', '', 'nizafarabeek@gmail.com', '2004-02-07', 22, '2', '2', 'Rabeek kamal', 'Coolie', 8000.00, 1, 0.00, 3.00, 'Ramanathapuram', 'Medavakkam', '2602180006', '70', '1', 'upload_files/candidate_tracker/28365031970_softwareengineerrole1.pdf', NULL, '1', '2026-02-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-18 05:58:00', 154, '2026-02-18 04:25:26', 0, NULL, 1),
(28594, 'rAKESH', '6', '7305209658', '', 'rakiiirakiii696@gmail.com', '2004-09-07', 21, '2', '2', 'Murugesan', 'Wages', 20000.00, 2, 0.00, 3.50, 'pursavakam', 'pursavakam', '2602180007', '1', '1', 'upload_files/candidate_tracker/50916598673_1000107231compressed.pdf', NULL, '1', '2026-02-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 154, '2026-02-18 11:43:45', 154, '2026-03-02 10:43:20', 0, NULL, 1),
(28595, 'Udhayanila P', '6', '8015043960', '', 'udhayanilap22@gmail.com', '2003-09-24', 22, '2', '2', 'Prabhu R', 'Driver', 200000.00, 1, 0.00, 20000.00, 'No 109 mgr nagar vaniyannchathiram chennai 52', 'No 117 bajanai koil Street siruniyam chennai 67', '2602180008', '70', '1', 'upload_files/candidate_tracker/32446592892_Nilaupdatedresume.docx', NULL, '1', '2026-02-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-18 06:36:27', 154, '2026-02-18 12:17:18', 0, NULL, 1),
(28596, 'Jothiga S', '4', '7845359341', '7825959954', 'sjothiga973@gmail.com', '2001-07-18', 24, '1', '2', 'Rani.s', 'Farmer', 30000.00, 5, 12000.00, 18000.00, '1/55, vaduvachi Amman Kovil Street ukkadai', '1/55 vaduvachi Amman Kovil Street ukkadai', '2602180009', '', '2', 'upload_files/candidate_tracker/25688844126_RESUME1.docx', NULL, '1', '2026-02-18', 3, 'C99127', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-18 07:26:28', 154, '2026-02-18 01:19:21', 0, NULL, 1),
(28597, '', '0', '7397421988', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602180010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-18 08:17:02', 0, NULL, 0, NULL, 1),
(28598, 'sahana r', '6', '7019588631', '', 'sahanarsahanar001@gmail.com', '2004-12-15', 21, '2', '2', 'ravindra', 'farmer', 15000.00, 1, 21000.00, 25000.00, 'shivmoga', 'wilson garden', '2602180011', '1', '2', 'upload_files/candidate_tracker/57082330058_sahana.pdf', NULL, '1', '2026-02-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good Communication,\nGood Skills,\nExpecting Salary 22k', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1031', '', '55555', '5151', '1970-01-01', 1, '2026-02-18 09:09:10', 154, '2026-02-18 06:36:20', 0, NULL, 1),
(28599, 'bharati timma gouda', '6', '8088053754', '', 'goudabharati44@gmail.com', '2001-01-09', 25, '2', '2', 'timma gouda', 'farmer', 15000.00, 2, 18000.00, 25000.00, 'sirsi uttara karnataka', 'wilson garden', '2602180012', '1', '2', 'upload_files/candidate_tracker/46007462498_bharatiresume.pdf', NULL, '1', '2026-02-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good Communication,\nGood Knowledge In Sales\nExpecting 23k', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1031', '', '55555', '5151', '1970-01-01', 1, '2026-02-18 09:09:12', 154, '2026-02-18 06:36:09', 0, NULL, 1),
(28600, 'Vijay Saradhi', '5', '8428759540', '9444109385', 'vsaradhi53@gmail.com', '2003-05-25', 22, '2', '2', 'arumugam', 'car accesory', 25000.00, 1, 3.85, 4.50, 'Manali Mathur Chennai', 'Manali Mathur Chennai', '2602180013', '1', '2', 'upload_files/candidate_tracker/64131740521_VJSRESUME.pdf', NULL, '1', '2026-02-18', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1030', '', '55656', '55557', '1970-01-01', 1, '2026-02-18 09:10:25', 154, '2026-02-18 04:14:11', 0, NULL, 1),
(28601, 'Shermi Josil J', '11', '7010137633', '6379509990', 'shermijosil@gmail.com', '2004-01-17', 22, '2', '2', 'Johny', 'Fisherman', 50000.00, 2, 0.00, 20000.00, 'Kanyakumari', 'Sholinganallur', '2602180014', '1', '1', 'upload_files/candidate_tracker/18206396855_shermijosilProfessionalResume21.pdf', NULL, '1', '2026-02-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2026-02-18 11:29:55', 154, '2026-03-02 10:39:53', 0, NULL, 1),
(28602, 'Lekaa Devi M', '11', '8190861712', '', 'lekaadevi@gmail.com', '2000-05-03', 25, '2', '2', 'Muthuramalingam C', 'Retired', 25000.00, 0, 15000.00, 25000.00, 'Chennai', 'Chennai', '2602180015', '1', '2', 'upload_files/candidate_tracker/82906213491_LekaaDeviCV20261.pdf', NULL, '1', '2026-02-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2026-02-18 11:34:57', 159, '2026-02-19 11:33:06', 0, NULL, 1),
(28603, 'Elakkiya Ramesh', '11', '6379471452', '6379671057', 'ramisharamesh1711@gmail.com', '2002-08-17', 23, '2', '2', 'D. Ramesh', 'Farmer', 25.00, 1, 0.00, 20.00, 'Chennai', 'Chennai', '2602180016', '1', '1', 'upload_files/candidate_tracker/13527170719_ElakkiyaCV.pdf', NULL, '1', '2026-02-19', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2026-02-18 11:36:04', 159, '2026-02-19 11:41:57', 0, NULL, 1),
(28604, '', '0', '9025982880', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602180017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-18 11:49:17', 0, NULL, 0, NULL, 1),
(28605, '', '0', '8124818181', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602180018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-18 04:52:26', 0, NULL, 0, NULL, 1),
(28606, '', '0', '9629619028', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602190001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-19 02:15:59', 0, NULL, 0, NULL, 1),
(28607, 'priyaLakshmi Arumugam', '6', '9962441196', '7871552882', 'lakshmipria97@gmail.com', '1997-04-11', 28, '2', '1', 'Arumugam', 'Painter', 20000.00, 1, 18500.00, 25000.00, 'Chennai', 'Chennai', '2602190002', '1', '2', 'upload_files/candidate_tracker/38092329215_priya2026.pdf', NULL, '1', '2026-02-23', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-19 03:10:37', 159, '2026-02-23 05:54:13', 0, NULL, 1),
(28608, 'SUBASHINI E', '13', '9789561199', '', 'Esubashini18@gmail.com', '2003-06-18', 22, '2', '2', 'ELANGOVAN. R', 'FARMER', 10000.00, 1, 0.00, 1.50, '87/B, East Street, Kallakurichi.', 'Karapakkam, chennai.', '2602190003', '1', '1', 'upload_files/candidate_tracker/32245665653_SUBASHINIRESUME3.pdf', NULL, '1', '2026-02-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-19 04:29:27', 159, '2026-02-19 04:09:02', 0, NULL, 1),
(28609, 'Mabu basha alaudhin', '31', '7200377313', '9952014926', 'Mabub1723@gmail.com', '2004-09-29', 21, '4', '2', 'Alaudhin D', 'Coolie', 10000.00, 1, 0.00, 25000.00, 'Kovalam , chengalpattu', 'Kovalam', '2602190004', '', '1', 'upload_files/candidate_tracker/60665077973_DOC20260202WA0002.1.pdf', NULL, '1', '2026-02-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Aptitude not cleared', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-19 04:46:52', 159, '2026-02-19 04:09:30', 0, NULL, 1),
(28610, 'Naveenraj C', '31', '9442101499', '', 'naveenraj1732@gmail.com', '2003-12-21', 22, '4', '2', 'Chandiran', 'Mason', 8000.00, 1, 0.00, 20000.00, '4, Chithambarnar Nagar virupakshipuram Vellore', '4, Chithambarnar Nagar virupakshipuram Vellore', '2602190005', '', '1', 'upload_files/candidate_tracker/53936140354_Naveenresumelatest.pdf', NULL, '1', '2026-02-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Aptitude not cleared', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-19 04:52:17', 159, '2026-02-19 04:09:53', 0, NULL, 1),
(28611, 'Deivanai', '6', '9344044589', '8838556212', 'kumarudhaya3655@gmail.com', '2005-06-12', 20, '2', '2', 'Udhaya kumar', 'Inspector of police', 90000.00, 2, 0.00, 30000.00, 'Chennai', 'Chennai', '2602190006', '50', '1', 'upload_files/candidate_tracker/17380794228_DeivanaiUResume20260213.pdf', NULL, '2', '2026-02-19', 0, '', '3', '59', '2026-03-04', 186000.00, '', '3', '2026-03-04', '2', 'Communication Ok fresher for our roles need to train and check in training only let us try', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2026-03-04', 1, '2026-02-19 04:59:01', 60, '2026-03-04 10:00:08', 0, NULL, 1),
(28612, 'Jyothi S', '6', '7204079193', '9164693484', 'jyothi72040@gmail.com', '2000-03-08', 25, '1', '2', 'Muni Laxmi', 'House wife', 30000.00, 1, 22000.00, 25000.00, 'Byagadadenahalli', 'Byagadadenahalli', '2602190007', '', '2', 'upload_files/candidate_tracker/66317995142_JYOTHIS1.pdf', NULL, '1', '2026-02-19', 0, 'C99219', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is Experience candidate in the Tele colling good in kannada Convincing english ok need to speak Regarding Salary', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2026-02-19 05:06:16', 172, '2026-05-09 10:21:15', 0, NULL, 1),
(28613, 'Maruthi Kumar', '5', '7019734106', '', 'kumarmaruthi530@gmail.com', '1994-07-26', 31, '5', '2', 'parvathamma', 'house wife', 60000.00, 2, 400000.00, 600000.00, 'bangalore', 'bangalore', '2602190008', '', '2', 'upload_files/candidate_tracker/69399765347_MaruthiResumenee.pdf', NULL, '1', '2026-02-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-19 05:12:04', 1, '2026-02-19 05:16:44', 0, NULL, 1),
(28614, '', '0', '8300672185', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602190009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-19 05:38:00', 0, NULL, 0, NULL, 1),
(28615, 'Dinesh Kumar', '6', '8220657542', '', 'vidyuttdinesh98@gmail.com', '1998-01-22', 28, '2', '1', 'Janani', 'Sales', 100000.00, 2, 400000.00, 600000.00, 'Chengalpattu', 'Tambaram', '2602190010', '57', '2', 'upload_files/candidate_tracker/50888886431_dineshResumepdf.pdf', NULL, '1', '2026-02-19', 30, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55882', '', '1970-01-01', 1, '2026-02-19 05:59:23', 159, '2026-02-19 12:21:26', 0, NULL, 1),
(28616, 'V Jeeva', '13', '9940502447', '9003222772', 'jeevavenkat23@gmail.com', '2004-04-12', 21, '4', '2', 'Kalpana', 'House wife', 30000.00, 1, 0.00, 15000.00, '4/211 v.o.c.st,M.A.nagar, Redhills', '4/211.v.o.c.st,M.a.nagar, Redhills', '2602190011', '', '1', 'upload_files/candidate_tracker/76712569212_JeevaVResumeDocument1.pdf', NULL, '1', '2026-02-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-19 06:03:51', 159, '2026-02-19 04:11:12', 0, NULL, 1),
(28617, 'Gowthaman', '13', '6374553054', '6374553054', 'johngowtham69@gmail.com', '1999-05-21', 0, '3', '1', 'Valli', 'House wife', 30.00, 1, 0.00, 15.00, '4/154 sivagami Amman street Redhills, chennai-52', '4/154 Sivagami Amman street', '2602190012', '', '1', 'upload_files/candidate_tracker/58280879991_Gowthaman.KFullstack202611.pdf', NULL, '1', '2026-02-19', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'aptitude not cleared', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', 'FIIT Institute', '', '', '', '', '1970-01-01', 1, '2026-02-19 06:14:11', 159, '2026-02-19 04:22:03', 0, NULL, 1),
(28618, 'N.kiruthika', '16', '7358347037', '9840056983', 'nkiruthika1022@gmail.com', '1999-12-22', 26, '2', '1', 'Prakash', 'Administrative executive', 200000.00, 0, 18000.00, 20000.00, 'Thiruvottiyur Chennai', 'Thiruvottiyur Chennai', '2602190013', '50', '2', 'upload_files/candidate_tracker/14858463459_RESUMENK.pdf', NULL, '3', '2026-02-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-19 06:50:21', 1, '2026-02-19 04:00:23', 0, NULL, 1),
(28619, 'V G CHANDRAMOULI', '5', '7204925366', '8951628384', 'vunusulachandu221994@gmail.com', '1994-01-22', 32, '2', '1', 'R Harika', 'Employee', 20000.00, 1, 3.65, 4.30, '6/28, Appalakunta, Kirikera, Anantapur', 'Btm layout', '2602190014', '57', '2', 'upload_files/candidate_tracker/30393675360_Resume.pdf', NULL, '1', '2026-02-19', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'suggested upto 3.5lpa selected for RM', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55555', '5151', '1970-01-01', 1, '2026-02-19 07:08:24', 154, '2026-03-06 03:50:55', 0, NULL, 1),
(28620, 'Rinthiyaa', '13', '9345480860', '', 'moorthyrinthiyaa@gmail.com', '2004-04-26', 21, '2', '2', 'Kaliyamoorthy', 'Fresher', 30000.00, 1, 0.00, 2.50, 'Pondicherry', 'Pondicherry', '2602190015', '1', '1', 'upload_files/candidate_tracker/19555683779_44159578520b40638a42288d760a93b2.PDF', NULL, '1', '2026-02-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-19 07:11:08', 159, '2026-02-24 10:02:11', 0, NULL, 1),
(28621, 'Sangeetha Navaladi', '13', '9943875467', '', 'sangeethanavaladi@gmail.com', '2001-10-01', 24, '2', '2', 'navaladi r', 'driver', 20000.00, 0, 0.00, 350000.00, 'Namakkal', 'chennai', '2602190016', '1', '1', 'upload_files/candidate_tracker/542862498_SangeethaNavaladi.pdf', NULL, '1', '2026-02-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '2026-02-23', 1, '2026-02-19 10:18:20', 159, '2026-02-23 04:01:02', 0, NULL, 1),
(28622, 'Ahmed Rafeeq Aslam SMS', '6', '9345664995', '9840062885', 'ahmedrafeeqaslam7@gmail.com', '2005-01-07', 21, '5', '2', 'Mohammad Shareef.S', 'A/c Mechanic', 16000.00, 1, 0.00, 18000.00, 'Villivakkam', 'Arumbakkm', '2602190017', '', '1', 'upload_files/candidate_tracker/77017858458_AhmedRafeeqAslamResume.pdf', NULL, '1', '2026-02-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-19 10:36:45', 1, '2026-02-19 11:01:44', 0, NULL, 1),
(28623, 'Thirunavukarasu s', '13', '7448415683', '9025357041', 'tirunavukarasu386@gmail.com', '2000-05-26', 25, '2', '2', 'subramaniyapillai', 'farmer', 35000.00, 1, 455000.00, 900000.00, 'Thazhakudy', 'Thazhakudy', '2602190018', '1', '2', 'upload_files/candidate_tracker/534897219_ThirusupdatedCV.pdf', NULL, '1', '2026-02-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-19 10:36:45', 159, '2026-02-23 12:16:58', 0, NULL, 1),
(28624, 'aravinda rajan ramasubbu.', '13', '9940870724', '', 'aravindrajan544@gmail.com', '2004-05-12', 21, '2', '2', 'ramasubbu', 'manager', 25000.00, 0, 0.00, 3.50, 'madurai', 'chennai', '2602190019', '1', '1', 'upload_files/candidate_tracker/63662651209_Aravindresumefullstack.pdf', NULL, '1', '2026-02-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-19 10:51:12', 159, '2026-02-20 12:42:34', 0, NULL, 1),
(28625, '', '0', '7010538645', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602190020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-19 11:18:24', 0, NULL, 0, NULL, 1),
(28626, 'M.Thanga Pandeeswari', '6', '6380453266', '9941162254', 'm.thangapandeeswari@gmail.com', '1999-10-11', 26, '2', '2', 'S.Murugesan', 'Chennai corporation', 18000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2602190021', '1', '2', 'upload_files/candidate_tracker/60531814604_THANGAPANDEESWARIRESUME1.pdf', NULL, '1', '2026-02-23', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is Not Good.Also Her Voice is velry low .Sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-02-19 12:42:29', 154, '2026-02-23 02:13:19', 0, NULL, 1),
(28627, '', '0', '6385471763', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602190022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-19 01:06:16', 0, NULL, 0, NULL, 1),
(28628, 'infant Vinciba Francis Xavier', '6', '7010343821', '9626607912', 'vinciba08francis26@gmail.com', '2005-06-08', 20, '2', '2', 'Francis Xavier', 'Business', 150000.00, 2, 0.00, 15000.00, '38/3A pookara madha Kovil street,Thanjavur 613001', '38/3A pookara madha Kovil street,Thanjavur 613001', '2602190023', '1', '1', 'upload_files/candidate_tracker/60837808302_InfantvincibaF.pdf', NULL, '1', '2026-02-20', 0, '', '5', '168', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have a communication skills, but looking for a iT related job also, doing a mSC on april sem starts will  get a long leave, will not sustain for long period', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CI144', '5151', '1970-01-01', 1, '2026-02-19 01:39:07', 154, '2026-02-20 04:55:31', 0, NULL, 1),
(28629, '', '0', '7810068261', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602190024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-19 02:21:29', 0, NULL, 0, NULL, 1),
(28630, 'C B Sanjeevana', '5', '7676642178', '', 'sanjudb648@gmail.com', '2011-02-20', 0, '2', '2', 'Beerappa', 'Former', 20000.00, 1, 750000.00, 900000.00, 'Tiptur', 'Bangalore', '2602200001', '57', '2', 'upload_files/candidate_tracker/29390203470_DOC20251113WA000.pdf', NULL, '1', '2026-02-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-20 05:33:55', 1, '2026-02-20 05:42:05', 0, NULL, 1),
(28631, 'Agnes Edward', '5', '7358180549', '7358329057', 'agnesharsh54@gmail.com', '1998-05-19', 27, '2', '2', 'edward johnson', 'tneb', 80000.00, 1, 23000.00, 25000.00, 'ennore', 'ennore', '2602200002', '1', '2', 'upload_files/candidate_tracker/46280410035_Myresume.docx', NULL, '1', '2026-02-20', 0, '', '3', '59', '2026-02-26', 350000.00, '', '1', '1970-01-01', '2', 'Communication Good have exp in calling but not in insurance bank bazaar exp only need to check in training only', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55824', '55560', '2026-02-26', 1, '2026-02-20 05:41:20', 60, '2026-02-25 07:39:36', 0, NULL, 1),
(28632, 'Mohanakrishnan Selvapandian', '6', '9688122961', '', 'Mohanakrishnans11@gmail.com', '2011-02-20', 0, '2', '2', 'S. Santhi', 'Silk Saree Weaver', 30000.00, 2, 0.00, 18000.00, '1/679, Draupathi kovil st, Thirumani, 604504', '74, Chavadi Street, Korattur, Chennai - 80', '2602200003', '50', '1', 'upload_files/candidate_tracker/18879376222_MohanakrishnanResumedocx11111.pdf', NULL, '1', '2026-02-20', 0, '', '3', '59', '2026-02-23', 204000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher for our roles have exp in data entry earlier and  a career gap due to govt exams open for insurance and seems to be interested in learning let us check in training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '2026-02-23', 1, '2026-02-20 06:07:24', 60, '2026-02-23 09:54:39', 0, NULL, 1),
(28633, 'Bharath S', '6', '9176887489', '', 'bharathcharm13@gmail.com', '2000-05-13', 25, '2', '2', 'Sunthar', 'Construction work', 20000.00, 1, 250000.00, 300000.00, 'No. 3 Sriram Nagar Tambaram chennai-63', 'Same', '2602200004', '70', '2', 'upload_files/candidate_tracker/97209075213_CV2025121301415240.pdf', NULL, '1', '2026-02-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-20 06:45:22', 159, '2026-02-20 01:02:31', 0, NULL, 1),
(28634, 'GokulaKrishnan', '6', '8939631277', '8939385123', 'gokulgk1405@gmail.com', '2001-05-14', 24, '2', '2', 'Parent', 'Dental assistant', 28000.00, 1, 19500.00, 20000.00, 'Teynampet', 'Teynampet', '2602200005', '70', '2', 'upload_files/candidate_tracker/86656777896_GokulResumeWORK.pdf', NULL, '1', '2026-02-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-20 06:45:24', 159, '2026-02-20 01:02:18', 0, NULL, 1),
(28635, 'Sri Dharshini S', '6', '8807244739', '', 'srimohith18@gmail.com', '2002-05-18', 23, '1', '2', 'Father', 'Politician', 50000.00, 1, 22000.00, 22000.00, 'Thuraiyur', 'Saidapet', '2602200006', '', '2', 'upload_files/candidate_tracker/79971112600_SriDharshini1.pdf', NULL, '1', '2026-02-20', 0, '77827', '3', '59', '2026-02-23', 222000.00, '', '1', '1970-01-01', '2', 'Have exp in multiple companies but no sustainability last company shree consultant for 5 months internal team reference based on the manager input proceeded with this CTC', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2026-02-23', 1, '2026-02-20 06:49:21', 60, '2026-02-23 09:58:25', 0, NULL, 1),
(28636, 'pavan Kumar jain', '6', '7200395666', '7418819445', 'pavankd7@gmail.com', '1996-11-07', 29, '2', '2', 'parent', 'bussisman', 30000.00, 2, 19000.00, 20000.00, 'Vellore', 'Vellore', '2602200007', '57', '2', 'upload_files/candidate_tracker/2173781623_PavanKumarresume1.pdf', NULL, '1', '2026-02-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-20 07:11:03', 154, '2026-03-02 10:44:30', 0, NULL, 1),
(28637, 'Thirunavukarasu s', '13', '9025357041', '', 'tirunavukarasu386@gmail.com', '2000-05-26', 25, '2', '2', 'subbramaniya pillai', 'farmer', 35000.00, 1, 455000.00, 900000.00, 'Thazhakudy', 'Thazhakudy', '2602200008', '1', '2', 'upload_files/candidate_tracker/80945328529_ThirusupdatedCV.pdf', NULL, '1', '2026-02-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-02-20 07:21:22', 1, '2026-02-20 07:24:44', 0, NULL, 1),
(28638, 'manishss', '6', '9500944760', '8610145949', 'ssmanish@zohomail.in', '2000-07-05', 25, '2', '2', 'ksuresh kumar', 'retired', 22000.00, 0, 0.00, 22000.00, 'velachery', 'velachery', '2602200009', '70', '1', 'upload_files/candidate_tracker/32211719291_RESUMEupdatedcopycopy.docx', NULL, '1', '2026-02-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-20 09:30:11', 159, '2026-02-20 03:11:07', 0, NULL, 1),
(28639, '', '0', '9014972601', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602200010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-20 10:23:06', 0, NULL, 0, NULL, 1),
(28640, '', '0', '9042113995', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602200011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-20 11:10:46', 0, NULL, 0, NULL, 1),
(28641, 'Deepika R', '6', '9361698018', '9884060246', 'Deepikaeco2020@gmail.com', '2003-03-03', 22, '2', '2', 'Rajan E(father)', 'Ba economics', 22000.00, 1, 17000.00, 18000.00, 'Chennai', 'Chennai', '2602200012', '1', '2', 'upload_files/candidate_tracker/78062650416_Deepikaresume.1.pdf', NULL, '1', '2026-02-21', 0, '', '3', '59', '2026-02-26', 216000.00, '', '3', '2026-02-26', '2', 'Communication Ok have exp in calling but no sustainability need to check in training only', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '2026-02-26', 1, '2026-02-20 11:57:03', 60, '2026-02-25 07:32:27', 0, NULL, 1),
(28642, '', '0', '9360744605', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602200013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-20 10:03:28', 0, NULL, 0, NULL, 1),
(28643, 'Ganesh', '6', '8610486431', '', 'info.eganesh26@gmail.com', '2002-07-26', 23, '2', '2', 'Elanchezhiyan', 'Civil engineer', 20000.00, 1, 0.00, 15000.00, 'Puducherry', 'Puducherry', '2602210001', '70', '1', 'upload_files/candidate_tracker/28978519538_Ganeshresume.pdf', NULL, '1', '2026-02-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-21 04:35:43', 154, '2026-02-21 12:29:41', 0, NULL, 1),
(28644, 'GOKUL', '6', '8925481910', '', 'gokulmadhiyalagan@gmail.com', '2002-03-23', 23, '2', '2', 'Shanthi', 'Fresher', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2602210002', '1', '2', 'upload_files/candidate_tracker/53344844141_Gokulcv1.pdf', NULL, '1', '2026-02-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-02-21 04:48:13', 159, '2026-02-21 12:23:08', 0, NULL, 1),
(28645, 'DineshkumarR', '2', '9894481720', '', 'rdineshkumar.05@gmail.com', '1988-04-05', 37, '2', '2', 'Rajagopal', 'Late', 30000.00, 0, 540000.00, 800000.00, 'Chengalpattu', 'Chengalpattu', '2602210003', '1', '2', 'upload_files/candidate_tracker/54947073417_rdineshkumarresume.pdf', NULL, '1', '2026-02-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-02-21 05:00:07', 1, '2026-02-21 05:32:58', 0, NULL, 1),
(28646, 'Monika M', '33', '6374918100', '7448508240', 'monimohan1831@gmail.com', '2005-05-18', 20, '2', '2', 'Mohan', 'Mechanic', 40000.00, 1, 0.00, 250000.00, 'Thirunindravur, Chennai', 'Thirunindravur, Chennai', '2602210004', '1', '1', 'upload_files/candidate_tracker/34395935011_MMonikaFinanceAssistantResumeBordered4.pdf', NULL, '1', '2026-02-21', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2026-02-21 05:18:17', 159, '2026-02-21 11:23:49', 0, NULL, 1),
(28647, 'r manikandan', '5', '7338775957', '9363738650', 'manimassmani693@gmail.com', '2003-03-13', 22, '2', '1', 'm hemavathy', 'coolie', 15000.00, 1, 2.75, 4.00, 'thiruninravur', 'thiruninravur', '2602210005', '1', '2', 'upload_files/candidate_tracker/55714007730_Resume.pdf', NULL, '1', '2026-02-23', 30, '', '3', '59', '2026-02-26', 360000.00, '', '5', '1970-01-01', '1', 'Communication Ok have exp in credit card age around 23 only but married and looking for salary much  seems to be doubt need to check in training only', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55656', '55557', '2026-02-26', 1, '2026-02-21 07:28:13', 60, '2026-02-25 07:37:17', 0, NULL, 1),
(28648, '', '0', '7010473769', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602210006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-21 09:12:42', 0, NULL, 0, NULL, 1),
(28649, 'R.saranya', '6', '8072312883', '9042372883', 'saranyar0901@gmail.com', '2002-01-09', 24, '2', '2', 'Ranganathan', 'Fisher Man', 30000.00, 1, 14000.00, 20000.00, 'Chennai', 'Chennai', '2602210007', '1', '2', 'upload_files/candidate_tracker/44666125899_NewresumeSaranya.docx', NULL, '1', '2026-02-27', 0, '', '3', '59', '2026-03-10', 222000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in insurance for 3 yrs can be trained in ourroles will check in traning', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'CA130', '5151', '2026-03-10', 1, '2026-02-21 09:17:37', 60, '2026-03-09 07:41:29', 0, NULL, 1),
(28650, 'Bainaboina Venkata swathi', '4', '9500261218', '', 'bainaboinavenkataswathi225@gmail.com', '2002-02-18', 24, '2', '2', 'Bainaboina venkata seshaiah', 'Business', 50000.00, 2, 0.00, 250000.00, 'Nandavaram village,marripadu, 524327, Nellore', 'Tanjavur', '2602210008', '1', '1', 'upload_files/candidate_tracker/53029656879_swathiresume2026.pdf', NULL, '1', '2026-02-24', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-21 09:47:24', 154, '2026-02-24 03:39:06', 0, NULL, 1),
(28651, '', '0', '6380440108', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602210009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-21 09:47:49', 0, NULL, 0, NULL, 1),
(28652, 'ADHITHAN MATHIVANAN', '13', '9361400479', '', 'rm.adhithan2002@gmail.com', '2011-02-20', 15, '3', '2', 'Mathivanan R', 'Software developer', 60000.00, 1, 0.00, 40000.00, 'Erode', 'Chennai', '2602210010', '', '1', 'upload_files/candidate_tracker/88825613480_ADHITHANRESUME.pdf', NULL, '1', '2026-02-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-21 09:56:20', 1, '2026-02-21 10:00:04', 0, NULL, 1),
(28653, 'MATHANKUMAR R', '4', '9944615622', '7904365607', 'bestmathan1997@gmail.com', '1997-05-31', 28, '2', '2', 'Radhakrishnan', 'Carpenter', 15000.00, 1, 0.00, 15.00, 'Theni', 'Porir', '2602210011', '1', '1', 'upload_files/candidate_tracker/86953864422_Mathanrresume2.pdf', NULL, '1', '2026-02-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-21 10:01:12', 159, '2026-02-23 05:51:59', 0, NULL, 1),
(28654, 'shreesha v adiga', '7', '9606834683', '', 'Shreeshaadiga94@gmail.com', '2002-05-24', 23, '5', '2', 'vishwanath adiga', 'agriculture', 15000.00, 1, 0.00, 250000.00, 'near vishnumurthy temple beejadi koteshwara udupi', 'tyagarajnagar basavanagudi', '2602210012', '', '1', 'upload_files/candidate_tracker/72936662315_ShreeshaVAdigaResumefinal3.pdf', NULL, '2', '2026-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-21 11:22:55', 1, '2026-02-21 11:30:07', 0, NULL, 1),
(28655, 'Nivetha S', '13', '8072264687', '', 'snivetha1710@gmail.com', '2004-10-17', 21, '2', '2', 'Seenivasan', 'Weaver', 30000.00, 1, 0.00, 200000.00, 'Dindigul', 'Kodambakkam, Chennai', '2602210013', '1', '1', 'upload_files/candidate_tracker/95172230852_NivethaResume.pdf', NULL, '1', '2026-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-21 12:39:01', 159, '2026-02-26 05:56:09', 0, NULL, 1),
(28656, '', '0', '7019782590', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602210014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-21 12:52:51', 0, NULL, 0, NULL, 1),
(28657, 'Logeshwari B', '6', '7358270208', '9940020639', 'logi432022@gmail.com', '2000-12-08', 25, '3', '2', 'Sagunthala B', 'House wife', 25000.00, 1, 0.00, 20000.00, 'No: 101 TH ROAD MINJUR 601203', 'No: 101 TH ROAD MINJUR 601203', '2602210015', '', '2', 'upload_files/candidate_tracker/42129410938_LogeshwariBRESUME.pdf', NULL, '1', '2026-02-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-21 01:10:09', 1, '2026-02-21 01:27:43', 0, NULL, 1),
(28658, 'Priyadharshini A', '2', '6382571227', '9698814489', 'priyadharshinidharshini251@gmail.com', '2004-08-20', 21, '2', '2', 'Arul dass K', 'Former', 20000.00, 3, 0.00, 15000.00, 'Villupuram', 'Villupuram', '2602220001', '1', '1', 'upload_files/candidate_tracker/618683598_PriyaResume202601311552210000.pdf', NULL, '1', '2026-02-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-22 03:15:55', 159, '2026-02-23 04:01:28', 0, NULL, 1),
(28659, 'JETHRO JAIKUMAR V', '13', '9445280412', '6382404536', 'Jethrojaikumar@gmail.com', '2003-11-18', 22, '2', '1', 'J V Babu', 'Business', 20000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2602220002', '1', '1', 'upload_files/candidate_tracker/9780803177_JETHRORESUME.docx', NULL, '1', '2026-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1024', '0', '0', '0', NULL, 1, '2026-02-22 05:05:34', 1, '2026-02-22 05:11:57', 0, NULL, 1),
(28660, 'priyanka', '13', '6381958140', '', 'rpriyanka31032004@gmail.com', '2004-03-31', 21, '2', '2', 'vanitha r', 'farmer', 10000.00, 2, 0.00, 30000.00, 'perambalur', 'perambalur', '2602220003', '1', '1', 'upload_files/candidate_tracker/52813754245_PRIYANKARFINAL.pdf', NULL, '1', '2026-02-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2026-02-22 05:11:09', 1, '2026-02-22 05:17:16', 0, NULL, 1),
(28661, 'JETHRO JAIKUMAR V', '13', '6382404536', '9445280412', 'Jethrojaikumar@gmail.com', '2003-11-18', 22, '2', '2', 'J V Babu', 'Business', 20000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2602220004', '1', '1', 'upload_files/candidate_tracker/8102282452_JETHRORESUME.docx', NULL, '1', '2026-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-02-22 05:20:17', 1, '2026-02-22 05:22:26', 0, NULL, 1),
(28662, 'REVANTH B', '13', '9994987685', '', 'revanthbaskar009@gmail.com', '2001-03-13', 24, '2', '2', 'baskar', 'wear', 8000.00, 0, 0.00, 18000.00, 'Kanchipuram', 'Kanchipuram', '2602220005', '1', '1', 'upload_files/candidate_tracker/50539628348_revanthresume2026.pdf', NULL, '1', '2026-02-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-22 12:05:38', 159, '2026-02-23 03:33:11', 0, NULL, 1),
(28663, 'suryamanavalan', '13', '8610342448', '', 'kundhavaimanavalan@gmail.com', '2004-09-23', 21, '2', '2', 'alagia manavalan', 'representation', 15000.00, 1, 0.00, 400000.00, 'hanjavur', 'Chennai', '2602220006', '1', '1', 'upload_files/candidate_tracker/15976711954_SuryaResume.pdf', NULL, '1', '2026-02-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-22 01:53:58', 159, '2026-02-23 12:03:26', 0, NULL, 1),
(28664, 'A. Mary Epsiba', '13', '7845962481', '', 'maryepsipa18@gmail.com', '2005-07-18', 20, '2', '2', 'Arputha Mary', 'House wife', 20000.00, 2, 0.00, 20000.00, 'West Tambaram', 'West Tambaram', '2602230001', '27', '1', 'upload_files/candidate_tracker/79753075833_MaryEpsibaResume.pdf', NULL, '1', '2026-02-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', 'aptitude not cleared', '', '', '', '', '1970-01-01', 1, '2026-02-23 04:36:52', 159, '2026-02-23 04:01:48', 0, NULL, 1),
(28665, 'Divyadharshini Kalidoss', '11', '7540083738', '', 'divyadivi3738@gmail.com', '2000-10-21', 25, '2', '2', 'Kalidoss N', 'Ex-service', 38.00, 2, 15000.00, 20000.00, 'New Perungalathur', 'New Perungalathur', '2602230002', '1', '2', 'upload_files/candidate_tracker/76504470810_DIVYADHARSHINIRESUME.pdf', NULL, '1', '2026-02-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2026-02-23 04:40:23', 159, '2026-02-23 10:23:27', 0, NULL, 1),
(28666, 'Jairam J s', '13', '9080853039', '', 'jsjairam01@gmail.com', '2001-12-11', 24, '5', '2', 'sridhar rao j v', 'bank manager', 40000.00, 2, 10000.00, 30000.00, 'chennai', 'chennai', '2602230003', '', '2', 'upload_files/candidate_tracker/806407914_UpdateJairam2Resume.pdf', NULL, '2', '2026-02-23', 15, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-23 04:52:08', 159, '2026-02-23 04:00:38', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28667, 'N Srikanth', '20', '9655036633', '', 'srikanthkanth4891@gmail.com', '2011-02-23', 0, '2', '2', 'Neelakandan A G', 'Weaving', 15.00, 1, 0.00, 20.00, 'Tiruvallur District, Tiruttani', 'Tiruvallur District, Tiruttani', '2602230004', '70', '1', 'upload_files/candidate_tracker/5366755835_Currentresume.pdf', NULL, '1', '2026-02-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-23 04:52:42', 159, '2026-02-23 12:47:05', 0, NULL, 1),
(28668, 'sumathi balamurugan', '6', '7010209532', '', 'sumathi.balamurugann@gmail.com', '1996-01-14', 30, '2', '1', 'Balamurugan', 'Advocate', 30000.00, 2, 0.00, 17000.00, 'Kanchipuram', 'Kanchipuram', '2602230005', '1', '1', 'upload_files/candidate_tracker/28208034194_sumathinewresume1.pdf', NULL, '1', '2026-02-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-23 05:07:27', 154, '2026-02-23 06:43:25', 0, NULL, 1),
(28669, 'Harikrishnan', '6', '9952947614', '', 'harikrishnan8821@gmail.com', '2000-03-15', 25, '2', '2', 'Dhanalakshmi', 'Housewife', 25000.00, 0, 0.00, 19000.00, 'No,76 kandaswamy kovil Street kosapet Chennai 12', 'Chennai', '2602230006', '1', '2', 'upload_files/candidate_tracker/61768261102_Resume1.pdf', NULL, '1', '2026-02-23', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is Not Good.Also He Could not interact much more in interview Process', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-02-23 05:15:24', 154, '2026-02-23 02:13:58', 0, NULL, 1),
(28670, 'Muthulakshmi Sarathi', '13', '9597586026', '9788016026', 'muthulakshmisarathi04@gmail.com', '2004-05-29', 21, '2', '2', 'Sarathi', 'Farmer', 25000.00, 2, 0.00, 25000.00, 'Dharmapuri', 'West Tambaram', '2602230007', '27', '1', 'upload_files/candidate_tracker/6900453651_Muthulakshmiresume.pdf', NULL, '1', '2026-02-23', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-23 05:31:14', 159, '2026-02-23 12:43:56', 0, NULL, 1),
(28671, 'Santhiya S', '13', '9384123987', '', 'nthangasamy20@gmail.com', '2005-03-22', 20, '2', '2', 'Sellappa p, Murugeswari T', 'Nil', 10000.00, 0, 0.00, 300000.00, 'Pavoorchatram, Tenkasi', 'Perungalathur, chennai', '2602230008', '27', '1', 'upload_files/candidate_tracker/81586941272_Santhiya.SResumeFs.pdf', NULL, '1', '2026-02-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-23 05:31:18', 159, '2026-02-23 03:34:05', 0, NULL, 1),
(28672, 'PRIYA THARSHINI P', '6', '8825914202', '', 'ppriyatharshini49@gmail.com', '2006-07-22', 19, '2', '2', 'S. Periyasamy', 'Tailor', 60000.00, 2, 0.00, 17000.00, '9/2 kalaignar street , Kilpauk garden ch-10', '9/2 kalaignar street, Kilpauk garden ch-10', '2602230009', '1', '1', 'upload_files/candidate_tracker/4367094603_PriyaTharshiniResume.pdf', NULL, '1', '2026-02-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is good.will check with her in the training period', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2026-02-23 05:31:34', 154, '2026-02-23 02:11:29', 0, NULL, 1),
(28673, 'Abina S', '13', '6379985269', '9843664403', 'abinaabi9917@gmail.com', '2005-04-25', 20, '2', '2', 'Saviour R', 'Farmer', 10000.00, 1, 0.00, 25000.00, 'Sanjay Nagar, pattukkottai, Thanjavur 614-615', 'Nedukundram, chennai 600-127', '2602230010', '27', '1', 'upload_files/candidate_tracker/27106959553_SAbinaResume.pdf', NULL, '1', '2026-02-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-23 05:32:20', 159, '2026-02-23 04:03:30', 0, NULL, 1),
(28674, 'preethi sv', '2', '6369490348', '9003116668', 'preethisv2005@gmail.com', '2005-08-16', 20, '2', '2', 'Kalpana', 'Home maker', 25000.00, 0, 0.00, 25000.00, 'Urpakkam', 'Urapakkam', '2602230011', '27', '1', 'upload_files/candidate_tracker/37224222096_resumepreethi1new.pdf', NULL, '1', '2026-02-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'aptitude Not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-23 05:32:21', 159, '2026-02-23 04:31:18', 0, NULL, 1),
(28675, 'sathya b', '6', '8248408898', '9840338887', 'ssssathya1922000@gmail.com', '2000-02-19', 26, '2', '2', 'baskaran p', 'retired bank messenger', 20000.00, 1, 0.00, 20000.00, 'Kodungaiyur', 'kodungqiyur', '2602230012', '70', '1', 'upload_files/candidate_tracker/2770418524_SATHYARESUME.docx', NULL, '1', '2026-02-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-23 05:39:58', 159, '2026-02-23 12:46:25', 0, NULL, 1),
(28676, '', '0', '8667000828', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602230013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-23 05:45:07', 0, NULL, 0, NULL, 1),
(28677, 'M. Maheswari', '4', '8270064512', '9658144238', 'Maheswarimathi25@gmail.com', '2000-06-25', 25, '2', '2', 'M. Devika', 'House wife', 25000.00, 1, 25000.00, 20000.00, 'Mannargudi', 'Mannargudi', '2602230014', '1', '2', 'upload_files/candidate_tracker/507050846_resume2.pdf', NULL, '1', '2026-02-23', 10, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile compledted msc cs in mannargudi....and joined as a primary teacher for 3 years and releived due to accident need 6  months leave....and joined in nxt wave tele sales...education with 30k package ....company need to shift to chennai so releived from job current job need have exposure and good skills....expected 17 to 18k ,,,march joining...father passed sister worked as teacher and unmarried ...main in mannargudi 45 mins travel cross check in this portion.', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-23 05:56:06', 154, '2026-02-23 03:02:20', 0, NULL, 1),
(28678, 'Priya ravi', '11', '9361674028', '9843395860', 'priyaravipriya58@gmail.com', '2011-02-23', 0, '2', '1', 'Praveenraj', 'Production', 25000.00, 1, 18000.00, 25000.00, 'Salem', 'Chennai', '2602230015', '1', '2', 'upload_files/candidate_tracker/13705362344_priyaa.pdf', NULL, '1', '2026-02-23', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2026-02-23 05:59:25', 1, '2026-02-23 06:08:43', 0, NULL, 1),
(28679, 'Jenisha T', '11', '9840255275', '', 'jenishajabamalai@gmail.com', '2003-06-17', 22, '2', '2', 'Thirunavukkarasu', 'Driver', 25000.00, 1, 14000.00, 18000.00, 'Chennai', 'Chennai', '2602230016', '1', '2', 'upload_files/candidate_tracker/53656542998_JenishaResume8.pdf', NULL, '1', '2026-02-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-23 06:14:49', 159, '2026-02-23 05:49:52', 0, NULL, 1),
(28680, 'monesh b', '6', '9087745962', '', 'monesh138@gmail.com', '2001-05-30', 24, '2', '2', 'babu', 'auto dri', 360000.00, 1, 170000.00, 24000.00, 'chenn', 'hiru', '2602230017', '1', '2', 'upload_files/candidate_tracker/81974047945_AdobeScan28Jan2026.pdf', NULL, '1', '2026-02-24', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is not suitable for sales profile, communication Not Good, Field work not interest, reject the profile', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2026-02-23 06:40:26', 159, '2026-02-24 12:57:15', 0, NULL, 1),
(28681, 'Vijay Ramu', '2', '6374607819', '9843186182', 'vijayvasanth994@gmail.com', '2000-09-13', 25, '2', '2', 'Ramu', 'Farmer', 12000.00, 1, 0.00, 1.80, '22, Santhai thoppu Street, manalmedu', 'Thirumangalam, Anna nagar West extension, Chennai', '2602230018', '1', '1', 'upload_files/candidate_tracker/78736409930_VijayResume.pdf', NULL, '1', '2026-02-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-23 06:40:30', 159, '2026-02-23 05:51:20', 0, NULL, 1),
(28682, '', '0', '9087745862', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602230019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-23 06:59:18', 0, NULL, 0, NULL, 1),
(28683, 'senthil Kumar', '4', '9080803301', '9942633250', 'senthilkumar14101999@gmail.com', '1999-10-14', 26, '2', '2', 'Kannan', 'No', 21000.00, 1, 0.00, 18000.00, 'R R nagar pudukottai road thanjavur', 'R R nagar pudukottai road thanjavur', '2602230020', '27', '1', 'upload_files/candidate_tracker/46227688206_Myresume6.pdf', NULL, '1', '2026-02-23', 0, '', '3', '59', '2026-02-25', 204000.00, '', '3', '2026-03-09', '1', 'Communication Ok have exp in medical billing process fresher for insurance sales but open to learn earlier CTC was round 22K now we offer this', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', '5151', '2026-02-25', 1, '2026-02-23 07:09:59', 60, '2026-02-24 08:01:54', 0, NULL, 1),
(28684, 'Bharath Bare', '6', '8778703024', '', 'bharathbare@gmail.com', '2011-02-23', 0, '2', '2', 'K Udhaya kumar', 'BA English Literature', 50000.00, 1, 20000.00, 25000.00, 'Palavakkam', 'Palavakkam', '2602230021', '1', '2', 'upload_files/candidate_tracker/75216799749_BHARATHRESUME1.docx', NULL, '1', '2026-02-24', 1, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '.', '5', '2', '', '1', '8', '', '2', '2026-03-03', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2026-02-23 07:10:47', 159, '2026-02-24 12:48:15', 0, NULL, 1),
(28685, 'Elavarasan Chandrasekar', '6', '7010531155', '9080206360', 'elavarasanelai8139@gmail.com', '1999-12-07', 26, '1', '2', 'Chandrashekhar', 'Business', 80000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2602230022', '', '1', 'upload_files/candidate_tracker/16877621065_RESUMEELAVARASAN.pdf', NULL, '3', '2026-02-23', 0, 'Chandru', '1', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2026-02-23 07:29:47', 154, '2026-02-23 05:36:37', 0, NULL, 1),
(28686, 'Prakash Manoharan', '4', '8098186857', '', 'prakashmanogaran96@gmail.com', '2005-06-15', 20, '2', '2', 'Chitra M', 'Homemaker', 12000.00, 1, 15500.00, 17000.00, 'No 7, oththai street, Ayyampettai, Thanjavur', 'No 7 oththai street, Ayyampettai, Thanjavur', '2602230023', '1', '2', 'upload_files/candidate_tracker/90194998624_PrakashMUpdatedResume.pdf', NULL, '1', '2026-02-24', 0, '', '3', '59', '2026-03-02', 192000.00, '', '3', '2026-03-31', '2', 'Communication Ok have exp in  calling activities in Vakuil search fresher for our roles need to check in training only', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2026-03-02', 1, '2026-02-23 07:42:28', 60, '2026-03-02 09:41:55', 0, NULL, 1),
(28687, 'R.Danush kumar', '6', '8754884943', '8754207643', 'danush1024@gmail.com', '2004-10-24', 21, '2', '2', 'M.Ramu', 'Daily wages', 1.50, 2, 0.00, 300000.00, 'Ranipet', 'Vadapalani', '2602230024', '1', '1', 'upload_files/candidate_tracker/46409905779_DANUSHKUMARR.resume31.pdf', NULL, '1', '2026-02-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-02-23 10:38:03', 159, '2026-02-24 12:17:54', 0, NULL, 1),
(28688, 'Vishnu', '4', '7812859542', '9361098491', 'vishnuswiz@gmail.com', '2001-12-18', 24, '2', '2', 'Vijayalakshmi', 'Housewife', 20000.00, 1, 19500.00, 20000.00, 'Kottur, kalancheri (post) Pincode -613504', 'Thanjavur', '2602230025', '1', '2', 'upload_files/candidate_tracker/77932629004_CV2026022316001174.pdf', NULL, '1', '2026-02-24', 2, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-23 12:50:29', 154, '2026-02-24 03:39:42', 0, NULL, 1),
(28689, 'SADHANA', '13', '9047741653', '', 'sadhanamurugaiyan2004@gmail.com', '2004-02-24', 21, '2', '2', 'Murugaiyan', 'Company worker', 45000.00, 2, 0.00, 3.50, 'Puducherry', 'Chennai', '2602230026', '1', '1', 'upload_files/candidate_tracker/80420932965_SadhanaMurugaiyanResume.pdf', NULL, '1', '2026-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-23 01:05:33', 159, '2026-02-26 06:10:33', 0, NULL, 1),
(28690, 'Kohila K', '11', '7358374827', '', 'Kohilakumaresan@gmail.com', '2001-03-22', 24, '2', '2', 'Kumaresan A', 'Manager', 18000.00, 2, 0.00, 180000.00, 'Manapakkam Chennai', 'Iyyapanthangal Chennai', '2602230027', '1', '1', 'upload_files/candidate_tracker/46893348609_KohilaHr.pdf', NULL, '1', '2026-02-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-23 01:14:22', 159, '2026-02-24 01:15:47', 0, NULL, 1),
(28691, '', '0', '7833767282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602230028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-23 01:32:29', 0, NULL, 0, NULL, 1),
(28692, '', '0', '7358248517', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602230029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-23 02:27:59', 0, NULL, 0, NULL, 1),
(28693, '', '0', '7338775857', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602230030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-23 03:58:27', 0, NULL, 0, NULL, 1),
(28694, 'Aishwarya', '4', '9791324579', '7010732225', 'aishupunniyam@gmail.Com', '2000-05-09', 25, '2', '1', 'Gopalakrishnan', 'Customer handling', 18000.00, 1, 0.00, 15000.00, 'Veeramangudi', 'Veeramangudi', '2602230031', '1', '2', 'upload_files/candidate_tracker/20270791742_aishuresumeedited.pdf', NULL, '1', '2026-02-24', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-23 04:31:09', 154, '2026-02-24 12:01:14', 0, NULL, 1),
(28695, 'Vasanth V', '13', '7904833406', '8754544757', 'vasanthvenkatesan4118@gmail.com', '2005-05-11', 20, '2', '2', 'Venkatesan I', 'Flower shop', 215000.00, 1, 0.00, 18000.00, 'MYLAPORE', 'MYLAPORE', '2602230032', '1', '1', 'upload_files/candidate_tracker/80306312633_Vasanth.VResume2.pdf', NULL, '1', '2026-02-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', '0', '0', NULL, 1, '2026-02-23 06:32:57', 1, '2026-02-23 06:38:53', 0, NULL, 1),
(28696, '', '0', '8056208225', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602240001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-24 12:54:32', 0, NULL, 0, NULL, 1),
(28697, 'Abinesh Kumar', '13', '9514578377', '', 'mrabi0164@gmail.com', '2004-03-25', 21, '2', '2', 'suresh kumar', 'driver', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chenani', '2602240002', '27', '1', 'upload_files/candidate_tracker/7253393124_AbineshkumarSResume.pdf', NULL, '1', '2026-02-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-24 04:34:45', 159, '2026-02-24 02:41:57', 0, NULL, 1),
(28698, 'Padma Devi', '6', '8015066377', '9003871403', 'abim01427@gmail.com', '2004-06-29', 21, '2', '2', 'Rajan', 'Corporate', 30000.00, 2, 17000.00, 21000.00, 'Madurai', 'Chennai', '2602240003', '66', '2', 'upload_files/candidate_tracker/63539627108_deviresume.pdf', NULL, '1', '2026-02-24', 2, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-24 04:56:12', 159, '2026-02-24 12:00:34', 0, NULL, 1),
(28699, 'R Arundhadi', '6', '7708687825', '7550211448', 'arundhadiarundhadi621@gmail.com', '2003-10-16', 22, '2', '2', 'Birundha', 'House wife', 19000.00, 3, 19000.00, 21000.00, 'No, 8 periyar Street manamedu pondicherry', '600001', '2602240004', '66', '2', 'upload_files/candidate_tracker/97692673341_ArundhadiResume1.pdf', NULL, '1', '2026-02-24', 3, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate comunication skill and voice good , past 6 month exp for loan company , some internal reason to quite the job , so try for 7 days training period and exp salary for 18to 19k salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'CA130', '5151', '1970-01-01', 1, '2026-02-24 04:57:51', 159, '2026-02-24 12:33:15', 0, NULL, 1),
(28700, '', '0', '9003871403', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602240005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-24 05:21:45', 0, NULL, 0, NULL, 1),
(28701, 'vanitha c', '33', '9003210382', '', 'vanithac0701@gmail.com', '2001-01-07', 25, '3', '1', 'akash d', 'collection staff', 23000.00, 1, 250000.00, 400000.00, 'chennai', 'chennai', '2602240006', '', '2', 'upload_files/candidate_tracker/93809460836_VanithaCcv.pdf', NULL, '1', '2026-02-24', 60, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-24 05:49:43', 159, '2026-02-24 12:52:04', 0, NULL, 1),
(28702, 'Srilakshmi T', '11', '9444275396', '6383844693', 'srilakshmivellore2001@gmail.com', '2001-02-19', 25, '3', '2', 'Thulasidaran T S', 'Agriculture', 10000.00, 1, 0.00, 240000.00, 'Chennai', 'Chennai', '2602240007', '', '1', 'upload_files/candidate_tracker/82633434317_HRCV.pdf', NULL, '1', '2026-02-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-24 06:10:10', 159, '2026-02-24 01:31:15', 0, NULL, 1),
(28703, '', '0', '9962195558', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602240008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-24 06:37:25', 0, NULL, 0, NULL, 1),
(28704, 'SOMULA MANISREE', '13', '6305624194', '', 'manisreemanisree3@gmail.com', '2002-02-23', 24, '2', '2', 'Sarweswarareddy', 'Agricultura', 30000.00, 1, 0.00, 2.00, 'Andhrapradesh', 'Madhuravoyal, Chennai', '2602240009', '1', '1', 'upload_files/candidate_tracker/86335128938_ManisreeResume1.pdf', NULL, '1', '2026-02-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1000', '0', '0', '0', NULL, 1, '2026-02-24 06:53:55', 1, '2026-02-24 07:18:16', 0, NULL, 1),
(28705, '', '0', '6381000545', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602240010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-24 07:35:46', 0, NULL, 0, NULL, 1),
(28706, '', '0', '9014298970', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602240011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-24 08:33:59', 0, NULL, 0, NULL, 1),
(28707, 'Mahalakshmi B', '6', '9003110665', '9344587055', 'mvb532008@gmail.com', '1998-03-06', 27, '2', '1', 'Loganathan', 'Mis Ananlyst', 36000.00, 1, 22500.00, 25000.00, 'Tirunelveli', 'Chennai', '2602240012', '1', '2', 'upload_files/candidate_tracker/4552146440_B.Mahalakshmi1.pdf', NULL, '1', '2026-02-24', 60, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2026-02-24 08:56:33', 159, '2026-02-24 02:36:40', 0, NULL, 1),
(28708, 'sriram a', '13', '7904449227', '', 'sriram.thiruvannamalai@gmail.com', '2005-04-08', 20, '2', '2', 'anbazhagan', 'farmer', 60000.00, 1, 0.00, 200000.00, 'tiruvannamalai', 'chennai', '2602240013', '1', '1', 'upload_files/candidate_tracker/14530963029_SRIRAM.pdf', NULL, '1', '2026-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-24 09:14:24', 159, '2026-02-26 05:55:23', 0, NULL, 1),
(28709, '', '0', '6369490338', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602240014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-24 09:21:39', 0, NULL, 0, NULL, 1),
(28710, 'Kamalesh', '13', '6385430534', '', 'kamalesheswar2004@gmail.com', '2004-04-13', 21, '2', '2', 'Eswaramoorthy N', 'Tailor', 140000.00, 1, 0.00, 200000.00, 'Salem', 'Salem', '2602240015', '1', '1', 'upload_files/candidate_tracker/11780357608_KAMALESHE.pdf', NULL, '1', '2026-02-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-24 09:45:24', 159, '2026-02-24 04:21:31', 0, NULL, 1),
(28711, 'Abisha V', '13', '8825643432', '8825643433', 'abishavenkatesan@gmail.com', '2004-01-06', 22, '2', '2', 'Venkatesan', 'Farmer', 12000.00, 3, 0.00, 3.00, 'Tiruvannamalai', 'Chennai', '2602240016', '1', '1', 'upload_files/candidate_tracker/19130019928_abiresume1.pdf', NULL, '1', '2026-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-24 09:51:38', 159, '2026-02-26 06:05:38', 0, NULL, 1),
(28712, '', '0', '9790464720', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602240017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-24 10:17:37', 0, NULL, 0, NULL, 1),
(28713, '', '0', '9003204151', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602240018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-24 10:57:38', 0, NULL, 0, NULL, 1),
(28714, '', '0', '7530009178', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602240019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-24 11:25:59', 0, NULL, 0, NULL, 1),
(28715, 'sakthishwaran C', '13', '7358823558', '', 'cjsakthi333@gmail.com', '2002-10-06', 23, '2', '2', 'Chellappa', 'Farmer', 10000.00, 0, 0.00, 20000.00, 'Pudukkottai', 'Chennai', '2602240020', '1', '1', 'upload_files/candidate_tracker/29067219103_SAKTHIRESUME.pdf', NULL, '1', '2026-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-24 12:17:26', 159, '2026-02-26 05:54:34', 0, NULL, 1),
(28716, 'Shruthi L', '6', '6366119337', '8197337369', 'Shruthicse2022@gmail.com', '1996-11-06', 29, '2', '2', 'Lokeshappa', 'Worker', 20000.00, 2, 21000.00, 25000.00, 'Thanigekal, hosadurga, chithradurga', 'Gollahalli, electronic city Banglore', '2602240021', '1', '2', 'upload_files/candidate_tracker/31111847965_ShruthiLResume2025.docx', NULL, '1', '2026-02-25', 0, '', '1', '167', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55786', '5151', '1970-01-01', 1, '2026-02-24 12:22:01', 154, '2026-02-25 06:41:31', 0, NULL, 1),
(28717, 'Boopathy P', '13', '8428036463', '', 'boopathyperuml2004@gmail.com', '2004-04-12', 21, '2', '2', 'perruma k', 'painter', 40000.00, 1, 0.00, 30000.00, 'Perambalur', 'chennai', '2602240022', '1', '1', 'upload_files/candidate_tracker/77491354176_BoopathyResume.pdf', NULL, '1', '2026-02-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round 1 not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-24 12:24:08', 154, '2026-02-25 11:52:51', 0, NULL, 1),
(28718, 'Dinesh Krishnasamy', '31', '9500851314', '9003938412', 'kdineshuchb@gmail.com', '2002-01-14', 24, '2', '2', 'Krishnasamy T', 'Driver', 200000.00, 1, 0.00, 21000.00, 'Dindigul', 'Chennai', '2602240023', '1', '1', 'upload_files/candidate_tracker/21817133601_DineshKResume1.pdf', NULL, '1', '2026-02-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1028', '0', '0', '0', NULL, 1, '2026-02-24 01:01:51', 1, '2026-02-25 02:47:38', 0, NULL, 1),
(28719, 'Aniruthan ragunathan', '4', '9600454649', '7418783802', 'aniruthan968@gmail.com', '2004-10-28', 21, '2', '2', 'Ragunathan', 'Electrician', 40000.00, 0, 0.00, 15000.00, 'Ayyampet', 'Ayyampet', '2602240024', '1', '1', 'upload_files/candidate_tracker/38480994510_anirathancv.pdf', NULL, '1', '2026-02-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not performing well', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-24 01:47:57', 154, '2026-02-26 01:44:59', 0, NULL, 1),
(28720, 'MADHAN K', '6', '9360690494', '', 'Madhan.k.03.01@gmail.com', '2002-01-03', 24, '2', '2', 'Dhanalakshmi', 'Business', 60000.00, 2, 15000.00, 20000.00, 'No 53/8 Teeses Garden Street', 'No 53/8 Teeses Garden Street', '2602240025', '1', '2', 'upload_files/candidate_tracker/42000789105_madhanresume.pdf', NULL, '1', '2026-02-25', 0, '', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CA130', '5151', '1970-01-01', 1, '2026-02-24 04:28:52', 159, '2026-02-25 02:42:51', 0, NULL, 1),
(28721, 'Kishore S', '16', '7401154706', '', 'kishore15dataanalyst@gmail.com', '2002-05-15', 23, '1', '2', 'Suresh S', 'Painter', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2602250001', '', '1', 'upload_files/candidate_tracker/66066762674_KishoreB.comdataanalytics.pdf', NULL, '1', '2026-02-25', 0, '55748', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-25 04:09:35', 154, '2026-02-25 12:55:36', 0, NULL, 1),
(28722, 'Ajay kumar M A', '2', '7397579950', '', 'maajaykumar6102@gmail.com', '2004-04-24', 21, '2', '2', 'Amar nath', 'Lorry driver', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2602250002', '1', '1', 'upload_files/candidate_tracker/79185748617_AJAYRESUME1.docx', NULL, '1', '2026-02-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-25 04:20:26', 154, '2026-02-25 10:05:42', 0, NULL, 1),
(28723, 'Aswinthkumar S S', '13', '9944610258', '7708238689', 'aswinthsaravanan@gmail.com', '2005-04-05', 20, '3', '2', 'saravanan sb', 'business', 30000.00, 1, 0.00, 350000.00, 'kanchipuram', 'kanchipuram', '2602250003', '', '1', 'upload_files/candidate_tracker/15967121439_ASWINTHKUMARSSresumecompressed.pdf', NULL, '1', '2026-03-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-25 04:21:46', 1, '2026-03-04 01:26:29', 0, NULL, 1),
(28724, 'Naveen Kumar.R', '6', '9994897792', '9787940155', 'naveenkumarraju38@gmail.com', '2000-08-09', 25, '2', '2', 'Singaram', 'House wife', 20000.00, 0, 15000.00, 23000.00, 'Namakkal', 'Namakkal', '2602250004', '1', '2', 'upload_files/candidate_tracker/64596486805_NaveenresumenonIT.pdf', NULL, '1', '2026-02-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-02-25 05:02:41', 154, '2026-02-25 11:50:59', 0, NULL, 1),
(28725, 'Elango C', '23', '7373435135', '', 'elangoc99@gmail.com', '2000-05-20', 25, '2', '2', 'chinnaraj c', 'framer', 1.00, 1, 0.00, 200000.00, 'sathyamangalam erode', 'sholinganallur chennai', '2602250005', '1', '1', 'upload_files/candidate_tracker/80720090887_ElangoCGraphicandUIUXDesignerResume.pdf', NULL, '1', '2026-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-25 06:02:09', 159, '2026-02-26 05:54:48', 0, NULL, 1),
(28726, 'Mano E', '6', '9344700410', '7448627286', 'manoelamurugan@gmail.com', '2002-06-16', 23, '1', '2', 'Elamaurugan', 'Farming', 120000.00, 1, 16500.00, 23000.00, 'Karur', 'Vadapalani', '2602250006', '', '2', 'upload_files/candidate_tracker/17569032239_ManoResumeFINALcompressed.pdf', NULL, '1', '2026-02-25', 12, 'C99234', '3', '59', '2026-03-10', 210000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher for our roles just 6 months exp in real estate based on manager push we have gone with this salary package', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'CA130', '5151', '2026-03-10', 1, '2026-02-25 07:12:24', 60, '2026-03-09 07:40:24', 0, NULL, 1),
(28727, '', '0', '9080200766', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602250007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-25 07:27:56', 0, NULL, 0, NULL, 1),
(28728, 'Abdul Basith hanifa', '13', '8778685195', '', 'abdulbasithibnhanifa@gmail.com', '2005-05-09', 20, '3', '2', 'Hanifa', 'Daily wage', 60000.00, 2, 0.00, 20000.00, 'Madurai', 'Chennai', '2602250008', '', '1', 'upload_files/candidate_tracker/75627902772_abdulbasithresume1.pdf', NULL, '1', '2026-02-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'round 1 not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-25 07:44:01', 154, '2026-02-25 03:41:35', 0, NULL, 1),
(28729, 'Vishnusundar', '13', '8610059720', '9597850207', 'skvishnu0204@gmail.com', '2005-04-02', 20, '3', '2', 'S.Krishnan', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Madurai', 'Chennai', '2602250009', '', '1', 'upload_files/candidate_tracker/24648351285_VishnusundarResume1.pdf', NULL, '1', '2026-02-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'round 1 not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-25 07:46:25', 154, '2026-02-25 03:42:19', 0, NULL, 1),
(28730, 'Sangeetha Dhanapal', '13', '6369231328', '7395896354', 'dsangeetha0104@gmail.com', '2003-04-01', 22, '3', '2', 'Dhanapal', 'Farmer', 12000.00, 2, 0.00, 200000.00, 'Komarapalyam, Namakkal', 'Ekkatuthangal, Chennai', '2602250010', '', '1', 'upload_files/candidate_tracker/89013622588_SangeethaDhanapalresume.pdf', NULL, '1', '2026-02-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'round 1 not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-25 07:48:16', 154, '2026-02-25 03:40:59', 0, NULL, 1),
(28731, '', '0', '8838944469', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602250011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-25 07:55:22', 0, NULL, 0, NULL, 1),
(28732, 'Pradeepan N', '31', '9092661137', '', 'pradeep.nagavelu@gmail.com', '2011-02-25', 0, '2', '2', 'Nagavelu.m', 'Enterpreneur', 20000.00, 1, 0.00, 15000.00, 'Pondicherry', 'Chennai', '2602250012', '1', '1', 'upload_files/candidate_tracker/36453546617_PRADEEPAN.N21.pdf', NULL, '1', '2026-02-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-02-25 07:56:17', 1, '2026-02-25 08:02:44', 0, NULL, 1),
(28733, 'Kavitha A', '34', '9345330703', '9884219888', 'kavithaanandkavi2@gmail.com', '2002-04-08', 23, '3', '2', 'ANANDAKUMAR K', 'Building contractor', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2602250013', '', '1', 'upload_files/candidate_tracker/78534729580_KavithaADataAnalystnewcopy1.pdf', NULL, '1', '2026-02-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'round 1 not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-25 09:12:22', 154, '2026-02-25 04:59:31', 0, NULL, 1),
(28734, 'Tamizharasi', '6', '8610432279', '8122181396', 'saitamizh02@gmail.com', '2002-12-24', 23, '2', '2', 'Kumari', 'Housewife', 100000.00, 2, 0.00, 15000.00, 'Thirumazhisai', 'Thirumazhisai', '2602250014', '1', '1', 'upload_files/candidate_tracker/70166935433_tamil1.pdf', NULL, '1', '2026-02-26', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not good at communication and not at all open to a conversation will not suitable for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', '5151', '1970-01-01', 1, '2026-02-25 10:25:57', 154, '2026-02-26 12:46:05', 0, NULL, 1),
(28735, 'T. KANIMOZHI', '4', '9080766568', '7305904569', 'kanimozhi1999123@gmail.com', '1999-07-30', 26, '5', '2', 'T. Jansirani', 'Coolie', 30000.00, 1, 20000.00, 25000.00, '105 B, Butt road St. Thomas mount Chennai-16', '105 B, Butt road St. Thomas mount Chennai-16', '2602250015', '', '2', 'upload_files/candidate_tracker/64201408498_CV2026010120501673.pdf', NULL, '1', '2026-02-25', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-25 10:54:14', 1, '2026-02-25 10:59:00', 0, NULL, 1),
(28736, 'Dhushyanthan G', '4', '7806967052', '', 'dhushyanthang04@gmail.com', '2004-08-04', 21, '2', '2', 'Gandhi', 'Bank', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2602250016', '1', '1', 'upload_files/candidate_tracker/95402195425_Dhushyanthanbackenddevelopee.pdf', NULL, '1', '2026-02-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not performing well', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-25 11:02:04', 154, '2026-02-26 01:45:31', 0, NULL, 1),
(28737, 'N balaji', '6', '6383605405', '9003232221', 'balajirahul2707@gmail.com', '1999-07-27', 26, '2', '2', 'D nagarajan', 'Oxygen operator', 60000.00, 1, 20000.00, 25000.00, 'Thiruvottiyur Chennai', 'Thiruvottiyur Chennai', '2602250017', '1', '2', 'upload_files/candidate_tracker/51875459346_balaresume.pdf', NULL, '1', '2026-02-27', 0, '', '3', '59', '2026-03-03', 246000.00, '', '3', '2026-03-03', '1', 'Communication ok have exp in calling process need to check in training  for our roles', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '2026-03-03', 1, '2026-02-25 11:06:50', 60, '2026-03-03 09:58:37', 0, NULL, 1),
(28738, 'Rokith', '13', '8667360917', '', 'srohith0205@gmail.com', '2004-03-20', 21, '2', '2', 'Selvam', 'Labour', 25000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2602250018', '1', '1', 'upload_files/candidate_tracker/49196580001_ROHITH2compressed.pdf', NULL, '1', '2026-02-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-25 12:31:42', 159, '2026-02-26 06:04:52', 0, NULL, 1),
(28739, 'YUVASHREE R', '35', '6381790502', '', 'r.yuvashree30@gmail.com', '2004-06-30', 21, '2', '2', 's rajkumar', 'painter contractor', 20000.00, 2, 0.00, 300000.00, 'chennai tamilnadu', 'chennai, Tamilnadu', '2602250019', '1', '1', 'upload_files/candidate_tracker/23867942739_abloy.pdf', NULL, '1', '2026-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-25 12:34:23', 159, '2026-02-26 05:53:23', 0, NULL, 1),
(28740, '', '0', '7845384079', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602250020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-25 12:43:18', 0, NULL, 0, NULL, 1),
(28741, 'Mahalakshmi', '13', '6380810518', '', 'mahaprabha2910@gmail.com', '2004-10-29', 21, '2', '2', 'Pradeebha', 'Digital work', 20000.00, 1, 0.00, 20000.00, 'Pudukkottai, Tamil Nadu', 'Chennai, Velachery', '2602250021', '1', '1', 'upload_files/candidate_tracker/503766162_javafullstackdevelopermahacompressed1.pdf', NULL, '1', '2026-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-25 01:00:56', 159, '2026-02-26 05:52:50', 0, NULL, 1),
(28742, 'M. Vimalraj', '13', '7338731392', '6381412013', 'mvimalraj341@gmail.com', '2011-02-25', 0, '2', '2', 'Loganathan', 'Full stack developer', 15000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2602250022', '1', '1', 'upload_files/candidate_tracker/4034300080_Vimalresume.pdf', NULL, '1', '2026-02-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1024', '0', '0', '0', NULL, 1, '2026-02-25 01:12:45', 1, '2026-02-25 01:16:23', 0, NULL, 1),
(28743, 'M. Vimalraj', '13', '6381412013', '7338731292', 'mvimalraj341@gmail.com', '2006-04-21', 19, '2', '2', 'Loganathan', 'Full stack developer', 15000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2602250023', '1', '1', 'upload_files/candidate_tracker/56308343874_Vimalresume.pdf', NULL, '1', '2026-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-25 01:21:03', 159, '2026-02-26 05:53:07', 0, NULL, 1),
(28744, 'Nithya B', '13', '9176884105', '', 'nithya131104@gmail.com', '2004-11-13', 21, '2', '2', 'Bhaskar V', 'Driver', 100000.00, 1, 0.00, 30000.00, 'Chennai', 'Avadi,chennai', '2602250024', '1', '1', 'upload_files/candidate_tracker/43164314457_Nithyacv.pdf', NULL, '1', '2026-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-25 01:38:35', 159, '2026-02-26 06:12:28', 0, NULL, 1),
(28745, '', '0', '8625051648', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602250025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-25 01:41:14', 0, NULL, 0, NULL, 1),
(28746, '', '0', '6381772858', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602250026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-25 03:38:34', 0, NULL, 0, NULL, 1),
(28747, 'Dhanush kanna k', '6', '7338953833', '8056098940', 'dhanushkannak@gmail.com', '2004-11-11', 21, '2', '2', 'Chellapandi k', 'Tailor', 25000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2602250027', '1', '2', 'upload_files/candidate_tracker/86805886993_resume.pdf', NULL, '1', '2026-02-26', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2026-02-25 03:43:36', 159, '2026-02-26 01:20:25', 0, NULL, 1),
(28748, 'nirmal kumar', '2', '6382339382', '', 'rockerrock223@gmail.com', '2001-10-20', 24, '2', '2', 'ilango', 'farmer', 15000.00, 0, 0.00, 18000.00, 'dindigul', 'chennai', '2602250028', '1', '1', 'upload_files/candidate_tracker/20135409455_ResumeM.pdf', NULL, '1', '2026-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-25 03:44:25', 159, '2026-02-26 05:53:51', 0, NULL, 1),
(28749, 'BLESSING MESHACH R', '11', '7708990269', '', 'blessingmeshach85@gmail.com', '2003-06-03', 22, '2', '2', 'rajadurai', 'worker', 100000.00, 2, 0.00, 12000.00, 'thoothukudi', 'velachery', '2602260001', '1', '1', 'upload_files/candidate_tracker/32066125739_BLESSINGMESHACHRHR.pdf', NULL, '1', '2026-02-26', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55864', '55566', '1970-01-01', 1, '2026-02-26 04:02:04', 154, '2026-02-26 12:34:53', 0, NULL, 1),
(28750, 'partha sarathy.R', '13', '8925121543', '', 'psarathyr757@gmail.com', '2003-07-11', 22, '2', '2', 'Ramajayam P', 'Rice merchant', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2602260002', '27', '1', 'upload_files/candidate_tracker/94338278759_RESUME1.pdf', NULL, '1', '2026-02-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-26 04:25:00', 159, '2026-02-26 06:10:08', 0, NULL, 1),
(28751, 'Vignesh M', '2', '8428276594', '', 'vigneshms9962@gmail.com', '2004-06-10', 21, '2', '2', 'Manikandan C', 'Shop worker', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2602260003', '27', '1', 'upload_files/candidate_tracker/21770238357_resume1.pdf', NULL, '1', '2026-02-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-26 04:28:01', 159, '2026-02-26 10:24:23', 0, NULL, 1),
(28752, 'Sundaresan', '4', '7845330459', '', 'sundaresan42000@gmail.com', '2000-12-14', 25, '2', '2', 'Palanivelu', 'Civil engineering', 19000.00, 1, 0.00, 14000.00, 'Thanjavur', 'Thanjavur', '2602260004', '1', '1', 'upload_files/candidate_tracker/43236939617_Sundarresume.pdf', NULL, '1', '2026-02-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-26 04:33:24', 154, '2026-02-26 01:46:24', 0, NULL, 1),
(28753, 'pavithra arendran', '11', '6381849340', '', 'pavinaren99@gmail.com', '2011-02-26', 0, '2', '2', 'narendrean ather', 'cable tv operator', 300000.00, 1, 180000.00, 250000.00, 'pallavaram', 'palla', '2602260005', '1', '2', 'upload_files/candidate_tracker/13555460309_PavithraResume.pdf', NULL, '1', '2026-02-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-26 05:12:04', 159, '2026-02-26 12:01:44', 0, NULL, 1),
(28754, 'J Gnanabakkiyam', '4', '9790876034', '9962257298', 'bakkiyajayaraj@gmail.com', '1997-05-03', 28, '5', '2', 'T. Jayaraj', 'Building contractor', 20000.00, 4, 2.50, 3.00, 'Sevvapet', 'Sevvapet', '2602260006', '', '2', 'upload_files/candidate_tracker/8190729512_CV2025120212560982.pdf', NULL, '1', '2026-02-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-26 05:22:28', 1, '2026-02-26 05:33:20', 0, NULL, 1),
(28755, 'Nandhini', '6', '7708560969', '9790876733', 'nandhinidhanush4@gmail.com', '1993-03-04', 32, '2', '1', 'Damodaran', 'IT Employee', 35000.00, 1, 0.00, 25000.00, 'Perambur', 'Perambur', '2602260007', '1', '2', 'upload_files/candidate_tracker/15282900053_NandhiniUpdatedResume20252.docx', NULL, '1', '2026-02-26', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-02-26 05:37:01', 159, '2026-02-26 12:42:13', 0, NULL, 1),
(28756, 'Jananee G', '13', '9344631256', '', 'jananeegovindaraj@gmail.com', '2003-12-25', 22, '1', '2', 'Father', 'Driver', 200000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2602260008', '', '1', 'upload_files/candidate_tracker/69240292096_Atscheck.pdf', NULL, '1', '2026-03-08', 0, 'Sathish', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-26 05:41:18', 1, '2026-03-02 03:47:29', 0, NULL, 1),
(28757, 'abinesh balasubramanian', '4', '8489012698', '9677333419', 'abinesh9246@gmail.com', '2000-11-14', 25, '2', '2', 'rubavathi', 'engineer', 20000.00, 0, 0.00, 18000.00, 'thanjavur', 'thanjavur', '2602260009', '1', '1', 'upload_files/candidate_tracker/29864736632_ABINESH1commen.pdf', NULL, '1', '2026-02-26', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is ok with the profile completed BE  2025 passed out .....single child father passed 10 years back and doing tea shop business....mother passed away this year doing parlour business......he is single independant....have own shops in rental and doing mother finance business...monthly take home around 30k....so kindly cross check in this parameter....have one grandma 65+ so he have the responsibilites to take care so only he is not choosing other cities and not try to join in IT....so i have a doubt regarding the monly revenue 30k...so how he gave the importatnt for the job....but have good manners and atitude to handle cross check in this parameter...joining after 10 days because of grandma cataract operation.', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-26 05:53:23', 154, '2026-02-26 01:44:11', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28758, 'reegan.r', '4', '9677333419', '8489012698', 'reegan0102@gmail.com', '1999-10-19', 26, '2', '2', 'jenitha', 'engineer', 20000.00, 2, 16000.00, 19000.00, 'Thanjavur', 'thanjavur', '2602260010', '1', '2', 'upload_files/candidate_tracker/88082797400_ReeganR.pdf', NULL, '1', '2026-02-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suite for team...over matured and long travel with future mindset depends upon business only so not suite for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-02-26 05:53:50', 154, '2026-02-26 01:44:29', 0, NULL, 1),
(28759, 'Anuthra Sivakumar', '6', '8667628603', '', 'anu992004@gmail.com', '2004-09-09', 21, '2', '2', 'G Sivakumar', 'Cab driver', 30000.00, 1, 20000.00, 20000.00, 'Chennai', 'Chennai', '2602260011', '1', '2', 'upload_files/candidate_tracker/96794207326_downloadresume.pdf', NULL, '1', '2026-03-06', 1, '', '3', '59', '2026-03-09', 192000.00, '', '3', '2026-03-09', '2', 'Communication Ok 6 months worked in insurance based company based on the commission salary open to explore and learn need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '2026-03-09', 1, '2026-02-26 06:16:50', 60, '2026-03-09 09:51:38', 0, NULL, 1),
(28760, 'Murugan j', '6', '9344014565', '8838532830', 'rajinimurugan1965@gmail.com', '2001-09-20', 24, '2', '2', 'Senthamarai', 'House wife', 25000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2602260012', '57', '1', 'upload_files/candidate_tracker/82357054478_Murugan1.pdf', NULL, '1', '2026-02-26', 0, '', '5', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication average only and he itself openly admitting he came just for his brother and totally food industry experience and at his initial stage of career itself he dont have interest in BPO', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-02-26 06:17:57', 159, '2026-02-26 01:12:10', 0, NULL, 1),
(28761, 'selvaganapathy j', '6', '8838532830', '9344014565', 'selvaganapathy2828@gmail.com', '1998-04-28', 27, '2', '1', 'leena', 'house wife', 20000.00, 1, 0.00, 17000.00, 'saidapet', 'saidapet', '2602260013', '57', '1', 'upload_files/candidate_tracker/56108185449_Selvaganapathi.pdf', NULL, '1', '2026-02-26', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2026-02-26 06:18:24', 154, '2026-02-26 03:04:42', 0, NULL, 1),
(28762, '', '0', '8220428075', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602260014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-26 06:30:55', 0, NULL, 0, NULL, 1),
(28763, 'Rakshith Gowda A R', '6', '8884090172', '8147356735', 'gowdarakshith858@gmail.com', '2002-10-15', 23, '2', '2', 'Raju', 'Farmer', 200000.00, 3, 21400.00, 25000.00, 'K R Nagar', 'Bangalore', '2602260015', '57', '2', 'upload_files/candidate_tracker/16179502641_RAKSHITH.pdf', NULL, '2', '2026-02-26', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-26 07:12:03', 162, '2026-02-26 12:58:26', 0, NULL, 1),
(28764, 'Divya D', '6', '8667658773', '8939140296', 'divyageorge9043540648@gmail.com', '1996-02-14', 30, '2', '1', 'Gowri shankar', 'Manager', 25000.00, 1, 22000.00, 25000.00, 'Chennai', 'Kodungaiur', '2602260016', '1', '2', 'upload_files/candidate_tracker/86266151505_Divyaresume2.docx', NULL, '1', '2026-02-26', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2026-02-26 07:24:55', 154, '2026-02-26 01:38:43', 0, NULL, 1),
(28765, 'ASIF A N', '11', '8086258709', '', 'asifnizar1999@gmail.com', '1999-10-22', 26, '3', '2', 'NIZAR A J', 'Business', 600000.00, 2, 0.00, 17000.00, 'Thoppil House Polayathode kollam kerala', 'MMA HOSTEL Anna Salai Chennai', '2602260017', '', '1', 'upload_files/candidate_tracker/41668600515_CV2025100318544845.pdf', NULL, '1', '2026-02-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-26 07:41:04', 159, '2026-02-26 01:22:55', 0, NULL, 1),
(28766, 'Hari Krishnan', '6', '8608152896', '9789908261', 'hk9792087@gmail.com', '2004-10-09', 0, '2', '2', 'Suresh', 'Tailor', 20000.00, 1, 20000.00, 25000.00, 'Pallavaram', 'Pallavaram', '2602260018', '1', '1', 'upload_files/candidate_tracker/82550791072_Resume10compressed.pdf', NULL, '1', '2026-02-26', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2026-02-26 10:00:04', 159, '2026-02-26 04:34:35', 0, NULL, 1),
(28767, 'Arthi Ganesh', '6', '9150691591', '9787850895', 'arthiganesh50@gmail.com', '1996-10-17', 29, '2', '1', 'Arunkumar', 'Developer', 80000.00, 2, 20000.00, 30000.00, 'Palani', 'Chennai', '2602260019', '1', '2', 'upload_files/candidate_tracker/12972339491_ArthiGaneshResume.pdf', NULL, '1', '2026-02-27', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1028', '', '55882', '55566', '1970-01-01', 1, '2026-02-26 10:29:30', 154, '2026-02-27 04:01:46', 0, NULL, 1),
(28768, '', '0', '8760833056', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602260020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-26 11:08:36', 0, NULL, 0, NULL, 1),
(28769, 'Karen Mohanakumaran', '11', '7448828102', '9940138102', 'karenmohan845@gmail.com', '2000-12-12', 25, '2', '2', 'Mohanakumaran', 'Employee', 40000.00, 0, 22000.00, 25000.00, 'Chennai', 'Chennai', '2602260021', '1', '2', 'upload_files/candidate_tracker/83772218029_ResumeKarenMUpdated.docx', NULL, '1', '2026-02-27', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-02-26 12:26:33', 159, '2026-02-27 11:17:09', 0, NULL, 1),
(28770, 'radha r', '11', '8825940713', '9940425282', 'radharameshr25@gmail.com', '2001-09-25', 24, '2', '2', 'Ramesh', 'business', 50000.00, 1, 0.00, 23000.00, 't nagar', 't nagar', '2602260022', '1', '2', 'upload_files/candidate_tracker/34360386972_RADHARAMESH2025.pdf', NULL, '1', '2026-02-27', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-02-26 12:41:00', 159, '2026-02-27 01:31:23', 0, NULL, 1),
(28771, 'Sanjuhasri Kumar', '13', '8925290156', '9750236327', 'sanjuha2005@gmail.com', '2005-08-02', 20, '2', '2', 'p.kumar', 'artist', 20000.00, 1, 0.00, 25000.00, 'chennai', 'namakkal', '2602260023', '1', '1', 'upload_files/candidate_tracker/54909592735_SANJUHASRIResume1.pdf', NULL, '1', '2026-03-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-02-26 01:03:10', 1, '2026-02-27 04:47:28', 0, NULL, 1),
(28772, 'Pooja sivakumar', '13', '9943547966', '', 'poojasy2503@gmail.com', '2005-01-03', 21, '2', '2', 'Siva Kumar A, Shanthi s', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Tindivanam', 'Tindivanam', '2602260024', '1', '1', 'upload_files/candidate_tracker/6625244832_poojaresume2.pdf', NULL, '1', '2026-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-02-26 01:10:20', 1, '2026-02-26 01:31:45', 0, NULL, 1),
(28773, 'Aravindhan kumar', '6', '9342186701', '8429901129', 'aravindvinayak06@gmail.com', '2004-06-29', 0, '2', '2', 'Pakkiyam', 'Fishing', 25000.00, 2, 18000.00, 20000.00, '833, galany st karanguda, thanjavur 614802', 'East coast road neelangarai chennai', '2602260025', '1', '2', 'upload_files/candidate_tracker/25771710775_MyDocument.pdf202602251935060000.pdf', NULL, '1', '2026-02-27', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2026-02-26 04:02:45', 159, '2026-02-27 04:56:01', 0, NULL, 1),
(28774, 'Mukesh', '6', '8514923990', '7305052335', 'mukeshudhaya04@gmail.com', '2004-09-13', 21, '2', '2', 'Bhavani', 'Nil', 90000.00, 1, 0.00, 20000.00, 'No.33 Mallima veedi thiruneermalai chennai-44', 'No 31 vsm Garden west saidapet chennai - 600083', '2602260026', '1', '1', 'upload_files/candidate_tracker/82198679005_ImagetoPDF2026020116.55.48.pdf', NULL, '1', '2026-02-28', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good.also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-02-26 04:35:43', 159, '2026-02-28 01:08:07', 0, NULL, 1),
(28775, 'Aishwarya chithravel', '17', '9940671471', '8428317663', 'aishwaryachithravel@gmail.com', '2003-05-17', 22, '5', '2', 'Chithravel', 'Business', 120000.00, 1, 20000.00, 25000.00, 'Ambattur', 'Ambattur', '2602260027', '', '2', 'upload_files/candidate_tracker/14172785566_AishwaryaCupdatedresume.docx', NULL, '1', '2026-02-27', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-26 05:39:02', 1, '2026-02-26 06:13:14', 0, NULL, 1),
(28776, 'suvarna J', '6', '7022421851', '', 'suvarnajegli.98@gmail.com', '1998-06-15', 27, '2', '2', 'Hanumanthappa', 'Kooli', 100000.00, 2, 20000.00, 25000.00, 'Raichur', 'Btm 2nd stage Bengaluru Karnataka 560076', '2602270001', '1', '2', 'upload_files/candidate_tracker/62314855665_SuvarnaJKnowplicity.pdf', NULL, '1', '2026-02-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good communication , good skills expected 25k try to convince for 22k or 23k', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1031', '', '55786', '5151', '1970-01-01', 1, '2026-02-27 04:03:51', 154, '2026-02-28 06:47:31', 0, NULL, 1),
(28777, 'Kanimurugan Selvaraj', '13', '9751345835', '9047382690', 'kanimurugan218@gmail.com', '2004-01-04', 22, '3', '2', 'Selvaraj', 'Farmer', 10000.00, 1, 0.00, 3.50, 'Ramanathapuram', 'Thoraipakkam', '2602270002', '', '1', 'upload_files/candidate_tracker/86119623580_kanimuruganCV.pdf', NULL, '1', '2026-02-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-27 04:38:53', 159, '2026-02-27 11:28:48', 0, NULL, 1),
(28778, 'Surya Prakash S', '13', '6381496861', '', 'ssuryaprakashs555@gmail.com', '2011-02-27', 0, '3', '2', 'Suresh Kumar M', 'Coolie', 7000.00, 3, 0.00, 400000.00, 'Sivagangai', 'Chennai', '2602270003', '', '1', 'upload_files/candidate_tracker/57533233054_SURYAPRAKASHSCV.pdf', NULL, '1', '2026-02-27', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-27 04:38:55', 159, '2026-02-27 10:17:00', 0, NULL, 1),
(28779, 'devadharshini', '6', '7358632736', '', 'devadharshini15082002@gmail.com', '2002-08-15', 23, '2', '2', 'jayashankar', 'hotel super', 50000.00, 2, 240000.00, 27000.00, 'triplicane', 'triplicane chennai', '2602270004', '1', '2', 'upload_files/candidate_tracker/72854412112_DevadharshiniResume.pdf', NULL, '1', '2026-03-03', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-27 04:57:18', 159, '2026-03-03 03:58:57', 0, NULL, 1),
(28780, 'Jeyavardhini K.s', '6', '9080419843', '', 'ksjeyavardhini@gmail.com', '2000-09-10', 25, '2', '2', 'Amudhavalli', 'Teacher', 45.00, 0, 0.00, 3.50, '145 kamber street kalinagar nagar st.thomas Mount', '145 kamber street kalinagar nagar st.thoma Mount', '2602270005', '50', '1', 'upload_files/candidate_tracker/61067594861_1056409034803168041.pdf', NULL, '3', '2026-02-27', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2026-02-27 05:08:13', 159, '2026-02-27 12:17:48', 0, NULL, 1),
(28781, 'MOHAMMED RASULKHAN S', '13', '8939458482', '7904024438', 'rasulkhan1995@gmail.com', '1995-12-18', 30, '3', '2', 'M.Shajahan', 'Passed away', 30000.00, 2, 0.00, 400000.00, 'Chennai', 'Chennai', '2602270006', '', '1', 'upload_files/candidate_tracker/82565867774_ResumeMohammed.pdf', NULL, '1', '2026-02-27', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-02-27 05:19:42', 159, '2026-02-27 01:34:33', 0, NULL, 1),
(28782, 'Ilavarasan P', '4', '6380204806', '', 'filavarasan10596@gmail.com', '2000-04-17', 25, '2', '2', 'R.pandian', 'Veterinary department', 25000.00, 1, 0.00, 16000.00, 'Kanchipuram', 'Kanchipuram', '2602270007', '50', '1', 'upload_files/candidate_tracker/17207571155_ilavarasan.resume.pdf', NULL, '1', '2026-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-27 05:27:26', 1, '2026-02-27 05:31:24', 0, NULL, 1),
(28783, 'balaji l', '5', '9566133104', '', 'balajr511@gmail.com', '1998-01-07', 28, '2', '1', 'akshara', 'accounted', 60000.00, 2, 25000.00, 30000.00, 'velachery', 'velachry', '2602270008', '1', '2', 'upload_files/candidate_tracker/84216498928_BalajiL.pdf', NULL, '1', '2026-02-27', 0, '', '3', '59', '2026-03-02', 360000.00, '', '4', '2026-03-13', '1', 'Communication Ok have exp in multiple domain as matrimony fresher  for our insurance sales can give a try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55650', '55560', '2026-03-02', 1, '2026-02-27 05:44:47', 60, '2026-03-02 09:43:50', 0, NULL, 1),
(28784, 'Surya s', '5', '6374945729', '6381333325', 'mrsuriya260599@gmail.com', '1999-05-26', 26, '2', '2', 'Manjula', 'Physio therapist', 50000.00, 1, 25000.00, 30000.00, 'N0 5 5th Street on garden Mylapore', 'CHENNAI royapathah', '2602270009', '1', '2', 'upload_files/candidate_tracker/17312065725_PDFGallery20260227105224.pdf', NULL, '1', '2026-02-27', 0, '', '3', '59', '2026-03-02', 348000.00, '', '3', '2026-03-12', '1', 'Communication Ok have exp in  bajaj  and aasaan jobs can give a try priovded with same CTC as he is jumped within 2 monhts even in bajaj post confirmation he left in 2 months and joined and left this aasaan in 2 months', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55735', '55557', '2026-03-02', 1, '2026-02-27 05:45:12', 60, '2026-03-02 10:02:50', 0, NULL, 1),
(28785, 'Hari Haran', '33', '9361462105', '9941264212', 'hariharan123456haran@gmail.com', '1999-05-06', 26, '2', '2', 'S palani', 'Tailor', 8000.00, 1, 0.00, 24000.00, 'Chennai', 'Chennai', '2602270010', '1', '2', 'upload_files/candidate_tracker/22698625801_HARI10.pdf', NULL, '1', '2026-02-27', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', 'H1017', '', '77778', '55566', '1970-01-01', 1, '2026-02-27 06:15:15', 159, '2026-02-27 12:35:12', 0, NULL, 1),
(28786, 'Gokila', '6', '6374965969', '6369744003', 'gokila5969c@gmail.com', '2002-12-22', 23, '2', '2', 'Chinnaswamy', 'Furniture store', 28.00, 1, 13.00, 17000.00, 'Dindigul Oddanchatram', 'Chennai Velachery', '2602270011', '1', '2', 'upload_files/candidate_tracker/17199659118_Gokilaresume.pdf', NULL, '1', '2026-02-27', 30, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2026-02-27 06:27:50', 154, '2026-02-27 02:34:10', 0, NULL, 1),
(28787, 'Malathi G', '6', '8754446422', '7397389882', 'sweetysilk524@gamil', '2000-11-18', 25, '2', '2', 'Sarala', 'House wife', 20000.00, 1, 20000.00, 25000.00, '534 f block East cemetery road Old Washermenpet', '534 f block East cemetery road Old Washermenpet', '2602270012', '50', '2', 'upload_files/candidate_tracker/16027344612_GMalathiProfessionalResumeUpdated.pdf', NULL, '1', '2026-02-27', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2026-02-27 06:33:44', 159, '2026-02-27 01:07:44', 0, NULL, 1),
(28788, 'SAMBATH KUMAR M', '6', '9345815502', '', 'sambath07072004@gmail.com', '2004-07-07', 21, '2', '2', 'Mari E', 'Farmer', 15000.00, 2, 0.00, 20000.00, 'Tindivanam', 'Saidapet', '2602270013', '1', '1', 'upload_files/candidate_tracker/88609269287_Sambath.pdf', NULL, '1', '2026-02-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'ok with communication and interested in sales and had a requirement of job and will join in next month', '5', '1', '', '1', '3', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', 'P1287', '5151', '1970-01-01', 1, '2026-02-27 08:11:31', 60, '2026-02-28 05:43:39', 0, NULL, 1),
(28789, 'Divya Dharshini R', '13', '8610111394', '9791062828', 'divyadharshinir3184@gmail.com', '2004-08-31', 21, '3', '2', 'Devi R', 'Sales Women', 30000.00, 1, 0.00, 25000.00, '10/3 Valluvan Street Oldwashermenpet Chennai 21', '10/3 Valluvan Street Oldwashermenpet Chennai 21', '2602270014', '', '1', 'upload_files/candidate_tracker/58603351692_DivyaDharshiniRresume1.pdf', NULL, '1', '2026-02-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-27 08:58:17', 159, '2026-02-27 02:52:07', 0, NULL, 1),
(28790, 'P.MELVIN KISHORE', '6', '7358352570', '9941009790', 'melvinkishore2@gmail.com', '2003-03-17', 22, '2', '2', 'PATRICK ANTHONY', 'X-ray technician', 30000.00, 1, 0.00, 25000.00, 'CHENNAI', 'CHENNAI', '2602270015', '1', '1', 'upload_files/candidate_tracker/60675235105_MELVINKISHORERESUME.pdf', NULL, '1', '2026-02-28', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good.also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-02-27 09:47:58', 159, '2026-02-28 01:00:37', 0, NULL, 1),
(28791, 'Srinivasa p', '4', '9535788436', '9632439768', 'srinivasasri436@gmail.com', '1997-12-08', 28, '5', '2', 'Suvarna', 'Qc', 45000.00, 1, 24000.00, 28000.00, 'Mysore', 'Bangalore', '2602270016', '', '2', 'upload_files/candidate_tracker/5755815623_SrinivasaP.pdf', NULL, '1', '2026-03-02', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-27 10:19:08', 1, '2026-02-27 11:47:27', 0, NULL, 1),
(28792, 'Ashok Kumar', '13', '8667892179', '6374522910', 'ashokrohit72@gmail.com', '2003-08-27', 22, '3', '2', 'Pazhanivel', 'Farmer', 60000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2602270017', '', '1', 'upload_files/candidate_tracker/76362170627_AshokkumarPFullstackResume.pdf', NULL, '1', '2026-02-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-27 10:30:12', 159, '2026-02-27 04:07:10', 0, NULL, 1),
(28793, 'anish melvin', '6', '9940229256', '', 'anishmelvin5@gmail.com', '2004-09-08', 21, '2', '2', 'egeswaran', 'business', 30000.00, 1, 0.00, 21000.00, 'chennai', 'chennai mogappair', '2602270018', '1', '1', 'upload_files/candidate_tracker/60966418883_ANISHMELVIN.CV.pdf.pdf', NULL, '1', '2026-02-28', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good. also sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-02-27 10:40:31', 159, '2026-02-28 04:23:08', 0, NULL, 1),
(28794, 'Gurugopalakrishnan', '6', '7094736366', '9442032239', 'balaguru12347@gmail.com', '1998-08-31', 27, '2', '2', 'Ganesan', 'Working in temple', 20000.00, 1, 186000.00, 300000.00, 'Madurai', 'Chennai anna nagar', '2602270019', '1', '2', 'upload_files/candidate_tracker/9575014217_GGKG.pdf', NULL, '1', '2026-03-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-02-27 12:38:20', 159, '2026-03-02 04:30:21', 0, NULL, 1),
(28795, 'Harini J', '11', '9342909140', '9962602272', 'harinijrharini@gmail.com', '2005-02-20', 21, '2', '2', 'jayakumar k', 'cable tv', 20.00, 1, 0.00, 2.50, 'triplicane', 'triplicane', '2602270020', '1', '1', 'upload_files/candidate_tracker/54609930027_HariniResume.pdf', NULL, '1', '2026-02-28', 0, '', '3', '59', '2026-03-09', 192000.00, '', '3', '2026-03-14', '2', '3 months intern with 10K stipend then 16K  salary with 2yrs NDA in employment', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '2026-03-09', 1, '2026-02-27 12:42:47', 60, '2026-03-09 09:46:39', 0, NULL, 1),
(28796, 'sandhya mohan', '11', '9789899435', '', 'mohansandhya161@gmail.com', '1997-05-29', 28, '2', '1', 'sarath kumar j', 'business', 50000.00, 0, 0.00, 360000.00, 'porur', 'porur', '2602270021', '1', '2', 'upload_files/candidate_tracker/81288034015_sandhyaresume.pdf', NULL, '1', '2026-02-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-02-27 01:03:50', 159, '2026-02-28 11:37:24', 0, NULL, 1),
(28797, 'krithikkumar.m', '6', '7338908827', '9884780027', 'krithikkunarnjr@gmail.com', '2004-07-14', 21, '2', '2', 'mohan', 'business', 40000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2602270022', '1', '1', 'upload_files/candidate_tracker/86146969664_krithik1.pdf', NULL, '1', '2026-02-28', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', '5151', '1970-01-01', 1, '2026-02-27 01:45:32', 159, '2026-02-28 02:38:21', 0, NULL, 1),
(28798, 'vinoth kumar r', '14', '9150250370', '', 'janavinoth46@gmail.com', '2003-09-04', 22, '2', '2', 'jaya r', 'house wife', 290000.00, 0, 0.00, 300000.00, 'chennai', 'chennai', '2602270023', '1', '1', 'upload_files/candidate_tracker/5123476671_busioperation.pdf', NULL, '1', '2026-02-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-27 04:39:28', 159, '2026-02-28 02:47:06', 0, NULL, 1),
(28799, 'Dhanasekar Ayilraj', '13', '7603884473', '9940632120', 'dhanasekarayilraj30@gmail.com', '2003-10-30', 22, '2', '2', 'Ayilraj M', 'Driver', 20000.00, 1, 0.00, 250000.00, 'Avadi', 'Avadi', '2602280001', '1', '1', 'upload_files/candidate_tracker/13457248569_Dhanaupdatedresume.pdf.pdf', NULL, '1', '2026-02-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-28 04:20:30', 159, '2026-02-28 02:54:51', 0, NULL, 1),
(28800, 'Sidharth M', '13', '7639447956', '', 'sidharthmanoj39@gmail.com', '2003-04-21', 22, '2', '2', 'Nisha K', 'Private Firm', 100000.00, 1, 0.00, 350000.00, 'Mahe Puducherry', 'Chennai', '2602280002', '1', '1', 'upload_files/candidate_tracker/92419134814_SidharthMBTechCSEResume.pdf', NULL, '1', '2026-02-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', '0', '0', NULL, 1, '2026-02-28 04:27:16', 1, '2026-02-28 04:30:43', 0, NULL, 1),
(28801, 'Sivesh varshan M', '23', '6380247044', '', 'ellosivi12@gmail.com', '2004-01-12', 22, '2', '2', 'Murthy', 'Contract workers', 14000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2602280003', '1', '1', 'upload_files/candidate_tracker/82692263240_DOC20251024WA0000..pdf', NULL, '1', '2026-02-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-02-28 04:34:36', 1, '2026-02-28 04:40:18', 0, NULL, 1),
(28802, '442422514099', '4', '7904462010', '8531876160', 'nicknamebharath@gmail.com', '1999-07-27', 26, '5', '2', 'Ellamuthu.p', 'New Perungalathur chennai -600063', 35000.00, 1, 0.00, 20000.00, 'Tiruvannamalai', 'Perungalathur chennai 600063', '2602280004', '', '1', 'upload_files/candidate_tracker/3198596256_BharadhanResume..pdf', NULL, '1', '2026-03-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-02-28 04:45:58', 1, '2026-02-28 08:28:13', 0, NULL, 1),
(28803, 'Jeyakanth R', '6', '9710319796', '8072975019', 'jaikanthgethu@gmail.com', '2000-04-26', 25, '2', '2', 'Ramanathan V', 'Retired Income tax officer', 200000.00, 0, 51000.00, 35000.00, '14/16 P.V.Koil 3rd Street pudupet Royapettah', 'Same as permanent', '2602280005', '1', '2', 'upload_files/candidate_tracker/79088095388_JeyakanthResume5.pdf', NULL, '1', '2026-02-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-28 04:50:39', 159, '2026-02-28 01:04:57', 0, NULL, 1),
(28804, 'SUDHARSAN N', '13', '9345778920', '9788882929', 'sudharsansusan2000@gmail.com', '2000-06-27', 25, '2', '2', 'saraswathi', 'coolie', 30000.00, 2, 216000.00, 400000.00, 'erode', 'chennai', '2602280006', '27', '2', 'upload_files/candidate_tracker/88501891638_SUDHARSANN.pdf10.pdf', NULL, '1', '2026-02-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-28 05:59:32', 159, '2026-02-28 02:54:27', 0, NULL, 1),
(28805, 'shiva sundara balaji j m', '13', '9894582489', '', 'sivasundarabalaji@gmail.com', '1999-01-02', 27, '2', '2', 'mahendran j', 'business', 25000.00, 2, 432000.00, 550000.00, 'madurai', 'chenni', '2602280007', '27', '2', 'upload_files/candidate_tracker/15718381617_ShivaSundaraBalajJM3yearsExperience.pdf', NULL, '1', '2026-02-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-02-28 06:00:13', 159, '2026-02-28 12:59:48', 0, NULL, 1),
(28806, 'GOPINATH P', '6', '7358574168', '', 'rpgopi2003@gmail.com', '2003-05-24', 22, '2', '2', 'Perumal', 'Contractor', 25000.00, 0, 0.00, 20000.00, 'Porur', 'Porur', '2602280008', '1', '1', 'upload_files/candidate_tracker/85744332167_GOPINATHP2.pdf.pdf', NULL, '1', '2026-02-28', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-02-28 06:27:15', 159, '2026-02-28 02:47:53', 0, NULL, 1),
(28807, 'jeyasri s', '2', '8248125030', '8015152257', 'sjeyasri505@gamil.com', '2005-02-24', 21, '2', '2', 'sanmugam', 'painter', 20000.00, 5, 0.00, 15000.00, 'trichy', 'chennai', '2602280009', '1', '1', 'upload_files/candidate_tracker/94250810493_JeyasriBackendDeveloperResume1.pdf', NULL, '1', '2026-02-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Aptitude not Cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-28 06:55:59', 159, '2026-02-28 02:42:44', 0, NULL, 1),
(28808, 'LAKSHANA S S', '13', '7904500707', '9566851154', 'lakshana21703@gmail.com', '2003-07-21', 22, '2', '2', 'Sridhar S', 'Sales manager', 35000.00, 1, 0.00, 400000.00, 'Salem', 'Salem', '2602280010', '1', '1', 'upload_files/candidate_tracker/91455656142_LakshanaSSResume.pdf', NULL, '1', '2026-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', '0', '0', NULL, 1, '2026-02-28 07:04:06', 1, '2026-02-28 07:19:16', 0, NULL, 1),
(28809, '', '0', '6381702426', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602280011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-28 07:07:31', 0, NULL, 0, NULL, 1),
(28810, '', '0', '7418794464', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602280012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-28 09:29:56', 0, NULL, 0, NULL, 1),
(28811, 'Princy Nayagi', '13', '8825681694', '7639629926', 'princynayagi@gmail.com', '2005-01-16', 21, '2', '2', 'Mahendiran', 'Daily wages', 10000.00, 1, 0.00, 4.00, 'Krishnagiri (DT)', 'Chennai', '2602280013', '1', '1', 'upload_files/candidate_tracker/78109871396_PRINCYNAYAGIM.pdf', NULL, '2', '2026-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-02-28 02:26:28', 1, '2026-03-01 04:01:18', 0, NULL, 1),
(28812, '', '0', '9629328924', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602280014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-28 02:28:59', 0, NULL, 0, NULL, 1),
(28813, '', '0', '9345571655', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2602280015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-02-28 02:40:07', 0, NULL, 0, NULL, 1),
(28814, 'Aravind siddharth P', '2', '9342542415', '9629551322', 'aravindsiddharthp@gmail.com', '2003-10-13', 22, '2', '2', 'Padmanathan', 'Rationshop salesman', 25000.00, 1, 0.00, 15000.00, 'Madurai', 'Madurai', '2602280016', '1', '1', 'upload_files/candidate_tracker/75724678049_AravindSiddharthMernresume202601071432020000.pdf', NULL, '1', '2026-03-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-02-28 03:23:33', 159, '2026-03-05 01:05:32', 0, NULL, 1),
(28815, 'PRAVEENNATH rAJAGOPAL', '2', '6381388426', '7708707762', 'praveennath052004@gmail.com', '2004-01-05', 22, '2', '2', 'Alageswari R', 'Sales women', 75000.00, 1, 0.00, 20000.00, 'Madurai', 'Madurai', '2602280017', '1', '1', 'upload_files/candidate_tracker/15014304102_praveennathMernResume.pdf', NULL, '1', '2026-03-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1031', '', '', '', '1970-01-01', 1, '2026-02-28 03:23:41', 159, '2026-03-05 01:05:56', 0, NULL, 1),
(28816, 'suganthi v', '7', '9843751894', '', 'suganthiveeran07@gmail.com', '2004-05-07', 21, '6', '2', 'veeran g', 'business', 30000.00, 1, 0.00, 300000.00, 'samathanapuram palayamkottai tirunelveli', 'anna nagar chennai', '2603010001', '', '1', 'upload_files/candidate_tracker/55194973794_SuganthiVResume.pdf', NULL, '1', '2026-03-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-01 02:08:35', 1, '2026-03-01 01:44:15', 0, NULL, 1),
(28817, '', '0', '7871020892', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603010002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-01 03:41:23', 0, NULL, 0, NULL, 1),
(28818, '', '0', '8870058695', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603010003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-01 04:23:17', 0, NULL, 0, NULL, 1),
(28819, 'S Vishnu', '13', '9342530264', '9787110543', 'vishnu1092004@gmail.com', '2004-07-10', 21, '2', '2', 'Srinivasan', 'Electrician', 36000.00, 2, 0.00, 15000.00, 'Pudukkottai', 'Pudukkottai', '2603020001', '1', '1', 'upload_files/candidate_tracker/9978552311_VishnuTech03.docx', NULL, '1', '2026-03-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Aptitude Not Cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-02 01:08:45', 159, '2026-03-02 06:25:52', 0, NULL, 1),
(28820, 'Balakrishnan', '13', '8946072350', '8778310823', 'balakrishnanfsd@gmail.com', '2005-06-10', 20, '2', '2', 'Ramakrishnan', 'Cooking', 25000.00, 7, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2603020002', '1', '1', 'upload_files/candidate_tracker/26838471979_Balakrishnan.pdf', NULL, '1', '2026-03-02', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-02 04:37:16', 159, '2026-03-02 06:25:30', 0, NULL, 1),
(28821, 'Yogesh waran', '33', '7708643894', '', 'yogeshkutt@gmail.com', '2004-01-29', 22, '1', '2', 'Vijayalakshmi', 'Accounts', 20000.00, 1, 0.00, 23000.00, 'Pattukkottai', 'Anna nagar chennai', '2603020003', '', '1', 'upload_files/candidate_tracker/16368108638_YogeshwaranM.pdf', NULL, '1', '2026-03-02', 0, '55911', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-02 04:37:53', 159, '2026-03-02 03:21:38', 0, NULL, 1),
(28822, 'VIJAYAKUMAR G', '13', '6382110138', '', 'vijayakumartechspace@gmail.com', '2011-03-02', 0, '2', '2', 'ganapathi a', 'farmer', 20000.00, 2, 0.00, 22000.00, 'salem', 'perungudi', '2603020004', '1', '1', 'upload_files/candidate_tracker/67730128366_Vijayakumarjavadevresume.pdf', NULL, '1', '2026-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-02 05:05:33', 1, '2026-03-02 05:25:58', 0, NULL, 1),
(28823, '', '0', '8754284501', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603020005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-02 05:12:36', 0, NULL, 0, NULL, 1),
(28824, 'deepa', '6', '8667611327', '', 'deepavenkatesan73@gmail.com', '2000-03-07', 25, '2', '1', 'venkatesan', 'tailor', 17000.00, 1, 21000.00, 25000.00, 'chennai', 'chennai', '2603020006', '1', '2', 'upload_files/candidate_tracker/47220401381_Deeparesume.pdf', NULL, '1', '2026-03-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-02 05:26:37', 159, '2026-03-02 11:31:48', 0, NULL, 1),
(28825, 'Preethi.S', '6', '7904811705', '8110039844', 'bcs2preethis@gmail.com', '2002-06-18', 23, '2', '1', 'Madhan.R', 'Accountant', 25000.00, 1, 0.00, 17500.00, '4/6 oil mongar lane Royapettah Chennai-14', '4/6 oil mongar lane Royapettah Chennai-14', '2603020007', '1', '1', 'upload_files/candidate_tracker/15070701209_PreethiResume.pdf.pdf', NULL, '1', '2026-03-02', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', '5151', '1970-01-01', 1, '2026-03-02 05:57:06', 159, '2026-03-02 04:34:54', 0, NULL, 1),
(28826, 'Devadharshini M', '13', '9345407109', '', 'devadharsani2005@gmail.com', '2005-03-29', 20, '2', '2', 'Devi M', 'Home Maker', 100000.00, 2, 0.00, 2.00, 'Cheyyar', 'Chennai', '2603020008', '1', '1', 'upload_files/candidate_tracker/93044110805_DevadharshiniResume.pdf', NULL, '1', '2026-03-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-02 06:02:25', 159, '2026-03-02 06:19:35', 0, NULL, 1),
(28827, 'Shobana P', '13', '6382576842', '', 'Shobanashobi273@gmail.com', '2004-09-27', 21, '2', '2', 'Pappathi P', 'Private employee', 120000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2603020009', '1', '1', 'upload_files/candidate_tracker/36052513158_SHOBANARESUME.pdf', NULL, '1', '2026-03-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-02 06:03:55', 159, '2026-03-02 06:18:53', 0, NULL, 1),
(28828, 'bharath kumar a', '11', '9742484577', '9035416198', 'nbarathkmr@gmail.com', '2001-01-26', 25, '1', '2', 'anand', 'cashier', 200000.00, 2, 31500.00, 35000.00, 'halasuru', 'malleshpalaya', '2603020010', '', '2', 'upload_files/candidate_tracker/35039040420_BharathKumarresume111.docx', NULL, '1', '2026-03-02', 0, '55899', '3', '59', '2026-03-16', 300000.00, '', '1', '1970-01-01', '1', 'Communication Good Worked in Vizza as recruiter internal team Priya reference can give a try and check in training', '6', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55605', '55566', '2026-03-16', 1, '2026-03-02 06:10:37', 154, '2026-04-07 01:19:52', 0, NULL, 1),
(28829, 'santhosh kumar i', '13', '6385101657', '', 'santhoshpersonal23@gmail.com', '2004-02-23', 22, '2', '2', 'iyyappan', 'massab', 3.00, 1, 0.00, 3.00, 'chrnnai', 'chebbqi', '2603020011', '1', '1', 'upload_files/candidate_tracker/42455209155_Myresume.pdf', NULL, '1', '2026-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-02 06:58:35', 1, '2026-03-02 07:02:40', 0, NULL, 1),
(28830, 'Saran A', '6', '7010138159', '9047237340', 'pandisaran107@gmail.com', '2001-06-06', 24, '2', '2', 'Annadurai', 'Farmer', 25000.00, 0, 0.00, 25000.00, 'D1 police quarters triplicane', 'D1 police quarters triplicane', '2603020012', '1', '2', 'upload_files/candidate_tracker/86539947433_saranpfcompressed.pdf', NULL, '1', '2026-03-02', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2026-03-02 09:09:25', 159, '2026-03-02 06:50:30', 0, NULL, 1),
(28831, 'Anitha', '5', '9551255936', '9600101336', 'anithakaviyarasu@gmail.com', '1990-10-10', 35, '1', '1', 'Kaviyarasu A', 'Senior manager', 60000.00, 2, 24000.00, 30000.00, 'Gummidipoondi', 'Gummidipoondi', '2603020013', '', '2', 'upload_files/candidate_tracker/85095249835_1000036315compressed.pdf', NULL, '1', '2026-03-02', 0, '55911', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '1970-01-01', 1, '2026-03-02 09:12:33', 154, '2026-03-02 03:37:54', 0, NULL, 1),
(28832, 'Sanjeev Selvaraj', '6', '9488805698', '9965353188', 'sanjeevms1872002@gmail.com', '2002-07-18', 23, '2', '2', 'Selvaraj', 'Electrical shop', 30000.00, 1, 0.00, 21000.00, 'Tiruchengode', 'Anna nagar, chennai', '2603020014', '70', '1', 'upload_files/candidate_tracker/25891302822_sanjeevresume.pdf', NULL, '2', '2026-03-02', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-03-02 09:15:25', 159, '2026-03-02 06:51:22', 0, NULL, 1),
(28833, 'BHARATH MANOHARAN', '6', '9994605726', '9080109648', 'bharatcm1105@gmail.com', '2000-05-11', 25, '2', '2', 'MANOHARAN', 'METAL SHOP', 28000.00, 1, 4.00, 4.20, 'Chennai', 'Choolaimedu, chennai', '2603020015', '1', '2', 'upload_files/candidate_tracker/27618420864_BHARATHMANOHARANRESUME1.pdf', NULL, '2', '2026-03-02', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '4', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1028', '', 'P1070', '5151', '1970-01-01', 1, '2026-03-02 09:21:59', 159, '2026-03-02 04:28:55', 0, NULL, 1),
(28834, 'Dhanush S', '4', '9361360495', '', 'dhanush1121u@gmail.com', '2004-12-14', 21, '5', '2', 'Sanjay Jothi', 'Coolie', 120000.00, 1, 0.00, 12000.00, 'MAYOR BASUDEV STREET,OLD WASHERMANPET CHENNAI 21', 'MAYOR BASUDEV STREET, OLD WASHERMANPET CHENNAI 21', '2603020016', '', '1', 'upload_files/candidate_tracker/89306376431_DOC20250919WA0012.202509230857380000.pdf202510052107470000.pdf', NULL, '1', '2026-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-02 10:46:42', 1, '2026-03-02 11:00:26', 0, NULL, 1),
(28835, '', '0', '9344483804', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603020017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-02 12:35:33', 0, NULL, 0, NULL, 1),
(28836, '', '0', '9025946625', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603020018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-02 12:36:17', 0, NULL, 0, NULL, 1),
(28837, 'Muralidharan', '2', '9941161100', '', 'msmurali2005@gmail.com', '2005-05-16', 20, '2', '2', 'Jayasankaran', 'Electrician', 30000.00, 1, 0.00, 20000.00, 'Madipakkam, Chennai', 'Madipakkam, Chennai', '2603020019', '1', '1', 'upload_files/candidate_tracker/46801440251_MuraliResume1.pdf', NULL, '1', '2026-03-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-02 12:49:44', 159, '2026-03-05 04:30:52', 0, NULL, 1),
(28838, '399652353072', '20', '9342561356', '', 'senthilgowtham350@gmail.com', '2004-02-05', 22, '5', '2', 'Senthil Kumar.S', 'Painter', 20000.00, 1, 0.00, 18000.00, 'Arakkonam', 'Arakkonam', '2603020020', '', '1', 'upload_files/candidate_tracker/11193045975_blackwhitemoderndigitalmarketingresume202603012034400000.pdf', NULL, '1', '2026-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-02 01:10:28', 1, '2026-03-02 01:16:43', 0, NULL, 1),
(28839, 'Nadhirudheen', '13', '8270622243', '9344483804', 'nadhir2811@gmail.com', '2004-11-28', 21, '2', '2', 'Parent', 'Hotel', 20000.00, 1, 0.00, 300000.00, 'Sankaranpandal', 'Tambaram', '2603020021', '1', '1', 'upload_files/candidate_tracker/69657275348_Nadhirudheen.resume.pdf', NULL, '1', '2026-03-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', '0', '0', NULL, 1, '2026-03-02 01:32:32', 1, '2026-03-02 01:44:11', 0, NULL, 1),
(28840, 'Nivetha', '6', '8015545952', '6385286220', 'nivetha9913@gmail.com', '1999-10-13', 26, '2', '2', 'R. ravichandran', 'Papper Cone Company Operator', 45000.00, 1, 0.00, 19000.00, 'Dindigul', 'Dindigul', '2603030001', '1', '2', 'upload_files/candidate_tracker/55899576446_NIVETHA.Rresume1.pdf', NULL, '1', '2026-03-03', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok, communication average. 1 year 11months exp for IDFC First Bharat Private limited. please check sustainability and confirm the joining date.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55732', '5151', '1970-01-01', 1, '2026-03-03 03:42:12', 154, '2026-03-04 05:50:26', 0, NULL, 1),
(28841, 'Kalaivani B', '6', '8248051791', '9345331861', 'bkalaivani661@gmail.com', '2011-03-03', 0, '2', '2', 'Valarmathi. B', 'House wife', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2603030002', '1', '1', 'upload_files/candidate_tracker/74706323796_RESUMEKALAIVANI.docx', NULL, '1', '2026-03-03', 0, '', '3', '59', '2026-03-04', 180000.00, '', '3', '2026-03-05', '2', 'Communication Seems to average for our sales roles previously attended and rejected due to non voice exp now also same exp she has but can give a try and check', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '2026-03-04', 1, '2026-03-03 04:28:32', 60, '2026-03-03 07:33:50', 0, NULL, 1),
(28842, 'SANTHOSH K', '11', '9500631806', '8939040816', 'santhosh.hr.8356@gmail.com', '2002-03-13', 23, '3', '2', 'KANNIYAPPAN S', 'DRIVER', 17000.00, 1, 0.00, 13000.00, 'AMBATTUR,CHENNAI', 'AMBATTUR, CHENNAI', '2603030003', '', '1', 'upload_files/candidate_tracker/4605262209_SANTHOSHK.docx', NULL, '1', '2026-03-03', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-03-03 04:54:30', 159, '2026-03-03 11:30:25', 0, NULL, 1),
(28843, 'NANDHINI', '13', '8870782288', '', 'K.nandhini20.09.2002@gmail.com', '2002-09-20', 23, '3', '2', 'Parent', 'Fruit seller', 10000.00, 3, 0.00, 15000.00, 'Velachery', 'Velachery', '2603030004', '', '1', 'upload_files/candidate_tracker/69808329677_Nandhini.Resume1.pdf', NULL, '1', '2026-03-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-03 04:57:50', 159, '2026-03-03 11:57:05', 0, NULL, 1),
(28844, 'Mageshwaran M', '13', '7200165106', '9042125106', 'Mageshwaran222004@gmail.com', '2004-06-22', 21, '3', '2', 'Murugesan M', 'Laundry', 200000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2603030005', '', '1', 'upload_files/candidate_tracker/26165218609_BlackandWhiteCleanProfessionalA4Resume202512171937220000.pdf', NULL, '1', '2026-03-03', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-03 05:01:32', 159, '2026-03-03 12:28:55', 0, NULL, 1),
(28845, 'SHYAM JEROLD G', '6', '9489698169', '9025826449', 'shyamjerold74@gmail.com', '2001-10-04', 24, '2', '2', 'GUNASEKARAN P', 'Electrition', 30000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2603030006', '1', '1', 'upload_files/candidate_tracker/81097993229_Resume18112023094744am1737006330996ShyamJerold.pdf', NULL, '1', '2026-03-03', 0, '', '5', '168', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Already attended candidate at the time he was pursuing for government exam so not joined. now again tried here but focusing for digital marketing segment so not sustain for more that 3 months and brother working in digital marketing in chennai so able to change there.', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CI144', '5151', '1970-01-01', 1, '2026-03-03 05:10:56', 154, '2026-03-03 12:43:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28846, 'Khizar Hussain khan.k', '6', '6381169007', '', 'Khizarhussain200015@gmail.com', '2000-05-15', 25, '3', '2', 'Khader basha', 'Sales man', 20000.00, 1, 30000.00, 35000.00, 'Mint old Washermanpet', 'Mint old Washermanpet', '2603030007', '', '2', 'upload_files/candidate_tracker/92262850720_khizarhussainkhanlatetsresume2.pdf', NULL, '1', '2026-03-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-03 05:21:33', 159, '2026-03-03 12:28:04', 0, NULL, 1),
(28847, 'Ramya A', '13', '6383451893', '9384972339', 'ramya15092001@gmail.com', '2001-09-15', 24, '2', '2', 'Athiseshan C', 'Driver', 20000.00, 1, 0.00, 400000.00, 'Villupuram', 'Chennai', '2603030008', '1', '1', 'upload_files/candidate_tracker/66298668208_RamyaJavaResume.pdf', NULL, '1', '2026-03-04', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2026-03-10', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-03 05:31:04', 159, '2026-03-04 02:51:59', 0, NULL, 1),
(28848, 'Nithiyasri S', '13', '9384972339', '7548842919', 'snithiyasri2002@gmail.com', '2002-04-01', 23, '2', '2', 'Sekar T', 'Machine technician', 22000.00, 3, 0.00, 400000.00, 'Villupuram', 'Chennai', '2603030009', '1', '1', 'upload_files/candidate_tracker/76870709851_NITHIYASRISResume.pdf', NULL, '1', '2026-03-04', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2026-03-10', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-03 05:34:56', 159, '2026-03-04 02:52:27', 0, NULL, 1),
(28849, 'Thanikaivel N', '13', '7092296968', '', 'thanikaints@gmail.com', '2002-06-21', 23, '2', '2', 'Natarajan', 'Rice business', 50000.00, 2, 0.00, 250000.00, 'Kalambur', 'Velachery', '2603030010', '1', '1', 'upload_files/candidate_tracker/89306972738_Thanikaivel.N1.pdf', NULL, '1', '2026-03-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-03 05:44:04', 159, '2026-03-05 01:02:47', 0, NULL, 1),
(28850, 'T Surendra babu', '6', '9177051020', '9030880601', 'Nanisurendra03@gmail.con', '1996-03-19', 29, '2', '2', 'nil', 'bcom', 300000.00, 1, 26000.00, 25000.00, 'Chennai', 'Chennai', '2603030011', '1', '2', 'upload_files/candidate_tracker/53254703837_tsonu1Resume1.pdf', NULL, '1', '2026-03-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-03-03 05:52:06', 159, '2026-03-03 12:26:32', 0, NULL, 1),
(28851, 'hemachandran s', '13', '9042517644', '', 'hemachandranvlr@gmail.com', '2003-10-19', 22, '2', '2', 'sivakumar k', 'own business', 40000.00, 1, 0.00, 200000.00, 'vellore', 'chennai', '2603030012', '1', '1', 'upload_files/candidate_tracker/39208690009_HemachandranSResume.pdf', NULL, '1', '2026-03-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-03 05:53:37', 159, '2026-03-04 10:39:20', 0, NULL, 1),
(28852, '', '0', '8524818962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603030013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-03 06:14:06', 0, NULL, 0, NULL, 1),
(28853, 'Manickam J', '13', '8668136967', '9363419371', 'manicmanickam5219@gmail.com', '2002-05-19', 23, '2', '2', 'Janarthanan K', 'Weaver', 18000.00, 2, 0.00, 300000.00, 'Kaveripakkam', 'Gunidy', '2603030014', '1', '1', 'upload_files/candidate_tracker/21472613908_ManickamJ.pdf', NULL, '1', '2026-03-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-03 06:25:22', 1, '2026-03-03 06:37:42', 0, NULL, 1),
(28854, 'Gokul p', '6', '7358413213', '', 'gokulkutty8458@gmail.com', '1997-03-08', 28, '3', '1', 'Kausalya k', 'Direct sales', 25000.00, 1, 300000.00, 400000.00, 'Cuddalore', 'Kovilambakkam', '2603030015', '', '2', 'upload_files/candidate_tracker/78083418901_Gokulresume26.pdf', NULL, '1', '2026-03-03', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-03 06:42:43', 159, '2026-03-03 12:22:02', 0, NULL, 1),
(28855, 'Jayasurya Arockiyadoss', '4', '6383865419', '9790223363', 'Suruadfc12@gmail.com', '1998-05-08', 27, '5', '2', 'Arockiyadoss', 'Civil engineer', 20000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2603030016', '', '1', 'upload_files/candidate_tracker/69224194482_SuryaResume.pdf', NULL, '1', '2026-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-03 07:05:43', 1, '2026-03-03 07:22:03', 0, NULL, 1),
(28856, 'Madhavan R', '6', '7448998844', '', 'madhavan92307@gmail.com', '2001-06-07', 24, '2', '2', 'RAMESH', 'OFFICE ASSISTANT', 21000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2603030017', '1', '2', 'upload_files/candidate_tracker/59172764836_MadhavanR.resume.pdf', NULL, '1', '2026-03-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-03 07:11:25', 154, '2026-03-05 04:03:11', 0, NULL, 1),
(28857, 'SAGAYA PRADEEP A', '13', '7358412762', '', 'sagadeep.2001@gmail.com', '2001-06-09', 24, '2', '2', 'Arockia Selvaraj', 'Supervisor', 40000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2603030018', '1', '1', 'upload_files/candidate_tracker/12247061830_SagayapradeepA.pdf', NULL, '1', '2026-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', '0', '0', NULL, 1, '2026-03-03 07:30:35', 1, '2026-03-03 07:35:04', 0, NULL, 1),
(28858, 'Gladina Sangeetha', '6', '8807413196', '6383622197', 'gladinasangeetha5@gmail.com', '2004-10-01', 21, '2', '1', 'Elizabeth', 'Private employee', 20000.00, 1, 0.00, 18000.00, 'Avadi', 'Vadapalani', '2603030019', '1', '2', 'upload_files/candidate_tracker/89506003727_GLADINASANGEETHAResume.pdf', NULL, '1', '2026-03-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-03 07:44:20', 159, '2026-03-03 03:13:28', 0, NULL, 1),
(28859, '', '0', '9789649783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603030020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-03 07:45:18', 0, NULL, 0, NULL, 1),
(28860, 'boopathi a', '6', '9087547264', '9566683254', 'flowerpathi20@gmail.com', '2002-05-31', 23, '2', '2', 'Arunachalam', 'Farmer', 25000.00, 2, 12000.00, 25000.00, 'Kallakkurichi', 'Omr thuraipakkam', '2603030021', '1', '2', 'upload_files/candidate_tracker/27043364010_BOOPATHIRESUME.docx', NULL, '1', '2026-03-03', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-03 07:50:01', 159, '2026-03-03 03:57:55', 0, NULL, 1),
(28861, 'Shalini kalidoss', '6', '9159331538', '8760832377', 'shalukavi18@gmail.com', '1999-12-18', 26, '2', '2', 'Kalidoss', 'Farmer', 10000.00, 1, 20000.00, 28000.00, 'Thiruvarur', 'Thiruvarur', '2603030022', '1', '2', 'upload_files/candidate_tracker/71018226754_RESUME.SHALINI..pdf', NULL, '1', '2026-03-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-03 07:52:10', 159, '2026-03-04 01:33:28', 0, NULL, 1),
(28862, '', '0', '9738133142', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603030023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-03 07:55:48', 0, NULL, 0, NULL, 1),
(28863, 'siva k', '6', '8098647827', '9488781357', 'siva2000ks@gmail.com', '2000-05-20', 25, '2', '1', 'Kaliya moorthy', 'Farmar', 2000.00, 3, 18.00, 25000.00, 'Kallakurichi', 'Shriparampathuri', '2603030024', '1', '1', 'upload_files/candidate_tracker/94854428786_SivaKModernResumeWithDeclaration.pdf', NULL, '1', '2026-03-03', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-03 07:59:45', 159, '2026-03-03 03:59:52', 0, NULL, 1),
(28864, '', '0', '7397395296', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603030025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-03 08:11:53', 0, NULL, 0, NULL, 1),
(28865, 'brindha a', '13', '6382738465', '', 'brindhaayyasamy153@gmail.com', '2003-05-03', 22, '2', '2', 'ayyasamy', 'teacher', 50000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2603030026', '1', '1', 'upload_files/candidate_tracker/16500280006_RESUMEE.pdf', NULL, '1', '2026-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-03-03 08:53:48', 1, '2026-03-03 04:51:27', 0, NULL, 1),
(28866, 'Deepa R', '6', '8056076304', '9940244737', 'deeparajeshwari17@gmail.com', '2004-01-17', 22, '2', '2', 'R. Rajeshwari', 'Package works', 84000.00, 0, 20000.00, 23000.00, 'Chennai', 'Chennai', '2603030027', '1', '2', 'upload_files/candidate_tracker/23494730215_DocumentfromRDeepa1772256448820.pdf', NULL, '1', '2026-03-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-03 09:44:24', 154, '2026-03-04 02:44:23', 0, NULL, 1),
(28867, 'Aravind c', '6', '7708047758', '9363299102', 'aravindchinnusamy624@gmail.com', '2002-12-25', 23, '2', '2', 'chinnusamy', 'farmer', 25000.00, 1, 0.00, 16000.00, 'namakkal', 'chennai', '2603030028', '50', '1', 'upload_files/candidate_tracker/44070127617_AravindResume..pdf', NULL, '1', '2026-03-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-03 10:13:48', 159, '2026-03-04 02:55:26', 0, NULL, 1),
(28868, '', '0', '8667393460', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603030029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-03 10:21:33', 0, NULL, 0, NULL, 1),
(28869, 'Pradhyumna V', '6', '9945264617', '', 'pradhyumnav30@gmail.com', '2005-10-30', 20, '2', '2', 'P. Venkata krishna', 'Graphic designer', 150000.00, 1, 18000.00, 22000.00, 'Bengaluru', 'Bengaluru', '2603030030', '1', '2', 'upload_files/candidate_tracker/44121923142_Pradhyumnaresume1.pdf', NULL, '1', '2026-03-05', 1, '', '3', '59', '2026-04-08', 252000.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp but no in our relevant profile need to check in training', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55671', '55555', '2026-04-08', 1, '2026-03-03 10:46:00', 60, '2026-04-08 10:29:33', 0, NULL, 1),
(28870, 'N. Arthi', '6', '8220802384', '', 'arthinagamuthu2001@gmail.com', '2001-04-14', 24, '2', '2', 'Nagamuthu', 'Farmer', 15000.00, 1, 19000.00, 24000.00, 'Thanjavur', 'Saidapet', '2603030031', '50', '2', 'upload_files/candidate_tracker/41754966921_N.ArthiFlowCVResume20260223.pdf', NULL, '1', '2026-03-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2026-03-03 11:44:18', 159, '2026-03-05 03:36:57', 0, NULL, 1),
(28871, 'Sakthivel C', '6', '8838067652', '8489934371', 'sakthivelchennaiyan@gmail.com', '2003-12-09', 22, '2', '2', 'Chennaiyan', 'Centring Work', 25000.00, 2, 0.00, 18000.00, 'Dharmapuri', 'Chennai', '2603030032', '1', '1', 'upload_files/candidate_tracker/39862515213_SAKTHIVEL.C.pdf', NULL, '1', '2026-03-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-03 12:43:33', 159, '2026-03-05 03:50:15', 0, NULL, 1),
(28872, 'Sri Anandharaja', '34', '6374160254', '', 'srianand539@gmail.com', '2004-01-26', 22, '2', '2', 'Janakiraman.A', 'PWD', 300000.00, 2, 0.00, 400000.00, 'Puducherry', 'Puducherry', '2603030033', '1', '1', 'upload_files/candidate_tracker/82995917715_SriAnandharajafinal21.pdf', NULL, '1', '2026-03-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-03 04:45:30', 1, '2026-03-06 07:29:44', 0, NULL, 1),
(28873, 'sangeetha p', '13', '9551929474', '8610996930', 'sangeetha221995@gmail.com', '1995-05-22', 30, '2', '1', 'anand e', 'fresher', 20000.00, 1, 0.00, 25000.00, '88,veppampattu,', '88,veppampattu,', '2603030034', '1', '1', 'upload_files/candidate_tracker/94323030089_SangeethaPalaniResume.pdf', NULL, '1', '2026-03-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', '0', '0', NULL, 1, '2026-03-03 04:59:54', 1, '2026-03-05 04:20:45', 0, NULL, 1),
(28874, 'Ritheeck dharan.M', '13', '6379355478', '', 'ritheeckdharan19@gmail.com', '2002-07-02', 23, '2', '2', 'Vasantha', 'Manager in private concern', 50000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2603040001', '1', '1', 'upload_files/candidate_tracker/13995533618_Ritheeckresume5.pdf', NULL, '1', '2026-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-04 01:20:25', 1, '2026-03-04 01:24:38', 0, NULL, 1),
(28875, 'Mugilan M', '31', '9791371822', '9380765577', 'mugilanm810@gmail.com', '2003-10-06', 22, '3', '2', 'Munusamy', 'Cooli', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2603040002', '', '1', 'upload_files/candidate_tracker/87674763830_MugilanMResume..pdf', NULL, '1', '2026-03-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-04 03:45:31', 159, '2026-03-04 12:26:17', 0, NULL, 1),
(28876, '', '0', '7397470591', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603040003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-04 04:42:10', 0, NULL, 0, NULL, 1),
(28877, '', '0', '7397289548', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603040004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-04 05:21:45', 0, NULL, 0, NULL, 1),
(28878, 'Praveenkumar J', '6', '9894706780', '9791860639', 'praveenkumariamca18@gmail.com', '2000-06-10', 25, '1', '2', 'Jayakumar', 'Business', 60000.00, 1, 0.00, 25000.00, 'Villupuram', 'Chennai', '2603040005', '', '1', 'upload_files/candidate_tracker/26238566877_newresume.pdf', NULL, '1', '2026-03-04', 0, 'P50901', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is not ok for sales, salary expectation very high, sustainability issue,', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55645', '5151', '1970-01-01', 1, '2026-03-04 05:32:08', 154, '2026-03-04 12:45:24', 0, NULL, 1),
(28879, 'Lakshana', '5', '9345582262', '9940356987', 'lakshanalakshanamadhavan@gmail.com', '2004-09-04', 21, '1', '2', 'Parent - R.Madhavan', 'Supervising manager ( Bajaj motorcycles )', 750000.00, 0, 0.00, 18000.00, 'No.22/79, kk.nagar , chennai - 600078', 'No.12 , kk.nagar , chennai- 600078', '2603040006', '', '2', 'upload_files/candidate_tracker/56086041947_Sanaresume.pdf', NULL, '1', '2026-03-04', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55560', '55560', '1970-01-01', 1, '2026-03-04 05:41:52', 154, '2026-03-04 02:58:31', 0, NULL, 1),
(28880, 'Visalatchi', '6', '9629459798', '', 'vaishalimoorthy29@gmail.com', '1998-03-29', 27, '2', '1', 'Kamala', 'Automobile', 30000.00, 2, 23000.00, 25000.00, 'Triplicane', 'Triplicane', '2603040007', '1', '2', 'upload_files/candidate_tracker/78195280042_vaishucv1.pdf', NULL, '1', '2026-03-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-03-04 05:50:09', 159, '2026-03-04 12:49:42', 0, NULL, 1),
(28881, 'Mohamed Ashiq', '6', '8610821077', '6383141299', 'mohamedashiq356@gmail.com', '2002-01-13', 24, '2', '2', 'Shahnas Begum I', 'House wife', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2603040008', '42', '1', 'upload_files/candidate_tracker/5577882272_MohamedAshiqResume1.pdf', NULL, '1', '2026-03-04', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2026-03-04 05:52:51', 159, '2026-03-04 01:31:35', 0, NULL, 1),
(28882, 'Balaji.A', '13', '7806954825', '6379552717', 'balanavin0307@gmail.com', '2003-07-03', 22, '3', '2', 'Nil', 'Nil', 72000.00, 1, 0.00, 30000.00, 'Thiruvannamalai', 'Chrompet', '2603040009', '', '1', 'upload_files/candidate_tracker/10410095583_BalajiResumaeFinal.pdf', NULL, '1', '2026-03-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-04 05:57:03', 159, '2026-03-04 05:33:06', 0, NULL, 1),
(28883, 'Mariselvam', '34', '7448368568', '', 'mariselvam242001@gmail.com', '2001-09-24', 24, '3', '2', 'Maniraj', 'Daily wages', 72000.00, 2, 120000.00, 250000.00, 'Kovilpatti', 'Chromepet', '2603040010', '', '2', 'upload_files/candidate_tracker/79283655303_MariselvamMQA.docx', NULL, '1', '2026-03-04', 1, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-04 05:58:25', 159, '2026-03-04 03:57:59', 0, NULL, 1),
(28884, 'Kavitha Anandhan', '6', '7845519584', '9176176826', 'kavithaanandhan44@gmail.com', '2011-03-04', 0, '2', '2', 'Harshavardhan', 'Student', 120000.00, 1, 22000.00, 25000.00, 'Chrompet', 'Chrompet', '2603040011', '66', '2', 'upload_files/candidate_tracker/11012034832_KAVITHAANANDHAN.pdf', NULL, '1', '2026-03-04', 0, '', '3', '59', '2026-03-09', 228000.00, '', '1', '1970-01-01', '2', 'Communication ok have exp in justdial process fresher for insurance domain can givea  try and check in training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2026-03-09', 1, '2026-03-04 05:59:48', 60, '2026-03-09 09:48:37', 0, NULL, 1),
(28885, 'Jefrin Babish JH', '2', '9944679909', '9976405551', 'jefrinbabish04@gmail.com', '2003-04-23', 22, '3', '2', 'John peter V', 'Electrician', 18000.00, 1, 0.00, 250000.00, 'Nagercoil', 'Vadapalani', '2603040012', '', '1', 'upload_files/candidate_tracker/54335731288_JefrinbabishWebDeveloper.pdf', NULL, '1', '2026-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-04 06:02:54', 1, '2026-03-04 06:10:31', 0, NULL, 1),
(28886, 'Mohammed Ameen', '13', '6381577596', '9488800088', 'Ameenmohammed1008@gamil.com', '2003-05-16', 22, '3', '2', 'Maheen', 'Cooli', 15000.00, 2, 0.00, 2.50, 'Nagercoil', 'Chennai', '2603040013', '', '1', 'upload_files/candidate_tracker/79307671627_MohammedAmeensoftwaredeveloper.resume.pdf', NULL, '1', '2026-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-04 06:04:18', 1, '2026-03-04 06:26:23', 0, NULL, 1),
(28887, 'Stalin P', '6', '8124787237', '', 'prakashstalin438@gmail.com', '2004-05-17', 21, '2', '2', 'Prakash', 'Farmer', 40000.00, 2, 0.00, 18000.00, 'Viluppuram', 'Chennai', '2603040014', '42', '1', 'upload_files/candidate_tracker/65675718654_NewResumeStalin1.pdf', NULL, '1', '2026-03-04', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is ok. will check with him in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2026-03-04 06:09:32', 159, '2026-03-04 03:00:23', 0, NULL, 1),
(28888, 'revanth kumar or', '5', '8072864694', '', 'rockyrevanth2001@gmail.com', '2001-08-23', 24, '2', '2', 'raghuram', 'bussiness', 30000.00, 1, 400000.00, 500000.00, 'kodungaiyur', 'chennqi', '2603040015', '1', '2', 'upload_files/candidate_tracker/78393125060_Revanthresume.pdf', NULL, '1', '2026-03-04', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for rm role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2026-03-04 06:36:56', 154, '2026-04-07 01:21:50', 0, NULL, 1),
(28889, 'balaji o', '5', '7305081415', '7418928687', 'thalaivabalaji@gmail.com', '1997-10-15', 28, '2', '2', 'ponnarasu', 'merchant', 500000.00, 3, 2.00, 3.00, 'chennaj', 'chennai', '2603040016', '66', '2', 'upload_files/candidate_tracker/1838282513_PBalajiProfessionalResume.pdf', NULL, '1', '2026-03-04', 0, '', '1', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2026-03-04 06:47:25', 154, '2026-03-04 05:53:18', 0, NULL, 1),
(28890, 'S.Dhanasekaran', '31', '9962332392', '', 'sekaransdhana365@gmail.com', '2002-01-07', 24, '3', '2', 'A.Selvaraj', 'Self Employed', 40000.00, 1, 12000.00, 20000.00, 'Chennai', 'Avadi', '2603040017', '', '2', 'upload_files/candidate_tracker/37862219074_dhanasekaranresume.pdf', NULL, '1', '2026-03-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '2nd round not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-04 07:19:42', 159, '2026-03-04 05:34:10', 0, NULL, 1),
(28891, 'SURENDHAR.K', '6', '9360862743', '6380483930', 'surendharsurendhar717@gmail.com', '2006-04-24', 19, '2', '2', 'Kandhasemy.M', 'Masaon', 20000.00, 1, 0.00, 17000.00, 'No.38, Raghavan Nagar kodungaiyur chennai-118', 'No.38, Raghavan Nagar kodungaiyur chennai-118', '2603040018', '1', '1', 'upload_files/candidate_tracker/7617179384_Document1.docx', NULL, '1', '2026-03-04', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication and performance is Poor. Also sustainable is doubt ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-03-04 07:52:45', 159, '2026-03-04 03:26:43', 0, NULL, 1),
(28892, '', '0', '7550171526', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603040019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-04 08:43:47', 0, NULL, 0, NULL, 1),
(28893, 'Shangeetha T', '11', '6383338911', '', 'shangeethathanikaivel2002@gmail.com', '2002-12-11', 23, '2', '2', 'NA', 'NA', 15000.00, 0, 0.00, 22000.00, 'Perambur', 'Perambur, Chennai', '2603040020', '1', '2', 'upload_files/candidate_tracker/13745240829_SHANGEETHATHANIKAIVELURESUME.pdf', NULL, '1', '2026-03-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-03-04 08:51:44', 159, '2026-03-04 05:24:39', 0, NULL, 1),
(28894, '', '0', '6379552717', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603040021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-04 11:18:50', 0, NULL, 0, NULL, 1),
(28895, '', '0', '6369599764', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603040022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-04 12:54:31', 0, NULL, 0, NULL, 1),
(28896, 'prasanna g r', '13', '9360228397', '', 'prasannaramesh007@gmail.com', '2003-07-06', 22, '3', '2', 'ramesh babu', 'business man', 300000.00, 1, 0.00, 500000.00, 'kanchipuram', 'chennai', '2603040023', '', '1', 'upload_files/candidate_tracker/30047389340_PrasanaResume.pdf', NULL, '1', '2026-03-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-04 01:07:52', 1, '2026-03-04 01:23:36', 0, NULL, 1),
(28897, 'g r prasanna', '13', '9944725571', '', 'prasannaramesh00700@gmail.com', '2003-07-06', 22, '3', '2', 'ramesh', 'business', 300000.00, 1, 0.00, 500000.00, 'kanchipuram', 'chennai', '2603040024', '', '1', 'upload_files/candidate_tracker/93943689204_PrasanaResume21.pdf', NULL, '1', '2026-03-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-04 01:30:01', 1, '2026-03-04 01:34:33', 0, NULL, 1),
(28898, '', '0', '7395930210', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603040025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-04 03:16:18', 0, NULL, 0, NULL, 1),
(28899, '', '0', '7708238689', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603050001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-05 04:47:22', 0, NULL, 0, NULL, 1),
(28900, 'Dinesh Raja M', '13', '8870059695', '', 'mdineshraja234@gmail.com', '2004-02-16', 22, '2', '2', 'Mohanraj J', 'Junior Assistant TNCSC', 35000.00, 1, 0.00, 300000.00, 'Thanjavur', 'Thanjavur', '2603050002', '1', '1', 'upload_files/candidate_tracker/2825706556_DineshRajaM.pdf', NULL, '1', '2026-03-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-05 04:52:58', 159, '2026-03-05 01:03:24', 0, NULL, 1),
(28901, 'priyadharshini saravanakumar', '13', '9840727366', '', 'priyadharshinis1202@gmail.com', '2002-08-12', 23, '3', '2', 'saravanakumar', 'manager', 40000.00, 2, 0.00, 600000.00, 'chennai', 'chennai', '2603050003', '', '1', 'upload_files/candidate_tracker/51210117461_RESUME.pdf', NULL, '1', '2026-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-05 05:27:44', 1, '2026-03-05 05:34:05', 0, NULL, 1),
(28902, 'HARIMURUGAN.V', '6', '7550171526', '9600300488', 'harimurugan3112@gmail.com', '2001-12-31', 24, '2', '2', 'VINAYAGAM', 'Town planning inspector', 12000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2603050004', '50', '1', 'upload_files/candidate_tracker/79769423511_hariresume22.pdf', NULL, '1', '2026-03-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-05 05:29:40', 159, '2026-03-05 04:50:44', 0, NULL, 1),
(28903, 'Arulmozhi M', '6', '9080591295', '', 'mozhi4719@gmail.com', '2000-06-11', 25, '2', '2', 'Mani G', 'Cooli', 5.00, 3, 22.00, 25.00, 'Kallakurichi', 'Valluvarkottam', '2603050005', '1', '2', 'upload_files/candidate_tracker/48880012204_ARULMOZHIM1.pdf202602011420570000.pdf', NULL, '1', '2026-03-05', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-05 05:34:57', 159, '2026-03-05 04:53:02', 0, NULL, 1),
(28904, 'MUKKESH KUMAR A', '33', '9962215415', '', 'manojmano2004@gmail.com', '2004-03-04', 22, '5', '2', 'ARUMUGAM M', 'AUTO DRIVER', 20000.00, 0, 0.00, 10000.00, '132 NAVALAR NAGAR, TONDIARPET, CHENNAI -81', '132 NAVALAR NAGAR, TONDIARPET, CHENNAI -81', '2603050006', '', '1', 'upload_files/candidate_tracker/16427039543_MUKKESHKUMARAResume.pdf', NULL, '1', '2026-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-05 06:13:56', 1, '2026-03-05 06:40:32', 0, NULL, 1),
(28905, 'Nishanthi Velu', '6', '9080874215', '8190807293', 'nishavelu99@gmail.com', '1998-06-08', 27, '2', '1', 'Saranraj', 'Promoter', 30000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2603050007', '1', '2', 'upload_files/candidate_tracker/95403138_NResume139251.docx', NULL, '1', '2026-03-05', 7, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-03-05 07:08:32', 159, '2026-03-05 03:55:06', 0, NULL, 1),
(28906, 'Rubigasri Saravanan', '13', '9003474993', '', 'rubisaran19@gmail.com', '2003-12-19', 22, '2', '2', 'Saravanan', 'Typist', 20000.00, 1, 0.00, 300000.00, 'Krishnagiri', 'Chennai', '2603050008', '1', '1', 'upload_files/candidate_tracker/42702744244_RubigaResume.pdf', NULL, '1', '2026-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-05 08:00:06', 1, '2026-03-05 08:23:02', 0, NULL, 1),
(28907, 'Muthukumaran D', '10', '9941532957', '', 'muthukumarancd@gmail.com', '1987-06-02', 38, '3', '1', 'Bavithra', 'Professor', 60000.00, 1, 550000.00, 700000.00, 'Chennai', 'Chennai', '2603050009', '', '2', 'upload_files/candidate_tracker/64903447866_MuthukumaranDfinal.pdf', NULL, '1', '2026-03-05', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-05 09:08:48', 1, '2026-03-05 09:13:15', 0, NULL, 1),
(28908, 'DHASNA S', '6', '6382558838', '9787751354', 'sdhasnu5@gmail.com', '2002-07-04', 23, '2', '2', 'sudhrasanam', 'plumber', 20000.00, 1, 0.00, 17000.00, 'tiruttani', 'perambur', '2603050010', '1', '1', 'upload_files/candidate_tracker/94985452223_DHASNAS021026825477620.pdf', NULL, '1', '2026-03-05', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not good. also he is over Exposer .sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-03-05 09:15:03', 159, '2026-03-05 05:47:55', 0, NULL, 1),
(28909, 'Sharmila. M', '6', '9600184791', '8838258200', 'Sharmilash2604@gmil.com', '2004-10-26', 21, '2', '2', 'Mohan', 'Police', 50000.00, 1, 0.00, 14000.00, 'Egmore', 'Egmore', '2603050011', '1', '1', 'upload_files/candidate_tracker/51774201158_sharmilaresume1.pdf', NULL, '1', '2026-03-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-05 09:18:03', 159, '2026-03-05 04:28:06', 0, NULL, 1),
(28910, 'lakshmidevi y', '2', '9094027774', '', 'www.lucs1328@gmail.com', '2003-10-12', 22, '3', '2', 'yuvaraj', 'electric contractor', 20000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2603050012', '', '1', 'upload_files/candidate_tracker/7182922184_Lakshmideviresumee.pdf', NULL, '1', '2026-03-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-05 09:38:03', 159, '2026-03-12 11:48:46', 0, NULL, 1),
(28911, '', '0', '9342508511', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603050013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-05 12:13:45', 0, NULL, 0, NULL, 1),
(28912, 'SURYA SUBRAMANIYAN', '4', '9360848934', '', 'suryayaash008@gmail.com', '2001-03-01', 25, '2', '2', 'Subramanian', 'Carpenter', 15000.00, 1, 0.00, 15000.00, 'Pattukkottai', 'Pattukkottai', '2603050014', '1', '1', 'upload_files/candidate_tracker/28814850964_SURYASUBRAMANIYAN202510231922410000.pdf', NULL, '1', '2026-03-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit not performing well', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-05 12:52:10', 154, '2026-03-06 11:17:41', 0, NULL, 1),
(28913, '', '0', '9585020056', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603050015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-05 01:31:57', 0, NULL, 0, NULL, 1),
(28914, '', '0', '9043939266', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603050016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-05 03:37:18', 0, NULL, 0, NULL, 1),
(28915, 'Akkshay Ramanujan', '5', '6380285649', '9840771222', 'fluteakkshay@gmail.com', '2000-09-21', 25, '2', '2', 'Mohan,Vanitha', 'Manager,Teacher', 100000.00, 0, 17000.00, 15.00, 'Chennai', 'Chennai', '2603050017', '1', '2', 'upload_files/candidate_tracker/39445756996_AkkshaysResume2111.docx', NULL, '1', '2026-03-06', 0, '', '1', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55735', '55557', '1970-01-01', 1, '2026-03-05 03:44:37', 154, '2026-03-06 12:47:32', 0, NULL, 1),
(28916, 'Ranjini S', '13', '7845140421', '9884146749', 'ranjini0421@gmail.com', '2004-08-21', 21, '2', '2', 'Singaravel S', 'Daily wage', 72000.00, 2, 0.00, 30000.00, 'Chennai', 'Chennai', '2603050018', '1', '1', 'upload_files/candidate_tracker/97673662250_RanjiniResume.pdf', NULL, '1', '2026-03-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2026-03-12', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-05 04:14:01', 159, '2026-03-07 12:58:06', 0, NULL, 1),
(28917, 'Narendran Mukesh', '13', '7708612250', '', 'narendranmukesh2002@gmail.com', '2002-08-09', 23, '2', '2', 'kavitha n', 'house wife', 1.00, 1, 0.00, 30000.00, 'vellore', 'vellore', '2603050019', '1', '1', 'upload_files/candidate_tracker/85006839306_NarendranMukesh10.pdf', NULL, '1', '2026-03-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-05 04:32:58', 1, '2026-03-06 02:08:46', 0, NULL, 1),
(28918, 'Ranjani Ruthramoorthy', '13', '6383957061', '9361493416', 'renjeni2004@gmail.com', '2004-04-28', 21, '2', '2', 'Ruthramoorthy', 'Coconut business', 50000.00, 1, 0.00, 300000.00, 'Coimbatore', 'Coimbatore', '2603050020', '1', '1', 'upload_files/candidate_tracker/47180737456_RanjaniR.pdf', NULL, '1', '2026-03-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-05 04:38:01', 1, '2026-03-05 04:47:27', 0, NULL, 1),
(28919, 'nandhakumar', '13', '7871767001', '', 'Nandhakumarbabu78@gmail.com', '2001-08-25', 24, '2', '2', 'babu', 'powerloms', 12000.00, 1, 0.00, 2.50, 'salem tamilnadu', 'chennai guindy', '2603050021', '1', '1', 'upload_files/candidate_tracker/14573203708_NandhaKumarFlowCVResume202603041.pdf', NULL, '1', '2026-03-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-05 04:55:25', 159, '2026-03-07 01:02:31', 0, NULL, 1),
(28920, 'Vinoth Kumar S', '2', '8072731639', '', 'vinothkumar00023@gmail.com', '2003-10-15', 22, '2', '2', 'Senthil Murugan', 'Farmar', 13000.00, 1, 0.00, 3.40, '201 vataku street kottai,Attur, Selam', 'Yamuna street,barathi Nagar, Velachery Chennai', '2603060001', '1', '1', 'upload_files/candidate_tracker/72092327094_VinothkumarJava.pdf', NULL, '1', '2026-03-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-06 12:15:10', 159, '2026-03-10 01:15:07', 0, NULL, 1),
(28921, 'Ranjith Kumar', '4', '6369944141', '', 'ranjithravi2680@gmail.com', '2002-07-18', 23, '2', '2', 'Ravi', 'Catering', 20000.00, 0, 0.00, 16000.00, '25/12sivarayar garden 2nd street', 'Sivarayar garden 2nd Street Thanjavur', '2603060002', '1', '1', 'upload_files/candidate_tracker/63572095447_2026resumes.pdf', NULL, '1', '2026-03-06', 0, '', '3', '59', '2026-03-09', 162000.00, '', '3', '2026-03-13', '2', 'Communication ok fresher for insurance sales in our process need to check in training and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', '5151', '2026-03-09', 1, '2026-03-06 02:38:30', 60, '2026-03-09 09:49:55', 0, NULL, 1),
(28922, 'Athisakthi A', '13', '8667039636', '', 'aathisakthi402@gmail.com', '2004-11-10', 21, '2', '2', 'Krishnan', 'No', 9000.00, 2, 0.00, 300000.00, 'Tirunelveli', 'Chennai', '2603060003', '1', '1', 'upload_files/candidate_tracker/4476321051_AthiResume.pdf', NULL, '1', '2026-03-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Aptitude not Cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-06 03:07:35', 159, '2026-03-07 01:01:22', 0, NULL, 1),
(28923, 'Sewag Antro Joseph', '13', '8438677678', '', 'antromahi@gmail.com', '2003-11-27', 22, '2', '2', 'Joseph', 'Painting contractor', 20000.00, 3, 0.00, 18000.00, 'Sivaganga, Tamil Nadu', 'Anna Nagar, Chennai', '2603060004', '1', '1', 'upload_files/candidate_tracker/11368165492_SewagAntroJJavaDeveloper.pdf.pdf', NULL, '1', '2026-03-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-06 04:31:30', 159, '2026-03-07 12:58:49', 0, NULL, 1),
(28924, '', '0', '9498405727', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603060005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-06 04:42:00', 0, NULL, 0, NULL, 1),
(28925, 'Balaji V', '13', '7904980566', '', 'balajics018@gmail.com', '2003-01-19', 23, '2', '2', 'Venkatesh K', 'Painting contractor', 10000.00, 1, 0.00, 300000.00, 'Tiruchirappalli', 'Tiruchirappalli', '2603060006', '1', '2', 'upload_files/candidate_tracker/15026791245_BalajiVResume.pdf', NULL, '1', '2026-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-06 05:32:12', 159, '2026-03-09 11:58:46', 0, NULL, 1),
(28926, 'Muthukumar J', '6', '8608051377', '7373970377', 'muthujmk2001@gmail.com', '2001-03-04', 25, '2', '2', 'Jeyaraman', 'Business', 500000.00, 2, 33000.00, 33000.00, 'Chennai', 'Chennai', '2603060007', '1', '2', 'upload_files/candidate_tracker/69838259926_Muthukumar.pdf', NULL, '1', '2026-03-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-03-06 05:55:26', 154, '2026-03-06 12:47:51', 0, NULL, 1),
(28927, 'Sanjay B', '13', '9787038354', '7200139946', 'sanjay32323sanjay@gmail.com', '2011-03-06', 0, '3', '2', 'A Boopalan', 'Farmar', 10000.00, 1, 0.00, 25000.00, 'Agrapalayam,arni(tk), thiruvannamalai (dk)', 'Cholaimedu, Chennai', '2603060008', '', '1', 'upload_files/candidate_tracker/44502482424_resume.pdf', NULL, '1', '2026-03-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'round one not cleared (2/10)', '', '', '', '', '', '1970-01-01', 1, '2026-03-06 06:08:59', 154, '2026-03-06 01:01:09', 0, NULL, 1),
(28928, 'Amutha V', '13', '9344692224', '', 'velmuruganamutha346@gmail.com', '2002-06-12', 23, '3', '2', 'Velmurugan M', 'Farmer', 15000.00, 1, 0.00, 3.00, 'Thiruvannaamalai', 'Velachery', '2603060009', '', '1', 'upload_files/candidate_tracker/47263054106_AmuthaVProfessionalResume.pdf', NULL, '1', '2026-03-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'round one not cleared (1.5/10)', '', '', '', '', '', '1970-01-01', 1, '2026-03-06 06:11:52', 154, '2026-03-06 01:01:36', 0, NULL, 1),
(28929, 'Soundarya R', '6', '6374501834', '9789946462', 'rsoundarya62@gmail.com', '2002-06-07', 23, '2', '2', 'R. Sujartha', '150000', 35000.00, 1, 16500.00, 20000.00, 'Guduvanchery', 'Guduvanchery', '2603060010', '1', '2', 'upload_files/candidate_tracker/55685498153_Soundaryacol.pdf', NULL, '1', '2026-03-06', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '4', '6', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2026-03-06 07:40:41', 154, '2026-03-07 05:54:07', 0, NULL, 1),
(28930, '', '0', '8870446716', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-06 11:06:35', 0, NULL, 0, NULL, 1),
(28931, '8743 8497 0107', '13', '7904245130', '6380303631', 'Sakthivelsakthi7607@gmail.com', '2004-01-26', 22, '2', '2', 'Suguna', 'BE', 15000.00, 1, 0.00, 20000.00, 'Egmor', 'Egmor', '2603060012', '1', '1', 'upload_files/candidate_tracker/42126995263_Sakthivelresume1.pdf', NULL, '1', '2026-03-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1003', '0', '0', '0', NULL, 1, '2026-03-06 11:43:14', 1, '2026-03-06 11:50:16', 0, NULL, 1),
(28932, 'Kavya G', '11', '9360149231', '', 'kavyakavyag1508@gmail.com', '2003-09-08', 22, '2', '2', 'Gunasekeran', 'Ambulance Driver', 35.00, 1, 0.00, 18.00, 'Chengalpattu', 'Chengalpattu', '2603060013', '1', '1', 'upload_files/candidate_tracker/68051173644_KavyaGunasekeran.pdf', NULL, '1', '2026-03-07', 0, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'selected by gokul sir', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-03-06 03:59:11', 154, '2026-03-07 01:09:40', 0, NULL, 1),
(28933, 'Anusha S', '13', '9600129146', '9884146749', 'ranjini0421@gmail.com', '2003-01-24', 23, '2', '2', 'Singaravel S', 'Daily wage', 72000.00, 2, 0.00, 30000.00, 'Chennai', 'Chennai', '2603070001', '1', '1', 'upload_files/candidate_tracker/55885245083_AnushaSRESEME2.pdf', NULL, '1', '2026-03-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-07 12:14:01', 159, '2026-03-07 12:58:29', 0, NULL, 1),
(28934, 'HARIHARASUDHAN S', '4', '8072911306', '', 'harisangari007@gmail.com', '2002-11-02', 23, '2', '2', 'SANGARI', 'Govt employee', 25000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2603070002', '1', '1', 'upload_files/candidate_tracker/95326925179_HariHaraSudhanSResume1.pdf', NULL, '1', '2026-03-07', 0, '', '3', '59', '2026-03-11', 180000.00, '', '3', '2026-03-13', '1', 'Communication Good seems to be clear candidate can give a try and check in our training', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2026-03-11', 1, '2026-03-07 02:27:59', 60, '2026-03-10 07:43:59', 0, NULL, 1),
(28935, 'Vishwanathan R', '6', '7904939391', '9976373544', 'Vishwanathan2k@gmail.com', '2000-08-23', 25, '2', '2', 'RAMESH', 'Police', 60000.00, 1, 0.00, 13000.00, 'Padi', 'Padi', '2603070003', '50', '1', 'upload_files/candidate_tracker/32430325197_vishwaresume1.pdf', NULL, '1', '2026-03-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-07 04:26:50', 159, '2026-03-09 01:25:01', 0, NULL, 1),
(28936, 'Udaya kumar D', '4', '6281658716', '8608983809', 'udayamoni1994@gmail.com', '1994-09-28', 31, '3', '1', 'Mounika', 'Telecaller', 50000.00, 2, 0.00, 30000.00, 'Chennai', 'Chennai', '2603070004', '', '2', 'upload_files/candidate_tracker/12318608465_RESUMEUDAYA.docx', NULL, '1', '2026-03-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-07 05:07:14', 1, '2026-03-07 05:10:25', 0, NULL, 1),
(28937, 'Rakesh Saravanan', '5', '8870952799', '', 'rakeshsaravanan0601@gmail.com', '2002-01-06', 24, '2', '2', 'Saravanan', 'Photographer', 25000.00, 1, 300000.00, 400000.00, 'Villupuram', 'Chennai', '2603070005', '1', '2', 'upload_files/candidate_tracker/67903014142_RAKESHResume1.pdf', NULL, '1', '2026-03-07', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for Rm role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1018', '', '55656', '55557', '1970-01-01', 1, '2026-03-07 05:30:09', 154, '2026-03-07 11:48:35', 0, NULL, 1),
(28938, 'Srija', '4', '9080277272', '7339464775', 'srijasri2310@gmail.com', '2002-10-23', 23, '5', '2', 'Sridevi', 'Homemaker', 120000.00, 1, 18000.00, 19000.00, 'Chennai', 'Chennai', '2603070006', '', '2', 'upload_files/candidate_tracker/72482065915_srijaresume3r.pdf', NULL, '3', '2026-03-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-07 11:23:09', 1, '2026-03-07 11:28:05', 0, NULL, 1),
(28939, '', '0', '8015301708', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603070007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-07 12:14:42', 0, NULL, 0, NULL, 1),
(28940, '', '0', '9444078086', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603080001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-08 11:05:21', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28941, 'Dhanush', '28', '7550240124', '8939145623', 'dhanushg1508@gmail.com', '2003-08-15', 22, '1', '2', 'ganesan', 'Government staff', 500000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2603080002', '', '1', 'upload_files/candidate_tracker/12284670303_DhanushGResume.pdf', NULL, '1', '2026-03-10', 0, '1242', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-08 11:19:52', 159, '2026-03-10 01:16:34', 0, NULL, 1),
(28942, 'lakshmidevi y', '13', '9884512698', '', 'www.lucs1328@gmail.com', '2003-10-12', 22, '3', '2', 'jayalakshmi', 'housewife', 20000.00, 0, 0.00, 40000.00, 'Chennai', 'Chennai', '2603080003', '', '1', 'upload_files/candidate_tracker/40961291016_Lakshmideviresumee.pdf', NULL, '1', '2026-03-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-08 12:31:33', 1, '2026-03-09 12:22:16', 0, NULL, 1),
(28943, 'Dhanushiya C', '13', '9790372960', '9585212148', 'dhanushiya0502@gmail.com', '2003-02-05', 23, '2', '2', 'chakkaravarthi', 'farmer', 70000.00, 3, 0.00, 25000.00, 'Kallakurchi', 'Kallakurchi', '2603080004', '1', '1', 'upload_files/candidate_tracker/68757139349_DhanushiyaPython1.pdf', NULL, '1', '2026-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '2', '2', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-08 01:49:28', 159, '2026-03-09 11:56:49', 0, NULL, 1),
(28944, 'M Gnana Soundariya', '13', '8220621527', '', 'oviyamuruganantham@gmail.com', '2002-10-02', 23, '2', '2', 'Muruganantham', 'None', 12000.00, 1, 0.00, 2.40, 'Chennai', 'Chennai', '2603090001', '1', '1', 'upload_files/candidate_tracker/80466398900_Soundariyaresume.pdf', NULL, '1', '2026-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-09 02:34:09', 159, '2026-03-09 01:23:20', 0, NULL, 1),
(28945, 'Sairam k', '6', '7010695373', '9445367813', 'Sairamvenkatesu@gmail.com', '2004-12-21', 21, '2', '2', 'Venkatesu k', 'Kabadi', 8000.00, 0, 0.00, 12000.00, 'Chennai', 'Tiruvottiyur', '2603090002', '1', '1', 'upload_files/candidate_tracker/85039167581_sairamkresume.pdf', NULL, '3', '2026-03-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-03-09 04:49:10', 159, '2026-03-09 11:53:11', 0, NULL, 1),
(28946, 'Abisriram Nehru', '13', '7358943399', '', 'abisriram066@gmail.com', '2003-09-04', 22, '2', '2', 'Nehru', 'Farmer', 200000.00, 1, 0.00, 350000.00, 'Chokkanathapuram/salem', 'Chokkanathapuram/salem', '2603090003', '1', '1', 'upload_files/candidate_tracker/98249834501_AbisriramBNTRESUME1.pdf', NULL, '1', '2026-03-09', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2026-03-13', '1', '2', 'for 3rd programming round', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-09 05:03:52', 154, '2026-03-09 02:45:10', 0, NULL, 1),
(28947, 'Breadlee P', '31', '9087556650', '', 'breadlee05@gmail.com', '2004-01-25', 22, '2', '2', 'Panneer kingsly', 'Driver', 10000.00, 0, 0.00, 15000.00, 'Nagercoil', 'Chennai', '2603090004', '1', '1', 'upload_files/candidate_tracker/35417309042_BreadleeResume.pdf', NULL, '1', '2026-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-09 06:19:30', 159, '2026-03-09 01:22:09', 0, NULL, 1),
(28948, 'sanjay xavier arul selvan', '13', '6381253082', '', 'sanjayx256@gmail.com', '2011-03-09', 0, '2', '2', 'xavier arul selvan', 'cooli', 10000.00, 1, 0.00, 15000.00, 'nagercoil', 'chennai', '2603090005', '1', '1', 'upload_files/candidate_tracker/45894028281_Sanjayprofile.pdf', NULL, '1', '2026-03-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-09 06:20:52', 159, '2026-03-09 01:21:45', 0, NULL, 1),
(28949, 'Irshad', '6', '7418019753', '9677182969', 'thalairshu453@gmail.com', '1999-11-23', 26, '2', '2', 'Naseema', 'Homemaker', 60000.00, 2, 25000.00, 28000.00, 'Chennai', 'Chennai', '2603090006', '69', '2', 'upload_files/candidate_tracker/26473045895_68124IrshadNServiceLetter.pdf', NULL, '1', '2026-03-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-09 08:39:33', 154, '2026-03-10 06:32:34', 0, NULL, 1),
(28950, 'Velan', '6', '6383003134', '8270656908', 'velanv546@gmail.com', '2001-12-09', 24, '2', '1', 'Venkatachalam', 'Driver', 45000.00, 2, 25000.00, 27000.00, 'Salem', 'Coimbatore', '2603090007', '1', '2', 'upload_files/candidate_tracker/27427910741_VELANresume.pdff.pdf', NULL, '1', '2026-03-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-03-09 10:12:16', 159, '2026-03-09 05:18:14', 0, NULL, 1),
(28951, 'V.prakashraj', '6', '9344853397', '9841390873', 'prakashrajvedachalam9@gmail.com', '2002-02-01', 24, '2', '2', 'Hemalatha', 'B com ism', 70000.00, 1, 0.00, 16000.00, 'Iyypanthangal', 'Chennai', '2603090008', '1', '1', 'upload_files/candidate_tracker/31578824955_PrakashResume.docx', NULL, '1', '2026-03-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-09 10:27:51', 159, '2026-03-09 05:19:28', 0, NULL, 1),
(28952, '', '0', '8610718604', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603090009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-09 11:08:34', 0, NULL, 0, NULL, 1),
(28953, 'Agash vij', '6', '6385221798', '6385241068', 'agash20007@gmail.com', '2000-04-07', 25, '2', '2', 'vijayakumar', 'business', 100000.00, 2, 30000.00, 30000.00, 'chennai', 'chennai', '2603090010', '1', '2', 'upload_files/candidate_tracker/78101190234_MyResume2025.pdf', NULL, '1', '2026-03-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-09 12:26:47', 159, '2026-03-11 10:09:28', 0, NULL, 1),
(28954, 'saravanapandi r', '13', '8754108559', '', 'saravanapandi0510@gmail.com', '2005-10-05', 20, '2', '2', 'raja', 'painting', 10000.00, 2, 0.00, 18000.00, 'chennai', 'guindy', '2603090011', '1', '1', 'upload_files/candidate_tracker/67605328654_Saravanapandicv.pdf', NULL, '1', '2026-03-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '2026-03-10', 1, '2026-03-09 12:54:15', 159, '2026-03-10 01:15:38', 0, NULL, 1),
(28955, '', '0', '6383944967', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603090012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-09 12:54:54', 0, NULL, 0, NULL, 1),
(28956, '', '0', '9080632021', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603090013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-09 12:56:15', 0, NULL, 0, NULL, 1),
(28957, 'Thalapathi', '13', '6369207378', '', 'thalapathiofficial8@gmail.com', '2003-07-08', 22, '2', '2', 'muruganantham', 'frasher', 20000.00, 1, 0.00, 20000.00, 'chennai', 'velachery', '2603090014', '1', '1', 'upload_files/candidate_tracker/63553182022_ThalapathiMJavaFullStackDeveloperResume.pdf', NULL, '3', '2026-03-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-09 12:59:29', 1, '2026-03-09 01:06:51', 0, NULL, 1),
(28958, 'Janani Loganathan', '4', '8098904383', '8098903483', 'vasuki17janani@gmail.com', '2000-07-17', 25, '2', '1', 'Vishal G.R', 'Nill', 5000.00, 2, 18000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2603090015', '1', '2', 'upload_files/candidate_tracker/89096257933_Janani2026.pdf', NULL, '1', '2026-03-12', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-09 01:10:33', 154, '2026-03-12 01:12:36', 0, NULL, 1),
(28959, 'Palam Sekkappan kannappan', '13', '9597871141', '', 'palamsekkappan19@gmail.com', '2003-08-19', 22, '2', '2', 'Kannappan s', 'Business', 7000.00, 2, 0.00, 20000.00, 'Sivagangai', 'Chennai', '2603090016', '1', '1', 'upload_files/candidate_tracker/67298808257_PalamSekkappan1.pdf', NULL, '1', '2026-05-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Given a  week time to learn', '2', '1', '', '1', '8', '', '2', '2026-05-08', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-09 01:39:56', 154, '2026-05-07 06:11:42', 0, NULL, 1),
(28960, 'THAVISHKA T', '13', '8098696702', '', 'thavishkaa@gmail.com', '2004-06-02', 21, '2', '2', 'thangarasu', 'driver', 12000.00, 1, 0.00, 300000.00, 'tiruvannamalai', 'chennai', '2603090017', '1', '1', 'upload_files/candidate_tracker/95514918121_ThavishkaTFullStack.pdf', NULL, '1', '2026-03-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-09 02:32:57', 1, '2026-03-09 02:41:29', 0, NULL, 1),
(28961, 'Mohamed Faizal', '4', '6379482927', '8754677948', 'Mohamedfaiaal1120@gmail.com', '2001-11-02', 24, '2', '1', 'Rehana Firdous', 'Business', 21000.00, 1, 15000.00, 20000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2603090018', '1', '2', 'upload_files/candidate_tracker/43987813235_MohamedFaizalResume12.pdf', NULL, '1', '2026-03-10', 1, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-09 03:14:21', 154, '2026-03-10 10:42:46', 0, NULL, 1),
(28962, 'Sudha amarnath', '33', '9344679685', '', 'sujansujan48800@gmail.com', '1984-04-02', 41, '3', '1', 'Amarnath', 'Marketing co ordinator', 20000.00, 2, 20000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2603100001', '', '2', 'upload_files/candidate_tracker/71861294127_sudha.docx', NULL, '1', '2026-03-11', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-10 03:36:05', 1, '2026-03-10 10:25:21', 0, NULL, 1),
(28963, '', '0', '8668140480', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603100002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-10 03:51:04', 0, NULL, 0, NULL, 1),
(28964, 'Hajira mohideen', '6', '7305588455', '9043496123', 'sofiyakh70@gmail.com', '1990-02-28', 36, '2', '1', 'Rahima', 'House wife', 10000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2603100003', '1', '2', 'upload_files/candidate_tracker/1842575712_HajiraBegamResume121compressed.pdf', NULL, '1', '2026-03-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-03-10 04:52:21', 159, '2026-03-10 12:58:45', 0, NULL, 1),
(28965, 'jakir hussain', '6', '9345744496', '', 'jahirhussain3746@gmail.com', '2011-03-10', 0, '2', '1', 'jahara begum', 'no', 18000.00, 0, 0.00, 22000.00, 'perambur', 'perambur', '2603100004', '1', '1', 'upload_files/candidate_tracker/55839363437_jahirhussainv1.doc', NULL, '1', '2026-03-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-03-10 05:24:52', 159, '2026-03-10 12:59:29', 0, NULL, 1),
(28966, '', '0', '9962319299', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-10 06:09:06', 0, NULL, 0, NULL, 1),
(28967, 'Kousic raj B', '6', '8422937923', '9629825245', 'skkousic021@gmail.com', '2001-02-05', 25, '2', '2', 'Babujayaraj', 'Company supervisor', 35000.00, 1, 21000.00, 27000.00, 'Chengalpattu', 'Chromepet', '2603100006', '1', '2', 'upload_files/candidate_tracker/91732336821_DOC20251014WA0067..pdf', NULL, '1', '2026-03-10', 0, '', '3', '59', '2026-03-16', 350000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp but not in a relevant one in November he attended and not joined due to salary constraints reappeared let us check in training', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55735', '55557', '2026-03-16', 1, '2026-03-10 06:29:50', 60, '2026-03-16 10:31:20', 0, NULL, 1),
(28968, '', '0', '9361573298', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603100007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-10 06:35:16', 0, NULL, 0, NULL, 1),
(28969, 'babYlatha', '6', '9344542216', '6380821805', 'babysarathi52@gmail.com', '2004-04-06', 0, '2', '2', 'Sarathi', 'Weaver', 20000.00, 2, 0.00, 3.00, '375 eshwaran Kovil Street sevoor, Arani', 'Saidhapet', '2603100008', '50', '1', 'upload_files/candidate_tracker/53980927026_LATHARESUME.pdf', NULL, '1', '2026-03-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-10 06:40:04', 159, '2026-03-10 02:56:16', 0, NULL, 1),
(28970, 'gowreeswari v', '6', '9361265008', '', 'gowriveeran933@gmail.com', '2005-09-27', 20, '2', '1', 'karthikeyan', 'insurance sales executive', 35000.00, 2, 10000.00, 25000.00, 'THANJAVUR', 'THANJAVUR', '2603100009', '1', '2', 'upload_files/candidate_tracker/47188514232_GowreeswariFormattedResume.pdf', NULL, '1', '2026-03-11', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-10 07:10:54', 159, '2026-03-11 10:06:56', 0, NULL, 1),
(28971, 'Medha kK', '6', '7305764884', '', 'medhakesavann@gmail.com', '2002-04-21', 23, '2', '2', 'C.kesavan', 'Civil Contractor', 60000.00, 1, 15000.00, 25000.00, 'Thanjavur', 'Thanjavur', '2603100010', '1', '2', 'upload_files/candidate_tracker/22201481554_Medhakesavan.docx', NULL, '1', '2026-03-11', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-10 07:14:10', 159, '2026-03-11 10:07:52', 0, NULL, 1),
(28972, 'sathish s', '4', '7502278449', '9176638439', 'satsathish2504@gmail.com', '1999-04-25', 26, '2', '2', 'sankar', 'driver', 10000.00, 1, 21000.00, 25000.00, 'kanchipuram', 'kanchipuram', '2603100011', '50', '2', 'upload_files/candidate_tracker/69664615918_Sathish.SCV.docx', NULL, '1', '2026-03-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-10 07:18:45', 1, '2026-03-10 07:35:14', 0, NULL, 1),
(28973, '', '0', '7305864884', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603100012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-10 07:26:53', 0, NULL, 0, NULL, 1),
(28974, 'v kevin kajanthiran', '6', '9047815707', '9659380786', 'kevinkajanthiranv@gmail.com', '2003-08-30', 22, '2', '2', 'vembarasan v', 'flower Merchant', 30000.00, 2, 0.00, 16000.00, 'srk street a.Vellodu dindigul', 'devikarumarriyamman fourth street velacherry', '2603100013', '1', '1', 'upload_files/candidate_tracker/42155083792_kevinRESUME.1.pdf', NULL, '1', '2026-03-11', 0, '', '3', '59', '2026-03-12', 192000.00, '', '3', '2026-04-02', '2', 'Communication Ok fresher need to train a lot  5050 for our roles pronunciation need to train will check', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '2026-03-12', 1, '2026-03-10 08:07:57', 60, '2026-03-11 07:23:36', 0, NULL, 1),
(28975, 'MOHAMMED SHARIBU M', '2', '8220434905', '', 'sharibu504474@gmail.com', '2001-06-26', 24, '3', '2', 'Mohaideen Bathusha', 'Car driver', 10000.00, 5, 0.00, 15000.00, '49 Rice Mill South Street Pettai kadayanallur', 'Dharga road Zamin Pallavaram Chennai', '2603100014', '', '1', 'upload_files/candidate_tracker/97347944699_MOHAMMEDSHARIBUMRESUMEcompressed.pdf', NULL, '1', '2026-03-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', '(anudip) aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-10 09:11:49', 159, '2026-03-10 04:11:21', 0, NULL, 1),
(28976, 'M Aswanth Sai', '6', '9003879575', '', 'vijayashwanth349@gmail.com', '1999-06-15', 26, '3', '2', 'M.Vijayan', 'Call centre', 20000.00, 1, 11350.00, 16000.00, 'Tiruvottiyur', 'Tiruvottiyur', '2603100015', '', '2', 'upload_files/candidate_tracker/92592904606_ASHWANTHRESUME1726901837051Ashwanthsai1.doc', NULL, '1', '2026-03-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-10 09:15:33', 159, '2026-03-10 04:14:22', 0, NULL, 1),
(28977, 'Arunachalam Thangamariyappan', '6', '8056158439', '', 'arcarun7@gmail.com', '2003-06-23', 22, '2', '2', 'Shanthi', 'Sales executive', 20000.00, 0, 0.00, 20000.00, 'No 4 Anna Street Mgr nagar choolaipallam Chennai', 'No 4 Anna Street Mgr nagar choolaipallam Chennai', '2603100016', '1', '1', 'upload_files/candidate_tracker/26501072998_GreyMinimalistProfessionalResumeDocumentA4202603041818250000.pdf', NULL, '1', '2026-03-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-10 10:11:31', 159, '2026-03-11 11:45:40', 0, NULL, 1),
(28978, 'SARATH kUMAR', '4', '8686862711', '8886223212', 'darlingsarath868686@gmail.com', '1997-04-08', 28, '3', '2', 'Vijay sekhar', 'Farming', 20000.00, 3, 24000.00, 25000.00, 'Tirupati', 'Tirupati', '2603100017', '', '2', 'upload_files/candidate_tracker/37520736494_Sarathkumarresume1111.pdf', NULL, '1', '2026-03-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-10 10:11:51', 1, '2026-03-10 10:28:02', 0, NULL, 1),
(28979, '', '0', '9010459962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603100018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-10 10:34:24', 0, NULL, 0, NULL, 1),
(28980, '', '0', '9361262551', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603100019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-10 10:44:17', 0, NULL, 0, NULL, 1),
(28981, 'V. Sowndariya', '5', '6369672310', '9940558894', 'sowndariya.vu@gmail.com', '1998-11-15', 27, '2', '2', 'Umadevi', 'homemaker', 25000.00, 1, 30000.00, 35000.00, 'porur', 'Porur', '2603100020', '1', '2', 'upload_files/candidate_tracker/55289113406_SowndariyaResume2026.pdf', NULL, '2', '2026-03-11', 30, '', '3', '59', '2026-03-16', 348000.00, '', '1', '1970-01-01', '1', 'Communication Good Have exp in Yes bank for few months Later AR Caller Exp Career gap for more than 2 yrs need to check in our training and see', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55656', '55557', '2026-03-16', 1, '2026-03-10 10:57:22', 60, '2026-03-14 05:29:42', 0, NULL, 1),
(28982, 'Shirley nithisha', '6', '9361791135', '', 'shirleynithisha14@gmail.com', '2002-11-14', 23, '2', '2', 'Golry', 'House wife', 40000.00, 1, 25600.00, 29000.00, 'No 449 8 th street sastri nagar vyasarpadi chennai', 'No449 8 th street sastri nagar vyasarpadi chennai', '2603100021', '71', '2', 'upload_files/candidate_tracker/17305255543_cv1.pdf', NULL, '1', '2026-03-11', 30, '', '3', '59', '2026-03-12', 252000.00, '', '3', '2026-03-12', '2', 'Communication Ok have exp in Shree Mutual funds Kannan Team Banu AM just for 6 months previously worked with Star through Manpower need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '2026-03-12', 1, '2026-03-10 12:13:12', 60, '2026-03-12 10:07:48', 0, NULL, 1),
(28983, '', '0', '9952201346', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603100022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-10 12:50:05', 0, NULL, 0, NULL, 1),
(28984, 'muthumanikandan N', '13', '9363357495', '9025308268', 'muthumanikandann98@gmail.com', '2003-12-11', 22, '2', '2', 'Nagaraj', 'cooli', 15000.00, 2, 0.00, 15000.00, 'Theni', 'Chennai', '2603100023', '1', '1', 'upload_files/candidate_tracker/53325658345_MuthumanikandanNJavaDeveloperResum.pdf', NULL, '1', '2026-03-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-10 04:19:23', 159, '2026-03-11 01:27:01', 0, NULL, 1),
(28985, '', '0', '7305289659', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603100024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-10 05:22:19', 0, NULL, 0, NULL, 1),
(28986, 'SRI BALAJI S', '13', '8925071402', '', 'SRICOC123@GMAIL.COM', '2003-10-20', 22, '2', '2', 'Somu', 'Compounder', 75000.00, 2, 0.00, 450000.00, 'Chennai', 'Chennai', '2603100025', '1', '1', 'upload_files/candidate_tracker/79863451985_SriBalaji.SB.TechIT2025.pdf', NULL, '1', '2026-03-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-10 06:56:04', 1, '2026-03-10 07:00:45', 0, NULL, 1),
(28987, 'Sibisezhiyan G', '23', '9585061480', '', 'sibigss16@gmail.com', '2003-08-16', 22, '2', '2', 'Gopinath', 'Business', 10000.00, 1, 0.00, 15000.00, 'Villupuram', 'Tambaram', '2603110001', '1', '1', 'upload_files/candidate_tracker/88761066622_SibisezhiyanResume2.pdf', NULL, '1', '2026-03-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-11 01:36:01', 1, '2026-03-11 01:39:53', 0, NULL, 1),
(28988, 'abimanyu varadharajan', '4', '8072296208', '', 'abimanyuvr08@gmail.com', '1994-02-08', 32, '2', '1', 'priyanka', 'ar caller', 40000.00, 1, 0.00, 16000.00, 'thanjavur', 'thanjavur', '2603110002', '1', '1', 'upload_files/candidate_tracker/82926268263_ABIRESUME.docx', NULL, '1', '2026-03-11', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is ok with the profile expected 16 to 18k...immediate joining...father foreign return..brother in foreign....kindly cross check in adaptability with team and manager only', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-11 04:31:47', 154, '2026-03-11 10:08:54', 0, NULL, 1),
(28989, '', '0', '9025682631', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603110003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-11 04:32:00', 0, NULL, 0, NULL, 1),
(28990, '', '0', '7305254048', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603110004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-11 04:32:40', 0, NULL, 0, NULL, 1),
(28991, 'SHALINI A', '6', '9342720148', '8682979174', 'shalinideepa@gmail', '2005-03-27', 20, '2', '2', 'ARULPRAKASAM', 'Post man', 1000000.00, 2, 0.00, 17000.00, 'Cuddalore', 'Mylapore', '2603110005', '1', '1', 'upload_files/candidate_tracker/12738996023_SHALINIA.pdf', NULL, '1', '2026-03-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-11 05:37:39', 159, '2026-03-11 12:06:32', 0, NULL, 1),
(28992, 'mythili durairaj', '6', '9150194498', '8428307676', 'mythilidurairaj105@gmail.com', '2001-11-08', 24, '3', '2', 'durairaj', 'auto driver', 25000.00, 1, 25000.00, 26000.00, 'chennai', 'chennai', '2603110006', '', '2', 'upload_files/candidate_tracker/77279711552_MythiliResumeupdated.pdf', NULL, '1', '2026-03-11', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-03-11 06:00:49', 159, '2026-03-11 01:21:45', 0, NULL, 1),
(28993, 'Divya dharshini', '6', '8754584169', '9150852290', 'dazzlingdivya002@gmail.com', '2002-08-15', 23, '3', '2', 'J.gandhimathi', 'House wife', 25000.00, 2, 21000.00, 23000.00, 'Chennai', 'Chennai', '2603110007', '', '2', 'upload_files/candidate_tracker/90638370965_DivyadharshiniJayasankarResumev211.pdf', NULL, '1', '2026-03-11', 0, '', '3', '59', '2026-03-16', 228000.00, '', '3', '2026-03-17', '1', 'Communication Ok sustainability issues she has Last year attended and go rejected in our roles 5050 need to check in training and see', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', '5151', '2026-03-16', 1, '2026-03-11 06:01:44', 60, '2026-03-14 05:21:00', 0, NULL, 1),
(28994, 'Krishnaveni Davakumar', '6', '8220706592', '8838481793', 'keerthikumar1210@gmail.com', '2003-11-12', 22, '2', '2', 'Davakumar', 'Painter', 30000.00, 3, 13000.00, 15000.00, '28 Chelliamman Koil Street Old Perungalathur Chn', '28 Chelliamman Koil Street Old Perungalathur Chn', '2603110008', '1', '2', 'upload_files/candidate_tracker/57636785224_KRISHNAVENI1772532190408.pdf', NULL, '1', '2026-03-11', 0, '', '3', '59', '2026-03-12', 192000.00, '', '5', '1970-01-01', '2', 'Communication and confident is good too long distance but open to travel 1yr imarque exp open for insurance sales need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55666', '5151', '2026-03-12', 1, '2026-03-11 06:10:49', 60, '2026-03-11 07:25:06', 0, NULL, 1),
(28995, 'ABINESH A', '6', '9952012584', '', 'abineshabi14084@gmail.com', '2011-03-11', 0, '2', '2', 'Anthony', 'Company helper', 20.00, 1, 0.00, 20.00, 'Thiruvottiyur', 'Thiruvottiyur', '2603110009', '1', '1', 'upload_files/candidate_tracker/80271850169_AbineshResume.pdf', NULL, '1', '2026-03-11', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-03-11 06:13:10', 154, '2026-03-12 01:15:35', 0, NULL, 1),
(28996, 'Kishore R', '6', '9962101822', '6380315861', 'kishuramesh12@gmail.com', '1998-11-25', 27, '2', '2', 'Amudha', 'House wife', 27000.00, 1, 14000.00, 20000.00, '8/16 chidhambaranar street ramana nagar Perambur', '8/16 chidhambaranar street ramana nagar Perambur', '2603110010', '1', '2', 'upload_files/candidate_tracker/51126342742_Kishorehardikresume.pdf', NULL, '3', '2026-03-11', 1, '', '3', '59', '2026-03-13', 198000.00, '', '3', '2026-03-16', '1', 'Communication ok have exp in but no sustainability  let us try in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', '5151', '2026-03-13', 1, '2026-03-11 06:28:15', 60, '2026-03-13 10:18:00', 0, NULL, 1),
(28997, '', '0', '9659380786', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603110011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-11 06:32:09', 0, NULL, 0, NULL, 1),
(28998, 'Masil Periyasamy', '4', '9751796515', '9787367643', 'masilbaby1210@gmail.com', '2011-03-11', 0, '2', '2', 'Periyasamy', 'Carpenter', 49000.00, 2, 0.00, 15000.00, 'Kandarathitham', 'Kandarathitham', '2603110012', '1', '2', 'upload_files/candidate_tracker/28849110150_CV2026031018334292.pdf', NULL, '3', '2026-03-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-11 07:10:14', 154, '2026-03-11 02:35:28', 0, NULL, 1),
(28999, 'Jeyashri', '4', '8122921771', '9361576437', 'jjayasri9361@gmail.com', '2003-05-31', 22, '2', '2', 'Jeeva', 'Famer', 6000.00, 2, 0.00, 15000.00, 'Melattur', 'Thanjavur', '2603110013', '1', '1', 'upload_files/candidate_tracker/29751579068_JayasriJCV1.pdf', NULL, '1', '2026-03-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-11 07:11:02', 154, '2026-03-11 02:38:19', 0, NULL, 1),
(29000, 'Ishwariya SenthilKumar', '4', '6369323354', '8220024067', 'ishi72340@gmail.com', '2005-03-17', 20, '2', '2', 'SenthilKumar', 'Labour', 6000.00, 1, 0.00, 15000.00, '42/2 peravurani new road Thanjavur dt 614804', '42/2 peravurani new road Thanjavur 614804', '2603110014', '1', '1', 'upload_files/candidate_tracker/91787662317_IshwaryaIsh.pdf', NULL, '3', '2026-03-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-11 07:11:03', 154, '2026-03-11 02:37:53', 0, NULL, 1),
(29001, 'Karthika Vigneshwaran', '4', '9360941345', '', 'karthikavignesh30142403@gmail.com', '1997-07-14', 28, '2', '1', 'Vigneshwaran', 'Driver', 10000.00, 0, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2603110015', '1', '1', 'upload_files/candidate_tracker/74985783813_karthikaResume1.pdf', NULL, '1', '2026-03-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-11 07:11:06', 154, '2026-03-11 02:37:19', 0, NULL, 1),
(29002, 'Carmel mercy. C', '6', '6380264909', '', 'mercycarmel9@gmail.com', '2005-04-09', 20, '2', '2', 'Raj. C', 'Carpenter', 35000.00, 1, 0.00, 20000.00, 'Mylapore', 'Mylapore', '2603110016', '1', '1', 'upload_files/candidate_tracker/5833660142_CarmelMercyResume.pdf', NULL, '1', '2026-03-12', 0, '', '3', '59', '2026-03-16', 192000.00, '', '5', '1970-01-01', '1', 'Communication ok fresher for our insurance sales need to check in training and confirm let us try', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1070', '5151', '2026-03-16', 1, '2026-03-11 08:20:06', 60, '2026-03-14 05:22:17', 0, NULL, 1),
(29003, '', '0', '9042210836', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603110017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-11 09:22:16', 0, NULL, 0, NULL, 1),
(29004, '', '0', '6383931001', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603110018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-11 09:33:44', 0, NULL, 0, NULL, 1),
(29005, 'kaviya m', '11', '6382761379', '', 'kaviyamanohar10@gmail.com', '2001-12-10', 24, '2', '2', 'manohar', 'tailor', 20000.00, 1, 0.00, 20000.00, 'kannam para vilai nattalam kanyakumari', 'sowrastra nagar sixth street nungambakkam', '2603110019', '1', '1', 'upload_files/candidate_tracker/86113401690_KaviyaMResumeChn.pdf', NULL, '1', '2026-03-12', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-03-11 10:25:52', 154, '2026-03-12 04:41:14', 0, NULL, 1),
(29006, 'VIGNESH', '4', '8015612512', '', 'vigneshvelu25102@gmail.com', '2002-10-25', 23, '5', '2', 'Velu', 'plumber', 200000.00, 0, 20000.00, 27000.00, 'TONDIARPET', 'TONDIARPET', '2603110020', '', '2', 'upload_files/candidate_tracker/8296233385_VigneshVResume1.pdf', NULL, '1', '2026-03-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-11 11:45:35', 1, '2026-03-11 11:52:35', 0, NULL, 1),
(29007, '', '0', '6380366783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603110021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-11 01:04:54', 0, NULL, 0, NULL, 1),
(29008, 'Kumanan Kamaraj', '2', '9384519572', '', 'kumanan637@gmail.com', '2003-03-14', 22, '2', '2', 'Kamaraj S', 'Hotel manager', 12000.00, 0, 0.00, 18000.00, 'Tanjore', 'Bangalore', '2603110022', '1', '1', 'upload_files/candidate_tracker/3182482910_KumananSoftwareResume.pdf', NULL, '2', '2026-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-11 01:05:24', 1, '2026-03-11 01:08:44', 0, NULL, 1),
(29009, '', '0', '9080646152', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603110023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-11 01:17:01', 0, NULL, 0, NULL, 1),
(29010, '', '0', '8825951702', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603110024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-11 01:37:06', 0, NULL, 0, NULL, 1),
(29011, '', '0', '8754644981', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603110025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-11 03:24:16', 0, NULL, 0, NULL, 1),
(29012, 'Madhankumar S', '2', '7904250509', '', 'madhankumar131203@gmail.com', '2003-12-13', 22, '2', '2', 'Selvakumar L', 'Fresher', 18000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2603110026', '1', '1', 'upload_files/candidate_tracker/33719761192_newlinkresumewithphoto.pdf', NULL, '1', '2026-03-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-03-11 03:29:09', 1, '2026-03-11 03:32:42', 0, NULL, 1),
(29013, 'ezhumalai naga vishnu sivamurugesan', '31', '8438876798', '7695912558', 'vnaga592@gmail.com', '2004-10-03', 21, '4', '2', 'rajakshmi', 'tailor', 8000.00, 1, 0.00, 20000.00, 'dindigul', 'dindigul', '2603110027', '', '1', 'upload_files/candidate_tracker/20658385847_Resume03.pdf', NULL, '2', '2026-04-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-11 06:40:59', 1, '2026-03-12 06:22:34', 0, NULL, 1),
(29014, '', '0', '6374231602', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603110028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-11 07:01:38', 0, NULL, 0, NULL, 1),
(29015, 'lokesh kumar B', '13', '7299631879', '', 'lokeshkumar16.dev@gmail.com', '2002-12-16', 23, '2', '2', 'Balamurugan R', 'Security guard', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2603110029', '1', '1', 'upload_files/candidate_tracker/94638226821_LokeshKumarSoftwareDeveloper.pdf', NULL, '1', '2026-03-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'not cleared program test', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-11 11:29:13', 159, '2026-03-13 12:37:27', 0, NULL, 1),
(29016, 'C ANUPRIYA', '13', '8270231556', '', 'anupriyajaisheela@gmail.com', '2003-03-07', 23, '2', '2', 'Chithiraiselvam G', 'Physiotherapist', 15000.00, 0, 0.00, 300000.00, 'Thiruvaru', 'Chennai', '2603120001', '1', '1', 'upload_files/candidate_tracker/27570458882_Res.pdf', NULL, '1', '2026-03-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-12 02:48:00', 159, '2026-03-12 12:12:14', 0, NULL, 1),
(29017, 'sakthivel', '13', '9786940445', '', 'sakthivelm098@gmail.com', '2003-06-22', 22, '2', '2', 'saroja', 'farmer', 2.50, 1, 0.00, 300000.00, 'chennai', 'chennai', '2603120002', '1', '1', 'upload_files/candidate_tracker/50090762966_SakthivelMResume1.pdf', NULL, '1', '2026-03-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-12 02:57:57', 159, '2026-03-12 12:10:54', 0, NULL, 1),
(29018, 'Sambath K', '13', '9698729871', '', 'samsambath2020@gmail.com', '2011-03-12', 0, '2', '2', 'Kalyanasundram D', 'Retired (sI)', 100000.00, 1, 0.00, 250000.00, 'Erode', 'Chennai', '2603120003', '1', '1', 'upload_files/candidate_tracker/25063419883_SambathK.pdf', NULL, '1', '2026-03-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-12 04:12:51', 159, '2026-03-12 12:11:09', 0, NULL, 1),
(29019, 'S Varsha', '6', '9042743569', '9962904441', 'vs1770639@gmail.com', '2005-03-21', 20, '2', '2', 'Thenmozhi', 'House wife', 18000.00, 0, 0.00, 14000.00, 'Thiruverkadu', 'Thiruverkadu', '2603120004', '1', '1', 'upload_files/candidate_tracker/11806616082_Varsha.SCV.pdf', NULL, '1', '2026-03-12', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-12 04:52:39', 159, '2026-03-12 11:49:49', 0, NULL, 1),
(29020, 'Pachaiyappan E', '13', '6369910045', '', 'pachaidhana1@gmail.com', '2002-12-29', 23, '3', '2', 'Elumalai', 'Daily Worker', 7000.00, 1, 0.00, 2.00, 'Tindivanam', 'Chennai', '2603120005', '', '1', 'upload_files/candidate_tracker/69935209477_Pachaaiyappan.EProfile.pdf', NULL, '1', '2026-03-12', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-12 05:30:19', 159, '2026-03-12 12:10:24', 0, NULL, 1),
(29021, 'sathish ragav r', '6', '7604991624', '7305939311', 'sathishragav47@gmail.com', '2002-11-13', 23, '2', '2', 'ravi', 'railway employee', 50000.00, 1, 16000.00, 18000.00, 'arakkonam', 'villivakkam', '2603120006', '1', '2', 'upload_files/candidate_tracker/24469294442_Sathish.pdf1.pdf', NULL, '1', '2026-03-12', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and performance is not Good. Sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', '5151', '1970-01-01', 1, '2026-03-12 05:41:38', 154, '2026-03-12 01:04:36', 0, NULL, 1),
(29022, 'Ganesh dhamodharan', '6', '8110997969', '8524906017', 'ganesh5454213@gmail.com', '2002-08-22', 23, '2', '2', 'Parent', 'Business', 20000.00, 1, 23000.00, 20000.00, 'Arakkonam', 'Nungambakkam', '2603120007', '1', '2', 'upload_files/candidate_tracker/32857770872_Ganeshupdatedresume.PDF', NULL, '1', '2026-03-12', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Alredy working loan department. Salary expectation High. But will analysis 7 days training ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '1970-01-01', 1, '2026-03-12 05:45:49', 154, '2026-03-12 01:03:18', 0, NULL, 1),
(29023, 'Vasanth J', '6', '8056482290', '9361275782', 'vasanthjacob27@gmail.com', '1999-06-19', 26, '2', '1', 'Aarthi A', 'Not working', 2.00, 0, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2603120008', '50', '1', 'upload_files/candidate_tracker/36703555183_LatestCVmarchcompressedcompressed.pdf', NULL, '1', '2026-03-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-12 06:30:19', 159, '2026-03-12 12:37:23', 0, NULL, 1),
(29024, 'Harishna K', '2', '6382628979', '', 'harishna.gkc@gmail.com', '2002-11-25', 23, '6', '2', 'Kathirvel', 'Tea Master', 30000.00, 1, 0.00, 300000.00, '22C, Kamarajar Nagar, Pothanur, paramathi Velur', 'Tambaram, Chennai', '2603120009', '', '1', 'upload_files/candidate_tracker/29315878930_HarishnaResume.pdf', NULL, '1', '2026-03-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-12 06:46:07', 1, '2026-03-12 06:53:29', 0, NULL, 1),
(29025, 'sudha', '6', '8825745317', '6374629114', 'sudhakumar2819@gmail.com', '2002-09-28', 23, '5', '2', 'kumar p', 'painting contractor', 20000.00, 1, 0.00, 20000.00, 'gingee', 'pallavaram', '2603120010', '', '1', 'upload_files/candidate_tracker/64744507990_SUDHARESUME1.pdf', NULL, '1', '2026-03-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-12 07:18:39', 1, '2026-03-13 05:05:49', 0, NULL, 1),
(29026, 'Archana Manickam Loganathan', '11', '7305756195', '', 'archanaloganathan6@gmail.com', '2004-03-03', 22, '3', '2', 'M.Loganathan', 'Buisness', 300000.00, 2, 0.00, 30000.00, 'Chromepet Chennai', 'Chromepet Chennai', '2603120011', '', '1', 'upload_files/candidate_tracker/78067419177_Archana.ML.Resume2.pdf', NULL, '1', '2026-03-12', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-12 08:39:22', 159, '2026-03-12 02:33:36', 0, NULL, 1),
(29027, 'Gayathri k', '4', '9361890677', '', 'kannangayathri112@gmail.com', '2001-11-04', 24, '2', '2', 'Kannan', 'Accountant', 4.00, 2, 0.00, 25.00, 'Koyambedu', 'Koyambedu', '2603120012', '50', '2', 'upload_files/candidate_tracker/28994948864_SimpleProfessionalModernCVResume202603121109440000.pdf', NULL, '1', '2026-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-12 08:42:10', 1, '2026-03-12 08:44:53', 0, NULL, 1),
(29028, 'jessy mary j', '4', '6369464451', '7034292705', 'Rajjessylove.28@gmail.com', '1999-08-05', 26, '1', '1', 'raj kumar', 'store manger', 40.00, 1, 25.00, 25.00, 'pammal cheanni', 'pammal cheanni', '2603120013', '', '2', 'upload_files/candidate_tracker/61828476403_JESSYMARYCVh.docx', NULL, '1', '2026-03-12', 0, '55692', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-12 09:18:10', 1, '2026-03-12 09:52:39', 159, '2026-03-12 03:23:52', 0),
(29029, 'jessy mary j', '6', '6369454451', '7034292705', 'Rajjessylove.28@gmail.com', '1999-08-05', 26, '1', '1', 'raj kumar', 'store manger', 40.00, 1, 25.00, 25.00, 'pammal cheanni', 'pammal cheanni', '2603120014', '', '2', 'upload_files/candidate_tracker/13465464730_JESSYMARYCVh.docx', NULL, '1', '2026-03-12', 0, '556692', '3', '59', '2026-04-17', 222000.00, '', '3', '2026-04-18', '1', 'Communication ok no sustainability seems to have multiple personal issues and some seems to be story need to check in person in training  only internal team reference', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55692', 'C99176', '2026-04-17', 1, '2026-03-12 09:38:10', 60, '2026-04-17 11:16:06', 0, NULL, 1),
(29030, '', '0', '8438889132', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603120015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-12 10:42:07', 0, NULL, 0, NULL, 1),
(29031, 'dhanush b', '6', '9884553809', '', 'dhanushb06@gmail.com', '2003-09-10', 22, '2', '2', 'babu', 'bussiness', 750000.00, 1, 0.00, 20000.00, 'sowcarpet', 'sowcarpet', '2603120016', '1', '1', 'upload_files/candidate_tracker/60017373858_DHANUSHRESUME.docx.pdf', NULL, '1', '2026-03-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-03-12 11:38:46', 159, '2026-03-13 12:19:47', 0, NULL, 1),
(29032, 'D Joshua', '4', '8056270712', '8124972875', 'jojoshuamj136@gmail.com', '2004-10-18', 21, '2', '2', 'dillibabu', 'tailor', 25000.00, 1, 0.00, 25000.00, 'chennai', 'ayanavarm', '2603120017', '1', '1', 'upload_files/candidate_tracker/95631821709_Resume.pdf', NULL, '1', '2026-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-03-12 12:00:52', 1, '2026-03-12 12:09:12', 0, NULL, 1),
(29033, 'Vijay Nadimuthu', '4', '8939551098', '9941260830', 'Vijay.nadimuthu7@gmail.com', '1998-09-08', 27, '2', '2', 'Amirthavalli', 'Telecaller', 15000.00, 2, 25000.00, 20000.00, 'Pattukotai', 'Pattukotai', '2603120018', '1', '2', 'upload_files/candidate_tracker/36844609948_Vijay2025.pdf', NULL, '1', '2026-03-13', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit high expectation and purely IT domain and mother health issue also', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-12 12:07:03', 154, '2026-03-13 10:49:56', 0, NULL, 1),
(29034, '', '0', '6369838624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603120019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-12 12:27:24', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29035, 'S Jagadish', '20', '8608120993', '6382439568', 'jagadishsuresh21@gmail.com', '1996-08-26', 29, '2', '2', 'Sureshbabu', 'Labour', 32000.00, 1, 32000.00, 18000.00, 'Chennai', 'Chennai', '2603120020', '50', '2', 'upload_files/candidate_tracker/60624226342_2026Resume.pdf', NULL, '3', '2026-03-16', 25, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-12 04:38:31', 1, '2026-03-12 04:50:00', 0, NULL, 1),
(29036, 'DHARSHAN B', '35', '8870593711', '', 'dharshandhanuja@gmail.com', '2004-05-20', 21, '2', '2', 'Dhanuja PB', 'Chennai', 100000.00, 1, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2603130001', '1', '1', 'upload_files/candidate_tracker/67722141112_Dharshan.CV.pdf', NULL, '1', '2026-03-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2026-03-13 05:19:31', 1, '2026-03-13 10:50:30', 0, NULL, 1),
(29037, 'PHILIP RAJAN E', '31', '8680827161', '9003042385', 'philiprajan2782000@gmail.com', '2000-08-27', 25, '3', '2', 'Elangovan', 'Coolie', 10000.00, 1, 0.00, 35.00, 'St.Thomas Mount', 'St.Thomas Mount', '2603130002', '', '1', 'upload_files/candidate_tracker/58910176351_PhilipRajanResume1.pdf', NULL, '1', '2026-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', '0', '0', NULL, 1, '2026-03-13 05:35:29', 1, '2026-03-13 05:49:03', 0, NULL, 1),
(29038, 'Swetha D', '6', '9790833506', '7845703095', 'swethadevarajan03@gmail.com', '2003-06-03', 22, '2', '2', 'Devarajan E', 'Security', 15000.00, 1, 0.00, 2.45, 'Chetpet', 'Chetpet', '2603130003', '1', '1', 'upload_files/candidate_tracker/23670570838_SWETHADRESUMEcompress.pdf', NULL, '1', '2026-03-13', 0, '', '3', '59', '2026-03-16', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for our roles Need to check in her training worked in non voice due to multiple in her work she has been removed from her previous company let us check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1287', '5151', '2026-03-16', 1, '2026-03-13 06:14:14', 60, '2026-03-14 05:27:53', 0, NULL, 1),
(29039, 'Divya Dharshini M', '6', '8122819649', '8939009649', 'divyadharshinimathivanan@gmail.com', '2004-01-17', 22, '2', '2', 'Christina mary', 'Housekeeping', 15000.00, 1, 15000.00, 2.50, 'Chetpet', 'Chetpet', '2603130004', '1', '2', 'upload_files/candidate_tracker/81210039880_DIVYADHARSHINIRESUME1.docx', NULL, '1', '2026-03-13', 1, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT OK WITH COMMUNICATION AND ALSO VERY SLOW IN RESPONSE AND LOOKING NOT OK FOR OUR PROFILE AND NOT SURE ABOUT PRESSURE HANDLING', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1287', '5151', '1970-01-01', 1, '2026-03-13 06:23:06', 159, '2026-03-13 01:20:42', 0, NULL, 1),
(29040, 'Punithkumar r', '5', '8310415018', '9480798480', 'pk8181189@gmail.com', '1995-12-16', 30, '2', '2', 'Raju', 'D group employee', 40.00, 3, 22000.00, 22000.00, 'Adugodi', 'Adugodi', '2603130005', '1', '2', 'upload_files/candidate_tracker/31780200460_DOC20260131WA001420260212112644..pdf', NULL, '3', '2026-03-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1031', '0', '0', '0', NULL, 1, '2026-03-13 06:33:58', 1, '2026-03-13 06:42:01', 0, NULL, 1),
(29041, 'Anbalagan asokan', '4', '6369227517', '', 'anbalagandev01@gmail.com', '2002-06-02', 23, '2', '2', 'Asokan', 'Unemployed', 10.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2603130006', '50', '1', 'upload_files/candidate_tracker/61827622484_AnbalaganResume.pdf', NULL, '1', '2026-03-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-13 06:40:09', 1, '2026-03-13 06:44:30', 0, NULL, 1),
(29042, 'Deepika p', '6', '9344904472', '7395942848', 'V.dee0826@gmail.com', '1997-12-08', 28, '2', '1', 'Vishnu k', 'Idfc bank private limited', 30000.00, 1, 30000.00, 600000.00, 'Chetpet', 'pudupet', '2603130007', '68', '2', 'upload_files/candidate_tracker/7625157882_deepiresume2.pdf', NULL, '1', '2026-03-13', 25, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-13 08:02:22', 154, '2026-04-07 01:20:24', 0, NULL, 1),
(29043, '', '0', '9535908092', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603130008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-13 01:30:57', 0, NULL, 0, NULL, 1),
(29044, 'Raji Baskar', '4', '9361601632', '8015297227', 'rajibaskar132002@gmail.comm', '2002-04-13', 23, '2', '2', 'Baskar.K', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Renganathapuram, sengalur post,kulathur Taluk,', 'Renganathapuram, sengalur post, kulathur Taluk,', '2603130009', '1', '1', 'upload_files/candidate_tracker/78133526359_RajiBResume.pdf', NULL, '1', '2026-03-14', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-13 01:54:48', 154, '2026-03-14 10:46:32', 0, NULL, 1),
(29045, '', '0', '7305734251', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-13 06:30:03', 0, NULL, 0, NULL, 1),
(29046, 'SRIRAM S', '6', '8122282063', '', 'sriramsenthil070702@gmail.com', '2002-07-07', 23, '2', '2', 'SENTHIL P', 'Building contractor', 50000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2603140001', '50', '1', 'upload_files/candidate_tracker/93467256775_SRIRAMSENTHIL.pdf', NULL, '1', '2026-03-14', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2026-03-14 05:01:06', 104, '2026-03-14 11:53:12', 0, NULL, 1),
(29047, 'Manjunath Chinchakhandi', '6', '8073319024', '', 'manjuchinchakhandi5@gmail.com', '2002-10-03', 23, '2', '2', 'Danappa', 'Business', 20000.00, 3, 3.00, 3.50, 'Banahatti', 'Banahatti', '2603140002', '1', '2', 'upload_files/candidate_tracker/34929769923_CV202601122046146.pdf', NULL, '1', '2026-03-14', 0, '', '1', '163', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1031', '', '', '', '1970-01-01', 1, '2026-03-14 05:11:38', 162, '2026-03-14 10:57:02', 0, NULL, 1),
(29048, 'harini', '6', '9176884327', '9176012776', 'haruharini84@gmail.com', '2005-06-08', 20, '2', '2', 'Malar', 'Housewife', 25000.00, 1, 0.00, 15000.00, 'Cg colony 1st Street Market tondiapet chennai 13', 'Cg colony 1st Street Market tondiapet chennai 13', '2603140003', '50', '1', 'upload_files/candidate_tracker/42222836446_DOC20260203WA0009.1.pdf', NULL, '1', '2026-03-14', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '1970-01-01', 1, '2026-03-14 05:28:07', 104, '2026-03-14 02:41:24', 0, NULL, 1),
(29049, '583652485731', '20', '7619533678', '', 'kavyakj637@gmail.com', '2011-03-14', 0, '5', '1', 'Rakesh gm', 'Working', 2.50, 1, 0.00, 3.50, 'Bangalore', 'Bangalore Bannerghatta road', '2603140004', '', '2', 'upload_files/candidate_tracker/34935345862_KAVYAKJ.pdf', NULL, '1', '2026-03-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-14 05:28:12', 1, '2026-03-14 05:34:25', 0, NULL, 1),
(29050, 'S. Keerthika', '6', '9384221441', '', 'Keerthikaaravinthan@gmail.com', '2004-09-25', 21, '2', '1', 'Aravinthan', 'YouTuber', 35.00, 2, 0.00, 15.00, '65/1 isai avenue, new washermenpe Chennai -81', '65/1 isai avenue new washermenpe Chennai 600081', '2603140005', '50', '1', 'upload_files/candidate_tracker/8249633735_GreyGeometricProfessionalResume.pdf', NULL, '1', '2026-03-14', 0, '', '3', '59', '2026-03-16', 180000.00, '', '3', '2026-04-10', '2', 'Communication Ok fresher need to train from scratch Joining Seems to be doubtful as her friend has been rejected if she joins need to check  in training and see', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2026-03-16', 1, '2026-03-14 05:28:26', 159, '2026-03-16 10:08:36', 0, NULL, 1),
(29051, 'Suresh P', '6', '6374206414', '8838067856', 'sureshss0515@gmail.com', '2003-10-15', 22, '1', '2', 'M. Pethan', 'Agriculture', 60000.00, 3, 0.00, 17000.00, 'Dindigul', 'Velachery', '2603140006', '', '1', 'upload_files/candidate_tracker/2261020655_sureshcv1.pdf', NULL, '1', '2026-03-14', 0, 'Jobs', '3', '59', '2026-03-16', 204000.00, '', '3', '2026-03-29', '2', 'Communication Ok Fresher for our roles need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '2026-03-16', 1, '2026-03-14 05:38:50', 60, '2026-03-16 11:14:50', 0, NULL, 1),
(29052, '', '0', '9164345405', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-14 11:44:30', 0, NULL, 0, NULL, 1),
(29053, 'SHAMGANESH K', '13', '9629553178', '8056309050', 'shamganesh3232@gmail.com', '2003-07-06', 22, '2', '2', 'Kamalakannan', 'Farmer', 15000.00, 0, 23000.00, 25000.00, 'Chennai', 'Chennai', '2603140008', '1', '2', 'upload_files/candidate_tracker/77428930390_SHAMGANESHK1.pdf', NULL, '1', '2026-03-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1004', '0', '0', '0', NULL, 1, '2026-03-14 01:50:11', 1, '2026-03-14 01:56:33', 0, NULL, 1),
(29054, '', '0', '9025087866', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603140009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-14 03:54:16', 0, NULL, 0, NULL, 1),
(29055, '', '0', '8925070262', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603140010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-14 04:03:37', 0, NULL, 0, NULL, 1),
(29056, 'suhashini rajaram', '11', '9342572196', '', 'suhashini6152@gmail.com', '2004-11-27', 21, '2', '2', 'rajaram', 'business', 50000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2603140011', '1', '1', 'upload_files/candidate_tracker/41767280193_SUHASHINIHRRESUME.pdf', NULL, '1', '2026-03-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-03-14 06:45:49', 1, '2026-03-14 06:51:06', 0, NULL, 1),
(29057, 'Hanish Ragavendran', '13', '9884299622', '', 'hanishragavendran@gmail.com', '2003-02-14', 23, '3', '2', 'uma devi', 'financial adviser', 55000.00, 1, 0.00, 40000.00, 'CHENNAI', 'CHENNAI', '2603150001', '', '1', 'upload_files/candidate_tracker/84027654774_Hanishupdatedcv.pdf', NULL, '1', '2026-03-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-15 06:45:05', 1, '2026-03-15 06:48:51', 0, NULL, 1),
(29058, '', '0', '9014978181', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603150002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-15 08:26:44', 0, NULL, 0, NULL, 1),
(29059, '', '0', '8489322479', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603160001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-16 04:55:51', 0, NULL, 0, NULL, 1),
(29060, 'G Vignesh', '6', '9566098079', '8925418079', 'vikivinod65@gmail.com', '1994-04-01', 31, '2', '1', 'Gangadharan', 'carpenter', 25000.00, 2, 20000.00, 28000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2603160002', '1', '2', 'upload_files/candidate_tracker/60876615967_ResumeVignesh.pdf', NULL, '1', '2026-03-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-03-16 05:09:20', 159, '2026-03-16 12:59:17', 0, NULL, 1),
(29061, 'Dinesh', '6', '7092028528', '8526635449', 'dineshnesam@gmail.com', '2002-03-08', 24, '2', '2', 'Supramanian', 'Watchman', 34000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2603160003', '1', '1', 'upload_files/candidate_tracker/66516539261_DINESH3.pdf', NULL, '1', '2026-03-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-16 05:38:51', 159, '2026-03-16 01:00:52', 0, NULL, 1),
(29062, 'Gandi pradeepa rani', '6', '7893980586', '', 'gandipradeeparani@gmail.com', '2004-06-12', 21, '2', '2', 'Abraham', 'Govt employee', 60000.00, 3, 20000.00, 25000.00, 'Prakasam', 'Bengaluru', '2603160004', '1', '2', 'upload_files/candidate_tracker/62455451667_DocumentfrompradeepaLincoln.pdf', NULL, '1', '2026-03-16', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is ok in english and telugu good confident in sales need to discuss about salary', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2026-03-16 06:03:09', 162, '2026-03-16 04:01:36', 0, NULL, 1),
(29063, 'Mannepalli Vinod babu', '6', '9100737597', '7893980586', 'vinodmannepalli16@gmail.com', '2004-06-24', 21, '2', '2', 'Mannepalli kamalakar', 'Farmer', 25000.00, 1, 20000.00, 25000.00, 'Andhrapradesh', 'Bengaluru, Karnataka', '2603160005', '1', '2', 'upload_files/candidate_tracker/86065022858_75bd343b5b9f4e869f5aeb7fad4eb22d1.pdf', NULL, '1', '2026-03-16', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very active guy good in english and telugu he is fresher expected salary 22k we informed 20k is max ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2026-03-16 06:03:25', 162, '2026-03-16 04:00:56', 0, NULL, 1),
(29064, 'Mutakani Sirisha', '6', '7416501109', '7893980586', 'mutakanisirisha@gmail.com', '2003-07-05', 22, '2', '2', 'Venkata Subbaiah', 'Bachelors degree', 30000.00, 3, 20000.00, 25000.00, 'Bangalore', 'Bangalore', '2603160006', '1', '2', 'upload_files/candidate_tracker/1446386023_sirinonitresume.pdf', NULL, '1', '2026-03-16', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she fresher only english and telugu done 3month calling in sales need discussed about salary', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2026-03-16 06:03:32', 162, '2026-03-16 03:59:55', 0, NULL, 1),
(29065, 'asarudhin', '6', '6381469374', '', 'asarmaster17@gmail.con', '2000-03-10', 26, '2', '2', 'abdul rashith', 'driver', 30000.00, 1, 24000.00, 28000.00, 'tiruvanamalai', 'ko', '2603160007', '68', '2', 'upload_files/candidate_tracker/11523536643_AsarResume.pdf', NULL, '1', '2026-03-16', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2026-03-16 06:12:13', 154, '2026-04-07 01:11:58', 0, NULL, 1),
(29066, 'R VISHNU DEVI', '6', '9360127853', '', 'vishnu03062004@gmail.com', '2004-06-03', 21, '2', '2', '8056980956', 'Assistant Executive Engineer', 6000000.00, 0, 0.00, 25000.00, 'VIRUDHUNAGAR', 'Namakkal', '2603160008', '1', '1', 'upload_files/candidate_tracker/5153491320_DOC20260226WA0001..pdf', NULL, '1', '2026-03-16', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is fresher have done 3month Internship in sales good confident need to speak about salary', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2026-03-16 07:19:29', 162, '2026-03-16 03:59:06', 0, NULL, 1),
(29067, 'Padmaja', '6', '8015266987', '', 'padmajaravi.official@gmail.com', '2005-04-21', 20, '2', '2', '9566798326', 'Farmer', 2.00, 2, 20.00, 30.00, 'Tamil nadu', 'Bangalore', '2603160009', '1', '2', 'upload_files/candidate_tracker/75644857029_PadmajaResume.pdf', NULL, '1', '2026-03-16', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is fresher having done 3 months Internship  in sales with good communication very Energetic candidate need to discuss about salary ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55671', '55555', '1970-01-01', 1, '2026-03-16 07:20:20', 162, '2026-03-16 03:58:16', 0, NULL, 1),
(29068, 'Komatheeswari R', '6', '9176839711', '8939227159', 'komatheeswarikomathi@gmail.com', '1999-07-13', 26, '2', '1', 'Santhosh.N', 'Supervisor', 20000.00, 1, 19500.00, 25000.00, 'No 1/1, New st, Ayanavaram Chennai', 'Ayanavaram 600023', '2603160010', '68', '2', 'upload_files/candidate_tracker/61904782922_KomathiResume1317.pdf', NULL, '1', '2026-03-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-16 09:06:35', 159, '2026-03-16 03:54:09', 0, NULL, 1),
(29069, 'Vishali P', '6', '9176468950', '8939411423', 'vishalipalani1997@gmail.com', '1997-02-24', 29, '2', '2', 'Palani C', 'Auto driver', 50000.00, 3, 18700.00, 25000.00, 'No 21, kanagaraya thottam, pattalam, Ch-600012', 'No 148, New vazhaima nagar 9th st, jamalia, ch-12', '2603160011', '68', '2', 'upload_files/candidate_tracker/38485459815_DOC20260129WA0062.pdf', NULL, '1', '2026-03-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-16 09:06:40', 159, '2026-03-16 05:10:02', 0, NULL, 1),
(29070, 'Aishwarya Ks', '6', '8088425314', '8884506122', 'ksaishwarya980@gmail.com', '2003-03-11', 23, '2', '2', 'Siddaramu k', 'Working', 30000.00, 1, 16000.00, 22000.00, 'Gowdru keri ss road shiralkoppa', 'Slv pg dollers colony BTM First stage', '2603160012', '1', '1', 'upload_files/candidate_tracker/25856097050_aishuresume2new.pdf', NULL, '1', '2026-03-18', 0, '', '3', '59', '2026-03-23', 240000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in customer support for an year can give a try in our roles and check in  training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1031', '', '55786', '5151', '2026-03-23', 1, '2026-03-16 09:49:25', 60, '2026-03-21 10:00:08', 0, NULL, 1),
(29071, 'Udhaya U', '4', '7418662950', '', '304udhaya@gmail.com', '2002-03-30', 23, '2', '2', 'D/o Uthirapathi', 'Farmer', 15000.00, 1, 0.00, 14000.00, '1/104,north Street kilamangalam, orathanadu (tk)', '1/104,north Street, kilamangalam, orathanadu (tk)', '2603160013', '1', '1', 'upload_files/candidate_tracker/11232516089_udhayacv.pdf202505111736240000compressed.pdf', NULL, '1', '2026-03-17', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile completed mba finance ...and worked in meenakshi hospital as office admin in 1 and half year...with 11500 salary ....1 hr travel from home...she is ok with the profile and know about the process...will try expected 14k.....monday joining....father farmer....brother doing bE...kindly cross check about sales and target...', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-16 10:03:31', 154, '2026-03-17 01:11:36', 0, NULL, 1),
(29072, '', '0', '9952260137', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603160014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-16 10:19:30', 0, NULL, 0, NULL, 1),
(29073, 'Jaya surya', '23', '8825994859', '', 'jayasurya2719@gmail.com', '2005-12-27', 20, '2', '2', 'Subramaniyan', 'Daily wages', 30000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2603160015', '1', '1', 'upload_files/candidate_tracker/29835445244_resumenewpr21.pdf', NULL, '1', '2026-03-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'programming round not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-16 12:00:45', 159, '2026-03-17 01:15:43', 0, NULL, 1),
(29074, 'Ranaprathap G', '13', '9150932177', '7094862658', 'ranaprathap1312@gmail.com', '2003-12-13', 22, '2', '2', 'gajendran s', 'farmer', 8000.00, 0, 0.00, 250000.00, 'virudhachalam', 'chennai', '2603160016', '1', '1', 'upload_files/candidate_tracker/9319400794_RanaprathapGcv.pdf', NULL, '1', '2026-03-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2026-03-16 12:06:46', 1, '2026-03-17 04:13:03', 0, NULL, 1),
(29075, '', '0', '7010412181', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603160017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-16 12:08:27', 0, NULL, 0, NULL, 1),
(29076, 'Dhanasri', '2', '8248073338', '9894815107', 'dhanasrim77@gmail.com', '2004-03-15', 22, '2', '2', 'Murugan', 'Driver', 50000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2603160018', '1', '1', 'upload_files/candidate_tracker/74549617756_Dhanasrifullstack.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, 'H1005', '0', '0', '0', NULL, 1, '2026-03-16 12:14:59', 1, '2026-03-17 03:29:11', 0, NULL, 1),
(29077, '', '0', '8610566468', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603160019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-16 12:26:02', 0, NULL, 0, NULL, 1),
(29078, '', '0', '7339147153', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603160020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-16 12:28:23', 0, NULL, 0, NULL, 1),
(29079, '', '0', '9943615907', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603160021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-16 12:46:41', 0, NULL, 0, NULL, 1),
(29080, 'GOVINDHAHARI R', '2', '8072323652', '', 'govindhaharir@gmail.com', '2003-11-28', 22, '2', '2', 'Rajendran', 'Tasmac supervisor', 16000.00, 1, 0.00, 20000.00, 'Villupuram', 'Villupuram', '2603160022', '1', '1', 'upload_files/candidate_tracker/57261440398_GovindhahariRSoftwareDeveloper2.pdf', NULL, '1', '2026-03-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1000', '', '', '', '1970-01-01', 1, '2026-03-16 12:50:35', 159, '2026-03-19 10:22:12', 0, NULL, 1),
(29081, '', '0', '6382835660', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603160023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-16 04:28:13', 0, NULL, 0, NULL, 1),
(29082, 'Saravana Kumari', '6', '9962542475', '7604920516', 'm.saravanakumari1818@gmail.com', '2004-10-09', 21, '2', '2', 'G.Mohan Rao', 'Car driver', 25000.00, 1, 0.00, 22000.00, 'NO25 Asiriyarstreet vyasarpadi Chennai 600039', 'NO 25 Asiriyar street vyasarpadi Chennai 600039', '2603170001', '50', '2', 'upload_files/candidate_tracker/22750112453_SaravanaKumariResumeUpdated.pdf', NULL, '1', '2026-03-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-17 04:49:17', 159, '2026-03-17 01:16:35', 0, NULL, 1),
(29083, 'Karthika p', '6', '7604920516', '9176997301', 'karthikap200313@gmail.com', '2003-11-13', 22, '2', '2', 'Palani', 'Turner', 100000.00, 1, 18000.00, 22000.00, '104/17 munniyappan street perambur Chennai', '104/17 munniyappan street perambur Chennai', '2603170002', '50', '2', 'upload_files/candidate_tracker/90843597140_RESUMEKARTHIKA......1.pdf', NULL, '1', '2026-03-17', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-17 04:59:48', 159, '2026-03-17 01:16:20', 0, NULL, 1),
(29084, 'Beniyel Josva', '2', '7708309487', '', 'kingsonjozva@gmail.com', '2002-04-26', 23, '2', '2', 'Yesudasan Raja', 'Former', 20000.00, 1, 0.00, 20000.00, 'Tenkasi', 'Chennai', '2603170003', '1', '1', 'upload_files/candidate_tracker/60643548406_josvafsdresume.pdf', NULL, '1', '2026-03-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-17 05:38:32', 159, '2026-03-17 12:49:40', 0, NULL, 1),
(29085, 'Balaji B', '6', '6385532775', '9677890615', 'balajiyuvan544@gmail.com', '2001-02-11', 25, '2', '2', 'Balu A', 'Farmer', 40.00, 2, 25000.00, 28000.00, 'Ulundurpet', 'Chennai', '2603170004', '1', '2', 'upload_files/candidate_tracker/19245981468_BALAGIRESUME1.pdf', NULL, '1', '2026-03-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-03-17 06:26:33', 159, '2026-03-25 01:32:05', 0, NULL, 1),
(29086, 'Rahul Prasath M', '6', '9790973603', '9600185384', 'ragulprasath189@gmail.com', '2003-12-19', 22, '2', '2', 'Manjula M', 'Private limited', 30000.00, 0, 20000.00, 25000.00, 'Chennai', 'Guindy Chennai', '2603170005', '1', '2', 'upload_files/candidate_tracker/42278883663_RAGULRESUME2PAGES1.doc', NULL, '1', '2026-03-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-03-17 06:44:32', 159, '2026-03-17 01:24:31', 0, NULL, 1),
(29087, 'Farjeena Jasmine', '4', '9597039786', '', 'farjeenajasmine2000@gmail.com', '2000-10-20', 25, '2', '2', 'Father Name :-Mohamed Iqbal', 'In Dubai He is Working as attender', 35000.00, 1, 0.00, 30000.00, 'Papanasam', 'Chennai', '2603170006', '1', '1', 'upload_files/candidate_tracker/57601317824_FarjeenaJasmineRESUME.pdf', NULL, '1', '2026-03-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-03-17 06:45:03', 154, '2026-03-17 01:29:59', 0, NULL, 1),
(29088, '', '0', '8015032357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603170007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-17 06:55:12', 0, NULL, 0, NULL, 1),
(29089, 'Sowdeswari v', '6', '8681998278', '8667381624', 'sowdeswarivr@gmail.com', '1997-07-09', 28, '2', '2', 'Varutharaj', 'Weaver', 100000.00, 2, 0.00, 500000.00, 'Salem', 'Karapakkam, chennai', '2603170008', '1', '2', 'upload_files/candidate_tracker/64915484441_Sowdeswari.Varutharaj1.docx', NULL, '1', '2026-03-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-17 07:17:56', 159, '2026-03-21 11:28:13', 0, NULL, 1),
(29090, 'Dinakaran l', '6', '7305030032', '9942432035', 'dinakaran0055@gmail.com', '2000-07-18', 25, '2', '2', 'loganathan r', 'driving', 38000.00, 1, 195924.00, 216000.00, 'salem', 'chennai', '2603170009', '1', '2', 'upload_files/candidate_tracker/84856936103_dina055.pdf', NULL, '1', '2026-03-20', 0, '', '3', '59', '2026-03-23', 216000.00, '', '3', '2026-04-08', '2', 'Communication Ok have exp in sales calling same domain worked only for few months need to check in training and see', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1070', '5151', '2026-03-23', 1, '2026-03-17 07:39:50', 60, '2026-03-23 09:56:11', 0, NULL, 1),
(29091, '', '0', '8521608484', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603170010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-17 08:17:53', 0, NULL, 0, NULL, 1),
(29092, 'Venkatesan', '6', '7305271070', '8807807938', 'venkatleading1@gmail.com', '1993-05-12', 32, '2', '2', 'Usha', 'House wife', 30000.00, 2, 25000.00, 27000.00, 'Chennai', 'Chennai', '2603170011', '50', '2', 'upload_files/candidate_tracker/39200999368_venkatesan1.pdf', NULL, '1', '2026-03-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-17 08:23:51', 154, '2026-03-19 05:21:04', 0, NULL, 1),
(29093, 'Swetha Arumugam', '6', '9597367191', '', 'swayarumugam58@gmail.com', '2000-11-05', 25, '2', '2', 'Arumugam', 'Driver', 65000.00, 1, 21860.00, 27000.00, 'Coimbatore', 'Coimbatore', '2603170012', '1', '2', 'upload_files/candidate_tracker/95434479910_SWETHAARUMUGAMCVMAR2026.pdf', NULL, '1', '2026-03-20', 20, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok, communication average, 1.3 years exp for Customer Service Executive please check sustainability and confirm the joining date.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55732', '5151', '1970-01-01', 1, '2026-03-17 09:26:24', 154, '2026-03-21 09:20:59', 0, NULL, 1),
(29094, 'Sai venkatesh A', '6', '7200106068', '', 'saivenkatesh2907@gmail.com', '2003-07-29', 22, '2', '2', 'bhairavamoorthy', 'costumer', 50000.00, 1, 0.00, 25000.00, 'vadapalani', 'vadapalani', '2603170013', '1', '1', 'upload_files/candidate_tracker/67835507735_myresume.pdf', NULL, '2', '2026-03-19', 0, '', '3', '59', '2026-03-23', 180000.00, '', '1', '1970-01-01', '2', 'Intern 8-9K for 2 months then 15-16K  - Mutual funds he is open to learn can give a try', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '2026-03-23', 1, '2026-03-17 09:36:24', 60, '2026-03-23 09:54:18', 0, NULL, 1),
(29095, 'Shabnam Hasiba Abdul Salam', '6', '9884038905', '', 'shabnamhasiba@gmail.com', '2003-12-03', 22, '2', '2', 'Abdul Salam', 'Business', 50.00, 0, 0.00, 20.00, 'Egmore', 'Egmore', '2603170014', '1', '1', 'upload_files/candidate_tracker/95896461034_ResumeShabnamHasiba.pdf', NULL, '1', '2026-03-17', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1018', '', '55645', '5151', '1970-01-01', 1, '2026-03-17 10:22:34', 159, '2026-03-17 05:18:46', 0, NULL, 1),
(29096, 'Keerthana. R', '11', '9344284244', '', 'Keerthanrajalingam@gmail.com', '2004-03-17', 22, '2', '2', 'S.Rajalingam', 'Labour coolie', 30000.00, 2, 15000.00, 25000.00, 'Purasivakkam', 'Purasaivakkam', '2603170015', '1', '2', 'upload_files/candidate_tracker/15146240681_KEERTHANA.R2025202602091858000000compressed1.pdf', NULL, '1', '2026-03-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-03-17 11:12:45', 1, '2026-03-17 11:15:53', 0, NULL, 1),
(29097, 'Bhuvana vengadesan', '4', '9655087949', '9360020338', 'bhuvanavengadesan64@gmail.com', '2002-09-09', 23, '2', '2', 'Vengadesan', 'Farmer', 25000.00, 2, 12000.00, 15000.00, 'Thanjavur', 'Thiruvaiyaru', '2603170016', '1', '2', 'upload_files/candidate_tracker/63977180231_CV2026031519222625.pdf', NULL, '1', '2026-03-19', 0, '', '3', '59', '2026-03-23', 168000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher for our insurance sales need to check in training and see let us try', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2026-03-23', 1, '2026-03-17 11:16:10', 60, '2026-03-23 09:59:14', 0, NULL, 1),
(29098, 'VIJAYALAKSHMI V', '4', '9361463489', '9843716218', 'vijisri2806@gmail.com', '2002-06-28', 23, '2', '2', 'Vengadachalam', 'Farmer', 20000.00, 1, 0.00, 15000.00, '590, ayyempettai Road,Kandiyur', '590, Ayyempettai Road, Kandiyur', '2603170017', '1', '1', 'upload_files/candidate_tracker/3616198823_CV2025121716333974.pdf', NULL, '1', '2026-03-18', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-17 12:02:38', 154, '2026-03-18 10:53:49', 0, NULL, 1),
(29099, 'YUGESH WARAN S', '2', '6381953878', '', 'yugeshwaran205@gmail.com', '2005-02-04', 21, '2', '2', 'Vijiya S', 'Tailor', 12000.00, 1, 0.00, 250000.00, 'Kadambattur, tiruvallur dt.', 'Kadambattur', '2603170018', '1', '1', 'upload_files/candidate_tracker/2962205369_YUGESHWARANResume.pdf', NULL, '1', '2026-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-17 12:20:54', 159, '2026-03-18 03:39:46', 0, NULL, 1),
(29100, '', '0', '6379997154', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603170019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-17 12:37:13', 0, NULL, 0, NULL, 1),
(29101, 'Sakthivel R', '31', '8608903527', '', 'sakthivelramaraj108@gmail.com', '2004-04-12', 21, '2', '2', 'Ramaraj k', 'Mason', 96000.00, 1, 0.00, 200000.00, 'Sankarankovil, Tenkasi', 'Marimalainagar, Chengalpattu', '2603170020', '1', '1', 'upload_files/candidate_tracker/95426193247_SakthivelRJavaFullStack.pdf', NULL, '1', '2026-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-17 01:00:20', 159, '2026-03-18 01:18:29', 0, NULL, 1),
(29102, 'karthikeyan', '23', '8939150513', '', 'karthimanoj76@gmail.com', '2004-11-16', 21, '2', '2', 'sankar', 'labour', 25000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2603170021', '1', '1', 'upload_files/candidate_tracker/65667958220_KarthikeyanResume.pdf', NULL, '1', '2026-03-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-17 01:04:04', 159, '2026-03-18 12:57:48', 0, NULL, 1),
(29103, 'SANDHOSHKUMAR B', '13', '8870308874', '', 'sandhoshkumar604@gmail.com', '2003-05-02', 22, '2', '2', 'balakrishnan', 'mechanic', 200000.00, 1, 0.00, 300000.00, 'Pollachi', 'chennai', '2603170022', '1', '1', 'upload_files/candidate_tracker/45282970171_resume.pdf', NULL, '1', '2026-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-17 02:06:00', 1, '2026-03-18 06:59:37', 0, NULL, 1),
(29104, 'raghul', '2', '7603870522', '', 'sairagulragul6@gmail.com', '2004-09-16', 21, '2', '2', 'mohana', 'driver', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2603170023', '1', '1', 'upload_files/candidate_tracker/30637488244_FINALRSUME.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', '0', '0', NULL, 1, '2026-03-17 06:12:22', 1, '2026-03-18 02:00:44', 0, NULL, 1),
(29105, 'jeganpriyan tamilselvan', '2', '6382915699', '7010931617', 'jeganpriyan8172@gmail.com', '2004-07-01', 21, '3', '2', 'tamilselvan', 'agriculturing', 30000.00, 1, 0.00, 300000.00, 'mayiladuthutai', 'chennai', '2603180001', '', '1', 'upload_files/candidate_tracker/99009466147_Jeganpriyanresumenew.pdf', NULL, '1', '2026-03-18', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2026-03-19', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-18 04:23:07', 159, '2026-03-18 01:26:08', 0, NULL, 1),
(29106, '', '0', '7010931616', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603180002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-18 04:28:20', 0, NULL, 0, NULL, 1),
(29107, 'Alen Infant aa', '2', '7010931617', '9489362661', 'aleninfant@gmail.com', '2003-10-09', 22, '3', '2', 'anthony samy a', 'farmer', 25000.00, 1, 0.00, 300000.00, 'panikankuppam', 'chen', '2603180003', '', '1', 'upload_files/candidate_tracker/54103108859_ResumeAlen.pdf', NULL, '1', '2026-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared ( FITA )', '', '', '', '', '', '1970-01-01', 1, '2026-03-18 04:28:42', 159, '2026-03-18 01:19:49', 0, NULL, 1),
(29108, 'Ajeshkumar Javahari', '6', '7591911566', '', 'ajeshkumarjavvaharii@gmail.com', '1984-05-01', 41, '3', '2', 'T C Javahari', 'Retired', 25000.00, 0, 35000.00, 40000.00, 'Ernakulam', 'Bengaluru', '2603180004', '', '2', 'upload_files/candidate_tracker/85361811953_AjeshResumenew1.pdf', NULL, '1', '2026-03-18', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-18 04:52:38', 1, '2026-03-18 05:05:42', 0, NULL, 1),
(29109, 'Sundar', '13', '7639029806', '', 'sundarjoseph69@gmail.com', '2002-04-01', 23, '3', '2', 'Murugan', 'Driver', 60000.00, 2, 0.00, 20000.00, 'Tenkasi', 'Chennai', '2603180005', '', '1', 'upload_files/candidate_tracker/81300778786_SUNDARMResume.pdf', NULL, '1', '2026-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-18 05:04:43', 159, '2026-03-18 04:47:48', 0, NULL, 1),
(29110, 'Selvakumar Ramesh', '13', '8072118951', '9043159475', 'rselvakumar192001@gmail.com', '2001-02-19', 25, '3', '2', 'Manjula', 'Farmer', 6000.00, 1, 0.00, 25000.00, '6/147 thotta mudiyum patti Namakkal dt - 637021', 'new no 54 vanniyampathi street manthaveli 600028', '2603180006', '', '1', 'upload_files/candidate_tracker/90802474410_DOC20260317WA0003.pdf', NULL, '1', '2026-03-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-18 05:05:13', 159, '2026-03-18 11:24:39', 0, NULL, 1),
(29111, 'Rithika', '6', '7358083913', '', 'rithika042002@gmail.com', '2002-11-04', 23, '2', '2', 'Private limited', 'Private limited', 25000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2603180007', '1', '2', 'upload_files/candidate_tracker/90888673843_resume1.pdf', NULL, '1', '2026-03-18', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-03-18 05:12:24', 154, '2026-03-18 02:52:41', 0, NULL, 1),
(29112, 'G Jayashree', '6', '7358453140', '9025175335', 'jayashreesweet25@gmail.com', '2001-10-25', 24, '2', '2', 'Gnanavel', 'Private worker', 35000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2603180008', '1', '2', 'upload_files/candidate_tracker/56895834620_BlackandWhiteMinimalistAccountantResume.pdf', NULL, '1', '2026-03-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-03-18 05:12:48', 154, '2026-03-18 02:52:12', 0, NULL, 1),
(29113, 'Mahesh Jeyaraman', '13', '8754601515', '', 'jr.mahesh04@gmail.com', '2004-03-04', 22, '2', '2', 'Jayaraman P', 'Grocery Shop', 18000.00, 1, 0.00, 20000.00, 'Ariyalur', 'Mambalam, Chennai', '2603180009', '1', '1', 'upload_files/candidate_tracker/30162613159_MaheshJFullstack.pdf', NULL, '1', '2026-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-18 05:14:38', 159, '2026-03-18 01:20:26', 0, NULL, 1),
(29114, 'Deepak', '13', '9025880251', '', 'rb.deepak06@gmail.com', '2004-05-26', 21, '2', '2', 'Rajesh', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Villupuram', 'Mambalam', '2603180010', '1', '1', 'upload_files/candidate_tracker/18805479445_JAVA1.pdf', NULL, '1', '2026-03-18', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2026-03-19', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-18 05:14:51', 159, '2026-03-18 01:26:32', 0, NULL, 1),
(29115, 'Sureshkumar B', '23', '8838893756', '', 'sureshsaravanan2003@gmail.com', '2003-06-24', 22, '3', '2', 'Bala Saravanan', 'Business', 300000.00, 1, 0.00, 300000.00, 'Polur', 'Chennai', '2603180011', '', '1', 'upload_files/candidate_tracker/76032704473_SureshResume...pdf', NULL, '1', '2026-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared ( FITA )', '', '', '', '', '', '1970-01-01', 1, '2026-03-18 05:15:50', 159, '2026-03-18 01:21:04', 0, NULL, 1),
(29116, 'Pm Saravanan', '13', '7604953373', '', 'pmsaravanan2727@gmail.com', '2004-01-27', 22, '3', '2', 'Mohan babu', 'Painter', 30000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2603180012', '', '1', 'upload_files/candidate_tracker/62018602788_Saravananpm3.pdf', NULL, '1', '2026-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-18 05:30:32', 159, '2026-03-18 01:25:18', 0, NULL, 1),
(29117, 'Dev Ananth A', '13', '9361546194', '9360041568', 'devanantharul03@gmail.com', '2001-03-26', 24, '3', '2', 'Arul K', 'Farmer', 10000.00, 1, 0.00, 25000.00, 'Salem', 'Chennai', '2603180013', '', '1', 'upload_files/candidate_tracker/9179697621_DevAnanthACV2.pdf', NULL, '1', '2026-03-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-18 05:31:27', 159, '2026-03-18 11:24:08', 0, NULL, 1),
(29118, 'Saravanan s', '13', '9360669721', '9841472448', 'saravanansan.2004@gmail.com', '2004-10-31', 21, '3', '2', 'Shankar', 'Shop owner', 20000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2603180014', '', '1', 'upload_files/candidate_tracker/11144112489_AbeyResumeTemplate2Copy4.pdf', NULL, '1', '2026-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', 'aptitude not cleared', '', '', '', '', '1970-01-01', 1, '2026-03-18 05:32:43', 159, '2026-03-18 04:46:57', 0, NULL, 1),
(29119, 'Sathish K', '13', '8667482289', '', 'sathishkumar060204@gmail.com', '2004-02-06', 22, '3', '2', 'S Kumar', 'Farmer', 10000.00, 1, 0.00, 25000.00, 'Salem', 'Pallikaranai, Chennai', '2603180015', '', '1', 'upload_files/candidate_tracker/27101204102_SathishKumar.pdf', NULL, '1', '2026-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-18 05:33:21', 159, '2026-03-18 04:49:22', 0, NULL, 1),
(29120, 'Vadivulakshmi G', '13', '7305628896', '9629303574', 'lakshmigovindan18@gmail.com', '1996-07-18', 29, '3', '2', 'Allirani', 'Housewife', 25000.00, 2, 0.00, 30000.00, 'Cuddalore', 'Chennai', '2603180016', '', '1', 'upload_files/candidate_tracker/61084924012_VadivulakshmiGcv.pdf', NULL, '1', '2026-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-18 05:36:15', 159, '2026-03-18 04:47:19', 0, NULL, 1),
(29121, 'Dharshini E', '13', '9585432450', '8220738732', 'dharshinieaswaran52@gmail.com', '2004-01-25', 22, '3', '2', 'Eswaran', 'Coolie', 15000.00, 1, 0.00, 3.50, 'Erode', 'Erode', '2603180017', '', '1', 'upload_files/candidate_tracker/95388259285_DOC20260318WA0000..pdf', NULL, '1', '2026-03-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-18 05:37:36', 159, '2026-03-18 11:22:42', 0, NULL, 1),
(29122, 'Bhuvana Sri R', '13', '8220738732', '9585432450', 'bhuvanasriradha@gmail.com', '2003-12-23', 22, '3', '2', 'ravi chandran r', 'nil', 15000.00, 1, 0.00, 3.50, 'ERODE', 'ERODE', '2603180018', '', '1', 'upload_files/candidate_tracker/45711482602_BHUVANASRIRResume.pdf', NULL, '1', '2026-03-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-18 05:38:30', 159, '2026-03-18 11:22:54', 0, NULL, 1),
(29123, 'Karthick M', '13', '6382461912', '8825501503', 'karthick25wim@gmail.com', '2005-06-25', 20, '3', '2', 'Munusamy', 'Farmer', 15000.00, 3, 0.00, 30000.00, 'Thiruvallur', 'Thiruvallur', '2603180019', '', '1', 'upload_files/candidate_tracker/64613300341_Karthickcvkr.pdf', NULL, '1', '2026-03-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-18 06:03:47', 159, '2026-03-18 01:23:17', 0, NULL, 1),
(29124, 'Baskar charles', '6', '7299202643', '', 'mcthomasbaskar@gmail.com', '1995-10-25', 30, '2', '1', 'Rani', 'House wife', 5.00, 2, 30000.00, 40000.00, 'Chennai', 'Chennai', '2603180020', '1', '2', 'upload_files/candidate_tracker/33512108202_CV2026011912141464.pdf', NULL, '1', '2026-03-18', 3, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-03-18 06:04:03', 159, '2026-03-18 01:13:41', 0, NULL, 1),
(29125, 'Gowtham m', '6', '7975442737', '8660690917', 'gowthamm2737@gmail.com', '2001-01-02', 25, '2', '2', 'Muniraju y', 'Degree', 50.00, 1, 0.00, 22.00, 'Btm layout 1st stage', 'No #47 Btm layout tavarekereMadiwala Bangalore', '2603180021', '1', '1', 'upload_files/candidate_tracker/10909679773_GOWTHAMMCV.pdf', NULL, '1', '2026-03-18', 0, '', '3', '59', '2026-03-23', 228000.00, '', '1', '1970-01-01', '1', 'Communication ok have exp in calling policy bazarr fro fe w months can give a try and check', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '55786', '55555', '2026-03-23', 1, '2026-03-18 06:33:12', 60, '2026-03-23 10:03:00', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29126, 'Thamizhmozhi', '6', '8825963874', '', 'thamizhmozhi2062@gmail.com', '2002-12-10', 23, '2', '2', 'Chandrasekaran ,selvanayaki', 'Farmer', 10000.00, 1, 16500.00, 20000.00, 'Chidambaram', 'Vadapalani', '2603180022', '50', '2', 'upload_files/candidate_tracker/29249149346_ThamizhmozhiC.pdf', NULL, '1', '2026-03-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-18 06:38:57', 154, '2026-03-18 01:32:52', 0, NULL, 1),
(29127, 'Durina savari muthu', '4', '8754658449', '', 'durina2303@gmail.com', '2005-03-23', 20, '2', '2', 'Savari muthu', 'Carpenter', 15000.00, 2, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2603180023', '1', '1', 'upload_files/candidate_tracker/62430477061_10002336741.pdf', NULL, '1', '2026-03-19', 0, '', '3', '59', '2026-03-23', 168000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher for our roles need to check in training and confirm', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '2026-03-23', 1, '2026-03-18 10:44:49', 60, '2026-03-23 09:51:23', 0, NULL, 1),
(29128, '', '0', '7358748264', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603180024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-18 11:39:26', 0, NULL, 0, NULL, 1),
(29129, 'Karthik vasudevan', '6', '6382869937', '', 'kartheeee777@gmail.com', '2004-04-15', 21, '2', '2', 'Vasudevan', 'Catering', 12000.00, 0, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2603180025', '1', '1', 'upload_files/candidate_tracker/47146897899_KARTHIKSVRESUME.1.pdf', NULL, '1', '2026-03-19', 0, '', '3', '59', '2026-03-23', 168000.00, '', '1', '1970-01-01', '2', 'Communication Ok fersher for our insurance sales need to check in training only already worked in retail sales', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CI144', '5151', '2026-03-23', 1, '2026-03-18 11:47:37', 60, '2026-03-23 09:52:47', 0, NULL, 1),
(29130, 'Tamil Selvan .p', '6', '9843829083', '7904127926', 'stamizh062@gmail.com', '2001-06-30', 24, '2', '1', 'Punniya kotti .M', 'Farmer', 50000.00, 2, 0.00, 25000.00, 'Thiruvanmalai cheyyar', 'Medavakkam', '2603180026', '1', '1', 'upload_files/candidate_tracker/63005968027_TAMILSELVANRESUME2026.pdf', NULL, '3', '2026-03-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-18 02:27:47', 159, '2026-03-20 01:04:56', 0, NULL, 1),
(29131, 'Vidya P', '13', '6379912212', '9444510727', 'vidhya.p0028@gmail.com', '2000-07-28', 25, '3', '2', 'Peramaiyan', 'Farmer', 20000.00, 1, 0.00, 20000.00, '32, south street, Thanjavur', 'Chennai', '2603190001', '', '1', 'upload_files/candidate_tracker/96001442260_VIDYA.P.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:04:33', 1, '2026-03-19 05:07:11', 0, NULL, 1),
(29132, 'Sasireka A', '31', '7200596360', '', 'sasi1639a@gmail.com', '2003-04-20', 22, '3', '2', 'Arumugam K', 'Farmer', 30000.00, 1, 0.00, 300000.00, 'Tirupur', 'Chennai', '2603190002', '', '1', 'upload_files/candidate_tracker/5188172933_SASIREKAAResume.pdf', NULL, '1', '2026-03-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:04:46', 1, '2026-03-19 05:15:10', 0, NULL, 1),
(29133, 'Ponvel M', '31', '8056063310', '9841163927', 'ponvelm2@gmail.com', '2002-07-17', 23, '3', '2', 'Murugan', 'construction', 50000.00, 1, 0.00, 300000.00, 'pallikarana, chennai', 'chennai', '2603190003', '', '1', 'upload_files/candidate_tracker/88821685047_PONVELUpdatedresume.pdf', NULL, '1', '2026-03-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:04:47', 1, '2026-03-19 05:14:38', 0, NULL, 1),
(29134, 'Keerthiga P', '31', '9629579714', '', 'keerthigapalanisamy2002@gmail.com', '2002-10-14', 23, '3', '2', 'Palanisamy P', 'Government Job', 30000.00, 1, 0.00, 300000.00, 'Namakkal', 'Chennai', '2603190004', '', '1', 'upload_files/candidate_tracker/6950717693_KEERTHIGAPResume.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:04:47', 1, '2026-03-19 05:15:14', 0, NULL, 1),
(29135, 'Silambarasan A', '31', '8778283823', '', 'silambu9391a@gmail.com', '2006-06-20', 19, '3', '2', 'Annamalai', 'Farmer', 16000.00, 2, 0.00, 300000.00, 'Thiruvannamalai', 'Thiruvannamalai', '2603190005', '', '1', 'upload_files/candidate_tracker/50805961373_silambarasanresume2.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:05:21', 1, '2026-03-19 05:18:03', 0, NULL, 1),
(29136, 'Divya A', '31', '8925817782', '', 'divyadivya89353@gmail.com', '2004-12-08', 21, '3', '2', 'Azhagudurai', 'Farmer', 18000.00, 2, 0.00, 300000.00, 'Perambalur', 'Chennai', '2603190006', '', '1', 'upload_files/candidate_tracker/29030066084_divyaa123.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:05:24', 1, '2026-03-19 05:19:10', 0, NULL, 1),
(29137, 'Ashwin vijay', '31', '9677831120', '9500898213', 'ashwinvijay.dev@gmail.com', '1999-04-16', 26, '3', '2', 'ARUMUGAM', 'daily wage', 25000.00, 1, 0.00, 250000.00, 'ajjanur,coimbatore', 'velacherry,chennai', '2603190007', '', '1', 'upload_files/candidate_tracker/9400164866_Ashwinvijayresume260130115031.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:05:30', 1, '2026-03-19 05:38:58', 0, NULL, 1),
(29138, 'Priya K', '31', '9176795304', '9962404752', 'saraswathipriya159@gmail.com', '2004-06-25', 21, '3', '2', 'Kumaresan', 'Business man', 25000.00, 1, 0.00, 25000.00, 'Thiruninravur', 'Thiruninravur', '2603190008', '', '1', 'upload_files/candidate_tracker/73590699699_priyareact31.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:05:49', 1, '2026-03-19 05:12:37', 0, NULL, 1),
(29139, 'Harini M', '31', '9342930124', '', 'iamharini046@gmail.com', '2003-12-14', 22, '3', '2', 'Magesh', 'Farmer', 25000.00, 2, 0.00, 2.50, 'Pudukkottai', 'Chennai', '2603190009', '', '1', 'upload_files/candidate_tracker/80759947569_HariniResume.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:06:01', 1, '2026-03-19 05:12:42', 0, NULL, 1),
(29140, 'NEELAKANDAN R', '13', '7339302831', '', 'neelakandan1862@gmail.com', '2000-06-18', 25, '3', '2', 'Ravichandran A', 'Farmers', 200000.00, 1, 0.00, 200000.00, 'Pudukkottai', 'Chennai', '2603190010', '', '1', 'upload_files/candidate_tracker/28543656391_NeelakandanJavaFullStackDeveloper.pdf', NULL, '1', '2026-03-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-19 05:06:29', 159, '2026-03-19 10:57:54', 0, NULL, 1),
(29141, 'PAVITHRA V', '6', '9363733928', '6374681077', 'pavithrav762@gmail.com', '2003-07-07', 22, '2', '2', 'Vijay kumar', 'Sales man', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2603190011', '1', '1', 'upload_files/candidate_tracker/96646436900_Pavithra.pdf', NULL, '1', '2026-03-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-19 05:07:57', 159, '2026-03-19 03:19:29', 0, NULL, 1),
(29142, 'Arul A', '31', '9786423763', '', 'vjarulaj@gmail.com', '2004-12-23', 21, '3', '2', 'Arumugam', 'Daily wage worker', 17000.00, 1, 0.00, 300000.00, 'salem', 'St.thomas mount', '2603190012', '', '1', 'upload_files/candidate_tracker/43524004177_resume1.docx', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:08:49', 1, '2026-03-19 05:20:20', 0, NULL, 1),
(29143, 'Jayashree.s', '13', '7418508546', '6383342239', 'jayashree020821@gmail.com', '2002-08-21', 23, '3', '2', 'Ramachandran (Brother)', 'Developer', 35000.00, 1, 0.00, 20000.00, 'No.19, 2nd cross street , Perungudi,chennai.', 'No.19, 2nd cross street , Perungudi,chennai', '2603190013', '', '1', 'upload_files/candidate_tracker/41811947154_JAYASHREEResumeFullStack1.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:09:26', 1, '2026-03-19 05:14:01', 0, NULL, 1),
(29144, 'Jagadeesan P', '5', '9566253424', '', 'jagadeeshprabhakar93@gmail.com', '1995-07-06', 30, '2', '1', 'Vimala P', 'Tailor', 30000.00, 0, 25000.00, 30000.00, 'Vepampet Thiruvallur', 'Vepampet Thiruvallur', '2603190014', '1', '2', 'upload_files/candidate_tracker/40491147002_JagadeesanPResume1.PDF', NULL, '1', '2026-03-19', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55650', '55560', '1970-01-01', 1, '2026-03-19 05:19:39', 154, '2026-03-19 12:33:02', 0, NULL, 1),
(29145, 'Ajay Raja Rajasekaran', '13', '9488045421', '9791823719', 'ajayrajasrimathy@gmail.com', '2003-12-07', 22, '3', '2', 'Rajasekran B', 'Farmer', 250000.00, 1, 0.00, 22000.00, 'palani', 'chennai', '2603190015', '', '1', 'upload_files/candidate_tracker/19038608694_SoftwareDeveloper1.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:29:25', 1, '2026-03-19 05:34:35', 0, NULL, 1),
(29146, 'Abishek Simon', '13', '7904182558', '', 'abishekSimon4903@gmail.com', '2003-09-04', 22, '3', '2', 'Simon', 'late', 22000.00, 2, 0.00, 20000.00, 'Medavakkam', 'Medavakkam', '2603190016', '', '1', 'upload_files/candidate_tracker/71927555319_AbishekSimon1.pdf', NULL, '1', '2026-03-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:29:43', 1, '2026-03-19 05:41:29', 0, NULL, 1),
(29147, 'Prasanth', '13', '9003875510', '9994838750', 'prasanth362k@gmail.com', '2000-06-03', 25, '3', '2', 'Ravichandran', 'Welder', 200000.00, 3, 0.00, 300000.00, 'Ni.40, Vinayagar street,No 40, T.pudur', 'Thirvallur', '2603190017', '', '1', 'upload_files/candidate_tracker/48703714562_PrasanthResume.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 05:50:31', 1, '2026-03-19 06:10:23', 0, NULL, 1),
(29148, 'NAGA ARJUN  S', '13', '9080257854', '7305396845', 'arjun908025@gmail.com', '2002-06-14', 23, '3', '2', 'Selvam', 'Former', 15000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'Velachery', '2603190018', '', '1', 'upload_files/candidate_tracker/55963503428_nagaarjun.resume.pdf', NULL, '1', '2026-03-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-19 06:31:02', 159, '2026-03-19 12:32:25', 0, NULL, 1),
(29149, 'Kiranraj Selvaraj', '31', '6379873085', '', 'kiranraj23122004@gmail.com', '2004-12-23', 21, '3', '2', 'Selvaraj', 'CRPF', 45000.00, 1, 0.00, 20000.00, 'Sigaralapalli,bargur, Krishnagiri -6351004', 'Velachery,Vijaya nagar,3rd cross street, chennai', '2603190019', '', '1', 'upload_files/candidate_tracker/33976962625_KIRANRAJSRFlowCVResume20260319.pdf', NULL, '1', '2026-03-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 06:31:23', 1, '2026-03-19 06:48:17', 0, NULL, 1),
(29150, 'MANOJ K', '13', '7305396845', '7395841685', 'Manojk235247@gmail.com', '2004-05-23', 21, '3', '2', 'Kumarasamy M', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Velachery', '2603190020', '', '1', 'upload_files/candidate_tracker/44126972203_MANOJK.pdf', NULL, '1', '2026-03-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-19 06:31:42', 159, '2026-03-19 12:31:12', 0, NULL, 1),
(29151, 'Kirubagaran k', '31', '7395841685', '7305396845', 'kirubagarank2454@gmail.com', '2004-05-24', 21, '3', '2', 'kathiresan', 'Driver', 15000.00, 0, 0.00, 20000.00, 'Cuddalore', 'Velachery', '2603190021', '', '1', 'upload_files/candidate_tracker/1039719097_KIRUBA2.pdf', NULL, '1', '2026-03-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-19 06:32:57', 1, '2026-03-19 06:47:20', 0, NULL, 1),
(29152, '', '0', '9080257855', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603190022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-19 06:49:22', 0, NULL, 0, NULL, 1),
(29153, '', '0', '9790392080', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603190023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-19 08:03:05', 0, NULL, 0, NULL, 1),
(29154, 'Kishore Kumar', '6', '7845762936', '9342166476', 'kishorekishore7939@gmail.com', '2005-06-25', 20, '2', '2', 'Pramila', 'Customer service', 20000.00, 1, 0.00, 16000.00, 'Chennai', 'New Washermanpet', '2603190024', '1', '1', 'upload_files/candidate_tracker/58125542551_KISHOREKUMARresume.docx', NULL, '1', '2026-03-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-19 09:06:24', 154, '2026-03-19 05:21:14', 0, NULL, 1),
(29155, 'Rajamuthukumari R', '11', '7550237622', '8807103532', 'aishursweety1999@gmail.com', '1999-09-03', 26, '2', '1', 'Kalasamy', 'Sales IT manager', 45000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2603190025', '1', '1', 'upload_files/candidate_tracker/84038073829_RajamuthukumariResumeHRUpdatedJune2025compressed1compressed.pdf', NULL, '1', '2026-03-19', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-03-19 09:25:37', 154, '2026-03-19 07:45:37', 0, NULL, 1),
(29156, 'Rajesh Babu', '6', '8428056716', '9789543614', 'rajeshm01110@gmail.com', '2004-02-11', 22, '2', '2', 'Mogane', 'Supervisor', 30.00, 1, 20.00, 20.00, 'Pondicherry', 'Chennai nerkundram', '2603190026', '50', '2', 'upload_files/candidate_tracker/6033036835_Rajesh.pdf4.pdf', NULL, '1', '2026-03-23', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good.also his voice is low .sustainable is doubt', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2026-03-19 12:25:08', 159, '2026-03-23 03:53:18', 0, NULL, 1),
(29157, 'Gowri.V', '4', '8148742273', '', 'gowrigowri2711@gmail.com', '1997-04-30', 28, '2', '2', 'Vijayakumar', 'Former', 20000.00, 2, 0.00, 15000.00, 'Vallam Thanjavur', 'Vallam Thanjavur', '2603190027', '1', '1', 'upload_files/candidate_tracker/43740357474_GOWRIVResume2.pdf', NULL, '1', '2026-03-20', 0, '', '3', '59', '2026-03-23', 168000.00, '', '1', '1970-01-01', '2', 'communication Ok have a gap due to marriage and now divorced have a kid at the age of 7 open for insurance sales open to learn but sustainability not sure let us try', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '2026-03-23', 1, '2026-03-19 01:16:56', 60, '2026-03-23 09:58:04', 0, NULL, 1),
(29158, 'Bavatharani G', '11', '6379167728', '', 'bavatharanigu@gmail.com', '2004-07-01', 21, '2', '2', 'Gajendran', 'Business', 60000.00, 1, 17000.00, 23000.00, 'Chennai', 'Chennai', '2603190028', '1', '2', 'upload_files/candidate_tracker/79380406505_BAVATHARANIResume.pdf', NULL, '1', '2026-03-20', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-03-19 01:35:54', 159, '2026-03-20 03:33:01', 0, NULL, 1),
(29159, 'S Janani', '4', '8778293256', '8667452526', 'jananiselvam008@gmail.com', '1996-05-08', 29, '2', '1', 'Richard', 'Technical engineer', 15000.00, 1, 22000.00, 20000.00, 'No:8, Anthoniyar nagar ext, Mathakottai, Thanjavur', 'No:8, Anthoniyar nagar ext, Mathakottai, Thanjavur', '2603190029', '1', '2', 'upload_files/candidate_tracker/75185634648_JananiResume2025.pdf', NULL, '1', '2026-03-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-19 08:30:29', 154, '2026-03-20 01:10:09', 0, NULL, 1),
(29160, '', '0', '8667452526', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603200001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-20 03:31:22', 0, NULL, 0, NULL, 1),
(29161, 'Saravanakumar', '4', '7603818042', '9176014665', 'saravanakumarsk200212@gmail.com', '2002-01-11', 24, '2', '2', 'Lakshmi', 'House wife', 7000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2603200002', '50', '1', 'upload_files/candidate_tracker/52756545352_Voiceprocessresume.pdf', NULL, '1', '2026-03-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-20 04:44:51', 1, '2026-03-20 04:49:21', 0, NULL, 1),
(29162, 'Vijayakumar', '4', '8220988704', '', 'vijayakumarvijay843@gmail.com', '2011-03-20', 0, '2', '2', 'Ragavan', 'Billing', 95000.00, 1, 0.00, 20000.00, 'Ganapathy nagar thanajavur memablam', 'Ganapathy nagar Thanjavur memabalam', '2603200003', '1', '1', 'upload_files/candidate_tracker/30068684305_VijayakumarRRESUME.pdf', NULL, '1', '2026-03-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-20 05:18:47', 154, '2026-03-20 01:05:05', 0, NULL, 1),
(29163, 'Bingi Emmanuel Raju', '6', '9652326594', '9885284034', 'emmanuel11243@gmail.com', '1999-01-07', 27, '2', '2', 'B.Vara Prasad', 'Btm layout', 30000.00, 0, 0.00, 20000.00, 'Anatapur district.Gooty.', 'Btm layout', '2603200004', '1', '1', 'upload_files/candidate_tracker/81101346755_EMMANUELRAJUResume.pdf', NULL, '1', '2026-03-20', 0, '', '1', '173', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '', '', '1970-01-01', 1, '2026-03-20 06:03:02', 162, '2026-03-20 11:51:43', 0, NULL, 1),
(29164, '', '0', '8489980848', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603200005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-20 06:39:39', 0, NULL, 0, NULL, 1),
(29165, 'Akshay L', '7', '6363080603', '', 'gowdaakshay2002@gmail.com', '2002-01-10', 24, '5', '2', 'Prameela', 'House wife', 300000.00, 0, 300000.00, 450000.00, 'Bengaluru', 'Bengaluru', '2603200006', '', '2', 'upload_files/candidate_tracker/53954273275_AKSHAYLFlowCVResume.pdf', NULL, '1', '2026-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-20 08:06:22', 1, '2026-03-20 08:13:18', 0, NULL, 1),
(29166, 'Mohanraj v', '2', '6369500268', '', 'Mohanraj171810@gmail.com', '2004-04-28', 21, '2', '2', 'Venkadachalam K', 'Worker', 15000.00, 1, 0.00, 15000.00, 'Salem', 'Chennai', '2603200007', '1', '1', 'upload_files/candidate_tracker/51136120278_MohanrajVMERNStackResume.pdf', NULL, '1', '2026-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-20 09:31:42', 1, '2026-03-20 11:00:57', 0, NULL, 1),
(29167, 'Varun Ramesh', '14', '8072286963', '', 'kumarvarun43255@gmail.com', '2003-05-31', 22, '2', '2', 'Ramesh', 'Car painting', 15000.00, 1, 0.00, 10000.00, 'Salem', 'Salem', '2603200008', '1', '1', 'upload_files/candidate_tracker/73493351378_Varuncv.pdf', NULL, '1', '2026-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-20 09:50:23', 159, '2026-03-23 01:29:36', 0, NULL, 1),
(29168, 'SIVAMATHAVA GANESH ARUNACHALAM', '6', '9344154207', '9790191484', 'sivamathavaganesh2001@gmail.com', '2002-08-27', 23, '2', '2', 'ARUNACHALAM M', 'Tailor Shop', 150000.00, 1, 16000.00, 25000.00, 'Thoothukudi', 'Chennai', '2603200009', '1', '2', 'upload_files/candidate_tracker/77375199384_CV2026022412113469.pdf', NULL, '1', '2026-03-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2026-03-20 12:48:42', 159, '2026-03-21 09:24:40', 0, NULL, 1),
(29169, 'HARSHA M', '6', '9148127498', '9148127497', 'harshamachar@gmail.com', '2011-03-21', 0, '2', '2', 'Nh', 'Nh', 100000.00, 1, 0.00, 4.70, 'Hsr layout banglore', 'Hsr layout banglore', '2603210001', '57', '2', 'upload_files/candidate_tracker/20620165316_HarshaM.pdf', NULL, '1', '2026-03-21', 0, '', '1', '173', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-21 04:43:43', 154, '2026-03-21 02:37:35', 0, NULL, 1),
(29170, 'surya p', '13', '6380495295', '9384178442', 'suryapanneer04@gmail.com', '2004-06-22', 21, '2', '2', 'priya p', 'house wife', 20000.00, 0, 0.00, 20000.00, 'sattur virudhunagar', 'maduravoyal erikarai chennai', '2603210002', '1', '1', 'upload_files/candidate_tracker/2005657165_SuryaP.pdf', NULL, '1', '2026-03-21', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-21 05:03:37', 159, '2026-03-21 11:29:04', 0, NULL, 1),
(29171, 'Aswini j', '6', '9962920760', '7550127942', 'jaswinisve@gmail.com', '1998-01-28', 28, '2', '2', 'janakiraman k', 'business', 30000.00, 1, 16500.00, 18000.00, 'chennai', 'chennai', '2603210003', '50', '2', 'upload_files/candidate_tracker/96706853446_Aswini.pdf', NULL, '1', '2026-03-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication and performance is little good, 5050 profile , little voice low will check with her in the training period ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', '5151', '1970-01-01', 1, '2026-03-21 05:16:00', 159, '2026-03-23 01:27:50', 0, NULL, 1),
(29172, 'Barath', '6', '9381199234', '6385460123', 'barathrakshan0@gmail.com', '2000-01-10', 26, '2', '2', 'Subramani', 'Business', 5.00, 1, 21.00, 23.00, 'Urapakam', 'Urapakam', '2603210004', '1', '2', 'upload_files/candidate_tracker/123495286_BlueSimpleProfessionalCVResume.pdf', NULL, '1', '2026-03-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-21 05:48:22', 159, '2026-03-21 12:49:15', 0, NULL, 1),
(29173, 'Prashanth R', '6', '9916331588', '8073017025', 'richardprash007@gmail.com', '2003-03-12', 23, '2', '2', 'Priya', 'Own business', 30000.00, 0, 0.00, 20000.00, '1st b cross Jai Bhima Nagar madivala bangalore', '1st b Cross Jai Bhima Nagar Madivala Bangalore', '2603210005', '1', '1', 'upload_files/candidate_tracker/6448950144_PRASHANTHR.pdf', NULL, '1', '2026-03-21', 0, '', '3', '59', '2026-03-23', 204000.00, '', '1', '1970-01-01', '1', 'Communication ok fresher only 12 graduate career gap need to check in training and see', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '55786', '55555', '2026-03-23', 1, '2026-03-21 08:00:54', 60, '2026-03-23 10:03:55', 0, NULL, 1),
(29174, 'Parkavi P', '11', '9566132716', '9150760039', 'thaaranikavi@gmail.com', '2011-03-21', 0, '2', '2', 'Paramasivam', 'Farmer', 100000.00, 2, 15000.00, 20000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2603210006', '1', '2', 'upload_files/candidate_tracker/8656104606_CV4.pdf', NULL, '1', '2026-03-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-03-21 09:09:14', 159, '2026-03-21 04:00:29', 0, NULL, 1),
(29175, 'durga sree s s', '11', '9944620519', '', 'sreedurga361@gmail.com', '2005-07-05', 20, '2', '2', 'sangareswari', 'accountant', 20000.00, 1, 21360.00, 24000.00, 'chrompet', 'chrompet', '2603210007', '1', '2', 'upload_files/candidate_tracker/51368842315_Durgasreehrresume.docx', NULL, '1', '2026-03-21', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-03-21 09:23:41', 159, '2026-03-21 06:15:32', 0, NULL, 1),
(29176, 'Dinesh Kumar', '4', '9677898468', '8056141371', 'nirmaldk1998@gmail.com', '1998-09-25', 27, '2', '1', 'Saranya', 'House wife', 15000.00, 2, 0.00, 20000.00, 'Ambattur', 'Ambattur', '2603210008', '50', '1', 'upload_files/candidate_tracker/43117592785_ResumeResumeFormat311.pdf', NULL, '1', '2026-03-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-21 09:51:37', 1, '2026-03-21 09:59:28', 0, NULL, 1),
(29177, 'Nishanth', '6', '9962967392', '6369689547', 'mailnishanth2408@gmail.com', '2004-08-24', 21, '2', '2', 'Suresh M', 'Finance', 400000.00, 1, 14500.00, 18000.00, '25/1 Eggavalli amman Kovil Street, Tiruvottiyur', 'Chennai', '2603210009', '1', '2', 'upload_files/candidate_tracker/51436058650_Nishanth.SResume.Pdf', NULL, '1', '2026-03-23', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication and performance is good, Will check with him in the training period ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2026-03-21 10:08:42', 159, '2026-03-23 01:08:49', 0, NULL, 1),
(29178, '', '0', '7094915745', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603210010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-21 01:05:26', 0, NULL, 0, NULL, 1),
(29179, '', '0', '7904807486', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603210011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-21 01:12:14', 0, NULL, 0, NULL, 1),
(29180, 'Hema Malini S', '11', '9361568491', '', 'malinihema1813@gmail.com', '2002-05-18', 23, '2', '2', 'K Siva Kumar', 'Real estate', 30000.00, 1, 300000.00, 390000.00, 'chennai', 'chennai', '2603210012', '1', '2', 'upload_files/candidate_tracker/27819530299_HR2026HemaResume.pdf', NULL, '1', '2026-03-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-03-21 01:22:11', 159, '2026-03-23 02:50:32', 0, NULL, 1),
(29181, '', '0', '7339273120', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603210013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-21 01:40:20', 0, NULL, 0, NULL, 1),
(29182, 'Ashik Deen', '23', '7299910666', '9884053892', 'ashikdeen141103@gmail.com', '2003-11-14', 22, '2', '2', 'Noor Hussain Y', 'Proprietor', 30000.00, 1, 0.00, 250000.00, 'Velachery, Chennai', 'Velachery, Chennai', '2603210014', '1', '1', 'upload_files/candidate_tracker/29781365675_AshikDeenNUIUXDesigner.pdf', NULL, '1', '2026-03-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-21 01:47:32', 159, '2026-03-24 12:24:52', 0, NULL, 1),
(29183, 'Hari', '6', '9600482260', '', 'hariework19@gmail.com', '2002-10-19', 23, '2', '2', 'Elango', 'Tailor', 20000.00, 1, 0.00, 4.00, 'Chennai', 'Chennai', '2603210015', '1', '1', 'upload_files/candidate_tracker/13658848360_HariNonITResume.pdf', NULL, '1', '2026-03-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-03-21 04:52:01', 159, '2026-03-24 12:06:56', 0, NULL, 1),
(29184, 'durga ravi', '4', '6380681622', '', 'rdurga4102001@gmail.com', '2001-10-04', 24, '2', '2', 'navamani', 'home maker', 20000.00, 2, 12000.00, 15000.00, 'thanjavur', 'thanjavur', '2603210016', '1', '2', 'upload_files/candidate_tracker/31577069274_DurgaProfessionalResumecompressed.pdf', NULL, '1', '2026-03-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'long gap not highly job need and not performing well ', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-21 05:19:30', 154, '2026-03-23 11:11:43', 0, NULL, 1),
(29185, 'JEEVAN abimannan', '6', '9360895551', '', 'jivanchristopher@gmail.com', '2002-05-02', 23, '2', '2', 'Abimannan', 'Farmer', 74009.00, 1, 0.00, 20000.00, 'Namakkal', 'Chennai', '2603220001', '50', '1', 'upload_files/candidate_tracker/57373516672_JeevanResume1.pdf', NULL, '1', '2026-03-23', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', '5151', '1970-01-01', 1, '2026-03-22 09:53:37', 159, '2026-03-23 03:26:39', 0, NULL, 1),
(29186, 'Subhashini S', '6', '7824031834', '9445915207', 'subhayashu2004@gmail.com', '2004-09-30', 21, '2', '2', 'Gayathri', 'House wife', 90000.00, 1, 0.00, 17000.00, 'Adyar Chennai', 'Chennai', '2603230001', '50', '1', 'upload_files/candidate_tracker/25726232160_Resume.pdf', NULL, '2', '2026-03-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-23 04:33:44', 159, '2026-03-23 02:49:12', 0, NULL, 1),
(29187, 'Aseef Ali', '6', '6385143672', '6383708772', 'aseefali1996@gmail.com', '1996-11-27', 29, '2', '2', 'Idris', 'Bussiness', 30000.00, 2, 22000.00, 27000.00, 'Chennai', 'Chennai', '2603230002', '68', '2', 'upload_files/candidate_tracker/94077697506_AseefAliResumeUpdated1.pdf', NULL, '1', '2026-03-23', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-23 05:35:44', 159, '2026-03-23 01:07:21', 0, NULL, 1),
(29188, 'Lakshmi Suruthi k', '4', '7871942970', '8489010235', 'klakshmisuruthi26@gmail.com', '2001-12-26', 24, '2', '2', 'P.Kumar', 'agriculture', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2603230003', '1', '1', 'upload_files/candidate_tracker/9406440618_k.LakshmisuruthiResume.pdf', NULL, '1', '2026-03-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-23 05:52:13', 154, '2026-03-23 11:56:33', 0, NULL, 1),
(29189, 'Subalakshmi G', '4', '9043347731', '9600377565', 'suba46281@gmail.com', '2004-07-13', 21, '2', '2', 'Gnanasekar N', 'Farmer', 68000.00, 2, 0.00, 15000.00, 'sangaranathar kudikkadu, Thanjavur DT ,614626', 'sangaranathar kudikkadu, Thanjavur DT,614626', '2603230004', '1', '1', 'upload_files/candidate_tracker/60585076882_SubaATSResume1.pdf', NULL, '1', '2026-03-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-23 05:55:21', 154, '2026-03-23 11:56:16', 0, NULL, 1),
(29190, 'MAHALAKSHMI', '6', '8438875867', '9159338041', 'mahabala1357@gmail.com', '2004-03-09', 22, '2', '2', 'Balamurugan', 'Farmer', 60000.00, 4, 0.00, 15000.00, 'Thirunallur', 'Thirunallur', '2603230005', '1', '1', 'upload_files/candidate_tracker/76501278564_Maha.docx', NULL, '1', '2026-03-23', 0, '', '5', '168', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not sustain for Long period no proper communication skill expecting high salary', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CI144', '5151', '1970-01-01', 1, '2026-03-23 05:55:26', 154, '2026-03-23 11:54:25', 0, NULL, 1),
(29191, 'Divyasri Balakrishnan', '4', '7604835670', '9585704705', 'divyaritha946@gmail.com', '2004-11-11', 21, '2', '2', 'Balakrishnan', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'Umbalapadi', 'Umbalapadi', '2603230006', '1', '1', 'upload_files/candidate_tracker/89524742676_Divyasri.pdf', NULL, '1', '2026-03-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not performing well', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-23 05:55:52', 154, '2026-03-23 11:55:38', 0, NULL, 1),
(29192, 'G. Abitha Asha', '6', '8838349874', '9047748365', 'ashaabitha2@gmail.com', '2004-06-08', 21, '2', '2', 'Gabariyel', 'Farmer', 6000.00, 1, 0.00, 15009.00, 'Sathanur', 'Sathanur', '2603230007', '1', '1', 'upload_files/candidate_tracker/64897562716_AbithaAsharesume.pdf', NULL, '1', '2026-03-23', 0, '', '5', '168', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not sustain for long term expecting high salary ', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CI144', '5151', '1970-01-01', 1, '2026-03-23 05:55:54', 154, '2026-03-23 11:55:18', 0, NULL, 1),
(29193, 'Pavan Kumar g', '6', '8050325547', '', 'pavankabaddi55@gmail.com', '2003-01-01', 23, '2', '1', 'Ganesh', 'Private employee', 50000.00, 1, 26000.00, 30000.00, 'Bengaluru', 'Bengaluru', '2603230008', '57', '2', 'upload_files/candidate_tracker/82097839432_DOC20260112WA0014..pdf', NULL, '1', '2026-03-23', 0, '', '1', '173', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55786', '55555', '1970-01-01', 1, '2026-03-23 05:58:02', 154, '2026-03-23 02:54:59', 0, NULL, 1),
(29194, 'S.Bhakiyalakshmi', '6', '6369718100', '9363554703', 'p305270@gmail.com', '2003-02-24', 23, '2', '2', 'O.Sathyamoorthi', 'Farmer', 72000.00, 2, 0.00, 15000.00, '552/2 kilamangalam', '552/2 kilamangalam', '2603230009', '1', '1', 'upload_files/candidate_tracker/12923675079_bhakiyaresume.pdf', NULL, '1', '2026-03-23', 0, '', '5', '168', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not sustain for long term expecting high salary', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'CI144', '5151', '1970-01-01', 1, '2026-03-23 06:09:49', 154, '2026-03-23 11:54:57', 0, NULL, 1),
(29195, 'Aravind S', '13', '9384323367', '8015735328', 'saravind7890@gmail.com', '2003-05-09', 22, '3', '2', 'Black', 'Nil', 30000.00, 1, 0.00, 10000.00, 'Chennai City Corporation', 'Chennai City Corporation', '2603230010', '', '1', 'upload_files/candidate_tracker/77801638370_AravindResume.pdf', NULL, '1', '2026-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-23 06:11:47', 159, '2026-03-23 01:06:29', 0, NULL, 1),
(29196, 'Nisha p', '11', '9361408843', '', 'Vanitharamesh@gmail.com', '2003-06-13', 22, '3', '2', 'Panneerselvam', 'Hr reqruiter', 15000.00, 1, 0.00, 20000.00, 'Mannargudi', 'Perambur', '2603230011', '', '1', 'upload_files/candidate_tracker/84448858923_nisha2.pdf', NULL, '1', '2026-03-23', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-23 07:05:05', 159, '2026-03-23 03:54:54', 0, NULL, 1),
(29197, 'Ishwarya chellathurai', '13', '6381564793', '8838820116', 'ishwariya2005@gmail.com', '2005-08-17', 20, '3', '2', 'Chelladurai', 'Daily wage', 20000.00, 0, 0.00, 16000.00, 'Erode', 'Chennai', '2603230012', '', '1', 'upload_files/candidate_tracker/95892467393_DATAANALYSTISHU.pdf', NULL, '1', '2026-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-23 07:05:12', 1, '2026-03-23 07:32:41', 0, NULL, 1),
(29198, '', '0', '9150401904', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603230013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-23 07:09:08', 0, NULL, 0, NULL, 1),
(29199, '', '0', '7695844946', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603230014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-23 08:35:02', 0, NULL, 0, NULL, 1),
(29200, '', '0', '9894790188', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603230015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-23 09:08:26', 0, NULL, 0, NULL, 1),
(29201, 'Vijaya bharathy.R', '6', '9025757035', '9080329727', 'Vijayabharathyramesh@gmail.com', '2004-10-04', 21, '2', '1', 'Sakthi vel', 'Driver', 35000.00, 1, 0.00, 20000.00, 'Perambur,chennai', 'Perambur,chennai', '2603230016', '50', '1', 'upload_files/candidate_tracker/44575423476_myRESUME.docx', NULL, '1', '2026-03-24', 0, '', '3', '59', '2026-03-26', 180000.00, '', '1', '1970-01-01', '2', 'Fresher communication Ok sustainability doubts a lot recently married and not much necessity with the Job too  let us check in training and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', '5151', '2026-03-26', 1, '2026-03-23 10:08:35', 60, '2026-03-26 09:51:20', 0, NULL, 1),
(29202, 'Seema M', '2', '9865161064', '6379419299', 'seemamariappan42@gmail', '2005-06-04', 20, '2', '2', 'Mariappan', 'Coolie', 90000.00, 2, 0.00, 20000.00, 'Tenkasi', 'Chennai', '2603230017', '1', '1', 'upload_files/candidate_tracker/35545828412_SeemaBECSE2026MernstackResume.pdf', NULL, '1', '2026-03-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-23 10:28:16', 1, '2026-03-23 12:11:31', 0, NULL, 1),
(29203, '', '0', '7010094672', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603230018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-23 10:40:36', 0, NULL, 0, NULL, 1),
(29204, '', '0', '9361313580', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603230019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-23 12:47:16', 0, NULL, 0, NULL, 1),
(29205, 'Jayapraveen Sivakumar', '6', '6385757174', '8136890475', 'jayapraveen0704@gmail.com', '2003-01-04', 23, '2', '2', 'Sivakumar (Father)', 'Rental', 20000.00, 1, 0.00, 16000.00, 'Krishnagiri', 'Chennai. Vadapalani', '2603230020', '50', '1', 'upload_files/candidate_tracker/96940195043_JayapraveenSResume1.pdf', NULL, '1', '2026-03-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-23 01:35:44', 154, '2026-03-24 02:54:00', 0, NULL, 1),
(29206, '', '0', '6389681622', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603230021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-23 03:01:37', 0, NULL, 0, NULL, 1),
(29207, 'Nitharsana M', '11', '9962472160', '7338844741', 'nitharsana606@gmail.com', '2004-10-14', 21, '2', '2', 'Magesh.N', 'Fisherman', 30000.00, 1, 0.00, 18000.00, 'Thiruvottriyur', 'Thiruvottriyur', '2603240001', '1', '1', 'upload_files/candidate_tracker/63321426489_NitharsanaResume.pdf', NULL, '1', '2026-03-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '', '', '1970-01-01', 1, '2026-03-24 04:59:44', 159, '2026-03-25 11:56:25', 0, NULL, 1),
(29208, 'RAGHAVAN R', '13', '9025558357', '', 'raghavanr086@gmail.com', '2011-03-24', 0, '2', '2', 'Ranesh', 'Daily wages', 12000.00, 1, 0.00, 200000.00, 'Siruvapuri', 'Siruvapuri', '2603240002', '1', '1', 'upload_files/candidate_tracker/6410296809_downloadresume6.pdf', NULL, '1', '2026-03-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-24 05:09:53', 159, '2026-03-24 12:13:11', 0, NULL, 1),
(29209, 'Mariyal S', '6', '8939692871', '', 'mariyalsimen29@gmail.com', '2003-10-29', 22, '2', '2', 'Saiman', 'Coolie', 700000.00, 1, 16000.00, 19000.00, 'No 54/12 MSM street perambur chennai 600011', 'No 54/12 MSM street perambur chennai 600011', '2603240003', '1', '2', 'upload_files/candidate_tracker/73941371374_GASALARYSLIP2.pdf', NULL, '1', '2026-03-24', 1, '', '3', '59', '2026-04-01', 216000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in calling but not in the same profile need to check in training  and see', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55732', '5151', '2026-04-01', 1, '2026-03-24 05:13:47', 60, '2026-03-31 08:01:37', 0, NULL, 1),
(29210, 'S Jayabharathi', '11', '6384696145', '7904031926', 'sjayabharathi030@gmail.com', '1999-03-15', 27, '2', '2', 'Dhananam', 'House wife', 20000.00, 1, 20000.00, 25000.00, 'Padappai', 'Padappai', '2603240004', '1', '2', 'upload_files/candidate_tracker/19271785097_JAYABHARATHISAT.pdf', NULL, '1', '2026-03-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-03-24 05:32:06', 159, '2026-03-24 03:49:04', 0, NULL, 1),
(29211, 'Yuvasri S', '13', '8610713905', '9597759539', 'ys912507@gmail.com', '2004-12-12', 21, '2', '2', 'G Santhanam', 'Farmer', 70000.00, 1, 0.00, 19000.00, 'Pillayar Kovil Street,Malaipalayam,Chengalpattu', 'Pillayar Kovil Street,Malaipalayam,Chengalpattu', '2603240005', '1', '1', 'upload_files/candidate_tracker/62806441113_YuvasriSoftwareDeveloperResume.pdf', NULL, '1', '2026-03-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-24 05:40:05', 159, '2026-03-24 01:01:41', 0, NULL, 1),
(29212, '', '0', '9003207344', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603240006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-24 05:44:48', 0, NULL, 0, NULL, 1),
(29213, 'Abinaya Y', '13', '7010804507', '9025669414', 'abinaya428kamali@gmail.com', '2005-10-20', 20, '2', '2', 'Yogananthan', 'Farmer', 72000.00, 1, 0.00, 19000.00, 'Eri Street, Pulipakkam, Kanchipuram dist', 'Eri Street, Pulipakkam, Kanchipuram dist', '2603240007', '1', '1', 'upload_files/candidate_tracker/1855646397_AbinayaSoftwareDeveloperResume.pdf', NULL, '1', '2026-03-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-24 05:51:47', 159, '2026-03-24 01:02:17', 0, NULL, 1),
(29214, 'Richard Mendez', '6', '8122047615', '', 'richardmendezfeb122005@gmail.com', '2005-02-12', 21, '2', '2', 'George', 'Driver', 30000.00, 1, 17000.00, 18000.00, 'Chennai', 'Chennai', '2603240008', '1', '2', 'upload_files/candidate_tracker/54560404160_ResumeAlbert.pdf', NULL, '1', '2026-03-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-03-24 06:24:03', 159, '2026-03-24 05:27:54', 0, NULL, 1),
(29215, 'sai krishna V', '2', '6385393720', '9043542065', 'saioffcialkrishna2001@gmail.com', '2001-09-27', 24, '3', '2', 'Srinivas v', 'Hr', 100000.00, 0, 0.00, 40000.00, 'Chennai', 'Chennai', '2603240009', '', '1', 'upload_files/candidate_tracker/43248734820_DataAnalyst.pdf', NULL, '1', '2026-03-24', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'aptitude not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-03-24 07:01:12', 159, '2026-03-24 02:41:17', 0, NULL, 1),
(29216, '', '0', '9361348457', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603240010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-24 07:04:24', 0, NULL, 0, NULL, 1),
(29217, 'Ezhumalai P', '6', '9361640755', '7598623163', 'pezhumalai2000@gmail.com', '2000-03-14', 26, '2', '2', 'Perumal K', 'Business', 50000.00, 1, 28000.00, 28000.00, 'Chengalpattu', 'Shollinganallur', '2603240011', '1', '2', 'upload_files/candidate_tracker/98137105556_EZHUMALAIPMBA22.pdf', NULL, '1', '2026-03-25', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communcation and performance is not good.also he is very slow and low voice .sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', '5151', '1970-01-01', 1, '2026-03-24 02:28:49', 154, '2026-03-25 02:58:05', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29218, 'khokar md shahbaaz ali khan', '6', '9100410047', '8309249676', 'khokarshahbaazkhan@gmail.com', '2000-10-10', 25, '2', '2', 'khokar mazher ali khan', 'teacher', 50000.00, 0, 0.00, 25000.00, 'btm layout', 'btm layout', '2603250001', '1', '1', 'upload_files/candidate_tracker/57966708541_MDShahbaazKhanCV.pdf', NULL, '1', '2026-03-25', 0, '', '3', '59', '2026-04-07', 240000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in other domain fresher for our roles need to check in training and confirm', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '1', '3', '', '', 'H1032', '', '55671', '55555', '2026-04-07', 1, '2026-03-25 04:41:13', 60, '2026-04-07 10:24:08', 0, NULL, 1),
(29219, 'Ananthalakshmi S', '4', '9514213088', '7871873290', 'sananthalakshmi347@gmail.com', '1999-07-04', 26, '2', '1', 'Parivallal E', 'Driver', 40000.00, 1, 0.00, 15000.00, 'Srinivasapuram', 'Srinivasapuram', '2603250002', '1', '1', 'upload_files/candidate_tracker/45662131432_AnanthalakshmiResume.pdf', NULL, '1', '2026-03-25', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', '5151', '1970-01-01', 1, '2026-03-25 04:44:25', 154, '2026-03-25 10:36:08', 0, NULL, 1),
(29220, 'UPPALURI KUMARASWAMY', '6', '6303410150', '8125625421', 'swamymr362@gmail.com', '2005-01-23', 21, '2', '2', 'Uppaluri Sujatha', 'Civil Engineer', 35000.00, 1, 0.00, 3.00, 'Visakhapatnam', 'Visakhapatnam', '2603250003', '1', '1', 'upload_files/candidate_tracker/92290881675_Resume1.pdf', NULL, '1', '2026-03-25', 0, '', '1', '173', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1032', '', '', '', '1970-01-01', 1, '2026-03-25 04:58:23', 154, '2026-03-25 03:16:45', 0, NULL, 1),
(29221, 'Rasathi', '11', '8248802649', '', 'rasathip15@gmail.com', '2003-09-09', 22, '3', '2', 'Periya samy', 'Formar', 720000.00, 2, 16000.00, 20000.00, '3/10,pechangampatti, manapparai, Trichy 621302', 'Ashok pillar', '2603250004', '', '2', 'upload_files/candidate_tracker/85720218963_CV2025073113465523.pdf', NULL, '1', '2026-03-25', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-25 05:55:00', 159, '2026-03-25 12:56:59', 0, NULL, 1),
(29222, 'Abinayasri Ravichandran', '6', '8248096972', '', 'abinayasri0518@gmail.com', '2004-05-18', 21, '3', '2', 'Sheela', 'Farmer', 15000.00, 2, 16000.00, 17000.00, 'Thanjavur', 'Thanjavur', '2603250005', '', '2', 'upload_files/candidate_tracker/17115775726_ABINAYASRIRAVICHANDIRANFlowCVResume20260311.pdf', NULL, '1', '2026-03-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-25 05:55:30', 159, '2026-03-25 12:58:07', 0, NULL, 1),
(29223, '', '0', '8639324243', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603250006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-25 06:11:00', 0, NULL, 0, NULL, 1),
(29224, 'perni bhargav kumar', '6', '8340026355', '8639324242', 'bhargavkumar.sr2003@gmail.com', '2003-06-17', 22, '2', '2', 'perni bhargav kumar', 'doctor', 50000.00, 2147483647, 0.00, 25000.00, 'andhra pradesh', 'btm layout stage', '2603250007', '1', '1', 'upload_files/candidate_tracker/59190513534_PerniBhargavKumar1.pdf', NULL, '1', '2026-03-25', 0, '', '3', '59', '2026-04-15', 210000.00, '', '3', '2026-04-18', '2', 'Communication Ok  fresher for our insurance sales need to check in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1032', '', '55786', '55555', '2026-04-15', 1, '2026-03-25 06:11:22', 60, '2026-04-15 10:59:24', 0, NULL, 1),
(29225, 'Prajwal K', '6', '9741923753', '7975007793', 'kprajwal9548@gmail.com', '2003-08-02', 22, '2', '2', 'Kumar', 'Driver', 20000.00, 1, 0.00, 18000.00, 'Garebhipalya', 'Garebhipalya', '2603250008', '1', '2', 'upload_files/candidate_tracker/51462046248_PrajwalResume4.pdf', NULL, '1', '2026-03-25', 0, '', '3', '59', '2026-03-26', 216000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in telecalling for Airtel 1yr no proper documents yet only relieving letter has been submitted not sure with the tenure he worked as there is no offer letter submitted let us check in training and confirm', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '55899', '5151', '2026-03-26', 1, '2026-03-25 07:00:34', 154, '2026-04-07 01:07:33', 0, NULL, 1),
(29226, '', '0', '7305890298', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603250009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-25 11:13:17', 0, NULL, 0, NULL, 1),
(29227, 'Arul patron A', '13', '8925663758', '8072667757', 'arulpatron@gmail.com', '2003-08-12', 22, '2', '2', 'Anthony samy K', 'Electrition and plumber', 25000.00, 3, 0.00, 15000.00, '994 sangothiamman Kovil 1st cross street', '994 sangothiamman Kovil 1st cross street', '2603250010', '1', '1', 'upload_files/candidate_tracker/76514312784_ArulPatronResume1.pdf', NULL, '1', '2026-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-25 11:20:10', 159, '2026-03-26 01:08:18', 0, NULL, 1),
(29228, '', '0', '9345704212', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603250011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-25 11:30:21', 0, NULL, 0, NULL, 1),
(29229, '', '0', '6381733116', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603250012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-25 12:17:02', 0, NULL, 0, NULL, 1),
(29230, 'kiran john edison', '13', '9600174554', '', 'kiranjohn54@gmail.com', '2001-09-27', 24, '2', '2', 'edison', 'sound engineer', 100000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2603250013', '1', '1', 'upload_files/candidate_tracker/78037830606_KiranJohnResume.pdf', NULL, '1', '2026-03-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-25 12:42:39', 1, '2026-03-25 01:31:40', 0, NULL, 1),
(29231, 'Praveen Kumar', '23', '8015748550', '', 'praveenthedon123@gmail.com', '2004-05-29', 21, '2', '2', 'V.elumalai', 'Plumber', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2603250014', '1', '1', 'upload_files/candidate_tracker/96737114415_Praveensresumepdf.pdf', NULL, '1', '2026-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-25 01:40:43', 159, '2026-03-26 01:07:52', 0, NULL, 1),
(29232, 'SABARI G', '13', '6374499352', '', 'sabari29404@gmail.com', '2004-04-29', 21, '2', '2', 'Ganesan. K', 'Electrician', 15000.00, 2, 0.00, 200000.00, 'Karaikudi', 'Karaikudi', '2603250015', '1', '1', 'upload_files/candidate_tracker/71291859892_SabariGanesanBackendDeveloper.pdf', NULL, '1', '2026-03-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-25 03:18:10', 159, '2026-03-26 11:53:10', 0, NULL, 1),
(29233, '', '0', '7695974664', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603260001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-26 01:04:33', 0, NULL, 0, NULL, 1),
(29234, 'Jhanavarshan v', '13', '9361599438', '9498143835', 'Jhanavarshanv8@gmail.com', '2004-05-09', 21, '2', '2', 'Vasudevan j', 'Police', 100000.00, 1, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2603260002', '1', '1', 'upload_files/candidate_tracker/47847284400_JhanavarshanCVUpdated11.pdf', NULL, '1', '2026-03-26', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'aptitude not cleared', '', 'H1011', '', '', '', '1970-01-01', 1, '2026-03-26 03:58:29', 159, '2026-03-26 01:08:39', 0, NULL, 1),
(29235, 'sharmila.k', '6', '9940567486', '8056251945', 'nishakutty03152@gmail.com', '2000-11-15', 25, '2', '2', 'banu.k', 'meps', 15000.00, 1, 15000.00, 20000.00, 'tambaram', 'tambaram', '2603260003', '1', '2', 'upload_files/candidate_tracker/68087061234_1000444682.pdf', NULL, '1', '2026-03-26', 3, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was ok with communication and have work experience in telesales and also speaks hindi and ok  for immediate joining', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1287', '5151', '1970-01-01', 1, '2026-03-26 05:44:11', 159, '2026-03-26 12:40:49', 0, NULL, 1),
(29236, 'Malahar Kulkarni', '6', '6364687809', '9353404731', 'PavanVivo745@gmail.com', '1995-12-14', 30, '2', '2', 'Mukund', 'Service - Private Sector', 20000.00, 3, 16.00, 17.00, 'Hongasandra Orchid Villa Apartments', 'Muneshwara Layout Kodichikkanahalli Bommanahalli', '2603260004', '57', '2', 'upload_files/candidate_tracker/74368234731_MalaharKulkarniextracted02142125.pdf', NULL, '1', '2026-03-26', 0, '', '1', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2026-03-26 06:08:18', 162, '2026-03-26 02:38:51', 0, NULL, 1),
(29237, 'Sathyaraj Bahadur H', '6', '8510014629', '9535998845', 'srbsingh.1996@gmail.com', '1996-10-22', 29, '2', '2', 'Hari bahadur', 'Area manager', 30000.00, 3, 30000.00, 35000.00, 'Electronic City', 'Electronic City', '2603260005', '57', '2', 'upload_files/candidate_tracker/20662800010_SathyrajBahadurDecentProfessionalResume.pdf', NULL, '1', '2026-03-26', 0, '', '5', '172', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate did not wait till the 2nd round and No response', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-26 06:11:05', 159, '2026-03-26 05:37:15', 0, NULL, 1),
(29238, '', '0', '8884874327', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603260006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-26 06:14:36', 0, NULL, 0, NULL, 1),
(29239, 'R DINESH', '6', '7604982891', '', 'dineshrd2721@gmail.com', '2002-11-27', 23, '2', '2', 'Ravisankar', 'Theatre', 15000.00, 0, 0.00, 380000.00, 'Chennai', 'Chennai', '2603260007', '57', '2', 'upload_files/candidate_tracker/28878724216_DineshResume.pdf', NULL, '1', '2026-03-26', 60, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'looking for Non - Voice', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-03-26 06:28:36', 154, '2026-03-26 12:37:06', 0, NULL, 1),
(29240, '', '0', '9597772520', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603260008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-26 09:32:57', 0, NULL, 0, NULL, 1),
(29241, '', '0', '7200415164', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603260009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-26 09:37:44', 0, NULL, 0, NULL, 1),
(29242, 'praveen sankar', '2', '9003473232', '', 'praveensankar1223@gmail.com', '2003-07-12', 22, '2', '2', 'sankar', 'build contracor', 25000.00, 1, 0.00, 200000.00, 'madurai', 'chennai', '2603260010', '1', '1', 'upload_files/candidate_tracker/17008328435_Praveenresume2.pdf', NULL, '1', '2026-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-26 10:04:46', 1, '2026-03-26 10:18:50', 0, NULL, 1),
(29243, 'Ragul Dravid', '2', '9363389355', '8883019779', 'raguldravid917@gmail.com', '1999-05-24', 26, '2', '2', 'Selavakumar', 'Shopkeeper', 20000.00, 1, 0.00, 2.80, 'Madurai', 'Madurai', '2603260011', '1', '1', 'upload_files/candidate_tracker/75307102951_RagulDravidSMERNFresher1.pdf', NULL, '1', '2026-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-26 10:46:20', 1, '2026-03-26 10:51:42', 0, NULL, 1),
(29244, '', '0', '9677070917', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603260012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-26 11:10:09', 0, NULL, 0, NULL, 1),
(29245, '', '0', '8610504178', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603260013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-26 11:13:06', 0, NULL, 0, NULL, 1),
(29246, 'Praveen Kumar', '23', '6379494902', '', 'praveenkumar.k2810@gmail.com', '2004-10-28', 21, '2', '2', 'Krishnan', 'Buisness', 30000.00, 2, 0.00, 20000.00, 'Kottivakkam, Chennai', 'Kottivakkam, Chennai', '2603260014', '1', '1', 'upload_files/candidate_tracker/12736051094_Praveenkumaruiuxresume.pdf', NULL, '1', '2026-03-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1016', '0', '0', '0', NULL, 1, '2026-03-26 11:14:41', 1, '2026-03-26 11:25:17', 0, NULL, 1),
(29247, 'Janani Ramakrishnan', '13', '9095746729', '9597630235', 'jananiramakrishnan0709@gmail.com', '2003-09-07', 22, '2', '2', 'D.Ramakrishnan', 'Farmer', 25000.00, 1, 0.00, 300000.00, 'Chidambaram', 'Chennai', '2603260015', '1', '1', 'upload_files/candidate_tracker/83898320498_JANANIRESUME.pdf', NULL, '1', '2026-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-26 11:32:29', 1, '2026-03-26 11:45:03', 0, NULL, 1),
(29248, 'Sathya Dhanasekaran', '13', '9514428265', '8883180678', 'sathids0711@gmail.com', '2002-11-07', 23, '2', '2', 'Dhanasekaran.R', 'Glossary shop', 20000.00, 1, 0.00, 300000.00, 'Cuddalore', 'Chennai', '2603260016', '1', '1', 'upload_files/candidate_tracker/25130265928_SATHYA5.pdf', NULL, '1', '2026-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-26 11:33:44', 1, '2026-03-26 11:45:33', 0, NULL, 1),
(29249, 'Swathi B', '13', '8056358282', '9790059735', 'Swathibs1102@gmail.com', '2003-06-30', 22, '2', '2', 'Balasubramaniyan P', 'Daily Wages', 8000.00, 3, 0.00, 300000.00, 'Cuddalore', 'Chennai', '2603260017', '1', '1', 'upload_files/candidate_tracker/47567626442_SWATHIRESUME.pdf', NULL, '1', '2026-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-26 11:45:21', 1, '2026-03-26 12:08:15', 0, NULL, 1),
(29250, 'Yugendiran P', '2', '8610989533', '', 'yugendiran.er@gmail.com', '2003-12-23', 22, '2', '2', 'Partheebarajan P', 'Home maker', 20000.00, 1, 0.00, 15000.00, 'Villupuram', 'Kotturpuram', '2603260018', '1', '1', 'upload_files/candidate_tracker/3856803368_YugendiranP1774096872832.pdf', NULL, '1', '2026-03-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Selected for next round. But not interested for the bond', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-26 12:39:47', 154, '2026-03-31 05:38:37', 0, NULL, 1),
(29251, 'Ashwak A', '11', '8056027193', '', 'Ashwakofficial226@gmail.com', '2002-05-26', 23, '2', '2', 'Ayubkhan', 'Driver', 30000.00, 2, 0.00, 18000.00, 'Kallakurichi', 'Karapakkam, chennai', '2603260019', '1', '1', 'upload_files/candidate_tracker/2792749003_Ashwak.Resume.pdf', NULL, '1', '2026-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-03-26 12:41:13', 1, '2026-03-26 12:45:07', 0, NULL, 1),
(29252, '', '0', '8124335555', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603260020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-26 12:57:04', 0, NULL, 0, NULL, 1),
(29253, 'sai lakshmi S', '11', '8660205247', '', 'gkssai67@gmail.com', '2002-06-08', 23, '2', '2', 'Senthil prakash', 'Driver', 40000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2603260021', '1', '1', 'upload_files/candidate_tracker/810543186_SAILAKSHMISHR.pdf', NULL, '1', '2026-03-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-03-26 03:08:11', 154, '2026-03-27 04:41:34', 0, NULL, 1),
(29254, 'Dinesh kumar', '5', '9940142751', '', 'dineshjkumar96@gmail.com', '1996-02-12', 30, '2', '1', 'Kamali', 'Bps', 35000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2603270001', '1', '2', 'upload_files/candidate_tracker/77194407363_DineshkumarResumejuly2025.docx', NULL, '1', '2026-03-27', 0, '', '1', '140', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55650', '55560', '1970-01-01', 1, '2026-03-27 03:13:46', 154, '2026-03-27 02:35:47', 0, NULL, 1),
(29255, 'George Nelson Mariyaselvam', '23', '9345580980', '7418930076', 'm.georgenelson@gmail.com', '2004-01-08', 22, '2', '2', 'Mariyaselvam', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Kallakurichi', 'Chennai, Guindy', '2603270002', '1', '1', 'upload_files/candidate_tracker/59630498570_Georgenewres.pdf', NULL, '1', '2026-03-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-27 03:15:49', 159, '2026-03-27 12:59:28', 0, NULL, 1),
(29256, 'Srikanth B', '13', '6380764806', '', 'sri262085@gmail.com', '2004-04-30', 21, '2', '2', 'Sheela rani', 'House wife', 25000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2603270003', '1', '1', 'upload_files/candidate_tracker/93213409162_SrikanthResume.pdf', NULL, '1', '2026-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-03-27 05:15:16', 1, '2026-03-27 05:26:40', 0, NULL, 1),
(29257, 'MAHALINGAM G', '13', '6374273506', '', 'mahalingamg2004@gmail.com', '2004-06-15', 21, '5', '2', 'Ganesan', 'Ration shop', 150000.00, 1, 0.00, 400000.00, 'Thenkasi', 'Navalur', '2603270004', '', '1', 'upload_files/candidate_tracker/13643359159_MahalingamResume.pdf', NULL, '1', '2026-03-30', 0, '', '4', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'He is not interested for the  bond', '', '', '', '', '', '1970-01-01', 1, '2026-03-27 05:16:05', 159, '2026-03-30 03:04:55', 0, NULL, 1),
(29258, 'Rahul Ragu', '13', '9789465087', '', 'mwhiz5689@gmail.com', '2004-03-11', 22, '2', '2', 'Raghu R', 'Mechanical Engineer', 1500000.00, 1, 0.00, 25000.00, 'Srinivasan Nagar 7th main road Trichy 620017', 'Sakthi Nagar kattupakkam chennai', '2603270005', '1', '1', 'upload_files/candidate_tracker/85252461151_resume.pdf', NULL, '1', '2026-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, 'H1017', '0', '0', '0', NULL, 1, '2026-03-27 05:20:06', 1, '2026-03-27 05:29:02', 0, NULL, 1),
(29259, 'Vignesh', '6', '9940234065', '', 'avvignesh930@gmail.com', '2004-05-17', 21, '2', '2', 'Sakthivel', 'Home', 20000.00, 0, 0.00, 18000.00, 'Kodambakkam', 'Kodambakkam', '2603270006', '50', '1', 'upload_files/candidate_tracker/13920236229_ModernMinimalistProfessionalCVResume202602281611520000.pdf', NULL, '1', '2026-03-27', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2026-03-27 05:53:28', 159, '2026-03-27 12:20:17', 0, NULL, 1),
(29260, '', '0', '7200174459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603270007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-27 06:00:50', 0, NULL, 0, NULL, 1),
(29261, 'Divya k', '6', '9500989287', '9789835831', 'divyasundhari02@gmail.com', '2002-08-07', 23, '2', '2', 'Gunasundari k', 'Housewife', 300000.00, 0, 16500.00, 20000.00, 'Mandheveli chennai', 'Mandheveli chennai', '2603270008', '1', '2', 'upload_files/candidate_tracker/98390046846_Resume10032026121918pm.pdf', NULL, '1', '2026-03-27', 0, '', '3', '59', '2026-04-01', 228000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in bluechip almost in life insurance process only can give a try andd check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55732', '5151', '2026-04-01', 1, '2026-03-27 06:05:23', 60, '2026-03-31 08:07:43', 0, NULL, 1),
(29262, 'SOUNDHARYA N', '2', '8610666858', '', 'soundharya28032002@gmail.com', '2002-02-28', 24, '5', '1', 'Nadesan', 'Framer', 15000.00, 2, 1.50, 2.00, 'Kallakuruchi', 'Chennai', '2603270009', '', '2', 'upload_files/candidate_tracker/27974991147_soundharyaT.pdf', NULL, '1', '2026-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-27 06:12:00', 1, '2026-03-27 06:16:36', 0, NULL, 1),
(29263, 'Prithika S', '11', '7010699560', '9094856944', 'prithika728@gmail.com', '2003-06-20', 22, '2', '2', 'Parents', 'Rela estate and building contractor', 300000.00, 1, 0.00, 25000.00, 'thiruninravur 602014', 'Thiruninravur,Pakkam location, 602024', '2603270010', '1', '1', 'upload_files/candidate_tracker/58422187686_PRITHIKARESUME2026.docx', NULL, '1', '2026-03-27', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-03-27 06:17:14', 159, '2026-03-27 02:37:06', 0, NULL, 1),
(29264, 'Siddavatam Raja Shekhar Reddy', '6', '9177997384', '6303804797', 'siddavatamreddy0408@gmail.com', '2003-08-16', 22, '2', '2', 'S venkatarami Reddy', 'Student', 50000.00, 2, 0.00, 25000.00, 'Kurnool Rural', 'Kurnool Rural', '2603270011', '57', '1', 'upload_files/candidate_tracker/43226248808_rajashekharResume1.pdf', NULL, '1', '2026-03-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is fresher good confident can go with basic salary ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2026-03-27 06:18:27', 154, '2026-03-27 12:50:27', 0, NULL, 1),
(29265, 'Gadwal Srinath', '6', '8688130112', '', 'gadwalsrinath@gmail.com', '2003-05-13', 22, '2', '2', 'lakshmipathi', 'student', 40000.00, 1, 0.00, 25000.00, 'Anatapur', 'Anatapur', '2603270012', '57', '1', 'upload_files/candidate_tracker/26845330088_srinathresume1.pdf', NULL, '1', '2026-03-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Having in Experience in sales  good Commutation   need to speak about salary ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2026-03-27 06:18:32', 154, '2026-03-27 12:50:15', 0, NULL, 1),
(29266, 'RUPANAGUDI SAI BHARATH KUMAR', '6', '6281753617', '9494812219', 'ravikumargtl63@gmail.com', '2003-12-15', 22, '2', '2', 'R Ravi Kumar', 'Bussiness', 28000.00, 1, 0.00, 24000.00, 'Guntakal, andhrapradesh', 'Marathahalli, Banglore', '2603270013', '57', '1', 'upload_files/candidate_tracker/3522794570_document1000083179.pdf', NULL, '1', '2026-03-27', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is fresher knowing english and Telegu with good skills can offer basic salary', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2026-03-27 06:19:20', 154, '2026-03-27 12:50:22', 0, NULL, 1),
(29267, 'vaishna', '11', '9486679781', '', 'vaishnajc@gmail.com', '2000-03-07', 26, '2', '2', 'jaya chandran v', 'senior administrative officer', 100000.00, 1, 0.00, 20000.00, 'kanyakumari', 'saidapet chennai', '2603270014', '1', '1', 'upload_files/candidate_tracker/37725234754_Vaishnaresume.pdf', NULL, '1', '2026-03-27', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-03-27 06:31:17', 159, '2026-03-27 04:07:00', 0, NULL, 1),
(29268, 'Priyanka Chezian', '11', '9150240607', '8122319640', 'priyankachezian@gmail.com', '2011-03-27', 0, '2', '2', 'Radhika A', 'BBA', 270000.00, 2, 0.00, 25.00, 'Chennai', 'Chennai', '2603270015', '1', '1', 'upload_files/candidate_tracker/32393541114_priyaaaaa.pdf', NULL, '1', '2026-03-27', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-03-27 06:34:08', 159, '2026-03-27 02:38:41', 0, NULL, 1),
(29269, 'S Mohana Priya', '11', '8248219011', '9487063132', 'mohanapriya27052004@gmail.com', '2004-05-27', 21, '2', '2', 'Sivacoumar.R', 'Business', 300000.00, 1, 0.00, 20000.00, 'Puducherry', 'Chennai', '2603270016', '1', '1', 'upload_files/candidate_tracker/76651616049_Mohanapriyaresume1canva.pdf.pdf', NULL, '1', '2026-03-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-03-27 07:28:56', 159, '2026-03-27 04:10:55', 0, NULL, 1),
(29270, 'Karthikeyan S', '6', '9360216522', '', 'skarthi2993@gmail.com', '2003-11-30', 22, '3', '2', 'Gnanasoundhari', 'Housewife', 20000.00, 1, 25000.00, 28000.00, 'Tiruchirapalli', 'Chennai', '2603270017', '', '2', 'upload_files/candidate_tracker/48596807120_karthiresume2.pdf', NULL, '1', '2026-03-27', 0, '', '1', '154', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-03-27 07:32:33', 154, '2026-03-27 07:10:43', 0, NULL, 1),
(29271, 'Pavithra G', '11', '7904662951', '6380930242', 'pavigopi125@gmail.com', '2001-05-12', 24, '2', '2', 'Gopinathan.R', 'Farmer', 20000.00, 1, 20000.00, 25000.00, 'Vellore district', 'Sholinganallur', '2603270018', '1', '2', 'upload_files/candidate_tracker/92449595885_PavithraGResume.pdf202603252209310000.pdf', NULL, '1', '2026-03-27', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55605', '55566', '2026-03-27', 1, '2026-03-27 07:32:41', 159, '2026-03-27 03:35:12', 0, NULL, 1),
(29272, 'Rajakani Munusamy', '11', '8825554266', '8610653122', 'rajakanim2020@gmail.com', '2001-06-20', 24, '2', '2', 'Shanthi', 'Self employee', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2603270019', '1', '1', 'upload_files/candidate_tracker/67664801063_RAJAKANI.MResume20251124re1212.pdf', NULL, '1', '2026-03-27', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-03-27 08:01:53', 159, '2026-03-27 03:38:58', 0, NULL, 1),
(29273, 'A.Manasa', '6', '6304089917', '9573849714', 'amanasaa728@gmail.com', '2005-06-13', 20, '2', '2', 'Pavan kalyan', 'Brother', 20000.00, 1, 0.00, 2.50, 'Chittor', 'Marathahalli', '2603270020', '1', '1', 'upload_files/candidate_tracker/44694278113_CV2026032710110781.pdf', NULL, '1', '2026-03-27', 0, '', '1', '173', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1032', '', '55671', '55555', '1970-01-01', 1, '2026-03-27 08:43:48', 154, '2026-03-27 07:12:21', 0, NULL, 1),
(29274, 'Dhammasundari S', '11', '9962522572', '', 'dhammapavi211@gmail.com', '2000-11-02', 25, '2', '2', 'Saravanan', 'Not working', 40000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2603270021', '1', '2', 'upload_files/candidate_tracker/61847397478_DOC20250828WA0011..pdf', NULL, '1', '2026-03-27', 0, '', '3', '59', '2026-04-06', 240000.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp in recruitment Creative hands need to check in training and see', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '8', '', '', 'H1017', '', '55605', '55566', '2026-04-06', 1, '2026-03-27 10:04:43', 60, '2026-04-06 10:09:03', 0, NULL, 1),
(29275, 'S.Santhiya', '4', '7418021827', '9363328996', 'santhiyasanthiya638368@gmail.com', '2005-12-08', 20, '2', '2', 'V Saravanan', 'Qatar (House cook)', 25000.00, 2, 12000.00, 15000.00, '379/Mettu street,Ammapetai, Thanjavur.', '379/Mettu street,Ammapetai, Thanjavur.', '2603270022', '1', '2', 'upload_files/candidate_tracker/27358187428_SanthiyaResume.pdf', NULL, '1', '2026-03-30', 5, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', 'C99176', '1970-01-01', 1, '2026-03-27 10:04:58', 154, '2026-03-30 03:57:17', 0, NULL, 1),
(29276, '', '0', '9342647828', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603270023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-27 10:45:31', 0, NULL, 0, NULL, 1),
(29277, 'LISHA SHREE SUBRAMANIAN', '11', '6385783774', '', 'lishashreesubramanian03@gmail.com', '2003-04-12', 22, '2', '2', 'SUBRAMANIAN', 'Driver', 10000.00, 3, 0.00, 15000.18, '11/4, Anna Nagar, Rajagopalapuram, Pudukkottai', 'T- Nagar', '2603270024', '1', '1', 'upload_files/candidate_tracker/24932796341_LishaShreeSubramanianHR.pdf', NULL, '1', '2026-03-28', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-03-27 11:05:31', 154, '2026-03-28 12:08:35', 0, NULL, 1),
(29278, '', '0', '7358501717', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603270025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-27 11:24:52', 0, NULL, 0, NULL, 1),
(29279, 'Maheswari R', '2', '7010376262', '7904976774', 'mahes.r.2007@gmail.com', '2005-07-20', 20, '2', '2', 'Rajendran C', 'Driver', 10000.00, 2, 0.00, 10000.00, 'Madurai', 'Madurai', '2603270026', '1', '1', 'upload_files/candidate_tracker/49073217251_MaheswariRresume.pdf', NULL, '1', '2026-03-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1025', '0', '0', '0', NULL, 1, '2026-03-27 12:01:02', 1, '2026-03-28 02:37:17', 0, NULL, 1),
(29280, 'Jyosnavi Matcha', '11', '9176290420', '9841237801', 'mjyosnavi@gmail.com', '2003-06-18', 22, '2', '2', 'M srinivasan', 'Mechanical engineering', 12.00, 1, 0.00, 3.00, 'CHENNAI', 'CHENNAI', '2603270027', '1', '1', 'upload_files/candidate_tracker/70125991742_JyosnaviMSDataAnalyticsResume2.pdf', NULL, '1', '2026-03-28', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55882', '55566', '1970-01-01', 1, '2026-03-27 02:37:26', 159, '2026-03-28 12:13:24', 0, NULL, 1),
(29281, 'Razap Abdullah', '6', '7358440067', '8248840377', 'rajababdullah632@gmail.com', '1996-06-25', 29, '2', '1', 'Nisthar', 'Business', 25000.00, 2, 0.00, 20000.00, 'Alandur', 'Alandur', '2603280001', '66', '1', 'upload_files/candidate_tracker/47292852098_RazapAbdullahResume1.pdf', NULL, '1', '2026-03-28', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'did not perform well ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-03-28 05:07:25', 154, '2026-03-28 11:09:40', 0, NULL, 1),
(29282, 'raisha abdul hameed', '6', '9442214911', '9894507939', 'raishasundhka38833@gmail.com', '2003-04-01', 22, '2', '2', 'abdul hameed', 'businessman', 15000.00, 0, 0.00, 12000.00, 'thanjavur', 'thanjavur', '2603280002', '1', '2', 'upload_files/candidate_tracker/91677934741_RaishaResume2.pdf', NULL, '1', '2026-03-28', 0, '', '3', '59', '2026-03-30', 162000.00, '', '1', '1970-01-01', '1', 'Communication Ok fresher for inrsurance sales need to check in training and confirm', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'CI144', '5151', '2026-03-30', 1, '2026-03-28 05:42:18', 60, '2026-03-30 09:55:32', 0, NULL, 1),
(29283, 'swetha veronica tharan', '5', '8248373859', '7094110881', 'swethaveronica0128@gmail.com', '2000-01-28', 26, '2', '2', 'tharan', 'csi hospital manager', 70000.00, 2, 35000.00, 45000.00, 'kanchipuram', 'thiruvamiyur', '2603280003', '1', '2', 'upload_files/candidate_tracker/74667824830_Sweresume.pdf', NULL, '1', '2026-03-31', 30, '', '1', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1030', '', '55656', '55557', '1970-01-01', 1, '2026-03-28 06:17:06', 154, '2026-03-31 01:09:19', 0, NULL, 1),
(29284, 'Harish .s', '6', '9790776215', '6369634282', 'hariharish8253@gmail.com', '2002-09-03', 23, '2', '2', 'Father', 'Plumber', 50000.00, 0, 0.00, 22000.00, 'chennai', 'chennai', '2603280004', '1', '1', 'upload_files/candidate_tracker/49575524900_harishresume.pdf', NULL, '1', '2026-03-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-03-28 07:03:46', 159, '2026-03-30 03:42:48', 0, NULL, 1),
(29285, 'Sharan c', '6', '8970789315', '8884874327', 'sharan139389@gmail.com', '2003-10-05', 22, '2', '2', 'Chandrasheaker', 'Own business', 500000.00, 0, 15000.00, 20000.00, 'BTM', 'BTM', '2603280005', '1', '2', 'upload_files/candidate_tracker/86703286425_Sharan.Cresume11.pdf', NULL, '1', '2026-03-28', 0, '', '5', '167', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected No Communication \nExpecting High Salary \nNo Sustainibility and intrested In IT Background', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '', '55786', '1970-01-01', 1, '2026-03-28 07:08:24', 154, '2026-03-28 02:40:05', 0, NULL, 1),
(29286, 'Priya Dharshiny', '6', '8903283286', '', 'nivhash16@gmail.com', '2001-11-16', 24, '2', '2', 'Gnanasekaran', 'Business', 3.00, 1, 2.00, 3.00, 'Silkboard', 'Silkboard', '2603280006', '1', '2', 'upload_files/candidate_tracker/56797684557_PriyaDharshinyResumeUpdated.pdf', NULL, '1', '2026-03-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good communication with good skills \n20k salary with having 8 months experience in life Insurance policy', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '55786', '5151', '1970-01-01', 1, '2026-03-28 07:44:21', 154, '2026-03-28 06:12:44', 0, NULL, 1),
(29287, '', '0', '7338982210', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603280007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-28 08:07:28', 0, NULL, 0, NULL, 1),
(29288, 'Manoj Kumar A', '6', '9036163611', '9845444733', 'manojbeta67@gmail.com', '2003-06-07', 22, '2', '2', 'Meena', 'House keeping', 20000.00, 1, 0.00, 20000.00, 'Bengaluru', 'Bengaluru', '2603280008', '1', '1', 'upload_files/candidate_tracker/77497914104_ManojKumarA.PDT.pdf', NULL, '1', '2026-03-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good communication and Knowledge \nSustainability Doubt But speak with candidate and filter it', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1032', '', '55786', '55555', '1970-01-01', 1, '2026-03-28 09:11:12', 154, '2026-03-28 06:12:50', 0, NULL, 1),
(29289, 'thilagavathi', '6', '6383250792', '9715642234', 'thilagadhanu21@gmail.com', '2004-06-21', 21, '2', '2', 'pichandi', 'weaver', 60000.00, 2, 16000.00, 25000.00, 'tiruvannamalai', 'chennai', '2603280009', '1', '2', 'upload_files/candidate_tracker/82229471682_Thilagavathi.resume.pdf', NULL, '1', '2026-04-01', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, communication average. 1 year exp for star health insurance And 2 months exp for Galaxy health insurance pls check sustainability and confirm the joining date.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55732', '55645', '1970-01-01', 1, '2026-03-28 01:13:38', 159, '2026-04-01 12:06:14', 0, NULL, 1),
(29290, '622142217058', '4', '6385241513', '8438965029', 'e21af052shreepathy@gmail.com', '2003-08-17', 22, '3', '2', 'THIRUPATHY', 'REAL ESTATE', 20000.00, 2, 15000.00, 20000.00, 'Cheyyur, Chengalpattu district', 'OMR thiruporur', '2603300001', '', '2', 'upload_files/candidate_tracker/69562874989_SHIVAJOHNRESUME21.pdf', NULL, '1', '2026-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-03-30 05:17:31', 1, '2026-03-30 05:22:15', 0, NULL, 1),
(29291, 'anjali a', '6', '8095024432', '', 'anjaliannaiah06@gmail.com', '2001-06-06', 24, '2', '1', 'annaiah', 'Own business', 30000.00, 1, 16000.00, 20000.00, 'madiwala', 'madiwala', '2603300002', '1', '2', 'upload_files/candidate_tracker/61783720648_anjali1.pdf', NULL, '1', '2026-03-30', 0, '', '1', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1032', '', '55786', '55555', '1970-01-01', 1, '2026-03-30 05:18:00', 154, '2026-03-30 11:25:03', 0, NULL, 1),
(29292, 'Abinayasri Ravichandran', '6', '8438441994', '8248096972', 'abinayasri0518@gmail.com', '2004-05-18', 21, '3', '2', 'Sheela', 'Farmer', 15000.00, 2, 16000.00, 17000.00, 'Thanjavur', 'Thanjavur', '2603300003', '', '2', 'upload_files/candidate_tracker/68935593212_downloadresume.pdf', NULL, '1', '2026-03-30', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE OK.COMMUNICATION IS GOOD. CONFIRM THE SALARY xxamp JOINING DATE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55692', '55645', '1970-01-01', 1, '2026-03-30 05:23:46', 154, '2026-03-30 05:31:41', 0, NULL, 1),
(29293, 'Dhanalakshmi P', '11', '9962349754', '', 'dhanalakshmip209@gmail.com', '2001-12-12', 24, '2', '2', 'Periya nadar', 'Business', 30000.00, 2, 0.00, 180000.00, 'Chennai', 'Chennai', '2603300004', '1', '1', 'upload_files/candidate_tracker/10015323386_Dhanalakshmiresume.pdf', NULL, '1', '2026-03-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-03-30 05:26:49', 159, '2026-03-30 03:43:27', 0, NULL, 1),
(29294, 'MUHEMMED FAZAL N', '6', '8682897108', '7904962803', 'mohammedfazal686@gmail.com', '2003-06-15', 22, '1', '2', 'NAVAB JOHN', 'SUPERVISOR', 30000.00, 1, 25000.00, 25000.00, '1/475,senthil nagar,PERUMANULLUR, Tiruppur', 'ELLIESC ROAD ,MOUNT ROAD, CHENNAI,600002', '2603300005', '', '2', 'upload_files/candidate_tracker/77119318844_MUHEMMEDFAZALNRESUME.pdf', NULL, '1', '2026-03-30', 0, 'C99278', '3', '59', '2026-04-01', 204000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in mobile sales not in the relevant profile Need to check in training and see will check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55692', '55645', '2026-04-01', 1, '2026-03-30 05:39:58', 60, '2026-03-31 08:09:27', 0, NULL, 1),
(29295, 'Sorna', '6', '6381208004', '', 'sornapriya206@gmail.com', '2003-06-20', 22, '2', '2', 'Vennila.s', 'Sales executive', 50000.00, 2, 20000.00, 25000.00, 'K.k.nagar', 'K.k.nagat', '2603300006', '66', '2', 'upload_files/candidate_tracker/37739588853_SornaResume.pdf', NULL, '1', '2026-03-30', 30, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-30 05:41:14', 159, '2026-03-30 01:19:07', 0, NULL, 1),
(29296, 'Aakash palanivel', '6', '8940573011', '', 'aakash2273@gmail.com', '2003-07-22', 22, '2', '2', 'Palanivel N', 'Farmer', 25000.00, 2, 17000.00, 20000.00, '1/123 , New street pamani , Thiruthuraipoondi', 'Korattur', '2603300007', '50', '2', 'upload_files/candidate_tracker/48825368314_AakashDA.pdf', NULL, '1', '2026-03-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-30 06:17:11', 159, '2026-03-30 03:45:36', 0, NULL, 1),
(29297, '', '0', '7358986286', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603300008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-30 06:23:01', 0, NULL, 0, NULL, 1),
(29298, 'Nayani Sreevanth', '6', '9177197624', '8296726192', 'sreevanthnayani2026@gmail.com', '2002-06-03', 23, '2', '2', 'N Reddeppa', 'Worker', 35000.00, 1, 23000.00, 30000.00, 'B Kothakota Andhra Pradesh', 'Bangalore', '2603300009', '57', '2', 'upload_files/candidate_tracker/51092712570_sreevanthresumekyc1.4years.pdf', NULL, '1', '2026-03-30', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'experience candidate in wipro kYC Process expecting 23k good knowledge in insurance and good communication skills', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55786', 'C99176', '1970-01-01', 1, '2026-03-30 06:31:51', 154, '2026-04-07 01:08:04', 0, NULL, 1),
(29299, 'Annal.p', '6', '7010559873', '7448446298', 'gopikrish0505@gmail.com', '2000-06-05', 25, '2', '1', 'Gopikrishnan', 'He no more', 13000.00, 1, 18000.00, 25000.00, '13/6 adhishsha nagar 3rd st perambur Chennai 12', '35/A krishnadoss main road perambur Chennai 12', '2603300010', '1', '2', 'upload_files/candidate_tracker/67464224830_AnnalP1.pdf', NULL, '1', '2026-03-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-30 06:32:55', 159, '2026-03-30 03:47:36', 0, NULL, 1),
(29300, 'Pavithra E', '6', '9342603540', '', 'pavithragovan7@gmail.com', '2005-04-10', 20, '2', '2', 'Elangovan', 'Farmer', 60000.00, 2, 0.00, 18000.00, '19, Velalar Street, Karapattu Village, 606 705.', 'Chennai vellachery', '2603300011', '1', '1', 'upload_files/candidate_tracker/9603777174_PavithraEResume1.pdf', NULL, '1', '2026-03-30', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'did not perform well in interview xxamp Complete IT profile, will not handle target xxamp pressure for sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 1, '2026-03-30 09:12:23', 154, '2026-03-30 03:42:39', 0, NULL, 1),
(29301, 'J.Nantha Kumar', '13', '9080208020', '9715310193', 'nan1dhakumar@gmail.com', '2001-01-24', 25, '5', '2', 'Suyampukani', 'Housewife', 30000.00, 5, 0.00, 15000.00, '40/22 , North Street, udangudi,tuticorin', 'kilkattalai', '2603300012', '', '1', 'upload_files/candidate_tracker/23826212739_NanthakumarResume.docx.pdf', NULL, '1', '2026-03-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Got only 2 marks in aptitude', '', '', '', '', '', '1970-01-01', 1, '2026-03-30 09:14:49', 159, '2026-03-30 04:01:52', 0, NULL, 1),
(29302, '682508254764', '23', '9655633266', '', 'Kvaakash24@gmail.com', '2002-12-17', 23, '2', '2', 'Karunakaran', 'Sales tax', 70000.00, 2, 0.00, 20000.00, 'Erode', 'Erode', '2603300013', '1', '1', 'upload_files/candidate_tracker/10507204555_Aak.pdf', NULL, '1', '2026-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-30 09:15:43', 1, '2026-03-30 09:44:37', 0, NULL, 1),
(29303, 'Abirami', '13', '6369857247', '', 'abiramraj08@gmail.com', '2001-01-06', 25, '5', '2', 'S. Ramaraj', 'dail wages', 75000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2603300014', '', '1', 'upload_files/candidate_tracker/48732643936_AbiramiRDataAnalyst.pdf', NULL, '1', '2026-03-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'got only 3 marks in aptitude', '', '', '', '', '', '1970-01-01', 1, '2026-03-30 09:15:57', 159, '2026-03-30 04:02:19', 0, NULL, 1),
(29304, 'dhavakumar', '23', '9677594314', '9345418967', 'dhavakumar870@gmail.com', '2002-11-07', 23, '2', '2', 'sundhari', 'job seeker', 25000.00, 2, 0.00, 18000.00, 'karaikudi', 'chennai', '2603300015', '1', '1', 'upload_files/candidate_tracker/33400760466_Resume.pdf', NULL, '1', '2026-03-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-03-30 11:22:42', 154, '2026-04-02 02:54:51', 0, NULL, 1),
(29305, 'PRAVEEN KUMAR V', '13', '7603982737', '9677523017', 'vpraveenkumar8008@gmail.com', '2004-10-18', 21, '2', '2', 'Venkatachalam', 'B.com(Computer Application)', 45000.00, 1, 0.00, 2.00, 'Udumalpet', 'UDUMALPET', '2603300016', '1', '1', 'upload_files/candidate_tracker/21524415583_PRAVEENKUMARV.pdf', NULL, '1', '2026-04-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', '0', '0', NULL, 1, '2026-03-30 12:44:09', 1, '2026-03-30 12:48:03', 0, NULL, 1),
(29306, 'rohinth', '31', '7373970097', '', 'rohinth2303@gmail.com', '2003-09-23', 22, '2', '2', 'vijayaragunathan', 'n / a', 300000.00, 1, 0.00, 200000.00, 'chennai', 'chennai', '2603310001', '72', '1', 'upload_files/candidate_tracker/48455342533_Rohinthresumeupdated.pdf', NULL, '1', '2026-03-31', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-03-31 04:26:34', 159, '2026-03-31 10:17:22', 0, NULL, 1),
(29307, '', '0', '8248374859', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603310002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-31 05:02:24', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29308, 'Pranesh a S', '6', '6385498058', '', 'aspranesh2331@gmail.com', '2001-11-23', 24, '2', '2', 'Ashok Kumar p', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Kaniyakumari', 'Tambaram', '2603310003', '1', '2', 'upload_files/candidate_tracker/18527163712_PRANESH1edit.pdf', NULL, '1', '2026-03-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2026-03-31 05:06:20', 154, '2026-03-31 04:17:59', 0, NULL, 1),
(29309, 'Chandru Ganapathy', '13', '8838329256', '', 'chandruganapathy8@gmail.com', '1997-11-09', 28, '2', '2', 'Ganapathy', 'Carpenter', 30000.00, 1, 20000.00, 35000.00, 'Sembanarkovil', 'Chennai', '2603310004', '1', '2', 'upload_files/candidate_tracker/66988406710_chandru1.pdf', NULL, '1', '2026-03-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '5', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-03-31 05:07:29', 154, '2026-03-31 05:38:24', 0, NULL, 1),
(29310, 'SUNILKUMAR K A', '13', '8870645488', '', 'sunilarumugam162004@gmail.com', '2004-05-16', 21, '3', '2', 'K S ARUMUGAM', 'Photographer', 30000.00, 1, 0.00, 3.00, '1/58 GANDHI ROAD, VANGANUR', 'Avadi, Chennai', '2603310005', '', '1', 'upload_files/candidate_tracker/73893395755_SUNILARUMUGAMSOFTWAREDEVELOPER2.pdf', NULL, '1', '2026-03-31', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Got 3 marks in aptitude', '', '', '', '', '', '1970-01-01', 1, '2026-03-31 05:48:03', 154, '2026-03-31 01:24:38', 0, NULL, 1),
(29311, 'SURYA PRAKASH S', '6', '7358044031', '', 'moorthysurya7@gmail.com', '2001-05-16', 24, '2', '2', 'N SUNDARAMURTHY', 'Retired police officer', 40000.00, 1, 25000.00, 27000.00, 'Chennai', 'Chennai', '2603310006', '50', '2', 'upload_files/candidate_tracker/7928052153_DOC20260324WA0002..pdf', NULL, '1', '2026-03-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not interested in sales , so he left without attending manager round', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-03-31 06:13:48', 154, '2026-04-07 01:10:07', 0, NULL, 1),
(29312, 'Boomika.s', '6', '7760650246', '9535270611', 'boomikashrushti123@gmail.com', '2003-01-03', 23, '2', '2', 'Suprith.N', 'Driving school teacher', 20000.00, 0, 0.00, 20000.00, 'Btm jaibheem nagar old madiwala', 'Hosa road doddanagmangala', '2603310007', '1', '1', 'upload_files/candidate_tracker/40398182546_bhumika3.pdf', NULL, '1', '2026-03-31', 0, '', '3', '59', '2026-04-13', 216000.00, '', '3', '2026-04-13', '2', 'COmmunication Ok fresher need to check in our roles and confirm', '5', '1', '1', '2', '2', '1', '2', '1970-01-01', '1', '3', '', '', 'H1032', '', '55899', '55555', '2026-04-13', 1, '2026-03-31 06:18:47', 60, '2026-04-13 10:03:50', 0, NULL, 1),
(29313, 'Athisakthi', '13', '9042350109', '8667039636', 'aathisakthi402@gmail.com', '2004-11-10', 21, '3', '2', 'Annamalai', 'No', 5000.00, 2, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2603310008', '', '1', 'upload_files/candidate_tracker/34435240642_AthiResume.pdf', NULL, '1', '2026-03-31', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'got 4 marks in aptitude', '', '', '', '', '', '1970-01-01', 1, '2026-03-31 06:20:16', 154, '2026-03-31 01:27:42', 0, NULL, 1),
(29314, 'rizwana', '11', '7825878611', '', 'rizu2201@gmail.com', '2003-05-22', 22, '2', '2', 'abdul kareem', 'manager', 25000.00, 2, 2.40, 3.50, 'chennai', 'chennai', '2603310009', '1', '2', 'upload_files/candidate_tracker/56954816338_RizzHR.pdf', NULL, '1', '2026-03-31', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 1, '2026-03-31 06:38:10', 154, '2026-03-31 03:46:02', 0, NULL, 1),
(29315, '', '0', '9043846542', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2603310010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-03-31 07:08:47', 0, NULL, 0, NULL, 1),
(29316, 'AJAY GANESAN', '13', '9043846542', '', 'ajayganesan08@gmail.com', '2005-05-22', 20, '2', '2', 'Ganesan', 'Farmer', 35000.00, 2, 0.00, 2.50, 'ramanadapuram', 'korattur', '2603310011', '72', '1', 'upload_files/candidate_tracker/47874465044_AJAYGANESHANRESUME.pdf', NULL, '1', '2026-03-31', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', '1970-01-01', '3', '2', 'system task not cleared', '', '', '', '', '', '1970-01-01', 154, '2026-03-31 01:16:00', 154, '2026-04-01 02:41:04', 0, NULL, 1),
(29317, 'RISHIKA R', '6', '7639944676', '', 'rishikaramesh6@gmail.com', '2003-06-10', 22, '2', '2', 'Ramesh', 'Cotton mill worker', 100000.00, 2, 22000.00, 27000.00, 'Arani', 'Valasarawakam', '2603310012', '67', '2', 'upload_files/candidate_tracker/91920235889_RishikaCV2.pdf', NULL, '1', '2026-03-31', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication was ok and not so confident ,in need of job and let try for a week .', '5', '2', '', '', '', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', 'C99176', '1970-01-01', 154, '2026-03-31 02:48:27', 154, '2026-04-02 02:51:55', 0, NULL, 1),
(29318, 'Priyanga Murugaiyan', '6', '9655916192', '6382907414', 'priyangam456@gmail.com', '2003-08-28', 22, '2', '2', 'Nelavathi', 'House wife', 72000.00, 4, 0.00, 15000.00, 'Pappandu', 'Pappandu', '2603310013', '1', '1', 'upload_files/candidate_tracker/33514187085_PriyangaResume.pdf', NULL, '1', '2026-04-06', 0, '', '5', '168', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not performed well lag in communication', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CI144', 'C99176', '1970-01-01', 1, '2026-03-31 12:06:40', 154, '2026-04-06 11:50:17', 0, NULL, 1),
(29319, 'Nithishkumar M B', '2', '9360878281', '', 'nktheboss2004@gmail.com', '2004-09-21', 21, '2', '2', 'Muralikrishnan', '1,50,000', 12500.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2603310014', '1', '1', 'upload_files/candidate_tracker/99735620712_NithishkumarECEFullStackDeveloper.pdf', NULL, '2', '2026-04-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', '0', '0', NULL, 1, '2026-03-31 01:06:06', 1, '2026-03-31 01:18:29', 0, NULL, 1),
(29320, 'Karthikeyan D', '2', '9345205513', '6385723150', 'karthikeyanlingam204@gmail.com', '2004-07-03', 21, '2', '2', 'Dharmalingm S', 'Farmer', 5000.00, 1, 0.00, 10000.00, 'Edaiyathi, Thanjavur, Pattukkottai', 'Chennai, Kumananchavadi.', '2603310015', '1', '1', 'upload_files/candidate_tracker/94074999140_KarthikeyanResume..pdf', NULL, '1', '2026-04-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-31 01:12:23', 1, '2026-03-31 01:32:43', 0, NULL, 1),
(29321, 'Haritha Kannan', '11', '7305219579', '', 'harithakannan1907@gmail.com', '2004-07-19', 21, '2', '2', 'Padmavathi', 'Travel', 200000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2603310016', '1', '1', 'upload_files/candidate_tracker/98630876495_yaagscv11.docx', NULL, '1', '2026-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-03-31 01:17:30', 1, '2026-03-31 01:34:08', 0, NULL, 1),
(29322, 'Shalini N', '6', '9787551590', '7824909294', 'shalininatraj11111@gmail.com', '2000-08-14', 25, '2', '2', 'Natrajan', 'Driver', 60000.00, 2, 19000.00, 25000.00, 'Vellore', 'Chennai', '2604010001', '1', '2', 'upload_files/candidate_tracker/56180852776_shaliniresume.pdf.pdf', NULL, '1', '2026-04-01', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication and performance is good. Also she have 1 yrs experience in star . Will check with her in the training period ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', 'C99176', '1970-01-01', 1, '2026-04-01 04:43:48', 154, '2026-04-01 03:52:40', 0, NULL, 1),
(29323, 'Mahalakshmi Devan', '6', '9787417673', '9444434629', 'mahalakshmidev05@gmail.com', '2001-07-24', 24, '2', '2', 'Devan', 'Own Business', 40000.00, 2, 19000.00, 25000.00, 'Vellore', 'Chennai', '2604010002', '1', '2', 'upload_files/candidate_tracker/21442754670_MahalakshmiCV.pdf', NULL, '1', '2026-04-01', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate not performed well in the interview. Also she is not spoke much more ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', 'C99176', '1970-01-01', 1, '2026-04-01 04:44:22', 154, '2026-04-01 03:54:59', 0, NULL, 1),
(29324, 'Sathish', '11', '8667576674', '', 'sandysathish3010@gmail.com', '2001-10-30', 24, '1', '2', 'Boopathy', 'Contractor', 40000.00, 1, 235000.00, 350000.00, 'Ambattur', 'Ambattur', '2604010003', '', '2', 'upload_files/candidate_tracker/34893026636_SATHISH.RESUMEHR.pdf', NULL, '1', '2026-04-01', 0, 'Not have', '3', '59', '2026-04-06', 260000.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp in HR profile for 4yrs need to check in training and confirm for our roles', '6', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55605', '55566', '2026-04-06', 1, '2026-04-01 04:47:09', 60, '2026-04-06 09:56:41', 0, NULL, 1),
(29325, 'Anusuya', '6', '8870594066', '9176236037', 'anusuyajefi29@gmail.com', '2000-06-01', 25, '2', '1', 'Selva kumar', 'Company', 55000.00, 0, 25000.00, 30000.00, 'Manali', 'Koyambedu', '2604010004', '1', '2', 'upload_files/candidate_tracker/26343168374_AnusuyaResume.pdf', NULL, '1', '2026-04-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-04-01 05:23:49', 154, '2026-04-01 03:55:46', 0, NULL, 1),
(29326, 'LOKESH KUMAR N', '13', '8825568276', '', 'shanthiloki4@gmail.com', '2004-08-08', 21, '2', '2', 'Nagesh Rao', 'Delivery job', 35000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2604010005', '1', '1', 'upload_files/candidate_tracker/26297716750_LokeshKumar.NResume.pdf', NULL, '1', '2026-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 05:36:29', 1, '2026-04-01 05:42:46', 0, NULL, 1),
(29327, 'Aarthiga E', '13', '7397161622', '', 'aarthigae@gmail.com', '2001-10-16', 24, '3', '2', 'Elavarasan', 'Welding', 80000.00, 1, 0.00, 3.50, 'Kundrathur, chennai 69', 'Kundrathur chennai 69', '2604010006', '', '1', 'upload_files/candidate_tracker/85694224397_AarthigaElavarasanResume202602091859100000.pdf', NULL, '1', '2026-04-01', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'got 4 marks in aptitude', '', '', '', '', '', '1970-01-01', 1, '2026-04-01 05:37:07', 154, '2026-04-01 12:22:44', 0, NULL, 1),
(29328, 'Mathuvarshini P', '11', '9786955205', '9952706029', 'mathuvarshinihr@gmail.com', '2001-12-06', 24, '2', '2', 'M.Palanisamy', 'RTD Professor', 500000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2604010007', '', '1', 'upload_files/candidate_tracker/29746541677_Mathuvarshini.P.pdf', NULL, '2', '2026-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '1', NULL, '2', '0', NULL, NULL, 'H1030', '0', '0', '0', NULL, 1, '2026-04-01 05:50:07', 1, '2026-04-01 06:15:13', 0, NULL, 1),
(29329, 'Gunjan Goyal', '6', '9884107176', '', 'gunjann031@gmail.com', '2000-03-31', 26, '2', '2', 'Savita Goyal', 'House wife', 500000.00, 3, 0.00, 26000.00, 'Royapettah', 'Royapettah', '2604010008', '50', '2', 'upload_files/candidate_tracker/46635667192_MyDocument.pdf', NULL, '1', '2026-04-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', 'doesnt know to speak tamil fluently', '', '', '', '', '', '1970-01-01', 1, '2026-04-01 05:55:19', 154, '2026-04-02 12:26:31', 0, NULL, 1),
(29330, '', '0', '8925045279', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604010009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-01 05:57:00', 0, NULL, 0, NULL, 1),
(29331, 'Kaviya varushini', '4', '8610672465', '', 'varushini.kaviya.it@gmail.com', '2004-05-24', 21, '2', '2', 'Kamalanathan', 'Farmer', 25000.00, 1, 0.00, 25000.00, 'Thanjavur', 'Thanajavur', '2604010010', '1', '1', 'upload_files/candidate_tracker/60026867637_KV.pdf', NULL, '1', '2026-04-01', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', 'C99176', '1970-01-01', 1, '2026-04-01 06:09:00', 154, '2026-04-01 12:10:16', 0, NULL, 1),
(29332, 'Mathu Varshini', '11', '9786955205', '', 'mathuvarshini73@gmail.com', '2001-12-06', 24, '2', '2', 'Palanisam', 'Retired professor', 50000.00, 0, 0.00, 0.00, 'coimbatore', 'nanganallur', '2604010011', '1', '1', 'upload_files/candidate_tracker/9599546593_Resume01042026095248am.pdf', NULL, '1', '2026-04-01', 0, '', '1', '109', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', '1970-01-01', '2', '8', '', '', 'H1030', '', '', '', '1970-01-01', 154, '2026-04-01 11:42:46', 154, '2026-04-01 11:44:53', 0, NULL, 1),
(29333, 'vinciya A', '11', '8925045279', '', 'vinciyaasaithambi221@gmail.com', '2003-11-11', 22, '2', '2', 'asaithambi R', 'business', 15000.00, 1, 0.00, 17000.00, 'mannadi', 'mannadi', '2604010012', '1', '1', 'upload_files/candidate_tracker/28997287544_vvcafs.pdf', NULL, '1', '2026-04-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', '1970-01-01', '2', '8', '', '', 'H1017', '', '55605', '55566', '1970-01-01', 154, '2026-04-01 11:54:03', 154, '2026-04-01 03:56:29', 0, NULL, 1),
(29334, 'Shaik Musiddika', '4', '7799350667', '9652314199', 'musiddikashaik@gmail.com', '2001-10-15', 24, '5', '2', 'Sharif', 'Student', 15.00, 3, 0.00, 20.00, 'Andhra Pradesh', 'Btm layout frist stage', '2604010013', '', '1', 'upload_files/candidate_tracker/22071702708_SUSIMUSIDDIKA.docx', NULL, '1', '2026-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-01 06:25:36', 1, '2026-04-01 06:40:43', 0, NULL, 1),
(29335, '', '0', '8639794470', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604010014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-01 06:36:34', 0, NULL, 0, NULL, 1),
(29336, 'PUNEETH KUMAR B HOSUR', '4', '7829824048', '', 'puneethosur411@gmail.com', '1997-06-04', 28, '2', '2', 'BHEEMAPPA', 'Retired Bank employee', 150000.00, 5, 0.00, 25000.00, 'Hubballi', 'Domlur', '2604010015', '1', '1', 'upload_files/candidate_tracker/20633033170_ResumePUNEETH.pdf', NULL, '1', '2026-04-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '', '', '1970-01-01', 1, '2026-04-01 07:05:21', 162, '2026-04-01 12:45:47', 0, NULL, 1),
(29337, 'jaishwin kumaar', '31', '9342270072', '', 'romanjaishwin@gmail.com', '2002-12-04', 23, '2', '2', 'rajan', 'videography', 40000.00, 1, 0.00, 250000.00, 'chennai', 'chennai', '2604010016', '72', '1', 'upload_files/candidate_tracker/88312698018_ResumE1.pdf', NULL, '1', '2026-04-01', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'system task not cleared', '', '', '', '', '', '1970-01-01', 1, '2026-04-01 07:22:03', 154, '2026-04-01 02:42:09', 0, NULL, 1),
(29338, 'Kaviya', '4', '6369431841', '9941509744', 'kaviyam1610@gmail.com', '2003-10-16', 22, '2', '2', 'Palani', 'Octopus marine', 2000000.00, 1, 0.00, 22000.00, '37/71 butchammal street lakshimikovil chennai-81', '31/2 West kalmandabam road royapuram chennai-13', '2604010017', '50', '1', 'upload_files/candidate_tracker/94721002258_kaviyaresume.pdf', NULL, '1', '2026-04-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-01 08:36:35', 1, '2026-04-01 08:44:33', 0, NULL, 1),
(29339, '', '0', '9489475450', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604010018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-01 08:37:23', 0, NULL, 0, NULL, 1),
(29340, 'nilavarshini', '13', '6369448049', '', 'nilavarshini2005@gmail.com', '2011-04-01', 15, '2', '2', 'indira', 'farmer', 400000.00, 2, 0.00, 1000000.00, 'chennai', 'chennai', '2604010019', '1', '1', 'upload_files/candidate_tracker/95224038375_Nilavarshiniresume.pdf', NULL, '1', '2026-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 09:17:24', 1, '2026-04-01 09:23:49', 0, NULL, 1),
(29341, 'Khaliq Mohammed Mukthar', '4', '8220367927', '', 'khaliqmohamedm@gmail.com', '2001-06-22', 24, '3', '2', 'Mohamed Mukthar', 'Delivery Boy', 25000.00, 1, 0.00, 25000.00, 'Kumbakonam', 'Kumbakonam', '2604010020', '', '2', 'upload_files/candidate_tracker/16027828299_KhaliqMERPSupportExecutive.pdf', NULL, '1', '2026-04-01', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '4', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-01 09:51:44', 154, '2026-04-01 04:39:35', 0, NULL, 1),
(29342, 'GOPU DEVENDRAN', '4', '8778298423', '', 'gopudevendran@gmail.com', '1997-06-01', 28, '3', '2', 'Devendran A', 'Car driver', 18000.00, 1, 22000.00, 35000.00, 'Kumbakonam', 'Chennai', '2604010021', '', '2', 'upload_files/candidate_tracker/56876235706_GopuDResume1.pdf', NULL, '1', '2026-04-01', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '4', '7', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-01 09:52:37', 154, '2026-04-01 04:39:52', 0, NULL, 1),
(29343, 'Karthikeyan.M', '13', '9361556968', '9790165817', 'karthikeyanm0082001@gmail.com', '2001-08-10', 24, '2', '2', 'Muthusamy.P', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Karur', 'Chennai', '2604010022', '1', '1', 'upload_files/candidate_tracker/11004451258_KarthikeyanResumepy.pdf', NULL, '1', '2026-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 10:55:01', 1, '2026-04-01 11:10:34', 0, NULL, 1),
(29344, '', '0', '8637419988', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604010023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-01 11:02:19', 0, NULL, 0, NULL, 1),
(29345, 'Devipriya', '13', '8428454823', '9894234375', 'devipriyag29@gmail.com', '2005-03-29', 21, '2', '2', 'Ganesan, Muthumari', 'Cooli', 70000.00, 1, 0.00, 3.50, 'CHENNAI', 'CHENNAI', '2604010024', '1', '1', 'upload_files/candidate_tracker/15790699135_DeviPriyaResume.pdf', NULL, '1', '2026-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 11:02:57', 1, '2026-04-01 11:09:03', 0, NULL, 1),
(29346, 'Elakkiya C', '13', '9361033693', '8248080766', 'elakkiyasekar2003@gmail.com', '2003-04-10', 22, '2', '2', 'Chandrasekaran K', 'Farmer', 72000.00, 2, 0.00, 4.00, 'Cuddalore', 'Cuddalore', '2604010025', '1', '1', 'upload_files/candidate_tracker/40352041732_ElakkiyaResume.pdf', NULL, '1', '2026-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 11:03:47', 1, '2026-04-01 11:14:51', 0, NULL, 1),
(29347, 'Meenachi Vaithiyanathan', '13', '6382863850', '9943159938', 'itsmeenahere04@gmail.com', '2004-02-07', 22, '2', '2', 'Vaithiyanathan', 'Farmer', 60000.00, 1, 0.00, 16000.00, 'Thiruvarur', 'Chennai', '2604010026', '1', '1', 'upload_files/candidate_tracker/21860050995_MeenachiResume.pdf5.pdf', NULL, '1', '2026-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 11:03:50', 1, '2026-04-02 05:48:19', 0, NULL, 1),
(29348, 'Tamil Selvam', '11', '7092394083', '9092156883', 'ctamil7092@gmail.com', '2002-01-04', 24, '2', '2', 'Chellam a ravi', '6', 18000.00, 6, 0.00, 250009.00, 'Madurai', 'Chennai', '2604010027', '1', '1', 'upload_files/candidate_tracker/7325860043_TamilselvamSQLDeveloperFresher.pdf', NULL, '1', '2026-04-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 11:19:52', 1, '2026-04-02 05:34:33', 0, NULL, 1),
(29349, 'Kabilan Rameshkannan', '13', '9751507044', '9344037003', 'kabildeva8@gmail.com', '2000-10-19', 25, '2', '2', 'Rameshkannan', 'Binder', 15000.00, 1, 0.00, 18000.00, 'Kariapatti', 'Kariapatti', '2604010028', '1', '1', 'upload_files/candidate_tracker/47948032944_KabilanRPythonFullStackDeveloperFresher.pdf', NULL, '1', '2026-04-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 12:36:41', 1, '2026-04-01 12:50:02', 0, NULL, 1),
(29350, 'Vishwa velmurugan', '13', '7868940967', '', 'vishwavelmurugan01@gmail.com', '2002-08-01', 23, '2', '2', 'r velmurugan', 'government bus driver', 40000.00, 1, 0.00, 12000.00, 'vriddhachalam cuddalore district', 'thiruvanmiyur chennai', '2604010029', '1', '1', 'upload_files/candidate_tracker/58529551840_VISHWAVELMURUGANCV5.pdf', NULL, '1', '2026-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 12:53:30', 1, '2026-04-01 01:44:03', 0, NULL, 1),
(29351, 'Sridhar K', '13', '7812818107', '', 'sksridhar1210@gmail.com', '2002-10-12', 23, '2', '2', 'Kumaran S', 'Driver', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Coimbatore', '2604010030', '1', '1', 'upload_files/candidate_tracker/20600823547_SridharKResume.pdf', NULL, '1', '2026-04-02', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-01 01:00:29', 154, '2026-04-02 10:55:36', 0, NULL, 1),
(29352, 'Sibijan s', '2', '9385486131', '', 'sibijan2002@gmail.com', '2002-05-19', 23, '2', '2', 'Sibi', 'Fisherman', 14000.00, 1, 0.00, 300000.00, 'kanniyakumari', 'kanniyakumari', '2604010031', '1', '1', 'upload_files/candidate_tracker/16680824201_SibijanSQLDeveloperFresher.pdf', NULL, '1', '2026-04-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 01:03:21', 1, '2026-04-02 05:21:26', 0, NULL, 1),
(29353, 'Hariharan Selvaraj', '13', '9566663532', '', 'hariselvaraj1810@gmail.com', '2003-10-18', 22, '2', '2', 'Selvaraj', 'Driver', 40000.00, 1, 265000.00, 265000.00, 'chennai', 'chennai', '2604010032', '1', '2', 'upload_files/candidate_tracker/84779711314_Hariresume.pdf', NULL, '1', '2026-04-02', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 01:06:33', 1, '2026-04-01 01:16:41', 0, NULL, 1),
(29354, 'Ajith kumar', '6', '6379146116', '9659765980', 'pajithkumarcse2022@gmail.com', '2001-12-27', 24, '2', '2', 'Perumal', 'Farmer', 20000.00, 1, 18500.00, 21000.00, 'Salem', 'Guindy', '2604010033', '1', '2', 'upload_files/candidate_tracker/55881319722_originalresumeak1.pdf', NULL, '1', '2026-04-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-04-01 01:13:13', 154, '2026-04-02 02:38:29', 0, NULL, 1),
(29355, 'V Hariharan', '13', '9994083491', '', 'hariharan5670831@gmail.com', '2005-11-20', 20, '2', '2', 'VENKATESAN', 'Not Employee', 15000.00, 1, 0.00, 10000.00, 'Ranipet', 'Ranipet', '2604010034', '1', '1', 'upload_files/candidate_tracker/25603212668_HariharanJavaDeveloper.pdf', NULL, '1', '2026-04-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 02:09:57', 1, '2026-04-01 02:25:27', 0, NULL, 1),
(29356, '', '0', '9080510368', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604010035', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-01 02:11:09', 0, NULL, 0, NULL, 1),
(29357, 'Aravinthan A', '2', '9087588032', '', 'aravinth17a@gmail.com', '2002-12-17', 23, '2', '2', 'Angusamy D', 'Fisher man', 75000.00, 1, 0.00, 15000.00, 'Rameswaram,ramanathapuram', 'Kodambakkam,chennai', '2604010036', '1', '1', 'upload_files/candidate_tracker/95199697241_AravinthanCV.pdf', NULL, '1', '2026-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-01 04:50:49', 1, '2026-04-02 06:31:01', 0, NULL, 1),
(29358, 'Elavarasi Dayana M', '4', '8939682966', '7448972966', 'dayana.saral1997@gmail.com', '1997-09-16', 28, '2', '1', 'Manoj.P', 'Coding', 25000.00, 1, 28000.00, 33000.00, 'Chennai', 'Chennai', '2604010037', '1', '2', 'upload_files/candidate_tracker/6541184340_CV2026020310115996.pdf', NULL, '1', '2026-04-02', 0, '', '3', '59', '2026-04-07', 350000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp and a gap in her career  same calling exp but not in Insurance Can give a try and check in training', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '4', '1', '', '', 'H1030', '', '55824', '55560', '2026-04-07', 1, '2026-04-01 06:04:49', 60, '2026-04-07 09:50:38', 0, NULL, 1),
(29359, 'H.Divya', '4', '9095376256', '9003457057', 'ddivyaharikrishnan@gmail.com', '2003-07-18', 22, '2', '2', 'Harikrishnan', 'Catering work', 35000.00, 1, 0.00, 14000.00, '17 Ramakrishnapuram 3 rd street , Thanjavur', '17 Ramakrishna 3rd Street, Thanjavur', '2604020001', '1', '1', 'upload_files/candidate_tracker/42677190123_CV2026032315533239.pdf', NULL, '1', '2026-04-06', 0, '', '3', '59', '2026-04-13', 168000.00, '', '1', '1970-01-01', '1', 'Communication Ok fresher will take leave for exams inbetween can give a try and check', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', 'C99176', '2026-04-13', 1, '2026-04-02 04:05:40', 60, '2026-04-11 07:14:49', 0, NULL, 1),
(29360, 'Radha p', '6', '9345820305', '9883401247', 'jamesradha0809@gmail.com', '1992-12-27', 33, '2', '1', 'James', 'Cooly', 2.00, 3, 22000.00, 25000.00, 'Korukkupet', 'Korukkupet', '2604020002', '1', '2', 'upload_files/candidate_tracker/72619084025_D391297FEB2026.PDF', NULL, '1', '2026-04-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-04-02 04:59:56', 154, '2026-04-02 02:39:34', 0, NULL, 1),
(29361, 'Navaneethakrishnan R', '5', '9488382903', '9080694128', 'naveen.ramsan@gmail.com', '1999-05-29', 26, '2', '2', 'Ramamoorthy', 'RTD - Head clerk (Govt)', 40000.00, 0, 0.00, 30000.00, 'Peravurani, Thanjavur (dts)', 'Peravurani, Thanjavur (dts)', '2604020003', '1', '2', 'upload_files/candidate_tracker/14926215168_NAVANEE0002.docx', NULL, '1', '2026-04-02', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55650', '55560', '1970-01-01', 1, '2026-04-02 05:02:43', 154, '2026-04-02 01:45:19', 0, NULL, 1),
(29362, 'Sridhar K', '11', '9976767403', '7812818107', 'sksridhar1210@gmail.com', '2011-04-02', 0, '2', '2', 'Kumaran S', 'Driver', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Coimbatore', '2604020004', '1', '1', 'upload_files/candidate_tracker/19126198666_SridharKResume.pdf', NULL, '1', '2026-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-02 05:16:31', 1, '2026-04-02 05:22:42', 0, NULL, 1),
(29363, '', '0', '9597277525', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604020005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-02 05:18:09', 0, NULL, 0, NULL, 1),
(29364, 'Sreedharan B R', '6', '7094143199', '9080588142', 'banusree027@gmail.com', '1998-03-28', 28, '2', '2', 'Raghu', 'Driver', 30000.00, 1, 3.00, 4.00, 'Chennai', 'Chennai', '2604020006', '50', '2', 'upload_files/candidate_tracker/36858806811_sreedharanresume1.pdf', NULL, '1', '2026-04-02', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-02 05:25:15', 154, '2026-04-02 02:48:55', 0, NULL, 1),
(29365, 'Swetha M', '6', '9597277525', '', 'Mswetham002@gmail.com', '2004-08-07', 21, '1', '2', 'Murugan', 'Farmer', 30000.00, 1, 18.00, 22.00, 'No 9 new colony,main Street, thennaripattu', 'No 14 abirami nagar irumbuliyur', '2604020007', '', '2', 'upload_files/candidate_tracker/11477295872_swetharesume.pdf', NULL, '1', '2026-04-02', 1, 'Mariyal', '3', '59', '2026-04-07', 222000.00, '', '1', '1970-01-01', '2', 'Communication Ok have exp in same domain can give a try and check in our process worked in Vizza xxamp star Let us check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55732', '55645', '2026-04-07', 1, '2026-04-02 05:30:45', 60, '2026-04-07 09:52:20', 0, NULL, 1),
(29366, 'G VISHWA', '13', '9363358744', '', 'gu.vishwa2004@gmail.com', '2004-08-09', 21, '3', '2', 'GOPI K', 'Bussiness Man', 50000.00, 1, 0.00, 3.50, 'Vellore', 'Chennai', '2604020008', '', '1', 'upload_files/candidate_tracker/93998274066_Vishwa.GResume2.pdf', NULL, '1', '2026-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-02 06:14:13', 1, '2026-04-02 06:21:32', 0, NULL, 1),
(29367, 'Rajbharath V', '13', '7200724162', '', 'rajbharath5858@gmail.com', '2003-10-26', 22, '3', '2', 'Venkatesan', 'Farmer', 25000.00, 1, 0.00, 4.00, 'Kanchipuram', 'Chennai', '2604020009', '', '1', 'upload_files/candidate_tracker/91843720703_RajbharathVres.pdf', NULL, '1', '2026-04-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-02 06:15:42', 154, '2026-04-08 12:27:49', 0, NULL, 1),
(29368, 'Sriharan A G', '13', '8668046943', '', 'sriharan30144@gmail.com', '2003-02-05', 23, '3', '2', 'Sundaravalli', 'Tailor', 20000.00, 0, 0.00, 20000.00, 'Chennai, Avadi', 'Chennai, Avadi', '2604020010', '', '1', 'upload_files/candidate_tracker/79809195925_Sriharanresumep260319132033.pdf', NULL, '1', '2026-04-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected in technical round', '2', '1', '', '4', '6', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-02 06:15:53', 154, '2026-04-08 03:30:28', 0, NULL, 1),
(29369, 'Prince Infant A', '13', '9715615005', '', 'princeinfant3@gmail.com', '2005-09-22', 20, '2', '2', 'antony joseph raj t', 'fresher', 300000.00, 1, 0.00, 350000.00, 'karur', 'chennai', '2604020011', '1', '1', 'upload_files/candidate_tracker/84050675863_PrinceInfantA.pdf', NULL, '1', '2026-04-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', '0', '0', NULL, 1, '2026-04-02 07:22:26', 1, '2026-04-02 07:32:29', 0, NULL, 1),
(29370, 'Gokulaprasath d', '13', '9677667807', '6381816584', 'prasathgokul595@gmail.com', '2003-12-28', 22, '2', '2', 'jaya', 'fresher', 15000.00, 1, 0.00, 350000.00, 'karur', 'chennai', '2604020012', '1', '1', 'upload_files/candidate_tracker/23576691018_GokulaprasathDresume.pdf', NULL, '1', '2026-04-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1008', '0', '0', '0', NULL, 1, '2026-04-02 07:38:48', 1, '2026-04-02 07:43:57', 0, NULL, 1),
(29371, 'Shriram Ashokraj', '13', '7010477199', '', 'shriashokraj5@gmail.com', '2004-07-05', 21, '2', '2', 'ashokraj', 'business', 30000.00, 1, 0.00, 350000.00, 'Karur', 'chennai', '2604020013', '1', '1', 'upload_files/candidate_tracker/45216552527_ShriramResume.pdf', NULL, '1', '2026-04-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', '0', '0', NULL, 1, '2026-04-02 07:44:59', 1, '2026-04-02 07:52:43', 0, NULL, 1),
(29372, 'Harish R', '13', '6383948265', '9585566336', 'harishramz0035@gmail.com', '2004-12-01', 21, '2', '2', 'ramesh', 'mation', 15000.00, 1, 0.00, 300000.00, 'karur', 'chennai', '2604020014', '1', '1', 'upload_files/candidate_tracker/71479201845_HarishAdvanceresume.pdf', NULL, '1', '2026-04-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', '0', '0', NULL, 1, '2026-04-02 07:50:27', 1, '2026-04-02 07:57:01', 0, NULL, 1),
(29373, '', '0', '7305543668', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604020015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-02 08:37:09', 0, NULL, 0, NULL, 1),
(29374, 'Prasanth D', '6', '9943485998', '', 'prasanth07.d@gmail.com', '2002-02-08', 24, '2', '2', 'Meenakshi', 'House wife', 15000.00, 0, 17000.00, 20000.00, '5/88, Nadar street vp kovil Rasipuram namakkal dt', 'Padi pudhu Nagar Chennai', '2604020016', '50', '2', 'upload_files/candidate_tracker/6320821810_prasanth.D2.pdf', NULL, '1', '2026-04-03', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was better in communication and have confidence and in need job and so we will try further.', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1287', 'C99176', '1970-01-01', 1, '2026-04-02 09:23:46', 154, '2026-04-07 09:42:55', 0, NULL, 1),
(29375, 'Sujitha Elayaraja', '6', '6369229377', '9943485998', 'sujithapooja30@gmail.com', '2000-08-30', 25, '2', '2', 'Elayaraja', 'Supervisor', 25000.00, 1, 16000.00, 22000.00, '5/5 B ,palavankadu v.p.kovil, Namakkal.637505', 'Padi puthur', '2604020017', '50', '2', 'upload_files/candidate_tracker/87694165224_sujitha.E1.pdf', NULL, '1', '2026-04-03', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-02 09:24:11', 154, '2026-04-03 11:32:19', 0, NULL, 1),
(29376, 'Kavitha s', '5', '9042015549', '7402650055', 'Kaviangel0311@gmail.com', '2003-11-03', 22, '2', '1', 'Ranjithkumar S', 'Salaried', 30000.00, 2, 375000.00, 500000.00, 'Chennai', 'Chennai', '2604020018', '1', '2', 'upload_files/candidate_tracker/6307844981_Newresume.pdf', NULL, '1', '2026-04-06', 0, '', '1', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55735', '55557', '1970-01-01', 1, '2026-04-02 04:34:08', 154, '2026-04-06 04:13:31', 0, NULL, 1),
(29377, 'Divya bharathi', '6', '7200912147', '', 'divya7200912147@gmail.com', '2001-08-25', 24, '2', '2', 'Saravanan', 'Business', 40000.00, 5, 0.00, 18000.00, 'Mannady', 'Mannady', '2604030001', '1', '2', 'upload_files/candidate_tracker/40596912901_DivyaNewResume.docx', NULL, '1', '2026-04-03', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication was not so good and she also lacking confidence so rejected\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1287', 'C99176', '1970-01-01', 1, '2026-04-03 04:44:12', 154, '2026-04-03 11:33:46', 0, NULL, 1),
(29378, '', '0', '9360598986', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604030002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-03 06:01:12', 0, NULL, 0, NULL, 1),
(29379, '', '0', '6385932863', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604030003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-03 06:04:15', 0, NULL, 0, NULL, 1),
(29380, 'akash s', '6', '8144356811', '9677516850', 'charanakash1234@gmail.com', '2011-04-03', 0, '2', '2', 'suresh', 'cashier', 30000.00, 1, 18000.00, 25000.00, 'ambur', 'Velachery', '2604030004', '71', '2', 'upload_files/candidate_tracker/11752429909_P2BRaisingCapiral.pdf', NULL, '1', '2026-04-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-03 06:10:25', 154, '2026-04-06 02:44:22', 0, NULL, 1),
(29381, '', '0', '8778521065', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604030005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-03 06:37:02', 0, NULL, 0, NULL, 1),
(29382, 'Kaviya', '4', '7200804902', '7548896518', 'kaviyaelangovan174@gmail.com', '2004-10-15', 21, '2', '2', 'Elangovan', 'Service Ambassador', 25000.00, 1, 14.50, 15.00, 'Melapalayam', 'Melapalayam', '2604030006', '50', '2', 'upload_files/candidate_tracker/19156162095_KaviyaElangovanResume.pdf', NULL, '1', '2026-04-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-03 08:32:16', 1, '2026-04-03 08:35:33', 0, NULL, 1),
(29383, 'Rajarethinam sinthuja', '4', '7010440973', '9600805785', 'sindhujarajarethinam72@gmail.com', '2003-03-30', 23, '2', '2', 'Rajarethinam', 'Farmer', 100000.00, 1, 0.00, 15000.00, '1/78, Kalluranikadu, peravurani Tk,Thanjavur dt', 'Thanjavur', '2604030007', '1', '1', 'upload_files/candidate_tracker/45694620930_resume3.pdf', NULL, '1', '2026-04-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1023', 'C99176', '1970-01-01', 1, '2026-04-03 10:50:21', 154, '2026-04-06 10:19:43', 0, NULL, 1),
(29384, 'HARSHAVARDHAN', '6', '9176176826', '6369336571', 'harshavardha17@gmail.com', '2003-10-17', 22, '1', '2', 'Venkataramani', 'Home maker', 18000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2604040001', '', '1', 'upload_files/candidate_tracker/12664184429_HarshaVardhanEDataAnalystics.pdf', NULL, '1', '2026-04-04', 0, '99308', '1', '164', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55692', '55645', '1970-01-01', 1, '2026-04-04 06:41:40', 159, '2026-04-06 10:20:37', 0, NULL, 1),
(29385, 'MOHAMED IBRAHIM A', '4', '9840635533', '9710082010', 'ibupvt6a@gmail.com', '2002-11-22', 23, '1', '2', 'Ansar', 'Plamber', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2604040002', '', '1', 'upload_files/candidate_tracker/646833227_DocumentfromMOHAMEDIBRAHIM6.pdf', NULL, '1', '2026-04-04', 0, '99308', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-04 06:41:49', 1, '2026-04-04 06:52:33', 0, NULL, 1),
(29386, 'Brahmashakthi R', '6', '9840293212', '7538890708', 'rbshakthi2002@gmail.com', '2002-09-08', 23, '2', '1', 'Ramachandran', 'Coolie Thozhill', 20000.00, 1, 35000.00, 38000.00, 'Chennai', 'Maraimalai nagar', '2604050001', '1', '2', 'upload_files/candidate_tracker/68532438726_SCAN20260406090611299.pdf', NULL, '1', '2026-04-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, communication Good, 1.5 yrs tele sales exp, pls confirm the salary and joining date,', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', 'C99176', '1970-01-01', 1, '2026-04-05 03:38:49', 154, '2026-04-06 02:41:52', 0, NULL, 1),
(29387, 'ARIHARAN P', '6', '9994010451', '', 'ariharancharlie@gmail.com', '1998-04-05', 28, '2', '1', 'JEBA SELVI', 'Chennai', 40000.00, 2, 27000.00, 27000.00, 'Old Washermanpet chennai', 'Old Washermanpet chennai', '2604060001', '1', '2', 'upload_files/candidate_tracker/63593242267_ARIHARANCVJS1.docx', NULL, '1', '2026-04-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-04-06 05:36:33', 154, '2026-04-06 02:43:22', 0, NULL, 1),
(29388, '', '0', '9900647046', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604060002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-06 06:40:46', 0, NULL, 0, NULL, 1),
(29389, '', '0', '6382351072', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604060003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-06 06:45:18', 0, NULL, 0, NULL, 1),
(29390, 'b seshu babu', '6', '8217899607', '', 'sheshusheshu21@gmail.com', '2002-06-13', 23, '2', '2', 'b prasad', 'farmer', 20000.00, 1, 220452.00, 320000.00, 'second cross deosugur raichur', 'jp nagar fifth phase', '2604060004', '1', '2', 'upload_files/candidate_tracker/26462450542_Resume.pdf', NULL, '1', '2026-04-06', 30, '', '1', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '55671', '55555', '1970-01-01', 1, '2026-04-06 07:49:31', 162, '2026-04-07 09:27:48', 0, NULL, 1),
(29391, '', '0', '9490729383', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604060005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-06 07:49:38', 0, NULL, 0, NULL, 1),
(29392, 'Arunraj Nagarajan', '4', '6383326167', '9585079554', 'nagarajanarunraj3@gmail.com', '2000-01-30', 26, '2', '2', 'Nagarajan', 'Farmer', 15000.00, 1, 28000.00, 35000.00, 'No 649/1 K.unjivadithi Thanjavur district 614615', 'No 07 kpa mens hostel', '2604060006', '50', '2', 'upload_files/candidate_tracker/14112136680_CV2026040619022439.pdf', NULL, '2', '2026-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-06 01:34:21', 1, '2026-04-07 04:38:23', 0, NULL, 1),
(29393, 'MOHAMMED HASSAN', '6', '9611300164', '7019242430', 'imhassan54321@gmail.com', '2003-11-19', 22, '2', '2', 'Afsar pasha', 'Driver', 30000.00, 2, 24000.00, 33000.00, 'Bengaluru', 'Bengaluru', '2604070001', '57', '2', 'upload_files/candidate_tracker/46931283227_MohammedHassanResume.pdf', NULL, '1', '2026-04-07', 10, '', '5', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested in sales', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55671', '55555', '1970-01-01', 1, '2026-04-07 04:43:33', 154, '2026-04-07 10:25:17', 0, NULL, 1),
(29394, 'Syed saleem basha s', '5', '9150294259', '9940342072', 'staticsaleem46@gmail.com', '2005-01-19', 21, '2', '2', 'syed salam basha', 'ailor', 17000.00, 1, 25000.00, 27000.00, 'Chennai', 'Chennai', '2604070002', '50', '2', 'upload_files/candidate_tracker/58098340665_SalesResume.pdf', NULL, '1', '2026-04-07', 0, '', '3', '59', '2026-04-10', 312000.00, '', '1', '1970-01-01', '1', 'Communication ok fresher for our insurance sales have 3yrs exp in customer handling and entire branch handling  seems to be ok in communication let us check in training and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55735', '55557', '2026-04-10', 1, '2026-04-07 05:04:23', 60, '2026-04-10 10:33:41', 0, NULL, 1),
(29395, 'Monisha M', '31', '9159785186', '', 'monisha.02.m@gmail.com', '2011-04-07', 0, '2', '2', 'Murugesan', 'Farmer', 48000.00, 1, 0.00, 20000.00, 'Ariyalur', 'Chennai', '2604070003', '1', '1', 'upload_files/candidate_tracker/83758934958_MonishaResume.pdf', NULL, '1', '2026-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', '0', '0', NULL, 1, '2026-04-07 05:15:13', 1, '2026-04-07 05:19:51', 0, NULL, 1),
(29396, 'MURUGAN K', '13', '9080119692', '', 'muruganskm2002@gmail.com', '2002-12-01', 23, '2', '1', 'P KANNAN', 'Farmer', 10000.00, 0, 0.00, 25000.00, 'Arasakulam, virudhunagar Dt, Tamil Nadu, India', 'Arasakulam, virudhunagar Dt', '2604070004', '1', '1', 'upload_files/candidate_tracker/88318175397_MURUGANKRESUME.pdf', NULL, '1', '2026-04-07', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'got 3 marks in aptitude', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-07 05:38:46', 154, '2026-04-07 12:23:14', 0, NULL, 1),
(29397, 'K NOOR BASHA', '6', '7995961539', '7386666851', 'bashaknoorbasha@gmail.com', '1996-08-19', 29, '2', '2', 'No', 'MBA finance', 70000.00, 2, 0.00, 20000.00, 'Anantapur', 'Anantapur', '2604070005', '1', '1', 'upload_files/candidate_tracker/78050312038_noorresume11.pdf', NULL, '1', '2026-04-07', 0, '', '3', '59', '2026-04-09', 216000.00, '', '3', '2026-04-15', '1', 'Communication ok fresher for our roles career gap need to check in training and confirm let us check', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '55671', 'C99176', '2026-04-09', 1, '2026-04-07 06:24:30', 60, '2026-04-09 10:57:50', 0, NULL, 1),
(29398, 'Sadhashini M', '6', '8939814215', '', 'sadhasadha408@gmail.com', '2003-12-04', 22, '2', '2', 'Manikandan', 'Carpenter', 30000.00, 1, 19500.00, 25000.00, 'Chennai', 'Chennai', '2604070006', '1', '2', 'upload_files/candidate_tracker/91025474147_SadhaResume3.Pdf1.pdf', NULL, '1', '2026-04-07', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', 'candidate was given for the interview round to manager but left without attending', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-04-07 06:59:29', 154, '2026-04-07 02:53:52', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29399, 'Vasumitha M', '13', '8015878821', '', 'vasumithavasumitha3@gmail.com', '2003-11-11', 22, '2', '2', 'murugesan k', 'weaver', 30000.00, 1, 0.00, 200000.00, 'rasipuram', 'chennai', '2604070007', '1', '1', 'upload_files/candidate_tracker/72255462816_VasumithaMRESUME.pdf', NULL, '1', '2026-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1015', '0', '0', '0', NULL, 1, '2026-04-07 07:27:33', 1, '2026-04-07 07:31:39', 0, NULL, 1),
(29400, 'Pavithra Nachiar', '23', '8870720847', '', 'pavithra.nachiar@gmail.com', '2003-08-22', 22, '2', '2', 'chockalingam a', 'private company', 50000.00, 0, 0.00, 20000.00, 'Madipakkam', 'Madipakkam', '2604070008', '1', '1', 'upload_files/candidate_tracker/65640029776_Newupdatedresume.pdf', NULL, '1', '2026-04-08', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-07 07:31:03', 154, '2026-04-08 11:19:45', 0, NULL, 1),
(29401, 'Vijay C G', '6', '7483170469', '', 'vijay10cg@gmail.com', '1999-10-19', 26, '2', '2', 'No', 'Fresher', 1000000.00, 1, 0.00, 18000.00, 'Sangahalli v Davangere distric karanataka', 'medahalli Bengaluru', '2604070009', '1', '1', 'upload_files/candidate_tracker/98848208717_VijayCGResumeATSv2.pdf', NULL, '1', '2026-04-08', 0, '', '3', '59', '2026-04-10', 216000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher for Our sales Core IT profile need to check in training only', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1032', '', '55899', 'C99176', '2026-04-10', 1, '2026-04-07 11:17:25', 60, '2026-04-10 10:18:39', 0, NULL, 1),
(29402, 'M thasneema', '6', '8870159673', '8939370460', 'thasneema6899@gmail.com', '1999-08-06', 26, '2', '1', 'Azardeen', 'Business', 30000.00, 1, 0.00, 20000.00, 'Mylapore', 'Mylapore', '2604070010', '1', '1', 'upload_files/candidate_tracker/75691411996_thasneemaResume.ff.pdf', NULL, '1', '2026-04-08', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication and perfoirmance is little ok.but she is sensitive and have 4 year kids .sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55666', 'C99176', '1970-01-01', 1, '2026-04-07 12:32:05', 154, '2026-04-08 12:25:57', 0, NULL, 1),
(29403, 'p.pooja kamatchi', '11', '8778228923', '', 'poojakamatchi67@gmail.com', '2011-04-07', 0, '3', '2', 'Shanthi lakshmi', 'Housewife', 25000.00, 0, 0.00, 18.00, 'Kanchipuram', 'Chennai', '2604070011', '', '1', 'upload_files/candidate_tracker/90915626788_poojakamaachiupdatedresume.pdf', NULL, '1', '2026-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-07 12:45:18', 1, '2026-04-07 12:58:00', 0, NULL, 1),
(29404, '', '0', '6379433181', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604080001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-08 05:44:25', 0, NULL, 0, NULL, 1),
(29405, '', '0', '6374932939', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604080002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-08 06:15:48', 0, NULL, 0, NULL, 1),
(29406, 'Vasumitha M', '13', '8015878821', '', 'vasumithavasumitha3@gmail.com', '2003-11-11', 22, '2', '2', 'murugesan', 'weaver', 30000.00, 1, 0.00, 10000.00, 'Namakkal  Rasipuram', 'velacheri', '2604080003', '1', '1', 'upload_files/candidate_tracker/69991736897_VasumithaMRESUME.pdf', NULL, '1', '2026-04-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 154, '2026-04-08 11:58:57', 154, '2026-04-08 12:57:16', 0, NULL, 1),
(29407, '', '0', '7305342001', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604080004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-08 06:55:04', 0, NULL, 0, NULL, 1),
(29408, 'V Lakshmipriya', '34', '8637694531', '6381170676', 'priyavaratharaj1113@gmail.com', '2002-05-11', 23, '3', '2', 'Varatharajaperumal', 'Farmer', 75000.00, 1, 0.00, 200000.00, 'Tuticorin', 'Velachery,Chennai', '2604080005', '', '1', 'upload_files/candidate_tracker/59569351822_DOC20260327WA0000..pdf202604111040430000.pdf', NULL, '1', '2026-04-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-08 07:02:13', 154, '2026-04-11 04:12:10', 0, NULL, 1),
(29409, 'Keerthivasan s', '23', '6383904633', '', 'skeerthivasan703@gmail.com', '2004-11-19', 21, '3', '2', 'Sivakumar M', 'BUSINESS', 0.00, 0, 0.00, 0.00, 'KANCHIPURAM', 'KANCHIPURAM', '2604080006', '', '1', '0', NULL, '1', '2026-05-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', 'Rejected in system task', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-08 07:37:01', 154, '2026-05-04 06:08:45', 0, NULL, 1),
(29410, 'Lenin A', '13', '7200666239', '', 'lenin.25meb@licet.ac.in', '2004-02-25', 22, '2', '2', 'kavitha rani', 'tailoring', 30000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2604080007', '1', '1', 'upload_files/candidate_tracker/39143005022_LeninBE1.pdf', NULL, '1', '2026-04-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-08 07:38:08', 154, '2026-04-13 10:07:35', 0, NULL, 1),
(29411, 'Deluxan S', '6', '9677425636', '', 'delushan55@gmail.com', '2002-12-23', 23, '1', '2', 'Sivakulanathan', 'Security manager', 12000.00, 4, 0.00, 18000.00, 'Keezhpattu', 'Keezhpattu', '2604080008', '', '1', 'upload_files/candidate_tracker/32655465654_DeluxanSResume.docx.docx1.docx1.pdf', NULL, '1', '2026-04-08', 0, 'C99106', '3', '59', '2026-04-15', 198000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher for our insurance sales need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', 'C99176', '2026-04-15', 1, '2026-04-08 09:17:38', 60, '2026-04-15 10:12:27', 0, NULL, 1),
(29412, 'nasreen', '6', '7845832973', '', 'nasreenxib2@gmail.com', '2004-04-23', 21, '1', '2', 'noor mohamed', 'Business man', 20000.00, 2, 0.00, 16000.00, 'cuddalore', 'velecherry', '2604080009', '', '1', 'upload_files/candidate_tracker/1833660761_updatedresume.pdf', NULL, '1', '2026-04-08', 0, 'c99106', '3', '59', '2026-04-15', 186000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher for our insurance sales need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', 'P1287', 'C99176', '2026-04-15', 1, '2026-04-08 09:17:41', 60, '2026-04-15 10:13:57', 0, NULL, 1),
(29413, 'Syed Jaffer Abbas', '20', '6362621834', '9741019811', 'jafferabbas61@gmail.com', '2003-12-08', 22, '4', '2', 'Wazeer ali', 'Auto driver', 600000.00, 0, 25000.00, 27000.00, 'Austin town banglore', 'Austin town banglore', '2604080010', '', '2', 'upload_files/candidate_tracker/37085229713_Jafferabbassalespdf.pdf', NULL, '1', '2026-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-08 09:19:29', 1, '2026-04-08 09:24:39', 0, NULL, 1),
(29414, 'Ramya b', '6', '7339386790', '7339561068', '2808ramyab@gmail.com', '2011-04-08', 0, '2', '2', 'J. Babu', 'Driver', 120000.00, 1, 18000.00, 30000.00, '4570, 4th Street 1st main road MMDA mathur Chennai', '4570,4th Street 1st main road MMDA mathur Chennai', '2604080011', '1', '2', 'upload_files/candidate_tracker/82134706550_DOC20251124WA0007..pdf202512131924080000.pdf', NULL, '1', '2026-04-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-08 09:19:37', 154, '2026-04-09 06:08:02', 0, NULL, 1),
(29415, 'SUMIT HAMANANTH TIKOTA', '20', '6361699609', '9035542318', 'sumittikota1@gmail.com', '2011-04-08', 0, '5', '2', 'Hanamanth Tikota', 'Shop keeper', 30000.00, 1, 0.00, 25000.00, 'Bengaluru Navaraga Theater', 'CBI road ganganagar Bengaluru', '2604080012', '', '1', 'upload_files/candidate_tracker/34590306425_SumitCV.docx', NULL, '1', '2026-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-08 09:25:04', 1, '2026-04-08 09:35:05', 0, NULL, 1),
(29416, '', '0', '6381135652', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604080013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-08 09:42:22', 0, NULL, 0, NULL, 1),
(29417, 'Samson Samuel', '13', '9345701524', '9941168386', 'samsonsamuel676@gmail.com', '2002-05-05', 23, '2', '2', 'Thomas', 'Pastor', 25000.00, 1, 0.00, 300000.00, 'Chennai Guindy', 'Chennai Guindy', '2604080014', '1', '1', 'upload_files/candidate_tracker/14991166218_FinaLRESUME.pdf', NULL, '1', '2026-04-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-08 12:16:44', 154, '2026-04-09 11:10:22', 0, NULL, 1),
(29418, 'aaqeel', '33', '8754959162', '8122002531', 'aaqeelpersonal@gmail.com', '2004-08-30', 21, '5', '2', 'hakim sait', 'Business man', 20000.00, 1, 0.00, 20000.00, 'palavakkam', 'palavakkam', '2604080015', '', '1', 'upload_files/candidate_tracker/67746999111_AaqeelResume.pdf', NULL, '1', '2026-04-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-08 12:33:48', 1, '2026-04-08 12:37:36', 0, NULL, 1),
(29419, 'Murugadass Amirthalingam', '13', '7010657314', '', 'murugadass200304@gmail.com', '2004-03-20', 22, '2', '2', 'Amirthalingam', 'Conductor', 30000.00, 2, 0.00, 300000.00, 'Vridhachalam,Cuddalore', 'Poonamallee, chennai', '2604080016', '1', '1', 'upload_files/candidate_tracker/99831486347_MurugadassSoftwareDeveloperResume.pdf', NULL, '2', '2026-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-08 12:42:50', 1, '2026-04-08 12:47:07', 0, NULL, 1),
(29420, 'Surya kannan', '6', '9080877621', '7538881361', 'suryatnj.111@gmail.com', '1997-11-21', 28, '2', '2', 'Kannan', 'Own business', 250000.00, 1, 20000.00, 22000.00, 'Thanjavur', 'Thanjavur', '2604080017', '1', '2', 'upload_files/candidate_tracker/84645460437_Suryakannan.pdf.pdf', NULL, '1', '2026-04-08', 0, '', '5', '168', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'High profile not adapt to team , expected salary high', '5', '1', '', '4', '5', '', '2', '1970-01-01', '4', '3', '', '', 'H1030', '', 'CI144', 'C99176', '1970-01-01', 1, '2026-04-08 12:43:23', 154, '2026-04-08 06:58:05', 0, NULL, 1),
(29421, 'saran', '13', '9994830276', '', 'saranr2825@gmail.com', '2005-06-01', 20, '2', '2', 'ravichandran', 'farmer', 25000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2604090001', '1', '1', 'upload_files/candidate_tracker/95440794536_resume.pdf.pdf', NULL, '1', '2026-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-09 02:46:12', 1, '2026-04-09 03:07:44', 0, NULL, 1),
(29422, 'vasanthan santhavel', '13', '9092279064', '', 'vasanthansanthavel@gmail.com', '2003-10-15', 22, '2', '2', 'santhavel j', 'ashok leyland foundry division', 50000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2604090002', '1', '1', 'upload_files/candidate_tracker/25915019185_Resume.pdf', NULL, '1', '2026-04-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2026-04-09 05:06:53', 1, '2026-04-09 03:23:24', 0, NULL, 1),
(29423, 'Poovalagan P', '6', '7010953396', '', 'ppoovalagan27@gmail.com', '2002-05-27', 23, '2', '1', 'Palanivel M', 'Book binder', 20000.00, 1, 25000.00, 25000.00, 'chennai', 'chennai', '2604090003', '1', '2', 'upload_files/candidate_tracker/24735453359_PoovalaganPProfessionalResume.pdf', NULL, '1', '2026-04-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-09 05:23:28', 154, '2026-04-09 06:09:53', 0, NULL, 1),
(29424, '', '0', '7358181858', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604090004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-09 05:24:54', 0, NULL, 0, NULL, 1),
(29425, '', '0', '7358181859', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604090005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-09 05:25:10', 0, NULL, 0, NULL, 1),
(29426, 'Velusamy M', '13', '8072624996', '', 'Velusamy21.work@gmail.com', '2003-07-21', 22, '2', '2', 'Manivannan S', 'Own printing press', 30000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2604090006', '1', '1', 'upload_files/candidate_tracker/86737360447_velusamyMSoftwareDeveloper.pdf', NULL, '1', '2026-04-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-09 05:42:30', 154, '2026-04-09 12:57:55', 0, NULL, 1),
(29427, 'Tharun B', '13', '9342709956', '', 'tharunofficial9956@gmail.com', '2005-03-12', 21, '2', '2', 'N Balachandran', 'Chennai corporation', 30000.00, 1, 0.00, 180000.00, 'Chennai', 'Chennai', '2604090007', '1', '1', 'upload_files/candidate_tracker/78495985416_tharunresumeBSc.pdf', NULL, '1', '2026-04-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-09 05:42:44', 154, '2026-04-09 12:57:31', 0, NULL, 1),
(29428, '', '0', '9791223039', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604090008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-09 06:11:09', 0, NULL, 0, NULL, 1),
(29429, 'Sajeev', '6', '9940635743', '9150470859', 'sajeevronaldo2003@gmail.com', '2003-03-20', 23, '2', '2', 'p. sasikumar', 'turner', 30000.00, 0, 20000.00, 25000.00, 'chennai', 'chennai', '2604090009', '1', '2', 'upload_files/candidate_tracker/60184625026_resume.pdf', NULL, '1', '2026-04-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2026-04-09 06:14:53', 154, '2026-04-09 11:57:49', 0, NULL, 1),
(29430, 'Irfan', '6', '7406771198', '9035884289', 'irfankhan771198@gmail.com', '2001-05-01', 24, '1', '1', 'Suhana', '2 puc', 2.50, 3, 22000.00, 25000.00, 'Bommanahalli', 'Bommanahalli', '2604090010', '', '2', 'upload_files/candidate_tracker/82238311939_IRFAN.K2.docx', NULL, '1', '2026-04-09', 16, 'C99229', '3', '59', '2026-04-16', 276000.00, '', '3', '2026-04-18', '2', 'Communication Ok have exp but not exactly in uinsurance sales need to check in training and confirm', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', 'C99176', '2026-04-16', 1, '2026-04-09 06:30:30', 60, '2026-04-16 10:35:37', 0, NULL, 1),
(29431, '', '0', '7397459882', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604090011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-09 07:01:32', 0, NULL, 0, NULL, 1),
(29432, 'nivetha', '4', '7397459882', '', 'cnivetha2456@gmail.com', '2001-06-05', 24, '1', '1', 'chandrasekar', 'sofa lining', 20000.00, 1, 23500.00, 30000.00, 'kolathur', 'kolathur', '2604090012', '', '2', 'upload_files/candidate_tracker/97748203813_DOC20251203WA0011..pdf', NULL, '1', '2026-04-17', 0, 'p1015', '3', '59', '2026-04-20', 340000.00, '', '1', '1970-01-01', '1', 'need to review in training', '1', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 154, '2026-04-09 12:54:27', 60, '2026-04-20 10:05:23', 0, NULL, 1),
(29433, 'SANJAY E', '6', '9094313803', '8939454635', 'sanjayyogesh9@gmail.com', '2001-07-18', 24, '1', '2', 'elumalai', 'designer', 40000.00, 2, 20000.00, 25000.00, 'saidapet', 'saidapet', '2604090013', '', '2', 'upload_files/candidate_tracker/64925179052_SanjayResume.docx', NULL, '1', '2026-04-09', 0, 'c99308', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 154, '2026-04-09 03:02:14', 154, '2026-04-09 03:18:35', 0, NULL, 1),
(29434, 'Agalya D', '4', '8825750907', '', 'agalya.d2003@gmail.com', '2003-10-11', 22, '3', '2', 'Dhandapani', 'MRF pvt limited', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2604090014', '', '1', 'upload_files/candidate_tracker/55769663913_AgalyaDFlowCVResume20250418141.pdf', NULL, '1', '2026-04-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-09 10:05:01', 1, '2026-04-09 10:09:03', 0, NULL, 1),
(29435, 'm.GokulKrishna', '13', '8925655423', '6383026905', 'gokuldinesh32@gmail.com', '2002-08-08', 23, '2', '2', 'murugesh', 'business', 30000.00, 1, 0.00, 20000.00, 'perambalur', 'anna nagar chennai', '2604090015', '1', '1', 'upload_files/candidate_tracker/20031682541_GokulKrishnaresume..pdf', NULL, '1', '2026-04-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '0 marks in aptitude', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-09 11:31:39', 154, '2026-04-10 12:46:38', 0, NULL, 1),
(29436, 'Shifaya Fathima A', '31', '9043162752', '9677050903', 'shifayafathi24@gmail.com', '2004-09-24', 21, '2', '2', 'M Azzis Kani', 'Driver', 18000.00, 2, 0.00, 2.50, 'Chennai', 'Chennai', '2604090016', '1', '1', 'upload_files/candidate_tracker/88117294825_shifaya.pdf', NULL, '1', '2026-04-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '3 marks in aptitude', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-09 11:44:07', 154, '2026-04-10 12:17:58', 0, NULL, 1),
(29437, '', '0', '9514166619', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604090017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-09 11:44:40', 0, NULL, 0, NULL, 1),
(29438, 'Vignesh. A', '6', '6374583563', '', 'vigneshsriven@gmail.com', '2002-01-01', 24, '2', '2', 'Ashokan', 'farmer', 216000.00, 1, 216000.00, 300000.00, '4/24, Th road 5th lane , New washermenpet', '4/24, Th road 5th lane , New washermenpet', '2604090018', '50', '2', 'upload_files/candidate_tracker/85386866517_VigneshResume1.pdf', NULL, '1', '2026-04-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-09 01:34:22', 154, '2026-04-10 04:31:58', 0, NULL, 1),
(29439, 'Beulah J', '6', '7397420354', '', 'beaulah8897@gmail.com', '1997-08-08', 28, '2', '1', 'John.D', 'Self employed', 10000.00, 0, 3.00, 3.40, 'Chennai', 'Chennai', '2604100001', '1', '2', 'upload_files/candidate_tracker/57139305693_BeaulahJohn7yrsexp.docx', NULL, '1', '2026-04-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55605', '55566', '1970-01-01', 1, '2026-04-10 04:58:08', 154, '2026-04-10 04:31:40', 0, NULL, 1),
(29440, 'BRINDHA L', '4', '8148627367', '8525901410', 'santhanabrindha92@gmail.com', '1992-12-03', 33, '5', '2', 'D.Leenus raj', 'Non working', 30000.00, 3, 400000.00, 500000.00, 'Chennai', 'Chennai', '2604100002', '', '2', 'upload_files/candidate_tracker/25968811173_BrindhaLResume.pdf', NULL, '1', '2026-04-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-10 04:59:56', 1, '2026-04-10 05:12:46', 0, NULL, 1),
(29441, '', '0', '8148667746', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604100003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-10 05:40:19', 0, NULL, 0, NULL, 1),
(29442, 'Haritha', '34', '9952043272', '9087828383', 'harithaofficial07@gmail.com', '2002-09-30', 23, '3', '2', 'Muralidharan P', 'Own Business', 60000.00, 1, 260000.00, 320000.00, 'Chennai', 'Chennai', '2604100004', '', '2', 'upload_files/candidate_tracker/27554187855_HarithaResume.pdf', NULL, '1', '2026-04-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'got 1 mark in aptitude', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-10 05:41:48', 154, '2026-04-10 01:15:06', 0, NULL, 1),
(29443, 'VINOTH KATTAPOMMAN', '34', '9940975369', '9585755780', 'vinoth20040606@gmail.com', '2004-06-06', 21, '3', '2', 'Kattapomman R', 'Farmer', 20000.00, 1, 0.00, 13000.00, 'Ariyalur', 'Vadapalani,Chennai', '2604100005', '', '1', 'upload_files/candidate_tracker/39176783146_VINOTHK.pdf', NULL, '1', '2026-04-10', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-10 05:48:37', 154, '2026-04-10 11:41:54', 0, NULL, 1),
(29444, 'Vignesh k', '34', '8778734121', '9884191285', 'vigneshpro43@gmail.com', '2003-10-29', 22, '3', '2', 'Kuppan', 'Auto driver', 35000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2604100006', '', '1', 'upload_files/candidate_tracker/91625108689_VIGNESHK2.pdf', NULL, '1', '2026-04-10', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-10 05:48:47', 154, '2026-04-10 11:42:06', 0, NULL, 1),
(29445, 'b prasanthi', '6', '8148667746', '', 'prasanthiprasath179@gmail.com', '2004-06-27', 21, '1', '2', 'visrantha', 'house wife', 20000.00, 3, 16000.00, 18000.00, 'roapuram', 'roapuram', '2604100007', '', '2', 'upload_files/candidate_tracker/60463748292_cvresume.pdf', NULL, '1', '2026-04-10', 0, 'P1015', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 154, '2026-04-10 11:32:26', 154, '2026-04-10 04:31:23', 0, NULL, 1),
(29446, 'Jayasuthan vivek', '23', '6380762314', '', 'JAYASUTHAN1212@gmail.com', '2002-12-12', 23, '2', '2', 'vivek', 'teacher', 5.00, 2, 0.00, 2.00, 'cit nagar chennai', 'cit nagar chennai', '2604100008', '50', '1', 'upload_files/candidate_tracker/4570363597_IMG93262.pdf', NULL, '1', '2026-04-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-10 07:02:06', 1, '2026-04-10 07:08:16', 0, NULL, 1),
(29447, 'Eashwar T', '31', '9344219030', '', 'eashwar6899@gmail.com', '2004-07-09', 21, '5', '2', 'Thirumurugan K', 'Printing press', 45000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2604100009', '', '1', 'upload_files/candidate_tracker/30401520608_EashwarTFullStackDeveloper.pdf', NULL, '1', '2026-04-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '1 mark in programming', '2', '1', '', '4', '6', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-10 07:20:18', 154, '2026-04-10 04:17:41', 0, NULL, 1),
(29448, 'sowmiya R', '34', '7305342001', '', 'sowmiyaruso@gmail.com', '2002-02-22', 24, '5', '2', 'ramanikanth', 'auto driver', 20000.00, 1, 0.00, 2.50, 'perungudi', 'perungudi', '2604100010', '', '1', 'upload_files/candidate_tracker/7743512810_SowmiyaR.pdf', NULL, '1', '2026-04-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '2 marks in aptitude', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '2026-04-10', 154, '2026-04-10 12:58:21', 154, '2026-04-10 04:18:42', 0, NULL, 1),
(29449, 'abinaya', '6', '9003440304', '6380762314', 'abinayashan031145@gmail.com', '2003-04-03', 23, '2', '2', 'Shanmugam', 'Business', 20000.00, 1, 0.00, 20000.00, 'Aranthangi', 'Aranthangi', '2604100011', '1', '1', 'upload_files/candidate_tracker/97110180125_AbinayaResumeFormatted1.docx', NULL, '1', '2026-04-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-10 07:55:09', 154, '2026-04-13 10:05:03', 0, NULL, 1),
(29450, '', '0', '8925757381', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604100012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-10 08:37:03', 0, NULL, 0, NULL, 1),
(29451, '', '0', '8778693380', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604100013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-10 09:13:24', 0, NULL, 0, NULL, 1),
(29452, '', '0', '9361435877', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604100014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-10 09:15:28', 0, NULL, 0, NULL, 1),
(29453, '', '0', '9342845491', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604100015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-10 09:17:21', 0, NULL, 0, NULL, 1),
(29454, '262100218507', '13', '9842321467', '8610486431', 'info.eganesh26@gmail.com', '2002-07-26', 23, '3', '2', 'Elanchezhiyan', 'Civil engineer', 20000.00, 1, 0.00, 15000.00, 'PONDICHERRY', 'Chennai', '2604100016', '', '1', 'upload_files/candidate_tracker/11863662071_Ganeshresume.pdf', NULL, '1', '2026-04-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-10 09:19:30', 1, '2026-04-10 09:27:04', 0, NULL, 1),
(29455, 'Abishek m', '6', '8778693380', '', 'abishekmalini2002@gmail.com', '2002-08-21', 23, '2', '2', 'manoharan', 'passed awa', 25000.00, 3, 27000.00, 27000.00, 'Pulianthope,Chennai', 'Pulianthope, Chennai', '2604100017', '1', '2', 'upload_files/candidate_tracker/39276251366_updatedresumeabishekremovedcopy.pdf', NULL, '1', '2026-04-10', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '3', '3', '', '', 'H1005', '', '', '', '1970-01-01', 154, '2026-04-10 02:52:58', 154, '2026-04-10 02:59:26', 0, NULL, 1),
(29456, 'ramya', '6', '8925757381', '', 'ramyababu162000@gmail.com', '2000-05-16', 25, '2', '1', 'saravanan', 'job', 30000.00, 1, 27000.00, 27000.00, 'perambur', 'perambur', '2604100018', '1', '2', 'upload_files/candidate_tracker/53358539620_RamyaResumeCS1.pdf', NULL, '1', '2026-04-10', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate comunication and performance is little ok.5050 profile ,but expected higher package .sustainable is doubt', '5', '2', '', '', '', '', '2', '1970-01-01', '3', '3', '', '', 'H1005', '', '55666', 'C99176', '1970-01-01', 154, '2026-04-10 03:02:35', 154, '2026-04-17 09:29:44', 0, NULL, 1),
(29457, 'ganesh', '23', '9779514547', '9789514547', 'info.eganesh26@gmail.com', '2002-07-26', 23, '3', '2', 'Elanchezhiyan', 'Civil engineer', 20000.00, 1, 0.00, 15000.00, 'PONDICHERRY', 'PONDICHERRY', '2604100019', '', '1', 'upload_files/candidate_tracker/33682621834_Ganeshresume.pdf', NULL, '1', '2026-04-10', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '2 marks in aptitude', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-10 09:38:58', 154, '2026-04-10 04:17:20', 0, NULL, 1),
(29458, 'Vijitha', '5', '9342845491', '', 'vijithakamal04@gmail.com', '2004-05-07', 21, '2', '2', 'kamalakannan', 'farmer', 60000.00, 2, 25000.00, 30000.00, 'chidambaram', 'velacher', '2604100020', '68', '2', 'upload_files/candidate_tracker/95120967550_IMG20260206WA0004.pdf', NULL, '1', '2026-04-10', 0, '', '3', '59', '2026-04-17', 352200.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp in matrmimony for fe months given the same CTC need to check in training and confirm', '5', '2', '4', '1', '8', '1', '2', '1970-01-01', '3', '1', '', '', '', '', '55650', '55560', '2026-04-17', 154, '2026-04-10 03:11:12', 60, '2026-04-17 10:43:42', 0, NULL, 1),
(29459, 'Jayapriya C', '4', '9361435877', '', 'alamelujaya.c2001@gmail.com', '2001-08-30', 24, '2', '2', 'chinaraj', 'eb', 90000.00, 2, 25000.00, 30000.00, 'thiruvanamalai', 'tnagar', '2604100021', '68', '2', 'upload_files/candidate_tracker/39492806271_Jayapriyaresumcompressed.pdf', NULL, '1', '2026-04-10', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is ok for E sales ', '1', '2', '', '', '', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55824', '55560', '1970-01-01', 154, '2026-04-10 03:20:02', 154, '2026-04-17 09:29:13', 0, NULL, 1),
(29460, '', '0', '9786491793', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604100022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-10 11:54:48', 0, NULL, 0, NULL, 1),
(29461, '', '0', '9042177457', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604100023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-10 02:38:38', 0, NULL, 0, NULL, 1),
(29462, 'PRAVEENRAJ M', '13', '9442059450', '6380434858', 'praveenraj12102004@gmail.com', '2004-10-12', 21, '4', '2', 'Murugesan', 'Tea master', 85000.00, 2, 0.00, 2.00, '21-A Sulakshana street, virudhunagar', '39- vivekanand street, mgr nagar , Chennai', '2604110001', '', '1', 'upload_files/candidate_tracker/20106764627_Praveenjava.pdf', NULL, '1', '2026-04-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-11 05:14:16', 154, '2026-04-11 04:12:25', 0, NULL, 1),
(29463, 'KALPITAA M G', '2', '9043013271', '', 'mgkalpitaa@gmail.com', '2005-03-18', 21, '4', '2', 'Govindan', 'Manager', 50000.00, 1, 0.00, 2.00, 'Chennai', 'Chennai', '2604110002', '', '1', 'upload_files/candidate_tracker/34866993417_Resume26.pdf', NULL, '3', '2026-04-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-11 05:19:34', 154, '2026-04-11 04:12:40', 0, NULL, 1),
(29464, 'Thamaraikani S', '13', '9751358867', '', 'kanijoy333@gmail.com', '2003-08-20', 22, '4', '2', 'Selvamani M', 'Coolie', 350000.00, 1, 0.00, 2.50, 'Rajapalayam', 'Rajapalayam', '2604110003', '', '1', 'upload_files/candidate_tracker/65612873530_ThamaraikaniS.pdf', NULL, '1', '2026-04-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-11 05:32:18', 154, '2026-04-11 01:04:31', 0, NULL, 1),
(29465, '', '0', '6369901245', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604110004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-11 05:36:50', 0, NULL, 0, NULL, 1),
(29466, 'Yuvaraj Gnanasekar', '13', '7358177544', '', 'yuvarajgnanasekar20001@gmail.com', '2001-03-16', 25, '4', '2', 'Gnanasekar', 'Driver', 30000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2604110005', '', '1', 'upload_files/candidate_tracker/70814308765_YuvarajThinq24.pdf', NULL, '1', '2026-04-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-11 05:52:22', 154, '2026-04-11 01:04:09', 0, NULL, 1),
(29467, 'baskar', '2', '6369901245', '', 'baskar.dev2@gmail.com', '2004-12-03', 21, '4', '2', 'balu b', 'farmer', 25000.00, 1, 0.00, 20000.00, 'manalurpet thiruvannamalai', 'redhills', '2604110006', '', '1', 'upload_files/candidate_tracker/73721247696_Baskarresume.pdf', NULL, '1', '2026-04-11', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 154, '2026-04-11 11:23:59', 154, '2026-04-11 12:40:51', 0, NULL, 1),
(29468, 'Janani', '6', '9042427574', '6384211748', 'jananisundar2004@gmail.com', '2004-03-16', 22, '2', '2', 'Sundar', 'Driver', 600000.00, 2, 224647.00, 3.50, 'Tiruvannamalai', 'Bommanahalli Bangalore', '2604110007', '1', '2', 'upload_files/candidate_tracker/25000915321_JANANIResume.pdf', NULL, '1', '2026-04-11', 30, '', '1', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '55671', 'C99176', '1970-01-01', 1, '2026-04-11 06:00:23', 162, '2026-04-15 06:09:22', 0, NULL, 1),
(29469, '', '0', '9741305569', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-11 07:15:14', 0, NULL, 0, NULL, 1),
(29470, 'Nandha Sriram', '34', '9176265013', '', 'nandhasriram05@gmail.com', '2002-04-25', 23, '3', '2', 'Parents', 'Color dyeing', 20000.00, 1, 180000.00, 400000.00, 'Salem', 'Chennai', '2604110009', '', '2', 'upload_files/candidate_tracker/8495513943_NandhaSriramresume1.pdf', NULL, '1', '2026-04-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-11 08:35:16', 154, '2026-04-11 04:23:31', 0, NULL, 1),
(29471, 'rohit p', '6', '9884679223', '9790849550', 'rohitnet011@gmail.com', '2005-03-28', 21, '2', '2', 'perumal n', 'construction', 40000.00, 1, 0.00, 20000.00, 'virugambakkam', 'virugambakkam', '2604110010', '1', '1', 'upload_files/candidate_tracker/52718612613_resume.pdf', NULL, '1', '2026-04-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2026-04-11 10:19:28', 154, '2026-04-15 11:12:53', 0, NULL, 1),
(29472, 'mohammed aafaq', '34', '7448527316', '', 'aafaqjob@gmail.com', '2001-08-02', 24, '6', '2', 'suhail ahamed', 'business', 22000.00, 2, 21000.00, 28000.00, 'periamet', 'periamet', '2604110011', '', '2', 'upload_files/candidate_tracker/65817955366_AafaqresumeI.pdf', NULL, '1', '2026-04-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 154, '2026-04-11 04:05:06', 154, '2026-04-11 04:11:41', 0, NULL, 1),
(29473, '', '0', '6382475341', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604110012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-11 01:08:14', 0, NULL, 0, NULL, 1),
(29474, 'Ramesh', '34', '7825962115', '8825986087', 'slramesh20@gmail.com', '2002-03-20', 24, '6', '2', 'Soundar Rajan', 'Driver', 30000.00, 2, 0.00, 200000.00, 'TIRUNELVELI', 'Chennai', '2604130001', '', '1', 'upload_files/candidate_tracker/67438260090_QARameshcompressed.pdf', NULL, '1', '2026-04-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-13 04:16:30', 154, '2026-04-13 10:03:12', 0, NULL, 1),
(29475, 'Bhavana BG', '6', '9036805880', '9019182588', 'bhavana123gb@gmail.com', '2003-01-03', 23, '2', '2', 'Ganesh', 'Fresher', 20000.00, 2, 0.00, 15000.00, 'Kodagu', 'Bommanahalli', '2604130002', '1', '1', 'upload_files/candidate_tracker/82277308741_BhavanaBG1.pdf', NULL, '1', '2026-04-13', 0, '', '5', '167', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communications And Expecting high salary', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1032', '', '55786', 'C99176', '1970-01-01', 1, '2026-04-13 04:25:32', 162, '2026-04-13 02:38:01', 0, NULL, 1),
(29476, 'Abdul kalam S', '6', '9788540781', '', 'abbaskalam2003@gmail.com', '2003-12-10', 22, '1', '2', 'Sheik Abdullah', 'Revenue department', 35000.00, 1, 0.00, 25000.00, 'Madurai', 'Triplicane, Chennai', '2604130003', '', '1', 'upload_files/candidate_tracker/65688850537_Abdulkalamcv101.pdf', NULL, '1', '2026-04-13', 0, '-', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-13 04:52:25', 154, '2026-04-13 10:39:49', 0, NULL, 1),
(29477, 'Praveen T', '34', '7200206631', '', 'praveenthiru00@gmail.com', '2004-10-20', 21, '6', '2', 'Thirunavukarasu S', 'Election', 30000.00, 1, 13000.00, 18000.00, 'Gopalapurm', 'Gopalapurm', '2604130004', '', '2', 'upload_files/candidate_tracker/43999619313_PRAVEENQAAPI.pdf', NULL, '1', '2026-04-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected in Group discussion', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-13 05:36:01', 154, '2026-04-13 03:12:49', 0, NULL, 1),
(29478, 'G NAVEEN', '34', '7358718511', '', 'gnaveen1305@gmail.com', '2003-05-13', 22, '6', '2', 'Gandhi', 'MTC', 200000.00, 1, 0.00, 2.50, 'Chennai triplicane', 'Chennai triplicane', '2604130005', '', '1', 'upload_files/candidate_tracker/19419021177_DOC20260413WA0000260413111154.pdf', NULL, '1', '2026-04-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejectedin group discussion', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-13 05:38:34', 154, '2026-04-13 03:13:31', 0, NULL, 1),
(29479, 'Kavyashree c', '6', '8147401565', '9187319410', 'kavyaammuc.86@gmail.com', '2002-09-11', 23, '2', '2', 'Chandrahas', 'Farmer', 20000.00, 0, 16500.00, 25000.00, 'Chelekere', 'Chelekere', '2604130006', '1', '2', 'upload_files/candidate_tracker/36617148873_kaviii.pdf', NULL, '1', '2026-04-13', 0, '', '3', '59', '2026-04-20', 228000.00, '', '1', '1970-01-01', '1', 'Need to check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1032', '', '55786', 'C99176', '2026-04-20', 1, '2026-04-13 05:38:50', 60, '2026-04-20 06:18:15', 0, NULL, 1),
(29480, 'DEVENDIRAN K', '13', '6382565603', '9884978906', 'devendirandev224@gmail.com', '2004-03-22', 22, '3', '2', 'Shenbagavalli', 'Housewife', 400000.00, 2, 0.00, 400000.00, 'Chennai', 'Chennai', '2604130007', '', '1', 'upload_files/candidate_tracker/36890719276_DEVENDIRAN.KFlowCVResume20260413.pdf', NULL, '1', '2026-04-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected in group discussion', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-13 05:46:56', 154, '2026-04-13 03:14:09', 0, NULL, 1),
(29481, 'shalini m', '6', '9176533763', '8939691248', 'shaliniprakash1912@gmail.com', '1999-12-19', 26, '1', '2', 'Mahendran', 'Driver', 40000.00, 2, 25000.00, 22000.00, 'Royapuram', '600013', '2604130008', '', '2', 'upload_files/candidate_tracker/28206348343_shaliniResume1.docx', NULL, '1', '2026-04-13', 0, 'C99278', '5', '164', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Not Well', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-13 06:06:57', 154, '2026-04-13 12:04:02', 0, NULL, 1),
(29482, 'Velan J S', '34', '7695975969', '8344557866', 'velan272004@gmail.com', '2004-03-27', 22, '6', '2', 'SIVAKUMAR D', 'TEACHER', 80000.00, 1, 0.00, 25000.00, 'Tirutanni', 'Arumbakam', '2604130009', '', '1', 'upload_files/candidate_tracker/88945890685_VelanManualResume.pdf', NULL, '1', '2026-04-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected in group discussion', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-13 06:07:15', 154, '2026-04-13 03:14:49', 0, NULL, 1),
(29483, 'PRABAKARAN C', '34', '9345858548', '9566840510', 'prabakaran2822@gmail.com', '2002-08-02', 23, '6', '2', 'Chinna madasamy', 'Daily wages', 15000.00, 1, 0.00, 20000.00, 'SRIVILLIPUTTUR', 'SRIVILLIPUTTUR', '2604130010', '', '1', 'upload_files/candidate_tracker/3560711565_PRABAKARANCCV.pdf', NULL, '1', '2026-04-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-13 06:07:25', 1, '2026-04-13 06:39:06', 0, NULL, 1),
(29484, 'Manimala Venkata Nagu', '34', '9502743639', '', 'manimalavenkatanagu@gmail.com', '2003-10-10', 22, '6', '1', 'Nagaraju', 'Priest', 50000.00, 0, 0.00, 25000.00, 'Vijayawada', 'Vadapalani', '2604130011', '', '1', 'upload_files/candidate_tracker/63290805721_DocumentfromNaguNani.pdf', NULL, '1', '2026-04-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-13 06:09:40', 1, '2026-04-13 06:37:14', 0, NULL, 1),
(29485, 'Abinaya G', '13', '9342913612', '', 'abinayag176@gmail.com', '2004-04-06', 22, '3', '2', 'Gomathy Raj E', 'Driver', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2604130012', '', '1', 'upload_files/candidate_tracker/2352624826_AbinayaGDataAnalystResume1compressed.pdf', NULL, '1', '2026-04-13', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-13 06:11:03', 154, '2026-04-13 02:52:23', 0, NULL, 1),
(29486, 'Dhanalakshmi', '6', '7695953580', '7299326017', 'dhanadhanalakshmi472@gmail.com', '2003-12-21', 22, '5', '2', 'Sridhar', 'House keeper', 21000.00, 1, 18000.00, 22000.00, 'Villivakkam', 'Villivakkam', '2604130013', '', '2', 'upload_files/candidate_tracker/74153688169_MS.Dhanalakshmiresume.pdf', NULL, '1', '2026-04-13', 15, '', '3', '59', '2026-04-20', 216000.00, '', '5', '1970-01-01', '2', 'Need to check in training only', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', 'C99176', '2026-04-20', 1, '2026-04-13 06:12:33', 60, '2026-04-20 06:12:07', 0, NULL, 1),
(29487, 'vignesh rajan', '4', '9003428123', '', 'rvignesh1122@gmail.com', '2000-12-01', 25, '2', '2', 'rajan', 'business', 30000.00, 1, 15000.00, 18000.00, 'thanjavur', 'thanjavur', '2604130014', '1', '2', 'upload_files/candidate_tracker/19491780019_VIGNESHR.pdf', NULL, '1', '2026-04-13', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1023', 'C99176', '1970-01-01', 1, '2026-04-13 06:18:23', 154, '2026-04-13 02:53:32', 0, NULL, 1),
(29488, '', '0', '6369592534', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604130015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-13 06:19:15', 0, NULL, 0, NULL, 1),
(29489, 'Barath', '34', '8110956814', '8608220070', 'barathbala0710@gmail.com', '2002-11-07', 23, '3', '2', 'Iyyanarappa', 'Driver', 25.00, 1, 15.00, 25000.00, 'Puducherry', 'Puducherry', '2604130016', '', '2', 'upload_files/candidate_tracker/15024971514_resume.pdf', NULL, '1', '2026-04-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected in group discussion', '2', '1', '', '4', '6', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-13 06:21:38', 154, '2026-04-13 03:16:23', 0, NULL, 1),
(29490, 'velan js', '34', '7695975969', '', 'velan272004@gmail.com', '2004-03-27', 22, '6', '2', 'sivakumar', 'teacher', 150000.00, 1, 0.00, 20000.00, 'thirutani', 'vadapalani', '2604130017', '', '1', 'upload_files/candidate_tracker/52809832401_VelanManualResume.pdf', NULL, '1', '2026-04-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected in group discussion', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 154, '2026-04-13 12:00:17', 154, '2026-04-13 03:17:13', 0, NULL, 1),
(29491, '', '0', '9966230380', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604130018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-13 06:40:50', 0, NULL, 0, NULL, 1),
(29492, 'Mohamed Ejas', '34', '9894165204', '7092211814', 'mohamedejas612@gmail.com', '2002-12-06', 23, '3', '2', 'Yasimin Fathima', 'House wife', 15000.00, 1, 0.00, 15000.00, 'Mayiladuthurai', 'T.Nagar Chennai', '2604130019', '', '1', 'upload_files/candidate_tracker/70828733948_MohamedEjasResume1.pdf', NULL, '1', '2026-04-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected in group discussion', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-13 06:46:43', 154, '2026-04-13 03:17:52', 0, NULL, 1),
(29493, 'v selva priya', '6', '6369592534', '', 'ssri78722@gmail.com', '2004-07-09', 21, '2', '2', 'vadivel', 'hotel management', 18000.00, 2, 16000.00, 18000.00, 'triplicane', 'triplicane', '2604130020', '1', '2', 'upload_files/candidate_tracker/93007598704_SelvapriyaResume.pdf', NULL, '1', '2026-04-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate was already have sales experience and in need for job and already worked in our company  and we shall provide 16k - 17k as salary and she will join by 26th of this month ', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 154, '2026-04-13 12:18:41', 154, '2026-04-13 12:23:04', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29494, 'K Meenachi', '6', '6374689561', '9159461196', 'meenaksam18@gmail.com', '1999-11-18', 26, '2', '2', 'Kumarsamy', 'Driver', 20.00, 0, 18.00, 28.00, 'Ilango Nagar kirumampakkam puducherry', 'Palayakkaran cross street Kodambakkam Chennai', '2604130021', '68', '2', 'upload_files/candidate_tracker/57039215134_MeenaCV1.pdf', NULL, '1', '2026-04-13', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and performance is good also she have 4 years experience in telecaling domain will check with in the training period little her salary expectation is used kindly check your End', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', 'C99176', '1970-01-01', 1, '2026-04-13 06:56:49', 154, '2026-04-13 02:52:10', 0, NULL, 1),
(29495, 'Pandiavishnu M', '13', '9025366992', '9080101561', 'pandimr200@gmail.com', '2004-07-29', 21, '3', '2', 'Mani Pandiya raj', 'Line inspector (TNEB)', 50000.00, 1, 24000.00, 35000.00, 'Periya Chettiyar street, Uthamapalayam, Theni.', 'Type-1, A-12, HEPF Township, trichy-26', '2604130022', '', '2', 'upload_files/candidate_tracker/13887048252_PandiaVishnusCVElcot.pdf', NULL, '1', '2026-04-13', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-13 07:20:50', 1, '2026-04-13 07:36:32', 0, NULL, 1),
(29496, '', '0', '9345462083', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604130023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-13 12:23:39', 0, NULL, 0, NULL, 1),
(29497, 'Sivabalan K', '13', '6382161576', '6369390508', 'sivabalank2972003@gmail.com', '2003-07-29', 22, '2', '2', 'Kumaraguru', 'Formar', 15000.00, 1, 0.00, 400000.00, 'Villupuram', 'Guduvanchery', '2604130024', '1', '1', 'upload_files/candidate_tracker/47066969353_CV2026041223411519.pdf', NULL, '2', '2026-04-15', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'got 3 marks in the aptitude', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-13 12:35:58', 154, '2026-04-15 11:59:33', 0, NULL, 1),
(29498, 'JAGADEESH D', '6', '8438442163', '', 'jagandaya21@gmail.com', '1997-07-21', 28, '2', '1', 'Pavithra', 'Nil', 20000.00, 1, 29000.00, 35000.00, 'Chennai Perambur', 'Chennai Perambur', '2604130025', '1', '2', 'upload_files/candidate_tracker/38647985483_JagaupdateresumeNEW.pdf', NULL, '1', '2026-04-15', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-13 03:30:10', 154, '2026-04-15 10:35:27', 0, NULL, 1),
(29499, '', '0', '9060600537', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-14 06:08:41', 0, NULL, 0, NULL, 1),
(29500, 'Mohammed arfath', '25', '9060600547', '9343741462', 'mohammedarfath8055@gmail.com', '1994-01-01', 32, '6', '1', 'Anjum banu', 'House wife', 400000.00, 1, 28000.00, 30000.00, '#43 kumar layout 1st cross shampura kb sandra blr', 'Hrbr layout Jubilant nissan bangalore 560043', '2604140002', '', '2', 'upload_files/candidate_tracker/63135623047_MohammedArfath.CV2025.pdf', NULL, '1', '2026-04-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-14 06:08:54', 1, '2026-04-14 06:19:16', 0, NULL, 1),
(29501, 'Shaik Nasser Ahammad', '5', '8247090106', '9985897689', 'nassershaik145@gmail.com', '2003-08-11', 22, '2', '2', 'NA', 'NA', 50000.00, 1, 450000.00, 550000.00, 'Gorantla', 'Madiwala Bangalore', '2604140003', '57', '2', 'upload_files/candidate_tracker/2481026552_ResumeNasser.pdf', NULL, '1', '2026-04-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-14 08:57:35', 162, '2026-04-14 02:34:59', 0, NULL, 1),
(29502, 'Poovarasan Govindhasamy', '31', '9342481161', '', 'p7944519@gmail.com', '2005-08-16', 20, '2', '2', 'Govindhasamy', 'Labour', 24000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Velachery, chennai', '2604150001', '1', '1', 'upload_files/candidate_tracker/72006573823_POOVARASANGFULLSTACK20152.pdf', NULL, '2', '2026-04-15', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'got 4 marks in aptitude', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-15 03:58:26', 154, '2026-04-15 11:27:38', 0, NULL, 1),
(29503, 'Ashika R', '11', '9380520538', '9345339383', 'ashikasep25@gmail.com', '2003-09-25', 22, '2', '2', 'Ramesh babu', 'Student', 400000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2604150002', '1', '1', 'upload_files/candidate_tracker/36737233500_Ashikahrresume.pdf', NULL, '1', '2026-04-15', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-15 04:42:05', 154, '2026-04-15 10:19:00', 0, NULL, 1),
(29504, 'PRITHWIN', '6', '9790701421', '', 'Prithwin97@gmail.com', '1997-06-30', 28, '2', '2', 'L suresh', 'Driver', 20000.00, 1, 27000.00, 32000.00, 'St.Thomas Mount, Chennai', 'St.Thomas Mount, Chennai', '2604150003', '50', '2', 'upload_files/candidate_tracker/93711245343_PrithwinTLResume1.pdf', NULL, '1', '2026-04-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-15 04:45:04', 154, '2026-04-16 12:59:08', 0, NULL, 1),
(29505, 'Sri Nithya C', '31', '9344063223', '9363551833', 'umashara76542@gmail.com', '2004-12-02', 21, '2', '2', 'Chockalingam', 'Fresher', 150000.00, 1, 0.00, 150000.00, 'Karaikudi', 'Chennai', '2604150004', '1', '1', 'upload_files/candidate_tracker/49550613120_SriNithyaresume.pdf', NULL, '1', '2026-04-15', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1 mark in programming round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-15 05:05:58', 154, '2026-04-15 02:37:35', 0, NULL, 1),
(29506, 'kajol sharma', '5', '9884126788', '', 'kajolsharma12999@gmail.com', '1999-08-08', 26, '1', '2', 'prakash sharma', 'project client', 60000.00, 1, 20000.00, 30000.00, 'adyar', 'adyar', '2604150005', '', '2', 'upload_files/candidate_tracker/7878457527_Kajalresume1.pdf', NULL, '1', '2026-04-15', 0, 'p1015', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-15 05:34:25', 154, '2026-04-15 04:38:28', 0, NULL, 1),
(29507, 'Jeeva', '6', '9363648980', '9786395562', 'jeevashankar2205@gmail.com', '2004-06-22', 21, '2', '2', 'Sankar', 'Farmer', 20000.00, 2, 20000.00, 25000.00, 'Polur', 'Mathuravayal', '2604150006', '1', '2', 'upload_files/candidate_tracker/66336388511_Jeevaresume.pdf', NULL, '1', '2026-04-15', 1, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2026-04-15 05:41:11', 154, '2026-04-15 11:24:07', 0, NULL, 1),
(29508, 'Mohamed Fayaz.M', '4', '6381462654', '6369626916', 'fayazrizwan678@gmail.com', '2003-02-08', 23, '3', '2', 'Mohamed Fareedh', 'Driver', 35000.00, 1, 12000.00, 15000.00, 'Amurdheen colony attumandhai street Thanjavur', 'Thanjavur', '2604150007', '', '2', 'upload_files/candidate_tracker/78545123279_Fayazpdf202603231515370000.pdf', NULL, '1', '2026-04-15', 1, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', 'C99176', '1970-01-01', 1, '2026-04-15 05:45:51', 154, '2026-04-15 01:34:30', 0, NULL, 1),
(29509, 'AKILA', '13', '8637612237', '', 'akilav300@gmail.com', '2005-04-01', 21, '2', '2', 'Anjalai', 'Daily Wage', 80000.00, 0, 0.00, 2.00, 'Kallakurichi', 'Chennai', '2604150008', '1', '1', 'upload_files/candidate_tracker/98833101593_AkilaResume2.pdf', NULL, '1', '2026-04-15', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'got 2 marks in programming round', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-15 05:54:11', 154, '2026-04-15 01:09:32', 0, NULL, 1),
(29510, 'Janani thangamani', '4', '9361013262', '9361143736', 'aruljanu2@gmail.com', '2004-06-29', 21, '5', '2', 'Thangamani', 'Farmer', 72000.00, 2, 0.00, 10000.00, 'Vadaseri', 'Vadaseri', '2604150009', '', '1', 'upload_files/candidate_tracker/30156959033_Jananiresume1.pdf', NULL, '1', '2026-04-15', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1023', 'C99176', '1970-01-01', 1, '2026-04-15 05:55:23', 154, '2026-04-15 01:35:03', 0, NULL, 1),
(29511, 'Nagashree Nagendra Naik', '4', '8792341924', '', 'nagashreenaik99@gmail.com', '2004-06-15', 21, '2', '2', 'Nagendra M naik', 'PDO, Gram Panchayat, Ankola, Karnataka', 70000.00, 1, 0.00, 18000.00, 'Ankola, Uttarakannada', 'Bangalore', '2604150010', '1', '1', 'upload_files/candidate_tracker/36283308672_NagashreeNaikcompressed.pdf', NULL, '1', '2026-04-15', 0, '', '6', '172', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '', '', '1970-01-01', 1, '2026-04-15 06:22:21', 162, '2026-04-15 12:03:18', 0, NULL, 1),
(29512, 'Surya E', '31', '9344874270', '', 'suryae1407@gmail.com', '2001-07-14', 24, '5', '2', 'Ekambaram', 'Farmer', 30000.00, 1, 0.00, 20000.00, 'Tiruttani', 'Chennai', '2604150011', '', '1', 'upload_files/candidate_tracker/39620758706_SURYA.EResume.pdf', NULL, '1', '2026-04-15', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'got 2 marks', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-15 06:22:47', 154, '2026-04-15 01:09:05', 0, NULL, 1),
(29513, '', '0', '8217898924', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604150012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-15 06:37:55', 0, NULL, 0, NULL, 1),
(29514, 'revan nadarajan', '31', '7358323555', '7200230684', 'revann146@gmail.com', '2003-07-13', 22, '3', '2', 'j nadarajan', 'assistant registrar', 50000.00, 1, 0.00, 300000.00, 'triplicane chennai', 'triplicane chennai', '2604150013', '', '1', 'upload_files/candidate_tracker/73840926946_Revanresument.docx', NULL, '1', '2026-04-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-15 06:41:22', 154, '2026-04-15 04:38:34', 0, NULL, 1),
(29515, '', '0', '9080546575', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604150014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-15 06:51:51', 0, NULL, 0, NULL, 1),
(29516, 'sujipriya', '6', '9080546575', '', 'sujipriyams@gmail.com', '1999-04-12', 27, '2', '2', 'palani', 'centring', 45000.00, 1, 380000.00, 450000.00, 'sheno nagar', 'sheno nagar', '2604150015', '1', '2', 'upload_files/candidate_tracker/74342309876_test.pdf', NULL, '1', '2026-04-15', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 154, '2026-04-15 12:38:29', 154, '2026-04-15 12:54:44', 0, NULL, 1),
(29517, 'esther m', '6', '9786089037', '8122089783', 'estherbbyma1724@gmail.com', '2001-06-17', 24, '2', '2', 'israel', 'employee', 25000.00, 1, 0.00, 21000.00, 'chennai', 'chennai', '2604150016', '73', '2', 'upload_files/candidate_tracker/94382944236_EstherChennaiCAFSINDIAReshmaBayleafCopy.pdf', NULL, '1', '2026-04-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication only little ok 5050 profile will check with her in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', 'C99176', '1970-01-01', 1, '2026-04-15 07:19:31', 154, '2026-04-29 12:19:38', 0, NULL, 1),
(29518, 'K Mahalakshmi', '4', '8838907230', '8124986317', 'kmahalakshmi8894@gmail.com', '1994-08-08', 31, '2', '1', 'D Rohith kumar', 'Supervisor', 25000.00, 1, 24000.00, 28000.00, 'Chennai', 'Ambattur', '2604150017', '50', '2', 'upload_files/candidate_tracker/31742533570_srtdvukggw.pdf', NULL, '1', '2026-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-15 07:38:53', 1, '2026-04-15 07:41:41', 0, NULL, 1),
(29519, '', '0', '9840374401', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604150018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-15 07:50:10', 0, NULL, 0, NULL, 1),
(29520, '', '0', '8807201451', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604150019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-15 07:50:26', 0, NULL, 0, NULL, 1),
(29521, '', '0', '9360208905', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604150020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-15 07:50:50', 0, NULL, 0, NULL, 1),
(29522, 'Ghavya M', '5', '7305446559', '7373982803', 'ghavya2608@gmail.com', '1999-08-26', 26, '2', '1', 'Murugesa pandiyan', 'Business man', 15000.00, 1, 19100.00, 25000.00, 'Tiruvallur', 'Ambathur', '2604150021', '1', '2', 'upload_files/candidate_tracker/72466538506_GhavyaResume.pdf', NULL, '1', '2026-04-15', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', 'H1030', '', '55656', '55557', '1970-01-01', 1, '2026-04-15 09:23:43', 154, '2026-04-15 04:38:16', 0, NULL, 1),
(29523, 'Hariharan R', '31', '8098407894', '', 'ramubarani417@gmail.com', '2003-11-15', 22, '2', '2', 'Ramu', 'Bank substaff', 30000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2604150022', '1', '1', 'upload_files/candidate_tracker/26061575010_harihran12.pdf', NULL, '1', '2026-04-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-15 11:37:12', 154, '2026-04-16 12:45:04', 0, NULL, 1),
(29524, 'sudhir sudhakar', '34', '9345169941', '', 'sudhircolud6@gmail.com', '2001-11-01', 24, '3', '2', 'sudhakar', 'security', 15000.00, 2, 0.00, 20000.00, 'chengalpattu', 'chengalpattu', '2604150023', '', '1', 'upload_files/candidate_tracker/924635933_resumeno02removed.pdf', NULL, '1', '2026-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-15 11:39:01', 1, '2026-04-15 11:45:44', 0, NULL, 1),
(29525, 'Ahamed.S', '23', '8825863482', '9843175862', 'ahameduiux21@gmail.com', '2002-07-28', 23, '2', '2', 'Samsudheen.A', 'Self Business', 30000.00, 2, 0.00, 2.50, 'Maraimalai nagar', 'Maraimalai nagar', '2604150024', '1', '1', 'upload_files/candidate_tracker/61499447270_AhamedBBA2022UIUX.pdf', NULL, '1', '2026-04-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '55605', '55566', '1970-01-01', 1, '2026-04-15 11:40:06', 154, '2026-04-16 12:44:23', 0, NULL, 1),
(29526, 'SAFIKA JABARANA J', '4', '9150733429', '', 'rabisabisabi@gmail.com', '2006-07-14', 19, '5', '2', 'Fathima', 'Tailor', 30000.00, 1, 0.00, 20000.00, 'Manali,Chennai', 'Manali,Chennai', '2604150025', '', '1', 'upload_files/candidate_tracker/60007428181_SafikaJabaranaInternshalaResume10.pdf', NULL, '1', '2026-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-15 11:46:24', 1, '2026-04-15 11:48:23', 0, NULL, 1),
(29527, '5494 1224 1632', '23', '6383956181', '', 'allvinfdo2005@gmail.com', '2011-04-15', 0, '3', '2', 'Selvin k', 'NA', 20000.00, 2, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2604150026', '', '1', 'upload_files/candidate_tracker/81053375442_AllvinUIUXResume.pdf', NULL, '1', '2026-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-15 12:12:19', 1, '2026-04-15 12:15:22', 0, NULL, 1),
(29528, 'Abilash Kumar', '6', '6369831714', '9003189675', 'abilashk840@gmail.com', '2001-05-13', 24, '5', '2', 'Bose', 'Coolie worker', 14200.00, 1, 15000.00, 19000.00, 'Thiruvallur', 'Perambur Chennai', '2604150027', '', '2', 'upload_files/candidate_tracker/69922029389_AbilashResume.pdf', NULL, '1', '2026-04-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-15 12:42:20', 154, '2026-04-16 12:43:49', 0, NULL, 1),
(29529, 'Gokul S', '35', '9600243925', '', 'gokulsuper70@gmail.com', '2004-09-09', 21, '2', '2', 'siva k', 'clerk', 15000.00, 1, 0.00, 350000.00, 'chennai', 'chennai', '2604150028', '1', '1', 'upload_files/candidate_tracker/76755161966_Gokulresume.pdf', NULL, '1', '2026-04-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-15 02:03:06', 154, '2026-04-16 12:44:46', 0, NULL, 1),
(29530, 'Ramprasath S', '13', '9952113747', '', 'ramprasath3747@gmail.com', '2004-02-12', 22, '2', '2', 'Sivalingam', 'Farmer', 30000.00, 1, 0.00, 100000.00, 'Cuddalore', 'Chennai', '2604150029', '1', '1', 'upload_files/candidate_tracker/6471028930_downloadresume.pdf', NULL, '1', '2026-04-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-15 02:15:05', 154, '2026-04-16 12:45:20', 0, NULL, 1),
(29531, 'Vinothini S', '34', '6374093336', '', 'vinothinis0305@gmail.com', '2004-01-05', 22, '5', '2', 'Senthil Kumar.C', 'Driver', 150000.00, 1, 0.00, 400000.00, 'Salem 636110', 'Chennai 600071', '2604160001', '', '1', 'upload_files/candidate_tracker/78397368249_S.Vinothini11.pdf', NULL, '1', '2026-04-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-16 04:33:35', 1, '2026-04-16 04:43:04', 0, NULL, 1),
(29532, 'Saranya Raja', '13', '9363239466', '8675038045', 'Saranyaraja046@gmail.con', '2004-06-12', 21, '5', '2', 'Raja P', 'Farmer', 80000.00, 2, 0.00, 400000.00, 'Salem636105', 'Chennai', '2604160002', '', '1', 'upload_files/candidate_tracker/66959581001_SaranyaRFlowCVResume20260416.pdf', NULL, '1', '2026-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-16 04:34:17', 1, '2026-04-16 04:52:39', 0, NULL, 1),
(29533, 'Keerthana bhuvaneshwaran', '11', '7604991620', '9629875593', 'bhuvaneshkeerthana66@gmail.com', '2006-08-10', 19, '2', '2', 'Bhuvaneshwaran', 'Ex-Army', 30000.00, 1, 0.00, 15000.00, 'Ranipet', 'Chennai', '2604160003', '1', '1', 'upload_files/candidate_tracker/55547401561_AllPDFReader2026041619.38.42.pdf', NULL, '1', '2026-04-17', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-16 04:35:24', 154, '2026-04-17 10:32:07', 0, NULL, 1),
(29534, 'JANANI SOMASUNDARAM', '2', '6379669174', '', 'jananisomasundaram07@gmail.com', '2003-07-14', 22, '3', '2', 'K.Somasundaram', 'Business', 15000.00, 1, 0.00, 15000.00, 'Kallavi', 'Chennai(Ashok pillar)', '2604160004', '', '1', 'upload_files/candidate_tracker/51223074454_JananiSResumeUpdated1.pdf', NULL, '1', '2026-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-16 05:07:17', 1, '2026-04-16 05:20:06', 0, NULL, 1),
(29535, 'Jagathratchagan V', '2', '9360270984', '6382467701', 'Jagath9360@gmail.com', '2002-06-04', 23, '3', '2', 'Vinayagam N', 'Weaver', 10000.00, 5, 13000.00, 15000.00, 'No.12, Sengunther East Street, Sholinghur - 631102', 'Ashok Nagar Chennai', '2604160005', '', '2', 'upload_files/candidate_tracker/83554724215_JagathMernStackDevloperResume.pdf', NULL, '1', '2026-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-16 05:07:17', 1, '2026-04-16 05:19:25', 0, NULL, 1),
(29536, 'Jayanthan S', '31', '9952468272', '9626830153', 'jayanthansrinivasan03@gmail.com', '2003-10-29', 22, '3', '2', 'Srinivasan', 'Bank employee', 25000.00, 1, 0.00, 200000.00, 'Chromepet Chennai', 'Chromepet Chennai', '2604160006', '', '1', 'upload_files/candidate_tracker/23474224773_jayanthansrinivasan2.pdf', NULL, '1', '2026-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-16 05:09:33', 1, '2026-04-16 05:28:03', 0, NULL, 1),
(29537, 'Meera V', '13', '8056893948', '', 'prasannameera73@gmail.com', '2005-08-16', 20, '3', '2', 'Venkatachalapathi', 'Teacher', 30000.00, 1, 0.00, 2.00, 'Kallakurichi, ulundurpet', 'Chennai', '2604160007', '', '1', 'upload_files/candidate_tracker/21537143402_MeeraResumeNew.pdf', NULL, '1', '2026-04-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-16 05:12:09', 154, '2026-04-18 10:40:24', 0, NULL, 1),
(29538, 'Aravinth', '6', '7449186911', '', 'aravinthbaabie@gmail.com', '2003-06-18', 22, '1', '2', 'Pandi', 'Farmer', 200000.00, 2, 0.00, 18000.00, 'Pudupatti nilakottai Dindigul', 'Kodambakkam', '2604160008', '', '1', 'upload_files/candidate_tracker/39718340010_BlackandWhiteSimpleProfessionalA4Resume202509191713540000.pdf', NULL, '1', '2026-04-16', 0, 'P1011', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-16 05:53:47', 154, '2026-04-16 01:00:44', 0, NULL, 1),
(29539, '479147639244', '34', '9363625971', '', 'akuthotanandhini110@gmail.com', '2003-10-01', 22, '3', '2', 'Akuthota', 'Contractor', 75000.00, 2, 0.00, 300000.00, 'Ap', 'Chennai', '2604160009', '', '1', 'upload_files/candidate_tracker/68020784435_AkuthotaNandhiniQAResume1.pdf', NULL, '1', '2026-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-16 05:55:16', 1, '2026-04-16 06:43:28', 0, NULL, 1),
(29540, 'Sanjai', '2', '8124277769', '9080805202', 'sanjaiashok06@gmail.com', '2003-11-06', 22, '5', '2', 'Ashok', 'Hotel staff', 130000.00, 1, 0.00, 200000.00, 'Avadi, Chennai', 'Avadi, Chennai', '2604160010', '', '1', 'upload_files/candidate_tracker/74450770579_SANJAIA1.pdf', NULL, '1', '2026-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-16 06:34:12', 1, '2026-04-16 07:00:45', 0, NULL, 1),
(29541, 'M BALA PRADEEP KUMAR', '13', '7305269087', '', 'balaofficial09@gmail.com', '2004-05-10', 21, '3', '2', 'P murugan', 'Provisional shop', 15000.00, 2, 0.00, 3.35, 'Chennai', 'Chennai', '2604160011', '', '1', 'upload_files/candidate_tracker/75444415820_BalaPradeepKumarResume2.pdf', NULL, '1', '2026-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-16 07:39:39', 1, '2026-04-16 07:48:11', 0, NULL, 1),
(29542, 'Bhuvaneshwari.M', '6', '6369401062', '8939424776', 'bhuvaneshwari1202@gmail.com', '2002-12-28', 23, '5', '2', 'Moorthy', 'Cooli', 175000.00, 0, 16000.00, 20000.00, 'Avadi', 'Avadi', '2604160012', '', '2', 'upload_files/candidate_tracker/79173364911_BHUVIKUTTYRESUME11.pdf', NULL, '1', '2026-04-16', 0, '', '1', '156', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55732', '55645', '1970-01-01', 1, '2026-04-16 07:41:16', 154, '2026-04-16 02:35:19', 0, NULL, 1),
(29543, 'Ponnusamy santhuru', '13', '9025165375', '', 'ponnusamychandru266@gmail.com', '2004-06-03', 21, '3', '2', 'Ponnusamy m', 'Coolie', 20000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2604160013', '', '1', 'upload_files/candidate_tracker/7480154960_CHANDURUsRESUME.pdf', NULL, '1', '2026-04-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-16 07:42:14', 1, '2026-04-16 07:44:34', 0, NULL, 1),
(29544, 'Tiffany', '6', '8015240704', '9486787294', 'tifany0110.10@gmail.com', '2005-10-01', 20, '3', '1', 'Reagan', 'AG', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2604160014', '', '1', 'upload_files/candidate_tracker/31702476082_TiffanyResume2.pdf', NULL, '1', '2026-04-16', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-16 09:17:13', 154, '2026-04-16 04:32:50', 0, NULL, 1),
(29545, 'Madhu Mitha M', '6', '7448446039', '9940110116', 'mmadhumitha1705@gmail.com', '2005-05-17', 20, '3', '2', 'Murugan A', 'Auto driver', 12000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2604160015', '', '1', 'upload_files/candidate_tracker/11523232088_Madhuresume.pdf', NULL, '1', '2026-04-16', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok for sales, communication not good, sustainability issues', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55645', 'C99176', '1970-01-01', 1, '2026-04-16 09:17:19', 154, '2026-04-16 04:32:28', 0, NULL, 1),
(29546, 'Joys shantha kumari', '6', '8072660531', '9150642918', 'joysshanthakumariljoysshanthak@gamil.com', '2005-01-23', 21, '3', '2', 'Rabackal', 'House wife', 18000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2604160016', '', '1', 'upload_files/candidate_tracker/91695899022_Joysshanthakumari.LFlowCVResume20260309.pdf', NULL, '1', '2026-04-16', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok for sales, communication not good, sustainability issues', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55645', 'C99176', '1970-01-01', 1, '2026-04-16 09:17:56', 154, '2026-04-16 04:32:07', 0, NULL, 1),
(29547, 'Dhanush G', '34', '8072325431', '7358494234', 'Dhanush292001@gmail.com', '2001-08-29', 24, '3', '2', 'Jayalakshmi', 'Clerk', 25000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2604160017', '', '1', 'upload_files/candidate_tracker/11801989637_DhanushGResume1.pdf', NULL, '1', '2026-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-16 09:28:46', 1, '2026-04-16 09:36:05', 0, NULL, 1),
(29548, '', '0', '6382218487', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604160018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-16 10:29:08', 0, NULL, 0, NULL, 1),
(29549, 'govarthini k', '31', '9025273466', '', 'govarthinikarthikeyan6@gmail.com', '2011-04-16', 0, '2', '2', 'Karthi keyan', 'Daily wages', 10000.00, 2, 0.00, 13000.00, 'Ranipet', 'Chennai', '2604160019', '1', '1', 'upload_files/candidate_tracker/3085496452_Govarthinif.pdf', NULL, '1', '2026-04-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-16 11:10:58', 154, '2026-04-17 04:16:08', 0, NULL, 1),
(29550, 'prakash r', '2', '7305368231', '', 'prakash10253@gmail.com', '2004-05-08', 21, '2', '2', 'rajkumar s', 'student', 60000.00, 1, 0.00, 300000.00, 'perambur', 'perambur', '2604160020', '1', '1', 'upload_files/candidate_tracker/44146301075_Prakash25.pdf', NULL, '1', '2026-04-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-16 11:11:03', 154, '2026-04-17 05:03:59', 0, NULL, 1),
(29551, '', '0', '9626827649', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604160021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-16 11:20:24', 0, NULL, 0, NULL, 1),
(29552, '', '0', '8122089783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604160022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-16 11:40:36', 0, NULL, 0, NULL, 1),
(29553, 'Prasanth', '2', '9342759682', '', 'prasanth4442004@gmail.com', '2004-04-04', 22, '5', '2', 'Palani', 'Plumber', 20000.00, 1, 300000.00, 300000.00, 'Chennai', 'Chennai', '2604160023', '', '2', 'upload_files/candidate_tracker/10857189494_prasanthres.pdf', NULL, '1', '2026-04-17', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-16 01:12:59', 1, '2026-04-16 01:18:56', 0, NULL, 1),
(29554, 'Venkata balaji m', '13', '8019765884', '', 'mvenkatabalaji4@gmail.com', '2002-09-16', 23, '2', '2', 'Ramesh Babu m', 'Car driver', 100000.00, 1, 0.00, 4.50, 'Andhrapradesh', 'Bangalore', '2604160024', '1', '1', 'upload_files/candidate_tracker/58789957588_resumeb1.pdf.pdf', NULL, '1', '2026-04-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '3 marks in aptitude', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-16 01:22:36', 154, '2026-04-20 01:18:42', 0, NULL, 1),
(29555, 'a tharun', '13', '9384652545', '', 'tharunprabhakar14@gmail.com', '2002-02-14', 24, '2', '2', 'ambigeswari', 'profes', 35.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2604160025', '1', '1', 'upload_files/candidate_tracker/64830201819_Tharun.p.pdf', NULL, '1', '2026-04-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-16 05:29:54', 154, '2026-04-17 04:16:34', 0, NULL, 1),
(29556, 'Somasundaram karuppaiyan', '4', '9384331428', '8056495224', 'somasundaramksomasundaramk@gmail.com', '2005-01-10', 21, '2', '2', 'Selvi', 'Farmer', 25000.00, 2, 0.00, 15000.00, 'Seruvaviduthi North, pattukkottai', 'Seruvaviduthi North, pattukkottai', '2604170001', '1', '1', 'upload_files/candidate_tracker/96242828339_SomasundaramK.telecaller.pdf', NULL, '1', '2026-04-17', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', 'C99176', '1970-01-01', 1, '2026-04-17 04:27:38', 159, '2026-04-17 11:00:50', 0, NULL, 1),
(29557, 'Harini . S', '4', '8098679283', '', 'hh12345harini@gmail.com', '2004-01-23', 22, '2', '2', 'Sasikumar', 'Painter', 25000.00, 1, 0.00, 13000.00, '1-171, Thuravikkadu, pattukottai', '1/171 New Street, Thuravikkadu, Pattukottai', '2604170002', '1', '1', 'upload_files/candidate_tracker/53660302848_Screenshot20260403171953599com.google.android.apps.docscompressed1.pdf', NULL, '1', '2026-04-17', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', 'P1023', 'C99176', '1970-01-01', 1, '2026-04-17 04:28:37', 159, '2026-04-17 11:01:04', 0, NULL, 1),
(29558, 'Kaviraj Shanmugam', '13', '9361879909', '', 'shanmugakaviraj123@gmail.com', '1998-06-24', 27, '3', '2', 'Nagamani', 'Housewife', 120000.00, 1, 0.00, 20000.00, 'Erode', 'Erode', '2604170003', '', '1', 'upload_files/candidate_tracker/76825923704_KavirajSResume.pdf', NULL, '1', '2026-04-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-17 04:35:50', 154, '2026-04-17 10:16:01', 0, NULL, 1),
(29559, '', '0', '9791422147', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604170004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-17 04:41:36', 0, NULL, 0, NULL, 1),
(29560, 'Rakesh', '31', '9710885160', '', 'rakesh0072001@gmail.com', '2001-07-08', 24, '2', '2', 'Murugesan', 'Sales', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2604170005', '1', '1', 'upload_files/candidate_tracker/11805241598_RESUME.pdf', NULL, '1', '2026-04-17', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-17 04:42:41', 154, '2026-04-17 11:10:30', 0, NULL, 1),
(29561, '', '0', '9884180562', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604170006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-17 05:07:18', 0, NULL, 0, NULL, 1),
(29562, '', '0', '6382997594', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604170007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-17 05:16:17', 0, NULL, 0, NULL, 1),
(29563, 's yugendiran', '5', '9688648713', '', 'yugendiran16@gmail.com', '1999-01-14', 27, '2', '2', 's swaran latha', 'agri', 30000.00, 0, 28000.00, 35000.00, 'vellore', 'tin factory', '2604170008', '1', '2', 'upload_files/candidate_tracker/3086460391_Yugenresume3.pdf', NULL, '1', '2026-04-17', 0, '', '3', '59', '2026-05-05', 320000.00, '', '1', '1970-01-01', '1', 'Communication Ok fresher for our insurance sales have overseas exp only Can give a try and check', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', 'Please consider the profile for PC', 'Selected for 1st Round', 'H1032', '', '55555', '5151', '2026-05-05', 1, '2026-04-17 05:17:14', 60, '2026-05-05 09:57:53', 0, NULL, 1),
(29564, 'Sathyan A', '2', '6382997593', '6369627879', 'sathyana3011@gmail.com', '2004-11-30', 0, '2', '2', 'Annadurai', 'Plumber', 18000.00, 2, 0.00, 350000.00, 'Villupuram', 'Maduravoyal', '2604170009', '1', '1', 'upload_files/candidate_tracker/88658336741_sathyanfullstackdeveloperresume.pdf', NULL, '1', '2026-04-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-17 05:20:27', 154, '2026-04-17 10:56:06', 0, NULL, 1),
(29565, 'jeevanandham', '5', '9884180562', '', 'jnandham64@gmail.com', '2000-03-02', 26, '4', '2', 'anthon', 'watchman', 30000.00, 1, 25000.00, 23000.00, 'kaikapuram', 'kaikapuram', '2604170010', '', '2', 'upload_files/candidate_tracker/84468095184_Resume.pdf.pdf', NULL, '1', '2026-04-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', '', '', '', '', '', '', '1970-01-01', 154, '2026-04-17 10:52:01', 154, '2026-04-17 04:19:25', 0, NULL, 1),
(29566, 'D udayakumar', '5', '9176338355', '9363665023', 'Karthideivam71@gmail.com', '1997-03-15', 29, '4', '1', 'D nandhini', 'Star health insurance', 25.00, 0, 4.50, 5.50, 'New washermenpet', 'Tondaripet', '2604170011', '', '2', 'upload_files/candidate_tracker/64017123309_Resume28092025082243pm.pdf', NULL, '1', '2026-04-17', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55560', '55560', '1970-01-01', 1, '2026-04-17 05:46:51', 154, '2026-04-17 04:20:16', 0, NULL, 1),
(29567, 'TEESA JENIFFER', '6', '8608291869', '', 'Jenicandy334@gmail.com', '2005-12-25', 20, '3', '2', 'John jeya kumar', 'Chef', 15000.00, 2, 0.00, 20000.00, 'kakkanur, Villupuram Dist, Tamil Nadu 605402.', 'Madhavaram phop johns garden chennai-600051', '2604170012', '', '1', 'upload_files/candidate_tracker/12031831892_TESSAJENIFFERRESUME.pdf', NULL, '1', '2026-04-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-17 05:55:53', 154, '2026-04-18 04:19:31', 0, NULL, 1),
(29568, 'Priyadharshini', '13', '8428442883', '7904913497', 'priyapd8428@gmail.com', '2004-07-01', 21, '3', '2', 'Elanchezhiyan', 'Not working', 16000.00, 1, 0.00, 300000.00, 'MGR Nagar, chennai', 'MGR nagar, chennai', '2604170013', '', '1', 'upload_files/candidate_tracker/4003751321_Resume2.pdf', NULL, '1', '2026-04-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-17 06:05:43', 154, '2026-04-17 04:20:44', 0, NULL, 1),
(29569, 'balachandar', '6', '9884261722', '9790993222', 'balachandercs0007@gmail.com', '2002-02-09', 24, '2', '2', 'M. Chander Sekar', 'painting supervisor', 20000.00, 1, 0.00, 19000.00, 'NO.4/56 MAMALLAPURAM STREET KARAMBAKKAM,CHENNAI', 'NO.4/56 MAMALLAPURAM STREET KARAMBAKKAM CHENNAI', '2604170014', '50', '1', 'upload_files/candidate_tracker/5198491771_BalaChanderCFinalResume1.docx', NULL, '1', '2026-04-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is. little ok.5050 profile will check with him in the training period', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', 'C99176', '1970-01-01', 1, '2026-04-17 06:06:32', 154, '2026-04-18 02:47:41', 0, NULL, 1),
(29570, 'Snega chandran', '23', '9487010881', '', 'Snega.c11@gmail.com', '2002-08-11', 23, '3', '2', 'G.Chandran', 'Real estate', 30000.00, 1, 0.00, 15000.00, 'Musiri, Trichy .', 'Anna nagar, Chennai', '2604170015', '', '1', 'upload_files/candidate_tracker/13803830024_SNEGACRESUME1.pdf', NULL, '1', '2026-04-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-17 06:36:31', 1, '2026-04-17 07:05:26', 0, NULL, 1),
(29571, 'amarnath t', '13', '8939650957', '8925469544', 'amarnaththiru003@gmail.com', '1999-07-19', 26, '3', '2', 'Thirulogam', 'Construction worker', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2604170016', '', '1', 'upload_files/candidate_tracker/33801960919_Amarnathresume.docx3.pdf', NULL, '1', '2026-04-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-17 06:37:09', 154, '2026-04-17 04:21:07', 0, NULL, 1),
(29572, 'sudarshanram kk', '23', '9952648920', '9952042089', 'sudarshankrishnan2000@gmail.com', '2000-10-03', 25, '3', '2', 'krishnan', 'retired railway officer', 45000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2604170017', '', '1', 'upload_files/candidate_tracker/3876685594_SudarshanramKKResume.pdf', NULL, '1', '2026-04-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-17 06:41:36', 1, '2026-04-17 06:53:15', 0, NULL, 1),
(29573, 'prince Anbu selvan', '31', '9677365616', '', 'princeanbuchelvan@gmail.com', '2004-01-17', 22, '3', '2', 'jai ganesh', 'catering servi', 20000.00, 1, 0.00, 15000.00, 'perungudi chennai', 'chennai', '2604170018', '', '1', 'upload_files/candidate_tracker/39064898585_PRINCEANBUCHELVAN.pdf', NULL, '1', '2026-04-17', 0, '', '3', '59', '2026-04-29', 168000.00, '', '1', '1970-01-01', '2', 'IT Profile Fresher Over 5months plus 31 months then 4months notice agrred with the TxxampC let us check', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '55566', '55566', '2026-04-29', 1, '2026-04-17 07:10:58', 60, '2026-04-29 12:09:10', 0, NULL, 1),
(29574, 'thireesha', '13', '7305395816', '', 'thirisha0416@gmail.com', '2004-04-16', 22, '3', '2', 'malleswari', 'house wife', 50000.00, 4, 0.00, 3.00, 'Chennai', 'chennai', '2604170019', '', '1', 'upload_files/candidate_tracker/70616654865_Thireesharesume.pdf', NULL, '1', '2026-04-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-17 07:27:04', 154, '2026-04-17 03:45:01', 0, NULL, 1),
(29575, 'thirumurugan s', '13', '9940098998', '', 'thirumurugans124@gmail.com', '2003-06-12', 22, '3', '2', 'suresh', 'pwd', 25000.00, 2, 0.00, 3.00, 'chennai', 'chennai', '2604170020', '', '1', 'upload_files/candidate_tracker/6311821753_ThirumuruganSResume.pdf11.pdf', NULL, '1', '2026-04-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-17 07:27:21', 154, '2026-04-25 01:20:49', 0, NULL, 1),
(29576, 'Karthikeyan U', '13', '8925286628', '', 'karthikeyanuu16@gmail.com', '2003-09-16', 22, '3', '2', 'Ulaganathan', 'Tailor', 20000.00, 1, 0.00, 300000.00, 'Thiruvallur', 'Thiruvallur', '2604170021', '', '1', 'upload_files/candidate_tracker/78829738692_karthiksdd.pdf', NULL, '1', '2026-04-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-17 07:27:26', 154, '2026-04-17 01:09:34', 0, NULL, 1),
(29577, '', '0', '9176164389', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604170022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-17 07:36:25', 0, NULL, 0, NULL, 1),
(29578, 'G. Praveena', '4', '8072561052', '7305323168', 'thirupraveena0116@gmail.com', '1997-11-16', 28, '2', '1', 'A. Thirunauvkarrasu', 'Neuro technologist', 50000.00, 2, 0.00, 20000.00, 'Nerkundram', 'Nerkundram', '2604170023', '50', '1', 'upload_files/candidate_tracker/56587140259_PraveenaResumePDF.pdf', NULL, '3', '2026-04-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-17 07:48:40', 1, '2026-04-17 08:10:17', 0, NULL, 1),
(29579, 'preethi s', '11', '9176164389', '', 'sankarpreethi2002@gmail.com', '2002-07-22', 23, '3', '2', 'sankar', 'retired', 15000.00, 1, 0.00, 18000.00, 'Royapuram', 'Royapuram', '2604170024', '', '1', 'upload_files/candidate_tracker/3703104459_CurriculumVitaePreethiS2.pdf', NULL, '1', '2026-04-17', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', '1970-01-01', '2', '8', '', '', '', '', '', '', '1970-01-01', 154, '2026-04-17 01:18:57', 154, '2026-04-17 01:19:51', 0, NULL, 1),
(29580, 'sanja a p', '13', '8523966909', '7845446266', 'sanjayanandaraj2004@gmail.com', '2004-06-21', 21, '3', '2', 'Anandaraj', 'Conductor', 25000.00, 1, 0.00, 20000.00, 'Tiruvannamalai', 'Velachery', '2604170025', '', '1', 'upload_files/candidate_tracker/68341888601_SanjayAPResume.pdf', NULL, '1', '2026-04-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-17 07:50:39', 154, '2026-04-17 02:40:01', 0, NULL, 1),
(29581, 'Swathi R', '13', '8610755362', '', 'swathipooja328@gmail.com', '2004-06-09', 21, '5', '2', 'Raju', 'Driver', 65000.00, 1, 0.00, 25000.00, 'Coimbatore', 'Chennai', '2604170026', '', '1', 'upload_files/candidate_tracker/91860052635_SwathiResume2.pdf', NULL, '1', '2026-04-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-17 07:52:07', 154, '2026-04-17 02:38:43', 0, NULL, 1),
(29582, 'harikaran k', '6', '9345100915', '', 'karanhari340@gmail.com', '2004-12-12', 21, '2', '2', 'kannan b', 'farmer', 72000.00, 1, 0.00, 250000.00, 'ilayangudi sivagangai', 'ponnamalle chennai', '2604170027', '50', '1', 'upload_files/candidate_tracker/29078023946_HarikaranITSupportResume.pdf', NULL, '1', '2026-04-18', 0, '', '3', '59', '2026-04-20', 192000.00, '', '1', '1970-01-01', '1', 'Need to check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55666', 'C99176', '2026-04-20', 1, '2026-04-17 07:55:41', 60, '2026-04-20 06:21:21', 0, NULL, 1),
(29583, 'Vishnu Prakash', '11', '8122685905', '', 'vishnuprakashvp06@gmail.com', '2006-09-10', 19, '2', '2', 'Ramesh Kumar', 'Business', 30000.00, 2, 0.00, 5000.00, 'Korukupet, moopanar Nagar Kamarajar Street', '29/51 Kamarajar Street, moopanar Nagar Korukupet', '2604170028', '1', '1', 'upload_files/candidate_tracker/68418076674_VISHNURESUME.pdf', NULL, '1', '2026-04-17', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-17 09:03:15', 154, '2026-04-17 02:48:28', 0, NULL, 1),
(29584, 'Freddy Benny Joseph.', '11', '6380353030', '', 'freddybenny234@gmail.com', '2006-09-05', 19, '2', '2', 'ravi', 'ship', 35000.00, 1, 0.00, 5000.00, 'senniamman kovil street selva vinayagar lane', 'tondirapet chennai', '2604170029', '1', '1', 'upload_files/candidate_tracker/98254764503_freddy.pdf', NULL, '1', '2026-04-17', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-17 09:04:58', 154, '2026-04-17 02:48:46', 0, NULL, 1),
(29585, '', '0', '6382485858', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604170030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-17 10:08:13', 0, NULL, 0, NULL, 1),
(29586, '', '0', '7200024856', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604170031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-17 11:09:11', 0, NULL, 0, NULL, 1),
(29587, '', '0', '8610195083', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604170032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-17 11:18:24', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29588, 'Jeswin Samuel A', '13', '7200944142', '', 'jeswinsamuel004@gmail.com', '2004-10-01', 21, '2', '2', 'Anthony raj s', 'Auto driver', 12000.00, 1, 0.00, 20000.00, 'Mylapore Chennai', 'Mylapore Chennai', '2604170033', '1', '1', 'upload_files/candidate_tracker/79462306061_JeswinsResume.pdf', NULL, '1', '2026-04-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'got 2 marks in programming round', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-17 01:07:52', 154, '2026-04-18 04:20:04', 0, NULL, 1),
(29589, '541543724837', '13', '6374927018', '', 'kameshmaran349@gmail.com', '2004-02-20', 22, '3', '2', 'Sugumaran', 'Farmer', 15000.00, 1, 0.00, 250000.00, 'Cuddalore', 'Chennai', '2604170034', '', '1', 'upload_files/candidate_tracker/98798841148_DocumentfromKamesh.pdf', NULL, '1', '2026-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-17 04:11:14', 1, '2026-04-17 05:18:04', 0, NULL, 1),
(29590, 'shalini veeramani', '13', '6379749197', '', 'shaliniveeramani05@gmail.com', '2004-12-18', 21, '3', '2', 'veeramani k', 'carpenter', 20000.00, 1, 0.00, 16000.00, 'thiruvarur', 'vadapalani', '2604180001', '', '1', 'upload_files/candidate_tracker/49978364556_Resume.Shalini.pdf', NULL, '1', '2026-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-18 01:15:22', 1, '2026-04-18 01:21:36', 0, NULL, 1),
(29591, 'parameshwari s', '4', '8015244902', '', 'paramuaravind31@gmail.com', '2002-06-26', 23, '2', '2', 'sekar', 'weaver', 50000.00, 2, 25000.00, 30000.00, 'kancheepuram', 'saidapet', '2604180002', '1', '2', 'upload_files/candidate_tracker/7261508254_AishuupdateCV.pdf', NULL, '1', '2026-04-18', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1005', '', '55824', '55560', '1970-01-01', 1, '2026-04-18 03:55:41', 154, '2026-04-18 04:53:41', 0, NULL, 1),
(29592, 'Parameswari B', '23', '9360638544', '', 'bparameswari62@gmail.com', '2003-12-17', 22, '3', '2', 'Balakrishnan', 'Farmer', 10000.00, 1, 0.00, 12000.00, 'Cuddalore', 'Chennai', '2604180003', '', '1', 'upload_files/candidate_tracker/10962752910_Parameswari.pdf', NULL, '1', '2026-04-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'got 1 mark in programming', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-18 03:56:30', 154, '2026-04-18 04:22:17', 0, NULL, 1),
(29593, 'Dharani E', '23', '8925032403', '', 'dharanielavalagan01@gmail.com', '2003-07-09', 22, '3', '2', 'P.Elavalagan', 'Painter', 15000.00, 1, 0.00, 20000.00, 'S.Aduthurai Perambalur (DT), Kunnam(TK) 621 108', 'Porur chennai', '2604180004', '', '1', 'upload_files/candidate_tracker/61573887753_E.DHARANI.pdf', NULL, '1', '2026-04-18', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'got 1 mark in interview', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-18 03:56:51', 154, '2026-04-18 04:22:46', 0, NULL, 1),
(29594, 'revathi priya', '23', '8778234514', '', 'priya2425gilari@gmail.com', '2004-04-07', 22, '3', '2', 'kannan', 'tailor', 10000.00, 1, 200000.00, 300000.00, 'thirunelveli', 'saidapet', '2604180005', '', '2', 'upload_files/candidate_tracker/41228165030_resumerevathipriya.pdf', NULL, '1', '2026-04-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', '1970-01-01', '2', '2', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-18 04:25:31', 154, '2026-04-18 04:32:54', 0, NULL, 1),
(29595, 'Parveen N', '13', '8220926566', '8675050373', 'parveenn2002@gmail.com', '2002-11-01', 23, '6', '2', 'Noordeen J', '2.5LPA', 18000.00, 1, 3.00, 4.50, 'Trichy', 'Chennai', '2604180006', '', '2', 'upload_files/candidate_tracker/43220399913_ParveenPHPLaravelDeveloperResume1.pdf', NULL, '1', '2026-04-18', 60, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-18 04:46:23', 154, '2026-04-18 10:35:03', 0, NULL, 1),
(29596, 'Yazhini', '2', '6382745523', '', 'yazhiniyazhini6@gmail.com', '1995-09-08', 30, '3', '1', 'Karthikeyan', 'Manager', 20000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2604180007', '', '1', 'upload_files/candidate_tracker/55396332913_YazhiniCopy.pdf', NULL, '1', '2026-04-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-18 04:53:09', 154, '2026-04-18 01:26:41', 0, NULL, 1),
(29597, 'Akash A', '6', '9080717153', '', 'ajithakash124@gmail.com', '2004-09-05', 21, '2', '2', 'Arumugam', 'Carpenter', 200000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2604180008', '73', '1', 'upload_files/candidate_tracker/51871866426_ResumeAkash.pdf', NULL, '1', '2026-04-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-18 04:53:32', 154, '2026-04-29 12:18:04', 0, NULL, 1),
(29598, 'parthiban .j', '6', '9940228763', '9884929379', 'parthiban.j04@gmail.com', '1993-12-15', 32, '2', '2', 'J. Amul', 'Retired staff nurse', 70000.00, 1, 23.00, 23.00, 'chennai', 'chennai', '2604180009', '50', '2', 'upload_files/candidate_tracker/76590839938_Parthibanresume.pdf', NULL, '1', '2026-04-29', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-18 04:53:44', 154, '2026-04-29 11:50:25', 0, NULL, 1),
(29599, 'govarathan g', '6', '8015469205', '', 'govarthangovarthan36@gmail.com', '2004-03-16', 22, '3', '2', 'kajalakshmi g', 'tilor', 200000.00, 1, 0.00, 22000.00, 'chennai', 'chennai', '2604180010', '', '1', 'upload_files/candidate_tracker/25674334703_GOVARATHANresume.pdf', NULL, '1', '2026-04-18', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-18 04:57:30', 154, '2026-04-18 04:44:40', 0, NULL, 1),
(29600, '', '0', '9566031584', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604180011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-18 05:22:39', 0, NULL, 0, NULL, 1),
(29601, 'Ashlin Elizabeth E', '13', '7708509405', '9342661456', 'ashlinashlu007@gmail.com', '2000-03-07', 26, '6', '2', 'Edward john sagariya', 'Driver', 60000.00, 1, 8.50, 8.50, 'Thiruvanamalai', 'Chennai', '2604180012', '', '2', 'upload_files/candidate_tracker/6317705150_Ashlin.pdf', NULL, '1', '2026-04-18', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-18 06:16:53', 154, '2026-04-18 12:15:43', 0, NULL, 1),
(29602, '', '0', '8050135019', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604180013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-18 06:30:45', 0, NULL, 0, NULL, 1),
(29603, 'R Harish Babu', '5', '8050135019', '', 'hari2000harish@gmail.com', '2000-07-02', 25, '2', '1', 'P Ramesh', 'Fabricator', 40000.00, 1, 21000.00, 28000.00, 'Blore', 'Blore', '2604180014', '1', '2', 'upload_files/candidate_tracker/83007305637_PlacementOpportunities.docx', NULL, '1', '2026-04-18', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected for pc suggested ctc 23k', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '55555', '5151', '1970-01-01', 172, '2026-04-18 12:05:11', 60, '2026-04-21 05:37:44', 0, NULL, 1),
(29604, 'Goutham', '5', '9566293077', '7810031331', 'gouthamkarthik53@gmail.com', '1996-06-19', 29, '2', '2', 'Madhu Kumar', 'Wage work', 240000.00, 0, 21500.00, 25000.00, 'Chennai', 'Chennai', '2604180015', '73', '2', 'upload_files/candidate_tracker/18007691634_GouthamResume3.pdf', NULL, '1', '2026-04-18', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55560', '55560', '1970-01-01', 1, '2026-04-18 06:37:58', 154, '2026-04-29 12:18:50', 0, NULL, 1),
(29605, 'avinash m n', '6', '9538774156', '9739495770', 'Avinash.sln2810@gmail.com', '1998-10-28', 27, '2', '2', 'narasimha', 'barbar', 80000.00, 1, 26000.00, 30000.00, 'jp nagar', 'jp nagar', '2604180016', '57', '2', 'upload_files/candidate_tracker/85280772992_AcctStatement89162301202616.59.32.pdf', NULL, '1', '2026-04-18', 0, '', '1', '173', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-18 06:42:43', 172, '2026-04-18 02:50:12', 0, NULL, 1),
(29606, 'Santhosh madesh', '6', '9886657731', '', 'santhoshmadesh35@gmail.com', '2001-04-24', 24, '2', '2', 'Madesh y', 'Civil contractor', 30.00, 2, 0.00, 20000.00, 'Madiwala', 'Madiwala', '2604180017', '1', '1', 'upload_files/candidate_tracker/25310211730_santhoshresume.pdf', NULL, '1', '2026-04-18', 0, '', '3', '59', '2026-04-27', 216000.00, '', '1', '1970-01-01', '2', 'Communication Ok fresher need to check in training n', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '55899', 'C99176', '2026-04-27', 1, '2026-04-18 06:42:57', 60, '2026-04-27 12:20:29', 0, NULL, 1),
(29607, 'vaishnavi g', '5', '6382485858', '', 'vaishuroshan0808@gmail.com', '1998-10-20', 27, '2', '1', 'vija', 'business', 13000.00, 1, 430000.00, 580000.00, 'Purasawalkam', 'purasawalkam', '2604180018', '1', '2', 'upload_files/candidate_tracker/73157252193_Resumevaishanvi1.pdf', NULL, '1', '2026-04-18', 0, '', '1', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55735', '55557', '1970-01-01', 154, '2026-04-18 12:21:58', 154, '2026-04-18 04:53:19', 0, NULL, 1),
(29608, '381503169123', '13', '8012014567', '', 'Aishwaryasettu4511@gmail.com', '2003-11-01', 22, '3', '1', 'Siva', 'Designer', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2604180019', '', '1', 'upload_files/candidate_tracker/13477585702_AISHWARYALAKSHMI.SresumeG1.pdf', NULL, '1', '2026-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-18 06:55:31', 1, '2026-04-18 07:05:30', 0, NULL, 1),
(29609, '', '0', '8884374432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604180020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-18 06:56:40', 0, NULL, 0, NULL, 1),
(29610, 'Chinna Yannam', '6', '8884374432', '', 'chinnadeshmukh@gmail.com', '2000-12-12', 25, '2', '2', 'Tirumalaiah', 'Assistant Manager', 35000.00, 1, 0.00, 0.00, 'BTM', 'Bengalore', '2604180021', '1', '1', 'upload_files/candidate_tracker/81183435784_Chinnaresume.pdf', NULL, '1', '2026-04-18', 0, '', '3', '59', '2026-04-27', 216000.00, '', '1', '1970-01-01', '1', 'Communication Ok Fresher need to check in training and confirm', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '55786', 'C99176', '2026-04-27', 172, '2026-04-18 12:39:07', 60, '2026-04-27 12:21:47', 0, NULL, 1),
(29611, 'Thangasam', '31', '8190014621', '', 'thangasamy1999@GMAIL.com', '1999-03-06', 27, '2', '2', 'murugia', 'farmer', 12000.00, 2, 15000.00, 22000.00, 'Kumbakonam', 'ekkatuthangal', '2604180022', '1', '2', 'upload_files/candidate_tracker/19306417261_ThangasamyFrontendDeveloper.pdf', NULL, '1', '2026-04-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-18 07:12:20', 154, '2026-04-18 12:56:39', 0, NULL, 1),
(29612, 'Ratnam Maruti Kumar', '5', '9790920483', '9551341995', 'rathnammaruthi@gmail.com', '1987-12-12', 38, '3', '2', 'R.Indrani', 'Retired', 65000.00, 2, 29000.00, 30000.00, 'Chennai', 'Chennai', '2604180023', '', '2', 'upload_files/candidate_tracker/41581243293_KUMAR11.pdf', NULL, '1', '2026-04-18', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-18 09:57:32', 154, '2026-04-18 04:45:51', 0, NULL, 1),
(29613, 'Sri Namrutha', '4', '9342482420', '8778294256', 'srinamrutha7@gmail.com', '2004-02-15', 22, '2', '1', 'Sivaraman', 'IT job', 40000.00, 1, 0.00, 15000.00, 'Avadi', 'Avadi', '2604180024', '50', '1', 'upload_files/candidate_tracker/85566267729_SriNamruthaResume12.pdf', NULL, '3', '2026-04-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-18 10:36:56', 1, '2026-04-18 10:42:12', 0, NULL, 1),
(29614, '', '0', '9025835567', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604180025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-18 11:03:49', 0, NULL, 0, NULL, 1),
(29615, 'D.Janani', '11', '9360306582', '', 'Janani.7225@gmail.com', '2005-02-07', 21, '3', '2', 'Dilli Babu .L', 'Student', 100000.00, 1, 0.00, 5000.00, 'New no.175 old no 81 , VM street, Mylapore.', 'CHENNAI', '2604180026', '', '1', 'upload_files/candidate_tracker/94410567976_Prof.ResumeD.Janani202604181553430000.pdf', NULL, '1', '2026-04-21', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-18 12:18:00', 154, '2026-04-21 04:53:50', 0, NULL, 1),
(29616, 'Benazir Ameena Banu J', '11', '6380059150', '', 'benazirameena64@gmail.com', '2004-09-21', 21, '3', '2', 'Jahir Hussain A', 'Business', 50000.00, 2, 0.00, 3000.00, 'No8; Bharathi dasan street ,pammal, chennai -75', 'No8; Bharathi dasan street ,pammal, chennai -75', '2604180027', '', '1', 'upload_files/candidate_tracker/63987878120_RESUMEBENAZIRF.pdf', NULL, '1', '2026-04-21', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-18 12:54:10', 154, '2026-04-21 04:54:54', 0, NULL, 1),
(29617, '', '0', '8807915352', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604180028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-18 01:58:05', 0, NULL, 0, NULL, 1),
(29618, '', '0', '6374436756', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604180029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-18 02:09:49', 0, NULL, 0, NULL, 1),
(29619, '', '0', '9710719643', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604180030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-18 04:45:56', 0, NULL, 0, NULL, 1),
(29620, 'SUPRITHA N', '6', '7358283831', '9840704255', 'suprithasupritha846@gmail.com', '2002-11-12', 23, '2', '2', 'NAGARAJ', 'Auto driver', 30000.00, 1, 20000.00, 20000.00, 'Pudupet', 'Pudupet', '2604200001', '1', '2', 'upload_files/candidate_tracker/80962649278_RESUME20.pdf', NULL, '1', '2026-04-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication little ok 5050 profile will Check with her in the training period ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55666', 'C99176', '1970-01-01', 1, '2026-04-20 02:01:08', 154, '2026-04-21 04:33:16', 0, NULL, 1),
(29621, 'Syed Faiza', '4', '9629811301', '', 'Faizafabhjs123@gmail.com', '2001-05-01', 24, '2', '1', 'Karim', 'Business', 25000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2604200002', '50', '2', 'upload_files/candidate_tracker/86621479230_DOC20260331WA0012..pdf', NULL, '1', '2026-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-20 04:32:28', 1, '2026-04-20 05:45:28', 0, NULL, 1),
(29622, 'sanjay s', '4', '9566008892', '', 'sanjayaruna2003@gmail.com', '2003-03-04', 23, '2', '2', 'Santhosh', 'Tax consultant', 400000.00, 0, 18000.00, 25000.00, 'Chennai', 'Chennai', '2604200003', '50', '2', 'upload_files/candidate_tracker/34567014420_CV2026011921293796compressed.pdf', NULL, '1', '2026-04-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-20 04:54:38', 1, '2026-04-20 04:57:16', 0, NULL, 1),
(29623, 'SUNDAR RAJAN N E', '5', '8893234137', '', 'rajansundar938@gmail.com', '1997-08-26', 28, '2', '1', 'Meenakshi', 'Housewife', 30000.00, 1, 25000.00, 30000.00, 'Palakkad, Kerala', 'Bangalore', '2604200004', '1', '2', 'upload_files/candidate_tracker/52846873400_SundarRajanResume2.pdf', NULL, '1', '2026-04-20', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for pc immediate joining suggested ctc 27 to 28k', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1032', '', '55555', '5151', '1970-01-01', 1, '2026-04-20 05:50:24', 154, '2026-04-25 06:47:38', 0, NULL, 1),
(29624, 'Kanishka M', '13', '9123501199', '', 'mahalingamkanishka2003@gmail.com', '2003-10-16', 22, '5', '2', 'Mahalingam K', 'Farmer', 72000.00, 1, 0.00, 300000.00, 'Namakkal', 'Chennai', '2604200005', '', '1', 'upload_files/candidate_tracker/87183968929_KanishkaMResume.pdf', NULL, '1', '2026-04-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-20 05:59:50', 154, '2026-04-20 12:10:44', 0, NULL, 1),
(29625, 'Lakshmi Prabha R V', '13', '9025722729', '', 'Lakshmiprabha1403@gmail.com', '2003-03-14', 23, '5', '2', 'Varatharajan', 'Farmer', 20000.00, 1, 0.00, 300000.00, 'Namakkal', 'Chennai', '2604200006', '', '1', 'upload_files/candidate_tracker/98748247475_ATSresume.pdf', NULL, '1', '2026-04-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-20 06:00:39', 154, '2026-04-20 12:11:17', 0, NULL, 1),
(29626, 'Rubigadevi R', '13', '8015500140', '', 'ravimagesh1980@gmail.com', '2004-08-22', 21, '5', '2', 'Ravikumar B', 'Farmer', 65000.00, 1, 0.00, 300000.00, 'Perambalur', 'Chennai', '2604200007', '', '1', 'upload_files/candidate_tracker/65195070938_RUBIGADEVIR1.pdf', NULL, '1', '2026-04-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-04-20 06:02:02', 154, '2026-04-21 03:46:55', 0, NULL, 1),
(29627, '', '0', '9789961269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604200008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-20 06:06:51', 0, NULL, 0, NULL, 1),
(29628, '', '0', '9789961268', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-20 06:12:26', 0, NULL, 0, NULL, 1),
(29629, 'Sudheksha B', '13', '9597406905', '', 'sudhekshasudhi901@gmail.com', '2003-09-09', 0, '3', '2', 'Baskar P', 'Driver', 50000.00, 4, 0.00, 3.00, 'Namakkal', 'Chennai', '2604200010', '', '1', 'upload_files/candidate_tracker/72544867485_sudhiresume1.pdf', NULL, '1', '2026-04-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected in group disussion', '2', '2', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-20 06:14:16', 154, '2026-04-21 03:47:32', 0, NULL, 1),
(29630, 'yogesh mahendran', '2', '8667855367', '', 'yogeshh1224@gmail.com', '2003-07-12', 22, '3', '2', 'mahendran', 'tube production of india pvt.lmt', 100000.00, 1, 0.00, 2.00, 'chennai', 'chennai', '2604200011', '', '1', 'upload_files/candidate_tracker/18365267053_YOGESHRESUME2.pdf', NULL, '1', '2026-04-20', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected in group discussion', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-20 06:45:01', 154, '2026-04-21 09:05:42', 0, NULL, 1),
(29631, 's r prabakar', '2', '6369284669', '', 'prabaxnaresh@gmail.com', '2004-11-15', 21, '2', '2', 't s r ramakrishnan', 'Retired', 1200000.00, 1, 0.00, 200000.00, 'casagrand asta korattur chennai', 'casagrand asta korattur chennai', '2604200012', '1', '1', 'upload_files/candidate_tracker/62054920711_PrabakarResumeAI.pdf', NULL, '1', '2026-04-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-04-20 06:52:46', 154, '2026-04-21 10:43:18', 0, NULL, 1),
(29632, 'santhosh', '6', '9025835567', '', 'santhos9025@gmail.com', '2003-07-25', 22, '2', '2', 'perumal', 'building centring', 15000.00, 3, 18000.00, 25000.00, 'salem', 'Velachery,Chennai', '2604200013', '1', '2', 'upload_files/candidate_tracker/44320286106_WhatsAppImage20260420at12.39.00.pdf', NULL, '1', '2026-04-20', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55882', '55566', '1970-01-01', 154, '2026-04-20 12:43:27', 154, '2026-04-21 04:14:04', 0, NULL, 1),
(29633, '', '0', '9597921046', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604200014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-20 09:33:55', 0, NULL, 0, NULL, 1),
(29634, 'SUNDARI C', '2', '9025635647', '6379218101', 'csundari2000@gmail.com', '2000-10-13', 25, '5', '2', 'Chandra boss kamaraj. S', 'Farmer', 20000.00, 1, 0.00, 100000.00, 'ulundurpet', 'ulundurpet', '2604200015', '', '1', 'upload_files/candidate_tracker/21379529757_SundariCFSDResume.pdf', NULL, '1', '2026-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-20 11:40:31', 1, '2026-04-20 11:45:07', 0, NULL, 1),
(29635, '', '0', '6380561287', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604200016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-20 11:44:52', 0, NULL, 0, NULL, 1),
(29636, 'HARSHA B', '11', '9382927233', '9382339448', 'harsha07072005@gmail.com', '2005-07-07', 20, '3', '2', 'BALAJI RAO L', 'AUTO DRIVER', 15000.00, 1, 0.00, 3000.00, '21/38,NEW BUNGLOW STREET,CHINTADRIPET,CHENNAI.', '21/38,NEW BUNGLOW STREET,CHINTADRIPET,CHENNAI.', '2604200017', '', '1', 'upload_files/candidate_tracker/11889101814_HARSHABRESUME202603251121190000.pdf', NULL, '1', '2026-04-21', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-20 11:49:09', 154, '2026-04-21 04:57:04', 0, NULL, 1),
(29637, 'Easther mary', '6', '7708924782', '7339258755', 'esthermary11c1@gmail.com', '2004-10-25', 21, '2', '2', 'Irundhaya nathan', 'Furniture technician', 25000.00, 1, 0.00, 16.00, 'Chennai', 'Chennai Kodambakkam', '2604200018', '1', '1', 'upload_files/candidate_tracker/95104624922_Scandocument20260507123613.pdf', NULL, '1', '2026-05-07', 0, '', '3', '59', '2026-05-11', 204000.00, '', '5', '1970-01-01', '2', 'Communication ok fresher for our insurance sales can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', 'P1070', 'C99176', '2026-05-11', 1, '2026-04-20 12:35:26', 60, '2026-05-09 05:40:01', 0, NULL, 1),
(29638, 'Swetha K', '11', '9445278782', '', 'shwetha2004swetha@gmail.com', '2004-08-30', 21, '3', '2', 'Kandaswamy R', 'Clerk', 35000.00, 1, 0.00, 5000.00, 'Chennai', 'Chennai', '2604200019', '', '1', 'upload_files/candidate_tracker/37836258150_SwethaKResume.pdf', NULL, '1', '2026-04-21', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-20 12:42:50', 154, '2026-04-21 04:57:40', 0, NULL, 1),
(29639, '', '0', '6379044744', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604200020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-20 01:44:24', 0, NULL, 0, NULL, 1),
(29640, 'Vishwathaa G C', '11', '8148560162', '9894512216', 'gcvishwathaa@gmail.com', '2005-01-21', 21, '3', '2', 'Gopi A & Chitra V', 'Student', 80000.00, 1, 0.00, 3000.00, 'AS2, Swagatham Flats, TMP Nagar, Pudur, Ambattur', 'AS2, Swagatham Flats, TMP Nagar, Pudur, Ambattur', '2604200021', '', '1', 'upload_files/candidate_tracker/84623670917_VishwathaaGCResume.pdf', NULL, '1', '2026-04-21', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-20 03:58:57', 154, '2026-04-21 04:59:56', 0, NULL, 1),
(29641, 'Soundarya .B', '11', '9940312858', '6380626813', 'mayasound60@gmail.com', '2004-08-08', 21, '3', '2', 'Babu', 'M.B.A student', 120000.00, 1, 0.00, 8.00, 'Virugambakkam', 'Virugambakkam', '2604200022', '', '1', 'upload_files/candidate_tracker/48277919510_RESUMEHIBAINTERN.pdf', NULL, '1', '2026-04-21', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-20 04:38:37', 154, '2026-04-21 05:00:22', 0, NULL, 1),
(29642, 'V kaviya', '6', '9363275144', '', 'kaviyajemima07@gmail.com', '2004-02-29', 22, '2', '2', 'vilvanathan', 'own business', 40000.00, 2, 0.00, 20000.00, 'vellore', 'electronic city', '2604210001', '57', '1', 'upload_files/candidate_tracker/21007812944_KaviyaUpdatedResume4.pdf', NULL, '1', '2026-04-21', 0, '', '3', '59', '2026-05-04', 216000.00, '', '1', '1970-01-01', '1', 'Communication ok can give a try  and check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55899', 'C99176', '2026-05-04', 1, '2026-04-21 04:15:19', 60, '2026-05-04 10:00:39', 0, NULL, 1),
(29643, 'Sanga Naveen Kumar', '6', '7993292081', '', 'naveenkumarsanga319@gmail.com', '2000-05-29', 25, '2', '2', 'S Ramu', 'Weaving', 15000.00, 1, 17000.00, 24000.00, 'Dharmavaram', 'Bangalore', '2604210002', '57', '2', 'upload_files/candidate_tracker/1073608430_NaveenResume.pdf', NULL, '1', '2026-04-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-21 04:23:14', 172, '2026-04-21 10:36:19', 0, NULL, 1),
(29644, 'Subash T', '34', '9566444280', '', 'subashkani2005@gmail.com', '2005-08-04', 20, '6', '2', 'S.Thamaraikani', 'Tailor', 100000.00, 1, 0.00, 2.00, 'Virudhunager', 'Chennai', '2604210003', '', '1', 'upload_files/candidate_tracker/86145055881_QAResume.pdf', NULL, '1', '2026-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 04:26:37', 1, '2026-04-21 04:32:23', 0, NULL, 1),
(29645, 'KRITHIK KRISHNA M', '34', '9025947505', '', 'krithikkrishna2304@gmail.com', '2004-01-23', 22, '6', '2', 'Mariyappan R', 'Water supplieer', 25000.00, 1, 330000.00, 450000.00, 'Chennai', 'Chennai', '2604210004', '', '2', 'upload_files/candidate_tracker/32697553201_KrithikKrishnaCloudSupportEngineer.pdf', NULL, '1', '2026-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 04:48:08', 1, '2026-04-21 04:51:32', 0, NULL, 1),
(29646, 'MADHANKUMAR', '2', '6380763270', '', 'madhankumarpmk777@gmail.com', '2002-10-05', 23, '5', '2', 'N.petchiyappan', 'Cooli', 10000.00, 1, 0.00, 150000.00, 'Virudhunagar', 'Chennai', '2604210005', '', '1', 'upload_files/candidate_tracker/15735239065_MadhanDeveloper.pdf', NULL, '1', '2026-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in final round', '', '', '', '', '', '1970-01-01', 1, '2026-04-21 04:52:32', 154, '2026-05-02 06:09:09', 0, NULL, 1),
(29647, 'Keerthika B', '31', '9342068784', '', 'Keerthika087@gmail.com', '2005-05-02', 20, '3', '2', 'Gomathi', 'Farmer', 10000.00, 2, 0.00, 220000.00, 'Chennai', 'Chennai', '2604210006', '', '1', 'upload_files/candidate_tracker/84399800911_KeerthikaResume1.pdf', NULL, '1', '2026-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 04:59:30', 1, '2026-04-21 05:03:25', 0, NULL, 1),
(29648, 'Vinusha Nalamati', '6', '7760350896', '', 'vinushanalamati21@gmail.com', '1999-12-22', 26, '2', '2', 'Rambabu', 'Farmer', 20000.00, 2, 250000.00, 350000.00, 'Bengaluru', 'Bengaluru', '2604210007', '1', '2', 'upload_files/candidate_tracker/84816979822_VinushaNalamatiResume.pdf', NULL, '1', '2026-04-21', 30, '', '4', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have good communication skill offred 20k', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1032', '', '55899', 'C99176', '1970-01-01', 1, '2026-04-21 05:05:35', 154, '2026-04-25 12:23:45', 0, NULL, 1),
(29649, 'Vidhusha. V', '11', '9344300992', '9791594167', 'Vidhusha069@gmail.com', '2004-09-06', 21, '3', '2', 'Velayutham', 'Employee', 20000.00, 2, 0.00, 8.00, 'Thiruvottiyur chennai 19', 'Thiruvottiyur, Chennai 19', '2604210008', '', '1', 'upload_files/candidate_tracker/41565234048_Vidhusha.MVMBARESUME.pdf', NULL, '1', '2026-04-21', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-21 05:17:09', 154, '2026-04-21 05:02:32', 0, NULL, 1),
(29650, 'SHAIK HIBA FATHIMA .S', '11', '9003110356', '9043578652', 'hibaf3585@gmail.com', '2005-05-10', 20, '3', '2', 'Shaik sharmila', 'Business', 20000.00, 1, 0.00, 8.00, 'No. 86 c block old washermenpet chennai 21', 'Chennai', '2604210009', '', '1', 'upload_files/candidate_tracker/40629896864_RESUMEHIBAINTERN2.pdf', NULL, '1', '2026-04-21', 0, '', '1', '155', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 05:17:18', 1, '2026-04-21 05:26:48', 0, NULL, 1),
(29651, 'Archana Dhakshnamoorthy', '34', '9790597028', '', 'archanadhakshnamoorthy02@gmail.com', '2011-04-21', 0, '3', '2', 'Dhakshnamoorthy', 'fresher', 40000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2604210010', '', '1', 'upload_files/candidate_tracker/10112169461_ARCHANACV.pdf', NULL, '1', '2026-04-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 05:33:34', 1, '2026-04-21 05:38:20', 0, NULL, 1),
(29652, 'SANJAY', '6', '9444740121', '9566008892', 'sanjayaruna2003@gmail.com', '2003-03-04', 23, '2', '2', 'Malarvizhiaruna', 'Housewife', 400000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2604210011', '50', '2', 'upload_files/candidate_tracker/81011083642_CV2026011921293796compressed.pdf', NULL, '3', '2026-04-21', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not so active xxamp have exp in SEO analyst for 1.2 years, will not handle targets and pressure and he may go to his domain itself if he gets.', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-21 05:37:15', 154, '2026-04-21 04:51:18', 0, NULL, 1),
(29653, 'Maitreyi D', '11', '9150825138', '', 'maitreyimaitreyid@gmail.com', '2004-06-22', 21, '3', '2', 'Dharakan', 'Retired', 30000.00, 2, 0.00, 30000.00, 'Chennai', 'Chennai', '2604210012', '', '1', 'upload_files/candidate_tracker/95407787868_Pi7ToolResumeupdatedcompressedcompressed.pdf', NULL, '1', '2026-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 05:42:36', 1, '2026-04-21 06:09:48', 0, NULL, 1),
(29654, '', '0', '9363329521', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604210013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-21 05:46:50', 0, NULL, 0, NULL, 1),
(29655, 'HEMANTH KUMAR M', '5', '9176314466', '8682900906', 'hemanthkumar4446@gmail.com', '1995-07-26', 30, '2', '2', 'Muthu Kumar D', 'Advocate', 70000.00, 1, 20000.00, 26000.00, 'Chennai', 'Chennai', '2604210014', '42', '2', 'upload_files/candidate_tracker/31952029723_UPDATEDRESUME.pdf.pdf', NULL, '1', '2026-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 05:47:33', 1, '2026-04-21 05:58:44', 0, NULL, 1),
(29656, 'Mahalakshmi M', '13', '7695985705', '', 'mahamay2003@gmail.com', '2003-05-01', 22, '5', '2', 'Manickam R', 'Farmer', 200000.00, 1, 0.00, 300000.00, 'Thoothukudi', 'Chennai', '2604210015', '', '1', 'upload_files/candidate_tracker/79796629526_Mahalakshmiresume.pdf', NULL, '1', '2026-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 06:05:29', 1, '2026-04-21 06:17:21', 0, NULL, 1),
(29657, 'Swetha T', '34', '9025296052', '7603931625', 'swethaswetha9353@gmail.com', '2005-08-05', 20, '6', '2', 'P.Thennaradu T.jayanthi', 'TNEB', 30000.00, 1, 0.00, 15000.00, 'Arcot', 'Velachery', '2604210016', '', '1', 'upload_files/candidate_tracker/41762505964_b45620071ef5437da62f6e5f29b3e1071.pdf', NULL, '1', '2026-04-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 06:08:01', 1, '2026-04-21 06:19:42', 0, NULL, 1),
(29658, 'Vidhya G', '13', '8678922175', '', 'g.vidhya72004@gmail.com', '2004-07-26', 21, '3', '2', 'Ganesa s', 'Farmer', 200000.00, 1, 0.00, 300000.00, 'Thoothukudi', 'Chennai ,T.Nagar', '2604210017', '', '1', 'upload_files/candidate_tracker/7694035859_Softwaredeveloper11.pdf', NULL, '1', '2026-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 06:08:19', 1, '2026-04-21 06:48:18', 0, NULL, 1),
(29659, 'Praveensager', '13', '8778095957', '', 'Praveensagar1604@gmail.com', '2002-04-16', 24, '5', '2', 'Punitha', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Chidambaram', 'Thoraipakkam', '2604210018', '', '1', 'upload_files/candidate_tracker/3927213292_PRAVEENSAGERB.TechResume.pdf', NULL, '1', '2026-04-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 06:23:47', 1, '2026-04-21 06:30:37', 0, NULL, 1),
(29660, 'Jaffer shariff', '6', '9620679417', '9535502434', 'jaffershariff917@gmail.com', '2011-04-21', 0, '2', '2', 'Aman shariff', 'Auto driver', 25000.00, 1, 22000.00, 23000.00, 'Bangalore', 'Bangalore', '2604210019', '57', '2', 'upload_files/candidate_tracker/25671211959_Document.pdf', NULL, '1', '2026-04-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-21 06:49:41', 172, '2026-04-21 12:42:20', 0, NULL, 1),
(29661, 'hariprakash', '6', '7904040252', '', 'hariprakash635805@gmail', '2003-05-07', 22, '2', '2', 'kuzhandaivel', 'driver', 4.00, 1, 15000.00, 20.00, 'annanagar', 'annanagar', '2604210020', '1', '2', 'upload_files/candidate_tracker/89324185387_resume2.pdf', NULL, '1', '2026-04-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55605', '55566', '1970-01-01', 1, '2026-04-21 07:53:18', 154, '2026-04-22 02:43:13', 0, NULL, 1),
(29662, 'Mahwish Naaz', '13', '6205331784', '', 'mahwishn711@gmail.com', '2011-04-21', 0, '3', '2', 'Mukhtar Ahmad', 'Retired ( Government emp -- Peon )', 20000.00, 1, 16000.00, 20000.00, 'Patna, Bihar', 'Medhavakkam, Chennai', '2604210021', '', '2', 'upload_files/candidate_tracker/76230401365_MahwishNaazresume.pdf', NULL, '1', '2026-04-21', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 08:01:37', 1, '2026-04-21 08:12:35', 0, NULL, 1),
(29663, '990334684654', '4', '7418736342', '', 'kalaivanibs.cse@gmail.com', '1999-10-01', 26, '2', '1', 'Sivaraman M', 'BNY Mellon technologies', 50000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2604210022', '50', '1', 'upload_files/candidate_tracker/58572541658_kalairesume.pdf', NULL, '1', '2026-04-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 08:36:23', 1, '2026-04-22 02:27:36', 0, NULL, 1),
(29664, 'suraj fathima nm', '5', '9940517663', '', 'fowziyafowzi3@gmail.com', '2000-03-24', 26, '1', '2', 'faridha', 'sales', 50000.00, 1, 40000.00, 35000.00, 'olympic colony cross street mugapair chennai padi.', 'mugapair', '2604210023', '', '2', 'upload_files/candidate_tracker/36277830022_SURAJFATHIMAResume2.pdf', NULL, '1', '2026-04-21', 0, '55914', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for RM role\nsriram selected this candidate\nhaving good communication skill\n4 yr exp in Ar calling \nwilling to work in sales\npackage have to negociate', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2026-04-21 09:16:47', 154, '2026-04-25 06:13:38', 0, NULL, 1),
(29665, 'Guruprasath N', '13', '9025431958', '9043967472', 'guruprasathguru8925@gmail.com', '2003-10-26', 22, '3', '2', '99/1 kaman Kovil Street', 'Conductor', 15000.00, 1, 15000.00, 25000.00, 'Cuddalore(Panruti)', 'Cuddalore(Panruti)', '2604210024', '', '2', 'upload_files/candidate_tracker/17218089253_guruprasath.newresume1.pdf', NULL, '1', '2026-04-21', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '4', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 09:34:16', 1, '2026-04-21 09:47:37', 0, NULL, 1),
(29666, '746807283723', '4', '8012161468', '', 'ddigalpandi@gmail.com', '2004-07-07', 21, '2', '2', 'N.kanniyappan  k.dhatchayani', 'Welder', 20000.00, 1, 0.00, 18000.00, '2/65 mamallapuram road kothimangalam', '2/65 mamallapuram road kothimangalam', '2604210025', '50', '1', 'upload_files/candidate_tracker/35277400010_downloadresume2.pdf', NULL, '1', '2026-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 09:43:50', 1, '2026-04-21 09:53:55', 0, NULL, 1),
(29667, 'KARTHIKEYAN', '4', '6374233507', '9488389240', 'vijayrasigan789@gmail.com', '2002-07-25', 23, '2', '2', 'Govindhan', 'Former', 50000.00, 1, 0.00, 28000.00, 'Pillaiyar Kovil Street nagalkudi kallakurichi', 'Nazaratpet Poonamallee', '2604210026', '50', '1', 'upload_files/candidate_tracker/42592111713_myresume.pdf', NULL, '1', '2026-04-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-21 09:58:50', 1, '2026-04-21 10:09:06', 0, NULL, 1),
(29668, '', '0', '6274233507', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604210027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-21 10:11:03', 0, NULL, 0, NULL, 1),
(29669, 'KARTHIKEYAN', '6', '6375233507', '9488389240', 'vijayrasigan789@gmail.com', '2002-07-25', 23, '2', '2', 'Father', 'Former', 50000.00, 1, 0.00, 25000.00, 'Pillaiyar Kovil Street nagalkudi kallakurichi', 'Nazaratpet Poonamallee', '2604210028', '50', '1', 'upload_files/candidate_tracker/36070023335_myresume.pdf', NULL, '1', '2026-04-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-21 10:12:22', 154, '2026-04-30 12:27:59', 0, NULL, 1),
(29670, 'Abarna Thiyagarajan', '13', '9445128042', '', 'abarnat2003@gmail.com', '2003-03-27', 23, '2', '2', 'Thiyagarajan', 'Manager', 35000.00, 2, 0.00, 28000.00, 'CHENNAI', 'CHENNAI', '2604210029', '1', '1', 'upload_files/candidate_tracker/34339025696_Abarna.Tresume11zon.pdf', NULL, '1', '2026-04-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', '55605', '55566', '1970-01-01', 1, '2026-04-21 10:29:46', 154, '2026-04-22 02:59:06', 0, NULL, 1),
(29671, 'Afrose Banu T', '13', '7299538939', '', 'afrosebanu464@gmail.com', '2004-08-05', 21, '6', '2', 'Thamemul Ansari Y', 'Bakery Master', 12000.00, 1, 0.00, 20000.00, 'Minjur', 'Minjur', '2604220001', '', '1', 'upload_files/candidate_tracker/84967006192_AfroseBanu.pdf', NULL, '1', '2026-04-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-22 04:33:50', 154, '2026-04-22 10:12:14', 0, NULL, 1),
(29672, 'Divakar T', '13', '9994426975', '9884597312', 'divakarthiyagarajan4@gmail.com', '2006-01-05', 20, '6', '2', 'Thiyagarajan', 'NULL', 30000.00, 0, 0.00, 30000.00, 'chennai', 'chennai', '2604220002', '', '1', 'upload_files/candidate_tracker/94720276675_backend.pdf', NULL, '1', '2026-04-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-22 04:41:09', 154, '2026-04-22 10:30:53', 0, NULL, 1),
(29673, '', '0', '7806999267', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604220003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-22 04:57:12', 0, NULL, 0, NULL, 1),
(29674, 'priya t', '13', '7806999267', '', 'pt.priya1524@gmail.com', '2004-03-15', 22, '6', '2', 's thinagaran', 'driver', 10000.00, 1, 0.00, 10000.00, 'thindivanam', 'porur', '2604220004', '', '1', 'upload_files/candidate_tracker/99377020172_PriyaTFlowCVResume20260124.pdf', NULL, '1', '2026-04-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 154, '2026-04-22 10:43:57', 154, '2026-04-22 10:44:51', 0, NULL, 1),
(29675, 'Dhasarathan', '6', '8220039408', '9965232524', 'dhasarathanmuruganatham@gmail.com', '1994-02-13', 32, '2', '2', 'Muruganantham', 'Farmer', 20000.00, 2, 0.00, 20000.00, '613002', 'Thanjavur', '2604220005', '1', '1', 'upload_files/candidate_tracker/59795132688_DhasarathanFlowCVResume2026032922.pdf', NULL, '1', '2026-04-22', 0, '', '5', '168', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Performed well have high expectation', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'CI144', 'C99176', '1970-01-01', 1, '2026-04-22 05:15:38', 154, '2026-04-22 11:37:53', 0, NULL, 1),
(29676, '', '0', '6369965596', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604220006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-22 06:28:16', 0, NULL, 0, NULL, 1),
(29677, 'pugazhendi', '6', '9176908009', '8682997726', 'pugazhendi010103@gmail.com', '2003-01-01', 23, '1', '2', 'vijayasekar', 'driver', 250000.00, 1, 17000.00, 20000.00, 'kodambakkam', 'ramapuram', '2604220007', '', '2', 'upload_files/candidate_tracker/19425177785_pugazhendipvresume.pdf', NULL, '1', '2026-04-22', 15, 'c99326', '3', '59', '2026-04-28', 222000.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp in calling and worked in vizza for few months can give a try and check', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55732', '55645', '2026-04-28', 1, '2026-04-22 06:30:27', 60, '2026-04-28 10:30:40', 0, NULL, 1),
(29678, 'Rebekha Vincent', '6', '6381048056', '', 'rebekhavincent@gmail.com', '2003-12-12', 22, '2', '2', 'Vincent Koil nadar', 'Supervisor in TC', 100000.00, 3, 210000.00, 3000.00, 'Nagercoil', 'Chennai', '2604220008', '1', '2', 'upload_files/candidate_tracker/88792873993_Resume11.PDF', NULL, '1', '2026-04-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55605', '55566', '1970-01-01', 1, '2026-04-22 06:40:06', 154, '2026-04-22 02:45:32', 0, NULL, 1),
(29679, 'Kavinayasri Mohan', '13', '9025595371', '', 'kavinayasri59@gmail.com', '2004-07-23', 21, '6', '2', 'Kalaivani', 'Professor', 10000.00, 1, 0.00, 350000.00, 'Karaikudi', 'Chennai', '2604220009', '', '1', 'upload_files/candidate_tracker/31975028798_downloadresume1.pdf', NULL, '1', '2026-04-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-22 06:42:44', 154, '2026-04-22 12:21:36', 0, NULL, 1),
(29680, 'sundhar', '6', '6369965596', '', 'sundharmurugan46@gmail.com', '2004-01-20', 22, '1', '2', 'murugan', 'Carpenter', 30000.00, 3, 15000.00, 18000.00, 'nerkundram', 'nerkundram', '2604220010', '', '2', 'upload_files/candidate_tracker/3986369634_sundharresume.1.pdf', NULL, '1', '2026-04-22', 0, 'c99326', '3', '59', '2026-04-27', 204000.00, '', '1', '1970-01-01', '1', 'Communication Ok have 9 monhts exp in vizza can give a try and check in training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55732', '55645', '2026-04-27', 154, '2026-04-22 12:12:56', 60, '2026-04-27 11:04:44', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29681, 'Sanjay N', '13', '9994898536', '', 'sanjaynana183@gmail.com', '2004-11-20', 21, '3', '2', 'Narayanan L', 'MTC', 90000.00, 0, 0.00, 26000.00, 'Minjur', 'Minjur', '2604220011', '', '1', 'upload_files/candidate_tracker/1071291697_SanjayNupdatedresume.pdf', NULL, '1', '2026-04-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-22 06:46:39', 154, '2026-04-22 01:09:06', 0, NULL, 1),
(29682, 'sowmiya', '6', '9791193863', '9791434545', 'sowmikezi@gmail.com', '1997-11-11', 28, '2', '1', 'Parthiban v', 'Relationship executive', 35000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2604220012', '50', '1', 'upload_files/candidate_tracker/54650628778_SowmyResume.pdf', NULL, '1', '2026-04-22', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-22 06:57:31', 154, '2026-04-22 02:46:38', 0, NULL, 1),
(29683, '', '0', '9840294167', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604220013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-22 06:58:21', 0, NULL, 0, NULL, 1),
(29684, 'mohanapriya r', '2', '9944240307', '6374228326', 'mohanapriyaram12ars@gmail.com', '2004-01-12', 22, '6', '2', 'ramu', 'private job', 20000.00, 1, 0.00, 4.00, 'coimbatore', 'coimbatore', '2604220014', '', '1', 'upload_files/candidate_tracker/88885701797_MohanapriyaRResume.pdf', NULL, '1', '2026-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-22 10:20:27', 1, '2026-04-22 10:26:30', 0, NULL, 1),
(29685, '', '0', '9489457179', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604220015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-22 11:05:28', 0, NULL, 0, NULL, 1),
(29686, 'Vimalraj P', '6', '8148894856', '', 'vimalraj05012006@gmail.com', '2006-05-01', 19, '2', '2', 'Paulraj L', 'Senior Operator', 240000.00, 1, 0.00, 20000.00, 'Annanur', 'Annanur', '2604220016', '1', '1', 'upload_files/candidate_tracker/15317901395_PVIMALRAJResume1.pdf202603290747530000.pdf', NULL, '1', '2026-04-24', 0, '', '5', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was from tiruvallur and he was looking for higher ctc for a fresher and so he was also having other options ', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', 'P1287', 'C99176', '1970-01-01', 1, '2026-04-22 12:24:14', 154, '2026-04-24 12:58:46', 0, NULL, 1),
(29687, 'Santhiya.V', '4', '9751784137', '8248625135', 'santhiyav2112@gmail.com', '2004-12-21', 21, '2', '2', 'Vembarasi', 'Farmer', 10000.00, 2, 9000.00, 13000.00, '32(1), Melatheru,ponnappur,Orathanadu ,Thanjavur', '32(1), Melatheru,ponnappur,Orathanadu ,Thanjavur', '2604240001', '1', '2', 'upload_files/candidate_tracker/83499447102_santhiyaResume.pdf', NULL, '1', '2026-04-24', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is ok with the profile completed bca and doing 3 month type writing and seeking job and joined in reimens solution loan collection 6 months experience....have no growth in the process so she ready to releived,,,currently in notice period...last salary 9.5k only...father passed..sister worked in manufacturing company 14k salary...poor family brother 7th standard....mother doing farming.....,.expected 12 to 14k we can try......have sustainability...pervious telecalling basic experience...kindly cross check joining date...', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', 'P1023', 'C99176', '1970-01-01', 1, '2026-04-24 04:08:44', 154, '2026-04-24 12:09:27', 0, NULL, 1),
(29688, 'Aakash P', '2', '9043776020', '', 'akoutlook001@gmail.com', '2004-03-25', 22, '6', '2', 'Palaniappan A', 'Plumber', 20000.00, 1, 0.00, 25000.00, 'Manali New town', 'Manali New town', '2604240002', '', '1', 'upload_files/candidate_tracker/21826689457_commonresume.pdf', NULL, '1', '2026-04-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-24 05:01:33', 154, '2026-04-24 02:45:27', 0, NULL, 1),
(29689, '', '0', '8220039409', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604240003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-24 05:01:51', 0, NULL, 0, NULL, 1),
(29690, 'Daniel John Britto', '13', '9345655206', '9600840158', 'danielamalraj309@gmail.com', '2004-06-21', 21, '6', '2', 'J. Jecintha Louis therese', 'Teacher', 30000.00, 1, 0.00, 200000.00, 'Kumbakonam', 'Chennai (Teynampet)', '2604240004', '', '1', 'upload_files/candidate_tracker/42644581240_DanielJohnBritto.pdf', NULL, '1', '2026-04-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-24 05:06:22', 154, '2026-04-24 06:37:24', 0, NULL, 1),
(29691, '', '0', '8148884856', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604240005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-24 05:10:03', 0, NULL, 0, NULL, 1),
(29692, '', '0', '6374508703', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604240006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-24 05:26:53', 0, NULL, 0, NULL, 1),
(29693, '', '0', '9600587721', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604240007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-24 05:32:25', 0, NULL, 0, NULL, 1),
(29694, 'antony stephen raj', '31', '6374508703', '', 'rajstephen8760@gmail.com', '2004-08-10', 21, '2', '2', 'manuvelraj', 'supervisor', 40000.00, 2, 0.00, 15000.00, 'kanakumari', 'mudichur', '2604240008', '1', '1', 'upload_files/candidate_tracker/54178989793_StephenRajResume.pdf', NULL, '1', '2026-04-24', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', '55605', '55566', '1970-01-01', 154, '2026-04-24 11:12:22', 154, '2026-04-24 06:37:44', 0, NULL, 1),
(29695, 'gayathri dhamodharan', '2', '9600587721', '', 'gayathridhamodharan7321@gmail.com', '2001-03-21', 25, '4', '1', 'prabakaran', 'software developer', 60000.00, 1, 0.00, 20000.00, 'kanchipuram', 'anna nagar', '2604240009', '', '1', 'upload_files/candidate_tracker/94857130515_GayathriDhamodharancv.pdf', NULL, '1', '2026-04-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 154, '2026-04-24 11:17:19', 154, '2026-04-24 11:18:14', 0, NULL, 1),
(29696, 'adriam cedric wessley', '6', '9087200533', '7305042001', 'adriancedricwessley07@gmail.com', '2001-01-30', 25, '2', '2', 'Saraswathi', 'Provision', 30000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2604240010', '1', '1', 'upload_files/candidate_tracker/92625908515_AdrianCedricWessleyResume1.pdf', NULL, '1', '2026-04-24', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'CANDIDATE IS OK.COMMUNICATION IS GOOD.CONFIRM THE SALARY xxamp JOINING DATE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55692', '55645', '1970-01-01', 1, '2026-04-24 07:00:57', 154, '2026-04-24 02:37:26', 0, NULL, 1),
(29697, 'J. THAHIRU NISHA', '6', '9884898163', '', 'banunisha858@gmail.com', '1999-08-09', 26, '2', '2', 'Jeelani', 'Security', 400000.00, 1, 15000.00, 25000.00, 'Tiruvallur', 'Tiruvallur', '2604240011', '1', '2', 'upload_files/candidate_tracker/60253420746_NishaRESUME.pdf', NULL, '1', '2026-04-24', 0, '', '3', '59', '2026-05-05', 216000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in different process fresher for our insurance sales can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55732', '55645', '2026-05-05', 1, '2026-04-24 07:01:43', 60, '2026-05-05 10:02:41', 0, NULL, 1),
(29698, 'siva sankar', '6', '6383028847', '7449225583', 'avissanrak102@gmail.com', '1996-09-28', 29, '2', '2', 'Prasad G.B', 'Private metro', 40000.00, 2, 16500.00, 30000.00, 'Madipakkam', 'Madipakkam', '2604240012', '1', '2', 'upload_files/candidate_tracker/66344757780_SIVASANKARRESUMEAPRIL2026.docx', NULL, '1', '2026-04-24', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55882', '55566', '1970-01-01', 1, '2026-04-24 07:18:42', 154, '2026-04-24 02:53:32', 0, NULL, 1),
(29699, 'UDAYAKUMAR A', '4', '8825682034', '8807368279', 'audayakumar223@gmail.com', '2003-02-02', 23, '2', '2', 'ANNAMALAI', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2604240013', '50', '1', 'upload_files/candidate_tracker/21996780186_UDAYAKUMAR.resumess.pdf', NULL, '1', '2026-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-24 09:20:57', 1, '2026-04-24 09:33:50', 0, NULL, 1),
(29700, 'Sabapathy E', '4', '8870830500', '9600980100', 'sabash1304@gmail.com', '2003-04-29', 22, '2', '2', 'Elumalai K', 'Farmar', 30000.00, 2, 0.00, 20000.00, 'Tindivanam', 'Koyambedu', '2604240014', '50', '1', 'upload_files/candidate_tracker/32832502739_SABAPESUME.pdf1.pdf', NULL, '1', '2026-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-24 09:27:10', 1, '2026-04-24 09:32:26', 0, NULL, 1),
(29701, 'Shalini S', '2', '6369245558', '', 'shalinisugumar49@gmail.com', '1999-10-21', 26, '6', '2', 'parent - sugumar r', 'shop keeper', 30000.00, 2, 0.00, 20000.00, 'thamaraipakkam kootroad', 'thamaripakkam kootroad', '2604240015', '', '1', 'upload_files/candidate_tracker/93002816812_ShaliniFrontendResume.pdf', NULL, '1', '2026-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-04-24 09:54:52', 154, '2026-04-25 02:57:53', 0, NULL, 1),
(29702, 'Nithyabarathi', '6', '7010172796', '8838211736', 'dnithya532@gmail.com', '2002-03-05', 24, '2', '2', 'Dhanabal', 'Farmer', 75000.00, 1, 9500.00, 12000.00, '1/81,south Street ,sooliyakottai', '1/81,south Street ,sooliyakottai', '2604240016', '1', '2', 'upload_files/candidate_tracker/46273300485_bharathiresume2.docx', NULL, '1', '2026-04-25', 15, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shortlisted have a good communication and convincing skills, bold and adaptable for team, have a laptop, expected salary 13k, father farmer, mother housewife, brother studying, have a 1 year experience in Orienshift private limited, and 6 months experience in reimen solutions, currently on notice period will join by may 15th, for next 3 years no marriage commitment. kindly cross check and verify', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', 'CI144', 'C99176', '1970-01-01', 1, '2026-04-24 10:57:19', 154, '2026-04-25 12:18:19', 0, NULL, 1),
(29703, 'Shaik Saifuddin', '13', '9542697367', '', 'shaiksaifuddin2004@gmail.com', '2004-08-21', 21, '6', '2', 'Shaik Riyaz Basha', 'Driver', 100000.00, 1, 0.00, 400000.00, 'Nellore', 'Nellore', '2604250001', '', '1', 'upload_files/candidate_tracker/57386376343_ShaikSaifuddinResume.pdf', NULL, '1', '2026-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-04-25 03:46:50', 154, '2026-04-25 02:58:41', 0, NULL, 1),
(29704, 'Mohamed Ashraf', '13', '9150951818', '', 'iamashraf28@gmail.com', '2005-02-28', 21, '6', '2', 'Mohamed Sadique', 'Fresher', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2604250002', '', '1', 'upload_files/candidate_tracker/55892570603_ResumeAshraf.pdf', NULL, '1', '2026-04-25', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-25 04:35:31', 154, '2026-04-25 02:59:59', 0, NULL, 1),
(29705, 'Karthikeyan B', '13', '9940621259', '9952051082', 'bkarthikeyan659@gmail.com', '2004-09-08', 21, '6', '2', 'Baskaran C', 'Carpenter', 50000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2604250003', '', '1', 'upload_files/candidate_tracker/6858475622_KarthikeyanResumefinalL.pdf', NULL, '1', '2026-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-04-25 04:37:01', 154, '2026-04-25 03:03:01', 0, NULL, 1),
(29706, '', '0', '9500173801', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604250004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-25 04:37:38', 0, NULL, 0, NULL, 1),
(29707, 'Dinesh babu R', '34', '7418844855', '9843592421', 'babudinsh79@gmail.com', '2004-11-06', 21, '3', '2', 'elakkiya', 'house wife', 200000.00, 1, 0.00, 200000.00, 'Hazel apatment avadi chennai', 'Hazel apatment', '2604250005', '', '1', 'upload_files/candidate_tracker/78752820004_DineshbabuQATesting2.pdf', NULL, '1', '2026-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-04-25 04:56:26', 154, '2026-04-25 03:04:03', 0, NULL, 1),
(29708, 'Monisha Balasubramani', '13', '6385328560', '', 'monishabalsum@gmail.com', '2011-04-25', 0, '6', '2', 'Balasubramani', 'Painter', 30000.00, 2, 0.00, 3.00, 'Tirupattur', 'Tirupattur', '2604250006', '', '1', 'upload_files/candidate_tracker/4047220970_MonishaBResume.pdf', NULL, '1', '2026-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-04-25 05:09:52', 154, '2026-04-25 03:04:54', 0, NULL, 1),
(29709, 'Sanjay M', '13', '9345344492', '8220195262', 'msanjay8234@gmail.com', '2004-06-08', 21, '6', '2', 'SANGEETHA M', 'House wife', 15000.00, 1, 0.00, 3.00, 'Chennai', 'Salem', '2604250007', '', '1', 'upload_files/candidate_tracker/83817196437_SANJAYMRESUME.pdf', NULL, '1', '2026-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '2', '2', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '2026-04-25', 1, '2026-04-25 05:14:10', 154, '2026-04-25 03:05:56', 0, NULL, 1),
(29710, 'Maria sofiya J', '34', '8056811615', '', 'j.sofiya1007@gmail.com', '1996-05-20', 29, '6', '1', 'Balakumaran M', 'Cameraman', 30000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2604250008', '', '1', 'upload_files/candidate_tracker/94849709027_MariaSofiyaResume2.pdf', NULL, '1', '2026-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-04-25 05:15:38', 154, '2026-04-25 03:06:47', 0, NULL, 1),
(29711, '', '0', '6381100528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604250009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-25 05:16:56', 0, NULL, 0, NULL, 1),
(29712, 'kaviya v m', '34', '9500173801', '', 'kaviyavenkat38@gmail.com', '2004-05-21', 21, '6', '2', 'Venkatesan', 'land business', 20000.00, 1, 0.00, 300000.00, 'chennai', 'saidapet', '2604250010', '', '1', '0', NULL, '1', '2026-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 154, '2026-04-25 10:50:47', 154, '2026-04-25 03:07:26', 0, NULL, 1),
(29713, 'Flarance Anitha A', '34', '6381100528', '', 'flaranceanitha@gmail.com', '2004-04-03', 22, '6', '2', 'arockia dass', 'farmer', 10000.00, 2, 0.00, 300000.00, 'kallakuruchi', 'kk nagar', '2604250011', '', '1', 'upload_files/candidate_tracker/49834631976_DOC20260425WA0000..pdf', NULL, '1', '2026-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 154, '2026-04-25 10:58:05', 154, '2026-04-25 03:07:56', 0, NULL, 1),
(29714, 'Sowmiya M', '13', '9150202819', '6383365474', 'sowmiya1132@gmail.com', '2002-11-23', 23, '3', '2', 'Marimuthu', 'Driver', 400000.00, 1, 0.00, 25000.00, 'Ponneri', 'Ponneri', '2604250012', '', '1', 'upload_files/candidate_tracker/26106499041_sowmi3.pdf', NULL, '1', '2026-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-25 05:50:12', 1, '2026-04-25 05:56:45', 0, NULL, 1),
(29715, 'Y.Jeevitha', '4', '8148871405', '7200444186', 'jeevithay2019@gmail.com', '2002-07-03', 23, '1', '2', 'R.Yuvaraj ( Father )', 'Daily wage worker', 163000.00, 1, 20000.00, 24000.00, 'Chennai', 'Vandalur', '2604250013', '', '2', 'upload_files/candidate_tracker/75525961144_RESUMEJEEVITHA.pdf', NULL, '1', '2026-04-25', 0, 'P1015', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2026-04-25 06:08:18', 154, '2026-04-25 02:45:27', 0, NULL, 1),
(29716, 'Mathumitha S', '13', '6379838902', '', 'maathumiitha@gmail.com', '2005-09-30', 20, '6', '2', 'sivasubramanian', 'driver', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2604250014', '', '1', 'upload_files/candidate_tracker/97196748358_MathumithaUpdatedResume.pdf', NULL, '1', '2026-04-25', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-04-25 06:19:48', 154, '2026-04-25 03:34:57', 0, NULL, 1),
(29717, 'moshin b', '6', '6379975899', '', 'jobimohsin@gmail.com', '2001-10-02', 24, '2', '2', 'Parent', 'Account clerk', 25.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2604250015', '1', '1', 'upload_files/candidate_tracker/20141318861_MohsinnawazCV11.pdf', NULL, '1', '2026-04-25', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55864', '55566', '1970-01-01', 1, '2026-04-25 06:57:19', 154, '2026-04-25 01:15:28', 0, NULL, 1),
(29718, 'Abinaya', '4', '9344694506', '', 'abinayac050@gmail.com', '2004-11-23', 21, '2', '1', 'Raghul kumar', 'Qc', 30000.00, 1, 14000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2604250016', '1', '2', 'upload_files/candidate_tracker/70623732891_AbinayaResume.pdf', NULL, '1', '2026-04-28', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is ok with the profile completed bcom in 2025...in final year she married relative and both worked in chennai....husband worked in ambattur in steel company...she is worked in yella insurance broking company....6 to 8 months experience and releived due to husband shift to dubai....husband 1L salary....father and motherinlaw both in thanjavur near...thenangudi......expected salary 13 to 15k...have insurance experience ...currently not having baby plan....kindly cross check sustainability', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1023', 'C99176', '1970-01-01', 1, '2026-04-25 07:00:28', 154, '2026-04-28 01:06:01', 0, NULL, 1),
(29719, '', '0', '9150274869', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604250017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-25 07:42:25', 0, NULL, 0, NULL, 1),
(29720, 'durga devi thiagarajan', '6', '9150274869', '', 'durgadevi2800@gmail.com', '2000-10-28', 25, '2', '2', 'thiagarajan', 'auto driver', 50000.00, 1, 21000.00, 25000.00, 'chrompet', 'chrompet', '2604250018', '1', '2', 'upload_files/candidate_tracker/22622832200_DurgaDeviResume.1.pdf', NULL, '1', '2026-04-25', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55864', '55566', '1970-01-01', 154, '2026-04-25 01:28:22', 154, '2026-04-25 02:46:40', 0, NULL, 1),
(29721, 'Jayasurya S', '6', '9342187855', '', 'jayasuryas7604@gmail.com', '2004-06-07', 21, '3', '2', 'Selvam', 'Hindu', 30000.00, 1, 0.00, 20000.00, 'Vellore', 'Vellore', '2604250019', '', '1', 'upload_files/candidate_tracker/37899535169_JayasuryaSResume.pdf', NULL, '1', '2026-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-25 10:24:58', 1, '2026-04-25 10:35:43', 0, NULL, 1),
(29722, '', '0', '9042441835', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604260001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-26 07:05:21', 0, NULL, 0, NULL, 1),
(29723, 'YOGESHWARAN S', '4', '6383917047', '9047428798', 'yoge4945@gmail.com', '2005-04-08', 21, '2', '2', 'SHANMUGAM', 'Farmer', 50000.00, 2, 0.00, 30000.00, 'Pudukkottai', 'Pudukkottai', '2604260002', '1', '1', 'upload_files/candidate_tracker/73321354461_YogeshwaranS.pdf', NULL, '1', '2026-04-27', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', 'P1023', 'C99176', '1970-01-01', 1, '2026-04-26 02:17:16', 154, '2026-04-27 01:23:04', 0, NULL, 1),
(29724, 'Aswin R', '6', '9042315324', '', 'aswindoss29@gmail.com', '2003-07-29', 22, '2', '2', 'sangeetha', 'dailywages', 60000.00, 1, 180000.00, 20000.00, 'Arakkonam', 'Arakkonam', '2604270001', '1', '2', 'upload_files/candidate_tracker/46071708105_ASWINRResume.pdf', NULL, '1', '2026-04-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-27 01:02:30', 154, '2026-04-28 02:36:51', 0, NULL, 1),
(29725, 'MADHANKUMAR', '2', '6380863270', '', 'madhankumarpmk777@gmail.com', '2002-10-05', 23, '5', '1', 'NA', 'NA', 10000.00, 2, 0.00, 150000.00, 'Virudhunagar', 'Chennai', '2604270002', '', '1', 'upload_files/candidate_tracker/75141291432_MadhanDeveloper.pdf', NULL, '1', '2026-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-27 02:18:57', 1, '2026-04-27 02:21:38', 0, NULL, 1),
(29726, 'r inian', '5', '9710326272', '9710325403', 'inian.rajaram10@gmail.com', '1994-06-10', 31, '2', '1', 'pooja', 'Homemaker', 30000.00, 0, 26000.00, 30000.00, 'chennai', 'chennai', '2604270003', '1', '2', 'upload_files/candidate_tracker/35812239085_Inianupdatedresume2026.pdf', NULL, '1', '2026-04-27', 0, '', '1', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1018', '', '55735', '55557', '1970-01-01', 1, '2026-04-27 03:15:35', 154, '2026-04-27 01:05:59', 0, NULL, 1),
(29727, 'Swetha V', '6', '9092013836', '9443916394', 'swethavenketesan@gmail.com', '2001-11-23', 24, '2', '2', 'Venkatesan', 'Business', 200000.00, 1, 20000.00, 25000.00, 'Gudiyatham', 'Chennai', '2604270004', '66', '2', 'upload_files/candidate_tracker/76916233586_SWETHAVResumecompressed.pdf', NULL, '1', '2026-04-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate communication and permission is not good . Also she mentioned experience but she does not have product knowledge properly. Sustainable is doubt ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', 'C99176', '1970-01-01', 1, '2026-04-27 04:31:54', 154, '2026-04-27 11:27:02', 0, NULL, 1),
(29728, 'Aswini r', '4', '9840937993', '7305361957', 'vasanthramesh752@gmail.com', '2003-07-23', 22, '5', '2', 'Gowri r', 'House keeping', 12000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2604270005', '', '2', 'upload_files/candidate_tracker/74298281981_Aswini1777224426293.pdf', NULL, '1', '2026-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-27 05:41:57', 1, '2026-04-27 05:47:37', 0, NULL, 1),
(29729, '', '0', '9500385995', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604270006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-27 05:51:50', 0, NULL, 0, NULL, 1),
(29730, 'r. T. Praveen', '11', '7824030543', '9941669020', 'praveenking6777@gmail.com', '1999-09-10', 26, '2', '2', 'Thirunavukarasu', 'Real ESTATE', 50000.00, 1, 0.00, 19.00, 'vanagaram', 'Vanagaram', '2604270007', '50', '1', 'upload_files/candidate_tracker/86185161392_Scan10Oct25170745.pdf', NULL, '1', '2026-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-27 05:53:50', 1, '2026-04-27 06:01:49', 0, NULL, 1),
(29731, 'Raghuvanth T', '6', '7550256707', '9790870720', 'traghuvanth@gmail.com', '1997-05-19', 28, '2', '2', 'Geetha', 'House wife', 80000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2604270008', '1', '2', 'upload_files/candidate_tracker/4617534682_RaghuvanthResumeNew.pdf', NULL, '1', '2026-04-27', 30, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55864', '55566', '1970-01-01', 1, '2026-04-27 06:38:33', 154, '2026-04-27 01:29:24', 0, NULL, 1),
(29732, 'Priya R', '6', '7299621350', '6385565836', 'priyaraja7499@gmail.com', '1999-04-07', 27, '1', '2', 'Raja', 'Kuli', 20000.00, 1, 3.00, 3.60, 'Chennai', 'Chennai', '2604270009', '', '2', 'upload_files/candidate_tracker/51839149625_PriyaCV.pdf', NULL, '1', '2026-04-27', 0, '55733', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not ok for sales, communication not good, sustainability issues, salary expectation high', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', 'C99176', '1970-01-01', 1, '2026-04-27 06:42:25', 154, '2026-04-27 12:35:15', 0, NULL, 1),
(29733, 'deepika murugan', '6', '9500385995', '', 'deepikamurugan940@gmail.com', '2004-06-22', 21, '2', '2', 'murugan', 'chef', 60000.00, 4, 20000.00, 20000.00, 'thirupatur', 'velacheri', '2604270010', '1', '2', 'upload_files/candidate_tracker/48386425304_DeepikaResume.pdf', NULL, '1', '2026-04-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is not good.also her statement is wrong.sustainable is doubt', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55666', 'C99176', '1970-01-01', 154, '2026-04-27 12:42:54', 154, '2026-04-27 01:22:59', 0, NULL, 1),
(29734, 'Tamizharasi S', '4', '7358583281', '9176724281', 'tamizharasi751@gmail.com', '2002-01-08', 24, '1', '2', 'Sharala', 'Sales executive', 30000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2604270011', '', '2', 'upload_files/candidate_tracker/76615194622_TamizharasiResume3.pdf', NULL, '1', '2026-04-27', 0, 'p1015', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55824', '55560', '1970-01-01', 1, '2026-04-27 07:19:11', 154, '2026-04-27 01:08:45', 0, NULL, 1),
(29735, 'aarthi p', '6', '7305435765', '', 'aarthi2557@gmail.com', '2004-07-08', 21, '2', '2', 'peter', 'employee', 25000.00, 2, 0.00, 17000.00, 'chennai', 'chennai', '2604270012', '73', '1', 'upload_files/candidate_tracker/50657576570_ArthiChennaiCAFSReshmaBayleaf.pdf', NULL, '1', '2026-04-29', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-27 07:20:12', 60, '2026-04-29 12:11:44', 0, NULL, 1),
(29736, 'bhavani m', '6', '9025765108', '', 'bhavanibhavani26390@gmail.com', '2004-03-16', 22, '2', '2', 'madurai', 'employee', 8000.00, 1, 0.00, 17000.00, 'chennai', 'chennai', '2604270013', '73', '1', 'upload_files/candidate_tracker/19687875078_BhavaniChennaiCAFSReshmaBayleaf.pdf', NULL, '1', '2026-04-29', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-04-27 07:28:12', 60, '2026-04-29 12:11:57', 0, NULL, 1),
(29737, 'Poornakala Thangaraj', '23', '9360664130', '9786632689', 'tspoornakala@gmail.com', '2000-05-14', 25, '2', '2', 'Thangaraj', 'AI Technician', 50000.00, 1, 36000.00, 40000.00, 'Aranthangi', 'Chennai', '2604270014', '1', '2', 'upload_files/candidate_tracker/72980431025_PoornakalaThangarajUIUXDesigner.pdf', NULL, '1', '2026-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1018', '0', '0', '0', NULL, 1, '2026-04-27 08:53:21', 1, '2026-04-27 09:00:18', 0, NULL, 1),
(29738, '', '0', '8122332521', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604270015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-27 09:24:42', 0, NULL, 0, NULL, 1),
(29739, '', '0', '9962327491', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604270016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-27 11:32:42', 0, NULL, 0, NULL, 1),
(29740, 'Kishorekumar natarajan', '6', '8148475161', '8838869033', 'kishorekumarn4@gmail.com', '2002-09-17', 23, '2', '2', 'natarajan', 'it', 300000.00, 1, 18000.00, 22000.00, 'pozhichalur,Chennai 600074', 'pozhichalur,Chennai 600074', '2604270017', '1', '2', 'upload_files/candidate_tracker/12494150714_kishorekumarcv.pdf.pdf', NULL, '3', '2026-04-28', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication and performance is ok.but he not will appointment.so he said not interested....', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', 'C99176', '1970-01-01', 1, '2026-04-27 12:08:49', 154, '2026-04-28 03:10:32', 0, NULL, 1),
(29741, '', '0', '9442927433', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604270018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-27 12:12:57', 0, NULL, 0, NULL, 1),
(29742, 'Gayathri V', '6', '8925097311', '9940291737', 'gayug9459@gmail.com', '2002-06-01', 23, '2', '2', 'parent', 'tailor', 17000.00, 2, 0.00, 17000.00, 'chennai', 'chennai', '2604270019', '50', '1', 'upload_files/candidate_tracker/43490275399_gayucv.pdf', NULL, '1', '2026-04-28', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', 'C99176', '1970-01-01', 1, '2026-04-27 12:58:31', 154, '2026-04-28 03:09:42', 0, NULL, 1),
(29743, '', '0', '9791088837', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604270020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-27 01:14:15', 0, NULL, 0, NULL, 1),
(29744, 'Abhishek M', '13', '8157085100', '', 'abhishekmabhi44@gmail.com', '2004-01-17', 22, '3', '2', 'Unnikrishnan M', 'Buisness', 40000.00, 1, 0.00, 22000.00, 'Kerala, palakkad', 'Chennai, mannadi', '2604280001', '', '1', 'upload_files/candidate_tracker/94693425307_ABHISHEKMResume111.pdf', NULL, '1', '2026-04-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-04-28 04:47:04', 154, '2026-04-28 03:09:09', 0, NULL, 1),
(29745, 'A karthikeyen', '6', '8328071437', '9985485919', 'Katyhikkarthikmi10@gmail.com', '2004-10-06', 21, '2', '2', 'Prasanthi', 'Farming', 40000.00, 0, 14500.00, 20000.00, '189.Kotapali', 'Teynampet', '2604280002', '1', '2', 'upload_files/candidate_tracker/17466363019_MyCV.pdf', NULL, '1', '2026-04-28', 45, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate performancel ittle ok.but his communication slightly correlation Also he did not put releived his previous company and he told he will join on after 45 days.he is aking offer letter immediatly , joining Is Doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1030', '', '55666', 'C99176', '1970-01-01', 1, '2026-04-28 04:52:34', 154, '2026-04-28 01:19:50', 0, NULL, 1),
(29746, 'Logesh Thirunavukkarasu', '2', '8925022925', '', 'vkhari040@gmail.com', '2001-12-26', 24, '3', '2', 'Thirunavukkarasu J', 'Retired (Record Clerk)', 23000.00, 1, 0.00, 30000.00, '6a, Andal Nagar, Thiruvallur district - 602025', '6a, Andal Nagar, Thiruvallur district - 602025', '2604280003', '', '1', 'upload_files/candidate_tracker/18456421541_LogeshResume.pdf', NULL, '1', '2026-04-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-04-28 05:01:13', 154, '2026-04-28 03:08:30', 0, NULL, 1),
(29747, '', '0', '9655108812', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604280004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-28 05:08:54', 0, NULL, 154, '2026-04-29 09:21:21', 0),
(29748, '', '0', '8778316387', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604280005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-28 05:09:15', 0, NULL, 0, NULL, 1),
(29749, 'balasundharam m', '6', '9655108812', '9363201966', 'balarl1450@gmail.com', '1996-06-10', 29, '1', '2', 'latha m', 'nill', 200000.00, 2, 25000.00, 28000.00, 'thiruvanmiur', 'thiruvamiyur', '2604280006', '', '2', 'upload_files/candidate_tracker/44768571396_MBalasundaramResume1.pdf', NULL, '1', '2026-04-28', 0, '55668', '3', '59', '2026-05-04', 336000.00, '', '5', '1970-01-01', '1', 'Communication Ok internal team reference need to check in training and confirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55560', '55560', '2026-05-04', 154, '2026-04-28 10:50:05', 60, '2026-05-04 11:47:15', 0, NULL, 1),
(29750, 'Malavathy', '4', '9087109778', '7305679709', 'MALU1542000@GMAIL.COM', '2000-04-15', 26, '2', '1', 'Sharukan', 'Shop owner', 30000.00, 1, 0.00, 15000.00, '403/53 bharathi nagar thiruvottiyur', 'Chennai', '2604280007', '50', '1', 'upload_files/candidate_tracker/26005368958_Malavathy1641787532097.pdf', NULL, '3', '2026-05-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-28 05:21:29', 1, '2026-05-05 09:13:41', 0, NULL, 1),
(29751, 'Vikram', '4', '8072627833', '9360218448', 'vikramvedha807262@gmail.com', '2004-05-20', 21, '2', '2', 'Ravi', 'Chennai', 109000.00, 0, 0.00, 15000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2604280008', '50', '1', 'upload_files/candidate_tracker/1911984621_Welcome.pdf', NULL, '1', '2026-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-28 05:24:03', 1, '2026-04-28 07:49:40', 0, NULL, 1),
(29752, 'pugazhmani m', '13', '8778316387', '', 'pugazh0614@gmail.com', '2002-10-06', 23, '3', '2', 'mohan', 'farmer', 100000.00, 1, 0.00, 18000.00, 'ponnamalle', 'ponnamalle', '2604280009', '', '1', 'upload_files/candidate_tracker/3162013692_pugazhmani.MResume.pdf', NULL, '1', '2026-04-28', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 154, '2026-04-28 11:05:51', 154, '2026-04-28 03:07:52', 0, NULL, 1),
(29753, 'Sudhash subramaniyan', '2', '8838625585', '', 'sudhash972004@gmail.com', '2004-07-09', 21, '6', '2', 'Lakshmi', 'House wife', 10000.00, 2, 0.00, 15000.00, 'Cuddalore', 'pallawaram', '2604280010', '', '1', 'upload_files/candidate_tracker/38392361086_SudhashCV.pdf', NULL, '1', '2026-04-28', 0, '', '1', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-28 05:53:59', 154, '2026-04-28 11:36:09', 0, NULL, 1),
(29754, 'aswini j', '6', '9962327491', '', 'ashuaswini2005@gmail.com', '2005-01-01', 21, '2', '2', 'jaabalan', 'gardener', 75000.00, 3, 0.00, 16000.00, 'adyar', 'adyar', '2604280011', '1', '1', 'upload_files/candidate_tracker/48890195173_CV2026021810433851.pdf', NULL, '1', '2026-04-28', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1070', 'C99176', '1970-01-01', 154, '2026-04-28 12:12:19', 154, '2026-04-28 03:04:45', 0, NULL, 1),
(29755, '', '0', '9445333173', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604280012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-28 07:08:01', 0, NULL, 0, NULL, 1),
(29756, 'SuriyaKanth', '6', '9042329694', '', 'suriyakanth954@gmail.com', '2003-03-30', 23, '1', '2', 'Gnanasekran R', 'Shopkeeper', 20000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2604280013', '', '1', 'upload_files/candidate_tracker/10212619308_SuriyaKanthG.pdf', NULL, '1', '2026-04-29', 0, 'C99336', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-28 09:16:45', 1, '2026-04-28 09:23:03', 0, NULL, 1),
(29757, 'Sindhuja Vengadesan', '6', '7200836037', '9790826208', 'laneymichalla123@gmail.com', '2002-01-05', 24, '1', '2', 'P. N. Vengadesan', 'House keeping', 10000.00, 2, 14000.00, 20000.00, 'Ramar kovil street nazarathu puram', 'Ramar kovil street nazarathu puram', '2604280014', '', '2', 'upload_files/candidate_tracker/86829292108_SindhujaResume.pdf', NULL, '1', '2026-04-29', 0, 'C99336', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-28 10:44:31', 1, '2026-04-28 12:29:27', 0, NULL, 1),
(29758, 'Jabeena Banu F', '6', '9944065485', '', 'jabin2628@gmail.com', '2002-02-26', 24, '2', '1', 'Haseena', 'Cooking', 25000.00, 1, 18000.00, 20000.00, 'No 368 mohabathsha street arcot koorambadi', 'No 15/33 Alexander street thashamakan pattalam', '2604290001', '73', '2', 'upload_files/candidate_tracker/84486916835_JabinRESUME.pdf', NULL, '1', '2026-04-29', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Communication and performance is Not Good, she have 4 year kid , sustainable is doubt', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55666', 'C99176', '1970-01-01', 1, '2026-04-29 04:31:53', 154, '2026-04-29 12:17:18', 0, NULL, 1),
(29759, 'Rohith K', '13', '8681989453', '8098538121', 'rohithsharma6082000@gmail.com', '2000-08-06', 25, '6', '2', 'krishnamoorthy', 'carpenter', 30000.00, 2, 0.00, 10000.00, 'villupuram', 'vandalur', '2604290002', '', '1', 'upload_files/candidate_tracker/76986512041_RohithKPythonBackendDeveloperResume.pdf', NULL, '1', '2026-04-29', 0, '', '3', '59', '2026-05-07', 145000.00, '', '1', '1970-01-01', '1', 'Open with term for Sathish IT 5 months plus 3 yrs only Document no cheque', '2', '1', '2', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '2026-05-07', 1, '2026-04-29 04:40:58', 60, '2026-05-07 08:11:21', 0, NULL, 1),
(29760, 'r bhuvaneswari', '6', '8122332521', '', 'bhuvaneshwariramdass2003@gmail.com', '2003-05-03', 22, '2', '2', 'ramdass', 'farmer', 72000.00, 3, 0.00, 25000.00, 'sirkali', 'ekkatuthangal', '2604290003', '50', '1', 'upload_files/candidate_tracker/97548851899_M.AEnglishLiterature1.pdf', NULL, '1', '2026-04-29', 0, '', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', '', '', '', '', 'P1070', 'C99176', '1970-01-01', 154, '2026-04-29 10:19:42', 154, '2026-04-29 10:54:23', 0, NULL, 1),
(29761, 'Krishnakanth P', '13', '6382024245', '9150176680', 'Krishnakanth1520@gmail.com', '2003-06-01', 22, '3', '2', 'Purushothaman', 'Centring worker in construction', 30000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2604290004', '', '1', 'upload_files/candidate_tracker/53680274202_KRISHNAKANTHPresume1.pdf', NULL, '1', '2026-04-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-29 06:07:57', 154, '2026-04-29 11:55:22', 0, NULL, 1),
(29762, 'B SHIVAKUMAR', '6', '9148218998', '6361153003', 'bshivakumarkumar@gmail.com', '1999-06-01', 26, '2', '2', 'Bheemamma', 'Agriculture', 200000.00, 3, 240000.00, 27000.00, 'Ck Halli sanduru t Ballari D', 'Banashankari', '2604290005', '1', '2', 'upload_files/candidate_tracker/7634492422_shivakumarcv.pdf', NULL, '1', '2026-04-29', 30, '', '6', '172', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1032', '', '', '', '1970-01-01', 1, '2026-04-29 06:28:18', 172, '2026-04-29 12:20:47', 0, NULL, 1),
(29763, 'Pankaj Kumar', '2', '6381892916', '', 'pankajkumar3082011@gmail.com', '1995-08-30', 30, '3', '2', 'Sunil kumar', 'Daily wages employee', 250000.00, 2, 0.00, 3.40, 'Chennai', 'Chennai', '2604290006', '', '1', 'upload_files/candidate_tracker/24270690202_pankajfullstacknresume.pdf', NULL, '1', '2026-04-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-29 07:51:19', 154, '2026-04-29 01:25:27', 0, NULL, 1),
(29764, '', '0', '9360331257', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604290007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-29 08:10:24', 0, NULL, 0, NULL, 1),
(29765, '', '0', '9361667990', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604290008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-29 08:57:06', 0, NULL, 0, NULL, 1),
(29766, '', '0', '7200747327', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604290009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-29 08:57:08', 0, NULL, 0, NULL, 1),
(29767, '', '0', '8778897532', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2604290010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-04-29 08:57:12', 0, NULL, 0, NULL, 1),
(29768, 'Ajay jayakumar', '5', '9597258578', '', '9597258578ajay@gmail.com', '2001-03-26', 25, '2', '2', 'Jayakumar', 'Farmer', 15000.00, 2, 30000.00, 35000.00, '154, west street, samattikuppam & po , Cuddalore.', '3rd ,sengeniyamman Kovil Street, Guindy, Chennai', '2604290011', '1', '2', 'upload_files/candidate_tracker/26964751322_ResumeOverview150420261253.pdf', NULL, '1', '2026-04-29', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1030', '', '55650', '55560', '1970-01-01', 1, '2026-04-29 09:00:58', 154, '2026-04-29 06:31:40', 0, NULL, 1),
(29769, 'Balaji M', '32', '8105800390', '9597419319', 'balajimurugesanms@gmail.com', '1992-10-31', 33, '1', '2', 'Saraswathy M', 'Home maker', 20000.00, 1, 750000.00, 1000000.00, 'Karamadai, coimbatore', 'Bangalore', '2604290012', '', '2', 'upload_files/candidate_tracker/87763092087_BalajiResume.pdf', NULL, '1', '2026-04-29', 0, '55555', '3', '59', '2026-04-30', 1000000.00, '', '1', '1970-01-01', '1', 'Old employee rejoining based on manager confirmation', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', '', '', '2026-04-30', 1, '2026-04-29 09:17:51', 60, '2026-04-29 07:15:51', 0, NULL, 1),
(29770, 'akash s', '23', '9360331257', '', 'akash35475@gmsil.com', '2003-05-30', 22, '3', '2', 'sakthivel', 'saree business', 30000.00, 1, 0.00, 20000.00, 'kolathur', 'kolathur', '2604290013', '', '1', '0', NULL, '1', '2026-04-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 154, '2026-04-29 03:02:25', 154, '2026-04-29 03:04:09', 0, NULL, 1),
(29771, 'Vigneshwaran kumar', '5', '6379169225', '9944692518', 'vickeyvignesh1902@gmail.com', '2002-02-19', 24, '2', '2', 'Kumar', 'Businesses man', 45000.00, 2, 30000.00, 30000.00, '2/43 south street Elayirampannai', 'Chennai vadaperupakkam', '2604290014', '1', '2', 'upload_files/candidate_tracker/19451935934_VIGNESHRESUME202509192101440000.pdf', NULL, '1', '2026-04-30', 15, '', '3', '59', '2026-05-06', 300000.00, '', '1', '1970-01-01', '1', 'Communication Ok have exp in india mart fresher for our insurance sales need to check in training and confirm', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '2', '1', '', '', 'H1028', '', '55560', '55560', '2026-05-06', 1, '2026-04-29 10:17:15', 60, '2026-05-06 09:55:51', 0, NULL, 1),
(29772, 'srivarshan umachandran', '23', '6379773848', '7397773848', 'sridharun35@gmail.com', '2003-10-29', 22, '3', '2', 'umachandran', 'student', 100000.00, 1, 0.00, 300000.00, 'dindigul', 'chennai', '2604300001', '', '1', 'upload_files/candidate_tracker/65119616943_SrivarshanResume2.pdf', NULL, '1', '2026-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-30 03:45:03', 154, '2026-04-30 03:55:53', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29773, 'samdaniel', '23', '6381375869', '9442928249', 'samdana997@gmail.com', '2001-06-08', 24, '2', '2', 'babu s', 'auditor', 100000.00, 1, 0.00, 25.00, 'kallaikurichi', 'chennai', '2604300002', '1', '1', 'upload_files/candidate_tracker/79326485883_SAMDANIELRESUME.pdf', NULL, '1', '2026-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in system task', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-30 03:48:51', 154, '2026-05-05 11:53:28', 0, NULL, 1),
(29774, 'Mohammed Insaafudheen s', '13', '9840220084', '', 'insafudheen799@gmail.com', '2001-04-30', 25, '3', '2', 'Bushra banu', 'Null', 6000.00, 1, 0.00, 300000.00, 'Kolathur', 'Chennai', '2604300003', '', '1', 'upload_files/candidate_tracker/88213279541_INSAAF.RESUME1.pdf', NULL, '1', '2026-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in GD', '', '', '', '', '', '1970-01-01', 1, '2026-04-30 04:35:58', 154, '2026-04-30 03:51:38', 0, NULL, 1),
(29775, 'Mohamed Rifhai A', '23', '8015729067', '8870343408', 'mohamedrifhai.a@gmail.com', '2011-04-30', 0, '6', '2', 'Mohideen Ilahiyaa', 'Housewife', 75000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2604300004', '', '1', 'upload_files/candidate_tracker/94508242102_FrontEndUIUXDesigner.pdf', NULL, '1', '2026-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-30 05:29:18', 154, '2026-04-30 03:54:35', 0, NULL, 1),
(29776, 'Shwetha s', '13', '7305580214', '', 'Shwetha.hhc@gmail.com', '2004-05-14', 21, '3', '2', 'Sakthivel', 'Printing labour', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2604300005', '', '1', 'upload_files/candidate_tracker/26197786466_SHWETHAS2.pdf', NULL, '1', '2026-04-30', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-30 05:30:40', 154, '2026-04-30 12:28:20', 0, NULL, 1),
(29777, 'Mohamed Shahith', '6', '9360540512', '', 'theshahith@gmail.com', '2004-09-18', 21, '2', '2', 'Al ameen', 'Sabila begam', 25000.00, 1, 0.00, 200000.00, 'Sivaganga', 'Chennai', '2604300006', '66', '1', 'upload_files/candidate_tracker/45443027254_theshahithgmail.com919360540512.pdf', NULL, '1', '2026-04-30', 3, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-04-30 05:40:17', 154, '2026-04-30 03:50:15', 0, NULL, 1),
(29778, 'Aravinthan K', '23', '8072578301', '', 'karavinthan524@gmail.com', '2003-06-03', 22, '2', '2', 'Kupenthiran', 'Farmar', 20000.00, 4, 0.00, 2.00, 'SIRKALI', 'Nungambakkam', '2604300007', '1', '1', 'upload_files/candidate_tracker/52095870399_Aravinthan.kResume.pdf', NULL, '1', '2026-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'rejected in system task', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-30 06:41:21', 154, '2026-05-05 11:54:02', 0, NULL, 1),
(29779, 'Jothi Basu', '13', '9159608154', '', 'jothivikky2@gmail.com', '2005-06-04', 20, '5', '2', 'Kunjappa', 'Farmer', 25000.00, 6, 0.00, 15000.00, 'Tambaram, Chennai', 'Padappai via Tambaram', '2604300008', '', '1', 'upload_files/candidate_tracker/67352629958_JothibasuBtechIT2026CGPA8.2.pdf', NULL, '1', '2026-04-30', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-04-30 07:30:06', 154, '2026-04-30 03:58:55', 0, NULL, 1),
(29780, 'Ayisha Begam', '23', '9360844129', '', 'ayishabegam248@gmail.com', '2005-08-24', 20, '2', '2', 'Najima Begam', 'dail wages', 10000.00, 1, 0.00, 0.00, 'pudukkottai', 'chennai', '2604300009', '1', '1', 'upload_files/candidate_tracker/1894936476_AyishaBegamResume.pdf', NULL, '1', '2026-04-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', '1970-01-01', '4', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-04-30 09:28:28', 154, '2026-05-05 11:59:54', 0, NULL, 1),
(29781, 'HARISH P', '4', '6380917010', '9360452368', 'akashharish6380@gmail.com', '2003-07-01', 22, '2', '2', 'PUNITHA A', 'Tails work', 20.00, 0, 0.00, 16.00, 'Chennai', 'Chennai', '2604300010', '50', '1', 'upload_files/candidate_tracker/65059788417_HarishPResume1.pdf', NULL, '1', '2026-05-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-04-30 09:40:53', 1, '2026-04-30 09:53:38', 0, NULL, 1),
(29782, 'Preethi S', '34', '9080257863', '8667036851', 'preethisubramani807@gmail.com', '2005-06-22', 20, '2', '2', 'Subramani', 'Farmer', 85000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2604300011', '1', '1', 'upload_files/candidate_tracker/15434544162_Preethimanualtesting21.pdf', NULL, '1', '2026-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', '0', '0', NULL, 1, '2026-04-30 05:05:23', 1, '2026-04-30 05:09:26', 0, NULL, 1),
(29783, 'Raimon G', '23', '8754244853', '6382625143', 'raimon0910@gmail.com', '2004-10-09', 21, '2', '2', 'Gnana oli', 'Bus conductor', 60000.00, 1, 0.00, 15000.00, 'Cheyyur, Chengalpattu -603313', 'Cheyyur, Chengalpattu -603313', '2605020001', '1', '1', 'upload_files/candidate_tracker/27861519563_RaimonCVResume.pdf', NULL, '1', '2026-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected in system task', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-02 04:15:47', 154, '2026-05-05 11:56:09', 0, NULL, 1),
(29784, 'KarthikaRajeswari M', '2', '7339672373', '', 'rajeswarikarthiga143@gmail.com', '1999-10-27', 26, '5', '2', 'Palaniammal M', 'Tailoring', 15000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2605020002', '', '1', 'upload_files/candidate_tracker/97903222660_karthikarajeswari.pdf', NULL, '1', '2026-05-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-05-02 04:26:29', 1, '2026-05-02 04:33:54', 0, NULL, 1),
(29785, 'Ahamed Kassali G', '23', '9688212526', '7871135621', 'kassalekassale305@gmail.com', '2006-04-23', 20, '2', '2', 'samsu umar ali', 'Businesses man', 72000.00, 2, 0.00, 15000.00, 'saidapet', 'ramanathapuram', '2605020003', '1', '1', 'upload_files/candidate_tracker/19447510031_AhamedKassaliResume.pdf', NULL, '1', '2026-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'yet to complete degree (sept 2027)', '', 'H1018', '', '', '', '2026-05-02', 1, '2026-05-02 04:47:17', 154, '2026-05-05 11:55:34', 0, NULL, 1),
(29786, 'Krishna moorthi K', '23', '9578635028', '', 'kkrishnamoorthi.kuppan@gmail.com', '2003-02-20', 23, '2', '2', 'Kuppan', 'Cooli', 20.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2605020004', '1', '1', 'upload_files/candidate_tracker/6219236155_Krishnamoorthik1.pdf', NULL, '1', '2026-05-02', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2026-05-04', '1', '2', 'system task is pending', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-02 05:13:23', 154, '2026-05-05 11:56:31', 0, NULL, 1),
(29787, 'VISHNU PADMAKUMAR', '23', '9444530080', '8778585300', 'unhsivpnair@gmail.com', '2004-01-27', 22, '3', '2', 'Padmakumar v', 'Supervisor', 50000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2605020005', '', '1', 'upload_files/candidate_tracker/60776531068_VishnuPadmakumarResumeUpdated.pdf', NULL, '1', '2026-05-02', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '6', '', '2', '2026-05-04', '1', '2', 'No portfolio, yet to complete system task', '', '', '', '', '', '1970-01-01', 1, '2026-05-02 05:19:18', 154, '2026-05-02 06:28:08', 0, NULL, 1),
(29788, '', '0', '9600257781', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605020006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-02 05:32:32', 0, NULL, 0, NULL, 1),
(29789, 'abinesh kumar', '13', '9500137760', '', 'mrabi0164@gmail.com', '2004-03-25', 22, '6', '2', 'ross mary', 'parlour', 20000.00, 1, 0.00, 15000.00, 'tambaram', 'tambaram', '2605020007', '', '1', 'upload_files/candidate_tracker/89222080934_AbineshkumarSResume.pdf', NULL, '1', '2026-05-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected in system task', '', '', '', '', '', '1970-01-01', 1, '2026-05-02 05:35:24', 154, '2026-05-04 06:09:39', 0, NULL, 1),
(29790, 'Barani S', '4', '9551542985', '9344663293', 'sb9828676@gmail.com', '2000-05-04', 25, '2', '2', 'Subramaniyan', 'Mtc driver', 50000.00, 2, 22000.00, 25000.00, 'Ambattur estate', 'Ambattur estate', '2605020008', '1', '2', 'upload_files/candidate_tracker/80011220336_IntelligentCVDocument.PDF', NULL, '1', '2026-05-02', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55824', '55560', '1970-01-01', 1, '2026-05-02 05:51:44', 154, '2026-05-02 06:14:06', 0, NULL, 1),
(29791, 'Nithish Kannan S', '13', '9600257781', '', 'NITHISHkannan2021@gmail.com', '2000-09-02', 25, '3', '2', 'Selvam G', 'Business', 35000.00, 1, 22000.00, 35000.00, 'Thanjavur', 'Chennai', '2605020009', '', '2', 'upload_files/candidate_tracker/48637330903_NithishKannanS.pdf', NULL, '1', '2026-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', 'Rejected in final round', '', '', '', '', '', '1970-01-01', 154, '2026-05-02 11:23:19', 154, '2026-05-02 06:13:56', 0, NULL, 1),
(29792, 'Hari K', '23', '8681821954', '7401112840', 'hh8151234@gmail.com', '2002-08-31', 23, '3', '2', 'Kumar', 'Design', 25000.00, 1, 0.00, 21000.00, 'Avadi', 'Avadi', '2605020010', '', '1', 'upload_files/candidate_tracker/96690019483_HariCV.pdf', NULL, '1', '2026-05-02', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2026-05-04', '2', '2', 'no portfolio yet to develop', '', '', '', '', '', '1970-01-01', 1, '2026-05-02 06:29:18', 154, '2026-05-02 06:28:22', 0, NULL, 1),
(29793, 'sudalai r', '13', '6385765739', '', 'sudalair215@gmail.com', '2005-03-25', 21, '3', '2', 'thangamari', 'wage work', 8000.00, 1, 0.00, 250000.00, 'tirunelveli', 'chennai', '2605020011', '', '1', 'upload_files/candidate_tracker/5214110956_Sudalair.pdf.pdf', NULL, '1', '2026-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected in final round', '', '', '', '', '', '1970-01-01', 1, '2026-05-02 07:50:39', 154, '2026-05-02 06:15:51', 0, NULL, 1),
(29794, 'samrat eswar', '13', '9342926406', '', 'samrateswar10@gmail.com', '2005-02-10', 21, '5', '2', 'sivakumar', 'daily wages', 12000.00, 1, 0.00, 250000.00, 'tirunelveli', 'chennai', '2605020012', '', '1', 'upload_files/candidate_tracker/49431706667_SAMRATRESUME.pdf', NULL, '1', '2026-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected in programming', '', '', '', '', '', '1970-01-01', 1, '2026-05-02 07:51:54', 154, '2026-05-02 04:48:27', 0, NULL, 1),
(29795, 'Ranjith R', '2', '7708628187', '', 'ranjithrajamani2805@gmail.com', '2004-05-28', 21, '3', '2', 'Rajamani T', 'Driver', 200000.00, 2, 0.00, 250000.00, '228, 3rd middle Street,thiyagaraja nagar', 'Poonamallee', '2605020013', '', '1', 'upload_files/candidate_tracker/14191972650_SalesforceResume.pdf', NULL, '1', '2026-05-02', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected in programming', '', '', '', '', '', '1970-01-01', 1, '2026-05-02 07:53:37', 154, '2026-05-02 04:49:02', 0, NULL, 1),
(29796, 'Sujina Nilofer B', '4', '9551554810', '', 'sujinanafila@gmail.com', '2006-07-09', 19, '1', '2', 'Bakrudeen', 'Labour', 120000.00, 2, 0.00, 22000.00, 'Chennai', 'Chennai', '2605020014', '', '1', 'upload_files/candidate_tracker/39889376226_SujinaNilofer.pdf', NULL, '1', '2026-05-02', 0, '55716', '3', '59', '2026-05-11', 270000.00, '', '5', '1970-01-01', '2', 'Communication ok fresher for insurance sales also complete fresher based on Gaurav sir we have hired as fresher need to check in training', '1', '2', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55824', '55560', '2026-05-11', 1, '2026-05-02 07:54:11', 60, '2026-05-09 05:50:43', 0, NULL, 1),
(29797, '', '0', '6384670405', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605020015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-02 09:42:10', 0, NULL, 0, NULL, 1),
(29798, 'A yuvaganesh', '23', '8667793393', '8695738165', 'yuvaganesh2525@gmail.com', '2006-01-25', 20, '3', '2', 'A selvarani', 'MTS', 250000.00, 4, 0.00, 2.50, 'Chennai', 'Chennai', '2605020016', '', '1', 'upload_files/candidate_tracker/38458088434_iowyb086h71.pdf', NULL, '1', '2026-05-02', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '2026-05-03', '4', '2', 'yet to complete system task', '', '', '', '', '', '1970-01-01', 1, '2026-05-02 10:11:39', 154, '2026-05-02 06:17:12', 0, NULL, 1),
(29799, 'Gaathri j', '23', '6384670405', '', 'gayathry14092@gmail.com', '2003-09-14', 22, '6', '2', 'V JAIGANESH', 'Unit Head', 120000.00, 0, 0.00, 0.00, 'chennai', 'chennai', '2605020017', '', '1', '0', NULL, '1', '2026-05-02', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', '2026-05-04', '4', '2', 'Have to meet gokul sir', '', '', '', '', '', '1970-01-01', 154, '2026-05-02 03:45:08', 154, '2026-05-02 06:27:36', 0, NULL, 1),
(29800, '', '0', '9787784474', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605040001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-04 04:27:27', 0, NULL, 0, NULL, 1),
(29801, 'K.Kaveya', '13', '6374281187', '', 'k.kaveya10@gmail.com', '2005-03-10', 21, '2', '2', 'Krishna raj kumar A', 'Welder', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2605040002', '1', '1', 'upload_files/candidate_tracker/64048374680_DOC20260504WA0000..pdf', NULL, '1', '2026-05-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-04 04:31:07', 154, '2026-05-05 11:54:51', 0, NULL, 1),
(29802, 'Vignesh', '13', '6369745829', '', 'vvignesh20874@gmail.com', '2000-07-03', 25, '3', '2', 'Ksliyamoorthi', 'Chennai', 25000.00, 2, 0.00, 300000.00, 'Mettupalayam, Perambalur dc', 'Velachery', '2605040003', '', '1', 'upload_files/candidate_tracker/78142434222_Screenshot20260504104236127com.miui.gallery.pdf', NULL, '1', '2026-05-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude', '', '', '', '', '', '1970-01-01', 1, '2026-05-04 04:56:26', 154, '2026-05-04 02:51:08', 0, NULL, 1),
(29803, 'Nivetha k', '6', '8148198505', '9363720140', 'moonzbea2@gmail.com', '2005-03-30', 21, '2', '1', 'Kanmani', '13000', 35000.00, 1, 18000.00, 20000.00, 'No 2/3 Nettukuppam 3st ennore chennai-57', 'No 2/3 Nettukuppam 3st ennore chennai-57', '2605040004', '1', '2', 'upload_files/candidate_tracker/53704881414_CV2026031319592924.pdf202603132001570000.pdf', NULL, '1', '2026-05-04', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication and performance is Good. She have Little experience ,Will Check With her in the training period', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', '55666', 'C99176', '1970-01-01', 1, '2026-05-04 04:57:29', 154, '2026-05-04 03:15:15', 0, NULL, 1),
(29804, 'KEERTHINATH S', '6', '8524887031', '9514755161', 'Keerthinath2005@gmail.com', '2011-05-04', 0, '2', '2', 'J. Sathish Kumar', 'Auto Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2605040005', '1', '1', 'upload_files/candidate_tracker/35832335763_RESUMES.Keerthinath202604121211010000.pdf', NULL, '1', '2026-05-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-05-04 04:59:20', 154, '2026-05-04 03:15:57', 0, NULL, 1),
(29805, '', '0', '9025914789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605040006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-04 05:08:54', 0, NULL, 0, NULL, 1),
(29806, 'Subhalaxmi Mohapatra', '7', '9025817955', '', 'msubhalaxmi567@gmail.com', '2005-07-01', 20, '2', '2', 'Rajat Kumar Mohapatra', 'Fresher', 99000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2605040007', '1', '1', 'upload_files/candidate_tracker/61696388358_CV20260223122651.pdf', NULL, '1', '2026-05-04', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '2', '7', '', '', 'H1005', '', '55605', '55566', '1970-01-01', 1, '2026-05-04 05:13:50', 154, '2026-05-04 03:03:49', 0, NULL, 1),
(29807, 'Karthick Harikrishnan', '13', '6374698880', '', 'Karthickh29112003@gmail.com', '2003-11-29', 22, '2', '2', 'Kamatchi', 'None', 10000.00, 1, 0.00, 5000.00, 'Gummidipoondi', 'Gummidipoondi', '2605040008', '1', '1', 'upload_files/candidate_tracker/17347569354_Karthickresume.pdf', NULL, '1', '2026-05-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-04 05:38:45', 154, '2026-05-05 11:52:00', 0, NULL, 1),
(29808, '', '0', '9514755161', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605040009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-04 05:48:46', 0, NULL, 0, NULL, 1),
(29809, 'Tejasree. y', '4', '9345541168', '9345707067', 'sreet0607@gmail.com', '2006-07-06', 19, '2', '2', 'Yuvaraj j', 'Daiky wage', 10000.00, 1, 0.00, 15000.00, '7/184, A type, 56th street, sidco nagar,Ch-600012.', '7/184, A type, 56th street, sidco nagar,Ch-600012.', '2605040010', '50', '1', 'upload_files/candidate_tracker/69201395905_TejuResume.pdf', NULL, '1', '2026-05-04', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-05-04 05:50:15', 154, '2026-05-04 04:54:30', 0, NULL, 1),
(29810, 'Kiran naik', '6', '8073450543', '', 'naikk4356@gmail.com', '1997-09-30', 28, '2', '2', 'Tammanna naik', 'Farmer', 20000.00, 5, 0.00, 0.00, 'Belgavi', 'BTM nd stage', '2605040011', '57', '1', 'upload_files/candidate_tracker/54108243357_KIRANNAIK.docx', NULL, '1', '2026-05-04', 0, '', '5', '167', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected \nNo Communications,\nSustainability Doubt ', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55786', 'C99176', '1970-01-01', 172, '2026-05-04 11:20:31', 154, '2026-05-04 05:01:29', 0, NULL, 1),
(29811, 'Kiran naik', '6', '8073450543', '', 'naikk4356@gmail.com', '2011-05-04', 0, '2', '2', 'Tammanna naik', 'Farmer', 20000.00, 5, 0.00, 0.00, 'Belgavi', 'BTM nd stage', '2605040012', '57', '1', 'upload_files/candidate_tracker/54108243357_KIRANNAIK.docx', NULL, '1', '2026-05-04', 0, '', '6', '172', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '1', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 172, '2026-05-04 11:20:42', 0, NULL, 0, NULL, 1),
(29812, 'SRIRAM C', '13', '9553551845', '9789173026', 'csriram304@gmail.com', '2002-04-30', 24, '2', '2', 'Chidambaram R', 'Farmer', 260000.00, 2, 0.00, 250000.00, 'trichy', 'Ch', '2605040013', '1', '1', 'upload_files/candidate_tracker/70756646645_Sriramresume.pdf', NULL, '1', '2026-05-04', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected in system task', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-04 05:53:24', 154, '2026-05-05 11:51:13', 0, NULL, 1),
(29813, 'Dhana Laxmi. E', '4', '6382651976', '9677134361', 'dhanalaxi610@gmail.com', '2006-06-08', 19, '2', '2', 'Sumathi. E', 'House keeping', 10000.00, 1, 0.00, 15000.00, '27/63 sachithanandham street otteri chennai 600012', '27/63 sachithanandham street otteri chennai 600012', '2605040014', '50', '1', 'upload_files/candidate_tracker/57456626627_DhanaResume.pdf', NULL, '3', '2026-05-04', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-05-04 05:55:36', 154, '2026-05-04 03:23:46', 0, NULL, 1),
(29814, 'Narmada R', '6', '8825473181', '7338773101', 'Narmadanr05@gmail.com', '2001-06-05', 24, '2', '1', 'Rajesh R', 'Logistics', 50000.00, 1, 19850.00, 22000.00, 'No.19/10,velayudham street,pudupet,chennai-02', 'No.8/26,neithal street,mgr nagar,chennai-78', '2605040015', '1', '2', 'upload_files/candidate_tracker/50195758289_NARMADANEWRESUME1.pdf', NULL, '1', '2026-05-04', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not suitable sales profile, communication not good, salary expectation high, reject the profile..', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55645', 'C99176', '1970-01-01', 1, '2026-05-04 06:08:56', 154, '2026-05-04 03:02:55', 0, NULL, 1),
(29815, '', '0', '9025136182', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605040016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-04 06:09:34', 0, NULL, 0, NULL, 1),
(29816, 'Ajith', '6', '8608325755', '8939174945', 'edwikaji24@gmail.com', '2011-05-04', 0, '1', '2', 'ADHRATHAIAH', 'Labour', 30000.00, 2, 360000.00, 450000.00, 'Chennai', 'Chennai', '2605040017', '', '2', 'upload_files/candidate_tracker/9505992480_AjithResume1.pdf', NULL, '1', '2026-05-04', 30, 'C99304', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candiadate is ok, but salary exepectation very high, even we r picth life pc models also but he canxquott accept, looking only health domain, team referrence , reject the profile', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55645', 'C99176', '1970-01-01', 1, '2026-05-04 06:50:17', 154, '2026-05-04 04:12:48', 0, NULL, 1),
(29817, 'Maheshwari N', '6', '7358064479', '', 'mageshwarisharmi@gmail.com', '2003-08-28', 22, '2', '2', 'Nandha Kumar', 'Lorry driver', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2605040018', '50', '1', 'upload_files/candidate_tracker/44276374673_MAHESHWARIRESUME.pdf', NULL, '1', '2026-05-06', 0, '', '3', '59', '2026-05-11', 216000.00, '', '5', '1970-01-01', '2', 'Communication Ok have exp in teaching profile can give a try and check in training', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '2026-05-11', 1, '2026-05-04 06:59:28', 60, '2026-05-09 05:35:15', 0, NULL, 1),
(29818, 'poovarasan s', '6', '7598724403', '9025136182', 'poovarasanarasu37902@gmail.com', '2003-01-27', 23, '2', '2', 'settu', 'employee', 20000.00, 2, 17000.00, 20000.00, 'chennai', 'chennai', '2605040019', '73', '2', 'upload_files/candidate_tracker/74497134640_Poovarasan.pdf', NULL, '1', '2026-05-04', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-04 07:19:39', 154, '2026-05-04 03:17:59', 0, NULL, 1),
(29819, 'Monisha S', '4', '8248586647', '', 'monishasrinivasan705@gmail.com', '2005-10-29', 20, '4', '2', 'Srinivasan', 'Milk Delivery', 15000.00, 1, 0.00, 15000.00, '7/11 Kanchipuram Sabapathy Street Kondithope Ch 01', '7/11 Kanchipuram Sabapathy Street Kondithope Ch 01', '2605040020', '', '1', 'upload_files/candidate_tracker/32472961661_MONISHARESUME202605021200560000.pdf', NULL, '1', '2026-05-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-05-04 07:22:52', 1, '2026-05-04 07:25:43', 0, NULL, 1),
(29820, 'Ragul Ragav R', '6', '8610291141', '', 'ragulkarur29@gmail.com', '2000-04-29', 26, '2', '2', 'KUMARI JAYA', 'HEADMISTRESS', 84000.00, 1, 17000.00, 25000.00, 'Karur', 'Arumbakkam', '2605040021', '1', '2', 'upload_files/candidate_tracker/49528590061_RagulRagav.pdf', NULL, '1', '2026-05-06', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is ok, communication good, 2yrs exp, please confirm the joining date xxamp Salary', '5', '1', '', '', '', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '55645', 'C99176', '1970-01-01', 1, '2026-05-04 07:23:03', 154, '2026-05-06 12:04:21', 0, NULL, 1),
(29821, '', '0', '9108851599', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605040022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-04 08:07:49', 0, NULL, 0, NULL, 1),
(29822, 'Shobana. K', '11', '9092780061', '9176813582', 'shobanasakthi2005@gmail.com', '2005-12-09', 20, '2', '2', 'Kannan', 'Driver', 18000.00, 2, 0.00, 20000.00, 'Pattabiram', 'Pattabiram Chennai', '2605040023', '50', '1', 'upload_files/candidate_tracker/10389166073_Shobana..pdf', NULL, '1', '2026-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-05-04 08:17:19', 1, '2026-05-04 08:31:29', 0, NULL, 1),
(29823, '', '0', '9176813582', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605040024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-04 08:20:21', 0, NULL, 0, NULL, 1),
(29824, 'Pavan Kumar B S', '6', '9109951599', '', 'belurpavan88@gmail.com', '1988-06-27', 37, '2', '2', 'B N Sudhinra', 'Retired', 10000.00, 0, 26000.00, 26000.00, 'Kanakapura', 'Kanakapura', '2605040025', '57', '2', 'upload_files/candidate_tracker/34330326104_PavanBS2026.pdf', NULL, '1', '2026-05-04', 0, '', '1', '147', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '2', '1970-01-01', '3', '3', '', '', '', '', '55671', 'C99176', '1970-01-01', 172, '2026-05-04 02:10:20', 154, '2026-05-04 05:01:19', 0, NULL, 1),
(29825, '', '0', '7397176528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605040026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-04 09:18:31', 0, NULL, 0, NULL, 1),
(29826, 'Bharathi raja', '13', '7449086257', '9894286257', 'bharathicsee@gmail.com', '2011-05-04', 0, '3', '2', 'Anjali Devi', 'N/A', 20000.00, 1, 1.56, 3.00, 'coimbatore', 'coimbatore', '2605040027', '', '2', 'upload_files/candidate_tracker/96667522250_BharathiRajaGovindan1.pdf', NULL, '1', '2026-05-04', 10, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'rejected in aptitude', '', '', '', '', '', '1970-01-01', 1, '2026-05-04 09:21:23', 154, '2026-05-04 04:30:46', 0, NULL, 1),
(29827, '', '0', '7337828338', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605040028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-04 02:41:28', 0, NULL, 0, NULL, 1),
(29828, '', '0', '9159999077', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605050001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-05 04:05:14', 0, NULL, 0, NULL, 1),
(29829, 'Vinothini elango', '23', '7904637822', '', 'evinoth21@gmail.com', '2001-06-21', 24, '2', '2', 'Elango', 'Sugar Mill supervisior Retired', 50000.00, 1, 0.00, 250000.00, 'Sirkali, Mayiladuthurai district', 'Chennai', '2605050002', '1', '1', 'upload_files/candidate_tracker/48604523901_VinothiniUXUIResume.pdf', NULL, '1', '2026-05-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-05 04:18:41', 154, '2026-05-05 11:21:05', 0, NULL, 1),
(29830, 'SUBALAKSHMI R', '6', '8015349124', '', 'subalakshmir2005@gmail.com', '2005-03-13', 21, '2', '2', 'T.Ravanadason', 'Company', 22000.00, 2, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2605050003', '50', '1', 'upload_files/candidate_tracker/55434047041_suuba.pdf', NULL, '1', '2026-05-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 04:33:18', 154, '2026-05-05 11:16:48', 0, NULL, 1),
(29831, 'Preetha P', '13', '9384675777', '', 'preetha.pera@gmail.com', '2000-09-27', 25, '6', '2', 'Amudha P', 'Homemaker', 20000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2605050004', '', '1', 'upload_files/candidate_tracker/70748560761_PreethaFullStackResume.pdf', NULL, '1', '2026-05-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 04:34:20', 154, '2026-05-05 06:52:08', 0, NULL, 1),
(29832, 'venkatalakshmi R K', '23', '9626329566', '', 'venkatalakshmikaruppa@gmail.com', '1999-03-10', 27, '3', '2', 'Sumathi', 'Business', 17000.00, 1, 0.00, 200000.00, 'Coimbatore', 'Coimbatore', '2605050005', '', '1', 'upload_files/candidate_tracker/64475408502_Venkatalakshmi.RKresume.pdf', NULL, '1', '2026-05-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 04:51:54', 154, '2026-05-05 07:01:08', 0, NULL, 1),
(29833, 'SARANYA A', '6', '7418583497', '9384144725', 'saranya23052@gmail.com', '2005-08-23', 20, '1', '2', 'JOTHI A', 'House wife', 80000.00, 2, 0.00, 18000.00, 'No.134 nehru nager 2nd Street vyasarpadi ch- 39', 'No.134 Nehru nager 2nd Street vyasarpadi ch-3=', '2605050006', '', '1', 'upload_files/candidate_tracker/25152074330_resume31.pdf', NULL, '1', '2026-05-05', 0, 'C99201', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok, communication average. provide the fresher salary and confirm the joining date.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55732', '55645', '1970-01-01', 1, '2026-05-05 04:58:57', 154, '2026-05-05 05:57:58', 0, NULL, 1),
(29834, 'RAMYA', '6', '7200177116', '9600105130', 'ramyausha16@gmail.com', '2006-05-10', 19, '1', '2', 'Usha', 'House keeping', 10000.00, 1, 0.00, 18000.00, '511 H Block Tsunami Quaters tondairpet Chennai', '511 H Block Tsunami Quaters tondairpet Chennai', '2605050007', '', '1', 'upload_files/candidate_tracker/41545892526_BlackandWhiteCleanProfessionalA4Resume.pdf', NULL, '1', '2026-05-05', 0, 'C99201', '1', '156', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55732', '55645', '1970-01-01', 1, '2026-05-05 04:59:12', 154, '2026-05-05 05:58:06', 0, NULL, 1),
(29835, 'Irfan', '6', '9444975447', '9445091055', 'irfanfaheez112@gmail.com', '2005-06-13', 20, '2', '2', 'Badhusha p', 'Textile business', 45000.00, 0, 0.00, 35000.00, 'Chennai', 'Chennai', '2605050008', '66', '2', 'upload_files/candidate_tracker/31581572683_ResumeIrfan.pdf', NULL, '1', '2026-05-05', 0, '', '3', '59', '2026-05-06', 216000.00, '', '1', '1970-01-01', '1', 'Communication Ok have part time retail sales exp fresher for telecalling can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55666', 'C99176', '2026-05-06', 1, '2026-05-05 05:28:44', 60, '2026-05-06 09:51:42', 0, NULL, 1),
(29836, 'rajasri', '5', '7397176528', '', 'rajashreeperumal205@gmail.com', '1998-01-20', 28, '2', '2', 'amsarani perumal', 'house wife', 45000.00, 0, 33000.00, 39000.00, 'madipakkam', 'madipakkam', '2605050009', '1', '2', 'upload_files/candidate_tracker/40644713442_RajashreeResume2025.pdf', NULL, '1', '2026-05-05', 0, '', '3', '59', '2026-05-06', 450000.00, '', '1', '1970-01-01', '2', 'Communication Good have exp in real estate casa grand and urban can be trained in our roles initial career in Yes bank CASA Pl sales have telecalling exp can give a try', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55557', '55557', '2026-05-06', 154, '2026-05-05 11:29:21', 60, '2026-05-06 09:53:27', 0, NULL, 1),
(29837, 'Poornima.v', '6', '9535008454', '9731653245', 'Poornima.v715@gmail.com', '2006-08-27', 19, '1', '2', 'Venkatesh', 'Building Contractor', 50000.00, 2, 0.00, 22000.00, 'Bettadasanapura electronic city bangalore', 'Bangalore urban', '2605050010', '', '1', 'upload_files/candidate_tracker/35746067845_Poornimav.pdf', NULL, '1', '2026-05-05', 0, 'C99329', '3', '59', '2026-05-11', 216000.00, '', '5', '1970-01-01', '1', 'COmmunication Ok have exp can give a try for our insurance sales need to check in training', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55671', 'C99176', '2026-05-11', 1, '2026-05-05 06:08:14', 60, '2026-05-09 05:33:39', 0, NULL, 1),
(29838, 'Keerthika R', '6', '9840793415', '9363111211', 'keerthikaraj682@gmail.com', '2011-05-05', 0, '2', '1', 'Uma', 'Tailor', 15000.00, 2, 20000.00, 25000.00, '114 / b basin road thiruvottiyur chennai', '42 thiagar nagar tondiarpet kesavan street,', '2605050011', '1', '2', 'upload_files/candidate_tracker/28162631502_DOC20260430WA0003..pdf', NULL, '1', '2026-05-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '6', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', '55605', '55566', '1970-01-01', 1, '2026-05-05 06:20:14', 154, '2026-05-05 06:04:58', 0, NULL, 1),
(29839, 'Selva kumar mani', '6', '8056037096', '', 'selvakumarsk028@gmail.com', '1998-10-14', 27, '2', '2', 'Mani', 'Chennai', 40.00, 0, 20.00, 25.00, 'Chennai', 'Chennai', '2605050012', '1', '2', 'upload_files/candidate_tracker/78064082964_SelvaKumarResume.pdf', NULL, '1', '2026-05-05', 0, '', '3', '59', '2026-05-11', 240000.00, '', '5', '1970-01-01', '1', 'communcation ok fresher for our roles  need to check in training and confirm', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', '55666', 'C99176', '2026-05-11', 1, '2026-05-05 06:36:56', 60, '2026-05-09 05:30:14', 0, NULL, 1),
(29840, 'SANJAI KUMAR N', '13', '9342488191', '9500762832', 'vnsanjaikumar@gmail.com', '2005-07-16', 20, '5', '2', 'Parent', 'Farmer', 10000.00, 1, 0.00, 25000.00, '1/82 Mel Street, Adhivaragapuram', 'Maduraivoyal', '2605050013', '', '1', 'upload_files/candidate_tracker/79823432963_SANJAIKUMARCV.pdf', NULL, '1', '2026-05-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 06:39:49', 154, '2026-05-05 01:19:34', 0, NULL, 1),
(29841, 'pavithara', '13', '9360447212', '9626555656', 'pavitharasuresh20@gmail.com', '2002-12-20', 23, '3', '2', 'suresh', 'bussiness', 20000.00, 1, 0.00, 20000.00, 'pondicherry', 'chennai', '2605050014', '', '1', 'upload_files/candidate_tracker/19745571585_Pavitharadevresume.pdf', NULL, '1', '2026-05-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 06:40:07', 154, '2026-05-05 01:00:52', 0, NULL, 1),
(29842, 'desika s', '13', '9345123535', '9626255953', 'desikasaravanan5@gmail.com', '2004-11-05', 21, '3', '2', 'saravanan', 'daily wages', 15000.00, 1, 0.00, 20000.00, 'ambur', 'chennai', '2605050015', '', '1', 'upload_files/candidate_tracker/56227398850_DESIKASARAVANANFlowCVResume20260101.pdf', NULL, '1', '2026-05-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 06:40:10', 154, '2026-05-05 06:55:13', 0, NULL, 1),
(29843, 'Saravanakumar S', '13', '7339275153', '', 'saravanakumars3019@gmail.com', '2004-12-19', 21, '5', '2', 'Subramanian P', 'Farmer', 15000.00, 1, 0.00, 30000.00, 'Villpuram', 'Villpuram', '2605050016', '', '1', 'upload_files/candidate_tracker/36041265940_SaravanakumarS2.pdf', NULL, '1', '2026-05-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 06:40:16', 154, '2026-05-05 12:49:22', 0, NULL, 1),
(29844, 'Sathish S', '11', '7200228955', '9551835847', 'sathishsaravanan565@gmail.com', '2005-11-12', 20, '2', '2', 'M Saravanan', 'Cooli', 17000.00, 1, 0.00, 18000.00, 'New Washermanpet', 'New Washermanpet', '2605050017', '1', '1', 'upload_files/candidate_tracker/10359486867_SathishResumeWithCertification.docx', NULL, '1', '2026-05-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55605', '55566', '1970-01-01', 1, '2026-05-05 06:48:18', 154, '2026-05-05 06:03:13', 0, NULL, 1),
(29845, 'SARAVANA KUMAR V', '6', '7010351881', '7200228955', 'Saravanakumar42461@gmail.com', '2006-07-29', 19, '2', '2', 'Vijayarajan.N.C', 'Cooli', 10000.00, 1, 0.00, 18.00, 'Royapuram', 'Royapuram', '2605050018', '27', '1', 'upload_files/candidate_tracker/86824527252_saravananResume.pdf', NULL, '1', '2026-05-05', 0, '', '3', '59', '2026-05-06', 192000.00, '', '1', '1970-01-01', '1', 'Communication Average 5050 sustainability doubts a lot need to check in training only', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', 'C99176', '2026-05-06', 1, '2026-05-05 06:49:21', 60, '2026-05-06 10:06:15', 0, NULL, 1),
(29846, 'MALANI M', '13', '8838418559', '9941831126', 'malanimanavalan@gmail.com', '2004-05-07', 21, '3', '2', 'Manavalan D Pachaiyammal M', 'Lining work', 30000.00, 2, 240000.00, 340000.00, 'Kundrathur', 'Kundrathur', '2605050019', '', '2', 'upload_files/candidate_tracker/72820984928_MalaniPHPDeveloperResume1.pdf', NULL, '1', '2026-05-05', 3, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 06:53:57', 154, '2026-05-05 07:02:25', 0, NULL, 1),
(29847, '', '0', '9445549972', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605050020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-05 06:58:46', 0, NULL, 0, NULL, 1),
(29848, '', '0', '9003028033', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605050021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-05 07:00:00', 0, NULL, 0, NULL, 1),
(29849, '', '0', '6380920447', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605050022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-05 07:04:53', 0, NULL, 0, NULL, 1),
(29850, 'gokul sanakr', '1', '8925433789', '', 'gokul20840@gmail.com', '2004-06-04', 21, '2', '2', 'sankar', 'Businesse', 50000.00, 2, 0.00, 25000.00, 'tindivanam', 'maduravoyal', '2605050023', '50', '1', 'upload_files/candidate_tracker/16190095169_ModernMinimalistCVResumeGOKULCompressed.pdf', NULL, '1', '2026-05-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-05-05 07:06:34', 154, '2026-05-05 06:04:15', 0, NULL, 1),
(29851, 'Dhanush S', '13', '9751713775', '', 'sdhanurock@gmail.com', '2003-10-30', 22, '3', '2', 'Selvakumar N', 'Librarian', 300000.00, 1, 0.00, 300000.00, 'Trichy', 'Chennai', '2605050024', '', '1', 'upload_files/candidate_tracker/48543419938_DhanushResume.pdf', NULL, '1', '2026-05-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 07:10:26', 154, '2026-05-05 01:12:32', 0, NULL, 1),
(29852, 'SHRI VAISHNAVI.B', '13', '9626394336', '9361239624', 'shrivaishnavi.contact@gmail.com', '2002-10-19', 23, '3', '2', 'Bhoopalakrishnan D', 'Textile business', 300000.00, 0, 0.00, 300000.00, 'Salem', 'Chennai', '2605050025', '', '1', 'upload_files/candidate_tracker/70859676714_ShriVaishnaviATSResume.docx', NULL, '1', '2026-05-05', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 07:10:29', 154, '2026-05-05 07:01:43', 0, NULL, 1),
(29853, 'BARATHRAJI P', '13', '8760306705', '', 'barathraji2004@gmail.com', '2004-08-25', 21, '3', '2', 'PALANI M', 'Daily wages', 21000.00, 1, 0.00, 300000.00, 'Arni, tamil nadu, India', 'Chennai', '2605050026', '', '1', 'upload_files/candidate_tracker/98879600198_BarathrajiFullStackDeveloper1.docx', NULL, '1', '2026-05-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 07:11:57', 154, '2026-05-05 01:13:01', 0, NULL, 1),
(29854, 'Santhosh Kumar K', '20', '8939642141', '9962056582', 'kumarksanthosh511@gmail.com', '2011-05-05', 0, '3', '2', 'Kannan s', 'Staff', 20000.00, 1, 0.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2605050027', '', '1', 'upload_files/candidate_tracker/94565339162_RESUME.pdf', NULL, '1', '2026-05-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 07:14:16', 154, '2026-05-05 04:40:51', 0, NULL, 1),
(29855, 'Deeba puthitran', '20', '7338970183', '7358524240', 'deebaputhiran@gmail.com', '2006-04-25', 20, '3', '2', 'Thanigaivel', 'DRIVER', 12000.00, 1, 0.00, 20000.00, 'ROYAPURAM ,CHENNAI', 'ROYAPURAM, CHENNAI', '2605050028', '', '1', 'upload_files/candidate_tracker/1939312754_DEEBAPUTHIRANTRESUMEUPDATED1.pdf', NULL, '1', '2026-05-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 07:14:18', 154, '2026-05-05 04:40:59', 0, NULL, 1),
(29856, 'MOHAMAD AJAZ K', '4', '7358065092', '8148885491', 'mohamadajaz27@gmail.com', '1999-05-27', 26, '2', '2', 'Kathijathul kubura', 'Homemaker', 1.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2605050029', '1', '1', 'upload_files/candidate_tracker/18208988389_3250207103728481.pdf', NULL, '1', '2026-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1032', '0', '0', '0', NULL, 1, '2026-05-05 07:36:53', 1, '2026-05-05 03:54:55', 0, NULL, 1),
(29857, 'Mohanapriya s', '6', '7358212943', '7358332943', 'sivapremalatha583@gmail.com', '2011-05-05', 0, '2', '2', 'Shivashankar', 'Audio', 100000.00, 1, 12000.00, 20000.00, 'Chennai', 'Chennai', '2605050030', '1', '2', 'upload_files/candidate_tracker/66754831151_ResumeMohanapriya.pdf', NULL, '1', '2026-05-05', 0, '', '3', '59', '2026-05-11', 192000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for telecalling insurance Need to check in training and soncirm', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55666', 'C99176', '2026-05-11', 1, '2026-05-05 07:44:40', 60, '2026-05-09 05:32:05', 0, NULL, 1),
(29858, 'Mohammed Afsar', '6', '9944722867', '', 'mohammedafsar14026@gmail.com', '2003-02-23', 23, '3', '2', 'Quyuam.s', 'Driver', 32000.00, 1, 0.00, 25000.00, 'Jamalia, Perambur, Chennai', 'Jamalia, Perambur Chennai', '2605050031', '', '1', 'upload_files/candidate_tracker/7299833427_MohammedAfsar1.pdf', NULL, '1', '2026-05-05', 0, '', '2', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate communication is average, explained the roles as he need time to discuss with parents. So if he comes for the further round let us try and see', '5', '1', '', '1', '8', '', '2', '2026-05-06', '3', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-05-05 09:01:42', 154, '2026-05-06 12:56:04', 0, NULL, 1),
(29859, 'Thaseen Fathima k', '5', '6383967581', '9952975224', 'tahaseenfathima25@gmail.com', '2002-09-25', 23, '3', '2', 'Shahida begum', 'House wife', 400000.00, 3, 23000.00, 28000.00, 'Royappetah chennai', 'Royappetah chennai', '2605050032', '', '2', 'upload_files/candidate_tracker/20566642704_TAHASEENFATHIMAFlowCVResume1.pdf', NULL, '1', '2026-05-05', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', '55560', '55560', '1970-01-01', 1, '2026-05-05 09:20:38', 154, '2026-05-05 06:00:13', 0, NULL, 1),
(29860, 'Kishanth T', '13', '8608074065', '7449007773', 'kishanthyousuff123@gmail.com', '2003-08-22', 22, '5', '2', 'Tamil selvam', 'Photographer', 150000.00, 0, 0.00, 250000.00, 'Chennai', 'Chennai', '2605050033', '', '1', 'upload_files/candidate_tracker/25704549706_Resume.pdf', NULL, '1', '2026-05-05', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 09:27:58', 154, '2026-05-05 06:59:14', 0, NULL, 1),
(29861, '', '0', '9894512216', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605050034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-05 09:57:44', 0, NULL, 0, NULL, 1),
(29862, 'Anushia k', '6', '8122566567', '', 'anushiyaanushiya48@gmail.com', '2000-09-16', 25, '2', '2', 'Kanagaraj', 'Cooli', 15000.00, 0, 0.00, 20000.00, 'Kanyakumari', 'Koyambedu', '2605050035', '50', '1', 'upload_files/candidate_tracker/54866367382_ANUSHIYARESUME.pdf', NULL, '1', '2026-05-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-05 11:33:15', 154, '2026-05-08 11:59:23', 0, NULL, 1),
(29863, '', '0', '6379773354', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605050036', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-05 12:20:00', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29864, '', '0', '8247604616', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605050037', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-05 12:40:14', 0, NULL, 0, NULL, 1),
(29865, 'Anbarasan Govindasamy', '5', '7604939654', '9626186818', 'anbarasanmg385@gmail.com', '2002-09-23', 23, '2', '2', 'Govindasamy', 'Cooli', 15000.00, 3, 25500.00, 30000.00, 'Sholinghur', 'Ambattur', '2605050038', '1', '2', 'upload_files/candidate_tracker/28071349603_ANBARASANGCVResume.pdf', NULL, '1', '2026-05-07', 0, '', '1', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1028', '', '55656', '55557', '1970-01-01', 1, '2026-05-05 04:54:09', 154, '2026-05-07 11:58:58', 0, NULL, 1),
(29866, '757352787080', '4', '9384620661', '9940666219', 'surendhars337@gmail.com', '2001-03-19', 25, '5', '2', 'Parent', 'My occupation is Sales Executive.”', 350000.00, 2, 20000.00, 30000.00, 'Chennai', 'Chennai', '2605060001', '', '2', 'upload_files/candidate_tracker/38279957414_DOC20260413WA0008..pdf', NULL, '1', '2026-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-05-06 03:36:20', 1, '2026-05-06 04:57:23', 0, NULL, 1),
(29867, 'KARTHIKEYAN A', '13', '9597068024', '', 'karthikeyana566@gmail.com', '2003-12-10', 22, '3', '2', 'Anbazhakan K', 'Self employed', 450000.00, 1, 0.00, 17000.00, 'Rajapalayam', 'Chennai', '2605060002', '', '1', 'upload_files/candidate_tracker/5195346786_karthikeyanresume.pdf.pdf', NULL, '1', '2026-05-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-05-06 03:56:04', 154, '2026-05-06 06:22:37', 0, NULL, 1),
(29868, 'Nithishkumar V', '23', '8015406825', '8531880777', 'nithish30172004@gmail.com', '2004-05-30', 21, '6', '2', 'Venkatesan', 'Farmer', 90000.00, 1, 0.00, 17000.00, 'Villupuram', 'West Mambalam', '2605060003', '', '1', 'upload_files/candidate_tracker/89393207824_NithishkumarResumeCopy1.pdf', NULL, '1', '2026-05-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-06 03:56:06', 154, '2026-05-06 09:57:59', 0, NULL, 1),
(29869, 'ramesh balu', '13', '8943467149', '', 'rameshbalu21@gmail.com', '2000-02-01', 26, '2', '2', 'balu', 'farmer', 15000.00, 1, 0.00, 10000.00, 'pondycherry', 'chennai', '2605060004', '1', '1', 'upload_files/candidate_tracker/39316532028_rameshresume20261compressed.pdf', NULL, '1', '2026-05-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-05-06 04:14:44', 154, '2026-05-06 06:24:58', 0, NULL, 1),
(29870, 'Abhilash', '6', '7299547445', '9710127924', 'Abhilashganesh100@gmail.com', '1996-02-15', 30, '2', '2', 'Sasikala', 'House wife', 150000.00, 1, 35000.00, 40000.00, 'Chennai', 'Chennai', '2605060005', '66', '2', 'upload_files/candidate_tracker/29075717070_AbhilashGanesanupdated1.pdf', NULL, '1', '2026-05-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-06 04:46:55', 154, '2026-05-06 05:50:03', 0, NULL, 1),
(29871, 'Pragatheeswar E', '5', '7904110259', '9363635381', 'pragathees945@gmail.com', '1999-08-22', 26, '2', '2', 'Elangovan', 'Advocate Clerk', 50000.00, 1, 25000.00, 30000.00, 'Rasipuram', 'Saidapet', '2605060006', '68', '2', 'upload_files/candidate_tracker/91384415696_PRAGATHEESWARELANGOVAN1.pdf', NULL, '1', '2026-05-06', 0, '', '1', '152', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55735', '55557', '1970-01-01', 1, '2026-05-06 04:53:22', 154, '2026-05-06 04:14:35', 0, NULL, 1),
(29872, 'Maria Jothi S', '6', '7449200571', '', 'mariajothi555@gmail.com', '2005-09-27', 20, '3', '2', 'Santhana Raj J', 'Welder', 250000.00, 1, 0.00, 0.00, 'CHENNAI', 'CHENNAI', '2605060007', '', '1', 'upload_files/candidate_tracker/70564700211_DOC20260506WA0000..pdf', NULL, '1', '2026-05-06', 0, '', '1', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-06 05:59:57', 154, '2026-05-06 12:09:29', 0, NULL, 1),
(29873, '', '0', '9841370975', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605060008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-06 06:15:29', 0, NULL, 0, NULL, 1),
(29874, 'sivaranjani sekar', '13', '9489787308', '', 'officialsivaranjani10@gmail.com', '2003-04-10', 23, '5', '2', 'sekar', 'egg shop', 150000.00, 1, 0.00, 3.00, 'thanjavur', 'chennai', '2605060009', '', '1', 'upload_files/candidate_tracker/999267461_SIVARANJANIRESUME.pdf', NULL, '1', '2026-05-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-06 06:28:56', 154, '2026-05-06 12:12:28', 0, NULL, 1),
(29875, 'Mathivanan', '5', '7092693014', '9626511579', 'mathivananmathi903@gmail.com', '2001-08-17', 24, '2', '2', 'Sumathi', 'House wife', 40000.00, 5, 20500.00, 30000.00, 'Chennai', 'Chennai', '2605060010', '66', '2', 'upload_files/candidate_tracker/87315905774_resume.pdf', NULL, '1', '2026-05-06', 15, '', '1', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-06 06:34:53', 154, '2026-05-06 12:13:46', 0, NULL, 1),
(29876, 'Arikrishnan A', '4', '9677597305', '7305759104', 'krishnanari694@gmail.com', '2002-06-10', 23, '5', '2', 'Arasan', 'Former', 4000.00, 5, 17000.00, 23000.00, 'ARIYALUR', 'ARIYALUR', '2605060011', '', '2', 'upload_files/candidate_tracker/94958888151_arikkr.pdf', NULL, '1', '2026-05-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-06 07:56:27', 154, '2026-05-06 02:45:59', 0, NULL, 1),
(29877, 'Sharoon R', '13', '8610861784', '', 'sharoonprofessional@gmail.com', '2005-04-22', 21, '6', '2', 'Kamatchi', 'House wife', 15000.00, 1, 0.00, 150000.00, 'KORATTUR RS', 'KORATTUR RS', '2605060012', '', '1', 'upload_files/candidate_tracker/6471100025_Sharoon.pdf', NULL, '1', '2026-05-06', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-06 08:56:30', 154, '2026-05-06 03:07:33', 0, NULL, 1),
(29878, 'V.Rajeshwari', '6', '9344960524', '6369584997', 'rajeshwari281105@gmail.com', '2005-11-28', 20, '2', '2', 'T.Vinayagam', 'Real estate', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2605060013', '1', '1', 'upload_files/candidate_tracker/93879165668_VRajeshwari339928.pdf', NULL, '1', '2026-05-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE OK.COMMUNICATION OK.kINDLY CONFIRM THE SALARY AND JOINING DATE', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55692', '55645', '1970-01-01', 1, '2026-05-06 09:27:14', 154, '2026-05-09 09:35:00', 0, NULL, 1),
(29879, 'Praveen kumar. V', '6', '6381659768', '', 'praveenkumarv0624@gmail.com', '2004-06-22', 21, '2', '2', 'Vadivel', 'Good position', 65000.00, 0, 0.00, 20000.00, '659 Ayyanar kovil street naraiyur Thiruvannamalai', 'Senthomash mountain', '2605060014', '50', '1', 'upload_files/candidate_tracker/92488871779_PraveenKumarResume.pdf', NULL, '1', '2026-05-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-06 09:33:23', 154, '2026-05-07 04:45:53', 0, NULL, 1),
(29880, 'CHERMAN S', '13', '8940689275', '9566984160', 'chermanprof52001@gmail.com', '2001-05-03', 25, '5', '2', 'Sudalaiyandi', 'Security', 12000.00, 2, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2605060015', '', '1', 'upload_files/candidate_tracker/56465686908_RESUME11.pdf', NULL, '1', '2026-05-06', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'Rejected in aptitude', '', '', '', '', '', '1970-01-01', 1, '2026-05-06 10:04:25', 154, '2026-05-06 06:20:36', 0, NULL, 1),
(29881, 'SARAVANA KUMAR S', '6', '9361818781', '9789803170', 'saravanasksaravanakumar8@gmail.com', '2003-10-09', 22, '2', '2', 'K.sivakumar/ s.saraswathi', 'Vegitable shop', 40000.00, 1, 0.00, 20000.00, '23/36 Jani basha lane Royapettah Chennai 600014', '23/36 Jani basha lane Royapettah Chennai 600014', '2605060016', '50', '1', 'upload_files/candidate_tracker/76579277607_Saravanakumar1.pdf', NULL, '1', '2026-05-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '2026-05-07', 1, '2026-05-06 11:03:39', 154, '2026-05-07 04:46:01', 0, NULL, 1),
(29882, '', '0', '9363635381', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605060017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-06 02:05:14', 0, NULL, 0, NULL, 1),
(29883, 'Hariprabha k', '6', '8148393085', '9884690927', 'hariprabha535@gmail.com', '2005-09-28', 20, '2', '2', 'Karpagam', 'Tailor', 180000.00, 1, 0.00, 20000.00, 'Iyyapanthangal', 'Iyyapanthangal', '2605060018', '1', '1', 'upload_files/candidate_tracker/83054853277_hariprabhakresume.pdf', NULL, '1', '2026-05-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-05-06 04:34:58', 154, '2026-05-07 03:46:09', 0, NULL, 1),
(29884, 'Vijay K', '5', '6383758737', '9344625149', 'vijaykvj25@gmail.com', '1999-01-25', 27, '2', '2', 'Punitha K', 'Nurse', 50000.00, 1, 24000.00, 30000.00, 'Chennai', 'Chennai', '2605070001', '1', '2', 'upload_files/candidate_tracker/39662043463_VJResume1.pdf', NULL, '1', '2026-05-07', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1005', '', '55560', '55560', '1970-01-01', 1, '2026-05-07 03:50:46', 154, '2026-05-07 04:24:09', 0, NULL, 1),
(29885, 'Sreesh.S.A', '6', '8778961080', '7810070644', 's.a.sreesh9125@gmail.com', '2005-12-09', 20, '2', '2', 'Suresh Babu', 'Manager', 180000.00, 1, 0.00, 20000.00, 'Alapakkam', 'Alappakam', '2605070002', '1', '1', 'upload_files/candidate_tracker/74087677875_sreesh.pdf', NULL, '1', '2026-05-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '55605', '55566', '1970-01-01', 1, '2026-05-07 03:51:25', 154, '2026-05-07 03:45:25', 0, NULL, 1),
(29886, 'GunaMariraj', '31', '7395918097', '9597093298', 'gunaagunaa592@gmail.com', '2003-12-26', 22, '2', '2', 'S.neela', 'Fresher', 10000.00, 1, 0.00, 12000.00, 'Madurai', 'Madurai', '2605070003', '1', '1', 'upload_files/candidate_tracker/9066184131_gunaaresume.pdf', NULL, '1', '2026-05-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2026-05-08', '1', '2', 'Given a week time to  learn', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-07 04:19:02', 154, '2026-05-07 06:12:39', 0, NULL, 1),
(29887, 'SELVAMANI s', '13', '7695879626', '8220711759', 'infoselvamani@gmail.com', '2001-02-23', 25, '3', '2', 'Selvarasu A', 'Farmer', 15.00, 1, 0.00, 20.00, 'Virudhachalam, Cuddalore', 'Saidapet', '2605070004', '', '1', 'upload_files/candidate_tracker/45597810280_Updatedresume.pdf', NULL, '1', '2026-05-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2026-05-08', '1', '2', 'Given a  week time to learn', '', '', '', '', '', '1970-01-01', 1, '2026-05-07 04:56:52', 154, '2026-05-07 06:17:51', 0, NULL, 1),
(29888, 'Kishore kumar p', '6', '9360333019', '', 'pmkishore2004@gmail.com', '2004-11-21', 21, '2', '2', 'Perumal S', 'Accountant', 60000.00, 1, 15000.00, 18000.00, '1/277,Eswaran Koil Street,Tiruvannamalai - 604418', '4/36, Gangai Amman Kovil Street,Royapettah -600014', '2605070005', '50', '2', 'upload_files/candidate_tracker/78261248666_KishoreKumarPResume.pdf', NULL, '1', '2026-05-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-07 04:59:57', 154, '2026-05-07 10:55:22', 0, NULL, 1),
(29889, 'Meena Sankar', '13', '9043464976', '', 'smeena0207@gmail.com', '2004-02-07', 22, '5', '2', 'Sankar R', 'Business man', 100000.00, 1, 0.00, 200000.00, 'No 24, Shakti Nagar, Avadi, Thiruvallur', 'No 24, Shakti Nagar, Avadi, Thiruvallur', '2605070006', '', '1', 'upload_files/candidate_tracker/51985342837_MeenaResume.pdf', NULL, '1', '2026-05-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-07 05:02:53', 154, '2026-05-07 10:40:00', 0, NULL, 1),
(29890, 'R BALAJI', '6', '9361251727', '', 'balajiraja112001@gmail.com', '2001-01-11', 25, '2', '2', 'Raja', 'Bc', 200000.00, 1, 23000.00, 30000.00, 'Chennai', 'Chennai', '2605070007', '50', '2', 'upload_files/candidate_tracker/33895465922_BALAJI1.pdf', NULL, '1', '2026-05-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-07 05:14:29', 154, '2026-05-08 11:40:36', 0, NULL, 1),
(29891, 'Balakumaran I', '34', '9994753169', '', 'balilayaraja10@gmail.com', '2003-10-02', 22, '2', '2', 'Thenmozhi I', 'Housewife', 20000.00, 1, 19500.00, 20000.00, 'Tiruttani', 'Porur', '2605070008', '1', '2', 'upload_files/candidate_tracker/1672142975_BALAKUMARANUPDATEDRESUME.pdf', NULL, '1', '2026-05-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-07 05:20:01', 154, '2026-05-07 02:46:15', 0, NULL, 1),
(29892, 'Vignesh', '23', '8248048372', '8526393485', 'vigneshev03@gmail.com', '1999-07-23', 26, '2', '2', 'Vedappan', 'Former', 15000.00, 2, 18000.00, 22000.00, 'Gundu salai road, KDR nagar, Cuddalore', 'Velachery, chennai', '2605070009', '1', '2', 'upload_files/candidate_tracker/42435437204_VigneshUxUiDesigner.pdf', NULL, '1', '2026-05-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-07 05:25:03', 154, '2026-05-07 01:13:13', 0, NULL, 1),
(29893, 'Akash k', '5', '8608016313', '9884602097', 'Akashkumarofficial110@gmail.com', '2003-06-10', 22, '1', '2', 'Kumar', 'Buliding contract', 30000.00, 1, 0.00, 23000.00, 'Old washermenpet', 'Old washermenpet', '2605070010', '', '1', 'upload_files/candidate_tracker/45790226269_AkashResume.pdf', NULL, '1', '2026-05-07', 0, '55907', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', '55560', '55560', '1970-01-01', 1, '2026-05-07 05:34:18', 154, '2026-05-07 04:41:56', 0, NULL, 1),
(29894, 'Bhoopalan', '5', '9363514649', '', 'boobadhanush@gmail.com', '2002-01-13', 24, '1', '2', 'Hema kumar', 'Gold Smith', 350000.00, 1, 0.00, 25000.00, 'Guruvappa street old washermenpet chennai 21', 'Guruvappa street old washermenpet', '2605070011', '', '1', 'upload_files/candidate_tracker/19770584789_BhoopalanResumeFinal11.pdf', NULL, '3', '2026-05-07', 0, '55907', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55560', '55560', '1970-01-01', 1, '2026-05-07 05:34:45', 154, '2026-05-07 04:39:38', 0, NULL, 1),
(29895, 'Rakesh Raja R', '13', '9042784377', '', 'rakeshraja685@gmail.com', '2006-02-02', 20, '2', '2', 'Rangaiah P', 'Auto Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2605070012', '1', '1', 'upload_files/candidate_tracker/14954761767_RakeshResume.pdf', NULL, '1', '2026-05-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '8', '', '2', '2026-05-08', '1', '2', 'Given a week time to learn', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-07 05:40:11', 154, '2026-05-07 06:13:32', 0, NULL, 1),
(29896, '307578938439', '13', '8925180601', '', 'gunaseelan0501@gmail.com', '2003-01-05', 23, '2', '2', 'Thirumuruganadam.A', 'prabha company supervisor', 30000.00, 1, 0.00, 30000.00, 'Porur', 'Porur', '2605070013', '23', '1', 'upload_files/candidate_tracker/51301601888_IMG20260310WA0016.pdf', NULL, '1', '2026-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-05-07 06:12:46', 1, '2026-05-07 06:28:58', 0, NULL, 1),
(29897, 'Vennila', '6', '6380784996', '9551249261', 'vennila23nila@gmail.com', '2005-09-23', 20, '3', '2', 'K.Umamaheshwari', 'Self Employed', 8000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2605070014', '', '1', 'upload_files/candidate_tracker/18091274147_vennila1.pdf', NULL, '1', '2026-05-07', 0, '', '3', '59', '2026-05-11', 186000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for insurance sales can give a try and  check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '2026-05-11', 1, '2026-05-07 06:13:23', 60, '2026-05-09 05:36:43', 0, NULL, 1),
(29898, 'navin r', '6', '6374456268', '', 'navinnavin29350@gmail.com', '2006-01-25', 20, '3', '2', 'jayalakshmi . r', 'self Employee', 8000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2605070015', '', '1', 'upload_files/candidate_tracker/14382534958_RNavinCID394758Undertaking20260210185624a698b320077227.pdf', NULL, '1', '2026-05-07', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-07 06:14:38', 154, '2026-05-07 12:00:44', 0, NULL, 1),
(29899, 'Lency Evangeline', '6', '9080515789', '6382897738', 'Evangelinlency@gmail.com', '2005-02-04', 21, '2', '2', 'Stella mary', 'Tailor', 20000.00, 1, 0.00, 18000.00, '7th cross street Kodambakkam Chennai', '7th cross street Kodambakkam Chennai', '2605070016', '1', '1', 'upload_files/candidate_tracker/62618664800_CV2026043015585774.pdf', NULL, '1', '2026-05-07', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication skill and vocie good , she already one year work with ice cream shop for sales work but some personal reason to quit the job , she interest in tele calling work so try for 7 days training period , exp salary is 16 to 17k .', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2026-05-07 06:36:55', 154, '2026-05-07 12:57:48', 0, NULL, 1),
(29900, 'Anushya', '5', '7550133228', '6382897738', 'anushya1640@gmail.com', '2001-04-16', 25, '2', '2', 'Therasha', '-', 40000.00, 5, 25000.00, 28000.00, '116/2 muthamman Kovil Street ayanavaram', '116/2 muthamman Kovil Street ayanavaram', '2605070017', '1', '2', 'upload_files/candidate_tracker/84681182999_CV2026043015585774.pdf', NULL, '1', '2026-05-07', 30, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1030', '', '55824', '55560', '1970-01-01', 1, '2026-05-07 06:38:37', 154, '2026-05-07 02:58:37', 0, NULL, 1),
(29901, '', '0', '9344625149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605070018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-07 06:44:21', 0, NULL, 0, NULL, 1),
(29902, 'lency v', '5', '9150447988', '9940303025', 'lencypriya3@gmail.com', '2004-04-15', 22, '2', '2', 'sureka', 'home maker', 100000.00, 2, 23000.00, 27000.00, '24/7 vasudeaven street Purasaiwakkam', '24/7 vasudeaven street Purasaiwakkam', '2605070019', '1', '2', 'upload_files/candidate_tracker/41866104487_Lency.v010726438075350.pdf', NULL, '1', '2026-05-07', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1005', '', '55560', '55560', '1970-01-01', 1, '2026-05-07 06:48:20', 154, '2026-05-07 04:41:27', 0, NULL, 1),
(29903, 'shreeyaa', '6', '8838027170', '9600052005', 'Shreeyakanickaraj@gmail.com', '2005-04-08', 21, '2', '2', 'kanickaraj', 'business', 100000.00, 2, 18000.00, 21000.00, '16th east cross road MKB nagar chennai. 39', '1329 , 16th east cross road nagar', '2605070020', '1', '2', 'upload_files/candidate_tracker/62324567126_ShreeyaaK0507261236044600.pdf', NULL, '1', '2026-05-07', 0, '', '3', '59', '2026-05-11', 192000.00, '', '5', '1970-01-01', '2', 'Communication ok fresher for our insurance sales need to check in training', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1005', '', '55645', '5151', '2026-05-11', 1, '2026-05-07 06:49:15', 60, '2026-05-09 05:42:57', 0, NULL, 1),
(29904, '', '0', '8838027179', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605070021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-07 07:13:06', 0, NULL, 0, NULL, 1),
(29905, 'LOKESHWARAN AYYAPPAN', '13', '9042762239', '7502805060', 'lokes2602@gmail.com', '2004-02-26', 22, '3', '2', 'Ayyappan-Shanthi', 'Farmers', 5000.00, 1, 0.00, 3.00, 'kulipirai', 'kulipirai', '2605070022', '', '1', 'upload_files/candidate_tracker/61939501773_LokeshwaranResumeFinal.pdf', NULL, '1', '2026-05-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '2026-05-08', '3', '2', 'Given a  week time to learn', '', '', '', '', '', '1970-01-01', 1, '2026-05-07 07:37:11', 154, '2026-05-07 06:16:52', 0, NULL, 1),
(29906, 'Surya A', '13', '9585442532', '', 'kundhavaimanavalan@gmail.com', '2004-09-23', 21, '2', '2', 'Alagia Manavalan', 'Sales Representative', 15000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2605070023', '1', '1', 'upload_files/candidate_tracker/20246319992_KundhavaiManavalanUpdatedResume.pdf', NULL, '1', '2026-05-07', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2026-05-08', '1', '2', 'Need to perform system task', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-07 07:50:58', 154, '2026-05-07 06:14:14', 0, NULL, 1),
(29907, 'Ramya .R', '6', '8056287296', '7358691528', 'ramyarajendran804@gmail.com', '2005-10-26', 20, '2', '2', 'V.Rajendran', 'Auto Driver', 13000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2605070024', '1', '1', 'upload_files/candidate_tracker/35039479171_Ramya1.pdf', NULL, '1', '2026-05-07', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1005', '', '55864', '55566', '1970-01-01', 1, '2026-05-07 09:21:42', 154, '2026-05-07 04:23:54', 0, NULL, 1),
(29908, 'Reena. K', '6', '7358691582', '8056287296', 'Kreenareena143@gmail.com', '2005-12-20', 20, '2', '2', 'Kumarasen', 'Cooli', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2605070025', '1', '1', 'upload_files/candidate_tracker/67424690307_reenaresume....pdf', NULL, '1', '2026-05-07', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '4', '3', '', '', 'H1005', '', '55864', '55566', '1970-01-01', 1, '2026-05-07 09:22:15', 154, '2026-05-07 04:21:58', 0, NULL, 1),
(29909, 'Dhiyaan Kumaar', '13', '9445291303', '', 'dhiyaan2004@gmail.com', '2004-08-23', 21, '2', '2', 'Siva kumar', 'Police', 600000.00, 1, 0.00, 3.50, 'Chennai', 'Chennai', '2605070026', '1', '1', 'upload_files/candidate_tracker/2682038615_DhiyaanKumaar.pdf', NULL, '1', '2026-05-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '4', '2', 'Completed only aptitude', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-07 09:43:20', 154, '2026-05-07 06:18:28', 0, NULL, 1),
(29910, '', '0', '7397305638', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605070027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-07 11:42:30', 0, NULL, 0, NULL, 1),
(29911, 'Sweatha .H', '6', '6380346720', '', 'sweathahema6@gmail.com', '2006-05-04', 20, '3', '2', 'V.Hemavathy', 'Clerk', 10000.00, 0, 0.00, 20000.00, 'Kolathur Vinayagapuram', 'Vinayagapuram', '2605070028', '', '1', 'upload_files/candidate_tracker/65890975091_sweatharesume10.pdf', NULL, '1', '2026-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-05-07 12:19:42', 1, '2026-05-07 12:31:29', 0, NULL, 1),
(29912, 'KIRUBA k KARAN.a', '6', '6385932224', '6381035854', 'kk6597672@gmail.com', '2005-08-19', 20, '2', '2', 'Ajith Kumar', 'ITI', 30000.00, 1, 16000.00, 20000.00, 'Madhavaram', 'Madhavaram', '2605080001', '1', '2', 'upload_files/candidate_tracker/95571044074_KiruakaranResume1.docx', NULL, '1', '2026-05-08', 48, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate communication skill and voice is ok , money need person , and past exp is not related to sales , but interested in sales , so try for 7 days training period, past salary is 16 k so he need 17k salary , this candidate is dhanush team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1033', '', '', '', '1970-01-01', 1, '2026-05-08 04:43:47', 60, '2026-05-09 11:37:19', 0, NULL, 1),
(29913, 'Pooja murugan', '6', '8667290432', '', 'poojamurugan2828@gmail.com', '2003-04-28', 23, '2', '2', 'Murugan', 'Daily wages', 75000.00, 2, 0.00, 17000.00, 'Sholinghur', 'Nungambakkam', '2605080002', '1', '1', 'upload_files/candidate_tracker/41949606035_attachment.pdf', NULL, '1', '2026-05-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was ok with communication and also have some experience regarding vice process so we try for initial 7days', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1033', '', 'P1287', 'C99176', '1970-01-01', 1, '2026-05-08 04:58:16', 154, '2026-05-09 11:36:15', 0, NULL, 1),
(29914, 'Anigori (Annieglory)', '6', '6369584997', '7993366068', 'annieglory889@gmail.com', '2005-11-09', 20, '2', '2', 'Narayana', 'Sanitation worker', 20000.00, 1, 0.00, 180000.00, 'Kknangar', 'Vijayaragahavapuram kk nagar', '2605080003', '1', '1', 'upload_files/candidate_tracker/10961728436_CV2026050418012737.pdf', NULL, '1', '2026-05-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE IS OK COMMUNICATION IS GOOD .KINDLY CONFIRM THE SALARY AND JOINING DATE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-08 05:14:10', 154, '2026-05-09 09:35:06', 0, NULL, 1),
(29915, 'Vimalambigai.A', '6', '7200161519', '6369584997', 'vimala250206@gmail.com', '2006-02-25', 20, '2', '2', 'Anand', 'Carpenter', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2605080004', '1', '1', 'upload_files/candidate_tracker/88914449970_CV2026012412355179.pdf', NULL, '1', '2026-05-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is ok, fresher pls check sustainability. pls confirm the salary and joining date', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-08 05:15:04', 154, '2026-05-08 03:40:50', 0, NULL, 1),
(29916, 'Sharmila', '6', '9384684183', '9176443007', 'sharronsharmi12@gmail.com', '2011-05-08', 0, '2', '2', 'Kamala kannan', 'Daily wages', 28000.00, 2, 0.00, 18.00, 'Perambur', 'Perambur', '2605080005', '50', '1', 'upload_files/candidate_tracker/78490012901_resume.pdf', NULL, '1', '2026-05-08', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-08 05:25:52', 154, '2026-05-08 11:08:46', 0, NULL, 1),
(29917, 'Yazhini J', '13', '9629405062', '', 'yazhiniyazhini6@gmail.com', '1995-09-08', 30, '2', '1', 'Karthikeyan', 'Manager', 20000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2605080006', '1', '1', 'upload_files/candidate_tracker/37004690911_Yazhresume.pdf', NULL, '1', '2026-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Rejected in group discussion', '', 'H1005', '', '', '', '1970-01-01', 1, '2026-05-08 05:32:20', 154, '2026-05-08 04:50:45', 0, NULL, 1),
(29918, 'Lokesh J', '6', '9941767600', '8668072350', 'rjlokesh19111996@gmail.com', '2002-11-19', 23, '2', '2', 'M. Jaikumar', 'Self employed', 45000.00, 0, 21500.00, 23000.00, 'CHENNAI', 'CHENNAI', '2605080007', '66', '2', 'upload_files/candidate_tracker/87092092849_Jlokeshresume25.pdf', NULL, '1', '2026-05-08', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', '55605', '55566', '1970-01-01', 1, '2026-05-08 05:34:22', 154, '2026-05-09 09:41:14', 0, NULL, 1),
(29919, 'E . Muthu', '23', '9176387547', '', 'muthu54367@gmail.com', '2002-08-15', 23, '3', '2', 'Karpagam', 'Small grocery store', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2605080008', '', '1', 'upload_files/candidate_tracker/92539032482_AdobeScan08May2026.pdf', NULL, '1', '2026-05-08', 0, '', '2', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '2026-05-11', '2', '2', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-08 05:47:09', 154, '2026-05-08 04:54:09', 0, NULL, 1),
(29920, 'Soniya Kannadhasan', '13', '9123515590', '', 'soniyasoniya5590@gmail.com', '2004-01-25', 22, '3', '2', 'Kannadhasan', 'Monthly wages worker', 14000.00, 1, 0.00, 250000.00, 'Arni', 'Chennai', '2605080009', '', '1', 'upload_files/candidate_tracker/75402159956_SoniyaResume3.pdf', NULL, '1', '2026-05-08', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', 'Rejected in group discussion', '', '', '', '', '', '1970-01-01', 1, '2026-05-08 05:57:16', 154, '2026-05-08 04:50:12', 0, NULL, 1),
(29921, 'Keerthana v', '6', '8778850708', '', 'Keerthanavanji2603@gmail.com', '2006-03-26', 20, '2', '2', 'chitra v', 'ramakrishna math staff', 13000.00, 2, 0.00, 16000.00, 'No 6Ramakrishna Puram 4th street mylapore', 'No 6Ramakrishna Puram 4th street mylapore', '2605080010', '1', '1', 'upload_files/candidate_tracker/98439283116_KEERTHANARESUME.pdf', NULL, '1', '2026-05-08', 0, '', '3', '59', '2026-05-11', 180000.00, '', '5', '1970-01-01', '1', 'Communication Ok fresher for our insurance sales need to check in training', '5', '2', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', 'P1287', 'C99176', '2026-05-11', 1, '2026-05-08 06:11:24', 60, '2026-05-09 05:44:10', 0, NULL, 1),
(29922, 'Priyanga V', '6', '8939432128', '9941851658', 'rochipriya3@gmail.com', '2005-03-06', 21, '2', '2', 'Parent', 'House wife', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2605080011', '27', '1', 'upload_files/candidate_tracker/49120079521_priyangaresume.docx', NULL, '1', '2026-05-08', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected..  Syed attended this interview.  Avarage skill but candidate joing expect jun . And Letxquots try this candidate.  This syed feedback. Will analysis 7 days training ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1070', 'C99176', '1970-01-01', 1, '2026-05-08 06:26:59', 154, '2026-05-08 02:46:25', 0, NULL, 1),
(29923, 'Harini P', '6', '9025883876', '7338946337', 'hariniponnudurai2006@gmail.com', '2006-06-27', 19, '3', '2', 'Ponnammal P', 'Home maker', 10000.00, 2, 0.00, 25000.00, 'Kodungaiyur', 'Kodungaiyur', '2605080012', '', '1', 'upload_files/candidate_tracker/71020973632_HariniPresume.pdf', NULL, '1', '2026-05-08', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-05-08 06:27:22', 154, '2026-05-08 06:12:15', 0, NULL, 1),
(29924, 'Indhumathi S', '6', '7010294950', '', 'indhusankar669@gmail.com', '2004-06-02', 21, '2', '2', 'Mohana', 'House wife', 150000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2605080013', '1', '1', 'upload_files/candidate_tracker/21430886833_INDHUMATHIRESUME.pdf', NULL, '1', '2026-05-08', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55645', 'C99176', '1970-01-01', 1, '2026-05-08 06:38:37', 154, '2026-05-08 04:44:30', 0, NULL, 1),
(29925, '', '0', '8778394504', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605080014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-08 06:53:09', 0, NULL, 0, NULL, 1),
(29926, 'Bhavana.N', '6', '7904399060', '8778850708', 'bhavananithya@gmail.com', '2006-04-20', 20, '2', '2', 'Nithya andam.R', 'Auto driver', 13000.00, 1, 0.00, 18000.00, 'No 12 o block pallakuma nagar Mylapore Chennai 4', 'No 12 o block pallakuma nagar Mylapore Chennai 4', '2605080015', '1', '1', 'upload_files/candidate_tracker/89199896385_AdobeScanMay082026.pdf', NULL, '1', '2026-05-08', 0, '', '1', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55864', '55566', '1970-01-01', 1, '2026-05-08 06:58:26', 154, '2026-05-08 06:12:04', 0, NULL, 1),
(29927, 'Pavithra K', '6', '9360405304', '6369986507', 'pavithrakamalakannan6@gmail.com', '2005-10-03', 20, '3', '2', 'Kamalakannan', 'Driver', 62000.00, 2, 0.00, 300000.00, 'Vandavasi', 'Chennai, Kovilambakkam', '2605080016', '', '1', 'upload_files/candidate_tracker/78258839400_PAVTHRA.pdf', NULL, '1', '2026-05-08', 0, '', '1', '149', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', 'P1287', 'C99176', '1970-01-01', 1, '2026-05-08 07:15:32', 154, '2026-05-09 09:31:46', 0, NULL, 1),
(29928, 'Keerthik subramani', '6', '9789237294', '8524013181', 'Keerthikasubramani31@gmail.com', '2000-07-30', 25, '5', '1', 'Subramani', 'Home maker', 10000.00, 0, 12500.00, 22000.00, 'Chennai', 'Perambur', '2605080017', '', '2', 'upload_files/candidate_tracker/59430571061_downloadresume1.pdf', NULL, '1', '2026-05-08', 0, '', '1', '161', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55882', '55566', '1970-01-01', 1, '2026-05-08 07:18:33', 154, '2026-05-08 05:56:00', 0, NULL, 1),
(29929, 'AswinKumar krishna moorthy', '4', '6383293021', '8056859859', 'ashwin053krish@gmail.com', '2003-05-28', 22, '2', '2', 'C. Krishna moorthy', 'mason', 25000.00, 0, 0.00, 20000.00, 'vellore', 'Vadapalani', '2605080018', '50', '1', 'upload_files/candidate_tracker/89289573879_AshwinKumarResume.pdf', NULL, '1', '2026-05-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-08 07:22:31', 154, '2026-05-09 02:47:44', 0, NULL, 1),
(29930, '', '0', '9087815432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605080019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-08 07:40:06', 0, NULL, 0, NULL, 1),
(29931, '', '0', '9551557030', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605080020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-08 07:47:12', 0, NULL, 0, NULL, 1),
(29932, '', '0', '6380576657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605080021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-08 07:57:46', 0, NULL, 0, NULL, 1),
(29933, '', '0', '9080684394', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605080022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-08 02:20:47', 0, NULL, 0, NULL, 1),
(29934, '', '0', '8637630855', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605080023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-08 02:26:06', 0, NULL, 0, NULL, 1),
(29935, '', '0', '9080211179', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2605090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', '0', '0', NULL, 1, '2026-05-09 03:50:14', 0, NULL, 0, NULL, 1),
(29936, 'Mahalakshmi A', '13', '9677830360', '', 'mahalakshmia20124@gmail.com', '2004-01-20', 22, '2', '2', 'Vasanthi', 'Daily Wages', 10000.00, 1, 0.00, 20000.00, 'Tiruppur', 'Chennai', '2605090002', '1', '1', 'upload_files/candidate_tracker/86473683935_MahalakshmiA.pdf', NULL, '1', '2026-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', 'Not Comfortable with the terms', '', 'H1018', '', '', '', '1970-01-01', 1, '2026-05-09 04:19:24', 154, '2026-05-09 02:38:38', 0, NULL, 1),
(29937, 'VENGAT KISHORE', '6', '6380205446', '7092112051', 'kishoreking357@gmail.com', '1997-05-09', 29, '2', '1', 'Subhashini', 'house wife', 25000.00, 2, 20000.00, 25000.00, '30/65 8th street new bethlehem ambur', 'Andavar street choolaimedu', '2605090003', '1', '2', 'upload_files/candidate_tracker/97444945023_CV.pdf', NULL, '1', '2026-05-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2026-05-09 05:12:04', 154, '2026-05-09 10:57:21', 0, NULL, 1),
(29938, 'Budati saranya', '6', '7981433636', '8309372397', 'saranyabudhati115@gmail.com', '2004-10-25', 21, '2', '2', 'Budati kamakshi', 'Employee', 20000.00, 1, 16000.00, 19000.00, 'Andhra Pradesh', 'Saidapet', '2605090004', '1', '2', 'upload_files/candidate_tracker/25538058598_BudatiSaranyaResumeUpdated.pdf', NULL, '3', '2026-05-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1028', '', '', '', '1970-01-01', 1, '2026-05-09 05:56:54', 154, '2026-05-09 11:49:19', 0, NULL, 1),
(29939, 'Krishnaveni G', '6', '7695836332', '', 'kv8011601@gmail.com', '2003-08-13', 22, '2', '2', 'Ganesan', 'Farmer', 12.00, 1, 0.00, 15000.00, 'Pudukottai', 'Chennai', '2605090005', '1', '1', 'upload_files/candidate_tracker/92819480906_KrishnaveniResume.pdf', NULL, '3', '2026-05-09', 0, '', '3', '59', '2026-05-11', 186000.00, '', '5', '1970-01-01', '2', 'Communication Ok fresher for insurance sales calling can give a try and check in training', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1028', '', 'P1287', 'C99176', '2026-05-11', 1, '2026-05-09 05:57:47', 60, '2026-05-09 05:47:18', 0, NULL, 1),
(29940, 'T Mohamed Ayub', '6', '9962331270', '9003195865', 'mohammedayub58920@gmail.com', '2011-05-09', 0, '2', '2', 'V A Tajuddin', 'Computer operator', 200000.00, 1, 0.00, 16000.00, 'No5/9a pm dargha main street triplicane Chennai', 'No5/9a pm dargha main street triplicane', '2605090006', '50', '1', 'upload_files/candidate_tracker/3388499997_MohammedAyubProfessionalResume.pdf', NULL, '1', '2026-05-09', 0, '', '5', '155', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'his voice pronouncation is not proper so will not suit for our roles.', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55864', '55566', '1970-01-01', 1, '2026-05-09 06:30:55', 154, '2026-05-09 02:42:07', 0, NULL, 1),
(29941, 'ISHWARYARAI R', '6', '9047047100', '8870326509', 'aasiyasiya509@gmail.com', '2004-11-04', 21, '2', '2', 'Ravanan K', 'Farmer', 10000.00, 3, 0.00, 14000.00, 'Virudhachalam', 'Perambur, chennai', '2605090007', '1', '1', 'upload_files/candidate_tracker/54448652151_ishuToPDF0905202612.18.22.pdf', NULL, '1', '2026-05-09', 0, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2026-05-09 06:37:52', 154, '2026-05-09 12:48:34', 0, NULL, 1),
(29942, 'Asin Taj A', '6', '9790745751', '9790838148', 'asintaj31@gmail.com', '2004-08-31', 21, '2', '2', 'Ahamed basha', 'Farmer', 10000.00, 2, 0.00, 14000.00, 'perambur , chennai', 'Perambur, chennai', '2605090008', '1', '1', 'upload_files/candidate_tracker/64509161941_AsinpdF0905202612.33.00.pdf', NULL, '1', '2026-05-09', 0, '', '5', '176', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '', '', '1970-01-01', 1, '2026-05-09 06:40:28', 154, '2026-05-09 02:43:21', 0, NULL, 1),
(29943, 'Joy princy', '6', '9952070300', '6374944226', 'joyprincyjoyprincy4@gmail.com', '2004-06-02', 21, '2', '2', 'Joseph francis. aj', 'Akr event manager', 40000.00, 1, 0.00, 18.00, 'Gugan street kodambakkam chennai', 'Gugan street kodambakkam chennai', '2605090009', '1', '1', 'upload_files/candidate_tracker/71845315478_JOYRES4.pdf', NULL, '1', '2026-05-09', 0, '', '3', '59', '2026-05-11', 204000.00, '', '5', '1970-01-01', '1', 'Communication Ok have exp for 5 months no proof documents need to check in training only', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1030', '', '55692', 'C99176', '2026-05-11', 1, '2026-05-09 06:47:26', 60, '2026-05-09 05:48:33', 0, NULL, 1),
(29944, 'J. Debora', '33', '6374184945', '8056183353', 'deboraj976@gmail.com', '2005-05-05', 21, '3', '2', 'S. Jabaraj', 'Daily wages', 10000.00, 1, 0.00, 17000.00, 'Pozhichalur, chennai', 'jayanthi nagar, pozhichalur, chennai', '2605090010', '', '1', 'upload_files/candidate_tracker/48702979748_CV2025121121345539.pdf', NULL, '1', '2026-05-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-05-09 06:54:52', 1, '2026-05-09 07:26:52', 0, NULL, 1),
(29945, 'Vishnuvaradhan.k', '11', '8667523366', '', 'vishnukarmagam@gmail.com', '2005-03-16', 21, '3', '2', 'Karmegam', 'Shop vendor', 10000.00, 1, 0.00, 25000.00, 'Poonamallee', 'Poonamallee', '2605090011', '', '1', 'upload_files/candidate_tracker/77194309622_vishnuresume85.pdf', NULL, '1', '2026-05-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', '', '', '', '', '1970-01-01', 1, '2026-05-09 06:55:49', 154, '2026-05-09 02:46:55', 0, NULL, 1),
(29946, 'Indhumathi S', '13', '8667635716', '7010294950', 'indhusankar669@gmail.com', '2004-06-02', 21, '3', '2', 'Mohana S', 'House wife', 150000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2605090012', '', '1', 'upload_files/candidate_tracker/16904623966_INDHUMATHIRESUME.pdf', NULL, '1', '2026-05-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', 'Rejected in apptitude', '', '', '', '', '', '1970-01-01', 1, '2026-05-09 09:31:13', 154, '2026-05-09 04:44:13', 0, NULL, 1),
(29947, 'Manojkumar S', '4', '8220769925', '8248365784', 'AS.MANOJKUMAR14@GMAIL.COM', '1996-01-09', 30, '6', '1', 'V Sujitha', 'House Wife', 9000.00, 1, 20000.00, 23000.00, 'Nanganallur, Chennai -600114', 'Nanganallur, Chennai -600114', '2605090013', '', '2', 'upload_files/candidate_tracker/17151164846_ManojkumarSResume.pdf', NULL, '1', '2026-05-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', '0', '0', NULL, 1, '2026-05-09 11:29:40', 1, '2026-05-09 12:12:53', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_candidate_tracker_educational_qualification`
--

CREATE TABLE `cw_candidate_tracker_educational_qualification` (
  `prime_candidate_tracker_educational_qualification_id` int NOT NULL,
  `prime_candidate_tracker_id` int DEFAULT '0',
  `standard` varchar(100) DEFAULT '0',
  `board_university` varchar(100) DEFAULT '',
  `std_medium` varchar(50) DEFAULT '',
  `degree` varchar(50) DEFAULT '',
  `year_of_passing` varchar(50) DEFAULT NULL,
  `percentage` decimal(15,2) DEFAULT '0.00',
  `work_location` varchar(50) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_candidate_tracker_educational_qualification`
--

INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 3, '3', 'SRM University', '', 'Bcom', '2020', 7.90, '', 1, '2020-09-03 10:49:53', 0, NULL, 0, NULL, 1),
(2, 7, '4', 'Pondicherry university ', '', 'MCA', '2020', 82.00, '', 1, '2020-09-03 10:51:44', 26, '2020-09-08 06:20:41', 0, NULL, 1),
(3, 8, '1', 'State board', '', '', '2015', 96.00, '', 1, '2020-09-03 10:56:23', 0, NULL, 0, NULL, 1),
(4, 8, '2', 'State board', '', '', '2017', 83.40, '', 1, '2020-09-03 10:56:50', 0, NULL, 0, NULL, 1),
(5, 4, '3', 'Thiruthangal Nadar college', '', 'B.com', '2019', 60.00, '', 1, '2020-09-03 10:57:07', 0, NULL, 0, NULL, 1),
(6, 8, '3', 'Bharathiar University', '', 'BSC COMPUTER SCIENCE', '2020', 78.40, '', 1, '2020-09-03 10:57:29', 0, NULL, 0, NULL, 1),
(7, 4, '2', 'Soundarpandi subbamma girls hr sec school', '', '', '2017', 57.00, '', 1, '2020-09-03 11:01:06', 0, NULL, 0, NULL, 1),
(8, 4, '1', 'Soundarpandi subbamma girls hr sec school', '', '', '2015', 60.00, '', 1, '2020-09-03 11:01:36', 0, NULL, 0, NULL, 1),
(9, 11, '4', 'madras university', '', 'mba', '2019', 60.00, '', 1, '2020-09-03 11:02:43', 0, NULL, 0, NULL, 1),
(10, 1, '2', 'C.GH.S.School', '', '', '2018', 72.00, '', 1, '2020-09-03 11:03:12', 0, NULL, 0, NULL, 1),
(11, 1, '1', 'C.G.H.S.School', '', '', '2016', 70.00, '', 1, '2020-09-03 11:03:58', 0, NULL, 0, NULL, 1),
(12, 2, '3', 'k.c.s kasi nadar college of Art and science', '', 'BA ', '2018', 54.00, '', 1, '2020-09-03 11:04:19', 0, NULL, 0, NULL, 1),
(13, 2, '2', 'vallal S.I alagar samy chettiyar higher secondary school', '', '', '2014', 54.00, '', 1, '2020-09-03 11:05:58', 0, NULL, 0, NULL, 1),
(14, 6, '3', 'St. Joesph\'s college', '', 'B. Com', '2018', 68.00, '', 1, '2020-09-03 11:06:58', 1, '2020-09-03 12:10:30', 0, NULL, 0),
(15, 2, '1', 'muruga dhanush kodi girls higher secondary school ', '', '', '2012', 74.00, '', 1, '2020-09-03 11:07:06', 0, NULL, 0, NULL, 1),
(16, 6, '3', 'St. Joesph\'s college', '', 'B. Com', '2018', 68.00, '', 1, '2020-09-03 11:07:42', 1, '2020-09-03 11:07:51', 0, NULL, 0),
(17, 5, '3', 'Medras University', '', 'BCA', '2017', 78.00, '', 1, '2020-09-03 11:15:26', 0, NULL, 0, NULL, 1),
(18, 9, '3', 'Anna University', '', 'B.Tech', '2020', 61.00, '', 1, '2020-09-03 11:17:09', 0, NULL, 0, NULL, 1),
(19, 12, '3', 'Madras university', '', 'Bsc computerscinece', '2020', 60.00, '', 1, '2020-09-03 11:25:03', 0, NULL, 0, NULL, 1),
(20, 13, '3', 'IETM', '', 'BCA', '2017', 79.60, '', 1, '2020-09-03 11:31:35', 0, NULL, 0, NULL, 1),
(21, 13, '2', 'State board', '', '', '2014', 56.40, '', 1, '2020-09-03 11:32:20', 0, NULL, 0, NULL, 1),
(22, 13, '1', 'State board', '', '', '2012', 59.60, '', 1, '2020-09-03 11:32:40', 0, NULL, 0, NULL, 1),
(23, 18, '3', 'Madras university', '', 'Bca(computer application', '2014', 62.00, '', 1, '2020-09-03 11:35:43', 0, NULL, 0, NULL, 1),
(24, 14, '3', 'Madras university ', '', 'BSC(statistic)', '2019', 70.00, '', 1, '2020-09-03 11:36:15', 0, NULL, 0, NULL, 1),
(25, 18, '2', 'State board', '', '', '2012', 55.00, '', 1, '2020-09-03 11:36:31', 0, NULL, 0, NULL, 1),
(26, 15, '1', 'Muruga Dhanush Kodi girls hr sec school', '', '', '2013', 74.00, '', 1, '2020-09-03 11:37:45', 0, NULL, 0, NULL, 1),
(27, 15, '2', 'Ballal S.I alagarasamy Chettiar hr sec school', '', '', '2015', 50.00, '', 1, '2020-09-03 11:39:03', 0, NULL, 0, NULL, 1),
(28, 15, '3', 'University of madars', '', 'B.A', '2018', 56.00, '', 1, '2020-09-03 11:39:52', 0, NULL, 0, NULL, 1),
(29, 17, '3', 'Sree sastha college', '', 'B. E(e. C. E)', '2015', 65.00, '', 1, '2020-09-03 11:41:26', 0, NULL, 0, NULL, 1),
(30, 17, '2', 'Don bosco school', '', '', '2011', 65.00, '', 1, '2020-09-03 11:41:51', 0, NULL, 0, NULL, 1),
(31, 17, '1', 'Don bosco school', '', '', '2009', 85.00, '', 1, '2020-09-03 11:42:23', 0, NULL, 0, NULL, 1),
(32, 22, '3', 'University of madras', '', 'B.sc Mathematics', '2008', 65.00, '', 1, '2020-09-03 11:46:06', 0, NULL, 0, NULL, 1),
(33, 19, '2', 'Board', '', '', '2015', 55.00, '', 1, '2020-09-03 11:47:13', 0, NULL, 0, NULL, 1),
(34, 19, '2', 'Board ', '', '', '2015', 55.00, '', 1, '2020-09-03 11:48:40', 0, NULL, 0, NULL, 1),
(35, 23, '3', 'Madras university', '', 'B. Com general', '2019', 50.00, '', 1, '2020-09-03 11:49:35', 0, NULL, 0, NULL, 1),
(36, 20, '3', 'University Madras university', '', 'bachelor of computer science', '2017', 70.00, '', 1, '2020-09-03 11:49:49', 0, NULL, 0, NULL, 1),
(37, 26, '3', 'DG Vaishnav College ', '', 'BA.Sociology ', '2020', 50.00, '', 1, '2020-09-03 12:03:37', 1, '2020-09-03 12:04:26', 0, NULL, 1),
(38, 27, '5', 'Bord of technical edugation', '', '', '2001', 70.00, '', 1, '2020-09-03 12:04:01', 0, NULL, 0, NULL, 1),
(39, 6, '3', 'Thiruvallur University', '', 'Bcom', '2018', 68.00, '', 1, '2020-09-03 12:07:57', 0, NULL, 0, NULL, 1),
(40, 27, '5', 'Bord of Tenical Education', '', 'BE discontinued', '2001', 70.00, '', 1, '2020-09-03 12:08:01', 0, NULL, 0, NULL, 1),
(41, 16, '3', 'Madras university', '', 'BA.sociology', '2020', 76.00, '', 1, '2020-09-03 12:13:12', 0, NULL, 0, NULL, 1),
(42, 22, '3', 'University of madras', '', 'B.sc', '2009', 65.00, '', 1, '2020-09-03 12:14:44', 0, NULL, 0, NULL, 1),
(43, 24, '3', 'Madras university ', '', 'B. Com', '2019', 55.00, '', 1, '2020-09-03 12:17:10', 0, NULL, 0, NULL, 1),
(44, 27, '5', 'Bord of tech nical education', '', 'BE discontinued', '2001', 70.00, '', 1, '2020-09-03 12:20:57', 0, NULL, 0, NULL, 1),
(45, 30, '3', 'Madras University', '', 'BA', '2019', 65.00, '', 1, '2020-09-03 12:23:55', 0, NULL, 0, NULL, 1),
(46, 25, '3', 'madras university', '', 'b.com', '2019', 60.00, '', 1, '2020-09-03 12:59:00', 0, NULL, 0, NULL, 1),
(47, 33, '3', 'SRM University', '', 'B.C.A ', '2018', 59.00, '', 1, '2020-09-03 02:12:09', 0, NULL, 0, NULL, 1),
(48, 32, '3', 'Annamalai University', '', 'Bca', '2020', 75.00, '', 1, '2020-09-03 02:24:29', 0, NULL, 0, NULL, 1),
(49, 40, '3', 'easc', '', 'bca', '2016', 80.00, '', 1, '2020-09-04 12:06:25', 0, NULL, 0, NULL, 1),
(50, 42, '1', 'State board govt. Of tamilnadu', '', '', '2015', 76.00, '', 1, '2020-09-04 10:16:45', 0, NULL, 0, NULL, 1),
(51, 42, '2', 'State board govt. of tamilnadu', '', '', '2017', 76.00, '', 1, '2020-09-04 10:17:41', 0, NULL, 0, NULL, 1),
(52, 42, '3', 'Thiruvallur University', '', 'Bcom(commerce)', '2020', 70.00, '', 1, '2020-09-04 10:19:06', 0, NULL, 0, NULL, 1),
(53, 44, '5', 'P.T.Lee c.N. polytechnic college', '', 'Ece', '2018', 74.00, '', 1, '2020-09-04 10:38:08', 0, NULL, 0, NULL, 1),
(54, 45, '5', '7hills polytechnic', '', 'Ece', '2018', 75.00, '', 1, '2020-09-04 10:44:48', 0, NULL, 0, NULL, 1),
(55, 46, '3', 'Valliammal college', '', 'Bsc', '2013', 75.00, '', 1, '2020-09-04 10:55:13', 0, NULL, 0, NULL, 1),
(56, 47, '3', 'Autonomous', '', 'Bsc maths', '2019', 87.00, '', 1, '2020-09-04 11:10:48', 0, NULL, 0, NULL, 1),
(57, 48, '3', 'madras universi ', '', 'b.com', '2017', 85.00, '', 1, '2020-09-04 11:11:17', 0, NULL, 0, NULL, 1),
(58, 47, '3', 'Autonomous', '', 'Bsc maths', '2019', 87.00, '', 1, '2020-09-04 11:11:58', 0, NULL, 0, NULL, 1),
(59, 50, '3', 'Alpha college of engineering', '', 'Cse', '2015', 68.00, '', 1, '2020-09-04 11:15:15', 0, NULL, 0, NULL, 1),
(60, 47, '3', 'Autonomous', '', 'Bsc maths', '2019', 87.00, '', 1, '2020-09-04 11:18:33', 0, NULL, 0, NULL, 1),
(61, 47, '3', 'Autonomous', '', 'Bsc maths', '2019', 87.00, '', 1, '2020-09-04 11:20:55', 0, NULL, 0, NULL, 1),
(62, 49, '3', 'Bharathiyar University ', '', 'BCA - Bachelor Of Computer Application', '2019', 44.00, '', 1, '2020-09-04 11:26:26', 0, NULL, 0, NULL, 1),
(63, 53, '1', 'Oxford matriculation school', '', '', '2010', 55.00, '', 1, '2020-09-04 11:32:48', 0, NULL, 0, NULL, 1),
(64, 57, '5', 'DOTE', '', '', '2012', 77.30, '', 1, '2020-09-04 11:32:51', 0, NULL, 0, NULL, 1),
(65, 57, '1', 'SSLC', '', '', '2009', 68.00, '', 1, '2020-09-04 11:33:26', 0, NULL, 0, NULL, 1),
(66, 60, '3', 'Madress University', '', 'BCA', '2020', 70.00, '', 1, '2020-09-04 11:33:42', 0, NULL, 0, NULL, 1),
(67, 58, '3', 'Madras University', '', 'BBA', '2010', 70.00, '', 1, '2020-09-04 11:37:12', 0, NULL, 0, NULL, 1),
(68, 56, '3', 'dr. m.g.r university', '', 'b.com general', '2020', 60.00, '', 1, '2020-09-04 11:37:19', 0, NULL, 0, NULL, 1),
(69, 54, '3', 'Dr.MGR University', '', 'B.com', '2020', 7.45, '', 1, '2020-09-04 11:39:02', 0, NULL, 0, NULL, 1),
(70, 55, '3', 'Loyola college ', '', 'B.com', '2020', 60.00, '', 1, '2020-09-04 11:45:19', 0, NULL, 0, NULL, 1),
(71, 56, '3', 'dr.m.g.r university', '', 'b.com general ', '2020', 60.00, '', 1, '2020-09-04 11:45:25', 0, NULL, 0, NULL, 1),
(72, 59, '3', 'Madras University', '', 'Bsc.Maths', '2018', 66.00, '', 1, '2020-09-04 11:49:19', 0, NULL, 0, NULL, 1),
(73, 52, '3', 'Madras University', '', 'BCA', '2020', 60.00, '', 1, '2020-09-04 12:00:05', 0, NULL, 0, NULL, 1),
(74, 58, '3', 'Madras University', '', 'BBA', '2010', 65.00, '', 1, '2020-09-04 12:00:40', 0, NULL, 0, NULL, 1),
(75, 52, '3', 'Madras University', '', 'BCA', '2020', 60.00, '', 1, '2020-09-04 12:01:24', 0, NULL, 0, NULL, 1),
(76, 58, '3', 'Madras', '', 'BBA', '2010', 65.00, '', 1, '2020-09-04 12:01:51', 0, NULL, 0, NULL, 1),
(77, 61, '3', 'Siet college', '', 'B.B.A', '2017', 65.00, '', 1, '2020-09-04 12:03:42', 0, NULL, 0, NULL, 1),
(78, 62, '3', 'Meenakshi university', '', 'BSC.computer science', '2018', 67.00, '', 1, '2020-09-04 12:15:17', 0, NULL, 0, NULL, 1),
(79, 63, '3', 'Madras University ', '', 'BSC zoology', '2015', 75.00, '', 1, '2020-09-04 12:38:39', 0, NULL, 0, NULL, 1),
(80, 63, '3', 'Madras  University ', '', 'Bsc Zoology ', '2015', 75.00, '', 1, '2020-09-04 12:40:42', 0, NULL, 0, NULL, 1),
(81, 64, '5', 'Taylor\'s university', '', 'Diploma', '2016', 86.00, '', 1, '2020-09-04 12:46:08', 0, NULL, 0, NULL, 1),
(82, 65, '3', 'Anna University', '', 'Be Mechatronics Engineering', '2017', 73.00, '', 1, '2020-09-04 01:04:09', 0, NULL, 0, NULL, 1),
(83, 68, '3', 'Test', '', 'Test', '2020', 65.00, '', 1, '2020-09-04 01:13:45', 0, NULL, 0, NULL, 1),
(84, 66, '4', 'Anna university ', '', 'MBA', '2019', 68.00, '', 1, '2020-09-04 01:20:17', 0, NULL, 0, NULL, 1),
(85, 69, '4', 'Vels University', '', 'Mba lsm', '2020', 68.00, '', 1, '2020-09-04 01:25:52', 0, NULL, 0, NULL, 1),
(86, 67, '3', 'Gurunanak college', '', 'B.com', '2018', 78.00, '', 1, '2020-09-04 01:27:33', 0, NULL, 0, NULL, 1),
(87, 70, '3', 'Periyar University', '', 'BCA', '2018', 76.00, '', 1, '2020-09-04 01:52:10', 0, NULL, 0, NULL, 1),
(88, 71, '4', 'Madras university', '', 'MBA', '2014', 65.00, '', 1, '2020-09-04 01:54:28', 0, NULL, 0, NULL, 1),
(89, 58, '3', 'Madras University', '', 'BBA', '2010', 65.00, '', 1, '2020-09-04 02:05:51', 0, NULL, 0, NULL, 1),
(90, 58, '3', 'Madras University', '', 'BBA', '2010', 65.00, '', 1, '2020-09-04 02:05:52', 0, NULL, 0, NULL, 1),
(91, 72, '5', 'brilliant institute', '', 'ITI', '2015', 70.00, '', 1, '2020-09-04 02:46:00', 0, NULL, 0, NULL, 1),
(92, 73, '5', 'Venkateswara polytechnic college', '', 'DCE', '2015', 80.00, '', 1, '2020-09-04 02:46:04', 0, NULL, 0, NULL, 1),
(93, 74, '3', 'Test', '', 'Test', '2020', 54.00, '', 1, '2020-09-04 03:15:48', 0, NULL, 0, NULL, 1),
(94, 59, '3', 'Madras University', '', 'Bsc', '2018', 70.00, '', 1, '2020-09-04 03:42:27', 0, NULL, 0, NULL, 1),
(95, 75, '3', 'Madras University', '', 'B.sc', '2019', 76.00, '', 1, '2020-09-04 03:42:35', 0, NULL, 0, NULL, 1),
(96, 72, '5', 'brilliant institute', '', 'ITI', '2015', 70.00, '', 1, '2020-09-04 04:01:39', 0, NULL, 0, NULL, 1),
(97, 76, '5', 'Sri Venkateswara polytechnic college', '', 'DCE', '2015', 80.00, '', 1, '2020-09-04 04:02:19', 0, NULL, 0, NULL, 1),
(98, 72, '5', 'brilliant institute', '', 'ITI', '2015', 70.00, '', 1, '2020-09-04 04:04:52', 0, NULL, 0, NULL, 1),
(99, 73, '5', 'Sri venkateswara polytechnic college', '', 'DCE', '2015', 80.00, '', 1, '2020-09-04 04:10:16', 0, NULL, 0, NULL, 1),
(100, 72, '5', 'brilliant institute', '', 'ITI', '2015', 70.00, '', 1, '2020-09-04 04:13:11', 0, NULL, 0, NULL, 1),
(101, 77, '4', 'Madras University', '', 'MA', '2012', 72.00, '', 1, '2020-09-04 05:24:18', 0, NULL, 0, NULL, 1),
(102, 81, '3', 'Dr.Mgr educational and Research Institute', '', 'BCA', '2020', 72.00, '', 1, '2020-09-05 09:35:42', 0, NULL, 0, NULL, 1),
(103, 85, '3', 'Dr.Mgr university', '', 'BCA', '2019', 7.40, '', 1, '2020-09-05 11:11:39', 0, NULL, 0, NULL, 1),
(104, 86, '4', 'Bharathidasan University', '', 'M.SC.Biochemistry', '2013', 76.00, '', 1, '2020-09-05 11:32:43', 0, NULL, 0, NULL, 1),
(105, 88, '3', 'Ug', '', 'Bca', '2016', 76.00, '', 1, '2020-09-05 11:52:21', 0, NULL, 0, NULL, 1),
(106, 87, '2', 'Anna university', '', '', '2012', 80.00, '', 1, '2020-09-05 11:55:45', 0, NULL, 0, NULL, 1),
(107, 90, '4', 'Pg', '', 'MCA', '2016', 71.00, '', 1, '2020-09-05 12:10:11', 0, NULL, 0, NULL, 1),
(108, 91, '4', 'madras', '', 'b.a', '2009', 90.00, '', 1, '2020-09-05 12:15:05', 0, NULL, 0, NULL, 1),
(109, 93, '1', 'anna university', '', '', '2015', 60.00, '', 1, '2020-09-05 12:28:52', 0, NULL, 0, NULL, 1),
(110, 89, '1', 'sslc', '', '', '2020', 40.00, '', 1, '2020-09-05 01:21:28', 0, NULL, 0, NULL, 1),
(111, 29, '2', 'anna univercity', '', '', '2015', 70.00, '', 1, '2020-09-05 01:26:05', 0, NULL, 0, NULL, 1),
(112, 95, '3', 'ug', '', 'bca', '2016', 56.00, '', 1, '2020-09-05 04:18:45', 0, NULL, 0, NULL, 1),
(113, 96, '4', 'Anna university', '', 'MBA', '2020', 8.06, '', 1, '2020-09-05 04:20:59', 0, NULL, 0, NULL, 1),
(114, 98, '3', 'ug', '', 'bca', '2016', 65.00, '', 1, '2020-09-05 05:07:22', 0, NULL, 0, NULL, 1),
(115, 82, '3', 'Medras ', '', 'Bsc', '2019', 60.00, '', 1, '2020-09-05 06:21:25', 0, NULL, 0, NULL, 1),
(116, 100, '3', 'valliammai enginering college', '', 'b.e.civil', '2018', 72.00, '', 1, '2020-09-05 06:29:34', 0, NULL, 0, NULL, 1),
(117, 104, '4', 'anna university', '', 'mba', '2020', 65.00, '', 1, '2020-09-05 09:25:41', 0, NULL, 0, NULL, 1),
(118, 105, '3', 'ann', '', 'b.e', '2015', 70.00, '', 1, '2020-09-06 11:20:14', 0, NULL, 0, NULL, 1),
(119, 106, '3', 'Vel tech ranga sanaku arts college ', '', 'Bsc(computer science) ', '2018', 70.00, '', 1, '2020-09-06 07:10:30', 0, NULL, 0, NULL, 1),
(120, 106, '4', 'DG VAISHNAV COLLEGE ', '', 'MSC(COMPUTER SCIENCE) ', '2020', 71.08, '', 1, '2020-09-06 07:11:27', 0, NULL, 0, NULL, 1),
(121, 106, '1', 'DRBCC higher secondary school ', '', '', '2013', 84.00, '', 1, '2020-09-06 07:12:38', 0, NULL, 0, NULL, 1),
(122, 106, '2', 'DRBCC higher secondary school ', '', '', '2015', 61.00, '', 1, '2020-09-06 07:13:01', 0, NULL, 0, NULL, 1),
(123, 107, '3', 'Loyola College', '', 'B A ( Economics)', '2019', 63.00, '', 1, '2020-09-06 07:48:12', 0, NULL, 0, NULL, 1),
(124, 109, '3', 'Thiruvallur University', '', 'Bsc computer science', '2019', 40.00, '', 1, '2020-09-07 10:41:07', 0, NULL, 0, NULL, 1),
(125, 110, '4', 'madras university', '', 'm.com', '2016', 60.00, '', 1, '2020-09-07 10:46:07', 0, NULL, 0, NULL, 1),
(126, 110, '4', 'madras university', '', 'm.com', '2016', 50.00, '', 1, '2020-09-07 10:46:52', 0, NULL, 0, NULL, 1),
(127, 112, '3', 'Anna university', '', 'BE CSE', '2017', 69.00, '', 1, '2020-09-07 10:57:26', 0, NULL, 0, NULL, 1),
(128, 111, '3', 'ANNA UNIVERSITY', '', 'B.E', '2011', 69.00, '', 1, '2020-09-07 11:09:59', 0, NULL, 0, NULL, 1),
(129, 111, '2', 'Matriculation', '', '', '2007', 59.00, '', 1, '2020-09-07 11:10:36', 0, NULL, 0, NULL, 1),
(130, 111, '1', 'CBSC', '', '', '2005', 53.00, '', 1, '2020-09-07 11:11:55', 0, NULL, 0, NULL, 1),
(131, 113, '3', 'ramakrishna mission vivekananda college mylapore', '', 'b.com', '2018', 64.00, '', 1, '2020-09-07 11:13:06', 0, NULL, 0, NULL, 1),
(132, 113, '2', 'assisi matriculation higher secondary school ramapuram', '', '', '2015', 86.00, '', 1, '2020-09-07 11:13:50', 0, NULL, 0, NULL, 1),
(133, 108, '3', 'Anna University ', '', 'BE Mechanical Engineering ', '2019', 60.00, '', 1, '2020-09-07 11:14:21', 0, NULL, 0, NULL, 1),
(134, 113, '1', 'assisi matriculation higher secondary school ramapuram', '', '', '2013', 75.00, '', 1, '2020-09-07 11:14:37', 0, NULL, 0, NULL, 1),
(135, 116, '3', 'Thiruvalluvar university ', '', 'BCA', '2018', 76.00, '', 1, '2020-09-07 11:34:37', 0, NULL, 0, NULL, 1),
(136, 118, '3', 'Madras University', '', 'B. com', '2014', 70.00, '', 1, '2020-09-07 11:41:36', 0, NULL, 0, NULL, 1),
(137, 115, '3', 'The new college', '', 'B.com ', '2020', 73.00, '', 1, '2020-09-07 11:43:40', 0, NULL, 0, NULL, 1),
(138, 114, '3', 'Thiruvalluvar university', '', 'B Sc -PHYSICS', '2016', 62.00, '', 1, '2020-09-07 11:46:05', 0, NULL, 0, NULL, 1),
(139, 117, '3', 'Madras University', '', 'B.com general', '2014', 70.00, '', 1, '2020-09-07 11:56:38', 0, NULL, 0, NULL, 1),
(140, 83, '3', 'madras university', '', 'B.com general ', '2019', 60.00, '', 1, '2020-09-07 01:10:32', 0, NULL, 0, NULL, 1),
(141, 120, '4', 'BIHER ', '', 'MBA', '2019', 75.00, '', 1, '2020-09-07 01:25:06', 0, NULL, 0, NULL, 1),
(142, 123, '4', 'University of Mysore ', '', 'MBA', '2009', 55.00, '', 1, '2020-09-07 01:30:31', 0, NULL, 0, NULL, 1),
(143, 121, '3', 'MEDRAS UNIVERSITY', '', 'B.COM', '2013', 55.00, '', 1, '2020-09-07 01:36:34', 0, NULL, 0, NULL, 1),
(144, 122, '3', 'Madras univercity', '', 'B.com', '2016', 75.00, '', 1, '2020-09-07 01:44:59', 0, NULL, 0, NULL, 1),
(145, 124, '3', 'university of madras', '', 'B.COM', '2015', 60.00, '', 1, '2020-09-07 01:54:57', 0, NULL, 0, NULL, 1),
(146, 125, '3', 'University of Madras ', '', 'BA history', '2015', 56.00, '', 1, '2020-09-07 02:27:58', 0, NULL, 0, NULL, 1),
(147, 125, '3', 'Madras University', '', 'BA history ', '2015', 56.00, '', 1, '2020-09-07 02:34:48', 0, NULL, 0, NULL, 1),
(148, 127, '3', 'Madras University', '', 'Bsc computer science', '2018', 65.00, '', 1, '2020-09-07 03:36:46', 0, NULL, 0, NULL, 1),
(149, 129, '3', 'srm', '', 'b.com', '2020', 5.30, '', 1, '2020-09-07 03:38:11', 0, NULL, 0, NULL, 1),
(150, 128, '3', 'University of madras ', '', 'B. Com(bank management) ', '2020', 60.00, '', 1, '2020-09-07 03:38:21', 0, NULL, 0, NULL, 1),
(151, 129, '2', 'maria', '', '', '2016', 88.00, '', 1, '2020-09-07 03:38:58', 0, NULL, 0, NULL, 1),
(152, 129, '1', 'maria', '', '', '2014', 60.00, '', 1, '2020-09-07 03:39:20', 0, NULL, 0, NULL, 1),
(153, 130, '3', 'Ramakrishna mission Vivekananda College', '', 'B.com', '2019', 71.00, '', 1, '2020-09-07 03:43:24', 0, NULL, 0, NULL, 1),
(154, 131, '3', 'SRM Arts and science collage ', '', 'B. Com', '2015', 75.00, '', 1, '2020-09-07 03:46:38', 0, NULL, 0, NULL, 1),
(155, 132, '4', 'Bharath University ', '', 'MBA', '2019', 64.00, '', 1, '2020-09-07 04:01:33', 0, NULL, 0, NULL, 1),
(156, 135, '3', 'Anna University', '', 'BE', '2017', 71.00, '', 1, '2020-09-07 04:48:45', 0, NULL, 0, NULL, 1),
(157, 134, '3', 'Anna university ', '', 'BE-CSE ', '2019', 6.00, '', 1, '2020-09-07 04:51:41', 0, NULL, 0, NULL, 1),
(158, 136, '3', 'Jayaram college Of Engg and technology,trichy', '', 'BE-ECE', '2016', 6.00, '', 1, '2020-09-07 05:01:46', 0, NULL, 0, NULL, 1),
(159, 138, '3', 'Anna university', '', 'B. E ECE', '2014', 65.00, '', 1, '2020-09-07 05:02:23', 0, NULL, 0, NULL, 1),
(160, 138, '2', 'State board', '', '', '2010', 64.00, '', 1, '2020-09-07 05:02:47', 0, NULL, 0, NULL, 1),
(161, 138, '1', 'State board', '', '', '2008', 60.00, '', 1, '2020-09-07 05:03:09', 0, NULL, 0, NULL, 1),
(162, 125, '3', 'madras university', '', 'BA history ', '2015', 56.00, '', 1, '2020-09-07 05:13:48', 0, NULL, 0, NULL, 1),
(163, 139, '3', 'Anna University', '', 'B.E(CSE)', '2019', 5.99, '', 1, '2020-09-07 05:21:38', 0, NULL, 0, NULL, 1),
(164, 140, '3', 'Madras university ', '', 'B. SC computer science ', '2012', 50.00, '', 1, '2020-09-07 05:28:06', 0, NULL, 0, NULL, 1),
(165, 141, '3', 'Madras university', '', 'B. C. A', '2011', 70.00, '', 1, '2020-09-07 05:35:22', 0, NULL, 0, NULL, 1),
(166, 143, '3', 'University', '', 'B.com', '2020', 85.00, '', 1, '2020-09-07 06:17:00', 0, NULL, 0, NULL, 1),
(167, 143, '3', 'University', '', 'B. Com', '2020', 85.00, '', 1, '2020-09-07 06:17:34', 0, NULL, 0, NULL, 1),
(168, 144, '3', 'GuruNanak college', '', 'B.Com', '2020', 64.00, '', 1, '2020-09-07 06:23:44', 0, NULL, 0, NULL, 1),
(169, 144, '3', 'GuruNanak College', '', 'B.Com', '2020', 64.00, '', 1, '2020-09-07 06:31:00', 1, '2020-09-07 06:31:20', 0, NULL, 0),
(170, 145, '5', 'Dhatchayani ', '', 'Mechanical ', '2011', 95.00, '', 1, '2020-09-07 06:40:34', 0, NULL, 0, NULL, 1),
(171, 146, '3', 'College', '', 'B.tech IT', '2015', 64.00, '', 1, '2020-09-07 06:45:53', 0, NULL, 0, NULL, 1),
(172, 148, '3', 'Madras university', '', 'Bsc. Computer science', '2016', 50.00, '', 1, '2020-09-07 07:19:29', 0, NULL, 0, NULL, 1),
(173, 142, '3', 'Bharathidasan University', '', 'BA.ecomomic', '2018', 68.00, '', 1, '2020-09-07 08:45:18', 0, NULL, 0, NULL, 1),
(174, 142, '3', 'Bharathidasan University', '', 'BA . economic', '2018', 68.00, '', 1, '2020-09-07 08:46:55', 0, NULL, 0, NULL, 1),
(175, 137, '3', 'University of madras', '', 'B.com(bm)', '2020', 58.00, '', 1, '2020-09-08 09:23:48', 0, NULL, 0, NULL, 1),
(176, 150, '3', 'Board', '', 'B.e Civil engineering', '2018', 64.00, '', 1, '2020-09-08 09:33:17', 0, NULL, 0, NULL, 1),
(177, 149, '3', 'University of madras', '', 'B.com', '2020', 55.00, '', 1, '2020-09-08 09:46:23', 0, NULL, 0, NULL, 1),
(178, 155, '4', 'Anna University', '', 'Master of business administration', '2020', 66.00, '', 1, '2020-09-08 11:17:04', 0, NULL, 0, NULL, 1),
(179, 157, '3', 'Madras University', '', 'BBA', '2018', 70.00, '', 1, '2020-09-08 11:24:13', 0, NULL, 0, NULL, 1),
(180, 158, '3', 'MGKVP', '', 'B.com', '2013', 60.50, '', 1, '2020-09-08 12:26:24', 0, NULL, 0, NULL, 1),
(181, 159, '4', 'Madras university', '', 'M.Com', '2019', 68.00, '', 1, '2020-09-08 01:11:42', 0, NULL, 0, NULL, 1),
(182, 160, '3', 'Smk Fomra Institute of technology', '', 'BE/COMPUTER SCIENCE', '2020', 62.00, '', 1, '2020-09-08 02:55:16', 0, NULL, 0, NULL, 1),
(183, 160, '1', 'Jai gopal garodia Hindu Vidyalaya matric hr sec school', '', '', '2016', 77.00, '', 1, '2020-09-08 02:57:07', 0, NULL, 0, NULL, 1),
(184, 160, '2', 'Oxford matric hr sec school', '', '', '2014', 86.00, '', 1, '2020-09-08 02:57:39', 0, NULL, 0, NULL, 1),
(185, 101, '3', 'Madras university ', '', 'B. C. A', '2015', 77.00, '', 1, '2020-09-08 02:59:52', 0, NULL, 0, NULL, 1),
(186, 161, '3', 'Thiruvalluvar university', '', 'BCA', '2019', 76.00, '', 1, '2020-09-08 03:06:53', 0, NULL, 0, NULL, 1),
(187, 101, '3', 'Madras university ', '', 'B.C.A', '2015', 77.00, '', 1, '2020-09-08 03:16:01', 0, NULL, 0, NULL, 1),
(188, 162, '3', 'delhi university', '', 'BA ', '2013', 49.00, '', 1, '2020-09-08 03:30:42', 0, NULL, 0, NULL, 1),
(189, 163, '3', 'Madras University', '', 'Bsc computer science', '2019', 80.00, '', 1, '2020-09-08 04:13:59', 0, NULL, 0, NULL, 1),
(190, 80, '1', 'stateboard', '', '', '2000', 44.00, '', 1, '2020-09-08 04:43:40', 0, NULL, 0, NULL, 1),
(191, 165, '3', 'St.Thomas College Of Arts and Science', '', 'B.com', '2019', 68.86, '', 1, '2020-09-08 05:46:25', 0, NULL, 0, NULL, 1),
(192, 167, '3', 'Baharathidasan university ', '', 'B.com ( CA)', '2013', 82.00, '', 1, '2020-09-08 06:05:59', 0, NULL, 0, NULL, 1),
(193, 169, '4', 'Madras university', '', 'MA business economics', '2019', 70.00, '', 1, '2020-09-08 06:14:17', 0, NULL, 0, NULL, 1),
(194, 166, '4', 'madras university', '', 'm.a business economics', '2019', 65.00, '', 1, '2020-09-08 07:09:35', 0, NULL, 0, NULL, 1),
(195, 166, '3', 'madras university', '', 'b.a economic', '2017', 70.00, '', 1, '2020-09-08 07:10:59', 0, NULL, 0, NULL, 1),
(196, 166, '2', 'state board', '', '', '2014', 75.00, '', 1, '2020-09-08 07:11:40', 0, NULL, 0, NULL, 1),
(197, 166, '1', 'state board', '', '', '2012', 63.00, '', 1, '2020-09-08 07:12:15', 0, NULL, 0, NULL, 1),
(198, 170, '3', 'Anna university', '', 'BE-EEE', '2020', 7.13, '', 1, '2020-09-08 07:32:00', 0, NULL, 0, NULL, 1),
(199, 171, '3', 'Anna University', '', 'B.tech', '2020', 6.47, '', 1, '2020-09-08 08:29:18', 0, NULL, 0, NULL, 1),
(200, 172, '3', 'University of madras', '', 'B.com', '2018', 59.00, '', 1, '2020-09-08 09:02:15', 0, NULL, 0, NULL, 1),
(201, 173, '3', 'Madras university ', '', 'B.sc(computer science)', '2018', 72.00, '', 1, '2020-09-08 10:49:30', 0, NULL, 0, NULL, 1),
(202, 174, '3', 'Anna university', '', 'B.E', '2019', 68.00, '', 1, '2020-09-09 12:19:43', 0, NULL, 0, NULL, 1),
(203, 175, '5', 'Takkababa ', '', 'EE', '2012', 25.00, '', 1, '2020-09-09 10:13:03', 0, NULL, 0, NULL, 1),
(204, 180, '3', 'dr.mgr univesity', '', 'b.com ', '2020', 69.00, '', 1, '2020-09-09 10:49:01', 0, NULL, 0, NULL, 1),
(205, 178, '3', 'Thiruvalluvar University', '', 'B .A History', '2019', 69.00, '', 1, '2020-09-09 10:55:36', 0, NULL, 0, NULL, 1),
(206, 184, '3', 'Sree sastha ', '', 'Bachelor of engineering', '2019', 67.00, '', 1, '2020-09-09 10:58:17', 0, NULL, 0, NULL, 1),
(207, 179, '3', 'Madras university', '', 'B. Sc maths', '2018', 62.00, '', 1, '2020-09-09 10:59:45', 0, NULL, 0, NULL, 1),
(208, 182, '3', 'Madras University', '', 'B.sc', '2019', 60.00, '', 1, '2020-09-09 11:00:25', 0, NULL, 0, NULL, 1),
(209, 181, '1', 'State board', '', '', '2014', 74.00, '', 1, '2020-09-09 11:03:42', 0, NULL, 0, NULL, 1),
(210, 181, '2', 'State board', '', '', '2016', 76.00, '', 1, '2020-09-09 11:04:06', 0, NULL, 0, NULL, 1),
(211, 181, '3', 'Bharadhidhasan university', '', 'B.Com', '2019', 58.00, '', 1, '2020-09-09 11:04:42', 0, NULL, 0, NULL, 1),
(212, 187, '3', 'MGR JANAKI COLLEGE', '', 'BBA', '2018', 79.00, '', 1, '2020-09-09 11:14:37', 0, NULL, 0, NULL, 1),
(213, 189, '3', 'Periyar university', '', 'B.sc.chemistry', '2019', 60.00, '', 1, '2020-09-09 11:25:33', 0, NULL, 0, NULL, 1),
(214, 188, '3', 'Anna university', '', 'B.E', '2017', 75.00, '', 1, '2020-09-09 12:10:06', 0, NULL, 0, NULL, 1),
(215, 192, '3', 'Tamilnadu Open University', '', 'BBA', '2019', 78.00, '', 1, '2020-09-09 12:34:21', 0, NULL, 0, NULL, 1),
(216, 194, '3', 'Board', '', 'B.com(accounting and finance)', '2019', 67.00, '', 1, '2020-09-09 12:59:26', 0, NULL, 0, NULL, 1),
(217, 193, '3', 'vels university', '', 'b.com ca', '2018', 52.00, '', 1, '2020-09-09 01:01:48', 0, NULL, 0, NULL, 1),
(218, 193, '2', 'don bosco hr sec school', '', '', '2015', 47.00, '', 1, '2020-09-09 01:02:45', 1, '2020-09-09 01:03:12', 0, NULL, 0),
(219, 159, '4', 'Madras university', '', 'M.Com', '2019', 68.00, '', 1, '2020-09-09 01:11:41', 0, NULL, 0, NULL, 1),
(220, 191, '3', 'anna university ', '', 'b e   c s e', '2019', 56.00, '', 1, '2020-09-09 01:25:22', 0, NULL, 0, NULL, 1),
(221, 195, '3', 'Thiruvalluvar university', '', 'Bsc', '2010', 56.00, '', 1, '2020-09-09 02:12:48', 0, NULL, 0, NULL, 1),
(222, 195, '2', 'State board', '', '', '2007', 60.00, '', 1, '2020-09-09 02:13:15', 0, NULL, 0, NULL, 1),
(223, 195, '1', 'State board', '', '', '2005', 60.00, '', 1, '2020-09-09 02:13:42', 0, NULL, 0, NULL, 1),
(224, 159, '4', 'Madras university', '', 'M.Com', '2019', 68.00, '', 1, '2020-09-09 02:16:44', 0, NULL, 0, NULL, 1),
(225, 196, '3', 'Madras', '', 'Bsc', '2018', 60.00, '', 1, '2020-09-09 02:19:42', 0, NULL, 0, NULL, 1),
(226, 200, '5', 'Hiet polytechnic college', '', 'D.E.C.E.', '2018', 67.00, '', 1, '2020-09-09 04:33:09', 0, NULL, 0, NULL, 1),
(227, 203, '3', 'University of Madras', '', 'BBA', '2016', 65.00, '', 1, '2020-09-09 05:16:13', 0, NULL, 0, NULL, 1),
(228, 205, '3', 'University of Madras', '', 'BBA', '2016', 65.00, '', 1, '2020-09-09 05:21:23', 0, NULL, 0, NULL, 1),
(229, 208, '3', 'KSR COLLEGE OF ARTS AND SCIENCE, TRICHANGODE', '', 'B. Sc(computer science) ', '2016', 65.00, '', 1, '2020-09-09 06:07:10', 0, NULL, 0, NULL, 1),
(230, 164, '5', 'Dote', '', 'DEEE', '2017', 73.00, '', 1, '2020-09-09 06:30:18', 0, NULL, 0, NULL, 1),
(231, 211, '3', 'Loyola institute of technology', '', 'B.tech', '2020', 6.80, '', 1, '2020-09-09 06:57:19', 1, '2020-09-09 07:00:46', 0, NULL, 1),
(232, 211, '2', 'Jaigopal garodia national higher secondary school', '', '', '2016', 62.00, '', 1, '2020-09-09 06:57:51', 0, NULL, 0, NULL, 1),
(233, 211, '1', 'Cantonment board high school', '', '', '2014', 90.00, '', 1, '2020-09-09 06:58:21', 0, NULL, 0, NULL, 1),
(234, 212, '3', 'Bharathiyar university ', '', 'Bsc catering science hotel management', '2015', 89.00, '', 1, '2020-09-09 07:05:33', 0, NULL, 0, NULL, 1),
(235, 214, '3', 'Stateboard', '', 'B.com( General)', '2018', 60.00, '', 1, '2020-09-09 07:36:06', 0, NULL, 0, NULL, 1),
(236, 199, '3', 'Jbas college for women', '', 'B. Com', '2012', 57.00, '', 1, '2020-09-09 07:39:10', 0, NULL, 0, NULL, 1),
(237, 213, '4', 'Kamaraj University', '', 'Master of computer applications', '2019', 71.00, '', 1, '2020-09-09 07:53:01', 0, NULL, 0, NULL, 1),
(238, 215, '4', 'MK University', '', 'MCA', '2019', 71.00, '', 1, '2020-09-09 07:56:18', 0, NULL, 0, NULL, 1),
(239, 217, '3', 'Madras University', '', 'BBA', '2020', 60.00, '', 1, '2020-09-09 09:05:47', 0, NULL, 0, NULL, 1),
(240, 219, '3', 'ug', '', 'bca', '2016', 76.00, '', 1, '2020-09-10 09:50:16', 0, NULL, 0, NULL, 1),
(241, 220, '4', 'pg', '', 'mca', '2016', 84.00, '', 1, '2020-09-10 10:08:35', 0, NULL, 0, NULL, 1),
(242, 221, '3', 'Vels University', '', 'Bsc computer science', '2014', 60.00, '', 1, '2020-09-10 10:33:30', 0, NULL, 0, NULL, 1),
(243, 222, '3', 'Db Jain college', '', 'Bcom', '2020', 65.00, '', 1, '2020-09-10 10:46:27', 0, NULL, 0, NULL, 1),
(244, 226, '3', 'Dhanraj Baid Jain College', '', 'B.Com(G)', '2017', 59.00, '', 1, '2020-09-10 10:57:46', 0, NULL, 0, NULL, 1),
(245, 223, '3', 'Madras University', '', 'B.com(BM)', '2019', 62.60, '', 1, '2020-09-10 11:04:50', 0, NULL, 0, NULL, 1),
(246, 224, '3', 'Madras  university', '', 'B. Com bm', '2019', 64.00, '', 1, '2020-09-10 11:04:57', 0, NULL, 0, NULL, 1),
(247, 225, '3', 'Madras University', '', 'B. B. A', '2018', 60.00, '', 1, '2020-09-10 11:05:19', 0, NULL, 0, NULL, 1),
(248, 231, '2', 'start Board', '', '', '2013', 58.00, '', 1, '2020-09-10 12:57:25', 0, NULL, 0, NULL, 1),
(249, 236, '3', 'anna university', '', 'be', '2014', 62.00, '', 1, '2020-09-10 01:05:44', 0, NULL, 0, NULL, 1),
(250, 237, '4', 'vit university', '', 'm.tech software engineering integrated', '2020', 7.06, '', 1, '2020-09-10 01:16:37', 0, NULL, 0, NULL, 1),
(251, 240, '1', 'State Board', '', '', '2011', 73.00, '', 1, '2020-09-10 01:39:57', 0, NULL, 0, NULL, 1),
(252, 240, '2', 'State Board', '', '', '2013', 66.00, '', 1, '2020-09-10 01:40:43', 0, NULL, 0, NULL, 1),
(253, 240, '3', 'Thiruvalluvar university', '', 'BA English', '2017', 58.00, '', 1, '2020-09-10 01:41:43', 0, NULL, 0, NULL, 1),
(254, 240, '4', 'Anna university', '', 'MBA (HR) ', '2019', 70.00, '', 1, '2020-09-10 01:42:37', 0, NULL, 0, NULL, 1),
(255, 244, '3', 'Meenakshi college of engineering', '', 'B-Tech IT', '2020', 7.00, '', 1, '2020-09-10 02:21:06', 0, NULL, 0, NULL, 1),
(256, 243, '1', 'Andhra Pradesh board of education', '', '', '2000', 53.00, '', 1, '2020-09-10 02:34:36', 0, NULL, 0, NULL, 1),
(257, 243, '3', 'Tamilnadu open University', '', 'Bsc Psychology', '2020', 0.00, '', 1, '2020-09-10 02:36:18', 0, NULL, 0, NULL, 1),
(258, 245, '3', 'Anna University', '', 'B.E', '2019', 63.00, '', 1, '2020-09-10 02:46:10', 0, NULL, 0, NULL, 1),
(259, 239, '3', 'anna university ', '', 'bachelor of engineering in computer science', '2019', 60.00, '', 1, '2020-09-10 02:58:35', 0, NULL, 0, NULL, 1),
(260, 249, '3', 'Agni college of technology', '', 'B.E Ece', '2018', 63.00, '', 1, '2020-09-10 03:48:01', 0, NULL, 0, NULL, 1),
(261, 249, '2', 'Peniel.Mat.Hr.Sec.School', '', '', '2014', 84.00, '', 1, '2020-09-10 03:48:34', 0, NULL, 0, NULL, 1),
(262, 249, '1', 'Peniel.Mat.Hr.Sec.School', '', '', '2012', 92.00, '', 1, '2020-09-10 03:49:00', 0, NULL, 0, NULL, 1),
(263, 248, '2', 'TNBSE', '', '', '2011', 52.00, '', 1, '2020-09-10 03:50:01', 0, NULL, 0, NULL, 1),
(264, 248, '3', 'Madras university', '', 'B. Com', '2014', 58.00, '', 1, '2020-09-10 03:51:03', 0, NULL, 0, NULL, 1),
(265, 238, '3', 'Bharathidhasan ', '', 'BBA', '2018', 65.00, '', 1, '2020-09-10 04:32:40', 0, NULL, 0, NULL, 1),
(266, 250, '3', 'bca', '', 'bca', '2016', 76.00, '', 1, '2020-09-10 04:33:42', 0, NULL, 0, NULL, 1),
(267, 252, '3', 'Madras university', '', 'B. Com CS', '2018', 83.75, '', 1, '2020-09-10 07:26:02', 0, NULL, 0, NULL, 1),
(268, 251, '3', 'Madras university', '', 'B. Com', '2015', 68.00, '', 1, '2020-09-10 07:56:40', 0, NULL, 0, NULL, 1),
(269, 177, '1', 'state board', '', '', '2012', 57.00, '', 1, '2020-09-10 09:15:24', 0, NULL, 0, NULL, 1),
(270, 177, '2', 'state board', '', '', '2014', 60.00, '', 1, '2020-09-10 09:16:05', 0, NULL, 0, NULL, 1),
(271, 177, '3', 'madras university', '', 'b.a', '2017', 57.00, '', 1, '2020-09-10 09:16:59', 0, NULL, 0, NULL, 1),
(272, 177, '4', 'madras university', '', 'm.a', '2019', 62.00, '', 1, '2020-09-10 09:17:33', 0, NULL, 0, NULL, 1),
(273, 255, '5', 'Anna University', '', 'DME', '2017', 80.00, '', 1, '2020-09-10 10:35:19', 0, NULL, 0, NULL, 1),
(274, 257, '4', 'Thiruvalluvar University', '', 'M.Sc(IT)', '2014', 86.20, '', 1, '2020-09-11 09:16:08', 1, '2020-09-11 09:34:57', 0, NULL, 0),
(275, 258, '3', 'SRV engineering college', '', 'B.E', '2015', 61.00, '', 1, '2020-09-11 09:48:52', 0, NULL, 0, NULL, 1),
(276, 247, '3', 'Madras university', '', 'B. Sc computers science', '2019', 65.00, '', 1, '2020-09-11 09:54:13', 0, NULL, 0, NULL, 1),
(277, 259, '4', 'Anna University', '', 'MBA', '2018', 67.00, '', 1, '2020-09-11 10:31:53', 0, NULL, 0, NULL, 1),
(278, 260, '3', 'Madras University', '', 'BCA', '2019', 75.00, '', 1, '2020-09-11 10:45:34', 0, NULL, 0, NULL, 1),
(279, 262, '3', 'M.s University', '', 'B.sc', '2018', 71.00, '', 1, '2020-09-11 11:18:57', 0, NULL, 0, NULL, 1),
(280, 256, '3', 'shivani engineering college', '', 'b.e', '2019', 6.50, '', 1, '2020-09-11 11:31:33', 0, NULL, 0, NULL, 1),
(281, 241, '3', 'State board', '', 'B. E. Mechanical', '2016', 66.70, '', 1, '2020-09-11 11:34:12', 0, NULL, 0, NULL, 1),
(282, 264, '5', 'Anna University', '', '', '2018', 62.00, '', 1, '2020-09-11 11:56:11', 0, NULL, 0, NULL, 1),
(283, 265, '3', 'Anna university', '', 'Computer science and engineering', '2017', 7.10, '', 1, '2020-09-11 12:27:04', 0, NULL, 0, NULL, 1),
(284, 266, '5', 'DOTE', '', 'Diploma', '2010', 70.00, '', 1, '2020-09-11 12:46:07', 0, NULL, 0, NULL, 1),
(285, 267, '4', 'university', '', 'mba ', '2012', 70.00, '', 1, '2020-09-11 12:52:52', 0, NULL, 0, NULL, 1),
(286, 269, '3', 'Anna University', '', 'B.E', '2018', 6.20, '', 1, '2020-09-11 01:18:11', 0, NULL, 0, NULL, 1),
(287, 253, '3', 'Madras university ', '', 'B. Com', '2009', 70.00, '', 1, '2020-09-11 02:26:39', 0, NULL, 0, NULL, 1),
(288, 271, '1', 'state board of india', '', '', '2005', 80.00, '', 1, '2020-09-11 02:36:26', 0, NULL, 0, NULL, 1),
(289, 271, '2', 'state board of india', '', '', '2007', 79.00, '', 1, '2020-09-11 02:36:50', 0, NULL, 0, NULL, 1),
(290, 271, '3', 'thiruvalluvar university', '', 'bsc. computer science', '2010', 80.00, '', 1, '2020-09-11 02:37:30', 0, NULL, 0, NULL, 1),
(291, 271, '4', 'pondicherry university', '', 'msc computer science', '2012', 85.00, '', 1, '2020-09-11 02:37:57', 0, NULL, 0, NULL, 1),
(292, 275, '3', 'Anna I veilankanni\'s college for women ', '', 'B. Com', '2018', 56.00, '', 1, '2020-09-12 10:27:57', 0, NULL, 0, NULL, 1),
(293, 278, '3', 'Madars university ', '', 'BCA', '2020', 68.00, '', 1, '2020-09-12 11:26:13', 0, NULL, 0, NULL, 1),
(294, 285, '3', 'anna university', '', 'be', '2008', 73.00, '', 1, '2020-09-12 11:45:38', 0, NULL, 0, NULL, 1),
(295, 288, '2', 'Hr.sec.school', '', '', '2017', 60.00, '', 1, '2020-09-12 12:55:45', 0, NULL, 0, NULL, 1),
(296, 289, '3', 'Rvs padmavathy college of engineering and technology ', '', 'B.E. mechanical engineering ', '2017', 67.00, '', 1, '2020-09-12 01:11:12', 0, NULL, 0, NULL, 1),
(297, 289, '2', 'Elite matriculation Higher secondary school ', '', '', '2013', 80.00, '', 1, '2020-09-12 01:12:10', 0, NULL, 0, NULL, 1),
(298, 289, '1', 'R.m.k matriculation Higher secondary school ', '', '', '2011', 64.00, '', 1, '2020-09-12 01:13:44', 0, NULL, 0, NULL, 1),
(299, 290, '5', 'Anna university', '', 'DME', '2009', 72.00, '', 1, '2020-09-12 02:30:33', 0, NULL, 0, NULL, 1),
(300, 291, '1', 'State board', '', 'MA English ', '2012', 79.60, '', 1, '2020-09-12 02:45:25', 0, NULL, 0, NULL, 1),
(301, 291, '2', 'State board', '', '', '2014', 69.70, '', 1, '2020-09-12 02:45:45', 0, NULL, 0, NULL, 1),
(302, 291, '3', 'MS university', '', 'BA', '2017', 50.00, '', 1, '2020-09-12 02:46:16', 0, NULL, 0, NULL, 1),
(303, 291, '4', 'Bharathiar university', '', 'MA english literature', '2019', 55.00, '', 1, '2020-09-12 02:46:59', 0, NULL, 0, NULL, 1),
(304, 293, '3', 'Madras University', '', 'B.com (corporate secretaryship)', '2015', 86.00, '', 1, '2020-09-12 03:32:27', 0, NULL, 0, NULL, 1),
(305, 294, '3', 'Vels University', '', 'Bsc.,Biocomputing ', '2019', 72.00, '', 1, '2020-09-12 03:44:50', 0, NULL, 0, NULL, 1),
(306, 296, '3', 'p.b college of engineering', '', 'b.e', '2018', 6.70, '', 1, '2020-09-12 05:21:20', 0, NULL, 0, NULL, 1),
(307, 298, '1', 'state', '', '', '2015', 80.00, '', 1, '2020-09-12 06:35:35', 0, NULL, 0, NULL, 1),
(308, 300, '1', 'state', '', '', '2010', 80.00, '', 1, '2020-09-12 06:38:01', 0, NULL, 0, NULL, 1),
(309, 301, '1', 'state', '', '', '2015', 80.00, '', 1, '2020-09-12 06:46:01', 0, NULL, 0, NULL, 1),
(310, 302, '3', 'hbdhb', '', 'dbfb', '2016', 65.00, '', 1, '2020-09-12 07:22:19', 0, NULL, 0, NULL, 1),
(311, 303, '3', 'Anna university', '', 'B.E(Current)', '2020', 70.00, '', 1, '2020-09-12 08:33:08', 0, NULL, 0, NULL, 1),
(312, 304, '3', 'Jeppiaar SRR engineering college', '', 'B.E', '2019', 6.70, '', 1, '2020-09-13 02:36:52', 0, NULL, 0, NULL, 1),
(313, 305, '3', 'university', '', 'ba', '2017', 65.50, '', 1, '2020-09-13 07:43:24', 0, NULL, 0, NULL, 1),
(314, 307, '5', 'board', '', 'it', '2015', 68.00, '', 1, '2020-09-13 08:29:08', 0, NULL, 0, NULL, 1),
(315, 308, '1', 'Board', '', '', '2014', 60.00, '', 1, '2020-09-13 09:56:29', 0, NULL, 0, NULL, 1),
(316, 308, '1', 'Bord', '', '', '2014', 60.00, '', 1, '2020-09-13 09:58:06', 0, NULL, 0, NULL, 1),
(317, 310, '3', 'Tagore engineering college', '', 'BE civil', '2015', 62.00, '', 1, '2020-09-14 10:16:27', 0, NULL, 0, NULL, 1),
(318, 312, '4', 'Madras university ', '', 'Bcom,MBA', '2016', 67.00, '', 1, '2020-09-14 10:29:34', 0, NULL, 0, NULL, 1),
(319, 315, '3', 'Anna University', '', 'Bachelor of Engineering', '2019', 65.00, '', 1, '2020-09-14 10:59:00', 0, NULL, 0, NULL, 1),
(320, 317, '2', 'St Peters hr sec school ', '', '', '2014', 60.00, '', 1, '2020-09-14 11:14:09', 0, NULL, 0, NULL, 1),
(321, 319, '3', 'Saveetha Engineering College', '', 'B. E', '2019', 60.30, '', 1, '2020-09-14 11:19:44', 0, NULL, 0, NULL, 1),
(322, 321, '3', 'Anna University', '', 'B.E(current)', '2020', 70.00, '', 1, '2020-09-14 11:20:18', 0, NULL, 0, NULL, 1),
(323, 319, '2', 'State board', '', '', '2015', 72.00, '', 1, '2020-09-14 11:20:38', 0, NULL, 0, NULL, 1),
(324, 276, '3', 'Alagapa university', '', 'BA', '2016', 64.00, '', 1, '2020-09-14 11:23:47', 1, '2020-10-01 11:42:52', 0, NULL, 1),
(325, 316, '2', 'board', '', '', '2009', 64.00, '', 1, '2020-09-14 11:26:54', 0, NULL, 0, NULL, 1),
(326, 318, '2', 'Govt boys hr sec school ', '', '', '2014', 92.00, '', 1, '2020-09-14 11:29:13', 0, NULL, 0, NULL, 1),
(327, 323, '3', 'Madras university', '', 'BCA', '2019', 57.00, '', 1, '2020-09-14 11:44:51', 0, NULL, 0, NULL, 1),
(328, 324, '3', 'Madras university', '', 'BCA', '2019', 60.00, '', 1, '2020-09-14 11:45:38', 0, NULL, 0, NULL, 1),
(329, 323, '2', 'State board', '', '', '2016', 63.00, '', 1, '2020-09-14 11:45:57', 0, NULL, 0, NULL, 1),
(330, 322, '3', 'Tamilnadu open university ', '', 'B. A travel and tourism ', '2011', 70.00, '', 1, '2020-09-14 11:46:21', 0, NULL, 0, NULL, 1),
(331, 323, '1', 'State Board', '', '', '2014', 77.00, '', 1, '2020-09-14 11:47:04', 0, NULL, 0, NULL, 1),
(332, 324, '2', 'state board', '', '', '2016', 60.00, '', 1, '2020-09-14 11:47:41', 0, NULL, 0, NULL, 1),
(333, 324, '1', 'state board', '', '', '2014', 85.00, '', 1, '2020-09-14 11:48:26', 0, NULL, 0, NULL, 1),
(334, 283, '3', 'Autonomous', '', 'B.sc', '2016', 68.00, '', 1, '2020-09-14 11:48:33', 0, NULL, 0, NULL, 1),
(335, 326, '3', 'Madras university ', '', 'Bsc computer science ', '2019', 70.00, '', 1, '2020-09-14 11:50:49', 0, NULL, 0, NULL, 1),
(336, 325, '4', 'Azhagapa University', '', 'MBA', '2021', 78.00, '', 1, '2020-09-14 11:58:53', 0, NULL, 0, NULL, 1),
(337, 327, '2', 'board', '', '', '2012', 76.00, '', 1, '2020-09-14 12:02:57', 0, NULL, 0, NULL, 1),
(338, 286, '3', 'Autonomous', '', 'B.Com', '2018', 50.00, '', 1, '2020-09-14 12:07:03', 0, NULL, 0, NULL, 1),
(339, 328, '3', 'Anna university', '', 'B.E', '2016', 6.20, '', 1, '2020-09-14 12:19:24', 0, NULL, 0, NULL, 1),
(340, 329, '3', 'Madras university ', '', 'Bsc ', '2014', 60.00, '', 1, '2020-09-14 01:02:46', 0, NULL, 0, NULL, 1),
(341, 330, '4', 'andra', '', 'mba', '2020', 55.00, '', 1, '2020-09-14 01:42:21', 0, NULL, 0, NULL, 1),
(342, 331, '4', 'anna university', '', 'MBA ', '2020', 73.30, '', 1, '2020-09-14 01:42:45', 0, NULL, 0, NULL, 1),
(343, 334, '3', 'Madras university ', '', 'B.Com Bank Management ', '2017', 79.00, '', 1, '2020-09-14 02:07:54', 0, NULL, 0, NULL, 1),
(344, 333, '3', 'Madras University', '', 'B.A. Economics', '2019', 80.00, '', 1, '2020-09-14 02:13:56', 0, NULL, 0, NULL, 1),
(345, 332, '3', 'Anna University', '', 'BE ( Ece)', '2014', 71.00, '', 1, '2020-09-14 02:17:56', 0, NULL, 0, NULL, 1),
(346, 333, '3', 'University', '', 'B.A.Economics', '2019', 80.00, '', 1, '2020-09-14 02:21:13', 0, NULL, 0, NULL, 1),
(347, 335, '3', 'University', '', 'Bsc maths', '2013', 50.00, '', 1, '2020-09-14 02:24:37', 0, NULL, 0, NULL, 1),
(348, 335, '3', 'Madras university', '', 'Bsc.maths', '2013', 50.00, '', 1, '2020-09-14 02:25:47', 0, NULL, 0, NULL, 1),
(349, 337, '1', 'tamilnadu open university ', '', '', '2004', 60.00, '', 1, '2020-09-14 03:09:39', 0, NULL, 0, NULL, 1),
(350, 339, '3', 'anna university', '', 'be', '2008', 73.00, '', 1, '2020-09-14 04:05:59', 0, NULL, 0, NULL, 1),
(351, 340, '3', 'Anna university', '', '', '2017', 60.00, '', 1, '2020-09-14 06:03:33', 0, NULL, 0, NULL, 1),
(352, 342, '5', 'Sakthi polytechnic college,Erode', '', 'diploma', '2016', 89.00, '', 1, '2020-09-15 09:00:51', 0, NULL, 0, NULL, 1),
(353, 342, '5', 'Sakthi polytechnic college', '', 'diploma', '2016', 89.00, '', 1, '2020-09-15 09:01:28', 1, '2020-09-15 09:01:41', 0, NULL, 0),
(354, 346, '1', 'matriculation', '', '', '2005', 53.00, '', 1, '2020-09-15 11:23:01', 0, NULL, 0, NULL, 1),
(355, 343, '4', 'bharathidasan university', '', 'mca', '2012', 71.00, '', 1, '2020-09-15 11:43:28', 0, NULL, 0, NULL, 1),
(356, 347, '2', 'state board of tamilnadu', '', '', '2017', 83.83, '', 1, '2020-09-15 12:00:59', 0, NULL, 0, NULL, 1),
(357, 338, '3', 'Anna universit', '', 'BE Mechanical', '2020', 73.00, '', 50, '2020-09-15 12:28:41', 0, NULL, 0, NULL, 1),
(358, 350, '3', 'Loyola College', '', 'BCA', '2019', 63.70, '', 1, '2020-09-15 01:02:17', 0, NULL, 0, NULL, 1),
(359, 351, '3', 'SRM UNIVERSITY', '', 'BCA COMPUTER APPLICATION', '2019', 6.47, '', 1, '2020-09-15 01:27:24', 0, NULL, 0, NULL, 1),
(360, 354, '3', 'Madras university', '', 'Bba', '2017', 70.00, '', 1, '2020-09-15 02:35:01', 0, NULL, 0, NULL, 1),
(361, 39, '1', 'b e', '', '', '2020', 50.00, '', 1, '2020-09-15 02:36:39', 0, NULL, 0, NULL, 1),
(362, 353, '3', 'madars university', '', 'B.com', '2011', 67.00, '', 1, '2020-09-15 02:39:07', 0, NULL, 0, NULL, 1),
(363, 355, '3', 'MGR University', '', 'BCA', '2019', 70.00, '', 1, '2020-09-15 02:55:03', 0, NULL, 0, NULL, 1),
(364, 357, '3', 'UGC', '', 'B.com(Gen)', '2019', 53.00, '', 1, '2020-09-15 06:17:31', 0, NULL, 0, NULL, 1),
(365, 359, '5', 'University ', '', 'Diploma ', '2015', 55.00, '', 1, '2020-09-15 06:25:58', 0, NULL, 0, NULL, 1),
(366, 360, '3', 'st peters university', '', 'bsc physics', '2020', 80.00, '', 1, '2020-09-15 06:48:04', 0, NULL, 0, NULL, 1),
(367, 363, '3', 'anna university', '', 'be', '2008', 72.00, '', 1, '2020-09-15 07:20:16', 0, NULL, 0, NULL, 1),
(368, 364, '3', 'madars university', '', 'bcom ca', '2018', 60.00, '', 1, '2020-09-15 07:30:57', 0, NULL, 0, NULL, 1),
(369, 361, '3', 'Madars University', '', 'BBA', '2019', 72.00, '', 1, '2020-09-15 07:50:45', 0, NULL, 0, NULL, 1),
(370, 365, '4', 'university', '', 'msc', '2013', 76.00, '', 1, '2020-09-15 07:57:12', 0, NULL, 0, NULL, 1),
(371, 368, '3', 'Srm university ', '', 'Computer science Engineering ', '2018', 67.00, '', 1, '2020-09-16 10:16:11', 0, NULL, 0, NULL, 1),
(372, 368, '1', 'State ', '', '', '2011', 67.00, '', 1, '2020-09-16 10:16:42', 0, NULL, 0, NULL, 1),
(373, 368, '2', 'State ', '', '', '2014', 81.00, '', 1, '2020-09-16 10:17:06', 0, NULL, 0, NULL, 1),
(374, 367, '3', 'Madras university', '', 'BCA', '2019', 70.00, '', 1, '2020-09-16 10:17:12', 0, NULL, 0, NULL, 1),
(375, 367, '1', 'stateboard ', '', '', '2014', 75.00, '', 1, '2020-09-16 10:19:17', 0, NULL, 0, NULL, 1),
(376, 367, '2', 'stateboard', '', '', '2016', 70.00, '', 1, '2020-09-16 10:19:57', 0, NULL, 0, NULL, 1),
(377, 356, '5', 'Amk polytechnic college', '', 'Dme', '2013', 50.00, '', 1, '2020-09-16 10:58:13', 0, NULL, 0, NULL, 1),
(378, 369, '3', 'Madras University', '', 'B.A Arabic', '2019', 60.00, '', 1, '2020-09-16 11:02:35', 0, NULL, 0, NULL, 1),
(379, 366, '1', 'Banglore', '', '', '2013', 65.00, '', 1, '2020-09-16 11:12:07', 0, NULL, 0, NULL, 1),
(380, 376, '3', 'Madras University ', '', 'BBA ', '2019', 62.00, '', 1, '2020-09-16 11:42:55', 0, NULL, 0, NULL, 1),
(381, 374, '3', 'tamil nadu open university', '', 'bba', '2009', 52.00, '', 1, '2020-09-16 11:44:29', 0, NULL, 0, NULL, 1),
(382, 374, '2', 'p m s matric school', '', '', '2004', 68.00, '', 1, '2020-09-16 11:45:08', 0, NULL, 0, NULL, 1),
(383, 374, '2', 'P M S Matric School', '', '', '2002', 53.00, '', 1, '2020-09-16 11:45:32', 0, NULL, 0, NULL, 1),
(384, 371, '3', 'Madras university ', '', 'B. Com cs', '2019', 49.00, '', 1, '2020-09-16 11:50:48', 0, NULL, 0, NULL, 1),
(385, 372, '5', 'board', '', 'iti', '2016', 60.00, '', 1, '2020-09-16 12:05:24', 0, NULL, 0, NULL, 1),
(386, 380, '3', 'Madras university', '', 'Bsc', '2019', 70.00, '', 1, '2020-09-16 12:16:02', 0, NULL, 0, NULL, 1),
(387, 383, '3', 'Bel tech university', '', 'B.Tech / civil', '2017', 70.00, '', 1, '2020-09-16 12:27:08', 0, NULL, 0, NULL, 1),
(388, 311, '3', 'madras university', '', 'b.com general', '2019', 72.00, '', 1, '2020-09-16 12:29:00', 0, NULL, 0, NULL, 1),
(389, 375, '3', 'The new college', '', 'B. Com', '2019', 62.00, '', 1, '2020-09-16 12:31:56', 0, NULL, 0, NULL, 1),
(390, 365, '4', 'Autnomous banglore university', '', 'Bsc', '2011', 80.25, '', 1, '2020-09-16 12:34:12', 0, NULL, 0, NULL, 1),
(391, 378, '3', 'madras university', '', 'b.com', '2016', 60.00, '', 1, '2020-09-16 12:55:41', 0, NULL, 0, NULL, 1),
(392, 382, '3', 'Madras university', '', 'B. Com', '2018', 60.00, '', 1, '2020-09-16 12:56:08', 0, NULL, 0, NULL, 1),
(393, 385, '3', 'Sri sankara arts and science college ', '', 'Bca', '2019', 5.60, '', 1, '2020-09-16 01:01:31', 0, NULL, 0, NULL, 1),
(394, 383, '3', 'Vel tech university', '', 'B.Tech/ Civil', '2017', 70.00, '', 1, '2020-09-16 01:05:21', 0, NULL, 0, NULL, 1),
(395, 386, '3', 'Sathyabama university', '', 'B.sc Viscom', '2018', 80.00, '', 1, '2020-09-16 01:27:07', 0, NULL, 0, NULL, 1),
(396, 381, '2', 'State Board', '', '', '2015', 55.00, '', 1, '2020-09-16 01:40:16', 0, NULL, 0, NULL, 1),
(397, 388, '3', 'Manonmaiam sudaranar University', '', 'Bsc computer science', '2016', 60.00, '', 1, '2020-09-16 01:50:29', 0, NULL, 0, NULL, 1),
(398, 389, '3', 'anna university', '', 'be', '2014', 80.00, '', 1, '2020-09-16 01:57:10', 0, NULL, 0, NULL, 1),
(399, 390, '1', 'anna university', '', '', '2020', 70.00, '', 1, '2020-09-16 04:06:58', 0, NULL, 0, NULL, 1),
(400, 392, '4', 'Thiruvalluvar University', '', 'B.com', '2017', 53.00, '', 1, '2020-09-16 04:25:31', 0, NULL, 0, NULL, 1),
(401, 392, '3', 'Thiruvalluvar University', '', ' B.com', '2017', 53.00, '', 1, '2020-09-16 04:26:09', 0, NULL, 0, NULL, 1),
(402, 394, '3', 'Valliammal college for women', '', 'Bsc biochemistry', '2017', 66.00, '', 1, '2020-09-16 04:38:38', 0, NULL, 0, NULL, 1),
(403, 394, '2', 'Good hope matriculation higher secondary school', '', '', '2014', 60.75, '', 1, '2020-09-16 04:42:47', 0, NULL, 0, NULL, 1),
(404, 393, '3', 'Madras univercity', '', 'B.com', '2009', 60.00, '', 1, '2020-09-16 05:13:46', 0, NULL, 0, NULL, 1),
(405, 397, '4', 'Anna university', '', 'Mba', '2011', 69.00, '', 1, '2020-09-16 05:20:20', 0, NULL, 0, NULL, 1),
(406, 397, '3', 'Madras university', '', 'BBA', '2009', 59.00, '', 1, '2020-09-16 05:21:25', 0, NULL, 0, NULL, 1),
(407, 398, '4', 'Loyola College ', '', 'MBA', '2018', 63.00, '', 1, '2020-09-16 05:22:00', 0, NULL, 0, NULL, 1),
(408, 398, '3', 'Anna university ', '', 'BE CSE', '2015', 75.00, '', 1, '2020-09-16 05:22:46', 0, NULL, 0, NULL, 1),
(409, 399, '4', 'Ananna University', '', 'MBA', '2018', 68.00, '', 1, '2020-09-16 05:35:31', 0, NULL, 0, NULL, 1),
(410, 401, '3', 'Quaid e millath gov college for women', '', 'B.sc maths', '2017', 78.00, '', 1, '2020-09-16 06:11:24', 0, NULL, 0, NULL, 1),
(411, 402, '3', 'anna university', '', 'be', '2008', 73.00, '', 1, '2020-09-16 06:17:45', 0, NULL, 0, NULL, 1),
(412, 403, '3', 'university', '', 'b.com', '2019', 75.00, '', 1, '2020-09-16 07:05:57', 0, NULL, 0, NULL, 1),
(413, 201, '3', 'Sri venkateswaraa college of Technology', '', 'B.E ', '2015', 6.91, '', 1, '2020-09-16 10:57:29', 0, NULL, 0, NULL, 1),
(414, 407, '1', 'State Board', '', '', '2015', 94.00, '', 1, '2020-09-17 10:05:59', 0, NULL, 0, NULL, 1),
(415, 407, '2', 'State Board', '', '', '2017', 80.00, '', 1, '2020-09-17 10:06:42', 0, NULL, 0, NULL, 1),
(416, 407, '3', 'Ramakrishna mission vivekananda College', '', 'BCA', '2020', 78.00, '', 1, '2020-09-17 10:07:36', 0, NULL, 0, NULL, 1),
(417, 405, '5', 'Govt ITI ', '', 'DTPO', '2017', 89.00, '', 1, '2020-09-17 10:23:21', 0, NULL, 0, NULL, 1),
(418, 406, '1', 'STATE Board', '', 'BE', '2012', 91.40, '', 1, '2020-09-17 10:23:41', 1, '2020-09-17 10:25:15', 0, NULL, 0),
(419, 406, '2', 'STATE Board', '', '', '2014', 86.75, '', 1, '2020-09-17 10:24:19', 0, NULL, 0, NULL, 1),
(420, 406, '1', 'STATE board', '', '', '2012', 91.40, '', 1, '2020-09-17 10:25:54', 0, NULL, 0, NULL, 1),
(421, 406, '3', 'Anna university', '', 'BE', '2018', 68.50, '', 1, '2020-09-17 10:27:34', 1, '2020-09-17 10:27:56', 0, NULL, 1),
(422, 410, '3', 'SRM university', '', 'Bsc Computer Science', '2020', 68.00, '', 1, '2020-09-17 10:48:26', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(423, 413, '3', 'University of madras', '', 'B.C.A', '2017', 70.00, '', 1, '2020-09-17 11:18:47', 0, NULL, 0, NULL, 1),
(424, 415, '3', 'Jaya college arts science ', '', 'BBA', '2014', 65.00, '', 1, '2020-09-17 11:26:57', 0, NULL, 0, NULL, 1),
(425, 412, '4', 'Anna University', '', 'ME', '2018', 89.00, '', 1, '2020-09-17 11:28:25', 0, NULL, 0, NULL, 1),
(426, 411, '2', 'TNOU', '', '', '2010', 55.00, '', 1, '2020-09-17 11:37:30', 0, NULL, 0, NULL, 1),
(427, 417, '4', 'Anna university', '', 'BE', '2017', 65.00, '', 1, '2020-09-17 11:47:00', 1, '2020-09-17 11:47:41', 0, NULL, 0),
(428, 417, '3', 'Anna university', '', 'BE', '2017', 65.00, '', 1, '2020-09-17 11:47:31', 0, NULL, 0, NULL, 1),
(429, 408, '3', 'University', '', 'Bsc Mathematics with computer applications', '2019', 70.00, '', 1, '2020-09-17 12:29:11', 0, NULL, 0, NULL, 1),
(430, 419, '3', 'University of Madras ', '', 'B.sc,', '2017', 59.00, '', 1, '2020-09-17 12:42:40', 0, NULL, 0, NULL, 1),
(431, 422, '4', 'Madras University', '', 'MBA finance', '2014', 67.00, '', 1, '2020-09-17 01:07:39', 0, NULL, 0, NULL, 1),
(432, 422, '4', 'Madras University', '', 'MBA finance', '2014', 67.00, '', 1, '2020-09-17 01:12:03', 0, NULL, 0, NULL, 1),
(433, 426, '3', 'university', '', 'b.com', '2018', 78.00, '', 1, '2020-09-17 01:25:17', 0, NULL, 0, NULL, 1),
(434, 427, '4', 'Central University of Tamilnadu', '', 'IMSc Economics', '2019', 72.00, '', 1, '2020-09-17 01:30:13', 0, NULL, 0, NULL, 1),
(435, 427, '2', 'State Board', '', '', '2014', 96.00, '', 1, '2020-09-17 01:30:44', 0, NULL, 0, NULL, 1),
(436, 427, '1', 'State Board', '', '', '2012', 81.00, '', 1, '2020-09-17 01:31:07', 0, NULL, 0, NULL, 1),
(437, 429, '3', 'Madras', '', 'B.com', '2019', 62.00, '', 1, '2020-09-17 01:35:59', 0, NULL, 0, NULL, 1),
(438, 421, '3', 'Madars ', '', 'B.a economics', '2017', 72.00, '', 1, '2020-09-17 01:37:51', 0, NULL, 0, NULL, 1),
(439, 431, '4', 'loyla college', '', 'm.com', '2017', 71.00, '', 1, '2020-09-17 01:38:54', 0, NULL, 0, NULL, 1),
(440, 430, '3', 'anna university', '', 'b.com', '2012', 70.00, '', 1, '2020-09-17 01:42:06', 0, NULL, 0, NULL, 1),
(441, 432, '3', 'loyola college', '', 'b.com', '2018', 82.00, '', 1, '2020-09-17 01:42:33', 0, NULL, 0, NULL, 1),
(442, 434, '3', 'State bord ', '', 'Bsc viscom', '2016', 75.00, '', 1, '2020-09-17 02:01:41', 1, '2020-09-17 02:03:47', 0, NULL, 0),
(443, 434, '1', 'State bodr', '', '', '2012', 73.00, '', 1, '2020-09-17 02:02:47', 0, NULL, 0, NULL, 1),
(444, 434, '2', 'State bord', '', '', '2015', 79.00, '', 1, '2020-09-17 02:03:15', 0, NULL, 0, NULL, 1),
(445, 434, '3', 'Madras university', '', 'Bsc viscom ', '2021', 70.00, '', 1, '2020-09-17 02:04:30', 0, NULL, 0, NULL, 1),
(446, 436, '3', 'University of Madras', '', 'B.com (CS)', '2018', 65.00, '', 1, '2020-09-17 02:07:33', 8, '2020-09-17 03:04:58', 0, NULL, 0),
(447, 438, '3', 'AM Jain college', '', 'B.Sc mathematics', '2017', 60.00, '', 1, '2020-09-17 02:08:13', 0, NULL, 0, NULL, 1),
(448, 436, '3', 'University of Madras', '', 'B.com (CS)', '2018', 65.00, '', 1, '2020-09-17 02:11:00', 0, NULL, 0, NULL, 1),
(449, 437, '3', 'Madras University', '', 'B.com (cS)', '2018', 63.00, '', 1, '2020-09-17 02:11:24', 0, NULL, 0, NULL, 1),
(450, 439, '3', ' srm university', '', 'b.com', '2019', 50.00, '', 1, '2020-09-17 02:21:25', 1, '2020-09-17 02:21:59', 0, NULL, 0),
(451, 439, '1', 'state board', '', '', '2014', 76.00, '', 1, '2020-09-17 02:22:32', 0, NULL, 0, NULL, 1),
(452, 439, '2', 'state board', '', '', '2016', 54.91, '', 1, '2020-09-17 02:22:55', 0, NULL, 0, NULL, 1),
(453, 439, '3', 'srm university', '', 'b.com ', '2019', 50.00, '', 1, '2020-09-17 02:23:31', 0, NULL, 0, NULL, 1),
(454, 443, '3', 'madras university', '', 'b.com', '2018', 70.00, '', 1, '2020-09-17 02:37:21', 0, NULL, 0, NULL, 1),
(455, 442, '2', 'kings ', '', '', '2008', 60.00, '', 1, '2020-09-17 02:38:07', 0, NULL, 0, NULL, 1),
(456, 442, '3', 'anna unniversity', '', 'b.sc', '2012', 77.00, '', 1, '2020-09-17 02:38:42', 0, NULL, 0, NULL, 1),
(457, 428, '3', 'anna univ', '', 'bca', '2016', 78.00, '', 1, '2020-09-17 02:39:15', 0, NULL, 0, NULL, 1),
(458, 444, '3', 'madras university', '', 'b.com', '2018', 78.00, '', 1, '2020-09-17 02:39:28', 0, NULL, 0, NULL, 1),
(459, 445, '3', 'anna univ', '', 'bba', '2019', 45.00, '', 1, '2020-09-17 02:47:11', 0, NULL, 0, NULL, 1),
(460, 445, '3', 'anna univ', '', 'bba', '2019', 45.00, '', 1, '2020-09-17 02:47:12', 0, NULL, 0, NULL, 1),
(461, 440, '3', 'Madras University', '', 'B.A Economics', '2017', 70.00, '', 1, '2020-09-17 02:47:45', 0, NULL, 0, NULL, 1),
(462, 447, '4', 'srm', '', 'mba', '2010', 88.00, '', 1, '2020-09-17 02:56:43', 0, NULL, 0, NULL, 1),
(463, 447, '2', 'saohs', '', '', '2004', 77.00, '', 1, '2020-09-17 02:57:19', 0, NULL, 0, NULL, 1),
(464, 448, '4', 'barath', '', 'be', '2014', 79.00, '', 1, '2020-09-17 03:04:25', 0, NULL, 0, NULL, 1),
(465, 452, '3', 'anna university', '', 'be', '2008', 73.00, '', 1, '2020-09-17 03:39:59', 0, NULL, 0, NULL, 1),
(466, 455, '3', 'Madras university', '', 'Bsc Viscom', '2020', 1.00, '', 1, '2020-09-17 04:10:46', 0, NULL, 0, NULL, 1),
(467, 455, '3', 'Madras university', '', 'Bsc viscom', '2020', 1.00, '', 1, '2020-09-17 04:11:33', 0, NULL, 0, NULL, 1),
(468, 456, '3', 'Madras University', '', 'BCA', '2017', 79.00, '', 1, '2020-09-17 04:22:15', 0, NULL, 0, NULL, 1),
(469, 454, '3', 'Madras university ', '', 'B.com (General)', '2019', 70.00, '', 1, '2020-09-17 04:42:21', 0, NULL, 0, NULL, 1),
(470, 457, '3', 'university', '', 'b.com', '2019', 65.00, '', 1, '2020-09-17 05:17:05', 0, NULL, 0, NULL, 1),
(471, 459, '1', 'STATE BOARD', '', '', '2012', 66.00, '', 1, '2020-09-17 06:05:01', 1, '2020-09-17 06:12:23', 0, NULL, 1),
(472, 460, '3', 'Anna University', '', 'BE', '2020', 60.00, '', 1, '2020-09-17 06:05:45', 1, '2020-09-17 06:05:53', 0, NULL, 0),
(473, 460, '2', 'State board', '', '', '2016', 60.00, '', 1, '2020-09-17 06:06:20', 1, '2020-09-17 06:57:56', 0, NULL, 1),
(474, 459, '2', 'STATE BOARD', '', '', '2012', 59.00, '', 1, '2020-09-17 06:06:39', 0, NULL, 0, NULL, 1),
(475, 459, '3', 'Thiruvalluvar university ', '', 'B.sc computer science', '2017', 60.00, '', 1, '2020-09-17 06:08:23', 1, '2020-09-17 06:12:03', 0, NULL, 1),
(476, 459, '4', 'Pondicherry university', '', 'MBA‐HR', '2019', 58.00, '', 1, '2020-09-17 06:10:07', 0, NULL, 0, NULL, 1),
(477, 458, '3', 'jbas college for women ', '', 'bcom', '2020', 54.00, '', 1, '2020-09-17 06:17:09', 0, NULL, 0, NULL, 1),
(478, 461, '1', 'government high school', '', 'be', '2010', 80.00, '', 1, '2020-09-17 06:32:15', 1, '2020-09-17 06:34:28', 0, NULL, 1),
(479, 461, '2', 'government boys school', '', '', '2012', 75.00, '', 1, '2020-09-17 06:33:25', 0, NULL, 0, NULL, 1),
(480, 461, '3', 'anna university', '', 'be', '2016', 62.00, '', 1, '2020-09-17 06:33:54', 0, NULL, 0, NULL, 1),
(481, 460, '3', 'Anna University', '', 'BE', '2020', 64.00, '', 1, '2020-09-17 06:58:37', 0, NULL, 0, NULL, 1),
(482, 424, '3', 'Thiruvalluvar University', '', 'BCA', '2019', 79.00, '', 1, '2020-09-18 08:21:54', 0, NULL, 0, NULL, 1),
(483, 463, '4', 'Anna university', '', 'BE mechanical engineering', '2018', 63.00, '', 1, '2020-09-18 10:02:31', 0, NULL, 0, NULL, 1),
(484, 465, '3', 'Tamilnadu open university', '', 'B.Com', '2012', 59.00, '', 1, '2020-09-18 10:26:20', 0, NULL, 0, NULL, 1),
(485, 465, '5', 'Shree kalikambal industrial training centre', '', '', '2004', 84.00, '', 1, '2020-09-18 10:29:42', 0, NULL, 0, NULL, 1),
(486, 465, '1', 'State board', '', '', '2001', 53.00, '', 1, '2020-09-18 10:30:12', 0, NULL, 0, NULL, 1),
(487, 464, '3', 'Madras university ', '', 'Bca(1 arrear)', '2017', 52.00, '', 1, '2020-09-18 10:49:08', 0, NULL, 0, NULL, 1),
(488, 464, '3', 'Madras university', '', 'Bca(1arrear)', '2017', 52.00, '', 1, '2020-09-18 10:49:52', 0, NULL, 0, NULL, 1),
(489, 458, '3', 'Jbas college for women', '', 'Bcom', '2020', 54.00, '', 1, '2020-09-18 11:28:53', 0, NULL, 0, NULL, 1),
(490, 470, '3', 'Anna University', '', 'B.E', '2017', 6.10, '', 1, '2020-09-18 11:29:14', 0, NULL, 0, NULL, 1),
(491, 470, '2', 'State Board', '', '', '2013', 60.00, '', 1, '2020-09-18 11:29:58', 0, NULL, 0, NULL, 1),
(492, 470, '1', 'State board', '', '', '2011', 73.00, '', 1, '2020-09-18 11:30:21', 0, NULL, 0, NULL, 1),
(493, 466, '3', 'shuats', '', '', '2019', 85.00, '', 1, '2020-09-18 11:34:04', 0, NULL, 0, NULL, 1),
(494, 471, '1', 'State board', '', '', '2012', 73.60, '', 1, '2020-09-18 11:37:06', 0, NULL, 0, NULL, 1),
(495, 471, '2', 'State board', '', '', '2014', 86.50, '', 1, '2020-09-18 11:37:45', 0, NULL, 0, NULL, 1),
(496, 471, '3', 'Bharathidasan University', '', 'B.Com', '2017', 6.20, '', 1, '2020-09-18 11:39:02', 0, NULL, 0, NULL, 1),
(497, 471, '4', 'Presidency University', '', 'MBA', '2019', 5.80, '', 1, '2020-09-18 11:39:35', 0, NULL, 0, NULL, 1),
(498, 472, '4', 'University of Madras', '', 'M.A', '2019', 70.00, '', 1, '2020-09-18 11:48:53', 0, NULL, 0, NULL, 1),
(499, 462, '3', 'anna university', '', 'b.tech information technology', '2016', 64.00, '', 1, '2020-09-18 11:58:30', 0, NULL, 0, NULL, 1),
(500, 462, '2', 'state board', '', '', '2012', 70.00, '', 1, '2020-09-18 11:59:14', 0, NULL, 0, NULL, 1),
(501, 462, '2', 'state board', '', '', '2010', 89.00, '', 1, '2020-09-18 11:59:41', 0, NULL, 0, NULL, 1),
(502, 469, '2', 'Board of technical education Banglore ', '', '', '2012', 88.57, '', 1, '2020-09-18 12:00:01', 0, NULL, 0, NULL, 1),
(503, 469, '2', 'Boar of technical education Banglore ', '', '', '2012', 88.51, '', 1, '2020-09-18 12:33:59', 0, NULL, 0, NULL, 1),
(504, 469, '2', 'board of technical education banglore', '', '', '2012', 88.57, '', 1, '2020-09-18 12:38:29', 0, NULL, 0, NULL, 1),
(505, 476, '1', 'state board', '', '', '2007', 54.00, '', 1, '2020-09-18 12:47:54', 0, NULL, 0, NULL, 1),
(506, 475, '3', 'soka ikeda college of arts and science for women', '', 'bca', '2017', 77.00, '', 1, '2020-09-18 12:48:03', 0, NULL, 0, NULL, 1),
(507, 476, '2', 'state board', '', '', '2009', 56.00, '', 1, '2020-09-18 12:48:21', 0, NULL, 0, NULL, 1),
(508, 476, '3', 'madras', '', 'bsc', '2012', 56.00, '', 1, '2020-09-18 12:48:55', 0, NULL, 0, NULL, 1),
(509, 476, '4', 'madras', '', 'mba', '2015', 55.00, '', 1, '2020-09-18 12:49:27', 0, NULL, 0, NULL, 1),
(510, 475, '2', 'p.k.g.g.higher secondry school', '', '', '2014', 61.40, '', 1, '2020-09-18 12:53:22', 0, NULL, 0, NULL, 1),
(511, 477, '4', 'Sikkim Manipal University', '', 'MCA', '2017', 59.48, '', 1, '2020-09-18 01:01:36', 0, NULL, 0, NULL, 1),
(512, 477, '3', 'Ravenshaw University', '', 'B.Sc. Information Science and Telecommunication', '2009', 60.45, '', 1, '2020-09-18 01:02:34', 0, NULL, 0, NULL, 1),
(513, 477, '1', 'CHSE', '', '', '2006', 56.55, '', 1, '2020-09-18 01:03:21', 0, NULL, 0, NULL, 1),
(514, 477, '2', 'CBSE', '', '', '2004', 65.44, '', 1, '2020-09-18 01:03:47', 0, NULL, 0, NULL, 1),
(515, 479, '3', 'Anna university ', '', 'BE.. Electronics and communication ', '2016', 72.00, '', 1, '2020-09-18 01:14:24', 0, NULL, 0, NULL, 1),
(516, 480, '3', 'Saraladevi college', '', 'Ba', '2011', 68.00, '', 1, '2020-09-18 01:20:50', 0, NULL, 0, NULL, 1),
(517, 480, '3', 'Saraladevi collge', '', '', '2011', 68.00, '', 1, '2020-09-18 01:37:31', 0, NULL, 0, NULL, 1),
(518, 480, '3', 'bellary university', '', 'BA', '2011', 68.00, '', 1, '2020-09-18 01:39:38', 0, NULL, 0, NULL, 1),
(519, 481, '2', 'Madras university ', '', '', '2016', 80.00, '', 1, '2020-09-18 01:46:36', 0, NULL, 0, NULL, 1),
(520, 482, '4', 'Anna University ', '', 'MBA ', '2020', 72.00, '', 1, '2020-09-18 01:53:51', 0, NULL, 0, NULL, 1),
(521, 480, '3', 'Saraladevi college', '', 'BA', '2011', 68.00, '', 1, '2020-09-18 01:55:08', 0, NULL, 0, NULL, 1),
(522, 486, '3', 'Madras university ', '', 'B.Sc., Advanced Zoology and Biotechnology ', '2020', 68.00, '', 1, '2020-09-18 02:25:13', 0, NULL, 0, NULL, 1),
(523, 488, '3', 'B.S.ABDUR RAHMAN  UNIVERSITY,CHENNAI', '', 'B.A.Islamic Studies ( Regular) & B.B.A(Distance)', '2014', 72.00, '', 1, '2020-09-18 02:59:10', 0, NULL, 0, NULL, 1),
(524, 485, '3', 'D. B. Jain college', '', 'B. Sc maths', '2018', 64.00, '', 1, '2020-09-18 03:29:42', 0, NULL, 0, NULL, 1),
(525, 490, '3', 'Anna University', '', 'B E ', '2020', 6.39, '', 1, '2020-09-18 04:41:57', 1, '2020-09-18 04:42:27', 0, NULL, 0),
(526, 490, '1', 'State Board', '', '', '2014', 92.20, '', 1, '2020-09-18 04:43:05', 0, NULL, 0, NULL, 1),
(527, 490, '2', 'State Board', '', '', '2016', 81.60, '', 1, '2020-09-18 04:43:50', 0, NULL, 0, NULL, 1),
(528, 490, '3', 'Anna University', '', 'B.E', '2020', 6.39, '', 1, '2020-09-18 04:44:26', 0, NULL, 0, NULL, 1),
(529, 493, '3', 'Anna university', '', 'Be', '2019', 86.00, '', 1, '2020-09-18 05:18:06', 0, NULL, 0, NULL, 1),
(530, 493, '2', 'State', '', '', '2015', 88.00, '', 1, '2020-09-18 05:18:38', 0, NULL, 0, NULL, 1),
(531, 493, '2', 'Matriculation', '', '', '2012', 90.00, '', 1, '2020-09-18 05:19:01', 0, NULL, 0, NULL, 1),
(532, 453, '4', 'anna university', '', 'mba', '2010', 70.00, '', 1, '2020-09-18 05:25:58', 1, '2020-09-18 05:33:17', 0, NULL, 0),
(533, 453, '4', 'anna university', '', 'mba', '2010', 70.00, '', 1, '2020-09-18 05:33:01', 0, NULL, 0, NULL, 1),
(534, 494, '4', 'Vit university ', '', 'Mca', '2017', 7.98, '', 1, '2020-09-18 05:46:26', 0, NULL, 0, NULL, 1),
(535, 478, '4', 'Anna University', '', 'B.E', '2019', 70.00, '', 1, '2020-09-18 06:46:00', 0, NULL, 0, NULL, 1),
(536, 474, '1', 'State Board', '', '', '2013', 50.00, '', 1, '2020-09-18 11:23:04', 0, NULL, 0, NULL, 1),
(537, 474, '2', 'State Board', '', '', '2016', 63.00, '', 1, '2020-09-18 11:23:37', 0, NULL, 0, NULL, 1),
(538, 474, '3', 'Madras university', '', 'B.A.Economics', '2019', 55.00, '', 1, '2020-09-18 11:25:23', 0, NULL, 0, NULL, 1),
(539, 498, '4', 'TAMILNADU open university', '', 'M.B.A', '2019', 80.00, '', 1, '2020-09-19 10:45:56', 0, NULL, 0, NULL, 1),
(540, 498, '3', 'Madras University', '', 'B.C.A', '2012', 68.00, '', 1, '2020-09-19 10:46:39', 0, NULL, 0, NULL, 1),
(541, 491, '1', 'University', '', '', '2016', 48.00, '', 1, '2020-09-19 11:01:17', 0, NULL, 0, NULL, 1),
(542, 501, '5', 'PAC Ramasamy raja college', '', '', '2017', 83.00, '', 1, '2020-09-19 11:06:47', 0, NULL, 0, NULL, 1),
(543, 502, '5', 'shiny teacher training institution ', '', 'D.T.Ed', '2011', 73.00, '', 1, '2020-09-19 11:29:13', 0, NULL, 0, NULL, 1),
(544, 484, '1', 'Drbccc hr sec school', '', '', '2010', 61.00, '', 1, '2020-09-19 11:34:55', 0, NULL, 0, NULL, 1),
(545, 484, '2', 'Drbccc hr sec school', '', '', '2012', 59.00, '', 1, '2020-09-19 11:35:39', 0, NULL, 0, NULL, 1),
(546, 484, '3', 'Thiruthangal nadar college', '', 'b.com', '2016', 61.00, '', 1, '2020-09-19 11:36:06', 0, NULL, 0, NULL, 1),
(547, 499, '1', 'state board', '', '', '2011', 70.00, '', 1, '2020-09-19 11:39:06', 0, NULL, 0, NULL, 1),
(548, 499, '2', 'state board', '', '', '2013', 60.00, '', 1, '2020-09-19 11:39:35', 0, NULL, 0, NULL, 1),
(549, 499, '3', 'madras university', '', 'bca', '2016', 60.00, '', 1, '2020-09-19 11:40:34', 0, NULL, 0, NULL, 1),
(550, 500, '3', 'RAJAS engineering college ', '', 'BE (csc)', '2018', 61.60, '', 1, '2020-09-19 12:10:58', 0, NULL, 0, NULL, 1),
(551, 504, '2', 'Chennai higher secondary School, velachery', '', 'BA', '2018', 72.00, '', 1, '2020-09-19 12:13:44', 0, NULL, 0, NULL, 1),
(552, 483, '3', 'anna university', '', 'b.e.', '2018', 68.00, '', 1, '2020-09-19 12:24:48', 0, NULL, 0, NULL, 1),
(553, 483, '2', 'govt higher secondary school', '', '', '2014', 65.00, '', 1, '2020-09-19 12:26:01', 0, NULL, 0, NULL, 1),
(554, 483, '1', 'govt.higher secondary school', '', '', '2010', 72.00, '', 1, '2020-09-19 12:26:47', 0, NULL, 0, NULL, 1),
(555, 506, '3', 'Tiruvalluvar University', '', 'BCA', '2018', 70.00, '', 1, '2020-09-19 12:36:00', 0, NULL, 0, NULL, 1),
(556, 507, '3', 'Anna university ', '', 'BE-CIVIL ', '2017', 6.20, '', 1, '2020-09-19 12:53:07', 0, NULL, 0, NULL, 1),
(557, 508, '4', 'mku', '', 'mba', '2019', 63.00, '', 1, '2020-09-19 01:10:41', 0, NULL, 0, NULL, 1),
(558, 508, '3', 'sethu institute', '', 'be', '2015', 6.47, '', 1, '2020-09-19 01:11:11', 0, NULL, 0, NULL, 1),
(559, 508, '2', 'evrn', '', '', '2011', 68.00, '', 1, '2020-09-19 01:12:07', 0, NULL, 0, NULL, 1),
(560, 508, '1', 'ocpm', '', '', '2009', 74.00, '', 1, '2020-09-19 01:12:31', 0, NULL, 0, NULL, 1),
(561, 510, '1', 'state board', '', '', '2011', 91.00, '', 1, '2020-09-19 01:29:30', 0, NULL, 0, NULL, 1),
(562, 510, '5', 'dote', '', 'diploma in computer engineering', '2014', 74.00, '', 1, '2020-09-19 01:30:12', 0, NULL, 0, NULL, 1),
(563, 512, '4', 'madras university', '', 'master of arts', '2016', 73.00, '', 1, '2020-09-19 01:43:38', 0, NULL, 0, NULL, 1),
(564, 512, '3', 'madras university', '', 'bachelor of arts', '2014', 59.00, '', 1, '2020-09-19 01:44:31', 0, NULL, 0, NULL, 1),
(565, 515, '3', 'Madras university ', '', 'B.a economics ', '2019', 56.00, '', 1, '2020-09-19 03:25:00', 0, NULL, 0, NULL, 1),
(566, 520, '3', 'Madaras University', '', 'Bsc ecs', '2015', 58.00, '', 1, '2020-09-19 04:16:54', 0, NULL, 0, NULL, 1),
(567, 511, '3', 'Anna university ', '', 'BE', '2015', 60.00, '', 1, '2020-09-19 04:26:48', 0, NULL, 0, NULL, 1),
(568, 522, '1', 'State board', '', '', '2012', 70.00, '', 1, '2020-09-19 04:36:39', 0, NULL, 0, NULL, 1),
(569, 522, '2', 'State board', '', '', '2014', 80.00, '', 1, '2020-09-19 04:37:06', 0, NULL, 0, NULL, 1),
(570, 522, '3', 'Madras university', '', 'B.com', '2017', 80.00, '', 1, '2020-09-19 04:37:41', 0, NULL, 0, NULL, 1),
(571, 522, '4', 'Madras university', '', 'M.com', '2019', 75.00, '', 1, '2020-09-19 04:38:07', 0, NULL, 0, NULL, 1),
(572, 524, '4', 'University', '', 'MBA', '2017', 78.00, '', 1, '2020-09-19 05:36:07', 0, NULL, 0, NULL, 1),
(573, 505, '2', 'State board ', '', '', '2016', 61.50, '', 1, '2020-09-19 06:49:53', 0, NULL, 0, NULL, 1),
(574, 527, '4', 'pondicherry university', '', 'mba', '2014', 72.50, '', 1, '2020-09-19 07:26:31', 0, NULL, 0, NULL, 1),
(575, 526, '1', 'state', '', '', '2008', 47.90, '', 1, '2020-09-19 07:33:57', 0, NULL, 0, NULL, 1),
(576, 526, '2', 'state', '', '', '2011', 56.00, '', 1, '2020-09-19 07:34:16', 0, NULL, 0, NULL, 1),
(577, 526, '3', 'madras', '', 'bsc computersci', '2014', 73.83, '', 1, '2020-09-19 07:34:54', 0, NULL, 0, NULL, 1),
(578, 526, '4', 'anna', '', 'mba hr', '2016', 73.58, '', 1, '2020-09-19 07:35:29', 0, NULL, 0, NULL, 1),
(579, 519, '3', 'Madras university ', '', 'B. C. A', '2004', 75.00, '', 1, '2020-09-19 07:55:16', 0, NULL, 0, NULL, 1),
(580, 528, '1', 'state board', '', '', '2011', 84.00, '', 1, '2020-09-20 12:57:45', 0, NULL, 0, NULL, 1),
(581, 528, '2', 'state board', '', '', '2013', 67.00, '', 1, '2020-09-20 12:58:16', 0, NULL, 0, NULL, 1),
(582, 528, '3', 'bharathiar university', '', 'b.a. english for global business context', '2016', 68.00, '', 1, '2020-09-20 01:00:28', 0, NULL, 0, NULL, 1),
(583, 528, '5', 'madras university', '', 'pgdhrm', '2017', 72.40, '', 1, '2020-09-20 01:01:31', 0, NULL, 0, NULL, 1),
(584, 528, '4', 'v i t university', '', 'm.b.a', '2020', 66.00, '', 1, '2020-09-20 01:02:41', 0, NULL, 0, NULL, 1),
(585, 531, '3', 'Sathyabama university', '', 'Bba', '2020', 8.00, '', 1, '2020-09-20 02:34:16', 0, NULL, 0, NULL, 1),
(586, 529, '4', 'madars university', '', 'mba hr', '2016', 68.00, '', 1, '2020-09-20 03:26:44', 0, NULL, 0, NULL, 1),
(587, 529, '3', 'hindustan university', '', 'bba', '2014', 72.00, '', 1, '2020-09-20 03:27:25', 0, NULL, 0, NULL, 1),
(588, 533, '3', 'university of madras', '', 'bca', '2017', 61.00, '', 1, '2020-09-21 10:15:32', 0, NULL, 0, NULL, 1),
(589, 536, '4', 'Madras univercity', '', 'M.com', '2016', 60.00, '', 1, '2020-09-21 10:51:07', 0, NULL, 0, NULL, 1),
(590, 535, '4', 'bharadhidasan university', '', 'mba hrm', '2018', 63.00, '', 1, '2020-09-21 10:53:30', 0, NULL, 0, NULL, 1),
(591, 521, '3', 'Vivekanand college chennai ', '', 'B.com', '2020', 63.70, '', 1, '2020-09-21 11:08:59', 0, NULL, 0, NULL, 1),
(592, 538, '1', 'State board', '', '', '2011', 78.00, '', 1, '2020-09-21 11:32:07', 0, NULL, 0, NULL, 1),
(593, 538, '2', 'Matriculation', '', '', '2013', 76.00, '', 1, '2020-09-21 11:32:28', 0, NULL, 0, NULL, 1),
(594, 538, '3', 'Madras university', '', 'BA Economics', '2016', 74.00, '', 1, '2020-09-21 11:32:58', 0, NULL, 0, NULL, 1),
(595, 538, '4', 'Madras university', '', 'MBA ', '2018', 75.00, '', 1, '2020-09-21 11:33:27', 0, NULL, 0, NULL, 1),
(596, 534, '4', 'loyola college pulc programme', '', 'mba', '2015', 60.00, '', 1, '2020-09-21 11:34:49', 0, NULL, 0, NULL, 1),
(597, 541, '4', 'SRM university', '', 'MBA', '2020', 81.00, '', 1, '2020-09-21 11:45:37', 0, NULL, 0, NULL, 1),
(598, 541, '3', 'Karunya University', '', 'B.tech', '2018', 65.00, '', 1, '2020-09-21 11:46:11', 0, NULL, 0, NULL, 1),
(599, 541, '2', 'Tamil Nadu state board', '', '', '2014', 78.67, '', 1, '2020-09-21 11:46:59', 1, '2020-09-21 11:47:35', 0, NULL, 0),
(600, 541, '1', 'CBSE', '', '', '2012', 87.00, '', 1, '2020-09-21 11:47:19', 1, '2020-09-21 11:47:41', 0, NULL, 0),
(601, 539, '3', 'sri venkateshwara college of engineering', '', 'btech', '2018', 6.80, '', 1, '2020-09-21 11:47:21', 0, NULL, 0, NULL, 1),
(602, 540, '1', 'secondary board', '', '', '2008', 60.00, '', 1, '2020-09-21 11:57:09', 0, NULL, 0, NULL, 1),
(603, 540, '2', 'intermediat', '', '', '2010', 53.00, '', 1, '2020-09-21 11:57:32', 0, NULL, 0, NULL, 1),
(604, 513, '4', 'Anna University', '', 'MBA', '2017', 82.00, '', 1, '2020-09-21 11:58:19', 0, NULL, 0, NULL, 1),
(605, 540, '3', 'jntua', '', 'btech ', '2014', 69.00, '', 1, '2020-09-21 11:58:20', 0, NULL, 0, NULL, 1),
(606, 542, '3', 'Dr.M.G.R.EDUCATIONAL& RESEARCH INSTITUTE UNIVERSITY', '', 'B.sc (cS)', '2019', 59.36, '', 1, '2020-09-21 12:00:27', 0, NULL, 0, NULL, 1),
(607, 543, '3', 'Madras University', '', 'BA corporate', '2003', 71.00, '', 1, '2020-09-21 12:07:04', 0, NULL, 0, NULL, 1),
(608, 544, '3', 'Anna University', '', 'B.E.', '2016', 76.20, '', 1, '2020-09-21 12:13:16', 0, NULL, 0, NULL, 1),
(609, 546, '3', 'State board', '', 'Bca', '2020', 7.20, '', 1, '2020-09-21 12:45:20', 0, NULL, 0, NULL, 1),
(610, 516, '3', 'Chennai university', '', 'Bsc(cS)', '2016', 65.00, '', 1, '2020-09-21 12:48:15', 1, '2020-09-21 12:57:49', 0, NULL, 0),
(611, 545, '3', 'deemed university', '', 'bca', '2020', 65.00, '', 1, '2020-09-21 12:51:19', 0, NULL, 0, NULL, 1),
(612, 516, '3', 'Chennai university', '', 'Bsc', '2016', 65.00, '', 1, '2020-09-21 12:57:28', 0, NULL, 0, NULL, 1),
(613, 547, '5', 'dote', '', 'dme', '2015', 70.00, '', 1, '2020-09-21 01:10:57', 0, NULL, 0, NULL, 1),
(614, 550, '3', 'Madras University', '', 'Bsc bio chemistry', '2014', 75.00, '', 1, '2020-09-21 01:45:37', 0, NULL, 0, NULL, 1),
(615, 554, '3', 'Madras University', '', 'B.com', '2020', 52.00, '', 1, '2020-09-21 03:49:49', 0, NULL, 0, NULL, 1),
(616, 551, '1', 'Periyar matric.hr sec .school', '', '', '2010', 61.00, '', 1, '2020-09-21 04:01:09', 0, NULL, 0, NULL, 1),
(617, 551, '2', 'K.b.j gurrukulam .mat .hr.school ', '', '', '2012', 63.00, '', 1, '2020-09-21 04:01:46', 0, NULL, 0, NULL, 1),
(618, 551, '3', 'Jaya college of arts and science', '', 'B.com general', '2015', 65.00, '', 1, '2020-09-21 04:02:21', 0, NULL, 0, NULL, 1),
(619, 555, '3', 'Madras University', '', 'B.com', '2020', 55.00, '', 1, '2020-09-21 04:03:01', 0, NULL, 0, NULL, 1),
(620, 561, '2', 'state board', '', '', '2018', 70.50, '', 1, '2020-09-21 08:27:59', 0, NULL, 0, NULL, 1),
(621, 562, '3', 'Madras University', '', 'B,sc ', '2016', 52.00, '', 1, '2020-09-21 11:59:50', 0, NULL, 0, NULL, 1),
(622, 563, '1', 'Matriculation', '', 'MBA', '2011', 78.00, '', 1, '2020-09-22 12:41:23', 0, NULL, 0, NULL, 1),
(623, 563, '2', 'Matriculation', '', '', '2013', 78.00, '', 1, '2020-09-22 12:41:38', 0, NULL, 0, NULL, 1),
(624, 563, '3', 'Anna university', '', 'B.tech', '2017', 60.00, '', 1, '2020-09-22 12:42:02', 0, NULL, 0, NULL, 1),
(625, 563, '4', 'Pondicherry University', '', 'MBA-HR', '2020', 60.00, '', 1, '2020-09-22 12:42:42', 0, NULL, 0, NULL, 1),
(626, 565, '3', 'Anna University', '', 'B.e cse', '2014', 69.00, '', 1, '2020-09-22 10:10:40', 0, NULL, 0, NULL, 1),
(627, 567, '5', 'university', '', 'DCE', '2011', 81.00, '', 1, '2020-09-22 10:22:18', 0, NULL, 0, NULL, 1),
(628, 566, '3', 'Annamalai University', '', 'B. Com', '2010', 62.00, '', 1, '2020-09-22 10:25:44', 0, NULL, 0, NULL, 1),
(629, 568, '3', 'Madras university ', '', 'B. SC computer science ', '2003', 60.00, '', 1, '2020-09-22 10:39:39', 0, NULL, 0, NULL, 1),
(630, 569, '3', 'Anna University', '', 'BE - Mechanical', '2016', 69.00, '', 1, '2020-09-22 10:57:50', 0, NULL, 0, NULL, 1),
(631, 569, '1', 'State Board', '', '', '2010', 76.40, '', 1, '2020-09-22 10:58:47', 0, NULL, 0, NULL, 1),
(632, 569, '2', 'State Board', '', '', '2012', 78.50, '', 1, '2020-09-22 10:59:12', 0, NULL, 0, NULL, 1),
(633, 570, '4', 'Madras University', '', 'MSC', '2020', 79.00, '', 1, '2020-09-22 11:32:42', 0, NULL, 0, NULL, 1),
(634, 549, '3', 'Alagappa university ', '', 'B.COM ', '2019', 75.00, '', 1, '2020-09-22 12:01:46', 0, NULL, 0, NULL, 1),
(635, 556, '2', 'state board ', '', '', '2018', 70.50, '', 1, '2020-09-22 12:04:26', 0, NULL, 0, NULL, 1),
(636, 557, '3', 'Alagappa university ', '', 'B.com.cA', '2019', 75.00, '', 1, '2020-09-22 12:10:58', 0, NULL, 0, NULL, 1),
(637, 572, '2', 'State Board', '', '', '2014', 60.00, '', 1, '2020-09-22 12:23:47', 0, NULL, 0, NULL, 1),
(638, 572, '3', 'Madras university', '', 'B.com Bank Management', '2017', 71.00, '', 1, '2020-09-22 12:24:36', 0, NULL, 0, NULL, 1),
(639, 573, '3', 'rdfg', '', 'f', '2020', 82.00, '', 1, '2020-09-22 12:28:19', 0, NULL, 0, NULL, 1),
(640, 574, '3', 'Loyola College ', '', 'B. Com', '2017', 55.00, '', 1, '2020-09-22 12:39:45', 0, NULL, 0, NULL, 1),
(641, 574, '2', 'Santhome Hr Sec School ', '', '', '2013', 81.00, '', 1, '2020-09-22 12:40:45', 0, NULL, 0, NULL, 1),
(642, 574, '1', 'Santhome High school ', '', '', '2011', 86.00, '', 1, '2020-09-22 12:41:16', 0, NULL, 0, NULL, 1),
(643, 571, '3', 'Vels university ', '', 'B.com', '2020', 70.00, '', 1, '2020-09-22 01:06:49', 0, NULL, 0, NULL, 1),
(644, 575, '3', 'Madras university ', '', 'B.com general ', '2019', 60.00, '', 1, '2020-09-22 01:15:16', 1, '2020-09-22 01:17:44', 0, NULL, 0),
(645, 541, '4', 'Srm universit', '', 'MBA', '2020', 81.00, '', 8, '2020-09-22 01:44:52', 8, '2020-09-22 01:45:54', 0, NULL, 0),
(646, 576, '1', 'tamil nadu', '', '', '2003', 70.00, '', 1, '2020-09-22 01:51:46', 1, '2020-09-25 04:25:16', 0, NULL, 0),
(647, 576, '1', 'tamil nadu', '', '', '2003', 70.00, '', 1, '2020-09-22 01:51:51', 1, '2020-09-25 04:24:59', 0, NULL, 0),
(648, 576, '1', 'tamil nadu', '', '', '2003', 70.00, '', 1, '2020-09-22 01:52:20', 1, '2020-09-25 04:25:01', 0, NULL, 0),
(649, 384, '1', 'rffvfhfg', '', '', '2015', 65.00, '', 1, '2020-09-22 02:04:33', 1, '2020-09-22 03:00:14', 0, NULL, 1),
(650, 384, '2', 'rdgv', '', '', '2016', 65.00, '', 1, '2020-09-22 02:04:46', 1, '2020-09-22 03:00:21', 0, NULL, 1),
(651, 384, '3', 'rtretgb', '', 'ygymj', '2017', 76.00, '', 1, '2020-09-22 02:05:42', 1, '2020-09-22 03:00:33', 0, NULL, 1),
(652, 384, '4', 'qwfwfv', '', 'bhhll', '2016', 100.00, '', 1, '2020-09-22 02:06:31', 1, '2020-09-22 03:00:43', 0, NULL, 1),
(653, 530, '3', 'Anna university', '', 'BE', '2017', 75.00, '', 1, '2020-09-22 02:23:57', 0, NULL, 0, NULL, 1),
(654, 530, '3', 'Anna university', '', 'BE', '2017', 6.50, '', 1, '2020-09-22 02:45:21', 0, NULL, 0, NULL, 1),
(655, 530, '3', 'Anna university', '', 'BE', '2017', 6.50, '', 1, '2020-09-22 02:53:05', 0, NULL, 0, NULL, 1),
(656, 530, '3', 'B.e', '', '', '2017', 6.50, '', 1, '2020-09-22 02:57:59', 0, NULL, 0, NULL, 1),
(657, 384, '5', 'fdnnf', '', 'fngt', '2022', 76.00, '', 1, '2020-09-22 03:01:01', 0, NULL, 0, NULL, 1),
(658, 384, '1', 'etu', '', '', '2020', 76.00, '', 1, '2020-09-22 03:05:53', 0, NULL, 0, NULL, 1),
(659, 384, '3', 'sdbbe', '', 'rehrrh', '2020', 65.00, '', 1, '2020-09-22 03:07:07', 0, NULL, 0, NULL, 1),
(660, 384, '5', 'dffnj', '', 'fggnt', '2020', 65.00, '', 1, '2020-09-22 03:08:50', 0, NULL, 0, NULL, 1),
(661, 577, '1', 'State board', '', '', '2010', 81.00, '', 1, '2020-09-22 03:15:12', 0, NULL, 0, NULL, 1),
(662, 384, '4', 'rervg', '', 'jgyyjn', '2016', 76.00, '', 1, '2020-09-22 03:16:42', 0, NULL, 0, NULL, 1),
(663, 578, '3', 'Anna university', '', 'B. E', '2018', 74.00, '', 1, '2020-09-22 03:38:59', 0, NULL, 0, NULL, 1),
(664, 579, '4', 'Bharathidasan University, Trichy', '', 'M.A', '2019', 62.00, '', 1, '2020-09-22 04:29:40', 0, NULL, 0, NULL, 1),
(665, 582, '3', 'Bangalore university ', '', '', '2012', 70.00, '', 1, '2020-09-22 10:11:39', 0, NULL, 0, NULL, 1),
(666, 456, '1', 'state board', '', '', '2018', 85.00, '', 48, '2020-09-23 10:09:06', 0, NULL, 0, NULL, 1),
(667, 583, '3', 'Srm university', '', 'Btech', '2017', 76.00, '', 1, '2020-09-23 10:17:36', 0, NULL, 0, NULL, 1),
(668, 584, '3', 'meenakshi', '', 'b.com', '2018', 90.00, '', 1, '2020-09-23 10:22:43', 0, NULL, 0, NULL, 1),
(669, 589, '3', 'Bangalore ', '', 'Bcom', '2017', 50.00, '', 1, '2020-09-23 12:16:56', 0, NULL, 0, NULL, 1),
(670, 587, '3', 'anna university', '', 'ece', '2019', 70.00, '', 1, '2020-09-23 12:26:27', 0, NULL, 0, NULL, 1),
(671, 591, '4', 'msruas', '', 'masters', '2017', 60.00, '', 1, '2020-09-23 12:51:13', 0, NULL, 0, NULL, 1),
(672, 591, '3', 'anna university', '', 'be', '2011', 62.00, '', 1, '2020-09-23 12:52:20', 0, NULL, 0, NULL, 1),
(673, 592, '4', 'State', '', 'MA in journalism and mass Communication', '2018', 77.00, '', 1, '2020-09-23 01:10:02', 1, '2020-09-23 01:11:54', 0, NULL, 0),
(674, 592, '1', 'St euphrasias girls high school ', '', '', '2011', 44.00, '', 1, '2020-09-23 01:10:45', 1, '2020-09-23 01:12:48', 0, NULL, 1),
(675, 592, '3', 'St Joseph\'s college Autonomous ', '', 'BA', '2013', 54.00, '', 1, '2020-09-23 01:13:31', 0, NULL, 0, NULL, 1),
(676, 592, '4', 'Bangalore university ', '', 'MA', '2018', 77.00, '', 1, '2020-09-23 01:14:04', 0, NULL, 0, NULL, 1),
(677, 594, '3', 'Bangalore University', '', 'BCA', '2018', 69.00, '', 1, '2020-09-23 01:23:30', 0, NULL, 0, NULL, 1),
(678, 592, '2', 'St Joseph\'s college ', '', '', '2013', 58.00, '', 1, '2020-09-23 01:30:15', 0, NULL, 0, NULL, 1),
(679, 590, '3', 'Madras university ', '', 'B.sc', '2020', 70.00, '', 1, '2020-09-23 01:35:27', 0, NULL, 0, NULL, 1),
(680, 595, '5', 'Tamilnadu open University', '', 'B.a. ECONOMICS', '2023', 65.00, '', 1, '2020-09-23 02:00:48', 0, NULL, 0, NULL, 1),
(681, 596, '1', 'Sir MV vishveshwaraiya school', '', '', '2013', 47.00, '', 1, '2020-09-23 02:10:29', 0, NULL, 0, NULL, 1),
(682, 596, '2', 'Dr ambetkar college', '', '', '2015', 43.00, '', 1, '2020-09-23 02:11:24', 0, NULL, 0, NULL, 1),
(683, 598, '3', 'Madras university ', '', 'B.sc', '2020', 79.00, '', 1, '2020-09-23 03:06:58', 0, NULL, 0, NULL, 1),
(684, 601, '3', 'anna university', '', 'be', '2015', 73.00, '', 1, '2020-09-23 07:31:30', 0, NULL, 0, NULL, 1),
(685, 602, '1', 'sdgbedhrfh', '', '', '2016', 87.00, '', 1, '2020-09-23 07:36:57', 0, NULL, 0, NULL, 1),
(686, 603, '3', 'Periyar university', '', 'bca', '2020', 70.00, '', 1, '2020-09-24 08:50:33', 0, NULL, 0, NULL, 1),
(687, 604, '4', 'Kalasalingam deemed university', '', 'Mba', '2017', 6.25, '', 1, '2020-09-24 10:54:37', 0, NULL, 0, NULL, 1),
(688, 604, '3', 'Madurai Kamaraj University', '', 'BBA', '2015', 5.45, '', 1, '2020-09-24 10:56:04', 0, NULL, 0, NULL, 1),
(689, 605, '4', 'Annamalai university', '', 'MBA', '2011', 73.00, '', 1, '2020-09-24 11:05:41', 0, NULL, 0, NULL, 1),
(690, 606, '3', 'Madras university', '', 'Bcom.CA', '2019', 68.00, '', 1, '2020-09-24 11:15:11', 0, NULL, 0, NULL, 1),
(691, 610, '3', 'Anna University', '', 'Bachelor\'s  of Engineering', '2015', 66.00, '', 1, '2020-09-24 12:10:55', 0, NULL, 0, NULL, 1),
(692, 608, '3', 'Madras university ', '', 'Bca', '2019', 50.00, '', 1, '2020-09-24 12:22:29', 0, NULL, 0, NULL, 1),
(693, 613, '3', 'Pondicherry university', '', 'bsc ', '2014', 6.50, '', 1, '2020-09-24 12:29:36', 0, NULL, 0, NULL, 1),
(694, 612, '2', 'Govt higher secondary school', '', '', '2002', 62.00, '', 1, '2020-09-24 01:01:53', 0, NULL, 0, NULL, 1),
(695, 614, '3', 'annamalai university', '', 'bachlor of arts', '2017', 78.00, '', 1, '2020-09-24 01:16:55', 0, NULL, 0, NULL, 1),
(696, 615, '3', 'Muthai ammal', '', 'B.sc computer science', '2010', 65.00, '', 1, '2020-09-24 01:24:14', 0, NULL, 0, NULL, 1),
(697, 616, '4', 'Tiruvalluvar University', '', 'Mcom', '2014', 62.45, '', 1, '2020-09-24 01:26:05', 0, NULL, 0, NULL, 1),
(698, 612, '1', 'Govt higher secondary school', '', '', '2002', 62.00, '', 1, '2020-09-24 01:40:59', 0, NULL, 0, NULL, 1),
(699, 617, '4', 'Annamalai univercity', '', 'Mba', '2017', 70.00, '', 1, '2020-09-24 05:30:49', 0, NULL, 0, NULL, 1),
(700, 617, '4', 'Annamalai univercity', '', 'Mba', '2017', 70.00, '', 1, '2020-09-24 05:35:20', 0, NULL, 0, NULL, 1),
(701, 619, '2', 'state', '', 'b.a.arabic', '2017', 70.00, '', 1, '2020-09-24 07:00:57', 0, NULL, 0, NULL, 1),
(702, 621, '1', 'kerala', '', '', '2010', 67.00, '', 1, '2020-09-25 10:45:27', 0, NULL, 0, NULL, 1),
(703, 621, '2', 'nios', '', '', '2013', 65.00, '', 1, '2020-09-25 10:46:01', 0, NULL, 0, NULL, 1),
(704, 620, '3', 'Thiruvalur universitu', '', 'Bca', '2020', 80.00, '', 1, '2020-09-25 10:47:25', 0, NULL, 0, NULL, 1),
(705, 621, '3', 'nios', '', 'bba', '2023', 50.00, '', 1, '2020-09-25 10:47:40', 0, NULL, 0, NULL, 1),
(706, 625, '4', 'bharathiyar university', '', 'mba', '2018', 60.00, '', 1, '2020-09-25 10:55:54', 0, NULL, 0, NULL, 1),
(707, 625, '3', 'tiruvallur university', '', 'bba', '2014', 59.00, '', 1, '2020-09-25 10:56:18', 0, NULL, 0, NULL, 1),
(708, 625, '2', 'state borad', '', '', '2013', 65.00, '', 1, '2020-09-25 10:56:46', 0, NULL, 0, NULL, 1),
(709, 623, '5', 'Anna university', '', '', '2009', 81.00, '', 1, '2020-09-25 11:41:26', 0, NULL, 0, NULL, 1),
(710, 626, '3', 'Madras University', '', 'B.com', '2018', 60.00, '', 1, '2020-09-25 11:47:00', 0, NULL, 0, NULL, 1),
(711, 627, '3', 'Anna University', '', 'B.E', '2014', 65.00, '', 1, '2020-09-25 12:03:30', 0, NULL, 0, NULL, 1),
(712, 627, '2', 'State board', '', '', '2010', 63.00, '', 1, '2020-09-25 12:04:08', 0, NULL, 0, NULL, 1),
(713, 627, '1', 'State board', '', '', '2008', 74.00, '', 1, '2020-09-25 12:04:54', 0, NULL, 0, NULL, 1),
(714, 628, '2', 'board', '', '', '1998', 60.00, '', 1, '2020-09-25 12:06:08', 0, NULL, 0, NULL, 1),
(715, 629, '3', 'University of madras', '', 'B. A', '2020', 70.00, '', 1, '2020-09-25 12:16:56', 0, NULL, 0, NULL, 1),
(716, 631, '3', 'Mk university', '', 'B. Com', '2018', 60.00, '', 1, '2020-09-25 12:25:32', 0, NULL, 0, NULL, 1),
(717, 628, '3', 'Karnataka board pre university', '', '', '2000', 50.00, '', 1, '2020-09-25 12:49:33', 0, NULL, 0, NULL, 1),
(718, 632, '4', 'Anna university ', '', 'MBA', '2014', 65.00, '', 1, '2020-09-25 12:53:09', 0, NULL, 0, NULL, 1),
(719, 632, '4', 'Anna university ', '', 'MBA', '2014', 65.00, '', 1, '2020-09-25 01:02:42', 0, NULL, 0, NULL, 1),
(720, 632, '4', 'Anna university ', '', 'MBA', '2014', 65.00, '', 1, '2020-09-25 01:16:52', 0, NULL, 0, NULL, 1),
(721, 633, '3', 'Madras university', '', '.B.com', '2019', 72.00, '', 1, '2020-09-25 01:46:00', 0, NULL, 0, NULL, 1),
(722, 634, '3', 'university of madras', '', 'bsc software application ', '2016', 67.00, '', 1, '2020-09-25 01:48:14', 0, NULL, 0, NULL, 1),
(723, 638, '3', 'crescent university', '', 'b.tech', '2017', 61.00, '', 1, '2020-09-25 02:49:35', 0, NULL, 0, NULL, 1),
(724, 642, '3', 'Madras University', '', 'BCA', '2020', 70.00, '', 1, '2020-09-25 02:55:39', 0, NULL, 0, NULL, 1),
(725, 640, '3', 'Anna university', '', 'B.E( Electronic communication Engineering)', '2018', 6.69, '', 1, '2020-09-25 02:56:12', 0, NULL, 0, NULL, 1),
(726, 641, '3', 'anna university', '', 'be.eee', '2018', 69.00, '', 1, '2020-09-25 03:16:34', 0, NULL, 0, NULL, 1),
(727, 644, '3', 'Dr mgr Educational and research institute University', '', 'B.tech it', '2018', 7.64, '', 1, '2020-09-25 03:35:59', 0, NULL, 0, NULL, 1),
(728, 576, '1', 'xdg', '', '', '2020', 82.00, '', 1, '2020-09-25 04:25:18', 1, '2020-09-25 04:26:00', 0, NULL, 0),
(729, 576, '1', 'tamil nadu', '', '', '2004', 70.00, '', 1, '2020-09-25 04:26:33', 0, NULL, 0, NULL, 1),
(730, 645, '4', 'madras university', '', 'b.com commerce', '2020', 64.00, '', 1, '2020-09-25 04:38:09', 0, NULL, 0, NULL, 1),
(731, 648, '3', 'University', '', 'B.sc mathematics', '2020', 69.00, '', 1, '2020-09-25 07:42:38', 0, NULL, 0, NULL, 1),
(732, 650, '3', 'anna university', '', 'bca', '2011', 78.00, '', 1, '2020-09-26 10:24:45', 0, NULL, 0, NULL, 1),
(733, 650, '4', 'madras', '', 'mca', '2014', 85.00, '', 1, '2020-09-26 10:25:09', 0, NULL, 0, NULL, 1),
(734, 650, '1', 'state', '', '', '2010', 91.00, '', 1, '2020-09-26 10:26:01', 0, NULL, 0, NULL, 1),
(735, 651, '4', 'anna uni', '', 'be', '2019', 70.00, '', 1, '2020-09-26 10:27:53', 0, NULL, 0, NULL, 1),
(736, 636, '3', 'Madras University', '', 'B.com', '2019', 71.00, '', 1, '2020-09-26 11:04:43', 0, NULL, 0, NULL, 1),
(737, 653, '3', 'Thiruvalluvar University', '', 'B. COM', '2015', 65.00, '', 1, '2020-09-26 11:21:46', 0, NULL, 0, NULL, 1),
(738, 646, '3', 'Alagappa University', '', 'B.com', '2020', 83.00, '', 1, '2020-09-26 11:36:24', 0, NULL, 0, NULL, 1),
(739, 654, '3', 'Madras University', '', 'B.com( Corporate Secretaryship)', '2017', 75.00, '', 1, '2020-09-26 11:42:50', 0, NULL, 0, NULL, 1),
(740, 655, '3', 'Alagappa university', '', 'b.con', '2020', 75.00, '', 1, '2020-09-26 12:00:26', 0, NULL, 0, NULL, 1),
(741, 647, '4', 'Maduras university', '', 'Bsc Maths', '2020', 65.00, '', 1, '2020-09-26 12:01:48', 0, NULL, 0, NULL, 1),
(742, 652, '3', 'University', '', 'B.sc mathematics', '2020', 65.00, '', 1, '2020-09-26 12:13:44', 0, NULL, 0, NULL, 1),
(743, 662, '3', 'Bharadhithasan university', '', 'Bsc physics', '2018', 78.00, '', 1, '2020-09-28 08:55:37', 0, NULL, 0, NULL, 1),
(744, 637, '1', 'Private', '', '', '2010', 48.00, '', 1, '2020-09-28 09:08:06', 0, NULL, 0, NULL, 1),
(745, 663, '3', 'justice basheer ahmed college for women', '', 'b.com', '2020', 58.00, '', 1, '2020-09-28 10:29:53', 0, NULL, 0, NULL, 1),
(746, 664, '3', 'University of madras ', '', 'B.sc computer science', '2020', 80.00, '', 1, '2020-09-28 11:08:56', 0, NULL, 0, NULL, 1),
(747, 665, '1', 'State board', '', '', '2005', 53.00, '', 1, '2020-09-28 11:24:25', 0, NULL, 0, NULL, 1),
(748, 665, '2', 'State  board', '', '', '2007', 54.00, '', 1, '2020-09-28 11:25:38', 0, NULL, 0, NULL, 1),
(749, 665, '5', 'Bharathiar  University', '', '', '2008', 45.00, '', 1, '2020-09-28 11:26:57', 0, NULL, 0, NULL, 1),
(750, 668, '4', 'Anna University', '', 'MBA', '2019', 73.00, '', 1, '2020-09-28 11:30:00', 0, NULL, 0, NULL, 1),
(751, 667, '3', 'Madras University', '', 'B.com ', '2018', 66.00, '', 1, '2020-09-28 11:34:18', 0, NULL, 0, NULL, 1),
(752, 670, '3', 'University of madras', '', 'BBA', '2014', 70.00, '', 1, '2020-09-28 11:34:20', 0, NULL, 0, NULL, 1),
(753, 671, '3', 'Madras University', '', 'BCA', '2020', 70.00, '', 1, '2020-09-28 11:35:20', 0, NULL, 0, NULL, 1),
(754, 667, '2', 'State board of Tamil Nadu', '', '', '2015', 61.00, '', 1, '2020-09-28 11:35:39', 0, NULL, 0, NULL, 1),
(755, 667, '1', 'State board of Tamil Nadu', '', '', '2013', 75.00, '', 1, '2020-09-28 11:36:10', 0, NULL, 0, NULL, 1),
(756, 669, '3', 'Madras university 72', '', 'Bcom', '2018', 72.00, '', 1, '2020-09-28 11:40:12', 0, NULL, 0, NULL, 1),
(757, 669, '2', 'State Board', '', '', '2015', 77.00, '', 1, '2020-09-28 11:40:45', 0, NULL, 0, NULL, 1),
(758, 669, '1', 'State Board', '', '', '2013', 60.00, '', 1, '2020-09-28 11:41:13', 0, NULL, 0, NULL, 1),
(759, 676, '4', 'Madras University ', '', 'MSc Biochemistry ', '2019', 71.00, '', 1, '2020-09-28 11:52:50', 0, NULL, 0, NULL, 1),
(760, 666, '3', 'Stateboard', '', 'B. Com dis con', '2008', 60.00, '', 1, '2020-09-28 11:52:50', 0, NULL, 0, NULL, 1),
(761, 672, '5', 'Dote', '', 'Diploma in mechanical engineering', '2017', 68.00, '', 1, '2020-09-28 12:08:24', 0, NULL, 0, NULL, 1),
(762, 673, '5', 'Dote', '', 'Diploma in automobile engineering', '2018', 65.00, '', 1, '2020-09-28 12:08:29', 0, NULL, 0, NULL, 1),
(763, 677, '4', 'Anna university ', '', 'Mca', '2016', 74.00, '', 1, '2020-09-28 12:11:32', 0, NULL, 0, NULL, 1),
(764, 680, '3', 'Anna university', '', 'Mechanical engineering', '2017', 67.00, '', 1, '2020-09-28 12:14:58', 0, NULL, 0, NULL, 1),
(765, 674, '3', 'Pachaiyappa\'s college ', '', 'B. Com', '2018', 65.00, '', 1, '2020-09-28 12:15:02', 0, NULL, 0, NULL, 1),
(766, 679, '3', 'Madras University', '', 'B.com', '2020', 70.00, '', 1, '2020-09-28 12:23:39', 0, NULL, 0, NULL, 1),
(767, 683, '3', 'Jerusalem College of Engineering', '', 'B.E', '2018', 69.50, '', 1, '2020-09-28 12:26:55', 0, NULL, 0, NULL, 1),
(768, 684, '3', 'Jerusalem college of engineering', '', 'BE(ECE)', '2018', 70.00, '', 1, '2020-09-28 12:27:53', 0, NULL, 0, NULL, 1),
(769, 683, '2', 'State Board', '', '', '2012', 84.25, '', 1, '2020-09-28 12:29:29', 0, NULL, 0, NULL, 1),
(770, 683, '1', 'State Board', '', '', '2012', 88.00, '', 1, '2020-09-28 12:29:56', 0, NULL, 0, NULL, 1),
(771, 684, '1', 'State Board', '', '', '2012', 86.70, '', 1, '2020-09-28 12:33:29', 0, NULL, 0, NULL, 1),
(772, 684, '2', 'State Board', '', '', '2014', 70.10, '', 1, '2020-09-28 12:33:54', 0, NULL, 0, NULL, 1),
(773, 681, '3', 'madras university', '', 'b.a English', '2019', 45.00, '', 1, '2020-09-28 12:38:00', 0, NULL, 0, NULL, 1),
(774, 675, '3', 'Pachaiyappa\'s college ', '', 'B. Com', '2018', 65.00, '', 1, '2020-09-28 12:40:22', 0, NULL, 0, NULL, 1),
(775, 685, '3', 'Madras University', '', 'B.com', '2020', 70.00, '', 1, '2020-09-28 12:46:01', 0, NULL, 0, NULL, 1),
(776, 682, '3', 'Madarase University', '', 'BA.English', '2019', 45.00, '', 1, '2020-09-28 12:47:49', 0, NULL, 0, NULL, 1),
(777, 686, '3', 'Madras University', '', 'B.COM', '2020', 65.00, '', 1, '2020-09-28 01:04:23', 0, NULL, 0, NULL, 1),
(778, 687, '4', 'Alagappa university ', '', 'Msc (IT) ', '2020', 84.00, '', 1, '2020-09-28 01:10:27', 0, NULL, 0, NULL, 1),
(779, 678, '1', 'Nil', '', '', '0007', 60.00, '', 1, '2020-09-28 01:17:21', 0, NULL, 0, NULL, 1),
(780, 689, '4', 'Alagappa University ', '', 'MSC (IT)', '2020', 78.00, '', 1, '2020-09-28 01:20:59', 0, NULL, 0, NULL, 1),
(781, 689, '4', 'Alagappa University ', '', 'MSC (IT)', '2020', 80.00, '', 1, '2020-09-28 01:22:31', 0, NULL, 0, NULL, 1),
(782, 690, '5', 'Dote', '', 'Diploma', '2014', 67.00, '', 1, '2020-09-28 01:32:06', 0, NULL, 0, NULL, 1),
(783, 691, '3', 'sourashtra college', '', 'bcom(computer application)', '2016', 60.00, '', 1, '2020-09-28 01:47:07', 0, NULL, 0, NULL, 1),
(784, 691, '4', 'institute of cooperative management', '', 'MBA', '2019', 62.00, '', 1, '2020-09-28 01:47:55', 0, NULL, 0, NULL, 1),
(785, 694, '3', 'Anna University', '', 'B.E', '2020', 7.60, '', 1, '2020-09-28 02:27:16', 0, NULL, 0, NULL, 1),
(786, 695, '3', 'Thiruvalluvar University', '', 'Bsc computer science', '2020', 6.20, '', 1, '2020-09-28 02:38:33', 0, NULL, 0, NULL, 1),
(787, 696, '4', 'Alagappa University', '', 'MSW', '2019', 70.00, '', 1, '2020-09-28 02:41:49', 0, NULL, 0, NULL, 1),
(788, 693, '3', 'Madras University', '', 'B.c.a', '2014', 55.00, '', 1, '2020-09-28 02:43:54', 0, NULL, 0, NULL, 1),
(789, 692, '3', 'Thiruvalluvar University', '', 'Bsc computer science', '2020', 7.50, '', 1, '2020-09-28 02:46:54', 0, NULL, 0, NULL, 1),
(790, 698, '3', 'Anna university', '', 'BE(CSE)', '2018', 7.07, '', 1, '2020-09-28 03:23:39', 0, NULL, 0, NULL, 1),
(791, 699, '3', 'University of medras', '', 'Bsc (cs)', '2018', 79.00, '', 1, '2020-09-28 04:19:03', 0, NULL, 0, NULL, 1),
(792, 700, '3', 'Madras university', '', 'B.com(CA)', '2017', 68.00, '', 1, '2020-09-29 11:00:25', 0, NULL, 0, NULL, 1),
(793, 704, '3', 'University', '', 'Bsc biochemistry and biotechnology', '2019', 52.00, '', 1, '2020-09-29 11:12:49', 0, NULL, 0, NULL, 1),
(794, 703, '3', 'Thiruvalluvar University', '', 'Bsc biotechnology', '2019', 77.00, '', 1, '2020-09-29 11:12:51', 0, NULL, 0, NULL, 1),
(795, 0, '4', 'Crescent university ', '', 'MBA', '2020', 78.00, '', 1, '2020-09-29 11:15:05', 1, '2020-09-30 04:08:34', 0, NULL, 0),
(796, 705, '4', 'Bharadhidhasan University', '', 'Information technology', '2020', 82.00, '', 1, '2020-09-29 11:23:03', 0, NULL, 0, NULL, 1),
(797, 707, '3', 'Thangavelu engineering College', '', 'Civil Engineering', '2018', 60.00, '', 1, '2020-09-29 11:47:31', 1, '2020-09-29 11:48:45', 0, NULL, 1),
(798, 659, '4', 'Anna university', '', 'B.E', '2018', 65.00, '', 1, '2020-09-29 11:58:57', 0, NULL, 0, NULL, 1),
(799, 659, '2', 'State board', '', '', '2014', 65.00, '', 1, '2020-09-29 11:59:30', 0, NULL, 0, NULL, 1),
(800, 659, '1', 'State board', '', '', '2012', 73.00, '', 1, '2020-09-29 11:59:58', 0, NULL, 0, NULL, 1),
(801, 702, '3', 'Anna university', '', 'BE EEE', '2016', 78.00, '', 1, '2020-09-29 12:07:18', 0, NULL, 0, NULL, 1),
(802, 708, '4', 'Mgr university ', '', 'Mba', '2017', 73.00, '', 1, '2020-09-29 12:10:01', 0, NULL, 0, NULL, 1),
(803, 701, '5', 'anna university', '', 'electronic a nd communication engineering', '2012', 80.00, '', 1, '2020-09-29 12:10:17', 0, NULL, 0, NULL, 1),
(804, 688, '5', 'Anna university', '', 'EEE diploma', '2019', 65.00, '', 1, '2020-09-29 12:11:03', 0, NULL, 0, NULL, 1),
(805, 701, '1', 'gayathri matric higher sec school', '', '', '2009', 50.00, '', 1, '2020-09-29 12:11:52', 0, NULL, 0, NULL, 1),
(806, 688, '2', 'State board', '', '', '2016', 55.00, '', 1, '2020-09-29 12:12:28', 0, NULL, 0, NULL, 1),
(807, 688, '1', 'State board', '', '', '2014', 50.00, '', 1, '2020-09-29 12:12:53', 0, NULL, 0, NULL, 1),
(808, 711, '3', 'Autonomous', '', 'B.com (Honours)', '2020', 71.00, '', 1, '2020-09-29 12:32:22', 0, NULL, 0, NULL, 1),
(809, 710, '3', 'Autonomous ', '', 'Bcom(honours)', '2020', 76.00, '', 1, '2020-09-29 12:32:24', 0, NULL, 0, NULL, 1),
(810, 713, '3', 'University', '', 'B.E', '2019', 7.38, '', 1, '2020-09-29 12:42:31', 0, NULL, 0, NULL, 1),
(811, 718, '1', 'Goverment', '', '', '2017', 70.00, '', 1, '2020-09-29 01:43:33', 0, NULL, 0, NULL, 1),
(812, 719, '3', 'SRM University', '', 'BE', '2018', 7.20, '', 1, '2020-09-29 01:45:31', 0, NULL, 0, NULL, 1),
(813, 721, '3', 'Madras university', '', 'Bsc-computer Science ', '2015', 68.00, '', 1, '2020-09-29 02:01:26', 0, NULL, 0, NULL, 1),
(814, 717, '3', 'Quaid e Millath college for women', '', 'Bsc computer science', '2020', 75.00, '', 1, '2020-09-29 02:45:49', 0, NULL, 0, NULL, 1),
(815, 723, '3', 'Quaid  E Millath Government College for women', '', 'B.Sc computer science', '2020', 76.00, '', 1, '2020-09-29 03:02:27', 0, NULL, 0, NULL, 1),
(816, 724, '4', 'University of Madras', '', 'MBA (HR)', '2008', 64.00, '', 1, '2020-09-29 03:37:03', 0, NULL, 0, NULL, 1),
(817, 724, '3', 'University of Madras', '', 'B.Com', '2006', 60.00, '', 1, '2020-09-29 03:40:38', 0, NULL, 0, NULL, 1),
(818, 724, '2', 'State Board', '', '', '2003', 80.00, '', 1, '2020-09-29 03:41:40', 0, NULL, 0, NULL, 1),
(819, 724, '1', 'State board', '', '', '2001', 70.00, '', 1, '2020-09-29 03:43:14', 0, NULL, 0, NULL, 1),
(820, 722, '3', 'm g r university', '', 'b.tech', '2019', 78.00, '', 1, '2020-09-29 04:10:58', 0, NULL, 0, NULL, 1),
(821, 728, '4', 'Bharathidasan University', '', 'MHRM', '2015', 70.00, '', 1, '2020-09-29 04:19:00', 0, NULL, 0, NULL, 1),
(822, 731, '1', 'Prakash matric hr sec school', '', '', '2011', 48.00, '', 1, '2020-09-29 05:17:29', 0, NULL, 0, NULL, 1),
(823, 730, '5', 'State Board ', '', 'Diploma ', '2017', 70.00, '', 1, '2020-09-29 05:18:18', 0, NULL, 0, NULL, 1),
(824, 734, '4', 'pondicherry ', '', 'mba- ib', '2015', 56.00, '', 1, '2020-09-29 05:53:56', 0, NULL, 0, NULL, 1),
(825, 734, '3', 'anna university', '', 'b.e ece', '2010', 65.00, '', 1, '2020-09-29 05:54:52', 0, NULL, 0, NULL, 1),
(826, 737, '3', 'University ', '', 'B. COM (honours)', '2021', 64.00, '', 1, '2020-09-29 06:27:44', 0, NULL, 0, NULL, 1),
(827, 735, '3', 'University', '', 'Bca', '2020', 6.10, '', 1, '2020-09-29 06:29:34', 0, NULL, 0, NULL, 1),
(828, 739, '3', 'Tamil nadu open University', '', 'B.sc', '2013', 52.16, '', 1, '2020-09-29 07:03:48', 0, NULL, 0, NULL, 1),
(829, 729, '4', 'madras university', '', 'mba', '2019', 65.00, '', 1, '2020-09-29 08:46:12', 1, '2020-09-29 08:46:43', 0, NULL, 1),
(830, 729, '3', 'the new college', '', 'b.sc', '2017', 72.00, '', 1, '2020-09-29 08:47:10', 0, NULL, 0, NULL, 1),
(831, 729, '2', 'state board', '', '', '2014', 63.00, '', 1, '2020-09-29 08:47:36', 0, NULL, 0, NULL, 1),
(832, 729, '1', 'state board', '', '', '2012', 80.00, '', 1, '2020-09-29 08:48:00', 0, NULL, 0, NULL, 1),
(833, 742, '1', 'state board', '', '', '2004', 59.75, '', 1, '2020-09-29 09:52:29', 0, NULL, 0, NULL, 1),
(834, 742, '2', 'state board', '', '', '2006', 62.00, '', 1, '2020-09-29 09:53:31', 0, NULL, 0, NULL, 1),
(835, 742, '3', 'madras university', '', 'b.com', '2009', 59.20, '', 1, '2020-09-29 09:54:29', 0, NULL, 0, NULL, 1),
(836, 742, '4', 'madras university', '', 'm.com', '2011', 70.00, '', 1, '2020-09-29 09:55:20', 0, NULL, 0, NULL, 1),
(837, 742, '4', 'anna university', '', 'mba', '2013', 65.00, '', 1, '2020-09-29 09:56:42', 0, NULL, 0, NULL, 1),
(838, 744, '3', 'Thiruvalluvar University', '', 'B com', '2018', 55.00, '', 1, '2020-09-30 10:55:42', 0, NULL, 0, NULL, 1),
(839, 745, '3', 'Guru Nanak college (madras university)', '', 'BBA (BUSINESS ADMINISTRATION)', '2020', 76.00, '', 1, '2020-09-30 11:11:23', 0, NULL, 0, NULL, 1),
(840, 746, '3', 'Madras University( gurunanak college)', '', 'B.A Economics', '2020', 65.00, '', 1, '2020-09-30 11:12:30', 0, NULL, 0, NULL, 1),
(841, 747, '4', 'bharadhidasan university', '', 'mba', '2010', 72.00, '', 1, '2020-09-30 11:35:35', 0, NULL, 0, NULL, 1),
(842, 748, '3', 'Madras university', '', 'BA (economics)', '2016', 61.00, '', 1, '2020-09-30 11:48:40', 0, NULL, 0, NULL, 1),
(843, 751, '3', 'University', '', 'B.E', '2020', 6.80, '', 1, '2020-09-30 11:54:26', 0, NULL, 0, NULL, 1),
(844, 744, '2', 'State board', '', '', '2015', 62.00, '', 1, '2020-09-30 12:08:02', 0, NULL, 0, NULL, 1),
(845, 744, '1', 'State board', '', '', '2013', 57.00, '', 1, '2020-09-30 12:08:43', 0, NULL, 0, NULL, 1),
(846, 714, '3', 'University', '', 'B.com (accounting & finance', '2020', 60.00, '', 1, '2020-09-30 12:14:30', 1, '2020-09-30 12:23:58', 0, NULL, 1),
(847, 749, '3', 'Madras university', '', 'B.sc phy', '2015', 72.00, '', 1, '2020-09-30 12:17:40', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(848, 752, '3', 'Madras university of chennai', '', 'B.sc mathematics', '2020', 63.00, '', 1, '2020-09-30 12:28:56', 0, NULL, 0, NULL, 1),
(849, 755, '3', 'Madras University of Chennai ', '', 'Bsc mathematics ', '2020', 63.00, '', 1, '2020-09-30 12:29:19', 0, NULL, 0, NULL, 1),
(850, 753, '4', 'University', '', 'B.sc Computer science', '2019', 65.00, '', 1, '2020-09-30 12:30:05', 0, NULL, 0, NULL, 1),
(851, 756, '3', 'Anna university', '', 'Computer science engineering', '2016', 79.90, '', 1, '2020-09-30 12:32:45', 0, NULL, 0, NULL, 1),
(852, 743, '3', 'Barathidasan', '', 'B.sc mathematics', '2010', 70.00, '', 1, '2020-09-30 12:39:51', 0, NULL, 0, NULL, 1),
(853, 759, '3', 'SRM Institute of Science and Technology', '', 'BSC Computer science', '2020', 72.80, '', 1, '2020-09-30 01:01:54', 0, NULL, 0, NULL, 1),
(854, 757, '4', 'Alagappa University', '', 'MBA', '2004', 60.00, '', 1, '2020-09-30 01:04:22', 0, NULL, 0, NULL, 1),
(855, 757, '3', 'University of Madras', '', 'B com', '2004', 75.00, '', 1, '2020-09-30 01:05:26', 0, NULL, 0, NULL, 1),
(856, 760, '3', 'Manav Bharati University', '', 'BCA', '2012', 60.00, '', 1, '2020-09-30 01:05:31', 0, NULL, 0, NULL, 1),
(857, 757, '2', 'State board', '', '', '2001', 70.00, '', 1, '2020-09-30 01:05:52', 0, NULL, 0, NULL, 1),
(858, 757, '1', 'Matriculation', '', '', '1999', 65.00, '', 1, '2020-09-30 01:06:25', 0, NULL, 0, NULL, 1),
(859, 183, '3', 'madrass universit', '', 'bsc', '2020', 60.00, '', 8, '2020-09-30 01:13:26', 0, NULL, 0, NULL, 1),
(860, 736, '3', 'ethiraj college', '', 'ba ', '2018', 65.00, '', 1, '2020-09-30 01:13:39', 0, NULL, 0, NULL, 1),
(861, 716, '3', 'bharathidasan university', '', 'bachelor of computer applications', '2019', 60.23, '', 1, '2020-09-30 01:15:41', 0, NULL, 0, NULL, 1),
(862, 761, '3', 'Adhi college of engineering and technology ', '', 'BE', '2020', 8.45, '', 1, '2020-09-30 01:16:51', 0, NULL, 0, NULL, 1),
(863, 736, '2', 'st oseph', '', '', '2015', 60.00, '', 1, '2020-09-30 01:16:53', 1, '2020-09-30 01:17:05', 0, NULL, 0),
(864, 763, '3', 'Madras university ', '', 'B.com', '2018', 75.00, '', 1, '2020-09-30 01:22:56', 0, NULL, 0, NULL, 1),
(865, 763, '2', 'State board ', '', '', '2015', 75.00, '', 1, '2020-09-30 01:29:34', 0, NULL, 0, NULL, 1),
(866, 763, '1', 'State board ', '', '', '2014', 80.00, '', 1, '2020-09-30 01:29:59', 0, NULL, 0, NULL, 1),
(867, 726, '3', 'Bharathidasan', '', 'B.C.A', '2018', 68.00, '', 1, '2020-09-30 01:42:14', 0, NULL, 0, NULL, 1),
(868, 764, '1', 'state board', '', '', '2000', 62.00, '', 1, '2020-09-30 01:58:41', 0, NULL, 0, NULL, 1),
(869, 764, '2', 'sate board', '', '', '2002', 52.00, '', 1, '2020-09-30 01:59:11', 0, NULL, 0, NULL, 1),
(870, 764, '3', 'madras uviversity', '', 'bsc cycology', '2009', 65.00, '', 1, '2020-09-30 02:00:20', 0, NULL, 0, NULL, 1),
(871, 758, '3', 'Madras university', '', 'BBA', '2016', 70.00, '', 1, '2020-09-30 02:42:46', 0, NULL, 0, NULL, 1),
(872, 768, '3', 'university of madras', '', 'b.a', '2012', 60.00, '', 1, '2020-09-30 02:55:54', 0, NULL, 0, NULL, 1),
(873, 769, '4', 'university', '', 'mba', '2020', 80.00, '', 1, '2020-09-30 03:24:26', 0, NULL, 0, NULL, 1),
(874, 770, '4', 'Anna University', '', 'MBA', '2020', 78.00, '', 1, '2020-09-30 04:06:53', 0, NULL, 0, NULL, 1),
(875, 765, '4', 'pondicherry university', '', 'm.b.a in human resource management', '2020', 60.00, '', 1, '2020-09-30 04:10:00', 0, NULL, 0, NULL, 1),
(876, 765, '5', 'loyola institute of vocational education', '', 'p g d h r m', '2017', 77.00, '', 1, '2020-09-30 04:10:40', 0, NULL, 0, NULL, 1),
(877, 765, '3', 'stella maris college', '', 'b a english literature', '2016', 63.00, '', 1, '2020-09-30 04:11:15', 0, NULL, 0, NULL, 1),
(878, 772, '3', 'Anna university', '', 'BE', '2016', 70.00, '', 1, '2020-09-30 05:16:02', 0, NULL, 0, NULL, 1),
(879, 770, '4', 'Anna University', '', 'MBA', '2020', 78.00, '', 1, '2020-09-30 05:50:07', 0, NULL, 0, NULL, 1),
(880, 778, '4', 'jaya engineering college ', '', 'mba    hr ', '2020', 65.00, '', 1, '2020-09-30 06:03:06', 0, NULL, 0, NULL, 1),
(881, 297, '3', 'Madras university ', '', 'BCA', '2020', 72.00, '', 1, '2020-09-30 06:06:21', 0, NULL, 0, NULL, 1),
(882, 781, '4', 'B.S. Abdur Rahman Crescent Institute of Science and technology', '', 'MBA', '2020', 90.00, '', 1, '2020-09-30 06:15:49', 0, NULL, 0, NULL, 1),
(883, 781, '3', 'Anna university', '', 'BE', '2017', 85.00, '', 1, '2020-09-30 06:16:11', 0, NULL, 0, NULL, 1),
(884, 781, '2', 'State Board', '', '', '2013', 87.00, '', 1, '2020-09-30 06:17:16', 0, NULL, 0, NULL, 1),
(885, 781, '1', 'State Board', '', '', '2011', 89.00, '', 1, '2020-09-30 06:18:05', 0, NULL, 0, NULL, 1),
(886, 779, '4', 'Bharathiar University', '', 'MBA', '2019', 63.00, '', 1, '2020-09-30 06:20:00', 0, NULL, 0, NULL, 1),
(887, 779, '3', 'Bharathiar University', '', 'B.com', '2017', 72.00, '', 1, '2020-09-30 06:20:26', 0, NULL, 0, NULL, 1),
(888, 782, '4', 'Anna University ', '', 'HR recuriter ', '2020', 8.00, '', 1, '2020-09-30 06:53:40', 0, NULL, 0, NULL, 1),
(889, 776, '4', 'university of madras', '', 'mba', '2018', 70.00, '', 1, '2020-09-30 06:57:06', 0, NULL, 0, NULL, 1),
(890, 785, '4', 'Anna University', '', 'MBA', '2018', 66.00, '', 1, '2020-10-01 12:22:44', 0, NULL, 0, NULL, 1),
(891, 786, '3', 'Thiruvalluvar University', '', 'B. Sc mathematics', '2018', 75.00, '', 1, '2020-10-01 09:08:52', 0, NULL, 0, NULL, 1),
(892, 787, '3', 'Anna University', '', 'BSC cs', '2020', 54.00, '', 1, '2020-10-01 10:00:30', 0, NULL, 0, NULL, 1),
(893, 788, '3', 'Madrass university', '', 'BA English lit', '2014', 48.00, '', 1, '2020-10-01 10:32:11', 0, NULL, 0, NULL, 1),
(894, 791, '3', 'University of Madras', '', 'B.Com(General)', '2020', 70.00, '', 1, '2020-10-01 10:40:14', 0, NULL, 0, NULL, 1),
(895, 790, '3', 'Madras university', '', 'B. Sc mathematics', '2020', 69.00, '', 1, '2020-10-01 10:42:44', 0, NULL, 0, NULL, 1),
(896, 777, '4', 'srm university', '', 'mba', '2018', 6.50, '', 1, '2020-10-01 10:44:29', 0, NULL, 0, NULL, 1),
(897, 795, '3', 'Sethu institute of technology ', '', 'BE', '2018', 7.80, '', 1, '2020-10-01 10:48:27', 0, NULL, 0, NULL, 1),
(898, 789, '3', 'Madras university', '', 'B.com', '2020', 65.00, '', 1, '2020-10-01 10:48:54', 0, NULL, 0, NULL, 1),
(899, 799, '2', 'State board', '', '', '2010', 75.00, '', 1, '2020-10-01 10:59:44', 0, NULL, 0, NULL, 1),
(900, 793, '3', 'Thiruvallur University', '', 'Bsc. Computer Science', '2020', 66.00, '', 1, '2020-10-01 11:00:21', 0, NULL, 0, NULL, 1),
(901, 798, '3', 'Thiruvalluvar university', '', 'Bsc. computer Science', '2020', 70.25, '', 1, '2020-10-01 11:00:28', 0, NULL, 0, NULL, 1),
(902, 797, '3', 'Thiruvallur University', '', 'BSC computer science', '2020', 65.00, '', 1, '2020-10-01 11:05:31', 0, NULL, 0, NULL, 1),
(903, 801, '4', 'Anna University', '', 'Mba', '2015', 65.00, '', 1, '2020-10-01 11:08:27', 0, NULL, 0, NULL, 1),
(904, 800, '4', 'anna univer ', '', 'mba', '2013', 76.00, '', 1, '2020-10-01 11:14:53', 0, NULL, 0, NULL, 1),
(905, 801, '4', 'Anna University', '', 'Mba', '2015', 65.00, '', 1, '2020-10-01 11:16:33', 0, NULL, 0, NULL, 1),
(906, 800, '3', 'bharathidhasan unive ', '', 'b.sc', '2011', 71.00, '', 1, '2020-10-01 11:19:27', 0, NULL, 0, NULL, 1),
(907, 800, '2', 'nadar hr.sec school', '', '', '2008', 71.00, '', 1, '2020-10-01 11:20:16', 0, NULL, 0, NULL, 1),
(908, 800, '1', 'nadar hr.sec school', '', '', '2006', 74.00, '', 1, '2020-10-01 11:20:55', 0, NULL, 0, NULL, 1),
(909, 802, '3', 'Madras University', '', 'BCA', '2020', 79.00, '', 1, '2020-10-01 11:31:27', 0, NULL, 0, NULL, 1),
(910, 803, '3', 'Tamil nadu open university ', '', 'Ba', '2010', 55.00, '', 1, '2020-10-01 11:38:45', 0, NULL, 0, NULL, 1),
(911, 773, '3', 'Sengunthar engg college', '', 'BE', '2016', 73.20, '', 1, '2020-10-01 11:40:00', 0, NULL, 0, NULL, 1),
(912, 794, '3', 'Thiruvallur University', '', 'Bsc. Computer Science', '2020', 64.00, '', 1, '2020-10-01 11:40:13', 0, NULL, 0, NULL, 1),
(913, 783, '3', 'Srm university', '', 'Bsc', '2020', 9.00, '', 1, '2020-10-01 12:00:54', 0, NULL, 0, NULL, 1),
(914, 806, '3', 'Anna university', '', 'B. E', '2020', 70.00, '', 1, '2020-10-01 12:50:24', 0, NULL, 0, NULL, 1),
(915, 808, '4', 'Itm University', '', 'MBA', '2017', 70.00, '', 1, '2020-10-01 01:08:58', 0, NULL, 0, NULL, 1),
(916, 805, '3', 'Madurai kamaraj university ', '', 'Chemistry', '2017', 64.00, '', 1, '2020-10-01 01:12:01', 0, NULL, 0, NULL, 1),
(917, 810, '3', 'Madras university', '', 'B.sc', '2011', 76.00, '', 1, '2020-10-01 01:33:37', 0, NULL, 0, NULL, 1),
(918, 812, '3', 'Anna university ', '', 'B.E', '2020', 72.00, '', 1, '2020-10-01 01:37:14', 0, NULL, 0, NULL, 1),
(919, 811, '3', 'Anna University', '', 'B.E', '2020', 76.00, '', 1, '2020-10-01 01:38:55', 0, NULL, 0, NULL, 1),
(920, 814, '3', 'Madras University', '', 'B. Com', '2020', 79.00, '', 1, '2020-10-01 01:50:23', 0, NULL, 0, NULL, 1),
(921, 815, '3', 'Loyola college ', '', 'BA', '2020', 65.00, '', 1, '2020-10-01 01:52:23', 0, NULL, 0, NULL, 1),
(922, 816, '3', 'Stella maris college', '', 'B.com(general)', '2018', 53.00, '', 1, '2020-10-01 02:00:55', 0, NULL, 0, NULL, 1),
(923, 818, '3', 'Madras University', '', 'B.com', '2020', 76.00, '', 1, '2020-10-01 02:15:08', 0, NULL, 0, NULL, 1),
(924, 808, '4', 'Itm University', '', 'MBA', '2017', 70.00, '', 1, '2020-10-01 02:22:54', 0, NULL, 0, NULL, 1),
(925, 820, '4', 'Prist University ', '', 'MBA finaces marketing ', '2018', 76.00, '', 1, '2020-10-01 02:46:03', 0, NULL, 0, NULL, 1),
(926, 821, '2', 'Matriculation', '', '', '2009', 84.00, '', 1, '2020-10-01 03:07:29', 0, NULL, 0, NULL, 1),
(927, 821, '1', 'Matriculation', '', '', '2007', 80.00, '', 1, '2020-10-01 03:08:25', 0, NULL, 0, NULL, 1),
(928, 821, '3', 'Bharathidasan', '', 'BCA', '2012', 82.00, '', 1, '2020-10-01 03:10:27', 0, NULL, 0, NULL, 1),
(929, 821, '4', 'Bharathidasan', '', 'MBA', '2014', 86.00, '', 1, '2020-10-01 03:11:31', 0, NULL, 0, NULL, 1),
(930, 766, '3', 'St. Peter\'s institute of higher education and research ', '', 'BCA', '2019', 70.00, '', 1, '2020-10-01 03:22:21', 0, NULL, 0, NULL, 1),
(931, 822, '3', 'anna university', '', 'b.tech ', '2012', 6.50, '', 1, '2020-10-01 03:32:42', 0, NULL, 0, NULL, 1),
(932, 824, '4', 'Anna university', '', 'MCA', '2015', 68.00, '', 1, '2020-10-01 04:55:18', 0, NULL, 0, NULL, 1),
(933, 796, '3', 'madras university', '', 'b.a criminology and police administration', '2020', 80.00, '', 1, '2020-10-01 06:07:41', 0, NULL, 0, NULL, 1),
(934, 785, '4', 'Anna University', '', 'MBA', '2018', 66.00, '', 1, '2020-10-01 08:36:12', 0, NULL, 0, NULL, 1),
(935, 785, '3', 'Madras university', '', 'Nutrion and Dietetics', '2015', 60.00, '', 1, '2020-10-01 08:37:10', 0, NULL, 0, NULL, 1),
(936, 785, '2', 'St.Johns Matriculation ', '', '', '2012', 57.00, '', 1, '2020-10-01 08:37:38', 0, NULL, 0, NULL, 1),
(937, 827, '4', 'Madras university ', '', 'MBA ', '2019', 69.50, '', 1, '2020-10-02 08:58:59', 0, NULL, 0, NULL, 1),
(938, 827, '3', 'Anna university ', '', 'MBA ', '2019', 75.50, '', 1, '2020-10-02 08:59:56', 1, '2020-10-02 09:01:04', 0, NULL, 0),
(939, 827, '3', 'Anna University ', '', 'B.E', '2017', 75.50, '', 1, '2020-10-02 09:01:49', 0, NULL, 0, NULL, 1),
(940, 827, '2', 'State board ', '', '', '2013', 79.00, '', 1, '2020-10-02 09:17:07', 0, NULL, 0, NULL, 1),
(941, 827, '1', 'Matriculation ', '', '', '2011', 86.50, '', 1, '2020-10-02 09:17:44', 0, NULL, 0, NULL, 1),
(942, 828, '3', 'Madras univercity', '', 'B com General', '2018', 60.00, '', 1, '2020-10-02 12:26:47', 0, NULL, 0, NULL, 1),
(943, 829, '3', 'Anna university chennai', '', 'B. E computer science ', '2019', 6.27, '', 1, '2020-10-02 01:27:19', 0, NULL, 0, NULL, 1),
(944, 830, '3', 'Manonmaniam sundaranar university ', '', 'Bachelor of computer application', '2020', 7.70, '', 1, '2020-10-02 01:41:25', 0, NULL, 0, NULL, 1),
(945, 830, '2', 'Ramaswamy.Pillai.Hr.Sec school', '', '', '2017', 83.00, '', 1, '2020-10-02 01:42:11', 0, NULL, 0, NULL, 1),
(946, 830, '1', 'Ramaswamy.Pillai.Hr.Sec', '', '', '2015', 90.00, '', 1, '2020-10-02 01:42:37', 0, NULL, 0, NULL, 1),
(947, 831, '4', 'madras university', '', 'MBA', '2013', 73.00, '', 1, '2020-10-02 01:46:59', 0, NULL, 0, NULL, 1),
(948, 833, '4', 'Anna university', '', 'MBA', '2013', 68.00, '', 1, '2020-10-02 02:13:26', 0, NULL, 0, NULL, 1),
(949, 835, '3', 'C.B.S.E', '', '10th pass', '2013', 73.00, '', 1, '2020-10-02 03:37:52', 1, '2020-10-02 03:39:17', 0, NULL, 0),
(950, 835, '3', 'Rajiv Gandhi Proudyogiki Vishwavidyalaya', '', 'B.E.', '2020', 76.60, '', 1, '2020-10-02 03:41:01', 0, NULL, 0, NULL, 1),
(951, 836, '3', 'Anna University', '', 'BE', '2019', 67.50, '', 1, '2020-10-02 04:32:07', 0, NULL, 0, NULL, 1),
(952, 839, '4', 'VIT ', '', 'MCA ', '2020', 7.83, '', 1, '2020-10-02 08:53:44', 0, NULL, 0, NULL, 1),
(953, 839, '3', 'VIT ', '', 'B.Sc Computer Science ', '2018', 7.94, '', 1, '2020-10-02 08:54:26', 0, NULL, 0, NULL, 1),
(954, 839, '2', 'State Board ', '', '', '2015', 71.00, '', 1, '2020-10-02 08:54:46', 0, NULL, 0, NULL, 1),
(955, 839, '1', 'State Board ', '', '', '2013', 78.00, '', 1, '2020-10-02 08:55:04', 0, NULL, 0, NULL, 1),
(956, 837, '4', 'Anna University', '', 'MCA', '2020', 77.00, '', 1, '2020-10-02 10:39:41', 0, NULL, 0, NULL, 1),
(957, 842, '3', 'Anna university', '', 'B. E', '2011', 60.00, '', 1, '2020-10-03 07:13:35', 0, NULL, 0, NULL, 1),
(958, 838, '3', 'Anna University', '', 'B.E', '2020', 62.00, '', 1, '2020-10-03 10:33:31', 0, NULL, 0, NULL, 1),
(959, 838, '2', 'State Board', '', '', '2016', 70.40, '', 1, '2020-10-03 10:40:04', 0, NULL, 0, NULL, 1),
(960, 838, '1', 'State Board', '', '', '2014', 94.40, '', 1, '2020-10-03 10:40:37', 0, NULL, 0, NULL, 1),
(961, 845, '3', 'Anna univ', '', 'Be', '2011', 68.00, '', 1, '2020-10-03 10:59:33', 0, NULL, 0, NULL, 1),
(962, 844, '3', 'alagappa university', '', 'bsc  physics', '2018', 75.00, '', 1, '2020-10-03 11:08:02', 0, NULL, 0, NULL, 1),
(963, 847, '5', 'Madras University', '', 'DME', '2015', 68.00, '', 1, '2020-10-03 11:10:47', 0, NULL, 0, NULL, 1),
(964, 847, '2', 'TN stateboard', '', '', '2012', 57.00, '', 1, '2020-10-03 11:11:31', 0, NULL, 0, NULL, 1),
(965, 847, '1', 'TN stateboard', '', '', '2010', 61.00, '', 1, '2020-10-03 11:12:08', 0, NULL, 0, NULL, 1),
(966, 843, '4', 'madras university', '', 'bba', '2017', 69.00, '', 1, '2020-10-03 11:26:42', 0, NULL, 0, NULL, 1),
(967, 850, '3', 'Madras University', '', 'B.B.A', '2018', 50.00, '', 1, '2020-10-03 11:35:50', 0, NULL, 0, NULL, 1),
(968, 851, '3', 'University of madras', '', 'B.com', '2001', 51.00, '', 1, '2020-10-03 11:41:31', 0, NULL, 0, NULL, 1),
(969, 819, '3', 'madras university', '', 'b.com', '2020', 74.00, '', 1, '2020-10-03 11:42:51', 0, NULL, 0, NULL, 1),
(970, 819, '2', 'state', '', '', '2017', 89.00, '', 1, '2020-10-03 11:43:44', 0, NULL, 0, NULL, 1),
(971, 819, '1', 'state', '', '', '2015', 93.00, '', 1, '2020-10-03 11:44:15', 0, NULL, 0, NULL, 1),
(972, 738, '4', 'madras university', '', 'msw', '2020', 71.44, '', 1, '2020-10-03 11:54:01', 0, NULL, 0, NULL, 1),
(973, 738, '3', 'madras university', '', 'bba', '2018', 64.55, '', 1, '2020-10-03 11:54:55', 0, NULL, 0, NULL, 1),
(974, 851, '2', 'State board of higher secondary', '', '', '1998', 78.00, '', 1, '2020-10-03 12:00:03', 0, NULL, 0, NULL, 1),
(975, 851, '1', 'State board of high school', '', '', '1996', 47.00, '', 1, '2020-10-03 12:00:38', 0, NULL, 0, NULL, 1),
(976, 852, '3', 'Madras university', '', 'BBA', '2019', 60.00, '', 1, '2020-10-03 12:05:16', 0, NULL, 0, NULL, 1),
(977, 825, '3', 'jntua university', '', '', '2017', 60.00, '', 1, '2020-10-03 12:15:40', 0, NULL, 0, NULL, 1),
(978, 853, '3', 'University', '', 'BCA', '2011', 70.00, '', 1, '2020-10-03 12:22:49', 0, NULL, 0, NULL, 1),
(979, 846, '1', 'St Raphael\'s girls hhigher secondary school ', '', '', '2015', 50.00, '', 1, '2020-10-03 12:33:24', 0, NULL, 0, NULL, 1),
(980, 840, '3', 'Lady  willinton  higher  secondry school ', '', 'Justice  basheer  ahamed  sayed  for  women', '2013', 52.00, '', 1, '2020-10-03 01:13:41', 0, NULL, 0, NULL, 1),
(981, 859, '3', 'Anna University', '', 'BE cse', '2018', 75.00, '', 1, '2020-10-03 01:23:47', 0, NULL, 0, NULL, 1),
(982, 860, '4', 'Deemed university', '', 'BE', '2019', 87.00, '', 1, '2020-10-03 01:37:30', 1, '2020-10-03 01:39:33', 0, NULL, 0),
(983, 860, '2', 'AKT school', '', '', '2015', 67.00, '', 1, '2020-10-03 01:38:27', 0, NULL, 0, NULL, 1),
(984, 860, '1', 'AKT SCHOOL', '', '', '2013', 85.00, '', 1, '2020-10-03 01:39:19', 0, NULL, 0, NULL, 1),
(985, 861, '3', 'Bangalore University', '', 'B.com', '2020', 82.00, '', 1, '2020-10-03 01:46:40', 0, NULL, 0, NULL, 1),
(986, 858, '1', 'Anna University', '', '', '2017', 65.00, '', 1, '2020-10-03 01:54:12', 0, NULL, 0, NULL, 1),
(987, 864, '3', 'Anna university ', '', 'BE', '2019', 61.80, '', 1, '2020-10-03 01:56:38', 0, NULL, 0, NULL, 1),
(988, 863, '3', 'Bharathithasan University', '', 'Bachelor of computer application', '2017', 68.00, '', 1, '2020-10-03 01:58:49', 0, NULL, 0, NULL, 1),
(989, 862, '3', 'Bangalore University', '', 'B.com', '2020', 82.00, '', 1, '2020-10-03 02:10:09', 0, NULL, 0, NULL, 1),
(990, 865, '1', 'Govt boys hr sec school kallakurichi', '', '', '2016', 76.00, '', 1, '2020-10-03 02:13:52', 0, NULL, 0, NULL, 1),
(991, 865, '2', 'Govt boys hr sec school kallakurichi', '', '', '2018', 56.00, '', 1, '2020-10-03 02:15:38', 0, NULL, 0, NULL, 1),
(992, 660, '1', 'Anna University', '', '', '2017', 62.00, '', 1, '2020-10-03 02:16:57', 0, NULL, 0, NULL, 1),
(993, 869, '3', 'university of medras', '', 'bca', '2020', 60.00, '', 1, '2020-10-03 05:10:58', 1, '2020-10-03 05:12:19', 0, NULL, 0),
(994, 869, '2', 'state board', '', '', '2017', 60.00, '', 1, '2020-10-03 05:11:39', 1, '2020-10-03 05:12:23', 0, NULL, 0),
(995, 869, '1', 'state board', '', '', '2015', 81.41, '', 1, '2020-10-03 05:12:58', 0, NULL, 0, NULL, 1),
(996, 869, '2', 'state board', '', '', '2017', 60.00, '', 1, '2020-10-03 05:13:47', 0, NULL, 0, NULL, 1),
(997, 869, '3', 'madras unversity', '', 'bca', '2020', 60.00, '', 1, '2020-10-03 05:14:29', 0, NULL, 0, NULL, 1),
(998, 870, '3', 'kerala technical univercity', '', 'b tech', '2019', 60.00, '', 1, '2020-10-03 05:53:27', 0, NULL, 0, NULL, 1),
(999, 870, '1', 'kerala state board', '', '', '2013', 82.00, '', 1, '2020-10-03 05:54:06', 0, NULL, 0, NULL, 1),
(1000, 870, '2', 'kerala state highersecondary board', '', '', '2015', 80.00, '', 1, '2020-10-03 05:54:35', 0, NULL, 0, NULL, 1),
(1001, 872, '3', 'University College of engineering Nagercoil', '', 'B.E', '2019', 61.00, '', 1, '2020-10-03 07:18:18', 0, NULL, 0, NULL, 1),
(1002, 872, '2', '21st century Metric Higher secondary school Sivaganga', '', '', '2015', 88.30, '', 1, '2020-10-03 07:19:02', 0, NULL, 0, NULL, 1),
(1003, 872, '1', 'St Joseph\'s Metric Higher secondary school Sivaganga', '', '', '2013', 91.20, '', 1, '2020-10-03 07:19:33', 0, NULL, 0, NULL, 1),
(1004, 873, '3', 'University College of engineering Nagercoil', '', 'B.E', '2019', 61.00, '', 1, '2020-10-03 08:26:58', 0, NULL, 0, NULL, 1),
(1005, 854, '1', 'eve matriculation', '', '', '2010', 70.60, '', 1, '2020-10-04 12:01:54', 1, '2020-10-04 12:10:54', 0, NULL, 1),
(1006, 854, '2', 'eve matriculation', '', '', '2012', 58.50, '', 1, '2020-10-04 12:02:21', 1, '2020-10-04 12:11:18', 0, NULL, 1),
(1007, 854, '3', 'bharath university', '', 'b.tech', '2016', 65.50, '', 1, '2020-10-04 12:03:16', 0, NULL, 0, NULL, 1),
(1008, 875, '3', 'anna university', '', 'be', '2020', 69.00, '', 1, '2020-10-04 09:10:23', 0, NULL, 0, NULL, 1),
(1009, 874, '1', 'Govt Boys\' higher secondary school madhukkur', '', '', '2012', 45.00, '', 1, '2020-10-05 12:51:37', 0, NULL, 0, NULL, 1),
(1010, 874, '2', 'Govt boys hr sec school kanniyakurichi', '', '', '2014', 60.30, '', 1, '2020-10-05 12:52:29', 0, NULL, 0, NULL, 1),
(1011, 874, '3', 'Avvm Sri puspam arts& science colege', '', 'B.c.a', '2017', 59.90, '', 1, '2020-10-05 12:54:01', 0, NULL, 0, NULL, 1),
(1012, 874, '4', 'Dhanalakshmi srivasan engg college', '', 'M.c.a', '2019', 6.50, '', 1, '2020-10-05 12:55:21', 0, NULL, 0, NULL, 1),
(1013, 877, '3', 'Madras University', '', 'BBA', '2020', 80.00, '', 1, '2020-10-05 06:43:50', 0, NULL, 0, NULL, 1),
(1014, 878, '3', 'Madras University', '', 'Bsc', '2019', 72.00, '', 1, '2020-10-05 09:44:42', 1, '2020-10-05 11:37:14', 0, NULL, 1),
(1015, 879, '5', 'Bss', '', 'Hotel management and catering sciences', '2015', 80.00, '', 1, '2020-10-05 09:55:46', 0, NULL, 0, NULL, 1),
(1016, 879, '3', 'Madurai kamarajar university DDE', '', 'Tourism and hospitality management', '2016', 54.00, '', 1, '2020-10-05 09:56:47', 0, NULL, 0, NULL, 1),
(1017, 880, '3', 'Anna University ', '', 'B.E(ECE)', '2019', 64.00, '', 1, '2020-10-05 10:02:31', 1, '2020-10-05 11:41:48', 0, NULL, 1),
(1018, 881, '4', 'Periyar university ', '', 'MBA', '2016', 69.90, '', 1, '2020-10-05 10:05:37', 0, NULL, 0, NULL, 1),
(1019, 882, '3', 'Madras university', '', 'B.sc mathematics', '2020', 55.00, '', 1, '2020-10-05 10:38:24', 0, NULL, 0, NULL, 1),
(1020, 883, '3', 'DR. C.V. Raman university', '', 'bca', '2017', 67.00, '', 1, '2020-10-05 10:48:53', 0, NULL, 0, NULL, 1),
(1021, 727, '3', 'Dbja ', '', 'Bca ', '2015', 65.00, '', 1, '2020-10-05 10:51:08', 0, NULL, 0, NULL, 1),
(1022, 878, '5', 'DOTE', '', 'Diploma', '2015', 86.00, '', 1, '2020-10-05 11:01:47', 0, NULL, 0, NULL, 1),
(1023, 885, '3', 'Madras university ', '', 'BBA', '2020', 80.00, '', 1, '2020-10-05 11:02:58', 0, NULL, 0, NULL, 1),
(1024, 888, '3', 'Anna University', '', 'B.tech', '2018', 67.50, '', 1, '2020-10-05 11:30:14', 0, NULL, 0, NULL, 1),
(1025, 889, '3', 'University ', '', 'B. Com', '2006', 50.00, '', 1, '2020-10-05 11:44:10', 0, NULL, 0, NULL, 1),
(1026, 890, '3', 'Madras university ', '', 'Bba', '2020', 79.00, '', 1, '2020-10-05 11:44:34', 0, NULL, 0, NULL, 1),
(1027, 894, '3', 'Madras university', '', 'Bsc', '2019', 74.00, '', 1, '2020-10-05 12:21:06', 0, NULL, 0, NULL, 1),
(1028, 860, '3', 'Avit', '', 'Be', '2019', 87.00, '', 1, '2020-10-05 12:21:55', 0, NULL, 0, NULL, 1),
(1029, 896, '1', 'Matriculation ', '', 'Btech IT', '2011', 94.00, '', 1, '2020-10-05 12:41:53', 0, NULL, 0, NULL, 1),
(1030, 896, '2', 'Matriculation ', '', '', '2013', 91.00, '', 1, '2020-10-05 12:42:31', 0, NULL, 0, NULL, 1),
(1031, 897, '4', 'Annamalai ', '', 'Mg english', '2018', 60.00, '', 1, '2020-10-05 12:53:38', 0, NULL, 0, NULL, 1),
(1032, 897, '4', 'Annamalai', '', 'mA', '2018', 60.00, '', 1, '2020-10-05 12:54:35', 0, NULL, 0, NULL, 1),
(1033, 891, '3', 'Bangalore University', '', 'B.com', '2020', 75.00, '', 1, '2020-10-05 01:03:04', 0, NULL, 0, NULL, 1),
(1034, 893, '2', 'Ramakrishna', '', '', '2016', 70.00, '', 1, '2020-10-05 01:12:21', 0, NULL, 0, NULL, 1),
(1035, 892, '3', 'alagappa university', '', 'BBA', '2008', 60.00, '', 1, '2020-10-05 01:16:18', 1, '2020-10-05 02:02:15', 0, NULL, 1),
(1036, 899, '4', 'Womens christian college ', '', 'M. A HRM', '2020', 70.00, '', 1, '2020-10-05 01:17:03', 0, NULL, 0, NULL, 1),
(1037, 900, '3', 'Bangalore university', '', 'BBM', '2012', 62.00, '', 1, '2020-10-05 01:23:04', 0, NULL, 0, NULL, 1),
(1038, 895, '3', 'Madras University', '', 'B.com', '2019', 60.00, '', 1, '2020-10-05 01:35:18', 0, NULL, 0, NULL, 1),
(1039, 898, '3', 'Madras University', '', 'bcom', '2018', 78.00, '', 1, '2020-10-05 01:36:22', 0, NULL, 0, NULL, 1),
(1040, 901, '3', 'The New college', '', 'BSC BE SC', '2014', 85.00, '', 1, '2020-10-05 01:43:48', 0, NULL, 0, NULL, 1),
(1041, 884, '3', 'anna university', '', 'be eee', '2019', 70.00, '', 1, '2020-10-05 02:36:14', 1, '2020-10-05 02:39:14', 0, NULL, 0),
(1042, 902, '3', 'anna university', '', 'be', '2020', 7.00, '', 1, '2020-10-05 02:51:54', 0, NULL, 0, NULL, 1),
(1043, 903, '3', 'Anna university', '', 'BE cSE', '2014', 69.00, '', 1, '2020-10-05 04:04:41', 0, NULL, 0, NULL, 1),
(1044, 905, '4', 'Madras university ', '', 'M. Com', '2020', 68.00, '', 1, '2020-10-05 04:30:17', 0, NULL, 0, NULL, 1),
(1045, 876, '3', 'Anna university', '', 'B.E - computer science engineering', '2019', 70.00, '', 1, '2020-10-05 08:24:55', 0, NULL, 0, NULL, 1),
(1046, 907, '3', 'Ms university', '', 'BBA', '2018', 62.00, '', 1, '2020-10-06 01:22:41', 0, NULL, 0, NULL, 1),
(1047, 909, '5', 'Board', '', 'DME', '2013', 68.30, '', 1, '2020-10-06 10:10:48', 0, NULL, 0, NULL, 1),
(1048, 912, '3', 'Anna University ', '', 'bE', '2016', 64.00, '', 1, '2020-10-06 10:39:00', 0, NULL, 0, NULL, 1),
(1049, 915, '3', 'Anna university ', '', 'B. Tech', '2019', 70.00, '', 1, '2020-10-06 10:49:14', 0, NULL, 0, NULL, 1),
(1050, 914, '4', 'Bharathidasan University Tiruchirappalli ', '', 'MCA ', '2020', 70.00, '', 1, '2020-10-06 10:50:09', 0, NULL, 0, NULL, 1),
(1051, 913, '4', 'Madras university ', '', 'M. Sc', '2020', 70.00, '', 1, '2020-10-06 10:59:21', 0, NULL, 0, NULL, 1),
(1052, 911, '3', 'University', '', 'B.com(ism)', '2020', 56.92, '', 1, '2020-10-06 11:03:43', 0, NULL, 0, NULL, 1),
(1053, 916, '3', 'Anna University', '', 'BE Computer science Engineering', '2014', 64.00, '', 1, '2020-10-06 11:15:33', 0, NULL, 0, NULL, 1),
(1054, 918, '3', 'Madras University', '', 'BBA', '2020', 78.00, '', 1, '2020-10-06 11:36:54', 0, NULL, 0, NULL, 1),
(1055, 917, '3', 'visvesvaraya technological university', '', 'b.e in computer science', '2020', 7.03, '', 1, '2020-10-06 11:37:18', 0, NULL, 0, NULL, 1),
(1056, 919, '3', 'anna university', '', 'be cse', '2019', 63.00, '', 1, '2020-10-06 11:41:14', 0, NULL, 0, NULL, 1),
(1057, 920, '1', 'State board', '', '', '2009', 45.00, '', 1, '2020-10-06 11:48:55', 0, NULL, 0, NULL, 1),
(1058, 920, '2', 'State board ', '', '', '2011', 60.00, '', 1, '2020-10-06 11:49:39', 0, NULL, 0, NULL, 1),
(1059, 920, '3', 'Madras university ', '', 'Bachelor of business Administration ', '2015', 50.00, '', 1, '2020-10-06 11:50:30', 0, NULL, 0, NULL, 1),
(1060, 920, '4', 'Anna university ', '', 'Master of business administration ', '2017', 60.00, '', 1, '2020-10-06 11:51:27', 1, '2020-10-06 11:52:11', 0, NULL, 0),
(1061, 921, '3', ' Government engineering college Ramanagara                                               ', '', 'be', '2016', 53.00, '', 1, '2020-10-06 11:52:19', 0, NULL, 0, NULL, 1),
(1062, 920, '4', 'Anna university ', '', 'Master of Business Administration ', '2017', 60.00, '', 1, '2020-10-06 11:52:54', 0, NULL, 0, NULL, 1),
(1063, 922, '3', 'VTU', '', 'Computer science and engineering', '2020', 6.12, '', 1, '2020-10-06 11:56:57', 0, NULL, 0, NULL, 1),
(1064, 922, '1', 'Karnataka State board', '', '', '2020', 87.00, '', 1, '2020-10-06 11:58:12', 0, NULL, 0, NULL, 1),
(1065, 923, '4', 'anna university', '', 'msc bio tech', '2013', 78.00, '', 1, '2020-10-06 11:59:13', 1, '2020-10-07 10:16:06', 0, NULL, 0),
(1066, 924, '3', 'madras', '', 'bba', '2008', 60.00, '', 1, '2020-10-06 12:47:59', 0, NULL, 0, NULL, 1),
(1067, 924, '2', 'state', '', '', '2004', 55.00, '', 1, '2020-10-06 12:48:24', 0, NULL, 0, NULL, 1),
(1068, 924, '1', 'matric', '', '', '2002', 50.00, '', 1, '2020-10-06 12:48:52', 0, NULL, 0, NULL, 1),
(1069, 884, '3', 'Anna university', '', 'B.E', '2019', 7.10, '', 1, '2020-10-06 01:00:54', 0, NULL, 0, NULL, 1),
(1070, 886, '3', 'Anna university ', '', 'B.E', '2019', 78.00, '', 1, '2020-10-06 01:03:15', 0, NULL, 0, NULL, 1),
(1071, 299, '2', 'Tamil nadu', '', '', '2016', 70.00, '', 7, '2020-10-06 01:09:21', 0, NULL, 0, NULL, 1),
(1072, 925, '3', 'University of Madras', '', 'B.SC Mathematics', '2015', 69.00, '', 1, '2020-10-06 01:10:26', 0, NULL, 0, NULL, 1),
(1073, 929, '3', 'ms university', '', 'bba', '2018', 62.00, '', 1, '2020-10-06 01:30:07', 0, NULL, 0, NULL, 1),
(1074, 930, '3', 'mahendra engineering college', '', 'b.e computer science and engineering', '2019', 7.38, '', 1, '2020-10-06 03:00:21', 0, NULL, 0, NULL, 1),
(1075, 930, '2', 'bala barathi matriculation higher secondary school', '', '', '2015', 58.00, '', 1, '2020-10-06 03:01:17', 1, '2020-10-06 03:01:39', 0, NULL, 0),
(1076, 930, '1', 'bala barathi matriculation higher secondary school', '', '', '2013', 84.00, '', 1, '2020-10-06 03:02:14', 0, NULL, 0, NULL, 1),
(1077, 930, '2', 'Bala Barathi Matriculation Higher Secondary School', '', '', '2015', 58.00, '', 1, '2020-10-06 03:02:44', 0, NULL, 0, NULL, 1),
(1078, 932, '5', 'Dr. Dharmambal womens polytechnic', '', 'Computer engineer in diploma', '2013', 89.00, '', 1, '2020-10-06 03:39:36', 0, NULL, 0, NULL, 1),
(1079, 933, '3', 'sdnb vaishnav college', '', 'bsc visual communication', '2020', 7.00, '', 1, '2020-10-06 03:58:48', 1, '2020-10-07 03:55:36', 0, NULL, 1),
(1080, 936, '3', 'autonomous', '', 'be', '2018', 68.00, '', 1, '2020-10-06 04:13:04', 0, NULL, 0, NULL, 1),
(1081, 939, '2', 'state board ', '', '', '2016', 60.00, '', 1, '2020-10-06 04:41:15', 0, NULL, 0, NULL, 1),
(1082, 940, '3', 'madras university', '', 'bcom', '2019', 6.00, '', 1, '2020-10-06 04:45:27', 0, NULL, 0, NULL, 1),
(1083, 942, '3', 'Anna university', '', 'BE ', '2015', 6.80, '', 1, '2020-10-06 05:03:19', 0, NULL, 0, NULL, 1),
(1084, 939, '1', 'state board', '', '', '2016', 60.00, '', 1, '2020-10-06 05:12:13', 0, NULL, 0, NULL, 1),
(1085, 943, '3', 'Anna University', '', 'B. E', '2018', 74.00, '', 1, '2020-10-06 05:16:59', 0, NULL, 0, NULL, 1),
(1086, 944, '3', 'university of madras', '', 'b.com cs', '2019', 65.00, '', 1, '2020-10-06 05:16:59', 0, NULL, 0, NULL, 1),
(1087, 945, '4', 'anna university', '', 'computer science', '2016', 79.00, '', 1, '2020-10-06 05:38:10', 0, NULL, 0, NULL, 1),
(1088, 945, '5', 'controller of education', '', 'computer science and engineering', '2013', 84.00, '', 1, '2020-10-06 05:39:18', 0, NULL, 0, NULL, 1),
(1089, 945, '2', 'state board', '', '', '2010', 65.40, '', 1, '2020-10-06 05:39:51', 1, '2020-10-06 05:40:02', 0, NULL, 1),
(1090, 947, '3', 'stella maris college', '', 'ba history', '2017', 65.00, '', 1, '2020-10-06 06:23:06', 0, NULL, 0, NULL, 1),
(1091, 948, '3', 'panimalar polytechnic college', '', 'diploma dce', '2018', 60.00, '', 1, '2020-10-06 06:31:54', 0, NULL, 0, NULL, 1),
(1092, 927, '3', 'Madras university', '', 'B.COM (ISM)', '2020', 73.00, '', 1, '2020-10-06 06:46:42', 0, NULL, 0, NULL, 1),
(1093, 941, '3', 'aktu', '', 'b.tech', '2019', 64.00, '', 1, '2020-10-06 07:04:44', 0, NULL, 0, NULL, 1),
(1094, 946, '2', 'state board', '', '', '2012', 89.00, '', 1, '2020-10-06 07:26:43', 1, '2020-10-06 07:26:51', 0, NULL, 0),
(1095, 946, '1', 'state board', '', '', '2012', 89.00, '', 1, '2020-10-06 07:27:08', 0, NULL, 0, NULL, 1),
(1096, 946, '2', 'state board', '', '', '2015', 70.00, '', 1, '2020-10-06 07:27:26', 0, NULL, 0, NULL, 1),
(1097, 946, '3', 'university of madras', '', 'bsc computer science', '2018', 79.00, '', 1, '2020-10-06 07:28:02', 0, NULL, 0, NULL, 1),
(1098, 946, '4', 'university of madras', '', 'm c a', '2020', 75.00, '', 1, '2020-10-06 07:28:29', 0, NULL, 0, NULL, 1),
(1099, 950, '3', 'autonomous', '', 'ba', '2019', 60.00, '', 1, '2020-10-06 09:07:23', 0, NULL, 0, NULL, 1),
(1100, 951, '3', 'madras university', '', 'b.com', '2019', 60.00, '', 1, '2020-10-06 09:16:58', 0, NULL, 0, NULL, 1),
(1101, 952, '3', 'madras university', '', 'bcom', '2019', 60.00, '', 1, '2020-10-06 09:28:03', 0, NULL, 0, NULL, 1),
(1102, 953, '3', 'Madras university', '', 'BCA', '2018', 80.00, '', 1, '2020-10-06 09:50:16', 0, NULL, 0, NULL, 1),
(1103, 954, '3', 'autonomous', '', 'ba', '2019', 60.00, '', 1, '2020-10-06 11:27:21', 0, NULL, 0, NULL, 1),
(1104, 931, '3', 'guru nanak college', '', 'ba economics', '2019', 68.00, '', 1, '2020-10-07 12:31:10', 0, NULL, 0, NULL, 1),
(1105, 923, '4', 'Madras', '', 'Biotechnology', '2013', 78.00, '', 1, '2020-10-07 10:10:10', 0, NULL, 0, NULL, 1),
(1106, 923, '4', 'Madras', '', 'Msc biotechnology', '2013', 78.00, '', 1, '2020-10-07 10:28:47', 0, NULL, 0, NULL, 1),
(1107, 955, '3', 'Madras University', '', 'Bsc (cs)', '2020', 74.00, '', 1, '2020-10-07 10:40:42', 0, NULL, 0, NULL, 1),
(1108, 957, '3', 'Anna University', '', 'BE CIVIL ENGINEERING', '2017', 82.00, '', 1, '2020-10-07 11:17:27', 0, NULL, 0, NULL, 1),
(1109, 908, '3', 'Anna University', '', 'B. e', '2019', 91.00, '', 1, '2020-10-07 11:24:27', 0, NULL, 0, NULL, 1),
(1110, 963, '1', 'matric', '', '', '2009', 61.00, '', 1, '2020-10-07 11:38:53', 0, NULL, 0, NULL, 1),
(1111, 963, '2', 'matric', '', '', '2011', 61.00, '', 1, '2020-10-07 11:39:23', 0, NULL, 0, NULL, 1),
(1112, 963, '3', 'anna university', '', ' b e electrical and electronics engineering', '2015', 67.00, '', 1, '2020-10-07 11:41:37', 0, NULL, 0, NULL, 1),
(1113, 948, '5', 'panimalar polytechnic college', '', 'DCE', '2019', 68.00, '', 1, '2020-10-07 11:52:12', 0, NULL, 0, NULL, 1),
(1114, 964, '1', 'state board', '', '', '2015', 79.00, '', 1, '2020-10-07 12:10:33', 0, NULL, 0, NULL, 1),
(1115, 964, '2', 'state board', '', '', '2017', 78.00, '', 1, '2020-10-07 12:11:05', 0, NULL, 0, NULL, 1),
(1116, 964, '3', 'madras ', '', 'b.com', '2020', 75.00, '', 1, '2020-10-07 12:11:45', 0, NULL, 0, NULL, 1),
(1117, 927, '1', 'Singaram pillai Matri hr sec school', '', 'b.com', '2015', 52.00, '', 1, '2020-10-07 12:12:47', 0, NULL, 0, NULL, 1),
(1118, 927, '2', 'Singaram pillai matri hr sec school', '', '', '2017', 58.00, '', 1, '2020-10-07 12:13:54', 0, NULL, 0, NULL, 1),
(1119, 959, '3', 'Board', '', 'B.com(A/f)', '2020', 64.00, '', 1, '2020-10-07 12:17:46', 0, NULL, 0, NULL, 1),
(1120, 960, '3', 'Board', '', 'BA. Sociology', '2020', 45.00, '', 1, '2020-10-07 12:18:52', 0, NULL, 0, NULL, 1),
(1121, 966, '1', 'stateboard', '', '', '2015', 80.00, '', 1, '2020-10-07 12:19:17', 0, NULL, 0, NULL, 1),
(1122, 966, '2', 'stateboard', '', '', '2017', 84.00, '', 1, '2020-10-07 12:19:45', 0, NULL, 0, NULL, 1),
(1123, 966, '3', 'madras university', '', 'b.com', '2020', 70.00, '', 1, '2020-10-07 12:20:40', 0, NULL, 0, NULL, 1),
(1124, 965, '3', 'Tiruvallur university', '', 'b.sc', '2018', 65.00, '', 1, '2020-10-07 12:28:16', 0, NULL, 0, NULL, 1),
(1125, 969, '4', 'LOYALA INSTITUTE OF TECHONOLGY', '', 'MBA', '2018', 68.00, '', 1, '2020-10-07 12:47:06', 0, NULL, 0, NULL, 1),
(1126, 967, '1', 'vailankanni mat hr sec school', '', '', '2012', 95.00, '', 1, '2020-10-07 12:49:51', 0, NULL, 0, NULL, 1),
(1127, 967, '2', 'Vailankanni Mat Hr Sec School', '', '', '2014', 90.00, '', 1, '2020-10-07 12:50:16', 0, NULL, 0, NULL, 1),
(1128, 967, '3', 'savetha engg college', '', 'b.e', '2018', 66.00, '', 1, '2020-10-07 12:51:01', 0, NULL, 0, NULL, 1),
(1129, 962, '3', 'quaid e millath for women autononums', '', 'ba', '2019', 70.00, '', 1, '2020-10-07 12:57:28', 1, '2020-10-07 02:59:48', 0, NULL, 1),
(1130, 947, '1', 'Little flowers Matriculation Higher Sec School', '', '', '2012', 62.00, '', 1, '2020-10-07 01:19:49', 0, NULL, 0, NULL, 1),
(1131, 970, '3', 'Thiruvalluvar university ', '', 'Bachelor of computer application ', '2020', 82.00, '', 1, '2020-10-07 01:24:39', 0, NULL, 0, NULL, 1),
(1132, 974, '4', 'University', '', 'Computer science', '2020', 62.00, '', 1, '2020-10-07 03:36:14', 0, NULL, 0, NULL, 1),
(1133, 975, '3', 'University', '', 'BBA', '2018', 65.00, '', 1, '2020-10-07 03:44:13', 0, NULL, 0, NULL, 1),
(1134, 956, '4', 'The New College autnomous', '', 'M.a Economics', '2019', 70.00, '', 1, '2020-10-07 04:31:48', 0, NULL, 0, NULL, 1),
(1135, 976, '3', 'Madras university', '', 'B. Sc biotechnology', '2020', 75.00, '', 1, '2020-10-07 06:27:33', 0, NULL, 0, NULL, 1),
(1136, 985, '3', 'Madras University', '', 'BA English literature', '2020', 61.00, '', 1, '2020-10-08 10:59:17', 0, NULL, 0, NULL, 1),
(1137, 987, '3', 'Sourastra college', '', 'Bsc', '2011', 75.00, '', 1, '2020-10-08 11:14:37', 0, NULL, 0, NULL, 1),
(1138, 978, '3', 'Madsar university', '', 'B.com ', '2020', 56.60, '', 1, '2020-10-08 11:32:03', 0, NULL, 0, NULL, 1),
(1139, 986, '3', 'Manonmaniam Sundaranar University', '', 'BCA', '2012', 50.00, '', 1, '2020-10-08 11:32:33', 0, NULL, 0, NULL, 1),
(1140, 989, '3', 'Anna university ', '', 'B. E', '2012', 69.30, '', 1, '2020-10-08 11:38:10', 0, NULL, 0, NULL, 1),
(1141, 988, '3', 'Madras University', '', 'B.com(ISM)', '2016', 70.00, '', 1, '2020-10-08 11:38:33', 0, NULL, 0, NULL, 1),
(1142, 977, '3', 'Madras University', '', 'B.com general', '2020', 65.00, '', 1, '2020-10-08 11:38:38', 0, NULL, 0, NULL, 1),
(1143, 984, '3', 'Golden valley integrated campus ', '', 'B,TECH', '2014', 56.00, '', 1, '2020-10-08 12:09:25', 0, NULL, 0, NULL, 1),
(1144, 993, '3', 'Madras university', '', 'B. B. A', '2017', 60.00, '', 1, '2020-10-08 12:18:03', 0, NULL, 0, NULL, 1),
(1145, 994, '3', 'Madras university ', '', 'B. Sc', '2020', 80.00, '', 1, '2020-10-08 12:20:26', 0, NULL, 0, NULL, 1),
(1146, 994, '2', 'State board ', '', '', '2017', 60.00, '', 1, '2020-10-08 12:21:49', 0, NULL, 0, NULL, 1),
(1147, 993, '2', 'State board', '', '', '2016', 68.00, '', 1, '2020-10-08 12:21:54', 0, NULL, 0, NULL, 1),
(1148, 994, '1', 'State board ', '', '', '2015', 80.00, '', 1, '2020-10-08 12:22:27', 0, NULL, 0, NULL, 1),
(1149, 993, '1', 'State board', '', '', '2014', 65.00, '', 1, '2020-10-08 12:22:28', 0, NULL, 0, NULL, 1),
(1150, 995, '3', 'Madras University', '', 'Bsc visual communication', '2019', 75.00, '', 1, '2020-10-08 12:33:19', 0, NULL, 0, NULL, 1),
(1151, 995, '2', 'State board', '', '', '2015', 85.00, '', 1, '2020-10-08 12:34:21', 0, NULL, 0, NULL, 1),
(1152, 999, '3', 'Anna university ', '', 'BE (electronic communication engineering) ', '2020', 66.00, '', 1, '2020-10-08 01:44:36', 1, '2020-10-08 01:45:45', 0, NULL, 0),
(1153, 996, '1', 'matriculation', '', '', '2011', 71.00, '', 1, '2020-10-08 01:46:49', 1, '2020-10-08 01:53:13', 0, NULL, 0),
(1154, 999, '3', 'Anna university ', '', 'BE(electronic and communication engineering) ', '2020', 66.00, '', 1, '2020-10-08 01:46:58', 0, NULL, 0, NULL, 1),
(1155, 996, '2', 'stateboard', '', '', '2013', 58.00, '', 1, '2020-10-08 01:47:21', 1, '2020-10-08 01:53:00', 0, NULL, 0),
(1156, 996, '3', 'madras university', '', 'b.sc computer science', '2016', 68.00, '', 1, '2020-10-08 01:48:26', 0, NULL, 0, NULL, 1),
(1157, 996, '4', 'madras university', '', 'm.c.a', '2020', 63.00, '', 1, '2020-10-08 01:49:00', 0, NULL, 0, NULL, 1),
(1158, 996, '1', 'matriculation', '', '', '2011', 71.00, '', 1, '2020-10-08 01:53:47', 0, NULL, 0, NULL, 1),
(1159, 996, '2', 'stateboard', '', '', '2013', 58.00, '', 1, '2020-10-08 01:54:15', 0, NULL, 0, NULL, 1),
(1160, 971, '3', 'Anna university', '', 'BE.ECE', '2019', 61.00, '', 1, '2020-10-08 01:55:07', 0, NULL, 0, NULL, 1),
(1161, 1001, '5', 'Madras university', '', 'DCT', '2003', 85.50, '', 1, '2020-10-08 02:13:29', 0, NULL, 0, NULL, 1),
(1162, 1000, '3', 'karpagam university', '', 'b.e', '2019', 6.60, '', 1, '2020-10-08 02:17:13', 0, NULL, 0, NULL, 1),
(1163, 1000, '2', 'state board', '', '', '2015', 52.00, '', 1, '2020-10-08 02:17:54', 0, NULL, 0, NULL, 1),
(1164, 1000, '1', 'state board ', '', '', '2013', 75.00, '', 1, '2020-10-08 02:18:18', 0, NULL, 0, NULL, 1),
(1165, 1004, '3', 'anna university', '', 'be', '2012', 64.00, '', 1, '2020-10-08 03:37:18', 0, NULL, 0, NULL, 1),
(1166, 1004, '2', 'govt', '', '', '2008', 73.00, '', 1, '2020-10-08 03:37:38', 0, NULL, 0, NULL, 1),
(1167, 1004, '1', 'matriculation', '', '', '2006', 64.00, '', 1, '2020-10-08 03:38:04', 0, NULL, 0, NULL, 1),
(1168, 1005, '3', 'anna university', '', '', '2018', 64.50, '', 1, '2020-10-08 06:25:10', 1, '2020-10-08 06:26:55', 0, NULL, 0),
(1169, 1005, '3', 'anna university', '', '', '2018', 64.00, '', 1, '2020-10-08 06:27:22', 0, NULL, 0, NULL, 1),
(1170, 979, '4', 'Madras university', '', 'Msc ', '2019', 75.00, '', 1, '2020-10-08 09:00:47', 0, NULL, 0, NULL, 1),
(1171, 1013, '3', 'Medrass university', '', 'BA (economics) ', '2020', 65.00, '', 1, '2020-10-09 10:27:45', 0, NULL, 0, NULL, 1),
(1172, 1013, '2', 'State board ', '', '', '2017', 91.00, '', 1, '2020-10-09 10:29:11', 0, NULL, 0, NULL, 1),
(1173, 1013, '1', 'State board', '', '', '2015', 78.00, '', 1, '2020-10-09 10:29:57', 0, NULL, 0, NULL, 1),
(1174, 1015, '1', 'State board ', '', '', '2012', 57.00, '', 1, '2020-10-09 10:41:56', 0, NULL, 0, NULL, 1),
(1175, 1015, '2', 'State board', '', '', '2014', 70.00, '', 1, '2020-10-09 10:42:17', 0, NULL, 0, NULL, 1),
(1176, 1015, '3', 'Madaras ', '', 'B.A ', '2017', 50.00, '', 1, '2020-10-09 10:43:03', 0, NULL, 0, NULL, 1),
(1177, 1012, '1', 'State board ', '', '', '2011', 82.00, '', 1, '2020-10-09 10:44:28', 0, NULL, 0, NULL, 1),
(1178, 1012, '5', 'Central government ', '', 'Diploma in computer engineering ', '2016', 72.00, '', 1, '2020-10-09 10:46:47', 0, NULL, 0, NULL, 1),
(1179, 1017, '4', 'Central University of tamilnadu', '', 'IMSC.ECONOMICS', '2019', 65.00, '', 1, '2020-10-09 10:48:41', 0, NULL, 0, NULL, 1),
(1180, 1018, '4', 'University of madras', '', 'M. B. A', '2018', 58.00, '', 1, '2020-10-09 11:02:22', 0, NULL, 0, NULL, 1),
(1181, 1019, '3', 'Bharathi women\'s collage', '', 'Bsc', '2020', 75.00, '', 1, '2020-10-09 11:10:42', 0, NULL, 0, NULL, 1),
(1182, 1020, '4', 'Madras univercity', '', 'Mba', '2017', 60.00, '', 1, '2020-10-09 11:17:22', 1, '2020-10-09 11:30:44', 0, NULL, 0),
(1183, 1020, '3', 'Madras univercity', '', 'Bsc', '2015', 75.00, '', 1, '2020-10-09 11:17:54', 0, NULL, 0, NULL, 1),
(1184, 1016, '3', 'Anna university ', '', 'B.tech', '2012', 67.00, '', 1, '2020-10-09 11:19:02', 0, NULL, 0, NULL, 1),
(1185, 1016, '2', 'State board ', '', '', '2008', 68.00, '', 1, '2020-10-09 11:19:30', 0, NULL, 0, NULL, 1),
(1186, 1016, '1', 'State board', '', '', '2006', 78.00, '', 1, '2020-10-09 11:20:02', 0, NULL, 0, NULL, 1),
(1187, 1020, '1', 'State board', '', '', '2010', 92.50, '', 1, '2020-10-09 11:28:54', 0, NULL, 0, NULL, 1),
(1188, 1020, '2', 'State board', '', '', '2012', 82.00, '', 1, '2020-10-09 11:29:32', 0, NULL, 0, NULL, 1),
(1189, 1020, '4', 'Madras univercity', '', 'Mba', '2017', 60.00, '', 1, '2020-10-09 11:31:10', 0, NULL, 0, NULL, 1),
(1190, 1006, '5', 'Board', '', 'Cse', '2018', 78.00, '', 1, '2020-10-09 12:07:19', 0, NULL, 0, NULL, 1),
(1191, 1021, '3', 'Madras University', '', 'B.com', '2019', 70.00, '', 1, '2020-10-09 12:23:07', 0, NULL, 0, NULL, 1),
(1192, 1028, '3', 'MADRAS UNIVERSITY', '', 'B.com(G)', '2020', 69.00, '', 1, '2020-10-09 12:23:34', 0, NULL, 0, NULL, 1),
(1193, 1030, '3', 'Madras University', '', 'BA', '2016', 70.00, '', 1, '2020-10-09 12:26:04', 0, NULL, 0, NULL, 1),
(1194, 1027, '3', 'MADRAS UNIVERSITY', '', 'Bcom a/f', '2020', 70.00, '', 1, '2020-10-09 12:31:04', 0, NULL, 0, NULL, 1),
(1195, 1031, '2', 'State board', '', '', '2016', 75.00, '', 1, '2020-10-09 12:45:30', 0, NULL, 0, NULL, 1),
(1196, 1011, '3', 'Anna university', '', 'B.E', '2020', 6.30, '', 1, '2020-10-09 12:46:31', 0, NULL, 0, NULL, 1),
(1197, 1023, '3', 'Loyola', '', 'Bcom', '2018', 60.00, '', 1, '2020-10-09 01:24:12', 0, NULL, 0, NULL, 1),
(1198, 1032, '3', 'anna university', '', 'be ece', '2015', 53.60, '', 1, '2020-10-09 01:48:47', 0, NULL, 0, NULL, 1),
(1199, 1032, '2', 'hss patel nagar school', '', '', '2011', 51.58, '', 1, '2020-10-09 01:49:57', 0, NULL, 0, NULL, 1),
(1200, 1032, '1', 'hss patel nagar school', '', '', '2009', 65.00, '', 1, '2020-10-09 01:51:13', 0, NULL, 0, NULL, 1),
(1201, 1034, '4', 'vhnsn college', '', 'mcom', '2016', 60.00, '', 1, '2020-10-09 02:35:10', 0, NULL, 0, NULL, 1),
(1202, 1024, '1', 'state board ', '', '', '2010', 65.00, '', 1, '2020-10-09 03:19:44', 0, NULL, 0, NULL, 1),
(1203, 1024, '2', 'state  board ', '', '', '2012', 86.00, '', 1, '2020-10-09 03:20:20', 0, NULL, 0, NULL, 1),
(1204, 1024, '5', 'malaysian university', '', 'diplom', '2014', 75.00, '', 1, '2020-10-09 03:21:55', 0, NULL, 0, NULL, 1),
(1205, 1024, '3', 'annamalai open univerysity ', '', 'b a engliesh', '2016', 67.00, '', 1, '2020-10-09 03:23:16', 0, NULL, 0, NULL, 1),
(1206, 1035, '3', 'bangalore university', '', 'b.com', '2020', 70.00, '', 1, '2020-10-09 04:23:44', 0, NULL, 0, NULL, 1),
(1207, 1002, '4', 'bangloreuniversity', '', 'mcom', '2020', 81.00, '', 1, '2020-10-09 04:32:39', 0, NULL, 0, NULL, 1),
(1208, 1002, '3', 'banglore univercity', '', 'bcom', '2019', 85.00, '', 1, '2020-10-09 04:33:31', 0, NULL, 0, NULL, 1),
(1209, 1037, '3', 'Madras  university ', '', 'Bca', '2020', 60.00, '', 1, '2020-10-09 05:56:12', 0, NULL, 0, NULL, 1),
(1210, 1038, '3', 'Madras University ', '', 'B.com general', '2016', 66.00, '', 1, '2020-10-09 07:40:05', 0, NULL, 0, NULL, 1),
(1211, 1039, '3', 'Anna University', '', 'BE', '2020', 74.00, '', 1, '2020-10-09 07:46:10', 0, NULL, 0, NULL, 1),
(1212, 1040, '3', 'Madras University ', '', 'B.com general ', '2016', 55.00, '', 1, '2020-10-09 08:18:47', 0, NULL, 0, NULL, 1),
(1213, 1042, '3', 'Madras University', '', 'B.sc computer science', '2020', 75.00, '', 1, '2020-10-09 08:45:17', 0, NULL, 0, NULL, 1),
(1214, 1043, '5', 'Pallavan college ', '', 'Dct', '2011', 72.83, '', 1, '2020-10-10 10:25:48', 0, NULL, 0, NULL, 1),
(1215, 1044, '4', 'Periyar university', '', 'MBA', '2020', 80.00, '', 1, '2020-10-10 11:13:00', 0, NULL, 0, NULL, 1),
(1216, 1045, '3', 'Bharathiar University Coimbatore', '', 'BCA', '2020', 77.00, '', 1, '2020-10-10 11:19:52', 0, NULL, 0, NULL, 1),
(1217, 1046, '3', 'Bharatiyar University', '', 'Bca', '2020', 71.00, '', 1, '2020-10-10 11:26:47', 0, NULL, 0, NULL, 1),
(1218, 1047, '3', 'Anna university', '', 'B. E ECE', '2014', 65.00, '', 1, '2020-10-10 11:34:22', 0, NULL, 0, NULL, 1),
(1219, 1047, '2', 'State board', '', '', '2010', 65.00, '', 1, '2020-10-10 11:34:44', 0, NULL, 0, NULL, 1),
(1220, 1047, '1', 'State Board', '', '', '2008', 60.00, '', 1, '2020-10-10 11:35:17', 0, NULL, 0, NULL, 1),
(1221, 1049, '3', 'Annamalai University', '', 'BA English', '2017', 61.00, '', 1, '2020-10-10 12:02:48', 0, NULL, 0, NULL, 1),
(1222, 1049, '2', 'DGM Matric Hr sec school ', '', '', '2013', 81.00, '', 1, '2020-10-10 12:03:28', 0, NULL, 0, NULL, 1),
(1223, 1051, '1', 'Anna University ', '', '', '2018', 78.00, '', 1, '2020-10-10 12:11:50', 0, NULL, 0, NULL, 1),
(1224, 1050, '5', 'mspvl polytechnic college', '', 'dae', '2011', 89.29, '', 1, '2020-10-10 12:31:45', 0, NULL, 0, NULL, 1),
(1225, 1050, '2', 'state board', '', '', '2009', 71.00, '', 1, '2020-10-10 12:32:14', 0, NULL, 0, NULL, 1),
(1226, 1050, '1', 'state board', '', '', '2007', 70.00, '', 1, '2020-10-10 12:32:48', 0, NULL, 0, NULL, 1),
(1227, 1048, '2', 'State board', '', '', '2016', 82.00, '', 1, '2020-10-10 12:42:57', 0, NULL, 0, NULL, 1),
(1228, 1048, '3', 'Madras University', '', 'Bsc computer science', '2019', 71.00, '', 1, '2020-10-10 12:43:48', 0, NULL, 0, NULL, 1),
(1229, 1053, '3', 'Anna University', '', 'B.E', '2017', 58.00, '', 1, '2020-10-10 12:43:48', 0, NULL, 0, NULL, 1),
(1230, 1055, '3', 'Bharathidasan university trichy ', '', 'Bcom', '2019', 71.00, '', 1, '2020-10-10 01:24:47', 0, NULL, 0, NULL, 1),
(1231, 1056, '1', 'State Board', '', '', '2014', 87.00, '', 1, '2020-10-10 01:42:57', 1, '2020-10-10 01:44:24', 0, NULL, 0),
(1232, 1056, '2', 'State Board', '', '', '2016', 79.00, '', 1, '2020-10-10 01:43:20', 1, '2020-10-10 01:44:40', 0, NULL, 0),
(1233, 1056, '3', 'Anna University', '', 'B. E', '2020', 72.00, '', 1, '2020-10-10 01:44:08', 0, NULL, 0, NULL, 1),
(1234, 1056, '2', 'State Board', '', '', '2016', 79.00, '', 1, '2020-10-10 01:44:57', 0, NULL, 0, NULL, 1),
(1235, 1056, '1', 'State Board', '', 'B. E', '2014', 87.00, '', 1, '2020-10-10 01:46:36', 1, '2020-10-10 01:46:49', 0, NULL, 0),
(1236, 1056, '1', 'State Board', '', '', '2014', 87.00, '', 1, '2020-10-10 01:47:18', 0, NULL, 0, NULL, 1),
(1237, 1054, '2', 'State board', '', '', '2016', 79.00, '', 1, '2020-10-10 01:49:12', 0, NULL, 0, NULL, 1),
(1238, 1057, '3', 'Madras university ', '', 'B.Com', '2019', 66.00, '', 1, '2020-10-10 01:56:20', 0, NULL, 0, NULL, 1),
(1239, 1052, '3', 'Ambedkar open university', '', 'B.com', '2008', 71.00, '', 1, '2020-10-10 03:00:16', 0, NULL, 0, NULL, 1),
(1240, 1062, '1', 'State board', '', '', '2013', 83.00, '', 1, '2020-10-10 06:01:38', 0, NULL, 0, NULL, 1),
(1241, 1062, '2', 'State board', '', '', '2015', 76.00, '', 1, '2020-10-10 06:02:08', 0, NULL, 0, NULL, 1),
(1242, 1062, '3', 'Anna university', '', 'BE', '2019', 64.00, '', 1, '2020-10-10 06:02:58', 0, NULL, 0, NULL, 1),
(1243, 1064, '3', 'anna university', '', 'be', '2019', 72.00, '', 1, '2020-10-10 06:23:57', 0, NULL, 0, NULL, 1),
(1244, 1065, '3', 'Madras university', '', 'B.com ( corporate secretaryship)', '2020', 60.00, '', 1, '2020-10-10 09:07:33', 0, NULL, 0, NULL, 1),
(1245, 1067, '3', ' Sri venkateswara engineering college for womens , Tirupati ', '', 'b.tech', '2017', 74.00, '', 1, '2020-10-11 06:20:22', 0, NULL, 0, NULL, 1),
(1246, 1068, '3', 'S. V. Engineering College for Women,Tirupathi', '', 'b.tech', '2018', 62.77, '', 1, '2020-10-11 06:29:35', 0, NULL, 0, NULL, 1),
(1247, 1073, '3', 'thiruvalluvar university', '', 'bca', '2018', 73.00, '', 1, '2020-10-12 10:22:52', 1, '2020-10-12 10:24:18', 0, NULL, 1),
(1248, 1074, '3', 'Madras university', '', 'B.Com(C.S)', '2020', 65.00, '', 1, '2020-10-12 10:33:37', 0, NULL, 0, NULL, 1),
(1249, 1077, '3', 'Justice basheer Ahmed sayeed college for women', '', 'BCOM', '2020', 67.00, '', 1, '2020-10-12 10:34:13', 0, NULL, 0, NULL, 1),
(1250, 1077, '2', 'Government higher secondary school', '', '', '2017', 86.00, '', 1, '2020-10-12 10:35:00', 0, NULL, 0, NULL, 1),
(1251, 1075, '3', 'Madras University', '', 'B.com (c.s)', '2020', 70.00, '', 1, '2020-10-12 10:35:27', 0, NULL, 0, NULL, 1),
(1252, 1077, '1', 'Annai velankanni matriculation school', '', '', '2015', 85.00, '', 1, '2020-10-12 10:35:28', 0, NULL, 0, NULL, 1),
(1253, 1078, '3', 'sv college', '', 'arts', '2014', 60.00, '', 1, '2020-10-12 10:41:53', 0, NULL, 0, NULL, 1),
(1254, 1076, '3', 'Anna university', '', 'Be', '2016', 6.10, '', 1, '2020-10-12 10:44:50', 0, NULL, 0, NULL, 1),
(1255, 1080, '3', 'Anna University ', '', 'BE(CSE)', '2020', 68.00, '', 1, '2020-10-12 11:05:46', 0, NULL, 0, NULL, 1),
(1256, 1079, '3', 'University', '', 'B.A(English)', '2020', 62.00, '', 1, '2020-10-12 11:07:46', 0, NULL, 0, NULL, 1),
(1257, 1081, '3', 'mAHER University ', '', 'Bpt', '2019', 59.00, '', 1, '2020-10-12 11:16:50', 0, NULL, 0, NULL, 1),
(1258, 1085, '3', 'Guru Nanak College', '', 'BCA', '2020', 74.00, '', 1, '2020-10-12 11:32:41', 0, NULL, 0, NULL, 1),
(1259, 1089, '3', 'Madras university', '', 'Bcom', '2015', 55.00, '', 1, '2020-10-12 11:34:53', 0, NULL, 0, NULL, 1),
(1260, 1041, '3', 'University of madras ', '', 'BCA', '2015', 77.00, '', 1, '2020-10-12 11:35:52', 0, NULL, 0, NULL, 1),
(1261, 1084, '4', 'University of Madras', '', 'M A HISTORY ', '2016', 77.00, '', 1, '2020-10-12 11:37:21', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1262, 1083, '5', 'Loyola college', '', 'Dite', '2020', 86.00, '', 1, '2020-10-12 11:49:36', 0, NULL, 0, NULL, 1),
(1263, 1091, '3', 'Madras university', '', 'Bsc', '2018', 75.00, '', 1, '2020-10-12 11:55:11', 0, NULL, 0, NULL, 1),
(1264, 1082, '3', 'Madras university ', '', 'B.com(general)', '2020', 70.00, '', 1, '2020-10-12 12:00:45', 0, NULL, 0, NULL, 1),
(1265, 1092, '5', 'State board', '', 'Diploma in computer science', '2013', 86.00, '', 1, '2020-10-12 12:07:33', 0, NULL, 0, NULL, 1),
(1266, 1086, '4', 'Pondicherry University', '', 'MCA', '2019', 81.00, '', 1, '2020-10-12 12:07:58', 0, NULL, 0, NULL, 1),
(1267, 1094, '3', 'Anna University', '', 'BE', '2020', 57.00, '', 1, '2020-10-12 12:11:17', 0, NULL, 0, NULL, 1),
(1268, 1094, '1', 'State board', '', '', '2014', 80.00, '', 1, '2020-10-12 12:12:14', 0, NULL, 0, NULL, 1),
(1269, 1094, '2', 'State board', '', '', '2016', 79.00, '', 1, '2020-10-12 12:12:35', 0, NULL, 0, NULL, 1),
(1270, 1096, '3', 'Anna University', '', 'B.E', '2020', 62.00, '', 1, '2020-10-12 12:13:08', 0, NULL, 0, NULL, 1),
(1271, 1096, '2', 'State board', '', '', '2016', 83.00, '', 1, '2020-10-12 12:13:48', 0, NULL, 0, NULL, 1),
(1272, 1096, '1', 'State Board', '', '', '2014', 91.00, '', 1, '2020-10-12 12:14:19', 0, NULL, 0, NULL, 1),
(1273, 1095, '5', 'Bord of technical education', '', 'Diploma', '2019', 58.27, '', 1, '2020-10-12 12:15:14', 0, NULL, 0, NULL, 1),
(1274, 1088, '3', 'karnataka state open university', '', 'bca', '2016', 60.00, '', 1, '2020-10-12 12:16:19', 0, NULL, 0, NULL, 1),
(1275, 1097, '3', 'Madras University', '', 'B.com', '2019', 66.80, '', 1, '2020-10-12 12:20:07', 0, NULL, 0, NULL, 1),
(1276, 1099, '3', 'Anna University', '', 'BE', '2010', 64.00, '', 1, '2020-10-12 12:41:23', 0, NULL, 0, NULL, 1),
(1277, 1098, '3', 'AM Jain college', '', 'bsc.mathematics', '2020', 60.00, '', 1, '2020-10-12 12:43:32', 0, NULL, 0, NULL, 1),
(1278, 1101, '3', 'Madras University', '', 'Bcom(cs)', '2018', 70.00, '', 1, '2020-10-12 12:50:52', 0, NULL, 0, NULL, 1),
(1279, 1103, '3', 'Guru Nanak', '', 'BCA', '2020', 74.00, '', 1, '2020-10-12 12:55:49', 0, NULL, 0, NULL, 1),
(1280, 1100, '4', 'Anna university ', '', 'MCA', '2019', 66.00, '', 1, '2020-10-12 01:00:14', 0, NULL, 0, NULL, 1),
(1281, 1100, '1', 'State board ', '', '', '2012', 68.00, '', 1, '2020-10-12 01:01:48', 0, NULL, 0, NULL, 1),
(1282, 1100, '2', 'State Board ', '', '', '2014', 65.00, '', 1, '2020-10-12 01:02:20', 0, NULL, 0, NULL, 1),
(1283, 1100, '3', 'Alagappa university ', '', 'BCA', '2017', 56.00, '', 1, '2020-10-12 01:02:48', 0, NULL, 0, NULL, 1),
(1284, 1104, '4', 'bharathidhasan university', '', 'm.c.a', '2019', 75.00, '', 1, '2020-10-12 01:10:10', 1, '2020-10-12 01:10:51', 0, NULL, 0),
(1285, 1104, '3', 'k.s.r. college of arts and science for women', '', 'bsc', '2016', 71.00, '', 1, '2020-10-12 01:12:47', 0, NULL, 0, NULL, 1),
(1286, 1104, '4', 'bharathidasan university', '', 'm.c.a.', '2019', 75.00, '', 1, '2020-10-12 01:13:32', 0, NULL, 0, NULL, 1),
(1287, 1102, '3', 'Anna university ', '', 'B.E', '2019', 7.30, '', 1, '2020-10-12 01:46:25', 0, NULL, 0, NULL, 1),
(1288, 1105, '3', 'Anna university', '', 'B.E Electrical and Electronic Engineering', '2020', 7.00, '', 1, '2020-10-12 02:25:33', 0, NULL, 0, NULL, 1),
(1289, 1106, '3', 'university of madras', '', 'bca', '2017', 70.00, '', 1, '2020-10-12 02:34:53', 0, NULL, 0, NULL, 1),
(1290, 1106, '1', 'government high school', '', '', '2012', 74.00, '', 1, '2020-10-12 02:35:44', 0, NULL, 0, NULL, 1),
(1291, 1106, '2', 'government boys higher secondary school', '', '', '2014', 52.00, '', 1, '2020-10-12 02:36:23', 0, NULL, 0, NULL, 1),
(1292, 1105, '1', 'State board', '', '', '2014', 97.80, '', 1, '2020-10-12 02:49:20', 0, NULL, 0, NULL, 1),
(1293, 1105, '2', 'State board', '', '', '2016', 80.42, '', 1, '2020-10-12 02:49:49', 0, NULL, 0, NULL, 1),
(1294, 1092, '1', 'board', '', '', '2010', 72.00, '', 50, '2020-10-12 03:27:10', 0, NULL, 0, NULL, 1),
(1295, 1107, '3', 'Madras university', '', 'BCA', '2016', 71.00, '', 1, '2020-10-12 03:30:26', 0, NULL, 0, NULL, 1),
(1296, 1108, '3', 'University', '', 'Bsc cs', '2017', 69.00, '', 1, '2020-10-12 03:46:46', 0, NULL, 0, NULL, 1),
(1297, 1111, '3', 'University of Madras', '', 'B.sc(Software/Application)', '2020', 69.60, '', 1, '2020-10-12 06:44:41', 0, NULL, 0, NULL, 1),
(1298, 1112, '4', 'MADRAS UNIVERSITY ', '', 'ECONOMICS ', '2016', 72.00, '', 1, '2020-10-12 07:41:20', 0, NULL, 0, NULL, 1),
(1299, 1109, '3', 'Dr.M.G.R Educational and Research institute University Chennai', '', 'B.TECH', '2020', 7.02, '', 1, '2020-10-12 07:59:59', 0, NULL, 0, NULL, 1),
(1300, 1116, '3', 'Anna University', '', 'BE - ECE', '2018', 65.00, '', 1, '2020-10-13 10:21:09', 1, '2020-10-13 10:21:26', 0, NULL, 0),
(1301, 1116, '2', 'State Board', '', '', '2011', 70.00, '', 1, '2020-10-13 10:26:03', 1, '2020-10-13 10:29:18', 0, NULL, 0),
(1302, 1116, '1', 'State Board', '', '', '2012', 65.00, '', 1, '2020-10-13 10:26:57', 1, '2020-10-13 10:29:22', 0, NULL, 0),
(1303, 1117, '5', 'LIBA', '', 'Human Resources', '2018', 90.00, '', 1, '2020-10-13 10:34:59', 0, NULL, 0, NULL, 1),
(1304, 1110, '3', 'University of Madars', '', 'B.sc(Software/Applications)', '2020', 81.30, '', 1, '2020-10-13 10:38:11', 0, NULL, 0, NULL, 1),
(1305, 1110, '2', 'University of Madras ', '', 'Bsc.(S/A)', '2017', 79.00, '', 1, '2020-10-13 10:42:12', 0, NULL, 0, NULL, 1),
(1306, 1119, '3', 'Anna University', '', 'B.tech', '2020', 6.80, '', 1, '2020-10-13 10:54:34', 0, NULL, 0, NULL, 1),
(1307, 1118, '3', 'Anna university', '', 'BE', '2019', 69.00, '', 1, '2020-10-13 10:56:15', 0, NULL, 0, NULL, 1),
(1308, 1116, '1', 'State board', '', '', '2012', 76.00, '', 1, '2020-10-13 11:13:05', 0, NULL, 0, NULL, 1),
(1309, 1116, '2', 'State board', '', '', '2014', 70.00, '', 1, '2020-10-13 11:13:36', 0, NULL, 0, NULL, 1),
(1310, 1116, '3', 'Anna university', '', 'BE -  ECE', '2018', 65.00, '', 1, '2020-10-13 11:14:25', 0, NULL, 0, NULL, 1),
(1311, 1121, '4', 'vels university', '', 'bca ', '2018', 70.00, '', 1, '2020-10-13 11:19:16', 0, NULL, 0, NULL, 1),
(1312, 1090, '3', 'Anna university', '', 'BE', '2016', 6.60, '', 1, '2020-10-13 11:35:41', 0, NULL, 0, NULL, 1),
(1313, 1122, '4', 'Bharathithasan university', '', 'Msc', '2014', 82.00, '', 1, '2020-10-13 11:38:44', 0, NULL, 0, NULL, 1),
(1314, 1122, '3', 'Bharathiyar university', '', 'Bsc', '2012', 56.00, '', 1, '2020-10-13 11:39:39', 0, NULL, 0, NULL, 1),
(1315, 1122, '2', 'Sakayarani girls higher secondary school', '', '', '2009', 88.00, '', 1, '2020-10-13 11:40:38', 0, NULL, 0, NULL, 1),
(1316, 1122, '1', 'St. Paul\'s high school', '', '', '2007', 81.00, '', 1, '2020-10-13 11:41:15', 0, NULL, 0, NULL, 1),
(1317, 1123, '3', 'University', '', 'B.com', '2018', 65.00, '', 1, '2020-10-13 11:56:01', 0, NULL, 0, NULL, 1),
(1318, 1124, '5', 'Madares', '', '', '2019', 77.00, '', 1, '2020-10-13 11:58:11', 0, NULL, 0, NULL, 1),
(1319, 1132, '3', 'Madras university', '', 'B.com', '2018', 70.00, '', 1, '2020-10-13 12:12:31', 0, NULL, 0, NULL, 1),
(1320, 1131, '4', 'Anna university', '', 'Mba', '2018', 78.00, '', 1, '2020-10-13 12:12:48', 0, NULL, 0, NULL, 1),
(1321, 1130, '3', 'Theruvaluvar ', '', 'B.com', '2019', 70.00, '', 1, '2020-10-13 12:13:21', 0, NULL, 0, NULL, 1),
(1322, 1130, '5', 'Thiruvalluvar', '', 'B.com', '2019', 70.00, '', 1, '2020-10-13 12:14:53', 0, NULL, 0, NULL, 1),
(1323, 1131, '3', 'Anna university', '', 'BE', '2015', 63.00, '', 1, '2020-10-13 12:15:32', 0, NULL, 0, NULL, 1),
(1324, 1124, '3', 'Madars', '', 'B.A.tamil', '2019', 70.00, '', 1, '2020-10-13 12:21:44', 0, NULL, 0, NULL, 1),
(1325, 1137, '4', '   Sathaybama University', '', 'MBA', '2020', 75.00, '', 1, '2020-10-13 12:30:48', 1, '2020-10-14 12:46:37', 0, NULL, 1),
(1326, 1133, '4', 'Pulc', '', 'MBA- HRM', '2021', 50.00, '', 1, '2020-10-13 12:39:48', 0, NULL, 0, NULL, 1),
(1327, 1135, '1', 'Stateboard', '', 'MBA HR', '2005', 74.00, '', 1, '2020-10-13 12:43:05', 0, NULL, 0, NULL, 1),
(1328, 1135, '2', 'Sathya Mat Hr sec state board', '', '', '2007', 81.00, '', 1, '2020-10-13 12:43:41', 0, NULL, 0, NULL, 1),
(1329, 1135, '3', 'Madras university', '', 'BCA', '2010', 70.00, '', 1, '2020-10-13 12:44:08', 0, NULL, 0, NULL, 1),
(1330, 1135, '4', 'Anna University', '', 'MBA HR and system', '2012', 70.00, '', 1, '2020-10-13 12:44:43', 0, NULL, 0, NULL, 1),
(1331, 1140, '4', 'Anna university', '', 'MBA', '2020', 7.30, '', 1, '2020-10-13 12:51:14', 0, NULL, 0, NULL, 1),
(1332, 1134, '5', 'Tamil university ', '', 'Yes ', '2018', 76.00, '', 1, '2020-10-13 12:51:45', 1, '2020-10-13 12:53:37', 0, NULL, 0),
(1333, 1140, '3', 'Rmk engineering college', '', 'BE - EEE', '2017', 67.00, '', 1, '2020-10-13 12:51:50', 0, NULL, 0, NULL, 1),
(1334, 1134, '5', 'Tamil university ', '', 'Yes', '2018', 72.00, '', 1, '2020-10-13 12:54:21', 0, NULL, 0, NULL, 1),
(1335, 1138, '4', 'Madras University', '', 'MBA HR', '2019', 60.00, '', 1, '2020-10-13 01:02:17', 0, NULL, 0, NULL, 1),
(1336, 1138, '3', 'Sri kanyaka parameshwari arts and science College', '', 'Bsc Mathematics', '2015', 70.00, '', 1, '2020-10-13 01:03:33', 0, NULL, 0, NULL, 1),
(1337, 1138, '2', 'Muruga dhanushkodi girls\' higher secondary school', '', '', '2012', 70.00, '', 1, '2020-10-13 01:04:08', 0, NULL, 0, NULL, 1),
(1338, 1138, '1', 'Muruga dhanushkodi girls\'Higher secondary school state board', '', '', '2010', 82.00, '', 1, '2020-10-13 01:04:45', 0, NULL, 0, NULL, 1),
(1339, 1120, '3', 'bharathidhashan', '', 'ba', '2018', 73.50, '', 1, '2020-10-13 01:05:28', 0, NULL, 0, NULL, 1),
(1340, 1143, '1', 'state board', '', '', '2012', 60.00, '', 1, '2020-10-13 01:22:17', 0, NULL, 0, NULL, 1),
(1341, 1143, '2', 'state board', '', '', '2014', 60.00, '', 1, '2020-10-13 01:22:43', 0, NULL, 0, NULL, 1),
(1342, 1143, '3', 'jamal mohamed college', '', 'bca', '2017', 68.00, '', 1, '2020-10-13 01:23:50', 0, NULL, 0, NULL, 1),
(1343, 1143, '4', 'measi institute of information technology', '', 'mca', '2020', 72.00, '', 1, '2020-10-13 01:24:32', 0, NULL, 0, NULL, 1),
(1344, 1141, '3', 'University of Madras', '', 'B.A', '2019', 60.00, '', 1, '2020-10-13 01:31:32', 0, NULL, 0, NULL, 1),
(1345, 1145, '3', 'Justice basheer Ahmed syed college for womens', '', 'BBA (MBA)', '2021', 52.00, '', 1, '2020-10-13 02:15:12', 0, NULL, 0, NULL, 1),
(1346, 1146, '3', 'Justice basheer Ahmed syed college for womens', '', 'BBA (MBA)', '2021', 52.00, '', 1, '2020-10-13 02:22:14', 0, NULL, 0, NULL, 1),
(1347, 1115, '3', 'Thiruvalur', '', 'Bca', '2020', 80.00, '', 1, '2020-10-13 02:35:48', 0, NULL, 0, NULL, 1),
(1348, 1149, '1', 'state board', '', '', '2012', 72.00, '', 1, '2020-10-13 03:05:29', 0, NULL, 0, NULL, 1),
(1349, 1149, '2', 'state board', '', '', '2014', 55.00, '', 1, '2020-10-13 03:07:34', 0, NULL, 0, NULL, 1),
(1350, 1149, '3', 'barathidhasan university', '', 'bcs', '2017', 63.00, '', 1, '2020-10-13 03:11:08', 1, '2020-10-13 03:11:26', 0, NULL, 1),
(1351, 1149, '4', 'madras university', '', 'mca', '2020', 65.00, '', 1, '2020-10-13 03:12:02', 0, NULL, 0, NULL, 1),
(1352, 1150, '3', 'Adhi college of engg and tech', '', 'BE. ECE', '2019', 82.00, '', 1, '2020-10-13 03:17:57', 0, NULL, 0, NULL, 1),
(1353, 1155, '3', 'Dg Vaishnav college', '', 'B com', '2019', 63.00, '', 1, '2020-10-13 03:21:01', 0, NULL, 0, NULL, 1),
(1354, 1155, '2', 'The Madras seva sadan', '', '', '2016', 81.00, '', 1, '2020-10-13 03:21:37', 0, NULL, 0, NULL, 1),
(1355, 1155, '1', 'Vinod Vijay vidhya Mat. Hr. Sec. School', '', '', '2014', 83.00, '', 1, '2020-10-13 03:22:13', 0, NULL, 0, NULL, 1),
(1356, 1154, '3', 'Justice basheer Ahmed syed college for womens', '', 'BBA', '2018', 70.00, '', 1, '2020-10-13 03:23:32', 0, NULL, 0, NULL, 1),
(1357, 1152, '3', 'Madras university ', '', 'B.A (English )', '2019', 70.00, '', 1, '2020-10-13 03:24:59', 0, NULL, 0, NULL, 1),
(1358, 1151, '3', 'Anna University', '', 'B.E', '2019', 60.00, '', 1, '2020-10-13 03:26:13', 0, NULL, 0, NULL, 1),
(1359, 1153, '3', 'Anna university', '', 'BE. ECE', '2019', 67.00, '', 1, '2020-10-13 03:41:00', 0, NULL, 0, NULL, 1),
(1360, 1147, '3', 'bharathidasan university', '', 'B.sc cs', '2019', 65.00, '', 1, '2020-10-13 03:41:35', 0, NULL, 0, NULL, 1),
(1361, 1157, '3', 'SRI MUTHUKUMARAN UNIVERSITY', '', 'BCA', '2016', 60.00, '', 1, '2020-10-13 05:00:48', 0, NULL, 0, NULL, 1),
(1362, 1156, '3', 'Bharathidasan university ', '', 'Bcom', '2018', 75.00, '', 1, '2020-10-13 05:09:19', 0, NULL, 0, NULL, 1),
(1363, 1161, '3', 'Ethiraj college for women', '', 'BCA', '2020', 63.00, '', 1, '2020-10-13 05:31:49', 0, NULL, 0, NULL, 1),
(1364, 1163, '3', 'Madras university ', '', 'BCA', '2020', 64.00, '', 1, '2020-10-13 06:12:14', 0, NULL, 0, NULL, 1),
(1365, 1160, '3', 'DBJain college', '', 'B.com', '2016', 60.00, '', 1, '2020-10-13 06:59:02', 0, NULL, 0, NULL, 1),
(1366, 1167, '3', 'madras University ', '', 'bca', '2020', 54.00, '', 1, '2020-10-13 08:22:33', 0, NULL, 0, NULL, 1),
(1367, 1126, '4', 'Sathyabama university', '', 'MBA', '2020', 8.22, '', 1, '2020-10-13 09:41:59', 0, NULL, 0, NULL, 1),
(1368, 1126, '3', 'Madras university', '', 'BBA', '2018', 7.90, '', 1, '2020-10-13 09:42:32', 0, NULL, 0, NULL, 1),
(1369, 1126, '2', 'State board', '', '', '2015', 82.00, '', 1, '2020-10-13 09:43:06', 0, NULL, 0, NULL, 1),
(1370, 1126, '1', 'State board', '', '', '2013', 85.00, '', 1, '2020-10-13 09:43:44', 0, NULL, 0, NULL, 1),
(1371, 1170, '4', 'D.G.vaishnav college, chennai', '', 'B.com', '1999', 58.00, '', 1, '2020-10-14 10:39:06', 0, NULL, 0, NULL, 1),
(1372, 1171, '3', 'University ', '', 'Bsc. Computer science ', '2020', 80.00, '', 1, '2020-10-14 10:53:15', 0, NULL, 0, NULL, 1),
(1373, 1172, '3', 'Anna university', '', 'B.E - CSE', '2019', 70.00, '', 1, '2020-10-14 11:05:10', 0, NULL, 0, NULL, 1),
(1374, 1173, '5', 'DOTE', '', '', '2017', 97.00, '', 1, '2020-10-14 11:06:36', 0, NULL, 0, NULL, 1),
(1375, 1174, '3', 'Madras University ', '', 'Bsc hotel management ', '2016', 60.00, '', 1, '2020-10-14 11:11:44', 0, NULL, 0, NULL, 1),
(1376, 1148, '3', 'madars university', '', 'bcom gen', '2018', 66.00, '', 1, '2020-10-14 11:48:48', 0, NULL, 0, NULL, 1),
(1377, 1175, '4', 'Sathyabama university', '', 'Mba', '2020', 7.20, '', 1, '2020-10-14 11:54:50', 0, NULL, 0, NULL, 1),
(1378, 1176, '4', 'Anna University', '', 'MBA', '2019', 6.79, '', 1, '2020-10-14 12:02:16', 0, NULL, 0, NULL, 1),
(1379, 1176, '3', 'Madras University', '', 'B.com Bank management', '2017', 71.00, '', 1, '2020-10-14 12:03:07', 0, NULL, 0, NULL, 1),
(1380, 1177, '3', 'The new college ', '', 'B.com ( Commerce )', '2020', 65.00, '', 1, '2020-10-14 12:03:18', 0, NULL, 0, NULL, 1),
(1381, 1176, '2', 'State board', '', '', '2014', 65.00, '', 1, '2020-10-14 12:03:33', 0, NULL, 0, NULL, 1),
(1382, 1176, '1', 'State board', '', '', '2012', 75.00, '', 1, '2020-10-14 12:05:14', 0, NULL, 0, NULL, 1),
(1383, 1129, '4', 'Anna University ', '', 'M.E', '2019', 7.61, '', 1, '2020-10-14 12:56:37', 0, NULL, 0, NULL, 1),
(1384, 1129, '3', 'Anna University ', '', 'B.E', '2017', 6.55, '', 1, '2020-10-14 12:57:06', 0, NULL, 0, NULL, 1),
(1385, 1158, '3', 'Madras university ', '', 'BBA', '2018', 60.00, '', 1, '2020-10-14 01:05:38', 0, NULL, 0, NULL, 1),
(1386, 168, '1', 'jhjhjh', '', '', '2015', 78.00, '', 1, '2020-10-14 01:31:08', 0, NULL, 0, NULL, 1),
(1387, 1179, '5', 'Open University of Malaysia', '', '', '2017', 80.00, '', 1, '2020-10-14 01:31:30', 0, NULL, 0, NULL, 1),
(1388, 1181, '4', 'Sathiyama institute of science and technology', '', 'MBA', '2019', 74.00, '', 1, '2020-10-14 01:32:41', 0, NULL, 0, NULL, 1),
(1389, 1182, '3', 'Shri Shankarlal sundarbai shasun Jain college for women', '', 'B.com', '2017', 60.00, '', 1, '2020-10-14 01:35:12', 0, NULL, 0, NULL, 1),
(1390, 1183, '5', 'Open University of Malaysia', '', '', '2017', 80.00, '', 1, '2020-10-14 01:49:28', 0, NULL, 0, NULL, 1),
(1391, 1186, '4', 'Anna University', '', 'MCA', '2013', 7.70, '', 1, '2020-10-14 02:18:57', 0, NULL, 0, NULL, 1),
(1392, 1189, '3', 'Anna university', '', '', '2018', 67.00, '', 1, '2020-10-14 02:59:26', 0, NULL, 0, NULL, 1),
(1393, 1191, '3', 'Anna University', '', 'Bachelor of Engineering', '2018', 67.00, '', 1, '2020-10-14 03:14:06', 0, NULL, 0, NULL, 1),
(1394, 1190, '3', 'Mohamed sathak A. J college of engineering ', '', 'B. e( ECE) ', '2020', 76.00, '', 1, '2020-10-14 03:24:50', 0, NULL, 0, NULL, 1),
(1395, 1190, '2', 'Crescent matriculation higher secondary school', '', '', '2016', 83.75, '', 1, '2020-10-14 03:25:35', 1, '2020-10-14 03:26:24', 0, NULL, 1),
(1396, 1190, '1', 'Crescent matriculation higher secondary school ', '', '', '2014', 93.40, '', 1, '2020-10-14 03:27:12', 0, NULL, 0, NULL, 1),
(1397, 1193, '1', 'Matriculation', '', '', '2011', 76.00, '', 1, '2020-10-14 03:41:06', 0, NULL, 0, NULL, 1),
(1398, 1193, '2', 'State Board', '', '', '2013', 86.00, '', 1, '2020-10-14 03:41:36', 0, NULL, 0, NULL, 1),
(1399, 1193, '3', 'Ethiraj College for women', '', 'B Com general', '2016', 56.00, '', 1, '2020-10-14 03:42:15', 0, NULL, 0, NULL, 1),
(1400, 1193, '4', 'Vels University', '', 'MBA ', '2018', 74.00, '', 1, '2020-10-14 03:42:48', 0, NULL, 0, NULL, 1),
(1401, 1195, '4', 'University of Madras', '', 'Human Resources Management', '2013', 70.00, '', 1, '2020-10-14 03:52:24', 0, NULL, 0, NULL, 1),
(1402, 1195, '3', 'University of Madras', '', 'Mathematics', '2011', 60.00, '', 1, '2020-10-14 03:58:21', 0, NULL, 0, NULL, 1),
(1403, 1196, '4', 'Annaimalai university ', '', 'MBA', '2020', 70.00, '', 1, '2020-10-14 04:15:38', 0, NULL, 0, NULL, 1),
(1404, 1199, '1', 'Matriculation', '', '', '2011', 95.00, '', 1, '2020-10-14 05:20:05', 0, NULL, 0, NULL, 1),
(1405, 1199, '2', 'Matriculation ', '', '', '2013', 91.00, '', 1, '2020-10-14 05:20:21', 0, NULL, 0, NULL, 1),
(1406, 1197, '3', 'anna university', '', 'b.e ', '2018', 62.00, '', 1, '2020-10-14 05:33:33', 0, NULL, 0, NULL, 1),
(1407, 1197, '2', 'state board', '', '', '2014', 80.00, '', 1, '2020-10-14 05:34:01', 0, NULL, 0, NULL, 1),
(1408, 1197, '1', 'state board', '', '', '2012', 78.00, '', 1, '2020-10-14 05:34:29', 0, NULL, 0, NULL, 1),
(1409, 1205, '4', 'Anna University ', '', 'MBA', '2018', 7.72, '', 1, '2020-10-15 08:22:08', 0, NULL, 0, NULL, 1),
(1410, 1206, '3', 'SASTRA UNIVERSITY', '', 'BTech', '2018', 60.00, '', 1, '2020-10-15 09:35:29', 0, NULL, 0, NULL, 1),
(1411, 1206, '1', 'STATE', '', '', '2012', 87.00, '', 1, '2020-10-15 09:36:27', 0, NULL, 0, NULL, 1),
(1412, 1206, '2', 'STATE', '', '', '2014', 76.00, '', 1, '2020-10-15 09:36:57', 0, NULL, 0, NULL, 1),
(1413, 1207, '3', 'RVCE ', '', 'B.E', '2019', 7.50, '', 1, '2020-10-15 10:05:33', 0, NULL, 0, NULL, 1),
(1414, 1208, '1', 'State Board', '', '', '2010', 76.00, '', 1, '2020-10-15 10:05:42', 0, NULL, 0, NULL, 1),
(1415, 1208, '2', 'State Board', '', '', '2012', 50.00, '', 1, '2020-10-15 10:06:02', 0, NULL, 0, NULL, 1),
(1416, 1208, '3', 'Periyar university', '', 'B.Sc computer science', '2015', 65.00, '', 1, '2020-10-15 10:07:03', 0, NULL, 0, NULL, 1),
(1417, 1208, '4', 'Periyar University', '', 'M.Sc computer science', '2017', 71.00, '', 1, '2020-10-15 10:07:45', 0, NULL, 0, NULL, 1),
(1418, 1210, '3', 'Anna University', '', 'B.E', '2018', 64.58, '', 1, '2020-10-15 10:10:15', 0, NULL, 0, NULL, 1),
(1419, 1209, '3', 'Thiruvalluvar', '', 'B.com', '2017', 50.00, '', 1, '2020-10-15 10:10:59', 0, NULL, 0, NULL, 1),
(1420, 1211, '3', 'Jaya Suriya Engineering College ', '', 'BE. Computer Science and Engineering ', '2017', 70.00, '', 1, '2020-10-15 10:12:50', 0, NULL, 0, NULL, 1),
(1421, 1212, '3', 'Madras University', '', 'B.com', '2012', 60.00, '', 1, '2020-10-15 10:29:11', 0, NULL, 0, NULL, 1),
(1422, 1212, '2', 'Matriculation', '', '', '2009', 55.00, '', 1, '2020-10-15 10:29:54', 0, NULL, 0, NULL, 1),
(1423, 1185, '4', 'university of madrad', '', 'msw', '2020', 7.00, '', 1, '2020-10-15 11:35:33', 0, NULL, 0, NULL, 1),
(1424, 1198, '3', 'Board ', '', 'B. Sc(C\'s)', '2017', 66.00, '', 1, '2020-10-15 11:35:47', 0, NULL, 0, NULL, 1),
(1425, 1217, '4', 'Bharathiyar university coimbatore', '', 'MCA', '2016', 60.00, '', 1, '2020-10-15 11:40:19', 0, NULL, 0, NULL, 1),
(1426, 1215, '3', 'anna university', '', 'b.tech', '2013', 6.20, '', 1, '2020-10-15 11:45:58', 0, NULL, 0, NULL, 1),
(1427, 1218, '4', 'madras university', '', 'mba', '2018', 72.00, '', 1, '2020-10-15 11:46:09', 0, NULL, 0, NULL, 1),
(1428, 1218, '3', 'pondicherry university', '', 'btech', '2016', 81.00, '', 1, '2020-10-15 11:46:51', 0, NULL, 0, NULL, 1),
(1429, 1219, '3', 'Madras university ', '', 'B.com', '2019', 65.00, '', 1, '2020-10-15 11:52:22', 0, NULL, 0, NULL, 1),
(1430, 1221, '1', 'Ssc board of education ', '', '', '2005', 53.00, '', 1, '2020-10-15 11:53:55', 0, NULL, 0, NULL, 1),
(1431, 1221, '2', 'Intermediate board of education ', '', '', '2009', 57.00, '', 1, '2020-10-15 11:54:30', 0, NULL, 0, NULL, 1),
(1432, 1221, '3', 'Sk university ', '', 'Bcom', '2012', 60.00, '', 1, '2020-10-15 11:55:26', 0, NULL, 0, NULL, 1),
(1433, 1220, '3', 'Madras University', '', 'B.com ', '2019', 59.00, '', 1, '2020-10-15 12:13:24', 0, NULL, 0, NULL, 1),
(1434, 1213, '3', 'madras university', '', 'b.a english', '2016', 60.00, '', 1, '2020-10-15 12:17:42', 0, NULL, 0, NULL, 1),
(1435, 1188, '3', 'Madras University', '', 'B.com ( general)', '2019', 70.00, '', 1, '2020-10-15 12:20:37', 0, NULL, 0, NULL, 1),
(1436, 1201, '3', 'Queen Mary\'s College', '', 'Bsc.physics', '2018', 70.00, '', 1, '2020-10-15 12:21:23', 0, NULL, 0, NULL, 1),
(1437, 1214, '3', 'anna university', '', 'engineering', '2020', 67.00, '', 1, '2020-10-15 12:57:41', 0, NULL, 0, NULL, 1),
(1438, 1214, '2', 'state board', '', '', '2016', 57.00, '', 1, '2020-10-15 12:58:17', 0, NULL, 0, NULL, 1),
(1439, 1228, '4', 'Anna university', '', 'MBA', '2019', 60.00, '', 1, '2020-10-15 01:05:30', 0, NULL, 0, NULL, 1),
(1440, 1226, '3', 'University of madras ', '', 'B.com (CA)', '2020', 80.00, '', 1, '2020-10-15 01:06:49', 0, NULL, 0, NULL, 1),
(1441, 1230, '3', 'Sv univercity', '', 'B com ', '2017', 61.00, '', 1, '2020-10-15 01:07:23', 0, NULL, 0, NULL, 1),
(1442, 1222, '4', 'university', '', 'm.b.a', '2020', 77.00, '', 1, '2020-10-15 01:21:06', 0, NULL, 0, NULL, 1),
(1443, 1229, '3', 'University of Madras', '', 'B.com ( Accounting & Finance)', '2020', 71.00, '', 1, '2020-10-15 01:28:02', 0, NULL, 0, NULL, 1),
(1444, 1229, '2', 'State board of higher secondary education', '', '', '2017', 92.00, '', 1, '2020-10-15 01:29:08', 0, NULL, 0, NULL, 1),
(1445, 1234, '5', 'University', '', 'Computer engineering ', '2019', 88.00, '', 1, '2020-10-15 01:29:33', 0, NULL, 0, NULL, 1),
(1446, 1229, '1', 'State board of secondary education', '', '', '2015', 95.00, '', 1, '2020-10-15 01:29:36', 0, NULL, 0, NULL, 1),
(1447, 1231, '3', 'bharathidasan university', '', 'B.sc cs', '2019', 65.00, '', 1, '2020-10-15 01:30:35', 0, NULL, 0, NULL, 1),
(1448, 1227, '3', 'University of madras ', '', 'B. A public Administration ', '2018', 25.00, '', 1, '2020-10-15 01:35:55', 0, NULL, 0, NULL, 1),
(1449, 1235, '3', 'Madras University ', '', 'BA', '2019', 70.00, '', 1, '2020-10-15 01:40:11', 0, NULL, 0, NULL, 1),
(1450, 1232, '3', 'Bharathiyar University', '', 'Bcom computer Application', '2018', 52.00, '', 1, '2020-10-15 01:44:23', 0, NULL, 0, NULL, 1),
(1451, 1238, '4', 'SA. Engineering college ', '', 'MBA', '2020', 73.00, '', 1, '2020-10-15 02:08:43', 0, NULL, 0, NULL, 1),
(1452, 1238, '3', 'Ethiraj college for women ', '', 'BA economics ', '2016', 60.00, '', 1, '2020-10-15 02:09:27', 0, NULL, 0, NULL, 1),
(1453, 1238, '2', 'Rpc higher secondary school ', '', '', '2013', 85.00, '', 1, '2020-10-15 02:10:24', 0, NULL, 0, NULL, 1),
(1454, 1238, '1', 'ST. Thomas matriculation higher secondary school ', '', '', '2011', 63.00, '', 1, '2020-10-15 02:11:33', 0, NULL, 0, NULL, 1),
(1455, 1239, '4', 'ITM Business School', '', 'PGDM - Human Resource', '2019', 74.34, '', 1, '2020-10-15 02:37:44', 0, NULL, 0, NULL, 1),
(1456, 1239, '3', 'University of Madras', '', 'Bachelor of Business Administration', '2017', 61.00, '', 1, '2020-10-15 02:38:36', 0, NULL, 0, NULL, 1),
(1457, 1241, '1', 'Board', '', '', '2013', 89.80, '', 1, '2020-10-15 03:13:20', 0, NULL, 0, NULL, 1),
(1458, 1241, '2', 'Board', '', '', '2015', 93.50, '', 1, '2020-10-15 03:14:05', 0, NULL, 0, NULL, 1),
(1459, 1241, '3', 'Women\'s Christian college', '', 'B.com', '2018', 73.00, '', 1, '2020-10-15 03:14:49', 0, NULL, 0, NULL, 1),
(1460, 1241, '4', 'Saveetha engineering college ', '', 'MBA', '2020', 74.00, '', 1, '2020-10-15 03:15:12', 0, NULL, 0, NULL, 1),
(1461, 1242, '2', 'State board', '', '', '2016', 67.00, '', 1, '2020-10-15 03:28:14', 0, NULL, 0, NULL, 1),
(1462, 1242, '3', 'Madurai kamaraj university ', '', 'BBA', '2019', 72.00, '', 1, '2020-10-15 03:29:12', 0, NULL, 0, NULL, 1),
(1463, 1243, '2', 'State Board', '', '', '2017', 65.00, '', 1, '2020-10-15 03:43:52', 0, NULL, 0, NULL, 1),
(1464, 1243, '3', 'Madurai kamaraj university ', '', 'Ba english ', '2020', 60.00, '', 1, '2020-10-15 03:44:34', 0, NULL, 0, NULL, 1),
(1465, 1240, '4', 'Madras university', '', 'MBA', '2020', 80.00, '', 1, '2020-10-15 03:56:45', 0, NULL, 0, NULL, 1),
(1466, 1245, '1', 'State board ', '', '', '2011', 70.00, '', 1, '2020-10-15 04:28:43', 0, NULL, 0, NULL, 1),
(1467, 1245, '5', 'Directorate of technical education ', '', 'DCE', '2014', 75.00, '', 1, '2020-10-15 04:29:31', 0, NULL, 0, NULL, 1),
(1468, 1244, '1', 'tamil ', '', '', '2009', 80.00, '', 1, '2020-10-15 04:30:42', 0, NULL, 0, NULL, 1),
(1469, 1244, '2', 'tamil', '', '', '2011', 70.00, '', 1, '2020-10-15 04:31:24', 0, NULL, 0, NULL, 1),
(1470, 1244, '3', 'madurai kamaraj university', '', 'bba', '2014', 70.00, '', 1, '2020-10-15 04:32:10', 0, NULL, 0, NULL, 1),
(1471, 1244, '4', 'anna university', '', 'mba', '2016', 79.00, '', 1, '2020-10-15 04:32:42', 0, NULL, 0, NULL, 1),
(1472, 1246, '2', 'State board', '', '', '2012', 65.00, '', 1, '2020-10-15 05:08:12', 0, NULL, 0, NULL, 1),
(1473, 1246, '3', 'Mohammed sathak', '', 'Be cs', '2016', 71.00, '', 1, '2020-10-15 05:08:49', 0, NULL, 0, NULL, 1),
(1474, 1248, '2', 'State board', '', '', '2013', 78.00, '', 1, '2020-10-15 05:47:21', 0, NULL, 0, NULL, 1),
(1475, 1248, '3', 'Madras University ', '', 'BCA', '2016', 55.00, '', 1, '2020-10-15 05:47:55', 0, NULL, 0, NULL, 1),
(1476, 1252, '3', 'Anna University - Chennai', '', 'B.E(computer science engineering)', '2012', 69.00, '', 1, '2020-10-16 10:55:12', 0, NULL, 0, NULL, 1),
(1477, 1254, '2', 'State board', '', '', '2016', 80.00, '', 1, '2020-10-16 10:56:57', 1, '2020-10-16 05:01:07', 0, NULL, 1),
(1478, 1254, '3', 'Vaigai college of engineering ', '', 'Be', '2020', 95.00, '', 1, '2020-10-16 10:57:33', 1, '2020-10-16 05:01:21', 0, NULL, 1),
(1479, 1256, '1', 'SKV matriculationShool', '', '', '2010', 71.20, '', 1, '2020-10-16 11:26:45', 0, NULL, 0, NULL, 1),
(1480, 1256, '2', 'Bharathi higher secondary school', '', '', '2012', 64.50, '', 1, '2020-10-16 11:27:37', 0, NULL, 0, NULL, 1),
(1481, 1251, '3', 'madras university', '', 'b.com c.s', '2019', 75.00, '', 1, '2020-10-16 11:28:29', 0, NULL, 0, NULL, 1),
(1482, 1256, '3', 'Kongunadu college', '', 'BE (mechanical)', '2016', 61.20, '', 1, '2020-10-16 11:28:30', 0, NULL, 0, NULL, 1),
(1483, 1256, '4', 'Presidency', '', 'MBA', '2017', 51.20, '', 1, '2020-10-16 11:29:12', 0, NULL, 0, NULL, 1),
(1484, 1257, '3', 'board', '', 'bcom(honours)', '2020', 70.00, '', 1, '2020-10-16 11:43:54', 0, NULL, 0, NULL, 1),
(1485, 1259, '4', 'MADRAS UNIVERSITY', '', 'MBA', '2020', 75.00, '', 1, '2020-10-16 11:57:58', 0, NULL, 0, NULL, 1),
(1486, 1261, '2', 'State board', '', '', '2015', 70.00, '', 1, '2020-10-16 12:26:23', 0, NULL, 0, NULL, 1),
(1487, 1261, '3', 'Anna university ', '', 'Be Ece', '2019', 60.00, '', 1, '2020-10-16 12:26:57', 0, NULL, 0, NULL, 1),
(1488, 1202, '3', 'madras university', '', 'b.com', '2017', 55.67, '', 1, '2020-10-16 01:46:34', 0, NULL, 0, NULL, 1),
(1489, 1202, '4', 'pulc', '', 'mba', '2019', 57.00, '', 1, '2020-10-16 01:47:44', 0, NULL, 0, NULL, 1),
(1490, 1262, '3', 'madras university ', '', 'b.com ', '2018', 71.50, '', 1, '2020-10-16 02:19:55', 0, NULL, 0, NULL, 1),
(1491, 1263, '4', 'Bharathidasan University', '', 'MAB ( Marketing) ', '2017', 70.00, '', 1, '2020-10-16 02:40:00', 1, '2020-10-16 03:17:52', 0, NULL, 0),
(1492, 1263, '3', 'Bharathidasan university', '', 'BBA', '2015', 67.00, '', 1, '2020-10-16 02:41:15', 0, NULL, 0, NULL, 1),
(1493, 1263, '2', 'State Board', '', '', '2012', 60.00, '', 1, '2020-10-16 02:41:54', 1, '2020-10-16 02:44:59', 0, NULL, 1),
(1494, 1263, '1', 'State board', '', '', '2010', 60.60, '', 1, '2020-10-16 02:43:45', 0, NULL, 0, NULL, 1),
(1495, 1263, '4', 'Bharathidasan university', '', 'MAB ( marketing) ', '2017', 70.00, '', 1, '2020-10-16 03:14:33', 0, NULL, 0, NULL, 1),
(1496, 1267, '3', 'Anna University', '', 'B.E., CSE', '2011', 64.00, '', 1, '2020-10-16 04:10:15', 0, NULL, 0, NULL, 1),
(1497, 1267, '2', 'State board', '', '', '2002', 71.92, '', 1, '2020-10-16 04:11:17', 0, NULL, 0, NULL, 1),
(1498, 1267, '1', 'State board', '', '', '2000', 71.36, '', 1, '2020-10-16 04:11:58', 0, NULL, 0, NULL, 1),
(1499, 1268, '2', 'State board', '', '', '2013', 64.00, '', 1, '2020-10-16 04:22:12', 0, NULL, 0, NULL, 1),
(1500, 1268, '3', 'G k m college of engineering ', '', 'Be cs', '2018', 64.00, '', 1, '2020-10-16 04:22:53', 0, NULL, 0, NULL, 1),
(1501, 1269, '2', 'State board', '', '', '2015', 60.00, '', 1, '2020-10-16 04:46:40', 0, NULL, 0, NULL, 1),
(1502, 1269, '4', 'Jamal Mohammed college', '', 'Msc', '2019', 70.00, '', 1, '2020-10-16 04:47:20', 0, NULL, 0, NULL, 1),
(1503, 1270, '2', 'State board', '', '', '2014', 65.00, '', 1, '2020-10-16 05:10:30', 0, NULL, 0, NULL, 1),
(1504, 1270, '3', 'Anna university ', '', 'Be eee', '2018', 60.00, '', 1, '2020-10-16 05:11:11', 0, NULL, 0, NULL, 1),
(1505, 1271, '2', 'State board ', '', '', '2016', 65.00, '', 1, '2020-10-16 06:17:09', 0, NULL, 0, NULL, 1),
(1506, 1271, '3', 'Anna university ', '', 'Be cs ', '2020', 60.00, '', 1, '2020-10-16 06:17:45', 0, NULL, 0, NULL, 1),
(1507, 1260, '3', 'Anna university ', '', 'B. Tech', '2020', 7.60, '', 1, '2020-10-16 06:30:00', 0, NULL, 0, NULL, 1),
(1508, 1275, '3', 'Madras university', '', 'Bca', '2015', 75.00, '', 1, '2020-10-17 10:42:01', 0, NULL, 0, NULL, 1),
(1509, 1277, '4', 'University of Madras', '', 'MBA', '2020', 82.50, '', 1, '2020-10-17 10:50:00', 0, NULL, 0, NULL, 1),
(1510, 1276, '3', 'Anna univercity', '', 'BE-computer science and engineering', '2020', 78.00, '', 1, '2020-10-17 10:53:26', 0, NULL, 0, NULL, 1),
(1511, 1276, '2', 'Government girls higher secondary school', '', '', '2016', 81.00, '', 1, '2020-10-17 10:54:48', 0, NULL, 0, NULL, 1),
(1512, 1276, '1', 'Government girls  higher secondary school', '', '', '2014', 96.00, '', 1, '2020-10-17 10:55:30', 0, NULL, 0, NULL, 1),
(1513, 1255, '3', 'Madras University', '', 'Bsc,Hotel management & catering technology', '2007', 50.00, '', 1, '2020-10-17 11:31:04', 0, NULL, 0, NULL, 1),
(1514, 1253, '3', 'anna university', '', 'b.e', '2020', 7.50, '', 1, '2020-10-17 12:00:40', 0, NULL, 0, NULL, 1),
(1515, 1278, '3', 'manonmaniam sundaranar university, tirunelveli', '', 'B. Sc comp', '2020', 74.30, '', 1, '2020-10-17 12:15:36', 0, NULL, 0, NULL, 1),
(1516, 1279, '3', 'Manonmaniam Sundarnar University,tirunelveli.', '', 'BCA', '2020', 73.00, '', 1, '2020-10-17 12:17:18', 0, NULL, 0, NULL, 1),
(1517, 1280, '3', 'Dg Vaishnava collage', '', 'BA economics', '2014', 62.00, '', 1, '2020-10-17 12:42:47', 0, NULL, 0, NULL, 1),
(1518, 1282, '3', 'Anna university', '', 'Bacholar of engineering (ece)', '2016', 75.00, '', 1, '2020-10-17 01:02:31', 0, NULL, 0, NULL, 1),
(1519, 1281, '3', 'Anna university', '', 'Bsc. Zoology &biotechnology', '2018', 78.00, '', 1, '2020-10-17 01:43:27', 0, NULL, 0, NULL, 1),
(1520, 1284, '3', 'anna univercity', '', 'BE', '2020', 60.40, '', 1, '2020-10-17 01:48:02', 0, NULL, 0, NULL, 1),
(1521, 1285, '3', 'University ', '', 'B. E(ECE)', '2020', 72.00, '', 1, '2020-10-17 01:50:17', 0, NULL, 0, NULL, 1),
(1522, 1286, '4', 'PULC Loyola College ', '', 'MBA HR', '2019', 60.00, '', 1, '2020-10-17 02:13:07', 0, NULL, 0, NULL, 1),
(1523, 1286, '3', 'Stella Maris College ', '', 'BCA', '2017', 62.00, '', 1, '2020-10-17 02:14:56', 1, '2020-10-17 02:16:02', 0, NULL, 1),
(1524, 1288, '3', 'Thiruvallur ', '', 'Bsc', '2018', 79.00, '', 1, '2020-10-17 02:22:46', 0, NULL, 0, NULL, 1),
(1525, 1287, '1', 'state board', '', '', '2011', 83.00, '', 1, '2020-10-17 02:28:59', 0, NULL, 0, NULL, 1),
(1526, 1287, '2', 'state board', '', '', '2013', 70.00, '', 1, '2020-10-17 02:29:27', 0, NULL, 0, NULL, 1),
(1527, 1287, '3', 'periyar university', '', 'b.c.a', '2016', 76.00, '', 1, '2020-10-17 02:30:24', 0, NULL, 0, NULL, 1),
(1528, 1287, '4', 'periyar unniversity', '', 'm.c.a', '2018', 80.00, '', 1, '2020-10-17 02:31:01', 0, NULL, 0, NULL, 1),
(1529, 1290, '1', 'Board', '', '', '2014', 88.00, '', 1, '2020-10-17 03:11:28', 0, NULL, 0, NULL, 1),
(1530, 1290, '2', 'Board', '', '', '2016', 68.00, '', 1, '2020-10-17 03:11:46', 0, NULL, 0, NULL, 1),
(1531, 1291, '4', 'anna university chennai', '', 'm.sc software engineering', '2017', 7.55, '', 1, '2020-10-17 03:38:53', 0, NULL, 0, NULL, 1),
(1532, 1293, '3', 'madras university', '', 'bca', '2020', 67.00, '', 1, '2020-10-17 04:06:52', 0, NULL, 0, NULL, 1),
(1533, 1294, '3', 'Madras University', '', 'BSc computer science', '2020', 67.00, '', 1, '2020-10-17 04:07:15', 0, NULL, 0, NULL, 1),
(1534, 1295, '4', 'Anna University', '', 'MBA', '2017', 7.64, '', 1, '2020-10-17 06:06:32', 0, NULL, 0, NULL, 1),
(1535, 1292, '3', 'Anna University', '', 'BE-Mechatronics Engineering', '2020', 71.00, '', 1, '2020-10-17 06:17:09', 0, NULL, 0, NULL, 1),
(1536, 1292, '2', 'State Board', '', '', '2016', 82.00, '', 1, '2020-10-17 06:17:38', 0, NULL, 0, NULL, 1),
(1537, 1292, '1', 'State Board', '', '', '2014', 92.80, '', 1, '2020-10-17 06:18:12', 0, NULL, 0, NULL, 1),
(1538, 1299, '3', 'Anna university', '', 'Bachelor of engineering', '2020', 65.00, '', 1, '2020-10-18 07:59:57', 0, NULL, 0, NULL, 1),
(1539, 1300, '3', 'Sri Ramanujar engineering college ', '', 'CSE', '2020', 6.25, '', 1, '2020-10-19 11:09:03', 0, NULL, 0, NULL, 1),
(1540, 1301, '3', 'Madras University ', '', 'Bsc', '2020', 68.00, '', 1, '2020-10-19 11:19:53', 0, NULL, 0, NULL, 1),
(1541, 1302, '3', 'Madras University ', '', 'Bsc ', '2020', 75.00, '', 1, '2020-10-19 11:31:41', 0, NULL, 0, NULL, 1),
(1542, 1303, '3', 'Anna university', '', 'BE', '2017', 68.00, '', 1, '2020-10-19 11:37:43', 0, NULL, 0, NULL, 1),
(1543, 1258, '3', 'mnm ', '', 'b.e', '2015', 7.60, '', 1, '2020-10-19 11:44:39', 1, '2020-10-19 11:46:11', 0, NULL, 1),
(1544, 1304, '3', 'anna university', '', 'bachelors degree', '2020', 6.80, '', 1, '2020-10-19 11:48:46', 0, NULL, 0, NULL, 1),
(1545, 1304, '2', 'government high school', '', '', '2016', 55.08, '', 1, '2020-10-19 11:49:50', 0, NULL, 0, NULL, 1),
(1546, 1304, '1', 'government high school', '', '', '2014', 88.90, '', 1, '2020-10-19 11:50:44', 0, NULL, 0, NULL, 1),
(1547, 1305, '3', 'Bharathidasan University ', '', 'Bsc Computer Science ', '2006', 67.00, '', 1, '2020-10-19 12:17:38', 0, NULL, 0, NULL, 1),
(1548, 1289, '3', 'madras university', '', 'bca', '2020', 72.00, '', 1, '2020-10-19 12:20:37', 0, NULL, 0, NULL, 1),
(1549, 1306, '3', 'Madras University', '', 'BBA', '2020', 60.00, '', 1, '2020-10-19 12:38:54', 0, NULL, 0, NULL, 1),
(1550, 1308, '3', 'Anna University', '', 'BE - Computer Science And Engineering', '2020', 5.70, '', 1, '2020-10-19 12:39:08', 0, NULL, 0, NULL, 1),
(1551, 1309, '1', 'matriculation', '', '', '2006', 55.00, '', 1, '2020-10-19 12:48:17', 0, NULL, 0, NULL, 1),
(1552, 1309, '2', 'state board', '', 'bca', '2009', 56.00, '', 1, '2020-10-19 12:50:11', 0, NULL, 0, NULL, 1),
(1553, 1309, '3', 'madras university', '', 'bca', '2013', 60.00, '', 1, '2020-10-19 12:50:49', 0, NULL, 0, NULL, 1),
(1554, 1307, '4', 'Anna University', '', 'MBA HR', '2020', 81.10, '', 1, '2020-10-19 12:53:41', 1, '2020-10-19 12:59:10', 0, NULL, 1),
(1555, 1307, '3', 'Madras University', '', 'B.com Corporate Secretaryship', '2018', 70.00, '', 1, '2020-10-19 12:55:27', 0, NULL, 0, NULL, 1),
(1556, 1307, '2', 'Hussain Memorial Modern Matric school', '', '', '2015', 82.10, '', 1, '2020-10-19 12:56:31', 1, '2020-10-20 03:37:00', 0, NULL, 1),
(1557, 1307, '1', 'Ebenezer Modern Matric School', '', '', '2013', 80.40, '', 1, '2020-10-19 12:59:54', 0, NULL, 0, NULL, 1),
(1558, 1311, '4', 'Anna University', '', 'MBA', '2020', 55.00, '', 1, '2020-10-19 01:45:15', 0, NULL, 0, NULL, 1),
(1559, 1310, '5', 'Dote', '', '', '2020', 81.00, '', 1, '2020-10-19 02:14:45', 0, NULL, 0, NULL, 1),
(1560, 1250, '5', 'Dote', '', '', '2020', 89.00, '', 1, '2020-10-19 02:28:55', 0, NULL, 0, NULL, 1),
(1561, 1164, '5', 'Dote', '', '', '2020', 86.00, '', 1, '2020-10-19 02:34:04', 0, NULL, 0, NULL, 1),
(1562, 1316, '3', 'Madras university', '', 'B.com', '2020', 62.00, '', 1, '2020-10-19 05:08:05', 0, NULL, 0, NULL, 1),
(1563, 1318, '3', 'SRM UNIVERSITY ', '', 'BCA', '2020', 81.00, '', 1, '2020-10-19 05:20:39', 1, '2020-10-19 05:21:23', 0, NULL, 0),
(1564, 1318, '2', 'STATE BOARD', '', '', '2017', 81.33, '', 1, '2020-10-19 05:21:12', 1, '2020-10-19 05:21:20', 0, NULL, 0),
(1565, 1318, '1', 'STATE BOARD', '', '', '2015', 89.80, '', 1, '2020-10-19 05:21:55', 1, '2020-10-19 05:23:13', 0, NULL, 0),
(1566, 1318, '2', 'STATE BOARD', '', '', '2017', 81.33, '', 1, '2020-10-19 05:22:25', 1, '2020-10-19 05:23:18', 0, NULL, 0),
(1567, 1318, '3', 'SRM UNIVERSITY ', '', 'BCA', '2020', 81.00, '', 1, '2020-10-19 05:22:49', 0, NULL, 0, NULL, 1),
(1568, 1318, '2', 'STATE BOARD', '', '', '2017', 81.30, '', 1, '2020-10-19 05:23:42', 0, NULL, 0, NULL, 1),
(1569, 1318, '1', 'STATE BOARD', '', '', '2015', 89.80, '', 1, '2020-10-19 05:24:08', 0, NULL, 0, NULL, 1),
(1570, 1317, '3', 'Madras university of Chennai', '', 'BCOM', '2020', 67.00, '', 1, '2020-10-19 05:55:54', 1, '2020-10-19 05:57:25', 0, NULL, 1),
(1571, 1319, '3', 'University', '', 'BE', '2020', 80.00, '', 1, '2020-10-19 06:50:11', 0, NULL, 0, NULL, 1),
(1572, 1321, '4', 'madras christian college', '', 'msc', '2016', 71.00, '', 1, '2020-10-19 07:15:13', 0, NULL, 0, NULL, 1),
(1573, 1324, '3', 'Anna university', '', 'BE', '2020', 75.00, '', 1, '2020-10-19 07:18:52', 0, NULL, 0, NULL, 1),
(1574, 1323, '3', 'university ', '', 'be', '2020', 78.00, '', 1, '2020-10-19 08:15:26', 0, NULL, 0, NULL, 1),
(1575, 1326, '3', 'Madras university', '', 'BCA', '2017', 65.00, '', 1, '2020-10-19 08:37:08', 0, NULL, 0, NULL, 1),
(1576, 1327, '2', 'State board', '', '', '2016', 76.00, '', 1, '2020-10-20 09:16:47', 0, NULL, 0, NULL, 1),
(1577, 1327, '3', 'Sree sowdambika college ', '', 'Be', '2020', 80.00, '', 1, '2020-10-20 09:17:36', 0, NULL, 0, NULL, 1),
(1578, 1328, '2', 'State board', '', '', '2015', 47.00, '', 1, '2020-10-20 09:40:15', 0, NULL, 0, NULL, 1),
(1579, 1328, '3', 'Sree sowdambika college of engineering ', '', 'Be eee', '2020', 70.00, '', 1, '2020-10-20 09:40:56', 0, NULL, 0, NULL, 1),
(1580, 1329, '2', 'State board', '', '', '2016', 74.00, '', 1, '2020-10-20 09:44:34', 0, NULL, 0, NULL, 1),
(1581, 1329, '3', 'Sree sowdambika College of engineering ', '', 'Be cse', '2020', 60.00, '', 1, '2020-10-20 09:45:12', 0, NULL, 0, NULL, 1),
(1582, 1336, '1', 'State board ', '', '', '2010', 68.00, '', 1, '2020-10-20 11:27:13', 0, NULL, 0, NULL, 1),
(1583, 1336, '5', 'Director of technical education ', '', 'Diploma eee', '2013', 64.00, '', 1, '2020-10-20 11:28:04', 0, NULL, 0, NULL, 1),
(1584, 1336, '3', 'Pondicherry university ', '', 'Btech eee', '2018', 50.00, '', 1, '2020-10-20 11:28:42', 0, NULL, 0, NULL, 1),
(1585, 1338, '4', 'anna university', '', 'mba', '2020', 65.00, '', 1, '2020-10-20 11:37:59', 0, NULL, 0, NULL, 1),
(1586, 1331, '5', 'hayagriva polytechnic college', '', 'diploma in mechanical', '2014', 75.00, '', 1, '2020-10-20 11:38:07', 0, NULL, 0, NULL, 1),
(1587, 1331, '1', 'state board', '', '', '2009', 55.00, '', 1, '2020-10-20 11:38:53', 1, '2020-10-20 12:53:02', 0, NULL, 1),
(1588, 1331, '2', 'state board', '', '', '2011', 47.00, '', 1, '2020-10-20 11:39:19', 1, '2020-10-20 12:52:41', 0, NULL, 1),
(1589, 1335, '3', 'Parathidhasan university ', '', 'B,.sc', '2016', 71.00, '', 1, '2020-10-20 11:40:38', 0, NULL, 0, NULL, 1),
(1590, 1315, '3', 'Anna University', '', 'B.e', '2019', 59.91, '', 1, '2020-10-20 11:43:34', 0, NULL, 0, NULL, 1),
(1591, 1333, '1', 'St.mary\'s Matriculation Higher Secondary School', '', '', '2013', 91.60, '', 1, '2020-10-20 11:48:04', 0, NULL, 0, NULL, 1),
(1592, 1333, '2', 'St.Mary\'s Matriculation Higher Secondary School', '', '', '2015', 92.60, '', 1, '2020-10-20 11:48:49', 0, NULL, 0, NULL, 1),
(1593, 1333, '3', 'JBAS College of Women (s.i.e.t)', '', 'B.com', '2018', 67.00, '', 1, '2020-10-20 11:49:59', 0, NULL, 0, NULL, 1),
(1594, 1333, '4', 'Crescent institute of science and technology', '', 'MBA', '2020', 90.00, '', 1, '2020-10-20 11:50:50', 0, NULL, 0, NULL, 1),
(1595, 1322, '4', 'Madras university ', '', 'M. Com', '2019', 68.00, '', 1, '2020-10-20 12:24:16', 0, NULL, 0, NULL, 1),
(1596, 1340, '3', 'Apollo Engineering College', '', 'Bachelor of engineering', '2020', 7.80, '', 1, '2020-10-20 12:38:15', 0, NULL, 0, NULL, 1),
(1597, 1340, '2', 'St.marys matriculation higher secondary school', '', '', '2016', 71.00, '', 1, '2020-10-20 12:39:18', 0, NULL, 0, NULL, 1),
(1598, 1340, '1', 'Government higher secondary school', '', '', '2014', 88.00, '', 1, '2020-10-20 12:39:46', 0, NULL, 0, NULL, 1),
(1599, 1342, '3', 'Mar gregorious Arts and Science of college ', '', 'B.com(CS)', '2014', 50.00, '', 1, '2020-10-20 12:42:04', 0, NULL, 0, NULL, 1),
(1600, 1314, '3', 'madras university', '', 'b.com bank management', '2017', 60.00, '', 1, '2020-10-20 12:43:05', 0, NULL, 0, NULL, 1),
(1601, 1343, '3', 'University', '', 'B.Sc. CS', '2013', 82.00, '', 1, '2020-10-20 01:04:15', 0, NULL, 0, NULL, 1),
(1602, 1344, '1', 'State Board ', '', '', '2002', 73.00, '', 1, '2020-10-20 01:19:26', 0, NULL, 0, NULL, 1),
(1603, 1344, '2', 'State Board ', '', '', '2004', 56.00, '', 1, '2020-10-20 01:19:42', 0, NULL, 0, NULL, 1),
(1604, 1344, '3', 'Tamilnadu Open University ', '', 'B. A', '2017', 66.58, '', 1, '2020-10-20 01:22:00', 0, NULL, 0, NULL, 1),
(1605, 1344, '4', 'Madras University ', '', 'MCA', '2021', 60.00, '', 1, '2020-10-20 01:22:49', 0, NULL, 0, NULL, 1),
(1606, 1341, '3', 'madras christian college', '', 'bsw', '2016', 60.00, '', 1, '2020-10-20 01:25:50', 0, NULL, 0, NULL, 1),
(1607, 1348, '1', 'Board', '', '', '2015', 74.00, '', 1, '2020-10-20 01:34:42', 0, NULL, 0, NULL, 1),
(1608, 1349, '2', 'State board', '', '', '2010', 80.00, '', 1, '2020-10-20 01:40:21', 0, NULL, 0, NULL, 1),
(1609, 1349, '3', 'Bharathidasan university ', '', 'Bcom', '2013', 67.00, '', 1, '2020-10-20 01:40:53', 0, NULL, 0, NULL, 1),
(1610, 1347, '3', 'Madras university', '', 'B.com', '2020', 58.00, '', 1, '2020-10-20 01:53:34', 0, NULL, 0, NULL, 1),
(1611, 1346, '3', 'Madras university', '', 'B.com', '2020', 68.00, '', 1, '2020-10-20 01:56:30', 0, NULL, 0, NULL, 1),
(1612, 1345, '3', 'Madras universtiy ', '', 'B.com', '2020', 65.00, '', 1, '2020-10-20 01:59:38', 0, NULL, 0, NULL, 1),
(1613, 1351, '2', 'State board', '', '', '2016', 63.00, '', 1, '2020-10-20 02:07:34', 0, NULL, 0, NULL, 1),
(1614, 1351, '3', 'Madras university ', '', 'Bsc computer science ', '2019', 67.00, '', 1, '2020-10-20 02:08:18', 0, NULL, 0, NULL, 1),
(1615, 1350, '3', 'Anna University/Jaya Engineering college', '', 'B.Tech Information Technology', '2020', 68.40, '', 1, '2020-10-20 02:29:44', 0, NULL, 0, NULL, 1),
(1616, 1352, '3', 'Anna university', '', 'B. E', '2016', 71.00, '', 1, '2020-10-20 02:40:28', 0, NULL, 0, NULL, 1),
(1617, 1353, '5', 'SRM  university ', '', 'Diploma', '2016', 60.00, '', 1, '2020-10-20 02:58:53', 0, NULL, 0, NULL, 1),
(1618, 1355, '2', 'State board', '', '', '2017', 60.00, '', 1, '2020-10-20 04:10:12', 0, NULL, 0, NULL, 1),
(1619, 1355, '3', 'Thiruvalluvar university ', '', 'Bca', '2020', 65.00, '', 1, '2020-10-20 04:10:51', 0, NULL, 0, NULL, 1),
(1620, 1356, '2', 'State board ', '', '', '2016', 65.00, '', 1, '2020-10-20 04:28:16', 1, '2020-10-21 11:36:21', 0, NULL, 1),
(1621, 1356, '3', 'Thiruvalluvar university ', '', 'Bca', '2020', 65.00, '', 1, '2020-10-20 04:28:47', 1, '2020-10-21 11:36:28', 0, NULL, 1),
(1622, 1358, '3', 'Anna university', '', 'B.E CSE', '2016', 69.00, '', 1, '2020-10-20 05:37:56', 0, NULL, 0, NULL, 1),
(1623, 1358, '2', 'Holy angels hr sec school', '', '', '2011', 86.00, '', 1, '2020-10-20 05:38:39', 0, NULL, 0, NULL, 1),
(1624, 1364, '3', 'Anna University', '', 'BE', '2020', 6.53, '', 1, '2020-10-20 06:27:45', 0, NULL, 0, NULL, 1),
(1625, 1363, '3', 'anna University ', '', 'bachelor of engineering', '2018', 7.45, '', 1, '2020-10-20 06:36:34', 0, NULL, 0, NULL, 1),
(1626, 1363, '2', 'stateboard', '', '', '2014', 90.25, '', 1, '2020-10-20 06:37:20', 0, NULL, 0, NULL, 1),
(1627, 1363, '1', 'matriculation', '', '', '2012', 87.00, '', 1, '2020-10-20 06:37:49', 0, NULL, 0, NULL, 1),
(1628, 1359, '3', 'Madras university ', '', 'Bcom (general) ', '2020', 58.00, '', 1, '2020-10-20 07:53:05', 0, NULL, 0, NULL, 1),
(1629, 1360, '3', 'University of madras', '', 'Bsc Computer Science', '2020', 70.00, '', 1, '2020-10-20 08:19:28', 0, NULL, 0, NULL, 1),
(1630, 1368, '3', 'Meenakshi college for women', '', 'Bsc', '2020', 84.00, '', 1, '2020-10-20 08:20:38', 0, NULL, 0, NULL, 1),
(1631, 1370, '3', 'University of madras', '', 'BSC COMPUTER SCIENCE', '2020', 70.00, '', 1, '2020-10-20 08:22:51', 0, NULL, 0, NULL, 1),
(1632, 1372, '2', 'State board', '', '', '2016', 65.00, '', 1, '2020-10-20 09:19:08', 0, NULL, 0, NULL, 1),
(1633, 1372, '3', 'Thiruvalluvar university ', '', 'Bca', '2020', 65.00, '', 1, '2020-10-20 09:19:42', 0, NULL, 0, NULL, 1),
(1634, 1373, '3', 'University ', '', 'B. sc computer science ', '2020', 75.25, '', 1, '2020-10-20 09:40:24', 1, '2020-10-20 09:42:16', 0, NULL, 0),
(1635, 1373, '2', 'Board ', '', '', '2017', 69.00, '', 1, '2020-10-20 09:41:03', 1, '2020-10-20 09:42:10', 0, NULL, 0),
(1636, 1373, '1', 'Board ', '', '', '2015', 79.40, '', 1, '2020-10-20 09:43:50', 1, '2020-10-20 09:47:23', 0, NULL, 0),
(1637, 1373, '2', 'Board ', '', '', '2017', 69.00, '', 1, '2020-10-20 09:44:17', 1, '2020-10-20 09:48:00', 0, NULL, 0),
(1638, 1373, '3', 'Board', '', 'B. sc computer science ', '2020', 75.66, '', 1, '2020-10-20 09:45:42', 1, '2020-10-20 09:48:03', 0, NULL, 0),
(1639, 1373, '3', 'University ', '', 'B. sc computer science ', '2020', 75.66, '', 1, '2020-10-20 09:48:45', 0, NULL, 0, NULL, 1),
(1640, 1373, '2', 'Board ', '', '', '2017', 69.00, '', 1, '2020-10-20 09:49:05', 0, NULL, 0, NULL, 1),
(1641, 1373, '1', 'Board ', '', '', '2015', 79.40, '', 1, '2020-10-20 09:49:28', 0, NULL, 0, NULL, 1),
(1642, 1332, '3', 'University of Madras ', '', 'Bcom', '2011', 50.00, '', 1, '2020-10-20 11:01:40', 0, NULL, 0, NULL, 1),
(1643, 1377, '3', 'Anna university', '', 'BTech IT', '2020', 65.00, '', 1, '2020-10-21 09:07:11', 0, NULL, 0, NULL, 1),
(1644, 1367, '3', 'Anna university ', '', 'B.Tech.IT', '2015', 6.30, '', 1, '2020-10-21 09:53:56', 0, NULL, 0, NULL, 1),
(1645, 1378, '3', 'madras university', '', 'bca', '2020', 65.00, '', 1, '2020-10-21 10:28:50', 0, NULL, 0, NULL, 1),
(1646, 1380, '1', 'Kalyanam sundaram higher secondary ', '', 'Master of Computer science', '2005', 75.00, '', 1, '2020-10-21 10:41:58', 0, NULL, 0, NULL, 1),
(1647, 1380, '2', 'Uma maheswara higher secondary school', '', '', '2007', 75.00, '', 1, '2020-10-21 10:42:41', 0, NULL, 0, NULL, 1),
(1648, 1380, '3', 'Tamilnadu open University', '', 'Bachelor of Computer Application', '2011', 79.00, '', 1, '2020-10-21 10:43:48', 0, NULL, 0, NULL, 1),
(1649, 1380, '4', 'Bharathidasan University ', '', 'Master of Computer Science', '2013', 80.00, '', 1, '2020-10-21 10:44:35', 0, NULL, 0, NULL, 1),
(1650, 1365, '3', 'Madras university ', '', 'B.sc.Computer Science ', '2018', 47.00, '', 1, '2020-10-21 10:53:48', 0, NULL, 0, NULL, 1),
(1651, 1348, '5', 'Board', '', '', '2015', 76.00, '', 1, '2020-10-21 11:03:46', 0, NULL, 0, NULL, 1),
(1652, 1381, '3', 'Madras university', '', 'Bsc computer science', '2016', 62.00, '', 1, '2020-10-21 11:08:21', 0, NULL, 0, NULL, 1),
(1653, 1382, '2', 'state board', '', '', '2015', 65.00, '', 1, '2020-10-21 11:12:47', 1, '2020-10-21 11:13:44', 0, NULL, 1),
(1654, 1382, '3', 'sasuri college of engineering', '', 'be mech', '2019', 65.00, '', 1, '2020-10-21 11:13:35', 0, NULL, 0, NULL, 1),
(1655, 1383, '4', 'Anna university', '', 'MBA', '2013', 8.02, '', 1, '2020-10-21 11:16:14', 0, NULL, 0, NULL, 1),
(1656, 1376, '1', 'tamil nadu', '', '', '2013', 85.00, '', 1, '2020-10-21 11:16:44', 1, '2020-10-21 11:33:16', 0, NULL, 0),
(1657, 1376, '2', 'tamil nadu', '', '', '2015', 65.00, '', 1, '2020-10-21 11:17:03', 1, '2020-10-21 11:33:11', 0, NULL, 0),
(1658, 1376, '3', 'madras university', '', 'b a', '2018', 70.00, '', 1, '2020-10-21 11:17:46', 1, '2020-10-21 11:30:56', 0, NULL, 0),
(1659, 1384, '3', 'university of madras', '', 'b.com computer application', '2013', 55.00, '', 1, '2020-10-21 11:24:11', 0, NULL, 0, NULL, 1),
(1660, 1384, '2', 'tamilnadu stateboard', '', '', '2007', 55.00, '', 1, '2020-10-21 11:24:58', 0, NULL, 0, NULL, 1),
(1661, 1384, '1', 'tamilnadu stateboard', '', '', '2005', 50.00, '', 1, '2020-10-21 11:25:27', 0, NULL, 0, NULL, 1),
(1662, 1386, '3', 'Madras University', '', 'B. Sc', '2020', 75.00, '', 1, '2020-10-21 11:31:17', 0, NULL, 0, NULL, 1),
(1663, 1376, '3', 'Madras University ', '', 'BA', '2018', 65.00, '', 1, '2020-10-21 11:31:34', 1, '2020-10-21 11:33:20', 0, NULL, 0),
(1664, 1374, '3', 'University ', '', 'Bsc computer science', '2020', 81.00, '', 1, '2020-10-21 11:32:30', 0, NULL, 0, NULL, 1),
(1665, 1374, '2', 'State board ', '', '', '2017', 73.00, '', 1, '2020-10-21 11:32:53', 0, NULL, 0, NULL, 1),
(1666, 1374, '1', 'State board ', '', '', '2015', 83.00, '', 1, '2020-10-21 11:33:24', 0, NULL, 0, NULL, 1),
(1667, 1376, '1', 'Tamil Nadu ', '', '', '2013', 85.00, '', 1, '2020-10-21 11:33:50', 0, NULL, 0, NULL, 1),
(1668, 1376, '2', 'Tamil Nadu ', '', '', '2015', 65.00, '', 1, '2020-10-21 11:34:21', 0, NULL, 0, NULL, 1),
(1669, 1376, '3', 'Madras University ', '', 'B A', '2018', 65.00, '', 1, '2020-10-21 11:34:54', 0, NULL, 0, NULL, 1),
(1670, 1389, '3', 'kongunadu college of engineering and technology', '', 'b.e', '2018', 6.50, '', 1, '2020-10-21 11:46:16', 1, '2020-10-21 11:48:30', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1671, 1389, '1', 'little flower mat hr sec school', '', '', '2012', 78.40, '', 1, '2020-10-21 11:47:17', 0, NULL, 0, NULL, 1),
(1672, 1389, '2', 'little flower mat hr sec school', '', '', '2014', 74.90, '', 1, '2020-10-21 11:47:49', 0, NULL, 0, NULL, 1),
(1673, 1388, '3', 'anna university', '', 'be', '2014', 7.90, '', 1, '2020-10-21 11:56:06', 0, NULL, 0, NULL, 1),
(1674, 1388, '2', 'state board', '', '', '2010', 83.67, '', 1, '2020-10-21 11:56:37', 0, NULL, 0, NULL, 1),
(1675, 1362, '4', 'Periyar university ', '', 'MBA', '2019', 74.30, '', 1, '2020-10-21 12:01:35', 0, NULL, 0, NULL, 1),
(1676, 1392, '3', 'Periyar university ', '', 'B.Sc', '2015', 69.00, '', 1, '2020-10-21 12:01:39', 0, NULL, 0, NULL, 1),
(1677, 1354, '4', 'Womens Christian college ', '', 'M.A.HRM', '2018', 71.00, '', 1, '2020-10-21 12:12:35', 0, NULL, 0, NULL, 1),
(1678, 1393, '4', 'pondicherry university', '', 'mba', '2017', 65.00, '', 1, '2020-10-21 12:15:24', 0, NULL, 0, NULL, 1),
(1679, 1391, '3', 'Anna university', '', 'BE Electrical and electronics', '2019', 60.00, '', 1, '2020-10-21 12:31:49', 0, NULL, 0, NULL, 1),
(1680, 1395, '3', 'Madras university ', '', 'B. Couple. ', '2020', 68.00, '', 1, '2020-10-21 12:39:07', 0, NULL, 0, NULL, 1),
(1681, 1390, '3', 'university of madras', '', 'bba', '2015', 50.00, '', 1, '2020-10-21 12:46:40', 1, '2020-10-21 12:47:16', 0, NULL, 1),
(1682, 1396, '2', 'State board', '', '', '2016', 65.00, '', 1, '2020-10-21 12:48:59', 0, NULL, 0, NULL, 1),
(1683, 1396, '3', 'Thiruvalluvar university ', '', 'BCA', '2020', 6.00, '', 1, '2020-10-21 12:49:37', 0, NULL, 0, NULL, 1),
(1684, 1394, '3', 'Madras university', '', 'B.com', '2020', 60.00, '', 1, '2020-10-21 12:51:40', 0, NULL, 0, NULL, 1),
(1685, 1397, '3', 'Anna university ', '', 'B.tech', '2012', 67.00, '', 1, '2020-10-21 12:55:16', 0, NULL, 0, NULL, 1),
(1686, 1398, '3', 'Tamilnadu open university ', '', 'B.Com', '2012', 40.00, '', 1, '2020-10-21 01:18:36', 0, NULL, 0, NULL, 1),
(1687, 1399, '4', 'Anna university', '', 'ME', '2017', 85.00, '', 1, '2020-10-21 01:19:58', 0, NULL, 0, NULL, 1),
(1688, 1379, '3', 'University of medras', '', 'Bca', '2020', 60.00, '', 1, '2020-10-21 01:33:10', 0, NULL, 0, NULL, 1),
(1689, 1404, '2', 'State board', '', '', '2016', 65.00, '', 1, '2020-10-21 02:28:54', 0, NULL, 0, NULL, 1),
(1690, 1404, '3', 'Thiruvalluvar university ', '', 'BCA', '2020', 6.00, '', 1, '2020-10-21 02:29:28', 0, NULL, 0, NULL, 1),
(1691, 1402, '3', 'Anna University', '', 'B.E', '2019', 72.00, '', 1, '2020-10-21 02:31:18', 0, NULL, 0, NULL, 1),
(1692, 1402, '2', 'Government girls higher secondary school', '', '', '2013', 91.10, '', 1, '2020-10-21 02:32:34', 0, NULL, 0, NULL, 1),
(1693, 1403, '5', 'Dote', '', 'Diploma', '2015', 73.00, '', 1, '2020-10-21 02:39:06', 0, NULL, 0, NULL, 1),
(1694, 1405, '3', 'Anna University', '', 'B.E', '2016', 63.00, '', 1, '2020-10-21 02:48:07', 0, NULL, 0, NULL, 1),
(1695, 1405, '2', 'State board', '', '', '2012', 67.00, '', 1, '2020-10-21 02:49:18', 0, NULL, 0, NULL, 1),
(1696, 1408, '3', 'Madras university', '', 'B.C.a computer application', '2020', 65.00, '', 1, '2020-10-21 04:01:09', 0, NULL, 0, NULL, 1),
(1697, 1408, '2', 'Board/rajah MUTHIAH HR sec school', '', '', '2017', 55.00, '', 1, '2020-10-21 04:03:10', 0, NULL, 0, NULL, 1),
(1698, 1408, '1', 'State board/ rajah MUTHIAH HR sec school', '', '', '2014', 65.00, '', 1, '2020-10-21 04:04:14', 0, NULL, 0, NULL, 1),
(1699, 1410, '4', 'Annamalai University ', '', 'MCA', '2018', 71.00, '', 1, '2020-10-21 04:30:24', 0, NULL, 0, NULL, 1),
(1700, 1411, '3', 'Madras University', '', 'B.sc', '2020', 76.00, '', 1, '2020-10-21 04:34:14', 0, NULL, 0, NULL, 1),
(1701, 1413, '5', 'Anna University', '', 'DCE', '2016', 60.00, '', 1, '2020-10-21 05:40:26', 0, NULL, 0, NULL, 1),
(1702, 1413, '1', 'State board', '', '', '2013', 60.00, '', 1, '2020-10-21 05:41:44', 0, NULL, 0, NULL, 1),
(1703, 1414, '3', 'Madras university', '', 'B. Com', '2019', 64.00, '', 1, '2020-10-21 05:51:15', 0, NULL, 0, NULL, 1),
(1704, 1414, '1', 'State board', '', '', '2014', 78.80, '', 1, '2020-10-21 05:51:51', 0, NULL, 0, NULL, 1),
(1705, 1414, '2', 'State board', '', '', '2016', 76.80, '', 1, '2020-10-21 05:52:12', 0, NULL, 0, NULL, 1),
(1706, 1415, '2', 'State Board', '', '', '2014', 49.00, '', 1, '2020-10-21 06:13:02', 0, NULL, 0, NULL, 1),
(1707, 1415, '3', 'Madras University', '', 'B.com ( Dropout )', '2017', 50.00, '', 1, '2020-10-21 06:13:50', 0, NULL, 0, NULL, 1),
(1708, 1416, '4', 'Anna University', '', 'Mbs', '2009', 65.00, '', 1, '2020-10-21 06:20:17', 0, NULL, 0, NULL, 1),
(1709, 1416, '3', 'Bharathidasan University', '', 'Bba', '2007', 56.00, '', 1, '2020-10-21 06:21:06', 0, NULL, 0, NULL, 1),
(1710, 1416, '2', 'Hsc', '', '', '2002', 60.00, '', 1, '2020-10-21 06:22:00', 0, NULL, 0, NULL, 1),
(1711, 1416, '1', 'Hsc', '', '', '2002', 60.00, '', 1, '2020-10-21 06:22:52', 0, NULL, 0, NULL, 1),
(1712, 1417, '3', 'Thiruvalluvar university ', '', 'B.Sc', '2017', 60.50, '', 1, '2020-10-21 07:10:08', 0, NULL, 0, NULL, 1),
(1713, 1417, '2', 'State board ', '', '', '2014', 55.00, '', 1, '2020-10-21 07:10:56', 0, NULL, 0, NULL, 1),
(1714, 1417, '1', 'State Board ', '', '', '2010', 60.00, '', 1, '2020-10-21 07:11:38', 0, NULL, 0, NULL, 1),
(1715, 1420, '2', 'State Board ', '', '', '2019', 64.50, '', 1, '2020-10-21 10:15:26', 0, NULL, 0, NULL, 1),
(1716, 1421, '1', 'State board', '', '', '2014', 79.00, '', 1, '2020-10-21 11:26:17', 0, NULL, 0, NULL, 1),
(1717, 1421, '2', 'State board', '', '', '2016', 65.00, '', 1, '2020-10-21 11:26:31', 0, NULL, 0, NULL, 1),
(1718, 1421, '3', 'Madras university', '', 'B. Com', '2019', 68.00, '', 1, '2020-10-21 11:26:53', 0, NULL, 0, NULL, 1),
(1719, 1412, '2', 'Madras University.', '', '', '2019', 80.00, '', 1, '2020-10-22 01:01:06', 0, NULL, 0, NULL, 1),
(1720, 1426, '3', 'Anna university Chennai', '', 'BE EEE', '2014', 67.91, '', 1, '2020-10-22 10:34:54', 0, NULL, 0, NULL, 1),
(1721, 1424, '3', 'Thiruvalluvar University', '', 'Bsc Computer science', '2020', 70.00, '', 1, '2020-10-22 10:35:01', 0, NULL, 0, NULL, 1),
(1722, 1424, '1', 'State board', '', '', '2014', 80.00, '', 1, '2020-10-22 10:35:40', 0, NULL, 0, NULL, 1),
(1723, 1424, '2', 'State board', '', '', '2016', 60.00, '', 1, '2020-10-22 10:36:12', 0, NULL, 0, NULL, 1),
(1724, 1422, '3', 'Madras University', '', 'BBA', '2020', 65.00, '', 1, '2020-10-22 10:42:33', 0, NULL, 0, NULL, 1),
(1725, 1423, '3', 'Madras university ', '', 'BBA', '2020', 65.00, '', 1, '2020-10-22 10:44:55', 0, NULL, 0, NULL, 1),
(1726, 1428, '2', 'Madras university', '', '', '2015', 60.00, '', 1, '2020-10-22 10:51:10', 0, NULL, 0, NULL, 1),
(1727, 1427, '4', 'Madras University', '', 'PG', '2017', 62.00, '', 1, '2020-10-22 10:52:55', 0, NULL, 0, NULL, 1),
(1728, 1430, '3', 'Sri sairam institute of technology', '', 'B.e', '2019', 7.10, '', 1, '2020-10-22 10:53:37', 0, NULL, 0, NULL, 1),
(1729, 1428, '3', 'Madras university', '', 'BBA', '2018', 56.00, '', 1, '2020-10-22 10:54:22', 0, NULL, 0, NULL, 1),
(1730, 1427, '4', 'Madras University', '', 'Master of Arts', '2017', 62.00, '', 1, '2020-10-22 10:57:04', 0, NULL, 0, NULL, 1),
(1731, 1427, '4', 'Madras University', '', 'Master of Arts', '2017', 62.00, '', 1, '2020-10-22 11:01:55', 0, NULL, 0, NULL, 1),
(1732, 1425, '4', 'BHARATHIYAR university', '', 'B.sc optometrist', '2018', 60.00, '', 1, '2020-10-22 11:21:06', 1, '2020-10-22 12:21:17', 0, NULL, 0),
(1733, 1433, '3', 'Anna university', '', 'Bachelor of engineering', '2017', 71.00, '', 1, '2020-10-22 11:23:15', 0, NULL, 0, NULL, 1),
(1734, 1425, '4', 'Bharathiyar University', '', 'B.sc optometry', '2018', 60.00, '', 1, '2020-10-22 11:24:40', 1, '2020-10-22 12:21:09', 0, NULL, 0),
(1735, 1429, '3', 'Mdras university', '', 'B.com', '2020', 65.00, '', 1, '2020-10-22 11:30:37', 0, NULL, 0, NULL, 1),
(1736, 1432, '3', 'Bharathidasan University', '', 'b. sc', '2018', 78.00, '', 1, '2020-10-22 11:31:24', 0, NULL, 0, NULL, 1),
(1737, 1429, '2', 'State board', '', '', '2017', 70.00, '', 1, '2020-10-22 11:32:24', 0, NULL, 0, NULL, 1),
(1738, 1429, '1', 'State board', '', '', '2015', 65.00, '', 1, '2020-10-22 11:33:12', 0, NULL, 0, NULL, 1),
(1739, 1412, '3', 'madars university', '', 'bba', '2019', 80.00, '', 1, '2020-10-22 11:42:56', 0, NULL, 0, NULL, 1),
(1740, 1407, '4', 'Anna university chennai', '', 'B.E(EEE)', '2016', 65.00, '', 1, '2020-10-22 11:46:28', 0, NULL, 0, NULL, 1),
(1741, 1361, '3', 'Board', '', 'B.A', '2019', 70.00, '', 1, '2020-10-22 11:57:58', 0, NULL, 0, NULL, 1),
(1742, 1425, '4', 'Bharathiyar university', '', 'B.sc optometry', '2018', 60.00, '', 1, '2020-10-22 12:15:00', 1, '2020-10-22 12:20:57', 0, NULL, 0),
(1743, 1425, '4', 'Bharathiyar university', '', 'B.sc optometry', '2018', 60.00, '', 1, '2020-10-22 12:17:30', 0, NULL, 0, NULL, 1),
(1744, 1434, '3', 'Manomani sundhar university', '', 'BBA', '2016', 63.20, '', 1, '2020-10-22 12:18:03', 0, NULL, 0, NULL, 1),
(1745, 1436, '3', 'Meenakshi college for women ', '', 'B. Com', '2020', 77.00, '', 1, '2020-10-22 01:17:43', 0, NULL, 0, NULL, 1),
(1746, 1435, '1', 'Soundarapandiyan suppamma hr.sec school thandayarpet ', '', '', '2015', 55.00, '', 1, '2020-10-22 01:22:22', 0, NULL, 0, NULL, 1),
(1747, 1435, '2', 'Angel\'s babyland matriculation  higher secondary school thondiarpet', '', '', '2017', 60.00, '', 1, '2020-10-22 01:27:38', 0, NULL, 0, NULL, 1),
(1748, 1435, '3', 'Kanyaka Parameshwara art & science  college', '', 'B.com', '2020', 67.00, '', 1, '2020-10-22 01:32:08', 0, NULL, 0, NULL, 1),
(1749, 904, '3', 'madras university', '', 'b.com', '2018', 60.00, '', 1, '2020-10-22 01:37:32', 0, NULL, 0, NULL, 1),
(1750, 904, '2', 'state board', '', '', '2015', 75.00, '', 1, '2020-10-22 01:39:00', 0, NULL, 0, NULL, 1),
(1751, 904, '1', 'state board', '', '', '2013', 95.00, '', 1, '2020-10-22 01:39:27', 0, NULL, 0, NULL, 1),
(1752, 1440, '5', 'Central polytechnic institute', '', '', '2018', 69.00, '', 1, '2020-10-22 02:03:43', 0, NULL, 0, NULL, 1),
(1753, 1441, '4', 'madras university', '', 'm.com', '2020', 72.00, '', 1, '2020-10-22 02:05:05', 0, NULL, 0, NULL, 1),
(1754, 1441, '3', 'madras university', '', 'b.com', '2018', 82.00, '', 1, '2020-10-22 02:05:36', 0, NULL, 0, NULL, 1),
(1755, 1443, '5', 'St.Michales polytechnic', '', '', '2008', 80.00, '', 1, '2020-10-22 03:30:54', 0, NULL, 0, NULL, 1),
(1756, 1446, '3', 'University of madras', '', 'Bsc computer science', '2012', 62.80, '', 1, '2020-10-22 04:10:12', 0, NULL, 0, NULL, 1),
(1757, 1446, '2', 'Government higher secondary school', '', '', '2009', 50.00, '', 1, '2020-10-22 04:11:21', 0, NULL, 0, NULL, 1),
(1758, 1446, '1', 'Government higher secondary school', '', '', '2007', 62.00, '', 1, '2020-10-22 04:11:54', 0, NULL, 0, NULL, 1),
(1759, 1445, '3', 'Madras university', '', 'Bsc computer science', '2019', 60.00, '', 1, '2020-10-22 04:36:58', 0, NULL, 0, NULL, 1),
(1760, 1447, '3', 'Madras university ', '', 'B. Com', '2020', 65.00, '', 1, '2020-10-22 05:58:22', 1, '2020-10-22 05:59:35', 0, NULL, 0),
(1761, 1447, '1', 'State board ', '', '', '2015', 78.00, '', 1, '2020-10-22 05:58:51', 0, NULL, 0, NULL, 1),
(1762, 1447, '2', 'State board', '', '', '2017', 65.00, '', 1, '2020-10-22 06:00:14', 0, NULL, 0, NULL, 1),
(1763, 1447, '3', 'Madras university ', '', 'B. Com', '2020', 68.00, '', 1, '2020-10-22 06:00:59', 0, NULL, 0, NULL, 1),
(1764, 1451, '3', 'tamilnadu open university', '', 'b.com', '2012', 70.00, '', 1, '2020-10-22 09:50:28', 1, '2020-10-22 09:51:12', 0, NULL, 1),
(1765, 1452, '3', 'Madras university', '', 'B.sc maths', '2020', 81.00, '', 1, '2020-10-23 09:54:33', 0, NULL, 0, NULL, 1),
(1766, 1452, '1', 'State board', '', '', '2015', 90.00, '', 1, '2020-10-23 09:57:01', 0, NULL, 0, NULL, 1),
(1767, 1452, '2', 'State board', '', '', '2017', 72.00, '', 1, '2020-10-23 09:57:36', 0, NULL, 0, NULL, 1),
(1768, 1453, '3', 'Anna university', '', 'BE ', '2016', 70.00, '', 1, '2020-10-23 10:03:57', 0, NULL, 0, NULL, 1),
(1769, 1455, '2', 'State board', '', '', '2017', 50.00, '', 1, '2020-10-23 10:38:11', 0, NULL, 0, NULL, 1),
(1770, 1455, '3', 'Madras University ', '', 'Bba', '2020', 50.00, '', 1, '2020-10-23 10:38:38', 0, NULL, 0, NULL, 1),
(1771, 1449, '4', 'university', '', '', '2019', 69.05, '', 1, '2020-10-23 11:12:34', 0, NULL, 0, NULL, 1),
(1772, 1449, '4', 'university', '', '', '2019', 69.05, '', 1, '2020-10-23 11:12:34', 0, NULL, 0, NULL, 1),
(1773, 1457, '2', 'Sri Krishna Swamy Matric hr.sed school', '', '', '2010', 53.00, '', 1, '2020-10-23 11:24:52', 0, NULL, 0, NULL, 1),
(1774, 1419, '4', 'State board', '', 'BA economics', '2019', 80.00, '', 1, '2020-10-23 11:26:32', 0, NULL, 0, NULL, 1),
(1775, 1457, '1', 'Sri Krishna Swamy Matric hr sec school', '', '', '2010', 53.00, '', 1, '2020-10-23 11:27:29', 0, NULL, 0, NULL, 1),
(1776, 1448, '3', 'annauniversity', '', 'b.e', '2020', 70.00, '', 1, '2020-10-23 11:57:12', 0, NULL, 0, NULL, 1),
(1777, 1330, '2', 'State board', '', '', '2013', 72.00, '', 1, '2020-10-23 12:08:21', 0, NULL, 0, NULL, 1),
(1778, 1458, '3', 'Bharathiyar University', '', 'BBA.CA', '2020', 58.00, '', 1, '2020-10-23 12:08:35', 0, NULL, 0, NULL, 1),
(1779, 1330, '3', 'Pa college of engineering ', '', 'Be mech', '2017', 63.00, '', 1, '2020-10-23 12:08:54', 0, NULL, 0, NULL, 1),
(1780, 1460, '3', 'Board', '', 'B.A Economics', '2020', 76.00, '', 1, '2020-10-23 12:36:38', 0, NULL, 0, NULL, 1),
(1781, 1459, '3', 'Medras University', '', 'Bsc Computer Science', '2020', 76.00, '', 1, '2020-10-23 12:49:57', 0, NULL, 0, NULL, 1),
(1782, 1461, '2', 'State board ', '', '', '2017', 82.00, '', 1, '2020-10-23 01:06:21', 0, NULL, 0, NULL, 1),
(1783, 1461, '3', 'Madras university ', '', 'Bba', '2020', 75.00, '', 1, '2020-10-23 01:06:47', 0, NULL, 0, NULL, 1),
(1784, 1462, '3', 'madras university', '', 'b.sc', '2017', 75.00, '', 1, '2020-10-23 01:27:26', 0, NULL, 0, NULL, 1),
(1785, 1462, '1', 'state board', '', '', '2012', 80.00, '', 1, '2020-10-23 01:28:15', 0, NULL, 0, NULL, 1),
(1786, 1462, '2', 'state board', '', '', '2014', 70.00, '', 1, '2020-10-23 01:28:35', 0, NULL, 0, NULL, 1),
(1787, 1465, '3', 'Madras University', '', 'Bsc ', '2017', 75.50, '', 1, '2020-10-23 01:43:10', 0, NULL, 0, NULL, 1),
(1788, 1466, '3', 'Madras university', '', 'Bsc', '2017', 75.50, '', 1, '2020-10-23 02:49:50', 0, NULL, 0, NULL, 1),
(1789, 1467, '4', 'Crescent business school', '', 'MBA', '2017', 6.30, '', 1, '2020-10-23 03:21:14', 0, NULL, 0, NULL, 1),
(1790, 1468, '3', 'University', '', 'B.E CSE', '2015', 70.00, '', 1, '2020-10-23 04:28:23', 0, NULL, 0, NULL, 1),
(1791, 1468, '2', 'Board', '', '', '2009', 75.00, '', 1, '2020-10-23 04:29:09', 0, NULL, 0, NULL, 1),
(1792, 1468, '5', 'University', '', 'Diploma in computer science', '2012', 90.00, '', 1, '2020-10-23 04:29:58', 0, NULL, 0, NULL, 1),
(1793, 1470, '3', 'Madres University ', '', 'B.com', '2015', 60.00, '', 1, '2020-10-23 05:19:47', 0, NULL, 0, NULL, 1),
(1794, 1474, '3', 'Apollo Engineering College ', '', 'BE', '2020', 73.00, '', 1, '2020-10-23 05:33:26', 0, NULL, 0, NULL, 1),
(1795, 1473, '3', 'Madras University', '', '', '2019', 68.00, '', 1, '2020-10-23 05:36:09', 0, NULL, 0, NULL, 1),
(1796, 1476, '3', 'Madras University', '', 'BA', '2020', 70.00, '', 1, '2020-10-23 05:37:19', 0, NULL, 0, NULL, 1),
(1797, 1475, '3', 'ANNA UNIVERSITY', '', 'BE EEE', '2017', 68.00, '', 1, '2020-10-23 05:37:56', 0, NULL, 0, NULL, 1),
(1798, 1469, '3', 'madras university', '', 'bca', '2020', 75.00, '', 1, '2020-10-23 06:28:32', 0, NULL, 0, NULL, 1),
(1799, 1469, '2', 'state board', '', '', '2017', 73.00, '', 1, '2020-10-23 06:30:36', 0, NULL, 0, NULL, 1),
(1800, 1469, '1', 'state board', '', '', '2015', 83.00, '', 1, '2020-10-23 06:31:05', 0, NULL, 0, NULL, 1),
(1801, 1471, '3', 'Madras university', '', 'B.Sc Computer Science', '2015', 84.00, '', 1, '2020-10-23 07:10:02', 0, NULL, 0, NULL, 1),
(1802, 1471, '2', 'State Board', '', '', '2012', 88.00, '', 1, '2020-10-23 07:10:33', 0, NULL, 0, NULL, 1),
(1803, 1479, '3', 'Madras University', '', 'Bsc cs', '2020', 75.00, '', 1, '2020-10-24 07:15:38', 0, NULL, 0, NULL, 1),
(1804, 1479, '2', 'State board', '', '', '2017', 68.00, '', 1, '2020-10-24 07:20:32', 0, NULL, 0, NULL, 1),
(1805, 1479, '1', 'State board', '', '', '2015', 82.00, '', 1, '2020-10-24 07:21:05', 0, NULL, 0, NULL, 1),
(1806, 1480, '1', 'stae board', '', '', '2009', 80.00, '', 1, '2020-10-24 10:53:02', 0, NULL, 0, NULL, 1),
(1807, 1480, '2', 'State board', '', '', '2011', 82.00, '', 1, '2020-10-24 10:53:25', 0, NULL, 0, NULL, 1),
(1808, 1484, '4', 'Anna University', '', 'MBA', '2020', 71.60, '', 1, '2020-10-24 11:10:32', 0, NULL, 0, NULL, 1),
(1809, 1486, '3', 'Thiruvalluver ', '', 'Bsc.  Computer science', '2019', 75.00, '', 1, '2020-10-24 11:17:11', 0, NULL, 0, NULL, 1),
(1810, 1487, '3', 'Meenakshi college for women', '', 'B.com', '2020', 78.00, '', 1, '2020-10-24 11:21:52', 0, NULL, 0, NULL, 1),
(1811, 1489, '3', 'Justice Basheer Ahmed sayeed college for womens', '', 'Bsc mathematics', '2017', 77.68, '', 1, '2020-10-24 11:37:36', 0, NULL, 0, NULL, 1),
(1812, 1488, '3', 'Madras university ', '', 'B. Com', '2020', 80.00, '', 1, '2020-10-24 11:42:48', 0, NULL, 0, NULL, 1),
(1813, 1482, '3', 'Madras University', '', 'B.com( Bank management)', '2020', 68.00, '', 1, '2020-10-24 11:45:15', 0, NULL, 0, NULL, 1),
(1814, 1492, '3', 'Madras University', '', 'Bcom (Accounting and Finance)', '2020', 69.00, '', 1, '2020-10-24 02:23:38', 0, NULL, 0, NULL, 1),
(1815, 1490, '3', 'Madras university ', '', 'B.com', '2020', 66.40, '', 1, '2020-10-24 02:24:35', 0, NULL, 0, NULL, 1),
(1816, 1491, '3', 'Madras University', '', 'Bcom (Accounting and Finance)', '2020', 72.00, '', 1, '2020-10-24 02:42:14', 0, NULL, 0, NULL, 1),
(1817, 1497, '3', 'Madras university', '', 'B.voc', '2019', 62.00, '', 1, '2020-10-24 07:49:43', 0, NULL, 0, NULL, 1),
(1818, 1499, '4', 'madras university - distance education', '', 'mba', '2019', 60.00, '', 1, '2020-10-25 10:13:02', 1, '2020-10-25 10:20:26', 0, NULL, 1),
(1819, 1504, '3', 'Peri institute of technology ', '', 'BE/EEEE ', '2019', 6.50, '', 1, '2020-10-26 11:11:17', 0, NULL, 0, NULL, 1),
(1820, 1505, '1', 'State board', '', '', '2009', 55.00, '', 1, '2020-10-26 11:18:22', 0, NULL, 0, NULL, 1),
(1821, 1505, '2', 'State board', '', '', '2012', 50.00, '', 1, '2020-10-26 11:19:00', 0, NULL, 0, NULL, 1),
(1822, 1505, '3', 'SRM University', '', 'B.com', '2015', 55.00, '', 1, '2020-10-26 11:20:08', 0, NULL, 0, NULL, 1),
(1823, 1506, '3', 'thiruthangal nadar', '', 'b.com a/f', '2014', 5.30, '', 1, '2020-10-26 11:26:34', 0, NULL, 0, NULL, 1),
(1824, 1500, '3', 'university', '', 'b.comgeneral', '2020', 68.00, '', 1, '2020-10-26 11:44:26', 0, NULL, 0, NULL, 1),
(1825, 1502, '3', 'mardas university', '', 'b.com', '2019', 57.00, '', 1, '2020-10-26 11:57:05', 0, NULL, 0, NULL, 1),
(1826, 1502, '1', 'state borad ', '', '', '2014', 52.00, '', 1, '2020-10-26 11:58:08', 0, NULL, 0, NULL, 1),
(1827, 1502, '2', 'state board', '', '', '2016', 49.00, '', 1, '2020-10-26 11:58:45', 0, NULL, 0, NULL, 1),
(1828, 1501, '3', 'baharathi  womens colleage', '', 'b a economics', '2019', 75.00, '', 1, '2020-10-26 12:31:06', 0, NULL, 0, NULL, 1),
(1829, 1509, '3', 'poompuhar college', '', 'bca', '2020', 63.00, '', 1, '2020-10-26 12:37:05', 0, NULL, 0, NULL, 1),
(1830, 1507, '3', 'hinduthan arts and science', '', 'bca', '2020', 70.00, '', 1, '2020-10-26 12:38:51', 0, NULL, 0, NULL, 1),
(1831, 1503, '3', 'chevalier t.thomas elizebeth', '', 'b.a.english', '2020', 75.00, '', 1, '2020-10-26 12:45:24', 0, NULL, 0, NULL, 1),
(1832, 1510, '3', 'Madras university', '', 'B. Com( c. S) ', '2020', 84.00, '', 1, '2020-10-26 01:01:39', 0, NULL, 0, NULL, 1),
(1833, 1510, '1', 'Matriculation', '', '', '2015', 58.00, '', 1, '2020-10-26 01:02:42', 0, NULL, 0, NULL, 1),
(1834, 1510, '2', 'Matriculation', '', '', '2017', 56.00, '', 1, '2020-10-26 01:03:06', 0, NULL, 0, NULL, 1),
(1835, 1508, '3', 'anna university', '', 'be', '2020', 7.50, '', 1, '2020-10-26 01:23:35', 0, NULL, 0, NULL, 1),
(1836, 1512, '3', 'University', '', 'BE', '2020', 7.01, '', 1, '2020-10-26 01:24:44', 0, NULL, 0, NULL, 1),
(1837, 1513, '3', 'Autonomous ', '', 'BE', '2020', 78.00, '', 1, '2020-10-26 01:39:20', 0, NULL, 0, NULL, 1),
(1838, 1325, '3', 'Anna university', '', 'BE', '2020', 7.40, '', 1, '2020-10-26 01:40:17', 0, NULL, 0, NULL, 1),
(1839, 1514, '3', 'Anna university,chennai', '', 'B.E/ECE', '2020', 6.82, '', 1, '2020-10-26 01:42:08', 0, NULL, 0, NULL, 1),
(1840, 1485, '3', 'University', '', 'BE', '2020', 77.00, '', 1, '2020-10-26 01:49:18', 0, NULL, 0, NULL, 1),
(1841, 1518, '3', 'Anna university', '', 'BE', '2016', 59.00, '', 1, '2020-10-26 03:40:46', 0, NULL, 0, NULL, 1),
(1842, 1517, '3', 'Anna university', '', 'B.E', '2020', 75.00, '', 1, '2020-10-26 04:09:30', 0, NULL, 0, NULL, 1),
(1843, 1520, '3', ' University of Madras ', '', 'B school Mathematics ', '2016', 57.00, '', 1, '2020-10-26 04:43:36', 0, NULL, 0, NULL, 1),
(1844, 1521, '3', 'Thiruvalluvar university', '', 'B.sc( physics)', '2018', 63.00, '', 1, '2020-10-26 05:03:36', 0, NULL, 0, NULL, 1),
(1845, 1525, '3', 'Madras university', '', 'B.Com', '2017', 60.00, '', 1, '2020-10-26 05:29:32', 0, NULL, 0, NULL, 1),
(1846, 1527, '4', 'Anna university', '', 'MBA', '2020', 7.20, '', 1, '2020-10-26 07:48:09', 0, NULL, 0, NULL, 1),
(1847, 1530, '3', 'Anna University', '', 'BE', '2015', 60.00, '', 1, '2020-10-26 08:48:23', 1, '2020-10-26 08:54:25', 0, NULL, 1),
(1848, 1530, '2', 'State board', '', '', '2008', 66.00, '', 1, '2020-10-26 08:52:06', 0, NULL, 0, NULL, 1),
(1849, 1530, '1', 'State board', '', '', '2006', 60.00, '', 1, '2020-10-26 08:52:47', 1, '2020-10-26 08:54:02', 0, NULL, 1),
(1850, 1534, '3', 'Madras university', '', '', '2020', 84.00, '', 1, '2020-10-27 10:22:37', 0, NULL, 0, NULL, 1),
(1851, 1533, '3', 'Madras University', '', 'B.sc Computer science', '2020', 84.00, '', 1, '2020-10-27 10:23:57', 0, NULL, 0, NULL, 1),
(1852, 1535, '3', 'The NEW college', '', 'Bca', '2020', 68.00, '', 1, '2020-10-27 10:44:52', 0, NULL, 0, NULL, 1),
(1853, 1535, '1', 'STATE BOARD', '', '', '2015', 80.00, '', 1, '2020-10-27 10:45:31', 0, NULL, 0, NULL, 1),
(1854, 1535, '2', 'STATE BOARD', '', '', '2017', 76.60, '', 1, '2020-10-27 10:45:59', 0, NULL, 0, NULL, 1),
(1855, 1536, '4', 'Crescent Institute of science and technology', '', '2020', '2020', 90.00, '', 1, '2020-10-27 10:48:45', 0, NULL, 0, NULL, 1),
(1856, 1536, '3', 'JBAS college for women', '', 'B.com', '2018', 67.00, '', 1, '2020-10-27 10:49:38', 0, NULL, 0, NULL, 1),
(1857, 1538, '1', 'CBSE', '', '', '2015', 74.00, '', 1, '2020-10-27 11:07:25', 1, '2020-10-27 11:09:00', 0, NULL, 1),
(1858, 1538, '2', 'State board', '', '', '2017', 75.00, '', 1, '2020-10-27 11:07:53', 0, NULL, 0, NULL, 1),
(1859, 1538, '3', 'Madras university', '', 'B.com', '2020', 80.00, '', 1, '2020-10-27 11:08:27', 0, NULL, 0, NULL, 1),
(1860, 1511, '2', 'Matriculation', '', '', '2015', 58.00, '', 1, '2020-10-27 11:09:06', 0, NULL, 0, NULL, 1),
(1861, 1537, '4', 'Sunrise University', '', 'B. com', '2015', 65.00, '', 1, '2020-10-27 11:09:44', 0, NULL, 0, NULL, 1),
(1862, 1511, '1', 'Madriculation', '', '', '2017', 60.00, '', 1, '2020-10-27 11:09:57', 0, NULL, 0, NULL, 1),
(1863, 1539, '3', 'Madras University ', '', 'B. Com (C. S) ', '2020', 80.00, '', 1, '2020-10-27 11:10:32', 0, NULL, 0, NULL, 1),
(1864, 1511, '3', 'Madras university ', '', 'Bcom (c s)', '2020', 75.00, '', 1, '2020-10-27 11:10:45', 0, NULL, 0, NULL, 1),
(1865, 1539, '1', 'Stare board ', '', '', '2015', 52.00, '', 1, '2020-10-27 11:11:49', 0, NULL, 0, NULL, 1),
(1866, 1539, '2', 'State board', '', '', '2017', 60.00, '', 1, '2020-10-27 11:12:21', 0, NULL, 0, NULL, 1),
(1867, 1540, '3', 'Madras university ', '', 'B. Com (General) ', '2020', 65.00, '', 1, '2020-10-27 11:17:30', 0, NULL, 0, NULL, 1),
(1868, 1541, '3', 'Madras University', '', 'B.com (ism)', '2020', 68.00, '', 1, '2020-10-27 11:22:03', 0, NULL, 0, NULL, 1),
(1869, 1542, '3', 'Anna university', '', 'B.tech', '2020', 6.80, '', 1, '2020-10-27 11:28:07', 0, NULL, 0, NULL, 1),
(1870, 1516, '3', 'Dg vaishnav', '', '', '2017', 60.00, '', 1, '2020-10-27 11:39:21', 0, NULL, 0, NULL, 1),
(1871, 1544, '3', 'University', '', 'BE', '2020', 70.00, '', 1, '2020-10-27 11:57:08', 0, NULL, 0, NULL, 1),
(1872, 1543, '1', 'state board', '', '', '2002', 75.00, '', 1, '2020-10-27 12:01:11', 0, NULL, 0, NULL, 1),
(1873, 1543, '2', 'state board', '', '', '2004', 75.00, '', 1, '2020-10-27 12:01:27', 0, NULL, 0, NULL, 1),
(1874, 1543, '3', 'periyar university', '', 'bsc bio-technology', '2007', 56.00, '', 1, '2020-10-27 12:02:17', 0, NULL, 0, NULL, 1),
(1875, 1543, '4', 'anna university-coimbatore', '', 'm.c.a', '2011', 81.00, '', 1, '2020-10-27 12:02:53', 0, NULL, 0, NULL, 1),
(1876, 1546, '3', 'Madras university', '', 'Bsc (cs)', '2011', 49.00, '', 1, '2020-10-27 12:51:31', 0, NULL, 0, NULL, 1),
(1877, 1547, '3', 'Madras university', '', 'B.com', '2016', 56.00, '', 1, '2020-10-27 01:23:17', 0, NULL, 0, NULL, 1),
(1878, 1548, '3', 'Tagore arts Science', '', 'B.com', '2019', 45.00, '', 1, '2020-10-27 01:26:19', 0, NULL, 0, NULL, 1),
(1879, 1553, '4', 'Sathyabama institute of science and technology', '', 'MBA', '2019', 8.11, '', 1, '2020-10-27 03:33:19', 0, NULL, 0, NULL, 1),
(1880, 1551, '4', 'Madras university', '', 'MBA', '2020', 70.00, '', 1, '2020-10-27 03:44:49', 0, NULL, 0, NULL, 1),
(1881, 1249, '3', 'Madras university ', '', 'BBA', '2020', 70.00, '', 1, '2020-10-27 03:50:55', 0, NULL, 0, NULL, 1),
(1882, 1554, '3', 'madras university', '', 'b.a corporate economics', '2020', 68.00, '', 1, '2020-10-27 04:28:21', 0, NULL, 0, NULL, 1),
(1883, 1556, '4', 'D G Vaishnav college ( Madras University)', '', 'MSW (HR)', '2020', 71.15, '', 1, '2020-10-27 04:50:04', 1, '2020-10-27 04:54:39', 0, NULL, 1),
(1884, 1556, '3', 'D G Vaishnav college (Madras University)', '', 'B.Com', '2018', 63.45, '', 1, '2020-10-27 04:52:23', 1, '2020-10-27 04:55:18', 0, NULL, 1),
(1885, 1556, '2', 'State board', '', '', '2015', 85.92, '', 1, '2020-10-27 04:53:08', 0, NULL, 0, NULL, 1),
(1886, 1556, '1', 'State board', '', '', '2013', 86.60, '', 1, '2020-10-27 04:53:39', 0, NULL, 0, NULL, 1),
(1887, 1558, '3', 'university', '', 'bba', '2020', 67.00, '', 1, '2020-10-27 05:20:36', 0, NULL, 0, NULL, 1),
(1888, 1555, '3', 'Loyola College Chennai ', '', 'B.com(commerce)', '2020', 66.00, '', 1, '2020-10-27 06:01:12', 0, NULL, 0, NULL, 1),
(1889, 1555, '2', 'Tamil Nadu State board', '', '', '2017', 91.00, '', 1, '2020-10-27 06:01:55', 0, NULL, 0, NULL, 1),
(1890, 1559, '3', 'Dr. Ambedkar law university', '', 'BA LLB', '2021', 58.00, '', 1, '2020-10-27 06:04:30', 0, NULL, 0, NULL, 1),
(1891, 1555, '1', 'Tamil Nadu State board', '', '', '2015', 95.00, '', 1, '2020-10-27 06:32:58', 0, NULL, 0, NULL, 1),
(1892, 1560, '3', 'D.B.Jain college thuraipakkam', '', 'B.com', '2017', 58.00, '', 1, '2020-10-27 06:55:40', 0, NULL, 0, NULL, 1),
(1893, 1563, '3', 'Madras university', '', 'BCA', '2020', 64.40, '', 1, '2020-10-27 07:36:37', 0, NULL, 0, NULL, 1),
(1894, 1564, '3', 'SRM university', '', 'Bsc HCM', '2017', 85.00, '', 1, '2020-10-27 08:43:54', 0, NULL, 0, NULL, 1),
(1895, 1566, '1', 'state board', '', '', '2013', 91.60, '', 1, '2020-10-27 10:56:09', 1, '2020-10-27 11:06:02', 0, NULL, 0),
(1896, 1566, '2', 'state board', '', '', '2015', 91.00, '', 1, '2020-10-27 10:56:51', 1, '2020-10-27 11:05:58', 0, NULL, 0),
(1897, 1566, '3', 'madras university', '', 'b.com', '2018', 65.00, '', 1, '2020-10-27 10:57:46', 1, '2020-10-27 11:05:54', 0, NULL, 0),
(1898, 1566, '4', 'sastra university', '', 'm b a', '2020', 68.00, '', 1, '2020-10-27 10:58:29', 1, '2020-10-27 11:06:00', 0, NULL, 0),
(1899, 1566, '4', 'sastra university', '', 'MBA', '2020', 68.00, '', 1, '2020-10-27 11:06:28', 0, NULL, 0, NULL, 1),
(1900, 1566, '3', 'madras university', '', 'b.com ', '2018', 65.00, '', 1, '2020-10-27 11:07:06', 0, NULL, 0, NULL, 1),
(1901, 1566, '2', 'state board', '', '', '2015', 91.00, '', 1, '2020-10-27 11:07:27', 0, NULL, 0, NULL, 1),
(1902, 1566, '1', 'state board', '', '', '2013', 91.60, '', 1, '2020-10-27 11:07:52', 0, NULL, 0, NULL, 1),
(1903, 1582, '3', 'Madras university ', '', 'B com', '2020', 68.00, '', 1, '2020-10-28 11:23:24', 0, NULL, 0, NULL, 1),
(1904, 1580, '3', 'Madras university', '', 'Bsc(computer science) ', '2017', 70.00, '', 1, '2020-10-28 11:25:09', 0, NULL, 0, NULL, 1),
(1905, 1568, '3', 'Madras University', '', 'B.com', '2020', 75.00, '', 1, '2020-10-28 11:26:40', 0, NULL, 0, NULL, 1),
(1906, 1577, '3', 'State board ', '', 'BBA', '2017', 65.00, '', 1, '2020-10-28 11:29:01', 0, NULL, 0, NULL, 1),
(1907, 1550, '4', 'srm school of management', '', 'mba', '2020', 77.00, '', 1, '2020-10-28 11:32:25', 0, NULL, 0, NULL, 1),
(1908, 1550, '3', 'guru nanak college ', '', 'bba ', '2018', 57.00, '', 1, '2020-10-28 11:33:08', 0, NULL, 0, NULL, 1),
(1909, 1550, '2', 'asan memorial matriculation higher secondary school', '', '', '2015', 53.00, '', 1, '2020-10-28 11:34:22', 0, NULL, 0, NULL, 1),
(1910, 1550, '1', 'Asan Memorial Matriculation Higher Secondary School', '', '', '2013', 82.00, '', 1, '2020-10-28 11:35:08', 1, '2020-10-28 11:35:38', 0, NULL, 0),
(1911, 1550, '1', 'Asan Memorial Matriculation Higher Secondary School', '', '', '2013', 82.00, '', 1, '2020-10-28 11:36:08', 0, NULL, 0, NULL, 1),
(1912, 1574, '3', 'Madras University', '', 'B.com general', '2020', 55.00, '', 1, '2020-10-28 11:36:35', 0, NULL, 0, NULL, 1),
(1913, 1574, '1', 'Seetha Kingston hr.sec.school', '', '', '2015', 74.00, '', 1, '2020-10-28 11:38:46', 0, NULL, 0, NULL, 1),
(1914, 1578, '3', 'Anna university', '', 'B.com', '2020', 60.00, '', 1, '2020-10-28 11:43:20', 0, NULL, 0, NULL, 1),
(1915, 1523, '3', 'Madras University ', '', 'Bsc maths ', '2016', 60.00, '', 1, '2020-10-28 11:53:44', 0, NULL, 0, NULL, 1),
(1916, 1581, '3', 'Madras university', '', 'Bsc(cs)', '2020', 60.00, '', 1, '2020-10-28 12:24:03', 0, NULL, 0, NULL, 1),
(1917, 1545, '3', 'Madras university', '', 'Bsc(cs)', '2017', 60.00, '', 1, '2020-10-28 12:32:39', 0, NULL, 0, NULL, 1),
(1918, 1585, '3', 'Madras university ', '', 'BCA', '2020', 65.00, '', 1, '2020-10-28 12:42:50', 0, NULL, 0, NULL, 1),
(1919, 1565, '3', 'University of madras', '', 'B.com computer application', '2020', 85.00, '', 1, '2020-10-28 02:20:09', 0, NULL, 0, NULL, 1),
(1920, 1591, '3', 'Chennai University', '', 'B.A English', '2003', 40.00, '', 1, '2020-10-28 04:56:16', 0, NULL, 0, NULL, 1),
(1921, 1591, '2', 'Private', '', '', '1996', 44.00, '', 1, '2020-10-28 04:56:52', 0, NULL, 0, NULL, 1),
(1922, 1591, '1', 'Krishna matriculation', '', '', '1994', 59.00, '', 1, '2020-10-28 04:57:26', 0, NULL, 0, NULL, 1),
(1923, 1592, '3', 'SRM Arts and Science college ', '', 'B.Sc Electronics and communication science', '2017', 65.00, '', 1, '2020-10-28 06:20:27', 0, NULL, 0, NULL, 1),
(1924, 1593, '4', 'University of Bedfordshire', '', 'mBA', '2014', 70.00, '', 1, '2020-10-28 07:19:57', 0, NULL, 0, NULL, 1),
(1925, 1595, '4', 'Anna University', '', 'MBA', '2016', 65.00, '', 1, '2020-10-29 11:11:20', 0, NULL, 0, NULL, 1),
(1926, 1597, '3', 'Madras University', '', 'B.Sc computer science', '2020', 60.00, '', 1, '2020-10-29 12:33:31', 0, NULL, 0, NULL, 1),
(1927, 1597, '1', 'Rani meyyammai girls hr sec school', '', '', '2015', 81.00, '', 1, '2020-10-29 12:34:09', 0, NULL, 0, NULL, 1),
(1928, 1597, '2', 'Rani meyyammai girls hr sec school', '', '', '2017', 54.00, '', 1, '2020-10-29 12:34:33', 0, NULL, 0, NULL, 1),
(1929, 1598, '3', 'Madras University', '', 'BCA ', '2020', 60.00, '', 1, '2020-10-29 12:57:33', 0, NULL, 0, NULL, 1),
(1930, 1588, '3', 'University', '', 'B.A Eng lit', '2017', 55.00, '', 1, '2020-10-29 01:09:54', 0, NULL, 0, NULL, 1),
(1931, 1599, '3', 'University of Madras', '', 'BCA', '2020', 64.00, '', 1, '2020-10-29 01:14:04', 0, NULL, 0, NULL, 1),
(1932, 1601, '3', 'Madras University', '', 'BCA', '2020', 64.00, '', 1, '2020-10-29 01:34:24', 0, NULL, 0, NULL, 1),
(1933, 1600, '1', 'state board', '', 'b.com cs', '2009', 47.00, '', 1, '2020-10-29 01:41:08', 0, NULL, 0, NULL, 1),
(1934, 1600, '2', 'state board', '', '', '2011', 55.00, '', 1, '2020-10-29 01:41:37', 0, NULL, 0, NULL, 1),
(1935, 1600, '3', 'madras university', '', 'b.com.cs', '2016', 56.00, '', 1, '2020-10-29 01:42:23', 0, NULL, 0, NULL, 1),
(1936, 1604, '3', 'Anna university', '', 'B.E mechanical engineering', '2016', 61.00, '', 1, '2020-10-29 02:59:16', 0, NULL, 0, NULL, 1),
(1937, 1603, '4', 'M S University, Tirunelveli', '', 'M Sc Physics', '2016', 71.00, '', 1, '2020-10-29 03:00:06', 0, NULL, 0, NULL, 1),
(1938, 1603, '3', 'M S University, Tirunelveli', '', 'B Sc Physics', '2014', 80.00, '', 1, '2020-10-29 03:01:01', 0, NULL, 0, NULL, 1),
(1939, 1604, '2', 'Tamil Nadu State Board', '', '', '2012', 50.00, '', 1, '2020-10-29 03:03:49', 0, NULL, 0, NULL, 1),
(1940, 1608, '3', 'Madras university ', '', 'B.com bank management ', '2020', 72.00, '', 1, '2020-10-29 03:55:34', 0, NULL, 0, NULL, 1),
(1941, 1607, '3', 'MADRAS UNIVERSITY ', '', 'b.COM(BANK MANAGEMENT)', '2020', 72.00, '', 1, '2020-10-29 04:04:45', 0, NULL, 0, NULL, 1),
(1942, 1605, '3', 'Madras university', '', 'B.com', '2020', 70.00, '', 1, '2020-10-29 04:38:04', 0, NULL, 0, NULL, 1),
(1943, 1610, '3', 'Veltech Institute ', '', 'B.com ', '2019', 64.00, '', 1, '2020-10-29 04:46:37', 0, NULL, 0, NULL, 1),
(1944, 1613, '2', 'Board', '', 'Bcom', '2018', 79.00, '', 1, '2020-10-29 05:45:04', 0, NULL, 0, NULL, 1),
(1945, 1615, '3', 'Madras University ', '', 'B.sc', '2018', 65.00, '', 1, '2020-10-29 07:45:43', 0, NULL, 0, NULL, 1),
(1946, 1596, '4', 'Pondicherry', '', 'b com CS', '2007', 62.00, '', 1, '2020-10-30 10:43:39', 0, NULL, 0, NULL, 1),
(1947, 1596, '3', 'Madras', '', 'B.Com', '2007', 60.00, '', 1, '2020-10-30 10:53:40', 0, NULL, 0, NULL, 1),
(1948, 1618, '3', 'SCSVMV UNIVERSITY', '', 'BCA', '2019', 70.00, '', 1, '2020-10-30 10:57:02', 0, NULL, 0, NULL, 1),
(1949, 1619, '2', 'Islamiah boy\'s school', '', '', '1999', 50.00, '', 1, '2020-10-30 11:13:48', 0, NULL, 0, NULL, 1),
(1950, 1620, '3', 'University', '', 'B.com (a$f)', '2019', 82.00, '', 1, '2020-10-30 11:56:28', 0, NULL, 0, NULL, 1),
(1951, 1623, '4', 'Pondicherry university', '', 'MBA', '2009', 65.00, '', 1, '2020-10-30 12:13:46', 0, NULL, 0, NULL, 1),
(1952, 1583, '3', 'Madras University', '', 'BBA', '2017', 60.00, '', 1, '2020-10-30 12:15:50', 0, NULL, 0, NULL, 1),
(1953, 1622, '3', 'Matras university', '', 'B.com(cs)', '2019', 65.00, '', 1, '2020-10-30 12:16:48', 0, NULL, 0, NULL, 1),
(1954, 1617, '4', 'University of Madras', '', 'M.Sc Mathematics', '2020', 67.00, '', 1, '2020-10-30 12:30:04', 0, NULL, 0, NULL, 1),
(1955, 1617, '3', 'University of Madras', '', 'B.Sc Mathematics', '2017', 69.00, '', 1, '2020-10-30 12:31:00', 0, NULL, 0, NULL, 1),
(1956, 1617, '2', 'Stateboard', '', '', '2014', 70.00, '', 1, '2020-10-30 12:32:13', 0, NULL, 0, NULL, 1),
(1957, 1617, '1', 'Stateboard', '', '', '2012', 90.00, '', 1, '2020-10-30 12:32:42', 0, NULL, 0, NULL, 1),
(1958, 1590, '3', 'madras university', '', 'bba', '2017', 60.00, '', 1, '2020-10-30 01:15:58', 0, NULL, 0, NULL, 1),
(1959, 1621, '3', 'Madras University', '', 'BBA', '2017', 60.00, '', 1, '2020-10-30 01:21:45', 0, NULL, 0, NULL, 1),
(1960, 1626, '3', 'Amet University', '', 'Bachelor of engineering', '2020', 65.00, '', 1, '2020-10-30 03:33:27', 0, NULL, 0, NULL, 1),
(1961, 1627, '3', 'Board', '', 'Bsc computer science', '2018', 55.00, '', 1, '2020-10-30 04:08:11', 0, NULL, 0, NULL, 1),
(1962, 1630, '4', 'Anna university', '', 'MBA', '2020', 74.00, '', 1, '2020-10-30 04:55:07', 0, NULL, 0, NULL, 1),
(1963, 1630, '3', 'University of madras', '', 'B. Com', '2018', 69.00, '', 1, '2020-10-30 04:55:36', 0, NULL, 0, NULL, 1),
(1964, 1630, '2', 'State board', '', '', '2015', 88.00, '', 1, '2020-10-30 04:56:02', 0, NULL, 0, NULL, 1),
(1965, 1630, '1', 'State board', '', '', '2013', 85.00, '', 1, '2020-10-30 04:56:24', 0, NULL, 0, NULL, 1),
(1966, 1633, '4', 'Mop vaishnav college for women', '', 'Ma.hr', '2020', 73.00, '', 1, '2020-10-30 07:02:58', 0, NULL, 0, NULL, 1),
(1967, 1632, '4', 'pondicherry university', '', 'mba', '2020', 80.00, '', 1, '2020-10-30 08:07:46', 0, NULL, 0, NULL, 1),
(1968, 1632, '3', 'sathyabama university', '', 'visual communication', '2015', 65.00, '', 1, '2020-10-30 08:08:37', 0, NULL, 0, NULL, 1),
(1969, 1639, '4', 'Periyar university', '', 'MBA', '2017', 67.00, '', 1, '2020-10-30 10:50:31', 0, NULL, 0, NULL, 1),
(1970, 1640, '4', 'Sathyabama university', '', 'MBA', '2018', 76.00, '', 1, '2020-10-31 06:08:19', 0, NULL, 0, NULL, 1),
(1971, 1640, '3', 'Madras university', '', 'BSC CS', '2016', 73.00, '', 1, '2020-10-31 06:08:57', 0, NULL, 0, NULL, 1),
(1972, 1629, '4', 'Pondicherry University', '', 'MBA', '2020', 73.00, '', 1, '2020-10-31 10:40:43', 0, NULL, 0, NULL, 1),
(1973, 1629, '4', 'Pondicherry University', '', 'MBA', '2020', 73.00, '', 1, '2020-10-31 11:01:22', 0, NULL, 0, NULL, 1),
(1974, 1614, '4', 'Periyar University Salem', '', 'MBA', '2019', 70.00, '', 1, '2020-10-31 11:15:07', 0, NULL, 0, NULL, 1),
(1975, 1637, '3', 'Anna University', '', 'B.E', '2013', 74.00, '', 1, '2020-10-31 11:24:55', 0, NULL, 0, NULL, 1),
(1976, 1642, '3', 'MS university ', '', 'Bsc ', '2015', 73.00, '', 1, '2020-10-31 11:29:43', 0, NULL, 0, NULL, 1),
(1977, 1641, '3', 'Madras university', '', 'B.Sc Mathematics', '2020', 68.00, '', 1, '2020-10-31 11:41:19', 0, NULL, 0, NULL, 1),
(1978, 1631, '2', 'Kamaraj university ', '', '', '2016', 61.00, '', 1, '2020-10-31 11:48:12', 0, NULL, 0, NULL, 1),
(1979, 1644, '3', 'university', '', 'b.sc psychology', '2020', 65.00, '', 1, '2020-10-31 11:58:53', 0, NULL, 0, NULL, 1),
(1980, 1644, '1', 'state board', '', '', '2014', 71.00, '', 1, '2020-10-31 11:59:57', 0, NULL, 0, NULL, 1),
(1981, 1644, '2', 'state board', '', '', '2017', 60.00, '', 1, '2020-10-31 12:00:26', 0, NULL, 0, NULL, 1),
(1982, 1646, '3', 'Anna University', '', 'B.Tech IT', '2017', 72.00, '', 1, '2020-10-31 12:32:13', 0, NULL, 0, NULL, 1),
(1983, 1648, '4', 'Jantu A', '', 'Mba', '2019', 72.00, '', 1, '2020-10-31 12:59:37', 0, NULL, 0, NULL, 1),
(1984, 1648, '3', 'Svu', '', 'B. Com(CA) ', '2017', 63.00, '', 1, '2020-10-31 01:00:29', 0, NULL, 0, NULL, 1),
(1985, 1636, '1', 'State board', '', '', '2014', 75.00, '', 7, '2020-10-31 01:41:33', 0, NULL, 0, NULL, 1),
(1986, 1636, '4', 'anna', '', 'mba', '2020', 70.00, '', 1, '2020-10-31 01:43:28', 0, NULL, 0, NULL, 1),
(1987, 1649, '3', 'Anna University', '', 'Btech', '2020', 68.50, '', 1, '2020-10-31 01:59:11', 0, NULL, 0, NULL, 1),
(1988, 1650, '4', 'Madras university', '', 'msw ', '2020', 70.00, '', 1, '2020-10-31 04:00:56', 0, NULL, 0, NULL, 1),
(1989, 1652, '3', 'SRM Institute of Science and Technology, Chennai', '', 'B-TECH', '2020', 65.66, '', 1, '2020-10-31 04:53:24', 0, NULL, 0, NULL, 1),
(1990, 1655, '4', 'Anna university ', '', 'Mba', '2019', 63.00, '', 1, '2020-10-31 06:17:57', 0, NULL, 0, NULL, 1),
(1991, 1655, '3', 'Thiruvalluvar university ', '', 'BCA', '2017', 68.00, '', 1, '2020-10-31 06:18:38', 0, NULL, 0, NULL, 1),
(1992, 1659, '3', 'university of madras', '', 'b.sc computer science', '2019', 68.00, '', 1, '2020-10-31 06:39:29', 1, '2020-10-31 06:41:50', 0, NULL, 0),
(1993, 1659, '3', 'university of madras', '', 'b.sc computer science', '2019', 68.00, '', 1, '2020-10-31 06:42:54', 0, NULL, 0, NULL, 1),
(1994, 1659, '2', 'state board', '', '', '2016', 65.00, '', 1, '2020-10-31 06:43:37', 0, NULL, 0, NULL, 1),
(1995, 1659, '1', 'state board', '', '', '2014', 75.00, '', 1, '2020-10-31 06:43:56', 0, NULL, 0, NULL, 1),
(1996, 1661, '4', 'Saveetha School of Management ', '', 'MBA', '2020', 7.80, '', 1, '2020-10-31 07:30:48', 0, NULL, 0, NULL, 1),
(1997, 1663, '3', 'Anna University', '', 'B.E', '2020', 6.56, '', 1, '2020-10-31 10:20:21', 0, NULL, 0, NULL, 1),
(1998, 1237, '4', 's.a.engineering college', '', 'm.b.a', '2020', 77.00, '', 1, '2020-11-01 06:35:11', 0, NULL, 0, NULL, 1),
(1999, 1237, '3', 'panimalar institute of technology', '', 'b.e', '2018', 73.00, '', 1, '2020-11-01 06:35:51', 0, NULL, 0, NULL, 1),
(2000, 1237, '2', 'tamil nadu board', '', '', '2014', 83.00, '', 1, '2020-11-01 06:36:29', 0, NULL, 0, NULL, 1),
(2001, 1237, '1', 'tamil nadu board', '', '', '2012', 88.00, '', 1, '2020-11-01 06:36:58', 0, NULL, 0, NULL, 1),
(2002, 1665, '4', 'anna university', '', 'mba', '2020', 6.00, '', 1, '2020-11-02 07:52:26', 0, NULL, 0, NULL, 1),
(2003, 1665, '3', 'anna university', '', 'be', '2016', 59.00, '', 1, '2020-11-02 07:53:03', 0, NULL, 0, NULL, 1),
(2004, 1665, '2', 'state board', '', '', '2010', 75.00, '', 1, '2020-11-02 07:53:39', 0, NULL, 0, NULL, 1),
(2005, 1665, '1', 'matriculation', '', '', '2008', 68.00, '', 1, '2020-11-02 07:54:13', 0, NULL, 0, NULL, 1),
(2006, 1669, '5', 'Anna University ', '', 'EEE', '2015', 66.00, '', 1, '2020-11-02 10:33:41', 0, NULL, 0, NULL, 1),
(2007, 1668, '3', 'SCSVMV University ', '', 'Bsc ', '2019', 70.00, '', 1, '2020-11-02 10:37:10', 0, NULL, 0, NULL, 1),
(2008, 1670, '3', 'Anna university ', '', 'B Tech IT ', '2020', 69.80, '', 1, '2020-11-02 10:58:08', 0, NULL, 0, NULL, 1),
(2009, 1671, '5', 'Sri Ram educational trust', '', 'D.E.C.E', '2014', 60.00, '', 1, '2020-11-02 11:17:31', 0, NULL, 0, NULL, 1),
(2010, 1666, '3', 'Anna University', '', '', '2018', 6.78, '', 1, '2020-11-02 11:23:34', 0, NULL, 0, NULL, 1),
(2011, 1674, '3', 'Anna university ', '', 'Btech it', '2020', 73.00, '', 1, '2020-11-02 11:38:01', 0, NULL, 0, NULL, 1),
(2012, 1674, '2', 'Sri ramakrishna math girls hr sec school ', '', '', '2016', 72.00, '', 1, '2020-11-02 11:38:40', 0, NULL, 0, NULL, 1),
(2013, 1674, '1', 'Wisdom matriculation school ', '', '', '2014', 86.00, '', 1, '2020-11-02 11:39:03', 0, NULL, 0, NULL, 1),
(2014, 1676, '3', 'Anna university', '', 'B.E (ECE)', '2018', 75.00, '', 1, '2020-11-02 11:51:11', 0, NULL, 0, NULL, 1),
(2015, 1667, '3', 'Madras University', '', 'Bsc maths', '2020', 68.00, '', 1, '2020-11-02 11:53:27', 0, NULL, 0, NULL, 1),
(2016, 1667, '1', 'State board', '', '', '2015', 90.00, '', 1, '2020-11-02 11:54:04', 0, NULL, 0, NULL, 1),
(2017, 1667, '2', 'State board', '', '', '2017', 71.00, '', 1, '2020-11-02 11:54:23', 0, NULL, 0, NULL, 1),
(2018, 1616, '3', 'Dhanalakshmi srinivasan college of arts and science for women', '', 'B.sc physics', '2020', 73.00, '', 1, '2020-11-02 11:59:13', 0, NULL, 0, NULL, 1),
(2019, 1673, '3', 'Madras university ', '', 'B.com CS', '2014', 62.00, '', 1, '2020-11-02 12:02:20', 0, NULL, 0, NULL, 1),
(2020, 1660, '3', 'Thiruvallur univarsity', '', 'Bcom', '2020', 57.00, '', 1, '2020-11-02 12:55:23', 0, NULL, 0, NULL, 1),
(2021, 1638, '5', 'Annamalai ', '', 'Dplmo', '2015', 70.00, '', 1, '2020-11-02 12:59:26', 0, NULL, 0, NULL, 1),
(2022, 1657, '3', 'Thiruvallur university ', '', 'Bsc', '2019', 52.00, '', 1, '2020-11-02 01:02:14', 0, NULL, 0, NULL, 1),
(2023, 1677, '4', 'Madras', '', 'B. Com', '2019', 60.00, '', 1, '2020-11-02 01:07:36', 0, NULL, 0, NULL, 1),
(2024, 1658, '1', 'stateboard', '', '', '2004', 72.00, '', 1, '2020-11-02 01:22:20', 0, NULL, 0, NULL, 1),
(2025, 1658, '2', 'stateboard', '', 'mca', '2006', 54.00, '', 1, '2020-11-02 01:23:24', 0, NULL, 0, NULL, 1),
(2026, 1658, '3', 'annauniversity', '', 'b.sc', '2009', 64.00, '', 1, '2020-11-02 01:23:54', 0, NULL, 0, NULL, 1),
(2027, 1658, '4', 'anna', '', 'mca', '2013', 7.01, '', 1, '2020-11-02 01:24:22', 0, NULL, 0, NULL, 1),
(2028, 1681, '4', 'Anna University -Tagore engineering college', '', 'MBA', '2020', 70.00, '', 1, '2020-11-02 01:26:06', 0, NULL, 0, NULL, 1),
(2029, 1651, '3', 'thiruvalluvar univarsity', '', 'bcom', '2020', 57.00, '', 1, '2020-11-02 01:49:50', 0, NULL, 0, NULL, 1),
(2030, 1683, '3', 'Noorul Islam University', '', 'BE', '2017', 7.70, '', 1, '2020-11-02 03:01:42', 0, NULL, 0, NULL, 1),
(2031, 1683, '1', 'Board', '', '', '2011', 85.00, '', 1, '2020-11-02 03:02:15', 0, NULL, 0, NULL, 1),
(2032, 1683, '2', 'Little flower matric school', '', '', '2013', 75.00, '', 1, '2020-11-02 03:02:47', 0, NULL, 0, NULL, 1),
(2033, 1684, '3', 'Bharathidhasan university ', '', 'UG', '2016', 75.00, '', 1, '2020-11-02 04:52:23', 0, NULL, 0, NULL, 1),
(2034, 1686, '4', 'Anna University', '', 'MBA', '2018', 78.00, '', 1, '2020-11-02 05:12:50', 0, NULL, 0, NULL, 1),
(2035, 1686, '3', 'Anna University', '', 'B.e', '2015', 63.00, '', 1, '2020-11-02 05:13:29', 0, NULL, 0, NULL, 1),
(2036, 1688, '4', 'Madras university', '', 'MBA (HR)', '2018', 54.00, '', 1, '2020-11-02 06:11:48', 0, NULL, 0, NULL, 1),
(2037, 1688, '3', 'St thomas college of arts and science', '', 'B.com (General)', '2016', 77.00, '', 1, '2020-11-02 06:12:43', 0, NULL, 0, NULL, 1),
(2038, 1689, '3', 'University ', '', 'B. Com Accounting & finance ', '2019', 62.54, '', 1, '2020-11-02 07:22:46', 0, NULL, 0, NULL, 1),
(2039, 1678, '4', 'Anna university', '', 'Mba', '2020', 72.00, '', 1, '2020-11-03 11:05:42', 0, NULL, 0, NULL, 1),
(2040, 1693, '3', 'Medrass university of arts and science', '', 'Bachelor of computer application', '2020', 65.00, '', 1, '2020-11-03 11:05:50', 0, NULL, 0, NULL, 1),
(2041, 1695, '3', 'Dr. Mgr janaki college arts and science for women\'s ', '', 'B. Com', '2020', 55.00, '', 1, '2020-11-03 11:37:35', 0, NULL, 0, NULL, 1),
(2042, 1694, '3', 'Lord venkateshwaraa Eng college', '', 'B. E(cse) ', '2016', 65.00, '', 1, '2020-11-03 12:03:49', 0, NULL, 0, NULL, 1),
(2043, 1697, '3', 'Madras university', '', 'BCA', '2018', 61.00, '', 1, '2020-11-03 12:04:37', 0, NULL, 0, NULL, 1),
(2044, 1696, '3', 'Panimalar engineering college ', '', 'B.E', '2019', 70.00, '', 1, '2020-11-03 12:06:45', 0, NULL, 0, NULL, 1),
(2045, 1698, '3', 'St Joseph engineering college ', '', 'B. E', '2019', 64.00, '', 1, '2020-11-03 12:11:23', 0, NULL, 0, NULL, 1),
(2046, 1687, '2', 'karnataka ', '', '', '2014', 60.00, '', 1, '2020-11-03 12:33:46', 0, NULL, 0, NULL, 1),
(2047, 1694, '1', 'Muslim higher secondary school ', '', '', '2010', 88.00, '', 1, '2020-11-03 01:10:27', 0, NULL, 0, NULL, 1),
(2048, 1694, '2', 'Muslim higher secondary school ', '', '', '2012', 67.00, '', 1, '2020-11-03 01:11:28', 0, NULL, 0, NULL, 1),
(2049, 1700, '3', 'Anna university', '', 'BE-ECE', '2015', 67.00, '', 1, '2020-11-03 03:06:31', 0, NULL, 0, NULL, 1),
(2050, 1699, '4', 'university of madras', '', 'm.a', '2013', 70.00, '', 1, '2020-11-03 03:12:24', 0, NULL, 0, NULL, 1),
(2051, 1704, '4', 'Anna university', '', 'MBA', '2020', 7.50, '', 1, '2020-11-03 04:54:36', 0, NULL, 0, NULL, 1),
(2052, 1704, '4', 'Anna university', '', 'MBA ', '2020', 7.50, '', 1, '2020-11-03 04:56:45', 0, NULL, 0, NULL, 1),
(2053, 1708, '3', 'Anna University ', '', 'BE', '2019', 69.00, '', 1, '2020-11-03 07:09:33', 0, NULL, 0, NULL, 1),
(2054, 1709, '4', 'Deemed', '', 'MBA (hr/finance)', '2019', 8.10, '', 1, '2020-11-03 08:41:17', 0, NULL, 0, NULL, 1),
(2055, 1709, '3', 'Madras University', '', 'B.com(cS)', '2017', 56.00, '', 1, '2020-11-03 08:42:26', 0, NULL, 0, NULL, 1),
(2056, 1714, '5', 'Government', '', 'EEE', '2017', 72.00, '', 1, '2020-11-04 11:58:58', 0, NULL, 0, NULL, 1),
(2057, 1715, '3', 'Medras University', '', 'BCA', '2020', 60.00, '', 1, '2020-11-04 12:07:33', 0, NULL, 0, NULL, 1),
(2058, 1716, '4', 'Madras University ', '', 'Msc. Computer science ', '2017', 79.00, '', 1, '2020-11-04 12:22:56', 0, NULL, 0, NULL, 1),
(2059, 1716, '3', 'Mar gregorious college', '', 'Bca computer application', '2013', 63.00, '', 1, '2020-11-04 12:23:48', 1, '2020-11-04 12:27:11', 0, NULL, 1),
(2060, 1716, '1', 'Matric', '', '', '2010', 54.00, '', 1, '2020-11-04 12:24:21', 1, '2020-11-04 12:26:17', 0, NULL, 0),
(2061, 1716, '2', 'Matric', '', '', '2008', 53.00, '', 1, '2020-11-04 12:24:51', 0, NULL, 0, NULL, 1),
(2062, 1716, '1', 'Matric', '', '', '2010', 54.00, '', 1, '2020-11-04 12:26:46', 0, NULL, 0, NULL, 1),
(2063, 1713, '3', 'Madras university', '', 'B. Com general', '2018', 66.00, '', 1, '2020-11-04 12:47:12', 1, '2020-11-04 12:48:00', 0, NULL, 0),
(2064, 1713, '1', 'State board', '', '', '2013', 75.00, '', 1, '2020-11-04 12:48:32', 0, NULL, 0, NULL, 1),
(2065, 1713, '2', 'State board', '', '', '2015', 79.00, '', 1, '2020-11-04 12:49:09', 0, NULL, 0, NULL, 1),
(2066, 1713, '3', 'Madras University', '', 'B. Com general', '2018', 66.00, '', 1, '2020-11-04 12:49:54', 0, NULL, 0, NULL, 1),
(2067, 1712, '3', 'anna unniversity', '', 'be eee', '2016', 61.37, '', 1, '2020-11-04 01:08:49', 0, NULL, 0, NULL, 1),
(2068, 1712, '2', 'state board', '', '', '2012', 63.50, '', 1, '2020-11-04 01:12:03', 0, NULL, 0, NULL, 1),
(2069, 1712, '1', 'state board', '', '', '2010', 89.40, '', 1, '2020-11-04 01:12:32', 0, NULL, 0, NULL, 1),
(2070, 1718, '3', 'Anna university ', '', 'BE/ECE', '2018', 67.00, '', 1, '2020-11-04 01:17:42', 0, NULL, 0, NULL, 1),
(2071, 1675, '4', 'Sikkim manipal University', '', 'MBA', '2012', 58.60, '', 1, '2020-11-04 01:18:24', 0, NULL, 0, NULL, 1),
(2072, 1675, '3', 'Yadava college madurai', '', 'Bsc microbiology', '2007', 54.90, '', 1, '2020-11-04 01:19:07', 0, NULL, 0, NULL, 1),
(2073, 1675, '2', 'State board of Tamil Nadu', '', '', '2004', 73.91, '', 1, '2020-11-04 01:19:45', 0, NULL, 0, NULL, 1),
(2074, 1675, '1', 'State board of Tamil Nadu', '', '', '2001', 47.80, '', 1, '2020-11-04 01:20:13', 0, NULL, 0, NULL, 1),
(2075, 1720, '4', 'Banglore University', '', 'Mba Marketing', '2019', 60.00, '', 1, '2020-11-04 01:59:55', 0, NULL, 0, NULL, 1),
(2076, 1719, '4', 'Vels University ', '', 'MBA', '2020', 70.00, '', 1, '2020-11-04 02:01:23', 0, NULL, 0, NULL, 1),
(2077, 1720, '4', 'Banglore University', '', 'Mba Marketing', '2019', 60.00, '', 1, '2020-11-04 02:01:31', 0, NULL, 0, NULL, 1),
(2078, 1721, '5', 'chennis amirtha catering clg', '', '', '2018', 80.00, '', 1, '2020-11-04 02:15:29', 0, NULL, 0, NULL, 1),
(2079, 1722, '3', 'SRM institute of Science and Technology, Chennai', '', 'B TECH ', '2020', 65.66, '', 1, '2020-11-04 02:46:34', 0, NULL, 0, NULL, 1),
(2080, 1726, '4', 'University of Madras', '', 'M.A.human Resource Management ', '2020', 75.00, '', 1, '2020-11-04 06:07:51', 0, NULL, 0, NULL, 1),
(2081, 1729, '3', 'Madras University', '', 'Bsc mathematics', '2016', 57.00, '', 1, '2020-11-04 06:26:50', 0, NULL, 0, NULL, 1),
(2082, 1727, '4', 'madras university', '', 'MBA ', '2018', 62.00, '', 1, '2020-11-04 06:38:52', 1, '2020-11-04 06:45:33', 0, NULL, 1),
(2083, 1727, '3', 'madras university', '', 'bsc. computer science', '2016', 79.00, '', 1, '2020-11-04 06:40:23', 1, '2020-11-04 06:45:48', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2084, 1727, '2', 'state board', '', '', '2013', 83.00, '', 1, '2020-11-04 06:42:06', 1, '2020-11-04 06:44:58', 0, NULL, 0),
(2085, 1727, '1', 'cbse', '', '', '2011', 75.00, '', 1, '2020-11-04 06:42:45', 1, '2020-11-04 06:45:03', 0, NULL, 0),
(2086, 1730, '4', 'Anna University ', '', 'Master of Business Administration ', '2019', 80.00, '', 1, '2020-11-04 06:55:19', 0, NULL, 0, NULL, 1),
(2087, 1731, '3', 'University of Madras', '', 'B.A in tourism and travel management', '2019', 62.00, '', 1, '2020-11-04 07:25:22', 0, NULL, 0, NULL, 1),
(2088, 1731, '2', 'Stateboard', '', '', '2016', 75.00, '', 1, '2020-11-04 07:27:03', 0, NULL, 0, NULL, 1),
(2089, 1731, '1', 'State board', '', '', '2014', 85.00, '', 1, '2020-11-04 07:27:38', 0, NULL, 0, NULL, 1),
(2090, 1725, '4', 'madras university', '', 'msw hr', '2020', 68.00, '', 1, '2020-11-04 07:51:11', 0, NULL, 0, NULL, 1),
(2091, 1728, '1', 'Board', '', '', '2001', 87.00, '', 1, '2020-11-04 08:19:17', 0, NULL, 0, NULL, 1),
(2092, 1728, '2', 'Board', '', '', '2003', 95.00, '', 1, '2020-11-04 08:19:39', 0, NULL, 0, NULL, 1),
(2093, 1728, '3', 'University', '', 'Bcom', '2006', 64.00, '', 1, '2020-11-04 08:21:49', 0, NULL, 0, NULL, 1),
(2094, 1728, '4', 'University', '', 'Mba finance', '2008', 73.00, '', 1, '2020-11-04 08:22:23', 0, NULL, 0, NULL, 1),
(2095, 1725, '3', 'madras university', '', 'b com genaral', '2018', 65.00, '', 1, '2020-11-04 08:30:22', 0, NULL, 0, NULL, 1),
(2096, 1725, '2', 'state board', '', '', '2015', 68.20, '', 1, '2020-11-04 08:31:16', 0, NULL, 0, NULL, 1),
(2097, 1725, '1', 'state board', '', '', '2013', 67.80, '', 1, '2020-11-04 08:33:41', 0, NULL, 0, NULL, 1),
(2098, 1734, '4', 'University of madras ', '', 'Mba', '2016', 70.00, '', 1, '2020-11-04 11:49:46', 0, NULL, 0, NULL, 1),
(2099, 1734, '3', 'University of madras ', '', 'Bcom', '2013', 60.00, '', 1, '2020-11-04 11:50:27', 0, NULL, 0, NULL, 1),
(2100, 1736, '4', 'Anna university', '', 'Mba', '2020', 7.00, '', 1, '2020-11-05 01:30:29', 0, NULL, 0, NULL, 1),
(2101, 1737, '4', 'Alagappa University', '', 'MBA', '2020', 87.00, '', 1, '2020-11-05 05:32:49', 0, NULL, 0, NULL, 1),
(2102, 1737, '3', 'Madrass University', '', 'B.sc hotel management', '2018', 84.00, '', 1, '2020-11-05 05:33:53', 0, NULL, 0, NULL, 1),
(2103, 1737, '2', 'Vellamal matriculation higher secondary school', '', '', '2013', 56.00, '', 1, '2020-11-05 05:34:26', 0, NULL, 0, NULL, 1),
(2104, 1737, '1', 'Jain school', '', '', '2011', 69.00, '', 1, '2020-11-05 05:35:09', 0, NULL, 0, NULL, 1),
(2105, 1732, '1', 'central board of secondary education', '', '', '2013', 88.00, '', 1, '2020-11-05 09:58:02', 0, NULL, 0, NULL, 1),
(2106, 1732, '2', 'central board of secondary education', '', '', '2015', 81.20, '', 1, '2020-11-05 09:58:28', 0, NULL, 0, NULL, 1),
(2107, 1732, '3', 'kannur university', '', 'bachelore of science in psychology', '2018', 77.13, '', 1, '2020-11-05 10:02:18', 0, NULL, 0, NULL, 1),
(2108, 1732, '4', 'madras university ', '', 'master of science in applied psychology', '2020', 65.00, '', 1, '2020-11-05 10:05:01', 0, NULL, 0, NULL, 1),
(2109, 1717, '4', 'Pondicherry University', '', 'MCA', '2019', 81.00, '', 1, '2020-11-05 10:32:17', 0, NULL, 0, NULL, 1),
(2110, 1717, '3', 'Pondicherry University', '', 'Bsc', '2017', 69.00, '', 1, '2020-11-05 10:33:01', 0, NULL, 0, NULL, 1),
(2111, 1739, '4', 'Anna university', '', 'M.E', '2015', 77.80, '', 1, '2020-11-05 11:07:51', 0, NULL, 0, NULL, 1),
(2112, 1739, '3', 'Anna university', '', 'B.E', '2013', 64.90, '', 1, '2020-11-05 11:08:23', 0, NULL, 0, NULL, 1),
(2113, 1740, '3', 'Anna University', '', 'Bachelor of Engineering ', '2019', 68.43, '', 1, '2020-11-05 11:08:44', 0, NULL, 0, NULL, 1),
(2114, 1739, '2', 'State Board', '', '', '2009', 70.25, '', 1, '2020-11-05 11:09:07', 0, NULL, 0, NULL, 1),
(2115, 1739, '1', 'State Board', '', '', '2007', 75.25, '', 1, '2020-11-05 11:09:25', 0, NULL, 0, NULL, 1),
(2116, 1740, '2', 'Tamil Nadu State Board ', '', '', '2015', 85.00, '', 1, '2020-11-05 11:09:33', 1, '2020-11-05 11:11:01', 0, NULL, 1),
(2117, 1740, '1', 'Tamil Nadu State Board ', '', '', '2012', 93.20, '', 1, '2020-11-05 11:10:14', 0, NULL, 0, NULL, 1),
(2118, 1741, '4', 'Anna university ', '', 'Bsc Hotel management ', '2020', 65.00, '', 1, '2020-11-05 11:57:19', 0, NULL, 0, NULL, 1),
(2119, 1743, '4', 'Alagappa university ', '', 'MBA ', '2020', 78.00, '', 1, '2020-11-05 12:21:35', 1, '2020-11-05 12:21:58', 0, NULL, 0),
(2120, 1742, '3', 'University ', '', 'B.E', '2017', 60.00, '', 1, '2020-11-05 12:22:00', 0, NULL, 0, NULL, 1),
(2121, 1743, '3', 'Madras university ', '', 'Bca', '2018', 78.00, '', 1, '2020-11-05 12:22:23', 0, NULL, 0, NULL, 1),
(2122, 1743, '4', 'Alagappa university ', '', 'MBA ', '2020', 80.00, '', 1, '2020-11-05 12:22:58', 0, NULL, 0, NULL, 1),
(2123, 1744, '3', 'Anna University', '', 'BE', '2019', 60.00, '', 1, '2020-11-05 12:39:37', 0, NULL, 0, NULL, 1),
(2124, 1746, '3', 'Madras university ', '', 'B. Com General ', '2020', 60.00, '', 1, '2020-11-05 01:20:55', 0, NULL, 0, NULL, 1),
(2125, 1747, '3', ' university ', '', 'B. E', '2020', 70.00, '', 1, '2020-11-05 01:24:55', 0, NULL, 0, NULL, 1),
(2126, 1748, '3', 'Madras university ', '', 'B. Com', '2020', 63.00, '', 1, '2020-11-05 01:35:10', 0, NULL, 0, NULL, 1),
(2127, 1749, '4', 'Madras University', '', 'Master of social work', '2018', 72.00, '', 1, '2020-11-05 02:38:04', 0, NULL, 0, NULL, 1),
(2128, 1751, '3', 'madras christian college', '', 'bcom', '2019', 65.00, '', 1, '2020-11-05 03:39:31', 0, NULL, 0, NULL, 1),
(2129, 1753, '3', 'Anna University', '', 'B.E', '2018', 65.30, '', 1, '2020-11-05 04:23:17', 0, NULL, 0, NULL, 1),
(2130, 1752, '4', 'Anna university ', '', 'MBA', '2015', 7.20, '', 1, '2020-11-05 04:48:22', 0, NULL, 0, NULL, 1),
(2131, 1755, '5', 'apollo polytechnic college', '', 'dece', '2013', 78.00, '', 1, '2020-11-06 12:09:40', 0, NULL, 0, NULL, 1),
(2132, 1755, '3', 'easwari engineering college', '', 'electronics and communication engineering', '2018', 70.00, '', 1, '2020-11-06 12:10:59', 0, NULL, 0, NULL, 1),
(2133, 1756, '4', 'Bharath university', '', 'MBA', '2018', 76.00, '', 1, '2020-11-06 12:43:48', 0, NULL, 0, NULL, 1),
(2134, 1756, '4', 'Bharath university', '', 'MBA', '2018', 76.00, '', 1, '2020-11-06 12:45:21', 1, '2020-11-06 12:45:34', 0, NULL, 0),
(2135, 1757, '3', 'anna university', '', 'bsc computer science', '2010', 75.00, '', 1, '2020-11-06 09:07:08', 0, NULL, 0, NULL, 1),
(2136, 1761, '3', 'Anna University', '', 'BE', '2010', 69.00, '', 1, '2020-11-06 10:57:54', 0, NULL, 0, NULL, 1),
(2137, 1750, '5', 'Madras university', '', 'Bform', '2005', 64.00, '', 1, '2020-11-06 11:12:17', 0, NULL, 0, NULL, 1),
(2138, 1762, '4', 'madras christian college', '', 'post graduate diploma in human resource management', '2020', 75.00, '', 1, '2020-11-06 11:14:10', 0, NULL, 0, NULL, 1),
(2139, 1763, '4', 'Anna University', '', 'MBA-HR', '2017', 80.00, '', 1, '2020-11-06 11:33:26', 0, NULL, 0, NULL, 1),
(2140, 1764, '3', 'Anna university', '', 'BE computer science', '2014', 65.00, '', 1, '2020-11-06 11:39:33', 0, NULL, 0, NULL, 1),
(2141, 1765, '3', 'Sri ramanujar engineering college', '', 'B.tech', '2016', 65.00, '', 1, '2020-11-06 11:40:17', 0, NULL, 0, NULL, 1),
(2142, 1764, '4', 'Alagappa university', '', 'MBA ', '2019', 85.00, '', 1, '2020-11-06 11:40:56', 0, NULL, 0, NULL, 1),
(2143, 1766, '3', 'Anna university', '', 'BE', '2020', 65.00, '', 1, '2020-11-06 11:52:07', 0, NULL, 0, NULL, 1),
(2144, 1758, '4', 'Anna university ', '', 'MBA', '2013', 76.00, '', 1, '2020-11-06 11:54:31', 0, NULL, 0, NULL, 1),
(2145, 1768, '4', 'Madras university ', '', 'MBA HR', '2015', 55.00, '', 1, '2020-11-06 12:10:50', 0, NULL, 0, NULL, 1),
(2146, 1768, '3', 'Stella Maris college', '', 'BCA', '2013', 56.00, '', 1, '2020-11-06 12:11:45', 0, NULL, 0, NULL, 1),
(2147, 1758, '1', 'State Board', '', '', '2006', 69.00, '', 1, '2020-11-06 12:26:13', 0, NULL, 0, NULL, 1),
(2148, 1772, '4', 'versatile business school', '', 'mba', '2013', 90.00, '', 1, '2020-11-06 12:26:55', 0, NULL, 0, NULL, 1),
(2149, 1758, '2', 'State Board ', '', '', '2008', 82.00, '', 1, '2020-11-06 12:27:01', 0, NULL, 0, NULL, 1),
(2150, 1771, '3', 'loyola college', '', 'bcom', '2018', 65.00, '', 1, '2020-11-06 12:27:33', 0, NULL, 0, NULL, 1),
(2151, 1758, '3', 'Madras university ', '', 'BBA', '2011', 58.00, '', 1, '2020-11-06 12:27:44', 0, NULL, 0, NULL, 1),
(2152, 1772, '3', 'mar gregorios college', '', 'b.com', '2011', 68.00, '', 1, '2020-11-06 12:27:45', 0, NULL, 0, NULL, 1),
(2153, 1772, '2', 'state board', '', '', '2008', 53.00, '', 1, '2020-11-06 12:28:14', 0, NULL, 0, NULL, 1),
(2154, 1769, '2', 'State Board', '', '', '2017', 70.00, '', 1, '2020-11-06 12:30:32', 0, NULL, 0, NULL, 1),
(2155, 1775, '4', 'Madras university', '', 'Masters in social work (Human Resource Management)', '2019', 70.00, '', 1, '2020-11-06 12:47:12', 0, NULL, 0, NULL, 1),
(2156, 1770, '3', 'Madras university', '', 'B.com', '2018', 48.00, '', 1, '2020-11-06 12:51:19', 0, NULL, 0, NULL, 1),
(2157, 1776, '3', 'SV University ', '', 'B. com', '2019', 72.00, '', 1, '2020-11-06 12:57:46', 0, NULL, 0, NULL, 1),
(2158, 1777, '4', 'vins women\'s college of Engineering ', '', 'BE', '2018', 74.00, '', 1, '2020-11-06 01:17:58', 0, NULL, 0, NULL, 1),
(2159, 1778, '3', 'Bharatiyar ', '', 'BBA', '2016', 62.00, '', 1, '2020-11-06 01:21:16', 0, NULL, 0, NULL, 1),
(2160, 1772, '1', 'state board', '', '', '2020', 63.00, '', 1, '2020-11-06 01:33:51', 0, NULL, 0, NULL, 1),
(2161, 1774, '4', 'Srm University ', '', 'MBA', '2018', 60.00, '', 1, '2020-11-06 01:41:22', 0, NULL, 0, NULL, 1),
(2162, 1774, '3', 'Madras university', '', 'BBA', '2016', 58.00, '', 1, '2020-11-06 01:42:28', 0, NULL, 0, NULL, 1),
(2163, 1782, '3', 'mgr university', '', 'b.tech cse', '2018', 50.00, '', 1, '2020-11-06 02:50:04', 0, NULL, 0, NULL, 1),
(2164, 1784, '5', 'calcutta university', '', 'diploma in fashion desinging ', '2007', 85.00, '', 1, '2020-11-06 03:06:57', 0, NULL, 0, NULL, 1),
(2165, 1786, '3', 'madras university', '', 'bca', '2003', 63.00, '', 1, '2020-11-06 03:28:17', 1, '2020-11-06 03:28:53', 0, NULL, 0),
(2166, 1786, '3', 'madras university', '', 'bca', '2003', 63.00, '', 1, '2020-11-06 03:29:30', 0, NULL, 0, NULL, 1),
(2167, 1785, '4', 'S.A Engineering College', '', 'MBA-HR ', '2019', 83.00, '', 1, '2020-11-06 03:32:41', 0, NULL, 0, NULL, 1),
(2168, 1788, '3', 'New College', '', 'BA English literature ', '2019', 60.00, '', 1, '2020-11-06 04:00:11', 0, NULL, 0, NULL, 1),
(2169, 1792, '4', 'University of Madras (Full-time)', '', 'MA. Human Resources Management', '2019', 68.00, '', 1, '2020-11-06 07:26:14', 1, '2020-11-06 07:27:24', 0, NULL, 1),
(2170, 1792, '3', 'Loyola College', '', 'B.Com', '2017', 60.00, '', 1, '2020-11-06 07:26:45', 0, NULL, 0, NULL, 1),
(2171, 1795, '1', 'St. John\'s hr. Sec. School ', '', '', '2009', 61.00, '', 1, '2020-11-07 09:02:19', 0, NULL, 0, NULL, 1),
(2172, 1795, '2', 'P.m.R mat hr. Sec. School', '', '', '2011', 71.50, '', 1, '2020-11-07 09:02:50', 0, NULL, 0, NULL, 1),
(2173, 1795, '3', 'Mar gregorious arts and science college', '', 'BCA', '2014', 70.00, '', 1, '2020-11-07 09:03:39', 0, NULL, 0, NULL, 1),
(2174, 1795, '4', 'Dr.MGR university ', '', 'MCA', '2017', 70.00, '', 1, '2020-11-07 09:04:16', 0, NULL, 0, NULL, 1),
(2175, 1796, '3', 'Anna university', '', 'B.E', '2020', 6.60, '', 1, '2020-11-07 10:14:38', 0, NULL, 0, NULL, 1),
(2176, 1794, '4', 'Madras University', '', 'MA HRM', '2020', 72.00, '', 1, '2020-11-07 10:37:38', 0, NULL, 0, NULL, 1),
(2177, 1794, '3', 'Shri Krishnaswamy college for women', '', 'Bca', '2018', 70.00, '', 1, '2020-11-07 10:38:28', 0, NULL, 0, NULL, 1),
(2178, 1790, '4', 'Madras University', '', 'MBA', '2020', 75.00, '', 1, '2020-11-07 11:30:48', 0, NULL, 0, NULL, 1),
(2179, 1783, '4', 'kalasalingam University', '', 'MBA', '2020', 70.00, '', 1, '2020-11-07 11:37:17', 0, NULL, 0, NULL, 1),
(2180, 1798, '4', 'Avinashilingam University', '', 'MBA', '2020', 67.00, '', 1, '2020-11-07 12:03:27', 0, NULL, 0, NULL, 1),
(2181, 1797, '4', 'Sathyabama University', '', 'MBA', '2020', 75.40, '', 1, '2020-11-07 12:04:34', 1, '2020-11-07 12:19:50', 0, NULL, 0),
(2182, 1797, '4', 'Sathyabama University', '', 'MBA', '2020', 74.50, '', 1, '2020-11-07 12:19:31', 0, NULL, 0, NULL, 1),
(2183, 1767, '4', 'anna university', '', 'mba', '2011', 70.00, '', 1, '2020-11-07 12:29:37', 0, NULL, 0, NULL, 1),
(2184, 1802, '3', 'Anna University', '', 'B.E-CSE', '2015', 72.74, '', 1, '2020-11-07 12:30:50', 0, NULL, 0, NULL, 1),
(2185, 1800, '3', 'Madras University', '', 'B.a English', '2020', 75.00, '', 1, '2020-11-07 12:33:26', 0, NULL, 0, NULL, 1),
(2186, 1801, '3', 'Madras university', '', 'BA English', '2020', 62.00, '', 1, '2020-11-07 12:36:42', 0, NULL, 0, NULL, 1),
(2187, 1799, '2', 'State board', '', '', '2020', 60.00, '', 1, '2020-11-07 12:41:03', 0, NULL, 0, NULL, 1),
(2188, 1733, '3', 'Anna university', '', 'BE', '2019', 7.07, '', 1, '2020-11-07 12:41:08', 0, NULL, 0, NULL, 1),
(2189, 1799, '3', 'Madras University', '', 'B. Com', '2020', 1.00, '', 1, '2020-11-07 12:41:56', 0, NULL, 0, NULL, 1),
(2190, 1780, '3', 'Sona college of technology ', '', 'B.tech', '2020', 63.80, '', 1, '2020-11-07 01:32:34', 0, NULL, 0, NULL, 1),
(2191, 1759, '4', 'madras University ', '', 'msw ', '2015', 72.00, '', 1, '2020-11-07 01:53:45', 0, NULL, 0, NULL, 1),
(2192, 1804, '3', 'Unniversity of Madras', '', 'BA corporate economic', '2020', 70.00, '', 1, '2020-11-07 01:59:27', 0, NULL, 0, NULL, 1),
(2193, 1803, '3', 'University of madras', '', 'BA corporate economics', '2020', 70.00, '', 1, '2020-11-07 02:00:44', 0, NULL, 0, NULL, 1),
(2194, 1781, '4', 'Sathyabama university', '', 'MBA', '2019', 74.00, '', 1, '2020-11-07 02:14:46', 0, NULL, 0, NULL, 1),
(2195, 1781, '3', 'Madras university', '', 'Bsc', '2017', 70.00, '', 1, '2020-11-07 02:15:47', 0, NULL, 0, NULL, 1),
(2196, 1781, '2', 'State board', '', '', '2014', 64.00, '', 1, '2020-11-07 02:16:18', 0, NULL, 0, NULL, 1),
(2197, 1781, '1', 'State board', '', '', '2012', 82.00, '', 1, '2020-11-07 02:16:40', 0, NULL, 0, NULL, 1),
(2198, 1807, '2', 'Govt.boys hr.sec', '', '', '2010', 75.00, '', 1, '2020-11-07 03:40:04', 0, NULL, 0, NULL, 1),
(2199, 1672, '1', 'state', '', '', '2015', 55.00, '', 1, '2020-11-07 05:30:41', 0, NULL, 0, NULL, 1),
(2200, 1672, '4', 'sathiyabama', '', 'mba', '2020', 6.77, '', 1, '2020-11-07 05:31:26', 0, NULL, 0, NULL, 1),
(2201, 1808, '4', 'Anna University', '', 'MBA ', '2020', 80.00, '', 1, '2020-11-07 05:44:02', 0, NULL, 0, NULL, 1),
(2202, 1808, '3', 'Anna university', '', 'B.E', '2018', 73.00, '', 1, '2020-11-07 05:44:39', 0, NULL, 0, NULL, 1),
(2203, 1811, '3', 'Madras', '', 'B.Sc.,', '2020', 77.00, '', 1, '2020-11-09 10:30:17', 0, NULL, 0, NULL, 1),
(2204, 1813, '3', 'D. G. Vaishnav college(autonomous) ', '', 'B. A. Economics ', '2020', 62.00, '', 1, '2020-11-09 11:13:21', 0, NULL, 0, NULL, 1),
(2205, 1814, '3', 'Thiruvallur university', '', 'Bca', '2020', 73.00, '', 1, '2020-11-09 11:14:37', 0, NULL, 0, NULL, 1),
(2206, 1812, '3', 'Veltech ranga sangu arts collage', '', 'B.com', '2018', 70.00, '', 1, '2020-11-09 11:23:04', 0, NULL, 0, NULL, 1),
(2207, 1816, '4', 'Anna university', '', 'M. B. A', '2011', 70.00, '', 1, '2020-11-09 12:16:11', 0, NULL, 0, NULL, 1),
(2208, 1818, '4', 'Madras University', '', 'MCA', '2018', 70.00, '', 1, '2020-11-09 01:01:13', 0, NULL, 0, NULL, 1),
(2209, 1819, '3', 'Alagappa University', '', 'Bsc', '2014', 82.00, '', 1, '2020-11-09 01:36:29', 0, NULL, 0, NULL, 1),
(2210, 1819, '2', 'State Board', '', '', '2011', 83.00, '', 1, '2020-11-09 01:37:29', 0, NULL, 0, NULL, 1),
(2211, 1819, '1', 'State board', '', '', '2008', 91.00, '', 1, '2020-11-09 01:38:04', 0, NULL, 0, NULL, 1),
(2212, 1820, '3', 'Dr.M.G.R. university', '', 'B-tech ', '2016', 60.00, '', 1, '2020-11-09 01:42:19', 0, NULL, 0, NULL, 1),
(2213, 1806, '3', 'anna university', '', 'b.tech', '2013', 70.00, '', 1, '2020-11-09 03:27:37', 0, NULL, 0, NULL, 1),
(2214, 1806, '2', 'state board tamilnadu', '', '', '2009', 82.00, '', 1, '2020-11-09 03:28:12', 0, NULL, 0, NULL, 1),
(2215, 1806, '1', 'state board tamilnadu', '', '', '2007', 86.00, '', 1, '2020-11-09 03:28:42', 0, NULL, 0, NULL, 1),
(2216, 1817, '1', 'state', '', '', '2011', 72.00, '', 1, '2020-11-09 03:33:00', 0, NULL, 0, NULL, 1),
(2217, 1815, '3', 'Chennai institute of technology', '', 'BE', '2020', 8.06, '', 1, '2020-11-09 10:03:33', 0, NULL, 0, NULL, 1),
(2218, 1825, '3', 'Anna University', '', 'B.Tech Information technology', '2011', 70.00, '', 1, '2020-11-10 10:37:08', 0, NULL, 0, NULL, 1),
(2219, 1826, '3', 'Madras university', '', 'BCA', '2020', 50.00, '', 1, '2020-11-10 10:53:34', 0, NULL, 0, NULL, 1),
(2220, 1824, '4', 'dhanalakshmi srinivasan business school', '', 'mba', '2014', 7.70, '', 1, '2020-11-10 10:59:34', 0, NULL, 0, NULL, 1),
(2221, 1827, '3', 'M g University', '', 'Bachelor of technology', '2014', 50.00, '', 1, '2020-11-10 11:28:12', 0, NULL, 0, NULL, 1),
(2222, 1828, '3', 'Madras university', '', 'ba English', '2020', 55.00, '', 1, '2020-11-10 11:29:14', 0, NULL, 0, NULL, 1),
(2223, 1829, '4', 'Manonmaniyam sundaranar University', '', 'MCA', '2018', 68.00, '', 1, '2020-11-10 11:45:35', 0, NULL, 0, NULL, 1),
(2224, 1830, '3', 'Brathidhasan University', '', 'Bsc', '2014', 60.00, '', 1, '2020-11-10 11:47:00', 0, NULL, 0, NULL, 1),
(2225, 1821, '3', 'Madras University', '', 'B.com', '2018', 67.00, '', 1, '2020-11-10 11:52:38', 0, NULL, 0, NULL, 1),
(2226, 1822, '3', 'vivekananda college', '', 'b.com', '2013', 63.00, '', 1, '2020-11-10 11:52:40', 0, NULL, 0, NULL, 1),
(2227, 1832, '4', 'Alagappa university', '', 'MBA (HR)', '2020', 71.00, '', 1, '2020-11-10 12:03:36', 0, NULL, 0, NULL, 1),
(2228, 1831, '1', 'Hindu thiyalagecal higher secondary  school', '', '', '2007', 55.00, '', 1, '2020-11-10 12:03:58', 0, NULL, 0, NULL, 1),
(2229, 1833, '3', 'Anna university', '', 'BE', '2018', 65.00, '', 1, '2020-11-10 12:57:38', 0, NULL, 0, NULL, 1),
(2230, 1835, '3', 'Manonmaniam sundaranar university ', '', 'B. Com', '2016', 75.00, '', 1, '2020-11-10 03:00:00', 0, NULL, 0, NULL, 1),
(2231, 1837, '3', 'University ', '', 'BE(ECE)', '2018', 66.00, '', 1, '2020-11-10 04:01:21', 0, NULL, 0, NULL, 1),
(2232, 1838, '1', 'state board', '', '', '2013', 52.00, '', 1, '2020-11-10 04:21:48', 0, NULL, 0, NULL, 1),
(2233, 1838, '2', 'state board', '', '', '2015', 45.00, '', 1, '2020-11-10 04:22:31', 1, '2020-11-10 04:22:47', 0, NULL, 1),
(2234, 1843, '3', 'University of Madras', '', 'B.a', '2018', 52.00, '', 1, '2020-11-11 10:37:12', 0, NULL, 0, NULL, 1),
(2235, 1844, '4', 'University of madras', '', 'MCA', '2019', 65.00, '', 1, '2020-11-11 10:55:44', 0, NULL, 0, NULL, 1),
(2236, 1845, '3', 'anna university', '', 'be-cse', '2017', 6.57, '', 1, '2020-11-11 11:11:26', 0, NULL, 0, NULL, 1),
(2237, 1839, '3', 'University college of engineering kanchipuram ', '', 'B.E', '2017', 65.00, '', 1, '2020-11-11 11:25:36', 0, NULL, 0, NULL, 1),
(2238, 1846, '3', 'University', '', 'B.A', '2020', 70.00, '', 1, '2020-11-11 11:40:10', 0, NULL, 0, NULL, 1),
(2239, 1842, '3', 'SRM University ', '', 'BSC computer science ', '2019', 68.85, '', 1, '2020-11-11 12:16:03', 0, NULL, 0, NULL, 1),
(2240, 1850, '3', 'Anna University', '', 'B.E', '2020', 62.00, '', 1, '2020-11-11 12:16:30', 0, NULL, 0, NULL, 1),
(2241, 1851, '2', 'state board', '', '', '2013', 66.00, '', 1, '2020-11-11 12:18:03', 0, NULL, 0, NULL, 1),
(2242, 1851, '3', 'autonom', '', 'bsc maths', '2016', 53.00, '', 1, '2020-11-11 12:18:49', 0, NULL, 0, NULL, 1),
(2243, 1841, '3', 'Autonomous', '', 'B. Sc', '2020', 61.00, '', 1, '2020-11-11 12:30:07', 0, NULL, 0, NULL, 1),
(2244, 1853, '3', 'Madras University ', '', 'Bcom', '2018', 68.00, '', 1, '2020-11-11 12:42:13', 0, NULL, 0, NULL, 1),
(2245, 1854, '3', 'University', '', 'BSc Agriculture', '2019', 78.40, '', 1, '2020-11-11 02:49:24', 0, NULL, 0, NULL, 1),
(2246, 1854, '2', 'Board', '', '', '2015', 86.25, '', 1, '2020-11-11 02:50:20', 0, NULL, 0, NULL, 1),
(2247, 1854, '1', 'Board', '', '', '2013', 94.60, '', 1, '2020-11-11 02:50:44', 0, NULL, 0, NULL, 1),
(2248, 1859, '4', 'Madras Christian College', '', 'MCA', '2019', 75.00, '', 1, '2020-11-11 06:21:15', 0, NULL, 0, NULL, 1),
(2249, 1859, '3', 'Madras Christian College', '', 'BCA', '2016', 80.00, '', 1, '2020-11-11 06:21:48', 0, NULL, 0, NULL, 1),
(2250, 1859, '2', 'St. Gabriels higher secondary school', '', '', '2013', 80.50, '', 1, '2020-11-11 06:22:32', 0, NULL, 0, NULL, 1),
(2251, 1859, '1', 'St. Gabriels higher secondary school', '', '', '2011', 87.40, '', 1, '2020-11-11 06:23:02', 0, NULL, 0, NULL, 1),
(2252, 1847, '3', 'university of madras', '', 'b.com', '2020', 62.00, '', 1, '2020-11-12 12:44:34', 1, '2020-11-12 12:45:21', 0, NULL, 0),
(2253, 1847, '3', 'university of madras', '', 'b.com', '2020', 62.00, '', 1, '2020-11-12 12:46:07', 1, '2020-11-12 12:46:29', 0, NULL, 0),
(2254, 1847, '1', 'gkshv', '', '', '2015', 78.40, '', 1, '2020-11-12 12:47:21', 1, '2020-11-12 12:49:53', 0, NULL, 0),
(2255, 1847, '2', 'gkshv', '', '', '2017', 69.00, '', 1, '2020-11-12 12:48:02', 1, '2020-11-12 12:49:53', 0, NULL, 0),
(2256, 1847, '3', 'university of madras ', '', 'b.com', '2020', 62.00, '', 1, '2020-11-12 12:48:46', 1, '2020-11-12 12:51:06', 0, NULL, 0),
(2257, 1847, '3', 'madras university', '', 'b.com', '2020', 62.00, '', 1, '2020-11-12 12:52:18', 0, NULL, 0, NULL, 1),
(2258, 1867, '3', 'Madras', '', 'B.com general', '2020', 65.00, '', 1, '2020-11-12 02:22:49', 0, NULL, 0, NULL, 1),
(2259, 1870, '3', 'Madras university', '', 'Bcom(general)', '2020', 72.00, '', 1, '2020-11-12 02:39:42', 0, NULL, 0, NULL, 1),
(2260, 1866, '3', 'Madras University', '', 'B.com(General)', '2020', 68.00, '', 1, '2020-11-12 02:40:03', 0, NULL, 0, NULL, 1),
(2261, 1866, '1', 'State Board', '', '', '2015', 85.00, '', 1, '2020-11-12 02:42:36', 0, NULL, 0, NULL, 1),
(2262, 1866, '2', 'State Board', '', '', '2017', 94.00, '', 1, '2020-11-12 02:43:17', 0, NULL, 0, NULL, 1),
(2263, 1870, '1', 'Central Board', '', '', '2016', 66.00, '', 1, '2020-11-12 02:44:47', 0, NULL, 0, NULL, 1),
(2264, 1870, '2', 'State Board', '', '', '2017', 81.00, '', 1, '2020-11-12 02:45:12', 0, NULL, 0, NULL, 1),
(2265, 1868, '1', 'Matriculation', '', '', '2015', 91.00, '', 1, '2020-11-12 02:45:17', 0, NULL, 0, NULL, 1),
(2266, 1868, '2', 'State Board', '', '', '2017', 82.00, '', 1, '2020-11-12 02:46:13', 0, NULL, 0, NULL, 1),
(2267, 1868, '3', 'Madras University', '', 'B.com(General)', '2020', 65.00, '', 1, '2020-11-12 02:46:42', 0, NULL, 0, NULL, 1),
(2268, 1858, '3', 'Madras university', '', 'B. Com', '2018', 60.00, '', 1, '2020-11-12 03:28:45', 0, NULL, 0, NULL, 1),
(2269, 1862, '5', 'Malaysian university', '', 'Diploma in hotel management', '2016', 60.00, '', 1, '2020-11-12 03:28:54', 0, NULL, 0, NULL, 1),
(2270, 1871, '3', 'VTU', '', 'BE', '2019', 67.00, '', 1, '2020-11-12 03:32:44', 0, NULL, 0, NULL, 1),
(2271, 1873, '3', 'Anna university', '', 'Bachelor of engineering', '2016', 58.00, '', 1, '2020-11-12 06:11:36', 0, NULL, 0, NULL, 1),
(2272, 1159, '5', 'University ', '', 'No', '2019', 60.00, '', 1, '2020-11-12 08:06:26', 0, NULL, 0, NULL, 1),
(2273, 1639, '4', 'periyar university', '', 'MBA', '2017', 67.00, '', 1, '2020-11-13 08:44:33', 0, NULL, 0, NULL, 1),
(2274, 1856, '2', 'state board', '', '', '2016', 65.40, '', 1, '2020-11-13 11:11:10', 0, NULL, 0, NULL, 1),
(2275, 1869, '3', 'Anna University Coimbatore', '', 'B.Tech Textile Chemistry', '2008', 70.80, '', 1, '2020-11-13 11:11:52', 0, NULL, 0, NULL, 1),
(2276, 1856, '3', 'loyola college', '', 'b.sc sattistics', '2019', 68.90, '', 1, '2020-11-13 11:12:13', 0, NULL, 0, NULL, 1),
(2277, 1861, '1', 'State government', '', '', '2014', 64.00, '', 1, '2020-11-13 11:18:02', 0, NULL, 0, NULL, 1),
(2278, 1861, '2', 'State board', '', '', '2012', 68.00, '', 1, '2020-11-13 11:19:33', 0, NULL, 0, NULL, 1),
(2279, 1861, '3', 'Madras University', '', 'B.com(C\'s)', '2017', 74.00, '', 1, '2020-11-13 11:20:16', 0, NULL, 0, NULL, 1),
(2280, 1861, '4', 'Anna University', '', 'Mba', '2019', 80.00, '', 1, '2020-11-13 11:20:49', 0, NULL, 0, NULL, 1),
(2281, 1877, '3', 'The new college', '', 'Bsc computer science', '2016', 56.30, '', 1, '2020-11-13 11:22:00', 0, NULL, 0, NULL, 1),
(2282, 1875, '4', 'ms university ', '', 'm.sc', '2013', 85.00, '', 1, '2020-11-13 11:24:07', 0, NULL, 0, NULL, 1),
(2283, 1875, '1', 'govt high school', '', '', '2006', 80.00, '', 1, '2020-11-13 11:25:18', 0, NULL, 0, NULL, 1),
(2284, 1877, '1', 'Holy Immanual matric school', '', '', '2011', 66.60, '', 1, '2020-11-13 11:35:13', 0, NULL, 0, NULL, 1),
(2285, 1877, '2', 'St. Mary\'s hr. Secondary school', '', '', '2013', 72.00, '', 1, '2020-11-13 11:35:45', 0, NULL, 0, NULL, 1),
(2286, 1878, '1', 'State board', '', '', '2013', 74.00, '', 1, '2020-11-13 11:35:57', 0, NULL, 0, NULL, 1),
(2287, 1878, '2', 'State board', '', '', '2015', 75.00, '', 1, '2020-11-13 11:36:37', 0, NULL, 0, NULL, 1),
(2288, 1878, '3', 'Madras University', '', 'Bcom(genral)', '2015', 69.00, '', 1, '2020-11-13 11:37:20', 0, NULL, 0, NULL, 1),
(2289, 1878, '4', 'Anna University', '', 'MBA', '2020', 80.00, '', 1, '2020-11-13 11:37:48', 0, NULL, 0, NULL, 1),
(2290, 1879, '3', 'vbskub', '', 'bacherols', '2020', 74.00, '', 1, '2020-11-13 11:58:32', 0, NULL, 0, NULL, 1),
(2291, 1880, '3', 'Anna University ', '', 'B.E', '2017', 63.00, '', 1, '2020-11-13 12:10:23', 0, NULL, 0, NULL, 1),
(2292, 1882, '1', 'Tn state board', '', '', '2011', 55.00, '', 1, '2020-11-13 12:23:31', 0, NULL, 0, NULL, 1),
(2293, 1882, '5', 'Thai moogambigai polytechnic college ', '', 'DCE', '2016', 55.50, '', 1, '2020-11-13 12:24:57', 0, NULL, 0, NULL, 1),
(2294, 1885, '3', 'Jeppiaar Srr Engineering College ', '', 'B.E', '2018', 67.00, '', 1, '2020-11-13 01:43:10', 0, NULL, 0, NULL, 1),
(2295, 1884, '4', 'University', '', 'M.Sc', '2019', 61.00, '', 1, '2020-11-13 01:59:49', 0, NULL, 0, NULL, 1),
(2296, 1863, '3', 'Madras Christian College', '', 'BA journalism', '2019', 52.00, '', 1, '2020-11-13 02:06:59', 0, NULL, 0, NULL, 1),
(2297, 1876, '5', 'Thiru seven hills polytechnic College', '', 'It', '2018', 89.00, '', 1, '2020-11-13 04:01:52', 0, NULL, 0, NULL, 1),
(2298, 1888, '2', 'Masters university', '', '', '2010', 53.00, '', 1, '2020-11-13 05:12:22', 0, NULL, 0, NULL, 1),
(2299, 1890, '3', 'Madras university ', '', 'B.con', '2018', 75.00, '', 1, '2020-11-14 12:01:14', 0, NULL, 0, NULL, 1),
(2300, 1892, '3', 'MADRAS UNIVERSITY ', '', 'BCA', '2018', 78.00, '', 1, '2020-11-15 07:14:03', 0, NULL, 0, NULL, 1),
(2301, 1892, '2', 'STATE BOARD', '', '', '2015', 80.00, '', 1, '2020-11-15 07:14:27', 0, NULL, 0, NULL, 1),
(2302, 1892, '1', 'STATE BOARD', '', '', '2013', 82.80, '', 1, '2020-11-15 07:14:54', 0, NULL, 0, NULL, 1),
(2303, 1889, '1', 'state board', '', '', '2012', 86.00, '', 1, '2020-11-15 11:28:41', 0, NULL, 0, NULL, 1),
(2304, 1889, '2', 'state board', '', '', '2014', 77.00, '', 1, '2020-11-15 11:29:00', 0, NULL, 0, NULL, 1),
(2305, 1889, '3', 'anna university', '', 'b.e', '2018', 62.00, '', 1, '2020-11-15 11:29:24', 0, NULL, 0, NULL, 1),
(2306, 1893, '3', 'Ramakrishna mission vivekananda college', '', 'B. Sc(computer science', '2020', 82.00, '', 1, '2020-11-15 08:07:35', 0, NULL, 0, NULL, 1),
(2307, 1894, '3', 'Anna University ', '', 'BE CSE', '2016', 73.40, '', 1, '2020-11-15 08:45:49', 0, NULL, 0, NULL, 1),
(2308, 1895, '5', 'Central Polytechnic college Chennai', '', 'Computer Engineering', '2020', 81.00, '', 1, '2020-11-15 10:02:03', 0, NULL, 0, NULL, 1),
(2309, 1895, '3', 'Alagappa University Karikudi ', '', 'Bsc Computer Science', '2018', 60.00, '', 1, '2020-11-15 10:03:11', 0, NULL, 0, NULL, 1),
(2310, 1897, '3', 'Thiruvalluvar', '', 'Bca', '2018', 70.00, '', 1, '2020-11-16 12:03:25', 0, NULL, 0, NULL, 1),
(2311, 1898, '4', 'Madras University', '', 'M.com', '2015', 65.00, '', 1, '2020-11-16 12:07:40', 0, NULL, 0, NULL, 1),
(2312, 1898, '4', 'Madras University', '', 'B.com', '2013', 63.00, '', 1, '2020-11-16 12:08:22', 0, NULL, 0, NULL, 1),
(2313, 1855, '3', 'University ', '', 'Bsc(ism)', '2014', 61.00, '', 1, '2020-11-16 12:08:56', 0, NULL, 0, NULL, 1),
(2314, 1900, '3', 'Anna university ', '', 'B.E', '2019', 66.00, '', 1, '2020-11-16 12:35:39', 0, NULL, 0, NULL, 1),
(2315, 1900, '2', 'TN HSC', '', '', '2015', 65.00, '', 1, '2020-11-16 12:36:19', 0, NULL, 0, NULL, 1),
(2316, 1900, '1', 'TN SSLC', '', '', '2013', 80.00, '', 1, '2020-11-16 12:36:56', 0, NULL, 0, NULL, 1),
(2317, 1865, '1', 'state board', '', '', '2015', 83.00, '', 1, '2020-11-16 12:41:35', 0, NULL, 0, NULL, 1),
(2318, 1865, '2', 'state board', '', '', '2017', 88.00, '', 1, '2020-11-16 12:41:59', 0, NULL, 0, NULL, 1),
(2319, 1865, '3', 'loyola college', '', 'b.com', '2020', 63.00, '', 1, '2020-11-16 12:42:37', 0, NULL, 0, NULL, 1),
(2320, 1901, '4', 'Barathithasan university', '', 'Mca', '2019', 71.00, '', 1, '2020-11-16 12:45:45', 0, NULL, 0, NULL, 1),
(2321, 1899, '1', 'state board', '', '', '2015', 79.00, '', 1, '2020-11-16 12:48:22', 0, NULL, 0, NULL, 1),
(2322, 1899, '2', 'state board', '', '', '2017', 75.00, '', 1, '2020-11-16 12:48:50', 0, NULL, 0, NULL, 1),
(2323, 1899, '3', 'loyola college', '', 'b.com', '2020', 68.00, '', 1, '2020-11-16 12:49:36', 0, NULL, 0, NULL, 1),
(2324, 1896, '1', 'state board', '', '', '2015', 90.00, '', 1, '2020-11-16 12:54:49', 0, NULL, 0, NULL, 1),
(2325, 1896, '2', 'state board', '', '', '2017', 85.00, '', 1, '2020-11-16 12:55:18', 0, NULL, 0, NULL, 1),
(2326, 1896, '3', 'loyola college', '', 'b.a economics', '2020', 70.00, '', 1, '2020-11-16 12:56:13', 0, NULL, 0, NULL, 1),
(2327, 1905, '3', 'Vel tech multi tech', '', 'B. Tech', '2017', 82.00, '', 1, '2020-11-16 01:35:37', 0, NULL, 0, NULL, 1),
(2328, 1902, '4', 'Annamalai University', '', 'Msc', '2014', 65.00, '', 1, '2020-11-16 01:55:55', 0, NULL, 0, NULL, 1),
(2329, 1904, '3', 'apj abdul l kalam ', '', 'bba', '2019', 70.00, '', 1, '2020-11-16 02:35:37', 0, NULL, 0, NULL, 1),
(2330, 1906, '3', 'Gurunanak college', '', 'B com', '2018', 70.00, '', 1, '2020-11-16 03:13:06', 0, NULL, 0, NULL, 1),
(2331, 1907, '3', 'Bharathiyar univercity', '', 'B.sc computer science', '2019', 66.00, '', 1, '2020-11-16 03:23:14', 0, NULL, 0, NULL, 1),
(2332, 1909, '3', 'University', '', 'Bsc', '2020', 71.00, '', 1, '2020-11-16 04:33:44', 0, NULL, 0, NULL, 1),
(2333, 1886, '1', 'state board', '', '', '2011', 87.60, '', 1, '2020-11-16 05:20:40', 0, NULL, 0, NULL, 1),
(2334, 1886, '2', 'state board', '', '', '2013', 80.00, '', 1, '2020-11-16 05:28:56', 0, NULL, 0, NULL, 1),
(2335, 1886, '3', 'madras university', '', 'bca', '2016', 72.00, '', 1, '2020-11-16 05:29:38', 0, NULL, 0, NULL, 1),
(2336, 1913, '3', 'Anna University', '', 'BE eCE', '2012', 75.00, '', 1, '2020-11-16 07:24:06', 0, NULL, 0, NULL, 1),
(2337, 1913, '2', 'State board ', '', '', '2008', 80.00, '', 1, '2020-11-16 07:24:53', 0, NULL, 0, NULL, 1),
(2338, 1914, '3', 'm s university', '', 'bca', '2019', 81.40, '', 1, '2020-11-16 08:01:55', 1, '2020-11-16 08:04:12', 0, NULL, 1),
(2339, 1914, '2', 'state', '', '', '2016', 94.50, '', 1, '2020-11-16 08:02:35', 0, NULL, 0, NULL, 1),
(2340, 1914, '1', 'state', '', '', '2014', 74.00, '', 1, '2020-11-16 08:03:34', 1, '2020-11-16 08:03:46', 0, NULL, 1),
(2341, 1916, '4', 'mysore university', '', 'b com', '2017', 59.00, '', 1, '2020-11-17 10:07:30', 0, NULL, 0, NULL, 1),
(2342, 1918, '3', 'anna university', '', 'be', '2016', 68.00, '', 1, '2020-11-17 10:51:23', 0, NULL, 0, NULL, 1),
(2343, 1912, '2', 'state board', '', '', '2013', 62.60, '', 1, '2020-11-17 11:43:35', 0, NULL, 0, NULL, 1),
(2344, 1912, '1', 'state board', '', '', '2011', 67.40, '', 1, '2020-11-17 11:44:08', 0, NULL, 0, NULL, 1),
(2345, 1921, '3', 'Madras university', '', 'Bba', '2020', 65.00, '', 1, '2020-11-17 12:09:10', 0, NULL, 0, NULL, 1),
(2346, 1923, '4', 'Algappa university', '', 'MBA&PGDM', '2019', 70.00, '', 1, '2020-11-17 12:28:18', 0, NULL, 0, NULL, 1),
(2347, 1922, '1', 'state board', '', '', '2010', 84.80, '', 1, '2020-11-17 12:28:39', 0, NULL, 0, NULL, 1),
(2348, 1923, '3', 'Madras university', '', 'b.Com', '2014', 70.00, '', 1, '2020-11-17 12:28:49', 0, NULL, 0, NULL, 1),
(2349, 1923, '2', 'Matric', '', '', '2011', 74.00, '', 1, '2020-11-17 12:29:14', 0, NULL, 0, NULL, 1),
(2350, 1923, '1', 'Matric', '', '', '2009', 69.00, '', 1, '2020-11-17 12:29:29', 0, NULL, 0, NULL, 1),
(2351, 1922, '5', 'thiagarajar polytechnic college', '', 'd.com.e', '2013', 95.50, '', 1, '2020-11-17 12:29:33', 0, NULL, 0, NULL, 1),
(2352, 1922, '3', 'kumaraguru college of technology', '', 'b.tech', '2016', 65.00, '', 1, '2020-11-17 12:30:31', 0, NULL, 0, NULL, 1),
(2353, 1925, '4', 'anna university', '', 'm.e computer science and engineering', '2014', 85.00, '', 1, '2020-11-17 01:04:45', 0, NULL, 0, NULL, 1),
(2354, 1925, '4', 'anna university chennai', '', 'm.e computer science and engineering', '2014', 85.00, '', 1, '2020-11-17 01:09:45', 0, NULL, 0, NULL, 1),
(2355, 1926, '1', 'state board', '', '', '2013', 69.00, '', 1, '2020-11-17 01:23:32', 0, NULL, 0, NULL, 1),
(2356, 1926, '2', 'state board', '', '', '2015', 64.00, '', 1, '2020-11-17 01:24:31', 0, NULL, 0, NULL, 1),
(2357, 1926, '3', 'university of madras', '', '', '2019', 49.00, '', 1, '2020-11-17 01:31:46', 0, NULL, 0, NULL, 1),
(2358, 1930, '3', 'Anna university ', '', 'B. E', '2019', 6.90, '', 1, '2020-11-17 02:36:57', 0, NULL, 0, NULL, 1),
(2359, 1929, '4', 'Madras University', '', 'B.A Sociology', '2014', 59.00, '', 1, '2020-11-17 02:41:10', 0, NULL, 0, NULL, 1),
(2360, 1932, '3', 'Kongu Engineering College', '', 'Computer Science', '2015', 67.00, '', 1, '2020-11-17 02:54:13', 0, NULL, 0, NULL, 1),
(2361, 1932, '5', 'Gudiyatham Polytechnic College', '', 'Computer Science', '2011', 94.50, '', 1, '2020-11-17 02:55:25', 0, NULL, 0, NULL, 1),
(2362, 1932, '2', 'State board', '', '', '2008', 55.50, '', 1, '2020-11-17 02:56:21', 1, '2020-11-17 02:57:38', 0, NULL, 1),
(2363, 1932, '1', 'State board', '', '', '2006', 74.50, '', 1, '2020-11-17 02:57:05', 0, NULL, 0, NULL, 1),
(2364, 1908, '3', 'gulbarga university', '', 'b.com', '2020', 67.00, '', 1, '2020-11-17 03:05:15', 0, NULL, 0, NULL, 1),
(2365, 1933, '4', 'Madras University ', '', 'HR', '2021', 60.00, '', 1, '2020-11-17 03:36:24', 0, NULL, 0, NULL, 1),
(2366, 1864, '3', 'yogi vemana university', '', 'BSc ', '2015', 58.00, '', 1, '2020-11-17 05:44:39', 0, NULL, 0, NULL, 1),
(2367, 1936, '5', 'n c v t', '', 'electronics', '1985', 65.00, '', 1, '2020-11-17 07:03:22', 0, NULL, 0, NULL, 1),
(2368, 1935, '5', 'DOTE', '', 'Computer Engineering ', '2019', 67.00, '', 1, '2020-11-17 08:09:09', 0, NULL, 0, NULL, 1),
(2369, 1935, '1', 'Tamilnadu State Board ', '', '', '2016', 74.00, '', 1, '2020-11-17 08:59:47', 0, NULL, 0, NULL, 1),
(2370, 1942, '3', 'Vels university ', '', 'B.Com general ', '2020', 70.00, '', 1, '2020-11-18 10:55:45', 0, NULL, 0, NULL, 1),
(2371, 1943, '3', 'Gurunanak college ', '', 'BA', '2020', 69.00, '', 1, '2020-11-18 11:10:25', 0, NULL, 0, NULL, 1),
(2372, 1934, '3', 'Anna University', '', 'B.E', '2019', 64.70, '', 1, '2020-11-18 11:18:35', 0, NULL, 0, NULL, 1),
(2373, 1911, '1', 'state', '', '', '2012', 60.00, '', 1, '2020-11-18 11:20:21', 0, NULL, 0, NULL, 1),
(2374, 1911, '2', 'state', '', '', '2014', 54.00, '', 1, '2020-11-18 11:20:54', 0, NULL, 0, NULL, 1),
(2375, 1911, '3', 'vskub', '', 'b.com', '2017', 58.00, '', 1, '2020-11-18 11:21:57', 0, NULL, 0, NULL, 1),
(2376, 1911, '4', 'vtu', '', 'mba', '2019', 60.00, '', 1, '2020-11-18 11:22:28', 0, NULL, 0, NULL, 1),
(2377, 1944, '3', 'madras university', '', 'bba', '2005', 50.00, '', 1, '2020-11-18 11:28:20', 0, NULL, 0, NULL, 1),
(2378, 1915, '3', 'anna', '', 'cse', '2018', 6.58, '', 1, '2020-11-18 11:53:58', 0, NULL, 0, NULL, 1),
(2379, 1915, '2', 'cbse', '', '', '2012', 70.00, '', 1, '2020-11-18 11:54:49', 1, '2020-11-18 11:54:57', 0, NULL, 0),
(2380, 1946, '3', 'anna University', '', 'be- ece', '2016', 69.70, '', 1, '2020-11-18 12:47:32', 1, '2020-11-18 12:49:21', 0, NULL, 1),
(2381, 1946, '2', 'sri.p muthiyar hr sec school', '', '', '2012', 68.50, '', 1, '2020-11-18 12:48:18', 0, NULL, 0, NULL, 1),
(2382, 1947, '3', 'Mananonmaniyam sundaranar University', '', 'BSC', '2015', 70.00, '', 1, '2020-11-18 12:48:59', 0, NULL, 0, NULL, 1),
(2383, 1946, '1', 'sri.p muthiyar hr sec school', '', '', '2010', 83.00, '', 1, '2020-11-18 12:49:06', 0, NULL, 0, NULL, 1),
(2384, 1948, '3', 'University of madras ', '', 'B.com( computer application)', '2015', 70.00, '', 1, '2020-11-18 01:13:30', 0, NULL, 0, NULL, 1),
(2385, 1949, '5', 'Bharath polytechnic college ', '', 'Diploma mechanical engineering ', '2019', 84.00, '', 1, '2020-11-18 01:44:28', 0, NULL, 0, NULL, 1),
(2386, 1920, '3', 'Anna university', '', 'B.E', '2018', 60.00, '', 1, '2020-11-18 02:23:39', 0, NULL, 0, NULL, 1),
(2387, 1950, '3', 'ESEC', '', 'CSE', '2018', 65.00, '', 1, '2020-11-18 02:51:04', 0, NULL, 0, NULL, 1),
(2388, 1945, '3', 'Madras University', '', 'B.A.Hitory', '2003', 50.00, '', 1, '2020-11-18 03:24:57', 0, NULL, 0, NULL, 1),
(2389, 1952, '1', 'state board', '', '', '2005', 71.00, '', 1, '2020-11-18 04:54:23', 0, NULL, 0, NULL, 1),
(2390, 1952, '2', 'state board', '', '', '2007', 64.00, '', 1, '2020-11-18 04:56:07', 0, NULL, 0, NULL, 1),
(2391, 1940, '4', 'anna university', '', 'mca', '2014', 81.00, '', 1, '2020-11-18 05:32:02', 0, NULL, 0, NULL, 1),
(2392, 1940, '3', 'periyar university', '', 'b.sc', '2011', 75.00, '', 1, '2020-11-18 05:32:32', 0, NULL, 0, NULL, 1),
(2393, 1940, '2', 'state board', '', '', '2007', 50.00, '', 1, '2020-11-18 05:38:40', 0, NULL, 0, NULL, 1),
(2394, 1940, '1', 'state board', '', '', '2005', 50.00, '', 1, '2020-11-18 05:39:07', 0, NULL, 0, NULL, 1),
(2395, 1959, '3', 'Anna university', '', 'BE(ECE)', '2019', 75.00, '', 1, '2020-11-18 10:06:34', 0, NULL, 0, NULL, 1),
(2396, 1959, '2', 'State board', '', '', '2015', 78.00, '', 1, '2020-11-18 10:07:19', 0, NULL, 0, NULL, 1),
(2397, 1959, '1', 'Sate board', '', '', '2013', 80.00, '', 1, '2020-11-18 10:07:46', 0, NULL, 0, NULL, 1),
(2398, 1960, '1', 'state board', '', '', '2006', 77.20, '', 1, '2020-11-19 08:51:18', 1, '2020-11-19 08:52:22', 0, NULL, 1),
(2399, 1960, '2', 'state board', '', '', '2008', 58.60, '', 1, '2020-11-19 08:52:06', 0, NULL, 0, NULL, 1),
(2400, 1960, '3', 'anna university', '', 'b.tech', '2012', 6.30, '', 1, '2020-11-19 08:53:04', 0, NULL, 0, NULL, 1),
(2401, 1962, '2', 'bharath university', '', '', '2020', 60.00, '', 1, '2020-11-19 11:39:03', 1, '2020-11-19 11:39:53', 0, NULL, 0),
(2402, 1962, '3', 'bharath university', '', 'bba', '2020', 60.00, '', 1, '2020-11-19 11:39:03', 0, NULL, 0, NULL, 1),
(2403, 1962, '2', 'cbhss', '', '', '2015', 48.00, '', 1, '2020-11-19 11:41:28', 0, NULL, 0, NULL, 1),
(2404, 1962, '1', 'cbhss', '', '', '2013', 52.00, '', 1, '2020-11-19 11:42:28', 0, NULL, 0, NULL, 1),
(2405, 1961, '4', 'Bharathidasan university ', '', 'Mba', '2014', 75.00, '', 1, '2020-11-19 11:57:47', 0, NULL, 0, NULL, 1),
(2406, 1961, '3', 'Bharathidasan university ', '', 'Bcom', '2012', 65.00, '', 1, '2020-11-19 11:58:57', 0, NULL, 0, NULL, 1),
(2407, 1961, '2', 'State', '', '', '2009', 75.00, '', 1, '2020-11-19 11:59:44', 0, NULL, 0, NULL, 1),
(2408, 1961, '1', 'State ', '', '', '2008', 65.00, '', 1, '2020-11-19 12:00:22', 0, NULL, 0, NULL, 1),
(2409, 1963, '4', 'Anna university', '', 'MCA', '2021', 70.00, '', 1, '2020-11-19 12:05:26', 0, NULL, 0, NULL, 1),
(2410, 1964, '3', 'Anna University', '', 'B.E', '2018', 6.00, '', 1, '2020-11-19 12:06:49', 0, NULL, 0, NULL, 1),
(2411, 1937, '4', 'Anna University', '', 'Mba', '2014', 73.00, '', 1, '2020-11-19 12:21:31', 1, '2020-11-19 12:32:53', 0, NULL, 0),
(2412, 1937, '3', 'Madras University', '', 'B.Com G', '2011', 58.00, '', 1, '2020-11-19 12:22:23', 1, '2020-11-19 12:32:58', 0, NULL, 0),
(2413, 1937, '2', 'Matriculation', '', '', '2008', 76.00, '', 1, '2020-11-19 12:22:51', 1, '2020-11-19 12:32:29', 0, NULL, 0),
(2414, 1937, '1', 'Matriculation', '', '', '2006', 57.00, '', 1, '2020-11-19 12:23:12', 1, '2020-11-19 12:32:36', 0, NULL, 0),
(2415, 1937, '4', 'Anna University', '', 'MBA', '2014', 73.00, '', 1, '2020-11-19 12:33:46', 1, '2020-11-19 12:40:46', 0, NULL, 0),
(2416, 1937, '3', 'Madras University', '', 'B.com G', '2011', 58.00, '', 1, '2020-11-19 12:34:26', 1, '2020-11-19 12:36:59', 0, NULL, 0),
(2417, 1937, '2', 'Matriculation', '', '', '2008', 76.00, '', 1, '2020-11-19 12:34:51', 1, '2020-11-19 12:40:28', 0, NULL, 0),
(2418, 1937, '1', 'Matriculation', '', '', '2006', 56.00, '', 1, '2020-11-19 12:35:17', 1, '2020-11-19 12:40:37', 0, NULL, 0),
(2419, 1937, '4', 'Anna University', '', 'MBA ', '2014', 73.00, '', 1, '2020-11-19 12:36:15', 1, '2020-11-19 12:38:33', 0, NULL, 0),
(2420, 1937, '3', 'Madras University', '', 'B.com G', '2011', 58.00, '', 1, '2020-11-19 12:39:29', 1, '2020-11-19 12:40:39', 0, NULL, 0),
(2421, 1937, '4', 'Anna University', '', 'Mba', '2014', 73.00, '', 1, '2020-11-19 12:42:10', 0, NULL, 0, NULL, 1),
(2422, 1937, '3', 'Madras University', '', 'B.com G', '2011', 58.00, '', 1, '2020-11-19 12:42:35', 0, NULL, 0, NULL, 1),
(2423, 1963, '4', 'Anna university', '', 'MCA', '2021', 70.00, '', 1, '2020-11-19 12:48:34', 1, '2020-11-19 12:49:21', 0, NULL, 0),
(2424, 1965, '3', 'Madras university', '', 'B.com', '2018', 50.00, '', 1, '2020-11-19 01:02:42', 0, NULL, 0, NULL, 1),
(2425, 1965, '2', 'State board', '', '', '2015', 73.00, '', 1, '2020-11-19 01:03:59', 0, NULL, 0, NULL, 1),
(2426, 1965, '1', 'State board', '', '', '2013', 84.00, '', 1, '2020-11-19 01:04:24', 0, NULL, 0, NULL, 1),
(2427, 1966, '3', 'Government College Mandya', '', 'BBA', '2020', 6.69, '', 1, '2020-11-19 01:56:46', 0, NULL, 0, NULL, 1),
(2428, 1967, '1', 'State Board', '', '', '2013', 75.00, '', 1, '2020-11-19 02:41:38', 0, NULL, 0, NULL, 1),
(2429, 1967, '2', 'State Board', '', '', '2015', 64.00, '', 1, '2020-11-19 02:42:15', 0, NULL, 0, NULL, 1),
(2430, 1967, '3', 'Madras University', '', 'B.com', '2018', 50.00, '', 1, '2020-11-19 02:42:48', 0, NULL, 0, NULL, 1),
(2431, 1969, '4', 'University of Kerala', '', 'MBA', '2013', 67.00, '', 1, '2020-11-19 04:44:19', 0, NULL, 0, NULL, 1),
(2432, 1969, '3', 'Mahatma Gandhi University', '', 'Bcom', '2011', 60.00, '', 1, '2020-11-19 04:44:57', 0, NULL, 0, NULL, 1),
(2433, 1970, '3', 'St.Peter\'s Institute of Research and Higher education', '', 'B.e', '2019', 54.75, '', 1, '2020-11-19 04:59:19', 0, NULL, 0, NULL, 1),
(2434, 1970, '2', 'Tamil Higher Secondary board', '', '', '2013', 73.75, '', 1, '2020-11-19 05:00:05', 1, '2020-11-19 05:04:23', 0, NULL, 0),
(2435, 1970, '1', 'St.Bede\'s Anglo indian higher secondary school- Anglo Indian board', '', '', '2011', 83.00, '', 1, '2020-11-19 05:01:35', 0, NULL, 0, NULL, 1),
(2436, 1970, '2', 'tN state Board- St.Bede\'s Anglo Indian Higher Secondary School', '', '', '2013', 73.75, '', 1, '2020-11-19 05:06:02', 0, NULL, 0, NULL, 1),
(2437, 1953, '4', 'bharathidasan univ', '', 'master of computer application', '2011', 69.00, '', 1, '2020-11-19 08:29:26', 0, NULL, 0, NULL, 1),
(2438, 1973, '2', 'state board', '', '', '2015', 54.00, '', 1, '2020-11-20 11:08:27', 0, NULL, 0, NULL, 1),
(2439, 1973, '4', 'manimekalai college of engeerining', '', 'mba', '2020', 66.00, '', 1, '2020-11-20 11:09:31', 0, NULL, 0, NULL, 1),
(2440, 1974, '5', 'State board of technical and training', '', 'DECE', '2017', 72.00, '', 1, '2020-11-20 11:17:27', 0, NULL, 0, NULL, 1),
(2441, 1952, '3', 'annuniversity', '', 'btech', '2011', 61.00, '', 1, '2020-11-20 11:52:09', 0, NULL, 0, NULL, 1),
(2442, 1979, '1', 'board of secondary education andhra pradesh', '', '', '2009', 72.00, '', 1, '2020-11-20 02:06:42', 1, '2020-11-20 02:08:38', 0, NULL, 1),
(2443, 1979, '5', 'state board of education and training andra pradesh', '', 'cse', '2012', 74.00, '', 1, '2020-11-20 02:10:33', 0, NULL, 0, NULL, 1),
(2444, 1979, '3', 'jntu', '', 'b.tech', '2015', 60.00, '', 1, '2020-11-20 02:11:10', 0, NULL, 0, NULL, 1),
(2445, 1981, '3', 'autonomous ', '', 'Bsc computer science ', '2018', 52.00, '', 1, '2020-11-20 04:12:35', 0, NULL, 0, NULL, 1),
(2446, 1983, '4', 'Anna university', '', 'ME', '2015', 70.00, '', 1, '2020-11-20 05:02:47', 0, NULL, 0, NULL, 1),
(2447, 1982, '3', 'Madurai kamaraj', '', 'BE', '2004', 60.00, '', 1, '2020-11-20 05:25:11', 0, NULL, 0, NULL, 1),
(2448, 1985, '1', 'state', '', '', '2010', 52.00, '', 1, '2020-11-21 03:27:17', 0, NULL, 0, NULL, 1),
(2449, 1985, '2', 'state', '', '', '2012', 70.00, '', 1, '2020-11-21 03:27:50', 0, NULL, 0, NULL, 1),
(2450, 1985, '3', 'madras', '', 'b.com', '2015', 1.00, '', 1, '2020-11-21 03:28:55', 0, NULL, 0, NULL, 1),
(2451, 1987, '5', 'STATE BOARD', '', '', '2012', 78.00, '', 1, '2020-11-21 09:36:06', 0, NULL, 0, NULL, 1),
(2452, 1988, '2', 'State board', '', '', '2011', 78.40, '', 1, '2020-11-21 10:46:11', 0, NULL, 0, NULL, 1),
(2453, 1988, '1', 'State board', '', '', '2009', 84.50, '', 1, '2020-11-21 10:46:29', 0, NULL, 0, NULL, 1),
(2454, 1988, '3', 'Anna university', '', 'BE', '2015', 60.00, '', 1, '2020-11-21 10:47:05', 0, NULL, 0, NULL, 1),
(2455, 1989, '5', 'Tamilnadu open university ', '', '', '2015', 71.00, '', 1, '2020-11-21 11:13:13', 0, NULL, 0, NULL, 1),
(2456, 1990, '3', 'vels university', '', 'bsc computer science', '2020', 70.00, '', 1, '2020-11-21 11:26:24', 0, NULL, 0, NULL, 1),
(2457, 1992, '3', 'Karnataka', '', 'BE', '2020', 6.40, '', 1, '2020-11-21 11:26:25', 0, NULL, 0, NULL, 1),
(2458, 1991, '3', 'Anna University ', '', 'B. E', '2020', 6.90, '', 1, '2020-11-21 11:33:10', 0, NULL, 0, NULL, 1),
(2459, 1995, '2', 'state board', '', '', '2013', 64.00, '', 1, '2020-11-21 12:33:58', 0, NULL, 0, NULL, 1),
(2460, 1998, '4', 'University', '', 'BE CSE', '2019', 70.00, '', 1, '2020-11-21 12:48:36', 0, NULL, 0, NULL, 1),
(2461, 1994, '4', 'the new college', '', 'bca', '2015', 67.00, '', 1, '2020-11-21 12:51:58', 0, NULL, 0, NULL, 1),
(2462, 1996, '3', 'madras university', '', 'bca', '2017', 73.00, '', 1, '2020-11-21 12:53:41', 0, NULL, 0, NULL, 1),
(2463, 1996, '2', 'state board', '', '', '2014', 72.00, '', 1, '2020-11-21 12:55:06', 0, NULL, 0, NULL, 1),
(2464, 1996, '1', 'state board', '', '', '2012', 73.00, '', 1, '2020-11-21 12:55:43', 0, NULL, 0, NULL, 1),
(2465, 1997, '3', 'anna university', '', 'b.tech', '2021', 77.00, '', 1, '2020-11-21 01:07:05', 1, '2020-11-21 01:07:54', 0, NULL, 1),
(2466, 1997, '2', 'state board', '', '', '2017', 76.00, '', 1, '2020-11-21 01:08:19', 0, NULL, 0, NULL, 1),
(2467, 1997, '1', 'state board', '', '', '2015', 81.00, '', 1, '2020-11-21 01:08:39', 0, NULL, 0, NULL, 1),
(2468, 1976, '3', 'anna univascity', '', 'b.e', '2019', 65.00, '', 1, '2020-11-21 01:28:47', 0, NULL, 0, NULL, 1),
(2469, 1980, '1', 'z p high school', '', '', '2011', 78.50, '', 1, '2020-11-21 02:00:46', 1, '2020-11-21 02:05:15', 0, NULL, 0),
(2470, 1980, '2', 'inter', '', '', '2013', 62.50, '', 1, '2020-11-21 02:01:48', 1, '2020-11-21 02:05:11', 0, NULL, 0),
(2471, 2000, '3', 'Anna University ', '', 'B.E CSE', '2018', 65.60, '', 1, '2020-11-21 02:02:46', 0, NULL, 0, NULL, 1),
(2472, 1980, '1', 'z p high school', '', '', '2011', 78.50, '', 1, '2020-11-21 02:07:21', 0, NULL, 0, NULL, 1),
(2473, 1980, '2', 'intermediate', '', '', '2013', 62.50, '', 1, '2020-11-21 02:08:18', 0, NULL, 0, NULL, 1),
(2474, 1980, '3', 'jntua', '', 'b.tech ', '2017', 60.00, '', 1, '2020-11-21 02:09:11', 0, NULL, 0, NULL, 1),
(2475, 1999, '3', 'Kerala technical university', '', 'BTECH', '2020', 68.00, '', 1, '2020-11-21 02:12:38', 0, NULL, 0, NULL, 1),
(2476, 2001, '3', 'Anna University ', '', 'B.E CSE', '2018', 65.60, '', 1, '2020-11-21 02:13:20', 0, NULL, 0, NULL, 1),
(2477, 2002, '3', 'Pondicherry University', '', 'B.tech computer science engineering', '2020', 8.00, '', 1, '2020-11-21 03:55:44', 0, NULL, 0, NULL, 1),
(2478, 2005, '3', 'Madras university ', '', 'BBA', '2018', 80.00, '', 1, '2020-11-21 07:07:14', 0, NULL, 0, NULL, 1),
(2479, 2006, '1', 'stateboard', '', '', '2000', 81.00, '', 1, '2020-11-21 07:08:13', 0, NULL, 0, NULL, 1),
(2480, 2006, '2', 'state board', '', '', '2002', 74.00, '', 1, '2020-11-21 07:08:50', 0, NULL, 0, NULL, 1),
(2481, 2006, '3', 'anna university', '', 'b-tech', '2006', 71.00, '', 1, '2020-11-21 07:09:26', 0, NULL, 0, NULL, 1),
(2482, 2006, '4', 'anna university', '', 'm.e', '2014', 7.72, '', 1, '2020-11-21 07:10:02', 0, NULL, 0, NULL, 1),
(2483, 2008, '4', 'university of madras', '', 'mca', '2020', 71.00, '', 1, '2020-11-22 01:06:22', 0, NULL, 0, NULL, 1),
(2484, 2009, '4', 'Anna university', '', 'MCA', '2019', 7.84, '', 1, '2020-11-22 01:40:31', 0, NULL, 0, NULL, 1),
(2485, 2009, '3', 'Thiruvalluar university', '', 'BCA', '2017', 74.00, '', 1, '2020-11-22 01:41:12', 0, NULL, 0, NULL, 1),
(2486, 2009, '2', 'StateBoard', '', '', '2014', 55.00, '', 1, '2020-11-22 01:41:51', 0, NULL, 0, NULL, 1),
(2487, 2014, '3', 'Madras university', '', 'Bsc.cs', '2020', 69.00, '', 1, '2020-11-23 10:53:53', 0, NULL, 0, NULL, 1),
(2488, 2015, '3', 'University college of engineering Arni', '', 'B.E, Mechanical engineering', '2019', 64.50, '', 1, '2020-11-23 10:54:55', 0, NULL, 0, NULL, 1),
(2489, 2013, '3', 'Patrician college of arts & science', '', 'B.sc.visual communication', '2020', 47.00, '', 1, '2020-11-23 11:02:23', 0, NULL, 0, NULL, 1),
(2490, 2013, '4', 'Patrician college of arts& science', '', 'B.sc.visual communication', '2020', 45.00, '', 1, '2020-11-23 11:03:29', 0, NULL, 0, NULL, 1),
(2491, 2004, '5', 'dote', '', '', '2015', 75.00, '', 1, '2020-11-23 11:56:41', 0, NULL, 0, NULL, 1),
(2492, 2007, '4', 'j n t u', '', 'm b a', '2014', 70.00, '', 1, '2020-11-23 11:58:21', 0, NULL, 0, NULL, 1),
(2493, 2016, '4', 'Srm University', '', 'M.Sc', '2020', 78.00, '', 1, '2020-11-23 01:19:17', 0, NULL, 0, NULL, 1),
(2494, 1927, '3', 'madras university ', '', 'bca', '2018', 40.00, '', 1, '2020-11-23 01:20:38', 0, NULL, 0, NULL, 1),
(2495, 2024, '3', 'Madras University', '', 'BCA', '2020', 65.00, '', 1, '2020-11-23 06:26:19', 0, NULL, 0, NULL, 1),
(2496, 2025, '3', 'Madras University', '', 'BCA', '2020', 68.00, '', 1, '2020-11-23 06:30:59', 0, NULL, 0, NULL, 1),
(2497, 2037, '3', 'Madras University', '', 'BCA', '2020', 58.00, '', 1, '2020-11-23 06:56:17', 0, NULL, 0, NULL, 1),
(2498, 2022, '3', 'Madras university', '', '', '2020', 61.00, '', 1, '2020-11-23 07:05:17', 0, NULL, 0, NULL, 1),
(2499, 2039, '3', 'ANNA UNIVERSITY', '', 'BACHELOR OF ENGINEERING', '2019', 67.70, '', 1, '2020-11-23 07:06:12', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2500, 2026, '3', 'Madras university ', '', 'B.com(g)7', '2020', 68.00, '', 1, '2020-11-23 07:29:38', 0, NULL, 0, NULL, 1),
(2501, 2027, '3', 'Madras University', '', 'B.com (General)', '2020', 63.00, '', 1, '2020-11-23 07:36:36', 0, NULL, 0, NULL, 1),
(2502, 2023, '3', 'Madras university ', '', 'B.com', '2020', 52.00, '', 1, '2020-11-23 07:50:55', 0, NULL, 0, NULL, 1),
(2503, 2035, '1', 'matriculation school', '', '', '2002', 50.00, '', 1, '2020-11-23 08:03:19', 1, '2020-11-23 08:03:57', 0, NULL, 1),
(2504, 2041, '3', 'Medras University', '', 'BBA', '2020', 60.00, '', 1, '2020-11-23 08:04:37', 1, '2020-11-23 08:06:44', 0, NULL, 1),
(2505, 2042, '3', 'Madras University', '', 'B. Com', '2020', 60.00, '', 1, '2020-11-23 08:05:13', 0, NULL, 0, NULL, 1),
(2506, 2044, '3', 'Madras University', '', 'B.com ( general)', '2020', 65.00, '', 1, '2020-11-23 08:37:27', 0, NULL, 0, NULL, 1),
(2507, 2047, '3', 'anna university', '', 'b.e', '2012', 84.00, '', 1, '2020-11-23 11:10:09', 0, NULL, 0, NULL, 1),
(2508, 2047, '1', 'state board', '', '', '2008', 87.00, '', 1, '2020-11-23 11:11:02', 0, NULL, 0, NULL, 1),
(2509, 2047, '2', 'matric board', '', '', '2006', 71.00, '', 1, '2020-11-23 11:11:27', 0, NULL, 0, NULL, 1),
(2510, 2048, '3', 'Madras University', '', 'B.com', '2020', 68.00, '', 1, '2020-11-23 11:20:15', 0, NULL, 0, NULL, 1),
(2511, 2050, '3', 'Anna university ', '', 'B. E', '2012', 75.00, '', 1, '2020-11-24 09:38:21', 0, NULL, 0, NULL, 1),
(2512, 2049, '3', 'Madras University', '', 'B.com', '2020', 56.00, '', 1, '2020-11-24 10:03:19', 0, NULL, 0, NULL, 1),
(2513, 2052, '4', 'University of madras', '', 'MCA', '2021', 70.00, '', 1, '2020-11-24 10:44:55', 0, NULL, 0, NULL, 1),
(2514, 2052, '1', 'Board', '', '', '2011', 90.00, '', 1, '2020-11-24 10:45:37', 0, NULL, 0, NULL, 1),
(2515, 2052, '5', 'Autonomous', '', '', '2014', 75.00, '', 1, '2020-11-24 10:46:09', 0, NULL, 0, NULL, 1),
(2516, 2052, '3', 'University', '', 'BCA', '2017', 70.00, '', 1, '2020-11-24 10:46:50', 0, NULL, 0, NULL, 1),
(2517, 2046, '3', 'Madras University', '', 'B.com', '2020', 74.00, '', 1, '2020-11-24 02:00:24', 0, NULL, 0, NULL, 1),
(2518, 2057, '2', 'State Board', '', '', '2018', 78.00, '', 1, '2020-11-24 02:30:36', 0, NULL, 0, NULL, 1),
(2519, 2059, '4', 'Anna University', '', 'MCA', '2019', 75.00, '', 1, '2020-11-24 08:19:13', 0, NULL, 0, NULL, 1),
(2520, 2059, '3', 'Periyar University', '', 'BCA', '2015', 63.00, '', 1, '2020-11-24 08:20:29', 0, NULL, 0, NULL, 1),
(2521, 2061, '3', 'Anna University', '', 'Bachelor of computer science engineering', '2019', 65.00, '', 1, '2020-11-24 09:27:34', 1, '2020-11-24 09:29:33', 0, NULL, 1),
(2522, 2061, '1', 'Matriculation', '', '', '2014', 88.00, '', 1, '2020-11-24 09:28:51', 0, NULL, 0, NULL, 1),
(2523, 2061, '2', 'Matriculation', '', '', '2015', 70.00, '', 1, '2020-11-24 09:29:17', 0, NULL, 0, NULL, 1),
(2524, 0, '3', 'Anna university', '', 'Engineering', '2016', 60.00, '', 1, '2020-11-26 11:17:29', 1, '2020-11-28 10:44:30', 0, NULL, 0),
(2525, 2066, '3', 'Anna University  Chennai', '', 'BE', '2014', 7.60, '', 1, '2020-11-26 11:46:09', 0, NULL, 0, NULL, 1),
(2526, 2066, '4', 'Anna University Chennai ', '', 'ME', '2016', 8.40, '', 1, '2020-11-26 11:46:56', 0, NULL, 0, NULL, 1),
(2527, 1313, '4', 'Dr mgr University', '', 'Mba', '2019', 70.00, '', 1, '2020-11-27 09:35:31', 0, NULL, 0, NULL, 1),
(2528, 2067, '1', 'sree narayana mission', '', '', '2014', 78.00, '', 1, '2020-11-27 10:56:08', 0, NULL, 0, NULL, 1),
(2529, 2067, '2', 'sree narayana mission', '', '', '2016', 78.00, '', 1, '2020-11-27 10:56:37', 0, NULL, 0, NULL, 1),
(2530, 2067, '3', 'mnm jain engineering college anna university', '', '', '2020', 72.00, '', 1, '2020-11-27 10:57:22', 0, NULL, 0, NULL, 1),
(2531, 2070, '3', 'Guru Nanak college - Chennai', '', 'B.com (ism)', '2020', 53.00, '', 1, '2020-11-27 11:27:54', 0, NULL, 0, NULL, 1),
(2532, 2069, '3', 'Vels University', '', 'B.com general', '2020', 58.00, '', 1, '2020-11-27 11:29:17', 0, NULL, 0, NULL, 1),
(2533, 2072, '3', 'Anna university', '', 'B.E computer Science ', '2020', 6.90, '', 1, '2020-11-27 12:03:10', 0, NULL, 0, NULL, 1),
(2534, 2073, '3', 'anna university', '', 'be', '2016', 60.00, '', 1, '2020-11-27 12:11:58', 0, NULL, 0, NULL, 1),
(2535, 2075, '3', 'BANGALORE UNIVERSITY ', '', 'BBA', '2018', 66.00, '', 1, '2020-11-27 12:36:09', 0, NULL, 0, NULL, 1),
(2536, 2076, '2', 'state board', '', '', '2012', 87.00, '', 1, '2020-11-27 12:50:34', 0, NULL, 0, NULL, 1),
(2537, 2079, '3', 'Madras University ', '', 'B. Com.,', '2005', 70.00, '', 1, '2020-11-27 04:27:43', 0, NULL, 0, NULL, 1),
(2538, 2082, '3', 'Bharath University ', '', '', '2020', 78.00, '', 1, '2020-11-27 05:01:41', 0, NULL, 0, NULL, 1),
(2539, 2083, '3', 'Madras University', '', 'B. Sc. H & CM ', '2013', 75.00, '', 1, '2020-11-27 05:15:26', 0, NULL, 0, NULL, 1),
(2540, 2083, '2', 'State', '', '', '2010', 73.00, '', 1, '2020-11-27 05:15:49', 0, NULL, 0, NULL, 1),
(2541, 2083, '1', 'State', '', '', '2008', 72.00, '', 1, '2020-11-27 05:16:10', 0, NULL, 0, NULL, 1),
(2542, 2089, '3', 'Anna University', '', 'BE', '2019', 70.00, '', 1, '2020-11-27 09:19:03', 0, NULL, 0, NULL, 1),
(2543, 2065, '3', 'Kings eng college', '', 'B.Tech IT', '2011', 65.00, '', 1, '2020-11-28 09:44:43', 0, NULL, 0, NULL, 1),
(2544, 2091, '3', 'Madras university ', '', 'B.a', '2019', 70.00, '', 1, '2020-11-28 10:22:30', 0, NULL, 0, NULL, 1),
(2545, 2093, '3', 'Anna University', '', 'B.Tech', '2020', 68.00, '', 1, '2020-11-28 10:44:40', 0, NULL, 0, NULL, 1),
(2546, 2056, '3', 'Dmi college of engineering ', '', 'BE.MECHANICAL', '2019', 60.00, '', 1, '2020-11-28 11:15:26', 0, NULL, 0, NULL, 1),
(2547, 2081, '3', 'anna university', '', 'bachelors', '2020', 60.00, '', 1, '2020-11-28 11:18:31', 0, NULL, 0, NULL, 1),
(2548, 2081, '2', 'state board', '', '', '2016', 75.00, '', 1, '2020-11-28 11:19:05', 0, NULL, 0, NULL, 1),
(2549, 2081, '1', 'state board', '', '', '2014', 80.50, '', 1, '2020-11-28 11:19:37', 0, NULL, 0, NULL, 1),
(2550, 2088, '3', 'Anna university', '', 'BE', '2020', 67.00, '', 1, '2020-11-28 11:34:53', 0, NULL, 0, NULL, 1),
(2551, 2086, '3', 'Anna university', '', 'Bachelor of technology', '2019', 68.90, '', 1, '2020-11-28 11:37:33', 0, NULL, 0, NULL, 1),
(2552, 2086, '1', 'State board', '', '', '2015', 94.60, '', 1, '2020-11-28 11:38:04', 1, '2020-11-28 11:38:54', 0, NULL, 0),
(2553, 2086, '2', 'State board', '', '', '2015', 94.60, '', 1, '2020-11-28 11:38:28', 1, '2020-11-28 11:38:58', 0, NULL, 0),
(2554, 2086, '1', 'State board', '', '', '2013', 94.30, '', 1, '2020-11-28 11:39:22', 0, NULL, 0, NULL, 1),
(2555, 2086, '2', 'State board', '', '', '2015', 94.50, '', 1, '2020-11-28 11:39:43', 0, NULL, 0, NULL, 1),
(2556, 2094, '3', 'Sir theagaraya ', '', 'B.com', '2018', 64.00, '', 1, '2020-11-28 12:03:20', 0, NULL, 0, NULL, 1),
(2557, 2105, '3', 'University ', '', 'bE', '2018', 6.60, '', 1, '2020-11-28 07:30:40', 0, NULL, 0, NULL, 1),
(2558, 2106, '1', 'State board', '', '', '2013', 96.00, '', 1, '2020-11-28 08:03:22', 0, NULL, 0, NULL, 1),
(2559, 2106, '2', 'State board ', '', '', '2015', 79.00, '', 1, '2020-11-28 08:04:01', 0, NULL, 0, NULL, 1),
(2560, 2106, '3', 'Bharathidasan university ', '', 'Bsc computer science ', '2018', 69.00, '', 1, '2020-11-28 08:04:36', 0, NULL, 0, NULL, 1),
(2561, 2106, '4', 'Bharathidasan university ', '', 'MSC computer science ', '2020', 70.00, '', 1, '2020-11-28 08:05:22', 0, NULL, 0, NULL, 1),
(2562, 2100, '3', 'Madras University ', '', 'BCA ', '2017', 69.00, '', 1, '2020-11-28 09:49:10', 0, NULL, 0, NULL, 1),
(2563, 2100, '2', 'State board ', '', 'BCA ', '2014', 70.00, '', 1, '2020-11-28 09:51:19', 1, '2020-11-28 09:53:13', 0, NULL, 1),
(2564, 2100, '1', 'State board ', '', '', '2012', 80.00, '', 1, '2020-11-28 09:52:25', 1, '2020-11-28 09:53:00', 0, NULL, 1),
(2565, 2110, '3', 'Anna university ', '', 'B.E', '2015', 55.00, '', 1, '2020-11-29 10:42:19', 0, NULL, 0, NULL, 1),
(2566, 2111, '3', 'anna university', '', 'B.e', '2019', 64.00, '', 1, '2020-11-29 11:46:41', 0, NULL, 0, NULL, 1),
(2567, 2112, '3', 'University', '', 'BE Electronics and Communication Engineering', '2016', 60.00, '', 1, '2020-11-29 12:12:01', 0, NULL, 0, NULL, 1),
(2568, 2112, '2', 'State Board', '', '', '2012', 60.00, '', 1, '2020-11-29 12:12:24', 0, NULL, 0, NULL, 1),
(2569, 2112, '1', 'State Board', '', '', '2010', 77.00, '', 1, '2020-11-29 12:12:48', 0, NULL, 0, NULL, 1),
(2570, 2113, '1', 'Govt boys higher secondary school', '', '', '2013', 90.00, '', 1, '2020-11-29 01:27:59', 0, NULL, 0, NULL, 1),
(2571, 2113, '2', 'Govt boys higher secondary school', '', '', '2015', 75.00, '', 1, '2020-11-29 01:29:02', 0, NULL, 0, NULL, 1),
(2572, 2113, '3', 'Sengunthar institutions, Tiruchengode', '', 'B. e ece', '2019', 62.00, '', 1, '2020-11-29 01:30:17', 0, NULL, 0, NULL, 1),
(2573, 2102, '3', 'alagappa university', '', 'b.sc ', '2017', 76.10, '', 1, '2020-11-29 02:08:00', 0, NULL, 0, NULL, 1),
(2574, 2102, '2', 'hindu hr sec school ', '', '', '2014', 81.00, '', 1, '2020-11-29 02:09:48', 0, NULL, 0, NULL, 1),
(2575, 2102, '1', 'hindu hr sec school ', '', '', '2012', 87.60, '', 1, '2020-11-29 02:10:52', 0, NULL, 0, NULL, 1),
(2576, 2116, '3', 'VTU', '', 'BE', '2013', 65.00, '', 1, '2020-11-29 03:45:58', 0, NULL, 0, NULL, 1),
(2577, 2117, '3', 'New prince shri bhavani college of engineering and technology', '', 'B.E in electronics and instrumentation', '2017', 62.50, '', 1, '2020-11-29 04:13:16', 0, NULL, 0, NULL, 1),
(2578, 2118, '3', 'anna university', '', 'bachelor of engineering', '2021', 80.90, '', 1, '2020-11-29 04:32:05', 0, NULL, 0, NULL, 1),
(2579, 2118, '2', 'state board', '', '', '2017', 88.75, '', 1, '2020-11-29 04:32:40', 0, NULL, 0, NULL, 1),
(2580, 2118, '1', 'state board', '', '', '2015', 96.20, '', 1, '2020-11-29 04:33:02', 0, NULL, 0, NULL, 1),
(2581, 2087, '3', 'anna university', '', 'be', '2020', 63.00, '', 1, '2020-11-29 05:24:34', 0, NULL, 0, NULL, 1),
(2582, 2120, '1', 'state board', '', '', '2015', 94.60, '', 1, '2020-11-29 05:28:28', 0, NULL, 0, NULL, 1),
(2583, 2120, '2', 'state board', '', '', '2017', 82.00, '', 1, '2020-11-29 05:29:02', 0, NULL, 0, NULL, 1),
(2584, 2120, '3', 'anna university', '', 'b.e', '2021', 8.33, '', 1, '2020-11-29 05:29:33', 0, NULL, 0, NULL, 1),
(2585, 2121, '4', 'bharathidasan university-trichy', '', 'mca-master of computer applications', '2019', 78.00, '', 1, '2020-11-29 05:38:09', 0, NULL, 0, NULL, 1),
(2586, 2119, '3', 'Dr.Ambedkar arts college', '', 'Bsc Cs', '2020', 60.00, '', 1, '2020-11-29 06:26:31', 0, NULL, 0, NULL, 1),
(2587, 2122, '1', 'Asan memorial', '', 'Bsc.IT', '2015', 7.40, '', 1, '2020-11-29 06:31:56', 0, NULL, 0, NULL, 1),
(2588, 2122, '2', 'Asan memorial', '', '', '2017', 67.40, '', 1, '2020-11-29 06:32:22', 0, NULL, 0, NULL, 1),
(2589, 2124, '3', 'Anna University', '', 'B.E- E.C.E', '2020', 70.00, '', 1, '2020-11-29 06:37:23', 0, NULL, 0, NULL, 1),
(2590, 2124, '2', 'CBSE', '', '', '2016', 71.00, '', 1, '2020-11-29 06:38:00', 0, NULL, 0, NULL, 1),
(2591, 2124, '1', 'CBSE', '', '', '2014', 90.00, '', 1, '2020-11-29 06:38:32', 0, NULL, 0, NULL, 1),
(2592, 2126, '3', 'madras university', '', 'b.com', '2020', 66.70, '', 1, '2020-11-29 07:55:11', 0, NULL, 0, NULL, 1),
(2593, 2126, '2', 'cbse', '', '', '2017', 93.80, '', 1, '2020-11-29 07:56:08', 0, NULL, 0, NULL, 1),
(2594, 2126, '1', 'cbse', '', '', '2015', 84.00, '', 1, '2020-11-29 07:56:25', 0, NULL, 0, NULL, 1),
(2595, 2128, '3', 'Anna University', '', 'B.E(CSE)', '2021', 75.00, '', 1, '2020-11-29 09:26:59', 0, NULL, 0, NULL, 1),
(2596, 2129, '3', 'Sree sastha institute of engineering and technology ', '', 'BE.CSE', '2020', 6.80, '', 1, '2020-11-29 11:25:09', 1, '2020-11-29 11:25:23', 0, NULL, 0),
(2597, 2129, '3', 'Sree sastha institute of engineering and technology ', '', 'BE.CSE', '2020', 6.80, '', 1, '2020-11-29 11:26:08', 0, NULL, 0, NULL, 1),
(2598, 2104, '3', 'Anna university', '', 'B.E', '2019', 60.00, '', 1, '2020-11-30 07:52:56', 0, NULL, 0, NULL, 1),
(2599, 2131, '3', 'Anna university', '', 'B. Tech (IT) ', '2014', 63.00, '', 1, '2020-11-30 09:05:43', 0, NULL, 0, NULL, 1),
(2600, 2085, '3', 'banglore  university ', '', 'b.com', '2020', 67.00, '', 1, '2020-11-30 09:45:29', 0, NULL, 0, NULL, 1),
(2601, 2132, '4', 'Bangalore north university ', '', 'MBA', '2020', 65.00, '', 1, '2020-11-30 10:02:39', 1, '2020-11-30 02:21:52', 0, NULL, 0),
(2602, 2007, '1', 'Board of tenth class hyderabad', '', '', '2005', 58.00, '', 1, '2020-11-30 10:39:39', 0, NULL, 0, NULL, 1),
(2603, 2007, '2', 'Board of intermediate hyderabad ', '', '', '2008', 63.00, '', 1, '2020-11-30 10:40:20', 0, NULL, 0, NULL, 1),
(2604, 2007, '3', 'Sri venkateswara university', '', 'B com', '2011', 70.00, '', 1, '2020-11-30 10:41:12', 0, NULL, 0, NULL, 1),
(2605, 2007, '4', 'Javharlal nehru technology university ', '', 'mBA', '2014', 78.00, '', 1, '2020-11-30 10:42:10', 0, NULL, 0, NULL, 1),
(2606, 2133, '5', 'Anna university', '', 'B tech Mechanical', '2015', 68.00, '', 1, '2020-11-30 10:58:31', 0, NULL, 0, NULL, 1),
(2607, 2133, '4', 'Anna university Chennai', '', 'B tech', '2015', 68.00, '', 1, '2020-11-30 10:59:31', 0, NULL, 0, NULL, 1),
(2608, 2134, '3', 'Madras University', '', 'B.sc Advanced Zoology and Biotechnology', '2019', 69.00, '', 1, '2020-11-30 11:00:20', 0, NULL, 0, NULL, 1),
(2609, 2040, '3', 'Madras University', '', 'B.com', '2020', 75.00, '', 1, '2020-11-30 11:24:03', 0, NULL, 0, NULL, 1),
(2610, 2135, '3', 'am jain College ', '', 'bca', '2017', 66.00, '', 1, '2020-11-30 11:39:48', 0, NULL, 0, NULL, 1),
(2611, 2077, '3', 'Bharathiar University', '', 'BBA', '2019', 60.00, '', 1, '2020-11-30 11:42:46', 0, NULL, 0, NULL, 1),
(2612, 2137, '3', 'Apollo arts and science college', '', 'Bsc-cs', '2020', 60.00, '', 1, '2020-11-30 12:13:40', 0, NULL, 0, NULL, 1),
(2613, 2138, '4', 'Madras University', '', 'Bsc.cs', '2020', 50.00, '', 1, '2020-11-30 12:17:13', 0, NULL, 0, NULL, 1),
(2614, 2139, '3', 'Madras University', '', 'B.sci computer science', '2020', 65.00, '', 1, '2020-11-30 12:21:34', 0, NULL, 0, NULL, 1),
(2615, 2140, '3', 'Alpha Arts and science college', '', 'BCA', '2020', 65.00, '', 1, '2020-11-30 12:22:48', 0, NULL, 0, NULL, 1),
(2616, 2140, '2', 'Government boy\'s Higher Sec School', '', '', '2017', 69.50, '', 1, '2020-11-30 12:23:58', 0, NULL, 0, NULL, 1),
(2617, 2140, '1', 'Government boy\'s Higher Sec School', '', '', '2015', 74.60, '', 1, '2020-11-30 12:24:40', 0, NULL, 0, NULL, 1),
(2618, 2142, '3', 'Madras university ', '', 'BCA', '2020', 60.00, '', 1, '2020-11-30 12:24:51', 0, NULL, 0, NULL, 1),
(2619, 2136, '3', 'madrasuniversity', '', 'b.sc computer science', '2011', 65.00, '', 1, '2020-11-30 12:50:29', 0, NULL, 0, NULL, 1),
(2620, 2144, '3', 'UNIVERSITY', '', 'BBA', '2020', 60.00, '', 1, '2020-11-30 12:55:15', 0, NULL, 0, NULL, 1),
(2621, 2064, '3', 'University', '', 'B com general', '2020', 70.00, '', 1, '2020-11-30 12:57:05', 0, NULL, 0, NULL, 1),
(2622, 2143, '4', 'BHARATHIDASAN ', '', 'MSC-IT', '2020', 76.00, '', 1, '2020-11-30 01:26:00', 0, NULL, 0, NULL, 1),
(2623, 2115, '3', 'Madras University', '', 'Bcom', '2020', 70.00, '', 1, '2020-11-30 02:02:19', 0, NULL, 0, NULL, 1),
(2624, 2115, '2', 'State board', '', '', '2017', 75.00, '', 1, '2020-11-30 02:02:50', 1, '2020-11-30 02:03:39', 0, NULL, 1),
(2625, 2115, '1', 'State board', '', '', '2015', 84.00, '', 1, '2020-11-30 02:03:24', 0, NULL, 0, NULL, 1),
(2626, 2148, '4', 'Ipag business school ,Paris.', '', 'MBA International business', '2013', 8.00, '', 1, '2020-11-30 02:04:58', 0, NULL, 0, NULL, 1),
(2627, 2132, '4', 'Bangalore ', '', 'MBA', '2020', 65.00, '', 1, '2020-11-30 02:21:05', 0, NULL, 0, NULL, 1),
(2628, 2132, '3', 'S.v university in tirupathi ', '', 'BBA', '2018', 74.00, '', 1, '2020-11-30 02:22:07', 0, NULL, 0, NULL, 1),
(2629, 2155, '3', 'Anna university', '', 'B.E ECE', '2020', 64.00, '', 1, '2020-11-30 03:51:28', 0, NULL, 0, NULL, 1),
(2630, 2098, '4', 'Anna University', '', 'M.E', '2020', 8.40, '', 1, '2020-11-30 04:01:46', 0, NULL, 0, NULL, 1),
(2631, 2098, '3', 'Anna University', '', 'B.tech', '2017', 7.90, '', 1, '2020-11-30 04:03:59', 0, NULL, 0, NULL, 1),
(2632, 2158, '3', 'Quide Milleth college For men', '', 'BCA', '2017', 71.30, '', 1, '2020-11-30 04:05:57', 0, NULL, 0, NULL, 1),
(2633, 2157, '3', 'Anna University', '', 'B.E', '2019', 71.00, '', 1, '2020-11-30 04:08:13', 0, NULL, 0, NULL, 1),
(2634, 2157, '2', 'State board', '', '', '2015', 89.40, '', 1, '2020-11-30 04:08:51', 0, NULL, 0, NULL, 1),
(2635, 2157, '1', 'State board', '', '', '2013', 91.40, '', 1, '2020-11-30 04:09:54', 0, NULL, 0, NULL, 1),
(2636, 2159, '4', 'Madras university ', '', 'MCA', '2020', 70.00, '', 1, '2020-11-30 04:20:53', 0, NULL, 0, NULL, 1),
(2637, 2160, '3', 'Karpagam institute of technology', '', 'B.E. ece', '2016', 65.00, '', 1, '2020-11-30 04:22:52', 0, NULL, 0, NULL, 1),
(2638, 2160, '2', 'Board', '', '', '2012', 87.00, '', 1, '2020-11-30 04:26:07', 0, NULL, 0, NULL, 1),
(2639, 2160, '1', 'Board', '', '', '2010', 97.00, '', 1, '2020-11-30 04:26:38', 0, NULL, 0, NULL, 1),
(2640, 2161, '3', 'anna university', '', 'b.e ', '2013', 70.00, '', 1, '2020-11-30 04:55:04', 0, NULL, 0, NULL, 1),
(2641, 2051, '3', 'VTU ', '', 'BE', '2010', 55.00, '', 1, '2020-11-30 05:07:57', 0, NULL, 0, NULL, 1),
(2642, 2163, '3', 'Madras University', '', 'BCA', '2017', 60.00, '', 1, '2020-11-30 05:38:08', 0, NULL, 0, NULL, 1),
(2643, 2164, '3', 'Anna university ', '', 'BE cSE', '2017', 70.00, '', 1, '2020-11-30 05:55:44', 0, NULL, 0, NULL, 1),
(2644, 2164, '1', 'Stateboard', '', '', '2011', 80.00, '', 1, '2020-11-30 05:56:20', 0, NULL, 0, NULL, 1),
(2645, 2164, '2', 'Stateboard', '', '', '2013', 75.00, '', 1, '2020-11-30 05:56:44', 0, NULL, 0, NULL, 1),
(2646, 2166, '2', 'Kuvempu university', '', '', '2016', 54.07, '', 1, '2020-11-30 07:59:42', 0, NULL, 0, NULL, 1),
(2647, 2167, '3', 'Anna university ', '', 'B. E', '2018', 78.00, '', 1, '2020-11-30 10:52:27', 0, NULL, 0, NULL, 1),
(2648, 2167, '2', 'State board ', '', '', '2014', 85.00, '', 1, '2020-11-30 10:52:59', 0, NULL, 0, NULL, 1),
(2649, 2167, '1', 'State board ', '', '', '2012', 87.00, '', 1, '2020-11-30 10:53:22', 0, NULL, 0, NULL, 1),
(2650, 2168, '3', 'Veltech ', '', 'BE', '2019', 65.00, '', 1, '2020-12-01 05:43:41', 0, NULL, 0, NULL, 1),
(2651, 2168, '2', 'Velammal', '', '', '2014', 67.00, '', 1, '2020-12-01 05:44:09', 0, NULL, 0, NULL, 1),
(2652, 2168, '1', 'Velammal', '', '', '2012', 77.00, '', 1, '2020-12-01 05:44:48', 0, NULL, 0, NULL, 1),
(2653, 2098, '2', 'Matric', '', '', '2013', 74.00, '', 1, '2020-12-01 10:35:42', 0, NULL, 0, NULL, 1),
(2654, 2098, '1', 'Matric', '', '', '2011', 84.00, '', 1, '2020-12-01 10:36:00', 0, NULL, 0, NULL, 1),
(2655, 2169, '3', 'Periyar University salem', '', 'B.A history ', '2008', 60.00, '', 1, '2020-12-01 10:45:57', 0, NULL, 0, NULL, 1),
(2656, 2172, '3', 'Anna university', '', 'B. E', '2020', 71.00, '', 1, '2020-12-01 10:57:11', 0, NULL, 0, NULL, 1),
(2657, 2127, '4', 'Madrash University', '', 'MA', '2016', 5.29, '', 1, '2020-12-01 11:54:22', 0, NULL, 0, NULL, 1),
(2658, 2127, '4', 'Madrash University', '', 'MA', '2016', 5.29, '', 1, '2020-12-01 11:54:23', 0, NULL, 0, NULL, 1),
(2659, 2176, '3', 'Anna University', '', 'B.E CSE', '2019', 70.00, '', 1, '2020-12-01 12:07:56', 0, NULL, 0, NULL, 1),
(2660, 2180, '3', 'University of Madras', '', 'BCA', '2020', 68.00, '', 1, '2020-12-01 12:30:48', 1, '2020-12-01 12:33:52', 0, NULL, 1),
(2661, 2182, '3', 'Madras', '', 'Bsc(CS)', '2020', 80.00, '', 1, '2020-12-01 12:36:19', 1, '2020-12-01 12:36:51', 0, NULL, 0),
(2662, 2182, '1', 'Sethu bhaskara matriculation higher secondary school ', '', '', '2015', 85.00, '', 1, '2020-12-01 12:37:36', 1, '2020-12-01 12:39:56', 0, NULL, 1),
(2663, 2182, '2', 'Sethu bhaskara matriculation higher secondary school ', '', '', '2017', 73.00, '', 1, '2020-12-01 12:38:11', 1, '2020-12-01 12:39:26', 0, NULL, 1),
(2664, 2182, '3', 'Veltech Ranga Sanku Arts college', '', 'Bsc(CS)', '2020', 79.00, '', 1, '2020-12-01 12:39:02', 1, '2020-12-01 12:40:20', 0, NULL, 1),
(2665, 2181, '4', 'Madurai Kamaraj University ', '', 'MBA', '2018', 68.00, '', 1, '2020-12-01 12:39:20', 0, NULL, 0, NULL, 1),
(2666, 2181, '3', 'St. Mary\'s clg ', '', 'BBA', '2016', 64.00, '', 1, '2020-12-01 12:40:17', 0, NULL, 0, NULL, 1),
(2667, 2181, '2', 'Subbiah vidhyalam girls school ', '', '', '2013', 66.00, '', 1, '2020-12-01 12:41:12', 0, NULL, 0, NULL, 1),
(2668, 2181, '1', 'Subbiah vidhyalam girls school ', '', '', '2011', 69.00, '', 1, '2020-12-01 12:42:08', 0, NULL, 0, NULL, 1),
(2669, 2149, '1', 'government higher secondary school', '', '', '2013', 90.00, '', 1, '2020-12-01 12:45:10', 0, NULL, 0, NULL, 1),
(2670, 2149, '5', 'central polytechnic college', '', 'dme', '2016', 75.00, '', 1, '2020-12-01 12:45:52', 0, NULL, 0, NULL, 1),
(2671, 2149, '3', 'sri lakshmi ammal engineering college', '', 'be', '2019', 70.00, '', 1, '2020-12-01 12:49:40', 0, NULL, 0, NULL, 1),
(2672, 2183, '3', 'Madras university ', '', 'B.sc', '2018', 60.00, '', 1, '2020-12-01 01:07:21', 0, NULL, 0, NULL, 1),
(2673, 2185, '1', 'state board', '', '', '2011', 90.00, '', 1, '2020-12-01 01:24:24', 0, NULL, 0, NULL, 1),
(2674, 2185, '2', 'state board', '', '', '2013', 71.00, '', 1, '2020-12-01 01:24:54', 0, NULL, 0, NULL, 1),
(2675, 2185, '3', 'bharathidaqsan university', '', 'bca', '2017', 67.00, '', 1, '2020-12-01 01:25:47', 0, NULL, 0, NULL, 1),
(2676, 2185, '4', 'crescent university', '', 'mca', '2019', 59.00, '', 1, '2020-12-01 01:26:24', 0, NULL, 0, NULL, 1),
(2677, 2186, '3', 'University of Madras', '', 'B.com ', '2015', 52.00, '', 1, '2020-12-01 02:05:09', 0, NULL, 0, NULL, 1),
(2678, 2188, '3', 'Bharathidasan university', '', 'B.sc computer science', '2019', 60.00, '', 1, '2020-12-01 03:39:38', 0, NULL, 0, NULL, 1),
(2679, 2190, '3', 'Madras University', '', 'B.com', '2020', 62.00, '', 1, '2020-12-01 03:42:45', 0, NULL, 0, NULL, 1),
(2680, 2191, '4', 'Karnataka', '', 'Bcom', '2001', 59.00, '', 1, '2020-12-01 03:52:06', 0, NULL, 0, NULL, 1),
(2681, 2153, '2', 'state board', '', 'b.com', '2014', 45.00, '', 1, '2020-12-01 03:58:04', 0, NULL, 0, NULL, 1),
(2682, 2194, '4', 'Bharathidasan University ', '', 'MSW -HR', '2019', 7.92, '', 1, '2020-12-01 04:32:29', 0, NULL, 0, NULL, 1),
(2683, 2193, '4', 'Bharathidasan University', '', 'Msc', '2020', 73.12, '', 1, '2020-12-01 04:34:00', 0, NULL, 0, NULL, 1),
(2684, 2194, '4', 'Bharathidasan University ', '', 'MSW-HR', '2019', 7.82, '', 1, '2020-12-01 04:37:58', 0, NULL, 0, NULL, 1),
(2685, 2178, '3', 'madras', '', 'bsc.maths', '2019', 63.00, '', 1, '2020-12-01 06:12:43', 1, '2020-12-01 06:13:56', 0, NULL, 0),
(2686, 2178, '3', 'madras university', '', 'bsc.maths', '2019', 63.00, '', 1, '2020-12-01 06:14:49', 0, NULL, 0, NULL, 1),
(2687, 2189, '4', 'Measi Institute Of information Technology', '', 'MCA', '2020', 64.80, '', 1, '2020-12-01 06:35:36', 0, NULL, 0, NULL, 1),
(2688, 2195, '3', 'Anna University', '', 'Bachelor of engineering', '2018', 68.90, '', 1, '2020-12-01 08:42:02', 0, NULL, 0, NULL, 1),
(2689, 2196, '4', 'Srm', '', 'bsc hotel management', '2017', 82.00, '', 1, '2020-12-01 09:11:00', 1, '2020-12-01 09:11:47', 0, NULL, 0),
(2690, 2196, '3', 'Srm', '', 'bsc', '2017', 82.00, '', 1, '2020-12-01 09:11:33', 0, NULL, 0, NULL, 1),
(2691, 2197, '3', 'Madras University', '', 'B.com', '2012', 60.00, '', 1, '2020-12-01 10:36:38', 0, NULL, 0, NULL, 1),
(2692, 2198, '3', 'Madras university', '', '', '2019', 50.00, '', 1, '2020-12-02 08:35:34', 0, NULL, 0, NULL, 1),
(2693, 2198, '2', 'State board', '', '', '2016', 75.00, '', 1, '2020-12-02 08:35:58', 0, NULL, 0, NULL, 1),
(2694, 2198, '1', 'State board', '', '', '2013', 70.00, '', 1, '2020-12-02 08:36:34', 0, NULL, 0, NULL, 1),
(2695, 2199, '5', 'jaya collage', '', 'eee', '2011', 62.00, '', 1, '2020-12-02 10:52:43', 0, NULL, 0, NULL, 1),
(2696, 2199, '1', 'dote', '', '', '2009', 59.00, '', 1, '2020-12-02 10:53:55', 0, NULL, 0, NULL, 1),
(2697, 2205, '4', 'anna university', '', 'msc', '2020', 64.00, '', 1, '2020-12-02 11:14:59', 1, '2020-12-02 11:17:00', 0, NULL, 0),
(2698, 2205, '2', 'stateboard', '', '', '2015', 67.00, '', 1, '2020-12-02 11:15:28', 0, NULL, 0, NULL, 1),
(2699, 2205, '1', 'stateboard', '', '', '2013', 87.00, '', 1, '2020-12-02 11:16:33', 0, NULL, 0, NULL, 1),
(2700, 2205, '4', 'anna university', '', 'msc', '2020', 64.00, '', 1, '2020-12-02 11:17:29', 0, NULL, 0, NULL, 1),
(2701, 2206, '3', 'Madras University', '', 'B.C.A', '2019', 70.00, '', 1, '2020-12-02 11:24:33', 0, NULL, 0, NULL, 1),
(2702, 2206, '5', 'DOTE', '', 'Diploma in computer science', '2015', 80.00, '', 1, '2020-12-02 11:25:45', 0, NULL, 0, NULL, 1),
(2703, 2079, '4', 'Madras University ', '', 'B. Com.,', '2005', 70.00, '', 1, '2020-12-02 11:45:11', 0, NULL, 0, NULL, 1),
(2704, 2209, '3', 'Anna University', '', 'B.tech', '2016', 65.00, '', 1, '2020-12-02 11:47:19', 0, NULL, 0, NULL, 1),
(2705, 2209, '1', 'State board', '', '', '2012', 57.00, '', 1, '2020-12-02 11:48:08', 0, NULL, 0, NULL, 1),
(2706, 2209, '2', 'State board', '', '', '2010', 67.00, '', 1, '2020-12-02 11:48:31', 0, NULL, 0, NULL, 1),
(2707, 2208, '3', 'Madras University', '', 'B.com (general', '2020', 68.00, '', 1, '2020-12-02 11:50:49', 0, NULL, 0, NULL, 1),
(2708, 2211, '3', 'Anna University', '', 'B.E ', '2007', 76.00, '', 1, '2020-12-02 12:05:59', 0, NULL, 0, NULL, 1),
(2709, 2211, '2', 'State board', '', '', '2003', 77.00, '', 1, '2020-12-02 12:06:30', 0, NULL, 0, NULL, 1),
(2710, 2211, '1', 'State board', '', '', '2001', 91.00, '', 1, '2020-12-02 12:07:00', 0, NULL, 0, NULL, 1),
(2711, 2214, '4', 'VIT University ', '', 'M.Tech', '2020', 68.00, '', 1, '2020-12-02 12:32:06', 0, NULL, 0, NULL, 1),
(2712, 2147, '4', 'fakir mohan university', '', 'bsc', '2016', 62.00, '', 1, '2020-12-02 12:42:42', 0, NULL, 0, NULL, 1),
(2713, 2215, '3', 'vemana institute of technology', '', 'be', '2020', 54.00, '', 1, '2020-12-02 01:08:50', 0, NULL, 0, NULL, 1),
(2714, 2215, '2', 'vijaya pu college', '', '', '2013', 53.00, '', 1, '2020-12-02 01:10:06', 0, NULL, 0, NULL, 1),
(2715, 2216, '2', 'Bse odisha', '', '', '2011', 67.00, '', 1, '2020-12-02 02:00:37', 0, NULL, 0, NULL, 1),
(2716, 2216, '3', 'Ccs university meerut', '', 'B.com', '2016', 70.00, '', 1, '2020-12-02 02:01:31', 0, NULL, 0, NULL, 1),
(2717, 2218, '4', 'Annamalai University', '', 'M.sc information technology', '2020', 6.80, '', 1, '2020-12-02 02:49:16', 0, NULL, 0, NULL, 1),
(2718, 2217, '3', 'ST JOSEPH COLLEGE OF ENGINEERING', '', 'BE(ECE)', '2020', 76.00, '', 1, '2020-12-02 03:31:12', 0, NULL, 0, NULL, 1),
(2719, 2219, '3', 'Anna University ', '', 'B.E', '2020', 72.00, '', 1, '2020-12-02 04:53:42', 0, NULL, 0, NULL, 1),
(2720, 2221, '3', 'Kalasalingam Academy of Research and Education', '', 'B.Tech Information Technology', '2020', 63.65, '', 1, '2020-12-02 05:25:44', 0, NULL, 0, NULL, 1),
(2721, 2221, '2', 'PSY Matric Hr Sec', '', '', '2016', 73.58, '', 1, '2020-12-02 05:26:09', 1, '2020-12-02 05:26:48', 0, NULL, 0),
(2722, 2221, '1', 'PSY Matric Hr Sec School', '', '', '2014', 83.80, '', 1, '2020-12-02 05:26:31', 1, '2020-12-02 05:27:30', 0, NULL, 1),
(2723, 2221, '2', 'PSY Matric Hr Sec School', '', '', '2016', 73.58, '', 1, '2020-12-02 05:27:15', 0, NULL, 0, NULL, 1),
(2724, 2224, '3', 'Mepco schlenk Engineering college', '', 'B-Tech(IT)', '2018', 67.90, '', 1, '2020-12-02 06:45:01', 0, NULL, 0, NULL, 1),
(2725, 2223, '2', 'Muvendar Matriculation higher secondary school', '', '', '2014', 57.00, '', 1, '2020-12-02 06:45:44', 0, NULL, 0, NULL, 1),
(2726, 2225, '3', 'University', '', 'B.E CSE', '2020', 8.50, '', 1, '2020-12-02 08:36:08', 0, NULL, 0, NULL, 1),
(2727, 2226, '4', 'Measi Institute of information technology', '', 'mCA', '2020', 65.00, '', 1, '2020-12-02 09:48:58', 0, NULL, 0, NULL, 1),
(2728, 2228, '3', 'Anna university chennai', '', 'BE mECHANICAL ENGINEERING ', '2015', 75.00, '', 1, '2020-12-03 10:55:03', 0, NULL, 0, NULL, 1),
(2729, 2171, '3', 'Madras University', '', 'BBA', '2020', 40.00, '', 1, '2020-12-03 11:53:39', 0, NULL, 0, NULL, 1),
(2730, 2229, '4', 'university', '', 'mba', '2020', 76.00, '', 1, '2020-12-03 12:16:43', 0, NULL, 0, NULL, 1),
(2731, 2204, '3', 'dg vaishnav', '', 'bca', '2016', 52.00, '', 1, '2020-12-03 01:44:38', 0, NULL, 0, NULL, 1),
(2732, 2232, '3', 'anna university', '', 'b.e', '2020', 68.00, '', 1, '2020-12-03 02:17:47', 0, NULL, 0, NULL, 1),
(2733, 2233, '3', 'Anna University', '', 'B.E', '2015', 60.00, '', 1, '2020-12-03 02:51:08', 0, NULL, 0, NULL, 1),
(2734, 2234, '3', 'Rajasthan technical university ', '', 'B.TECH', '2020', 65.00, '', 1, '2020-12-03 02:53:50', 0, NULL, 0, NULL, 1),
(2735, 2240, '3', 'University', '', 'B.sc', '2020', 81.00, '', 1, '2020-12-03 03:09:16', 0, NULL, 0, NULL, 1),
(2736, 2238, '1', 'state board', '', '', '2010', 82.00, '', 1, '2020-12-03 03:09:50', 0, NULL, 0, NULL, 1),
(2737, 2238, '2', 'state  board', '', '', '2012', 57.00, '', 1, '2020-12-03 03:10:32', 0, NULL, 0, NULL, 1),
(2738, 2238, '3', 'thiruvalluvar university', '', 'MCA', '2015', 54.00, '', 1, '2020-12-03 03:11:30', 0, NULL, 0, NULL, 1),
(2739, 2238, '4', 'hindustan university', '', 'MCA', '2019', 72.50, '', 1, '2020-12-03 03:12:31', 0, NULL, 0, NULL, 1),
(2740, 2239, '5', 'Malleswaram board', '', '', '2017', 53.00, '', 1, '2020-12-03 03:16:31', 1, '2020-12-03 03:17:07', 0, NULL, 0),
(2741, 2239, '1', 'Malleshwaram board', '', '', '2016', 53.00, '', 1, '2020-12-03 03:17:23', 0, NULL, 0, NULL, 1),
(2742, 2237, '3', 'RAJALAKSHMI ENGINEERING COLLEGE ', '', 'B.E/ECE ', '2020', 7.15, '', 1, '2020-12-03 05:26:14', 0, NULL, 0, NULL, 1),
(2743, 2236, '3', 'anna university', '', 'be ece', '2018', 6.60, '', 1, '2020-12-03 07:52:37', 0, NULL, 0, NULL, 1),
(2744, 2249, '4', 'V n karazin Business School', '', 'M b a', '2020', 70.00, '', 1, '2020-12-04 10:57:09', 0, NULL, 0, NULL, 1),
(2745, 2250, '3', 'cusat', '', 'btech', '2017', 52.00, '', 1, '2020-12-04 10:59:37', 1, '2020-12-04 11:09:04', 0, NULL, 1),
(2746, 2250, '1', 'kerela', '', '', '2011', 73.00, '', 1, '2020-12-04 11:01:25', 0, NULL, 0, NULL, 1),
(2747, 2250, '2', 'vhse', '', '', '2013', 73.00, '', 1, '2020-12-04 11:02:08', 0, NULL, 0, NULL, 1),
(2748, 2245, '3', 'Kamarajar university college', '', 'Bsc IT', '2014', 72.00, '', 1, '2020-12-04 11:17:35', 0, NULL, 0, NULL, 1),
(2749, 2251, '1', 'state board', '', '', '2002', 60.40, '', 1, '2020-12-04 11:34:46', 0, NULL, 0, NULL, 1),
(2750, 2251, '2', 'state board', '', '', '2008', 79.80, '', 1, '2020-12-04 11:35:08', 0, NULL, 0, NULL, 1),
(2751, 2255, '3', 'Anna university ', '', 'B. Tech ', '2014', 63.00, '', 1, '2020-12-04 11:35:19', 0, NULL, 0, NULL, 1),
(2752, 2251, '3', 'anna university', '', 'be-cse', '2012', 59.80, '', 1, '2020-12-04 11:35:44', 0, NULL, 0, NULL, 1),
(2753, 2256, '3', 'Madras university', '', 'B.com.cA', '2018', 69.00, '', 1, '2020-12-04 11:52:23', 0, NULL, 0, NULL, 1),
(2754, 2253, '1', 'mount carmel higher secondary school', '', '', '2010', 72.00, '', 1, '2020-12-04 12:08:50', 0, NULL, 0, NULL, 1),
(2755, 2253, '2', 'marthoma higher secondary school', '', '', '2012', 68.00, '', 1, '2020-12-04 12:09:54', 0, NULL, 0, NULL, 1),
(2756, 2253, '3', 'vels university', '', 'bcom with computer application', '2015', 72.00, '', 1, '2020-12-04 12:11:06', 0, NULL, 0, NULL, 1),
(2757, 2257, '3', 'University', '', 'BE computer science', '2020', 61.00, '', 1, '2020-12-04 12:15:33', 0, NULL, 0, NULL, 1),
(2758, 2258, '5', 'Meenaskhi krishnan Polytechnic ', '', 'Dme', '2008', 60.00, '', 1, '2020-12-04 12:20:57', 0, NULL, 0, NULL, 1),
(2759, 2259, '3', 'University of Madras', '', 'BSC computer science', '2019', 64.50, '', 1, '2020-12-04 12:33:46', 0, NULL, 0, NULL, 1),
(2760, 2260, '4', 'Lincoln university college', '', 'MBA', '2019', 95.00, '', 1, '2020-12-04 12:39:39', 0, NULL, 0, NULL, 1),
(2761, 2264, '3', 'p.s.r.rengasamy college of engineering for women', '', 'b.e cse', '2020', 7.68, '', 1, '2020-12-04 03:06:18', 0, NULL, 0, NULL, 1),
(2762, 2265, '2', 'CBSE', '', '', '2020', 68.33, '', 1, '2020-12-04 03:06:45', 0, NULL, 0, NULL, 1),
(2763, 2264, '2', 'state board', '', '', '2016', 7.58, '', 1, '2020-12-04 03:07:23', 0, NULL, 0, NULL, 1),
(2764, 2264, '1', 'state board', '', '', '2014', 93.40, '', 1, '2020-12-04 03:07:55', 0, NULL, 0, NULL, 1),
(2765, 2268, '3', 'Anna University', '', 'B.E Computer science', '2014', 60.20, '', 1, '2020-12-04 03:53:32', 0, NULL, 0, NULL, 1),
(2766, 2261, '3', 'Dehli ', '', 'BHM', '2017', 70.00, '', 1, '2020-12-04 04:32:19', 0, NULL, 0, NULL, 1),
(2767, 2271, '3', 'Dr. Mgr educational and research university ', '', 'B. Com', '2021', 67.00, '', 1, '2020-12-04 05:57:08', 0, NULL, 0, NULL, 1),
(2768, 2270, '3', 'Anna university trichy', '', 'BTech', '2020', 73.00, '', 1, '2020-12-04 06:05:52', 0, NULL, 0, NULL, 1),
(2769, 2272, '3', 's.a engineering college', '', 'b.e computer science', '2020', 71.00, '', 1, '2020-12-04 06:16:23', 0, NULL, 0, NULL, 1),
(2770, 2272, '1', 'kalashetra matric higher secondary school', '', '', '2014', 87.00, '', 1, '2020-12-04 06:17:18', 0, NULL, 0, NULL, 1),
(2771, 2272, '2', 'kalashetra matric higher secondary school', '', '', '2016', 70.00, '', 1, '2020-12-04 06:18:08', 0, NULL, 0, NULL, 1),
(2772, 2273, '3', 'Anna university', '', 'B. E', '2020', 70.00, '', 1, '2020-12-04 06:55:44', 0, NULL, 0, NULL, 1),
(2773, 2274, '3', 'Pondicherry university ', '', 'B. Tech(ECE)', '2019', 68.90, '', 1, '2020-12-04 07:00:20', 0, NULL, 0, NULL, 1),
(2774, 2274, '2', ' State Board', '', '', '2015', 60.00, '', 1, '2020-12-04 07:01:28', 0, NULL, 0, NULL, 1),
(2775, 2274, '1', 'State Board', '', '', '2013', 74.00, '', 1, '2020-12-04 07:02:03', 0, NULL, 0, NULL, 1),
(2776, 2276, '3', 'Manonmaniam Sundaranar University', '', 'BBA', '2018', 80.00, '', 1, '2020-12-04 08:11:24', 0, NULL, 0, NULL, 1),
(2777, 2278, '1', 'Mount christian', '', '', '2008', 60.00, '', 1, '2020-12-05 11:18:07', 1, '2020-12-05 11:19:44', 0, NULL, 0),
(2778, 2278, '1', 'Mount christian', '', '', '2008', 60.00, '', 1, '2020-12-05 11:20:59', 0, NULL, 0, NULL, 1),
(2779, 2278, '2', 'Mount christian', '', '', '2010', 57.00, '', 1, '2020-12-05 11:21:21', 0, NULL, 0, NULL, 1),
(2780, 2279, '3', 'Anna University', '', 'BE.EEE', '2020', 65.00, '', 1, '2020-12-05 11:32:24', 0, NULL, 0, NULL, 1),
(2781, 2282, '3', 'Periyar unversity', '', 'BS.c computer Science', '2019', 75.00, '', 1, '2020-12-05 11:45:49', 0, NULL, 0, NULL, 1),
(2782, 2283, '1', 'Shree ram higher secondary s', '', '', '2011', 81.00, '', 1, '2020-12-05 11:50:36', 0, NULL, 0, NULL, 1),
(2783, 2283, '2', 'HSEB', '', '', '2011', 81.00, '', 1, '2020-12-05 12:07:24', 0, NULL, 0, NULL, 1),
(2784, 2285, '1', 'State board', '', '', '2010', 88.00, '', 1, '2020-12-05 12:24:16', 0, NULL, 0, NULL, 1),
(2785, 2285, '5', 'TN DOTE', '', 'Mechanical', '2013', 89.00, '', 1, '2020-12-05 12:25:38', 0, NULL, 0, NULL, 1),
(2786, 2285, '3', 'SRM university', '', 'B tech Mechanical engineering', '2020', 70.00, '', 1, '2020-12-05 12:26:08', 0, NULL, 0, NULL, 1),
(2787, 2281, '3', 'madres univercity', '', 'b.sc chemistry', '2017', 50.00, '', 1, '2020-12-05 12:49:49', 0, NULL, 0, NULL, 1),
(2788, 2287, '3', 'Jaya college of arts & science', '', 'BCA', '2013', 80.00, '', 1, '2020-12-05 01:08:17', 0, NULL, 0, NULL, 1),
(2789, 2284, '3', ' thiruvallur university', '', 'b.sc.chemistry', '2018', 78.00, '', 1, '2020-12-05 01:15:56', 0, NULL, 0, NULL, 1),
(2790, 2288, '4', 'Deemed university ', '', 'MBA (finance and operations) ', '2018', 82.00, '', 1, '2020-12-05 01:49:39', 0, NULL, 0, NULL, 1),
(2791, 2289, '3', 'Madras university', '', 'B.Com (Accounting & Finance)', '2019', 60.00, '', 1, '2020-12-05 02:53:26', 0, NULL, 0, NULL, 1),
(2792, 2290, '3', 'Asn women\'s Engineering College', '', 'Btech', '2019', 77.00, '', 1, '2020-12-05 03:45:50', 0, NULL, 0, NULL, 1),
(2793, 2291, '4', 'madras university', '', 'mba', '2022', 70.00, '', 1, '2020-12-05 04:44:07', 0, NULL, 0, NULL, 1),
(2794, 2291, '5', 'veltech polytechnic college', '', 'it', '2011', 79.50, '', 1, '2020-12-05 04:45:01', 0, NULL, 0, NULL, 1),
(2795, 2291, '2', 'corporation higher secondary', '', '', '2008', 60.00, '', 1, '2020-12-05 04:45:28', 0, NULL, 0, NULL, 1),
(2796, 2291, '1', 'angel matriculation school', '', '', '2006', 58.00, '', 1, '2020-12-05 04:45:47', 0, NULL, 0, NULL, 1),
(2797, 2292, '3', 'Anna university', '', 'BE(CSE)', '2010', 71.00, '', 1, '2020-12-05 05:32:30', 0, NULL, 0, NULL, 1),
(2798, 2292, '2', 'State board', '', '', '2006', 74.00, '', 1, '2020-12-05 05:33:40', 0, NULL, 0, NULL, 1),
(2799, 2292, '1', 'State board', '', '', '2004', 79.00, '', 1, '2020-12-05 05:34:10', 0, NULL, 0, NULL, 1),
(2800, 2296, '3', 'Anna university', '', 'B.E', '2020', 65.00, '', 1, '2020-12-05 07:28:43', 0, NULL, 0, NULL, 1),
(2801, 2278, '3', 'Vels university', '', 'BCA', '2018', 77.00, '', 1, '2020-12-06 08:23:53', 0, NULL, 0, NULL, 1),
(2802, 2278, '4', 'Bharath university', '', 'MCA', '2020', 72.00, '', 1, '2020-12-06 08:25:06', 0, NULL, 0, NULL, 1),
(2803, 2299, '1', 'mount christian', '', '', '2008', 60.00, '', 1, '2020-12-06 08:50:57', 0, NULL, 0, NULL, 1),
(2804, 2299, '2', 'mount christian', '', '', '2010', 57.00, '', 1, '2020-12-06 08:51:16', 0, NULL, 0, NULL, 1),
(2805, 2299, '3', 'vels university ', '', 'bca', '2018', 77.00, '', 1, '2020-12-06 08:52:02', 0, NULL, 0, NULL, 1),
(2806, 2299, '4', 'bharath university', '', 'mca', '2020', 72.00, '', 1, '2020-12-06 08:52:32', 0, NULL, 0, NULL, 1),
(2807, 2301, '2', 'Pleasant english school ', '', '', '2017', 58.00, '', 1, '2020-12-06 11:58:08', 0, NULL, 0, NULL, 1),
(2808, 2303, '4', 'Anna university', '', 'MCA', '2020', 84.00, '', 1, '2020-12-06 01:22:51', 0, NULL, 0, NULL, 1),
(2809, 2303, '3', 'Madras university', '', 'B.sc computer science', '2018', 66.00, '', 1, '2020-12-06 01:23:40', 0, NULL, 0, NULL, 1),
(2810, 2304, '1', 'state board', '', '', '2009', 70.00, '', 1, '2020-12-06 06:14:19', 0, NULL, 0, NULL, 1),
(2811, 2304, '5', 'DOTE', '', '', '2013', 82.00, '', 1, '2020-12-06 06:14:52', 0, NULL, 0, NULL, 1),
(2812, 2304, '3', 'Anna University', '', '', '2017', 75.00, '', 1, '2020-12-06 06:16:52', 0, NULL, 0, NULL, 1),
(2813, 2305, '4', 'Miet', '', 'Bca', '2017', 85.00, '', 1, '2020-12-06 06:47:18', 0, NULL, 0, NULL, 1),
(2814, 2248, '1', 'gill adarsh', '', '', '2011', 74.00, '', 1, '2020-12-06 07:24:53', 0, NULL, 0, NULL, 1),
(2815, 2248, '2', 'gill adarsh', '', '', '2013', 75.00, '', 1, '2020-12-06 07:25:20', 0, NULL, 0, NULL, 1),
(2816, 2308, '3', 'University', '', 'B.E. computer science and engineering', '2020', 7.20, '', 1, '2020-12-06 09:33:29', 0, NULL, 0, NULL, 1),
(2817, 2309, '4', 'Anna university', '', 'MCA', '2014', 62.00, '', 1, '2020-12-07 10:40:29', 0, NULL, 0, NULL, 1),
(2818, 2312, '2', 'Anna University', '', '', '2014', 63.00, '', 1, '2020-12-07 11:34:50', 0, NULL, 0, NULL, 1),
(2819, 2314, '3', 'Bharathidasan university', '', 'BA  English', '2017', 55.00, '', 1, '2020-12-07 11:56:33', 0, NULL, 0, NULL, 1),
(2820, 2316, '3', 'Madras university', '', 'BCA', '2020', 66.90, '', 1, '2020-12-07 12:01:42', 0, NULL, 0, NULL, 1),
(2821, 2313, '3', 'Bharathidasan university', '', 'BA', '2016', 63.00, '', 1, '2020-12-07 12:16:51', 0, NULL, 0, NULL, 1),
(2822, 2295, '4', 'anna university ', '', 'mba', '2020', 70.00, '', 1, '2020-12-07 12:21:16', 0, NULL, 0, NULL, 1),
(2823, 2311, '3', 'Anna University ', '', 'B.E', '2020', 72.80, '', 1, '2020-12-07 12:21:32', 1, '2020-12-07 12:23:46', 0, NULL, 0),
(2824, 2310, '3', 'Anna University Chennai', '', 'BE.Computer science and engineering', '2020', 69.00, '', 1, '2020-12-07 12:22:13', 1, '2020-12-07 12:23:27', 0, NULL, 0),
(2825, 2311, '1', 'State Board ', '', '', '2014', 79.00, '', 1, '2020-12-07 12:22:57', 1, '2020-12-07 12:24:12', 0, NULL, 1),
(2826, 2310, '1', 'State Board', '', '', '2014', 72.00, '', 1, '2020-12-07 12:24:15', 0, NULL, 0, NULL, 1),
(2827, 2311, '2', 'State Board ', '', '', '2016', 73.50, '', 1, '2020-12-07 12:24:33', 0, NULL, 0, NULL, 1),
(2828, 2310, '2', 'State Board', '', '', '2016', 58.00, '', 1, '2020-12-07 12:24:53', 0, NULL, 0, NULL, 1),
(2829, 2311, '3', 'Anna University ', '', 'B.E', '2020', 72.80, '', 1, '2020-12-07 12:25:02', 0, NULL, 0, NULL, 1),
(2830, 2310, '3', 'Anna University', '', 'BE. Computer science of engineering', '2020', 69.00, '', 1, '2020-12-07 12:25:47', 0, NULL, 0, NULL, 1),
(2831, 2315, '4', 'Bharadhithasan University ', '', 'M.A', '2018', 88.00, '', 1, '2020-12-07 12:51:08', 0, NULL, 0, NULL, 1),
(2832, 2302, '4', 'Anna university ', '', 'Mca', '2020', 81.00, '', 1, '2020-12-07 01:19:45', 0, NULL, 0, NULL, 1),
(2833, 2318, '4', 'Bangalore university ', '', 'M com ', '2015', 62.00, '', 1, '2020-12-07 01:23:01', 0, NULL, 0, NULL, 1),
(2834, 2318, '3', 'Bangalore university ', '', 'B com ', '2013', 70.00, '', 1, '2020-12-07 01:23:30', 0, NULL, 0, NULL, 1),
(2835, 2318, '2', 'Bangalore university ', '', '', '2010', 74.00, '', 1, '2020-12-07 01:24:01', 0, NULL, 0, NULL, 1),
(2836, 2287, '1', 'ICF higher secondary school', '', '', '2008', 83.00, '', 1, '2020-12-07 02:53:29', 0, NULL, 0, NULL, 1),
(2837, 2321, '3', 'Madras University ', '', 'B.com', '2020', 57.00, '', 1, '2020-12-07 02:53:40', 0, NULL, 0, NULL, 1),
(2838, 2287, '2', 'ICF higher secondary school', '', '', '2010', 73.00, '', 1, '2020-12-07 02:54:00', 0, NULL, 0, NULL, 1),
(2839, 2322, '3', 'Anna University', '', 'BE', '2019', 62.00, '', 1, '2020-12-07 02:56:05', 0, NULL, 0, NULL, 1),
(2840, 2322, '2', 'Dhava amutham matric hr sec school', '', '', '2015', 83.00, '', 1, '2020-12-07 02:57:24', 0, NULL, 0, NULL, 1),
(2841, 2322, '1', 'Dhava amutham matric hr sec school', '', '', '2013', 93.00, '', 1, '2020-12-07 02:57:55', 0, NULL, 0, NULL, 1),
(2842, 2323, '3', 'Madras university', '', 'BCA', '2016', 64.00, '', 1, '2020-12-07 03:02:49', 0, NULL, 0, NULL, 1),
(2843, 2323, '5', 'Dote', '', 'DIT', '2012', 84.00, '', 1, '2020-12-07 03:03:28', 0, NULL, 0, NULL, 1),
(2844, 2324, '5', 'Sri balaji itI', '', 'Bench fitter ', '2010', 75.00, '', 1, '2020-12-07 03:50:31', 1, '2020-12-07 04:13:28', 0, NULL, 1),
(2845, 2325, '3', 'SCSVMV UNIVERSITY', '', 'B.E', '2018', 7.78, '', 1, '2020-12-07 04:54:53', 0, NULL, 0, NULL, 1),
(2846, 2327, '3', 'St.peters University', '', 'BE COMPUTER SCIENCE', '2015', 65.00, '', 1, '2020-12-07 05:17:05', 0, NULL, 0, NULL, 1),
(2847, 2329, '3', 'Anna University', '', 'B.E', '2014', 62.80, '', 1, '2020-12-07 05:34:28', 0, NULL, 0, NULL, 1),
(2848, 2329, '2', 'State board', '', '', '2010', 71.25, '', 1, '2020-12-07 05:36:11', 0, NULL, 0, NULL, 1),
(2849, 2329, '1', 'State board', '', '', '2008', 89.67, '', 1, '2020-12-07 05:36:51', 0, NULL, 0, NULL, 1),
(2850, 2331, '3', 'asan memorial college of arts and sciences', '', 'bsc computer science', '2019', 68.00, '', 1, '2020-12-07 05:55:31', 0, NULL, 0, NULL, 1),
(2851, 2333, '1', 'thfhth', '', '', '2020', 76.00, '', 1, '2020-12-07 08:10:41', 0, NULL, 0, NULL, 1),
(2852, 2335, '4', 'Anna university', '', 'MBA', '2016', 76.00, '', 1, '2020-12-08 08:00:26', 0, NULL, 0, NULL, 1),
(2853, 2335, '3', 'Madras University', '', 'bBA', '2012', 67.00, '', 1, '2020-12-08 08:02:41', 0, NULL, 0, NULL, 1),
(2854, 2335, '2', 'State board', '', '', '2008', 54.00, '', 1, '2020-12-08 08:03:16', 0, NULL, 0, NULL, 1),
(2855, 2335, '1', 'State board', '', '', '2006', 50.00, '', 1, '2020-12-08 08:03:41', 0, NULL, 0, NULL, 1),
(2856, 2337, '3', 'Dhanalakshmi srinivasan college of engineering and technology', '', 'B.tech', '2019', 71.10, '', 1, '2020-12-08 10:09:29', 0, NULL, 0, NULL, 1),
(2857, 2340, '3', 'Annauniversity', '', 'B.E', '2020', 60.00, '', 1, '2020-12-08 11:11:52', 0, NULL, 0, NULL, 1),
(2858, 2334, '3', 'Anna university', '', 'BE ', '2017', 67.00, '', 1, '2020-12-08 11:30:39', 0, NULL, 0, NULL, 1),
(2859, 2341, '1', 'cbsc', '', '', '2015', 55.00, '', 1, '2020-12-08 11:38:30', 1, '2020-12-08 11:39:59', 0, NULL, 1),
(2860, 2341, '5', 'ramakrishna polytechnic', '', 'diploma computer science', '2017', 52.00, '', 1, '2020-12-08 11:39:43', 0, NULL, 0, NULL, 1),
(2861, 2347, '3', 'LOYOLA COLLEGE OF ARTS & SCIENCE', '', 'B.A Economics', '2019', 53.00, '', 1, '2020-12-08 11:47:58', 0, NULL, 0, NULL, 1),
(2862, 2346, '2', 'State board ', '', 'B.com', '2014', 55.00, '', 1, '2020-12-08 11:51:27', 0, NULL, 0, NULL, 1),
(2863, 2350, '2', 'state board', '', '', '2015', 78.00, '', 1, '2020-12-08 12:34:26', 0, NULL, 0, NULL, 1),
(2864, 2350, '3', 'madras university', '', 'bcom', '2018', 65.00, '', 1, '2020-12-08 12:34:54', 0, NULL, 0, NULL, 1),
(2865, 2345, '2', 'State bord', '', '', '2017', 85.00, '', 1, '2020-12-08 12:36:44', 0, NULL, 0, NULL, 1),
(2866, 2351, '3', 'Vels university ', '', 'B. Com ca', '2019', 61.00, '', 1, '2020-12-08 12:39:18', 0, NULL, 0, NULL, 1),
(2867, 2349, '2', 'STATE BOARD', '', '', '2011', 65.00, '', 1, '2020-12-08 12:49:06', 0, NULL, 0, NULL, 1),
(2868, 2344, '2', 'Stateboard', '', 'B. Com', '2017', 60.00, '', 1, '2020-12-08 12:53:39', 0, NULL, 0, NULL, 1),
(2869, 2319, '3', 'Anna University', '', 'B.e', '2016', 6.50, '', 1, '2020-12-08 12:57:57', 0, NULL, 0, NULL, 1),
(2870, 2355, '3', 'Velammal institute of technology ', '', 'BE', '2019', 77.00, '', 1, '2020-12-08 01:38:04', 0, NULL, 0, NULL, 1),
(2871, 2357, '3', 'Madras University', '', 'B.com', '2015', 69.00, '', 1, '2020-12-08 02:21:21', 0, NULL, 0, NULL, 1),
(2872, 2358, '3', 'Madras University', '', 'B.con', '2015', 70.00, '', 1, '2020-12-08 02:29:08', 0, NULL, 0, NULL, 1),
(2873, 2360, '4', 'SRM University', '', 'MBA', '2014', 82.00, '', 1, '2020-12-08 02:45:52', 0, NULL, 0, NULL, 1),
(2874, 0, '3', 'University of Madras', '', 'B.com (C.A)', '2017', 72.00, '', 1, '2020-12-08 03:46:51', 1, '2020-12-08 06:39:19', 0, NULL, 0),
(2875, 2362, '3', 'atnomous', '', 'b com cs', '2018', 60.00, '', 1, '2020-12-08 03:52:48', 0, NULL, 0, NULL, 1),
(2876, 2362, '2', 'govt.model school', '', '', '2015', 60.00, '', 1, '2020-12-08 03:54:01', 0, NULL, 0, NULL, 1),
(2877, 2362, '1', 'govt. model school', '', '', '2013', 70.00, '', 1, '2020-12-08 03:55:04', 0, NULL, 0, NULL, 1),
(2878, 2366, '3', 'Annamalai university', '', 'BBA', '2015', 70.00, '', 1, '2020-12-08 06:18:20', 0, NULL, 0, NULL, 1),
(2879, 2368, '4', 'Arignar Anna University', '', 'BE', '2013', 60.00, '', 1, '2020-12-08 06:39:23', 0, NULL, 0, NULL, 1),
(2880, 2368, '1', 'Velammal matric higher secondary school', '', '', '2007', 70.00, '', 1, '2020-12-08 06:40:12', 0, NULL, 0, NULL, 1),
(2881, 2368, '2', 'SBIOA model matric higher secondary school', '', '', '2009', 65.00, '', 1, '2020-12-08 06:40:49', 0, NULL, 0, NULL, 1),
(2882, 2369, '3', 'Madras', '', 'B.com', '2020', 70.00, '', 1, '2020-12-08 09:34:20', 0, NULL, 0, NULL, 1),
(2883, 2372, '1', 'Velammal Matric', '', '', '2011', 91.00, '', 1, '2020-12-09 11:41:57', 0, NULL, 0, NULL, 1),
(2884, 2372, '2', 'Velammal Matric', '', '', '2013', 91.50, '', 1, '2020-12-09 11:42:44', 0, NULL, 0, NULL, 1),
(2885, 2372, '3', 'Velammal I tech', '', 'BE', '2018', 70.00, '', 1, '2020-12-09 11:43:15', 0, NULL, 0, NULL, 1),
(2886, 2371, '3', 'Anna university ', '', 'B. E', '2019', 64.00, '', 1, '2020-12-09 11:44:25', 1, '2020-12-09 11:46:16', 0, NULL, 0),
(2887, 2371, '2', 'State Board ', '', '', '2015', 62.00, '', 1, '2020-12-09 11:45:02', 1, '2020-12-09 11:46:09', 0, NULL, 0),
(2888, 2371, '1', 'State board', '', '', '2013', 85.00, '', 1, '2020-12-09 11:45:34', 1, '2020-12-09 11:46:13', 0, NULL, 0),
(2889, 2371, '2', 'State Board ', '', '', '2015', 62.00, '', 1, '2020-12-09 11:46:33', 1, '2020-12-09 11:49:46', 0, NULL, 1),
(2890, 2371, '2', 'State Board ', '', '', '2015', 62.00, '', 1, '2020-12-09 11:46:58', 1, '2020-12-09 11:49:17', 0, NULL, 0),
(2891, 2371, '3', 'Anna university ', '', 'B. E- computer science engineering ', '2019', 64.00, '', 1, '2020-12-09 11:47:36', 0, NULL, 0, NULL, 1),
(2892, 2371, '1', 'State Board ', '', '', '2013', 85.00, '', 1, '2020-12-09 11:50:20', 0, NULL, 0, NULL, 1),
(2893, 2354, '3', 'Madras university ', '', 'BCA', '2020', 50.00, '', 1, '2020-12-09 12:06:05', 0, NULL, 0, NULL, 1),
(2894, 2374, '3', 'Madras university', '', 'BCA', '2019', 85.00, '', 1, '2020-12-09 12:15:06', 0, NULL, 0, NULL, 1),
(2895, 2326, '3', 'A.M.Jain college', '', 'BCA', '2018', 55.00, '', 1, '2020-12-09 12:20:24', 0, NULL, 0, NULL, 1),
(2896, 2338, '3', 'Madras University', '', 'B.sc computer science', '2018', 50.00, '', 1, '2020-12-09 12:22:36', 0, NULL, 0, NULL, 1),
(2897, 2376, '3', 'University of madras', '', 'BCA camputer application', '2020', 54.00, '', 1, '2020-12-09 12:41:31', 0, NULL, 0, NULL, 1),
(2898, 2380, '4', 'Anna University', '', 'ME', '2015', 80.00, '', 1, '2020-12-09 12:53:27', 0, NULL, 0, NULL, 1),
(2899, 2381, '4', 'Madras university ', '', 'MCA', '2012', 70.00, '', 1, '2020-12-09 01:10:22', 0, NULL, 0, NULL, 1),
(2900, 2375, '3', 'Madras university', '', 'BBA', '2020', 67.00, '', 1, '2020-12-09 01:13:27', 0, NULL, 0, NULL, 1),
(2901, 2384, '4', 'Madras university', '', 'Mca', '2018', 60.00, '', 1, '2020-12-09 01:19:09', 0, NULL, 0, NULL, 1),
(2902, 2389, '3', 'Anna university', '', 'B. e civil engineering', '2016', 76.00, '', 1, '2020-12-09 03:59:54', 0, NULL, 0, NULL, 1),
(2903, 2392, '4', 'Hindustan college of arts and science', '', 'MCA', '2020', 80.00, '', 1, '2020-12-09 04:28:23', 0, NULL, 0, NULL, 1),
(2904, 2395, '3', 'Francis Xavier Engineering ', '', 'B.E', '2012', 64.00, '', 1, '2020-12-09 04:40:25', 0, NULL, 0, NULL, 1),
(2905, 2243, '3', 'Vels university ', '', 'Bca', '2019', 68.00, '', 1, '2020-12-09 05:56:11', 0, NULL, 0, NULL, 1),
(2906, 2398, '3', 'Anna university', '', '', '2017', 70.00, '', 1, '2020-12-09 06:48:50', 0, NULL, 0, NULL, 1),
(2907, 2399, '3', 'Thiruvalluvar university', '', 'BCA', '2019', 55.00, '', 1, '2020-12-09 11:00:52', 0, NULL, 0, NULL, 1),
(2908, 2404, '3', 'Madras University', '', 'B.com', '2017', 70.00, '', 1, '2020-12-10 12:12:23', 0, NULL, 0, NULL, 1),
(2909, 2405, '1', 'Govt higher secondary school', '', '', '2015', 100.00, '', 1, '2020-12-10 12:42:05', 0, NULL, 0, NULL, 1),
(2910, 2408, '4', 'Anna university ', '', 'ME', '2016', 80.00, '', 1, '2020-12-10 12:43:47', 0, NULL, 0, NULL, 1),
(2911, 2407, '3', 'Hindustan collage of arts and science', '', 'Bsc Computer science', '2020', 78.00, '', 1, '2020-12-10 01:17:33', 0, NULL, 0, NULL, 1),
(2912, 2409, '4', 'Anna university ', '', 'ME', '2016', 80.00, '', 1, '2020-12-10 01:25:45', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2913, 2415, '3', 'Vels university', '', 'BE. Computer science engineer', '2020', 68.00, '', 1, '2020-12-10 03:59:25', 0, NULL, 0, NULL, 1),
(2914, 2418, '3', 'Veltech', '', 'B. Com', '2019', 7.20, '', 1, '2020-12-10 05:46:37', 0, NULL, 0, NULL, 1),
(2915, 2420, '3', 'Madras University', '', 'B.cOM', '2019', 74.00, '', 1, '2020-12-10 05:52:12', 0, NULL, 0, NULL, 1),
(2916, 2422, '3', 'Anna University', '', 'Be', '2017', 68.20, '', 1, '2020-12-10 08:57:21', 0, NULL, 0, NULL, 1),
(2917, 2424, '3', 'Anna university', '', 'BE MECHANICAL ENGINEER', '2020', 60.00, '', 1, '2020-12-11 11:01:31', 0, NULL, 0, NULL, 1),
(2918, 2427, '4', 'amity global business school', '', 'mba', '2020', 7.90, '', 1, '2020-12-11 11:32:40', 0, NULL, 0, NULL, 1),
(2919, 2427, '3', 'panimalar institute of technology', '', 'b.e', '2016', 6.14, '', 1, '2020-12-11 11:33:36', 0, NULL, 0, NULL, 1),
(2920, 2427, '2', 's.b.o.a matriculation', '', '', '2012', 65.00, '', 1, '2020-12-11 11:34:44', 0, NULL, 0, NULL, 1),
(2921, 2427, '1', 's.b.o.a matriculation', '', '', '2010', 82.00, '', 1, '2020-12-11 11:35:11', 0, NULL, 0, NULL, 1),
(2922, 2429, '3', 'Anna University', '', 'B.E', '2016', 70.00, '', 1, '2020-12-11 11:49:51', 0, NULL, 0, NULL, 1),
(2923, 2317, '1', 'cbse', '', '', '2013', 78.00, '', 1, '2020-12-11 12:52:12', 1, '2020-12-11 12:52:35', 0, NULL, 1),
(2924, 2317, '2', 'cbse', '', '', '2015', 69.00, '', 1, '2020-12-11 12:52:50', 0, NULL, 0, NULL, 1),
(2925, 2317, '3', 'amity university ', '', 'bba- real estate', '2017', 54.00, '', 1, '2020-12-11 12:53:30', 0, NULL, 0, NULL, 1),
(2926, 2434, '3', 'Am jain college', '', 'Bcom general', '2019', 60.00, '', 1, '2020-12-11 01:10:48', 0, NULL, 0, NULL, 1),
(2927, 2336, '4', 'Bangalore university', '', 'BE', '2016', 62.00, '', 1, '2020-12-11 01:28:00', 0, NULL, 0, NULL, 1),
(2928, 2336, '4', 'Banglore university', '', 'BE', '2016', 62.00, '', 1, '2020-12-11 01:28:29', 0, NULL, 0, NULL, 1),
(2929, 2432, '3', 'Bharathidasan University', '', 'B. Com (cS)', '2018', 70.00, '', 1, '2020-12-11 01:41:50', 0, NULL, 0, NULL, 1),
(2930, 2437, '3', 'Madras University', '', 'Bsc software applications', '2017', 67.00, '', 1, '2020-12-11 01:46:36', 0, NULL, 0, NULL, 1),
(2931, 2435, '1', 'govt.hr.sec.school', '', '', '2009', 54.00, '', 1, '2020-12-11 02:05:35', 0, NULL, 0, NULL, 1),
(2932, 2435, '2', 'govt.hr.sec.school', '', '', '2011', 55.00, '', 1, '2020-12-11 02:06:03', 0, NULL, 0, NULL, 1),
(2933, 2435, '5', 't.j.s.polytechnic college of engineering and technology', '', 'd.ece', '2013', 78.00, '', 1, '2020-12-11 02:07:14', 0, NULL, 0, NULL, 1),
(2934, 2435, '4', 'r.m.k.college of engineering and technology', '', 'b.e', '2017', 5.67, '', 1, '2020-12-11 02:08:06', 0, NULL, 0, NULL, 1),
(2935, 2440, '3', 'Anna University', '', 'BE', '2020', 6.76, '', 1, '2020-12-11 03:01:12', 0, NULL, 0, NULL, 1),
(2936, 2438, '1', 'jbas boys ', '', 'b b a', '1993', 60.00, '', 1, '2020-12-11 03:03:36', 1, '2020-12-11 03:06:17', 0, NULL, 0),
(2937, 2438, '2', 'jbas boys school', '', '', '1995', 50.00, '', 1, '2020-12-11 03:04:30', 0, NULL, 0, NULL, 1),
(2938, 2438, '1', 'jbas boys school', '', '', '1993', 60.00, '', 1, '2020-12-11 03:06:41', 1, '2020-12-11 03:08:05', 0, NULL, 1),
(2939, 2438, '3', 'madras university', '', 'b b a', '1998', 40.00, '', 1, '2020-12-11 03:07:43', 0, NULL, 0, NULL, 1),
(2940, 2439, '3', 'Madras University', '', 'B.com (Marketing management)', '2020', 65.00, '', 1, '2020-12-11 03:18:55', 0, NULL, 0, NULL, 1),
(2941, 2442, '3', 'Anna university', '', 'BE', '2020', 85.00, '', 1, '2020-12-11 03:35:09', 0, NULL, 0, NULL, 1),
(2942, 2444, '3', 'Anna university', '', 'B. E electronics and instrumentation enginerring', '2020', 50.00, '', 1, '2020-12-11 04:21:45', 0, NULL, 0, NULL, 1),
(2943, 2433, '2', 'tn', '', '', '2006', 60.00, '', 7, '2020-12-11 05:04:40', 0, NULL, 0, NULL, 1),
(2944, 2445, '1', 'state', '', '', '2015', 78.00, '', 1, '2020-12-11 05:05:33', 0, NULL, 0, NULL, 1),
(2945, 2445, '2', 'state', '', '', '2017', 72.00, '', 1, '2020-12-11 05:06:03', 0, NULL, 0, NULL, 1),
(2946, 2445, '3', 'the new college', '', 'b.sc. computer science', '2020', 68.00, '', 1, '2020-12-11 05:06:51', 1, '2020-12-11 05:07:14', 0, NULL, 1),
(2947, 2433, '3', 'madras university', '', 'bca', '2007', 70.00, '', 1, '2020-12-11 05:11:54', 0, NULL, 0, NULL, 1),
(2948, 2450, '3', 'Anna University', '', 'BE - Mechanical', '2019', 68.00, '', 1, '2020-12-11 06:00:44', 0, NULL, 0, NULL, 1),
(2949, 2448, '3', 'st.peters university', '', 'bachelor of engineering', '2019', 62.00, '', 1, '2020-12-11 06:37:00', 0, NULL, 0, NULL, 1),
(2950, 2451, '3', 'Anna university', '', 'BE', '2020', 6.76, '', 1, '2020-12-11 07:51:29', 0, NULL, 0, NULL, 1),
(2951, 2453, '3', 'Anna University', '', 'B.E', '2018', 76.00, '', 1, '2020-12-11 08:09:50', 0, NULL, 0, NULL, 1),
(2952, 2382, '3', 'The new college', '', 'B.Com (General)', '2016', 60.00, '', 1, '2020-12-11 09:24:04', 0, NULL, 0, NULL, 1),
(2953, 2387, '3', 'Madras university', '', 'B.com cS', '2020', 60.00, '', 1, '2020-12-11 09:27:15', 0, NULL, 0, NULL, 1),
(2954, 2456, '5', 'Sirnivasa polytechnic college', '', 'DECE', '2015', 60.00, '', 1, '2020-12-12 10:15:47', 0, NULL, 0, NULL, 1),
(2955, 2455, '4', 'J n T university Ananthapur ', '', 'MBA', '2020', 75.00, '', 1, '2020-12-12 10:19:11', 0, NULL, 0, NULL, 1),
(2956, 2455, '3', 'Sri Krishna devaraya university Ananthapur ', '', 'B. Com', '2018', 60.00, '', 1, '2020-12-12 10:22:01', 0, NULL, 0, NULL, 1),
(2957, 2455, '2', 'Board of intermediate education Andrapradesh', '', '', '2015', 70.00, '', 1, '2020-12-12 10:23:16', 1, '2020-12-12 10:23:51', 0, NULL, 1),
(2958, 2455, '1', 'Board of secondary education Andhrapradesh ', '', '', '2013', 65.00, '', 1, '2020-12-12 10:24:54', 0, NULL, 0, NULL, 1),
(2959, 2458, '3', 'Madras University', '', 'BA historical studies', '2015', 60.00, '', 1, '2020-12-12 10:48:10', 0, NULL, 0, NULL, 1),
(2960, 2457, '3', 'anna university', '', 'be mechanical engineering', '2019', 72.00, '', 1, '2020-12-12 10:48:21', 0, NULL, 0, NULL, 1),
(2961, 2458, '2', 'State Board', '', '', '2012', 54.00, '', 1, '2020-12-12 10:48:48', 1, '2020-12-12 10:49:46', 0, NULL, 1),
(2962, 2457, '2', 'stateboard', '', '', '2015', 86.50, '', 1, '2020-12-12 10:48:57', 0, NULL, 0, NULL, 1),
(2963, 2458, '1', 'State', '', '', '2010', 64.00, '', 1, '2020-12-12 10:49:21', 0, NULL, 0, NULL, 1),
(2964, 2457, '1', 'stateboard', '', '', '2013', 89.50, '', 1, '2020-12-12 10:49:30', 0, NULL, 0, NULL, 1),
(2965, 2364, '1', 'dsfewfe', '', '', '2020', 76.00, '', 1, '2020-12-12 10:53:45', 0, NULL, 0, NULL, 1),
(2966, 2460, '1', 'school', '', '', '2016', 76.00, '', 1, '2020-12-12 11:06:46', 0, NULL, 0, NULL, 1),
(2967, 2461, '3', 'dr mgr university ', '', 'b.tech mech', '2018', 60.00, '', 1, '2020-12-12 11:16:24', 0, NULL, 0, NULL, 1),
(2968, 2462, '3', 'D. B. Jain College', '', 'B. Com. General', '2020', 65.00, '', 1, '2020-12-12 11:35:58', 0, NULL, 0, NULL, 1),
(2969, 2465, '5', 'Anna University', '', 'D.EEE', '2017', 60.00, '', 1, '2020-12-12 11:50:20', 0, NULL, 0, NULL, 1),
(2970, 2459, '3', 'anna univercity', '', '', '2020', 60.00, '', 1, '2020-12-12 11:54:36', 1, '2020-12-12 11:55:03', 0, NULL, 0),
(2971, 2459, '3', 'anna univercity', '', 'be', '2019', 6.00, '', 1, '2020-12-12 11:58:37', 0, NULL, 0, NULL, 1),
(2972, 2447, '3', 'Anna university', '', 'BE.EEE', '2020', 68.70, '', 1, '2020-12-12 12:03:51', 0, NULL, 0, NULL, 1),
(2973, 2463, '3', 'Thiruvalluvar university', '', 'B. Sc. Computer science', '2020', 65.41, '', 1, '2020-12-12 12:10:16', 0, NULL, 0, NULL, 1),
(2974, 2466, '3', 'Madras university', '', 'Bsc ', '2020', 80.00, '', 1, '2020-12-12 12:19:08', 0, NULL, 0, NULL, 1),
(2975, 2475, '3', 'university of madras', '', 'bsc', '2020', 64.00, '', 1, '2020-12-12 03:05:42', 0, NULL, 0, NULL, 1),
(2976, 2480, '4', 'Bharathiyar University', '', 'Mca', '2019', 76.00, '', 1, '2020-12-12 03:58:54', 0, NULL, 0, NULL, 1),
(2977, 2479, '2', 'Alameen mat higher sec school', '', '', '2013', 76.00, '', 1, '2020-12-12 04:06:43', 0, NULL, 0, NULL, 1),
(2978, 2479, '1', 'Alameen mat higher sec school ', '', '', '2015', 56.00, '', 1, '2020-12-12 04:07:13', 0, NULL, 0, NULL, 1),
(2979, 2479, '3', 'THIRUVALLUVAR UNIVERSITY ', '', 'BBA', '2018', 80.00, '', 1, '2020-12-12 04:07:47', 0, NULL, 0, NULL, 1),
(2980, 2481, '4', 'karpaga vinayaga institute of management', '', 'mba', '2015', 70.00, '', 1, '2020-12-12 05:18:12', 0, NULL, 0, NULL, 1),
(2981, 2452, '3', 'Anna University', '', 'BE', '2015', 6.10, '', 1, '2020-12-14 09:16:23', 0, NULL, 0, NULL, 1),
(2982, 2482, '3', 'Anna university', '', 'B.E.', '2017', 6.70, '', 1, '2020-12-14 09:41:26', 0, NULL, 0, NULL, 1),
(2983, 2483, '4', 'Alagappa university', '', 'MBA', '2020', 79.00, '', 1, '2020-12-14 10:35:45', 0, NULL, 0, NULL, 1),
(2984, 2483, '3', 'Madras university', '', 'B.Sc', '2018', 65.00, '', 1, '2020-12-14 10:36:13', 0, NULL, 0, NULL, 1),
(2985, 2483, '2', 'State board', '', '', '2015', 80.00, '', 1, '2020-12-14 10:36:39', 0, NULL, 0, NULL, 1),
(2986, 2483, '1', 'State board', '', '', '2013', 92.00, '', 1, '2020-12-14 10:37:01', 0, NULL, 0, NULL, 1),
(2987, 2485, '5', 'Anna university ', '', '', '2014', 52.00, '', 1, '2020-12-14 11:18:21', 0, NULL, 0, NULL, 1),
(2988, 2487, '1', 'State board', '', '', '2005', 83.00, '', 1, '2020-12-14 11:23:04', 0, NULL, 0, NULL, 1),
(2989, 2487, '2', 'State board', '', '', '2007', 75.00, '', 1, '2020-12-14 11:23:29', 0, NULL, 0, NULL, 1),
(2990, 2487, '3', 'Anna university', '', 'Information Technology', '2011', 67.00, '', 1, '2020-12-14 11:24:08', 0, NULL, 0, NULL, 1),
(2991, 2486, '3', 'Madras university', '', 'B.com', '2019', 76.40, '', 1, '2020-12-14 11:37:31', 0, NULL, 0, NULL, 1),
(2992, 2491, '3', 'Madras university ', '', 'B.sc mathematics ', '2017', 60.00, '', 1, '2020-12-14 12:17:43', 0, NULL, 0, NULL, 1),
(2993, 2484, '3', 'TJ institute of technology', '', 'BE (computer science)', '2016', 63.00, '', 1, '2020-12-14 12:29:36', 0, NULL, 0, NULL, 1),
(2994, 2489, '2', 'dhanalakshmi higher sec school', '', '', '2016', 75.00, '', 1, '2020-12-14 12:35:37', 0, NULL, 0, NULL, 1),
(2995, 2493, '3', 'Meenakshi collage ', '', 'B.com general ', '2019', 66.00, '', 1, '2020-12-14 12:53:56', 0, NULL, 0, NULL, 1),
(2996, 2494, '3', 'Meenachi College ', '', 'B. Com', '2020', 75.00, '', 1, '2020-12-14 12:53:57', 0, NULL, 0, NULL, 1),
(2997, 2496, '5', 'Anna university of tamilnadu', '', 'Diplamo in mechanical engineering ', '2017', 65.00, '', 1, '2020-12-14 02:15:31', 0, NULL, 0, NULL, 1),
(2998, 2497, '3', 'Madras university', '', 'Bcom', '2017', 60.00, '', 1, '2020-12-14 02:17:44', 0, NULL, 0, NULL, 1),
(2999, 2501, '4', 'tsbl', '', 'diploma', '2013', 70.00, '', 1, '2020-12-14 04:29:56', 0, NULL, 0, NULL, 1),
(3000, 2501, '4', 'bharathiyar university', '', 'mba', '2013', 68.00, '', 1, '2020-12-14 04:30:31', 0, NULL, 0, NULL, 1),
(3001, 2501, '3', 'university of madras', '', 'bsc', '2009', 60.00, '', 1, '2020-12-14 04:31:02', 0, NULL, 0, NULL, 1),
(3002, 2425, '1', 'qwdcqwd', '', '', '2020', 54.00, '', 1, '2020-12-14 06:56:27', 0, NULL, 0, NULL, 1),
(3003, 2426, '1', 'dtgfhdtgfh', '', '', '2020', 65.00, '', 1, '2020-12-14 06:59:18', 0, NULL, 0, NULL, 1),
(3004, 2506, '1', 'State Board', '', '', '2013', 83.60, '', 1, '2020-12-14 10:34:34', 0, NULL, 0, NULL, 1),
(3005, 2506, '2', 'State Board', '', '', '2015', 77.00, '', 1, '2020-12-14 10:34:54', 0, NULL, 0, NULL, 1),
(3006, 2506, '3', 'Madras University', '', 'BSC Computer Science', '2018', 63.00, '', 1, '2020-12-14 10:35:29', 0, NULL, 0, NULL, 1),
(3007, 2506, '4', 'SRM University', '', 'MCA', '2020', 89.00, '', 1, '2020-12-14 10:35:52', 0, NULL, 0, NULL, 1),
(3008, 2507, '3', 'Anna university', '', 'B.E', '2020', 62.00, '', 1, '2020-12-15 10:27:24', 0, NULL, 0, NULL, 1),
(3009, 2508, '3', 'Anna university', '', 'BE', '2020', 62.00, '', 1, '2020-12-15 10:31:39', 0, NULL, 0, NULL, 1),
(3010, 2510, '4', 'JNTUA', '', 'MBA', '2019', 79.00, '', 1, '2020-12-15 10:40:22', 0, NULL, 0, NULL, 1),
(3011, 2511, '3', 'Madras university', '', 'BCA', '2018', 72.00, '', 1, '2020-12-15 11:00:49', 0, NULL, 0, NULL, 1),
(3012, 2512, '3', 'Madras University', '', 'B. Com (CS) ', '2020', 62.00, '', 1, '2020-12-15 11:18:18', 0, NULL, 0, NULL, 1),
(3013, 2513, '5', 'n t t f', '', 'tool and die making ', '2017', 66.00, '', 1, '2020-12-15 11:43:16', 0, NULL, 0, NULL, 1),
(3014, 2513, '1', 'sports high school chandargi', '', '', '2013', 89.00, '', 1, '2020-12-15 11:45:16', 0, NULL, 0, NULL, 1),
(3015, 2514, '1', 'Karnataka state ', '', '', '2013', 87.84, '', 1, '2020-12-15 12:11:35', 0, NULL, 0, NULL, 1),
(3016, 2514, '5', 'dTE', '', '', '2016', 83.00, '', 1, '2020-12-15 12:13:18', 0, NULL, 0, NULL, 1),
(3017, 2514, '3', 'VTU', '', 'Bachelor of Engineering ', '2019', 76.00, '', 1, '2020-12-15 12:14:15', 0, NULL, 0, NULL, 1),
(3018, 2516, '3', 'Anna university chennai', '', 'Be mechanical engineering', '2013', 65.00, '', 1, '2020-12-15 12:19:06', 0, NULL, 0, NULL, 1),
(3019, 2521, '1', 'school', '', '', '2020', 56.00, '', 1, '2020-12-15 01:39:03', 0, NULL, 0, NULL, 1),
(3020, 2520, '3', 'Bangalore University', '', 'B.com', '2020', 85.00, '', 1, '2020-12-15 01:58:33', 0, NULL, 0, NULL, 1),
(3021, 2473, '1', 'state board', '', '', '2015', 81.00, '', 1, '2020-12-15 02:31:40', 0, NULL, 0, NULL, 1),
(3022, 2473, '2', 'state board', '', '', '2017', 83.34, '', 1, '2020-12-15 02:32:06', 0, NULL, 0, NULL, 1),
(3023, 2473, '3', 'madras university', '', 'b.com', '2020', 70.19, '', 1, '2020-12-15 02:32:47', 0, NULL, 0, NULL, 1),
(3024, 2522, '3', 'university of madras', '', 'b.com', '2015', 50.00, '', 1, '2020-12-15 03:51:34', 0, NULL, 0, NULL, 1),
(3025, 2522, '1', 'state board', '', '', '2010', 69.00, '', 1, '2020-12-15 03:52:10', 0, NULL, 0, NULL, 1),
(3026, 2522, '2', 'state board', '', '', '2012', 76.00, '', 1, '2020-12-15 03:52:33', 0, NULL, 0, NULL, 1),
(3027, 2519, '3', 'Anna university', '', '', '2020', 75.00, '', 1, '2020-12-15 05:10:54', 0, NULL, 0, NULL, 1),
(3028, 2499, '3', 'SRM University', '', 'B.sc cs', '2020', 60.00, '', 1, '2020-12-15 05:15:08', 0, NULL, 0, NULL, 1),
(3029, 2527, '5', 'DOTE', '', 'DECE', '2019', 74.00, '', 1, '2020-12-15 05:19:23', 0, NULL, 0, NULL, 1),
(3030, 2527, '2', 'BOARD', '', '', '2017', 74.00, '', 1, '2020-12-15 05:20:27', 0, NULL, 0, NULL, 1),
(3031, 2527, '1', 'BOARD', '', '', '2015', 90.00, '', 1, '2020-12-15 05:20:50', 0, NULL, 0, NULL, 1),
(3032, 2529, '3', 'madras university', '', 'bca', '2020', 58.00, '', 1, '2020-12-15 05:41:15', 0, NULL, 0, NULL, 1),
(3033, 2530, '3', 'Vels University palavaram', '', 'B.com', '2020', 65.00, '', 1, '2020-12-15 05:45:39', 0, NULL, 0, NULL, 1),
(3034, 2532, '3', 'anna University', '', 'bE', '2014', 7.79, '', 1, '2020-12-15 06:34:02', 0, NULL, 0, NULL, 1),
(3035, 2535, '4', 'MSU', '', 'MCA', '2016', 85.00, '', 1, '2020-12-16 10:30:55', 0, NULL, 0, NULL, 1),
(3036, 2539, '3', 'Anna university', '', 'B. E', '2016', 60.00, '', 1, '2020-12-16 11:50:01', 0, NULL, 0, NULL, 1),
(3037, 2539, '5', 'DOTE', '', 'Civil Engineering', '2013', 70.00, '', 1, '2020-12-16 11:51:27', 0, NULL, 0, NULL, 1),
(3038, 2490, '3', 'sri venkateshwara college of engineering', '', ' be mechanical', '2011', 64.50, '', 1, '2020-12-16 11:52:19', 0, NULL, 0, NULL, 1),
(3039, 2490, '2', 'cbse', '', '', '2007', 74.00, '', 1, '2020-12-16 11:52:53', 0, NULL, 0, NULL, 1),
(3040, 2518, '3', 'Madras university', '', 'BBA', '2018', 50.00, '', 1, '2020-12-16 11:59:12', 0, NULL, 0, NULL, 1),
(3041, 2540, '5', 'Vinayaka mission university ', '', 'B. Com', '2009', 87.00, '', 1, '2020-12-16 12:04:43', 0, NULL, 0, NULL, 1),
(3042, 2542, '3', 'Anna University ', '', 'BE', '2017', 7.40, '', 1, '2020-12-16 12:18:54', 0, NULL, 0, NULL, 1),
(3043, 2542, '2', 'State board', '', '', '2013', 91.00, '', 1, '2020-12-16 12:19:26', 0, NULL, 0, NULL, 1),
(3044, 2542, '1', 'Matric', '', '', '2011', 96.00, '', 1, '2020-12-16 12:19:48', 0, NULL, 0, NULL, 1),
(3045, 2538, '3', 'madrass university', '', 'b.sc biology biotechnology', '2016', 50.00, '', 1, '2020-12-16 12:21:01', 0, NULL, 0, NULL, 1),
(3046, 2541, '4', 'Ramaiah Institute of Management', '', 'PGDM', '2020', 5.24, '', 1, '2020-12-16 12:28:23', 0, NULL, 0, NULL, 1),
(3047, 2543, '3', 'VTU', '', 'BE (Information science and engineering)', '2020', 70.00, '', 1, '2020-12-16 12:33:20', 0, NULL, 0, NULL, 1),
(3048, 2546, '3', 'Visvesvarayya technological university', '', 'Aeronautical', '2017', 79.90, '', 1, '2020-12-16 02:21:00', 0, NULL, 0, NULL, 1),
(3049, 2552, '4', 'indira gandhi national open university', '', 'mca', '2018', 70.00, '', 1, '2020-12-16 05:24:21', 0, NULL, 0, NULL, 1),
(3050, 2552, '3', 'madras university', '', 'b.sc', '2012', 84.00, '', 1, '2020-12-16 05:25:07', 0, NULL, 0, NULL, 1),
(3051, 2552, '2', 'tamilnadu state board', '', '', '2009', 82.00, '', 1, '2020-12-16 05:32:53', 0, NULL, 0, NULL, 1),
(3052, 2552, '1', 'tamilnadu state board', '', '', '2007', 91.00, '', 1, '2020-12-16 05:33:16', 0, NULL, 0, NULL, 1),
(3053, 2552, '5', 'madras university', '', 'information technology', '2012', 80.00, '', 1, '2020-12-16 05:34:03', 0, NULL, 0, NULL, 1),
(3054, 2553, '3', 'Anna university', '', 'B. E civil', '2019', 6.50, '', 1, '2020-12-16 05:51:55', 0, NULL, 0, NULL, 1),
(3055, 2549, '1', 'School', '', '', '2020', 67.00, '', 1, '2020-12-16 05:55:48', 0, NULL, 0, NULL, 1),
(3056, 2557, '3', 'Manakula vinayagar institute of technology ', '', 'B. Tech ', '2019', 59.00, '', 1, '2020-12-16 06:17:26', 0, NULL, 0, NULL, 1),
(3057, 2558, '5', 'Hindustan Institute of Engineering & Technology', '', 'Diploma in civil', '2017', 60.00, '', 1, '2020-12-16 07:44:10', 0, NULL, 0, NULL, 1),
(3058, 2560, '3', 'Madras University', '', 'B.com', '2015', 60.00, '', 1, '2020-12-17 11:15:46', 0, NULL, 0, NULL, 1),
(3059, 2563, '1', 'Govtment higher secondary School', '', '', '2014', 85.80, '', 1, '2020-12-17 11:45:31', 0, NULL, 0, NULL, 1),
(3060, 2563, '2', 'Government higher secondary School', '', '', '2016', 78.08, '', 1, '2020-12-17 11:45:49', 0, NULL, 0, NULL, 1),
(3061, 2563, '3', 'Anna University', '', 'B.E CSE', '2020', 70.00, '', 1, '2020-12-17 11:46:31', 0, NULL, 0, NULL, 1),
(3062, 2565, '3', 'Sri venkateswara university', '', 'Bachelor of business administration', '2020', 86.00, '', 1, '2020-12-17 12:55:28', 0, NULL, 0, NULL, 1),
(3063, 2565, '2', 'Intermediate board of education', '', '', '2017', 90.00, '', 1, '2020-12-17 12:56:21', 1, '2020-12-17 01:00:13', 0, NULL, 1),
(3064, 2565, '1', 'Board of secondary education', '', '', '2015', 88.00, '', 1, '2020-12-17 01:01:40', 0, NULL, 0, NULL, 1),
(3065, 2568, '4', 'university', '', 'mba', '2020', 75.00, '', 1, '2020-12-17 04:48:30', 0, NULL, 0, NULL, 1),
(3066, 2572, '4', 'Svu', '', 'Msc', '2015', 72.00, '', 1, '2020-12-17 05:13:08', 0, NULL, 0, NULL, 1),
(3067, 2573, '4', 'Anna University', '', 'Mca', '2018', 75.00, '', 1, '2020-12-17 05:29:07', 0, NULL, 0, NULL, 1),
(3068, 2564, '3', 'MADRAS UNIVERSITY', '', 'B.A ECONOMICS', '2018', 60.00, '', 1, '2020-12-17 05:49:03', 0, NULL, 0, NULL, 1),
(3069, 2576, '3', 'Kalasalingam Academy Of Research and education', '', 'B.Tech', '2020', 63.00, '', 1, '2020-12-17 06:03:37', 0, NULL, 0, NULL, 1),
(3070, 2559, '4', 'st peters college of engineering', '', 'mba', '2016', 7.74, '', 1, '2020-12-17 11:27:52', 0, NULL, 0, NULL, 1),
(3071, 2559, '1', 'ncm', '', '', '2009', 52.00, '', 1, '2020-12-17 11:29:32', 0, NULL, 0, NULL, 1),
(3072, 2559, '2', 'vhmss', '', '', '2011', 65.00, '', 1, '2020-12-17 11:30:24', 0, NULL, 0, NULL, 1),
(3073, 2559, '3', 'jaya college of arts and science', '', 'bbm', '2014', 74.00, '', 1, '2020-12-17 11:31:31', 0, NULL, 0, NULL, 1),
(3074, 2582, '3', 'Justice basheer Ahmed sayeed college for women ', '', 'B.a corporate economics ', '2020', 60.00, '', 1, '2020-12-18 11:22:17', 0, NULL, 0, NULL, 1),
(3075, 2581, '4', 'VTU', '', 'MBA', '2020', 71.40, '', 1, '2020-12-18 11:39:22', 0, NULL, 0, NULL, 1),
(3076, 2580, '3', 'Madras University ', '', 'B. Com', '2015', 65.00, '', 1, '2020-12-18 11:46:06', 0, NULL, 0, NULL, 1),
(3077, 2586, '3', 'Madras university ', '', 'B. Com', '2018', 60.00, '', 1, '2020-12-18 11:54:27', 0, NULL, 0, NULL, 1),
(3078, 2585, '3', 'Anna University ', '', 'BE', '2014', 62.00, '', 1, '2020-12-18 11:56:59', 0, NULL, 0, NULL, 1),
(3079, 2584, '3', 'Thiruvalluvar', '', 'BBA', '2011', 60.00, '', 1, '2020-12-18 12:01:17', 0, NULL, 0, NULL, 1),
(3080, 2571, '1', 'state board', '', '', '2012', 80.00, '', 1, '2020-12-18 12:24:33', 0, NULL, 0, NULL, 1),
(3081, 2571, '2', 'state board', '', '', '2014', 64.00, '', 1, '2020-12-18 12:24:51', 0, NULL, 0, NULL, 1),
(3082, 2571, '3', 'anna university', '', 'btech', '2018', 73.60, '', 1, '2020-12-18 12:25:28', 0, NULL, 0, NULL, 1),
(3083, 2590, '4', 'Anna university', '', 'MBA finance and marketing', '2019', 7.56, '', 1, '2020-12-18 12:59:17', 0, NULL, 0, NULL, 1),
(3084, 2589, '3', 'Dr.mgr janaki college', '', 'BBA', '2020', 59.00, '', 1, '2020-12-18 01:37:09', 0, NULL, 0, NULL, 1),
(3085, 2578, '4', 'Bharathidasan ', '', 'Mca ', '2014', 71.00, '', 1, '2020-12-18 01:45:30', 0, NULL, 0, NULL, 1),
(3086, 2579, '2', 'Bangalore University', '', 'Bsc', '2020', 65.00, '', 1, '2020-12-18 02:55:09', 0, NULL, 0, NULL, 1),
(3087, 2592, '3', 'Anna University', '', 'B tech', '2012', 62.00, '', 1, '2020-12-18 03:30:45', 0, NULL, 0, NULL, 1),
(3088, 2593, '4', 'sathyabama university ', '', 'Mba', '2020', 65.00, '', 1, '2020-12-18 03:32:23', 0, NULL, 0, NULL, 1),
(3089, 2593, '4', 'Sathyabama university ', '', 'Mba', '2020', 65.00, '', 1, '2020-12-18 03:33:14', 0, NULL, 0, NULL, 1),
(3090, 2595, '4', 'Anna university', '', 'MCA', '2014', 71.00, '', 1, '2020-12-18 05:24:39', 0, NULL, 0, NULL, 1),
(3091, 2597, '4', 'TAMIL NADU PHYSICAL EDUCATION AND SPORTS UNIVERSITY ', '', 'yoga', '2019', 62.00, '', 1, '2020-12-18 06:13:35', 0, NULL, 0, NULL, 1),
(3092, 2597, '3', 'MADURAI KAMARAJ UNIVERSITY', '', 'bca', '2013', 58.00, '', 1, '2020-12-18 06:14:03', 0, NULL, 0, NULL, 1),
(3093, 2597, '5', ' K.L.N POLYTECHNIC ', '', '', '2004', 82.00, '', 1, '2020-12-18 06:14:25', 0, NULL, 0, NULL, 1),
(3094, 2599, '3', 'madras university', '', 'bca', '2018', 74.00, '', 1, '2020-12-18 06:43:20', 0, NULL, 0, NULL, 1),
(3095, 2599, '2', 'jaigopal garodia school', '', '', '2015', 79.00, '', 1, '2020-12-18 06:43:54', 0, NULL, 0, NULL, 1),
(3096, 2599, '1', 'jaigopal garodia school', '', '', '2013', 80.40, '', 1, '2020-12-18 06:44:21', 0, NULL, 0, NULL, 1),
(3097, 2600, '3', 'Anna university', '', 'BE ', '2012', 60.00, '', 1, '2020-12-18 06:52:32', 0, NULL, 0, NULL, 1),
(3098, 2591, '4', 'Bangalore central university', '', 'MBA', '2020', 62.00, '', 1, '2020-12-18 10:57:43', 1, '2020-12-18 10:58:58', 0, NULL, 1),
(3099, 2591, '3', 'Autonomous', '', 'B.com', '2018', 58.00, '', 1, '2020-12-18 10:59:31', 0, NULL, 0, NULL, 1),
(3100, 2591, '2', 'Karnataka state board', '', '', '2015', 84.00, '', 1, '2020-12-18 11:00:31', 0, NULL, 0, NULL, 1),
(3101, 2591, '1', 'Karnataka state board', '', '', '2013', 72.00, '', 1, '2020-12-18 11:02:14', 0, NULL, 0, NULL, 1),
(3102, 2598, '4', 'icfai business school', '', 'mba', '2019', 7.63, '', 1, '2020-12-19 12:18:03', 0, NULL, 0, NULL, 1),
(3103, 2598, '3', 'madras university', '', 'b.a english', '2017', 68.62, '', 1, '2020-12-19 12:19:00', 0, NULL, 0, NULL, 1),
(3104, 2598, '2', 'state board', '', '', '2014', 69.40, '', 1, '2020-12-19 12:19:33', 0, NULL, 0, NULL, 1),
(3105, 2598, '1', 'state board', '', '', '2012', 91.80, '', 1, '2020-12-19 12:20:07', 0, NULL, 0, NULL, 1),
(3106, 2602, '4', 'Amrita University', '', 'MBA', '2021', 58.00, '', 1, '2020-12-19 11:38:00', 0, NULL, 0, NULL, 1),
(3107, 2604, '3', 'PristUniversity', '', 'Civil engineer', '2020', 70.00, '', 1, '2020-12-19 11:47:05', 0, NULL, 0, NULL, 1),
(3108, 2130, '5', 'pallavaram', '', 'diploma', '2010', 60.00, '', 1, '2020-12-19 12:49:38', 0, NULL, 0, NULL, 1),
(3109, 2607, '3', 'University', '', 'BBA', '2020', 70.00, '', 1, '2020-12-19 02:54:57', 0, NULL, 0, NULL, 1),
(3110, 2609, '1', 'Samrutha vidyasram', '', '', '2014', 70.00, '', 1, '2020-12-19 03:41:15', 0, NULL, 0, NULL, 1),
(3111, 2611, '3', 'Srm university ', '', 'Bba', '2020', 60.00, '', 1, '2020-12-19 03:56:36', 0, NULL, 0, NULL, 1),
(3112, 2612, '3', 'The new college ', '', 'B.Com ', '2020', 65.00, '', 1, '2020-12-19 04:15:43', 0, NULL, 0, NULL, 1),
(3113, 2617, '1', 'State Board', '', '', '2006', 71.40, '', 1, '2020-12-19 08:25:50', 0, NULL, 0, NULL, 1),
(3114, 2617, '2', 'State board', '', '', '2008', 57.50, '', 1, '2020-12-19 08:26:12', 0, NULL, 0, NULL, 1),
(3115, 2617, '3', 'Anna University', '', 'BTech IT', '2016', 62.50, '', 1, '2020-12-19 08:26:57', 0, NULL, 0, NULL, 1),
(3116, 2617, '5', 'Loyola institute of business administration', '', 'Digital Marketing', '2019', 95.00, '', 1, '2020-12-19 08:28:08', 0, NULL, 0, NULL, 1),
(3117, 2618, '3', 'Anna university ', '', 'B.E', '2017', 60.00, '', 1, '2020-12-20 08:27:32', 0, NULL, 0, NULL, 1),
(3118, 2620, '3', 'Madras university ', '', 'B. Com', '2020', 80.00, '', 1, '2020-12-20 06:59:15', 0, NULL, 0, NULL, 1),
(3119, 2614, '5', 'bharthiyar university', '', 'dme', '2017', 95.00, '', 1, '2020-12-21 08:31:36', 0, NULL, 0, NULL, 1),
(3120, 2622, '4', 'madras university', '', 'm.com', '2015', 65.00, '', 1, '2020-12-21 10:13:20', 0, NULL, 0, NULL, 1),
(3121, 2622, '3', 's.v.university', '', 'b.com', '2013', 71.00, '', 1, '2020-12-21 10:14:45', 0, NULL, 0, NULL, 1),
(3122, 2622, '1', 'state board of andhra pradesh', '', '', '2007', 65.00, '', 1, '2020-12-21 10:16:08', 0, NULL, 0, NULL, 1),
(3123, 2606, '3', 'madras university', '', 'b.com', '2019', 68.00, '', 1, '2020-12-21 10:48:48', 1, '2020-12-21 10:49:23', 0, NULL, 0),
(3124, 2606, '3', 'madras university', '', 'b.com', '2019', 68.00, '', 1, '2020-12-21 10:50:21', 0, NULL, 0, NULL, 1),
(3125, 2619, '4', 'psg college of technology', '', 'mba in marketing', '2019', 74.00, '', 1, '2020-12-21 11:04:14', 0, NULL, 0, NULL, 1),
(3126, 2619, '3', 'madras university', '', 'bba', '2017', 68.00, '', 1, '2020-12-21 11:05:06', 0, NULL, 0, NULL, 1),
(3127, 2577, '1', 'state ', '', '', '2009', 83.00, '', 1, '2020-12-21 11:05:10', 0, NULL, 0, NULL, 1),
(3128, 2619, '2', 'state board', '', '', '2012', 78.00, '', 1, '2020-12-21 11:05:55', 0, NULL, 0, NULL, 1),
(3129, 2623, '3', 'SV University', '', 'B.com', '2017', 90.00, '', 1, '2020-12-21 11:09:28', 0, NULL, 0, NULL, 1),
(3130, 2623, '2', 'Board of intermediate education', '', '', '2014', 60.00, '', 1, '2020-12-21 11:10:19', 0, NULL, 0, NULL, 1),
(3131, 2623, '1', 'School of secondary education', '', '', '2012', 50.00, '', 1, '2020-12-21 11:10:51', 0, NULL, 0, NULL, 1),
(3132, 2625, '1', 'state board', '', '', '2010', 70.00, '', 1, '2020-12-21 11:24:17', 0, NULL, 0, NULL, 1),
(3133, 2625, '2', 'state board', '', '', '2012', 65.00, '', 1, '2020-12-21 11:24:54', 0, NULL, 0, NULL, 1),
(3134, 2625, '3', 'anna university', '', 'bachelor of engineering', '2016', 64.00, '', 1, '2020-12-21 11:25:35', 0, NULL, 0, NULL, 1),
(3135, 2627, '3', 'Madras university', '', 'Bca', '2004', 75.00, '', 1, '2020-12-21 11:39:41', 0, NULL, 0, NULL, 1),
(3136, 2626, '3', 'madras university', '', 'bca', '2019', 65.00, '', 1, '2020-12-21 11:41:39', 0, NULL, 0, NULL, 1),
(3137, 2626, '2', 'holy angels mat hr sec school', '', '', '2016', 65.00, '', 1, '2020-12-21 11:43:12', 0, NULL, 0, NULL, 1),
(3138, 2626, '1', 'holy angles mat hr sec school', '', '', '2014', 78.20, '', 1, '2020-12-21 11:44:05', 0, NULL, 0, NULL, 1),
(3139, 2515, '3', 'madars university', '', 'bca', '2019', 55.50, '', 1, '2020-12-21 11:51:25', 0, NULL, 0, NULL, 1),
(3140, 2515, '2', 'valluvar gurukullam', '', '', '2016', 61.30, '', 1, '2020-12-21 11:52:35', 0, NULL, 0, NULL, 1),
(3141, 2515, '1', 'r.c.m', '', '', '2014', 74.60, '', 1, '2020-12-21 11:53:24', 0, NULL, 0, NULL, 1),
(3142, 2628, '4', 'Manonmaniam sundaranar University', '', 'MA Economics', '2006', 55.00, '', 1, '2020-12-21 12:20:43', 0, NULL, 0, NULL, 1),
(3143, 2630, '4', 'Madras University', '', 'Mba', '2019', 60.00, '', 1, '2020-12-21 12:48:22', 0, NULL, 0, NULL, 1),
(3144, 2631, '4', 'Sri Venkateswara University ', '', 'MBA - HR and Marketing ', '2020', 66.00, '', 1, '2020-12-21 12:56:12', 0, NULL, 0, NULL, 1),
(3145, 2631, '3', 'Sri Venkateswara University ', '', 'B.Sc Computers ', '2018', 74.00, '', 1, '2020-12-21 12:56:55', 0, NULL, 0, NULL, 1),
(3146, 2632, '3', 'Sri venkateswara university', '', 'B. Sc computers', '2019', 90.00, '', 1, '2020-12-21 12:57:17', 0, NULL, 0, NULL, 1),
(3147, 2631, '2', 'State Board of Intermediate Education ', '', '', '2015', 77.00, '', 1, '2020-12-21 12:58:58', 0, NULL, 0, NULL, 1),
(3148, 2631, '1', 'Board of Secondary Education ', '', '', '2013', 92.00, '', 1, '2020-12-21 12:59:35', 0, NULL, 0, NULL, 1),
(3149, 2633, '4', 'Loyola College', '', 'M.A Social Work ', '2013', 55.00, '', 1, '2020-12-21 01:00:10', 0, NULL, 0, NULL, 1),
(3150, 2634, '3', 'tnou', '', 'bba computer application', '2021', 90.00, '', 1, '2020-12-21 02:08:06', 0, NULL, 0, NULL, 1),
(3151, 2635, '4', 'Anna University ', '', 'Mca', '2015', 78.00, '', 1, '2020-12-21 02:45:50', 0, NULL, 0, NULL, 1),
(3152, 2636, '3', 'Madras university ', '', 'Bsc viscom', '2020', 50.00, '', 1, '2020-12-21 04:25:59', 0, NULL, 0, NULL, 1),
(3153, 2638, '3', 'Guru Nanak college', '', 'B.com', '2020', 62.00, '', 1, '2020-12-21 05:07:18', 0, NULL, 0, NULL, 1),
(3154, 2639, '3', 'guru Nanak College ', '', 'b.com', '2020', 70.00, '', 1, '2020-12-21 06:28:18', 0, NULL, 0, NULL, 1),
(3155, 2642, '3', 'Srm university', '', 'B.com', '2020', 74.00, '', 1, '2020-12-21 06:34:14', 0, NULL, 0, NULL, 1),
(3156, 2646, '3', 'Autonomous', '', 'B.sc mathematics', '2020', 70.00, '', 1, '2020-12-21 08:08:27', 0, NULL, 0, NULL, 1),
(3157, 2647, '3', 'Guru Nanak College', '', 'B.com', '2020', 73.53, '', 1, '2020-12-21 08:22:23', 0, NULL, 0, NULL, 1),
(3158, 2651, '3', 'Madras university', '', 'B.com general', '2020', 70.00, '', 1, '2020-12-21 10:07:40', 0, NULL, 0, NULL, 1),
(3159, 2652, '3', 'Anna university', '', 'B.E', '2013', 63.00, '', 1, '2020-12-21 10:51:04', 0, NULL, 0, NULL, 1),
(3160, 2654, '3', 'Anna university', '', 'B.E CSE', '2012', 80.10, '', 1, '2020-12-22 10:35:23', 1, '2020-12-22 10:38:34', 0, NULL, 0),
(3161, 2654, '1', 'State board', '', '', '2006', 83.00, '', 1, '2020-12-22 10:38:02', 1, '2020-12-22 10:38:57', 0, NULL, 0),
(3162, 2654, '1', 'State board', '', '', '2006', 83.00, '', 1, '2020-12-22 10:39:28', 0, NULL, 0, NULL, 1),
(3163, 2654, '2', 'State board', '', '', '2008', 87.60, '', 1, '2020-12-22 10:39:44', 0, NULL, 0, NULL, 1),
(3164, 2654, '3', 'Anna university', '', 'B.E CSE', '2012', 80.10, '', 1, '2020-12-22 10:40:12', 0, NULL, 0, NULL, 1),
(3165, 2656, '3', 'Anna University', '', 'B.E Mechanical', '2015', 68.00, '', 1, '2020-12-22 10:48:41', 0, NULL, 0, NULL, 1),
(3166, 2629, '3', 'UNIVERSITY OF MADRAS', '', 'B.COM', '2018', 60.00, '', 1, '2020-12-22 11:32:38', 0, NULL, 0, NULL, 1),
(3167, 2662, '3', 'madras university', '', 'bba', '2015', 60.00, '', 1, '2020-12-22 12:41:52', 0, NULL, 0, NULL, 1),
(3168, 2662, '2', 'govt higher sec school devapandalam', '', '', '2012', 55.00, '', 1, '2020-12-22 12:42:51', 0, NULL, 0, NULL, 1),
(3169, 2663, '3', 'Srm university', '', 'B tech', '2018', 67.00, '', 1, '2020-12-22 01:00:32', 0, NULL, 0, NULL, 1),
(3170, 2663, '2', 'Vedhha vikkas', '', '', '2013', 68.00, '', 1, '2020-12-22 01:01:16', 0, NULL, 0, NULL, 1),
(3171, 2663, '1', 'Vetri vikaas', '', '', '2011', 75.00, '', 1, '2020-12-22 01:01:49', 0, NULL, 0, NULL, 1),
(3172, 2659, '3', 'Hindhusthan collage of arts and science ', '', 'BBA cA', '2020', 75.00, '', 1, '2020-12-22 01:45:42', 0, NULL, 0, NULL, 1),
(3173, 2664, '3', 'Hindhusthan collage of arts and science ', '', 'BCA', '2020', 72.00, '', 1, '2020-12-22 01:53:19', 0, NULL, 0, NULL, 1),
(3174, 2621, '4', 'Sri Venkateshwar university', '', 'MBA', '2020', 66.00, '', 1, '2020-12-22 02:38:32', 0, NULL, 0, NULL, 1),
(3175, 2667, '3', 'tiruvalluvar university', '', 'b.sc computer science', '2018', 82.00, '', 1, '2020-12-22 04:03:22', 0, NULL, 0, NULL, 1),
(3176, 2673, '3', 'Dwakara doss goverthan doss vaishnava college', '', 'B.sc physics', '2017', 50.00, '', 1, '2020-12-22 05:24:59', 0, NULL, 0, NULL, 1),
(3177, 2675, '3', 'Vivekananda college', '', 'B.com genral', '2015', 54.00, '', 1, '2020-12-22 05:55:40', 0, NULL, 0, NULL, 1),
(3178, 2676, '3', 'Madras University', '', 'B.com', '2020', 69.50, '', 1, '2020-12-22 05:57:52', 0, NULL, 0, NULL, 1),
(3179, 2676, '1', 'Cambridge', '', '', '2015', 67.20, '', 1, '2020-12-22 05:59:11', 0, NULL, 0, NULL, 1),
(3180, 2676, '2', 'Cambridge', '', '', '2017', 68.00, '', 1, '2020-12-22 05:59:42', 0, NULL, 0, NULL, 1),
(3181, 2674, '3', 'Madras University', '', 'BCA', '2015', 50.00, '', 1, '2020-12-22 06:07:46', 0, NULL, 0, NULL, 1),
(3182, 2678, '4', 'sathyabama institute of science and techonology', '', 'm.b.a', '2020', 65.00, '', 1, '2020-12-22 07:06:41', 0, NULL, 0, NULL, 1),
(3183, 2678, '3', 'sathyabama institute of science and techonology', '', 'b.com', '2018', 63.00, '', 1, '2020-12-22 07:07:46', 0, NULL, 0, NULL, 1),
(3184, 2680, '3', 'jeppiaar engineering college', '', 'be cse', '2018', 76.30, '', 1, '2020-12-22 07:10:30', 0, NULL, 0, NULL, 1),
(3185, 2680, '1', 'csi bains school', '', '', '2012', 87.00, '', 1, '2020-12-22 07:11:14', 0, NULL, 0, NULL, 1),
(3186, 2680, '2', 'csi bains school', '', '', '2014', 84.00, '', 1, '2020-12-22 07:11:35', 0, NULL, 0, NULL, 1),
(3187, 2681, '3', 'Sathyabama University ', '', 'B.Tech', '2019', 76.00, '', 1, '2020-12-22 07:16:55', 0, NULL, 0, NULL, 1),
(3188, 2682, '3', 'St. Peters college of engineering and technology', '', 'BE CSE', '2020', 68.00, '', 1, '2020-12-22 09:24:00', 0, NULL, 0, NULL, 1),
(3189, 2683, '3', 'Sathyabama university', '', 'BTech', '2017', 66.00, '', 1, '2020-12-22 11:41:53', 0, NULL, 0, NULL, 1),
(3190, 2686, '3', 'anna university', '', 'be ', '2012', 79.00, '', 1, '2020-12-23 10:30:13', 0, NULL, 0, NULL, 1),
(3191, 2688, '3', 'Guru Nanak college', '', 'B.com', '2020', 71.03, '', 1, '2020-12-23 11:21:57', 0, NULL, 0, NULL, 1),
(3192, 2615, '3', 'Madras University', '', 'BBA', '2019', 67.00, '', 1, '2020-12-23 11:42:05', 0, NULL, 0, NULL, 1),
(3193, 2684, '3', 'Madras University ', '', 'bsc.computer Science ', '2019', 75.00, '', 1, '2020-12-23 12:30:20', 0, NULL, 0, NULL, 1),
(3194, 2569, '4', 'B. S abdur rahmaan Institute Of Science And Technology ', '', 'MBA ', '2020', 7.30, '', 1, '2020-12-23 12:56:25', 0, NULL, 0, NULL, 1),
(3195, 2692, '3', 'Madras university ', '', 'B com', '2016', 63.00, '', 1, '2020-12-23 01:25:52', 0, NULL, 0, NULL, 1),
(3196, 2691, '3', 'madras university', '', 'ba eng', '2014', 58.00, '', 1, '2020-12-23 01:34:42', 0, NULL, 0, NULL, 1),
(3197, 2694, '4', 'Anna University', '', 'MCA', '2015', 73.00, '', 1, '2020-12-23 02:36:17', 0, NULL, 0, NULL, 1),
(3198, 2644, '3', 'University of Madras', '', 'B.sc', '2009', 60.00, '', 1, '2020-12-23 02:36:44', 0, NULL, 0, NULL, 1),
(3199, 2693, '2', 'santhome school', '', 'bcom', '2004', 72.00, '', 1, '2020-12-23 02:42:42', 1, '2020-12-23 02:44:15', 0, NULL, 1),
(3200, 2698, '4', 'Anna University ', '', 'Mca', '2015', 75.00, '', 1, '2020-12-23 04:09:13', 0, NULL, 0, NULL, 1),
(3201, 2698, '3', 'Madras University ', '', 'Bsc', '2012', 65.00, '', 1, '2020-12-23 04:09:54', 0, NULL, 0, NULL, 1),
(3202, 2700, '5', 'Sri durga Devi polytechnic college ', '', '', '2018', 85.00, '', 1, '2020-12-23 04:17:26', 0, NULL, 0, NULL, 1),
(3203, 2696, '1', 'state', '', '', '2010', 50.00, '', 1, '2020-12-23 04:44:05', 0, NULL, 0, NULL, 1),
(3204, 2702, '3', 'Madras University', '', 'B.com', '2018', 60.00, '', 1, '2020-12-24 10:26:42', 0, NULL, 0, NULL, 1),
(3205, 2703, '4', 'Banglore central university', '', 'MBA', '2020', 6.50, '', 1, '2020-12-24 11:12:30', 1, '2020-12-24 11:12:50', 0, NULL, 1),
(3206, 2705, '3', 'Thiruvalluvar university', '', 'B. Com', '2017', 72.00, '', 1, '2020-12-24 11:22:35', 0, NULL, 0, NULL, 1),
(3207, 2705, '1', 'Danish Mission high school', '', '', '2012', 70.00, '', 1, '2020-12-24 11:23:26', 0, NULL, 0, NULL, 1),
(3208, 2705, '2', 'Government boy\'s high school', '', '', '2014', 75.00, '', 1, '2020-12-24 11:24:05', 0, NULL, 0, NULL, 1),
(3209, 2708, '3', 'Madras university', '', 'B.com', '2020', 67.20, '', 1, '2020-12-24 12:39:33', 0, NULL, 0, NULL, 1),
(3210, 2624, '3', 'jntu anantapur', '', 'btech', '2020', 75.00, '', 1, '2020-12-24 01:47:14', 0, NULL, 0, NULL, 1),
(3211, 2624, '2', 'board of intermediate', '', '', '2016', 84.00, '', 1, '2020-12-24 01:47:58', 0, NULL, 0, NULL, 1),
(3212, 2624, '1', 'board of secondary', '', '', '2014', 93.00, '', 1, '2020-12-24 01:48:29', 0, NULL, 0, NULL, 1),
(3213, 2709, '3', 'jntu anantapur', '', 'btech', '2020', 70.00, '', 1, '2020-12-24 01:52:16', 0, NULL, 0, NULL, 1),
(3214, 2709, '2', 'board of intermediate', '', '', '2016', 83.00, '', 1, '2020-12-24 01:52:44', 0, NULL, 0, NULL, 1),
(3215, 2709, '1', 'board of secondary', '', '', '2014', 83.00, '', 1, '2020-12-24 01:53:05', 0, NULL, 0, NULL, 1),
(3216, 2713, '3', 'SRM ', '', 'BCA', '2020', 65.00, '', 1, '2020-12-24 03:47:57', 0, NULL, 0, NULL, 1),
(3217, 2714, '3', 'anna university', '', 'b.e', '2016', 71.00, '', 1, '2020-12-24 04:33:47', 0, NULL, 0, NULL, 1),
(3218, 2715, '5', 'dote', '', 'ece', '2008', 65.00, '', 1, '2020-12-24 05:12:40', 0, NULL, 0, NULL, 1),
(3219, 2716, '3', 'Madras university ', '', 'B. A English literature ', '2019', 53.00, '', 1, '2020-12-24 05:55:56', 0, NULL, 0, NULL, 1),
(3220, 2711, '4', 'Anna University regional campus madurai', '', 'Mba', '2021', 55.00, '', 1, '2020-12-25 11:12:48', 0, NULL, 0, NULL, 1),
(3221, 2610, '3', 'Madras University', '', 'BBA', '2019', 78.00, '', 1, '2020-12-25 11:21:03', 0, NULL, 0, NULL, 1),
(3222, 2718, '1', 'State Board', '', '', '2012', 50.00, '', 1, '2020-12-25 12:26:37', 0, NULL, 0, NULL, 1),
(3223, 2718, '5', 'Dote', '', 'DAE', '2015', 85.00, '', 1, '2020-12-25 12:27:21', 0, NULL, 0, NULL, 1),
(3224, 2660, '3', 'Svu', '', 'Bcom(ca)', '2018', 84.00, '', 1, '2020-12-25 01:16:08', 0, NULL, 0, NULL, 1),
(3225, 2726, '3', 'Anna university ', '', 'BE Mechanical Engineering', '2018', 75.00, '', 1, '2020-12-26 09:54:39', 0, NULL, 0, NULL, 1),
(3226, 2727, '3', 'ceg anna university chennai', '', 'b.tech', '2017', 6.95, '', 1, '2020-12-26 10:03:30', 0, NULL, 0, NULL, 1),
(3227, 2727, '2', 'lameech hr.sec school', '', '', '2013', 91.00, '', 1, '2020-12-26 10:04:26', 0, NULL, 0, NULL, 1),
(3228, 2727, '1', 'lameeh hr.sec.school', '', '', '2011', 97.80, '', 1, '2020-12-26 10:04:57', 0, NULL, 0, NULL, 1),
(3229, 2728, '3', 'university', '', 'b.e', '2018', 6.67, '', 1, '2020-12-26 10:09:24', 0, NULL, 0, NULL, 1),
(3230, 2728, '2', 'board', '', '', '2014', 80.00, '', 1, '2020-12-26 10:09:53', 0, NULL, 0, NULL, 1),
(3231, 2731, '3', 'Periyar university', '', 'BBA', '2020', 75.00, '', 1, '2020-12-26 10:54:07', 0, NULL, 0, NULL, 1),
(3232, 2732, '4', 'SATHYABAMA UNIVERSITY ', '', 'M.E.', '2021', 85.00, '', 1, '2020-12-26 10:58:16', 0, NULL, 0, NULL, 1),
(3233, 2729, '4', 'B.s abdur rahman crescent institute of science and technology ', '', 'MBA ', '2020', 75.00, '', 1, '2020-12-26 11:00:06', 0, NULL, 0, NULL, 1),
(3234, 2729, '4', 'B.S. Abdur Rahman crescent institute of science and technology ', '', 'MBA ', '2020', 75.00, '', 1, '2020-12-26 11:00:57', 1, '2020-12-26 11:05:50', 0, NULL, 0),
(3235, 2729, '3', 'Justice basheer Ahmed sayeed college institute of science and technology ', '', 'Bsc', '2018', 70.00, '', 1, '2020-12-26 11:03:29', 0, NULL, 0, NULL, 1),
(3236, 2719, '3', 'Guru Nanak college', '', 'B.com', '2021', 70.00, '', 1, '2020-12-26 11:03:47', 0, NULL, 0, NULL, 1),
(3237, 2729, '2', 'Crescent Matriculation higher secondary school for school', '', '', '2015', 70.00, '', 1, '2020-12-26 11:04:48', 0, NULL, 0, NULL, 1),
(3238, 2729, '1', 'Doveton corrie girls higher secondary school ', '', '', '2012', 85.00, '', 1, '2020-12-26 11:05:36', 0, NULL, 0, NULL, 1),
(3239, 0, '3', 'anna University ', '', 'Bachelor of engineering', '2014', 65.00, '', 1, '2020-12-26 11:19:01', 1, '2020-12-29 03:07:35', 0, NULL, 0),
(3240, 2734, '3', 'Vels University', '', 'B.com', '2021', 65.00, '', 1, '2020-12-26 11:36:51', 0, NULL, 0, NULL, 1),
(3241, 2733, '3', 'guru nanak', '', 'b.com', '2021', 62.00, '', 1, '2020-12-26 11:40:04', 0, NULL, 0, NULL, 1),
(3242, 2735, '3', 'Mohammed sathak arts and science', '', 'B. com', '2014', 70.00, '', 1, '2020-12-26 11:43:06', 1, '2020-12-26 12:04:58', 0, NULL, 1),
(3243, 2722, '3', 'Medras university', '', 'B.com ', '2020', 70.00, '', 1, '2020-12-26 11:50:48', 0, NULL, 0, NULL, 1),
(3244, 2736, '3', 'Guru Nanak college', '', 'B. Com', '2021', 55.00, '', 1, '2020-12-26 11:52:40', 0, NULL, 0, NULL, 1),
(3245, 2724, '3', 'Guru Nanak college', '', 'B.Com', '2021', 59.00, '', 1, '2020-12-26 11:53:08', 0, NULL, 0, NULL, 1),
(3246, 2735, '4', 'madras', '', 'mba', '2016', 65.00, '', 1, '2020-12-26 12:03:33', 0, NULL, 0, NULL, 1),
(3247, 2737, '3', 'Medras University', '', 'Bsc computer science', '2015', 68.00, '', 1, '2020-12-26 12:08:13', 0, NULL, 0, NULL, 1),
(3248, 2738, '3', 'bharathidasan', '', 'b.sc', '2005', 50.00, '', 1, '2020-12-26 12:28:25', 0, NULL, 0, NULL, 1),
(3249, 2741, '3', 'Presidency College ', '', 'BA ', '2018', 75.00, '', 1, '2020-12-26 12:47:19', 0, NULL, 0, NULL, 1),
(3250, 2743, '3', 'Medras University', '', 'BA', '2017', 69.00, '', 1, '2020-12-26 04:41:11', 0, NULL, 0, NULL, 1),
(3251, 2744, '3', 'Madras University', '', 'B.com General', '2019', 60.10, '', 1, '2020-12-26 06:34:31', 0, NULL, 0, NULL, 1),
(3252, 2746, '3', 'annamalai university', '', 'b.e computer science', '2010', 80.00, '', 1, '2020-12-26 06:58:01', 0, NULL, 0, NULL, 1),
(3253, 2752, '3', 'anna university', '', 'electronics and communication engineering', '2017', 65.00, '', 1, '2020-12-28 11:55:18', 0, NULL, 0, NULL, 1),
(3254, 2752, '2', 'kvm matric hr school', '', '', '2013', 63.00, '', 1, '2020-12-28 11:55:59', 0, NULL, 0, NULL, 1),
(3255, 2752, '1', 'himayam matriculation school', '', '', '2011', 83.00, '', 1, '2020-12-28 11:56:20', 0, NULL, 0, NULL, 1),
(3256, 2751, '3', 'Anna University ', '', 'BE. MECHANICAL', '2019', 6.40, '', 1, '2020-12-28 12:12:33', 0, NULL, 0, NULL, 1),
(3257, 2739, '3', 'university of madras', '', '', '2008', 65.00, '', 1, '2020-12-28 12:19:00', 0, NULL, 0, NULL, 1),
(3258, 2699, '3', 'national college trichy', '', 'bsc', '2019', 75.00, '', 1, '2020-12-28 12:35:57', 0, NULL, 0, NULL, 1),
(3259, 2754, '4', 'Anna university ', '', 'B tech it', '2020', 60.00, '', 1, '2020-12-28 12:37:37', 0, NULL, 0, NULL, 1),
(3260, 2761, '3', 'C. Abdul Hakeem College (Autonomous)', '', 'B. C.A', '2019', 65.00, '', 1, '2020-12-28 05:43:13', 0, NULL, 0, NULL, 1),
(3261, 2762, '4', 'Anna University', '', 'MCA', '2015', 75.00, '', 1, '2020-12-28 05:54:37', 0, NULL, 0, NULL, 1),
(3262, 2763, '4', 'Madras university', '', 'MS.c', '2014', 77.00, '', 1, '2020-12-28 06:39:25', 0, NULL, 0, NULL, 1),
(3263, 2767, '4', 'Jamal mohamed college ', '', 'M com', '2020', 83.00, '', 1, '2020-12-28 09:09:03', 0, NULL, 0, NULL, 1),
(3264, 2769, '3', 'DR.MGR UNIVERSITY', '', 'B.com cs', '2020', 67.00, '', 1, '2020-12-29 10:24:06', 0, NULL, 0, NULL, 1),
(3265, 2770, '3', 'University', '', 'B.E', '2018', 73.00, '', 1, '2020-12-29 10:25:02', 0, NULL, 0, NULL, 1),
(3266, 2770, '2', 'Hsc', '', '', '2014', 83.00, '', 1, '2020-12-29 10:25:27', 0, NULL, 0, NULL, 1),
(3267, 2770, '1', 'Board', '', '', '2012', 88.00, '', 1, '2020-12-29 10:25:41', 0, NULL, 0, NULL, 1),
(3268, 2768, '2', 'st thomas', '', '', '2017', 67.00, '', 7, '2020-12-29 11:11:08', 0, NULL, 0, NULL, 1),
(3269, 2768, '3', 'patrician', '', 'bca', '2020', 67.00, '', 7, '2020-12-29 11:12:21', 0, NULL, 0, NULL, 1),
(3270, 2774, '4', 'madras university', '', 'mba', '2020', 70.00, '', 1, '2020-12-29 11:22:42', 0, NULL, 0, NULL, 1),
(3271, 2774, '3', 'madras university', '', 'b.com', '2018', 63.00, '', 1, '2020-12-29 11:23:24', 0, NULL, 0, NULL, 1),
(3272, 2774, '2', 'state board', '', '', '2015', 74.00, '', 1, '2020-12-29 11:23:58', 0, NULL, 0, NULL, 1),
(3273, 2774, '1', 'state board', '', '', '2013', 77.00, '', 1, '2020-12-29 11:24:20', 0, NULL, 0, NULL, 1),
(3274, 2765, '3', 'madras university', '', 'b.com', '2020', 66.00, '', 1, '2020-12-29 11:37:13', 0, NULL, 0, NULL, 1),
(3275, 2765, '2', 'state board', '', '', '2017', 54.00, '', 1, '2020-12-29 11:37:44', 0, NULL, 0, NULL, 1),
(3276, 2765, '1', 'state board', '', '', '2015', 77.00, '', 1, '2020-12-29 11:38:17', 0, NULL, 0, NULL, 1),
(3277, 2775, '3', 'thiruvalluvar university', '', 'bca', '2015', 75.00, '', 1, '2020-12-29 11:57:37', 1, '2020-12-29 11:59:27', 0, NULL, 0),
(3278, 2775, '1', 'state Board ', '', 'mca', '2011', 60.00, '', 1, '2020-12-29 11:57:58', 1, '2020-12-29 12:00:35', 0, NULL, 0),
(3279, 2775, '1', 'state board ', '', '', '2010', 60.00, '', 1, '2020-12-29 12:01:00', 1, '2020-12-29 12:02:26', 0, NULL, 1),
(3280, 2775, '2', 'state board ', '', '', '2012', 60.00, '', 1, '2020-12-29 12:01:35', 0, NULL, 0, NULL, 1),
(3281, 2775, '3', 'thiruvalluvar university', '', 'bca', '2015', 75.00, '', 1, '2020-12-29 12:02:14', 0, NULL, 0, NULL, 1),
(3282, 2775, '4', 'thiruvalluvar university', '', 'mca', '2018', 72.00, '', 1, '2020-12-29 12:02:46', 0, NULL, 0, NULL, 1),
(3283, 2777, '4', 'Jansons school of business', '', 'MBA', '2020', 67.00, '', 1, '2020-12-29 12:23:56', 0, NULL, 0, NULL, 1),
(3284, 2776, '3', 'anna university', '', 'b.tech', '2020', 6.50, '', 1, '2020-12-29 12:42:52', 0, NULL, 0, NULL, 1),
(3285, 2779, '1', 'state board', '', '', '2014', 72.00, '', 1, '2020-12-29 12:59:59', 0, NULL, 0, NULL, 1),
(3286, 2779, '2', 'state board', '', '', '2012', 76.00, '', 1, '2020-12-29 01:00:13', 0, NULL, 0, NULL, 1),
(3287, 2760, '3', 'anna university', '', 'be cse', '2019', 6.23, '', 1, '2020-12-29 01:05:34', 0, NULL, 0, NULL, 1),
(3288, 2760, '1', 'metric', '', '', '2013', 84.00, '', 1, '2020-12-29 01:06:16', 0, NULL, 0, NULL, 1),
(3289, 2760, '2', 'metric', '', '', '2015', 62.00, '', 1, '2020-12-29 01:06:39', 0, NULL, 0, NULL, 1),
(3290, 2755, '3', 'anna university', '', 'b.e', '2017', 6.30, '', 1, '2020-12-29 01:31:50', 0, NULL, 0, NULL, 1),
(3291, 2783, '2', 'singaram pillai hr sec scholl', '', '', '2010', 60.00, '', 1, '2020-12-29 02:42:48', 0, NULL, 0, NULL, 1),
(3292, 2783, '1', 'singaram pillai hr sec school', '', '', '2008', 60.00, '', 1, '2020-12-29 02:43:33', 0, NULL, 0, NULL, 1),
(3293, 2785, '3', 'Anna University', '', 'B.Tech.,(IT)', '2016', 65.00, '', 1, '2020-12-29 03:09:26', 0, NULL, 0, NULL, 1),
(3294, 2784, '3', 'anna university', '', 'b.tech', '2019', 60.00, '', 1, '2020-12-29 03:10:04', 0, NULL, 0, NULL, 1),
(3295, 2784, '2', 'state board', '', '', '2015', 52.00, '', 1, '2020-12-29 03:11:21', 0, NULL, 0, NULL, 1),
(3296, 2784, '1', 'state board', '', '', '2013', 77.00, '', 1, '2020-12-29 03:11:50', 0, NULL, 0, NULL, 1),
(3297, 2782, '3', 'Avinashilingam university ', '', 'B.E CSE', '2015', 74.00, '', 1, '2020-12-29 03:13:50', 0, NULL, 0, NULL, 1),
(3298, 2786, '3', 'francis xavier engineering college', '', 'b.techit', '2015', 63.00, '', 1, '2020-12-29 03:16:01', 0, NULL, 0, NULL, 1),
(3299, 2788, '2', 'State board', '', '', '2012', 92.00, '', 1, '2020-12-29 03:50:52', 0, NULL, 0, NULL, 1),
(3300, 2788, '1', 'State board', '', '', '2010', 92.00, '', 1, '2020-12-29 03:51:11', 0, NULL, 0, NULL, 1),
(3301, 2788, '3', 'Anna university', '', 'B.E', '2016', 65.00, '', 1, '2020-12-29 03:51:46', 0, NULL, 0, NULL, 1),
(3302, 2789, '3', 'University of Madras', '', 'b.sc', '2018', 7.80, '', 1, '2020-12-29 04:20:51', 0, NULL, 0, NULL, 1),
(3303, 2791, '1', 'State board', '', '', '2014', 96.00, '', 1, '2020-12-29 04:23:32', 0, NULL, 0, NULL, 1),
(3304, 2791, '2', 'State board', '', '', '2016', 79.00, '', 1, '2020-12-29 04:23:53', 0, NULL, 0, NULL, 1),
(3305, 2791, '3', 'Anna university', '', 'BE', '2020', 65.00, '', 1, '2020-12-29 04:24:14', 0, NULL, 0, NULL, 1),
(3306, 2789, '1', 'tamilnadu board', '', '', '2015', 60.00, '', 1, '2020-12-29 04:24:37', 1, '2020-12-29 04:25:41', 0, NULL, 0),
(3307, 2787, '4', 'Anna University', '', 'Mca', '2017', 79.00, '', 1, '2020-12-29 05:04:31', 0, NULL, 0, NULL, 1),
(3308, 2787, '3', 'Bharathidasan University', '', 'Bsc com sci', '2014', 79.50, '', 1, '2020-12-29 05:05:06', 0, NULL, 0, NULL, 1),
(3309, 2787, '2', 'Tamilnadu state board', '', '', '2011', 74.00, '', 1, '2020-12-29 05:05:50', 0, NULL, 0, NULL, 1),
(3310, 2787, '1', 'Tamilnadu state board', '', '', '2009', 87.40, '', 1, '2020-12-29 05:06:36', 0, NULL, 0, NULL, 1),
(3311, 2793, '3', 'madras unversity', '', ' b com', '2014', 60.00, '', 1, '2020-12-29 05:15:30', 0, NULL, 0, NULL, 1),
(3312, 2794, '3', 'Madras University', '', 'Bca', '2019', 60.00, '', 1, '2020-12-29 08:09:59', 0, NULL, 0, NULL, 1),
(3313, 2796, '3', 'madras university', '', 'bba', '2016', 50.00, '', 1, '2020-12-30 09:12:49', 0, NULL, 0, NULL, 1),
(3314, 2798, '1', 'State board', '', '', '2014', 57.00, '', 1, '2020-12-30 11:50:16', 0, NULL, 0, NULL, 1),
(3315, 2798, '2', 'State board', '', '', '2016', 62.50, '', 1, '2020-12-30 11:50:55', 0, NULL, 0, NULL, 1),
(3316, 2798, '3', 'Madras University', '', 'B.com Corporate Secretary', '2019', 60.00, '', 1, '2020-12-30 11:51:47', 0, NULL, 0, NULL, 1),
(3317, 2799, '3', 'madras university', '', 'bsc maths', '2017', 60.00, '', 1, '2020-12-30 02:58:53', 0, NULL, 0, NULL, 1),
(3318, 2799, '1', 'state board', '', '', '2012', 78.00, '', 1, '2020-12-30 02:59:53', 0, NULL, 0, NULL, 1),
(3319, 2799, '2', 'state board', '', '', '2014', 76.00, '', 1, '2020-12-30 03:00:11', 0, NULL, 0, NULL, 1),
(3320, 2802, '4', 'University of Madras ', '', 'MBA', '2019', 50.00, '', 1, '2020-12-30 04:00:43', 0, NULL, 0, NULL, 1),
(3321, 2802, '3', 'University of medras', '', 'B. Com', '2014', 50.00, '', 1, '2020-12-30 04:01:10', 0, NULL, 0, NULL, 1),
(3322, 2804, '4', 'Anna university', '', 'MCA', '2018', 62.00, '', 1, '2020-12-30 06:52:10', 0, NULL, 0, NULL, 1),
(3323, 2805, '4', 'University ', '', 'M.Sc computer Science ', '2020', 85.00, '', 1, '2020-12-30 10:54:52', 0, NULL, 0, NULL, 1),
(3324, 2805, '3', 'University ', '', 'B.Sc computer science ', '2018', 65.00, '', 1, '2020-12-30 10:56:02', 0, NULL, 0, NULL, 1),
(3325, 2806, '3', 'university', '', 'b.tech', '2020', 79.00, '', 1, '2020-12-30 11:28:59', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3326, 2807, '2', 'Statebord', '', 'Bsc software application', '2014', 60.00, '', 1, '2020-12-31 11:07:56', 0, NULL, 0, NULL, 1),
(3327, 2800, '4', 'Kalasalingam university ', '', 'B.tech', '2014', 7.26, '', 1, '2020-12-31 11:19:09', 0, NULL, 0, NULL, 1),
(3328, 2811, '3', 'Madras university', '', 'BBA', '2018', 67.00, '', 1, '2020-12-31 11:57:55', 0, NULL, 0, NULL, 1),
(3329, 2808, '3', 'Anna univercity', '', 'BE', '2017', 56.00, '', 1, '2020-12-31 01:13:35', 0, NULL, 0, NULL, 1),
(3330, 2814, '3', 'Anna university ', '', 'B.Tech ', '2019', 6.50, '', 1, '2020-12-31 01:31:54', 0, NULL, 0, NULL, 1),
(3331, 2816, '3', 'Aditanar college of Arts &Science', '', 'B. A English', '2019', 79.00, '', 1, '2020-12-31 03:50:20', 1, '2020-12-31 03:56:36', 0, NULL, 0),
(3332, 2816, '1', 'State board', '', 'B. A english', '2016', 61.50, '', 1, '2020-12-31 03:52:56', 1, '2020-12-31 03:56:46', 0, NULL, 0),
(3333, 2816, '2', 'State board', '', '', '2014', 89.00, '', 1, '2020-12-31 03:54:59', 0, NULL, 0, NULL, 1),
(3334, 2816, '1', 'State board', '', '', '2016', 61.50, '', 1, '2020-12-31 03:57:44', 0, NULL, 0, NULL, 1),
(3335, 2816, '3', 'Aditanar college of arts and science', '', 'B. A english', '2019', 79.00, '', 1, '2020-12-31 03:58:45', 0, NULL, 0, NULL, 1),
(3336, 2815, '1', 'state', '', '', '2010', 50.00, '', 1, '2020-12-31 04:06:23', 0, NULL, 0, NULL, 1),
(3337, 2815, '2', 'state', '', '', '2012', 62.40, '', 1, '2020-12-31 04:07:02', 0, NULL, 0, NULL, 1),
(3338, 2815, '3', 'madras university', '', 'b.a ', '2015', 70.30, '', 1, '2020-12-31 04:08:05', 0, NULL, 0, NULL, 1),
(3339, 2823, '3', 'anna university', '', 'btech', '2021', 5.67, '', 1, '2021-01-02 10:15:35', 0, NULL, 0, NULL, 1),
(3340, 2823, '1', 'stae board tamilnadu', '', '', '2003', 57.00, '', 1, '2021-01-02 10:16:22', 0, NULL, 0, NULL, 1),
(3341, 2825, '3', 'Vels University', '', 'Bsc physics', '2020', 70.81, '', 1, '2021-01-02 11:03:43', 0, NULL, 0, NULL, 1),
(3342, 2821, '4', 'Vel tech high tech engineering college', '', 'Mca', '2016', 70.00, '', 1, '2021-01-02 12:20:37', 0, NULL, 0, NULL, 1),
(3343, 2827, '3', 'New college', '', 'B.Sc CS', '2015', 60.00, '', 1, '2021-01-02 12:30:21', 0, NULL, 0, NULL, 1),
(3344, 2826, '3', 'New Prince Shri Bhavani College of Engineering and Technology,', '', 'BE/CSE', '2021', 67.70, '', 1, '2021-01-02 12:39:01', 0, NULL, 0, NULL, 1),
(3345, 2826, '2', 'ST.ANTONYS Hr. Sec .school, Chennai.', '', '', '2015', 69.41, '', 1, '2021-01-02 12:39:43', 0, NULL, 0, NULL, 1),
(3346, 2826, '1', 'ST.ANTONYS Hr. Sec. school, Chennai.', '', '', '2013', 82.00, '', 1, '2021-01-02 12:40:53', 0, NULL, 0, NULL, 1),
(3347, 2828, '3', 'Loyola College Chennai', '', 'BA Economics', '2016', 60.00, '', 1, '2021-01-02 03:06:11', 0, NULL, 0, NULL, 1),
(3348, 0, '3', 'Islamiah college autonomous', '', 'BBA', '2020', 70.00, '', 1, '2021-01-02 03:50:53', 1, '2021-01-04 11:55:33', 0, NULL, 0),
(3349, 2830, '3', 'Anna university', '', 'Btech', '2020', 75.50, '', 1, '2021-01-02 05:25:45', 0, NULL, 0, NULL, 1),
(3350, 2835, '3', 'Anna University', '', 'BE(ECE)', '2016', 64.50, '', 1, '2021-01-02 11:08:42', 0, NULL, 0, NULL, 1),
(3351, 2831, '3', 'anna university', '', 'bachelor of engineering', '2017', 6.36, '', 1, '2021-01-03 01:09:59', 1, '2021-01-03 01:10:29', 0, NULL, 1),
(3352, 2837, '3', 'JNTU ANANTAPURAM', '', 'Btech', '2018', 70.00, '', 1, '2021-01-03 07:03:56', 0, NULL, 0, NULL, 1),
(3353, 2838, '3', ' ATDC Chennai ', '', 'Advance Fashion Designing & Technology', '2012', 70.00, '', 1, '2021-01-03 11:17:56', 1, '2021-01-03 11:24:01', 0, NULL, 1),
(3354, 2838, '5', ' Loyola College Chennai (LIBA)  ', '', 'Diploma in Information Technology ', '2014', 76.00, '', 1, '2021-01-03 11:22:54', 0, NULL, 0, NULL, 1),
(3355, 2839, '3', 'Madras University', '', 'B. Sc computer science', '2020', 70.00, '', 1, '2021-01-04 10:20:16', 0, NULL, 0, NULL, 1),
(3356, 2840, '3', 'Jaya engineering College', '', 'B Tech', '2016', 70.00, '', 1, '2021-01-04 11:14:32', 0, NULL, 0, NULL, 1),
(3357, 2844, '4', 'icfai', '', 'mba', '2019', 60.00, '', 1, '2021-01-04 11:24:16', 0, NULL, 0, NULL, 1),
(3358, 2803, '4', 'madras  university', '', 'm.sc physics', '2020', 75.00, '', 1, '2021-01-04 11:44:57', 0, NULL, 0, NULL, 1),
(3359, 2847, '4', 'Bangalore University ', '', 'Bangalore University ', '2018', 52.00, '', 1, '2021-01-04 11:50:47', 0, NULL, 0, NULL, 1),
(3360, 2848, '3', 'Panimalar engineer college', '', 'BE', '2017', 6.10, '', 1, '2021-01-04 11:57:31', 0, NULL, 0, NULL, 1),
(3361, 2843, '3', 'Madras University', '', 'B.com', '2020', 70.00, '', 1, '2021-01-04 11:59:24', 0, NULL, 0, NULL, 1),
(3362, 2848, '1', 'Holy cresent matriculation higher secondary school', '', '', '2011', 64.00, '', 1, '2021-01-04 11:59:39', 0, NULL, 0, NULL, 1),
(3363, 2848, '2', 'Holy cresent matriculation higher secondary School', '', '', '2013', 68.00, '', 1, '2021-01-04 12:00:22', 0, NULL, 0, NULL, 1),
(3364, 2795, '3', 'university of madras', '', 'bca', '2019', 70.00, '', 1, '2021-01-04 12:22:34', 0, NULL, 0, NULL, 1),
(3365, 2845, '3', 'Madras university', '', 'Bachelor of business administration', '2020', 70.00, '', 1, '2021-01-04 01:56:08', 0, NULL, 0, NULL, 1),
(3366, 2851, '3', 'Anna university', '', 'Be', '2016', 60.00, '', 1, '2021-01-04 04:07:17', 0, NULL, 0, NULL, 1),
(3367, 2856, '3', 'Anna University', '', 'B.E', '2020', 71.00, '', 1, '2021-01-04 07:04:00', 0, NULL, 0, NULL, 1),
(3368, 2850, '3', 'Vel Tech University ', '', 'B. TECH  CSE', '2020', 7.55, '', 1, '2021-01-05 10:12:34', 0, NULL, 0, NULL, 1),
(3369, 2855, '3', 'bharadhidasan university', '', 'bca', '2010', 66.63, '', 1, '2021-01-05 10:54:17', 0, NULL, 0, NULL, 1),
(3370, 2855, '4', 'vit university', '', 'mca', '2015', 67.70, '', 1, '2021-01-05 10:55:01', 0, NULL, 0, NULL, 1),
(3371, 2846, '3', 'Madras university', '', 'BCA', '2017', 46.00, '', 1, '2021-01-05 11:32:39', 0, NULL, 0, NULL, 1),
(3372, 2860, '3', 'Madras University ', '', 'BSc chemistry ', '2018', 83.90, '', 1, '2021-01-05 12:07:11', 0, NULL, 0, NULL, 1),
(3373, 2861, '3', 'University', '', 'Back(Cs)', '2020', 80.00, '', 1, '2021-01-05 12:18:42', 0, NULL, 0, NULL, 1),
(3374, 2844, '4', 'icfai', '', 'mba', '2019', 60.00, '', 1, '2021-01-05 12:24:15', 0, NULL, 0, NULL, 1),
(3375, 2844, '3', 'madras universi ', '', 'b.com loyola college ', '2017', 60.00, '', 1, '2021-01-05 12:25:03', 0, NULL, 0, NULL, 1),
(3376, 2863, '2', 'State board ', '', 'M.Sc ', '2015', 83.00, '', 1, '2021-01-05 12:51:23', 0, NULL, 0, NULL, 1),
(3377, 2863, '3', 'Madras University ', '', 'B.Sc computer Science ', '2018', 68.00, '', 1, '2021-01-05 12:52:10', 0, NULL, 0, NULL, 1),
(3378, 2863, '4', 'Madras University ', '', 'M.Sc computer Science ', '2020', 85.00, '', 1, '2021-01-05 12:53:01', 0, NULL, 0, NULL, 1),
(3379, 2865, '5', 'ITI (fitter)', '', '', '2013', 70.00, '', 1, '2021-01-05 01:38:55', 0, NULL, 0, NULL, 1),
(3380, 2866, '4', 'Anna university', '', 'BE - Cse', '2014', 70.00, '', 1, '2021-01-05 03:28:54', 0, NULL, 0, NULL, 1),
(3381, 2870, '3', 'State board', '', 'B.A ENGLISH', '2017', 75.00, '', 1, '2021-01-05 04:40:02', 0, NULL, 0, NULL, 1),
(3382, 2872, '4', 'ANNAMALAI UNIVERSITY', '', 'M.sc', '2016', 80.00, '', 1, '2021-01-05 04:55:09', 0, NULL, 0, NULL, 1),
(3383, 2864, '1', 'state board', '', '', '2010', 76.00, '', 1, '2021-01-05 05:06:48', 0, NULL, 0, NULL, 1),
(3384, 2864, '3', 'autonomous', '', 'bcom general', '2016', 58.00, '', 1, '2021-01-05 05:07:21', 0, NULL, 0, NULL, 1),
(3385, 2874, '2', 'state board', '', '', '2014', 73.00, '', 1, '2021-01-05 05:15:33', 0, NULL, 0, NULL, 1),
(3386, 2874, '3', 'autonomous', '', 'bcom cs', '2017', 57.00, '', 1, '2021-01-05 05:16:02', 0, NULL, 0, NULL, 1),
(3387, 2875, '2', 'state board', '', '', '2015', 62.00, '', 1, '2021-01-05 05:22:37', 0, NULL, 0, NULL, 1),
(3388, 2875, '3', 'autonomous', '', 'ba economics', '2020', 75.00, '', 1, '2021-01-05 05:23:11', 0, NULL, 0, NULL, 1),
(3389, 2858, '5', 'The MADRAS COLLEGE OF ENGINEERING', '', 'B.E. Electronics & Communication Engineering', '2004', 65.00, '', 1, '2021-01-05 09:29:08', 1, '2021-01-05 09:29:28', 0, NULL, 1),
(3390, 2858, '3', 'anna university', '', 'B.E. Electronics & Communication Engineering', '2008', 62.00, '', 1, '2021-01-05 09:30:10', 0, NULL, 0, NULL, 1),
(3391, 2836, '3', 'University of madras ', '', 'B. Com', '2013', 68.40, '', 1, '2021-01-06 10:57:08', 0, NULL, 0, NULL, 1),
(3392, 2879, '3', 'madras university', '', 'bca', '2017', 58.00, '', 1, '2021-01-06 11:19:43', 0, NULL, 0, NULL, 1),
(3393, 2247, '5', 'Chennai univery', '', 'DCE', '2016', 60.00, '', 1, '2021-01-06 12:23:50', 0, NULL, 0, NULL, 1),
(3394, 2881, '5', 'Chennai University', '', 'Dce', '2016', 60.00, '', 1, '2021-01-06 12:43:33', 0, NULL, 0, NULL, 1),
(3395, 2885, '4', 'Anna university', '', 'BE', '2012', 72.00, '', 1, '2021-01-06 12:56:44', 0, NULL, 0, NULL, 1),
(3396, 2886, '3', 'Loyola college ', '', 'BBA', '2013', 62.00, '', 1, '2021-01-06 12:56:45', 0, NULL, 0, NULL, 1),
(3397, 2883, '3', 'Kuvempu Univercity ', '', 'Degree', '2011', 70.00, '', 1, '2021-01-06 01:03:08', 0, NULL, 0, NULL, 1),
(3398, 2884, '1', 'Board of AP', '', '', '2012', 55.00, '', 1, '2021-01-06 01:15:47', 0, NULL, 0, NULL, 1),
(3399, 2884, '2', 'Board of intermediate education ', '', '', '2014', 65.00, '', 1, '2021-01-06 01:16:12', 0, NULL, 0, NULL, 1),
(3400, 2884, '3', 'SK University ', '', 'B.com', '2017', 60.00, '', 1, '2021-01-06 01:16:34', 0, NULL, 0, NULL, 1),
(3401, 2884, '4', 'SK University ', '', 'MBA', '2020', 70.00, '', 1, '2021-01-06 01:16:58', 0, NULL, 0, NULL, 1),
(3402, 2887, '3', 'University', '', 'BE', '2020', 6.40, '', 1, '2021-01-06 01:47:52', 0, NULL, 0, NULL, 1),
(3403, 2892, '4', 'annamalai university', '', 'm.sc', '2011', 81.00, '', 1, '2021-01-06 04:56:37', 0, NULL, 0, NULL, 1),
(3404, 2893, '3', 'Madras University', '', 'B.com ', '2020', 67.83, '', 1, '2021-01-06 05:09:18', 0, NULL, 0, NULL, 1),
(3405, 2894, '3', 'MADRAS UNIVERSITY', '', 'B. COM', '2020', 65.36, '', 1, '2021-01-06 05:34:25', 0, NULL, 0, NULL, 1),
(3406, 2895, '3', 'Vinayaka mission University', '', 'B.E (cSE)', '2018', 62.00, '', 1, '2021-01-06 06:43:35', 0, NULL, 0, NULL, 1),
(3407, 2895, '2', 'State board', '', '', '2014', 82.50, '', 1, '2021-01-06 06:44:05', 0, NULL, 0, NULL, 1),
(3408, 2895, '1', 'CBSE', '', '', '2012', 74.00, '', 1, '2021-01-06 06:44:24', 0, NULL, 0, NULL, 1),
(3409, 2897, '2', 'State board of TN', '', '', '2000', 80.00, '', 1, '2021-01-07 10:10:04', 0, NULL, 0, NULL, 1),
(3410, 2899, '3', 'Maher University', '', 'B.com(c.s)', '2018', 55.00, '', 1, '2021-01-07 11:16:52', 0, NULL, 0, NULL, 1),
(3411, 2898, '4', 'Anna university', '', 'BE MACHANICAL', '2019', 7.10, '', 1, '2021-01-07 11:21:47', 0, NULL, 0, NULL, 1),
(3412, 2902, '3', 'Gurunanak art and science College', '', 'B.com general', '2020', 57.00, '', 1, '2021-01-07 11:59:26', 0, NULL, 0, NULL, 1),
(3413, 2903, '3', 'Gurunanak college', '', 'B.Com marketing Management', '2020', 62.85, '', 1, '2021-01-07 12:02:03', 0, NULL, 0, NULL, 1),
(3414, 2904, '3', 'University', '', 'B.com', '2020', 52.00, '', 1, '2021-01-07 12:02:31', 0, NULL, 0, NULL, 1),
(3415, 2901, '3', 'Madras university', '', 'B.com ', '2020', 75.00, '', 1, '2021-01-07 12:02:50', 0, NULL, 0, NULL, 1),
(3416, 2900, '5', 'University ', '', '', '2020', 86.00, '', 1, '2021-01-07 12:06:47', 0, NULL, 0, NULL, 1),
(3417, 2905, '5', 'Anna university ', '', 'DIT', '2015', 69.00, '', 1, '2021-01-07 12:14:26', 0, NULL, 0, NULL, 1),
(3418, 2907, '3', 'Alagappa University', '', 'BA (economics)', '2016', 70.00, '', 1, '2021-01-07 12:32:59', 0, NULL, 0, NULL, 1),
(3419, 2891, '3', 'Anna university', '', 'B.tech (information technology)', '2020', 71.60, '', 1, '2021-01-07 12:40:23', 0, NULL, 0, NULL, 1),
(3420, 2891, '2', 'State board', '', '', '2016', 64.80, '', 1, '2021-01-07 12:41:02', 0, NULL, 0, NULL, 1),
(3421, 2891, '1', 'State board', '', '', '2014', 74.80, '', 1, '2021-01-07 12:41:36', 0, NULL, 0, NULL, 1),
(3422, 2062, '3', 'Anna University', '', 'B.Tech', '2020', 78.00, '', 1, '2021-01-07 12:51:03', 0, NULL, 0, NULL, 1),
(3423, 2062, '2', 'State Board', '', '', '2016', 76.00, '', 1, '2021-01-07 12:51:34', 0, NULL, 0, NULL, 1),
(3424, 2062, '1', 'State board', '', '', '2014', 94.00, '', 1, '2021-01-07 12:52:05', 0, NULL, 0, NULL, 1),
(3425, 1887, '3', 'Anna university chennai', '', 'B. E', '2012', 60.00, '', 1, '2021-01-07 01:26:40', 0, NULL, 0, NULL, 1),
(3426, 2906, '3', 'madras university', '', 'b.com ', '2015', 60.00, '', 1, '2021-01-07 01:32:24', 0, NULL, 0, NULL, 1),
(3427, 2909, '3', 'Anna university', '', 'BE mechanical', '2016', 70.00, '', 1, '2021-01-07 01:33:29', 0, NULL, 0, NULL, 1),
(3428, 2601, '3', 'Anna University', '', 'BE', '2012', 70.00, '', 1, '2021-01-07 04:35:24', 0, NULL, 0, NULL, 1),
(3429, 2601, '5', 'DOTE', '', 'Dcse', '2009', 85.00, '', 1, '2021-01-07 04:35:50', 0, NULL, 0, NULL, 1),
(3430, 2911, '3', 'Madras university', '', 'B.com', '2020', 62.00, '', 1, '2021-01-07 04:57:53', 0, NULL, 0, NULL, 1),
(3431, 2910, '3', 'Madras university', '', 'B.com ', '2020', 70.00, '', 1, '2021-01-07 05:03:43', 0, NULL, 0, NULL, 1),
(3432, 2912, '3', 'Anna university', '', 'Bachelor of Computer science and engineering', '2016', 62.00, '', 1, '2021-01-07 06:13:49', 0, NULL, 0, NULL, 1),
(3433, 2912, '1', 'State Board', '', '', '2008', 67.00, '', 1, '2021-01-07 06:14:35', 0, NULL, 0, NULL, 1),
(3434, 2912, '2', 'State board', '', '', '2010', 64.00, '', 1, '2021-01-07 06:15:00', 0, NULL, 0, NULL, 1),
(3435, 2913, '3', 'anna university ', '', 'btech ', '2015', 63.30, '', 1, '2021-01-07 06:33:18', 0, NULL, 0, NULL, 1),
(3436, 2913, '2', 'bunder garden higher sec school ', '', '', '2011', 53.50, '', 1, '2021-01-07 06:34:41', 0, NULL, 0, NULL, 1),
(3437, 2913, '1', 'bunder garden higher sec school ', '', '', '2009', 68.40, '', 1, '2021-01-07 06:35:51', 0, NULL, 0, NULL, 1),
(3438, 2914, '3', 'vikrama simhapuri university', '', 'bsc', '2016', 78.00, '', 1, '2021-01-07 11:44:14', 0, NULL, 0, NULL, 1),
(3439, 2916, '3', 'Madras University', '', 'B.COM', '2020', 62.00, '', 1, '2021-01-08 10:36:07', 0, NULL, 0, NULL, 1),
(3440, 2917, '3', 'Madras University', '', 'BA ', '2016', 55.00, '', 1, '2021-01-08 11:07:12', 0, NULL, 0, NULL, 1),
(3441, 2918, '1', 'state board of ap', '', '', '2010', 70.00, '', 1, '2021-01-08 11:51:05', 0, NULL, 0, NULL, 1),
(3442, 2918, '5', 'jntu', '', 'eee', '2013', 60.00, '', 1, '2021-01-08 11:51:43', 0, NULL, 0, NULL, 1),
(3443, 2915, '3', 'Anna university', '', 'B.E', '2020', 68.10, '', 1, '2021-01-08 12:00:42', 0, NULL, 0, NULL, 1),
(3444, 2919, '5', 'Anna university', '', 'DCE', '2015', 68.00, '', 1, '2021-01-08 12:54:05', 0, NULL, 0, NULL, 1),
(3445, 2919, '4', 'Anna university', '', 'BE', '2018', 65.00, '', 1, '2021-01-08 12:54:57', 0, NULL, 0, NULL, 1),
(3446, 2920, '3', 'Madras university', '', 'BCA', '2020', 60.00, '', 1, '2021-01-08 01:49:56', 0, NULL, 0, NULL, 1),
(3447, 2923, '4', 'rvs kumaran arts and scince college', '', 'Bcom banking', '2020', 55.00, '', 1, '2021-01-08 01:55:23', 0, NULL, 0, NULL, 1),
(3448, 2921, '4', 'bharathiar university', '', 'MBA', '2020', 68.00, '', 1, '2021-01-08 02:00:10', 0, NULL, 0, NULL, 1),
(3449, 2922, '3', 'Bharathiyar University', '', 'Bsc computer science', '2018', 68.00, '', 1, '2021-01-08 02:10:25', 0, NULL, 0, NULL, 1),
(3450, 2924, '4', 'Madras university', '', '', '2013', 82.00, '', 1, '2021-01-08 02:33:19', 0, NULL, 0, NULL, 1),
(3451, 2924, '4', 'Madras university', '', 'M. Com', '2013', 82.00, '', 1, '2021-01-08 02:33:45', 0, NULL, 0, NULL, 1),
(3452, 2924, '4', 'Madras university', '', 'M. Com', '2013', 82.00, '', 1, '2021-01-08 02:34:23', 0, NULL, 0, NULL, 1),
(3453, 2925, '4', 'Madras university', '', 'Msc computer science', '2019', 79.00, '', 1, '2021-01-08 02:36:56', 0, NULL, 0, NULL, 1),
(3454, 2926, '4', 'Bharadhidasan university, trichi', '', 'Master of commerce (computer applications) ', '2019', 74.00, '', 1, '2021-01-08 02:37:04', 0, NULL, 0, NULL, 1),
(3455, 2926, '3', 'Bharadhidasan university, trichi', '', 'Bachelor of commerce (computer applications) ', '2017', 74.00, '', 1, '2021-01-08 02:37:57', 1, '2021-01-08 02:38:38', 0, NULL, 0),
(3456, 2890, '3', 'Anna University', '', 'BE', '2015', 69.80, '', 1, '2021-01-08 02:43:26', 0, NULL, 0, NULL, 1),
(3457, 2890, '2', 'State Board', '', '', '2011', 72.00, '', 1, '2021-01-08 02:44:24', 0, NULL, 0, NULL, 1),
(3458, 2890, '1', 'State Board', '', '', '2009', 78.00, '', 1, '2021-01-08 02:44:51', 0, NULL, 0, NULL, 1),
(3459, 2928, '3', 'Madras university ', '', 'BA. ', '2015', 80.00, '', 1, '2021-01-08 03:54:33', 0, NULL, 0, NULL, 1),
(3460, 2929, '5', 'dindugal', '', 'beauitician', '2018', 65.00, '', 1, '2021-01-08 07:54:05', 0, NULL, 0, NULL, 1),
(3461, 2857, '3', 'madras university', '', 'b.com', '2019', 85.00, '', 1, '2021-01-08 09:26:11', 0, NULL, 0, NULL, 1),
(3462, 2930, '3', 'Anna university', '', 'BE', '2020', 75.00, '', 1, '2021-01-09 05:43:39', 0, NULL, 0, NULL, 1),
(3463, 2862, '3', 'University of madras', '', 'computer science', '2015', 76.00, '', 1, '2021-01-09 09:09:04', 0, NULL, 0, NULL, 1),
(3464, 2869, '3', 'thiruvalluvar university', '', 'b a english', '2017', 70.00, '', 1, '2021-01-10 09:31:23', 0, NULL, 0, NULL, 1),
(3465, 2933, '4', 'anna university', '', 'm b a', '2017', 75.00, '', 1, '2021-01-10 09:48:27', 0, NULL, 0, NULL, 1),
(3466, 2934, '3', 'Jain College ', '', 'B. Com ', '2020', 84.00, '', 1, '2021-01-10 10:41:06', 0, NULL, 0, NULL, 1),
(3467, 2934, '1', 'Karnataka University ', '', '', '2015', 85.00, '', 1, '2021-01-10 10:41:36', 0, NULL, 0, NULL, 1),
(3468, 2936, '3', 'Madras university ', '', 'Bsc computer science ', '2018', 72.00, '', 1, '2021-01-10 06:46:30', 0, NULL, 0, NULL, 1),
(3469, 2935, '3', 'madras', '', 'bcom', '2009', 72.00, '', 1, '2021-01-10 08:08:55', 0, NULL, 0, NULL, 1),
(3470, 2937, '3', 'Madras University', '', 'B.A ENGLISH', '2017', 60.00, '', 1, '2021-01-10 09:37:18', 0, NULL, 0, NULL, 1),
(3471, 2938, '2', 'state board', '', '', '2016', 60.00, '', 1, '2021-01-11 09:40:32', 0, NULL, 0, NULL, 1),
(3472, 2938, '1', 'state board', '', '', '2014', 73.00, '', 1, '2021-01-11 09:40:55', 0, NULL, 0, NULL, 1),
(3473, 2944, '5', 'hindusthan institute', '', 'diploma in mechanical engineering', '2016', 60.00, '', 1, '2021-01-11 11:58:05', 0, NULL, 0, NULL, 1),
(3474, 2943, '3', 'Autonomous', '', 'B sc physics', '2010', 61.00, '', 1, '2021-01-11 12:11:40', 0, NULL, 0, NULL, 1),
(3475, 2945, '3', 'Anna University', '', 'BE', '2012', 63.00, '', 1, '2021-01-11 12:39:03', 0, NULL, 0, NULL, 1),
(3476, 2946, '3', 'Madras University', '', 'Bsc visual communication', '2021', 70.00, '', 1, '2021-01-11 01:16:00', 0, NULL, 0, NULL, 1),
(3477, 2949, '4', 'Madras university ', '', 'M. Sc', '2010', 60.00, '', 1, '2021-01-11 04:35:21', 0, NULL, 0, NULL, 1),
(3478, 2950, '4', 'madras university', '', ' m  b a', '2015', 72.00, '', 1, '2021-01-11 05:48:27', 0, NULL, 0, NULL, 1),
(3479, 2951, '1', 'state board', '', '', '2014', 73.00, '', 1, '2021-01-11 06:43:27', 0, NULL, 0, NULL, 1),
(3480, 2951, '2', 'state board', '', '', '2016', 60.00, '', 1, '2021-01-11 06:43:48', 0, NULL, 0, NULL, 1),
(3481, 2952, '2', 'state board', '', '', '2012', 62.00, '', 1, '2021-01-11 06:51:32', 0, NULL, 0, NULL, 1),
(3482, 2952, '3', 'madras university', '', 'ba economics', '2015', 60.00, '', 1, '2021-01-11 06:52:08', 0, NULL, 0, NULL, 1),
(3483, 2773, '3', 'madras university', '', 'bcom', '2014', 56.00, '', 1, '2021-01-11 09:23:38', 0, NULL, 0, NULL, 1),
(3484, 2954, '3', 'Anna university', '', 'BE ', '2018', 63.00, '', 1, '2021-01-12 09:58:12', 0, NULL, 0, NULL, 1),
(3485, 2955, '3', 'madras', '', 'bachelors of engineerinng', '1995', 72.00, '', 1, '2021-01-12 10:37:59', 0, NULL, 0, NULL, 1),
(3486, 2957, '3', 'madras university', '', 'b b a', '2014', 71.00, '', 1, '2021-01-12 11:26:31', 0, NULL, 0, NULL, 1),
(3487, 2959, '3', 'Hindustan University chennai ', '', 'B. Com(general)', '2020', 75.00, '', 1, '2021-01-12 02:02:11', 0, NULL, 0, NULL, 1),
(3488, 2960, '3', 'university', '', 'b.com', '2019', 60.00, '', 1, '2021-01-12 02:02:13', 0, NULL, 0, NULL, 1),
(3489, 2961, '4', 'anna university', '', 'm.e', '2017', 68.40, '', 1, '2021-01-12 03:21:05', 0, NULL, 0, NULL, 1),
(3490, 2963, '3', 'university of madras', '', 'bca', '2017', 60.00, '', 1, '2021-01-12 03:55:54', 0, NULL, 0, NULL, 1),
(3491, 2964, '4', 'madras university', '', 'bsc', '2005', 72.00, '', 1, '2021-01-12 04:12:40', 0, NULL, 0, NULL, 1),
(3492, 2966, '2', 'intermediate', '', '', '2014', 71.00, '', 1, '2021-01-13 08:59:11', 0, NULL, 0, NULL, 1),
(3493, 2966, '3', 'madras university', '', 'bhm', '2016', 70.00, '', 1, '2021-01-13 09:00:14', 0, NULL, 0, NULL, 1),
(3494, 2967, '2', 'state board', '', '', '2013', 72.00, '', 1, '2021-01-13 09:16:38', 0, NULL, 0, NULL, 1),
(3495, 2967, '3', 'thiruvalluvar university', '', 'bsc cs', '2017', 79.00, '', 1, '2021-01-13 09:17:24', 0, NULL, 0, NULL, 1),
(3496, 2948, '3', 'vel tech high tech dr.rangarajan dr.sakunthala engineering college ', '', 'b.e', '2020', 65.00, '', 1, '2021-01-13 10:47:53', 0, NULL, 0, NULL, 1),
(3497, 2968, '4', 'Anna university', '', 'MCA', '2014', 62.22, '', 1, '2021-01-13 10:50:18', 0, NULL, 0, NULL, 1),
(3498, 2947, '3', 'Anna university', '', 'BE', '2014', 65.00, '', 1, '2021-01-13 11:13:12', 0, NULL, 0, NULL, 1),
(3499, 2970, '3', 'Banglore university', '', 'BCA', '2020', 74.00, '', 1, '2021-01-13 01:47:16', 0, NULL, 0, NULL, 1),
(3500, 2971, '3', 'Madras University', '', 'BBA', '2019', 63.00, '', 1, '2021-01-13 01:51:25', 0, NULL, 0, NULL, 1),
(3501, 2973, '4', 'Turiba University', '', 'MBA', '2019', 85.00, '', 1, '2021-01-13 01:58:43', 0, NULL, 0, NULL, 1),
(3502, 2974, '3', 'Kongu engineering college', '', 'B.E computer science', '2016', 6.90, '', 1, '2021-01-13 03:52:51', 0, NULL, 0, NULL, 1),
(3503, 2974, '1', 'St Michael\'s matriculation school', '', '', '2010', 67.00, '', 1, '2021-01-13 03:53:25', 0, NULL, 0, NULL, 1),
(3504, 2974, '5', 'Salem polytechnic college', '', 'Computer technology', '2013', 94.50, '', 1, '2021-01-13 03:54:10', 0, NULL, 0, NULL, 1),
(3505, 2976, '3', 'Dr Mgr University', '', 'B.com', '2020', 69.00, '', 1, '2021-01-13 04:14:34', 0, NULL, 0, NULL, 1),
(3506, 2975, '3', 'Dr. Mgr university ', '', 'B. Com (general) ', '2020', 7.70, '', 1, '2021-01-13 04:33:57', 0, NULL, 0, NULL, 1),
(3507, 2977, '3', 'anna university', '', 'btech', '2020', 7.10, '', 1, '2021-01-13 05:09:16', 0, NULL, 0, NULL, 1),
(3508, 2978, '4', 'anna university', '', 'm b a', '2012', 71.00, '', 1, '2021-01-13 09:11:01', 0, NULL, 0, NULL, 1),
(3509, 2979, '3', 'Madras University', '', 'B.Sc Computer Science', '2020', 81.00, '', 1, '2021-01-13 09:44:14', 0, NULL, 0, NULL, 1),
(3510, 2979, '2', 'State Board', '', '', '2017', 78.00, '', 1, '2021-01-13 09:44:45', 0, NULL, 0, NULL, 1),
(3511, 2979, '1', 'State Board', '', '', '2015', 83.00, '', 1, '2021-01-13 09:45:07', 0, NULL, 0, NULL, 1),
(3512, 2980, '3', 'anna university', '', 'Bachelor of Engineering', '2017', 7.65, '', 1, '2021-01-15 10:37:49', 0, NULL, 0, NULL, 1),
(3513, 2980, '2', 'state board', '', '', '2013', 78.00, '', 1, '2021-01-15 10:41:48', 0, NULL, 0, NULL, 1),
(3514, 2980, '1', 'state board', '', '', '2011', 69.00, '', 1, '2021-01-15 10:42:20', 0, NULL, 0, NULL, 1),
(3515, 2981, '3', 'Madras University', '', 'B.com( cS )', '2020', 63.30, '', 1, '2021-01-16 08:20:42', 0, NULL, 0, NULL, 1),
(3516, 2985, '4', 'Madras University', '', 'M.com', '2019', 75.00, '', 1, '2021-01-16 07:27:10', 0, NULL, 0, NULL, 1),
(3517, 2986, '3', 'andra university', '', ' b a', '2018', 61.00, '', 1, '2021-01-17 01:30:15', 0, NULL, 0, NULL, 1),
(3518, 2988, '3', 'University of Madras', '', 'BCA', '2019', 75.00, '', 1, '2021-01-18 09:47:03', 0, NULL, 0, NULL, 1),
(3519, 2989, '3', 'Anna university ', '', 'Be', '2011', 69.00, '', 1, '2021-01-18 10:52:35', 0, NULL, 0, NULL, 1),
(3520, 2990, '3', 'Pondycherry ', '', 'B.com( general)', '2020', 67.00, '', 1, '2021-01-18 11:12:03', 0, NULL, 0, NULL, 1),
(3521, 2991, '5', 'Stateboard', '', 'Diplamo', '2015', 60.00, '', 1, '2021-01-18 12:44:34', 0, NULL, 0, NULL, 1),
(3522, 2984, '4', 'madras university', '', 'mba', '2020', 62.00, '', 1, '2021-01-18 01:43:48', 0, NULL, 0, NULL, 1),
(3523, 2984, '4', 'madras university', '', 'mba', '2020', 62.00, '', 1, '2021-01-18 01:45:07', 1, '2021-01-18 01:45:23', 0, NULL, 0),
(3524, 2996, '3', 'Madras university', '', 'BCA', '2012', 76.00, '', 1, '2021-01-18 07:53:58', 0, NULL, 0, NULL, 1),
(3525, 2999, '3', 'Madras University', '', 'B.com (ca)', '2020', 59.20, '', 1, '2021-01-19 10:23:13', 0, NULL, 0, NULL, 1),
(3526, 2995, '3', 'Alagappa University', '', 'B.com GENERAL', '2018', 62.00, '', 1, '2021-01-19 10:37:30', 0, NULL, 0, NULL, 1),
(3527, 3001, '3', 'Anna university ', '', 'B.E,ECE', '2020', 78.00, '', 1, '2021-01-19 11:30:02', 0, NULL, 0, NULL, 1),
(3528, 3000, '3', 'Anna university', '', 'B.Tec(IT) ', '2020', 68.00, '', 1, '2021-01-19 11:31:38', 0, NULL, 0, NULL, 1),
(3529, 3004, '3', 'Madras university ', '', 'B. Com', '2020', 82.00, '', 1, '2021-01-19 11:49:15', 0, NULL, 0, NULL, 1),
(3530, 2992, '3', 'Bharadhasan university', '', 'Bsc microbiology', '2020', 70.00, '', 1, '2021-01-19 11:57:34', 0, NULL, 0, NULL, 1),
(3531, 3005, '3', 'Srm university', '', 'Bca', '2019', 65.00, '', 1, '2021-01-19 03:51:10', 0, NULL, 0, NULL, 1),
(3532, 3006, '3', 'S.A. Engineering College', '', 'B.E', '2020', 8.56, '', 1, '2021-01-19 06:44:29', 0, NULL, 0, NULL, 1),
(3533, 3009, '3', 'Anna University, Chennai', '', 'B.E. ( CSE)', '2020', 80.00, '', 1, '2021-01-20 10:02:55', 0, NULL, 0, NULL, 1),
(3534, 3010, '3', 'Anna University, Chennai', '', 'B.e.(ECE)', '2020', 72.00, '', 1, '2021-01-20 10:25:38', 0, NULL, 0, NULL, 1),
(3535, 2994, '1', 'state board', '', '', '2005', 75.00, '', 1, '2021-01-20 11:40:49', 0, NULL, 0, NULL, 1),
(3536, 2994, '2', 'state board', '', '', '2007', 65.00, '', 1, '2021-01-20 11:41:05', 0, NULL, 0, NULL, 1),
(3537, 2994, '3', 'bharathidasan university', '', 'bca', '2010', 75.00, '', 1, '2021-01-20 11:41:40', 0, NULL, 0, NULL, 1),
(3538, 3011, '3', 'Madras university ', '', 'B.SC Visual communication', '2009', 85.00, '', 1, '2021-01-20 03:13:42', 0, NULL, 0, NULL, 1),
(3539, 3013, '1', 'Govt boys hr sec school, vriddhachalam', '', '', '2014', 83.00, '', 1, '2021-01-20 03:28:32', 0, NULL, 0, NULL, 1),
(3540, 3013, '2', 'V.E.T hr sec school', '', '', '2016', 79.00, '', 1, '2021-01-20 03:29:04', 0, NULL, 0, NULL, 1),
(3541, 3012, '4', 'Satyabama university', '', 'MBA finance and marketing ', '2016', 6.98, '', 1, '2021-01-20 03:29:08', 0, NULL, 0, NULL, 1),
(3542, 3013, '3', 'Bharathidasan University', '', 'B.sc computer science', '2019', 65.00, '', 1, '2021-01-20 03:30:13', 0, NULL, 0, NULL, 1),
(3543, 3014, '3', 'bharath university', '', 'b.tech-mechatronics', '2016', 64.00, '', 1, '2021-01-20 03:42:27', 0, NULL, 0, NULL, 1),
(3544, 3015, '3', 'Anna university ', '', 'BE', '2019', 64.00, '', 1, '2021-01-20 04:07:52', 0, NULL, 0, NULL, 1),
(3545, 3015, '2', 'Matriculation ', '', '', '2015', 79.00, '', 1, '2021-01-20 04:08:18', 0, NULL, 0, NULL, 1),
(3546, 3015, '1', 'Matriculation ', '', '', '2013', 83.00, '', 1, '2021-01-20 04:08:50', 0, NULL, 0, NULL, 1),
(3547, 3016, '3', 'hindustan university', '', 'b-tech information technology', '2020', 70.00, '', 1, '2021-01-20 06:20:40', 0, NULL, 0, NULL, 1),
(3548, 3016, '2', 'Sri Krishnaswamy Matriculation Higher Secondary School', '', '', '2016', 72.00, '', 1, '2021-01-20 06:21:49', 1, '2021-01-20 06:23:21', 0, NULL, 1),
(3549, 3016, '1', 'Amrita Vidyalayam CBSE school', '', '', '2014', 70.00, '', 1, '2021-01-20 06:23:46', 0, NULL, 0, NULL, 1),
(3550, 3017, '3', 'Anna university', '', 'B. E', '2017', 7.23, '', 1, '2021-01-21 09:23:03', 0, NULL, 0, NULL, 1),
(3551, 3019, '5', 'Bangalore university', '', '', '2012', 62.00, '', 1, '2021-01-21 11:32:21', 0, NULL, 0, NULL, 1),
(3552, 3019, '1', 'Karnataka board', '', '', '2007', 62.00, '', 1, '2021-01-21 11:34:15', 0, NULL, 0, NULL, 1),
(3553, 3020, '3', 'Anna University', '', 'B.E', '2020', 68.00, '', 1, '2021-01-21 12:32:17', 0, NULL, 0, NULL, 1),
(3554, 3021, '3', 'Madras university', '', 'B.Sc ', '2019', 70.00, '', 1, '2021-01-21 12:42:27', 0, NULL, 0, NULL, 1),
(3555, 3025, '3', 'Anna university', '', 'B.tech.information technology', '2017', 65.00, '', 1, '2021-01-21 04:15:19', 0, NULL, 0, NULL, 1),
(3556, 3024, '3', 'anna university', '', 'b.e', '2015', 60.00, '', 1, '2021-01-21 04:29:55', 0, NULL, 0, NULL, 1),
(3557, 3026, '1', 'state board', '', '', '2010', 80.00, '', 1, '2021-01-22 11:05:33', 0, NULL, 0, NULL, 1),
(3558, 3026, '2', 'state board', '', '', '2012', 67.00, '', 1, '2021-01-22 11:06:01', 0, NULL, 0, NULL, 1),
(3559, 3026, '3', 'andhra university', '', 'bsc computers', '2015', 80.00, '', 1, '2021-01-22 11:07:06', 0, NULL, 0, NULL, 1),
(3560, 3026, '4', 'sathiyabama university', '', 'mba', '2018', 70.00, '', 1, '2021-01-22 11:07:39', 0, NULL, 0, NULL, 1),
(3561, 3023, '4', 'madraj university', '', 'msc', '2020', 62.00, '', 1, '2021-01-22 11:11:03', 0, NULL, 0, NULL, 1),
(3562, 3028, '3', 'anna university ', '', 'be/eee', '2017', 59.00, '', 1, '2021-01-22 11:18:50', 0, NULL, 0, NULL, 1),
(3563, 3029, '4', 'anna university', '', 'master of computer application', '2013', 81.00, '', 1, '2021-01-22 01:02:45', 0, NULL, 0, NULL, 1),
(3564, 3029, '3', 'thiruvalluvar university', '', 'Bachelor of Computer Application', '2010', 62.00, '', 1, '2021-01-22 01:05:07', 0, NULL, 0, NULL, 1),
(3565, 3029, '2', 'state', '', '', '2007', 63.00, '', 1, '2021-01-22 01:06:16', 0, NULL, 0, NULL, 1),
(3566, 3029, '1', 'state', '', '', '2005', 61.00, '', 1, '2021-01-22 01:06:53', 0, NULL, 0, NULL, 1),
(3567, 3030, '4', 'Anna University Chennai', '', 'MCA', '2015', 7.20, '', 1, '2021-01-22 03:55:35', 0, NULL, 0, NULL, 1),
(3568, 3018, '3', 'anna university', '', 'b.e mech', '2017', 69.00, '', 1, '2021-01-22 06:27:42', 0, NULL, 0, NULL, 1),
(3569, 3018, '2', 'state board', '', '', '2013', 82.33, '', 1, '2021-01-22 06:28:43', 0, NULL, 0, NULL, 1),
(3570, 3018, '1', 'state board', '', '', '2011', 90.60, '', 1, '2021-01-22 06:29:23', 0, NULL, 0, NULL, 1),
(3571, 3031, '1', 'State', '', '', '2014', 66.00, '', 1, '2021-01-22 06:48:48', 0, NULL, 0, NULL, 1),
(3572, 3031, '2', 'State', '', '', '2016', 57.00, '', 1, '2021-01-22 06:49:04', 0, NULL, 0, NULL, 1),
(3573, 3032, '3', 'madras university', '', 'b a', '2018', 60.00, '', 1, '2021-01-22 08:07:48', 0, NULL, 0, NULL, 1),
(3574, 3031, '3', 'Vels University', '', 'BCA', '2019', 61.00, '', 1, '2021-01-22 08:34:24', 0, NULL, 0, NULL, 1),
(3575, 3033, '3', 'Medea\'s university', '', 'degree', '2014', 73.00, '', 1, '2021-01-23 10:25:54', 0, NULL, 0, NULL, 1),
(3576, 3034, '1', 'State Board', '', '', '2012', 84.00, '', 1, '2021-01-23 11:58:07', 0, NULL, 0, NULL, 1),
(3577, 3034, '2', 'State Board', '', '', '2014', 92.00, '', 1, '2021-01-23 11:58:37', 0, NULL, 0, NULL, 1),
(3578, 3034, '3', 'Jeppiaar Engineering College', '', 'B. Tech Information Technology', '2018', 75.00, '', 1, '2021-01-23 11:59:31', 0, NULL, 0, NULL, 1),
(3579, 3036, '3', 'Ksr college of engineering ', '', 'B.E', '2017', 75.00, '', 1, '2021-01-23 04:34:17', 0, NULL, 0, NULL, 1),
(3580, 3037, '3', 'MADURAI KAMARAJ UNIVERSITY', '', 'BCA', '2016', 63.00, '', 1, '2021-01-24 06:25:12', 0, NULL, 0, NULL, 1),
(3581, 3038, '3', 'anna university ', '', 'computer science', '2019', 6.17, '', 1, '2021-01-24 11:21:12', 0, NULL, 0, NULL, 1),
(3582, 3038, '1', 'sjns jain school', '', 'computer science', '2013', 86.00, '', 1, '2021-01-24 11:22:49', 1, '2021-01-24 11:23:27', 0, NULL, 0),
(3583, 3038, '2', 'sjns jain school', '', '', '2015', 65.00, '', 1, '2021-01-24 11:23:08', 1, '2021-01-24 11:23:25', 0, NULL, 0),
(3584, 3041, '5', 'anna malai', '', '-', '2016', 60.00, '', 1, '2021-01-25 12:30:22', 0, NULL, 0, NULL, 1),
(3585, 472, '4', 'University of Madras', '', 'M.A', '2019', 73.00, '', 1, '2021-01-25 12:45:50', 0, NULL, 0, NULL, 1),
(3586, 3045, '3', 'anna university', '', 'be cse', '2018', 65.00, '', 1, '2021-01-25 07:42:22', 0, NULL, 0, NULL, 1),
(3587, 3046, '3', 'SRM Valliammai Engineering College', '', 'B.e civil', '2019', 7.20, '', 1, '2021-01-26 02:10:14', 0, NULL, 0, NULL, 1),
(3588, 3049, '3', 'University of Madras', '', 'B.Com', '2008', 68.00, '', 1, '2021-01-27 11:14:27', 0, NULL, 0, NULL, 1),
(3589, 3047, '3', 'Anna university', '', 'B.E', '2020', 5.50, '', 1, '2021-01-27 11:22:31', 0, NULL, 0, NULL, 1),
(3590, 3050, '3', 'Madras', '', 'B.a english literature ', '2015', 70.00, '', 1, '2021-01-27 11:31:28', 0, NULL, 0, NULL, 1),
(3591, 3052, '3', 'University of Madras', '', 'Bsc computer science', '2010', 65.00, '', 1, '2021-01-27 01:34:49', 0, NULL, 0, NULL, 1),
(3592, 3054, '3', 'Anna university', '', 'Electronic and communication engineering', '2020', 69.00, '', 1, '2021-01-27 02:58:37', 0, NULL, 0, NULL, 1),
(3593, 3054, '1', 'state board', '', '', '2014', 94.00, '', 1, '2021-01-27 02:59:35', 0, NULL, 0, NULL, 1),
(3594, 3054, '2', 'State board', '', '', '2016', 90.00, '', 1, '2021-01-27 03:00:03', 0, NULL, 0, NULL, 1),
(3595, 3055, '3', 'Anna University', '', 'B.E', '2019', 60.00, '', 1, '2021-01-27 03:07:01', 0, NULL, 0, NULL, 1),
(3596, 3056, '3', 'anna university', '', 'Engineering ', '2016', 5.90, '', 1, '2021-01-27 03:20:30', 0, NULL, 0, NULL, 1),
(3597, 3058, '4', 'Anu University', '', 'Mba', '2011', 63.00, '', 1, '2021-01-27 05:19:01', 0, NULL, 0, NULL, 1),
(3598, 3059, '3', 'Bharathidasan University', '', 'BCA', '2017', 77.50, '', 1, '2021-01-27 06:02:56', 0, NULL, 0, NULL, 1),
(3599, 3063, '4', 'anna university', '', 'm b a', '2019', 67.00, '', 1, '2021-01-27 06:30:21', 0, NULL, 0, NULL, 1),
(3600, 3064, '3', 'Government College of Engineering,Tirunelveli ', '', 'BE', '2019', 67.00, '', 1, '2021-01-27 06:35:56', 0, NULL, 0, NULL, 1),
(3601, 3065, '4', 'university of madras', '', 'mca', '2020', 81.00, '', 1, '2021-01-27 07:54:23', 1, '2021-01-27 08:00:12', 0, NULL, 0),
(3602, 3065, '3', 'university of madras', '', 'bsc', '2018', 80.00, '', 1, '2021-01-27 07:56:34', 1, '2021-01-27 08:00:19', 0, NULL, 0),
(3603, 3065, '2', 'GOVERNMENT HIGHER SEC SCHOOL', '', '', '2015', 66.00, '', 1, '2021-01-27 07:57:17', 1, '2021-01-27 08:00:07', 0, NULL, 0),
(3604, 3065, '1', 'GOVERNMENT HIGHER SEC SCHOOL', '', '', '2013', 84.00, '', 1, '2021-01-27 07:58:05', 1, '2021-01-27 08:00:15', 0, NULL, 0),
(3605, 3065, '1', 'GOVERNMENT HIGHER SEC SCHOOL', '', '', '2013', 84.00, '', 1, '2021-01-27 08:00:43', 0, NULL, 0, NULL, 1),
(3606, 3065, '2', 'GOVERNMENT HIGHER SEC SCHOOL', '', '', '2015', 66.00, '', 1, '2021-01-27 08:00:58', 0, NULL, 0, NULL, 1),
(3607, 3065, '3', 'university of madras', '', 'bsc', '2018', 80.00, '', 1, '2021-01-27 08:01:41', 0, NULL, 0, NULL, 1),
(3608, 3065, '4', 'university of madras', '', 'mca', '2020', 81.00, '', 1, '2021-01-27 08:02:08', 0, NULL, 0, NULL, 1),
(3609, 3053, '3', 'University of Madras', '', 'B.com ( CS)', '2016', 54.00, '', 1, '2021-01-27 08:17:11', 0, NULL, 0, NULL, 1),
(3610, 3060, '4', 'srm university', '', 'm.tech', '2017', 8.10, '', 1, '2021-01-27 10:09:03', 0, NULL, 0, NULL, 1),
(3611, 3060, '3', 'anna university', '', 'b.e', '2014', 7.30, '', 1, '2021-01-27 10:10:34', 0, NULL, 0, NULL, 1),
(3612, 3042, '3', 'peri institute of technology', '', 'ece', '2018', 65.00, '', 1, '2021-01-27 11:29:00', 0, NULL, 0, NULL, 1),
(3613, 3069, '1', 'state board', '', '', '2011', 90.60, '', 1, '2021-01-28 09:03:42', 0, NULL, 0, NULL, 1),
(3614, 3069, '2', 'state board', '', '', '2013', 82.33, '', 1, '2021-01-28 09:04:09', 0, NULL, 0, NULL, 1),
(3615, 3069, '3', 'anna university', '', 'b.e', '2017', 69.00, '', 1, '2021-01-28 09:05:05', 0, NULL, 0, NULL, 1),
(3616, 3071, '3', 'Tamilnadu open University', '', 'BSC computer science', '2021', 60.00, '', 1, '2021-01-28 10:50:06', 0, NULL, 0, NULL, 1),
(3617, 3074, '3', 'University', '', 'Bachelor of engineering', '2018', 69.00, '', 1, '2021-01-28 11:06:34', 0, NULL, 0, NULL, 1),
(3618, 3070, '4', 'Anna University ', '', 'MCA', '2019', 72.00, '', 1, '2021-01-28 11:30:13', 0, NULL, 0, NULL, 1),
(3619, 3072, '3', 'Madras University', '', 'B.sc.com.sci', '2015', 60.00, '', 1, '2021-01-28 12:06:03', 0, NULL, 0, NULL, 1),
(3620, 3061, '3', 'Anna university', '', 'B.E', '2018', 69.00, '', 1, '2021-01-28 12:30:56', 0, NULL, 0, NULL, 1),
(3621, 3066, '4', 'Crescent University', '', 'Mca', '2021', 65.00, '', 1, '2021-01-28 12:48:18', 0, NULL, 0, NULL, 1),
(3622, 3078, '1', 'state board', '', '', '2013', 97.00, '', 1, '2021-01-28 01:13:32', 0, NULL, 0, NULL, 1),
(3623, 3078, '2', 'state board', '', '', '2015', 90.00, '', 1, '2021-01-28 01:13:48', 0, NULL, 0, NULL, 1),
(3624, 3078, '3', 'anna university', '', 'be', '2019', 65.00, '', 1, '2021-01-28 01:14:12', 0, NULL, 0, NULL, 1),
(3625, 3079, '3', 'Sri krishna college', '', 'Btech', '2015', 69.00, '', 1, '2021-01-28 01:18:29', 0, NULL, 0, NULL, 1),
(3626, 3076, '3', 'anna university', '', 'b.e', '2016', 6.89, '', 1, '2021-01-28 01:35:38', 0, NULL, 0, NULL, 1),
(3627, 3080, '3', 'University', '', 'B.com general', '2019', 59.00, '', 1, '2021-01-28 02:01:53', 0, NULL, 0, NULL, 1),
(3628, 3081, '3', 'University of Madras', '', 'B.Sc computer science', '2015', 63.00, '', 1, '2021-01-28 06:08:42', 0, NULL, 0, NULL, 1),
(3629, 3082, '3', 'Madras University', '', 'B.com cs', '2016', 75.00, '', 1, '2021-01-28 06:52:44', 0, NULL, 0, NULL, 1),
(3630, 3083, '4', 'Sv university', '', 'MBA', '2020', 75.00, '', 1, '2021-01-29 10:58:03', 0, NULL, 0, NULL, 1),
(3631, 3083, '3', 'Sv university', '', 'B. Com', '2018', 70.00, '', 1, '2021-01-29 10:58:47', 0, NULL, 0, NULL, 1),
(3632, 3083, '2', 'Secondary education andhra pradesh', '', '', '2014', 66.00, '', 1, '2021-01-29 10:59:57', 0, NULL, 0, NULL, 1),
(3633, 3084, '3', 'anna university', '', 'be', '2019', 7.70, '', 1, '2021-01-29 12:09:10', 0, NULL, 0, NULL, 1),
(3634, 3077, '1', 'matriculation', '', '', '2014', 87.40, '', 1, '2021-01-29 12:24:14', 0, NULL, 0, NULL, 1),
(3635, 3085, '3', 'University of Madras', '', 'BA English literature', '2020', 62.00, '', 1, '2021-01-29 01:03:06', 0, NULL, 0, NULL, 1),
(3636, 3087, '2', 'Nios', '', '', '2020', 50.00, '', 1, '2021-01-29 02:04:22', 0, NULL, 0, NULL, 1),
(3637, 3088, '3', 'Madras university', '', 'Bsc', '2018', 83.00, '', 1, '2021-01-29 03:09:14', 0, NULL, 0, NULL, 1),
(3638, 3089, '3', 'Anna University', '', 'B.E', '2019', 67.00, '', 1, '2021-01-29 03:53:42', 0, NULL, 0, NULL, 1),
(3639, 3090, '3', 'Madras university', '', 'B sc computer science', '2018', 70.00, '', 1, '2021-01-29 04:11:20', 0, NULL, 0, NULL, 1),
(3640, 3091, '3', 'anna university', '', 'b.e', '2016', 77.00, '', 1, '2021-01-29 04:51:37', 0, NULL, 0, NULL, 1),
(3641, 3093, '3', 'Anna University', '', 'Bachelor of Engineering', '2019', 6.48, '', 1, '2021-01-29 06:46:07', 0, NULL, 0, NULL, 1),
(3642, 3093, '2', 'State Board', '', '', '2015', 78.00, '', 1, '2021-01-29 06:46:33', 0, NULL, 0, NULL, 1),
(3643, 3093, '1', 'Central Board of Secondary Education', '', '', '2013', 8.40, '', 1, '2021-01-29 06:47:10', 0, NULL, 0, NULL, 1),
(3644, 3094, '3', 'srm university', '', 'bca - computer application', '2018', 56.00, '', 1, '2021-01-29 08:06:02', 0, NULL, 0, NULL, 1),
(3645, 3094, '2', 'hse', '', '', '2015', 68.25, '', 1, '2021-01-29 08:08:06', 0, NULL, 0, NULL, 1),
(3646, 3094, '1', 'hse', '', '', '2013', 88.20, '', 1, '2021-01-29 08:08:33', 0, NULL, 0, NULL, 1),
(3647, 3086, '4', 'Annamalai University', '', 'Mca', '2017', 70.00, '', 1, '2021-01-29 08:53:05', 0, NULL, 0, NULL, 1),
(3648, 3095, '3', 'dr ram manohar lohia avadh', '', 'bcom', '2014', 55.00, '', 1, '2021-01-30 10:34:40', 0, NULL, 0, NULL, 1),
(3649, 3095, '2', 'cbse', '', '', '2011', 72.00, '', 1, '2021-01-30 10:34:59', 0, NULL, 0, NULL, 1),
(3650, 3095, '1', 'icse', '', '', '2009', 68.00, '', 1, '2021-01-30 10:35:16', 0, NULL, 0, NULL, 1),
(3651, 3096, '3', 'Meenakshi college', '', 'Bcom', '2007', 66.60, '', 1, '2021-01-30 11:12:16', 0, NULL, 0, NULL, 1),
(3652, 3098, '4', 'Chennai University', '', 'MCA', '2014', 75.00, '', 1, '2021-01-30 11:26:37', 0, NULL, 0, NULL, 1),
(3653, 3100, '3', 'Madras University', '', 'Bsc', '2017', 62.00, '', 1, '2021-01-30 04:50:52', 0, NULL, 0, NULL, 1),
(3654, 3102, '4', 'Anna', '', 'Marketing', '2005', 73.00, '', 1, '2021-01-31 11:38:34', 0, NULL, 0, NULL, 1),
(3655, 3105, '3', 'anna university', '', 'be', '2020', 65.00, '', 1, '2021-01-31 06:22:27', 0, NULL, 0, NULL, 1),
(3656, 3105, '2', 'state board', '', '', '2016', 60.00, '', 1, '2021-01-31 06:23:17', 0, NULL, 0, NULL, 1),
(3657, 3105, '1', 'state board', '', '', '2020', 81.00, '', 1, '2021-01-31 06:23:51', 0, NULL, 0, NULL, 1),
(3658, 3104, '3', 'madras university', '', 'b c a', '2019', 73.00, '', 1, '2021-01-31 07:34:02', 0, NULL, 0, NULL, 1),
(3659, 3106, '5', 'madras university', '', 'e e e', '2013', 74.00, '', 1, '2021-01-31 09:59:15', 0, NULL, 0, NULL, 1),
(3660, 3107, '4', 'University of Madras', '', 'MSc, physics', '2019', 68.00, '', 1, '2021-02-01 09:27:23', 0, NULL, 0, NULL, 1),
(3661, 3107, '3', 'University of Madras', '', 'Bsc', '2016', 59.40, '', 1, '2021-02-01 09:28:32', 0, NULL, 0, NULL, 1),
(3662, 3108, '3', 'Madras university ', '', 'BCA', '2020', 68.00, '', 1, '2021-02-01 10:28:41', 0, NULL, 0, NULL, 1),
(3663, 3112, '4', 'University of Madras', '', 'Master of business administration', '2019', 61.00, '', 1, '2021-02-01 11:16:21', 0, NULL, 0, NULL, 1),
(3664, 3112, '3', 'Anna university', '', 'Bachelor of engineering', '2016', 75.00, '', 1, '2021-02-01 11:16:47', 0, NULL, 0, NULL, 1),
(3665, 3112, '2', 'State board', '', '', '2012', 74.00, '', 1, '2021-02-01 11:17:19', 0, NULL, 0, NULL, 1),
(3666, 3112, '1', 'State board of Tamil Nadu', '', '', '2010', 83.00, '', 1, '2021-02-01 11:17:50', 0, NULL, 0, NULL, 1),
(3667, 3113, '4', 'American heritage university', '', 'MBA', '2020', 6.50, '', 1, '2021-02-01 12:04:38', 0, NULL, 0, NULL, 1),
(3668, 3114, '3', 'Ksr college of engineering ', '', 'B.E.,', '2017', 75.00, '', 1, '2021-02-01 12:20:14', 0, NULL, 0, NULL, 1),
(3669, 3115, '3', 'Madras university', '', 'Bachelor of Business administration', '2016', 67.00, '', 1, '2021-02-01 01:05:46', 0, NULL, 0, NULL, 1),
(3670, 3111, '2', 'hsc', '', '', '2010', 73.00, '', 1, '2021-02-01 01:38:57', 0, NULL, 0, NULL, 1),
(3671, 3118, '3', 'Anna University', '', 'B.Tech', '2015', 62.00, '', 1, '2021-02-01 04:43:11', 0, NULL, 0, NULL, 1),
(3672, 3120, '1', 'Rani matric hir sec school', '', 'MBA (finance)', '2013', 60.00, '', 1, '2021-02-02 09:01:36', 0, NULL, 0, NULL, 1),
(3673, 3120, '2', 'Al-hudha Martic Hr Sec School ', '', '', '2015', 63.00, '', 1, '2021-02-02 09:02:34', 0, NULL, 0, NULL, 1),
(3674, 3120, '3', 'Madras University ', '', 'B.COM ', '2018', 76.00, '', 1, '2021-02-02 09:03:43', 0, NULL, 0, NULL, 1),
(3675, 3120, '4', 'Crescent university ', '', 'MBA (finance)', '2020', 75.00, '', 1, '2021-02-02 09:04:20', 0, NULL, 0, NULL, 1),
(3676, 3121, '1', 'Sri jayendra Golden jublee Hr Sec school', '', '', '2013', 86.50, '', 1, '2021-02-02 09:19:22', 0, NULL, 0, NULL, 1),
(3677, 3121, '2', 'Sri jayendra Golden jublee Hr Sec school', '', '', '2015', 73.00, '', 1, '2021-02-02 09:20:23', 0, NULL, 0, NULL, 1),
(3678, 3121, '3', 'Jamal Mohamed college', '', 'BCA', '2018', 6.50, '', 1, '2021-02-02 09:21:34', 0, NULL, 0, NULL, 1),
(3679, 3121, '4', 'Hindustan College of arts and science', '', 'MBA', '2020', 5.90, '', 1, '2021-02-02 09:22:17', 0, NULL, 0, NULL, 1),
(3680, 3124, '3', 'Anna University', '', 'BE', '2017', 6.20, '', 1, '2021-02-02 10:56:51', 0, NULL, 0, NULL, 1),
(3681, 3126, '3', 'Anna University - Thirukkuvalai campus', '', 'B.E', '2017', 68.00, '', 1, '2021-02-02 11:13:00', 0, NULL, 0, NULL, 1),
(3682, 3126, '1', 'D.B.T.R Higher Secondary School', '', '', '2011', 92.00, '', 1, '2021-02-02 11:13:40', 0, NULL, 0, NULL, 1),
(3683, 3126, '2', 'C.S.I Higher Secondary School', '', '', '2013', 80.50, '', 1, '2021-02-02 11:14:31', 0, NULL, 0, NULL, 1),
(3684, 3125, '3', 'Vels university ', '', 'B. Sc bio computing ', '2018', 51.00, '', 1, '2021-02-02 11:17:48', 0, NULL, 0, NULL, 1),
(3685, 3128, '5', 'Dott', '', 'Diploma', '2013', 70.00, '', 1, '2021-02-02 12:19:16', 0, NULL, 0, NULL, 1),
(3686, 3127, '2', 'Thiruvalluvar', '', '', '2018', 72.00, '', 1, '2021-02-02 12:53:36', 0, NULL, 0, NULL, 1),
(3687, 3129, '3', 'bharathithasan ', '', 'b.com ca', '2019', 72.00, '', 1, '2021-02-02 02:40:55', 0, NULL, 0, NULL, 1),
(3688, 3130, '3', 'Rvs Technical campus-coimbatore', '', 'BE(mECHATRONICS ENGINEERING', '2018', 6.00, '', 1, '2021-02-02 03:11:15', 0, NULL, 0, NULL, 1),
(3689, 3131, '3', 'madras university', '', 'bca', '2017', 63.00, '', 1, '2021-02-02 03:42:24', 0, NULL, 0, NULL, 1),
(3690, 3134, '2', 'state board', '', '', '2006', 61.00, '', 1, '2021-02-02 10:58:05', 0, NULL, 0, NULL, 1),
(3691, 3140, '5', 'Mohamed sathak', '', '', '2012', 70.00, '', 1, '2021-02-03 10:37:50', 0, NULL, 0, NULL, 1),
(3692, 3133, '3', 'madras university', '', 'b.com', '2020', 53.23, '', 1, '2021-02-03 11:02:01', 0, NULL, 0, NULL, 1),
(3693, 3132, '3', 'madras university ', '', 'b.com corporate secretaryship ', '2020', 70.00, '', 1, '2021-02-03 11:18:02', 0, NULL, 0, NULL, 1),
(3694, 3146, '3', 'Jawaharlal Nehru Technological University anantapuram', '', 'Computer science engineering', '2017', 65.00, '', 1, '2021-02-03 03:47:15', 0, NULL, 0, NULL, 1),
(3695, 3147, '3', 'university', '', 'b.com', '2020', 80.00, '', 1, '2021-02-03 04:20:11', 0, NULL, 0, NULL, 1),
(3696, 3152, '3', 'Anna University', '', 'B.Tech', '2019', 7.20, '', 1, '2021-02-03 05:38:10', 0, NULL, 0, NULL, 1),
(3697, 3145, '3', 'Madras University', '', 'B.A Economics', '2020', 80.00, '', 1, '2021-02-03 05:57:52', 0, NULL, 0, NULL, 1),
(3698, 3151, '3', 'Bharath Institute of Higher education and  research', '', 'Bachelor of technology', '2018', 86.00, '', 1, '2021-02-03 06:13:38', 0, NULL, 0, NULL, 1),
(3699, 3150, '3', 'Autonomous', '', 'B.com Gen', '2020', 65.38, '', 1, '2021-02-03 06:43:22', 0, NULL, 0, NULL, 1),
(3700, 3154, '1', 'tamilnadu state board', '', '', '2015', 86.20, '', 1, '2021-02-03 06:50:23', 0, NULL, 0, NULL, 1),
(3701, 3154, '2', 'tamilnadu state board', '', '', '2017', 74.76, '', 1, '2021-02-03 06:51:08', 0, NULL, 0, NULL, 1),
(3702, 3154, '3', 'hindustan institute of technology and science', '', 'b.tech computer science and engineering', '2021', 79.21, '', 1, '2021-02-03 06:52:31', 0, NULL, 0, NULL, 1),
(3703, 3155, '3', 'anna university', '', 'be', '2018', 6.60, '', 1, '2021-02-03 07:57:06', 0, NULL, 0, NULL, 1),
(3704, 3155, '2', 'state board', '', '', '2014', 54.50, '', 1, '2021-02-03 07:58:41', 0, NULL, 0, NULL, 1),
(3705, 3155, '1', 'state board', '', '', '2012', 74.10, '', 1, '2021-02-03 07:59:16', 0, NULL, 0, NULL, 1),
(3706, 3051, '4', 'Crescent university ', '', 'MBA', '2020', 78.00, '', 1, '2021-02-03 11:16:14', 0, NULL, 0, NULL, 1),
(3707, 3156, '3', 'Vels university ', '', 'be civil ', '2020', 60.00, '', 1, '2021-02-04 10:47:41', 0, NULL, 0, NULL, 1),
(3708, 3160, '3', 'Anna university', '', 'BE', '2017', 60.00, '', 1, '2021-02-04 11:21:22', 0, NULL, 0, NULL, 1),
(3709, 3149, '3', 'Madras university', '', 'B.com Corporate secretariship', '2020', 65.00, '', 1, '2021-02-04 11:57:53', 0, NULL, 0, NULL, 1),
(3710, 3163, '4', 'Anna university', '', 'MBA finance & operations', '2018', 73.00, '', 1, '2021-02-04 12:10:31', 0, NULL, 0, NULL, 1),
(3711, 3161, '3', 'Madras university', '', 'B.com corporate secretaryship', '2020', 61.00, '', 1, '2021-02-04 12:22:13', 0, NULL, 0, NULL, 1),
(3712, 3148, '3', 'autonomous', '', 'ba english', '2019', 60.00, '', 1, '2021-02-04 01:23:17', 1, '2021-02-04 01:23:45', 0, NULL, 1),
(3713, 3172, '3', 'Anna University', '', 'BE', '2018', 65.00, '', 1, '2021-02-04 03:13:17', 0, NULL, 0, NULL, 1),
(3714, 3176, '3', 'Bharath University ', '', 'B.tech', '2018', 8.40, '', 1, '2021-02-04 08:57:46', 0, NULL, 0, NULL, 1),
(3715, 3177, '3', 'Anna University', '', 'BE (CSE)', '2018', 87.00, '', 1, '2021-02-04 09:00:01', 0, NULL, 0, NULL, 1),
(3716, 3177, '1', 'State Board', '', '', '2012', 83.00, '', 1, '2021-02-04 09:01:16', 1, '2021-02-04 09:02:15', 0, NULL, 1),
(3717, 3177, '2', 'State board', '', '', '2014', 92.00, '', 1, '2021-02-04 09:01:54', 0, NULL, 0, NULL, 1),
(3718, 3178, '3', 'Anna university', '', 'Bachelor of engineering', '2017', 61.00, '', 1, '2021-02-04 10:51:08', 0, NULL, 0, NULL, 1),
(3719, 3180, '1', 'State board', '', '', '2005', 65.00, '', 1, '2021-02-05 12:00:33', 0, NULL, 0, NULL, 1),
(3720, 3180, '5', 'DOTE', '', 'Diplamo ', '2008', 78.00, '', 1, '2021-02-05 12:01:17', 0, NULL, 0, NULL, 1),
(3721, 3180, '3', 'Anna university', '', 'Bachelor of engineering in computer science', '2011', 68.00, '', 1, '2021-02-05 12:02:17', 0, NULL, 0, NULL, 1),
(3722, 3181, '4', 'JNTUA', '', 'B.SC', '2016', 76.00, '', 1, '2021-02-05 12:14:29', 0, NULL, 0, NULL, 1),
(3723, 3182, '3', 'SRM University', '', 'Btech', '2017', 6.55, '', 1, '2021-02-05 12:31:47', 0, NULL, 0, NULL, 1),
(3724, 3183, '3', 'tamilnadu open university', '', 'bsc', '2011', 70.00, '', 1, '2021-02-05 01:45:20', 0, NULL, 0, NULL, 1),
(3725, 3174, '3', 'B.S. ABDUR RAHMAN CRESCENT INSTITUTE OF SCIENCE AND TECHNOLOGY', '', 'B.Tech ECE', '2020', 72.80, '', 1, '2021-02-05 04:30:21', 0, NULL, 0, NULL, 1),
(3726, 3184, '1', 'state board', '', '', '2013', 91.00, '', 1, '2021-02-05 04:56:23', 0, NULL, 0, NULL, 1),
(3727, 3184, '2', 'state board', '', '', '2015', 85.00, '', 1, '2021-02-05 04:56:55', 1, '2021-02-05 04:57:15', 0, NULL, 1),
(3728, 3184, '3', 'anna university', '', 'b.tech information technology', '2019', 6.67, '', 1, '2021-02-05 04:57:59', 0, NULL, 0, NULL, 1),
(3729, 3185, '3', 'vellore institute of technology', '', 'b tech ece', '2019', 83.00, '', 1, '2021-02-05 05:10:03', 0, NULL, 0, NULL, 1),
(3730, 3185, '1', 'good shepherd convent', '', '', '2013', 97.50, '', 1, '2021-02-05 05:11:18', 1, '2021-02-05 05:11:37', 0, NULL, 1),
(3731, 3185, '2', 'good shepherd convent', '', '', '2015', 93.30, '', 1, '2021-02-05 05:12:03', 0, NULL, 0, NULL, 1),
(3732, 3188, '3', 'anna university', '', 'b e', '2019', 69.00, '', 1, '2021-02-05 09:07:57', 0, NULL, 0, NULL, 1),
(3733, 3189, '3', 'b c a', '', 'vels university', '2017', 70.00, '', 1, '2021-02-05 09:20:29', 0, NULL, 0, NULL, 1),
(3734, 3190, '3', 'bharathidasan university', '', 'bca', '2018', 61.00, '', 1, '2021-02-06 09:46:29', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3735, 3190, '2', 'durai kamalam goverment higher secoundary', '', '', '2015', 61.00, '', 1, '2021-02-06 09:47:41', 0, NULL, 0, NULL, 1),
(3736, 3190, '1', 'r.c higher secoundary', '', '', '2013', 88.00, '', 1, '2021-02-06 09:48:19', 0, NULL, 0, NULL, 1),
(3737, 3191, '4', 'Bishop Heber College', '', 'MCA', '2016', 74.00, '', 1, '2021-02-06 10:35:33', 0, NULL, 0, NULL, 1),
(3738, 3191, '3', 'St\'Joseph\'s College', '', 'Bsc CS', '2013', 63.00, '', 1, '2021-02-06 10:37:22', 0, NULL, 0, NULL, 1),
(3739, 3191, '2', 'St\'Joseph\'s hr sec school', '', '', '2010', 68.00, '', 1, '2021-02-06 10:38:19', 0, NULL, 0, NULL, 1),
(3740, 3191, '1', 'St\'Joseph\'s hr sec school', '', '', '2008', 74.00, '', 1, '2021-02-06 10:38:54', 0, NULL, 0, NULL, 1),
(3741, 3193, '3', 'Madras University', '', 'B.C.A', '2020', 66.00, '', 1, '2021-02-06 10:51:53', 0, NULL, 0, NULL, 1),
(3742, 3192, '3', 'anna university', '', 'engineering', '2017', 67.00, '', 1, '2021-02-06 10:59:01', 0, NULL, 0, NULL, 1),
(3743, 3192, '2', 'govt hr sec school', '', '', '2013', 77.00, '', 1, '2021-02-06 10:59:23', 0, NULL, 0, NULL, 1),
(3744, 3192, '1', 'govt hr sec school', '', '', '2011', 88.00, '', 1, '2021-02-06 10:59:40', 0, NULL, 0, NULL, 1),
(3745, 3194, '3', 'Tumkur university ', '', 'Bcom', '2019', 53.00, '', 1, '2021-02-06 11:00:10', 0, NULL, 0, NULL, 1),
(3746, 3195, '4', 'Bput', '', 'Mba', '2015', 61.00, '', 1, '2021-02-06 11:17:50', 0, NULL, 0, NULL, 1),
(3747, 3195, '2', 'Odisha board', '', '', '2007', 51.00, '', 1, '2021-02-06 11:19:12', 0, NULL, 0, NULL, 1),
(3748, 3196, '4', 'Anna university ', '', 'MBA ', '2014', 58.00, '', 1, '2021-02-06 12:44:11', 0, NULL, 0, NULL, 1),
(3749, 3199, '4', 'Anna university', '', 'M.b.A', '2018', 65.00, '', 1, '2021-02-06 01:23:13', 0, NULL, 0, NULL, 1),
(3750, 3200, '3', 'thiruvalluvar university', '', 'bsc', '2015', 80.50, '', 1, '2021-02-06 02:10:11', 0, NULL, 0, NULL, 1),
(3751, 3201, '3', 'Madras University', '', '', '2018', 65.00, '', 1, '2021-02-06 03:31:02', 0, NULL, 0, NULL, 1),
(3752, 3202, '3', 'Anna university', '', 'BE. ELECTRONICS AND COMMUNICATION ENGINEERING', '2019', 86.00, '', 1, '2021-02-06 05:35:28', 0, NULL, 0, NULL, 1),
(3753, 3204, '3', 'madras university', '', 'bcom', '2016', 55.00, '', 1, '2021-02-06 08:13:42', 0, NULL, 0, NULL, 1),
(3754, 3205, '3', 'madras university', '', 'bcom', '2017', 68.70, '', 1, '2021-02-06 08:30:51', 0, NULL, 0, NULL, 1),
(3755, 3206, '3', 'Madras University', '', 'B.C.A', '2021', 68.00, '', 1, '2021-02-06 10:00:26', 0, NULL, 0, NULL, 1),
(3756, 3208, '3', 'Autonomous', '', 'B.com generam', '2020', 51.00, '', 1, '2021-02-07 12:03:08', 0, NULL, 0, NULL, 1),
(3757, 3203, '1', 'state board', '', '', '2013', 84.00, '', 1, '2021-02-07 09:20:42', 0, NULL, 0, NULL, 1),
(3758, 3203, '2', 'state board', '', '', '2015', 65.00, '', 1, '2021-02-07 09:21:10', 0, NULL, 0, NULL, 1),
(3759, 3203, '3', 'anna university', '', 'be', '2019', 72.00, '', 1, '2021-02-07 09:21:51', 0, NULL, 0, NULL, 1),
(3760, 3211, '2', 'Vels university', '', '', '2020', 52.00, '', 1, '2021-02-08 10:14:19', 0, NULL, 0, NULL, 1),
(3761, 3209, '3', 'Madras University', '', 'Bcom ', '2020', 62.00, '', 1, '2021-02-08 10:23:33', 0, NULL, 0, NULL, 1),
(3762, 3213, '3', 'Patrician College of arts and science', '', 'Ba. English', '2020', 50.00, '', 1, '2021-02-08 10:52:29', 0, NULL, 0, NULL, 1),
(3763, 3179, '3', 'Presidency collage of Autonomous', '', 'B.A Political science', '2017', 70.00, '', 1, '2021-02-08 11:10:19', 0, NULL, 0, NULL, 1),
(3764, 3187, '3', 'Guru Nanak college (Autonomous)', '', 'BCA', '2018', 65.00, '', 1, '2021-02-08 11:22:16', 0, NULL, 0, NULL, 1),
(3765, 3210, '3', 'anna university', '', 'b.tech it', '2019', 56.00, '', 1, '2021-02-08 12:42:59', 0, NULL, 0, NULL, 1),
(3766, 3214, '3', 'madras university', '', 'bba', '2017', 60.00, '', 1, '2021-02-08 01:08:20', 0, NULL, 0, NULL, 1),
(3767, 3215, '4', 'Chandbali college chandbali', '', '', '2018', 54.33, '', 1, '2021-02-08 01:16:29', 0, NULL, 0, NULL, 1),
(3768, 3215, '4', 'Chandbali college chandbali', '', '', '2018', 54.33, '', 1, '2021-02-08 01:18:13', 0, NULL, 0, NULL, 1),
(3769, 3216, '3', 'Madras University', '', 'B.sc', '2015', 72.00, '', 1, '2021-02-08 01:46:50', 0, NULL, 0, NULL, 1),
(3770, 3219, '3', 'Madras University ', '', 'Bsc', '2018', 58.00, '', 1, '2021-02-08 02:43:59', 0, NULL, 0, NULL, 1),
(3771, 3220, '3', 'Anna university ', '', 'BE Aeronautical', '2020', 6.50, '', 1, '2021-02-08 03:28:04', 0, NULL, 0, NULL, 1),
(3772, 3223, '1', 'carmel hsc', '', '', '2013', 74.00, '', 1, '2021-02-09 09:25:20', 1, '2021-02-09 09:25:50', 0, NULL, 1),
(3773, 3223, '2', 'carmel hsc', '', '', '2015', 64.00, '', 1, '2021-02-09 09:26:22', 0, NULL, 0, NULL, 1),
(3774, 3223, '3', 'thiruvalluvar', '', 'bca', '2018', 62.00, '', 1, '2021-02-09 09:26:54', 0, NULL, 0, NULL, 1),
(3775, 3224, '3', 'Madras University', '', 'B.sc', '2019', 73.00, '', 1, '2021-02-09 10:44:49', 0, NULL, 0, NULL, 1),
(3776, 3226, '3', 'vpmm engineering college for women', '', 'btech', '2019', 7.50, '', 1, '2021-02-09 11:03:05', 0, NULL, 0, NULL, 1),
(3777, 3226, '2', 'vinayakar matriculation higher secondary school', '', '', '2015', 75.00, '', 1, '2021-02-09 11:07:00', 0, NULL, 0, NULL, 1),
(3778, 3226, '1', 'vinayakar amtriculation higher secondary school', '', '', '2013', 90.00, '', 1, '2021-02-09 11:07:33', 0, NULL, 0, NULL, 1),
(3779, 3225, '1', 'state board', '', '', '2013', 88.40, '', 1, '2021-02-09 11:07:34', 0, NULL, 0, NULL, 1),
(3780, 3225, '2', 'state board', '', '', '2015', 79.00, '', 1, '2021-02-09 11:08:17', 0, NULL, 0, NULL, 1),
(3781, 3225, '3', 'anna university', '', 'b.tech/it', '2019', 7.63, '', 1, '2021-02-09 11:09:15', 0, NULL, 0, NULL, 1),
(3782, 3229, '3', 'kamaraj university', '', 'bsc computer science', '2019', 75.00, '', 1, '2021-02-09 01:01:34', 0, NULL, 0, NULL, 1),
(3783, 3222, '3', 'D.D.U ', '', 'B.com', '2015', 45.00, '', 1, '2021-02-09 01:18:47', 0, NULL, 0, NULL, 1),
(3784, 3227, '3', 'quaid-e-millath government college for women', '', 'b.sc', '2019', 75.00, '', 1, '2021-02-09 02:12:58', 1, '2021-02-09 02:14:41', 0, NULL, 0),
(3785, 3227, '2', 'state board', '', '', '2016', 82.00, '', 1, '2021-02-09 02:14:29', 1, '2021-02-09 02:14:45', 0, NULL, 0),
(3786, 3227, '1', 'state board', '', '', '2014', 91.00, '', 1, '2021-02-09 02:15:39', 0, NULL, 0, NULL, 1),
(3787, 3227, '2', 'state board', '', '', '2016', 82.00, '', 1, '2021-02-09 02:15:58', 0, NULL, 0, NULL, 1),
(3788, 3227, '3', 'quaid-e-millath government college for women', '', 'b.sc', '2019', 75.00, '', 1, '2021-02-09 02:16:41', 0, NULL, 0, NULL, 1),
(3789, 3230, '1', 'State  Board', '', '', '2013', 74.00, '', 1, '2021-02-09 02:26:25', 0, NULL, 0, NULL, 1),
(3790, 3230, '3', 'Madras   University', '', 'BSc (Computer Science)', '2018', 70.00, '', 1, '2021-02-09 02:27:24', 1, '2021-02-09 02:29:32', 0, NULL, 1),
(3791, 3231, '3', 'madras univesity', '', 'b a', '2003', 58.00, '', 1, '2021-02-09 03:09:00', 0, NULL, 0, NULL, 1),
(3792, 3232, '4', 'anna university', '', 'm  b a', '2020', 60.00, '', 1, '2021-02-09 03:17:53', 0, NULL, 0, NULL, 1),
(3793, 3234, '3', 'Anna University ', '', 'B. E', '2018', 74.00, '', 1, '2021-02-09 03:35:42', 0, NULL, 0, NULL, 1),
(3794, 3234, '1', 'State Board', '', '', '2012', 83.00, '', 1, '2021-02-09 03:37:01', 1, '2021-02-09 03:38:30', 0, NULL, 1),
(3795, 3234, '2', 'State Board', '', '', '2014', 76.00, '', 1, '2021-02-09 03:37:51', 1, '2021-02-09 03:38:45', 0, NULL, 1),
(3796, 3238, '4', 'anna university new prince shri bhavani college of engg and tech', '', 'master of computer application', '2019', 82.00, '', 1, '2021-02-09 06:02:59', 0, NULL, 0, NULL, 1),
(3797, 3238, '3', 'madras university  The Quaide Milleth College For Men', '', 'b.sc computer science', '2017', 72.00, '', 1, '2021-02-09 06:04:21', 0, NULL, 0, NULL, 1),
(3798, 3239, '1', 'board', '', '', '2009', 78.00, '', 1, '2021-02-09 07:02:18', 0, NULL, 0, NULL, 1),
(3799, 3239, '2', 'board', '', '', '2011', 76.00, '', 1, '2021-02-09 07:02:31', 0, NULL, 0, NULL, 1),
(3800, 3239, '3', 'university', '', 'b.tech', '2015', 60.00, '', 1, '2021-02-09 07:02:56', 0, NULL, 0, NULL, 1),
(3801, 3240, '3', 'madras university', '', 'bcom', '2016', 50.00, '', 1, '2021-02-09 08:53:53', 0, NULL, 0, NULL, 1),
(3802, 3241, '3', 'annauniversity', '', 'b e', '2019', 6.43, '', 1, '2021-02-09 09:01:14', 0, NULL, 0, NULL, 1),
(3803, 3242, '1', 'State', '', '', '2014', 90.00, '', 1, '2021-02-09 09:13:35', 1, '2021-02-09 09:13:57', 0, NULL, 1),
(3804, 3242, '2', 'State', '', '', '2016', 75.00, '', 1, '2021-02-09 09:14:20', 0, NULL, 0, NULL, 1),
(3805, 3242, '3', 'Anna university', '', 'B.Tech', '2020', 75.00, '', 1, '2021-02-09 09:15:11', 0, NULL, 0, NULL, 1),
(3806, 3243, '4', 'anna univeristy', '', 'm b a', '2010', 70.00, '', 1, '2021-02-10 09:37:18', 0, NULL, 0, NULL, 1),
(3807, 3243, '4', 'anna univeristy', '', 'm b a', '2010', 70.00, '', 1, '2021-02-10 09:37:18', 1, '2021-02-10 09:37:28', 0, NULL, 0),
(3808, 3237, '3', 'Kakatiya University', '', 'Bcom(CA) ', '2015', 66.00, '', 1, '2021-02-10 10:30:21', 0, NULL, 0, NULL, 1),
(3809, 3237, '1', 'Zp boys high school', '', '', '2010', 63.00, '', 1, '2021-02-10 10:35:43', 0, NULL, 0, NULL, 1),
(3810, 3237, '2', 'Repalle junior collage ', '', '', '2012', 64.00, '', 1, '2021-02-10 10:36:31', 0, NULL, 0, NULL, 1),
(3811, 3245, '3', 'Anna University', '', 'Bachelor of engineering', '2019', 62.00, '', 1, '2021-02-10 10:52:14', 0, NULL, 0, NULL, 1),
(3812, 3246, '3', 'The new college ', '', 'BBA ', '2018', 60.00, '', 1, '2021-02-10 11:07:41', 0, NULL, 0, NULL, 1),
(3813, 3247, '3', 'bangalore university ', '', 'b com', '2018', 62.00, '', 1, '2021-02-10 12:11:23', 0, NULL, 0, NULL, 1),
(3814, 3197, '3', 'Madras university', '', 'Bba', '2020', 68.00, '', 1, '2021-02-10 12:15:27', 0, NULL, 0, NULL, 1),
(3815, 3248, '4', 'Anna university ', '', 'Mba', '2019', 55.00, '', 1, '2021-02-10 12:17:24', 0, NULL, 0, NULL, 1),
(3816, 3249, '3', 'Madras university', '', 'BBA', '2020', 70.00, '', 1, '2021-02-10 12:31:36', 0, NULL, 0, NULL, 1),
(3817, 3250, '3', 'Scsvmv University', '', 'B.com', '2019', 61.00, '', 1, '2021-02-10 12:38:40', 0, NULL, 0, NULL, 1),
(3818, 3252, '3', 'Scsvmv University', '', 'B.com', '2019', 65.00, '', 1, '2021-02-10 12:47:05', 0, NULL, 0, NULL, 1),
(3819, 3253, '3', 'University', '', 'B.com', '2018', 60.00, '', 1, '2021-02-10 01:09:56', 0, NULL, 0, NULL, 1),
(3820, 2523, '3', 'University of Madras', '', 'B.Sc computer science', '2020', 51.00, '', 1, '2021-02-10 01:18:24', 0, NULL, 0, NULL, 1),
(3821, 3255, '3', 'Anna university ', '', 'B.E', '2017', 6.10, '', 1, '2021-02-10 01:46:03', 0, NULL, 0, NULL, 1),
(3822, 3119, '3', 'Anna university', '', 'B.e', '2015', 61.00, '', 1, '2021-02-10 01:54:44', 0, NULL, 0, NULL, 1),
(3823, 3254, '5', 'University ', '', 'Diploma', '2016', 72.00, '', 1, '2021-02-10 02:34:20', 0, NULL, 0, NULL, 1),
(3824, 3258, '4', 'Anna University', '', 'MBA', '2016', 67.00, '', 1, '2021-02-11 10:22:06', 0, NULL, 0, NULL, 1),
(3825, 3259, '3', 'Anna University', '', 'Engineering', '2018', 63.00, '', 1, '2021-02-11 12:06:07', 0, NULL, 0, NULL, 1),
(3826, 3261, '3', 'DDU UNIVERSITY GKP', '', 'B.com', '2019', 48.00, '', 1, '2021-02-11 12:22:14', 0, NULL, 0, NULL, 1),
(3827, 3262, '3', 'Vel Tech multi tech engineering college ', '', 'B. Tech', '2021', 70.00, '', 1, '2021-02-11 12:42:52', 0, NULL, 0, NULL, 1),
(3828, 3027, '3', 'Anna University ', '', 'Be', '2015', 67.00, '', 1, '2021-02-11 01:16:41', 1, '2021-02-11 01:17:57', 0, NULL, 1),
(3829, 3027, '5', 'Dote', '', 'Dce', '2012', 70.00, '', 1, '2021-02-11 01:18:33', 0, NULL, 0, NULL, 1),
(3830, 3027, '1', 'State board', '', '', '2009', 75.00, '', 1, '2021-02-11 01:18:56', 0, NULL, 0, NULL, 1),
(3831, 3264, '4', 'University of madras', '', 'Mba', '2018', 65.00, '', 1, '2021-02-11 02:19:30', 0, NULL, 0, NULL, 1),
(3832, 3267, '3', 'Madras University', '', 'B.sc mathematics', '2020', 64.00, '', 1, '2021-02-11 04:38:40', 0, NULL, 0, NULL, 1),
(3833, 3268, '3', 'Karpagam academy of higher education ', '', 'BE CSE', '2019', 80.40, '', 1, '2021-02-11 06:03:10', 0, NULL, 0, NULL, 1),
(3834, 3266, '3', 'periyar university', '', 'b.sc computer', '2016', 7.00, '', 1, '2021-02-11 06:40:20', 0, NULL, 0, NULL, 1),
(3835, 3269, '1', 'cbse', '', '', '1990', 51.00, '', 1, '2021-02-11 06:52:57', 0, NULL, 0, NULL, 1),
(3836, 3269, '2', 'cbse', '', '', '1992', 58.00, '', 1, '2021-02-11 06:53:19', 0, NULL, 0, NULL, 1),
(3837, 3269, '4', 'central university', '', 'mhrm', '2004', 60.00, '', 1, '2021-02-11 06:54:06', 0, NULL, 0, NULL, 1),
(3838, 3270, '2', 'State board', '', '', '1996', 58.60, '', 1, '2021-02-11 09:05:26', 0, NULL, 0, NULL, 1),
(3839, 3270, '4', 'Madras University', '', 'MA', '2001', 53.00, '', 1, '2021-02-11 09:06:32', 0, NULL, 0, NULL, 1),
(3840, 3272, '3', 'ANNA UNIVERSITY', '', 'B.E computer science', '2019', 7.80, '', 1, '2021-02-11 11:25:29', 0, NULL, 0, NULL, 1),
(3841, 3272, '2', 'STATE BOARD', '', '', '2015', 70.00, '', 1, '2021-02-11 11:25:53', 0, NULL, 0, NULL, 1),
(3842, 3272, '1', 'STATE BOARD', '', '', '2013', 80.00, '', 1, '2021-02-11 11:26:15', 0, NULL, 0, NULL, 1),
(3843, 3271, '3', 'rajalakshmi engineering college', '', 'b.tech', '2019', 60.03, '', 1, '2021-02-12 11:26:44', 0, NULL, 0, NULL, 1),
(3844, 3271, '2', 'n.a.m.m.h.s', '', '', '2014', 77.25, '', 1, '2021-02-12 11:30:10', 0, NULL, 0, NULL, 1),
(3845, 3271, '1', 'n.a.m.m.h.s', '', '', '2012', 81.60, '', 1, '2021-02-12 11:31:01', 0, NULL, 0, NULL, 1),
(3846, 3275, '4', 'Bs Abdur Rahman university', '', 'MBA', '2016', 59.60, '', 1, '2021-02-12 11:48:15', 0, NULL, 0, NULL, 1),
(3847, 3274, '3', 'Madras University', '', 'B.B.A', '2018', 80.00, '', 1, '2021-02-12 11:52:58', 0, NULL, 0, NULL, 1),
(3848, 3276, '5', 'MKPTC', '', 'ECE', '2020', 69.00, '', 1, '2021-02-12 11:57:54', 0, NULL, 0, NULL, 1),
(3849, 3273, '3', 'Thiruvalluvar univercity', '', 'BCA', '2018', 72.00, '', 1, '2021-02-12 12:13:06', 0, NULL, 0, NULL, 1),
(3850, 3277, '5', 'MKPTC', '', 'ECE', '2020', 50.00, '', 1, '2021-02-12 12:14:48', 0, NULL, 0, NULL, 1),
(3851, 3279, '4', 'NATIONAL INSTITUTE OF BUSINESS MANGEMENT', '', 'MBA', '2008', 75.00, '', 1, '2021-02-12 12:51:42', 0, NULL, 0, NULL, 1),
(3852, 2367, '3', 'madras university', '', 'b.com', '2020', 80.00, '', 1, '2021-02-12 01:07:14', 0, NULL, 0, NULL, 1),
(3853, 3281, '3', 'bharathiar university', '', 'b.com', '2019', 78.00, '', 1, '2021-02-12 01:52:51', 1, '2021-02-12 01:55:17', 0, NULL, 1),
(3854, 3281, '2', 'cbse', '', '', '2016', 75.00, '', 1, '2021-02-12 01:55:02', 0, NULL, 0, NULL, 1),
(3855, 3281, '1', 'cbse', '', '', '2014', 90.00, '', 1, '2021-02-12 01:55:51', 0, NULL, 0, NULL, 1),
(3856, 3280, '3', 'madras university', '', 'b.com', '2020', 84.00, '', 1, '2021-02-12 02:47:37', 0, NULL, 0, NULL, 1),
(3857, 3283, '3', 'Madras university', '', 'B.com(general)', '2020', 55.00, '', 1, '2021-02-12 05:53:40', 0, NULL, 0, NULL, 1),
(3858, 3287, '3', 'Anna University ', '', 'Btech IT', '2016', 62.30, '', 1, '2021-02-12 06:12:03', 0, NULL, 0, NULL, 1),
(3859, 3288, '3', 'Madras university', '', '', '2020', 60.00, '', 1, '2021-02-12 06:14:41', 0, NULL, 0, NULL, 1),
(3860, 3282, '3', 'Madras University', '', 'B.com (general)', '2020', 80.00, '', 1, '2021-02-12 06:15:14', 0, NULL, 0, NULL, 1),
(3861, 3286, '3', 'University', '', 'B.com', '2020', 73.00, '', 1, '2021-02-12 06:15:41', 0, NULL, 0, NULL, 1),
(3862, 3290, '3', 'MADRAS UNIVERSITY', '', 'BCA', '2015', 68.00, '', 1, '2021-02-12 06:30:56', 0, NULL, 0, NULL, 1),
(3863, 3293, '3', 'University of Madras', '', 'B.com(gen)', '2020', 81.00, '', 1, '2021-02-12 06:48:13', 0, NULL, 0, NULL, 1),
(3864, 3289, '5', 'board', '', 'dee', '2016', 70.00, '', 1, '2021-02-12 07:27:05', 0, NULL, 0, NULL, 1),
(3865, 3291, '3', 'Madras university', '', 'B.com', '2020', 69.00, '', 1, '2021-02-12 07:45:08', 0, NULL, 0, NULL, 1),
(3866, 3287, '2', 'Stateboard', '', '', '2012', 64.00, '', 1, '2021-02-12 08:24:03', 1, '2021-02-12 08:24:56', 0, NULL, 0),
(3867, 3287, '1', 'Stateboard', '', '', '2010', 77.00, '', 1, '2021-02-12 08:24:36', 1, '2021-02-12 08:25:02', 0, NULL, 0),
(3868, 3294, '3', 'Anna university', '', 'B E', '2020', 75.00, '', 1, '2021-02-13 10:41:42', 1, '2021-02-13 10:42:03', 0, NULL, 1),
(3869, 3294, '2', 'State board', '', '', '2017', 85.00, '', 1, '2021-02-13 10:42:42', 0, NULL, 0, NULL, 1),
(3870, 3295, '3', 'Anna university ', '', 'BE', '2021', 82.00, '', 1, '2021-02-13 10:45:05', 0, NULL, 0, NULL, 1),
(3871, 3296, '3', 'Madras university', '', 'B sc', '2017', 60.00, '', 1, '2021-02-13 11:09:05', 0, NULL, 0, NULL, 1),
(3872, 3297, '3', 'A.M.Jain college', '', 'B.sc(software application)', '2016', 66.00, '', 1, '2021-02-13 11:52:28', 0, NULL, 0, NULL, 1),
(3873, 3298, '3', 'D.B.jain college ', '', 'Bca', '2007', 56.00, '', 1, '2021-02-13 11:55:50', 0, NULL, 0, NULL, 1),
(3874, 3300, '3', 'international maritime academy', '', 'btech', '2015', 88.00, '', 1, '2021-02-13 01:42:41', 0, NULL, 0, NULL, 1),
(3875, 2152, '4', 'bharathidasan', '', 'mca', '2020', 79.00, '', 1, '2021-02-13 03:21:13', 0, NULL, 0, NULL, 1),
(3876, 3303, '3', 'Anna University ', '', 'B.E', '2019', 68.00, '', 1, '2021-02-13 04:10:52', 0, NULL, 0, NULL, 1),
(3877, 3304, '3', 'srm-valliammai engineering College ', '', 'be-ece', '2019', 6.17, '', 1, '2021-02-13 04:27:58', 0, NULL, 0, NULL, 1),
(3878, 3304, '2', 'nsn matriculation higher secondary school', '', '', '2015', 90.60, '', 1, '2021-02-13 04:29:03', 0, NULL, 0, NULL, 1),
(3879, 3304, '1', 'Nsn Matriculation Higher Secondary School', '', '', '2013', 91.00, '', 1, '2021-02-13 04:29:18', 0, NULL, 0, NULL, 1),
(3880, 3301, '3', 'Anna University ', '', 'Be Ece', '2019', 80.00, '', 1, '2021-02-13 09:49:12', 0, NULL, 0, NULL, 1),
(3881, 3306, '3', 'madras university', '', 'bcom', '2015', 75.00, '', 1, '2021-02-14 11:16:55', 0, NULL, 0, NULL, 1),
(3882, 3307, '3', 'anna university', '', 'b e', '2017', 74.00, '', 1, '2021-02-14 01:16:45', 0, NULL, 0, NULL, 1),
(3883, 3308, '3', 'anna university', '', 'b e', '2019', 60.00, '', 1, '2021-02-14 01:23:18', 0, NULL, 0, NULL, 1),
(3884, 3309, '3', 'madras university', '', 'b b a', '2012', 60.00, '', 1, '2021-02-14 08:57:54', 0, NULL, 0, NULL, 1),
(3885, 3311, '4', 'MADRAS UNIVERSITY', '', 'M.B.A (FINANCIAL MANAGEMENT)', '2019', 55.13, '', 1, '2021-02-15 10:22:20', 0, NULL, 0, NULL, 1),
(3886, 3311, '3', 'MADRAS UNIVERSITY', '', 'B.COM(GENERAL)', '2016', 57.41, '', 1, '2021-02-15 10:24:45', 0, NULL, 0, NULL, 1),
(3887, 3311, '2', 'State board', '', '', '2013', 54.75, '', 1, '2021-02-15 10:25:39', 0, NULL, 0, NULL, 1),
(3888, 3311, '1', 'State board', '', '', '2011', 61.20, '', 1, '2021-02-15 10:26:25', 0, NULL, 0, NULL, 1),
(3889, 3312, '3', 'vel tech high tech dr.r r  dr s r engineering college', '', 'b e computer science', '2017', 71.00, '', 1, '2021-02-15 11:34:36', 0, NULL, 0, NULL, 1),
(3890, 3312, '1', 'velammal matric higher secondary school', '', '', '2011', 87.40, '', 1, '2021-02-15 11:35:57', 0, NULL, 0, NULL, 1),
(3891, 3312, '2', 'velammal matric higher secondary', '', '', '2013', 90.00, '', 1, '2021-02-15 11:36:28', 0, NULL, 0, NULL, 1),
(3892, 3315, '1', 'State board', '', '', '2009', 55.00, '', 1, '2021-02-15 11:47:23', 0, NULL, 0, NULL, 1),
(3893, 3314, '3', 'New College', '', 'B.A ', '2017', 52.00, '', 1, '2021-02-15 12:07:29', 0, NULL, 0, NULL, 1),
(3894, 3313, '3', 'New College', '', 'B. Com', '2017', 57.00, '', 1, '2021-02-15 12:14:31', 0, NULL, 0, NULL, 1),
(3895, 3318, '3', 'Vels University ', '', 'Bsc cs ', '2016', 60.00, '', 1, '2021-02-15 01:26:22', 0, NULL, 0, NULL, 1),
(3896, 3316, '3', 'Madras University', '', 'BA English literature', '2020', 63.00, '', 1, '2021-02-15 01:35:00', 0, NULL, 0, NULL, 1),
(3897, 3317, '3', 'Madras University', '', 'B.com Accounting & Finance', '2020', 60.00, '', 1, '2021-02-15 01:45:10', 0, NULL, 0, NULL, 1),
(3898, 3319, '4', 'madras university', '', 'm.sc computer science', '2020', 68.00, '', 1, '2021-02-15 04:54:26', 0, NULL, 0, NULL, 1),
(3899, 3319, '3', 'madras university', '', 'b.Sc Computer Science', '2018', 69.00, '', 1, '2021-02-15 04:55:35', 0, NULL, 0, NULL, 1),
(3900, 3320, '5', 'Thai Mookambika polytechnic College', '', 'EEE', '2015', 1.00, '', 1, '2021-02-15 05:00:59', 0, NULL, 0, NULL, 1),
(3901, 3321, '1', 'sslc', '', '', '2010', 82.20, '', 1, '2021-02-15 05:06:56', 0, NULL, 0, NULL, 1),
(3902, 3321, '2', 'hsc', '', '', '2012', 88.42, '', 1, '2021-02-15 05:11:06', 0, NULL, 0, NULL, 1),
(3903, 3323, '3', 'Madras University', '', 'B. A English', '2019', 68.00, '', 1, '2021-02-15 05:44:28', 0, NULL, 0, NULL, 1),
(3904, 3325, '5', 'Anna university', '', 'D.e.c.e', '2005', 60.00, '', 1, '2021-02-15 06:04:24', 0, NULL, 0, NULL, 1),
(3905, 3326, '3', 'SSS shasun Jain college', '', 'B.com', '2019', 61.00, '', 1, '2021-02-15 06:50:01', 0, NULL, 0, NULL, 1),
(3906, 3327, '3', 'Anna University', '', 'B.E Mechanical', '2019', 75.00, '', 1, '2021-02-15 06:55:42', 0, NULL, 0, NULL, 1),
(3907, 3329, '4', 'sastra university', '', 'master', '2020', 7.20, '', 1, '2021-02-15 07:44:41', 0, NULL, 0, NULL, 1),
(3908, 3324, '3', 'Madras university', '', 'BCA ', '2019', 58.40, '', 1, '2021-02-15 07:50:47', 0, NULL, 0, NULL, 1),
(3909, 3332, '5', 'ANNA ', '', 'Electrical and electronic engineering', '2009', 79.00, '', 1, '2021-02-16 10:32:43', 0, NULL, 0, NULL, 1),
(3910, 3333, '3', 'Anna university', '', 'B.E', '2016', 64.00, '', 1, '2021-02-16 11:02:12', 0, NULL, 0, NULL, 1),
(3911, 3334, '1', 'cbse', '', '', '2013', 92.00, '', 1, '2021-02-16 11:20:19', 0, NULL, 0, NULL, 1),
(3912, 3336, '4', 'Amity University', '', 'MBA', '2016', 7.00, '', 1, '2021-02-16 11:20:23', 1, '2021-02-16 11:24:08', 0, NULL, 0),
(3913, 3334, '2', 'cbse', '', '', '2015', 79.99, '', 1, '2021-02-16 11:20:34', 0, NULL, 0, NULL, 1),
(3914, 3334, '3', 'anna university', '', 'b.e/e.i.e', '2019', 71.90, '', 1, '2021-02-16 11:21:37', 0, NULL, 0, NULL, 1),
(3915, 3336, '4', 'Amity University', '', 'MBA', '2016', 7.00, '', 1, '2021-02-16 11:25:04', 0, NULL, 0, NULL, 1),
(3916, 3336, '4', 'Amity University', '', 'MBA', '2016', 7.00, '', 1, '2021-02-16 11:28:35', 0, NULL, 0, NULL, 1),
(3917, 3337, '3', 'Jamal Mohamed College ', '', 'B. Sc computer science ', '2015', 74.00, '', 1, '2021-02-16 11:35:48', 0, NULL, 0, NULL, 1),
(3918, 3338, '3', 'Madras University', '', 'B.sc plant biotechnology', '2018', 60.00, '', 1, '2021-02-16 11:36:16', 0, NULL, 0, NULL, 1),
(3919, 3340, '3', 'Bharathidasan university', '', 'Bsc', '2017', 87.00, '', 1, '2021-02-16 11:55:52', 0, NULL, 0, NULL, 1),
(3920, 3198, '2', 'Sir Thegaraya higher second', '', '', '2014', 60.00, '', 1, '2021-02-16 12:15:32', 0, NULL, 0, NULL, 1),
(3921, 3343, '4', 'thiruvalluvar university', '', 'm.sc information technology', '2019', 80.00, '', 1, '2021-02-16 03:56:01', 0, NULL, 0, NULL, 1),
(3922, 3343, '3', 'thiruvalluvar university', '', 'b.sc computer science', '2017', 81.00, '', 1, '2021-02-16 03:59:30', 0, NULL, 0, NULL, 1),
(3923, 3343, '2', 'tamil nadu board', '', '', '2014', 80.00, '', 1, '2021-02-16 04:00:28', 0, NULL, 0, NULL, 1),
(3924, 3343, '1', 'tamil nadu board', '', '', '2012', 81.00, '', 1, '2021-02-16 04:01:08', 0, NULL, 0, NULL, 1),
(3925, 3348, '3', 'Anna University', '', 'Bachelor of Engineering (EEE) ', '2019', 61.00, '', 1, '2021-02-16 06:01:37', 0, NULL, 0, NULL, 1),
(3926, 3351, '3', 'Anna university', '', 'BE - Electronics and communication', '2018', 65.55, '', 1, '2021-02-16 06:20:35', 0, NULL, 0, NULL, 1),
(3927, 3350, '1', 'Raja national matriculation higher secondary school ', '', 'B. Com', '2008', 60.00, '', 1, '2021-02-16 06:21:02', 0, NULL, 0, NULL, 1),
(3928, 3350, '2', 'Raja national matriculation higher secondary school ', '', '', '2010', 72.00, '', 1, '2021-02-16 06:21:24', 0, NULL, 0, NULL, 1),
(3929, 3350, '3', 'The new College ', '', 'B.com', '2013', 50.00, '', 1, '2021-02-16 06:21:56', 0, NULL, 0, NULL, 1),
(3930, 3349, '5', 'state board of technical education and training', '', 'd e e e', '1999', 64.50, '', 1, '2021-02-16 06:57:53', 0, NULL, 0, NULL, 1),
(3931, 3349, '1', 'state board of tamilnadu', '', 'd e e e', '1996', 68.00, '', 1, '2021-02-16 07:01:13', 0, NULL, 0, NULL, 1),
(3932, 3352, '1', 'Anna university', '', '', '2016', 6.20, '', 1, '2021-02-16 08:34:52', 0, NULL, 0, NULL, 1),
(3933, 3353, '3', 'St.Joseph\'s College of engineering', '', 'B-Tech Information technology', '2019', 74.20, '', 1, '2021-02-16 10:49:26', 0, NULL, 0, NULL, 1),
(3934, 3352, '3', 'Anna university', '', 'UG', '2016', 6.20, '', 1, '2021-02-17 01:04:17', 0, NULL, 0, NULL, 1),
(3935, 3352, '2', 'State board', '', '', '2012', 83.00, '', 1, '2021-02-17 01:04:40', 0, NULL, 0, NULL, 1),
(3936, 3354, '3', 'Hindustan university', '', '', '2017', 65.00, '', 1, '2021-02-17 09:49:08', 0, NULL, 0, NULL, 1),
(3937, 3356, '1', 'State board', '', '', '2011', 94.50, '', 1, '2021-02-17 09:54:41', 0, NULL, 0, NULL, 1),
(3938, 3356, '2', 'State board', '', '', '2013', 85.45, '', 1, '2021-02-17 09:55:09', 0, NULL, 0, NULL, 1),
(3939, 3356, '3', 'Anna university', '', 'BE- ECE', '2017', 80.00, '', 1, '2021-02-17 09:55:40', 0, NULL, 0, NULL, 1),
(3940, 3355, '4', 'University of madras ', '', 'MBA', '2021', 75.00, '', 1, '2021-02-17 09:56:11', 1, '2021-02-17 09:57:03', 0, NULL, 0),
(3941, 3357, '3', 'Madras university ', '', 'B. Com', '2020', 68.00, '', 1, '2021-02-17 09:56:24', 0, NULL, 0, NULL, 1),
(3942, 3357, '2', 'State board ', '', '', '2017', 85.00, '', 1, '2021-02-17 09:56:54', 0, NULL, 0, NULL, 1),
(3943, 3357, '1', 'Matriculation ', '', '', '2015', 85.00, '', 1, '2021-02-17 09:57:19', 0, NULL, 0, NULL, 1),
(3944, 3355, '1', 'State board ', '', '', '2013', 81.00, '', 1, '2021-02-17 09:58:17', 0, NULL, 0, NULL, 1),
(3945, 3355, '2', 'State board ', '', '', '2015', 71.00, '', 1, '2021-02-17 09:58:52', 1, '2021-02-17 10:00:06', 0, NULL, 1),
(3946, 3355, '3', 'University of madras ', '', 'B. Com (G) ', '2018', 65.00, '', 1, '2021-02-17 09:59:48', 0, NULL, 0, NULL, 1),
(3947, 3355, '4', 'University of madras ', '', 'MBA', '2020', 75.00, '', 1, '2021-02-17 10:00:46', 0, NULL, 0, NULL, 1),
(3948, 3328, '2', 'State Board', '', 'BE. ECE', '2015', 50.00, '', 1, '2021-02-17 10:35:09', 1, '2021-02-17 10:35:45', 0, NULL, 0),
(3949, 3328, '2', 'State Board', '', '', '2015', 50.00, '', 1, '2021-02-17 10:36:12', 0, NULL, 0, NULL, 1),
(3950, 3360, '3', 'Madras university', '', 'B. Com', '2018', 55.00, '', 1, '2021-02-17 11:08:38', 0, NULL, 0, NULL, 1),
(3951, 3359, '3', 'Madras university', '', 'Bcom', '2018', 62.00, '', 1, '2021-02-17 11:08:50', 0, NULL, 0, NULL, 1),
(3952, 3363, '1', 'State board', '', '', '2015', 58.40, '', 1, '2021-02-17 11:28:45', 0, NULL, 0, NULL, 1),
(3953, 3363, '2', 'State board', '', '', '2017', 54.40, '', 1, '2021-02-17 11:29:10', 0, NULL, 0, NULL, 1),
(3954, 3362, '1', 'State Board', '', '', '2006', 60.00, '', 1, '2021-02-17 11:29:44', 0, NULL, 0, NULL, 1),
(3955, 3363, '3', 'Deemed university', '', 'B. Com (CA) ', '2020', 60.66, '', 1, '2021-02-17 11:30:17', 0, NULL, 0, NULL, 1),
(3956, 3362, '2', 'State Board', '', '', '2008', 81.00, '', 1, '2021-02-17 11:30:47', 0, NULL, 0, NULL, 1),
(3957, 3362, '3', 'Madras University', '', 'B.com', '2011', 71.00, '', 1, '2021-02-17 11:31:27', 0, NULL, 0, NULL, 1),
(3958, 3361, '4', 'bs.abdur Rahman University', '', 'MBA', '2020', 6.69, '', 1, '2021-02-17 11:31:52', 0, NULL, 0, NULL, 1),
(3959, 3362, '4', 'Pondicherry University', '', 'MBA (FIN)', '2013', 61.00, '', 1, '2021-02-17 11:32:13', 0, NULL, 0, NULL, 1),
(3960, 3361, '3', 'Madras University', '', 'B.com', '2017', 5.59, '', 1, '2021-02-17 11:33:47', 0, NULL, 0, NULL, 1),
(3961, 3361, '2', 'State board', '', '', '2013', 79.00, '', 1, '2021-02-17 11:35:00', 0, NULL, 0, NULL, 1),
(3962, 3361, '1', 'State board', '', '', '2011', 67.00, '', 1, '2021-02-17 11:35:25', 0, NULL, 0, NULL, 1),
(3963, 3364, '4', 'Anna University', '', 'MBA', '2015', 77.00, '', 1, '2021-02-17 11:52:04', 0, NULL, 0, NULL, 1),
(3964, 3364, '3', 'Madras University', '', 'BCA', '2013', 79.00, '', 1, '2021-02-17 11:56:34', 0, NULL, 0, NULL, 1),
(3965, 3365, '3', 'Anna university', '', 'bE', '2018', 63.00, '', 1, '2021-02-17 12:05:31', 0, NULL, 0, NULL, 1),
(3966, 3346, '3', 'Madras ', '', 'BBA', '2019', 60.00, '', 1, '2021-02-17 12:49:38', 0, NULL, 0, NULL, 1),
(3967, 3367, '1', 'state board', '', '', '2015', 91.00, '', 1, '2021-02-17 12:56:36', 0, NULL, 0, NULL, 1),
(3968, 3367, '2', 'state board', '', '', '2017', 80.50, '', 1, '2021-02-17 12:57:03', 0, NULL, 0, NULL, 1),
(3969, 3367, '3', 'anna university', '', 'bachelor of computer science engineering', '2021', 73.00, '', 1, '2021-02-17 12:58:13', 0, NULL, 0, NULL, 1),
(3970, 3368, '1', 'State board', '', 'B. Com(corporate secreataryship) ', '2010', 50.00, '', 1, '2021-02-17 01:03:20', 1, '2021-02-17 01:06:26', 0, NULL, 0),
(3971, 3368, '2', 'State board', '', '', '2012', 68.00, '', 1, '2021-02-17 01:03:45', 0, NULL, 0, NULL, 1),
(3972, 3368, '3', 'University of madras', '', 'B. Com (corporate Secertary ship) ', '2016', 65.00, '', 1, '2021-02-17 01:04:43', 1, '2021-02-17 01:05:01', 0, NULL, 1),
(3973, 3368, '1', 'State board', '', '', '2010', 50.00, '', 1, '2021-02-17 01:07:16', 0, NULL, 0, NULL, 1),
(3974, 3345, '4', 'madress university', '', 'mca', '2021', 75.00, '', 1, '2021-02-17 01:39:21', 0, NULL, 0, NULL, 1),
(3975, 3345, '3', 'madress university', '', 'bsc', '2019', 70.00, '', 1, '2021-02-17 01:40:21', 0, NULL, 0, NULL, 1),
(3976, 3373, '4', 'Madras University', '', 'Mba', '2201', 58.00, '', 1, '2021-02-17 03:07:02', 0, NULL, 0, NULL, 1),
(3977, 3371, '1', 'state board', '', '', '2006', 58.00, '', 1, '2021-02-17 03:13:38', 1, '2021-02-17 03:13:53', 0, NULL, 0),
(3978, 3371, '3', 'anna university', '', 'be', '2013', 68.00, '', 1, '2021-02-17 03:14:34', 0, NULL, 0, NULL, 1),
(3979, 3344, '3', 'Anna University', '', 'Bachelor\'s in Engineering', '2020', 70.00, '', 1, '2021-02-17 03:53:19', 1, '2021-02-17 03:53:56', 0, NULL, 0),
(3980, 3344, '2', 'State board', '', '', '2016', 70.00, '', 1, '2021-02-17 03:53:47', 1, '2021-02-17 03:54:01', 0, NULL, 0),
(3981, 3344, '1', 'CBSE', '', '', '2014', 72.00, '', 1, '2021-02-17 03:54:28', 1, '2021-02-17 03:56:11', 0, NULL, 0),
(3982, 3344, '2', 'State board', '', '', '2016', 70.00, '', 1, '2021-02-17 03:54:43', 1, '2021-02-17 03:56:15', 0, NULL, 0),
(3983, 3344, '3', 'Anna University', '', 'Bachelor\'s in engineering', '2020', 70.00, '', 1, '2021-02-17 03:55:05', 1, '2021-02-17 03:55:37', 0, NULL, 0),
(3984, 3344, '3', 'Anna University', '', 'Bachelor\'s in engineering', '2020', 70.00, '', 1, '2021-02-17 03:56:05', 0, NULL, 0, NULL, 1),
(3985, 3344, '2', 'State board', '', '', '2016', 70.00, '', 1, '2021-02-17 03:56:35', 0, NULL, 0, NULL, 1),
(3986, 3344, '1', 'CBSE', '', '', '2014', 72.00, '', 1, '2021-02-17 03:56:56', 0, NULL, 0, NULL, 1),
(3987, 3377, '5', 'stateboard', '', '', '2012', 89.00, '', 1, '2021-02-17 04:40:09', 0, NULL, 0, NULL, 1),
(3988, 3375, '3', 'Anna university', '', 'BE(EEE)', '2020', 68.00, '', 1, '2021-02-17 05:47:11', 0, NULL, 0, NULL, 1),
(3989, 3347, '3', 'Anna University', '', 'BE', '2016', 63.00, '', 1, '2021-02-17 09:16:50', 0, NULL, 0, NULL, 1),
(3990, 3347, '2', 'state board', '', '', '2012', 74.00, '', 1, '2021-02-17 09:17:40', 0, NULL, 0, NULL, 1),
(3991, 3347, '1', 'state board', '', '', '2010', 92.00, '', 1, '2021-02-17 09:18:28', 0, NULL, 0, NULL, 1),
(3992, 3380, '3', 'Madras University', '', 'Bca', '2018', 78.00, '', 1, '2021-02-17 09:50:42', 0, NULL, 0, NULL, 1),
(3993, 3382, '3', 'Madras University', '', 'Bsc Plant bio-technology', '2014', 65.00, '', 1, '2021-02-17 10:25:24', 0, NULL, 0, NULL, 1),
(3994, 3382, '2', 'Matriculation', '', 'Bsc plant bio-technology', '2011', 78.00, '', 1, '2021-02-17 10:26:50', 0, NULL, 0, NULL, 1),
(3995, 3383, '2', 'State', '', '', '2017', 77.08, '', 1, '2021-02-17 10:57:14', 0, NULL, 0, NULL, 1),
(3996, 3370, '2', 'stateboard', '', '', '2017', 64.00, '', 1, '2021-02-17 11:11:27', 0, NULL, 0, NULL, 1),
(3997, 3385, '4', 'anna university', '', 'mca', '2017', 73.00, '', 1, '2021-02-18 11:02:28', 0, NULL, 0, NULL, 1),
(3998, 3386, '3', 'Anna university', '', 'B.E - ECE', '2012', 64.00, '', 1, '2021-02-18 11:20:59', 0, NULL, 0, NULL, 1),
(3999, 3387, '3', 'SASTRA university', '', 'Bioinformatics', '2010', 7.40, '', 1, '2021-02-18 11:21:48', 0, NULL, 0, NULL, 1),
(4000, 3387, '2', 'New Prince MHSS', '', '', '2006', 85.00, '', 1, '2021-02-18 11:22:30', 0, NULL, 0, NULL, 1),
(4001, 3387, '1', 'New Prince MHSS', '', '', '2004', 89.00, '', 1, '2021-02-18 11:22:55', 0, NULL, 0, NULL, 1),
(4002, 3389, '3', 'University', '', 'B.Tech', '2013', 70.00, '', 1, '2021-02-18 11:55:03', 0, NULL, 0, NULL, 1),
(4003, 3390, '5', 'Dote university', '', 'Diploma in computer engineering ', '2018', 67.00, '', 1, '2021-02-18 12:32:52', 0, NULL, 0, NULL, 1),
(4004, 3390, '1', 'State university', '', '', '2015', 71.00, '', 1, '2021-02-18 12:33:23', 0, NULL, 0, NULL, 1),
(4005, 3391, '3', 'Anna University', '', 'B.E', '2017', 65.00, '', 1, '2021-02-18 01:39:58', 0, NULL, 0, NULL, 1),
(4006, 3391, '1', 'State Board', '', '', '2010', 90.00, '', 1, '2021-02-18 01:40:34', 0, NULL, 0, NULL, 1),
(4007, 3391, '2', 'State Board', '', '', '2013', 86.00, '', 1, '2021-02-18 01:41:11', 0, NULL, 0, NULL, 1),
(4008, 3392, '4', 'Anna University ', '', 'Be', '2016', 65.00, '', 1, '2021-02-18 02:30:31', 0, NULL, 0, NULL, 1),
(4009, 3393, '1', 'Barathiya university', '', '', '2015', 67.00, '', 1, '2021-02-18 05:01:26', 0, NULL, 0, NULL, 1),
(4010, 3265, '5', 'Dote', '', 'Diploma in computer Technology', '2019', 60.00, '', 1, '2021-02-18 07:05:02', 0, NULL, 0, NULL, 1),
(4011, 3395, '4', 'cresent university', '', 'mba', '2020', 74.00, '', 1, '2021-02-18 07:11:40', 0, NULL, 0, NULL, 1),
(4012, 3395, '3', 'madras university', '', 'b.com', '2018', 61.00, '', 1, '2021-02-18 07:12:17', 0, NULL, 0, NULL, 1),
(4013, 3395, '2', 'cbse', '', '', '2015', 74.00, '', 1, '2021-02-18 07:12:31', 0, NULL, 0, NULL, 1),
(4014, 3395, '1', 'cbse', '', '', '2013', 66.00, '', 1, '2021-02-18 07:12:44', 0, NULL, 0, NULL, 1),
(4015, 3397, '1', 'Matriculation', '', '', '2009', 42.00, '', 1, '2021-02-19 10:43:28', 0, NULL, 0, NULL, 1),
(4016, 3397, '2', 'Matriculation', '', '', '2011', 64.10, '', 1, '2021-02-19 10:44:16', 0, NULL, 0, NULL, 1),
(4017, 3397, '3', 'Madras University', '', 'B.com', '2014', 60.00, '', 1, '2021-02-19 10:44:43', 0, NULL, 0, NULL, 1),
(4018, 3398, '2', 'state board', '', '', '2017', 57.00, '', 1, '2021-02-19 10:52:11', 0, NULL, 0, NULL, 1),
(4019, 3398, '3', 'dr apj abdul kalam university', '', 'be mechanical', '2021', 75.00, '', 1, '2021-02-19 10:52:57', 0, NULL, 0, NULL, 1),
(4020, 3399, '3', 'Bharadhithasan university', '', 'Bsc computer science', '2015', 62.00, '', 1, '2021-02-19 11:10:40', 0, NULL, 0, NULL, 1),
(4021, 3401, '3', 'madras university', '', 'bsc', '2010', 60.00, '', 1, '2021-02-19 11:21:33', 0, NULL, 0, NULL, 1),
(4022, 3400, '3', 'St. Peter\'s College of engineering and technology', '', 'B.E Computer Science and Engineering', '2017', 6.40, '', 1, '2021-02-19 11:23:26', 0, NULL, 0, NULL, 1),
(4023, 3402, '3', 'Madras University', '', 'B.Com', '2018', 66.00, '', 1, '2021-02-19 11:43:30', 0, NULL, 0, NULL, 1),
(4024, 3405, '3', 'madiwala govt pu College ', '', 'na', '2015', 46.00, '', 1, '2021-02-19 12:22:44', 0, NULL, 0, NULL, 1),
(4025, 3403, '3', 'Vishveshwarayya technological university belgum', '', '', '2019', 59.90, '', 1, '2021-02-19 12:33:20', 0, NULL, 0, NULL, 1),
(4026, 3403, '5', 'Department of technical education ', '', 'Diplamo ', '2016', 60.40, '', 1, '2021-02-19 12:34:16', 0, NULL, 0, NULL, 1),
(4027, 3403, '1', 'Karnaataka secondary educational board', '', '', '2012', 74.40, '', 1, '2021-02-19 12:35:31', 0, NULL, 0, NULL, 1),
(4028, 3406, '1', 'State', '', '', '2010', 66.24, '', 1, '2021-02-19 12:37:35', 0, NULL, 0, NULL, 1),
(4029, 3406, '5', 'DTE', '', 'Diploma ', '2016', 64.90, '', 1, '2021-02-19 12:39:27', 0, NULL, 0, NULL, 1),
(4030, 3410, '3', 'anna university', '', 'b.e', '2011', 61.00, '', 1, '2021-02-19 01:27:36', 0, NULL, 0, NULL, 1),
(4031, 3408, '2', 'state board', '', '', '2012', 75.00, '', 1, '2021-02-19 01:28:04', 0, NULL, 0, NULL, 1),
(4032, 3410, '1', 'ssv hss', '', '', '2005', 76.00, '', 1, '2021-02-19 01:28:08', 0, NULL, 0, NULL, 1),
(4033, 3410, '2', 'ssv hss', '', '', '2007', 70.00, '', 1, '2021-02-19 01:28:30', 0, NULL, 0, NULL, 1),
(4034, 3408, '3', 'poltechnic', '', 'dcse', '2016', 79.00, '', 1, '2021-02-19 01:28:48', 0, NULL, 0, NULL, 1),
(4035, 3411, '3', 'Anna university', '', 'B.E', '2021', 73.00, '', 1, '2021-02-19 01:31:47', 0, NULL, 0, NULL, 1),
(4036, 3412, '2', 'state board', '', '', '2008', 56.00, '', 1, '2021-02-19 01:49:20', 0, NULL, 0, NULL, 1),
(4037, 3412, '3', 'madras university', '', 'bba', '2012', 87.00, '', 1, '2021-02-19 01:49:45', 0, NULL, 0, NULL, 1),
(4038, 3409, '3', 'Madras University', '', 'Bca', '2017', 60.00, '', 1, '2021-02-19 02:32:38', 0, NULL, 0, NULL, 1),
(4039, 3414, '1', 'matric', '', '', '2013', 81.00, '', 1, '2021-02-19 03:56:45', 0, NULL, 0, NULL, 1),
(4040, 3414, '2', 'state board', '', '', '2015', 63.00, '', 1, '2021-02-19 03:57:12', 0, NULL, 0, NULL, 1),
(4041, 3414, '3', 'anna university', '', 'b.e mechanical engineering', '2019', 60.00, '', 1, '2021-02-19 03:57:58', 0, NULL, 0, NULL, 1),
(4042, 3415, '3', 'ann university', '', 'b.e', '2016', 64.90, '', 1, '2021-02-19 06:23:39', 0, NULL, 0, NULL, 1),
(4043, 3416, '3', 'Madras University', '', 'Bcom', '2016', 68.00, '', 1, '2021-02-19 06:29:45', 0, NULL, 0, NULL, 1),
(4044, 3419, '2', 'Corres', '', '', '2006', 50.00, '', 1, '2021-02-19 07:03:39', 0, NULL, 0, NULL, 1),
(4045, 3417, '4', 'anna university', '', 'mba', '2021', 66.00, '', 1, '2021-02-19 10:13:43', 0, NULL, 0, NULL, 1),
(4046, 3417, '3', 'madras university', '', 'b.com cs', '2019', 68.00, '', 1, '2021-02-19 10:14:19', 0, NULL, 0, NULL, 1),
(4047, 3418, '3', 'loyola college', '', 'b.com', '2020', 75.00, '', 1, '2021-02-20 03:30:21', 1, '2021-02-20 03:32:44', 0, NULL, 0),
(4048, 3418, '3', 'loyola college', '', 'b.com', '2020', 75.00, '', 1, '2021-02-20 03:33:22', 0, NULL, 0, NULL, 1),
(4049, 3421, '1', 'State', '', '', '2010', 88.00, '', 1, '2021-02-20 07:37:58', 0, NULL, 0, NULL, 1),
(4050, 3421, '2', 'State', '', '', '2012', 86.00, '', 1, '2021-02-20 07:38:13', 0, NULL, 0, NULL, 1),
(4051, 3421, '3', 'AnnaUniversity', '', 'B.E CSE', '2016', 69.00, '', 1, '2021-02-20 07:38:58', 0, NULL, 0, NULL, 1),
(4052, 3422, '3', 'madras university', '', 'bcom', '2017', 70.00, '', 1, '2021-02-20 09:20:12', 0, NULL, 0, NULL, 1),
(4053, 3424, '1', 'private', '', '', '2003', 49.00, '', 1, '2021-02-20 11:00:25', 0, NULL, 0, NULL, 1),
(4054, 3424, '5', 'bharath university', '', 'd.ece', '2007', 53.00, '', 1, '2021-02-20 11:01:28', 0, NULL, 0, NULL, 1),
(4055, 3424, '3', 'annamalai university', '', 'bca', '2016', 61.00, '', 1, '2021-02-20 11:02:08', 0, NULL, 0, NULL, 1),
(4056, 3427, '4', 'Madras university ', '', 'Mba', '2019', 83.00, '', 1, '2021-02-20 11:28:39', 0, NULL, 0, NULL, 1),
(4057, 3374, '3', 'Anna University', '', 'Be', '2013', 60.00, '', 1, '2021-02-20 11:30:22', 0, NULL, 0, NULL, 1),
(4058, 3426, '3', 'berhampur univercity', '', 'arts', '2015', 48.00, '', 1, '2021-02-20 11:40:53', 0, NULL, 0, NULL, 1),
(4059, 3426, '2', 'hsc', '', '', '2012', 52.00, '', 1, '2021-02-20 11:42:03', 0, NULL, 0, NULL, 1),
(4060, 3423, '1', 'State board', '', '', '2013', 93.80, '', 1, '2021-02-20 11:46:53', 0, NULL, 0, NULL, 1),
(4061, 3423, '2', 'State board', '', '', '2015', 77.50, '', 1, '2021-02-20 11:47:29', 0, NULL, 0, NULL, 1),
(4062, 3423, '3', 'Madras university', '', 'B.com (corporae secretaryship)', '2018', 72.00, '', 1, '2021-02-20 11:48:19', 0, NULL, 0, NULL, 1),
(4063, 3428, '3', 'Madras university', '', 'Bca', '2015', 70.00, '', 1, '2021-02-20 11:51:17', 0, NULL, 0, NULL, 1),
(4064, 3430, '3', 'anna university', '', 'bachelor of engineering', '2020', 60.00, '', 1, '2021-02-20 11:55:15', 1, '2021-02-20 11:58:50', 0, NULL, 1),
(4065, 3430, '2', 'state board', '', '', '2016', 88.00, '', 1, '2021-02-20 11:55:32', 0, NULL, 0, NULL, 1),
(4066, 3430, '1', 'state board', '', '', '2014', 94.00, '', 1, '2021-02-20 11:59:20', 0, NULL, 0, NULL, 1),
(4067, 3369, '4', 'Sathyabama University', '', 'M.E.', '2015', 75.30, '', 1, '2021-02-20 12:08:30', 0, NULL, 0, NULL, 1),
(4068, 3431, '3', 'madras university', '', 'b.a ', '2017', 70.00, '', 1, '2021-02-20 12:08:55', 0, NULL, 0, NULL, 1),
(4069, 3429, '3', 'University ', '', 'Ba ', '2017', 60.00, '', 1, '2021-02-20 12:09:11', 0, NULL, 0, NULL, 1),
(4070, 3433, '3', 'Madras University', '', 'B.Com Accounting and Finance', '2020', 60.00, '', 1, '2021-02-20 01:08:54', 0, NULL, 0, NULL, 1),
(4071, 3435, '3', 'Autonomous', '', 'B. Com', '2017', 60.00, '', 1, '2021-02-20 04:32:03', 0, NULL, 0, NULL, 1),
(4072, 3436, '3', 'Scad College of Engineering and Technology ', '', 'B.E(Computer Science)', '2018', 75.45, '', 1, '2021-02-20 05:02:36', 0, NULL, 0, NULL, 1),
(4073, 3437, '3', 'sastra deemed to be university', '', 'bsc computer science', '2019', 64.00, '', 1, '2021-02-20 10:16:59', 0, NULL, 0, NULL, 1),
(4074, 3437, '1', 'state board', '', '', '2014', 94.40, '', 1, '2021-02-20 10:17:50', 0, NULL, 0, NULL, 1),
(4075, 3437, '2', 'state board', '', '', '2016', 84.00, '', 1, '2021-02-20 10:18:38', 0, NULL, 0, NULL, 1),
(4076, 3437, '4', 'university of madras', '', 'mba', '2021', 79.40, '', 1, '2021-02-20 10:20:48', 0, NULL, 0, NULL, 1),
(4077, 3438, '4', 'thiruvalluvar university', '', 'msc', '2016', 75.00, '', 1, '2021-02-21 07:08:44', 0, NULL, 0, NULL, 1),
(4078, 3394, '3', 'st. josephs college of engineering', '', 'b.tech', '2021', 7.56, '', 1, '2021-02-21 09:28:37', 0, NULL, 0, NULL, 1),
(4079, 3394, '2', 'kanchi sankara', '', '', '2015', 95.00, '', 1, '2021-02-21 09:29:08', 0, NULL, 0, NULL, 1),
(4080, 3394, '1', 'kanchi sankara', '', '', '2017', 87.00, '', 1, '2021-02-21 09:29:33', 0, NULL, 0, NULL, 1),
(4081, 3440, '3', 'anna university', '', 'b e', '2017', 72.00, '', 1, '2021-02-21 02:48:09', 0, NULL, 0, NULL, 1),
(4082, 3441, '3', 'Loyola College', '', 'B.Sc. Physics', '2020', 65.00, '', 1, '2021-02-21 03:21:35', 0, NULL, 0, NULL, 1),
(4083, 3439, '4', 'Madras university of Arts and Science college ', '', '', '2017', 65.00, '', 1, '2021-02-21 03:25:23', 0, NULL, 0, NULL, 1),
(4084, 3439, '4', 'Madras university of Arts and Science college ', '', '', '2017', 65.00, '', 1, '2021-02-21 03:25:23', 0, NULL, 0, NULL, 1),
(4085, 3439, '4', 'Madras university of Arts and Science college ', '', '', '2017', 65.00, '', 1, '2021-02-21 03:25:23', 0, NULL, 0, NULL, 1),
(4086, 3439, '4', 'Madras university of Arts and Science college ', '', '', '2017', 65.00, '', 1, '2021-02-21 03:25:24', 0, NULL, 0, NULL, 1),
(4087, 3442, '3', 'anna univrsity', '', 'b e', '2013', 65.00, '', 1, '2021-02-21 04:29:35', 0, NULL, 0, NULL, 1),
(4088, 3443, '3', 'anna university', '', 'electronics and communication engineering', '2019', 76.00, '', 1, '2021-02-21 07:47:01', 0, NULL, 0, NULL, 1),
(4089, 3443, '2', 'state board', '', '', '2015', 95.20, '', 1, '2021-02-21 07:47:54', 0, NULL, 0, NULL, 1),
(4090, 3443, '1', 'state board', '', '', '2013', 93.75, '', 1, '2021-02-21 07:48:19', 0, NULL, 0, NULL, 1),
(4091, 3444, '3', 'university', '', 'bachelor of engineering', '2015', 72.00, '', 1, '2021-02-21 10:01:09', 1, '2021-02-21 10:01:39', 0, NULL, 1),
(4092, 3446, '3', 'University of madras', '', 'B.com accounting and finance', '2020', 78.00, '', 1, '2021-02-22 12:05:47', 0, NULL, 0, NULL, 1),
(4093, 3447, '3', 'Madras University', '', 'B. Com', '2019', 58.00, '', 1, '2021-02-22 10:52:42', 0, NULL, 0, NULL, 1),
(4094, 3432, '3', 'Anna university', '', 'Be', '2017', 5.80, '', 1, '2021-02-22 11:16:07', 0, NULL, 0, NULL, 1),
(4095, 3445, '3', 'University of Madras', '', 'Bachelor of computer applications', '2020', 66.00, '', 1, '2021-02-22 12:12:31', 0, NULL, 0, NULL, 1),
(4096, 3449, '3', 'University', '', 'BE.Mech', '2015', 64.00, '', 1, '2021-02-22 12:22:50', 0, NULL, 0, NULL, 1),
(4097, 3448, '3', 'Jharkhand ', '', 'B.com', '2019', 54.00, '', 1, '2021-02-22 12:26:46', 0, NULL, 0, NULL, 1),
(4098, 3450, '3', 'St.peters university ', '', 'BE computer science and engineering ', '2016', 72.00, '', 1, '2021-02-22 01:27:05', 0, NULL, 0, NULL, 1),
(4099, 3451, '3', 'BHARATH university ', '', 'B.sce graphics designer and fashion designer ', '2020', 70.00, '', 1, '2021-02-22 01:38:16', 0, NULL, 0, NULL, 1),
(4100, 3452, '2', 'Kerala state board', '', '', '2011', 73.00, '', 1, '2021-02-22 01:44:53', 0, NULL, 0, NULL, 1),
(4101, 3453, '1', 'STATE BOARD', '', '', '2016', 62.50, '', 1, '2021-02-22 01:44:55', 0, NULL, 0, NULL, 1),
(4102, 3454, '3', 'meenakshi university', '', 'bca', '2016', 69.00, '', 1, '2021-02-22 01:50:33', 0, NULL, 0, NULL, 1),
(4103, 3455, '4', 'Anna University ', '', 'MBA ', '2021', 7.00, '', 1, '2021-02-22 03:20:27', 0, NULL, 0, NULL, 1),
(4104, 3456, '4', 'Vels University', '', 'B.com', '2020', 70.00, '', 1, '2021-02-22 04:47:58', 0, NULL, 0, NULL, 1),
(4105, 3457, '3', 'Annamalai university ', '', 'BCA', '2008', 60.00, '', 1, '2021-02-22 04:49:00', 0, NULL, 0, NULL, 1),
(4106, 3457, '1', 'Higher Secondary ', '', '', '2002', 60.00, '', 1, '2021-02-22 04:49:58', 0, NULL, 0, NULL, 1),
(4107, 3457, '2', 'Higher secondary ', '', '', '2000', 60.00, '', 1, '2021-02-22 04:50:30', 0, NULL, 0, NULL, 1),
(4108, 3461, '1', 'Icse', '', '', '2013', 67.00, '', 1, '2021-02-22 06:08:12', 0, NULL, 0, NULL, 1),
(4109, 3461, '2', 'State board ', '', '', '2015', 76.00, '', 1, '2021-02-22 06:08:48', 0, NULL, 0, NULL, 1),
(4110, 3461, '3', 'Anna University ', '', 'B.E MECHANICAL ENGINEERING ', '2019', 74.00, '', 1, '2021-02-22 06:09:23', 0, NULL, 0, NULL, 1),
(4111, 3461, '4', 'Anna University ', '', 'MBA ', '2021', 92.00, '', 1, '2021-02-22 06:10:03', 0, NULL, 0, NULL, 1),
(4112, 3458, '3', 'madras university', '', 'bca', '2011', 70.00, '', 1, '2021-02-22 07:41:07', 0, NULL, 0, NULL, 1),
(4113, 3459, '4', 'Annamalai University', '', 'MBA', '2020', 71.00, '', 1, '2021-02-22 08:21:03', 0, NULL, 0, NULL, 1),
(4114, 3459, '3', 'The American College', '', 'Bsc - Mathematics', '2017', 63.40, '', 1, '2021-02-22 08:21:46', 0, NULL, 0, NULL, 1),
(4115, 3462, '3', 'Anna university', '', 'BE mechanical', '2017', 69.10, '', 1, '2021-02-22 09:58:22', 0, NULL, 0, NULL, 1),
(4116, 3463, '5', 'dote', '', 'computer', '2009', 68.00, '', 1, '2021-02-22 10:23:12', 0, NULL, 0, NULL, 1),
(4117, 3463, '3', 'mgr university', '', 'computer', '2013', 63.00, '', 1, '2021-02-22 10:23:45', 0, NULL, 0, NULL, 1),
(4118, 3464, '2', 'matric', '', '', '2009', 53.00, '', 1, '2021-02-22 11:11:52', 0, NULL, 0, NULL, 1),
(4119, 3464, '3', 'vels university', '', 'be', '2013', 58.00, '', 1, '2021-02-22 11:12:17', 0, NULL, 0, NULL, 1),
(4120, 3466, '1', 'state board', '', '', '2017', 75.00, '', 1, '2021-02-22 11:54:13', 0, NULL, 0, NULL, 1),
(4121, 3467, '4', 'anna university', '', 'm b a', '2016', 65.00, '', 1, '2021-02-22 11:59:54', 0, NULL, 0, NULL, 1),
(4122, 3465, '5', 'poltechnic', '', 'diploma', '2011', 65.00, '', 1, '2021-02-23 08:48:02', 0, NULL, 0, NULL, 1),
(4123, 3468, '2', 'state board', '', '', '2013', 75.00, '', 1, '2021-02-23 08:53:44', 0, NULL, 0, NULL, 1),
(4124, 3468, '3', 'madras university', '', 'bcom', '2016', 80.00, '', 1, '2021-02-23 08:54:45', 0, NULL, 0, NULL, 1),
(4125, 3469, '2', 'state board', '', '', '2013', 52.00, '', 1, '2021-02-23 09:02:11', 0, NULL, 0, NULL, 1),
(4126, 3469, '3', 'madras university', '', 'ba english', '2016', 54.00, '', 1, '2021-02-23 09:02:36', 0, NULL, 0, NULL, 1),
(4127, 3470, '2', 'state board', '', '', '2013', 87.00, '', 1, '2021-02-23 09:06:41', 0, NULL, 0, NULL, 1),
(4128, 3470, '3', 'madras university', '', 'bcom', '2016', 78.00, '', 1, '2021-02-23 09:07:02', 0, NULL, 0, NULL, 1),
(4129, 3471, '3', 'Bharthidasan university ', '', 'Bca', '2018', 65.00, '', 1, '2021-02-23 10:06:18', 0, NULL, 0, NULL, 1),
(4130, 3472, '3', 'KLN College of Engineering', '', 'B.E(Mechanical)', '2013', 82.30, '', 1, '2021-02-23 11:08:01', 0, NULL, 0, NULL, 1),
(4131, 3472, '2', 'TN State Board', '', '', '2009', 94.10, '', 1, '2021-02-23 11:08:24', 0, NULL, 0, NULL, 1),
(4132, 3472, '1', 'TN State Board', '', '', '2007', 95.20, '', 1, '2021-02-23 11:08:39', 0, NULL, 0, NULL, 1),
(4133, 3473, '4', 'Pondicherry University', '', 'MBA hRM', '2011', 57.00, '', 1, '2021-02-23 11:30:49', 0, NULL, 0, NULL, 1),
(4134, 3475, '3', 'Anna University', '', 'B.E Computer Science', '2013', 70.00, '', 1, '2021-02-23 12:10:04', 0, NULL, 0, NULL, 1),
(4135, 3478, '5', 'Directorate of Technical Education', '', 'Electrical and Electronics Engineering', '2015', 66.00, '', 1, '2021-02-23 01:49:55', 0, NULL, 0, NULL, 1),
(4136, 3478, '3', 'Anna University', '', 'B.E.', '2018', 62.00, '', 1, '2021-02-23 01:50:52', 0, NULL, 0, NULL, 1),
(4137, 3476, '3', 'anna university', '', 'b.e mechanical engineering', '2012', 71.00, '', 1, '2021-02-23 01:59:37', 0, NULL, 0, NULL, 1),
(4138, 3479, '3', 'chennai institute of technology', '', 'b.e', '2021', 76.00, '', 1, '2021-02-23 02:23:39', 0, NULL, 0, NULL, 1),
(4139, 3479, '1', 'state board', '', '', '2017', 80.00, '', 1, '2021-02-23 02:24:06', 0, NULL, 0, NULL, 1),
(4140, 3479, '2', 'state board', '', '', '2015', 90.00, '', 1, '2021-02-23 02:24:32', 0, NULL, 0, NULL, 1),
(4141, 3482, '3', 'Anna university', '', 'B.E', '2016', 6.90, '', 1, '2021-02-23 04:33:22', 0, NULL, 0, NULL, 1),
(4142, 3483, '3', 'dr.M.G.R. Educational and Research Institute', '', 'B.Tech C.S.E', '2020', 78.00, '', 1, '2021-02-23 04:48:54', 0, NULL, 0, NULL, 1),
(4143, 3484, '4', 'Madurai Kamaraj University', '', 'MBA', '2009', 70.00, '', 1, '2021-02-23 05:09:03', 0, NULL, 0, NULL, 1),
(4144, 3487, '3', 'Anna university', '', '', '2014', 75.00, '', 1, '2021-02-23 05:58:05', 0, NULL, 0, NULL, 1),
(4145, 3489, '3', 'Ethiraj College for women', '', 'BCOM', '2012', 72.00, '', 1, '2021-02-23 07:56:36', 0, NULL, 0, NULL, 1),
(4146, 3480, '3', 'Vaigai College of Engineering', '', 'Bachelor of Engineering', '2018', 6.10, '', 1, '2021-02-23 08:20:40', 0, NULL, 0, NULL, 1),
(4147, 3490, '4', 'Madras University', '', 'Masters of Arts in English Literature', '2019', 72.00, '', 1, '2021-02-23 08:58:50', 0, NULL, 0, NULL, 1),
(4148, 3477, '4', 'University of Madras ', '', 'MA. English ', '2019', 64.00, '', 1, '2021-02-23 09:23:04', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4149, 3486, '3', 'Madras University', '', 'Bsc Computer science', '2015', 74.00, '', 1, '2021-02-23 10:40:55', 0, NULL, 0, NULL, 1),
(4150, 3491, '3', 'madras university', '', 'b b a', '2010', 54.00, '', 1, '2021-02-24 01:00:59', 0, NULL, 0, NULL, 1),
(4151, 3492, '3', 'madras university', '', 'bsc', '2015', 60.00, '', 1, '2021-02-24 01:06:55', 0, NULL, 0, NULL, 1),
(4152, 3495, '3', 'Anna University ', '', 'Btech IT', '2016', 62.30, '', 1, '2021-02-24 10:07:51', 0, NULL, 0, NULL, 1),
(4153, 3287, '2', 'State board', '', '', '2012', 63.58, '', 1, '2021-02-24 10:10:21', 0, NULL, 0, NULL, 1),
(4154, 3287, '1', 'State board ', '', '', '2010', 77.00, '', 1, '2021-02-24 10:10:50', 0, NULL, 0, NULL, 1),
(4155, 3496, '4', 'Sree Sastha Institute of technology', '', 'M.E. Communication Systems', '2016', 7.88, '', 1, '2021-02-24 10:32:09', 0, NULL, 0, NULL, 1),
(4156, 3497, '3', 'klnct', '', 'btech it', '2016', 62.30, '', 1, '2021-02-24 10:59:44', 0, NULL, 0, NULL, 1),
(4157, 3497, '2', 'stateboard', '', '', '2012', 63.58, '', 1, '2021-02-24 11:00:15', 0, NULL, 0, NULL, 1),
(4158, 3497, '1', 'staterboard', '', '', '2010', 77.00, '', 1, '2021-02-24 11:00:34', 0, NULL, 0, NULL, 1),
(4159, 3342, '5', 'State board', '', '', '2016', 79.00, '', 1, '2021-02-24 11:01:38', 0, NULL, 0, NULL, 1),
(4160, 3499, '3', 'DG vaishnav college Autonomous', '', 'B.sc(PCA)', '2018', 64.00, '', 1, '2021-02-24 11:49:40', 0, NULL, 0, NULL, 1),
(4161, 3501, '2', 'state board', '', '', '2015', 72.00, '', 1, '2021-02-24 12:50:52', 0, NULL, 0, NULL, 1),
(4162, 3501, '3', 'state board', '', 'bba', '2018', 79.00, '', 1, '2021-02-24 12:51:24', 0, NULL, 0, NULL, 1),
(4163, 3503, '5', 'Dote', '', 'Electronic and communication engineering ', '2018', 60.00, '', 1, '2021-02-24 01:18:40', 0, NULL, 0, NULL, 1),
(4164, 3502, '3', 'c v raman univercity', '', 'bca', '2016', 60.00, '', 1, '2021-02-24 01:24:21', 0, NULL, 0, NULL, 1),
(4165, 3504, '3', 'anna university', '', 'BE', '2021', 78.00, '', 1, '2021-02-24 02:12:17', 1, '2021-02-24 02:13:16', 0, NULL, 0),
(4166, 3504, '2', 'sakthi matric higher secondary school', '', '', '2017', 93.00, '', 1, '2021-02-24 02:13:02', 1, '2021-02-24 02:13:13', 0, NULL, 0),
(4167, 3504, '1', 'rani seethai aachi higher secondary school', '', '', '2015', 96.40, '', 1, '2021-02-24 02:13:48', 0, NULL, 0, NULL, 1),
(4168, 3504, '2', 'sakthi metric higher secondary school', '', '', '2017', 93.00, '', 1, '2021-02-24 02:14:19', 0, NULL, 0, NULL, 1),
(4169, 3504, '3', 'anna university', '', 'BE', '2021', 78.00, '', 1, '2021-02-24 02:14:47', 0, NULL, 0, NULL, 1),
(4170, 3505, '3', 'Bharthidasan university ', '', 'BCA', '2018', 65.00, '', 1, '2021-02-24 02:16:51', 0, NULL, 0, NULL, 1),
(4171, 3500, '3', 'madras unviersity', '', 'bsc maths', '2018', 74.00, '', 1, '2021-02-24 03:05:28', 0, NULL, 0, NULL, 1),
(4172, 3506, '3', 'ramakrishna mission vivekananda college ', '', 'bachelor of business administration', '2021', 75.00, '', 1, '2021-02-24 03:37:43', 0, NULL, 0, NULL, 1),
(4173, 3506, '2', 'cbse', '', '', '2018', 78.00, '', 1, '2021-02-24 03:38:48', 0, NULL, 0, NULL, 1),
(4174, 3507, '3', 'anna university', '', 'Bachelor of Engineering', '2021', 70.00, '', 1, '2021-02-24 04:08:36', 0, NULL, 0, NULL, 1),
(4175, 3512, '4', 'Madras university ', '', 'mBA', '2020', 70.00, '', 1, '2021-02-25 10:41:47', 0, NULL, 0, NULL, 1),
(4176, 3512, '4', 'Madras university ', '', 'mBA', '2020', 70.00, '', 1, '2021-02-25 10:41:47', 0, NULL, 0, NULL, 1),
(4177, 3512, '4', 'Madras university ', '', 'mBA', '2020', 70.00, '', 1, '2021-02-25 10:41:48', 0, NULL, 0, NULL, 1),
(4178, 3513, '1', 'Vidhya Peetham Matricalution School ', '', 'B.E.MECHANICAL ENGINEERING', '2015', 91.40, '', 1, '2021-02-25 10:43:01', 1, '2021-02-25 10:47:17', 0, NULL, 0),
(4179, 3513, '2', 'Paavai Matriculation Higher Secondary School ', '', '', '2017', 85.40, '', 1, '2021-02-25 10:44:54', 0, NULL, 0, NULL, 1),
(4180, 3513, '3', 'Sri Ramakrishna Engineering College', '', 'B.E.Mechanical Engineering', '2021', 78.40, '', 1, '2021-02-25 10:45:54', 1, '2021-02-25 10:47:45', 0, NULL, 1),
(4181, 3513, '1', 'Vidhya Peetham Matriculation School', '', '', '2015', 91.40, '', 1, '2021-02-25 10:48:32', 0, NULL, 0, NULL, 1),
(4182, 3511, '3', 'THIRUVALLUVAR UNIVERSITY', '', 'B.com', '2018', 67.00, '', 1, '2021-02-25 10:57:48', 0, NULL, 0, NULL, 1),
(4183, 3514, '3', 'srm university', '', 'ba journalism and mass communication', '2021', 70.00, '', 1, '2021-02-25 11:36:13', 0, NULL, 0, NULL, 1),
(4184, 3515, '3', 'Tiruvallur', '', 'Bsc computer science', '2010', 59.00, '', 1, '2021-02-25 12:01:54', 0, NULL, 0, NULL, 1),
(4185, 3518, '3', 'St Peter\'s University', '', 'B.E (CSE)', '2020', 65.00, '', 1, '2021-02-25 01:39:50', 0, NULL, 0, NULL, 1),
(4186, 3518, '1', 'State board', '', '', '2016', 68.00, '', 1, '2021-02-25 01:40:22', 0, NULL, 0, NULL, 1),
(4187, 3518, '2', 'State board', '', '', '2014', 84.00, '', 1, '2021-02-25 01:41:17', 0, NULL, 0, NULL, 1),
(4188, 3519, '3', 'BHARATHITHASAN UNIVERSITY', '', 'B LItter', '2015', 69.00, '', 1, '2021-02-25 03:01:48', 0, NULL, 0, NULL, 1),
(4189, 3520, '5', 'vaani Polytechnic  college  ', '', 'electrical and electronics engineering', '2020', 78.00, '', 1, '2021-02-25 03:01:55', 0, NULL, 0, NULL, 1),
(4190, 3523, '4', 'University of Madras', '', 'MCA', '2020', 85.00, '', 1, '2021-02-25 05:56:45', 0, NULL, 0, NULL, 1),
(4191, 3524, '1', 'State board', '', '', '2014', 93.60, '', 1, '2021-02-25 06:09:15', 0, NULL, 0, NULL, 1),
(4192, 3524, '2', 'State board', '', '', '2016', 94.70, '', 1, '2021-02-25 06:09:53', 0, NULL, 0, NULL, 1),
(4193, 3524, '3', 'Anna University', '', 'BE(CSE)', '2020', 73.10, '', 1, '2021-02-25 06:10:38', 0, NULL, 0, NULL, 1),
(4194, 3525, '3', 'Sindhi collage of arts and science', '', 'B.com (general)', '2020', 61.00, '', 1, '2021-02-25 06:51:20', 0, NULL, 0, NULL, 1),
(4195, 3526, '3', 'Sindhi college of arts and science', '', 'B.COM General', '2020', 61.00, '', 1, '2021-02-25 06:51:22', 0, NULL, 0, NULL, 1),
(4196, 3527, '3', 'Thiruvalluvar university', '', 'Bsc physics', '2016', 70.00, '', 1, '2021-02-25 07:00:57', 0, NULL, 0, NULL, 1),
(4197, 3528, '3', 'Madras University', '', 'BA', '2009', 50.00, '', 1, '2021-02-25 07:30:23', 0, NULL, 0, NULL, 1),
(4198, 3529, '3', 'Dhanaraj baid jain college', '', 'B.com', '2019', 70.00, '', 1, '2021-02-25 07:48:54', 0, NULL, 0, NULL, 1),
(4199, 3530, '4', 'Srm university', '', 'M c a', '2016', 72.00, '', 1, '2021-02-26 08:27:40', 0, NULL, 0, NULL, 1),
(4200, 3531, '4', 'harathidhasan university', '', 'bsc', '2017', 70.00, '', 1, '2021-02-26 08:49:56', 0, NULL, 0, NULL, 1),
(4201, 3532, '3', 'kamaraj university', '', 'bcom', '2018', 78.00, '', 1, '2021-02-26 09:09:54', 0, NULL, 0, NULL, 1),
(4202, 3535, '3', 'St Peters', '', 'B.E CSE', '2020', 65.00, '', 1, '2021-02-26 10:25:02', 0, NULL, 0, NULL, 1),
(4203, 3535, '2', 'State board', '', '', '2016', 68.00, '', 1, '2021-02-26 10:25:49', 0, NULL, 0, NULL, 1),
(4204, 3538, '3', 'anna university', '', 'be', '2012', 68.00, '', 1, '2021-02-26 10:52:49', 0, NULL, 0, NULL, 1),
(4205, 3536, '3', 'Madras University', '', 'B.com', '2018', 65.00, '', 1, '2021-02-26 10:54:57', 0, NULL, 0, NULL, 1),
(4206, 2469, '3', 'Bharadhidhasan University', '', 'B.com ', '2020', 72.00, '', 1, '2021-02-26 10:56:02', 0, NULL, 0, NULL, 1),
(4207, 3534, '3', 'Bharathidasan University', '', 'B.sc', '2011', 52.00, '', 1, '2021-02-26 10:56:25', 0, NULL, 0, NULL, 1),
(4208, 3539, '3', 'Anna University', '', 'BE Aeronautical Engineering', '2016', 6.48, '', 1, '2021-02-26 11:17:11', 0, NULL, 0, NULL, 1),
(4209, 3539, '5', 'Dote', '', 'Dme mechanical engineering', '2011', 80.00, '', 1, '2021-02-26 11:17:47', 0, NULL, 0, NULL, 1),
(4210, 3539, '1', 'State board', '', '', '2008', 83.00, '', 1, '2021-02-26 11:18:09', 0, NULL, 0, NULL, 1),
(4211, 3542, '3', 'Madras university', '', 'B.com', '2020', 61.00, '', 1, '2021-02-26 11:30:43', 0, NULL, 0, NULL, 1),
(4212, 3541, '4', 'Anna university', '', 'MBA', '2020', 60.00, '', 1, '2021-02-26 11:33:34', 0, NULL, 0, NULL, 1),
(4213, 3537, '3', 'periyar university', '', 'b.sc mathmatics', '2017', 57.38, '', 1, '2021-02-26 11:43:47', 0, NULL, 0, NULL, 1),
(4214, 3543, '3', 'anna university', '', 'be ece', '2008', 63.00, '', 1, '2021-02-26 12:00:05', 0, NULL, 0, NULL, 1),
(4215, 2742, '1', 'kvv group of insti ', '', '', '2012', 64.00, '', 1, '2021-02-26 02:53:15', 0, NULL, 0, NULL, 1),
(4216, 3545, '4', 'Hindustan University', '', 'MBA ', '2019', 78.90, '', 1, '2021-02-26 02:55:43', 0, NULL, 0, NULL, 1),
(4217, 3545, '3', 'Karpagam University', '', 'Electronics and communication engineering', '2017', 65.60, '', 1, '2021-02-26 02:56:52', 0, NULL, 0, NULL, 1),
(4218, 3546, '3', 'madras university', '', 'b.com computer application', '2015', 70.00, '', 1, '2021-02-26 03:10:52', 0, NULL, 0, NULL, 1),
(4219, 3547, '3', 'Amet university', '', 'Bba', '2020', 78.00, '', 1, '2021-02-26 03:48:07', 0, NULL, 0, NULL, 1),
(4220, 3548, '3', 'Madras University', '', 'bcom(cs)', '2005', 64.00, '', 1, '2021-02-26 04:44:33', 0, NULL, 0, NULL, 1),
(4221, 3549, '1', 'state board', '', '', '1996', 71.00, '', 1, '2021-02-26 04:53:48', 0, NULL, 0, NULL, 1),
(4222, 3549, '2', 'state board', '', '', '1998', 89.00, '', 1, '2021-02-26 04:55:43', 0, NULL, 0, NULL, 1),
(4223, 3549, '3', 'd b jain college', '', 'b com', '2001', 69.00, '', 1, '2021-02-26 04:56:48', 0, NULL, 0, NULL, 1),
(4224, 3549, '4', 'madras university', '', 'm c a correspondence', '2004', 72.00, '', 1, '2021-02-26 04:58:09', 0, NULL, 0, NULL, 1),
(4225, 3551, '4', 'hindustan university', '', 'm b a', '2016', 83.90, '', 1, '2021-02-26 05:24:19', 0, NULL, 0, NULL, 1),
(4226, 3551, '3', 'anna university', '', 'b e', '2013', 61.10, '', 1, '2021-02-26 05:24:54', 0, NULL, 0, NULL, 1),
(4227, 3554, '3', 'LOYOLA INSTITUTE OF TECHNOLOGIES', '', 'BE', '2018', 71.00, '', 1, '2021-02-26 06:58:36', 0, NULL, 0, NULL, 1),
(4228, 3555, '3', 'Anna University - GKMCET', '', 'B.E. Aeronautical', '2016', 6.32, '', 1, '2021-02-26 07:29:31', 1, '2021-02-26 07:29:49', 0, NULL, 1),
(4229, 3556, '3', 'SRM ', '', 'Bcom', '2015', 65.00, '', 1, '2021-02-26 07:45:46', 0, NULL, 0, NULL, 1),
(4230, 3516, '3', 'anna university', '', 'b.e', '2019', 63.00, '', 1, '2021-02-26 10:32:04', 0, NULL, 0, NULL, 1),
(4231, 3557, '4', 'anna university', '', 'mba', '2015', 65.00, '', 1, '2021-02-27 11:19:16', 0, NULL, 0, NULL, 1),
(4232, 3558, '3', 'Madras university', '', 'BCA ', '2018', 71.00, '', 1, '2021-02-27 11:30:56', 0, NULL, 0, NULL, 1),
(4233, 3559, '3', 'Madras University', '', 'B.A Tamil', '2019', 67.00, '', 1, '2021-02-27 11:30:57', 0, NULL, 0, NULL, 1),
(4234, 3561, '3', 'tiruvalluvar university vellore', '', 'b s c computer science', '2013', 68.00, '', 1, '2021-02-27 01:46:54', 1, '2021-02-27 01:48:43', 0, NULL, 1),
(4235, 3561, '4', 'university of madras', '', 'm b a - management information system', '2019', 65.00, '', 1, '2021-02-27 01:49:29', 0, NULL, 0, NULL, 1),
(4236, 3561, '2', 'state board', '', '', '2010', 59.00, '', 1, '2021-02-27 01:50:22', 1, '2021-02-27 01:51:13', 0, NULL, 1),
(4237, 3561, '1', 'state board', '', '', '2008', 56.00, '', 1, '2021-02-27 01:50:51', 0, NULL, 0, NULL, 1),
(4238, 3563, '4', 'Madras University', '', 'M.Sc', '2019', 72.00, '', 1, '2021-02-27 02:39:58', 0, NULL, 0, NULL, 1),
(4239, 3563, '3', 'Madras University', '', 'B.Sc', '2017', 66.34, '', 1, '2021-02-27 02:40:46', 0, NULL, 0, NULL, 1),
(4240, 3563, '2', 'State Board', '', '', '2014', 60.16, '', 1, '2021-02-27 02:41:19', 0, NULL, 0, NULL, 1),
(4241, 3563, '1', 'State board', '', '', '2012', 68.42, '', 1, '2021-02-27 02:41:43', 0, NULL, 0, NULL, 1),
(4242, 3564, '3', 'University', '', 'B A Economic', '2018', 75.00, '', 1, '2021-02-27 02:46:13', 0, NULL, 0, NULL, 1),
(4243, 3565, '3', 'Anna University', '', 'bE', '2013', 66.67, '', 1, '2021-02-27 03:43:03', 0, NULL, 0, NULL, 1),
(4244, 3568, '1', 'Velankanni matric Hr secondary school', '', '', '2012', 83.00, '', 1, '2021-02-27 04:53:17', 0, NULL, 0, NULL, 1),
(4245, 3568, '2', 'Balalok matric hr sec school', '', '', '2014', 71.00, '', 1, '2021-02-27 04:53:44', 0, NULL, 0, NULL, 1),
(4246, 3568, '3', 'SKR ENGINEERING COLLEGE', '', 'BE Civil engineering', '2018', 61.00, '', 1, '2021-02-27 04:54:08', 0, NULL, 0, NULL, 1),
(4247, 3567, '3', 'University College of Engineering Villupuram', '', 'B. Tech - Information Technology', '2020', 8.01, '', 1, '2021-02-27 05:46:09', 0, NULL, 0, NULL, 1),
(4248, 3571, '3', 'Dg vaishnav college', '', 'Bachelor of Business Administration ', '2021', 80.00, '', 1, '2021-02-27 06:40:57', 0, NULL, 0, NULL, 1),
(4249, 3574, '3', 'Anna university ', '', 'Bachelor of engineering ', '2019', 65.60, '', 1, '2021-02-27 11:27:29', 0, NULL, 0, NULL, 1),
(4250, 3575, '3', 'madras university', '', 'bcom', '2019', 68.00, '', 1, '2021-02-28 10:36:15', 0, NULL, 0, NULL, 1),
(4251, 3576, '3', 'madras university', '', 'bcom', '2017', 55.00, '', 1, '2021-02-28 10:46:27', 0, NULL, 0, NULL, 1),
(4252, 3577, '3', 'anna university', '', 'btech', '2012', 68.00, '', 1, '2021-02-28 10:59:51', 0, NULL, 0, NULL, 1),
(4253, 3578, '2', 'state board', '', '', '2012', 61.00, '', 1, '2021-02-28 11:12:51', 0, NULL, 0, NULL, 1),
(4254, 3579, '3', 'anna university', '', 'bcom', '2019', 65.00, '', 1, '2021-02-28 11:27:01', 0, NULL, 0, NULL, 1),
(4255, 3580, '3', 'Anna university ', '', 'BE AERONAUTICAL ENGINEERING ', '2020', 6.80, '', 1, '2021-02-28 05:38:17', 0, NULL, 0, NULL, 1),
(4256, 3509, '3', 'sathyabama university', '', 'b.e ', '2017', 68.00, '', 1, '2021-02-28 10:25:19', 0, NULL, 0, NULL, 1),
(4257, 3509, '1', 'vyasa vidyalaya matric higher secondary school', '', '', '2011', 78.00, '', 1, '2021-02-28 10:26:49', 0, NULL, 0, NULL, 1),
(4258, 3509, '2', 'vyasa vidyalaya matric higher secondary school', '', '', '2013', 73.00, '', 1, '2021-02-28 10:27:14', 0, NULL, 0, NULL, 1),
(4259, 3572, '3', 'Dg Vaishnav', '', 'Bba', '2021', 60.70, '', 1, '2021-03-01 01:49:00', 0, NULL, 0, NULL, 1),
(4260, 3560, '3', 'madras university', '', 'bba', '2008', 65.00, '', 1, '2021-03-01 10:49:01', 0, NULL, 0, NULL, 1),
(4261, 3560, '4', 'madras university', '', 'mba', '2012', 62.00, '', 1, '2021-03-01 10:49:45', 0, NULL, 0, NULL, 1),
(4262, 3583, '3', 'Madras University', '', 'BCA', '2020', 65.00, '', 1, '2021-03-01 11:10:42', 0, NULL, 0, NULL, 1),
(4263, 3584, '3', 'Madurai kamaraj University', '', 'B.com(Computer Applications)', '2020', 75.00, '', 1, '2021-03-01 11:15:46', 0, NULL, 0, NULL, 1),
(4264, 3585, '5', 'Dote', '', 'Diploma in mechanical engineering', '2014', 72.00, '', 1, '2021-03-01 11:29:27', 0, NULL, 0, NULL, 1),
(4265, 3586, '3', 'Panimalar Engineering College', '', 'B.E', '2021', 77.00, '', 1, '2021-03-01 11:43:46', 0, NULL, 0, NULL, 1),
(4266, 3586, '2', 'A.K.T Academy Matriculation Higher Secondary schools', '', '', '2017', 95.00, '', 1, '2021-03-01 11:45:13', 0, NULL, 0, NULL, 1),
(4267, 3586, '1', 'A.K.T Academy Matriculation Higher Secondary schools', '', '', '2015', 95.40, '', 1, '2021-03-01 11:46:22', 0, NULL, 0, NULL, 1),
(4268, 3587, '3', 'CSJM UNIVERSITY', '', 'Bcom', '2019', 50.00, '', 1, '2021-03-01 11:49:10', 0, NULL, 0, NULL, 1),
(4269, 3588, '2', 'state board', '', '', '2017', 79.00, '', 1, '2021-03-01 11:52:38', 0, NULL, 0, NULL, 1),
(4270, 3588, '3', 'autonomus', '', 'ba history', '2020', 51.00, '', 1, '2021-03-01 11:53:11', 0, NULL, 0, NULL, 1),
(4271, 3589, '3', 'Anna University', '', 'BE', '2020', 68.00, '', 1, '2021-03-01 12:15:38', 0, NULL, 0, NULL, 1),
(4272, 3590, '3', 'madras university', '', 'b.com', '2015', 60.00, '', 1, '2021-03-01 01:40:25', 0, NULL, 0, NULL, 1),
(4273, 3590, '4', 'madras university', '', 'mba', '2017', 60.00, '', 1, '2021-03-01 01:41:01', 0, NULL, 0, NULL, 1),
(4274, 3590, '1', 'state board', '', '', '2012', 85.00, '', 1, '2021-03-01 01:42:01', 0, NULL, 0, NULL, 1),
(4275, 3590, '2', 'stateboard', '', '', '2010', 65.00, '', 1, '2021-03-01 01:42:34', 0, NULL, 0, NULL, 1),
(4276, 3592, '3', 'SRM university', '', 'B.Tech Chemical engineering', '2017', 6.67, '', 1, '2021-03-01 03:33:36', 0, NULL, 0, NULL, 1),
(4277, 3594, '3', 'Anna University ', '', 'B. Tech (Information Technology) ', '2009', 74.00, '', 1, '2021-03-01 04:28:37', 0, NULL, 0, NULL, 1),
(4278, 3595, '5', 'Anna University', '', '', '2012', 80.54, '', 1, '2021-03-01 05:47:34', 0, NULL, 0, NULL, 1),
(4279, 3596, '3', 'University of madras', '', 'B.com', '2017', 50.00, '', 1, '2021-03-01 06:03:52', 0, NULL, 0, NULL, 1),
(4280, 3598, '5', 'anna university', '', '', '2012', 81.00, '', 1, '2021-03-01 09:26:30', 0, NULL, 0, NULL, 1),
(4281, 3600, '3', 'Madras university', '', 'B.com(c.s)', '2017', 58.00, '', 1, '2021-03-02 10:08:51', 0, NULL, 0, NULL, 1),
(4282, 3602, '2', 'state board', '', '', '2013', 86.00, '', 1, '2021-03-02 10:37:45', 0, NULL, 0, NULL, 1),
(4283, 3602, '3', 'anna university', '', 'be', '2015', 70.00, '', 1, '2021-03-02 10:38:09', 0, NULL, 0, NULL, 1),
(4284, 3603, '3', 'Anna University', '', 'B.E', '2017', 68.00, '', 1, '2021-03-02 10:53:02', 0, NULL, 0, NULL, 1),
(4285, 3603, '2', 'State Board', '', '', '2013', 85.00, '', 1, '2021-03-02 10:54:07', 0, NULL, 0, NULL, 1),
(4286, 3603, '1', 'State Board', '', '', '2011', 92.00, '', 1, '2021-03-02 10:54:37', 0, NULL, 0, NULL, 1),
(4287, 3604, '4', 'srm ', '', 'mba', '2020', 77.00, '', 1, '2021-03-02 11:22:24', 0, NULL, 0, NULL, 1),
(4288, 3604, '3', 'bharathiyar university ', '', 'bba ', '2018', 59.00, '', 1, '2021-03-02 11:23:11', 0, NULL, 0, NULL, 1),
(4289, 3604, '2', 'state board ', '', '', '2015', 70.00, '', 1, '2021-03-02 11:23:50', 0, NULL, 0, NULL, 1),
(4290, 3604, '1', 'state board ', '', '', '2013', 72.00, '', 1, '2021-03-02 11:24:22', 0, NULL, 0, NULL, 1),
(4291, 3597, '4', 'Annamalai University ', '', 'MBA', '2020', 86.00, '', 1, '2021-03-02 11:28:43', 0, NULL, 0, NULL, 1),
(4292, 3606, '3', 'Madras University', '', 'B com', '2019', 53.00, '', 1, '2021-03-02 11:51:30', 0, NULL, 0, NULL, 1),
(4293, 3605, '1', 'state board', '', '', '2010', 79.00, '', 1, '2021-03-02 11:56:19', 1, '2021-03-02 11:58:06', 0, NULL, 1),
(4294, 3605, '2', 'state board', '', '', '2012', 55.00, '', 1, '2021-03-02 11:56:48', 0, NULL, 0, NULL, 1),
(4295, 3605, '3', 'bharathidhasan university', '', 'b.sc', '2015', 60.00, '', 1, '2021-03-02 11:57:34', 0, NULL, 0, NULL, 1),
(4296, 3607, '4', 'Pondicherry University', '', 'MBA', '2011', 70.00, '', 1, '2021-03-02 12:01:57', 0, NULL, 0, NULL, 1),
(4297, 3608, '3', 'Madurai Kamaraj University ', '', 'B. Com', '2015', 74.00, '', 1, '2021-03-02 12:18:26', 0, NULL, 0, NULL, 1),
(4298, 3608, '2', 'State board', '', '', '2012', 96.00, '', 1, '2021-03-02 12:18:54', 0, NULL, 0, NULL, 1),
(4299, 3608, '1', 'ICSE', '', '', '2010', 76.00, '', 1, '2021-03-02 12:19:17', 0, NULL, 0, NULL, 1),
(4300, 3609, '4', 'University of madras ', '', 'MSC information technology ', '2016', 70.00, '', 1, '2021-03-02 12:51:53', 0, NULL, 0, NULL, 1),
(4301, 3609, '3', 'University of madras ', '', 'BBA', '2013', 50.00, '', 1, '2021-03-02 12:52:46', 0, NULL, 0, NULL, 1),
(4302, 3611, '1', 'State board', '', '', '2012', 93.00, '', 1, '2021-03-02 02:44:55', 0, NULL, 0, NULL, 1),
(4303, 3611, '2', 'State board', '', '', '2014', 83.00, '', 1, '2021-03-02 02:45:15', 0, NULL, 0, NULL, 1),
(4304, 3611, '3', 'Anna university', '', 'Mechanics Engineering', '2018', 77.00, '', 1, '2021-03-02 02:45:45', 0, NULL, 0, NULL, 1),
(4305, 3611, '4', 'Pondicherry University', '', 'MBA HRM', '2020', 63.00, '', 1, '2021-03-02 02:46:12', 0, NULL, 0, NULL, 1),
(4306, 3612, '2', 'State board of TamilNadu', '', 'B.com', '2016', 44.42, '', 1, '2021-03-02 02:51:55', 0, NULL, 0, NULL, 1),
(4307, 3613, '3', 'University', '', 'B e', '2016', 70.00, '', 1, '2021-03-02 02:55:17', 0, NULL, 0, NULL, 1),
(4308, 3615, '3', 'PSG college of arts and science ', '', 'B.com E-commerce ', '2018', 72.00, '', 1, '2021-03-02 03:38:46', 0, NULL, 0, NULL, 1),
(4309, 3616, '3', 'A.m.jain college', '', 'BBA', '2020', 55.00, '', 1, '2021-03-02 03:58:51', 0, NULL, 0, NULL, 1),
(4310, 3617, '3', 'University', '', 'Bsc.biochemistry', '2019', 74.00, '', 1, '2021-03-02 04:28:45', 0, NULL, 0, NULL, 1),
(4311, 3618, '3', 'Anna University', '', 'BE', '2016', 78.50, '', 1, '2021-03-02 04:55:32', 0, NULL, 0, NULL, 1),
(4312, 3615, '4', 'Anna university ', '', 'MBA (MARKETING AND FINANCE)', '2020', 70.00, '', 1, '2021-03-02 07:45:00', 0, NULL, 0, NULL, 1),
(4313, 3615, '2', 'State board ', '', '', '2015', 92.00, '', 1, '2021-03-02 07:45:23', 0, NULL, 0, NULL, 1),
(4314, 3620, '4', 'Vel Tech School of Management', '', 'MBA', '2018', 89.00, '', 1, '2021-03-02 08:06:59', 0, NULL, 0, NULL, 1),
(4315, 3620, '3', 'University of Madras', '', 'BBA', '2016', 71.00, '', 1, '2021-03-02 08:07:28', 0, NULL, 0, NULL, 1),
(4316, 3553, '4', 'Sikkim manipal', '', 'MBA', '2010', 50.00, '', 1, '2021-03-02 11:41:55', 0, NULL, 0, NULL, 1),
(4317, 3601, '4', 'Amity University', '', 'Mba', '2014', 6.50, '', 1, '2021-03-03 10:16:38', 0, NULL, 0, NULL, 1),
(4318, 3601, '4', 'Amity University', '', '', '2014', 6.50, '', 1, '2021-03-03 10:17:22', 1, '2021-03-03 10:17:34', 0, NULL, 0),
(4319, 3622, '4', 'Madras University', '', 'B.com', '2019', 56.00, '', 1, '2021-03-03 12:15:09', 0, NULL, 0, NULL, 1),
(4320, 3623, '3', 'Madras', '', 'Bsc computer sci', '2019', 73.00, '', 1, '2021-03-03 12:29:15', 0, NULL, 0, NULL, 1),
(4321, 3624, '4', 'Anna university', '', 'MBA - Finanace & Marketing', '2019', 78.10, '', 1, '2021-03-03 12:35:46', 0, NULL, 0, NULL, 1),
(4322, 3624, '3', 'Bharathidasan university', '', 'B.com - Commerce', '2017', 61.00, '', 1, '2021-03-03 12:36:25', 0, NULL, 0, NULL, 1),
(4323, 3624, '2', 'Sslc', '', '', '2014', 84.10, '', 1, '2021-03-03 12:36:53', 0, NULL, 0, NULL, 1),
(4324, 3625, '4', 'autonomous', '', 'pgdm', '2007', 70.00, '', 1, '2021-03-03 01:04:32', 0, NULL, 0, NULL, 1),
(4325, 3625, '3', 'nagpur university', '', 'be electronics', '2005', 68.00, '', 1, '2021-03-03 01:05:58', 0, NULL, 0, NULL, 1),
(4326, 3626, '3', 'State board', '', 'Bsc ecs', '2019', 75.00, '', 1, '2021-03-03 01:13:31', 0, NULL, 0, NULL, 1),
(4327, 3627, '3', 'Srinivasa inst of engg and technology ', '', 'BE CSE', '2012', 73.00, '', 1, '2021-03-03 01:45:34', 0, NULL, 0, NULL, 1),
(4328, 3628, '3', 'Anna University', '', 'BE', '2011', 67.00, '', 1, '2021-03-03 01:58:08', 0, NULL, 0, NULL, 1),
(4329, 3629, '4', 'Crescent', '', 'Mba', '2020', 78.00, '', 1, '2021-03-03 04:29:45', 0, NULL, 0, NULL, 1),
(4330, 3629, '3', 'Crescent', '', 'BA islamic', '2018', 62.00, '', 1, '2021-03-03 04:30:29', 0, NULL, 0, NULL, 1),
(4331, 3629, '2', 'State board', '', 'Bba', '2015', 56.00, '', 1, '2021-03-03 04:31:27', 1, '2021-03-03 04:32:28', 0, NULL, 0),
(4332, 3629, '1', 'State board', '', '', '2013', 70.00, '', 1, '2021-03-03 04:31:47', 0, NULL, 0, NULL, 1),
(4333, 3629, '2', 'State board', '', '', '2015', 56.00, '', 1, '2021-03-03 04:32:44', 0, NULL, 0, NULL, 1),
(4334, 3630, '3', 'Loyola College', '', 'B.Com CS', '2019', 72.00, '', 1, '2021-03-03 05:05:12', 0, NULL, 0, NULL, 1),
(4335, 3633, '3', 'Vhnsnc college', '', 'BCA', '2018', 80.00, '', 1, '2021-03-03 09:13:08', 0, NULL, 0, NULL, 1),
(4336, 3657, '2', 'vels University ', '', '', '2020', 45.00, '', 1, '2021-03-05 10:52:14', 0, NULL, 0, NULL, 1),
(4337, 3638, '3', 'University', '', 'Bsc (cs)', '2015', 60.00, '', 1, '2021-03-05 10:52:31', 0, NULL, 0, NULL, 1),
(4338, 3660, '3', 'University of madras', '', 'B.A . English.lit', '2019', 49.00, '', 1, '2021-03-05 11:44:41', 0, NULL, 0, NULL, 1),
(4339, 3661, '5', 'DOTE', '', 'Mechanical', '2017', 81.00, '', 1, '2021-03-05 11:45:28', 0, NULL, 0, NULL, 1),
(4340, 3661, '2', 'dote', '', '', '2015', 67.00, '', 1, '2021-03-05 11:46:13', 0, NULL, 0, NULL, 1),
(4341, 3661, '1', 'Dote', '', '', '2013', 72.00, '', 1, '2021-03-05 11:46:33', 0, NULL, 0, NULL, 1),
(4342, 3650, '3', 'Calicut University', '', 'B.Sc Microbiology', '2018', 70.00, '', 1, '2021-03-05 11:54:16', 0, NULL, 0, NULL, 1),
(4343, 3646, '3', 'Anna University', '', 'B E Civil engineering', '2017', 63.60, '', 1, '2021-03-05 11:56:58', 0, NULL, 0, NULL, 1),
(4344, 3665, '3', 'Madras university ', '', 'BA Sociology ', '2020', 84.00, '', 1, '2021-03-05 11:59:05', 0, NULL, 0, NULL, 1),
(4345, 3662, '3', 'Madras University', '', 'Bcom(corporate secretary)', '2021', 75.00, '', 1, '2021-03-05 12:06:50', 0, NULL, 0, NULL, 1),
(4346, 3663, '3', 'Madras university', '', 'B.com General', '2020', 80.00, '', 1, '2021-03-05 12:08:33', 0, NULL, 0, NULL, 1),
(4347, 3664, '3', 'Madras university', '', 'bbs', '2021', 7.10, '', 1, '2021-03-05 12:10:42', 0, NULL, 0, NULL, 1),
(4348, 3648, '1', 'matriculation', '', '', '2006', 58.00, '', 1, '2021-03-05 12:16:45', 0, NULL, 0, NULL, 1),
(4349, 3667, '4', 'Anna university', '', 'Mba', '2019', 75.00, '', 1, '2021-03-05 12:17:06', 0, NULL, 0, NULL, 1),
(4350, 3648, '2', 'matriculation', '', '', '2008', 55.00, '', 1, '2021-03-05 12:17:14', 0, NULL, 0, NULL, 1),
(4351, 3648, '3', 'madras university', '', 'b.sc', '2012', 74.00, '', 1, '2021-03-05 12:17:37', 0, NULL, 0, NULL, 1),
(4352, 3667, '3', 'Bharathidasan university', '', 'Bca', '2017', 82.00, '', 1, '2021-03-05 12:18:03', 0, NULL, 0, NULL, 1),
(4353, 3667, '2', 'State board', '', '', '2014', 50.00, '', 1, '2021-03-05 12:18:23', 0, NULL, 0, NULL, 1),
(4354, 3667, '1', 'State board', '', '', '2012', 60.00, '', 1, '2021-03-05 12:18:43', 0, NULL, 0, NULL, 1),
(4355, 3666, '3', 'Vels university ', '', 'BBA', '2018', 61.00, '', 1, '2021-03-05 12:25:00', 0, NULL, 0, NULL, 1),
(4356, 3668, '5', 'Anna university', '', 'diplomat in computer technology', '2020', 75.00, '', 1, '2021-03-05 01:07:54', 0, NULL, 0, NULL, 1),
(4357, 3670, '4', 'anna university', '', 'mba', '2020', 7.54, '', 1, '2021-03-05 01:36:28', 0, NULL, 0, NULL, 1),
(4358, 3670, '3', 'bharathitasan', '', 'bba', '2018', 65.00, '', 1, '2021-03-05 01:38:04', 0, NULL, 0, NULL, 1),
(4359, 3669, '3', 'bharathiyar university', '', 'bba ca', '2018', 60.00, '', 1, '2021-03-05 01:55:28', 0, NULL, 0, NULL, 1),
(4360, 3674, '5', 'Anna university', '', 'Diploma in Mechanical engineering', '2014', 50.00, '', 1, '2021-03-05 02:02:27', 0, NULL, 0, NULL, 1),
(4361, 3675, '3', 'Madras University ', '', 'B.com', '2017', 68.00, '', 1, '2021-03-05 03:03:18', 0, NULL, 0, NULL, 1),
(4362, 3677, '4', 'Anna university', '', 'MCA', '2016', 81.00, '', 1, '2021-03-06 03:50:59', 0, NULL, 0, NULL, 1),
(4363, 3678, '4', 'st. peters institute of higher education and research', '', 'm.b.a', '2021', 86.03, '', 1, '2021-03-06 07:11:50', 1, '2021-03-06 07:12:55', 0, NULL, 1),
(4364, 3678, '3', 'anna univerity', '', 'b.e.', '2014', 63.70, '', 1, '2021-03-06 07:12:39', 0, NULL, 0, NULL, 1),
(4365, 3659, '3', 'Madras University', '', 'B.com (cS)', '2020', 60.00, '', 1, '2021-03-06 10:32:40', 0, NULL, 0, NULL, 1),
(4366, 3680, '2', 'chennai girls hr.sec.school', '', '', '2016', 65.00, '', 1, '2021-03-06 11:46:05', 0, NULL, 0, NULL, 1),
(4367, 3683, '3', 'anna university', '', 'b.e', '2014', 73.00, '', 1, '2021-03-06 01:01:44', 0, NULL, 0, NULL, 1),
(4368, 3683, '2', 'state board ', '', '', '2010', 83.00, '', 1, '2021-03-06 01:02:43', 0, NULL, 0, NULL, 1),
(4369, 3683, '1', 'state board', '', '', '2007', 86.00, '', 1, '2021-03-06 01:03:08', 0, NULL, 0, NULL, 1),
(4370, 3682, '3', 'Madras university', '', '', '2015', 60.00, '', 1, '2021-03-06 01:04:13', 0, NULL, 0, NULL, 1),
(4371, 3684, '2', 'state board', '', '', '2013', 75.00, '', 1, '2021-03-06 02:46:13', 0, NULL, 0, NULL, 1),
(4372, 3684, '1', 'state board', '', '', '2011', 96.00, '', 1, '2021-03-06 02:47:02', 0, NULL, 0, NULL, 1),
(4373, 3684, '3', 'madras university', '', 'b.scmaths', '2016', 50.00, '', 1, '2021-03-06 02:47:51', 0, NULL, 0, NULL, 1),
(4374, 3689, '4', 'SRM university', '', 'MBA', '2016', 71.00, '', 1, '2021-03-08 10:24:41', 0, NULL, 0, NULL, 1),
(4375, 3690, '3', 'chevalier t.thomas elizabeth college for women', '', 'b.sc ohysics', '2019', 72.00, '', 1, '2021-03-08 11:03:08', 0, NULL, 0, NULL, 1),
(4376, 3691, '3', 'Madras University', '', 'B. Com ( I. S. M) ', '2016', 62.00, '', 1, '2021-03-08 11:11:39', 0, NULL, 0, NULL, 1),
(4377, 3688, '3', 'Anna University', '', 'BE ', '2011', 68.00, '', 1, '2021-03-08 11:34:05', 0, NULL, 0, NULL, 1),
(4378, 3692, '3', 'Tamil Nadu open University', '', 'Bba', '2013', 70.00, '', 1, '2021-03-08 11:53:34', 0, NULL, 0, NULL, 1),
(4379, 3693, '4', 'Barathidasan University', '', 'M.sc Hospital administration', '2020', 79.00, '', 1, '2021-03-08 11:55:24', 0, NULL, 0, NULL, 1),
(4380, 3693, '4', 'Bharathidasan University', '', 'M.sc hospital administration', '2020', 79.00, '', 1, '2021-03-08 11:56:37', 0, NULL, 0, NULL, 1),
(4381, 3695, '3', 'DR.M.G.R.UNIVERSITY', '', 'B.Com (General)', '2018', 66.00, '', 1, '2021-03-08 11:59:26', 0, NULL, 0, NULL, 1),
(4382, 3694, '3', 'State Board', '', 'Bsc bio', '2014', 53.00, '', 1, '2021-03-08 12:01:24', 0, NULL, 0, NULL, 1),
(4383, 3696, '3', 'Periyar university ', '', 'Bsc physics ', '2019', 70.00, '', 1, '2021-03-08 12:14:09', 0, NULL, 0, NULL, 1),
(4384, 3696, '1', 'Marutham matric Hr sec school', '', '', '2014', 92.00, '', 1, '2021-03-08 12:15:38', 0, NULL, 0, NULL, 1),
(4385, 3696, '2', 'Marutham matric Hr sec school ', '', '', '2016', 78.00, '', 1, '2021-03-08 12:16:21', 0, NULL, 0, NULL, 1),
(4386, 3697, '4', 'Sathyabama University ', '', 'MBA ', '2019', 68.00, '', 1, '2021-03-08 12:21:23', 0, NULL, 0, NULL, 1),
(4387, 3697, '3', 'Vivekananda college ', '', 'Become computer application ', '2017', 63.00, '', 1, '2021-03-08 12:22:27', 0, NULL, 0, NULL, 1),
(4388, 3697, '2', 'State board', '', '', '2012', 52.00, '', 1, '2021-03-08 12:24:13', 0, NULL, 0, NULL, 1),
(4389, 3697, '1', 'State board', '', '', '2014', 84.00, '', 1, '2021-03-08 12:24:47', 0, NULL, 0, NULL, 1),
(4390, 3641, '3', 'Dhanalakshmi College of Engineering ', '', 'B.E Cse', '2017', 62.00, '', 1, '2021-03-08 12:34:55', 0, NULL, 0, NULL, 1),
(4391, 3699, '2', 'muruga dhanush kodi', '', '', '2012', 65.00, '', 1, '2021-03-08 01:18:42', 0, NULL, 0, NULL, 1),
(4392, 3701, '5', 'Annai college of polytechnic', '', 'Dcse', '2021', 65.00, '', 1, '2021-03-08 01:26:07', 0, NULL, 0, NULL, 1),
(4393, 3698, '3', 'ethiraj college for women', '', 'bsc', '2015', 55.60, '', 1, '2021-03-08 01:29:29', 0, NULL, 0, NULL, 1),
(4394, 3698, '2', 'new prince matriculation higher secondary school', '', '', '2012', 60.00, '', 1, '2021-03-08 01:30:21', 0, NULL, 0, NULL, 1),
(4395, 3698, '1', 'new prince matriculation higher secondary school ', '', '', '2010', 50.00, '', 1, '2021-03-08 01:31:03', 0, NULL, 0, NULL, 1),
(4396, 3700, '4', 'Bharathidasan university ', '', 'MCA', '2018', 66.00, '', 1, '2021-03-08 01:38:39', 0, NULL, 0, NULL, 1),
(4397, 3702, '5', 'Ptlee chengalvaraya naicker polytechnic college', '', 'Diploma in electronics and communication engineeri', '2018', 83.00, '', 1, '2021-03-08 01:47:30', 0, NULL, 0, NULL, 1),
(4398, 3703, '2', 'saraswathi matric hr sec school', '', 'b e', '2015', 73.00, '', 1, '2021-03-08 02:49:14', 0, NULL, 0, NULL, 1),
(4399, 3704, '3', 'SRM university', '', 'B.com', '2014', 60.00, '', 1, '2021-03-08 03:11:27', 0, NULL, 0, NULL, 1),
(4400, 3706, '3', 'Anna university ', '', 'B. E', '2020', 70.00, '', 1, '2021-03-08 03:54:55', 0, NULL, 0, NULL, 1),
(4401, 3709, '3', 'Madras university', '', 'b.com', '2013', 70.00, '', 1, '2021-03-08 05:06:09', 0, NULL, 0, NULL, 1),
(4402, 3709, '4', 'Madras university', '', 'MBA finance', '2016', 70.00, '', 1, '2021-03-08 05:07:08', 0, NULL, 0, NULL, 1),
(4403, 3705, '4', 'WBUT', '', 'MBA', '2018', 61.00, '', 1, '2021-03-08 05:49:11', 0, NULL, 0, NULL, 1),
(4404, 3711, '3', 'Anna University', '', 'BE', '2015', 65.00, '', 1, '2021-03-08 06:04:00', 0, NULL, 0, NULL, 1),
(4405, 3712, '3', 'vels university', '', 'bachelor of science', '2016', 72.00, '', 1, '2021-03-08 08:30:45', 0, NULL, 0, NULL, 1),
(4406, 3712, '1', 'matriculation', '', '', '2009', 63.00, '', 1, '2021-03-08 08:31:20', 0, NULL, 0, NULL, 1),
(4407, 3712, '2', 'state board', '', '', '2011', 52.00, '', 1, '2021-03-08 08:31:38', 0, NULL, 0, NULL, 1),
(4408, 3687, '4', 'madras university', '', 'mba', '2015', 60.00, '', 1, '2021-03-09 12:18:10', 0, NULL, 0, NULL, 1),
(4409, 3687, '3', 'periyar university', '', 'b sc mathematics', '2012', 65.00, '', 1, '2021-03-09 12:18:55', 0, NULL, 0, NULL, 1),
(4410, 3715, '4', 'Bangaluru central university', '', 'MBA', '2020', 7.00, '', 1, '2021-03-09 10:18:18', 0, NULL, 0, NULL, 1),
(4411, 3714, '3', 'Madras university', '', 'Bca', '2020', 60.00, '', 1, '2021-03-09 10:37:28', 0, NULL, 0, NULL, 1),
(4412, 3714, '1', 'State board', '', '', '2015', 61.00, '', 1, '2021-03-09 10:38:14', 0, NULL, 0, NULL, 1),
(4413, 3714, '2', 'State board', '', '', '2017', 50.00, '', 1, '2021-03-09 10:38:46', 0, NULL, 0, NULL, 1),
(4414, 3716, '3', 'Ramakrishna mission Vivekananda college', '', 'B. A', '2016', 61.00, '', 1, '2021-03-09 10:42:12', 0, NULL, 0, NULL, 1),
(4415, 3708, '4', 'Anna university ', '', 'MBA', '2021', 71.00, '', 1, '2021-03-09 11:29:36', 0, NULL, 0, NULL, 1),
(4416, 3708, '3', 'Madras university ', '', 'BBA', '2019', 65.00, '', 1, '2021-03-09 11:30:09', 0, NULL, 0, NULL, 1),
(4417, 3708, '2', 'State board ', '', '', '2016', 65.00, '', 1, '2021-03-09 11:30:44', 0, NULL, 0, NULL, 1),
(4418, 3708, '1', 'State board ', '', '', '2014', 68.40, '', 1, '2021-03-09 11:31:10', 0, NULL, 0, NULL, 1),
(4419, 3718, '5', 'chennai labs ', '', 'Automobiles', '2005', 76.00, '', 1, '2021-03-09 11:32:39', 0, NULL, 0, NULL, 1),
(4420, 3720, '3', 'Dhanalakshmi srinivasan college of engineering and technology', '', 'B.E (computer science engineering)', '2020', 60.00, '', 1, '2021-03-09 11:34:04', 0, NULL, 0, NULL, 1),
(4421, 3719, '3', 'Anna University', '', 'B.E', '2020', 70.00, '', 1, '2021-03-09 11:35:02', 0, NULL, 0, NULL, 1),
(4422, 3723, '3', 'Madras university', '', 'Bcom', '2003', 67.00, '', 1, '2021-03-09 11:40:50', 0, NULL, 0, NULL, 1),
(4423, 3723, '4', 'Madras university', '', 'Bcom', '2003', 67.00, '', 1, '2021-03-09 11:41:18', 0, NULL, 0, NULL, 1),
(4424, 3671, '4', 'TAGORE ENGINEERING COLLEGE', '', 'MBA', '2021', 67.00, '', 1, '2021-03-09 11:42:09', 0, NULL, 0, NULL, 1),
(4425, 3710, '4', 'TAGORE ENGINEERING COLLEGE', '', 'MBA', '2021', 76.00, '', 1, '2021-03-09 11:58:17', 0, NULL, 0, NULL, 1),
(4426, 3724, '3', 'Autonomous', '', 'B.sc', '2016', 51.00, '', 1, '2021-03-09 11:59:05', 0, NULL, 0, NULL, 1),
(4427, 3721, '3', 'Madras university ', '', 'Ba history ', '2017', 65.00, '', 1, '2021-03-09 12:05:14', 0, NULL, 0, NULL, 1),
(4428, 3722, '3', 'anna university', '', 'be cs', '2020', 61.00, '', 1, '2021-03-09 12:09:16', 0, NULL, 0, NULL, 1),
(4429, 3717, '1', 'state', '', '', '2014', 70.00, '', 1, '2021-03-09 12:19:50', 0, NULL, 0, NULL, 1),
(4430, 3725, '4', 'Anna University', '', 'MBA', '2020', 63.00, '', 1, '2021-03-09 01:30:10', 0, NULL, 0, NULL, 1),
(4431, 3729, '3', 'Anna university', '', 'Be mechanical', '2018', 5.59, '', 1, '2021-03-09 02:37:52', 0, NULL, 0, NULL, 1),
(4432, 3729, '2', 'State boart', '', '', '2014', 76.50, '', 1, '2021-03-09 02:39:12', 0, NULL, 0, NULL, 1),
(4433, 3727, '3', 'Alagappa university ', '', 'BBA ', '2020', 65.00, '', 1, '2021-03-09 02:42:16', 0, NULL, 0, NULL, 1),
(4434, 3730, '3', 'Anna University ', '', 'BE', '2019', 65.00, '', 1, '2021-03-09 03:14:09', 0, NULL, 0, NULL, 1),
(4435, 3728, '2', 'Matriculation board', '', '', '1994', 60.00, '', 1, '2021-03-09 04:07:40', 0, NULL, 0, NULL, 1),
(4436, 3726, '3', 'madras university', '', 'b.com', '2019', 75.00, '', 1, '2021-03-09 04:13:40', 0, NULL, 0, NULL, 1),
(4437, 3731, '4', 'SRM Institute of science and technology', '', 'M.Sc Mathematics', '2018', 61.00, '', 1, '2021-03-09 04:35:43', 0, NULL, 0, NULL, 1),
(4438, 3731, '3', 'Guru Nanak art and science college', '', 'B.Sc Mathematics', '2016', 59.00, '', 1, '2021-03-09 04:37:16', 0, NULL, 0, NULL, 1),
(4439, 3726, '2', 'tamilnadu', '', '', '2020', 83.00, '', 1, '2021-03-09 04:51:57', 0, NULL, 0, NULL, 1),
(4440, 3734, '4', 'bharathidasen university', '', 'mca', '2020', 70.00, '', 1, '2021-03-09 10:18:19', 0, NULL, 0, NULL, 1),
(4441, 3734, '2', 'state board', '', '', '2014', 67.00, '', 1, '2021-03-09 10:19:32', 0, NULL, 0, NULL, 1),
(4442, 3735, '3', 'ERODE SENGUTHAR ENGINEERING COLLEGE', '', 'B.E', '2018', 65.00, '', 1, '2021-03-10 09:31:45', 0, NULL, 0, NULL, 1),
(4443, 3736, '3', 'Bharathidhasan university', '', 'Bca', '2018', 56.70, '', 1, '2021-03-10 10:30:47', 0, NULL, 0, NULL, 1),
(4444, 3732, '3', 'Anna university', '', 'BE ECE', '2014', 68.00, '', 1, '2021-03-10 10:45:12', 0, NULL, 0, NULL, 1),
(4445, 3737, '3', 'Madras University', '', 'Bcom', '2021', 65.00, '', 1, '2021-03-10 10:53:01', 0, NULL, 0, NULL, 1),
(4446, 3739, '3', 'Thiruvallur University', '', 'B.Sc Computer Science', '2019', 69.00, '', 1, '2021-03-10 11:01:40', 0, NULL, 0, NULL, 1),
(4447, 3739, '2', 'State Board', '', '', '2016', 56.00, '', 1, '2021-03-10 11:02:21', 0, NULL, 0, NULL, 1),
(4448, 3739, '1', 'State Board', '', '', '2014', 86.00, '', 1, '2021-03-10 11:02:52', 0, NULL, 0, NULL, 1),
(4449, 3733, '3', 'Anna university', '', 'B.E(cse)', '2020', 70.00, '', 1, '2021-03-10 11:04:27', 0, NULL, 0, NULL, 1),
(4450, 3733, '2', 'State board', '', '', '2016', 71.00, '', 1, '2021-03-10 11:05:09', 0, NULL, 0, NULL, 1),
(4451, 3733, '1', 'State board', '', '', '2014', 78.00, '', 1, '2021-03-10 11:06:03', 0, NULL, 0, NULL, 1),
(4452, 3740, '1', 'Anna university', '', '', '2014', 60.00, '', 1, '2021-03-10 11:13:53', 0, NULL, 0, NULL, 1),
(4453, 3744, '4', 'Madras university ', '', 'MCA', '2020', 70.00, '', 1, '2021-03-10 12:21:48', 0, NULL, 0, NULL, 1),
(4454, 3741, '4', 'Sastra university', '', 'B.sc Biochemistry with DMLT', '2018', 5.50, '', 1, '2021-03-10 12:22:46', 1, '2021-03-10 12:25:25', 0, NULL, 0),
(4455, 3741, '4', 'Sastra university', '', 'B.sc Biochemistry with DMLT', '2018', 5.50, '', 1, '2021-03-10 12:23:39', 1, '2021-03-10 12:25:31', 0, NULL, 0),
(4456, 3741, '3', 'Sastra university', '', 'B.sc biochemistry with DMLT', '2018', 5.50, '', 1, '2021-03-10 12:25:17', 0, NULL, 0, NULL, 1),
(4457, 3743, '3', 'Madras university', '', 'Bsc computerscience', '2017', 69.00, '', 1, '2021-03-10 12:27:39', 0, NULL, 0, NULL, 1),
(4458, 3742, '3', 'Madras university', '', 'B. com', '2020', 62.00, '', 1, '2021-03-10 12:29:42', 0, NULL, 0, NULL, 1),
(4459, 3745, '3', 'Sathyabama university', '', 'BE', '2015', 60.00, '', 1, '2021-03-10 12:41:53', 0, NULL, 0, NULL, 1),
(4460, 3746, '4', 'Madras university', '', 'MBA', '2019', 60.00, '', 1, '2021-03-10 01:11:59', 0, NULL, 0, NULL, 1),
(4461, 3746, '1', 'State board', '', '', '2014', 72.20, '', 1, '2021-03-10 01:13:59', 0, NULL, 0, NULL, 1),
(4462, 3746, '2', 'State board', '', '', '2012', 72.00, '', 1, '2021-03-10 01:14:30', 0, NULL, 0, NULL, 1),
(4463, 3746, '3', 'Madras university', '', 'B.com', '2017', 60.00, '', 1, '2021-03-10 01:16:08', 0, NULL, 0, NULL, 1),
(4464, 3747, '4', 'Madras university ', '', 'MA', '2019', 55.00, '', 1, '2021-03-10 01:29:37', 0, NULL, 0, NULL, 1),
(4465, 3747, '3', 'Madras university ', '', 'BA', '2017', 58.00, '', 1, '2021-03-10 01:30:17', 0, NULL, 0, NULL, 1),
(4466, 3747, '1', 'State Board', '', '', '2014', 60.00, '', 1, '2021-03-10 01:30:52', 0, NULL, 0, NULL, 1),
(4467, 3748, '2', 'Open University', '', '', '2017', 56.00, '', 1, '2021-03-10 01:52:13', 0, NULL, 0, NULL, 1),
(4468, 3748, '1', 'General', '', '', '2017', 73.00, '', 1, '2021-03-10 01:53:39', 0, NULL, 0, NULL, 1),
(4469, 3749, '2', 'State board', '', '', '2017', 64.00, '', 1, '2021-03-10 01:57:06', 0, NULL, 0, NULL, 1),
(4470, 3751, '3', 'Vels University ', '', 'B.E EEE', '2020', 70.00, '', 1, '2021-03-10 02:33:05', 0, NULL, 0, NULL, 1),
(4471, 3750, '3', 'Bharath', '', 'B.sc', '2017', 91.00, '', 1, '2021-03-10 02:38:39', 0, NULL, 0, NULL, 1),
(4472, 3750, '2', 'State board', '', '', '2014', 95.00, '', 1, '2021-03-10 02:39:13', 0, NULL, 0, NULL, 1),
(4473, 3750, '1', 'State board', '', '', '2012', 94.00, '', 1, '2021-03-10 02:39:37', 0, NULL, 0, NULL, 1),
(4474, 3707, '1', 'matriculation', '', '', '2011', 69.00, '', 1, '2021-03-10 03:20:37', 0, NULL, 0, NULL, 1),
(4475, 3753, '3', 'K.S.Rangasamy college of Technology ', '', 'B.E', '2020', 65.00, '', 1, '2021-03-10 06:32:24', 0, NULL, 0, NULL, 1),
(4476, 3755, '3', 'University', '', 'B.Tech', '2020', 67.00, '', 1, '2021-03-10 06:39:14', 0, NULL, 0, NULL, 1),
(4477, 3754, '3', 'Rajiv Gandhi College of Engineering ', '', 'BE ECE ', '2020', 62.00, '', 1, '2021-03-10 06:43:02', 0, NULL, 0, NULL, 1),
(4478, 3757, '3', 'Anna university', '', 'B.E Mechanical', '2020', 63.50, '', 1, '2021-03-10 06:49:38', 0, NULL, 0, NULL, 1),
(4479, 3752, '1', 'Seventh day matriculation', '', '', '2015', 50.00, '', 1, '2021-03-10 07:41:47', 0, NULL, 0, NULL, 1),
(4480, 3758, '3', 'Anna university ', '', 'B.E', '2021', 70.00, '', 1, '2021-03-10 08:06:35', 0, NULL, 0, NULL, 1),
(4481, 3761, '2', 'State Board', '', '', '2012', 55.00, '', 1, '2021-03-11 11:05:48', 0, NULL, 0, NULL, 1),
(4482, 3763, '3', 'Meenakshi University', '', 'BBA', '2018', 56.00, '', 1, '2021-03-11 11:06:05', 0, NULL, 0, NULL, 1),
(4483, 3762, '3', 'Madras university', '', 'BCA', '2015', 84.00, '', 1, '2021-03-11 11:08:01', 0, NULL, 0, NULL, 1),
(4484, 3759, '3', 'Tagore college of arts science', '', 'Bca', '2018', 62.20, '', 1, '2021-03-11 11:21:45', 0, NULL, 0, NULL, 1),
(4485, 3766, '3', 'Thiruvalluvar university ', '', 'Bcom ', '2020', 79.00, '', 1, '2021-03-11 11:52:15', 0, NULL, 0, NULL, 1),
(4486, 3765, '3', 'thiruvalluvar university', '', 'b.sc', '2014', 67.00, '', 1, '2021-03-11 11:55:27', 0, NULL, 0, NULL, 1),
(4487, 3767, '4', 'Annamalai University', '', 'MBA', '2017', 68.00, '', 1, '2021-03-11 11:57:06', 0, NULL, 0, NULL, 1),
(4488, 3767, '4', 'Annamalai University', '', 'MBA', '2017', 68.00, '', 1, '2021-03-11 11:58:05', 0, NULL, 0, NULL, 1),
(4489, 3768, '3', 'Mardas university ', '', 'B.com', '2020', 62.00, '', 1, '2021-03-11 11:58:32', 0, NULL, 0, NULL, 1),
(4490, 3756, '3', 'Madras University', '', 'Bca', '2018', 62.00, '', 1, '2021-03-11 12:08:29', 0, NULL, 0, NULL, 1),
(4491, 3772, '3', 'Kamaraj University', '', 'Bcom', '2019', 48.00, '', 1, '2021-03-11 12:42:18', 0, NULL, 0, NULL, 1),
(4492, 3764, '3', 'ms university', '', 'b.sc', '2013', 62.00, '', 1, '2021-03-11 12:48:05', 0, NULL, 0, NULL, 1),
(4493, 3771, '3', 'sree sastha  college', '', 'b.e', '2018', 6.20, '', 1, '2021-03-11 01:10:13', 0, NULL, 0, NULL, 1),
(4494, 3773, '3', 'Guru Nanak  college', '', 'B.com', '2019', 82.00, '', 1, '2021-03-11 01:48:48', 0, NULL, 0, NULL, 1),
(4495, 3774, '3', 'madras  university', '', 'ba', '2021', 70.00, '', 1, '2021-03-11 03:57:46', 0, NULL, 0, NULL, 1),
(4496, 3774, '2', 'tn hsc', '', '', '2018', 89.00, '', 1, '2021-03-11 03:58:59', 0, NULL, 0, NULL, 1),
(4497, 3774, '1', 'tn', '', '', '2016', 81.00, '', 1, '2021-03-11 04:00:00', 0, NULL, 0, NULL, 1),
(4498, 3775, '4', 'Madras university', '', 'M.com', '2015', 65.00, '', 1, '2021-03-11 04:26:19', 0, NULL, 0, NULL, 1),
(4499, 3778, '4', 'Anna University', '', 'MCA', '2015', 82.00, '', 1, '2021-03-11 07:56:30', 0, NULL, 0, NULL, 1),
(4500, 3778, '3', 'Madras University', '', 'B.Sc (Computer Science)', '2013', 79.00, '', 1, '2021-03-11 07:57:44', 0, NULL, 0, NULL, 1),
(4501, 3778, '2', 'St. Annes\' Girls Hr. Sec. School', '', '', '2010', 60.10, '', 1, '2021-03-11 07:58:43', 0, NULL, 0, NULL, 1),
(4502, 3778, '1', 'St. Annes\' Girls Hr. Sec. School', '', '', '2008', 83.00, '', 1, '2021-03-11 07:59:38', 0, NULL, 0, NULL, 1),
(4503, 3779, '4', 'SASTRA UNIVERSITY', '', 'MBA', '2020', 74.00, '', 1, '2021-03-11 08:22:55', 0, NULL, 0, NULL, 1),
(4504, 3779, '3', 'K.Ramakrishnan college of Engineering', '', 'BE', '2017', 68.00, '', 1, '2021-03-11 08:23:20', 0, NULL, 0, NULL, 1),
(4505, 3779, '2', 'R.S.K higher secondary school', '', '', '2013', 68.00, '', 1, '2021-03-11 08:23:40', 0, NULL, 0, NULL, 1),
(4506, 3779, '1', 'R.S.K higher secondary school', '', '', '2011', 72.00, '', 1, '2021-03-11 08:24:01', 0, NULL, 0, NULL, 1),
(4507, 3780, '4', 'Velammal Engineering College', '', 'M.E', '2018', 83.00, '', 1, '2021-03-11 09:24:16', 0, NULL, 0, NULL, 1),
(4508, 3781, '3', 'madrasuniversity', '', 'bcom', '2001', 75.00, '', 1, '2021-03-12 09:37:50', 0, NULL, 0, NULL, 1),
(4509, 3784, '3', 'Anna university', '', 'B.E', '2017', 65.00, '', 1, '2021-03-12 11:58:32', 0, NULL, 0, NULL, 1),
(4510, 3783, '3', 'Anna University', '', 'BE', '2018', 60.00, '', 1, '2021-03-12 11:58:36', 0, NULL, 0, NULL, 1),
(4511, 3785, '4', 'Dr.mgr University', '', 'MCA', '2020', 64.62, '', 1, '2021-03-12 12:16:46', 0, NULL, 0, NULL, 1),
(4512, 3782, '5', 'TNOU', '', 'Diploma', '2016', 89.00, '', 1, '2021-03-12 12:35:27', 0, NULL, 0, NULL, 1),
(4513, 3782, '2', 'Tamilnadu open university', '', '', '2016', 90.00, '', 1, '2021-03-12 12:36:28', 0, NULL, 0, NULL, 1),
(4514, 3787, '3', 'sethu institute of technology ', '', 'bachelor of engineering', '2017', 6.90, '', 1, '2021-03-12 03:42:41', 0, NULL, 0, NULL, 1),
(4515, 3788, '3', 'Thiruvalluvar University', '', 'B.sc(computer science)', '2021', 88.00, '', 1, '2021-03-12 03:43:27', 0, NULL, 0, NULL, 1),
(4516, 3788, '2', ' Muhyiddheeniya matric hr sec school', '', '', '2016', 60.00, '', 1, '2021-03-12 03:45:41', 1, '2021-03-12 03:45:48', 0, NULL, 0),
(4517, 3789, '3', 'Madras university', '', 'BCA', '2011', 69.00, '', 1, '2021-03-12 04:00:19', 0, NULL, 0, NULL, 1),
(4518, 3790, '3', 'Anna University', '', 'B.E', '2019', 65.00, '', 1, '2021-03-12 04:33:13', 1, '2021-03-12 04:33:52', 0, NULL, 1),
(4519, 3790, '1', 'State Board ', '', '', '2013', 88.00, '', 1, '2021-03-12 04:34:41', 0, NULL, 0, NULL, 1),
(4520, 3790, '2', 'State board ', '', '', '2015', 73.00, '', 1, '2021-03-12 04:36:11', 0, NULL, 0, NULL, 1),
(4521, 3791, '3', 'Anna university', '', 'B. E(Ece) ', '2016', 68.50, '', 1, '2021-03-12 04:47:46', 0, NULL, 0, NULL, 1),
(4522, 3791, '2', 'State board', '', '', '2012', 72.00, '', 1, '2021-03-12 04:48:16', 0, NULL, 0, NULL, 1),
(4523, 3791, '1', 'State board', '', '', '2010', 76.00, '', 1, '2021-03-12 04:48:58', 0, NULL, 0, NULL, 1),
(4524, 3792, '3', 'Madras university ', '', 'B. Com', '2013', 60.00, '', 1, '2021-03-12 05:19:21', 0, NULL, 0, NULL, 1),
(4525, 3776, '3', 'Anna University', '', 'Barch', '2016', 69.00, '', 1, '2021-03-12 05:29:15', 0, NULL, 0, NULL, 1),
(4526, 3793, '4', 'University', '', 'Computer science', '2021', 90.00, '', 1, '2021-03-12 06:25:44', 1, '2021-03-12 06:26:01', 0, NULL, 0),
(4527, 3793, '4', 'University', '', 'Computer science', '2021', 90.00, '', 1, '2021-03-12 06:26:52', 0, NULL, 0, NULL, 1),
(4528, 3794, '3', 'anna universi ', '', 'b. e computer science', '2016', 6.25, '', 1, '2021-03-12 07:14:28', 0, NULL, 0, NULL, 1),
(4529, 3796, '3', 'Sree sastha institute of engineering and technology', '', 'B.E computer Science engineering', '2017', 65.00, '', 1, '2021-03-12 08:27:18', 0, NULL, 0, NULL, 1),
(4530, 3795, '3', 'arunai engineering college ', '', 'b.e ', '2019', 65.00, '', 1, '2021-03-12 08:41:49', 0, NULL, 0, NULL, 1),
(4531, 3798, '2', 'Hindustan college of arts and science', '', '', '2021', 85.00, '', 1, '2021-03-12 09:58:54', 0, NULL, 0, NULL, 1),
(4532, 3803, '3', 'University of madras ', '', 'B. Com(c.a)', '2019', 50.00, '', 1, '2021-03-13 11:07:48', 0, NULL, 0, NULL, 1),
(4533, 3802, '1', 'Dharmamurthi Rao Bahadur Calavala Cunnan Chetty’s higher secondary school', '', '', '2013', 72.80, '', 1, '2021-03-13 11:12:28', 0, NULL, 0, NULL, 1),
(4534, 3802, '2', 'Dharmamurthi Rao Bahadur Calavala Cunnan Chetty’s higher secondary school', '', '', '2015', 55.58, '', 1, '2021-03-13 11:13:50', 0, NULL, 0, NULL, 1),
(4535, 3802, '3', 'vel tech ranga sanku arts college', '', '', '2018', 69.50, '', 1, '2021-03-13 11:16:29', 0, NULL, 0, NULL, 1),
(4536, 3804, '3', 'Madras university ', '', 'B. Com accounting & Finance ', '2014', 72.00, '', 1, '2021-03-13 11:22:19', 0, NULL, 0, NULL, 1),
(4537, 3801, '3', 'meenakshi  college of engineering', '', 'b.tech i.t', '2021', 7.64, '', 1, '2021-03-13 11:23:50', 0, NULL, 0, NULL, 1),
(4538, 3806, '3', 'Anna university', '', 'BE-EEE', '2019', 68.00, '', 1, '2021-03-13 11:46:03', 0, NULL, 0, NULL, 1),
(4539, 3805, '3', 'Anna University', '', 'BE - EEE', '2019', 65.00, '', 1, '2021-03-13 11:51:13', 0, NULL, 0, NULL, 1),
(4540, 3807, '4', 'Anna university ', '', 'B.Tech petroleum ', '2020', 60.00, '', 1, '2021-03-13 11:53:45', 0, NULL, 0, NULL, 1),
(4541, 3808, '5', 'SCAD POLYTECHNIC ', '', 'Diploma in EEE', '2016', 73.00, '', 1, '2021-03-13 12:03:37', 0, NULL, 0, NULL, 1),
(4542, 3809, '3', 'University ', '', 'B.com general', '2020', 60.00, '', 1, '2021-03-13 12:20:01', 0, NULL, 0, NULL, 1),
(4543, 3797, '3', 'Arunai engineering college thiruvanamalli', '', 'BE', '2019', 75.00, '', 1, '2021-03-13 12:24:24', 0, NULL, 0, NULL, 1),
(4544, 3810, '3', 'madras university', '', 'bba', '2020', 62.50, '', 1, '2021-03-13 12:44:13', 0, NULL, 0, NULL, 1),
(4545, 3811, '3', 'university', '', 'b.com', '2019', 58.50, '', 1, '2021-03-13 01:09:23', 0, NULL, 0, NULL, 1),
(4546, 3813, '3', 'university', '', 'b.sc biochemistry', '2020', 70.00, '', 1, '2021-03-13 01:28:31', 0, NULL, 0, NULL, 1),
(4547, 3816, '3', 'Alpha arts and science college', '', 'Bsc computer science', '2019', 70.00, '', 1, '2021-03-13 03:22:14', 0, NULL, 0, NULL, 1),
(4548, 3816, '2', 'Grace matriculation higher secondary school', '', '', '2016', 56.00, '', 1, '2021-03-13 03:22:43', 0, NULL, 0, NULL, 1),
(4549, 3816, '1', 'Shree Aadthitiya Matriculation school', '', '', '2014', 88.40, '', 1, '2021-03-13 03:23:10', 0, NULL, 0, NULL, 1),
(4550, 3815, '3', 'Madras university', '', 'BCA', '2016', 75.00, '', 1, '2021-03-13 03:28:11', 0, NULL, 0, NULL, 1),
(4551, 3814, '3', 'University of Madras', '', 'BA', '2018', 75.00, '', 1, '2021-03-13 03:28:35', 0, NULL, 0, NULL, 1),
(4552, 3817, '3', 'Madras University', '', 'BA', '2018', 65.00, '', 1, '2021-03-13 03:52:46', 0, NULL, 0, NULL, 1),
(4553, 3820, '4', 'SASTRA UNIVERSITY', '', 'MCA', '2020', 7.00, '', 1, '2021-03-13 06:19:19', 0, NULL, 0, NULL, 1),
(4554, 3777, '1', 'anna university', '', '', '2021', 73.00, '', 1, '2021-03-14 11:18:46', 0, NULL, 0, NULL, 1),
(4555, 3676, '3', 'karunya university', '', 'b.tech mechanical engineering', '2020', 7.12, '', 1, '2021-03-14 12:25:19', 0, NULL, 0, NULL, 1),
(4556, 3676, '2', 'state board', '', '', '2016', 74.25, '', 1, '2021-03-14 12:26:14', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4557, 3676, '1', 'state board', '', '', '2014', 78.20, '', 1, '2021-03-14 12:26:39', 0, NULL, 0, NULL, 1),
(4558, 3823, '4', 'EGS PILLAY ENGINEERING COLLEGE', '', 'MCA', '2020', 91.00, '', 1, '2021-03-14 05:09:14', 0, NULL, 0, NULL, 1),
(4559, 3824, '4', 'Sastra deemed to be university', '', 'master of computer apllication', '2020', 71.00, '', 1, '2021-03-14 11:29:03', 0, NULL, 0, NULL, 1),
(4560, 0, '5', 'siga college', '', 'dpt', '2016', 67.00, '', 1, '2021-03-15 09:58:50', 1, '2021-03-15 12:34:21', 0, NULL, 0),
(4561, 3826, '3', 'DB jain collage', '', 'B.com', '2020', 50.00, '', 1, '2021-03-15 10:08:22', 0, NULL, 0, NULL, 1),
(4562, 3827, '3', 'Madras university', '', 'Bsc physics', '2017', 40.00, '', 1, '2021-03-15 11:33:47', 0, NULL, 0, NULL, 1),
(4563, 3818, '3', 'sastra university', '', 'btech it', '2008', 67.00, '', 1, '2021-03-15 12:20:40', 0, NULL, 0, NULL, 1),
(4564, 3800, '3', 'University ', '', 'BE', '2020', 6.20, '', 1, '2021-03-15 12:22:33', 1, '2021-03-15 12:24:46', 0, NULL, 0),
(4565, 3829, '3', 'Anna University', '', 'Bachelor of engineering', '2021', 65.00, '', 1, '2021-03-15 12:24:00', 0, NULL, 0, NULL, 1),
(4566, 3800, '1', 'Board', '', '', '2014', 72.00, '', 1, '2021-03-15 12:25:17', 0, NULL, 0, NULL, 1),
(4567, 3800, '2', 'Board', '', '', '2016', 75.00, '', 1, '2021-03-15 12:25:41', 0, NULL, 0, NULL, 1),
(4568, 3800, '3', 'University', '', 'BE ', '2020', 60.00, '', 1, '2021-03-15 12:26:20', 0, NULL, 0, NULL, 1),
(4569, 3830, '5', 'siga college', '', 'dpt', '2016', 67.00, '', 1, '2021-03-15 12:35:52', 0, NULL, 0, NULL, 1),
(4570, 3825, '3', 'Madras', '', 'Bcom (general)', '2019', 65.20, '', 1, '2021-03-15 01:13:53', 0, NULL, 0, NULL, 1),
(4571, 3831, '3', 'anna university', '', 'b.tech', '2017', 64.00, '', 1, '2021-03-15 01:24:10', 0, NULL, 0, NULL, 1),
(4572, 3831, '1', 'state board', '', '', '2011', 94.80, '', 1, '2021-03-15 01:25:04', 1, '2021-03-15 01:25:29', 0, NULL, 1),
(4573, 3831, '2', 'state board', '', '', '2013', 89.00, '', 1, '2021-03-15 01:26:22', 0, NULL, 0, NULL, 1),
(4574, 3832, '2', 'state board', '', '', '2015', 65.00, '', 1, '2021-03-15 01:35:44', 0, NULL, 0, NULL, 1),
(4575, 3832, '3', 'mgr university', '', 'bsc av', '2019', 55.00, '', 1, '2021-03-15 01:36:30', 0, NULL, 0, NULL, 1),
(4576, 3833, '3', 'Anna University', '', 'BE', '2015', 68.90, '', 1, '2021-03-15 02:46:19', 0, NULL, 0, NULL, 1),
(4577, 3833, '5', 'State Board', '', 'Diploma', '2012', 81.12, '', 1, '2021-03-15 02:47:20', 0, NULL, 0, NULL, 1),
(4578, 3835, '3', 'Madras university', '', 'Bca', '2020', 61.00, '', 1, '2021-03-15 03:57:15', 0, NULL, 0, NULL, 1),
(4579, 3834, '1', 'state board', '', '', '2012', 93.40, '', 1, '2021-03-15 04:50:24', 0, NULL, 0, NULL, 1),
(4580, 3834, '2', 'state board', '', '', '2014', 88.60, '', 1, '2021-03-15 04:50:39', 0, NULL, 0, NULL, 1),
(4581, 3834, '3', 'anna university', '', 'b.e', '2018', 84.70, '', 1, '2021-03-15 04:51:18', 0, NULL, 0, NULL, 1),
(4582, 3834, '4', 'anna university', '', 'm.e', '2020', 93.80, '', 1, '2021-03-15 04:51:44', 0, NULL, 0, NULL, 1),
(4583, 3836, '3', 'Kalam technological university ', '', 'B.TECH', '1996', 72.00, '', 1, '2021-03-15 05:05:27', 0, NULL, 0, NULL, 1),
(4584, 3837, '3', 'BS Abdur Rahman institute of science and technology', '', 'B. CA', '2020', 61.30, '', 1, '2021-03-15 05:20:17', 1, '2021-03-15 05:22:07', 0, NULL, 1),
(4585, 3837, '2', 'State Board', '', '', '2017', 63.00, '', 1, '2021-03-15 05:20:47', 0, NULL, 0, NULL, 1),
(4586, 3837, '1', 'State Board', '', '', '2015', 80.00, '', 1, '2021-03-15 05:21:08', 0, NULL, 0, NULL, 1),
(4587, 3838, '3', 'c.t.t.e college', '', 'bsc comp.sci', '2018', 68.00, '', 1, '2021-03-15 07:41:28', 1, '2021-03-15 07:43:25', 0, NULL, 0),
(4588, 3838, '4', 'wcc college', '', 'msc information technology', '2020', 65.00, '', 1, '2021-03-15 07:42:13', 1, '2021-03-15 07:43:28', 0, NULL, 0),
(4589, 3838, '1', 'matriculation', '', '', '2013', 88.00, '', 1, '2021-03-15 07:44:36', 0, NULL, 0, NULL, 1),
(4590, 3838, '2', 'matric board', '', '', '2015', 63.00, '', 1, '2021-03-15 07:45:06', 0, NULL, 0, NULL, 1),
(4591, 3839, '2', 'state board', '', '', '2017', 65.00, '', 1, '2021-03-16 09:18:58', 0, NULL, 0, NULL, 1),
(4592, 3839, '3', 'autonomus', '', 'ba history', '2020', 52.00, '', 1, '2021-03-16 09:19:32', 0, NULL, 0, NULL, 1),
(4593, 3840, '2', 'state board', '', '', '2017', 55.00, '', 1, '2021-03-16 09:35:25', 0, NULL, 0, NULL, 1),
(4594, 3840, '3', 'madurai kamarajar university', '', 'bsc it', '2020', 75.00, '', 1, '2021-03-16 09:35:56', 0, NULL, 0, NULL, 1),
(4595, 3841, '2', 'state board', '', '', '2015', 55.00, '', 1, '2021-03-16 09:39:14', 0, NULL, 0, NULL, 1),
(4596, 3841, '3', 'madras university', '', 'bba', '2015', 68.00, '', 1, '2021-03-16 09:39:40', 0, NULL, 0, NULL, 1),
(4597, 3842, '3', 'Madras University', '', 'B.com (bank management)', '2020', 60.00, '', 1, '2021-03-16 10:00:18', 0, NULL, 0, NULL, 1),
(4598, 3843, '3', 'Anna University', '', 'B.e', '2018', 60.00, '', 1, '2021-03-16 10:15:33', 0, NULL, 0, NULL, 1),
(4599, 3843, '2', 'Matriculation', '', '', '2014', 66.00, '', 1, '2021-03-16 10:16:44', 0, NULL, 0, NULL, 1),
(4600, 3843, '1', 'State board', '', '', '2012', 76.00, '', 1, '2021-03-16 10:17:13', 0, NULL, 0, NULL, 1),
(4601, 3844, '2', 'state board', '', '', '2011', 68.00, '', 1, '2021-03-16 10:31:08', 0, NULL, 0, NULL, 1),
(4602, 3844, '3', 'prist university', '', 'be ece', '2015', 73.00, '', 1, '2021-03-16 10:31:33', 0, NULL, 0, NULL, 1),
(4603, 3845, '2', 'state board', '', '', '2014', 64.00, '', 1, '2021-03-16 10:47:18', 0, NULL, 0, NULL, 1),
(4604, 3845, '3', 'state board', '', 'bcom general', '2020', 60.00, '', 1, '2021-03-16 10:47:45', 0, NULL, 0, NULL, 1),
(4605, 3846, '4', 'Bangluru university', '', 'MBA', '2018', 65.00, '', 1, '2021-03-16 11:20:18', 1, '2021-03-16 11:24:51', 0, NULL, 1),
(4606, 3846, '3', 'Calicut university', '', 'B. Com', '2016', 60.00, '', 1, '2021-03-16 11:21:53', 0, NULL, 0, NULL, 1),
(4607, 3847, '1', 'Anna University', '', '', '2016', 65.00, '', 1, '2021-03-16 11:57:40', 0, NULL, 0, NULL, 1),
(4608, 3847, '2', 'State', '', '', '2012', 86.00, '', 1, '2021-03-16 11:58:24', 0, NULL, 0, NULL, 1),
(4609, 3847, '3', 'Anna University', '', 'BE', '2016', 65.00, '', 1, '2021-03-16 11:59:03', 0, NULL, 0, NULL, 1),
(4610, 3848, '5', 'kerala university', '', 'diploma', '2016', 7.80, '', 1, '2021-03-16 12:33:58', 0, NULL, 0, NULL, 1),
(4611, 3848, '1', 'cbsc', '', '', '2005', 8.00, '', 1, '2021-03-16 12:34:53', 0, NULL, 0, NULL, 1),
(4612, 3838, '3', 'c.t.t.e college for women', '', 'bsc computer science', '2018', 68.00, '', 1, '2021-03-16 01:06:52', 0, NULL, 0, NULL, 1),
(4613, 3838, '4', 'womens christian college', '', 'msc information technology', '2020', 65.00, '', 1, '2021-03-16 01:07:49', 0, NULL, 0, NULL, 1),
(4614, 3850, '3', 'bharadhidasan university', '', 'bsc', '2018', 79.00, '', 1, '2021-03-16 01:20:27', 0, NULL, 0, NULL, 1),
(4615, 3849, '3', 'Crescent Institute of Science and technology', '', 'BCA', '2020', 82.00, '', 1, '2021-03-16 01:25:20', 0, NULL, 0, NULL, 1),
(4616, 3851, '4', 'Women\'s Christian College', '', 'MSc IT', '2020', 74.00, '', 1, '2021-03-16 03:32:27', 0, NULL, 0, NULL, 1),
(4617, 3851, '3', 'CTTE College for women', '', 'BSc CS', '2018', 78.00, '', 1, '2021-03-16 03:34:20', 0, NULL, 0, NULL, 1),
(4618, 3851, '2', 'Don Bosco Matriculation higher secondary school', '', '', '2015', 73.00, '', 1, '2021-03-16 03:35:23', 0, NULL, 0, NULL, 1),
(4619, 3851, '1', 'Don Bosco Matriculation higher secondary school', '', '', '2013', 92.00, '', 1, '2021-03-16 03:36:01', 0, NULL, 0, NULL, 1),
(4620, 3852, '2', 'State Board', '', '', '2014', 91.00, '', 1, '2021-03-16 05:19:16', 1, '2021-03-16 05:19:47', 0, NULL, 0),
(4621, 3852, '1', 'State Board', '', '', '2014', 91.00, '', 1, '2021-03-16 05:20:08', 0, NULL, 0, NULL, 1),
(4622, 3852, '2', 'State Board', '', '', '2016', 74.00, '', 1, '2021-03-16 05:20:28', 0, NULL, 0, NULL, 1),
(4623, 3852, '3', 'Anna University', '', 'Computer science and engineering', '2020', 63.00, '', 1, '2021-03-16 05:20:59', 0, NULL, 0, NULL, 1),
(4624, 3853, '2', 'state board', '', '', '2015', 57.00, '', 1, '2021-03-16 05:34:21', 0, NULL, 0, NULL, 1),
(4625, 3853, '3', 'iti', '', 'iti', '2016', 70.00, '', 1, '2021-03-16 05:34:48', 0, NULL, 0, NULL, 1),
(4626, 3854, '2', 'state board', '', '', '2015', 60.00, '', 1, '2021-03-16 05:48:12', 0, NULL, 0, NULL, 1),
(4627, 3854, '3', 'shri shankarlal sundarbai shasun', '', 'bcom accounts', '2018', 65.00, '', 1, '2021-03-16 05:49:46', 0, NULL, 0, NULL, 1),
(4628, 3855, '3', 'Anna university', '', 'B. Tech-IT', '2018', 62.00, '', 1, '2021-03-16 06:36:07', 0, NULL, 0, NULL, 1),
(4629, 3856, '3', 'Vel tech multi tech engineering college', '', 'B.E (CSE)', '2019', 6.67, '', 1, '2021-03-16 07:04:24', 0, NULL, 0, NULL, 1),
(4630, 3856, '1', 'Dr. Sivanthi Aditanar matriculation school', '', '', '2013', 81.00, '', 1, '2021-03-16 07:05:37', 0, NULL, 0, NULL, 1),
(4631, 3856, '2', 'Sethu Bhaskar matriculation higher secondary school', '', '', '2015', 71.00, '', 1, '2021-03-16 07:06:11', 0, NULL, 0, NULL, 1),
(4632, 3860, '5', 'State board', '', '', '2013', 78.00, '', 1, '2021-03-17 11:14:26', 0, NULL, 0, NULL, 1),
(4633, 3859, '2', 'State board', '', '', '1999', 55.00, '', 1, '2021-03-17 11:15:10', 0, NULL, 0, NULL, 1),
(4634, 3860, '2', 'State board', '', '', '2011', 70.00, '', 1, '2021-03-17 11:15:16', 0, NULL, 0, NULL, 1),
(4635, 3859, '3', 'Kamaraj university', '', 'B.A', '2002', 54.00, '', 1, '2021-03-17 11:16:05', 0, NULL, 0, NULL, 1),
(4636, 3859, '4', 'Madras university', '', 'MBA', '2011', 66.00, '', 1, '2021-03-17 11:16:40', 0, NULL, 0, NULL, 1),
(4637, 3861, '3', 'Dr. Mgr University', '', 'B. Com ', '2018', 63.00, '', 1, '2021-03-17 11:25:53', 0, NULL, 0, NULL, 1),
(4638, 3858, '1', 'state board', '', '', '2012', 90.00, '', 1, '2021-03-17 11:36:41', 0, NULL, 0, NULL, 1),
(4639, 3858, '2', 'state board', '', '', '2014', 82.00, '', 1, '2021-03-17 11:37:33', 0, NULL, 0, NULL, 1),
(4640, 3858, '3', 'anna university', '', 'bachelor of engineering', '2018', 7.20, '', 1, '2021-03-17 11:38:59', 0, NULL, 0, NULL, 1),
(4641, 3863, '3', 'AUXILIUM COLLEGE ', '', 'B.com', '2012', 66.00, '', 1, '2021-03-17 11:51:25', 0, NULL, 0, NULL, 1),
(4642, 3862, '3', 'Madras university ', '', 'B. Com (General)', '2016', 54.00, '', 1, '2021-03-17 12:00:57', 0, NULL, 0, NULL, 1),
(4643, 3862, '2', 'Don Bosco matric.  Hr.  Sec.  School', '', '', '2013', 62.00, '', 1, '2021-03-17 12:01:45', 0, NULL, 0, NULL, 1),
(4644, 3857, '3', 'anna university', '', 'computer science and engineering', '2018', 65.00, '', 1, '2021-03-17 12:09:27', 0, NULL, 0, NULL, 1),
(4645, 3864, '3', 'Madras univetsity', '', 'BCA', '2010', 70.00, '', 1, '2021-03-17 12:09:29', 0, NULL, 0, NULL, 1),
(4646, 3857, '1', 'state board', '', '', '2012', 70.00, '', 1, '2021-03-17 12:10:19', 0, NULL, 0, NULL, 1),
(4647, 3864, '4', 'Tnou', '', 'MBA', '2012', 75.00, '', 1, '2021-03-17 12:10:38', 0, NULL, 0, NULL, 1),
(4648, 3857, '2', 'state board', '', '', '2014', 65.00, '', 1, '2021-03-17 12:10:39', 0, NULL, 0, NULL, 1),
(4649, 3865, '4', 'Anna University, Chennai.', '', 'MBA', '2019', 71.00, '', 1, '2021-03-17 12:16:39', 0, NULL, 0, NULL, 1),
(4650, 3866, '3', 'Rajiv Gandhi Institute of health science ', '', 'BPT', '2017', 60.00, '', 1, '2021-03-17 01:08:30', 0, NULL, 0, NULL, 1),
(4651, 3867, '3', 'Madras university', '', 'BA.english literature', '2019', 60.00, '', 1, '2021-03-17 01:15:33', 0, NULL, 0, NULL, 1),
(4652, 3868, '3', 'The new college', '', 'BA ', '2003', 44.00, '', 1, '2021-03-17 01:39:03', 0, NULL, 0, NULL, 1),
(4653, 3870, '1', 'CBSE', '', '', '2012', 80.00, '', 1, '2021-03-17 03:40:45', 1, '2021-03-17 03:42:08', 0, NULL, 0),
(4654, 3870, '2', 'Stateboard', '', '', '2014', 70.00, '', 1, '2021-03-17 03:41:20', 1, '2021-03-17 03:42:11', 0, NULL, 0),
(4655, 3870, '3', 'Anna University', '', 'Bachelor of Engineering', '2018', 83.00, '', 1, '2021-03-17 03:41:47', 1, '2021-03-17 03:42:05', 0, NULL, 0),
(4656, 3870, '3', 'Anna University', '', 'Bachelor of Engineering', '2018', 83.00, '', 1, '2021-03-17 03:42:37', 1, '2021-03-17 03:43:22', 0, NULL, 0),
(4657, 3870, '2', 'Stateboard', '', '', '2014', 70.00, '', 1, '2021-03-17 03:43:01', 1, '2021-03-17 03:43:24', 0, NULL, 0),
(4658, 3870, '1', 'CBSE', '', '', '2012', 80.00, '', 1, '2021-03-17 03:43:45', 1, '2021-03-17 03:44:41', 0, NULL, 1),
(4659, 3870, '2', 'Stateboard', '', '', '2014', 70.00, '', 1, '2021-03-17 03:44:27', 0, NULL, 0, NULL, 1),
(4660, 3870, '3', 'Anna University', '', 'Bachelor of Engineering', '2018', 83.00, '', 1, '2021-03-17 03:45:53', 0, NULL, 0, NULL, 1),
(4661, 3872, '4', 'uttarpradesh', '', 'mba in operation and marketing', '2017', 64.45, '', 1, '2021-03-17 05:04:36', 0, NULL, 0, NULL, 1),
(4662, 3873, '4', 'Sri Manakula vinayagar engineering college Pondicherry', '', 'MBA', '2019', 71.00, '', 1, '2021-03-17 05:19:02', 0, NULL, 0, NULL, 1),
(4663, 3873, '3', 'Rajiv Gandhi government arts and sciences college Pondicherry', '', 'BCA', '2017', 56.00, '', 1, '2021-03-17 05:19:54', 0, NULL, 0, NULL, 1),
(4664, 3873, '2', 'Navalar Nedunchezian government arts and sciences college Pondicherry', '', '', '2014', 55.00, '', 1, '2021-03-17 05:20:40', 0, NULL, 0, NULL, 1),
(4665, 3873, '1', 'Seventh day Adventist higher secondary school PONDICHERRY', '', '', '2012', 65.00, '', 1, '2021-03-17 05:21:29', 0, NULL, 0, NULL, 1),
(4666, 3874, '3', 'Anna University', '', 'Bachelor of Engineering', '2016', 64.00, '', 1, '2021-03-17 05:25:53', 0, NULL, 0, NULL, 1),
(4667, 3875, '1', 'Andhra Pradesh Secondary School Board', '', '', '2010', 48.00, '', 1, '2021-03-17 05:54:25', 0, NULL, 0, NULL, 1),
(4668, 3877, '3', 'The new college ', '', 'BCA', '2018', 60.00, '', 1, '2021-03-17 06:05:36', 0, NULL, 0, NULL, 1),
(4669, 3877, '2', 'Board', '', '', '2015', 64.90, '', 1, '2021-03-17 06:06:49', 0, NULL, 0, NULL, 1),
(4670, 3877, '1', 'Board', '', '', '2013', 70.00, '', 1, '2021-03-17 06:07:15', 0, NULL, 0, NULL, 1),
(4671, 3879, '3', 'Chennai anna university', '', 'B.E', '2015', 6.70, '', 1, '2021-03-17 07:46:32', 0, NULL, 0, NULL, 1),
(4672, 3882, '1', 'Tamil Nadu Status Board ', '', '', '2010', 76.00, '', 1, '2021-03-18 09:14:46', 0, NULL, 0, NULL, 1),
(4673, 3884, '2', 'state board', '', '', '2015', 61.00, '', 1, '2021-03-18 09:38:27', 0, NULL, 0, NULL, 1),
(4674, 3884, '3', 'anna university', '', 'be', '2019', 65.00, '', 1, '2021-03-18 09:38:55', 0, NULL, 0, NULL, 1),
(4675, 3886, '2', 'state board', '', '', '2015', 50.00, '', 1, '2021-03-18 10:13:38', 0, NULL, 0, NULL, 1),
(4676, 3886, '3', 'madras university', '', 'bca', '2018', 62.00, '', 1, '2021-03-18 10:14:09', 0, NULL, 0, NULL, 1),
(4677, 3885, '3', 'sathyabama university', '', 'bsc', '2015', 74.00, '', 1, '2021-03-18 10:15:11', 0, NULL, 0, NULL, 1),
(4678, 3888, '1', 'TN State Board', '', '', '2013', 88.80, '', 1, '2021-03-18 10:48:01', 0, NULL, 0, NULL, 1),
(4679, 3888, '2', 'TN State Board', '', '', '2015', 65.50, '', 1, '2021-03-18 10:48:37', 0, NULL, 0, NULL, 1),
(4680, 3888, '3', 'Anna University', '', 'B.E.', '2019', 7.23, '', 1, '2021-03-18 10:49:02', 0, NULL, 0, NULL, 1),
(4681, 3889, '5', 'Board', '', 'Diploma', '2000', 83.00, '', 1, '2021-03-18 10:59:08', 0, NULL, 0, NULL, 1),
(4682, 3887, '3', 'Madras university ', '', 'B.Com', '1999', 84.00, '', 1, '2021-03-18 11:03:27', 0, NULL, 0, NULL, 1),
(4683, 3890, '2', 'goverment school', '', 'bca', '2009', 58.00, '', 1, '2021-03-18 11:29:11', 0, NULL, 0, NULL, 1),
(4684, 3892, '3', 'Anna University', '', 'B.E ', '2019', 6.00, '', 1, '2021-03-18 11:29:49', 0, NULL, 0, NULL, 1),
(4685, 3890, '3', 'madras unvercity', '', 'bca', '2018', 63.00, '', 1, '2021-03-18 11:29:55', 0, NULL, 0, NULL, 1),
(4686, 3892, '2', 'Jawahar Matriculation Higher Secondary School', '', '', '2015', 6.00, '', 1, '2021-03-18 11:30:25', 0, NULL, 0, NULL, 1),
(4687, 3890, '1', 'goverment school', '', '', '2007', 52.00, '', 1, '2021-03-18 11:30:39', 0, NULL, 0, NULL, 1),
(4688, 3892, '1', 'Jawahar Matriculation Higher Secondary School', '', '', '2013', 88.00, '', 1, '2021-03-18 11:30:50', 0, NULL, 0, NULL, 1),
(4689, 3891, '3', 'madras university', '', 'bsc', '2002', 59.00, '', 1, '2021-03-18 12:13:51', 0, NULL, 0, NULL, 1),
(4690, 3894, '4', 'Bharathidasan University', '', 'mcom', '2018', 65.00, '', 1, '2021-03-18 12:40:04', 0, NULL, 0, NULL, 1),
(4691, 3896, '3', 'Madras University', '', 'BBA', '2020', 65.00, '', 1, '2021-03-18 12:59:24', 0, NULL, 0, NULL, 1),
(4692, 3895, '3', 'Mohamed sathak engineering college', '', 'Be civil', '2020', 72.00, '', 1, '2021-03-18 01:00:45', 0, NULL, 0, NULL, 1),
(4693, 3897, '3', 'St Joseph\'s College', '', 'Bsc cs', '2021', 54.00, '', 1, '2021-03-18 01:55:17', 0, NULL, 0, NULL, 1),
(4694, 3893, '1', 'goverment school', '', '', '2010', 62.00, '', 1, '2021-03-18 02:15:45', 0, NULL, 0, NULL, 1),
(4695, 3893, '2', 'goverment school', '', '', '2012', 88.00, '', 1, '2021-03-18 02:16:10', 0, NULL, 0, NULL, 1),
(4696, 3893, '3', 'madras university', '', 'bsc computer science', '2015', 76.00, '', 1, '2021-03-18 02:17:04', 0, NULL, 0, NULL, 1),
(4697, 3899, '3', 'University of madras', '', 'B.A. History', '2006', 70.00, '', 1, '2021-03-18 03:03:52', 0, NULL, 0, NULL, 1),
(4698, 3901, '3', 'University of madras', '', 'B.sc visual communication', '2016', 75.00, '', 1, '2021-03-18 03:16:57', 0, NULL, 0, NULL, 1),
(4699, 3901, '2', 'State board', '', '', '2013', 53.00, '', 1, '2021-03-18 03:18:11', 0, NULL, 0, NULL, 1),
(4700, 3901, '1', 'State board', '', '', '2011', 78.40, '', 1, '2021-03-18 03:19:15', 0, NULL, 0, NULL, 1),
(4701, 3902, '4', 'Madras University', '', 'Mba', '2017', 62.00, '', 1, '2021-03-18 03:27:08', 0, NULL, 0, NULL, 1),
(4702, 3902, '3', 'Prince shri venkteshwara arts and sciences College', '', 'Bca', '2013', 75.00, '', 1, '2021-03-18 03:28:11', 0, NULL, 0, NULL, 1),
(4703, 3903, '1', 'Govt High school', '', '', '2008', 70.00, '', 1, '2021-03-18 03:32:20', 0, NULL, 0, NULL, 1),
(4704, 3903, '2', 'Govt High secondary school', '', '', '2010', 65.00, '', 1, '2021-03-18 03:32:59', 0, NULL, 0, NULL, 1),
(4705, 3903, '3', 'Prince shri venkteshwara arts and sciences College', '', 'Bca', '2013', 75.00, '', 1, '2021-03-18 03:33:41', 0, NULL, 0, NULL, 1),
(4706, 3903, '4', 'Madras University', '', 'Mba', '2017', 62.00, '', 1, '2021-03-18 03:34:04', 0, NULL, 0, NULL, 1),
(4707, 3905, '2', 'Sri Venkateswara Matric Higher Secondary School ', '', '', '2016', 54.00, '', 1, '2021-03-18 04:22:02', 0, NULL, 0, NULL, 1),
(4708, 3907, '3', 'Balaji Institute of engineering and technology', '', 'BE(Mech) ', '2015', 71.40, '', 1, '2021-03-18 05:34:18', 0, NULL, 0, NULL, 1),
(4709, 3907, '2', 'Kumararajah muthaiah hr  sec school', '', '', '2011', 74.00, '', 1, '2021-03-18 05:35:33', 0, NULL, 0, NULL, 1),
(4710, 3907, '1', 'Kumararajah muthaiah hr sec School ', '', '', '2009', 85.00, '', 1, '2021-03-18 05:36:03', 0, NULL, 0, NULL, 1),
(4711, 3909, '1', 'state board', '', '', '2010', 87.00, '', 1, '2021-03-18 07:10:22', 0, NULL, 0, NULL, 1),
(4712, 3909, '2', 'state board', '', '', '2012', 75.00, '', 1, '2021-03-18 07:10:42', 0, NULL, 0, NULL, 1),
(4713, 3909, '3', 'anna university', '', 'be-cse', '2016', 63.00, '', 1, '2021-03-18 07:11:25', 0, NULL, 0, NULL, 1),
(4714, 3912, '2', 'state board', '', '', '2016', 85.00, '', 1, '2021-03-19 10:18:31', 0, NULL, 0, NULL, 1),
(4715, 3912, '3', 'madras university', '', 'bcom', '2019', 73.00, '', 1, '2021-03-19 10:18:53', 0, NULL, 0, NULL, 1),
(4716, 3913, '2', 'state board', '', '', '2011', 75.00, '', 1, '2021-03-19 10:30:03', 0, NULL, 0, NULL, 1),
(4717, 3913, '3', 'kcg', '', 'be', '2015', 64.00, '', 1, '2021-03-19 10:30:28', 0, NULL, 0, NULL, 1),
(4718, 3914, '3', 'Manonmaniam sundarnar', '', 'BBA', '2015', 61.30, '', 1, '2021-03-19 10:35:10', 0, NULL, 0, NULL, 1),
(4719, 3911, '5', 'Chennai University', '', 'Be English', '2012', 70.00, '', 1, '2021-03-19 10:53:54', 0, NULL, 0, NULL, 1),
(4720, 3915, '3', 'St.joseph\'s college art\'s and science.', '', 'BCA', '2019', 82.00, '', 1, '2021-03-19 11:00:27', 0, NULL, 0, NULL, 1),
(4721, 3915, '1', 'St.theresa girl\'s higher secondary school', '', '', '2014', 84.00, '', 1, '2021-03-19 11:01:44', 0, NULL, 0, NULL, 1),
(4722, 3915, '2', 'Jaigopal Gopal garodio national higher secondary school.', '', '', '2016', 64.00, '', 1, '2021-03-19 11:02:32', 0, NULL, 0, NULL, 1),
(4723, 3916, '3', 'madra universi ', '', 'bca', '2019', 62.00, '', 1, '2021-03-19 11:12:33', 0, NULL, 0, NULL, 1),
(4724, 3918, '3', 'Thiruvalluvar university', '', 'B.com', '2016', 60.00, '', 1, '2021-03-19 11:36:45', 0, NULL, 0, NULL, 1),
(4725, 3919, '3', 'Tiruvalluvar University', '', 'B.COM', '2020', 65.00, '', 1, '2021-03-19 11:43:19', 0, NULL, 0, NULL, 1),
(4726, 3921, '3', 'Anna university', '', 'BE', '2014', 6.70, '', 1, '2021-03-19 11:54:50', 0, NULL, 0, NULL, 1),
(4727, 3921, '2', 'State', '', '', '2010', 75.00, '', 1, '2021-03-19 11:55:48', 0, NULL, 0, NULL, 1),
(4728, 3921, '1', 'State', '', '', '2008', 71.00, '', 1, '2021-03-19 11:56:13', 0, NULL, 0, NULL, 1),
(4729, 3922, '3', 'Madras University', '', 'B com', '2015', 74.00, '', 1, '2021-03-19 11:56:35', 0, NULL, 0, NULL, 1),
(4730, 3922, '2', 'HSC', '', '', '2012', 85.00, '', 1, '2021-03-19 11:57:07', 0, NULL, 0, NULL, 1),
(4731, 3922, '1', 'State board', '', '', '2010', 74.00, '', 1, '2021-03-19 11:57:28', 0, NULL, 0, NULL, 1),
(4732, 3924, '3', 'Anna University', '', 'B.E', '2020', 70.00, '', 1, '2021-03-19 12:29:57', 0, NULL, 0, NULL, 1),
(4733, 3923, '3', 'Annamalai university', '', 'BE(CSE)', '2019', 82.00, '', 1, '2021-03-19 12:32:12', 0, NULL, 0, NULL, 1),
(4734, 3923, '2', 'SASCGHSchool panruti', '', '', '2015', 75.00, '', 1, '2021-03-19 12:33:04', 0, NULL, 0, NULL, 1),
(4735, 3923, '1', 'SASCGHSCHOOL panruti', '', '', '2013', 83.00, '', 1, '2021-03-19 12:33:38', 0, NULL, 0, NULL, 1),
(4736, 3925, '3', 'Anna university', '', 'BE', '2020', 70.00, '', 1, '2021-03-19 12:43:29', 0, NULL, 0, NULL, 1),
(4737, 3917, '2', 'No', '', '', '2021', 60.00, '', 1, '2021-03-19 01:48:09', 0, NULL, 0, NULL, 1),
(4738, 3926, '3', 'university Of Madras ', '', 'Bsc computer science ', '2020', 70.00, '', 1, '2021-03-19 02:00:52', 0, NULL, 0, NULL, 1),
(4739, 3927, '3', 'Anna university', '', 'BE(ECE)', '2018', 68.00, '', 1, '2021-03-19 02:25:33', 0, NULL, 0, NULL, 1),
(4740, 3928, '3', 'karpagam university', '', 'automobile', '2019', 74.00, '', 1, '2021-03-19 04:38:06', 0, NULL, 0, NULL, 1),
(4741, 3878, '3', 'Anna university ', '', 'BE', '2020', 79.00, '', 1, '2021-03-19 06:35:21', 0, NULL, 0, NULL, 1),
(4742, 3930, '4', 'Hindusthan college of engineering and technology coimbatore', '', 'MCA', '2020', 78.80, '', 1, '2021-03-19 06:50:24', 0, NULL, 0, NULL, 1),
(4743, 3930, '3', 'Ayya nadar janaki ammal college sivakasi', '', 'BSC-IT', '2018', 69.14, '', 1, '2021-03-19 06:51:34', 0, NULL, 0, NULL, 1),
(4744, 3930, '2', 'TNPMMN HR SEC SCHOOL THALAVAIPURAM', '', '', '2015', 68.50, '', 1, '2021-03-19 06:52:19', 0, NULL, 0, NULL, 1),
(4745, 3930, '1', 'TNPMMN HR SEC SCHOOL THALAVAIPURAM', '', '', '2013', 85.40, '', 1, '2021-03-19 06:53:17', 0, NULL, 0, NULL, 1),
(4746, 3931, '3', 'Anna university', '', '', '2017', 72.00, '', 1, '2021-03-19 08:11:45', 0, NULL, 0, NULL, 1),
(4747, 3932, '3', 'Madurai kamaraj university', '', 'B. Sc IT', '2019', 83.00, '', 1, '2021-03-19 08:51:32', 0, NULL, 0, NULL, 1),
(4748, 3933, '3', 'Madras University', '', 'B.com(Corporate secrataryship )', '2020', 70.00, '', 1, '2021-03-19 08:58:45', 0, NULL, 0, NULL, 1),
(4749, 3934, '4', 'Amity university', '', 'Finance & HR', '2017', 64.00, '', 1, '2021-03-20 10:15:56', 0, NULL, 0, NULL, 1),
(4750, 3935, '4', 'Anna university ', '', 'M.tech', '2018', 75.00, '', 1, '2021-03-20 11:15:03', 0, NULL, 0, NULL, 1),
(4751, 3936, '3', 'Madras university ', '', 'B.com', '2018', 59.00, '', 1, '2021-03-20 11:33:03', 0, NULL, 0, NULL, 1),
(4752, 3938, '5', 'P.t.lee Chengalvaraya naikar polytechnic college', '', 'Diploma electronic communications and engineering', '2018', 60.00, '', 1, '2021-03-20 11:45:24', 0, NULL, 0, NULL, 1),
(4753, 3937, '3', 'Thiruvalluvar university', '', 'BA', '2019', 56.00, '', 1, '2021-03-20 11:52:58', 0, NULL, 0, NULL, 1),
(4754, 3940, '3', 'dr mgr university', '', 'ba english', '2020', 68.00, '', 1, '2021-03-20 12:34:51', 0, NULL, 0, NULL, 1),
(4755, 3940, '2', 'jaivel matric', '', '', '2016', 69.00, '', 1, '2021-03-20 12:35:36', 0, NULL, 0, NULL, 1),
(4756, 3939, '3', 'university', '', 'b.a.english', '2020', 60.00, '', 1, '2021-03-20 12:37:31', 0, NULL, 0, NULL, 1),
(4757, 3939, '1', 'state board', '', '', '2012', 58.00, '', 1, '2021-03-20 12:38:27', 0, NULL, 0, NULL, 1),
(4758, 3941, '5', 'E V ramasamy periyar government Polytechnic college, vellore', '', 'DME', '2019', 82.00, '', 1, '2021-03-20 12:58:56', 0, NULL, 0, NULL, 1),
(4759, 3942, '3', 'Meenakshi University', '', 'Bcom', '2014', 49.00, '', 1, '2021-03-20 01:46:18', 0, NULL, 0, NULL, 1),
(4760, 3943, '3', 'Anna University', '', 'BE', '2017', 71.00, '', 1, '2021-03-20 02:23:17', 0, NULL, 0, NULL, 1),
(4761, 3944, '3', 'anna university', '', 'be', '2016', 60.00, '', 1, '2021-03-20 02:47:23', 0, NULL, 0, NULL, 1),
(4762, 3945, '3', 'annamalai university ', '', 'b.com', '2017', 53.00, '', 1, '2021-03-20 03:01:39', 0, NULL, 0, NULL, 1),
(4763, 3946, '3', 'Madras University', '', 'B.com', '2019', 60.00, '', 1, '2021-03-20 03:22:21', 0, NULL, 0, NULL, 1),
(4764, 3948, '1', 'State Board-TN', '', '', '2013', 78.40, '', 1, '2021-03-20 05:38:18', 1, '2021-03-20 05:39:30', 0, NULL, 1),
(4765, 3948, '2', 'State board-TN', '', '', '2015', 59.00, '', 1, '2021-03-20 05:39:53', 0, NULL, 0, NULL, 1),
(4766, 3948, '3', 'Periyar University- salem', '', 'BCA', '2018', 72.62, '', 1, '2021-03-20 05:41:04', 0, NULL, 0, NULL, 1),
(4767, 3948, '4', 'Periyar University-salem', '', 'MCA', '2020', 78.00, '', 1, '2021-03-20 05:42:00', 0, NULL, 0, NULL, 1),
(4768, 3949, '1', 'State Board', '', '', '2014', 84.40, '', 1, '2021-03-20 06:07:30', 0, NULL, 0, NULL, 1),
(4769, 3910, '1', 'state board', '', '', '2015', 79.00, '', 1, '2021-03-20 06:36:01', 0, NULL, 0, NULL, 1),
(4770, 3910, '2', 'state board', '', '', '2017', 82.00, '', 1, '2021-03-20 06:36:27', 0, NULL, 0, NULL, 1),
(4771, 3910, '3', 'anna university', '', 'b.e', '2021', 72.00, '', 1, '2021-03-20 06:37:04', 0, NULL, 0, NULL, 1),
(4772, 3951, '4', 'anna university', '', 'mca', '2020', 75.00, '', 1, '2021-03-20 10:00:43', 0, NULL, 0, NULL, 1),
(4773, 3955, '4', 'NIBM', '', 'MBA', '2004', 80.00, '', 1, '2021-03-22 10:35:08', 0, NULL, 0, NULL, 1),
(4774, 3956, '3', 'St Peter\'s ', '', 'BE Mechanical', '2020', 6.50, '', 1, '2021-03-22 10:39:24', 0, NULL, 0, NULL, 1),
(4775, 3947, '1', 'Tamilnadu state board', '', 'Diploma in computer science ', '2009', 65.00, '', 1, '2021-03-22 11:26:51', 0, NULL, 0, NULL, 1),
(4776, 3947, '2', 'Matriculation ', '', '', '2011', 70.00, '', 1, '2021-03-22 11:27:22', 0, NULL, 0, NULL, 1),
(4777, 3947, '5', 'Dote', '', 'Diploma In computer Science ', '2014', 85.00, '', 1, '2021-03-22 11:27:56', 0, NULL, 0, NULL, 1),
(4778, 3959, '3', 'Prist University', '', 'BTech ECE', '2017', 68.00, '', 1, '2021-03-22 11:32:22', 0, NULL, 0, NULL, 1),
(4779, 3961, '2', 'Matric', '', '', '2015', 56.00, '', 1, '2021-03-22 11:47:10', 0, NULL, 0, NULL, 1),
(4780, 3958, '3', 'Madras university', '', 'Bsc computer science', '2017', 70.00, '', 1, '2021-03-22 11:47:49', 0, NULL, 0, NULL, 1),
(4781, 3963, '3', 'Madras university', '', 'B.com', '2017', 24.00, '', 1, '2021-03-22 12:29:35', 0, NULL, 0, NULL, 1),
(4782, 3957, '2', 'ghss', '', '', '2016', 56.00, '', 1, '2021-03-22 01:06:49', 0, NULL, 0, NULL, 1),
(4783, 3965, '3', 'Vels university', '', 'BBA', '2020', 74.00, '', 1, '2021-03-22 04:15:02', 0, NULL, 0, NULL, 1),
(4784, 3966, '4', 'Sona college of Technology ', '', 'MBA', '2020', 7.90, '', 1, '2021-03-22 04:18:09', 0, NULL, 0, NULL, 1),
(4785, 3966, '3', 'Periyar University ', '', 'B.sc Mathematics ', '2018', 81.00, '', 1, '2021-03-22 04:18:51', 0, NULL, 0, NULL, 1),
(4786, 3966, '2', 'Sri Vijay vidyalaya matric higher secondary school', '', '', '2015', 83.00, '', 1, '2021-03-22 04:19:35', 0, NULL, 0, NULL, 1),
(4787, 3966, '1', 'Sri Vijay vidyalaya matric higher secondary school ', '', '', '2013', 92.00, '', 1, '2021-03-22 04:20:19', 0, NULL, 0, NULL, 1),
(4788, 3967, '4', 'Annamalai University', '', 'MBA', '2020', 7.80, '', 1, '2021-03-22 04:35:48', 0, NULL, 0, NULL, 1),
(4789, 0, '3', 'ieseg school of management', '', 'BBA', '2017', 75.80, '', 1, '2021-03-22 05:19:03', 1, '2021-03-24 11:45:34', 0, NULL, 0),
(4790, 3906, '3', 'Periyar university', '', 'BBA', '2017', 53.00, '', 1, '2021-03-22 05:21:45', 0, NULL, 0, NULL, 1),
(4791, 3971, '5', 'S.a polytechnic college', '', 'Mechanical', '2019', 65.00, '', 1, '2021-03-23 10:05:32', 0, NULL, 0, NULL, 1),
(4792, 3972, '3', 'D.B JAIN COLLEGE', '', 'B.COM (GENERAL)', '2020', 60.00, '', 1, '2021-03-23 10:07:03', 0, NULL, 0, NULL, 1),
(4793, 3975, '2', 'state board', '', '', '2017', 65.00, '', 1, '2021-03-23 10:37:03', 0, NULL, 0, NULL, 1),
(4794, 3975, '3', 'madras university', '', 'bsc cs', '2020', 63.00, '', 1, '2021-03-23 10:37:34', 0, NULL, 0, NULL, 1),
(4795, 3976, '2', 'state board', '', '', '2017', 75.00, '', 1, '2021-03-23 10:42:30', 0, NULL, 0, NULL, 1),
(4796, 3976, '3', 'madras university', '', 'bcom', '2020', 65.00, '', 1, '2021-03-23 10:42:58', 0, NULL, 0, NULL, 1),
(4797, 3977, '2', 'state board', '', '', '2015', 80.00, '', 1, '2021-03-23 10:47:24', 0, NULL, 0, NULL, 1),
(4798, 3977, '3', 'madras university', '', 'bcom', '2018', 67.00, '', 1, '2021-03-23 10:47:51', 0, NULL, 0, NULL, 1),
(4799, 3974, '3', 'anna university', '', 'be cse', '2017', 65.00, '', 1, '2021-03-23 10:57:45', 0, NULL, 0, NULL, 1),
(4800, 3978, '3', 'Loyola College', '', 'Bsc plant Bio & Biotech', '2016', 55.00, '', 1, '2021-03-23 11:01:00', 0, NULL, 0, NULL, 1),
(4801, 3981, '3', 'The new collage', '', 'Ba sociology', '2015', 60.00, '', 1, '2021-03-23 11:18:00', 0, NULL, 0, NULL, 1),
(4802, 3980, '4', 'Madras University', '', 'BBA', '2019', 70.00, '', 1, '2021-03-23 11:18:05', 0, NULL, 0, NULL, 1),
(4803, 3979, '3', 'Periyar university', '', 'BA English Literature', '2016', 61.00, '', 1, '2021-03-23 11:45:15', 0, NULL, 0, NULL, 1),
(4804, 3982, '3', 'Madras University', '', 'BBA', '2015', 60.00, '', 1, '2021-03-23 12:02:23', 0, NULL, 0, NULL, 1),
(4805, 3983, '3', 'h.h the rajahs college', '', 'bca', '2016', 65.00, '', 1, '2021-03-23 01:43:05', 0, NULL, 0, NULL, 1),
(4806, 3984, '3', 'Mepco schlenk engineering college', '', 'B-Tech', '2018', 67.90, '', 1, '2021-03-23 02:14:43', 0, NULL, 0, NULL, 1),
(4807, 3984, '2', 'SRV Matric Higher Secondary school', '', '', '2014', 79.50, '', 1, '2021-03-23 02:15:29', 0, NULL, 0, NULL, 1),
(4808, 3984, '1', 'Muvendar Matriculation higher Secondary school', '', '', '2012', 90.00, '', 1, '2021-03-23 02:15:58', 0, NULL, 0, NULL, 1),
(4809, 3985, '3', 'Madras university', '', 'BBA', '2018', 89.00, '', 1, '2021-03-23 02:40:14', 0, NULL, 0, NULL, 1),
(4810, 3949, '2', 'State Board', '', '', '2016', 64.00, '', 1, '2021-03-23 02:44:44', 0, NULL, 0, NULL, 1),
(4811, 3949, '3', 'SRM UNIVERSITY', '', 'B.Sc Computer Science', '2019', 75.00, '', 1, '2021-03-23 02:45:13', 0, NULL, 0, NULL, 1),
(4812, 3973, '3', 'SRM University', '', 'Bsc Computer science', '2019', 7.50, '', 1, '2021-03-23 02:50:22', 0, NULL, 0, NULL, 1),
(4813, 3986, '3', 'Vels institute of science technology and advance studies', '', 'B.com', '2020', 63.33, '', 1, '2021-03-23 03:11:35', 0, NULL, 0, NULL, 1),
(4814, 3986, '1', 'Himayam matric hr.sec school', '', '', '2015', 81.20, '', 1, '2021-03-23 03:12:44', 1, '2021-03-23 03:14:17', 0, NULL, 1),
(4815, 3986, '2', 'St.antonys matric he.sec school', '', '', '2017', 62.50, '', 1, '2021-03-23 03:13:49', 0, NULL, 0, NULL, 1),
(4816, 3989, '3', 'GKM COLLEGE OF ENGINEERING AND TECHNOLOGY', '', 'B E CIVIL', '2019', 6.70, '', 1, '2021-03-23 03:22:09', 0, NULL, 0, NULL, 1),
(4817, 3992, '3', 'Mgr University', '', 'Bsc Computer Science', '2019', 56.00, '', 1, '2021-03-23 04:01:15', 0, NULL, 0, NULL, 1),
(4818, 3993, '3', 'University', '', 'B.com', '2020', 68.00, '', 1, '2021-03-23 04:21:57', 0, NULL, 0, NULL, 1),
(4819, 3993, '1', 'Nellai nadar matric Higher Secondary school', '', '', '2015', 76.00, '', 1, '2021-03-23 04:27:07', 0, NULL, 0, NULL, 1),
(4820, 3993, '2', 'Nellai Nadar matric higher secondary school', '', '', '2017', 56.00, '', 1, '2021-03-23 04:28:01', 0, NULL, 0, NULL, 1),
(4821, 3996, '3', 'ieseg school of management', '', 'Bachelor of Business Administration (BBA)', '2018', 75.80, '', 1, '2021-03-23 05:29:18', 0, NULL, 0, NULL, 1),
(4822, 3996, '1', 'cbse', '', '', '2012', 64.00, '', 1, '2021-03-23 05:30:23', 0, NULL, 0, NULL, 1),
(4823, 3996, '2', 'cbse', '', '', '2014', 82.60, '', 1, '2021-03-23 05:30:43', 0, NULL, 0, NULL, 1),
(4824, 3996, '5', 'great learning', '', 'Post Graduate Program in Data Science', '2021', 89.42, '', 1, '2021-03-23 05:31:16', 0, NULL, 0, NULL, 1),
(4825, 3998, '3', 'vellore institute of technology', '', 'bsc computer science', '2020', 82.60, '', 1, '2021-03-23 05:54:29', 0, NULL, 0, NULL, 1),
(4826, 3999, '3', 'barathiyar university', '', 'bsc', '2019', 71.00, '', 1, '2021-03-23 06:55:19', 0, NULL, 0, NULL, 1),
(4827, 4000, '3', 'srm university', '', 'bsc computer science ', '2019', 6.70, '', 1, '2021-03-23 09:30:44', 0, NULL, 0, NULL, 1),
(4828, 3953, '3', 'benson college of hotel management', '', 'diploma', '2019', 87.00, '', 1, '2021-03-24 11:27:33', 0, NULL, 0, NULL, 1),
(4829, 4001, '3', 'anna university', '', 'Bachelor\'s of Engineering in Electronics and Commu', '2020', 72.00, '', 1, '2021-03-24 11:46:47', 0, NULL, 0, NULL, 1),
(4830, 4001, '4', 'international institute of information technology bangalore', '', 'certification in data science', '2021', 85.00, '', 1, '2021-03-24 11:50:14', 0, NULL, 0, NULL, 1),
(4831, 4002, '4', 'Bharathiar University', '', 'MSc ', '2015', 81.00, '', 1, '2021-03-24 11:56:57', 0, NULL, 0, NULL, 1),
(4832, 4004, '3', 'Anna Uniy', '', 'BE', '2013', 74.00, '', 1, '2021-03-24 12:02:47', 0, NULL, 0, NULL, 1),
(4833, 4004, '2', 'State Board', '', '', '2009', 71.00, '', 1, '2021-03-24 12:03:04', 0, NULL, 0, NULL, 1),
(4834, 4004, '1', 'State Board', '', '', '2007', 80.00, '', 1, '2021-03-24 12:03:18', 0, NULL, 0, NULL, 1),
(4835, 3994, '3', 'Madras University', '', 'B.com commerce', '2013', 68.00, '', 1, '2021-03-24 12:11:07', 0, NULL, 0, NULL, 1),
(4836, 4006, '4', 'madras University ', '', 'master of arts', '2019', 79.00, '', 1, '2021-03-24 12:15:47', 0, NULL, 0, NULL, 1),
(4837, 4005, '3', 'Anna university', '', 'B. Tech iT', '2020', 70.00, '', 1, '2021-03-24 12:16:17', 0, NULL, 0, NULL, 1),
(4838, 4007, '3', 'Anna University', '', 'B tech information technology', '2021', 7.33, '', 1, '2021-03-24 12:16:39', 0, NULL, 0, NULL, 1),
(4839, 3991, '3', 'thiruvalluvar university ', '', 'bba', '2019', 62.00, '', 1, '2021-03-24 12:20:46', 0, NULL, 0, NULL, 1),
(4840, 4008, '3', 'Anna university', '', 'B.tech iT', '2020', 68.00, '', 1, '2021-03-24 12:26:11', 0, NULL, 0, NULL, 1),
(4841, 4003, '5', 'dote', '', 'eee', '2015', 61.00, '', 1, '2021-03-24 12:44:05', 0, NULL, 0, NULL, 1),
(4842, 4009, '4', 'university of madras', '', 'MBA', '2020', 67.90, '', 1, '2021-03-24 12:47:17', 0, NULL, 0, NULL, 1),
(4843, 4009, '3', 'loyola college', '', 'b.sc', '2015', 70.00, '', 1, '2021-03-24 12:48:51', 0, NULL, 0, NULL, 1),
(4844, 4009, '2', 'state board', '', '', '2012', 76.20, '', 1, '2021-03-24 12:49:30', 0, NULL, 0, NULL, 1),
(4845, 4009, '1', 'matriculation', '', '', '2010', 79.20, '', 1, '2021-03-24 12:49:49', 0, NULL, 0, NULL, 1),
(4846, 4011, '4', 'Saveetha University', '', 'MBA', '2019', 7.80, '', 1, '2021-03-24 12:51:11', 0, NULL, 0, NULL, 1),
(4847, 4012, '4', 'Anna university', '', 'MBA- hr', '2019', 79.00, '', 1, '2021-03-24 01:22:40', 0, NULL, 0, NULL, 1),
(4848, 4012, '3', 'Madras university', '', 'Bsc(pca) ', '2015', 70.00, '', 1, '2021-03-24 01:23:37', 0, NULL, 0, NULL, 1),
(4849, 4013, '3', 'Anna university', '', 'Bachelor of engineering', '2019', 6.90, '', 1, '2021-03-24 01:38:46', 0, NULL, 0, NULL, 1),
(4850, 4014, '4', 'anna university', '', 'master of computer application', '2020', 78.00, '', 1, '2021-03-24 02:07:13', 0, NULL, 0, NULL, 1),
(4851, 4014, '3', 'pondicherry university', '', 'bachelor of computer application', '2018', 61.00, '', 1, '2021-03-24 02:08:35', 0, NULL, 0, NULL, 1),
(4852, 4014, '2', 'state board', '', '', '2015', 63.00, '', 1, '2021-03-24 02:09:02', 0, NULL, 0, NULL, 1),
(4853, 4014, '1', 'state board', '', '', '2013', 84.00, '', 1, '2021-03-24 02:09:19', 0, NULL, 0, NULL, 1),
(4854, 4015, '4', 'veltech university', '', 'b.tech', '2015', 70.00, '', 1, '2021-03-24 02:53:45', 0, NULL, 0, NULL, 1),
(4855, 4016, '4', 'S v university ', '', 'Bcom', '2016', 60.00, '', 1, '2021-03-24 03:11:02', 0, NULL, 0, NULL, 1),
(4856, 4017, '1', 'Aringar Anna higher secondary school', '', '', '2017', 76.00, '', 1, '2021-03-24 03:16:46', 0, NULL, 0, NULL, 1),
(4857, 4019, '3', 'anna university', '', 'b.e', '2016', 61.00, '', 1, '2021-03-24 03:31:57', 0, NULL, 0, NULL, 1),
(4858, 4018, '4', 'SASTRA Deemed university, Thanjavur', '', 'M.sc. Physics', '2020', 77.00, '', 1, '2021-03-24 03:32:29', 0, NULL, 0, NULL, 1),
(4859, 4019, '4', 'great lakes institute of management', '', 'Post Graduate Program in Data Science', '2019', 90.00, '', 1, '2021-03-24 03:33:08', 0, NULL, 0, NULL, 1),
(4860, 4021, '5', 'Sree sastha collage ', '', 'DAE', '2016', 50.00, '', 1, '2021-03-24 03:38:59', 0, NULL, 0, NULL, 1),
(4861, 4018, '3', 'SASTRA Deemed University, Thanjavur', '', 'B.Sc. Physics and Computer Science', '2017', 70.00, '', 1, '2021-03-24 03:46:38', 0, NULL, 0, NULL, 1),
(4862, 4018, '2', 'Tamilnadu State Board', '', '', '2014', 70.00, '', 1, '2021-03-24 03:47:00', 0, NULL, 0, NULL, 1),
(4863, 4018, '1', 'Tamilnadu State Board', '', '', '2012', 74.20, '', 1, '2021-03-24 03:47:26', 0, NULL, 0, NULL, 1),
(4864, 4022, '1', 'cbse', '', '', '2012', 7.40, '', 1, '2021-03-24 03:56:58', 0, NULL, 0, NULL, 1),
(4865, 4022, '2', 'state board', '', '', '2014', 67.20, '', 1, '2021-03-24 04:01:57', 0, NULL, 0, NULL, 1),
(4866, 4022, '3', 'anna university', '', 'bachelor of engineering', '2018', 6.49, '', 1, '2021-03-24 04:03:27', 0, NULL, 0, NULL, 1),
(4867, 4022, '4', 'anna university', '', 'master of engineering', '2020', 7.63, '', 1, '2021-03-24 04:04:07', 0, NULL, 0, NULL, 1),
(4868, 4020, '2', 'state', '', '', '2003', 63.00, '', 1, '2021-03-24 05:09:20', 0, NULL, 0, NULL, 1),
(4869, 4028, '1', 'STATE BOARD ', '', '', '2010', 65.00, '', 1, '2021-03-24 05:16:41', 0, NULL, 0, NULL, 1),
(4870, 4028, '2', 'STATE BOARD', '', '', '2012', 60.00, '', 1, '2021-03-24 05:17:19', 0, NULL, 0, NULL, 1),
(4871, 4028, '3', 'ANNA UNIVERSITY ', '', 'Bachelor of Engineering ', '2016', 5.90, '', 1, '2021-03-24 05:18:00', 0, NULL, 0, NULL, 1),
(4872, 4026, '1', 'TAMILNADU BOARD', '', '', '2007', 76.00, '', 1, '2021-03-24 05:19:41', 1, '2021-03-24 05:21:44', 0, NULL, 1),
(4873, 4026, '2', 'TAMILNADU BOARD', '', '', '2009', 70.64, '', 1, '2021-03-24 05:22:06', 0, NULL, 0, NULL, 1),
(4874, 4026, '3', 'Anna University', '', 'Bachelor of Civil Engineering', '2013', 59.20, '', 1, '2021-03-24 05:22:34', 1, '2021-03-24 05:26:49', 0, NULL, 1),
(4875, 4026, '4', 'Crescent University', '', 'Masters in Actuarial Science', '2021', 75.55, '', 1, '2021-03-24 05:25:22', 1, '2021-03-24 05:27:10', 0, NULL, 1),
(4876, 4030, '1', 'State Board ', '', '', '2013', 74.00, '', 1, '2021-03-24 05:51:48', 0, NULL, 0, NULL, 1),
(4877, 4030, '2', 'State Board ', '', '', '2015', 60.00, '', 1, '2021-03-24 05:52:37', 0, NULL, 0, NULL, 1),
(4878, 4030, '3', 'the new college', '', 'b.sc computer science', '2018', 73.00, '', 1, '2021-03-24 05:53:52', 0, NULL, 0, NULL, 1),
(4879, 4030, '4', 'university of madras', '', 'm.sc computer science', '2020', 67.00, '', 1, '2021-03-24 05:54:45', 0, NULL, 0, NULL, 1),
(4880, 4032, '3', 'anna ', '', 'B.Tech', '2017', 73.20, '', 1, '2021-03-24 07:37:49', 0, NULL, 0, NULL, 1),
(4881, 4032, '2', 'state board', '', '', '2013', 89.00, '', 1, '2021-03-24 07:38:39', 0, NULL, 0, NULL, 1),
(4882, 4032, '1', 'matric', '', '', '2011', 90.00, '', 1, '2021-03-24 07:38:56', 0, NULL, 0, NULL, 1),
(4883, 4031, '1', 'cbse', '', '', '2014', 95.00, '', 1, '2021-03-24 08:00:14', 0, NULL, 0, NULL, 1),
(4884, 4031, '2', 'cbse', '', '', '2016', 89.20, '', 1, '2021-03-24 08:01:03', 0, NULL, 0, NULL, 1),
(4885, 4031, '3', 'cbse', '', 'btech', '2020', 84.40, '', 1, '2021-03-24 08:02:13', 0, NULL, 0, NULL, 1),
(4886, 4035, '1', 'state board', '', '', '2012', 52.00, '', 1, '2021-03-25 10:34:41', 0, NULL, 0, NULL, 1),
(4887, 4035, '5', 'polytechnic', '', 'dece', '2016', 66.00, '', 1, '2021-03-25 10:35:16', 0, NULL, 0, NULL, 1),
(4888, 4034, '5', 'MANIPAL UNIVERSITY', '', 'DIPLOMA', '2012', 80.00, '', 1, '2021-03-25 10:44:07', 0, NULL, 0, NULL, 1),
(4889, 4034, '1', 'KERALA BOARD', '', '', '2009', 60.00, '', 1, '2021-03-25 10:46:10', 0, NULL, 0, NULL, 1),
(4890, 4033, '3', 'University', '', 'Bsc computer science', '2016', 72.00, '', 1, '2021-03-25 10:59:32', 0, NULL, 0, NULL, 1),
(4891, 4038, '3', 'Anna University', '', 'B.E', '2019', 6.78, '', 1, '2021-03-25 11:09:27', 0, NULL, 0, NULL, 1),
(4892, 4036, '3', 'madras university', '', 'b.com', '2019', 60.00, '', 1, '2021-03-25 11:18:23', 0, NULL, 0, NULL, 1),
(4893, 4039, '3', 'open university', '', 'bba', '2012', 70.00, '', 1, '2021-03-25 11:57:34', 0, NULL, 0, NULL, 1),
(4894, 4041, '3', 'Madras University', '', 'B sc electronical communcation science', '2020', 67.00, '', 1, '2021-03-25 12:12:35', 0, NULL, 0, NULL, 1),
(4895, 4040, '3', 'Madras university', '', 'BCA', '2020', 73.00, '', 1, '2021-03-25 12:12:38', 0, NULL, 0, NULL, 1),
(4896, 4025, '3', 'Stella Maris College', '', 'Bsc.', '2019', 61.10, '', 1, '2021-03-25 12:29:55', 0, NULL, 0, NULL, 1),
(4897, 4037, '2', 'satebord', '', '', '2020', 70.00, '', 1, '2021-03-25 01:16:10', 0, NULL, 0, NULL, 1),
(4898, 4042, '3', 'Anna University', '', 'B.tech IT', '2015', 60.44, '', 1, '2021-03-25 01:25:07', 0, NULL, 0, NULL, 1),
(4899, 4043, '3', 'Thiruvalluvar university', '', 'Bca', '2017', 70.00, '', 1, '2021-03-25 01:54:02', 0, NULL, 0, NULL, 1),
(4900, 4044, '4', 'Nehru group of institution', '', 'MBA', '2019', 72.00, '', 1, '2021-03-25 04:39:46', 0, NULL, 0, NULL, 1),
(4901, 4044, '3', 'Sri balamurugan Arts & science college', '', 'BBA', '2017', 65.00, '', 1, '2021-03-25 04:40:58', 0, NULL, 0, NULL, 1),
(4902, 4048, '4', 'Madras university', '', 'M. Com', '2020', 75.00, '', 1, '2021-03-25 09:37:13', 0, NULL, 0, NULL, 1),
(4903, 4050, '3', 'Anna university', '', 'B.Tech ( information technology )', '2014', 68.30, '', 1, '2021-03-26 10:17:23', 0, NULL, 0, NULL, 1),
(4904, 4050, '2', 'Naam hr sec School', '', '', '2010', 55.70, '', 1, '2021-03-26 10:18:28', 0, NULL, 0, NULL, 1),
(4905, 4050, '1', 'Akdr hr sec school', '', '', '2007', 69.00, '', 1, '2021-03-26 10:18:57', 0, NULL, 0, NULL, 1),
(4906, 4051, '3', 'Madras university', '', 'B.com', '2020', 81.00, '', 1, '2021-03-26 10:26:28', 0, NULL, 0, NULL, 1),
(4907, 3954, '3', 'University of Madras', '', 'B.com', '2020', 71.00, '', 1, '2021-03-26 10:44:07', 0, NULL, 0, NULL, 1),
(4908, 4052, '3', 'UNIVERSITY OF MADRAS', '', 'BBA', '2017', 60.00, '', 1, '2021-03-26 11:16:49', 0, NULL, 0, NULL, 1),
(4909, 4055, '3', 'Bharadhidasan University', '', 'Bsc computer science', '2016', 67.00, '', 1, '2021-03-26 11:28:47', 0, NULL, 0, NULL, 1),
(4910, 4055, '2', 'State board of Tamil nadu', '', '', '2013', 69.00, '', 1, '2021-03-26 11:29:55', 0, NULL, 0, NULL, 1),
(4911, 4055, '1', 'State board of Tamil nadu', '', '', '2011', 86.00, '', 1, '2021-03-26 11:30:32', 0, NULL, 0, NULL, 1),
(4912, 4053, '4', 'Mgr.university', '', 'B.com', '2019', 60.00, '', 1, '2021-03-26 11:41:13', 0, NULL, 0, NULL, 1),
(4913, 4054, '3', 'University of Madras', '', 'B.com ( corporate Secretaryship )', '2020', 58.00, '', 1, '2021-03-26 11:54:45', 0, NULL, 0, NULL, 1),
(4914, 4059, '1', 'Board', '', '', '2014', 84.00, '', 1, '2021-03-26 12:22:58', 0, NULL, 0, NULL, 1),
(4915, 4059, '2', 'Board', '', '', '2016', 64.00, '', 1, '2021-03-26 12:23:21', 0, NULL, 0, NULL, 1),
(4916, 4059, '3', 'University', '', 'Bca', '2019', 85.00, '', 1, '2021-03-26 12:25:37', 0, NULL, 0, NULL, 1),
(4917, 4060, '3', 'Madras University ', '', 'Bsc computer science', '2021', 70.00, '', 1, '2021-03-26 12:59:18', 0, NULL, 0, NULL, 1),
(4918, 4062, '3', 'Madras university ', '', 'Bsc', '2013', 55.00, '', 1, '2021-03-26 01:01:28', 0, NULL, 0, NULL, 1),
(4919, 4056, '1', 'Board', '', '', '2013', 84.00, '', 1, '2021-03-26 01:03:09', 0, NULL, 0, NULL, 1),
(4920, 4056, '2', 'Board', '', '', '2015', 68.00, '', 1, '2021-03-26 01:03:45', 0, NULL, 0, NULL, 1),
(4921, 4061, '3', 'Madras university ', '', 'Bsc(cs)', '2021', 70.00, '', 1, '2021-03-26 01:04:38', 0, NULL, 0, NULL, 1),
(4922, 4056, '3', 'Anna university', '', 'BE(eCE)', '2019', 68.00, '', 1, '2021-03-26 01:04:42', 0, NULL, 0, NULL, 1),
(4923, 4063, '2', 'State board university', '', '', '2018', 47.00, '', 1, '2021-03-26 01:04:46', 0, NULL, 0, NULL, 1),
(4924, 4064, '4', 'Pulc pondicherry university ', '', 'MBA finance ', '2021', 75.00, '', 1, '2021-03-26 01:15:10', 0, NULL, 0, NULL, 1),
(4925, 4057, '1', 'tamilnadu', '', '', '2015', 90.00, '', 1, '2021-03-26 01:15:33', 0, NULL, 0, NULL, 1),
(4926, 4057, '3', 'madras', '', 'bsc', '2020', 75.00, '', 1, '2021-03-26 01:16:09', 0, NULL, 0, NULL, 1),
(4927, 4065, '3', 'anna university', '', 'b.e', '2020', 7.00, '', 1, '2021-03-26 01:21:37', 0, NULL, 0, NULL, 1),
(4928, 4065, '5', 'alagapha university', '', 'diploma in engineering', '2016', 69.00, '', 1, '2021-03-26 01:22:31', 0, NULL, 0, NULL, 1),
(4929, 4067, '3', 'madras university', '', 'ba tourism and travels management', '2016', 70.00, '', 1, '2021-03-26 02:58:16', 0, NULL, 0, NULL, 1),
(4930, 4068, '3', 'Ms University', '', 'BCA', '2018', 68.00, '', 1, '2021-03-26 03:14:19', 0, NULL, 0, NULL, 1),
(4931, 4068, '1', 'State board', '', '', '2009', 63.00, '', 1, '2021-03-26 03:14:58', 0, NULL, 0, NULL, 1),
(4932, 4069, '3', 'Sathyabama University ', '', 'BA English ', '2018', 8.70, '', 1, '2021-03-26 03:18:35', 0, NULL, 0, NULL, 1),
(4933, 4071, '2', 'state board', '', '', '2014', 56.00, '', 1, '2021-03-27 10:42:35', 0, NULL, 0, NULL, 1),
(4934, 4071, '5', 'medical academy', '', 'diploma', '2017', 73.00, '', 1, '2021-03-27 10:43:07', 0, NULL, 0, NULL, 1),
(4935, 4072, '3', 'University of Madras', '', 'Bca', '2021', 66.00, '', 1, '2021-03-27 10:52:35', 0, NULL, 0, NULL, 1),
(4936, 4073, '3', 'Vels University', '', 'B.sc', '2017', 70.00, '', 1, '2021-03-27 11:02:25', 0, NULL, 0, NULL, 1),
(4937, 4076, '3', 'Madras university', '', 'BBA ', '2020', 65.00, '', 1, '2021-03-27 11:14:32', 0, NULL, 0, NULL, 1),
(4938, 4075, '3', 'Madras university', '', 'BBA', '2020', 63.00, '', 1, '2021-03-27 11:17:54', 0, NULL, 0, NULL, 1),
(4939, 4078, '3', 'University of madras ', '', 'B.com', '2019', 59.00, '', 1, '2021-03-27 12:39:10', 0, NULL, 0, NULL, 1),
(4940, 4078, '1', 'Tamilnadu state board examination ', '', '', '2014', 83.00, '', 1, '2021-03-27 12:40:57', 0, NULL, 0, NULL, 1),
(4941, 4078, '2', 'Tamilnadu state board examination ', '', '', '2016', 93.00, '', 1, '2021-03-27 12:41:39', 0, NULL, 0, NULL, 1),
(4942, 4079, '1', 'tamilnadu state board', '', '', '2007', 60.00, '', 1, '2021-03-27 01:28:47', 0, NULL, 0, NULL, 1),
(4943, 4081, '4', 'Chennai University ', '', 'MSc IT', '2014', 78.00, '', 1, '2021-03-27 04:27:51', 0, NULL, 0, NULL, 1),
(4944, 4084, '1', 'State Board', '', '', '2012', 73.00, '', 1, '2021-03-27 05:02:32', 0, NULL, 0, NULL, 1),
(4945, 4084, '2', 'State Board', '', '', '2014', 70.00, '', 1, '2021-03-27 05:03:25', 0, NULL, 0, NULL, 1),
(4946, 4083, '3', 'Anna University', '', 'B.E CSE', '2014', 75.00, '', 1, '2021-03-27 05:03:54', 0, NULL, 0, NULL, 1),
(4947, 4084, '3', 'Manonmaniam Sundaranar University', '', 'B.sc Computer Science', '2017', 54.00, '', 1, '2021-03-27 05:04:23', 0, NULL, 0, NULL, 1),
(4948, 4084, '4', 'Anna University', '', 'MCA', '2020', 70.00, '', 1, '2021-03-27 05:04:53', 0, NULL, 0, NULL, 1),
(4949, 4046, '2', 'State Board', '', '', '2015', 57.00, '', 1, '2021-03-27 05:09:19', 0, NULL, 0, NULL, 1),
(4950, 4082, '3', 'anna university', '', 'b.e-eee', '2019', 60.70, '', 1, '2021-03-27 07:15:07', 0, NULL, 0, NULL, 1),
(4951, 4082, '1', 'state board', '', '', '2013', 90.60, '', 1, '2021-03-27 07:15:36', 0, NULL, 0, NULL, 1),
(4952, 4082, '2', 'state board', '', '', '2015', 87.75, '', 1, '2021-03-27 07:16:07', 0, NULL, 0, NULL, 1),
(4953, 4027, '3', 'kmg College of arts and science ', '', 'Bachelor of Commerce  computer application', '2020', 60.00, '', 1, '2021-03-27 07:41:08', 0, NULL, 0, NULL, 1),
(4954, 4087, '3', 'SRM University ', '', 'BSC Computer Science', '2019', 69.99, '', 1, '2021-03-28 11:25:25', 0, NULL, 0, NULL, 1),
(4955, 4087, '2', 'STATEBOARD', '', '', '2016', 70.60, '', 1, '2021-03-28 11:29:52', 0, NULL, 0, NULL, 1),
(4956, 4087, '1', 'State board', '', '', '2014', 88.20, '', 1, '2021-03-28 11:30:18', 0, NULL, 0, NULL, 1),
(4957, 4086, '3', 'Anna University', '', 'B.e', '2020', 66.10, '', 1, '2021-03-28 11:34:08', 0, NULL, 0, NULL, 1),
(4958, 4088, '3', 'aalim muhamm salegh College of Engineering ', '', '       b.e', '2019', 65.00, '', 1, '2021-03-28 01:53:56', 0, NULL, 0, NULL, 1),
(4959, 4089, '3', 'University of madras', '', 'B.Sc Computer Science', '2019', 82.00, '', 1, '2021-03-28 04:31:53', 0, NULL, 0, NULL, 1),
(4960, 4047, '3', 'madras university', '', 'b.com honours', '2020', 76.30, '', 1, '2021-03-28 06:41:14', 0, NULL, 0, NULL, 1),
(4961, 4047, '2', 'cbse ', '', '', '2017', 84.00, '', 1, '2021-03-28 06:44:34', 1, '2021-03-28 06:48:15', 0, NULL, 0),
(4962, 4047, '2', 'cbse', '', '', '2017', 84.00, '', 1, '2021-03-28 06:48:40', 0, NULL, 0, NULL, 1),
(4963, 4091, '3', 'anna university', '', 'b e', '2014', 60.00, '', 1, '2021-03-29 10:09:08', 0, NULL, 0, NULL, 1),
(4964, 4093, '5', 'Board', '', 'Nil', '2005', 78.00, '', 1, '2021-03-29 10:52:13', 0, NULL, 0, NULL, 1),
(4965, 4092, '4', 'madras university', '', 'mba', '2018', 69.00, '', 1, '2021-03-29 11:13:03', 0, NULL, 0, NULL, 1),
(4966, 4092, '4', 'madras university', '', 'mba', '2018', 69.00, '', 1, '2021-03-29 11:17:07', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4967, 4095, '3', 'Anna university', '', 'B.E/ECE', '2020', 78.00, '', 1, '2021-03-29 11:41:27', 0, NULL, 0, NULL, 1),
(4968, 4094, '4', 'anna univercity', '', 'be eee', '2019', 68.00, '', 1, '2021-03-29 11:57:14', 0, NULL, 0, NULL, 1),
(4969, 4094, '1', 'phss', '', '', '2015', 61.60, '', 1, '2021-03-29 11:57:57', 1, '2021-03-29 11:59:08', 0, NULL, 1),
(4970, 4094, '2', 'phs', '', '', '2013', 75.60, '', 1, '2021-03-29 11:59:36', 0, NULL, 0, NULL, 1),
(4971, 4097, '3', 'Kings engineering college', '', 'B.E.CSE', '2020', 68.00, '', 1, '2021-03-29 12:07:19', 0, NULL, 0, NULL, 1),
(4972, 4096, '3', 'Dhanalakshmi Srinivasan Institute Of technology ', '', 'BE-Mech engg', '1997', 65.00, '', 1, '2021-03-29 12:07:23', 0, NULL, 0, NULL, 1),
(4973, 4098, '3', 'SKR Engineering College', '', 'B.E computer science', '2020', 75.00, '', 1, '2021-03-29 12:07:31', 0, NULL, 0, NULL, 1),
(4974, 4098, '2', 'DHARAM HINDUJA MATRIC HR SEC schl', '', '', '2016', 80.30, '', 1, '2021-03-29 12:07:56', 0, NULL, 0, NULL, 1),
(4975, 4098, '1', 'Sri.v.Ramakrishna HR.Sec.school', '', '', '2014', 93.60, '', 1, '2021-03-29 12:09:02', 0, NULL, 0, NULL, 1),
(4976, 4101, '1', 'tamilnadu state board', '', '', '2016', 90.00, '', 1, '2021-03-29 12:27:16', 0, NULL, 0, NULL, 1),
(4977, 4101, '2', 'tamilnadu state board', '', '', '2018', 88.33, '', 1, '2021-03-29 12:27:52', 0, NULL, 0, NULL, 1),
(4978, 4101, '3', 'sri krishna arts and science college', '', 'b com computer applications', '2021', 73.00, '', 1, '2021-03-29 12:29:08', 0, NULL, 0, NULL, 1),
(4979, 4102, '2', 'madras university', '', '', '2021', 67.00, '', 1, '2021-03-29 12:30:00', 0, NULL, 0, NULL, 1),
(4980, 4099, '3', 'Mgr university', '', 'Bcom', '2018', 70.00, '', 1, '2021-03-29 12:53:06', 0, NULL, 0, NULL, 1),
(4981, 4104, '4', 'Anna University ', '', 'MBA', '2020', 75.00, '', 1, '2021-03-29 12:55:58', 0, NULL, 0, NULL, 1),
(4982, 4103, '4', 'Anna university', '', 'MBA', '2020', 61.00, '', 1, '2021-03-29 01:00:55', 0, NULL, 0, NULL, 1),
(4983, 4106, '4', 'Madras University', '', 'MBA - Human Resources Management', '2020', 55.00, '', 1, '2021-03-29 01:02:37', 0, NULL, 0, NULL, 1),
(4984, 4105, '4', 'madres university', '', 'm.a english', '2021', 67.20, '', 1, '2021-03-29 01:13:41', 0, NULL, 0, NULL, 1),
(4985, 4107, '3', 'Bharathidhasan', '', 'B.sc', '2018', 61.00, '', 1, '2021-03-29 01:29:36', 0, NULL, 0, NULL, 1),
(4986, 4108, '3', 'Madras university', '', 'B. Com CS', '2020', 58.00, '', 1, '2021-03-29 01:35:42', 0, NULL, 0, NULL, 1),
(4987, 600, '1', 'madras', '', '', '2021', 99.00, '', 1, '2021-03-29 02:49:50', 0, NULL, 0, NULL, 1),
(4988, 4115, '3', 'anna university', '', 'b e', '2018', 6.90, '', 1, '2021-03-29 06:57:47', 0, NULL, 0, NULL, 1),
(4989, 4117, '3', 'Madras University', '', 'BCA', '2018', 60.00, '', 1, '2021-03-29 10:51:45', 0, NULL, 0, NULL, 1),
(4990, 4110, '1', 'central board', '', 'mba finance and marke ', '2013', 66.00, '', 1, '2021-03-29 11:10:46', 1, '2021-03-29 11:11:56', 0, NULL, 1),
(4991, 4110, '2', 'state board', '', '', '2015', 83.50, '', 1, '2021-03-29 11:11:39', 0, NULL, 0, NULL, 1),
(4992, 4110, '3', 'university of madras', '', 'b.com general', '2018', 72.00, '', 1, '2021-03-29 11:12:34', 0, NULL, 0, NULL, 1),
(4993, 4110, '4', 'university of madras', '', 'mba finance and marketing', '2021', 80.00, '', 1, '2021-03-29 11:13:27', 0, NULL, 0, NULL, 1),
(4994, 4118, '3', 'Board of University', '', 'B.com (general)', '2018', 68.00, '', 1, '2021-03-30 09:39:56', 0, NULL, 0, NULL, 1),
(4995, 4120, '3', 'Madras University', '', 'B.sc Computer Science', '2019', 71.00, '', 1, '2021-03-30 10:54:25', 0, NULL, 0, NULL, 1),
(4996, 4120, '1', 'State Board', '', '', '2014', 87.00, '', 1, '2021-03-30 10:55:25', 0, NULL, 0, NULL, 1),
(4997, 4120, '2', 'State Board', '', '', '2016', 65.00, '', 1, '2021-03-30 10:56:00', 0, NULL, 0, NULL, 1),
(4998, 4123, '4', 'Loyola College, Chennai ', '', 'M. A Social Work (Human Resource Management) ', '2020', 66.00, '', 1, '2021-03-30 11:21:17', 0, NULL, 0, NULL, 1),
(4999, 4123, '3', 'Madras Christian College ', '', 'B.S.W (Bachelor of Social Work) ', '2017', 59.00, '', 1, '2021-03-30 11:22:38', 0, NULL, 0, NULL, 1),
(5000, 4122, '2', 'Hsc', '', '', '2014', 63.00, '', 1, '2021-03-30 11:32:00', 0, NULL, 0, NULL, 1),
(5001, 4126, '1', 'loyola college', '', '', '2017', 58.00, '', 1, '2021-03-30 11:32:31', 0, NULL, 0, NULL, 1),
(5002, 4124, '3', 'Anna university', '', 'be', '2020', 69.00, '', 1, '2021-03-30 11:39:39', 0, NULL, 0, NULL, 1),
(5003, 4128, '3', 'Anna University', '', 'B.Tech Information Technology', '2015', 70.00, '', 1, '2021-03-30 11:46:45', 0, NULL, 0, NULL, 1),
(5004, 4125, '3', 'Anna University', '', 'Bachelor of Engineering', '2020', 67.00, '', 1, '2021-03-30 11:52:39', 0, NULL, 0, NULL, 1),
(5005, 4130, '3', 'Hindustan university ', '', '', '2020', 7.10, '', 1, '2021-03-30 12:07:52', 0, NULL, 0, NULL, 1),
(5006, 4132, '3', 'Madras University (Loyola College)', '', 'B.com corporate secretary ship', '2020', 62.50, '', 1, '2021-03-30 12:12:47', 0, NULL, 0, NULL, 1),
(5007, 4131, '3', 'Madras University', '', 'B. Com(C.s) ', '2020', 60.00, '', 1, '2021-03-30 12:13:12', 0, NULL, 0, NULL, 1),
(5008, 4134, '3', 'University ', '', 'B. A(history)', '2020', 72.00, '', 1, '2021-03-30 12:21:43', 0, NULL, 0, NULL, 1),
(5009, 4129, '3', 'Sivet college ', '', 'B.A (history) ', '2020', 72.00, '', 1, '2021-03-30 12:30:20', 0, NULL, 0, NULL, 1),
(5010, 4116, '4', 'Anna university ', '', 'B. E mechanical engineering ', '2019', 6.00, '', 1, '2021-03-30 12:35:54', 0, NULL, 0, NULL, 1),
(5011, 4136, '3', 'university', '', 'BBA', '2021', 70.00, '', 1, '2021-03-30 12:37:02', 0, NULL, 0, NULL, 1),
(5012, 4113, '3', 'University ', '', 'BBA', '2021', 78.00, '', 1, '2021-03-30 12:37:33', 0, NULL, 0, NULL, 1),
(5013, 4133, '3', 'madras university', '', 'b.com', '2015', 66.40, '', 1, '2021-03-30 01:03:58', 0, NULL, 0, NULL, 1),
(5014, 4119, '3', 'madras univercity', '', '', '2018', 60.00, '', 1, '2021-03-30 01:24:35', 0, NULL, 0, NULL, 1),
(5015, 4137, '3', 'anna university', '', 'be', '2020', 70.00, '', 1, '2021-03-30 03:52:36', 0, NULL, 0, NULL, 1),
(5016, 4137, '2', 'holy cross matriculation higher secondary school', '', '', '2016', 68.00, '', 1, '2021-03-30 03:53:05', 0, NULL, 0, NULL, 1),
(5017, 4138, '1', 'Govt boys higher secondary school', '', '', '2014', 90.00, '', 1, '2021-03-30 04:07:57', 0, NULL, 0, NULL, 1),
(5018, 4138, '2', 'State board', '', '', '2016', 77.00, '', 1, '2021-03-30 04:08:33', 0, NULL, 0, NULL, 1),
(5019, 4138, '3', 'Anna university', '', 'BE', '2020', 66.00, '', 1, '2021-03-30 04:09:06', 0, NULL, 0, NULL, 1),
(5020, 4142, '4', 'Anna University ', '', 'MCA', '2021', 80.00, '', 1, '2021-03-30 05:46:21', 0, NULL, 0, NULL, 1),
(5021, 4146, '3', 'Madras', '', 'BSC. ECS', '2021', 89.00, '', 1, '2021-03-30 10:55:32', 0, NULL, 0, NULL, 1),
(5022, 4143, '1', 'Tamil Nadu', '', '', '2016', 94.00, '', 1, '2021-03-31 09:11:21', 0, NULL, 0, NULL, 1),
(5023, 4150, '3', 'Matras University', '', 'B.com', '2018', 72.00, '', 1, '2021-03-31 09:30:08', 0, NULL, 0, NULL, 1),
(5024, 4150, '2', 'St repheal s Girls hsc', '', '', '2015', 87.00, '', 1, '2021-03-31 09:31:56', 0, NULL, 0, NULL, 1),
(5025, 4150, '1', 'St Repheals girls hec', '', '', '2013', 84.00, '', 1, '2021-03-31 09:32:56', 0, NULL, 0, NULL, 1),
(5026, 4144, '3', 'Anna university ', '', 'B. Tech', '2019', 50.00, '', 1, '2021-03-31 10:15:30', 0, NULL, 0, NULL, 1),
(5027, 4152, '3', 'Madras University', '', 'Bsc', '2020', 65.00, '', 1, '2021-03-31 10:34:40', 0, NULL, 0, NULL, 1),
(5028, 4152, '2', 'Tamil Nadu', '', '', '2017', 68.00, '', 1, '2021-03-31 10:35:21', 0, NULL, 0, NULL, 1),
(5029, 4153, '5', 'Madras university', '', 'DEEE', '2005', 63.00, '', 1, '2021-03-31 10:43:17', 0, NULL, 0, NULL, 1),
(5030, 4149, '3', 'anna university', '', 'b.e', '2017', 65.50, '', 1, '2021-03-31 10:46:11', 0, NULL, 0, NULL, 1),
(5031, 4154, '3', 'Madras University', '', 'B.com (cs)', '2017', 75.00, '', 1, '2021-03-31 10:50:40', 0, NULL, 0, NULL, 1),
(5032, 4147, '3', 'srm', '', 'Bsc', '2021', 80.00, '', 1, '2021-03-31 11:07:38', 0, NULL, 0, NULL, 1),
(5033, 4155, '5', 'madurai university', '', 'deee', '2013', 70.00, '', 1, '2021-03-31 11:19:42', 0, NULL, 0, NULL, 1),
(5034, 4157, '3', 'University of madras', '', 'BCA', '2021', 61.00, '', 1, '2021-03-31 11:28:05', 0, NULL, 0, NULL, 1),
(5035, 4158, '3', 'Autonomous ', '', 'B.com ', '2021', 58.00, '', 1, '2021-03-31 11:32:18', 0, NULL, 0, NULL, 1),
(5036, 4162, '4', 'Madras university ', '', 'MBA', '2017', 60.00, '', 1, '2021-03-31 11:42:18', 0, NULL, 0, NULL, 1),
(5037, 4161, '3', 'Bharathidasan university', '', 'B,sc mathematics', '2016', 59.00, '', 1, '2021-03-31 11:43:35', 0, NULL, 0, NULL, 1),
(5038, 4163, '1', 'Madred University', '', '', '2018', 60.00, '', 1, '2021-03-31 11:57:20', 0, NULL, 0, NULL, 1),
(5039, 4159, '3', 'Madras university', '', 'BBA', '2019', 65.00, '', 1, '2021-03-31 12:02:56', 0, NULL, 0, NULL, 1),
(5040, 4156, '2', 'ps matric hr sec school ', '', '', '2005', 58.00, '', 1, '2021-03-31 12:11:31', 0, NULL, 0, NULL, 1),
(5041, 4164, '4', 'Bharathidasan university', '', 'M.com ', '2018', 75.00, '', 1, '2021-03-31 12:16:53', 0, NULL, 0, NULL, 1),
(5042, 4166, '3', 'Sree Sastha Institute of Engineering and Technology', '', 'B.E (EEE)', '2018', 75.00, '', 1, '2021-03-31 12:17:42', 0, NULL, 0, NULL, 1),
(5043, 4165, '3', 'Bharathidasan university', '', 'BA English', '2015', 60.00, '', 1, '2021-03-31 12:43:57', 0, NULL, 0, NULL, 1),
(5044, 4167, '3', 'Madras university', '', 'BCA computer application', '2013', 58.00, '', 1, '2021-03-31 02:57:35', 0, NULL, 0, NULL, 1),
(5045, 4172, '4', 'anna university', '', 'm.e', '2011', 7.10, '', 1, '2021-03-31 04:35:39', 0, NULL, 0, NULL, 1),
(5046, 4145, '3', 'Anna University', '', 'B.E', '2017', 64.00, '', 1, '2021-03-31 10:54:29', 0, NULL, 0, NULL, 1),
(5047, 4175, '3', 'Madras university', '', 'BCA', '2020', 75.00, '', 1, '2021-03-31 11:43:19', 0, NULL, 0, NULL, 1),
(5048, 4175, '2', 'State board', '', '', '2017', 76.00, '', 1, '2021-03-31 11:44:26', 1, '2021-03-31 11:44:40', 0, NULL, 0),
(5049, 4176, '3', 'Anna University ', '', 'b. E. Mechanical engineering ', '2018', 80.00, '', 1, '2021-04-01 11:50:07', 0, NULL, 0, NULL, 1),
(5050, 4177, '3', 'Anna University ', '', 'B. E.  CSE', '2019', 65.00, '', 1, '2021-04-01 11:59:49', 0, NULL, 0, NULL, 1),
(5051, 4178, '1', 'prince matric high secondary school', '', '', '2010', 87.20, '', 1, '2021-04-01 12:06:43', 1, '2021-04-01 12:07:32', 0, NULL, 1),
(5052, 4178, '2', 'prince matric higher secondary school', '', '', '2012', 73.58, '', 1, '2021-04-01 12:07:23', 0, NULL, 0, NULL, 1),
(5053, 4178, '3', 'meenakshi college for women', '', 'b.sc. plant biology and plant biotechnology', '2015', 76.50, '', 1, '2021-04-01 12:08:30', 0, NULL, 0, NULL, 1),
(5054, 4178, '4', 'madras Christian college', '', 'm.sc. plant biology and plant biotechnology', '2017', 70.00, '', 1, '2021-04-01 12:09:13', 0, NULL, 0, NULL, 1),
(5055, 4179, '3', 'Guru Nanak College', '', 'B.Sc Visual Communication', '2018', 72.00, '', 1, '2021-04-01 12:19:17', 0, NULL, 0, NULL, 1),
(5056, 4180, '1', 'state board', '', '', '2015', 82.00, '', 1, '2021-04-01 12:36:07', 0, NULL, 0, NULL, 1),
(5057, 4180, '2', 'state board', '', '', '2017', 64.00, '', 1, '2021-04-01 12:36:34', 0, NULL, 0, NULL, 1),
(5058, 4180, '3', 'madras university', '', 'bca', '2020', 70.00, '', 1, '2021-04-01 12:37:00', 0, NULL, 0, NULL, 1),
(5059, 4183, '3', 'University College of engineering Villupuram ', '', 'BE CSE', '2018', 6.72, '', 1, '2021-04-01 01:23:32', 0, NULL, 0, NULL, 1),
(5060, 4184, '3', 'Sastra University', '', 'B.sc. communication and computer sceince', '2016', 54.00, '', 1, '2021-04-01 01:55:06', 1, '2021-04-01 01:57:44', 0, NULL, 1),
(5061, 4185, '1', 'state board', '', '', '2014', 82.40, '', 1, '2021-04-01 02:33:45', 1, '2021-04-01 02:34:15', 0, NULL, 1),
(5062, 4185, '2', 'state board', '', '', '2016', 74.00, '', 1, '2021-04-01 02:34:32', 0, NULL, 0, NULL, 1),
(5063, 4185, '3', 'anna university', '', 'computer science engineering', '2020', 75.00, '', 1, '2021-04-01 02:35:23', 0, NULL, 0, NULL, 1),
(5064, 4186, '4', 'University of Madras', '', 'MCA', '2015', 85.00, '', 1, '2021-04-01 02:57:07', 0, NULL, 0, NULL, 1),
(5065, 4187, '1', 'state board', '', '', '2015', 90.60, '', 1, '2021-04-01 03:03:23', 0, NULL, 0, NULL, 1),
(5066, 4187, '2', 'state board', '', '', '2017', 76.30, '', 1, '2021-04-01 03:03:54', 0, NULL, 0, NULL, 1),
(5067, 4187, '3', 'sri venkateshwara college of engineering', '', 'b.e automobile engineering', '2021', 70.00, '', 1, '2021-04-01 03:06:25', 0, NULL, 0, NULL, 1),
(5068, 4188, '4', 'anna university', '', 'mba', '2021', 65.00, '', 1, '2021-04-01 03:23:11', 0, NULL, 0, NULL, 1),
(5069, 4182, '3', 'rvs technical campus', '', 'bachelor of engineering', '2018', 6.47, '', 1, '2021-04-01 04:27:52', 0, NULL, 0, NULL, 1),
(5070, 4193, '3', 'Anna University', '', 'B.E Mechanical', '2021', 78.40, '', 1, '2021-04-01 06:27:16', 0, NULL, 0, NULL, 1),
(5071, 4192, '3', 'Anna university', '', 'Computer science engineering', '2020', 81.00, '', 1, '2021-04-01 06:28:37', 0, NULL, 0, NULL, 1),
(5072, 4174, '1', 'cbse', '', '', '2012', 8.20, '', 1, '2021-04-01 07:05:48', 0, NULL, 0, NULL, 1),
(5073, 4174, '2', 'stateboard', '', '', '2014', 80.00, '', 1, '2021-04-01 07:06:12', 0, NULL, 0, NULL, 1),
(5074, 4174, '3', 'madras university', '', 'bsc mathematic with computer application', '2019', 68.00, '', 1, '2021-04-01 07:07:09', 0, NULL, 0, NULL, 1),
(5075, 4174, '4', 'crecsent university', '', 'pgdm', '2021', 75.00, '', 1, '2021-04-01 07:07:51', 0, NULL, 0, NULL, 1),
(5076, 4195, '3', 'kamaraj university', '', 'bsc', '2010', 62.00, '', 1, '2021-04-02 02:13:09', 0, NULL, 0, NULL, 1),
(5077, 4196, '5', 'Sri Balaji polytechnic college', '', 'ECE', '2015', 65.00, '', 1, '2021-04-03 11:23:50', 0, NULL, 0, NULL, 1),
(5078, 4194, '3', 'nehru institute of engineering and technology', '', 'b.e electronics and communication', '2021', 72.00, '', 1, '2021-04-03 12:20:07', 0, NULL, 0, NULL, 1),
(5079, 4194, '2', 'ideal matric higher secondary school', '', '', '2017', 75.00, '', 1, '2021-04-03 12:20:58', 0, NULL, 0, NULL, 1),
(5080, 4194, '1', 'holy cross convent matric high school', '', '', '2015', 87.00, '', 1, '2021-04-03 12:21:46', 0, NULL, 0, NULL, 1),
(5081, 4200, '4', 'Madras University', '', 'MBA System Management', '2018', 59.00, '', 1, '2021-04-05 10:06:03', 0, NULL, 0, NULL, 1),
(5082, 4191, '1', 'ilayangudi higher second school', '', '', '2003', 70.00, '', 1, '2021-04-05 10:17:59', 0, NULL, 0, NULL, 1),
(5083, 4191, '2', 'ilayangudi higher Secondary  school', '', '', '2005', 67.00, '', 1, '2021-04-05 10:18:45', 0, NULL, 0, NULL, 1),
(5084, 4191, '3', 'alavappa university', '', 'b.sc maths', '2008', 50.00, '', 1, '2021-04-05 10:19:33', 0, NULL, 0, NULL, 1),
(5085, 4191, '4', 'alavappa University ', '', 'm.sc maths', '2012', 60.00, '', 1, '2021-04-05 10:20:10', 0, NULL, 0, NULL, 1),
(5086, 4201, '3', 'SRM University ', '', 'B.tech', '2015', 5.80, '', 1, '2021-04-05 10:24:30', 0, NULL, 0, NULL, 1),
(5087, 4202, '3', 'Madras', '', 'B.com', '2017', 52.00, '', 1, '2021-04-05 10:30:08', 0, NULL, 0, NULL, 1),
(5088, 4200, '3', 'Vels University', '', 'B.E CSE', '2014', 63.00, '', 1, '2021-04-05 10:35:03', 0, NULL, 0, NULL, 1),
(5089, 4203, '4', 'Anna University', '', 'Master of business administration', '2018', 8.50, '', 1, '2021-04-05 10:46:56', 0, NULL, 0, NULL, 1),
(5090, 4204, '3', 'Anna University ', '', 'B.tech', '2013', 70.00, '', 1, '2021-04-05 11:13:13', 0, NULL, 0, NULL, 1),
(5091, 4205, '3', 'Madras University', '', 'B.Sc(Software Application)', '2014', 65.00, '', 1, '2021-04-05 11:24:05', 0, NULL, 0, NULL, 1),
(5092, 4206, '3', 'University of Madras', '', 'B.Com ', '2020', 67.00, '', 1, '2021-04-05 11:46:30', 0, NULL, 0, NULL, 1),
(5093, 4208, '3', 'Madras University', '', 'Bsc maths', '2019', 75.00, '', 1, '2021-04-05 11:50:35', 0, NULL, 0, NULL, 1),
(5094, 4207, '3', 'Madras University', '', 'BCA', '2019', 71.00, '', 1, '2021-04-05 12:09:11', 0, NULL, 0, NULL, 1),
(5095, 4209, '3', 'madras university', '', 'bsc computer science', '2017', 56.00, '', 1, '2021-04-05 12:23:04', 1, '2021-04-05 12:25:10', 0, NULL, 1),
(5096, 4209, '1', 'state bord', '', '', '2012', 71.00, '', 1, '2021-04-05 12:25:52', 0, NULL, 0, NULL, 1),
(5097, 4209, '2', 'state bord', '', '', '2014', 56.00, '', 1, '2021-04-05 12:26:22', 0, NULL, 0, NULL, 1),
(5098, 4181, '5', 'bpt', '', '', '2015', 52.00, '', 1, '2021-04-05 12:30:11', 0, NULL, 0, NULL, 1),
(5099, 4211, '3', 'Madras Christian college', '', 'B.com', '2021', 73.00, '', 1, '2021-04-05 12:41:05', 0, NULL, 0, NULL, 1),
(5100, 4213, '3', 'Madras Christian College', '', 'B. Com', '2021', 66.00, '', 1, '2021-04-05 12:41:13', 0, NULL, 0, NULL, 1),
(5101, 4210, '3', 'Madras Christian college', '', 'B.com', '2021', 73.00, '', 1, '2021-04-05 12:52:09', 0, NULL, 0, NULL, 1),
(5102, 4212, '3', 'SRM UNIVERSITY', '', 'Btech', '2014', 65.00, '', 1, '2021-04-05 12:58:08', 0, NULL, 0, NULL, 1),
(5103, 4212, '2', 'NARAYANA JR COLLEGE', '', '', '2014', 83.00, '', 1, '2021-04-05 12:58:56', 0, NULL, 0, NULL, 1),
(5104, 4215, '3', 'SRM UNIVERSITY', '', 'BTECH ', '2018', 66.00, '', 1, '2021-04-05 12:59:05', 0, NULL, 0, NULL, 1),
(5105, 4214, '3', 'Madras Christian college', '', 'B.com', '2021', 72.00, '', 1, '2021-04-05 01:00:01', 0, NULL, 0, NULL, 1),
(5106, 4215, '2', 'SPRING FIELD MATRIC hR SEC SCHOOL', '', '', '2014', 66.00, '', 1, '2021-04-05 01:01:20', 0, NULL, 0, NULL, 1),
(5107, 4217, '3', 'Jaya college of arts and science', '', 'B.com', '2020', 86.00, '', 1, '2021-04-05 01:01:21', 0, NULL, 0, NULL, 1),
(5108, 4215, '1', 'SPRING FIELD MAT HR SEC SCHOOL', '', '', '2012', 79.00, '', 1, '2021-04-05 01:01:55', 0, NULL, 0, NULL, 1),
(5109, 4217, '2', 'Princess matric higher sec school', '', '', '2017', 80.00, '', 1, '2021-04-05 01:02:51', 0, NULL, 0, NULL, 1),
(5110, 4212, '1', 'SRI VIDYA HR SCHOOL', '', '', '2012', 62.00, '', 1, '2021-04-05 01:03:02', 0, NULL, 0, NULL, 1),
(5111, 4217, '1', 'Princess matric higher sec school', '', '', '2015', 82.50, '', 1, '2021-04-05 01:03:34', 0, NULL, 0, NULL, 1),
(5112, 4218, '3', 'Jaya college of arts and science', '', 'BA English literature', '2021', 70.00, '', 1, '2021-04-05 01:08:59', 0, NULL, 0, NULL, 1),
(5113, 4219, '2', 'Govt hr sec school', '', '', '2018', 80.00, '', 1, '2021-04-05 01:12:06', 0, NULL, 0, NULL, 1),
(5114, 4216, '3', 'Madras institute of fashion Technology', '', 'Bsc fashion designer', '2021', 85.00, '', 1, '2021-04-05 01:15:42', 0, NULL, 0, NULL, 1),
(5115, 4216, '2', 'Chennai girls higher secondary school', '', '', '2017', 80.00, '', 1, '2021-04-05 01:16:29', 0, NULL, 0, NULL, 1),
(5116, 4216, '1', 'Wpa soundhara pandiyan higher secondary school', '', '', '2017', 85.00, '', 1, '2021-04-05 01:17:18', 0, NULL, 0, NULL, 1),
(5117, 4221, '3', 'Madras University', '', 'B.com', '2017', 64.00, '', 1, '2021-04-05 01:26:56', 0, NULL, 0, NULL, 1),
(5118, 4220, '3', 'University', '', 'BCA', '2021', 78.00, '', 1, '2021-04-05 01:42:35', 0, NULL, 0, NULL, 1),
(5119, 4223, '3', 'Jbas college', '', 'Bsc chemistry', '2020', 72.70, '', 1, '2021-04-05 02:51:51', 0, NULL, 0, NULL, 1),
(5120, 3970, '5', 'anna university ', '', 'diploma electrical and electronics engineering ', '2017', 80.00, '', 1, '2021-04-05 02:53:54', 0, NULL, 0, NULL, 1),
(5121, 4225, '3', 'Madras University', '', 'B sc', '2019', 65.00, '', 1, '2021-04-05 03:00:42', 0, NULL, 0, NULL, 1),
(5122, 4225, '4', 'Madras University', '', 'B sc', '2019', 65.00, '', 1, '2021-04-05 03:01:28', 0, NULL, 0, NULL, 1),
(5123, 4226, '4', 'Anna University ', '', 'Master of business administration ', '2020', 74.00, '', 1, '2021-04-05 03:11:10', 0, NULL, 0, NULL, 1),
(5124, 4226, '3', 'Anna University ', '', 'B.E Mechanical Engineering ', '2017', 70.00, '', 1, '2021-04-05 03:12:00', 0, NULL, 0, NULL, 1),
(5125, 4224, '3', 'University', '', 'BCA', '2021', 69.00, '', 1, '2021-04-05 03:12:28', 0, NULL, 0, NULL, 1),
(5126, 4227, '3', 'University of madras', '', 'B.A economics', '2022', 77.00, '', 1, '2021-04-05 03:34:42', 0, NULL, 0, NULL, 1),
(5127, 4228, '3', 'Madras university ', '', 'Bsc cs', '2018', 65.00, '', 1, '2021-04-05 05:09:54', 0, NULL, 0, NULL, 1),
(5128, 4229, '2', 'state board', '', '', '2016', 75.00, '', 1, '2021-04-07 09:21:15', 0, NULL, 0, NULL, 1),
(5129, 4230, '3', 'madras university', '', 'b.com', '2020', 68.00, '', 1, '2021-04-07 10:46:27', 0, NULL, 0, NULL, 1),
(5130, 4231, '4', 'Autonomous', '', 'B.com General', '2021', 70.00, '', 1, '2021-04-07 10:46:39', 0, NULL, 0, NULL, 1),
(5131, 4230, '2', 'state board', '', '', '2017', 64.00, '', 1, '2021-04-07 10:46:59', 0, NULL, 0, NULL, 1),
(5132, 4231, '4', 'Board', '', 'B.com general', '2021', 70.00, '', 1, '2021-04-07 10:47:07', 1, '2021-04-07 10:47:28', 0, NULL, 0),
(5133, 4230, '1', 'state board', '', '', '2015', 67.00, '', 1, '2021-04-07 10:47:36', 0, NULL, 0, NULL, 1),
(5134, 4232, '3', 'Madras university', '', 'B. Com', '2019', 70.00, '', 1, '2021-04-07 10:47:56', 0, NULL, 0, NULL, 1),
(5135, 4233, '3', 'Madras University', '', 'Bsc Maths', '2019', 57.00, '', 1, '2021-04-07 10:55:27', 0, NULL, 0, NULL, 1),
(5136, 4235, '5', 'State borad', '', '', '2012', 84.00, '', 1, '2021-04-07 11:05:34', 0, NULL, 0, NULL, 1),
(5137, 4234, '3', 'Anna university', '', 'BE', '2020', 65.00, '', 1, '2021-04-07 11:09:50', 0, NULL, 0, NULL, 1),
(5138, 4236, '3', 'Madras University', '', 'Bsc computer science ', '2015', 59.00, '', 1, '2021-04-07 11:11:25', 0, NULL, 0, NULL, 1),
(5139, 4238, '2', 'Nope', '', '', '2010', 60.00, '', 1, '2021-04-07 11:15:13', 0, NULL, 0, NULL, 1),
(5140, 4237, '2', 'Maharishi Vidya Mandir', '', '', '2018', 80.00, '', 1, '2021-04-07 11:23:00', 0, NULL, 0, NULL, 1),
(5141, 4240, '3', 'P.S.R Rengasamy college of Engineering for women', '', 'B.E', '2020', 83.50, '', 1, '2021-04-07 11:35:36', 1, '2021-04-07 11:36:47', 0, NULL, 1),
(5142, 4240, '2', 'K.R.A Matriculation and hr. Sec school', '', '', '2013', 81.75, '', 1, '2021-04-07 11:37:38', 0, NULL, 0, NULL, 1),
(5143, 4240, '1', 'C.K.T matriculation and hr. Sec school', '', '', '2011', 87.00, '', 1, '2021-04-07 11:38:11', 0, NULL, 0, NULL, 1),
(5144, 4241, '3', 'srm valliammai engineering college', '', 'electronics and communication engineering', '2020', 73.30, '', 1, '2021-04-07 12:28:04', 0, NULL, 0, NULL, 1),
(5145, 4242, '3', 'annauniversity', '', 'b com', '2021', 77.00, '', 1, '2021-04-07 01:04:39', 0, NULL, 0, NULL, 1),
(5146, 4243, '3', 'Bharathiyar university', '', 'BA English literature', '2021', 88.00, '', 1, '2021-04-07 01:38:09', 0, NULL, 0, NULL, 1),
(5147, 4245, '3', 'University ', '', 'BBA', '2020', 75.00, '', 1, '2021-04-07 02:57:10', 0, NULL, 0, NULL, 1),
(5148, 4244, '4', 'Easwari engineering college', '', '', '2020', 74.49, '', 1, '2021-04-07 03:26:02', 0, NULL, 0, NULL, 1),
(5149, 4247, '3', 'jntu k', '', 'b tech in mechanical engineering', '2019', 78.30, '', 1, '2021-04-07 03:34:13', 0, NULL, 0, NULL, 1),
(5150, 4247, '2', 'b i e a p', '', '', '2015', 97.40, '', 1, '2021-04-07 03:34:47', 0, NULL, 0, NULL, 1),
(5151, 4247, '1', 'b s e a p ', '', '', '2013', 95.00, '', 1, '2021-04-07 03:35:04', 0, NULL, 0, NULL, 1),
(5152, 4249, '2', 'cbse', '', '', '2017', 74.00, '', 1, '2021-04-07 03:51:42', 1, '2021-04-07 03:53:41', 0, NULL, 0),
(5153, 4249, '1', 'cbse', '', '', '2015', 84.00, '', 1, '2021-04-07 03:51:59', 1, '2021-04-07 03:53:45', 0, NULL, 0),
(5154, 4249, '3', 'sri krishna college of technology', '', 'B.E.EEE', '2021', 84.00, '', 1, '2021-04-07 03:52:59', 1, '2021-04-07 03:53:37', 0, NULL, 0),
(5155, 4249, '3', 'sri krishna college of technology', '', 'B.E.', '2021', 84.00, '', 1, '2021-04-07 03:54:18', 0, NULL, 0, NULL, 1),
(5156, 4249, '2', 'cbse', '', '', '2017', 74.00, '', 1, '2021-04-07 03:54:44', 0, NULL, 0, NULL, 1),
(5157, 4249, '1', 'cbse', '', '', '2015', 84.00, '', 1, '2021-04-07 03:55:15', 0, NULL, 0, NULL, 1),
(5158, 4251, '3', 'sri krishna college of technology', '', 'B.E.', '2021', 80.00, '', 1, '2021-04-07 04:01:02', 0, NULL, 0, NULL, 1),
(5159, 4251, '5', 'nANJIAH LINGAMAL POLYTECHNIC COLLEGE', '', 'diploma in mechanical engineering', '2017', 84.00, '', 1, '2021-04-07 04:03:38', 0, NULL, 0, NULL, 1),
(5160, 4251, '2', 'state board', '', '', '2015', 60.00, '', 1, '2021-04-07 04:04:11', 0, NULL, 0, NULL, 1),
(5161, 4251, '1', 'cbse', '', '', '2013', 58.00, '', 1, '2021-04-07 04:04:32', 0, NULL, 0, NULL, 1),
(5162, 4250, '3', 'anna university', '', 'B. E. Mechanical Engineering ', '2021', 85.00, '', 1, '2021-04-07 04:27:18', 1, '2021-04-07 04:28:13', 0, NULL, 0),
(5163, 4250, '2', 'state board', '', '', '2017', 86.00, '', 1, '2021-04-07 04:27:45', 1, '2021-04-07 04:28:18', 0, NULL, 0),
(5164, 4250, '1', 'state board', '', '', '2015', 93.00, '', 1, '2021-04-07 04:28:39', 0, NULL, 0, NULL, 1),
(5165, 4250, '2', 'state board', '', '', '2017', 86.00, '', 1, '2021-04-07 04:28:56', 0, NULL, 0, NULL, 1),
(5166, 4250, '3', 'anna university', '', 'B. E. Mechanical Engineering ', '2021', 85.00, '', 1, '2021-04-07 04:29:17', 0, NULL, 0, NULL, 1),
(5167, 4252, '3', 'Madras University', '', 'Bsc Mathematics', '2018', 74.00, '', 1, '2021-04-07 04:39:54', 0, NULL, 0, NULL, 1),
(5168, 4252, '4', 'Saveetha engineering college', '', 'Master of Business Administration', '2020', 72.00, '', 1, '2021-04-07 04:40:30', 0, NULL, 0, NULL, 1),
(5169, 4253, '3', 'Saveetha Engineering College', '', 'B.E Medical Electronics', '2021', 75.00, '', 1, '2021-04-07 04:58:05', 0, NULL, 0, NULL, 1),
(5170, 4253, '2', 'Tamilnadu state board syllabus', '', '', '2017', 78.00, '', 1, '2021-04-07 04:59:41', 1, '2021-04-07 04:59:58', 0, NULL, 1),
(5171, 4253, '1', 'Tamilnadu State Board Syllabus', '', '', '2015', 93.00, '', 1, '2021-04-07 05:00:35', 0, NULL, 0, NULL, 1),
(5172, 4254, '3', 'anna university', '', 'b.e', '2021', 75.00, '', 1, '2021-04-07 05:02:33', 0, NULL, 0, NULL, 1),
(5173, 4254, '1', 'cbse', '', '', '2017', 68.00, '', 1, '2021-04-07 05:03:25', 0, NULL, 0, NULL, 1),
(5174, 4255, '3', 'Bharathidasan University', '', 'Bca', '2016', 55.00, '', 1, '2021-04-07 05:06:38', 0, NULL, 0, NULL, 1),
(5175, 4256, '3', 'University of madras', '', 'B.com', '2019', 68.00, '', 1, '2021-04-07 05:22:39', 0, NULL, 0, NULL, 1),
(5176, 4257, '2', 'state board', '', '', '2018', 67.00, '', 1, '2021-04-07 08:44:20', 0, NULL, 0, NULL, 1),
(5177, 4257, '3', 'madras university', '', 'bsc bio', '2021', 66.00, '', 1, '2021-04-07 08:44:42', 0, NULL, 0, NULL, 1),
(5178, 4258, '2', 'state board', '', '', '2018', 73.00, '', 1, '2021-04-07 08:47:12', 0, NULL, 0, NULL, 1),
(5179, 4258, '3', 'madras', '', 'bsc', '2021', 79.00, '', 1, '2021-04-07 08:47:31', 0, NULL, 0, NULL, 1),
(5180, 4259, '2', 'state board', '', '', '2018', 63.00, '', 1, '2021-04-07 08:50:11', 0, NULL, 0, NULL, 1),
(5181, 4259, '3', 'madras', '', 'bsc', '2021', 76.00, '', 1, '2021-04-07 08:50:36', 0, NULL, 0, NULL, 1),
(5182, 4261, '2', 'state board', '', '', '2018', 43.00, '', 1, '2021-04-07 08:52:59', 0, NULL, 0, NULL, 1),
(5183, 4261, '3', 'madras', '', 'bsc', '2021', 77.00, '', 1, '2021-04-07 08:53:16', 0, NULL, 0, NULL, 1),
(5184, 4262, '2', 'state board', '', '', '2018', 58.00, '', 1, '2021-04-07 08:55:34', 0, NULL, 0, NULL, 1),
(5185, 4262, '3', 'madras university', '', 'bsc', '2021', 69.00, '', 1, '2021-04-07 08:55:57', 0, NULL, 0, NULL, 1),
(5186, 4263, '2', 'state board', '', '', '2018', 66.00, '', 1, '2021-04-07 08:57:57', 0, NULL, 0, NULL, 1),
(5187, 4263, '3', 'madras', '', 'bsc', '2021', 77.00, '', 1, '2021-04-07 08:58:10', 0, NULL, 0, NULL, 1),
(5188, 4260, '3', 'Anna university', '', 'BE', '2017', 65.00, '', 1, '2021-04-07 09:00:14', 0, NULL, 0, NULL, 1),
(5189, 4264, '2', 'state board', '', '', '2018', 68.00, '', 1, '2021-04-07 09:00:33', 0, NULL, 0, NULL, 1),
(5190, 4264, '3', 'madras', '', 'bsc', '2021', 78.00, '', 1, '2021-04-07 09:00:49', 0, NULL, 0, NULL, 1),
(5191, 4265, '2', 'state board', '', '', '2018', 75.00, '', 1, '2021-04-07 09:02:51', 0, NULL, 0, NULL, 1),
(5192, 4265, '3', 'madras university', '', 'bsc', '2021', 76.00, '', 1, '2021-04-07 09:03:10', 0, NULL, 0, NULL, 1),
(5193, 4266, '2', 'state board', '', '', '2018', 65.00, '', 1, '2021-04-07 09:08:37', 0, NULL, 0, NULL, 1),
(5194, 4266, '3', 'madras', '', 'bsc', '2021', 77.00, '', 1, '2021-04-07 09:08:51', 0, NULL, 0, NULL, 1),
(5195, 4267, '2', 'state board', '', '', '2018', 65.00, '', 1, '2021-04-07 09:11:07', 0, NULL, 0, NULL, 1),
(5196, 4267, '3', 'madras university', '', 'bsc', '2021', 79.00, '', 1, '2021-04-07 09:11:21', 0, NULL, 0, NULL, 1),
(5197, 4268, '2', 'state board', '', '', '2018', 56.00, '', 1, '2021-04-07 09:14:23', 0, NULL, 0, NULL, 1),
(5198, 4268, '3', 'madras', '', 'bsc', '2021', 76.00, '', 1, '2021-04-07 09:14:39', 0, NULL, 0, NULL, 1),
(5199, 4270, '5', 'Madras university', '', 'B. Sc Psychology', '2006', 60.00, '', 1, '2021-04-08 10:19:01', 0, NULL, 0, NULL, 1),
(5200, 4273, '1', 'State Board of Tamil Nadu', '', '', '2012', 75.00, '', 1, '2021-04-08 10:39:12', 0, NULL, 0, NULL, 1),
(5201, 4273, '2', 'State Board of Tamil Nadu', '', '', '2014', 79.00, '', 1, '2021-04-08 10:39:36', 0, NULL, 0, NULL, 1),
(5202, 4273, '3', 'Madras University', '', 'B.Com', '2017', 78.00, '', 1, '2021-04-08 10:40:04', 0, NULL, 0, NULL, 1),
(5203, 4273, '4', 'Madras University', '', 'Master of Social Work (HR)', '2019', 80.00, '', 1, '2021-04-08 10:40:41', 0, NULL, 0, NULL, 1),
(5204, 4276, '2', 'state board', '', '', '2018', 56.00, '', 1, '2021-04-08 10:45:18', 0, NULL, 0, NULL, 1),
(5205, 4276, '3', 'madras university', '', 'bsc', '2021', 78.00, '', 1, '2021-04-08 10:45:32', 0, NULL, 0, NULL, 1),
(5206, 4277, '4', 'VIT university', '', 'M. Tech(SE) ', '2020', 7.58, '', 1, '2021-04-08 10:52:26', 0, NULL, 0, NULL, 1),
(5207, 4274, '4', 'Madrse university', '', 'M.com', '2018', 71.00, '', 1, '2021-04-08 10:54:52', 0, NULL, 0, NULL, 1),
(5208, 4272, '3', 'MADRAS UNIVERSITY ', '', 'B COM  GENERAL ', '2021', 85.00, '', 1, '2021-04-08 10:57:05', 0, NULL, 0, NULL, 1),
(5209, 4278, '2', 'state board', '', '', '2018', 66.00, '', 1, '2021-04-08 10:58:19', 0, NULL, 0, NULL, 1),
(5210, 4275, '3', 'Dhanraj baid Jain College', '', 'Bca', '2020', 60.00, '', 1, '2021-04-08 10:58:40', 1, '2021-04-08 10:59:55', 0, NULL, 1),
(5211, 4278, '3', 'madras university', '', 'bsc', '2021', 76.00, '', 1, '2021-04-08 10:58:43', 0, NULL, 0, NULL, 1),
(5212, 4271, '3', 'Madras university', '', 'B.com', '2021', 77.00, '', 1, '2021-04-08 11:05:45', 0, NULL, 0, NULL, 1),
(5213, 4279, '4', 'Anna University', '', 'Mba', '2014', 72.00, '', 1, '2021-04-08 11:29:49', 0, NULL, 0, NULL, 1),
(5214, 4280, '3', 'Madras University', '', 'BCA ', '2019', 67.00, '', 1, '2021-04-08 11:41:41', 0, NULL, 0, NULL, 1),
(5215, 4282, '2', 'State board', '', '', '2017', 63.00, '', 1, '2021-04-08 12:12:01', 0, NULL, 0, NULL, 1),
(5216, 4282, '1', 'State board', '', '', '2015', 54.00, '', 1, '2021-04-08 12:12:58', 0, NULL, 0, NULL, 1),
(5217, 4282, '3', 'University of madras', '', 'B.A. ECONOMICS', '2020', 60.36, '', 1, '2021-04-08 12:14:54', 0, NULL, 0, NULL, 1),
(5218, 4281, '3', 'University', '', 'BCA', '2018', 64.00, '', 1, '2021-04-08 12:37:32', 0, NULL, 0, NULL, 1),
(5219, 4283, '3', 'Anna University', '', 'Bachelor of engineering', '2021', 7.21, '', 1, '2021-04-08 01:29:07', 0, NULL, 0, NULL, 1),
(5220, 4284, '3', 'Anna university', '', 'BE', '2021', 7.47, '', 1, '2021-04-08 01:29:10', 0, NULL, 0, NULL, 1),
(5221, 0, '3', 'Meenakshi acadamey of higher education and research (deemed University)', '', 'B.com (computer application)', '2021', 80.00, '', 1, '2021-04-08 02:38:18', 1, '2021-04-13 03:17:33', 0, NULL, 0),
(5222, 4285, '3', 'Meenakshi academy of higher education and research (deemed university)', '', 'B.com', '2021', 74.00, '', 1, '2021-04-08 02:38:45', 1, '2021-04-08 02:55:24', 0, NULL, 0),
(5223, 4285, '3', 'deemed university', '', 'b.com computer application', '2021', 72.00, '', 1, '2021-04-08 02:56:07', 0, NULL, 0, NULL, 1),
(5224, 4285, '2', 'tamil nadu', '', '', '2018', 48.00, '', 1, '2021-04-08 03:03:57', 0, NULL, 0, NULL, 1),
(5225, 4286, '3', 'University of Madras ', '', 'B.B.A', '2007', 54.00, '', 1, '2021-04-08 03:05:35', 0, NULL, 0, NULL, 1),
(5226, 4288, '3', 'Sathyabama University', '', 'BE ECE', '2017', 6.58, '', 1, '2021-04-08 03:30:36', 0, NULL, 0, NULL, 1),
(5227, 4289, '5', 'Thiruseven hills polytechnic College', '', 'Dme', '2020', 82.00, '', 1, '2021-04-08 03:30:55', 1, '2021-04-08 03:31:27', 0, NULL, 1),
(5228, 4287, '3', 'madras university', '', 'b.com ca', '2021', 78.00, '', 1, '2021-04-08 03:33:52', 0, NULL, 0, NULL, 1),
(5229, 4290, '4', 'anna university', '', 'mba', '2019', 60.00, '', 1, '2021-04-08 03:41:43', 0, NULL, 0, NULL, 1),
(5230, 4295, '3', 'Anna University', '', 'BE', '2017', 64.10, '', 1, '2021-04-08 06:42:42', 0, NULL, 0, NULL, 1),
(5231, 4297, '3', 'Bharathidasan', '', 'B com', '2018', 65.00, '', 1, '2021-04-08 07:41:09', 0, NULL, 0, NULL, 1),
(5232, 4296, '3', 'Anna university ', '', 'BE', '2019', 73.00, '', 1, '2021-04-08 10:24:35', 0, NULL, 0, NULL, 1),
(5233, 4300, '3', 'Madras University', '', 'B.com', '2020', 56.20, '', 1, '2021-04-09 10:46:26', 0, NULL, 0, NULL, 1),
(5234, 4301, '3', 'Bharathidhasan universe City', '', 'B,com', '2017', 75.00, '', 1, '2021-04-09 11:09:27', 0, NULL, 0, NULL, 1),
(5235, 4303, '3', 'University of madras', '', 'B.com (cS)', '2020', 70.00, '', 1, '2021-04-09 11:14:26', 0, NULL, 0, NULL, 1),
(5236, 4304, '3', 'Anna university ', '', 'bachelor\'s in mechanical engineer ', '2015', 62.00, '', 1, '2021-04-09 11:15:58', 0, NULL, 0, NULL, 1),
(5237, 4302, '3', 'madras university', '', 'Bsc Viscom', '2018', 50.00, '', 1, '2021-04-09 11:24:22', 0, NULL, 0, NULL, 1),
(5238, 4306, '5', 'chennais amirtha', '', 'diplamo', '2018', 67.00, '', 1, '2021-04-09 11:55:06', 0, NULL, 0, NULL, 1),
(5239, 4308, '3', 'c.t.t.e college for women', '', 'b.com cs', '2013', 60.00, '', 1, '2021-04-09 12:11:12', 0, NULL, 0, NULL, 1),
(5240, 4305, '3', 'University of Madras', '', '', '2017', 48.00, '', 1, '2021-04-09 12:22:15', 0, NULL, 0, NULL, 1),
(5241, 4298, '3', 'Madras University', '', 'B.sc', '2019', 60.00, '', 1, '2021-04-09 12:30:12', 0, NULL, 0, NULL, 1),
(5242, 4309, '3', 'Anna university', '', 'B.E CSE', '2017', 73.00, '', 1, '2021-04-09 01:49:08', 0, NULL, 0, NULL, 1),
(5243, 4310, '3', 'M. O. P. Vaishnav college for women', '', 'Bsc. Computer Science', '2021', 82.00, '', 1, '2021-04-09 02:31:12', 0, NULL, 0, NULL, 1),
(5244, 4310, '2', 'State ', '', '', '2018', 80.00, '', 1, '2021-04-09 02:32:12', 1, '2021-04-09 02:32:30', 0, NULL, 1),
(5245, 4311, '3', 'University', '', 'Bcom(c.A)', '2017', 80.00, '', 1, '2021-04-09 02:38:09', 0, NULL, 0, NULL, 1),
(5246, 4311, '2', 'tamilnadu', '', '', '2013', 80.00, '', 1, '2021-04-09 02:41:45', 0, NULL, 0, NULL, 1),
(5247, 4312, '3', 'Madras University', '', 'B.COM ( corporate secretaryship)', '2020', 68.00, '', 1, '2021-04-09 02:55:43', 0, NULL, 0, NULL, 1),
(5248, 4314, '3', 'Srm arts and science college', '', 'Bca', '2019', 68.00, '', 1, '2021-04-09 04:40:17', 0, NULL, 0, NULL, 1),
(5249, 4315, '3', 'Madras university', '', 'BBA', '2020', 74.00, '', 1, '2021-04-09 04:52:38', 0, NULL, 0, NULL, 1),
(5250, 4318, '3', 'Anna university', '', 'B. E., Electronics and communication engineering ', '2018', 62.24, '', 1, '2021-04-09 09:56:57', 0, NULL, 0, NULL, 1),
(5251, 4318, '2', 'Matric', '', '', '2014', 72.00, '', 1, '2021-04-09 09:57:41', 0, NULL, 0, NULL, 1),
(5252, 4318, '1', 'Matric', '', '', '2012', 79.00, '', 1, '2021-04-09 09:58:05', 0, NULL, 0, NULL, 1),
(5253, 4319, '1', 'state board', '', '', '2010', 88.00, '', 1, '2021-04-10 06:39:49', 0, NULL, 0, NULL, 1),
(5254, 4319, '2', 'state board', '', '', '2012', 77.00, '', 1, '2021-04-10 06:40:06', 0, NULL, 0, NULL, 1),
(5255, 4319, '3', 'anna university', '', 'btech', '2016', 71.00, '', 1, '2021-04-10 06:40:35', 0, NULL, 0, NULL, 1),
(5256, 4321, '3', 'Anna University', '', 'B.E ECE', '2018', 7.80, '', 1, '2021-04-10 10:29:59', 0, NULL, 0, NULL, 1),
(5257, 4320, '3', 'UNIVERSITY', '', 'B.COM', '2018', 53.00, '', 1, '2021-04-10 10:30:44', 0, NULL, 0, NULL, 1),
(5258, 4324, '3', 'Woman\'s collage in Kumbakonam (  Bharathidasan University)', '', 'BA English', '2019', 70.00, '', 1, '2021-04-10 10:48:54', 0, NULL, 0, NULL, 1),
(5259, 4326, '3', 'Anna University', '', 'Bca', '2017', 70.00, '', 1, '2021-04-10 11:05:57', 0, NULL, 0, NULL, 1),
(5260, 4322, '3', 'anna university', '', 'be', '2018', 60.00, '', 1, '2021-04-10 11:06:27', 0, NULL, 0, NULL, 1),
(5261, 4327, '3', 'University', '', 'BCA', '2017', 55.00, '', 1, '2021-04-10 11:14:05', 0, NULL, 0, NULL, 1),
(5262, 4328, '5', 'IGNOU', '', 'Diploma in knitwear manufacturing technology', '2010', 76.00, '', 1, '2021-04-10 11:20:50', 0, NULL, 0, NULL, 1),
(5263, 4293, '3', 'University', '', 'B.com (general)', '2020', 70.00, '', 1, '2021-04-10 11:27:34', 0, NULL, 0, NULL, 1),
(5264, 4329, '2', 'Stateboard', '', '', '2018', 70.50, '', 1, '2021-04-10 11:31:35', 0, NULL, 0, NULL, 1),
(5265, 4294, '3', 'University', '', 'B.com', '2020', 69.00, '', 1, '2021-04-10 11:33:03', 0, NULL, 0, NULL, 1),
(5266, 4325, '3', 'Thiruvallur university', '', 'Bsc chemistry', '2020', 67.00, '', 1, '2021-04-10 11:40:12', 0, NULL, 0, NULL, 1),
(5267, 4330, '3', 'madras university', '', 'viscom', '2018', 50.00, '', 1, '2021-04-10 11:56:06', 0, NULL, 0, NULL, 1),
(5268, 4331, '3', 'Madras University', '', 'BBA', '2019', 50.00, '', 1, '2021-04-10 12:06:01', 0, NULL, 0, NULL, 1),
(5269, 4332, '3', 'Alagappa university', '', 'BCA', '2020', 56.00, '', 1, '2021-04-10 01:02:31', 0, NULL, 0, NULL, 1),
(5270, 4334, '2', 'tamilnadu', '', '', '2012', 54.00, '', 1, '2021-04-10 01:36:26', 0, NULL, 0, NULL, 1),
(5271, 4148, '3', 'Anna university', '', 'Be ', '2017', 6.30, '', 1, '2021-04-10 02:28:38', 0, NULL, 0, NULL, 1),
(5272, 4337, '4', 'SRM University', '', 'Mba', '2018', 62.00, '', 1, '2021-04-10 03:00:49', 0, NULL, 0, NULL, 1),
(5273, 4337, '3', 'University of Madras', '', 'B.com', '2015', 52.00, '', 1, '2021-04-10 03:01:17', 0, NULL, 0, NULL, 1),
(5274, 4336, '2', 'State board', '', '', '2012', 75.00, '', 1, '2021-04-10 03:06:09', 0, NULL, 0, NULL, 1),
(5275, 4336, '1', 'State board', '', '', '2010', 81.00, '', 1, '2021-04-10 03:06:42', 0, NULL, 0, NULL, 1),
(5276, 4336, '3', 'Anna university', '', 'Computer science engineering', '2012', 63.00, '', 1, '2021-04-10 03:07:12', 0, NULL, 0, NULL, 1),
(5277, 4335, '3', 'Anna university', '', 'B.E', '2014', 66.00, '', 1, '2021-04-10 04:05:49', 0, NULL, 0, NULL, 1),
(5278, 4341, '5', 'Central polytechnic college', '', 'DME', '2020', 70.00, '', 1, '2021-04-10 05:17:25', 0, NULL, 0, NULL, 1),
(5279, 4342, '3', 'Kerala Technological University', '', 'B.Tech', '2020', 82.50, '', 1, '2021-04-10 05:50:07', 0, NULL, 0, NULL, 1),
(5280, 4344, '3', 'Kerala Technological University', '', 'B.Tech Mechanical', '2020', 82.50, '', 1, '2021-04-10 06:07:50', 0, NULL, 0, NULL, 1),
(5281, 4343, '3', 'University of Madras ', '', 'B. Sc ', '2022', 80.00, '', 1, '2021-04-10 06:20:43', 0, NULL, 0, NULL, 1),
(5282, 4340, '3', 'Anna University', '', 'B E(ECE) ', '2015', 70.00, '', 1, '2021-04-10 10:18:18', 0, NULL, 0, NULL, 1),
(5283, 4338, '4', 'University of Mysore', '', 'MSc', '2015', 52.00, '', 1, '2021-04-11 02:34:45', 0, NULL, 0, NULL, 1),
(5284, 4348, '5', 'IGNOU', '', '', '2010', 76.00, '', 1, '2021-04-12 10:37:53', 0, NULL, 0, NULL, 1),
(5285, 4350, '3', 'Anna University', '', 'B.E', '2018', 65.00, '', 1, '2021-04-12 10:53:15', 0, NULL, 0, NULL, 1),
(5286, 4349, '3', 'Madras university', '', 'B.B.A', '2018', 57.00, '', 1, '2021-04-12 11:02:29', 0, NULL, 0, NULL, 1),
(5287, 4353, '3', 'Bharathidasan University', '', 'B.sc Chemistry', '2019', 63.00, '', 1, '2021-04-12 11:08:23', 0, NULL, 0, NULL, 1),
(5288, 4352, '5', 'dote', '', 'Diploma in mechanical engineering', '2016', 55.00, '', 1, '2021-04-12 11:09:44', 0, NULL, 0, NULL, 1),
(5289, 4351, '5', 'DOTE', '', 'Diploma in mechanical engineering ', '2018', 79.00, '', 1, '2021-04-12 11:10:12', 0, NULL, 0, NULL, 1),
(5290, 4354, '3', 'Anna University', '', 'B.E', '2020', 6.50, '', 1, '2021-04-12 11:18:27', 0, NULL, 0, NULL, 1),
(5291, 4357, '3', 'Anna university', '', 'B.E MECHANICAL', '2020', 60.00, '', 1, '2021-04-12 11:39:04', 0, NULL, 0, NULL, 1),
(5292, 4358, '3', 'Madras university', '', 'BA political science', '2021', 70.00, '', 1, '2021-04-12 11:49:24', 0, NULL, 0, NULL, 1),
(5293, 4355, '2', 'state board ', '', '', '2013', 48.00, '', 1, '2021-04-12 11:50:47', 0, NULL, 0, NULL, 1),
(5294, 4345, '3', 'University', '', '', '2019', 65.00, '', 1, '2021-04-12 11:53:23', 0, NULL, 0, NULL, 1),
(5295, 4359, '3', 'India maritime University', '', 'B.tech marine engineering', '2018', 70.00, '', 1, '2021-04-12 11:55:00', 0, NULL, 0, NULL, 1),
(5296, 4361, '4', 'university of madras', '', 'mba', '2020', 60.00, '', 1, '2021-04-12 12:07:10', 0, NULL, 0, NULL, 1),
(5297, 4362, '3', 'Bharath University', '', 'Bsc.visual communication ', '2018', 60.00, '', 1, '2021-04-12 12:13:00', 0, NULL, 0, NULL, 1),
(5298, 4364, '3', 'Anna university', '', 'BE', '2015', 7.30, '', 1, '2021-04-12 12:23:56', 0, NULL, 0, NULL, 1),
(5299, 4364, '1', 'State', '', '', '2009', 7.34, '', 1, '2021-04-12 12:24:50', 0, NULL, 0, NULL, 1),
(5300, 4360, '3', 'vivekanda college mylapore', '', 'bcom', '2019', 60.00, '', 1, '2021-04-12 12:34:22', 0, NULL, 0, NULL, 1),
(5301, 4363, '3', 'Board', '', 'BBA', '2012', 60.00, '', 1, '2021-04-12 12:38:43', 0, NULL, 0, NULL, 1),
(5302, 4365, '4', 'MKU', '', 'MCA', '2017', 60.00, '', 1, '2021-04-12 01:17:25', 1, '2021-04-12 01:21:59', 0, NULL, 0),
(5303, 4365, '1', 'State board', '', '', '2008', 74.00, '', 1, '2021-04-12 01:21:04', 0, NULL, 0, NULL, 1),
(5304, 4365, '2', 'State board', '', '', '2010', 50.00, '', 1, '2021-04-12 01:22:38', 0, NULL, 0, NULL, 1),
(5305, 4368, '3', 'Anna University', '', 'Bachelor of Engineering', '2019', 80.00, '', 1, '2021-04-12 01:22:59', 0, NULL, 0, NULL, 1),
(5306, 4365, '3', 'MKU', '', 'Bsc', '2013', 57.00, '', 1, '2021-04-12 01:23:24', 0, NULL, 0, NULL, 1),
(5307, 4368, '2', 'State Board', '', '', '2015', 73.40, '', 1, '2021-04-12 01:23:25', 0, NULL, 0, NULL, 1),
(5308, 4368, '1', 'State Board', '', '', '2013', 74.60, '', 1, '2021-04-12 01:23:51', 0, NULL, 0, NULL, 1),
(5309, 4365, '4', 'MKU', '', 'MCA', '2017', 60.00, '', 1, '2021-04-12 01:23:52', 0, NULL, 0, NULL, 1),
(5310, 4367, '3', 'Dgvc', '', 'Ba economics', '2019', 55.00, '', 1, '2021-04-12 01:55:04', 0, NULL, 0, NULL, 1),
(5311, 4371, '3', 'University', '', 'B.com c A discountinue', '2017', 1.10, '', 1, '2021-04-12 03:10:24', 0, NULL, 0, NULL, 1),
(5312, 4372, '4', 'university of east london', '', 'msc', '2016', 76.00, '', 1, '2021-04-12 04:01:22', 0, NULL, 0, NULL, 1),
(5313, 4374, '3', 'Anna University', '', 'B.E', '2020', 7.52, '', 1, '2021-04-12 05:03:58', 1, '2021-04-12 05:04:58', 0, NULL, 0),
(5314, 4374, '3', 'Meenakshi College of Engineering', '', 'B.E', '2020', 7.52, '', 1, '2021-04-12 05:05:11', 0, NULL, 0, NULL, 1),
(5315, 4375, '3', 'Rajalakshmi Engineering college, Chennai.', '', 'Automobile Engineering', '2019', 68.90, '', 1, '2021-04-12 05:41:15', 0, NULL, 0, NULL, 1),
(5316, 4375, '2', 'State Board', '', '', '2015', 89.10, '', 1, '2021-04-12 05:42:20', 0, NULL, 0, NULL, 1),
(5317, 4376, '4', 'Measi Institute Of Information Technology', '', 'MCA', '2020', 65.30, '', 1, '2021-04-12 05:42:26', 0, NULL, 0, NULL, 1),
(5318, 4375, '1', 'State board', '', '', '2013', 97.00, '', 1, '2021-04-12 05:42:59', 0, NULL, 0, NULL, 1),
(5319, 4377, '4', 'University of Madras', '', 'MBA', '2016', 59.00, '', 1, '2021-04-12 09:24:46', 0, NULL, 0, NULL, 1),
(5320, 4377, '3', 'University of Madras', '', 'B.Com', '2014', 72.00, '', 1, '2021-04-12 09:25:23', 0, NULL, 0, NULL, 1),
(5321, 4382, '3', 'University of Madras', '', 'BCA', '2017', 60.00, '', 1, '2021-04-13 10:46:35', 0, NULL, 0, NULL, 1),
(5322, 4384, '5', 'Board of technical education ', '', '', '2005', 74.00, '', 1, '2021-04-13 10:57:33', 0, NULL, 0, NULL, 1),
(5323, 4385, '3', 'Anna university', '', 'Electronics and communication engineering', '2014', 71.00, '', 1, '2021-04-13 11:05:21', 0, NULL, 0, NULL, 1),
(5324, 4387, '3', 'Anna university ', '', 'B. e', '2020', 73.40, '', 1, '2021-04-13 11:23:28', 0, NULL, 0, NULL, 1),
(5325, 4386, '5', 'Dote', '', 'Mechanical', '2015', 78.00, '', 1, '2021-04-13 11:26:45', 0, NULL, 0, NULL, 1),
(5326, 4388, '2', 'karnataka sangha higher secondary school', '', 'b.com', '2011', 86.00, '', 1, '2021-04-13 12:27:24', 0, NULL, 0, NULL, 1),
(5327, 4390, '3', 'LNG College,ponneri,Chennai-601204', '', 'BSC,physics ', '2016', 53.00, '', 1, '2021-04-13 12:28:42', 0, NULL, 0, NULL, 1),
(5328, 4391, '3', 'Anna University  chennai', '', 'B. E., Mechanical Engineering', '2013', 74.80, '', 1, '2021-04-13 12:32:45', 0, NULL, 0, NULL, 1),
(5329, 4389, '1', 'sd eden mat hr sec school', '', '', '2011', 59.00, '', 1, '2021-04-13 01:12:50', 0, NULL, 0, NULL, 1),
(5330, 4389, '2', 'st annes girls hr sec school', '', '', '2013', 78.50, '', 1, '2021-04-13 01:13:33', 0, NULL, 0, NULL, 1),
(5331, 4389, '3', 'jawahar science college ', '', 'b.com', '2016', 69.00, '', 1, '2021-04-13 01:14:27', 0, NULL, 0, NULL, 1),
(5332, 4393, '3', 'anna university ', '', 'b.e ece ', '2017', 61.00, '', 1, '2021-04-13 01:47:42', 1, '2021-04-13 01:48:13', 0, NULL, 1),
(5333, 4394, '3', 'Anna University', '', 'B.E', '2017', 64.80, '', 1, '2021-04-13 01:51:59', 0, NULL, 0, NULL, 1),
(5334, 4394, '2', 'State Board', '', '', '2013', 76.00, '', 1, '2021-04-13 01:52:22', 1, '2021-04-13 01:53:07', 0, NULL, 1),
(5335, 4394, '1', 'Matriculation', '', '', '2011', 78.00, '', 1, '2021-04-13 01:52:46', 0, NULL, 0, NULL, 1),
(5336, 4381, '3', 'Queen Mary\'s College (AUTONOMOUS)chennai', '', 'B.Com', '2019', 75.00, '', 1, '2021-04-13 02:00:54', 0, NULL, 0, NULL, 1),
(5337, 4395, '1', 'state board', '', '', '2010', 80.00, '', 1, '2021-04-13 02:23:39', 0, NULL, 0, NULL, 1),
(5338, 4395, '5', 'poly technic', '', 'dme', '2015', 68.00, '', 1, '2021-04-13 02:24:12', 0, NULL, 0, NULL, 1),
(5339, 4396, '4', 'Pondicherry University ', '', 'Mtech', '2015', 79.00, '', 1, '2021-04-13 03:18:37', 0, NULL, 0, NULL, 1),
(5340, 4397, '5', 'Anna University', '', 'Diploma in electrical and electronics engineering', '2014', 81.30, '', 1, '2021-04-13 04:13:12', 0, NULL, 0, NULL, 1),
(5341, 4398, '4', 'Anna university ', '', 'MBA', '2019', 7.80, '', 1, '2021-04-13 05:32:31', 0, NULL, 0, NULL, 1),
(5342, 4398, '3', 'Madras University ', '', 'B. COM', '2017', 81.70, '', 1, '2021-04-13 05:34:26', 0, NULL, 0, NULL, 1),
(5343, 4405, '3', 'Anna university', '', 'engineering', '2020', 6.56, '', 1, '2021-04-14 08:44:17', 0, NULL, 0, NULL, 1),
(5344, 4407, '3', 'Madars university', '', 'BBA', '2018', 79.00, '', 1, '2021-04-15 10:13:55', 0, NULL, 0, NULL, 1),
(5345, 4409, '2', 'state board', '', '', '2016', 56.00, '', 1, '2021-04-15 10:38:23', 0, NULL, 0, NULL, 1),
(5346, 4409, '3', 'madurai kamarajar', '', 'bsc', '2019', 70.00, '', 1, '2021-04-15 10:38:55', 0, NULL, 0, NULL, 1),
(5347, 4410, '2', 'state board', '', '', '2015', 60.00, '', 1, '2021-04-15 10:42:02', 0, NULL, 0, NULL, 1),
(5348, 4410, '3', 'fashion', '', 'diploma', '2020', 88.00, '', 1, '2021-04-15 10:42:25', 0, NULL, 0, NULL, 1),
(5349, 4411, '4', 'madras university', '', 'm.sc', '2021', 8.00, '', 1, '2021-04-15 10:49:11', 0, NULL, 0, NULL, 1),
(5350, 4411, '4', 'alagappa universitu', '', 'mba', '2021', 8.00, '', 1, '2021-04-15 10:49:45', 0, NULL, 0, NULL, 1),
(5351, 4412, '3', 'Bharathidasan University', '', 'Bsc', '2005', 66.00, '', 1, '2021-04-15 11:07:34', 0, NULL, 0, NULL, 1),
(5352, 4399, '4', 'Matriculation', '', 'Mba', '2021', 60.00, '', 1, '2021-04-15 11:49:37', 0, NULL, 0, NULL, 1),
(5353, 4399, '3', 'SRM', '', 'Bba', '2017', 60.00, '', 1, '2021-04-15 11:51:01', 0, NULL, 0, NULL, 1),
(5354, 4413, '4', 'University of madras', '', 'Mba- finance ', '2020', 68.00, '', 1, '2021-04-15 12:01:01', 0, NULL, 0, NULL, 1),
(5355, 4413, '1', 'Shree k sugunibai hr sec school', '', '', '2010', 82.00, '', 1, '2021-04-15 12:01:49', 0, NULL, 0, NULL, 1),
(5356, 4413, '2', 'Shree sugunibai school ', '', '', '2014', 97.00, '', 1, '2021-04-15 12:02:24', 0, NULL, 0, NULL, 1),
(5357, 4413, '3', 'Shree kanyaka parmeshwari arts nd science College ', '', 'B.com', '2017', 82.00, '', 1, '2021-04-15 12:03:15', 0, NULL, 0, NULL, 1),
(5358, 4401, '1', 'state board', '', '', '2012', 85.00, '', 1, '2021-04-15 12:08:09', 0, NULL, 0, NULL, 1),
(5359, 4401, '2', 'state board ', '', '', '2014', 60.00, '', 1, '2021-04-15 12:08:34', 0, NULL, 0, NULL, 1),
(5360, 4401, '3', 'anna university', '', 'btech-it', '2018', 62.00, '', 1, '2021-04-15 12:09:09', 0, NULL, 0, NULL, 1),
(5361, 4414, '1', 'W P A SOUNDARAPANDIAN hr Sec school', '', '', '2012', 69.00, '', 1, '2021-04-15 01:06:39', 1, '2021-04-15 01:09:01', 0, NULL, 1),
(5362, 4414, '2', 'W P A SOUNDARAPANDIAN Hr Sec School', '', '', '2014', 56.00, '', 1, '2021-04-15 01:08:26', 0, NULL, 0, NULL, 1),
(5363, 4414, '3', 'St . Peter\'s college of engineering and technology', '', 'B.E ( ECE)', '2018', 54.00, '', 1, '2021-04-15 01:09:49', 0, NULL, 0, NULL, 1),
(5364, 4402, '3', 'Anna university', '', 'B.E_ECE', '2014', 69.00, '', 1, '2021-04-15 01:28:12', 0, NULL, 0, NULL, 1),
(5365, 4415, '2', 'state board', '', '', '2012', 51.00, '', 1, '2021-04-15 01:34:23', 0, NULL, 0, NULL, 1),
(5366, 4415, '3', 'madras', '', 'bba', '2018', 53.00, '', 1, '2021-04-15 01:34:51', 0, NULL, 0, NULL, 1),
(5367, 4416, '3', 'Madras', '', 'Bcom Information system and management ', '2016', 76.00, '', 1, '2021-04-15 01:50:35', 0, NULL, 0, NULL, 1),
(5368, 4417, '3', 'New college autonomous', '', 'Bsc computer science', '2018', 67.00, '', 1, '2021-04-15 02:00:46', 0, NULL, 0, NULL, 1),
(5369, 4418, '3', 'Anna university', '', 'Aeronautical engineering', '2008', 71.00, '', 1, '2021-04-15 02:44:43', 0, NULL, 0, NULL, 1),
(5370, 4420, '3', 'Anna university', '', 'B. E', '2021', 7.00, '', 1, '2021-04-15 02:47:53', 0, NULL, 0, NULL, 1),
(5371, 4419, '3', 'Anna University', '', 'B.E', '2021', 7.26, '', 1, '2021-04-15 02:47:56', 0, NULL, 0, NULL, 1),
(5372, 4421, '3', 'Loyola college', '', 'BA', '2012', 70.00, '', 1, '2021-04-15 03:18:58', 0, NULL, 0, NULL, 1),
(5373, 4423, '3', 'University of Madras', '', 'B.sc Mathematics', '2019', 59.00, '', 1, '2021-04-15 05:04:55', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5374, 4425, '2', 'State board', '', '', '2007', 61.00, '', 1, '2021-04-15 05:13:53', 0, NULL, 0, NULL, 1),
(5375, 4425, '3', 'Anna university ', '', 'B.Tech', '2011', 61.00, '', 1, '2021-04-15 05:14:26', 0, NULL, 0, NULL, 1),
(5376, 4422, '3', 'University of Madras', '', 'B.com', '2017', 55.00, '', 1, '2021-04-15 05:15:40', 0, NULL, 0, NULL, 1),
(5377, 4424, '4', 'Madurai kamaraj universe City', '', 'MCA', '2020', 82.00, '', 1, '2021-04-15 05:21:30', 0, NULL, 0, NULL, 1),
(5378, 4426, '3', 'Anna university', '', 'BE. MECHANICAL ENGINEERING', '2019', 57.00, '', 1, '2021-04-16 10:26:43', 0, NULL, 0, NULL, 1),
(5379, 4429, '3', 'Anna university', '', 'BE', '2013', 75.10, '', 1, '2021-04-16 11:08:13', 0, NULL, 0, NULL, 1),
(5380, 4430, '4', 'Madras University', '', 'MBA', '2012', 70.00, '', 1, '2021-04-16 11:20:16', 0, NULL, 0, NULL, 1),
(5381, 4427, '3', 'Madras university', '', 'B.A Tamil', '2015', 70.00, '', 1, '2021-04-16 11:21:27', 0, NULL, 0, NULL, 1),
(5382, 4428, '3', 'Madras university', '', 'B. Sc compter science', '2016', 75.00, '', 1, '2021-04-16 11:21:32', 0, NULL, 0, NULL, 1),
(5383, 4431, '4', 'Mumbai university', '', 'M.com', '1986', 48.00, '', 1, '2021-04-16 11:35:11', 0, NULL, 0, NULL, 1),
(5384, 4431, '4', 'Mumbai university', '', 'M.com', '1986', 48.00, '', 1, '2021-04-16 11:35:51', 0, NULL, 0, NULL, 1),
(5385, 4431, '4', 'Mumbai university', '', 'M.com', '1986', 48.00, '', 1, '2021-04-16 11:35:51', 0, NULL, 0, NULL, 1),
(5386, 4431, '4', 'Mumbai', '', 'B.com', '1990', 48.00, '', 1, '2021-04-16 11:37:22', 0, NULL, 0, NULL, 1),
(5387, 4432, '3', 'Kamarajar university Madurai ', '', 'B B A', '2001', 49.00, '', 1, '2021-04-16 11:49:26', 0, NULL, 0, NULL, 1),
(5388, 4434, '3', 'Madras University', '', 'BA', '2017', 65.00, '', 1, '2021-04-16 12:00:46', 0, NULL, 0, NULL, 1),
(5389, 4433, '2', 'Board', '', '', '2018', 55.00, '', 1, '2021-04-16 12:11:56', 0, NULL, 0, NULL, 1),
(5390, 4436, '3', 'St. Peters university ', '', 'B. Sc (computer science) ', '2019', 89.00, '', 1, '2021-04-16 01:02:12', 0, NULL, 0, NULL, 1),
(5391, 4437, '3', 'Anna university', '', 'BE', '2020', 68.00, '', 1, '2021-04-16 01:21:54', 0, NULL, 0, NULL, 1),
(5392, 4438, '3', 'anna university', '', 'b.e', '2017', 7.80, '', 1, '2021-04-16 02:07:46', 0, NULL, 0, NULL, 1),
(5393, 4438, '2', 'state board', '', '', '2013', 84.50, '', 1, '2021-04-16 02:08:12', 0, NULL, 0, NULL, 1),
(5394, 4438, '1', 'state board', '', '', '2011', 84.50, '', 1, '2021-04-16 02:08:48', 0, NULL, 0, NULL, 1),
(5395, 4439, '4', 'university', '', 'm.a', '2020', 76.00, '', 1, '2021-04-16 02:29:09', 0, NULL, 0, NULL, 1),
(5396, 4440, '3', 'thangavelu engineering college', '', 'b.e', '2018', 63.00, '', 1, '2021-04-16 11:49:00', 0, NULL, 0, NULL, 1),
(5397, 4440, '2', 'state board', '', '', '2014', 58.30, '', 1, '2021-04-16 11:49:39', 0, NULL, 0, NULL, 1),
(5398, 4440, '1', 'state board', '', '', '2012', 75.20, '', 1, '2021-04-16 11:50:10', 0, NULL, 0, NULL, 1),
(5399, 4445, '3', 'Madras University', '', 'BBA', '2015', 82.00, '', 1, '2021-04-17 11:06:05', 0, NULL, 0, NULL, 1),
(5400, 4446, '3', 'University of Madras', '', 'Bsc zoology', '1991', 58.00, '', 1, '2021-04-17 11:16:23', 0, NULL, 0, NULL, 1),
(5401, 4447, '3', 'Anna University ', '', 'B.E', '2018', 62.00, '', 1, '2021-04-17 11:32:26', 0, NULL, 0, NULL, 1),
(5402, 4447, '2', 'State board ', '', '', '2014', 61.00, '', 1, '2021-04-17 11:34:57', 0, NULL, 0, NULL, 1),
(5403, 4447, '1', 'Matriculation ', '', '', '2012', 71.00, '', 1, '2021-04-17 11:35:30', 0, NULL, 0, NULL, 1),
(5404, 4449, '3', 'Anna university', '', 'B. E (cse) ', '2017', 6.80, '', 1, '2021-04-17 11:38:10', 0, NULL, 0, NULL, 1),
(5405, 4448, '3', 'Madras University', '', 'BA English', '2019', 58.00, '', 1, '2021-04-17 11:47:13', 0, NULL, 0, NULL, 1),
(5406, 4450, '3', 'Madras University', '', 'B.sc ( software Application )', '2017', 58.00, '', 1, '2021-04-17 12:31:56', 0, NULL, 0, NULL, 1),
(5407, 4451, '3', 'Madras university ', '', 'Bcom ism', '2019', 65.00, '', 1, '2021-04-17 12:51:25', 0, NULL, 0, NULL, 1),
(5408, 4453, '3', 'Sri Krishna Institute of  engineering  college ', '', 'BE civil', '2017', 64.45, '', 1, '2021-04-17 02:03:38', 0, NULL, 0, NULL, 1),
(5409, 4454, '3', 'Madras university', '', 'BCS', '2005', 52.00, '', 1, '2021-04-17 02:49:52', 0, NULL, 0, NULL, 1),
(5410, 4455, '3', 'Anna university', '', 'BE', '2018', 7.20, '', 1, '2021-04-17 04:00:58', 0, NULL, 0, NULL, 1),
(5411, 4455, '1', 'State board', '', '', '2011', 80.00, '', 1, '2021-04-17 04:02:31', 0, NULL, 0, NULL, 1),
(5412, 4455, '2', 'State board', '', '', '2014', 80.00, '', 1, '2021-04-17 04:03:25', 0, NULL, 0, NULL, 1),
(5413, 4458, '3', 'Vels University', '', 'BBA', '2018', 64.00, '', 1, '2021-04-18 03:44:06', 0, NULL, 0, NULL, 1),
(5414, 4458, '2', 'Tamil Nadu State Board', '', '', '2015', 64.00, '', 1, '2021-04-18 03:45:18', 0, NULL, 0, NULL, 1),
(5415, 4458, '1', 'Tamil Nadu State Board', '', '', '2013', 91.60, '', 1, '2021-04-18 03:45:55', 0, NULL, 0, NULL, 1),
(5416, 4459, '3', 'University of  Madras', '', 'B.com(ISM)', '2018', 65.00, '', 1, '2021-04-18 06:25:53', 0, NULL, 0, NULL, 1),
(5417, 4463, '2', 'state board', '', '', '2018', 66.00, '', 1, '2021-04-19 09:56:32', 0, NULL, 0, NULL, 1),
(5418, 4463, '1', 'state board', '', '', '2016', 71.00, '', 1, '2021-04-19 09:56:55', 0, NULL, 0, NULL, 1),
(5419, 4465, '4', 'Sri Venkateshwara University, Tirupati', '', 'B.Sc', '2020', 78.00, '', 1, '2021-04-19 11:00:05', 0, NULL, 0, NULL, 1),
(5420, 4466, '4', 'Measi Institute of information technology', '', 'MCA', '2020', 65.30, '', 1, '2021-04-19 11:15:46', 0, NULL, 0, NULL, 1),
(5421, 4467, '3', 'Dr.ambethkar arts college', '', 'B.SC statistics', '2019', 63.00, '', 1, '2021-04-19 11:45:01', 0, NULL, 0, NULL, 1),
(5422, 4468, '4', 'Excel College of Architecture and Planning, Namakkal', '', 'M.Arch', '2018', 64.00, '', 1, '2021-04-19 11:47:32', 0, NULL, 0, NULL, 1),
(5423, 4471, '4', 'Madras University', '', 'Msc', '2013', 77.00, '', 1, '2021-04-19 11:51:49', 1, '2021-04-19 11:52:51', 0, NULL, 0),
(5424, 4471, '4', 'Madras University', '', 'Msc c s', '2013', 77.00, '', 1, '2021-04-19 11:52:44', 0, NULL, 0, NULL, 1),
(5425, 4471, '3', 'Madras University', '', 'Bsc C.S', '2011', 75.00, '', 1, '2021-04-19 11:53:44', 0, NULL, 0, NULL, 1),
(5426, 4471, '2', 'Matriculation', '', '', '2008', 77.00, '', 1, '2021-04-19 11:54:26', 0, NULL, 0, NULL, 1),
(5427, 4471, '1', 'Matriculation', '', '', '2006', 81.00, '', 1, '2021-04-19 11:55:41', 0, NULL, 0, NULL, 1),
(5428, 4470, '4', 'Madras University', '', 'M.sc Physics', '2021', 86.00, '', 1, '2021-04-19 11:57:18', 0, NULL, 0, NULL, 1),
(5429, 4472, '3', 'Madras University', '', 'BA', '2020', 72.00, '', 1, '2021-04-19 12:03:32', 0, NULL, 0, NULL, 1),
(5430, 4473, '1', 'Diploma in animation', '', '', '2010', 76.00, '', 1, '2021-04-19 12:23:42', 0, NULL, 0, NULL, 1),
(5431, 4474, '5', 'Anna university', '', 'DECE', '2018', 65.00, '', 1, '2021-04-19 12:25:53', 0, NULL, 0, NULL, 1),
(5432, 4476, '3', 'Madras university', '', 'B.com', '2018', 70.00, '', 1, '2021-04-19 12:34:28', 0, NULL, 0, NULL, 1),
(5433, 4478, '3', 'Anna university', '', 'EEE', '2017', 5.67, '', 1, '2021-04-19 12:48:32', 0, NULL, 0, NULL, 1),
(5434, 4479, '2', 'state board', '', '', '2013', 66.00, '', 1, '2021-04-19 01:03:19', 0, NULL, 0, NULL, 1),
(5435, 4479, '5', 'sri ram', '', 'diploma', '2017', 65.00, '', 1, '2021-04-19 01:03:45', 0, NULL, 0, NULL, 1),
(5436, 4475, '3', 'ANNA UNIVERSITY', '', 'MBA (HRM)', '2018', 52.00, '', 1, '2021-04-19 01:06:30', 0, NULL, 0, NULL, 1),
(5437, 4481, '2', 'state board', '', '', '2016', 65.00, '', 1, '2021-04-19 01:07:25', 0, NULL, 0, NULL, 1),
(5438, 4481, '3', 'madras', '', 'bss', '2018', 70.00, '', 1, '2021-04-19 01:07:54', 0, NULL, 0, NULL, 1),
(5439, 4482, '3', 'Madras University', '', 'BSc ', '2019', 65.00, '', 1, '2021-04-19 01:42:23', 0, NULL, 0, NULL, 1),
(5440, 4485, '3', 'Madras University', '', 'Bsc', '2019', 70.00, '', 1, '2021-04-19 02:47:31', 0, NULL, 0, NULL, 1),
(5441, 4484, '3', 'University', '', 'Bsc computer science', '2017', 70.00, '', 1, '2021-04-19 02:48:37', 0, NULL, 0, NULL, 1),
(5442, 4475, '4', 'Anna University', '', 'MBA (HRM)', '2018', 62.00, '', 1, '2021-04-19 03:00:06', 0, NULL, 0, NULL, 1),
(5443, 4480, '3', 'Vels University', '', 'B.sc Visual communication', '2021', 60.00, '', 1, '2021-04-19 04:20:43', 0, NULL, 0, NULL, 1),
(5444, 4490, '4', 'RL institute of management studies', '', 'MBA', '2019', 70.00, '', 1, '2021-04-20 09:55:26', 0, NULL, 0, NULL, 1),
(5445, 4492, '2', 'state board', '', '', '2018', 71.00, '', 1, '2021-04-20 10:02:58', 0, NULL, 0, NULL, 1),
(5446, 4492, '3', 'madras university', '', 'bsc', '2021', 79.00, '', 1, '2021-04-20 10:03:23', 0, NULL, 0, NULL, 1),
(5447, 4493, '2', 'state board', '', '', '2018', 67.00, '', 1, '2021-04-20 10:08:10', 0, NULL, 0, NULL, 1),
(5448, 4493, '3', 'madras university', '', 'bcom', '2021', 76.00, '', 1, '2021-04-20 10:08:37', 0, NULL, 0, NULL, 1),
(5449, 4491, '4', 'vel tech', '', 'mba', '2019', 65.00, '', 1, '2021-04-20 10:13:34', 0, NULL, 0, NULL, 1),
(5450, 4491, '3', 'the new college', '', 'B.Com Bank Management', '2017', 60.00, '', 1, '2021-04-20 10:14:59', 0, NULL, 0, NULL, 1),
(5451, 4491, '2', 'govt hr sec school velachery', '', '', '2014', 68.00, '', 1, '2021-04-20 10:15:49', 0, NULL, 0, NULL, 1),
(5452, 4494, '3', 'Manommaniam sundaranar university', '', 'Computer science', '2016', 60.60, '', 1, '2021-04-20 10:59:57', 0, NULL, 0, NULL, 1),
(5453, 4495, '3', 'bharathidasan university', '', 'bsc', '2018', 70.00, '', 1, '2021-04-20 11:01:51', 0, NULL, 0, NULL, 1),
(5454, 4497, '3', 'Madras Christian College ', '', 'B. B. A', '2018', 52.00, '', 1, '2021-04-20 11:06:37', 0, NULL, 0, NULL, 1),
(5455, 4497, '2', 'Matriculation ', '', '', '2015', 63.00, '', 1, '2021-04-20 11:07:16', 0, NULL, 0, NULL, 1),
(5456, 4497, '1', 'State board ', '', '', '2013', 76.00, '', 1, '2021-04-20 11:07:41', 0, NULL, 0, NULL, 1),
(5457, 4496, '3', 'Madras university ', '', 'B.com(CS)', '2019', 68.00, '', 1, '2021-04-20 11:13:08', 0, NULL, 0, NULL, 1),
(5458, 4499, '2', 'Government school', '', '', '2015', 60.00, '', 1, '2021-04-20 11:26:19', 0, NULL, 0, NULL, 1),
(5459, 4501, '3', 'Madras University', '', 'BCA', '2021', 68.00, '', 1, '2021-04-20 11:30:58', 0, NULL, 0, NULL, 1),
(5460, 4502, '3', 'Madras university', '', 'Bca', '2019', 70.00, '', 1, '2021-04-20 11:31:19', 0, NULL, 0, NULL, 1),
(5461, 468, '3', 'University', '', 'B.E Mechanical engineering', '2017', 65.00, '', 1, '2021-04-20 11:35:40', 0, NULL, 0, NULL, 1),
(5462, 4503, '3', 'Srm university', '', 'Bca', '2019', 59.00, '', 1, '2021-04-20 12:02:05', 0, NULL, 0, NULL, 1),
(5463, 4506, '3', 'Dhanalakshmi Srinivasan college of engineering and technology', '', 'B.E /cse', '2020', 65.00, '', 1, '2021-04-20 12:07:19', 0, NULL, 0, NULL, 1),
(5464, 4507, '4', 'Madras University', '', 'M.phil', '2018', 81.00, '', 1, '2021-04-20 12:13:10', 1, '2021-04-20 12:14:03', 0, NULL, 0),
(5465, 4507, '4', 'Madras University', '', 'M.com', '2018', 74.00, '', 1, '2021-04-20 12:13:53', 0, NULL, 0, NULL, 1),
(5466, 4505, '3', 'Board', '', 'B.Com', '2017', 60.00, '', 1, '2021-04-20 12:18:47', 0, NULL, 0, NULL, 1),
(5467, 4504, '1', 'state board', '', '', '1998', 71.00, '', 1, '2021-04-20 12:30:59', 0, NULL, 0, NULL, 1),
(5468, 4504, '3', 'anna university', '', 'b.tech', '2005', 68.00, '', 1, '2021-04-20 12:31:55', 0, NULL, 0, NULL, 1),
(5469, 4511, '3', 'Anna University', '', 'B.e civil engineering', '2017', 7.46, '', 1, '2021-04-20 12:54:24', 0, NULL, 0, NULL, 1),
(5470, 4510, '3', 'Madras University ', '', 'B. A', '2012', 58.00, '', 1, '2021-04-20 01:03:39', 0, NULL, 0, NULL, 1),
(5471, 4513, '3', 'Stella Maris Chennai ', '', 'BA English literature ', '2017', 60.00, '', 1, '2021-04-20 03:20:53', 0, NULL, 0, NULL, 1),
(5472, 4509, '3', 'Madras University', '', 'B.sc computer science', '2010', 58.00, '', 1, '2021-04-20 05:03:50', 0, NULL, 0, NULL, 1),
(5473, 4515, '1', 'cbse', '', '', '2014', 7.80, '', 1, '2021-04-20 05:53:38', 0, NULL, 0, NULL, 1),
(5474, 4515, '2', 'state board', '', '', '2016', 85.00, '', 1, '2021-04-20 05:54:19', 0, NULL, 0, NULL, 1),
(5475, 4515, '3', 'madras university', '', 'b.com corporate secretaryship', '2019', 69.00, '', 1, '2021-04-20 05:55:14', 0, NULL, 0, NULL, 1),
(5476, 4515, '4', 'madras university', '', 'mba', '2021', 73.00, '', 1, '2021-04-20 05:55:46', 0, NULL, 0, NULL, 1),
(5477, 4518, '3', 'MGR UNIVERSITY ', '', 'B. Com', '2018', 70.00, '', 1, '2021-04-20 06:13:30', 0, NULL, 0, NULL, 1),
(5478, 4521, '5', 'Aalim Mohammed saleh', '', 'DIPLOMA', '2018', 60.00, '', 1, '2021-04-21 11:04:14', 0, NULL, 0, NULL, 1),
(5479, 4523, '3', 'Anna university', '', 'B.Tech-IT', '2019', 6.50, '', 1, '2021-04-21 11:54:34', 0, NULL, 0, NULL, 1),
(5480, 4524, '3', 'Anna University', '', 'B.E CIVIL ENGINEERING', '2017', 63.00, '', 1, '2021-04-21 12:29:28', 0, NULL, 0, NULL, 1),
(5481, 4525, '3', 'Anna university', '', 'BE', '2019', 7.50, '', 1, '2021-04-21 12:54:58', 0, NULL, 0, NULL, 1),
(5482, 4528, '3', 'Dg vaishnev clg ', '', 'Bca computer application', '2017', 68.80, '', 1, '2021-04-21 01:21:34', 0, NULL, 0, NULL, 1),
(5483, 4528, '4', 'Madras univercity', '', 'Mba hr', '2020', 60.00, '', 1, '2021-04-21 01:22:21', 0, NULL, 0, NULL, 1),
(5484, 4527, '3', 'Anna university', '', 'BE mechanical engineering', '2017', 60.00, '', 1, '2021-04-21 01:24:47', 0, NULL, 0, NULL, 1),
(5485, 4530, '1', 'State  Board (TN)', '', '', '2015', 94.60, '', 1, '2021-04-21 02:36:23', 1, '2021-04-21 02:43:27', 0, NULL, 1),
(5486, 4530, '2', 'State  Board (TN)', '', '', '2017', 91.25, '', 1, '2021-04-21 02:36:58', 1, '2021-04-21 02:42:57', 0, NULL, 1),
(5487, 4530, '3', 'The New college (Affiliated University Of Madras)', '', 'B.sc Computer science ', '2021', 82.00, '', 1, '2021-04-21 02:39:00', 1, '2021-04-21 02:45:10', 0, NULL, 1),
(5488, 4532, '3', 'Madras ', '', 'B.sc mathematics', '2020', 66.00, '', 1, '2021-04-21 02:57:40', 0, NULL, 0, NULL, 1),
(5489, 4536, '3', 'Madras University', '', 'Bsc maths', '2021', 60.00, '', 1, '2021-04-21 03:59:10', 0, NULL, 0, NULL, 1),
(5490, 4534, '3', 'Madras university', '', 'B. Sc mathematics', '2020', 69.00, '', 1, '2021-04-21 04:02:49', 0, NULL, 0, NULL, 1),
(5491, 4537, '3', 'Madras University', '', 'B.sc computer science', '2020', 70.00, '', 1, '2021-04-21 04:06:22', 0, NULL, 0, NULL, 1),
(5492, 4538, '3', 'Madras university ', '', 'Bsc computer science ', '2021', 88.00, '', 1, '2021-04-21 04:10:24', 0, NULL, 0, NULL, 1),
(5493, 4538, '2', 'State board ', '', '', '2018', 65.00, '', 1, '2021-04-21 04:11:03', 0, NULL, 0, NULL, 1),
(5494, 4538, '1', 'State board ', '', '', '2016', 84.00, '', 1, '2021-04-21 04:11:27', 0, NULL, 0, NULL, 1),
(5495, 4540, '2', 'MEC pU college', '', '', '2008', 60.00, '', 1, '2021-04-21 04:16:59', 0, NULL, 0, NULL, 1),
(5496, 4539, '3', 'University', '', 'B.sc botany', '2020', 68.79, '', 1, '2021-04-21 04:18:32', 0, NULL, 0, NULL, 1),
(5497, 4541, '3', 'University', '', 'Bsc computer science', '2021', 70.00, '', 1, '2021-04-21 04:27:38', 0, NULL, 0, NULL, 1),
(5498, 4541, '2', 'Board', '', '', '2018', 70.80, '', 1, '2021-04-21 04:28:57', 0, NULL, 0, NULL, 1),
(5499, 4541, '1', 'Board', '', '', '2016', 88.20, '', 1, '2021-04-21 04:29:37', 0, NULL, 0, NULL, 1),
(5500, 4543, '3', 'Anna University', '', 'BE compute Science', '2017', 6.00, '', 1, '2021-04-21 05:23:52', 0, NULL, 0, NULL, 1),
(5501, 4546, '3', 'Anna university', '', 'BE mechanical engineering', '2017', 60.00, '', 1, '2021-04-22 08:29:46', 0, NULL, 0, NULL, 1),
(5502, 4549, '2', 'state board', '', '', '2018', 71.00, '', 1, '2021-04-22 08:58:37', 0, NULL, 0, NULL, 1),
(5503, 4549, '3', 'madras university', '', 'bca', '2021', 81.00, '', 1, '2021-04-22 08:59:00', 0, NULL, 0, NULL, 1),
(5504, 4547, '3', 'Anna university', '', 'BE mechanical engineering', '2017', 60.00, '', 1, '2021-04-22 10:41:17', 0, NULL, 0, NULL, 1),
(5505, 4550, '3', 'Madras University', '', 'Bcom', '2017', 50.00, '', 1, '2021-04-22 11:03:10', 0, NULL, 0, NULL, 1),
(5506, 4551, '3', 'Madras university', '', 'B.com', '2020', 70.00, '', 1, '2021-04-22 11:03:16', 0, NULL, 0, NULL, 1),
(5507, 4552, '3', 'state board', '', 'BA ECONOMICS', '2013', 60.00, '', 1, '2021-04-22 11:28:38', 0, NULL, 0, NULL, 1),
(5508, 4529, '5', 'Anna university', '', 'DME', '2018', 75.00, '', 1, '2021-04-22 11:36:41', 0, NULL, 0, NULL, 1),
(5509, 4554, '3', 'Anna University', '', 'B.E', '2014', 60.50, '', 1, '2021-04-22 11:39:19', 0, NULL, 0, NULL, 1),
(5510, 4554, '4', 'Dr.G.U.Pope College of Engineering', '', 'Bachelor of Engineering', '2014', 60.50, '', 1, '2021-04-22 11:41:12', 0, NULL, 0, NULL, 1),
(5511, 4553, '3', 'SRM University', '', 'Bcom', '2021', 80.00, '', 1, '2021-04-22 11:45:21', 0, NULL, 0, NULL, 1),
(5512, 4553, '2', 'JGN school', '', '', '2018', 86.00, '', 1, '2021-04-22 11:46:04', 0, NULL, 0, NULL, 1),
(5513, 4553, '1', 'JGN school', '', '', '2016', 92.00, '', 1, '2021-04-22 11:46:21', 0, NULL, 0, NULL, 1),
(5514, 4555, '3', 'Anna University', '', 'BE CSE', '2017', 78.00, '', 1, '2021-04-22 11:59:03', 0, NULL, 0, NULL, 1),
(5515, 4556, '3', 'Madras University', '', 'B.com', '2021', 81.00, '', 1, '2021-04-22 12:20:16', 0, NULL, 0, NULL, 1),
(5516, 4558, '3', 'University of madras ', '', 'BbBA', '2018', 60.00, '', 1, '2021-04-22 12:52:31', 0, NULL, 0, NULL, 1),
(5517, 4561, '3', 'SRM arts and science college', '', 'Bsc Computer science', '2021', 72.40, '', 1, '2021-04-22 01:23:31', 0, NULL, 0, NULL, 1),
(5518, 4559, '3', 'Madras University', '', 'B.com', '2021', 68.60, '', 1, '2021-04-22 01:24:40', 0, NULL, 0, NULL, 1),
(5519, 4562, '3', 'Madras university', '', 'B.Sc computer science', '2021', 73.00, '', 1, '2021-04-22 01:43:53', 1, '2021-04-22 01:44:34', 0, NULL, 0),
(5520, 4562, '1', 'State board', '', '', '2016', 88.00, '', 1, '2021-04-22 01:45:16', 0, NULL, 0, NULL, 1),
(5521, 4562, '2', 'State board', '', '', '2018', 62.00, '', 1, '2021-04-22 01:46:02', 1, '2021-04-22 01:47:35', 0, NULL, 0),
(5522, 4562, '3', 'Madras university', '', 'B.Sc computer science', '2021', 73.00, '', 1, '2021-04-22 01:47:13', 0, NULL, 0, NULL, 1),
(5523, 4562, '2', 'State board', '', '', '2018', 62.00, '', 1, '2021-04-22 01:47:56', 0, NULL, 0, NULL, 1),
(5524, 4564, '3', 'University', '', 'Bsc', '2018', 73.00, '', 1, '2021-04-22 02:35:15', 0, NULL, 0, NULL, 1),
(5525, 4569, '3', 'Madras university ', '', 'Bsc computer science ', '2021', 70.00, '', 1, '2021-04-22 02:53:56', 0, NULL, 0, NULL, 1),
(5526, 4487, '4', 'Anna university ', '', 'Master of Engineering ', '2018', 7.67, '', 1, '2021-04-22 02:55:42', 0, NULL, 0, NULL, 1),
(5527, 4567, '4', 'Ms university', '', 'MA English', '2018', 83.00, '', 1, '2021-04-22 03:05:15', 0, NULL, 0, NULL, 1),
(5528, 4568, '3', 'Anna University', '', 'Bachelor of engineering', '2019', 68.00, '', 1, '2021-04-22 03:07:57', 0, NULL, 0, NULL, 1),
(5529, 4568, '2', 'State board', '', '', '2015', 72.00, '', 1, '2021-04-22 03:08:36', 0, NULL, 0, NULL, 1),
(5530, 4565, '3', 'Anna university', '', 'B E', '2021', 70.00, '', 1, '2021-04-22 03:13:29', 0, NULL, 0, NULL, 1),
(5531, 4566, '2', 'State board', '', '', '2013', 63.00, '', 1, '2021-04-22 03:22:33', 0, NULL, 0, NULL, 1),
(5532, 4560, '3', 'Madras university', '', 'Bsc(computer science) ', '2021', 70.00, '', 1, '2021-04-22 03:25:29', 0, NULL, 0, NULL, 1),
(5533, 4520, '3', 'Madras University', '', 'Bcom corporate Secretaryship', '2016', 60.00, '', 1, '2021-04-22 04:44:12', 0, NULL, 0, NULL, 1),
(5534, 4563, '3', 'Madras University', '', 'Bsc', '2021', 75.00, '', 1, '2021-04-22 04:46:26', 0, NULL, 0, NULL, 1),
(5535, 4571, '3', 'SRM ARTS AND SCIENCE COLLEGE', '', 'B.Sc computer science', '2021', 80.00, '', 1, '2021-04-22 04:48:47', 0, NULL, 0, NULL, 1),
(5536, 4573, '3', 'Madras university', '', 'B.Sc Computer Science', '2021', 77.00, '', 1, '2021-04-22 07:12:07', 0, NULL, 0, NULL, 1),
(5537, 4574, '3', 'AMET University', '', 'BBA', '2021', 7.40, '', 1, '2021-04-22 07:25:51', 0, NULL, 0, NULL, 1),
(5538, 4574, '1', 'State Board', '', '', '2016', 92.00, '', 1, '2021-04-22 07:26:52', 1, '2021-04-22 07:27:33', 0, NULL, 1),
(5539, 4574, '2', 'State board', '', '', '2018', 79.00, '', 1, '2021-04-22 07:27:53', 0, NULL, 0, NULL, 1),
(5540, 4516, '3', 'womens christian college', '', 'bachelors in business administration', '2019', 65.00, '', 1, '2021-04-22 08:02:27', 0, NULL, 0, NULL, 1),
(5541, 4575, '3', 'Madras University', '', 'BBA', '2021', 68.00, '', 1, '2021-04-22 08:05:13', 0, NULL, 0, NULL, 1),
(5542, 4578, '3', 'madras univer ', '', 'bcom', '2021', 75.00, '', 1, '2021-04-23 11:23:46', 0, NULL, 0, NULL, 1),
(5543, 4579, '4', 'Anna university', '', 'B.E', '2020', 68.00, '', 1, '2021-04-23 11:26:35', 0, NULL, 0, NULL, 1),
(5544, 4572, '2', 'State board', '', '', '2016', 73.00, '', 1, '2021-04-23 11:49:34', 0, NULL, 0, NULL, 1),
(5545, 4582, '3', 'University', '', 'BBA', '2021', 75.00, '', 1, '2021-04-23 11:55:08', 0, NULL, 0, NULL, 1),
(5546, 4580, '3', 'Anna university', '', 'B.e', '2020', 79.50, '', 1, '2021-04-23 12:02:28', 0, NULL, 0, NULL, 1),
(5547, 4581, '3', 'University', '', 'BBA', '2021', 74.00, '', 1, '2021-04-23 12:07:13', 0, NULL, 0, NULL, 1),
(5548, 4583, '3', 'Madras university', '', 'B.sc (ecs)', '2015', 70.00, '', 1, '2021-04-23 01:11:17', 0, NULL, 0, NULL, 1),
(5549, 4584, '4', 'Annamalai University of', '', 'MA.Englishh', '2021', 60.00, '', 1, '2021-04-23 01:38:22', 0, NULL, 0, NULL, 1),
(5550, 4584, '4', 'Annamalai University ', '', 'MA English', '2021', 60.00, '', 1, '2021-04-23 01:39:21', 0, NULL, 0, NULL, 1),
(5551, 4585, '3', 'Thiruvalluvar university', '', 'B.com', '2015', 66.00, '', 1, '2021-04-23 01:55:32', 0, NULL, 0, NULL, 1),
(5552, 4585, '4', 'Madras university', '', 'MBA Finance', '2015', 70.00, '', 1, '2021-04-23 01:56:20', 0, NULL, 0, NULL, 1),
(5553, 4586, '4', 'The New College', '', 'M.com', '2017', 73.00, '', 1, '2021-04-23 02:15:19', 0, NULL, 0, NULL, 1),
(5554, 4587, '3', 'Tagore Engineering College', '', 'BE/EEE', '2017', 59.00, '', 1, '2021-04-23 04:42:42', 0, NULL, 0, NULL, 1),
(5555, 4587, '2', 'State Board', '', '', '2013', 69.00, '', 1, '2021-04-23 04:45:08', 0, NULL, 0, NULL, 1),
(5556, 4587, '1', 'Matriculation', '', '', '2011', 70.00, '', 1, '2021-04-23 04:45:48', 0, NULL, 0, NULL, 1),
(5557, 4589, '3', 'Anna university', '', 'B.E', '2020', 72.00, '', 1, '2021-04-24 05:50:09', 0, NULL, 0, NULL, 1),
(5558, 4589, '2', 'Tamilnadu board Of Higher education', '', '', '2016', 75.00, '', 1, '2021-04-24 05:51:17', 0, NULL, 0, NULL, 1),
(5559, 4589, '1', 'Tamilnadu board of secondary education', '', '', '2014', 89.00, '', 1, '2021-04-24 05:52:01', 0, NULL, 0, NULL, 1),
(5560, 4593, '5', 'Sri sai ram polytechnic college', '', 'D. E. C. E', '2017', 78.00, '', 1, '2021-04-24 10:59:08', 0, NULL, 0, NULL, 1),
(5561, 4588, '3', 'Madras University', '', 'B.com', '2019', 61.00, '', 1, '2021-04-24 10:59:11', 0, NULL, 0, NULL, 1),
(5562, 4588, '1', 'MCC hr sec school', '', '', '2014', 69.20, '', 1, '2021-04-24 10:59:57', 0, NULL, 0, NULL, 1),
(5563, 4588, '2', 'MCC hr sec school', '', '', '2016', 77.30, '', 1, '2021-04-24 11:00:31', 0, NULL, 0, NULL, 1),
(5564, 4593, '1', 'St John\'s matriculation higher secondary school', '', '', '2014', 80.00, '', 1, '2021-04-24 11:02:15', 0, NULL, 0, NULL, 1),
(5565, 4596, '3', 'Anna university', '', 'B.tech-IT', '2010', 76.00, '', 1, '2021-04-24 11:05:17', 0, NULL, 0, NULL, 1),
(5566, 4577, '3', 'Anna University', '', 'B.E', '2011', 71.00, '', 1, '2021-04-24 11:05:56', 0, NULL, 0, NULL, 1),
(5567, 4596, '1', 'State board', '', '', '2004', 90.00, '', 1, '2021-04-24 11:06:16', 0, NULL, 0, NULL, 1),
(5568, 4577, '5', 'DOTE', '', 'DECE', '2011', 90.00, '', 1, '2021-04-24 11:06:48', 0, NULL, 0, NULL, 1),
(5569, 4596, '2', 'State board', '', '', '2006', 76.00, '', 1, '2021-04-24 11:06:51', 0, NULL, 0, NULL, 1),
(5570, 4577, '1', 'State board', '', '', '2008', 83.00, '', 1, '2021-04-24 11:07:32', 0, NULL, 0, NULL, 1),
(5571, 4591, '3', ' Madras University', '', 'BA', '2020', 62.00, '', 1, '2021-04-24 11:09:03', 0, NULL, 0, NULL, 1),
(5572, 3880, '1', 'St.johns mat hr sec school', '', '', '2014', 80.00, '', 1, '2021-04-24 11:16:01', 0, NULL, 0, NULL, 1),
(5573, 3880, '2', 'St.johns mat hr sec school', '', '', '2016', 70.00, '', 1, '2021-04-24 11:16:45', 0, NULL, 0, NULL, 1),
(5574, 4597, '3', 'University of madras ', '', 'BCA', '2019', 60.00, '', 1, '2021-04-24 11:18:05', 0, NULL, 0, NULL, 1),
(5575, 3880, '3', 'Loyola institute', '', 'B.Tech IT', '2021', 70.00, '', 1, '2021-04-24 11:19:10', 1, '2021-04-24 11:19:45', 0, NULL, 1),
(5576, 4598, '1', 'Matriculation', '', '', '2016', 82.00, '', 1, '2021-04-24 11:22:43', 0, NULL, 0, NULL, 1),
(5577, 4598, '2', 'Matriculation', '', '', '2019', 78.00, '', 1, '2021-04-24 11:23:10', 0, NULL, 0, NULL, 1),
(5578, 4598, '3', 'MADRAS UNIVERSITY', '', 'B.Com', '2021', 80.00, '', 1, '2021-04-24 11:23:35', 0, NULL, 0, NULL, 1),
(5579, 4592, '3', 'Madras University', '', 'B.sc (Statistics)', '2019', 60.00, '', 1, '2021-04-24 11:28:24', 0, NULL, 0, NULL, 1),
(5580, 4592, '2', 'State Board', '', '', '2016', 80.00, '', 1, '2021-04-24 11:28:41', 0, NULL, 0, NULL, 1),
(5581, 4592, '1', 'State Board', '', '', '2014', 90.00, '', 1, '2021-04-24 11:28:59', 0, NULL, 0, NULL, 1),
(5582, 4599, '3', 'University', '', 'Bsc computer science', '2014', 75.00, '', 1, '2021-04-24 11:33:05', 0, NULL, 0, NULL, 1),
(5583, 4600, '3', 'presidency college', '', 'b a', '2016', 60.00, '', 1, '2021-04-24 12:03:36', 0, NULL, 0, NULL, 1),
(5584, 4601, '3', 'Dr MGR Janaki college of arts and science for women', '', 'Bsc Mathematics', '2020', 75.00, '', 1, '2021-04-24 12:12:04', 0, NULL, 0, NULL, 1),
(5585, 4602, '3', 'Anna university', '', 'BE', '2019', 65.00, '', 1, '2021-04-24 12:26:16', 0, NULL, 0, NULL, 1),
(5586, 4602, '2', 'MR mat hr sec school', '', '', '2015', 74.00, '', 1, '2021-04-24 12:26:55', 0, NULL, 0, NULL, 1),
(5587, 4602, '1', 'MR mat hr sec school', '', '', '2013', 89.00, '', 1, '2021-04-24 12:27:30', 0, NULL, 0, NULL, 1),
(5588, 4603, '3', 'SEM arts and science college ', '', 'BSC computer science', '2021', 80.00, '', 1, '2021-04-24 02:02:42', 0, NULL, 0, NULL, 1),
(5589, 4604, '3', 'University', '', 'B.com', '2021', 76.88, '', 1, '2021-04-24 02:10:31', 0, NULL, 0, NULL, 1),
(5590, 4604, '1', 'Board', '', '', '2018', 88.30, '', 1, '2021-04-24 02:11:11', 0, NULL, 0, NULL, 1),
(5591, 4604, '2', 'Board', '', '', '2018', 88.30, '', 1, '2021-04-24 02:11:57', 0, NULL, 0, NULL, 1),
(5592, 4545, '3', 'University of Madras', '', 'BSC computer science', '2021', 75.40, '', 1, '2021-04-24 03:09:21', 0, NULL, 0, NULL, 1),
(5593, 4605, '3', 'Madras university', '', 'B C A', '2021', 79.00, '', 1, '2021-04-24 03:46:47', 0, NULL, 0, NULL, 1),
(5594, 4606, '3', 'sri sairam engineering college', '', 'b e mechanical', '2020', 72.00, '', 1, '2021-04-25 11:49:23', 0, NULL, 0, NULL, 1),
(5595, 4606, '2', 'sunbeam mhss', '', '', '2016', 92.00, '', 1, '2021-04-25 11:50:20', 0, NULL, 0, NULL, 1),
(5596, 4606, '1', 'lfc mhss', '', '', '2014', 91.00, '', 1, '2021-04-25 11:50:43', 0, NULL, 0, NULL, 1),
(5597, 4609, '4', 'Bharatiyar university', '', 'MBA', '2019', 77.00, '', 1, '2021-04-26 10:36:03', 1, '2021-04-26 10:40:03', 0, NULL, 1),
(5598, 4609, '4', 'Bharatiyar university', '', 'Mba', '2017', 74.00, '', 1, '2021-04-26 10:38:21', 1, '2021-04-26 10:38:27', 0, NULL, 0),
(5599, 4609, '3', 'Bharatiyar university', '', 'B.com(CA)', '2016', 75.00, '', 1, '2021-04-26 10:39:45', 0, NULL, 0, NULL, 1),
(5600, 4609, '2', 'State board', '', '', '2013', 73.00, '', 1, '2021-04-26 10:40:36', 0, NULL, 0, NULL, 1),
(5601, 4609, '1', 'State board', '', '', '2011', 67.00, '', 1, '2021-04-26 10:40:55', 0, NULL, 0, NULL, 1),
(5602, 4610, '4', 'Kerala university ', '', 'Mba ', '2014', 68.00, '', 1, '2021-04-26 10:59:31', 0, NULL, 0, NULL, 1),
(5603, 4611, '5', 'Central polytechnic college', '', 'DEEE', '2019', 70.00, '', 1, '2021-04-26 11:37:23', 0, NULL, 0, NULL, 1),
(5604, 4612, '3', 'MADRAS UNIVERSITY', '', 'BCA', '2021', 81.00, '', 1, '2021-04-26 11:48:47', 0, NULL, 0, NULL, 1),
(5605, 4612, '2', 'State board', '', '', '2018', 92.40, '', 1, '2021-04-26 11:49:16', 0, NULL, 0, NULL, 1),
(5606, 4612, '1', 'State board', '', '', '2016', 90.00, '', 1, '2021-04-26 11:49:38', 0, NULL, 0, NULL, 1),
(5607, 4613, '3', 'Anna university', '', 'B.tech IT', '2019', 70.00, '', 1, '2021-04-26 12:37:17', 0, NULL, 0, NULL, 1),
(5608, 4614, '3', 'Anna university', '', 'B. Tech', '2021', 70.03, '', 1, '2021-04-26 01:58:10', 0, NULL, 0, NULL, 1),
(5609, 4614, '2', 'State Board', '', '', '2017', 73.50, '', 1, '2021-04-26 01:58:56', 1, '2021-04-26 01:59:32', 0, NULL, 1),
(5610, 4614, '1', 'State Board', '', '', '2015', 89.40, '', 1, '2021-04-26 01:59:55', 0, NULL, 0, NULL, 1),
(5611, 4615, '3', 'Thiruvallur university', '', 'B.com', '2021', 70.00, '', 1, '2021-04-26 02:41:54', 0, NULL, 0, NULL, 1),
(5612, 4616, '3', 'Anna university', '', 'B.Tech', '2021', 80.10, '', 1, '2021-04-26 03:26:19', 0, NULL, 0, NULL, 1),
(5613, 4619, '3', 'Anna university', '', 'B.E', '2014', 60.00, '', 1, '2021-04-27 08:42:48', 0, NULL, 0, NULL, 1),
(5614, 4620, '4', 'University of Madras', '', 'M.com', '2017', 68.00, '', 1, '2021-04-27 09:44:15', 0, NULL, 0, NULL, 1),
(5615, 4621, '2', 'state board', '', '', '2016', 42.00, '', 1, '2021-04-27 09:59:05', 0, NULL, 0, NULL, 1),
(5616, 4621, '3', 'madras university', '', 'bsc hotel management', '2020', 90.00, '', 1, '2021-04-27 09:59:50', 1, '2021-04-27 10:00:07', 0, NULL, 1),
(5617, 4622, '2', 'state board', '', '', '2017', 42.00, '', 1, '2021-04-27 10:03:11', 0, NULL, 0, NULL, 1),
(5618, 4622, '3', 'madras university', '', 'bsc hotel management', '2020', 90.00, '', 1, '2021-04-27 10:03:50', 0, NULL, 0, NULL, 1),
(5619, 4625, '2', 'P.s.higher secondary school', '', 'B.A.economic', '2015', 50.00, '', 1, '2021-04-27 11:32:10', 0, NULL, 0, NULL, 1),
(5620, 4624, '3', 'Anna university', '', 'B.E Civil engineering', '2019', 60.00, '', 1, '2021-04-27 11:38:31', 0, NULL, 0, NULL, 1),
(5621, 4624, '2', 'State Board', '', '', '2015', 82.00, '', 1, '2021-04-27 11:38:59', 0, NULL, 0, NULL, 1),
(5622, 4626, '3', 'Anna university', '', 'BE', '2010', 63.00, '', 1, '2021-04-27 12:27:44', 0, NULL, 0, NULL, 1),
(5623, 4628, '3', 'Madras university', '', 'BA.Economics', '2019', 60.00, '', 1, '2021-04-27 01:07:23', 0, NULL, 0, NULL, 1),
(5624, 4629, '3', 'Anna university', '', 'B. Tech it', '2017', 60.00, '', 1, '2021-04-27 02:15:25', 1, '2021-04-27 02:15:54', 0, NULL, 1),
(5625, 4631, '1', 'Carmel Higher Secondary school', '', '', '2010', 90.00, '', 1, '2021-04-27 02:17:32', 0, NULL, 0, NULL, 1),
(5626, 4631, '2', 'Alphonsa Matriculation Higher Secondary school', '', '', '2012', 72.00, '', 1, '2021-04-27 02:18:03', 0, NULL, 0, NULL, 1),
(5627, 4631, '3', 'Panimalar Institute of Technology', '', 'Bachelor of Engineering', '2016', 68.00, '', 1, '2021-04-27 02:18:47', 0, NULL, 0, NULL, 1),
(5628, 4631, '4', 'SRM University', '', 'Master of Business Administration', '2018', 65.00, '', 1, '2021-04-27 02:19:26', 0, NULL, 0, NULL, 1),
(5629, 4630, '2', 'Matriculation', '', '', '2015', 66.00, '', 1, '2021-04-27 02:22:15', 0, NULL, 0, NULL, 1),
(5630, 4632, '4', 'Anna University', '', 'Masters of Engineering', '2015', 75.20, '', 1, '2021-04-27 03:28:42', 0, NULL, 0, NULL, 1),
(5631, 4632, '3', 'Anna University', '', 'Bachelor of Engineering', '2013', 76.70, '', 1, '2021-04-27 03:29:21', 0, NULL, 0, NULL, 1),
(5632, 4633, '3', 'Madras University', '', 'B.com(cs)', '2019', 70.00, '', 1, '2021-04-27 04:43:24', 0, NULL, 0, NULL, 1),
(5633, 4635, '3', 'Ethiraj College for women', '', 'B.sc', '2016', 69.00, '', 1, '2021-04-27 05:26:34', 0, NULL, 0, NULL, 1),
(5634, 4635, '2', 'Chennai girls higher secondary school', '', '', '2012', 72.00, '', 1, '2021-04-27 05:27:58', 0, NULL, 0, NULL, 1),
(5635, 4635, '1', 'Chennai girls higher secondary school', '', '', '2011', 91.00, '', 1, '2021-04-27 05:28:37', 0, NULL, 0, NULL, 1),
(5636, 4634, '4', 'anna university', '', 'b.e', '2017', 70.00, '', 1, '2021-04-27 05:31:31', 0, NULL, 0, NULL, 1),
(5637, 4638, '2', 'state board', '', '', '2012', 83.00, '', 1, '2021-04-28 09:55:56', 0, NULL, 0, NULL, 1),
(5638, 4638, '3', 'anna university', '', 'be', '2016', 65.00, '', 1, '2021-04-28 09:56:18', 0, NULL, 0, NULL, 1),
(5639, 4639, '3', 'Madras University', '', 'BCA', '2004', 70.00, '', 1, '2021-04-28 10:09:57', 0, NULL, 0, NULL, 1),
(5640, 4642, '1', 'state board', '', '', '2012', 75.00, '', 1, '2021-04-28 11:04:56', 0, NULL, 0, NULL, 1),
(5641, 4642, '5', 'polytechnic', '', ' diploma ece', '2015', 94.00, '', 1, '2021-04-28 11:05:46', 0, NULL, 0, NULL, 1),
(5642, 4643, '3', 'Ramakrishna mission Vivekananda college', '', 'Bcom', '2018', 66.60, '', 1, '2021-04-28 11:06:45', 0, NULL, 0, NULL, 1),
(5643, 4641, '3', 'Thiruvaluvar university', '', 'Bca', '2017', 80.00, '', 1, '2021-04-28 11:10:25', 0, NULL, 0, NULL, 1),
(5644, 3566, '3', 'Thiruvallur y', '', 'BCA', '2019', 58.00, '', 1, '2021-04-28 11:12:20', 0, NULL, 0, NULL, 1),
(5645, 3566, '2', 'Tamilnadu Bord', '', '', '2016', 58.00, '', 1, '2021-04-28 11:12:42', 0, NULL, 0, NULL, 1),
(5646, 3566, '1', 'Tamilnadu Bord', '', '', '2014', 72.00, '', 1, '2021-04-28 11:13:00', 0, NULL, 0, NULL, 1),
(5647, 4644, '3', 'University of madras', '', 'Bsc( phy) ', '2018', 70.00, '', 1, '2021-04-28 11:15:07', 0, NULL, 0, NULL, 1),
(5648, 4645, '3', 'national college of engineering ', '', 'BE', '2018', 40.00, '', 1, '2021-04-28 11:43:27', 0, NULL, 0, NULL, 1),
(5649, 4647, '3', 'Madras university', '', 'B.A', '2021', 65.00, '', 1, '2021-04-28 12:00:32', 0, NULL, 0, NULL, 1),
(5650, 4648, '3', 'Madras university ', '', 'B.com (g)', '2021', 83.00, '', 1, '2021-04-28 12:21:58', 0, NULL, 0, NULL, 1),
(5651, 4649, '3', 'Anna University', '', 'Computer science and engineering', '2017', 70.00, '', 1, '2021-04-28 12:35:07', 0, NULL, 0, NULL, 1),
(5652, 4646, '3', 'Madras university', '', 'B.A', '2021', 70.00, '', 1, '2021-04-28 12:39:05', 0, NULL, 0, NULL, 1),
(5653, 4652, '3', 'Madras University', '', 'BCA', '2018', 70.00, '', 1, '2021-04-28 12:39:17', 0, NULL, 0, NULL, 1),
(5654, 4650, '4', 'ANNAMALAI UNIVERSITY', '', 'B A history', '2018', 60.00, '', 1, '2021-04-28 12:51:14', 0, NULL, 0, NULL, 1),
(5655, 4650, '3', 'ANNAMALAI UNIVERSITY', '', 'BA history', '2018', 60.00, '', 1, '2021-04-28 12:57:18', 0, NULL, 0, NULL, 1),
(5656, 4653, '2', 'Board', '', '', '2018', 65.00, '', 1, '2021-04-28 01:08:20', 0, NULL, 0, NULL, 1),
(5657, 4655, '5', 'Murugappa polytechnic College', '', 'Diplomo in computer engineering', '2019', 61.63, '', 1, '2021-04-28 01:26:38', 0, NULL, 0, NULL, 1),
(5658, 4655, '2', 'GANA VIDYALAYA MATRIC HIGH SEC SCHOOL', '', 'Diplomo in computer engineering', '2017', 74.00, '', 1, '2021-04-28 01:28:08', 1, '2021-04-28 01:30:11', 0, NULL, 0),
(5659, 4655, '1', 'Government High school', '', '', '2015', 81.00, '', 1, '2021-04-28 01:28:55', 1, '2021-04-28 01:30:17', 0, NULL, 0),
(5660, 4655, '2', 'Gana vidyalaya matric high sec school', '', '', '2017', 74.00, '', 1, '2021-04-28 01:30:47', 0, NULL, 0, NULL, 1),
(5661, 4655, '1', 'Government High school', '', '', '2015', 81.00, '', 1, '2021-04-28 01:31:15', 0, NULL, 0, NULL, 1),
(5662, 4654, '4', 'University of Madras', '', 'MBA. HR', '2018', 69.00, '', 1, '2021-04-28 01:45:35', 0, NULL, 0, NULL, 1),
(5663, 4657, '3', 'St Thomas college of arts and science', '', 'Bsc Viscom', '2019', 75.00, '', 1, '2021-04-28 03:15:47', 0, NULL, 0, NULL, 1),
(5664, 4658, '3', 'Madras University', '', 'B.com general', '2020', 68.00, '', 1, '2021-04-28 03:51:20', 0, NULL, 0, NULL, 1),
(5665, 4660, '1', 'stella marticulation school ', '', '', '2012', 77.00, '', 1, '2021-04-28 04:35:51', 0, NULL, 0, NULL, 1),
(5666, 4660, '2', 'sri krishnaswamy matriculation higher secondary school ', '', '', '2014', 58.50, '', 1, '2021-04-28 04:36:56', 0, NULL, 0, NULL, 1),
(5667, 4660, '3', 'patrician college of arts and science', '', 'bca', '2017', 70.00, '', 1, '2021-04-28 04:37:51', 0, NULL, 0, NULL, 1),
(5668, 4660, '4', 'dr.Mgr educational and research institute ', '', 'mca ', '2020', 67.00, '', 1, '2021-04-28 04:39:19', 0, NULL, 0, NULL, 1),
(5669, 4661, '3', 'Anna University ', '', 'B. E civil ', '2021', 6.50, '', 1, '2021-04-28 04:44:06', 0, NULL, 0, NULL, 1),
(5670, 4661, '1', 'state board', '', '', '2014', 93.00, '', 50, '2021-04-28 05:09:13', 0, NULL, 0, NULL, 1),
(5671, 4661, '2', 'State Board', '', '', '2016', 75.00, '', 1, '2021-04-28 05:12:11', 0, NULL, 0, NULL, 1),
(5672, 4665, '2', 'state board', '', '', '2016', 57.00, '', 1, '2021-04-29 09:15:26', 0, NULL, 0, NULL, 1),
(5673, 4665, '3', 'mgr', '', 'bsc viscom', '2019', 77.00, '', 1, '2021-04-29 09:15:54', 0, NULL, 0, NULL, 1),
(5674, 4668, '3', 'SRM arts and science College affiliated with University of Madras', '', 'B.com general', '2021', 70.00, '', 1, '2021-04-29 10:08:02', 0, NULL, 0, NULL, 1),
(5675, 4667, '3', 'Anna university', '', 'Be', '2021', 83.00, '', 1, '2021-04-29 10:12:34', 0, NULL, 0, NULL, 1),
(5676, 4666, '3', 'Anna University', '', 'B.E', '2021', 8.30, '', 1, '2021-04-29 10:49:39', 0, NULL, 0, NULL, 1),
(5677, 4663, '3', 'SA Engineering College ', '', 'B.E Electronics Communication Engineering ', '2019', 6.76, '', 1, '2021-04-29 10:59:11', 0, NULL, 0, NULL, 1),
(5678, 4669, '3', 'Islamiah College', '', 'BSc Computer Science', '2016', 58.00, '', 1, '2021-04-29 11:33:55', 0, NULL, 0, NULL, 1),
(5679, 4670, '3', 'Annauniversity', '', 'BE', '2016', 6.00, '', 1, '2021-04-29 11:35:44', 0, NULL, 0, NULL, 1),
(5680, 4671, '3', 'Maamallan institute of technology', '', 'Be Mechanical engineering', '2015', 68.90, '', 1, '2021-04-29 11:39:09', 0, NULL, 0, NULL, 1),
(5681, 4664, '3', 'Madras University', '', 'Bachelor of Computer Application', '2019', 65.80, '', 1, '2021-04-29 11:44:48', 0, NULL, 0, NULL, 1),
(5682, 4673, '5', 'Board', '', 'Yes', '2019', 78.00, '', 1, '2021-04-29 11:48:49', 0, NULL, 0, NULL, 1),
(5683, 4674, '2', 'Board', '', '', '2018', 52.00, '', 1, '2021-04-29 11:52:02', 0, NULL, 0, NULL, 1),
(5684, 4675, '3', 'Madras University', '', 'B.s.c . Computer science', '2019', 71.00, '', 1, '2021-04-29 11:59:56', 0, NULL, 0, NULL, 1),
(5685, 4675, '2', 'State board', '', '', '2016', 69.00, '', 1, '2021-04-29 12:00:33', 0, NULL, 0, NULL, 1),
(5686, 4675, '1', 'State board', '', '', '2016', 81.00, '', 1, '2021-04-29 12:01:23', 0, NULL, 0, NULL, 1),
(5687, 4678, '3', 'MNM Jain Engineering College', '', 'B-Tech IT', '2019', 61.00, '', 1, '2021-04-29 01:36:49', 1, '2021-04-29 01:37:49', 0, NULL, 1),
(5688, 4678, '4', 'St.Joseph\'s college of engineering', '', 'MBA', '2021', 70.00, '', 1, '2021-04-29 01:38:37', 0, NULL, 0, NULL, 1),
(5689, 4679, '1', 'Sate board', '', '', '2016', 73.00, '', 1, '2021-04-29 03:11:46', 0, NULL, 0, NULL, 1),
(5690, 4679, '2', 'State board', '', '', '2018', 71.00, '', 1, '2021-04-29 03:12:00', 0, NULL, 0, NULL, 1),
(5691, 4679, '3', 'Madras university', '', 'Bba', '2021', 85.00, '', 1, '2021-04-29 03:12:22', 0, NULL, 0, NULL, 1),
(5692, 4681, '1', 'tamilnadu state board', '', '', '2016', 75.40, '', 1, '2021-04-29 06:57:37', 0, NULL, 0, NULL, 1),
(5693, 4681, '2', 'tamilnadu state board', '', '', '2018', 64.00, '', 1, '2021-04-29 06:58:24', 0, NULL, 0, NULL, 1),
(5694, 4681, '3', 'the new college', '', 'ba', '2021', 70.20, '', 1, '2021-04-29 07:17:22', 0, NULL, 0, NULL, 1),
(5695, 4672, '3', 'autonomous -madras university afflicted', '', 'bca computer applications', '2020', 75.00, '', 1, '2021-04-29 08:04:37', 0, NULL, 0, NULL, 1),
(5696, 4672, '2', 'sri gnanananda matric higher secondary school', '', '', '2017', 86.00, '', 1, '2021-04-29 08:05:16', 0, NULL, 0, NULL, 1),
(5697, 4672, '1', 'Sri Gnanananda Matric Higher Secondary School', '', '', '2015', 93.00, '', 1, '2021-04-29 08:05:39', 0, NULL, 0, NULL, 1),
(5698, 4676, '1', 'state board', '', '', '2011', 83.00, '', 1, '2021-04-29 09:16:04', 1, '2021-04-29 09:17:11', 0, NULL, 1),
(5699, 4676, '2', 'state board', '', '', '2013', 90.00, '', 1, '2021-04-29 09:17:37', 0, NULL, 0, NULL, 1),
(5700, 4676, '3', 'university of madras', '', 'b.com', '2016', 54.00, '', 1, '2021-04-29 09:18:28', 0, NULL, 0, NULL, 1),
(5701, 4676, '4', 'university of madras', '', 'economics', '2019', 64.00, '', 1, '2021-04-29 09:19:10', 0, NULL, 0, NULL, 1),
(5702, 4683, '4', 'Thiruvallur University', '', 'Msc(IT)', '2021', 6.10, '', 1, '2021-04-29 09:23:53', 0, NULL, 0, NULL, 1),
(5703, 4685, '3', 'Dr .MGR educational and research institute ', '', 'B.com', '2021', 70.00, '', 1, '2021-04-30 09:58:44', 0, NULL, 0, NULL, 1),
(5704, 4685, '2', 'State board ', '', '', '2018', 66.00, '', 1, '2021-04-30 09:59:22', 0, NULL, 0, NULL, 1),
(5705, 4685, '1', 'Central board ', '', '', '2016', 70.00, '', 1, '2021-04-30 09:59:47', 0, NULL, 0, NULL, 1),
(5706, 4686, '4', 'Anna university', '', 'MBA', '2020', 69.00, '', 1, '2021-04-30 10:36:01', 0, NULL, 0, NULL, 1),
(5707, 4686, '3', 'SRM University', '', 'B.Com', '2018', 65.00, '', 1, '2021-04-30 10:36:31', 0, NULL, 0, NULL, 1),
(5708, 4686, '2', 'State Board', '', '', '2015', 89.00, '', 1, '2021-04-30 10:37:18', 0, NULL, 0, NULL, 1),
(5709, 4686, '1', 'State Board', '', '', '2013', 83.00, '', 1, '2021-04-30 10:38:02', 0, NULL, 0, NULL, 1),
(5710, 4680, '1', 'tamil nadu state board', '', '', '2010', 65.70, '', 1, '2021-04-30 10:48:37', 0, NULL, 0, NULL, 1),
(5711, 4680, '2', 'Tamil nadu state board', '', '', '2012', 52.91, '', 1, '2021-04-30 10:49:25', 0, NULL, 0, NULL, 1),
(5712, 4680, '5', 'Tamil nadu state board of technical education', '', 'Diploma in automobile engineering', '2014', 86.39, '', 1, '2021-04-30 10:51:56', 0, NULL, 0, NULL, 1),
(5713, 643, '1', 'Government higher secondary school', '', '', '2014', 59.00, '', 1, '2021-04-30 11:08:40', 0, NULL, 0, NULL, 1),
(5714, 4687, '2', 'state board', '', '', '2013', 80.00, '', 1, '2021-04-30 11:17:54', 0, NULL, 0, NULL, 1),
(5715, 4687, '3', 'anna university', '', 'be mech', '2017', 72.00, '', 1, '2021-04-30 11:18:21', 0, NULL, 0, NULL, 1),
(5716, 4688, '2', 'state board', '', '', '2013', 76.00, '', 1, '2021-04-30 11:34:16', 1, '2021-04-30 11:34:56', 0, NULL, 1),
(5717, 4688, '3', 'auto', '', 'bcom', '2016', 58.00, '', 1, '2021-04-30 11:35:20', 0, NULL, 0, NULL, 1),
(5718, 4682, '4', 'Mother Teresa womens university', '', 'MSC(cs&IT) ', '2017', 75.00, '', 1, '2021-04-30 11:39:01', 0, NULL, 0, NULL, 1),
(5719, 4689, '3', 'Anna University', '', 'BE ', '2011', 60.00, '', 1, '2021-04-30 12:10:42', 1, '2021-04-30 12:11:49', 0, NULL, 1),
(5720, 4691, '1', 'state board', '', '', '2009', 70.00, '', 1, '2021-04-30 05:01:59', 0, NULL, 0, NULL, 1),
(5721, 4691, '2', 'state board', '', '', '2011', 63.00, '', 1, '2021-04-30 05:02:17', 0, NULL, 0, NULL, 1),
(5722, 4691, '3', 'anna university', '', 'b.e', '2015', 69.00, '', 1, '2021-04-30 05:03:09', 0, NULL, 0, NULL, 1),
(5723, 4692, '4', 'Anna university ', '', 'MBA ', '2020', 75.00, '', 1, '2021-04-30 07:49:54', 0, NULL, 0, NULL, 1),
(5724, 4695, '2', 'state board', '', '', '2020', 52.00, '', 1, '2021-05-03 09:19:16', 0, NULL, 0, NULL, 1),
(5725, 4696, '2', 'state board', '', '', '2014', 66.00, '', 1, '2021-05-03 09:23:31', 0, NULL, 0, NULL, 1),
(5726, 4696, '3', 'mu', '', 'bsc cs', '2017', 76.00, '', 1, '2021-05-03 09:24:14', 0, NULL, 0, NULL, 1),
(5727, 4697, '2', 'state board', '', '', '2015', 55.00, '', 1, '2021-05-03 09:30:33', 0, NULL, 0, NULL, 1),
(5728, 4697, '3', 'thiruvalluvar university', '', 'bsc cs', '2018', 70.00, '', 1, '2021-05-03 09:31:02', 0, NULL, 0, NULL, 1),
(5729, 4699, '4', 'amrita vishwa vidhyapeetham', '', 'msc. applied statistics and data analytics', '2021', 6.91, '', 1, '2021-05-03 11:13:20', 0, NULL, 0, NULL, 1),
(5730, 4701, '3', 'Madras University ', '', 'B com general ', '2019', 64.00, '', 1, '2021-05-03 11:41:58', 0, NULL, 0, NULL, 1),
(5731, 4700, '4', 'Madras university', '', 'B.com accounts and finance', '2021', 76.00, '', 1, '2021-05-03 11:45:00', 0, NULL, 0, NULL, 1),
(5732, 4703, '2', 'state board', '', '', '2017', 66.00, '', 1, '2021-05-03 12:15:33', 0, NULL, 0, NULL, 1),
(5733, 4703, '3', 'madras university', '', 'bsc', '2021', 77.00, '', 1, '2021-05-03 12:15:55', 0, NULL, 0, NULL, 1),
(5734, 4705, '1', 'Government high school', '', '', '2012', 73.00, '', 1, '2021-05-03 12:34:12', 0, NULL, 0, NULL, 1),
(5735, 4705, '2', 'DR.R.ARULAPPA HIGHER SECONDARY SCHOOL', '', '', '2014', 85.00, '', 1, '2021-05-03 12:34:59', 0, NULL, 0, NULL, 1),
(5736, 4705, '3', 'Sree andal azhagar college of engineering', '', 'BE (CSE)', '2018', 62.00, '', 1, '2021-05-03 12:36:27', 0, NULL, 0, NULL, 1),
(5737, 4702, '3', 'Madras university', '', 'B.com cs', '2020', 69.00, '', 1, '2021-05-03 12:46:29', 0, NULL, 0, NULL, 1),
(5738, 4704, '2', 'No', '', '', '2012', 68.00, '', 1, '2021-05-03 01:14:25', 0, NULL, 0, NULL, 1),
(5739, 4704, '1', 'State board', '', '', '2012', 68.00, '', 1, '2021-05-03 01:15:29', 0, NULL, 0, NULL, 1),
(5740, 4706, '4', 'University of Madras', '', 'M. Sc', '2021', 65.00, '', 1, '2021-05-03 03:11:36', 0, NULL, 0, NULL, 1),
(5741, 4707, '3', 'Anna University', '', 'B.E.', '2015', 87.00, '', 1, '2021-05-03 04:04:23', 0, NULL, 0, NULL, 1),
(5742, 4708, '3', 'Bangalore university', '', 'B.com', '2020', 60.00, '', 1, '2021-05-03 07:23:35', 0, NULL, 0, NULL, 1),
(5743, 4711, '4', 'madras university', '', 'm a', '2020', 64.00, '', 1, '2021-05-04 08:53:47', 0, NULL, 0, NULL, 1),
(5744, 4712, '4', 'madras university', '', 'm a', '2020', 65.00, '', 1, '2021-05-04 10:04:09', 0, NULL, 0, NULL, 1),
(5745, 4713, '3', 'Anna University Villupuram', '', 'BE', '2020', 62.17, '', 1, '2021-05-04 11:12:59', 0, NULL, 0, NULL, 1),
(5746, 4714, '5', 'Anna University', '', 'Eee', '2018', 76.00, '', 1, '2021-05-04 11:26:48', 0, NULL, 0, NULL, 1),
(5747, 4715, '3', 'Madras university', '', 'B.com', '2019', 60.00, '', 1, '2021-05-04 11:47:30', 0, NULL, 0, NULL, 1),
(5748, 4716, '1', 'cbse', '', '', '2015', 70.00, '', 1, '2021-05-04 01:32:06', 0, NULL, 0, NULL, 1),
(5749, 4716, '2', 'state board', '', '', '2017', 81.33, '', 1, '2021-05-04 01:32:26', 0, NULL, 0, NULL, 1),
(5750, 4716, '3', 'anna university', '', 'b.e', '2021', 79.80, '', 1, '2021-05-04 01:32:56', 0, NULL, 0, NULL, 1),
(5751, 4710, '1', 'State', '', '', '2012', 80.50, '', 1, '2021-05-04 02:54:14', 0, NULL, 0, NULL, 1),
(5752, 4710, '2', 'State board', '', '', '2014', 88.67, '', 1, '2021-05-04 02:55:10', 0, NULL, 0, NULL, 1),
(5753, 4710, '3', 'Anna University', '', 'B.E', '2018', 7.05, '', 1, '2021-05-04 02:55:36', 0, NULL, 0, NULL, 1),
(5754, 4608, '3', 'anna', '', 'btech', '2020', 67.00, '', 1, '2021-05-04 05:20:57', 0, NULL, 0, NULL, 1),
(5755, 4718, '1', 'matriculation', '', '', '2009', 77.00, '', 1, '2021-05-04 08:19:46', 0, NULL, 0, NULL, 1),
(5756, 4718, '2', 'state', '', '', '2011', 68.00, '', 1, '2021-05-04 08:20:14', 0, NULL, 0, NULL, 1),
(5757, 4718, '3', 'anna university', '', 'b.e', '2015', 61.00, '', 1, '2021-05-04 08:21:15', 0, NULL, 0, NULL, 1),
(5758, 4719, '3', 'b s Abdur Rehman Crescent Institute of Science and Technology ', '', 'b tech', '2021', 88.00, '', 1, '2021-05-04 09:33:33', 0, NULL, 0, NULL, 1),
(5759, 4720, '3', 'University of Madras', '', 'Bachelor of Computer Application', '2020', 60.00, '', 1, '2021-05-04 10:22:13', 0, NULL, 0, NULL, 1),
(5760, 4721, '2', 'state board', '', '', '2015', 52.00, '', 1, '2021-05-05 10:45:26', 0, NULL, 0, NULL, 1),
(5761, 4721, '3', 'anna university', '', 'be', '2019', 70.00, '', 1, '2021-05-05 10:45:53', 0, NULL, 0, NULL, 1),
(5762, 4722, '2', 'state board', '', '', '2010', 76.00, '', 1, '2021-05-05 10:49:26', 0, NULL, 0, NULL, 1),
(5763, 4722, '3', 'anna university', '', 'be', '2014', 78.00, '', 1, '2021-05-05 10:49:52', 0, NULL, 0, NULL, 1),
(5764, 4723, '1', 'Tamilnadu', '', '', '2013', 60.00, '', 1, '2021-05-05 11:13:16', 0, NULL, 0, NULL, 1),
(5765, 4723, '2', 'Tamilnadu', '', '', '2015', 80.00, '', 1, '2021-05-05 11:13:32', 0, NULL, 0, NULL, 1),
(5766, 4723, '3', 'Tamilnadu', '', 'B. Sc computer science', '2019', 65.00, '', 1, '2021-05-05 11:14:09', 0, NULL, 0, NULL, 1),
(5767, 4724, '1', 'Tamil Nadu', '', '', '2015', 70.00, '', 1, '2021-05-05 12:32:16', 0, NULL, 0, NULL, 1),
(5768, 4724, '2', 'Tamil Nadu', '', '', '2017', 65.00, '', 1, '2021-05-05 12:32:35', 0, NULL, 0, NULL, 1),
(5769, 4724, '3', 'University of Madras', '', 'BA.English Literature', '2021', 60.00, '', 1, '2021-05-05 12:35:30', 0, NULL, 0, NULL, 1),
(5770, 4726, '3', 'Veltech Ranga sanku arts college', '', 'BCA', '2020', 67.00, '', 1, '2021-05-05 12:41:59', 0, NULL, 0, NULL, 1),
(5771, 4725, '3', 'Veltech ranga sanku arts college', '', 'BCA', '2020', 62.00, '', 1, '2021-05-05 12:42:22', 0, NULL, 0, NULL, 1),
(5772, 4726, '2', 'Chirst king matriculation higher secondary school', '', '', '2017', 62.00, '', 1, '2021-05-05 12:43:18', 0, NULL, 0, NULL, 1),
(5773, 4725, '1', 'Gyaan vidhayala matric hr sec school', '', '', '2017', 65.00, '', 1, '2021-05-05 12:43:38', 0, NULL, 0, NULL, 1),
(5774, 4726, '1', 'Jacob matriculation school', '', '', '2015', 78.00, '', 1, '2021-05-05 12:43:42', 0, NULL, 0, NULL, 1),
(5775, 4725, '2', 'Jacob matriculation school', '', '', '2015', 80.00, '', 1, '2021-05-05 12:44:03', 0, NULL, 0, NULL, 1),
(5776, 4727, '3', 'loyola Collage chennai', '', 'b.a economic', '2020', 64.00, '', 1, '2021-05-05 12:45:06', 0, NULL, 0, NULL, 1),
(5777, 4727, '1', 'jacob matrication school', '', '', '2015', 74.00, '', 1, '2021-05-05 12:46:04', 0, NULL, 0, NULL, 1),
(5778, 4727, '2', 'St.Teresa Matriculation higher sec school', '', '', '2017', 62.00, '', 1, '2021-05-05 12:47:04', 0, NULL, 0, NULL, 1),
(5779, 4728, '3', 'Madrass University', '', 'b.Commerse general', '2021', 73.00, '', 1, '2021-05-05 01:30:42', 0, NULL, 0, NULL, 1),
(5780, 4730, '3', 'University of Madras', '', 'BBA', '2019', 65.00, '', 1, '2021-05-05 02:27:43', 0, NULL, 0, NULL, 1),
(5781, 4731, '4', 'Bharathiyar Univeristy', '', 'M.com', '2019', 7.80, '', 1, '2021-05-05 02:44:12', 0, NULL, 0, NULL, 1),
(5782, 4732, '3', 'Thiruvallur university', '', 'B.sc computer science', '2013', 70.00, '', 1, '2021-05-05 02:55:22', 0, NULL, 0, NULL, 1),
(5783, 4735, '4', 'Madras university', '', 'mBA', '2022', 60.00, '', 1, '2021-05-05 03:12:49', 0, NULL, 0, NULL, 1),
(5784, 4736, '4', 'Madras university ', '', 'MBA finance management ', '2020', 58.00, '', 1, '2021-05-05 03:13:44', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5785, 4734, '3', 'madras university', '', 'b.com', '2017', 78.00, '', 1, '2021-05-05 03:27:22', 0, NULL, 0, NULL, 1),
(5786, 4739, '3', 'madras university', '', 'ba economics', '2021', 73.00, '', 1, '2021-05-05 03:51:13', 0, NULL, 0, NULL, 1),
(5787, 4741, '3', 'Anna University', '', 'B.E ', '2017', 62.00, '', 1, '2021-05-05 04:04:47', 0, NULL, 0, NULL, 1),
(5788, 4740, '3', 'MS University, Thirunelveli', '', 'BSc(Computer science and information technology)', '2020', 70.00, '', 1, '2021-05-05 04:07:00', 0, NULL, 0, NULL, 1),
(5789, 4743, '4', 'Osmania University', '', 'BBA', '2018', 55.00, '', 1, '2021-05-05 07:23:52', 0, NULL, 0, NULL, 1),
(5790, 4743, '4', 'Osmania University', '', 'BBA', '2018', 55.00, '', 1, '2021-05-05 07:25:25', 1, '2021-05-05 07:25:46', 0, NULL, 0),
(5791, 4729, '3', 'Anna University', '', 'B. Tech- Information Technology', '2021', 69.50, '', 1, '2021-05-06 08:49:19', 0, NULL, 0, NULL, 1),
(5792, 4729, '1', 'State Board', '', 'B. Tech, Information Technology. ', '2017', 70.00, '', 1, '2021-05-06 08:53:11', 0, NULL, 0, NULL, 1),
(5793, 4729, '2', 'State Board', '', '', '2017', 70.00, '', 1, '2021-05-06 09:01:18', 0, NULL, 0, NULL, 1),
(5794, 4733, '4', 'North Orissa University', '', 'B.com', '2016', 54.00, '', 1, '2021-05-06 10:13:40', 0, NULL, 0, NULL, 1),
(5795, 4747, '4', 'autonomous ', '', 'MSC (COMPUTER SCIENCE)', '2021', 78.00, '', 1, '2021-05-06 12:03:54', 0, NULL, 0, NULL, 1),
(5796, 4748, '3', 'Anna University', '', 'B.E', '2017', 77.00, '', 1, '2021-05-06 12:45:57', 0, NULL, 0, NULL, 1),
(5797, 4749, '3', 'Anna university', '', 'BE', '2020', 69.00, '', 1, '2021-05-06 01:02:26', 1, '2021-05-06 01:03:03', 0, NULL, 0),
(5798, 4749, '3', 'Anna university', '', 'BE', '2020', 69.00, '', 1, '2021-05-06 01:04:06', 0, NULL, 0, NULL, 1),
(5799, 4750, '3', 'Prist University', '', 'B.com', '2020', 62.00, '', 1, '2021-05-06 02:28:49', 0, NULL, 0, NULL, 1),
(5800, 4750, '2', 'Chennai boys higher secondary School', '', '', '2016', 60.00, '', 1, '2021-05-06 02:30:29', 0, NULL, 0, NULL, 1),
(5801, 4750, '1', 'Chennai boys higher secondary school', '', '', '2014', 67.00, '', 1, '2021-05-06 02:31:17', 0, NULL, 0, NULL, 1),
(5802, 4752, '3', 'Anna University Chennai ', '', 'B.TECH- Information technology ', '2011', 66.00, '', 1, '2021-05-06 03:31:30', 0, NULL, 0, NULL, 1),
(5803, 4751, '1', 'state board', '', '', '2016', 84.00, '', 1, '2021-05-06 04:05:23', 0, NULL, 0, NULL, 1),
(5804, 4751, '2', 'state board', '', '', '2018', 77.58, '', 1, '2021-05-06 04:06:02', 0, NULL, 0, NULL, 1),
(5805, 4751, '3', 'madras university', '', 'b.sc.computer science', '2021', 73.73, '', 1, '2021-05-06 04:06:57', 0, NULL, 0, NULL, 1),
(5806, 4753, '4', 'thiruvalluvar university', '', 'mca', '2018', 90.00, '', 1, '2021-05-06 04:26:33', 0, NULL, 0, NULL, 1),
(5807, 4754, '3', 'anna university', '', 'b.tech - information technology', '2011', 66.00, '', 1, '2021-05-06 04:44:50', 0, NULL, 0, NULL, 1),
(5808, 4754, '2', 'State Board Tamilnadu', '', '', '2007', 77.00, '', 1, '2021-05-06 04:45:47', 0, NULL, 0, NULL, 1),
(5809, 4754, '1', 'State Board Tamilnadu', '', '', '2005', 57.00, '', 1, '2021-05-06 04:46:17', 0, NULL, 0, NULL, 1),
(5810, 4755, '2', 'state board', '', '', '2014', 77.00, '', 1, '2021-05-06 06:25:29', 0, NULL, 0, NULL, 1),
(5811, 4755, '3', 'madras university', '', 'bcom', '2017', 71.20, '', 1, '2021-05-06 06:25:56', 0, NULL, 0, NULL, 1),
(5812, 4757, '3', 'madras university', '', 'be ece', '2017', 69.00, '', 1, '2021-05-07 10:44:16', 0, NULL, 0, NULL, 1),
(5813, 4690, '3', 'anna university', '', 'b.e', '2016', 65.00, '', 1, '2021-05-07 10:45:14', 0, NULL, 0, NULL, 1),
(5814, 4758, '3', 'anna university', '', 'Be Cs', '2020', 61.00, '', 1, '2021-05-07 10:47:42', 0, NULL, 0, NULL, 1),
(5815, 4760, '3', 'bharathidasan university', '', 'bca', '2018', 78.00, '', 1, '2021-05-07 11:08:54', 0, NULL, 0, NULL, 1),
(5816, 4761, '3', 'Anna university', '', 'Bachelor\'s of engineering', '2014', 78.00, '', 1, '2021-05-07 11:19:37', 0, NULL, 0, NULL, 1),
(5817, 4761, '2', 'State board', '', '', '2010', 90.00, '', 1, '2021-05-07 11:19:54', 0, NULL, 0, NULL, 1),
(5818, 4761, '1', 'State board', '', '', '2008', 92.00, '', 1, '2021-05-07 11:20:23', 0, NULL, 0, NULL, 1),
(5819, 4763, '1', 'state board', '', '', '2011', 80.00, '', 1, '2021-05-07 11:53:10', 0, NULL, 0, NULL, 1),
(5820, 4763, '2', 'state board', '', '', '2013', 60.00, '', 1, '2021-05-07 11:53:44', 0, NULL, 0, NULL, 1),
(5821, 4763, '3', 'i f e t college of engineering', '', 'c s  e', '2017', 60.00, '', 1, '2021-05-07 11:54:33', 0, NULL, 0, NULL, 1),
(5822, 4764, '5', 'T.S.srinivasan centre for polytechnic and advanced Training', '', 'Mechatronics', '2019', 70.00, '', 1, '2021-05-07 12:25:32', 0, NULL, 0, NULL, 1),
(5823, 4766, '3', 'bsa. cresent institute of science and technology', '', 'bca', '2019', 51.00, '', 1, '2021-05-07 12:33:36', 0, NULL, 0, NULL, 1),
(5824, 4765, '5', 'Cpt', '', '', '2010', 70.00, '', 1, '2021-05-07 12:35:54', 0, NULL, 0, NULL, 1),
(5825, 4738, '4', 'jntu-h', '', 'mba', '2019', 70.00, '', 1, '2021-05-07 12:55:44', 0, NULL, 0, NULL, 1),
(5826, 4738, '3', 'ku', '', 'b.com', '2015', 59.00, '', 1, '2021-05-07 12:56:06', 0, NULL, 0, NULL, 1),
(5827, 4767, '3', 'Madras university', '', 'Bcom (g)', '2020', 61.00, '', 1, '2021-05-07 01:04:04', 0, NULL, 0, NULL, 1),
(5828, 4768, '1', 'STATE BOARD ', '', '', '2014', 74.00, '', 1, '2021-05-07 01:52:01', 0, NULL, 0, NULL, 1),
(5829, 4768, '2', 'STATE BOARD', '', '', '2016', 82.60, '', 1, '2021-05-07 01:52:42', 0, NULL, 0, NULL, 1),
(5830, 4768, '3', 'MADRAS UNIVERSITY', '', 'B.Com', '2019', 6.03, '', 1, '2021-05-07 01:53:14', 0, NULL, 0, NULL, 1),
(5831, 4768, '4', 'SRM UNIVERSITY', '', 'MBA', '2021', 8.92, '', 1, '2021-05-07 01:53:46', 0, NULL, 0, NULL, 1),
(5832, 4769, '3', 'geetham university', '', 'bcom', '2021', 73.00, '', 1, '2021-05-07 02:33:58', 0, NULL, 0, NULL, 1),
(5833, 4770, '3', 'JNTUK', '', 'B.Tech', '2015', 70.00, '', 1, '2021-05-07 03:38:46', 0, NULL, 0, NULL, 1),
(5834, 4771, '3', 'Madurai kamaraj university ', '', 'BCA', '2016', 75.00, '', 1, '2021-05-07 03:53:46', 0, NULL, 0, NULL, 1),
(5835, 4773, '4', 'University of Madras', '', 'Biostatistics ', '2020', 9.30, '', 1, '2021-05-07 04:21:16', 0, NULL, 0, NULL, 1),
(5836, 4772, '4', 'andhra univ ', '', 'bsc', '2018', 78.00, '', 1, '2021-05-07 04:27:00', 0, NULL, 0, NULL, 1),
(5837, 4775, '3', 'University of madras', '', 'B.Sc.Computer Science ', '2007', 65.00, '', 1, '2021-05-07 04:53:10', 0, NULL, 0, NULL, 1),
(5838, 4774, '3', 'jnpa', '', 'b.tech it', '2016', 68.00, '', 1, '2021-05-07 04:56:29', 0, NULL, 0, NULL, 1),
(5839, 4777, '3', 'Telangana board', '', '', '2018', 91.90, '', 1, '2021-05-07 05:15:08', 0, NULL, 0, NULL, 1),
(5840, 4779, '3', 'pg college', '', 'bcom', '2024', 55.00, '', 1, '2021-05-07 06:05:48', 0, NULL, 0, NULL, 1),
(5841, 4780, '3', 'anna university', '', 'b.e automobile engineering', '2016', 63.00, '', 1, '2021-05-07 09:38:05', 0, NULL, 0, NULL, 1),
(5842, 4782, '3', 'Anna University', '', 'B.Tech', '2013', 6.10, '', 1, '2021-05-08 10:17:57', 0, NULL, 0, NULL, 1),
(5843, 4781, '3', 'Anna University', '', 'B. E', '2016', 65.00, '', 1, '2021-05-08 10:24:05', 0, NULL, 0, NULL, 1),
(5844, 4783, '2', 'state board', '', '', '2007', 56.00, '', 1, '2021-05-08 10:35:43', 0, NULL, 0, NULL, 1),
(5845, 4783, '3', 'madras university', '', 'diploma', '2011', 80.00, '', 1, '2021-05-08 10:36:07', 0, NULL, 0, NULL, 1),
(5846, 4785, '4', 'osmania University', '', 'osmania University', '2018', 73.00, '', 1, '2021-05-08 11:17:38', 0, NULL, 0, NULL, 1),
(5847, 4784, '3', 'usmaniya', '', 'bs cs', '2015', 64.00, '', 1, '2021-05-08 11:21:22', 0, NULL, 0, NULL, 1),
(5848, 4786, '3', 'Madras University', '', 'BBA', '2017', 88.00, '', 1, '2021-05-08 11:29:30', 0, NULL, 0, NULL, 1),
(5849, 4787, '4', 'Hindusthan', '', 'MBA', '2020', 75.00, '', 1, '2021-05-08 12:04:44', 0, NULL, 0, NULL, 1),
(5850, 4787, '3', 'Dr.MCET', '', 'B.Tech', '2017', 75.00, '', 1, '2021-05-08 12:05:28', 0, NULL, 0, NULL, 1),
(5851, 4787, '2', 'State Board', '', '', '2013', 87.00, '', 1, '2021-05-08 12:06:05', 0, NULL, 0, NULL, 1),
(5852, 4787, '1', 'state Board', '', '', '2011', 85.00, '', 1, '2021-05-08 12:06:41', 0, NULL, 0, NULL, 1),
(5853, 4788, '2', 'state board', '', '', '2011', 65.00, '', 1, '2021-05-08 01:57:22', 0, NULL, 0, NULL, 1),
(5854, 4788, '3', 'madras university', '', 'msc', '2016', 73.00, '', 1, '2021-05-08 01:57:51', 0, NULL, 0, NULL, 1),
(5855, 4790, '3', 'madha engineering college', '', 'btech', '2017', 76.00, '', 1, '2021-05-08 09:41:37', 0, NULL, 0, NULL, 1),
(5856, 4791, '3', 'Loyola College', '', 'B. Com', '2019', 60.00, '', 1, '2021-05-10 09:42:25', 0, NULL, 0, NULL, 1),
(5857, 4792, '3', 'University of madras', '', 'BSC', '2021', 70.20, '', 1, '2021-05-10 11:51:46', 0, NULL, 0, NULL, 1),
(5858, 4792, '1', 'State', '', '', '2016', 89.20, '', 1, '2021-05-10 11:52:56', 0, NULL, 0, NULL, 1),
(5859, 4792, '2', 'State', '', '', '2018', 80.00, '', 1, '2021-05-10 11:53:30', 0, NULL, 0, NULL, 1),
(5860, 4793, '3', 'mahathma gandhi university', '', 'bcom', '2020', 86.00, '', 1, '2021-05-10 12:40:51', 0, NULL, 0, NULL, 1),
(5861, 4796, '3', 'tapasya academy', '', 'cacpt', '2017', 76.00, '', 1, '2021-05-10 02:43:46', 0, NULL, 0, NULL, 1),
(5862, 4797, '3', 'usmaniya', '', 'b com', '2016', 58.00, '', 1, '2021-05-10 02:53:32', 0, NULL, 0, NULL, 1),
(5863, 4798, '5', 'University ', '', 'Diploma cS', '2014', 84.00, '', 1, '2021-05-10 03:36:41', 0, NULL, 0, NULL, 1),
(5864, 4799, '3', 'srm university', '', 'bba', '2018', 56.00, '', 1, '2021-05-10 04:09:39', 0, NULL, 0, NULL, 1),
(5865, 4799, '2', 'cbse', '', '', '2015', 72.00, '', 1, '2021-05-10 04:10:34', 0, NULL, 0, NULL, 1),
(5866, 4800, '5', 'DOTE', '', 'Automobile engineering', '2018', 65.00, '', 1, '2021-05-10 04:20:41', 0, NULL, 0, NULL, 1),
(5867, 4800, '1', 'Matriculation', '', '', '2010', 64.00, '', 1, '2021-05-10 04:21:36', 0, NULL, 0, NULL, 1),
(5868, 4801, '3', 'Madras University', '', 'B.Com', '2018', 62.00, '', 1, '2021-05-10 04:58:22', 0, NULL, 0, NULL, 1),
(5869, 4802, '1', 'board', '', '', '2010', 80.00, '', 1, '2021-05-10 06:01:52', 0, NULL, 0, NULL, 1),
(5870, 4802, '2', 'board', '', '', '2012', 58.00, '', 1, '2021-05-10 06:02:11', 0, NULL, 0, NULL, 1),
(5871, 4802, '3', 'university', '', 'b.sc', '2015', 75.00, '', 1, '2021-05-10 06:02:46', 0, NULL, 0, NULL, 1),
(5872, 4803, '3', 'tamil university', '', 'b a history', '2018', 53.00, '', 1, '2021-05-10 06:29:26', 0, NULL, 0, NULL, 1),
(5873, 4804, '4', 'Sastra University', '', 'MCA', '2018', 63.70, '', 1, '2021-05-10 07:09:59', 0, NULL, 0, NULL, 1),
(5874, 4794, '3', 'Anna university', '', 'B. Tech IT', '2011', 64.00, '', 1, '2021-05-10 07:10:16', 0, NULL, 0, NULL, 1),
(5875, 4804, '3', 'Bharathidhasan university', '', 'BCA', '2016', 65.60, '', 1, '2021-05-10 07:13:00', 0, NULL, 0, NULL, 1),
(5876, 4805, '1', 'State Board', '', '', '2014', 91.20, '', 1, '2021-05-11 11:11:30', 0, NULL, 0, NULL, 1),
(5877, 4805, '2', 'State Board', '', '', '2016', 75.80, '', 1, '2021-05-11 11:12:01', 0, NULL, 0, NULL, 1),
(5878, 4805, '3', 'Anna University', '', 'B.Tech -Information Technology', '2020', 70.10, '', 1, '2021-05-11 11:12:46', 0, NULL, 0, NULL, 1),
(5879, 4806, '3', 'Anna University', '', 'BE', '2017', 60.00, '', 1, '2021-05-11 11:21:19', 0, NULL, 0, NULL, 1),
(5880, 4807, '4', 'bynahadhana', '', 'bmsc finance', '2018', 65.00, '', 1, '2021-05-11 12:51:52', 0, NULL, 0, NULL, 1),
(5881, 4808, '3', 'Anna university', '', 'BE computer science', '2012', 65.00, '', 1, '2021-05-11 01:51:39', 0, NULL, 0, NULL, 1),
(5882, 4809, '3', 'usmaniya', '', 'bcom', '2016', 60.00, '', 1, '2021-05-11 04:02:06', 0, NULL, 0, NULL, 1),
(5883, 4810, '3', 'jntu', '', 'btech', '2015', 60.00, '', 1, '2021-05-11 04:11:23', 0, NULL, 0, NULL, 1),
(5884, 3987, '3', 'Loyola College', '', 'Bsc statistics', '2017', 66.00, '', 1, '2021-05-11 04:38:55', 0, NULL, 0, NULL, 1),
(5885, 3987, '4', 'Presidency college', '', 'MPA', '2019', 70.00, '', 1, '2021-05-11 04:40:15', 0, NULL, 0, NULL, 1),
(5886, 3987, '1', 'State', '', '', '2012', 87.00, '', 1, '2021-05-11 04:41:20', 0, NULL, 0, NULL, 1),
(5887, 3987, '2', 'State', '', '', '2014', 81.00, '', 1, '2021-05-11 04:41:42', 0, NULL, 0, NULL, 1),
(5888, 4811, '3', 'Indra ganeshan college of engineering', '', 'BE civil ', '2018', 60.00, '', 1, '2021-05-11 04:41:59', 0, NULL, 0, NULL, 1),
(5889, 4812, '3', 'University of madras', '', 'B.com', '2017', 60.00, '', 1, '2021-05-11 05:11:45', 0, NULL, 0, NULL, 1),
(5890, 4814, '3', 'geetham', '', 'bcom', '2019', 73.00, '', 1, '2021-05-11 05:24:38', 0, NULL, 0, NULL, 1),
(5891, 4813, '3', 'dhanraj baid jain college', '', 'bsc mathematics', '2017', 76.00, '', 1, '2021-05-11 05:32:14', 0, NULL, 0, NULL, 1),
(5892, 4813, '2', 'chennai corporation higher secondary school', '', '', '2014', 78.00, '', 1, '2021-05-11 05:33:08', 1, '2021-05-11 05:33:39', 0, NULL, 1),
(5893, 4813, '1', 'chennai corporation higher secondary school', '', '', '2009', 71.00, '', 1, '2021-05-11 05:34:15', 0, NULL, 0, NULL, 1),
(5894, 4815, '4', 'jntu', '', 'mba', '2019', 95.00, '', 1, '2021-05-11 05:47:47', 0, NULL, 0, NULL, 1),
(5895, 4816, '3', 'St. Joseph\'s college of engineering', '', 'B. E-ECE', '2018', 65.00, '', 1, '2021-05-11 07:16:09', 0, NULL, 0, NULL, 1),
(5896, 4817, '3', 'anna university', '', 'b.e', '2018', 75.00, '', 1, '2021-05-12 09:41:40', 0, NULL, 0, NULL, 1),
(5897, 4817, '5', 'dote', '', 'diploma in ece', '2014', 94.00, '', 1, '2021-05-12 09:42:05', 0, NULL, 0, NULL, 1),
(5898, 4817, '1', 'matriculation', '', '', '2011', 75.00, '', 1, '2021-05-12 09:42:29', 0, NULL, 0, NULL, 1),
(5899, 4819, '4', 'university of madras', '', 'msc', '2012', 68.00, '', 1, '2021-05-12 12:34:29', 0, NULL, 0, NULL, 1),
(5900, 4819, '2', 'state board', '', '', '2007', 58.00, '', 1, '2021-05-12 12:35:11', 0, NULL, 0, NULL, 1),
(5901, 4819, '1', 'state board', '', '', '2005', 70.00, '', 1, '2021-05-12 12:35:46', 0, NULL, 0, NULL, 1),
(5902, 4821, '1', 'Tamilnadu Government', '', '', '2007', 64.00, '', 1, '2021-05-12 01:26:34', 0, NULL, 0, NULL, 1),
(5903, 4821, '2', 'Tamilnadu Government', '', '', '2009', 64.58, '', 1, '2021-05-12 01:27:10', 0, NULL, 0, NULL, 1),
(5904, 4821, '3', 'Alagappa University', '', 'B.Sc Computer science', '2012', 66.96, '', 1, '2021-05-12 01:28:00', 0, NULL, 0, NULL, 1),
(5905, 4821, '4', 'MKU DDE', '', 'MCA', '2014', 69.19, '', 1, '2021-05-12 01:29:00', 0, NULL, 0, NULL, 1),
(5906, 4822, '3', 'Sriram Engineering college ', '', 'B.E ECE', '2015', 68.60, '', 1, '2021-05-12 03:18:21', 0, NULL, 0, NULL, 1),
(5907, 4823, '3', 'vignan', '', 'b.tech csc', '2016', 63.00, '', 1, '2021-05-12 04:05:02', 0, NULL, 0, NULL, 1),
(5908, 4825, '3', 'Alpha arts and science ', '', 'Bsc', '2017', 80.00, '', 1, '2021-05-12 04:45:29', 0, NULL, 0, NULL, 1),
(5909, 4824, '3', 'Madras University', '', 'B.Sc CS', '2012', 62.00, '', 1, '2021-05-12 04:46:19', 0, NULL, 0, NULL, 1),
(5910, 4825, '2', 'Chennai hrs secondary school', '', '', '2013', 85.00, '', 1, '2021-05-12 04:46:34', 0, NULL, 0, NULL, 1),
(5911, 4826, '3', 'Sri Ramanujar Engineering College', '', 'BE', '2014', 69.00, '', 1, '2021-05-12 05:18:08', 0, NULL, 0, NULL, 1),
(5912, 4827, '4', 'madras ', '', 'mba', '2021', 65.00, '', 1, '2021-05-12 06:06:32', 0, NULL, 0, NULL, 1),
(5913, 4830, '3', 'Agni college of technology', '', 'B.Tech', '2015', 61.00, '', 1, '2021-05-13 09:58:28', 0, NULL, 0, NULL, 1),
(5914, 4831, '4', 'University of Canterbury', '', 'Masters', '2020', 70.00, '', 1, '2021-05-13 10:01:59', 0, NULL, 0, NULL, 1),
(5915, 4831, '3', 'Madras university', '', 'Bachelor of Commerce', '2016', 72.00, '', 1, '2021-05-13 10:02:37', 0, NULL, 0, NULL, 1),
(5916, 4818, '3', 'anna university', '', 'b.e', '2016', 75.40, '', 1, '2021-05-13 10:28:11', 0, NULL, 0, NULL, 1),
(5917, 4832, '3', 'Anna University', '', 'Btech ', '2021', 60.00, '', 1, '2021-05-13 11:15:00', 0, NULL, 0, NULL, 1),
(5918, 4832, '5', 'State board', '', 'Electronics Communications Engineering', '2018', 84.00, '', 1, '2021-05-13 11:16:05', 0, NULL, 0, NULL, 1),
(5919, 4832, '1', 'State board', '', '', '2015', 79.00, '', 1, '2021-05-13 11:16:23', 0, NULL, 0, NULL, 1),
(5920, 4834, '3', 'mepco schlenk engineering college', '', 'be', '2019', 70.00, '', 1, '2021-05-13 11:24:21', 0, NULL, 0, NULL, 1),
(5921, 4835, '3', 'Anna university', '', 'Bachelor Of engineering in Mechanical', '2019', 63.40, '', 1, '2021-05-13 11:56:56', 0, NULL, 0, NULL, 1),
(5922, 4835, '2', 'State Board', '', '', '2015', 79.00, '', 1, '2021-05-13 11:57:39', 0, NULL, 0, NULL, 1),
(5923, 4836, '1', 'state board', '', '', '2015', 95.60, '', 1, '2021-05-13 12:35:07', 0, NULL, 0, NULL, 1),
(5924, 4836, '2', 'state board', '', '', '2017', 89.50, '', 1, '2021-05-13 12:35:32', 0, NULL, 0, NULL, 1),
(5925, 4836, '3', 'university of madras', '', 'bca', '2020', 77.57, '', 1, '2021-05-13 12:37:18', 0, NULL, 0, NULL, 1),
(5926, 4837, '3', 'niit', '', 'b.tech civil', '2020', 68.00, '', 1, '2021-05-13 03:13:02', 0, NULL, 0, NULL, 1),
(5927, 4839, '3', 'ANNA UNIVERSITY', '', 'BACHELOR OF ENGINEERING', '2020', 69.00, '', 1, '2021-05-13 03:26:08', 0, NULL, 0, NULL, 1),
(5928, 4839, '2', 'STATE BOARD', '', '', '2016', 85.58, '', 1, '2021-05-13 03:27:21', 0, NULL, 0, NULL, 1),
(5929, 4839, '1', 'STATE BOARD', '', '', '2014', 88.40, '', 1, '2021-05-13 03:29:53', 0, NULL, 0, NULL, 1),
(5930, 4840, '4', 'JNTUH,', '', 'mba finance', '2017', 80.00, '', 1, '2021-05-13 03:51:27', 0, NULL, 0, NULL, 1),
(5931, 4841, '3', 'Anna University affiliated', '', 'BE  Mechanical engineering', '2019', 72.40, '', 1, '2021-05-13 03:56:13', 1, '2021-05-13 03:56:32', 0, NULL, 1),
(5932, 4842, '3', 'osmania', '', 'bcom', '2019', 68.00, '', 1, '2021-05-13 03:56:15', 0, NULL, 0, NULL, 1),
(5933, 4843, '4', 'Vellore institute of technology ', '', 'M.tech', '2020', 82.60, '', 1, '2021-05-13 04:30:47', 0, NULL, 0, NULL, 1),
(5934, 4844, '3', 'punjab', '', 'b.tech cs', '2020', 62.00, '', 1, '2021-05-13 04:50:06', 0, NULL, 0, NULL, 1),
(5935, 4846, '4', 'bschool', '', 'pgdm', '2020', 71.00, '', 1, '2021-05-13 05:49:23', 0, NULL, 0, NULL, 1),
(5936, 4847, '1', 'state', '', '', '2007', 64.00, '', 1, '2021-05-14 11:19:19', 0, NULL, 0, NULL, 1),
(5937, 4847, '2', 'state', '', '', '2009', 56.00, '', 1, '2021-05-14 11:19:50', 0, NULL, 0, NULL, 1),
(5938, 4847, '3', 'ms university', '', 'bsc', '2012', 61.00, '', 1, '2021-05-14 11:20:46', 0, NULL, 0, NULL, 1),
(5939, 4847, '4', 'ms uinversity', '', 'mca', '2015', 69.00, '', 1, '2021-05-14 11:21:14', 0, NULL, 0, NULL, 1),
(5940, 4850, '3', 'Anna', '', 'B. E', '2018', 6.14, '', 1, '2021-05-14 03:32:45', 0, NULL, 0, NULL, 1),
(5941, 4849, '3', 'Anna University ', '', 'B.E/ECE', '2018', 61.00, '', 1, '2021-05-14 03:33:01', 0, NULL, 0, NULL, 1),
(5942, 4851, '3', 'Anna University ', '', 'B.E', '2012', 6.70, '', 1, '2021-05-14 04:04:46', 0, NULL, 0, NULL, 1),
(5943, 4852, '3', 'P.B College Of Engineering / Anna University', '', 'BE Mechanical', '2015', 65.00, '', 1, '2021-05-14 04:27:24', 0, NULL, 0, NULL, 1),
(5944, 4853, '4', 'aicte', '', 'pgdm', '2020', 70.00, '', 1, '2021-05-14 04:29:22', 0, NULL, 0, NULL, 1),
(5945, 4854, '4', 'jntuk', '', 'mba', '2017', 70.00, '', 1, '2021-05-14 04:47:28', 0, NULL, 0, NULL, 1),
(5946, 4855, '3', 'osmania', '', 'bcom', '2018', 63.00, '', 1, '2021-05-14 04:53:12', 0, NULL, 0, NULL, 1),
(5947, 4858, '4', 'kakatiya', '', 'mba', '2017', 61.00, '', 1, '2021-05-14 05:26:45', 0, NULL, 0, NULL, 1),
(5948, 4857, '3', 'vit   university', '', 'btech ', '2019', 64.00, '', 1, '2021-05-14 05:38:47', 0, NULL, 0, NULL, 1),
(5949, 4860, '2', 'prist deemed', '', '', '2022', 92.00, '', 1, '2021-05-15 10:06:48', 0, NULL, 0, NULL, 1),
(5950, 4861, '3', 'anna university', '', 'b.e', '2017', 72.00, '', 1, '2021-05-15 10:28:54', 0, NULL, 0, NULL, 1),
(5951, 4862, '3', 'barathi dasan', '', 'b.com', '2020', 74.00, '', 1, '2021-05-15 10:42:46', 0, NULL, 0, NULL, 1),
(5952, 4863, '3', 'Anna University', '', 'B.TECH-IT', '2021', 84.00, '', 1, '2021-05-15 10:45:35', 0, NULL, 0, NULL, 1),
(5953, 4845, '1', 'k.n.g.matriculation school', '', '', '2015', 91.00, '', 1, '2021-05-15 10:46:38', 0, NULL, 0, NULL, 1),
(5954, 4845, '2', 'velammal matriculation higher secondary school', '', '', '2017', 77.00, '', 1, '2021-05-15 10:47:05', 0, NULL, 0, NULL, 1),
(5955, 4845, '3', 'sethu institute of technology', '', 'b.tech information technology', '2021', 78.00, '', 1, '2021-05-15 10:49:58', 0, NULL, 0, NULL, 1),
(5956, 4856, '1', 'cbse', '', '', '2014', 84.00, '', 1, '2021-05-15 10:52:40', 0, NULL, 0, NULL, 1),
(5957, 4856, '2', 'state board', '', '', '2016', 74.08, '', 1, '2021-05-15 10:53:09', 1, '2021-05-15 10:53:39', 0, NULL, 1),
(5958, 4856, '3', 'bishop heber college', '', 'b.sc actuarial mathematical science', '2019', 69.05, '', 1, '2021-05-15 10:54:52', 0, NULL, 0, NULL, 1),
(5959, 4864, '3', 'anna university', '', 'b e ', '2020', 80.00, '', 1, '2021-05-15 10:57:07', 0, NULL, 0, NULL, 1),
(5960, 4865, '3', 'Anna university ', '', 'B. E ', '2019', 66.00, '', 1, '2021-05-15 12:00:51', 0, NULL, 0, NULL, 1),
(5961, 4865, '2', 'State board ', '', '', '2015', 63.00, '', 1, '2021-05-15 12:01:50', 0, NULL, 0, NULL, 1),
(5962, 4865, '1', 'State board ', '', '', '2013', 81.20, '', 1, '2021-05-15 12:02:24', 0, NULL, 0, NULL, 1),
(5963, 4866, '3', 'Dhaanish Ahmed college of engineering', '', 'B.tech It', '2011', 69.00, '', 1, '2021-05-15 12:12:55', 0, NULL, 0, NULL, 1),
(5964, 4867, '3', 'jntu', '', 'btech eee', '2019', 80.00, '', 1, '2021-05-15 01:01:35', 0, NULL, 0, NULL, 1),
(5965, 4868, '3', 'chaitnaya ', '', 'bba', '2020', 82.00, '', 1, '2021-05-15 01:08:42', 0, NULL, 0, NULL, 1),
(5966, 4869, '3', 'University ', '', 'BBA', '2011', 70.00, '', 1, '2021-05-15 01:47:52', 0, NULL, 0, NULL, 1),
(5967, 4870, '3', 'osmania', '', 'bcom', '2018', 60.00, '', 1, '2021-05-15 01:56:53', 0, NULL, 0, NULL, 1),
(5968, 4871, '4', 'cvit', '', 'mba', '2019', 67.00, '', 1, '2021-05-15 03:01:56', 0, NULL, 0, NULL, 1),
(5969, 4872, '3', 'nagarjuna', '', 'bsc mpcs', '2016', 69.00, '', 1, '2021-05-15 03:30:49', 0, NULL, 0, NULL, 1),
(5970, 4873, '3', 'prist university', '', 'b.tech', '2020', 75.00, '', 1, '2021-05-15 04:14:28', 0, NULL, 0, NULL, 1),
(5971, 4874, '4', 'ssrm institute of science and technology', '', 'mca', '2021', 7.60, '', 1, '2021-05-15 04:28:59', 1, '2021-05-15 04:30:12', 0, NULL, 0),
(5972, 4874, '4', 'srm Institute Of Science And Technology', '', 'mca', '2021', 7.60, '', 1, '2021-05-15 04:30:35', 1, '2021-05-15 04:31:19', 0, NULL, 1),
(5973, 4874, '3', 'vels Institute Of Science And Technology', '', 'bscit', '2017', 7.77, '', 1, '2021-05-15 04:32:05', 0, NULL, 0, NULL, 1),
(5974, 4875, '3', 'madras university', '', 'bio chemistry', '2022', 75.00, '', 1, '2021-05-15 04:52:47', 0, NULL, 0, NULL, 1),
(5975, 4877, '2', 'State board', '', '', '2014', 65.00, '', 1, '2021-05-15 06:52:11', 0, NULL, 0, NULL, 1),
(5976, 4877, '3', 'Thiruvalluvar University ', '', 'Bsc Computer science ', '2017', 75.00, '', 1, '2021-05-15 06:52:57', 0, NULL, 0, NULL, 1),
(5977, 4877, '4', 'Thiruvalluvar University ', '', 'Msc it', '2020', 85.00, '', 1, '2021-05-15 06:53:42', 0, NULL, 0, NULL, 1),
(5978, 4878, '3', 'Anna University', '', 'Bachelor of Engineering', '2021', 82.00, '', 1, '2021-05-15 08:09:29', 0, NULL, 0, NULL, 1),
(5979, 4879, '3', 'Anna university', '', 'BE', '2019', 72.40, '', 1, '2021-05-16 02:50:45', 0, NULL, 0, NULL, 1),
(5980, 4880, '3', 'S.A engineering College(Anna university)', '', 'b.tech', '2020', 75.00, '', 1, '2021-05-17 10:10:51', 1, '2021-05-17 10:12:02', 0, NULL, 1),
(5981, 4880, '2', 'State board', '', '', '2016', 79.33, '', 1, '2021-05-17 10:11:25', 0, NULL, 0, NULL, 1),
(5982, 4880, '1', 'State board', '', '', '2014', 93.20, '', 1, '2021-05-17 10:12:25', 0, NULL, 0, NULL, 1),
(5983, 4881, '3', 'Anna university', '', '', '2017', 70.00, '', 1, '2021-05-17 10:52:34', 0, NULL, 0, NULL, 1),
(5984, 4882, '1', 'cbse', '', '', '2011', 7.20, '', 1, '2021-05-17 11:15:32', 0, NULL, 0, NULL, 1),
(5985, 4882, '2', 'state', '', '', '2013', 67.00, '', 1, '2021-05-17 11:15:48', 0, NULL, 0, NULL, 1),
(5986, 4882, '3', 'madras ', '', 'b.sc cs', '2016', 7.10, '', 1, '2021-05-17 11:16:22', 0, NULL, 0, NULL, 1),
(5987, 4882, '4', 'anna ', '', 'mca', '2018', 7.60, '', 1, '2021-05-17 11:16:54', 0, NULL, 0, NULL, 1),
(5988, 4883, '3', 'Madras University', '', 'Bsc Mathematics', '2020', 68.00, '', 1, '2021-05-17 11:56:57', 0, NULL, 0, NULL, 1),
(5989, 4884, '4', 'Anna university', '', 'M.E', '2012', 66.00, '', 1, '2021-05-17 12:23:51', 0, NULL, 0, NULL, 1),
(5990, 4884, '3', 'Anna university', '', 'B.E', '2009', 60.00, '', 1, '2021-05-17 12:24:37', 0, NULL, 0, NULL, 1),
(5991, 4884, '5', 'Technical', '', 'D.E.E.E', '2005', 72.00, '', 1, '2021-05-17 12:25:07', 0, NULL, 0, NULL, 1),
(5992, 4886, '1', 'Government Boy\'s Higher Secondary School Chinna Salem', '', '', '2013', 87.00, '', 1, '2021-05-17 01:50:06', 0, NULL, 0, NULL, 1),
(5993, 4886, '2', 'Good Shepherd Higher Secondary School Serapattu', '', '', '2015', 75.00, '', 1, '2021-05-17 01:50:41', 0, NULL, 0, NULL, 1),
(5994, 4886, '3', 'St.Anne\'s College of Engineering and Technology', '', 'BE-CSE', '2019', 68.00, '', 1, '2021-05-17 01:51:46', 0, NULL, 0, NULL, 1),
(5995, 4887, '4', 'kakartiya', '', 'mba', '2019', 61.00, '', 1, '2021-05-17 02:47:05', 0, NULL, 0, NULL, 1),
(5996, 4888, '4', 'jntu', '', 'mba', '2019', 70.00, '', 1, '2021-05-17 02:55:09', 0, NULL, 0, NULL, 1),
(5997, 4889, '3', 'sathavahana', '', 'bcom cs', '2014', 61.00, '', 1, '2021-05-17 03:09:37', 0, NULL, 0, NULL, 1),
(5998, 4890, '4', 'osmania', '', 'mba', '2020', 65.00, '', 1, '2021-05-17 03:25:35', 0, NULL, 0, NULL, 1),
(5999, 4891, '3', 'osmania', '', 'b.tech', '2020', 67.00, '', 1, '2021-05-17 03:43:00', 0, NULL, 0, NULL, 1),
(6000, 4892, '5', 'jntu', '', 'ece', '2015', 76.00, '', 1, '2021-05-17 03:53:25', 0, NULL, 0, NULL, 1),
(6001, 4893, '3', 'Nagarjuna university', '', 'Mccs', '2020', 60.00, '', 1, '2021-05-17 04:10:30', 0, NULL, 0, NULL, 1),
(6002, 4894, '3', 'anna univ', '', 'BE CSE', '2017', 6.30, '', 1, '2021-05-17 04:17:22', 0, NULL, 0, NULL, 1),
(6003, 4894, '1', 'matric', '', '', '2011', 81.00, '', 1, '2021-05-17 04:17:41', 0, NULL, 0, NULL, 1),
(6004, 4894, '2', 'matric', '', '', '2013', 73.00, '', 1, '2021-05-17 04:17:52', 0, NULL, 0, NULL, 1),
(6005, 4895, '3', 'madurai kamarajar university', '', 'bsc maths', '2017', 62.00, '', 1, '2021-05-17 04:28:06', 0, NULL, 0, NULL, 1),
(6006, 4897, '3', 'madurai kamarajar university', '', 'b.com ', '2016', 69.00, '', 1, '2021-05-17 04:45:56', 0, NULL, 0, NULL, 1),
(6007, 4897, '2', 'state board', '', '', '2013', 67.00, '', 1, '2021-05-17 04:46:30', 0, NULL, 0, NULL, 1),
(6008, 4897, '1', 'state board', '', '', '2011', 78.00, '', 1, '2021-05-17 04:47:08', 0, NULL, 0, NULL, 1),
(6009, 4898, '3', 'KARPAGAM UNIVERSITY', '', 'BE EEE', '2017', 82.00, '', 1, '2021-05-17 05:01:02', 0, NULL, 0, NULL, 1),
(6010, 4900, '1', 'state board', '', '', '2011', 75.00, '', 1, '2021-05-17 07:08:42', 0, NULL, 0, NULL, 1),
(6011, 4900, '2', 'state borad', '', '', '2013', 70.00, '', 1, '2021-05-17 07:09:00', 0, NULL, 0, NULL, 1),
(6012, 4900, '3', 'periyar university', '', 'bca', '2016', 80.00, '', 1, '2021-05-17 07:09:42', 0, NULL, 0, NULL, 1),
(6013, 4900, '4', 'anna university', '', 'mca', '2018', 82.00, '', 1, '2021-05-17 07:10:05', 0, NULL, 0, NULL, 1),
(6014, 4901, '3', 'Annamalai university', '', 'BCA', '2015', 82.00, '', 1, '2021-05-17 07:15:21', 0, NULL, 0, NULL, 1),
(6015, 4896, '3', 'periyar university', '', 'bsc computer science', '2016', 82.00, '', 1, '2021-05-17 07:30:18', 0, NULL, 0, NULL, 1),
(6016, 4896, '4', 'periyar university', '', 'mca', '2018', 73.00, '', 1, '2021-05-17 07:31:07', 0, NULL, 0, NULL, 1),
(6017, 4902, '4', 'university', '', 'b.e', '2018', 7.30, '', 1, '2021-05-17 08:42:01', 0, NULL, 0, NULL, 1),
(6018, 4903, '3', 'kalasalingam university', '', 'b.tech', '2016', 6.72, '', 1, '2021-05-18 09:57:38', 0, NULL, 0, NULL, 1),
(6019, 4903, '1', 'state board', '', '', '2010', 84.20, '', 1, '2021-05-18 09:58:05', 1, '2021-05-18 09:58:15', 0, NULL, 0),
(6020, 4899, '3', 'Anna University', '', 'BE', '2016', 71.70, '', 1, '2021-05-18 10:14:22', 0, NULL, 0, NULL, 1),
(6021, 4885, '3', 'fx engineering college anna university', '', 'be ece', '2018', 60.50, '', 1, '2021-05-18 12:09:56', 0, NULL, 0, NULL, 1),
(6022, 4908, '3', 'mahatma gandhi', '', 'bsc cs', '2019', 72.00, '', 1, '2021-05-18 03:41:24', 0, NULL, 0, NULL, 1),
(6023, 4909, '4', 'mahathma gandhi', '', 'mba', '2017', 60.00, '', 1, '2021-05-18 03:48:26', 0, NULL, 0, NULL, 1),
(6024, 4907, '4', 'Madras University', '', 'Msc.computer science ', '2021', 85.00, '', 1, '2021-05-18 04:00:52', 0, NULL, 0, NULL, 1),
(6025, 4907, '1', 'State Board', '', '', '2014', 85.00, '', 1, '2021-05-18 04:02:01', 0, NULL, 0, NULL, 1),
(6026, 4907, '3', 'Madras University', '', 'BCA', '2019', 64.00, '', 1, '2021-05-18 04:02:30', 0, NULL, 0, NULL, 1),
(6027, 4907, '2', 'State Board', '', '', '2016', 64.00, '', 1, '2021-05-18 04:02:52', 0, NULL, 0, NULL, 1),
(6028, 4906, '1', 'board', '', '', '2009', 78.00, '', 1, '2021-05-18 04:27:18', 0, NULL, 0, NULL, 1),
(6029, 4906, '2', 'board', '', '', '2011', 76.00, '', 1, '2021-05-18 04:27:31', 0, NULL, 0, NULL, 1),
(6030, 4906, '3', 'university', '', 'b.tech', '2015', 61.00, '', 1, '2021-05-18 04:27:54', 0, NULL, 0, NULL, 1),
(6031, 4911, '4', 'andra', '', 'mba', '2020', 73.00, '', 1, '2021-05-18 04:41:56', 0, NULL, 0, NULL, 1),
(6032, 4912, '3', 'Anna University', '', 'BE', '2017', 72.00, '', 1, '2021-05-18 04:44:31', 0, NULL, 0, NULL, 1),
(6033, 4914, '3', 'jntu', '', 'b.tech ece', '2019', 75.00, '', 1, '2021-05-18 04:57:50', 0, NULL, 0, NULL, 1),
(6034, 4913, '4', 'University of Madras ', '', 'MCA', '2013', 74.00, '', 1, '2021-05-18 05:08:20', 0, NULL, 0, NULL, 1),
(6035, 4904, '3', 'Bharath institute of Higher Education and research', '', 'B.Tech', '2021', 70.00, '', 1, '2021-05-18 05:33:50', 0, NULL, 0, NULL, 1),
(6036, 4916, '3', 'priest university', '', 'b.tech', '2022', 60.00, '', 1, '2021-05-19 10:07:01', 0, NULL, 0, NULL, 1),
(6037, 4917, '5', 'periyar politechnic', '', 'dece', '2018', 75.00, '', 1, '2021-05-19 10:17:55', 0, NULL, 0, NULL, 1),
(6038, 4918, '3', 'barathiyar university', '', 'bba', '2020', 80.00, '', 1, '2021-05-19 10:25:37', 0, NULL, 0, NULL, 1),
(6039, 4919, '3', 'anna university', '', 'be', '2018', 77.00, '', 1, '2021-05-19 10:35:13', 0, NULL, 0, NULL, 1),
(6040, 4921, '3', 'madras university', '', 'nutrition', '2019', 60.00, '', 1, '2021-05-19 10:49:56', 0, NULL, 0, NULL, 1),
(6041, 4920, '3', 'Bs Abdur Rahman University', '', 'B tech', '2015', 6.01, '', 1, '2021-05-19 10:53:25', 0, NULL, 0, NULL, 1),
(6042, 4922, '3', 'pondichery university', '', 'b.tech', '2016', 73.00, '', 1, '2021-05-19 12:27:41', 0, NULL, 0, NULL, 1),
(6043, 4923, '3', 'Misrimal Navajee Munoth Jain Engineering College ', '', 'B.E', '2021', 74.00, '', 1, '2021-05-19 12:38:57', 0, NULL, 0, NULL, 1),
(6044, 4925, '3', 'acharya', '', 'bcom', '2016', 61.00, '', 1, '2021-05-19 02:37:01', 0, NULL, 0, NULL, 1),
(6045, 4926, '3', 'j n n institute of engineering', '', 'b.e. - electronics and communication', '2017', 63.80, '', 1, '2021-05-19 02:58:16', 0, NULL, 0, NULL, 1),
(6046, 4926, '2', 'dhanalakshmi h s s', '', '', '2013', 68.08, '', 1, '2021-05-19 02:58:46', 0, NULL, 0, NULL, 1),
(6047, 4926, '1', 'st marys m h s s', '', '', '2010', 59.00, '', 1, '2021-05-19 02:59:14', 0, NULL, 0, NULL, 1),
(6048, 4927, '3', 'shathavahana', '', 'bcom', '2018', 60.00, '', 1, '2021-05-19 03:36:47', 0, NULL, 0, NULL, 1),
(6049, 4928, '4', 'osmania', '', 'mba', '2020', 63.00, '', 1, '2021-05-19 04:02:53', 0, NULL, 0, NULL, 1),
(6050, 4929, '3', 'palamur', '', 'mba', '2020', 71.00, '', 1, '2021-05-19 04:23:26', 0, NULL, 0, NULL, 1),
(6051, 4930, '3', 'ku', '', 'bcom', '2020', 70.00, '', 1, '2021-05-19 04:45:25', 0, NULL, 0, NULL, 1),
(6052, 4932, '3', 'callorx', '', 'bsc', '2017', 65.00, '', 1, '2021-05-19 05:39:14', 0, NULL, 0, NULL, 1),
(6053, 4933, '3', 'Anna university', '', 'B.Tech', '2020', 73.00, '', 1, '2021-05-19 05:56:59', 0, NULL, 0, NULL, 1),
(6054, 4934, '3', 'prist', '', 'b.e', '2020', 87.00, '', 1, '2021-05-20 11:29:11', 0, NULL, 0, NULL, 1),
(6055, 4935, '3', 'anna university', '', 'BE - Computer Science and Engineering', '2020', 62.00, '', 1, '2021-05-20 11:43:45', 0, NULL, 0, NULL, 1),
(6056, 4935, '2', 'state', '', '', '2016', 72.00, '', 1, '2021-05-20 11:44:14', 0, NULL, 0, NULL, 1),
(6057, 4935, '1', 'state', '', '', '2014', 77.00, '', 1, '2021-05-20 11:44:32', 0, NULL, 0, NULL, 1),
(6058, 4936, '3', 'brm', '', 'bcom', '2020', 70.00, '', 1, '2021-05-20 12:38:09', 0, NULL, 0, NULL, 1),
(6059, 4937, '4', 'vignyanak', '', 'mba', '2021', 62.00, '', 1, '2021-05-20 12:59:17', 0, NULL, 0, NULL, 1),
(6060, 4938, '4', 'central', '', 'mba', '2021', 86.00, '', 1, '2021-05-20 01:24:43', 0, NULL, 0, NULL, 1),
(6061, 4941, '3', 'Anna university', '', 'B.E', '2021', 77.00, '', 1, '2021-05-20 02:19:03', 0, NULL, 0, NULL, 1),
(6062, 4945, '3', 'osmania', '', 'bba', '2021', 86.00, '', 1, '2021-05-20 02:37:33', 0, NULL, 0, NULL, 1),
(6063, 4946, '3', 'Bharathidasan University', '', 'BCA', '2015', 70.00, '', 1, '2021-05-20 02:47:16', 0, NULL, 0, NULL, 1),
(6064, 4946, '1', 'tn', '', '', '2021', 65.00, '', 7, '2021-05-20 02:51:48', 0, NULL, 0, NULL, 1),
(6065, 4944, '3', 'Affiliated to Anna University', '', 'B.E(ECE)', '2014', 65.00, '', 1, '2021-05-20 02:58:12', 0, NULL, 0, NULL, 1),
(6066, 4947, '4', 'AICTE', '', 'Marketing', '2020', 70.00, '', 1, '2021-05-20 03:47:34', 0, NULL, 0, NULL, 1),
(6067, 4947, '4', 'AICTE', '', 'Marketing', '2020', 70.00, '', 1, '2021-05-20 03:52:30', 0, NULL, 0, NULL, 1),
(6068, 4949, '3', 'jntu', '', 'bca', '2018', 69.00, '', 1, '2021-05-20 04:20:56', 0, NULL, 0, NULL, 1),
(6069, 4948, '3', 'JNTUA', '', 'B.Tech', '2020', 66.24, '', 1, '2021-05-20 04:21:34', 0, NULL, 0, NULL, 1),
(6070, 4950, '5', 'Farah Institute of Engineering', '', 'Civil Engineer)', '2016', 69.00, '', 1, '2021-05-20 05:00:44', 0, NULL, 0, NULL, 1),
(6071, 4951, '4', 'Anna university', '', 'MCA', '2020', 66.00, '', 1, '2021-05-20 05:09:39', 0, NULL, 0, NULL, 1),
(6072, 4951, '3', 'Madurai kamaraj University', '', 'B. Sc(IT) ', '2018', 70.00, '', 1, '2021-05-20 05:10:21', 0, NULL, 0, NULL, 1),
(6073, 4951, '2', 'State Board', '', '', '2015', 62.00, '', 1, '2021-05-20 05:16:01', 0, NULL, 0, NULL, 1),
(6074, 4951, '1', 'State board', '', '', '2013', 86.00, '', 1, '2021-05-20 05:16:31', 0, NULL, 0, NULL, 1),
(6075, 4952, '3', 'University of madras ', '', 'Bsc(Maths with Computer Application) ', '2020', 74.00, '', 1, '2021-05-20 05:35:19', 0, NULL, 0, NULL, 1),
(6076, 4940, '3', 'madras university', '', 'B.A ENGLISH', '2021', 70.00, '', 1, '2021-05-21 11:15:03', 0, NULL, 0, NULL, 1),
(6077, 4956, '4', 'Madras University', '', 'MBA HR', '2020', 68.00, '', 1, '2021-05-21 12:02:01', 0, NULL, 0, NULL, 1),
(6078, 4955, '2', 'tamil nadu state board', '', '', '2017', 78.25, '', 1, '2021-05-21 12:03:27', 0, NULL, 0, NULL, 1),
(6079, 4955, '1', 'tamil nadu state board', '', '', '2015', 91.00, '', 1, '2021-05-21 12:04:29', 0, NULL, 0, NULL, 1),
(6080, 4953, '1', 'state board', '', '', '2014', 94.00, '', 1, '2021-05-21 12:04:42', 0, NULL, 0, NULL, 1),
(6081, 4953, '2', 'state board', '', '', '2016', 82.40, '', 1, '2021-05-21 12:05:18', 0, NULL, 0, NULL, 1),
(6082, 4953, '3', 'university', '', 'bca', '2019', 79.00, '', 1, '2021-05-21 12:05:48', 0, NULL, 0, NULL, 1),
(6083, 4957, '3', 'Sastra university', '', 'Btech CSE', '2021', 73.00, '', 1, '2021-05-21 01:00:00', 0, NULL, 0, NULL, 1),
(6084, 4958, '3', 'Jaya engineering college ', '', 'Btech IT', '2017', 64.00, '', 1, '2021-05-21 01:14:52', 0, NULL, 0, NULL, 1),
(6085, 4959, '3', 'Anna university', '', 'B.E- ECE', '2017', 72.50, '', 1, '2021-05-21 01:25:12', 0, NULL, 0, NULL, 1),
(6086, 4961, '3', 'S.R.R ENGINEERING COLLEGE', '', 'BE MECHANICAL ENGINEERING', '2016', 64.30, '', 1, '2021-05-21 03:59:39', 0, NULL, 0, NULL, 1),
(6087, 4961, '2', 'State board', '', '', '2012', 74.30, '', 1, '2021-05-21 04:00:17', 0, NULL, 0, NULL, 1),
(6088, 4961, '1', 'State board', '', '', '2010', 80.00, '', 1, '2021-05-21 04:00:37', 0, NULL, 0, NULL, 1),
(6089, 4963, '3', 'Anna university', '', 'Bachelor of engineering', '2018', 6.50, '', 1, '2021-05-23 07:09:37', 0, NULL, 0, NULL, 1),
(6090, 4963, '2', 'Government boys hr sec school Katpadi', '', '', '2014', 55.00, '', 1, '2021-05-23 07:11:11', 0, NULL, 0, NULL, 1),
(6091, 4965, '3', 'anna university', '', 'b.tech IT', '2019', 70.00, '', 1, '2021-05-25 11:43:12', 0, NULL, 0, NULL, 1),
(6092, 4967, '3', 'osmania', '', 'bcom', '2020', 77.00, '', 1, '2021-05-25 12:28:39', 0, NULL, 0, NULL, 1),
(6093, 4968, '3', 'sk', '', 'bsc mecs', '2019', 85.00, '', 1, '2021-05-25 12:53:33', 0, NULL, 0, NULL, 1),
(6094, 4969, '3', 'jntu', '', 'mecha', '2018', 73.00, '', 1, '2021-05-25 02:09:52', 0, NULL, 0, NULL, 1),
(6095, 4971, '3', 'Anna University', '', 'B.E', '2017', 6.40, '', 1, '2021-05-25 03:57:39', 0, NULL, 0, NULL, 1),
(6096, 4970, '3', 'periyar University ', '', 'b.com', '2021', 50.00, '', 1, '2021-05-25 04:18:14', 0, NULL, 0, NULL, 1),
(6097, 4972, '3', 'Bharath University', '', 'B.Tech, ECE', '2015', 68.00, '', 1, '2021-05-25 04:35:25', 0, NULL, 0, NULL, 1),
(6098, 4973, '3', 'Rvs college of engineering and technology', '', 'BE', '2016', 64.00, '', 1, '2021-05-25 04:42:06', 0, NULL, 0, NULL, 1),
(6099, 4973, '2', 'Hindu higher secondary school', '', '', '2012', 50.00, '', 1, '2021-05-25 04:42:36', 0, NULL, 0, NULL, 1),
(6100, 4973, '1', 'Government High school', '', '', '2010', 78.00, '', 1, '2021-05-25 04:42:56', 0, NULL, 0, NULL, 1),
(6101, 4962, '3', 'vel tech high tech engineering college', '', 'b.tech', '2021', 66.80, '', 1, '2021-05-25 05:38:12', 0, NULL, 0, NULL, 1),
(6102, 4962, '2', 'state board', '', '', '2017', 74.50, '', 1, '2021-05-25 05:38:43', 0, NULL, 0, NULL, 1),
(6103, 4962, '1', 'state board', '', '', '2015', 92.00, '', 1, '2021-05-25 05:39:09', 0, NULL, 0, NULL, 1),
(6104, 4964, '1', 'State board ', '', '', '2014', 71.20, '', 1, '2021-05-26 09:17:18', 0, NULL, 0, NULL, 1),
(6105, 4964, '2', 'State board ', '', '', '2016', 62.00, '', 1, '2021-05-26 09:17:49', 0, NULL, 0, NULL, 1),
(6106, 4964, '3', 'Madras university ', '', 'B.SC (computer science)', '2019', 65.00, '', 1, '2021-05-26 09:18:28', 0, NULL, 0, NULL, 1),
(6107, 4974, '3', 'Anna University', '', 'BE', '2021', 65.55, '', 1, '2021-05-26 10:52:12', 0, NULL, 0, NULL, 1),
(6108, 4975, '4', 'osmania', '', 'mba', '2017', 73.00, '', 1, '2021-05-26 11:12:23', 0, NULL, 0, NULL, 1),
(6109, 4954, '3', 'anna university', '', 'b.e. mechanical engineering', '2021', 75.00, '', 1, '2021-05-26 11:18:09', 0, NULL, 0, NULL, 1),
(6110, 4977, '3', 'osmania', '', 'bba', '2021', 76.00, '', 1, '2021-05-26 11:56:41', 0, NULL, 0, NULL, 1),
(6111, 4978, '4', 'osmania', '', 'mba', '2021', 75.00, '', 1, '2021-05-26 12:13:20', 0, NULL, 0, NULL, 1),
(6112, 4979, '3', 'osmania', '', 'bba', '2020', 8.20, '', 1, '2021-05-26 02:17:45', 0, NULL, 0, NULL, 1),
(6113, 4980, '3', 'SRR Engineering college', '', 'BE', '2016', 65.00, '', 1, '2021-05-26 05:58:33', 0, NULL, 0, NULL, 1),
(6114, 4983, '4', 'Bharathidasan University', '', 'MCA', '2016', 75.00, '', 1, '2021-05-26 07:13:15', 0, NULL, 0, NULL, 1),
(6115, 4981, '4', 'Madras University', '', 'MCA', '2021', 70.00, '', 1, '2021-05-26 09:42:46', 0, NULL, 0, NULL, 1),
(6116, 4985, '1', 'state board', '', '', '2011', 71.00, '', 1, '2021-05-27 09:45:53', 0, NULL, 0, NULL, 1),
(6117, 4985, '2', 'state board', '', '', '2014', 76.00, '', 1, '2021-05-27 09:46:13', 0, NULL, 0, NULL, 1),
(6118, 4985, '3', 'anna university', '', 'b.e', '2018', 75.50, '', 1, '2021-05-27 09:46:48', 0, NULL, 0, NULL, 1),
(6119, 4986, '1', 'state board', '', '', '2010', 65.80, '', 1, '2021-05-27 10:01:20', 0, NULL, 0, NULL, 1),
(6120, 4986, '2', 'state board', '', '', '2012', 55.00, '', 1, '2021-05-27 10:01:57', 0, NULL, 0, NULL, 1),
(6121, 4986, '3', 'Periyar University', '', 'b.sc.', '2015', 79.00, '', 1, '2021-05-27 10:06:32', 0, NULL, 0, NULL, 1),
(6122, 4986, '4', 'Periyar University', '', 'm.sc.', '2017', 71.00, '', 1, '2021-05-27 10:07:00', 0, NULL, 0, NULL, 1),
(6123, 4988, '3', 'Sri Ramakrishna engineering College', '', 'B.E', '2019', 73.00, '', 1, '2021-05-27 11:13:15', 0, NULL, 0, NULL, 1),
(6124, 4990, '3', 'University ', '', 'B. E', '2021', 7.80, '', 1, '2021-05-27 11:31:19', 0, NULL, 0, NULL, 1),
(6125, 4990, '2', 'Board', '', '', '2017', 92.20, '', 1, '2021-05-27 11:32:04', 0, NULL, 0, NULL, 1),
(6126, 4990, '1', 'Board', '', '', '2015', 98.40, '', 1, '2021-05-27 11:32:28', 0, NULL, 0, NULL, 1),
(6127, 4991, '4', 'Anna university', '', 'MCA', '2020', 73.00, '', 1, '2021-05-27 11:38:03', 0, NULL, 0, NULL, 1),
(6128, 4993, '3', 'osmania', '', 'bsc biotechnology', '2018', 69.00, '', 1, '2021-05-27 12:33:30', 0, NULL, 0, NULL, 1),
(6129, 4995, '3', 'swamy vivekanadha ', '', 'ba literature', '2019', 70.00, '', 1, '2021-05-27 01:06:26', 0, NULL, 0, NULL, 1),
(6130, 4996, '3', 'jntu', '', 'btech', '2020', 60.00, '', 1, '2021-05-27 02:41:19', 0, NULL, 0, NULL, 1),
(6131, 4998, '4', 'central', '', 'mba', '2020', 71.00, '', 1, '2021-05-27 02:50:55', 0, NULL, 0, NULL, 1),
(6132, 1647, '3', 'Sathyabama University ', '', 'B.e.cse', '2019', 6.53, '', 1, '2021-05-27 03:34:33', 0, NULL, 0, NULL, 1),
(6133, 4999, '3', 'osmania', '', 'bsc', '2020', 76.00, '', 1, '2021-05-27 03:50:48', 0, NULL, 0, NULL, 1),
(6134, 5002, '4', 'Anna university', '', 'MCA', '2013', 75.00, '', 1, '2021-05-27 05:42:19', 0, NULL, 0, NULL, 1),
(6135, 5000, '1', 'cbse', '', '', '2014', 62.00, '', 1, '2021-05-27 06:04:21', 1, '2021-05-27 06:04:30', 0, NULL, 1),
(6136, 5000, '2', 'cbse', '', '', '2016', 87.60, '', 1, '2021-05-27 06:04:48', 0, NULL, 0, NULL, 1),
(6137, 5000, '3', 'University of Madras', '', 'bca', '2019', 75.60, '', 1, '2021-05-27 06:05:38', 0, NULL, 0, NULL, 1),
(6138, 5004, '3', 'Anna University ', '', 'B.Tech', '2021', 77.00, '', 1, '2021-05-27 06:18:32', 0, NULL, 0, NULL, 1),
(6139, 5005, '3', 'university', '', 'bsc', '2020', 77.50, '', 1, '2021-05-28 11:36:18', 0, NULL, 0, NULL, 1),
(6140, 5007, '4', 'jntu', '', 'mba', '2020', 87.00, '', 1, '2021-05-28 11:44:40', 0, NULL, 0, NULL, 1),
(6141, 4994, '3', 'Alagappa University', '', 'B.voc', '2021', 77.00, '', 1, '2021-05-28 11:48:12', 0, NULL, 0, NULL, 1),
(6142, 5008, '3', 'University', '', 'BCA', '2020', 78.00, '', 1, '2021-05-28 01:07:31', 0, NULL, 0, NULL, 1),
(6143, 5009, '4', 'University', '', 'MCA', '2021', 85.00, '', 1, '2021-05-28 02:50:06', 0, NULL, 0, NULL, 1),
(6144, 5010, '3', 'osmania', '', 'bcom cs', '2021', 80.00, '', 1, '2021-05-28 02:54:49', 0, NULL, 0, NULL, 1),
(6145, 5011, '4', 'osmania', '', 'mba', '2022', 65.00, '', 1, '2021-05-28 03:10:53', 0, NULL, 0, NULL, 1),
(6146, 5011, '3', 'kakateyya', '', 'bsc maths', '2017', 65.00, '', 1, '2021-05-28 03:11:11', 0, NULL, 0, NULL, 1),
(6147, 5012, '3', 'osmania', '', 'bsc cs', '2020', 67.00, '', 1, '2021-05-28 03:25:51', 0, NULL, 0, NULL, 1),
(6148, 5013, '3', 'Anna University', '', 'B.E', '2021', 85.00, '', 1, '2021-05-28 04:29:00', 0, NULL, 0, NULL, 1),
(6149, 5015, '3', 'Anna university', '', 'B. Tech', '2019', 62.00, '', 1, '2021-05-28 04:37:24', 0, NULL, 0, NULL, 1),
(6150, 5017, '1', 'Govt (A.D.W) hr.Sec School', '', '', '2011', 88.00, '', 1, '2021-05-28 05:18:16', 0, NULL, 0, NULL, 1),
(6151, 5017, '2', 'Cheran he.Sec School', '', '', '2013', 66.00, '', 1, '2021-05-28 05:18:53', 0, NULL, 0, NULL, 1),
(6152, 5017, '3', 'Govt Arts College (Autonomous)', '', 'B.Sc(Computer Science)', '2018', 70.00, '', 1, '2021-05-28 05:19:36', 0, NULL, 0, NULL, 1),
(6153, 5017, '4', 'Govt Arts College (Autonomous)', '', 'M.Sc(Computer Science)', '2020', 80.00, '', 1, '2021-05-28 05:20:22', 0, NULL, 0, NULL, 1),
(6154, 5018, '3', 'rk', '', 'bcom', '2019', 90.00, '', 1, '2021-05-29 12:00:24', 0, NULL, 0, NULL, 1),
(6155, 5019, '3', 'Government College of Engineering, Tirunelveli', '', 'BE', '2019', 80.90, '', 1, '2021-05-29 01:42:33', 0, NULL, 0, NULL, 1),
(6156, 5019, '2', 'TN State Board', '', '', '2015', 93.75, '', 1, '2021-05-29 01:43:33', 0, NULL, 0, NULL, 1),
(6157, 5019, '1', 'TN State board', '', '', '2013', 96.20, '', 1, '2021-05-29 01:44:18', 0, NULL, 0, NULL, 1),
(6158, 5020, '3', 'kakarteeya', '', 'bcom', '2018', 69.00, '', 1, '2021-05-29 02:04:38', 0, NULL, 0, NULL, 1),
(6159, 5021, '3', 'jntu', '', 'btech', '2017', 55.00, '', 1, '2021-05-29 02:53:59', 0, NULL, 0, NULL, 1),
(6160, 5022, '3', 'Jeppiaar Srr engineering college ', '', 'Bachelor of technology ', '2021', 75.00, '', 1, '2021-05-29 03:54:08', 0, NULL, 0, NULL, 1),
(6161, 5022, '1', 'Sri Jayendra saraswathi swamigal golden jubilee matriculation higher secondary school ', '', '', '2015', 90.00, '', 1, '2021-05-29 03:54:51', 0, NULL, 0, NULL, 1),
(6162, 5022, '2', 'Sri Jayendra saraswathi swamigal golden jubilee matriculation higher secondary school ', '', '', '2017', 78.00, '', 1, '2021-05-29 03:55:52', 0, NULL, 0, NULL, 1),
(6163, 5023, '3', 'anna univerity', '', 'be/cse', '2020', 65.00, '', 1, '2021-05-29 04:28:07', 0, NULL, 0, NULL, 1),
(6164, 5023, '1', 'state board', '', '', '2014', 83.00, '', 1, '2021-05-29 04:28:50', 0, NULL, 0, NULL, 1),
(6165, 5003, '3', 'anna university', '', 'be', '2020', 7.20, '', 1, '2021-05-31 10:33:53', 1, '2021-05-31 10:34:21', 0, NULL, 1),
(6166, 5024, '3', 'ku', '', 'bcom', '2020', 60.00, '', 1, '2021-05-31 11:17:28', 0, NULL, 0, NULL, 1),
(6167, 5025, '3', 'jntu', '', 'cse', '2018', 58.00, '', 1, '2021-05-31 11:59:05', 0, NULL, 0, NULL, 1),
(6168, 5026, '3', 'jntu', '', 'btech eee', '2018', 53.00, '', 1, '2021-05-31 12:08:07', 0, NULL, 0, NULL, 1),
(6169, 5027, '3', 'osmania', '', 'bcom', '2021', 80.00, '', 1, '2021-05-31 01:11:30', 0, NULL, 0, NULL, 1),
(6170, 5029, '3', 'Ramakrishna Mission Vivekanadha College', '', 'BCA', '2019', 72.00, '', 1, '2021-05-31 01:24:10', 0, NULL, 0, NULL, 1),
(6171, 5028, '4', 'Anna University ', '', 'MCA', '2021', 70.00, '', 1, '2021-05-31 01:25:42', 0, NULL, 0, NULL, 1),
(6172, 5028, '3', 'Alagappa University ', '', 'BCA', '2019', 63.00, '', 1, '2021-05-31 01:26:09', 0, NULL, 0, NULL, 1),
(6173, 5028, '2', 'State Board ', '', '', '2016', 80.00, '', 1, '2021-05-31 01:26:44', 0, NULL, 0, NULL, 1),
(6174, 5028, '1', 'State Board ', '', '', '2014', 90.00, '', 1, '2021-05-31 01:27:12', 0, NULL, 0, NULL, 1),
(6175, 5030, '3', 'University', '', 'B. E(Computer Science and Engineering)', '2021', 71.00, '', 1, '2021-05-31 03:17:20', 0, NULL, 0, NULL, 1),
(6176, 5033, '4', 'Avanthi Institute ', '', 'mba', '2019', 76.00, '', 1, '2021-06-01 12:37:02', 0, NULL, 0, NULL, 1),
(6177, 5034, '4', 'Madurai Kamaraj University', '', 'MCA', '2018', 71.00, '', 1, '2021-06-01 12:57:01', 0, NULL, 0, NULL, 1),
(6178, 5034, '3', 'Madurai Kamaraj University', '', 'BCA', '2016', 72.00, '', 1, '2021-06-01 12:57:54', 0, NULL, 0, NULL, 1),
(6179, 5036, '4', 'University of Madras ', '', 'MCA', '2021', 7.50, '', 1, '2021-06-01 01:52:15', 1, '2021-06-01 01:53:41', 0, NULL, 0),
(6180, 5036, '1', 'State Board', '', '', '2014', 93.00, '', 1, '2021-06-01 01:53:21', 0, NULL, 0, NULL, 1),
(6181, 5037, '3', 'bannari amman institute of technology', '', 'btech information technology', '2019', 6.53, '', 1, '2021-06-01 01:54:09', 0, NULL, 0, NULL, 1),
(6182, 5036, '2', 'State board', '', '', '2016', 79.80, '', 1, '2021-06-01 01:54:21', 0, NULL, 0, NULL, 1),
(6183, 5037, '1', 'state board', '', '', '2013', 75.00, '', 1, '2021-06-01 01:55:32', 1, '2021-06-01 01:55:52', 0, NULL, 1),
(6184, 5036, '3', 'University of Madras ', '', 'B. Sc. Computer Science ', '2019', 75.00, '', 1, '2021-06-01 01:55:41', 0, NULL, 0, NULL, 1),
(6185, 5036, '4', 'University of Madras ', '', 'MCA', '2021', 75.00, '', 1, '2021-06-01 01:56:15', 0, NULL, 0, NULL, 1),
(6186, 5037, '2', 'state board', '', '', '2015', 63.00, '', 1, '2021-06-01 01:56:21', 0, NULL, 0, NULL, 1),
(6187, 5038, '4', 'University of Madras', '', 'MCA', '2020', 60.00, '', 1, '2021-06-01 02:28:50', 0, NULL, 0, NULL, 1),
(6188, 5039, '1', 'General', '', '', '2008', 81.00, '', 1, '2021-06-01 03:30:05', 0, NULL, 0, NULL, 1),
(6189, 5039, '5', 'D.O.T.E', '', 'Diploma in Computer Technology', '2011', 93.00, '', 1, '2021-06-01 03:30:57', 0, NULL, 0, NULL, 1),
(6190, 5039, '3', 'S. A Engineering College', '', 'B. E In Computer science and engineering', '2014', 76.00, '', 1, '2021-06-01 03:33:24', 0, NULL, 0, NULL, 1),
(6191, 5040, '3', 'Anna university ', '', 'B. E cse', '2019', 62.00, '', 1, '2021-06-01 03:47:35', 0, NULL, 0, NULL, 1),
(6192, 5041, '1', 'WEST BENGAL BOARD OF SECONDARY EDUCATION', '', 'B.Tech', '2009', 79.76, '', 1, '2021-06-01 05:20:01', 1, '2021-06-01 05:26:52', 0, NULL, 1),
(6193, 5041, '2', 'WEST BENGAL COUNCIL OF HIGHER SECONDARY EDUCATION', '', '', '2011', 82.20, '', 1, '2021-06-01 05:24:35', 0, NULL, 0, NULL, 1),
(6194, 5041, '3', 'Maulana Abul Kalam Azad University of Technology', '', 'B.Tech', '2015', 85.60, '', 1, '2021-06-01 05:25:35', 0, NULL, 0, NULL, 1),
(6195, 5042, '3', 'anna university', '', 'b.e - cse', '2020', 65.00, '', 1, '2021-06-01 05:58:22', 1, '2021-06-01 06:00:21', 0, NULL, 1),
(6196, 5042, '2', 'dhivy metric higher secondary school', '', '', '2016', 90.00, '', 1, '2021-06-01 05:59:06', 0, NULL, 0, NULL, 1),
(6197, 5042, '1', 'government of tamilnadu', '', '', '2014', 90.00, '', 1, '2021-06-01 05:59:53', 0, NULL, 0, NULL, 1),
(6198, 5043, '3', 'Anna university', '', 'BE-CSE', '2017', 72.00, '', 1, '2021-06-01 06:48:51', 0, NULL, 0, NULL, 1),
(6199, 5044, '2', 'govt high school', '', '', '2013', 70.00, '', 1, '2021-06-01 07:36:35', 0, NULL, 0, NULL, 1),
(6200, 5044, '4', 'periya demed', '', 'mba', '2020', 8.92, '', 1, '2021-06-01 07:37:41', 0, NULL, 0, NULL, 1),
(6201, 5035, '1', 'tamilnadu state board', '', '', '2009', 58.50, '', 1, '2021-06-01 09:04:02', 0, NULL, 0, NULL, 1),
(6202, 5035, '5', 'department of technical education', '', 'electronics and communications', '2014', 91.35, '', 1, '2021-06-01 09:04:58', 0, NULL, 0, NULL, 1),
(6203, 5045, '3', 'K Ramakrishnan college of Technology', '', 'B.E - EEE', '2021', 7.89, '', 1, '2021-06-02 01:24:11', 0, NULL, 0, NULL, 1),
(6204, 5045, '1', 'State board', '', '', '2015', 96.40, '', 1, '2021-06-02 01:24:48', 0, NULL, 0, NULL, 1),
(6205, 5045, '2', 'State board', '', '', '2017', 76.00, '', 1, '2021-06-02 01:25:18', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6206, 5046, '3', 'osmania', '', 'bsc ', '2021', 74.00, '', 1, '2021-06-02 01:48:17', 0, NULL, 0, NULL, 1),
(6207, 5047, '3', 'jntu', '', 'bcom', '2020', 60.00, '', 1, '2021-06-02 02:36:38', 0, NULL, 0, NULL, 1),
(6208, 5048, '3', 'ANNA university', '', 'BE/EEE', '2020', 68.00, '', 1, '2021-06-02 02:52:34', 0, NULL, 0, NULL, 1),
(6209, 5050, '4', 'thiruvalluvar university', '', 'MSc(Information Technology)', '2020', 73.00, '', 1, '2021-06-03 12:42:32', 0, NULL, 0, NULL, 1),
(6210, 5051, '1', 'singaram pillay matric hr school', '', '', '2005', 74.64, '', 1, '2021-06-03 02:15:07', 0, NULL, 0, NULL, 1),
(6211, 5051, '2', 'Velammal Matric. Hr. Sec. School', '', '', '2007', 79.25, '', 1, '2021-06-03 02:15:59', 0, NULL, 0, NULL, 1),
(6212, 5051, '3', 'Velammal College of Engineering and Technology, Anna University – Tirunelveli', '', 'B.E. Computer Science and Engineering', '2011', 71.81, '', 1, '2021-06-03 02:16:49', 0, NULL, 0, NULL, 1),
(6213, 5051, '4', 'R. M. D. Engineering College, Anna University – Chennai', '', 'M.E. Computer Science and Engineering', '2013', 75.80, '', 1, '2021-06-03 02:17:45', 0, NULL, 0, NULL, 1),
(6214, 5053, '4', 'prist', '', 'msc', '2020', 82.00, '', 1, '2021-06-04 09:32:04', 0, NULL, 0, NULL, 1),
(6215, 5054, '3', 'anna university', '', 'b.e', '2017', 67.00, '', 1, '2021-06-04 11:09:36', 0, NULL, 0, NULL, 1),
(6216, 5055, '3', 'Srinivasan engineering college', '', 'BE/CSE', '2017', 63.00, '', 1, '2021-06-04 02:08:19', 0, NULL, 0, NULL, 1),
(6217, 5056, '3', 'anna university affiliated - rgce', '', 'be mechanical engineer', '2016', 70.00, '', 1, '2021-06-04 02:42:18', 0, NULL, 0, NULL, 1),
(6218, 5056, '2', 'grace mat hr sec school', '', '', '2012', 74.25, '', 1, '2021-06-04 02:42:52', 0, NULL, 0, NULL, 1),
(6219, 5056, '1', 'grace mat hr sec school', '', '', '2010', 71.60, '', 1, '2021-06-04 02:43:17', 0, NULL, 0, NULL, 1),
(6220, 5057, '3', 'University of Madras', '', 'B.com', '2019', 65.00, '', 1, '2021-06-04 02:49:56', 0, NULL, 0, NULL, 1),
(6221, 5058, '3', 'Bharathidasan university', '', 'B.com CA', '2017', 78.00, '', 1, '2021-06-04 02:57:25', 0, NULL, 0, NULL, 1),
(6222, 5059, '3', 'Madras university', '', 'BCA', '2018', 70.00, '', 1, '2021-06-04 05:09:09', 0, NULL, 0, NULL, 1),
(6223, 5059, '1', 'State board', '', '', '2015', 65.00, '', 1, '2021-06-04 05:17:44', 0, NULL, 0, NULL, 1),
(6224, 5061, '3', 'mgr', '', 'b.com', '2022', 60.00, '', 1, '2021-06-05 08:44:32', 0, NULL, 0, NULL, 1),
(6225, 5062, '3', 'autonomus', '', 'btech', '2018', 65.00, '', 1, '2021-06-05 09:14:38', 0, NULL, 0, NULL, 1),
(6226, 5064, '3', 'Anna university ', '', 'BE', '2016', 69.00, '', 1, '2021-06-05 09:31:29', 0, NULL, 0, NULL, 1),
(6227, 5065, '1', 'state board', '', '', '2013', 60.00, '', 1, '2021-06-05 09:40:26', 0, NULL, 0, NULL, 1),
(6228, 5067, '5', 'venkateshwara', '', 'mechanical', '2014', 63.00, '', 1, '2021-06-05 10:42:47', 0, NULL, 0, NULL, 1),
(6229, 5068, '3', 'bangalore', '', 'bba', '2020', 72.00, '', 1, '2021-06-05 11:13:15', 0, NULL, 0, NULL, 1),
(6230, 5066, '2', 'State board', '', '', '2018', 54.00, '', 1, '2021-06-05 11:59:09', 0, NULL, 0, NULL, 1),
(6231, 5069, '3', 'osmania', '', 'bcom', '2022', 70.00, '', 1, '2021-06-05 02:14:17', 0, NULL, 0, NULL, 1),
(6232, 5070, '4', 'central', '', 'mba', '2016', 63.00, '', 1, '2021-06-05 03:23:37', 0, NULL, 0, NULL, 1),
(6233, 5071, '4', 'mgu', '', 'mba', '2018', 62.00, '', 1, '2021-06-05 03:46:17', 0, NULL, 0, NULL, 1),
(6234, 5073, '3', 's r m university', '', 'b. tech', '2013', 70.00, '', 1, '2021-06-07 12:55:21', 0, NULL, 0, NULL, 1),
(6235, 5073, '1', 'i c s e ', '', '', '2007', 75.00, '', 1, '2021-06-07 12:55:54', 0, NULL, 0, NULL, 1),
(6236, 5073, '2', 'state board', '', '', '2009', 79.00, '', 1, '2021-06-07 12:56:14', 0, NULL, 0, NULL, 1),
(6237, 5074, '3', 'Ramakrishna mission Vivekananda college', '', 'B.com Bank management', '2017', 60.00, '', 1, '2021-06-07 01:05:15', 0, NULL, 0, NULL, 1),
(6238, 5075, '3', 'Anna University-prince shri venkateshwara padmavathy engineering college', '', 'B.E ( E.C.E)', '2016', 76.00, '', 1, '2021-06-07 02:43:43', 0, NULL, 0, NULL, 1),
(6239, 5075, '2', 'State board', '', '', '2012', 87.00, '', 1, '2021-06-07 02:44:23', 0, NULL, 0, NULL, 1),
(6240, 5075, '1', 'State board', '', '', '2010', 94.00, '', 1, '2021-06-07 02:44:42', 0, NULL, 0, NULL, 1),
(6241, 5077, '3', 'JNTUA', '', 'B. Tech ', '2014', 63.02, '', 1, '2021-06-07 03:26:32', 0, NULL, 0, NULL, 1),
(6242, 5077, '5', 'SBTET', '', 'DCME', '2011', 66.44, '', 1, '2021-06-07 03:30:08', 0, NULL, 0, NULL, 1),
(6243, 5076, '5', 'Directorate of Technical Education', '', 'DIPLOMA IN INFORMATION TECHNOLOGY', '2010', 69.50, '', 1, '2021-06-07 06:26:28', 0, NULL, 0, NULL, 1),
(6244, 5076, '1', 'State Board', '', '', '2007', 70.00, '', 1, '2021-06-07 06:26:51', 0, NULL, 0, NULL, 1),
(6245, 5078, '4', 'osmania', '', 'mba', '2020', 62.00, '', 1, '2021-06-08 10:26:31', 0, NULL, 0, NULL, 1),
(6246, 5079, '4', 'osmania', '', 'mba', '2020', 75.00, '', 1, '2021-06-08 12:41:56', 0, NULL, 0, NULL, 1),
(6247, 5080, '3', 'osmania', '', 'bba', '2020', 80.00, '', 1, '2021-06-09 09:29:27', 0, NULL, 0, NULL, 1),
(6248, 5082, '4', 'jntu', '', 'mba', '2019', 72.00, '', 1, '2021-06-09 09:49:37', 0, NULL, 0, NULL, 1),
(6249, 5083, '3', 'madras', '', 'bcom', '2016', 65.00, '', 1, '2021-06-09 10:09:00', 0, NULL, 0, NULL, 1),
(6250, 5084, '3', 'kakarteeya', '', 'science', '2019', 68.00, '', 1, '2021-06-09 10:59:59', 0, NULL, 0, NULL, 1),
(6251, 5085, '3', 'spbc', '', 'mechanical', '2017', 72.00, '', 1, '2021-06-09 11:27:53', 0, NULL, 0, NULL, 1),
(6252, 5086, '3', 'malayasian university', '', 'hotel management', '2017', 63.00, '', 1, '2021-06-09 03:32:31', 0, NULL, 0, NULL, 1),
(6253, 5087, '3', 'mgr', '', 'bsc computerscience', '2021', 40.00, '', 1, '2021-06-09 03:41:21', 0, NULL, 0, NULL, 1),
(6254, 5088, '3', 'savitha ', '', 'be', '2021', 75.00, '', 1, '2021-06-09 03:47:00', 0, NULL, 0, NULL, 1),
(6255, 5089, '4', 'madras', '', 'msc statistics', '2021', 87.00, '', 1, '2021-06-09 05:03:07', 0, NULL, 0, NULL, 1),
(6256, 5092, '3', 'anna university', '', 'b.e', '2021', 70.00, '', 1, '2021-06-09 05:50:10', 0, NULL, 0, NULL, 1),
(6257, 5092, '2', 'montfort her sce school', '', '', '2017', 69.00, '', 1, '2021-06-09 05:50:42', 0, NULL, 0, NULL, 1),
(6258, 5092, '1', 'r.c.m. high school ', '', '', '2015', 80.00, '', 1, '2021-06-09 05:51:06', 0, NULL, 0, NULL, 1),
(6259, 5091, '3', 'MazharUloom boys College', '', 'BBA', '2017', 78.00, '', 1, '2021-06-09 05:55:46', 0, NULL, 0, NULL, 1),
(6260, 5091, '1', 'Concardia hr sec school', '', '', '2011', 81.00, '', 1, '2021-06-09 05:56:45', 0, NULL, 0, NULL, 1),
(6261, 5091, '2', 'Concardia hr sec school', '', '', '2013', 77.00, '', 1, '2021-06-09 05:57:33', 0, NULL, 0, NULL, 1),
(6262, 5081, '3', 'anna university', '', 'be computer science and engineering', '2020', 60.00, '', 1, '2021-06-09 09:53:31', 0, NULL, 0, NULL, 1),
(6263, 5081, '2', 'state board ', '', '', '2016', 77.00, '', 1, '2021-06-09 09:54:07', 0, NULL, 0, NULL, 1),
(6264, 5081, '1', 'state board', '', '', '2014', 77.00, '', 1, '2021-06-09 09:54:27', 0, NULL, 0, NULL, 1),
(6265, 5093, '3', 'osmania', '', 'bcom', '2016', 50.00, '', 1, '2021-06-10 09:33:27', 0, NULL, 0, NULL, 1),
(6266, 5094, '4', 'ou', '', 'mba', '2018', 63.00, '', 1, '2021-06-10 10:21:44', 0, NULL, 0, NULL, 1),
(6267, 5095, '3', 'ou', '', 'bcom', '2016', 55.00, '', 1, '2021-06-10 10:26:21', 0, NULL, 0, NULL, 1),
(6268, 5096, '3', 'kakarteeya', '', 'mba', '2017', 66.00, '', 1, '2021-06-10 12:14:20', 0, NULL, 0, NULL, 1),
(6269, 5099, '3', 'PRIST UNIVERSITY', '', 'B TECH', '2020', 67.00, '', 1, '2021-06-10 12:44:57', 0, NULL, 0, NULL, 1),
(6270, 5099, '1', 'CBSE', '', '', '2010', 68.00, '', 1, '2021-06-10 12:45:27', 0, NULL, 0, NULL, 1),
(6271, 5099, '2', 'STATE BOARD', '', '', '2012', 60.00, '', 1, '2021-06-10 12:45:44', 0, NULL, 0, NULL, 1),
(6272, 5097, '3', 'Anna University ', '', 'B.E. in Electrical and Electronics Engineering dep', '2013', 70.00, '', 1, '2021-06-10 12:50:51', 0, NULL, 0, NULL, 1),
(6273, 5098, '3', 'Madras university', '', 'BCA', '2016', 62.00, '', 1, '2021-06-10 12:55:55', 0, NULL, 0, NULL, 1),
(6274, 5101, '3', 'Madras University', '', 'Bsc computer science', '2018', 74.00, '', 1, '2021-06-10 01:55:24', 0, NULL, 0, NULL, 1),
(6275, 5102, '3', 'Annamalai university', '', 'Bsc computer science', '2019', 65.00, '', 1, '2021-06-11 12:02:26', 0, NULL, 0, NULL, 1),
(6276, 5104, '3', 'nagarjuna', '', 'hotel management', '2018', 76.00, '', 1, '2021-06-11 12:04:46', 0, NULL, 0, NULL, 1),
(6277, 5103, '3', 'Madras University', '', 'B.sc Psychology', '2018', 64.00, '', 1, '2021-06-11 12:05:01', 0, NULL, 0, NULL, 1),
(6278, 5103, '2', 'K R C A R C girls higher secondary school', '', '', '2015', 51.00, '', 1, '2021-06-11 12:06:24', 0, NULL, 0, NULL, 1),
(6279, 5103, '1', 'K R C A R C girls higher secondary school', '', '', '2012', 69.00, '', 1, '2021-06-11 12:06:59', 0, NULL, 0, NULL, 1),
(6280, 5105, '3', 'ou', '', 'bcom', '2020', 79.00, '', 1, '2021-06-11 12:48:30', 0, NULL, 0, NULL, 1),
(6281, 5106, '3', 'ambedkar', '', 'ba', '2019', 60.00, '', 1, '2021-06-11 01:02:09', 0, NULL, 0, NULL, 1),
(6282, 5107, '4', 'vishnu ', '', 'mba', '2020', 70.00, '', 1, '2021-06-11 01:19:19', 0, NULL, 0, NULL, 1),
(6283, 5108, '3', 'mhgt', '', 'bsc', '2015', 60.00, '', 1, '2021-06-11 02:33:27', 0, NULL, 0, NULL, 1),
(6284, 5109, '3', 'The new college', '', 'Bachelor of Business administration', '2014', 60.00, '', 1, '2021-06-11 03:30:04', 0, NULL, 0, NULL, 1),
(6285, 5110, '3', 'Madras university', '', 'B.com (Corporate secretaryship)', '2012', 70.00, '', 1, '2021-06-11 04:26:49', 0, NULL, 0, NULL, 1),
(6286, 5111, '4', 'ou', '', 'mba', '2017', 68.00, '', 1, '2021-06-12 10:37:26', 0, NULL, 0, NULL, 1),
(6287, 5112, '3', 'rupa', '', 'pgdm', '2019', 5.70, '', 1, '2021-06-12 11:19:04', 0, NULL, 0, NULL, 1),
(6288, 5114, '3', 'srimad andavan', '', 'diploma', '2021', 50.00, '', 1, '2021-06-12 01:46:25', 0, NULL, 0, NULL, 1),
(6289, 5115, '3', 'anna university', '', 'be', '2020', 65.00, '', 1, '2021-06-12 01:52:34', 0, NULL, 0, NULL, 1),
(6290, 5113, '3', 'bharathithasan thiruchy', '', 'B.Com', '2021', 65.00, '', 1, '2021-06-12 01:56:07', 0, NULL, 0, NULL, 1),
(6291, 5113, '1', 'state', '', '', '2015', 60.00, '', 50, '2021-06-12 02:08:08', 0, NULL, 0, NULL, 1),
(6292, 5113, '2', 'state', '', '', '2017', 77.00, '', 50, '2021-06-12 02:08:29', 0, NULL, 0, NULL, 1),
(6293, 5116, '4', 'Panimalar engineering college', '', 'MBA', '2017', 7.54, '', 1, '2021-06-12 03:10:53', 0, NULL, 0, NULL, 1),
(6294, 5117, '3', 'auraura', '', 'bsc biotech', '2018', 62.00, '', 1, '2021-06-12 03:47:05', 0, NULL, 0, NULL, 1),
(6295, 5119, '3', 'madras university', '', 'bcom', '2020', 75.00, '', 1, '2021-06-12 05:21:06', 0, NULL, 0, NULL, 1),
(6296, 5120, '1', 'CBSE', '', 'BE (CSE)', '2014', 89.00, '', 1, '2021-06-12 07:10:33', 0, NULL, 0, NULL, 1),
(6297, 5120, '2', 'CBSE', '', '', '2016', 82.00, '', 1, '2021-06-12 07:10:57', 0, NULL, 0, NULL, 1),
(6298, 5120, '3', 'Anna University ', '', 'BE (CSE)', '2020', 75.00, '', 1, '2021-06-12 07:11:26', 0, NULL, 0, NULL, 1),
(6299, 5121, '4', 'ou', '', 'mba', '2021', 68.00, '', 1, '2021-06-14 11:16:34', 0, NULL, 0, NULL, 1),
(6300, 5122, '4', 'Bharathidasan university', '', 'M.com', '2019', 75.00, '', 1, '2021-06-14 01:50:15', 0, NULL, 0, NULL, 1),
(6301, 5123, '3', 'chaitanya', '', 'cec', '2017', 72.00, '', 1, '2021-06-14 02:15:06', 0, NULL, 0, NULL, 1),
(6302, 5125, '4', 'bharathidasan', '', 'mcom', '2019', 75.00, '', 1, '2021-06-14 02:24:43', 0, NULL, 0, NULL, 1),
(6303, 5124, '3', 'nau', '', 'bcom', '2017', 70.00, '', 1, '2021-06-14 02:38:21', 0, NULL, 0, NULL, 1),
(6304, 5127, '3', 'madras', '', 'ba english', '2021', 65.00, '', 1, '2021-06-14 04:13:41', 0, NULL, 0, NULL, 1),
(6305, 5129, '4', 'rm', '', 'mba', '2017', 71.00, '', 1, '2021-06-15 10:51:43', 0, NULL, 0, NULL, 1),
(6306, 5131, '3', 'jntu', '', 'btec', '2018', 62.00, '', 1, '2021-06-15 11:09:13', 0, NULL, 0, NULL, 1),
(6307, 5132, '3', 'icfai', '', 'bba', '2020', 7.46, '', 1, '2021-06-15 01:16:22', 0, NULL, 0, NULL, 1),
(6308, 5130, '4', 'ou', '', 'mba', '2018', 70.00, '', 1, '2021-06-15 01:48:14', 0, NULL, 0, NULL, 1),
(6309, 5134, '3', 'University', '', 'BA English ', '2021', 75.00, '', 1, '2021-06-15 05:47:57', 0, NULL, 0, NULL, 1),
(6310, 5133, '1', 'matric', '', '', '2009', 88.00, '', 1, '2021-06-15 07:16:04', 0, NULL, 0, NULL, 1),
(6311, 5133, '2', 'state board', '', '', '2011', 79.99, '', 1, '2021-06-15 07:16:29', 0, NULL, 0, NULL, 1),
(6312, 5133, '3', 'madras', '', 'b . sc.', '2014', 68.00, '', 1, '2021-06-15 07:18:23', 0, NULL, 0, NULL, 1),
(6313, 5133, '4', 'madras', '', 'm.sc.', '2019', 63.00, '', 1, '2021-06-15 07:18:48', 0, NULL, 0, NULL, 1),
(6314, 5136, '4', 'Bharathiar University', '', 'M.com', '2019', 89.00, '', 1, '2021-06-16 09:59:12', 0, NULL, 0, NULL, 1),
(6315, 5136, '3', 'Bharathiar University', '', 'B.com', '2017', 85.00, '', 1, '2021-06-16 09:59:46', 0, NULL, 0, NULL, 1),
(6316, 5136, '2', 'Higher secondary education', '', '', '2014', 89.00, '', 1, '2021-06-16 10:00:27', 0, NULL, 0, NULL, 1),
(6317, 5137, '4', 'Anna University', '', 'MBA', '2021', 70.00, '', 1, '2021-06-16 10:05:05', 0, NULL, 0, NULL, 1),
(6318, 5137, '3', 'Madras University', '', 'B.Com', '2018', 59.00, '', 1, '2021-06-16 10:05:26', 0, NULL, 0, NULL, 1),
(6319, 5137, '2', 'State Board', '', '', '2015', 89.00, '', 1, '2021-06-16 10:05:55', 0, NULL, 0, NULL, 1),
(6320, 5137, '1', 'State Board', '', '', '2013', 91.00, '', 1, '2021-06-16 10:06:13', 0, NULL, 0, NULL, 1),
(6321, 5135, '3', 'Justice basheer ahmed syeed college ', '', 'Bsc', '2020', 68.00, '', 1, '2021-06-16 10:07:15', 0, NULL, 0, NULL, 1),
(6322, 5138, '3', 'Dg Vaishnav', '', 'B.com', '2020', 56.00, '', 1, '2021-06-16 10:44:41', 0, NULL, 0, NULL, 1),
(6323, 5139, '4', 'ou', '', 'mba', '2021', 60.00, '', 1, '2021-06-16 11:03:41', 0, NULL, 0, NULL, 1),
(6324, 5140, '3', 'ku', '', 'bsc maths', '2021', 55.00, '', 1, '2021-06-16 11:39:23', 0, NULL, 0, NULL, 1),
(6325, 5141, '3', 'Vels university', '', 'Bsc.Information technology', '2020', 73.00, '', 1, '2021-06-16 01:46:25', 0, NULL, 0, NULL, 1),
(6326, 5142, '3', 'University', '', 'B. E', '2017', 70.00, '', 1, '2021-06-16 02:34:58', 0, NULL, 0, NULL, 1),
(6327, 5143, '3', 'D B Jain college ', '', 'B.com', '2021', 65.00, '', 1, '2021-06-16 04:56:37', 0, NULL, 0, NULL, 1),
(6328, 5143, '2', 'Corporation higher secondary boys school', '', '', '2008', 66.00, '', 1, '2021-06-16 04:58:09', 0, NULL, 0, NULL, 1),
(6329, 5143, '1', 'Corporation higher secondary boys school ', '', '', '2006', 72.00, '', 1, '2021-06-16 04:59:14', 0, NULL, 0, NULL, 1),
(6330, 5144, '3', 'SRM Institute of Science and Technology Vadapalani campus', '', 'BCom', '2021', 80.00, '', 1, '2021-06-16 05:34:57', 0, NULL, 0, NULL, 1),
(6331, 5145, '3', 'ku', '', 'ba', '2018', 68.00, '', 1, '2021-06-17 10:59:04', 0, NULL, 0, NULL, 1),
(6332, 5146, '2', 'ou', '', '', '2017', 55.00, '', 1, '2021-06-17 11:07:58', 0, NULL, 0, NULL, 1),
(6333, 5147, '3', 'University', '', 'BE', '2020', 70.00, '', 1, '2021-06-17 12:43:17', 0, NULL, 0, NULL, 1),
(6334, 5150, '3', 'Anna University', '', 'B.E', '2019', 64.00, '', 1, '2021-06-17 02:09:25', 0, NULL, 0, NULL, 1),
(6335, 5148, '3', 'madras university', '', 'b.b.a', '2019', 82.00, '', 1, '2021-06-17 02:12:41', 1, '2021-06-17 02:13:37', 0, NULL, 0),
(6336, 5148, '1', 'matriculation', '', '', '2013', 78.00, '', 1, '2021-06-17 02:14:02', 0, NULL, 0, NULL, 1),
(6337, 5148, '2', 'matriculation', '', '', '2015', 56.33, '', 1, '2021-06-17 02:14:18', 0, NULL, 0, NULL, 1),
(6338, 5148, '3', 'madras university', '', 'b.b.a', '2019', 82.00, '', 1, '2021-06-17 02:14:46', 0, NULL, 0, NULL, 1),
(6339, 5153, '5', 'Balaji Polytechnic', '', 'DEEE', '2011', 70.00, '', 1, '2021-06-17 04:44:11', 0, NULL, 0, NULL, 1),
(6340, 5154, '3', 'Dr. MGR university ', '', 'B. Com', '2020', 77.00, '', 1, '2021-06-17 04:58:41', 0, NULL, 0, NULL, 1),
(6341, 5152, '1', 'tamilnadu state board', '', '', '2010', 76.40, '', 1, '2021-06-17 06:00:47', 0, NULL, 0, NULL, 1),
(6342, 5152, '2', 'tamilnadu state board', '', '', '2012', 52.75, '', 1, '2021-06-17 06:06:53', 0, NULL, 0, NULL, 1),
(6343, 5152, '3', 'madurai kamaraj university', '', 'bachelor of science - zoology', '2016', 73.00, '', 1, '2021-06-17 06:11:17', 0, NULL, 0, NULL, 1),
(6344, 5156, '3', 'Bharathidasan university ', '', 'Bcom(cA)', '2019', 68.00, '', 1, '2021-06-17 06:31:07', 0, NULL, 0, NULL, 1),
(6345, 5157, '3', 'Bharathi Hasan', '', 'bba', '2019', 68.00, '', 1, '2021-06-18 10:55:50', 0, NULL, 0, NULL, 1),
(6346, 5158, '3', 'prest university', '', 'b tech', '2020', 70.00, '', 1, '2021-06-18 11:03:20', 0, NULL, 0, NULL, 1),
(6347, 5159, '3', 'anna university', '', 'be mech', '2021', 60.00, '', 1, '2021-06-18 11:20:54', 0, NULL, 0, NULL, 1),
(6348, 5160, '3', 'madras university', '', 'b.com', '2020', 72.00, '', 1, '2021-06-18 11:25:59', 0, NULL, 0, NULL, 1),
(6349, 5161, '3', 'barathidasan ', '', 'Bca', '2021', 80.00, '', 1, '2021-06-18 11:31:09', 0, NULL, 0, NULL, 1),
(6350, 5162, '3', 'madras university', '', 'Bcom', '2020', 65.00, '', 1, '2021-06-18 11:38:52', 0, NULL, 0, NULL, 1),
(6351, 5164, '4', 'barathidasan', '', 'msc', '2018', 85.00, '', 1, '2021-06-18 12:02:21', 0, NULL, 0, NULL, 1),
(6352, 5165, '4', 'barathidasan', '', 'msc', '2020', 71.00, '', 1, '2021-06-18 12:07:13', 0, NULL, 0, NULL, 1),
(6353, 5167, '3', 'Quaid E Millath government college for women ( Autonomous)', '', 'B.Sc advance Zoology and Biotechnology', '2021', 60.00, '', 1, '2021-06-18 12:42:38', 0, NULL, 0, NULL, 1),
(6354, 5166, '5', 'ALAGAPPA POLYTECHNIC cOLLEGE', '', 'DME', '2014', 54.00, '', 1, '2021-06-18 12:54:56', 0, NULL, 0, NULL, 1),
(6355, 5168, '3', 'university', '', 'B.TECH IT', '2021', 7.00, '', 1, '2021-06-18 01:01:10', 0, NULL, 0, NULL, 1),
(6356, 5170, '3', 'womens christian college', '', 'b.com honours', '2021', 72.00, '', 1, '2021-06-18 01:25:13', 0, NULL, 0, NULL, 1),
(6357, 5169, '4', 'Bharathidasan university ', '', 'Msc biotechnology ', '2021', 90.00, '', 1, '2021-06-18 01:28:08', 0, NULL, 0, NULL, 1),
(6358, 5169, '3', 'Bharathidasan university ', '', 'Bsc Biotechnology ', '2019', 87.00, '', 1, '2021-06-18 01:29:00', 0, NULL, 0, NULL, 1),
(6359, 5169, '2', 'Best matriculation higher secondary school ', '', '', '2016', 69.92, '', 1, '2021-06-18 01:29:56', 0, NULL, 0, NULL, 1),
(6360, 5169, '1', 'Girls Christian higher secondary school ', '', '', '2014', 79.00, '', 1, '2021-06-18 01:31:52', 0, NULL, 0, NULL, 1),
(6361, 5169, '5', 'Ignou, delhi', '', 'Value added products ', '2018', 93.00, '', 1, '2021-06-18 01:33:36', 0, NULL, 0, NULL, 1),
(6362, 5172, '5', 'Rvs polytechnic ', '', 'Dme', '2017', 48.00, '', 1, '2021-06-18 01:43:22', 0, NULL, 0, NULL, 1),
(6363, 5174, '4', 'madras university ', '', '', '2021', 80.00, '', 1, '2021-06-18 03:48:56', 0, NULL, 0, NULL, 1),
(6364, 5174, '3', 'women\'s Christian college , Madras university ', '', 'B.com', '2019', 73.00, '', 1, '2021-06-18 03:49:52', 0, NULL, 0, NULL, 1),
(6365, 5174, '2', 'State board ', '', '', '2016', 95.00, '', 1, '2021-06-18 03:50:23', 0, NULL, 0, NULL, 1),
(6366, 5174, '1', 'State board ', '', '', '2014', 90.00, '', 1, '2021-06-18 03:50:47', 0, NULL, 0, NULL, 1),
(6367, 5173, '3', 'Madras university', '', 'BBA', '2019', 85.50, '', 1, '2021-06-18 03:53:48', 0, NULL, 0, NULL, 1),
(6368, 5175, '2', 'CBSE', '', '', '2017', 82.60, '', 1, '2021-06-18 04:45:24', 0, NULL, 0, NULL, 1),
(6369, 5180, '3', 'madras university', '', 'bsc', '2021', 72.00, '', 1, '2021-06-19 10:06:04', 0, NULL, 0, NULL, 1),
(6370, 5181, '3', 'vel tech', '', 'bsc', '2021', 73.00, '', 1, '2021-06-19 10:13:24', 0, NULL, 0, NULL, 1),
(6371, 5182, '3', 'thiruvalur university', '', 'bba', '2019', 72.00, '', 1, '2021-06-19 10:22:54', 0, NULL, 0, NULL, 1),
(6372, 5183, '3', 'madras university', '', 'bsc', '2020', 59.00, '', 1, '2021-06-19 10:38:47', 0, NULL, 0, NULL, 1),
(6373, 5184, '3', 'be', '', 'anandh institute', '2021', 78.00, '', 1, '2021-06-19 10:45:36', 0, NULL, 0, NULL, 1),
(6374, 5185, '5', 'velangani', '', 'mechanical', '2017', 91.00, '', 1, '2021-06-19 11:39:26', 0, NULL, 0, NULL, 1),
(6375, 5187, '3', 'Bharadhidhasan university ', '', 'BCA', '2014', 70.00, '', 1, '2021-06-19 02:03:15', 0, NULL, 0, NULL, 1),
(6376, 5189, '4', 'Bharathiyar university', '', 'MA English literature', '2021', 65.00, '', 1, '2021-06-19 02:21:11', 0, NULL, 0, NULL, 1),
(6377, 5186, '3', 'Madras', '', 'BCA', '2019', 60.00, '', 1, '2021-06-19 02:25:17', 0, NULL, 0, NULL, 1),
(6378, 5188, '3', 'Anna University', '', 'BE', '2016', 77.50, '', 1, '2021-06-19 02:57:52', 1, '2021-06-19 03:04:56', 0, NULL, 0),
(6379, 5188, '2', 'State Board', '', '', '2012', 86.60, '', 1, '2021-06-19 02:59:13', 1, '2021-06-19 03:00:57', 0, NULL, 0),
(6380, 5188, '1', 'State Board', '', '', '2010', 96.20, '', 1, '2021-06-19 02:59:43', 1, '2021-06-19 03:00:26', 0, NULL, 0),
(6381, 5188, '1', 'State Board', '', '', '2010', 96.60, '', 1, '2021-06-19 03:00:49', 1, '2021-06-19 03:01:36', 0, NULL, 0),
(6382, 5188, '2', 'State Board', '', '', '2012', 86.60, '', 1, '2021-06-19 03:01:28', 1, '2021-06-19 03:01:39', 0, NULL, 0),
(6383, 5190, '3', 'Thiruvalluvar university', '', 'B.com computer application', '2021', 68.00, '', 1, '2021-06-19 03:02:02', 0, NULL, 0, NULL, 1),
(6384, 5188, '1', 'State Board', '', '', '2010', 96.20, '', 1, '2021-06-19 03:02:05', 1, '2021-06-19 03:02:48', 0, NULL, 0),
(6385, 5188, '2', 'State Board', '', '', '2012', 86.60, '', 1, '2021-06-19 03:02:30', 1, '2021-06-19 03:02:55', 0, NULL, 0),
(6386, 5188, '2', 'State Board', '', '', '2012', 86.60, '', 1, '2021-06-19 03:03:22', 1, '2021-06-19 03:05:06', 0, NULL, 0),
(6387, 5188, '1', 'State Board', '', '', '2010', 96.20, '', 1, '2021-06-19 03:04:44', 1, '2021-06-19 03:05:02', 0, NULL, 0),
(6388, 5188, '1', 'State Board', '', '', '2010', 96.20, '', 1, '2021-06-19 03:05:30', 0, NULL, 0, NULL, 1),
(6389, 5188, '2', 'State Board', '', '', '2012', 86.60, '', 1, '2021-06-19 03:05:53', 0, NULL, 0, NULL, 1),
(6390, 5188, '3', 'Anna University', '', 'BE', '2016', 77.50, '', 1, '2021-06-19 03:07:21', 0, NULL, 0, NULL, 1),
(6391, 5191, '3', 'University of Madras', '', 'B.com', '2020', 70.00, '', 1, '2021-06-19 03:29:34', 0, NULL, 0, NULL, 1),
(6392, 5192, '3', 'madras university', '', 'B.com', '2020', 55.90, '', 1, '2021-06-19 04:08:46', 0, NULL, 0, NULL, 1),
(6393, 5194, '3', 'Anna university', '', 'B.E', '2021', 7.40, '', 1, '2021-06-19 04:55:36', 0, NULL, 0, NULL, 1),
(6394, 5193, '4', 'madurai kamaraj university.', '', 'msc.maths', '2015', 90.00, '', 1, '2021-06-20 04:08:32', 0, NULL, 0, NULL, 1),
(6395, 5195, '1', 'board of secondary education bharat gwalior', '', '', '2009', 72.33, '', 1, '2021-06-21 11:14:01', 0, NULL, 0, NULL, 1),
(6396, 5195, '2', 'board of secondary education bharat gwalior', '', '', '2011', 73.20, '', 1, '2021-06-21 11:16:04', 0, NULL, 0, NULL, 1),
(6397, 5195, '3', 'monad university', '', 'b.com', '2014', 62.52, '', 1, '2021-06-21 11:17:06', 0, NULL, 0, NULL, 1),
(6398, 5195, '4', 'xaviers institute of business management studies autonomus', '', 'mba', '2017', 89.90, '', 1, '2021-06-21 11:19:45', 0, NULL, 0, NULL, 1),
(6399, 5196, '3', 'Dr MGR University', '', 'B.com', '2021', 50.00, '', 1, '2021-06-21 03:13:46', 0, NULL, 0, NULL, 1),
(6400, 5199, '3', 'University of madras', '', 'BBA', '2019', 65.00, '', 1, '2021-06-21 04:42:40', 0, NULL, 0, NULL, 1),
(6401, 5200, '2', 'state board', '', '', '2013', 65.00, '', 1, '2021-06-21 06:03:21', 0, NULL, 0, NULL, 1),
(6402, 5200, '3', 'srm', '', 'bsc viscom', '2018', 67.00, '', 1, '2021-06-21 06:04:24', 0, NULL, 0, NULL, 1),
(6403, 537, '2', 'state board', '', '', '2013', 63.00, '', 1, '2021-06-21 06:08:58', 0, NULL, 0, NULL, 1),
(6404, 537, '3', 'mgr ', '', 'bsc cs', '2019', 75.00, '', 1, '2021-06-21 06:09:22', 0, NULL, 0, NULL, 1),
(6405, 5201, '2', 'state board', '', '', '2016', 69.00, '', 1, '2021-06-21 06:15:36', 0, NULL, 0, NULL, 1),
(6406, 5201, '3', 'anna university', '', 'be civil', '2020', 75.00, '', 1, '2021-06-21 06:16:00', 0, NULL, 0, NULL, 1),
(6407, 5202, '2', 'state board', '', '', '2013', 74.00, '', 1, '2021-06-21 06:21:03', 0, NULL, 0, NULL, 1),
(6408, 5202, '3', 'karnataka university', '', 'diploma', '2016', 70.00, '', 1, '2021-06-21 06:21:33', 0, NULL, 0, NULL, 1),
(6409, 5203, '2', 'state board', '', '', '2005', 51.00, '', 1, '2021-06-21 06:26:24', 0, NULL, 0, NULL, 1),
(6410, 5203, '3', 'puducherry', '', 'ba history', '2010', 51.00, '', 1, '2021-06-21 06:26:49', 0, NULL, 0, NULL, 1),
(6411, 5204, '4', 'madras university', '', 'bcom', '2022', 86.00, '', 1, '2021-06-22 09:51:51', 0, NULL, 0, NULL, 1),
(6412, 5205, '3', 'ln', '', '', '2021', 77.00, '', 1, '2021-06-22 09:57:57', 0, NULL, 0, NULL, 1),
(6413, 5206, '3', 'anna university', '', 'be', '2020', 76.00, '', 1, '2021-06-22 10:23:06', 0, NULL, 0, NULL, 1),
(6414, 5207, '3', 'barathidasan ', '', 'bsc', '2021', 68.00, '', 1, '2021-06-22 10:36:14', 0, NULL, 0, NULL, 1),
(6415, 5208, '3', 'barathidasan', '', 'bca', '2021', 50.00, '', 1, '2021-06-22 10:40:56', 0, NULL, 0, NULL, 1),
(6416, 5210, '4', 'University of madras', '', 'MBA', '2017', 60.00, '', 1, '2021-06-22 11:51:13', 0, NULL, 0, NULL, 1),
(6417, 5209, '3', 'Autonomous', '', 'BA(eco)', '2018', 67.00, '', 1, '2021-06-22 11:54:28', 0, NULL, 0, NULL, 1),
(6418, 5213, '3', 'Crescent University', '', 'Bachelor of engineering', '2017', 77.00, '', 1, '2021-06-22 02:23:07', 0, NULL, 0, NULL, 1),
(6419, 5214, '4', 'manipal academy of higher education', '', 'pg diploma in logistics and supply chain managemen', '2021', 8.41, '', 1, '2021-06-22 03:20:18', 0, NULL, 0, NULL, 1),
(6420, 5214, '3', 'anna university ', '', 'bachelor of mechanical engineering ', '2019', 7.41, '', 1, '2021-06-22 03:21:01', 0, NULL, 0, NULL, 1),
(6421, 5217, '2', 'state board', '', '', '2013', 66.00, '', 1, '2021-06-22 04:19:11', 0, NULL, 0, NULL, 1),
(6422, 5217, '3', 'mku university', '', 'bcom ca', '2016', 77.00, '', 1, '2021-06-22 04:19:47', 0, NULL, 0, NULL, 1),
(6423, 5216, '4', 'University ', '', 'M.COM (COMPUTER APPLICATIONS)', '2020', 74.00, '', 1, '2021-06-22 04:23:21', 0, NULL, 0, NULL, 1),
(6424, 5218, '2', 'state board', '', '', '2013', 70.00, '', 1, '2021-06-22 04:33:21', 0, NULL, 0, NULL, 1),
(6425, 5218, '3', 'madras university', '', 'bca', '2016', 74.00, '', 1, '2021-06-22 04:33:44', 0, NULL, 0, NULL, 1),
(6426, 5219, '1', 'state board', '', '', '2015', 55.00, '', 1, '2021-06-22 04:40:10', 0, NULL, 0, NULL, 1),
(6427, 5219, '5', 'dote', '', 'dce', '2018', 65.00, '', 1, '2021-06-22 04:40:34', 0, NULL, 0, NULL, 1),
(6428, 5220, '2', 'state board', '', '', '2008', 68.00, '', 1, '2021-06-22 04:45:20', 0, NULL, 0, NULL, 1),
(6429, 5220, '3', 'anna university', '', 'btech it', '2012', 65.00, '', 1, '2021-06-22 04:45:41', 0, NULL, 0, NULL, 1),
(6430, 5215, '3', 'Pondicherry university', '', 'B. Sc b. Ed', '2020', 75.00, '', 1, '2021-06-22 05:38:03', 0, NULL, 0, NULL, 1),
(6431, 5221, '4', 'Anna university ', '', 'Mca', '2018', 77.00, '', 1, '2021-06-22 05:57:35', 0, NULL, 0, NULL, 1),
(6432, 5223, '3', 'Autonomous', '', 'B.Sc Chemistry', '2011', 75.00, '', 1, '2021-06-22 06:09:28', 0, NULL, 0, NULL, 1),
(6433, 5224, '3', 'Bharathi women\'s college', '', 'B.A Economics', '2021', 80.00, '', 1, '2021-06-22 06:36:02', 0, NULL, 0, NULL, 1),
(6434, 5212, '3', 'madras university', '', 'b.com cs', '2019', 74.00, '', 1, '2021-06-22 07:37:09', 0, NULL, 0, NULL, 1),
(6435, 5225, '3', 'ayya nadar', '', 'bsc', '2020', 74.00, '', 1, '2021-06-23 09:28:34', 0, NULL, 0, NULL, 1),
(6436, 5226, '1', 'Matric', '', 'B. sc', '2004', 76.60, '', 1, '2021-06-23 10:11:23', 0, NULL, 0, NULL, 1),
(6437, 5226, '2', 'State board ', '', '', '2006', 68.00, '', 1, '2021-06-23 10:11:47', 0, NULL, 0, NULL, 1),
(6438, 5226, '3', 'Madras university ', '', 'B. Sc', '2009', 70.60, '', 1, '2021-06-23 10:12:12', 0, NULL, 0, NULL, 1),
(6439, 5227, '3', 'madras university', '', 'bsc', '2019', 71.00, '', 1, '2021-06-23 10:34:29', 0, NULL, 0, NULL, 1),
(6440, 5228, '4', 'annamalai university', '', 'mba human Resource management', '2020', 70.00, '', 1, '2021-06-23 10:57:23', 0, NULL, 0, NULL, 1),
(6441, 5228, '3', 'osmania university ', '', 'bsc catering technology and culinary arts', '2015', 75.00, '', 1, '2021-06-23 10:59:20', 0, NULL, 0, NULL, 1),
(6442, 5228, '5', 'rmk', '', 'dece', '2012', 75.00, '', 1, '2021-06-23 10:59:52', 0, NULL, 0, NULL, 1),
(6443, 5229, '3', 'Anna university', '', 'Be.Mechanical', '2020', 7.31, '', 1, '2021-06-23 11:42:03', 0, NULL, 0, NULL, 1),
(6444, 5230, '1', 'Thaimoogambigai collageof diploma', '', '', '2009', 70.00, '', 1, '2021-06-23 11:49:57', 0, NULL, 0, NULL, 1),
(6445, 5232, '3', 'Anna university', '', 'IT', '2016', 78.00, '', 1, '2021-06-23 04:17:45', 0, NULL, 0, NULL, 1),
(6446, 5231, '1', 'Tutorial', '', '', '2021', 100.00, '', 1, '2021-06-23 04:57:09', 0, NULL, 0, NULL, 1),
(6447, 5233, '3', 'anna university', '', 'be', '2021', 75.00, '', 1, '2021-06-24 09:52:57', 0, NULL, 0, NULL, 1),
(6448, 5234, '3', 'sdnb vaishanva', '', 'bcom', '2021', 79.00, '', 1, '2021-06-24 10:01:27', 0, NULL, 0, NULL, 1),
(6449, 5235, '3', 'sdnb vaishnava', '', 'bca', '2021', 84.00, '', 1, '2021-06-24 10:10:26', 0, NULL, 0, NULL, 1),
(6450, 5236, '3', 'sdnb vaishnava', '', 'bcom', '2021', 70.00, '', 1, '2021-06-24 10:14:59', 0, NULL, 0, NULL, 1),
(6451, 5237, '3', 'sdnb vaishnava', '', 'bcom', '2021', 69.00, '', 1, '2021-06-24 10:28:17', 0, NULL, 0, NULL, 1),
(6452, 5238, '3', 'autonomas', '', 'bba', '2021', 77.00, '', 1, '2021-06-24 10:48:38', 0, NULL, 0, NULL, 1),
(6453, 5239, '3', 'annai velankanni', '', 'bcom', '2020', 70.00, '', 1, '2021-06-24 11:05:48', 0, NULL, 0, NULL, 1),
(6454, 5240, '3', 'autonomus', '', 'bcom', '2021', 50.00, '', 1, '2021-06-24 11:36:04', 0, NULL, 0, NULL, 1),
(6455, 5242, '3', 'Thiruvalluvar university', '', 'Bsc computer Science ', '2020', 72.00, '', 1, '2021-06-24 12:39:59', 0, NULL, 0, NULL, 1),
(6456, 5241, '2', 'Board', '', '', '2018', 78.00, '', 1, '2021-06-24 12:50:05', 0, NULL, 0, NULL, 1),
(6457, 5243, '3', 'University of Madras', '', 'BA ECONOMICS ', '2019', 70.00, '', 1, '2021-06-24 01:53:24', 0, NULL, 0, NULL, 1),
(6458, 5244, '3', 'JNTUK', '', 'B.tech', '2018', 70.00, '', 1, '2021-06-24 02:15:07', 0, NULL, 0, NULL, 1),
(6459, 5245, '3', 'SDNB Vaishnav college for women', '', 'Bsc.computer science', '2021', 80.30, '', 1, '2021-06-24 03:37:54', 0, NULL, 0, NULL, 1),
(6460, 5246, '3', 'madras university', '', 'B.com', '2018', 50.00, '', 1, '2021-06-24 03:48:30', 0, NULL, 0, NULL, 1),
(6461, 5247, '2', 'State board', '', '', '2018', 63.00, '', 1, '2021-06-24 04:12:51', 0, NULL, 0, NULL, 1),
(6462, 5247, '3', 'Bharathiyar university', '', 'BBA', '2021', 73.00, '', 1, '2021-06-24 04:13:20', 0, NULL, 0, NULL, 1),
(6463, 5248, '3', 'Annamalai university', '', 'BE', '2017', 7.39, '', 1, '2021-06-24 05:20:35', 0, NULL, 0, NULL, 1),
(6464, 5250, '3', 'Anna university', '', 'BE', '2017', 8.58, '', 1, '2021-06-24 06:01:28', 0, NULL, 0, NULL, 1),
(6465, 5255, '4', 'ALAGAPPA UNIVERSITY ', '', 'mac. PSYCHOLOGY ', '2019', 54.00, '', 1, '2021-06-25 11:13:38', 0, NULL, 0, NULL, 1),
(6466, 5253, '3', 'anna ', '', 'b.e', '2016', 60.00, '', 1, '2021-06-25 12:02:46', 0, NULL, 0, NULL, 1),
(6467, 5257, '3', 'Arifa Institute Of Technology', '', 'B.E', '2019', 6.70, '', 1, '2021-06-25 12:45:42', 0, NULL, 0, NULL, 1),
(6468, 5258, '3', 'Madras University', '', 'Bcom', '2018', 62.00, '', 1, '2021-06-25 01:05:52', 0, NULL, 0, NULL, 1),
(6469, 5256, '4', 'Madras university', '', 'M. Sc ( CS) ', '2021', 70.00, '', 1, '2021-06-25 01:10:30', 0, NULL, 0, NULL, 1),
(6470, 5260, '1', 'govt girls h.sec school', '', '', '2012', 79.00, '', 1, '2021-06-25 03:59:57', 0, NULL, 0, NULL, 1),
(6471, 5260, '2', 'govt girls h.sec school', '', '', '2014', 75.00, '', 1, '2021-06-25 04:00:38', 0, NULL, 0, NULL, 1),
(6472, 5260, '3', 'theni kammavar college of arts and science', '', 'b.sc cs', '2017', 77.00, '', 1, '2021-06-25 04:02:15', 0, NULL, 0, NULL, 1),
(6473, 5260, '4', 'bharathiar university', '', 'm.sc cs', '2019', 79.00, '', 1, '2021-06-25 04:02:40', 0, NULL, 0, NULL, 1),
(6474, 5259, '4', 'Periyar University', '', 'mCOM', '2020', 72.00, '', 1, '2021-06-25 04:39:46', 0, NULL, 0, NULL, 1),
(6475, 5264, '3', 'M.K UNIVERSITY', '', 'B.SC INFORMATION TECHNOLOGY', '2021', 70.00, '', 1, '2021-06-25 04:40:18', 0, NULL, 0, NULL, 1),
(6476, 5265, '2', 'state board', '', '', '2008', 56.00, '', 1, '2021-06-25 08:15:16', 0, NULL, 0, NULL, 1),
(6477, 5265, '3', 'madras university', '', 'bcom', '2013', 67.00, '', 1, '2021-06-25 08:15:39', 0, NULL, 0, NULL, 1),
(6478, 5266, '1', 'central board', '', '', '2014', 76.00, '', 1, '2021-06-25 08:21:40', 0, NULL, 0, NULL, 1),
(6479, 5266, '5', 'directorate of technical education', '', 'diploma', '2018', 80.00, '', 1, '2021-06-25 08:22:30', 0, NULL, 0, NULL, 1),
(6480, 5267, '2', 'state board', '', '', '2015', 67.00, '', 1, '2021-06-25 08:33:00', 0, NULL, 0, NULL, 1),
(6481, 5267, '3', 'madras university', '', 'bcom', '2020', 87.00, '', 1, '2021-06-25 08:33:53', 0, NULL, 0, NULL, 1),
(6482, 5269, '3', 'patricain', '', 'bcom', '2020', 69.00, '', 1, '2021-06-26 10:34:28', 0, NULL, 0, NULL, 1),
(6483, 5268, '3', 'JBAS college for women( autonomous)', '', 'B.com accounting and finance', '2022', 74.00, '', 1, '2021-06-26 10:37:56', 0, NULL, 0, NULL, 1),
(6484, 5271, '3', 'icfai  business ', '', 'bba', '2021', 60.00, '', 1, '2021-06-26 01:16:05', 0, NULL, 0, NULL, 1),
(6485, 5270, '3', 'Sri Sairam Institute of Technology ', '', 'B.tech ', '2020', 78.00, '', 1, '2021-06-26 01:40:47', 0, NULL, 0, NULL, 1),
(6486, 5274, '3', 'Anna University', '', 'BE', '2018', 65.00, '', 1, '2021-06-26 02:14:50', 0, NULL, 0, NULL, 1),
(6487, 5275, '3', 'Bharathi women\'s College', '', 'B.Sc (Computer science)', '2018', 60.00, '', 1, '2021-06-26 02:52:40', 0, NULL, 0, NULL, 1),
(6488, 5273, '3', 'bharathiar university', '', 'b.sc computer technology', '2021', 64.00, '', 1, '2021-06-26 02:53:57', 0, NULL, 0, NULL, 1),
(6489, 5273, '1', 't a ramalingam chettiar hr sec school', '', '', '2016', 89.00, '', 1, '2021-06-26 02:55:42', 1, '2021-06-26 02:56:27', 0, NULL, 0),
(6490, 5273, '2', 'kamalanadhan memorial hr sec school', '', '', '2018', 62.00, '', 1, '2021-06-26 02:56:06', 1, '2021-06-26 02:56:30', 0, NULL, 0),
(6491, 5273, '1', 't a ramalingam chettiar hr sec school', '', '', '2016', 89.00, '', 1, '2021-06-26 02:57:06', 0, NULL, 0, NULL, 1),
(6492, 5273, '2', 'kamlanadhan memorial hr sec school', '', '', '2018', 62.00, '', 1, '2021-06-26 02:57:33', 0, NULL, 0, NULL, 1),
(6493, 5276, '3', 'Madras university ', '', 'BSc Computer science ', '2019', 70.00, '', 1, '2021-06-26 02:58:05', 0, NULL, 0, NULL, 1),
(6494, 5272, '3', 'University ', '', 'B.E(CSE)', '2019', 70.00, '', 1, '2021-06-26 03:03:06', 0, NULL, 0, NULL, 1),
(6495, 5278, '3', 'Madras university ', '', 'BSc Computer science ', '2019', 70.00, '', 1, '2021-06-26 03:07:11', 0, NULL, 0, NULL, 1),
(6496, 5279, '3', 'madras university', '', 'bsc', '2019', 72.00, '', 1, '2021-06-26 03:19:35', 0, NULL, 0, NULL, 1),
(6497, 5280, '3', 'Anna university', '', 'BTech', '2020', 69.90, '', 1, '2021-06-26 03:27:03', 0, NULL, 0, NULL, 1),
(6498, 5280, '2', 'State board', '', '', '2016', 67.00, '', 1, '2021-06-26 03:27:42', 0, NULL, 0, NULL, 1),
(6499, 5280, '1', 'State board', '', '', '2014', 87.00, '', 1, '2021-06-26 03:28:00', 0, NULL, 0, NULL, 1),
(6500, 5281, '3', 'ANNA UNIVERSITY', '', 'Bachelor of Engineering', '2015', 83.00, '', 1, '2021-06-26 04:31:15', 0, NULL, 0, NULL, 1),
(6501, 5282, '3', 'St peters university', '', 'B. A English literature', '2021', 78.00, '', 1, '2021-06-27 08:07:51', 0, NULL, 0, NULL, 1),
(6502, 5284, '3', 'Hindustan University', '', 'BCA', '2021', 88.00, '', 1, '2021-06-28 09:55:55', 0, NULL, 0, NULL, 1),
(6503, 5285, '3', 'MADRAS UNIVERSITY ', '', 'Bsc', '2014', 72.00, '', 1, '2021-06-28 10:53:02', 0, NULL, 0, NULL, 1),
(6504, 5277, '2', 'banglore university', '', '', '2003', 62.00, '', 1, '2021-06-28 11:11:38', 0, NULL, 0, NULL, 1),
(6505, 5286, '2', 'state board', '', '', '2016', 59.00, '', 1, '2021-06-28 11:20:42', 0, NULL, 0, NULL, 1),
(6506, 5286, '3', 'manonmaniam sundranar of university', '', 'bcom', '2019', 58.00, '', 1, '2021-06-28 11:21:24', 0, NULL, 0, NULL, 1),
(6507, 5288, '5', 'Chennai University', '', 'Ece Dece', '2021', 71.00, '', 1, '2021-06-28 02:35:38', 0, NULL, 0, NULL, 1),
(6508, 4984, '3', 'Anna University', '', 'BE', '2021', 7.00, '', 1, '2021-06-28 04:24:49', 0, NULL, 0, NULL, 1),
(6509, 4984, '1', 'Christ Church Anglo Indian Higher Secondary to', '', '', '2015', 82.50, '', 1, '2021-06-28 04:26:37', 0, NULL, 0, NULL, 1),
(6510, 4984, '2', 'Madras Christian College Higher Secondary School', '', '', '2017', 74.90, '', 1, '2021-06-28 04:27:03', 0, NULL, 0, NULL, 1),
(6511, 5290, '3', 'jntuh', '', 'bpharm', '2020', 66.00, '', 1, '2021-06-28 04:54:02', 0, NULL, 0, NULL, 1),
(6512, 5291, '1', 'State Board', '', '', '2015', 91.00, '', 1, '2021-06-28 06:51:35', 0, NULL, 0, NULL, 1),
(6513, 5291, '2', 'State Board', '', '', '2017', 74.16, '', 1, '2021-06-28 06:56:49', 0, NULL, 0, NULL, 1),
(6514, 5291, '3', 'Guru Nanak College', '', 'BCA', '2020', 77.80, '', 1, '2021-06-28 06:57:38', 0, NULL, 0, NULL, 1),
(6515, 5292, '2', 'state board', '', '', '2011', 67.00, '', 1, '2021-06-28 07:29:45', 0, NULL, 0, NULL, 1),
(6516, 5292, '3', 'madras university', '', 'ba', '2014', 88.00, '', 1, '2021-06-28 08:02:12', 0, NULL, 0, NULL, 1),
(6517, 5293, '1', 'state board', '', '', '2010', 51.00, '', 1, '2021-06-28 08:12:20', 0, NULL, 0, NULL, 1),
(6518, 5293, '3', 'manonmaniam sundranar university', '', 'bca', '2020', 60.00, '', 1, '2021-06-28 08:12:57', 0, NULL, 0, NULL, 1),
(6519, 5294, '5', 'diploma', '', 'diploma', '2014', 66.00, '', 1, '2021-06-28 08:17:51', 0, NULL, 0, NULL, 1),
(6520, 5295, '2', 'state board', '', '', '2017', 74.00, '', 1, '2021-06-28 08:26:21', 0, NULL, 0, NULL, 1),
(6521, 5295, '3', 'bharthiyar university', '', 'bba aviation', '2020', 75.00, '', 1, '2021-06-28 08:26:54', 0, NULL, 0, NULL, 1),
(6522, 5297, '2', 'Sakthi mariamman engineering college', '', '', '2010', 50.00, '', 1, '2021-06-29 10:19:52', 0, NULL, 0, NULL, 1),
(6523, 5299, '4', 'Bharathidasan University', '', 'M.com', '2017', 72.00, '', 1, '2021-06-29 01:20:56', 0, NULL, 0, NULL, 1),
(6524, 5301, '3', 'Anna University', '', 'B.E( CSE)', '2015', 6.70, '', 1, '2021-06-29 05:21:10', 0, NULL, 0, NULL, 1),
(6525, 5300, '3', 'madras', '', 'bcom cs', '2021', 82.00, '', 1, '2021-06-29 05:46:57', 0, NULL, 0, NULL, 1),
(6526, 5302, '3', 'madras', '', 'bcom', '2021', 71.00, '', 1, '2021-06-29 06:08:48', 0, NULL, 0, NULL, 1),
(6527, 5303, '2', 'state board', '', '', '2018', 54.00, '', 1, '2021-06-30 07:28:34', 0, NULL, 0, NULL, 1),
(6528, 5303, '3', 'thiruvalluvar university', '', 'bsc cs', '2021', 74.00, '', 1, '2021-06-30 07:29:33', 0, NULL, 0, NULL, 1),
(6529, 5304, '2', 'matric', '', '', '2011', 84.00, '', 1, '2021-06-30 07:34:14', 0, NULL, 0, NULL, 1),
(6530, 5304, '3', 'anna university', '', 'be mech', '2015', 66.00, '', 1, '2021-06-30 07:34:44', 0, NULL, 0, NULL, 1),
(6531, 5305, '1', 'state board', '', '', '2013', 66.00, '', 1, '2021-06-30 07:40:19', 0, NULL, 0, NULL, 1),
(6532, 5305, '5', 'polytechinc', '', 'diploma in ece', '2016', 63.00, '', 1, '2021-06-30 07:41:02', 0, NULL, 0, NULL, 1),
(6533, 5306, '2', 'state board', '', '', '2018', 63.00, '', 1, '2021-06-30 07:48:15', 0, NULL, 0, NULL, 1),
(6534, 5306, '3', 'hindiustan university', '', 'bcom', '2020', 85.00, '', 1, '2021-06-30 07:48:48', 0, NULL, 0, NULL, 1),
(6535, 5307, '3', 'Prist university', '', 'Ba English literature', '2021', 65.00, '', 1, '2021-06-30 10:32:55', 0, NULL, 0, NULL, 1),
(6536, 5308, '4', 'anna university', '', 'm.e software engineering', '2017', 76.00, '', 1, '2021-06-30 11:10:54', 0, NULL, 0, NULL, 1),
(6537, 5308, '2', 'railway school', '', '', '2008', 72.00, '', 1, '2021-06-30 11:11:56', 0, NULL, 0, NULL, 1),
(6538, 5308, '5', 'sri venkatachalapathy polytechnic', '', 'electronic and communicaion', '2011', 92.00, '', 1, '2021-06-30 11:12:53', 0, NULL, 0, NULL, 1),
(6539, 5308, '3', 'anna university', '', 'b.e electronic and comm.', '2014', 68.00, '', 1, '2021-06-30 11:13:28', 0, NULL, 0, NULL, 1),
(6540, 5309, '1', 'tn', '', '', '2016', 47.00, '', 7, '2021-06-30 12:15:16', 0, NULL, 0, NULL, 1),
(6541, 5309, '3', 'gurunanak', '', 'bcom', '2021', 75.00, '', 7, '2021-06-30 12:16:11', 0, NULL, 0, NULL, 1),
(6542, 5311, '4', 'University of Madras', '', 'MCA', '2021', 68.00, '', 1, '2021-06-30 12:38:55', 0, NULL, 0, NULL, 1),
(6543, 5311, '3', 'University of Madras', '', 'BCA', '2018', 63.00, '', 1, '2021-06-30 12:39:35', 0, NULL, 0, NULL, 1),
(6544, 5311, '2', 'State board', '', '', '2014', 73.00, '', 1, '2021-06-30 12:39:59', 0, NULL, 0, NULL, 1),
(6545, 5311, '1', 'State board', '', '', '2012', 64.00, '', 1, '2021-06-30 12:40:20', 0, NULL, 0, NULL, 1),
(6546, 5312, '3', 'Anna university', '', 'BE', '2016', 65.00, '', 1, '2021-06-30 12:53:47', 0, NULL, 0, NULL, 1),
(6547, 5312, '2', 'Matriculation', '', '', '2012', 79.00, '', 1, '2021-06-30 12:54:14', 0, NULL, 0, NULL, 1),
(6548, 5312, '1', 'Matriculation', '', '', '2010', 79.00, '', 1, '2021-06-30 12:54:33', 0, NULL, 0, NULL, 1),
(6549, 5310, '3', 'Anna University', '', 'b.E', '2019', 65.00, '', 1, '2021-06-30 01:43:47', 0, NULL, 0, NULL, 1),
(6550, 5313, '3', ' mrk institute of technology', '', 'be mechanical enginerring', '2017', 69.00, '', 1, '2021-06-30 01:51:11', 0, NULL, 0, NULL, 1),
(6551, 5314, '4', 'university of madras', '', 'mca', '2021', 75.00, '', 1, '2021-06-30 01:59:07', 0, NULL, 0, NULL, 1),
(6552, 5315, '4', 'Anna University', '', 'ME/PED', '2015', 70.00, '', 1, '2021-06-30 02:07:49', 0, NULL, 0, NULL, 1),
(6553, 5316, '3', 'University', '', 'BE', '2015', 7.10, '', 1, '2021-06-30 02:11:02', 0, NULL, 0, NULL, 1),
(6554, 5317, '3', 'Sri Sangara bhagavathi art and science college ', '', 'BCA', '2021', 65.00, '', 1, '2021-06-30 03:19:25', 0, NULL, 0, NULL, 1),
(6555, 5320, '3', 'paavai college of engineering', '', 'computer science and engineering', '2018', 65.00, '', 1, '2021-06-30 04:48:50', 0, NULL, 0, NULL, 1),
(6556, 5252, '3', 'Apollo Arts and science college', '', 'B. Com ', '2020', 86.00, '', 1, '2021-06-30 06:27:07', 0, NULL, 0, NULL, 1),
(6557, 5252, '2', 'St. John\'s School', '', '', '2017', 89.00, '', 1, '2021-06-30 06:27:54', 0, NULL, 0, NULL, 1),
(6558, 5252, '1', 'St. John\'s School', '', '', '2015', 87.00, '', 1, '2021-06-30 06:28:23', 0, NULL, 0, NULL, 1),
(6559, 5321, '3', 'madras university', '', 'bsc computer science', '2015', 70.00, '', 1, '2021-06-30 06:34:37', 0, NULL, 0, NULL, 1),
(6560, 5319, '1', 'state board', '', '', '2012', 69.00, '', 1, '2021-06-30 07:02:28', 0, NULL, 0, NULL, 1),
(6561, 5319, '2', 'State Board', '', '', '2014', 65.00, '', 1, '2021-06-30 07:03:25', 0, NULL, 0, NULL, 1),
(6562, 5319, '3', 'anna university', '', 'b.e ece', '2018', 5.80, '', 1, '2021-06-30 07:04:13', 0, NULL, 0, NULL, 1),
(6563, 5322, '5', 'M.I.E.t polytechnic College', '', 'AUTOMOBILE ENGINEERING ', '2017', 79.00, '', 1, '2021-06-30 08:42:27', 0, NULL, 0, NULL, 1),
(6564, 5323, '1', 'state board', '', '', '2019', 70.00, '', 1, '2021-07-01 09:15:57', 0, NULL, 0, NULL, 1),
(6565, 5324, '2', 'state bdoar', '', '', '2017', 63.00, '', 1, '2021-07-01 09:22:36', 0, NULL, 0, NULL, 1),
(6566, 5324, '3', 'dr mgr', '', 'bca', '2021', 68.00, '', 1, '2021-07-01 09:23:17', 0, NULL, 0, NULL, 1),
(6567, 5325, '3', 'Francis Xavier Engineering College', '', '', '2018', 64.00, '', 1, '2021-07-01 01:12:12', 0, NULL, 0, NULL, 1),
(6568, 5326, '3', 'alagappa university ', '', 'bachelor of  business administration bba', '2020', 60.00, '', 1, '2021-07-01 02:34:33', 0, NULL, 0, NULL, 1),
(6569, 5326, '2', 'state board', '', '', '2010', 69.00, '', 1, '2021-07-01 02:35:41', 0, NULL, 0, NULL, 1),
(6570, 5327, '3', 'Anna University ', '', 'Bachelor of Computer Science and Engineering ', '2019', 65.00, '', 1, '2021-07-01 04:14:18', 0, NULL, 0, NULL, 1),
(6571, 5327, '2', 'Stateboard', '', '', '2015', 65.00, '', 1, '2021-07-01 04:14:53', 0, NULL, 0, NULL, 1),
(6572, 5327, '1', 'Stateboard', '', '', '2013', 84.50, '', 1, '2021-07-01 04:15:21', 0, NULL, 0, NULL, 1),
(6573, 5331, '3', 'Alagappa University ', '', 'BCA', '2019', 52.00, '', 1, '2021-07-01 05:29:20', 0, NULL, 0, NULL, 1),
(6574, 5332, '3', 'Anna university', '', 'BE(CSE) ', '2016', 6.20, '', 1, '2021-07-01 05:45:33', 0, NULL, 0, NULL, 1),
(6575, 5329, '4', 'Dg Vaishnav', '', 'MSc computer science', '2021', 80.00, '', 1, '2021-07-01 06:30:25', 0, NULL, 0, NULL, 1),
(6576, 5329, '3', 'Madras University', '', 'Bsc computer science', '2019', 70.00, '', 1, '2021-07-01 06:31:26', 1, '2021-07-01 06:34:01', 0, NULL, 1),
(6577, 5328, '1', 'state board', '', '', '2014', 72.00, '', 1, '2021-07-01 06:31:42', 0, NULL, 0, NULL, 1),
(6578, 5328, '2', 'state board', '', '', '2016', 73.00, '', 1, '2021-07-01 06:32:09', 0, NULL, 0, NULL, 1),
(6579, 5329, '2', 'State board', '', '', '2016', 75.00, '', 1, '2021-07-01 06:32:11', 0, NULL, 0, NULL, 1),
(6580, 5329, '1', 'State board', '', '', '2014', 81.00, '', 1, '2021-07-01 06:32:52', 0, NULL, 0, NULL, 1),
(6581, 5328, '3', 'd.g vaishnav college', '', 'bsc computer science', '2019', 58.00, '', 1, '2021-07-01 06:33:41', 0, NULL, 0, NULL, 1),
(6582, 5328, '4', 'd.g vaishnav college', '', 'msc information technology', '2021', 75.00, '', 1, '2021-07-01 06:34:26', 0, NULL, 0, NULL, 1),
(6583, 5334, '2', 'government', '', '', '2009', 68.00, '', 1, '2021-07-02 10:49:18', 0, NULL, 0, NULL, 1),
(6584, 5334, '3', 'bharathiyar university', '', 'be', '2014', 68.00, '', 1, '2021-07-02 10:49:57', 0, NULL, 0, NULL, 1),
(6585, 5333, '3', 'k.s.k college of engineering and technology', '', 'b.e-computer science and engineering', '2018', 76.80, '', 1, '2021-07-02 11:09:40', 0, NULL, 0, NULL, 1),
(6586, 5333, '2', 'st.pauls girls hr.sec.school', '', '', '2014', 83.00, '', 1, '2021-07-02 11:10:31', 0, NULL, 0, NULL, 1),
(6587, 5333, '1', 'st.pauls girls hr.sec.school', '', '', '2012', 85.00, '', 1, '2021-07-02 11:10:59', 0, NULL, 0, NULL, 1),
(6588, 5335, '3', 'Anna University', '', 'B.E', '2018', 76.30, '', 1, '2021-07-02 01:01:36', 0, NULL, 0, NULL, 1),
(6589, 5336, '3', 'S.A.engineering College', '', 'B.E', '2019', 71.00, '', 1, '2021-07-02 01:05:49', 0, NULL, 0, NULL, 1),
(6590, 5337, '4', 'Anna university', '', 'MCA', '2019', 8.00, '', 1, '2021-07-02 01:37:26', 0, NULL, 0, NULL, 1),
(6591, 5338, '3', 'Madras university', '', 'B. A.ECONOMICS', '2018', 60.00, '', 1, '2021-07-02 02:43:11', 0, NULL, 0, NULL, 1),
(6592, 5339, '4', 'TNOU', '', 'M.com', '2020', 76.00, '', 1, '2021-07-02 03:05:38', 0, NULL, 0, NULL, 1),
(6593, 5340, '3', 'ANNA UNIVERSITY', '', 'B.TECH', '2021', 78.00, '', 1, '2021-07-02 03:55:41', 0, NULL, 0, NULL, 1),
(6594, 5318, '1', 'state board', '', '', '2015', 94.60, '', 1, '2021-07-03 10:10:04', 0, NULL, 0, NULL, 1),
(6595, 5318, '2', 'state board', '', '', '2017', 91.76, '', 1, '2021-07-03 10:10:33', 0, NULL, 0, NULL, 1),
(6596, 5318, '3', 'anna university', '', 'b.e - e.c.e', '2017', 78.00, '', 1, '2021-07-03 10:11:26', 0, NULL, 0, NULL, 1),
(6597, 5341, '2', 'srv boys school', '', '', '2018', 50.00, '', 1, '2021-07-03 10:54:15', 0, NULL, 0, NULL, 1),
(6598, 5341, '3', 'jct', '', 'be', '2022', 50.00, '', 1, '2021-07-03 10:54:50', 0, NULL, 0, NULL, 1),
(6599, 5342, '4', 'Loyolla college', '', 'MBA', '2019', 70.00, '', 1, '2021-07-03 11:57:31', 0, NULL, 0, NULL, 1),
(6600, 5344, '3', 'Anna University', '', 'B.tech', '2015', 71.00, '', 1, '2021-07-03 12:11:19', 0, NULL, 0, NULL, 1),
(6601, 5343, '3', 'Madras university ', '', 'B. Com', '2012', 62.00, '', 1, '2021-07-03 12:15:06', 0, NULL, 0, NULL, 1),
(6602, 5345, '3', 'anna university', '', 'b.e', '2017', 70.00, '', 1, '2021-07-03 12:24:53', 0, NULL, 0, NULL, 1),
(6603, 5345, '2', 'state board', '', '', '2013', 87.40, '', 1, '2021-07-03 12:25:51', 0, NULL, 0, NULL, 1),
(6604, 5345, '1', 'state board', '', '', '2011', 97.20, '', 1, '2021-07-03 12:26:31', 0, NULL, 0, NULL, 1),
(6605, 5346, '4', 'Vels University', '', 'Mba-Business analytics', '2018', 64.00, '', 1, '2021-07-03 01:24:40', 0, NULL, 0, NULL, 1),
(6606, 5347, '3', 'Rajalakshmi Engineering college', '', 'B. E', '2020', 61.20, '', 1, '2021-07-03 03:34:09', 0, NULL, 0, NULL, 1),
(6607, 5347, '2', 'Bharathidasan matric hr sec school', '', '', '2016', 76.91, '', 1, '2021-07-03 03:35:29', 0, NULL, 0, NULL, 1),
(6608, 5347, '1', 'Bharathidasan matric hr sec school', '', '', '2014', 85.40, '', 1, '2021-07-03 03:35:56', 0, NULL, 0, NULL, 1),
(6609, 5348, '3', 'anna university', '', 'B.E', '2021', 85.64, '', 1, '2021-07-03 04:06:56', 0, NULL, 0, NULL, 1),
(6610, 5349, '4', 'Anna University ', '', 'MCA', '2020', 85.00, '', 1, '2021-07-03 04:51:44', 0, NULL, 0, NULL, 1),
(6611, 5349, '3', 'Bharathidasan University  ', '', 'B, sc (computer Science)', '2018', 70.00, '', 1, '2021-07-03 04:53:19', 0, NULL, 0, NULL, 1),
(6612, 5350, '3', 'university of madras', '', 'b.sc computer science', '2018', 75.00, '', 1, '2021-07-03 05:52:35', 0, NULL, 0, NULL, 1),
(6613, 5352, '3', 'Madras university', '', 'bsc computer science', '2021', 75.00, '', 1, '2021-07-05 11:12:03', 0, NULL, 0, NULL, 1),
(6614, 5353, '1', 'state board', '', '', '2017', 71.00, '', 1, '2021-07-05 11:15:54', 0, NULL, 0, NULL, 1),
(6615, 5354, '3', 'Madras University', '', 'B.com', '2012', 78.00, '', 1, '2021-07-05 12:19:53', 0, NULL, 0, NULL, 1),
(6616, 5355, '3', 'BHARADHIDASAN UNIVERSITY', '', 'BBA ', '2021', 68.00, '', 1, '2021-07-05 01:22:51', 0, NULL, 0, NULL, 1),
(6617, 5356, '3', 'Anna University', '', 'Information technology', '2017', 60.00, '', 1, '2021-07-05 06:26:17', 0, NULL, 0, NULL, 1),
(6618, 5356, '2', 'State board', '', 'Information technology', '2013', 77.17, '', 1, '2021-07-05 06:27:38', 0, NULL, 0, NULL, 1),
(6619, 5356, '1', 'Starboard', '', '', '2011', 91.50, '', 1, '2021-07-05 06:28:09', 0, NULL, 0, NULL, 1),
(6620, 5357, '1', 'state board', '', '', '2013', 84.00, '', 1, '2021-07-05 06:33:40', 0, NULL, 0, NULL, 1),
(6621, 5357, '2', 'state board', '', '', '2015', 58.00, '', 1, '2021-07-05 06:33:56', 0, NULL, 0, NULL, 1),
(6622, 5357, '3', 'anna university', '', 'b.e', '2019', 7.38, '', 1, '2021-07-05 06:34:33', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6623, 5359, '3', 'jntu', '', 'mechanical', '2018', 60.00, '', 1, '2021-07-06 11:01:35', 0, NULL, 0, NULL, 1),
(6624, 5358, '2', 'jaya matriculation', '', '', '2014', 90.00, '', 1, '2021-07-06 11:04:47', 0, NULL, 0, NULL, 1),
(6625, 5360, '3', 'Hindustan College of Arts and science ', '', 'BCA', '2016', 56.00, '', 1, '2021-07-06 11:08:10', 0, NULL, 0, NULL, 1),
(6626, 5360, '2', 'Santhome higher secondary school', '', '', '2013', 52.00, '', 1, '2021-07-06 11:08:51', 0, NULL, 0, NULL, 1),
(6627, 5360, '1', 'Santhome higher secondary school', '', '', '2011', 80.00, '', 1, '2021-07-06 11:09:09', 0, NULL, 0, NULL, 1),
(6628, 5361, '2', 'mgr', '', '', '2018', 69.00, '', 1, '2021-07-06 11:32:48', 0, NULL, 0, NULL, 1),
(6629, 5361, '3', 'gurunanak', '', 'bcom', '2021', 70.00, '', 1, '2021-07-06 11:33:19', 0, NULL, 0, NULL, 1),
(6630, 5362, '3', 'Mookambikai College of Engineering', '', 'BE CSE', '2016', 69.00, '', 1, '2021-07-06 11:44:00', 0, NULL, 0, NULL, 1),
(6631, 5362, '2', 'SSLC', '', '', '2012', 83.91, '', 1, '2021-07-06 11:45:44', 0, NULL, 0, NULL, 1),
(6632, 5362, '1', 'SSLC', '', '', '2010', 94.60, '', 1, '2021-07-06 11:46:03', 0, NULL, 0, NULL, 1),
(6633, 5364, '3', 'Bharathiyar', '', 'Computer Technology', '2014', 60.00, '', 1, '2021-07-06 01:43:42', 0, NULL, 0, NULL, 1),
(6634, 5364, '1', 'Stateboard', '', '', '2009', 70.00, '', 1, '2021-07-06 01:44:19', 0, NULL, 0, NULL, 1),
(6635, 5364, '2', 'Stateboard', '', '', '2011', 62.00, '', 1, '2021-07-06 01:45:09', 0, NULL, 0, NULL, 1),
(6636, 4488, '4', 'Anna University', '', 'B.E Computer science engineering', '2013', 64.00, '', 1, '2021-07-06 03:27:32', 0, NULL, 0, NULL, 1),
(6637, 5365, '3', 'Anna university ', '', 'B. E', '2020', 69.50, '', 1, '2021-07-06 09:51:16', 0, NULL, 0, NULL, 1),
(6638, 5365, '2', 'Sathyaa matriculation Higher Secondary school ', '', '', '2016', 71.60, '', 1, '2021-07-06 09:52:14', 0, NULL, 0, NULL, 1),
(6639, 5365, '1', 'Sathyaa matriculation Higher Secondary school ', '', '', '2014', 91.60, '', 1, '2021-07-06 09:52:45', 0, NULL, 0, NULL, 1),
(6640, 5366, '4', 'Sathiyabama University', '', 'MBA', '2021', 6.80, '', 1, '2021-07-07 10:30:56', 0, NULL, 0, NULL, 1),
(6641, 5366, '1', 'St.mark\'s mat her sec school chrompet', '', '', '2013', 58.00, '', 1, '2021-07-07 10:31:42', 0, NULL, 0, NULL, 1),
(6642, 5366, '2', 'St.marks\'s mat her sec school chrompet', '', '', '2015', 63.00, '', 1, '2021-07-07 10:32:06', 0, NULL, 0, NULL, 1),
(6643, 5366, '3', 'BHARATH UNIVERSITY OF INSTITUTE OF ARTS AND SCIENCE', '', 'BCA', '2019', 7.30, '', 1, '2021-07-07 10:33:00', 0, NULL, 0, NULL, 1),
(6644, 5367, '3', 'avc college of arts and science', '', 'bca', '2020', 76.00, '', 1, '2021-07-07 10:53:06', 0, NULL, 0, NULL, 1),
(6645, 5368, '2', 'government', '', '', '2014', 62.00, '', 1, '2021-07-07 11:32:00', 0, NULL, 0, NULL, 1),
(6646, 5368, '3', 'scp jain', '', 'bcom', '2017', 55.00, '', 1, '2021-07-07 11:32:34', 0, NULL, 0, NULL, 1),
(6647, 5369, '3', 'kandhasaminaidu', '', 'bsc', '2021', 56.00, '', 1, '2021-07-07 11:42:43', 0, NULL, 0, NULL, 1),
(6648, 5370, '3', 'jha agersel', '', 'b.com', '2021', 56.00, '', 1, '2021-07-07 11:49:26', 0, NULL, 0, NULL, 1),
(6649, 0, '3', 'madurai kamaraj University ', '', 'Bsc computerscience', '2018', 75.00, '', 1, '2021-07-07 12:12:22', 1, '2021-07-08 04:32:16', 0, NULL, 0),
(6650, 5371, '3', 'Madras University', '', 'Bachalor of computer applications', '2018', 54.00, '', 1, '2021-07-07 12:13:09', 0, NULL, 0, NULL, 1),
(6651, 5372, '3', 'new college', '', 'bsc', '2014', 54.00, '', 1, '2021-07-07 12:39:17', 0, NULL, 0, NULL, 1),
(6652, 5373, '3', 'Thiruvalluvar University ', '', 'B.Sc. computer science ', '2013', 7.60, '', 1, '2021-07-07 01:07:15', 0, NULL, 0, NULL, 1),
(6653, 5374, '3', 'anna university', '', 'Bachelor of Engineering', '2016', 72.60, '', 1, '2021-07-07 01:32:30', 0, NULL, 0, NULL, 1),
(6654, 5374, '2', 'state board', '', '', '2012', 80.00, '', 1, '2021-07-07 01:33:07', 0, NULL, 0, NULL, 1),
(6655, 5374, '1', 'state board', '', '', '2010', 81.00, '', 1, '2021-07-07 01:33:33', 0, NULL, 0, NULL, 1),
(6656, 5375, '3', 'manonmaniam sundaranar university ', '', 'BCA', '2020', 65.00, '', 1, '2021-07-07 02:57:17', 0, NULL, 0, NULL, 1),
(6657, 5375, '1', 'Daniel Thomas Matriculation Higher Secondary School ', '', '', '2015', 82.00, '', 1, '2021-07-07 02:57:49', 0, NULL, 0, NULL, 1),
(6658, 5375, '2', 'Daniel Thomas Matriculation Higher Secondary School ', '', '', '2017', 56.00, '', 1, '2021-07-07 02:58:16', 0, NULL, 0, NULL, 1),
(6659, 5377, '3', 'Jamal Mohamed college', '', 'B. A English', '2017', 58.00, '', 1, '2021-07-07 03:28:49', 0, NULL, 0, NULL, 1),
(6660, 5376, '4', 'Bharathi dhasan university ', '', 'Mca ', '2014', 79.00, '', 1, '2021-07-07 03:32:29', 0, NULL, 0, NULL, 1),
(6661, 5378, '3', 'Bharath college of science and management', '', 'BCA', '2017', 81.00, '', 1, '2021-07-07 03:53:22', 0, NULL, 0, NULL, 1),
(6662, 5380, '1', 'sate borad', '', '', '2009', 60.00, '', 1, '2021-07-07 07:29:27', 0, NULL, 0, NULL, 1),
(6663, 5380, '2', 'state board ', '', '', '2011', 50.00, '', 1, '2021-07-07 07:29:52', 0, NULL, 0, NULL, 1),
(6664, 5380, '4', 'vels university', '', 'computer science', '2015', 5.60, '', 1, '2021-07-07 07:31:09', 0, NULL, 0, NULL, 1),
(6665, 5381, '3', 'Ksk college of engineering and Technology', '', 'B. E CSE', '2017', 72.00, '', 1, '2021-07-07 07:40:58', 0, NULL, 0, NULL, 1),
(6666, 5382, '3', 'University college of engineering', '', 'BE', '2019', 60.00, '', 1, '2021-07-08 10:32:19', 0, NULL, 0, NULL, 1),
(6667, 5383, '3', 'Anna University', '', 'BE MECHANICAL ENGINEERING', '2018', 75.00, '', 1, '2021-07-08 10:51:44', 0, NULL, 0, NULL, 1),
(6668, 5383, '2', 'State board', '', '', '2014', 91.00, '', 1, '2021-07-08 10:52:19', 0, NULL, 0, NULL, 1),
(6669, 5383, '1', 'State board', '', '', '2012', 90.00, '', 1, '2021-07-08 10:52:40', 0, NULL, 0, NULL, 1),
(6670, 5384, '3', 'University ', '', 'BBA (Business administration) ', '2020', 6.67, '', 1, '2021-07-08 11:02:07', 0, NULL, 0, NULL, 1),
(6671, 5385, '5', 'DOTE', '', 'DEEE', '2012', 72.00, '', 1, '2021-07-08 11:52:27', 0, NULL, 0, NULL, 1),
(6672, 5385, '3', 'Annamalai University', '', 'BBA', '2015', 74.00, '', 1, '2021-07-08 11:53:34', 0, NULL, 0, NULL, 1),
(6673, 5385, '2', 'State board', '', '', '2009', 75.00, '', 1, '2021-07-08 11:54:28', 0, NULL, 0, NULL, 1),
(6674, 0, '4', 'bharathiyar university coimbatore', '', 'm.sc computer science', '2020', 83.00, '', 1, '2021-07-08 02:34:41', 1, '2021-07-08 04:32:12', 0, NULL, 0),
(6675, 5386, '3', 'madurai kamaraj university', '', 'b.sc computer science', '2018', 75.00, '', 1, '2021-07-08 02:39:52', 0, NULL, 0, NULL, 1),
(6676, 5386, '4', 'bharathiyar university', '', 'm.sc computer science', '2020', 83.00, '', 1, '2021-07-08 02:40:34', 0, NULL, 0, NULL, 1),
(6677, 5387, '3', 'Anna university', '', 'B.E', '2020', 60.00, '', 1, '2021-07-08 03:58:26', 0, NULL, 0, NULL, 1),
(6678, 5389, '3', 'St. Joseph college of engineering', '', 'BE', '2021', 81.00, '', 1, '2021-07-08 04:25:48', 0, NULL, 0, NULL, 1),
(6679, 5389, '2', 'State board', '', '', '2016', 89.00, '', 1, '2021-07-08 04:26:19', 0, NULL, 0, NULL, 1),
(6680, 5389, '1', 'State board', '', '', '2015', 96.00, '', 1, '2021-07-08 04:26:46', 0, NULL, 0, NULL, 1),
(6681, 5391, '3', 'madras', '', 'bcom', '2018', 65.00, '', 1, '2021-07-08 04:32:44', 0, NULL, 0, NULL, 1),
(6682, 5393, '4', 'SASTRA UNIVERSITY', '', 'MCA', '2021', 78.00, '', 1, '2021-07-08 06:05:39', 0, NULL, 0, NULL, 1),
(6683, 5388, '3', 'Sathyabama institute of Science and technology ', '', 'Computer science Engineering', '2020', 66.00, '', 1, '2021-07-08 06:50:19', 0, NULL, 0, NULL, 1),
(6684, 5388, '2', 'state Board ', '', '', '2016', 77.00, '', 1, '2021-07-08 06:51:22', 0, NULL, 0, NULL, 1),
(6685, 5394, '4', 'bharathiar university', '', 'mca', '2021', 87.00, '', 1, '2021-07-08 08:37:11', 0, NULL, 0, NULL, 1),
(6686, 5394, '3', 'bharathiar university', '', 'b.sc - information technology', '2019', 64.00, '', 1, '2021-07-08 08:38:29', 0, NULL, 0, NULL, 1),
(6687, 5394, '2', 'tamil nadu state board', '', '', '2016', 63.00, '', 1, '2021-07-08 08:39:24', 1, '2021-07-08 08:40:27', 0, NULL, 1),
(6688, 5394, '1', 'tamil nadu state board', '', '', '2014', 64.00, '', 1, '2021-07-08 08:39:53', 0, NULL, 0, NULL, 1),
(6689, 5396, '3', 'university of madras', '', 'b.sc', '2018', 60.00, '', 1, '2021-07-09 11:43:27', 0, NULL, 0, NULL, 1),
(6690, 5397, '3', 'Anna university', '', 'B.Tech', '2020', 73.00, '', 1, '2021-07-09 11:43:36', 0, NULL, 0, NULL, 1),
(6691, 5397, '1', 'State board', '', '', '2014', 93.00, '', 1, '2021-07-09 11:43:57', 1, '2021-07-09 11:44:13', 0, NULL, 1),
(6692, 5397, '2', 'State board', '', '', '2016', 80.00, '', 1, '2021-07-09 11:44:26', 0, NULL, 0, NULL, 1),
(6693, 5398, '3', 'Anna University ', '', 'BTech (IT)', '2020', 85.00, '', 1, '2021-07-09 12:01:58', 0, NULL, 0, NULL, 1),
(6694, 5399, '3', 'Prist University', '', 'B. Tech', '2019', 6.76, '', 1, '2021-07-09 01:29:29', 0, NULL, 0, NULL, 1),
(6695, 5400, '3', 'Pondicherry university', '', 'B. Tech(cse) ', '2019', 6.90, '', 1, '2021-07-09 01:31:06', 0, NULL, 0, NULL, 1),
(6696, 5400, '1', 'Bghss', '', '', '2013', 88.60, '', 1, '2021-07-09 01:32:25', 0, NULL, 0, NULL, 1),
(6697, 5400, '2', 'Bharathi government higher secondary school ', '', '', '2015', 86.80, '', 1, '2021-07-09 01:33:20', 0, NULL, 0, NULL, 1),
(6698, 5401, '3', 'srm institute of science and technology', '', 'b.tech', '2021', 77.28, '', 1, '2021-07-09 01:36:29', 0, NULL, 0, NULL, 1),
(6699, 5401, '2', 'kendriya vidyalaya', '', '', '2016', 74.00, '', 1, '2021-07-09 01:37:19', 0, NULL, 0, NULL, 1),
(6700, 5395, '3', 'Bharathidhasan University', '', 'B.sc Information Technology', '2018', 57.00, '', 1, '2021-07-09 10:02:17', 0, NULL, 0, NULL, 1),
(6701, 5402, '2', 'State board', '', '', '2015', 80.00, '', 1, '2021-07-10 09:23:20', 0, NULL, 0, NULL, 1),
(6702, 5402, '3', 'Anna university', '', 'Agri', '2019', 74.00, '', 1, '2021-07-10 09:24:13', 0, NULL, 0, NULL, 1),
(6703, 5403, '4', 'madurai kamaraj university', '', 'm.sc computer science ', '2017', 63.00, '', 1, '2021-07-10 09:53:44', 0, NULL, 0, NULL, 1),
(6704, 5403, '3', 'thiruvalluvar university', '', 'b.sc computer', '2012', 48.50, '', 1, '2021-07-10 09:54:53', 0, NULL, 0, NULL, 1),
(6705, 5404, '3', 'PATRICIAN COLLEGE OF Art\'s and Science', '', 'BACHELORS OF BUSINESS ADMINISTRATION', '2021', 63.00, '', 1, '2021-07-10 10:48:16', 0, NULL, 0, NULL, 1),
(6706, 5405, '2', 'Matriculation ', '', '', '2012', 75.00, '', 1, '2021-07-10 11:39:28', 0, NULL, 0, NULL, 1),
(6707, 5405, '3', 'Anna university ', '', 'Be', '2016', 71.00, '', 1, '2021-07-10 11:40:08', 0, NULL, 0, NULL, 1),
(6708, 4960, '3', 'madras', '', 'be', '2021', 75.00, '', 50, '2021-07-10 05:17:43', 0, NULL, 0, NULL, 1),
(6709, 4960, '1', 'state', '', '', '2015', 90.00, '', 50, '2021-07-10 05:18:58', 0, NULL, 0, NULL, 1),
(6710, 4960, '2', 'state', '', '', '2017', 79.00, '', 50, '2021-07-10 05:19:09', 0, NULL, 0, NULL, 1),
(6711, 5407, '2', 'state board', '', '', '2015', 80.00, '', 1, '2021-07-10 05:56:22', 0, NULL, 0, NULL, 1),
(6712, 5407, '3', 'madras', '', 'bsc', '2019', 75.00, '', 1, '2021-07-10 05:56:53', 0, NULL, 0, NULL, 1),
(6713, 5408, '3', 'Tamilnadu University ', '', 'BA', '2013', 70.00, '', 1, '2021-07-12 10:00:36', 0, NULL, 0, NULL, 1),
(6714, 5409, '3', 'University of Madras', '', 'B.com A/f', '2019', 70.00, '', 1, '2021-07-12 10:21:57', 0, NULL, 0, NULL, 1),
(6715, 5411, '3', 'university of madras', '', 'bba', '2017', 60.00, '', 1, '2021-07-12 11:02:13', 0, NULL, 0, NULL, 1),
(6716, 5410, '3', 'Thiruvallur university', '', 'Bsc computer science', '2018', 75.00, '', 1, '2021-07-12 11:14:30', 0, NULL, 0, NULL, 1),
(6717, 5412, '5', 'Bangalore University', '', 'BBA', '2020', 53.00, '', 1, '2021-07-12 11:33:21', 0, NULL, 0, NULL, 1),
(6718, 5414, '2', 'Jamaliya Hr sec school', '', '', '2019', 50.00, '', 1, '2021-07-12 11:53:44', 1, '2021-07-12 11:54:03', 0, NULL, 0),
(6719, 5414, '2', 'Jamaliya hr sec school', '', '', '2017', 50.00, '', 1, '2021-07-12 11:54:29', 0, NULL, 0, NULL, 1),
(6720, 5415, '3', 'Sathybama institute of science and technology ', '', 'BBA', '2022', 75.00, '', 1, '2021-07-12 11:55:20', 0, NULL, 0, NULL, 1),
(6721, 5416, '3', 'Sathyabama institute of science and technology', '', 'BBA', '2022', 77.00, '', 1, '2021-07-12 12:08:06', 0, NULL, 0, NULL, 1),
(6722, 5413, '3', 'Sathyabama University', '', 'BBA', '2022', 71.00, '', 1, '2021-07-12 12:24:01', 0, NULL, 0, NULL, 1),
(6723, 5417, '5', 'Open University Malaysia', '', '', '2017', 80.00, '', 1, '2021-07-12 04:32:50', 0, NULL, 0, NULL, 1),
(6724, 5406, '1', 'stateboard', '', '', '2014', 97.20, '', 1, '2021-07-12 06:51:45', 0, NULL, 0, NULL, 1),
(6725, 5406, '2', 'stateboard', '', '', '2016', 95.16, '', 1, '2021-07-12 06:52:24', 0, NULL, 0, NULL, 1),
(6726, 5406, '3', 'alagappa', '', 'b.e', '2020', 69.00, '', 1, '2021-07-12 06:52:49', 0, NULL, 0, NULL, 1),
(6727, 5419, '3', 'anna university', '', 'be', '2015', 69.00, '', 1, '2021-07-12 06:57:42', 0, NULL, 0, NULL, 1),
(6728, 5419, '2', 'cbse', '', '', '2011', 76.00, '', 1, '2021-07-12 06:57:59', 0, NULL, 0, NULL, 1),
(6729, 5419, '1', 'cbse', '', '', '2009', 79.00, '', 1, '2021-07-12 06:58:12', 0, NULL, 0, NULL, 1),
(6730, 5420, '3', 'Madras university', '', 'BCOM', '2021', 76.00, '', 1, '2021-07-13 09:56:14', 0, NULL, 0, NULL, 1),
(6731, 1706, '2', 'State board', '', '', '2018', 50.00, '', 1, '2021-07-13 11:06:22', 0, NULL, 0, NULL, 1),
(6732, 1706, '3', 'Madras university', '', 'Bcom', '2018', 60.00, '', 1, '2021-07-13 11:06:59', 0, NULL, 0, NULL, 1),
(6733, 5421, '3', 'Anna University', '', 'B.E(CSE)', '2020', 66.00, '', 1, '2021-07-13 11:24:29', 1, '2021-07-13 11:26:54', 0, NULL, 1),
(6734, 5421, '2', 'State Board', '', '', '2016', 65.00, '', 1, '2021-07-13 11:25:12', 0, NULL, 0, NULL, 1),
(6735, 5421, '1', 'State Board', '', '', '2016', 74.00, '', 1, '2021-07-13 11:26:04', 0, NULL, 0, NULL, 1),
(6736, 5418, '2', 'tn', '', '', '2011', 70.00, '', 1, '2021-07-13 12:12:00', 1, '2021-07-13 12:12:47', 0, NULL, 1),
(6737, 5418, '5', 'tn', '', 'hotel mgnt', '2016', 95.00, '', 1, '2021-07-13 12:13:40', 0, NULL, 0, NULL, 1),
(6738, 5422, '3', 'Anna University ', '', 'B. E  ( cSE)', '2020', 65.00, '', 1, '2021-07-13 12:34:41', 0, NULL, 0, NULL, 1),
(6739, 5422, '2', 'State board', '', '', '2016', 56.00, '', 1, '2021-07-13 12:35:11', 0, NULL, 0, NULL, 1),
(6740, 5422, '1', 'State board ', '', '', '2014', 69.00, '', 1, '2021-07-13 12:35:28', 0, NULL, 0, NULL, 1),
(6741, 5423, '5', 'cpcl', '', 'ece', '2016', 63.00, '', 1, '2021-07-13 01:44:18', 0, NULL, 0, NULL, 1),
(6742, 5425, '4', 'The New College Aotomomuse Madras University', '', 'M.A Economic', '2019', 70.00, '', 1, '2021-07-13 03:09:08', 0, NULL, 0, NULL, 1),
(6743, 5426, '3', 'Mar Gregorios college of arts and science', '', 'bsc.computer science', '2021', 70.00, '', 1, '2021-07-13 04:01:49', 0, NULL, 0, NULL, 1),
(6744, 5428, '3', 'Anna university ', '', 'B.E ECE', '2020', 73.40, '', 1, '2021-07-13 04:52:25', 0, NULL, 0, NULL, 1),
(6745, 5424, '4', 'Madras University ', '', 'Msc computer science', '2019', 68.00, '', 1, '2021-07-13 05:05:11', 0, NULL, 0, NULL, 1),
(6746, 5424, '4', 'Madras University ', '', 'Msc', '2019', 68.00, '', 1, '2021-07-13 05:05:48', 0, NULL, 0, NULL, 1),
(6747, 5427, '3', 'Anna University', '', 'B.E', '2017', 6.19, '', 1, '2021-07-13 06:10:47', 0, NULL, 0, NULL, 1),
(6748, 5429, '3', 'JAYARAJ ANNAPACKIAM CSI COLLEGE ENGINEERING ,ANNA UNIVERSITY', '', 'b. tech', '2020', 70.00, '', 1, '2021-07-14 11:54:55', 0, NULL, 0, NULL, 1),
(6749, 3322, '3', 'jntua', '', 'b.tech', '2019', 7.00, '', 1, '2021-07-14 11:56:42', 0, NULL, 0, NULL, 1),
(6750, 3322, '2', 'board of intermediate', '', '', '2015', 65.00, '', 1, '2021-07-14 11:58:01', 0, NULL, 0, NULL, 1),
(6751, 3322, '1', 'board of secondary', '', '', '2013', 8.70, '', 1, '2021-07-14 11:58:41', 0, NULL, 0, NULL, 1),
(6752, 5431, '3', 'karunya university', '', 'btech', '2021', 69.00, '', 1, '2021-07-14 11:59:17', 0, NULL, 0, NULL, 1),
(6753, 5431, '2', 'state board', '', '', '2017', 83.00, '', 1, '2021-07-14 11:59:36', 0, NULL, 0, NULL, 1),
(6754, 5431, '1', 'state board', '', '', '2015', 91.00, '', 1, '2021-07-14 11:59:55', 0, NULL, 0, NULL, 1),
(6755, 5432, '3', 'Valliammal college for women ', '', 'B.com corporate secretary ship ', '2018', 80.00, '', 1, '2021-07-14 12:07:16', 0, NULL, 0, NULL, 1),
(6756, 5430, '3', 'Mm University', '', 'B.com', '2019', 70.00, '', 1, '2021-07-14 12:17:30', 0, NULL, 0, NULL, 1),
(6757, 5434, '3', 'K Ramakrishnan college of technology', '', 'BE ', '2018', 75.00, '', 1, '2021-07-14 12:19:23', 0, NULL, 0, NULL, 1),
(6758, 5433, '2', 'State board ', '', '', '2016', 60.00, '', 1, '2021-07-14 12:39:51', 0, NULL, 0, NULL, 1),
(6759, 5436, '3', 'Madras university ', '', 'B.com (general)', '2021', 50.00, '', 1, '2021-07-14 01:27:43', 0, NULL, 0, NULL, 1),
(6760, 5436, '2', 'Government ', '', '', '2018', 47.00, '', 1, '2021-07-14 01:28:30', 0, NULL, 0, NULL, 1),
(6761, 5436, '1', 'Government ', '', '', '2016', 47.00, '', 1, '2021-07-14 01:30:47', 0, NULL, 0, NULL, 1),
(6762, 5435, '3', 'Medrad University', '', 'Bcom General', '2021', 50.00, '', 1, '2021-07-14 01:49:56', 0, NULL, 0, NULL, 1),
(6763, 5435, '1', 'Government', '', '', '2018', 45.00, '', 1, '2021-07-14 01:50:54', 0, NULL, 0, NULL, 1),
(6764, 5435, '2', 'Government', '', '', '2015', 55.00, '', 1, '2021-07-14 01:51:34', 0, NULL, 0, NULL, 1),
(6765, 5437, '3', 'Periyar university ', '', 'B. A. History ', '2022', 86.00, '', 1, '2021-07-14 03:09:09', 0, NULL, 0, NULL, 1),
(6766, 5437, '2', 'Girls higher secondary School', '', '', '2019', 65.00, '', 1, '2021-07-14 03:09:54', 0, NULL, 0, NULL, 1),
(6767, 5437, '1', 'Fathima  matric higher secondary school ', '', '', '2017', 76.00, '', 1, '2021-07-14 03:10:36', 0, NULL, 0, NULL, 1),
(6768, 5438, '1', 'Nios', '', '', '2014', 75.00, '', 1, '2021-07-14 03:21:06', 0, NULL, 0, NULL, 1),
(6769, 5439, '3', 'madras ', '', 'bca', '2021', 80.00, '', 1, '2021-07-14 05:10:22', 0, NULL, 0, NULL, 1),
(6770, 5440, '3', 'sri ramakrishna institute of technology', '', 'bachelor of engineering', '2021', 7.90, '', 1, '2021-07-14 05:15:50', 0, NULL, 0, NULL, 1),
(6771, 5440, '2', 'state board', '', '', '2017', 76.00, '', 1, '2021-07-14 05:16:46', 1, '2021-07-14 05:18:12', 0, NULL, 1),
(6772, 5440, '1', 'state board', '', '', '2015', 76.00, '', 1, '2021-07-14 05:17:53', 0, NULL, 0, NULL, 1),
(6773, 5441, '2', 'state boatd', '', '', '2015', 65.00, '', 1, '2021-07-14 05:24:39', 0, NULL, 0, NULL, 1),
(6774, 5441, '3', 'madras', '', 'ba', '2021', 90.00, '', 1, '2021-07-14 05:25:04', 0, NULL, 0, NULL, 1),
(6775, 5442, '4', 'University of Madras department student', '', 'Msc', '2020', 81.00, '', 1, '2021-07-14 07:26:08', 0, NULL, 0, NULL, 1),
(6776, 5444, '3', 'jntua', '', 'b.tech', '2020', 74.00, '', 1, '2021-07-15 10:56:24', 0, NULL, 0, NULL, 1),
(6777, 5444, '2', 'board of intermediate', '', '', '2016', 73.00, '', 1, '2021-07-15 10:57:52', 0, NULL, 0, NULL, 1),
(6778, 5444, '1', 'board of secondary', '', '', '2014', 87.00, '', 1, '2021-07-15 10:58:17', 0, NULL, 0, NULL, 1),
(6779, 5445, '4', 'Madras University', '', 'MSc mathematics', '2017', 64.50, '', 1, '2021-07-15 12:13:20', 0, NULL, 0, NULL, 1),
(6780, 5446, '2', 'state board', '', '', '2011', 60.00, '', 1, '2021-07-15 12:21:26', 0, NULL, 0, NULL, 1),
(6781, 5446, '4', 'barathidasan', '', 'msc', '2016', 74.00, '', 1, '2021-07-15 12:22:09', 0, NULL, 0, NULL, 1),
(6782, 5447, '3', 'barathidasan', '', 'be', '2021', 70.00, '', 1, '2021-07-15 12:28:09', 0, NULL, 0, NULL, 1),
(6783, 5449, '3', 'bharathiyar university', '', 'bsc', '2019', 79.00, '', 1, '2021-07-15 01:28:58', 0, NULL, 0, NULL, 1),
(6784, 5449, '1', 'state board', '', '', '2014', 94.00, '', 1, '2021-07-15 01:29:26', 0, NULL, 0, NULL, 1),
(6785, 5449, '2', 'stateboard', '', '', '2016', 78.00, '', 1, '2021-07-15 01:29:53', 0, NULL, 0, NULL, 1),
(6786, 5448, '3', 'karpagam university', '', 'computer science engineering', '2015', 69.00, '', 1, '2021-07-15 01:50:42', 0, NULL, 0, NULL, 1),
(6787, 5448, '2', 'state board', '', '', '2011', 61.00, '', 1, '2021-07-15 01:53:18', 0, NULL, 0, NULL, 1),
(6788, 5448, '1', 'state board', '', '', '2009', 84.00, '', 1, '2021-07-15 01:53:46', 0, NULL, 0, NULL, 1),
(6789, 5451, '4', 'Barathidhsan University', '', 'Msc computer science', '2020', 74.00, '', 1, '2021-07-15 03:03:29', 0, NULL, 0, NULL, 1),
(6790, 5454, '3', 'seethalakshmi ramaswamy college', '', 'bsc', '2011', 78.80, '', 1, '2021-07-15 05:24:10', 0, NULL, 0, NULL, 1),
(6791, 5454, '4', 'seethalaskhmi ramaswamy college ', '', 'msc', '2013', 89.00, '', 1, '2021-07-15 05:24:59', 0, NULL, 0, NULL, 1),
(6792, 5455, '3', 'Anna University', '', 'B.Tech', '2019', 6.50, '', 1, '2021-07-16 11:08:34', 0, NULL, 0, NULL, 1),
(6793, 5456, '2', 'State board', '', '', '2016', 84.00, '', 1, '2021-07-16 11:16:49', 0, NULL, 0, NULL, 1),
(6794, 5456, '3', 'Anna university', '', 'Be', '2020', 70.00, '', 1, '2021-07-16 11:17:32', 0, NULL, 0, NULL, 1),
(6795, 5457, '3', 'Anna University', '', 'B. e', '2018', 69.00, '', 1, '2021-07-16 11:36:04', 0, NULL, 0, NULL, 1),
(6796, 5458, '2', 'State board ', '', '', '2002', 55.00, '', 1, '2021-07-16 12:20:43', 0, NULL, 0, NULL, 1),
(6797, 5458, '3', 'Madras university ', '', 'BA', '2005', 55.00, '', 1, '2021-07-16 12:21:25', 0, NULL, 0, NULL, 1),
(6798, 5459, '1', 'SBM HIGHER SECONDARY SCHOOL', '', '', '2014', 99.00, '', 1, '2021-07-16 12:35:15', 0, NULL, 0, NULL, 1),
(6799, 5459, '2', 'SBM HIGHER SECONDARY SCHOOL', '', '', '2016', 86.00, '', 1, '2021-07-16 12:35:45', 0, NULL, 0, NULL, 1),
(6800, 5459, '3', 'VEL TECH MULTI TECH ENGINEERING COLLEGE', '', 'B.E. Biomedical Engineering', '2020', 76.00, '', 1, '2021-07-16 12:36:27', 0, NULL, 0, NULL, 1),
(6801, 5460, '3', 'Anna university', '', 'BE computer science', '2019', 66.00, '', 1, '2021-07-16 01:21:26', 0, NULL, 0, NULL, 1),
(6802, 5462, '4', 'New prince shree bhavani college of engineering and technology', '', 'BE', '2017', 62.50, '', 1, '2021-07-16 01:48:01', 0, NULL, 0, NULL, 1),
(6803, 5463, '3', 'University of madras ', '', 'B.sc physics with Computer Applications ', '2020', 80.00, '', 1, '2021-07-16 02:09:02', 0, NULL, 0, NULL, 1),
(6804, 5466, '3', 'Kamarajar University ', '', 'B.sc(computer Science)', '2020', 74.00, '', 1, '2021-07-16 02:56:14', 0, NULL, 0, NULL, 1),
(6805, 5468, '3', 'Dhanalakshmi srinivasan college of engineering ', '', 'Be', '2016', 61.00, '', 1, '2021-07-16 06:47:51', 0, NULL, 0, NULL, 1),
(6806, 5470, '3', 'MSU', '', 'B.Sc(IT)', '2020', 63.00, '', 1, '2021-07-17 10:36:15', 0, NULL, 0, NULL, 1),
(6807, 5470, '2', 'State Board', '', '', '2017', 73.00, '', 1, '2021-07-17 10:36:33', 0, NULL, 0, NULL, 1),
(6808, 5470, '1', 'State Board', '', '', '2015', 73.00, '', 1, '2021-07-17 10:37:05', 0, NULL, 0, NULL, 1),
(6809, 5471, '4', 'Periyar university', '', 'MBA', '2020', 69.00, '', 1, '2021-07-17 10:51:36', 0, NULL, 0, NULL, 1),
(6810, 5472, '4', 'Madras Christian College', '', 'Msc Mathematics', '2021', 77.00, '', 1, '2021-07-17 11:03:02', 0, NULL, 0, NULL, 1),
(6811, 5473, '1', 'Board ', '', '', '2010', 67.80, '', 1, '2021-07-17 11:13:31', 0, NULL, 0, NULL, 1),
(6812, 5473, '5', 'University', '', 'B. E', '2014', 74.00, '', 1, '2021-07-17 11:14:41', 0, NULL, 0, NULL, 1),
(6813, 5473, '3', 'University ', '', 'B. E', '2010', 68.00, '', 1, '2021-07-17 11:15:25', 0, NULL, 0, NULL, 1),
(6814, 5474, '3', 'Anna university', '', 'B.tech', '2020', 69.00, '', 1, '2021-07-17 01:01:02', 0, NULL, 0, NULL, 1),
(6815, 5475, '3', 'Anna University Chennai', '', 'Bachelor of Engineering', '2017', 69.00, '', 1, '2021-07-17 01:20:12', 0, NULL, 0, NULL, 1),
(6816, 5475, '2', 'State Board of Tamilnadu', '', '', '2013', 60.90, '', 1, '2021-07-17 01:21:47', 0, NULL, 0, NULL, 1),
(6817, 5475, '1', 'State Board of Tamilnadu', '', '', '2011', 79.40, '', 1, '2021-07-17 01:22:39', 0, NULL, 0, NULL, 1),
(6818, 5477, '3', 'Autonomous', '', 'B com', '2019', 80.00, '', 1, '2021-07-17 02:37:21', 0, NULL, 0, NULL, 1),
(6819, 5478, '3', 'bishop heber college', '', 'Bsc computer science', '2019', 61.00, '', 1, '2021-07-17 03:20:30', 0, NULL, 0, NULL, 1),
(6820, 5481, '3', 'Anna University, Chennai ', '', 'B.tech Petroleum Engineering and Technology', '2019', 74.00, '', 1, '2021-07-17 04:41:00', 0, NULL, 0, NULL, 1),
(6821, 5480, '3', 'Madras university', '', 'B com', '2021', 80.00, '', 1, '2021-07-17 04:44:56', 0, NULL, 0, NULL, 1),
(6822, 5482, '3', 'madras university', '', 'b.sc', '2019', 60.00, '', 1, '2021-07-17 05:29:53', 0, NULL, 0, NULL, 1),
(6823, 5482, '2', 'state board', '', '', '2016', 60.00, '', 1, '2021-07-17 05:30:22', 0, NULL, 0, NULL, 1),
(6824, 5482, '1', 'state board', '', '', '2014', 80.00, '', 1, '2021-07-17 05:30:48', 0, NULL, 0, NULL, 1),
(6825, 5483, '1', 'State board of tamilnadu', '', '', '2012', 86.00, '', 1, '2021-07-17 06:10:33', 0, NULL, 0, NULL, 1),
(6826, 5483, '5', 'Docte', '', 'DEEE', '2016', 85.00, '', 1, '2021-07-17 06:11:18', 0, NULL, 0, NULL, 1),
(6827, 5483, '4', 'Anna university', '', 'bE', '2019', 71.00, '', 1, '2021-07-17 06:11:44', 0, NULL, 0, NULL, 1),
(6828, 5487, '3', 'Madras University', '', 'B.sc Chemistry', '2021', 67.00, '', 1, '2021-07-19 11:26:31', 0, NULL, 0, NULL, 1),
(6829, 5488, '3', 'Anna University', '', 'B.E', '2017', 6.93, '', 1, '2021-07-19 11:27:20', 0, NULL, 0, NULL, 1),
(6830, 5489, '3', 'Madras university', '', 'Bsc physics', '2021', 65.00, '', 1, '2021-07-19 11:40:02', 0, NULL, 0, NULL, 1),
(6831, 5490, '3', 'Madras University', '', 'B.Sc', '2021', 85.00, '', 1, '2021-07-19 12:28:12', 0, NULL, 0, NULL, 1),
(6832, 5490, '1', 'State broad', '', '', '2018', 53.00, '', 1, '2021-07-19 12:29:41', 0, NULL, 0, NULL, 1),
(6833, 5490, '2', 'State broad', '', '', '2016', 78.20, '', 1, '2021-07-19 12:30:16', 0, NULL, 0, NULL, 1),
(6834, 5491, '3', 'Srm University', '', 'BE', '2019', 64.00, '', 1, '2021-07-19 01:56:02', 0, NULL, 0, NULL, 1),
(6835, 5492, '3', 'Dr MGR EDUCATIONAL AND RESEARCH INSTITUTE ', '', 'B. TECH ', '2020', 72.00, '', 1, '2021-07-19 02:49:52', 0, NULL, 0, NULL, 1),
(6836, 5492, '2', 'TNSB', '', '', '2016', 80.00, '', 1, '2021-07-19 02:50:38', 0, NULL, 0, NULL, 1),
(6837, 5492, '1', 'TNSB', '', '', '2014', 83.00, '', 1, '2021-07-19 02:51:00', 0, NULL, 0, NULL, 1),
(6838, 5493, '1', 'St xaver hr sec shool ', '', '', '2001', 71.00, '', 1, '2021-07-19 03:43:46', 0, NULL, 0, NULL, 1),
(6839, 5493, '2', 'Annamali University', '', '', '2016', 68.00, '', 1, '2021-07-19 03:44:54', 0, NULL, 0, NULL, 1),
(6840, 5495, '4', 'Tiruvalluvar University', '', 'M.Sc Computer Science', '2017', 75.30, '', 1, '2021-07-19 04:28:06', 0, NULL, 0, NULL, 1),
(6841, 5497, '3', 'Anna university', '', 'B.E-cse', '2019', 65.00, '', 1, '2021-07-19 05:29:31', 0, NULL, 0, NULL, 1),
(6842, 5476, '3', 'Madras university ', '', 'Bca', '2021', 80.00, '', 1, '2021-07-19 06:21:37', 0, NULL, 0, NULL, 1),
(6843, 2011, '4', 'Tiruvalluvar University', '', 'M SC computer science', '2017', 75.30, '', 1, '2021-07-20 10:59:49', 0, NULL, 0, NULL, 1),
(6844, 2011, '3', 'Tiruvalluvar University', '', 'B.SC computer science', '2014', 74.40, '', 1, '2021-07-20 11:02:18', 0, NULL, 0, NULL, 1),
(6845, 2011, '2', 'Mangalam GHSS', '', '', '2011', 58.80, '', 1, '2021-07-20 11:05:16', 0, NULL, 0, NULL, 1),
(6846, 2011, '1', 'Mangalam GHSS', '', '', '2009', 65.80, '', 1, '2021-07-20 11:05:52', 0, NULL, 0, NULL, 1),
(6847, 5501, '4', 'Anna University ', '', 'MBA ( HR and Operations )', '2020', 70.60, '', 1, '2021-07-20 11:39:37', 0, NULL, 0, NULL, 1),
(6848, 5500, '4', 'Anna University Regional Campus, Coimbatore', '', 'M.B.A HR & Operations', '2020', 68.00, '', 1, '2021-07-20 11:39:48', 0, NULL, 0, NULL, 1),
(6849, 5500, '3', 'Sri Krishna Arts & Science College', '', 'B.com Computer Application', '2018', 62.00, '', 1, '2021-07-20 11:40:36', 0, NULL, 0, NULL, 1),
(6850, 5501, '3', 'Barathiyar University', '', 'B.com ( computer application)', '2018', 64.70, '', 1, '2021-07-20 11:40:47', 0, NULL, 0, NULL, 1),
(6851, 5502, '4', 'Anna university ', '', 'MBA ', '2021', 70.00, '', 1, '2021-07-20 12:33:34', 0, NULL, 0, NULL, 1),
(6852, 5503, '3', 'Anand institute of Higher technology ', '', 'BE-EEE ', '2019', 69.00, '', 1, '2021-07-20 12:40:15', 0, NULL, 0, NULL, 1),
(6853, 5504, '2', 'Jai gopal garodia hindu vidhayalaya matric hr sec school', '', '', '2016', 79.00, '', 1, '2021-07-20 12:53:35', 0, NULL, 0, NULL, 1),
(6854, 5504, '1', 'Oxford matriculation hr sec school', '', '', '2014', 84.00, '', 1, '2021-07-20 12:54:52', 0, NULL, 0, NULL, 1),
(6855, 5505, '3', 'Anna university', '', 'BE', '2020', 65.00, '', 1, '2021-07-20 12:57:26', 0, NULL, 0, NULL, 1),
(6856, 5506, '2', 'State board', '', '', '2012', 74.00, '', 1, '2021-07-20 02:45:10', 0, NULL, 0, NULL, 1),
(6857, 5506, '5', 'Anna university', '', 'Civil Engineering', '2014', 76.00, '', 1, '2021-07-20 02:46:01', 0, NULL, 0, NULL, 1),
(6858, 5507, '3', 'AAA College Of Engineering and Technology', '', 'BE', '2020', 68.00, '', 1, '2021-07-20 04:56:52', 0, NULL, 0, NULL, 1),
(6859, 5508, '3', 'ANNA UNIVERSITY ', '', 'B.E/EEE', '2016', 60.00, '', 1, '2021-07-20 05:17:25', 0, NULL, 0, NULL, 1),
(6860, 5509, '3', 'vivekananda college', '', 'bca', '2019', 77.80, '', 1, '2021-07-21 09:42:36', 0, NULL, 0, NULL, 1),
(6861, 5510, '3', 'Kalasalingam institute of technology', '', 'BE EEE', '2012', 7.00, '', 1, '2021-07-21 10:03:48', 0, NULL, 0, NULL, 1),
(6862, 5511, '1', 'tamil nadu state board', '', '', '2013', 77.60, '', 1, '2021-07-21 10:34:39', 0, NULL, 0, NULL, 1),
(6863, 5511, '2', 'Tamil Nadu State Board', '', '', '2015', 68.75, '', 1, '2021-07-21 10:35:07', 0, NULL, 0, NULL, 1),
(6864, 5511, '3', 'bharathiyar university', '', 'b.sc computer science', '2018', 71.27, '', 1, '2021-07-21 10:36:09', 0, NULL, 0, NULL, 1),
(6865, 5511, '4', 'anna university', '', 'm c a', '2020', 65.55, '', 1, '2021-07-21 10:37:45', 0, NULL, 0, NULL, 1),
(6866, 5512, '2', 'state board', '', '', '2018', 60.00, '', 1, '2021-07-21 11:10:24', 0, NULL, 0, NULL, 1),
(6867, 5512, '3', 'dr ambetkar', '', 'ba', '2021', 70.00, '', 1, '2021-07-21 11:11:01', 0, NULL, 0, NULL, 1),
(6868, 5513, '4', 'Madras Christian College', '', 'Master of arts', '2022', 75.00, '', 1, '2021-07-21 11:27:23', 0, NULL, 0, NULL, 1),
(6869, 5513, '3', 'SRM UNIVERSITY', '', 'Bachelor of arts', '2017', 68.00, '', 1, '2021-07-21 11:28:31', 0, NULL, 0, NULL, 1),
(6870, 5513, '2', 'State board', '', '', '2013', 61.08, '', 1, '2021-07-21 11:29:42', 0, NULL, 0, NULL, 1),
(6871, 5513, '1', 'State board', '', '', '2011', 74.20, '', 1, '2021-07-21 11:30:14', 0, NULL, 0, NULL, 1),
(6872, 5514, '2', 'state board', '', '', '2017', 80.00, '', 1, '2021-07-21 11:43:56', 0, NULL, 0, NULL, 1),
(6873, 5514, '3', 'autonomus', '', 'bsc', '2020', 80.00, '', 1, '2021-07-21 11:44:36', 0, NULL, 0, NULL, 1),
(6874, 5515, '3', 'Anna university', '', 'Be ', '2015', 60.00, '', 1, '2021-07-21 12:55:41', 0, NULL, 0, NULL, 1),
(6875, 5515, '1', 'State Board', '', '', '2009', 70.00, '', 1, '2021-07-21 12:56:03', 0, NULL, 0, NULL, 1),
(6876, 5515, '2', 'Matriculation', '', '', '2011', 68.00, '', 1, '2021-07-21 12:56:23', 0, NULL, 0, NULL, 1),
(6877, 5516, '4', 'Anna University', '', 'MCA', '2019', 7.60, '', 1, '2021-07-21 01:34:15', 0, NULL, 0, NULL, 1),
(6878, 5517, '3', 'aringar anna institute of science and technology ', '', 'B.E', '2019', 6.78, '', 1, '2021-07-21 01:52:00', 0, NULL, 0, NULL, 1),
(6879, 5517, '1', 'government school ', '', '', '2013', 80.50, '', 1, '2021-07-21 01:52:25', 0, NULL, 0, NULL, 1),
(6880, 5517, '2', 'government high school ', '', '', '2015', 78.60, '', 1, '2021-07-21 01:52:44', 0, NULL, 0, NULL, 1),
(6881, 5518, '3', 'Madras University', '', 'Bsc computer science', '2021', 60.00, '', 1, '2021-07-21 02:58:44', 0, NULL, 0, NULL, 1),
(6882, 5519, '4', 'Madras University', '', 'MCA', '2021', 70.00, '', 1, '2021-07-21 06:30:29', 0, NULL, 0, NULL, 1),
(6883, 5520, '4', 'University of Madras', '', 'MCA', '2021', 62.00, '', 1, '2021-07-21 06:38:50', 0, NULL, 0, NULL, 1),
(6884, 5523, '3', 'Panimalar Engineering College', '', 'BE', '2021', 70.00, '', 1, '2021-07-22 11:11:58', 0, NULL, 0, NULL, 1),
(6885, 5525, '4', 'Thiruvallur University', '', 'M.C.A', '2019', 75.00, '', 1, '2021-07-22 11:43:27', 0, NULL, 0, NULL, 1),
(6886, 5526, '3', 'Thiruvallur University ', '', 'BBA', '2015', 63.00, '', 1, '2021-07-22 11:54:35', 0, NULL, 0, NULL, 1),
(6887, 5527, '4', 'Thiruvallur university', '', 'MSW( HR) ', '2020', 62.00, '', 1, '2021-07-22 11:58:05', 0, NULL, 0, NULL, 1),
(6888, 5526, '2', 'State board', '', '', '2012', 68.00, '', 1, '2021-07-22 11:59:47', 0, NULL, 0, NULL, 1),
(6889, 5529, '4', 'Bharathidasan University in Puthanampatti, Trichy, Tamil Nadu', '', 'MSC Computer science', '2019', 80.00, '', 1, '2021-07-22 12:22:34', 0, NULL, 0, NULL, 1),
(6890, 5528, '4', 'Bharathidasan University', '', ' Msc cs', '2019', 78.00, '', 1, '2021-07-22 12:26:17', 0, NULL, 0, NULL, 1),
(6891, 5530, '3', 'Sri sairam engineering college', '', 'B.E', '2019', 68.00, '', 1, '2021-07-22 12:40:35', 0, NULL, 0, NULL, 1),
(6892, 5530, '1', 'St.Gabriel\'s H.R sec school', '', '', '2013', 87.00, '', 1, '2021-07-22 12:41:28', 0, NULL, 0, NULL, 1),
(6893, 5530, '2', 'St.Gabriel\'s H.R Sec School', '', '', '2015', 82.00, '', 1, '2021-07-22 12:41:40', 0, NULL, 0, NULL, 1),
(6894, 5532, '4', 'Anna University', '', 'MCA', '2021', 82.00, '', 1, '2021-07-22 02:14:56', 0, NULL, 0, NULL, 1),
(6895, 5532, '3', 'University of Madras', '', 'BSC', '2019', 72.00, '', 1, '2021-07-22 02:15:44', 0, NULL, 0, NULL, 1),
(6896, 5533, '3', 'Anna University', '', 'B.E', '2019', 55.00, '', 1, '2021-07-22 02:26:20', 0, NULL, 0, NULL, 1),
(6897, 5534, '2', 'State board', '', '', '2017', 75.00, '', 1, '2021-07-22 03:13:29', 0, NULL, 0, NULL, 1),
(6898, 5534, '3', 'madras', '', 'Bcom', '2020', 62.00, '', 1, '2021-07-22 03:14:07', 0, NULL, 0, NULL, 1),
(6899, 5522, '3', 'Madras Christian College ', '', 'BCA ', '2018', 53.00, '', 1, '2021-07-22 06:43:38', 0, NULL, 0, NULL, 1),
(6900, 5539, '3', 'Avinasilingam university', '', 'B.E', '2018', 68.00, '', 1, '2021-07-22 08:29:28', 0, NULL, 0, NULL, 1),
(6901, 5539, '1', 'Nadar saraswathi girls higher secondary school', '', '', '2012', 79.00, '', 1, '2021-07-22 08:30:19', 0, NULL, 0, NULL, 1),
(6902, 5539, '2', 'Nadar saraswathi girls higher secondary school', '', '', '2014', 64.00, '', 1, '2021-07-22 08:31:10', 0, NULL, 0, NULL, 1),
(6903, 5531, '4', 'anna university', '', 'be', '2014', 76.00, '', 1, '2021-07-22 08:38:34', 0, NULL, 0, NULL, 1),
(6904, 5540, '3', 'anna university', '', 'bacholer of engineering', '2020', 70.00, '', 1, '2021-07-22 08:42:42', 0, NULL, 0, NULL, 1),
(6905, 5540, '2', 'metriculation', '', '', '2016', 67.00, '', 1, '2021-07-22 08:45:12', 0, NULL, 0, NULL, 1),
(6906, 5540, '1', 'metriculation', '', '', '2014', 94.00, '', 1, '2021-07-22 08:46:59', 0, NULL, 0, NULL, 1),
(6907, 5541, '1', 'matriculation', '', '', '2014', 94.00, '', 1, '2021-07-22 09:07:33', 0, NULL, 0, NULL, 1),
(6908, 5541, '2', 'matriculation', '', '', '2016', 67.00, '', 1, '2021-07-22 09:08:12', 0, NULL, 0, NULL, 1),
(6909, 5541, '3', 'anna university', '', 'bachelor of engineering', '2020', 70.00, '', 1, '2021-07-22 09:09:40', 0, NULL, 0, NULL, 1),
(6910, 5537, '3', 'University', '', 'B.TECH COMPUTER SCIENCE AND ENGINEERING', '2021', 71.00, '', 1, '2021-07-22 09:43:26', 0, NULL, 0, NULL, 1),
(6911, 5537, '1', 'State board', '', '', '2015', 90.00, '', 1, '2021-07-22 09:43:54', 0, NULL, 0, NULL, 1),
(6912, 5537, '2', 'State board', '', '', '2017', 88.50, '', 1, '2021-07-22 09:44:07', 0, NULL, 0, NULL, 1),
(6913, 5542, '3', 'Anna university', '', 'Btech IT', '2021', 75.00, '', 1, '2021-07-23 09:53:15', 0, NULL, 0, NULL, 1),
(6914, 5543, '1', 'St.johns matriculation higher secondary school', '', '', '2014', 62.00, '', 1, '2021-07-23 11:18:00', 0, NULL, 0, NULL, 1),
(6915, 5543, '2', 'St. Johns matriculation higher secondary school', '', '', '2016', 82.00, '', 1, '2021-07-23 11:18:42', 0, NULL, 0, NULL, 1),
(6916, 5546, '1', 'St Xavier higher secondary school', '', '', '2012', 61.00, '', 1, '2021-07-23 11:19:54', 0, NULL, 0, NULL, 1),
(6917, 5543, '3', 'Am jain College ', '', 'Bachelor of commerce (Corporate Secretaryship)', '2019', 65.00, '', 1, '2021-07-23 11:20:07', 0, NULL, 0, NULL, 1),
(6918, 5546, '2', 'State borad', '', '', '2014', 61.00, '', 1, '2021-07-23 11:20:42', 0, NULL, 0, NULL, 1),
(6919, 5543, '4', 'Patrican college of arts and science', '', 'Master Of Social Work (Human Resource Management)', '2021', 75.00, '', 1, '2021-07-23 11:21:29', 0, NULL, 0, NULL, 1),
(6920, 5546, '3', 'Loyola College', '', 'BA ENGLISH', '2018', 58.00, '', 1, '2021-07-23 11:22:10', 0, NULL, 0, NULL, 1),
(6921, 5543, '5', 'Tamil Nadu institute of labour studies', '', 'Diploma in labour law and administrative law', '2021', 60.00, '', 1, '2021-07-23 11:22:26', 0, NULL, 0, NULL, 1),
(6922, 5546, '4', 'St. Jodhph\'s college, trichy', '', 'MA HRM', '2020', 74.00, '', 1, '2021-07-23 11:23:04', 0, NULL, 0, NULL, 1),
(6923, 5546, '4', 'PUC ', '', 'MBA', '2020', 55.00, '', 1, '2021-07-23 11:24:05', 0, NULL, 0, NULL, 1),
(6924, 5545, '2', 'state', '', '', '2018', 80.00, '', 1, '2021-07-23 11:51:21', 0, NULL, 0, NULL, 1),
(6925, 5545, '3', 'barathidasan', '', 'bsc', '2021', 80.00, '', 1, '2021-07-23 11:51:56', 0, NULL, 0, NULL, 1),
(6926, 5547, '1', 'state board', '', '', '2020', 82.00, '', 1, '2021-07-23 12:31:52', 1, '2021-07-23 12:33:01', 0, NULL, 0),
(6927, 5547, '1', 'state board', '', '', '2014', 82.00, '', 1, '2021-07-23 12:33:55', 0, NULL, 0, NULL, 1),
(6928, 5547, '2', 'state board', '', '', '2016', 73.00, '', 1, '2021-07-23 12:34:36', 0, NULL, 0, NULL, 1),
(6929, 5547, '3', 'state board', '', 'be', '2020', 6.94, '', 1, '2021-07-23 12:35:33', 0, NULL, 0, NULL, 1),
(6930, 5549, '4', 'Madras university', '', 'M. B. a', '2019', 75.00, '', 1, '2021-07-23 12:54:57', 0, NULL, 0, NULL, 1),
(6931, 5550, '3', 'Anna university', '', 'BE', '2014', 7.10, '', 1, '2021-07-23 12:55:27', 0, NULL, 0, NULL, 1),
(6932, 5551, '4', 'Alagappa university', '', 'MCA', '2018', 60.00, '', 1, '2021-07-23 01:06:28', 0, NULL, 0, NULL, 1),
(6933, 5552, '3', 'Madras university ', '', 'B.com (ism) ', '2018', 69.00, '', 1, '2021-07-23 01:35:40', 0, NULL, 0, NULL, 1),
(6934, 5552, '2', 'CHPT TRUST HR SEC SCHOOL', '', '', '2015', 59.00, '', 1, '2021-07-23 01:36:40', 0, NULL, 0, NULL, 1),
(6935, 5552, '1', 'CHPT TRUST HR SEC SCHOOL', '', '', '2013', 75.00, '', 1, '2021-07-23 01:37:17', 1, '2021-07-23 01:37:47', 0, NULL, 1),
(6936, 5553, '4', 'STET women\'s college,Mannargudi.', '', 'M.Sc., Information Technology', '2019', 75.10, '', 1, '2021-07-23 01:47:19', 0, NULL, 0, NULL, 1),
(6937, 5553, '3', 'STET WOMEN\'S COLLEGE,MANNARGUDI ', '', 'B.Sc., Computer science ', '2017', 77.00, '', 1, '2021-07-23 01:50:25', 0, NULL, 0, NULL, 1),
(6938, 5553, '2', 'St.Judes Matric Hr.Sec School,Needamangalam.', '', '', '2014', 57.00, '', 1, '2021-07-23 01:52:52', 0, NULL, 0, NULL, 1),
(6939, 5553, '1', 'St.Judes Matric Hr.Sec School, Needamangalam. ', '', '', '2012', 74.00, '', 1, '2021-07-23 01:53:35', 0, NULL, 0, NULL, 1),
(6940, 5553, '5', 'STET women\'s college, Mannargudi. ', '', 'PGDBDA', '2018', 76.00, '', 1, '2021-07-23 01:55:07', 0, NULL, 0, NULL, 1),
(6941, 5554, '4', 'Vels University pallavaram ', '', 'M.sc computer science', '2019', 76.00, '', 1, '2021-07-23 02:48:02', 0, NULL, 0, NULL, 1),
(6942, 5554, '3', 'Vels University pallavaram ', '', 'B.sc Computer Science ', '2017', 65.00, '', 1, '2021-07-23 02:49:17', 0, NULL, 0, NULL, 1),
(6943, 5555, '3', 'Anna University,Chennai ', '', 'B.E-CSE', '2020', 66.00, '', 1, '2021-07-23 03:44:24', 1, '2021-07-23 03:45:01', 0, NULL, 1),
(6944, 5556, '1', 'Tamilnadu stateboard', '', 'B.E', '2013', 83.00, '', 1, '2021-07-23 04:04:52', 1, '2021-07-23 04:05:57', 0, NULL, 1),
(6945, 5556, '2', 'Tamilnadu stateboard', '', '', '2015', 90.00, '', 1, '2021-07-23 04:05:20', 0, NULL, 0, NULL, 1),
(6946, 5556, '3', 'Anna university', '', 'B.e ECE', '2019', 62.00, '', 1, '2021-07-23 04:06:26', 0, NULL, 0, NULL, 1),
(6947, 5557, '3', 'Veltech Dr RR and Dr SE Institute of science and technology', '', 'B.Tech', '2021', 71.00, '', 1, '2021-07-23 04:48:16', 0, NULL, 0, NULL, 1),
(6948, 5558, '2', 'Anna university', '', '', '2019', 54.00, '', 1, '2021-07-23 06:45:55', 1, '2021-07-23 06:46:08', 0, NULL, 0),
(6949, 5558, '3', 'Francis Xavier engineering college', '', 'Bachelor of engineering', '2019', 54.00, '', 1, '2021-07-23 06:46:37', 0, NULL, 0, NULL, 1),
(6950, 5559, '1', 'Matriculation', '', '', '2014', 86.00, '', 1, '2021-07-24 10:01:23', 0, NULL, 0, NULL, 1),
(6951, 5559, '2', 'State Board', '', '', '2016', 79.00, '', 1, '2021-07-24 10:01:55', 0, NULL, 0, NULL, 1),
(6952, 5559, '3', 'Anna university', '', 'B.E ', '2020', 67.00, '', 1, '2021-07-24 10:02:26', 0, NULL, 0, NULL, 1),
(6953, 5560, '4', 'anna university', '', 'mca', '2016', 75.00, '', 1, '2021-07-24 10:16:49', 0, NULL, 0, NULL, 1),
(6954, 5561, '3', 'Anna university', '', 'B.E', '2019', 70.00, '', 1, '2021-07-24 10:47:49', 0, NULL, 0, NULL, 1),
(6955, 5561, '5', 'DOTE', '', 'D.M.E', '2016', 92.00, '', 1, '2021-07-24 10:48:25', 0, NULL, 0, NULL, 1),
(6956, 5561, '1', 'Cbse', '', '', '2013', 6.80, '', 1, '2021-07-24 10:48:52', 0, NULL, 0, NULL, 1),
(6957, 5562, '3', 'Anna University', '', 'B.E-mechanical', '2019', 6.10, '', 1, '2021-07-24 11:30:40', 0, NULL, 0, NULL, 1),
(6958, 5563, '3', 's.a. engineering college', '', 'b.e', '2021', 80.83, '', 1, '2021-07-24 12:03:34', 0, NULL, 0, NULL, 1),
(6959, 5563, '1', 'k.k.m.h.s school', '', '', '2015', 93.00, '', 1, '2021-07-24 12:04:24', 0, NULL, 0, NULL, 1),
(6960, 5563, '2', 'trinity academy m.h.s school', '', '', '2017', 80.83, '', 1, '2021-07-24 12:04:52', 0, NULL, 0, NULL, 1),
(6961, 5564, '5', 'Vet tech polytechnic college ', '', 'Diploma in civil engineering', '2014', 70.00, '', 1, '2021-07-24 12:11:36', 0, NULL, 0, NULL, 1),
(6962, 5567, '1', 'tamil nadu', '', '', '2015', 89.50, '', 1, '2021-07-24 01:53:54', 0, NULL, 0, NULL, 1),
(6963, 5567, '2', 'tamilnadu', '', '', '2017', 73.00, '', 1, '2021-07-24 01:54:18', 0, NULL, 0, NULL, 1),
(6964, 5567, '3', 'anna university', '', 'b.tech information technology', '2021', 7.00, '', 1, '2021-07-24 01:55:04', 0, NULL, 0, NULL, 1),
(6965, 5568, '4', 'university of madras', '', 'MCA', '2021', 72.00, '', 1, '2021-07-24 03:11:19', 0, NULL, 0, NULL, 1),
(6966, 5568, '3', 'Dwaraka Doss Goverdhan Doss Vaishnav College', '', 'b.sc computer science', '2019', 65.00, '', 1, '2021-07-24 03:12:36', 0, NULL, 0, NULL, 1),
(6967, 5568, '2', 'the hindu hr sec school', '', '', '2016', 79.90, '', 1, '2021-07-24 03:13:24', 0, NULL, 0, NULL, 1),
(6968, 5568, '1', 'the hindu hr sec school', '', '', '2014', 82.20, '', 1, '2021-07-24 03:13:49', 0, NULL, 0, NULL, 1),
(6969, 5570, '4', 'Asan Memorial College Of Arts And Science', '', 'MCA', '2021', 86.10, '', 1, '2021-07-24 03:22:31', 0, NULL, 0, NULL, 1),
(6970, 5571, '2', 'State board', '', '', '2018', 60.00, '', 1, '2021-07-24 03:47:53', 0, NULL, 0, NULL, 1),
(6971, 5571, '3', 'Madras', '', 'Bcom', '2021', 60.00, '', 1, '2021-07-24 03:48:13', 0, NULL, 0, NULL, 1),
(6972, 5572, '3', 'Anna University', '', 'Bachelor of Engineering in Electrical and Electron', '2020', 68.00, '', 1, '2021-07-24 03:54:05', 0, NULL, 0, NULL, 1),
(6973, 5573, '3', 'madras university', '', 'bsc', '2021', 70.00, '', 1, '2021-07-24 05:43:06', 1, '2021-07-24 05:43:33', 0, NULL, 0),
(6974, 5573, '1', 'state board', '', '', '2016', 83.00, '', 1, '2021-07-24 05:44:01', 1, '2021-07-24 05:45:02', 0, NULL, 0),
(6975, 5573, '3', 'madras university', '', 'bsc', '2021', 70.00, '', 1, '2021-07-24 05:45:36', 0, NULL, 0, NULL, 1),
(6976, 5575, '2', 'PUC', '', '', '2016', 85.20, '', 1, '2021-07-24 05:45:36', 0, NULL, 0, NULL, 1),
(6977, 5576, '1', 'state', '', '', '2011', 88.00, '', 1, '2021-07-24 05:50:55', 0, NULL, 0, NULL, 1),
(6978, 5576, '2', 'state', '', '', '2013', 78.00, '', 1, '2021-07-24 05:51:21', 0, NULL, 0, NULL, 1),
(6979, 5576, '5', 'dote', '', 'ece', '2015', 78.00, '', 1, '2021-07-24 05:51:46', 0, NULL, 0, NULL, 1),
(6980, 5576, '3', 'anna', '', 'be', '2018', 61.00, '', 1, '2021-07-24 05:52:16', 0, NULL, 0, NULL, 1),
(6981, 5578, '3', 'University madras', '', 'B.,sc computer science', '2020', 65.00, '', 1, '2021-07-24 07:04:04', 0, NULL, 0, NULL, 1),
(6982, 5578, '2', 'Chennai Corporation Hr sec school', '', '', '2017', 69.00, '', 1, '2021-07-24 07:06:04', 0, NULL, 0, NULL, 1),
(6983, 5578, '1', 'Chennai Corporation Hr sec school', '', '', '2015', 76.00, '', 1, '2021-07-24 07:06:49', 0, NULL, 0, NULL, 1),
(6984, 5579, '3', 'university', '', 'b.e', '2021', 87.00, '', 1, '2021-07-24 10:46:23', 0, NULL, 0, NULL, 1),
(6985, 5574, '4', 'anna university', '', 'masters in computer application', '2019', 81.00, '', 1, '2021-07-25 08:33:54', 0, NULL, 0, NULL, 1),
(6986, 5535, '3', 'madha engineering college', '', 'b.e', '2019', 77.30, '', 1, '2021-07-25 11:35:18', 0, NULL, 0, NULL, 1),
(6987, 5535, '2', 'nav bharath vidyalaya matriculation higher secondary school', '', '', '2015', 75.50, '', 1, '2021-07-25 11:36:05', 0, NULL, 0, NULL, 1),
(6988, 5535, '1', 'sri vidhya mandhir matriculation higher secondary school', '', '', '2013', 91.00, '', 1, '2021-07-25 11:36:43', 0, NULL, 0, NULL, 1),
(6989, 5581, '2', 'State board', '', '', '2018', 63.00, '', 1, '2021-07-26 09:24:24', 0, NULL, 0, NULL, 1),
(6990, 5581, '3', 'Tiruvallur', '', 'Bca', '2020', 60.00, '', 1, '2021-07-26 09:25:10', 0, NULL, 0, NULL, 1),
(6991, 5582, '2', 'State board', '', '', '2017', 69.00, '', 1, '2021-07-26 09:27:18', 0, NULL, 0, NULL, 1),
(6992, 5582, '3', 'Tiruvllur', '', 'bca', '2020', 68.00, '', 1, '2021-07-26 09:27:59', 0, NULL, 0, NULL, 1),
(6993, 5583, '3', 'Anna university ', '', 'BE', '2020', 77.00, '', 1, '2021-07-26 10:08:22', 0, NULL, 0, NULL, 1),
(6994, 5584, '3', 'hindustan college of arts and science chennai', '', 'bsc cs ', '2018', 70.00, '', 1, '2021-07-26 10:27:17', 0, NULL, 0, NULL, 1),
(6995, 5585, '4', 'Anna University', '', 'B. Tech(information technology) ', '2019', 6.80, '', 1, '2021-07-26 11:23:11', 0, NULL, 0, NULL, 1),
(6996, 5587, '1', 'Tamilnadu state board', '', '', '2014', 89.00, '', 1, '2021-07-26 11:59:58', 0, NULL, 0, NULL, 1),
(6997, 5587, '2', 'tamilnadu state board', '', '', '2016', 65.00, '', 1, '2021-07-26 12:00:20', 0, NULL, 0, NULL, 1),
(6998, 5587, '3', 'Vinayaka missions research foundation', '', 'BE, computer science engineering', '2020', 72.00, '', 1, '2021-07-26 12:00:57', 0, NULL, 0, NULL, 1),
(6999, 5590, '3', 'Bharathidasan University, Tamil Nadu. ', '', 'BCA', '2020', 70.00, '', 1, '2021-07-26 01:44:24', 0, NULL, 0, NULL, 1),
(7000, 5591, '3', 'Anna university', '', 'B.E', '2020', 70.00, '', 1, '2021-07-26 01:50:18', 0, NULL, 0, NULL, 1),
(7001, 5591, '1', 'State Board', '', '', '2014', 85.00, '', 1, '2021-07-26 01:51:27', 0, NULL, 0, NULL, 1),
(7002, 5591, '2', 'State Board', '', '', '2016', 80.00, '', 1, '2021-07-26 01:51:55', 0, NULL, 0, NULL, 1),
(7003, 5594, '4', 'Manonmaniam sundaranar university ', '', 'Msc', '2018', 72.00, '', 1, '2021-07-26 04:49:13', 0, NULL, 0, NULL, 1),
(7004, 5596, '3', 'University of Madras', '', 'B.,sc computer science', '2020', 65.00, '', 1, '2021-07-26 11:34:46', 0, NULL, 0, NULL, 1),
(7005, 5596, '2', 'Chennai Corporation Hr sec school', '', '', '2017', 69.00, '', 1, '2021-07-26 11:35:19', 0, NULL, 0, NULL, 1),
(7006, 5596, '1', 'Chennai Corporation Hr sec school', '', '', '2015', 76.00, '', 1, '2021-07-26 11:35:44', 0, NULL, 0, NULL, 1),
(7007, 5595, '3', 'anna university', '', 'b-tech it', '2012', 63.00, '', 1, '2021-07-27 09:51:35', 0, NULL, 0, NULL, 1),
(7008, 5601, '3', 'Tamil nadu open university', '', 'B. Com', '2010', 70.00, '', 1, '2021-07-27 10:22:02', 0, NULL, 0, NULL, 1),
(7009, 5597, '2', 'state board', '', '', '2018', 53.83, '', 1, '2021-07-27 10:25:51', 0, NULL, 0, NULL, 1),
(7010, 5603, '5', 'Bharat university', '', 'Diploma in Computer engineering', '2021', 60.00, '', 1, '2021-07-27 10:43:56', 0, NULL, 0, NULL, 1),
(7011, 5604, '3', 'University of madras', '', 'BCA', '2021', 70.84, '', 1, '2021-07-27 10:53:21', 0, NULL, 0, NULL, 1),
(7012, 5606, '4', 'Anna University', '', 'MBA HR', '2021', 75.00, '', 1, '2021-07-27 11:01:04', 0, NULL, 0, NULL, 1),
(7013, 5606, '3', 'Anna University', '', 'bE', '2018', 75.20, '', 1, '2021-07-27 11:01:32', 0, NULL, 0, NULL, 1),
(7014, 5606, '5', 'Dote', '', 'DEEE', '2015', 98.00, '', 1, '2021-07-27 11:01:56', 0, NULL, 0, NULL, 1),
(7015, 5606, '1', 'State Board', '', '', '2012', 81.00, '', 1, '2021-07-27 11:02:14', 0, NULL, 0, NULL, 1),
(7016, 5607, '3', 'Anna university', '', 'B. e/CSE', '2017', 6.50, '', 1, '2021-07-27 11:03:30', 0, NULL, 0, NULL, 1),
(7017, 5605, '3', 'Sathyabama institute of Science and technology ', '', 'B.E - Electronics and communication engineering ', '2020', 6.85, '', 1, '2021-07-27 11:05:28', 0, NULL, 0, NULL, 1),
(7018, 5599, '2', 'State board', '', '', '2018', 75.50, '', 1, '2021-07-27 11:29:18', 0, NULL, 0, NULL, 1),
(7019, 5600, '3', 'anna university', '', ' be css', '2022', 70.00, '', 1, '2021-07-27 11:29:37', 0, NULL, 0, NULL, 1),
(7020, 5608, '3', 'Velammal Engineering college', '', 'Bachelor of Engineering-Electronics and Communicat', '2018', 78.60, '', 1, '2021-07-27 11:31:12', 0, NULL, 0, NULL, 1),
(7021, 5608, '2', 'State Board', '', '', '2014', 89.80, '', 1, '2021-07-27 11:33:59', 0, NULL, 0, NULL, 1),
(7022, 5608, '1', 'State Board', '', '', '2012', 86.60, '', 1, '2021-07-27 11:34:41', 0, NULL, 0, NULL, 1),
(7023, 3960, '3', 'Madras University', '', 'Bsc computer science', '2018', 65.00, '', 1, '2021-07-27 11:49:22', 0, NULL, 0, NULL, 1),
(7024, 3960, '1', 'State Board', '', '', '2013', 82.00, '', 1, '2021-07-27 11:50:06', 0, NULL, 0, NULL, 1),
(7025, 3960, '2', 'State Board', '', '', '2015', 65.00, '', 1, '2021-07-27 11:50:34', 0, NULL, 0, NULL, 1),
(7026, 5593, '3', 'anna university', '', 'b.tech it', '2019', 69.00, '', 1, '2021-07-27 11:52:41', 0, NULL, 0, NULL, 1),
(7027, 5593, '1', 'board', '', '', '2013', 79.00, '', 1, '2021-07-27 11:53:02', 0, NULL, 0, NULL, 1),
(7028, 5593, '2', 'board', '', '', '2015', 53.00, '', 1, '2021-07-27 11:53:25', 0, NULL, 0, NULL, 1),
(7029, 5609, '3', 'Saveetha Engineering College', '', 'B.tech', '2021', 75.00, '', 1, '2021-07-27 12:51:13', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7030, 5609, '1', 'State board', '', '', '2015', 92.00, '', 1, '2021-07-27 12:51:54', 0, NULL, 0, NULL, 1),
(7031, 5609, '2', 'State board', '', '', '2017', 86.00, '', 1, '2021-07-27 12:52:15', 0, NULL, 0, NULL, 1),
(7032, 5611, '3', 'Anna university', '', 'B.E', '2020', 67.00, '', 1, '2021-07-27 01:35:05', 0, NULL, 0, NULL, 1),
(7033, 5611, '2', 'State board', '', '', '2016', 87.00, '', 1, '2021-07-27 01:35:35', 0, NULL, 0, NULL, 1),
(7034, 5610, '3', 'Anna University', '', 'B.E', '2021', 7.89, '', 1, '2021-07-27 01:35:39', 0, NULL, 0, NULL, 1),
(7035, 5611, '1', 'State board', '', '', '2014', 91.00, '', 1, '2021-07-27 01:35:57', 0, NULL, 0, NULL, 1),
(7036, 5612, '3', 'university', '', 'be', '2022', 7.50, '', 1, '2021-07-27 02:59:30', 0, NULL, 0, NULL, 1),
(7037, 5613, '3', 'jntu', '', 'btech', '2018', 60.00, '', 1, '2021-07-27 03:12:46', 0, NULL, 0, NULL, 1),
(7038, 5614, '3', 'Anna university', '', 'BE MECH', '2020', 65.00, '', 1, '2021-07-27 05:19:53', 0, NULL, 0, NULL, 1),
(7039, 5589, '3', 'Anna University', '', 'B. Tech Information Technology', '2019', 6.12, '', 1, '2021-07-27 11:59:49', 0, NULL, 0, NULL, 1),
(7040, 5618, '3', 'Bharath university ', '', 'BBA', '2020', 70.00, '', 1, '2021-07-28 11:12:26', 0, NULL, 0, NULL, 1),
(7041, 5619, '4', 'Jntuk', '', 'Bsc', '2020', 65.00, '', 1, '2021-07-28 11:59:08', 0, NULL, 0, NULL, 1),
(7042, 5622, '3', 'Anna university', '', 'BE Mechatronics engineering', '2020', 65.00, '', 1, '2021-07-28 12:28:38', 0, NULL, 0, NULL, 1),
(7043, 5620, '3', 'Madras University', '', 'B.com corporate sectaryship', '2021', 60.00, '', 1, '2021-07-28 12:31:37', 0, NULL, 0, NULL, 1),
(7044, 5621, '4', 'madurai kamaraj', '', 'ma', '2020', 67.00, '', 1, '2021-07-28 12:58:10', 0, NULL, 0, NULL, 1),
(7045, 5624, '3', 'Anna University', '', 'BE', '2021', 7.00, '', 1, '2021-07-28 02:29:17', 0, NULL, 0, NULL, 1),
(7046, 5623, '4', 'Measi Institute Of Information Technology', '', 'mca', '2020', 80.00, '', 1, '2021-07-28 02:40:15', 1, '2021-07-28 02:40:48', 0, NULL, 1),
(7047, 5623, '3', 'justice basheer ahmed sayeed college for women', '', 'bca', '2018', 78.10, '', 1, '2021-07-28 02:41:42', 0, NULL, 0, NULL, 1),
(7048, 5623, '2', 'PND Adarsh Vidyalaya Matriculation Higher Secondary School', '', '', '2015', 78.30, '', 1, '2021-07-28 02:43:48', 0, NULL, 0, NULL, 1),
(7049, 5625, '3', 'Anna UNIVERSITY ', '', 'BE', '2017', 78.00, '', 1, '2021-07-28 03:04:30', 0, NULL, 0, NULL, 1),
(7050, 5626, '4', 'Anna university', '', 'B.E', '2019', 61.00, '', 1, '2021-07-28 03:10:44', 0, NULL, 0, NULL, 1),
(7051, 5627, '3', 'Madras university', '', 'BCA', '2017', 60.00, '', 1, '2021-07-28 03:39:53', 0, NULL, 0, NULL, 1),
(7052, 5628, '4', 'anna university', '', 'mca', '2015', 81.00, '', 1, '2021-07-28 04:47:33', 0, NULL, 0, NULL, 1),
(7053, 5630, '4', 'AICTE', '', 'PGDM - HR/Marketing ', '2021', 89.10, '', 1, '2021-07-29 10:33:08', 0, NULL, 0, NULL, 1),
(7054, 5630, '4', 'Madras University', '', 'B.com Corporate Secretaryship', '2019', 59.00, '', 1, '2021-07-29 10:33:38', 0, NULL, 0, NULL, 1),
(7055, 5630, '2', 'TN Matric Board ', '', '', '2014', 80.00, '', 1, '2021-07-29 10:34:02', 1, '2021-07-29 10:34:57', 0, NULL, 1),
(7056, 5630, '1', 'TN Matric Board ', '', '', '2014', 79.00, '', 1, '2021-07-29 10:35:17', 0, NULL, 0, NULL, 1),
(7057, 5633, '3', 'Ramco institute of technology', '', 'BE', '2020', 75.00, '', 1, '2021-07-29 12:16:33', 0, NULL, 0, NULL, 1),
(7058, 5633, '2', 'S N Hr sec school', '', '', '2016', 89.00, '', 1, '2021-07-29 12:17:28', 1, '2021-07-29 12:18:04', 0, NULL, 1),
(7059, 5633, '1', 'MNRD Hr sec school', '', '', '2014', 98.00, '', 1, '2021-07-29 12:18:37', 0, NULL, 0, NULL, 1),
(7060, 5632, '4', 'guru nanak college', '', 'm s w', '2021', 75.00, '', 1, '2021-07-29 12:19:50', 0, NULL, 0, NULL, 1),
(7061, 5635, '3', 'Dhanalakshmi college of engineering', '', 'b. E CSE', '2017', 65.00, '', 1, '2021-07-29 01:04:17', 1, '2021-07-29 01:07:27', 0, NULL, 1),
(7062, 5635, '2', 'State board', '', '', '2013', 70.00, '', 1, '2021-07-29 01:07:46', 0, NULL, 0, NULL, 1),
(7063, 5635, '1', 'State Board', '', '', '2011', 65.00, '', 1, '2021-07-29 01:08:00', 1, '2021-07-29 01:08:09', 0, NULL, 1),
(7064, 5641, '3', 'Anna University', '', 'B.Tech', '2021', 75.00, '', 1, '2021-07-29 04:31:37', 0, NULL, 0, NULL, 1),
(7065, 5643, '3', 'Anna university', '', 'BE', '2021', 79.00, '', 1, '2021-07-30 10:58:02', 0, NULL, 0, NULL, 1),
(7066, 5644, '4', 'Anna University', '', 'MBA (HR&Finance) ', '2021', 70.00, '', 1, '2021-07-30 02:33:35', 0, NULL, 0, NULL, 1),
(7067, 5634, '1', 'don bosco matriculation higher secondary school', '', '', '2013', 86.00, '', 1, '2021-07-30 04:22:14', 0, NULL, 0, NULL, 1),
(7068, 5634, '2', 'Don Bosco Matriculation Higher Secondary School', '', '', '2015', 73.00, '', 1, '2021-07-30 04:22:43', 0, NULL, 0, NULL, 1),
(7069, 5634, '3', 'aalim muhammed salegh college of engineering', '', 'b.e computer science', '2019', 69.00, '', 1, '2021-07-30 04:24:18', 0, NULL, 0, NULL, 1),
(7070, 5642, '3', 'K s rangasamy college of technology', '', 'B.e', '2018', 65.00, '', 1, '2021-07-31 08:55:15', 0, NULL, 0, NULL, 1),
(7071, 5647, '4', 'Visvesvaraya technology University', '', 'MBA', '2020', 60.00, '', 1, '2021-07-31 10:54:05', 0, NULL, 0, NULL, 1),
(7072, 5648, '3', 'Anna University', '', 'BE', '2018', 60.00, '', 1, '2021-07-31 11:05:43', 0, NULL, 0, NULL, 1),
(7073, 5649, '5', 'Diploma Engineering', '', 'Engineering', '2021', 80.00, '', 1, '2021-07-31 11:33:26', 0, NULL, 0, NULL, 1),
(7074, 5650, '4', 'Madras University ', '', 'Msw HR', '2020', 80.00, '', 1, '2021-07-31 11:44:38', 0, NULL, 0, NULL, 1),
(7075, 5651, '4', 'Madras University', '', 'MA hROD', '2020', 6.40, '', 1, '2021-07-31 12:12:00', 0, NULL, 0, NULL, 1),
(7076, 5651, '3', 'Madras University', '', 'B.Sc viscom', '2017', 6.20, '', 1, '2021-07-31 12:12:38', 0, NULL, 0, NULL, 1),
(7077, 5651, '2', 'State board', '', '', '2014', 6.20, '', 1, '2021-07-31 12:13:21', 0, NULL, 0, NULL, 1),
(7078, 5651, '1', 'CBSE', '', '', '2012', 7.40, '', 1, '2021-07-31 12:13:56', 0, NULL, 0, NULL, 1),
(7079, 5652, '5', 'Bharath  university', '', 'DCE', '2021', 87.00, '', 1, '2021-07-31 12:22:36', 0, NULL, 0, NULL, 1),
(7080, 5653, '3', 'University ', '', 'BCA', '2019', 70.00, '', 1, '2021-07-31 12:44:13', 0, NULL, 0, NULL, 1),
(7081, 5655, '3', 'Thiruvalluvar University ', '', 'Bca', '2019', 69.00, '', 1, '2021-07-31 01:00:08', 0, NULL, 0, NULL, 1),
(7082, 5654, '3', 'Madras university ', '', 'Bsc', '2021', 70.00, '', 1, '2021-07-31 01:00:08', 0, NULL, 0, NULL, 1),
(7083, 5656, '3', 'Automous', '', 'BA', '2021', 60.00, '', 1, '2021-07-31 01:05:34', 0, NULL, 0, NULL, 1),
(7084, 4483, '1', 'Mes razeena secondary school', '', '', '2015', 84.00, '', 1, '2021-07-31 04:36:07', 0, NULL, 0, NULL, 1),
(7085, 4483, '2', 'Mount seena public school', '', '', '2017', 65.00, '', 1, '2021-07-31 04:36:28', 0, NULL, 0, NULL, 1),
(7086, 4483, '3', 'The new college', '', 'B.com', '2020', 70.00, '', 1, '2021-07-31 04:36:52', 0, NULL, 0, NULL, 1),
(7087, 5659, '3', 'anna university', '', 'be', '2013', 76.00, '', 1, '2021-07-31 06:11:05', 0, NULL, 0, NULL, 1),
(7088, 5661, '4', 'annamalai university', '', 'm.c.a', '2019', 73.00, '', 1, '2021-07-31 10:06:03', 0, NULL, 0, NULL, 1),
(7089, 5660, '3', 'Anna university', '', 'B.E', '2019', 66.00, '', 1, '2021-08-01 09:59:09', 0, NULL, 0, NULL, 1),
(7090, 5663, '4', 'Meenakshi college for women', '', 'MCA', '2020', 86.00, '', 1, '2021-08-02 10:53:14', 0, NULL, 0, NULL, 1),
(7091, 5664, '3', 'Anna university', '', 'BE AUTOMOBILE', '2019', 61.00, '', 1, '2021-08-02 11:14:55', 0, NULL, 0, NULL, 1),
(7092, 5658, '3', 'St.joseph college of engineering ', '', 'B tech', '2021', 7.33, '', 1, '2021-08-02 11:26:59', 0, NULL, 0, NULL, 1),
(7093, 5668, '3', 'Anna University', '', 'B.Tech', '2020', 7.10, '', 1, '2021-08-02 11:44:15', 1, '2021-08-02 11:44:49', 0, NULL, 1),
(7094, 5667, '4', 'Manonmaniam sundarnar university', '', 'M.sc Computer science', '2020', 75.00, '', 1, '2021-08-02 11:44:24', 0, NULL, 0, NULL, 1),
(7095, 5668, '2', 'State board', '', '', '2016', 80.00, '', 1, '2021-08-02 11:45:13', 0, NULL, 0, NULL, 1),
(7096, 5668, '1', 'State board', '', '', '2014', 88.80, '', 1, '2021-08-02 11:45:35', 0, NULL, 0, NULL, 1),
(7097, 5666, '3', 'Rajas Internation Institute of technology', '', 'B.E', '2019', 75.00, '', 1, '2021-08-02 11:49:58', 0, NULL, 0, NULL, 1),
(7098, 5665, '3', 'Bharadhidhasan University', '', 'BCA ', '2019', 65.00, '', 1, '2021-08-02 12:17:04', 0, NULL, 0, NULL, 1),
(7099, 5671, '3', 'UNIVERSITY OF MADRAS', '', 'BCOM', '2019', 70.00, '', 1, '2021-08-02 12:28:44', 0, NULL, 0, NULL, 1),
(7100, 5674, '3', 'University of madras', '', 'B.com general', '2019', 60.00, '', 1, '2021-08-02 12:31:13', 0, NULL, 0, NULL, 1),
(7101, 5673, '3', 'Medras university', '', 'B.A ', '2015', 74.00, '', 1, '2021-08-02 12:34:11', 0, NULL, 0, NULL, 1),
(7102, 5672, '3', 'Medras university ', '', 'BSC(computer science)', '2016', 65.00, '', 1, '2021-08-02 12:38:17', 0, NULL, 0, NULL, 1),
(7103, 5670, '3', 'Mardars University', '', 'BA history', '2019', 60.00, '', 1, '2021-08-02 12:41:50', 0, NULL, 0, NULL, 1),
(7104, 5680, '3', 'Kumaraguru College of Technology', '', 'B.E - Electrical and Electronic Engineering', '2019', 73.00, '', 1, '2021-08-02 01:10:57', 1, '2021-08-02 01:12:20', 0, NULL, 1),
(7105, 5680, '1', 'Dr. J. C. Kumarappa matric higher secondary school', '', '', '2013', 92.00, '', 1, '2021-08-02 01:12:08', 0, NULL, 0, NULL, 1),
(7106, 5680, '2', 'Dr. J. C. Kumarappa matric higher secondary school', '', '', '2015', 93.00, '', 1, '2021-08-02 01:12:50', 0, NULL, 0, NULL, 1),
(7107, 5679, '5', 'Anna university', '', 'DEEE', '2015', 75.00, '', 1, '2021-08-02 01:12:53', 0, NULL, 0, NULL, 1),
(7108, 5681, '5', 'Anna University', '', 'DME', '2020', 72.00, '', 1, '2021-08-02 01:24:40', 0, NULL, 0, NULL, 1),
(7109, 5682, '5', 'Anna University', '', 'DME', '2020', 72.00, '', 1, '2021-08-02 01:28:36', 0, NULL, 0, NULL, 1),
(7110, 5676, '3', 'University', '', 'B.A Economic', '2021', 90.00, '', 1, '2021-08-02 01:34:16', 0, NULL, 0, NULL, 1),
(7111, 5677, '3', 'Madras University', '', 'Ba', '2021', 90.00, '', 1, '2021-08-02 01:50:47', 0, NULL, 0, NULL, 1),
(7112, 5683, '1', 'St Joseph\'s matric hr sec school', '', '', '2021', 92.00, '', 1, '2021-08-02 01:52:56', 0, NULL, 0, NULL, 1),
(7113, 5684, '3', 'Annna University', '', 'BE CSE', '2020', 75.00, '', 1, '2021-08-02 02:43:54', 0, NULL, 0, NULL, 1),
(7114, 5685, '3', 'Anna university ', '', 'B.E computer science and engineering ', '2019', 6.00, '', 1, '2021-08-02 03:03:58', 0, NULL, 0, NULL, 1),
(7115, 5685, '2', 'State board ', '', '', '2015', 61.50, '', 1, '2021-08-02 03:05:15', 0, NULL, 0, NULL, 1),
(7116, 5685, '1', 'State board ', '', '', '2013', 76.20, '', 1, '2021-08-02 03:05:38', 0, NULL, 0, NULL, 1),
(7117, 5686, '3', 'university of madras', '', 'bachelor of computer application', '2021', 63.00, '', 1, '2021-08-02 03:51:15', 1, '2021-08-02 03:55:09', 0, NULL, 0),
(7118, 5686, '2', 'state board', '', '', '2018', 60.00, '', 1, '2021-08-02 03:54:04', 0, NULL, 0, NULL, 1),
(7119, 5686, '1', 'state board', '', '', '2016', 70.00, '', 1, '2021-08-02 03:54:42', 0, NULL, 0, NULL, 1),
(7120, 5686, '3', 'university of madras', '', 'bachelor of computer application', '2021', 63.00, '', 1, '2021-08-02 03:56:00', 0, NULL, 0, NULL, 1),
(7121, 5688, '1', 'St Joseph Matric Higher secondary school', '', '', '2014', 92.00, '', 1, '2021-08-02 04:45:35', 1, '2021-08-02 04:48:54', 0, NULL, 1),
(7122, 5688, '2', 'St.joseph matric higher secondary school', '', '', '2017', 63.00, '', 1, '2021-08-02 04:46:16', 1, '2021-08-02 04:48:40', 0, NULL, 1),
(7123, 5688, '3', 'SRM UNIVERSITY', '', 'Bsc Computer science', '2019', 5.40, '', 1, '2021-08-02 04:47:58', 0, NULL, 0, NULL, 1),
(7124, 5688, '4', 'SRM UNIVERSITY', '', 'MSC IT', '2021', 8.40, '', 1, '2021-08-02 04:49:24', 0, NULL, 0, NULL, 1),
(7125, 5689, '4', 'University of madras', '', 'MCA', '2020', 72.00, '', 1, '2021-08-02 05:34:42', 0, NULL, 0, NULL, 1),
(7126, 5629, '3', 'Anna University ', '', 'B.e (ECE)', '2016', 63.00, '', 1, '2021-08-02 06:11:51', 0, NULL, 0, NULL, 1),
(7127, 5692, '3', 'Anna University ', '', 'B.E (ECE)', '2016', 6.80, '', 1, '2021-08-02 07:40:44', 0, NULL, 0, NULL, 1),
(7128, 5695, '3', 'osmania', '', 'mechanical', '2020', 75.00, '', 1, '2021-08-03 10:52:19', 0, NULL, 0, NULL, 1),
(7129, 5697, '3', 'Loyola icam college of engineering and technology', '', 'B. E', '2018', 6.00, '', 1, '2021-08-03 11:06:36', 0, NULL, 0, NULL, 1),
(7130, 5697, '5', 'Panimalary polytechnic college', '', 'D. E. C. E', '2015', 77.00, '', 1, '2021-08-03 11:07:35', 0, NULL, 0, NULL, 1),
(7131, 5697, '1', 'Kings and queens residents school (CBSE) ', '', '', '2012', 6.00, '', 1, '2021-08-03 11:08:18', 0, NULL, 0, NULL, 1),
(7132, 5696, '3', 'Madras University ', '', 'Bsc ComputerScience', '2021', 58.00, '', 1, '2021-08-03 11:08:44', 0, NULL, 0, NULL, 1),
(7133, 5699, '4', 'vignayan', '', 'mba fin and marketing', '2018', 75.00, '', 1, '2021-08-03 11:13:49', 0, NULL, 0, NULL, 1),
(7134, 5698, '3', 'University', '', 'Bcom', '2016', 52.00, '', 1, '2021-08-03 11:14:37', 0, NULL, 0, NULL, 1),
(7135, 5700, '3', 'Madras university', '', 'Bsc Computer Science', '2021', 80.60, '', 1, '2021-08-03 11:22:30', 0, NULL, 0, NULL, 1),
(7136, 5687, '3', 'Anna university', '', 'BE', '2021', 7.70, '', 1, '2021-08-03 11:56:15', 0, NULL, 0, NULL, 1),
(7137, 5687, '2', 'State board', '', '', '2017', 87.00, '', 1, '2021-08-03 11:56:41', 0, NULL, 0, NULL, 1),
(7138, 5687, '1', 'State board', '', '', '2015', 95.00, '', 1, '2021-08-03 11:57:19', 0, NULL, 0, NULL, 1),
(7139, 5701, '3', 'Anna university ', '', 'B.E', '2022', 7.50, '', 1, '2021-08-03 12:01:59', 0, NULL, 0, NULL, 1),
(7140, 5703, '3', 'Anna University', '', 'BE.CSE', '2018', 60.00, '', 1, '2021-08-03 12:56:34', 0, NULL, 0, NULL, 1),
(7141, 5704, '3', 'sastra University', '', 'bca', '2021', 77.00, '', 1, '2021-08-03 12:56:45', 0, NULL, 0, NULL, 1),
(7142, 5707, '3', 'University', '', 'BCA', '2021', 67.00, '', 1, '2021-08-03 12:59:13', 0, NULL, 0, NULL, 1),
(7143, 5705, '2', 'Board', '', '', '2018', 52.00, '', 1, '2021-08-03 01:01:40', 0, NULL, 0, NULL, 1),
(7144, 5708, '3', 'Anna university  Chennai ', '', 'BE-EEE', '2020', 7.80, '', 1, '2021-08-03 01:11:40', 0, NULL, 0, NULL, 1),
(7145, 5708, '1', 'State board ', '', '', '2014', 92.20, '', 1, '2021-08-03 01:12:57', 0, NULL, 0, NULL, 1),
(7146, 5706, '2', 'State board', '', '', '2018', 45.00, '', 1, '2021-08-03 01:13:25', 0, NULL, 0, NULL, 1),
(7147, 5708, '2', 'State board ', '', '', '2016', 72.50, '', 1, '2021-08-03 01:13:26', 0, NULL, 0, NULL, 1),
(7148, 5690, '5', 'State board of technical education and training', '', 'Diploma EEE', '2020', 69.00, '', 1, '2021-08-03 04:00:45', 0, NULL, 0, NULL, 1),
(7149, 5712, '3', 'osmania', '', 'bcom', '2019', 55.00, '', 1, '2021-08-03 04:47:03', 0, NULL, 0, NULL, 1),
(7150, 5713, '1', 'vivekananda vidhyalaya central board of secondary education', '', '', '2010', 60.00, '', 1, '2021-08-03 04:56:54', 1, '2021-08-03 04:58:07', 0, NULL, 1),
(7151, 5713, '2', 'dharam hinduja matriculation higher seconary school', '', '', '2012', 70.00, '', 1, '2021-08-03 04:57:49', 0, NULL, 0, NULL, 1),
(7152, 5713, '3', 'rajalakshmi engineering college', '', 'b.e mechanical', '2016', 64.00, '', 1, '2021-08-03 04:58:38', 0, NULL, 0, NULL, 1),
(7153, 5714, '3', 'aum', '', 'degree', '2019', 60.00, '', 1, '2021-08-03 05:10:22', 0, NULL, 0, NULL, 1),
(7154, 5669, '3', 'Bharath University', '', 'Bsc Computer Science', '2019', 74.00, '', 1, '2021-08-03 05:43:57', 0, NULL, 0, NULL, 1),
(7155, 5715, '3', 'Anna university', '', 'BE-ECE', '2019', 60.00, '', 1, '2021-08-03 06:13:25', 0, NULL, 0, NULL, 1),
(7156, 5711, '3', 'Anna university', '', 'B. E', '2018', 6.50, '', 1, '2021-08-03 09:39:31', 0, NULL, 0, NULL, 1),
(7157, 5718, '4', 'Bharathidhasan  University', '', 'Master of Science ', '2020', 78.00, '', 1, '2021-08-04 10:35:59', 0, NULL, 0, NULL, 1),
(7158, 5717, '3', 'Madras University ', '', 'B.com', '2022', 71.00, '', 1, '2021-08-04 10:36:04', 0, NULL, 0, NULL, 1),
(7159, 5719, '3', 'Vels University', '', 'B.sc aviation', '2021', 70.00, '', 1, '2021-08-04 11:42:52', 0, NULL, 0, NULL, 1),
(7160, 5720, '4', ' Colabrative with Alagappa university ', '', 'MBA &PGPM', '2022', 75.00, '', 1, '2021-08-04 12:02:16', 0, NULL, 0, NULL, 1),
(7161, 5722, '3', 'marathuvada', '', 'agriculture', '2019', 70.00, '', 1, '2021-08-04 12:19:58', 0, NULL, 0, NULL, 1),
(7162, 5721, '3', 'Bharathiyar University', '', 'Bca', '2021', 80.00, '', 1, '2021-08-04 12:26:17', 0, NULL, 0, NULL, 1),
(7163, 5724, '3', 'Madras University', '', 'Bca', '2020', 70.00, '', 1, '2021-08-04 02:48:36', 0, NULL, 0, NULL, 1),
(7164, 5723, '3', 'ssim', '', 'bcom', '2017', 54.00, '', 1, '2021-08-04 03:27:13', 0, NULL, 0, NULL, 1),
(7165, 5725, '3', 'ou', '', 'bsc.cs', '2017', 60.00, '', 1, '2021-08-04 03:30:57', 0, NULL, 0, NULL, 1),
(7166, 5727, '3', 'Madras University ', '', 'BCA', '2020', 65.00, '', 1, '2021-08-04 03:54:14', 0, NULL, 0, NULL, 1),
(7167, 5726, '3', 'Anna university', '', 'B.E', '2020', 65.00, '', 1, '2021-08-04 03:54:15', 0, NULL, 0, NULL, 1),
(7168, 5727, '1', 'Kesari Higher Secondary School ', '', 'BCA', '2015', 70.00, '', 1, '2021-08-04 03:55:41', 1, '2021-08-04 03:56:58', 0, NULL, 1),
(7169, 5726, '2', 'State board', '', '', '2016', 55.00, '', 1, '2021-08-04 03:55:46', 0, NULL, 0, NULL, 1),
(7170, 5726, '1', 'State board', '', '', '2014', 78.00, '', 1, '2021-08-04 03:56:17', 0, NULL, 0, NULL, 1),
(7171, 5727, '2', 'Kesari Higher Secondary School ', '', '', '2017', 60.00, '', 1, '2021-08-04 03:56:40', 0, NULL, 0, NULL, 1),
(7172, 5729, '3', 'Anna University ', '', 'B.E', '2020', 74.00, '', 1, '2021-08-04 04:08:25', 0, NULL, 0, NULL, 1),
(7173, 5728, '4', 'autonomous', '', 'mba', '2020', 85.00, '', 1, '2021-08-04 04:14:26', 1, '2021-08-04 04:15:11', 0, NULL, 1),
(7174, 5728, '3', 'autonomous', '', 'bcom bank mananagement', '2017', 62.00, '', 1, '2021-08-04 04:16:08', 0, NULL, 0, NULL, 1),
(7175, 5730, '3', 'Anna University', '', 'B.Tech/IT', '2020', 71.00, '', 1, '2021-08-04 04:16:57', 0, NULL, 0, NULL, 1),
(7176, 5728, '2', 'state board', '', '', '2014', 87.00, '', 1, '2021-08-04 04:17:05', 0, NULL, 0, NULL, 1),
(7177, 5728, '1', 'state board', '', '', '2012', 77.00, '', 1, '2021-08-04 04:17:35', 0, NULL, 0, NULL, 1),
(7178, 5731, '3', 'Deemed University', '', 'B.Tech', '2019', 70.70, '', 1, '2021-08-04 04:18:07', 0, NULL, 0, NULL, 1),
(7179, 5732, '3', 'Anna university', '', 'BE', '2019', 65.00, '', 1, '2021-08-04 04:46:17', 0, NULL, 0, NULL, 1),
(7180, 5734, '3', 'jntu', '', 'bcom', '2016', 65.00, '', 1, '2021-08-04 04:49:52', 0, NULL, 0, NULL, 1),
(7181, 5733, '3', 'Anna university', '', 'Computer science and engineering', '2016', 71.00, '', 1, '2021-08-04 05:19:49', 0, NULL, 0, NULL, 1),
(7182, 5735, '3', 'Anna university', '', 'B. Tech', '2020', 69.00, '', 1, '2021-08-04 05:46:31', 0, NULL, 0, NULL, 1),
(7183, 5694, '3', 'University', '', 'BE', '2021', 68.00, '', 1, '2021-08-05 09:02:24', 1, '2021-08-05 09:02:56', 0, NULL, 1),
(7184, 5738, '4', 'Pondicherry university', '', 'MBA ', '2020', 69.30, '', 1, '2021-08-05 10:16:24', 0, NULL, 0, NULL, 1),
(7185, 5738, '3', 'Pondicherry university', '', 'B.tech', '2018', 71.80, '', 1, '2021-08-05 10:18:24', 0, NULL, 0, NULL, 1),
(7186, 5738, '2', 'Tamilnadu state board', '', '', '2014', 63.75, '', 1, '2021-08-05 10:19:05', 0, NULL, 0, NULL, 1),
(7187, 5738, '1', 'Tamilnadu state board', '', '', '2012', 76.40, '', 1, '2021-08-05 10:20:00', 0, NULL, 0, NULL, 1),
(7188, 5739, '3', 'Anna University', '', 'B.tech', '2021', 6.38, '', 1, '2021-08-05 10:24:26', 0, NULL, 0, NULL, 1),
(7189, 5741, '3', 'Anna university', '', 'B. Tech ', '2020', 70.00, '', 1, '2021-08-05 10:28:05', 0, NULL, 0, NULL, 1),
(7190, 5743, '3', 'Madras University ', '', 'B.com', '2018', 76.00, '', 1, '2021-08-05 10:44:28', 0, NULL, 0, NULL, 1),
(7191, 5742, '4', 'Madras University', '', 'B.Com & MBA', '2020', 78.00, '', 1, '2021-08-05 10:46:11', 0, NULL, 0, NULL, 1),
(7192, 5745, '3', 'madras university', '', 'bba', '2015', 55.00, '', 1, '2021-08-05 10:58:53', 0, NULL, 0, NULL, 1),
(7193, 5746, '3', 'bharathiyar', '', 'isual effects', '2017', 67.00, '', 1, '2021-08-05 11:07:43', 0, NULL, 0, NULL, 1),
(7194, 5747, '4', 'Bharatiyar university ', '', 'MBA', '2018', 6.80, '', 1, '2021-08-05 11:13:41', 0, NULL, 0, NULL, 1),
(7195, 5748, '3', 'sastra university', '', 'b.tech', '2020', 60.00, '', 1, '2021-08-05 11:16:28', 0, NULL, 0, NULL, 1),
(7196, 5748, '2', 'maxwell matriculation', '', '', '2016', 73.40, '', 1, '2021-08-05 11:17:45', 0, NULL, 0, NULL, 1),
(7197, 5748, '1', 'vidhya vikas', '', '', '2014', 88.00, '', 1, '2021-08-05 11:18:15', 0, NULL, 0, NULL, 1),
(7198, 5750, '3', 'jntuh', '', 'b.tech', '2017', 55.00, '', 1, '2021-08-05 11:42:05', 0, NULL, 0, NULL, 1),
(7199, 5751, '3', 'anna university', '', 'B.E', '2020', 70.00, '', 1, '2021-08-05 01:08:38', 0, NULL, 0, NULL, 1),
(7200, 5740, '3', 'Anna University', '', 'B.tech', '2020', 75.00, '', 1, '2021-08-05 01:19:29', 0, NULL, 0, NULL, 1),
(7201, 5752, '4', 'Anna University', '', 'MCA', '2020', 79.50, '', 1, '2021-08-05 03:28:28', 0, NULL, 0, NULL, 1),
(7202, 5753, '3', 'jntu', '', 'mechanical', '2019', 58.00, '', 1, '2021-08-05 03:31:20', 0, NULL, 0, NULL, 1),
(7203, 5754, '3', 'Anna university ', '', 'B.E', '2019', 70.00, '', 1, '2021-08-05 03:57:05', 0, NULL, 0, NULL, 1),
(7204, 5755, '3', 'ou', '', 'bcom', '2012', 54.00, '', 1, '2021-08-05 04:26:25', 0, NULL, 0, NULL, 1),
(7205, 5758, '3', 'Tagore Engineering College/ Anna University', '', 'BE (ECE)', '2019', 6.80, '', 1, '2021-08-05 06:53:04', 1, '2021-08-05 06:53:44', 0, NULL, 1),
(7206, 5760, '4', 'Annamalai university', '', 'BE,MBA', '2021', 70.00, '', 1, '2021-08-06 10:36:49', 0, NULL, 0, NULL, 1),
(7207, 5762, '3', 'University', '', 'BCA', '2020', 62.00, '', 1, '2021-08-06 10:44:33', 0, NULL, 0, NULL, 1),
(7208, 5762, '2', 'Board', '', '', '2017', 51.00, '', 1, '2021-08-06 10:45:09', 0, NULL, 0, NULL, 1),
(7209, 5762, '1', 'Board', '', '', '2015', 73.00, '', 1, '2021-08-06 10:45:24', 0, NULL, 0, NULL, 1),
(7210, 5759, '3', 'Skp engineering college', '', 'B.E ece', '2019', 6.20, '', 1, '2021-08-06 10:49:17', 0, NULL, 0, NULL, 1),
(7211, 5761, '4', 'Anna University', '', 'Master Of Business Administration', '2020', 78.00, '', 1, '2021-08-06 10:56:22', 0, NULL, 0, NULL, 1),
(7212, 5761, '3', 'Madras university ', '', 'B.com', '2018', 76.00, '', 1, '2021-08-06 10:57:13', 0, NULL, 0, NULL, 1),
(7213, 5761, '2', 'State Board', '', '', '2015', 78.00, '', 1, '2021-08-06 10:57:50', 0, NULL, 0, NULL, 1),
(7214, 5761, '1', 'State Board', '', '', '2013', 88.00, '', 1, '2021-08-06 10:58:25', 0, NULL, 0, NULL, 1),
(7215, 5763, '4', 'SASTRA University', '', 'MBA', '2019', 61.00, '', 1, '2021-08-06 11:27:30', 0, NULL, 0, NULL, 1),
(7216, 5763, '3', 'bharathidasan university', '', 'BCA', '2016', 64.00, '', 1, '2021-08-06 11:28:03', 0, NULL, 0, NULL, 1),
(7217, 5764, '4', 'nu', '', 'mba', '2021', 74.00, '', 1, '2021-08-06 12:25:29', 0, NULL, 0, NULL, 1),
(7218, 5765, '3', 'ou', '', 'bsc electronics', '2020', 60.00, '', 1, '2021-08-06 12:29:05', 0, NULL, 0, NULL, 1),
(7219, 5693, '3', 'medras university', '', 'b.sc maths', '2021', 72.00, '', 1, '2021-08-06 01:40:53', 0, NULL, 0, NULL, 1),
(7220, 5693, '1', 'state board', '', '', '2016', 85.00, '', 1, '2021-08-06 01:41:30', 0, NULL, 0, NULL, 1),
(7221, 5693, '2', 'state board', '', '', '2018', 70.00, '', 1, '2021-08-06 01:42:02', 0, NULL, 0, NULL, 1),
(7222, 5691, '3', 'madras university', '', 'bba', '2021', 72.00, '', 1, '2021-08-06 01:48:16', 0, NULL, 0, NULL, 1),
(7223, 5691, '2', 'state board', '', '', '2018', 74.00, '', 1, '2021-08-06 01:48:47', 0, NULL, 0, NULL, 1),
(7224, 5691, '1', 'state board', '', '', '2016', 56.00, '', 1, '2021-08-06 01:49:21', 0, NULL, 0, NULL, 1),
(7225, 5756, '3', 'bharathidasan university trichy', '', 'bca', '2020', 84.00, '', 1, '2021-08-06 02:28:09', 1, '2021-08-06 02:31:18', 0, NULL, 1),
(7226, 5756, '1', 'state board', '', '', '2015', 82.00, '', 1, '2021-08-06 02:29:11', 0, NULL, 0, NULL, 1),
(7227, 5756, '2', 'state board', '', '', '2017', 75.00, '', 1, '2021-08-06 02:29:53', 0, NULL, 0, NULL, 1),
(7228, 5749, '3', 'bharathidasan university', '', 'bca', '2019', 61.00, '', 1, '2021-08-06 03:09:34', 0, NULL, 0, NULL, 1),
(7229, 5749, '1', 'state board', '', '', '2014', 86.00, '', 1, '2021-08-06 03:10:12', 1, '2021-08-06 03:10:33', 0, NULL, 0),
(7230, 5749, '2', 'state board', '', '', '2019', 58.00, '', 1, '2021-08-06 03:10:55', 1, '2021-08-06 03:12:11', 0, NULL, 0),
(7231, 5749, '2', 'state board', '', '', '2016', 59.00, '', 1, '2021-08-06 03:11:23', 1, '2021-08-06 03:12:30', 0, NULL, 1),
(7232, 5749, '1', 'start board', '', '', '2014', 86.00, '', 1, '2021-08-06 03:13:01', 0, NULL, 0, NULL, 1),
(7233, 5766, '4', 'Bharathiar University ', '', 'MBA', '2021', 72.00, '', 1, '2021-08-06 03:30:50', 0, NULL, 0, NULL, 1),
(7234, 5766, '3', 'J. P. College of arts and Science ', '', 'BBA', '2019', 63.00, '', 1, '2021-08-06 03:31:29', 0, NULL, 0, NULL, 1),
(7235, 5766, '2', 'I. C. I GOVERNMENT BOYS HR SEC SCHOOL', '', '', '2016', 69.00, '', 1, '2021-08-06 03:31:58', 0, NULL, 0, NULL, 1),
(7236, 5766, '1', 'V. M. R. C. HR. SEC. SCHOOL', '', '', '2014', 85.00, '', 1, '2021-08-06 03:32:36', 0, NULL, 0, NULL, 1),
(7237, 5769, '3', 'ou', '', 'bba', '2021', 78.00, '', 1, '2021-08-06 03:43:30', 0, NULL, 0, NULL, 1),
(7238, 5771, '3', 'Prince shri venkateshwara padmavathy engineering college ', '', 'B.E', '2020', 7.27, '', 1, '2021-08-06 04:15:05', 0, NULL, 0, NULL, 1),
(7239, 5768, '3', 'Board', '', 'bba', '2019', 45.00, '', 1, '2021-08-06 04:36:33', 0, NULL, 0, NULL, 1),
(7240, 5773, '4', 'Madrasuniversity', '', 'Msc', '2021', 80.00, '', 1, '2021-08-06 05:12:55', 0, NULL, 0, NULL, 1),
(7241, 5774, '3', 'Madras University of chennai', '', 'B.com', '2018', 72.00, '', 1, '2021-08-06 05:22:44', 0, NULL, 0, NULL, 1),
(7242, 5775, '4', 'anna university chennai', '', 'master of business administration', '2021', 90.00, '', 1, '2021-08-06 05:50:13', 0, NULL, 0, NULL, 1),
(7243, 5776, '3', 'Anna university', '', 'BE ECE', '2018', 62.00, '', 1, '2021-08-07 10:35:50', 0, NULL, 0, NULL, 1),
(7244, 5777, '4', 'University of Madras', '', 'M. Sc(IT) ', '2015', 76.00, '', 1, '2021-08-07 10:45:44', 0, NULL, 0, NULL, 1),
(7245, 3040, '5', 'Anna University', '', 'Dce', '2016', 68.00, '', 1, '2021-08-07 11:30:53', 0, NULL, 0, NULL, 1),
(7246, 5778, '3', 'Madras university', '', 'Bsc', '2020', 70.00, '', 1, '2021-08-07 11:32:21', 0, NULL, 0, NULL, 1),
(7247, 5779, '3', 'ou', '', 'b.hotel management', '2014', 55.00, '', 1, '2021-08-07 12:17:29', 0, NULL, 0, NULL, 1),
(7248, 5780, '1', 'St.Patricks ', '', '', '2014', 78.00, '', 1, '2021-08-07 12:35:32', 0, NULL, 0, NULL, 1),
(7249, 5780, '2', 'Velammal ', '', '', '2016', 63.00, '', 1, '2021-08-07 12:35:52', 0, NULL, 0, NULL, 1),
(7250, 5780, '3', 'Crescent University', '', 'BCA', '2019', 82.00, '', 1, '2021-08-07 12:36:14', 0, NULL, 0, NULL, 1),
(7251, 5780, '4', 'DG VAISHNAV', '', 'MBA', '2021', 71.00, '', 1, '2021-08-07 12:36:37', 0, NULL, 0, NULL, 1),
(7252, 5781, '3', 'anna university', '', 'be', '2020', 6.50, '', 1, '2021-08-07 01:17:17', 0, NULL, 0, NULL, 1),
(7253, 5782, '3', 'Deemed university ', '', 'BSC bio technology ', '2021', 74.00, '', 1, '2021-08-07 01:35:20', 0, NULL, 0, NULL, 1),
(7254, 5784, '4', 'Mop Vaishnav college', '', 'MA.HRM', '2020', 75.00, '', 1, '2021-08-07 03:23:38', 0, NULL, 0, NULL, 1),
(7255, 5784, '3', 'Mop Vaishnav college', '', 'BBA', '2018', 72.00, '', 1, '2021-08-07 03:25:09', 0, NULL, 0, NULL, 1),
(7256, 5785, '4', 'Anna University ', '', 'MCA', '2020', 8.53, '', 1, '2021-08-07 03:32:41', 0, NULL, 0, NULL, 1),
(7257, 5785, '3', 'Thiruvalluvar University ', '', 'BCA', '2018', 79.00, '', 1, '2021-08-07 03:33:32', 0, NULL, 0, NULL, 1),
(7258, 5785, '2', 'English medium ', '', '', '2015', 61.50, '', 1, '2021-08-07 03:34:17', 0, NULL, 0, NULL, 1),
(7259, 5785, '1', 'Matric ', '', '', '2013', 81.50, '', 1, '2021-08-07 03:34:40', 0, NULL, 0, NULL, 1),
(7260, 5783, '3', 'jntuk', '', '', '2020', 60.00, '', 1, '2021-08-07 03:41:00', 0, NULL, 0, NULL, 1),
(7261, 5709, '1', 'state board education ', '', '', '2009', 60.00, '', 1, '2021-08-08 07:28:25', 0, NULL, 0, NULL, 1),
(7262, 5709, '2', 'State Board Education', '', '', '2011', 61.00, '', 1, '2021-08-08 07:28:57', 0, NULL, 0, NULL, 1),
(7263, 5709, '3', 'jntua university', '', 'b.tech cse', '2016', 62.00, '', 1, '2021-08-08 07:30:11', 0, NULL, 0, NULL, 1),
(7264, 5790, '1', 'Rover Higher sec. School', '', '', '2014', 60.00, '', 1, '2021-08-09 11:05:16', 0, NULL, 0, NULL, 1),
(7265, 5790, '5', 'Dhanalakshmi  college perambalur', '', 'D.eEE Diploma', '2017', 62.00, '', 1, '2021-08-09 11:06:56', 0, NULL, 0, NULL, 1),
(7266, 5788, '3', 'Anna', '', 'B.com', '2021', 60.00, '', 1, '2021-08-09 11:09:34', 0, NULL, 0, NULL, 1),
(7267, 5792, '3', 'ap', '', 'btech', '2020', 55.00, '', 1, '2021-08-09 11:18:06', 0, NULL, 0, NULL, 1),
(7268, 5787, '4', 'Anna university', '', 'ME', '2016', 84.00, '', 1, '2021-08-09 11:18:41', 0, NULL, 0, NULL, 1),
(7269, 5787, '3', 'Anna University chennai', '', 'BE ECE ', '2013', 60.00, '', 1, '2021-08-09 11:19:18', 0, NULL, 0, NULL, 1),
(7270, 5791, '3', 'Anna university', '', 'B.E', '2019', 6.50, '', 1, '2021-08-09 11:27:43', 0, NULL, 0, NULL, 1),
(7271, 5793, '3', 'ap', '', 'bcom', '2011', 55.00, '', 1, '2021-08-09 12:02:45', 0, NULL, 0, NULL, 1),
(7272, 5796, '3', 'Anna University', '', 'B. Tech', '2020', 68.00, '', 1, '2021-08-09 12:37:56', 0, NULL, 0, NULL, 1),
(7273, 5795, '3', 'DG VAISHNAV COLLEGE ', '', 'B. Com ( G)', '2020', 80.00, '', 1, '2021-08-09 12:40:06', 0, NULL, 0, NULL, 1),
(7274, 5797, '3', 'SIET CLG FOR WOMEN', '', 'B.COM cS', '2020', 70.00, '', 1, '2021-08-09 12:46:10', 0, NULL, 0, NULL, 1),
(7275, 5798, '3', 'University of Madras', '', 'B.A English', '2021', 51.50, '', 1, '2021-08-09 01:26:24', 0, NULL, 0, NULL, 1),
(7276, 5799, '3', 'A.M.Jain college', '', 'B.Sc  (Mathematics)', '2020', 61.00, '', 1, '2021-08-09 01:33:11', 0, NULL, 0, NULL, 1),
(7277, 5799, '1', 'A.j.s nidhi higher secondary school', '', '', '2015', 89.20, '', 1, '2021-08-09 01:33:43', 0, NULL, 0, NULL, 1),
(7278, 5799, '2', 'A.j.s nidhi higher secondary school', '', '', '2017', 62.58, '', 1, '2021-08-09 01:34:03', 0, NULL, 0, NULL, 1),
(7279, 5770, '3', 'vel tech arts college', '', 'bsc computer science', '2020', 65.00, '', 1, '2021-08-09 03:11:32', 0, NULL, 0, NULL, 1),
(7280, 5800, '3', 'Anna university', '', 'Bachelor Of electronics and communication Engineer', '2020', 7.16, '', 1, '2021-08-09 03:30:40', 0, NULL, 0, NULL, 1),
(7281, 5801, '3', 'Anna university', '', 'B.E Computer science and engineering', '2021', 7.72, '', 1, '2021-08-09 03:58:11', 0, NULL, 0, NULL, 1),
(7282, 5801, '1', 'State board', '', '', '2015', 90.40, '', 1, '2021-08-09 03:58:54', 0, NULL, 0, NULL, 1),
(7283, 5801, '2', 'State board', '', '', '2017', 81.58, '', 1, '2021-08-09 03:59:16', 0, NULL, 0, NULL, 1),
(7284, 5803, '1', 'state', '', '', '2015', 82.60, '', 1, '2021-08-09 05:13:59', 0, NULL, 0, NULL, 1),
(7285, 5803, '2', 'state', '', '', '2017', 69.16, '', 1, '2021-08-09 05:14:15', 0, NULL, 0, NULL, 1),
(7286, 5803, '3', 'anna university', '', 'Bachelor of Engineering', '2021', 69.93, '', 1, '2021-08-09 05:14:45', 0, NULL, 0, NULL, 1),
(7287, 5805, '3', 'Anna university', '', 'B.E. Mechanical Engineering', '2020', 75.10, '', 1, '2021-08-09 06:06:42', 0, NULL, 0, NULL, 1),
(7288, 5805, '2', 'State board', '', '', '2016', 97.42, '', 1, '2021-08-09 06:07:17', 0, NULL, 0, NULL, 1),
(7289, 5805, '1', 'State board', '', '', '2014', 98.60, '', 1, '2021-08-09 06:07:38', 0, NULL, 0, NULL, 1),
(7290, 5806, '3', 'thiruvalluvar university', '', 'bachelor of computer application', '2018', 68.00, '', 1, '2021-08-09 06:28:07', 0, NULL, 0, NULL, 1),
(7291, 5807, '4', 'Anna university', '', 'MBA', '2020', 7.50, '', 1, '2021-08-09 07:32:26', 0, NULL, 0, NULL, 1),
(7292, 5789, '3', 'anna university', '', 'be eee', '2021', 7.10, '', 1, '2021-08-09 07:36:08', 0, NULL, 0, NULL, 1),
(7293, 5808, '3', 'Thiruvallur University', '', '', '2019', 75.00, '', 1, '2021-08-10 09:54:04', 0, NULL, 0, NULL, 1),
(7294, 5804, '3', 'PSG College of technology', '', 'BE', '2019', 69.60, '', 1, '2021-08-10 10:34:52', 0, NULL, 0, NULL, 1),
(7295, 5809, '3', 'Madras University', '', 'Bcom', '2012', 60.00, '', 1, '2021-08-10 10:48:26', 0, NULL, 0, NULL, 1),
(7296, 5810, '3', 'geetham', '', 'bcom', '2019', 73.00, '', 1, '2021-08-10 10:53:42', 0, NULL, 0, NULL, 1),
(7297, 5812, '3', 'Madras university ', '', 'B. Com', '2021', 70.00, '', 1, '2021-08-10 11:11:42', 0, NULL, 0, NULL, 1),
(7298, 5812, '1', 'State board of education ', '', '', '2016', 82.00, '', 1, '2021-08-10 11:13:48', 0, NULL, 0, NULL, 1),
(7299, 5812, '2', 'State board of education ', '', '', '2018', 80.00, '', 1, '2021-08-10 11:14:09', 0, NULL, 0, NULL, 1),
(7300, 5813, '3', 'St.peters institute of higher education and research', '', 'B.Sc(computer science)', '2021', 71.00, '', 1, '2021-08-10 11:22:11', 0, NULL, 0, NULL, 1),
(7301, 5811, '3', 'Madras university', '', 'B. Com', '2021', 70.00, '', 1, '2021-08-10 11:24:22', 0, NULL, 0, NULL, 1),
(7302, 5811, '1', 'State board of education', '', '', '2016', 60.00, '', 1, '2021-08-10 11:25:16', 0, NULL, 0, NULL, 1),
(7303, 5811, '2', 'State board of education', '', '', '2018', 50.00, '', 1, '2021-08-10 11:25:48', 0, NULL, 0, NULL, 1),
(7304, 5814, '3', 'Madras university', '', 'B.Sc Physics', '2020', 70.00, '', 1, '2021-08-10 11:28:14', 0, NULL, 0, NULL, 1),
(7305, 5815, '4', 'jntu', '', 'mba', '2021', 69.00, '', 1, '2021-08-10 11:34:52', 0, NULL, 0, NULL, 1),
(7306, 5817, '3', 'mku', '', 'bcom', '2016', 50.00, '', 1, '2021-08-10 12:00:20', 0, NULL, 0, NULL, 1),
(7307, 5816, '4', 'Paavai engineering College', '', 'BE', '2019', 65.00, '', 1, '2021-08-10 12:15:50', 0, NULL, 0, NULL, 1),
(7308, 5819, '3', 'Loyola college', '', 'B.sc maths ', '2014', 60.00, '', 1, '2021-08-10 12:21:50', 0, NULL, 0, NULL, 1),
(7309, 5820, '3', 'sk', '', 'bcom', '2009', 56.00, '', 1, '2021-08-10 12:30:29', 0, NULL, 0, NULL, 1),
(7310, 5823, '4', 'V.v.vanniaperumal college for women\'s', '', 'M.sc(Computer science)', '2021', 80.00, '', 1, '2021-08-10 01:36:20', 0, NULL, 0, NULL, 1),
(7311, 5821, '3', 'anna university', '', 'b.tech it', '2011', 67.00, '', 1, '2021-08-10 01:57:53', 0, NULL, 0, NULL, 1),
(7312, 5821, '2', 'tamil nadu university', '', '', '2007', 80.83, '', 1, '2021-08-10 01:59:45', 0, NULL, 0, NULL, 1),
(7313, 5821, '1', 'tamil nadu university', '', '', '2005', 78.00, '', 1, '2021-08-10 02:00:09', 0, NULL, 0, NULL, 1),
(7314, 5824, '3', 'ou', '', 'bba', '2021', 74.00, '', 1, '2021-08-10 02:44:45', 0, NULL, 0, NULL, 1),
(7315, 5825, '3', 'ou', '', 'btech', '2019', 61.00, '', 1, '2021-08-10 02:56:38', 0, NULL, 0, NULL, 1),
(7316, 5826, '3', 'vel tech multi tech engineering college', '', 'b.tech', '2021', 79.20, '', 1, '2021-08-10 03:34:15', 0, NULL, 0, NULL, 1),
(7317, 5826, '2', 'raj vidyalaya matric hr.sec school', '', '', '2017', 75.67, '', 1, '2021-08-10 03:34:55', 0, NULL, 0, NULL, 1),
(7318, 5826, '1', 'raj vidyalaya martic hr.sec school', '', '', '2015', 87.00, '', 1, '2021-08-10 03:35:49', 0, NULL, 0, NULL, 1),
(7319, 5828, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2018', 6.56, '', 1, '2021-08-10 03:56:23', 0, NULL, 0, NULL, 1),
(7320, 5830, '3', 'Anna university', '', 'B.E', '2021', 74.00, '', 1, '2021-08-10 09:22:48', 1, '2021-08-10 09:24:30', 0, NULL, 0),
(7321, 5830, '5', 'University', '', 'Diploma', '2018', 67.00, '', 1, '2021-08-10 09:25:09', 0, NULL, 0, NULL, 1),
(7322, 5833, '3', 'DB JAIN COLLEGE OF ARTS', '', 'B.Com CS', '2012', 45.00, '', 1, '2021-08-11 10:26:32', 0, NULL, 0, NULL, 1),
(7323, 5833, '2', 'State board', '', '', '2008', 45.00, '', 1, '2021-08-11 10:27:09', 0, NULL, 0, NULL, 1),
(7324, 5833, '1', 'State board', '', '', '2006', 45.00, '', 1, '2021-08-11 10:27:31', 0, NULL, 0, NULL, 1),
(7325, 5834, '3', 'jntu', '', 'btech eng', '2021', 68.00, '', 1, '2021-08-11 11:00:46', 0, NULL, 0, NULL, 1),
(7326, 5835, '3', 'jntu', '', 'btech c', '2016', 61.00, '', 1, '2021-08-11 11:20:29', 0, NULL, 0, NULL, 1),
(7327, 5836, '2', 'State board', '', 'B. Com (C.S) ', '2013', 69.00, '', 1, '2021-08-11 11:28:44', 0, NULL, 0, NULL, 1),
(7328, 5837, '3', 'odisa', '', 'btech eee', '2017', 70.00, '', 1, '2021-08-11 11:46:14', 0, NULL, 0, NULL, 1),
(7329, 5838, '4', 'SRM institute of science and technology', '', 'MBA', '2020', 6.30, '', 1, '2021-08-11 12:00:21', 0, NULL, 0, NULL, 1),
(7330, 5839, '3', 'Sree sastha institute of engineering and technology ', '', 'B.E Mechanical ', '2015', 61.00, '', 1, '2021-08-11 12:02:26', 0, NULL, 0, NULL, 1),
(7331, 2352, '3', 'Anna university', '', 'B. E', '2016', 60.00, '', 1, '2021-08-11 12:15:58', 0, NULL, 0, NULL, 1),
(7332, 5840, '3', 'Medras university', '', 'B. Sc', '2018', 70.00, '', 1, '2021-08-11 12:33:23', 0, NULL, 0, NULL, 1),
(7333, 5841, '3', 'jntu', '', 'btech', '2019', 60.00, '', 1, '2021-08-11 12:54:05', 0, NULL, 0, NULL, 1),
(7334, 5842, '3', 'Anna University Tirunelveli', '', 'B.tech ', '2014', 78.00, '', 1, '2021-08-11 12:56:19', 0, NULL, 0, NULL, 1),
(7335, 5822, '3', 'Sacred heart college', '', 'BSC (computer science)', '2017', 60.00, '', 1, '2021-08-11 03:09:33', 0, NULL, 0, NULL, 1),
(7336, 5843, '3', 'Bharadhidasan University ', '', 'BCA', '2014', 82.00, '', 1, '2021-08-11 05:23:10', 0, NULL, 0, NULL, 1),
(7337, 5845, '4', 'Anna University', '', 'MBA', '2017', 78.00, '', 1, '2021-08-11 07:37:48', 0, NULL, 0, NULL, 1),
(7338, 5846, '3', 'gbs', '', 'pgdm in fin  marketing', '2019', 70.00, '', 1, '2021-08-12 11:02:20', 0, NULL, 0, NULL, 1),
(7339, 5848, '3', 'cmr', '', 'btech mech', '2019', 63.00, '', 1, '2021-08-12 11:09:25', 0, NULL, 0, NULL, 1),
(7340, 5849, '3', 'ou', '', 'bcom cs', '2019', 60.00, '', 1, '2021-08-12 11:14:13', 0, NULL, 0, NULL, 1),
(7341, 5847, '4', 'Anna university', '', 'MBA', '2021', 76.00, '', 1, '2021-08-12 11:14:18', 0, NULL, 0, NULL, 1),
(7342, 5847, '3', 'Shri Shankarlal Sundarbai Shasun Jain College for Women', '', 'B.com', '2019', 69.00, '', 1, '2021-08-12 11:15:40', 0, NULL, 0, NULL, 1),
(7343, 5847, '2', 'Little Flower Matriculation Higher Secondary School', '', '', '2016', 55.00, '', 1, '2021-08-12 11:17:35', 0, NULL, 0, NULL, 1),
(7344, 5847, '1', 'Little Flower Matriculation Higher Secondary School', '', '', '2014', 65.00, '', 1, '2021-08-12 11:17:59', 0, NULL, 0, NULL, 1),
(7345, 5851, '3', 'Anna University', '', 'BE', '2019', 7.25, '', 1, '2021-08-12 11:54:32', 0, NULL, 0, NULL, 1),
(7346, 5851, '2', 'State board', '', '', '2015', 65.00, '', 1, '2021-08-12 11:55:33', 0, NULL, 0, NULL, 1),
(7347, 5851, '1', 'State board', '', '', '2013', 90.00, '', 1, '2021-08-12 11:56:02', 0, NULL, 0, NULL, 1),
(7348, 5850, '3', 'Madras University', '', 'B com', '2021', 78.60, '', 1, '2021-08-12 12:06:44', 0, NULL, 0, NULL, 1),
(7349, 5852, '3', 'Anna University', '', 'BE', '2019', 6.20, '', 1, '2021-08-12 12:09:02', 0, NULL, 0, NULL, 1),
(7350, 5852, '2', 'State board', '', '', '2015', 43.00, '', 1, '2021-08-12 12:09:33', 0, NULL, 0, NULL, 1),
(7351, 5852, '1', 'State board', '', '', '2013', 70.00, '', 1, '2021-08-12 12:09:56', 0, NULL, 0, NULL, 1),
(7352, 5853, '4', 'ou', '', 'mba', '2020', 70.00, '', 1, '2021-08-12 12:45:22', 0, NULL, 0, NULL, 1),
(7353, 5854, '2', 'State bord', '', 'Bsc(it& logistics)', '2018', 52.00, '', 1, '2021-08-12 01:05:00', 0, NULL, 0, NULL, 1),
(7354, 5856, '3', 'Anna University', '', 'BE-Computer science and Engineering', '2021', 82.00, '', 1, '2021-08-12 03:24:28', 0, NULL, 0, NULL, 1),
(7355, 5855, '1', 'state board', '', '', '2015', 88.00, '', 1, '2021-08-12 03:27:33', 0, NULL, 0, NULL, 1),
(7356, 5855, '2', 'state board', '', '', '2017', 74.00, '', 1, '2021-08-12 03:27:52', 0, NULL, 0, NULL, 1),
(7357, 5855, '3', 'anna university', '', 'be-cse', '2021', 73.00, '', 1, '2021-08-12 03:28:27', 0, NULL, 0, NULL, 1),
(7358, 5858, '3', 'Anna university', '', 'B.Tech Information technology', '2020', 69.80, '', 1, '2021-08-12 04:13:28', 0, NULL, 0, NULL, 1),
(7359, 5858, '2', 'Stateboard', '', '', '2016', 60.25, '', 1, '2021-08-12 04:13:50', 0, NULL, 0, NULL, 1),
(7360, 5858, '1', 'Stateboard', '', '', '2014', 80.80, '', 1, '2021-08-12 04:14:10', 0, NULL, 0, NULL, 1),
(7361, 5859, '3', 'Anna university ', '', 'BE', '2018', 65.00, '', 1, '2021-08-12 04:47:13', 0, NULL, 0, NULL, 1),
(7362, 5861, '3', 'Patrician college of arts and science', '', 'Bsc computer science', '2020', 75.00, '', 1, '2021-08-12 06:02:22', 0, NULL, 0, NULL, 1),
(7363, 5860, '3', 'p.b.college of engineering', '', 'b.e', '2016', 5.80, '', 1, '2021-08-12 06:05:01', 0, NULL, 0, NULL, 1),
(7364, 5862, '3', 'thanthai periyar government institute', '', 'bachelors of engineering', '2019', 70.00, '', 1, '2021-08-12 06:30:22', 0, NULL, 0, NULL, 1),
(7365, 5863, '3', 'anna university', '', 'b.e cse', '2021', 7.30, '', 1, '2021-08-12 06:44:50', 0, NULL, 0, NULL, 1),
(7366, 5857, '3', 'anna university', '', 'be cse', '2021', 75.00, '', 1, '2021-08-12 07:14:20', 0, NULL, 0, NULL, 1),
(7367, 5857, '2', 'd.a.v higher sec.school', '', '', '2017', 78.00, '', 1, '2021-08-12 07:15:04', 1, '2021-08-12 07:16:11', 0, NULL, 1),
(7368, 5857, '1', 'd.a.v. matric.hr.sec.school', '', '', '2015', 95.00, '', 1, '2021-08-12 07:15:45', 0, NULL, 0, NULL, 1),
(7369, 5867, '3', 'ou', '', 'bcom c', '2019', 69.00, '', 1, '2021-08-13 10:26:45', 0, NULL, 0, NULL, 1),
(7370, 5869, '3', 'jntu', '', 'btech ece', '2020', 68.00, '', 1, '2021-08-13 10:33:02', 0, NULL, 0, NULL, 1),
(7371, 5865, '3', 'SRMU', '', 'B.Tech', '2018', 68.00, '', 1, '2021-08-13 10:35:05', 0, NULL, 0, NULL, 1),
(7372, 5872, '4', 'talamuru', '', 'mba', '2020', 76.00, '', 1, '2021-08-13 10:38:45', 0, NULL, 0, NULL, 1),
(7373, 5870, '3', 'Valliammai polytechnic College', '', 'Dece', '2021', 72.00, '', 1, '2021-08-13 10:40:38', 0, NULL, 0, NULL, 1),
(7374, 5868, '3', 'Madras University', '', 'B.Com ( General )', '2019', 65.00, '', 1, '2021-08-13 10:44:58', 0, NULL, 0, NULL, 1),
(7375, 5873, '3', 'Thiruvalluvar University', '', 'BCA', '2020', 65.00, '', 1, '2021-08-13 10:45:25', 0, NULL, 0, NULL, 1),
(7376, 5866, '3', 'Madras University', '', 'Back mathematics', '2021', 70.00, '', 1, '2021-08-13 10:49:21', 0, NULL, 0, NULL, 1),
(7377, 5874, '2', 'State board', '', '', '2020', 79.00, '', 1, '2021-08-13 11:10:08', 0, NULL, 0, NULL, 1),
(7378, 5875, '3', 'kings engineering college', '', 'b.tech', '2020', 60.00, '', 1, '2021-08-13 12:04:20', 0, NULL, 0, NULL, 1),
(7379, 5875, '2', 'sundaram govt hr sec school', '', '', '2016', 68.00, '', 1, '2021-08-13 12:04:55', 1, '2021-08-13 12:05:47', 0, NULL, 0),
(7380, 5875, '1', 'sundaram govt hr sec school', '', '', '2014', 74.40, '', 1, '2021-08-13 12:05:28', 1, '2021-08-13 12:05:43', 0, NULL, 0),
(7381, 5878, '3', 'University', '', 'B E', '2020', 67.00, '', 1, '2021-08-13 01:11:52', 0, NULL, 0, NULL, 1),
(7382, 5880, '3', 'Anna university', '', 'B. E', '2013', 60.00, '', 1, '2021-08-13 03:50:24', 0, NULL, 0, NULL, 1),
(7383, 5881, '4', 'loyola college chennai', '', 'mca', '2021', 6.77, '', 1, '2021-08-13 03:54:00', 0, NULL, 0, NULL, 1),
(7384, 5881, '3', 'loyola college vettavalam', '', 'b. sc mathematics', '2018', 6.20, '', 1, '2021-08-13 03:54:29', 0, NULL, 0, NULL, 1),
(7385, 5881, '2', 'state board', '', '', '2015', 63.50, '', 1, '2021-08-13 03:54:51', 0, NULL, 0, NULL, 1),
(7386, 5881, '1', 'state board', '', '', '2013', 78.40, '', 1, '2021-08-13 03:55:17', 0, NULL, 0, NULL, 1),
(7387, 5882, '3', 'Bharathidasan university', '', 'B.SC(c.s)', '2020', 65.00, '', 1, '2021-08-13 04:17:14', 0, NULL, 0, NULL, 1),
(7388, 5882, '2', 'State Board', '', '', '2017', 68.60, '', 1, '2021-08-13 04:17:56', 0, NULL, 0, NULL, 1),
(7389, 5882, '1', 'State Board', '', '', '2015', 75.80, '', 1, '2021-08-13 04:18:35', 0, NULL, 0, NULL, 1),
(7390, 5879, '1', 'Maharishi vidya mandir School', '', '', '2011', 72.00, '', 1, '2021-08-13 04:39:46', 0, NULL, 0, NULL, 1),
(7391, 5879, '2', 'Maharishi vidya mandir', '', '', '2013', 70.00, '', 1, '2021-08-13 04:40:33', 0, NULL, 0, NULL, 1),
(7392, 5884, '3', 'madras university', '', 'b.com', '2017', 55.00, '', 1, '2021-08-13 04:42:07', 0, NULL, 0, NULL, 1),
(7393, 5879, '3', 'Apollo Priyadarshanam Institute of Technology', '', 'BE Mechanical Engineering ', '2017', 60.00, '', 1, '2021-08-13 04:42:59', 0, NULL, 0, NULL, 1),
(7394, 5887, '5', 'Little flower polytechnic College', '', '', '2015', 50.00, '', 1, '2021-08-14 11:26:17', 0, NULL, 0, NULL, 1),
(7395, 5888, '3', 'Thiruvalluvar', '', 'Bsc cs', '2020', 7.20, '', 1, '2021-08-14 11:29:04', 0, NULL, 0, NULL, 1),
(7396, 5889, '2', 'State Board', '', '', '2019', 52.00, '', 1, '2021-08-14 01:03:51', 0, NULL, 0, NULL, 1),
(7397, 5894, '3', 'srm ', '', 'bcom general', '2021', 85.00, '', 1, '2021-08-16 10:13:25', 0, NULL, 0, NULL, 1),
(7398, 5895, '3', 'Anna university', '', 'B.E ', '2019', 60.00, '', 1, '2021-08-16 11:16:47', 0, NULL, 0, NULL, 1),
(7399, 5896, '3', 'jntuh', '', 'btech eee', '2021', 72.00, '', 1, '2021-08-16 11:25:59', 0, NULL, 0, NULL, 1),
(7400, 5897, '3', 'gulberga', '', 'bcom', '2022', 65.00, '', 1, '2021-08-16 11:47:13', 0, NULL, 0, NULL, 1),
(7401, 5900, '3', 'University College of Engineering- Ariyalur', '', 'B.E', '2018', 60.00, '', 1, '2021-08-16 01:16:13', 1, '2021-08-16 01:23:37', 0, NULL, 1),
(7402, 5900, '2', 'Sri Venkateswara matric hr secondary school', '', '', '2014', 79.00, '', 1, '2021-08-16 01:17:37', 0, NULL, 0, NULL, 1),
(7403, 5900, '1', 'Sri Venkateswara Matric Higher Secondary School', '', '', '2010', 83.00, '', 1, '2021-08-16 01:18:31', 0, NULL, 0, NULL, 1),
(7404, 5901, '3', 'madras university', '', 'Bachelor of Commerce', '2021', 80.00, '', 1, '2021-08-16 01:39:50', 0, NULL, 0, NULL, 1),
(7405, 5885, '4', 'crescent University ', '', 'mca', '2021', 8.00, '', 1, '2021-08-16 01:58:52', 0, NULL, 0, NULL, 1),
(7406, 5902, '3', 'Anna University', '', 'Bachelor of engineering', '2018', 55.00, '', 1, '2021-08-16 01:59:25', 0, NULL, 0, NULL, 1),
(7407, 5904, '3', 'jntuh', '', 'bpharm', '2018', 72.00, '', 1, '2021-08-16 03:00:16', 0, NULL, 0, NULL, 1),
(7408, 5906, '3', 'srm', '', 'bcom', '2017', 72.00, '', 1, '2021-08-16 04:43:26', 0, NULL, 0, NULL, 1),
(7409, 5883, '3', 'anna university', '', 'b.a. corporate economics', '2015', 57.00, '', 1, '2021-08-16 07:17:00', 0, NULL, 0, NULL, 1),
(7410, 5909, '3', 'University of Madras', '', 'BCA', '2021', 88.50, '', 1, '2021-08-16 08:06:21', 0, NULL, 0, NULL, 1),
(7411, 5910, '3', 'Anna university', '', 'B. E mechanical', '2021', 60.00, '', 1, '2021-08-17 10:48:29', 0, NULL, 0, NULL, 1),
(7412, 5911, '3', 'Madras University', '', 'B.sc mathematics', '2019', 60.00, '', 1, '2021-08-17 11:32:03', 0, NULL, 0, NULL, 1),
(7413, 5912, '3', 'Anna University ', '', 'B.E. COMPUTER SCIENCE AND ENGINEERING ', '2020', 6.96, '', 1, '2021-08-17 11:48:39', 0, NULL, 0, NULL, 1),
(7414, 5913, '3', 'Madras university', '', 'B.A. Tamil', '2021', 40.00, '', 1, '2021-08-17 12:04:18', 0, NULL, 0, NULL, 1),
(7415, 5914, '3', 'Madras university', '', 'B. Sc', '2020', 60.00, '', 1, '2021-08-17 12:08:55', 0, NULL, 0, NULL, 1),
(7416, 5917, '1', 'Matriculation', '', '', '2013', 75.60, '', 1, '2021-08-17 01:36:28', 0, NULL, 0, NULL, 1),
(7417, 5917, '5', 'Prist university', '', 'DCSE', '2016', 79.00, '', 1, '2021-08-17 01:37:30', 0, NULL, 0, NULL, 1),
(7418, 5917, '3', 'Easwari engineering college', '', 'B. Tech, IT', '2019', 6.50, '', 1, '2021-08-17 01:38:25', 0, NULL, 0, NULL, 1),
(7419, 5892, '3', 'the american college', '', 'bca', '2019', 68.00, '', 1, '2021-08-17 02:38:35', 0, NULL, 0, NULL, 1),
(7420, 5892, '2', 'st. marys boys higher secondary school', '', '', '2016', 36.00, '', 1, '2021-08-17 02:39:18', 0, NULL, 0, NULL, 1),
(7421, 5892, '1', 'St. Marys Boys Higher Secondary School', '', '', '2014', 83.90, '', 1, '2021-08-17 02:39:42', 0, NULL, 0, NULL, 1),
(7422, 5920, '3', 'University of Madras', '', 'B.com Accounting and finance', '2021', 80.00, '', 1, '2021-08-17 02:50:48', 0, NULL, 0, NULL, 1),
(7423, 5918, '3', 'Hindustan college of arts and science', '', 'Bcom general', '2021', 75.00, '', 1, '2021-08-17 02:52:03', 0, NULL, 0, NULL, 1),
(7424, 5919, '3', 'Guru nanak College', '', 'Bsc.Biotechnology', '2021', 89.00, '', 1, '2021-08-17 03:17:57', 0, NULL, 0, NULL, 1),
(7425, 5923, '2', 'state board', '', '', '2018', 70.00, '', 1, '2021-08-17 03:20:24', 0, NULL, 0, NULL, 1),
(7426, 5923, '3', 'ksr college', '', 'bba', '2021', 75.00, '', 1, '2021-08-17 03:21:04', 0, NULL, 0, NULL, 1),
(7427, 5924, '4', 'Bangalore', '', 'B.com', '2016', 80.00, '', 1, '2021-08-17 03:47:57', 0, NULL, 0, NULL, 1),
(7428, 5925, '2', 'state board', '', '', '2017', 90.00, '', 1, '2021-08-17 04:00:36', 0, NULL, 0, NULL, 1),
(7429, 5925, '3', 'madras universisty', '', 'bcom', '2021', 75.00, '', 1, '2021-08-17 04:01:16', 0, NULL, 0, NULL, 1),
(7430, 5926, '3', 'Dr.sns Rajalakshmi college of arts and sciences', '', 'BCA', '2019', 60.00, '', 1, '2021-08-17 04:33:04', 0, NULL, 0, NULL, 1),
(7431, 5929, '3', 'Madras University', '', 'Bca', '2021', 78.00, '', 1, '2021-08-18 11:26:30', 0, NULL, 0, NULL, 1),
(7432, 5928, '4', 'christ university', '', '', '2019', 79.00, '', 1, '2021-08-18 12:14:02', 0, NULL, 0, NULL, 1),
(7433, 5928, '3', 'karunya university', '', '', '2016', 75.00, '', 1, '2021-08-18 12:14:22', 0, NULL, 0, NULL, 1),
(7434, 5928, '2', 'state board', '', '', '2012', 85.00, '', 1, '2021-08-18 12:15:06', 0, NULL, 0, NULL, 1),
(7435, 5930, '3', 'Bharathidhasan university', '', 'B.com', '2021', 75.00, '', 1, '2021-08-18 01:22:52', 0, NULL, 0, NULL, 1),
(7436, 5922, '3', 'b.s.abdur rahman crscent university chennai', '', 'b.tech cse', '2020', 60.00, '', 1, '2021-08-18 01:28:52', 1, '2021-08-18 01:39:16', 0, NULL, 1),
(7437, 5922, '1', 'nehru matriculation higher secondary school nagapattinam', '', '', '2014', 75.00, '', 1, '2021-08-18 01:41:05', 0, NULL, 0, NULL, 1),
(7438, 5922, '2', 'crescent res matric hr sec school vandalur chennai', '', '', '2016', 69.00, '', 1, '2021-08-18 01:43:50', 0, NULL, 0, NULL, 1),
(7439, 5931, '3', 'Annai college of arts and Science  pharathithasan University ', '', 'UG  ', '2021', 70.00, '', 1, '2021-08-18 02:42:44', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7440, 5932, '3', 'Anna university', '', 'BE', '2014', 60.00, '', 1, '2021-08-18 02:57:14', 0, NULL, 0, NULL, 1),
(7441, 5935, '5', 'board of technical education', '', ' dit', '2011', 72.00, '', 1, '2021-08-18 03:12:09', 1, '2021-08-18 04:54:29', 0, NULL, 0),
(7442, 5936, '3', 'mpku', '', 'pgdm', '2019', 76.00, '', 1, '2021-08-18 03:12:39', 0, NULL, 0, NULL, 1),
(7443, 5938, '4', 'Anna University ', '', 'Master of engineering ', '2018', 77.10, '', 1, '2021-08-18 03:49:45', 0, NULL, 0, NULL, 1),
(7444, 5934, '1', 'State', '', '', '2010', 75.00, '', 1, '2021-08-18 04:03:06', 0, NULL, 0, NULL, 1),
(7445, 5934, '2', 'State', '', '', '2012', 58.00, '', 1, '2021-08-18 04:03:24', 0, NULL, 0, NULL, 1),
(7446, 5934, '3', 'Anna university', '', 'BE', '2016', 65.00, '', 1, '2021-08-18 04:03:56', 0, NULL, 0, NULL, 1),
(7447, 5938, '3', 'Anna University ', '', 'Bachelor of engineering ', '2015', 74.40, '', 1, '2021-08-18 04:15:11', 0, NULL, 0, NULL, 1),
(7448, 5938, '2', 'State board ', '', '', '2011', 81.80, '', 1, '2021-08-18 04:15:38', 0, NULL, 0, NULL, 1),
(7449, 5938, '1', 'State board ', '', '', '2009', 90.40, '', 1, '2021-08-18 04:17:46', 0, NULL, 0, NULL, 1),
(7450, 5940, '4', 'grm', '', 'ma economics', '2019', 69.00, '', 1, '2021-08-18 04:27:23', 0, NULL, 0, NULL, 1),
(7451, 5937, '5', 'Anna University', '', '', '2015', 80.00, '', 1, '2021-08-18 04:31:49', 0, NULL, 0, NULL, 1),
(7452, 5935, '5', 'board of technical education', '', 'dit', '2011', 70.00, '', 1, '2021-08-18 04:54:31', 0, NULL, 0, NULL, 1),
(7453, 5941, '3', 'Anna university', '', 'BE', '2018', 65.50, '', 1, '2021-08-18 05:18:50', 0, NULL, 0, NULL, 1),
(7454, 5899, '3', 'Bharath University', '', 'B. Tech ECE', '2021', 68.20, '', 1, '2021-08-18 06:28:35', 0, NULL, 0, NULL, 1),
(7455, 5899, '1', 'Maharashtra Board', '', '', '2014', 57.00, '', 1, '2021-08-18 06:29:06', 0, NULL, 0, NULL, 1),
(7456, 5899, '2', 'Maharashtra Board', '', '', '2016', 49.38, '', 1, '2021-08-18 06:29:55', 0, NULL, 0, NULL, 1),
(7457, 5942, '3', 'srm', '', 'B. com', '2021', 75.00, '', 1, '2021-08-19 11:28:34', 0, NULL, 0, NULL, 1),
(7458, 5943, '3', 'ms', '', 'bsc it', '2019', 75.00, '', 1, '2021-08-19 11:28:48', 0, NULL, 0, NULL, 1),
(7459, 5942, '1', 'jacob matric school', '', '', '2015', 75.00, '', 1, '2021-08-19 11:29:26', 0, NULL, 0, NULL, 1),
(7460, 5942, '2', 'gnana vidyalaya matric school', '', '', '2017', 58.00, '', 1, '2021-08-19 11:30:12', 0, NULL, 0, NULL, 1),
(7461, 5944, '3', 'Trichy Engineering College ', '', 'BE', '2019', 6.30, '', 1, '2021-08-19 11:38:09', 0, NULL, 0, NULL, 1),
(7462, 5927, '3', 'Anna university', '', 'BE CSE', '2019', 75.10, '', 1, '2021-08-19 11:40:59', 0, NULL, 0, NULL, 1),
(7463, 5945, '3', 'Deemed', '', 'B. Com', '2021', 70.00, '', 1, '2021-08-19 11:57:25', 0, NULL, 0, NULL, 1),
(7464, 5946, '3', 'Jntuh', '', 'B tech', '2019', 61.00, '', 1, '2021-08-19 12:24:33', 0, NULL, 0, NULL, 1),
(7465, 5946, '1', 'Andra Pradesh', '', '', '2013', 8.20, '', 1, '2021-08-19 12:25:04', 0, NULL, 0, NULL, 1),
(7466, 5947, '3', 'Madras University', '', 'BBA', '2021', 76.00, '', 1, '2021-08-19 12:47:45', 0, NULL, 0, NULL, 1),
(7467, 5948, '3', 'Madras University ', '', 'BCA ', '2020', 60.00, '', 1, '2021-08-19 01:44:56', 0, NULL, 0, NULL, 1),
(7468, 5948, '1', 'State board ', '', '', '2015', 81.00, '', 1, '2021-08-19 01:46:15', 0, NULL, 0, NULL, 1),
(7469, 5948, '2', 'State board ', '', '', '2017', 69.00, '', 1, '2021-08-19 01:46:40', 0, NULL, 0, NULL, 1),
(7470, 5949, '3', 'Anna University', '', 'BE', '2019', 68.00, '', 1, '2021-08-19 02:44:53', 0, NULL, 0, NULL, 1),
(7471, 5951, '3', 'Bharathiyar University ', '', 'BCA', '2020', 70.10, '', 1, '2021-08-19 02:56:12', 0, NULL, 0, NULL, 1),
(7472, 5952, '3', 'Anna University -AAA COLLEGE OF ENGINEERING AND TECHNOLOGY ', '', 'B. E - CSE', '2021', 78.50, '', 1, '2021-08-19 03:04:09', 0, NULL, 0, NULL, 1),
(7473, 5950, '3', 'university', '', 'computer science and engineering', '2019', 6.00, '', 1, '2021-08-19 03:19:28', 0, NULL, 0, NULL, 1),
(7474, 5953, '4', 'madras', '', 'ma tandt', '2021', 80.00, '', 1, '2021-08-19 03:40:23', 0, NULL, 0, NULL, 1),
(7475, 5955, '1', 'state board', '', '', '2014', 93.00, '', 1, '2021-08-19 04:07:26', 0, NULL, 0, NULL, 1),
(7476, 5955, '2', 'state board', '', '', '2016', 84.00, '', 1, '2021-08-19 04:07:55', 0, NULL, 0, NULL, 1),
(7477, 5954, '4', 'Anna university', '', 'BE CSE', '2020', 7.58, '', 1, '2021-08-19 06:53:58', 0, NULL, 0, NULL, 1),
(7478, 5957, '4', 'mk university', '', 'm sc cs it', '2017', 63.00, '', 1, '2021-08-19 10:01:41', 1, '2021-08-19 10:02:50', 0, NULL, 1),
(7479, 5957, '3', 'thiruvalluvar', '', 'b sc computer science', '2012', 47.00, '', 1, '2021-08-19 10:03:25', 0, NULL, 0, NULL, 1),
(7480, 5958, '3', 'mgr university', '', 'b.tech cse', '2018', 65.00, '', 1, '2021-08-19 10:45:25', 0, NULL, 0, NULL, 1),
(7481, 5959, '3', 'Anna University', '', 'BE. Computer science Engineering', '2019', 67.00, '', 1, '2021-08-20 08:23:23', 0, NULL, 0, NULL, 1),
(7482, 5960, '4', 'University', '', 'M.A', '2021', 80.00, '', 1, '2021-08-20 10:32:23', 0, NULL, 0, NULL, 1),
(7483, 5963, '3', 'Periyar university ', '', 'Bsc ', '2017', 60.00, '', 1, '2021-08-20 10:49:52', 0, NULL, 0, NULL, 1),
(7484, 5962, '3', 'University of Madras', '', 'B.Sc mathematics', '2021', 86.00, '', 1, '2021-08-20 10:53:04', 0, NULL, 0, NULL, 1),
(7485, 5965, '3', 'Mananmaniyam sundaranar university', '', 'Bsc. IT', '2019', 7.30, '', 1, '2021-08-20 11:09:10', 0, NULL, 0, NULL, 1),
(7486, 5964, '2', 'stateboard', '', '', '2018', 65.00, '', 1, '2021-08-20 11:23:06', 0, NULL, 0, NULL, 1),
(7487, 5964, '3', 'madras university', '', 'bcom', '2021', 65.00, '', 1, '2021-08-20 11:24:08', 0, NULL, 0, NULL, 1),
(7488, 5966, '3', 'St petera institute of higher education and research', '', 'B. Com(general) ', '2021', 63.00, '', 1, '2021-08-20 11:31:40', 0, NULL, 0, NULL, 1),
(7489, 5967, '3', 'University of Madras', '', 'BCA', '2021', 60.00, '', 1, '2021-08-20 11:59:40', 0, NULL, 0, NULL, 1),
(7490, 5968, '5', 'Akt Memorial polytechnic college', '', 'Electronic communications Engineering', '2011', 65.00, '', 1, '2021-08-20 12:01:57', 0, NULL, 0, NULL, 1),
(7491, 5969, '3', 'Jaya college of arts and science', '', 'B.Com', '2021', 83.31, '', 1, '2021-08-21 10:38:05', 0, NULL, 0, NULL, 1),
(7492, 5969, '2', 'Infant Jesus Matriculation Higher Secondary school', '', '', '2018', 84.92, '', 1, '2021-08-21 10:39:40', 0, NULL, 0, NULL, 1),
(7493, 5969, '1', 'Infant Jesus matriculation higher secondary school', '', '', '2016', 82.60, '', 1, '2021-08-21 10:40:31', 0, NULL, 0, NULL, 1),
(7494, 5970, '3', 'Anna university ', '', 'BE(computer science in engineering) ', '2021', 7.20, '', 1, '2021-08-21 11:04:05', 0, NULL, 0, NULL, 1),
(7495, 5971, '1', 'Board ', '', '', '2015', 81.00, '', 1, '2021-08-21 11:47:34', 0, NULL, 0, NULL, 1),
(7496, 5972, '3', 'Vel tech High Tech Engineering college', '', 'BE', '2021', 75.00, '', 1, '2021-08-21 11:50:06', 0, NULL, 0, NULL, 1),
(7497, 5973, '3', 'thiruvalluvar university ', '', 'b.com', '2015', 75.00, '', 1, '2021-08-21 12:27:37', 0, NULL, 0, NULL, 1),
(7498, 5973, '2', 'govt hss', '', '', '2012', 65.00, '', 1, '2021-08-21 12:29:57', 0, NULL, 0, NULL, 1),
(7499, 5973, '1', 'mricsc school', '', '', '2010', 58.00, '', 1, '2021-08-21 12:31:57', 0, NULL, 0, NULL, 1),
(7500, 5974, '3', 'University of Madras ', '', 'B.com Corporate secretaryship ', '2020', 64.92, '', 1, '2021-08-21 05:39:57', 0, NULL, 0, NULL, 1),
(7501, 5974, '2', 'State board ', '', '', '2017', 89.60, '', 1, '2021-08-21 05:45:14', 0, NULL, 0, NULL, 1),
(7502, 5974, '1', 'State board ', '', '', '2015', 80.00, '', 1, '2021-08-21 05:45:40', 0, NULL, 0, NULL, 1),
(7503, 0, '3', 'Madras university', '', 'Bca', '2021', 71.00, '', 1, '2021-08-22 07:06:31', 1, '2021-08-24 11:11:36', 0, NULL, 0),
(7504, 5977, '3', 'bharathidasan university', '', 'b.sc', '2020', 89.00, '', 1, '2021-08-23 10:29:52', 0, NULL, 0, NULL, 1),
(7505, 5977, '2', 'stateboard', '', '', '2017', 91.00, '', 1, '2021-08-23 10:30:16', 0, NULL, 0, NULL, 1),
(7506, 5977, '1', 'stateboard', '', '', '2015', 96.00, '', 1, '2021-08-23 10:30:41', 0, NULL, 0, NULL, 1),
(7507, 5977, '5', 'bharathidasan university', '', 'diploma in personality development', '2018', 60.00, '', 1, '2021-08-23 10:31:15', 0, NULL, 0, NULL, 1),
(7508, 5978, '1', 'State board', '', '', '2014', 91.00, '', 1, '2021-08-23 12:00:39', 0, NULL, 0, NULL, 1),
(7509, 5978, '2', 'State Board', '', '', '2016', 74.00, '', 1, '2021-08-23 12:00:56', 0, NULL, 0, NULL, 1),
(7510, 5978, '3', 'Anna University', '', 'B.E (CSE)', '2020', 66.00, '', 1, '2021-08-23 12:01:28', 0, NULL, 0, NULL, 1),
(7511, 5981, '3', 'Anna university', '', 'B.E', '2020', 75.00, '', 1, '2021-08-23 02:59:40', 0, NULL, 0, NULL, 1),
(7512, 5983, '3', 'anna university', '', 'be', '2020', 60.00, '', 1, '2021-08-23 03:11:24', 0, NULL, 0, NULL, 1),
(7513, 5982, '3', 'Madras University', '', 'Bca', '2016', 48.00, '', 1, '2021-08-23 03:28:55', 0, NULL, 0, NULL, 1),
(7514, 5984, '3', 'Bharathiyar university', '', 'B.Sc', '2020', 60.00, '', 1, '2021-08-23 05:33:19', 0, NULL, 0, NULL, 1),
(7515, 5985, '4', 'Periyar University', '', 'MCA', '2020', 78.00, '', 1, '2021-08-24 10:46:21', 0, NULL, 0, NULL, 1),
(7516, 5986, '3', 'Bharathiyar University', '', 'Bcom cooperation', '2021', 63.50, '', 1, '2021-08-24 11:11:37', 0, NULL, 0, NULL, 1),
(7517, 5988, '5', 'Dote', '', 'Diploma in electronics communication engineering', '2020', 78.00, '', 1, '2021-08-24 12:00:15', 0, NULL, 0, NULL, 1),
(7518, 5989, '3', 'Sri Chandrasekharendra Saraswathi Viswa Mahavidyalaya University (SCSVMV)', '', 'BCA', '2021', 7.50, '', 1, '2021-08-24 12:00:35', 0, NULL, 0, NULL, 1),
(7519, 5987, '3', 'Antonomous', '', 'B.com corporate sectsryship', '2020', 60.00, '', 1, '2021-08-24 12:03:46', 0, NULL, 0, NULL, 1),
(7520, 5990, '3', 'Anna University', '', 'BE - Electronics and Communication Engineering', '2020', 78.60, '', 1, '2021-08-24 12:40:21', 0, NULL, 0, NULL, 1),
(7521, 5991, '3', 'Anna University', '', 'B.E', '2020', 7.40, '', 1, '2021-08-24 12:44:02', 0, NULL, 0, NULL, 1),
(7522, 5992, '4', 'Anna University (code)', '', 'MBA (HRM)', '2016', 62.00, '', 1, '2021-08-24 01:01:12', 0, NULL, 0, NULL, 1),
(7523, 5993, '4', 'Madras unviersity', '', 'mcom', '2021', 85.00, '', 1, '2021-08-24 01:07:14', 0, NULL, 0, NULL, 1),
(7524, 5995, '4', 'jJ college of Arts And science', '', 'MCA', '2020', 68.00, '', 1, '2021-08-24 03:00:15', 0, NULL, 0, NULL, 1),
(7525, 5999, '3', 'RMK engineering college ', '', 'Bachelor of computer science and engineering ', '2019', 67.00, '', 1, '2021-08-24 04:11:29', 0, NULL, 0, NULL, 1),
(7526, 5998, '4', 'st peters university', '', 'mba', '2018', 70.00, '', 1, '2021-08-24 04:37:20', 0, NULL, 0, NULL, 1),
(7527, 5844, '3', 'Anna university', '', 'B.E', '2020', 60.00, '', 1, '2021-08-24 04:42:57', 0, NULL, 0, NULL, 1),
(7528, 5844, '5', 'DOTE', '', 'Diploma', '2017', 80.00, '', 1, '2021-08-24 04:43:33', 0, NULL, 0, NULL, 1),
(7529, 5997, '1', 'state board', '', 'b.e ', '2014', 83.00, '', 1, '2021-08-24 04:43:53', 1, '2021-08-24 04:49:32', 0, NULL, 0),
(7530, 5844, '1', 'State board', '', '', '2012', 56.50, '', 1, '2021-08-24 04:44:10', 0, NULL, 0, NULL, 1),
(7531, 5997, '3', 'anna university', '', 'b.e', '2020', 6.93, '', 1, '2021-08-24 04:47:26', 1, '2021-08-24 04:47:43', 0, NULL, 0),
(7532, 5997, '1', 'state board', '', '', '2014', 83.00, '', 1, '2021-08-24 04:50:10', 0, NULL, 0, NULL, 1),
(7533, 5997, '2', 'state board', '', '', '2016', 63.00, '', 1, '2021-08-24 04:50:38', 0, NULL, 0, NULL, 1),
(7534, 5997, '3', 'anna university', '', 'b.e', '2020', 69.30, '', 1, '2021-08-24 04:51:14', 0, NULL, 0, NULL, 1),
(7535, 6002, '4', 'Osmania  university', '', 'mca', '2019', 70.00, '', 1, '2021-08-24 06:51:52', 0, NULL, 0, NULL, 1),
(7536, 6004, '3', 'University', '', 'B.sc visual communication', '2019', 72.00, '', 1, '2021-08-24 08:55:11', 0, NULL, 0, NULL, 1),
(7537, 6005, '3', 'queen marys college', '', 'bsc plant biotech', '2010', 87.00, '', 1, '2021-08-25 10:36:37', 0, NULL, 0, NULL, 1),
(7538, 6006, '3', 'Alagappa university ', '', 'BCA', '2020', 70.00, '', 1, '2021-08-25 10:44:58', 0, NULL, 0, NULL, 1),
(7539, 6007, '4', 'Meenakshi college for women ', '', 'MCA', '2021', 86.90, '', 1, '2021-08-25 11:06:32', 0, NULL, 0, NULL, 1),
(7540, 6008, '3', 'Madras university', '', 'B.com(computer Application)', '2021', 70.00, '', 1, '2021-08-25 11:13:39', 0, NULL, 0, NULL, 1),
(7541, 6009, '4', 'Madras University', '', 'Mba', '2014', 59.00, '', 1, '2021-08-25 11:27:32', 0, NULL, 0, NULL, 1),
(7542, 6010, '3', 'Madras University', '', 'B,Sc Computer science', '2020', 52.00, '', 1, '2021-08-25 11:41:56', 0, NULL, 0, NULL, 1),
(7543, 6014, '4', 'University of Madras', '', 'MSc counseling psychology', '2020', 76.00, '', 1, '2021-08-25 12:02:05', 0, NULL, 0, NULL, 1),
(7544, 6016, '3', 'madras university', '', 'bba', '2017', 62.00, '', 1, '2021-08-25 12:04:07', 0, NULL, 0, NULL, 1),
(7545, 6011, '4', 'Crescent Institute of science and technology', '', 'MBA', '2020', 75.00, '', 1, '2021-08-25 12:07:20', 0, NULL, 0, NULL, 1),
(7546, 6011, '1', 'SFS matriculation higher secondary school', '', '', '2011', 64.00, '', 1, '2021-08-25 12:08:15', 0, NULL, 0, NULL, 1),
(7547, 6011, '2', 'St. Joseph\'s Matriculation higher secondary school for', '', '', '2013', 68.00, '', 1, '2021-08-25 12:08:51', 0, NULL, 0, NULL, 1),
(7548, 6011, '3', 'Sacred heart college', '', 'BBA', '2016', 73.00, '', 1, '2021-08-25 12:09:17', 0, NULL, 0, NULL, 1),
(7549, 6020, '4', 'Madras university ', '', 'MBA ', '2021', 66.00, '', 1, '2021-08-25 12:16:41', 0, NULL, 0, NULL, 1),
(7550, 6020, '3', 'Madras University ', '', 'MBA', '2019', 67.00, '', 1, '2021-08-25 12:17:13', 0, NULL, 0, NULL, 1),
(7551, 6020, '2', 'State Board ', '', '', '2016', 86.00, '', 1, '2021-08-25 12:17:40', 0, NULL, 0, NULL, 1),
(7552, 6012, '3', 'State board', '', 'B.com', '2020', 74.30, '', 1, '2021-08-25 12:21:45', 1, '2021-08-25 12:22:23', 0, NULL, 0),
(7553, 6012, '1', 'State board', '', '', '2015', 89.40, '', 1, '2021-08-25 12:23:09', 0, NULL, 0, NULL, 1),
(7554, 6012, '2', 'State board', '', '', '2017', 86.60, '', 1, '2021-08-25 12:23:51', 0, NULL, 0, NULL, 1),
(7555, 6012, '3', 'State board', '', 'B.com', '2020', 74.30, '', 1, '2021-08-25 12:24:51', 0, NULL, 0, NULL, 1),
(7556, 6023, '3', 'madras university', '', 'bca', '2017', 75.00, '', 1, '2021-08-25 12:26:44', 0, NULL, 0, NULL, 1),
(7557, 6023, '2', 'matruiculation', '', '', '2014', 95.00, '', 1, '2021-08-25 12:28:03', 0, NULL, 0, NULL, 1),
(7558, 6025, '1', 'state board', '', '', '2016', 75.00, '', 1, '2021-08-25 12:34:19', 0, NULL, 0, NULL, 1),
(7559, 6025, '5', 'miet', '', 'diploma', '2016', 75.00, '', 1, '2021-08-25 12:34:43', 0, NULL, 0, NULL, 1),
(7560, 6022, '3', 'Madras university', '', 'B. Com (CS) ', '2021', 78.00, '', 1, '2021-08-25 12:39:14', 0, NULL, 0, NULL, 1),
(7561, 6024, '3', 'University of Madras', '', 'B.com account and financial', '2020', 70.00, '', 1, '2021-08-25 12:39:34', 0, NULL, 0, NULL, 1),
(7562, 6027, '2', 'Government haided', '', '', '2019', 60.00, '', 1, '2021-08-25 12:56:47', 0, NULL, 0, NULL, 1),
(7563, 6028, '3', 'Crescent institute of science and technology', '', 'Bsc csc', '2020', 70.00, '', 1, '2021-08-25 01:14:49', 0, NULL, 0, NULL, 1),
(7564, 6026, '3', 'New prince shri bhavani collage of engineering and technology ', '', 'BE-EEE', '2017', 6.01, '', 1, '2021-08-25 01:25:56', 0, NULL, 0, NULL, 1),
(7565, 6031, '5', 'Srm University', '', 'Diploma in mechanical', '2018', 71.00, '', 1, '2021-08-25 01:45:21', 0, NULL, 0, NULL, 1),
(7566, 6032, '1', 'State board', '', '', '2015', 91.40, '', 1, '2021-08-25 02:29:11', 0, NULL, 0, NULL, 1),
(7567, 6032, '2', 'State board', '', '', '2017', 66.50, '', 1, '2021-08-25 02:29:38', 0, NULL, 0, NULL, 1),
(7568, 6030, '4', 'Madras University', '', 'Bba', '2019', 50.00, '', 1, '2021-08-25 02:53:20', 0, NULL, 0, NULL, 1),
(7569, 6030, '2', 'Gurunanak matriculation higher secondary school', '', '', '2017', 60.00, '', 1, '2021-08-25 02:54:58', 0, NULL, 0, NULL, 1),
(7570, 6036, '3', 'University of madras ', '', 'BCA', '2021', 65.00, '', 1, '2021-08-25 03:15:03', 0, NULL, 0, NULL, 1),
(7571, 6018, '1', 'state board of tamilnadu examinations', '', '', '2013', 80.00, '', 1, '2021-08-25 03:54:57', 0, NULL, 0, NULL, 1),
(7572, 6018, '2', 'state board of tamilnadu examinations', '', '', '2015', 59.00, '', 1, '2021-08-25 03:57:11', 0, NULL, 0, NULL, 1),
(7573, 6018, '3', 'madurai kamaraj university', '', 'b.sc ', '2018', 7.36, '', 1, '2021-08-25 03:59:27', 0, NULL, 0, NULL, 1),
(7574, 6018, '4', 'manonmaniam sundaranar university', '', 'mca', '2020', 7.90, '', 1, '2021-08-25 04:02:15', 0, NULL, 0, NULL, 1),
(7575, 6033, '3', 'anna university', '', 'b.e', '2014', 70.00, '', 1, '2021-08-25 04:15:11', 0, NULL, 0, NULL, 1),
(7576, 6033, '2', 'metri', '', '', '2010', 80.00, '', 1, '2021-08-25 04:15:35', 0, NULL, 0, NULL, 1),
(7577, 6033, '1', 'metric', '', '', '2010', 72.00, '', 1, '2021-08-25 04:15:48', 0, NULL, 0, NULL, 1),
(7578, 6038, '4', 'Tiruvalluvar university', '', 'MCA', '2021', 74.00, '', 1, '2021-08-25 05:36:56', 0, NULL, 0, NULL, 1),
(7579, 6039, '3', 'Anna University', '', 'B.E.Electronics And Communication Engineering', '2021', 79.00, '', 1, '2021-08-25 05:41:26', 0, NULL, 0, NULL, 1),
(7580, 6039, '5', 'Directorate of technical education', '', 'D.ECE', '2018', 85.00, '', 1, '2021-08-25 05:42:25', 0, NULL, 0, NULL, 1),
(7581, 6040, '3', 'Anna University', '', 'B.E(EEE)', '2019', 75.00, '', 1, '2021-08-25 05:56:45', 0, NULL, 0, NULL, 1),
(7582, 6037, '3', 'vels university', '', 'bsc hotel management', '2016', 60.00, '', 1, '2021-08-25 06:09:51', 1, '2021-08-25 06:13:30', 0, NULL, 1),
(7583, 6037, '2', 'stateboard', '', '', '2013', 47.00, '', 1, '2021-08-25 06:13:51', 0, NULL, 0, NULL, 1),
(7584, 6037, '1', 'stateboard', '', '', '2011', 63.00, '', 1, '2021-08-25 06:14:11', 0, NULL, 0, NULL, 1),
(7585, 6041, '3', 'Anna University', '', 'Bachelor of Engineering', '2020', 66.00, '', 1, '2021-08-26 10:05:11', 0, NULL, 0, NULL, 1),
(7586, 6042, '3', 'University', '', 'Bca', '2020', 73.00, '', 1, '2021-08-26 10:16:24', 0, NULL, 0, NULL, 1),
(7587, 6045, '3', 'Madras University', '', 'BBM', '2018', 72.00, '', 1, '2021-08-26 10:20:35', 0, NULL, 0, NULL, 1),
(7588, 6043, '3', 'Madras University', '', 'BCA', '2020', 75.00, '', 1, '2021-08-26 10:26:02', 0, NULL, 0, NULL, 1),
(7589, 6047, '3', 'The New college ', '', 'BBA', '2019', 75.00, '', 1, '2021-08-26 10:44:39', 0, NULL, 0, NULL, 1),
(7590, 6044, '3', 'Thiruvallur', '', 'BA English', '2017', 60.00, '', 1, '2021-08-26 10:58:02', 0, NULL, 0, NULL, 1),
(7591, 6048, '3', 'Madras university', '', 'Bcom', '2021', 75.00, '', 1, '2021-08-26 11:08:22', 0, NULL, 0, NULL, 1),
(7592, 6049, '3', 'Madras University', '', 'MSc zoology', '2021', 82.00, '', 1, '2021-08-26 11:36:13', 0, NULL, 0, NULL, 1),
(7593, 6050, '3', 'amritha', '', 'btech mech', '2020', 62.00, '', 1, '2021-08-26 11:45:09', 0, NULL, 0, NULL, 1),
(7594, 6053, '4', 'Thiagarajar School of management', '', 'PGDM', '2021', 76.10, '', 1, '2021-08-26 12:13:09', 0, NULL, 0, NULL, 1),
(7595, 6053, '3', 'Anna university', '', 'B.E', '2019', 75.40, '', 1, '2021-08-26 12:13:41', 0, NULL, 0, NULL, 1),
(7596, 6053, '2', 'Tamilnadu state board', '', '', '2015', 91.75, '', 1, '2021-08-26 12:15:03', 1, '2021-08-26 12:15:20', 0, NULL, 1),
(7597, 6053, '1', 'tamilnadu state board', '', '', '2013', 93.80, '', 1, '2021-08-26 12:15:41', 0, NULL, 0, NULL, 1),
(7598, 6052, '3', 'Dr.MGR Educational and research institute', '', 'B.sc', '2021', 75.00, '', 1, '2021-08-26 12:18:55', 0, NULL, 0, NULL, 1),
(7599, 6001, '3', 'University of madras', '', 'B.com corporate secritaryship', '2021', 68.00, '', 1, '2021-08-26 12:35:13', 0, NULL, 0, NULL, 1),
(7600, 6051, '3', 'anna univeristy', '', 'bachelor of engineering', '2019', 7.43, '', 1, '2021-08-26 01:23:04', 1, '2021-08-26 01:25:37', 0, NULL, 1),
(7601, 6054, '3', 'mangalore university ', '', 'b.com', '2017', 54.00, '', 1, '2021-08-26 01:32:59', 0, NULL, 0, NULL, 1),
(7602, 6057, '4', 'Anna University', '', 'MBA', '2021', 59.00, '', 1, '2021-08-26 01:44:27', 0, NULL, 0, NULL, 1),
(7603, 6055, '3', 'Anna university', '', 'ECE', '2015', 60.00, '', 1, '2021-08-26 02:41:57', 0, NULL, 0, NULL, 1),
(7604, 6059, '3', 'Madras University', '', 'B.sc', '2019', 72.00, '', 1, '2021-08-26 03:01:52', 0, NULL, 0, NULL, 1),
(7605, 6059, '1', 'State board', '', '', '2014', 76.00, '', 1, '2021-08-26 03:03:08', 0, NULL, 0, NULL, 1),
(7606, 6059, '2', 'State board', '', '', '2016', 54.00, '', 1, '2021-08-26 03:03:48', 0, NULL, 0, NULL, 1),
(7607, 6060, '3', 'madras university', '', 'bca', '2021', 83.00, '', 1, '2021-08-26 03:42:28', 0, NULL, 0, NULL, 1),
(7608, 6061, '3', 'Madras University', '', 'B.com', '2016', 58.00, '', 1, '2021-08-26 04:01:39', 0, NULL, 0, NULL, 1),
(7609, 6061, '1', 'State Board', '', '', '2011', 48.00, '', 1, '2021-08-26 04:02:45', 0, NULL, 0, NULL, 1),
(7610, 6061, '2', 'State Board', '', '', '2013', 79.00, '', 1, '2021-08-26 04:03:19', 0, NULL, 0, NULL, 1),
(7611, 6062, '4', 'Madras university', '', 'Master Of Social Work', '2021', 80.00, '', 1, '2021-08-26 04:09:06', 0, NULL, 0, NULL, 1),
(7612, 6063, '3', 'Anna University', '', 'B.E', '2021', 69.00, '', 1, '2021-08-26 04:38:22', 0, NULL, 0, NULL, 1),
(7613, 6064, '3', 'University ', '', 'B. Sc Computer Science', '2021', 69.50, '', 1, '2021-08-26 06:25:23', 0, NULL, 0, NULL, 1),
(7614, 6058, '1', 'tn', '', '', '2015', 94.00, '', 7, '2021-08-26 06:39:21', 0, NULL, 0, NULL, 1),
(7615, 6058, '3', 'madras', '', 'bcom', '2020', 81.00, '', 7, '2021-08-26 06:39:48', 0, NULL, 0, NULL, 1),
(7616, 6065, '3', 'Anna university ', '', 'B. E', '2019', 60.00, '', 1, '2021-08-26 08:04:07', 0, NULL, 0, NULL, 1),
(7617, 6066, '5', 'Bharath university', '', 'Diploma in computer Engineering', '2021', 60.00, '', 1, '2021-08-27 09:57:00', 0, NULL, 0, NULL, 1),
(7618, 6067, '1', 'test', '', '', '2016', 0.00, '', 1, '2021-08-27 10:13:25', 0, NULL, 0, NULL, 1),
(7619, 6069, '3', 'R. B. Gothi jain college', '', 'B com', '2019', 78.00, '', 1, '2021-08-27 10:33:00', 0, NULL, 0, NULL, 1),
(7620, 6071, '1', 'test', '', '', '2021', 0.00, '', 1, '2021-08-27 10:35:43', 0, NULL, 0, NULL, 1),
(7621, 6068, '3', 'University', '', 'B.com', '2019', 75.00, '', 1, '2021-08-27 10:41:52', 0, NULL, 0, NULL, 1),
(7622, 6072, '1', 'test', '', '', '2016', 0.00, '', 1, '2021-08-27 10:47:15', 0, NULL, 0, NULL, 1),
(7623, 6073, '1', 'test', '', '', '2021', 0.00, '', 1, '2021-08-27 11:02:02', 0, NULL, 0, NULL, 1),
(7624, 6074, '3', 'Anna University', '', 'BE EEE', '2014', 81.00, '', 1, '2021-08-27 12:01:00', 0, NULL, 0, NULL, 1),
(7625, 6075, '3', 'Loyola College', '', 'B.Sc.Computer Science', '2018', 60.00, '', 1, '2021-08-27 12:09:51', 0, NULL, 0, NULL, 1),
(7626, 6077, '3', 'UNIVERSITY', '', 'B.COM( Accounting and finance)', '2021', 73.20, '', 1, '2021-08-27 12:52:59', 0, NULL, 0, NULL, 1),
(7627, 6080, '3', 'madras', '', 'bba', '2021', 80.00, '', 1, '2021-08-27 01:12:03', 0, NULL, 0, NULL, 1),
(7628, 6081, '4', 'Meenakshi college of engineeeing', '', 'MBA', '2020', 65.00, '', 1, '2021-08-27 01:13:37', 0, NULL, 0, NULL, 1),
(7629, 6082, '4', 'SRM UNIVERSITY ', '', 'Mba', '2021', 8.30, '', 1, '2021-08-27 01:30:27', 0, NULL, 0, NULL, 1),
(7630, 6083, '3', 'University of madras', '', 'B. Com', '2018', 60.00, '', 1, '2021-08-27 01:30:39', 0, NULL, 0, NULL, 1),
(7631, 6082, '3', 'SRM UNIVERSITY ', '', 'Bba', '2019', 5.90, '', 1, '2021-08-27 01:30:56', 0, NULL, 0, NULL, 1),
(7632, 6082, '2', 'Leo matriculation hr. Sec. School ', '', '', '2016', 65.00, '', 1, '2021-08-27 01:32:42', 0, NULL, 0, NULL, 1),
(7633, 6082, '1', 'Leo matriculation hr. Sec. School ', '', '', '2014', 65.00, '', 1, '2021-08-27 01:33:33', 0, NULL, 0, NULL, 1),
(7634, 6084, '5', 'dote', '', 'dme', '2017', 65.00, '', 50, '2021-08-27 02:50:32', 0, NULL, 0, NULL, 1),
(7635, 6078, '4', 'tiruvalluvar university', '', 'mca', '2020', 60.00, '', 1, '2021-08-27 02:59:22', 0, NULL, 0, NULL, 1),
(7636, 6084, '2', 'state board', '', '', '2011', 57.00, '', 7, '2021-08-27 04:25:29', 7, '2021-08-27 06:27:29', 0, NULL, 1),
(7637, 6088, '4', 'Tirruvalluvar university  ', '', 'Master of computer Application', '2020', 70.00, '', 1, '2021-08-27 08:25:49', 0, NULL, 0, NULL, 1),
(7638, 6089, '1', 'test', '', '', '2021', 22.00, '', 1, '2021-08-28 09:38:05', 0, NULL, 0, NULL, 1),
(7639, 6090, '3', 'madras university ', '', 'bba', '2021', 70.00, '', 1, '2021-08-28 09:54:12', 0, NULL, 0, NULL, 1),
(7640, 6092, '2', 'state board', '', '', '2017', 73.00, '', 1, '2021-08-28 10:02:48', 0, NULL, 0, NULL, 1),
(7641, 6092, '3', 'anna university', '', 'be', '2021', 75.00, '', 1, '2021-08-28 10:03:15', 0, NULL, 0, NULL, 1),
(7642, 6091, '3', 'Madras University', '', 'BBA', '2020', 70.00, '', 1, '2021-08-28 10:07:35', 0, NULL, 0, NULL, 1),
(7643, 6093, '3', 'Bharathidasan University', '', 'B.com', '2020', 63.00, '', 1, '2021-08-28 10:28:25', 0, NULL, 0, NULL, 1),
(7644, 6093, '2', 'State Board', '', '', '2017', 84.00, '', 1, '2021-08-28 10:28:51', 1, '2021-08-28 10:28:59', 0, NULL, 0),
(7645, 6093, '2', 'State Board', '', '', '2017', 84.00, '', 1, '2021-08-28 10:29:24', 0, NULL, 0, NULL, 1),
(7646, 6093, '1', 'State board', '', '', '2015', 92.00, '', 1, '2021-08-28 10:29:43', 0, NULL, 0, NULL, 1),
(7647, 6094, '2', 'State Board ', '', '', '2016', 70.00, '', 1, '2021-08-28 11:51:40', 0, NULL, 0, NULL, 1),
(7648, 6095, '3', 'madras', '', 'b.com', '2021', 69.00, '', 1, '2021-08-28 12:10:27', 0, NULL, 0, NULL, 1),
(7649, 6097, '3', 'Madras University', '', 'Bsc maths', '2020', 70.00, '', 1, '2021-08-28 12:37:50', 0, NULL, 0, NULL, 1),
(7650, 6099, '3', 'Madras', '', 'B.sc mathematics', '2020', 60.00, '', 1, '2021-08-28 12:55:38', 0, NULL, 0, NULL, 1),
(7651, 6098, '3', 'Madras University', '', 'B co', '2021', 81.00, '', 1, '2021-08-28 01:05:40', 0, NULL, 0, NULL, 1),
(7652, 6100, '3', 'anna', '', 'be mech', '2020', 68.00, '', 1, '2021-08-28 01:19:52', 0, NULL, 0, NULL, 1),
(7653, 6101, '3', 'madras', '', 'bcom', '2021', 55.00, '', 1, '2021-08-28 02:20:49', 0, NULL, 0, NULL, 1),
(7654, 6085, '3', 'Madras University', '', 'BCA', '2016', 70.00, '', 1, '2021-08-28 04:58:37', 0, NULL, 0, NULL, 1),
(7655, 6102, '4', 'University of Madras', '', 'MBA', '2021', 82.70, '', 1, '2021-08-28 05:08:36', 0, NULL, 0, NULL, 1),
(7656, 6102, '3', 'University of Madras', '', 'BBA', '2019', 67.80, '', 1, '2021-08-28 05:10:14', 0, NULL, 0, NULL, 1),
(7657, 6102, '2', 'CBSE', '', '', '2016', 61.20, '', 1, '2021-08-28 05:10:40', 0, NULL, 0, NULL, 1),
(7658, 6102, '1', 'CBSE', '', '', '2014', 6.80, '', 1, '2021-08-28 05:11:18', 0, NULL, 0, NULL, 1),
(7659, 6003, '1', 'tn', '', '', '2016', 60.00, '', 7, '2021-08-28 06:29:12', 0, NULL, 0, NULL, 1),
(7660, 6003, '5', 'tn', '', 'grafics design', '2019', 70.00, '', 7, '2021-08-28 06:30:06', 0, NULL, 0, NULL, 1),
(7661, 6104, '3', 'madras', '', 'bba', '2020', 88.00, '', 1, '2021-08-30 10:55:36', 0, NULL, 0, NULL, 1),
(7662, 6105, '3', 'anna', '', 'bsc chemistry', '2019', 74.00, '', 1, '2021-08-30 10:59:49', 0, NULL, 0, NULL, 1),
(7663, 6106, '3', 'anna university', '', 'b.tech/information technology', '2013', 6.69, '', 1, '2021-08-30 11:47:34', 0, NULL, 0, NULL, 1),
(7664, 6107, '3', 'University ', '', 'B Com', '2020', 70.00, '', 1, '2021-08-30 12:23:27', 0, NULL, 0, NULL, 1),
(7665, 6109, '3', 'Madras University', '', 'b.com', '2018', 62.00, '', 1, '2021-08-30 12:40:55', 0, NULL, 0, NULL, 1),
(7666, 6108, '3', 'Madras University', '', 'Bachelor\'s of business administration', '2018', 68.00, '', 1, '2021-08-30 12:41:04', 0, NULL, 0, NULL, 1),
(7667, 6110, '3', 'anna', '', 'be mech', '2018', 60.00, '', 1, '2021-08-30 01:23:22', 0, NULL, 0, NULL, 1),
(7668, 6111, '3', 'A. R. J college of engineering and technology', '', 'B. E(ECE) ', '2019', 68.00, '', 1, '2021-08-30 01:58:54', 0, NULL, 0, NULL, 1),
(7669, 6112, '3', 'madras', '', 'bca', '2017', 60.00, '', 1, '2021-08-30 02:34:18', 0, NULL, 0, NULL, 1),
(7670, 6113, '5', 'mgr', '', 'ce', '2018', 77.00, '', 1, '2021-08-30 02:39:44', 0, NULL, 0, NULL, 1),
(7671, 6114, '3', 'Madras University', '', 'B.com', '2016', 69.00, '', 1, '2021-08-30 04:21:11', 1, '2021-08-30 04:23:54', 0, NULL, 1),
(7672, 6114, '1', 'Savitriammal higher secondary school', '', '', '2011', 62.00, '', 1, '2021-08-30 04:22:36', 1, '2021-08-30 04:24:38', 0, NULL, 1),
(7673, 6114, '2', 'Savitriammal Higher Secondary School', '', '', '2013', 65.00, '', 1, '2021-08-30 04:23:26', 1, '2021-08-30 04:25:37', 0, NULL, 1),
(7674, 6116, '3', 'Valliammal college for women - Madras university', '', 'B.Com(General)', '2021', 81.00, '', 1, '2021-08-30 04:37:34', 0, NULL, 0, NULL, 1),
(7675, 6116, '2', 'Immaculate hearts of mary matric. Hr.sec school', '', '', '2018', 93.00, '', 1, '2021-08-30 04:38:18', 0, NULL, 0, NULL, 1),
(7676, 6116, '1', 'Mahalakshmi matriculation school', '', '', '2016', 92.00, '', 1, '2021-08-30 04:38:47', 0, NULL, 0, NULL, 1),
(7677, 6118, '1', 'board', '', '', '2008', 50.00, '', 1, '2021-08-30 07:43:45', 0, NULL, 0, NULL, 1),
(7678, 6118, '2', 'board', '', '', '2009', 45.00, '', 1, '2021-08-30 07:44:23', 0, NULL, 0, NULL, 1),
(7679, 6118, '3', 'university', '', 'bca', '2012', 55.00, '', 1, '2021-08-30 07:45:44', 0, NULL, 0, NULL, 1),
(7680, 6120, '3', 'Anna university', '', 'BE MECHANICAL ENGINEERING', '2018', 70.00, '', 1, '2021-08-31 10:50:10', 0, NULL, 0, NULL, 1),
(7681, 6122, '4', 'ou', '', 'mcom', '2019', 65.00, '', 1, '2021-08-31 11:15:22', 0, NULL, 0, NULL, 1),
(7682, 6121, '3', 'Thiruvalluvar university', '', 'B.com', '2017', 60.00, '', 1, '2021-08-31 11:25:03', 0, NULL, 0, NULL, 1),
(7683, 6124, '3', 'Madras University', '', 'B.Com ', '2021', 70.00, '', 1, '2021-08-31 12:05:24', 0, NULL, 0, NULL, 1),
(7684, 6124, '2', 'State board', '', '', '2018', 71.00, '', 1, '2021-08-31 12:05:56', 0, NULL, 0, NULL, 1),
(7685, 6124, '1', 'State board', '', '', '2016', 77.00, '', 1, '2021-08-31 12:06:22', 0, NULL, 0, NULL, 1),
(7686, 6125, '3', 'madras university', '', 'bcom', '2017', 80.00, '', 1, '2021-08-31 12:30:44', 1, '2021-08-31 12:31:28', 0, NULL, 1),
(7687, 6126, '3', 'Sir theygaraya college', '', 'Bsc advanced zoology and biotechnology', '2017', 72.34, '', 1, '2021-08-31 12:42:57', 0, NULL, 0, NULL, 1),
(7688, 6128, '3', 'ku', '', 'btech', '2018', 65.00, '', 1, '2021-08-31 01:09:15', 0, NULL, 0, NULL, 1),
(7689, 6127, '3', 'Vistas', '', 'Bsc cs', '2019', 65.00, '', 1, '2021-08-31 01:31:21', 0, NULL, 0, NULL, 1),
(7690, 6129, '1', 'State board', '', '', '2007', 75.00, '', 1, '2021-08-31 01:32:27', 0, NULL, 0, NULL, 1),
(7691, 6129, '2', 'State Board', '', '', '2009', 59.00, '', 1, '2021-08-31 01:33:32', 0, NULL, 0, NULL, 1),
(7692, 6129, '3', 'Anna university Affiliated', '', 'Instrumentation and Control Engineering', '2013', 73.00, '', 1, '2021-08-31 01:35:35', 0, NULL, 0, NULL, 1),
(7693, 6130, '1', 'stateboard', '', '', '2013', 67.00, '', 1, '2021-08-31 02:27:45', 1, '2021-08-31 02:29:04', 0, NULL, 1),
(7694, 6130, '2', 'stateboard', '', '', '2015', 66.00, '', 1, '2021-08-31 02:28:06', 0, NULL, 0, NULL, 1),
(7695, 6130, '3', 'anna university', '', 'b e', '2019', 60.00, '', 1, '2021-08-31 02:29:35', 0, NULL, 0, NULL, 1),
(7696, 6134, '5', 'Diploma in multimedia ', '', 'No', '2018', 60.00, '', 1, '2021-08-31 06:28:41', 0, NULL, 0, NULL, 1),
(7697, 6136, '5', 'Bharath University', '', 'Diploma in computer engineering', '2021', 69.00, '', 1, '2021-09-01 10:14:14', 0, NULL, 0, NULL, 1),
(7698, 6135, '3', 'Madras University', '', 'B.sc', '2013', 81.00, '', 1, '2021-09-01 10:49:26', 0, NULL, 0, NULL, 1),
(7699, 6137, '3', 'Anna University', '', 'B.E.', '2020', 6.23, '', 1, '2021-09-01 11:20:26', 0, NULL, 0, NULL, 1),
(7700, 6137, '2', 'State Board', '', '', '2016', 79.60, '', 1, '2021-09-01 11:21:04', 0, NULL, 0, NULL, 1),
(7701, 6137, '1', 'State Board', '', '', '2014', 94.30, '', 1, '2021-09-01 11:21:33', 0, NULL, 0, NULL, 1),
(7702, 6138, '3', 'Anna university', '', 'B.E computer science engineering', '2018', 64.00, '', 1, '2021-09-01 11:50:20', 0, NULL, 0, NULL, 1),
(7703, 6139, '4', 'University of Madras', '', 'MCA', '2019', 68.00, '', 1, '2021-09-01 11:52:41', 0, NULL, 0, NULL, 1),
(7704, 6139, '3', 'University of Madras', '', 'BSc computer science', '2016', 65.00, '', 1, '2021-09-01 11:53:19', 0, NULL, 0, NULL, 1),
(7705, 6139, '2', 'State board', '', '', '2013', 65.00, '', 1, '2021-09-01 11:53:40', 0, NULL, 0, NULL, 1),
(7706, 6139, '1', 'Matriculation', '', '', '2011', 78.00, '', 1, '2021-09-01 11:54:13', 0, NULL, 0, NULL, 1),
(7707, 6140, '1', 'Tamilnadu ', '', 'B.com  (general )', '2016', 80.00, '', 1, '2021-09-01 12:58:53', 0, NULL, 0, NULL, 1),
(7708, 6140, '2', 'Tamilnadu ', '', '', '2018', 50.00, '', 1, '2021-09-01 12:59:15', 0, NULL, 0, NULL, 1),
(7709, 6141, '3', 'Thiruvaluvar', '', 'B.A.English', '2021', 79.00, '', 1, '2021-09-01 01:01:52', 0, NULL, 0, NULL, 1),
(7710, 6142, '4', 'Madras University', '', 'BA economics', '2021', 80.00, '', 1, '2021-09-01 01:15:16', 0, NULL, 0, NULL, 1),
(7711, 6145, '4', 'Madras University', '', 'B.AEcomonics', '2021', 80.00, '', 1, '2021-09-01 01:24:58', 0, NULL, 0, NULL, 1),
(7712, 6145, '4', 'Madras University', '', 'B.a Economics', '2021', 80.00, '', 1, '2021-09-01 01:25:34', 0, NULL, 0, NULL, 1),
(7713, 6143, '4', 'Madras University', '', 'BA economics', '2021', 80.00, '', 1, '2021-09-01 01:53:57', 0, NULL, 0, NULL, 1),
(7714, 6143, '4', 'Madras University', '', 'BA economics', '2021', 80.00, '', 1, '2021-09-01 01:54:48', 0, NULL, 0, NULL, 1),
(7715, 6115, '3', 'New prince shri bhavani arts & science college', '', 'bCA', '2016', 70.00, '', 1, '2021-09-01 02:43:36', 0, NULL, 0, NULL, 1),
(7716, 6146, '3', 'Vel\'s university', '', 'BE (computer science and Engineering) ', '2017', 52.00, '', 1, '2021-09-01 03:05:46', 0, NULL, 0, NULL, 1),
(7717, 6150, '3', 'Madras university', '', 'B. Com', '2016', 70.00, '', 1, '2021-09-01 04:25:11', 0, NULL, 0, NULL, 1),
(7718, 6149, '3', 'Veltech Hightech Dr.Rangarajan Dr.Sagunthala Engineering college ', '', 'B.TECH ', '2021', 6.80, '', 1, '2021-09-01 04:33:10', 0, NULL, 0, NULL, 1),
(7719, 6151, '3', 'A.M.JAIN COLLEGE', '', 'BCA', '2019', 67.96, '', 1, '2021-09-01 04:59:15', 0, NULL, 0, NULL, 1),
(7720, 6152, '4', 'autonoums', '', 'be cse', '2016', 73.00, '', 1, '2021-09-01 05:06:26', 0, NULL, 0, NULL, 1),
(7721, 6152, '2', 'state board', '', '', '2012', 84.00, '', 1, '2021-09-01 05:06:59', 0, NULL, 0, NULL, 1),
(7722, 6152, '1', 'state board', '', '', '2010', 83.00, '', 1, '2021-09-01 05:07:17', 0, NULL, 0, NULL, 1),
(7723, 6153, '4', 'Agni college of technology', '', 'B.E COMPUTER SCIENCE', '2019', 6.50, '', 1, '2021-09-01 05:38:34', 0, NULL, 0, NULL, 1),
(7724, 6156, '3', 'Anna university', '', 'CSE', '2019', 6.50, '', 1, '2021-09-01 07:10:52', 0, NULL, 0, NULL, 1),
(7725, 6148, '1', 'state board', '', '', '2014', 75.00, '', 1, '2021-09-01 07:56:19', 0, NULL, 0, NULL, 1),
(7726, 6148, '2', 'state board', '', '', '2016', 75.00, '', 1, '2021-09-01 07:56:46', 0, NULL, 0, NULL, 1),
(7727, 6148, '3', 'madras university', '', 'b.com', '2019', 60.00, '', 1, '2021-09-01 07:57:22', 0, NULL, 0, NULL, 1),
(7728, 6148, '4', 'madras university', '', 'mba', '2021', 70.00, '', 1, '2021-09-01 07:57:56', 0, NULL, 0, NULL, 1),
(7729, 6157, '3', 'Madras University', '', 'B.A( Economics)', '2020', 78.00, '', 1, '2021-09-02 09:55:51', 0, NULL, 0, NULL, 1),
(7730, 6159, '4', 'Anna university ', '', 'MBA', '2021', 67.00, '', 1, '2021-09-02 10:00:36', 0, NULL, 0, NULL, 1),
(7731, 6160, '3', 'Deemed university', '', 'B com', '2020', 57.00, '', 1, '2021-09-02 10:01:17', 0, NULL, 0, NULL, 1),
(7732, 6161, '3', 'Anna University ', '', 'B.tech', '2021', 70.00, '', 1, '2021-09-02 10:46:52', 0, NULL, 0, NULL, 1),
(7733, 6164, '3', 'Anna University', '', 'BE ECE ', '2021', 80.30, '', 1, '2021-09-02 11:02:54', 0, NULL, 0, NULL, 1),
(7734, 6165, '3', 'Anna University', '', 'BE', '2021', 75.00, '', 1, '2021-09-02 11:03:14', 0, NULL, 0, NULL, 1),
(7735, 6165, '2', 'State board', '', '', '2017', 77.00, '', 1, '2021-09-02 11:03:41', 0, NULL, 0, NULL, 1),
(7736, 6165, '1', 'State board', '', '', '2015', 89.00, '', 1, '2021-09-02 11:03:57', 0, NULL, 0, NULL, 1),
(7737, 6164, '2', 'State  board of Tamilnadu', '', '', '2017', 85.75, '', 1, '2021-09-02 11:04:59', 0, NULL, 0, NULL, 1),
(7738, 6164, '1', 'Central board of secondary education ', '', '', '2015', 90.00, '', 1, '2021-09-02 11:06:08', 0, NULL, 0, NULL, 1),
(7739, 6166, '2', 'state board', '', '', '2017', 68.00, '', 1, '2021-09-02 11:09:38', 0, NULL, 0, NULL, 1),
(7740, 6166, '3', 'panimalar', '', 'Be Mech', '2021', 70.00, '', 1, '2021-09-02 11:10:08', 0, NULL, 0, NULL, 1),
(7741, 6162, '3', 'Gojan school of business and technology', '', 'BE: mechanical engineering', '2020', 6.68, '', 1, '2021-09-02 11:15:32', 0, NULL, 0, NULL, 1),
(7742, 3485, '2', 'stateboard', '', '', '2017', 80.00, '', 1, '2021-09-02 11:15:46', 0, NULL, 0, NULL, 1),
(7743, 3485, '3', 'be mech', '', 'panimalar', '2021', 79.00, '', 1, '2021-09-02 11:16:14', 0, NULL, 0, NULL, 1),
(7744, 6167, '3', 'periyar', '', 'bcs physics', '2019', 65.00, '', 1, '2021-09-02 11:23:58', 0, NULL, 0, NULL, 1),
(7745, 6163, '3', 'Dr mgr janagi art and science ', '', 'BCA', '2016', 7.50, '', 1, '2021-09-02 11:26:14', 0, NULL, 0, NULL, 1),
(7746, 6168, '3', 'Vels University', '', 'B.com (accounting & finance)', '2021', 94.00, '', 1, '2021-09-02 11:54:42', 0, NULL, 0, NULL, 1),
(7747, 6169, '3', 'Anna university', '', 'BE', '2016', 65.00, '', 1, '2021-09-02 12:05:59', 0, NULL, 0, NULL, 1),
(7748, 6169, '2', 'Government higher secondary school', '', 'BE', '2012', 65.00, '', 1, '2021-09-02 12:08:08', 0, NULL, 0, NULL, 1),
(7749, 6169, '1', 'Government higher secondary school', '', '', '2010', 82.00, '', 1, '2021-09-02 12:08:41', 0, NULL, 0, NULL, 1),
(7750, 6170, '4', 'vikramasimhapuri university', '', 'msc computer science', '2019', 74.00, '', 1, '2021-09-02 01:02:38', 0, NULL, 0, NULL, 1),
(7751, 6170, '3', 'vikramasimhapuri university', '', 'bsc', '2016', 77.00, '', 1, '2021-09-02 01:03:13', 0, NULL, 0, NULL, 1),
(7752, 6172, '3', 'Dr.m.g.r University', '', 'B.com', '2018', 85.00, '', 1, '2021-09-02 02:25:24', 0, NULL, 0, NULL, 1),
(7753, 6171, '2', 'Madras University', '', '', '2021', 75.00, '', 1, '2021-09-02 02:25:49', 0, NULL, 0, NULL, 1),
(7754, 6171, '3', 'Madras University', '', 'Bcom', '2021', 75.00, '', 1, '2021-09-02 02:26:37', 0, NULL, 0, NULL, 1),
(7755, 6173, '4', 'Anna University', '', 'MBA HR and marketing', '2021', 72.00, '', 1, '2021-09-02 03:00:15', 0, NULL, 0, NULL, 1),
(7756, 6174, '4', 'ou', '', 'mba', '2018', 72.00, '', 1, '2021-09-02 03:41:44', 0, NULL, 0, NULL, 1),
(7757, 6175, '3', 'ku', '', 'bsc cs', '2020', 87.00, '', 1, '2021-09-02 03:48:22', 0, NULL, 0, NULL, 1),
(7758, 6176, '3', 'Periyar university', '', 'Bsc,DPM', '2017', 67.00, '', 1, '2021-09-02 06:10:21', 0, NULL, 0, NULL, 1),
(7759, 6178, '3', 'Kamarajar university ', '', 'B. A', '2018', 58.00, '', 1, '2021-09-03 10:19:56', 0, NULL, 0, NULL, 1),
(7760, 6180, '3', 'Anna University', '', 'Bachelor of engineering', '2021', 80.00, '', 1, '2021-09-03 11:27:10', 0, NULL, 0, NULL, 1),
(7761, 6182, '3', 'anna', '', 'be cse', '2020', 75.00, '', 1, '2021-09-03 12:00:54', 0, NULL, 0, NULL, 1),
(7762, 6183, '3', 'thiruvalluvar', '', 'ma english', '2021', 91.00, '', 1, '2021-09-03 12:07:37', 0, NULL, 0, NULL, 1),
(7763, 6184, '3', 'madras', '', 'bcom', '2020', 70.00, '', 1, '2021-09-03 12:16:31', 0, NULL, 0, NULL, 1),
(7764, 6185, '3', 'Apollo college', '', 'BCA', '2021', 65.00, '', 1, '2021-09-03 12:24:45', 0, NULL, 0, NULL, 1),
(7765, 6181, '1', 'Palaniammal Higher Secondary School', '', '', '2013', 75.00, '', 1, '2021-09-03 12:34:44', 0, NULL, 0, NULL, 1),
(7766, 6181, '2', 'Palaniammal Higher Secondary School', '', '', '2015', 62.00, '', 1, '2021-09-03 12:35:24', 0, NULL, 0, NULL, 1),
(7767, 6181, '3', 'SreeSaraswathi Thyagaraja College', '', 'bsc ct', '2018', 60.00, '', 1, '2021-09-03 12:37:24', 0, NULL, 0, NULL, 1),
(7768, 6188, '2', 'Board or university', '', '', '2017', 70.00, '', 1, '2021-09-03 12:37:43', 0, NULL, 0, NULL, 1),
(7769, 6181, '4', 'Kongu Institution', '', 'mca', '2020', 68.50, '', 1, '2021-09-03 12:38:03', 0, NULL, 0, NULL, 1),
(7770, 6158, '1', 'government high school ', '', '', '2015', 91.40, '', 1, '2021-09-03 12:38:08', 0, NULL, 0, NULL, 1),
(7771, 6158, '2', 'muvendar metriculation hr. sec. school', '', '', '2017', 81.50, '', 1, '2021-09-03 12:39:21', 0, NULL, 0, NULL, 1),
(7772, 6158, '3', 'st. josephs college of engineering and technology', '', 'bachelor of engineering', '2021', 70.00, '', 1, '2021-09-03 12:42:19', 0, NULL, 0, NULL, 1),
(7773, 6186, '3', 'University', '', 'B com', '2022', 89.00, '', 1, '2021-09-03 12:52:41', 0, NULL, 0, NULL, 1),
(7774, 6187, '1', 'state board', '', '', '2023', 61.00, '', 1, '2021-09-03 01:09:32', 0, NULL, 0, NULL, 1),
(7775, 6187, '2', 'state board', '', '', '2015', 64.00, '', 1, '2021-09-03 01:10:06', 0, NULL, 0, NULL, 1),
(7776, 6187, '3', 'thiruvalluvar university', '', 'b.com', '2018', 56.00, '', 1, '2021-09-03 01:11:29', 0, NULL, 0, NULL, 1),
(7777, 6187, '4', 'thiruvalluvar university', '', 'master of commerce', '2020', 58.00, '', 1, '2021-09-03 01:12:10', 0, NULL, 0, NULL, 1),
(7778, 6190, '4', 'Alagappa University', '', 'MBA(international Business)', '2021', 60.00, '', 1, '2021-09-03 01:13:37', 0, NULL, 0, NULL, 1),
(7779, 6191, '3', 'anna', '', 'btech it', '2020', 65.00, '', 1, '2021-09-03 01:25:35', 0, NULL, 0, NULL, 1),
(7780, 6189, '3', 'Distance of education', '', 'B.com', '2021', 70.00, '', 1, '2021-09-03 01:28:56', 0, NULL, 0, NULL, 1),
(7781, 6192, '3', 'madras', '', 'bsc cs', '2020', 65.00, '', 1, '2021-09-03 02:46:04', 0, NULL, 0, NULL, 1),
(7782, 6196, '3', 'Sri Chandrasekharendra Saraswathi Viswa Mahavidyalaya University (SCSVMV) kanchipuram', '', 'Bachelor of science computer science', '2021', 85.00, '', 1, '2021-09-03 03:55:40', 0, NULL, 0, NULL, 1),
(7783, 6193, '1', 'state', '', '', '2016', 76.00, '', 7, '2021-09-03 05:31:20', 0, NULL, 0, NULL, 1),
(7784, 6193, '3', 'dote', '', 'dip', '2019', 93.00, '', 7, '2021-09-03 05:31:46', 0, NULL, 0, NULL, 1),
(7785, 6197, '3', 'Don Bosco college', '', 'BSC (computer science)', '2018', 63.00, '', 1, '2021-09-03 06:01:41', 0, NULL, 0, NULL, 1),
(7786, 6199, '3', 'St. Josephs institute of technology ', '', 'B. Tech', '2023', 75.00, '', 1, '2021-09-04 11:14:07', 0, NULL, 0, NULL, 1),
(7787, 6200, '3', 'madras', '', 'bcom ca', '2021', 74.00, '', 1, '2021-09-04 11:20:16', 0, NULL, 0, NULL, 1),
(7788, 6198, '1', 'mtriculation', '', '', '2011', 82.00, '', 1, '2021-09-04 11:23:13', 0, NULL, 0, NULL, 1),
(7789, 6198, '3', 'anna', '', 'be eee', '2017', 16.00, '', 1, '2021-09-04 11:23:46', 0, NULL, 0, NULL, 1),
(7790, 6201, '3', 'Jawaharlal Nehru technological University Anantapur', '', 'Btech', '2021', 7.10, '', 1, '2021-09-04 11:50:14', 0, NULL, 0, NULL, 1),
(7791, 6202, '3', 'madras', '', 'bsc cs', '2021', 80.00, '', 1, '2021-09-04 12:24:28', 0, NULL, 0, NULL, 1),
(7792, 6203, '3', 'madras', '', 'bcom ca', '2021', 76.00, '', 1, '2021-09-04 12:28:42', 0, NULL, 0, NULL, 1),
(7793, 6204, '3', 'anna University ', '', 'b.E', '2021', 7.75, '', 1, '2021-09-04 01:00:49', 0, NULL, 0, NULL, 1),
(7794, 6206, '5', 'dote', '', 'in civil', '2019', 73.00, '', 1, '2021-09-04 02:39:38', 0, NULL, 0, NULL, 1),
(7795, 6207, '3', 'anna university', '', 'bachelor of technology', '2021', 74.00, '', 1, '2021-09-04 03:36:30', 0, NULL, 0, NULL, 1),
(7796, 6208, '3', 'University of madras', '', 'B. Com', '2021', 78.00, '', 1, '2021-09-04 04:27:03', 0, NULL, 0, NULL, 1),
(7797, 6210, '3', 'Pondicherry University', '', 'B. Tech ', '2019', 70.90, '', 1, '2021-09-04 05:02:59', 0, NULL, 0, NULL, 1),
(7798, 6210, '2', 'CSBE', '', '', '2015', 65.40, '', 1, '2021-09-04 05:03:21', 0, NULL, 0, NULL, 1),
(7799, 6210, '1', 'Tamil Nadu Board', '', '', '2013', 87.60, '', 1, '2021-09-04 05:03:58', 0, NULL, 0, NULL, 1),
(7800, 6211, '3', 'Anna university', '', 'B.E', '2018', 68.70, '', 1, '2021-09-04 05:20:29', 0, NULL, 0, NULL, 1),
(7801, 6212, '3', 'ANNA UNIVERSITY', '', 'B.E', '2020', 78.00, '', 1, '2021-09-04 05:57:52', 0, NULL, 0, NULL, 1),
(7802, 6214, '3', 'Hindustan college of engineering and technology', '', 'BE', '2019', 66.00, '', 1, '2021-09-04 06:17:12', 0, NULL, 0, NULL, 1),
(7803, 6215, '2', 'State Board', '', '', '2020', 70.00, '', 1, '2021-09-06 10:16:33', 0, NULL, 0, NULL, 1),
(7804, 6216, '4', 'Annamalai University', '', 'MBA hr', '2018', 70.00, '', 1, '2021-09-06 11:35:47', 0, NULL, 0, NULL, 1),
(7805, 6196, '1', 'State board', '', '', '2016', 80.00, '', 1, '2021-09-06 12:03:24', 0, NULL, 0, NULL, 1),
(7806, 6196, '2', 'State board', '', '', '2018', 64.00, '', 1, '2021-09-06 12:03:51', 0, NULL, 0, NULL, 1),
(7807, 6154, '4', 'St. Joseph\'s College of Engineering', '', 'MCA', '2020', 65.00, '', 1, '2021-09-06 12:09:29', 0, NULL, 0, NULL, 1),
(7808, 6154, '3', 'The American College Madurai', '', 'BCA', '2018', 65.00, '', 1, '2021-09-06 12:10:14', 0, NULL, 0, NULL, 1),
(7809, 6217, '3', 'Guru Nanak college', '', 'B.com', '2014', 60.00, '', 1, '2021-09-06 12:16:05', 0, NULL, 0, NULL, 1),
(7810, 6217, '2', 'State board', '', '', '2011', 52.00, '', 1, '2021-09-06 12:17:00', 0, NULL, 0, NULL, 1),
(7811, 6217, '1', 'State board', '', '', '2009', 42.00, '', 1, '2021-09-06 12:17:21', 0, NULL, 0, NULL, 1),
(7812, 6218, '3', 'University of Madras', '', 'BCA', '2018', 60.00, '', 1, '2021-09-06 12:46:18', 0, NULL, 0, NULL, 1),
(7813, 6219, '1', 'rajavignesh ', '', '', '2014', 93.33, '', 1, '2021-09-06 01:26:09', 1, '2021-09-06 01:26:54', 0, NULL, 1),
(7814, 6219, '2', 'rajavignesh', '', '', '2016', 83.23, '', 1, '2021-09-06 01:27:27', 0, NULL, 0, NULL, 1),
(7815, 6219, '3', 'rajalakshmi engineering college', '', 'B. Tech IT', '2020', 6.90, '', 1, '2021-09-06 01:28:00', 0, NULL, 0, NULL, 1),
(7816, 6221, '3', 'Ethiraj college for women', '', 'BA Economic', '2014', 60.00, '', 1, '2021-09-06 01:55:39', 0, NULL, 0, NULL, 1),
(7817, 6224, '3', 'Madras University', '', 'B.com.ca', '2017', 70.00, '', 1, '2021-09-06 02:52:08', 0, NULL, 0, NULL, 1),
(7818, 6225, '5', 'Dote', '', '', '2019', 92.00, '', 1, '2021-09-06 04:13:52', 0, NULL, 0, NULL, 1),
(7819, 6226, '3', 'Anna University', '', 'B.E', '2020', 65.00, '', 1, '2021-09-06 04:23:54', 0, NULL, 0, NULL, 1),
(7820, 6229, '3', 'anna university', '', 'engineering', '2021', 72.00, '', 1, '2021-09-06 07:48:13', 0, NULL, 0, NULL, 1),
(7821, 6231, '3', 'anna university', '', 'mechanical engineering', '2019', 60.00, '', 1, '2021-09-07 12:25:23', 0, NULL, 0, NULL, 1),
(7822, 6232, '5', 'HIET', '', 'DAE', '2017', 82.00, '', 1, '2021-09-07 10:09:49', 0, NULL, 0, NULL, 1),
(7823, 6233, '3', 'Anna university', '', 'Be.ECE', '2021', 7.91, '', 1, '2021-09-07 10:36:15', 0, NULL, 0, NULL, 1),
(7824, 6234, '3', 'Anna university', '', 'BE', '2021', 7.67, '', 1, '2021-09-07 11:07:48', 0, NULL, 0, NULL, 1),
(7825, 6235, '3', 'St.Xavier\'s college Palayamkottai, Tirunelveli', '', 'B.Com', '2021', 62.20, '', 1, '2021-09-07 11:09:02', 0, NULL, 0, NULL, 1),
(7826, 6236, '5', 'Tamil Nadu  state polytechnic college ', '', 'Yes', '2017', 68.00, '', 1, '2021-09-07 11:18:27', 0, NULL, 0, NULL, 1),
(7827, 6238, '3', 'anna', '', 'be cs', '2017', 65.00, '', 1, '2021-09-07 12:21:33', 0, NULL, 0, NULL, 1),
(7828, 6237, '4', 'Manonmaniam Sundarnar', '', 'M.Sc', '2014', 76.60, '', 1, '2021-09-07 12:31:57', 0, NULL, 0, NULL, 1),
(7829, 6239, '2', 'state board', '', '', '2016', 63.00, '', 1, '2021-09-07 12:49:49', 0, NULL, 0, NULL, 1),
(7830, 6239, '3', 'anna university', '', 'be ', '2020', 72.00, '', 1, '2021-09-07 12:50:26', 0, NULL, 0, NULL, 1),
(7831, 6242, '3', 'Medras university', '', 'Bsc', '2021', 60.00, '', 1, '2021-09-07 03:20:51', 0, NULL, 0, NULL, 1),
(7832, 6243, '3', 'Anna university', '', 'BE ', '2019', 70.00, '', 1, '2021-09-07 03:48:20', 0, NULL, 0, NULL, 1),
(7833, 6245, '3', 'Vit university ', '', 'Bsc computer science ', '2020', 75.60, '', 1, '2021-09-07 04:49:30', 0, NULL, 0, NULL, 1),
(7834, 6244, '4', 'thiruvalluvar', '', 'm.sc ', '2019', 72.00, '', 1, '2021-09-07 05:09:22', 0, NULL, 0, NULL, 1),
(7835, 6244, '4', 'thiruvalluvar', '', 'm.sc', '2019', 70.00, '', 1, '2021-09-07 05:10:07', 0, NULL, 0, NULL, 1),
(7836, 6248, '3', 'Alagappa University', '', 'BBA', '2021', 83.00, '', 1, '2021-09-08 08:35:32', 0, NULL, 0, NULL, 1),
(7837, 6248, '1', 'CBSE', '', '', '2015', 92.00, '', 1, '2021-09-08 08:36:51', 0, NULL, 0, NULL, 1),
(7838, 6248, '2', 'CBSE', '', '', '2017', 91.00, '', 1, '2021-09-08 08:37:04', 0, NULL, 0, NULL, 1),
(7839, 6249, '3', 'Madras university', '', 'B.sc', '2021', 60.00, '', 1, '2021-09-08 10:33:49', 0, NULL, 0, NULL, 1),
(7840, 6252, '3', 'Medrash University', '', 'BCA', '2019', 69.00, '', 1, '2021-09-08 11:13:40', 0, NULL, 0, NULL, 1),
(7841, 6253, '2', 'state board', '', '', '2012', 60.00, '', 1, '2021-09-08 11:41:26', 0, NULL, 0, NULL, 1),
(7842, 6256, '2', 'state board', '', '', '2017', 70.00, '', 1, '2021-09-08 11:47:39', 0, NULL, 0, NULL, 1),
(7843, 6256, '3', 'loyola', '', 'bcom', '2020', 60.00, '', 1, '2021-09-08 11:48:03', 0, NULL, 0, NULL, 1),
(7844, 6255, '2', 'cbse', '', '', '2017', 65.00, '', 1, '2021-09-08 11:52:15', 0, NULL, 0, NULL, 1),
(7845, 6255, '3', 'deemed university', '', 'btech', '2021', 71.00, '', 1, '2021-09-08 11:53:21', 0, NULL, 0, NULL, 1),
(7846, 6254, '2', 'State board', '', '', '2016', 57.00, '', 1, '2021-09-08 11:57:02', 0, NULL, 0, NULL, 1),
(7847, 6254, '3', 'Madras university', '', 'Bca', '2020', 60.00, '', 1, '2021-09-08 11:57:55', 0, NULL, 0, NULL, 1),
(7848, 6257, '3', 'Nandanam', '', 'B.com', '2017', 60.00, '', 1, '2021-09-08 12:50:38', 0, NULL, 0, NULL, 1),
(7849, 6251, '1', 'tn', '', '', '2016', 51.00, '', 7, '2021-09-08 02:58:59', 0, NULL, 0, NULL, 1),
(7850, 6251, '3', 'madras', '', 'bba', '2021', 48.00, '', 7, '2021-09-08 02:59:26', 0, NULL, 0, NULL, 1),
(7851, 6240, '3', 'university', '', 'bachelor of engineering', '2021', 7.50, '', 1, '2021-09-08 04:15:20', 0, NULL, 0, NULL, 1),
(7852, 6261, '3', 'Anna university', '', 'B. E (ECE) ', '2014', 59.98, '', 1, '2021-09-08 06:21:16', 0, NULL, 0, NULL, 1),
(7853, 6261, '5', 'Dote', '', 'Diploma in ECE', '2012', 75.00, '', 1, '2021-09-08 06:24:27', 0, NULL, 0, NULL, 1),
(7854, 6261, '2', 'State board', '', '', '2010', 55.00, '', 1, '2021-09-08 06:25:26', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7855, 6261, '1', 'State board', '', '', '2007', 60.00, '', 1, '2021-09-08 06:25:44', 0, NULL, 0, NULL, 1),
(7856, 6262, '3', 'Bharathiyar university ', '', 'B.Sc.,Biotechnology ', '2018', 61.00, '', 1, '2021-09-09 10:51:35', 0, NULL, 0, NULL, 1),
(7857, 6263, '4', 'Madras University', '', '', '2020', 65.00, '', 1, '2021-09-09 11:25:03', 1, '2021-09-09 11:26:35', 0, NULL, 0),
(7858, 6263, '1', 'Govt higher secondary school', '', '', '2015', 84.00, '', 1, '2021-09-09 11:25:34', 0, NULL, 0, NULL, 1),
(7859, 6263, '2', 'Govt higher secondary school', '', '', '2017', 58.00, '', 1, '2021-09-09 11:25:59', 0, NULL, 0, NULL, 1),
(7860, 6263, '3', 'Madras University', '', 'Bca', '2020', 65.00, '', 1, '2021-09-09 11:26:40', 0, NULL, 0, NULL, 1),
(7861, 6265, '2', 'state board', '', '', '2015', 88.00, '', 1, '2021-09-09 12:15:57', 0, NULL, 0, NULL, 1),
(7862, 6265, '3', 'anna university', '', 'be', '2019', 65.00, '', 1, '2021-09-09 12:16:24', 0, NULL, 0, NULL, 1),
(7863, 6264, '3', 'annauniversity', '', 'b.e', '2019', 76.00, '', 1, '2021-09-09 12:44:05', 0, NULL, 0, NULL, 1),
(7864, 6267, '5', 'Anna university', '', 'D.EEE', '2020', 76.00, '', 1, '2021-09-09 01:36:47', 0, NULL, 0, NULL, 1),
(7865, 6266, '3', 'loyola college', '', 'bba ', '2021', 61.00, '', 1, '2021-09-09 01:36:49', 0, NULL, 0, NULL, 1),
(7866, 6269, '3', 'Anna University', '', 'BE Mechanical', '2019', 65.00, '', 1, '2021-09-09 01:42:44', 0, NULL, 0, NULL, 1),
(7867, 6270, '1', 'eererere', '', '', '2016', 55.00, '', 1, '2021-09-09 03:14:17', 0, NULL, 0, NULL, 1),
(7868, 6271, '3', 'Anna university', '', 'Be', '2010', 70.00, '', 1, '2021-09-09 03:51:50', 0, NULL, 0, NULL, 1),
(7869, 6273, '4', 'Madras University', '', 'B com', '2019', 71.00, '', 1, '2021-09-09 09:19:17', 0, NULL, 0, NULL, 1),
(7870, 6272, '3', 'Karpagam University', '', 'BE', '2016', 72.00, '', 1, '2021-09-10 12:47:21', 0, NULL, 0, NULL, 1),
(7871, 6274, '3', 'Madras university ', '', 'B.com', '2021', 59.00, '', 1, '2021-09-11 11:05:04', 0, NULL, 0, NULL, 1),
(7872, 6274, '2', 'State board ', '', '', '2018', 58.00, '', 1, '2021-09-11 11:06:14', 0, NULL, 0, NULL, 1),
(7873, 6274, '1', 'State', '', '', '2016', 80.00, '', 1, '2021-09-11 11:06:39', 0, NULL, 0, NULL, 1),
(7874, 6276, '5', 'Meenakshi krishnan POLLYTECHIC', '', 'DME', '2015', 75.00, '', 1, '2021-09-11 12:00:35', 0, NULL, 0, NULL, 1),
(7875, 6279, '5', 'DOTe', '', 'Me', '2016', 79.00, '', 1, '2021-09-11 01:37:23', 0, NULL, 0, NULL, 1),
(7876, 6279, '2', 'Aringar Anna Government School', '', '', '2012', 88.80, '', 1, '2021-09-11 01:38:15', 0, NULL, 0, NULL, 1),
(7877, 6280, '3', 'Madras University', '', 'BCA ', '2021', 69.00, '', 1, '2021-09-11 03:16:17', 0, NULL, 0, NULL, 1),
(7878, 6281, '3', 'Anna university  affiliate ', '', 'B. E. ECE', '2015', 75.00, '', 1, '2021-09-11 03:47:20', 0, NULL, 0, NULL, 1),
(7879, 6283, '1', 'Sowdambika matriculation higher secondary school', '', '', '2013', 96.00, '', 1, '2021-09-11 06:07:17', 1, '2021-09-11 06:09:10', 0, NULL, 1),
(7880, 6283, '2', 'Greenpark matriculation higher secondary school', '', '', '2015', 86.00, '', 1, '2021-09-11 06:07:48', 0, NULL, 0, NULL, 1),
(7881, 6283, '3', 'Sathyabama institute of science and technology', '', 'B.tech(information technology)', '2020', 64.00, '', 1, '2021-09-11 06:08:28', 0, NULL, 0, NULL, 1),
(7882, 6285, '4', 'Pondicherry university', '', 'M. Tech', '2017', 90.00, '', 1, '2021-09-13 11:13:12', 0, NULL, 0, NULL, 1),
(7883, 6285, '3', 'Pondicherry university', '', 'Bca', '2021', 72.00, '', 1, '2021-09-13 11:15:55', 0, NULL, 0, NULL, 1),
(7884, 6286, '3', 'Thiruvalluvar University', '', 'BCA', '2014', 75.00, '', 1, '2021-09-13 11:21:00', 0, NULL, 0, NULL, 1),
(7885, 6287, '3', 'Ignou', '', 'bachelors in tourism', '2018', 52.00, '', 1, '2021-09-13 11:23:43', 0, NULL, 0, NULL, 1),
(7886, 6288, '3', 'Anna University ', '', 'BE-cse', '2015', 63.00, '', 1, '2021-09-13 11:31:22', 0, NULL, 0, NULL, 1),
(7887, 6289, '3', 'SRM UNIVERSITY ', '', 'B.Tech Mechanical Engineering ', '2019', 72.00, '', 1, '2021-09-13 11:44:41', 0, NULL, 0, NULL, 1),
(7888, 6290, '3', 'Ambedkar', '', 'Bsc', '2017', 50.00, '', 1, '2021-09-13 12:04:32', 0, NULL, 0, NULL, 1),
(7889, 6291, '3', 'Bharathidasan University', '', 'BBA', '2020', 59.05, '', 1, '2021-09-13 12:23:24', 0, NULL, 0, NULL, 1),
(7890, 6292, '3', 'GTN arts college', '', 'Bsc computer science', '2020', 76.50, '', 1, '2021-09-13 01:28:23', 0, NULL, 0, NULL, 1),
(7891, 6292, '1', 'St Mary\'s higher secondary school', '', '', '2015', 84.00, '', 1, '2021-09-13 01:28:58', 0, NULL, 0, NULL, 1),
(7892, 6292, '2', 'St Mary\'s higher secondary school', '', '', '2017', 64.00, '', 1, '2021-09-13 01:29:46', 0, NULL, 0, NULL, 1),
(7893, 6293, '4', 'Madurai Kamaraj University', '', 'M. Sc-IT', '2019', 64.00, '', 1, '2021-09-13 03:07:11', 0, NULL, 0, NULL, 1),
(7894, 6293, '3', 'Madurai Kamaraj University', '', 'B. Sc IT', '2017', 62.00, '', 1, '2021-09-13 03:07:59', 0, NULL, 0, NULL, 1),
(7895, 6294, '1', 'tn', '', '', '2014', 92.00, '', 1, '2021-09-13 03:55:15', 0, NULL, 0, NULL, 1),
(7896, 6294, '3', 'anna', '', 'be', '2020', 73.00, '', 1, '2021-09-13 03:55:46', 0, NULL, 0, NULL, 1),
(7897, 6295, '1', 'state', '', '', '2016', 79.00, '', 1, '2021-09-13 04:01:31', 1, '2021-09-13 04:02:24', 0, NULL, 1),
(7898, 6295, '3', 'bharathidhasan', '', 'bcom', '2021', 81.00, '', 1, '2021-09-13 04:02:14', 0, NULL, 0, NULL, 1),
(7899, 6297, '1', 'state', '', '', '2016', 84.00, '', 1, '2021-09-13 04:07:37', 0, NULL, 0, NULL, 1),
(7900, 6297, '3', 'bharathidasan', '', 'bcom', '2021', 77.00, '', 1, '2021-09-13 04:08:13', 0, NULL, 0, NULL, 1),
(7901, 6298, '1', 'state', '', '', '2015', 94.80, '', 1, '2021-09-13 04:11:19', 0, NULL, 0, NULL, 1),
(7902, 6298, '3', 'anna', '', 'be mech', '2021', 78.00, '', 1, '2021-09-13 04:11:47', 0, NULL, 0, NULL, 1),
(7903, 6296, '3', 'University of madra', '', 'B.com', '2018', 61.00, '', 1, '2021-09-13 04:28:34', 0, NULL, 0, NULL, 1),
(7904, 6299, '1', 'state', '', '', '2016', 75.00, '', 1, '2021-09-13 04:30:18', 0, NULL, 0, NULL, 1),
(7905, 6299, '3', 'prist', '', 'bcom', '2021', 78.00, '', 1, '2021-09-13 04:31:02', 0, NULL, 0, NULL, 1),
(7906, 6301, '1', 'TN ', '', '', '2006', 60.00, '', 1, '2021-09-14 07:08:12', 0, NULL, 0, NULL, 1),
(7907, 6301, '2', 'Tn', '', '', '2007', 60.00, '', 1, '2021-09-14 07:08:33', 0, NULL, 0, NULL, 1),
(7908, 6301, '3', 'Pondicherry university', '', 'BCA', '2011', 72.00, '', 1, '2021-09-14 07:09:21', 0, NULL, 0, NULL, 1),
(7909, 6301, '4', 'Pondicherry university', '', 'M.tech', '2016', 90.00, '', 1, '2021-09-14 07:09:57', 0, NULL, 0, NULL, 1),
(7910, 6302, '3', 'University', '', 'B.E (ECE)', '2019', 65.00, '', 1, '2021-09-14 10:38:29', 0, NULL, 0, NULL, 1),
(7911, 6303, '3', 'The American college ', '', 'B.com', '2019', 47.00, '', 1, '2021-09-14 11:18:38', 0, NULL, 0, NULL, 1),
(7912, 6303, '1', 'State board', '', '', '2014', 67.00, '', 1, '2021-09-14 11:19:05', 0, NULL, 0, NULL, 1),
(7913, 6303, '2', 'State board', '', '', '2016', 60.00, '', 1, '2021-09-14 11:19:26', 0, NULL, 0, NULL, 1),
(7914, 6304, '3', 'Annai vailankanni arts and science College, Thanjavur', '', 'Bsc', '2021', 80.00, '', 1, '2021-09-14 11:44:09', 0, NULL, 0, NULL, 1),
(7915, 6305, '3', 'Kalasalingam university', '', 'B.sc Information Technology', '2021', 72.90, '', 1, '2021-09-14 11:47:14', 0, NULL, 0, NULL, 1),
(7916, 6306, '3', 'MANONMANIAM SUNDARANAR UNIVERSITY', '', 'BA', '2021', 70.00, '', 1, '2021-09-14 12:10:28', 0, NULL, 0, NULL, 1),
(7917, 6306, '1', 'STATE BOARD OF TAMILNADU', '', '', '2016', 85.00, '', 1, '2021-09-14 12:11:10', 0, NULL, 0, NULL, 1),
(7918, 6309, '3', 'Manonmaniam Sundaranar University', '', 'B.Sc., Physics', '2020', 87.00, '', 1, '2021-09-14 12:42:18', 0, NULL, 0, NULL, 1),
(7919, 6309, '1', 'VKVMHSS, Vallioor', '', '', '2015', 95.00, '', 1, '2021-09-14 12:45:05', 0, NULL, 0, NULL, 1),
(7920, 6309, '2', 'VKVMHSS, Vallioor', '', '', '2017', 75.00, '', 1, '2021-09-14 12:45:50', 0, NULL, 0, NULL, 1),
(7921, 6310, '5', 'Anna University', '', 'Computer science Engineering', '2017', 67.00, '', 1, '2021-09-14 01:32:12', 0, NULL, 0, NULL, 1),
(7922, 6311, '4', 'AICTE approved', '', 'MBA marketing', '2020', 71.00, '', 1, '2021-09-14 02:00:10', 0, NULL, 0, NULL, 1),
(7923, 6311, '3', 'simhapuri university', '', 'B.com computers', '2018', 70.00, '', 1, '2021-09-14 02:00:55', 0, NULL, 0, NULL, 1),
(7924, 6308, '2', 'state', '', '', '2011', 76.00, '', 7, '2021-09-14 02:41:36', 0, NULL, 0, NULL, 1),
(7925, 6308, '4', 'anna', '', 'mba', '2017', 92.00, '', 7, '2021-09-14 02:42:06', 0, NULL, 0, NULL, 1),
(7926, 6313, '1', 'State board ', '', '', '2014', 86.40, '', 1, '2021-09-14 04:57:56', 0, NULL, 0, NULL, 1),
(7927, 6313, '2', 'State board', '', '', '2016', 68.67, '', 1, '2021-09-14 04:58:18', 0, NULL, 0, NULL, 1),
(7928, 6313, '3', 'Anna university ', '', 'B.tech information technology ', '2020', 72.00, '', 1, '2021-09-14 04:59:35', 0, NULL, 0, NULL, 1),
(7929, 6316, '4', 'sri indu ', '', 'mba', '2019', 62.00, '', 1, '2021-09-15 10:42:51', 0, NULL, 0, NULL, 1),
(7930, 6317, '1', 'Sri sivagami ambal high school', '', '', '2013', 89.00, '', 1, '2021-09-15 11:59:19', 1, '2021-09-15 11:59:46', 0, NULL, 1),
(7931, 6317, '2', 'Ramanathan chettiyar higher secondary school', '', '', '2015', 60.00, '', 1, '2021-09-15 12:00:39', 0, NULL, 0, NULL, 1),
(7932, 6317, '3', 'Jj colleage of arts and science', '', 'BCA', '2018', 71.00, '', 1, '2021-09-15 12:01:25', 0, NULL, 0, NULL, 1),
(7933, 6318, '3', 'Anna University', '', 'B com', '2021', 70.00, '', 1, '2021-09-15 12:28:02', 0, NULL, 0, NULL, 1),
(7934, 6320, '1', 'tamilnadu state Board', '', '', '2014', 90.00, '', 1, '2021-09-15 12:52:01', 0, NULL, 0, NULL, 1),
(7935, 6320, '3', 'anna university', '', 'b.e.civil engineering', '2021', 78.00, '', 1, '2021-09-15 12:53:08', 0, NULL, 0, NULL, 1),
(7936, 6320, '2', 'tamilnadu  state board', '', '', '2016', 82.00, '', 1, '2021-09-15 12:53:31', 0, NULL, 0, NULL, 1),
(7937, 6322, '1', 'state', '', '', '2014', 73.00, '', 1, '2021-09-15 01:05:41', 0, NULL, 0, NULL, 1),
(7938, 6322, '3', 'anna', '', 'be', '2020', 72.00, '', 1, '2021-09-15 01:06:08', 0, NULL, 0, NULL, 1),
(7939, 6323, '3', 'JEPPIAAR ENGINEERING COLLEGE', '', 'BE-AERONAUTICAL ENGINEERING', '2021', 71.00, '', 1, '2021-09-15 02:47:13', 0, NULL, 0, NULL, 1),
(7940, 6321, '3', 'madras university', '', 'bsc', '2021', 6.50, '', 1, '2021-09-15 03:06:19', 0, NULL, 0, NULL, 1),
(7941, 6319, '3', 'university of madras', '', 'bca', '2024', 60.00, '', 1, '2021-09-15 04:24:00', 1, '2021-09-15 04:24:25', 0, NULL, 1),
(7942, 6319, '2', 'ghss', '', '', '2008', 57.00, '', 1, '2021-09-15 04:29:48', 0, NULL, 0, NULL, 1),
(7943, 6319, '1', 'ghss', '', '', '2006', 60.00, '', 1, '2021-09-15 04:30:09', 0, NULL, 0, NULL, 1),
(7944, 6324, '4', 'bharathiar unversity', '', 'mba', '2021', 76.00, '', 1, '2021-09-15 04:53:52', 0, NULL, 0, NULL, 1),
(7945, 6325, '3', 'Mookambigai College of Engineering', '', 'B.E-Automobile Engineering', '2019', 65.00, '', 1, '2021-09-15 06:25:57', 0, NULL, 0, NULL, 1),
(7946, 6326, '1', 'State board', '', '', '2015', 68.80, '', 1, '2021-09-16 10:16:06', 0, NULL, 0, NULL, 1),
(7947, 6326, '2', 'State board', '', '', '2017', 57.50, '', 1, '2021-09-16 10:16:47', 0, NULL, 0, NULL, 1),
(7948, 6326, '3', 'Madras university', '', 'Bsc(cs)', '2020', 70.89, '', 1, '2021-09-16 10:17:44', 0, NULL, 0, NULL, 1),
(7949, 6327, '1', 'Tamil Nadu bord of secondary education', '', '', '2016', 52.00, '', 1, '2021-09-16 10:51:16', 0, NULL, 0, NULL, 1),
(7950, 6327, '2', 'Tamilnadu board of higher secondary education', '', '', '2018', 55.00, '', 1, '2021-09-16 10:52:10', 0, NULL, 0, NULL, 1),
(7951, 6327, '3', 'DB Jain College thuraipakkam', '', 'B.com ISM', '2021', 63.00, '', 1, '2021-09-16 10:53:24', 0, NULL, 0, NULL, 1),
(7952, 6329, '3', 'Gtn arts college', '', 'B.com cA', '2021', 70.00, '', 1, '2021-09-16 11:18:39', 0, NULL, 0, NULL, 1),
(7953, 6328, '5', 'Anna university', '', 'DEEE', '2018', 92.00, '', 1, '2021-09-16 11:19:26', 0, NULL, 0, NULL, 1),
(7954, 6330, '3', 'Madras University', '', 'BCom', '2020', 70.00, '', 1, '2021-09-16 11:33:11', 0, NULL, 0, NULL, 1),
(7955, 6331, '4', 'anna unversity', '', 'mba', '2016', 75.00, '', 1, '2021-09-16 11:51:50', 0, NULL, 0, NULL, 1),
(7956, 6331, '3', 'madras unversity', '', ' bcom', '2014', 70.00, '', 1, '2021-09-16 11:53:06', 0, NULL, 0, NULL, 1),
(7957, 6332, '1', 'State board', '', '', '2014', 86.00, '', 1, '2021-09-16 12:53:56', 0, NULL, 0, NULL, 1),
(7958, 6332, '2', 'State board', '', '', '2016', 77.00, '', 1, '2021-09-16 12:54:24', 0, NULL, 0, NULL, 1),
(7959, 6332, '3', 'Anna University', '', 'B.E', '2020', 66.00, '', 1, '2021-09-16 12:55:03', 0, NULL, 0, NULL, 1),
(7960, 6333, '2', 'State board', '', '', '2017', 60.00, '', 1, '2021-09-16 02:28:00', 1, '2021-09-16 02:32:04', 0, NULL, 0),
(7961, 6333, '3', 'Manonmaniam sundaranar University tirunelveli', '', 'Bsc computer science', '2020', 72.40, '', 1, '2021-09-16 02:28:53', 0, NULL, 0, NULL, 1),
(7962, 6333, '1', 'State board', '', '', '2015', 63.80, '', 1, '2021-09-16 02:30:37', 0, NULL, 0, NULL, 1),
(7963, 6334, '2', 'state board', '', '', '2018', 54.80, '', 1, '2021-09-16 02:32:35', 0, NULL, 0, NULL, 1),
(7964, 6334, '3', 'ms university', '', 'bsc', '2021', 80.00, '', 1, '2021-09-16 02:33:11', 0, NULL, 0, NULL, 1),
(7965, 6335, '3', 'Thirivalluvar University', '', 'B.com', '2020', 75.00, '', 1, '2021-09-16 02:43:34', 0, NULL, 0, NULL, 1),
(7966, 6336, '3', 'Thirivalluvar University', '', 'BCA', '2020', 70.00, '', 1, '2021-09-16 02:55:16', 0, NULL, 0, NULL, 1),
(7967, 6337, '1', 'state', '', '', '2014', 65.00, '', 1, '2021-09-16 04:26:50', 0, NULL, 0, NULL, 1),
(7968, 6337, '3', 'anna', '', '', '2017', 70.00, '', 1, '2021-09-16 04:27:17', 0, NULL, 0, NULL, 1),
(7969, 6338, '3', 'Anna University', '', 'BE ECE', '2015', 57.00, '', 1, '2021-09-16 04:58:01', 0, NULL, 0, NULL, 1),
(7970, 6339, '5', 'Anna University', '', 'Diploma in civil engineering', '2020', 80.00, '', 1, '2021-09-17 09:56:04', 0, NULL, 0, NULL, 1),
(7971, 6340, '2', 'Thiruu vi ka hr sec school', '', '', '2018', 60.00, '', 1, '2021-09-17 10:01:30', 0, NULL, 0, NULL, 1),
(7972, 6341, '1', 'STATEBOARD ', '', '', '2016', 92.80, '', 1, '2021-09-17 10:39:43', 1, '2021-09-17 10:41:07', 0, NULL, 1),
(7973, 6341, '2', 'STATEBOARD ', '', '', '2018', 77.50, '', 1, '2021-09-17 10:40:08', 1, '2021-09-17 10:41:17', 0, NULL, 1),
(7974, 6341, '3', 'Madras university ', '', 'Bsc mathematics ', '2021', 77.00, '', 1, '2021-09-17 10:40:38', 0, NULL, 0, NULL, 1),
(7975, 6342, '3', 'Anna university ', '', 'BE-ALL MECHANICAL ENGINEERING ', '2019', 62.00, '', 1, '2021-09-17 10:47:44', 0, NULL, 0, NULL, 1),
(7976, 6342, '2', 'State board ', '', '', '2015', 57.00, '', 1, '2021-09-17 10:48:10', 0, NULL, 0, NULL, 1),
(7977, 6343, '3', 'Madras University', '', 'BBA', '2019', 78.00, '', 1, '2021-09-17 12:17:24', 0, NULL, 0, NULL, 1),
(7978, 6344, '4', 'Bharathidasan university', '', 'MCA', '2021', 92.00, '', 1, '2021-09-17 12:37:06', 0, NULL, 0, NULL, 1),
(7979, 6348, '3', 'Vel tech High tech  engineering college , Avadi', '', 'B.E Computer science Engineering ', '2020', 65.00, '', 1, '2021-09-17 01:56:23', 0, NULL, 0, NULL, 1),
(7980, 6345, '3', 'Anna university', '', 'Bachelor of Engineering', '2017', 69.00, '', 1, '2021-09-17 02:34:03', 0, NULL, 0, NULL, 1),
(7981, 6349, '3', 'Manonmaniyam Sundarnar University', '', 'B.A History', '2019', 69.00, '', 1, '2021-09-17 02:35:29', 0, NULL, 0, NULL, 1),
(7982, 6346, '3', 'University of madras', '', 'B. Com', '2021', 75.00, '', 1, '2021-09-17 02:40:40', 0, NULL, 0, NULL, 1),
(7983, 6350, '3', 'Thiru kolanjiappar government arts and science College', '', 'B.sc, computer science', '2021', 70.00, '', 1, '2021-09-17 03:13:27', 0, NULL, 0, NULL, 1),
(7984, 6350, '1', 'N.l.c higher secondary school mandharakkuppam, Neyveli -2', '', '', '2015', 87.00, '', 1, '2021-09-17 03:14:49', 0, NULL, 0, NULL, 1),
(7985, 6350, '2', 'N.l.c higher secondary school mandharakkuppam, Neyveli-2', '', '', '2017', 80.00, '', 1, '2021-09-17 03:15:20', 0, NULL, 0, NULL, 1),
(7986, 6352, '4', 'Bharathidasan university', '', 'MCA', '2021', 92.00, '', 1, '2021-09-17 03:50:53', 0, NULL, 0, NULL, 1),
(7987, 6355, '1', 'state', '', '', '2014', 70.00, '', 1, '2021-09-17 05:56:43', 0, NULL, 0, NULL, 1),
(7988, 6355, '3', 'anna', '', 'dip mech', '2017', 69.00, '', 1, '2021-09-17 05:57:12', 0, NULL, 0, NULL, 1),
(7989, 6354, '3', 'Anna University', '', 'B.E', '2021', 75.00, '', 1, '2021-09-17 06:03:03', 1, '2021-09-17 06:03:41', 0, NULL, 0),
(7990, 6354, '3', 'Anna University', '', 'B.E', '2021', 75.00, '', 1, '2021-09-17 06:04:06', 0, NULL, 0, NULL, 1),
(7991, 6356, '3', 'Anna University ', '', 'B.E cse', '2009', 60.00, '', 1, '2021-09-17 06:36:32', 0, NULL, 0, NULL, 1),
(7992, 6357, '3', 'velammal college of engineering and technology', '', 'b.e.', '2021', 76.00, '', 1, '2021-09-17 06:42:55', 0, NULL, 0, NULL, 1),
(7993, 6353, '3', 'thiruvalluvar university', '', 'bca - computer application', '2021', 83.00, '', 1, '2021-09-17 07:46:31', 0, NULL, 0, NULL, 1),
(7994, 6361, '3', 'Madras University', '', 'B.com accounting and finance', '2021', 75.00, '', 1, '2021-09-18 11:34:03', 0, NULL, 0, NULL, 1),
(7995, 6123, '3', 'ANNA UNIVERSITY ', '', 'BE', '2016', 6.50, '', 1, '2021-09-18 11:42:42', 1, '2021-09-18 11:51:46', 0, NULL, 0),
(7996, 6123, '2', 'STATE BOARD', '', '', '2010', 49.00, '', 1, '2021-09-18 11:43:21', 1, '2021-09-18 11:46:38', 0, NULL, 0),
(7997, 6123, '2', 'STATE BOARD', '', '', '2010', 49.00, '', 1, '2021-09-18 11:43:59', 1, '2021-09-18 11:46:11', 0, NULL, 0),
(7998, 6123, '5', 'DOTE', '', 'DEEE', '2013', 80.00, '', 1, '2021-09-18 11:45:08', 1, '2021-09-18 11:51:47', 0, NULL, 0),
(7999, 6123, '2', 'STATE BOARD', '', '', '2010', 47.00, '', 1, '2021-09-18 11:51:31', 1, '2021-09-18 11:51:44', 0, NULL, 0),
(8000, 6123, '1', 'STATE BOARD', '', '', '2008', 51.00, '', 1, '2021-09-18 11:52:16', 0, NULL, 0, NULL, 1),
(8001, 6123, '2', 'STATE BOARD', '', '', '2010', 49.00, '', 1, '2021-09-18 11:52:48', 0, NULL, 0, NULL, 1),
(8002, 6123, '5', 'DOTE', '', 'DEEE', '2013', 80.00, '', 1, '2021-09-18 11:53:44', 0, NULL, 0, NULL, 1),
(8003, 6123, '3', 'ANNA UNIVERSITY ', '', 'BE EEE', '2016', 6.50, '', 1, '2021-09-18 11:54:19', 0, NULL, 0, NULL, 1),
(8004, 6363, '3', 'Madras university', '', 'B. Com', '2017', 60.00, '', 1, '2021-09-18 12:51:20', 0, NULL, 0, NULL, 1),
(8005, 6364, '3', 'Anna University', '', 'B.E', '2020', 6.70, '', 1, '2021-09-18 01:19:53', 0, NULL, 0, NULL, 1),
(8006, 6364, '2', 'State Board', '', '', '2016', 88.00, '', 1, '2021-09-18 01:20:44', 0, NULL, 0, NULL, 1),
(8007, 6366, '3', 'Anna university', '', 'B.tech', '2014', 78.50, '', 1, '2021-09-18 03:46:41', 0, NULL, 0, NULL, 1),
(8008, 6367, '3', 'Prist university', '', 'B.tech', '2020', 70.00, '', 1, '2021-09-18 05:07:36', 0, NULL, 0, NULL, 1),
(8009, 6369, '3', 'Thangavelu engineering college', '', 'BE', '2021', 74.00, '', 1, '2021-09-18 06:33:00', 0, NULL, 0, NULL, 1),
(8010, 6365, '3', 'thiruvalluvar university', '', 'bachelor of arts', '2021', 62.00, '', 1, '2021-09-18 10:31:29', 1, '2021-09-18 10:33:51', 0, NULL, 0),
(8011, 6365, '1', 'state board', '', '', '2015', 86.00, '', 1, '2021-09-18 10:33:32', 0, NULL, 0, NULL, 1),
(8012, 6365, '2', 'state board', '', '', '2017', 72.00, '', 1, '2021-09-18 10:34:39', 0, NULL, 0, NULL, 1),
(8013, 6365, '3', 'thiruvalluvar university', '', 'bachelor  of arts', '2021', 62.00, '', 1, '2021-09-18 10:36:03', 0, NULL, 0, NULL, 1),
(8014, 6371, '3', 'Hindusthan College of Engineering and Technology', '', 'B.E/EEE', '2019', 60.00, '', 1, '2021-09-19 12:37:32', 0, NULL, 0, NULL, 1),
(8015, 6371, '1', 'Mary Matha Matric Hr Sec school', '', '', '2013', 82.00, '', 1, '2021-09-19 12:38:21', 0, NULL, 0, NULL, 1),
(8016, 6371, '2', 'Adharsh Vidhayalaya Hr Sec School', '', '', '2015', 86.00, '', 1, '2021-09-19 12:38:58', 0, NULL, 0, NULL, 1),
(8017, 6374, '3', 'Madras University', '', 'B.A.Econimics', '2021', 60.00, '', 1, '2021-09-19 03:56:21', 0, NULL, 0, NULL, 1),
(8018, 6376, '3', 'Alagappa university ', '', 'BBA', '2020', 51.00, '', 1, '2021-09-19 09:22:55', 0, NULL, 0, NULL, 1),
(8019, 6379, '4', 'Loyola College (Autonomous)', '', 'MSc Computer Science', '2021', 72.00, '', 1, '2021-09-20 10:08:16', 0, NULL, 0, NULL, 1),
(8020, 6379, '3', 'Thiruvallur University', '', 'Bsc Computer Science', '2019', 71.00, '', 1, '2021-09-20 10:09:11', 0, NULL, 0, NULL, 1),
(8021, 6379, '2', 'State Board', '', '', '2016', 58.00, '', 1, '2021-09-20 10:09:43', 0, NULL, 0, NULL, 1),
(8022, 6379, '1', 'State Board', '', '', '2014', 83.00, '', 1, '2021-09-20 10:10:10', 0, NULL, 0, NULL, 1),
(8023, 6382, '1', 'State board', '', '', '2012', 55.00, '', 1, '2021-09-20 11:30:37', 0, NULL, 0, NULL, 1),
(8024, 6382, '3', 'Madras', '', 'Bcom', '2017', 70.00, '', 1, '2021-09-20 11:31:03', 0, NULL, 0, NULL, 1),
(8025, 6385, '4', 'ANNA UNIVERSITY ', '', 'MBA', '2020', 75.00, '', 1, '2021-09-20 11:47:46', 0, NULL, 0, NULL, 1),
(8026, 6386, '3', 'Anna university ', '', 'B-tech information technology ', '2021', 65.00, '', 1, '2021-09-20 11:58:32', 0, NULL, 0, NULL, 1),
(8027, 6387, '3', 'Madrasuniversity', '', 'b.com', '2021', 60.00, '', 1, '2021-09-20 12:25:51', 0, NULL, 0, NULL, 1),
(8028, 6388, '3', 'Bharathidhaasan university ', '', 'Bsc computer science ', '2018', 50.00, '', 1, '2021-09-20 01:10:38', 1, '2021-09-20 01:11:12', 0, NULL, 1),
(8029, 6383, '3', 'Anna University', '', 'B.E', '2020', 72.00, '', 1, '2021-09-20 01:22:16', 0, NULL, 0, NULL, 1),
(8030, 6383, '2', 'Kamala Subramanian matric hr sec school', '', '', '2016', 73.00, '', 1, '2021-09-20 01:23:00', 0, NULL, 0, NULL, 1),
(8031, 6383, '1', 'Kamala Subramanian matric hr sec school', '', '', '2014', 68.00, '', 1, '2021-09-20 01:23:26', 0, NULL, 0, NULL, 1),
(8032, 6392, '3', 'anna university', '', 'bachelors of engineering', '2021', 7.85, '', 1, '2021-09-20 01:43:39', 0, NULL, 0, NULL, 1),
(8033, 6380, '2', 'State board', '', '', '2018', 78.75, '', 1, '2021-09-20 02:39:19', 0, NULL, 0, NULL, 1),
(8034, 6393, '2', 'State Board', '', '', '2018', 63.00, '', 1, '2021-09-20 02:45:50', 0, NULL, 0, NULL, 1),
(8035, 6378, '3', 'anna university', '', 'b.e', '2015', 61.00, '', 1, '2021-09-20 03:06:58', 0, NULL, 0, NULL, 1),
(8036, 6378, '2', 'Government Higher Secondary School', '', '', '2011', 60.00, '', 1, '2021-09-20 03:08:33', 0, NULL, 0, NULL, 1),
(8037, 6378, '1', 'Government High School', '', '', '2009', 72.00, '', 1, '2021-09-20 03:09:02', 0, NULL, 0, NULL, 1),
(8038, 6395, '3', 'Dhanalakshmi Srinivasan college of engineering and technology', '', 'BE- electrical and electronics engineering', '2017', 59.70, '', 1, '2021-09-20 03:27:45', 1, '2021-09-20 03:29:28', 0, NULL, 1),
(8039, 6395, '2', 'R.K.m(Main) Hr.sec.school', '', '', '2013', 75.00, '', 1, '2021-09-20 03:29:04', 1, '2021-09-20 03:30:21', 0, NULL, 1),
(8040, 6395, '1', 'Venugopal matriculation school', '', '', '2011', 72.00, '', 1, '2021-09-20 03:30:02', 0, NULL, 0, NULL, 1),
(8041, 6398, '3', 'Madras University', '', 'B.sc visual communication', '2021', 79.00, '', 1, '2021-09-20 04:06:02', 0, NULL, 0, NULL, 1),
(8042, 6400, '4', 'University', '', 'bE mechanical', '2018', 65.00, '', 1, '2021-09-20 07:47:12', 0, NULL, 0, NULL, 1),
(8043, 6390, '3', 'Patrician college of arts and science ', '', 'B.Com', '2020', 69.00, '', 1, '2021-09-21 06:30:55', 0, NULL, 0, NULL, 1),
(8044, 6390, '2', 'Andrew\'s matriculation H.S.S', '', '', '2017', 67.00, '', 1, '2021-09-21 06:32:01', 0, NULL, 0, NULL, 1),
(8045, 6390, '1', 'A.V.Rm.V', '', '', '2015', 70.00, '', 1, '2021-09-21 06:32:45', 0, NULL, 0, NULL, 1),
(8046, 6401, '3', 'Madras University ', '', 'B.com ', '2013', 70.00, '', 1, '2021-09-21 10:14:36', 0, NULL, 0, NULL, 1),
(8047, 6402, '3', 'Madras', '', 'B.com cs', '2016', 85.00, '', 1, '2021-09-21 10:43:28', 0, NULL, 0, NULL, 1),
(8048, 6403, '3', 'Madras University', '', 'B.com', '2021', 62.00, '', 1, '2021-09-21 11:09:29', 0, NULL, 0, NULL, 1),
(8049, 6404, '3', 'Anna university ', '', 'B.Tech (IT)', '2016', 62.00, '', 1, '2021-09-21 11:41:05', 0, NULL, 0, NULL, 1),
(8050, 6408, '1', 'State board', '', '', '2015', 88.80, '', 1, '2021-09-21 12:01:52', 0, NULL, 0, NULL, 1),
(8051, 6408, '2', 'State board', '', '', '2017', 74.50, '', 1, '2021-09-21 12:02:09', 0, NULL, 0, NULL, 1),
(8052, 6407, '3', 'Madras University ', '', 'B.com general', '2014', 70.00, '', 1, '2021-09-21 12:02:19', 0, NULL, 0, NULL, 1),
(8053, 6408, '3', 'Anna university', '', 'Electronics and communication engineering', '2021', 76.50, '', 1, '2021-09-21 12:02:53', 0, NULL, 0, NULL, 1),
(8054, 6409, '3', 'University of Madras', '', 'B.com general', '2021', 67.00, '', 1, '2021-09-21 12:27:43', 1, '2021-09-21 12:29:21', 0, NULL, 1),
(8055, 6411, '3', 'Madras University', '', 'Bsc', '2021', 64.00, '', 1, '2021-09-21 01:11:16', 0, NULL, 0, NULL, 1),
(8056, 6412, '3', 'Bharathidhasan university', '', 'Bsc', '2021', 80.00, '', 1, '2021-09-21 01:14:45', 0, NULL, 0, NULL, 1),
(8057, 6414, '3', 'Madras University', '', 'BCA', '2021', 80.00, '', 1, '2021-09-21 02:12:11', 0, NULL, 0, NULL, 1),
(8058, 6406, '1', 'state', '', '', '2007', 70.00, '', 7, '2021-09-21 02:49:03', 0, NULL, 0, NULL, 1),
(8059, 6406, '3', 'anna', '', 'bca', '2012', 59.50, '', 7, '2021-09-21 02:49:46', 0, NULL, 0, NULL, 1),
(8060, 6419, '4', 'Pondicherry', '', 'mca', '2021', 83.00, '', 1, '2021-09-21 03:39:26', 0, NULL, 0, NULL, 1),
(8061, 6416, '4', 'Pondicherry University', '', 'MCA', '2021', 71.50, '', 1, '2021-09-21 03:40:08', 0, NULL, 0, NULL, 1),
(8062, 6419, '3', 'Thiruvalluvar University', '', 'BCA', '2019', 8.23, '', 1, '2021-09-21 03:40:41', 0, NULL, 0, NULL, 1),
(8063, 6420, '3', 'Madras University', '', 'BCA', '2020', 82.34, '', 1, '2021-09-21 03:45:09', 0, NULL, 0, NULL, 1),
(8064, 6415, '1', 'state board', '', '', '2014', 65.00, '', 1, '2021-09-21 03:45:19', 0, NULL, 0, NULL, 1),
(8065, 6415, '2', 'state board', '', '', '2016', 55.00, '', 1, '2021-09-21 03:45:41', 0, NULL, 0, NULL, 1),
(8066, 6417, '3', 'hindustan institute of technology and science', '', 'b. tech', '2021', 72.00, '', 1, '2021-09-21 04:31:07', 0, NULL, 0, NULL, 1),
(8067, 6422, '4', 'Anna university ', '', 'MBA ', '2019', 75.00, '', 1, '2021-09-21 04:35:55', 0, NULL, 0, NULL, 1),
(8068, 6418, '4', 'Pondicherry University', '', 'Master of computer Application', '2021', 71.00, '', 1, '2021-09-21 07:30:16', 0, NULL, 0, NULL, 1),
(8069, 6418, '3', 'Thiruvalluvar University', '', 'Bachelor of Computer Application', '2019', 60.00, '', 1, '2021-09-21 07:33:25', 0, NULL, 0, NULL, 1),
(8070, 6413, '3', 'st.joseph college', '', 'bsc computer science', '2021', 70.00, '', 1, '2021-09-21 09:49:41', 0, NULL, 0, NULL, 1),
(8071, 6424, '2', 'state board', '', '', '2014', 69.00, '', 1, '2021-09-22 11:38:15', 0, NULL, 0, NULL, 1),
(8072, 6424, '3', 'indo american college', '', 'b.com', '2017', 65.00, '', 1, '2021-09-22 11:39:04', 0, NULL, 0, NULL, 1),
(8073, 6425, '3', 'madars unviersity ', '', 'b.com', '2021', 75.00, '', 1, '2021-09-22 12:08:03', 0, NULL, 0, NULL, 1),
(8074, 6421, '4', 'Pondicherry University', '', 'Master of computer application', '2021', 65.00, '', 1, '2021-09-22 12:18:36', 0, NULL, 0, NULL, 1),
(8075, 6421, '3', 'Thiruvallur University', '', 'Bachelor of computer application', '2019', 59.00, '', 1, '2021-09-22 12:19:18', 0, NULL, 0, NULL, 1),
(8076, 6426, '4', 'Anna University', '', 'MCA', '2021', 85.00, '', 1, '2021-09-22 12:24:45', 0, NULL, 0, NULL, 1),
(8077, 6427, '3', 'Sri Sairam engineering college ', '', 'B. E', '2020', 74.00, '', 1, '2021-09-22 03:05:04', 0, NULL, 0, NULL, 1),
(8078, 6427, '1', 'holy family convent.hr.sec school ', '', '', '2014', 94.80, '', 1, '2021-09-22 03:52:57', 1, '2021-09-22 03:54:30', 0, NULL, 1),
(8079, 6427, '2', 'holy family convent.hr.sec school', '', '', '2016', 85.00, '', 1, '2021-09-22 03:57:33', 0, NULL, 0, NULL, 1),
(8080, 6410, '3', 'Mar Gregorios College', '', 'Bca', '2021', 67.00, '', 1, '2021-09-22 04:01:39', 0, NULL, 0, NULL, 1),
(8081, 6428, '3', 'Anna university ', '', 'B. Tech', '2020', 70.00, '', 1, '2021-09-22 04:01:51', 0, NULL, 0, NULL, 1),
(8082, 6429, '3', 'Bharathidasan University', '', 'BCA', '2017', 77.50, '', 1, '2021-09-22 06:35:33', 0, NULL, 0, NULL, 1),
(8083, 6430, '2', 'Government higer secondary school ', '', '', '2015', 57.58, '', 1, '2021-09-22 08:28:38', 0, NULL, 0, NULL, 1),
(8084, 6430, '1', 'Government higer secondary school ', '', '', '2013', 62.60, '', 1, '2021-09-22 08:31:04', 0, NULL, 0, NULL, 1),
(8085, 6431, '3', 'Srm University', '', 'B.tech', '2020', 66.60, '', 1, '2021-09-23 11:00:44', 0, NULL, 0, NULL, 1),
(8086, 6431, '2', 'SSLC', '', '', '2016', 72.00, '', 1, '2021-09-23 11:01:06', 0, NULL, 0, NULL, 1),
(8087, 6431, '1', 'State board', '', '', '2014', 83.00, '', 1, '2021-09-23 11:02:06', 0, NULL, 0, NULL, 1),
(8088, 6432, '3', 'Anna University ', '', 'B. Tech (I. T) ', '2017', 6.50, '', 1, '2021-09-23 11:07:41', 0, NULL, 0, NULL, 1),
(8089, 6432, '2', 'State board ', '', 'B. Tech (I. T) ', '2013', 72.00, '', 1, '2021-09-23 11:09:49', 0, NULL, 0, NULL, 1),
(8090, 6432, '1', 'State board ', '', '', '2011', 81.00, '', 1, '2021-09-23 11:10:13', 0, NULL, 0, NULL, 1),
(8091, 6433, '2', 'State board', '', '', '2018', 50.00, '', 1, '2021-09-23 11:17:13', 0, NULL, 0, NULL, 1),
(8092, 6433, '3', 'Madras University', '', 'Bba', '2021', 50.00, '', 1, '2021-09-23 11:17:59', 0, NULL, 0, NULL, 1),
(8093, 6434, '5', 's a polytechnic college', '', 'Diploma in civil engineering ', '2018', 70.00, '', 1, '2021-09-23 11:36:48', 1, '2021-09-23 11:37:48', 0, NULL, 1),
(8094, 6434, '1', 'c.s. central matric higher secondary school', '', '', '2014', 65.00, '', 1, '2021-09-23 11:38:04', 0, NULL, 0, NULL, 1),
(8095, 6435, '5', 'Dote', '', 'Diploma in Mechanical', '2016', 70.00, '', 1, '2021-09-23 12:04:25', 0, NULL, 0, NULL, 1),
(8096, 6438, '5', 'Dote', '', '', '2017', 74.00, '', 1, '2021-09-23 01:04:31', 0, NULL, 0, NULL, 1),
(8097, 6439, '3', 'anna University ', '', 'be', '2020', 70.00, '', 1, '2021-09-23 01:26:41', 0, NULL, 0, NULL, 1),
(8098, 6440, '3', 'Vel tech (Anna University)', '', 'BE', '2019', 65.00, '', 1, '2021-09-23 01:50:13', 1, '2021-09-23 01:51:01', 0, NULL, 1),
(8099, 6440, '5', 'T.S.Srinivasan polytechnic College (DOTE)', '', 'DEEE', '2013', 77.00, '', 1, '2021-09-23 01:52:47', 1, '2021-09-23 01:53:31', 0, NULL, 1),
(8100, 6440, '1', 'Sri Venkateshwara Matriculation Higher Secondary School SSLC  (Matriculati', '', '', '2010', 68.00, '', 1, '2021-09-23 01:54:23', 0, NULL, 0, NULL, 1),
(8101, 6436, '3', 'Pondicherry University', '', 'Bsc computer science', '2020', 7.08, '', 1, '2021-09-23 02:11:43', 0, NULL, 0, NULL, 1),
(8102, 6441, '3', 'Medras University', '', 'BCA', '2022', 83.60, '', 1, '2021-09-23 04:15:39', 0, NULL, 0, NULL, 1),
(8103, 6443, '4', 'Anna University ', '', 'MCA', '2021', 93.00, '', 1, '2021-09-23 04:54:32', 0, NULL, 0, NULL, 1),
(8104, 6444, '3', 'Srm institute of technology ', '', 'Mechanical ', '2019', 68.00, '', 1, '2021-09-23 05:43:52', 0, NULL, 0, NULL, 1),
(8105, 6444, '2', 'St.johns matriculation higher secondary school ', '', '', '2015', 65.00, '', 1, '2021-09-23 05:44:38', 0, NULL, 0, NULL, 1),
(8106, 6444, '1', 'St.johns matriculation higher secondary school', '', '', '2013', 83.00, '', 1, '2021-09-23 05:45:04', 0, NULL, 0, NULL, 1),
(8107, 6437, '1', 'state board', '', '', '2015', 87.00, '', 1, '2021-09-23 07:22:26', 0, NULL, 0, NULL, 1),
(8108, 6437, '2', 'state board', '', '', '2017', 80.00, '', 1, '2021-09-23 07:22:45', 0, NULL, 0, NULL, 1),
(8109, 6437, '3', 'anna university', '', 'b.tech', '2021', 70.00, '', 1, '2021-09-23 07:23:14', 0, NULL, 0, NULL, 1),
(8110, 6445, '3', 'SRM UNIVERSITY', '', 'BCA', '2021', 7.71, '', 1, '2021-09-24 10:29:17', 0, NULL, 0, NULL, 1),
(8111, 6446, '3', 'Alagappa University', '', 'B.sc(IT)', '2020', 68.00, '', 1, '2021-09-24 10:37:41', 0, NULL, 0, NULL, 1),
(8112, 6447, '3', 'Anna University', '', 'BE CSE', '2021', 71.00, '', 1, '2021-09-24 10:42:37', 0, NULL, 0, NULL, 1),
(8113, 6449, '2', 'state board', '', '', '2010', 69.00, '', 1, '2021-09-24 10:58:35', 0, NULL, 0, NULL, 1),
(8114, 6449, '3', 'asan memorial ', '', 'bsc', '2013', 75.00, '', 1, '2021-09-24 10:59:26', 0, NULL, 0, NULL, 1),
(8115, 6448, '3', 'Anna University', '', 'B.e mechanical', '2019', 62.00, '', 1, '2021-09-24 11:26:51', 0, NULL, 0, NULL, 1),
(8116, 6453, '3', 'Madras university', '', 'Bcom', '2021', 62.00, '', 1, '2021-09-25 10:40:46', 0, NULL, 0, NULL, 1),
(8117, 6453, '1', 'State board', '', '', '2016', 75.00, '', 1, '2021-09-25 10:42:11', 0, NULL, 0, NULL, 1),
(8118, 6453, '2', 'State board', '', '', '2018', 71.00, '', 1, '2021-09-25 10:42:27', 0, NULL, 0, NULL, 1),
(8119, 6454, '3', 'Vivekanandha College of engineering for women', '', 'B.E', '2019', 89.00, '', 1, '2021-09-26 09:27:27', 0, NULL, 0, NULL, 1),
(8120, 6455, '4', 'Guru nanak college', '', 'B.com Marketing management', '2020', 70.00, '', 1, '2021-09-27 10:27:50', 0, NULL, 0, NULL, 1),
(8121, 6456, '3', 'St. Ann\'s College of engineering and technology', '', 'Electrical and electronics engineering', '2021', 60.00, '', 1, '2021-09-27 05:17:07', 0, NULL, 0, NULL, 1),
(8122, 6456, '2', 'Narayana junior college', '', '', '2017', 90.00, '', 1, '2021-09-27 05:17:30', 0, NULL, 0, NULL, 1),
(8123, 6456, '1', 'Bhashyam High school, Ap board', '', '', '2015', 77.00, '', 1, '2021-09-27 05:18:00', 0, NULL, 0, NULL, 1),
(8124, 6457, '3', 'G.VENKATASWAMYNAIDUCOLLEGE', '', 'BSC INFORMATION TECHNOLOGY', '2019', 6.50, '', 1, '2021-09-27 05:39:34', 0, NULL, 0, NULL, 1),
(8125, 6457, '1', 'STATE', '', '', '2014', 85.00, '', 1, '2021-09-27 05:39:57', 0, NULL, 0, NULL, 1),
(8126, 6457, '2', 'STATE', '', '', '2016', 68.00, '', 1, '2021-09-27 05:40:15', 0, NULL, 0, NULL, 1),
(8127, 6459, '3', 'Madras University', '', 'B.com ISM', '2019', 65.00, '', 1, '2021-09-27 06:46:19', 0, NULL, 0, NULL, 1),
(8128, 6458, '4', 'Madurai Kamaraj University', '', 'MS (IT&M)', '2006', 75.00, '', 1, '2021-09-27 07:18:24', 0, NULL, 0, NULL, 1),
(8129, 6458, '3', 'Madurai Kamaraj University', '', 'B. com with Computer Application', '2004', 73.00, '', 1, '2021-09-27 07:19:05', 0, NULL, 0, NULL, 1),
(8130, 6460, '1', 'state board', '', '', '2016', 77.00, '', 1, '2021-09-28 12:09:12', 0, NULL, 0, NULL, 1),
(8131, 6460, '2', 'state board', '', '', '2018', 76.00, '', 1, '2021-09-28 12:10:12', 0, NULL, 0, NULL, 1),
(8132, 6460, '3', 'dr .mgr university ', '', 'bca', '2021', 63.00, '', 1, '2021-09-28 12:11:15', 0, NULL, 0, NULL, 1),
(8133, 6461, '3', 'KTU', '', 'Btech', '2019', 6.50, '', 1, '2021-09-28 10:20:17', 0, NULL, 0, NULL, 1),
(8134, 6461, '1', 'ICSE', '', '', '2013', 81.00, '', 1, '2021-09-28 10:21:22', 0, NULL, 0, NULL, 1),
(8135, 6461, '2', 'KERALA STATE BOARD', '', '', '2015', 84.00, '', 1, '2021-09-28 10:22:17', 0, NULL, 0, NULL, 1),
(8136, 6462, '2', 'state board', '', '', '2015', 83.00, '', 1, '2021-09-28 11:24:29', 0, NULL, 0, NULL, 1),
(8137, 6462, '3', 'anna university', '', 'be', '2019', 60.00, '', 1, '2021-09-28 11:25:09', 0, NULL, 0, NULL, 1),
(8138, 6463, '3', 'Pondicherry University', '', 'Bsc computer science', '2019', 57.00, '', 1, '2021-09-28 11:33:15', 0, NULL, 0, NULL, 1),
(8139, 6463, '2', 'State board', '', '', '2015', 67.00, '', 1, '2021-09-28 11:33:57', 0, NULL, 0, NULL, 1),
(8140, 6463, '1', 'Cbse', '', '', '2013', 62.00, '', 1, '2021-09-28 11:34:41', 0, NULL, 0, NULL, 1),
(8141, 6465, '3', 'Mahalaxmi women\'s. College', '', 'B.com', '2021', 65.00, '', 1, '2021-09-28 12:55:53', 0, NULL, 0, NULL, 1),
(8142, 6465, '2', 'Pourur girls HSS', '', '', '2017', 75.00, '', 1, '2021-09-28 12:56:41', 0, NULL, 0, NULL, 1),
(8143, 6466, '3', 'Shri Shankarlal Sundarbai Shasun Jain College for women', '', 'B.Sc Visual communication', '2020', 71.00, '', 1, '2021-09-28 12:56:49', 0, NULL, 0, NULL, 1),
(8144, 6465, '1', 'Iyyappanthangal govt school', '', '', '2015', 65.00, '', 1, '2021-09-28 12:57:29', 0, NULL, 0, NULL, 1),
(8145, 6467, '3', 'University of madras ', '', 'B.A (English literature)', '2018', 69.00, '', 1, '2021-09-28 01:15:07', 0, NULL, 0, NULL, 1),
(8146, 6467, '2', 'Girls HSS', '', '', '2015', 73.00, '', 1, '2021-09-28 01:15:54', 0, NULL, 0, NULL, 1),
(8147, 6467, '1', 'Lourdes girls HSS', '', '', '2013', 75.00, '', 1, '2021-09-28 01:16:36', 0, NULL, 0, NULL, 1),
(8148, 6464, '3', 'bharathidasan university', '', 'bsc.', '2020', 71.00, '', 1, '2021-09-28 01:49:39', 0, NULL, 0, NULL, 1),
(8149, 6464, '1', 'stateboard', '', '', '2015', 80.00, '', 1, '2021-09-28 01:50:55', 0, NULL, 0, NULL, 1),
(8150, 6464, '2', 'stateboard', '', '', '2017', 61.00, '', 1, '2021-09-28 01:51:28', 0, NULL, 0, NULL, 1),
(8151, 6469, '1', 'Sri sampurna vidyalayan hr. Sec school', '', 'Bsc computer science', '2014', 91.00, '', 1, '2021-09-28 03:18:51', 1, '2021-09-28 03:23:45', 0, NULL, 1),
(8152, 6469, '2', 'Aditya vidyashram hr. Sec school', '', '', '2016', 71.00, '', 1, '2021-09-28 03:22:24', 1, '2021-09-28 03:24:46', 0, NULL, 1),
(8153, 6469, '3', 'Pondicherry university', '', 'Bsc computer science', '2019', 60.00, '', 1, '2021-09-28 03:24:19', 0, NULL, 0, NULL, 1),
(8154, 6470, '3', 'Bharathiar University coimbatore', '', 'BBA', '2021', 5.88, '', 1, '2021-09-29 10:44:08', 0, NULL, 0, NULL, 1),
(8155, 6471, '3', 'Madras University', '', 'Bsc', '2020', 70.00, '', 1, '2021-09-29 11:05:21', 0, NULL, 0, NULL, 1),
(8156, 6473, '3', 'University', '', 'B.tech', '2019', 63.00, '', 1, '2021-09-29 03:15:45', 0, NULL, 0, NULL, 1),
(8157, 6473, '2', 'State board', '', '', '2015', 77.40, '', 1, '2021-09-29 03:16:52', 0, NULL, 0, NULL, 1),
(8158, 6473, '1', 'State board', '', '', '2013', 63.00, '', 1, '2021-09-29 03:17:18', 0, NULL, 0, NULL, 1),
(8159, 6475, '4', 'Anna University', '', 'MCA', '2021', 80.00, '', 1, '2021-09-29 04:07:22', 0, NULL, 0, NULL, 1),
(8160, 6478, '3', 'Jeppiaar Engineering College/Anna University', '', 'BE', '2020', 70.00, '', 1, '2021-09-30 11:26:56', 0, NULL, 0, NULL, 1),
(8161, 6479, '3', 'Anna University', '', 'B.e', '2013', 72.00, '', 1, '2021-09-30 12:46:51', 0, NULL, 0, NULL, 1),
(8162, 5155, '3', 'University of Madras', '', 'B.sc chemistry', '2015', 65.00, '', 1, '2021-09-30 12:54:25', 0, NULL, 0, NULL, 1),
(8163, 3043, '4', 'Anna University ', '', 'MBA', '2020', 7.02, '', 1, '2021-09-30 04:17:48', 0, NULL, 0, NULL, 1),
(8164, 3043, '4', 'Anna University ', '', 'MBA', '2020', 7.02, '', 1, '2021-09-30 04:18:13', 0, NULL, 0, NULL, 1),
(8165, 6482, '2', 'Kellett Hr Sec School', '', '', '2013', 41.00, '', 1, '2021-10-04 10:27:02', 0, NULL, 0, NULL, 1),
(8166, 6484, '3', 'L.N.M.u Darbhanga', '', 'B. A', '2020', 64.00, '', 1, '2021-10-04 12:05:47', 0, NULL, 0, NULL, 1),
(8167, 6485, '3', 'DG Vaishanva clg', '', 'B.sc Maths with computer Applications ', '2020', 70.00, '', 1, '2021-10-04 12:34:32', 0, NULL, 0, NULL, 1),
(8168, 6486, '3', 'Anna university', '', 'B.e', '2021', 79.00, '', 1, '2021-10-04 12:36:19', 0, NULL, 0, NULL, 1),
(8169, 6488, '3', 'Madra University ', '', 'Bca', '2017', 60.00, '', 1, '2021-10-04 12:53:39', 0, NULL, 0, NULL, 1),
(8170, 6487, '3', 'Deemed university', '', 'B.com general', '2020', 62.47, '', 1, '2021-10-04 01:24:13', 0, NULL, 0, NULL, 1),
(8171, 6490, '3', 'Sri venkateswaraa college of technology', '', 'Bachelor of engineering ', '2021', 82.00, '', 1, '2021-10-04 02:18:44', 0, NULL, 0, NULL, 1),
(8172, 6490, '2', 'Telc magadalene girls higher secondary school', '', '', '2017', 62.00, '', 1, '2021-10-04 02:19:25', 0, NULL, 0, NULL, 1),
(8173, 6490, '1', 'Joyhill matriculation school', '', '', '2015', 86.00, '', 1, '2021-10-04 02:19:52', 0, NULL, 0, NULL, 1),
(8174, 6492, '3', 'University', '', 'BCA', '2020', 72.00, '', 1, '2021-10-04 02:38:16', 0, NULL, 0, NULL, 1),
(8175, 6493, '3', 'Anna university ', '', 'BE', '2018', 62.00, '', 1, '2021-10-04 03:54:56', 0, NULL, 0, NULL, 1),
(8176, 6494, '1', 'state board', '', '', '2015', 81.00, '', 1, '2021-10-04 04:14:58', 0, NULL, 0, NULL, 1),
(8177, 6494, '2', 'state board', '', '', '2017', 84.00, '', 1, '2021-10-04 04:15:21', 0, NULL, 0, NULL, 1),
(8178, 6494, '3', 'anna university', '', 'b.e.c s e', '2021', 76.00, '', 1, '2021-10-04 04:16:10', 0, NULL, 0, NULL, 1),
(8179, 6496, '3', 'ANNA UNIVERSITY', '', 'B.E', '2020', 6.90, '', 1, '2021-10-04 05:46:41', 0, NULL, 0, NULL, 1),
(8180, 6495, '3', 'dr.PT M.G.R GOVERNMENT ARTS AND SCIENCE COLLEGE', '', 'b.sc c(omputer science)', '2021', 78.50, '', 1, '2021-10-04 06:17:54', 0, NULL, 0, NULL, 1),
(8181, 6499, '2', 'State board', '', '', '2017', 60.00, '', 1, '2021-10-05 12:17:19', 1, '2021-10-05 12:18:53', 0, NULL, 0),
(8182, 6499, '3', 'Siet', '', 'Ba', '2020', 75.00, '', 1, '2021-10-05 12:17:42', 1, '2021-10-05 12:18:02', 0, NULL, 0),
(8183, 6498, '3', 'Madras University', '', 'BCA', '2019', 71.00, '', 1, '2021-10-05 12:17:53', 0, NULL, 0, NULL, 1),
(8184, 6497, '2', 'Bharathidasan ', '', '', '2013', 79.00, '', 1, '2021-10-05 12:18:27', 0, NULL, 0, NULL, 1),
(8185, 6499, '3', 'Siet', '', 'Ba', '2020', 75.00, '', 1, '2021-10-05 12:19:16', 0, NULL, 0, NULL, 1),
(8186, 6497, '3', 'Bharathidasan university ', '', 'BCA', '2013', 79.00, '', 1, '2021-10-05 12:19:29', 0, NULL, 0, NULL, 1),
(8187, 6500, '2', 'state board', '', '', '2012', 60.00, '', 1, '2021-10-05 12:40:42', 0, NULL, 0, NULL, 1),
(8188, 6500, '3', 'Anna university', '', 'btech', '2016', 67.00, '', 1, '2021-10-05 12:41:35', 0, NULL, 0, NULL, 1),
(8189, 6502, '5', 'Central polytechnic college', '', 'Diploma in computer engineering', '2019', 60.00, '', 1, '2021-10-05 04:11:05', 1, '2021-10-05 04:11:20', 0, NULL, 0),
(8190, 6502, '1', 'State board', '', '', '2014', 85.40, '', 1, '2021-10-05 04:12:13', 0, NULL, 0, NULL, 1),
(8191, 6501, '3', 'Jawaharlal Nehru Technological University  Anantapur', '', 'b.tech', '2020', 68.00, '', 1, '2021-10-05 04:12:19', 0, NULL, 0, NULL, 1),
(8192, 6502, '2', 'State board', '', '', '2016', 75.00, '', 1, '2021-10-05 04:12:38', 0, NULL, 0, NULL, 1),
(8193, 6502, '5', 'Central polytechnic college', '', 'Diploma in computer engineering', '2019', 60.00, '', 1, '2021-10-05 04:13:24', 0, NULL, 0, NULL, 1),
(8194, 6501, '2', 'board of intermediate andhra pradesh', '', '', '2016', 61.00, '', 1, '2021-10-05 04:15:11', 0, NULL, 0, NULL, 1),
(8195, 6501, '1', 'board of secondary education andhra pradesh', '', '', '2014', 75.00, '', 1, '2021-10-05 04:16:22', 0, NULL, 0, NULL, 1),
(8196, 6503, '3', 'Jawaharlal Nehru Technological University  Anantapur', '', 'b.tech', '2020', 64.00, '', 1, '2021-10-05 04:22:19', 0, NULL, 0, NULL, 1),
(8197, 6503, '5', 'state board of technical education and training', '', 'civil engineering', '2016', 61.72, '', 1, '2021-10-05 04:24:40', 0, NULL, 0, NULL, 1),
(8198, 6503, '1', 'board of Secondary education   andhra pradesh', '', '', '2013', 72.00, '', 1, '2021-10-05 04:26:02', 0, NULL, 0, NULL, 1),
(8199, 6505, '3', 'Anna University ', '', 'BE', '2021', 7.90, '', 1, '2021-10-05 05:03:23', 0, NULL, 0, NULL, 1),
(8200, 6504, '3', 'Anna University ', '', 'BE', '2021', 78.00, '', 1, '2021-10-05 05:03:39', 0, NULL, 0, NULL, 1),
(8201, 6506, '3', 'S.K.R ENGINEERING COLLEGE', '', 'Information technology ', '2020', 60.00, '', 1, '2021-10-06 09:19:31', 0, NULL, 0, NULL, 1),
(8202, 6507, '3', 'Parishram Institute of technology and Science', '', 'B. E', '2021', 75.00, '', 1, '2021-10-06 10:57:27', 0, NULL, 0, NULL, 1),
(8203, 6508, '3', 'madras university', '', 'b.com', '2019', 70.00, '', 1, '2021-10-06 11:08:40', 0, NULL, 0, NULL, 1),
(8204, 6508, '1', 'chellamal vidhyalaya', '', '', '2013', 80.00, '', 1, '2021-10-06 11:10:33', 1, '2021-10-06 11:13:28', 0, NULL, 1),
(8205, 6509, '5', 'Ssp College ', '', 'Diploma in civil Engineering', '2016', 84.00, '', 1, '2021-10-06 11:12:32', 0, NULL, 0, NULL, 1),
(8206, 6259, '2', 'Pkgg', '', '', '2012', 85.00, '', 1, '2021-10-06 11:13:39', 0, NULL, 0, NULL, 1),
(8207, 6508, '2', 'chellamal vidhyalaya', '', '', '2015', 70.00, '', 1, '2021-10-06 11:14:06', 0, NULL, 0, NULL, 1),
(8208, 6509, '1', 'Government High School ', '', '', '2011', 83.00, '', 1, '2021-10-06 11:14:58', 0, NULL, 0, NULL, 1),
(8209, 6509, '2', 'Government Girls Hr sec School ', '', '', '2013', 70.00, '', 1, '2021-10-06 11:15:28', 0, NULL, 0, NULL, 1),
(8210, 6510, '3', 'Anna university', '', 'BE CIVIL ENGINEERING', '2020', 72.96, '', 1, '2021-10-06 11:58:14', 0, NULL, 0, NULL, 1),
(8211, 6511, '3', 'Jaya College Of Arts and Science', '', 'Bachelor of Computer Application', '2020', 67.00, '', 1, '2021-10-06 01:27:56', 0, NULL, 0, NULL, 1),
(8212, 6491, '4', 'bharathidasan university', '', 'mca', '2020', 85.00, '', 1, '2021-10-06 03:27:17', 0, NULL, 0, NULL, 1),
(8213, 6491, '3', 'bharathidasan university', '', 'bca', '2018', 82.00, '', 1, '2021-10-06 03:27:47', 0, NULL, 0, NULL, 1),
(8214, 6491, '2', 'state board', '', '', '2015', 75.00, '', 1, '2021-10-06 03:28:05', 0, NULL, 0, NULL, 1),
(8215, 6491, '1', 'state board', '', '', '2013', 96.00, '', 1, '2021-10-06 03:28:34', 0, NULL, 0, NULL, 1),
(8216, 6513, '3', 'Madras University', '', 'B.sc microbiology', '2021', 70.50, '', 1, '2021-10-07 10:56:45', 0, NULL, 0, NULL, 1),
(8217, 6514, '3', 'guru nanak college', '', 'bsc computer science', '2020', 7.40, '', 1, '2021-10-07 01:40:58', 0, NULL, 0, NULL, 1),
(8218, 6515, '3', 'Anna University ', '', 'BE', '2017', 65.00, '', 1, '2021-10-07 01:49:59', 0, NULL, 0, NULL, 1),
(8219, 6515, '1', 'State board ', '', '', '2011', 68.00, '', 1, '2021-10-07 01:50:56', 0, NULL, 0, NULL, 1),
(8220, 6515, '2', 'State board ', '', '', '2013', 60.00, '', 1, '2021-10-07 01:51:15', 0, NULL, 0, NULL, 1),
(8221, 6516, '3', 'anna university', '', 'electronics and communication Engineering', '2016', 61.00, '', 1, '2021-10-07 03:56:23', 0, NULL, 0, NULL, 1),
(8222, 6518, '3', 'anna university', '', 'b.tech it', '2020', 6.51, '', 1, '2021-10-07 04:15:04', 0, NULL, 0, NULL, 1),
(8223, 6517, '3', 'Board', '', 'Bsc Biochemistry', '2021', 75.00, '', 1, '2021-10-07 04:16:29', 0, NULL, 0, NULL, 1),
(8224, 6520, '2', 'state board', '', '', '2018', 69.00, '', 1, '2021-10-07 06:22:23', 0, NULL, 0, NULL, 1),
(8225, 6520, '3', 'Bharathidasan university', '', 'bca', '2021', 85.00, '', 1, '2021-10-07 06:23:00', 0, NULL, 0, NULL, 1),
(8226, 6522, '4', 'Bharadhidasan university', '', 'M.Sc', '2020', 75.00, '', 1, '2021-10-08 07:33:19', 1, '2021-10-08 07:33:49', 0, NULL, 1),
(8227, 6523, '3', 'Bharathiar University', '', 'B.Sc,', '2020', 70.00, '', 1, '2021-10-08 10:44:06', 0, NULL, 0, NULL, 1),
(8228, 6524, '1', 'sri vani matriculation higher secondary school', '', '', '2015', 85.00, '', 1, '2021-10-08 11:59:41', 0, NULL, 0, NULL, 1),
(8229, 6524, '2', 'Sri Vani Matriculation Higher Secondary School', '', '', '2017', 80.00, '', 1, '2021-10-08 11:59:55', 0, NULL, 0, NULL, 1),
(8230, 6524, '3', 'misrimal navajee munoth jain engineering college', '', 'btech', '2021', 72.00, '', 1, '2021-10-08 12:00:44', 0, NULL, 0, NULL, 1),
(8231, 6525, '2', 'State', '', '', '2016', 60.00, '', 1, '2021-10-08 12:38:40', 0, NULL, 0, NULL, 1),
(8232, 6525, '4', 'Madras', '', 'Mcom', '2021', 65.00, '', 1, '2021-10-08 12:39:19', 0, NULL, 0, NULL, 1),
(8233, 6527, '2', 'State', '', '', '2016', 70.00, '', 1, '2021-10-08 12:42:44', 0, NULL, 0, NULL, 1),
(8234, 6526, '3', 'University of madras', '', 'B.com', '2019', 70.00, '', 1, '2021-10-08 12:44:19', 0, NULL, 0, NULL, 1),
(8235, 6528, '3', 'madras', '', 'bca', '2018', 62.00, '', 1, '2021-10-08 12:59:40', 0, NULL, 0, NULL, 1),
(8236, 6529, '3', 'Loyola college', '', 'Bsc', '2020', 75.00, '', 1, '2021-10-08 01:26:18', 0, NULL, 0, NULL, 1),
(8237, 6530, '4', 'Bharathidasan University', '', 'MCA', '2019', 74.00, '', 1, '2021-10-08 03:56:28', 0, NULL, 0, NULL, 1),
(8238, 6533, '3', 'JNTUH', '', 'b. pharmacy', '2021', 70.00, '', 1, '2021-10-08 04:16:52', 0, NULL, 0, NULL, 1),
(8239, 6532, '3', 'anna university', '', 'B.E', '2021', 76.20, '', 1, '2021-10-08 04:24:52', 0, NULL, 0, NULL, 1),
(8240, 6532, '2', 'state', '', '', '2017', 80.10, '', 1, '2021-10-08 04:26:12', 0, NULL, 0, NULL, 1),
(8241, 6532, '1', 'state', '', '', '2015', 92.60, '', 1, '2021-10-08 04:26:59', 0, NULL, 0, NULL, 1),
(8242, 6531, '1', 'state board', '', '', '2015', 89.00, '', 1, '2021-10-08 04:42:31', 0, NULL, 0, NULL, 1),
(8243, 6531, '2', 'state board', '', '', '2017', 72.00, '', 1, '2021-10-08 04:43:26', 0, NULL, 0, NULL, 1),
(8244, 6531, '3', 'anna university', '', 'b.e', '2021', 73.00, '', 1, '2021-10-08 04:45:03', 0, NULL, 0, NULL, 1),
(8245, 6534, '3', 'Anna university', '', 'BE electronics and instrumentation engineering', '2021', 75.00, '', 1, '2021-10-08 05:58:56', 0, NULL, 0, NULL, 1),
(8246, 6535, '3', 'crescent institute of Science and technology ', '', 'bachelor of en ', '2020', 66.00, '', 1, '2021-10-09 09:24:13', 0, NULL, 0, NULL, 1),
(8247, 6536, '3', 'Periyar University Salem', '', 'BCA', '2019', 70.00, '', 1, '2021-10-09 10:00:08', 0, NULL, 0, NULL, 1),
(8248, 6537, '3', 'Anna University', '', 'BE', '2017', 7.19, '', 1, '2021-10-09 11:40:20', 0, NULL, 0, NULL, 1),
(8249, 6538, '4', 'Madras university', '', 'ma', '2020', 65.00, '', 1, '2021-10-09 01:16:52', 0, NULL, 0, NULL, 1),
(8250, 6540, '3', 'srm university', '', 'b.com', '2019', 69.59, '', 1, '2021-10-09 03:45:05', 0, NULL, 0, NULL, 1),
(8251, 6541, '3', 'Anna University', '', 'B.E', '2021', 86.00, '', 1, '2021-10-09 03:55:46', 0, NULL, 0, NULL, 1),
(8252, 6542, '3', 'Bharathi dhasan University ', '', 'B.com', '2019', 72.00, '', 1, '2021-10-09 05:39:30', 0, NULL, 0, NULL, 1),
(8253, 6543, '3', 'Anna University', '', 'Mechanical engineering', '2020', 75.00, '', 1, '2021-10-09 06:00:08', 0, NULL, 0, NULL, 1),
(8254, 6545, '3', 'Madras university ', '', 'Bca', '2015', 70.00, '', 1, '2021-10-11 10:24:21', 0, NULL, 0, NULL, 1),
(8255, 6545, '1', 'State board', '', 'Bca', '2010', 58.00, '', 1, '2021-10-11 10:27:01', 0, NULL, 0, NULL, 1),
(8256, 6545, '2', 'State board', '', '', '2012', 51.00, '', 1, '2021-10-11 10:27:54', 0, NULL, 0, NULL, 1),
(8257, 6521, '3', 'Jawahar Engineering College', '', 'Bachelor of Engineering', '2018', 68.00, '', 1, '2021-10-11 12:13:20', 0, NULL, 0, NULL, 1),
(8258, 6548, '3', 'Madras University', '', 'B.com corporate sectsryship', '2021', 82.00, '', 1, '2021-10-12 10:37:50', 0, NULL, 0, NULL, 1),
(8259, 6550, '2', 'state board', '', '', '2018', 79.00, '', 1, '2021-10-13 10:02:47', 0, NULL, 0, NULL, 1),
(8260, 6550, '3', 'autonomous', '', 'bsc', '2021', 76.00, '', 1, '2021-10-13 10:03:33', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8261, 6554, '1', 'State Board', '', '', '2010', 80.00, '', 1, '2021-10-13 11:19:04', 0, NULL, 0, NULL, 1),
(8262, 6554, '2', 'State Board', '', '', '2012', 75.00, '', 1, '2021-10-13 11:19:23', 0, NULL, 0, NULL, 1),
(8263, 6554, '3', 'Madurai Kamaraj University', '', 'B.A English', '2015', 58.00, '', 1, '2021-10-13 11:19:56', 1, '2021-10-13 11:21:21', 0, NULL, 0),
(8264, 6553, '3', 'Madras University', '', 'Bsw', '2021', 70.00, '', 1, '2021-10-13 11:20:35', 0, NULL, 0, NULL, 1),
(8265, 6554, '3', 'The Tamilnadu Dr. Ambedkar Law University', '', 'Bachelor of Law', '2021', 64.00, '', 1, '2021-10-13 11:21:26', 0, NULL, 0, NULL, 1),
(8266, 6555, '3', 'Anna University ', '', 'B. Com', '2020', 74.00, '', 1, '2021-10-13 11:33:50', 0, NULL, 0, NULL, 1),
(8267, 6557, '4', 'Bharthidasan university', '', 'Mba', '2016', 60.00, '', 1, '2021-10-13 11:46:16', 0, NULL, 0, NULL, 1),
(8268, 6556, '1', 'Anna university', '', '', '2021', 60.00, '', 1, '2021-10-13 11:52:47', 0, NULL, 0, NULL, 1),
(8269, 6562, '3', 'Sadakathullah appa college', '', 'Bachelor of English literature', '2021', 72.00, '', 1, '2021-10-13 02:39:25', 0, NULL, 0, NULL, 1),
(8270, 6552, '3', 'anna university', '', 'civil engineering', '2020', 70.00, '', 1, '2021-10-13 08:04:32', 0, NULL, 0, NULL, 1),
(8271, 6563, '3', 'Bharathidasan University ', '', 'BCA', '2016', 74.00, '', 1, '2021-10-14 10:14:57', 0, NULL, 0, NULL, 1),
(8272, 6565, '3', 'Anna University', '', 'B.E', '2016', 55.00, '', 1, '2021-10-15 11:04:55', 0, NULL, 0, NULL, 1),
(8273, 6566, '3', 'Kalaburagi university Gulbarga', '', 'Bachelor in computer application', '2012', 68.00, '', 1, '2021-10-15 12:48:23', 0, NULL, 0, NULL, 1),
(8274, 6567, '3', 'Anna university ', '', 'B.tech ', '2017', 7.50, '', 1, '2021-10-15 02:06:27', 0, NULL, 0, NULL, 1),
(8275, 6564, '3', 'd.B jain College', '', 'Bcom general', '2021', 71.00, '', 1, '2021-10-15 03:10:57', 0, NULL, 0, NULL, 1),
(8276, 6570, '3', 'Periyar University', '', 'BSc Computer Science', '2020', 75.00, '', 1, '2021-10-15 06:02:57', 0, NULL, 0, NULL, 1),
(8277, 6570, '2', 'State board', '', '', '2017', 75.00, '', 1, '2021-10-15 06:03:47', 0, NULL, 0, NULL, 1),
(8278, 6570, '1', 'State board', '', '', '2015', 89.00, '', 1, '2021-10-15 06:04:41', 0, NULL, 0, NULL, 1),
(8279, 6571, '1', 'State', '', '', '2013', 80.00, '', 1, '2021-10-15 11:59:36', 0, NULL, 0, NULL, 1),
(8280, 6571, '5', 'Anna University', '', '', '2017', 65.00, '', 1, '2021-10-16 12:00:10', 0, NULL, 0, NULL, 1),
(8281, 6571, '3', 'Anna University', '', 'BE', '2020', 75.00, '', 1, '2021-10-16 12:00:42', 0, NULL, 0, NULL, 1),
(8282, 6568, '4', 'madras university', '', 'bca', '2021', 76.00, '', 1, '2021-10-16 08:49:55', 1, '2021-10-16 08:55:44', 0, NULL, 1),
(8283, 6568, '2', 'state board', '', '', '2018', 78.00, '', 1, '2021-10-16 08:51:53', 1, '2021-10-16 08:53:55', 0, NULL, 1),
(8284, 6568, '1', 'state board', '', '', '2016', 85.00, '', 1, '2021-10-16 08:52:23', 1, '2021-10-16 08:54:28', 0, NULL, 1),
(8285, 6573, '3', 'Madras University', '', 'B com', '2021', 72.00, '', 1, '2021-10-16 11:48:55', 0, NULL, 0, NULL, 1),
(8286, 6572, '3', 'Justice Basheer Ahmed Sayeed college for women.', '', 'BSc chemistry', '2021', 83.00, '', 1, '2021-10-16 12:01:02', 0, NULL, 0, NULL, 1),
(8287, 6572, '2', 'Shri Venkateshwara higher secondary school', '', 'BSc chemistry', '2018', 85.00, '', 1, '2021-10-16 12:02:38', 0, NULL, 0, NULL, 1),
(8288, 6577, '3', 'St.Joseph college of engineering', '', 'BE.cse', '2021', 69.00, '', 1, '2021-10-16 01:06:27', 0, NULL, 0, NULL, 1),
(8289, 6574, '3', 'Madras university ', '', 'BA English ', '2021', 75.00, '', 1, '2021-10-16 01:14:36', 0, NULL, 0, NULL, 1),
(8290, 6579, '3', 'Madras University', '', 'Ba', '2021', 75.00, '', 1, '2021-10-16 01:42:09', 0, NULL, 0, NULL, 1),
(8291, 6575, '3', 'Madras University', '', 'BA.Economics', '2020', 85.00, '', 1, '2021-10-16 01:55:59', 0, NULL, 0, NULL, 1),
(8292, 6580, '3', 'Madras University', '', 'B com ( genral )', '2020', 70.00, '', 1, '2021-10-16 03:11:00', 0, NULL, 0, NULL, 1),
(8293, 6581, '3', 'University', '', 'B.tech', '2021', 61.50, '', 1, '2021-10-16 04:04:21', 0, NULL, 0, NULL, 1),
(8294, 6582, '1', 'State board', '', '', '2009', 73.00, '', 1, '2021-10-16 05:14:12', 0, NULL, 0, NULL, 1),
(8295, 6582, '2', 'State board', '', '', '2011', 53.00, '', 1, '2021-10-16 05:14:48', 0, NULL, 0, NULL, 1),
(8296, 6582, '3', 'Anna University', '', 'B.e computer science', '2015', 6.80, '', 1, '2021-10-16 05:15:41', 0, NULL, 0, NULL, 1),
(8297, 6578, '4', 'central university of tamilnadu', '', 'mba', '2021', 85.20, '', 1, '2021-10-16 05:44:20', 1, '2021-10-16 05:46:52', 0, NULL, 1),
(8298, 6578, '3', 'pondicherry university', '', 'b.tech', '2018', 75.60, '', 1, '2021-10-16 05:46:42', 0, NULL, 0, NULL, 1),
(8299, 6578, '2', 'tamilnadu stateboard', '', '', '2014', 73.00, '', 1, '2021-10-16 05:48:02', 0, NULL, 0, NULL, 1),
(8300, 6584, '3', 'Swami dayanandha College of arts And Science(bharadhidasan University)', '', 'Bca', '2020', 77.00, '', 1, '2021-10-16 07:03:15', 1, '2021-10-16 07:05:33', 0, NULL, 1),
(8301, 6584, '2', 'Swami dayanandha matriculation higher secondary School (state board)', '', '', '2017', 68.00, '', 1, '2021-10-16 07:04:04', 1, '2021-10-16 07:05:08', 0, NULL, 1),
(8302, 6584, '1', 'Sri Sankara vidhyalaya matriculation higher secondary school (state board)', '', '', '2014', 81.00, '', 1, '2021-10-16 07:06:36', 0, NULL, 0, NULL, 1),
(8303, 6583, '4', 'Anna University', '', 'MBA (HR & OPERATIONS)', '2021', 80.00, '', 1, '2021-10-16 09:16:41', 1, '2021-10-16 09:17:01', 0, NULL, 0),
(8304, 6583, '1', 'State Board', '', '', '2011', 76.00, '', 1, '2021-10-16 09:17:46', 0, NULL, 0, NULL, 1),
(8305, 6583, '2', 'State Board', '', '', '2013', 77.00, '', 1, '2021-10-16 09:18:28', 0, NULL, 0, NULL, 1),
(8306, 6583, '3', 'Anna university', '', 'BE Mechanical', '2017', 64.00, '', 1, '2021-10-16 09:19:02', 0, NULL, 0, NULL, 1),
(8307, 6583, '4', 'Anna university', '', 'MBA (HR & OPERATIONS)', '2021', 80.00, '', 1, '2021-10-16 09:19:53', 0, NULL, 0, NULL, 1),
(8308, 6585, '1', 'State Board', '', '', '2011', 84.00, '', 1, '2021-10-16 09:25:50', 0, NULL, 0, NULL, 1),
(8309, 6585, '2', 'State Board', '', '', '2013', 66.00, '', 1, '2021-10-16 09:26:10', 0, NULL, 0, NULL, 1),
(8310, 6585, '3', 'Anna university', '', 'BE EEE', '2017', 73.00, '', 1, '2021-10-16 09:26:41', 0, NULL, 0, NULL, 1),
(8311, 6585, '4', 'Anna university', '', 'mBA (HR & OPERATIONS)', '2021', 83.00, '', 1, '2021-10-16 09:27:34', 0, NULL, 0, NULL, 1),
(8312, 6586, '1', 'Anna  university ', '', '', '2015', 60.00, '', 1, '2021-10-18 11:00:22', 0, NULL, 0, NULL, 1),
(8313, 6587, '3', 'Madras university', '', 'B. Sc statistics', '2021', 79.86, '', 1, '2021-10-18 11:24:32', 0, NULL, 0, NULL, 1),
(8314, 6588, '3', 'Madras university', '', 'B. Sc Statistics', '2021', 88.00, '', 1, '2021-10-18 11:32:08', 0, NULL, 0, NULL, 1),
(8315, 6589, '4', 'Anna University', '', 'MBA', '2021', 83.00, '', 1, '2021-10-18 11:36:04', 0, NULL, 0, NULL, 1),
(8316, 6589, '3', 'Thiruvallur University', '', 'B.sc.Physics', '2019', 58.00, '', 1, '2021-10-18 11:37:14', 0, NULL, 0, NULL, 1),
(8317, 6590, '4', 'Anna university', '', 'MBA', '2021', 76.00, '', 1, '2021-10-18 11:40:12', 0, NULL, 0, NULL, 1),
(8318, 6590, '3', 'Thiruvalluvar University', '', 'B.sc.Physics', '2019', 62.00, '', 1, '2021-10-18 11:40:42', 0, NULL, 0, NULL, 1),
(8319, 6592, '3', 'Dr.MGR-Janaki College of Arts and Science for women', '', 'BCA', '2021', 85.00, '', 1, '2021-10-18 12:07:27', 0, NULL, 0, NULL, 1),
(8320, 6569, '3', 'Anna University', '', 'B. Tech', '2021', 71.00, '', 1, '2021-10-18 12:11:27', 0, NULL, 0, NULL, 1),
(8321, 6591, '3', 'Medrass University', '', 'B.A.TTM', '2018', 65.00, '', 1, '2021-10-18 12:16:59', 0, NULL, 0, NULL, 1),
(8322, 6593, '5', 'Anna University', '', 'Eee', '2020', 68.00, '', 1, '2021-10-18 12:17:47', 0, NULL, 0, NULL, 1),
(8323, 6597, '4', 'University of Madras ', '', 'MA( HRM)', '2017', 60.00, '', 1, '2021-10-18 01:26:03', 0, NULL, 0, NULL, 1),
(8324, 6595, '3', 'madras university', '', 'ba', '2021', 90.00, '', 1, '2021-10-18 03:21:03', 0, NULL, 0, NULL, 1),
(8325, 6598, '4', 'university of madras', '', ' mba financial management', '2021', 7.50, '', 1, '2021-10-18 04:03:01', 0, NULL, 0, NULL, 1),
(8326, 6598, '4', 'university of madras', '', ' mba financial management', '2021', 7.50, '', 1, '2021-10-18 04:03:01', 1, '2021-10-18 04:03:09', 0, NULL, 0),
(8327, 6598, '4', 'university of madras', '', ' mba financial management', '2021', 7.50, '', 1, '2021-10-18 04:03:01', 1, '2021-10-18 04:03:12', 0, NULL, 0),
(8328, 6598, '3', 'deemed university', '', 'btech ece', '2017', 7.10, '', 1, '2021-10-18 04:03:46', 0, NULL, 0, NULL, 1),
(8329, 6598, '2', 'matriculation', '', '', '2013', 82.50, '', 1, '2021-10-18 04:04:14', 0, NULL, 0, NULL, 1),
(8330, 6598, '1', 'matriculation ', '', '', '2011', 90.00, '', 1, '2021-10-18 04:04:59', 0, NULL, 0, NULL, 1),
(8331, 6599, '4', 'Mohammed sathak college ', '', 'Msc computer science ', '2020', 74.00, '', 1, '2021-10-18 04:21:58', 0, NULL, 0, NULL, 1),
(8332, 6600, '4', 'Mohamed sathak college of arts and sciences', '', 'MCA', '2021', 86.00, '', 1, '2021-10-18 04:22:30', 0, NULL, 0, NULL, 1),
(8333, 6600, '3', 'Jamal Mohamed college', '', 'BSC (CS)', '2019', 72.00, '', 1, '2021-10-18 04:22:55', 0, NULL, 0, NULL, 1),
(8334, 6599, '3', 'Justice basheer ahmed sayeed college ', '', 'Bsc computer science ', '2018', 69.00, '', 1, '2021-10-18 04:23:02', 0, NULL, 0, NULL, 1),
(8335, 6600, '2', 'State Board of Tamil Nadu', '', '', '2016', 70.16, '', 1, '2021-10-18 04:23:18', 0, NULL, 0, NULL, 1),
(8336, 6599, '2', 'Kings school', '', '', '2015', 72.00, '', 1, '2021-10-18 04:23:38', 0, NULL, 0, NULL, 1),
(8337, 6600, '1', 'State Board of Tamil Nadu', '', '', '2014', 78.16, '', 1, '2021-10-18 04:23:50', 0, NULL, 0, NULL, 1),
(8338, 6599, '1', 'Kings school', '', '', '2013', 81.00, '', 1, '2021-10-18 04:24:33', 0, NULL, 0, NULL, 1),
(8339, 6602, '4', 'Deemed university', '', 'Master of business administration', '2021', 80.00, '', 1, '2021-10-18 06:08:47', 0, NULL, 0, NULL, 1),
(8340, 6602, '3', 'Madras university', '', 'Bachelor of commerce', '2019', 70.00, '', 1, '2021-10-18 06:09:17', 0, NULL, 0, NULL, 1),
(8341, 6602, '2', 'CBSE board', '', '', '2016', 70.00, '', 1, '2021-10-18 06:09:37', 0, NULL, 0, NULL, 1),
(8342, 6602, '1', 'CBSE board', '', '', '2014', 80.00, '', 1, '2021-10-18 06:09:58', 0, NULL, 0, NULL, 1),
(8343, 6603, '3', 'Madras University', '', 'B co', '2018', 81.00, '', 1, '2021-10-19 11:30:33', 0, NULL, 0, NULL, 1),
(8344, 6607, '3', 'Anna university ', '', 'B.e civil', '2021', 60.00, '', 1, '2021-10-19 11:36:43', 0, NULL, 0, NULL, 1),
(8345, 6605, '3', 'DRBCCC hindu college', '', 'B.com general', '2021', 78.00, '', 1, '2021-10-19 11:43:12', 0, NULL, 0, NULL, 1),
(8346, 6605, '1', 'Dadar\'s hr second school', '', '', '2016', 72.60, '', 1, '2021-10-19 11:45:10', 0, NULL, 0, NULL, 1),
(8347, 6611, '1', 'state board', '', 'b.tech', '2015', 81.00, '', 1, '2021-10-20 07:28:06', 1, '2021-10-20 07:29:22', 0, NULL, 0),
(8348, 6611, '1', 'state board', '', '', '2015', 82.00, '', 1, '2021-10-20 07:29:58', 0, NULL, 0, NULL, 1),
(8349, 6611, '2', 'state board', '', '', '2017', 78.00, '', 1, '2021-10-20 07:30:17', 0, NULL, 0, NULL, 1),
(8350, 6611, '3', 'anna university', '', 'b.tech', '2021', 70.00, '', 1, '2021-10-20 07:30:52', 0, NULL, 0, NULL, 1),
(8351, 6612, '1', 'state board', '', '', '2015', 92.00, '', 1, '2021-10-20 07:37:19', 0, NULL, 0, NULL, 1),
(8352, 6612, '2', 'state board', '', '', '2017', 90.00, '', 1, '2021-10-20 07:37:45', 0, NULL, 0, NULL, 1),
(8353, 6612, '3', 'anna university', '', 'b.e', '2021', 72.00, '', 1, '2021-10-20 07:38:18', 0, NULL, 0, NULL, 1),
(8354, 6613, '1', 'state board', '', '', '2014', 75.00, '', 1, '2021-10-20 08:51:19', 0, NULL, 0, NULL, 1),
(8355, 6613, '2', 'state board', '', '', '2016', 65.00, '', 1, '2021-10-20 08:51:54', 0, NULL, 0, NULL, 1),
(8356, 6613, '3', 'anna university', '', 'b-e', '2020', 70.00, '', 1, '2021-10-20 08:53:28', 0, NULL, 0, NULL, 1),
(8357, 6614, '4', 'Madras University ', '', 'MCA', '2020', 80.00, '', 1, '2021-10-20 10:26:57', 0, NULL, 0, NULL, 1),
(8358, 6614, '3', 'Madras university ', '', 'B. Sc Computer science ', '2016', 72.00, '', 1, '2021-10-20 10:27:45', 0, NULL, 0, NULL, 1),
(8359, 6614, '2', 'State Board ', '', '', '2013', 77.00, '', 1, '2021-10-20 10:28:12', 0, NULL, 0, NULL, 1),
(8360, 6614, '1', 'State Board ', '', '', '2011', 92.00, '', 1, '2021-10-20 10:28:40', 0, NULL, 0, NULL, 1),
(8361, 6615, '3', 'anna university', '', 'be', '2015', 69.00, '', 1, '2021-10-20 11:07:13', 0, NULL, 0, NULL, 1),
(8362, 6616, '3', 'Madras University', '', 'B.com', '2018', 50.00, '', 1, '2021-10-20 11:40:13', 0, NULL, 0, NULL, 1),
(8363, 6617, '3', 'Bharathidasan university, trichy', '', 'Bsc IT', '2019', 66.90, '', 1, '2021-10-20 12:04:53', 0, NULL, 0, NULL, 1),
(8364, 6618, '3', 'University', '', 'BE', '2021', 75.00, '', 1, '2021-10-20 12:45:12', 0, NULL, 0, NULL, 1),
(8365, 6620, '4', 'Pondicherry university', '', 'Mba', '2021', 76.00, '', 1, '2021-10-20 12:59:55', 0, NULL, 0, NULL, 1),
(8366, 6621, '4', 'Gandhigram rural University Dindigul', '', 'MBA', '2021', 64.00, '', 1, '2021-10-20 01:24:11', 0, NULL, 0, NULL, 1),
(8367, 6622, '3', 'Jbas college', '', 'Bcom(CS)', '2018', 70.00, '', 1, '2021-10-20 01:31:50', 0, NULL, 0, NULL, 1),
(8368, 6622, '4', 'Mop vaishnav college', '', 'MA(HRM)', '2020', 75.00, '', 1, '2021-10-20 01:32:32', 0, NULL, 0, NULL, 1),
(8369, 6623, '3', 'BARATHIYAR UNIVERSITY', '', 'BSC computer science and application', '2021', 60.00, '', 1, '2021-10-20 02:18:46', 0, NULL, 0, NULL, 1),
(8370, 6624, '1', 'Singaram Pillai Matriculation Higher Secondary school', '', '', '2013', 75.00, '', 1, '2021-10-20 02:42:41', 0, NULL, 0, NULL, 1),
(8371, 6624, '2', 'KBJG Matric Higher Secondary school', '', '', '2015', 58.00, '', 1, '2021-10-20 02:43:11', 0, NULL, 0, NULL, 1),
(8372, 6624, '3', 'S.K.R ENGINEERING COLLEGE', '', 'B.Tech in Information Technology ', '2020', 60.00, '', 1, '2021-10-20 02:43:55', 0, NULL, 0, NULL, 1),
(8373, 6604, '3', 'Anna university', '', 'B.E', '2021', 75.00, '', 1, '2021-10-20 04:25:37', 0, NULL, 0, NULL, 1),
(8374, 6628, '3', 'Anna university', '', 'BE civil', '2021', 70.00, '', 1, '2021-10-20 05:44:23', 0, NULL, 0, NULL, 1),
(8375, 6629, '3', 'Alagappa University', '', 'Bachelor of commerce', '2022', 50.00, '', 1, '2021-10-21 09:50:45', 0, NULL, 0, NULL, 1),
(8376, 6630, '5', 'Anna University', '', 'Diploma computer engineering', '2019', 85.00, '', 1, '2021-10-21 10:21:46', 0, NULL, 0, NULL, 1),
(8377, 6631, '5', 'Anna university', '', 'Plastic engineering', '2018', 68.00, '', 1, '2021-10-21 11:30:36', 0, NULL, 0, NULL, 1),
(8378, 6632, '3', 'Dg vaishnav college', '', 'Bba', '2019', 67.00, '', 1, '2021-10-21 12:00:06', 0, NULL, 0, NULL, 1),
(8379, 6633, '3', 'Srm University ', '', 'Bsc hotel management ', '2021', 60.00, '', 1, '2021-10-21 12:04:39', 0, NULL, 0, NULL, 1),
(8380, 6634, '3', 'Madras university ', '', 'B. C. A', '2016', 40.00, '', 1, '2021-10-21 12:24:45', 0, NULL, 0, NULL, 1),
(8381, 6634, '1', 'State boad ', '', 'B. C. A', '2010', 40.00, '', 1, '2021-10-21 12:28:35', 1, '2021-10-21 12:30:07', 0, NULL, 0),
(8382, 6634, '2', 'State board ', '', '', '2013', 38.00, '', 1, '2021-10-21 12:29:20', 0, NULL, 0, NULL, 1),
(8383, 6634, '1', 'State board ', '', '', '2011', 42.00, '', 1, '2021-10-21 12:31:12', 0, NULL, 0, NULL, 1),
(8384, 6635, '3', 'Anna university', '', 'BE', '2016', 65.60, '', 1, '2021-10-21 12:34:17', 0, NULL, 0, NULL, 1),
(8385, 6637, '4', 'Vikrama simhapuri University', '', 'MBA', '2019', 70.00, '', 1, '2021-10-21 04:06:54', 0, NULL, 0, NULL, 1),
(8386, 6638, '3', 'Madras University', '', 'BCA', '2021', 73.00, '', 1, '2021-10-21 04:15:23', 0, NULL, 0, NULL, 1),
(8387, 6640, '3', 'Anna university', '', 'B.E', '2021', 75.00, '', 1, '2021-10-21 06:32:11', 0, NULL, 0, NULL, 1),
(8388, 6625, '3', 'Madras University', '', 'Bachelor of computer science', '2018', 69.00, '', 1, '2021-10-21 09:56:35', 0, NULL, 0, NULL, 1),
(8389, 6625, '4', 'Anna University', '', 'MBA', '2020', 72.00, '', 1, '2021-10-21 09:57:18', 0, NULL, 0, NULL, 1),
(8390, 6641, '2', 'Madras university', '', '', '2021', 73.00, '', 1, '2021-10-21 09:58:23', 0, NULL, 0, NULL, 1),
(8391, 6644, '4', 'Madras University', '', 'MA.Development Management\'s', '2020', 65.00, '', 1, '2021-10-22 10:48:26', 0, NULL, 0, NULL, 1),
(8392, 6644, '3', 'Madras University', '', 'Bachelor of Social Work', '2018', 75.00, '', 1, '2021-10-22 10:48:57', 0, NULL, 0, NULL, 1),
(8393, 6642, '3', 'Madras university', '', 'B.a ', '2021', 71.00, '', 1, '2021-10-22 10:49:46', 0, NULL, 0, NULL, 1),
(8394, 6645, '3', 'Madras university', '', 'Bsc viscom', '2014', 62.00, '', 1, '2021-10-22 11:00:35', 0, NULL, 0, NULL, 1),
(8395, 6647, '3', 'Loyola College ', '', 'B.com ', '2020', 50.00, '', 1, '2021-10-22 11:07:39', 0, NULL, 0, NULL, 1),
(8396, 6648, '3', 'university of madras', '', 'b.com', '2021', 80.00, '', 1, '2021-10-22 11:38:25', 0, NULL, 0, NULL, 1),
(8397, 6651, '4', 'Anna university', '', 'MBA HR', '2020', 74.00, '', 1, '2021-10-22 12:50:05', 0, NULL, 0, NULL, 1),
(8398, 6650, '3', 'loyola College ', '', 'b.com', '2013', 52.00, '', 1, '2021-10-22 12:53:40', 0, NULL, 0, NULL, 1),
(8399, 6652, '4', 'JNTUA', '', 'MBA(FINANCE & HR)', '2021', 85.00, '', 1, '2021-10-22 01:24:54', 0, NULL, 0, NULL, 1),
(8400, 6653, '4', 'chettinad academy of research and education ', '', 'masters in science ', '2021', 7.40, '', 1, '2021-10-22 02:49:46', 0, NULL, 0, NULL, 1),
(8401, 6653, '3', 'university of madras ', '', 'bachelor of social work ', '2018', 50.00, '', 1, '2021-10-22 02:50:17', 0, NULL, 0, NULL, 1),
(8402, 6649, '4', 'Bharathidasan University', '', 'MBA(HR)', '2021', 66.50, '', 1, '2021-10-22 03:36:06', 0, NULL, 0, NULL, 1),
(8403, 6654, '3', 'Madras University', '', 'B.com', '2019', 55.00, '', 1, '2021-10-22 05:00:00', 0, NULL, 0, NULL, 1),
(8404, 6655, '3', 'Jaya college of arts and science', '', 'B com corporate securityship', '2019', 52.00, '', 1, '2021-10-23 06:24:34', 0, NULL, 0, NULL, 1),
(8405, 6656, '4', 'Vels University ', '', 'MBA-INTEGRATED ', '2021', 85.00, '', 1, '2021-10-23 11:33:35', 0, NULL, 0, NULL, 1),
(8406, 6657, '4', 'University of madras', '', 'Bca', '2021', 78.89, '', 1, '2021-10-23 12:41:07', 0, NULL, 0, NULL, 1),
(8407, 6657, '2', 'Tamilnadu State board', '', '', '2018', 68.75, '', 1, '2021-10-23 12:41:57', 0, NULL, 0, NULL, 1),
(8408, 6657, '1', 'Tamilnadu State Board', '', '', '2016', 73.00, '', 1, '2021-10-23 12:43:12', 0, NULL, 0, NULL, 1),
(8409, 6660, '4', 'Sri Chandrasekharendra Saraswathi Viswa Maha Vidyalaya ', '', 'MBA ', '2021', 72.00, '', 1, '2021-10-23 07:01:55', 1, '2021-10-23 07:02:20', 0, NULL, 0),
(8410, 6660, '1', 'State Board ', '', '', '2014', 83.00, '', 1, '2021-10-23 07:02:49', 0, NULL, 0, NULL, 1),
(8411, 6660, '2', 'State', '', '', '2016', 76.00, '', 1, '2021-10-23 07:03:05', 0, NULL, 0, NULL, 1),
(8412, 6660, '3', 'Madras University ', '', 'Bsc Computer science ', '2019', 72.00, '', 1, '2021-10-23 07:03:35', 0, NULL, 0, NULL, 1),
(8413, 6660, '4', 'Sri Chandrasekharendra Saraswathi Viswa Maha Vidyalaya ', '', 'MBA ', '2021', 71.00, '', 1, '2021-10-23 07:04:07', 0, NULL, 0, NULL, 1),
(8414, 0, '3', 'Anna University', '', 'B.E', '2020', 70.00, '', 1, '2021-10-24 11:13:08', 1, '2021-10-29 10:39:23', 0, NULL, 0),
(8415, 6626, '1', 'state board', '', '', '2016', 72.00, '', 1, '2021-10-24 05:33:04', 0, NULL, 0, NULL, 1),
(8416, 6626, '2', 'state board', '', '', '2018', 64.00, '', 1, '2021-10-24 05:33:48', 0, NULL, 0, NULL, 1),
(8417, 6626, '3', 'anna university', '', 'bca', '2021', 64.00, '', 1, '2021-10-24 05:34:55', 0, NULL, 0, NULL, 1),
(8418, 6662, '4', 'University of madras', '', 'M.A', '2019', 77.00, '', 1, '2021-10-25 10:07:36', 0, NULL, 0, NULL, 1),
(8419, 6664, '3', 'Thiruvalluvar university', '', 'BCA', '2020', 75.00, '', 1, '2021-10-25 01:12:05', 0, NULL, 0, NULL, 1),
(8420, 6658, '3', 'Madras University', '', 'Bsc Computer science', '2021', 88.00, '', 1, '2021-10-26 10:39:34', 0, NULL, 0, NULL, 1),
(8421, 6666, '4', 'Rajalakshmi school of business ', '', 'MBA (pgdm) finance and Marketing ', '2019', 60.00, '', 1, '2021-10-26 10:52:59', 0, NULL, 0, NULL, 1),
(8422, 6667, '4', 'anna unviersity', '', 'mba', '2020', 70.00, '', 1, '2021-10-26 11:08:47', 0, NULL, 0, NULL, 1),
(8423, 6668, '3', 'Madras university ', '', 'B. Com', '2015', 67.00, '', 1, '2021-10-26 11:26:04', 0, NULL, 0, NULL, 1),
(8424, 6670, '3', 'University', '', 'B.E', '2021', 77.50, '', 1, '2021-10-26 11:49:41', 1, '2021-10-26 11:50:18', 0, NULL, 0),
(8425, 6670, '3', 'Anna university', '', 'B.E', '2021', 77.50, '', 1, '2021-10-26 11:50:57', 0, NULL, 0, NULL, 1),
(8426, 6669, '3', 'Deemeed University', '', 'BBA (financial management)', '2018', 63.00, '', 1, '2021-10-26 11:51:11', 0, NULL, 0, NULL, 1),
(8427, 6671, '3', 'Anna university ', '', 'Be', '2021', 7.50, '', 1, '2021-10-26 11:53:16', 0, NULL, 0, NULL, 1),
(8428, 6672, '3', 'Bharathidhasan university', '', 'B. A literature', '2021', 55.00, '', 1, '2021-10-26 12:08:05', 0, NULL, 0, NULL, 1),
(8429, 6674, '3', 'Dr.MGR Educational Research And Institute', '', 'B.Com(General)', '2021', 75.00, '', 1, '2021-10-26 08:56:48', 0, NULL, 0, NULL, 1),
(8430, 6675, '3', 'Anna University', '', 'B.Tech', '2015', 67.00, '', 1, '2021-10-27 06:31:51', 0, NULL, 0, NULL, 1),
(8431, 6676, '3', 'MADRAS UNIVERSITY', '', 'B.COM', '2021', 82.00, '', 1, '2021-10-27 10:29:56', 0, NULL, 0, NULL, 1),
(8432, 6677, '3', 'SRM Institute of science and technology', '', 'B.tech', '2020', 70.00, '', 1, '2021-10-27 11:38:04', 0, NULL, 0, NULL, 1),
(8433, 6679, '3', 'Anna university ', '', 'bE', '2020', 7.86, '', 1, '2021-10-27 01:04:38', 0, NULL, 0, NULL, 1),
(8434, 6679, '2', 'Grhsc', '', '', '2015', 64.00, '', 1, '2021-10-27 01:05:16', 0, NULL, 0, NULL, 1),
(8435, 6679, '1', 'State board ', '', '', '2013', 77.00, '', 1, '2021-10-27 01:05:39', 0, NULL, 0, NULL, 1),
(8436, 6678, '5', 'polytechnic', '', 'dme', '2017', 63.00, '', 1, '2021-10-27 01:17:43', 0, NULL, 0, NULL, 1),
(8437, 6680, '3', 'Anna university ', '', 'BE', '2017', 73.00, '', 1, '2021-10-27 01:39:05', 0, NULL, 0, NULL, 1),
(8438, 6684, '3', 'Madras university', '', 'BBA', '2019', 75.00, '', 1, '2021-10-28 12:47:57', 0, NULL, 0, NULL, 1),
(8439, 6685, '4', 'Madras University', '', 'Master of commerce', '2020', 80.00, '', 1, '2021-10-28 01:07:06', 0, NULL, 0, NULL, 1),
(8440, 6687, '2', 'Tamilnadu Stateboard', '', '', '2014', 49.00, '', 1, '2021-10-28 01:21:55', 0, NULL, 0, NULL, 1),
(8441, 6688, '3', 'Autonomous', '', 'B.sc mathematics', '2021', 85.00, '', 1, '2021-10-28 03:42:23', 0, NULL, 0, NULL, 1),
(8442, 6689, '5', 'Pet polytechnic college', '', 'D. ECE', '2016', 88.40, '', 1, '2021-10-29 10:41:12', 0, NULL, 0, NULL, 1),
(8443, 6689, '1', 'Central higher secondary school', '', 'd. eCE', '2008', 75.00, '', 1, '2021-10-29 10:43:07', 0, NULL, 0, NULL, 1),
(8444, 6690, '3', 'Madras universe', '', 'B.a', '2021', 65.00, '', 1, '2021-10-29 12:15:44', 0, NULL, 0, NULL, 1),
(8445, 6682, '3', 'Anna University ', '', 'B.Tech', '2014', 6.30, '', 1, '2021-10-29 12:27:39', 0, NULL, 0, NULL, 1),
(8446, 6691, '4', 'university', '', 'mba ', '2020', 80.00, '', 1, '2021-10-29 03:53:45', 0, NULL, 0, NULL, 1),
(8447, 6691, '3', 'university', '', 'bba', '2018', 60.00, '', 1, '2021-10-29 03:54:57', 1, '2021-10-29 03:57:00', 0, NULL, 1),
(8448, 6691, '2', 'board', '', '', '2015', 55.00, '', 1, '2021-10-29 03:55:29', 0, NULL, 0, NULL, 1),
(8449, 6691, '1', 'board', '', '', '2013', 67.00, '', 1, '2021-10-29 03:56:19', 0, NULL, 0, NULL, 1),
(8450, 6693, '2', 'tamil nadu', '', '', '2015', 91.00, '', 1, '2021-10-29 04:18:16', 0, NULL, 0, NULL, 1),
(8451, 6693, '1', 'tamil nadu', '', '', '2017', 79.00, '', 1, '2021-10-29 04:18:36', 0, NULL, 0, NULL, 1),
(8452, 6693, '3', 'annan university', '', 'batchelor of engineering', '2021', 7.72, '', 1, '2021-10-29 04:19:12', 0, NULL, 0, NULL, 1),
(8453, 6692, '3', 'University of madras ', '', 'B.sc computer science ', '2020', 76.00, '', 1, '2021-10-29 04:31:57', 0, NULL, 0, NULL, 1),
(8454, 6692, '2', 'Tamil nadu  Board of higher secondary Education ', '', '', '2017', 66.00, '', 1, '2021-10-29 04:35:12', 0, NULL, 0, NULL, 1),
(8455, 6692, '1', 'Tamil Nadu Board Of Higher Secondary Education ', '', '', '2015', 75.00, '', 1, '2021-10-29 04:36:56', 0, NULL, 0, NULL, 1),
(8456, 6695, '3', 'Madrasa University', '', 'B.com cs', '2021', 78.00, '', 1, '2021-10-30 12:08:27', 0, NULL, 0, NULL, 1),
(8457, 6694, '3', 'Madras University', '', 'B.com', '2021', 80.00, '', 1, '2021-10-30 12:17:49', 0, NULL, 0, NULL, 1),
(8458, 6697, '3', 'University of Madras', '', 'B.com', '2017', 72.00, '', 1, '2021-10-30 12:52:18', 0, NULL, 0, NULL, 1),
(8459, 6696, '4', 'Anna University', '', 'B.e', '2019', 7.20, '', 1, '2021-10-30 01:09:45', 0, NULL, 0, NULL, 1),
(8460, 6698, '4', 'Loyola College-PULC', '', 'MBA-HRM', '2021', 8.00, '', 1, '2021-10-30 01:17:29', 0, NULL, 0, NULL, 1),
(8461, 6698, '4', 'Loyola College-PULC', '', 'MBA-HRM', '2021', 8.00, '', 1, '2021-10-30 01:19:15', 1, '2021-10-30 01:19:25', 0, NULL, 0),
(8462, 6701, '1', 'State board', '', '', '2006', 80.00, '', 1, '2021-11-01 12:33:11', 0, NULL, 0, NULL, 1),
(8463, 1682, '1', 'State', '', '', '2003', 100.00, '', 1, '2021-11-01 01:55:44', 0, NULL, 0, NULL, 1),
(8464, 6703, '4', 'Anna University', '', 'M. B. A', '2022', 76.00, '', 1, '2021-11-01 03:42:46', 0, NULL, 0, NULL, 1),
(8465, 6705, '4', 'Vit Business School', '', 'Mba', '2021', 76.00, '', 1, '2021-11-02 12:57:47', 0, NULL, 0, NULL, 1),
(8466, 6705, '3', 'Srm University', '', 'B.com', '2019', 70.00, '', 1, '2021-11-02 12:59:13', 0, NULL, 0, NULL, 1),
(8467, 6705, '1', 'Spartan mat.hr. sec. School', '', '', '2016', 72.00, '', 1, '2021-11-02 01:00:29', 0, NULL, 0, NULL, 1),
(8468, 6705, '2', 'Spartan mat hr sec school', '', '', '2014', 74.00, '', 1, '2021-11-02 01:01:13', 0, NULL, 0, NULL, 1),
(8469, 6708, '3', 'Anna university', '', 'B.E computer science', '2020', 6.50, '', 1, '2021-11-02 05:20:58', 0, NULL, 0, NULL, 1),
(8470, 6706, '3', 'thiruvalluvar university', '', 'bachelor of business administration', '2019', 64.00, '', 1, '2021-11-02 05:22:19', 0, NULL, 0, NULL, 1),
(8471, 6710, '4', 'University of madras', '', 'M.Sc', '2020', 82.00, '', 1, '2021-11-03 02:17:25', 0, NULL, 0, NULL, 1),
(8472, 6712, '3', 'anna university', '', 'b.tech it', '2018', 67.00, '', 1, '2021-11-03 04:54:46', 0, NULL, 0, NULL, 1),
(8473, 6712, '2', 'vidyaa vikas', '', '', '2014', 80.00, '', 1, '2021-11-03 04:55:19', 0, NULL, 0, NULL, 1),
(8474, 6712, '1', 'prince mat hr sec school', '', '', '2012', 80.00, '', 1, '2021-11-03 04:56:03', 0, NULL, 0, NULL, 1),
(8475, 6713, '3', 'University of Madras', '', 'B.Sc', '2020', 66.60, '', 1, '2021-11-05 01:20:25', 0, NULL, 0, NULL, 1),
(8476, 6714, '3', 'anna university', '', 'mechanical engineering', '2016', 5.85, '', 1, '2021-11-06 12:31:38', 0, NULL, 0, NULL, 1),
(8477, 6686, '4', 'Alagapa University', '', 'MBA', '2021', 76.00, '', 1, '2021-11-06 05:05:55', 0, NULL, 0, NULL, 1),
(8478, 6686, '3', 'Madurai Kamaraj University', '', 'B.sc', '2019', 68.00, '', 1, '2021-11-06 05:06:49', 0, NULL, 0, NULL, 1),
(8479, 6686, '2', 'HSC', '', '', '2016', 72.00, '', 1, '2021-11-06 05:07:25', 0, NULL, 0, NULL, 1),
(8480, 6686, '1', 'SSLC', '', '', '2014', 89.00, '', 1, '2021-11-06 05:07:49', 0, NULL, 0, NULL, 1),
(8481, 6715, '4', 'SRM institute of science and technology', '', 'MBA- HR', '2021', 8.88, '', 1, '2021-11-06 05:31:26', 0, NULL, 0, NULL, 1),
(8482, 6718, '4', 'Anna University', '', 'BE', '2019', 50.00, '', 1, '2021-11-07 09:05:10', 0, NULL, 0, NULL, 1),
(8483, 6720, '3', 'Madras university', '', 'B. Com (Cs) ', '2019', 76.00, '', 1, '2021-11-08 10:35:59', 0, NULL, 0, NULL, 1),
(8484, 6722, '3', 'University of madras', '', 'BCA', '2015', 82.00, '', 1, '2021-11-08 10:50:30', 0, NULL, 0, NULL, 1),
(8485, 6723, '4', 'Alagappa University', '', 'Master of Business Administration', '2020', 65.00, '', 1, '2021-11-08 10:52:42', 0, NULL, 0, NULL, 1),
(8486, 6721, '3', 'madras university', '', 'b. com', '2019', 70.00, '', 1, '2021-11-08 10:54:24', 0, NULL, 0, NULL, 1),
(8487, 6665, '3', 'Madras University', '', 'B.com', '2021', 65.00, '', 1, '2021-11-08 11:22:01', 0, NULL, 0, NULL, 1),
(8488, 6726, '3', 'Jbas', '', 'Bsc statistics ', '2020', 74.00, '', 1, '2021-11-08 11:35:37', 0, NULL, 0, NULL, 1),
(8489, 6724, '3', 'Thiruvallvaur university ', '', 'BCA', '2021', 82.00, '', 1, '2021-11-08 11:36:55', 0, NULL, 0, NULL, 1),
(8490, 6727, '3', 'Anna university', '', 'BE. CSE', '2021', 74.00, '', 1, '2021-11-08 11:49:35', 0, NULL, 0, NULL, 1),
(8491, 6727, '1', 'Tamilnadu state board', '', '', '2015', 74.00, '', 1, '2021-11-08 11:51:25', 0, NULL, 0, NULL, 1),
(8492, 6727, '2', 'Tamilnadu state board', '', '', '2017', 63.00, '', 1, '2021-11-08 11:52:00', 0, NULL, 0, NULL, 1),
(8493, 6729, '3', 'madras university', '', 'bachelor of commerce ', '2020', 54.00, '', 1, '2021-11-08 12:06:12', 0, NULL, 0, NULL, 1),
(8494, 6729, '2', 'ahobila matriculation school ', '', '', '2015', 67.00, '', 1, '2021-11-08 12:08:47', 0, NULL, 0, NULL, 1),
(8495, 6729, '1', 'jghv school ', '', '', '2013', 76.00, '', 1, '2021-11-08 12:09:47', 0, NULL, 0, NULL, 1),
(8496, 6730, '3', 'Annauniversity', '', 'BE(ECE) ', '2018', 70.00, '', 1, '2021-11-08 12:14:03', 0, NULL, 0, NULL, 1),
(8497, 6709, '3', 'srm ihm', '', 'b.sc hotel management', '2015', 71.00, '', 1, '2021-11-08 02:44:01', 0, NULL, 0, NULL, 1),
(8498, 6709, '1', 'santhome hr sec school', '', '', '2010', 66.00, '', 1, '2021-11-08 02:44:47', 0, NULL, 0, NULL, 1),
(8499, 6711, '3', 'Madras University', '', 'BCA', '2021', 80.00, '', 1, '2021-11-08 02:52:33', 0, NULL, 0, NULL, 1),
(8500, 6736, '3', 'anna university', '', 'b.tech information technology', '2021', 7.54, '', 1, '2021-11-08 02:53:57', 0, NULL, 0, NULL, 1),
(8501, 6732, '3', 'Sri venkateshwara University', '', 'B.com', '2018', 72.00, '', 1, '2021-11-08 03:00:16', 0, NULL, 0, NULL, 1),
(8502, 6737, '3', 'Christ University, Bangalore', '', 'BBA', '2016', 65.00, '', 1, '2021-11-08 03:42:52', 0, NULL, 0, NULL, 1),
(8503, 6738, '3', 'The New Collage', '', 'BCA', '2019', 70.00, '', 1, '2021-11-08 03:47:26', 0, NULL, 0, NULL, 1),
(8504, 6739, '1', 'State board', '', '', '2013', 89.60, '', 1, '2021-11-08 04:45:52', 0, NULL, 0, NULL, 1),
(8505, 6739, '2', 'State board', '', '', '2015', 77.30, '', 1, '2021-11-08 04:46:15', 0, NULL, 0, NULL, 1),
(8506, 6739, '3', 'Anna university', '', 'BE(EEE)', '2019', 75.70, '', 1, '2021-11-08 04:46:55', 1, '2021-11-08 04:47:29', 0, NULL, 0),
(8507, 6739, '3', 'K S R Institute for Engineering and Technology', '', 'BE(EEE)', '2019', 75.70, '', 1, '2021-11-08 04:48:22', 0, NULL, 0, NULL, 1),
(8508, 6739, '4', 'K S R College of Technology', '', 'MBA', '2021', 93.20, '', 1, '2021-11-08 04:48:53', 0, NULL, 0, NULL, 1),
(8509, 6733, '3', 'GKM College of Engineering and Technology', '', 'B.E Biomedical engineering', '2021', 76.00, '', 1, '2021-11-08 05:10:49', 0, NULL, 0, NULL, 1),
(8510, 6740, '4', 'university', '', 'mba', '2020', 86.00, '', 1, '2021-11-08 06:44:44', 0, NULL, 0, NULL, 1),
(8511, 6735, '4', 'university', '', 'mba', '2020', 73.00, '', 1, '2021-11-08 06:51:58', 0, NULL, 0, NULL, 1),
(8512, 6734, '1', 'state board', '', '', '2016', 81.00, '', 1, '2021-11-08 10:26:08', 0, NULL, 0, NULL, 1),
(8513, 6734, '2', 'state board', '', '', '2018', 69.00, '', 1, '2021-11-08 10:26:29', 0, NULL, 0, NULL, 1),
(8514, 6734, '3', 'bharathidasan university', '', 'b.sc', '2021', 75.70, '', 1, '2021-11-08 10:27:22', 0, NULL, 0, NULL, 1),
(8515, 6742, '3', 'srm institute of science and technology', '', 'b.tech', '2020', 65.00, '', 1, '2021-11-09 11:19:41', 0, NULL, 0, NULL, 1),
(8516, 6743, '4', 'College of engineering(Anna University), Guindy.', '', 'Msc IT', '2020', 6.90, '', 1, '2021-11-09 12:58:49', 0, NULL, 0, NULL, 1),
(8517, 6744, '3', 'Anna University', '', 'BE - CSE', '2016', 63.00, '', 1, '2021-11-09 01:41:08', 0, NULL, 0, NULL, 1),
(8518, 6745, '3', 'University', '', 'BBA', '2021', 85.00, '', 1, '2021-11-09 04:57:25', 0, NULL, 0, NULL, 1),
(8519, 6747, '3', 'Madras university', '', 'B COM', '2021', 65.00, '', 1, '2021-11-10 12:30:05', 0, NULL, 0, NULL, 1),
(8520, 6748, '1', 'State board ', '', '', '2014', 53.00, '', 1, '2021-11-10 02:48:18', 0, NULL, 0, NULL, 1),
(8521, 6750, '3', 'Dr.Mgr janaki college of arts and science for women ', '', 'B com ', '2021', 60.00, '', 1, '2021-11-12 01:01:59', 0, NULL, 0, NULL, 1),
(8522, 6751, '3', 'Queen Mary\'s college', '', 'B.sc computer science', '2021', 83.44, '', 1, '2021-11-12 01:02:32', 0, NULL, 0, NULL, 1),
(8523, 6752, '3', 'University of madras', '', 'Bcom', '2021', 91.00, '', 1, '2021-11-12 01:06:40', 0, NULL, 0, NULL, 1),
(8524, 6749, '4', 'Sathyabama Institute of science and technology information', '', 'mba', '2021', 7.71, '', 1, '2021-11-12 01:11:58', 0, NULL, 0, NULL, 1),
(8525, 6753, '4', 'Anna University ', '', 'MBA', '2021', 94.70, '', 1, '2021-11-12 01:13:22', 0, NULL, 0, NULL, 1),
(8526, 6753, '3', 'Anna University ', '', 'BE', '2018', 84.50, '', 1, '2021-11-12 01:13:51', 0, NULL, 0, NULL, 1),
(8527, 6753, '2', 'Kamaraj Matriculation Higher Secondary School ', '', '', '2014', 91.42, '', 1, '2021-11-12 01:14:32', 0, NULL, 0, NULL, 1),
(8528, 6753, '1', 'Kamaraj Matriculation Higher Secondary School ', '', '', '2012', 96.00, '', 1, '2021-11-12 01:15:03', 0, NULL, 0, NULL, 1),
(8529, 6754, '1', 'Madras university', '', '', '2011', 65.00, '', 1, '2021-11-12 01:21:35', 0, NULL, 0, NULL, 1),
(8530, 6754, '2', 'Matriculation ', '', '', '2008', 76.00, '', 1, '2021-11-12 01:24:47', 0, NULL, 0, NULL, 1),
(8531, 6754, '3', 'Madras university', '', 'Bca', '2011', 65.00, '', 1, '2021-11-12 01:25:28', 0, NULL, 0, NULL, 1),
(8532, 6749, '3', 'Karpagam Academy of Higher Education', '', 'b.com', '2019', 60.00, '', 1, '2021-11-12 01:29:39', 0, NULL, 0, NULL, 1),
(8533, 6749, '2', 'S.D.EADEN MATRIC.HR.SEC.SCHOOL', '', '', '2016', 50.00, '', 1, '2021-11-12 01:40:43', 0, NULL, 0, NULL, 1),
(8534, 6749, '1', 'AKT Academy Matriculation Higher Secondary School', '', '', '2014', 52.00, '', 1, '2021-11-12 01:41:49', 0, NULL, 0, NULL, 1),
(8535, 6755, '2', 'Anna University', '', '', '2016', 90.00, '', 1, '2021-11-12 02:25:51', 0, NULL, 0, NULL, 1),
(8536, 6756, '3', 'St. Joshep Collage of arts and science,Kovur ,Chennai', '', 'Bsc Physics With Computer Application', '2021', 75.00, '', 1, '2021-11-12 07:06:25', 0, NULL, 0, NULL, 1),
(8537, 6757, '3', 'Madras university', '', 'B.Com', '2021', 75.00, '', 1, '2021-11-13 10:17:05', 0, NULL, 0, NULL, 1),
(8538, 6758, '3', 'crescent university', '', 'bca data science', '2021', 74.00, '', 1, '2021-11-13 12:36:02', 0, NULL, 0, NULL, 1),
(8539, 6759, '4', 'Madras university', '', 'M.com', '2020', 70.00, '', 1, '2021-11-13 01:05:56', 0, NULL, 0, NULL, 1),
(8540, 6759, '4', 'Madras university', '', 'M.com', '2020', 70.00, '', 1, '2021-11-13 01:06:36', 0, NULL, 0, NULL, 1),
(8541, 6759, '4', 'Madras university', '', 'M com', '2020', 70.00, '', 1, '2021-11-13 01:07:35', 0, NULL, 0, NULL, 1),
(8542, 6761, '4', 'Annamalai University', '', 'HR ', '2020', 68.00, '', 1, '2021-11-14 11:23:28', 0, NULL, 0, NULL, 1),
(8543, 6760, '3', 'Stella Maris College', '', 'B.com', '2021', 71.50, '', 1, '2021-11-14 12:17:29', 0, NULL, 0, NULL, 1),
(8544, 6762, '3', 'Madras University', '', 'B.com ', '2018', 65.00, '', 1, '2021-11-14 12:18:26', 0, NULL, 0, NULL, 1),
(8545, 6763, '3', 'Saveetha Engg college', '', '', '2019', 65.00, '', 1, '2021-11-14 01:00:49', 0, NULL, 0, NULL, 1),
(8546, 6764, '4', 'easwari eng college', '', 'mba', '2021', 9.05, '', 1, '2021-11-14 01:09:01', 0, NULL, 0, NULL, 1),
(8547, 6764, '3', 'jeppiaar eng college', '', 'b.tech', '2018', 67.50, '', 1, '2021-11-14 01:09:21', 0, NULL, 0, NULL, 1),
(8548, 6764, '2', 'sdav', '', '', '2014', 80.00, '', 1, '2021-11-14 01:09:39', 1, '2021-11-14 01:10:12', 0, NULL, 1),
(8549, 6764, '1', 'new prince', '', '', '2012', 86.00, '', 1, '2021-11-14 01:09:58', 0, NULL, 0, NULL, 1),
(8550, 6766, '3', 'Jaya Engineering college', '', 'B.tech ', '2021', 77.70, '', 1, '2021-11-14 01:13:39', 0, NULL, 0, NULL, 1),
(8551, 6766, '2', 'Stars model matriculation higher secondary school', '', '', '2017', 80.10, '', 1, '2021-11-14 01:14:59', 0, NULL, 0, NULL, 1),
(8552, 6766, '1', 'Voc vidyalaya matriculation higher secondary school', '', '', '2015', 81.10, '', 1, '2021-11-14 01:15:24', 0, NULL, 0, NULL, 1),
(8553, 6765, '3', 'Madras university', '', 'B.com', '2020', 65.00, '', 1, '2021-11-14 01:30:19', 0, NULL, 0, NULL, 1),
(8554, 6768, '3', 'Alpha arts and science College', '', 'BCA', '2021', 70.00, '', 1, '2021-11-14 03:08:12', 0, NULL, 0, NULL, 1),
(8555, 6768, '2', 'State board', '', '', '2018', 55.00, '', 1, '2021-11-14 03:08:57', 0, NULL, 0, NULL, 1),
(8556, 6768, '1', 'State Board', '', '', '2016', 74.00, '', 1, '2021-11-14 03:09:26', 0, NULL, 0, NULL, 1),
(8557, 6769, '4', 'Anna University', '', 'MBA [HR with SYSTEMS]', '2020', 90.00, '', 1, '2021-11-14 03:21:02', 0, NULL, 0, NULL, 1),
(8558, 6769, '3', 'Madras University', '', 'B.COM [GENERAL]', '2018', 92.00, '', 1, '2021-11-14 03:22:59', 0, NULL, 0, NULL, 1),
(8559, 6771, '3', 'Anna University', '', 'B.E(CSE)', '2018', 66.00, '', 1, '2021-11-14 04:50:19', 1, '2021-11-14 04:50:53', 0, NULL, 1),
(8560, 6772, '3', 'University of Madras', '', 'Bachelor of business administration', '2021', 80.00, '', 1, '2021-11-14 05:36:51', 0, NULL, 0, NULL, 1),
(8561, 6770, '3', 'University ', '', 'Ba English ', '2021', 60.00, '', 1, '2021-11-15 10:09:17', 0, NULL, 0, NULL, 1),
(8562, 6770, '2', 'Board', '', '', '2018', 56.00, '', 1, '2021-11-15 10:11:03', 0, NULL, 0, NULL, 1),
(8563, 6770, '1', 'Board ', '', '', '2016', 88.00, '', 1, '2021-11-15 10:12:26', 0, NULL, 0, NULL, 1),
(8564, 6773, '4', 'Anna university', '', 'MBA', '2021', 75.00, '', 1, '2021-11-15 10:38:39', 0, NULL, 0, NULL, 1),
(8565, 6773, '3', 'Madras university', '', 'BCA', '2019', 63.00, '', 1, '2021-11-15 10:40:43', 0, NULL, 0, NULL, 1),
(8566, 6774, '2', 'State Board  ', '', '', '2012', 67.00, '', 1, '2021-11-15 10:53:26', 0, NULL, 0, NULL, 1),
(8567, 6774, '3', 'Anna university ', '', 'Be civil', '2017', 57.00, '', 1, '2021-11-15 10:53:58', 0, NULL, 0, NULL, 1),
(8568, 6776, '3', 'Madras university', '', 'b.com', '2018', 65.00, '', 1, '2021-11-15 11:11:34', 0, NULL, 0, NULL, 1),
(8569, 6775, '3', 'Madras university', '', 'bcom', '2018', 68.00, '', 1, '2021-11-15 11:15:56', 0, NULL, 0, NULL, 1),
(8570, 6777, '3', 'Madras university ', '', 'B. Com(ism)', '2020', 60.00, '', 1, '2021-11-15 12:46:24', 0, NULL, 0, NULL, 1),
(8571, 6779, '3', 'Medras University', '', 'Bsc mathematics', '2021', 82.00, '', 1, '2021-11-15 01:34:21', 0, NULL, 0, NULL, 1),
(8572, 6782, '3', 'Anna university', '', 'BE', '2018', 78.00, '', 1, '2021-11-15 04:33:00', 0, NULL, 0, NULL, 1),
(8573, 6784, '3', 'Anna university', '', 'B.tech/IT', '2021', 7.50, '', 1, '2021-11-15 07:31:23', 0, NULL, 0, NULL, 1),
(8574, 6784, '2', 'State board', '', '', '2017', 59.33, '', 1, '2021-11-15 07:34:04', 0, NULL, 0, NULL, 1),
(8575, 6784, '1', 'State board', '', '', '2015', 75.40, '', 1, '2021-11-15 07:35:12', 0, NULL, 0, NULL, 1),
(8576, 6785, '5', 'Sri chakara Maritime', '', 'Marine rating ', '2014', 80.00, '', 1, '2021-11-16 10:46:42', 0, NULL, 0, NULL, 1),
(8577, 6786, '4', 'Madras University', '', 'MBA HR and finance', '2021', 75.00, '', 1, '2021-11-16 10:51:34', 0, NULL, 0, NULL, 1),
(8578, 6789, '3', 'Madras University', '', 'BCA', '2016', 62.00, '', 1, '2021-11-16 11:15:45', 0, NULL, 0, NULL, 1),
(8579, 6788, '2', 'Govt.Hr.Sec.school ennore', '', '', '2014', 72.00, '', 1, '2021-11-16 11:20:14', 0, NULL, 0, NULL, 1),
(8580, 6790, '4', 'Madras University', '', 'MBA', '2021', 6.87, '', 1, '2021-11-16 11:46:15', 0, NULL, 0, NULL, 1),
(8581, 6790, '3', 'Anna university', '', 'BE', '2018', 6.29, '', 1, '2021-11-16 11:47:05', 0, NULL, 0, NULL, 1),
(8582, 6790, '2', 'TN Board', '', '', '2014', 69.25, '', 1, '2021-11-16 11:48:01', 0, NULL, 0, NULL, 1),
(8583, 6790, '1', 'TN Board', '', '', '2012', 87.40, '', 1, '2021-11-16 11:48:31', 0, NULL, 0, NULL, 1),
(8584, 6791, '4', 'Madras University', '', 'MA HISTORY', '2021', 63.00, '', 1, '2021-11-16 12:20:02', 0, NULL, 0, NULL, 1),
(8585, 6794, '3', 'Meenakshi Sundararajan engineering college', '', 'BE mechanical', '2021', 79.50, '', 1, '2021-11-16 02:12:23', 0, NULL, 0, NULL, 1),
(8586, 6794, '1', 'RPC matric HR sec school', '', '', '2017', 91.80, '', 1, '2021-11-16 02:12:55', 0, NULL, 0, NULL, 1),
(8587, 6780, '4', 'Anna university', '', 'MBA', '2019', 65.00, '', 1, '2021-11-16 02:17:22', 0, NULL, 0, NULL, 1),
(8588, 6792, '3', 'Indian school of science and management', '', 'MBA', '2022', 77.00, '', 1, '2021-11-16 02:38:20', 0, NULL, 0, NULL, 1),
(8589, 6797, '4', 'JAWAHARLAL NEHRU TECHNOLOGICAL UNIVERSITY KAKINADA ', '', 'Master of Business Administration', '2015', 70.00, '', 1, '2021-11-16 02:46:49', 0, NULL, 0, NULL, 1),
(8590, 6797, '3', 'ANDHRA UNIVERSITY', '', 'B. Com (Computer Applications) ', '2013', 7.60, '', 1, '2021-11-16 02:48:04', 0, NULL, 0, NULL, 1),
(8591, 6793, '3', 'Gitam University Business Management Vishakhapatnam', '', 'B.com', '2020', 68.00, '', 1, '2021-11-16 03:14:53', 0, NULL, 0, NULL, 1),
(8592, 6800, '4', 'Indian school of science and management', '', 'Mba hr', '2022', 77.00, '', 1, '2021-11-16 05:07:19', 0, NULL, 0, NULL, 1),
(8593, 6801, '1', 'board of secondary education', '', '', '2007', 62.00, '', 1, '2021-11-16 10:17:12', 0, NULL, 0, NULL, 1),
(8594, 6801, '2', 'board of intermediate', '', '', '2010', 52.00, '', 1, '2021-11-16 10:17:42', 0, NULL, 0, NULL, 1),
(8595, 6801, '5', 'sbtet', '', 'cse', '2010', 70.00, '', 1, '2021-11-16 10:17:59', 0, NULL, 0, NULL, 1),
(8596, 6801, '3', 'jntuk', '', 'cse', '2016', 60.00, '', 1, '2021-11-16 10:18:18', 0, NULL, 0, NULL, 1),
(8597, 6802, '3', 'Hindustan college of arts and science', '', 'Bca', '2020', 75.00, '', 1, '2021-11-17 10:57:03', 0, NULL, 0, NULL, 1),
(8598, 6803, '3', 'Madras University', '', 'Bcom', '2020', 70.00, '', 1, '2021-11-17 11:18:17', 0, NULL, 0, NULL, 1),
(8599, 6805, '2', 'St. Annie\'s girls her. Sec school', '', '', '2014', 78.00, '', 1, '2021-11-17 12:50:27', 0, NULL, 0, NULL, 1),
(8600, 6804, '3', 'Madras University ', '', 'BCA', '2014', 68.00, '', 1, '2021-11-17 12:50:56', 0, NULL, 0, NULL, 1),
(8601, 6806, '3', 'University of madras', '', 'B.com (Computer Application)', '2017', 54.00, '', 1, '2021-11-17 01:33:12', 0, NULL, 0, NULL, 1),
(8602, 6807, '3', 'Periyar University', '', 'BSC CHEMISTRY', '2019', 60.00, '', 1, '2021-11-17 01:41:34', 0, NULL, 0, NULL, 1),
(8603, 6809, '4', 'Anna university', '', 'MBA', '2022', 70.00, '', 1, '2021-11-18 11:14:39', 0, NULL, 0, NULL, 1),
(8604, 6809, '3', 'Anna university', '', 'BE', '2018', 61.00, '', 1, '2021-11-18 11:15:11', 0, NULL, 0, NULL, 1),
(8605, 6809, '2', 'State board', '', '', '2014', 84.00, '', 1, '2021-11-18 11:15:38', 0, NULL, 0, NULL, 1),
(8606, 6809, '1', 'State board', '', '', '2012', 88.00, '', 1, '2021-11-18 11:16:02', 0, NULL, 0, NULL, 1),
(8607, 6811, '4', 'Anna University ', '', 'Mca', '2020', 8.20, '', 1, '2021-11-18 01:19:32', 1, '2021-11-18 01:22:10', 0, NULL, 0),
(8608, 6811, '1', 'TAMIL NADU STATE BOARD', '', '', '2013', 64.00, '', 1, '2021-11-18 01:20:41', 1, '2021-11-18 01:21:46', 0, NULL, 1),
(8609, 6811, '2', 'TAMIL NADU STATE BOARD', '', '', '2015', 55.00, '', 1, '2021-11-18 01:22:02', 0, NULL, 0, NULL, 1),
(8610, 6811, '3', 'Thiruvalluvar University', '', 'Bca', '2018', 70.00, '', 1, '2021-11-18 01:23:40', 1, '2021-11-18 01:23:50', 0, NULL, 1),
(8611, 6811, '4', 'Anna university ', '', 'Mca', '2020', 82.00, '', 1, '2021-11-18 01:24:10', 0, NULL, 0, NULL, 1),
(8612, 6813, '3', 'Anna university', '', 'BE Automobile Engineering', '2018', 6.25, '', 1, '2021-11-18 01:26:12', 0, NULL, 0, NULL, 1),
(8613, 6810, '3', 'Bharathidasan University', '', 'B.com', '2021', 69.00, '', 1, '2021-11-18 01:33:20', 0, NULL, 0, NULL, 1),
(8614, 6814, '3', 'Barathidhasan University', '', 'B.com', '2021', 69.00, '', 1, '2021-11-18 01:47:45', 0, NULL, 0, NULL, 1),
(8615, 6816, '4', 'Anna university ', '', 'MCA', '2019', 74.00, '', 1, '2021-11-18 01:50:32', 0, NULL, 0, NULL, 1),
(8616, 6817, '3', 'Bharathidasan University', '', 'B com', '2021', 69.00, '', 1, '2021-11-18 02:04:20', 0, NULL, 0, NULL, 1),
(8617, 6818, '4', 'Anna University', '', 'MBA', '2020', 75.00, '', 1, '2021-11-18 04:24:20', 0, NULL, 0, NULL, 1),
(8618, 6819, '4', 'Bharathidhasan', '', 'MBA', '2018', 72.20, '', 1, '2021-11-18 04:55:28', 0, NULL, 0, NULL, 1),
(8619, 6819, '3', 'Bharathidhasan', '', 'BCA', '2016', 70.20, '', 1, '2021-11-18 04:56:03', 0, NULL, 0, NULL, 1),
(8620, 6818, '3', 'Bharathidasan University', '', 'BBA', '2017', 75.00, '', 1, '2021-11-18 06:05:21', 0, NULL, 0, NULL, 1),
(8621, 6818, '2', 'State Board', '', '', '2014', 78.00, '', 1, '2021-11-18 06:05:59', 0, NULL, 0, NULL, 1),
(8622, 6821, '4', 'Annamalai university ', '', 'MBA ', '2021', 78.00, '', 1, '2021-11-18 08:36:06', 0, NULL, 0, NULL, 1),
(8623, 6822, '3', 'Madras University', '', 'B.sc, mathematics', '2012', 62.00, '', 1, '2021-11-19 11:26:16', 0, NULL, 0, NULL, 1),
(8624, 6823, '4', 'B. S. Abdur Rahman Crescent Institute Of Science And Technology', '', 'MBA', '2021', 65.00, '', 1, '2021-11-19 01:01:36', 0, NULL, 0, NULL, 1),
(8625, 6823, '3', 'Jamal Mohamed College', '', 'B.com', '2019', 64.00, '', 1, '2021-11-19 01:02:46', 0, NULL, 0, NULL, 1),
(8626, 6824, '3', 'Centurion University of technology and management', '', 'B.Tech', '2017', 68.10, '', 1, '2021-11-19 02:40:06', 0, NULL, 0, NULL, 1),
(8627, 6826, '4', 'University of madras', '', 'MBA', '2021', 60.00, '', 1, '2021-11-19 03:07:59', 0, NULL, 0, NULL, 1),
(8628, 6827, '3', 'anna university', '', 'b.e', '2021', 70.00, '', 1, '2021-11-19 04:42:09', 1, '2021-11-19 04:43:20', 0, NULL, 0),
(8629, 6827, '2', 'tamilnadu board of education', '', '', '2016', 74.00, '', 1, '2021-11-19 04:44:12', 0, NULL, 0, NULL, 1),
(8630, 6827, '3', 'vghv', '', 'bvhbv', '2016', 44.00, '', 1, '2021-11-19 04:44:58', 1, '2021-11-19 04:45:13', 0, NULL, 0),
(8631, 6827, '3', 'anna university', '', 'b.e mechatronics engineering', '2021', 70.00, '', 1, '2021-11-19 04:45:58', 0, NULL, 0, NULL, 1),
(8632, 6827, '1', 'tami nadu board of education', '', '', '2014', 84.00, '', 1, '2021-11-19 04:46:29', 0, NULL, 0, NULL, 1),
(8633, 6829, '4', 'Madras University ', '', 'MBA', '2018', 65.00, '', 1, '2021-11-19 05:59:34', 0, NULL, 0, NULL, 1),
(8634, 6830, '1', 'P.S.Senior secondary school', '', '', '2011', 78.00, '', 1, '2021-11-20 02:25:59', 0, NULL, 0, NULL, 1),
(8635, 6830, '2', 'Sir sivaswami kalalaya higher secondary school', '', '', '2013', 91.00, '', 1, '2021-11-20 02:27:00', 0, NULL, 0, NULL, 1),
(8636, 6830, '3', 'Easwari engineering college', '', 'B.E.Mechanical engineering', '2017', 69.50, '', 1, '2021-11-20 02:27:50', 0, NULL, 0, NULL, 1),
(8637, 6830, '4', 'VIT university', '', 'MBA', '2020', 80.70, '', 1, '2021-11-20 02:28:28', 0, NULL, 0, NULL, 1),
(8638, 6835, '5', 'TPEVR GOVT POLYTECHNIC COLLEGE', '', 'DCE', '2016', 70.00, '', 1, '2021-11-22 10:48:25', 0, NULL, 0, NULL, 1),
(8639, 6836, '1', 'state board', '', '', '2008', 86.00, '', 1, '2021-11-22 11:21:19', 0, NULL, 0, NULL, 1),
(8640, 6836, '2', 'state board', '', '', '2010', 85.00, '', 1, '2021-11-22 11:21:48', 0, NULL, 0, NULL, 1),
(8641, 6836, '3', ' madras university', '', 'b.com ', '2013', 65.00, '', 1, '2021-11-22 11:23:01', 0, NULL, 0, NULL, 1),
(8642, 6836, '4', 'alagappa university', '', 'mba', '2018', 60.00, '', 1, '2021-11-22 11:25:00', 0, NULL, 0, NULL, 1),
(8643, 6837, '3', 'Osmania university', '', 'B. Com', '2018', 60.00, '', 1, '2021-11-22 11:51:39', 0, NULL, 0, NULL, 1),
(8644, 6839, '3', 'Madras University', '', 'B.com(CA)', '2021', 60.00, '', 1, '2021-11-22 12:20:02', 0, NULL, 0, NULL, 1),
(8645, 6840, '3', 'Thiruvalluvar University', '', 'B.sc.,Computer Science', '2020', 70.00, '', 1, '2021-11-22 12:41:05', 0, NULL, 0, NULL, 1),
(8646, 6841, '3', 'Anna University', '', 'BE', '2018', 82.00, '', 1, '2021-11-22 04:32:14', 0, NULL, 0, NULL, 1),
(8647, 6842, '4', 'Bharathiar University ', '', 'MBA ', '2020', 64.50, '', 1, '2021-11-23 09:26:03', 0, NULL, 0, NULL, 1),
(8648, 6844, '3', 'SRM kattankulathur', '', 'B.com ', '2019', 61.00, '', 1, '2021-11-23 02:26:04', 0, NULL, 0, NULL, 1),
(8649, 6844, '2', 'Chettinad vidhyashram', '', '', '2014', 58.00, '', 1, '2021-11-23 02:27:21', 0, NULL, 0, NULL, 1),
(8650, 6845, '3', 'Osmania University', '', 'B.com computers', '2020', 55.00, '', 1, '2021-11-23 02:48:53', 0, NULL, 0, NULL, 1),
(8651, 6847, '3', 'anna university', '', 'be cs', '2015', 62.00, '', 1, '2021-11-23 03:05:02', 0, NULL, 0, NULL, 1),
(8652, 6849, '2', 'intermediate', '', '', '2019', 66.00, '', 1, '2021-11-23 04:20:29', 0, NULL, 0, NULL, 1),
(8653, 6846, '3', 'Osmania University', '', 'Bsc', '2018', 60.00, '', 1, '2021-11-23 04:27:43', 0, NULL, 0, NULL, 1),
(8654, 6850, '3', 'Loyola Institute  of technology ', '', 'b.e', '2019', 60.00, '', 1, '2021-11-24 10:26:34', 0, NULL, 0, NULL, 1),
(8655, 6851, '3', 'Bharathi dasan University', '', 'B.COM COMPUTER APPLICATIONS', '2020', 66.00, '', 1, '2021-11-24 10:32:15', 0, NULL, 0, NULL, 1),
(8656, 6852, '4', 'Pondicherry University', '', 'MCA', '2021', 70.00, '', 1, '2021-11-24 11:23:27', 0, NULL, 0, NULL, 1),
(8657, 6852, '3', 'Thiruvallur university', '', 'BCA', '2019', 57.00, '', 1, '2021-11-24 11:24:14', 0, NULL, 0, NULL, 1),
(8658, 6852, '2', 'State board', '', '', '2016', 60.00, '', 1, '2021-11-24 11:24:46', 0, NULL, 0, NULL, 1),
(8659, 6853, '3', 'db. jain college', '', 'bca', '2021', 70.00, '', 1, '2021-11-24 11:44:50', 0, NULL, 0, NULL, 1),
(8660, 6857, '3', 'Kakatiya University', '', 'B.SC', '2017', 55.00, '', 1, '2021-11-24 01:14:16', 0, NULL, 0, NULL, 1),
(8661, 6856, '3', 'Anna university', '', 'BE', '2016', 72.00, '', 1, '2021-11-24 02:57:22', 0, NULL, 0, NULL, 1),
(8662, 6858, '3', 'Bhakthavatchalam Memorial college for Women', '', 'B.com ', '2018', 75.00, '', 1, '2021-11-24 04:11:24', 0, NULL, 0, NULL, 1),
(8663, 6858, '2', 'Our lady of Velanganni.Matric.Hr.Sec.School', '', '', '2015', 89.00, '', 1, '2021-11-24 04:12:49', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8664, 6858, '1', 'Our lady of Velanganni Matric.Hr.Sec.School', '', '', '2014', 94.00, '', 1, '2021-11-24 04:13:40', 0, NULL, 0, NULL, 1),
(8665, 6859, '2', 'Osmania University', '', '', '2015', 6.30, '', 1, '2021-11-24 04:24:18', 0, NULL, 0, NULL, 1),
(8666, 6860, '4', 'Nagpur', '', 'MBA', '2021', 79.00, '', 1, '2021-11-24 06:26:10', 0, NULL, 0, NULL, 1),
(8667, 6843, '3', 'JNTU', '', 'BACHELORS', '2018', 52.00, '', 1, '2021-11-25 07:56:23', 0, NULL, 0, NULL, 1),
(8668, 6861, '3', 'Anna University', '', 'B.E', '2021', 73.00, '', 1, '2021-11-25 10:30:14', 0, NULL, 0, NULL, 1),
(8669, 6864, '3', 'Anna university', '', 'BE', '2021', 73.00, '', 1, '2021-11-25 10:30:25', 0, NULL, 0, NULL, 1),
(8670, 6865, '3', 'Guru nanak College ', '', 'B.com', '2020', 78.40, '', 1, '2021-11-25 10:34:23', 0, NULL, 0, NULL, 1),
(8671, 6863, '3', 'SRI ANDAL ALAGAR COLLEGE OF ENGINEERING ', '', 'BE-CSE', '2020', 70.00, '', 1, '2021-11-25 10:40:02', 0, NULL, 0, NULL, 1),
(8672, 6862, '3', 'Anna University', '', 'B.tech ', '2021', 75.00, '', 1, '2021-11-25 10:46:22', 0, NULL, 0, NULL, 1),
(8673, 6870, '1', 'State board', '', '', '2016', 95.80, '', 1, '2021-11-25 11:30:46', 0, NULL, 0, NULL, 1),
(8674, 6870, '2', 'State board', '', '', '2018', 73.30, '', 1, '2021-11-25 11:31:53', 0, NULL, 0, NULL, 1),
(8675, 6870, '3', 'Madras University', '', 'Bsc microbiology', '2018', 77.00, '', 1, '2021-11-25 11:34:38', 0, NULL, 0, NULL, 1),
(8676, 6869, '1', 'State board ', '', '', '2016', 94.80, '', 1, '2021-11-25 11:38:23', 0, NULL, 0, NULL, 1),
(8677, 6869, '2', 'State board ', '', '', '2018', 69.00, '', 1, '2021-11-25 11:38:51', 0, NULL, 0, NULL, 1),
(8678, 6869, '3', 'Madras university ', '', 'Bsc microbiology', '2018', 79.00, '', 1, '2021-11-25 11:39:45', 0, NULL, 0, NULL, 1),
(8679, 6867, '3', 'Madras university', '', 'B. Com', '2021', 61.00, '', 1, '2021-11-25 11:46:07', 0, NULL, 0, NULL, 1),
(8680, 6868, '3', 'Automonous', '', 'BBA', '2021', 79.00, '', 1, '2021-11-25 11:48:31', 0, NULL, 0, NULL, 1),
(8681, 6871, '3', 'Anna University', '', 'B.E  EEE', '2021', 70.00, '', 1, '2021-11-25 12:10:33', 0, NULL, 0, NULL, 1),
(8682, 6872, '4', 'SRM University', '', 'M.B.A', '2021', 83.00, '', 1, '2021-11-25 12:27:40', 0, NULL, 0, NULL, 1),
(8683, 4378, '4', 'BS abdur Rahman crescent university', '', 'MBA', '2021', 9.00, '', 1, '2021-11-25 12:37:04', 0, NULL, 0, NULL, 1),
(8684, 4378, '3', 'Pondicherry university', '', 'B. Com', '2019', 67.00, '', 1, '2021-11-25 12:37:37', 0, NULL, 0, NULL, 1),
(8685, 6873, '3', 'Anna University', '', 'B. E', '2020', 7.23, '', 1, '2021-11-25 12:48:22', 0, NULL, 0, NULL, 1),
(8686, 6874, '4', 'University of Medras ', '', 'MBA', '2021', 70.68, '', 1, '2021-11-25 12:57:48', 1, '2021-11-25 12:58:07', 0, NULL, 0),
(8687, 6874, '1', 'Cambridge matriculation higher secondary School', '', '', '2014', 50.00, '', 1, '2021-11-25 12:58:53', 0, NULL, 0, NULL, 1),
(8688, 6874, '2', 'Cambridge matriculation higher secondary school ', '', '', '2016', 60.90, '', 1, '2021-11-25 12:59:30', 0, NULL, 0, NULL, 1),
(8689, 6874, '3', 'D. G vaishnav college ', '', 'B. A Economics ', '2019', 71.00, '', 1, '2021-11-25 01:00:28', 0, NULL, 0, NULL, 1),
(8690, 6874, '4', 'University of medras ', '', 'M. B. A', '2021', 75.19, '', 1, '2021-11-25 01:01:29', 0, NULL, 0, NULL, 1),
(8691, 6876, '3', 'Loyola College chennai', '', 'B Com', '2021', 64.00, '', 1, '2021-11-25 01:32:59', 0, NULL, 0, NULL, 1),
(8692, 6876, '2', 'Don Bosco Egmore', '', '', '2018', 93.00, '', 1, '2021-11-25 01:33:37', 0, NULL, 0, NULL, 1),
(8693, 6876, '1', 'Don Bosco egmore', '', '', '2016', 85.00, '', 1, '2021-11-25 01:33:58', 0, NULL, 0, NULL, 1),
(8694, 6878, '4', 'Dr. M. G. R. Educational and research institute university', '', 'MBA - Finance', '2016', 67.00, '', 1, '2021-11-25 02:23:42', 0, NULL, 0, NULL, 1),
(8695, 6877, '4', 'hindustan university', '', 'mca', '2021', 71.00, '', 1, '2021-11-25 02:27:38', 1, '2021-11-25 02:30:38', 0, NULL, 0),
(8696, 6877, '3', 'vels university', '', 'bsc it', '2019', 67.00, '', 1, '2021-11-25 02:28:17', 1, '2021-11-25 02:30:33', 0, NULL, 0),
(8697, 6877, '2', 'state board', '', '', '2016', 56.00, '', 1, '2021-11-25 02:29:01', 1, '2021-11-25 02:30:42', 0, NULL, 0),
(8698, 6877, '4', 'hindustan university', '', 'mca', '2021', 71.00, '', 1, '2021-11-25 02:31:41', 0, NULL, 0, NULL, 1),
(8699, 6877, '3', 'vels university', '', 'bsc it', '2019', 67.00, '', 1, '2021-11-25 02:32:27', 0, NULL, 0, NULL, 1),
(8700, 6877, '2', 'state board', '', '', '2016', 56.00, '', 1, '2021-11-25 02:32:51', 0, NULL, 0, NULL, 1),
(8701, 6877, '1', 'cbse', '', '', '2014', 66.00, '', 1, '2021-11-25 02:33:34', 0, NULL, 0, NULL, 1),
(8702, 6879, '4', 'Bharathidasan University', '', 'M.A HRM', '2021', 78.00, '', 1, '2021-11-25 03:21:13', 0, NULL, 0, NULL, 1),
(8703, 6879, '3', 'Bharathidasan University', '', 'BCA', '2019', 60.00, '', 1, '2021-11-25 03:21:38', 0, NULL, 0, NULL, 1),
(8704, 6879, '2', 'State board', '', '', '2016', 61.00, '', 1, '2021-11-25 03:22:10', 0, NULL, 0, NULL, 1),
(8705, 6879, '1', 'State board', '', '', '2014', 76.00, '', 1, '2021-11-25 03:22:28', 0, NULL, 0, NULL, 1),
(8706, 6880, '3', 'SRM university', '', 'B.com', '2021', 6.63, '', 1, '2021-11-25 03:46:51', 0, NULL, 0, NULL, 1),
(8707, 6881, '2', 'Nagpur', '', '', '2017', 61.00, '', 1, '2021-11-25 04:49:09', 0, NULL, 0, NULL, 1),
(8708, 6881, '4', 'Nagpur', '', 'Bcca', '2019', 71.00, '', 1, '2021-11-25 04:49:43', 0, NULL, 0, NULL, 1),
(8709, 6883, '5', 'Madras ', '', 'Fashion designing', '2021', 55.00, '', 1, '2021-11-25 08:05:25', 0, NULL, 0, NULL, 1),
(8710, 6882, '4', 'Kakatiya University', '', 'Masterji degree and pg college', '2015', 68.00, '', 1, '2021-11-26 09:29:08', 0, NULL, 0, NULL, 1),
(8711, 6885, '3', 'st.peters college of engineering and technology', '', 'b.tech chemical engineering', '2020', 67.30, '', 1, '2021-11-26 10:57:19', 0, NULL, 0, NULL, 1),
(8712, 6887, '3', 'Kanchi shree krishna college ', '', 'Bsc.microbiology', '2019', 60.00, '', 1, '2021-11-26 11:32:11', 0, NULL, 0, NULL, 1),
(8713, 6889, '3', 'University of Madras', '', 'B.sc (Interior design and decor)', '2020', 72.00, '', 1, '2021-11-26 11:39:58', 0, NULL, 0, NULL, 1),
(8714, 6886, '3', 'Madras University', '', 'Bsc', '2021', 75.00, '', 1, '2021-11-26 11:51:00', 0, NULL, 0, NULL, 1),
(8715, 6890, '3', 'Madras University', '', 'B.com corporate secretariship', '2021', 82.00, '', 1, '2021-11-26 11:59:01', 0, NULL, 0, NULL, 1),
(8716, 6893, '4', 'Dg vaishnav college', '', 'MCA', '2022', 81.00, '', 1, '2021-11-26 11:59:29', 0, NULL, 0, NULL, 1),
(8717, 6891, '5', 'Periyar polytechnic college', '', 'Dcse', '2017', 55.00, '', 1, '2021-11-26 12:00:45', 0, NULL, 0, NULL, 1),
(8718, 6894, '3', 'Madras University', '', 'B. Com ', '2021', 70.00, '', 1, '2021-11-26 12:00:53', 0, NULL, 0, NULL, 1),
(8719, 6891, '4', 'Alagappa University', '', 'Bsc(cs)', '2022', 65.00, '', 1, '2021-11-26 12:01:39', 0, NULL, 0, NULL, 1),
(8720, 6892, '3', 'rajalakshmi engineering college', '', 'be mechanical engineering', '2017', 65.00, '', 1, '2021-11-26 12:06:28', 0, NULL, 0, NULL, 1),
(8721, 6888, '3', 'Madras University', '', 'B.com general', '2020', 70.00, '', 1, '2021-11-26 12:07:05', 0, NULL, 0, NULL, 1),
(8722, 6896, '3', 'Anna University', '', 'B.E', '2021', 6.12, '', 1, '2021-11-26 12:51:46', 0, NULL, 0, NULL, 1),
(8723, 6897, '4', 'University of Madras', '', 'MBA', '2019', 55.00, '', 1, '2021-11-26 12:53:34', 0, NULL, 0, NULL, 1),
(8724, 6895, '3', 'Anna university ', '', 'Be', '2021', 78.00, '', 1, '2021-11-26 12:53:57', 0, NULL, 0, NULL, 1),
(8725, 6897, '3', 'Indira Gandhi National open University', '', 'BSC in hospitality administration', '2017', 73.00, '', 1, '2021-11-26 12:54:13', 0, NULL, 0, NULL, 1),
(8726, 6884, '2', 'state board', '', '', '2012', 65.00, '', 1, '2021-11-26 01:18:51', 0, NULL, 0, NULL, 1),
(8727, 6884, '3', 'anna university', '', 'be civil', '2016', 65.00, '', 1, '2021-11-26 01:19:57', 0, NULL, 0, NULL, 1),
(8728, 6898, '2', 'state board', '', '', '2012', 62.00, '', 1, '2021-11-26 01:26:57', 0, NULL, 0, NULL, 1),
(8729, 6898, '3', 'madras university', '', 'bcom', '2015', 56.00, '', 1, '2021-11-26 01:27:37', 0, NULL, 0, NULL, 1),
(8730, 6899, '4', 'Bharathidasan University', '', 'm.sc', '2017', 69.00, '', 1, '2021-11-26 02:45:53', 0, NULL, 0, NULL, 1),
(8731, 6900, '4', 'Madras University ', '', 'MSW-HR ', '2020', 78.00, '', 1, '2021-11-26 03:15:07', 0, NULL, 0, NULL, 1),
(8732, 6900, '3', 'Thiruvalluvar ', '', 'Bcom', '2018', 58.00, '', 1, '2021-11-26 03:15:38', 0, NULL, 0, NULL, 1),
(8733, 6900, '2', 'State board ', '', '', '2015', 83.00, '', 1, '2021-11-26 05:00:34', 1, '2021-11-26 05:02:36', 0, NULL, 1),
(8734, 6900, '1', 'State board ', '', '', '2013', 75.00, '', 1, '2021-11-26 05:01:54', 0, NULL, 0, NULL, 1),
(8735, 6902, '3', 'anna university ', '', 'be', '2014', 65.00, '', 1, '2021-11-27 09:50:59', 0, NULL, 0, NULL, 1),
(8736, 6904, '2', 'State', '', '', '2019', 62.00, '', 1, '2021-11-27 10:39:41', 0, NULL, 0, NULL, 1),
(8737, 6905, '3', 'jntu', '', 'btech mechanical', '2016', 65.00, '', 1, '2021-11-27 12:04:26', 0, NULL, 0, NULL, 1),
(8738, 6906, '3', 'Kakatiya University', '', 'Bachelor of commerce', '2021', 76.00, '', 1, '2021-11-27 03:59:11', 0, NULL, 0, NULL, 1),
(8739, 6907, '4', 'Anna university', '', 'MBA ', '2020', 6.40, '', 1, '2021-11-27 04:56:44', 0, NULL, 0, NULL, 1),
(8740, 6910, '3', 'Velammal engineering college', '', 'B. E automobile engineering', '2021', 7.50, '', 1, '2021-11-28 12:20:33', 0, NULL, 0, NULL, 1),
(8741, 6913, '3', 'Madras University', '', 'BCA', '2014', 55.00, '', 1, '2021-11-29 10:37:29', 0, NULL, 0, NULL, 1),
(8742, 6914, '3', 'Amity University', '', 'Bachelor of Business Administration ( BBA ) ', '2021', 85.00, '', 1, '2021-11-29 11:01:13', 0, NULL, 0, NULL, 1),
(8743, 6914, '1', 'Bhavan\'s Rajaji Vidyashram ', '', '', '2016', 86.00, '', 1, '2021-11-29 11:02:22', 0, NULL, 0, NULL, 1),
(8744, 6914, '2', 'Bhavan\'s Rajaji Vidyashram', '', '', '2018', 93.00, '', 1, '2021-11-29 11:02:37', 0, NULL, 0, NULL, 1),
(8745, 6915, '3', 'Anna University', '', 'B.E', '2017', 6.40, '', 1, '2021-11-29 11:16:38', 0, NULL, 0, NULL, 1),
(8746, 6917, '3', 'Anna University ', '', 'BE-ECE', '2019', 66.70, '', 1, '2021-11-29 12:55:56', 0, NULL, 0, NULL, 1),
(8747, 6918, '3', 'Anna University', '', 'BE', '2018', 67.00, '', 1, '2021-11-29 01:06:23', 0, NULL, 0, NULL, 1),
(8748, 6919, '3', 'anna university', '', 'b.e', '2021', 7.10, '', 1, '2021-11-29 01:38:30', 0, NULL, 0, NULL, 1),
(8749, 6916, '3', 'SRM University', '', 'B.sc visual communication', '2022', 8.21, '', 1, '2021-11-29 02:57:41', 0, NULL, 0, NULL, 1),
(8750, 6920, '4', 'anna university', '', 'be', '2015', 75.00, '', 1, '2021-11-29 03:07:32', 0, NULL, 0, NULL, 1),
(8751, 6921, '3', 'anna unviersity', '', 'eee', '2017', 62.00, '', 1, '2021-11-29 03:15:44', 0, NULL, 0, NULL, 1),
(8752, 6922, '3', 'madras university', '', 'cs', '2016', 65.00, '', 1, '2021-11-29 03:25:34', 0, NULL, 0, NULL, 1),
(8753, 6923, '3', 'vels university', '', 'be', '2017', 69.00, '', 1, '2021-11-29 03:49:53', 0, NULL, 0, NULL, 1),
(8754, 6925, '3', 'Anna University', '', 'BE MECHANICAL', '2021', 78.00, '', 1, '2021-11-29 04:13:15', 0, NULL, 0, NULL, 1),
(8755, 6924, '2', 'state board', '', '', '2011', 55.00, '', 1, '2021-11-29 04:19:59', 0, NULL, 0, NULL, 1),
(8756, 6924, '3', 'madras university', '', 'bsc', '2014', 60.00, '', 1, '2021-11-29 04:20:33', 0, NULL, 0, NULL, 1),
(8757, 6927, '3', 'University of madras', '', 'B.com accounting finance', '2021', 78.80, '', 1, '2021-11-30 10:10:07', 0, NULL, 0, NULL, 1),
(8758, 6928, '3', 'Osmania University ', '', 'Bsc', '2020', 85.00, '', 1, '2021-11-30 10:28:16', 0, NULL, 0, NULL, 1),
(8759, 6930, '3', 'madras', '', 'ba defence', '2021', 71.00, '', 1, '2021-11-30 11:32:22', 0, NULL, 0, NULL, 1),
(8760, 6929, '3', 'Anna university', '', 'BE', '2021', 75.50, '', 1, '2021-11-30 11:35:55', 0, NULL, 0, NULL, 1),
(8761, 6929, '2', 'State board', '', '', '2017', 77.80, '', 1, '2021-11-30 11:37:36', 0, NULL, 0, NULL, 1),
(8762, 6929, '1', 'State board', '', '', '2015', 94.80, '', 1, '2021-11-30 11:38:28', 0, NULL, 0, NULL, 1),
(8763, 6932, '3', 'Jntu k', '', 'B.tech', '2017', 62.00, '', 1, '2021-11-30 11:41:26', 0, NULL, 0, NULL, 1),
(8764, 6931, '3', 'SRM university ', '', 'B.tech (EIE)', '2019', 60.00, '', 1, '2021-11-30 11:46:15', 0, NULL, 0, NULL, 1),
(8765, 6931, '2', 'State board ', '', '', '2014', 68.00, '', 1, '2021-11-30 11:48:34', 0, NULL, 0, NULL, 1),
(8766, 6931, '1', 'State board', '', '', '2012', 80.00, '', 1, '2021-11-30 11:49:17', 0, NULL, 0, NULL, 1),
(8767, 6933, '3', 'Mohammad  sadhak College ', '', 'B.com', '2016', 83.00, '', 1, '2021-11-30 12:40:59', 0, NULL, 0, NULL, 1),
(8768, 6935, '5', 'Board', '', 'Diploma in civil engineering', '2017', 68.00, '', 1, '2021-11-30 12:42:06', 0, NULL, 0, NULL, 1),
(8769, 6933, '2', 'Government he.sec.school', '', '', '2013', 73.00, '', 1, '2021-11-30 12:42:22', 0, NULL, 0, NULL, 1),
(8770, 6935, '1', 'Board', '', '', '2014', 75.00, '', 1, '2021-11-30 12:42:55', 0, NULL, 0, NULL, 1),
(8771, 6933, '1', 'Government he.sec.school', '', '', '2011', 72.00, '', 1, '2021-11-30 12:43:04', 0, NULL, 0, NULL, 1),
(8772, 6936, '2', 'Govt.Hr.Sec.school', '', '', '2015', 70.00, '', 1, '2021-11-30 12:45:51', 0, NULL, 0, NULL, 1),
(8773, 6936, '3', 'Anna University', '', 'Be', '2019', 80.00, '', 1, '2021-11-30 12:46:22', 0, NULL, 0, NULL, 1),
(8774, 6934, '4', 'Bharadhi thasan university', '', 'MA (ECONOMICS) ', '2017', 80.00, '', 1, '2021-11-30 12:47:42', 0, NULL, 0, NULL, 1),
(8775, 6934, '3', 'Bharathi thasan university', '', 'BA (ECONOMICS) ', '2015', 60.00, '', 1, '2021-11-30 12:48:47', 0, NULL, 0, NULL, 1),
(8776, 6934, '2', 'Board', '', '', '2010', 60.00, '', 1, '2021-11-30 12:50:59', 0, NULL, 0, NULL, 1),
(8777, 6934, '1', 'Board', '', '', '2008', 60.00, '', 1, '2021-11-30 12:52:02', 0, NULL, 0, NULL, 1),
(8778, 6937, '3', 'University of madras', '', 'BSC Computer Science', '2018', 65.00, '', 1, '2021-11-30 01:18:26', 0, NULL, 0, NULL, 1),
(8779, 6937, '2', 'State board', '', '', '2015', 60.00, '', 1, '2021-11-30 01:18:47', 0, NULL, 0, NULL, 1),
(8780, 6937, '1', 'State board', '', '', '2013', 65.00, '', 1, '2021-11-30 01:19:13', 0, NULL, 0, NULL, 1),
(8781, 6939, '3', 'University of Madras', '', 'B.com', '2020', 55.00, '', 1, '2021-11-30 02:16:08', 0, NULL, 0, NULL, 1),
(8782, 1793, '2', 'Government higher secondary school', '', '', '2013', 50.00, '', 1, '2021-11-30 02:22:31', 0, NULL, 0, NULL, 1),
(8783, 6941, '3', 'Dhirajlal Gandhi College of Technology ', '', 'B.E', '2021', 75.00, '', 1, '2021-11-30 03:09:32', 0, NULL, 0, NULL, 1),
(8784, 6942, '2', 'State board', '', '', '2012', 70.00, '', 1, '2021-11-30 03:25:20', 0, NULL, 0, NULL, 1),
(8785, 6942, '3', 'Madras University', '', 'Bcom', '2015', 67.00, '', 1, '2021-11-30 03:25:47', 0, NULL, 0, NULL, 1),
(8786, 6926, '3', 'Anna University Chennai', '', 'BE EEE', '2016', 66.70, '', 1, '2021-11-30 03:34:19', 0, NULL, 0, NULL, 1),
(8787, 6943, '4', 'N.M.S.S.Vellaichamy Nadar College', '', 'MBA', '2021', 86.00, '', 1, '2021-11-30 03:42:05', 0, NULL, 0, NULL, 1),
(8788, 6945, '4', 'Pondicherry university ', '', 'MBA', '2021', 73.00, '', 1, '2021-11-30 05:18:42', 0, NULL, 0, NULL, 1),
(8789, 6944, '3', 'University of Madras ', '', 'Bachelor of Science ', '2020', 92.00, '', 1, '2021-11-30 08:42:32', 0, NULL, 0, NULL, 1),
(8790, 6944, '4', 'University of Madras ', '', 'Master Of arts', '2022', 79.00, '', 1, '2021-11-30 08:43:26', 0, NULL, 0, NULL, 1),
(8791, 6946, '3', 'SRM UNIVERSITY', '', 'Bsc visual communication', '2021', 70.00, '', 1, '2021-12-01 09:08:20', 0, NULL, 0, NULL, 1),
(8792, 6949, '3', 'anna unviersity', '', 'be ece', '2021', 71.00, '', 1, '2021-12-01 10:33:59', 0, NULL, 0, NULL, 1),
(8793, 6948, '3', 'Madras university', '', 'B. A ENGLISH LITERATURE', '2021', 80.00, '', 1, '2021-12-01 10:38:39', 0, NULL, 0, NULL, 1),
(8794, 6950, '3', 'Sathyabama University', '', 'B.E mechanical', '2017', 68.00, '', 1, '2021-12-01 10:45:53', 0, NULL, 0, NULL, 1),
(8795, 6947, '3', 'Madras university', '', 'B. SC MICRO BIOLOGY', '2021', 74.60, '', 1, '2021-12-01 10:51:25', 1, '2021-12-01 10:52:23', 0, NULL, 0),
(8796, 6947, '3', 'Madras university', '', 'B. SC MICRO BIOLOGY', '2021', 85.60, '', 1, '2021-12-01 10:52:31', 0, NULL, 0, NULL, 1),
(8797, 6952, '1', 'State board', '', '', '2013', 90.00, '', 1, '2021-12-01 11:02:51', 0, NULL, 0, NULL, 1),
(8798, 6952, '2', 'State board', '', '', '2015', 85.00, '', 1, '2021-12-01 11:03:20', 0, NULL, 0, NULL, 1),
(8799, 6952, '3', 'SRM University', '', 'Bsc', '2018', 75.00, '', 1, '2021-12-01 11:03:59', 0, NULL, 0, NULL, 1),
(8800, 6953, '4', 'anna university', '', 'mba', '2021', 75.00, '', 1, '2021-12-01 12:22:39', 0, NULL, 0, NULL, 1),
(8801, 6938, '4', 'Osmania University ', '', 'mba', '2013', 62.00, '', 1, '2021-12-01 12:57:24', 0, NULL, 0, NULL, 1),
(8802, 6938, '3', 'Kakatiya University ', '', 'Bsc(B.Z.C) ', '2011', 72.00, '', 1, '2021-12-01 12:58:08', 0, NULL, 0, NULL, 1),
(8803, 6956, '1', 'rajammal rangasamy hss ', '', '', '2014', 83.40, '', 1, '2021-12-01 01:22:35', 0, NULL, 0, NULL, 1),
(8804, 6956, '2', 'relaince matric higher secondary school ', '', '', '2016', 70.30, '', 1, '2021-12-01 01:23:13', 0, NULL, 0, NULL, 1),
(8805, 6956, '3', 'kongu arts and science college ', '', 'bsc computer science', '2019', 65.00, '', 1, '2021-12-01 01:23:48', 0, NULL, 0, NULL, 1),
(8806, 6956, '4', 'kongu arts and science college ', '', 'mba human resources and marketing ', '2021', 65.00, '', 1, '2021-12-01 01:24:51', 0, NULL, 0, NULL, 1),
(8807, 6955, '3', 'manonmaniam sundaranar university', '', 'b.com', '2021', 85.00, '', 1, '2021-12-01 03:08:47', 0, NULL, 0, NULL, 1),
(8808, 6959, '3', 'Jawaharlal Nehru technological University', '', 'B.tech', '2021', 5.90, '', 1, '2021-12-01 03:34:14', 0, NULL, 0, NULL, 1),
(8809, 6954, '3', 'periyar university', '', 'bba', '2019', 50.00, '', 1, '2021-12-01 03:57:03', 0, NULL, 0, NULL, 1),
(8810, 6960, '2', 'Autonomous', '', '', '2018', 69.00, '', 1, '2021-12-01 04:16:25', 0, NULL, 0, NULL, 1),
(8811, 6961, '4', 'osmani University ', '', '', '2017', 60.00, '', 1, '2021-12-01 04:57:59', 0, NULL, 0, NULL, 1),
(8812, 6961, '3', 'osmania university', '', '', '2015', 64.00, '', 1, '2021-12-01 04:58:54', 0, NULL, 0, NULL, 1),
(8813, 6951, '4', 'anna university', '', 'mba', '2021', 85.00, '', 1, '2021-12-01 10:34:38', 0, NULL, 0, NULL, 1),
(8814, 6962, '4', 'ANNA UNIVERSITY', '', 'MBA', '2021', 85.00, '', 1, '2021-12-01 10:34:42', 0, NULL, 0, NULL, 1),
(8815, 6963, '3', 'kamaraj university', '', 'bsc.computer science', '2020', 75.00, '', 1, '2021-12-02 10:55:33', 1, '2021-12-02 10:56:48', 0, NULL, 1),
(8816, 6963, '1', 'madurai meenakshi matriculation higher seconday school', '', '', '2015', 93.40, '', 1, '2021-12-02 10:56:37', 0, NULL, 0, NULL, 1),
(8817, 6963, '2', 'madurai meenakshi matriculation higher secondary school', '', '', '2017', 77.00, '', 1, '2021-12-02 10:57:47', 0, NULL, 0, NULL, 1),
(8818, 6964, '1', 'government girls higher secondary school', '', '', '2013', 60.00, '', 1, '2021-12-02 11:06:48', 0, NULL, 0, NULL, 1),
(8819, 6964, '2', 'government girls higher secondary school', '', '', '2015', 50.00, '', 1, '2021-12-02 11:07:56', 0, NULL, 0, NULL, 1),
(8820, 6965, '3', 'Anna University', '', 'BE Mechanical', '2019', 6.50, '', 1, '2021-12-02 11:58:46', 0, NULL, 0, NULL, 1),
(8821, 6966, '3', 'Madras University', '', 'BCA', '2020', 62.00, '', 1, '2021-12-02 01:03:09', 0, NULL, 0, NULL, 1),
(8822, 6967, '5', 'pallavan', '', 'electronic', '2013', 60.00, '', 1, '2021-12-02 04:40:15', 1, '2021-12-02 04:40:38', 0, NULL, 1),
(8823, 6967, '3', 'savitha', '', 'ece', '2016', 60.00, '', 1, '2021-12-02 04:41:06', 0, NULL, 0, NULL, 1),
(8824, 6969, '3', 'Jntuh', '', 'B.tech', '2017', 60.00, '', 1, '2021-12-02 05:16:58', 0, NULL, 0, NULL, 1),
(8825, 6970, '3', 'kakateya university ', '', 'bsc', '2017', 65.00, '', 1, '2021-12-02 05:23:26', 0, NULL, 0, NULL, 1),
(8826, 6974, '4', 'jntuk', '', '', '2013', 61.00, '', 1, '2021-12-03 11:22:56', 0, NULL, 0, NULL, 1),
(8827, 6973, '3', 'Anna University', '', 'BE(CSE)', '2019', 6.70, '', 1, '2021-12-03 11:31:14', 0, NULL, 0, NULL, 1),
(8828, 6976, '3', 'QMC', '', 'B sc (GTTM)', '2017', 60.00, '', 1, '2021-12-03 12:53:42', 0, NULL, 0, NULL, 1),
(8829, 6977, '4', 'Loyola College, chennai', '', 'Post graduate diploma in human resources managemen', '2021', 8.00, '', 1, '2021-12-03 02:30:31', 0, NULL, 0, NULL, 1),
(8830, 6977, '3', 'Madras christian College', '', 'Bsc mathematics', '2020', 7.00, '', 1, '2021-12-03 02:34:09', 0, NULL, 0, NULL, 1),
(8831, 6978, '3', 'Madras uni6', '', 'B.sc', '2011', 60.00, '', 1, '2021-12-03 02:44:59', 0, NULL, 0, NULL, 1),
(8832, 6979, '3', 'Kakatiya University', '', 'B.Com Computer Applications', '2008', 71.00, '', 1, '2021-12-03 03:19:37', 0, NULL, 0, NULL, 1),
(8833, 6980, '4', 'Bharathiyar University ', '', 'MBA', '2021', 63.00, '', 1, '2021-12-03 03:44:31', 0, NULL, 0, NULL, 1),
(8834, 6981, '3', 'Madras University', '', 'B.A English', '2021', 69.00, '', 1, '2021-12-03 03:48:04', 0, NULL, 0, NULL, 1),
(8835, 6983, '4', 'Anna University', '', 'MBA HR and Finance', '2019', 70.00, '', 1, '2021-12-03 04:22:17', 0, NULL, 0, NULL, 1),
(8836, 6984, '4', 'University of Madras', '', 'MBA', '2021', 6.75, '', 1, '2021-12-03 04:40:26', 0, NULL, 0, NULL, 1),
(8837, 6985, '3', 'university of madras', '', 'b.com general', '2021', 80.00, '', 1, '2021-12-03 08:39:37', 1, '2021-12-03 08:41:24', 0, NULL, 0),
(8838, 6985, '1', 'state board', '', '', '2016', 96.40, '', 1, '2021-12-03 08:41:13', 1, '2021-12-03 08:42:51', 0, NULL, 1),
(8839, 6985, '2', 'state board', '', '', '2018', 90.10, '', 1, '2021-12-03 08:41:46', 1, '2021-12-03 08:43:17', 0, NULL, 1),
(8840, 6985, '3', 'university of madras', '', 'b.com general', '2021', 80.00, '', 1, '2021-12-03 08:42:31', 0, NULL, 0, NULL, 1),
(8841, 6986, '1', 'state board', '', '', '2021', 56.00, '', 1, '2021-12-04 10:21:44', 0, NULL, 0, NULL, 1),
(8842, 6986, '5', 'siga polytechnic', '', 'dpt', '2015', 69.00, '', 1, '2021-12-04 10:22:33', 0, NULL, 0, NULL, 1),
(8843, 6987, '3', 'Hindustan college of arts and science', '', 'B. b. A', '2018', 55.00, '', 1, '2021-12-04 10:56:53', 0, NULL, 0, NULL, 1),
(8844, 6987, '2', 'Y. M. C. A boys town hr sec school', '', '', '2015', 64.00, '', 1, '2021-12-04 10:57:35', 0, NULL, 0, NULL, 1),
(8845, 6987, '1', 'Kumararaja muthaiya hr sec school', '', '', '2013', 74.50, '', 1, '2021-12-04 10:58:18', 0, NULL, 0, NULL, 1),
(8846, 6988, '3', 'Madras university ', '', 'Bcom', '2021', 73.00, '', 1, '2021-12-04 11:51:07', 0, NULL, 0, NULL, 1),
(8847, 6990, '3', 'Ms ramaiah ', '', 'BBa', '2021', 0.00, '', 1, '2021-12-04 12:31:43', 0, NULL, 0, NULL, 1),
(8848, 6990, '1', 'Aditya English school', '', '', '2012', 53.92, '', 1, '2021-12-04 12:33:06', 0, NULL, 0, NULL, 1),
(8849, 6991, '3', 'Anna University', '', 'BE mechanical engineering', '2021', 7.48, '', 1, '2021-12-04 04:59:25', 0, NULL, 0, NULL, 1),
(8850, 6992, '3', 'Karnataka University', '', 'BBA', '2021', 84.00, '', 1, '2021-12-04 09:40:54', 0, NULL, 0, NULL, 1),
(8851, 6994, '3', 'Karnataka university dharwad', '', 'BBA', '2021', 84.66, '', 1, '2021-12-05 12:49:37', 0, NULL, 0, NULL, 1),
(8852, 6995, '5', 'University', '', 'Diploma in computer science', '2019', 60.00, '', 1, '2021-12-06 11:45:31', 0, NULL, 0, NULL, 1),
(8853, 6997, '2', 'Vels University', '', '', '2016', 58.00, '', 1, '2021-12-06 01:03:04', 0, NULL, 0, NULL, 1),
(8854, 7000, '1', 'State board', '', '', '2018', 87.00, '', 1, '2021-12-06 02:17:04', 0, NULL, 0, NULL, 1),
(8855, 7000, '3', 'Anna university', '', 'BE EEE', '2018', 63.00, '', 1, '2021-12-06 02:25:45', 0, NULL, 0, NULL, 1),
(8856, 7000, '5', 'DOTE', '', 'DEEE', '2015', 87.00, '', 1, '2021-12-06 02:26:58', 0, NULL, 0, NULL, 1),
(8857, 6999, '1', 'State', '', '', '2011', 85.00, '', 1, '2021-12-06 02:36:14', 0, NULL, 0, NULL, 1),
(8858, 6999, '5', 'DOTE', '', 'DEEE', '2015', 89.50, '', 1, '2021-12-06 02:36:58', 0, NULL, 0, NULL, 1),
(8859, 6999, '2', 'State', '', '', '2013', 61.00, '', 1, '2021-12-06 02:37:16', 0, NULL, 0, NULL, 1),
(8860, 6999, '3', 'Anna university', '', 'BE EEE', '2018', 64.00, '', 1, '2021-12-06 02:37:48', 0, NULL, 0, NULL, 1),
(8861, 7001, '1', 'State', '', '', '2013', 52.00, '', 1, '2021-12-06 02:37:53', 0, NULL, 0, NULL, 1),
(8862, 7001, '5', 'DOTE', '', 'DME', '2018', 63.00, '', 1, '2021-12-06 02:38:58', 0, NULL, 0, NULL, 1),
(8863, 7002, '2', 'State', '', '', '2018', 52.00, '', 1, '2021-12-06 03:09:22', 0, NULL, 0, NULL, 1),
(8864, 6998, '2', 'Board of Intermediate', '', '', '2010', 50.00, '', 1, '2021-12-06 03:09:31', 0, NULL, 0, NULL, 1),
(8865, 6998, '1', 'Second ', '', '', '2008', 45.00, '', 1, '2021-12-06 03:10:10', 0, NULL, 0, NULL, 1),
(8866, 7005, '3', 'anna unive ', '', 'Electronic and communication', '2021', 7.50, '', 1, '2021-12-06 04:57:05', 1, '2021-12-06 04:57:16', 0, NULL, 1),
(8867, 7006, '3', 'AKNU ', '', 'B. Sc computers', '2019', 70.00, '', 1, '2021-12-06 05:05:16', 0, NULL, 0, NULL, 1),
(8868, 7007, '3', 'New college', '', 'B com', '2019', 61.00, '', 1, '2021-12-06 06:20:56', 0, NULL, 0, NULL, 1),
(8869, 7008, '4', 'Bharathir university', '', 'MBA', '2017', 72.00, '', 1, '2021-12-06 07:06:52', 0, NULL, 0, NULL, 1),
(8870, 7009, '5', 'Dote Unvercity Chennai ', '', 'Diploma in mechanical engineering ', '2014', 65.00, '', 1, '2021-12-07 07:50:14', 0, NULL, 0, NULL, 1),
(8871, 7003, '3', 'Srank Sinn university', '', 'Diploma in aviation', '2019', 70.00, '', 1, '2021-12-07 10:27:54', 0, NULL, 0, NULL, 1),
(8872, 7003, '2', 'Sbbha school', '', '', '2016', 86.00, '', 1, '2021-12-07 10:28:59', 0, NULL, 0, NULL, 1),
(8873, 7003, '1', 'Sbbsh school', '', '', '2014', 67.00, '', 1, '2021-12-07 10:29:50', 0, NULL, 0, NULL, 1),
(8874, 7010, '2', 'State board', '', '', '2010', 65.00, '', 1, '2021-12-07 10:42:01', 0, NULL, 0, NULL, 1),
(8875, 7011, '2', 'St.francis Xavier\'s matriculation school', '', '', '2015', 94.00, '', 1, '2021-12-07 11:09:20', 0, NULL, 0, NULL, 1),
(8876, 7011, '1', 'St.francis Xavier\'s matriculation school', '', '', '2013', 68.00, '', 1, '2021-12-07 11:09:59', 0, NULL, 0, NULL, 1),
(8877, 7013, '2', 'Asan memorial', '', '', '2019', 70.00, '', 1, '2021-12-07 11:41:36', 0, NULL, 0, NULL, 1),
(8878, 7013, '1', 'MCC', '', '', '2017', 65.00, '', 1, '2021-12-07 11:42:01', 0, NULL, 0, NULL, 1),
(8879, 7015, '2', 'state board', '', '', '2017', 80.00, '', 1, '2021-12-07 12:05:04', 0, NULL, 0, NULL, 1),
(8880, 7015, '3', 'anamalai', '', 'bcom', '2022', 70.00, '', 1, '2021-12-07 12:05:37', 0, NULL, 0, NULL, 1),
(8881, 7012, '2', 'state board', '', '', '2017', 50.00, '', 1, '2021-12-07 12:25:16', 0, NULL, 0, NULL, 1),
(8882, 7012, '3', 'madras university', '', 'bba', '2020', 72.00, '', 1, '2021-12-07 12:25:46', 0, NULL, 0, NULL, 1),
(8883, 7016, '4', 'St. Vincent PG College ', '', 'MBA', '2021', 75.00, '', 1, '2021-12-07 12:27:45', 0, NULL, 0, NULL, 1),
(8884, 7016, '3', 'Sai Ram Degree College ', '', 'B.com', '2019', 85.00, '', 1, '2021-12-07 12:28:17', 0, NULL, 0, NULL, 1),
(8885, 7017, '2', 'state board', '', '', '2011', 60.00, '', 1, '2021-12-07 12:30:58', 0, NULL, 0, NULL, 1),
(8886, 7017, '3', 'baradhidasan ', '', 'bca', '2015', 60.00, '', 1, '2021-12-07 12:32:06', 0, NULL, 0, NULL, 1),
(8887, 7019, '3', 'Govt degree College', '', 'B.Com Computers', '2015', 51.00, '', 1, '2021-12-07 02:03:47', 0, NULL, 0, NULL, 1),
(8888, 7020, '3', 'vit vellore', '', 'msc biotechnology', '2022', 78.00, '', 1, '2021-12-07 03:01:40', 0, NULL, 0, NULL, 1),
(8889, 7021, '3', 'MS university', '', 'Bsc (physics) ', '2019', 86.00, '', 1, '2021-12-07 03:08:23', 0, NULL, 0, NULL, 1),
(8890, 7021, '2', 'St. Joseph Hr Sec School', '', '', '2014', 78.00, '', 1, '2021-12-07 03:09:00', 0, NULL, 0, NULL, 1),
(8891, 7021, '1', 'Concordia high School', '', '', '2012', 81.00, '', 1, '2021-12-07 03:09:27', 0, NULL, 0, NULL, 1),
(8892, 7022, '4', 'vit', '', 'msc biotech', '2022', 83.00, '', 1, '2021-12-07 03:09:37', 0, NULL, 0, NULL, 1),
(8893, 7023, '3', 'mangalore', '', 'bcom', '2018', 58.00, '', 1, '2021-12-07 03:20:25', 0, NULL, 0, NULL, 1),
(8894, 7024, '3', 'Bharathidasan University', '', 'Bachelor of Computer Applications', '2021', 54.00, '', 1, '2021-12-07 03:35:48', 0, NULL, 0, NULL, 1),
(8895, 7025, '4', 'Karnataka University Dharwad Karnataka', '', 'Bcom', '2019', 3.00, '', 1, '2021-12-07 03:37:20', 0, NULL, 0, NULL, 1),
(8896, 7025, '4', 'Karnataka University Dharwad', '', 'Bcom', '2019', 5.00, '', 1, '2021-12-07 03:37:58', 0, NULL, 0, NULL, 1),
(8897, 7026, '2', 'TSBSC', '', '', '2014', 54.00, '', 1, '2021-12-07 04:44:26', 1, '2021-12-07 04:44:59', 0, NULL, 1),
(8898, 7027, '3', 'Anna University ', '', 'BE', '2017', 65.00, '', 1, '2021-12-07 04:58:13', 0, NULL, 0, NULL, 1),
(8899, 7029, '3', 'Jntu', '', '2019', '2019', 65.00, '', 1, '2021-12-08 10:38:18', 0, NULL, 0, NULL, 1),
(8900, 7029, '5', 'Sbtet', '', 'Diploma', '2016', 78.00, '', 1, '2021-12-08 10:39:19', 0, NULL, 0, NULL, 1),
(8901, 7029, '2', 'Ssc', '', '', '2013', 9.00, '', 1, '2021-12-08 10:39:43', 0, NULL, 0, NULL, 1),
(8902, 7031, '5', 'Anna university', '', '1', '2017', 67.00, '', 1, '2021-12-08 11:41:14', 0, NULL, 0, NULL, 1),
(8903, 7033, '3', 'JHA agarsan collage', '', 'B.com g', '2021', 68.00, '', 1, '2021-12-08 12:58:02', 0, NULL, 0, NULL, 1),
(8904, 7033, '2', 'Don Bosco hight secondary school', '', '', '2018', 67.00, '', 1, '2021-12-08 12:58:45', 0, NULL, 0, NULL, 1),
(8905, 7033, '1', 'Don Bosco hight school', '', '', '2016', 76.00, '', 1, '2021-12-08 12:59:20', 0, NULL, 0, NULL, 1),
(8906, 7034, '3', 'Madras university', '', 'B. Com(G) ', '2021', 69.00, '', 1, '2021-12-08 01:12:38', 0, NULL, 0, NULL, 1),
(8907, 7034, '2', 'Voc Matric Higher School', '', '', '2017', 65.00, '', 1, '2021-12-08 01:13:23', 0, NULL, 0, NULL, 1),
(8908, 7034, '1', 'voc matric High School', '', '', '2016', 65.00, '', 1, '2021-12-08 01:13:49', 0, NULL, 0, NULL, 1),
(8909, 7035, '3', 'Ethiraj college of women', '', 'B. com', '2021', 77.40, '', 1, '2021-12-08 01:53:44', 0, NULL, 0, NULL, 1),
(8910, 7037, '5', 'Bharat', '', 'Diploma in Air-condition and Refrigeration Technol', '2014', 80.00, '', 1, '2021-12-08 02:14:03', 0, NULL, 0, NULL, 1),
(8911, 7037, '1', 'State Board ', '', '', '2012', 48.00, '', 1, '2021-12-08 02:14:52', 0, NULL, 0, NULL, 1),
(8912, 7039, '3', 'andhra university', '', '', '2019', 72.00, '', 1, '2021-12-08 03:20:40', 0, NULL, 0, NULL, 1),
(8913, 7039, '2', 'intermediate board of education', '', '', '2014', 85.00, '', 1, '2021-12-08 03:22:35', 0, NULL, 0, NULL, 1),
(8914, 7039, '1', 'board of secondary education', '', '', '2012', 88.00, '', 1, '2021-12-08 03:23:59', 0, NULL, 0, NULL, 1),
(8915, 7040, '4', 'Karpagam University', '', 'MBA HR & FINANCE', '2018', 83.00, '', 1, '2021-12-08 03:26:05', 0, NULL, 0, NULL, 1),
(8916, 7042, '3', 'Anna university', '', 'B.E (E.E.E) ', '2018', 6.30, '', 1, '2021-12-08 03:41:45', 0, NULL, 0, NULL, 1),
(8917, 7042, '1', 'State board', '', '', '2010', 50.00, '', 1, '2021-12-08 03:42:51', 0, NULL, 0, NULL, 1),
(8918, 7041, '3', 'Madras ', '', 'Bca', '2019', 6.00, '', 1, '2021-12-08 03:44:20', 0, NULL, 0, NULL, 1),
(8919, 7041, '1', 'State ', '', '', '2010', 5.00, '', 1, '2021-12-08 03:45:13', 0, NULL, 0, NULL, 1),
(8920, 7045, '3', 'Anna university ', '', 'B.E', '2020', 74.30, '', 1, '2021-12-08 06:02:33', 0, NULL, 0, NULL, 1),
(8921, 7045, '1', 'State board', '', '', '2014', 97.20, '', 1, '2021-12-08 06:02:55', 0, NULL, 0, NULL, 1),
(8922, 7045, '2', 'State board', '', '', '2016', 82.20, '', 1, '2021-12-08 06:03:14', 0, NULL, 0, NULL, 1),
(8923, 7046, '4', 'Jawaharlal University', '', 'MBA', '2018', 62.00, '', 1, '2021-12-09 09:44:48', 0, NULL, 0, NULL, 1),
(8924, 6975, '4', 'Ghjo', '', 'Bbm', '2018', 100.00, '', 1, '2021-12-09 09:45:12', 0, NULL, 0, NULL, 1),
(8925, 7047, '3', 'Dr .MGR.university ', '', 'B.com(GENERAL)', '2021', 7.78, '', 1, '2021-12-09 10:10:17', 0, NULL, 0, NULL, 1),
(8926, 7048, '3', 'Karapagam academy of higher education', '', 'BE Automobile', '2019', 5.50, '', 1, '2021-12-09 10:38:23', 0, NULL, 0, NULL, 1),
(8927, 7048, '2', 'Palanigounder highest secondry school', '', '', '2015', 75.00, '', 1, '2021-12-09 10:39:53', 0, NULL, 0, NULL, 1),
(8928, 7048, '1', 'Ruchmainammal higher secondary school', '', '', '2012', 60.00, '', 1, '2021-12-09 10:40:36', 0, NULL, 0, NULL, 1),
(8929, 7049, '2', 'sir theagaraya college higher secondary school ', '', '', '2017', 64.00, '', 1, '2021-12-09 11:28:50', 0, NULL, 0, NULL, 1),
(8930, 7051, '4', 'Anna university', '', 'MBA (HR and Operations Management)', '2020', 71.00, '', 1, '2021-12-09 12:04:43', 0, NULL, 0, NULL, 1),
(8931, 7051, '3', 'Madras University', '', 'B.com (general)', '2018', 70.00, '', 1, '2021-12-09 12:05:22', 0, NULL, 0, NULL, 1),
(8932, 7052, '4', 'Annamalai University', '', 'M.com', '2020', 62.00, '', 1, '2021-12-09 12:46:30', 1, '2021-12-09 12:47:11', 0, NULL, 0),
(8933, 7052, '1', 'Green valley Matriculation Higher secondary school', '', '', '2013', 96.00, '', 1, '2021-12-09 12:48:09', 0, NULL, 0, NULL, 1),
(8934, 7052, '2', 'Green valley matriculation higher secondary school', '', '', '2015', 91.00, '', 1, '2021-12-09 12:48:31', 0, NULL, 0, NULL, 1),
(8935, 7052, '3', 'Periyar University', '', 'B.com', '2018', 75.00, '', 1, '2021-12-09 12:48:51', 1, '2021-12-09 12:49:05', 0, NULL, 1),
(8936, 7052, '4', 'Annamalai University', '', 'M.com', '2020', 62.00, '', 1, '2021-12-09 12:49:42', 0, NULL, 0, NULL, 1),
(8937, 7053, '4', 'SRI KALISWARI COLLEGE, SIVAKASI', '', 'M.COM (FINANCE)', '2020', 78.00, '', 1, '2021-12-09 01:00:20', 1, '2021-12-09 01:00:46', 0, NULL, 1),
(8938, 7054, '3', 'Anna university', '', 'B.E', '2020', 71.00, '', 1, '2021-12-09 01:29:56', 0, NULL, 0, NULL, 1),
(8939, 7054, '1', 'State board ', '', '', '2013', 87.00, '', 1, '2021-12-09 01:30:50', 0, NULL, 0, NULL, 1),
(8940, 7054, '2', 'State board ', '', '', '2015', 69.00, '', 1, '2021-12-09 01:31:14', 0, NULL, 0, NULL, 1),
(8941, 7057, '4', 'ou', '', 'mba', '2021', 90.00, '', 1, '2021-12-09 02:56:39', 0, NULL, 0, NULL, 1),
(8942, 7058, '1', 'Government Higher Secondary School, Ranipet', '', '', '2014', 76.00, '', 1, '2021-12-09 03:12:06', 0, NULL, 0, NULL, 1),
(8943, 7058, '2', 'Government Higher Secondary School, Ranipet', '', '', '2016', 52.00, '', 1, '2021-12-09 03:12:35', 0, NULL, 0, NULL, 1),
(8944, 7058, '3', 'Voorhees College, Vellore', '', 'BCA', '2019', 70.00, '', 1, '2021-12-09 03:13:03', 0, NULL, 0, NULL, 1),
(8945, 7058, '4', 'Sacred Heart College, Tirupattur', '', 'MCA', '2021', 72.00, '', 1, '2021-12-09 03:13:37', 0, NULL, 0, NULL, 1),
(8946, 7056, '5', 'Srm Polytechnic College', '', 'EEE', '2018', 71.00, '', 1, '2021-12-09 03:13:56', 0, NULL, 0, NULL, 1),
(8947, 7043, '3', 'Anna university ', '', 'B.E - Metallurgical Engineering', '2018', 86.60, '', 1, '2021-12-09 03:51:07', 0, NULL, 0, NULL, 1),
(8948, 7043, '2', 'State board', '', '', '2014', 95.50, '', 1, '2021-12-09 03:51:36', 0, NULL, 0, NULL, 1),
(8949, 7043, '1', 'State board', '', '', '2012', 88.80, '', 1, '2021-12-09 03:52:09', 0, NULL, 0, NULL, 1),
(8950, 7059, '3', 'Madras University', '', 'B.com aF', '2021', 72.00, '', 1, '2021-12-09 05:40:35', 0, NULL, 0, NULL, 1),
(8951, 7059, '1', 'State board', '', '', '2017', 69.00, '', 1, '2021-12-09 05:41:03', 0, NULL, 0, NULL, 1),
(8952, 7059, '2', 'State board', '', '', '2015', 70.00, '', 1, '2021-12-09 05:41:31', 0, NULL, 0, NULL, 1),
(8953, 7060, '3', 'JNTUH', '', 'B.Tech', '2018', 62.00, '', 1, '2021-12-09 05:53:12', 0, NULL, 0, NULL, 1),
(8954, 7063, '3', 'sv university', '', '', '2016', 85.00, '', 1, '2021-12-10 10:28:28', 0, NULL, 0, NULL, 1),
(8955, 6975, '2', 'Ttdd', '', '', '2017', 34.00, '', 1, '2021-12-10 10:28:50', 0, NULL, 0, NULL, 1),
(8956, 7065, '3', 'bangalore univercity', '', 'b.com', '2019', 65.00, '', 1, '2021-12-10 10:50:12', 0, NULL, 0, NULL, 1),
(8957, 7064, '4', 'Sv University', '', 'MBA', '2021', 75.00, '', 1, '2021-12-10 10:54:41', 0, NULL, 0, NULL, 1),
(8958, 7066, '2', 'govt college for girl', '', '', '2014', 78.00, '', 1, '2021-12-10 11:10:29', 0, NULL, 0, NULL, 1),
(8959, 7070, '4', 'University of Madras ', '', 'MBA', '2018', 78.00, '', 1, '2021-12-10 11:22:05', 0, NULL, 0, NULL, 1),
(8960, 7070, '3', 'University of Madras ', '', 'B.Com', '2016', 81.00, '', 1, '2021-12-10 11:22:43', 0, NULL, 0, NULL, 1),
(8961, 7068, '3', 'Anna university', '', 'B. Tech', '2021', 7.40, '', 1, '2021-12-10 11:25:09', 0, NULL, 0, NULL, 1),
(8962, 7068, '2', 'State Board', '', '', '2017', 74.00, '', 1, '2021-12-10 11:25:43', 0, NULL, 0, NULL, 1),
(8963, 7068, '1', 'State board', '', '', '2015', 94.00, '', 1, '2021-12-10 11:26:00', 0, NULL, 0, NULL, 1),
(8964, 7072, '3', 'mysore univercity', '', 'b.sc', '2021', 70.00, '', 1, '2021-12-10 11:45:23', 0, NULL, 0, NULL, 1),
(8965, 7073, '3', 'University of Madras', '', 'B.com', '2017', 55.00, '', 1, '2021-12-10 11:46:25', 0, NULL, 0, NULL, 1),
(8966, 7075, '1', 'Shanti Dhama International public School', '', '', '2014', 55.00, '', 1, '2021-12-10 12:00:19', 0, NULL, 0, NULL, 1),
(8967, 7074, '3', 'mysore univercity', '', 'b.sc', '2021', 70.00, '', 1, '2021-12-10 12:01:14', 0, NULL, 0, NULL, 1),
(8968, 7076, '3', 'Madras University', '', 'B com corporate Secretaryship', '2021', 62.00, '', 1, '2021-12-10 12:51:44', 0, NULL, 0, NULL, 1),
(8969, 7076, '2', 'State board', '', '', '2018', 64.00, '', 1, '2021-12-10 12:52:52', 0, NULL, 0, NULL, 1),
(8970, 7076, '1', 'State board', '', '', '2016', 86.00, '', 1, '2021-12-10 12:53:13', 0, NULL, 0, NULL, 1),
(8971, 7077, '3', 'Medrass university ', '', 'Bsc maths', '2013', 48.00, '', 1, '2021-12-10 01:16:42', 0, NULL, 0, NULL, 1),
(8972, 7080, '1', 'St. Antony\'s Matric school Kanji', '', '', '2014', 83.50, '', 1, '2021-12-10 03:23:21', 0, NULL, 0, NULL, 1),
(8973, 7080, '2', 'Sri Saraswati vidhyalaya Matric Hr.Sec. School, Alathut', '', '', '2016', 79.80, '', 1, '2021-12-10 03:24:14', 0, NULL, 0, NULL, 1),
(8974, 7080, '3', 'Thiruvalluvar University', '', 'Bachelor of Computer Application', '2019', 75.00, '', 1, '2021-12-10 03:24:45', 0, NULL, 0, NULL, 1),
(8975, 7080, '4', 'Anna University', '', 'Master of Business Administration', '2021', 82.00, '', 1, '2021-12-10 03:25:15', 0, NULL, 0, NULL, 1),
(8976, 7081, '4', 'Rayalaseema university', '', 'MBA', '2021', 7.20, '', 1, '2021-12-10 03:42:21', 0, NULL, 0, NULL, 1),
(8977, 7082, '4', 'JNTU kakinada', '', 'Nalanda degree college', '2014', 65.00, '', 1, '2021-12-10 05:01:29', 0, NULL, 0, NULL, 1),
(8978, 7082, '4', 'JNTU kakinada', '', 'MBA', '2014', 65.00, '', 1, '2021-12-10 05:03:19', 0, NULL, 0, NULL, 1),
(8979, 7083, '3', 'Anna university', '', 'BE ECE', '2014', 60.00, '', 1, '2021-12-10 05:52:20', 0, NULL, 0, NULL, 1),
(8980, 7084, '3', 'Osmania university', '', 'B.com', '2018', 56.00, '', 1, '2021-12-10 06:19:09', 0, NULL, 0, NULL, 1),
(8981, 7087, '4', 'Bangalore City University ', '', 'MBA in Marketing and Operations ', '2021', 74.70, '', 1, '2021-12-11 10:19:15', 0, NULL, 0, NULL, 1),
(8982, 7088, '4', 'SKR Engineering college', '', 'MBA', '2020', 76.00, '', 1, '2021-12-11 10:47:00', 0, NULL, 0, NULL, 1),
(8983, 7089, '5', 'Apollo Engineering College', '', 'ECE', '2020', 70.00, '', 1, '2021-12-11 11:11:21', 0, NULL, 0, NULL, 1),
(8984, 7089, '2', 'Jaigopal garodia School', '', '', '2016', 65.00, '', 1, '2021-12-11 11:13:23', 0, NULL, 0, NULL, 1),
(8985, 7089, '1', 'Therasa school', '', '', '2014', 74.00, '', 1, '2021-12-11 11:13:49', 0, NULL, 0, NULL, 1),
(8986, 7090, '4', 'Vtu', '', 'B.e', '2021', 62.00, '', 1, '2021-12-11 11:20:19', 0, NULL, 0, NULL, 1),
(8987, 7093, '3', 'Anna university ', '', 'B. E', '2017', 7.96, '', 1, '2021-12-11 01:02:35', 0, NULL, 0, NULL, 1),
(8988, 7085, '3', 'ethiraj college for women', '', 'b.sc clinical nutrition and dietetics', '2021', 7.07, '', 1, '2021-12-11 01:56:45', 0, NULL, 0, NULL, 1),
(8989, 7091, '4', 'Anna University', '', 'MBA', '2020', 7.44, '', 1, '2021-12-11 05:33:36', 0, NULL, 0, NULL, 1),
(8990, 7062, '3', 'gitam university vishakapatnam', '', 'b.com', '2020', 71.40, '', 1, '2021-12-12 02:26:06', 0, NULL, 0, NULL, 1),
(8991, 7095, '4', 'Madras University', '', 'MBA HR', '2021', 73.00, '', 1, '2021-12-12 07:21:44', 0, NULL, 0, NULL, 1),
(8992, 7095, '4', 'Madras University', '', 'MBA HR', '2021', 73.00, '', 1, '2021-12-12 07:22:21', 0, NULL, 0, NULL, 1),
(8993, 7097, '3', 'Madras University City', '', 'B.sc computer science', '2021', 72.00, '', 1, '2021-12-13 12:23:35', 0, NULL, 0, NULL, 1),
(8994, 7101, '3', 'madras  university', '', 'ba economics', '2021', 65.00, '', 1, '2021-12-13 01:42:36', 1, '2021-12-13 01:43:41', 0, NULL, 0),
(8995, 7101, '3', 'madras university', '', 'ba economics', '2021', 65.00, '', 1, '2021-12-13 01:44:32', 0, NULL, 0, NULL, 1),
(8996, 7079, '3', 'jntua', '', 'b.tech', '2017', 56.00, '', 1, '2021-12-13 02:34:44', 0, NULL, 0, NULL, 1),
(8997, 7079, '2', 'board of intermediate ap', '', '', '2013', 76.00, '', 1, '2021-12-13 02:36:00', 0, NULL, 0, NULL, 1),
(8998, 7079, '1', 'ssc', '', '', '2011', 74.00, '', 1, '2021-12-13 02:36:20', 0, NULL, 0, NULL, 1),
(8999, 7102, '2', 'state board', '', '', '2017', 60.00, '', 1, '2021-12-13 04:24:55', 0, NULL, 0, NULL, 1),
(9000, 7102, '3', 'anna university', '', 'be', '2021', 70.00, '', 1, '2021-12-13 04:25:32', 0, NULL, 0, NULL, 1),
(9001, 7103, '4', 'JNTU Hyderabad', '', 'B tech civil engineering', '2015', 59.03, '', 1, '2021-12-13 05:16:15', 0, NULL, 0, NULL, 1),
(9002, 7104, '3', 'Madras University ', '', 'BSc', '2021', 74.40, '', 1, '2021-12-13 06:43:16', 0, NULL, 0, NULL, 1),
(9003, 7104, '2', 'State board', '', '', '2017', 76.40, '', 1, '2021-12-13 06:44:17', 0, NULL, 0, NULL, 1),
(9004, 7104, '1', 'State board', '', '', '2015', 87.60, '', 1, '2021-12-13 06:44:50', 0, NULL, 0, NULL, 1),
(9005, 7092, '3', 'Anna University', '', 'B.E ECE', '2020', 6.50, '', 1, '2021-12-13 08:11:36', 0, NULL, 0, NULL, 1),
(9006, 7105, '3', 'Madras University', '', 'BA English literature', '2021', 65.00, '', 1, '2021-12-14 10:44:30', 0, NULL, 0, NULL, 1),
(9007, 7107, '4', 'University', '', '', '2019', 78.00, '', 1, '2021-12-14 11:13:47', 1, '2021-12-14 11:15:08', 0, NULL, 0),
(9008, 7107, '4', 'Mgr University', '', 'MBA', '2019', 70.00, '', 1, '2021-12-14 11:14:18', 1, '2021-12-14 11:14:59', 0, NULL, 0),
(9009, 7107, '4', 'University', '', 'MBA', '2019', 70.00, '', 1, '2021-12-14 11:14:37', 1, '2021-12-14 11:15:03', 0, NULL, 0),
(9010, 7108, '2', 'state board', '', '', '2015', 67.00, '', 1, '2021-12-14 11:14:51', 0, NULL, 0, NULL, 1),
(9011, 7108, '3', 'madras university', '', 'bba', '2017', 62.00, '', 1, '2021-12-14 11:15:16', 0, NULL, 0, NULL, 1),
(9012, 7107, '1', 'State board', '', '', '2013', 76.00, '', 1, '2021-12-14 11:15:48', 1, '2021-12-14 11:17:02', 0, NULL, 1),
(9013, 7107, '3', 'Barathiyar University ', '', 'Bcom.cS', '2017', 68.00, '', 1, '2021-12-14 11:16:43', 0, NULL, 0, NULL, 1),
(9014, 7107, '4', 'Mgr University', '', 'MBA', '2019', 72.00, '', 1, '2021-12-14 11:17:25', 0, NULL, 0, NULL, 1),
(9015, 7109, '3', 'B.S.Abdur Rahman Crescent institute of Science and Technology', '', 'B.tech Biotechnology', '2021', 7.25, '', 1, '2021-12-14 12:18:02', 0, NULL, 0, NULL, 1),
(9016, 7110, '5', 'Dote', '', 'DEEE', '2018', 60.00, '', 1, '2021-12-14 02:36:10', 1, '2021-12-14 02:37:12', 0, NULL, 0),
(9017, 7111, '3', 'Ramakrishna mission Vivekananda college', '', 'B.Com(C.A)', '2020', 58.00, '', 1, '2021-12-14 02:36:15', 0, NULL, 0, NULL, 1),
(9018, 7110, '5', 'DOTE', '', 'DEEE', '2018', 60.00, '', 1, '2021-12-14 02:38:06', 0, NULL, 0, NULL, 1),
(9019, 7114, '3', 'JNTUH', '', '', '2017', 72.00, '', 1, '2021-12-14 05:07:59', 0, NULL, 0, NULL, 1),
(9020, 7116, '3', 'Visvesvaraya technological University', '', 'BE', '2018', 58.00, '', 1, '2021-12-14 06:53:57', 0, NULL, 0, NULL, 1),
(9021, 7117, '3', 'University of madras', '', 'B.com(General)', '2021', 60.00, '', 1, '2021-12-15 10:26:56', 0, NULL, 0, NULL, 1),
(9022, 7119, '3', 'Madras university', '', 'Bcom', '2021', 75.00, '', 1, '2021-12-15 10:39:33', 0, NULL, 0, NULL, 1),
(9023, 7118, '3', 'State', '', 'B.com', '2021', 54.00, '', 1, '2021-12-15 10:42:18', 0, NULL, 0, NULL, 1),
(9024, 6370, '3', 'Madras University', '', 'B.com', '2021', 70.00, '', 1, '2021-12-15 11:01:57', 0, NULL, 0, NULL, 1),
(9025, 7120, '3', 'CBSE', '', '', '2021', 40.00, '', 1, '2021-12-15 11:57:20', 0, NULL, 0, NULL, 1),
(9026, 7122, '4', 'Krishna university', '', 'MBA', '2021', 73.00, '', 1, '2021-12-15 12:08:54', 0, NULL, 0, NULL, 1),
(9027, 7124, '4', 'Bharathiar university', '', 'Master\'s in international buisness', '2021', 69.00, '', 1, '2021-12-15 12:09:27', 0, NULL, 0, NULL, 1),
(9028, 7125, '4', 'Periyar University', '', 'Computer science', '2021', 71.00, '', 1, '2021-12-15 12:14:56', 0, NULL, 0, NULL, 1),
(9029, 7125, '3', 'Periyar University', '', 'Computer science', '2019', 72.00, '', 1, '2021-12-15 12:15:30', 0, NULL, 0, NULL, 1),
(9030, 7126, '3', 'Anna University', '', 'BE', '2020', 72.00, '', 1, '2021-12-15 12:42:40', 0, NULL, 0, NULL, 1),
(9031, 7126, '2', 'Kerala Board', '', '', '2016', 87.00, '', 1, '2021-12-15 12:43:27', 0, NULL, 0, NULL, 1),
(9032, 7126, '1', 'Kerala', '', '', '2014', 95.00, '', 1, '2021-12-15 12:45:00', 0, NULL, 0, NULL, 1),
(9033, 7128, '4', 'Kuvempu University', '', 'M.com', '2020', 61.00, '', 1, '2021-12-15 12:48:09', 0, NULL, 0, NULL, 1),
(9034, 7129, '3', 'Prist university ', '', 'B. Tech', '2021', 7.34, '', 1, '2021-12-15 01:14:23', 0, NULL, 0, NULL, 1),
(9035, 7130, '1', 'cbse', '', '', '2012', 7.20, '', 1, '2021-12-15 01:26:51', 1, '2021-12-15 01:27:08', 0, NULL, 1),
(9036, 7130, '2', 'state board', '', '', '2014', 88.00, '', 1, '2021-12-15 01:27:32', 0, NULL, 0, NULL, 1),
(9037, 7130, '3', 'university of madras', '', 'b.com', '2017', 67.00, '', 1, '2021-12-15 01:28:17', 0, NULL, 0, NULL, 1),
(9038, 7130, '4', 'anna university', '', 'mba', '2021', 78.00, '', 1, '2021-12-15 01:28:55', 0, NULL, 0, NULL, 1),
(9039, 7131, '1', 'State board', '', '', '2011', 88.20, '', 1, '2021-12-15 01:37:31', 0, NULL, 0, NULL, 1),
(9040, 7131, '2', 'State board', '', '', '2013', 69.20, '', 1, '2021-12-15 01:37:56', 0, NULL, 0, NULL, 1),
(9041, 7131, '3', 'Anna university', '', 'B. E (EEE)', '2017', 65.40, '', 1, '2021-12-15 01:38:42', 0, NULL, 0, NULL, 1),
(9042, 7127, '3', 'Madras University', '', 'BBA', '2021', 71.90, '', 1, '2021-12-15 02:41:40', 0, NULL, 0, NULL, 1),
(9043, 7135, '3', 'Osmania University', '', 'Yes', '2019', 70.00, '', 1, '2021-12-15 02:44:29', 0, NULL, 0, NULL, 1),
(9044, 7134, '4', 'Jntu Anantapur', '', 'MBA', '2021', 79.27, '', 1, '2021-12-15 03:00:13', 0, NULL, 0, NULL, 1),
(9045, 7134, '3', 'Sv university', '', 'B.com', '2019', 79.00, '', 1, '2021-12-15 03:00:48', 0, NULL, 0, NULL, 1),
(9046, 7134, '2', 'Board of intermediate education', '', '', '2016', 86.10, '', 1, '2021-12-15 03:01:27', 0, NULL, 0, NULL, 1),
(9047, 7137, '3', 'Autonomous ( Madras University )', '', 'B.com', '2018', 55.00, '', 1, '2021-12-15 04:00:48', 0, NULL, 0, NULL, 1),
(9048, 7138, '3', 'Anna University', '', 'B.E', '2020', 6.50, '', 1, '2021-12-15 04:39:21', 0, NULL, 0, NULL, 1),
(9049, 7140, '4', 'bharadisan university', '', 'mba', '2017', 70.00, '', 1, '2021-12-15 04:57:11', 0, NULL, 0, NULL, 1),
(9050, 7140, '3', 'bharadisan university', '', 'ba', '2015', 69.00, '', 1, '2021-12-15 04:58:29', 0, NULL, 0, NULL, 1),
(9051, 7141, '3', 'Anna University', '', 'BE Mechanical', '2020', 75.00, '', 1, '2021-12-15 05:54:54', 0, NULL, 0, NULL, 1),
(9052, 7142, '4', 'Madras university ', '', 'Bma finance ', '2017', 65.00, '', 1, '2021-12-15 07:11:32', 0, NULL, 0, NULL, 1),
(9053, 7142, '3', 'Vels university ', '', 'B com general ', '2015', 63.00, '', 1, '2021-12-15 07:12:07', 0, NULL, 0, NULL, 1),
(9054, 7144, '3', 'Bharathiyar University ', '', 'BBA IB ', '2020', 60.00, '', 1, '2021-12-16 09:42:45', 0, NULL, 0, NULL, 1),
(9055, 7146, '3', 'Madras university', '', 'Bcom', '2018', 53.00, '', 1, '2021-12-16 10:25:37', 0, NULL, 0, NULL, 1),
(9056, 7146, '2', 'State board', '', '', '2015', 64.00, '', 1, '2021-12-16 10:25:59', 0, NULL, 0, NULL, 1),
(9057, 7146, '1', 'State board', '', '', '2013', 66.00, '', 1, '2021-12-16 10:26:25', 0, NULL, 0, NULL, 1),
(9058, 7145, '3', 'Madrash university', '', 'BBA', '2020', 61.00, '', 1, '2021-12-16 10:29:57', 0, NULL, 0, NULL, 1),
(9059, 7147, '3', 'Anna university', '', 'B.E-Mechanical', '2015', 68.00, '', 1, '2021-12-16 11:03:56', 0, NULL, 0, NULL, 1),
(9060, 7148, '3', 'University of madras', '', 'B.AEnglish', '2021', 85.00, '', 1, '2021-12-16 11:20:53', 0, NULL, 0, NULL, 1),
(9061, 7149, '1', 'West Bengal Board of Secondary Education', '', '', '2010', 60.00, '', 1, '2021-12-16 11:44:50', 0, NULL, 0, NULL, 1),
(9062, 7149, '2', 'West Bengal Council of Higher Secondary Education', '', '', '2012', 67.00, '', 1, '2021-12-16 11:45:08', 0, NULL, 0, NULL, 1),
(9063, 7149, '3', 'University of Calcutta', '', 'Bachelor of Commerce Graduate', '2015', 43.00, '', 1, '2021-12-16 11:45:43', 0, NULL, 0, NULL, 1),
(9064, 7149, '5', 'West Bengal State Council of Technical Education', '', 'Certificate in Financial Accounting and Services', '2017', 60.00, '', 1, '2021-12-16 11:46:17', 0, NULL, 0, NULL, 1),
(9065, 7150, '3', 'Jawaharlal Nehru technological university', '', 'B.Tech', '2020', 70.00, '', 1, '2021-12-16 12:06:44', 0, NULL, 0, NULL, 1),
(9066, 7139, '3', 'University', '', 'BBA', '2018', 70.00, '', 1, '2021-12-16 12:12:10', 0, NULL, 0, NULL, 1),
(9067, 7151, '1', 'Andhra board', '', '', '2011', 67.00, '', 1, '2021-12-16 12:25:42', 0, NULL, 0, NULL, 1),
(9068, 7151, '2', 'Andra board', '', '', '2013', 60.00, '', 1, '2021-12-16 12:26:12', 0, NULL, 0, NULL, 1),
(9069, 7152, '3', 'University of Madras', '', 'BCA', '2021', 65.00, '', 1, '2021-12-16 12:54:27', 0, NULL, 0, NULL, 1),
(9070, 7153, '4', 'Pondicherry University', '', 'MBA Finance ', '2021', 68.00, '', 1, '2021-12-16 01:22:11', 0, NULL, 0, NULL, 1),
(9071, 7155, '3', 'University', '', 'BE', '2021', 7.11, '', 1, '2021-12-16 02:38:21', 0, NULL, 0, NULL, 1),
(9072, 7158, '2', 'Cbse', '', '', '2014', 60.00, '', 1, '2021-12-16 02:58:15', 1, '2021-12-16 02:58:32', 0, NULL, 0),
(9073, 7158, '3', 'Madras University', '', 'B.com computer application', '2019', 65.50, '', 1, '2021-12-16 02:59:06', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9074, 7158, '4', 'Hindustan University', '', 'Mba ', '2021', 8.30, '', 1, '2021-12-16 02:59:28', 0, NULL, 0, NULL, 1),
(9075, 7159, '3', 'University ', '', 'BCA', '2021', 79.30, '', 1, '2021-12-16 03:19:30', 0, NULL, 0, NULL, 1),
(9076, 7160, '4', 'Madras university', '', 'MBA HR', '2020', 68.00, '', 1, '2021-12-16 03:58:06', 0, NULL, 0, NULL, 1),
(9077, 7160, '3', 'Siet college', '', 'Bsc C.S', '2017', 72.00, '', 1, '2021-12-16 04:00:17', 0, NULL, 0, NULL, 1),
(9078, 7160, '2', 'State board', '', '', '2014', 78.00, '', 1, '2021-12-16 04:00:46', 0, NULL, 0, NULL, 1),
(9079, 7160, '1', 'State board', '', '', '2012', 80.00, '', 1, '2021-12-16 04:01:16', 0, NULL, 0, NULL, 1),
(9080, 7156, '3', 'University', '', 'B.A. Economics', '2020', 78.00, '', 1, '2021-12-16 04:40:46', 0, NULL, 0, NULL, 1),
(9081, 7162, '4', 'Vels university ', '', 'MCA ', '2015', 93.00, '', 1, '2021-12-16 07:59:31', 0, NULL, 0, NULL, 1),
(9082, 7165, '3', 'Madras University', '', 'B.com', '2016', 56.00, '', 1, '2021-12-17 11:02:18', 0, NULL, 0, NULL, 1),
(9083, 7154, '4', 'Anna University', '', 'M.b.a', '2021', 8.20, '', 1, '2021-12-17 11:05:55', 1, '2021-12-17 11:06:10', 0, NULL, 0),
(9084, 7154, '3', 'Madras University', '', 'B.b.a', '2019', 70.00, '', 1, '2021-12-17 11:06:50', 0, NULL, 0, NULL, 1),
(9085, 7154, '4', 'Anna University', '', 'M.b.a', '2021', 8.20, '', 1, '2021-12-17 11:07:20', 0, NULL, 0, NULL, 1),
(9086, 7161, '3', 'University ', '', 'B.sc computer science ', '2021', 66.00, '', 1, '2021-12-17 12:20:31', 0, NULL, 0, NULL, 1),
(9087, 7166, '4', 'University', '', 'MBA', '2020', 70.00, '', 1, '2021-12-17 01:13:40', 0, NULL, 0, NULL, 1),
(9088, 7170, '4', 'Banglore University', '', 'B com', '2020', 74.00, '', 1, '2021-12-17 03:15:47', 0, NULL, 0, NULL, 1),
(9089, 7171, '4', 'Anna University', '', 'MBA', '2021', 75.00, '', 1, '2021-12-17 03:34:44', 0, NULL, 0, NULL, 1),
(9090, 7171, '3', 'Bharadhidasan University', '', 'CS', '2019', 74.00, '', 1, '2021-12-17 03:36:48', 1, '2021-12-17 03:38:00', 0, NULL, 1),
(9091, 7172, '3', 'Stella Maris college ', '', 'B. Com general ', '2021', 60.00, '', 1, '2021-12-17 03:41:04', 0, NULL, 0, NULL, 1),
(9092, 7169, '3', 'Annamalai', '', 'BBA', '2020', 75.00, '', 1, '2021-12-17 03:42:04', 0, NULL, 0, NULL, 1),
(9093, 7169, '2', 'State', '', '', '2005', 80.00, '', 1, '2021-12-17 03:42:25', 0, NULL, 0, NULL, 1),
(9094, 7169, '1', 'State', '', '', '2003', 85.00, '', 1, '2021-12-17 03:42:42', 0, NULL, 0, NULL, 1),
(9095, 7173, '4', 'pondicherry university', '', 'master of computer application', '2019', 84.00, '', 1, '2021-12-17 04:18:15', 0, NULL, 0, NULL, 1),
(9096, 7173, '3', 'thiruvalluvar university', '', 'Bachelor of computer science', '2015', 72.00, '', 1, '2021-12-17 04:19:29', 0, NULL, 0, NULL, 1),
(9097, 7173, '2', 'state board', '', '', '2012', 57.00, '', 1, '2021-12-17 04:20:04', 0, NULL, 0, NULL, 1),
(9098, 7173, '1', 'state board', '', '', '2010', 53.00, '', 1, '2021-12-17 04:20:52', 0, NULL, 0, NULL, 1),
(9099, 7175, '4', 'Maulana Abul Kalam Azad University of technology WB', '', 'MTECH', '2021', 77.00, '', 1, '2021-12-17 06:09:57', 0, NULL, 0, NULL, 1),
(9100, 7163, '3', 'manonmanium sundharanar university', '', 'bca', '2021', 61.00, '', 1, '2021-12-17 06:30:48', 0, NULL, 0, NULL, 1),
(9101, 7163, '5', 'tndote', '', 'diploma in computer technology', '2014', 82.00, '', 1, '2021-12-17 06:31:37', 0, NULL, 0, NULL, 1),
(9102, 7178, '3', 'Bharadhidhasan University', '', 'B.B.A', '2020', 65.00, '', 1, '2021-12-17 08:08:46', 0, NULL, 0, NULL, 1),
(9103, 7181, '3', 'Madras University', '', 'B.COM(general)', '2017', 84.00, '', 1, '2021-12-18 08:13:57', 0, NULL, 0, NULL, 1),
(9104, 7176, '1', 'karnataka sslc board', '', '', '2012', 54.24, '', 1, '2021-12-18 09:52:57', 0, NULL, 0, NULL, 1),
(9105, 7176, '2', 'department of pre-university education', '', '', '2014', 56.83, '', 1, '2021-12-18 09:54:51', 0, NULL, 0, NULL, 1),
(9106, 7176, '3', 'banglore university', '', 'b.com', '2021', 70.00, '', 1, '2021-12-18 09:55:49', 0, NULL, 0, NULL, 1),
(9107, 7182, '3', 'University of Madras', '', 'B.com ISM', '2020', 87.50, '', 1, '2021-12-18 09:56:58', 0, NULL, 0, NULL, 1),
(9108, 7176, '4', 'banglore unversity', '', 'master of business administration', '2021', 60.00, '', 1, '2021-12-18 09:57:05', 0, NULL, 0, NULL, 1),
(9109, 3212, '4', 'Sastra University', '', 'Mba', '2016', 66.00, '', 1, '2021-12-18 10:40:26', 0, NULL, 0, NULL, 1),
(9110, 7183, '3', 'Anna University', '', 'Be electrical engineering', '2015', 60.00, '', 1, '2021-12-18 10:56:36', 0, NULL, 0, NULL, 1),
(9111, 7184, '3', 'AM Jain college', '', 'B. Com', '2021', 78.00, '', 1, '2021-12-18 12:01:01', 0, NULL, 0, NULL, 1),
(9112, 7184, '2', 'Jaigopal school', '', '', '2018', 55.00, '', 1, '2021-12-18 12:01:22', 0, NULL, 0, NULL, 1),
(9113, 7184, '1', 'Jai gopal School', '', '', '2016', 60.00, '', 1, '2021-12-18 12:01:42', 0, NULL, 0, NULL, 1),
(9114, 7185, '4', ' srm university', '', 'mba', '2020', 80.00, '', 1, '2021-12-18 12:27:26', 0, NULL, 0, NULL, 1),
(9115, 7186, '4', 'Manonmaniyam Sundaranar University', '', 'MSc IT', '2020', 76.00, '', 1, '2021-12-18 01:48:14', 0, NULL, 0, NULL, 1),
(9116, 7187, '1', 'State board', '', '', '2015', 84.00, '', 1, '2021-12-18 03:28:39', 0, NULL, 0, NULL, 1),
(9117, 7187, '2', 'State boars', '', '', '2017', 83.00, '', 1, '2021-12-18 03:29:11', 0, NULL, 0, NULL, 1),
(9118, 7187, '3', 'C. Kandhaswami Naidu College for Mens ', '', 'B.com', '2020', 55.00, '', 1, '2021-12-18 03:30:10', 0, NULL, 0, NULL, 1),
(9119, 7188, '2', 'Osmania university ', '', '', '2017', 50.00, '', 1, '2021-12-18 04:22:15', 0, NULL, 0, NULL, 1),
(9120, 7190, '3', 'Jntuh', '', 'Btech civil', '2018', 50.00, '', 1, '2021-12-18 05:03:56', 0, NULL, 0, NULL, 1),
(9121, 7190, '2', 'Dr br ambedkar', '', 'Bcom', '2023', 65.00, '', 1, '2021-12-18 05:04:54', 0, NULL, 0, NULL, 1),
(9122, 7191, '5', 'Department of technical education aa', '', 'Degree', '2019', 75.00, '', 1, '2021-12-18 07:00:18', 0, NULL, 0, NULL, 1),
(9123, 7193, '3', 'Madras University ', '', 'B. Com General ', '2019', 61.00, '', 1, '2021-12-19 04:37:07', 0, NULL, 0, NULL, 1),
(9124, 7194, '3', 'Madras University ', '', '', '2022', 68.00, '', 1, '2021-12-19 09:21:22', 0, NULL, 0, NULL, 1),
(9125, 7195, '3', 'Madras University ', '', '', '2020', 68.00, '', 1, '2021-12-19 09:53:09', 0, NULL, 0, NULL, 1),
(9126, 7198, '3', 'Banglore University', '', '', '2019', 60.00, '', 1, '2021-12-20 11:10:35', 0, NULL, 0, NULL, 1),
(9127, 7200, '5', 'Anna university ', '', 'Electrical and electronics ', '2017', 78.00, '', 1, '2021-12-20 11:15:10', 0, NULL, 0, NULL, 1),
(9128, 7199, '2', 'Anna university ', '', '', '2017', 76.00, '', 1, '2021-12-20 11:21:29', 0, NULL, 0, NULL, 1),
(9129, 7201, '3', 'Madras University', '', 'B.com c.s', '2018', 64.00, '', 1, '2021-12-20 11:51:33', 0, NULL, 0, NULL, 1),
(9130, 7202, '3', 'University of madras', '', 'BBA', '2010', 60.00, '', 1, '2021-12-20 01:17:18', 0, NULL, 0, NULL, 1),
(9131, 7203, '4', 'VTU', '', 'MBA', '2021', 72.00, '', 1, '2021-12-20 01:39:05', 0, NULL, 0, NULL, 1),
(9132, 7205, '3', 'Autonomous', '', 'B.com', '2019', 62.00, '', 1, '2021-12-20 01:49:57', 0, NULL, 0, NULL, 1),
(9133, 7205, '2', 'State board', '', '', '2016', 88.00, '', 1, '2021-12-20 01:50:23', 0, NULL, 0, NULL, 1),
(9134, 7205, '1', 'State board', '', '', '2014', 77.00, '', 1, '2021-12-20 01:50:41', 0, NULL, 0, NULL, 1),
(9135, 7206, '3', 'Madras University', '', 'BBA', '2010', 61.10, '', 1, '2021-12-20 03:23:27', 0, NULL, 0, NULL, 1),
(9136, 7206, '2', 'Sarojini Varadappan Girls Higher Secondary School', '', '', '2007', 64.00, '', 1, '2021-12-20 03:24:52', 0, NULL, 0, NULL, 1),
(9137, 7206, '1', 'State board', '', '', '2004', 50.00, '', 1, '2021-12-20 03:25:17', 0, NULL, 0, NULL, 1),
(9138, 7208, '4', 'Sri Sairam institute of technology', '', 'MBA Finance and marketing', '2021', 7.80, '', 1, '2021-12-20 05:36:03', 0, NULL, 0, NULL, 1),
(9139, 7204, '4', 'Anna University', '', 'MBA', '2019', 72.00, '', 1, '2021-12-21 11:26:35', 0, NULL, 0, NULL, 1),
(9140, 7212, '3', 'Presidency college ', '', 'B.sc', '2018', 59.00, '', 1, '2021-12-21 11:32:54', 0, NULL, 0, NULL, 1),
(9141, 7213, '3', 'Anna University', '', 'BE', '2019', 6.90, '', 1, '2021-12-21 11:43:55', 0, NULL, 0, NULL, 1),
(9142, 7211, '3', 'Madras University', '', 'BA (Economic)', '2020', 62.05, '', 1, '2021-12-21 11:45:50', 0, NULL, 0, NULL, 1),
(9143, 7214, '2', 'ICF silver jubilee matriculation higher secondary school', '', '', '2015', 54.00, '', 1, '2021-12-21 12:46:33', 0, NULL, 0, NULL, 1),
(9144, 7215, '4', 'Alagappa university', '', 'MBA', '2021', 78.00, '', 1, '2021-12-21 01:17:32', 0, NULL, 0, NULL, 1),
(9145, 7216, '4', 'University of madras ', '', 'MBA', '2020', 0.00, '', 1, '2021-12-21 01:40:47', 0, NULL, 0, NULL, 1),
(9146, 7216, '3', 'University of madras ', '', 'Bcom', '2018', 64.00, '', 1, '2021-12-21 01:41:58', 0, NULL, 0, NULL, 1),
(9147, 7216, '2', 'State board of tamil nadu ', '', '', '2015', 82.90, '', 1, '2021-12-21 01:42:24', 0, NULL, 0, NULL, 1),
(9148, 7216, '1', 'State board of tamil nadu ', '', '', '2013', 83.40, '', 1, '2021-12-21 01:42:51', 0, NULL, 0, NULL, 1),
(9149, 7218, '3', 'Bharathiayar University', '', 'BCA', '2016', 59.00, '', 1, '2021-12-21 02:44:21', 0, NULL, 0, NULL, 1),
(9150, 7217, '3', 'Madurai kamarajar University', '', 'B.com ec', '2019', 55.00, '', 1, '2021-12-21 02:47:20', 0, NULL, 0, NULL, 1),
(9151, 7220, '1', 'CBSE', '', '', '2012', 76.00, '', 1, '2021-12-21 03:49:11', 0, NULL, 0, NULL, 1),
(9152, 7220, '2', 'Karnataka ', '', '', '2014', 73.00, '', 1, '2021-12-21 03:49:33', 0, NULL, 0, NULL, 1),
(9153, 7220, '3', 'Bharathiar University ', '', 'B.com PA', '2017', 65.00, '', 1, '2021-12-21 03:52:12', 0, NULL, 0, NULL, 1),
(9154, 7220, '4', 'Bharathiar University ', '', 'M.com', '2020', 87.00, '', 1, '2021-12-21 03:53:00', 0, NULL, 0, NULL, 1),
(9155, 7220, '4', 'Bharathiar University ', '', 'MBA (hR)', '2023', 80.00, '', 1, '2021-12-21 03:53:51', 0, NULL, 0, NULL, 1),
(9156, 7221, '4', 'Anna University', '', 'MBA', '2019', 80.00, '', 1, '2021-12-21 04:06:13', 0, NULL, 0, NULL, 1),
(9157, 7189, '3', 'JNTUH', '', 'Civilengineering', '2018', 59.00, '', 1, '2021-12-22 08:03:33', 0, NULL, 0, NULL, 1),
(9158, 7223, '3', 'dr. mgr Educational institute', '', 'b.com corporate secretaryship', '2020', 76.00, '', 1, '2021-12-22 10:37:32', 0, NULL, 0, NULL, 1),
(9159, 7224, '3', 'MADURAI KAMARAJ UNIVERSITY', '', 'BCA', '2016', 58.00, '', 1, '2021-12-22 10:56:52', 0, NULL, 0, NULL, 1),
(9160, 7225, '3', 'Anna University', '', 'Bachelor of engineering', '2018', 64.00, '', 1, '2021-12-22 11:24:04', 0, NULL, 0, NULL, 1),
(9161, 7219, '3', 'Hindustan University ', '', 'Bca', '2021', 70.00, '', 1, '2021-12-22 11:38:22', 0, NULL, 0, NULL, 1),
(9162, 7227, '3', 'chennai national arts and science ', '', 'bba', '2015', 61.00, '', 1, '2021-12-22 11:49:51', 0, NULL, 0, NULL, 1),
(9163, 7226, '4', 'Board', '', 'MA English ', '2015', 65.00, '', 1, '2021-12-22 11:56:40', 0, NULL, 0, NULL, 1),
(9164, 7228, '3', 'Anna University', '', 'Be', '2018', 76.00, '', 1, '2021-12-22 12:15:14', 0, NULL, 0, NULL, 1),
(9165, 7229, '4', 'Measi institute of management', '', 'MBA', '2021', 75.00, '', 1, '2021-12-22 12:32:20', 0, NULL, 0, NULL, 1),
(9166, 7229, '3', 'Cresent institute of science and technology', '', 'B.Tech', '2018', 65.00, '', 1, '2021-12-22 12:33:07', 0, NULL, 0, NULL, 1),
(9167, 7230, '3', 'Shasun jain College tnagar', '', 'Bcom gen', '2018', 65.00, '', 1, '2021-12-22 12:43:40', 0, NULL, 0, NULL, 1),
(9168, 7233, '3', 'Anna Violet college', '', 'B. Com', '2020', 74.00, '', 1, '2021-12-22 01:20:15', 0, NULL, 0, NULL, 1),
(9169, 7233, '2', 'Vijayanath school', '', '', '2017', 79.00, '', 1, '2021-12-22 01:20:48', 0, NULL, 0, NULL, 1),
(9170, 7233, '1', 'TV nagar ednl society school', '', '', '2015', 80.00, '', 1, '2021-12-22 01:21:25', 0, NULL, 0, NULL, 1),
(9171, 7234, '4', 'Bharathiyar University', '', 'MSW', '2019', 70.00, '', 1, '2021-12-22 03:01:55', 0, NULL, 0, NULL, 1),
(9172, 7235, '4', 'University', '', 'MBA', '2019', 68.00, '', 1, '2021-12-22 03:50:14', 0, NULL, 0, NULL, 1),
(9173, 7235, '3', 'University', '', 'B.C.a', '2017', 78.00, '', 1, '2021-12-22 03:50:41', 0, NULL, 0, NULL, 1),
(9174, 7236, '4', 'Nobel PG college ', '', 'MBA(HR)', '2019', 79.00, '', 1, '2021-12-22 06:48:37', 0, NULL, 0, NULL, 1),
(9175, 7236, '3', 'RBVRR women\'s college ', '', 'B com', '2017', 80.00, '', 1, '2021-12-22 06:49:25', 0, NULL, 0, NULL, 1),
(9176, 7237, '3', 'Periyar University', '', 'BSC', '2017', 70.00, '', 1, '2021-12-23 10:51:29', 0, NULL, 0, NULL, 1),
(9177, 7238, '4', 'Periyar University', '', 'M.com', '2020', 63.00, '', 1, '2021-12-23 10:52:18', 0, NULL, 0, NULL, 1),
(9178, 7240, '2', 'Angel school', '', '', '2014', 88.00, '', 1, '2021-12-23 11:20:51', 0, NULL, 0, NULL, 1),
(9179, 7240, '3', 'loyola college', '', 'bBA', '2017', 61.00, '', 1, '2021-12-23 11:21:19', 0, NULL, 0, NULL, 1),
(9180, 7239, '3', 'Madars University', '', 'Bcom', '2021', 61.00, '', 1, '2021-12-23 11:30:18', 0, NULL, 0, NULL, 1),
(9181, 7241, '3', 'Madras', '', 'Bsc', '2021', 72.00, '', 1, '2021-12-23 11:32:13', 0, NULL, 0, NULL, 1),
(9182, 7243, '3', 'Madras University', '', 'BBA', '2016', 75.00, '', 1, '2021-12-23 11:35:52', 0, NULL, 0, NULL, 1),
(9183, 7244, '3', 'University of medras', '', 'BBA', '2021', 70.00, '', 1, '2021-12-23 11:55:25', 0, NULL, 0, NULL, 1),
(9184, 7245, '5', 'Anna University', '', 'Mechanical engineering', '2021', 84.00, '', 1, '2021-12-23 11:56:22', 0, NULL, 0, NULL, 1),
(9185, 7246, '4', 'University if madras', '', 'Mba finance', '2013', 62.00, '', 1, '2021-12-23 12:03:55', 0, NULL, 0, NULL, 1),
(9186, 7246, '3', 'University of madras', '', 'B. Com', '2010', 60.00, '', 1, '2021-12-23 12:04:23', 0, NULL, 0, NULL, 1),
(9187, 7246, '2', 'Board', '', '', '2007', 70.00, '', 1, '2021-12-23 12:04:47', 0, NULL, 0, NULL, 1),
(9188, 7246, '1', 'Board', '', '', '2005', 65.00, '', 1, '2021-12-23 12:05:13', 0, NULL, 0, NULL, 1),
(9189, 7247, '3', 'dhanraj baid college', '', 'b.sc maths', '2016', 60.00, '', 1, '2021-12-23 01:44:26', 0, NULL, 0, NULL, 1),
(9190, 7248, '3', 'Sri Sankara College', '', 'BCA', '2021', 90.00, '', 1, '2021-12-23 03:07:29', 0, NULL, 0, NULL, 1),
(9191, 7249, '3', 'Anna University', '', 'BE', '2019', 6.90, '', 1, '2021-12-23 04:45:22', 0, NULL, 0, NULL, 1),
(9192, 7249, '2', 'Tamil Nadu', '', '', '2015', 70.00, '', 1, '2021-12-23 04:46:01', 0, NULL, 0, NULL, 1),
(9193, 7249, '1', 'State board', '', '', '2013', 90.00, '', 1, '2021-12-23 04:46:39', 0, NULL, 0, NULL, 1),
(9194, 7210, '3', 'annamalai university', '', 'bsc.horticulture', '2018', 91.00, '', 1, '2021-12-23 05:24:46', 0, NULL, 0, NULL, 1),
(9195, 7251, '3', 'Madras University', '', 'B.sc computer science', '2018', 70.00, '', 1, '2021-12-23 07:49:16', 0, NULL, 0, NULL, 1),
(9196, 7252, '3', 'Shri andal alagar college of engineering', '', 'bE CSE', '2019', 63.00, '', 1, '2021-12-23 11:28:19', 0, NULL, 0, NULL, 1),
(9197, 7253, '5', 'Government polytechnic for women Bangalore', '', '', '2019', 55.00, '', 1, '2021-12-24 10:54:39', 0, NULL, 0, NULL, 1),
(9198, 7254, '4', 'Anna University', '', 'Master of Business Administration', '2020', 70.00, '', 1, '2021-12-24 11:04:14', 0, NULL, 0, NULL, 1),
(9199, 7254, '3', 'Madras University', '', 'Bachelor of computer applications', '2018', 76.00, '', 1, '2021-12-24 11:05:30', 0, NULL, 0, NULL, 1),
(9200, 7254, '2', 'State board', '', '', '2015', 78.00, '', 1, '2021-12-24 11:05:57', 0, NULL, 0, NULL, 1),
(9201, 7254, '1', 'State board', '', '', '2013', 89.00, '', 1, '2021-12-24 11:06:23', 0, NULL, 0, NULL, 1),
(9202, 7255, '3', 'Banglore University', '', 'B.com', '2020', 68.00, '', 1, '2021-12-24 11:16:23', 0, NULL, 0, NULL, 1),
(9203, 7258, '5', 'Open University', '', 'DDTP', '2017', 70.00, '', 1, '2021-12-24 11:26:52', 0, NULL, 0, NULL, 1),
(9204, 7257, '3', 'Madras university', '', 'B. Com (g) ', '2019', 80.00, '', 1, '2021-12-24 11:28:14', 0, NULL, 0, NULL, 1),
(9205, 7259, '1', 'Pranathi junior college', '', '', '2015', 72.00, '', 1, '2021-12-24 11:44:14', 0, NULL, 0, NULL, 1),
(9206, 7259, '3', 'Pranathi junior college', '', '', '2015', 70.00, '', 1, '2021-12-24 11:44:55', 0, NULL, 0, NULL, 1),
(9207, 7261, '3', 'Mahatma gandhi university ', '', 'kakatiya degree collage', '2014', 68.00, '', 1, '2021-12-24 12:21:10', 0, NULL, 0, NULL, 1),
(9208, 7262, '3', 'University of Madras', '', 'BBA', '2021', 73.78, '', 1, '2021-12-24 12:30:24', 0, NULL, 0, NULL, 1),
(9209, 7263, '3', 'Madras University', '', 'BBA', '2020', 79.00, '', 1, '2021-12-24 12:49:02', 0, NULL, 0, NULL, 1),
(9210, 7264, '1', 'ghss vaniyambalam', '', '', '2010', 60.00, '', 1, '2021-12-24 12:57:07', 0, NULL, 0, NULL, 1),
(9211, 7265, '4', 'Kakatiya University', '', 'MBA', '2007', 63.00, '', 1, '2021-12-24 09:42:29', 0, NULL, 0, NULL, 1),
(9212, 7266, '4', 'Bangalore city university', '', 'MBA', '2021', 70.00, '', 1, '2021-12-25 10:22:26', 0, NULL, 0, NULL, 1),
(9213, 7266, '4', 'Bangalore city university', '', 'MBA', '2021', 70.00, '', 1, '2021-12-25 10:24:14', 0, NULL, 0, NULL, 1),
(9214, 7268, '4', 'Jntu', '', 'MBA', '2019', 7.00, '', 1, '2021-12-25 12:24:46', 0, NULL, 0, NULL, 1),
(9215, 7268, '3', 'Sai chaitanya degree college', '', 'B. Com (com) ', '2017', 57.90, '', 1, '2021-12-25 12:27:17', 0, NULL, 0, NULL, 1),
(9216, 7268, '2', 'Sri gayatri junior college', '', '', '2014', 64.50, '', 1, '2021-12-25 12:28:31', 0, NULL, 0, NULL, 1),
(9217, 7268, '1', 'Sri nayaki model high school', '', '', '2012', 8.00, '', 1, '2021-12-25 12:29:25', 0, NULL, 0, NULL, 1),
(9218, 7269, '3', 'Board of secondary education', '', 'Pursuing', '2021', 55.00, '', 1, '2021-12-25 02:14:40', 0, NULL, 0, NULL, 1),
(9219, 7270, '1', 'State board', '', '', '2011', 79.00, '', 1, '2021-12-25 07:06:13', 0, NULL, 0, NULL, 1),
(9220, 7270, '2', 'State board', '', '', '2013', 89.00, '', 1, '2021-12-25 07:06:37', 0, NULL, 0, NULL, 1),
(9221, 7270, '3', 'Thiruvallur univery', '', 'BCA', '2016', 80.00, '', 1, '2021-12-25 07:07:27', 0, NULL, 0, NULL, 1),
(9222, 7270, '4', 'Thiruvallur University', '', 'MBA', '2018', 83.00, '', 1, '2021-12-25 07:08:18', 0, NULL, 0, NULL, 1),
(9223, 7267, '2', 'BIE', '', '', '2012', 60.00, '', 1, '2021-12-26 02:27:24', 0, NULL, 0, NULL, 1),
(9224, 7271, '3', 'Anna University', '', 'Bachelor\'s in Electronics and Communication Engine', '2018', 64.50, '', 1, '2021-12-27 10:10:01', 0, NULL, 0, NULL, 1),
(9225, 7272, '4', 'Bharathidhasan University', '', 'M.Sc., Mathematics', '2021', 70.00, '', 1, '2021-12-27 10:25:52', 0, NULL, 0, NULL, 1),
(9226, 7272, '3', 'Madurai Kamaraj University', '', 'B.Sc., Mathematics', '2018', 63.28, '', 1, '2021-12-27 10:26:31', 0, NULL, 0, NULL, 1),
(9227, 7272, '2', 'Department of Government Examination- Tamilnadu', '', '', '2015', 80.02, '', 1, '2021-12-27 10:27:28', 0, NULL, 0, NULL, 1),
(9228, 7272, '1', 'Department of Government Examination- Tamilnadu', '', '', '2013', 88.05, '', 1, '2021-12-27 10:27:58', 0, NULL, 0, NULL, 1),
(9229, 7273, '4', 'Periyar University', '', 'M.A.,B.ED', '2019', 68.00, '', 1, '2021-12-27 10:39:23', 0, NULL, 0, NULL, 1),
(9230, 7275, '4', 'Madras University ', '', 'MBA HR', '2021', 85.00, '', 1, '2021-12-27 11:08:50', 0, NULL, 0, NULL, 1),
(9231, 7275, '3', 'Jamal Mohamed College', '', 'BSC CS', '2016', 60.00, '', 1, '2021-12-27 11:09:31', 0, NULL, 0, NULL, 1),
(9232, 7275, '1', 'Rice city matriculation school', '', '', '2010', 55.00, '', 1, '2021-12-27 11:10:10', 0, NULL, 0, NULL, 1),
(9233, 7275, '2', 'Kaligi Ranganathan monford higher secondary school', '', '', '2012', 60.00, '', 1, '2021-12-27 11:11:03', 0, NULL, 0, NULL, 1),
(9234, 7276, '3', 'Madras University', '', 'Bca', '2018', 65.00, '', 1, '2021-12-27 11:25:07', 0, NULL, 0, NULL, 1),
(9235, 7276, '1', 'Samachir kalvi', '', '', '2013', 70.00, '', 1, '2021-12-27 11:27:44', 0, NULL, 0, NULL, 1),
(9236, 7276, '2', 'Samicher kalvi', '', '', '2015', 60.00, '', 1, '2021-12-27 11:28:35', 0, NULL, 0, NULL, 1),
(9237, 7277, '3', 'Madras university', '', 'Bsc computer science', '2021', 62.00, '', 1, '2021-12-27 11:32:26', 0, NULL, 0, NULL, 1),
(9238, 7274, '3', 'Madras University', '', 'Bsc.electronics and comm sci', '2020', 90.00, '', 1, '2021-12-27 11:32:58', 0, NULL, 0, NULL, 1),
(9239, 7277, '1', 'Samachiar kalvi', '', '', '2013', 60.00, '', 1, '2021-12-27 11:33:36', 0, NULL, 0, NULL, 1),
(9240, 7277, '2', 'Samachiar kalvi', '', '', '2015', 58.00, '', 1, '2021-12-27 11:34:12', 0, NULL, 0, NULL, 1),
(9241, 7281, '1', 'State board', '', '', '2015', 61.00, '', 1, '2021-12-27 12:07:19', 0, NULL, 0, NULL, 1),
(9242, 7280, '3', 'Madras University', '', 'B . A Defence ', '2021', 65.00, '', 1, '2021-12-27 12:12:53', 0, NULL, 0, NULL, 1),
(9243, 7279, '3', 'Madras University', '', 'B.a', '2021', 60.00, '', 1, '2021-12-27 12:14:34', 0, NULL, 0, NULL, 1),
(9244, 7282, '3', 'annamalai uni ', '', 'be - chem engineer ', '2019', 83.00, '', 1, '2021-12-27 12:25:59', 0, NULL, 0, NULL, 1),
(9245, 7283, '2', 'Anna understand', '', '', '2013', 80.00, '', 1, '2021-12-27 12:52:42', 0, NULL, 0, NULL, 1),
(9246, 7287, '3', 'Madras university', '', 'B.sc ecs ', '2015', 72.00, '', 1, '2021-12-27 03:35:59', 0, NULL, 0, NULL, 1),
(9247, 7287, '2', 'Matric', '', '', '2009', 50.00, '', 1, '2021-12-27 03:38:18', 0, NULL, 0, NULL, 1),
(9248, 7285, '3', 'ou', '', 'degree', '2016', 60.00, '', 50, '2021-12-27 03:38:42', 0, NULL, 0, NULL, 1),
(9249, 7287, '1', 'Radiance matric higher sec school', '', '', '2012', 56.00, '', 1, '2021-12-27 03:39:03', 0, NULL, 0, NULL, 1),
(9250, 7296, '4', 'Shree Venkateshwara Hi-tech engineering college, Anna University ', '', 'MBA ', '2019', 75.00, '', 1, '2021-12-28 11:43:34', 0, NULL, 0, NULL, 1),
(9251, 7295, '3', 'Madras University', '', 'B.com(CA)', '2014', 60.00, '', 1, '2021-12-28 11:57:17', 0, NULL, 0, NULL, 1),
(9252, 7288, '4', 'PGDM', '', 'ICBM', '2020', 60.00, '', 1, '2021-12-28 11:57:40', 0, NULL, 0, NULL, 1),
(9253, 7288, '3', 'Kakatiya University', '', 'Bharathi degree college', '2017', 58.00, '', 1, '2021-12-28 11:58:34', 0, NULL, 0, NULL, 1),
(9254, 7288, '2', 'Intermediate', '', '', '2014', 60.00, '', 1, '2021-12-28 11:58:55', 0, NULL, 0, NULL, 1),
(9255, 7288, '1', 'S. R school', '', '', '2011', 55.00, '', 1, '2021-12-28 11:59:27', 0, NULL, 0, NULL, 1),
(9256, 7290, '4', 'University', '', 'B.com', '2021', 85.00, '', 1, '2021-12-28 12:09:39', 0, NULL, 0, NULL, 1),
(9257, 7293, '4', 'Manipal Academy of Higher Education', '', 'Mcom', '2019', 70.00, '', 1, '2021-12-28 12:10:43', 0, NULL, 0, NULL, 1),
(9258, 7290, '3', 'Madras University', '', 'B.com', '2021', 85.00, '', 1, '2021-12-28 12:10:45', 0, NULL, 0, NULL, 1),
(9259, 7300, '4', 'Anna University', '', 'Mba', '2021', 75.50, '', 1, '2021-12-28 12:18:34', 0, NULL, 0, NULL, 1),
(9260, 7300, '3', 'Bharathidasan', '', 'Bba', '2019', 75.00, '', 1, '2021-12-28 12:19:05', 0, NULL, 0, NULL, 1),
(9261, 7299, '3', 'Madras University', '', 'B.com(General)', '2021', 59.33, '', 1, '2021-12-28 12:21:54', 0, NULL, 0, NULL, 1),
(9262, 7298, '3', 'Madras University', '', 'B com corporate Secretaryship', '2021', 71.00, '', 1, '2021-12-28 12:22:05', 0, NULL, 0, NULL, 1),
(9263, 7300, '2', 'Stateboard', '', '', '2016', 77.00, '', 1, '2021-12-28 12:22:38', 0, NULL, 0, NULL, 1),
(9264, 7300, '1', 'Stateboard', '', '', '2014', 93.50, '', 1, '2021-12-28 12:23:00', 0, NULL, 0, NULL, 1),
(9265, 7291, '3', 'Madras University', '', 'Bcom accounting and finance', '2021', 75.00, '', 1, '2021-12-28 12:40:44', 0, NULL, 0, NULL, 1),
(9266, 7297, '3', 'anna university', '', 'b.e mechanical engineering', '2019', 6.50, '', 1, '2021-12-28 12:41:34', 0, NULL, 0, NULL, 1),
(9267, 7303, '4', 'allagappa university', '', 'mba', '2018', 58.00, '', 1, '2021-12-28 12:48:12', 0, NULL, 0, NULL, 1),
(9268, 7302, '3', 'Bharath University', '', 'B.sc computer science ', '2020', 65.70, '', 1, '2021-12-28 12:54:06', 0, NULL, 0, NULL, 1),
(9269, 7301, '3', 'VELS UNIVERSITY', '', 'BCA', '2020', 64.80, '', 1, '2021-12-28 12:58:14', 0, NULL, 0, NULL, 1),
(9270, 7304, '3', 'board of intermediate a p', '', '', '2007', 67.00, '', 1, '2021-12-28 01:09:18', 0, NULL, 0, NULL, 1),
(9271, 7306, '2', 'Tamilnadu State board', '', '', '2017', 64.00, '', 1, '2021-12-28 01:20:51', 0, NULL, 0, NULL, 1),
(9272, 7308, '3', 'Madras University', '', 'B.com', '2015', 65.00, '', 1, '2021-12-28 01:49:04', 0, NULL, 0, NULL, 1),
(9273, 7307, '3', 'Madras university', '', 'B.com', '2020', 75.00, '', 1, '2021-12-28 02:52:59', 0, NULL, 0, NULL, 1),
(9274, 7311, '5', 'SBTET', '', 'Electrical and Electronic Engineering', '2020', 63.00, '', 1, '2021-12-28 03:16:32', 0, NULL, 0, NULL, 1),
(9275, 7312, '3', 'anna university', '', 'b.tech it', '2015', 69.00, '', 1, '2021-12-28 03:21:44', 0, NULL, 0, NULL, 1),
(9276, 7313, '3', 'Sri chaitanya junior college Sr Nagar Hyderabad Telangana 500018 ', '', 'UG', '2015', 50.00, '', 1, '2021-12-28 03:30:32', 0, NULL, 0, NULL, 1),
(9277, 7315, '5', 'BOARD', '', 'EEE', '2019', 65.00, '', 1, '2021-12-28 03:56:18', 0, NULL, 0, NULL, 1),
(9278, 7317, '4', 'SRM UNIVERSITY', '', 'MBA HR', '2021', 82.00, '', 1, '2021-12-28 04:08:38', 1, '2021-12-28 04:09:47', 0, NULL, 1),
(9279, 7317, '3', 'MADURAI KAMRAJ UNIVERSITY', '', 'Bsc Tourism & Hospitality Management', '2018', 65.00, '', 1, '2021-12-28 04:09:37', 0, NULL, 0, NULL, 1),
(9280, 7318, '3', 'Madras university', '', 'BBA', '2021', 65.00, '', 1, '2021-12-28 05:41:30', 0, NULL, 0, NULL, 1),
(9281, 6993, '3', 'jntuh', '', 'btech', '2015', 65.00, '', 1, '2021-12-28 08:45:04', 1, '2021-12-29 07:46:20', 0, NULL, 1),
(9282, 7319, '2', 'state board', '', '', '2016', 75.00, '', 1, '2021-12-29 10:27:17', 0, NULL, 0, NULL, 1),
(9283, 7319, '3', 'madras university', '', 'bsc', '2019', 55.00, '', 1, '2021-12-29 10:27:51', 0, NULL, 0, NULL, 1),
(9284, 7320, '2', 'state board', '', '', '2017', 53.00, '', 1, '2021-12-29 10:44:28', 0, NULL, 0, NULL, 1),
(9285, 7320, '3', 'barathidasan', '', 'bba', '2020', 74.00, '', 1, '2021-12-29 10:44:58', 0, NULL, 0, NULL, 1),
(9286, 7321, '1', 'University', '', '', '2021', 80.00, '', 1, '2021-12-29 10:53:34', 0, NULL, 0, NULL, 1),
(9287, 7323, '3', 'Osmania University', '', 'Bcom ', '2014', 57.00, '', 1, '2021-12-29 11:15:48', 0, NULL, 0, NULL, 1),
(9288, 7322, '3', 'University College of engineering ariyalur', '', 'B .E(E.E.E)', '2020', 64.90, '', 1, '2021-12-29 11:16:20', 0, NULL, 0, NULL, 1),
(9289, 7324, '4', 'ossmaniya univarsity', '', 'MNR Degree college ', '2014', 60.00, '', 1, '2021-12-29 11:20:06', 0, NULL, 0, NULL, 1),
(9290, 7326, '3', 'Ou', '', 'B com', '2016', 70.00, '', 1, '2021-12-29 11:39:31', 0, NULL, 0, NULL, 1),
(9291, 7327, '3', ' University', '', 'B.sc', '2021', 60.00, '', 1, '2021-12-29 12:13:43', 0, NULL, 0, NULL, 1),
(9292, 7325, '2', 'state board', '', '', '2017', 64.00, '', 1, '2021-12-29 12:13:48', 1, '2021-12-29 12:15:02', 0, NULL, 1),
(9293, 7325, '3', 'madras university', '', 'bsc', '2019', 64.00, '', 1, '2021-12-29 12:14:49', 0, NULL, 0, NULL, 1),
(9294, 7329, '1', 'Madras University', '', '', '2021', 76.00, '', 1, '2021-12-29 12:15:37', 0, NULL, 0, NULL, 1),
(9295, 7294, '4', 'Anna University regional campus, Coimbatore.', '', 'MBA', '2020', 70.00, '', 1, '2021-12-29 12:28:24', 0, NULL, 0, NULL, 1),
(9296, 7328, '3', 'Madras University', '', 'B.com general', '2021', 71.00, '', 1, '2021-12-29 12:29:13', 0, NULL, 0, NULL, 1),
(9297, 7332, '3', 'Kakatiya University', '', 'BBA', '2021', 66.00, '', 1, '2021-12-29 06:51:53', 0, NULL, 0, NULL, 1),
(9298, 7333, '3', 'Madras University', '', 'BA', '2021', 45.00, '', 1, '2021-12-29 08:44:17', 0, NULL, 0, NULL, 1),
(9299, 7330, '3', 'Madras University', '', 'BA sociology', '2021', 50.00, '', 1, '2021-12-29 08:44:18', 0, NULL, 0, NULL, 1),
(9300, 7335, '2', 'state board', '', '', '2016', 93.00, '', 1, '2021-12-30 09:53:42', 0, NULL, 0, NULL, 1),
(9301, 7335, '3', 'barathaidasn', '', 'b.com', '2019', 70.00, '', 1, '2021-12-30 09:54:14', 0, NULL, 0, NULL, 1),
(9302, 7336, '2', 'stateboard', '', '', '2016', 92.00, '', 1, '2021-12-30 09:58:39', 0, NULL, 0, NULL, 1),
(9303, 7336, '3', 'kng', '', 'bcom', '2019', 75.00, '', 1, '2021-12-30 10:01:29', 0, NULL, 0, NULL, 1),
(9304, 7337, '2', 'state board', '', '', '2018', 58.00, '', 1, '2021-12-30 10:25:21', 0, NULL, 0, NULL, 1),
(9305, 7337, '3', 'madras university', '', 'bsc', '2021', 70.00, '', 1, '2021-12-30 10:25:51', 0, NULL, 0, NULL, 1),
(9306, 7339, '2', 'state board', '', '', '2018', 91.00, '', 1, '2021-12-30 10:30:42', 0, NULL, 0, NULL, 1),
(9307, 7339, '3', 'gurunanak', '', 'bcom', '2021', 80.00, '', 1, '2021-12-30 10:31:15', 0, NULL, 0, NULL, 1),
(9308, 7340, '2', 'state board', '', '', '2015', 55.00, '', 1, '2021-12-30 10:55:42', 0, NULL, 0, NULL, 1),
(9309, 7340, '3', 'loyola college', '', 'ba', '2018', 62.00, '', 1, '2021-12-30 10:57:13', 0, NULL, 0, NULL, 1),
(9310, 7338, '3', 'Madras University', '', 'Bcom (G)', '2021', 87.00, '', 1, '2021-12-30 11:34:59', 0, NULL, 0, NULL, 1),
(9311, 7341, '3', 'Prist university', '', 'BBA', '2021', 69.00, '', 1, '2021-12-30 11:43:29', 0, NULL, 0, NULL, 1),
(9312, 7342, '5', 'jaya diploma', '', 'ece', '2015', 85.00, '', 1, '2021-12-30 12:38:32', 0, NULL, 0, NULL, 1),
(9313, 7342, '3', 'jaya engineering', '', 'ece', '2018', 63.00, '', 1, '2021-12-30 12:39:04', 0, NULL, 0, NULL, 1),
(9314, 7343, '3', 'Madras University', '', 'B.B.a', '2020', 57.00, '', 1, '2021-12-30 12:56:18', 0, NULL, 0, NULL, 1),
(9315, 7345, '2', 'state board', '', '', '2013', 86.00, '', 1, '2021-12-30 02:36:35', 0, NULL, 0, NULL, 1),
(9316, 7345, '3', 'apollo art and science', '', 'bba', '2017', 70.00, '', 1, '2021-12-30 02:38:10', 0, NULL, 0, NULL, 1),
(9317, 7346, '5', 'Jhon bosco engineering collage', '', 'EEE', '2018', 86.00, '', 1, '2021-12-30 03:05:42', 0, NULL, 0, NULL, 1),
(9318, 7348, '2', 'state board', '', '', '2018', 70.00, '', 1, '2021-12-30 04:00:30', 0, NULL, 0, NULL, 1),
(9319, 7348, '3', 'madras university', '', 'bba', '2021', 78.00, '', 1, '2021-12-30 04:01:04', 0, NULL, 0, NULL, 1),
(9320, 7350, '2', 'stateboard', '', '', '2018', 67.00, '', 1, '2021-12-31 10:14:55', 0, NULL, 0, NULL, 1),
(9321, 7350, '3', 'ramakrishna mission', '', 'Bsc', '2021', 79.00, '', 1, '2021-12-31 10:16:24', 0, NULL, 0, NULL, 1),
(9322, 7344, '2', 'state board', '', '', '2018', 72.00, '', 1, '2021-12-31 10:35:15', 0, NULL, 0, NULL, 1),
(9323, 7344, '3', 'gurunank college', '', 'bcom', '2021', 73.00, '', 1, '2021-12-31 10:35:40', 0, NULL, 0, NULL, 1),
(9324, 7352, '3', 'Madras University', '', 'BCA', '2017', 60.00, '', 1, '2021-12-31 11:04:36', 0, NULL, 0, NULL, 1),
(9325, 7351, '4', 'Madras University', '', 'MBA', '2020', 65.00, '', 1, '2021-12-31 11:15:06', 0, NULL, 0, NULL, 1),
(9326, 7351, '4', 'Madras University', '', 'MBA', '2020', 65.00, '', 1, '2021-12-31 11:15:46', 1, '2021-12-31 11:15:54', 0, NULL, 0),
(9327, 7349, '3', 'University of madras', '', 'BBA', '2020', 70.00, '', 1, '2021-12-31 11:35:54', 0, NULL, 0, NULL, 1),
(9328, 7349, '2', 'Tamil nadu board', '', '', '2017', 66.00, '', 1, '2021-12-31 11:36:23', 0, NULL, 0, NULL, 1),
(9329, 7349, '1', 'Tamil nadu board', '', '', '2015', 69.00, '', 1, '2021-12-31 11:36:48', 0, NULL, 0, NULL, 1),
(9330, 7355, '3', 'Vels University', '', 'BSc visual communication', '2021', 6.30, '', 1, '2021-12-31 12:17:56', 0, NULL, 0, NULL, 1),
(9331, 7353, '3', 'madras ', '', 'bcom', '2021', 72.00, '', 1, '2021-12-31 12:20:27', 0, NULL, 0, NULL, 1),
(9332, 7356, '3', 'Madras University', '', 'B com(gen)', '2021', 72.00, '', 1, '2021-12-31 12:23:02', 0, NULL, 0, NULL, 1),
(9333, 7357, '3', 'Bharathidation university', '', 'Ug', '2020', 65.40, '', 1, '2021-12-31 12:33:02', 0, NULL, 0, NULL, 1),
(9334, 7354, '2', 'state board', '', '', '2017', 66.00, '', 1, '2021-12-31 12:43:15', 0, NULL, 0, NULL, 1),
(9335, 7354, '3', 'annai velankani', '', 'bca', '2020', 80.00, '', 1, '2021-12-31 12:43:48', 0, NULL, 0, NULL, 1),
(9336, 7358, '3', 'Board of intermediate', '', 'NA', '2013', 59.00, '', 1, '2021-12-31 02:08:00', 0, NULL, 0, NULL, 1),
(9337, 7305, '4', 'Anna university', '', 'MBA', '2021', 79.00, '', 1, '2021-12-31 03:13:18', 0, NULL, 0, NULL, 1),
(9338, 7360, '4', 'Bharathiar University', '', 'Masters of international business', '2022', 87.70, '', 1, '2021-12-31 03:14:27', 0, NULL, 0, NULL, 1),
(9339, 7361, '3', 'Bharathidasan University ', '', 'B.Sc(Computer Science)', '2021', 85.00, '', 1, '2021-12-31 03:27:01', 0, NULL, 0, NULL, 1),
(9340, 7362, '3', 'Bharathidasan', '', 'B.sc', '2020', 70.00, '', 1, '2021-12-31 04:07:30', 0, NULL, 0, NULL, 1),
(9341, 7363, '3', 'Madras university', '', 'B Com', '2019', 54.00, '', 1, '2022-01-03 10:13:12', 0, NULL, 0, NULL, 1),
(9342, 7364, '4', 'Sathyabama Institute of science and technology', '', 'MBA', '2021', 75.00, '', 1, '2022-01-03 10:56:15', 0, NULL, 0, NULL, 1),
(9343, 7364, '3', 'syed hameedha arts And science college', '', 'B.B.A', '2019', 66.00, '', 1, '2022-01-03 10:56:53', 0, NULL, 0, NULL, 1),
(9344, 7364, '2', 'Khyrathul jalalia higher secondery school', '', '', '2016', 58.00, '', 1, '2022-01-03 10:57:39', 0, NULL, 0, NULL, 1),
(9345, 7364, '1', 'islamiah high school', '', '', '2014', 78.00, '', 1, '2022-01-03 10:57:54', 0, NULL, 0, NULL, 1),
(9346, 7365, '1', 'Tamilnadu state board ', '', '', '2019', 74.00, '', 1, '2022-01-03 11:42:33', 0, NULL, 0, NULL, 1),
(9347, 7366, '1', 'Channai', '', '', '2020', 70.00, '', 1, '2022-01-03 12:28:42', 0, NULL, 0, NULL, 1),
(9348, 7366, '2', 'State board', '', '', '2017', 61.00, '', 1, '2022-01-03 12:33:34', 0, NULL, 0, NULL, 1),
(9349, 7367, '4', 'University', '', 'MBA', '2020', 74.00, '', 1, '2022-01-03 12:44:22', 0, NULL, 0, NULL, 1),
(9350, 7368, '4', 'Madras University ', '', 'MA English ', '2021', 71.00, '', 1, '2022-01-03 01:47:59', 0, NULL, 0, NULL, 1),
(9351, 7368, '4', 'Madras University ', '', 'MA English ', '2021', 71.00, '', 1, '2022-01-03 01:49:03', 0, NULL, 0, NULL, 1),
(9352, 7370, '3', 'Anna University', '', 'Bachelor of engineering', '2021', 76.00, '', 1, '2022-01-03 03:45:22', 0, NULL, 0, NULL, 1),
(9353, 7369, '2', 'aka mahadevi', '', '', '2018', 56.00, '', 1, '2022-01-03 04:23:03', 0, NULL, 0, NULL, 1),
(9354, 7369, '3', 'banglore university', '', 'bcom', '2021', 55.00, '', 1, '2022-01-03 04:23:50', 0, NULL, 0, NULL, 1),
(9355, 7372, '1', 'Berhampur univercity', '', '', '2016', 51.00, '', 1, '2022-01-03 06:33:02', 0, NULL, 0, NULL, 1),
(9356, 7375, '4', 'GTN Arts College', '', 'Master of Social Work (MSW )', '2021', 81.00, '', 1, '2022-01-03 08:00:21', 0, NULL, 0, NULL, 1),
(9357, 7375, '3', 'GTN Arts College', '', 'B.A. English', '2019', 52.00, '', 1, '2022-01-03 08:01:48', 0, NULL, 0, NULL, 1),
(9358, 7374, '3', 'Bharathidasan University', '', 'BCA ( computer Application )', '2021', 85.00, '', 1, '2022-01-03 09:51:15', 0, NULL, 0, NULL, 1),
(9359, 7377, '2', 'State board', '', '', '2016', 92.00, '', 1, '2022-01-04 10:49:14', 0, NULL, 0, NULL, 1),
(9360, 7380, '3', 'Madras University', '', 'BCA', '2021', 77.00, '', 1, '2022-01-04 10:57:52', 0, NULL, 0, NULL, 1),
(9361, 7379, '3', 'University of Madras', '', 'Bsc', '2019', 57.00, '', 1, '2022-01-04 10:58:02', 0, NULL, 0, NULL, 1),
(9362, 7378, '5', 'Dote', '', 'EEE', '2020', 85.00, '', 1, '2022-01-04 11:07:51', 0, NULL, 0, NULL, 1),
(9363, 7381, '3', 'Atanamous', '', 'BSC cs', '2019', 65.00, '', 1, '2022-01-04 11:18:00', 0, NULL, 0, NULL, 1),
(9364, 7382, '3', 'Madres University', '', 'B.com(ISM)', '2021', 77.00, '', 1, '2022-01-04 11:21:58', 0, NULL, 0, NULL, 1),
(9365, 7382, '1', 'State', '', '', '2016', 81.00, '', 1, '2022-01-04 11:25:03', 0, NULL, 0, NULL, 1),
(9366, 7382, '2', 'Statement board', '', '', '2018', 86.00, '', 1, '2022-01-04 11:26:01', 0, NULL, 0, NULL, 1),
(9367, 7384, '5', 'Dote', '', 'DME TOOL&DIE MAKER ', '2017', 68.00, '', 1, '2022-01-04 11:47:54', 0, NULL, 0, NULL, 1),
(9368, 7385, '2', 'State Board', '', '', '2015', 76.00, '', 1, '2022-01-04 11:51:43', 0, NULL, 0, NULL, 1),
(9369, 7385, '3', 'Anna University', '', 'B.tech', '2019', 69.00, '', 1, '2022-01-04 11:52:09', 0, NULL, 0, NULL, 1),
(9370, 7385, '4', 'Anna University', '', 'MBA', '2021', 75.00, '', 1, '2022-01-04 11:52:32', 0, NULL, 0, NULL, 1),
(9371, 7386, '3', 'Karunya', '', 'Btech', '2018', 65.00, '', 1, '2022-01-04 12:04:06', 0, NULL, 0, NULL, 1),
(9372, 7387, '3', 'University of madras', '', 'Bachelor of business administration', '2018', 57.36, '', 1, '2022-01-04 01:15:05', 0, NULL, 0, NULL, 1),
(9373, 7389, '1', 'VELUDAIYAR HIGHER SECONDARY SCHOOL', '', '', '2016', 76.80, '', 1, '2022-01-04 01:29:07', 0, NULL, 0, NULL, 1),
(9374, 7388, '2', 'DAVID MATRICULATION HR.SEC.SCHOOL', '', '', '2018', 70.00, '', 1, '2022-01-04 01:29:09', 0, NULL, 0, NULL, 1),
(9375, 7388, '3', 'VELS UNIVERSITY', '', 'B.com', '2021', 70.01, '', 1, '2022-01-04 01:30:26', 0, NULL, 0, NULL, 1),
(9376, 7389, '3', 'E.G.S PILLAY ARTS AND SCIENCE COLLEGE', '', 'B.Sc COMPUTER SCIENCE', '2021', 86.00, '', 1, '2022-01-04 01:30:36', 0, NULL, 0, NULL, 1),
(9377, 7389, '2', 'VELUDAIYAR HIGHER SECONDARY SCHOOL', '', '', '2018', 60.00, '', 1, '2022-01-04 01:31:24', 1, '2022-01-04 01:32:50', 0, NULL, 0),
(9378, 7391, '5', 'University', '', 'Degree', '2019', 75.00, '', 1, '2022-01-04 07:09:37', 0, NULL, 0, NULL, 1),
(9379, 7392, '2', 'state board', '', '', '2017', 68.00, '', 1, '2022-01-05 10:17:53', 0, NULL, 0, NULL, 1),
(9380, 7392, '3', 'anna university', '', 'be', '2021', 67.00, '', 1, '2022-01-05 10:18:38', 0, NULL, 0, NULL, 1),
(9381, 7394, '3', 'Anna University', '', 'BE CSE', '2018', 65.00, '', 1, '2022-01-05 10:22:29', 0, NULL, 0, NULL, 1),
(9382, 7393, '3', 'Madras University', '', 'BBA', '2016', 60.00, '', 1, '2022-01-05 10:22:36', 0, NULL, 0, NULL, 1),
(9383, 7395, '3', 'Veltech University ', '', 'B.tech computer science ', '2018', 62.00, '', 1, '2022-01-05 10:23:37', 1, '2022-01-05 10:30:28', 0, NULL, 1),
(9384, 7397, '2', 'Madras University', '', '', '2021', 72.00, '', 1, '2022-01-05 12:07:16', 0, NULL, 0, NULL, 1),
(9385, 7398, '3', 'Thiruvalluvar university', '', 'BBA', '2021', 70.00, '', 1, '2022-01-05 12:13:31', 0, NULL, 0, NULL, 1),
(9386, 7396, '3', 'Madras University', '', 'B.A.Eco', '2021', 75.00, '', 1, '2022-01-05 12:28:32', 0, NULL, 0, NULL, 1),
(9387, 7400, '3', 'madras', '', 'BBA', '2021', 85.00, '', 1, '2022-01-05 01:03:58', 0, NULL, 0, NULL, 1),
(9388, 7401, '3', 'Anna University', '', 'BE(CSE)', '2020', 70.40, '', 1, '2022-01-05 03:06:37', 0, NULL, 0, NULL, 1),
(9389, 7376, '4', 'Pondicherry University', '', 'MBA', '2021', 79.00, '', 1, '2022-01-05 03:54:04', 0, NULL, 0, NULL, 1),
(9390, 7402, '3', 'Madras university ', '', 'B.com', '2019', 65.00, '', 1, '2022-01-05 03:56:09', 0, NULL, 0, NULL, 1),
(9391, 7402, '2', 'State board ', '', '', '2016', 88.00, '', 1, '2022-01-05 03:56:48', 0, NULL, 0, NULL, 1),
(9392, 7402, '1', 'State board ', '', '', '2014', 67.00, '', 1, '2022-01-05 03:57:14', 0, NULL, 0, NULL, 1),
(9393, 7404, '2', 'Madras University', '', '', '2021', 80.00, '', 1, '2022-01-06 10:33:23', 0, NULL, 0, NULL, 1),
(9394, 7405, '3', 'Madras University', '', 'BA ECONOMICS', '2019', 56.00, '', 1, '2022-01-06 11:28:05', 0, NULL, 0, NULL, 1),
(9395, 7407, '3', 'Madras University', '', 'B.com general', '2019', 65.00, '', 1, '2022-01-06 02:40:09', 0, NULL, 0, NULL, 1),
(9396, 7408, '3', 'Anna university', '', 'B.E', '2017', 65.00, '', 1, '2022-01-07 10:11:44', 0, NULL, 0, NULL, 1),
(9397, 7409, '3', 'Anna University ', '', 'B.e', '2017', 72.00, '', 1, '2022-01-07 11:12:01', 0, NULL, 0, NULL, 1),
(9398, 7409, '2', 'State board', '', '', '2013', 70.00, '', 1, '2022-01-07 11:13:08', 0, NULL, 0, NULL, 1),
(9399, 7409, '1', 'State board ', '', '', '2010', 52.00, '', 1, '2022-01-07 11:13:28', 0, NULL, 0, NULL, 1),
(9400, 7410, '4', 'Bharathidasan University ', '', 'M.Sc,.', '2018', 72.00, '', 1, '2022-01-07 11:27:19', 0, NULL, 0, NULL, 1),
(9401, 7410, '3', 'Bharathidasan University ', '', 'B.sc.,', '2016', 76.00, '', 1, '2022-01-07 11:28:36', 0, NULL, 0, NULL, 1),
(9402, 7410, '2', 'State Board ', '', '', '2013', 59.00, '', 1, '2022-01-07 11:29:01', 0, NULL, 0, NULL, 1),
(9403, 7410, '1', 'State Board ', '', '', '2011', 66.00, '', 1, '2022-01-07 11:29:20', 0, NULL, 0, NULL, 1),
(9404, 7411, '3', 'Madras University', '', 'B.com cs', '2018', 73.00, '', 1, '2022-01-07 11:57:51', 0, NULL, 0, NULL, 1),
(9405, 7412, '4', 'mgr University ', '', 'mba', '2020', 80.00, '', 1, '2022-01-07 12:40:19', 0, NULL, 0, NULL, 1),
(9406, 7413, '3', 'The New College', '', 'B.Sc chemistry', '2018', 60.00, '', 1, '2022-01-07 01:31:27', 0, NULL, 0, NULL, 1),
(9407, 7414, '4', 'Annamalai university ', '', 'Mcom ', '2015', 7.23, '', 1, '2022-01-07 03:02:46', 0, NULL, 0, NULL, 1),
(9408, 7414, '3', 'Bharathidasan university ', '', 'Bcom(bM)', '2013', 68.00, '', 1, '2022-01-07 03:03:47', 0, NULL, 0, NULL, 1),
(9409, 7416, '4', 'Bharadhidhasan University', '', 'MBA', '2021', 68.00, '', 1, '2022-01-07 04:10:47', 0, NULL, 0, NULL, 1),
(9410, 7417, '2', 'state board', '', '', '2018', 52.00, '', 1, '2022-01-08 10:01:32', 0, NULL, 0, NULL, 1),
(9411, 7417, '3', 'madras university', '', 'ba', '2021', 68.00, '', 1, '2022-01-08 10:02:11', 0, NULL, 0, NULL, 1),
(9412, 7418, '2', 'stateboard', '', '', '2017', 59.00, '', 1, '2022-01-08 10:11:22', 0, NULL, 0, NULL, 1),
(9413, 7418, '3', 'madras university', '', 'b.com', '2020', 64.00, '', 1, '2022-01-08 10:12:01', 0, NULL, 0, NULL, 1),
(9414, 7419, '2', 'state board', '', '', '2014', 64.00, '', 1, '2022-01-08 10:20:09', 0, NULL, 0, NULL, 1),
(9415, 7419, '3', 'kalasilingam university', '', '', '2017', 79.00, '', 1, '2022-01-08 10:20:49', 0, NULL, 0, NULL, 1),
(9416, 7415, '3', 'Anna university', '', 'BE', '2019', 63.50, '', 1, '2022-01-08 11:32:25', 0, NULL, 0, NULL, 1),
(9417, 7415, '2', 'State board', '', '', '2015', 63.20, '', 1, '2022-01-08 11:33:10', 0, NULL, 0, NULL, 1),
(9418, 7415, '1', 'State board', '', '', '2013', 72.00, '', 1, '2022-01-08 11:33:34', 0, NULL, 0, NULL, 1),
(9419, 7421, '2', 'shri sai college', '', '', '2014', 60.00, '', 1, '2022-01-08 12:09:20', 0, NULL, 0, NULL, 1),
(9420, 7421, '3', 'meghna college', '', 'bcom', '2017', 50.00, '', 1, '2022-01-08 12:10:02', 0, NULL, 0, NULL, 1),
(9421, 7422, '5', 'Dote ', '', 'DIPLOMA', '2019', 67.00, '', 1, '2022-01-08 12:45:00', 0, NULL, 0, NULL, 1),
(9422, 7423, '3', 'Manonmaniam sundaranar University tirunelveli', '', 'BA', '2021', 72.00, '', 1, '2022-01-08 01:35:25', 0, NULL, 0, NULL, 1),
(9423, 7423, '2', 'St. John\'s higher secondary school ', '', '', '2019', 70.00, '', 1, '2022-01-08 01:36:38', 0, NULL, 0, NULL, 1),
(9424, 7423, '1', 'State Board ', '', '', '2016', 87.00, '', 1, '2022-01-08 01:39:28', 1, '2022-01-08 01:39:45', 0, NULL, 1),
(9425, 7420, '3', 'st marys womens engineering college', '', 'btech', '2021', 75.00, '', 1, '2022-01-08 02:04:39', 0, NULL, 0, NULL, 1),
(9426, 7420, '1', 'santhan high school', '', '', '2017', 92.00, '', 1, '2022-01-08 02:05:59', 1, '2022-01-08 02:06:36', 0, NULL, 0),
(9427, 7420, '1', 'santhan high school', '', '', '2015', 92.00, '', 1, '2022-01-08 02:07:02', 0, NULL, 0, NULL, 1),
(9428, 7420, '2', 'narayana junior college', '', '', '2017', 88.00, '', 1, '2022-01-08 02:08:44', 0, NULL, 0, NULL, 1),
(9429, 7424, '3', 'St Mary\'s women\'s Engineering College', '', 'Btech', '2021', 75.00, '', 1, '2022-01-08 04:25:48', 0, NULL, 0, NULL, 1),
(9430, 7426, '5', 'Anna university ', '', 'diploma in mechanical engineering ', '2019', 87.00, '', 1, '2022-01-08 05:42:31', 0, NULL, 0, NULL, 1),
(9431, 7425, '3', 'Vels University', '', 'Bsc computer science', '2021', 74.00, '', 1, '2022-01-09 10:55:47', 0, NULL, 0, NULL, 1),
(9432, 7431, '4', 'Bhardhidsan university', '', 'Mba finance', '2020', 75.00, '', 1, '2022-01-10 10:54:55', 0, NULL, 0, NULL, 1),
(9433, 7431, '3', 'Bharadhidasan university', '', 'Bcom with computer application', '2015', 72.00, '', 1, '2022-01-10 10:55:41', 0, NULL, 0, NULL, 1),
(9434, 7431, '2', 'State board', '', '', '2012', 82.00, '', 1, '2022-01-10 10:56:01', 0, NULL, 0, NULL, 1),
(9435, 7431, '1', 'State board', '', '', '2010', 82.00, '', 1, '2022-01-10 10:56:22', 0, NULL, 0, NULL, 1),
(9436, 7432, '3', 'Patrician college of arts and science', '', 'BBA ', '2020', 70.00, '', 1, '2022-01-10 11:12:05', 0, NULL, 0, NULL, 1),
(9437, 7434, '2', 'don bosco', '', '', '2018', 60.00, '', 1, '2022-01-10 12:03:52', 0, NULL, 0, NULL, 1),
(9438, 7434, '3', 'dr.ambedkar gov arts college', '', 'bsc', '2021', 61.00, '', 1, '2022-01-10 12:05:25', 0, NULL, 0, NULL, 1),
(9439, 7433, '3', 'Medars  University ', '', 'B Sc (visual Communication)', '2018', 60.00, '', 1, '2022-01-10 12:13:07', 0, NULL, 0, NULL, 1),
(9440, 7433, '2', 'Grovtmat  Hss medavakkam', '', '', '2013', 70.00, '', 1, '2022-01-10 12:15:13', 1, '2022-01-10 12:16:29', 0, NULL, 1),
(9441, 7433, '1', 'Government hss medavakkam', '', '', '2015', 60.00, '', 1, '2022-01-10 12:17:03', 0, NULL, 0, NULL, 1),
(9442, 7435, '2', 'st.francis', '', 'b.com', '2013', 49.00, '', 1, '2022-01-10 01:15:39', 0, NULL, 0, NULL, 1),
(9443, 7435, '3', 'RBANMS fgc', '', 'bcom', '2016', 50.00, '', 1, '2022-01-10 01:16:43', 0, NULL, 0, NULL, 1),
(9444, 7436, '4', 'Anna University ', '', 'MCA', '2018', 70.70, '', 1, '2022-01-10 01:34:34', 0, NULL, 0, NULL, 1),
(9445, 7436, '4', 'Anna University ', '', 'MCA', '2018', 70.70, '', 1, '2022-01-10 01:35:48', 1, '2022-01-10 01:35:57', 0, NULL, 0),
(9446, 7438, '4', 'Devi Ahilya', '', 'B.COM', '1998', 63.00, '', 1, '2022-01-10 04:08:53', 0, NULL, 0, NULL, 1),
(9447, 7438, '4', 'Devi Ahilya University', '', 'B.COM', '1998', 63.00, '', 1, '2022-01-10 04:10:00', 1, '2022-01-10 04:10:06', 0, NULL, 0),
(9448, 7439, '4', 'periyar university', '', 'm.sc - mathematics', '2018', 73.30, '', 1, '2022-01-10 06:38:37', 0, NULL, 0, NULL, 1),
(9449, 7439, '3', 'periyar university', '', 'b.sc- mathematics', '2016', 80.00, '', 1, '2022-01-10 06:39:33', 0, NULL, 0, NULL, 1),
(9450, 7439, '2', 'state board', '', '', '2013', 69.00, '', 1, '2022-01-10 06:42:28', 0, NULL, 0, NULL, 1),
(9451, 7439, '1', 'state board', '', '', '2011', 73.20, '', 1, '2022-01-10 06:43:21', 0, NULL, 0, NULL, 1),
(9452, 7441, '2', 'state board', '', '', '2016', 56.00, '', 1, '2022-01-11 10:05:11', 0, NULL, 0, NULL, 1),
(9453, 7441, '3', 'madras university', '', 'bcom', '2019', 50.00, '', 1, '2022-01-11 10:06:15', 0, NULL, 0, NULL, 1),
(9454, 7442, '2', 'state board', '', '', '2017', 65.00, '', 1, '2022-01-11 10:24:28', 0, NULL, 0, NULL, 1),
(9455, 7442, '3', 'DRBCCC Hindu College, Pattabiram', '', 'B.C.A', '2020', 63.00, '', 1, '2022-01-11 10:25:03', 0, NULL, 0, NULL, 1),
(9456, 7443, '3', 'Bharathi women\'s college', '', 'Bsc ma', '2021', 73.00, '', 1, '2022-01-11 11:16:30', 0, NULL, 0, NULL, 1),
(9457, 7444, '3', 'Bharathi women\'s college', '', 'B.sc mathematics', '2021', 71.00, '', 1, '2022-01-11 11:30:06', 0, NULL, 0, NULL, 1),
(9458, 7445, '3', 'madras university', '', 'b.com', '2016', 75.00, '', 1, '2022-01-11 12:10:14', 0, NULL, 0, NULL, 1),
(9459, 7446, '3', 'Madras University', '', 'B.Sc(CSC)', '2021', 60.00, '', 1, '2022-01-11 12:39:30', 0, NULL, 0, NULL, 1),
(9460, 7447, '4', '72%', '', 'MA', '2021', 72.00, '', 1, '2022-01-11 12:40:22', 0, NULL, 0, NULL, 1),
(9461, 7447, '1', 'State board', '', '', '2014', 74.80, '', 1, '2022-01-11 12:42:05', 0, NULL, 0, NULL, 1),
(9462, 7447, '2', 'State Board', '', '', '2016', 60.00, '', 1, '2022-01-11 12:42:40', 0, NULL, 0, NULL, 1),
(9463, 7447, '3', 'University of Madras', '', 'BA', '2019', 64.00, '', 1, '2022-01-11 12:43:28', 0, NULL, 0, NULL, 1),
(9464, 7449, '3', 'madras unversity', '', 'bca', '2016', 60.00, '', 1, '2022-01-11 12:57:41', 0, NULL, 0, NULL, 1),
(9465, 7451, '2', 'state board', '', '', '2013', 60.00, '', 1, '2022-01-11 01:25:11', 0, NULL, 0, NULL, 1),
(9466, 7451, '3', 'Government Arts College', '', 'bsc', '2016', 50.00, '', 1, '2022-01-11 01:25:42', 0, NULL, 0, NULL, 1),
(9467, 7452, '2', 'am jain college meenambakkam ', '', '', '2020', 55.00, '', 1, '2022-01-11 02:42:12', 1, '2022-01-11 02:44:57', 0, NULL, 0),
(9468, 7454, '3', 'Madras university', '', 'Bsc mathematics', '2020', 67.00, '', 1, '2022-01-11 02:43:19', 0, NULL, 0, NULL, 1),
(9469, 7453, '3', 'Autonomous', '', 'B. com', '2017', 55.00, '', 1, '2022-01-11 02:43:28', 0, NULL, 0, NULL, 1),
(9470, 7454, '2', 'State board ', '', '', '2017', 68.00, '', 1, '2022-01-11 02:43:53', 0, NULL, 0, NULL, 1),
(9471, 7452, '3', 'am jain college meenambakkam', '', 'ba ttm tourism and traveling management', '2020', 50.00, '', 1, '2022-01-11 02:44:14', 0, NULL, 0, NULL, 1),
(9472, 7455, '3', 'Madras University', '', 'Bca', '2201', 62.00, '', 1, '2022-01-11 03:08:23', 0, NULL, 0, NULL, 1),
(9473, 7458, '1', 'State Board', '', '', '2015', 78.60, '', 1, '2022-01-11 05:54:37', 0, NULL, 0, NULL, 1),
(9474, 7458, '2', 'State Board', '', '', '2017', 81.60, '', 1, '2022-01-11 05:55:16', 0, NULL, 0, NULL, 1),
(9475, 7458, '3', 'University of Madras', '', 'B.Com', '2020', 65.00, '', 1, '2022-01-11 05:56:59', 0, NULL, 0, NULL, 1),
(9476, 7459, '1', 'State board', '', '', '2015', 75.00, '', 1, '2022-01-11 06:40:14', 0, NULL, 0, NULL, 1),
(9477, 7459, '2', 'State board', '', '', '2017', 73.00, '', 1, '2022-01-11 06:40:44', 0, NULL, 0, NULL, 1),
(9478, 7459, '3', 'University of Madras', '', 'B. Com(General) ', '2020', 64.00, '', 1, '2022-01-11 06:41:24', 0, NULL, 0, NULL, 1),
(9479, 7460, '3', 'Jbas college', '', 'BBA', '2022', 70.00, '', 1, '2022-01-11 09:42:48', 0, NULL, 0, NULL, 1),
(9480, 7440, '3', 'Madras University', '', 'BBA', '2020', 73.00, '', 1, '2022-01-12 08:49:25', 0, NULL, 0, NULL, 1),
(9481, 7463, '2', 'state board', '', '', '2013', 60.00, '', 1, '2022-01-12 10:20:55', 0, NULL, 0, NULL, 1),
(9482, 7463, '3', 'Sri Kaliswari College of arts and science Sivakasi', '', 'bsc', '2016', 55.00, '', 1, '2022-01-12 10:21:37', 0, NULL, 0, NULL, 1),
(9483, 7465, '3', 'Alagappa University', '', 'Bsc Nautical science', '2020', 70.00, '', 1, '2022-01-12 01:41:48', 0, NULL, 0, NULL, 1),
(9484, 7465, '1', 'State board', '', '', '2015', 92.00, '', 1, '2022-01-12 01:46:19', 0, NULL, 0, NULL, 1),
(9485, 7465, '2', 'State board', '', '', '2017', 70.00, '', 1, '2022-01-12 01:46:48', 0, NULL, 0, NULL, 1),
(9486, 7466, '1', 'state board', '', '', '2017', 81.00, '', 1, '2022-01-12 02:32:02', 0, NULL, 0, NULL, 1),
(9487, 7466, '3', 'am jain', '', 'bcom', '2020', 75.00, '', 1, '2022-01-12 02:32:32', 0, NULL, 0, NULL, 1),
(9488, 7467, '3', 'Bharath University', '', 'B.com', '2022', 67.00, '', 1, '2022-01-12 02:34:52', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9489, 7457, '4', 'Madras University', '', 'M.B.A-Hr& Marketing', '2021', 65.00, '', 1, '2022-01-12 02:55:25', 0, NULL, 0, NULL, 1),
(9490, 7468, '4', 'Bharathidasan  university', '', 'm.A', '2021', 73.00, '', 1, '2022-01-12 03:25:09', 0, NULL, 0, NULL, 1),
(9491, 7469, '4', 'Bharathidasan  university', '', 'MA', '2021', 73.00, '', 1, '2022-01-12 03:31:14', 0, NULL, 0, NULL, 1),
(9492, 7467, '2', 'state board', '', '', '2017', 80.00, '', 1, '2022-01-12 03:51:19', 0, NULL, 0, NULL, 1),
(9493, 7470, '2', 'state board', '', '', '2018', 75.00, '', 1, '2022-01-12 03:56:00', 0, NULL, 0, NULL, 1),
(9494, 7470, '3', 'madras university', '', 'bcom', '2021', 85.00, '', 1, '2022-01-12 03:56:41', 0, NULL, 0, NULL, 1),
(9495, 7471, '4', 'BSAR Crescent institute of technology', '', 'MCA', '2021', 79.00, '', 1, '2022-01-13 10:30:14', 0, NULL, 0, NULL, 1),
(9496, 7472, '2', 'state board', '', '', '2015', 70.00, '', 1, '2022-01-13 10:32:18', 0, NULL, 0, NULL, 1),
(9497, 7472, '3', 'star lion college of engineering', '', 'be', '2019', 70.00, '', 1, '2022-01-13 10:33:39', 0, NULL, 0, NULL, 1),
(9498, 7473, '5', 'Srm diploma', '', 'Eee', '2020', 90.00, '', 1, '2022-01-13 10:50:32', 0, NULL, 0, NULL, 1),
(9499, 7474, '3', 'Vels University', '', 'B com', '2021', 62.00, '', 1, '2022-01-13 11:46:14', 0, NULL, 0, NULL, 1),
(9500, 7475, '3', 'bharathidasan University ', '', 'b sc', '2022', 69.00, '', 1, '2022-01-13 11:50:21', 0, NULL, 0, NULL, 1),
(9501, 7476, '2', 'State board', '', '', '2015', 62.00, '', 1, '2022-01-13 11:59:24', 0, NULL, 0, NULL, 1),
(9502, 7476, '1', 'State board', '', '', '2013', 79.00, '', 1, '2022-01-13 11:59:45', 0, NULL, 0, NULL, 1),
(9503, 7477, '3', 'SRI RAM COLLEGE OF ARTS (MADRAS UNIVERSITY)', '', 'B. Com c s', '2021', 70.00, '', 1, '2022-01-13 12:02:24', 0, NULL, 0, NULL, 1),
(9504, 7478, '3', 'Anna University ', '', 'BE ', '2017', 68.00, '', 1, '2022-01-13 12:10:57', 0, NULL, 0, NULL, 1),
(9505, 7479, '3', 'Bharth University', '', 'B.tech', '2019', 60.00, '', 1, '2022-01-13 12:13:38', 0, NULL, 0, NULL, 1),
(9506, 7480, '3', 'Bharath university ', '', 'B tech ', '2019', 70.00, '', 1, '2022-01-13 12:16:04', 0, NULL, 0, NULL, 1),
(9507, 7428, '3', 'Anna university chennai', '', 'BE,CIVIL ENGINEERING', '2020', 7.34, '', 1, '2022-01-13 12:39:03', 0, NULL, 0, NULL, 1),
(9508, 7481, '3', 'Madras University ', '', 'B.com', '2018', 60.00, '', 1, '2022-01-13 01:44:48', 0, NULL, 0, NULL, 1),
(9509, 7481, '2', 'State Board ', '', '', '2015', 55.00, '', 1, '2022-01-13 01:45:11', 0, NULL, 0, NULL, 1),
(9510, 7481, '1', 'State Board ', '', '', '2013', 50.00, '', 1, '2022-01-13 01:45:38', 0, NULL, 0, NULL, 1),
(9511, 7482, '4', 'issm business school', '', 'mba/pgpm', '2023', 80.00, '', 1, '2022-01-15 11:01:19', 0, NULL, 0, NULL, 1),
(9512, 7482, '3', 'rajalakshmi engineering college', '', 'bachelor of engineering ', '2021', 85.00, '', 1, '2022-01-15 11:02:11', 0, NULL, 0, NULL, 1),
(9513, 7482, '2', 'state board', '', '', '2017', 76.00, '', 1, '2022-01-15 11:02:37', 0, NULL, 0, NULL, 1),
(9514, 7482, '1', 'cbse', '', '', '2015', 85.00, '', 1, '2022-01-15 11:03:01', 0, NULL, 0, NULL, 1),
(9515, 7484, '1', 'St.Gabriel\'s HR Sec school', '', '', '2013', 71.60, '', 1, '2022-01-17 11:01:56', 0, NULL, 0, NULL, 1),
(9516, 7484, '2', 'St.Gabriel\'s HR Sec School', '', '', '2015', 62.50, '', 1, '2022-01-17 11:03:21', 0, NULL, 0, NULL, 1),
(9517, 7484, '3', 'Vivekananda College ', '', 'B.A Economics ', '2016', 52.00, '', 1, '2022-01-17 11:04:40', 0, NULL, 0, NULL, 1),
(9518, 7485, '1', 'Sri Saradha Devi School', '', '', '2013', 80.00, '', 1, '2022-01-17 11:15:48', 0, NULL, 0, NULL, 1),
(9519, 7485, '2', 'Dhanalakshmi.Hr.secondary School', '', '', '2015', 72.00, '', 1, '2022-01-17 11:16:40', 0, NULL, 0, NULL, 1),
(9520, 7485, '3', 'Guru Nanak college ', '', 'B.B.A', '2018', 60.00, '', 1, '2022-01-17 11:17:24', 0, NULL, 0, NULL, 1),
(9521, 7488, '1', 'Statebord', '', '', '2018', 75.00, '', 1, '2022-01-18 10:33:16', 0, NULL, 0, NULL, 1),
(9522, 7491, '2', 'State board', '', '', '2018', 84.00, '', 1, '2022-01-18 11:20:00', 0, NULL, 0, NULL, 1),
(9523, 7491, '3', 'Madras University', '', 'Ba economics', '2021', 63.00, '', 1, '2022-01-18 11:21:13', 0, NULL, 0, NULL, 1),
(9524, 7490, '3', 'Madre\'s university', '', 'B.Sc', '2021', 72.00, '', 1, '2022-01-18 11:30:01', 0, NULL, 0, NULL, 1),
(9525, 7490, '2', 'State board', '', '', '2018', 72.00, '', 1, '2022-01-18 11:30:43', 0, NULL, 0, NULL, 1),
(9526, 7489, '2', 'State board', '', '', '2018', 72.00, '', 1, '2022-01-18 11:33:16', 0, NULL, 0, NULL, 1),
(9527, 7489, '3', 'Madras University', '', 'Bsc geography', '2021', 78.00, '', 1, '2022-01-18 11:34:03', 0, NULL, 0, NULL, 1),
(9528, 7492, '2', 'State board', '', '', '2018', 72.00, '', 1, '2022-01-18 11:36:43', 0, NULL, 0, NULL, 1),
(9529, 7492, '3', 'Madras University', '', 'Bcom', '2021', 60.00, '', 1, '2022-01-18 11:37:09', 0, NULL, 0, NULL, 1),
(9530, 7494, '3', 'University ', '', 'B.A Tourism and Travel Management ', '2018', 64.00, '', 1, '2022-01-18 12:17:46', 0, NULL, 0, NULL, 1),
(9531, 7494, '2', 'Board', '', '', '2015', 49.50, '', 1, '2022-01-18 12:18:18', 0, NULL, 0, NULL, 1),
(9532, 7494, '1', 'Board', '', '', '2013', 57.00, '', 1, '2022-01-18 12:18:53', 0, NULL, 0, NULL, 1),
(9533, 7495, '1', 'State Board ', '', '', '2010', 64.00, '', 1, '2022-01-18 12:36:56', 0, NULL, 0, NULL, 1),
(9534, 7495, '2', 'State Board ', '', '', '2012', 73.00, '', 1, '2022-01-18 12:37:24', 0, NULL, 0, NULL, 1),
(9535, 7495, '3', 'Madras university ', '', 'B. Com (G) ', '2015', 60.00, '', 1, '2022-01-18 12:38:13', 0, NULL, 0, NULL, 1),
(9536, 7495, '4', 'Anna University ', '', 'MBA ', '2018', 70.00, '', 1, '2022-01-18 12:38:52', 0, NULL, 0, NULL, 1),
(9537, 7496, '2', 'state board', '', '', '2014', 74.00, '', 1, '2022-01-18 02:27:18', 0, NULL, 0, NULL, 1),
(9538, 7496, '3', 'Muthayammal College Of Arts And Science, Rasipuram', '', 'BCA', '2017', 65.00, '', 1, '2022-01-18 02:28:23', 0, NULL, 0, NULL, 1),
(9539, 7497, '4', 'board', '', 'bba', '2018', 55.00, '', 1, '2022-01-18 02:58:24', 0, NULL, 0, NULL, 1),
(9540, 7497, '4', 'board', '', 'bba', '2018', 55.00, '', 1, '2022-01-18 03:00:17', 0, NULL, 0, NULL, 1),
(9541, 7498, '3', 'Bharathidasan engineering college ', '', 'B. E ( CSE) ', '2020', 7.49, '', 1, '2022-01-18 05:28:59', 0, NULL, 0, NULL, 1),
(9542, 7498, '2', 'Stare board of education ', '', '', '2015', 83.00, '', 1, '2022-01-18 05:31:00', 0, NULL, 0, NULL, 1),
(9543, 7498, '1', 'State board of education ', '', '', '2013', 90.40, '', 1, '2022-01-18 05:31:26', 0, NULL, 0, NULL, 1),
(9544, 7499, '4', 'Dr Mgr University ', '', 'MBA', '2020', 75.00, '', 1, '2022-01-18 06:21:05', 0, NULL, 0, NULL, 1),
(9545, 7500, '3', 'Vivekandha College Of arts and science for women (autonomous)', '', 'B.com(a&f)', '2020', 72.00, '', 1, '2022-01-19 10:08:37', 0, NULL, 0, NULL, 1),
(9546, 7501, '2', 'state board', '', '', '2014', 50.00, '', 1, '2022-01-19 11:13:13', 0, NULL, 0, NULL, 1),
(9547, 7501, '3', 'barathidasan university', '', 'b.com', '2021', 75.00, '', 1, '2022-01-19 11:13:58', 0, NULL, 0, NULL, 1),
(9548, 7502, '3', 'Bharthi University', '', 'B,sc. Computer science', '2018', 75.00, '', 1, '2022-01-19 11:59:14', 0, NULL, 0, NULL, 1),
(9549, 7503, '4', 'PULCS TWINNING PROGRAM', '', 'MBA HUMAN RESOURCE MANAGEMENT', '2021', 60.00, '', 1, '2022-01-19 12:17:45', 0, NULL, 0, NULL, 1),
(9550, 7505, '3', 'Vel Tech University', '', 'B.Com', '2019', 60.00, '', 1, '2022-01-19 01:17:14', 0, NULL, 0, NULL, 1),
(9551, 7504, '3', 'Anna University', '', 'Bachelor of Engineering', '2020', 7.00, '', 1, '2022-01-19 01:21:49', 0, NULL, 0, NULL, 1),
(9552, 7507, '3', 'Shri krishnaswamy College', '', 'BCA', '2018', 69.00, '', 1, '2022-01-19 04:00:15', 1, '2022-01-19 04:02:36', 0, NULL, 1),
(9553, 7507, '2', 'Anna Adarsh mat hr sec school', '', '', '2015', 66.00, '', 1, '2022-01-19 04:03:50', 0, NULL, 0, NULL, 1),
(9554, 7507, '1', 'Joshua mat.hr.sec.shool', '', '', '2013', 87.00, '', 1, '2022-01-19 04:04:58', 0, NULL, 0, NULL, 1),
(9555, 7508, '3', 'Thiruvalluvar university ', '', 'B. Com', '2020', 78.00, '', 1, '2022-01-19 05:10:09', 0, NULL, 0, NULL, 1),
(9556, 7509, '4', 'University of Madras', '', 'MBA (F&AM)', '2021', 85.00, '', 1, '2022-01-19 05:44:44', 0, NULL, 0, NULL, 1),
(9557, 7511, '4', 'University of Madras', '', 'mBA', '2021', 84.00, '', 1, '2022-01-19 05:48:02', 0, NULL, 0, NULL, 1),
(9558, 7513, '2', 'state board', '', '', '2016', 76.00, '', 1, '2022-01-20 10:10:26', 0, NULL, 0, NULL, 1),
(9559, 7513, '3', 'new college', '', 'bsc', '2020', 72.00, '', 1, '2022-01-20 10:11:10', 0, NULL, 0, NULL, 1),
(9560, 7514, '2', 'BHARATHI MATRIC HR SEC SCH', '', '', '2015', 61.00, '', 1, '2022-01-20 10:16:30', 0, NULL, 0, NULL, 1),
(9561, 7514, '3', 'MADRAS UNIVERSI', '', 'bcom', '2018', 55.00, '', 1, '2022-01-20 10:17:00', 0, NULL, 0, NULL, 1),
(9562, 7510, '2', 'SHGS Kilacheri', '', '', '2017', 68.00, '', 1, '2022-01-20 10:22:17', 0, NULL, 0, NULL, 1),
(9563, 7510, '3', 'Anna university', '', 'ece', '2021', 70.00, '', 1, '2022-01-20 10:22:54', 0, NULL, 0, NULL, 1),
(9564, 7517, '4', 'Madras University', '', 'MA', '2015', 75.00, '', 1, '2022-01-20 10:28:05', 0, NULL, 0, NULL, 1),
(9565, 7515, '5', 'Bharathidasan university', '', 'DIPLAMO MECHANICAL ENGINEERING', '2018', 77.00, '', 1, '2022-01-20 10:44:37', 0, NULL, 0, NULL, 1),
(9566, 7516, '2', 'state board', '', '', '2017', 92.00, '', 1, '2022-01-20 11:03:08', 0, NULL, 0, NULL, 1),
(9567, 7516, '3', 'state bord', '', 'bcom', '2020', 67.00, '', 1, '2022-01-20 11:06:56', 0, NULL, 0, NULL, 1),
(9568, 7518, '2', 'State ', '', '', '2018', 67.00, '', 1, '2022-01-20 11:09:41', 0, NULL, 0, NULL, 1),
(9569, 7520, '2', 'Medras University', '', '', '2020', 20.00, '', 1, '2022-01-20 11:22:02', 0, NULL, 0, NULL, 1),
(9570, 7521, '5', 'Ann University', '', 'Diploma', '2019', 60.00, '', 1, '2022-01-20 11:23:45', 0, NULL, 0, NULL, 1),
(9571, 7519, '4', 'Bharathidasan', '', 'MBA', '2017', 67.00, '', 1, '2022-01-20 11:23:54', 0, NULL, 0, NULL, 1),
(9572, 7522, '3', 'Anna University', '', 'BE/EEE', '2021', 8.04, '', 1, '2022-01-20 11:44:02', 0, NULL, 0, NULL, 1),
(9573, 7512, '3', 'Madras University', '', 'B.sc', '2019', 62.00, '', 1, '2022-01-20 11:53:12', 0, NULL, 0, NULL, 1),
(9574, 7523, '3', 'Alagapa University', '', 'BBA AIRLINE AND AIRPORT MANAGEMENT', '2017', 80.00, '', 1, '2022-01-20 12:05:49', 0, NULL, 0, NULL, 1),
(9575, 7524, '4', 'SRM eswari engineering', '', 'MBA', '2021', 82.00, '', 1, '2022-01-20 01:06:49', 0, NULL, 0, NULL, 1),
(9576, 7525, '2', 'State board', '', '', '2017', 74.00, '', 1, '2022-01-20 01:21:11', 0, NULL, 0, NULL, 1),
(9577, 7525, '3', 'New College', '', 'Bsc', '2020', 68.00, '', 1, '2022-01-20 01:21:39', 0, NULL, 0, NULL, 1),
(9578, 7526, '3', 'Madras University', '', 'Bcom cs', '2020', 56.00, '', 1, '2022-01-20 06:27:40', 1, '2022-01-20 06:28:54', 0, NULL, 1),
(9579, 7526, '2', 'State board', '', '', '2017', 82.00, '', 1, '2022-01-20 06:28:38', 0, NULL, 0, NULL, 1),
(9580, 7526, '1', 'State board', '', '', '2015', 89.00, '', 1, '2022-01-20 06:29:38', 0, NULL, 0, NULL, 1),
(9581, 7528, '4', 'pulc', '', 'mba', '2020', 62.00, '', 1, '2022-01-20 09:36:26', 1, '2022-01-20 09:38:15', 0, NULL, 1),
(9582, 7528, '3', 'srm and arts and science college', '', 'bcom', '2018', 81.00, '', 1, '2022-01-20 09:37:19', 0, NULL, 0, NULL, 1),
(9583, 7529, '4', 'Bharathidasan university', '', 'MBA', '2021', 80.00, '', 1, '2022-01-21 10:20:04', 0, NULL, 0, NULL, 1),
(9584, 7532, '3', 'University of Madras', '', '', '2021', 72.00, '', 1, '2022-01-21 10:47:00', 0, NULL, 0, NULL, 1),
(9585, 7533, '3', 'Deemed university', '', 'B. Com(cs) ', '2022', 40.00, '', 1, '2022-01-21 10:59:50', 0, NULL, 0, NULL, 1),
(9586, 7531, '3', 'University of Madras', '', 'BBA', '2020', 62.00, '', 1, '2022-01-21 11:01:29', 0, NULL, 0, NULL, 1),
(9587, 7535, '5', 'Panimalar ', '', 'D.e.E.E', '2020', 75.00, '', 1, '2022-01-21 11:51:29', 0, NULL, 0, NULL, 1),
(9588, 7536, '3', 'University ', '', 'B.com', '2021', 68.00, '', 1, '2022-01-21 12:24:28', 0, NULL, 0, NULL, 1),
(9589, 7538, '4', 'Madras University ', '', 'M.A', '2010', 70.00, '', 1, '2022-01-21 12:53:26', 0, NULL, 0, NULL, 1),
(9590, 7537, '3', 'Bharathidasan University', '', 'B.com', '2019', 71.00, '', 1, '2022-01-21 12:55:53', 0, NULL, 0, NULL, 1),
(9591, 7539, '5', 'University', '', 'CH', '2019', 75.00, '', 1, '2022-01-21 01:29:41', 0, NULL, 0, NULL, 1),
(9592, 7534, '4', 'university of madras', '', 'mba', '2021', 76.00, '', 1, '2022-01-21 03:44:35', 0, NULL, 0, NULL, 1),
(9593, 7534, '3', ' tjs engineering college', '', 'be', '2018', 74.00, '', 1, '2022-01-21 03:45:39', 0, NULL, 0, NULL, 1),
(9594, 7534, '2', 'velammal matric hr sec school', '', '', '2014', 73.00, '', 1, '2022-01-21 03:46:43', 0, NULL, 0, NULL, 1),
(9595, 7534, '1', 'st.francis xaviers a.i hr sec school', '', '', '2012', 84.00, '', 1, '2022-01-21 03:47:29', 0, NULL, 0, NULL, 1),
(9596, 7541, '2', 'State board', '', '', '2020', 50.00, '', 1, '2022-01-21 03:54:23', 0, NULL, 0, NULL, 1),
(9597, 7542, '2', 'State board', '', '', '2020', 54.00, '', 1, '2022-01-21 04:06:28', 0, NULL, 0, NULL, 1),
(9598, 7543, '4', 'saveetha univer ', '', 'mba', '2020', 80.00, '', 1, '2022-01-21 04:38:33', 0, NULL, 0, NULL, 1),
(9599, 7543, '3', 'adras univ ', '', 'bcom', '2018', 70.00, '', 1, '2022-01-21 04:39:01', 0, NULL, 0, NULL, 1),
(9600, 7543, '2', 'state board ', '', '', '2015', 60.00, '', 1, '2022-01-21 04:39:20', 0, NULL, 0, NULL, 1),
(9601, 7543, '1', 'state board ', '', '', '2013', 60.00, '', 1, '2022-01-21 04:40:11', 0, NULL, 0, NULL, 1),
(9602, 7527, '3', 'Madras University', '', 'B.A  ENGLISH LITRATURE', '2022', 78.00, '', 1, '2022-01-21 05:18:24', 0, NULL, 0, NULL, 1),
(9603, 7544, '2', 'state board', '', '', '2014', 60.00, '', 1, '2022-01-21 06:11:18', 0, NULL, 0, NULL, 1),
(9604, 7546, '3', 'Anna university ', '', 'B. A history ', '2021', 70.00, '', 1, '2022-01-22 10:12:24', 0, NULL, 0, NULL, 1),
(9605, 7547, '2', 'Guntur Subbiah Pillai grls higher secondary school', '', '', '1994', 60.00, '', 1, '2022-01-22 12:24:54', 0, NULL, 0, NULL, 1),
(9606, 7530, '3', 'Jbas college for women ', '', 'BBA ', '2019', 60.00, '', 1, '2022-01-22 12:41:37', 0, NULL, 0, NULL, 1),
(9607, 7530, '2', 'St. John\'s matriculation higher secondary school ', '', '', '2016', 63.00, '', 1, '2022-01-22 12:42:40', 0, NULL, 0, NULL, 1),
(9608, 7530, '1', 'St. John\'s Matriculation Higher Secondary School ', '', '', '2014', 73.40, '', 1, '2022-01-22 12:43:16', 0, NULL, 0, NULL, 1),
(9609, 7548, '4', 'Anna university', '', 'MBA HR and Marketing', '2022', 7.14, '', 1, '2022-01-22 12:47:41', 0, NULL, 0, NULL, 1),
(9610, 7548, '3', 'Madras University', '', 'B.sc physics', '2020', 7.83, '', 1, '2022-01-22 12:48:45', 0, NULL, 0, NULL, 1),
(9611, 7548, '2', 'State board', '', '', '2017', 79.63, '', 1, '2022-01-22 12:49:22', 0, NULL, 0, NULL, 1),
(9612, 7548, '1', 'State board', '', '', '2015', 96.60, '', 1, '2022-01-22 12:49:54', 0, NULL, 0, NULL, 1),
(9613, 7549, '3', 'Madras University', '', 'B.com General', '2020', 75.00, '', 1, '2022-01-22 01:18:19', 0, NULL, 0, NULL, 1),
(9614, 7551, '3', 'Karunya institute of technology ', '', 'B-Tech (Mechanical)', '2018', 70.00, '', 1, '2022-01-22 04:38:15', 0, NULL, 0, NULL, 1),
(9615, 7550, '3', 'Karunya institute of technology', '', 'B.Tech Mechanical engineering ', '2018', 6.39, '', 1, '2022-01-22 04:43:44', 0, NULL, 0, NULL, 1),
(9616, 7553, '3', 'Madras University ', '', 'Bsc-Biochemistry', '2007', 61.80, '', 1, '2022-01-22 05:03:15', 0, NULL, 0, NULL, 1),
(9617, 7553, '1', 'State Board', '', '', '2003', 83.40, '', 1, '2022-01-22 05:03:58', 0, NULL, 0, NULL, 1),
(9618, 7553, '2', 'State Board ', '', '', '2004', 83.60, '', 1, '2022-01-22 05:04:36', 0, NULL, 0, NULL, 1),
(9619, 7554, '4', 'Dr. MGR UNIVERSITY ', '', 'MBA ', '2020', 70.00, '', 1, '2022-01-23 04:06:44', 0, NULL, 0, NULL, 1),
(9620, 7555, '3', 'Thiruvalluvar university', '', 'BA', '2020', 70.00, '', 1, '2022-01-24 10:19:15', 0, NULL, 0, NULL, 1),
(9621, 7555, '2', 'State bored', '', '', '2017', 68.00, '', 1, '2022-01-24 10:20:49', 0, NULL, 0, NULL, 1),
(9622, 7555, '1', 'State bored', '', '', '2015', 60.00, '', 1, '2022-01-24 10:21:15', 0, NULL, 0, NULL, 1),
(9623, 7556, '3', 'Anna university', '', 'BE-EEE', '2019', 70.00, '', 1, '2022-01-24 10:53:27', 0, NULL, 0, NULL, 1),
(9624, 7557, '3', 'Anna University Chennai', '', 'CSE', '2021', 73.00, '', 1, '2022-01-24 11:10:53', 0, NULL, 0, NULL, 1),
(9625, 7557, '2', 'State board', '', '', '2017', 70.00, '', 1, '2022-01-24 11:11:20', 0, NULL, 0, NULL, 1),
(9626, 7557, '1', 'State board', '', '', '2015', 75.00, '', 1, '2022-01-24 11:11:47', 0, NULL, 0, NULL, 1),
(9627, 7558, '3', 'Acharya arts and science College', '', 'Bsc information technology', '2021', 62.50, '', 1, '2022-01-24 11:56:19', 0, NULL, 0, NULL, 1),
(9628, 7559, '3', 'Madras university', '', 'Bsc. Food and nutrition', '2019', 60.00, '', 1, '2022-01-24 12:08:47', 0, NULL, 0, NULL, 1),
(9629, 7560, '3', 'anna university', '', 'BTech informa Technology ', '2021', 75.00, '', 1, '2022-01-24 12:58:32', 0, NULL, 0, NULL, 1),
(9630, 7560, '2', 'the hindu higher secondary school', '', ' btech information technology', '2016', 60.00, '', 1, '2022-01-24 01:00:54', 0, NULL, 0, NULL, 1),
(9631, 7560, '1', 'government muslim higher secondary school', '', '', '2014', 63.00, '', 1, '2022-01-24 01:02:13', 0, NULL, 0, NULL, 1),
(9632, 7561, '2', 'Sir theyagaraya college higher secondary school', '', '', '2021', 75.00, '', 1, '2022-01-24 01:18:14', 0, NULL, 0, NULL, 1),
(9633, 7562, '4', 'Bharathiar University', '', 'MBA', '2022', 88.00, '', 1, '2022-01-24 07:48:12', 0, NULL, 0, NULL, 1),
(9634, 7564, '3', 'Jntua', '', 'B.tech civil engineering', '2020', 62.00, '', 1, '2022-01-24 08:11:12', 0, NULL, 0, NULL, 1),
(9635, 7566, '3', 'Madras university', '', 'Bsc. Computer science', '2017', 74.00, '', 1, '2022-01-24 09:59:53', 0, NULL, 0, NULL, 1),
(9636, 7563, '3', 'Madras university', '', 'Bsc. Cs', '2017', 74.00, '', 1, '2022-01-24 10:06:41', 0, NULL, 0, NULL, 1),
(9637, 7569, '2', 'state board', '', '', '2018', 59.00, '', 1, '2022-01-25 09:59:10', 0, NULL, 0, NULL, 1),
(9638, 7569, '3', 'Deemed University', '', 'BSc (Chemistry)', '2021', 73.00, '', 1, '2022-01-25 09:59:38', 0, NULL, 0, NULL, 1),
(9639, 7570, '3', 'Madras university', '', 'BBA', '2018', 70.00, '', 1, '2022-01-25 10:16:20', 0, NULL, 0, NULL, 1),
(9640, 7568, '3', 'TIRUVALLUVAR UNIVERSITY', '', 'B.COM', '2020', 78.00, '', 1, '2022-01-25 10:18:56', 0, NULL, 0, NULL, 1),
(9641, 7571, '3', 'Madras University', '', 'BCA', '2018', 56.00, '', 1, '2022-01-25 10:57:33', 0, NULL, 0, NULL, 1),
(9642, 7572, '3', 'Hindustan university ', '', 'B.(ISM)', '2018', 70.00, '', 1, '2022-01-25 11:33:44', 0, NULL, 0, NULL, 1),
(9643, 7573, '3', 'SRM arts and Science College', '', 'Bsc.computer science', '2021', 75.00, '', 1, '2022-01-25 11:34:59', 0, NULL, 0, NULL, 1),
(9644, 7575, '3', 'Anna university', '', 'B.e civil engineering', '2016', 7.34, '', 1, '2022-01-25 11:50:20', 0, NULL, 0, NULL, 1),
(9645, 7578, '5', 'A.M.S college of engineering', '', 'D.E.C.E', '2017', 78.00, '', 1, '2022-01-25 12:55:13', 0, NULL, 0, NULL, 1),
(9646, 7579, '3', 'Bharathidasan university ', '', 'B.sc., Computer Science ', '2017', 80.00, '', 1, '2022-01-25 01:44:42', 0, NULL, 0, NULL, 1),
(9647, 7580, '3', 'Madras University', '', 'B.b.a', '2021', 62.00, '', 1, '2022-01-25 02:58:21', 0, NULL, 0, NULL, 1),
(9648, 7581, '3', 'Thiruvalluvar university', '', 'Bca', '2016', 69.00, '', 1, '2022-01-25 03:32:01', 0, NULL, 0, NULL, 1),
(9649, 7582, '2', 'state', '', '', '2015', 83.00, '', 1, '2022-01-25 05:59:27', 1, '2022-01-25 06:01:24', 0, NULL, 1),
(9650, 7582, '1', 'state', '', '', '2013', 91.00, '', 1, '2022-01-25 05:59:41', 0, NULL, 0, NULL, 1),
(9651, 7582, '3', 'bharadhidhasan university', '', 'bca', '2018', 68.00, '', 1, '2022-01-25 06:00:16', 0, NULL, 0, NULL, 1),
(9652, 7582, '4', 'anna university', '', 'mba', '2020', 78.00, '', 1, '2022-01-25 06:00:38', 0, NULL, 0, NULL, 1),
(9653, 7583, '3', 'Ponnaiyah Ramajayam Institute of Science and Technology', '', 'B.Tech', '2020', 6.75, '', 1, '2022-01-25 06:36:45', 0, NULL, 0, NULL, 1),
(9654, 7584, '3', 'Barath University', '', 'B.Tech', '2017', 5.90, '', 1, '2022-01-26 10:15:22', 0, NULL, 0, NULL, 1),
(9655, 7585, '4', 'Pondichery university', '', 'MBA', '2021', 65.00, '', 1, '2022-01-27 06:57:01', 0, NULL, 0, NULL, 1),
(9656, 7587, '3', 'Madras university ', '', 'B.com (ca)', '2020', 50.00, '', 1, '2022-01-27 10:05:02', 0, NULL, 0, NULL, 1),
(9657, 7587, '1', 'State board', '', '', '2017', 52.00, '', 1, '2022-01-27 10:05:28', 0, NULL, 0, NULL, 1),
(9658, 7587, '2', 'State Board ', '', '', '2015', 77.00, '', 1, '2022-01-27 10:05:51', 0, NULL, 0, NULL, 1),
(9659, 7586, '3', 'Alagappa university', '', 'BBA airline and airport management', '2020', 70.00, '', 1, '2022-01-27 10:07:04', 0, NULL, 0, NULL, 1),
(9660, 7588, '3', 'Madras University', '', 'Bsc computer science', '2020', 82.00, '', 1, '2022-01-27 10:38:56', 0, NULL, 0, NULL, 1),
(9661, 7589, '3', 'Theruvallur University', '', 'BBA', '2020', 58.00, '', 1, '2022-01-27 10:41:44', 0, NULL, 0, NULL, 1),
(9662, 7591, '1', 'St Mary\'s g h s s kuzhikkattuserry', '', '', '2015', 85.00, '', 1, '2022-01-27 10:55:01', 0, NULL, 0, NULL, 1),
(9663, 7593, '4', 'Madras university', '', 'MBA', '2021', 80.00, '', 1, '2022-01-27 10:55:13', 0, NULL, 0, NULL, 1),
(9664, 7593, '3', 'Thiruvalluvar university', '', 'Bsc computer science', '2017', 86.00, '', 1, '2022-01-27 10:55:54', 0, NULL, 0, NULL, 1),
(9665, 7593, '2', 'State board', '', '', '2014', 85.00, '', 1, '2022-01-27 10:56:33', 0, NULL, 0, NULL, 1),
(9666, 7592, '3', 'Shri sankaral sundaraibai shansun Jain college', '', 'B.com(accounting & finance', '2017', 61.00, '', 1, '2022-01-27 10:57:55', 0, NULL, 0, NULL, 1),
(9667, 7594, '5', 'Dote', '', 'Diploma in mechanical engineering', '2019', 70.00, '', 1, '2022-01-27 11:06:47', 0, NULL, 0, NULL, 1),
(9668, 7595, '5', 'Dote', '', 'Diploma in computer engineering', '2019', 66.00, '', 1, '2022-01-27 11:07:53', 0, NULL, 0, NULL, 1),
(9669, 7597, '3', 'Madras University', '', 'B.Com', '2011', 58.00, '', 1, '2022-01-27 11:50:12', 0, NULL, 0, NULL, 1),
(9670, 7596, '5', 'Anna. University', '', 'Electrical electronics engineering', '2017', 58.00, '', 1, '2022-01-27 12:10:50', 0, NULL, 0, NULL, 1),
(9671, 7598, '5', 'Akbar academy of airline studies', '', 'IATA', '2020', 100.00, '', 1, '2022-01-27 12:24:24', 0, NULL, 0, NULL, 1),
(9672, 7599, '3', 'Thiruvalluvar', '', 'B.com', '2019', 64.00, '', 1, '2022-01-27 12:25:45', 0, NULL, 0, NULL, 1),
(9673, 7600, '3', 'University of Madras ', '', 'B. A English ', '2018', 66.00, '', 1, '2022-01-27 12:31:01', 0, NULL, 0, NULL, 1),
(9674, 7600, '2', 'Kalashethra Matriculation high school ', '', '', '2015', 80.00, '', 1, '2022-01-27 12:31:28', 0, NULL, 0, NULL, 1),
(9675, 7600, '1', 'GSPT Girls High school ', '', '', '2013', 80.00, '', 1, '2022-01-27 12:31:51', 0, NULL, 0, NULL, 1),
(9676, 7601, '3', 'Madras university', '', 'B com', '2013', 62.00, '', 1, '2022-01-27 12:53:34', 0, NULL, 0, NULL, 1),
(9677, 7602, '3', 'Madras University', '', 'Bsc Bio-Tech', '2018', 60.00, '', 1, '2022-01-27 01:29:57', 0, NULL, 0, NULL, 1),
(9678, 7603, '3', 'Anna University', '', 'BE civil engineering', '2020', 55.00, '', 1, '2022-01-27 01:31:41', 0, NULL, 0, NULL, 1),
(9679, 7604, '5', 'Elumalai polytechnic ', '', 'Diplomo ECE', '2017', 69.00, '', 1, '2022-01-27 01:40:02', 0, NULL, 0, NULL, 1),
(9680, 7590, '3', 'Dr mgr educational and research institute', '', 'Bca', '2018', 85.00, '', 1, '2022-01-27 02:07:48', 0, NULL, 0, NULL, 1),
(9681, 7606, '4', 'Madras University', '', 'B.com c.s', '2016', 71.00, '', 1, '2022-01-27 03:16:37', 0, NULL, 0, NULL, 1),
(9682, 7607, '4', 'Bharathi dasan University', '', 'MBA', '2019', 74.00, '', 1, '2022-01-28 10:36:16', 0, NULL, 0, NULL, 1),
(9683, 7609, '2', '(Arul Jothi Vallalar Higher Secondary School', '', '', '2015', 71.00, '', 1, '2022-01-28 10:39:15', 0, NULL, 0, NULL, 1),
(9684, 7609, '3', 'SBM College of Engineering and Technology', '', '(B.E) in Computer Science', '2019', 61.00, '', 1, '2022-01-28 10:39:50', 0, NULL, 0, NULL, 1),
(9685, 7608, '3', 'Tiruvallur University', '', 'BBA', '2020', 65.00, '', 1, '2022-01-28 10:44:25', 0, NULL, 0, NULL, 1),
(9686, 7610, '3', 'Madras University', '', 'B.A ECONOMICS', '2018', 60.00, '', 1, '2022-01-28 10:51:53', 0, NULL, 0, NULL, 1),
(9687, 7611, '5', 'DOTE', '', 'Diploma', '2017', 58.00, '', 1, '2022-01-28 12:17:49', 0, NULL, 0, NULL, 1),
(9688, 7612, '3', 'Shree muthukumara Swamy college', '', 'B.com CS', '2021', 60.00, '', 1, '2022-01-28 12:22:06', 0, NULL, 0, NULL, 1),
(9689, 7613, '3', 'Anna University ', '', 'BE-CIVIL engineering ', '2018', 60.00, '', 1, '2022-01-28 01:10:38', 0, NULL, 0, NULL, 1),
(9690, 7614, '3', 'Madras University', '', 'BA ECONOMICS', '2021', 63.00, '', 1, '2022-01-28 02:48:22', 0, NULL, 0, NULL, 1),
(9691, 7615, '4', 'Bharathidasan university', '', 'MBA', '2019', 70.00, '', 1, '2022-01-28 04:17:04', 0, NULL, 0, NULL, 1),
(9692, 7616, '3', 'Madras University', '', 'Bsc Mathematics', '2021', 81.00, '', 1, '2022-01-29 10:53:19', 0, NULL, 0, NULL, 1),
(9693, 7616, '1', 'State board', '', '', '2016', 76.00, '', 1, '2022-01-29 10:54:50', 0, NULL, 0, NULL, 1),
(9694, 7616, '2', 'State board', '', '', '2018', 57.00, '', 1, '2022-01-29 10:55:10', 0, NULL, 0, NULL, 1),
(9695, 7617, '4', 'University of Madras', '', 'Mcom', '2019', 75.00, '', 1, '2022-01-29 11:37:02', 0, NULL, 0, NULL, 1),
(9696, 7619, '3', 'Madras University', '', 'Bsc computer science', '2019', 60.00, '', 1, '2022-01-29 02:47:19', 0, NULL, 0, NULL, 1),
(9697, 7624, '3', 'Nadar mahasana sangam s vellaichami nadar college', '', 'BBA Bachelor of business administrative', '2016', 63.00, '', 1, '2022-01-31 10:32:00', 0, NULL, 0, NULL, 1),
(9698, 7628, '4', 'Madras University', '', 'M.sc', '2015', 48.00, '', 1, '2022-01-31 11:08:04', 0, NULL, 0, NULL, 1),
(9699, 7627, '3', 'Madras university', '', 'Bsc.chemistry', '2020', 72.00, '', 1, '2022-01-31 11:12:23', 0, NULL, 0, NULL, 1),
(9700, 7625, '2', 'state board', '', '', '2014', 50.00, '', 58, '2022-01-31 11:18:06', 0, NULL, 0, NULL, 1),
(9701, 7625, '3', 'stpeters', '', 'be civil', '2019', 56.00, '', 58, '2022-01-31 11:18:42', 0, NULL, 0, NULL, 1),
(9702, 7626, '3', 'Madras University', '', 'B.sc', '2019', 80.00, '', 1, '2022-01-31 11:20:40', 0, NULL, 0, NULL, 1),
(9703, 7629, '3', 'University of Madras ', '', 'Bsc computer science ', '2021', 89.00, '', 1, '2022-01-31 11:31:15', 0, NULL, 0, NULL, 1),
(9704, 7630, '5', 'Ponniyah ramajayam polytechnic college', '', '-', '2013', 71.20, '', 1, '2022-01-31 12:09:17', 0, NULL, 0, NULL, 1),
(9705, 7631, '2', 'State', '', '', '2016', 51.00, '', 1, '2022-01-31 12:37:56', 0, NULL, 0, NULL, 1),
(9706, 7631, '3', 'Madras University', '', 'BBA', '2019', 85.00, '', 1, '2022-01-31 12:38:22', 0, NULL, 0, NULL, 1),
(9707, 7632, '4', 'University', '', 'M.com', '2012', 60.00, '', 1, '2022-01-31 01:20:48', 0, NULL, 0, NULL, 1),
(9708, 7633, '5', 'SRVP college sembodai', '', '', '2022', 76.00, '', 1, '2022-01-31 01:26:25', 0, NULL, 0, NULL, 1),
(9709, 7635, '3', 'Thiruvaluvar university', '', 'B. a. Tamil', '2022', 75.00, '', 1, '2022-01-31 01:51:44', 0, NULL, 0, NULL, 1),
(9710, 7637, '5', 'DOTE', '', '', '2006', 75.00, '', 1, '2022-01-31 02:52:25', 0, NULL, 0, NULL, 1),
(9711, 7636, '4', 'Osmania', '', 'MBA', '2009', 70.00, '', 1, '2022-01-31 02:53:59', 0, NULL, 0, NULL, 1),
(9712, 7636, '3', 'SVU', '', 'Bsc', '2007', 70.00, '', 1, '2022-01-31 02:54:35', 0, NULL, 0, NULL, 1),
(9713, 7636, '2', 'Sangamitra Junior college', '', '', '2004', 55.00, '', 1, '2022-01-31 02:55:11', 0, NULL, 0, NULL, 1),
(9714, 7636, '1', 'ZPPGH', '', '', '2002', 55.00, '', 1, '2022-01-31 02:55:39', 0, NULL, 0, NULL, 1),
(9715, 7638, '2', 'Tamil nadu', '', '', '2017', 63.00, '', 1, '2022-01-31 03:18:53', 0, NULL, 0, NULL, 1),
(9716, 7638, '1', 'Tamil Nadu', '', '', '2015', 65.00, '', 1, '2022-01-31 03:19:35', 0, NULL, 0, NULL, 1),
(9717, 7639, '5', 'Annamalai university', '', 'No degree', '2018', 70.00, '', 1, '2022-01-31 07:02:33', 0, NULL, 0, NULL, 1),
(9718, 7641, '3', 'madras university', '', 'bsc computer science', '2008', 65.00, '', 1, '2022-01-31 10:24:29', 0, NULL, 0, NULL, 1),
(9719, 7641, '4', 'allagapa university', '', 'mba investment management', '2014', 64.00, '', 1, '2022-01-31 10:26:56', 0, NULL, 0, NULL, 1),
(9720, 7642, '3', 'University of Madras', '', 'b.com accounting finace ', '2019', 60.00, '', 1, '2022-02-01 10:15:59', 0, NULL, 0, NULL, 1),
(9721, 7642, '1', 'assumption higher secondary school', '', 'b.com acoounting financial ', '2014', 60.00, '', 1, '2022-02-01 10:18:31', 0, NULL, 0, NULL, 1),
(9722, 7642, '2', 'assumption hig secondry school ', '', '', '2016', 70.00, '', 1, '2022-02-01 10:19:23', 0, NULL, 0, NULL, 1),
(9723, 7643, '5', 'Thiruvalluvar University', '', 'DmE', '2018', 58.50, '', 1, '2022-02-01 11:10:38', 0, NULL, 0, NULL, 1),
(9724, 7647, '3', 'Bharathidasan University', '', 'B.com(ca)', '2020', 70.00, '', 1, '2022-02-01 11:55:31', 0, NULL, 0, NULL, 1),
(9725, 7644, '3', 'University of madras', '', 'B.com', '2021', 82.00, '', 1, '2022-02-01 11:58:41', 0, NULL, 0, NULL, 1),
(9726, 7646, '3', 'PIMST', '', 'Bcom ', '2021', 6.50, '', 1, '2022-02-01 11:59:06', 1, '2022-02-01 11:59:41', 0, NULL, 1),
(9727, 7644, '2', 'Sri Sathya Sai Vidyalaya', '', '', '2018', 92.00, '', 1, '2022-02-01 11:59:21', 1, '2022-02-01 12:00:14', 0, NULL, 1),
(9728, 7648, '3', 'Bharathidasan university ', '', 'BBA', '2019', 6.68, '', 1, '2022-02-01 11:59:34', 0, NULL, 0, NULL, 1),
(9729, 7644, '1', 'Central board of secondary education', '', '', '2016', 72.00, '', 1, '2022-02-01 12:02:02', 0, NULL, 0, NULL, 1),
(9730, 7649, '4', 'Sathyabama university', '', 'MBA', '2022', 71.00, '', 1, '2022-02-01 12:06:52', 0, NULL, 0, NULL, 1),
(9731, 7650, '3', 'University', '', 'BA.ECONOMiCS', '2021', 56.00, '', 1, '2022-02-01 12:53:16', 0, NULL, 0, NULL, 1),
(9732, 7651, '5', 'Anna University', '', 'DCE', '2017', 68.00, '', 1, '2022-02-01 01:13:22', 0, NULL, 0, NULL, 1),
(9733, 7645, '3', 'bharadhidasan', '', 'bachelore of statics', '2017', 72.00, '', 1, '2022-02-01 01:21:40', 0, NULL, 0, NULL, 1),
(9734, 7645, '4', 'bharathidasan', '', 'master of statics', '2019', 74.00, '', 1, '2022-02-01 01:22:44', 0, NULL, 0, NULL, 1),
(9735, 7654, '3', 'Bangalore University', '', 'Bcom', '2012', 55.00, '', 1, '2022-02-01 02:08:12', 0, NULL, 0, NULL, 1),
(9736, 7656, '3', 'Dr. MGR educational and research institute', '', 'B. Tech', '2018', 74.00, '', 1, '2022-02-01 03:53:22', 0, NULL, 0, NULL, 1),
(9737, 7656, '5', 'NIIT University', '', 'PGDBM', '2022', 6.00, '', 1, '2022-02-01 03:53:50', 0, NULL, 0, NULL, 1),
(9738, 7658, '4', 'Kakatiya university', '', 'MBA', '2008', 63.00, '', 1, '2022-02-01 05:19:36', 0, NULL, 0, NULL, 1),
(9739, 7658, '3', 'Kakatiya university', '', 'M E cs', '2006', 63.00, '', 1, '2022-02-01 05:20:00', 0, NULL, 0, NULL, 1),
(9740, 7658, '2', 'Board of intermediate', '', '', '2003', 55.00, '', 1, '2022-02-01 05:20:25', 0, NULL, 0, NULL, 1),
(9741, 7658, '1', 'Board of secondary grade education', '', '', '2000', 71.00, '', 1, '2022-02-01 05:20:47', 0, NULL, 0, NULL, 1),
(9742, 7660, '4', 'university', '', 'm.e computer science', '2016', 7.70, '', 1, '2022-02-01 07:36:34', 0, NULL, 0, NULL, 1),
(9743, 7662, '5', 'Anna University ', '', 'Diploma in computer engineering ', '2021', 70.00, '', 1, '2022-02-02 08:46:16', 1, '2022-02-02 08:49:07', 0, NULL, 1),
(9744, 7623, '4', 'Sea college, bangalore', '', 'MBA', '2021', 78.00, '', 1, '2022-02-02 09:53:27', 0, NULL, 0, NULL, 1),
(9745, 7663, '1', 'State board ', '', '', '2008', 62.00, '', 1, '2022-02-02 11:32:16', 0, NULL, 0, NULL, 1),
(9746, 7663, '2', 'State board', '', '', '2010', 75.00, '', 1, '2022-02-02 11:32:38', 0, NULL, 0, NULL, 1),
(9747, 7663, '3', 'Madras University', '', 'B.Com', '2013', 70.00, '', 1, '2022-02-02 11:33:21', 0, NULL, 0, NULL, 1),
(9748, 7665, '3', 'Bharadhidhasan university', '', 'BCA', '2020', 75.00, '', 1, '2022-02-02 12:34:31', 0, NULL, 0, NULL, 1),
(9749, 7666, '3', 'Bharadhidhasan university', '', 'B.sc(cs)', '2020', 74.00, '', 1, '2022-02-02 12:39:16', 0, NULL, 0, NULL, 1),
(9750, 7667, '3', 'Manonmaniam sundaranar University', '', 'BCA', '2020', 69.00, '', 1, '2022-02-02 03:19:08', 0, NULL, 0, NULL, 1),
(9751, 7671, '2', 'State board', '', '', '2016', 69.00, '', 1, '2022-02-03 09:50:47', 0, NULL, 0, NULL, 1),
(9752, 7671, '5', 'Polytecnic', '', 'Diploma', '2021', 83.00, '', 1, '2022-02-03 09:51:22', 0, NULL, 0, NULL, 1),
(9753, 7670, '3', 'Madars University', '', 'BBA', '2019', 80.50, '', 1, '2022-02-03 10:23:34', 0, NULL, 0, NULL, 1),
(9754, 7664, '2', 'state board', '', '', '2016', 75.00, '', 58, '2022-02-03 10:30:04', 0, NULL, 0, NULL, 1),
(9755, 7664, '3', 'jai mathaji', '', 'be', '2020', 65.00, '', 58, '2022-02-03 10:30:36', 0, NULL, 0, NULL, 1),
(9756, 7672, '3', 'Alagappa University', '', 'BCA', '2020', 65.10, '', 1, '2022-02-03 10:38:59', 0, NULL, 0, NULL, 1),
(9757, 7673, '3', 'Loyola Institute of Technology/Anna University', '', 'BE / ECE', '2019', 7.10, '', 1, '2022-02-03 10:53:42', 0, NULL, 0, NULL, 1),
(9758, 7673, '2', 'State board', '', '', '2015', 65.00, '', 1, '2022-02-03 10:54:18', 0, NULL, 0, NULL, 1),
(9759, 7673, '1', 'State Board', '', '', '2013', 85.00, '', 1, '2022-02-03 10:54:43', 0, NULL, 0, NULL, 1),
(9760, 7674, '3', 'Anna University', '', 'B.E Civil Engineering', '2020', 70.00, '', 1, '2022-02-03 11:38:37', 0, NULL, 0, NULL, 1),
(9761, 7655, '1', 'Govt high sec school ', '', '', '2010', 62.00, '', 1, '2022-02-03 11:48:47', 0, NULL, 0, NULL, 1),
(9762, 7655, '2', 'Govt high Secondary school ', '', '', '2012', 73.00, '', 1, '2022-02-03 11:49:27', 0, NULL, 0, NULL, 1),
(9763, 7655, '3', 'Skp engineering college ', '', 'BE computer science ', '2017', 79.00, '', 1, '2022-02-03 11:50:22', 0, NULL, 0, NULL, 1),
(9764, 6683, '4', 'Sathyabama University', '', 'MBA', '2021', 87.00, '', 1, '2022-02-03 12:39:06', 0, NULL, 0, NULL, 1),
(9765, 7676, '3', 'Madras University', '', '', '2021', 7.80, '', 1, '2022-02-03 02:30:33', 0, NULL, 0, NULL, 1),
(9766, 7677, '3', 'University of madras', '', 'B. Com', '2022', 60.00, '', 1, '2022-02-04 10:07:18', 0, NULL, 0, NULL, 1),
(9767, 7678, '3', 'Anna University', '', 'DME', '2021', 82.00, '', 1, '2022-02-04 12:04:14', 0, NULL, 0, NULL, 1),
(9768, 5890, '3', 'Madras', '', '', '2021', 0.00, '', 60, '2022-02-04 01:17:41', 0, NULL, 0, NULL, 1),
(9769, 5890, '3', 'Madras', '', '', '2021', 0.00, '', 60, '2022-02-04 01:17:41', 0, NULL, 0, NULL, 1),
(9770, 7680, '1', 'Stateboard', '', '', '2012', 71.00, '', 1, '2022-02-04 01:58:15', 0, NULL, 0, NULL, 1),
(9771, 7680, '3', 'Anna University', '', 'BE mechanical engineering', '2018', 62.00, '', 1, '2022-02-04 01:59:18', 0, NULL, 0, NULL, 1),
(9772, 7682, '3', 'Anna university', '', 'B. E mechanical', '2015', 68.00, '', 1, '2022-02-04 02:16:32', 0, NULL, 0, NULL, 1),
(9773, 7681, '5', 'Thiruvallur University', '', '', '2017', 77.00, '', 1, '2022-02-04 02:23:19', 0, NULL, 0, NULL, 1),
(9774, 7683, '4', 'a p j abdul kalam technological university', '', 'mba', '2020', 65.00, '', 1, '2022-02-05 10:26:33', 0, NULL, 0, NULL, 1),
(9775, 7683, '3', 'calicut University ', '', 'bcom', '2016', 68.00, '', 1, '2022-02-05 10:28:04', 0, NULL, 0, NULL, 1),
(9776, 7683, '2', 'cbsc', '', '', '2013', 60.00, '', 1, '2022-02-05 10:28:47', 0, NULL, 0, NULL, 1),
(9777, 7683, '1', 'state board', '', '', '2011', 65.00, '', 1, '2022-02-05 10:29:32', 0, NULL, 0, NULL, 1),
(9778, 7684, '4', 'JNTU A', '', 'BTech- CE', '2019', 62.00, '', 1, '2022-02-05 10:34:49', 0, NULL, 0, NULL, 1),
(9779, 7684, '3', 'Shirdi sai junior college rajampet', '', 'INTER MEDIATE (MPC)', '2015', 57.20, '', 1, '2022-02-05 10:36:00', 0, NULL, 0, NULL, 1),
(9780, 7685, '3', 'University', '', 'B.com', '2021', 80.00, '', 1, '2022-02-05 11:06:02', 0, NULL, 0, NULL, 1),
(9781, 7687, '3', 'Sri venkateswara college of engineering and e', '', 'B.E (Computer Science)', '2022', 69.33, '', 1, '2022-02-05 11:06:06', 0, NULL, 0, NULL, 1),
(9782, 7687, '2', 'The salvation army hevan mat hr sec school', '', '', '2017', 59.50, '', 1, '2022-02-05 11:06:56', 0, NULL, 0, NULL, 1),
(9783, 7688, '4', 'Anna university ', '', 'MBA Hr@Marketing', '2020', 6.70, '', 1, '2022-02-05 11:19:56', 0, NULL, 0, NULL, 1),
(9784, 7688, '4', 'Anna university ', '', 'mBA Hr&Marketing', '2020', 6.50, '', 1, '2022-02-05 11:30:58', 0, NULL, 0, NULL, 1),
(9785, 7690, '3', 'Madras University', '', 'B.com cA', '2019', 68.00, '', 1, '2022-02-05 06:54:52', 0, NULL, 0, NULL, 1),
(9786, 7686, '5', 'Tamilnadu Open University', '', '', '2016', 79.00, '', 1, '2022-02-05 10:42:03', 0, NULL, 0, NULL, 1),
(9787, 7692, '5', 'SRM University', '', '', '2020', 75.00, '', 1, '2022-02-07 11:27:40', 0, NULL, 0, NULL, 1),
(9788, 7694, '3', 'Madras University', '', 'BA.ENGLISH LITERATURE', '2020', 55.00, '', 1, '2022-02-07 11:42:53', 0, NULL, 0, NULL, 1),
(9789, 7695, '3', 'Madras university', '', 'B.sc maths', '2020', 61.00, '', 1, '2022-02-07 11:44:10', 0, NULL, 0, NULL, 1),
(9790, 7693, '3', 'Madras university ', '', 'B. Com general ', '2021', 72.00, '', 1, '2022-02-07 11:45:39', 0, NULL, 0, NULL, 1),
(9791, 7689, '3', 'Madras University', '', 'BBA', '2021', 67.00, '', 1, '2022-02-07 12:16:37', 0, NULL, 0, NULL, 1),
(9792, 7691, '2', 'state board', '', '', '2000', 65.00, '', 1, '2022-02-07 12:29:51', 0, NULL, 0, NULL, 1),
(9793, 7691, '3', 'madras university', '', 'bcom', '2003', 70.00, '', 1, '2022-02-07 12:30:57', 0, NULL, 0, NULL, 1),
(9794, 7696, '4', 'Madras university', '', 'B. Com', '2017', 60.00, '', 1, '2022-02-07 12:51:10', 0, NULL, 0, NULL, 1),
(9795, 7697, '3', 'Anna university', '', 'B.E(Electronics and communication engineering)', '2019', 75.00, '', 1, '2022-02-07 12:52:33', 0, NULL, 0, NULL, 1),
(9796, 7698, '3', 'Bharathidhasan university', '', 'Bsc(Mathematics)', '2019', 70.00, '', 1, '2022-02-07 01:03:34', 0, NULL, 0, NULL, 1),
(9797, 7699, '4', 'Madras ', '', 'BA Economics', '2027', 60.00, '', 1, '2022-02-07 01:37:31', 0, NULL, 0, NULL, 1),
(9798, 7700, '2', 'ATA', '', '', '2014', 70.00, '', 1, '2022-02-07 02:30:38', 0, NULL, 0, NULL, 1),
(9799, 7701, '2', 'State', '', '', '2018', 48.00, '', 1, '2022-02-07 03:04:52', 0, NULL, 0, NULL, 1),
(9800, 7701, '3', 'ARC Visvanathan college', '', 'B. COM', '2021', 81.00, '', 1, '2022-02-07 03:05:22', 0, NULL, 0, NULL, 1),
(9801, 7703, '2', 'StateBoard', '', '', '2016', 70.00, '', 1, '2022-02-07 03:11:12', 0, NULL, 0, NULL, 1),
(9802, 7696, '2', 'tn', '', '', '2017', 60.00, '', 7, '2022-02-07 03:11:30', 0, NULL, 0, NULL, 1),
(9803, 7703, '3', 'Annamalai University', '', 'B.ScComputer Science', '2022', 70.00, '', 1, '2022-02-07 03:11:40', 0, NULL, 0, NULL, 1),
(9804, 7704, '2', 'state board', '', '', '2016', 71.00, '', 1, '2022-02-07 06:11:02', 0, NULL, 0, NULL, 1),
(9805, 7704, '3', 'madras university', '', 'bsc', '2019', 65.00, '', 1, '2022-02-07 06:11:34', 0, NULL, 0, NULL, 1),
(9806, 7699, '2', 'tn', '', '', '2005', 65.00, '', 7, '2022-02-07 06:30:27', 0, NULL, 0, NULL, 1),
(9807, 7707, '1', 'State board ', '', '', '2008', 63.00, '', 1, '2022-02-08 10:49:34', 0, NULL, 0, NULL, 1),
(9808, 7707, '2', 'State boatd', '', '', '2010', 56.00, '', 1, '2022-02-08 10:49:51', 0, NULL, 0, NULL, 1),
(9809, 7707, '3', 'Tiruvalluvar university', '', 'B. Sc Maths', '2014', 67.00, '', 1, '2022-02-08 10:50:19', 0, NULL, 0, NULL, 1),
(9810, 7707, '4', 'Anna university', '', 'MBA', '2018', 72.00, '', 1, '2022-02-08 10:50:42', 0, NULL, 0, NULL, 1),
(9811, 7709, '5', 'murugappa polytechnic college', '', 'dece', '2020', 71.00, '', 1, '2022-02-08 11:22:13', 0, NULL, 0, NULL, 1),
(9812, 7710, '1', 'State board', '', '', '2016', 75.00, '', 1, '2022-02-08 11:40:00', 0, NULL, 0, NULL, 1),
(9813, 7710, '5', 'Dote', '', '', '2019', 80.00, '', 1, '2022-02-08 11:40:58', 0, NULL, 0, NULL, 1),
(9814, 7711, '4', 'Madrs university', '', 'M. Com', '2014', 72.00, '', 1, '2022-02-08 11:41:49', 0, NULL, 0, NULL, 1),
(9815, 7712, '2', 'state board', '', '', '2016', 60.00, '', 1, '2022-02-08 12:05:21', 0, NULL, 0, NULL, 1),
(9816, 7712, '3', 'Anna University', '', 'B.Tech', '2020', 66.00, '', 1, '2022-02-08 12:06:31', 0, NULL, 0, NULL, 1),
(9817, 7702, '5', 'DOTE', '', '', '2016', 63.00, '', 1, '2022-02-08 12:20:49', 0, NULL, 0, NULL, 1),
(9818, 7706, '4', 'Anna university ', '', '', '2019', 7.60, '', 1, '2022-02-08 12:38:55', 0, NULL, 0, NULL, 1),
(9819, 7713, '3', 'University of Madras', '', 'B.com Information System Management', '2021', 50.00, '', 1, '2022-02-08 01:47:21', 0, NULL, 0, NULL, 1),
(9820, 7714, '3', 'ANNA UNIVERSITY', '', 'B.E.ECE', '2019', 60.00, '', 1, '2022-02-08 02:33:53', 0, NULL, 0, NULL, 1),
(9821, 7716, '3', 'Kings Engineering College', '', 'B.E Computer Science', '2021', 6.92, '', 1, '2022-02-08 04:08:25', 0, NULL, 0, NULL, 1),
(9822, 7718, '2', 'Devangar Hr.Sec School, Chinnalapatti', '', '', '2015', 52.00, '', 1, '2022-02-08 04:44:19', 0, NULL, 0, NULL, 1),
(9823, 7718, '3', 'Madurai Kamaraj University', '', 'ba', '2018', 60.00, '', 1, '2022-02-08 04:44:41', 0, NULL, 0, NULL, 1),
(9824, 7719, '3', 'Meenakshi college of engineering', '', 'Btech ', '2017', 69.00, '', 1, '2022-02-08 05:35:45', 0, NULL, 0, NULL, 1),
(9825, 7723, '3', 'Thiruvalluvar', '', 'BCA', '2021', 76.00, '', 1, '2022-02-09 10:05:50', 0, NULL, 0, NULL, 1),
(9826, 7724, '2', 'Sate board ', '', '', '2015', 75.00, '', 1, '2022-02-09 10:12:27', 0, NULL, 0, NULL, 1),
(9827, 7726, '3', 'Anna University', '', 'B.E ', '2013', 75.00, '', 1, '2022-02-09 11:06:43', 0, NULL, 0, NULL, 1),
(9828, 7727, '5', 'State', '', 'Designing', '2022', 78.00, '', 1, '2022-02-09 11:43:25', 0, NULL, 0, NULL, 1),
(9829, 7727, '1', 'State', '', '', '2016', 67.00, '', 1, '2022-02-09 11:44:25', 0, NULL, 0, NULL, 1),
(9830, 7728, '3', 'Bharathiyar university', '', 'B.Sc Computer science', '2020', 55.00, '', 1, '2022-02-09 11:48:14', 0, NULL, 0, NULL, 1),
(9831, 7720, '4', 'Sastra University', '', 'MBA', '2016', 65.00, '', 1, '2022-02-09 12:16:57', 0, NULL, 0, NULL, 1),
(9832, 7720, '3', 'Bharathidasan University', '', 'BCA', '2014', 89.00, '', 1, '2022-02-09 12:17:40', 0, NULL, 0, NULL, 1),
(9833, 7720, '2', 'State Board', '', '', '2011', 65.00, '', 1, '2022-02-09 12:18:04', 0, NULL, 0, NULL, 1),
(9834, 7720, '1', 'State board', '', '', '2009', 75.00, '', 1, '2022-02-09 12:18:31', 0, NULL, 0, NULL, 1),
(9835, 7729, '3', 'University of madras', '', 'BA economics', '2020', 75.00, '', 1, '2022-02-09 12:19:39', 0, NULL, 0, NULL, 1),
(9836, 7725, '3', 'Bharathidhasan university', '', 'Bsc', '2017', 72.00, '', 1, '2022-02-09 12:22:35', 0, NULL, 0, NULL, 1),
(9837, 7725, '4', 'Bharathidhasan university', '', 'Msc', '2017', 82.00, '', 1, '2022-02-09 12:23:46', 0, NULL, 0, NULL, 1),
(9838, 7717, '3', 'Bharathidhasan university', '', 'b.Com(can)', '2022', 75.00, '', 1, '2022-02-09 12:26:01', 0, NULL, 0, NULL, 1),
(9839, 7730, '3', 'University ', '', 'B.com(ism)', '2019', 62.00, '', 1, '2022-02-09 01:23:45', 0, NULL, 0, NULL, 1),
(9840, 7730, '2', 'Govt.Boys.Hr.Sec.school', '', '', '2015', 52.00, '', 1, '2022-02-09 01:24:33', 0, NULL, 0, NULL, 1),
(9841, 7730, '1', 'govt.boys.hr.sec.school', '', '', '2013', 60.00, '', 1, '2022-02-09 01:24:58', 0, NULL, 0, NULL, 1),
(9842, 7731, '5', 'Madras', '', 'DCSE', '2021', 93.00, '', 1, '2022-02-09 03:26:09', 0, NULL, 0, NULL, 1),
(9843, 7732, '4', 'Anna university ', '', 'MBA', '2020', 75.00, '', 1, '2022-02-09 03:53:46', 0, NULL, 0, NULL, 1),
(9844, 7733, '4', 'Anna university', '', 'MBA', '2022', 75.00, '', 1, '2022-02-09 03:56:13', 0, NULL, 0, NULL, 1),
(9845, 7722, '3', 'Anna University ', '', 'B.tech-IT ', '2014', 65.00, '', 1, '2022-02-09 05:45:35', 0, NULL, 0, NULL, 1),
(9846, 7735, '3', 'Madras University', '', 'B.com', '2010', 50.00, '', 1, '2022-02-09 06:22:28', 0, NULL, 0, NULL, 1),
(9847, 7735, '5', 'Loyola college', '', 'Dcfa', '2011', 60.00, '', 1, '2022-02-09 06:24:58', 0, NULL, 0, NULL, 1),
(9848, 7736, '5', 'Sri nallghu nadar polytechnic ', '', 'Diploma in computer engineering ', '2021', 100.00, '', 1, '2022-02-10 09:51:06', 0, NULL, 0, NULL, 1),
(9849, 7737, '2', 'Tn', '', '', '2018', 72.00, '', 1, '2022-02-10 10:27:47', 0, NULL, 0, NULL, 1),
(9850, 7737, '3', 'Madras', '', 'Bsc', '2021', 89.00, '', 1, '2022-02-10 10:28:19', 0, NULL, 0, NULL, 1),
(9851, 7738, '2', 'Tn', '', '', '2018', 70.00, '', 1, '2022-02-10 10:43:00', 0, NULL, 0, NULL, 1),
(9852, 7738, '3', 'Anna', '', 'BA', '2021', 75.00, '', 1, '2022-02-10 10:43:53', 0, NULL, 0, NULL, 1),
(9853, 7739, '3', 'Bharathidasan University,Trichy', '', 'Bsc information technology', '2021', 89.70, '', 1, '2022-02-10 11:19:36', 0, NULL, 0, NULL, 1),
(9854, 7740, '1', 'State board', '', '', '2014', 73.00, '', 1, '2022-02-10 12:09:05', 0, NULL, 0, NULL, 1),
(9855, 7711, '2', 'tn', '', '', '2007', 60.00, '', 7, '2022-02-10 01:25:19', 0, NULL, 0, NULL, 1),
(9856, 7741, '2', 'Bangalore University ', '', '', '2014', 68.00, '', 1, '2022-02-10 01:39:33', 0, NULL, 0, NULL, 1),
(9857, 7742, '3', 'Madras university', '', 'B.Sc mathd', '2014', 65.00, '', 1, '2022-02-10 02:30:58', 0, NULL, 0, NULL, 1),
(9858, 7744, '4', 'Mk University ', '', 'M.sc maths', '2018', 67.00, '', 1, '2022-02-10 03:56:54', 0, NULL, 0, NULL, 1),
(9859, 7748, '3', 'Madras University', '', 'B.COM', '2019', 60.00, '', 1, '2022-02-11 10:31:06', 0, NULL, 0, NULL, 1),
(9860, 7749, '2', 'state ', '', '', '2016', 72.00, '', 1, '2022-02-11 12:10:57', 0, NULL, 0, NULL, 1),
(9861, 7749, '3', 'annai velakani', '', 'bcom', '2019', 72.00, '', 1, '2022-02-11 12:12:28', 0, NULL, 0, NULL, 1),
(9862, 7752, '2', 'State board', '', '', '2017', 62.00, '', 1, '2022-02-11 12:21:53', 0, NULL, 0, NULL, 1),
(9863, 7751, '3', 'Dr.MGR Janaki art & Science women college', '', 'B.com corporate secretary', '2020', 70.00, '', 1, '2022-02-11 12:37:17', 0, NULL, 0, NULL, 1),
(9864, 7754, '3', 'Madras university', '', 'Bsc', '2015', 70.00, '', 1, '2022-02-11 02:55:05', 0, NULL, 0, NULL, 1),
(9865, 7758, '4', 'Anna university ', '', 'MBA HR&FIN', '2022', 60.00, '', 1, '2022-02-12 10:00:18', 0, NULL, 0, NULL, 1),
(9866, 7759, '2', 'Tamil Nadu open university ', '', '', '2010', 54.00, '', 1, '2022-02-12 11:33:20', 0, NULL, 0, NULL, 1),
(9867, 7760, '3', 'Manonmaniyam sundaranar University, tirunelveli', '', 'Bsc.botany', '2021', 70.00, '', 1, '2022-02-12 12:24:00', 0, NULL, 0, NULL, 1),
(9868, 1481, '2', 'CSI.St.columbus Hr. Sec. School, Chengalpattu', '', '', '2014', 70.00, '', 58, '2022-02-12 04:23:54', 0, NULL, 0, NULL, 1),
(9869, 1481, '3', 'PattammalAlagesan Collage of Arts and Science,Chengalpattu', '', 'bca', '2017', 66.00, '', 58, '2022-02-12 04:24:19', 0, NULL, 0, NULL, 1),
(9870, 7762, '3', 'College of engineering ', '', 'bio medical', '2017', 70.00, '', 1, '2022-02-12 04:38:48', 0, NULL, 0, NULL, 1),
(9871, 7763, '2', 'Bharathi Vidya Bhavan Mat H.Sc, Erode (Tamilnadu State Board)', '', '', '2010', 80.00, '', 1, '2022-02-12 05:03:48', 0, NULL, 0, NULL, 1),
(9872, 7763, '3', 'St Joseph’s College of Engineering, Chennai (Anna University)', '', 'BE in Mechanical', '2014', 63.00, '', 1, '2022-02-12 05:04:16', 0, NULL, 0, NULL, 1),
(9873, 7764, '3', 'Anna University', '', 'BE(ECE)', '2018', 71.00, '', 1, '2022-02-12 08:00:22', 0, NULL, 0, NULL, 1),
(9874, 7757, '3', 'University of Madras', '', 'B.sc(Software application)', '2021', 80.00, '', 1, '2022-02-13 07:53:42', 0, NULL, 0, NULL, 1),
(9875, 7756, '3', 'University of Madras', '', 'B.sc Software Application', '2021', 80.00, '', 1, '2022-02-13 07:54:10', 0, NULL, 0, NULL, 1),
(9876, 7766, '3', 'Madras University', '', 'B.com', '2020', 86.00, '', 1, '2022-02-13 10:05:42', 0, NULL, 0, NULL, 1),
(9877, 7767, '3', 'Bharathi dasen University', '', 'B.com', '2020', 57.00, '', 1, '2022-02-13 11:09:54', 0, NULL, 0, NULL, 1),
(9878, 7768, '2', 'CSI.St.columbus Hr. Sec. School, Chengalpattu', '', '', '2014', 70.00, '', 1, '2022-02-14 09:39:40', 0, NULL, 0, NULL, 1),
(9879, 7768, '3', 'University of Madras', '', 'BCA', '2017', 66.00, '', 1, '2022-02-14 09:42:42', 0, NULL, 0, NULL, 1),
(9880, 7770, '2', 'Tn', '', '', '2016', 78.00, '', 1, '2022-02-14 11:00:04', 0, NULL, 0, NULL, 1),
(9881, 7770, '3', 'Board ', '', 'B.A- Economics', '2019', 68.00, '', 1, '2022-02-14 11:02:47', 0, NULL, 0, NULL, 1),
(9882, 7772, '3', 'Madras University', '', 'Bsc(computer science)', '2020', 60.00, '', 1, '2022-02-14 11:41:22', 0, NULL, 0, NULL, 1),
(9883, 7755, '3', 'University of Madras ', '', 'B. SC (Software Application)', '2021', 75.00, '', 1, '2022-02-14 11:57:54', 0, NULL, 0, NULL, 1),
(9884, 7755, '1', 'Tamilnadu board of secondary education ', '', '', '2016', 67.00, '', 1, '2022-02-14 11:59:25', 0, NULL, 0, NULL, 1),
(9885, 7755, '2', 'Tamilnadu board of secondary education ', '', '', '2018', 60.00, '', 1, '2022-02-14 11:59:51', 0, NULL, 0, NULL, 1),
(9886, 7773, '4', 'JNTUA', '', 'Btech', '2017', 61.00, '', 1, '2022-02-14 12:02:08', 0, NULL, 0, NULL, 1),
(9887, 7775, '3', 'MADRAS University ', '', 'BA.HISTORY', '2020', 70.00, '', 1, '2022-02-14 12:21:58', 0, NULL, 0, NULL, 1),
(9888, 7774, '3', 'Madras University', '', 'B.cOM (GENERAL)', '2020', 60.00, '', 1, '2022-02-14 12:22:32', 0, NULL, 0, NULL, 1),
(9889, 7769, '3', 'bharathidasan university', '', 'b.sccomputer science', '2020', 68.00, '', 1, '2022-02-14 12:37:02', 0, NULL, 0, NULL, 1),
(9890, 7769, '4', 'bharathidasan university', '', 'msc computer science', '2022', 70.00, '', 1, '2022-02-14 12:38:16', 0, NULL, 0, NULL, 1),
(9891, 7771, '3', 'university of  madras', '', 'b.com', '2020', 82.00, '', 1, '2022-02-14 12:47:28', 0, NULL, 0, NULL, 1),
(9892, 7776, '4', 'Bharathidhasan university', '', 'MBA', '2018', 85.00, '', 1, '2022-02-14 02:25:13', 0, NULL, 0, NULL, 1),
(9893, 7777, '3', 'Alpha arts and science college', '', 'Bsc computer science', '2019', 58.50, '', 1, '2022-02-14 04:03:39', 0, NULL, 0, NULL, 1),
(9894, 7780, '3', 'JNTUK', '', 'B. Tech', '2020', 62.00, '', 1, '2022-02-14 07:24:29', 0, NULL, 0, NULL, 1),
(9895, 7781, '3', 'Osmania University', '', 'B.Sc microbiology', '2011', 74.00, '', 1, '2022-02-14 08:29:52', 0, NULL, 0, NULL, 1),
(9896, 7782, '4', 'vels university', '', 'mba', '2020', 72.00, '', 1, '2022-02-15 10:27:34', 0, NULL, 0, NULL, 1),
(9897, 7783, '4', 'Madras University', '', 'MBA HR', '2021', 70.00, '', 1, '2022-02-15 11:46:04', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9898, 7779, '1', 'Board', '', '', '2013', 53.00, '', 1, '2022-02-15 12:07:27', 0, NULL, 0, NULL, 1),
(9899, 7785, '3', 'SRM UNIVERSITY', '', 'BCA', '2016', 52.00, '', 1, '2022-02-15 12:16:18', 0, NULL, 0, NULL, 1),
(9900, 7784, '2', 'state board', '', '', '2018', 65.00, '', 1, '2022-02-15 12:22:50', 0, NULL, 0, NULL, 1),
(9901, 7784, '3', 'state board', '', 'bcom', '2021', 70.00, '', 1, '2022-02-15 12:23:21', 0, NULL, 0, NULL, 1),
(9902, 7786, '3', 'Sri ram college of arts and science', '', 'B. Com computer application', '2017', 61.00, '', 1, '2022-02-15 12:48:14', 0, NULL, 0, NULL, 1),
(9903, 7787, '4', 'Saveetha school of Management ', '', 'Masters of Business Administration ', '2020', 75.00, '', 1, '2022-02-15 01:29:34', 0, NULL, 0, NULL, 1),
(9904, 7788, '5', 'Bharat samak seva', '', '', '2009', 90.00, '', 1, '2022-02-15 02:54:09', 0, NULL, 0, NULL, 1),
(9905, 7789, '3', 'Anna university', '', 'BE - Mechanical', '2018', 81.30, '', 1, '2022-02-16 10:54:25', 0, NULL, 0, NULL, 1),
(9906, 7789, '2', 'State boare', '', '', '2014', 90.50, '', 1, '2022-02-16 10:54:56', 0, NULL, 0, NULL, 1),
(9907, 7789, '1', 'State board', '', '', '2012', 81.20, '', 1, '2022-02-16 10:55:34', 0, NULL, 0, NULL, 1),
(9908, 7791, '3', 'Vels University ', '', 'BCA', '2018', 65.00, '', 1, '2022-02-16 11:33:17', 0, NULL, 0, NULL, 1),
(9909, 7792, '4', 'Mother teresa women\'s university ', '', 'M.com', '2014', 69.00, '', 1, '2022-02-16 11:49:51', 0, NULL, 0, NULL, 1),
(9910, 7793, '2', 'Thiru Kamaraj Municple Hr. Sec. School', '', '', '2014', 60.00, '', 1, '2022-02-16 12:03:28', 0, NULL, 0, NULL, 1),
(9911, 7793, '3', ':   Dr.Pauls Engineering College ', '', ':   Dr.Pauls Engineering College ', '2018', 65.00, '', 1, '2022-02-16 12:03:50', 0, NULL, 0, NULL, 1),
(9912, 7794, '1', 'Board', '', '', '2010', 70.00, '', 1, '2022-02-16 12:30:12', 0, NULL, 0, NULL, 1),
(9913, 7795, '3', 'Madurai kamaraj University', '', 'B. Sc, Mathematics', '2021', 50.30, '', 1, '2022-02-16 12:36:49', 0, NULL, 0, NULL, 1),
(9914, 7795, '2', 'Stateboard', '', '', '2015', 60.80, '', 1, '2022-02-16 12:37:38', 0, NULL, 0, NULL, 1),
(9915, 7795, '1', 'Stateboard', '', '', '2013', 81.40, '', 1, '2022-02-16 12:38:03', 0, NULL, 0, NULL, 1),
(9916, 7796, '3', 'University', '', 'BA', '2016', 60.00, '', 1, '2022-02-16 12:51:26', 0, NULL, 0, NULL, 1),
(9917, 7798, '4', 'ma', '', 'ma', '2021', 70.00, '', 1, '2022-02-16 06:26:29', 0, NULL, 0, NULL, 1),
(9918, 7800, '4', 'Bharathiar', '', 'M.a', '2014', 73.00, '', 1, '2022-02-16 07:18:24', 0, NULL, 0, NULL, 1),
(9919, 7799, '3', 'Madrass University ', '', 'Bsc.Computer ', '2016', 56.00, '', 1, '2022-02-17 10:37:51', 0, NULL, 0, NULL, 1),
(9920, 7801, '3', 'Anna university', '', 'B.E', '2020', 63.00, '', 1, '2022-02-17 10:49:18', 0, NULL, 0, NULL, 1),
(9921, 7802, '4', 'Vels University', '', '', '2020', 5.64, '', 1, '2022-02-17 11:16:10', 0, NULL, 0, NULL, 1),
(9922, 7802, '4', 'Vels University', '', 'B.com', '2020', 5.64, '', 1, '2022-02-17 11:16:40', 0, NULL, 0, NULL, 1),
(9923, 7802, '4', 'Vels University', '', 'B.com', '2020', 5.64, '', 1, '2022-02-17 11:17:01', 0, NULL, 0, NULL, 1),
(9924, 7803, '3', 'Anna University', '', 'B.E cse', '2021', 70.00, '', 1, '2022-02-17 12:31:04', 0, NULL, 0, NULL, 1),
(9925, 7804, '3', 'Madras university', '', '', '2021', 67.00, '', 1, '2022-02-17 12:53:16', 0, NULL, 0, NULL, 1),
(9926, 7806, '5', 'Thiagarajar polytechnic college', '', 'Computer science', '2020', 70.00, '', 1, '2022-02-17 03:54:18', 0, NULL, 0, NULL, 1),
(9927, 7807, '3', 'Osmania', '', 'B.com', '2017', 8.00, '', 1, '2022-02-17 04:19:04', 0, NULL, 0, NULL, 1),
(9928, 7808, '3', 'solapur university', '', 'bba', '2016', 54.00, '', 1, '2022-02-17 04:39:49', 0, NULL, 0, NULL, 1),
(9929, 7810, '3', 'Anna University ', '', 'B.E', '2018', 6.18, '', 1, '2022-02-17 07:26:48', 0, NULL, 0, NULL, 1),
(9930, 7811, '3', 'JNTUK', '', 'Mechanical engineering', '2020', 60.00, '', 1, '2022-02-17 08:09:05', 0, NULL, 0, NULL, 1),
(9931, 7812, '4', 'Anna University ', '', 'MCA', '2008', 76.00, '', 1, '2022-02-17 08:18:58', 0, NULL, 0, NULL, 1),
(9932, 7815, '3', 'Vels university', '', 'B.COM CA', '2021', 75.00, '', 1, '2022-02-18 10:10:40', 0, NULL, 0, NULL, 1),
(9933, 7817, '4', 'Anna University', '', 'MBA', '2021', 65.00, '', 1, '2022-02-18 10:52:40', 0, NULL, 0, NULL, 1),
(9934, 7814, '1', 'N.S.Boys.Hr.Sec.School', '', '', '2011', 90.30, '', 1, '2022-02-18 11:02:32', 0, NULL, 0, NULL, 1),
(9935, 7814, '3', 'Karpagam academy of higher education', '', 'B.e automobile engineering', '2017', 70.90, '', 1, '2022-02-18 11:03:30', 0, NULL, 0, NULL, 1),
(9936, 7813, '3', 'Algappa ', '', 'B. Sc IT', '2019', 60.00, '', 1, '2022-02-18 11:03:33', 0, NULL, 0, NULL, 1),
(9937, 7816, '2', 'tn', '', '', '2008', 60.00, '', 7, '2022-02-18 11:28:03', 0, NULL, 0, NULL, 1),
(9938, 7816, '3', 'madras', '', 'bscmaths', '2011', 60.00, '', 7, '2022-02-18 11:28:30', 0, NULL, 0, NULL, 1),
(9939, 7818, '2', 'Sri Vijaya sai high school', '', '', '2019', 50.00, '', 1, '2022-02-18 11:46:07', 0, NULL, 0, NULL, 1),
(9940, 7818, '3', 'Kakatiya junior college', '', 'mpc', '2021', 60.00, '', 1, '2022-02-18 11:46:49', 0, NULL, 0, NULL, 1),
(9941, 7819, '2', 'State board', '', '', '2016', 55.00, '', 1, '2022-02-18 11:47:20', 0, NULL, 0, NULL, 1),
(9942, 7819, '3', 'Meenakshi University', '', 'B. Com(general)', '2019', 62.00, '', 1, '2022-02-18 11:48:08', 0, NULL, 0, NULL, 1),
(9943, 7821, '3', 'ANNA UNIVERSITY ', '', 'BE', '2020', 63.00, '', 1, '2022-02-18 12:09:41', 0, NULL, 0, NULL, 1),
(9944, 7823, '1', 'Tamilnadu State Board', '', '', '2016', 87.00, '', 1, '2022-02-18 12:21:19', 1, '2022-02-18 12:21:55', 0, NULL, 1),
(9945, 7823, '2', 'Tamilnadu State Board', '', '', '2018', 84.00, '', 1, '2022-02-18 12:22:24', 0, NULL, 0, NULL, 1),
(9946, 7822, '2', 'vijayan college', '', '', '2013', 63.00, '', 1, '2022-02-18 12:41:36', 0, NULL, 0, NULL, 1),
(9947, 7822, '3', 'vijayatha', '', 'bcom', '2016', 50.00, '', 1, '2022-02-18 12:42:01', 0, NULL, 0, NULL, 1),
(9948, 7824, '2', 'Primier Jr College.(', '', '', '2014', 55.00, '', 1, '2022-02-18 12:57:58', 0, NULL, 0, NULL, 1),
(9949, 7824, '3', 'Sri Sai Ram Degree College', '', 'bcom', '2017', 78.00, '', 1, '2022-02-18 12:58:45', 0, NULL, 0, NULL, 1),
(9950, 7825, '3', 'Thiruvalluvar University', '', 'B.com', '2015', 65.00, '', 1, '2022-02-18 02:42:44', 0, NULL, 0, NULL, 1),
(9951, 7826, '4', 'Pondicherry university ', '', 'M. B. A finance', '2019', 68.00, '', 1, '2022-02-18 06:12:33', 0, NULL, 0, NULL, 1),
(9952, 7827, '4', 'Jawaharlal Nehru University Hyderabad', '', 'MBA', '2018', 71.00, '', 1, '2022-02-18 06:38:55', 0, NULL, 0, NULL, 1),
(9953, 7828, '4', 'Anna university ', '', 'MBA', '2016', 78.00, '', 1, '2022-02-18 06:39:13', 0, NULL, 0, NULL, 1),
(9954, 7828, '3', 'Thiruvalluvar University ', '', 'BSC Computer Science', '2014', 73.00, '', 1, '2022-02-18 06:40:27', 0, NULL, 0, NULL, 1),
(9955, 7828, '2', 'English Medium', '', '', '2011', 70.00, '', 1, '2022-02-18 06:41:11', 0, NULL, 0, NULL, 1),
(9956, 7830, '3', 'University', '', 'Ba English literature', '2017', 60.00, '', 1, '2022-02-18 11:06:27', 0, NULL, 0, NULL, 1),
(9957, 7832, '4', 'Madras University', '', 'Msc', '2021', 77.00, '', 1, '2022-02-19 11:04:41', 0, NULL, 0, NULL, 1),
(9958, 7834, '3', 'University of madras', '', 'BCA', '2020', 85.00, '', 1, '2022-02-19 12:24:05', 0, NULL, 0, NULL, 1),
(9959, 7833, '2', 'stae board', '', '', '2018', 69.00, '', 58, '2022-02-19 12:44:53', 0, NULL, 0, NULL, 1),
(9960, 7833, '3', 'madras universit', '', 'bsc', '2021', 82.00, '', 58, '2022-02-19 12:45:53', 0, NULL, 0, NULL, 1),
(9961, 7835, '3', 'vignan nirula college', '', 'btech', '2019', 66.00, '', 1, '2022-02-19 01:52:08', 0, NULL, 0, NULL, 1),
(9962, 7837, '1', 'State board', '', '', '2016', 70.00, '', 1, '2022-02-19 06:03:43', 0, NULL, 0, NULL, 1),
(9963, 7839, '1', 'Chennai Higher Secondary School', '', 'B.Tech Civil', '2010', 71.00, '', 1, '2022-02-20 01:14:31', 1, '2022-02-20 01:19:48', 0, NULL, 0),
(9964, 7839, '2', 'Chennai Higher Secondary School', '', '', '2012', 52.00, '', 1, '2022-02-20 01:16:08', 1, '2022-02-20 01:17:24', 0, NULL, 1),
(9965, 7839, '3', 'Bharath University', '', 'B.Tech ', '2017', 70.00, '', 1, '2022-02-20 01:17:52', 0, NULL, 0, NULL, 1),
(9966, 7840, '3', 'MCC ', '', 'B.A Journalism ', '2019', 60.00, '', 1, '2022-02-21 08:20:40', 0, NULL, 0, NULL, 1),
(9967, 7830, '2', 'State board', '', '', '2012', 60.00, '', 1, '2022-02-21 09:41:19', 0, NULL, 0, NULL, 1),
(9968, 7842, '2', 'Board of Intermediate Education ', '', '', '2013', 55.00, '', 1, '2022-02-21 11:02:51', 0, NULL, 0, NULL, 1),
(9969, 7842, '3', 'Osmania University', '', '   Degree b.com(comp)                             ', '2016', 60.00, '', 1, '2022-02-21 11:03:19', 0, NULL, 0, NULL, 1),
(9970, 7838, '3', 'University of madras', '', 'BCA', '2020', 70.00, '', 84, '2022-02-21 11:08:32', 0, NULL, 0, NULL, 1),
(9971, 7838, '2', 'state board', '', '', '2017', 71.00, '', 84, '2022-02-21 11:09:22', 0, NULL, 0, NULL, 1),
(9972, 7838, '1', 'state board', '', '', '2015', 80.00, '', 84, '2022-02-21 11:09:47', 0, NULL, 0, NULL, 1),
(9973, 7841, '3', 'University of madras', '', 'B. Com', '2020', 63.00, '', 1, '2022-02-21 11:10:27', 0, NULL, 0, NULL, 1),
(9974, 7843, '3', 'DB Jain college of arts And Science', '', 'Bcom general', '2021', 70.00, '', 1, '2022-02-21 01:04:21', 0, NULL, 0, NULL, 1),
(9975, 7843, '2', 'tn', '', '', '2015', 64.00, '', 7, '2022-02-21 01:05:33', 0, NULL, 0, NULL, 1),
(9976, 7845, '3', 's d n b vaishnav college for women at chrompet', '', 'b sc computer science', '2021', 85.80, '', 1, '2022-02-21 01:57:15', 0, NULL, 0, NULL, 1),
(9977, 7846, '2', 'CBSE', '', '', '2015', 64.00, '', 1, '2022-02-21 02:26:31', 0, NULL, 0, NULL, 1),
(9978, 7846, '3', 'Anna university', '', 'Be', '2019', 67.00, '', 1, '2022-02-21 02:27:12', 0, NULL, 0, NULL, 1),
(9979, 7847, '3', 'Anna University', '', 'BE', '2022', 7.84, '', 1, '2022-02-21 04:12:57', 0, NULL, 0, NULL, 1),
(9980, 7847, '2', 'Tamilnadu board ', '', '', '2018', 72.85, '', 1, '2022-02-21 04:13:24', 0, NULL, 0, NULL, 1),
(9981, 7847, '1', 'Tamilnadu board', '', '', '2016', 85.00, '', 1, '2022-02-21 04:13:42', 0, NULL, 0, NULL, 1),
(9982, 7848, '3', 'Manonmaniam sundaranar University', '', 'BSC(computer science)', '2019', 70.00, '', 1, '2022-02-21 05:49:17', 0, NULL, 0, NULL, 1),
(9983, 7849, '5', 'Gpt polytechnic college', '', 'Diploma', '2019', 70.00, '', 1, '2022-02-21 09:27:05', 0, NULL, 0, NULL, 1),
(9984, 7853, '3', 'Medras University ', '', 'BCA', '2020', 60.00, '', 1, '2022-02-22 11:33:50', 0, NULL, 0, NULL, 1),
(9985, 7852, '3', 'Madres University ', '', 'B.Sc.Biotechnology', '2020', 50.00, '', 1, '2022-02-22 11:39:31', 0, NULL, 0, NULL, 1),
(9986, 7852, '4', 'Madrsa University ', '', 'B. Sc. Biotechnology ', '2020', 50.00, '', 1, '2022-02-22 11:40:58', 0, NULL, 0, NULL, 1),
(9987, 7854, '3', 'Anna university', '', 'BE(CSE)', '2021', 79.20, '', 1, '2022-02-22 01:23:57', 0, NULL, 0, NULL, 1),
(9988, 7855, '3', 'Himalaya University', '', 'Bca', '2018', 83.00, '', 1, '2022-02-22 03:27:00', 0, NULL, 0, NULL, 1),
(9989, 7857, '3', 'Anna university', '', 'B-Tech', '2021', 70.00, '', 1, '2022-02-22 04:23:09', 0, NULL, 0, NULL, 1),
(9990, 7856, '3', 'Jntuk', '', 'Btech', '2018', 62.00, '', 1, '2022-02-22 04:28:22', 0, NULL, 0, NULL, 1),
(9991, 7859, '1', 'holy prince matric higher secondary school', '', '', '2012', 93.20, '', 1, '2022-02-22 05:26:48', 0, NULL, 0, NULL, 1),
(9992, 7859, '2', 'holy prince matric higher secondary school', '', '', '2014', 92.80, '', 1, '2022-02-22 05:27:19', 0, NULL, 0, NULL, 1),
(9993, 7859, '3', 'sastra university', '', 'b tech-information technology', '2018', 60.00, '', 1, '2022-02-22 05:28:06', 0, NULL, 0, NULL, 1),
(9994, 7860, '3', 'Anna University ', '', 'BE', '2020', 72.00, '', 1, '2022-02-22 06:06:21', 0, NULL, 0, NULL, 1),
(9995, 7861, '3', 'Kalasalingam University', '', 'B.Tech CSE', '2015', 70.60, '', 1, '2022-02-22 06:07:47', 0, NULL, 0, NULL, 1),
(9996, 7858, '3', 'University of Madras', '', 'B.sc', '2018', 69.00, '', 1, '2022-02-22 06:25:46', 0, NULL, 0, NULL, 1),
(9997, 7864, '4', 'Bharathidasan University', '', 'MBA HR', '2022', 70.00, '', 1, '2022-02-22 06:30:47', 0, NULL, 0, NULL, 1),
(9998, 7865, '3', 'University of Madras', '', 'B.com', '2020', 68.00, '', 1, '2022-02-22 06:57:29', 0, NULL, 0, NULL, 1),
(9999, 7869, '3', 'rgpv', '', 'b.tech', '2023', 83.30, '', 1, '2022-02-23 06:45:51', 0, NULL, 0, NULL, 1),
(10000, 7870, '3', 'Madras\'s University', '', 'B.com', '2021', 75.00, '', 1, '2022-02-23 09:05:54', 0, NULL, 0, NULL, 1),
(10001, 7868, '3', 'Sri Ramakrishna institute of technology', '', 'B.E - E.C.E', '2020', 6.51, '', 1, '2022-02-23 09:59:10', 1, '2022-02-23 09:59:42', 0, NULL, 1),
(10002, 7868, '2', 'State board', '', '', '2016', 82.30, '', 1, '2022-02-23 10:00:42', 0, NULL, 0, NULL, 1),
(10003, 7868, '1', 'State board', '', '', '2014', 88.00, '', 1, '2022-02-23 10:01:41', 0, NULL, 0, NULL, 1),
(10004, 7871, '2', 'GIRLS HIGER SECONDARY SCHOOLSEVEPET', '', '', '2015', 89.00, '', 1, '2022-02-23 10:32:57', 0, NULL, 0, NULL, 1),
(10005, 7871, '3', 'SRI RAM ARTS AND SCIENCE COLLEGEVEPPAMPET', '', 'B.com (General)', '2018', 60.00, '', 1, '2022-02-23 10:33:34', 0, NULL, 0, NULL, 1),
(10006, 7872, '4', 'Autonomus', '', 'M.com ', '2020', 69.00, '', 1, '2022-02-23 10:47:13', 0, NULL, 0, NULL, 1),
(10007, 7875, '3', 'Jntuk', '', 'B.tech', '2020', 58.00, '', 1, '2022-02-23 11:06:43', 0, NULL, 0, NULL, 1),
(10008, 7876, '3', 'Anna University', '', 'BE CSE', '2016', 6.00, '', 1, '2022-02-23 11:27:16', 0, NULL, 0, NULL, 1),
(10009, 7878, '3', 'Pondicherry university', '', 'BBA', '2019', 62.00, '', 1, '2022-02-23 11:31:01', 0, NULL, 0, NULL, 1),
(10010, 7877, '3', 'University of Madras ', '', 'B.sc statistics ', '2018', 70.00, '', 1, '2022-02-23 11:34:57', 0, NULL, 0, NULL, 1),
(10011, 7879, '3', 'MS University ', '', 'BBA', '2021', 79.00, '', 1, '2022-02-23 11:45:22', 0, NULL, 0, NULL, 1),
(10012, 7880, '4', 'Autonomous', '', 'Bsc.pychology', '2019', 65.00, '', 1, '2022-02-23 12:01:58', 1, '2022-02-23 12:02:46', 0, NULL, 0),
(10013, 7880, '4', 'Autonomous', '', 'Bsc psychology', '2019', 65.00, '', 1, '2022-02-23 12:02:47', 0, NULL, 0, NULL, 1),
(10014, 7867, '3', 'anna university', '', 'btech it', '2016', 75.60, '', 1, '2022-02-23 12:40:22', 0, NULL, 0, NULL, 1),
(10015, 7867, '2', 'state', '', '', '2012', 87.00, '', 1, '2022-02-23 12:41:37', 0, NULL, 0, NULL, 1),
(10016, 7867, '1', 'state', '', '', '2010', 93.80, '', 1, '2022-02-23 12:42:32', 0, NULL, 0, NULL, 1),
(10017, 7886, '3', 'Anna university', '', 'B.E', '2016', 7.00, '', 1, '2022-02-23 01:23:08', 0, NULL, 0, NULL, 1),
(10018, 7863, '3', 'St.peter\'s institute of higher education and research Avadi', '', 'B.com', '2021', 65.00, '', 1, '2022-02-23 01:32:39', 0, NULL, 0, NULL, 1),
(10019, 7863, '2', 'Dharamamurthi rao Bahadur calavala cunnan chettys hindu higher secondary school', '', '', '2017', 58.16, '', 1, '2022-02-23 01:33:55', 0, NULL, 0, NULL, 1),
(10020, 7887, '3', 'Nandha engineering college', '', 'B.Tech', '2021', 8.75, '', 1, '2022-02-23 03:12:49', 0, NULL, 0, NULL, 1),
(10021, 7888, '3', 'Thiruvalluvar University', '', 'B.com', '2021', 72.50, '', 1, '2022-02-23 03:25:50', 0, NULL, 0, NULL, 1),
(10022, 0, '3', 'Anna University ', '', 'Electronic and Communication Engineering ', '2021', 75.00, '', 1, '2022-02-23 03:28:48', 1, '2022-02-24 11:11:37', 0, NULL, 0),
(10023, 7889, '3', 'Anna University ', '', 'Electronic and Communication Engineering ', '2021', 75.00, '', 1, '2022-02-23 03:44:57', 0, NULL, 0, NULL, 1),
(10024, 7890, '3', 'Madras university', '', 'B. C. A', '2015', 65.00, '', 1, '2022-02-23 03:59:07', 0, NULL, 0, NULL, 1),
(10025, 7873, '3', 'jntuh', '', 'b.tech', '2019', 58.40, '', 1, '2022-02-23 04:05:40', 0, NULL, 0, NULL, 1),
(10026, 7891, '2', 'Board', '', '', '2018', 52.00, '', 1, '2022-02-23 04:12:29', 0, NULL, 0, NULL, 1),
(10027, 7894, '3', 'holymary institue of technology', '', 'btech', '2018', 65.00, '', 1, '2022-02-23 04:14:49', 0, NULL, 0, NULL, 1),
(10028, 7893, '3', 'Board', '', 'B com general', '2021', 75.00, '', 1, '2022-02-23 04:21:19', 0, NULL, 0, NULL, 1),
(10029, 7892, '3', 'Madras University', '', 'bcom.ism', '2021', 75.00, '', 1, '2022-02-23 04:23:45', 0, NULL, 0, NULL, 1),
(10030, 7895, '3', 'Madurai kamarajar university', '', 'B. Com (Computer application) ', '2021', 70.00, '', 1, '2022-02-23 05:09:35', 0, NULL, 0, NULL, 1),
(10031, 7895, '5', 'TNDTE DOT', '', 'Dimploma civil engineering', '2015', 60.00, '', 1, '2022-02-23 05:10:17', 0, NULL, 0, NULL, 1),
(10032, 7895, '2', 'State board oF tamil nadu', '', '', '2012', 50.00, '', 1, '2022-02-23 05:11:15', 0, NULL, 0, NULL, 1),
(10033, 7896, '3', 'JNTU H', '', 'BTech', '2018', 65.00, '', 1, '2022-02-23 05:26:33', 0, NULL, 0, NULL, 1),
(10034, 7897, '3', 'Agni college of technology', '', 'B. E civil engineering', '2016', 60.00, '', 1, '2022-02-23 06:08:46', 0, NULL, 0, NULL, 1),
(10035, 7882, '4', 'Lokamany tilak B & M College', '', 'mba', '2012', 81.00, '', 1, '2022-02-23 07:00:42', 0, NULL, 0, NULL, 1),
(10036, 7898, '3', 'Bon secours College ', '', 'B Sc(IT) ', '2017', 76.00, '', 1, '2022-02-23 08:58:08', 1, '2022-02-23 09:54:21', 0, NULL, 0),
(10037, 7898, '3', 'Bharathidasan University ', '', 'B sc information technology ', '2017', 78.00, '', 1, '2022-02-23 09:54:51', 0, NULL, 0, NULL, 1),
(10038, 7904, '3', 'Mother teresa women\'s university', '', 'BBA.', '2018', 64.00, '', 1, '2022-02-24 11:11:41', 0, NULL, 0, NULL, 1),
(10039, 7902, '3', 'Madras University Chennai', '', 'B.com', '2020', 62.00, '', 1, '2022-02-24 11:13:54', 0, NULL, 0, NULL, 1),
(10040, 7902, '2', 'Tamilnadu', '', '', '2017', 79.10, '', 1, '2022-02-24 11:15:07', 0, NULL, 0, NULL, 1),
(10041, 7902, '1', 'Tamil Nadu', '', '', '2015', 64.00, '', 1, '2022-02-24 11:17:56', 0, NULL, 0, NULL, 1),
(10042, 7906, '2', 'Stateboard', '', '', '2014', 51.00, '', 1, '2022-02-24 12:09:34', 0, NULL, 0, NULL, 1),
(10043, 7906, '5', 'Gov politechnic', '', 'Dece', '2017', 67.00, '', 1, '2022-02-24 12:10:38', 0, NULL, 0, NULL, 1),
(10044, 7907, '3', 'Anna university', '', 'B.Tech  (IT)', '2018', 66.00, '', 1, '2022-02-24 12:21:23', 0, NULL, 0, NULL, 1),
(10045, 7907, '2', 'State board', '', '', '2014', 87.00, '', 1, '2022-02-24 12:22:04', 0, NULL, 0, NULL, 1),
(10046, 7907, '1', 'State board', '', '', '2012', 89.00, '', 1, '2022-02-24 12:22:37', 0, NULL, 0, NULL, 1),
(10047, 7909, '5', 'Director of technical education ', '', 'No', '2019', 74.00, '', 1, '2022-02-24 12:41:16', 0, NULL, 0, NULL, 1),
(10048, 7910, '3', 'Bharathidasan University', '', 'B.C.A', '2020', 82.00, '', 84, '2022-02-24 01:11:23', 0, NULL, 0, NULL, 1),
(10049, 7910, '2', 'State Board', '', '', '2017', 87.00, '', 84, '2022-02-24 01:11:58', 0, NULL, 0, NULL, 1),
(10050, 7910, '1', 'State Board', '', '', '2015', 90.00, '', 84, '2022-02-24 01:12:15', 0, NULL, 0, NULL, 1),
(10051, 7901, '3', 'Madras University ', '', 'BSc computer science ', '2020', 75.00, '', 1, '2022-02-24 02:43:26', 0, NULL, 0, NULL, 1),
(10052, 7901, '2', 'State board', '', '', '2017', 70.00, '', 1, '2022-02-24 02:43:54', 0, NULL, 0, NULL, 1),
(10053, 7901, '1', 'State board', '', '', '2015', 83.30, '', 1, '2022-02-24 02:44:13', 0, NULL, 0, NULL, 1),
(10054, 7914, '4', 'Nehru Institute of Information technology and management ', '', 'MCA', '2020', 7.00, '', 1, '2022-02-24 06:55:59', 0, NULL, 0, NULL, 1),
(10055, 7913, '3', 'Prist University', '', 'BBA', '2021', 73.00, '', 1, '2022-02-24 07:14:34', 0, NULL, 0, NULL, 1),
(10056, 7286, '3', 'Gulbarga University', '', 'B.com', '2021', 70.00, '', 1, '2022-02-24 09:36:15', 0, NULL, 0, NULL, 1),
(10057, 7903, '3', 'Madras university', '', 'B. Sc', '2017', 83.00, '', 1, '2022-02-25 08:56:27', 0, NULL, 0, NULL, 1),
(10058, 7903, '1', 'State board', '', '', '2012', 83.00, '', 1, '2022-02-25 08:57:41', 0, NULL, 0, NULL, 1),
(10059, 7903, '2', 'State board', '', '', '2014', 75.00, '', 1, '2022-02-25 08:58:21', 0, NULL, 0, NULL, 1),
(10060, 7918, '5', 'Dote', '', 'Yes', '2018', 70.00, '', 1, '2022-02-25 09:52:37', 0, NULL, 0, NULL, 1),
(10061, 7919, '2', 'New Kannada PU College, Yadgir', '', '', '2015', 79.00, '', 1, '2022-02-25 10:42:22', 0, NULL, 0, NULL, 1),
(10062, 7919, '3', 'Gulbarga Universit', '', 'BA', '2018', 75.00, '', 1, '2022-02-25 10:42:53', 0, NULL, 0, NULL, 1),
(10063, 7920, '4', 'Anna university', '', 'MBA', '2021', 60.00, '', 1, '2022-02-25 10:49:22', 0, NULL, 0, NULL, 1),
(10064, 7921, '2', 'KLK Government PU College, Birur', '', '', '2015', 78.00, '', 1, '2022-02-25 11:50:47', 1, '2022-02-25 11:51:21', 0, NULL, 1),
(10065, 7921, '3', 'Acharya tulasi national college of commerce, Shivamoga', '', 'Bcom', '2018', 75.00, '', 1, '2022-02-25 11:51:49', 0, NULL, 0, NULL, 1),
(10066, 7923, '3', 'Guru Nanak college', '', 'Ba economics', '2021', 60.00, '', 1, '2022-02-25 12:00:20', 0, NULL, 0, NULL, 1),
(10067, 7924, '3', ' Mahendra Arts and Science College ', '', 'bsc mathematics', '2020', 76.00, '', 1, '2022-02-25 12:07:00', 0, NULL, 0, NULL, 1),
(10068, 7925, '4', 'The Madras Univer', '', 'M.B.a', '2018', 65.00, '', 1, '2022-02-25 12:19:41', 0, NULL, 0, NULL, 1),
(10069, 7925, '3', 'The New Collage', '', 'B.C.a', '2013', 70.00, '', 1, '2022-02-25 12:20:05', 0, NULL, 0, NULL, 1),
(10070, 7926, '3', 'University of madras', '', 'B. Sc', '2017', 75.00, '', 1, '2022-02-25 01:19:53', 0, NULL, 0, NULL, 1),
(10071, 7926, '2', 'State borad', '', 'B.Sc', '2014', 76.00, '', 1, '2022-02-25 01:21:56', 0, NULL, 0, NULL, 1),
(10072, 7926, '1', 'State borad', '', '', '2012', 85.00, '', 1, '2022-02-25 01:22:20', 0, NULL, 0, NULL, 1),
(10073, 7929, '3', 'Bharathidasan University', '', 'Bsc', '2018', 78.00, '', 1, '2022-02-25 04:00:22', 0, NULL, 0, NULL, 1),
(10074, 7931, '3', 'Sathavana University', '', 'Bsc', '2020', 83.00, '', 1, '2022-02-25 05:15:23', 0, NULL, 0, NULL, 1),
(10075, 7935, '1', 'state board', '', '', '2002', 61.00, '', 1, '2022-02-25 07:05:34', 0, NULL, 0, NULL, 1),
(10076, 7935, '2', 'state board', '', '', '2004', 78.00, '', 1, '2022-02-25 07:05:56', 0, NULL, 0, NULL, 1),
(10077, 7935, '3', 'Bharathidasan University ', '', 'bca', '2007', 61.00, '', 1, '2022-02-25 07:06:52', 0, NULL, 0, NULL, 1),
(10078, 7935, '4', 'anna university', '', 'mca', '2010', 81.00, '', 1, '2022-02-25 07:07:17', 0, NULL, 0, NULL, 1),
(10079, 7934, '3', 'anna university', '', 'bachelor of engineering', '2018', 60.00, '', 1, '2022-02-25 07:19:28', 1, '2022-02-25 07:22:06', 0, NULL, 1),
(10080, 7936, '3', 'Anna University', '', 'BE', '2021', 74.00, '', 1, '2022-02-25 07:19:53', 0, NULL, 0, NULL, 1),
(10081, 7936, '1', 'State board', '', '', '2015', 88.00, '', 1, '2022-02-25 07:20:43', 0, NULL, 0, NULL, 1),
(10082, 7933, '3', 'Kakatiya', '', 'Biotechnology', '2020', 80.04, '', 1, '2022-02-25 07:21:15', 0, NULL, 0, NULL, 1),
(10083, 7884, '3', 'Anna University ', '', 'BE mechanical ', '2018', 73.00, '', 1, '2022-02-26 09:52:28', 0, NULL, 0, NULL, 1),
(10084, 7884, '1', 'Board', '', '', '2012', 81.00, '', 1, '2022-02-26 09:53:39', 0, NULL, 0, NULL, 1),
(10085, 7884, '2', 'Board ', '', '', '2014', 83.00, '', 1, '2022-02-26 09:53:57', 0, NULL, 0, NULL, 1),
(10086, 7939, '1', 'Tamilnadu State board', '', '', '2012', 70.00, '', 1, '2022-02-26 09:55:20', 0, NULL, 0, NULL, 1),
(10087, 7939, '2', 'Kesari hr sec school', '', '', '2014', 64.00, '', 1, '2022-02-26 09:55:47', 0, NULL, 0, NULL, 1),
(10088, 7939, '3', 'D g Vaishnav college', '', 'Bsc', '2017', 61.00, '', 1, '2022-02-26 09:56:35', 0, NULL, 0, NULL, 1),
(10089, 7940, '3', 'Periyarunivarsity', '', 'B.sc  mathematics', '2019', 78.00, '', 1, '2022-02-26 10:11:08', 0, NULL, 0, NULL, 1),
(10090, 7941, '3', 'Bharathidasan University', '', 'B.Sc', '2018', 60.20, '', 1, '2022-02-26 10:58:19', 0, NULL, 0, NULL, 1),
(10091, 7836, '3', 'jnutu', '', 'btech', '2014', 67.00, '', 87, '2022-02-26 12:08:23', 0, NULL, 0, NULL, 1),
(10092, 7927, '3', 'Sastra Deemed To Be University,(SRC)  Kumbakonam', '', 'B.com', '2020', 57.00, '', 85, '2022-02-26 12:22:29', 0, NULL, 0, NULL, 1),
(10093, 7942, '3', 'jntu', '', 'b.tech', '2014', 72.00, '', 1, '2022-02-26 12:33:23', 0, NULL, 0, NULL, 1),
(10094, 7930, '3', 'JUSTICE BASHEER AHMAD SAYEED COLLEGE FOR WOMEN', '', 'BA CORPORATE ECONOMICS', '2021', 66.00, '', 1, '2022-02-26 12:58:13', 0, NULL, 0, NULL, 1),
(10095, 7938, '3', 'Anjalai Ammal mahalingam engineering college', '', 'BE', '2021', 74.20, '', 1, '2022-02-26 02:34:24', 0, NULL, 0, NULL, 1),
(10096, 7945, '3', 'Mohammad sathak AJ college of Engineering', '', 'B Tech.Information Technology', '2021', 75.00, '', 1, '2022-02-26 03:54:28', 0, NULL, 0, NULL, 1),
(10097, 7946, '3', 'Adikavi nannaya University ', '', 'B.sc ', '2021', 76.50, '', 1, '2022-02-26 05:40:52', 0, NULL, 0, NULL, 1),
(10098, 7948, '3', 'PRIST UNIVERSITY', '', 'B techa', '2021', 72.00, '', 1, '2022-02-26 07:00:20', 0, NULL, 0, NULL, 1),
(10099, 7944, '5', 'DOTE', '', 'DME', '2020', 70.00, '', 1, '2022-02-26 07:11:00', 0, NULL, 0, NULL, 1),
(10100, 7951, '1', 'State board', '', '', '2012', 73.40, '', 1, '2022-02-28 07:16:27', 0, NULL, 0, NULL, 1),
(10101, 7951, '2', 'State board', '', '', '2014', 75.16, '', 1, '2022-02-28 07:16:57', 0, NULL, 0, NULL, 1),
(10102, 7951, '3', 'Sadakkathullah appa college', '', 'B.com', '2017', 58.00, '', 1, '2022-02-28 07:17:26', 0, NULL, 0, NULL, 1),
(10103, 7951, '4', 'B s Abdur Rahman Crescent Institute of Science andtechnology', '', 'MBA', '2019', 7.00, '', 1, '2022-02-28 07:18:12', 0, NULL, 0, NULL, 1),
(10104, 7953, '5', 'Thai Moogambigai Polytechnic college ', '', 'CSE', '2019', 75.00, '', 1, '2022-02-28 10:13:40', 0, NULL, 0, NULL, 1),
(10105, 7949, '3', 'ANNA UNIVERSITY ', '', 'B.E', '2017', 7.18, '', 1, '2022-02-28 11:21:47', 0, NULL, 0, NULL, 1),
(10106, 7949, '2', 'STATE BOARD ', '', '', '2013', 70.40, '', 1, '2022-02-28 11:23:07', 0, NULL, 0, NULL, 1),
(10107, 7949, '1', 'sTATE BOARD ', '', '', '2017', 90.20, '', 1, '2022-02-28 11:23:35', 0, NULL, 0, NULL, 1),
(10108, 7937, '3', 'SV University ', '', 'Ug', '2021', 65.00, '', 1, '2022-02-28 11:29:40', 0, NULL, 0, NULL, 1),
(10109, 7347, '4', 'mSc ', '', 'IT', '2020', 75.00, '', 87, '2022-02-28 11:50:48', 0, NULL, 0, NULL, 1),
(10110, 7957, '4', 'University', '', 'M.A', '2021', 65.00, '', 1, '2022-02-28 12:02:07', 0, NULL, 0, NULL, 1),
(10111, 7955, '3', 'Alagappa university', '', 'B.Sc nautical science', '2021', 62.50, '', 1, '2022-02-28 12:19:03', 0, NULL, 0, NULL, 1),
(10112, 7960, '3', 'Autonomous', '', 'bsc', '2018', 72.00, '', 1, '2022-02-28 12:37:48', 0, NULL, 0, NULL, 1),
(10113, 7958, '2', 'State board ', '', '', '2021', 66.00, '', 1, '2022-02-28 12:45:12', 0, NULL, 0, NULL, 1),
(10114, 7959, '2', 'Tn', '', '', '2015', 60.00, '', 1, '2022-02-28 12:49:17', 0, NULL, 0, NULL, 1),
(10115, 7959, '3', 'University', '', 'BA', '2018', 60.00, '', 1, '2022-02-28 12:51:15', 0, NULL, 0, NULL, 1),
(10116, 7947, '3', 'bca', '', 'bca', '2016', 68.00, '', 87, '2022-02-28 06:54:07', 0, NULL, 0, NULL, 1),
(10117, 7965, '3', 'Madras University', '', 'BCA', '2021', 70.00, '', 1, '2022-02-28 06:59:38', 0, NULL, 0, NULL, 1),
(10118, 7966, '3', 'University of Madras', '', 'BA', '2019', 60.00, '', 1, '2022-02-28 07:41:46', 0, NULL, 0, NULL, 1),
(10119, 7968, '3', 'Anna university', '', 'Bachelor of engineering', '2019', 67.50, '', 1, '2022-03-01 10:13:56', 0, NULL, 0, NULL, 1),
(10120, 7969, '3', 'Anna University Chennai', '', 'B.tech(i.t)', '2021', 7.61, '', 1, '2022-03-01 10:18:54', 0, NULL, 0, NULL, 1),
(10121, 7961, '3', 'Anna university', '', 'BE ', '2019', 73.00, '', 1, '2022-03-01 10:20:24', 0, NULL, 0, NULL, 1),
(10122, 4356, '4', 'Annamalai University ', '', 'MBA ( Financial Management ) ', '2020', 7.99, '', 1, '2022-03-01 10:43:02', 0, NULL, 0, NULL, 1),
(10123, 7970, '3', 'Hindusthan College of engineering and technology', '', 'Be computer science', '2019', 6.48, '', 1, '2022-03-01 11:07:56', 1, '2022-03-01 11:08:30', 0, NULL, 1),
(10124, 7964, '3', 'Anna University', '', 'B. E CSE', '2019', 6.38, '', 84, '2022-03-01 12:05:39', 0, NULL, 0, NULL, 1),
(10125, 7964, '2', 'State board', '', '', '2015', 57.67, '', 84, '2022-03-01 12:06:21', 0, NULL, 0, NULL, 1),
(10126, 7964, '1', 'state board', '', '', '2013', 68.20, '', 84, '2022-03-01 12:07:18', 0, NULL, 0, NULL, 1),
(10127, 7972, '3', 'Anna University', '', '', '2019', 72.00, '', 1, '2022-03-01 12:09:52', 0, NULL, 0, NULL, 1),
(10128, 7971, '3', 'ST Thomas college of arts and science', '', 'BCA', '2020', 75.00, '', 1, '2022-03-01 12:14:24', 0, NULL, 0, NULL, 1),
(10129, 7973, '3', 'Bharathidasan University', '', 'Bsc BioTechnology', '2019', 70.00, '', 1, '2022-03-01 12:17:10', 0, NULL, 0, NULL, 1),
(10130, 7962, '2', 'tn', '', '', '2014', 50.00, '', 7, '2022-03-01 12:20:57', 0, NULL, 0, NULL, 1),
(10131, 7962, '4', 'alagappa', '', 'mcom', '2020', 60.00, '', 7, '2022-03-01 12:21:30', 0, NULL, 0, NULL, 1),
(10132, 7977, '2', 'Tn', '', '', '2016', 58.00, '', 1, '2022-03-01 01:23:58', 0, NULL, 0, NULL, 1),
(10133, 7977, '3', 'Madras', '', 'Bsc', '2019', 60.00, '', 1, '2022-03-01 01:24:20', 0, NULL, 0, NULL, 1),
(10134, 7976, '3', 'dr mgr University chennai ', '', 'ba english', '2019', 65.00, '', 1, '2022-03-01 01:59:35', 0, NULL, 0, NULL, 1),
(10135, 7967, '3', 'Madras University ', '', 'B.A ENGLISH LITERATURE ', '2021', 70.00, '', 1, '2022-03-01 02:41:44', 0, NULL, 0, NULL, 1),
(10136, 7967, '2', 'State board', '', '', '2018', 90.00, '', 1, '2022-03-01 02:42:06', 1, '2022-03-01 02:42:40', 0, NULL, 1),
(10137, 7967, '1', 'Stateboard', '', '', '2016', 92.00, '', 1, '2022-03-01 02:43:08', 0, NULL, 0, NULL, 1),
(10138, 7982, '3', 'anna university', '', 'B.Tech', '2020', 6.60, '', 1, '2022-03-01 04:55:45', 0, NULL, 0, NULL, 1),
(10139, 7983, '4', 'Bharathiyar University ', '', 'M.sc computer science ', '2020', 66.00, '', 1, '2022-03-01 08:04:32', 0, NULL, 0, NULL, 1),
(10140, 7979, '3', 'bharathidasan unniversity', '', 'bca', '2017', 71.00, '', 1, '2022-03-02 08:41:47', 0, NULL, 0, NULL, 1),
(10141, 7979, '2', 'sri vidya mandir matriculation school', '', '', '2014', 85.00, '', 1, '2022-03-02 08:42:41', 0, NULL, 0, NULL, 1),
(10142, 7979, '1', 'sri vidya mandir matriculation school', '', '', '2012', 95.00, '', 1, '2022-03-02 08:43:17', 0, NULL, 0, NULL, 1),
(10143, 7984, '2', 'Good shepherd matric hr sec school', '', '', '2015', 50.00, '', 1, '2022-03-02 10:12:20', 0, NULL, 0, NULL, 1),
(10144, 7984, '1', 'Good shepherd matric hr sec school', '', '', '2013', 61.00, '', 1, '2022-03-02 10:12:55', 0, NULL, 0, NULL, 1),
(10145, 7984, '3', 'Dr ambedkar govt arts colloege vyasarpadi chennai', '', 'B A ENGLISH', '2018', 50.00, '', 1, '2022-03-02 10:13:51', 0, NULL, 0, NULL, 1),
(10146, 7985, '3', 'Madras University ', '', 'B.sc computer science ', '2010', 52.00, '', 1, '2022-03-02 11:05:48', 0, NULL, 0, NULL, 1),
(10147, 7985, '2', 'Higher secondary school ', '', '', '2007', 72.00, '', 1, '2022-03-02 11:06:40', 0, NULL, 0, NULL, 1),
(10148, 7985, '1', 'High school ', '', '', '2005', 56.00, '', 1, '2022-03-02 11:07:20', 0, NULL, 0, NULL, 1),
(10149, 7987, '4', 'Periyar University', '', 'M.sc computer science', '2017', 72.00, '', 1, '2022-03-02 11:32:43', 0, NULL, 0, NULL, 1),
(10150, 7987, '4', 'Periyar University', '', 'M.sc computer science', '2017', 72.00, '', 1, '2022-03-02 11:36:37', 0, NULL, 0, NULL, 1),
(10151, 7981, '2', 'state board', '', '', '2017', 54.00, '', 58, '2022-03-02 12:46:08', 0, NULL, 0, NULL, 1),
(10152, 7981, '3', 'SRM', '', 'BCOM', '2020', 70.00, '', 58, '2022-03-02 12:47:01', 0, NULL, 0, NULL, 1),
(10153, 7988, '2', 'MYSORE University', '', '', '2014', 50.00, '', 1, '2022-03-02 01:05:16', 0, NULL, 0, NULL, 1),
(10154, 7989, '3', 'Anna university', '', 'B. e', '2008', 73.00, '', 1, '2022-03-02 01:31:18', 0, NULL, 0, NULL, 1),
(10155, 7990, '2', 'Osmania university', '', '', '2018', 76.00, '', 1, '2022-03-02 05:55:55', 0, NULL, 0, NULL, 1),
(10156, 7991, '3', 'Karpagam college of engineering', '', 'BE', '2021', 7.49, '', 1, '2022-03-02 06:43:52', 0, NULL, 0, NULL, 1),
(10157, 7992, '3', 'Rover engineering college , perambalur (Anna University Chennai)', '', 'BE civil engineering ', '2021', 8.70, '', 1, '2022-03-02 09:04:49', 0, NULL, 0, NULL, 1),
(10158, 7993, '2', 'state board', '', '', '2017', 48.00, '', 1, '2022-03-03 10:21:20', 0, NULL, 0, NULL, 1),
(10159, 7993, '1', 'state board', '', '', '2013', 50.00, '', 1, '2022-03-03 10:22:45', 0, NULL, 0, NULL, 1),
(10160, 7993, '5', 'anna university', '', 'diploma', '2013', 43.00, '', 1, '2022-03-03 10:26:44', 0, NULL, 0, NULL, 1),
(10161, 7974, '3', 'Anna University', '', 'B.E', '2017', 69.00, '', 84, '2022-03-03 10:51:21', 84, '2022-03-03 10:58:37', 0, NULL, 1),
(10162, 7974, '2', 'state board', '', '', '2013', 80.00, '', 84, '2022-03-03 10:59:17', 0, NULL, 0, NULL, 1),
(10163, 7974, '1', 'state board ', '', '', '2011', 83.00, '', 84, '2022-03-03 10:59:51', 0, NULL, 0, NULL, 1),
(10164, 7995, '1', 'matriculation', '', '', '2014', 91.00, '', 1, '2022-03-03 11:28:41', 0, NULL, 0, NULL, 1),
(10165, 7995, '2', 'matriculation', '', '', '2016', 71.00, '', 1, '2022-03-03 11:28:55', 0, NULL, 0, NULL, 1),
(10166, 7995, '3', 'st xaviers college', '', 'b a english', '2020', 61.00, '', 1, '2022-03-03 11:29:47', 0, NULL, 0, NULL, 1),
(10167, 7994, '3', 'Anna University', '', 'B.E Mechanical Engineering', '2018', 67.00, '', 1, '2022-03-03 11:37:16', 0, NULL, 0, NULL, 1),
(10168, 7996, '3', 'Anna University', '', 'B.e mechanical engineering', '2019', 70.00, '', 1, '2022-03-03 11:41:56', 0, NULL, 0, NULL, 1),
(10169, 7997, '3', 'Thiruvalluvar University', '', 'B.sc mathematics', '2021', 78.00, '', 1, '2022-03-03 12:28:03', 0, NULL, 0, NULL, 1),
(10170, 7998, '3', 'Thiruvalluvar University', '', 'B,sc Mathematics', '2021', 77.00, '', 1, '2022-03-03 12:28:52', 0, NULL, 0, NULL, 1),
(10171, 7999, '3', 'Periyar Maniammai University', '', 'BE Cse', '2012', 78.00, '', 1, '2022-03-03 01:09:48', 0, NULL, 0, NULL, 1),
(10172, 8000, '3', 'anna university', '', 'b.tech', '2020', 69.00, '', 1, '2022-03-03 01:26:04', 1, '2022-03-03 01:27:40', 0, NULL, 1),
(10173, 8000, '5', 'annamalai university', '', 'd.f.tech', '2018', 100.00, '', 1, '2022-03-03 01:27:27', 0, NULL, 0, NULL, 1),
(10174, 8001, '3', 'Sethu Institute of Technology', '', 'BE', '2019', 75.00, '', 1, '2022-03-03 01:43:52', 0, NULL, 0, NULL, 1),
(10175, 8001, '1', 'Stateboard', '', '', '2015', 67.00, '', 1, '2022-03-03 01:44:17', 0, NULL, 0, NULL, 1),
(10176, 8001, '2', 'Stateboard', '', '', '2013', 84.00, '', 1, '2022-03-03 01:44:41', 0, NULL, 0, NULL, 1),
(10177, 8006, '3', 'Bharathidasan University', '', 'Bsc-Botany', '2017', 70.00, '', 1, '2022-03-03 08:45:00', 0, NULL, 0, NULL, 1),
(10178, 8007, '3', 'Anna university', '', 'BE computer science engineering', '2021', 7.23, '', 1, '2022-03-04 09:55:38', 0, NULL, 0, NULL, 1),
(10179, 8008, '4', 'Madras university', '', 'MBA(HR)', '2013', 70.00, '', 1, '2022-03-04 10:12:53', 0, NULL, 0, NULL, 1),
(10180, 8005, '3', 'Anna technological university', '', 'M.a.sociology', '2014', 75.00, '', 1, '2022-03-04 10:21:59', 0, NULL, 0, NULL, 1),
(10181, 8002, '3', 'Madras University', '', 'B.com', '2011', 65.00, '', 1, '2022-03-04 10:25:47', 0, NULL, 0, NULL, 1),
(10182, 8002, '2', 'Govt hr sec school', '', '', '2008', 69.00, '', 1, '2022-03-04 10:26:39', 0, NULL, 0, NULL, 1),
(10183, 8002, '1', 'Govt hr sec school', '', '', '2006', 59.00, '', 1, '2022-03-04 10:27:15', 0, NULL, 0, NULL, 1),
(10184, 8009, '3', 'University of Madras', '', 'B.sc MATHSMATICS', '2021', 77.00, '', 1, '2022-03-04 11:57:59', 0, NULL, 0, NULL, 1),
(10185, 8010, '3', 'Alagappa ', '', 'B.sc', '2018', 60.00, '', 1, '2022-03-04 12:39:33', 0, NULL, 0, NULL, 1),
(10186, 8012, '2', 'Intermediate ', '', '', '2019', 68.00, '', 1, '2022-03-04 01:54:10', 0, NULL, 0, NULL, 1),
(10187, 8013, '3', 'madras university', '', 'b.a', '2000', 50.00, '', 1, '2022-03-04 03:42:38', 0, NULL, 0, NULL, 1),
(10188, 8014, '4', 'Srm University', '', 'MSc it ', '2013', 78.00, '', 1, '2022-03-04 05:32:13', 0, NULL, 0, NULL, 1),
(10189, 8016, '3', 'MRG UNIVERSITY', '', 'B.Tech ', '2018', 55.00, '', 1, '2022-03-04 10:30:47', 0, NULL, 0, NULL, 1),
(10190, 8017, '1', 'Park\'s College Tirupur', '', '', '2021', 65.00, '', 1, '2022-03-05 12:22:58', 0, NULL, 0, NULL, 1),
(10191, 8021, '3', 'Anna University', '', 'BE Civil Engineering', '2013', 66.00, '', 1, '2022-03-05 05:03:40', 0, NULL, 0, NULL, 1),
(10192, 8022, '5', 'Dote', '', 'Diploma in civil ', '2015', 80.00, '', 1, '2022-03-05 05:42:33', 0, NULL, 0, NULL, 1),
(10193, 8018, '3', 'Anna university', '', 'bsc', '2021', 74.00, '', 84, '2022-03-07 10:22:00', 0, NULL, 0, NULL, 1),
(10194, 8018, '2', 'state Board', '', '', '2018', 61.40, '', 84, '2022-03-07 10:22:45', 0, NULL, 0, NULL, 1),
(10195, 8018, '1', 'state board', '', '', '2016', 81.00, '', 84, '2022-03-07 10:23:23', 0, NULL, 0, NULL, 1),
(10196, 8030, '3', 'Dr.Ngp institute of technology', '', 'B.E ', '2019', 6.50, '', 1, '2022-03-07 10:39:57', 0, NULL, 0, NULL, 1),
(10197, 8029, '2', 'Arumuganadar girls school', '', '', '2012', 60.00, '', 1, '2022-03-07 10:43:18', 0, NULL, 0, NULL, 1),
(10198, 8027, '5', 'Murugappa polytechnic', '', 'Diploma', '2020', 72.00, '', 1, '2022-03-07 10:43:23', 0, NULL, 0, NULL, 1),
(10199, 8025, '3', 'Anna university', '', 'Btech', '2020', 78.00, '', 84, '2022-03-07 10:59:48', 0, NULL, 0, NULL, 1),
(10200, 8025, '2', 'state board', '', '', '2016', 83.00, '', 84, '2022-03-07 11:00:19', 0, NULL, 0, NULL, 1),
(10201, 8028, '2', 'state board', '', '', '2013', 70.00, '', 1, '2022-03-07 11:00:30', 0, NULL, 0, NULL, 1),
(10202, 8025, '1', 'state board ', '', '', '2014', 85.00, '', 84, '2022-03-07 11:01:05', 0, NULL, 0, NULL, 1),
(10203, 8028, '3', 'tiruvalluvar university', '', 'bcom', '2016', 68.00, '', 1, '2022-03-07 11:01:12', 0, NULL, 0, NULL, 1),
(10204, 8032, '3', 'Manonmaniyam University ', '', 'Bsc Computer science ', '2020', 69.00, '', 1, '2022-03-07 11:36:54', 0, NULL, 0, NULL, 1),
(10205, 8031, '3', 'Alaga appa university ', '', 'B.com(general)', '2021', 70.00, '', 1, '2022-03-07 11:53:54', 0, NULL, 0, NULL, 1),
(10206, 8034, '3', 'Madras university ', '', 'BBA', '2002', 60.00, '', 1, '2022-03-07 12:26:12', 0, NULL, 0, NULL, 1),
(10207, 8037, '3', 'Anna University', '', 'B.E / CSE', '2020', 67.80, '', 1, '2022-03-07 02:46:05', 0, NULL, 0, NULL, 1),
(10208, 8036, '3', 'Madress university ', '', 'B. Com', '2019', 65.00, '', 1, '2022-03-07 02:59:36', 0, NULL, 0, NULL, 1),
(10209, 8024, '3', 'B.B.A', '', 'B.B.A', '2007', 50.00, '', 87, '2022-03-07 03:43:06', 0, NULL, 0, NULL, 1),
(10210, 8023, '3', ' B.Sc (Computer Science) ', '', ' B.Sc (Computer Science) ', '2017', 70.00, '', 87, '2022-03-07 04:01:08', 0, NULL, 0, NULL, 1),
(10211, 8038, '3', 'Madras university', '', 'Bsc cs', '2019', 75.00, '', 1, '2022-03-07 06:56:54', 0, NULL, 0, NULL, 1),
(10212, 7980, '3', 'DR.BR Ambedkar Open University ', '', 'B.com ', '2021', 80.40, '', 1, '2022-03-07 07:12:00', 0, NULL, 0, NULL, 1),
(10213, 8039, '2', 'NIOS', '', '', '2014', 49.50, '', 1, '2022-03-07 08:10:40', 0, NULL, 0, NULL, 1),
(10214, 8040, '1', 'State board of Tamil Nadu', '', '', '2015', 69.00, '', 1, '2022-03-07 08:44:20', 0, NULL, 0, NULL, 1),
(10215, 8040, '2', 'State board of Tamil Nadu', '', '', '2017', 67.00, '', 1, '2022-03-07 08:44:57', 0, NULL, 0, NULL, 1),
(10216, 8040, '3', 'Thiruvalluvar University', '', 'Bachelor of computer Applications', '2020', 71.00, '', 1, '2022-03-07 08:45:47', 0, NULL, 0, NULL, 1),
(10217, 8041, '1', 'KSEEB', '', 'B.Com', '2015', 64.00, '', 1, '2022-03-07 09:14:26', 1, '2022-03-07 09:16:52', 0, NULL, 1),
(10218, 8041, '2', 'Department of pre university board ', '', 'Bcom', '2017', 74.00, '', 1, '2022-03-07 09:17:30', 1, '2022-03-07 09:18:55', 0, NULL, 1),
(10219, 8041, '3', 'Banglore university', '', 'Bcom', '2020', 74.00, '', 1, '2022-03-07 09:19:21', 0, NULL, 0, NULL, 1),
(10220, 8020, '3', 'University of Madras', '', 'B.Com', '2018', 77.70, '', 1, '2022-03-08 10:26:10', 0, NULL, 0, NULL, 1),
(10221, 8042, '3', 'Bharathidasan university', '', 'Bsc', '2011', 55.00, '', 1, '2022-03-08 10:51:37', 0, NULL, 0, NULL, 1),
(10222, 8043, '3', 'Thiruvalluvar University', '', 'B.A English Literature', '2019', 76.00, '', 1, '2022-03-08 10:53:05', 0, NULL, 0, NULL, 1),
(10223, 8047, '3', 'Periyar University ', '', 'Bsc biotechnology ', '2021', 73.00, '', 1, '2022-03-08 03:53:46', 0, NULL, 0, NULL, 1),
(10224, 8050, '3', 'Loyola College', '', 'B.Sc Computer Science', '2018', 59.00, '', 1, '2022-03-09 10:53:20', 0, NULL, 0, NULL, 1),
(10225, 8051, '3', 'University of madras', '', 'Bsc maths', '2020', 78.30, '', 1, '2022-03-09 11:53:22', 0, NULL, 0, NULL, 1),
(10226, 8046, '3', 'SMSGH Jain degree college', '', 'BBA', '2018', 70.00, '', 87, '2022-03-09 11:55:54', 87, '2022-03-09 11:56:13', 0, NULL, 1),
(10227, 8054, '5', 'Bharat samaj University', '', 'Diploma in hotel management', '2012', 77.00, '', 1, '2022-03-09 12:17:42', 0, NULL, 0, NULL, 1),
(10228, 8053, '3', 'Sindhi college of arts and science ', '', 'BCOM', '2016', 70.00, '', 85, '2022-03-09 12:52:18', 85, '2022-03-09 06:51:42', 0, NULL, 1),
(10229, 8055, '3', 'Bharthithasan University ', '', 'Bca', '2017', 60.00, '', 1, '2022-03-09 01:05:20', 0, NULL, 0, NULL, 1),
(10230, 8052, '1', 'tn', '', '', '2006', 54.00, '', 7, '2022-03-09 01:20:03', 0, NULL, 0, NULL, 1),
(10231, 8052, '5', 'vidapeeth', '', 'dme', '2016', 74.00, '', 7, '2022-03-09 01:20:52', 0, NULL, 0, NULL, 1),
(10232, 8056, '5', 'Cusat kochi', '', 'Marine technician', '2012', 70.00, '', 1, '2022-03-09 03:04:17', 0, NULL, 0, NULL, 1),
(10233, 8060, '3', 'Anna University ', '', 'BE', '2019', 61.00, '', 1, '2022-03-09 03:30:40', 0, NULL, 0, NULL, 1),
(10234, 8060, '2', 'State board', '', '', '2015', 67.00, '', 1, '2022-03-09 03:31:16', 0, NULL, 0, NULL, 1),
(10235, 8060, '1', 'State board', '', '', '2013', 84.00, '', 1, '2022-03-09 03:31:45', 0, NULL, 0, NULL, 1),
(10236, 8061, '5', 'State board', '', 'Diploma ', '2019', 72.00, '', 1, '2022-03-09 05:04:42', 0, NULL, 0, NULL, 1),
(10237, 8062, '3', 'University of madras', '', 'Bsc Computer science', '2011', 78.00, '', 1, '2022-03-09 05:20:35', 0, NULL, 0, NULL, 1),
(10238, 8062, '2', 'State board', '', '', '2008', 75.00, '', 1, '2022-03-09 05:21:30', 0, NULL, 0, NULL, 1),
(10239, 8062, '1', 'State board', '', '', '2006', 77.00, '', 1, '2022-03-09 05:21:53', 0, NULL, 0, NULL, 1),
(10240, 8066, '4', 'Madras University ', '', 'M. Com', '2018', 71.00, '', 1, '2022-03-10 10:19:28', 0, NULL, 0, NULL, 1),
(10241, 8069, '3', 'Anna university', '', 'BE', '2019', 72.00, '', 1, '2022-03-10 10:31:04', 0, NULL, 0, NULL, 1),
(10242, 8067, '3', 'Anna university', '', 'B.e', '2014', 7.00, '', 1, '2022-03-10 10:43:11', 0, NULL, 0, NULL, 1),
(10243, 8071, '3', 'ANNA UNIVERSITY', '', 'B.E. [CSE].', '2019', 65.00, '', 1, '2022-03-10 11:14:23', 0, NULL, 0, NULL, 1),
(10244, 8063, '4', 'St Joseph University', '', 'Ma', '2019', 69.00, '', 1, '2022-03-10 12:12:43', 0, NULL, 0, NULL, 1),
(10245, 8063, '1', 'NBSE', '', '', '2012', 53.00, '', 1, '2022-03-10 12:13:58', 0, NULL, 0, NULL, 1),
(10246, 8063, '2', 'NBSE', '', '', '2014', 49.00, '', 1, '2022-03-10 12:14:17', 0, NULL, 0, NULL, 1),
(10247, 8063, '3', 'Nagaland University', '', 'BA', '2017', 57.00, '', 1, '2022-03-10 12:14:45', 0, NULL, 0, NULL, 1),
(10248, 8073, '3', 'Thiruvalluvar university', '', 'B. Sc chemistry', '2011', 72.00, '', 1, '2022-03-10 12:15:32', 0, NULL, 0, NULL, 1),
(10249, 8074, '4', 'University of Madras', '', 'Msc IT', '2022', 77.00, '', 1, '2022-03-10 12:54:49', 0, NULL, 0, NULL, 1),
(10250, 8075, '3', 'Vels University', '', 'B.Com', '2018', 60.00, '', 1, '2022-03-10 01:06:07', 0, NULL, 0, NULL, 1),
(10251, 8077, '3', 'Madras', '', 'Bsc computer science', '2016', 64.00, '', 1, '2022-03-10 02:46:27', 0, NULL, 0, NULL, 1),
(10252, 8082, '2', 'tn', '', '', '2018', 60.00, '', 1, '2022-03-10 06:05:26', 0, NULL, 0, NULL, 1),
(10253, 8080, '1', 'tn', '', '', '2018', 60.00, '', 7, '2022-03-10 06:10:13', 0, NULL, 0, NULL, 1),
(10254, 8058, '3', 'Annamalai University ', '', 'B.A', '2016', 78.60, '', 1, '2022-03-10 06:28:09', 0, NULL, 0, NULL, 1),
(10255, 8085, '3', 'SRM institute of science and technology ', '', 'BSc computer science ', '2021', 91.00, '', 1, '2022-03-10 09:16:04', 0, NULL, 0, NULL, 1),
(10256, 8086, '3', 'Anna University ', '', 'BE', '2020', 67.00, '', 1, '2022-03-11 11:18:49', 0, NULL, 0, NULL, 1),
(10257, 8084, '3', 'Madras University', '', 'BBA', '2021', 71.00, '', 1, '2022-03-11 11:56:18', 0, NULL, 0, NULL, 1),
(10258, 8087, '3', 'Anna University', '', 'B.E COMPUTER SCIENCE AND ENGINEERING', '2018', 54.70, '', 1, '2022-03-11 12:53:35', 0, NULL, 0, NULL, 1),
(10259, 8088, '3', 'Madras University', '', 'B.sc', '2020', 80.00, '', 1, '2022-03-11 01:06:07', 0, NULL, 0, NULL, 1),
(10260, 8088, '2', 'Chennai', '', '', '2017', 75.00, '', 1, '2022-03-11 01:07:06', 0, NULL, 0, NULL, 1),
(10261, 8088, '1', 'Pulicat', '', '', '2015', 91.00, '', 1, '2022-03-11 01:07:23', 0, NULL, 0, NULL, 1),
(10262, 8076, '3', 'Don bosoco college', '', 'BBA', '2019', 79.00, '', 85, '2022-03-11 04:18:40', 0, NULL, 0, NULL, 1),
(10263, 8090, '1', 'Kendriya vidyalaya clri', '', '', '2012', 64.00, '', 1, '2022-03-11 05:13:13', 0, NULL, 0, NULL, 1),
(10264, 8090, '2', 'Anna gem science park matriculation higher secondary school ', '', '', '2014', 73.00, '', 1, '2022-03-11 05:13:48', 0, NULL, 0, NULL, 1),
(10265, 8090, '3', 'Karunya institute of technology and science ', '', 'B.tech', '2018', 61.00, '', 1, '2022-03-11 05:14:43', 0, NULL, 0, NULL, 1),
(10266, 8090, '4', 'Alagappa University ', '', 'MBA', '2021', 75.00, '', 1, '2022-03-11 05:15:16', 0, NULL, 0, NULL, 1),
(10267, 8091, '3', 'Madras University', '', 'Bachelor of Business Administration', '2015', 70.00, '', 1, '2022-03-11 05:21:10', 0, NULL, 0, NULL, 1),
(10268, 8092, '3', 'Madras University', '', 'BBA', '2012', 60.00, '', 1, '2022-03-11 05:31:13', 0, NULL, 0, NULL, 1),
(10269, 8089, '3', 'Anna University', '', 'BE', '2019', 65.00, '', 1, '2022-03-11 07:19:21', 0, NULL, 0, NULL, 1),
(10270, 8089, '2', 'Matriculation', '', '', '2015', 75.00, '', 1, '2022-03-11 07:19:49', 0, NULL, 0, NULL, 1),
(10271, 8089, '1', 'Matriculation', '', '', '2013', 91.00, '', 1, '2022-03-11 07:20:07', 0, NULL, 0, NULL, 1),
(10272, 8097, '1', 'Army Public school', '', '', '2016', 64.00, '', 1, '2022-03-11 07:29:40', 0, NULL, 0, NULL, 1),
(10273, 8097, '5', 'Panimalar Polytechnic college', '', 'Mechanical engineering', '2019', 65.00, '', 1, '2022-03-11 07:30:45', 0, NULL, 0, NULL, 1),
(10274, 8101, '3', 'Anna university', '', 'B. E civil', '2020', 60.00, '', 1, '2022-03-12 12:10:36', 0, NULL, 0, NULL, 1),
(10275, 8102, '3', 'Barathidhasan  University ', '', 'BS.c chemistry', '2021', 80.30, '', 1, '2022-03-12 12:11:39', 0, NULL, 0, NULL, 1),
(10276, 8099, '3', 'Madras university', '', 'Bsc(computer science) ', '2021', 75.00, '', 1, '2022-03-12 12:14:41', 0, NULL, 0, NULL, 1),
(10277, 8103, '3', 'Anna University', '', 'BE', '2021', 7.04, '', 1, '2022-03-12 12:22:23', 0, NULL, 0, NULL, 1),
(10278, 8104, '3', 'Mgr University', '', 'Bsc', '2018', 62.00, '', 1, '2022-03-12 12:35:29', 0, NULL, 0, NULL, 1),
(10279, 8100, '3', 'DB jain college', '', 'BSC mathematics', '2020', 65.00, '', 85, '2022-03-12 01:34:25', 0, NULL, 0, NULL, 1),
(10280, 8105, '3', 'Prist University', '', 'Bsc Computer science', '2021', 70.56, '', 1, '2022-03-12 04:09:15', 0, NULL, 0, NULL, 1),
(10281, 8106, '3', 'Jerusalem college of engineering ', '', 'B.E (ECE)', '2006', 65.00, '', 1, '2022-03-12 05:03:23', 0, NULL, 0, NULL, 1),
(10282, 8107, '3', 'Board', '', 'Bachelor of commerce', '2021', 72.00, '', 1, '2022-03-12 05:23:59', 0, NULL, 0, NULL, 1),
(10283, 8109, '4', 'JNTU ANATHPOOR ', '', 'MCA', '2015', 74.00, '', 1, '2022-03-12 07:12:19', 0, NULL, 0, NULL, 1),
(10284, 0, '3', 'Madras University', '', 'Bsc chemistry', '2018', 64.00, '', 1, '2022-03-12 07:20:32', 1, '2022-03-14 05:22:33', 0, NULL, 0),
(10285, 8110, '3', 'St Mary\'s college ', '', 'Bcom', '2021', 60.00, '', 1, '2022-03-12 07:47:34', 0, NULL, 0, NULL, 1),
(10286, 8113, '3', 'Madras university', '', 'BCA', '2014', 70.00, '', 1, '2022-03-12 08:00:00', 0, NULL, 0, NULL, 1),
(10287, 8114, '3', 'Sankara arts&Science autonomous college ', '', 'BCA', '2021', 68.00, '', 1, '2022-03-13 02:22:29', 0, NULL, 0, NULL, 1),
(10288, 8117, '3', 'St.xaveris college ,manonmaniyam sutharanath  University ', '', 'B.com corporate sectoryship', '2018', 50.00, '', 1, '2022-03-14 10:08:11', 0, NULL, 0, NULL, 1),
(10289, 8118, '2', 'State board', '', '', '2016', 75.00, '', 1, '2022-03-14 10:29:05', 58, '2022-03-14 10:32:04', 0, NULL, 1),
(10290, 8118, '3', 'Acodomus', '', 'Ba', '2019', 72.00, '', 1, '2022-03-14 10:29:49', 0, NULL, 0, NULL, 1),
(10291, 8108, '4', 'Anna university', '', 'B.E civil engineering', '2018', 70.00, '', 1, '2022-03-14 12:26:02', 0, NULL, 0, NULL, 1),
(10292, 8119, '3', 'Alagappa University', '', 'Bcom', '2014', 51.00, '', 1, '2022-03-14 12:46:22', 0, NULL, 0, NULL, 1),
(10293, 8115, '2', 'am', '', '', '2013', 83.00, '', 1, '2022-03-14 01:50:13', 0, NULL, 0, NULL, 1),
(10294, 8115, '4', 'annamalai', '', 'mba', '2021', 70.00, '', 1, '2022-03-14 01:50:38', 0, NULL, 0, NULL, 1),
(10295, 8120, '4', 'JNTU UNIVERSITY', '', 'Rayalaseema University', '2014', 60.00, '', 1, '2022-03-14 01:57:12', 0, NULL, 0, NULL, 1),
(10296, 8121, '3', 'Madurai kamaraj university college ', '', 'Ba English ', '2021', 68.00, '', 1, '2022-03-14 02:39:39', 0, NULL, 0, NULL, 1),
(10297, 8112, '3', 'Madras University', '', 'Bsc chemistry', '2018', 64.00, '', 1, '2022-03-14 03:57:59', 0, NULL, 0, NULL, 1),
(10298, 8122, '3', 'Bon Secours college for women ', '', '', '2020', 75.00, '', 1, '2022-03-14 05:22:35', 0, NULL, 0, NULL, 1),
(10299, 8123, '5', 'Direct of technical education ', '', '', '2020', 82.00, '', 1, '2022-03-14 05:58:22', 0, NULL, 0, NULL, 1),
(10300, 8127, '3', 'Bharathiyar university', '', 'Bsc computer science', '2021', 70.00, '', 1, '2022-03-14 08:27:33', 0, NULL, 0, NULL, 1),
(10301, 8126, '4', 'MK UNIVERSITY ', '', 'MSc', '2014', 74.00, '', 1, '2022-03-14 08:29:00', 0, NULL, 0, NULL, 1),
(10302, 8129, '4', 'Madras University ', '', 'MCA', '2021', 85.00, '', 1, '2022-03-15 10:20:00', 0, NULL, 0, NULL, 1),
(10303, 8129, '3', 'Thiruvallur University ', '', 'B.sc ', '2019', 68.00, '', 1, '2022-03-15 10:20:22', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10304, 8129, '2', 'State board of tamil nadu', '', '', '2016', 63.00, '', 1, '2022-03-15 10:20:42', 0, NULL, 0, NULL, 1),
(10305, 8129, '1', 'State board of tamil nadu', '', '', '2014', 79.00, '', 1, '2022-03-15 10:21:25', 0, NULL, 0, NULL, 1),
(10306, 8130, '1', 'RCM High school', '', '', '2009', 63.00, '', 1, '2022-03-15 11:09:13', 0, NULL, 0, NULL, 1),
(10307, 8132, '3', 'State board', '', 'Ba English', '2019', 60.00, '', 1, '2022-03-15 03:39:47', 0, NULL, 0, NULL, 1),
(10308, 8132, '4', 'Anna university', '', 'MBA hr', '2021', 78.00, '', 1, '2022-03-15 03:40:30', 0, NULL, 0, NULL, 1),
(10309, 8133, '3', 'Madras University', '', 'B.Com (Corporate Secretary)', '2020', 52.00, '', 1, '2022-03-15 04:34:25', 0, NULL, 0, NULL, 1),
(10310, 8135, '3', 'St. Xavier\'s College Palayamkottai', '', 'B com', '2020', 65.50, '', 1, '2022-03-15 04:57:13', 0, NULL, 0, NULL, 1),
(10311, 8135, '2', 'Sri jayandra golden', '', '', '2017', 84.50, '', 1, '2022-03-15 04:57:57', 0, NULL, 0, NULL, 1),
(10312, 8135, '1', 'State board', '', '', '2015', 78.00, '', 1, '2022-03-15 04:58:19', 0, NULL, 0, NULL, 1),
(10313, 8136, '3', 'Anna University ', '', 'B.E', '2020', 64.00, '', 1, '2022-03-15 05:53:41', 0, NULL, 0, NULL, 1),
(10314, 8137, '4', 'Bharathiyar University', '', 'Msc', '2020', 84.00, '', 1, '2022-03-16 11:36:53', 0, NULL, 0, NULL, 1),
(10315, 8134, '2', 'sboa', '', '', '2015', 70.00, '', 58, '2022-03-16 11:39:03', 0, NULL, 0, NULL, 1),
(10316, 8134, '3', 'autonomus', '', 'ba english lit', '2019', 61.00, '', 58, '2022-03-16 11:40:21', 0, NULL, 0, NULL, 1),
(10317, 8139, '1', 'govt model higher secondar school', '', '', '2012', 75.00, '', 1, '2022-03-16 11:50:35', 1, '2022-03-16 12:35:55', 0, NULL, 1),
(10318, 8139, '2', 'govt model higher secondary school', '', '', '2014', 65.00, '', 1, '2022-03-16 12:41:12', 0, NULL, 0, NULL, 1),
(10319, 8139, '3', 'thiruvalluvar university', '', 'bba', '2017', 75.00, '', 1, '2022-03-16 12:41:58', 0, NULL, 0, NULL, 1),
(10320, 8139, '4', 'bharathiyar university', '', 'mba', '2019', 75.00, '', 1, '2022-03-16 12:42:36', 0, NULL, 0, NULL, 1),
(10321, 8142, '3', 'Thiruvalluvar university', '', 'B. Com(general) ', '2020', 75.00, '', 1, '2022-03-16 01:06:47', 0, NULL, 0, NULL, 1),
(10322, 8142, '2', 'State board', '', '', '2017', 80.00, '', 1, '2022-03-16 01:07:57', 0, NULL, 0, NULL, 1),
(10323, 8142, '1', 'State board', '', '', '2015', 70.00, '', 1, '2022-03-16 01:08:42', 0, NULL, 0, NULL, 1),
(10324, 8143, '1', 'State Board ', '', '', '2015', 85.00, '', 1, '2022-03-16 01:13:14', 0, NULL, 0, NULL, 1),
(10325, 8143, '2', 'State Board ', '', '', '2017', 83.00, '', 1, '2022-03-16 01:14:19', 0, NULL, 0, NULL, 1),
(10326, 8143, '3', 'Madras University ', '', 'B. Com(ISM)', '2020', 75.00, '', 1, '2022-03-16 01:15:14', 0, NULL, 0, NULL, 1),
(10327, 8145, '3', 'university', '', 'bsc computerscience ', '2020', 65.00, '', 1, '2022-03-16 02:38:03', 0, NULL, 0, NULL, 1),
(10328, 8146, '3', 'Anna University(Adhiyamaan clg of engg)', '', 'BE', '2015', 87.00, '', 1, '2022-03-16 02:42:46', 1, '2022-03-16 02:43:36', 0, NULL, 1),
(10329, 8146, '2', 'State board', '', '', '2011', 85.00, '', 1, '2022-03-16 02:44:29', 0, NULL, 0, NULL, 1),
(10330, 8146, '1', 'State board', '', '', '2009', 87.00, '', 1, '2022-03-16 02:44:42', 0, NULL, 0, NULL, 1),
(10331, 8147, '3', 'Anna University ', '', 'B.e(CSE)', '2016', 69.00, '', 1, '2022-03-16 03:10:44', 0, NULL, 0, NULL, 1),
(10332, 8140, '3', 'Anna university ', '', 'BE CSE ', '2012', 60.00, '', 1, '2022-03-16 04:22:15', 0, NULL, 0, NULL, 1),
(10333, 8137, '2', 'tn', '', '', '2014', 60.00, '', 7, '2022-03-16 05:46:20', 0, NULL, 0, NULL, 1),
(10334, 8152, '3', 'Bharathidasan University', '', 'BBA(Business Administration)', '2018', 81.33, '', 1, '2022-03-17 10:35:42', 0, NULL, 0, NULL, 1),
(10335, 8152, '2', 'State Board', '', '', '2018', 65.40, '', 1, '2022-03-17 10:36:57', 0, NULL, 0, NULL, 1),
(10336, 8152, '1', 'State Board', '', '', '2016', 78.20, '', 1, '2022-03-17 10:37:24', 0, NULL, 0, NULL, 1),
(10337, 8151, '3', 'Shree Raghavendra Arts & science college chidambaram', '', 'BCA', '2018', 64.00, '', 1, '2022-03-17 10:44:03', 0, NULL, 0, NULL, 1),
(10338, 8150, '4', 'Madras University', '', 'M A Human right and duties education', '2021', 69.90, '', 1, '2022-03-17 11:03:20', 0, NULL, 0, NULL, 1),
(10339, 8155, '3', 'University of madras', '', 'B.Com(corporate secretaryship)', '2019', 63.00, '', 1, '2022-03-17 11:14:23', 0, NULL, 0, NULL, 1),
(10340, 8155, '2', 'tn', '', '', '2016', 58.00, '', 7, '2022-03-17 12:02:43', 0, NULL, 0, NULL, 1),
(10341, 8156, '2', 'Tn', '', '', '2018', 67.00, '', 1, '2022-03-17 12:55:45', 0, NULL, 0, NULL, 1),
(10342, 8156, '3', 'Madras', '', 'Bcom', '2021', 67.00, '', 1, '2022-03-17 12:56:13', 0, NULL, 0, NULL, 1),
(10343, 8162, '4', 'Bharadhidhasan university', '', 'Mca', '2021', 64.00, '', 1, '2022-03-17 10:46:44', 0, NULL, 0, NULL, 1),
(10344, 8162, '1', 'Skateboard', '', '', '2013', 72.00, '', 1, '2022-03-17 10:47:38', 0, NULL, 0, NULL, 1),
(10345, 8162, '2', 'Skateboard', '', '', '2015', 65.00, '', 1, '2022-03-17 10:48:25', 0, NULL, 0, NULL, 1),
(10346, 8162, '3', 'Bharadhidhasan university', '', 'Bsc computer science', '2018', 55.00, '', 1, '2022-03-17 10:48:52', 0, NULL, 0, NULL, 1),
(10347, 8163, '4', 'BharathidaSan university', '', 'MBA', '2021', 75.00, '', 1, '2022-03-18 10:06:06', 0, NULL, 0, NULL, 1),
(10348, 8164, '3', 'manonmaiyam sundarar university', '', 'b.a', '2020', 60.00, '', 1, '2022-03-18 10:38:26', 0, NULL, 0, NULL, 1),
(10349, 8168, '3', 'Bharathidasan University', '', 'B.sc', '2021', 79.00, '', 1, '2022-03-18 11:35:25', 0, NULL, 0, NULL, 1),
(10350, 8169, '4', 'Sathyabama University ', '', 'Master of Engineering ', '2016', 8.07, '', 1, '2022-03-18 11:58:41', 0, NULL, 0, NULL, 1),
(10351, 8161, '3', 'University of madras', '', 'B. Sc', '2021', 65.00, '', 1, '2022-03-18 12:18:26', 0, NULL, 0, NULL, 1),
(10352, 8171, '3', 'Dr.MGR EDUCATIONAL AND RESEARCH INSTITUTE ', '', 'B.tech', '2021', 70.00, '', 1, '2022-03-18 12:32:06', 0, NULL, 0, NULL, 1),
(10353, 8149, '5', 'Canna carting hotels management', '', 'Bsc hotel management', '2014', 65.00, '', 1, '2022-03-18 12:32:51', 0, NULL, 0, NULL, 1),
(10354, 8173, '4', 'Bharathidasan university', '', 'MA HRM', '2020', 76.00, '', 1, '2022-03-18 12:45:48', 0, NULL, 0, NULL, 1),
(10355, 8172, '3', 'VoorheesCollege of Arts and Scienece', '', 'BSW', '2021', 60.00, '', 1, '2022-03-18 12:59:03', 0, NULL, 0, NULL, 1),
(10356, 8174, '3', 'Madras University', '', 'B.sc', '2014', 66.00, '', 84, '2022-03-18 03:36:03', 0, NULL, 0, NULL, 1),
(10357, 8174, '2', 'State Board', '', '', '2010', 65.00, '', 84, '2022-03-18 03:36:34', 0, NULL, 0, NULL, 1),
(10358, 8174, '1', 'State Board', '', '', '2008', 69.00, '', 84, '2022-03-18 03:37:00', 0, NULL, 0, NULL, 1),
(10359, 8175, '3', 'Noorul Islam Center for Higher Education,Kumaracoil, Kanyakumari.', '', 'ECE(Electronics and Communication Engineering)', '2020', 62.00, '', 1, '2022-03-18 05:38:46', 0, NULL, 0, NULL, 1),
(10360, 8178, '3', 'Bharatidasan university', '', 'B.sc', '2016', 70.00, '', 1, '2022-03-19 10:16:26', 0, NULL, 0, NULL, 1),
(10361, 8177, '4', 'Anna university', '', 'MCA', '2016', 72.00, '', 1, '2022-03-19 10:18:45', 0, NULL, 0, NULL, 1),
(10362, 8176, '3', 'Madras University', '', 'Bsc ecs (electronic communications science)', '2021', 68.00, '', 1, '2022-03-19 10:20:30', 0, NULL, 0, NULL, 1),
(10363, 8180, '3', 'Crescent University', '', 'B.tech mechanical', '2021', 78.00, '', 1, '2022-03-19 11:37:02', 0, NULL, 0, NULL, 1),
(10364, 8184, '1', 'Central board', '', '', '2014', 68.00, '', 1, '2022-03-19 05:32:44', 0, NULL, 0, NULL, 1),
(10365, 8184, '2', 'State board', '', '', '2016', 70.83, '', 1, '2022-03-19 05:33:34', 0, NULL, 0, NULL, 1),
(10366, 8184, '3', 'Vels University', '', 'Bachelor of computer applications', '2020', 64.00, '', 1, '2022-03-19 05:34:05', 0, NULL, 0, NULL, 1),
(10367, 8185, '3', 'Bharathiyar university', '', 'B.com', '2019', 60.00, '', 1, '2022-03-19 06:35:21', 0, NULL, 0, NULL, 1),
(10368, 8186, '1', 'Government Higher secondary school', '', 'BCA', '2010', 69.00, '', 1, '2022-03-19 09:17:39', 0, NULL, 0, NULL, 1),
(10369, 8186, '2', 'Government higher secondary school', '', '', '2012', 63.00, '', 1, '2022-03-19 09:18:19', 0, NULL, 0, NULL, 1),
(10370, 8186, '3', 'Madras university', '', 'BCA', '2015', 65.00, '', 1, '2022-03-19 09:19:20', 0, NULL, 0, NULL, 1),
(10371, 8187, '3', 'St Anne\'s arts and science college', '', 'BCA', '2019', 87.00, '', 1, '2022-03-19 09:39:05', 0, NULL, 0, NULL, 1),
(10372, 8189, '3', 'Madras University', '', 'B. Com', '2019', 60.00, '', 1, '2022-03-21 11:12:22', 0, NULL, 0, NULL, 1),
(10373, 8190, '3', 'Madras University', '', 'BBA', '2019', 55.00, '', 1, '2022-03-21 11:16:43', 0, NULL, 0, NULL, 1),
(10374, 8193, '3', 'anna university', '', 'be', '2016', 70.00, '', 1, '2022-03-21 12:16:16', 0, NULL, 0, NULL, 1),
(10375, 8195, '3', 'Tiruvalluvar University', '', 'BCA', '2020', 70.00, '', 1, '2022-03-21 12:41:08', 0, NULL, 0, NULL, 1),
(10376, 8197, '2', 'Matriculation', '', '', '2013', 72.00, '', 1, '2022-03-21 01:37:17', 0, NULL, 0, NULL, 1),
(10377, 8165, '5', 'M.G.R University', '', 'ECE', '2016', 60.00, '', 1, '2022-03-21 03:30:32', 0, NULL, 0, NULL, 1),
(10378, 8165, '1', 'State board', '', '', '2013', 68.00, '', 1, '2022-03-21 03:31:24', 0, NULL, 0, NULL, 1),
(10379, 8198, '3', 'Bharathidasan university', '', 'Bsc maths', '2019', 75.00, '', 1, '2022-03-21 03:43:23', 0, NULL, 0, NULL, 1),
(10380, 8199, '1', 'State board', '', '', '2012', 83.00, '', 1, '2022-03-21 05:00:37', 0, NULL, 0, NULL, 1),
(10381, 8199, '2', 'State board', '', '', '2014', 77.00, '', 1, '2022-03-21 05:01:06', 0, NULL, 0, NULL, 1),
(10382, 8199, '3', 'Anna university', '', 'B.E., mechatronics engineering', '2018', 68.00, '', 1, '2022-03-21 05:01:53', 0, NULL, 0, NULL, 1),
(10383, 8200, '3', 'Annauniversity', '', 'Bachelor of engineering ', '2019', 6.40, '', 1, '2022-03-21 06:08:05', 0, NULL, 0, NULL, 1),
(10384, 8201, '4', 'annamalai university', '', 'mca', '2021', 60.00, '', 1, '2022-03-21 06:19:05', 0, NULL, 0, NULL, 1),
(10385, 8201, '3', 'bharathidasan university', '', 'bca', '2018', 65.00, '', 1, '2022-03-21 06:20:23', 0, NULL, 0, NULL, 1),
(10386, 8182, '1', 'state board', '', '', '2010', 91.00, '', 1, '2022-03-21 08:16:17', 0, NULL, 0, NULL, 1),
(10387, 8182, '2', 'state board', '', '', '2012', 88.00, '', 1, '2022-03-21 08:16:42', 0, NULL, 0, NULL, 1),
(10388, 8182, '3', 'anna university', '', '', '2018', 63.33, '', 1, '2022-03-21 08:17:04', 0, NULL, 0, NULL, 1),
(10389, 8131, '3', 'Madras university', '', 'B.Sc', '2019', 70.00, '', 1, '2022-03-21 09:42:40', 0, NULL, 0, NULL, 1),
(10390, 8202, '2', 'state board', '', '', '2014', 65.00, '', 1, '2022-03-22 09:52:06', 0, NULL, 0, NULL, 1),
(10391, 8202, '4', 'university of madras', '', 'mcom', '2019', 75.00, '', 1, '2022-03-22 09:52:47', 0, NULL, 0, NULL, 1),
(10392, 8203, '5', 'Anna university', '', '', '2018', 75.00, '', 1, '2022-03-22 10:17:05', 0, NULL, 0, NULL, 1),
(10393, 8204, '3', 'PSG itech', '', 'B.E', '2020', 72.00, '', 1, '2022-03-22 10:40:50', 0, NULL, 0, NULL, 1),
(10394, 8192, '3', 'imayam arts and science college', '', 'BCA', '2020', 74.00, '', 85, '2022-03-22 10:58:30', 0, NULL, 0, NULL, 1),
(10395, 8194, '3', 'Islamiah womens college of vaniambai', '', 'BCA', '2020', 75.00, '', 85, '2022-03-22 11:06:55', 0, NULL, 0, NULL, 1),
(10396, 8205, '3', 'Madras University', '', 'Bsc computer science', '2015', 70.00, '', 1, '2022-03-22 11:17:59', 0, NULL, 0, NULL, 1),
(10397, 8170, '3', 'anna universit', '', 'bcom', '2017', 60.00, '', 87, '2022-03-22 11:54:15', 0, NULL, 0, NULL, 1),
(10398, 8128, '3', 'madrasuniversit', '', 'bcom', '2018', 50.00, '', 87, '2022-03-22 12:04:56', 0, NULL, 0, NULL, 1),
(10399, 8206, '2', 'Children\'s garden higher secondary school', '', '', '2013', 65.00, '', 1, '2022-03-22 12:06:32', 0, NULL, 0, NULL, 1),
(10400, 8207, '1', 'State board', '', '', '2013', 58.00, '', 1, '2022-03-22 12:41:44', 0, NULL, 0, NULL, 1),
(10401, 8207, '2', 'State board', '', '', '2015', 78.00, '', 1, '2022-03-22 12:42:18', 0, NULL, 0, NULL, 1),
(10402, 8207, '3', 'M K university', '', 'B. Com', '2018', 50.00, '', 1, '2022-03-22 12:43:05', 0, NULL, 0, NULL, 1),
(10403, 8096, '3', 'anna university', '', 'be', '2016', 65.00, '', 1, '2022-03-22 01:01:39', 0, NULL, 0, NULL, 1),
(10404, 8096, '2', 'matriculation', '', '', '2012', 83.00, '', 1, '2022-03-22 01:02:09', 0, NULL, 0, NULL, 1),
(10405, 8208, '3', 'Kundhavai Naacchiyar government college', '', 'Ug', '2021', 79.00, '', 1, '2022-03-22 01:05:39', 0, NULL, 0, NULL, 1),
(10406, 8210, '2', 'state board', '', '', '2013', 55.00, '', 1, '2022-03-22 04:47:48', 0, NULL, 0, NULL, 1),
(10407, 8210, '3', 'madras university', '', 'bba', '2018', 60.00, '', 1, '2022-03-22 04:48:14', 0, NULL, 0, NULL, 1),
(10408, 8211, '2', 'state board', '', '', '2016', 49.00, '', 1, '2022-03-22 04:54:04', 0, NULL, 0, NULL, 1),
(10409, 8211, '4', 'anna university', '', 'mba', '2021', 67.00, '', 1, '2022-03-22 04:54:26', 0, NULL, 0, NULL, 1),
(10410, 8212, '2', 'state board', '', '', '2016', 67.00, '', 1, '2022-03-22 05:05:01', 0, NULL, 0, NULL, 1),
(10411, 8212, '5', 'photoshop', '', 'diploma', '2019', 67.00, '', 1, '2022-03-22 05:05:38', 0, NULL, 0, NULL, 1),
(10412, 784, '2', 'govt', '', '', '2013', 95.00, '', 1, '2022-03-22 05:18:15', 0, NULL, 0, NULL, 1),
(10413, 784, '3', 'polytechnic', '', 'dmte', '2017', 81.00, '', 1, '2022-03-22 05:19:14', 0, NULL, 0, NULL, 1),
(10414, 8213, '2', 'state board', '', '', '2019', 60.00, '', 1, '2022-03-22 05:28:21', 0, NULL, 0, NULL, 1),
(10415, 8213, '3', 'periyar university', '', 'bca', '2021', 76.00, '', 1, '2022-03-22 05:30:18', 0, NULL, 0, NULL, 1),
(10416, 8214, '4', 'Bharathidasan University ', '', 'Mca', '2020', 77.00, '', 1, '2022-03-22 05:53:48', 0, NULL, 0, NULL, 1),
(10417, 8214, '4', 'Bharathidasan University', '', 'Mca', '2020', 77.00, '', 1, '2022-03-22 05:54:26', 0, NULL, 0, NULL, 1),
(10418, 8215, '1', 'TN STATE BOARD', '', '', '2015', 75.00, '', 1, '2022-03-22 07:36:47', 0, NULL, 0, NULL, 1),
(10419, 8215, '2', 'TN HSC', '', '', '2017', 78.00, '', 1, '2022-03-22 07:37:36', 0, NULL, 0, NULL, 1),
(10420, 8215, '3', 'Thiruvalluvar University', '', 'B.Sc', '2020', 76.00, '', 1, '2022-03-22 07:38:43', 0, NULL, 0, NULL, 1),
(10421, 8216, '5', 'polytechnic', '', 'd ece', '2013', 67.00, '', 1, '2022-03-22 08:05:32', 0, NULL, 0, NULL, 1),
(10422, 8217, '2', 'state board', '', '', '2006', 66.00, '', 1, '2022-03-22 08:20:54', 0, NULL, 0, NULL, 1),
(10423, 8217, '3', 'anna university', '', 'diploma', '2013', 66.00, '', 1, '2022-03-22 08:21:18', 0, NULL, 0, NULL, 1),
(10424, 8219, '2', 'Sengunthar Girls Higher Secondary School', '', '', '2014', 88.00, '', 1, '2022-03-23 10:20:04', 0, NULL, 0, NULL, 1),
(10425, 8219, '3', 'Kongu Engineering ', '', 'B.E in Computer Science', '2018', 70.00, '', 1, '2022-03-23 10:20:38', 0, NULL, 0, NULL, 1),
(10426, 8218, '4', 'Anna University ', '', 'MBA ', '2019', 70.00, '', 1, '2022-03-23 10:24:34', 0, NULL, 0, NULL, 1),
(10427, 8218, '4', 'Anna University', '', 'MBA', '2019', 70.00, '', 1, '2022-03-23 10:27:40', 1, '2022-03-23 10:27:52', 0, NULL, 0),
(10428, 8220, '1', 'State board ', '', '', '2015', 92.00, '', 1, '2022-03-23 11:05:50', 0, NULL, 0, NULL, 1),
(10429, 8220, '5', 'DOTE', '', 'Electronics and communication ', '2018', 84.00, '', 1, '2022-03-23 11:06:30', 0, NULL, 0, NULL, 1),
(10430, 8220, '3', 'Anna University ', '', 'Electronics and communication ', '2021', 86.00, '', 1, '2022-03-23 11:06:55', 0, NULL, 0, NULL, 1),
(10431, 8064, '3', 'Bharathiar university', '', ' Bsc', '2016', 73.00, '', 1, '2022-03-23 11:59:08', 0, NULL, 0, NULL, 1),
(10432, 8209, '3', 'KAMARAJ UNIVERSITY,MADURAI', '', 'B com', '2021', 72.00, '', 84, '2022-03-23 12:28:31', 0, NULL, 0, NULL, 1),
(10433, 8209, '2', 'STATE BOARD ', '', '', '2018', 83.00, '', 84, '2022-03-23 12:29:01', 0, NULL, 0, NULL, 1),
(10434, 8209, '1', 'STATE BOARD ', '', '', '2016', 86.00, '', 84, '2022-03-23 12:29:15', 0, NULL, 0, NULL, 1),
(10435, 8221, '4', 'Bharathidhasan University', '', 'M. A., B. ed', '2019', 61.00, '', 1, '2022-03-23 01:00:27', 0, NULL, 0, NULL, 1),
(10436, 8223, '3', 'Thiruthangal Nadar college', '', 'B.com', '2020', 73.00, '', 1, '2022-03-23 02:00:24', 0, NULL, 0, NULL, 1),
(10437, 8222, '3', 'University of Madras ', '', 'B. Com', '2020', 65.00, '', 1, '2022-03-23 02:01:37', 0, NULL, 0, NULL, 1),
(10438, 8224, '3', 'Anna University', '', 'Bachelor of Engineering', '2019', 73.50, '', 1, '2022-03-23 03:14:15', 0, NULL, 0, NULL, 1),
(10439, 8224, '2', 'CBSE', '', '', '2015', 86.60, '', 1, '2022-03-23 03:15:08', 0, NULL, 0, NULL, 1),
(10440, 8224, '1', 'CBSE', '', '', '2013', 95.00, '', 1, '2022-03-23 03:15:43', 0, NULL, 0, NULL, 1),
(10441, 8225, '3', 'Kongu art and science college', '', 'B sc computer science', '2021', 74.00, '', 1, '2022-03-23 04:32:05', 0, NULL, 0, NULL, 1),
(10442, 8227, '2', 'state board', '', '', '2014', 72.00, '', 1, '2022-03-24 10:56:32', 0, NULL, 0, NULL, 1),
(10443, 8227, '3', 'polytechnic', '', 'diploma', '2016', 92.00, '', 1, '2022-03-24 10:56:53', 0, NULL, 0, NULL, 1),
(10444, 6673, '3', 'University of Madras', '', 'BBA', '2019', 51.00, '', 1, '2022-03-24 02:10:46', 0, NULL, 0, NULL, 1),
(10445, 8228, '4', 'BHARATHIAR UNIVERSITY ', '', 'M.SC COMPUTER SCIENCE ', '2018', 82.00, '', 1, '2022-03-24 04:00:51', 1, '2022-03-24 04:01:27', 0, NULL, 1),
(10446, 8228, '3', 'BHARATHIAR UNIVERSITY ', '', 'B.SC COMPUTER TECHNOLOGY ', '2016', 80.00, '', 1, '2022-03-24 04:01:12', 0, NULL, 0, NULL, 1),
(10447, 8228, '2', 'STATE BOARD ', '', '', '2013', 53.00, '', 1, '2022-03-24 04:01:45', 0, NULL, 0, NULL, 1),
(10448, 8228, '1', 'STATE BOARD ', '', '', '2011', 63.00, '', 1, '2022-03-24 04:02:16', 0, NULL, 0, NULL, 1),
(10449, 8116, '3', 'Anna university', '', 'BE ', '2013', 80.00, '', 1, '2022-03-24 04:05:09', 0, NULL, 0, NULL, 1),
(10450, 8229, '3', 'Madras university', '', 'Bsc (cs)', '2020', 65.00, '', 1, '2022-03-24 04:17:38', 0, NULL, 0, NULL, 1),
(10451, 8229, '1', 'Board', '', 'Bsc computer science', '2015', 70.00, '', 1, '2022-03-24 04:21:50', 1, '2022-03-24 04:22:32', 0, NULL, 0),
(10452, 8229, '2', 'Board', '', '', '2017', 72.00, '', 1, '2022-03-24 04:22:19', 0, NULL, 0, NULL, 1),
(10453, 8229, '1', 'Board', '', '', '2015', 70.00, '', 1, '2022-03-24 04:23:11', 0, NULL, 0, NULL, 1),
(10454, 8229, '4', 'Madras university', '', 'Msc (cs)', '2018', 62.00, '', 1, '2022-03-24 04:24:17', 0, NULL, 0, NULL, 1),
(10455, 8230, '3', 'KSOU', '', 'Btech Naval Architecture and Ship Building', '2014', 71.60, '', 1, '2022-03-24 04:34:23', 0, NULL, 0, NULL, 1),
(10456, 8233, '3', 'Anna university', '', 'B.E', '2022', 80.00, '', 1, '2022-03-24 07:14:25', 0, NULL, 0, NULL, 1),
(10457, 8234, '3', 'St. Xavier\'s college ', '', 'Bachelor of computer science ', '2020', 78.24, '', 1, '2022-03-24 08:07:33', 0, NULL, 0, NULL, 1),
(10458, 8236, '3', 'ANNA UNIVERSITY', '', 'B. E', '2022', 75.00, '', 1, '2022-03-24 08:23:22', 0, NULL, 0, NULL, 1),
(10459, 8238, '3', 'University of madras ', '', 'B.com ', '2017', 57.00, '', 1, '2022-03-25 09:56:27', 0, NULL, 0, NULL, 1),
(10460, 8239, '3', 'Anna university', '', 'Bachelor in engineering', '2017', 67.00, '', 1, '2022-03-25 10:33:20', 0, NULL, 0, NULL, 1),
(10461, 8240, '3', 'Srm', '', 'Mechanical ', '2015', 7.90, '', 1, '2022-03-25 10:34:18', 0, NULL, 0, NULL, 1),
(10462, 8242, '3', 'Kumaraguru Institute Of Agriculture', '', 'B.Sc (Agriculture)', '2019', 79.00, '', 1, '2022-03-25 11:11:16', 0, NULL, 0, NULL, 1),
(10463, 8243, '3', 'Anna University', '', 'BE', '2014', 63.50, '', 1, '2022-03-25 11:37:47', 0, NULL, 0, NULL, 1),
(10464, 8245, '3', 'Tamil Nadu Agriculture University', '', 'B.Sc. Agriculture', '2019', 76.00, '', 1, '2022-03-25 11:41:16', 0, NULL, 0, NULL, 1),
(10465, 8247, '3', 'anna university', '', 'be', '2018', 75.00, '', 1, '2022-03-25 11:55:51', 0, NULL, 0, NULL, 1),
(10466, 8232, '3', 'Bharathiyar university,coimbatore ', '', 'BBA', '2021', 67.00, '', 1, '2022-03-25 03:42:16', 0, NULL, 0, NULL, 1),
(10467, 8246, '3', 'University of Madras', '', 'B.sc computer science', '2021', 68.00, '', 1, '2022-03-25 03:54:05', 0, NULL, 0, NULL, 1),
(10468, 8246, '1', 'Rangaswamy matric hr sec school', '', 'Bsc computer science', '2014', 80.00, '', 1, '2022-03-25 03:55:54', 0, NULL, 0, NULL, 1),
(10469, 8246, '2', 'Rangaswamy matric hr sec school', '', '', '2016', 69.00, '', 1, '2022-03-25 03:56:59', 0, NULL, 0, NULL, 1),
(10470, 8250, '3', 'Bharathiar University', '', 'B.com(Banking and insurance)', '2020', 54.46, '', 1, '2022-03-25 04:56:48', 0, NULL, 0, NULL, 1),
(10471, 8250, '1', 'State board tamilnadu', '', '', '2017', 86.33, '', 1, '2022-03-25 04:59:29', 0, NULL, 0, NULL, 1),
(10472, 8250, '2', 'State board tamilnadu', '', '', '2015', 66.20, '', 1, '2022-03-25 05:00:06', 0, NULL, 0, NULL, 1),
(10473, 8253, '3', 'kongu arts and science college', '', 'b.com', '2020', 62.50, '', 1, '2022-03-25 06:14:19', 0, NULL, 0, NULL, 1),
(10474, 8252, '1', 'Stateboard', '', '', '2015', 65.00, '', 1, '2022-03-25 06:38:59', 0, NULL, 0, NULL, 1),
(10475, 8254, '3', 'anna university ', '', 'B.E Biomedical Engineering ', '2019', 6.65, '', 1, '2022-03-25 07:20:31', 0, NULL, 0, NULL, 1),
(10476, 8255, '3', 'anna university', '', 'be', '2018', 6.10, '', 1, '2022-03-25 10:14:52', 0, NULL, 0, NULL, 1),
(10477, 8235, '3', 'Bharthiyar university', '', 'B. Com', '2021', 65.00, '', 1, '2022-03-26 08:52:53', 0, NULL, 0, NULL, 1),
(10478, 8256, '3', 'Anna University ', '', 'B.E', '2022', 77.00, '', 1, '2022-03-26 10:15:54', 0, NULL, 0, NULL, 1),
(10479, 8248, '3', 'Anna University', '', 'BE', '2022', 7.50, '', 1, '2022-03-26 10:16:13', 0, NULL, 0, NULL, 1),
(10480, 8257, '3', 'Anna University ', '', 'B E', '2022', 7.90, '', 1, '2022-03-26 10:17:46', 0, NULL, 0, NULL, 1),
(10481, 8237, '3', 'Anna university', '', 'B.E', '2022', 77.00, '', 1, '2022-03-26 10:25:17', 0, NULL, 0, NULL, 1),
(10482, 8258, '3', 'Anna university', '', 'B. Tech', '2022', 89.00, '', 1, '2022-03-26 10:29:13', 0, NULL, 0, NULL, 1),
(10483, 8259, '5', 'Sempatti University ', '', 'Dme', '2018', 80.00, '', 1, '2022-03-26 10:55:36', 0, NULL, 0, NULL, 1),
(10484, 8259, '2', 'State board', '', '', '2016', 72.00, '', 1, '2022-03-26 10:56:00', 0, NULL, 0, NULL, 1),
(10485, 8259, '1', 'State board', '', '', '2014', 77.00, '', 1, '2022-03-26 10:56:28', 0, NULL, 0, NULL, 1),
(10486, 8260, '3', 'University of madras', '', 'Bca', '2015', 60.00, '', 1, '2022-03-26 11:01:38', 0, NULL, 0, NULL, 1),
(10487, 8261, '3', 'anna university', '', 'Bachelor of Engineering', '2012', 63.00, '', 1, '2022-03-26 11:08:20', 0, NULL, 0, NULL, 1),
(10488, 8263, '2', 'State board', '', '', '2010', 60.00, '', 1, '2022-03-26 11:34:21', 0, NULL, 0, NULL, 1),
(10489, 8263, '3', 'Madras University ', '', 'Bca', '2013', 74.00, '', 1, '2022-03-26 11:34:50', 0, NULL, 0, NULL, 1),
(10490, 8262, '5', 'Director of            Technical Education Govt. of Tamilnadu', '', 'CE', '2016', 73.00, '', 84, '2022-03-26 11:37:23', 0, NULL, 0, NULL, 1),
(10491, 8262, '1', 'State board', '', '', '2013', 69.00, '', 84, '2022-03-26 11:37:52', 0, NULL, 0, NULL, 1),
(10492, 8264, '3', 'Jntu k', '', 'EEE', '2015', 80.00, '', 1, '2022-03-26 11:53:42', 0, NULL, 0, NULL, 1),
(10493, 8265, '3', 'trich bishop college', '', 'bcom', '2019', 68.00, '', 85, '2022-03-26 12:30:51', 0, NULL, 0, NULL, 1),
(10494, 8267, '3', 'Bharathiyar University', '', 'B.com', '2021', 68.00, '', 1, '2022-03-26 01:10:32', 0, NULL, 0, NULL, 1),
(10495, 8266, '3', 'Bharathiyar', '', 'B.com', '2021', 48.00, '', 1, '2022-03-26 01:32:25', 0, NULL, 0, NULL, 1),
(10496, 8268, '3', 'Periyar University', '', 'B.sc(computer science)', '2019', 68.00, '', 1, '2022-03-26 04:25:00', 1, '2022-03-26 04:25:54', 0, NULL, 1),
(10497, 8269, '4', 'Bharathiyar university coimbatore', '', 'Statistics', '2021', 81.00, '', 1, '2022-03-26 05:38:48', 1, '2022-03-26 05:42:05', 0, NULL, 1),
(10498, 8269, '3', 'Bharathiyar university coimbatore', '', 'Statistics', '2019', 62.00, '', 1, '2022-03-26 05:40:01', 0, NULL, 0, NULL, 1),
(10499, 8269, '2', 'State board', '', '', '2016', 67.00, '', 1, '2022-03-26 05:40:41', 1, '2022-03-26 05:41:37', 0, NULL, 1),
(10500, 8269, '1', 'State board', '', '', '2014', 88.00, '', 1, '2022-03-26 05:41:09', 0, NULL, 0, NULL, 1),
(10501, 8273, '4', 'Bharathidasan University', '', 'MA English', '2017', 65.00, '', 1, '2022-03-28 12:12:09', 0, NULL, 0, NULL, 1),
(10502, 8274, '2', 'State board ', '', '', '2016', 70.00, '', 1, '2022-03-28 12:26:13', 0, NULL, 0, NULL, 1),
(10503, 8274, '3', 'Madras University ', '', 'BCA', '2018', 61.00, '', 1, '2022-03-28 12:27:13', 0, NULL, 0, NULL, 1),
(10504, 8277, '5', 'Al ameen polytechnic college', '', 'DEEE', '2019', 90.00, '', 1, '2022-03-28 01:44:09', 0, NULL, 0, NULL, 1),
(10505, 8275, '3', 'St Peter\'s University', '', 'B.E', '2019', 78.00, '', 1, '2022-03-28 01:44:25', 0, NULL, 0, NULL, 1),
(10506, 8276, '3', 'Bharathiyar university ', '', 'B.A.English Literature ', '2021', 74.00, '', 1, '2022-03-28 02:35:23', 0, NULL, 0, NULL, 1),
(10507, 8278, '5', 'Al ameen polytechnic college', '', 'DEEE', '2019', 90.00, '', 1, '2022-03-28 02:53:20', 0, NULL, 0, NULL, 1),
(10508, 8283, '3', 'Anna University', '', 'B.E', '2021', 6.23, '', 1, '2022-03-28 09:11:56', 0, NULL, 0, NULL, 1),
(10509, 8285, '3', 'Pondicherry University ', '', 'B.com', '2019', 60.00, '', 1, '2022-03-29 09:59:47', 0, NULL, 0, NULL, 1),
(10510, 8281, '3', 'Madras University', '', 'B.com (General)', '2020', 64.00, '', 1, '2022-03-29 10:19:22', 0, NULL, 0, NULL, 1),
(10511, 8282, '3', 'Anna University', '', 'B.E', '2021', 64.00, '', 1, '2022-03-29 10:22:35', 0, NULL, 0, NULL, 1),
(10512, 8284, '1', 'State board ', '', '', '2007', 52.00, '', 1, '2022-03-29 11:54:48', 0, NULL, 0, NULL, 1),
(10513, 8287, '3', 'Madras', '', 'Bachelor commerce', '2019', 58.65, '', 1, '2022-03-29 12:13:26', 0, NULL, 0, NULL, 1),
(10514, 8288, '3', 'Madras University', '', 'B.sc math\'s', '2020', 80.00, '', 1, '2022-03-29 12:20:04', 0, NULL, 0, NULL, 1),
(10515, 8289, '2', 'State board', '', '', '2021', 74.00, '', 1, '2022-03-29 03:19:05', 0, NULL, 0, NULL, 1),
(10516, 8290, '2', 'tn', '', '', '2016', 59.00, '', 7, '2022-03-29 04:17:14', 0, NULL, 0, NULL, 1),
(10517, 8290, '4', 'madras', '', 'ma', '2021', 65.00, '', 7, '2022-03-29 04:17:47', 0, NULL, 0, NULL, 1),
(10518, 8293, '2', 'state board', '', '', '2018', 66.00, '', 1, '2022-03-29 08:13:17', 0, NULL, 0, NULL, 1),
(10519, 8294, '3', 'bharathidasan university', '', 'bsc', '2021', 78.00, '', 1, '2022-03-29 08:17:48', 0, NULL, 0, NULL, 1),
(10520, 8296, '1', 'Tamil Nadu', '', '', '2015', 80.00, '', 1, '2022-03-29 11:06:05', 0, NULL, 0, NULL, 1),
(10521, 8296, '2', 'Tamil Nadu State', '', '', '2017', 47.00, '', 1, '2022-03-29 11:09:24', 0, NULL, 0, NULL, 1),
(10522, 8296, '3', 'Madurai Kamarajar ', '', 'B.Sc.IT', '2020', 60.00, '', 1, '2022-03-29 11:09:55', 0, NULL, 0, NULL, 1),
(10523, 8297, '5', 'Anna University', '', 'Diploma in mechanical', '2018', 72.00, '', 1, '2022-03-30 01:35:43', 0, NULL, 0, NULL, 1),
(10524, 8298, '2', 'State board', '', '', '2015', 70.00, '', 1, '2022-03-30 10:02:49', 0, NULL, 0, NULL, 1),
(10525, 8298, '3', 'Dg vaishnava', '', 'B com', '2018', 60.00, '', 1, '2022-03-30 10:03:24', 0, NULL, 0, NULL, 1),
(10526, 8295, '3', 'Dharmapuram adhinam arts and science college', '', 'Bca', '2020', 85.00, '', 1, '2022-03-30 11:32:13', 0, NULL, 0, NULL, 1),
(10527, 8299, '3', 'Vels University', '', 'B.com cA', '2021', 90.00, '', 1, '2022-03-30 11:51:40', 0, NULL, 0, NULL, 1),
(10528, 8300, '3', 'Anna university ', '', '', '2022', 8.00, '', 1, '2022-03-30 11:53:53', 0, NULL, 0, NULL, 1),
(10529, 8300, '1', 'State board ', '', '', '2016', 6.80, '', 1, '2022-03-30 11:54:38', 0, NULL, 0, NULL, 1),
(10530, 8300, '2', 'State board ', '', '', '2018', 6.20, '', 1, '2022-03-30 11:55:06', 0, NULL, 0, NULL, 1),
(10531, 8302, '3', 'Anna University', '', 'B.E', '2022', 80.00, '', 1, '2022-03-30 12:16:15', 0, NULL, 0, NULL, 1),
(10532, 8302, '1', 'State Board of Tamilnadu', '', '', '2016', 83.00, '', 1, '2022-03-30 12:16:49', 0, NULL, 0, NULL, 1),
(10533, 8302, '2', 'State Board of tamilnadu', '', '', '2018', 59.00, '', 1, '2022-03-30 12:17:22', 0, NULL, 0, NULL, 1),
(10534, 8303, '2', 'tamil nadu state board', '', '', '2017', 52.40, '', 1, '2022-03-30 12:58:12', 0, NULL, 0, NULL, 1),
(10535, 8303, '1', 'tamil nadu state board', '', '', '2015', 72.60, '', 1, '2022-03-30 12:58:59', 0, NULL, 0, NULL, 1),
(10536, 8303, '3', 'anna university', '', 'b.tech', '2021', 70.00, '', 1, '2022-03-30 01:00:29', 0, NULL, 0, NULL, 1),
(10537, 8304, '3', 'Bharathiyar University', '', 'B.Sc Information Technology', '2020', 66.00, '', 1, '2022-03-30 05:41:59', 0, NULL, 0, NULL, 1),
(10538, 8301, '3', 'University ', '', 'BE', '2022', 7.90, '', 1, '2022-03-30 06:01:46', 0, NULL, 0, NULL, 1),
(10539, 8305, '3', 'SNS College of Technology', '', 'Electronic and communication engineering', '2018', 53.00, '', 1, '2022-03-30 06:10:51', 0, NULL, 0, NULL, 1),
(10540, 8306, '3', 'anna university', '', 'b.tech.', '2011', 68.00, '', 1, '2022-03-30 06:27:25', 0, NULL, 0, NULL, 1),
(10541, 8309, '3', 'Annauniversity', '', 'Bachelor of engineering ', '2020', 69.00, '', 1, '2022-03-31 07:12:37', 0, NULL, 0, NULL, 1),
(10542, 8309, '2', 'tn', '', '', '2014', 84.00, '', 7, '2022-03-31 10:59:55', 0, NULL, 0, NULL, 1),
(10543, 8310, '3', 'Madras University', '', 'B a economics', '2013', 60.00, '', 1, '2022-03-31 11:15:32', 0, NULL, 0, NULL, 1),
(10544, 8311, '3', 'Hindustan college of arts and science', '', 'BSC computer science', '2013', 70.00, '', 1, '2022-03-31 11:32:10', 0, NULL, 0, NULL, 1),
(10545, 8312, '3', 'Anna university', '', 'B.com (Marketing)', '2018', 64.00, '', 1, '2022-03-31 11:32:41', 0, NULL, 0, NULL, 1),
(10546, 8313, '3', 'Bharathidasan university', '', 'B.sc.visual communication', '2022', 71.00, '', 1, '2022-03-31 12:06:34', 0, NULL, 0, NULL, 1),
(10547, 8292, '3', 'Anna University ', '', 'BE (EEE) ', '2019', 65.00, '', 1, '2022-03-31 12:18:17', 0, NULL, 0, NULL, 1),
(10548, 8292, '2', 'State Board ', '', '', '2015', 75.00, '', 1, '2022-03-31 12:18:46', 0, NULL, 0, NULL, 1),
(10549, 8292, '1', 'State Board ', '', '', '2013', 85.00, '', 1, '2022-03-31 12:19:06', 0, NULL, 0, NULL, 1),
(10550, 8318, '3', 'Madras University', '', 'BBA', '2015', 60.00, '', 1, '2022-03-31 12:32:42', 0, NULL, 0, NULL, 1),
(10551, 8319, '3', 'Madras University', '', 'B.com General', '2017', 75.00, '', 1, '2022-03-31 12:41:42', 0, NULL, 0, NULL, 1),
(10552, 8314, '3', 'Autonomous', '', 'BA Tamil', '2021', 78.00, '', 1, '2022-03-31 12:44:54', 0, NULL, 0, NULL, 1),
(10553, 8308, '3', 'Madras University', '', 'b.com', '2020', 65.00, '', 1, '2022-03-31 12:52:19', 0, NULL, 0, NULL, 1),
(10554, 8316, '3', 'Madras University', '', 'BA', '2018', 65.00, '', 1, '2022-03-31 01:08:28', 0, NULL, 0, NULL, 1),
(10555, 8320, '3', 'Periyar University', '', 'B.Com', '2022', 81.00, '', 1, '2022-03-31 01:27:22', 0, NULL, 0, NULL, 1),
(10556, 8321, '4', 'Periyar university ', '', 'Mcom ', '2021', 75.00, '', 1, '2022-03-31 03:49:29', 0, NULL, 0, NULL, 1),
(10557, 8324, '3', 'Madras University', '', 'B.com', '2014', 60.00, '', 1, '2022-03-31 07:38:47', 0, NULL, 0, NULL, 1),
(10558, 8326, '4', 'University of Madras', '', 'B.Com', '2017', 80.00, '', 1, '2022-04-01 08:11:03', 0, NULL, 0, NULL, 1),
(10559, 8326, '2', 'CBSE', '', '', '2014', 60.00, '', 1, '2022-04-01 08:11:43', 0, NULL, 0, NULL, 1),
(10560, 8326, '1', 'CBSE', '', '', '2012', 70.00, '', 1, '2022-04-01 08:12:04', 0, NULL, 0, NULL, 1),
(10561, 8326, '3', 'University of Madras', '', 'B.com', '2017', 80.00, '', 1, '2022-04-01 08:13:08', 0, NULL, 0, NULL, 1),
(10562, 8327, '1', 'State board', '', '', '2017', 60.00, '', 1, '2022-04-01 10:21:23', 0, NULL, 0, NULL, 1),
(10563, 8327, '5', 'Polytechnic ', '', 'Dme', '2020', 70.00, '', 1, '2022-04-01 10:21:53', 0, NULL, 0, NULL, 1),
(10564, 8329, '3', 'Anna university', '', 'B.Tech', '2020', 68.00, '', 1, '2022-04-01 10:46:06', 0, NULL, 0, NULL, 1),
(10565, 8329, '2', 'State board', '', '', '2016', 59.00, '', 1, '2022-04-01 10:46:38', 0, NULL, 0, NULL, 1),
(10566, 8329, '1', 'State board', '', '', '2014', 86.00, '', 1, '2022-04-01 10:47:00', 0, NULL, 0, NULL, 1),
(10567, 8328, '3', 'University of madras', '', 'B. Com', '2021', 68.00, '', 1, '2022-04-01 11:07:14', 0, NULL, 0, NULL, 1),
(10568, 8332, '3', 'New college', '', 'BCA', '2019', 55.00, '', 1, '2022-04-01 11:55:14', 0, NULL, 0, NULL, 1),
(10569, 8331, '3', 'paavai engneering college', '', 'BE', '2019', 67.00, '', 85, '2022-04-01 12:04:21', 0, NULL, 0, NULL, 1),
(10570, 8333, '4', 'Bharaththasan ', '', 'MCA', '2015', 70.00, '', 1, '2022-04-01 12:05:25', 0, NULL, 0, NULL, 1),
(10571, 8337, '3', 'madras university ', '', 'bsc computer science', '2017', 72.00, '', 1, '2022-04-01 01:18:59', 0, NULL, 0, NULL, 1),
(10572, 8336, '3', 'Madras university', '', 'Bsc computer science ', '2017', 70.00, '', 1, '2022-04-01 01:22:37', 0, NULL, 0, NULL, 1),
(10573, 8339, '3', 'Periyar University', '', 'Bsc Degree', '2020', 64.29, '', 1, '2022-04-01 05:07:51', 0, NULL, 0, NULL, 1),
(10574, 8330, '1', 'State board ', '', '', '2014', 75.00, '', 1, '2022-04-04 08:50:51', 0, NULL, 0, NULL, 1),
(10575, 8330, '2', 'State board', '', '', '2016', 89.00, '', 1, '2022-04-04 08:51:12', 0, NULL, 0, NULL, 1),
(10576, 8330, '3', 'Periyar University ', '', 'B.Com (A&F)', '2019', 65.00, '', 1, '2022-04-04 08:52:19', 0, NULL, 0, NULL, 1),
(10577, 8330, '4', 'Periyar University ', '', 'M.Com', '2021', 78.00, '', 1, '2022-04-04 08:52:39', 0, NULL, 0, NULL, 1),
(10578, 8342, '4', 'anna University ', '', 'mba', '2021', 7.80, '', 1, '2022-04-04 11:02:47', 0, NULL, 0, NULL, 1),
(10579, 8340, '3', 'Periyar University ', '', 'Bsc computer ', '2017', 71.00, '', 1, '2022-04-04 11:20:36', 0, NULL, 0, NULL, 1),
(10580, 8244, '4', 'Siri PSG Arts and science college for women', '', 'MSC maths', '2020', 80.00, '', 85, '2022-04-04 11:53:48', 0, NULL, 0, NULL, 1),
(10581, 8344, '3', 'Madras University ', '', 'B.com ', '2019', 60.00, '', 1, '2022-04-04 12:45:44', 0, NULL, 0, NULL, 1),
(10582, 8345, '3', 'Madurai kamarajar University', '', 'BBA', '2019', 66.00, '', 1, '2022-04-04 12:54:22', 0, NULL, 0, NULL, 1),
(10583, 8346, '3', 'Madras University', '', 'Bba', '2020', 82.70, '', 1, '2022-04-04 03:00:02', 0, NULL, 0, NULL, 1),
(10584, 8347, '4', 'Bharathiyar University', '', 'M.A English Literature', '2019', 71.00, '', 1, '2022-04-04 03:54:55', 0, NULL, 0, NULL, 1),
(10585, 8348, '3', 'Madras University', '', 'B.com', '2021', 75.00, '', 1, '2022-04-05 11:54:10', 0, NULL, 0, NULL, 1),
(10586, 8349, '1', 'Ug', '', '', '2021', 78.00, '', 1, '2022-04-05 12:14:58', 0, NULL, 0, NULL, 1),
(10587, 8350, '2', 'M.C.T.M', '', '', '2012', 70.00, '', 1, '2022-04-05 12:51:11', 0, NULL, 0, NULL, 1),
(10588, 8351, '3', ' Periyar University', '', 'BA.tamil', '2018', 60.00, '', 1, '2022-04-05 01:34:41', 0, NULL, 0, NULL, 1),
(10589, 8353, '3', 'Bharathiar university', '', 'BA english literature', '2019', 63.00, '', 1, '2022-04-05 01:46:01', 0, NULL, 0, NULL, 1),
(10590, 8352, '3', 'Thiruvalluvar', '', 'BCom', '2020', 67.45, '', 60, '2022-04-05 02:23:10', 0, NULL, 0, NULL, 1),
(10591, 8354, '3', 'Madras University', '', 'B.Com', '2011', 77.00, '', 1, '2022-04-05 03:43:32', 0, NULL, 0, NULL, 1),
(10592, 8355, '3', 'Sathyabama University ', '', 'BTech IT', '2020', 70.00, '', 1, '2022-04-05 04:24:24', 0, NULL, 0, NULL, 1),
(10593, 8356, '3', 'Periyar University Salem ', '', 'B. Com CA ', '2021', 81.00, '', 1, '2022-04-06 09:59:17', 0, NULL, 0, NULL, 1),
(10594, 8360, '5', 'Center government', '', 'Graphic designer', '2021', 60.00, '', 1, '2022-04-06 11:16:08', 0, NULL, 0, NULL, 1),
(10595, 8360, '2', 'State board of chhattisgarh', '', '', '2021', 70.00, '', 1, '2022-04-06 11:17:51', 1, '2022-04-06 11:18:49', 0, NULL, 1),
(10596, 8360, '1', 'State Board Of Tamilnadu', '', '', '2015', 59.00, '', 1, '2022-04-06 11:19:36', 0, NULL, 0, NULL, 1),
(10597, 8361, '5', 'Barathithason university', '', 'DCE', '2020', 84.00, '', 1, '2022-04-06 11:28:52', 0, NULL, 0, NULL, 1),
(10598, 8362, '5', 'Adhiparasakthi polytechnic college', '', 'DEEE', '2019', 76.00, '', 1, '2022-04-06 11:46:42', 0, NULL, 0, NULL, 1),
(10599, 8363, '5', 'DOTE', '', 'Diploma in computer science ', '2021', 82.00, '', 1, '2022-04-06 01:57:13', 0, NULL, 0, NULL, 1),
(10600, 8366, '3', 'University ', '', 'B. Com CA ', '2021', 81.00, '', 1, '2022-04-06 04:27:56', 0, NULL, 0, NULL, 1),
(10601, 8365, '3', 'University ', '', 'BA. tamil', '2021', 60.00, '', 1, '2022-04-06 04:44:15', 0, NULL, 0, NULL, 1),
(10602, 8368, '3', 'Madras University ', '', 'B.com(general)', '2020', 85.00, '', 1, '2022-04-06 07:22:53', 0, NULL, 0, NULL, 1),
(10603, 8368, '1', 'State Board ', '', '', '2015', 75.00, '', 1, '2022-04-06 07:24:47', 0, NULL, 0, NULL, 1),
(10604, 8368, '2', 'State Board ', '', '', '2017', 70.00, '', 1, '2022-04-06 07:25:19', 0, NULL, 0, NULL, 1),
(10605, 8370, '3', 'anna university', '', 'bachelor of engineering', '2019', 73.80, '', 1, '2022-04-07 10:23:06', 0, NULL, 0, NULL, 1),
(10606, 8370, '2', 'state board', '', '', '2015', 89.30, '', 1, '2022-04-07 10:24:10', 0, NULL, 0, NULL, 1),
(10607, 8371, '5', 'Chandy polytechnic college', '', 'Diploma in EEE', '2014', 93.50, '', 1, '2022-04-07 11:01:17', 0, NULL, 0, NULL, 1),
(10608, 8372, '4', 'Bharathidasan university', '', 'Mcom', '2019', 65.00, '', 1, '2022-04-07 12:15:52', 0, NULL, 0, NULL, 1),
(10609, 8375, '3', 'Madras University ', '', 'Bcom general ', '2021', 92.00, '', 1, '2022-04-07 12:40:39', 0, NULL, 0, NULL, 1),
(10610, 8377, '3', 'Periyar University', '', 'BCA', '2021', 62.00, '', 1, '2022-04-07 12:56:21', 0, NULL, 0, NULL, 1),
(10611, 8376, '3', 'Bharadhidhasan University', '', 'BA English', '2021', 70.00, '', 1, '2022-04-07 01:15:14', 0, NULL, 0, NULL, 1),
(10612, 8382, '3', 'Patrician college of arts and science', '', 'Bca', '2020', 63.00, '', 1, '2022-04-07 10:58:41', 0, NULL, 0, NULL, 1),
(10613, 8382, '2', 'Hindu hr sec school', '', '', '2017', 60.00, '', 1, '2022-04-07 10:59:06', 0, NULL, 0, NULL, 1),
(10614, 8384, '1', 'Madras University', '', '', '2021', 61.00, '', 1, '2022-04-08 11:19:11', 0, NULL, 0, NULL, 1),
(10615, 8384, '2', 'Madras University', '', '', '2016', 53.00, '', 1, '2022-04-08 11:22:26', 0, NULL, 0, NULL, 1),
(10616, 8384, '3', 'Madras University', '', 'BBA', '2021', 61.00, '', 1, '2022-04-08 11:23:21', 0, NULL, 0, NULL, 1),
(10617, 8373, '3', 'Sastra deemed university', '', 'BCA', '2019', 60.00, '', 85, '2022-04-08 11:33:39', 0, NULL, 0, NULL, 1),
(10618, 8387, '3', 'D.g.vaishnava college', '', 'B.com ', '2016', 60.00, '', 1, '2022-04-08 12:04:52', 0, NULL, 0, NULL, 1),
(10619, 8388, '1', 'P.s high school ', '', '', '2004', 50.00, '', 1, '2022-04-08 12:51:05', 0, NULL, 0, NULL, 1),
(10620, 8390, '4', 'Anna University ', '', 'MBA', '2018', 7.20, '', 1, '2022-04-08 01:59:08', 0, NULL, 0, NULL, 1),
(10621, 8391, '4', 'Anna University', '', 'Mca', '2019', 75.00, '', 1, '2022-04-08 02:33:38', 0, NULL, 0, NULL, 1),
(10622, 8392, '4', 'Bharathiar University ', '', 'M Sc', '2006', 63.00, '', 1, '2022-04-08 02:42:59', 0, NULL, 0, NULL, 1),
(10623, 8392, '3', 'Bharathidasan University ', '', 'B Sc', '2003', 59.00, '', 1, '2022-04-08 02:43:45', 0, NULL, 0, NULL, 1),
(10624, 8394, '4', 'Bharathiyar university', '', 'Mba', '2021', 80.40, '', 1, '2022-04-08 02:51:43', 0, NULL, 0, NULL, 1),
(10625, 8397, '3', 'Kamaraj University', '', 'B.Com(CA)', '2018', 77.00, '', 1, '2022-04-08 03:29:30', 1, '2022-04-08 03:30:53', 0, NULL, 1),
(10626, 8397, '1', 'State Board', '', '', '2013', 80.00, '', 1, '2022-04-08 03:30:23', 0, NULL, 0, NULL, 1),
(10627, 8397, '2', 'State Board', '', '', '2015', 81.00, '', 1, '2022-04-08 03:30:40', 0, NULL, 0, NULL, 1),
(10628, 8386, '3', 'Guru Nanak College', '', 'B.com hons', '2021', 82.00, '', 1, '2022-04-08 04:22:56', 0, NULL, 0, NULL, 1),
(10629, 8398, '3', 'University of madras ', '', 'B. Com', '2013', 61.00, '', 1, '2022-04-08 04:28:21', 0, NULL, 0, NULL, 1),
(10630, 8398, '2', 'State board', '', '', '2010', 76.00, '', 1, '2022-04-08 04:29:00', 0, NULL, 0, NULL, 1),
(10631, 8398, '1', 'State board', '', '', '2008', 75.00, '', 1, '2022-04-08 04:29:40', 0, NULL, 0, NULL, 1),
(10632, 8401, '3', 'University', '', 'B.com CS', '2021', 70.00, '', 1, '2022-04-08 07:04:27', 0, NULL, 0, NULL, 1),
(10633, 8402, '3', 'bharthiyar university', '', 'b.com commerce', '2022', 59.00, '', 1, '2022-04-08 07:21:05', 0, NULL, 0, NULL, 1),
(10634, 8395, '1', 'Barath Matriculation school', '', '', '2013', 80.00, '', 1, '2022-04-08 11:41:57', 0, NULL, 0, NULL, 1),
(10635, 8395, '2', 'Valluvr gurukulam Higher Secondary school', '', '', '2015', 70.00, '', 1, '2022-04-08 11:42:37', 0, NULL, 0, NULL, 1),
(10636, 8406, '3', 'Periyar University', '', 'BBA', '2019', 85.00, '', 1, '2022-04-09 10:07:42', 0, NULL, 0, NULL, 1),
(10637, 8407, '2', 'St.Antony’s Hr Sec School', '', '', '2017', 63.00, '', 1, '2022-04-09 10:41:26', 0, NULL, 0, NULL, 1),
(10638, 8407, '3', 'AVC THOLAYAVATTAM, K.K.DIST', '', 'bba', '2020', 60.00, '', 1, '2022-04-09 10:41:52', 0, NULL, 0, NULL, 1),
(10639, 8389, '3', 'Quaid e millath', '', 'B.com', '2019', 75.00, '', 1, '2022-04-09 10:43:53', 0, NULL, 0, NULL, 1),
(10640, 8286, '2', 'St.Antony’s Hr Sec School', '', '', '2017', 69.00, '', 1, '2022-04-09 10:45:49', 0, NULL, 0, NULL, 1),
(10641, 8286, '3', 'AVC THOLAYAVATTAM, K.K.DIST', '', 'BSC Computer science', '2020', 60.00, '', 1, '2022-04-09 10:46:15', 0, NULL, 0, NULL, 1),
(10642, 8408, '3', 'Anna university', '', 'B.E(ece)', '2021', 7.50, '', 1, '2022-04-09 11:18:27', 0, NULL, 0, NULL, 1),
(10643, 8409, '3', 'Madras University', '', 'B.A Economics', '2021', 70.00, '', 1, '2022-04-09 11:33:14', 0, NULL, 0, NULL, 1),
(10644, 8410, '4', 'Anna university', '', 'MBA', '2017', 75.00, '', 1, '2022-04-09 01:22:53', 0, NULL, 0, NULL, 1),
(10645, 8410, '3', 'Valliammal college for women', '', 'Bcom', '2015', 78.00, '', 1, '2022-04-09 01:23:34', 0, NULL, 0, NULL, 1),
(10646, 8411, '4', 'Anna university ', '', 'MBA ', '2021', 84.50, '', 1, '2022-04-09 04:39:26', 0, NULL, 0, NULL, 1),
(10647, 8413, '4', 'James Cook University ', '', 'MBA', '2021', 70.00, '', 1, '2022-04-09 05:32:21', 0, NULL, 0, NULL, 1),
(10648, 8415, '3', 'Periyar University ', '', 'Bachelor of Computer Science ', '2019', 69.00, '', 1, '2022-04-11 09:55:56', 0, NULL, 0, NULL, 1),
(10649, 8416, '1', 'chs', '', '', '2011', 88.40, '', 1, '2022-04-11 11:02:06', 1, '2022-04-11 11:02:36', 0, NULL, 0),
(10650, 8416, '3', 'magna college of engineering', '', 'b.emech', '2017', 60.00, '', 1, '2022-04-11 11:03:16', 0, NULL, 0, NULL, 1),
(10651, 8416, '2', 'chss', '', '', '2013', 75.00, '', 1, '2022-04-11 11:04:50', 0, NULL, 0, NULL, 1),
(10652, 8416, '1', 'chs', '', '', '2011', 88.40, '', 1, '2022-04-11 11:05:17', 0, NULL, 0, NULL, 1),
(10653, 8417, '3', 'Bharathidasan University', '', 'BCA', '2020', 70.00, '', 1, '2022-04-11 11:16:26', 0, NULL, 0, NULL, 1),
(10654, 8417, '2', 'State board', '', '', '2017', 80.00, '', 1, '2022-04-11 11:17:05', 0, NULL, 0, NULL, 1),
(10655, 8417, '1', 'State board', '', '', '2015', 76.00, '', 1, '2022-04-11 11:17:20', 0, NULL, 0, NULL, 1),
(10656, 8403, '3', 'Bharathiyar University ', '', 'B.com corporate secretary ship ', '2019', 62.00, '', 1, '2022-04-11 12:04:01', 0, NULL, 0, NULL, 1),
(10657, 8420, '5', 'DOTE', '', 'DIPLOMA COMPUTER', '2019', 68.00, '', 1, '2022-04-11 12:06:48', 0, NULL, 0, NULL, 1),
(10658, 8422, '3', 'Government College of Engineering Salem, Affiliated to Anna University.', '', 'B.E. civil', '2020', 74.30, '', 1, '2022-04-11 12:07:59', 0, NULL, 0, NULL, 1),
(10659, 8418, '3', 'Anna university', '', 'BE', '2014', 67.00, '', 1, '2022-04-11 12:29:10', 0, NULL, 0, NULL, 1),
(10660, 8404, '3', 'Bharathiyar university coimbatore', '', 'B. Com. Corporate Secretaryship', '2019', 62.00, '', 1, '2022-04-11 12:29:11', 0, NULL, 0, NULL, 1),
(10661, 8421, '4', 'Gandhigram rural Institute', '', 'Msc chemistry', '2021', 72.00, '', 1, '2022-04-11 12:30:57', 0, NULL, 0, NULL, 1),
(10662, 8424, '3', 'Madras University', '', 'B.sc mathematics', '2015', 55.00, '', 1, '2022-04-11 05:03:01', 0, NULL, 0, NULL, 1),
(10663, 8425, '3', 'Madurai kamaraj university', '', 'Computer Science', '2021', 85.00, '', 1, '2022-04-11 06:05:05', 0, NULL, 0, NULL, 1),
(10664, 8427, '4', 'Anna university ', '', 'MBA', '2021', 71.00, '', 1, '2022-04-11 07:39:32', 0, NULL, 0, NULL, 1),
(10665, 8428, '3', 'Manonmaniam sundaranar university', '', 'BA english', '2022', 60.00, '', 1, '2022-04-11 08:09:00', 0, NULL, 0, NULL, 1),
(10666, 8428, '2', 'Cambridge  matric  hr  sec  School,agasthiyarpatti', '', '', '2018', 63.25, '', 1, '2022-04-11 08:12:15', 0, NULL, 0, NULL, 1),
(10667, 8428, '1', 'Cambridge matric hr sec school,agasthiyarpatti', '', '', '2016', 84.80, '', 1, '2022-04-11 08:12:47', 0, NULL, 0, NULL, 1),
(10668, 8431, '4', 'mba', '', 'mba', '2020', 67.00, '', 1, '2022-04-12 10:26:45', 0, NULL, 0, NULL, 1),
(10669, 8430, '4', 'mba', '', 'mba', '2018', 67.00, '', 87, '2022-04-12 10:59:27', 0, NULL, 0, NULL, 1),
(10670, 8430, '3', 'btech', '', 'btceh', '2015', 75.00, '', 87, '2022-04-12 11:01:48', 0, NULL, 0, NULL, 1),
(10671, 8432, '2', 'tmaes socity', '', '', '2009', 87.00, '', 1, '2022-04-12 11:21:50', 0, NULL, 0, NULL, 1),
(10672, 8437, '4', 'DR.MGR University', '', 'MBA', '2022', 84.00, '', 1, '2022-04-12 11:25:33', 0, NULL, 0, NULL, 1),
(10673, 8436, '3', 'Bharathidhasan University trichy', '', 'BCA', '2018', 57.00, '', 1, '2022-04-12 11:32:58', 0, NULL, 0, NULL, 1),
(10674, 8434, '4', 'mba', '', 'mba', '2021', 70.00, '', 87, '2022-04-12 11:48:55', 0, NULL, 0, NULL, 1),
(10675, 8438, '4', 'Madras University', '', '', '2009', 84.00, '', 1, '2022-04-12 11:54:31', 0, NULL, 0, NULL, 1),
(10676, 8429, '2', 'St.thomes high school', '', '', '2021', 45.33, '', 1, '2022-04-12 12:24:30', 0, NULL, 0, NULL, 1),
(10677, 8429, '1', 'St.thomes high school', '', '', '2021', 40.22, '', 1, '2022-04-12 12:25:35', 0, NULL, 0, NULL, 1),
(10678, 8405, '3', 'University', '', 'B.com CA', '2021', 81.00, '', 1, '2022-04-12 01:09:25', 0, NULL, 0, NULL, 1),
(10679, 8443, '3', 'University of Madras', '', 'B.Sc(Mathematics)', '2019', 70.70, '', 1, '2022-04-12 01:16:49', 0, NULL, 0, NULL, 1),
(10680, 8380, '3', 'University', '', 'B.com CA', '2021', 65.00, '', 1, '2022-04-12 01:22:16', 0, NULL, 0, NULL, 1),
(10681, 8442, '3', 'Guru nanak College ', '', 'B.sc. computer science ', '2018', 75.00, '', 1, '2022-04-12 01:42:24', 0, NULL, 0, NULL, 1),
(10682, 8439, '3', 'ag arts', '', '', '2022', 60.00, '', 60, '2022-04-12 03:24:35', 0, NULL, 0, NULL, 1),
(10683, 8440, '3', 'ag', '', '', '2022', 60.00, '', 60, '2022-04-12 03:25:28', 0, NULL, 0, NULL, 1),
(10684, 8444, '4', 'anna university', '', 'mba', '2012', 8.10, '', 1, '2022-04-12 07:34:12', 0, NULL, 0, NULL, 1),
(10685, 8444, '3', 'bharathiar univeristy', '', 'bca', '2010', 76.00, '', 1, '2022-04-12 07:35:03', 0, NULL, 0, NULL, 1),
(10686, 8447, '2', 'Velammal Matric. Hr. Sec. School ', '', '', '2015', 70.00, '', 1, '2022-04-13 09:53:56', 0, NULL, 0, NULL, 1),
(10687, 8448, '3', 'MKU university ', '', 'B. Sc computer science ', '2018', 65.20, '', 1, '2022-04-13 11:14:36', 0, NULL, 0, NULL, 1),
(10688, 8449, '3', 'SNR SONS COLLEGE COIMBATORE ', '', 'BCA', '2017', 70.00, '', 1, '2022-04-13 11:34:28', 0, NULL, 0, NULL, 1),
(10689, 8450, '3', 'Manglore university', '', 'B.com', '2021', 57.00, '', 1, '2022-04-13 11:58:48', 0, NULL, 0, NULL, 1),
(10690, 8451, '3', 'Nadar Saraswathi college of engineering and technology Theni', '', 'BE( CSE)', '2021', 78.50, '', 1, '2022-04-13 01:25:40', 0, NULL, 0, NULL, 1),
(10691, 8452, '3', 'Bharathidasan university', '', 'B.com', '2017', 70.00, '', 1, '2022-04-13 01:57:45', 0, NULL, 0, NULL, 1),
(10692, 8453, '5', 'Directrate of technical education', '', 'Diplomo in electrical and electronics', '2014', 72.00, '', 1, '2022-04-13 02:31:56', 0, NULL, 0, NULL, 1),
(10693, 8455, '3', 'Vysya College ', '', 'B.com CA', '2017', 68.00, '', 1, '2022-04-13 03:58:53', 0, NULL, 0, NULL, 1),
(10694, 8456, '3', 'Bharathiyar University ', '', 'B Com', '2019', 70.00, '', 1, '2022-04-13 04:01:44', 0, NULL, 0, NULL, 1),
(10695, 8456, '1', 'State board ', '', '', '2014', 61.80, '', 1, '2022-04-13 04:02:30', 0, NULL, 0, NULL, 1),
(10696, 8456, '2', 'State board ', '', '', '2016', 71.91, '', 1, '2022-04-13 04:02:56', 0, NULL, 0, NULL, 1),
(10697, 8457, '1', 'State board ', '', '', '2012', 88.00, '', 1, '2022-04-13 04:15:42', 0, NULL, 0, NULL, 1),
(10698, 8457, '2', 'State board ', '', '', '2014', 84.00, '', 1, '2022-04-13 04:15:58', 0, NULL, 0, NULL, 1),
(10699, 8457, '3', 'Anna university ', '', 'B.tech IT', '2018', 70.05, '', 1, '2022-04-13 04:16:23', 0, NULL, 0, NULL, 1),
(10700, 8457, '4', 'Pondicherry University ', '', 'MBA ', '2021', 79.27, '', 1, '2022-04-13 04:16:45', 0, NULL, 0, NULL, 1),
(10701, 8454, '4', 'Periyar manniammai deemed University, Annai vailankanni arts and science college', '', 'MBA', '2021', 89.00, '', 1, '2022-04-13 08:27:57', 0, NULL, 0, NULL, 1),
(10702, 8461, '3', 'Anna university ', '', 'BE', '2019', 65.00, '', 1, '2022-04-15 10:23:35', 0, NULL, 0, NULL, 1),
(10703, 8458, '4', 'Madras university', '', 'MBA', '2020', 70.00, '', 1, '2022-04-15 11:38:07', 0, NULL, 0, NULL, 1),
(10704, 8462, '2', 'Board', '', 'B.com', '2012', 79.00, '', 1, '2022-04-15 03:10:35', 1, '2022-04-15 03:11:20', 0, NULL, 0),
(10705, 8462, '1', 'Board', '', '', '2010', 58.00, '', 1, '2022-04-15 03:11:41', 0, NULL, 0, NULL, 1),
(10706, 8462, '2', 'Board', '', '', '2012', 78.00, '', 1, '2022-04-15 03:11:58', 0, NULL, 0, NULL, 1),
(10707, 8463, '3', 'Anna University', '', 'B.E Aeronautical Engineeringngineering', '2021', 68.00, '', 1, '2022-04-16 11:00:42', 0, NULL, 0, NULL, 1),
(10708, 8464, '4', 'Bharathidasan University', '', 'mBA', '2021', 81.30, '', 1, '2022-04-16 11:33:48', 0, NULL, 0, NULL, 1),
(10709, 8464, '3', 'Bharathidasan University', '', 'B.Sc., STATISTICS', '2019', 60.90, '', 1, '2022-04-16 11:34:38', 0, NULL, 0, NULL, 1),
(10710, 8466, '2', '12th pass', '', '', '2022', 73.41, '', 1, '2022-04-16 01:14:40', 0, NULL, 0, NULL, 1),
(10711, 8468, '4', 'University', '', 'M SC Physics', '2022', 80.00, '', 1, '2022-04-16 03:25:25', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10712, 8469, '3', 'Fatima College Madurai ', '', 'BSC (Information Technology)', '2020', 79.00, '', 1, '2022-04-17 02:10:42', 0, NULL, 0, NULL, 1),
(10713, 8472, '3', 'Bharathidasan University', '', 'B. Com', '2020', 70.00, '', 1, '2022-04-17 08:18:18', 0, NULL, 0, NULL, 1),
(10714, 8472, '1', 'State board', '', '', '2015', 56.00, '', 1, '2022-04-17 08:20:03', 0, NULL, 0, NULL, 1),
(10715, 8472, '2', 'State board', '', '', '2017', 55.00, '', 1, '2022-04-17 08:20:40', 0, NULL, 0, NULL, 1),
(10716, 8473, '3', 'Madras University ', '', 'BSc', '2020', 60.00, '', 1, '2022-04-18 10:57:33', 0, NULL, 0, NULL, 1),
(10717, 8474, '3', 'Anna University', '', 'B.tech', '2021', 75.00, '', 1, '2022-04-18 11:03:02', 0, NULL, 0, NULL, 1),
(10718, 8465, '3', 'Madras university', '', 'Bcom', '2017', 57.00, '', 1, '2022-04-18 11:14:15', 0, NULL, 0, NULL, 1),
(10719, 8475, '3', 'University', '', 'BSC Maths', '2021', 85.00, '', 1, '2022-04-18 11:17:27', 0, NULL, 0, NULL, 1),
(10720, 8476, '3', 'Anna University', '', 'BE CSE', '2019', 6.90, '', 1, '2022-04-18 12:11:29', 0, NULL, 0, NULL, 1),
(10721, 8477, '3', 'Anna university ', '', 'B.E', '2015', 62.00, '', 1, '2022-04-18 12:18:15', 0, NULL, 0, NULL, 1),
(10722, 8477, '2', 'State board ', '', '', '2011', 54.00, '', 1, '2022-04-18 12:19:16', 0, NULL, 0, NULL, 1),
(10723, 8478, '2', 'state board', '', '', '2012', 45.00, '', 1, '2022-04-18 12:32:59', 0, NULL, 0, NULL, 1),
(10724, 8478, '3', 'university of madras', '', 'bcs chemistry', '2016', 65.00, '', 1, '2022-04-18 12:33:24', 0, NULL, 0, NULL, 1),
(10725, 8480, '3', 'Bharathidasan University', '', 'B.a. English', '2020', 56.00, '', 1, '2022-04-18 02:54:24', 0, NULL, 0, NULL, 1),
(10726, 8479, '3', 'Bharathidasan University', '', 'B.A ,English', '2020', 57.00, '', 1, '2022-04-18 03:07:15', 0, NULL, 0, NULL, 1),
(10727, 8481, '3', 'University', '', 'B.com(ISM)', '2018', 75.00, '', 1, '2022-04-18 04:34:53', 0, NULL, 0, NULL, 1),
(10728, 8482, '2', 'state board', '', '', '2014', 55.00, '', 1, '2022-04-18 04:42:44', 0, NULL, 0, NULL, 1),
(10729, 8482, '3', 'university of madras', '', 'bba', '2018', 60.00, '', 1, '2022-04-18 04:43:19', 0, NULL, 0, NULL, 1),
(10730, 8484, '3', 'Periyar University', '', 'B.Sc., Textile and fashion designing', '2021', 75.00, '', 1, '2022-04-18 06:57:53', 0, NULL, 0, NULL, 1),
(10731, 8485, '3', 'Loyola college Chennai', '', 'Bsc maths', '2020', 61.00, '', 1, '2022-04-19 10:02:47', 0, NULL, 0, NULL, 1),
(10732, 8486, '3', 'Periyar', '', 'BA English ', '2019', 69.00, '', 1, '2022-04-19 11:03:56', 1, '2022-04-19 11:04:25', 0, NULL, 0),
(10733, 8486, '1', 'Matriculation ', '', '', '2014', 88.00, '', 1, '2022-04-19 11:05:03', 0, NULL, 0, NULL, 1),
(10734, 8486, '2', 'State', '', '', '2016', 74.00, '', 1, '2022-04-19 11:05:23', 0, NULL, 0, NULL, 1),
(10735, 8486, '3', 'Periyar', '', 'BA English ', '2019', 69.00, '', 1, '2022-04-19 11:05:52', 0, NULL, 0, NULL, 1),
(10736, 8487, '3', 'Banglore university sheshathi puram compotent', '', 'B.com', '2017', 70.00, '', 1, '2022-04-19 12:59:31', 0, NULL, 0, NULL, 1),
(10737, 8488, '4', 'University of Madras ', '', 'MBA', '2022', 70.00, '', 1, '2022-04-19 03:26:32', 0, NULL, 0, NULL, 1),
(10738, 8488, '3', 'Anna University ', '', 'B.E', '2017', 71.00, '', 1, '2022-04-19 03:27:06', 0, NULL, 0, NULL, 1),
(10739, 8488, '2', 'State Board', '', '', '2013', 84.50, '', 1, '2022-04-19 03:27:32', 0, NULL, 0, NULL, 1),
(10740, 8488, '1', 'State Board', '', '', '2011', 94.30, '', 1, '2022-04-19 03:27:55', 0, NULL, 0, NULL, 1),
(10741, 8490, '4', 'Bharathiyar University', '', 'Msc', '2018', 82.40, '', 1, '2022-04-19 07:20:33', 0, NULL, 0, NULL, 1),
(10742, 8490, '4', 'Bharathiyar University', '', 'Msc', '2018', 82.40, '', 1, '2022-04-19 07:21:06', 0, NULL, 0, NULL, 1),
(10743, 8491, '5', 'TamilNadu open university', '', '', '2019', 70.00, '', 1, '2022-04-19 09:03:09', 0, NULL, 0, NULL, 1),
(10744, 8492, '3', 'Anna university', '', 'BE - Medical Electronics Engineering', '2018', 70.00, '', 1, '2022-04-20 11:37:13', 0, NULL, 0, NULL, 1),
(10745, 8492, '2', 'Sengunthar High school', '', 'BE', '2014', 79.00, '', 1, '2022-04-20 11:40:04', 1, '2022-04-20 11:41:38', 0, NULL, 0),
(10746, 8492, '1', 'Maragatham Annamalai High School', '', '', '2012', 89.00, '', 1, '2022-04-20 11:40:36', 0, NULL, 0, NULL, 1),
(10747, 8492, '2', 'Sengunthar higher secondary school', '', '', '2014', 79.00, '', 1, '2022-04-20 11:42:19', 0, NULL, 0, NULL, 1),
(10748, 8493, '4', 'Guru nanak college', '', 'MSW HR', '2021', 67.00, '', 1, '2022-04-20 12:07:57', 0, NULL, 0, NULL, 1),
(10749, 8495, '1', 'state board', '', '', '2015', 80.00, '', 1, '2022-04-20 12:16:42', 0, NULL, 0, NULL, 1),
(10750, 8495, '5', 'tndote', '', 'dme', '2020', 70.00, '', 1, '2022-04-20 12:17:10', 0, NULL, 0, NULL, 1),
(10751, 8494, '3', 'Madras University', '', 'B.com (cS)', '2020', 60.00, '', 1, '2022-04-20 12:42:45', 0, NULL, 0, NULL, 1),
(10752, 8497, '4', 'Saveetha Engineering college', '', 'MBA (HR and Finance)', '2021', 79.30, '', 1, '2022-04-20 12:53:48', 1, '2022-04-20 12:54:33', 0, NULL, 1),
(10753, 8497, '3', 'Jaya college of arts and science', '', 'Bsc.Computer Science', '2019', 71.00, '', 1, '2022-04-20 12:54:18', 0, NULL, 0, NULL, 1),
(10754, 8498, '1', 'Govt boys Hersecondry school (Husing unit) ', '', '', '2015', 60.00, '', 1, '2022-04-20 01:13:11', 0, NULL, 0, NULL, 1),
(10755, 8498, '2', 'Govt boys Hersecondry school (Husing unit) ', '', '', '2017', 48.00, '', 1, '2022-04-20 01:13:49', 0, NULL, 0, NULL, 1),
(10756, 8496, '3', 'bharathiyar university', '', '?	BBA', '2021', 80.00, '', 1, '2022-04-20 01:24:25', 0, NULL, 0, NULL, 1),
(10757, 8499, '1', 'Anna university ', '', '', '2021', 77.00, '', 1, '2022-04-20 02:03:47', 0, NULL, 0, NULL, 1),
(10758, 8503, '3', 'Bharathiyar University', '', 'B.com', '2020', 70.00, '', 1, '2022-04-20 09:55:25', 0, NULL, 0, NULL, 1),
(10759, 8501, '3', 'Pariyar University', '', 'Bsc computer science', '2021', 70.00, '', 1, '2022-04-21 07:20:12', 0, NULL, 0, NULL, 1),
(10760, 8483, '1', 'grace mat higher sec school erode  ', '', '', '2015', 60.00, '', 1, '2022-04-21 11:14:18', 0, NULL, 0, NULL, 1),
(10761, 8483, '2', 'ssvn hiigher sec school erode ', '', '', '2017', 50.00, '', 1, '2022-04-21 11:15:09', 0, NULL, 0, NULL, 1),
(10762, 8483, '3', 'bharathidasan college of arts and science erode ', '', 'ba eng literature ', '2021', 65.00, '', 1, '2022-04-21 11:16:37', 0, NULL, 0, NULL, 1),
(10763, 8505, '3', 'Madras university', '', 'B. Sc visual communication', '2021', 85.00, '', 1, '2022-04-21 02:56:36', 0, NULL, 0, NULL, 1),
(10764, 8505, '2', 'Government girls higher secondary school', '', '', '2018', 70.00, '', 1, '2022-04-21 02:57:15', 0, NULL, 0, NULL, 1),
(10765, 8505, '1', 'St. Mary\'s girls higher secondary school', '', '', '2016', 70.00, '', 1, '2022-04-21 02:57:43', 0, NULL, 0, NULL, 1),
(10766, 8231, '3', 'bannari amman institute of engineering', '', 'mba', '2020', 75.00, '', 87, '2022-04-21 04:46:34', 0, NULL, 0, NULL, 1),
(10767, 8507, '3', 'Bharathiyar University', '', 'BCA', '2020', 68.00, '', 1, '2022-04-21 07:04:16', 1, '2022-04-21 07:04:32', 0, NULL, 0),
(10768, 8507, '1', 'State board', '', '', '2015', 75.00, '', 1, '2022-04-21 07:05:20', 0, NULL, 0, NULL, 1),
(10769, 8507, '2', '75', '', '', '2017', 75.00, '', 1, '2022-04-21 07:05:34', 0, NULL, 0, NULL, 1),
(10770, 8507, '3', 'Bharathiyar (vellalar college for women)', '', 'BCA', '2020', 70.00, '', 1, '2022-04-21 07:06:10', 0, NULL, 0, NULL, 1),
(10771, 8508, '1', 'St Joseph higher secondary school ', '', '', '2014', 43.40, '', 1, '2022-04-21 07:28:13', 0, NULL, 0, NULL, 1),
(10772, 8509, '3', 'Anna university ', '', 'B.e', '2014', 70.00, '', 1, '2022-04-21 07:52:51', 0, NULL, 0, NULL, 1),
(10773, 8511, '3', 'Periyar University', '', 'B.com(ca)', '2018', 61.00, '', 1, '2022-04-22 09:52:10', 0, NULL, 0, NULL, 1),
(10774, 8504, '3', 'Mennakshi college for women', '', 'Bsc plant biology and plant biotechnology', '2022', 60.00, '', 1, '2022-04-22 11:02:11', 0, NULL, 0, NULL, 1),
(10775, 8512, '3', 'Dr bb hedge college kundapura ', '', 'B com', '2021', 51.00, '', 1, '2022-04-22 11:40:19', 0, NULL, 0, NULL, 1),
(10776, 8514, '3', 'Crescent institute of science and technology ', '', 'B.TECH.CSE ', '2020', 60.00, '', 1, '2022-04-22 11:43:18', 0, NULL, 0, NULL, 1),
(10777, 8513, '3', 'BHARATHITHASAN university ', '', 'B.SC Botany ', '2019', 75.00, '', 1, '2022-04-22 11:44:20', 0, NULL, 0, NULL, 1),
(10778, 8516, '3', 'A.V.V.M. Puspam college', '', 'B.com', '2017', 80.00, '', 1, '2022-04-22 12:23:50', 0, NULL, 0, NULL, 1),
(10779, 8517, '3', 'Vels university', '', 'B.Com', '2019', 60.00, '', 1, '2022-04-22 01:43:07', 0, NULL, 0, NULL, 1),
(10780, 8517, '4', 'University', '', 'B.Com', '2019', 60.00, '', 1, '2022-04-22 01:43:56', 0, NULL, 0, NULL, 1),
(10781, 8515, '3', 'bharathiyar university', '', 'b.com', '2019', 80.00, '', 1, '2022-04-22 02:41:22', 0, NULL, 0, NULL, 1),
(10782, 8515, '4', 'bharathiyar university', '', 'm.com', '2021', 90.80, '', 1, '2022-04-22 02:42:00', 0, NULL, 0, NULL, 1),
(10783, 8519, '3', 'Thiruvalluvar University ', '', 'BA.ENGLISH ', '2017', 55.90, '', 1, '2022-04-22 05:08:06', 1, '2022-04-22 05:08:20', 0, NULL, 1),
(10784, 8521, '1', 'State Board', '', '', '2012', 66.50, '', 1, '2022-04-23 10:37:03', 0, NULL, 0, NULL, 1),
(10785, 8521, '2', 'State Board', '', '', '2014', 62.30, '', 1, '2022-04-23 10:37:45', 0, NULL, 0, NULL, 1),
(10786, 8521, '3', 'Bharathiyar University ', '', 'B.Com(csca)', '2017', 52.50, '', 1, '2022-04-23 10:38:14', 0, NULL, 0, NULL, 1),
(10787, 8522, '5', 'DOTE', '', 'Diplamo in civil', '2017', 72.00, '', 1, '2022-04-23 10:43:03', 0, NULL, 0, NULL, 1),
(10788, 8518, '3', 'be', '', 'be', '2021', 93.00, '', 87, '2022-04-23 11:39:56', 0, NULL, 0, NULL, 1),
(10789, 8518, '2', 'CBSE', '', 'bE', '2017', 71.00, '', 1, '2022-04-23 11:45:30', 0, NULL, 0, NULL, 1),
(10790, 8525, '2', 'state board', '', '', '2015', 66.00, '', 1, '2022-04-23 12:46:52', 0, NULL, 0, NULL, 1),
(10791, 8525, '4', 'university of madras', '', 'msc', '2020', 80.00, '', 1, '2022-04-23 12:47:19', 0, NULL, 0, NULL, 1),
(10792, 8523, '2', 'State Board', '', '', '2019', 0.00, '', 60, '2022-04-23 02:47:49', 0, NULL, 0, NULL, 1),
(10793, 8527, '3', 'Bharathidasan University', '', 'B.com', '2021', 71.00, '', 1, '2022-04-23 02:56:16', 0, NULL, 0, NULL, 1),
(10794, 8528, '3', 'Dr. Grd college of science Coimbatore', '', 'B. Com (computer Application)', '2018', 58.00, '', 1, '2022-04-23 04:40:49', 0, NULL, 0, NULL, 1),
(10795, 8528, '4', 'PSNA COLLAGE OF ENGINEERING AND TECHNOLOGY DINDIGUL', '', 'MBA', '2020', 70.80, '', 1, '2022-04-23 04:42:36', 0, NULL, 0, NULL, 1),
(10796, 8529, '3', 'Srivenkateswara university tirupati', '', 'B. Com computer application', '2021', 87.00, '', 1, '2022-04-23 04:59:07', 0, NULL, 0, NULL, 1),
(10797, 8530, '3', 'Queen Marry\'s college', '', 'B. sc chemistry', '2020', 62.10, '', 1, '2022-04-23 06:33:13', 0, NULL, 0, NULL, 1),
(10798, 8531, '3', 'Madras university', '', 'B.com computer application', '2021', 75.00, '', 1, '2022-04-23 07:12:28', 0, NULL, 0, NULL, 1),
(10799, 8526, '3', 'University of Madras ', '', 'B.COM (GENERAL)', '2020', 65.00, '', 1, '2022-04-23 07:19:34', 0, NULL, 0, NULL, 1),
(10800, 8533, '3', 'Madras University ', '', 'B.com', '2019', 60.00, '', 1, '2022-04-23 07:21:39', 0, NULL, 0, NULL, 1),
(10801, 8534, '1', 'Ashram Mtr HSC erode', '', '', '2015', 80.00, '', 1, '2022-04-25 10:50:57', 1, '2022-04-25 10:55:27', 0, NULL, 0),
(10802, 8534, '1', 'Nandha', '', '', '2019', 80.00, '', 1, '2022-04-25 10:52:19', 1, '2022-04-25 10:54:16', 0, NULL, 0),
(10803, 8534, '5', 'Anna malai University', '', '', '2019', 82.00, '', 1, '2022-04-25 10:53:19', 1, '2022-04-25 10:54:22', 0, NULL, 0),
(10804, 8534, '2', 'Nandha matriculation higher secondary school', '', '', '2017', 80.00, '', 1, '2022-04-25 10:56:16', 0, NULL, 0, NULL, 1),
(10805, 8535, '3', 'Bharathiyar University ', '', 'B. Sc computer science ', '2022', 6.20, '', 1, '2022-04-25 11:01:08', 0, NULL, 0, NULL, 1),
(10806, 8535, '1', 'Sree saravana niketan matric hr. Sec school', '', '', '2015', 90.00, '', 1, '2022-04-25 11:02:20', 0, NULL, 0, NULL, 1),
(10807, 8535, '2', 'Sree saravana niketan matric higher sec school', '', '', '2017', 70.00, '', 1, '2022-04-25 11:03:05', 0, NULL, 0, NULL, 1),
(10808, 8536, '4', 'Anna university', '', 'MCA', '2014', 78.00, '', 1, '2022-04-25 11:31:22', 0, NULL, 0, NULL, 1),
(10809, 8532, '3', 'bcom', '', 'Bcom', '2017', 65.00, '', 87, '2022-04-25 12:26:41', 0, NULL, 0, NULL, 1),
(10810, 8537, '3', 'Bsc microbiolog', '', 'Bsc', '2020', 70.00, '', 87, '2022-04-25 01:00:25', 0, NULL, 0, NULL, 1),
(10811, 8538, '3', 'Sri Venkateswara College of engineering and technology', '', 'Be(ece)', '2021', 7.78, '', 1, '2022-04-25 01:31:53', 0, NULL, 0, NULL, 1),
(10812, 8539, '3', 'Anna University', '', 'BE', '2015', 67.00, '', 1, '2022-04-25 02:32:31', 0, NULL, 0, NULL, 1),
(10813, 8539, '5', 'Directorate of technical Education', '', 'Diploma in Computer Science', '2012', 89.00, '', 1, '2022-04-25 02:33:39', 0, NULL, 0, NULL, 1),
(10814, 8539, '2', 'CBSE', '', '', '2006', 65.00, '', 1, '2022-04-25 02:31:22', 0, NULL, 0, NULL, 1),
(10815, 8541, '3', 'Vinayaga missionary university ', '', 'B. Tech (mechanical) ', '2021', 60.00, '', 1, '2022-04-25 03:29:42', 0, NULL, 0, NULL, 1),
(10816, 8502, '3', 'Madras University', '', 'BBA', '2020', 60.00, '', 1, '2022-04-25 03:35:33', 0, NULL, 0, NULL, 1),
(10817, 8542, '1', 'State Board', '', '', '2011', 91.00, '', 1, '2022-04-25 04:22:29', 0, NULL, 0, NULL, 1),
(10818, 8542, '2', 'State Board', '', '', '2013', 80.00, '', 1, '2022-04-25 04:23:17', 0, NULL, 0, NULL, 1),
(10819, 8542, '3', 'Kings College of Engineering', '', 'B.E', '2017', 74.00, '', 1, '2022-04-25 04:24:06', 0, NULL, 0, NULL, 1),
(10820, 8543, '4', 'SRM University', '', 'M.com', '2021', 75.00, '', 1, '2022-04-25 07:02:02', 0, NULL, 0, NULL, 1),
(10821, 8544, '3', 'Others', '', 'Bsc maths', '2019', 81.00, '', 1, '2022-04-25 08:25:00', 0, NULL, 0, NULL, 1),
(10822, 8544, '1', 'State board', '', '', '2014', 92.00, '', 1, '2022-04-25 08:26:02', 0, NULL, 0, NULL, 1),
(10823, 8544, '2', 'State board', '', '', '2016', 86.00, '', 1, '2022-04-25 08:26:25', 0, NULL, 0, NULL, 1),
(10824, 8545, '2', 'state board', '', '', '2014', 55.00, '', 1, '2022-04-26 10:13:56', 0, NULL, 0, NULL, 1),
(10825, 8545, '3', 'bharathiyar university', '', 'bba aviation', '2019', 70.00, '', 1, '2022-04-26 10:14:22', 0, NULL, 0, NULL, 1),
(10826, 8546, '2', 'state board', '', '', '2015', 45.00, '', 1, '2022-04-26 10:26:27', 0, NULL, 0, NULL, 1),
(10827, 8546, '3', 'university of madras', '', 'ba', '2018', 57.00, '', 1, '2022-04-26 10:27:07', 0, NULL, 0, NULL, 1),
(10828, 8547, '3', 'Bharthiyar University ', '', 'B.Sc IT', '2019', 64.00, '', 1, '2022-04-26 10:45:40', 0, NULL, 0, NULL, 1),
(10829, 8550, '4', 'University of Madras', '', 'M. sc', '2018', 61.60, '', 1, '2022-04-26 11:53:01', 0, NULL, 0, NULL, 1),
(10830, 8549, '3', 'Bharathithasan trichy', '', 'Bca', '2018', 61.00, '', 1, '2022-04-26 11:53:07', 0, NULL, 0, NULL, 1),
(10831, 8548, '3', 'Madras university ', '', 'BCA', '2018', 65.00, '', 1, '2022-04-26 11:53:34', 0, NULL, 0, NULL, 1),
(10832, 8550, '3', 'Anna University', '', 'B.Tech', '2016', 69.80, '', 1, '2022-04-26 11:54:17', 0, NULL, 0, NULL, 1),
(10833, 8335, '3', 'Madras', '', 'BBa', '2012', 58.00, '', 1, '2022-04-26 01:17:25', 0, NULL, 0, NULL, 1),
(10834, 8552, '3', 'Bharatiar University', '', 'BSC Computer science', '2021', 70.00, '', 1, '2022-04-26 04:17:08', 0, NULL, 0, NULL, 1),
(10835, 8553, '1', 'Bangalore', '', '', '2012', 55.36, '', 1, '2022-04-26 04:54:27', 0, NULL, 0, NULL, 1),
(10836, 8555, '5', 'Netture technical training foundation', '', '', '2018', 78.00, '', 1, '2022-04-26 05:46:35', 0, NULL, 0, NULL, 1),
(10837, 8557, '1', 'Karnataka secondary education examination board', '', '', '2013', 74.08, '', 1, '2022-04-26 07:26:08', 0, NULL, 0, NULL, 1),
(10838, 8557, '2', 'Pre University course', '', '', '2015', 64.50, '', 1, '2022-04-26 07:26:51', 0, NULL, 0, NULL, 1),
(10839, 8557, '3', 'Visvesvaraya technological University', '', 'Bachelor of engineering', '2020', 6.00, '', 1, '2022-04-26 07:27:46', 0, NULL, 0, NULL, 1),
(10840, 8558, '4', 'Madras university', '', 'B. Com', '2020', 80.00, '', 1, '2022-04-27 10:15:09', 0, NULL, 0, NULL, 1),
(10841, 8558, '3', 'Madras university', '', 'B. Com', '2020', 80.00, '', 1, '2022-04-27 10:15:48', 0, NULL, 0, NULL, 1),
(10842, 8560, '4', 'KSR college of Engineering', '', 'MBA', '2020', 78.00, '', 1, '2022-04-27 12:01:46', 0, NULL, 0, NULL, 1),
(10843, 8560, '3', 'Dhanalakshmi Srinivasan college of arts and science for women', '', 'Bsc physics', '2018', 70.00, '', 1, '2022-04-27 12:02:25', 0, NULL, 0, NULL, 1),
(10844, 8561, '3', 'Prist univer', '', 'B. Tech', '2016', 7.86, '', 1, '2022-04-27 12:02:51', 0, NULL, 0, NULL, 1),
(10845, 8560, '2', 'Roever school of excellence', '', '', '2015', 70.00, '', 1, '2022-04-27 12:02:59', 0, NULL, 0, NULL, 1),
(10846, 8562, '4', 'JNTU', '', 'MBA', '2021', 89.00, '', 1, '2022-04-27 12:03:00', 0, NULL, 0, NULL, 1),
(10847, 8562, '3', 'SVU', '', 'Bsc Statistics ', '2018', 90.00, '', 1, '2022-04-27 12:03:37', 0, NULL, 0, NULL, 1),
(10848, 8563, '3', 'Anna University ', '', 'BE', '2020', 60.00, '', 1, '2022-04-27 12:10:18', 0, NULL, 0, NULL, 1),
(10849, 8564, '3', 'Annamalai university', '', 'Bcom', '2006', 52.00, '', 1, '2022-04-27 12:17:44', 0, NULL, 0, NULL, 1),
(10850, 8565, '3', 'Bharathiyar university ', '', 'Ug', '2020', 64.00, '', 1, '2022-04-27 12:21:21', 0, NULL, 0, NULL, 1),
(10851, 8566, '3', 'Madras University ', '', '', '2021', 77.00, '', 1, '2022-04-27 12:40:38', 0, NULL, 0, NULL, 1),
(10852, 8567, '3', 'Madras University ', '', 'Bca', '2021', 77.00, '', 1, '2022-04-27 12:47:17', 0, NULL, 0, NULL, 1),
(10853, 8570, '4', 'Anna university ', '', 'MBA ', '2020', 78.00, '', 1, '2022-04-27 01:05:39', 0, NULL, 0, NULL, 1),
(10854, 8570, '3', 'Madras university ', '', 'Bsc(cs)', '2018', 75.00, '', 1, '2022-04-27 01:06:36', 0, NULL, 0, NULL, 1),
(10855, 8570, '2', 'State board ', '', '', '2015', 65.00, '', 1, '2022-04-27 01:07:08', 0, NULL, 0, NULL, 1),
(10856, 8570, '1', 'State board ', '', '', '2013', 70.00, '', 1, '2022-04-27 01:07:32', 0, NULL, 0, NULL, 1),
(10857, 8569, '3', 'Bharathidasan University ', '', 'B.com', '2021', 70.86, '', 1, '2022-04-27 01:08:03', 1, '2022-04-27 01:11:07', 0, NULL, 1),
(10858, 8569, '1', 'State board ', '', '', '2016', 56.00, '', 1, '2022-04-27 01:12:29', 0, NULL, 0, NULL, 1),
(10859, 8569, '2', 'State bord', '', '', '2018', 64.00, '', 1, '2022-04-27 01:13:08', 0, NULL, 0, NULL, 1),
(10860, 8571, '3', 'PERIYAR UNIVERSITY SALEM ', '', 'B.SC COMPUTER SCIENCE ', '2021', 80.00, '', 1, '2022-04-27 01:13:38', 0, NULL, 0, NULL, 1),
(10861, 8568, '3', 'University', '', 'BSC computer science', '2020', 78.00, '', 1, '2022-04-27 01:14:54', 0, NULL, 0, NULL, 1),
(10862, 8572, '3', 'Bharathidasan university', '', 'Bba', '2021', 70.00, '', 1, '2022-04-27 01:31:52', 0, NULL, 0, NULL, 1),
(10863, 8556, '3', 'Anna University', '', 'B.tech', '2012', 69.40, '', 1, '2022-04-27 03:12:21', 0, NULL, 0, NULL, 1),
(10864, 8574, '2', 'state board', '', '', '2016', 66.00, '', 1, '2022-04-27 06:19:32', 0, NULL, 0, NULL, 1),
(10865, 8574, '3', 'madras university', '', 'bsc cs', '2017', 76.00, '', 1, '2022-04-27 06:20:17', 0, NULL, 0, NULL, 1),
(10866, 8575, '2', 'state board', '', '', '2009', 54.00, '', 1, '2022-04-27 06:29:17', 0, NULL, 0, NULL, 1),
(10867, 8575, '3', 'namakkal university', '', 'be electrical', '2013', 76.00, '', 1, '2022-04-27 06:29:53', 0, NULL, 0, NULL, 1),
(10868, 8576, '2', 'state board', '', '', '2017', 66.00, '', 1, '2022-04-27 06:40:35', 0, NULL, 0, NULL, 1),
(10869, 8576, '3', 'madras university', '', 'bsc viscom', '2020', 78.00, '', 1, '2022-04-27 06:41:42', 0, NULL, 0, NULL, 1),
(10870, 8577, '2', 'state board', '', '', '2016', 54.00, '', 1, '2022-04-27 06:46:36', 0, NULL, 0, NULL, 1),
(10871, 8577, '3', 'anna university', '', 'bsc cs', '2019', 60.00, '', 1, '2022-04-27 06:47:16', 0, NULL, 0, NULL, 1),
(10872, 8582, '2', 'state board', '', '', '2016', 59.00, '', 1, '2022-04-28 08:20:20', 0, NULL, 0, NULL, 1),
(10873, 8582, '3', 'madras university', '', 'ba english', '2020', 60.00, '', 1, '2022-04-28 08:20:54', 0, NULL, 0, NULL, 1),
(10874, 8583, '2', 'state board', '', '', '2012', 72.00, '', 1, '2022-04-28 08:24:08', 0, NULL, 0, NULL, 1),
(10875, 8583, '3', 'madras university', '', 'ba economics', '2015', 80.00, '', 1, '2022-04-28 08:24:31', 0, NULL, 0, NULL, 1),
(10876, 8584, '2', 'state board', '', '', '2014', 55.00, '', 1, '2022-04-28 08:29:57', 0, NULL, 0, NULL, 1),
(10877, 8584, '3', 'madras university', '', 'ba history', '2019', 65.00, '', 1, '2022-04-28 08:30:22', 0, NULL, 0, NULL, 1),
(10878, 8578, '3', 'Bharathidasan University', '', 'BBA', '2015', 65.00, '', 1, '2022-04-28 10:29:31', 0, NULL, 0, NULL, 1),
(10879, 8578, '4', 'Bharathidasan University', '', 'MBA', '2019', 65.00, '', 1, '2022-04-28 10:30:45', 0, NULL, 0, NULL, 1),
(10880, 8586, '3', 'Anna University', '', 'BE civil', '2012', 71.80, '', 1, '2022-04-28 11:28:15', 0, NULL, 0, NULL, 1),
(10881, 8587, '2', 'Swamy Vivekananda rural pu college Karnataka', '', '', '2020', 67.00, '', 1, '2022-04-28 12:46:46', 0, NULL, 0, NULL, 1),
(10882, 8587, '1', 'New Bishop cotton English High school Karnataka', '', '', '2018', 68.00, '', 1, '2022-04-28 12:47:30', 0, NULL, 0, NULL, 1),
(10883, 8587, '3', 'Indira Gandhi National open University New Delhi', '', 'BA(honour English)', '2025', 85.00, '', 1, '2022-04-28 12:50:06', 0, NULL, 0, NULL, 1),
(10884, 8588, '1', 'Mangalore University ', '', '', '2013', 47.00, '', 1, '2022-04-28 01:26:51', 0, NULL, 0, NULL, 1),
(10885, 8588, '4', 'Isbm', '', 'Bcom', '2022', 67.00, '', 1, '2022-04-28 01:27:52', 0, NULL, 0, NULL, 1),
(10886, 8588, '3', 'Isbm', '', 'Bcom', '2022', 67.00, '', 1, '2022-04-28 01:28:35', 0, NULL, 0, NULL, 1),
(10887, 8588, '2', 'Mangalore University ', '', '', '2013', 47.00, '', 1, '2022-04-28 01:29:08', 0, NULL, 0, NULL, 1),
(10888, 1733, '4', 'Anna University', '', 'ME', '2021', 77.00, '', 1, '2022-04-28 02:02:09', 0, NULL, 0, NULL, 1),
(10889, 8589, '3', 'Periyar university', '', 'Bsc. Biotechnology', '2020', 77.99, '', 1, '2022-04-28 03:12:59', 0, NULL, 0, NULL, 1),
(10890, 8590, '4', 'Madras university', '', '', '2021', 78.00, '', 1, '2022-04-28 03:45:26', 0, NULL, 0, NULL, 1),
(10891, 8593, '3', 'Stanley medical college ', '', 'OT Technician(Diploma)', '2020', 75.00, '', 1, '2022-04-29 10:34:50', 0, NULL, 0, NULL, 1),
(10892, 8595, '2', 'state board', '', '', '2017', 70.00, '', 1, '2022-04-29 11:40:49', 0, NULL, 0, NULL, 1),
(10893, 8595, '3', 'madras university', '', 'bcom', '2020', 65.00, '', 1, '2022-04-29 11:41:16', 0, NULL, 0, NULL, 1),
(10894, 8594, '4', 'Periyar university', '', 'Pg', '2013', 78.00, '', 1, '2022-04-29 11:45:34', 0, NULL, 0, NULL, 1),
(10895, 8594, '4', 'Periyar University', '', 'Mba', '2013', 79.00, '', 1, '2022-04-29 11:47:12', 0, NULL, 0, NULL, 1),
(10896, 8596, '3', 'anna university', '', 'be civil', '2016', 72.00, '', 1, '2022-04-29 12:53:02', 0, NULL, 0, NULL, 1),
(10897, 8597, '3', 'Patrician college of arts and science ', '', 'B.Com', '2021', 70.30, '', 1, '2022-04-29 01:27:25', 1, '2022-04-29 01:29:06', 0, NULL, 1),
(10898, 8598, '4', 'Bharathidasan University', '', 'Msc', '2021', 88.00, '', 1, '2022-04-29 03:05:12', 0, NULL, 0, NULL, 1),
(10899, 8598, '4', 'Bharathidasan University', '', 'Msc', '2021', 88.00, '', 1, '2022-04-29 03:05:40', 0, NULL, 0, NULL, 1),
(10900, 8599, '3', 'Madras University', '', 'B.com', '2020', 70.00, '', 1, '2022-04-29 03:28:36', 0, NULL, 0, NULL, 1),
(10901, 8446, '2', 'State board', '', '', '2015', 69.00, '', 1, '2022-04-29 05:20:41', 0, NULL, 0, NULL, 1),
(10902, 8601, '1', 'State board of tamilnadu', '', '', '2006', 72.00, '', 1, '2022-04-29 05:41:38', 0, NULL, 0, NULL, 1),
(10903, 8601, '2', 'State board of tamilnadu', '', '', '2008', 56.00, '', 1, '2022-04-29 05:42:02', 0, NULL, 0, NULL, 1),
(10904, 8601, '3', 'Periyar maniammai University', '', 'B.Tech petrochemical technology', '2012', 76.40, '', 1, '2022-04-29 05:42:44', 0, NULL, 0, NULL, 1),
(10905, 8601, '4', 'BHARATHIDASAN UNIVERSITY', '', 'MBA HR', '2020', 72.40, '', 1, '2022-04-29 05:43:10', 0, NULL, 0, NULL, 1),
(10906, 8603, '4', 'Anna university', '', 'MBA', '2021', 78.00, '', 1, '2022-04-29 05:59:40', 0, NULL, 0, NULL, 1),
(10907, 8602, '4', 'Anna University', '', 'MBA', '2020', 75.00, '', 1, '2022-04-29 07:13:18', 0, NULL, 0, NULL, 1),
(10908, 8602, '3', 'Thiruvallur University', '', 'B,COM', '2018', 55.00, '', 1, '2022-04-29 07:14:29', 0, NULL, 0, NULL, 1),
(10909, 8602, '2', 'State board', '', '', '2013', 75.00, '', 1, '2022-04-29 07:15:55', 0, NULL, 0, NULL, 1),
(10910, 8602, '1', 'Board', '', '', '2013', 65.00, '', 1, '2022-04-29 07:16:30', 0, NULL, 0, NULL, 1),
(10911, 8606, '3', 'Madras University', '', 'Bco', '2018', 75.00, '', 1, '2022-04-30 10:17:05', 0, NULL, 0, NULL, 1),
(10912, 8607, '4', 'Asan memorial college of arts and science, Madras University', '', 'MBA', '2020', 65.00, '', 1, '2022-04-30 10:21:05', 0, NULL, 0, NULL, 1),
(10913, 8608, '4', 'Bharathiyar University ', '', 'Msc cs', '2020', 62.00, '', 1, '2022-04-30 10:47:34', 0, NULL, 0, NULL, 1),
(10914, 8608, '4', 'Bharathiyar University ', '', 'Msc cs ', '2020', 62.00, '', 1, '2022-04-30 10:53:26', 0, NULL, 0, NULL, 1),
(10915, 8610, '3', 'Justice basher ahmed syed clg for women', '', 'BBA', '2021', 66.00, '', 1, '2022-04-30 01:09:03', 0, NULL, 0, NULL, 1),
(10916, 8605, '3', 'bba', '', 'bba', '2020', 73.00, '', 87, '2022-04-30 01:11:39', 0, NULL, 0, NULL, 1),
(10917, 8613, '3', 'madras university', '', 'b.com', '2018', 82.00, '', 1, '2022-04-30 04:50:08', 0, NULL, 0, NULL, 1),
(10918, 8614, '3', 'Madras', '', 'Bsc', '2018', 90.00, '', 1, '2022-04-30 06:59:26', 0, NULL, 0, NULL, 1),
(10919, 7708, '5', 'Prist University ', '', 'Diploma in EEE', '2017', 85.00, '', 1, '2022-05-02 11:15:06', 0, NULL, 0, NULL, 1),
(10920, 7708, '1', 'Board', '', '', '2014', 83.00, '', 1, '2022-05-02 11:15:24', 0, NULL, 0, NULL, 1),
(10921, 8616, '3', 'University', '', 'B.com CA', '2021', 74.00, '', 1, '2022-05-02 11:18:24', 0, NULL, 0, NULL, 1),
(10922, 8617, '3', 'Bharathidhasan university ', '', 'BBA', '2015', 70.00, '', 1, '2022-05-02 11:55:14', 0, NULL, 0, NULL, 1),
(10923, 8617, '4', 'Bharathidhasan ', '', 'MBA(finance)', '2018', 70.00, '', 1, '2022-05-02 11:55:59', 0, NULL, 0, NULL, 1),
(10924, 8615, '4', 'Madras University', '', 'M.com', '2021', 70.00, '', 1, '2022-05-02 01:00:47', 0, NULL, 0, NULL, 1),
(10925, 8619, '3', 'Loyola college ', '', 'BA', '2020', 59.60, '', 1, '2022-05-02 01:38:59', 0, NULL, 0, NULL, 1),
(10926, 8620, '3', 'Modern English  School and College ', '', '2', '2017', 45.00, '', 1, '2022-05-02 02:27:05', 0, NULL, 0, NULL, 1),
(10927, 8624, '3', 'Madras University ', '', 'BBA', '2020', 74.00, '', 1, '2022-05-02 03:15:19', 0, NULL, 0, NULL, 1),
(10928, 8622, '3', 'Madras University ', '', 'BCA', '2020', 70.00, '', 1, '2022-05-02 03:30:42', 0, NULL, 0, NULL, 1),
(10929, 8625, '3', 'VSU', '', 'B.Com ', '2021', 60.00, '', 1, '2022-05-02 04:38:04', 0, NULL, 0, NULL, 1),
(10930, 8626, '3', 'SRM university ', '', 'BCA', '2019', 80.00, '', 1, '2022-05-02 05:00:59', 0, NULL, 0, NULL, 1),
(10931, 8626, '1', 'State board', '', '', '2014', 87.08, '', 1, '2022-05-02 05:01:21', 0, NULL, 0, NULL, 1),
(10932, 8626, '2', 'State board', '', '', '2016', 70.00, '', 1, '2022-05-02 05:01:41', 0, NULL, 0, NULL, 1),
(10933, 8612, '3', 'University ', '', 'Bsc', '2020', 79.00, '', 1, '2022-05-02 08:48:30', 0, NULL, 0, NULL, 1),
(10934, 8629, '3', 'University', '', 'B.com CA', '2021', 76.00, '', 1, '2022-05-03 09:47:36', 0, NULL, 0, NULL, 1),
(10935, 8630, '4', 'Madras University', '', 'Master of Business Administration', '2020', 60.00, '', 1, '2022-05-03 10:01:14', 0, NULL, 0, NULL, 1),
(10936, 8630, '3', 'Jawahar Engineering College', '', 'Mechanical engineering', '2017', 75.00, '', 1, '2022-05-03 10:01:43', 0, NULL, 0, NULL, 1),
(10937, 8630, '2', 'P.c.k.G Govt HR Sec School', '', '', '2013', 70.00, '', 1, '2022-05-03 10:02:31', 0, NULL, 0, NULL, 1),
(10938, 8630, '1', 'P.C.K.G Govt HR Sec School', '', '', '2011', 86.00, '', 1, '2022-05-03 10:03:02', 0, NULL, 0, NULL, 1),
(10939, 8632, '3', 'Anna university ', '', 'BE-computerscience and Engineering ', '2014', 63.00, '', 1, '2022-05-03 10:54:05', 0, NULL, 0, NULL, 1),
(10940, 8631, '4', 'Barathidasan university', '', 'M. Com., ', '2020', 68.00, '', 1, '2022-05-03 10:58:48', 0, NULL, 0, NULL, 1),
(10941, 8633, '3', 'Bharathiyar University Coimbatore', '', 'BCA', '2020', 63.00, '', 1, '2022-05-03 11:15:20', 0, NULL, 0, NULL, 1),
(10942, 8635, '4', 'Madras University', '', 'MBA', '2021', 60.00, '', 1, '2022-05-03 11:19:03', 0, NULL, 0, NULL, 1),
(10943, 8637, '4', 'Anna University ', '', 'MBA ', '2020', 7.40, '', 1, '2022-05-03 11:50:37', 0, NULL, 0, NULL, 1),
(10944, 8636, '3', 'Bharathiar University', '', 'B.com', '2018', 60.00, '', 1, '2022-05-03 12:02:09', 0, NULL, 0, NULL, 1),
(10945, 8636, '2', 'Metric', '', '', '2015', 81.00, '', 1, '2022-05-03 12:04:16', 0, NULL, 0, NULL, 1),
(10946, 8636, '1', 'State board', '', '', '2013', 61.00, '', 1, '2022-05-03 12:04:43', 0, NULL, 0, NULL, 1),
(10947, 8641, '4', 'Pondicherry university', '', 'MBA HRM', '2022', 80.00, '', 1, '2022-05-03 11:37:18', 0, NULL, 0, NULL, 1),
(10948, 8638, '3', 'Thiruvalluvar university', '', 'B.sc chemistry', '2020', 85.00, '', 1, '2022-05-04 10:15:07', 0, NULL, 0, NULL, 1),
(10949, 8642, '3', 'Anna university ', '', 'B.e aeronautical engineering ', '2019', 70.00, '', 1, '2022-05-04 10:35:45', 0, NULL, 0, NULL, 1),
(10950, 8645, '3', 'Anna University ', '', 'B.E', '2017', 6.50, '', 1, '2022-05-04 10:51:32', 0, NULL, 0, NULL, 1),
(10951, 8643, '3', 'Madras university', '', 'Bsc', '2020', 79.00, '', 1, '2022-05-04 11:10:14', 0, NULL, 0, NULL, 1),
(10952, 8647, '3', 'Bharathidasan University', '', 'B.sc', '2017', 75.00, '', 1, '2022-05-04 11:24:15', 0, NULL, 0, NULL, 1),
(10953, 8648, '3', 'Bharathidasan University', '', 'BCA', '2017', 75.00, '', 1, '2022-05-04 11:35:52', 0, NULL, 0, NULL, 1),
(10954, 8649, '3', 'Madras University ', '', 'BA (history)', '2021', 60.00, '', 1, '2022-05-04 11:40:31', 0, NULL, 0, NULL, 1),
(10955, 8650, '4', 'Bharathiyar university', '', 'MBA ', '2016', 68.00, '', 1, '2022-05-04 12:32:25', 0, NULL, 0, NULL, 1),
(10956, 8651, '4', 'Anna university', '', 'BE mechanical engineering', '2019', 60.00, '', 1, '2022-05-04 04:47:03', 0, NULL, 0, NULL, 1),
(10957, 8652, '4', 'Anna university ', '', 'MCA ', '2020', 78.00, '', 1, '2022-05-04 04:50:10', 0, NULL, 0, NULL, 1),
(10958, 8653, '3', 'bharathidasan univercity', '', 'bca', '2017', 74.00, '', 1, '2022-05-05 10:25:09', 1, '2022-05-05 10:25:50', 0, NULL, 1),
(10959, 8654, '1', 'State board ', '', '', '2012', 83.00, '', 1, '2022-05-05 10:27:51', 0, NULL, 0, NULL, 1),
(10960, 8654, '2', 'State board ', '', '', '2014', 79.00, '', 1, '2022-05-05 10:28:13', 0, NULL, 0, NULL, 1),
(10961, 8654, '3', 'Bharathiyar  university', '', 'Bachlor of computer applications', '2017', 65.00, '', 1, '2022-05-05 10:28:55', 0, NULL, 0, NULL, 1),
(10962, 8656, '2', 'ICSE', '', 'Bsc forensic science, chemistry and genetics', '2019', 75.00, '', 1, '2022-05-05 10:42:39', 0, NULL, 0, NULL, 1),
(10963, 8658, '3', 'Bharathiar university', '', 'B. Com', '2021', 60.00, '', 1, '2022-05-05 11:09:47', 0, NULL, 0, NULL, 1),
(10964, 8655, '4', 'Madras University', '', 'Bba', '2020', 75.00, '', 1, '2022-05-05 11:10:15', 0, NULL, 0, NULL, 1),
(10965, 8657, '3', 'dr.ambedkar evening  college indiranagar', '', 'b com', '2005', 45.00, '', 1, '2022-05-05 11:38:13', 0, NULL, 0, NULL, 1),
(10966, 8659, '3', 'The new college', '', 'B.A sociology', '2019', 72.00, '', 1, '2022-05-05 03:10:59', 0, NULL, 0, NULL, 1),
(10967, 8646, '3', 'mba', '', 'mba', '2021', 7.80, '', 87, '2022-05-05 03:11:26', 0, NULL, 0, NULL, 1),
(10968, 8660, '3', 'Anna University', '', 'B.E - Civil Engineering', '2020', 69.00, '', 1, '2022-05-05 04:03:02', 0, NULL, 0, NULL, 1),
(10969, 8661, '3', 'Madras university ', '', 'Bsc computer science ', '2014', 70.00, '', 1, '2022-05-05 05:18:16', 0, NULL, 0, NULL, 1),
(10970, 8662, '1', 'State board', '', '', '2015', 70.00, '', 1, '2022-05-06 09:34:50', 0, NULL, 0, NULL, 1),
(10971, 8662, '2', 'State board', '', '', '2017', 72.00, '', 1, '2022-05-06 09:35:12', 0, NULL, 0, NULL, 1),
(10972, 8662, '3', 'University', '', 'BA Tamil', '2020', 70.00, '', 1, '2022-05-06 09:35:56', 0, NULL, 0, NULL, 1),
(10973, 8664, '4', 'Anna university', '', 'Mba', '2012', 70.00, '', 1, '2022-05-06 09:55:38', 0, NULL, 0, NULL, 1),
(10974, 8663, '3', 'Madras University', '', 'BCA', '2020', 70.00, '', 1, '2022-05-06 10:35:48', 0, NULL, 0, NULL, 1),
(10975, 8665, '1', 'state board', '', '', '2013', 89.00, '', 1, '2022-05-06 10:36:26', 0, NULL, 0, NULL, 1),
(10976, 8665, '2', 'state board', '', '', '2015', 88.00, '', 1, '2022-05-06 10:36:41', 0, NULL, 0, NULL, 1),
(10977, 8665, '3', 'anna university', '', 'be', '2019', 80.00, '', 1, '2022-05-06 10:37:20', 0, NULL, 0, NULL, 1),
(10978, 8668, '3', 'Madras university', '', 'BCom accounting and finance', '2022', 90.00, '', 1, '2022-05-06 10:47:38', 0, NULL, 0, NULL, 1),
(10979, 8670, '1', 'Vimala Matric hr sec school', '', '', '2016', 67.00, '', 1, '2022-05-06 10:48:52', 0, NULL, 0, NULL, 1),
(10980, 8670, '2', 'Vimala matric hr sec school', '', '', '2018', 79.00, '', 1, '2022-05-06 10:49:18', 0, NULL, 0, NULL, 1),
(10981, 8666, '3', 'Madras university', '', 'B.com accounting and finance ', '2022', 80.00, '', 1, '2022-05-06 10:54:30', 0, NULL, 0, NULL, 1),
(10982, 8639, '3', 'Anna University', '', 'Be bce', '2022', 71.00, '', 1, '2022-05-06 11:12:14', 0, NULL, 0, NULL, 1),
(10983, 8671, '3', 'Madras university', '', 'BCA', '2016', 70.00, '', 1, '2022-05-06 11:32:35', 0, NULL, 0, NULL, 1),
(10984, 8669, '3', 'Madras University', '', 'B com', '2022', 72.00, '', 1, '2022-05-06 11:41:35', 0, NULL, 0, NULL, 1),
(10985, 8667, '3', 'Madras University', '', 'B.co', '2022', 71.00, '', 1, '2022-05-06 11:47:14', 0, NULL, 0, NULL, 1),
(10986, 8673, '3', 'Anna University', '', 'BE-ECE', '2017', 7.30, '', 1, '2022-05-06 11:54:43', 0, NULL, 0, NULL, 1),
(10987, 8674, '4', 'Pondicherry University/Loyola college ', '', 'M.B.A', '2021', 65.00, '', 1, '2022-05-06 12:00:00', 1, '2022-05-06 12:01:53', 0, NULL, 1),
(10988, 8674, '4', 'Pondicherry University ', '', 'M.B.A', '2021', 65.00, '', 1, '2022-05-06 12:00:59', 1, '2022-05-06 12:01:10', 0, NULL, 0),
(10989, 8674, '3', 'Anna University ', '', 'B.E', '2018', 69.00, '', 1, '2022-05-06 12:01:33', 0, NULL, 0, NULL, 1),
(10990, 8675, '3', 'Thiruvalluvar university', '', 'BA', '2010', 55.00, '', 1, '2022-05-06 12:36:29', 0, NULL, 0, NULL, 1),
(10991, 8676, '3', 'Siddhar sivannani arts and science collage bommayapalayam', '', 'BA ENGLISH', '2021', 62.00, '', 1, '2022-05-06 12:39:10', 0, NULL, 0, NULL, 1),
(10992, 8678, '3', 'tiruvalluvar', '', 'b.com', '2019', 79.00, '', 1, '2022-05-06 02:12:48', 0, NULL, 0, NULL, 1),
(10993, 8678, '4', 'thiruvalluvar university', '', 'm.com', '2021', 76.00, '', 1, '2022-05-06 02:13:43', 0, NULL, 0, NULL, 1),
(10994, 8677, '5', 'Dhanalakshmi Srinivasan Polytechnic', '', '', '2015', 85.00, '', 1, '2022-05-06 02:40:23', 0, NULL, 0, NULL, 1),
(10995, 8680, '3', 'Anna University ', '', 'BE CIVIL ENGINEERING ', '2016', 6.11, '', 1, '2022-05-07 09:57:03', 0, NULL, 0, NULL, 1),
(10996, 8681, '1', 'CBSE', '', '', '2011', 8.20, '', 1, '2022-05-07 10:48:25', 0, NULL, 0, NULL, 1),
(10997, 8681, '5', 'Srm University ', '', 'Diploma ', '2014', 65.57, '', 1, '2022-05-07 10:48:50', 0, NULL, 0, NULL, 1),
(10998, 8681, '3', 'Mgr University ', '', 'Btech', '2018', 6.70, '', 1, '2022-05-07 10:49:12', 0, NULL, 0, NULL, 1),
(10999, 8684, '1', 'St theresa girls high school', '', '', '2014', 70.00, '', 1, '2022-05-07 01:07:28', 0, NULL, 0, NULL, 1),
(11000, 8684, '2', 'Vani villas old college ', '', '', '2017', 72.00, '', 1, '2022-05-07 01:08:32', 0, NULL, 0, NULL, 1),
(11001, 8684, '3', 'Maharani woman\'s college', '', 'BCom', '2020', 70.00, '', 1, '2022-05-07 01:09:30', 0, NULL, 0, NULL, 1),
(11002, 8688, '4', 'mysore university', '', 'mba', '2017', 65.00, '', 1, '2022-05-07 03:44:58', 0, NULL, 0, NULL, 1),
(11003, 8688, '3', 'bangalore university', '', 'bcom', '2015', 55.00, '', 1, '2022-05-07 03:45:35', 0, NULL, 0, NULL, 1),
(11004, 8688, '2', 'state board', '', '', '2011', 65.00, '', 1, '2022-05-07 03:46:15', 0, NULL, 0, NULL, 1),
(11005, 8688, '1', 'state board', '', '', '2009', 49.00, '', 1, '2022-05-07 03:46:53', 0, NULL, 0, NULL, 1),
(11006, 8686, '1', 'grace matric hr sec school bhavani', '', '', '2016', 73.00, '', 1, '2022-05-07 03:58:14', 0, NULL, 0, NULL, 1),
(11007, 8686, '2', 'grace matric hr sec school bhavani', '', '', '2018', 60.00, '', 1, '2022-05-07 03:59:26', 0, NULL, 0, NULL, 1),
(11008, 8686, '3', 'periyar university', '', 'bsc computer science', '2021', 63.00, '', 1, '2022-05-07 04:00:20', 0, NULL, 0, NULL, 1),
(11009, 8689, '3', 'Manonmaniam Sundaranar University ', '', 'Bachelor of Computer Applications ', '2020', 75.00, '', 1, '2022-05-07 08:43:08', 0, NULL, 0, NULL, 1),
(11010, 8035, '4', 'University of Madras', '', 'MBA', '2021', 80.00, '', 1, '2022-05-08 08:59:01', 0, NULL, 0, NULL, 1),
(11011, 8690, '2', 'state board', '', '', '2017', 75.00, '', 1, '2022-05-09 09:20:56', 0, NULL, 0, NULL, 1),
(11012, 8690, '3', 'anna university', '', 'be bio', '2021', 69.00, '', 1, '2022-05-09 09:21:18', 0, NULL, 0, NULL, 1),
(11013, 8691, '3', 'Madras university ', '', 'BBA ', '2020', 80.00, '', 1, '2022-05-09 10:59:09', 0, NULL, 0, NULL, 1),
(11014, 8693, '3', 'Anna university', '', 'Ece', '2020', 63.70, '', 1, '2022-05-09 11:55:23', 0, NULL, 0, NULL, 1),
(11015, 8694, '3', 'Anna university', '', 'Bba', '2021', 78.00, '', 1, '2022-05-09 12:36:23', 0, NULL, 0, NULL, 1),
(11016, 8696, '4', 'University of madras', '', 'Mba hr ', '2022', 71.00, '', 1, '2022-05-09 04:10:19', 0, NULL, 0, NULL, 1),
(11017, 8697, '3', 'Bharat University ', '', 'B.COM', '2022', 85.00, '', 1, '2022-05-09 05:26:43', 0, NULL, 0, NULL, 1),
(11018, 8700, '5', 'DOTE', '', 'Diploma in computer science ', '2021', 70.00, '', 1, '2022-05-10 10:42:31', 0, NULL, 0, NULL, 1),
(11019, 8701, '1', 'Chennai University ', '', '', '2021', 81.00, '', 1, '2022-05-10 11:10:49', 0, NULL, 0, NULL, 1),
(11020, 8701, '5', 'Chennai University ', '', 'Computer engineering ', '2021', 81.00, '', 1, '2022-05-10 11:12:07', 0, NULL, 0, NULL, 1),
(11021, 8702, '2', 'state board', '', '', '2008', 76.00, '', 1, '2022-05-10 11:56:51', 0, NULL, 0, NULL, 1),
(11022, 8702, '4', 'anna university', '', 'me', '2018', 79.00, '', 1, '2022-05-10 11:57:34', 0, NULL, 0, NULL, 1),
(11023, 8703, '3', 'Anna University', '', 'BE MECHANICAL ENGINEERING', '2020', 7.50, '', 1, '2022-05-10 12:33:46', 0, NULL, 0, NULL, 1),
(11024, 8703, '1', 'State borad', '', '', '2012', 52.00, '', 1, '2022-05-10 12:34:11', 0, NULL, 0, NULL, 1),
(11025, 8704, '3', 'Bharathiyar University ', '', 'Bcom Ca ', '2019', 63.00, '', 1, '2022-05-10 12:53:47', 0, NULL, 0, NULL, 1),
(11026, 8706, '4', 'SAVEETHA SCHOOL OF MANAGEMENT ', '', 'MBA', '2021', 75.00, '', 1, '2022-05-10 01:39:07', 0, NULL, 0, NULL, 1),
(11027, 8706, '3', 'DR MGR UNIVERSITY ', '', 'Bsc csc', '2018', 69.00, '', 1, '2022-05-10 01:40:12', 0, NULL, 0, NULL, 1),
(11028, 8706, '2', 'LEO MATRICULATION HIGHER SECONDARY SCHOOL ', '', '', '2016', 65.00, '', 1, '2022-05-10 01:42:56', 0, NULL, 0, NULL, 1),
(11029, 8706, '1', 'LEO MATRICULATION HIGHER SECONDARY SCHOOL ', '', '', '2014', 89.00, '', 1, '2022-05-10 01:43:20', 0, NULL, 0, NULL, 1),
(11030, 8705, '3', 'Madras University', '', 'B.A(English Literature)', '2021', 75.00, '', 1, '2022-05-10 03:04:11', 0, NULL, 0, NULL, 1),
(11031, 8692, '3', 'Pachaiyappa college university of madras', '', 'B.Sc', '2019', 61.00, '', 1, '2022-05-11 10:38:54', 0, NULL, 0, NULL, 1),
(11032, 8709, '3', 'Avvm sri pushpam collage poondi', '', 'B.sc maths', '2021', 60.00, '', 1, '2022-05-11 10:47:23', 0, NULL, 0, NULL, 1),
(11033, 8708, '5', 'Anna University', '', 'ELECTRICAL ELECTRONIC ENGINEERING', '2021', 75.00, '', 1, '2022-05-11 10:52:16', 0, NULL, 0, NULL, 1),
(11034, 8710, '3', 'University of Madras ', '', 'B.com', '2020', 78.00, '', 1, '2022-05-11 11:13:43', 0, NULL, 0, NULL, 1),
(11035, 8711, '3', 'Anna university', '', 'B.E cse', '2018', 7.34, '', 1, '2022-05-11 11:39:00', 0, NULL, 0, NULL, 1),
(11036, 8711, '1', 'State board ', '', '', '2012', 89.60, '', 1, '2022-05-11 11:41:23', 0, NULL, 0, NULL, 1),
(11037, 8711, '2', 'State board ', '', '', '2014', 82.00, '', 1, '2022-05-11 11:41:43', 0, NULL, 0, NULL, 1),
(11038, 8712, '3', 'Madras University', '', 'B com', '2021', 71.00, '', 1, '2022-05-11 12:10:51', 0, NULL, 0, NULL, 1),
(11039, 8713, '3', 'Anna University', '', 'B.E', '2021', 65.00, '', 1, '2022-05-11 12:26:18', 0, NULL, 0, NULL, 1),
(11040, 8714, '3', 'Bharathidhasan University', '', 'B.sc', '2021', 70.00, '', 1, '2022-05-11 12:34:29', 0, NULL, 0, NULL, 1),
(11041, 8716, '3', 'University ', '', 'BBA', '2021', 60.00, '', 1, '2022-05-11 12:39:16', 0, NULL, 0, NULL, 1),
(11042, 8715, '3', 'Vi institute of technology', '', 'B.E Mechanical engineering', '2019', 63.00, '', 1, '2022-05-11 01:04:26', 0, NULL, 0, NULL, 1),
(11043, 8718, '4', 'Amrita school of business', '', 'MBA', '2020', 70.00, '', 1, '2022-05-11 02:56:16', 0, NULL, 0, NULL, 1),
(11044, 8698, '4', 'MBA', '', 'MBA', '2021', 7.20, '', 87, '2022-05-11 03:49:38', 0, NULL, 0, NULL, 1),
(11045, 8720, '3', 'SRM UNIVERSITY', '', 'B.sc computer science', '2019', 65.00, '', 1, '2022-05-11 03:51:11', 0, NULL, 0, NULL, 1),
(11046, 8719, '2', 'Board', '', '', '2015', 52.00, '', 1, '2022-05-11 03:54:37', 0, NULL, 0, NULL, 1),
(11047, 8721, '4', 'pgdm', '', 'pgdm', '2022', 70.00, '', 1, '2022-05-11 03:57:37', 0, NULL, 0, NULL, 1),
(11048, 8722, '4', 'mba', '', 'mba', '2020', 70.00, '', 87, '2022-05-11 04:07:14', 0, NULL, 0, NULL, 1),
(11049, 8717, '4', 'acharya nagarjuna university', '', 'mec', '2012', 61.00, '', 1, '2022-05-11 08:36:01', 0, NULL, 0, NULL, 1),
(11050, 8725, '3', 'A m Jain college', '', 'B com (MM)', '2021', 65.00, '', 1, '2022-05-12 10:01:10', 0, NULL, 0, NULL, 1),
(11051, 8726, '3', 'Mgr University ', '', 'Bcom ', '2022', 80.00, '', 1, '2022-05-12 10:42:01', 0, NULL, 0, NULL, 1),
(11052, 8727, '3', 'Ambedkar college ', '', 'Bsc ', '2019', 60.00, '', 1, '2022-05-12 10:56:58', 0, NULL, 0, NULL, 1),
(11053, 8728, '3', 'University', '', 'B.com.Cs.ca', '2014', 71.00, '', 1, '2022-05-12 11:18:51', 0, NULL, 0, NULL, 1),
(11054, 8729, '3', 'Bharathidasan University ', '', 'Bsc', '2020', 60.00, '', 1, '2022-05-12 11:56:10', 0, NULL, 0, NULL, 1),
(11055, 8730, '3', 'Madras University ', '', 'B.com(general)', '2018', 60.00, '', 1, '2022-05-12 12:08:52', 0, NULL, 0, NULL, 1),
(11056, 8731, '3', 'Loyola college', '', 'B.com', '2013', 55.00, '', 1, '2022-05-12 01:51:59', 0, NULL, 0, NULL, 1),
(11057, 8733, '5', 'Anna University', '', 'Diploma', '2017', 70.00, '', 1, '2022-05-12 02:29:00', 0, NULL, 0, NULL, 1),
(11058, 8735, '3', 'Anna University ', '', 'BE ', '2015', 6.30, '', 1, '2022-05-12 03:55:04', 0, NULL, 0, NULL, 1),
(11059, 8738, '2', 'state board', '', '', '2015', 73.00, '', 1, '2022-05-13 10:08:21', 0, NULL, 0, NULL, 1),
(11060, 8738, '3', 'kamraj university', '', 'bsc it', '2018', 72.00, '', 1, '2022-05-13 10:08:44', 0, NULL, 0, NULL, 1),
(11061, 8739, '3', 'Manonmaniyam sundaranar university', '', 'Ba', '2015', 60.00, '', 1, '2022-05-13 10:25:48', 0, NULL, 0, NULL, 1),
(11062, 8740, '3', 'Anna University ', '', 'B.E', '2018', 6.34, '', 1, '2022-05-13 11:30:22', 0, NULL, 0, NULL, 1),
(11063, 8741, '3', 'BHARATHIAR UNIVERSITY', '', 'BA', '2017', 52.10, '', 1, '2022-05-13 11:39:42', 0, NULL, 0, NULL, 1),
(11064, 8742, '3', 'Sree sankara arts and sciences', '', 'B.a english', '2019', 70.00, '', 1, '2022-05-13 12:41:09', 0, NULL, 0, NULL, 1),
(11065, 8745, '5', 'Dote', '', 'DME', '2017', 71.00, '', 1, '2022-05-13 03:31:50', 0, NULL, 0, NULL, 1),
(11066, 8748, '4', 'Anna University', '', 'MBA', '2021', 75.00, '', 1, '2022-05-13 04:56:29', 0, NULL, 0, NULL, 1),
(11067, 8749, '4', 'SVU ', '', 'MBA', '2021', 85.00, '', 1, '2022-05-13 04:59:59', 0, NULL, 0, NULL, 1),
(11068, 8750, '3', 'Periyar University ', '', 'B.Sc maths', '2021', 68.00, '', 1, '2022-05-13 11:14:46', 0, NULL, 0, NULL, 1),
(11069, 8750, '2', 'O.l.l school', '', '', '2018', 79.60, '', 1, '2022-05-13 11:16:29', 0, NULL, 0, NULL, 1),
(11070, 8750, '1', 'O.l.l.school', '', '', '2016', 90.60, '', 1, '2022-05-13 11:17:07', 0, NULL, 0, NULL, 1),
(11071, 8751, '3', 'Bharathiyar University ', '', 'BA.English.let', '2017', 81.00, '', 1, '2022-05-14 10:23:27', 0, NULL, 0, NULL, 1),
(11072, 8746, '3', 'Alagappa university', '', 'Bcom', '2021', 62.40, '', 1, '2022-05-14 10:32:55', 0, NULL, 0, NULL, 1),
(11073, 8752, '3', 'YCMOU', '', 'B.com', '2021', 86.67, '', 1, '2022-05-14 10:41:44', 0, NULL, 0, NULL, 1),
(11074, 8753, '1', 'Board', '', '', '1918', 80.00, '', 1, '2022-05-14 11:12:40', 0, NULL, 0, NULL, 1),
(11075, 8743, '3', 'Vels University ', '', 'B.e civil engineering ', '2021', 6.90, '', 1, '2022-05-14 11:17:45', 0, NULL, 0, NULL, 1),
(11076, 8754, '3', 'Bharathiar university', '', 'B.com', '2021', 85.00, '', 1, '2022-05-14 11:34:21', 0, NULL, 0, NULL, 1),
(11077, 8756, '3', 'Amrita Vishwa Vidyapeetham', '', 'BA., mass Communication', '2022', 78.00, '', 1, '2022-05-14 12:57:37', 1, '2022-05-14 12:57:51', 0, NULL, 1),
(11078, 8755, '3', 'Thiruvalluvar University ', '', 'Bsw', '2021', 56.00, '', 1, '2022-05-14 01:33:02', 0, NULL, 0, NULL, 1),
(11079, 8757, '2', 'Board', '', '', '2018', 72.00, '', 1, '2022-05-14 03:41:50', 0, NULL, 0, NULL, 1),
(11080, 8758, '3', 'University', '', 'BE civil engineering', '2017', 74.00, '', 1, '2022-05-14 04:08:55', 0, NULL, 0, NULL, 1),
(11081, 8759, '1', 'State board ', '', '', '2008', 62.80, '', 1, '2022-05-16 08:43:20', 0, NULL, 0, NULL, 1),
(11082, 8759, '2', 'State board ', '', '', '2010', 52.00, '', 1, '2022-05-16 08:43:39', 0, NULL, 0, NULL, 1),
(11083, 8759, '3', 'University of madras', '', 'BCA', '2013', 68.00, '', 1, '2022-05-16 08:44:16', 0, NULL, 0, NULL, 1),
(11084, 8760, '2', 'State board', '', '', '2010', 66.00, '', 1, '2022-05-16 11:06:03', 0, NULL, 0, NULL, 1),
(11085, 8760, '5', 'Amit University ', '', 'Diploma marine', '2014', 76.00, '', 1, '2022-05-16 11:06:44', 0, NULL, 0, NULL, 1),
(11086, 8761, '4', 'Anna University', '', 'MBA', '2011', 72.00, '', 1, '2022-05-16 11:36:27', 0, NULL, 0, NULL, 1),
(11087, 8761, '3', 'Tiruvalluvar University', '', 'B.com', '2009', 58.00, '', 1, '2022-05-16 11:37:30', 0, NULL, 0, NULL, 1),
(11088, 8762, '5', 'Dote', '', 'Dme(sw) ', '2016', 69.00, '', 1, '2022-05-16 12:02:13', 0, NULL, 0, NULL, 1),
(11089, 8763, '3', 'vels university', '', 'b.sc viscom', '2021', 7.26, '', 1, '2022-05-16 12:25:21', 0, NULL, 0, NULL, 1),
(11090, 8764, '3', 'Anna University', '', 'B.E', '2021', 61.80, '', 1, '2022-05-17 10:50:01', 0, NULL, 0, NULL, 1),
(11091, 8766, '2', 'State board', '', '', '2018', 78.00, '', 1, '2022-05-17 11:16:21', 0, NULL, 0, NULL, 1),
(11092, 8765, '3', 'Madras University', '', 'Bco', '2019', 82.00, '', 1, '2022-05-17 11:23:22', 0, NULL, 0, NULL, 1),
(11093, 8767, '1', 'State ', '', '', '2012', 47.00, '', 1, '2022-05-17 11:29:01', 0, NULL, 0, NULL, 1),
(11094, 8279, '3', 'Bharathiyar university', '', 'B. Sc', '2021', 63.60, '', 1, '2022-05-17 11:47:15', 0, NULL, 0, NULL, 1),
(11095, 8279, '2', 'State board ', '', '', '2018', 60.52, '', 1, '2022-05-17 11:48:00', 0, NULL, 0, NULL, 1),
(11096, 8279, '1', 'State board ', '', '', '2016', 80.00, '', 1, '2022-05-17 11:48:17', 0, NULL, 0, NULL, 1),
(11097, 8737, '3', 'Periyar university', '', 'BCA', '2020', 67.00, '', 1, '2022-05-17 11:51:02', 0, NULL, 0, NULL, 1),
(11098, 8768, '3', 'Bharathiar University ', '', 'B.a', '2021', 68.00, '', 1, '2022-05-17 12:23:33', 0, NULL, 0, NULL, 1),
(11099, 8768, '2', 'Stateboard', '', '', '2018', 70.00, '', 1, '2022-05-17 12:25:20', 0, NULL, 0, NULL, 1),
(11100, 8768, '1', 'Stateboard', '', '', '2016', 69.00, '', 1, '2022-05-17 12:27:51', 0, NULL, 0, NULL, 1),
(11101, 8769, '3', 'Madras University ', '', 'Bsc computer science ', '2012', 52.00, '', 1, '2022-05-17 12:39:32', 0, NULL, 0, NULL, 1),
(11102, 8769, '2', 'State Board ', '', '', '2009', 70.00, '', 1, '2022-05-17 12:40:16', 0, NULL, 0, NULL, 1),
(11103, 8769, '1', 'State Board ', '', '', '2007', 75.00, '', 1, '2022-05-17 12:40:43', 0, NULL, 0, NULL, 1),
(11104, 8770, '4', 'Bharathidhasan University', '', 'Mcom', '2021', 60.00, '', 1, '2022-05-17 03:45:16', 0, NULL, 0, NULL, 1),
(11105, 8771, '2', 'state board', '', '', '2018', 67.00, '', 1, '2022-05-17 08:46:39', 0, NULL, 0, NULL, 1),
(11106, 8771, '3', 'madras university', '', 'be', '2022', 70.00, '', 1, '2022-05-17 08:47:13', 0, NULL, 0, NULL, 1),
(11107, 8772, '2', 'state board', '', '', '2018', 65.00, '', 1, '2022-05-17 08:51:20', 0, NULL, 0, NULL, 1),
(11108, 8774, '2', 'state board', '', '', '2013', 77.00, '', 1, '2022-05-17 09:49:55', 0, NULL, 0, NULL, 1),
(11109, 8774, '3', 'open university tamilnadu', '', 'ba english', '2018', 67.00, '', 1, '2022-05-17 09:50:35', 0, NULL, 0, NULL, 1),
(11110, 8776, '3', 'Sk University ', '', 'Bcom computer', '2014', 60.00, '', 1, '2022-05-18 11:38:21', 0, NULL, 0, NULL, 1),
(11111, 8776, '2', 'C E c', '', '', '2011', 61.80, '', 1, '2022-05-18 11:38:54', 0, NULL, 0, NULL, 1),
(11112, 8776, '1', 'ZPHS school', '', '', '2009', 55.60, '', 1, '2022-05-18 11:39:35', 0, NULL, 0, NULL, 1),
(11113, 8778, '3', 'University of madras', '', 'B.com', '2016', 72.00, '', 1, '2022-05-18 11:46:06', 0, NULL, 0, NULL, 1),
(11114, 8777, '2', 'state board', '', '', '2016', 66.00, '', 1, '2022-05-18 11:51:32', 0, NULL, 0, NULL, 1),
(11115, 8777, '3', 'anna university', '', 'be', '2020', 70.00, '', 1, '2022-05-18 11:52:27', 0, NULL, 0, NULL, 1),
(11116, 8780, '3', 'Periyar University ', '', 'B.Sc computer science ', '2019', 78.00, '', 1, '2022-05-18 01:09:01', 0, NULL, 0, NULL, 1),
(11117, 8781, '3', 'Periyar University ', '', 'B.Sc.Computer science ', '2019', 78.00, '', 1, '2022-05-18 01:16:24', 0, NULL, 0, NULL, 1),
(11118, 8782, '4', 'mba', '', 'mba', '2021', 71.00, '', 1, '2022-05-18 03:07:41', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11119, 8707, '3', 'osmania', '', 'bsc', '2020', 70.00, '', 87, '2022-05-18 03:17:30', 0, NULL, 0, NULL, 1),
(11120, 8779, '5', 'Venkateshvara Polytechnic College', '', 'DOTE', '2013', 60.00, '', 85, '2022-05-18 05:21:02', 0, NULL, 0, NULL, 1),
(11121, 8779, '5', 'Venkateshvara Polytechnic College', '', 'EEE', '2013', 60.00, '', 85, '2022-05-18 05:21:57', 85, '2022-05-18 05:22:03', 0, NULL, 0),
(11122, 8785, '2', 'state board', '', '', '2010', 78.00, '', 1, '2022-05-18 11:02:32', 0, NULL, 0, NULL, 1),
(11123, 8785, '3', 'gp polytechnic', '', 'iti diploma', '2021', 77.00, '', 1, '2022-05-18 11:03:27', 0, NULL, 0, NULL, 1),
(11124, 8773, '2', 'state board', '', '', '2010', 80.00, '', 1, '2022-05-19 11:35:48', 0, NULL, 0, NULL, 1),
(11125, 8773, '3', 'vel tech university', '', 'bcom', '2010', 60.00, '', 1, '2022-05-19 11:36:38', 0, NULL, 0, NULL, 1),
(11126, 8773, '4', 'entoard of university', '', 'mba', '2015', 60.00, '', 1, '2022-05-19 11:37:35', 0, NULL, 0, NULL, 1),
(11127, 8787, '1', 'state board', '', '', '2018', 60.00, '', 1, '2022-05-19 11:46:47', 0, NULL, 0, NULL, 1),
(11128, 8787, '5', 'anna university', '', 'diploma in hotel management', '2020', 67.00, '', 1, '2022-05-19 11:47:26', 0, NULL, 0, NULL, 1),
(11129, 8788, '1', 'State board', '', '', '2019', 63.00, '', 1, '2022-05-19 11:55:59', 0, NULL, 0, NULL, 1),
(11130, 8789, '3', 'The New College', '', 'B.com [C.S]', '2020', 70.00, '', 1, '2022-05-19 11:59:38', 0, NULL, 0, NULL, 1),
(11131, 8790, '3', 'Bharathiyar university ', '', 'B.com', '2021', 90.00, '', 1, '2022-05-19 12:08:49', 0, NULL, 0, NULL, 1),
(11132, 8791, '4', 'Anna University ', '', 'M. B. A', '2019', 64.00, '', 1, '2022-05-19 12:12:27', 1, '2022-05-19 12:15:14', 0, NULL, 0),
(11133, 8791, '3', 'Madras University ', '', 'B. COM(CS) ', '2017', 60.00, '', 1, '2022-05-19 12:13:14', 0, NULL, 0, NULL, 1),
(11134, 8791, '2', 'StateBoard', '', '', '2014', 75.00, '', 1, '2022-05-19 12:13:47', 0, NULL, 0, NULL, 1),
(11135, 8791, '1', 'State Board', '', '', '2012', 44.00, '', 1, '2022-05-19 12:14:55', 0, NULL, 0, NULL, 1),
(11136, 8791, '4', 'Anna University ', '', 'M. B. A', '2019', 64.00, '', 1, '2022-05-19 12:16:16', 0, NULL, 0, NULL, 1),
(11137, 8793, '3', 'prist university', '', 'batchular of bussiness administration', '2019', 65.50, '', 1, '2022-05-19 12:56:55', 0, NULL, 0, NULL, 1),
(11138, 8795, '1', 'Anna university', '', '', '2022', 79.00, '', 1, '2022-05-19 03:19:57', 0, NULL, 0, NULL, 1),
(11139, 8796, '3', 'Thiruvalluvar University', '', 'BBA', '2017', 64.00, '', 1, '2022-05-19 04:29:14', 0, NULL, 0, NULL, 1),
(11140, 8796, '1', 'Tamilnadu', '', 'BACHLORS OF BUSINESS ADMINISTRATION', '2010', 67.00, '', 1, '2022-05-19 04:34:10', 0, NULL, 0, NULL, 1),
(11141, 8796, '2', 'State board', '', '', '2013', 58.00, '', 1, '2022-05-19 04:37:49', 0, NULL, 0, NULL, 1),
(11142, 8798, '4', 'mba', '', 'mba', '2020', 62.00, '', 1, '2022-05-19 06:24:09', 0, NULL, 0, NULL, 1),
(11143, 8792, '3', 'Bharathidasan university college ', '', 'BCA ', '2017', 73.00, '', 1, '2022-05-19 10:34:41', 0, NULL, 0, NULL, 1),
(11144, 8799, '3', 'Thiruvalluar', '', 'B. Com(bank management) ', '2021', 70.00, '', 1, '2022-05-20 09:52:16', 0, NULL, 0, NULL, 1),
(11145, 8800, '3', 'Bharathidasan University', '', 'Bsc computer science', '2014', 75.00, '', 1, '2022-05-20 11:01:37', 0, NULL, 0, NULL, 1),
(11146, 8802, '4', 'Anna University', '', 'BE', '2021', 75.00, '', 1, '2022-05-20 11:24:24', 0, NULL, 0, NULL, 1),
(11147, 8802, '2', 'State board', '', '', '2017', 65.00, '', 1, '2022-05-20 11:25:17', 0, NULL, 0, NULL, 1),
(11148, 8802, '1', 'State board', '', '', '2015', 75.00, '', 1, '2022-05-20 11:25:43', 0, NULL, 0, NULL, 1),
(11149, 8801, '4', 'Anna University', '', 'BE cse', '2021', 75.00, '', 1, '2022-05-20 11:29:02', 0, NULL, 0, NULL, 1),
(11150, 8803, '3', 'jJ College of Engineering and Technology', '', 'BE(ECE)', '2020', 71.00, '', 1, '2022-05-20 11:31:21', 0, NULL, 0, NULL, 1),
(11151, 8804, '1', 'Anna university', '', '', '2022', 78.00, '', 1, '2022-05-20 12:49:32', 0, NULL, 0, NULL, 1),
(11152, 8806, '2', 'Madras University ', '', '', '2010', 70.00, '', 1, '2022-05-20 02:48:16', 0, NULL, 0, NULL, 1),
(11153, 8806, '3', 'Madras University ', '', 'B.B.A', '2010', 70.00, '', 1, '2022-05-20 02:50:16', 0, NULL, 0, NULL, 1),
(11154, 8805, '3', 'be', '', 'be', '2019', 65.00, '', 1, '2022-05-20 02:50:17', 0, NULL, 0, NULL, 1),
(11155, 8807, '4', 'Bharathiyar university ', '', 'MBA', '2017', 74.00, '', 1, '2022-05-20 05:24:20', 0, NULL, 0, NULL, 1),
(11156, 8807, '4', 'Bharathiyar university ', '', 'MBA', '2017', 70.00, '', 1, '2022-05-20 05:25:22', 0, NULL, 0, NULL, 1),
(11157, 8808, '2', 'state board', '', '', '2018', 90.00, '', 1, '2022-05-21 09:28:22', 0, NULL, 0, NULL, 1),
(11158, 8808, '3', 'madras university', '', 'bcom', '2020', 80.00, '', 1, '2022-05-21 09:29:17', 0, NULL, 0, NULL, 1),
(11159, 8811, '3', 'Madras University ', '', 'BBA ', '2020', 63.00, '', 1, '2022-05-21 11:15:26', 0, NULL, 0, NULL, 1),
(11160, 8810, '3', 'vels university', '', 'b.com comput applacation', '2020', 85.00, '', 1, '2022-05-21 11:19:07', 0, NULL, 0, NULL, 1),
(11161, 8809, '3', 'Madras University', '', 'Bco', '2021', 85.00, '', 1, '2022-05-21 12:37:21', 0, NULL, 0, NULL, 1),
(11162, 8812, '3', 'Madras University', '', 'Bcom', '2021', 71.00, '', 1, '2022-05-21 01:45:13', 0, NULL, 0, NULL, 1),
(11163, 8814, '2', 'State board', '', '', '2015', 66.00, '', 1, '2022-05-23 09:42:51', 0, NULL, 0, NULL, 1),
(11164, 8814, '3', 'Madras University ', '', 'Bcom ', '2019', 68.00, '', 1, '2022-05-23 09:43:15', 0, NULL, 0, NULL, 1),
(11165, 8813, '3', 'Bharathidhasan university ', '', 'B.A English ', '2018', 71.00, '', 1, '2022-05-23 09:58:12', 0, NULL, 0, NULL, 1),
(11166, 8815, '4', 'Alagappa university ', '', 'MBA', '2022', 70.00, '', 1, '2022-05-23 10:09:34', 0, NULL, 0, NULL, 1),
(11167, 8817, '4', 'University ', '', 'MBA Hr', '2009', 55.00, '', 1, '2022-05-23 10:41:09', 0, NULL, 0, NULL, 1),
(11168, 8818, '3', 'University College of engineering, Thirukuvalai', '', 'BE(ECE) ', '2018', 60.65, '', 1, '2022-05-23 11:01:04', 0, NULL, 0, NULL, 1),
(11169, 8820, '4', 'University of madras', '', 'B.com', '2021', 80.00, '', 1, '2022-05-23 11:20:51', 0, NULL, 0, NULL, 1),
(11170, 8822, '4', 'Anna university', '', 'ME', '2018', 95.00, '', 1, '2022-05-23 11:26:22', 1, '2022-05-23 11:28:23', 0, NULL, 0),
(11171, 8822, '4', 'Anna university', '', 'ME-CSE', '2018', 85.00, '', 1, '2022-05-23 11:27:15', 0, NULL, 0, NULL, 1),
(11172, 8819, '5', 'Anna University', '', 'Csc', '2021', 75.00, '', 1, '2022-05-23 11:33:34', 0, NULL, 0, NULL, 1),
(11173, 8824, '3', 'Anna university', '', 'BE-EEE', '2022', 8.00, '', 1, '2022-05-23 11:44:37', 0, NULL, 0, NULL, 1),
(11174, 8824, '2', 'Government higher secondary school', '', '', '2017', 52.00, '', 1, '2022-05-23 11:52:43', 0, NULL, 0, NULL, 1),
(11175, 8824, '1', '2015', '', '', '2015', 79.00, '', 1, '2022-05-23 11:53:52', 0, NULL, 0, NULL, 1),
(11176, 8825, '3', 'Anna University', '', 'BE(ECE)', '2014', 72.00, '', 1, '2022-05-23 11:53:58', 0, NULL, 0, NULL, 1),
(11177, 8825, '2', 'State Board', '', '', '2010', 77.00, '', 1, '2022-05-23 11:54:40', 0, NULL, 0, NULL, 1),
(11178, 8825, '1', 'State Board', '', '', '2008', 86.00, '', 1, '2022-05-23 11:55:07', 0, NULL, 0, NULL, 1),
(11179, 8826, '1', 'Government Higher Secondary School', '', '', '2015', 79.00, '', 1, '2022-05-23 12:00:00', 0, NULL, 0, NULL, 1),
(11180, 8826, '2', 'Government Higher Secondary school', '', '', '2017', 68.00, '', 1, '2022-05-23 12:01:22', 0, NULL, 0, NULL, 1),
(11181, 8827, '3', 'Anna University ', '', 'B.E(cSE)', '2018', 77.00, '', 1, '2022-05-24 10:25:05', 0, NULL, 0, NULL, 1),
(11182, 8828, '3', 'Anna university', '', 'BE', '2011', 68.00, '', 1, '2022-05-24 11:57:21', 0, NULL, 0, NULL, 1),
(11183, 8831, '3', 'Chikkaiah Naicker College, Erode', '', 'B.Sc Chemistry ', '2018', 61.00, '', 1, '2022-05-24 12:07:50', 0, NULL, 0, NULL, 1),
(11184, 8831, '2', 'State Board', '', '', '2015', 64.00, '', 1, '2022-05-24 12:08:23', 0, NULL, 0, NULL, 1),
(11185, 8831, '1', 'State Board', '', '', '2013', 84.00, '', 1, '2022-05-24 12:08:55', 0, NULL, 0, NULL, 1),
(11186, 8830, '3', 'Mk university', '', 'BA', '2021', 60.00, '', 1, '2022-05-24 12:12:20', 0, NULL, 0, NULL, 1),
(11187, 8832, '3', 'Sri Venkateshwara Hitech Engineering College, Gobi', '', 'B.e EEE', '2021', 75.00, '', 1, '2022-05-24 12:18:59', 0, NULL, 0, NULL, 1),
(11188, 8833, '3', 'Anna university', '', 'B-tech', '2021', 70.00, '', 1, '2022-05-24 12:37:47', 0, NULL, 0, NULL, 1),
(11189, 8834, '3', 'Anna University', '', 'Bachelor of Business Administration', '2022', 65.00, '', 1, '2022-05-24 12:43:42', 0, NULL, 0, NULL, 1),
(11190, 8835, '3', 'Hindustan college of engineering  technologY', '', 'BE', '2021', 72.00, '', 85, '2022-05-24 02:39:42', 0, NULL, 0, NULL, 1),
(11191, 8836, '4', 'Vidya Vikas college of engineering and technology', '', 'Bca', '2017', 60.00, '', 1, '2022-05-24 03:26:57', 0, NULL, 0, NULL, 1),
(11192, 8837, '2', 'Meenakshi University', '', '', '2018', 51.00, '', 1, '2022-05-25 10:39:55', 0, NULL, 0, NULL, 1),
(11193, 8838, '2', 'stateboard', '', '', '2016', 60.00, '', 1, '2022-05-25 10:57:54', 1, '2022-05-25 11:00:08', 0, NULL, 0),
(11194, 8838, '1', 'statboard', '', '', '2018', 60.00, '', 1, '2022-05-25 10:59:35', 0, NULL, 0, NULL, 1),
(11195, 8840, '4', 'PES University', '', 'BBA', '2021', 6.85, '', 1, '2022-05-25 12:36:01', 0, NULL, 0, NULL, 1),
(11196, 8840, '1', 'Saraswati Vidya Mandir', '', '', '2016', 80.16, '', 1, '2022-05-25 12:38:02', 0, NULL, 0, NULL, 1),
(11197, 8840, '2', 'Saraswati Vidya mandir', '', '', '2018', 74.00, '', 1, '2022-05-25 12:39:51', 0, NULL, 0, NULL, 1),
(11198, 8842, '3', 'Sri ramasany naidu memorial college', '', 'B.com', '2021', 60.00, '', 1, '2022-05-26 10:57:17', 0, NULL, 0, NULL, 1),
(11199, 8844, '3', 'Madras University ', '', 'B.com', '2017', 60.00, '', 1, '2022-05-26 03:30:59', 0, NULL, 0, NULL, 1),
(11200, 8845, '1', 'state board', '', '', '2014', 66.00, '', 1, '2022-05-26 10:48:12', 0, NULL, 0, NULL, 1),
(11201, 8845, '5', 'tatti', '', 'dca', '2016', 87.00, '', 1, '2022-05-26 10:48:44', 0, NULL, 0, NULL, 1),
(11202, 8846, '2', 'state board', '', '', '2012', 77.00, '', 1, '2022-05-26 10:54:32', 0, NULL, 0, NULL, 1),
(11203, 8846, '5', 'central board', '', 'diploma in computer hardware and networking', '2013', 67.00, '', 1, '2022-05-26 10:55:18', 0, NULL, 0, NULL, 1),
(11204, 8847, '1', 'state board', '', '', '2016', 67.00, '', 1, '2022-05-26 11:00:40', 0, NULL, 0, NULL, 1),
(11205, 8848, '3', 'Presidency university', '', 'B. Tech', '2022', 7.00, '', 1, '2022-05-27 10:22:41', 0, NULL, 0, NULL, 1),
(11206, 8848, '2', 'Sri chaitanya jr. Cllg', '', 'B. Tech', '2018', 8.40, '', 1, '2022-05-27 10:23:24', 0, NULL, 0, NULL, 1),
(11207, 8848, '1', 'Board of secondary education', '', '', '2016', 9.00, '', 1, '2022-05-27 10:23:53', 0, NULL, 0, NULL, 1),
(11208, 8849, '4', 'University of madras ', '', 'MSW', '2015', 65.00, '', 1, '2022-05-27 11:31:22', 0, NULL, 0, NULL, 1),
(11209, 8850, '5', 'Anna university', '', 'Computer science', '2018', 60.00, '', 1, '2022-05-27 12:26:39', 0, NULL, 0, NULL, 1),
(11210, 8851, '1', 'Karnataka board ', '', '', '2014', 67.52, '', 1, '2022-05-27 01:30:41', 0, NULL, 0, NULL, 1),
(11211, 8852, '3', 'Bharadhithasan University', '', 'BCA', '2014', 69.00, '', 1, '2022-05-27 02:19:49', 0, NULL, 0, NULL, 1),
(11212, 8853, '3', 'Madras University', '', 'Ba', '2020', 85.00, '', 1, '2022-05-27 02:58:29', 0, NULL, 0, NULL, 1),
(11213, 8854, '4', 'University of madars ', '', 'MBA', '2022', 75.00, '', 1, '2022-05-27 03:48:00', 0, NULL, 0, NULL, 1),
(11214, 8855, '3', 'Board', '', 'BA economics', '2019', 80.00, '', 1, '2022-05-27 04:20:09', 0, NULL, 0, NULL, 1),
(11215, 8856, '4', 'University of Madras ', '', 'MBA in Finance and HR', '2022', 73.79, '', 1, '2022-05-27 10:04:39', 1, '2022-05-27 10:05:22', 0, NULL, 1),
(11216, 8841, '4', 'mop vaishnav college for women', '', 'master of business adminstration', '2022', 74.00, '', 1, '2022-05-27 10:31:30', 0, NULL, 0, NULL, 1),
(11217, 8841, '3', 'arcot sri mahalakshmi Woman\'s college', '', 'bachelor of science in mathematics', '2020', 84.00, '', 1, '2022-05-27 10:32:47', 0, NULL, 0, NULL, 1),
(11218, 8841, '2', 'sunbeam matriculation higher secondary school', '', '', '2017', 65.00, '', 1, '2022-05-27 10:33:44', 0, NULL, 0, NULL, 1),
(11219, 8841, '1', 'dav bhel school', '', '', '2015', 82.00, '', 1, '2022-05-27 10:34:13', 0, NULL, 0, NULL, 1),
(11220, 8858, '3', 'Madras University', '', 'B.com(CS)', '2021', 85.00, '', 1, '2022-05-28 12:02:56', 0, NULL, 0, NULL, 1),
(11221, 8859, '4', 'Bharathiyar University', '', 'MBA Hr', '2020', 70.00, '', 1, '2022-05-28 12:53:25', 0, NULL, 0, NULL, 1),
(11222, 8860, '4', 'Pondicherry University', '', 'Mtech', '2017', 8.47, '', 1, '2022-05-28 01:02:15', 0, NULL, 0, NULL, 1),
(11223, 8861, '4', 'Anna university', '', 'MCA', '2015', 73.00, '', 1, '2022-05-28 05:18:51', 0, NULL, 0, NULL, 1),
(11224, 8863, '5', 'BHARAT SEVAN SAMAJ ', '', 'Hotel Management ', '2011', 92.00, '', 1, '2022-05-28 06:25:21', 0, NULL, 0, NULL, 1),
(11225, 8864, '3', 'Madras University ', '', 'B.Sc electronic and communication sciences ', '2021', 73.00, '', 1, '2022-05-28 11:10:49', 0, NULL, 0, NULL, 1),
(11226, 8864, '2', 'Matriculation ', '', '', '2018', 60.16, '', 1, '2022-05-28 11:11:34', 0, NULL, 0, NULL, 1),
(11227, 8864, '1', 'Matriculation ', '', '', '2016', 81.50, '', 1, '2022-05-28 11:12:04', 0, NULL, 0, NULL, 1),
(11228, 8865, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2022', 8.38, '', 1, '2022-05-30 10:30:15', 0, NULL, 0, NULL, 1),
(11229, 8865, '2', 'Government Girls Higher secondary school ', '', '', '2017', 71.00, '', 1, '2022-05-30 10:30:46', 0, NULL, 0, NULL, 1),
(11230, 8866, '3', 'University', '', 'Bsc', '2020', 65.00, '', 1, '2022-05-30 10:46:04', 0, NULL, 0, NULL, 1),
(11231, 8867, '2', 'state board', '', '', '2015', 61.00, '', 1, '2022-05-30 10:52:37', 0, NULL, 0, NULL, 1),
(11232, 8867, '3', 'madras university', '', 'bsc cs', '2018', 75.00, '', 1, '2022-05-30 10:53:02', 0, NULL, 0, NULL, 1),
(11233, 8868, '3', 'Bangalore central university', '', 'B. Com', '2021', 60.00, '', 1, '2022-05-30 12:01:02', 0, NULL, 0, NULL, 1),
(11234, 8869, '4', 'Madras university ', '', 'MBA ( HR & marketing) ', '2020', 80.00, '', 1, '2022-05-30 01:43:55', 0, NULL, 0, NULL, 1),
(11235, 8872, '4', 'Madras School Of Social Work ', '', 'M A Development Management ', '2022', 68.00, '', 1, '2022-05-30 07:43:40', 0, NULL, 0, NULL, 1),
(11236, 8872, '3', 'D G Vaishnav College ', '', 'B Com Corporate Secretaryship', '2020', 59.00, '', 1, '2022-05-30 07:44:17', 0, NULL, 0, NULL, 1),
(11237, 8872, '2', 'St Gabriel\'s Hr Sec School ', '', '', '2017', 89.00, '', 1, '2022-05-30 07:44:50', 0, NULL, 0, NULL, 1),
(11238, 8874, '2', 'University of madras ', '', '', '2016', 60.00, '', 1, '2022-05-31 10:19:08', 0, NULL, 0, NULL, 1),
(11239, 8875, '3', 'University', '', 'B.com.ca', '2021', 83.00, '', 1, '2022-05-31 10:26:02', 0, NULL, 0, NULL, 1),
(11240, 8876, '2', 'state board', '', '', '2013', 58.00, '', 1, '2022-05-31 10:37:35', 0, NULL, 0, NULL, 1),
(11241, 8876, '4', 'madurai kamaraj university', '', 'ma eco', '2018', 68.00, '', 1, '2022-05-31 10:38:08', 0, NULL, 0, NULL, 1),
(11242, 8877, '1', 'matriculation', '', '', '2012', 69.00, '', 1, '2022-05-31 10:43:38', 0, NULL, 0, NULL, 1),
(11243, 8877, '4', 'anna university', '', 'dme', '2015', 71.00, '', 1, '2022-05-31 10:44:09', 0, NULL, 0, NULL, 1),
(11244, 8878, '3', 'Anna University', '', 'MECHANICAL ENGINEERING', '2022', 8.76, '', 1, '2022-05-31 10:50:08', 0, NULL, 0, NULL, 1),
(11245, 8879, '3', 'Bharathiyar University ', '', 'B.sc IT', '2021', 70.00, '', 1, '2022-05-31 10:52:24', 0, NULL, 0, NULL, 1),
(11246, 8880, '3', 'Anna University ', '', 'B.E Mechanical Engineering ', '2007', 65.00, '', 1, '2022-05-31 11:15:50', 0, NULL, 0, NULL, 1),
(11247, 8881, '1', 'Karnataka ', '', '', '2020', 54.00, '', 1, '2022-05-31 11:16:58', 0, NULL, 0, NULL, 1),
(11248, 8882, '3', 'Bharadhidhsan University', '', 'B.A.English(lit)', '2012', 70.00, '', 1, '2022-05-31 12:11:30', 0, NULL, 0, NULL, 1),
(11249, 8871, '3', 'Madras University', '', 'B.com', '2018', 76.00, '', 1, '2022-05-31 12:33:41', 0, NULL, 0, NULL, 1),
(11250, 8883, '4', 'Senate, syndicate and academic council ', '', 'MBA ', '2022', 77.00, '', 1, '2022-05-31 01:37:03', 0, NULL, 0, NULL, 1),
(11251, 8883, '3', 'ANNA UNIVERSITY', '', 'ANNA UNIVERSITY', '2017', 65.00, '', 85, '2022-05-31 01:37:43', 85, '2022-05-31 01:40:16', 0, NULL, 0),
(11252, 8884, '3', 'VTU', '', 'BE', '2018', 51.00, '', 1, '2022-05-31 02:05:12', 0, NULL, 0, NULL, 1),
(11253, 8886, '3', 'Vtu technological university ', '', 'Engineering ', '2021', 80.00, '', 1, '2022-05-31 03:07:02', 0, NULL, 0, NULL, 1),
(11254, 8540, '3', 'Bharathidasan University', '', 'Bsc fashion technology and costume designing', '2015', 89.00, '', 1, '2022-05-31 03:24:30', 0, NULL, 0, NULL, 1),
(11255, 8888, '3', 'University of Madras', '', 'Bachelor of corporate sectaryship', '2020', 79.00, '', 1, '2022-05-31 04:02:31', 0, NULL, 0, NULL, 1),
(11256, 8889, '3', 'Anna University ', '', 'B.E(ECE)', '2016', 6.30, '', 1, '2022-05-31 05:53:37', 0, NULL, 0, NULL, 1),
(11257, 8862, '3', 'mba', '', 'mba', '2021', 60.00, '', 1, '2022-05-31 07:14:54', 0, NULL, 0, NULL, 1),
(11258, 8890, '4', 'Anna university', '', 'MBA', '2019', 80.00, '', 1, '2022-05-31 07:24:06', 0, NULL, 0, NULL, 1),
(11259, 8890, '4', 'Anna University', '', 'MBA', '2019', 76.00, '', 1, '2022-06-01 10:42:59', 0, NULL, 0, NULL, 1),
(11260, 8892, '4', 'Vels university', '', 'Msc', '2022', 85.00, '', 1, '2022-06-01 10:55:25', 0, NULL, 0, NULL, 1),
(11261, 8893, '3', 'Karunya university ', '', 'Electronics and instrumentation engineering ', '2017', 62.00, '', 1, '2022-06-01 11:31:30', 0, NULL, 0, NULL, 1),
(11262, 8894, '3', 'VTU', '', 'B. e. ', '2015', 59.00, '', 1, '2022-06-01 12:11:28', 0, NULL, 0, NULL, 1),
(11263, 8895, '2', 'Karnataka board ', '', '', '2017', 78.00, '', 1, '2022-06-01 12:24:45', 1, '2022-06-01 12:24:58', 0, NULL, 0),
(11264, 8895, '1', 'Karnataka board', '', '', '2016', 76.00, '', 1, '2022-06-01 12:25:21', 0, NULL, 0, NULL, 1),
(11265, 8895, '2', 'Karnataka Board ', '', '', '2018', 77.00, '', 1, '2022-06-01 12:25:46', 0, NULL, 0, NULL, 1),
(11266, 8896, '1', 'Government board', '', '', '2020', 56.00, '', 1, '2022-06-01 02:09:08', 0, NULL, 0, NULL, 1),
(11267, 8870, '4', 'Anna University', '', 'MBA', '2018', 77.00, '', 1, '2022-06-01 05:14:39', 1, '2022-06-01 05:16:23', 0, NULL, 0),
(11268, 8870, '4', 'Anna University', '', 'MBA', '2018', 77.00, '', 1, '2022-06-01 05:15:04', 0, NULL, 0, NULL, 1),
(11269, 8870, '3', 'Madras University', '', 'Bsc maths', '2018', 7.70, '', 1, '2022-06-01 05:16:15', 0, NULL, 0, NULL, 1),
(11270, 8897, '4', 'Anna university ', '', 'MBA', '2020', 7.87, '', 1, '2022-06-01 05:50:43', 0, NULL, 0, NULL, 1),
(11271, 8900, '3', 'Guwahati University', '', 'Bachelors of Commerce', '2022', 65.00, '', 1, '2022-06-02 11:42:23', 0, NULL, 0, NULL, 1),
(11272, 8897, '3', 'madras university', '', 'b sc computer science', '2018', 85.00, '', 1, '2022-06-02 12:04:29', 0, NULL, 0, NULL, 1),
(11273, 8898, '3', 'Madras University', '', 'Bsc', '2020', 78.00, '', 1, '2022-06-02 12:09:00', 0, NULL, 0, NULL, 1),
(11274, 8902, '3', 'Periyar university', '', 'Bsc cs', '2014', 65.00, '', 1, '2022-06-02 01:15:17', 0, NULL, 0, NULL, 1),
(11275, 8903, '3', 'University of Madras', '', 'B. A. (PMDA) ', '2017', 50.00, '', 1, '2022-06-02 01:21:01', 0, NULL, 0, NULL, 1),
(11276, 8899, '3', 'University', '', 'B.com (cS)', '2022', 69.00, '', 1, '2022-06-02 01:43:25', 0, NULL, 0, NULL, 1),
(11277, 8905, '3', 'Bangalore University ', '', 'B. Com', '2006', 45.00, '', 1, '2022-06-02 03:16:08', 0, NULL, 0, NULL, 1),
(11278, 8906, '4', 'Alagappa University ', '', 'MBA ', '2021', 70.00, '', 1, '2022-06-02 05:13:55', 0, NULL, 0, NULL, 1),
(11279, 8906, '4', 'Alagappa University ', '', 'MBA ', '2021', 70.00, '', 1, '2022-06-02 05:32:17', 0, NULL, 0, NULL, 1),
(11280, 8910, '3', 'Karpagam Academy of Higher Education ', '', 'B.E', '2020', 65.00, '', 1, '2022-06-03 09:50:36', 0, NULL, 0, NULL, 1),
(11281, 8907, '4', 'Anna university', '', 'Mca', '2021', 79.00, '', 1, '2022-06-03 10:26:52', 0, NULL, 0, NULL, 1),
(11282, 8911, '2', 'Madras University ', '', '', '2017', 60.00, '', 1, '2022-06-03 11:01:48', 0, NULL, 0, NULL, 1),
(11283, 8911, '3', 'Madras University ', '', 'Bsc cs', '2020', 76.00, '', 1, '2022-06-03 11:02:56', 0, NULL, 0, NULL, 1),
(11284, 8913, '3', 'Thiruvalluvar ', '', 'Bsc Mathematics ', '2021', 70.00, '', 1, '2022-06-03 01:23:44', 0, NULL, 0, NULL, 1),
(11285, 8914, '3', 'Madras University', '', 'B.com', '2019', 68.00, '', 1, '2022-06-03 05:31:57', 0, NULL, 0, NULL, 1),
(11286, 8916, '3', 'Barathithasan university', '', 'Bsc computer science', '2019', 80.00, '', 1, '2022-06-04 11:12:55', 0, NULL, 0, NULL, 1),
(11287, 8916, '4', 'Barathithasan university', '', 'Msc computer science', '2021', 86.00, '', 1, '2022-06-04 11:13:25', 0, NULL, 0, NULL, 1),
(11288, 8917, '4', 'Madras univercity', '', 'Bsc chemistry', '2022', 62.00, '', 1, '2022-06-04 11:42:07', 0, NULL, 0, NULL, 1),
(11289, 8904, '4', 'Madras university', '', 'B.A.politacal', '2021', 58.00, '', 1, '2022-06-04 11:43:31', 0, NULL, 0, NULL, 1),
(11290, 8904, '4', 'Madras university', '', 'B.a.polital ', '2018', 58.00, '', 1, '2022-06-04 11:45:08', 0, NULL, 0, NULL, 1),
(11291, 8904, '4', 'Madras university', '', 'B.a political', '2021', 60.00, '', 1, '2022-06-04 11:46:05', 0, NULL, 0, NULL, 1),
(11292, 8918, '3', 'JNTUA', '', 'BTech', '2016', 64.00, '', 1, '2022-06-04 11:58:04', 0, NULL, 0, NULL, 1),
(11293, 8918, '2', 'Sri Sai jr college ', '', '', '2012', 63.00, '', 1, '2022-06-04 11:58:45', 0, NULL, 0, NULL, 1),
(11294, 8918, '1', 'Board of secondary education', '', '', '2010', 89.80, '', 1, '2022-06-04 11:59:27', 0, NULL, 0, NULL, 1),
(11295, 8919, '3', 'rajalakshmi engineering college', '', 'btech', '2019', 76.00, '', 1, '2022-06-04 01:21:45', 0, NULL, 0, NULL, 1),
(11296, 8920, '4', 'University of Madras ', '', 'MBA', '2022', 75.00, '', 1, '2022-06-04 02:49:28', 0, NULL, 0, NULL, 1),
(11297, 8920, '3', 'Anna University ', '', 'BE MECHANICAL ', '2020', 81.10, '', 1, '2022-06-04 02:49:54', 0, NULL, 0, NULL, 1),
(11298, 8920, '2', 'STATEBOARD ', '', '', '2016', 91.10, '', 1, '2022-06-04 02:50:36', 0, NULL, 0, NULL, 1),
(11299, 8920, '1', 'STATEBOARD ', '', '', '2014', 95.80, '', 1, '2022-06-04 02:50:53', 0, NULL, 0, NULL, 1),
(11300, 8922, '3', 'Vivekananda educational institutions for women ', '', 'B.Sc.zoology', '2021', 65.00, '', 1, '2022-06-04 06:26:09', 0, NULL, 0, NULL, 1),
(11301, 8923, '3', 'Madurai kamarajar University', '', 'B.com', '2021', 47.00, '', 1, '2022-06-06 10:30:12', 0, NULL, 0, NULL, 1),
(11302, 8924, '4', 'Mepco Schlenk Engineering College, Sivakasi', '', 'MCA', '2021', 72.30, '', 1, '2022-06-06 10:49:12', 1, '2022-06-06 10:52:33', 0, NULL, 0),
(11303, 8924, '3', 'Yadava college, Madurai', '', 'BCA', '2019', 67.70, '', 1, '2022-06-06 10:49:43', 1, '2022-06-06 10:52:23', 0, NULL, 0),
(11304, 8924, '2', 'S.M.S.S. Govt. Boys Higher secondary school, Shencottai, Tenkashi district', '', '', '2016', 48.80, '', 1, '2022-06-06 10:50:45', 1, '2022-06-06 10:52:37', 0, NULL, 0),
(11305, 8924, '1', 'S.m.s.s. govt. Boys Higher secondary school, Shencottai, Tenkashi district', '', '', '2014', 75.40, '', 1, '2022-06-06 10:51:34', 1, '2022-06-06 10:52:28', 0, NULL, 0),
(11306, 8924, '1', 'S.m.s.s. govt. Boys Higher secondary school, Shencottai, Tenkashi district', '', '', '2014', 75.40, '', 1, '2022-06-06 10:53:08', 0, NULL, 0, NULL, 1),
(11307, 8924, '2', 'S.m.s.s. govt. Boys Higher secondary school, Shencottai, Tenkashi district', '', '', '2016', 48.80, '', 1, '2022-06-06 10:53:43', 0, NULL, 0, NULL, 1),
(11308, 8924, '3', 'Yadava college, Madurai', '', 'BCA', '2019', 67.70, '', 1, '2022-06-06 10:54:07', 0, NULL, 0, NULL, 1),
(11309, 8924, '4', 'Mepco Schlenk Engineering College, Sivakasi', '', 'MCA', '2021', 72.30, '', 1, '2022-06-06 10:54:30', 0, NULL, 0, NULL, 1),
(11310, 8925, '2', 'STATE BOARD', '', '', '2008', 51.00, '', 1, '2022-06-06 11:19:37', 0, NULL, 0, NULL, 1),
(11311, 8926, '1', 'ghgh school', '', '', '2020', 56.00, '', 1, '2022-06-06 12:13:26', 0, NULL, 0, NULL, 1),
(11312, 8928, '3', 'Madras University', '', 'Bsc(Es)', '2021', 55.00, '', 1, '2022-06-06 12:41:08', 0, NULL, 0, NULL, 1),
(11313, 8930, '4', 'Anna University ', '', 'MBA HR and Marketing ', '2022', 80.00, '', 1, '2022-06-06 12:52:24', 0, NULL, 0, NULL, 1),
(11314, 8927, '3', 'Bharathidasan university ', '', 'BBA ', '2020', 67.00, '', 1, '2022-06-06 12:58:14', 0, NULL, 0, NULL, 1),
(11315, 8931, '4', 'anna university', '', 'mba', '2020', 7.90, '', 1, '2022-06-06 02:09:55', 0, NULL, 0, NULL, 1),
(11316, 8931, '3', 'madras university ', '', 'b.com', '2018', 65.00, '', 1, '2022-06-06 02:10:55', 0, NULL, 0, NULL, 1),
(11317, 8932, '3', 'Jntu ananthapur', '', 'Btech', '2021', 60.00, '', 1, '2022-06-06 02:35:00', 0, NULL, 0, NULL, 1),
(11318, 8934, '3', 'University of Madras', '', 'B.com', '2021', 86.00, '', 1, '2022-06-06 03:25:58', 0, NULL, 0, NULL, 1),
(11319, 8935, '3', 'Madurai kamarajar', '', 'B.com', '2021', 75.00, '', 1, '2022-06-06 03:36:32', 0, NULL, 0, NULL, 1),
(11320, 8937, '3', 'Madras University ', '', 'B.com', '2020', 84.40, '', 1, '2022-06-06 06:52:37', 0, NULL, 0, NULL, 1),
(11321, 8936, '3', 'Thiruvalluvar University', '', 'B.A.English', '2022', 79.00, '', 1, '2022-06-06 08:45:16', 0, NULL, 0, NULL, 1),
(11322, 8939, '3', 'Madurai kamaraj University ', '', 'B.com', '2021', 65.00, '', 1, '2022-06-07 10:23:28', 0, NULL, 0, NULL, 1),
(11323, 8940, '3', 'Anna university', '', 'B. E., Mechanical Engineering', '2018', 6.77, '', 1, '2022-06-07 10:54:51', 0, NULL, 0, NULL, 1),
(11324, 8942, '3', 'Presidency University ', '', 'B tech ', '2022', 76.00, '', 1, '2022-06-07 11:21:05', 0, NULL, 0, NULL, 1),
(11325, 8943, '1', 'SBM Matriculation Higher secondary school ', '', '', '2014', 99.00, '', 1, '2022-06-07 11:24:57', 0, NULL, 0, NULL, 1),
(11326, 8943, '2', 'SBM Matriculation Higher secondary School ', '', '', '2016', 86.00, '', 1, '2022-06-07 11:25:24', 0, NULL, 0, NULL, 1),
(11327, 8943, '3', 'Vel Tech Multi Tech Engineering College ', '', 'B.E. Biomedical Engineering ', '2020', 76.00, '', 1, '2022-06-07 11:25:56', 0, NULL, 0, NULL, 1),
(11328, 8912, '5', 'Dote', '', 'Diploma mechanical engineer ', '2021', 50.00, '', 1, '2022-06-07 12:09:32', 0, NULL, 0, NULL, 1),
(11329, 8944, '3', 'Medras University', '', 'BA', '2016', 68.00, '', 1, '2022-06-07 12:37:49', 0, NULL, 0, NULL, 1),
(11330, 8945, '3', 'Anna University', '', 'B.E.', '2020', 7.68, '', 1, '2022-06-07 12:45:45', 0, NULL, 0, NULL, 1),
(11331, 8946, '3', 'Anna University', '', 'B.E(CSE)', '2020', 6.70, '', 1, '2022-06-07 12:47:14', 0, NULL, 0, NULL, 1),
(11332, 8947, '3', 'University', '', 'b.com', '2022', 85.00, '', 1, '2022-06-07 03:20:29', 0, NULL, 0, NULL, 1),
(11333, 8949, '3', 'st.peters college of engineering and technology', '', 'BE', '2019', 75.00, '', 1, '2022-06-07 05:34:25', 0, NULL, 0, NULL, 1),
(11334, 8948, '3', 'anna university', '', 'b.e computer science', '2016', 6.72, '', 1, '2022-06-07 07:17:05', 1, '2022-06-07 07:18:06', 0, NULL, 1),
(11335, 8950, '1', 'Vijayapura University ', '', '', '2021', 64.14, '', 1, '2022-06-08 11:14:00', 1, '2022-06-08 11:15:18', 0, NULL, 0),
(11336, 8950, '5', 'Vijayapura University ', '', 'Diploma in fashion designing ', '2021', 64.13, '', 1, '2022-06-08 11:14:58', 0, NULL, 0, NULL, 1),
(11337, 8950, '1', 'Karnataka bord ', '', '', '2016', 65.00, '', 1, '2022-06-08 11:16:32', 0, NULL, 0, NULL, 1),
(11338, 8951, '3', 'SRM university', '', 'Bsc computer science', '2018', 69.00, '', 1, '2022-06-08 11:44:46', 0, NULL, 0, NULL, 1),
(11339, 8952, '3', 'Madras University', '', 'Ba', '2019', 75.00, '', 1, '2022-06-08 12:08:39', 0, NULL, 0, NULL, 1),
(11340, 8953, '3', 'Madras University ', '', 'B.com', '2016', 52.00, '', 1, '2022-06-08 12:12:50', 0, NULL, 0, NULL, 1),
(11341, 8953, '1', 'Board', '', 'B.com', '2011', 58.00, '', 1, '2022-06-08 12:21:30', 0, NULL, 0, NULL, 1),
(11342, 8953, '2', 'Board', '', '', '2013', 48.00, '', 1, '2022-06-08 12:22:23', 0, NULL, 0, NULL, 1),
(11343, 8957, '4', 'Madras University ', '', 'MBA(HR & Marketing)', '2019', 70.00, '', 1, '2022-06-08 12:31:20', 0, NULL, 0, NULL, 1),
(11344, 8958, '1', 'State board ', '', '', '2013', 54.00, '', 1, '2022-06-08 02:47:21', 0, NULL, 0, NULL, 1),
(11345, 8958, '2', 'State board', '', '', '2015', 60.00, '', 1, '2022-06-08 02:48:19', 0, NULL, 0, NULL, 1),
(11346, 8958, '3', 'Madras University', '', 'BBA', '2018', 64.50, '', 1, '2022-06-08 02:48:43', 0, NULL, 0, NULL, 1),
(11347, 8921, '4', 'mba', '', 'mba', '2022', 70.00, '', 87, '2022-06-08 04:42:58', 0, NULL, 0, NULL, 1),
(11348, 8938, '4', 'University of Madras ', '', 'M. Sc (HRD Psychology) ', '2022', 70.00, '', 1, '2022-06-08 05:01:36', 0, NULL, 0, NULL, 1),
(11349, 8938, '3', 'Kamarajar university ', '', 'B. Sc(Psychology)', '2020', 73.00, '', 1, '2022-06-08 05:02:18', 0, NULL, 0, NULL, 1),
(11350, 8938, '1', 'Stateborad ', '', '', '2015', 96.00, '', 1, '2022-06-08 05:02:46', 0, NULL, 0, NULL, 1),
(11351, 8938, '2', 'State board ', '', '', '2017', 81.00, '', 1, '2022-06-08 05:04:02', 0, NULL, 0, NULL, 1),
(11352, 8921, '3', 'Be', '', 'Be', '2020', 70.00, '', 1, '2022-06-08 05:10:14', 0, NULL, 0, NULL, 1),
(11353, 8959, '4', 'Anna University', '', 'MBA', '2019', 70.00, '', 1, '2022-06-08 05:34:41', 0, NULL, 0, NULL, 1),
(11354, 8959, '4', 'Anna University', '', 'Mba', '2019', 70.00, '', 1, '2022-06-08 05:35:27', 0, NULL, 0, NULL, 1),
(11355, 8962, '1', 'st.pauls hr sec school', '', 'mba', '2015', 69.00, '', 1, '2022-06-08 06:31:52', 0, NULL, 0, NULL, 1),
(11356, 8962, '2', 'riverside public school', '', '', '2017', 64.00, '', 1, '2022-06-08 06:32:24', 0, NULL, 0, NULL, 1),
(11357, 8962, '4', 'vels university', '', 'mba integrated', '2022', 7.25, '', 1, '2022-06-08 06:48:14', 0, NULL, 0, NULL, 1),
(11358, 8963, '3', 'University', '', 'BE', '2016', 65.00, '', 1, '2022-06-08 07:58:29', 0, NULL, 0, NULL, 1),
(11359, 8960, '5', 'Madurai kamaraj University', '', 'DCompE', '2015', 68.00, '', 1, '2022-06-09 12:51:47', 0, NULL, 0, NULL, 1),
(11360, 8964, '3', 'Madras University', '', 'BCA', '2020', 72.04, '', 1, '2022-06-09 10:20:38', 0, NULL, 0, NULL, 1),
(11361, 8941, '3', 'Madras University ', '', 'Bsc .computer science ', '2020', 58.00, '', 1, '2022-06-09 10:49:14', 0, NULL, 0, NULL, 1),
(11362, 8965, '4', 'Anna University Chennai ', '', 'Master of business administration ', '2021', 7.10, '', 1, '2022-06-09 11:03:15', 0, NULL, 0, NULL, 1),
(11363, 8965, '3', 'Anna University Chennai ', '', 'B.E mechanical engineering ', '2019', 6.22, '', 1, '2022-06-09 11:04:12', 0, NULL, 0, NULL, 1),
(11364, 8966, '1', 'Ramasamy Pillai Higher Secondary School', '', '', '2011', 53.00, '', 1, '2022-06-09 11:37:47', 0, NULL, 0, NULL, 1),
(11365, 8966, '5', 'FX Polytechnic College', '', 'diploma', '2014', 65.00, '', 1, '2022-06-09 11:38:26', 0, NULL, 0, NULL, 1),
(11366, 8967, '3', 'University ', '', 'BCA', '2020', 75.00, '', 1, '2022-06-09 12:16:16', 0, NULL, 0, NULL, 1),
(11367, 8969, '3', 'Alagappa university ', '', 'B.com', '2023', 60.00, '', 1, '2022-06-09 12:58:49', 0, NULL, 0, NULL, 1),
(11368, 8970, '3', 'Madras', '', 'B com', '2019', 78.00, '', 1, '2022-06-09 01:24:39', 0, NULL, 0, NULL, 1),
(11369, 8971, '3', 'Anna University ', '', 'B.E (CSE)', '2010', 66.00, '', 1, '2022-06-09 03:23:36', 0, NULL, 0, NULL, 1),
(11370, 8972, '4', 'Mepco schenk engineering college', '', 'MBA', '2021', 83.40, '', 1, '2022-06-09 04:35:36', 0, NULL, 0, NULL, 1),
(11371, 8972, '3', 'Anna University', '', 'B.E', '2019', 70.50, '', 1, '2022-06-09 04:36:19', 0, NULL, 0, NULL, 1),
(11372, 8974, '4', 'Anna university', '', 'ME ', '2015', 87.00, '', 1, '2022-06-09 06:16:05', 0, NULL, 0, NULL, 1),
(11373, 8976, '3', 'Anna university ', '', 'B.E', '2019', 6.59, '', 1, '2022-06-09 07:02:04', 0, NULL, 0, NULL, 1),
(11374, 8973, '3', 'DR MGR UNIVERSITY ', '', 'B. TECH', '2021', 65.00, '', 1, '2022-06-10 09:34:23', 0, NULL, 0, NULL, 1),
(11375, 8968, '1', 'P.C.K.G.Hr.Sec.School', '', '', '2014', 59.00, '', 1, '2022-06-10 09:43:59', 0, NULL, 0, NULL, 1),
(11376, 8968, '2', 'P.C.K.G.Hr.Sec.School', '', '', '2016', 62.00, '', 1, '2022-06-10 09:44:16', 0, NULL, 0, NULL, 1),
(11377, 8968, '3', 'Apollo Arts & Science College ', '', 'b.sc', '2019', 58.00, '', 1, '2022-06-10 09:45:02', 0, NULL, 0, NULL, 1),
(11378, 8977, '4', 'Thiruvalluvar University', '', 'M. A English', '2021', 72.00, '', 1, '2022-06-10 10:21:15', 0, NULL, 0, NULL, 1),
(11379, 8977, '3', 'Thiruvalluvar University', '', 'B.A English', '2018', 56.00, '', 1, '2022-06-10 10:22:38', 0, NULL, 0, NULL, 1),
(11380, 8979, '1', 'C.S Central matric higher secondary school', '', '', '2014', 70.00, '', 1, '2022-06-10 10:33:17', 0, NULL, 0, NULL, 1),
(11381, 8978, '3', 'Periyar Maniammai Institute of Science and technology', '', 'BCA', '2021', 6.44, '', 1, '2022-06-10 10:33:31', 0, NULL, 0, NULL, 1),
(11382, 8979, '2', 'Sri Venkateswara matric higher secondary school', '', '', '2016', 60.00, '', 1, '2022-06-10 10:33:35', 0, NULL, 0, NULL, 1),
(11383, 8979, '3', 'Sri Venkateswara matric higher secondary school', '', 'b.sc', '2020', 70.00, '', 1, '2022-06-10 10:34:07', 0, NULL, 0, NULL, 1),
(11384, 8980, '4', 'Banglore university', '', 'Degree', '2020', 74.00, '', 1, '2022-06-10 10:55:52', 0, NULL, 0, NULL, 1),
(11385, 8980, '4', 'Government arts college', '', '', '2020', 82.50, '', 1, '2022-06-10 10:58:11', 0, NULL, 0, NULL, 1),
(11386, 8980, '4', 'Bangalore university', '', '', '2020', 54.00, '', 1, '2022-06-10 10:58:53', 0, NULL, 0, NULL, 1),
(11387, 8983, '3', 'University', '', 'Bcom', '2022', 75.00, '', 1, '2022-06-10 11:56:27', 0, NULL, 0, NULL, 1),
(11388, 8985, '1', '2000', '', '', '2001', 62.00, '', 1, '2022-06-10 12:06:09', 0, NULL, 0, NULL, 1),
(11389, 8984, '3', 'Dr.MGR Educational and research institute ', '', 'B.com ', '2022', 91.20, '', 1, '2022-06-10 12:06:50', 0, NULL, 0, NULL, 1),
(11390, 8987, '2', 'Sethu bhaskara Higher Secondary School, Chennai-62.', '', '', '2014', 69.00, '', 1, '2022-06-10 12:12:02', 0, NULL, 0, NULL, 1),
(11391, 8987, '3', 'Loyola College Nungambakkam , Chennai-34.', '', 'b.a', '2020', 50.00, '', 1, '2022-06-10 12:12:31', 0, NULL, 0, NULL, 1),
(11392, 8986, '3', 'Madras university', '', 'B.com ', '2022', 80.10, '', 1, '2022-06-10 12:31:12', 0, NULL, 0, NULL, 1),
(11393, 8988, '2', 'Anglo indian', '', '', '2014', 54.00, '', 1, '2022-06-10 12:37:00', 0, NULL, 0, NULL, 1),
(11394, 8989, '3', 'Madras University', '', 'BCA', '2017', 60.00, '', 1, '2022-06-10 12:37:54', 0, NULL, 0, NULL, 1),
(11395, 8990, '1', 'St. Joseph high sec', '', '', '2016', 70.00, '', 1, '2022-06-10 12:52:49', 0, NULL, 0, NULL, 1),
(11396, 8991, '3', 'University of Madras ', '', 'B.com', '2021', 86.70, '', 1, '2022-06-10 03:34:02', 0, NULL, 0, NULL, 1),
(11397, 8992, '2', 'state baord', '', '', '2011', 87.00, '', 1, '2022-06-10 09:55:52', 0, NULL, 0, NULL, 1),
(11398, 8992, '5', 'kamaraj polytechnic', '', 'dce', '2015', 76.00, '', 1, '2022-06-10 09:56:36', 0, NULL, 0, NULL, 1),
(11399, 8993, '2', 'state board', '', '', '2013', 52.00, '', 1, '2022-06-10 10:01:51', 0, NULL, 0, NULL, 1),
(11400, 8993, '3', 'anna university', '', 'be mech', '2017', 67.00, '', 1, '2022-06-10 10:02:39', 0, NULL, 0, NULL, 1),
(11401, 8994, '3', 'Anna University ', '', 'B.E/Mechanical Engineering ', '2021', 68.60, '', 1, '2022-06-11 10:52:35', 0, NULL, 0, NULL, 1),
(11402, 8995, '3', 'Periyar University ', '', 'B.sc computer science ', '2021', 58.00, '', 1, '2022-06-11 11:31:17', 0, NULL, 0, NULL, 1),
(11403, 8995, '2', 'Matriculation ', '', '', '2018', 62.00, '', 1, '2022-06-11 11:31:47', 0, NULL, 0, NULL, 1),
(11404, 8995, '1', 'Matriculation ', '', '', '2016', 71.00, '', 1, '2022-06-11 11:32:07', 0, NULL, 0, NULL, 1),
(11405, 8996, '2', 'Radiance Matriculation Higher Secondary School', '', '', '2019', 42.00, '', 1, '2022-06-11 11:41:02', 0, NULL, 0, NULL, 1),
(11406, 8997, '3', 'Bharathidasan university', '', 'B.sc Information Technology ', '2018', 65.80, '', 1, '2022-06-11 12:00:10', 0, NULL, 0, NULL, 1),
(11407, 8998, '3', 'Sri venkateswara University', '', 'B com', '2013', 55.00, '', 1, '2022-06-11 01:26:57', 0, NULL, 0, NULL, 1),
(11408, 9000, '4', 'Madras University', '', 'MBA', '2020', 70.00, '', 1, '2022-06-11 03:42:32', 0, NULL, 0, NULL, 1),
(11409, 9000, '3', 'Madras University', '', 'B.com', '2018', 65.00, '', 1, '2022-06-11 03:42:59', 0, NULL, 0, NULL, 1),
(11410, 9000, '2', 'State board', '', '', '2015', 65.00, '', 1, '2022-06-11 03:43:25', 0, NULL, 0, NULL, 1),
(11411, 9000, '1', 'State board', '', '', '2013', 88.00, '', 1, '2022-06-11 03:43:39', 0, NULL, 0, NULL, 1),
(11412, 9002, '5', 'Government ITI ambattur ', '', 'ITI Machani Engineer', '2020', 72.00, '', 1, '2022-06-12 02:12:08', 0, NULL, 0, NULL, 1),
(11413, 9002, '2', 'Rcm higher secondary school ', '', '', '2019', 69.00, '', 1, '2022-06-12 02:12:53', 0, NULL, 0, NULL, 1),
(11414, 9003, '2', 'state board', '', '', '2015', 66.00, '', 1, '2022-06-13 10:23:15', 0, NULL, 0, NULL, 1),
(11415, 9003, '3', 'madras university', '', 'bcom', '2019', 77.00, '', 1, '2022-06-13 10:23:44', 0, NULL, 0, NULL, 1),
(11416, 9005, '3', 'Anna University', '', 'B.E', '2019', 5.47, '', 1, '2022-06-13 11:07:35', 0, NULL, 0, NULL, 1),
(11417, 9005, '2', 'State board', '', '', '2015', 69.60, '', 1, '2022-06-13 11:08:09', 1, '2022-06-13 11:08:24', 0, NULL, 1),
(11418, 9005, '1', 'State board ', '', '', '2013', 73.80, '', 1, '2022-06-13 11:08:43', 0, NULL, 0, NULL, 1),
(11419, 9004, '3', 'Madras University ', '', 'B.com Computer Application ', '2020', 70.10, '', 1, '2022-06-13 11:08:56', 0, NULL, 0, NULL, 1),
(11420, 9004, '2', 'State Board ', '', '', '2017', 70.00, '', 1, '2022-06-13 11:09:34', 0, NULL, 0, NULL, 1),
(11421, 9004, '1', 'State Board ', '', '', '2015', 70.00, '', 1, '2022-06-13 11:09:59', 0, NULL, 0, NULL, 1),
(11422, 9007, '2', 'Tamilnadu state board', '', '', '2021', 50.00, '', 1, '2022-06-13 11:34:11', 0, NULL, 0, NULL, 1),
(11423, 9009, '3', 'GRT institute of engineering and technology', '', 'B E', '2021', 71.00, '', 1, '2022-06-13 12:59:59', 1, '2022-06-13 01:00:39', 0, NULL, 1),
(11424, 9010, '3', 's.v universcity  ', '', 'b.com', '2021', 8.00, '', 1, '2022-06-13 01:38:46', 0, NULL, 0, NULL, 1),
(11425, 9006, '5', 'CIPET', '', 'PG DIPLOMA', '2009', 70.00, '', 1, '2022-06-13 01:40:52', 0, NULL, 0, NULL, 1),
(11426, 9008, '3', 'PRIST Universit', '', 'DEEE', '2012', 70.00, '', 85, '2022-06-13 02:43:24', 0, NULL, 0, NULL, 1),
(11427, 9014, '3', 'Bharathidasan university', '', 'BBA', '2021', 60.00, '', 1, '2022-06-13 05:21:56', 0, NULL, 0, NULL, 1),
(11428, 9014, '2', 'Matriculation', '', '', '2018', 61.00, '', 1, '2022-06-13 05:23:00', 0, NULL, 0, NULL, 1),
(11429, 9014, '1', 'State board', '', '', '2016', 80.00, '', 1, '2022-06-13 05:23:32', 0, NULL, 0, NULL, 1),
(11430, 9013, '1', 'st joseph convent', '', 'mba', '2016', 90.40, '', 1, '2022-06-13 05:26:08', 1, '2022-06-13 05:27:19', 0, NULL, 0),
(11431, 9013, '1', 'st joseph convent', '', '', '2016', 90.40, '', 1, '2022-06-13 05:28:06', 1, '2022-06-13 05:28:47', 0, NULL, 0),
(11432, 9013, '1', 'st joseph convent', '', '', '2014', 90.40, '', 1, '2022-06-13 05:29:02', 0, NULL, 0, NULL, 1),
(11433, 9013, '2', 'st. joseph convent', '', '', '2016', 82.40, '', 1, '2022-06-13 05:29:50', 0, NULL, 0, NULL, 1),
(11434, 9013, '3', 'holy cross college', '', 'b.com', '2019', 75.40, '', 1, '2022-06-13 05:30:59', 0, NULL, 0, NULL, 1),
(11435, 9015, '3', 'Periyar University', '', 'BCA', '2021', 78.00, '', 1, '2022-06-13 06:01:46', 0, NULL, 0, NULL, 1),
(11436, 9016, '2', 'state board', '', '', '2008', 62.00, '', 1, '2022-06-13 07:54:25', 0, NULL, 0, NULL, 1),
(11437, 9016, '3', 'madras university', '', 'bba', '2011', 65.00, '', 1, '2022-06-13 07:55:03', 0, NULL, 0, NULL, 1),
(11438, 9017, '1', 'state board', '', '', '2016', 56.00, '', 1, '2022-06-13 07:58:39', 0, NULL, 0, NULL, 1),
(11439, 9017, '5', 'anna university', '', 'diploma eee', '2019', 69.00, '', 1, '2022-06-13 07:59:01', 0, NULL, 0, NULL, 1),
(11440, 9020, '3', 'Anna university ', '', 'BE', '2022', 86.00, '', 1, '2022-06-14 10:39:48', 0, NULL, 0, NULL, 1),
(11441, 9021, '3', 'Anna University', '', 'BE', '2022', 8.85, '', 1, '2022-06-14 10:42:56', 0, NULL, 0, NULL, 1),
(11442, 9022, '3', 'madras ', '', 'bca', '2018', 83.00, '', 1, '2022-06-14 11:06:56', 0, NULL, 0, NULL, 1),
(11443, 9024, '4', 'Periyar University ', '', 'MBA', '2021', 70.00, '', 1, '2022-06-14 11:24:23', 0, NULL, 0, NULL, 1),
(11444, 9024, '3', 'Periyar University ', '', 'BBA', '2019', 68.00, '', 1, '2022-06-14 11:24:58', 0, NULL, 0, NULL, 1),
(11445, 9024, '2', 'State Board ', '', '', '2016', 82.00, '', 1, '2022-06-14 11:25:32', 0, NULL, 0, NULL, 1),
(11446, 9024, '1', 'State Board ', '', '', '2014', 70.00, '', 1, '2022-06-14 11:25:59', 0, NULL, 0, NULL, 1),
(11447, 9025, '3', 'Anna university', '', 'B. E', '2020', 65.00, '', 1, '2022-06-14 11:29:29', 0, NULL, 0, NULL, 1),
(11448, 9023, '2', 'gulbarga university', '', '', '2016', 69.00, '', 1, '2022-06-14 11:44:11', 0, NULL, 0, NULL, 1),
(11449, 9023, '1', 'm.v.raman high school', '', '', '2008', 71.00, '', 1, '2022-06-14 11:44:50', 0, NULL, 0, NULL, 1),
(11450, 9026, '3', 'Madras University ', '', 'B.Com', '2018', 74.00, '', 1, '2022-06-14 03:30:11', 0, NULL, 0, NULL, 1),
(11451, 9027, '4', 'Sathyabama Institute of Science and Technology Chennai ', '', 'MBA', '2022', 81.33, '', 1, '2022-06-14 04:28:15', 0, NULL, 0, NULL, 1),
(11452, 9028, '4', 'Anna University', '', 'MBA', '2020', 70.00, '', 1, '2022-06-14 04:39:28', 0, NULL, 0, NULL, 1),
(11453, 9029, '3', 'Madras University ', '', 'BCA', '2011', 92.00, '', 1, '2022-06-14 06:03:27', 0, NULL, 0, NULL, 1),
(11454, 9032, '1', 'state board', '', '', '2014', 65.00, '', 1, '2022-06-14 08:58:26', 0, NULL, 0, NULL, 1),
(11455, 9032, '5', 'kongunadu polytechnic', '', 'diploma', '2017', 81.00, '', 1, '2022-06-14 08:58:54', 0, NULL, 0, NULL, 1),
(11456, 9033, '2', 'state board', '', '', '2010', 68.00, '', 1, '2022-06-14 09:04:36', 0, NULL, 0, NULL, 1),
(11457, 9033, '3', 'autonomus', '', 'bsc chemsitry', '2013', 58.00, '', 1, '2022-06-14 09:05:18', 0, NULL, 0, NULL, 1),
(11458, 9034, '1', 'state board', '', '', '2015', 82.00, '', 1, '2022-06-14 09:10:38', 0, NULL, 0, NULL, 1),
(11459, 9034, '5', 'govt ', '', 'diploma in mechatronics', '2018', 66.00, '', 1, '2022-06-14 09:11:08', 0, NULL, 0, NULL, 1),
(11460, 9036, '2', 'government', '', '', '2016', 56.00, '', 1, '2022-06-14 09:16:06', 0, NULL, 0, NULL, 1),
(11461, 9036, '3', 'bharathiyar university', '', 'bcom', '2019', 85.00, '', 1, '2022-06-14 09:16:26', 0, NULL, 0, NULL, 1),
(11462, 9037, '2', 'state board', '', '', '2017', 67.00, '', 1, '2022-06-14 09:54:48', 0, NULL, 0, NULL, 1),
(11463, 9037, '3', 'thiruvallur university', '', 'ba english', '2020', 50.00, '', 1, '2022-06-14 09:56:05', 0, NULL, 0, NULL, 1),
(11464, 9038, '3', 'Anna University ', '', 'BE cse', '2014', 70.00, '', 1, '2022-06-14 11:42:15', 0, NULL, 0, NULL, 1),
(11465, 9039, '5', 'Barath University ', '', 'Pg', '2018', 84.00, '', 1, '2022-06-15 10:12:05', 0, NULL, 0, NULL, 1),
(11466, 9040, '3', 'CRESCENT UNIVERSITY ', '', '', '2020', 7.50, '', 1, '2022-06-15 11:19:45', 0, NULL, 0, NULL, 1),
(11467, 9042, '1', 'KSEEB', '', '', '2019', 55.00, '', 1, '2022-06-15 12:52:21', 0, NULL, 0, NULL, 1),
(11468, 9043, '1', 'KSEEB', '', '', '2019', 52.00, '', 1, '2022-06-15 01:20:37', 0, NULL, 0, NULL, 1),
(11469, 9041, '3', 'davanagere univercity', '', 'bbm', '2014', 56.28, '', 1, '2022-06-15 01:22:13', 0, NULL, 0, NULL, 1),
(11470, 9045, '4', 'University of Madras ', '', 'MBA ', '2022', 72.00, '', 1, '2022-06-15 04:22:40', 0, NULL, 0, NULL, 1),
(11471, 9045, '3', 'Dharmapuram adhinam Arts college Mayiladuthurai', '', 'B.sc', '2020', 58.00, '', 1, '2022-06-15 04:23:56', 0, NULL, 0, NULL, 1),
(11472, 9046, '3', 'RRCE', '', 'BE', '2021', 78.00, '', 1, '2022-06-15 05:28:29', 0, NULL, 0, NULL, 1),
(11473, 9046, '2', 'Viswasai Junior College', '', '', '2017', 98.70, '', 1, '2022-06-15 05:29:28', 0, NULL, 0, NULL, 1),
(11474, 9046, '1', 'Ratnam high school', '', '', '2015', 100.00, '', 1, '2022-06-15 05:30:07', 0, NULL, 0, NULL, 1),
(11475, 9048, '2', 'state board', '', '', '2014', 89.00, '', 1, '2022-06-16 09:17:43', 0, NULL, 0, NULL, 1),
(11476, 9048, '3', 'anna university', '', 'be', '2018', 63.00, '', 1, '2022-06-16 09:18:11', 0, NULL, 0, NULL, 1),
(11477, 9049, '3', 'Anna University ', '', 'B.E', '2020', 60.00, '', 1, '2022-06-16 10:06:51', 0, NULL, 0, NULL, 1),
(11478, 9050, '3', 'Madras University', '', 'Bsc maths', '2019', 78.00, '', 1, '2022-06-16 10:14:25', 0, NULL, 0, NULL, 1),
(11479, 9051, '3', 'Bharathidasan University', '', 'B.sc Maths', '2019', 60.00, '', 1, '2022-06-16 10:40:22', 0, NULL, 0, NULL, 1),
(11480, 9052, '3', 'Bharathidasan University', '', 'B.com', '2020', 54.00, '', 1, '2022-06-16 10:54:01', 0, NULL, 0, NULL, 1),
(11481, 9053, '3', 'Dharmapuram Adinam Arts college', '', 'BCA', '2020', 72.00, '', 1, '2022-06-16 11:00:10', 0, NULL, 0, NULL, 1),
(11482, 9053, '2', 'SRKV higher secondary school', '', '', '2017', 67.00, '', 1, '2022-06-16 11:04:38', 0, NULL, 0, NULL, 1),
(11483, 9053, '1', 'SRKV higher secondary school', '', '', '2015', 71.00, '', 1, '2022-06-16 11:05:50', 0, NULL, 0, NULL, 1),
(11484, 9047, '1', 'State Board', '', '', '2013', 94.00, '', 1, '2022-06-16 11:12:00', 0, NULL, 0, NULL, 1),
(11485, 9047, '3', 'Anna University', '', 'BE - ECE', '2019', 67.00, '', 1, '2022-06-16 11:12:39', 0, NULL, 0, NULL, 1),
(11486, 9054, '1', 'State board', '', '', '2013', 66.00, '', 1, '2022-06-16 11:31:43', 0, NULL, 0, NULL, 1),
(11487, 9054, '3', 'Madras University ', '', 'Bba', '2020', 80.00, '', 1, '2022-06-16 11:32:10', 0, NULL, 0, NULL, 1),
(11488, 9055, '3', 'st.peters school of architecture ', '', 'b.arch', '2017', 7.50, '', 1, '2022-06-16 12:17:11', 0, NULL, 0, NULL, 1),
(11489, 9055, '4', 'itlh', '', 'pg diploma ', '2022', 8.00, '', 1, '2022-06-16 12:19:47', 0, NULL, 0, NULL, 1),
(11490, 9057, '1', 'state board', '', '', '2012', 48.00, '', 1, '2022-06-16 02:40:01', 0, NULL, 0, NULL, 1),
(11491, 9057, '5', 'diploma', '', 'diploma in modern office practice', '2015', 64.00, '', 1, '2022-06-16 02:40:32', 0, NULL, 0, NULL, 1),
(11492, 9059, '3', 'Vskub', '', 'Bcom(tpp) ', '2020', 73.30, '', 1, '2022-06-17 09:56:51', 0, NULL, 0, NULL, 1),
(11493, 9059, '1', 'KBEES', '', 'Bcom(tpp) ', '2020', 65.00, '', 1, '2022-06-17 09:58:00', 1, '2022-06-17 10:00:24', 0, NULL, 1),
(11494, 9059, '2', 'Pu board', '', '', '2020', 50.00, '', 1, '2022-06-17 09:59:45', 0, NULL, 0, NULL, 1),
(11495, 9061, '3', 'Madras University', '', 'BBA', '2021', 87.00, '', 1, '2022-06-17 10:34:55', 0, NULL, 0, NULL, 1),
(11496, 9062, '4', 'Bharatjidhasan university', '', 'MBA ', '2018', 78.00, '', 1, '2022-06-17 10:58:02', 0, NULL, 0, NULL, 1),
(11497, 9064, '3', 'periyar university', '', 'b sc', '2015', 78.00, '', 1, '2022-06-17 01:28:17', 0, NULL, 0, NULL, 1),
(11498, 9065, '1', 'the ramaseshier hr.sec.school', '', '', '2013', 85.00, '', 1, '2022-06-17 01:58:15', 0, NULL, 0, NULL, 1),
(11499, 9065, '2', 'the ramaseshier hr.se.school', '', '', '2015', 75.00, '', 1, '2022-06-17 01:59:29', 0, NULL, 0, NULL, 1),
(11500, 9065, '3', 'anna university', '', 'b.e computerscienceengineering', '2019', 78.00, '', 1, '2022-06-17 02:01:15', 0, NULL, 0, NULL, 1),
(11501, 9066, '1', 'Board ', '', '', '2020', 55.40, '', 1, '2022-06-17 03:17:04', 0, NULL, 0, NULL, 1),
(11502, 9063, '3', 'Mohamed Sathak College of Arts  and science', '', 'B.SC  Maths', '2020', 82.00, '', 85, '2022-06-17 04:37:02', 0, NULL, 0, NULL, 1),
(11503, 9068, '3', 'University ', '', 'B Tech - IT', '2022', 82.00, '', 1, '2022-06-18 10:17:44', 1, '2022-06-18 10:20:07', 0, NULL, 1),
(11504, 9068, '2', 'Board', '', '', '2018', 75.00, '', 1, '2022-06-18 10:20:35', 1, '2022-06-18 10:22:32', 0, NULL, 1),
(11505, 9068, '1', 'Board ', '', '', '2015', 90.00, '', 1, '2022-06-18 10:21:53', 0, NULL, 0, NULL, 1),
(11506, 9069, '3', 'Anna University', '', 'Eee', '2020', 75.00, '', 1, '2022-06-18 10:49:16', 0, NULL, 0, NULL, 1),
(11507, 9070, '2', 'state board', '', '', '2018', 70.00, '', 1, '2022-06-18 10:52:46', 0, NULL, 0, NULL, 1),
(11508, 9070, '3', 'vels university', '', 'be ', '2022', 80.00, '', 1, '2022-06-18 10:53:16', 0, NULL, 0, NULL, 1),
(11509, 9071, '1', 'Hmy gov hr sec school ', '', '', '2019', 50.00, '', 1, '2022-06-18 11:25:22', 0, NULL, 0, NULL, 1),
(11510, 9072, '4', 'Madras University', '', 'M.com', '2020', 73.00, '', 1, '2022-06-18 11:50:05', 0, NULL, 0, NULL, 1),
(11511, 9073, '1', 'State board ', '', '', '2016', 70.00, '', 1, '2022-06-18 01:46:57', 0, NULL, 0, NULL, 1),
(11512, 9073, '2', 'State board ', '', '', '2018', 75.00, '', 1, '2022-06-18 01:48:42', 0, NULL, 0, NULL, 1),
(11513, 9073, '3', 'Bharathiyar university ', '', 'B.COM', '2021', 63.00, '', 1, '2022-06-18 01:49:45', 0, NULL, 0, NULL, 1),
(11514, 9074, '1', ' state Board ', '', '', '2015', 72.00, '', 1, '2022-06-18 01:56:31', 0, NULL, 0, NULL, 1),
(11515, 9074, '2', 'State board', '', '', '2018', 80.00, '', 1, '2022-06-18 01:57:24', 0, NULL, 0, NULL, 1),
(11516, 9074, '3', 'Bharathiyar University', '', 'B.COM(PA)', '2021', 76.00, '', 1, '2022-06-18 01:58:10', 0, NULL, 0, NULL, 1),
(11517, 9075, '4', 'Anna University', '', 'MCA', '2020', 7.10, '', 1, '2022-06-18 01:59:43', 0, NULL, 0, NULL, 1),
(11518, 9075, '3', 'Bharathiyar University', '', 'Bsc(computer science) ', '2018', 68.90, '', 1, '2022-06-18 02:06:40', 0, NULL, 0, NULL, 1),
(11519, 9075, '2', 'State Board', '', '', '2015', 74.00, '', 1, '2022-06-18 02:10:06', 0, NULL, 0, NULL, 1),
(11520, 9075, '1', 'State Board', '', '', '2013', 79.00, '', 1, '2022-06-18 02:10:38', 0, NULL, 0, NULL, 1),
(11521, 9076, '3', 'University of Kerala', '', 'B.com', '2015', 60.00, '', 1, '2022-06-18 10:59:33', 0, NULL, 0, NULL, 1),
(11522, 9076, '5', 'Manipal University', '', 'PGDI', '2017', 80.00, '', 1, '2022-06-18 11:02:01', 0, NULL, 0, NULL, 1),
(11523, 9076, '2', 'State Board', '', '', '2008', 58.00, '', 1, '2022-06-18 11:03:14', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11524, 9076, '1', 'State Board', '', '', '2006', 60.00, '', 1, '2022-06-18 11:04:12', 0, NULL, 0, NULL, 1),
(11525, 9077, '3', 'Bharathiar University ', '', 'B.com (professional Accounting)', '2021', 76.00, '', 1, '2022-06-20 10:20:51', 0, NULL, 0, NULL, 1),
(11526, 9077, '1', 'State board ', '', '', '2016', 70.00, '', 1, '2022-06-20 10:22:23', 0, NULL, 0, NULL, 1),
(11527, 9077, '2', 'State board ', '', '', '2018', 66.00, '', 1, '2022-06-20 10:22:49', 0, NULL, 0, NULL, 1),
(11528, 9078, '4', 'Madras University', '', 'MBA HR', '2020', 68.00, '', 1, '2022-06-20 11:19:14', 0, NULL, 0, NULL, 1),
(11529, 9080, '4', 'University of madras', '', 'M. Com', '2022', 61.00, '', 1, '2022-06-20 11:54:08', 0, NULL, 0, NULL, 1),
(11530, 9079, '3', 'P S R  Arts And science college  ', '', 'B.com', '2020', 70.00, '', 1, '2022-06-20 12:06:09', 0, NULL, 0, NULL, 1),
(11531, 9081, '3', 'Bharathi women\'s  sart and science', '', 'Economic', '2012', 50.00, '', 1, '2022-06-20 12:06:51', 0, NULL, 0, NULL, 1),
(11532, 9084, '3', 'Board', '', 'B.Sc statistics', '2022', 65.00, '', 1, '2022-06-20 12:17:51', 0, NULL, 0, NULL, 1),
(11533, 9083, '3', 'Board', '', 'Bsc Statistics', '2022', 68.00, '', 1, '2022-06-20 12:19:25', 0, NULL, 0, NULL, 1),
(11534, 9085, '3', 'prist university', '', 'btech', '2021', 69.00, '', 1, '2022-06-20 12:33:48', 0, NULL, 0, NULL, 1),
(11535, 9086, '3', 'Paavai college of engineering Anna University ', '', 'BE/Mechanical ', '2019', 6.40, '', 1, '2022-06-20 04:41:17', 1, '2022-06-20 04:41:30', 0, NULL, 1),
(11536, 9087, '3', 'Madras University', '', 'B.Com', '2019', 75.00, '', 1, '2022-06-20 05:49:52', 0, NULL, 0, NULL, 1),
(11537, 9088, '3', 'Madras university', '', 'Bsc computer science', '2020', 63.00, '', 1, '2022-06-20 07:25:55', 0, NULL, 0, NULL, 1),
(11538, 9089, '3', 'Madras University ', '', 'B. Com', '2022', 70.00, '', 1, '2022-06-21 10:22:03', 0, NULL, 0, NULL, 1),
(11539, 9090, '2', 'state board', '', '', '2014', 65.00, '', 1, '2022-06-21 10:43:15', 0, NULL, 0, NULL, 1),
(11540, 9090, '3', 'madras university', '', 'bcom', '2017', 68.00, '', 1, '2022-06-21 10:43:51', 0, NULL, 0, NULL, 1),
(11541, 9092, '3', 'Kamarajar University ', '', 'B.sc chemistry ', '2019', 62.00, '', 1, '2022-06-21 11:37:00', 0, NULL, 0, NULL, 1),
(11542, 9091, '3', 'New College', '', 'B.A  Sociology', '2018', 78.00, '', 1, '2022-06-21 01:08:40', 0, NULL, 0, NULL, 1),
(11543, 9093, '3', 'Ms.University ', '', 'Botany ', '2021', 70.00, '', 1, '2022-06-21 03:06:35', 1, '2022-06-21 03:08:10', 0, NULL, 0),
(11544, 9093, '4', 'Ms University ', '', 'Botany ', '2021', 75.00, '', 1, '2022-06-21 03:08:19', 1, '2022-06-21 03:10:39', 0, NULL, 0),
(11545, 9093, '3', 'Ms University ', '', 'Botany ', '2015', 59.50, '', 1, '2022-06-21 03:08:46', 0, NULL, 0, NULL, 1),
(11546, 9093, '2', 'State board', '', '', '2012', 59.00, '', 1, '2022-06-21 03:09:16', 0, NULL, 0, NULL, 1),
(11547, 9093, '1', 'State Board ', '', '', '2010', 60.00, '', 1, '2022-06-21 03:09:39', 0, NULL, 0, NULL, 1),
(11548, 9093, '4', 'Ms University ', '', 'Botany ', '2021', 75.00, '', 1, '2022-06-21 03:11:17', 0, NULL, 0, NULL, 1),
(11549, 9096, '2', 'state board', '', '', '2018', 75.00, '', 1, '2022-06-22 08:33:40', 0, NULL, 0, NULL, 1),
(11550, 9096, '3', 'madras university', '', 'ba english', '2021', 88.00, '', 1, '2022-06-22 08:34:07', 0, NULL, 0, NULL, 1),
(11551, 9097, '1', 'state board', '', '', '2017', 45.00, '', 1, '2022-06-22 08:38:58', 0, NULL, 0, NULL, 1),
(11552, 9097, '5', 'virundhunagar', '', 'iti', '2019', 54.00, '', 1, '2022-06-22 08:39:21', 0, NULL, 0, NULL, 1),
(11553, 9098, '1', 'Bangalore university', '', '', '2012', 54.00, '', 1, '2022-06-22 10:07:29', 0, NULL, 0, NULL, 1),
(11554, 9098, '2', 'Bangalore university', '', '', '2014', 46.00, '', 1, '2022-06-22 10:07:56', 0, NULL, 0, NULL, 1),
(11555, 9099, '3', 'Bharathidasan university', '', 'Bsc', '2019', 65.00, '', 1, '2022-06-22 12:14:43', 0, NULL, 0, NULL, 1),
(11556, 9100, '3', 'bharathiar', '', 'bsc', '2018', 72.00, '', 1, '2022-06-22 12:23:48', 0, NULL, 0, NULL, 1),
(11557, 9095, '5', 'Madras ', '', 'Cse', '2017', 50.00, '', 1, '2022-06-22 12:41:55', 0, NULL, 0, NULL, 1),
(11558, 9102, '3', 'Bharathidhasan University ', '', 'BSC ', '2021', 73.00, '', 1, '2022-06-22 01:16:35', 0, NULL, 0, NULL, 1),
(11559, 9104, '3', 'University of madras', '', 'BBA', '2019', 69.00, '', 1, '2022-06-22 01:35:45', 0, NULL, 0, NULL, 1),
(11560, 9103, '3', 'Justice Basheer Ahmed Sayeed college for women ', '', 'B. Com', '2021', 67.00, '', 1, '2022-06-22 01:44:36', 0, NULL, 0, NULL, 1),
(11561, 9106, '3', 'Madras university', '', 'BCA', '2021', 68.00, '', 1, '2022-06-22 02:22:54', 0, NULL, 0, NULL, 1),
(11562, 9106, '2', 'Masi Matriculation Higher secondary school', '', '', '2018', 67.00, '', 1, '2022-06-22 02:23:20', 0, NULL, 0, NULL, 1),
(11563, 9106, '1', 'Masi matriculation Higher Secondary School', '', '', '2016', 87.00, '', 1, '2022-06-22 02:23:48', 0, NULL, 0, NULL, 1),
(11564, 9105, '4', 'Saveetha university', '', 'Btech', '2021', 76.00, '', 1, '2022-06-22 02:26:05', 0, NULL, 0, NULL, 1),
(11565, 9105, '4', 'Saveetha university', '', 'Btech', '2021', 76.00, '', 1, '2022-06-22 02:26:37', 1, '2022-06-22 02:26:44', 0, NULL, 0),
(11566, 9105, '1', 'Ap board', '', '', '2015', 9.10, '', 1, '2022-06-22 02:27:34', 1, '2022-06-22 02:28:25', 0, NULL, 1),
(11567, 9105, '2', 'NRI', '', '', '2017', 84.00, '', 1, '2022-06-22 02:28:03', 0, NULL, 0, NULL, 1),
(11568, 9108, '3', 'University ', '', 'BE', '2019', 65.00, '', 1, '2022-06-22 03:03:40', 0, NULL, 0, NULL, 1),
(11569, 9109, '3', 'Madras University ', '', 'B com', '2021', 70.00, '', 1, '2022-06-22 04:16:38', 0, NULL, 0, NULL, 1),
(11570, 9111, '2', 'osmania university ', '', '', '2022', 7.00, '', 1, '2022-06-22 08:09:37', 0, NULL, 0, NULL, 1),
(11571, 9112, '3', 'madras University', '', 'Bsc software application ', '2021', 80.00, '', 1, '2022-06-22 09:47:05', 0, NULL, 0, NULL, 1),
(11572, 9113, '3', 'Madras University ', '', 'BCA ', '2020', 61.00, '', 1, '2022-06-23 11:26:31', 0, NULL, 0, NULL, 1),
(11573, 9114, '3', 'madras university', '', 'Bsc(physics)', '2016', 60.00, '', 1, '2022-06-23 11:50:45', 0, NULL, 0, NULL, 1),
(11574, 9116, '1', 'Lilly rose English school', '', '', '2016', 57.00, '', 1, '2022-06-23 02:19:35', 0, NULL, 0, NULL, 1),
(11575, 9116, '2', 'Al ameen pu college', '', '', '2018', 60.00, '', 1, '2022-06-23 02:20:14', 0, NULL, 0, NULL, 1),
(11576, 9118, '4', 'Madars university', '', 'B.Com ISM', '2021', 75.00, '', 1, '2022-06-24 10:00:20', 0, NULL, 0, NULL, 1),
(11577, 9120, '3', 'quaid', '', 'b.sc maths', '2020', 70.00, '', 1, '2022-06-24 10:09:49', 0, NULL, 0, NULL, 1),
(11578, 9119, '3', 'university of madars', '', 'B.Com ISM', '2020', 83.60, '', 1, '2022-06-24 10:11:05', 0, NULL, 0, NULL, 1),
(11579, 9121, '3', 'Madrass University', '', 'B.com (corporate secretary ship)', '2022', 82.00, '', 1, '2022-06-24 11:04:29', 0, NULL, 0, NULL, 1),
(11580, 9122, '3', 'american college', '', 'b.sc maths', '2015', 83.00, '', 1, '2022-06-24 11:17:25', 0, NULL, 0, NULL, 1),
(11581, 9123, '3', 'Pasumpon muthuramalinga thevar college. Usilambatti', '', 'B.com', '2022', 60.00, '', 1, '2022-06-24 11:42:42', 0, NULL, 0, NULL, 1),
(11582, 9117, '3', 'Madras university ', '', 'B.sc chemistry', '2019', 75.00, '', 1, '2022-06-24 11:45:55', 0, NULL, 0, NULL, 1),
(11583, 9094, '5', 'JNTU UNIVERSITY ', '', 'Diploma ', '2014', 65.00, '', 1, '2022-06-24 11:45:59', 0, NULL, 0, NULL, 1),
(11584, 9124, '4', 'Karpagam University ', '', 'MBA ', '2022', 71.00, '', 1, '2022-06-24 11:48:52', 0, NULL, 0, NULL, 1),
(11585, 9126, '3', 'Bharathidasan university', '', 'BCA', '2020', 62.00, '', 1, '2022-06-24 12:02:17', 0, NULL, 0, NULL, 1),
(11586, 9125, '3', 'Anna university', '', 'B.com c.s ', '2022', 65.00, '', 1, '2022-06-24 12:02:57', 0, NULL, 0, NULL, 1),
(11587, 9127, '3', 'Madras University ', '', 'B.sc plant biology and plant biotechnology ', '2022', 68.00, '', 1, '2022-06-24 12:41:20', 0, NULL, 0, NULL, 1),
(11588, 9128, '3', 'University of madras', '', 'BBA', '2020', 75.00, '', 1, '2022-06-24 01:18:06', 0, NULL, 0, NULL, 1),
(11589, 9129, '3', 'Madras university ', '', 'B. Com (c.s) ', '2021', 70.00, '', 1, '2022-06-24 02:15:40', 0, NULL, 0, NULL, 1),
(11590, 9130, '3', 'University', '', 'BCA(Computer Application)', '2022', 84.00, '', 1, '2022-06-24 04:48:27', 1, '2022-06-24 04:48:37', 0, NULL, 0),
(11591, 9130, '1', 'State board', '', '', '2017', 82.00, '', 1, '2022-06-24 04:49:34', 1, '2022-06-24 04:49:43', 0, NULL, 0),
(11592, 9130, '1', 'CBSE', '', '', '2017', 82.00, '', 1, '2022-06-24 04:50:04', 0, NULL, 0, NULL, 1),
(11593, 9130, '2', 'State board', '', '', '2019', 74.00, '', 1, '2022-06-24 04:50:41', 0, NULL, 0, NULL, 1),
(11594, 9130, '3', 'University', '', 'BCA', '2022', 84.00, '', 1, '2022-06-24 04:51:18', 0, NULL, 0, NULL, 1),
(11595, 9132, '1', 'state board', '', '', '2017', 90.00, '', 1, '2022-06-24 07:19:36', 1, '2022-06-24 07:21:05', 0, NULL, 1),
(11596, 9132, '2', 'state board', '', '', '2019', 88.00, '', 1, '2022-06-24 07:19:55', 0, NULL, 0, NULL, 1),
(11597, 9132, '3', 'dg vaishnav college', '', 'bca', '2022', 80.00, '', 1, '2022-06-24 07:20:23', 1, '2022-06-24 07:20:57', 0, NULL, 1),
(11598, 9134, '2', 'State board', '', '', '2018', 81.00, '', 1, '2022-06-24 11:02:44', 0, NULL, 0, NULL, 1),
(11599, 9134, '3', 'Madras University ', '', 'Bcom', '2021', 75.00, '', 1, '2022-06-24 11:03:25', 0, NULL, 0, NULL, 1),
(11600, 9135, '1', 'State board', '', '', '2016', 66.00, '', 1, '2022-06-24 11:08:09', 0, NULL, 0, NULL, 1),
(11601, 9135, '3', 'Madras University ', '', 'Bcom', '2019', 76.00, '', 1, '2022-06-24 11:08:35', 0, NULL, 0, NULL, 1),
(11602, 9139, '3', 'bharadhidasan university', '', '', '2020', 80.00, '', 1, '2022-06-25 10:50:40', 0, NULL, 0, NULL, 1),
(11603, 9140, '3', 'Bharathiyar university ', '', 'BBA', '2022', 65.00, '', 1, '2022-06-25 11:21:22', 0, NULL, 0, NULL, 1),
(11604, 9142, '3', 'Madras university', '', 'B. Com ', '2020', 60.00, '', 1, '2022-06-25 01:11:52', 0, NULL, 0, NULL, 1),
(11605, 9141, '3', 'Anna university', '', 'Bachelor of Engineering ', '2022', 8.30, '', 1, '2022-06-25 01:12:04', 0, NULL, 0, NULL, 1),
(11606, 9141, '2', 'State Board Of Tamil nadu', '', '', '2018', 66.67, '', 1, '2022-06-25 01:12:51', 1, '2022-06-25 01:15:09', 0, NULL, 1),
(11607, 9141, '1', 'State board of tamil nadu', '', '', '2016', 82.60, '', 1, '2022-06-25 01:14:02', 0, NULL, 0, NULL, 1),
(11608, 9142, '1', 'Cbsc', '', '', '2015', 7.00, '', 1, '2022-06-25 01:14:18', 0, NULL, 0, NULL, 1),
(11609, 9142, '2', 'State boad', '', '', '2017', 80.00, '', 1, '2022-06-25 01:15:01', 0, NULL, 0, NULL, 1),
(11610, 9146, '3', 'Anna university ', '', 'BE', '2020', 74.00, '', 1, '2022-06-27 10:19:39', 0, NULL, 0, NULL, 1),
(11611, 9146, '2', 'State board ', '', '', '2016', 64.00, '', 1, '2022-06-27 10:21:11', 0, NULL, 0, NULL, 1),
(11612, 9146, '1', 'Secondary board ', '', '', '2014', 62.00, '', 1, '2022-06-27 10:22:09', 0, NULL, 0, NULL, 1),
(11613, 9143, '1', 'State board', '', '', '2014', 80.00, '', 1, '2022-06-27 10:28:10', 0, NULL, 0, NULL, 1),
(11614, 9143, '2', 'State board', '', '', '2016', 65.00, '', 1, '2022-06-27 10:28:34', 0, NULL, 0, NULL, 1),
(11615, 9143, '3', 'Anna University', '', 'BE', '2020', 68.00, '', 1, '2022-06-27 10:29:05', 0, NULL, 0, NULL, 1),
(11616, 9149, '3', 'Bharathiar University ', '', 'BBA', '2022', 60.70, '', 1, '2022-06-27 10:33:42', 0, NULL, 0, NULL, 1),
(11617, 9148, '3', 'Bharathiar University', '', 'BBA', '2022', 76.10, '', 1, '2022-06-27 10:37:59', 0, NULL, 0, NULL, 1),
(11618, 9147, '4', 'bharathidhasan university', '', 'm.sc mathemaics', '2021', 80.00, '', 1, '2022-06-27 11:21:42', 0, NULL, 0, NULL, 1),
(11619, 9150, '3', 'Stella Maris College', '', 'B. Com (General) ', '2022', 70.00, '', 1, '2022-06-27 11:32:37', 0, NULL, 0, NULL, 1),
(11620, 9152, '3', 'Am jain college', '', 'Bba', '2019', 63.00, '', 1, '2022-06-27 11:33:37', 0, NULL, 0, NULL, 1),
(11621, 9151, '3', 'Madras University ', '', 'Bba', '2019', 90.00, '', 1, '2022-06-27 11:36:59', 0, NULL, 0, NULL, 1),
(11622, 9153, '4', 'Barathiyar University ', '', 'MBA - HR, Marketing ', '2020', 69.00, '', 1, '2022-06-27 11:54:13', 0, NULL, 0, NULL, 1),
(11623, 9155, '4', 'Alagappa University ', '', 'MBA', '2021', 75.00, '', 1, '2022-06-27 03:10:34', 0, NULL, 0, NULL, 1),
(11624, 9157, '1', 'Government', '', 'BCA', '2015', 85.35, '', 1, '2022-06-28 10:07:45', 1, '2022-06-28 10:09:20', 0, NULL, 0),
(11625, 9157, '2', 'Sri saradha vidhyalaya', '', '', '2017', 71.25, '', 1, '2022-06-28 10:08:16', 1, '2022-06-28 10:09:07', 0, NULL, 0),
(11626, 9157, '1', 'Government High School', '', '', '2015', 85.35, '', 1, '2022-06-28 10:09:47', 0, NULL, 0, NULL, 1),
(11627, 9157, '2', 'Sri saradha vidhyalaya', '', '', '2017', 71.25, '', 1, '2022-06-28 10:10:17', 0, NULL, 0, NULL, 1),
(11628, 9157, '3', 'Periyar University', '', 'BCA', '2020', 77.20, '', 1, '2022-06-28 10:10:50', 0, NULL, 0, NULL, 1),
(11629, 9161, '3', 'Sri Venkateshwara University ', '', 'Bcom CA', '2021', 75.00, '', 1, '2022-06-28 10:35:19', 0, NULL, 0, NULL, 1),
(11630, 9160, '3', 'sv.university, Tirupati ', '', 'B.Com', '2021', 75.00, '', 1, '2022-06-28 10:40:20', 0, NULL, 0, NULL, 1),
(11631, 9159, '3', 'Anna univesitY', '', 'BE', '2021', 60.00, '', 85, '2022-06-28 10:49:58', 0, NULL, 0, NULL, 1),
(11632, 9162, '3', 'Presidency college', '', 'BA Tamil literature', '2022', 75.00, '', 1, '2022-06-28 10:50:46', 0, NULL, 0, NULL, 1),
(11633, 9164, '3', 'Madras University', '', 'B.com', '2019', 70.00, '', 1, '2022-06-28 10:59:46', 0, NULL, 0, NULL, 1),
(11634, 9158, '3', 'anna university', '', 'b.e', '2021', 75.00, '', 1, '2022-06-28 11:08:32', 0, NULL, 0, NULL, 1),
(11635, 9163, '3', 'Indian Institute Of Integrated Science and Technology ', '', 'B:SC IT', '2013', 75.00, '', 1, '2022-06-28 11:11:35', 0, NULL, 0, NULL, 1),
(11636, 9165, '3', 'Anna university', '', 'B.E', '2019', 70.00, '', 1, '2022-06-28 11:39:06', 0, NULL, 0, NULL, 1),
(11637, 9166, '3', 'PRIST UNIVERSITY ', '', 'B.com CA', '2021', 75.00, '', 1, '2022-06-28 11:49:26', 0, NULL, 0, NULL, 1),
(11638, 9167, '3', 'prist university', '', 'b.com', '2021', 63.00, '', 1, '2022-06-28 12:18:59', 0, NULL, 0, NULL, 1),
(11639, 9168, '5', 'Bharat Sevak samaj ', '', '', '2019', 75.00, '', 1, '2022-06-28 12:20:59', 0, NULL, 0, NULL, 1),
(11640, 9169, '4', 'B.S.Abdur rahman crescent institute and technology ', '', 'MBA', '2018', 62.00, '', 1, '2022-06-28 12:40:13', 0, NULL, 0, NULL, 1),
(11641, 9171, '2', 'Madiwala college', '', '', '2017', 36.00, '', 1, '2022-06-28 05:50:17', 0, NULL, 0, NULL, 1),
(11642, 9170, '4', 'Madras University ', '', 'MA HRM ', '2021', 72.00, '', 1, '2022-06-28 05:52:18', 0, NULL, 0, NULL, 1),
(11643, 9174, '3', 'anna university', '', '  engineering', '2019', 6.45, '', 1, '2022-06-29 10:53:45', 0, NULL, 0, NULL, 1),
(11644, 9176, '1', 'Cbse board', '', '', '2003', 49.00, '', 1, '2022-06-29 11:27:31', 0, NULL, 0, NULL, 1),
(11645, 9176, '2', 'Karnataka state board', '', '', '2006', 49.00, '', 1, '2022-06-29 11:28:01', 0, NULL, 0, NULL, 1),
(11646, 9176, '3', 'Madras university', '', 'BBA', '2010', 49.00, '', 1, '2022-06-29 11:28:31', 0, NULL, 0, NULL, 1),
(11647, 9175, '1', 'State board', '', '', '2014', 70.00, '', 1, '2022-06-29 11:33:01', 0, NULL, 0, NULL, 1),
(11648, 9175, '2', 'State board', '', '', '2016', 70.00, '', 1, '2022-06-29 11:33:42', 0, NULL, 0, NULL, 1),
(11649, 9175, '3', 'Vels university ', '', 'B.comm', '2019', 75.00, '', 1, '2022-06-29 11:34:16', 0, NULL, 0, NULL, 1),
(11650, 9177, '3', 'Tamil Nadu Dr.J.Jayalalithaa Fisheries University ', '', '3years', '2022', 85.00, '', 1, '2022-06-29 12:21:22', 0, NULL, 0, NULL, 1),
(11651, 9180, '3', 'Chellammal wemon College ', '', 'BBA', '2022', 75.00, '', 1, '2022-06-29 02:25:37', 0, NULL, 0, NULL, 1),
(11652, 9181, '3', 'Chellama women\'s college ', '', 'Bba', '2022', 65.00, '', 1, '2022-06-29 02:30:12', 0, NULL, 0, NULL, 1),
(11653, 9182, '4', 'Anna University ', '', 'ME', '2019', 75.60, '', 1, '2022-06-29 03:13:42', 0, NULL, 0, NULL, 1),
(11654, 9183, '4', 'Manonmaniam sundaranar University', '', 'M. Sc', '2022', 92.50, '', 1, '2022-06-29 08:06:46', 0, NULL, 0, NULL, 1),
(11655, 9184, '4', 'Crescent university', '', 'MCA', '2022', 75.00, '', 1, '2022-06-30 09:39:39', 0, NULL, 0, NULL, 1),
(11656, 9185, '1', 'State board ', '', '', '2012', 65.00, '', 1, '2022-06-30 10:35:18', 0, NULL, 0, NULL, 1),
(11657, 9185, '2', 'State board ', '', '', '2014', 55.00, '', 1, '2022-06-30 10:35:54', 0, NULL, 0, NULL, 1),
(11658, 9185, '3', 'Anna University ', '', 'BE', '2018', 65.00, '', 1, '2022-06-30 10:36:25', 0, NULL, 0, NULL, 1),
(11659, 9187, '3', 'Bharathidasan university ', '', 'B.com', '2017', 70.00, '', 1, '2022-06-30 10:38:43', 0, NULL, 0, NULL, 1),
(11660, 9186, '5', 'Apollo computer education', '', 'MMSE', '2014', 70.00, '', 1, '2022-06-30 10:45:15', 0, NULL, 0, NULL, 1),
(11661, 9189, '3', 'mgr University ', '', 'ba economics', '2021', 55.00, '', 1, '2022-06-30 11:30:09', 0, NULL, 0, NULL, 1),
(11662, 9188, '3', 'bharthidhasan university', '', 'b.sc', '2020', 71.00, '', 1, '2022-06-30 12:07:43', 0, NULL, 0, NULL, 1),
(11663, 9190, '3', 'bangalore university', '', 'iti ', '2016', 76.00, '', 1, '2022-06-30 12:12:57', 0, NULL, 0, NULL, 1),
(11664, 9191, '3', 'Thiruvallur University ', '', 'Ba', '2018', 87.00, '', 1, '2022-06-30 01:01:34', 0, NULL, 0, NULL, 1),
(11665, 9144, '2', 'St. Joseph of Cluny matric Hr sec school', '', 'BA', '2017', 73.00, '', 1, '2022-06-30 01:17:20', 0, NULL, 0, NULL, 1),
(11666, 9193, '3', 'Bharathidasan', '', 'Bsc', '2021', 80.00, '', 1, '2022-06-30 03:03:16', 0, NULL, 0, NULL, 1),
(11667, 9196, '3', 'Bharathidhasan university', '', 'B.com', '2021', 65.00, '', 1, '2022-06-30 03:07:45', 0, NULL, 0, NULL, 1),
(11668, 9197, '3', 'Bharathidasan ', '', 'Bsc', '2019', 60.00, '', 1, '2022-06-30 03:15:52', 0, NULL, 0, NULL, 1),
(11669, 9194, '3', 'bharadhidasan university', '', 'physics', '2021', 81.60, '', 1, '2022-06-30 03:17:31', 0, NULL, 0, NULL, 1),
(11670, 9198, '3', 'Bharathidasan ', '', 'BA', '2019', 70.00, '', 1, '2022-06-30 03:23:29', 0, NULL, 0, NULL, 1),
(11671, 9195, '1', 'state board', '', '', '1997', 70.00, '', 1, '2022-06-30 03:25:31', 0, NULL, 0, NULL, 1),
(11672, 9202, '1', 'State board', '', '', '2014', 75.00, '', 1, '2022-07-01 10:37:23', 0, NULL, 0, NULL, 1),
(11673, 9202, '2', 'State board', '', '', '2016', 69.50, '', 1, '2022-07-01 10:39:31', 0, NULL, 0, NULL, 1),
(11674, 9202, '3', 'Bharadhidhasan university', '', 'B com', '2019', 61.90, '', 1, '2022-07-01 10:40:17', 0, NULL, 0, NULL, 1),
(11675, 9203, '3', 'Technical education center ', '', 'B.sc agriculture ', '2018', 65.00, '', 1, '2022-07-01 10:41:24', 0, NULL, 0, NULL, 1),
(11676, 9204, '1', 'St Peter\'s school ', '', '', '2012', 50.00, '', 1, '2022-07-01 10:42:14', 0, NULL, 0, NULL, 1),
(11677, 9205, '1', 'Shri Amrita hr.sec School ', '', '', '2013', 75.00, '', 1, '2022-07-01 10:50:07', 0, NULL, 0, NULL, 1),
(11678, 9205, '2', 'Shri Amrita HR.sec School', '', '', '2015', 75.00, '', 1, '2022-07-01 10:50:54', 0, NULL, 0, NULL, 1),
(11679, 9205, '3', 'Priyadarshini Engineering college ', '', 'B.E Civil ', '2019', 70.00, '', 1, '2022-07-01 10:51:34', 0, NULL, 0, NULL, 1),
(11680, 9207, '3', 'Chennai institute of technology ', '', 'B. E', '2017', 75.00, '', 1, '2022-07-01 11:04:56', 0, NULL, 0, NULL, 1),
(11681, 9206, '3', 'loyala college', '', 'b.a ', '2022', 71.00, '', 1, '2022-07-01 11:31:42', 0, NULL, 0, NULL, 1),
(11682, 9206, '1', 'Madras Christian higher secondary school ', '', '', '2016', 70.00, '', 1, '2022-07-01 11:32:40', 0, NULL, 0, NULL, 1),
(11683, 9206, '2', 'Madras Christian higher secondary school ', '', '', '2018', 75.00, '', 1, '2022-07-01 11:32:54', 0, NULL, 0, NULL, 1),
(11684, 9208, '4', 'JNTUA', '', 'MBA', '2021', 72.00, '', 1, '2022-07-01 11:39:06', 0, NULL, 0, NULL, 1),
(11685, 9200, '3', 'bhkatabhaktkvatsallam ', '', 'bcom', '2022', 63.00, '', 1, '2022-07-01 11:39:45', 0, NULL, 0, NULL, 1),
(11686, 9210, '2', 'Higher secondary ', '', '', '2019', 60.00, '', 1, '2022-07-01 12:12:30', 0, NULL, 0, NULL, 1),
(11687, 9209, '5', 'Iid community college', '', 'Diploma', '2015', 80.00, '', 1, '2022-07-01 12:13:44', 0, NULL, 0, NULL, 1),
(11688, 9212, '3', 'Periyar university', '', 'B.sc.', '2020', 63.00, '', 1, '2022-07-01 03:16:09', 0, NULL, 0, NULL, 1),
(11689, 9212, '2', 'Tamil nadu State board', '', '', '2016', 65.00, '', 1, '2022-07-01 03:16:31', 0, NULL, 0, NULL, 1),
(11690, 9212, '1', 'Tamil nadu state board', '', '', '2014', 72.00, '', 1, '2022-07-01 03:16:49', 0, NULL, 0, NULL, 1),
(11691, 9212, '4', 'Periyar university', '', 'M.sc.', '2022', 65.00, '', 1, '2022-07-01 03:17:09', 0, NULL, 0, NULL, 1),
(11692, 9214, '4', 'Andhra University ', '', 'Mba finance', '2022', 73.00, '', 1, '2022-07-02 10:40:21', 0, NULL, 0, NULL, 1),
(11693, 9215, '1', 'State Board ', '', '', '2016', 70.00, '', 1, '2022-07-02 10:46:02', 1, '2022-07-02 10:47:54', 0, NULL, 0),
(11694, 9215, '2', 'Madras University ', '', '', '2018', 79.00, '', 1, '2022-07-02 10:46:43', 1, '2022-07-02 10:47:47', 0, NULL, 0),
(11695, 9215, '2', 'State Board ', '', '', '2018', 79.00, '', 1, '2022-07-02 10:48:11', 1, '2022-07-02 10:48:20', 0, NULL, 0),
(11696, 9215, '1', 'State Board ', '', '', '2016', 70.00, '', 1, '2022-07-02 10:48:35', 0, NULL, 0, NULL, 1),
(11697, 9215, '2', 'State Board ', '', '', '2018', 79.00, '', 1, '2022-07-02 10:48:48', 0, NULL, 0, NULL, 1),
(11698, 9215, '3', 'Madras University ', '', 'B.com CS ', '2022', 70.00, '', 1, '2022-07-02 10:49:12', 0, NULL, 0, NULL, 1),
(11699, 9216, '4', 'Bharathidhasan University ', '', 'Physics ', '2019', 86.00, '', 1, '2022-07-02 10:49:33', 0, NULL, 0, NULL, 1),
(11700, 9218, '3', 'madras university', '', 'bca', '2021', 75.00, '', 1, '2022-07-02 11:24:07', 0, NULL, 0, NULL, 1),
(11701, 9219, '3', 'University of madras', '', 'B. Com af', '2022', 81.00, '', 1, '2022-07-02 11:31:07', 0, NULL, 0, NULL, 1),
(11702, 9222, '3', 'University', '', 'B. Com', '2022', 80.00, '', 1, '2022-07-02 11:53:30', 0, NULL, 0, NULL, 1),
(11703, 9223, '3', 'Madras univercity', '', 'B.A ', '2019', 55.00, '', 1, '2022-07-02 11:58:38', 0, NULL, 0, NULL, 1),
(11704, 9221, '3', 'madras university', '', 'b.com', '2022', 68.00, '', 1, '2022-07-02 12:01:54', 0, NULL, 0, NULL, 1),
(11705, 9220, '3', 'B.Com Accounting Finance', '', 'madras university', '2022', 70.00, '', 1, '2022-07-02 12:29:26', 0, NULL, 0, NULL, 1),
(11706, 9224, '5', 'Vivekananda ', '', 'Mechanical', '2017', 85.00, '', 1, '2022-07-02 12:56:37', 0, NULL, 0, NULL, 1),
(11707, 9225, '3', 'barathithhasan', '', 'b.com', '2021', 61.00, '', 1, '2022-07-02 03:18:37', 0, NULL, 0, NULL, 1),
(11708, 9227, '3', 'S V University ', '', 'BBA', '2021', 84.50, '', 1, '2022-07-02 06:35:22', 0, NULL, 0, NULL, 1),
(11709, 9227, '2', 'Board of Intermediate (AP)', '', '', '2018', 90.60, '', 1, '2022-07-02 06:36:04', 0, NULL, 0, NULL, 1),
(11710, 9227, '1', 'Board of Secondary Education (AP)', '', '', '2016', 88.00, '', 1, '2022-07-02 06:36:33', 0, NULL, 0, NULL, 1),
(11711, 9229, '3', 'Periyar manniammai institute of science and technology ', '', 'BBA', '2020', 75.00, '', 1, '2022-07-04 09:51:25', 0, NULL, 0, NULL, 1),
(11712, 9230, '1', 'Tamilnadu state Board ', '', '', '2011', 74.50, '', 1, '2022-07-04 10:47:09', 0, NULL, 0, NULL, 1),
(11713, 9230, '2', 'Tamilnadu state board', '', '', '2013', 51.00, '', 1, '2022-07-04 10:47:36', 0, NULL, 0, NULL, 1),
(11714, 9232, '3', 'Madras University ', '', 'B.com (Accounting and finance)', '2021', 87.50, '', 1, '2022-07-04 10:51:35', 0, NULL, 0, NULL, 1),
(11715, 9232, '2', 'State board ', '', '', '2018', 79.50, '', 1, '2022-07-04 10:52:12', 0, NULL, 0, NULL, 1),
(11716, 9232, '1', 'State board ', '', '', '2016', 87.40, '', 1, '2022-07-04 10:52:31', 0, NULL, 0, NULL, 1),
(11717, 9133, '3', 'Madras University ', '', 'B com', '2022', 60.00, '', 1, '2022-07-04 11:02:48', 0, NULL, 0, NULL, 1),
(11718, 9233, '3', 'Madras University', '', 'B.com', '2022', 75.00, '', 1, '2022-07-04 11:09:30', 0, NULL, 0, NULL, 1),
(11719, 9231, '3', 'Madras university', '', 'Bsc maths', '2018', 70.00, '', 1, '2022-07-04 11:18:47', 0, NULL, 0, NULL, 1),
(11720, 9234, '3', 'madres', '', 'B.com ', '2022', 60.00, '', 1, '2022-07-04 11:24:47', 0, NULL, 0, NULL, 1),
(11721, 9235, '3', 'Madras university ', '', 'BSc maths', '2018', 75.00, '', 1, '2022-07-04 11:31:22', 0, NULL, 0, NULL, 1),
(11722, 9237, '3', 'Anna university ', '', 'BE', '2019', 73.00, '', 1, '2022-07-04 11:46:34', 0, NULL, 0, NULL, 1),
(11723, 9237, '1', 'Matriculation ', '', '', '2011', 78.00, '', 1, '2022-07-04 11:47:17', 0, NULL, 0, NULL, 1),
(11724, 9236, '3', 'loyola college', '', 'b.voc digital journalism', '2021', 54.80, '', 1, '2022-07-04 12:09:37', 0, NULL, 0, NULL, 1),
(11725, 9238, '3', 'MADRAS UNIVERSITY ', '', 'B.com Accounting and finance ', '2022', 60.00, '', 1, '2022-07-04 12:10:07', 0, NULL, 0, NULL, 1),
(11726, 9241, '3', 'State board ', '', 'Ba English literature ', '2022', 50.00, '', 1, '2022-07-04 12:24:18', 0, NULL, 0, NULL, 1),
(11727, 9243, '3', 'Meenakshi college for women', '', 'BA economics', '2022', 84.00, '', 1, '2022-07-04 12:26:40', 0, NULL, 0, NULL, 1),
(11728, 9240, '3', 'university of madras', '', 'b.com', '2022', 75.00, '', 1, '2022-07-04 12:47:49', 0, NULL, 0, NULL, 1),
(11729, 9242, '3', 'Quaid-E Millath Government College for womens', '', 'B.com(General)', '2022', 84.00, '', 1, '2022-07-04 12:49:11', 0, NULL, 0, NULL, 1),
(11730, 9247, '4', 'Madras University ', '', 'Ma.hr', '2022', 77.00, '', 1, '2022-07-04 12:58:44', 0, NULL, 0, NULL, 1),
(11731, 9246, '3', 'Justice Basheer Ahmed sayeed college for women ', '', 'b.com ', '2022', 85.00, '', 1, '2022-07-04 01:02:11', 0, NULL, 0, NULL, 1),
(11732, 8839, '3', 'Barathidhasan university ', '', 'Bsc-visual communication ', '2022', 70.00, '', 1, '2022-07-04 01:11:34', 0, NULL, 0, NULL, 1),
(11733, 9245, '3', 'MGR janaki college  for women\'s ', '', 'Bba', '2022', 90.00, '', 1, '2022-07-04 01:12:13', 0, NULL, 0, NULL, 1),
(11734, 9248, '4', 'QueenMary’sCollege', '', 'm.a ', '2021', 67.00, '', 1, '2022-07-04 01:29:12', 0, NULL, 0, NULL, 1),
(11735, 9249, '2', 'Laurel senior secondary school ', '', '', '2019', 75.00, '', 1, '2022-07-04 03:48:07', 0, NULL, 0, NULL, 1),
(11736, 9249, '3', 'Icai', '', 'Chartered accountant foundation ', '2020', 59.00, '', 1, '2022-07-04 03:48:49', 0, NULL, 0, NULL, 1),
(11737, 9250, '3', 'sree vidyanikethan engineering college', '', 'btech', '2021', 64.09, '', 1, '2022-07-04 03:54:23', 0, NULL, 0, NULL, 1),
(11738, 9251, '4', 'government arts  science college', '', 'Mcom', '2021', 60.00, '', 1, '2022-07-04 04:36:04', 0, NULL, 0, NULL, 1),
(11739, 9254, '4', 'Madras university', '', 'MBA ', '2020', 66.00, '', 1, '2022-07-05 10:47:33', 0, NULL, 0, NULL, 1),
(11740, 9256, '3', 'Madras university ', '', 'BA economics', '2022', 80.00, '', 1, '2022-07-05 10:54:58', 0, NULL, 0, NULL, 1),
(11741, 9253, '3', 'Anna University', '', 'BE (EEE)', '2019', 6.70, '', 1, '2022-07-05 10:58:42', 0, NULL, 0, NULL, 1),
(11742, 9255, '3', 'ou', '', 'bcom', '2020', 71.00, '', 1, '2022-07-05 11:05:51', 0, NULL, 0, NULL, 1),
(11743, 9258, '2', 'Bes', '', '', '2014', 78.00, '', 1, '2022-07-05 11:32:12', 0, NULL, 0, NULL, 1),
(11744, 9257, '3', 'Gurunanak college ', '', 'B.Com Bank management ', '2022', 65.70, '', 1, '2022-07-05 11:32:54', 0, NULL, 0, NULL, 1),
(11745, 9261, '3', 'Anna university', '', 'BE', '2020', 69.00, '', 1, '2022-07-05 12:07:46', 0, NULL, 0, NULL, 1),
(11746, 9260, '3', 'Bhardhithasan university', '', 'B.sc chemistry', '2017', 65.00, '', 1, '2022-07-05 12:18:08', 0, NULL, 0, NULL, 1),
(11747, 9259, '5', 'STATE BOARD', '', '', '2019', 65.00, '', 1, '2022-07-05 12:19:32', 0, NULL, 0, NULL, 1),
(11748, 9262, '3', 'Madras  university ', '', 'BSc computer science ', '2022', 78.20, '', 1, '2022-07-05 12:20:22', 0, NULL, 0, NULL, 1),
(11749, 9263, '2', 'state board', '', '', '2018', 80.00, '', 1, '2022-07-05 12:31:14', 0, NULL, 0, NULL, 1),
(11750, 9265, '3', 'Madras university ', '', 'Bsc', '2022', 78.02, '', 1, '2022-07-05 12:49:13', 0, NULL, 0, NULL, 1),
(11751, 9267, '3', 'Bharathidasan University ', '', 'B.com', '2018', 65.00, '', 1, '2022-07-05 01:00:43', 0, NULL, 0, NULL, 1),
(11752, 9268, '4', 'Bharathidasan University ', '', 'MBA ', '2020', 78.00, '', 1, '2022-07-05 01:03:36', 0, NULL, 0, NULL, 1),
(11753, 9266, '5', 'dot', '', '', '2016', 68.00, '', 1, '2022-07-05 01:14:33', 0, NULL, 0, NULL, 1),
(11754, 9244, '3', 'Madras university', '', 'B. Com(general) ', '2022', 75.00, '', 1, '2022-07-05 02:15:10', 0, NULL, 0, NULL, 1),
(11755, 9272, '3', 'Madras University ', '', 'B.com general ', '2022', 81.00, '', 1, '2022-07-05 02:15:21', 0, NULL, 0, NULL, 1),
(11756, 9271, '3', 'madras university ', '', 'BCA', '2022', 71.00, '', 1, '2022-07-05 02:52:44', 0, NULL, 0, NULL, 1),
(11757, 9273, '3', 'University', '', 'Bsc.Mathematics', '2022', 80.00, '', 1, '2022-07-05 03:00:17', 0, NULL, 0, NULL, 1),
(11758, 9274, '4', 'Annamalai University', '', 'MSc(sE)', '2014', 80.00, '', 1, '2022-07-05 03:19:41', 0, NULL, 0, NULL, 1),
(11759, 9275, '3', 'Srm Institute Of Science And Technology ', '', 'bCA(Computer Application)', '2021', 83.00, '', 1, '2022-07-05 04:58:58', 0, NULL, 0, NULL, 1),
(11760, 9276, '3', 'Thanthai Periyar Government Institute of Technology ', '', 'B.E.', '2022', 7.35, '', 1, '2022-07-05 05:57:02', 0, NULL, 0, NULL, 1),
(11761, 9277, '3', 'sree muthukumara swamy college', '', 'bca', '2022', 60.00, '', 1, '2022-07-05 09:06:13', 0, NULL, 0, NULL, 1),
(11762, 9279, '3', 'Agni college of technology ', '', 'B.E Mechatronics engineering ', '2021', 76.00, '', 1, '2022-07-06 10:23:53', 0, NULL, 0, NULL, 1),
(11763, 9280, '1', 'State board', '', '', '2016', 92.00, '', 1, '2022-07-06 10:46:45', 1, '2022-07-06 10:47:29', 0, NULL, 1),
(11764, 9280, '2', 'State board', '', '', '2018', 82.00, '', 1, '2022-07-06 10:47:10', 0, NULL, 0, NULL, 1),
(11765, 9280, '3', 'Anna University', '', 'B.E', '2022', 81.00, '', 1, '2022-07-06 10:47:59', 0, NULL, 0, NULL, 1),
(11766, 9281, '3', 'Anna university ', '', 'EEE', '2018', 68.00, '', 1, '2022-07-06 11:21:58', 0, NULL, 0, NULL, 1),
(11767, 9278, '4', 'Bharathidasan University ', '', 'Msc', '2022', 84.00, '', 1, '2022-07-06 12:25:11', 0, NULL, 0, NULL, 1),
(11768, 9283, '3', 'University ', '', 'bsc.cs', '2021', 63.00, '', 1, '2022-07-06 12:49:29', 0, NULL, 0, NULL, 1),
(11769, 9284, '3', 'University', '', 'B.com CA ', '2020', 63.00, '', 1, '2022-07-06 12:49:54', 0, NULL, 0, NULL, 1),
(11770, 9285, '3', 'University ', '', 'B.com', '2017', 65.00, '', 1, '2022-07-06 12:57:15', 0, NULL, 0, NULL, 1),
(11771, 9286, '3', 'State', '', 'B. A (Economics) ', '2021', 70.00, '', 1, '2022-07-06 01:32:35', 0, NULL, 0, NULL, 1),
(11772, 9287, '4', 'manonmaniam sundarnar university tirunelvelai', '', 'mca', '2022', 85.00, '', 1, '2022-07-06 03:24:57', 0, NULL, 0, NULL, 1),
(11773, 9288, '4', 'Anna University', '', 'Mca', '2021', 89.00, '', 1, '2022-07-06 04:53:03', 0, NULL, 0, NULL, 1),
(11774, 9288, '1', 'R c hr sec school sendivakkam', '', '', '2014', 75.00, '', 1, '2022-07-06 04:53:46', 0, NULL, 0, NULL, 1),
(11775, 9288, '2', 'R c hr sec school sendivakkam', '', '', '2016', 64.00, '', 1, '2022-07-06 04:54:04', 0, NULL, 0, NULL, 1),
(11776, 9289, '2', 'state board', '', '', '2018', 80.00, '', 1, '2022-07-06 08:23:12', 0, NULL, 0, NULL, 1),
(11777, 9289, '3', 'madras university', '', 'bcom', '2021', 65.00, '', 1, '2022-07-06 08:23:41', 0, NULL, 0, NULL, 1),
(11778, 9290, '2', 'state board', '', '', '2019', 82.00, '', 1, '2022-07-06 08:48:28', 0, NULL, 0, NULL, 1),
(11779, 9290, '3', 'autonomus', '', 'ba', '2022', 67.00, '', 1, '2022-07-06 08:49:08', 0, NULL, 0, NULL, 1),
(11780, 9291, '3', 'ANNAMALAI UNIVERSITY ', '', 'Bsc computer science ', '2022', 60.50, '', 1, '2022-07-07 10:00:15', 0, NULL, 0, NULL, 1),
(11781, 9292, '3', 'manonmaniam sundaranar university ', '', 'B. SC [Computer Science]', '2019', 69.50, '', 1, '2022-07-07 10:00:17', 0, NULL, 0, NULL, 1),
(11782, 9293, '3', 'Madras university', '', 'BCA', '2022', 80.00, '', 1, '2022-07-07 10:14:58', 0, NULL, 0, NULL, 1),
(11783, 9294, '3', 'BHARATHIDHASAN UNIVERSITY, TRICHY ', '', 'BCA', '2022', 70.00, '', 1, '2022-07-07 10:24:01', 0, NULL, 0, NULL, 1),
(11784, 9282, '3', 'anna university ', '', 'BE mechanical ', '2020', 6.55, '', 1, '2022-07-07 11:07:14', 0, NULL, 0, NULL, 1),
(11785, 9295, '3', 'Hnbgu University ', '', 'Bsc forestry', '2021', 76.00, '', 1, '2022-07-07 11:33:03', 0, NULL, 0, NULL, 1),
(11786, 9298, '1', 'State board', '', '', '2014', 93.00, '', 1, '2022-07-07 02:30:44', 0, NULL, 0, NULL, 1),
(11787, 9298, '2', 'State board', '', '', '2016', 60.00, '', 1, '2022-07-07 02:30:59', 0, NULL, 0, NULL, 1),
(11788, 9298, '3', 'Anna university', '', 'B. Tech IT', '2020', 70.00, '', 1, '2022-07-07 02:31:35', 0, NULL, 0, NULL, 1),
(11789, 9299, '3', 'Bharathidasan University', '', 'Bsc.fashion technology', '2021', 75.00, '', 1, '2022-07-07 03:06:57', 0, NULL, 0, NULL, 1),
(11790, 9300, '1', 'Pdrv matric hr sec school ', '', '', '2014', 82.00, '', 1, '2022-07-07 03:12:58', 1, '2022-07-07 03:13:39', 0, NULL, 1),
(11791, 9300, '2', 'Kurinchi matric hr sec school ', '', '', '2016', 62.00, '', 1, '2022-07-07 03:13:21', 0, NULL, 0, NULL, 1),
(11792, 9300, '3', 'Adhiparasakthi engineering college ', '', 'BE mechanical engineering ', '2020', 64.70, '', 1, '2022-07-07 03:14:10', 0, NULL, 0, NULL, 1),
(11793, 9301, '3', 'Bharathidasan University', '', 'B.sc maths', '2021', 59.00, '', 1, '2022-07-07 03:47:50', 0, NULL, 0, NULL, 1),
(11794, 9303, '1', 'State board ', '', '', '2015', 82.43, '', 1, '2022-07-07 04:48:35', 0, NULL, 0, NULL, 1),
(11795, 9303, '2', 'State board', '', '', '2017', 67.00, '', 1, '2022-07-07 04:49:36', 0, NULL, 0, NULL, 1),
(11796, 9303, '3', 'Vidhya sagar women\'s college', '', 'B.sc mathematics', '2020', 69.00, '', 1, '2022-07-07 04:50:35', 0, NULL, 0, NULL, 1),
(11797, 9304, '3', 'deemed', '', 'b.com', '2021', 78.00, '', 1, '2022-07-07 05:49:06', 0, NULL, 0, NULL, 1),
(11798, 9297, '3', 'university', '', 'b.e', '2020', 68.00, '', 1, '2022-07-07 08:54:15', 1, '2022-07-07 08:57:13', 0, NULL, 1),
(11799, 9297, '1', 'board', '', '', '2012', 70.00, '', 1, '2022-07-07 08:56:20', 0, NULL, 0, NULL, 1),
(11800, 9297, '2', 'board', '', '', '2014', 58.00, '', 1, '2022-07-07 08:56:49', 0, NULL, 0, NULL, 1),
(11801, 9306, '2', 'State board', '', '', '2018', 59.00, '', 1, '2022-07-08 12:50:55', 0, NULL, 0, NULL, 1),
(11802, 9306, '3', 'Madras University ', '', 'Ba economics', '2021', 70.00, '', 1, '2022-07-08 12:51:37', 0, NULL, 0, NULL, 1),
(11803, 9307, '3', 'bharathidasan university', '', 'b.com', '2020', 67.00, '', 1, '2022-07-08 10:41:09', 0, NULL, 0, NULL, 1),
(11804, 9305, '3', 'Anna university ', '', 'BE', '2020', 73.00, '', 1, '2022-07-08 11:27:24', 0, NULL, 0, NULL, 1),
(11805, 9308, '4', 'central university of tamilnadu', '', 'm.lis', '2021', 80.00, '', 1, '2022-07-08 12:16:15', 0, NULL, 0, NULL, 1),
(11806, 9309, '3', 'Anna university', '', 'B.E computer science engineering', '2022', 8.50, '', 1, '2022-07-08 01:48:08', 0, NULL, 0, NULL, 1),
(11807, 9252, '3', 'jayalakshmi insitute of technologY', '', 'BE', '2022', 70.00, '', 85, '2022-07-08 02:49:08', 0, NULL, 0, NULL, 1),
(11808, 9311, '3', 'Bharathithasan University', '', 'B.sc (Bio- chemistry)', '2018', 73.20, '', 1, '2022-07-08 03:04:34', 0, NULL, 0, NULL, 1),
(11809, 9313, '5', 'Dote', '', 'Ece', '2020', 75.00, '', 1, '2022-07-08 03:16:14', 0, NULL, 0, NULL, 1),
(11810, 9312, '5', 'gov iti', '', 'copa', '2012', 65.00, '', 1, '2022-07-08 03:26:46', 0, NULL, 0, NULL, 1),
(11811, 9310, '5', 'dote', '', 'hcm', '2020', 80.00, '', 1, '2022-07-08 03:30:09', 0, NULL, 0, NULL, 1),
(11812, 9314, '1', 'STATE BOARD', '', '', '2016', 76.60, '', 1, '2022-07-08 03:54:43', 0, NULL, 0, NULL, 1),
(11813, 9314, '2', 'STATE BOARD', '', '', '2018', 70.60, '', 1, '2022-07-08 03:55:44', 0, NULL, 0, NULL, 1),
(11814, 9314, '3', 'THIRUVALLUVAR UNIVERSITY', '', 'BCA', '2021', 76.60, '', 1, '2022-07-08 03:56:40', 0, NULL, 0, NULL, 1),
(11815, 9315, '3', 'PBR VITS', '', 'Btech', '2022', 70.00, '', 1, '2022-07-08 04:14:18', 0, NULL, 0, NULL, 1),
(11816, 9316, '3', 'Anna University ', '', 'B.E', '2018', 6.48, '', 1, '2022-07-08 04:17:19', 0, NULL, 0, NULL, 1),
(11817, 9321, '2', 'state board', '', '', '2019', 58.00, '', 1, '2022-07-09 10:16:37', 0, NULL, 0, NULL, 1),
(11818, 9321, '3', 'loyola autonomous', '', 'bsc chemistry', '2022', 60.00, '', 1, '2022-07-09 10:17:53', 0, NULL, 0, NULL, 1),
(11819, 9320, '3', 'easwari engineering college', '', 'b.e', '2021', 76.00, '', 1, '2022-07-09 10:18:15', 0, NULL, 0, NULL, 1),
(11820, 9322, '2', 'state board', '', '', '2019', 77.00, '', 1, '2022-07-09 10:21:31', 0, NULL, 0, NULL, 1),
(11821, 9322, '3', 'university of madras', '', 'bba', '2022', 67.00, '', 1, '2022-07-09 10:22:02', 0, NULL, 0, NULL, 1),
(11822, 9319, '4', 'Anna University ', '', 'MBA in Shipping and Logistics ', '2019', 72.00, '', 1, '2022-07-09 10:24:59', 0, NULL, 0, NULL, 1),
(11823, 9324, '3', 'Anna University ', '', 'BE', '2014', 70.00, '', 1, '2022-07-09 11:22:03', 0, NULL, 0, NULL, 1),
(11824, 9317, '3', 'Madras university', '', 'B. Com', '2021', 72.00, '', 1, '2022-07-09 02:35:22', 0, NULL, 0, NULL, 1),
(11825, 9326, '2', 'Department of pre education Board ', '', '', '2015', 52.77, '', 1, '2022-07-09 03:23:37', 0, NULL, 0, NULL, 1),
(11826, 9327, '4', 'Bharathidhasan University ', '', 'Msc., Computer science ', '2022', 85.00, '', 1, '2022-07-09 06:13:15', 1, '2022-07-09 06:13:43', 0, NULL, 0),
(11827, 9327, '1', 'State board', '', '', '2015', 88.00, '', 1, '2022-07-09 06:15:11', 0, NULL, 0, NULL, 1),
(11828, 9327, '2', 'State board ', '', '', '2017', 71.00, '', 1, '2022-07-09 06:15:34', 0, NULL, 0, NULL, 1),
(11829, 9327, '3', 'Bharathidhasan University ', '', 'Bsc., Computer science ', '2020', 71.00, '', 1, '2022-07-09 06:16:19', 0, NULL, 0, NULL, 1),
(11830, 9327, '4', 'Bharathidhasan University ', '', 'Msc., computer science ', '2022', 85.00, '', 1, '2022-07-09 06:17:15', 0, NULL, 0, NULL, 1),
(11831, 9328, '4', 'Anna University ', '', 'MBA', '2017', 73.10, '', 1, '2022-07-10 05:45:34', 0, NULL, 0, NULL, 1),
(11832, 9325, '4', 'THIAGARAJAR COLLEGE', '', 'MA ENGLISH LITERATURE', '2022', 65.00, '', 1, '2022-07-10 11:56:07', 0, NULL, 0, NULL, 1),
(11833, 9325, '3', 'THE AMERICAN COLLEGE', '', 'BA ENGLISH LITERATURE', '2020', 67.50, '', 1, '2022-07-10 11:56:57', 0, NULL, 0, NULL, 1),
(11834, 9329, '3', 'Madras University ', '', 'BCA', '2022', 70.00, '', 1, '2022-07-11 10:05:30', 0, NULL, 0, NULL, 1),
(11835, 9331, '3', 'Madras university', '', 'BCA', '2022', 70.00, '', 1, '2022-07-11 10:26:02', 0, NULL, 0, NULL, 1),
(11836, 9330, '3', 'Madras University ', '', 'BCA', '2022', 70.00, '', 1, '2022-07-11 10:38:43', 0, NULL, 0, NULL, 1),
(11837, 9332, '3', 'Madras university', '', 'BBA', '2019', 70.00, '', 1, '2022-07-11 10:54:36', 0, NULL, 0, NULL, 1),
(11838, 9334, '3', 'University ', '', 'BCA', '2022', 71.00, '', 1, '2022-07-11 11:30:06', 0, NULL, 0, NULL, 1),
(11839, 9337, '3', 'University of Madras ', '', '', '2022', 81.00, '', 1, '2022-07-11 11:49:02', 0, NULL, 0, NULL, 1),
(11840, 9339, '4', 'Anna university', '', 'M.E', '2020', 77.80, '', 1, '2022-07-11 11:51:46', 0, NULL, 0, NULL, 1),
(11841, 9339, '3', 'Anna university', '', 'B.E', '2017', 64.00, '', 1, '2022-07-11 11:52:32', 0, NULL, 0, NULL, 1),
(11842, 9333, '4', 'Government arts and science college for women Orathanadu ', '', 'M.SC computer science ', '2021', 84.99, '', 1, '2022-07-11 11:56:07', 0, NULL, 0, NULL, 1),
(11843, 9340, '3', 'Thiruvalluvar University ', '', 'BA.English', '2019', 58.00, '', 1, '2022-07-11 11:58:44', 0, NULL, 0, NULL, 1),
(11844, 9335, '3', 'MadrasvUniversity', '', 'B. A. English', '2019', 45.00, '', 1, '2022-07-11 12:14:50', 0, NULL, 0, NULL, 1),
(11845, 9342, '3', 'Anna University', '', 'B.E', '2021', 78.00, '', 1, '2022-07-11 12:27:56', 0, NULL, 0, NULL, 1),
(11846, 9342, '2', 'Government Higher Secondary School,Sirugramam', '', '', '2017', 75.00, '', 1, '2022-07-11 12:28:40', 0, NULL, 0, NULL, 1),
(11847, 9342, '1', 'Government Higher Secondary School,Sirugramam', '', '', '2015', 88.00, '', 1, '2022-07-11 12:28:56', 0, NULL, 0, NULL, 1),
(11848, 9338, '3', 'University  of madras', '', 'BBA', '2022', 82.00, '', 1, '2022-07-11 12:59:35', 0, NULL, 0, NULL, 1),
(11849, 9343, '3', 'Anna university ', '', 'B.E ELECTRONICS AND COMMUNICATION ENGINEERING', '2017', 60.00, '', 1, '2022-07-11 01:21:56', 0, NULL, 0, NULL, 1),
(11850, 9344, '4', 'Kuvempu University', '', 'MBA Finance and HR', '2020', 62.58, '', 1, '2022-07-11 01:33:28', 0, NULL, 0, NULL, 1),
(11851, 9345, '3', 'BIHER', '', 'Genetic Engineering ', '2021', 7.60, '', 1, '2022-07-11 01:50:50', 0, NULL, 0, NULL, 1),
(11852, 9346, '2', 'National institute of opening school', '', '', '2017', 80.00, '', 1, '2022-07-11 03:00:17', 0, NULL, 0, NULL, 1),
(11853, 9347, '4', 'Kuvempu University', '', 'BCom', '2020', 61.56, '', 1, '2022-07-11 03:31:27', 0, NULL, 0, NULL, 1),
(11854, 9349, '3', 'maher', '', 'be ece', '2013', 74.00, '', 1, '2022-07-11 03:53:26', 0, NULL, 0, NULL, 1),
(11855, 9350, '3', 'SV University tirupati ', '', 'BSC (m.E.Cs)', '2021', 87.70, '', 1, '2022-07-11 04:29:21', 0, NULL, 0, NULL, 1),
(11856, 9350, '4', 'State board of Andra Pradesh ', '', 'MPC ', '2018', 88.80, '', 1, '2022-07-11 04:31:50', 0, NULL, 0, NULL, 1),
(11857, 9350, '1', 'State board of Andra Pradesh ', '', '', '2016', 90.00, '', 1, '2022-07-11 04:32:35', 0, NULL, 0, NULL, 1),
(11858, 9352, '3', 'Anna University ', '', 'B.Tech IT', '2018', 61.00, '', 1, '2022-07-11 06:17:52', 0, NULL, 0, NULL, 1),
(11859, 9353, '3', 'University of Madras', '', 'B. Com', '2020', 78.00, '', 1, '2022-07-11 06:59:20', 0, NULL, 0, NULL, 1),
(11860, 9353, '4', 'University of Madras', '', 'M. Com', '2022', 95.00, '', 1, '2022-07-11 07:00:05', 0, NULL, 0, NULL, 1),
(11861, 9351, '3', 'Jawaharlal Nehru Technological University Anantapur', '', 'Bachelor of Technology', '2021', 55.00, '', 1, '2022-07-11 07:54:44', 0, NULL, 0, NULL, 1),
(11862, 9351, '1', 'board of secondary education', '', '', '2015', 7.20, '', 1, '2022-07-11 07:57:01', 1, '2022-07-11 07:58:39', 0, NULL, 0),
(11863, 9351, '2', 'borad of intermediate education', '', '', '2017', 73.50, '', 1, '2022-07-11 07:59:38', 1, '2022-07-11 08:00:55', 0, NULL, 1),
(11864, 9351, '1', 'board of secondary education', '', '', '2015', 7.20, '', 1, '2022-07-11 08:00:45', 0, NULL, 0, NULL, 1),
(11865, 9354, '3', 'Madurai Kamaraj University ', '', 'Bachelor of science (Mathematics with Computer App', '2021', 65.00, '', 1, '2022-07-12 09:35:41', 0, NULL, 0, NULL, 1),
(11866, 9355, '3', 'Anna University', '', 'BE Agricultural Engineering', '2021', 7.54, '', 1, '2022-07-12 10:18:08', 0, NULL, 0, NULL, 1),
(11867, 9355, '2', 'State board', '', '', '2017', 76.16, '', 1, '2022-07-12 10:19:37', 0, NULL, 0, NULL, 1),
(11868, 9356, '3', 'anna unversity', '', 'ece', '2020', 85.00, '', 1, '2022-07-12 10:23:06', 0, NULL, 0, NULL, 1),
(11869, 9355, '1', 'State board', '', '', '2015', 82.60, '', 1, '2022-07-12 10:24:39', 0, NULL, 0, NULL, 1),
(11870, 9357, '3', 'Periyar maniammai', '', 'B.tech', '2019', 80.00, '', 1, '2022-07-12 10:35:35', 0, NULL, 0, NULL, 1),
(11871, 9358, '1', 'Karnataka board', '', '', '2014', 60.16, '', 1, '2022-07-12 10:57:58', 0, NULL, 0, NULL, 1),
(11872, 9358, '5', 'Vijayapura university', '', 'Fashion designer', '2020', 60.00, '', 1, '2022-07-12 10:58:52', 0, NULL, 0, NULL, 1),
(11873, 9359, '3', 'Madras University ', '', 'B.com', '2022', 88.60, '', 1, '2022-07-12 11:25:26', 0, NULL, 0, NULL, 1),
(11874, 9361, '3', 'Thiruvalluvar university', '', 'Bachelor of computer applications', '2019', 64.00, '', 1, '2022-07-12 12:09:29', 0, NULL, 0, NULL, 1),
(11875, 9362, '3', 'Thiruvalluvar university ', '', 'Bachelor of computer Applications ', '2019', 72.00, '', 1, '2022-07-12 12:09:33', 0, NULL, 0, NULL, 1),
(11876, 9360, '3', 'Periya University ', '', 'B.sc Maths', '2015', 65.00, '', 1, '2022-07-12 12:29:28', 0, NULL, 0, NULL, 1),
(11877, 9363, '3', 'Anna University', '', 'Bachelor of engineering', '2020', 70.00, '', 1, '2022-07-12 03:38:33', 0, NULL, 0, NULL, 1),
(11878, 9363, '2', 'State board', '', '', '2016', 83.00, '', 1, '2022-07-12 03:39:14', 0, NULL, 0, NULL, 1),
(11879, 9363, '1', 'State board', '', '', '2014', 85.00, '', 1, '2022-07-12 03:39:42', 0, NULL, 0, NULL, 1),
(11880, 9365, '3', 'Madras University ', '', 'Bca', '2022', 75.00, '', 1, '2022-07-12 06:11:15', 0, NULL, 0, NULL, 1),
(11881, 9367, '3', 'Madras university', '', 'BCA', '2021', 72.40, '', 1, '2022-07-12 07:45:00', 0, NULL, 0, NULL, 1),
(11882, 9367, '1', 'State board', '', '', '2016', 76.40, '', 1, '2022-07-12 07:49:13', 0, NULL, 0, NULL, 1),
(11883, 9367, '2', 'State board', '', '', '2018', 74.60, '', 1, '2022-07-12 07:49:33', 0, NULL, 0, NULL, 1),
(11884, 9370, '4', 'Bharathiar university', '', 'MSC(IT) ', '2020', 71.00, '', 1, '2022-07-13 09:57:53', 0, NULL, 0, NULL, 1),
(11885, 9370, '3', 'Bharathiyar', '', 'BCA', '2018', 70.00, '', 1, '2022-07-13 09:58:29', 0, NULL, 0, NULL, 1),
(11886, 9370, '1', 'State board', '', '', '2013', 68.00, '', 1, '2022-07-13 10:00:52', 0, NULL, 0, NULL, 1),
(11887, 9371, '3', 'Thiruvalluvar', '', 'B.Sc.Computer Science', '2022', 91.00, '', 1, '2022-07-13 10:07:10', 0, NULL, 0, NULL, 1),
(11888, 9372, '3', 'Sri Ramanujar Engineering College', '', 'b.tech', '2022', 80.00, '', 1, '2022-07-13 10:35:46', 0, NULL, 0, NULL, 1),
(11889, 9373, '3', 'Anna University ', '', 'B.E CSE', '2019', 65.00, '', 1, '2022-07-13 10:47:56', 0, NULL, 0, NULL, 1),
(11890, 9368, '3', 'Madras University ', '', 'B.C.A', '2022', 70.00, '', 1, '2022-07-13 10:57:51', 0, NULL, 0, NULL, 1),
(11891, 9376, '3', 'Anna University ', '', 'Bachelor of engineering ', '2022', 7.00, '', 1, '2022-07-13 11:09:39', 1, '2022-07-13 11:11:47', 0, NULL, 1),
(11892, 9376, '2', 'state board ', '', '', '2018', 64.00, '', 1, '2022-07-13 11:10:18', 1, '2022-07-13 11:12:02', 0, NULL, 1),
(11893, 9377, '3', 'anna university', '', 'bachelor of engineering', '2022', 8.02, '', 1, '2022-07-13 11:10:33', 0, NULL, 0, NULL, 1),
(11894, 9377, '2', 'state board of tamil nadu', '', '', '2018', 61.00, '', 1, '2022-07-13 11:11:13', 0, NULL, 0, NULL, 1),
(11895, 9377, '1', 'central board of secondary education', '', '', '2016', 76.00, '', 1, '2022-07-13 11:11:58', 0, NULL, 0, NULL, 1),
(11896, 9376, '1', 'State board ', '', '', '2016', 84.00, '', 1, '2022-07-13 11:12:24', 0, NULL, 0, NULL, 1),
(11897, 9378, '4', 'Alagappa University ', '', 'BSc, mBA', '2017', 70.00, '', 1, '2022-07-13 11:26:35', 0, NULL, 0, NULL, 1),
(11898, 9379, '3', 'Madras university', '', 'Bsc in computer science', '2021', 70.00, '', 1, '2022-07-13 12:01:33', 0, NULL, 0, NULL, 1),
(11899, 9379, '2', 'Green field convent matric hr sec school', '', '', '2018', 70.00, '', 1, '2022-07-13 12:03:08', 0, NULL, 0, NULL, 1),
(11900, 9379, '1', 'Green field convent matric Hr Sec school', '', '', '2016', 80.00, '', 1, '2022-07-13 12:03:41', 0, NULL, 0, NULL, 1),
(11901, 9381, '3', 'Lucknow University ', '', 'B.com', '2015', 75.00, '', 1, '2022-07-13 12:17:28', 0, NULL, 0, NULL, 1),
(11902, 9380, '3', 'K.S.Rangasamy  Engineering college of technology', '', 'b.e', '2018', 7.02, '', 1, '2022-07-13 12:28:04', 0, NULL, 0, NULL, 1),
(11903, 9382, '2', 'Hobart Muslim girls hr sec school royapettah', '', '', '2017', 80.00, '', 1, '2022-07-13 01:22:41', 0, NULL, 0, NULL, 1),
(11904, 9382, '1', 'MMA govt higher sec school pallavaram ch 43', '', '', '2014', 75.00, '', 1, '2022-07-13 01:23:49', 0, NULL, 0, NULL, 1),
(11905, 9375, '3', 'University', '', 'BA tamil', '2021', 70.00, '', 1, '2022-07-13 01:30:54', 0, NULL, 0, NULL, 1),
(11906, 9383, '1', 'Kavitha matriculation higher secondary School', '', '', '2015', 80.00, '', 1, '2022-07-13 01:38:23', 0, NULL, 0, NULL, 1),
(11907, 9383, '2', 'Kavitha matriculation higher secondary School', '', '', '2017', 70.00, '', 1, '2022-07-13 01:39:51', 0, NULL, 0, NULL, 1),
(11908, 9385, '3', 'Anna University ', '', 'B.E', '2021', 75.00, '', 1, '2022-07-13 02:05:22', 0, NULL, 0, NULL, 1),
(11909, 9386, '3', 'Srinivas University', '', 'B.Tech', '2021', 65.00, '', 1, '2022-07-13 04:26:49', 0, NULL, 0, NULL, 1),
(11910, 9390, '3', 'Madras university', '', 'b.com ', '2022', 83.00, '', 1, '2022-07-14 10:19:29', 0, NULL, 0, NULL, 1),
(11911, 9389, '1', 'State board ', '', '', '2013', 86.80, '', 1, '2022-07-14 10:26:57', 0, NULL, 0, NULL, 1),
(11912, 9389, '2', 'State board', '', '', '2015', 88.60, '', 1, '2022-07-14 10:27:22', 0, NULL, 0, NULL, 1),
(11913, 9389, '3', 'Pondicherry university', '', 'B. Tech(cse) ', '2019', 6.90, '', 1, '2022-07-14 10:27:51', 0, NULL, 0, NULL, 1),
(11914, 9392, '4', 'SDNB Vaishnav College', '', 'MSW HR', '2022', 81.00, '', 1, '2022-07-14 10:39:52', 0, NULL, 0, NULL, 1),
(11915, 9392, '3', 'Vels University', '', 'Bsc IT', '2019', 86.00, '', 1, '2022-07-14 10:41:07', 0, NULL, 0, NULL, 1),
(11916, 9393, '3', 'Anna university', '', 'B. E', '2022', 7.80, '', 1, '2022-07-14 10:41:12', 0, NULL, 0, NULL, 1),
(11917, 9394, '4', 'Bharathidasan University', '', 'Mca', '2017', 68.00, '', 1, '2022-07-14 10:44:41', 0, NULL, 0, NULL, 1),
(11918, 9395, '3', 'Anna University ', '', 'B.Tech/IT', '2022', 74.00, '', 1, '2022-07-14 10:46:57', 0, NULL, 0, NULL, 1),
(11919, 9395, '2', 'Matriculation ', '', '', '2015', 87.00, '', 1, '2022-07-14 10:47:44', 0, NULL, 0, NULL, 1),
(11920, 9395, '1', 'Matriculation ', '', '', '2017', 78.00, '', 1, '2022-07-14 10:48:19', 0, NULL, 0, NULL, 1),
(11921, 9399, '4', 'Anna University,trichy', '', 'B tech-IT', '2016', 62.50, '', 1, '2022-07-14 11:01:41', 0, NULL, 0, NULL, 1),
(11922, 9400, '3', 'Anna University ', '', 'B.E - ECE', '2022', 76.00, '', 1, '2022-07-14 11:06:02', 0, NULL, 0, NULL, 1),
(11923, 9402, '3', 'Anna University ', '', 'B.E -ECE', '2022', 81.00, '', 1, '2022-07-14 11:12:13', 0, NULL, 0, NULL, 1),
(11924, 9398, '1', 'Narayana concept school ', '', '', '2016', 7.30, '', 1, '2022-07-14 11:12:25', 0, NULL, 0, NULL, 1),
(11925, 9403, '1', 'Secondary school Andhra Pradesh', '', '', '2016', 8.80, '', 1, '2022-07-14 11:13:05', 0, NULL, 0, NULL, 1),
(11926, 9398, '2', 'Telangana board of secondary education ', '', '', '2018', 6.70, '', 1, '2022-07-14 11:13:32', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11927, 9403, '2', 'Board of intermediate ANDHRA PRADESH', '', '', '2018', 78.90, '', 1, '2022-07-14 11:13:35', 0, NULL, 0, NULL, 1),
(11928, 9403, '3', 'Presidency University', '', 'BTECH', '2022', 6.96, '', 1, '2022-07-14 11:13:59', 0, NULL, 0, NULL, 1),
(11929, 9397, '4', 'Madurai kamarajar University ', '', 'MCA', '2022', 83.00, '', 1, '2022-07-14 11:15:42', 1, '2022-07-14 11:16:14', 0, NULL, 1),
(11930, 9397, '3', 'Bharathidasan University ', '', 'B.sc maths ', '2017', 60.00, '', 1, '2022-07-14 11:17:05', 0, NULL, 0, NULL, 1),
(11931, 9397, '2', 'DE BRITTO HER SEC SCHOOL ', '', '', '2017', 63.00, '', 1, '2022-07-14 11:17:36', 0, NULL, 0, NULL, 1),
(11932, 9397, '1', 'DE BRITTO HER SEC SCHOOL ', '', '', '2015', 77.00, '', 1, '2022-07-14 11:17:49', 0, NULL, 0, NULL, 1),
(11933, 9401, '3', 'Anna university ', '', 'Be', '2022', 77.00, '', 1, '2022-07-14 11:22:45', 0, NULL, 0, NULL, 1),
(11934, 9391, '4', 'Anna University ', '', 'MCA', '2019', 8.70, '', 1, '2022-07-14 11:26:45', 0, NULL, 0, NULL, 1),
(11935, 9391, '2', 'Stade board', '', '', '2014', 64.00, '', 1, '2022-07-14 11:27:41', 0, NULL, 0, NULL, 1),
(11936, 9391, '1', 'State board ', '', '', '2012', 6.30, '', 1, '2022-07-14 11:28:04', 0, NULL, 0, NULL, 1),
(11937, 9405, '4', 'University of madras ', '', 'Master of Chemistry ', '2022', 80.21, '', 1, '2022-07-14 11:28:45', 1, '2022-07-14 11:30:28', 0, NULL, 1),
(11938, 9391, '3', 'Kamarajar University ', '', 'Bsc cs', '0001', 7.20, '', 1, '2022-07-14 11:28:52', 0, NULL, 0, NULL, 1),
(11939, 9405, '3', 'Pondicherry University ', '', 'Bachelor of chemistry ', '2020', 76.00, '', 1, '2022-07-14 11:30:13', 0, NULL, 0, NULL, 1),
(11940, 9396, '3', 'SRI kALISWARI', '', 'Bba', '2021', 67.00, '', 1, '2022-07-14 11:48:09', 0, NULL, 0, NULL, 1),
(11941, 9406, '3', 'DB Jain clg. ', '', 'B. A economics. ', '2020', 75.00, '', 1, '2022-07-14 11:50:43', 0, NULL, 0, NULL, 1),
(11942, 9407, '3', 'SVU', '', 'BCA', '2021', 64.00, '', 1, '2022-07-14 01:45:35', 0, NULL, 0, NULL, 1),
(11943, 9408, '3', 'Madras University ', '', 'Bsc cs', '2016', 55.00, '', 1, '2022-07-14 03:46:16', 0, NULL, 0, NULL, 1),
(11944, 9410, '3', 'Madurai Kamaraj University', '', 'B.Sc., computer science', '2019', 62.30, '', 1, '2022-07-15 10:22:25', 0, NULL, 0, NULL, 1),
(11945, 9409, '3', 'University college of engineering-villupuram ', '', 'B.E.computer science and engineering ', '2021', 71.00, '', 1, '2022-07-15 10:24:17', 0, NULL, 0, NULL, 1),
(11946, 9411, '1', 'State board', '', '', '2015', 74.00, '', 1, '2022-07-15 10:30:37', 0, NULL, 0, NULL, 1),
(11947, 9411, '2', 'State board', '', '', '2017', 65.00, '', 1, '2022-07-15 10:30:53', 0, NULL, 0, NULL, 1),
(11948, 9413, '4', 'Pondicherry university ', '', 'MBA ', '2021', 64.00, '', 1, '2022-07-15 10:47:07', 0, NULL, 0, NULL, 1),
(11949, 9414, '3', 'Madras University ', '', 'Bcom', '2016', 67.00, '', 1, '2022-07-15 10:54:23', 0, NULL, 0, NULL, 1),
(11950, 9412, '3', ' University ', '', 'BCA', '2020', 70.00, '', 1, '2022-07-15 10:54:35', 0, NULL, 0, NULL, 1),
(11951, 9415, '1', 'State board', '', '', '2013', 77.60, '', 1, '2022-07-15 11:01:17', 0, NULL, 0, NULL, 1),
(11952, 9415, '2', 'State board', '', '', '2015', 64.00, '', 1, '2022-07-15 11:01:44', 0, NULL, 0, NULL, 1),
(11953, 9416, '3', 'Tamilnadu open University ', '', 'B.A History ', '2022', 78.00, '', 1, '2022-07-15 11:28:16', 0, NULL, 0, NULL, 1),
(11954, 9417, '3', 'Kamaraj university', '', 'B. Sc. Maths', '2020', 59.00, '', 1, '2022-07-15 11:48:25', 0, NULL, 0, NULL, 1),
(11955, 9418, '3', 'Madras University ', '', 'Bsc computer science ', '2022', 85.00, '', 1, '2022-07-15 12:00:04', 0, NULL, 0, NULL, 1),
(11956, 9418, '2', 'State board ', '', '', '2019', 53.00, '', 1, '2022-07-15 12:00:35', 0, NULL, 0, NULL, 1),
(11957, 9419, '3', 'Anna university', '', 'BE-ECE', '2022', 75.00, '', 1, '2022-07-15 12:16:32', 0, NULL, 0, NULL, 1),
(11958, 9421, '3', 'Anna university', '', 'B.E.(ECE)', '2022', 78.00, '', 1, '2022-07-15 12:18:13', 0, NULL, 0, NULL, 1),
(11959, 9423, '5', 'Bharadhi dasan University ', '', 'Director of public health ', '2021', 70.00, '', 1, '2022-07-15 12:50:57', 0, NULL, 0, NULL, 1),
(11960, 9422, '1', 'Board', '', '', '2009', 75.00, '', 1, '2022-07-15 12:55:04', 0, NULL, 0, NULL, 1),
(11961, 9424, '3', 'Guru nanak College ', '', 'Bachelor of business administration ', '2022', 80.00, '', 1, '2022-07-15 01:05:46', 0, NULL, 0, NULL, 1),
(11962, 9425, '3', 'Madras University ', '', 'BCA ', '2022', 86.00, '', 1, '2022-07-15 01:24:33', 0, NULL, 0, NULL, 1),
(11963, 9425, '2', 'State board ', '', '', '2019', 62.00, '', 1, '2022-07-15 01:26:28', 0, NULL, 0, NULL, 1),
(11964, 9425, '1', 'State board ', '', '', '2017', 85.00, '', 1, '2022-07-15 01:27:08', 0, NULL, 0, NULL, 1),
(11965, 9426, '3', 'St.joseph college of engineering ', '', 'BE', '2016', 65.00, '', 1, '2022-07-15 03:25:50', 0, NULL, 0, NULL, 1),
(11966, 9420, '2', 'Sate board ', '', '', '2020', 70.00, '', 1, '2022-07-15 04:22:29', 0, NULL, 0, NULL, 1),
(11967, 9427, '3', 'vels University ', '', 'b.e ', '2020', 70.00, '', 1, '2022-07-15 06:36:49', 0, NULL, 0, NULL, 1),
(11968, 9428, '3', 'Anna university', '', 'B.E(cse)', '2020', 6.42, '', 1, '2022-07-16 09:50:01', 0, NULL, 0, NULL, 1),
(11969, 9428, '2', 'State board', '', '', '2016', 73.00, '', 1, '2022-07-16 09:50:34', 0, NULL, 0, NULL, 1),
(11970, 9428, '1', 'State board', '', '', '2014', 79.00, '', 1, '2022-07-16 09:50:55', 0, NULL, 0, NULL, 1),
(11971, 9429, '1', 'Board of secondary education, odisha', '', '', '2010', 87.00, '', 1, '2022-07-16 10:11:14', 0, NULL, 0, NULL, 1),
(11972, 9429, '2', 'Council of higher secondary education,odisha', '', '', '2012', 62.00, '', 1, '2022-07-16 10:12:10', 0, NULL, 0, NULL, 1),
(11973, 9429, '3', 'Veer Surendra Sai University of technology', '', 'B tech(information technology)', '2017', 66.00, '', 1, '2022-07-16 10:13:19', 0, NULL, 0, NULL, 1),
(11974, 9431, '3', 'Periyar Maniammai Institute of Science and Technology ', '', 'B. Tech', '2021', 87.30, '', 1, '2022-07-16 10:26:13', 0, NULL, 0, NULL, 1),
(11975, 9431, '2', 'Amalraj Matriculation Higher Secondary School', '', '', '2017', 81.00, '', 1, '2022-07-16 10:26:58', 0, NULL, 0, NULL, 1),
(11976, 9431, '1', 'Amalraj Matriculation Higher Secondary School', '', '', '2015', 91.00, '', 1, '2022-07-16 10:27:14', 0, NULL, 0, NULL, 1),
(11977, 9433, '3', 'Bhardhidasan', '', 'Bsc', '2022', 70.00, '', 1, '2022-07-16 11:29:12', 0, NULL, 0, NULL, 1),
(11978, 9435, '1', 'State borad', '', '', '2014', 76.60, '', 1, '2022-07-16 12:32:12', 0, NULL, 0, NULL, 1),
(11979, 9435, '2', 'State board', '', '', '2016', 78.80, '', 1, '2022-07-16 12:32:44', 0, NULL, 0, NULL, 1),
(11980, 9435, '3', 'Anna University ', '', 'B.E/ cse', '2020', 65.00, '', 1, '2022-07-16 12:33:18', 0, NULL, 0, NULL, 1),
(11981, 9440, '3', 'Thruvalluvar university', '', 'Bsc(computer science) ', '2021', 75.00, '', 1, '2022-07-16 01:38:09', 0, NULL, 0, NULL, 1),
(11982, 9438, '3', 'Periya University ', '', 'B.Sc.Computer science ', '2022', 75.00, '', 1, '2022-07-16 01:46:09', 0, NULL, 0, NULL, 1),
(11983, 9439, '3', 'Periyar University', '', 'B.SC Computer science', '2022', 75.00, '', 1, '2022-07-16 01:46:10', 0, NULL, 0, NULL, 1),
(11984, 9437, '3', 'Anna University', '', 'B.E-CSE', '2020', 7.63, '', 1, '2022-07-16 02:19:03', 0, NULL, 0, NULL, 1),
(11985, 9441, '3', 'Dr.mgr University ', '', 'B.com', '2018', 62.00, '', 1, '2022-07-16 02:49:01', 0, NULL, 0, NULL, 1),
(11986, 9432, '3', 'Presidency ', '', 'BA', '2022', 60.00, '', 1, '2022-07-16 05:55:21', 0, NULL, 0, NULL, 1),
(11987, 9442, '3', 'Madras University', '', 'Bcom ( corporate secretaryship )', '2022', 70.00, '', 1, '2022-07-16 06:39:28', 0, NULL, 0, NULL, 1),
(11988, 9443, '3', 'Sethu Institute of technology ', '', 'BE', '2019', 70.00, '', 1, '2022-07-16 07:17:05', 0, NULL, 0, NULL, 1),
(11989, 9444, '3', 'St. Thomas collage of arts and sciences', '', 'B com', '2022', 70.00, '', 1, '2022-07-16 10:13:06', 0, NULL, 0, NULL, 1),
(11990, 9447, '4', 'Madras University ', '', 'MBA ', '2022', 75.00, '', 1, '2022-07-18 09:22:20', 0, NULL, 0, NULL, 1),
(11991, 9447, '3', 'Anna University ', '', 'BE ', '2019', 7.00, '', 1, '2022-07-18 09:22:53', 0, NULL, 0, NULL, 1),
(11992, 9447, '2', 'Matriculation ', '', '', '2015', 74.00, '', 1, '2022-07-18 09:23:25', 0, NULL, 0, NULL, 1),
(11993, 9447, '1', 'Matriculation ', '', '', '2013', 81.00, '', 1, '2022-07-18 09:23:43', 0, NULL, 0, NULL, 1),
(11994, 9318, '3', 'Thiruvalluvar University Vellore ', '', 'Bsc computer science ', '2022', 70.00, '', 1, '2022-07-18 10:02:39', 0, NULL, 0, NULL, 1),
(11995, 9448, '3', 'ANNA UNIVERSITY ', '', 'B.E', '2021', 73.00, '', 1, '2022-07-18 10:18:11', 0, NULL, 0, NULL, 1),
(11996, 9448, '1', 'STATE BOARD ', '', '', '2015', 78.00, '', 1, '2022-07-18 10:18:48', 0, NULL, 0, NULL, 1),
(11997, 9448, '2', 'STATE BOARD ', '', '', '2017', 72.00, '', 1, '2022-07-18 10:19:05', 0, NULL, 0, NULL, 1),
(11998, 9449, '3', 'Anna University ', '', 'BE', '2019', 67.00, '', 1, '2022-07-18 10:47:55', 0, NULL, 0, NULL, 1),
(11999, 9436, '3', 'university of madras', '', 'bca', '2022', 71.00, '', 1, '2022-07-18 11:35:02', 0, NULL, 0, NULL, 1),
(12000, 9451, '3', 'Kamaraj University', '', 'BCA', '2020', 73.00, '', 1, '2022-07-18 11:38:35', 0, NULL, 0, NULL, 1),
(12001, 9452, '4', 'Madras univercity', '', 'MCA', '2022', 80.00, '', 1, '2022-07-18 11:39:59', 0, NULL, 0, NULL, 1),
(12002, 9450, '3', 'Anna University', '', 'B-Tech, Bio technology', '2020', 66.00, '', 1, '2022-07-18 11:42:47', 0, NULL, 0, NULL, 1),
(12003, 9453, '3', 'Anna University Chennai ', '', 'BE', '2015', 7.52, '', 1, '2022-07-18 11:49:07', 0, NULL, 0, NULL, 1),
(12004, 9453, '1', 'State Board Tamilnadu ', '', '', '2009', 89.60, '', 1, '2022-07-18 11:50:34', 0, NULL, 0, NULL, 1),
(12005, 9453, '2', 'State Board Tamilnadu ', '', '', '2011', 82.90, '', 1, '2022-07-18 11:50:53', 0, NULL, 0, NULL, 1),
(12006, 9454, '3', 'Anna University', '', 'BE', '2016', 77.00, '', 1, '2022-07-18 12:06:31', 0, NULL, 0, NULL, 1),
(12007, 9455, '4', 'PERIYAR UNIVERSITY ', '', 'MBA', '2018', 70.00, '', 1, '2022-07-18 12:09:26', 0, NULL, 0, NULL, 1),
(12008, 9456, '3', 'Anna university ', '', 'BE(ECE)', '2022', 80.00, '', 1, '2022-07-18 12:32:07', 0, NULL, 0, NULL, 1),
(12009, 8396, '3', 'Madras university', '', 'B. Com(g) ', '2021', 63.00, '', 1, '2022-07-18 01:05:16', 0, NULL, 0, NULL, 1),
(12010, 9457, '3', 'Manonmaniam sundaranar University', '', 'BCA', '2022', 70.00, '', 1, '2022-07-18 03:56:07', 0, NULL, 0, NULL, 1),
(12011, 9458, '3', 'E.G.S pillar engineering college ', '', 'EEE', '2021', 70.00, '', 1, '2022-07-18 04:19:24', 0, NULL, 0, NULL, 1),
(12012, 9459, '3', 'University of Madras ', '', 'B com general ', '2021', 72.00, '', 1, '2022-07-18 06:28:25', 0, NULL, 0, NULL, 1),
(12013, 9460, '4', 'Gandhigram Rural Institute ', '', 'Master of computer applications ', '2022', 89.80, '', 1, '2022-07-18 07:19:08', 0, NULL, 0, NULL, 1),
(12014, 9460, '3', 'GTN ARTS COLLAGE ', '', 'Bsc Mathematics ', '2020', 73.00, '', 1, '2022-07-18 07:19:40', 0, NULL, 0, NULL, 1),
(12015, 9462, '4', 'Sdnbv vaishnav college for women', '', 'Msc computer science', '2022', 78.00, '', 1, '2022-07-18 10:30:17', 0, NULL, 0, NULL, 1),
(12016, 9463, '3', 'Agurchand Manmull Jain College, Meenambakkam', '', 'B.sc computer science', '2022', 83.45, '', 1, '2022-07-19 09:48:55', 0, NULL, 0, NULL, 1),
(12017, 9463, '1', 'J.G.N.hr.Sec.School, Tambaram', '', '', '2017', 90.20, '', 1, '2022-07-19 09:50:48', 0, NULL, 0, NULL, 1),
(12018, 9463, '2', 'J.G.N.Hr.Sec.School, Tambaram', '', '', '2019', 62.50, '', 1, '2022-07-19 09:51:23', 0, NULL, 0, NULL, 1),
(12019, 9465, '3', 'Anna University ', '', 'B.E', '2022', 8.00, '', 1, '2022-07-19 11:01:18', 0, NULL, 0, NULL, 1),
(12020, 9467, '4', 'mailam engg college', '', 'm.b.a', '2022', 8.45, '', 1, '2022-07-19 11:05:52', 0, NULL, 0, NULL, 1),
(12021, 9466, '3', 'Anna university', '', 'BE', '2022', 8.00, '', 1, '2022-07-19 11:08:21', 0, NULL, 0, NULL, 1),
(12022, 9468, '3', 'Anna University ', '', 'Bachelor of Technology ', '2021', 75.00, '', 1, '2022-07-19 11:17:12', 1, '2022-07-19 11:18:08', 0, NULL, 0),
(12023, 9468, '2', 'State Board ', '', '', '2017', 68.00, '', 1, '2022-07-19 11:17:58', 1, '2022-07-19 11:18:05', 0, NULL, 0),
(12024, 9468, '1', 'State Board ', '', '', '2015', 83.00, '', 1, '2022-07-19 11:18:26', 0, NULL, 0, NULL, 1),
(12025, 9468, '2', 'State Board ', '', '', '2017', 68.00, '', 1, '2022-07-19 11:18:45', 0, NULL, 0, NULL, 1),
(12026, 9468, '3', 'Anna University ', '', 'Bachelor of Technology ', '2021', 75.00, '', 1, '2022-07-19 11:19:02', 0, NULL, 0, NULL, 1),
(12027, 9469, '3', 'Anna University ', '', 'BE', '2022', 84.00, '', 1, '2022-07-19 11:19:03', 0, NULL, 0, NULL, 1),
(12028, 9471, '3', 'St Joseph\'s College of arts and science ', '', 'BBA', '2022', 70.00, '', 1, '2022-07-19 12:18:37', 0, NULL, 0, NULL, 1),
(12029, 9470, '4', 'Madras University', '', '', '2022', 78.00, '', 1, '2022-07-19 01:29:10', 0, NULL, 0, NULL, 1),
(12030, 9472, '4', 'Kalasalingam university', '', 'MBA', '2022', 81.00, '', 1, '2022-07-19 01:32:05', 0, NULL, 0, NULL, 1),
(12031, 9473, '3', 'ANNA UNIVERSITY', '', 'BE', '2016', 65.00, '', 1, '2022-07-19 01:44:25', 0, NULL, 0, NULL, 1),
(12032, 9473, '1', 'MATRICULATION', '', '', '2010', 73.00, '', 1, '2022-07-19 01:45:52', 0, NULL, 0, NULL, 1),
(12033, 9035, '1', 'govrment school', '', '', '2010', 70.00, '', 1, '2022-07-19 01:46:05', 0, NULL, 0, NULL, 1),
(12034, 9473, '2', 'MATRICULATION', '', '', '2012', 62.00, '', 1, '2022-07-19 01:46:27', 0, NULL, 0, NULL, 1),
(12035, 9461, '1', 'mumbai university', '', '', '2016', 90.00, '', 1, '2022-07-19 02:07:21', 0, NULL, 0, NULL, 1),
(12036, 9461, '2', 'mumbai university', '', '', '2018', 59.00, '', 1, '2022-07-19 02:07:37', 0, NULL, 0, NULL, 1),
(12037, 9461, '3', 'mumbai university', '', 'b.e information technology', '2022', 72.00, '', 1, '2022-07-19 02:08:11', 0, NULL, 0, NULL, 1),
(12038, 9474, '3', 'Pachayapass', '', 'Bsc', '2009', 70.00, '', 1, '2022-07-19 02:25:58', 0, NULL, 0, NULL, 1),
(12039, 9434, '3', 'Madras University ', '', 'B.C.A', '2022', 73.00, '', 1, '2022-07-19 03:23:13', 0, NULL, 0, NULL, 1),
(12040, 9475, '3', 'Anna university ', '', 'BE. Civil Engineering ', '2018', 70.00, '', 1, '2022-07-19 03:57:13', 0, NULL, 0, NULL, 1),
(12041, 9477, '1', 'state board of tamilnadu', '', '', '2011', 89.00, '', 1, '2022-07-19 05:49:20', 1, '2022-07-19 05:49:30', 0, NULL, 0),
(12042, 9477, '4', 'university of madras', '', 'mca', '2022', 70.00, '', 1, '2022-07-19 05:49:54', 0, NULL, 0, NULL, 1),
(12043, 9477, '3', 'loyola college', '', 'bsc', '2018', 56.00, '', 1, '2022-07-19 05:50:34', 0, NULL, 0, NULL, 1),
(12044, 9477, '2', 'state board of tamilnadu', '', '', '2013', 69.00, '', 1, '2022-07-19 05:51:03', 0, NULL, 0, NULL, 1),
(12045, 9477, '1', 'state board of tamilnadu', '', '', '2011', 89.00, '', 1, '2022-07-19 05:51:26', 0, NULL, 0, NULL, 1),
(12046, 9478, '3', 'University of Madras ', '', 'BBA ', '2020', 76.00, '', 1, '2022-07-19 06:09:47', 0, NULL, 0, NULL, 1),
(12047, 9476, '3', 'University of Madras ', '', 'Bca', '2020', 80.00, '', 1, '2022-07-19 06:43:53', 0, NULL, 0, NULL, 1),
(12048, 9482, '2', 'PSR Engineering College ', '', '', '2022', 7.90, '', 1, '2022-07-20 10:16:50', 0, NULL, 0, NULL, 1),
(12049, 9483, '3', 'Sri Sairam engineering college ', '', 'BE', '2020', 68.50, '', 1, '2022-07-20 10:26:40', 0, NULL, 0, NULL, 1),
(12050, 9483, '1', 'Sishya matric higher secondary school ', '', '', '2014', 90.00, '', 1, '2022-07-20 10:27:19', 0, NULL, 0, NULL, 1),
(12051, 9483, '2', 'Vijay vidyalaya matric higher secondary school ', '', '', '2016', 83.00, '', 1, '2022-07-20 10:27:57', 0, NULL, 0, NULL, 1),
(12052, 9484, '3', 'Madras University ', '', 'B.A History ', '2021', 70.00, '', 1, '2022-07-20 10:49:08', 0, NULL, 0, NULL, 1),
(12053, 9485, '3', 'Anna university ', '', 'B.E', '2019', 66.00, '', 1, '2022-07-20 10:50:40', 0, NULL, 0, NULL, 1),
(12054, 9486, '4', 'Madras university', '', 'MCA', '2020', 75.00, '', 1, '2022-07-20 10:54:15', 0, NULL, 0, NULL, 1),
(12055, 9487, '4', 'PRIST University ', '', 'MBA', '2018', 72.00, '', 1, '2022-07-20 11:25:05', 0, NULL, 0, NULL, 1),
(12056, 9489, '3', 'Madras University ', '', 'BCA', '2022', 79.60, '', 1, '2022-07-20 11:26:45', 0, NULL, 0, NULL, 1),
(12057, 9488, '5', 'DOTE', '', 'DEEE', '2020', 70.00, '', 1, '2022-07-20 11:27:22', 0, NULL, 0, NULL, 1),
(12058, 9490, '3', 'Dr.Mgr Education And Research Institute', '', 'B.Tech CSE', '2021', 83.40, '', 1, '2022-07-20 11:59:33', 0, NULL, 0, NULL, 1),
(12059, 9491, '3', 'Dr.mgr education research university', '', 'Bsc computer science', '2020', 76.00, '', 1, '2022-07-20 12:46:38', 0, NULL, 0, NULL, 1),
(12060, 9491, '1', 'Stateboard', '', '', '2015', 81.00, '', 1, '2022-07-20 12:47:16', 0, NULL, 0, NULL, 1),
(12061, 9492, '3', 'Dr MGR university Research Institute ', '', 'BCA', '2020', 68.70, '', 1, '2022-07-20 12:47:51', 0, NULL, 0, NULL, 1),
(12062, 9491, '2', 'Stateboard', '', '', '2017', 56.00, '', 1, '2022-07-20 12:47:51', 0, NULL, 0, NULL, 1),
(12063, 9494, '3', 'Madras University', '', 'Bachelor of Computer Application', '2021', 82.00, '', 1, '2022-07-20 12:59:22', 0, NULL, 0, NULL, 1),
(12064, 9495, '3', 'k c g  college of technology', '', 'b e aeronautical engineering', '2020', 65.00, '', 1, '2022-07-20 05:12:20', 0, NULL, 0, NULL, 1),
(12065, 9496, '3', 'Bharathiyar University ', '', 'B.Sc.Chemistry', '2022', 80.00, '', 1, '2022-07-20 05:40:20', 0, NULL, 0, NULL, 1),
(12066, 9496, '1', 'State Board of Tamilnadu', '', '', '2017', 94.20, '', 1, '2022-07-20 05:41:47', 0, NULL, 0, NULL, 1),
(12067, 9496, '2', 'Board of Higher Secondary Examinations ', '', '', '2019', 83.30, '', 1, '2022-07-20 05:43:00', 1, '2022-07-20 05:44:58', 0, NULL, 1),
(12068, 9497, '4', 'bharathidasan university', '', 'm.sc. computer sciencw', '2022', 81.00, '', 1, '2022-07-20 06:01:21', 0, NULL, 0, NULL, 1),
(12069, 9497, '3', 'Bharathidasan University', '', 'b.sc. computer science', '2020', 72.00, '', 1, '2022-07-20 06:02:07', 0, NULL, 0, NULL, 1),
(12070, 9497, '2', 'state board', '', '', '2017', 73.80, '', 1, '2022-07-20 06:02:40', 0, NULL, 0, NULL, 1),
(12071, 9497, '1', 'stateboard', '', '', '2015', 88.00, '', 1, '2022-07-20 06:03:04', 0, NULL, 0, NULL, 1),
(12072, 9499, '3', 'Mahendra Engineering College', '', 'b.e', '2020', 71.00, '', 1, '2022-07-21 09:54:23', 0, NULL, 0, NULL, 1),
(12073, 9500, '3', 'institute of road and transport technology', '', 'bachelor of engineering', '2018', 64.00, '', 1, '2022-07-21 10:54:46', 0, NULL, 0, NULL, 1),
(12074, 9501, '4', 'University of Madras ', '', 'Msc', '2022', 78.00, '', 1, '2022-07-21 10:57:37', 0, NULL, 0, NULL, 1),
(12075, 9501, '3', 'Bharathidasan University ', '', 'BCA', '2020', 65.00, '', 1, '2022-07-21 10:58:22', 0, NULL, 0, NULL, 1),
(12076, 9503, '1', 'State bord', '', '', '2012', 45.44, '', 1, '2022-07-21 11:29:09', 0, NULL, 0, NULL, 1),
(12077, 9503, '2', 'Pre university board', '', '', '2014', 78.50, '', 1, '2022-07-21 11:30:47', 0, NULL, 0, NULL, 1),
(12078, 9503, '3', 'Tumkur university', '', 'B. Com', '2017', 60.78, '', 1, '2022-07-21 11:31:22', 0, NULL, 0, NULL, 1),
(12079, 9503, '4', 'Tumkur university', '', 'M. Com', '2019', 59.00, '', 1, '2022-07-21 11:31:50', 1, '2022-07-21 11:32:16', 0, NULL, 1),
(12080, 9505, '4', 'Periyar univercity', '', 'MCA', '2016', 78.00, '', 1, '2022-07-21 11:32:17', 0, NULL, 0, NULL, 1),
(12081, 9507, '4', 'Madras University ', '', 'Masters in Computer Science ', '2022', 80.00, '', 1, '2022-07-21 11:35:44', 0, NULL, 0, NULL, 1),
(12082, 9502, '3', 'Bharathiar University', '', 'BBA', '2021', 64.00, '', 1, '2022-07-21 11:36:47', 0, NULL, 0, NULL, 1),
(12083, 9508, '4', 'Madras University ', '', 'Masters in Computer Science ', '2022', 80.00, '', 1, '2022-07-21 11:38:50', 0, NULL, 0, NULL, 1),
(12084, 9509, '4', 'University of Madras', '', 'Msc', '2022', 80.00, '', 1, '2022-07-21 11:39:19', 0, NULL, 0, NULL, 1),
(12085, 9504, '1', 'State board of Tamil Nadu ', '', '', '2017', 91.00, '', 1, '2022-07-21 11:48:09', 0, NULL, 0, NULL, 1),
(12086, 9506, '4', 'Madras university', '', 'Msc computer science', '2022', 85.00, '', 1, '2022-07-21 11:48:33', 0, NULL, 0, NULL, 1),
(12087, 9504, '2', 'State board of Tamil Nadu ', '', '', '2019', 67.00, '', 1, '2022-07-21 11:48:42', 0, NULL, 0, NULL, 1),
(12088, 9504, '3', 'University of madras', '', 'BCA ', '2022', 68.00, '', 1, '2022-07-21 11:49:38', 0, NULL, 0, NULL, 1),
(12089, 9510, '4', 'Bishop Heber College,Trichy', '', 'm.b.a', '2021', 78.00, '', 1, '2022-07-21 12:08:19', 0, NULL, 0, NULL, 1),
(12090, 9511, '3', 'madras university', '', 'b.com', '2017', 55.00, '', 1, '2022-07-21 02:43:10', 0, NULL, 0, NULL, 1),
(12091, 9512, '3', 'University ', '', 'B.Sc Mathematics ', '2022', 80.00, '', 1, '2022-07-21 05:12:50', 0, NULL, 0, NULL, 1),
(12092, 9513, '3', 'A M Jain college ', '', 'Bsc Software application', '2021', 65.63, '', 1, '2022-07-22 10:08:23', 0, NULL, 0, NULL, 1),
(12093, 9513, '2', 'Srimathi laksmi ammal memorial matriculation higher secondary school ', '', '', '2018', 59.00, '', 1, '2022-07-22 10:09:11', 0, NULL, 0, NULL, 1),
(12094, 9513, '1', 'Sri seshadri matriculation higher secondary school ', '', '', '2016', 71.00, '', 1, '2022-07-22 10:09:30', 0, NULL, 0, NULL, 1),
(12095, 9514, '5', 'Apollo polytechnic college ', '', 'DME', '2013', 79.50, '', 1, '2022-07-22 10:46:54', 0, NULL, 0, NULL, 1),
(12096, 9498, '1', 'State board', '', 'Mca', '2012', 69.00, '', 1, '2022-07-22 10:50:28', 0, NULL, 0, NULL, 1),
(12097, 9498, '2', 'State board', '', '', '2014', 65.00, '', 1, '2022-07-22 10:51:13', 0, NULL, 0, NULL, 1),
(12098, 9498, '3', 'Deemed University ', '', 'Bca', '2017', 70.00, '', 1, '2022-07-22 10:51:35', 0, NULL, 0, NULL, 1),
(12099, 9516, '1', 'State board', '', 'MCA', '2011', 84.00, '', 1, '2022-07-22 10:51:55', 0, NULL, 0, NULL, 1),
(12100, 9498, '4', 'Madras University ', '', 'Mca', '2020', 78.00, '', 1, '2022-07-22 10:51:55', 0, NULL, 0, NULL, 1),
(12101, 9516, '2', 'State board', '', '', '2013', 55.00, '', 1, '2022-07-22 10:52:19', 0, NULL, 0, NULL, 1),
(12102, 9516, '3', 'Deemed university ', '', 'BCA', '2017', 79.00, '', 1, '2022-07-22 10:53:04', 0, NULL, 0, NULL, 1),
(12103, 9516, '4', 'Madras university ', '', 'MCA', '2020', 82.00, '', 1, '2022-07-22 10:53:32', 0, NULL, 0, NULL, 1),
(12104, 9517, '3', 'Madras', '', 'BCA', '2022', 80.00, '', 1, '2022-07-22 10:58:18', 0, NULL, 0, NULL, 1),
(12105, 9517, '2', 'State board of tamil nadu', '', '', '2019', 81.00, '', 1, '2022-07-22 10:59:21', 0, NULL, 0, NULL, 1),
(12106, 9517, '1', 'State board of tamil nadu', '', '', '2017', 97.00, '', 1, '2022-07-22 11:00:12', 0, NULL, 0, NULL, 1),
(12107, 9518, '3', 'Muthayammal engineering college', '', 'BE cse', '2019', 73.00, '', 1, '2022-07-22 11:03:18', 0, NULL, 0, NULL, 1),
(12108, 9515, '3', 'Madras University', '', 'BCA', '2022', 82.00, '', 1, '2022-07-22 11:07:26', 0, NULL, 0, NULL, 1),
(12109, 9515, '2', 'State Board Of Tamilnadu', '', '', '2019', 73.00, '', 1, '2022-07-22 11:07:49', 0, NULL, 0, NULL, 1),
(12110, 9515, '1', 'State Board of Tamilnadu', '', '', '2017', 95.00, '', 1, '2022-07-22 11:08:17', 0, NULL, 0, NULL, 1),
(12111, 9519, '1', 'State board', '', '', '2016', 84.00, '', 1, '2022-07-22 11:34:28', 0, NULL, 0, NULL, 1),
(12112, 9519, '2', 'State board', '', '', '2018', 61.00, '', 1, '2022-07-22 11:35:16', 0, NULL, 0, NULL, 1),
(12113, 9519, '3', 'Paavai engineering college', '', 'B.E', '2022', 72.00, '', 1, '2022-07-22 11:36:41', 0, NULL, 0, NULL, 1),
(12114, 9521, '3', 'St Joseph college chennai', '', 'BE-CS', '2016', 65.00, '', 1, '2022-07-22 11:41:01', 0, NULL, 0, NULL, 1),
(12115, 9520, '3', 'Chellamal University ', '', 'Bcom', '2022', 70.00, '', 1, '2022-07-22 12:22:42', 0, NULL, 0, NULL, 1),
(12116, 9524, '3', 'Bharathiar University', '', 'Bsc(information technology) ', '2022', 70.20, '', 1, '2022-07-22 12:48:18', 0, NULL, 0, NULL, 1),
(12117, 9523, '3', 'Bharathiyar University ', '', 'BSc Information Technology ', '2022', 66.20, '', 1, '2022-07-22 12:49:24', 0, NULL, 0, NULL, 1),
(12118, 9522, '3', 'Bharathiar University', '', 'B.sc(Information technology)', '2022', 70.43, '', 1, '2022-07-22 12:49:57', 0, NULL, 0, NULL, 1),
(12119, 9526, '3', 'Bharathiyar university ', '', 'B. Sc(information technology) ', '2022', 74.00, '', 1, '2022-07-22 12:56:14', 0, NULL, 0, NULL, 1),
(12120, 9525, '3', 'Bharathiyar University ', '', 'B.sc (Computer Science )', '2022', 75.00, '', 1, '2022-07-22 12:57:29', 0, NULL, 0, NULL, 1),
(12121, 9527, '2', 'University of madras ', '', '', '2022', 75.00, '', 1, '2022-07-22 01:30:32', 0, NULL, 0, NULL, 1),
(12122, 9527, '3', 'University of madras ', '', 'B.com', '2022', 75.00, '', 1, '2022-07-22 01:31:11', 0, NULL, 0, NULL, 1),
(12123, 9528, '3', 'Jamal Mohamed College', '', '', '2019', 64.00, '', 1, '2022-07-22 02:46:05', 0, NULL, 0, NULL, 1),
(12124, 9529, '3', 'Dr. MGR educational and research Institute', '', 'B. Tech', '2021', 7.10, '', 1, '2022-07-22 02:54:05', 0, NULL, 0, NULL, 1),
(12125, 9529, '2', 'State board', '', '', '2017', 68.00, '', 1, '2022-07-22 02:54:55', 0, NULL, 0, NULL, 1),
(12126, 9529, '1', 'State board', '', '', '2015', 78.00, '', 1, '2022-07-22 02:55:33', 0, NULL, 0, NULL, 1),
(12127, 9530, '3', 'M.P.N.M.J Engineering College', '', 'B.E', '2020', 65.00, '', 1, '2022-07-22 03:01:37', 0, NULL, 0, NULL, 1),
(12128, 9532, '3', 'Anna University ', '', 'BE', '2020', 7.10, '', 1, '2022-07-22 03:59:08', 0, NULL, 0, NULL, 1),
(12129, 9532, '5', 'Dots', '', 'DECE', '2016', 75.00, '', 1, '2022-07-22 03:59:45', 0, NULL, 0, NULL, 1),
(12130, 9532, '1', 'State Board ', '', '', '2013', 67.00, '', 1, '2022-07-22 04:00:09', 0, NULL, 0, NULL, 1),
(12131, 9531, '3', 'Thiruvalluvar University ', '', 'Bsc computer science ', '2021', 78.00, '', 1, '2022-07-22 06:03:56', 0, NULL, 0, NULL, 1),
(12132, 9533, '3', 'Medras University ', '', 'BCA Computer Application ', '2020', 70.00, '', 1, '2022-07-22 06:27:31', 0, NULL, 0, NULL, 1),
(12133, 2670, '3', 'Madras University ', '', 'Bcom (General)', '2020', 74.00, '', 1, '2022-07-22 11:00:37', 0, NULL, 0, NULL, 1),
(12134, 2670, '2', 'Tamilnadu state board ', '', '', '2017', 89.00, '', 1, '2022-07-22 11:01:02', 0, NULL, 0, NULL, 1),
(12135, 9534, '4', 'Anna University ', '', 'MCA', '2022', 86.00, '', 1, '2022-07-23 09:59:59', 0, NULL, 0, NULL, 1),
(12136, 9535, '3', 'Madras university', '', 'B.sc computer science', '2019', 61.00, '', 1, '2022-07-23 10:25:08', 0, NULL, 0, NULL, 1),
(12137, 9535, '2', 'General carriyappa higher secondary school', '', '', '2016', 52.00, '', 1, '2022-07-23 10:26:38', 0, NULL, 0, NULL, 1),
(12138, 9536, '4', 'Anna University', '', 'B.E ', '2020', 6.20, '', 1, '2022-07-23 10:27:42', 0, NULL, 0, NULL, 1),
(12139, 9535, '1', 'General carriyappa higher secondary school', '', '', '2014', 78.00, '', 1, '2022-07-23 10:28:21', 0, NULL, 0, NULL, 1),
(12140, 9538, '3', 'Anna University college of Engineering ,Thirukkuvalai, Nagapattinam ', '', 'BE.Computer science ', '2021', 70.32, '', 1, '2022-07-23 10:48:22', 0, NULL, 0, NULL, 1),
(12141, 9539, '3', 'D.G.Vaishnav college ', '', 'BCA', '2022', 7.90, '', 1, '2022-07-23 11:14:57', 0, NULL, 0, NULL, 1),
(12142, 9540, '4', 'Bharathiyar University ', '', 'M.com.ca', '2020', 71.00, '', 1, '2022-07-23 11:21:09', 0, NULL, 0, NULL, 1),
(12143, 9540, '3', 'Bharathiyar University ', '', 'B.com.ca', '2018', 52.00, '', 1, '2022-07-23 11:22:09', 0, NULL, 0, NULL, 1),
(12144, 9540, '2', 'Board', '', '', '2015', 63.00, '', 1, '2022-07-23 11:22:28', 0, NULL, 0, NULL, 1),
(12145, 9540, '1', 'Board', '', '', '2013', 62.00, '', 1, '2022-07-23 11:22:50', 0, NULL, 0, NULL, 1),
(12146, 9541, '3', 'Jaya institute of technology', '', 'BE(ECE)', '2019', 68.00, '', 1, '2022-07-23 11:29:25', 0, NULL, 0, NULL, 1),
(12147, 9541, '2', 'Don Bosco matriculation hrs sec school', '', '', '2015', 76.70, '', 1, '2022-07-23 11:30:40', 0, NULL, 0, NULL, 1),
(12148, 9541, '1', 'Don Bosco matriculation hrs sec school', '', '', '2013', 90.80, '', 1, '2022-07-23 11:31:09', 0, NULL, 0, NULL, 1),
(12149, 9542, '4', 'Madras University ', '', 'MA.Journalism and Communication ', '2022', 62.00, '', 1, '2022-07-23 12:34:54', 0, NULL, 0, NULL, 1),
(12150, 9543, '3', 'Manonmanium sundaranar university ', '', 'B. Sc Computer science ', '2020', 76.90, '', 1, '2022-07-23 01:37:58', 0, NULL, 0, NULL, 1),
(12151, 9544, '3', 'Anna university', '', 'BE', '2015', 65.00, '', 1, '2022-07-23 03:18:50', 0, NULL, 0, NULL, 1),
(12152, 9544, '2', 'Stateboard', '', '', '2011', 66.25, '', 1, '2022-07-23 03:19:23', 0, NULL, 0, NULL, 1),
(12153, 9545, '3', 'Madras University ', '', 'Bsc computer science ', '2022', 71.00, '', 1, '2022-07-23 03:48:48', 0, NULL, 0, NULL, 1),
(12154, 9548, '3', 'meenakshi college of engineering', '', 'b.tech ', '2022', 88.80, '', 1, '2022-07-23 05:11:00', 1, '2022-07-23 05:12:04', 0, NULL, 0),
(12155, 9548, '2', 'state board', '', '', '2018', 75.42, '', 1, '2022-07-23 05:11:33', 1, '2022-07-23 05:11:58', 0, NULL, 0),
(12156, 9548, '1', 'state board', '', '', '2016', 93.40, '', 1, '2022-07-23 05:12:24', 0, NULL, 0, NULL, 1),
(12157, 9548, '2', 'state board', '', '', '2018', 75.40, '', 1, '2022-07-23 05:12:47', 0, NULL, 0, NULL, 1),
(12158, 9548, '3', 'meenakshi college of engineering', '', 'b.tech ', '2022', 88.80, '', 1, '2022-07-23 05:13:30', 0, NULL, 0, NULL, 1),
(12159, 9549, '1', 'State board', '', '', '2015', 62.00, '', 1, '2022-07-23 05:39:57', 0, NULL, 0, NULL, 1),
(12160, 9549, '2', 'State board', '', '', '2017', 54.00, '', 1, '2022-07-23 05:40:39', 0, NULL, 0, NULL, 1),
(12161, 9550, '3', 'Alagapa University Karaikudi ', '', 'Bsc ( mathematics)', '2022', 65.00, '', 1, '2022-07-23 06:02:55', 0, NULL, 0, NULL, 1),
(12162, 9547, '3', 'thiagarajar college', '', 'b.sc computer science', '2022', 68.14, '', 1, '2022-07-24 10:16:11', 0, NULL, 0, NULL, 1),
(12163, 9547, '2', 'nadar saraswathi matriculation higher secondary school', '', '', '2019', 57.50, '', 1, '2022-07-24 10:18:00', 0, NULL, 0, NULL, 1),
(12164, 9547, '1', 'Nadar Saraswathi Matriculation Higher Secondary School', '', '', '2017', 81.00, '', 1, '2022-07-24 10:19:14', 0, NULL, 0, NULL, 1),
(12165, 9551, '4', 'Madras University', '', 'Msc computer science', '2021', 83.00, '', 1, '2022-07-25 09:54:30', 0, NULL, 0, NULL, 1),
(12166, 9552, '3', 'Anna University ', '', 'BE', '2021', 75.00, '', 1, '2022-07-25 10:28:43', 0, NULL, 0, NULL, 1),
(12167, 9553, '3', 'Thiruvallur university', '', 'BCA', '2022', 80.00, '', 1, '2022-07-25 10:46:05', 0, NULL, 0, NULL, 1),
(12168, 9554, '1', 'State board ', '', 'MSc computer science ', '2015', 86.60, '', 1, '2022-07-25 11:00:41', 0, NULL, 0, NULL, 1),
(12169, 9554, '2', 'State Board ', '', '', '2017', 64.00, '', 1, '2022-07-25 11:01:06', 0, NULL, 0, NULL, 1),
(12170, 9554, '3', 'Soka Ikeda College of arts and science for women ', '', 'BSc computer science ', '2020', 81.86, '', 1, '2022-07-25 11:02:09', 0, NULL, 0, NULL, 1),
(12171, 9554, '4', 'Soka Ikeda College of arts and science for women ', '', 'Msc computer science ', '2022', 89.25, '', 1, '2022-07-25 11:02:44', 0, NULL, 0, NULL, 1),
(12172, 9555, '3', 'Madras university', '', 'B. Com (accounts and finance) ', '2022', 70.00, '', 1, '2022-07-25 12:10:58', 0, NULL, 0, NULL, 1),
(12173, 9555, '2', 'State board', '', '', '2019', 55.70, '', 1, '2022-07-25 12:12:02', 0, NULL, 0, NULL, 1),
(12174, 9555, '1', 'Matriculation', '', '', '2017', 75.80, '', 1, '2022-07-25 12:12:28', 0, NULL, 0, NULL, 1),
(12175, 9556, '5', 'DOTE', '', 'Dce', '2022', 92.40, '', 1, '2022-07-25 12:16:14', 0, NULL, 0, NULL, 1),
(12176, 9556, '1', 'State', '', '', '2019', 50.60, '', 1, '2022-07-25 12:17:02', 0, NULL, 0, NULL, 1),
(12177, 9559, '3', 'Thiruvalluvar University ', '', 'Bsc., computer science ', '2021', 89.00, '', 1, '2022-07-25 12:27:20', 0, NULL, 0, NULL, 1),
(12178, 9557, '4', 'Bharathiyar university', '', 'M. Com', '2019', 64.00, '', 1, '2022-07-25 12:28:18', 0, NULL, 0, NULL, 1),
(12179, 9558, '3', 'Barathiyar university ', '', 'B.com', '2019', 62.00, '', 1, '2022-07-25 12:31:11', 0, NULL, 0, NULL, 1),
(12180, 9561, '2', 'Anna university ', '', '', '2019', 75.00, '', 1, '2022-07-25 12:57:04', 0, NULL, 0, NULL, 1),
(12181, 9562, '3', 'Anna university ', '', 'BE', '2022', 85.00, '', 1, '2022-07-25 01:02:02', 0, NULL, 0, NULL, 1),
(12182, 9564, '3', 'Anna University ', '', 'BE', '2022', 87.90, '', 1, '2022-07-25 01:02:42', 0, NULL, 0, NULL, 1),
(12183, 9563, '3', 'Anna University', '', 'B.E', '2022', 9.00, '', 1, '2022-07-25 01:08:19', 0, NULL, 0, NULL, 1),
(12184, 9565, '3', 'Alagappa university ', '', 'Bba', '2022', 70.00, '', 1, '2022-07-25 01:10:33', 0, NULL, 0, NULL, 1),
(12185, 9567, '3', 'Madras University ', '', 'B.Com Bank Manager ', '2022', 76.00, '', 1, '2022-07-25 01:39:13', 0, NULL, 0, NULL, 1),
(12186, 9566, '3', 'Madras University ', '', 'B.com Banking management ', '2022', 78.00, '', 1, '2022-07-25 01:44:34', 0, NULL, 0, NULL, 1),
(12187, 9568, '3', 's.r.m university', '', '', '2023', 70.00, '', 1, '2022-07-25 02:32:11', 0, NULL, 0, NULL, 1),
(12188, 9569, '3', 'Dr.mgr educational and resource University ', '', 'B.com genaral ', '2022', 70.00, '', 1, '2022-07-25 02:57:58', 0, NULL, 0, NULL, 1),
(12189, 9560, '3', 'st.peters university', '', 'b.e mechanical', '2021', 6.70, '', 1, '2022-07-25 05:15:48', 0, NULL, 0, NULL, 1),
(12190, 9560, '2', 'state board of intermediate education', '', 'b.e mechanical', '2017', 72.20, '', 1, '2022-07-25 05:19:49', 0, NULL, 0, NULL, 1),
(12191, 9560, '1', 'state board of secondary education', '', '', '2015', 79.20, '', 1, '2022-07-25 05:21:36', 0, NULL, 0, NULL, 1),
(12192, 9573, '3', 'Anna university, Tamilnadu', '', 'B. Tech', '2022', 7.33, '', 1, '2022-07-25 06:37:40', 0, NULL, 0, NULL, 1),
(12193, 9574, '1', 'Tamilnadu state board', '', '', '2012', 86.00, '', 1, '2022-07-26 10:06:49', 0, NULL, 0, NULL, 1),
(12194, 9574, '2', 'Tamilnadu state board ', '', '', '2014', 83.00, '', 1, '2022-07-26 10:07:06', 0, NULL, 0, NULL, 1),
(12195, 9575, '4', 'DR.MGR EDUCATIONAL RESEARCH INSTITUTE ', '', 'MBA HR', '2022', 80.00, '', 1, '2022-07-26 10:07:33', 0, NULL, 0, NULL, 1),
(12196, 9574, '3', 'Anna University ', '', 'B.E.', '2018', 69.00, '', 1, '2022-07-26 10:07:37', 0, NULL, 0, NULL, 1),
(12197, 9574, '4', 'Anna University', '', 'M.e.', '2022', 80.00, '', 1, '2022-07-26 10:08:00', 0, NULL, 0, NULL, 1),
(12198, 9576, '4', 'Dr. M.G.R Educational And Research Institute ', '', 'MBA', '2022', 82.00, '', 1, '2022-07-26 10:11:11', 0, NULL, 0, NULL, 1),
(12199, 9577, '3', 'Anna University ', '', 'B.E', '2021', 73.10, '', 1, '2022-07-26 10:45:36', 0, NULL, 0, NULL, 1),
(12200, 9578, '3', 'St Joseph College ', '', 'BCA', '2021', 70.00, '', 1, '2022-07-26 11:12:44', 0, NULL, 0, NULL, 1),
(12201, 9583, '3', 'Vels university', '', 'BCA', '2022', 68.00, '', 1, '2022-07-26 11:29:20', 0, NULL, 0, NULL, 1),
(12202, 9580, '3', 'Loyola college ', '', 'B.com ', '2012', 57.00, '', 1, '2022-07-26 11:31:14', 0, NULL, 0, NULL, 1),
(12203, 9581, '3', 'Vel tech multi tech dr.rr dr.sr engineering college ', '', 'B.E', '2021', 7.18, '', 1, '2022-07-26 11:31:17', 0, NULL, 0, NULL, 1),
(12204, 9582, '4', 'Asan memorial college of arts and science', '', 'MCA', '2022', 84.00, '', 1, '2022-07-26 11:31:19', 0, NULL, 0, NULL, 1),
(12205, 9584, '3', 'Madras University', '', 'BCA', '2021', 85.00, '', 1, '2022-07-26 11:47:33', 0, NULL, 0, NULL, 1),
(12206, 9585, '3', 'Anna University ', '', 'BE, Electronics and communication Engineering ', '2020', 64.80, '', 1, '2022-07-26 11:58:41', 0, NULL, 0, NULL, 1),
(12207, 9585, '2', 'State board', '', '', '2016', 59.40, '', 1, '2022-07-26 11:59:44', 0, NULL, 0, NULL, 1),
(12208, 9586, '4', 'Annamalai University ', '', 'Master of computer applications ', '2021', 79.00, '', 1, '2022-07-26 01:11:59', 0, NULL, 0, NULL, 1),
(12209, 9586, '3', 'Thiruvalluvar University ', '', 'Bachelor of computer applications ', '2018', 68.00, '', 1, '2022-07-26 01:12:34', 0, NULL, 0, NULL, 1),
(12210, 9586, '2', 'State board ', '', '', '2015', 52.00, '', 1, '2022-07-26 01:13:26', 0, NULL, 0, NULL, 1),
(12211, 9586, '1', 'State board ', '', '', '2013', 73.00, '', 1, '2022-07-26 01:13:55', 0, NULL, 0, NULL, 1),
(12212, 9587, '3', 'Don bosco Christian ', '', 'Bcom ', '2016', 70.00, '', 1, '2022-07-26 01:19:08', 0, NULL, 0, NULL, 1),
(12213, 9572, '3', 'Madras University ', '', 'BCA', '2022', 78.00, '', 1, '2022-07-26 02:32:06', 0, NULL, 0, NULL, 1),
(12214, 9590, '3', 'Anna University ', '', 'B. Tech ', '2020', 7.19, '', 1, '2022-07-26 10:12:13', 0, NULL, 0, NULL, 1),
(12215, 9592, '3', 'Anna university ', '', 'BE- Mechanical engineering ', '2022', 83.00, '', 1, '2022-07-27 10:13:52', 0, NULL, 0, NULL, 1),
(12216, 9592, '2', 'State board ', '', '', '2018', 70.00, '', 1, '2022-07-27 10:14:26', 0, NULL, 0, NULL, 1),
(12217, 9592, '1', 'State board ', '', '', '2016', 87.80, '', 1, '2022-07-27 10:15:03', 0, NULL, 0, NULL, 1),
(12218, 9594, '3', 'Anna University', '', 'BE-ECE', '2021', 71.00, '', 1, '2022-07-27 10:49:56', 0, NULL, 0, NULL, 1),
(12219, 9595, '3', 'Bharathiyar university ', '', 'Bsc physics ', '2021', 64.00, '', 1, '2022-07-27 11:16:36', 0, NULL, 0, NULL, 1),
(12220, 9596, '3', 'Anna University ', '', 'B. E. Electronics and communication engineering ', '2020', 60.52, '', 1, '2022-07-27 11:38:18', 0, NULL, 0, NULL, 1),
(12221, 9598, '3', 'Medras university', '', 'BCA', '2022', 78.50, '', 1, '2022-07-27 11:54:23', 0, NULL, 0, NULL, 1),
(12222, 9597, '3', 'University of Madras ', '', 'B.sc computer science ', '2021', 72.00, '', 1, '2022-07-27 11:56:15', 0, NULL, 0, NULL, 1),
(12223, 9599, '3', 'Anna University ', '', 'BE computer science ', '2020', 65.00, '', 1, '2022-07-27 12:15:50', 0, NULL, 0, NULL, 1),
(12224, 9600, '5', 'Anna university ', '', 'DIPLOMA  EEE', '2018', 71.00, '', 1, '2022-07-27 12:16:02', 0, NULL, 0, NULL, 1),
(12225, 9601, '5', 'Frankfinn ', '', 'Aviation', '2021', 75.00, '', 1, '2022-07-27 12:34:42', 0, NULL, 0, NULL, 1),
(12226, 9589, '3', 'avc college of autonomous mannampandal mayiladuthurai', '', 'bachelor of computer application', '2022', 70.00, '', 1, '2022-07-27 01:21:16', 0, NULL, 0, NULL, 1),
(12227, 9602, '3', 'Sri venkateshwara University ', '', 'BBA ', '2022', 83.00, '', 1, '2022-07-27 03:14:22', 0, NULL, 0, NULL, 1),
(12228, 9604, '3', 'dr.j.jayalalithaa music and fine arts university', '', 'bachelor of arts in music', '2021', 72.50, '', 1, '2022-07-27 04:03:06', 0, NULL, 0, NULL, 1),
(12229, 9605, '3', 'Madras University ', '', 'B.sc., Chemistry ', '2020', 68.00, '', 1, '2022-07-27 04:03:29', 0, NULL, 0, NULL, 1),
(12230, 9604, '2', 'viraraghava higher secondary school', '', '', '2017', 61.91, '', 1, '2022-07-27 04:03:52', 0, NULL, 0, NULL, 1),
(12231, 9604, '1', 'viraraghava higher secondary school', '', '', '2015', 87.20, '', 1, '2022-07-27 04:04:31', 0, NULL, 0, NULL, 1),
(12232, 9608, '3', 'MGR University ', '', 'BCA', '2022', 70.00, '', 1, '2022-07-28 11:07:35', 0, NULL, 0, NULL, 1),
(12233, 9610, '4', 'University of Madras', '', 'Master of Computer Application', '2022', 81.00, '', 1, '2022-07-28 11:07:58', 0, NULL, 0, NULL, 1),
(12234, 9609, '3', 'Madras university', '', 'B.com (c.s)', '2022', 70.00, '', 1, '2022-07-28 11:10:41', 0, NULL, 0, NULL, 1),
(12235, 9611, '4', 'St.joseph college ,Trichy.', '', 'Msc(computer science)', '2021', 7.20, '', 1, '2022-07-28 11:10:55', 0, NULL, 0, NULL, 1),
(12236, 9607, '3', 'Thiruvalluvar University', '', 'B.com', '2022', 85.00, '', 1, '2022-07-28 11:11:06', 0, NULL, 0, NULL, 1),
(12237, 9615, '3', 'Anna university ', '', 'BE-CSE', '2020', 6.30, '', 1, '2022-07-28 11:52:20', 0, NULL, 0, NULL, 1),
(12238, 9616, '3', 'Anna University ', '', 'BE', '2021', 80.02, '', 1, '2022-07-28 01:19:04', 0, NULL, 0, NULL, 1),
(12239, 9618, '3', 'Bharathiar ', '', 'B .com', '2022', 70.00, '', 1, '2022-07-28 03:01:27', 0, NULL, 0, NULL, 1),
(12240, 9619, '3', 'Bharathiyar', '', 'Bcom. CA', '2022', 75.00, '', 1, '2022-07-28 03:02:21', 0, NULL, 0, NULL, 1),
(12241, 9606, '3', 'annamalai university', '', 'b.sc agri', '2021', 80.00, '', 1, '2022-07-28 03:04:13', 0, NULL, 0, NULL, 1),
(12242, 9617, '3', 'Bharathiyar', '', 'Bcom CA', '2022', 75.00, '', 1, '2022-07-28 03:07:47', 0, NULL, 0, NULL, 1),
(12243, 9620, '3', 'Madras University ', '', 'Bba', '2022', 70.00, '', 1, '2022-07-28 03:29:30', 0, NULL, 0, NULL, 1),
(12244, 9622, '3', 'Madras university ', '', '', '2021', 54.00, '', 1, '2022-07-28 04:04:43', 0, NULL, 0, NULL, 1),
(12245, 9623, '3', 'Sri venkateshwara University -tirupathi', '', 'Bachelor of science (B.Sc)', '2021', 74.00, '', 1, '2022-07-28 04:23:58', 0, NULL, 0, NULL, 1),
(12246, 9628, '3', 'Dr. Mgr janaki college of arts and science for women', '', '', '2022', 83.00, '', 1, '2022-07-29 11:02:52', 0, NULL, 0, NULL, 1),
(12247, 9628, '1', 'State board', '', '', '2017', 64.00, '', 1, '2022-07-29 11:04:30', 0, NULL, 0, NULL, 1),
(12248, 9628, '2', 'State board', '', '', '2019', 41.00, '', 1, '2022-07-29 11:04:58', 0, NULL, 0, NULL, 1),
(12249, 9629, '3', 'A.m.jain college ', '', 'B.Com', '2022', 78.00, '', 1, '2022-07-29 11:13:55', 0, NULL, 0, NULL, 1),
(12250, 9629, '2', 'sri sankara Vidyashramam higher secondary school ', '', '', '2019', 50.00, '', 1, '2022-07-29 11:15:29', 0, NULL, 0, NULL, 1),
(12251, 9629, '1', 'Himayam matriculation school ', '', '', '2017', 81.00, '', 1, '2022-07-29 11:15:59', 0, NULL, 0, NULL, 1),
(12252, 9630, '3', 'Jaya engineering college ', '', 'BE CSE', '2020', 70.00, '', 1, '2022-07-29 11:36:41', 0, NULL, 0, NULL, 1),
(12253, 9631, '3', 'Manonmaniyam sundharanar University tirunelveli ', '', 'BBA', '2020', 65.00, '', 1, '2022-07-29 11:49:09', 0, NULL, 0, NULL, 1),
(12254, 9633, '3', 'Thiruvalluvar University', '', 'BSC ', '2017', 60.00, '', 1, '2022-07-29 11:52:16', 0, NULL, 0, NULL, 1),
(12255, 9632, '3', 'Periyar university ', '', 'B.sc.computer science ', '2020', 76.00, '', 1, '2022-07-29 11:55:49', 0, NULL, 0, NULL, 1),
(12256, 9634, '3', 'Anna university ', '', 'B.E', '2013', 60.00, '', 1, '2022-07-29 11:55:53', 0, NULL, 0, NULL, 1),
(12257, 9621, '3', 'madras university', '', 'B. sc', '2020', 60.00, '', 1, '2022-07-29 11:56:57', 0, NULL, 0, NULL, 1),
(12258, 9626, '3', 'Madras university ', '', 'B.sc physics ', '2020', 67.00, '', 1, '2022-07-29 12:01:27', 0, NULL, 0, NULL, 1),
(12259, 9635, '3', 'Crescent university', '', 'B. Tech', '2022', 67.00, '', 1, '2022-07-29 12:18:31', 0, NULL, 0, NULL, 1),
(12260, 9636, '3', 'Anna university ', '', 'B.E.ECE', '2022', 74.00, '', 1, '2022-07-29 12:18:34', 0, NULL, 0, NULL, 1),
(12261, 9635, '5', 'Sri sairam institute of technology', '', 'Diploma in computer science', '2019', 73.00, '', 1, '2022-07-29 12:19:30', 0, NULL, 0, NULL, 1),
(12262, 9635, '1', 'State board', '', '', '2016', 70.00, '', 1, '2022-07-29 12:20:01', 0, NULL, 0, NULL, 1),
(12263, 9637, '1', 'Meenatchi university ', '', '', '2017', 69.00, '', 1, '2022-07-29 12:34:19', 0, NULL, 0, NULL, 1),
(12264, 9638, '3', 'Bharath university', '', 'Bca ', '2022', 71.00, '', 1, '2022-07-29 02:20:44', 0, NULL, 0, NULL, 1),
(12265, 9638, '1', 'State board', '', '', '2017', 81.00, '', 1, '2022-07-29 02:21:57', 0, NULL, 0, NULL, 1),
(12266, 9638, '2', 'State board', '', '', '2019', 52.00, '', 1, '2022-07-29 02:22:46', 0, NULL, 0, NULL, 1),
(12267, 9639, '3', 'Bharthiyar University', '', 'B.com', '2022', 58.00, '', 1, '2022-07-29 04:17:42', 0, NULL, 0, NULL, 1),
(12268, 9640, '3', 'Bharadhidasan university', '', 'B. Sc, chemistry', '2022', 78.00, '', 1, '2022-07-30 09:45:39', 0, NULL, 0, NULL, 1),
(12269, 9641, '3', 'Dr MGR University ', '', 'B tech ', '2022', 72.00, '', 1, '2022-07-30 09:49:13', 0, NULL, 0, NULL, 1),
(12270, 9642, '4', 'Bharathidasan university', '', 'M. Sc', '2021', 86.70, '', 1, '2022-07-30 10:29:00', 0, NULL, 0, NULL, 1),
(12271, 9642, '3', 'Bharathidasan university', '', 'B. Sc', '2019', 69.00, '', 1, '2022-07-30 10:29:30', 0, NULL, 0, NULL, 1),
(12272, 9643, '3', 'Jeppiaar engineering college Chennai', '', 'B.E Mechanical', '2020', 63.00, '', 1, '2022-07-30 10:34:53', 0, NULL, 0, NULL, 1),
(12273, 9643, '2', 'St Joseph\'s higher secondary school Thiruthuvapuram', '', '', '2016', 79.00, '', 1, '2022-07-30 10:36:21', 0, NULL, 0, NULL, 1),
(12274, 9643, '1', 'St James high school Valiyavila, kanyakumari', '', '', '2014', 86.00, '', 1, '2022-07-30 10:36:49', 0, NULL, 0, NULL, 1),
(12275, 9644, '3', 'SVU', '', 'BSc Statistics ', '2016', 55.00, '', 1, '2022-07-30 11:26:03', 0, NULL, 0, NULL, 1),
(12276, 9645, '3', 'Madras University ', '', 'Bcom Account And Finance ', '2022', 70.00, '', 1, '2022-07-30 11:45:15', 0, NULL, 0, NULL, 1),
(12277, 9646, '3', 'bharathiyar univerity ', '', 'B.com(CA)', '2022', 65.00, '', 1, '2022-07-30 12:30:07', 0, NULL, 0, NULL, 1),
(12278, 9647, '3', 'Madras University ', '', 'Bsc.Physics ', '2021', 60.00, '', 1, '2022-07-30 02:13:57', 0, NULL, 0, NULL, 1),
(12279, 9647, '2', 'Board ', '', '', '2018', 79.90, '', 1, '2022-07-30 02:15:01', 1, '2022-07-30 02:15:17', 0, NULL, 1),
(12280, 9647, '1', 'Board ', '', '', '2016', 90.00, '', 1, '2022-07-30 02:15:37', 0, NULL, 0, NULL, 1),
(12281, 9651, '4', 'University of Madras ', '', 'MSc information technology ', '2021', 80.00, '', 1, '2022-08-01 09:56:27', 0, NULL, 0, NULL, 1),
(12282, 9650, '3', 'Anna University ', '', 'B.E., CSE', '2022', 78.50, '', 1, '2022-08-01 09:59:25', 0, NULL, 0, NULL, 1),
(12283, 9650, '2', 'State Board of TN', '', '', '2018', 56.08, '', 1, '2022-08-01 10:00:07', 0, NULL, 0, NULL, 1),
(12284, 9650, '1', 'State Board of TN ', '', '', '2016', 86.40, '', 1, '2022-08-01 10:00:32', 0, NULL, 0, NULL, 1),
(12285, 9652, '2', 'Chse', '', '', '2021', 58.00, '', 1, '2022-08-01 10:28:12', 0, NULL, 0, NULL, 1),
(12286, 9653, '3', 'Bharathidasan University', '', 'BA tamil', '2017', 66.00, '', 1, '2022-08-01 11:08:46', 0, NULL, 0, NULL, 1),
(12287, 9655, '3', 'Bharathidasan University', '', 'BA TAMIL', '2022', 57.86, '', 1, '2022-08-01 11:09:02', 0, NULL, 0, NULL, 1),
(12288, 9656, '4', 'Sona College of Technology ', '', 'Master of computer Applications ', '2022', 8.33, '', 1, '2022-08-01 11:17:32', 0, NULL, 0, NULL, 1),
(12289, 9656, '3', 'Muthayammal College of arts and science ', '', 'Bsc Computer science ', '2020', 68.50, '', 1, '2022-08-01 11:18:05', 1, '2022-08-01 11:19:17', 0, NULL, 0),
(12290, 9656, '1', 'AKT Academy Matric higher secondary school ', '', '', '2015', 55.00, '', 1, '2022-08-01 11:19:11', 0, NULL, 0, NULL, 1),
(12291, 9656, '3', 'Muthayammal College of arts and science  ', '', 'Bsc Computer science ', '2020', 68.50, '', 1, '2022-08-01 11:21:42', 0, NULL, 0, NULL, 1),
(12292, 9656, '2', 'AKT Academy Matric higher secondary school ', '', '', '2017', 50.40, '', 1, '2022-08-01 11:22:15', 0, NULL, 0, NULL, 1),
(12293, 9654, '3', 'Bharathidasan University', '', 'Bsc Botany', '2021', 81.00, '', 1, '2022-08-01 11:36:46', 0, NULL, 0, NULL, 1),
(12294, 8908, '4', 'Hindustan college of arts and science ', '', 'Mba', '2021', 70.00, '', 1, '2022-08-01 11:49:53', 0, NULL, 0, NULL, 1),
(12295, 9657, '3', 'Madras university Apollo arts and science college ', '', 'BCA', '2021', 70.00, '', 1, '2022-08-01 11:59:45', 0, NULL, 0, NULL, 1),
(12296, 9658, '4', 'Madras University ', '', 'Msc computer science ', '2022', 82.00, '', 1, '2022-08-01 12:04:23', 1, '2022-08-01 12:06:22', 0, NULL, 0),
(12297, 9658, '1', 'State board ', '', '', '2015', 89.00, '', 1, '2022-08-01 12:05:43', 1, '2022-08-01 12:06:41', 0, NULL, 0),
(12298, 9658, '2', 'State board ', '', '', '2017', 76.00, '', 1, '2022-08-01 12:06:55', 1, '2022-08-01 12:07:05', 0, NULL, 0),
(12299, 9658, '1', 'State board ', '', '', '2015', 89.00, '', 1, '2022-08-01 12:07:27', 0, NULL, 0, NULL, 1),
(12300, 9658, '2', 'State board ', '', '', '2017', 76.00, '', 1, '2022-08-01 12:07:40', 0, NULL, 0, NULL, 1),
(12301, 9658, '3', 'Madras University ', '', 'Bsc computer science ', '2020', 78.00, '', 1, '2022-08-01 12:08:10', 0, NULL, 0, NULL, 1),
(12302, 9660, '3', 'Bharathiar University ', '', 'B.Sc', '2020', 68.40, '', 1, '2022-08-01 12:08:14', 0, NULL, 0, NULL, 1),
(12303, 9658, '4', 'Madras University ', '', 'Msc computer science ', '2022', 82.00, '', 1, '2022-08-01 12:08:30', 0, NULL, 0, NULL, 1),
(12304, 9659, '1', 'State board ', '', '', '2015', 86.00, '', 1, '2022-08-01 12:17:06', 0, NULL, 0, NULL, 1),
(12305, 9659, '2', 'State board', '', '', '2017', 80.00, '', 1, '2022-08-01 12:17:28', 0, NULL, 0, NULL, 1),
(12306, 9659, '3', 'University of madras ', '', 'BCA', '2020', 75.00, '', 1, '2022-08-01 12:17:57', 0, NULL, 0, NULL, 1),
(12307, 9659, '4', 'University of madras ', '', 'Msc.computer science', '2022', 78.00, '', 1, '2022-08-01 12:18:27', 0, NULL, 0, NULL, 1),
(12308, 9661, '3', 'Anna university', '', 'BE Computer science', '2021', 70.00, '', 1, '2022-08-01 12:35:13', 0, NULL, 0, NULL, 1),
(12309, 9662, '3', 'Annai velakani', '', 'Bcom', '2019', 70.00, '', 1, '2022-08-01 12:49:53', 0, NULL, 0, NULL, 1),
(12310, 9665, '3', 'Sri Kanyaka Parameswari Arts And Science College For Women', '', 'B.Com', '2022', 89.80, '', 1, '2022-08-01 04:50:37', 0, NULL, 0, NULL, 1),
(12311, 9670, '2', 'State board', '', '', '2013', 71.00, '', 1, '2022-08-02 09:46:25', 0, NULL, 0, NULL, 1),
(12312, 9670, '4', 'Anna university ', '', 'Mba', '2018', 68.00, '', 1, '2022-08-02 09:46:54', 0, NULL, 0, NULL, 1),
(12313, 9671, '1', 'state board', '', '', '2010', 83.00, '', 1, '2022-08-02 09:51:36', 0, NULL, 0, NULL, 1),
(12314, 9671, '3', 'bsa', '', 'btech polymer', '2020', 70.00, '', 1, '2022-08-02 09:52:13', 0, NULL, 0, NULL, 1),
(12315, 9674, '3', 'Periyar University ', '', 'B.com financial marketing analaicse', '2022', 60.00, '', 1, '2022-08-02 10:42:18', 0, NULL, 0, NULL, 1),
(12316, 9668, '4', 'Alagappa university', '', 'Msc nanoscience & technology', '2022', 70.00, '', 1, '2022-08-02 10:43:22', 0, NULL, 0, NULL, 1),
(12317, 9669, '4', 'University ', '', 'Botany', '2022', 72.00, '', 1, '2022-08-02 10:45:56', 0, NULL, 0, NULL, 1),
(12318, 9676, '4', 'bhrathidasan university', '', 'chemistry', '2021', 79.00, '', 1, '2022-08-02 10:48:52', 0, NULL, 0, NULL, 1),
(12319, 9675, '3', 'University of madras', '', 'B.com', '2016', 60.00, '', 1, '2022-08-02 10:49:05', 0, NULL, 0, NULL, 1),
(12320, 9667, '4', 'Alagappa University ', '', 'M.sc botany ', '2022', 84.00, '', 1, '2022-08-02 10:49:08', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12321, 9677, '3', 'University of madras', '', 'B. Com', '2021', 75.00, '', 1, '2022-08-02 11:04:04', 0, NULL, 0, NULL, 1),
(12322, 9666, '3', 'Bharathidasan University ', '', 'BBA', '2021', 66.00, '', 1, '2022-08-02 11:05:30', 0, NULL, 0, NULL, 1),
(12323, 9673, '3', 'bharathithasan universitY', '', 'bsc', '2021', 91.00, '', 85, '2022-08-02 11:13:10', 0, NULL, 0, NULL, 1),
(12324, 9679, '3', 'Anna University ', '', 'B.E', '2022', 7.12, '', 1, '2022-08-02 11:19:18', 0, NULL, 0, NULL, 1),
(12325, 9678, '3', 'bharathidasan university', '', 'Biotechnology ', '2019', 79.00, '', 1, '2022-08-02 11:34:15', 0, NULL, 0, NULL, 1),
(12326, 9680, '3', 'Bharathiar University', '', 'Bcom (CA)', '2022', 71.00, '', 1, '2022-08-02 11:35:46', 0, NULL, 0, NULL, 1),
(12327, 9681, '4', 'VELS UNIVERSITY ', '', 'MCA', '2020', 70.00, '', 1, '2022-08-02 11:52:42', 0, NULL, 0, NULL, 1),
(12328, 9681, '1', 'STATE BOARD', '', '', '2013', 85.50, '', 1, '2022-08-02 11:53:38', 0, NULL, 0, NULL, 1),
(12329, 9681, '2', 'STATE BOARD ', '', '', '2015', 67.70, '', 1, '2022-08-02 11:54:12', 0, NULL, 0, NULL, 1),
(12330, 9681, '3', 'UNIVERSITY ', '', 'Bsc(IT)', '2018', 69.00, '', 1, '2022-08-02 11:54:49', 0, NULL, 0, NULL, 1),
(12331, 9682, '4', 'Vels University ', '', 'MCA ', '2020', 78.00, '', 1, '2022-08-02 12:04:04', 0, NULL, 0, NULL, 1),
(12332, 9682, '3', 'Vels University ', '', 'BSC computer science ', '2018', 69.00, '', 1, '2022-08-02 12:04:27', 0, NULL, 0, NULL, 1),
(12333, 9682, '2', 'Sekkizhar govt boys higher secondary school ', '', '', '2015', 52.00, '', 1, '2022-08-02 12:07:15', 0, NULL, 0, NULL, 1),
(12334, 9682, '1', 'Sekkizhar govt boys higher secondary school ', '', '', '2013', 64.00, '', 1, '2022-08-02 12:07:44', 0, NULL, 0, NULL, 1),
(12335, 9672, '2', 'state board', '', '', '2019', 64.00, '', 1, '2022-08-02 01:12:25', 0, NULL, 0, NULL, 1),
(12336, 9672, '3', 'thiruvalluvar university', '', 'bsc cs', '2022', 72.00, '', 1, '2022-08-02 01:13:14', 0, NULL, 0, NULL, 1),
(12337, 9685, '2', 'Tamil nadu state board', '', '', '2014', 50.00, '', 1, '2022-08-02 02:40:42', 0, NULL, 0, NULL, 1),
(12338, 9683, '3', 'Thiruvalluvar University ', '', 'Bca', '2020', 80.00, '', 1, '2022-08-02 03:38:00', 0, NULL, 0, NULL, 1),
(12339, 9686, '3', 'Bharathiar University', '', 'Bachelor commerce in computer application', '2022', 65.00, '', 1, '2022-08-02 03:42:45', 0, NULL, 0, NULL, 1),
(12340, 9688, '3', 'Bharathiar University ', '', 'BBA', '2019', 77.00, '', 1, '2022-08-02 06:04:06', 0, NULL, 0, NULL, 1),
(12341, 9692, '4', 'Patrician college art\'s and science ', '', 'MA HRM', '2022', 83.00, '', 1, '2022-08-02 06:47:50', 0, NULL, 0, NULL, 1),
(12342, 9695, '2', 'state board', '', '', '2018', 63.00, '', 1, '2022-08-03 10:42:14', 0, NULL, 0, NULL, 1),
(12343, 9695, '3', 'anna university', '', 'be', '2022', 76.00, '', 1, '2022-08-03 10:42:35', 0, NULL, 0, NULL, 1),
(12344, 9697, '2', 'state board', '', '', '2017', 47.00, '', 1, '2022-08-03 11:08:11', 0, NULL, 0, NULL, 1),
(12345, 9697, '3', 'deemed university', '', 'bca', '2021', 71.00, '', 1, '2022-08-03 11:08:42', 0, NULL, 0, NULL, 1),
(12346, 9694, '3', 'Bharathidhasan University ', '', 'B.cs computer science ', '2022', 92.00, '', 1, '2022-08-03 11:20:49', 0, NULL, 0, NULL, 1),
(12347, 9693, '3', 'Bharathidhasan University ', '', 'Bsc computer science ', '2022', 85.00, '', 1, '2022-08-03 11:28:09', 0, NULL, 0, NULL, 1),
(12348, 9696, '3', 'Dr.mgr educational and research institute ', '', 'Bsc.computer science ', '2022', 75.00, '', 1, '2022-08-03 11:47:22', 0, NULL, 0, NULL, 1),
(12349, 9699, '3', 'Anna University', '', 'B.E', '2021', 81.00, '', 1, '2022-08-03 12:11:59', 0, NULL, 0, NULL, 1),
(12350, 9699, '2', 'NMHSS', '', '', '2017', 86.00, '', 1, '2022-08-03 12:12:37', 0, NULL, 0, NULL, 1),
(12351, 9699, '1', 'NMHSS', '', '', '2015', 94.00, '', 1, '2022-08-03 12:13:04', 0, NULL, 0, NULL, 1),
(12352, 9691, '3', 'Arulmigu kalasalingam college of art and science ', '', 'B. Com (CA)', '2020', 62.00, '', 1, '2022-08-03 12:23:27', 0, NULL, 0, NULL, 1),
(12353, 9700, '4', 'Bharathidhason University ', '', 'MBA', '2020', 75.00, '', 1, '2022-08-03 02:55:18', 1, '2022-08-03 02:57:54', 0, NULL, 1),
(12354, 9700, '3', 'Sastra University ', '', 'B.com(cA)', '2018', 76.00, '', 1, '2022-08-03 02:56:04', 0, NULL, 0, NULL, 1),
(12355, 9700, '2', 'Matriculation ', '', '', '2015', 86.00, '', 1, '2022-08-03 02:56:40', 1, '2022-08-03 02:57:10', 0, NULL, 1),
(12356, 9700, '1', 'State board', '', '', '2013', 93.00, '', 1, '2022-08-03 02:58:15', 0, NULL, 0, NULL, 1),
(12357, 9701, '3', 'Tnou', '', 'BSC psychology', '2013', 60.00, '', 1, '2022-08-03 04:50:11', 1, '2022-08-03 04:50:54', 0, NULL, 0),
(12358, 9701, '3', 'Tamilnadu open University', '', 'BSC, psychology', '2013', 60.00, '', 1, '2022-08-03 04:52:17', 0, NULL, 0, NULL, 1),
(12359, 9702, '3', 'Bharadthidasan ', '', 'BCA', '2020', 58.00, '', 1, '2022-08-04 10:37:27', 0, NULL, 0, NULL, 1),
(12360, 9702, '2', 'State board ', '', '', '2017', 65.00, '', 1, '2022-08-04 10:38:10', 0, NULL, 0, NULL, 1),
(12361, 9702, '1', 'State board ', '', '', '2015', 60.00, '', 1, '2022-08-04 10:38:29', 0, NULL, 0, NULL, 1),
(12362, 9703, '3', 'SRM INSTITUTE OF SCIENCE AND TECHNOLOGY ', '', 'B.Sc computer science ', '2020', 5.80, '', 1, '2022-08-04 10:44:13', 0, NULL, 0, NULL, 1),
(12363, 9704, '3', 'Madras University ', '', 'B.com corporate secretaryship ', '2022', 70.00, '', 1, '2022-08-04 12:09:58', 0, NULL, 0, NULL, 1),
(12364, 9705, '1', 'University of madras', '', '', '2014', 75.00, '', 1, '2022-08-04 12:45:56', 0, NULL, 0, NULL, 1),
(12365, 9706, '2', 'state board', '', '', '2019', 73.00, '', 1, '2022-08-04 02:06:02', 0, NULL, 0, NULL, 1),
(12366, 9706, '3', 'manonmanian sundaranar university', '', 'bca', '2022', 80.00, '', 1, '2022-08-04 02:06:53', 0, NULL, 0, NULL, 1),
(12367, 9707, '2', 'state board', '', '', '2019', 58.00, '', 1, '2022-08-04 02:09:08', 0, NULL, 0, NULL, 1),
(12368, 9707, '3', 'Manonmaniam sundaranar University ', '', 'bca', '2022', 80.00, '', 1, '2022-08-04 02:09:34', 0, NULL, 0, NULL, 1),
(12369, 9708, '3', 'Bharathiyar university', '', 'Bsc computer scoence', '2021', 72.00, '', 1, '2022-08-04 04:37:15', 0, NULL, 0, NULL, 1),
(12370, 9709, '2', 'State board', '', '', '2004', 67.00, '', 1, '2022-08-05 10:58:17', 0, NULL, 0, NULL, 1),
(12371, 9709, '3', 'Anna university ', '', 'Mca', '2009', 89.00, '', 1, '2022-08-05 10:58:45', 0, NULL, 0, NULL, 1),
(12372, 9710, '1', 'State board', '', '', '2013', 58.00, '', 1, '2022-08-05 11:05:06', 0, NULL, 0, NULL, 1),
(12373, 9710, '5', 'Diploma', '', 'Diploma in electrical engineering ', '2016', 67.00, '', 1, '2022-08-05 11:05:35', 0, NULL, 0, NULL, 1),
(12374, 9711, '3', 'bharathiar university ', '', 'B.com(CA) ', '2022', 65.50, '', 1, '2022-08-06 03:11:23', 0, NULL, 0, NULL, 1),
(12375, 9712, '3', 'Madras university', '', 'B. Com', '2022', 89.75, '', 1, '2022-08-06 09:50:14', 0, NULL, 0, NULL, 1),
(12376, 9714, '3', 'Madras university', '', 'BCA', '2022', 88.00, '', 1, '2022-08-06 10:03:00', 0, NULL, 0, NULL, 1),
(12377, 9713, '3', 'University Of Madras', '', 'B.Com(Information System Management)', '2022', 85.50, '', 1, '2022-08-06 10:13:12', 0, NULL, 0, NULL, 1),
(12378, 9713, '1', 'State board', '', 'B.Com(Information System Management)', '2017', 89.00, '', 1, '2022-08-06 10:15:41', 0, NULL, 0, NULL, 1),
(12379, 9713, '2', 'State board', '', '', '2019', 69.00, '', 1, '2022-08-06 10:16:00', 0, NULL, 0, NULL, 1),
(12380, 9717, '3', 'University of Madras ', '', 'B.Com(General)', '2022', 71.00, '', 1, '2022-08-07 09:11:17', 0, NULL, 0, NULL, 1),
(12381, 9716, '1', 'State Board', '', '', '2017', 98.00, '', 1, '2022-08-08 08:46:22', 0, NULL, 0, NULL, 1),
(12382, 9716, '2', 'State Board', '', '', '2019', 82.00, '', 1, '2022-08-08 08:46:46', 0, NULL, 0, NULL, 1),
(12383, 9716, '3', 'University of Madras', '', 'B. Com', '2022', 85.00, '', 1, '2022-08-08 08:47:22', 0, NULL, 0, NULL, 1),
(12384, 9718, '3', 'Prist university', '', 'BBA shipping &logistics', '2022', 80.00, '', 1, '2022-08-08 10:02:05', 0, NULL, 0, NULL, 1),
(12385, 9719, '3', 'Madras University ', '', 'B.a economics ', '2022', 77.00, '', 1, '2022-08-08 10:26:07', 0, NULL, 0, NULL, 1),
(12386, 9721, '4', 'Periyar', '', 'MCA', '2014', 70.00, '', 1, '2022-08-08 10:35:11', 0, NULL, 0, NULL, 1),
(12387, 9720, '3', 'University of Madras ', '', 'Bsc psychology ', '2021', 80.00, '', 1, '2022-08-08 10:38:22', 0, NULL, 0, NULL, 1),
(12388, 9722, '3', 'Bharathiyar University', '', 'B.Sc Electronics', '2022', 79.00, '', 1, '2022-08-08 10:45:51', 0, NULL, 0, NULL, 1),
(12389, 9725, '3', 'Thuruvalluvar University ', '', 'Bsc chemistry ', '2022', 70.00, '', 1, '2022-08-08 11:07:58', 0, NULL, 0, NULL, 1),
(12390, 9570, '3', 'Autonomous ', '', 'Ba.economics', '2021', 70.00, '', 1, '2022-08-08 11:17:00', 0, NULL, 0, NULL, 1),
(12391, 9726, '4', 'Bharathidhasan University ', '', 'M.com', '2020', 65.00, '', 1, '2022-08-08 11:27:16', 0, NULL, 0, NULL, 1),
(12392, 9732, '3', 'Madras unversity', '', 'Bca', '2022', 80.00, '', 1, '2022-08-08 11:35:43', 0, NULL, 0, NULL, 1),
(12393, 9730, '4', 'University of Madras ', '', 'MCA', '2021', 85.00, '', 1, '2022-08-08 11:39:34', 1, '2022-08-08 11:41:17', 0, NULL, 1),
(12394, 9731, '4', 'University of madras', '', 'MCA', '2021', 85.16, '', 1, '2022-08-08 11:39:39', 0, NULL, 0, NULL, 1),
(12395, 9731, '3', 'University of madras', '', 'Bsc.computer science', '2018', 74.00, '', 1, '2022-08-08 11:40:27', 0, NULL, 0, NULL, 1),
(12396, 9730, '3', 'University Of Madras ', '', 'B.Sc Computer Science ', '2018', 77.00, '', 1, '2022-08-08 11:40:43', 0, NULL, 0, NULL, 1),
(12397, 9731, '2', 'State board', '', '', '2015', 74.00, '', 1, '2022-08-08 11:40:48', 1, '2022-08-08 11:42:09', 0, NULL, 1),
(12398, 9727, '5', 'Prist University ', '', 'Diploma in computer science engineering ', '2022', 80.00, '', 1, '2022-08-08 11:41:06', 0, NULL, 0, NULL, 1),
(12399, 9731, '1', 'State board', '', '', '2013', 84.00, '', 1, '2022-08-08 11:41:16', 1, '2022-08-08 11:41:44', 0, NULL, 1),
(12400, 9730, '2', 'Sri Krishnammal Matriculation Higher Secondary School ', '', '', '2015', 76.00, '', 1, '2022-08-08 11:42:20', 0, NULL, 0, NULL, 1),
(12401, 9730, '1', 'Sri Krishnammal Matriculation Higher Secondary School ', '', '', '2013', 89.00, '', 1, '2022-08-08 11:42:54', 0, NULL, 0, NULL, 1),
(12402, 9728, '3', 'Bharathidhasan University ', '', 'Mathematics ', '2022', 90.00, '', 1, '2022-08-08 11:44:13', 0, NULL, 0, NULL, 1),
(12403, 9728, '2', 'State board', '', '', '2019', 75.00, '', 1, '2022-08-08 11:45:00', 0, NULL, 0, NULL, 1),
(12404, 9729, '3', 'Bharathidasan university', '', 'BCA(computer applications)', '2022', 87.00, '', 1, '2022-08-08 11:45:10', 0, NULL, 0, NULL, 1),
(12405, 9728, '1', 'State board ', '', '', '2017', 92.00, '', 1, '2022-08-08 11:45:34', 0, NULL, 0, NULL, 1),
(12406, 9724, '3', 'MAM College', '', 'bTech', '2021', 7.20, '', 92, '2022-08-08 11:53:23', 0, NULL, 0, NULL, 1),
(12407, 9733, '3', 'Bharathidasan university', '', 'B.a english', '2018', 58.00, '', 1, '2022-08-08 11:57:18', 0, NULL, 0, NULL, 1),
(12408, 9735, '3', 'Bharathidhasan University ', '', 'B.com', '2021', 67.00, '', 1, '2022-08-08 11:58:41', 0, NULL, 0, NULL, 1),
(12409, 9736, '3', 'University of Madras', '', 'Bsc', '2022', 81.00, '', 1, '2022-08-08 12:04:38', 0, NULL, 0, NULL, 1),
(12410, 9738, '3', 'madras university', '', 'b.com', '2022', 80.00, '', 1, '2022-08-08 12:21:21', 0, NULL, 0, NULL, 1),
(12411, 9737, '3', 'national arts and science college', '', '', '2022', 70.00, '', 1, '2022-08-08 12:25:54', 0, NULL, 0, NULL, 1),
(12412, 9739, '3', 'Anna University', '', 'BE-CSE', '2021', 73.00, '', 1, '2022-08-08 12:35:49', 0, NULL, 0, NULL, 1),
(12413, 9740, '3', 'Anna University ', '', 'B.E/Computer science and engineering ', '2022', 72.00, '', 1, '2022-08-08 12:53:38', 0, NULL, 0, NULL, 1),
(12414, 9741, '3', 'TN teachers education university ', '', 'B.ed', '2018', 65.00, '', 1, '2022-08-08 01:13:01', 0, NULL, 0, NULL, 1),
(12415, 9742, '3', 'Bharathidhsan university', '', 'B. Com', '2020', 65.00, '', 1, '2022-08-08 02:32:30', 0, NULL, 0, NULL, 1),
(12416, 9743, '1', 'st perters hr sec school', '', '', '2008', 68.60, '', 1, '2022-08-08 03:36:38', 0, NULL, 0, NULL, 1),
(12417, 9743, '2', '	St Perters Hr Sec School', '', '', '2010', 52.50, '', 1, '2022-08-08 03:37:00', 0, NULL, 0, NULL, 1),
(12418, 9743, '5', 'Panimalar Polytechnic College', '', 'd.e.c.e', '2012', 87.50, '', 1, '2022-08-08 03:37:52', 0, NULL, 0, NULL, 1),
(12419, 9743, '3', 'Panimalar Engineering College ', '', 'e.i.e', '2015', 76.00, '', 1, '2022-08-08 03:39:00', 0, NULL, 0, NULL, 1),
(12420, 9744, '3', 'Vel tech ranga sanku arts college', '', 'BCA', '2022', 75.00, '', 1, '2022-08-08 06:09:56', 0, NULL, 0, NULL, 1),
(12421, 9746, '1', 'State Board', '', '', '2006', 71.00, '', 1, '2022-08-09 06:17:00', 0, NULL, 0, NULL, 1),
(12422, 9746, '2', 'State Board', '', '', '2008', 81.00, '', 1, '2022-08-09 06:17:20', 0, NULL, 0, NULL, 1),
(12423, 9746, '3', 'University of Madras', '', 'BCA', '2011', 69.00, '', 1, '2022-08-09 06:17:54', 0, NULL, 0, NULL, 1),
(12424, 9747, '3', 'Dr.MGR Educational and Research Institute ', '', 'BSC CS', '2021', 80.00, '', 1, '2022-08-09 10:05:02', 0, NULL, 0, NULL, 1),
(12425, 9747, '2', 'TamilNadu Board of Higher Secondary Education ', '', '', '2018', 79.50, '', 1, '2022-08-09 10:06:09', 0, NULL, 0, NULL, 1),
(12426, 9747, '1', 'Tamil Nadu Board of Secondary Education', '', '', '2016', 95.00, '', 1, '2022-08-09 10:06:44', 0, NULL, 0, NULL, 1),
(12427, 9748, '3', 'State board ', '', 'Bsc computer science ', '2022', 60.00, '', 1, '2022-08-09 10:08:39', 1, '2022-08-09 10:09:03', 0, NULL, 0),
(12428, 9748, '1', 'State board ', '', '', '2017', 70.00, '', 1, '2022-08-09 10:09:22', 0, NULL, 0, NULL, 1),
(12429, 9748, '2', 'State board ', '', '', '2019', 60.00, '', 1, '2022-08-09 10:09:36', 0, NULL, 0, NULL, 1),
(12430, 9748, '3', 'Madras University ', '', 'Bsc computer science ', '2022', 60.00, '', 1, '2022-08-09 10:09:53', 0, NULL, 0, NULL, 1),
(12431, 9749, '3', 'Anna university ', '', 'BE', '2020', 64.00, '', 1, '2022-08-09 10:44:45', 0, NULL, 0, NULL, 1),
(12432, 9752, '4', 'State Board', '', 'Master of computer Applications ', '2021', 74.00, '', 1, '2022-08-09 10:54:39', 0, NULL, 0, NULL, 1),
(12433, 9752, '4', 'State Board', '', 'MCA', '2021', 74.00, '', 1, '2022-08-09 10:55:23', 0, NULL, 0, NULL, 1),
(12434, 9752, '4', 'UGC', '', 'MCA', '2021', 74.00, '', 1, '2022-08-09 10:56:57', 0, NULL, 0, NULL, 1),
(12435, 9750, '4', 'Annamalai ', '', 'M.a english', '2021', 68.00, '', 1, '2022-08-09 10:59:41', 0, NULL, 0, NULL, 1),
(12436, 9751, '3', 'Madres University', '', 'BA', '2021', 58.00, '', 1, '2022-08-09 11:17:55', 0, NULL, 0, NULL, 1),
(12437, 9754, '3', 'Bharathidasan ', '', 'B.A.,', '2021', 70.00, '', 1, '2022-08-09 11:19:08', 0, NULL, 0, NULL, 1),
(12438, 9753, '3', 'Anna university', '', 'B.E', '2022', 7.30, '', 1, '2022-08-09 11:23:50', 0, NULL, 0, NULL, 1),
(12439, 9755, '3', 'bharathidasan university', '', 'b.com', '2021', 67.00, '', 1, '2022-08-09 11:31:35', 1, '2022-08-09 11:33:27', 0, NULL, 1),
(12440, 9759, '3', 'Meenakshi college of engineering ', '', 'B.E', '2020', 6.41, '', 1, '2022-08-09 12:40:41', 0, NULL, 0, NULL, 1),
(12441, 9757, '3', 'Vels university', '', 'Bsc', '2022', 70.00, '', 1, '2022-08-09 12:42:22', 0, NULL, 0, NULL, 1),
(12442, 9756, '5', 'Vels university', '', 'Dip Naval architecture and off shore Engineering', '2019', 65.00, '', 1, '2022-08-09 12:48:08', 0, NULL, 0, NULL, 1),
(12443, 9758, '3', 'vels university', '', 'b.sc', '2022', 75.00, '', 1, '2022-08-09 02:39:12', 0, NULL, 0, NULL, 1),
(12444, 9762, '3', 'Madars university ', '', 'B.com ', '2022', 83.00, '', 1, '2022-08-10 10:24:51', 0, NULL, 0, NULL, 1),
(12445, 9763, '3', 'Madras University ', '', 'B com', '2022', 78.00, '', 1, '2022-08-10 10:25:47', 0, NULL, 0, NULL, 1),
(12446, 9760, '3', 'Autonomous ', '', 'B.com', '2022', 86.00, '', 1, '2022-08-10 10:26:09', 0, NULL, 0, NULL, 1),
(12447, 9764, '3', 'Madras University', '', 'B. Com', '2017', 85.00, '', 1, '2022-08-10 10:34:19', 0, NULL, 0, NULL, 1),
(12448, 9766, '3', 'Bharathidasan University', '', 'Bsc.cs', '2022', 78.00, '', 1, '2022-08-10 11:30:19', 0, NULL, 0, NULL, 1),
(12449, 9767, '3', 'Anna University', '', 'B.E', '2020', 62.00, '', 1, '2022-08-10 12:12:03', 0, NULL, 0, NULL, 1),
(12450, 9769, '3', 'Madras University ', '', 'B. Com', '2021', 78.00, '', 1, '2022-08-10 12:28:52', 0, NULL, 0, NULL, 1),
(12451, 9765, '3', 'Madras University ', '', 'B.com', '2020', 80.00, '', 1, '2022-08-10 12:32:55', 0, NULL, 0, NULL, 1),
(12452, 9768, '3', 'Madras University ', '', 'Bsc ', '2019', 80.45, '', 1, '2022-08-10 12:49:19', 0, NULL, 0, NULL, 1),
(12453, 9770, '2', 'State board', '', '', '2014', 60.00, '', 1, '2022-08-10 12:58:51', 0, NULL, 0, NULL, 1),
(12454, 9771, '3', 'Rathinam technical campus', '', 'B. Tech/IT', '2019', 75.00, '', 1, '2022-08-10 01:11:24', 0, NULL, 0, NULL, 1),
(12455, 9772, '3', 'Anna University ', '', 'B.Tech', '2019', 65.00, '', 1, '2022-08-10 01:30:26', 0, NULL, 0, NULL, 1),
(12456, 9773, '5', 'Anna university ', '', 'Diploma ', '2017', 68.00, '', 1, '2022-08-10 02:01:11', 0, NULL, 0, NULL, 1),
(12457, 9774, '3', 'EASWARI ENGINEERING COLLEGE ', '', 'B . TECH Information Technology ', '2022', 8.69, '', 1, '2022-08-11 09:55:40', 0, NULL, 0, NULL, 1),
(12458, 9775, '3', 'ANNA UNIVERSITY', '', 'be cse', '2013', 69.00, '', 1, '2022-08-11 10:56:35', 0, NULL, 0, NULL, 1),
(12459, 9777, '2', 'state board', '', '', '2013', 55.00, '', 1, '2022-08-11 11:19:16', 0, NULL, 0, NULL, 1),
(12460, 9777, '3', 'anna university', '', 'be', '2018', 73.00, '', 1, '2022-08-11 11:19:47', 0, NULL, 0, NULL, 1),
(12461, 9776, '3', 'Prist university', '', 'Bca', '2022', 6.02, '', 1, '2022-08-11 11:45:38', 0, NULL, 0, NULL, 1),
(12462, 9776, '2', 'State', '', '', '2019', 65.00, '', 1, '2022-08-11 11:46:15', 0, NULL, 0, NULL, 1),
(12463, 9776, '1', 'State', '', '', '2017', 69.00, '', 1, '2022-08-11 11:46:37', 0, NULL, 0, NULL, 1),
(12464, 9778, '3', 'Bharathidasan University ', '', 'Bsc', '2022', 74.00, '', 1, '2022-08-11 12:12:57', 0, NULL, 0, NULL, 1),
(12465, 9780, '3', 'University of Madras ', '', 'B.A. Economics ', '2022', 87.00, '', 1, '2022-08-11 12:31:51', 0, NULL, 0, NULL, 1),
(12466, 9781, '3', 'University of Madras', '', 'BA. Economics', '2022', 54.00, '', 1, '2022-08-11 12:37:31', 0, NULL, 0, NULL, 1),
(12467, 9782, '3', 'K.S.Rangaswamy college of Technology ', '', 'Bachelor of Engineering ', '2021', 75.20, '', 1, '2022-08-11 04:49:58', 0, NULL, 0, NULL, 1),
(12468, 9782, '2', 'State board ', '', '', '2017', 79.66, '', 1, '2022-08-11 04:50:17', 1, '2022-08-11 04:51:02', 0, NULL, 1),
(12469, 9782, '1', 'State board ', '', '', '2015', 86.40, '', 1, '2022-08-11 04:50:44', 0, NULL, 0, NULL, 1),
(12470, 9783, '2', 'State board', '', '', '2019', 55.00, '', 1, '2022-08-12 10:56:19', 0, NULL, 0, NULL, 1),
(12471, 9784, '3', 'Anna university ', '', 'BE', '2020', 71.60, '', 1, '2022-08-12 10:57:08', 0, NULL, 0, NULL, 1),
(12472, 9785, '3', 'bharathiyar university', '', 'bsc ct', '2020', 70.00, '', 1, '2022-08-12 11:04:40', 0, NULL, 0, NULL, 1),
(12473, 9786, '2', 'State board', '', '', '2019', 60.00, '', 1, '2022-08-12 11:12:23', 0, NULL, 0, NULL, 1),
(12474, 9787, '3', 'RVSCAS', '', 'BBA', '2022', 65.00, '', 1, '2022-08-12 11:42:23', 0, NULL, 0, NULL, 1),
(12475, 9787, '2', 'BVBHSS', '', 'BBA', '2019', 75.00, '', 1, '2022-08-12 11:44:08', 0, NULL, 0, NULL, 1),
(12476, 9788, '4', 'Anna University ', '', '', '2021', 86.00, '', 1, '2022-08-12 11:45:23', 0, NULL, 0, NULL, 1),
(12477, 9790, '2', 'Sri Chaitanya ', '', '', '2014', 59.00, '', 1, '2022-08-12 12:14:31', 0, NULL, 0, NULL, 1),
(12478, 9789, '3', 'chennai institute of technology', '', 'b.e', '2021', 7.51, '', 1, '2022-08-12 12:24:13', 0, NULL, 0, NULL, 1),
(12479, 9791, '3', 'Anna university ', '', 'BE', '2019', 70.00, '', 1, '2022-08-12 07:08:34', 0, NULL, 0, NULL, 1),
(12480, 9792, '3', 'Mohamed sathak college of arts and science ', '', 'Bsc Computer Science ', '2022', 50.00, '', 1, '2022-08-13 09:54:27', 0, NULL, 0, NULL, 1),
(12481, 9793, '3', 'ANNA UNIVERSITY ', '', 'B.E', '2020', 74.00, '', 1, '2022-08-13 10:29:04', 0, NULL, 0, NULL, 1),
(12482, 9794, '5', 'Anna University ', '', 'ELECTRICAL AND ELECTRONICS ENGINEERING ', '2015', 78.00, '', 1, '2022-08-13 10:47:23', 0, NULL, 0, NULL, 1),
(12483, 9795, '1', 'State Board ', '', '', '2012', 80.80, '', 1, '2022-08-13 11:02:48', 0, NULL, 0, NULL, 1),
(12484, 9795, '2', 'State Board ', '', '', '2014', 66.25, '', 1, '2022-08-13 11:03:15', 0, NULL, 0, NULL, 1),
(12485, 9795, '3', 'Deemed University ', '', 'BCA ', '2017', 70.00, '', 1, '2022-08-13 11:03:38', 0, NULL, 0, NULL, 1),
(12486, 9795, '4', 'Madras University ', '', 'MCA ', '2020', 65.00, '', 1, '2022-08-13 11:04:00', 0, NULL, 0, NULL, 1),
(12487, 9796, '3', 'University of Madras', '', 'Computer Science', '2022', 70.00, '', 1, '2022-08-13 11:29:30', 0, NULL, 0, NULL, 1),
(12488, 9797, '2', 'Board', '', '', '2015', 55.00, '', 1, '2022-08-13 12:23:18', 0, NULL, 0, NULL, 1),
(12489, 9798, '1', 'State board ', '', '', '2015', 95.00, '', 1, '2022-08-13 04:38:32', 0, NULL, 0, NULL, 1),
(12490, 9798, '2', 'State board ', '', '', '2017', 87.00, '', 1, '2022-08-13 04:38:48', 0, NULL, 0, NULL, 1),
(12491, 9798, '3', 'Bharathidhasan university ', '', 'Chemistry ', '2020', 86.50, '', 1, '2022-08-13 04:39:16', 0, NULL, 0, NULL, 1),
(12492, 9798, '4', 'University of madras', '', 'Physical chemistry ', '2022', 70.00, '', 1, '2022-08-13 04:39:43', 0, NULL, 0, NULL, 1),
(12493, 9799, '3', 'Anna university ', '', 'BE', '2016', 60.00, '', 1, '2022-08-13 05:19:52', 0, NULL, 0, NULL, 1),
(12494, 9803, '1', 'tamilnadu State board ', '', '', '2015', 83.80, '', 1, '2022-08-16 10:09:44', 0, NULL, 0, NULL, 1),
(12495, 9803, '2', 'Tamilnadu State board ', '', '', '2017', 71.00, '', 1, '2022-08-16 10:10:13', 0, NULL, 0, NULL, 1),
(12496, 9803, '3', 'anna university ', '', 'b.tech', '2021', 74.90, '', 1, '2022-08-16 10:10:44', 0, NULL, 0, NULL, 1),
(12497, 9807, '3', 'Anna university', '', 'BE computer science and engineering', '2016', 65.00, '', 1, '2022-08-16 11:02:23', 0, NULL, 0, NULL, 1),
(12498, 9806, '3', 'Madras University ', '', 'B Com ', '2020', 72.60, '', 1, '2022-08-16 11:04:01', 1, '2022-08-16 11:05:00', 0, NULL, 0),
(12499, 9806, '3', 'Madras University ', '', 'B Com', '2020', 72.60, '', 1, '2022-08-16 11:05:03', 0, NULL, 0, NULL, 1),
(12500, 9804, '4', 'Bharathidasan University ', '', 'MSc.cs', '2022', 91.00, '', 1, '2022-08-16 11:10:54', 0, NULL, 0, NULL, 1),
(12501, 9805, '4', 'Bharathidasan university', '', 'Msc. Cs', '2022', 91.00, '', 1, '2022-08-16 11:22:53', 0, NULL, 0, NULL, 1),
(12502, 9809, '3', 'SVR degree college', '', 'BSC', '2021', 60.00, '', 1, '2022-08-16 12:54:59', 0, NULL, 0, NULL, 1),
(12503, 9810, '3', 'Madras University ', '', 'BBA', '2022', 74.00, '', 1, '2022-08-16 01:04:03', 0, NULL, 0, NULL, 1),
(12504, 9808, '3', 'Bharathidasan University', '', 'B.com', '2022', 75.00, '', 1, '2022-08-16 02:32:45', 0, NULL, 0, NULL, 1),
(12505, 9812, '3', 'University', '', 'BA Economics', '2021', 80.00, '', 1, '2022-08-16 04:19:30', 0, NULL, 0, NULL, 1),
(12506, 9815, '3', 'Bharathidhasan University ', '', 'B.Sc Computer Science ', '2022', 88.00, '', 1, '2022-08-16 05:47:05', 0, NULL, 0, NULL, 1),
(12507, 9817, '3', 'Anna University ', '', 'B.E Mechanical engineering ', '2021', 7.76, '', 1, '2022-08-17 10:01:37', 1, '2022-08-17 10:02:33', 0, NULL, 0),
(12508, 9818, '3', 'Madras University ', '', 'B.Sc., Advance zoology and biotechnology ', '2021', 71.40, '', 1, '2022-08-17 10:02:11', 0, NULL, 0, NULL, 1),
(12509, 9817, '2', 'State Board ', '', '', '2017', 63.93, '', 1, '2022-08-17 10:02:24', 1, '2022-08-17 10:02:30', 0, NULL, 0),
(12510, 9820, '3', 'SRM valliammai engineering college', '', 'Bachelor of engineering', '2020', 72.00, '', 1, '2022-08-17 10:02:34', 0, NULL, 0, NULL, 1),
(12511, 9817, '1', 'State Board ', '', '', '2015', 89.00, '', 1, '2022-08-17 10:02:53', 0, NULL, 0, NULL, 1),
(12512, 9817, '2', 'State Board ', '', '', '2017', 63.92, '', 1, '2022-08-17 10:03:24', 0, NULL, 0, NULL, 1),
(12513, 9818, '2', 'Government higher secondary school Padur', '', '', '2017', 58.40, '', 1, '2022-08-17 10:03:43', 0, NULL, 0, NULL, 1),
(12514, 9817, '3', 'Anna University ', '', 'B.E Mechanical Engineering ', '2021', 7.76, '', 1, '2022-08-17 10:04:12', 0, NULL, 0, NULL, 1),
(12515, 9818, '1', 'Intermediate Schooling in private ', '', '', '2015', 64.80, '', 1, '2022-08-17 10:04:39', 0, NULL, 0, NULL, 1),
(12516, 9821, '3', 'University ', '', 'B.sc biochemistry ', '2019', 77.00, '', 1, '2022-08-17 10:20:45', 0, NULL, 0, NULL, 1),
(12517, 9824, '3', 'Madras University ', '', 'B. Com corporate secretship ', '2021', 75.00, '', 1, '2022-08-17 10:26:14', 0, NULL, 0, NULL, 1),
(12518, 9823, '3', 'Madras university', '', 'B. Com cS', '2021', 70.00, '', 1, '2022-08-17 10:27:13', 0, NULL, 0, NULL, 1),
(12519, 9825, '3', 'Panimalar institute of technology ', '', 'BE', '2022', 80.00, '', 1, '2022-08-17 10:33:21', 0, NULL, 0, NULL, 1),
(12520, 9813, '3', 'Hindustan institute of technology and science ', '', 'B tech ', '2022', 7.50, '', 1, '2022-08-17 10:38:02', 0, NULL, 0, NULL, 1),
(12521, 9826, '4', 'Anna University', '', 'B.E', '2022', 72.60, '', 1, '2022-08-17 10:43:55', 0, NULL, 0, NULL, 1),
(12522, 9811, '3', 'Veltech University', '', 'B.Tech (civil)', '2022', 71.90, '', 1, '2022-08-17 10:43:55', 0, NULL, 0, NULL, 1),
(12523, 9827, '3', 'Sree sastha institute of engineering and technology', '', 'B.E. Mechanical', '2021', 71.00, '', 1, '2022-08-17 11:11:16', 1, '2022-08-17 11:11:30', 0, NULL, 0),
(12524, 9827, '3', 'Sree sastha institute of engineering and technology', '', 'B.E. Mechanical', '2021', 71.00, '', 1, '2022-08-17 11:12:03', 0, NULL, 0, NULL, 1),
(12525, 9831, '3', 'Thiruvalluvar University ', '', 'BCA', '2022', 75.00, '', 1, '2022-08-17 11:44:32', 0, NULL, 0, NULL, 1),
(12526, 9831, '2', 'SSHSSCHOOL', '', '', '2017', 75.00, '', 1, '2022-08-17 11:45:38', 1, '2022-08-17 11:46:00', 0, NULL, 1),
(12527, 9831, '1', 'GHS school', '', '', '2017', 75.00, '', 1, '2022-08-17 11:46:50', 0, NULL, 0, NULL, 1),
(12528, 9833, '4', 'Madras university', '', 'MA. hRM', '2023', 83.00, '', 1, '2022-08-17 11:49:02', 0, NULL, 0, NULL, 1),
(12529, 9816, '3', 'Thiruvalluvar University ', '', 'BCA', '2022', 75.00, '', 1, '2022-08-17 11:50:48', 0, NULL, 0, NULL, 1),
(12530, 9816, '2', 'GHHSSCHOOL MAMBATTU ', '', '', '2019', 56.00, '', 1, '2022-08-17 11:51:18', 0, NULL, 0, NULL, 1),
(12531, 9829, '4', 'Madaras university ', '', '', '2023', 88.00, '', 1, '2022-08-17 11:51:42', 0, NULL, 0, NULL, 1),
(12532, 9816, '1', 'GHHSSCHOOL MAMBATTU', '', '', '2017', 75.00, '', 1, '2022-08-17 11:51:55', 0, NULL, 0, NULL, 1),
(12533, 9834, '3', 'PERI INSTITUTE OF TECHNOLOGY', '', 'BE', '2021', 7.56, '', 1, '2022-08-17 11:53:02', 0, NULL, 0, NULL, 1),
(12534, 9828, '4', 'Madras university', '', 'MA. hRM', '2023', 87.20, '', 1, '2022-08-17 12:03:22', 0, NULL, 0, NULL, 1),
(12535, 9835, '3', 'University of Madras ', '', 'Bsc Mathematics ', '2022', 86.00, '', 1, '2022-08-17 12:23:07', 0, NULL, 0, NULL, 1),
(12536, 9822, '3', 'Erase college of engineering', '', 'BE', '2021', 7.68, '', 1, '2022-08-17 12:37:36', 0, NULL, 0, NULL, 1),
(12537, 9836, '3', 'Presidency University', '', 'BA(economics)', '2021', 65.00, '', 1, '2022-08-17 01:14:52', 0, NULL, 0, NULL, 1),
(12538, 9832, '3', 'Ramaya politechnic', '', 'EEE', '2016', 80.00, '', 1, '2022-08-17 01:32:35', 0, NULL, 0, NULL, 1),
(12539, 9838, '4', 'Mohammed sathak college of arts and science ', '', 'M.sc Applied Electronics ', '2022', 90.00, '', 1, '2022-08-17 03:52:30', 0, NULL, 0, NULL, 1),
(12540, 9838, '3', 'Mohammed sathak college of arts and science ', '', 'B.Sc Electronics and Communication science ', '2020', 78.00, '', 1, '2022-08-17 03:53:16', 0, NULL, 0, NULL, 1),
(12541, 9839, '3', 'University', '', 'B.com', '2021', 70.00, '', 1, '2022-08-17 04:23:37', 0, NULL, 0, NULL, 1),
(12542, 9840, '3', 'madras university', '', 'bca', '2019', 70.00, '', 1, '2022-08-17 04:34:15', 0, NULL, 0, NULL, 1),
(12543, 9840, '2', 'state board', '', '', '2016', 65.00, '', 1, '2022-08-17 04:34:45', 0, NULL, 0, NULL, 1),
(12544, 9840, '1', 'state board', '', '', '2014', 66.00, '', 1, '2022-08-17 04:35:08', 0, NULL, 0, NULL, 1),
(12545, 9841, '3', 'Anna University ', '', 'B.e.Computer Science And Engineering ', '2020', 75.00, '', 1, '2022-08-17 08:06:15', 0, NULL, 0, NULL, 1),
(12546, 9842, '3', 'Anna University ', '', 'BE ', '2022', 7.95, '', 1, '2022-08-18 10:05:41', 0, NULL, 0, NULL, 1),
(12547, 9843, '3', 'Anna university ', '', 'BE', '2022', 79.50, '', 1, '2022-08-18 10:06:31', 0, NULL, 0, NULL, 1),
(12548, 9844, '3', 'Anna university', '', 'BE', '2022', 78.90, '', 1, '2022-08-18 10:09:00', 0, NULL, 0, NULL, 1),
(12549, 9846, '3', 'anna university', '', 'be', '2008', 62.00, '', 1, '2022-08-18 10:11:05', 0, NULL, 0, NULL, 1),
(12550, 9846, '2', 'state board', '', '', '2004', 72.00, '', 1, '2022-08-18 10:11:33', 0, NULL, 0, NULL, 1),
(12551, 9847, '3', 'Annu University ', '', 'BE -EEE', '2022', 7.49, '', 1, '2022-08-18 10:27:49', 0, NULL, 0, NULL, 1),
(12552, 9848, '3', 'Prist university ', '', 'B.com ( c.s)', '2022', 75.00, '', 1, '2022-08-18 10:38:57', 0, NULL, 0, NULL, 1),
(12553, 9850, '3', 'BHARATHIDHASAN UNIVERSITY', '', 'B.SC COMPUTERSCIENCE', '2022', 92.00, '', 1, '2022-08-18 10:49:44', 0, NULL, 0, NULL, 1),
(12554, 9849, '3', 'barathidhasan university', '', 'B.sc computer science', '2022', 74.00, '', 1, '2022-08-18 10:50:41', 0, NULL, 0, NULL, 1),
(12555, 9851, '3', 'Bharathiyar  University ', '', 'B com ca ', '2022', 70.00, '', 1, '2022-08-18 11:25:25', 0, NULL, 0, NULL, 1),
(12556, 9852, '3', 'Anna University ', '', 'B E', '2020', 74.40, '', 1, '2022-08-18 11:27:54', 0, NULL, 0, NULL, 1),
(12557, 9837, '3', 'Prist', '', 'Bcom', '2022', 75.00, '', 1, '2022-08-18 11:28:24', 0, NULL, 0, NULL, 1),
(12558, 9853, '3', 'University', '', 'Bcom', '2020', 65.00, '', 1, '2022-08-18 11:55:20', 0, NULL, 0, NULL, 1),
(12559, 9854, '3', 'Director', '', 'Bsc maths', '2022', 80.00, '', 1, '2022-08-18 12:04:34', 0, NULL, 0, NULL, 1),
(12560, 9855, '3', 'Barathidhasan', '', 'B.sc.chemistry', '2022', 85.00, '', 1, '2022-08-18 12:16:45', 0, NULL, 0, NULL, 1),
(12561, 9856, '3', 'SIVET College ', '', 'Bcom', '2021', 80.00, '', 1, '2022-08-18 01:05:00', 0, NULL, 0, NULL, 1),
(12562, 9857, '3', 'Bharathidasan University', '', 'Bsc', '2022', 80.00, '', 1, '2022-08-18 02:46:51', 0, NULL, 0, NULL, 1),
(12563, 9861, '3', 'Bharathidhasan University ', '', 'B.A english literature ', '2020', 60.00, '', 1, '2022-08-18 06:04:23', 0, NULL, 0, NULL, 1),
(12564, 9863, '3', 'Anna University ', '', 'B.E Computer science and engineering ', '2020', 60.00, '', 1, '2022-08-18 10:02:58', 0, NULL, 0, NULL, 1),
(12565, 9863, '2', 'State board ', '', '', '2016', 60.00, '', 1, '2022-08-18 10:03:47', 0, NULL, 0, NULL, 1),
(12566, 9863, '1', 'State board ', '', '', '2014', 79.00, '', 1, '2022-08-18 10:04:27', 0, NULL, 0, NULL, 1),
(12567, 9864, '3', 'Bharathidhasan University ', '', 'Bsc zoology', '2018', 64.00, '', 1, '2022-08-19 09:51:06', 0, NULL, 0, NULL, 1),
(12568, 9865, '3', 'madurai kamarajar university ', '', 'b.com computer application ', '2021', 70.00, '', 1, '2022-08-19 10:16:14', 0, NULL, 0, NULL, 1),
(12569, 9866, '4', 'SRM INSTITUTE OF SCIENCE AND TECHNOLOGY ', '', 'MBA', '2022', 85.00, '', 1, '2022-08-19 10:17:10', 0, NULL, 0, NULL, 1),
(12570, 9866, '3', 'SRM INSTITUTE OF SCIENCE AND TECHNOLOGY ', '', 'B.com', '2020', 73.00, '', 1, '2022-08-19 10:17:41', 0, NULL, 0, NULL, 1),
(12571, 9866, '2', 'STATE BOARD', '', '', '2017', 87.00, '', 1, '2022-08-19 10:18:05', 0, NULL, 0, NULL, 1),
(12572, 9866, '1', 'STATE BOARD', '', '', '2015', 73.00, '', 1, '2022-08-19 10:18:48', 0, NULL, 0, NULL, 1),
(12573, 9867, '3', 'Tiruvallur university ', '', 'B.com ', '2022', 85.00, '', 1, '2022-08-19 10:25:56', 0, NULL, 0, NULL, 1),
(12574, 9868, '3', 'University', '', 'B.com CA', '2022', 77.00, '', 1, '2022-08-19 10:32:48', 0, NULL, 0, NULL, 1),
(12575, 9860, '3', 'Anna university', '', 'Bachelor of Engineering', '2021', 68.00, '', 1, '2022-08-19 10:33:03', 0, NULL, 0, NULL, 1),
(12576, 8078, '3', 'UNIVERSITY COLLEGE OF ENGINEERING KANCHIPURAM ', '', 'BE', '2021', 80.00, '', 1, '2022-08-19 10:51:22', 0, NULL, 0, NULL, 1),
(12577, 9870, '2', 'State Board ', '', '', '2018', 70.00, '', 1, '2022-08-19 11:29:38', 0, NULL, 0, NULL, 1),
(12578, 9870, '3', 'Thiruvalluvar university ', '', 'Bca', '2022', 90.00, '', 1, '2022-08-19 11:30:07', 0, NULL, 0, NULL, 1),
(12579, 9869, '3', 'Madras University ', '', 'BCA', '2021', 71.00, '', 1, '2022-08-19 11:53:21', 0, NULL, 0, NULL, 1),
(12580, 9871, '3', 'University of Madras ', '', 'BCA', '2021', 71.00, '', 1, '2022-08-19 11:59:18', 0, NULL, 0, NULL, 1),
(12581, 9873, '3', 'Periyar', '', 'B.com', '2020', 67.00, '', 1, '2022-08-19 12:02:30', 0, NULL, 0, NULL, 1),
(12582, 9872, '3', 'Periyar university', '', 'B. Com(CA) ', '2020', 68.00, '', 1, '2022-08-19 12:02:49', 0, NULL, 0, NULL, 1),
(12583, 9874, '5', 'Sri nallalgu polytechnic college ', '', 'DEEE', '2013', 83.00, '', 1, '2022-08-19 12:10:13', 0, NULL, 0, NULL, 1),
(12584, 9875, '3', 'university', '', 'bba', '2022', 70.00, '', 1, '2022-08-19 12:14:45', 0, NULL, 0, NULL, 1),
(12585, 9877, '3', 'University', '', 'B.Tech-IT', '2022', 8.70, '', 1, '2022-08-19 12:22:22', 0, NULL, 0, NULL, 1),
(12586, 9876, '3', 'madras University ', '', 'b.com', '2019', 70.00, '', 1, '2022-08-19 12:24:24', 0, NULL, 0, NULL, 1),
(12587, 9879, '3', 'Justice Basheer Ahmed sayeed college for women ', '', 'B.A Corporate Economics ', '2022', 7.55, '', 1, '2022-08-19 04:08:03', 0, NULL, 0, NULL, 1),
(12588, 9882, '3', 'anna university', '', ' b.e', '2020', 85.00, '', 1, '2022-08-19 10:47:47', 0, NULL, 0, NULL, 1),
(12589, 9883, '3', 'Anna university', '', 'B. e', '2019', 78.00, '', 1, '2022-08-20 09:51:35', 0, NULL, 0, NULL, 1),
(12590, 9883, '2', 'State board', '', '', '2015', 86.00, '', 1, '2022-08-20 09:51:58', 0, NULL, 0, NULL, 1),
(12591, 9883, '1', 'State board', '', '', '2013', 96.00, '', 1, '2022-08-20 09:52:12', 0, NULL, 0, NULL, 1),
(12592, 9881, '5', 'DOTE', '', 'DME', '2015', 70.00, '', 1, '2022-08-20 10:17:25', 0, NULL, 0, NULL, 1),
(12593, 9884, '3', 'University', '', 'B Com', '2018', 60.50, '', 1, '2022-08-20 10:26:08', 0, NULL, 0, NULL, 1),
(12594, 9885, '3', 'Anna University', '', 'BE Computer science ', '2019', 68.00, '', 1, '2022-08-20 10:32:15', 0, NULL, 0, NULL, 1),
(12595, 9886, '3', 'Jayagovind Hari gopal ', '', 'Bcom', '2022', 70.00, '', 1, '2022-08-20 10:57:47', 0, NULL, 0, NULL, 1),
(12596, 9887, '3', 'Anna University', '', 'BE Mechanical Engineering', '2021', 7.70, '', 1, '2022-08-20 11:03:43', 0, NULL, 0, NULL, 1),
(12597, 9888, '3', 'University', '', 'B.com corporate secretary ship', '2021', 68.53, '', 1, '2022-08-20 11:34:13', 0, NULL, 0, NULL, 1),
(12598, 9889, '5', 'University', '', 'Automobile engineering', '2018', 70.00, '', 1, '2022-08-20 11:44:28', 0, NULL, 0, NULL, 1),
(12599, 9890, '3', 'Anna university ', '', 'BE Civil ', '2018', 65.00, '', 1, '2022-08-20 11:56:14', 0, NULL, 0, NULL, 1),
(12600, 9892, '4', 'Madras university', '', 'MBA HR&LOGISTICS', '2022', 70.00, '', 1, '2022-08-20 12:01:43', 0, NULL, 0, NULL, 1),
(12601, 9894, '5', 'Donte ', '', 'DME ', '2021', 60.00, '', 1, '2022-08-22 10:50:16', 0, NULL, 0, NULL, 1),
(12602, 9895, '1', 'Kakatiya', '', '', '2008', 62.00, '', 1, '2022-08-22 11:14:11', 0, NULL, 0, NULL, 1),
(12603, 9895, '3', 'Kakatiya', '', 'BA', '2008', 62.00, '', 1, '2022-08-22 11:29:18', 0, NULL, 0, NULL, 1),
(12604, 9896, '3', 'Madras university', '', 'B. Com', '2020', 60.00, '', 1, '2022-08-22 11:44:21', 0, NULL, 0, NULL, 1),
(12605, 9897, '1', 'State board of tamilnadu', '', '', '2016', 88.00, '', 1, '2022-08-22 11:44:51', 0, NULL, 0, NULL, 1),
(12606, 9897, '3', 'Anna university ', '', 'BE', '2022', 75.00, '', 1, '2022-08-22 11:45:50', 0, NULL, 0, NULL, 1),
(12607, 9898, '3', 'Madras University', '', 'B.A', '2017', 60.00, '', 1, '2022-08-22 11:56:39', 0, NULL, 0, NULL, 1),
(12608, 9899, '3', 'Madras University ', '', 'B.com', '2022', 71.00, '', 1, '2022-08-22 12:05:20', 0, NULL, 0, NULL, 1),
(12609, 9901, '3', 'Alagapa University ', '', 'BA', '2022', 70.00, '', 1, '2022-08-22 02:20:44', 0, NULL, 0, NULL, 1),
(12610, 9902, '3', 'Thiruvallur University ', '', 'B .com (genral)', '2022', 60.00, '', 1, '2022-08-22 06:23:20', 0, NULL, 0, NULL, 1),
(12611, 9904, '3', 'Madras University ', '', 'B.Com', '2021', 79.00, '', 1, '2022-08-22 09:22:15', 0, NULL, 0, NULL, 1),
(12612, 9905, '3', 'University of Madras', '', ' Bachelor of science in Mathematics ', '2022', 80.00, '', 1, '2022-08-23 11:31:39', 0, NULL, 0, NULL, 1),
(12613, 9906, '3', 'Anna University ', '', 'BE(EEE)', '2021', 74.00, '', 1, '2022-08-23 12:33:37', 0, NULL, 0, NULL, 1),
(12614, 9907, '5', 'Periyar University ', '', 'EEE ', '2014', 60.00, '', 1, '2022-08-23 04:11:33', 0, NULL, 0, NULL, 1),
(12615, 9907, '2', 'Stateboard ', '', '', '2011', 58.00, '', 1, '2022-08-23 04:11:58', 0, NULL, 0, NULL, 1),
(12616, 9907, '1', 'Stateboard ', '', '', '2009', 80.00, '', 1, '2022-08-23 04:12:15', 0, NULL, 0, NULL, 1),
(12617, 9908, '3', 'Madras University ', '', 'B.Com', '2022', 77.00, '', 1, '2022-08-23 04:46:52', 0, NULL, 0, NULL, 1),
(12618, 9908, '2', 'Tamil Nadu State Board', '', '', '2019', 80.00, '', 1, '2022-08-23 04:47:18', 0, NULL, 0, NULL, 1),
(12619, 9909, '1', 'board', '', '', '2017', 90.20, '', 1, '2022-08-23 07:03:51', 0, NULL, 0, NULL, 1),
(12620, 9909, '2', 'board', '', '', '2019', 63.50, '', 1, '2022-08-23 07:06:13', 0, NULL, 0, NULL, 1),
(12621, 9909, '3', 'university', '', 'bachelor of computer application', '2022', 75.90, '', 1, '2022-08-23 07:07:56', 0, NULL, 0, NULL, 1),
(12622, 9911, '4', 'Puduchery technological University ', '', 'MCA ', '2022', 7.60, '', 1, '2022-08-23 08:41:22', 0, NULL, 0, NULL, 1),
(12623, 9912, '4', 'Pondicherry Engineering College', '', 'MCA', '2022', 7.82, '', 1, '2022-08-23 10:27:15', 0, NULL, 0, NULL, 1),
(12624, 9913, '2', 'State board', '', '', '2018', 67.00, '', 1, '2022-08-24 10:05:37', 0, NULL, 0, NULL, 1),
(12625, 9914, '2', 'State board', '', '', '2018', 66.00, '', 1, '2022-08-24 10:08:31', 0, NULL, 0, NULL, 1),
(12626, 9914, '3', 'Autonomous', '', 'Bsc viscom', '2022', 77.00, '', 1, '2022-08-24 10:09:00', 0, NULL, 0, NULL, 1),
(12627, 9915, '2', 'State board', '', '', '2018', 87.00, '', 1, '2022-08-24 10:11:22', 0, NULL, 0, NULL, 1),
(12628, 9915, '3', 'Autonomous', '', 'Bsc viscom', '2022', 77.00, '', 1, '2022-08-24 10:11:44', 0, NULL, 0, NULL, 1),
(12629, 9916, '3', 'Anna University ', '', 'Be', '2017', 69.00, '', 1, '2022-08-24 10:15:11', 0, NULL, 0, NULL, 1),
(12630, 9916, '4', 'Anna University ', '', 'Me', '2020', 60.00, '', 1, '2022-08-24 10:15:29', 0, NULL, 0, NULL, 1),
(12631, 9917, '2', 'State board', '', '', '2018', 67.00, '', 1, '2022-08-24 10:20:49', 0, NULL, 0, NULL, 1),
(12632, 9917, '3', 'Barathiyar university ', '', 'Bsc it', '2021', 44.00, '', 1, '2022-08-24 10:21:30', 0, NULL, 0, NULL, 1),
(12633, 9920, '4', 'Dr.Ambedkar govt arts college affiliated to Madras university', '', 'M.Sc computer science', '2022', 91.00, '', 1, '2022-08-24 10:32:01', 1, '2022-08-24 10:33:20', 0, NULL, 1),
(12634, 9919, '3', 'Madras University ', '', 'B.Sc. INFORMATION TECHNOLOGY ', '2022', 80.71, '', 1, '2022-08-24 10:32:58', 0, NULL, 0, NULL, 1),
(12635, 9920, '3', 'Dr.Ambedkar Govt Arts College Affiliated To Madras University', '', 'B.sc computer science', '2020', 82.04, '', 1, '2022-08-24 10:33:46', 1, '2022-08-24 10:34:29', 0, NULL, 1),
(12636, 9920, '2', 'TN state board', '', '', '2017', 72.00, '', 1, '2022-08-24 10:34:54', 1, '2022-08-24 10:36:24', 0, NULL, 1),
(12637, 9920, '1', 'TN state board', '', '', '2015', 76.60, '', 1, '2022-08-24 10:36:48', 0, NULL, 0, NULL, 1),
(12638, 9921, '4', 'S.a.engineering college ', '', 'MCA', '2021', 8.62, '', 1, '2022-08-24 10:58:21', 0, NULL, 0, NULL, 1),
(12639, 9922, '3', 'Anna university  ', '', 'BE/ computer science ', '2022', 76.00, '', 1, '2022-08-24 11:11:36', 0, NULL, 0, NULL, 1),
(12640, 9923, '3', 'Anna university', '', 'BE/computer science engineering', '2022', 76.00, '', 1, '2022-08-24 11:11:37', 0, NULL, 0, NULL, 1),
(12641, 9925, '4', 'Puduchery technological University ', '', 'MCA ', '2022', 7.60, '', 1, '2022-08-24 11:13:04', 0, NULL, 0, NULL, 1),
(12642, 9923, '1', 'Government higher secondary school, ', '', 'BE/computer science engineering', '2016', 71.00, '', 1, '2022-08-24 11:13:50', 0, NULL, 0, NULL, 1),
(12643, 9922, '1', 'Vailankanni mat high sce school', '', 'BE / Computer science ', '2016', 75.00, '', 1, '2022-08-24 11:13:51', 0, NULL, 0, NULL, 1),
(12644, 9923, '2', 'Government higher secondary school', '', '', '2018', 63.00, '', 1, '2022-08-24 11:14:17', 0, NULL, 0, NULL, 1),
(12645, 9922, '2', 'Vailankanni mat high sec school', '', '', '2018', 41.00, '', 1, '2022-08-24 11:14:37', 0, NULL, 0, NULL, 1),
(12646, 9924, '3', 'Anna univercity', '', 'BE -computer science engineering', '2022', 75.00, '', 1, '2022-08-24 11:24:18', 0, NULL, 0, NULL, 1),
(12647, 9924, '1', 'Kaveri high school', '', '', '2016', 80.00, '', 1, '2022-08-24 11:24:53', 0, NULL, 0, NULL, 1),
(12648, 9924, '2', 'Govt boys hr sec school', '', '', '2018', 72.00, '', 1, '2022-08-24 11:25:31', 0, NULL, 0, NULL, 1),
(12649, 9926, '3', 'Anna university', '', 'BE.CSE', '2022', 78.30, '', 1, '2022-08-24 11:25:45', 0, NULL, 0, NULL, 1),
(12650, 9927, '3', 'Ethiraj college ', '', 'Bsc', '2014', 60.00, '', 1, '2022-08-24 02:02:23', 0, NULL, 0, NULL, 1),
(12651, 9928, '3', 'Bharathiar University', '', 'B.com( ca )', '2019', 64.00, '', 1, '2022-08-24 03:20:37', 0, NULL, 0, NULL, 1),
(12652, 9929, '4', 'vikrama simhapuri', '', 'mca', '2018', 75.00, '', 1, '2022-08-24 04:00:24', 0, NULL, 0, NULL, 1),
(12653, 9929, '3', 'Vikrama Simhapuri', '', 'bsc', '2015', 69.00, '', 1, '2022-08-24 04:01:09', 0, NULL, 0, NULL, 1),
(12654, 9929, '2', 'board of intermediate education', '', '', '2012', 59.00, '', 1, '2022-08-24 04:02:14', 0, NULL, 0, NULL, 1),
(12655, 9929, '1', 'board of secondary education', '', '', '2010', 72.00, '', 1, '2022-08-24 04:03:00', 0, NULL, 0, NULL, 1),
(12656, 9932, '3', 'University', '', 'B.Ed', '2022', 83.00, '', 1, '2022-08-25 10:04:00', 0, NULL, 0, NULL, 1),
(12657, 9933, '3', 'Anna University ', '', 'B.Tech I.T', '2018', 75.00, '', 1, '2022-08-25 10:20:54', 0, NULL, 0, NULL, 1),
(12658, 9934, '2', 'state board', '', '', '2016', 77.00, '', 1, '2022-08-25 10:36:33', 0, NULL, 0, NULL, 1),
(12659, 9934, '3', 'madras univeersity', '', 'bcom', '2019', 88.00, '', 1, '2022-08-25 10:36:58', 0, NULL, 0, NULL, 1),
(12660, 9935, '2', 'state board', '', '', '2014', 80.00, '', 1, '2022-08-25 10:42:55', 0, NULL, 0, NULL, 1),
(12661, 9935, '4', 'anna university', '', 'mba', '2021', 74.00, '', 1, '2022-08-25 10:43:28', 0, NULL, 0, NULL, 1),
(12662, 9936, '2', 'state board', '', '', '2017', 65.00, '', 1, '2022-08-25 10:46:45', 0, NULL, 0, NULL, 1),
(12663, 9936, '4', 'anna university', '', 'mca', '2022', 74.00, '', 1, '2022-08-25 10:47:10', 0, NULL, 0, NULL, 1),
(12664, 9937, '2', 'state board', '', '', '2018', 62.00, '', 1, '2022-08-25 10:50:26', 0, NULL, 0, NULL, 1),
(12665, 9937, '3', 'madras university', '', 'bcom', '2022', 72.00, '', 1, '2022-08-25 10:50:51', 0, NULL, 0, NULL, 1),
(12666, 9931, '3', 'Madras University ', '', 'B.com', '2021', 75.00, '', 1, '2022-08-25 12:05:15', 0, NULL, 0, NULL, 1),
(12667, 9938, '4', 'Madras university ', '', 'Msc Mathematics ', '2022', 80.00, '', 1, '2022-08-25 03:48:15', 0, NULL, 0, NULL, 1),
(12668, 9939, '2', 'state board', '', '', '2017', 65.00, '', 1, '2022-08-25 06:29:00', 0, NULL, 0, NULL, 1),
(12669, 9939, '3', 'anna university', '', 'diploma', '2020', 75.00, '', 1, '2022-08-25 06:29:31', 0, NULL, 0, NULL, 1),
(12670, 9940, '2', 'state board', '', '', '2012', 58.00, '', 1, '2022-08-25 06:38:31', 0, NULL, 0, NULL, 1),
(12671, 9940, '3', 'mku', '', 'bsc it', '2017', 62.00, '', 1, '2022-08-25 06:38:54', 0, NULL, 0, NULL, 1),
(12672, 9941, '3', 'University of Madras', '', 'B. SC_Computer Science', '2022', 83.50, '', 1, '2022-08-25 06:50:29', 0, NULL, 0, NULL, 1),
(12673, 9942, '2', 'state board', '', '', '2018', 59.00, '', 1, '2022-08-26 08:41:00', 0, NULL, 0, NULL, 1),
(12674, 9942, '3', 'madras university', '', 'ba eco', '2021', 70.00, '', 1, '2022-08-26 08:41:23', 0, NULL, 0, NULL, 1),
(12675, 9943, '2', 'state board', '', '', '2018', 65.00, '', 1, '2022-08-26 08:44:27', 0, NULL, 0, NULL, 1),
(12676, 9943, '3', 'madras university', '', 'ba lit', '2021', 75.00, '', 1, '2022-08-26 08:44:55', 0, NULL, 0, NULL, 1),
(12677, 9944, '2', 'state board', '', '', '2017', 82.00, '', 1, '2022-08-26 08:47:52', 0, NULL, 0, NULL, 1),
(12678, 9944, '3', 'madurai kamarajar university', '', 'bba', '2020', 68.00, '', 1, '2022-08-26 08:48:17', 0, NULL, 0, NULL, 1),
(12679, 9945, '2', 'state board', '', '', '2017', 65.00, '', 1, '2022-08-26 08:55:40', 0, NULL, 0, NULL, 1),
(12680, 9945, '3', 'anna university', '', 'be', '2021', 78.00, '', 1, '2022-08-26 08:56:00', 0, NULL, 0, NULL, 1),
(12681, 9946, '2', 'state board', '', '', '2017', 65.00, '', 1, '2022-08-26 10:15:25', 0, NULL, 0, NULL, 1),
(12682, 9946, '3', 'bharathiyar university', '', 'bsc', '2020', 69.00, '', 1, '2022-08-26 10:15:50', 0, NULL, 0, NULL, 1),
(12683, 3962, '2', 'state board', '', '', '2017', 65.00, '', 1, '2022-08-26 10:24:13', 0, NULL, 0, NULL, 1),
(12684, 3962, '3', 'diploma', '', 'multimedia', '2019', 78.00, '', 1, '2022-08-26 10:24:45', 0, NULL, 0, NULL, 1),
(12685, 9948, '3', 'Anna university', '', 'BE in EEE', '2017', 78.00, '', 1, '2022-08-26 10:41:07', 0, NULL, 0, NULL, 1),
(12686, 9947, '5', 'govt polytechnic', '', 'dme', '2020', 65.00, '', 1, '2022-08-26 10:49:46', 0, NULL, 0, NULL, 1),
(12687, 9949, '3', 'Periyar Maniammai institute of science and technology ', '', 'B tech ', '2022', 6.50, '', 1, '2022-08-26 10:50:25', 0, NULL, 0, NULL, 1),
(12688, 9951, '3', 'Anna University ', '', '', '2019', 6.32, '', 1, '2022-08-26 10:56:59', 0, NULL, 0, NULL, 1),
(12689, 9952, '3', 'Madras University', '', 'BCA', '2022', 85.00, '', 1, '2022-08-26 11:33:37', 0, NULL, 0, NULL, 1),
(12690, 9953, '5', 'Manonmaniyam University ', '', 'DME', '2022', 81.00, '', 1, '2022-08-26 11:43:12', 0, NULL, 0, NULL, 1),
(12691, 9954, '3', 'Madaras University ', '', 'Bca', '2022', 7.50, '', 1, '2022-08-26 12:11:24', 0, NULL, 0, NULL, 1),
(12692, 9955, '4', 'bharat university', '', 'bsc visual communication', '2021', 71.00, '', 1, '2022-08-26 03:22:39', 0, NULL, 0, NULL, 1),
(12693, 9956, '3', 'Alagappa university ', '', 'B.com', '2020', 63.33, '', 1, '2022-08-27 09:25:26', 0, NULL, 0, NULL, 1),
(12694, 9957, '2', 'state board', '', '', '2009', 79.00, '', 1, '2022-08-27 09:41:23', 0, NULL, 0, NULL, 1),
(12695, 9957, '3', 'anna university', '', 'btech', '2016', 56.00, '', 1, '2022-08-27 09:41:46', 0, NULL, 0, NULL, 1),
(12696, 9958, '2', 'state board', '', '', '2018', 89.00, '', 1, '2022-08-27 09:46:12', 0, NULL, 0, NULL, 1),
(12697, 9958, '3', 'madras university', '', 'ba eco', '2021', 70.00, '', 1, '2022-08-27 09:47:10', 0, NULL, 0, NULL, 1),
(12698, 9959, '4', 'Madras University', '', 'M. SC  I T', '2022', 80.00, '', 1, '2022-08-27 09:59:30', 0, NULL, 0, NULL, 1),
(12699, 9959, '3', 'Dr. Mgr Janaki college of atrs and science', '', 'BCA', '2020', 79.00, '', 1, '2022-08-27 10:00:19', 0, NULL, 0, NULL, 1),
(12700, 9960, '1', 'SRV Hi-tech matriculation higher secondary school ', '', '', '2014', 86.00, '', 1, '2022-08-27 10:05:51', 0, NULL, 0, NULL, 1),
(12701, 9960, '5', 'Muthayammal polytechnic college of engineering ', '', 'Electrical and electronics engineering ', '2017', 96.00, '', 1, '2022-08-27 10:06:19', 0, NULL, 0, NULL, 1),
(12702, 9960, '3', 'Coimbatore institute of technology ', '', 'Bachelor of engineering ', '2020', 70.00, '', 1, '2022-08-27 10:06:54', 0, NULL, 0, NULL, 1),
(12703, 9961, '4', 'Jaya college of arts and Science ', '', 'M. C. A. ', '2021', 80.00, '', 1, '2022-08-27 10:32:48', 0, NULL, 0, NULL, 1),
(12704, 9961, '3', 'Jaya college of arts and Science ', '', 'B. C. A. ', '2019', 65.00, '', 1, '2022-08-27 10:33:51', 0, NULL, 0, NULL, 1),
(12705, 9961, '2', 'R. C. M. Higher Secondary school ', '', '', '2016', 61.00, '', 1, '2022-08-27 10:34:35', 0, NULL, 0, NULL, 1),
(12706, 9961, '1', 'R. C. M. Higher secondary school ', '', '', '2014', 77.00, '', 1, '2022-08-27 10:35:40', 0, NULL, 0, NULL, 1),
(12707, 9962, '3', 'Madras University ', '', 'BCA ', '2022', 89.00, '', 1, '2022-08-27 10:36:14', 0, NULL, 0, NULL, 1),
(12708, 9962, '2', 'State board of tamilnadu ', '', '', '2019', 77.30, '', 1, '2022-08-27 10:37:24', 0, NULL, 0, NULL, 1),
(12709, 9962, '1', 'State board of tamilnadu ', '', '', '2017', 92.60, '', 1, '2022-08-27 10:38:28', 0, NULL, 0, NULL, 1),
(12710, 9963, '3', 'Anna university ', '', 'Bachelor of Engineering ', '2021', 70.00, '', 1, '2022-08-27 10:53:52', 0, NULL, 0, NULL, 1),
(12711, 9964, '3', 'Anna university ', '', 'Bachelor of engineering ', '2020', 7.32, '', 1, '2022-08-27 10:54:06', 0, NULL, 0, NULL, 1),
(12712, 9963, '5', 'DOTE', '', 'Diploma ', '2018', 78.00, '', 1, '2022-08-27 10:55:17', 0, NULL, 0, NULL, 1),
(12713, 9964, '5', 'Anna university ', '', 'Diploma ', '2017', 90.00, '', 1, '2022-08-27 10:55:20', 0, NULL, 0, NULL, 1),
(12714, 9965, '3', 'Anna university', '', 'B.e.mechanical', '2020', 62.00, '', 1, '2022-08-27 10:58:10', 0, NULL, 0, NULL, 1),
(12715, 9966, '3', 'Bharathiyar University ', '', 'B.com (CA)', '2022', 82.00, '', 1, '2022-08-27 11:00:33', 0, NULL, 0, NULL, 1),
(12716, 9968, '3', 'Anna University ', '', 'B tech ', '2022', 79.00, '', 1, '2022-08-27 11:08:09', 0, NULL, 0, NULL, 1),
(12717, 9967, '3', 'Asan memorial ', '', 'BCA', '2022', 70.00, '', 1, '2022-08-27 11:27:31', 0, NULL, 0, NULL, 1),
(12718, 9969, '3', 'Madurai kamaraj university', '', 'B. Sc', '2022', 75.00, '', 1, '2022-08-27 12:05:26', 0, NULL, 0, NULL, 1),
(12719, 9971, '3', 'Anna University', '', 'BE', '2021', 66.00, '', 1, '2022-08-27 01:02:04', 0, NULL, 0, NULL, 1),
(12720, 9972, '3', 'Anna University ', '', 'BE', '2021', 74.00, '', 1, '2022-08-27 01:02:08', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12721, 9973, '3', 'Madras University ', '', 'Bsc.computer science ', '2022', 96.00, '', 1, '2022-08-27 01:09:06', 0, NULL, 0, NULL, 1),
(12722, 9974, '3', 'Loyola institute of technology ', '', 'B. Tech IT', '2022', 78.00, '', 1, '2022-08-27 02:09:43', 0, NULL, 0, NULL, 1),
(12723, 9974, '1', 'State board', '', '', '2016', 65.00, '', 1, '2022-08-27 02:10:41', 0, NULL, 0, NULL, 1),
(12724, 9974, '2', 'St antonys higher secondary school ', '', '', '2018', 75.00, '', 1, '2022-08-27 02:11:28', 0, NULL, 0, NULL, 1),
(12725, 9978, '1', 'state board', '', '', '2013', 69.00, '', 1, '2022-08-29 09:38:15', 0, NULL, 0, NULL, 1),
(12726, 9978, '5', 'psn group', '', 'diploma', '2016', 58.00, '', 1, '2022-08-29 09:38:42', 0, NULL, 0, NULL, 1),
(12727, 9979, '2', 'state board', '', '', '2015', 76.00, '', 1, '2022-08-29 09:41:28', 0, NULL, 0, NULL, 1),
(12728, 9979, '4', 'annamalai  university', '', 'mba', '2023', 67.00, '', 1, '2022-08-29 09:46:08', 0, NULL, 0, NULL, 1),
(12729, 9980, '2', 'state board', '', '', '2016', 78.00, '', 1, '2022-08-29 09:50:42', 0, NULL, 0, NULL, 1),
(12730, 9980, '4', 'anna university', '', 'mba', '2022', 78.00, '', 1, '2022-08-29 09:51:05', 0, NULL, 0, NULL, 1),
(12731, 9981, '3', 'Metras', '', '', '2018', 89.00, '', 1, '2022-08-29 10:57:55', 0, NULL, 0, NULL, 1),
(12732, 9982, '3', 'Bharath University ', '', 'B.Tech CSE', '2022', 65.00, '', 1, '2022-08-29 10:59:07', 0, NULL, 0, NULL, 1),
(12733, 9984, '3', 'Madras university ', '', 'B.A. ENGLISH LITERATURE ', '2022', 6.42, '', 1, '2022-08-29 11:25:08', 0, NULL, 0, NULL, 1),
(12734, 9983, '3', 'thiruvalluvar university', '', '', '2021', 73.00, '', 1, '2022-08-29 11:38:36', 0, NULL, 0, NULL, 1),
(12735, 9985, '3', 'william carey university', '', 'bsc computer science ', '2016', 60.00, '', 1, '2022-08-29 11:40:47', 0, NULL, 0, NULL, 1),
(12736, 9986, '3', 'University', '', 'B.E ', '2020', 70.00, '', 1, '2022-08-29 11:44:00', 0, NULL, 0, NULL, 1),
(12737, 9987, '4', 'madras university', '', 'm.b.a', '2022', 71.00, '', 1, '2022-08-29 12:17:56', 0, NULL, 0, NULL, 1),
(12738, 9988, '3', 'University of madras', '', 'B. Sc Computer Science', '2023', 80.00, '', 1, '2022-08-29 01:50:04', 0, NULL, 0, NULL, 1),
(12739, 9989, '3', 'University of Madras ', '', 'BSC COMPUTER SCIENCE ', '2023', 80.00, '', 1, '2022-08-29 01:51:36', 0, NULL, 0, NULL, 1),
(12740, 9977, '3', 'madras university', '', 'bachelors in business administration', '2022', 77.90, '', 1, '2022-08-29 02:02:06', 0, NULL, 0, NULL, 1),
(12741, 9990, '1', 'State board', '', '', '2009', 90.00, '', 1, '2022-08-29 02:24:35', 1, '2022-08-29 02:24:52', 0, NULL, 0),
(12742, 9990, '3', 'Valliammal college for women', '', 'Bsc computer science', '2014', 75.00, '', 1, '2022-08-29 02:25:34', 0, NULL, 0, NULL, 1),
(12743, 9990, '2', 'State board', '', '', '2011', 75.00, '', 1, '2022-08-29 02:27:17', 0, NULL, 0, NULL, 1),
(12744, 9990, '1', 'State board', '', '', '2009', 90.00, '', 1, '2022-08-29 02:27:51', 0, NULL, 0, NULL, 1),
(12745, 9991, '4', 'Madras University ', '', 'Statistics ', '2021', 82.00, '', 1, '2022-08-29 05:15:35', 0, NULL, 0, NULL, 1),
(12746, 9994, '2', 'state board', '', '', '2015', 72.00, '', 1, '2022-08-30 09:58:59', 0, NULL, 0, NULL, 1),
(12747, 9994, '3', 'anna university', '', 'be mech', '2019', 65.00, '', 1, '2022-08-30 09:59:28', 0, NULL, 0, NULL, 1),
(12748, 9993, '3', 'D.R.B.C.C.C.Hindu College', '', '', '2022', 91.00, '', 1, '2022-08-30 10:02:29', 1, '2022-08-30 10:03:22', 0, NULL, 0),
(12749, 9995, '2', 'state board', '', '', '2016', 65.00, '', 1, '2022-08-30 10:03:09', 0, NULL, 0, NULL, 1),
(12750, 9995, '3', 'madras university', '', 'bcom', '2019', 61.00, '', 1, '2022-08-30 10:03:44', 0, NULL, 0, NULL, 1),
(12751, 9993, '3', 'D.R.B.C.C.C.Hindu College', '', 'Bsc mathematics', '2022', 91.00, '', 1, '2022-08-30 10:04:06', 0, NULL, 0, NULL, 1),
(12752, 9996, '3', 'Dr. MGR University', '', 'BCA', '2021', 81.60, '', 1, '2022-08-30 10:09:24', 0, NULL, 0, NULL, 1),
(12753, 9992, '3', 'indira gandhi', '', '', '2022', 72.00, '', 1, '2022-08-30 10:09:51', 0, NULL, 0, NULL, 1),
(12754, 9999, '3', 'Madras University ', '', 'B.com general ', '2022', 78.00, '', 1, '2022-08-30 10:38:12', 0, NULL, 0, NULL, 1),
(12755, 9998, '3', 'Madras university', '', 'B.com', '2022', 70.00, '', 1, '2022-08-30 10:40:52', 0, NULL, 0, NULL, 1),
(12756, 9997, '4', ' bharathidasan university', '', 'MCA', '2022', 70.00, '', 1, '2022-08-30 10:43:41', 0, NULL, 0, NULL, 1),
(12757, 10000, '3', 'Paavai Engineering college', '', 'BE civil engineering', '2019', 65.00, '', 1, '2022-08-30 10:47:50', 0, NULL, 0, NULL, 1),
(12758, 10001, '3', 'JAMAL MOHAMED COLLEGE ', '', 'BCA', '2021', 71.00, '', 1, '2022-08-30 11:16:04', 0, NULL, 0, NULL, 1),
(12759, 10001, '2', 'Muvendar Matric hr Sec School.', '', '', '2018', 61.00, '', 1, '2022-08-30 11:17:11', 0, NULL, 0, NULL, 1),
(12760, 10001, '1', 'Muvendar Matric Hr Sec School.', '', '', '2016', 73.80, '', 1, '2022-08-30 11:17:41', 0, NULL, 0, NULL, 1),
(12761, 10002, '3', 'Sri vasavi college ', '', 'BBA', '2020', 63.00, '', 1, '2022-08-30 11:21:12', 0, NULL, 0, NULL, 1),
(12762, 10006, '3', 'Mahendra Institute of engineering and technology -Anna University ', '', 'BE- Mechanical Engineering ', '2020', 72.00, '', 1, '2022-08-30 11:49:43', 0, NULL, 0, NULL, 1),
(12763, 10003, '3', 'Bharathidhasan University ', '', 'BA. English ', '2021', 65.00, '', 1, '2022-08-30 11:50:25', 0, NULL, 0, NULL, 1),
(12764, 10006, '2', 'Government higher secondary school veppur ', '', '', '2016', 67.00, '', 1, '2022-08-30 11:51:04', 0, NULL, 0, NULL, 1),
(12765, 10006, '1', 'Government higher secondary school veppur ', '', '', '2014', 70.00, '', 1, '2022-08-30 11:51:36', 0, NULL, 0, NULL, 1),
(12766, 10004, '3', 'mahendra engineering college', '', 'b.e', '2018', 63.50, '', 1, '2022-08-30 12:01:13', 0, NULL, 0, NULL, 1),
(12767, 10007, '4', 'Bharathidhasan University ', '', 'Chemistry ', '2021', 87.00, '', 1, '2022-08-30 12:06:47', 0, NULL, 0, NULL, 1),
(12768, 10008, '3', 'Jaya engineering college', '', 'B. Tech', '2021', 82.40, '', 1, '2022-08-30 12:11:10', 0, NULL, 0, NULL, 1),
(12769, 10009, '3', 'Thiruvalluvar  university', '', 'BCA', '2021', 73.00, '', 1, '2022-08-30 12:16:49', 0, NULL, 0, NULL, 1),
(12770, 10010, '3', 'Thiruvalluvar University ', '', 'BCA', '2021', 70.00, '', 1, '2022-08-30 12:17:50', 0, NULL, 0, NULL, 1),
(12771, 10011, '4', 'University of Madras', '', 'Msc. In  cyber forensic and information security', '2022', 75.00, '', 1, '2022-08-30 12:45:45', 0, NULL, 0, NULL, 1),
(12772, 10011, '3', 'Women\'s Christian College', '', 'Bachelor of computer applications', '2020', 82.00, '', 1, '2022-08-30 12:46:55', 0, NULL, 0, NULL, 1),
(12773, 10011, '2', 'State board', '', '', '2017', 85.00, '', 1, '2022-08-30 12:47:15', 0, NULL, 0, NULL, 1),
(12774, 10011, '1', 'State Board of Tamilnadu', '', '', '2015', 93.00, '', 1, '2022-08-30 12:47:53', 0, NULL, 0, NULL, 1),
(12775, 10012, '3', 'University ', '', '', '2019', 6.50, '', 1, '2022-08-30 01:22:08', 0, NULL, 0, NULL, 1),
(12776, 10013, '4', 'University of Madras ', '', 'M.Sc', '2022', 80.00, '', 1, '2022-08-30 03:01:23', 0, NULL, 0, NULL, 1),
(12777, 10015, '3', 'm.c.c', '', 'b.a', '2022', 75.00, '', 1, '2022-08-30 03:04:16', 0, NULL, 0, NULL, 1),
(12778, 10014, '3', 'Anna university', '', 'BE', '2023', 86.00, '', 1, '2022-08-30 03:04:39', 0, NULL, 0, NULL, 1),
(12779, 10016, '3', 'Anna University ', '', 'BE-EIE', '2020', 66.90, '', 1, '2022-08-30 03:15:12', 0, NULL, 0, NULL, 1),
(12780, 10016, '2', 'TN state board ', '', '', '2016', 84.83, '', 1, '2022-08-30 03:15:42', 0, NULL, 0, NULL, 1),
(12781, 10016, '1', 'TN STATE BOARD ', '', '', '2014', 90.20, '', 1, '2022-08-30 03:16:07', 0, NULL, 0, NULL, 1),
(12782, 10017, '4', 'Thiruvalluvar University', '', 'BA tamil', '2021', 60.00, '', 1, '2022-08-30 03:51:48', 0, NULL, 0, NULL, 1),
(12783, 10018, '1', 'state board', '', '', '2014', 60.00, '', 1, '2022-08-31 10:10:19', 0, NULL, 0, NULL, 1),
(12784, 10018, '5', 'sai institute', '', 'diploma', '2021', 65.00, '', 1, '2022-08-31 10:10:46', 0, NULL, 0, NULL, 1),
(12785, 10019, '3', 'Anna University', '', 'B.E', '2020', 6.78, '', 1, '2022-09-01 10:04:27', 0, NULL, 0, NULL, 1),
(12786, 10020, '2', 'state board', '', '', '2017', 50.00, '', 1, '2022-09-01 10:54:08', 0, NULL, 0, NULL, 1),
(12787, 10020, '3', 'bharathiyar university', '', 'bba', '2020', 78.00, '', 1, '2022-09-01 10:54:37', 0, NULL, 0, NULL, 1),
(12788, 10022, '3', 'Asan memorial universitY', '', 'BBA', '2022', 70.00, '', 85, '2022-09-01 11:31:30', 0, NULL, 0, NULL, 1),
(12789, 10023, '3', 'Anna university ', '', 'B.E ', '2017', 65.00, '', 1, '2022-09-01 11:44:33', 0, NULL, 0, NULL, 1),
(12790, 10027, '2', 'State board', '', '', '2017', 65.00, '', 1, '2022-09-01 12:42:03', 0, NULL, 0, NULL, 1),
(12791, 10021, '2', 'state board', '', '', '2017', 86.00, '', 1, '2022-09-01 12:42:49', 0, NULL, 0, NULL, 1),
(12792, 10021, '4', 'madras university', '', 'msc physics', '2022', 76.00, '', 1, '2022-09-01 12:43:42', 0, NULL, 0, NULL, 1),
(12793, 10029, '3', 'Justice basheer Ahmed syed college for women', '', 'B.com', '2019', 76.00, '', 1, '2022-09-01 12:50:38', 0, NULL, 0, NULL, 1),
(12794, 10026, '3', 'SRM UNIVERSITY ', '', 'BCA', '2022', 75.00, '', 1, '2022-09-01 12:52:24', 0, NULL, 0, NULL, 1),
(12795, 10028, '3', 'Dr MGR University', '', 'BCA', '2018', 85.00, '', 1, '2022-09-01 12:53:25', 0, NULL, 0, NULL, 1),
(12796, 10028, '2', 'State board', '', '', '2015', 67.00, '', 1, '2022-09-01 12:54:01', 0, NULL, 0, NULL, 1),
(12797, 10028, '1', 'State', '', '', '2013', 85.00, '', 1, '2022-09-01 12:54:39', 0, NULL, 0, NULL, 1),
(12798, 10025, '3', 'Mahalakshmi women\'s college ', '', 'BCA', '2022', 70.00, '', 1, '2022-09-01 01:06:38', 0, NULL, 0, NULL, 1),
(12799, 10024, '3', 'Kasi Nadar college ', '', 'BCA ', '2022', 78.00, '', 1, '2022-09-01 01:09:06', 0, NULL, 0, NULL, 1),
(12800, 9970, '4', 'dr.mgr educational and research institute university', '', 'mba', '2022', 78.00, '', 1, '2022-09-01 01:26:40', 0, NULL, 0, NULL, 1),
(12801, 10031, '3', 'Madras University ', '', 'BSC COMPUTER SCIENCE ', '2018', 70.00, '', 1, '2022-09-01 10:17:30', 0, NULL, 0, NULL, 1),
(12802, 10033, '3', 'Baharathiaar', '', 'B.com cs', '2022', 65.00, '', 1, '2022-09-02 10:07:34', 0, NULL, 0, NULL, 1),
(12803, 10034, '5', 'Anna university', '', 'Diploma', '2015', 70.00, '', 1, '2022-09-02 11:27:24', 0, NULL, 0, NULL, 1),
(12804, 10035, '3', 'University of madras', '', 'BCA', '2022', 60.00, '', 1, '2022-09-02 03:07:49', 0, NULL, 0, NULL, 1),
(12805, 10037, '3', 'Bharathiar university coimbatore', '', 'B. Com CA', '2022', 71.75, '', 1, '2022-09-02 03:40:18', 0, NULL, 0, NULL, 1),
(12806, 10038, '3', 'Anna University ', '', 'B.E.', '2005', 60.00, '', 1, '2022-09-02 03:54:41', 0, NULL, 0, NULL, 1),
(12807, 10036, '3', 'Madras University ', '', 'B.A.Economics', '2022', 50.00, '', 1, '2022-09-03 10:10:24', 0, NULL, 0, NULL, 1),
(12808, 10039, '3', 'Bharathiyar University', '', 'BBA', '2022', 67.00, '', 1, '2022-09-03 10:21:00', 0, NULL, 0, NULL, 1),
(12809, 10040, '2', 'State board', '', '', '2008', 75.00, '', 1, '2022-09-03 10:28:24', 0, NULL, 0, NULL, 1),
(12810, 10041, '3', 'Madras University ', '', 'B.Com', '2019', 60.00, '', 1, '2022-09-03 10:37:17', 0, NULL, 0, NULL, 1),
(12811, 10042, '3', 'Aarupadai veedu Institute of technology ', '', 'B e (cse)', '2017', 70.00, '', 1, '2022-09-03 10:45:37', 0, NULL, 0, NULL, 1),
(12812, 10043, '3', 'Anna university', '', 'BE', '2021', 74.80, '', 1, '2022-09-03 11:40:26', 0, NULL, 0, NULL, 1),
(12813, 10045, '3', 'Sri surya ', '', 'Bcom', '2021', 80.00, '', 1, '2022-09-03 12:38:04', 0, NULL, 0, NULL, 1),
(12814, 10044, '3', 'Sri surya', '', 'Bcom', '2021', 70.00, '', 1, '2022-09-03 12:48:11', 0, NULL, 0, NULL, 1),
(12815, 10047, '4', 'Thiruvallur University', '', 'M.sc (CS)', '2022', 71.00, '', 1, '2022-09-03 02:31:43', 0, NULL, 0, NULL, 1),
(12816, 10048, '3', 'Guru shree shanthivijai jain college, chennai', '', 'B. Com (ISM) ', '2022', 80.00, '', 1, '2022-09-05 10:03:04', 0, NULL, 0, NULL, 1),
(12817, 10050, '3', 'Dwaraka Doss Goverdhan Doss Vaishnav College', '', 'Bca- bachelor of  computer application', '2020', 64.00, '', 1, '2022-09-05 10:04:38', 0, NULL, 0, NULL, 1),
(12818, 10049, '4', 'University ', '', 'M.com', '2022', 75.00, '', 1, '2022-09-05 10:17:07', 0, NULL, 0, NULL, 1),
(12819, 10051, '1', 'General cariappa HR SEC SCHOOL ', '', 'Mobile phone debug technition ', '2018', 57.00, '', 1, '2022-09-05 10:18:59', 0, NULL, 0, NULL, 1),
(12820, 10052, '3', 'bangor university/uk', '', 'ba', '2020', 2.10, '', 1, '2022-09-05 10:40:46', 0, NULL, 0, NULL, 1),
(12821, 10054, '3', 'Anna university ', '', 'B.E Electrical and Electronics Engineering ', '2020', 7.22, '', 1, '2022-09-05 10:46:16', 0, NULL, 0, NULL, 1),
(12822, 10053, '3', 'Tagore college ', '', 'B.sc', '2021', 71.00, '', 1, '2022-09-05 10:55:43', 0, NULL, 0, NULL, 1),
(12823, 10055, '3', 'manonmaniam sundaranar University ', '', 'B.sc(IT)', '2021', 95.00, '', 1, '2022-09-05 11:28:09', 0, NULL, 0, NULL, 1),
(12824, 10058, '3', 'Anna University', '', 'B. E Mechanical', '2018', 79.00, '', 1, '2022-09-05 11:29:02', 0, NULL, 0, NULL, 1),
(12825, 10062, '1', ' TN State board ', '', '', '2010', 60.00, '', 1, '2022-09-05 11:36:52', 0, NULL, 0, NULL, 1),
(12826, 10062, '2', 'Tn State Board', '', '', '2012', 60.00, '', 1, '2022-09-05 11:37:16', 0, NULL, 0, NULL, 1),
(12827, 10062, '5', 'Anna university', '', 'DCSE', '2015', 61.00, '', 1, '2022-09-05 11:37:59', 0, NULL, 0, NULL, 1),
(12828, 10062, '3', 'Anna university', '', 'BE', '2020', 65.00, '', 1, '2022-09-05 11:38:24', 0, NULL, 0, NULL, 1),
(12829, 10057, '1', '2008', '', '', '2010', 84.00, '', 1, '2022-09-05 11:47:16', 0, NULL, 0, NULL, 1),
(12830, 10061, '3', 'Bharathiyar University ', '', 'B.Sc., Biochemistry ', '2022', 74.00, '', 1, '2022-09-05 11:47:21', 0, NULL, 0, NULL, 1),
(12831, 10057, '5', 'Madras university ', '', 'Diploma', '2010', 84.00, '', 1, '2022-09-05 11:48:36', 0, NULL, 0, NULL, 1),
(12832, 10063, '3', 'A m jain college Chennai.', '', 'BCA', '2021', 71.00, '', 1, '2022-09-05 11:53:12', 0, NULL, 0, NULL, 1),
(12833, 10056, '1', 'Madras University ', '', '', '2020', 77.00, '', 1, '2022-09-05 11:53:56', 0, NULL, 0, NULL, 1),
(12834, 10064, '3', 'Madras university ', '', 'BA English ', '2020', 60.00, '', 1, '2022-09-05 11:55:39', 0, NULL, 0, NULL, 1),
(12835, 10059, '3', 'Bharathiyar University ', '', 'Biochemistry ', '2022', 71.00, '', 1, '2022-09-05 12:16:35', 0, NULL, 0, NULL, 1),
(12836, 10060, '3', 'Bharathiyar University ', '', 'B.Sc., Biochemistry ', '2022', 74.00, '', 1, '2022-09-05 12:18:11', 0, NULL, 0, NULL, 1),
(12837, 10065, '3', 'University of madras', '', 'B.com Computer Applications', '2020', 5.90, '', 1, '2022-09-05 12:23:17', 0, NULL, 0, NULL, 1),
(12838, 10067, '3', 'University', '', 'B.com (cS)', '2022', 73.00, '', 1, '2022-09-05 01:01:35', 0, NULL, 0, NULL, 1),
(12839, 10066, '3', 'Madaras University ', '', 'B.com(c.s)', '2022', 72.00, '', 1, '2022-09-05 01:03:30', 0, NULL, 0, NULL, 1),
(12840, 10068, '3', 'Saveetha university ', '', 'Bsc. Trauma care management ', '2020', 7.20, '', 1, '2022-09-05 01:09:00', 0, NULL, 0, NULL, 1),
(12841, 10069, '4', 'Bharathiyar', '', 'MCA', '2022', 65.00, '', 1, '2022-09-05 04:23:59', 0, NULL, 0, NULL, 1),
(12842, 10071, '3', 'Madras University ', '', 'B.com ', '2021', 80.00, '', 1, '2022-09-05 05:28:55', 0, NULL, 0, NULL, 1),
(12843, 10072, '3', 'srm university', '', 'bca computer applications', '2019', 5.90, '', 1, '2022-09-06 10:11:15', 0, NULL, 0, NULL, 1),
(12844, 10073, '2', 'state board', '', '', '2012', 76.00, '', 1, '2022-09-06 10:15:05', 0, NULL, 0, NULL, 1),
(12845, 10073, '4', 'madras university', '', 'mca', '2016', 67.00, '', 1, '2022-09-06 10:15:33', 0, NULL, 0, NULL, 1),
(12846, 10076, '2', 'state board', '', '', '2019', 74.00, '', 1, '2022-09-06 10:33:23', 0, NULL, 0, NULL, 1),
(12847, 10076, '3', 'madras university', '', 'bcom cs', '2022', 70.00, '', 1, '2022-09-06 10:33:45', 0, NULL, 0, NULL, 1),
(12848, 10074, '3', 'Manomaniyam University of sankarankovil ', '', 'B.com', '2021', 70.00, '', 1, '2022-09-06 10:43:14', 0, NULL, 0, NULL, 1),
(12849, 10075, '3', 'Anna University ', '', 'B.Tech', '2021', 72.00, '', 1, '2022-09-06 11:24:24', 0, NULL, 0, NULL, 1),
(12850, 10078, '3', 'Jeppiaar maamallan engineering college', '', 'B. E', '2021', 72.00, '', 1, '2022-09-06 11:39:11', 0, NULL, 0, NULL, 1),
(12851, 10079, '4', 'Madras university', '', 'B. Sc', '2020', 70.00, '', 1, '2022-09-06 11:39:18', 0, NULL, 0, NULL, 1),
(12852, 10080, '3', 'Anna university ', '', 'B. E', '2022', 74.00, '', 1, '2022-09-06 11:51:16', 0, NULL, 0, NULL, 1),
(12853, 10083, '3', 'Sastra ', '', 'b.com ca', '2020', 6.90, '', 1, '2022-09-06 12:00:41', 0, NULL, 0, NULL, 1),
(12854, 10082, '3', 'Periyar manniyamammi unuversite', '', 'BBA', '2020', 7.10, '', 1, '2022-09-06 12:00:43', 0, NULL, 0, NULL, 1),
(12855, 10081, '3', 'Anna University ', '', 'BE computer science and engineering ', '2022', 78.00, '', 1, '2022-09-06 12:13:29', 0, NULL, 0, NULL, 1),
(12856, 10085, '3', 'Madras university ', '', 'Bba ', '2020', 51.00, '', 1, '2022-09-06 12:27:22', 0, NULL, 0, NULL, 1),
(12857, 10089, '3', 'madras university', '', 'Bachelor of computer applicaion', '2020', 63.00, '', 1, '2022-09-06 12:36:56', 0, NULL, 0, NULL, 1),
(12858, 10084, '3', 'Bharathiar university', '', 'Bsc botany', '2010', 55.00, '', 1, '2022-09-06 12:37:56', 0, NULL, 0, NULL, 1),
(12859, 10087, '4', 'Anna university ', '', 'MBA', '2022', 71.00, '', 1, '2022-09-06 12:38:24', 0, NULL, 0, NULL, 1),
(12860, 10088, '4', 'Anna University ', '', 'MCA', '2015', 85.00, '', 1, '2022-09-06 12:39:50', 0, NULL, 0, NULL, 1),
(12861, 10086, '3', 'Periyar university ', '', 'BA English', '2018', 65.00, '', 1, '2022-09-06 12:47:38', 0, NULL, 0, NULL, 1),
(12862, 10090, '3', 'Vels University ', '', 'Bachelor of engineering ', '2022', 7.50, '', 1, '2022-09-06 12:52:19', 0, NULL, 0, NULL, 1),
(12863, 10091, '3', 'Arulmigu kalasalingam college of arts and science ', '', 'B.Com(cA)', '2020', 62.00, '', 1, '2022-09-06 01:13:34', 0, NULL, 0, NULL, 1),
(12864, 10093, '5', 'K L Nagaswamy Memorial polytechnic college Madurai ', '', 'Diploma in Electronics and communication engineeri', '2017', 72.00, '', 1, '2022-09-06 02:26:00', 0, NULL, 0, NULL, 1),
(12865, 10092, '3', 'SDNB Vashnav University ', '', 'Bsc visual communication ', '2021', 61.00, '', 1, '2022-09-06 02:40:02', 0, NULL, 0, NULL, 1),
(12866, 10094, '3', 'Madras university', '', 'B.C.A', '2021', 53.00, '', 1, '2022-09-06 03:00:35', 0, NULL, 0, NULL, 1),
(12867, 10096, '4', 'Shri Krishnaswamy College For women', '', 'MSc Computer Science', '2022', 90.00, '', 1, '2022-09-07 10:44:39', 0, NULL, 0, NULL, 1),
(12868, 10096, '3', 'Shri Krishnaswamy College For Women', '', 'BSc Computer Science', '2020', 83.00, '', 1, '2022-09-07 10:45:25', 0, NULL, 0, NULL, 1),
(12869, 10096, '2', 'Leo Matriculation Higher Sec School', '', '', '2017', 83.00, '', 1, '2022-09-07 10:46:03', 0, NULL, 0, NULL, 1),
(12870, 10096, '1', 'Leo Matriculation Higher Sec School', '', '', '2015', 92.00, '', 1, '2022-09-07 10:46:40', 0, NULL, 0, NULL, 1),
(12871, 10097, '3', 'University of Madras', '', 'B.com', '2016', 56.00, '', 1, '2022-09-07 10:51:44', 0, NULL, 0, NULL, 1),
(12872, 10099, '3', 'Bharathiyar University ', '', 'BCA', '2022', 60.00, '', 1, '2022-09-07 11:06:15', 0, NULL, 0, NULL, 1),
(12873, 10100, '3', 'Anna University ', '', 'BE-MECHANICAL ', '2018', 67.00, '', 1, '2022-09-07 11:22:14', 0, NULL, 0, NULL, 1),
(12874, 10098, '3', 'Madras University ', '', 'B.sc computer  science ', '2022', 81.02, '', 1, '2022-09-07 11:25:27', 0, NULL, 0, NULL, 1),
(12875, 10102, '3', 'Hindusthan college of Engineering and technology ', '', 'EEE', '2021', 7.48, '', 1, '2022-09-07 12:00:45', 0, NULL, 0, NULL, 1),
(12876, 10104, '1', 'Stateboard', '', '', '2016', 84.00, '', 1, '2022-09-07 12:10:36', 1, '2022-09-07 12:10:56', 0, NULL, 1),
(12877, 10101, '4', 'Jntu ananthapur', '', 'B.tech', '2022', 60.00, '', 1, '2022-09-07 12:10:48', 0, NULL, 0, NULL, 1),
(12878, 10104, '2', 'Stateboard', '', '', '2018', 70.00, '', 1, '2022-09-07 12:11:18', 0, NULL, 0, NULL, 1),
(12879, 10104, '3', 'Sri Ramakrishna Institute of Technology', '', 'B.E-Computer Science And Engineering', '2022', 73.00, '', 1, '2022-09-07 12:12:57', 0, NULL, 0, NULL, 1),
(12880, 10105, '1', 'Stateboard', '', '', '2016', 73.00, '', 1, '2022-09-07 12:17:54', 0, NULL, 0, NULL, 1),
(12881, 10105, '2', 'Stateboard', '', '', '2018', 56.00, '', 1, '2022-09-07 12:18:18', 0, NULL, 0, NULL, 1),
(12882, 10032, '4', 'Madras University ', '', 'MSC COMPUTER science ', '2021', 9.00, '', 1, '2022-09-07 12:18:48', 0, NULL, 0, NULL, 1),
(12883, 10105, '3', 'Sri Ramakrishna Institute of Technology', '', 'B.E-Computrr Science And Engineering', '2022', 77.00, '', 1, '2022-09-07 12:19:13', 0, NULL, 0, NULL, 1),
(12884, 10106, '3', 'Sv  university', '', 'Degree ', '2022', 89.00, '', 1, '2022-09-07 12:20:30', 0, NULL, 0, NULL, 1),
(12885, 10103, '3', 'Meenakshi Acadamey of Higher Education and Reasearch', '', 'B.E', '2021', 83.00, '', 1, '2022-09-07 12:24:04', 0, NULL, 0, NULL, 1),
(12886, 10103, '1', 'Matriculation', '', '', '2015', 80.00, '', 1, '2022-09-07 12:25:10', 0, NULL, 0, NULL, 1),
(12887, 10103, '2', 'State board', '', '', '2017', 68.00, '', 1, '2022-09-07 12:25:33', 0, NULL, 0, NULL, 1),
(12888, 10107, '3', 'Anna University ', '', 'B.tech chemical engineering ', '2021', 7.50, '', 1, '2022-09-07 12:27:46', 0, NULL, 0, NULL, 1),
(12889, 10109, '3', 'Madras university', '', 'BBA', '2022', 60.00, '', 1, '2022-09-07 01:39:22', 0, NULL, 0, NULL, 1),
(12890, 10108, '3', 'Madras University', '', 'BCA', '2022', 70.00, '', 1, '2022-09-07 01:46:49', 0, NULL, 0, NULL, 1),
(12891, 10113, '3', 'SRM University ', '', 'B.Tech Mechanical engineering ', '2021', 74.00, '', 1, '2022-09-08 07:42:26', 0, NULL, 0, NULL, 1),
(12892, 10114, '3', 'Pachaiyappa\'s College, Chennai', '', 'B. Sc computer science', '2020', 70.00, '', 1, '2022-09-08 08:10:02', 0, NULL, 0, NULL, 1),
(12893, 10116, '3', 'Bharathidasan university', '', 'BCA', '2019', 78.00, '', 1, '2022-09-08 10:28:43', 0, NULL, 0, NULL, 1),
(12894, 10117, '3', 'Pachaiyappa\'s college, Chennai', '', 'B. Sc Computer Science', '2020', 68.00, '', 1, '2022-09-08 10:33:55', 0, NULL, 0, NULL, 1),
(12895, 10118, '1', 'State ', '', 'BCA', '2016', 80.80, '', 1, '2022-09-08 10:44:57', 1, '2022-09-08 10:51:32', 0, NULL, 1),
(12896, 10121, '3', 'Jamal mohammad college trichy', '', 'BCA', '2020', 60.00, '', 1, '2022-09-08 10:45:57', 0, NULL, 0, NULL, 1),
(12897, 10122, '3', 'Anna University ', '', 'B.E', '2022', 8.10, '', 1, '2022-09-08 10:51:04', 0, NULL, 0, NULL, 1),
(12898, 10122, '2', 'State board ', '', '', '2018', 75.00, '', 1, '2022-09-08 10:51:44', 0, NULL, 0, NULL, 1),
(12899, 10118, '2', 'State', '', '', '2018', 69.75, '', 1, '2022-09-08 10:52:00', 0, NULL, 0, NULL, 1),
(12900, 10120, '3', 'University of Madras', '', 'Bachelor of Computer Applications ', '2022', 78.00, '', 1, '2022-09-08 10:52:43', 0, NULL, 0, NULL, 1),
(12901, 10118, '3', 'Madurai kamarajar University', '', 'BCA', '2021', 67.38, '', 1, '2022-09-08 10:52:57', 0, NULL, 0, NULL, 1),
(12902, 10119, '3', 'Anna university ', '', '', '2019', 6.69, '', 1, '2022-09-08 10:58:18', 0, NULL, 0, NULL, 1),
(12903, 10124, '2', 'Kellet hr school ', '', '', '2008', 65.00, '', 1, '2022-09-08 11:41:09', 0, NULL, 0, NULL, 1),
(12904, 10123, '3', 'Anna university', '', 'BE-mechanical engineering', '2022', 82.00, '', 1, '2022-09-08 11:47:23', 0, NULL, 0, NULL, 1),
(12905, 10110, '3', 'Madras University ', '', 'Bsc', '2021', 78.00, '', 1, '2022-09-08 12:25:29', 0, NULL, 0, NULL, 1),
(12906, 10111, '1', 'State board', '', '', '2016', 95.00, '', 1, '2022-09-08 12:34:48', 0, NULL, 0, NULL, 1),
(12907, 10111, '2', 'State board ', '', '', '2018', 83.00, '', 1, '2022-09-08 12:35:05', 0, NULL, 0, NULL, 1),
(12908, 10112, '1', 'State board ', '', '', '2016', 85.00, '', 1, '2022-09-08 12:38:07', 0, NULL, 0, NULL, 1),
(12909, 10112, '2', 'State board ', '', '', '2018', 59.00, '', 1, '2022-09-08 12:38:23', 0, NULL, 0, NULL, 1),
(12910, 10112, '3', 'Anna University ', '', 'BR', '2022', 75.00, '', 1, '2022-09-08 12:38:42', 0, NULL, 0, NULL, 1),
(12911, 10125, '1', 'State', '', '', '2015', 89.00, '', 1, '2022-09-08 01:30:34', 0, NULL, 0, NULL, 1),
(12912, 10125, '2', 'State', '', '', '2017', 54.00, '', 1, '2022-09-08 01:30:52', 0, NULL, 0, NULL, 1),
(12913, 10126, '5', 'Tamilnadu technical education ', '', 'Diploma electronics communication and engineering ', '2015', 72.00, '', 1, '2022-09-08 02:44:24', 0, NULL, 0, NULL, 1),
(12914, 10127, '1', 'Tamilnadu state board ', '', '', '2011', 60.00, '', 1, '2022-09-08 02:48:40', 0, NULL, 0, NULL, 1),
(12915, 10127, '5', 'Tamilnadu technical education ', '', 'Diploma in electronics communication and engineeri', '2015', 72.00, '', 1, '2022-09-08 02:49:08', 0, NULL, 0, NULL, 1),
(12916, 10130, '4', 'Loyola college ', '', 'MSW HR ', '2022', 70.00, '', 1, '2022-09-08 06:36:13', 0, NULL, 0, NULL, 1),
(12917, 10130, '3', 'J.H.A. Agarson college ', '', 'B.COM GENERAL ', '2020', 71.00, '', 1, '2022-09-08 06:37:19', 0, NULL, 0, NULL, 1),
(12918, 10130, '2', 'W.P.A.SOUNDARAPANDIAN.HIGHER.SEC.SCHOOL', '', '', '2017', 79.00, '', 1, '2022-09-08 06:37:52', 0, NULL, 0, NULL, 1),
(12919, 10130, '1', 'W.P.A. SOUNDARAPANDIAN.HIGHER.SEC.SCHOOL', '', '', '2015', 81.00, '', 1, '2022-09-08 06:38:39', 0, NULL, 0, NULL, 1),
(12920, 10131, '3', 'Madras University ', '', 'B.com', '2020', 90.00, '', 1, '2022-09-08 06:45:09', 0, NULL, 0, NULL, 1),
(12921, 10131, '1', 'State board ', '', '', '2015', 70.00, '', 1, '2022-09-08 06:46:30', 0, NULL, 0, NULL, 1),
(12922, 10131, '2', 'State board ', '', '', '2017', 80.00, '', 1, '2022-09-08 06:47:12', 0, NULL, 0, NULL, 1),
(12923, 10133, '3', 'Alagappa University ', '', 'B.com', '2018', 74.00, '', 1, '2022-09-09 11:16:31', 0, NULL, 0, NULL, 1),
(12924, 10134, '3', 'Alagappa university ', '', 'B.Sc', '2021', 62.00, '', 1, '2022-09-09 11:19:08', 0, NULL, 0, NULL, 1),
(12925, 10135, '3', 'University of Madras ', '', 'Bcom', '2022', 86.00, '', 1, '2022-09-09 11:48:09', 0, NULL, 0, NULL, 1),
(12926, 10136, '3', 'Rajiv Gandhi college of engineering', '', 'bachelor of technology', '2021', 7.58, '', 1, '2022-09-09 12:12:45', 0, NULL, 0, NULL, 1),
(12927, 10129, '3', 'Thiruvalluvar University ', '', 'Bca', '2022', 68.00, '', 1, '2022-09-09 12:14:25', 0, NULL, 0, NULL, 1),
(12928, 10138, '3', 'Madras university ', '', 'b.com', '2022', 6.50, '', 1, '2022-09-09 12:20:39', 0, NULL, 0, NULL, 1),
(12929, 10139, '3', 'Autonomous ', '', 'B.Tech', '2022', 7.80, '', 1, '2022-09-09 12:55:15', 0, NULL, 0, NULL, 1),
(12930, 10140, '3', 'Anna University ', '', 'B.E(CSE)', '2022', 75.00, '', 1, '2022-09-09 01:09:25', 0, NULL, 0, NULL, 1),
(12931, 10140, '2', 'State board ', '', '', '2018', 54.00, '', 1, '2022-09-09 01:09:59', 0, NULL, 0, NULL, 1),
(12932, 10141, '1', 'State board', '', '', '2016', 92.00, '', 1, '2022-09-09 01:21:53', 0, NULL, 0, NULL, 1),
(12933, 10144, '3', 'Madras University ', '', 'B.sc Computer science ', '2020', 75.00, '', 1, '2022-09-09 01:54:00', 0, NULL, 0, NULL, 1),
(12934, 10143, '3', 'University of Madras ', '', 'B.sc computer science ', '2019', 90.00, '', 1, '2022-09-09 01:54:08', 0, NULL, 0, NULL, 1),
(12935, 10142, '3', 'Apollo University ', '', 'BBA', '2019', 62.00, '', 1, '2022-09-09 02:20:18', 0, NULL, 0, NULL, 1),
(12936, 10137, '3', 'GKM college', '', 'be', '2022', 80.00, '', 1, '2022-09-09 03:00:02', 0, NULL, 0, NULL, 1),
(12937, 10145, '2', 'state board', '', '', '2014', 71.00, '', 1, '2022-09-10 09:49:11', 0, NULL, 0, NULL, 1),
(12938, 10145, '3', 'anna university', '', 'be', '2018', 68.00, '', 1, '2022-09-10 09:49:31', 0, NULL, 0, NULL, 1),
(12939, 10146, '1', 'state board', '', '', '2013', 79.00, '', 1, '2022-09-10 09:57:56', 0, NULL, 0, NULL, 1),
(12940, 10146, '3', 'anna university', '', 'be', '2019', 73.00, '', 1, '2022-09-10 09:58:27', 0, NULL, 0, NULL, 1),
(12941, 10147, '3', 'SCSVMV University ', '', 'BSC computer science ', '2022', 91.00, '', 1, '2022-09-10 10:36:17', 0, NULL, 0, NULL, 1),
(12942, 10149, '5', 'S A polytechnic college ', '', 'Diploma in computer science engineering ', '2021', 80.00, '', 1, '2022-09-10 11:01:25', 0, NULL, 0, NULL, 1),
(12943, 10150, '2', 'ganesh bai galada jain girls hr sec school', '', 'bachelor of commerce', '2018', 67.00, '', 1, '2022-09-10 11:07:16', 0, NULL, 0, NULL, 1),
(12944, 10151, '5', 'S.A POLYTECHNIC COLLEGE ', '', 'Diploma in computer science Engineering ', '2022', 71.00, '', 1, '2022-09-10 11:07:51', 0, NULL, 0, NULL, 1),
(12945, 10150, '1', 'ganesh bai galada jain girls hr sec school', '', '', '2016', 66.00, '', 1, '2022-09-10 11:08:05', 0, NULL, 0, NULL, 1),
(12946, 10152, '3', 'vels university', '', 'B. c. A', '2022', 85.00, '', 1, '2022-09-10 11:22:14', 0, NULL, 0, NULL, 1),
(12947, 10154, '3', 'Madras university', '', 'B.sc computer science', '2022', 81.00, '', 1, '2022-09-10 11:25:40', 1, '2022-09-10 11:26:07', 0, NULL, 1),
(12948, 10156, '3', 'Madras University', '', 'BCA', '2022', 78.00, '', 1, '2022-09-10 11:36:08', 0, NULL, 0, NULL, 1),
(12949, 10157, '4', 'Pondicherry University ', '', 'MBA HRM ', '2022', 60.00, '', 1, '2022-09-10 11:50:10', 0, NULL, 0, NULL, 1),
(12950, 10155, '3', 'Madras University', '', 'BCA', '2022', 76.00, '', 1, '2022-09-10 11:50:14', 0, NULL, 0, NULL, 1),
(12951, 10157, '4', 'Madras University ', '', 'B.com general ', '2016', 60.00, '', 1, '2022-09-10 11:51:00', 0, NULL, 0, NULL, 1),
(12952, 10153, '3', 'MGR government college ', '', 'Bachelor of visual arts', '2021', 89.00, '', 1, '2022-09-10 11:51:58', 0, NULL, 0, NULL, 1),
(12953, 10158, '3', 'Rajasthan Technical University ', '', 'B. Tech', '2022', 82.40, '', 1, '2022-09-10 01:23:23', 0, NULL, 0, NULL, 1),
(12954, 10158, '2', 'Jharkhand Academic Council ', '', '', '2017', 66.80, '', 1, '2022-09-10 01:23:43', 0, NULL, 0, NULL, 1),
(12955, 10158, '1', 'CBSE', '', '', '2015', 72.20, '', 1, '2022-09-10 01:24:06', 0, NULL, 0, NULL, 1),
(12956, 10161, '2', 'state board', '', '', '2019', 49.00, '', 1, '2022-09-12 07:25:27', 0, NULL, 0, NULL, 1),
(12957, 10161, '3', 'thiruvalluvar university', '', 'bcom', '2022', 67.00, '', 1, '2022-09-12 07:25:55', 0, NULL, 0, NULL, 1),
(12958, 10162, '1', 'state board', '', '', '2017', 71.00, '', 1, '2022-09-12 07:29:04', 0, NULL, 0, NULL, 1),
(12959, 10162, '5', 'government iti', '', 'iti', '2020', 73.00, '', 1, '2022-09-12 07:29:31', 0, NULL, 0, NULL, 1),
(12960, 10163, '2', 'state board', '', '', '2019', 65.00, '', 1, '2022-09-12 07:31:55', 0, NULL, 0, NULL, 1),
(12961, 10163, '3', 'thiruvalluvar university', '', 'bcom', '2022', 75.00, '', 1, '2022-09-12 07:32:16', 0, NULL, 0, NULL, 1),
(12962, 10164, '2', 'state board', '', '', '2019', 62.00, '', 1, '2022-09-12 07:34:49', 0, NULL, 0, NULL, 1),
(12963, 10164, '3', 'thiruvalluvar university', '', 'bcom', '2022', 66.00, '', 1, '2022-09-12 07:35:11', 0, NULL, 0, NULL, 1),
(12964, 10165, '2', 'state board', '', '', '2017', 60.00, '', 1, '2022-09-12 07:37:36', 0, NULL, 0, NULL, 1),
(12965, 10165, '3', 'thiruvalluvar university', '', 'bcom', '2022', 76.00, '', 1, '2022-09-12 07:37:59', 0, NULL, 0, NULL, 1),
(12966, 10166, '2', 'state board', '', '', '2019', 77.00, '', 1, '2022-09-12 07:41:05', 0, NULL, 0, NULL, 1),
(12967, 10166, '3', 'thiruvalluvar university', '', 'bca', '2022', 67.00, '', 1, '2022-09-12 07:41:29', 0, NULL, 0, NULL, 1),
(12968, 10159, '3', 'Madras University ', '', 'B.com (general)', '2021', 75.00, '', 1, '2022-09-12 10:08:30', 0, NULL, 0, NULL, 1),
(12969, 10167, '3', 'Anna university', '', 'B. E', '2018', 67.00, '', 1, '2022-09-12 11:00:18', 0, NULL, 0, NULL, 1),
(12970, 10168, '3', 'meenakshi college for women', '', 'b.sc mathematics', '2017', 69.00, '', 1, '2022-09-12 11:19:59', 1, '2022-09-12 11:20:57', 0, NULL, 0),
(12971, 10168, '1', 'stella matriculation school', '', '', '2012', 76.40, '', 1, '2022-09-12 11:21:40', 1, '2022-09-12 11:24:12', 0, NULL, 0),
(12972, 10168, '2', 'j.r.k matriculation school', '', '', '2014', 83.25, '', 1, '2022-09-12 11:22:18', 1, '2022-09-12 11:24:15', 0, NULL, 0),
(12973, 10168, '3', 'meenakshi college for women', '', 'b.sc mathematics', '2017', 69.00, '', 1, '2022-09-12 11:22:53', 0, NULL, 0, NULL, 1),
(12974, 10160, '3', 'University', '', 'B A', '2022', 71.00, '', 1, '2022-09-12 11:50:58', 0, NULL, 0, NULL, 1),
(12975, 10169, '3', 'Anna University ', '', 'B.E', '2017', 64.90, '', 1, '2022-09-12 12:11:00', 0, NULL, 0, NULL, 1),
(12976, 10170, '3', 'Pachaiyappas colleage', '', 'B. Com general', '2019', 80.00, '', 1, '2022-09-12 12:22:36', 0, NULL, 0, NULL, 1),
(12977, 10171, '2', 'BHARATHIDASAN', '', '', '2014', 72.00, '', 1, '2022-09-12 01:40:27', 0, NULL, 0, NULL, 1),
(12978, 10171, '4', 'Bharadhidasan', '', 'MBA', '2014', 70.00, '', 1, '2022-09-12 01:41:21', 0, NULL, 0, NULL, 1),
(12979, 10172, '4', 'BHARATHIDASAN UNIVERSITY ', '', 'MSC COMPUTER SCIENCE ', '2020', 72.00, '', 1, '2022-09-12 01:44:35', 0, NULL, 0, NULL, 1),
(12980, 10173, '4', 'bharathiyar university', '', 'MBA ', '2019', 68.00, '', 1, '2022-09-12 02:25:13', 0, NULL, 0, NULL, 1),
(12981, 10173, '3', 'thiruvalluvar university', '', 'bba', '2017', 77.00, '', 1, '2022-09-12 02:26:22', 0, NULL, 0, NULL, 1),
(12982, 10174, '3', 'Vels University ', '', 'B.com', '2022', 88.00, '', 1, '2022-09-12 10:35:47', 0, NULL, 0, NULL, 1),
(12983, 10176, '4', 'Bharathidasan university', '', 'M. Com', '2022', 78.00, '', 1, '2022-09-13 10:03:52', 0, NULL, 0, NULL, 1),
(12984, 10175, '3', 'University of Madras ', '', 'B.com (corporate secretaryship)', '2022', 70.00, '', 1, '2022-09-13 10:05:17', 0, NULL, 0, NULL, 1),
(12985, 10178, '3', 'Madras University ', '', 'B.com', '2014', 74.00, '', 1, '2022-09-13 10:50:57', 0, NULL, 0, NULL, 1),
(12986, 10179, '4', 'University ', '', 'MBA', '2022', 6.80, '', 1, '2022-09-13 10:58:59', 0, NULL, 0, NULL, 1),
(12987, 10177, '3', 'Madras University ', '', 'B.com', '2021', 68.00, '', 1, '2022-09-13 11:03:38', 0, NULL, 0, NULL, 1),
(12988, 10181, '5', 'Anna University', '', 'DEEE', '2014', 60.00, '', 1, '2022-09-13 11:15:52', 0, NULL, 0, NULL, 1),
(12989, 10180, '5', 'Mumbai ', '', 'SSLC ', '1997', 60.00, '', 1, '2022-09-13 11:38:04', 0, NULL, 0, NULL, 1),
(12990, 10180, '1', 'Mumbai film University ', '', 'D.f.teck', '2000', 80.00, '', 1, '2022-09-13 11:39:40', 0, NULL, 0, NULL, 1),
(12991, 10183, '3', 'Vels university', '', 'Bca', '2021', 6.79, '', 1, '2022-09-13 12:09:58', 0, NULL, 0, NULL, 1),
(12992, 10184, '3', 'Vels University ', '', 'Bca', '2020', 6.50, '', 1, '2022-09-13 12:16:53', 0, NULL, 0, NULL, 1),
(12993, 10182, '1', 'C.s.I St Stephens matriculation school', '', '', '2016', 80.00, '', 1, '2022-09-13 12:17:39', 0, NULL, 0, NULL, 1),
(12994, 10185, '3', 'Aalim Mohammed saliq politechnic college', '', 'DAE', '2024', 67.00, '', 1, '2022-09-13 12:48:41', 0, NULL, 0, NULL, 1),
(12995, 10186, '4', 'madras univesity', '', 'b.com general', '2022', 60.00, '', 1, '2022-09-13 02:03:00', 0, NULL, 0, NULL, 1),
(12996, 10187, '4', 'Madras University ', '', 'Mcom', '2018', 60.00, '', 1, '2022-09-13 03:46:21', 0, NULL, 0, NULL, 1),
(12997, 10189, '3', 'Alagappa university', '', 'B. Com', '2021', 90.00, '', 1, '2022-09-13 11:19:12', 0, NULL, 0, NULL, 1),
(12998, 10189, '2', 'Govt boys high secondary school', '', '', '2018', 93.00, '', 1, '2022-09-13 11:20:40', 0, NULL, 0, NULL, 1),
(12999, 10189, '1', 'Govt Boys High Secondary School', '', '', '2016', 93.00, '', 1, '2022-09-13 11:21:05', 0, NULL, 0, NULL, 1),
(13000, 10190, '1', 'state board', '', '', '2012', 74.00, '', 1, '2022-09-14 09:18:07', 0, NULL, 0, NULL, 1),
(13001, 10190, '5', 'dote', '', 'dme', '2015', 89.00, '', 1, '2022-09-14 09:18:28', 0, NULL, 0, NULL, 1),
(13002, 10191, '2', 'state board', '', '', '2014', 72.00, '', 1, '2022-09-14 09:23:45', 0, NULL, 0, NULL, 1),
(13003, 10191, '3', 'jntua university', '', 'btech', '2021', 60.00, '', 1, '2022-09-14 09:24:24', 0, NULL, 0, NULL, 1),
(13004, 10192, '2', 'state board', '', '', '2014', 71.00, '', 1, '2022-09-14 09:30:05', 0, NULL, 0, NULL, 1),
(13005, 10192, '3', 'anna university', '', 'be mech', '2018', 64.00, '', 1, '2022-09-14 09:30:28', 0, NULL, 0, NULL, 1),
(13006, 10193, '3', 'Madras University ', '', 'Bba', '2020', 61.00, '', 1, '2022-09-14 10:58:31', 0, NULL, 0, NULL, 1),
(13007, 10194, '3', 'Bharathidasan University ', '', 'B.com', '2021', 86.00, '', 1, '2022-09-14 11:28:57', 0, NULL, 0, NULL, 1),
(13008, 10195, '3', 'University', '', 'Bcom (cs) ', '2022', 84.00, '', 1, '2022-09-14 12:11:30', 0, NULL, 0, NULL, 1),
(13009, 10196, '3', 'Madras university', '', 'B. Com ( corporate secretartship) ', '2022', 84.00, '', 1, '2022-09-14 12:15:22', 0, NULL, 0, NULL, 1),
(13010, 10198, '3', 'University of Madras ', '', 'BCA', '2022', 69.00, '', 1, '2022-09-14 12:40:38', 0, NULL, 0, NULL, 1),
(13011, 10197, '3', 'University of Madras ', '', 'BBA', '2022', 69.00, '', 1, '2022-09-14 12:40:43', 0, NULL, 0, NULL, 1),
(13012, 10198, '1', 'Tamilnadu state board ', '', '', '2017', 81.00, '', 1, '2022-09-14 12:41:12', 0, NULL, 0, NULL, 1),
(13013, 10197, '2', 'State Board ', '', '', '2019', 51.00, '', 1, '2022-09-14 12:41:17', 0, NULL, 0, NULL, 1),
(13014, 10198, '2', 'Tamilnadu state board ', '', '', '2019', 54.00, '', 1, '2022-09-14 12:41:33', 0, NULL, 0, NULL, 1),
(13015, 10197, '1', 'State Board ', '', '', '2017', 78.00, '', 1, '2022-09-14 12:41:46', 0, NULL, 0, NULL, 1),
(13016, 10199, '3', 'Madras University ', '', 'Bsc computer science ', '2022', 77.46, '', 1, '2022-09-14 01:04:09', 0, NULL, 0, NULL, 1),
(13017, 10201, '3', 'Ethiraj college for women ', '', 'B.A tourism and travel management ', '2019', 60.00, '', 1, '2022-09-14 04:59:20', 0, NULL, 0, NULL, 1),
(13018, 10205, '3', 'Madras University ', '', 'B.com(commerce)', '2022', 78.90, '', 1, '2022-09-15 10:34:07', 0, NULL, 0, NULL, 1),
(13019, 10204, '4', 'Madras university distance education', '', 'BCA', '2024', 80.00, '', 1, '2022-09-15 10:49:17', 0, NULL, 0, NULL, 1),
(13020, 10206, '2', 'state board', '', '', '2018', 90.00, '', 1, '2022-09-15 10:52:05', 0, NULL, 0, NULL, 1),
(13021, 10206, '3', 'anna university', '', 'be', '2022', 85.00, '', 1, '2022-09-15 10:52:26', 0, NULL, 0, NULL, 1),
(13022, 10203, '5', 'Srimathi Institute ', '', 'DHA ', '2018', 70.00, '', 1, '2022-09-15 11:14:17', 0, NULL, 0, NULL, 1),
(13023, 10209, '4', 'University of madras', '', 'MBA (HRM)', '2017', 65.00, '', 1, '2022-09-15 11:18:07', 0, NULL, 0, NULL, 1),
(13024, 10207, '5', 'Sri Nallalaghu Nadar Polytechnic College', '', 'Dce ', '2018', 60.00, '', 1, '2022-09-15 11:26:59', 0, NULL, 0, NULL, 1),
(13025, 10210, '4', 'Madras university', '', 'BBA', '2021', 75.00, '', 1, '2022-09-15 11:49:01', 0, NULL, 0, NULL, 1),
(13026, 10208, '3', 'B.Com ', '', '', '2020', 61.00, '', 1, '2022-09-15 11:50:40', 0, NULL, 0, NULL, 1),
(13027, 10211, '5', 'Anna university ', '', 'Diploma ', '2014', 50.00, '', 1, '2022-09-15 12:26:59', 0, NULL, 0, NULL, 1),
(13028, 10202, '3', 'Krishaswamy  college ', '', 'Bcom', '2019', 80.00, '', 1, '2022-09-15 12:32:43', 0, NULL, 0, NULL, 1),
(13029, 10212, '3', 'University of Madras', '', 'B.COM(CA)', '2021', 65.00, '', 1, '2022-09-15 01:06:14', 0, NULL, 0, NULL, 1),
(13030, 10213, '3', 'Bharathiar University ', '', 'B.Com', '2022', 83.00, '', 1, '2022-09-15 01:20:20', 1, '2022-09-15 01:20:31', 0, NULL, 0),
(13031, 10213, '3', 'Bharathiar University ', '', 'B.Com', '2022', 83.00, '', 1, '2022-09-15 01:21:01', 0, NULL, 0, NULL, 1),
(13032, 10214, '5', 'Board', '', 'ECE', '2020', 90.00, '', 1, '2022-09-15 03:40:00', 0, NULL, 0, NULL, 1),
(13033, 10215, '3', 'Anna university ', '', 'Aa', '2022', 74.00, '', 1, '2022-09-16 10:46:21', 0, NULL, 0, NULL, 1),
(13034, 10217, '3', 'Anna university', '', 'B. A. English', '2022', 68.00, '', 1, '2022-09-16 11:00:39', 0, NULL, 0, NULL, 1),
(13035, 10216, '4', 'Anna University ', '', 'MCA', '2022', 75.00, '', 1, '2022-09-16 11:03:50', 0, NULL, 0, NULL, 1),
(13036, 10218, '3', 'Dg vaishnav college ', '', 'Bcom cs', '2022', 68.00, '', 1, '2022-09-16 12:04:21', 0, NULL, 0, NULL, 1),
(13037, 10219, '3', 'University madras', '', 'B.com', '2018', 75.00, '', 1, '2022-09-16 12:22:35', 0, NULL, 0, NULL, 1),
(13038, 10220, '3', 'University of madras', '', 'Bsc', '2018', 68.00, '', 1, '2022-09-16 12:33:29', 0, NULL, 0, NULL, 1),
(13039, 10221, '3', 'Bharathidhasan University ', '', 'Ba English ', '2018', 70.00, '', 1, '2022-09-16 01:03:18', 0, NULL, 0, NULL, 1),
(13040, 10222, '2', 'state board', '', '', '2021', 59.00, '', 1, '2022-09-16 01:22:07', 0, NULL, 0, NULL, 1),
(13041, 10222, '3', 'thiruvalluvar university', '', 'bsc', '2021', 76.00, '', 1, '2022-09-16 01:22:50', 0, NULL, 0, NULL, 1),
(13042, 10223, '2', 'state board', '', '', '2019', 77.00, '', 1, '2022-09-16 01:25:03', 0, NULL, 0, NULL, 1),
(13043, 10223, '3', 'thirvalluvar university', '', 'bba', '2021', 80.00, '', 1, '2022-09-16 01:25:28', 0, NULL, 0, NULL, 1),
(13044, 10225, '3', 'Bharathidasan University ', '', 'BCA ', '2020', 75.00, '', 1, '2022-09-16 06:20:45', 0, NULL, 0, NULL, 1),
(13045, 10226, '3', 'University ', '', 'BSc.Computer science ', '2019', 61.00, '', 1, '2022-09-16 08:08:24', 0, NULL, 0, NULL, 1),
(13046, 10226, '2', 'Dhanalakshmi hr sec school ', '', '', '2016', 55.00, '', 1, '2022-09-16 08:10:09', 0, NULL, 0, NULL, 1),
(13047, 10226, '1', 'Dhanalakshmi hr sec school ', '', '', '2014', 66.00, '', 1, '2022-09-16 08:10:47', 0, NULL, 0, NULL, 1),
(13048, 10227, '4', 'University ', '', 'M.sc physics', '2020', 69.00, '', 1, '2022-09-17 09:48:32', 1, '2022-09-17 09:48:52', 0, NULL, 1),
(13049, 10228, '4', 'Vellalar college for women ', '', 'Mcom computer applications ', '2022', 82.00, '', 1, '2022-09-17 10:33:12', 0, NULL, 0, NULL, 1),
(13050, 10228, '3', 'Vellalar college for women ', '', 'Bcom computer applications ', '2020', 68.00, '', 1, '2022-09-17 10:33:50', 1, '2022-09-17 10:35:02', 0, NULL, 1),
(13051, 10228, '2', 'Vellalar matric hr sec school ', '', '', '2017', 71.00, '', 1, '2022-09-17 10:34:29', 0, NULL, 0, NULL, 1),
(13052, 10228, '1', 'Vethathri vidhyalaya matric hr sec school ', '', '', '2015', 83.00, '', 1, '2022-09-17 10:35:43', 0, NULL, 0, NULL, 1),
(13053, 10229, '3', 'Indian virtual University ', '', 'B com', '2017', 72.00, '', 1, '2022-09-17 11:56:54', 0, NULL, 0, NULL, 1),
(13054, 10230, '3', 'Madras university', '', 'B.com bank management', '2021', 80.00, '', 1, '2022-09-17 12:19:18', 0, NULL, 0, NULL, 1),
(13055, 10231, '3', 'National institute of technology thiruchirappali ', '', 'B.tech', '2021', 60.00, '', 1, '2022-09-17 03:09:43', 0, NULL, 0, NULL, 1),
(13056, 10233, '3', 'Anna university ', '', 'BE', '2018', 72.00, '', 1, '2022-09-18 09:21:39', 0, NULL, 0, NULL, 1),
(13057, 10234, '3', 'PSG College Of Technology ,Coimbatore ', '', 'BE', '2021', 71.10, '', 1, '2022-09-18 09:46:12', 0, NULL, 0, NULL, 1),
(13058, 10234, '2', 'Rajavignesh Hr.Sec.School, Melamathur ', '', '', '2017', 94.08, '', 1, '2022-09-18 09:46:57', 0, NULL, 0, NULL, 1),
(13059, 10234, '1', 'Govt.Hr.sec.school, Kamarasavalli ', '', '', '2015', 95.20, '', 1, '2022-09-18 09:47:20', 0, NULL, 0, NULL, 1),
(13060, 10237, '3', 'Bharadhidasan', '', 'Bsc', '2020', 68.00, '', 1, '2022-09-19 11:02:48', 0, NULL, 0, NULL, 1),
(13061, 10236, '4', 'Bharathudhasan ', '', 'MCA', '2021', 75.00, '', 1, '2022-09-19 11:07:38', 0, NULL, 0, NULL, 1),
(13062, 10238, '4', 'SRM University ', '', 'MBA ', '2021', 85.00, '', 1, '2022-09-19 11:08:42', 0, NULL, 0, NULL, 1),
(13063, 10235, '3', 'Madras university ', '', 'Bca', '2020', 78.50, '', 1, '2022-09-19 12:12:09', 0, NULL, 0, NULL, 1),
(13064, 10240, '1', 'State board ', '', '', '2013', 83.00, '', 1, '2022-09-20 10:37:01', 0, NULL, 0, NULL, 1),
(13065, 10240, '2', 'State board ', '', '', '2015', 76.00, '', 1, '2022-09-20 10:37:21', 0, NULL, 0, NULL, 1),
(13066, 10240, '3', 'Deemed University ', '', 'Bca', '2018', 83.00, '', 1, '2022-09-20 10:37:45', 0, NULL, 0, NULL, 1),
(13067, 10241, '2', 'state board', '', '', '2009', 65.00, '', 1, '2022-09-20 10:49:00', 0, NULL, 0, NULL, 1),
(13068, 10241, '3', 'madras university', '', 'bcom', '2012', 70.00, '', 1, '2022-09-20 10:49:24', 0, NULL, 0, NULL, 1),
(13069, 10242, '1', 'State board', '', '', '2013', 79.00, '', 1, '2022-09-20 11:19:30', 0, NULL, 0, NULL, 1),
(13070, 10243, '3', 'Bharathidhasan university ', '', 'B sc physics ', '2017', 60.00, '', 1, '2022-09-20 11:21:16', 0, NULL, 0, NULL, 1),
(13071, 10245, '2', 'St. Peters Higher Secondary School', '', '', '2021', 60.00, '', 1, '2022-09-20 11:26:36', 0, NULL, 0, NULL, 1),
(13072, 10244, '3', 'Madras university', '', 'BBA', '2018', 72.00, '', 1, '2022-09-20 11:27:27', 0, NULL, 0, NULL, 1),
(13073, 10246, '1', 'Private ', '', '', '2019', 100.00, '', 1, '2022-09-20 12:33:46', 0, NULL, 0, NULL, 1),
(13074, 10247, '5', 'Anna university', '', 'DECE', '2016', 66.00, '', 1, '2022-09-20 12:33:59', 0, NULL, 0, NULL, 1),
(13075, 10247, '2', 'STATE BOARD', '', '', '2013', 60.00, '', 1, '2022-09-20 12:34:47', 0, NULL, 0, NULL, 1),
(13076, 10247, '1', 'STATE BOARD', '', '', '2011', 51.00, '', 1, '2022-09-20 12:35:48', 0, NULL, 0, NULL, 1),
(13077, 10248, '3', 'St. Anne\'s arts and science college', '', 'BCA', '2021', 86.00, '', 1, '2022-09-20 01:08:09', 0, NULL, 0, NULL, 1),
(13078, 10249, '3', 'State board', '', 'BE.Electrical and electronic engineering ', '2017', 64.00, '', 1, '2022-09-21 10:02:52', 0, NULL, 0, NULL, 1),
(13079, 10249, '2', 'State board ', '', 'B.E.Electrical and electronic engineering ', '2013', 75.00, '', 1, '2022-09-21 10:05:04', 0, NULL, 0, NULL, 1),
(13080, 10249, '1', 'Statue board ', '', '', '2011', 93.00, '', 1, '2022-09-21 10:05:27', 0, NULL, 0, NULL, 1),
(13081, 10250, '2', 'state board', '', '', '2016', 69.00, '', 1, '2022-09-21 10:06:08', 0, NULL, 0, NULL, 1),
(13082, 10250, '3', 'madras university', '', 'bcom', '2019', 67.00, '', 1, '2022-09-21 10:06:32', 0, NULL, 0, NULL, 1),
(13083, 10251, '2', 'state board', '', '', '2018', 55.00, '', 1, '2022-09-21 10:11:34', 0, NULL, 0, NULL, 1),
(13084, 10251, '3', 'madras university', '', 'bcom', '2021', 70.00, '', 1, '2022-09-21 10:11:59', 0, NULL, 0, NULL, 1),
(13085, 10252, '2', 'state board', '', '', '2016', 73.00, '', 1, '2022-09-21 10:14:15', 0, NULL, 0, NULL, 1),
(13086, 10252, '3', 'anna university', '', 'be mech', '2020', 65.00, '', 1, '2022-09-21 10:14:40', 0, NULL, 0, NULL, 1),
(13087, 10254, '3', 'Anna university ', '', 'B.co.', '2022', 78.00, '', 1, '2022-09-21 10:50:21', 0, NULL, 0, NULL, 1),
(13088, 10253, '3', 'Anna university ', '', 'B co', '2022', 67.00, '', 1, '2022-09-21 10:56:36', 0, NULL, 0, NULL, 1),
(13089, 10255, '3', 'University ', '', 'Bsc', '2018', 63.00, '', 1, '2022-09-21 11:28:08', 0, NULL, 0, NULL, 1),
(13090, 10257, '3', 'St Joseph\'s institute of technology ', '', 'BE', '2021', 72.00, '', 1, '2022-09-21 11:54:11', 0, NULL, 0, NULL, 1),
(13091, 10257, '4', 'Madras university ', '', 'MBA', '2024', 70.00, '', 1, '2022-09-21 11:54:43', 0, NULL, 0, NULL, 1),
(13092, 10256, '4', 'Alagappa University ', '', 'MCA', '2017', 74.50, '', 1, '2022-09-21 12:09:41', 0, NULL, 0, NULL, 1),
(13093, 10259, '3', 'Anna University', '', 'B. E', '2022', 7.60, '', 1, '2022-09-22 10:06:32', 0, NULL, 0, NULL, 1),
(13094, 10259, '2', 'State Board', '', '', '2018', 62.30, '', 1, '2022-09-22 10:07:06', 0, NULL, 0, NULL, 1),
(13095, 10259, '1', 'State Board', '', '', '2016', 92.00, '', 1, '2022-09-22 10:07:30', 0, NULL, 0, NULL, 1),
(13096, 6643, '2', 'state board', '', '', '2015', 57.00, '', 1, '2022-09-22 10:51:58', 0, NULL, 0, NULL, 1),
(13097, 6643, '3', 'anna university', '', 'be', '2019', 77.00, '', 1, '2022-09-22 10:52:22', 0, NULL, 0, NULL, 1),
(13098, 10260, '3', 'University of Madras ', '', 'B.com ', '2021', 80.00, '', 1, '2022-09-22 11:00:07', 0, NULL, 0, NULL, 1),
(13099, 10260, '2', 'Sri Venkateshwara mat hr sec school', '', '', '2018', 92.00, '', 1, '2022-09-22 11:00:36', 0, NULL, 0, NULL, 1),
(13100, 10263, '3', 'Trichy Engineering college', '', 'BE', '2019', 64.00, '', 1, '2022-09-22 11:42:51', 0, NULL, 0, NULL, 1),
(13101, 10262, '3', 'Trichy engineering college ', '', 'BE mechatronics engineering ', '2019', 64.20, '', 1, '2022-09-22 11:43:01', 0, NULL, 0, NULL, 1),
(13102, 10263, '2', 'State Board', '', '', '2015', 75.00, '', 1, '2022-09-22 11:44:06', 0, NULL, 0, NULL, 1),
(13103, 10262, '2', 'Little flower higher secondary school ', '', '', '2014', 69.20, '', 1, '2022-09-22 11:44:45', 1, '2022-09-22 11:45:57', 0, NULL, 0),
(13104, 10263, '1', 'State Board', '', '', '2013', 73.00, '', 1, '2022-09-22 11:44:55', 0, NULL, 0, NULL, 1),
(13105, 10262, '2', 'State board ', '', '', '2015', 65.00, '', 1, '2022-09-22 11:46:55', 1, '2022-09-22 11:48:17', 0, NULL, 1),
(13106, 10262, '1', 'State board ', '', '', '2013', 79.00, '', 1, '2022-09-22 11:47:53', 0, NULL, 0, NULL, 1),
(13107, 10264, '4', 'Anna University ', '', 'MBA', '2021', 75.00, '', 1, '2022-09-22 11:53:20', 0, NULL, 0, NULL, 1),
(13108, 10264, '3', 'Thiruvalluvar University ', '', 'B.com', '2019', 60.00, '', 1, '2022-09-22 11:54:04', 0, NULL, 0, NULL, 1),
(13109, 10264, '2', 'State board ', '', '', '2016', 78.00, '', 1, '2022-09-22 11:54:30', 0, NULL, 0, NULL, 1),
(13110, 10264, '1', 'State board ', '', '', '2014', 65.00, '', 1, '2022-09-22 11:55:03', 0, NULL, 0, NULL, 1),
(13111, 10265, '2', 'TN BOARD EXAM', '', '', '2012', 70.00, '', 1, '2022-09-22 01:07:46', 0, NULL, 0, NULL, 1),
(13112, 10265, '3', 'Anna University Chennai', '', 'B.E.', '2016', 6.00, '', 1, '2022-09-22 01:08:33', 0, NULL, 0, NULL, 1),
(13113, 10268, '3', 'Bharathidasan university', '', 'UG', '2022', 68.00, '', 1, '2022-09-22 01:36:11', 0, NULL, 0, NULL, 1),
(13114, 10267, '3', 'Bharathidasan', '', 'B.com(CA)', '2022', 65.00, '', 1, '2022-09-22 01:36:20', 0, NULL, 0, NULL, 1),
(13115, 10266, '3', 'Bharathidasan university', '', 'B. Com(CA) ', '2022', 80.00, '', 1, '2022-09-22 01:36:27', 0, NULL, 0, NULL, 1),
(13116, 10269, '3', 'Mgr University ', '', 'B.tech (ECE)', '2020', 7.50, '', 1, '2022-09-22 01:57:16', 0, NULL, 0, NULL, 1),
(13117, 10269, '1', 'Sornammal school ', '', '', '2014', 91.00, '', 1, '2022-09-22 01:58:34', 0, NULL, 0, NULL, 1),
(13118, 10269, '2', 'Maharishi Vidya Mandir ', '', '', '2016', 76.00, '', 1, '2022-09-22 01:59:19', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13119, 10271, '4', 'Mysore University ', '', 'MBA', '2021', 68.00, '', 1, '2022-09-22 05:06:27', 1, '2022-09-22 05:06:59', 0, NULL, 0),
(13120, 10271, '4', 'Mysore University ', '', 'MBA', '2021', 68.00, '', 1, '2022-09-22 05:06:49', 0, NULL, 0, NULL, 1),
(13121, 10271, '3', 'Mangalore University ', '', 'BVM', '2018', 54.00, '', 1, '2022-09-22 05:07:26', 0, NULL, 0, NULL, 1),
(13122, 10272, '3', 'st.peters university', '', 'b.e cse', '2016', 6.80, '', 1, '2022-09-22 05:37:03', 0, NULL, 0, NULL, 1),
(13123, 10270, '3', 'Annamalai university ', '', 'Bsc.computer science ', '2019', 75.00, '', 1, '2022-09-22 05:56:06', 0, NULL, 0, NULL, 1),
(13124, 10274, '3', 'Madras university', '', 'B.A', '2021', 65.00, '', 1, '2022-09-23 08:35:54', 0, NULL, 0, NULL, 1),
(13125, 10277, '3', 'Kongu Engineering College ', '', 'IT', '2021', 7.10, '', 1, '2022-09-23 10:20:44', 0, NULL, 0, NULL, 1),
(13126, 10277, '1', 'Government Girls Higher secondary school ', '', '', '2015', 85.00, '', 1, '2022-09-23 10:23:04', 0, NULL, 0, NULL, 1),
(13127, 10278, '3', 'Anna University ', '', 'BE', '2020', 68.00, '', 1, '2022-09-23 10:34:24', 0, NULL, 0, NULL, 1),
(13128, 10279, '3', 'Anna university ', '', 'B. E', '2021', 7.61, '', 1, '2022-09-23 10:57:49', 0, NULL, 0, NULL, 1),
(13129, 10280, '3', 'University of Madras ', '', 'B. Com', '2022', 80.00, '', 1, '2022-09-23 11:25:57', 1, '2022-09-23 11:27:33', 0, NULL, 0),
(13130, 10280, '1', 'Board', '', '', '2017', 92.60, '', 1, '2022-09-23 11:28:42', 1, '2022-09-23 11:30:53', 0, NULL, 1),
(13131, 10280, '2', 'Board', '', '', '2019', 85.60, '', 1, '2022-09-23 11:29:21', 0, NULL, 0, NULL, 1),
(13132, 10280, '3', 'University of Madras', '', 'B. Com', '2022', 80.00, '', 1, '2022-09-23 11:29:52', 0, NULL, 0, NULL, 1),
(13133, 10284, '3', 'Anna university ', '', 'BE.INDUSTRIAL ENGINEERING AND MANAGEMENT ', '2020', 7.50, '', 1, '2022-09-23 11:33:33', 0, NULL, 0, NULL, 1),
(13134, 10286, '3', 'Anna university', '', 'BE', '2015', 7.12, '', 1, '2022-09-23 11:33:50', 0, NULL, 0, NULL, 1),
(13135, 10284, '1', 'Tamil nadu ', '', '', '2014', 84.00, '', 1, '2022-09-23 11:34:38', 0, NULL, 0, NULL, 1),
(13136, 10284, '2', 'Tamil nadu ', '', '', '2016', 63.00, '', 1, '2022-09-23 11:35:13', 0, NULL, 0, NULL, 1),
(13137, 10283, '4', 'Anna univercity Chennai', '', 'mCA', '2020', 7.00, '', 1, '2022-09-23 11:35:22', 0, NULL, 0, NULL, 1),
(13138, 10286, '2', 'St.marys higher secondary school', '', '', '2011', 86.50, '', 1, '2022-09-23 11:36:23', 0, NULL, 0, NULL, 1),
(13139, 10285, '3', 'University ', '', 'BE', '2021', 8.10, '', 1, '2022-09-23 11:36:35', 0, NULL, 0, NULL, 1),
(13140, 10286, '1', 'St.marys higher secondary school', '', '', '2009', 88.00, '', 1, '2022-09-23 11:37:16', 0, NULL, 0, NULL, 1),
(13141, 10283, '3', 'Manonmaniam sundaranar univercity tirunelveli', '', 'BCA', '2018', 64.00, '', 1, '2022-09-23 11:37:39', 0, NULL, 0, NULL, 1),
(13142, 10283, '2', 'Tamilnadu', '', '', '2015', 79.00, '', 1, '2022-09-23 11:38:46', 0, NULL, 0, NULL, 1),
(13143, 10285, '1', 'Hindu Higher secondary school,karumpur', '', 'BE', '2013', 58.00, '', 1, '2022-09-23 11:39:12', 0, NULL, 0, NULL, 1),
(13144, 10287, '4', 'Anna University ', '', 'BE', '2019', 7.20, '', 1, '2022-09-23 11:40:41', 0, NULL, 0, NULL, 1),
(13145, 10287, '1', 'Tamilnadu State Board', '', '', '2013', 79.00, '', 1, '2022-09-23 11:42:04', 0, NULL, 0, NULL, 1),
(13146, 10287, '2', 'Tamilnadu State Board ', '', '', '2015', 70.00, '', 1, '2022-09-23 11:42:29', 0, NULL, 0, NULL, 1),
(13147, 10289, '3', 'Manonmaniyam sundaranar University ', '', 'B.sc', '2020', 70.00, '', 1, '2022-09-23 11:46:26', 0, NULL, 0, NULL, 1),
(13148, 10291, '3', 'Anna university', '', 'BE-ECE', '2021', 7.13, '', 1, '2022-09-23 11:48:34', 0, NULL, 0, NULL, 1),
(13149, 10281, '4', 'bharathidasan ', '', 'msc', '2021', 84.00, '', 1, '2022-09-23 11:56:02', 0, NULL, 0, NULL, 1),
(13150, 10290, '3', 'Anna university', '', 'BE', '2021', 73.90, '', 1, '2022-09-23 11:58:58', 0, NULL, 0, NULL, 1),
(13151, 10282, '4', 'bharathidasan', '', 'msc', '2021', 83.00, '', 1, '2022-09-23 11:59:28', 0, NULL, 0, NULL, 1),
(13152, 10292, '3', 'Madaras University ', '', 'B.com', '2021', 70.00, '', 1, '2022-09-23 12:00:13', 0, NULL, 0, NULL, 1),
(13153, 10288, '3', 'bharathidasan ', '', 'bca', '2020', 75.00, '', 1, '2022-09-23 12:00:34', 0, NULL, 0, NULL, 1),
(13154, 10294, '3', 'Madras University', '', 'Bcom c.s', '2016', 60.00, '', 1, '2022-09-23 12:08:54', 0, NULL, 0, NULL, 1),
(13155, 10293, '3', 'bharathidasan university', '', 'bca', '2021', 86.00, '', 1, '2022-09-23 12:09:31', 0, NULL, 0, NULL, 1),
(13156, 10295, '4', 'Anna University ', '', 'Mca', '2019', 75.00, '', 1, '2022-09-23 01:00:30', 0, NULL, 0, NULL, 1),
(13157, 10297, '3', 'University ', '', 'B.com', '2018', 69.00, '', 1, '2022-09-23 05:40:57', 0, NULL, 0, NULL, 1),
(13158, 10298, '3', 'University of Madras', '', 'Bsc. Cs', '2018', 75.00, '', 1, '2022-09-23 05:50:43', 0, NULL, 0, NULL, 1),
(13159, 10304, '4', 'University of Madras ', '', 'MBA', '2021', 80.00, '', 1, '2022-09-23 07:07:57', 0, NULL, 0, NULL, 1),
(13160, 10309, '3', 'Anna University ', '', 'BE', '2022', 70.00, '', 1, '2022-09-23 08:27:54', 0, NULL, 0, NULL, 1),
(13161, 10310, '5', 'JNTU Anantapur', '', 'Diploma', '2017', 70.00, '', 1, '2022-09-23 08:45:24', 0, NULL, 0, NULL, 1),
(13162, 10310, '1', 'Board Of Secondary Education', '', '', '2014', 70.00, '', 1, '2022-09-23 08:46:20', 0, NULL, 0, NULL, 1),
(13163, 10311, '3', 'SKU', '', 'B.Sc', '2017', 70.00, '', 1, '2022-09-23 08:50:59', 1, '2022-09-23 08:51:10', 0, NULL, 1),
(13164, 10311, '1', 'BSE', '', '', '2009', 82.00, '', 1, '2022-09-23 08:51:26', 0, NULL, 0, NULL, 1),
(13165, 10311, '2', 'IBE', '', '', '2011', 70.00, '', 1, '2022-09-23 08:51:49', 0, NULL, 0, NULL, 1),
(13166, 10317, '3', 'Stella maris college ', '', 'B.com', '2019', 76.00, '', 1, '2022-09-23 11:49:21', 0, NULL, 0, NULL, 1),
(13167, 10320, '3', 'Jawaharlal Nehru technological University of anantapur ', '', 'btech', '2019', 70.00, '', 1, '2022-09-24 09:39:06', 0, NULL, 0, NULL, 1),
(13168, 10321, '3', 'Periyar university ', '', 'BCA', '2021', 75.00, '', 1, '2022-09-24 09:48:40', 0, NULL, 0, NULL, 1),
(13169, 10319, '3', 'Guwahati University ', '', 'B.com ', '2016', 69.00, '', 1, '2022-09-24 11:16:04', 0, NULL, 0, NULL, 1),
(13170, 10319, '1', 'CBSC', '', 'B. Com', '2013', 71.00, '', 1, '2022-09-24 11:17:16', 0, NULL, 0, NULL, 1),
(13171, 10319, '2', 'Cbsc', '', '', '2011', 72.00, '', 1, '2022-09-24 11:17:58', 0, NULL, 0, NULL, 1),
(13172, 10322, '4', 'Thiruvalluvar University ', '', 'MSc IT', '2022', 81.00, '', 1, '2022-09-24 11:20:55', 0, NULL, 0, NULL, 1),
(13173, 10323, '2', 'State', '', '', '2012', 80.00, '', 1, '2022-09-24 11:21:20', 0, NULL, 0, NULL, 1),
(13174, 10323, '5', 'Oum malaysia', '', 'Hotel Management', '2017', 80.00, '', 1, '2022-09-24 11:21:43', 0, NULL, 0, NULL, 1),
(13175, 10324, '3', 'University of  Madras ', '', 'B.com ISM', '2021', 69.00, '', 1, '2022-09-24 12:24:08', 0, NULL, 0, NULL, 1),
(13176, 10326, '4', 'Madras University ', '', 'B com a/F', '2022', 75.00, '', 1, '2022-09-24 12:27:18', 0, NULL, 0, NULL, 1),
(13177, 10325, '1', 'State board ', '', 'BSC (mathematics)', '2017', 93.60, '', 1, '2022-09-24 12:29:31', 1, '2022-09-24 12:31:16', 0, NULL, 1),
(13178, 10325, '2', 'State board ', '', '', '2019', 65.30, '', 1, '2022-09-24 12:30:27', 0, NULL, 0, NULL, 1),
(13179, 10325, '3', 'University of Madras ', '', 'BSC(Mathematics)', '2022', 72.10, '', 1, '2022-09-24 12:31:58', 0, NULL, 0, NULL, 1),
(13180, 10328, '3', 'the new college', '', 'b.com', '2022', 70.00, '', 1, '2022-09-24 12:32:54', 0, NULL, 0, NULL, 1),
(13181, 10327, '3', 'Thiruthangal Nadar College', '', 'BCOM', '2021', 80.00, '', 85, '2022-09-24 12:48:08', 0, NULL, 0, NULL, 1),
(13182, 10332, '3', 'ANU University ', '', 'BSC (MPCS)', '2019', 72.00, '', 1, '2022-09-24 02:41:23', 0, NULL, 0, NULL, 1),
(13183, 10333, '3', 'pvsrm university', '', '', '2019', 7.20, '', 1, '2022-09-24 02:43:33', 1, '2022-09-24 02:44:54', 0, NULL, 0),
(13184, 10333, '3', 'pvsrm university', '', '', '2019', 7.20, '', 1, '2022-09-24 02:45:39', 0, NULL, 0, NULL, 1),
(13185, 10334, '4', 'Pondicherry University ', '', 'M.B.A', '2019', 65.00, '', 1, '2022-09-24 02:57:24', 0, NULL, 0, NULL, 1),
(13186, 10330, '3', 'Kcs kasi nadar', '', 'Bba', '2021', 80.00, '', 1, '2022-09-24 03:03:20', 0, NULL, 0, NULL, 1),
(13187, 10331, '3', 'Bharathi women\'s arts college ', '', 'BBA', '2022', 80.00, '', 1, '2022-09-24 03:11:35', 0, NULL, 0, NULL, 1),
(13188, 10337, '3', 'Meenakshi college of engineering', '', 'B.E', '2022', 76.00, '', 1, '2022-09-24 06:17:00', 0, NULL, 0, NULL, 1),
(13189, 10340, '3', 'Loyola college', '', 'Bcom', '2016', 60.00, '', 1, '2022-09-24 07:02:38', 0, NULL, 0, NULL, 1),
(13190, 10341, '5', 'Government ITI', '', 'ITI', '2013', 75.00, '', 1, '2022-09-24 10:43:57', 0, NULL, 0, NULL, 1),
(13191, 10341, '1', 'State Board', '', '', '2009', 53.00, '', 1, '2022-09-24 10:44:30', 0, NULL, 0, NULL, 1),
(13192, 8510, '3', 'Bharathidhasan University', '', 'BSC (HM&CS) ', '2019', 68.00, '', 1, '2022-09-26 11:42:19', 0, NULL, 0, NULL, 1),
(13193, 10345, '3', 'Anna university ', '', 'BE(CSE)', '2019', 6.45, '', 1, '2022-09-26 11:44:08', 0, NULL, 0, NULL, 1),
(13194, 10346, '4', 'Anna university', '', 'MBA', '2022', 58.00, '', 1, '2022-09-26 11:45:59', 0, NULL, 0, NULL, 1),
(13195, 10347, '2', 'state board', '', '', '2017', 76.00, '', 1, '2022-09-26 11:46:04', 0, NULL, 0, NULL, 1),
(13196, 10347, '3', 'madras university', '', 'ba', '2020', 80.00, '', 1, '2022-09-26 11:46:26', 0, NULL, 0, NULL, 1),
(13197, 10346, '3', 'Thiruvalluvar University', '', 'BCA', '2020', 70.00, '', 1, '2022-09-26 11:46:35', 0, NULL, 0, NULL, 1),
(13198, 10348, '2', 'state board', '', '', '2017', 65.00, '', 1, '2022-09-26 11:48:49', 0, NULL, 0, NULL, 1),
(13199, 10348, '3', 'madras university', '', 'ba eco', '2020', 67.00, '', 1, '2022-09-26 11:49:14', 0, NULL, 0, NULL, 1),
(13200, 10349, '3', 'Bharathiyar', '', 'Bcom', '2022', 58.00, '', 1, '2022-09-26 12:08:41', 0, NULL, 0, NULL, 1),
(13201, 10351, '3', 'Madras', '', 'B.com', '2020', 65.00, '', 1, '2022-09-26 12:11:58', 0, NULL, 0, NULL, 1),
(13202, 10350, '3', 'Madras', '', 'B.com', '2022', 84.00, '', 1, '2022-09-26 12:17:46', 0, NULL, 0, NULL, 1),
(13203, 10352, '3', 'Bharathidasan university', '', 'B. Com', '2020', 63.00, '', 1, '2022-09-26 12:43:54', 0, NULL, 0, NULL, 1),
(13204, 10353, '3', 'Madras university', '', 'B.A History', '2021', 65.00, '', 1, '2022-09-26 01:07:59', 0, NULL, 0, NULL, 1),
(13205, 10354, '5', 'DOTE', '', 'Diploma in electrical and electronics engineering ', '2022', 62.00, '', 1, '2022-09-26 01:24:14', 0, NULL, 0, NULL, 1),
(13206, 10355, '4', 'Ethiraj college for women', '', 'MBA', '2022', 76.50, '', 1, '2022-09-26 01:50:45', 0, NULL, 0, NULL, 1),
(13207, 10355, '3', 'Madras university', '', 'Bcom', '2019', 68.00, '', 1, '2022-09-26 01:51:12', 0, NULL, 0, NULL, 1),
(13208, 10355, '2', 'State board', '', '', '2016', 83.00, '', 1, '2022-09-26 01:51:32', 0, NULL, 0, NULL, 1),
(13209, 10355, '1', 'State Board', '', '', '2014', 82.40, '', 1, '2022-09-26 01:51:53', 0, NULL, 0, NULL, 1),
(13210, 10356, '2', 'Anna university', '', '', '2016', 73.00, '', 1, '2022-09-26 01:59:12', 0, NULL, 0, NULL, 1),
(13211, 10358, '3', 'Government arts college for men nandanam', '', 'B A History', '2018', 58.00, '', 1, '2022-09-26 02:25:08', 0, NULL, 0, NULL, 1),
(13212, 10356, '4', 'Anna University', '', 'MBA', '2016', 73.00, '', 1, '2022-09-26 03:32:13', 0, NULL, 0, NULL, 1),
(13213, 10344, '3', 'SRM University ', '', 'bCA', '2022', 7.16, '', 1, '2022-09-26 04:27:26', 0, NULL, 0, NULL, 1),
(13214, 10360, '3', 'Sri venkateswara college of engineering and technology ', '', 'BTECH', '2018', 6.47, '', 1, '2022-09-26 05:21:45', 0, NULL, 0, NULL, 1),
(13215, 10362, '3', 'Karpagam college of engineering ', '', 'BE', '2020', 72.80, '', 1, '2022-09-26 07:03:53', 0, NULL, 0, NULL, 1),
(13216, 10362, '5', 'Sankar polytechnic college ', '', 'Diploma', '2015', 59.71, '', 1, '2022-09-26 07:04:27', 0, NULL, 0, NULL, 1),
(13217, 10362, '1', 'Little flower model school ', '', '', '2012', 70.00, '', 1, '2022-09-26 07:04:53', 0, NULL, 0, NULL, 1),
(13218, 10366, '3', 'Manonmaniam sundaranar university', '', 'B.sc Computer science ', '2016', 60.00, '', 1, '2022-09-27 07:25:29', 0, NULL, 0, NULL, 1),
(13219, 10342, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2020', 7.30, '', 1, '2022-09-27 10:08:04', 0, NULL, 0, NULL, 1),
(13220, 10368, '3', 'Psg college of Arts and science, coimbatore', '', 'B Voc Food Processing Technology', '2019', 83.00, '', 1, '2022-09-27 10:35:18', 0, NULL, 0, NULL, 1),
(13221, 10368, '2', 'Erode Hindu kalvi Nilayam, erode', '', '', '2016', 84.00, '', 1, '2022-09-27 10:36:20', 0, NULL, 0, NULL, 1),
(13222, 10368, '1', 'Erode Hindu kalvi Nilayam Mat. Hr. Sec. School', '', '', '2014', 97.00, '', 1, '2022-09-27 10:37:04', 0, NULL, 0, NULL, 1),
(13223, 10369, '3', 'University of Madras ', '', 'BBA (BUSINESS ADMINISTRATION)', '2022', 60.00, '', 1, '2022-09-27 10:42:51', 0, NULL, 0, NULL, 1),
(13224, 10369, '1', 'State Board', '', '', '2017', 82.00, '', 1, '2022-09-27 10:44:27', 0, NULL, 0, NULL, 1),
(13225, 10370, '3', 'Bharathiyaar University', '', 'B.com(cS)', '2022', 57.50, '', 1, '2022-09-27 11:39:24', 0, NULL, 0, NULL, 1),
(13226, 10371, '4', 'Vellore institute of technology', '', 'Data science', '2022', 76.00, '', 1, '2022-09-27 11:45:59', 0, NULL, 0, NULL, 1),
(13227, 10373, '2', 'state board', '', '', '2007', 67.00, '', 1, '2022-09-27 11:52:33', 0, NULL, 0, NULL, 1),
(13228, 10373, '3', 'madras university', '', 'bca', '2012', 69.00, '', 1, '2022-09-27 11:53:09', 0, NULL, 0, NULL, 1),
(13229, 10357, '3', 'Madras University ', '', 'Bsc', '2019', 80.00, '', 1, '2022-09-27 11:57:47', 0, NULL, 0, NULL, 1),
(13230, 10372, '4', 'Autonomous ', '', '', '2022', 66.00, '', 1, '2022-09-27 12:09:58', 0, NULL, 0, NULL, 1),
(13231, 10372, '4', 'Autonomous ', '', 'BA', '2022', 66.00, '', 1, '2022-09-27 12:10:52', 0, NULL, 0, NULL, 1),
(13232, 10372, '4', 'Autonomous ', '', 'BA.Corporate economics ', '2022', 66.00, '', 1, '2022-09-27 12:11:56', 0, NULL, 0, NULL, 1),
(13233, 10375, '3', 'Madras University ', '', 'BCA', '2021', 73.00, '', 1, '2022-09-27 12:17:09', 0, NULL, 0, NULL, 1),
(13234, 10376, '3', 'Thiruvallur University ', '', 'Bcom', '2021', 80.00, '', 1, '2022-09-27 12:45:11', 0, NULL, 0, NULL, 1),
(13235, 10379, '4', 'jntuh', '', 'b.tech', '2012', 63.00, '', 1, '2022-09-27 01:47:07', 0, NULL, 0, NULL, 1),
(13236, 10380, '4', 'Sk university', '', 'B com (computers) ', '2015', 72.00, '', 1, '2022-09-27 01:48:18', 0, NULL, 0, NULL, 1),
(13237, 10381, '3', 'Anna university ', '', 'B.E Electrical and Electronics Engineering ', '2013', 70.00, '', 1, '2022-09-27 03:28:07', 0, NULL, 0, NULL, 1),
(13238, 10385, '4', 'anna university', '', 'b e ', '2019', 79.00, '', 1, '2022-09-27 06:56:54', 0, NULL, 0, NULL, 1),
(13239, 10384, '3', 'Madras university', '', 'BCA', '2021', 89.00, '', 1, '2022-09-27 06:58:50', 0, NULL, 0, NULL, 1),
(13240, 10388, '3', 'Alagappa', '', 'Bsc', '2022', 70.00, '', 1, '2022-09-27 10:57:49', 0, NULL, 0, NULL, 1),
(13241, 10390, '3', 'Madras University', '', 'B.com', '2019', 58.00, '', 1, '2022-09-28 10:11:43', 0, NULL, 0, NULL, 1),
(13242, 10391, '4', 'Madras University ', '', 'MBA ', '2022', 85.00, '', 1, '2022-09-28 10:39:59', 0, NULL, 0, NULL, 1),
(13243, 10382, '3', 'Manonmaniyam Sundaranar University', '', 'B.Com with Computer Application ', '2017', 62.00, '', 1, '2022-09-28 10:41:00', 0, NULL, 0, NULL, 1),
(13244, 10393, '3', 'University of Madras', '', 'BBA', '2020', 75.00, '', 1, '2022-09-28 11:10:52', 0, NULL, 0, NULL, 1),
(13245, 10394, '3', 'anna university', '', 'b.tech information technology', '2018', 6.50, '', 1, '2022-09-28 11:14:17', 0, NULL, 0, NULL, 1),
(13246, 10394, '2', 'stateboard', '', '', '2014', 67.00, '', 1, '2022-09-28 11:16:47', 0, NULL, 0, NULL, 1),
(13247, 10394, '1', 'stateboard', '', '', '2011', 75.00, '', 1, '2022-09-28 11:17:33', 0, NULL, 0, NULL, 1),
(13248, 10395, '4', 'madaras University ', '', 'mba hr', '2020', 80.00, '', 1, '2022-09-28 12:00:00', 0, NULL, 0, NULL, 1),
(13249, 10398, '3', 'University of madras', '', 'B.com', '2011', 85.00, '', 1, '2022-09-28 12:09:07', 0, NULL, 0, NULL, 1),
(13250, 10397, '3', 'Anna University ', '', 'BE', '2019', 65.00, '', 1, '2022-09-28 12:19:04', 0, NULL, 0, NULL, 1),
(13251, 10399, '3', 'Cipet', '', 'B.E', '2017', 6.23, '', 1, '2022-09-28 01:07:23', 0, NULL, 0, NULL, 1),
(13252, 10400, '3', 'CIPET', '', 'B.E. manufacturing engineering', '2016', 61.10, '', 1, '2022-09-28 01:09:12', 0, NULL, 0, NULL, 1),
(13253, 10401, '3', 'Madras University ', '', 'BCA', '2017', 71.00, '', 1, '2022-09-28 01:58:30', 0, NULL, 0, NULL, 1),
(13254, 10401, '2', 'Donbosco matriculation Higher secondary school ', '', '', '2013', 78.00, '', 1, '2022-09-28 01:59:03', 0, NULL, 0, NULL, 1),
(13255, 10401, '1', 'Don Bosco Matriculation Higher secondary School ', '', '', '2011', 63.00, '', 1, '2022-09-28 01:59:21', 0, NULL, 0, NULL, 1),
(13256, 10396, '3', 'Jayaraj annapackiam college ', '', 'Be', '2018', 64.00, '', 1, '2022-09-28 02:21:37', 0, NULL, 0, NULL, 1),
(13257, 10402, '3', 'Madras university ', '', 'Bcom (Accounting and Finance)', '2021', 84.00, '', 1, '2022-09-28 02:39:30', 0, NULL, 0, NULL, 1),
(13258, 10403, '3', 'University of madras ', '', 'B.com (Accounting and Finance)', '2021', 82.00, '', 1, '2022-09-28 02:45:03', 0, NULL, 0, NULL, 1),
(13259, 10406, '3', 'Madras University', '', 'Ug', '2021', 60.00, '', 1, '2022-09-28 04:29:46', 0, NULL, 0, NULL, 1),
(13260, 10408, '3', 'Velalar college of engineering and Technology', '', 'EEE', '2021', 79.00, '', 1, '2022-09-28 06:29:02', 0, NULL, 0, NULL, 1),
(13261, 10410, '1', 'Board', '', '', '2014', 95.00, '', 1, '2022-09-28 10:52:19', 0, NULL, 0, NULL, 1),
(13262, 10410, '2', 'Board', '', '', '2016', 73.00, '', 1, '2022-09-28 10:52:59', 0, NULL, 0, NULL, 1),
(13263, 10410, '3', 'University', '', 'BE. Computer Science Engineering', '2020', 78.00, '', 1, '2022-09-28 10:53:49', 0, NULL, 0, NULL, 1),
(13264, 10412, '4', 'Madras University ', '', 'MBA ', '2022', 70.00, '', 1, '2022-09-29 02:32:33', 0, NULL, 0, NULL, 1),
(13265, 10412, '3', 'University of Madras ', '', 'B com', '2019', 66.00, '', 1, '2022-09-29 02:33:14', 0, NULL, 0, NULL, 1),
(13266, 10392, '2', 'state board', '', '', '2014', 53.00, '', 1, '2022-09-29 09:40:44', 0, NULL, 0, NULL, 1),
(13267, 10392, '3', 'madras university', '', 'bsc maths', '2017', 60.00, '', 1, '2022-09-29 09:41:16', 0, NULL, 0, NULL, 1),
(13268, 10413, '1', 'state board', '', '', '2013', 67.00, '', 1, '2022-09-29 09:45:27', 0, NULL, 0, NULL, 1),
(13269, 10413, '5', 'dote', '', 'diploma in ece', '2016', 45.00, '', 1, '2022-09-29 09:46:01', 0, NULL, 0, NULL, 1),
(13270, 10414, '1', 'Mount park hr sec school', '', '', '2014', 89.00, '', 1, '2022-09-29 09:58:54', 0, NULL, 0, NULL, 1),
(13271, 10414, '2', 'Mount park hr sec school', '', '', '2016', 76.00, '', 1, '2022-09-29 09:59:13', 0, NULL, 0, NULL, 1),
(13272, 10415, '2', 'state board', '', '', '2011', 85.00, '', 1, '2022-09-29 10:10:42', 0, NULL, 0, NULL, 1),
(13273, 10415, '3', 'anna university', '', 'be eee', '2015', 72.00, '', 1, '2022-09-29 10:11:05', 0, NULL, 0, NULL, 1),
(13274, 10417, '3', 'Madras University ', '', 'Bsc.Electronics Communication and science ', '2022', 82.00, '', 1, '2022-09-29 10:24:34', 0, NULL, 0, NULL, 1),
(13275, 10419, '3', 'Anna University ', '', 'BE', '2022', 83.00, '', 1, '2022-09-29 10:35:47', 0, NULL, 0, NULL, 1),
(13276, 10418, '3', 'Anna university ', '', 'B.E-Electronics and Communication engineering ', '2022', 84.00, '', 1, '2022-09-29 10:41:50', 0, NULL, 0, NULL, 1),
(13277, 10421, '3', 'Anna university', '', 'BE', '2022', 7.65, '', 1, '2022-09-29 10:50:50', 0, NULL, 0, NULL, 1),
(13278, 10422, '3', 'Pondicherry university', '', 'B. Sc(computer science) ', '2020', 67.00, '', 1, '2022-09-29 11:07:40', 0, NULL, 0, NULL, 1),
(13279, 10423, '3', 'Sri Ramakrishna Engineering College ', '', 'B.Tech-IT', '2022', 6.29, '', 1, '2022-09-29 11:24:02', 0, NULL, 0, NULL, 1),
(13280, 10424, '3', 'Madras University', '', 'Bsc', '2022', 76.00, '', 1, '2022-09-29 11:28:36', 0, NULL, 0, NULL, 1),
(13281, 10420, '4', 'Annamalai university', '', 'M B A', '2021', 75.00, '', 1, '2022-09-29 11:29:46', 1, '2022-09-29 11:30:49', 0, NULL, 0),
(13282, 10420, '4', 'Annamalai university', '', 'MBA', '2021', 75.00, '', 1, '2022-09-29 11:30:34', 0, NULL, 0, NULL, 1),
(13283, 10426, '5', 'Government polytechnic college valangaiman', '', 'No', '2022', 90.00, '', 1, '2022-09-29 11:30:41', 0, NULL, 0, NULL, 1),
(13284, 10420, '3', 'MRG Arts college', '', 'B com', '2019', 60.00, '', 1, '2022-09-29 11:31:34', 0, NULL, 0, NULL, 1),
(13285, 10427, '4', 'Bharathidasan University Trichy ', '', 'MCA', '2020', 75.00, '', 1, '2022-09-29 11:33:11', 0, NULL, 0, NULL, 1),
(13286, 10428, '4', 'Madurai kamaraj university ', '', 'Master of computer applications ', '2020', 72.00, '', 1, '2022-09-29 11:58:08', 0, NULL, 0, NULL, 1),
(13287, 10428, '4', 'University ', '', 'Master of computer applications ', '2020', 72.00, '', 1, '2022-09-29 11:58:37', 0, NULL, 0, NULL, 1),
(13288, 10429, '1', 'State Board', '', '', '2015', 94.00, '', 1, '2022-09-29 12:11:57', 0, NULL, 0, NULL, 1),
(13289, 10429, '2', 'State Board', '', '', '2017', 90.50, '', 1, '2022-09-29 12:12:17', 0, NULL, 0, NULL, 1),
(13290, 10429, '3', 'MANONMANIYAM SUNDARANAR UNIVERSITY', '', 'B.SC(COMPUTER SCIENCE)', '2020', 84.00, '', 1, '2022-09-29 12:13:45', 0, NULL, 0, NULL, 1),
(13291, 10429, '4', 'MANONMANIYAM SUNDARANAR UNIVERSITY', '', 'MCA', '2022', 87.00, '', 1, '2022-09-29 12:15:42', 0, NULL, 0, NULL, 1),
(13292, 10430, '3', 'Anna university', '', 'B. Tech. IT', '2021', 7.89, '', 1, '2022-09-29 12:50:08', 0, NULL, 0, NULL, 1),
(13293, 10431, '3', 'Madras university', '', 'Bsc computer science', '2017', 50.00, '', 1, '2022-09-29 03:29:09', 0, NULL, 0, NULL, 1),
(13294, 10431, '2', 'State board', '', '', '2014', 52.00, '', 1, '2022-09-29 03:30:04', 0, NULL, 0, NULL, 1),
(13295, 10431, '1', 'State board', '', '', '2012', 76.00, '', 1, '2022-09-29 03:30:37', 0, NULL, 0, NULL, 1),
(13296, 10433, '4', 'St. Xavier\'s Catholic College of Engineering ', '', 'MCA', '2022', 8.00, '', 1, '2022-09-29 09:03:45', 0, NULL, 0, NULL, 1),
(13297, 10433, '3', 'St. Jerome\'s college of arts and science ', '', 'BCA', '2020', 7.00, '', 1, '2022-09-29 09:00:55', 0, NULL, 0, NULL, 1),
(13298, 10434, '4', 'St. Xavier\'s Catholic College of Engineering ', '', 'MCA', '2022', 80.00, '', 1, '2022-09-29 09:07:25', 0, NULL, 0, NULL, 1),
(13299, 10434, '3', 'Noorul islam college of arts and science', '', 'Bachelor\'s of computer science', '2020', 75.00, '', 1, '2022-09-29 09:08:56', 0, NULL, 0, NULL, 1),
(13300, 10435, '4', 'VIT University', '', 'MCA', '2019', 76.70, '', 1, '2022-09-30 10:05:05', 0, NULL, 0, NULL, 1),
(13301, 10435, '3', 'VIT University', '', 'BCA', '2017', 81.20, '', 1, '2022-09-30 10:05:59', 0, NULL, 0, NULL, 1),
(13302, 10436, '3', 'Thiruninravur University ', '', 'Bsc', '2020', 70.00, '', 1, '2022-09-30 11:39:27', 0, NULL, 0, NULL, 1),
(13303, 10437, '3', 'Anna university ', '', 'Be', '2022', 70.00, '', 1, '2022-09-30 12:39:53', 0, NULL, 0, NULL, 1),
(13304, 10439, '3', 'Tiruvalluvar', '', 'B. Sc', '2022', 71.00, '', 1, '2022-09-30 01:49:03', 0, NULL, 0, NULL, 1),
(13305, 10438, '3', 'Thiruvalluvar university', '', 'Bsc computer science', '2022', 70.00, '', 1, '2022-09-30 01:49:21', 0, NULL, 0, NULL, 1),
(13306, 10440, '1', 'State board ', '', '', '2015', 91.60, '', 1, '2022-09-30 02:53:03', 0, NULL, 0, NULL, 1),
(13307, 10440, '2', 'State board ', '', '', '2017', 82.60, '', 1, '2022-09-30 02:53:24', 0, NULL, 0, NULL, 1),
(13308, 10440, '3', 'Anna University ', '', 'B.E. Computer Science and Engineering ', '2021', 73.00, '', 1, '2022-09-30 02:54:22', 0, NULL, 0, NULL, 1),
(13309, 10441, '3', 'anna University', '', 'bE', '2017', 68.00, '', 1, '2022-09-30 03:07:28', 0, NULL, 0, NULL, 1),
(13310, 10442, '3', 'Anna university ', '', 'B. E', '2016', 64.00, '', 1, '2022-09-30 07:37:49', 0, NULL, 0, NULL, 1),
(13311, 10445, '3', 'Bharathidhasan University ', '', 'Bsc computer science ', '2021', 79.90, '', 1, '2022-10-01 09:56:55', 0, NULL, 0, NULL, 1),
(13312, 10447, '3', 'Calicut university', '', 'BSC computerscience', '2021', 60.00, '', 1, '2022-10-01 10:45:46', 0, NULL, 0, NULL, 1),
(13313, 10446, '3', 'ANNA UNIVERSITY ', '', 'B.E', '2021', 76.00, '', 1, '2022-10-01 11:05:47', 0, NULL, 0, NULL, 1),
(13314, 10448, '3', 'Mgr university', '', 'B.com', '2017', 60.00, '', 1, '2022-10-01 11:24:53', 0, NULL, 0, NULL, 1),
(13315, 10449, '3', 'State board ', '', 'B. E', '2021', 70.00, '', 1, '2022-10-01 12:41:35', 0, NULL, 0, NULL, 1),
(13316, 10450, '4', 'icfai', '', 'mca', '2013', 72.00, '', 1, '2022-10-01 02:47:45', 0, NULL, 0, NULL, 1),
(13317, 10451, '3', 'Sri Vidya Mandir arts and science College', '', 'BCA', '2017', 82.00, '', 1, '2022-10-01 03:09:51', 0, NULL, 0, NULL, 1),
(13318, 10452, '3', 'Madras University ', '', 'B.Sc(Computer Science)', '2022', 79.00, '', 1, '2022-10-01 07:24:16', 0, NULL, 0, NULL, 1),
(13319, 10455, '3', 'The new College ', '', 'Bsc ( Computer Science )', '2022', 81.00, '', 1, '2022-10-03 10:13:43', 0, NULL, 0, NULL, 1),
(13320, 10456, '3', 'Anna university ', '', 'BE', '2020', 66.00, '', 1, '2022-10-03 10:24:43', 0, NULL, 0, NULL, 1),
(13321, 10457, '3', 'Anna university', '', 'BE', '2019', 67.00, '', 1, '2022-10-03 10:25:17', 0, NULL, 0, NULL, 1),
(13322, 10458, '3', 'Sengunthar Arts and Science College ', '', 'BCA', '2021', 74.28, '', 1, '2022-10-03 10:41:35', 0, NULL, 0, NULL, 1),
(13323, 10459, '4', 'A.V.V.M. Sri Pushpam College,bharathidasan university', '', 'M.SC Computer Science ', '2022', 81.00, '', 1, '2022-10-03 01:40:02', 0, NULL, 0, NULL, 1),
(13324, 10459, '3', 'AVVMSPC,THANJAVUR bharathidasan university', '', 'Bsc', '2020', 70.00, '', 1, '2022-10-03 01:41:56', 0, NULL, 0, NULL, 1),
(13325, 10459, '1', 'Sri bharathidasan Matric Higher Secondary school ', '', '', '2017', 79.00, '', 1, '2022-10-03 01:45:07', 0, NULL, 0, NULL, 1),
(13326, 10459, '2', 'Sri Bharathidasan Matric Higher Secondary School ', '', '', '2015', 60.00, '', 1, '2022-10-03 01:46:02', 0, NULL, 0, NULL, 1),
(13327, 10365, '3', 'Bharathidasan University ', '', 'B. Com', '2022', 68.00, '', 1, '2022-10-03 05:26:02', 0, NULL, 0, NULL, 1),
(13328, 10460, '3', 'Bharathidasan University', '', 'B. COM', '2022', 66.00, '', 1, '2022-10-03 05:42:27', 0, NULL, 0, NULL, 1),
(13329, 10461, '3', 'SCET', '', 'Civil engineer ', '2018', 64.00, '', 1, '2022-10-04 01:16:02', 0, NULL, 0, NULL, 1),
(13330, 10462, '3', 'university', '', 'b. a. economics', '2022', 72.00, '', 1, '2022-10-04 04:38:57', 0, NULL, 0, NULL, 1),
(13331, 10463, '3', 'Alagappa University', '', 'B. sc computer science', '2022', 75.00, '', 1, '2022-10-05 09:25:43', 0, NULL, 0, NULL, 1),
(13332, 10464, '3', 'SRM valliammai engineering College ', '', 'B.e', '2022', 7.86, '', 1, '2022-10-05 09:41:14', 0, NULL, 0, NULL, 1),
(13333, 10465, '3', 'Thrivalluvar University', '', 'BCA', '2022', 82.00, '', 1, '2022-10-05 11:33:15', 0, NULL, 0, NULL, 1),
(13334, 10466, '3', 'Pondicherry University ', '', 'bCA', '2022', 70.00, '', 1, '2022-10-05 11:35:34', 0, NULL, 0, NULL, 1),
(13335, 10467, '2', 'State board', '', '', '2011', 64.00, '', 1, '2022-10-05 02:05:54', 0, NULL, 0, NULL, 1),
(13336, 10467, '3', 'Anna University ', '', 'Be', '2015', 65.00, '', 1, '2022-10-05 02:06:17', 0, NULL, 0, NULL, 1),
(13337, 10469, '3', 'New prince', '', 'B. E', '2020', 6.62, '', 1, '2022-10-05 06:30:05', 0, NULL, 0, NULL, 1),
(13338, 10469, '2', 'State board', '', '', '2016', 69.00, '', 1, '2022-10-05 06:30:34', 0, NULL, 0, NULL, 1),
(13339, 10469, '1', 'State board', '', '', '2014', 80.00, '', 1, '2022-10-05 06:31:19', 0, NULL, 0, NULL, 1),
(13340, 10468, '3', 'anna university', '', 'b.tech-it', '2020', 67.30, '', 1, '2022-10-05 08:26:58', 0, NULL, 0, NULL, 1),
(13341, 10468, '2', 'board', '', '', '2016', 59.00, '', 1, '2022-10-05 08:29:04', 0, NULL, 0, NULL, 1),
(13342, 10468, '1', 'board', '', '', '2014', 74.00, '', 1, '2022-10-05 08:30:09', 0, NULL, 0, NULL, 1),
(13343, 10470, '4', 'Bharathidasan University', '', 'Master Of Science(Computer Science)', '2022', 85.00, '', 1, '2022-10-06 09:31:27', 0, NULL, 0, NULL, 1),
(13344, 10470, '3', 'Bharathidasan University ', '', 'Bachelor Of Science(Computer Science)', '2020', 90.00, '', 1, '2022-10-06 09:32:19', 0, NULL, 0, NULL, 1),
(13345, 10471, '3', 'Anna University ', '', 'B.E., CSE', '2020', 70.00, '', 1, '2022-10-06 09:51:13', 0, NULL, 0, NULL, 1),
(13346, 10471, '2', 'Stateboard', '', '', '2016', 77.00, '', 1, '2022-10-06 09:51:48', 0, NULL, 0, NULL, 1),
(13347, 10471, '1', 'Stateboard', '', '', '2014', 86.80, '', 1, '2022-10-06 09:52:13', 0, NULL, 0, NULL, 1),
(13348, 10472, '4', 'Bharathidasan University', '', 'MCA', '2019', 78.00, '', 1, '2022-10-06 10:38:50', 1, '2022-10-06 10:40:02', 0, NULL, 1),
(13349, 10472, '3', 'Bharathidasan university', '', 'BCA', '2022', 74.00, '', 1, '2022-10-06 10:39:12', 0, NULL, 0, NULL, 1),
(13350, 10472, '2', 'Tamilnadu State board', '', '', '2016', 65.00, '', 1, '2022-10-06 10:39:50', 0, NULL, 0, NULL, 1),
(13351, 10472, '1', 'Tamilnadu state board', '', '', '2014', 86.00, '', 1, '2022-10-06 10:40:54', 0, NULL, 0, NULL, 1),
(13352, 10473, '3', 'Anna university', '', 'BE', '2021', 70.00, '', 1, '2022-10-06 11:04:46', 0, NULL, 0, NULL, 1),
(13353, 10475, '3', 'Alagappa University ', '', 'B.Voc.,(Software Development)', '2022', 96.56, '', 1, '2022-10-06 11:45:11', 0, NULL, 0, NULL, 1),
(13354, 10476, '2', 'Jai Gopal garodia girls higher secondary school ', '', '', '2017', 60.00, '', 1, '2022-10-06 11:51:18', 0, NULL, 0, NULL, 1),
(13355, 10474, '3', 'Madras University ', '', 'Bsc', '2021', 81.03, '', 1, '2022-10-06 12:04:55', 0, NULL, 0, NULL, 1),
(13356, 10477, '3', 'Annauniversity', '', 'BE', '2021', 76.00, '', 1, '2022-10-06 12:49:58', 0, NULL, 0, NULL, 1),
(13357, 10478, '4', 'Medras University', '', 'Msc cst', '2022', 72.00, '', 1, '2022-10-06 01:16:55', 0, NULL, 0, NULL, 1),
(13358, 10480, '3', 'University ', '', 'BSc electronics ', '2022', 83.00, '', 1, '2022-10-06 01:20:40', 0, NULL, 0, NULL, 1),
(13359, 10481, '3', 'Anna University ', '', 'BE', '2018', 6.58, '', 1, '2022-10-06 01:42:24', 0, NULL, 0, NULL, 1),
(13360, 10482, '3', 'Anna university ', '', 'B.TECH', '2022', 7.33, '', 1, '2022-10-06 01:45:29', 0, NULL, 0, NULL, 1),
(13361, 10482, '1', 'State board ', '', '', '2016', 81.00, '', 1, '2022-10-06 01:46:10', 0, NULL, 0, NULL, 1),
(13362, 10482, '2', 'State board ', '', '', '2018', 53.00, '', 1, '2022-10-06 01:46:30', 0, NULL, 0, NULL, 1),
(13363, 10483, '3', 'Panimalar Institute of Technology', '', 'BE - Mechanical Engineering', '2022', 81.40, '', 1, '2022-10-06 02:38:41', 1, '2022-10-06 02:39:58', 0, NULL, 1),
(13364, 10484, '3', 'Panimalar Instead of Technology', '', 'BE - Mechanical Engineering', '2022', 81.40, '', 1, '2022-10-06 03:07:43', 0, NULL, 0, NULL, 1),
(13365, 10489, '2', 'state board', '', '', '2018', 76.00, '', 1, '2022-10-07 09:43:29', 0, NULL, 0, NULL, 1),
(13366, 10489, '3', 'anna university', '', 'be', '2022', 82.00, '', 1, '2022-10-07 09:43:48', 0, NULL, 0, NULL, 1),
(13367, 10488, '3', 'BHARATHIAR university', '', 'BCOM', '2020', 76.50, '', 1, '2022-10-07 09:44:34', 0, NULL, 0, NULL, 1),
(13368, 10490, '2', 'state board', '', '', '2019', 77.00, '', 1, '2022-10-07 09:47:19', 0, NULL, 0, NULL, 1),
(13369, 10490, '3', 'madras university', '', 'bsc', '2022', 75.00, '', 1, '2022-10-07 09:47:43', 0, NULL, 0, NULL, 1),
(13370, 10491, '2', 'state board', '', '', '2019', 63.00, '', 1, '2022-10-07 09:49:51', 0, NULL, 0, NULL, 1),
(13371, 10487, '4', 'Bharathidasan University ', '', 'MCA', '2022', 86.00, '', 1, '2022-10-07 09:50:07', 0, NULL, 0, NULL, 1),
(13372, 10491, '3', 'madras university', '', 'bsc', '2022', 81.00, '', 1, '2022-10-07 09:50:09', 0, NULL, 0, NULL, 1),
(13373, 10487, '4', 'Bharathidasan ', '', 'MCA', '2022', 86.00, '', 1, '2022-10-07 09:51:00', 0, NULL, 0, NULL, 1),
(13374, 10492, '2', 'state board', '', '', '2019', 60.00, '', 1, '2022-10-07 09:54:39', 0, NULL, 0, NULL, 1),
(13375, 10492, '3', 'madras university', '', 'bcom corp', '2022', 66.00, '', 1, '2022-10-07 09:55:01', 0, NULL, 0, NULL, 1),
(13376, 10444, '1', 'SRM higher secondary school', '', '', '2014', 70.00, '', 1, '2022-10-07 10:06:42', 0, NULL, 0, NULL, 1),
(13377, 10444, '2', 'Jayam metric higher secondary school', '', '', '2019', 70.00, '', 1, '2022-10-07 10:07:32', 0, NULL, 0, NULL, 1),
(13378, 10444, '4', 'Bharathiyar arts and science college for women\'s', '', 'Msc cs', '2022', 70.00, '', 1, '2022-10-07 10:08:26', 0, NULL, 0, NULL, 1),
(13379, 10485, '3', 'University of madras', '', 'B.com(ism)', '2021', 70.00, '', 1, '2022-10-07 10:21:21', 0, NULL, 0, NULL, 1),
(13380, 10493, '4', 'Anna university ', '', 'MBA', '2021', 85.00, '', 1, '2022-10-07 10:39:12', 0, NULL, 0, NULL, 1),
(13381, 10495, '3', 'Madras University ', '', 'B.Sc', '2022', 50.00, '', 1, '2022-10-07 11:09:52', 0, NULL, 0, NULL, 1),
(13382, 10496, '3', 'Madras University ', '', 'B. Sc', '2022', 50.00, '', 1, '2022-10-07 11:09:57', 0, NULL, 0, NULL, 1),
(13383, 10495, '2', 'State Board', '', '', '2019', 69.00, '', 1, '2022-10-07 11:11:00', 0, NULL, 0, NULL, 1),
(13384, 10496, '1', 'State board ', '', '', '2017', 83.00, '', 1, '2022-10-07 11:11:18', 1, '2022-10-07 11:12:03', 0, NULL, 1),
(13385, 10495, '1', 'State Board ', '', '', '2017', 90.40, '', 1, '2022-10-07 11:11:26', 0, NULL, 0, NULL, 1),
(13386, 10496, '2', 'State board ', '', '', '2019', 66.00, '', 1, '2022-10-07 11:13:05', 0, NULL, 0, NULL, 1),
(13387, 10494, '4', 'Anna University ', '', 'MCA', '2020', 7.90, '', 1, '2022-10-07 11:23:53', 0, NULL, 0, NULL, 1),
(13388, 10497, '4', 'Anna university ', '', 'MCA', '2022', 81.00, '', 1, '2022-10-07 11:28:55', 0, NULL, 0, NULL, 1),
(13389, 10497, '3', 'Periyar university ', '', 'Bsc computer science ', '2020', 68.00, '', 1, '2022-10-07 11:30:49', 0, NULL, 0, NULL, 1),
(13390, 10486, '3', 'Annai Veilankanni\'s College of Engineering ', '', 'B.E', '2022', 89.00, '', 1, '2022-10-07 11:44:54', 0, NULL, 0, NULL, 1),
(13391, 10498, '3', 'Annai veilankanni\'s college of engineering ', '', 'BE(case)', '2022', 81.00, '', 1, '2022-10-07 11:45:02', 0, NULL, 0, NULL, 1),
(13392, 10500, '3', 'GKM college of engineering and technology ', '', 'BE', '2021', 60.00, '', 1, '2022-10-07 12:08:37', 0, NULL, 0, NULL, 1),
(13393, 10499, '3', 'Madras University ', '', 'B.co', '2021', 75.00, '', 1, '2022-10-07 12:12:27', 0, NULL, 0, NULL, 1),
(13394, 10502, '1', 'State board ', '', '', '2015', 95.00, '', 1, '2022-10-07 12:49:47', 0, NULL, 0, NULL, 1),
(13395, 10502, '2', 'State board ', '', '', '2017', 91.00, '', 1, '2022-10-07 12:50:15', 0, NULL, 0, NULL, 1),
(13396, 10503, '3', 'Madras university', '', 'BCA', '2022', 65.00, '', 1, '2022-10-07 01:33:22', 0, NULL, 0, NULL, 1),
(13397, 10504, '3', 'Madras University ', '', 'BA', '2022', 85.00, '', 1, '2022-10-07 01:36:24', 0, NULL, 0, NULL, 1),
(13398, 10509, '3', 'Mangalore University ', '', 'B.COM', '2022', 70.00, '', 1, '2022-10-07 07:55:04', 0, NULL, 0, NULL, 1),
(13399, 10509, '2', 'Pre University board Karnataka ', '', '', '2019', 89.00, '', 1, '2022-10-07 07:55:57', 0, NULL, 0, NULL, 1),
(13400, 10509, '1', 'KSEEB', '', '', '2017', 80.64, '', 1, '2022-10-07 07:57:24', 0, NULL, 0, NULL, 1),
(13401, 10508, '3', 'Central University ', '', 'Bcom', '2022', 8.09, '', 1, '2022-10-07 08:00:10', 0, NULL, 0, NULL, 1),
(13402, 10511, '1', 'Karnataka ', '', '', '2017', 68.00, '', 1, '2022-10-07 08:00:45', 0, NULL, 0, NULL, 1),
(13403, 10519, '2', 'Karnataka pre University board ', '', '', '2019', 80.05, '', 1, '2022-10-07 11:14:53', 0, NULL, 0, NULL, 1),
(13404, 10521, '3', 'Annamalai University ', '', 'BE (EEE)', '2022', 78.00, '', 1, '2022-10-08 09:14:51', 0, NULL, 0, NULL, 1),
(13405, 10523, '4', 'ANNA UNIVERSITY', '', 'MBA  HR& FINANCE', '2021', 84.00, '', 1, '2022-10-08 10:06:02', 0, NULL, 0, NULL, 1),
(13406, 10523, '3', 'Sastra Deemed University Kumbakonam', '', 'B. Sc', '2019', 55.00, '', 1, '2022-10-08 10:06:33', 0, NULL, 0, NULL, 1),
(13407, 10523, '2', 'State Board', '', '', '2016', 73.80, '', 1, '2022-10-08 10:07:08', 0, NULL, 0, NULL, 1),
(13408, 10523, '1', 'State Board', '', '', '2014', 84.00, '', 1, '2022-10-08 10:07:33', 0, NULL, 0, NULL, 1),
(13409, 10501, '4', 'SRM UNIVERSITY ', '', 'MBA', '2021', 8.10, '', 1, '2022-10-08 10:16:13', 0, NULL, 0, NULL, 1),
(13410, 10527, '3', 'Anna university ', '', 'BACHELOR OF ENGINEERING', '2020', 64.00, '', 1, '2022-10-08 10:46:50', 0, NULL, 0, NULL, 1),
(13411, 10526, '3', 'Anna University ', '', 'Bachelor of engineering ', '2022', 75.00, '', 1, '2022-10-08 10:46:56', 0, NULL, 0, NULL, 1),
(13412, 10527, '5', 'DOTE', '', 'Diploma ', '2017', 86.00, '', 1, '2022-10-08 10:47:21', 0, NULL, 0, NULL, 1),
(13413, 10526, '1', 'State board ', '', '', '2016', 77.00, '', 1, '2022-10-08 10:47:24', 0, NULL, 0, NULL, 1),
(13414, 10526, '2', 'State board ', '', '', '2018', 68.00, '', 1, '2022-10-08 10:47:44', 0, NULL, 0, NULL, 1),
(13415, 10524, '4', 'Thiruvalluvar University ', '', 'Msc', '2020', 71.00, '', 1, '2022-10-08 10:49:51', 0, NULL, 0, NULL, 1),
(13416, 10525, '4', 'ACTU', '', 'PGDM', '2021', 62.00, '', 1, '2022-10-08 10:52:02', 0, NULL, 0, NULL, 1),
(13417, 10525, '3', 'Anna university', '', 'BE', '2015', 57.00, '', 1, '2022-10-08 10:52:41', 0, NULL, 0, NULL, 1),
(13418, 10531, '2', 'state board', '', '', '2013', 76.00, '', 1, '2022-10-08 11:49:05', 0, NULL, 0, NULL, 1),
(13419, 10531, '3', 'anna university', '', 'be', '2017', 69.00, '', 1, '2022-10-08 11:49:42', 0, NULL, 0, NULL, 1),
(13420, 10534, '3', 'Sc University ', '', 'B. Sc', '2020', 80.00, '', 1, '2022-10-08 12:09:22', 0, NULL, 0, NULL, 1),
(13421, 10532, '3', 'University of Madras', '', 'B Com', '2016', 78.00, '', 1, '2022-10-08 12:14:26', 0, NULL, 0, NULL, 1),
(13422, 10536, '4', 'University of Madras ', '', 'Bcom', '2020', 60.00, '', 1, '2022-10-08 12:14:49', 0, NULL, 0, NULL, 1),
(13423, 10532, '2', 'State board', '', '', '2012', 92.00, '', 1, '2022-10-08 12:15:44', 0, NULL, 0, NULL, 1),
(13424, 10532, '1', 'State board', '', '', '2010', 88.00, '', 1, '2022-10-08 12:16:21', 0, NULL, 0, NULL, 1),
(13425, 10535, '4', 'Periyar University ', '', 'BA ENGLISH ', '2018', 53.00, '', 1, '2022-10-08 12:16:36', 0, NULL, 0, NULL, 1),
(13426, 10537, '3', 'Madras university', '', 'Bsc maths', '2020', 60.00, '', 1, '2022-10-08 12:16:48', 0, NULL, 0, NULL, 1),
(13427, 10533, '3', 'Madras University ', '', 'Bcom Accounting finance ', '2021', 64.00, '', 1, '2022-10-08 12:17:37', 0, NULL, 0, NULL, 1),
(13428, 10539, '3', 'Madras University ', '', 'BSW', '2021', 70.00, '', 1, '2022-10-08 01:45:38', 0, NULL, 0, NULL, 1),
(13429, 10540, '4', 'University of Mysore ', '', 'MBA', '2021', 7.56, '', 1, '2022-10-08 02:25:55', 0, NULL, 0, NULL, 1),
(13430, 10540, '3', 'University of Mysore ', '', 'B. Com', '2019', 63.05, '', 1, '2022-10-08 02:26:22', 0, NULL, 0, NULL, 1),
(13431, 10540, '2', 'Karnataka board ', '', '', '2016', 55.16, '', 1, '2022-10-08 02:27:26', 0, NULL, 0, NULL, 1),
(13432, 10540, '1', 'Karnataka board ', '', '', '2014', 46.56, '', 1, '2022-10-08 02:28:00', 0, NULL, 0, NULL, 1),
(13433, 10545, '3', 'Madras university', '', 'B. Sc mathematics', '2016', 47.00, '', 1, '2022-10-08 10:25:45', 0, NULL, 0, NULL, 1),
(13434, 10546, '4', 'Anna University Trichy ', '', 'MBA', '2022', 8.00, '', 1, '2022-10-09 06:08:28', 0, NULL, 0, NULL, 1),
(13435, 10548, '2', 'Aposs', '', '', '2020', 60.00, '', 1, '2022-10-10 09:42:45', 0, NULL, 0, NULL, 1),
(13436, 10549, '3', 'Kannur University ', '', 'BBA', '2020', 70.00, '', 1, '2022-10-10 09:48:34', 0, NULL, 0, NULL, 1),
(13437, 10550, '4', 'Lord jegannath college of information and technology ', '', 'MCA', '2021', 67.00, '', 1, '2022-10-10 11:23:05', 0, NULL, 0, NULL, 1),
(13438, 10550, '3', 'St Jerome\'s college of arts and science ', '', 'BCA', '2018', 68.00, '', 1, '2022-10-10 11:24:23', 0, NULL, 0, NULL, 1),
(13439, 10550, '2', 'St Mary\'s heigher secondary school ', '', '', '2015', 70.00, '', 1, '2022-10-10 11:25:31', 0, NULL, 0, NULL, 1),
(13440, 10550, '1', 'St Mary\'s heigher secondary school ', '', '', '2013', 85.00, '', 1, '2022-10-10 11:25:55', 0, NULL, 0, NULL, 1),
(13441, 10554, '3', 'Anna University ', '', 'BE', '2021', 74.08, '', 1, '2022-10-10 11:42:52', 0, NULL, 0, NULL, 1),
(13442, 10553, '3', 'Madras university ', '', 'B.com', '2021', 71.00, '', 1, '2022-10-10 11:49:10', 0, NULL, 0, NULL, 1),
(13443, 10551, '3', 'Dhanalakshmi college of engineering ', '', 'BE', '2018', 60.00, '', 1, '2022-10-10 11:53:14', 0, NULL, 0, NULL, 1),
(13444, 10555, '3', 'Madras University ', '', 'B. Com', '2021', 75.00, '', 1, '2022-10-10 11:53:32', 0, NULL, 0, NULL, 1),
(13445, 10558, '3', 'University of Madras ', '', 'B a', '2021', 67.00, '', 1, '2022-10-10 12:12:45', 0, NULL, 0, NULL, 1),
(13446, 10557, '1', 'TN state Board ', '', '', '2015', 91.00, '', 1, '2022-10-10 12:13:58', 0, NULL, 0, NULL, 1),
(13447, 10557, '2', 'TN state board ', '', '', '2017', 74.00, '', 1, '2022-10-10 12:14:45', 0, NULL, 0, NULL, 1),
(13448, 10557, '3', 'Anna University ', '', 'B.tech', '2021', 78.00, '', 1, '2022-10-10 12:15:45', 0, NULL, 0, NULL, 1),
(13449, 10552, '3', 'vels university', '', 'bsc', '2021', 55.00, '', 1, '2022-10-10 12:16:45', 0, NULL, 0, NULL, 1),
(13450, 10559, '3', 'Anna University', '', 'BE', '2021', 73.00, '', 1, '2022-10-10 02:25:41', 0, NULL, 0, NULL, 1),
(13451, 10560, '3', 'Dr.MGR Educational and Research Institute ', '', 'Bsc Animation & Viscom', '2022', 64.00, '', 1, '2022-10-10 03:30:20', 0, NULL, 0, NULL, 1),
(13452, 10567, '3', 'Anna university ', '', 'B.E', '2022', 7.90, '', 1, '2022-10-11 09:26:45', 0, NULL, 0, NULL, 1),
(13453, 10568, '3', 'Anna University ', '', 'b.E Mechanical engineering ', '2021', 79.70, '', 1, '2022-10-11 09:36:12', 0, NULL, 0, NULL, 1),
(13454, 10570, '3', 'Bharathidasan University ', '', 'BCA', '2021', 83.00, '', 1, '2022-10-11 09:45:46', 0, NULL, 0, NULL, 1),
(13455, 10571, '3', 'Anna University', '', 'B.E', '2022', 80.00, '', 1, '2022-10-11 10:00:24', 0, NULL, 0, NULL, 1),
(13456, 10572, '3', 'Alagappa University ', '', 'B.sc computer science ', '2019', 60.00, '', 1, '2022-10-11 10:19:39', 0, NULL, 0, NULL, 1),
(13457, 10573, '3', 'Anna University ', '', 'BE Mechanical Engineering', '2018', 65.00, '', 1, '2022-10-11 10:27:51', 0, NULL, 0, NULL, 1),
(13458, 10574, '4', 'University ', '', 'Mba', '2021', 65.00, '', 1, '2022-10-11 10:49:03', 0, NULL, 0, NULL, 1),
(13459, 10566, '3', 'madras university ', '', 'bca', '2022', 78.00, '', 1, '2022-10-11 11:17:44', 0, NULL, 0, NULL, 1),
(13460, 10575, '3', 'Annauniversity', '', 'BE', '2020', 6.10, '', 1, '2022-10-11 11:21:11', 0, NULL, 0, NULL, 1),
(13461, 10576, '3', 'State broad', '', 'B. A history', '2015', 65.00, '', 1, '2022-10-11 11:47:36', 0, NULL, 0, NULL, 1),
(13462, 10577, '3', 'Madras university ', '', 'B. A', '2017', 65.00, '', 1, '2022-10-11 11:54:28', 0, NULL, 0, NULL, 1),
(13463, 10578, '3', 'asan memeial college of arts and scicence', '', 'bba', '2021', 73.50, '', 1, '2022-10-11 11:58:57', 0, NULL, 0, NULL, 1),
(13464, 10579, '3', 'University of Madras ', '', 'BA. Tourism and travel management ', '2020', 74.00, '', 1, '2022-10-11 01:44:54', 0, NULL, 0, NULL, 1),
(13465, 10580, '3', 'University of madras', '', 'Batchelor of commerce ', '2021', 78.00, '', 1, '2022-10-11 01:45:16', 0, NULL, 0, NULL, 1),
(13466, 10579, '1', 'CBSE', '', 'BA tourism and travel management ', '2015', 72.00, '', 1, '2022-10-11 01:47:45', 1, '2022-10-11 01:50:34', 0, NULL, 1),
(13467, 10580, '1', 'Central board of secondary education ', '', 'Batchelor of commerce ', '2016', 80.00, '', 1, '2022-10-11 01:48:23', 0, NULL, 0, NULL, 1),
(13468, 10580, '2', 'Velammal matriculation higher secondary school ', '', '', '2018', 82.00, '', 1, '2022-10-11 01:49:51', 0, NULL, 0, NULL, 1),
(13469, 10579, '2', 'Jaya matriculation hr .sec school ', '', '', '2017', 60.00, '', 1, '2022-10-11 01:49:58', 0, NULL, 0, NULL, 1),
(13470, 10581, '3', 'Yogi vemana univercity', '', 'B.sc', '2021', 72.00, '', 1, '2022-10-11 04:16:01', 0, NULL, 0, NULL, 1),
(13471, 10583, '3', 'Thiruvalluvar University', '', 'B.sc chemistry', '2019', 68.00, '', 1, '2022-10-11 07:09:55', 0, NULL, 0, NULL, 1),
(13472, 10583, '1', 'State board of Tamil Nadu', '', '', '2014', 65.40, '', 1, '2022-10-11 07:12:13', 0, NULL, 0, NULL, 1),
(13473, 10583, '2', 'State board of Tamil Nadu', '', '', '2016', 58.00, '', 1, '2022-10-11 07:12:58', 0, NULL, 0, NULL, 1),
(13474, 10582, '3', 'Guru Nanak college ', '', 'BBA', '2022', 75.50, '', 1, '2022-10-11 08:41:42', 1, '2022-10-11 08:42:35', 0, NULL, 1),
(13475, 10584, '3', 'Madras university ', '', 'B.com', '2021', 81.00, '', 1, '2022-10-11 08:59:23', 0, NULL, 0, NULL, 1),
(13476, 10586, '3', 'MIET Engineering College', '', 'B.E/EEE', '2021', 73.00, '', 1, '2022-10-12 09:41:57', 0, NULL, 0, NULL, 1),
(13477, 10585, '3', 'Madurai Kamaraj University ', '', 'B.com', '2022', 62.00, '', 1, '2022-10-12 09:43:13', 0, NULL, 0, NULL, 1),
(13478, 10587, '3', 'Anna university ', '', 'BE Electronics and instrumentation ', '2021', 7.42, '', 1, '2022-10-12 09:50:24', 0, NULL, 0, NULL, 1),
(13479, 10588, '3', 'Madras University ', '', 'BCA', '2018', 65.00, '', 1, '2022-10-12 10:29:07', 0, NULL, 0, NULL, 1),
(13480, 10590, '3', 'Anna university ', '', 'BE', '2019', 6.50, '', 1, '2022-10-12 11:57:19', 0, NULL, 0, NULL, 1),
(13481, 10591, '4', 'Anna university', '', 'BE', '2018', 6.20, '', 1, '2022-10-12 12:20:14', 0, NULL, 0, NULL, 1),
(13482, 10592, '3', 'Anna University ', '', 'BE', '2020', 6.50, '', 1, '2022-10-12 12:25:02', 0, NULL, 0, NULL, 1),
(13483, 10594, '3', 'Anna University ', '', 'B.E', '2021', 78.90, '', 1, '2022-10-12 12:34:27', 0, NULL, 0, NULL, 1),
(13484, 10594, '2', 'State Board of Tamil Nadu ', '', '', '2017', 57.00, '', 1, '2022-10-12 12:34:52', 0, NULL, 0, NULL, 1),
(13485, 10594, '1', 'CBSE', '', '', '2015', 68.00, '', 1, '2022-10-12 12:35:07', 0, NULL, 0, NULL, 1),
(13486, 10597, '3', 'Madras University ', '', 'Yes', '2014', 53.00, '', 1, '2022-10-12 01:16:26', 0, NULL, 0, NULL, 1),
(13487, 10598, '3', 'Madras University ', '', 'BBA', '2019', 75.00, '', 1, '2022-10-12 03:59:44', 0, NULL, 0, NULL, 1),
(13488, 10599, '3', 'Madras University ', '', 'Bachelor of science ', '2014', 64.20, '', 1, '2022-10-12 04:23:46', 0, NULL, 0, NULL, 1),
(13489, 10601, '2', 'state board', '', '', '2018', 43.00, '', 1, '2022-10-13 09:48:28', 0, NULL, 0, NULL, 1),
(13490, 10601, '3', 'madras university', '', 'ba eco', '2022', 65.00, '', 1, '2022-10-13 09:48:48', 0, NULL, 0, NULL, 1),
(13491, 10602, '3', 'Madras University ', '', 'Bca', '2022', 82.00, '', 1, '2022-10-13 11:50:14', 0, NULL, 0, NULL, 1),
(13492, 10603, '3', 'Madras university ', '', 'B.com', '2020', 75.00, '', 1, '2022-10-13 12:05:18', 0, NULL, 0, NULL, 1),
(13493, 10603, '2', 'Holy family convent ', '', '', '2017', 66.00, '', 1, '2022-10-13 12:06:42', 1, '2022-10-13 12:08:15', 0, NULL, 1),
(13494, 10603, '1', 'Holy family convent', '', '', '2015', 75.00, '', 1, '2022-10-13 12:07:22', 0, NULL, 0, NULL, 1),
(13495, 8829, '2', 'Matriculation ', '', '', '2016', 72.00, '', 1, '2022-10-13 03:03:03', 0, NULL, 0, NULL, 1),
(13496, 10604, '3', 'PACHAIYAPPAS COLLEGE', '', 'B.com general', '2018', 67.00, '', 1, '2022-10-13 03:08:32', 0, NULL, 0, NULL, 1),
(13497, 10606, '4', 'Periyar university', '', 'Mba', '2020', 60.00, '', 1, '2022-10-14 11:12:47', 0, NULL, 0, NULL, 1),
(13498, 10605, '5', 'bharath', '', 'mech', '2021', 72.00, '', 1, '2022-10-14 11:27:21', 0, NULL, 0, NULL, 1),
(13499, 10607, '3', 'University', '', 'B. E', '2016', 68.00, '', 1, '2022-10-14 11:45:21', 0, NULL, 0, NULL, 1),
(13500, 10607, '1', 'State board', '', '', '2010', 79.20, '', 1, '2022-10-14 11:46:10', 0, NULL, 0, NULL, 1),
(13501, 10607, '2', 'State board', '', '', '2012', 75.00, '', 1, '2022-10-14 11:46:31', 0, NULL, 0, NULL, 1),
(13502, 10608, '5', 'Dote', '', 'Diploma in mechanical engineering ', '2019', 71.00, '', 1, '2022-10-14 01:13:36', 0, NULL, 0, NULL, 1),
(13503, 10609, '3', 'madras', '', 'bsc', '2020', 78.00, '', 1, '2022-10-14 01:34:38', 0, NULL, 0, NULL, 1),
(13504, 10610, '3', 'madras', '', 'bsc', '2020', 69.00, '', 1, '2022-10-14 01:40:04', 0, NULL, 0, NULL, 1),
(13505, 10611, '3', 'Madras university', '', 'B. Com', '2020', 70.00, '', 1, '2022-10-15 09:34:53', 0, NULL, 0, NULL, 1),
(13506, 10613, '3', 'Bharathidasan university ', '', 'B.voc (IT)', '2019', 77.00, '', 1, '2022-10-15 10:03:31', 0, NULL, 0, NULL, 1),
(13507, 10614, '3', 'Madras University', '', 'B. Sc', '2021', 75.00, '', 1, '2022-10-15 10:44:31', 0, NULL, 0, NULL, 1),
(13508, 10615, '3', 'Madras university', '', 'B.com', '2016', 54.00, '', 1, '2022-10-15 10:45:25', 0, NULL, 0, NULL, 1),
(13509, 10614, '2', 'Government Girls hr. Sec. School in gingee', '', '', '2018', 55.00, '', 1, '2022-10-15 10:45:31', 0, NULL, 0, NULL, 1),
(13510, 10615, '4', 'Madras University', '', '', '2019', 63.00, '', 1, '2022-10-15 10:45:58', 0, NULL, 0, NULL, 1),
(13511, 10614, '1', 'Shavetha Padmasani Hr. sec. School in Gingee', '', '', '2016', 65.00, '', 1, '2022-10-15 10:47:57', 0, NULL, 0, NULL, 1),
(13512, 10616, '1', 'State board of tamilnadu ', '', '', '2015', 92.80, '', 1, '2022-10-15 11:10:43', 0, NULL, 0, NULL, 1),
(13513, 10616, '2', 'State board  of tamilnadu ', '', '', '2017', 87.00, '', 1, '2022-10-15 11:11:53', 0, NULL, 0, NULL, 1),
(13514, 10616, '3', 'Anna University ', '', 'Be cse', '2021', 7.44, '', 1, '2022-10-15 11:12:34', 0, NULL, 0, NULL, 1),
(13515, 10617, '3', 'Madras university', '', 'B. Com general', '2019', 53.50, '', 1, '2022-10-15 11:23:33', 0, NULL, 0, NULL, 1),
(13516, 10620, '2', 'Narayana Junior college', '', '', '2017', 69.00, '', 1, '2022-10-17 09:28:07', 0, NULL, 0, NULL, 1),
(13517, 10620, '1', 'PCR Govt high school', '', '', '2015', 75.00, '', 1, '2022-10-17 09:28:33', 0, NULL, 0, NULL, 1),
(13518, 10621, '3', 'Madras University ', '', 'B.sc', '2014', 72.00, '', 1, '2022-10-17 11:44:18', 0, NULL, 0, NULL, 1),
(13519, 10623, '4', 'madras university', '', 'mca', '2022', 87.00, '', 1, '2022-10-17 12:57:55', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13520, 10623, '3', 'madras university', '', 'bca', '2020', 80.00, '', 1, '2022-10-17 12:58:41', 0, NULL, 0, NULL, 1),
(13521, 10623, '2', 'state board', '', '', '2017', 68.00, '', 1, '2022-10-17 12:59:13', 0, NULL, 0, NULL, 1),
(13522, 10623, '1', 'state board', '', '', '2015', 87.00, '', 1, '2022-10-17 12:59:37', 0, NULL, 0, NULL, 1),
(13523, 10625, '3', 'SRM Institute of Science and Technology ', '', 'BBA', '2022', 7.78, '', 1, '2022-10-17 01:36:10', 0, NULL, 0, NULL, 1),
(13524, 10622, '5', 'Hindustan engineering technology ', '', 'Dipolma ', '2017', 55.00, '', 1, '2022-10-17 02:50:41', 0, NULL, 0, NULL, 1),
(13525, 10624, '3', 'Dr. Mgr.janaki  college arts and sciences for women\'s ', '', 'Bcom(corporate secretary ship)', '2020', 65.00, '', 1, '2022-10-17 02:51:29', 0, NULL, 0, NULL, 1),
(13526, 10618, '3', 'Alagappa University ', '', 'Bachelor of science ', '2018', 69.00, '', 1, '2022-10-17 10:24:26', 0, NULL, 0, NULL, 1),
(13527, 10627, '3', 'Anna university', '', 'B. E Mechatronics engineering', '2019', 73.30, '', 1, '2022-10-18 09:44:38', 0, NULL, 0, NULL, 1),
(13528, 10628, '2', 'state board', '', '', '2019', 62.00, '', 1, '2022-10-18 10:04:14', 0, NULL, 0, NULL, 1),
(13529, 10628, '3', 'madras university', '', 'bsc electronics', '2022', 79.00, '', 1, '2022-10-18 10:04:43', 0, NULL, 0, NULL, 1),
(13530, 10629, '2', 'state board', '', '', '2018', 60.00, '', 1, '2022-10-18 10:07:00', 0, NULL, 0, NULL, 1),
(13531, 10629, '3', 'madras university', '', 'bcom', '2022', 62.00, '', 1, '2022-10-18 10:07:20', 0, NULL, 0, NULL, 1),
(13532, 10630, '2', 'state board', '', '', '2015', 62.00, '', 1, '2022-10-18 10:10:26', 0, NULL, 0, NULL, 1),
(13533, 10630, '3', 'periyar university', '', 'ba', '2018', 62.00, '', 1, '2022-10-18 10:10:44', 0, NULL, 0, NULL, 1),
(13534, 10631, '1', 'state board', '', '', '2013', 82.00, '', 1, '2022-10-18 10:14:08', 0, NULL, 0, NULL, 1),
(13535, 10631, '5', 'govt polytechinc', '', 'diploma ece', '2016', 74.00, '', 1, '2022-10-18 10:15:36', 0, NULL, 0, NULL, 1),
(13536, 10632, '4', 'Sri venkateswar univacity', '', '2015', '2015', 50.00, '', 1, '2022-10-18 11:02:07', 0, NULL, 0, NULL, 1),
(13537, 10634, '3', 'Thiruvalluvar University', '', 'B. Com', '2010', 60.00, '', 1, '2022-10-18 11:07:51', 0, NULL, 0, NULL, 1),
(13538, 10633, '5', 'dOTE', '', 'Diploma in mechanical engineering ', '2019', 81.00, '', 1, '2022-10-18 11:13:34', 0, NULL, 0, NULL, 1),
(13539, 10635, '3', 'Madras University ', '', 'Bca', '2022', 76.00, '', 1, '2022-10-18 12:14:29', 0, NULL, 0, NULL, 1),
(13540, 10636, '4', 'Dr. Mgr educational and research institute ', '', 'Mca', '2022', 70.00, '', 1, '2022-10-18 04:07:37', 0, NULL, 0, NULL, 1),
(13541, 10639, '5', 'Dote', '', 'Diploma in civil engineering ', '2021', 74.00, '', 1, '2022-10-18 11:23:49', 0, NULL, 0, NULL, 1),
(13542, 10637, '3', 'Thiruvalluvar University ', '', 'B.sc computer science ', '2019', 65.00, '', 1, '2022-10-19 10:17:26', 0, NULL, 0, NULL, 1),
(13543, 10640, '3', 'Barathiyar', '', 'Information technology', '2022', 70.00, '', 1, '2022-10-19 11:51:05', 0, NULL, 0, NULL, 1),
(13544, 10641, '3', 'Madras', '', 'Bsc electronics and communication science ', '2019', 85.00, '', 1, '2022-10-19 11:59:39', 0, NULL, 0, NULL, 1),
(13545, 10642, '3', 'Madras', '', 'Bsc maths', '2020', 70.00, '', 1, '2022-10-19 12:05:53', 0, NULL, 0, NULL, 1),
(13546, 10643, '2', 'Solinganallur school ', '', '', '2011', 79.00, '', 1, '2022-10-19 12:24:28', 0, NULL, 0, NULL, 1),
(13547, 10646, '3', 'Periyaar university', '', 'Bcom', '2021', 67.00, '', 1, '2022-10-19 12:58:23', 0, NULL, 0, NULL, 1),
(13548, 10644, '3', 'Periyar University ', '', 'B.com', '2021', 64.00, '', 1, '2022-10-19 01:00:17', 0, NULL, 0, NULL, 1),
(13549, 10648, '3', 'Barathiyar University ', '', 'BCom CA ', '2019', 65.00, '', 1, '2022-10-19 02:14:57', 0, NULL, 0, NULL, 1),
(13550, 10648, '2', 'State board ', '', '', '2016', 85.00, '', 1, '2022-10-19 02:15:43', 0, NULL, 0, NULL, 1),
(13551, 10651, '2', 'state board', '', '', '2016', 76.00, '', 1, '2022-10-20 10:28:09', 0, NULL, 0, NULL, 1),
(13552, 10651, '4', 'bharath university', '', 'mba hr', '2022', 75.00, '', 1, '2022-10-20 10:28:52', 0, NULL, 0, NULL, 1),
(13553, 10654, '3', 'Barthidhasan University ', '', 'B.com', '2022', 75.00, '', 1, '2022-10-20 11:53:15', 0, NULL, 0, NULL, 1),
(13554, 10656, '3', 'Bharathidhasan University', '', 'BBA', '2019', 60.00, '', 1, '2022-10-20 11:54:16', 0, NULL, 0, NULL, 1),
(13555, 10655, '3', 'Periyar maniammai University ', '', 'B.e EEE', '2013', 77.00, '', 1, '2022-10-20 11:54:43', 0, NULL, 0, NULL, 1),
(13556, 10653, '5', 'University', '', '', '2017', 72.00, '', 1, '2022-10-20 11:54:55', 0, NULL, 0, NULL, 1),
(13557, 10652, '3', 'Barthidhasan University ', '', 'B.com', '2022', 75.00, '', 1, '2022-10-20 12:00:00', 0, NULL, 0, NULL, 1),
(13558, 10657, '3', 'Bharathiyar university ', '', 'B sc biotechnology ', '2017', 67.00, '', 1, '2022-10-20 12:41:29', 0, NULL, 0, NULL, 1),
(13559, 10659, '3', 'Guru nanak ', '', 'Bachelor of computer science ', '2018', 6.10, '', 1, '2022-10-21 10:59:32', 0, NULL, 0, NULL, 1),
(13560, 10660, '4', 'Measi Institute of Information Technology ', '', 'MCA', '2022', 83.00, '', 1, '2022-10-21 11:07:33', 0, NULL, 0, NULL, 1),
(13561, 10661, '3', 'annamalai University ', '', 'BCA', '2021', 52.00, '', 1, '2022-10-21 11:22:22', 0, NULL, 0, NULL, 1),
(13562, 10663, '3', 'Bharadhidasan university', '', 'B. Sc(maths) ', '2022', 80.50, '', 1, '2022-10-21 12:09:12', 0, NULL, 0, NULL, 1),
(13563, 10664, '3', 'Bharathidasan University thiruchi', '', 'BCA', '2022', 70.00, '', 1, '2022-10-21 12:10:15', 0, NULL, 0, NULL, 1),
(13564, 10665, '3', 'Bharadhidasan', '', 'B.sc(maths)', '2022', 77.00, '', 1, '2022-10-21 12:18:20', 0, NULL, 0, NULL, 1),
(13565, 10662, '3', 'Prist university', '', 'B, sc (IT) ', '2022', 75.00, '', 1, '2022-10-21 12:21:16', 0, NULL, 0, NULL, 1),
(13566, 10666, '3', 'Madras University ', '', 'B.sc-maths', '2017', 72.00, '', 1, '2022-10-21 12:21:56', 0, NULL, 0, NULL, 1),
(13567, 10667, '3', 'Anna university', '', 'B. E. ', '2017', 74.00, '', 1, '2022-10-21 12:23:06', 0, NULL, 0, NULL, 1),
(13568, 10669, '4', 'Madras university ', '', 'MBA', '2018', 70.00, '', 1, '2022-10-21 01:39:35', 0, NULL, 0, NULL, 1),
(13569, 10670, '4', 'ANNA UNIVERSITY ', '', 'MBA', '2021', 79.03, '', 1, '2022-10-22 10:22:04', 0, NULL, 0, NULL, 1),
(13570, 10670, '3', 'ANNA UNIVERSITY ', '', 'B.E MECHANICAL ENGINEERING ', '2019', 67.80, '', 1, '2022-10-22 10:22:30', 0, NULL, 0, NULL, 1),
(13571, 10670, '2', 'TAMILNADU STATEBOARD ', '', '', '2015', 72.16, '', 1, '2022-10-22 10:23:25', 0, NULL, 0, NULL, 1),
(13572, 10670, '1', 'TAMILNADU STATEBOARD ', '', '', '2013', 91.00, '', 1, '2022-10-22 10:23:51', 0, NULL, 0, NULL, 1),
(13573, 10671, '3', 'Anna university ', '', 'Bachelor of engineering ', '2018', 72.80, '', 1, '2022-10-22 11:32:36', 0, NULL, 0, NULL, 1),
(13574, 10673, '3', 'Anna University ', '', 'B.E', '2021', 78.00, '', 1, '2022-10-24 06:53:08', 0, NULL, 0, NULL, 1),
(13575, 10675, '3', 'Madras University ', '', 'B.com (a/f)', '2022', 85.00, '', 1, '2022-10-25 11:13:08', 0, NULL, 0, NULL, 1),
(13576, 10676, '3', 'Medras University', '', 'BBA', '2017', 70.00, '', 1, '2022-10-25 02:35:44', 0, NULL, 0, NULL, 1),
(13577, 10677, '3', 'The new college,chennai', '', 'BCA-Computer application ', '2020', 67.00, '', 1, '2022-10-26 10:59:02', 0, NULL, 0, NULL, 1),
(13578, 10678, '3', 'Theruvalluvar  university', '', 'BCA', '2022', 65.00, '', 1, '2022-10-26 11:10:03', 0, NULL, 0, NULL, 1),
(13579, 10679, '3', 'University of madras distance education', '', 'BCA', '2022', 70.00, '', 1, '2022-10-26 11:28:56', 0, NULL, 0, NULL, 1),
(13580, 10681, '3', 'Bharthidasan University', '', 'B.Sc Computer Science', '2020', 70.00, '', 1, '2022-10-26 11:52:02', 0, NULL, 0, NULL, 1),
(13581, 10682, '3', 'Bharathidasan University', '', 'B. SC   YOGA FOR HUMAN EXCELLENCE', '2022', 68.00, '', 1, '2022-10-26 11:53:37', 0, NULL, 0, NULL, 1),
(13582, 10680, '3', 'Bharathidasan', '', 'B.A-History', '2021', 81.00, '', 1, '2022-10-26 11:53:38', 0, NULL, 0, NULL, 1),
(13583, 10683, '5', 'DIET', '', '', '2019', 70.00, '', 1, '2022-10-26 12:00:15', 0, NULL, 0, NULL, 1),
(13584, 10684, '3', 'Bharadhidhasan university ', '', 'B.sc -Maths', '2022', 81.00, '', 1, '2022-10-26 12:01:12', 0, NULL, 0, NULL, 1),
(13585, 10685, '3', 'Alagappa University ', '', 'BCA', '2021', 79.00, '', 1, '2022-10-26 03:14:51', 0, NULL, 0, NULL, 1),
(13586, 10686, '3', 'University', '', 'B.Tech', '2018', 79.00, '', 1, '2022-10-27 10:12:26', 0, NULL, 0, NULL, 1),
(13587, 10688, '3', 'Madurai Kamaraj university ', '', 'B.sc IT', '2021', 76.50, '', 1, '2022-10-27 10:29:14', 0, NULL, 0, NULL, 1),
(13588, 10688, '2', 'HNUPR HR sec school,Madurai ', '', '', '2018', 86.00, '', 1, '2022-10-27 10:29:55', 0, NULL, 0, NULL, 1),
(13589, 10688, '1', 'Government High school ', '', '', '2016', 82.00, '', 1, '2022-10-27 10:30:36', 0, NULL, 0, NULL, 1),
(13590, 10689, '5', 'Impact polytechnic ', '', 'No', '2017', 64.00, '', 1, '2022-10-27 11:04:02', 0, NULL, 0, NULL, 1),
(13591, 10690, '1', 'Karnataka educational board', '', '', '2014', 56.58, '', 1, '2022-10-27 11:37:50', 0, NULL, 0, NULL, 1),
(13592, 10691, '3', 'Bharathidhasan University ', '', 'B.COM', '2022', 71.00, '', 1, '2022-10-27 11:38:13', 0, NULL, 0, NULL, 1),
(13593, 10692, '3', 'Periyar maniammai Institute of science and Technology', '', 'B. Sc(CS) ', '2022', 74.49, '', 1, '2022-10-27 11:38:52', 0, NULL, 0, NULL, 1),
(13594, 10690, '5', 'Karnataka board', '', 'Diploma in commercial practice ', '2017', 70.00, '', 1, '2022-10-27 11:39:21', 0, NULL, 0, NULL, 1),
(13595, 10695, '3', 'Bharathidhasan University ', '', 'B.Com', '2021', 84.00, '', 1, '2022-10-27 11:44:47', 0, NULL, 0, NULL, 1),
(13596, 10696, '3', 'Anna university ', '', 'BE', '2020', 7.80, '', 1, '2022-10-27 11:46:23', 0, NULL, 0, NULL, 1),
(13597, 10694, '2', 'State board', '', '', '2017', 67.00, '', 1, '2022-10-27 11:47:31', 0, NULL, 0, NULL, 1),
(13598, 10693, '3', 'Bharathithasan university', '', 'B.sc(CS) ', '2020', 72.00, '', 1, '2022-10-27 11:57:55', 0, NULL, 0, NULL, 1),
(13599, 10697, '3', 'Vels University ', '', 'B.e civil engineer ', '2019', 6.50, '', 1, '2022-10-27 12:22:41', 0, NULL, 0, NULL, 1),
(13600, 10701, '3', 'Mysore university', '', 'B. Com', '2021', 70.00, '', 1, '2022-10-27 05:51:19', 0, NULL, 0, NULL, 1),
(13601, 10703, '3', 'Anna university', '', 'Bachelor of engineering', '2017', 8.90, '', 1, '2022-10-27 06:13:57', 0, NULL, 0, NULL, 1),
(13602, 10702, '4', 'University of Madras ', '', 'M.com ', '2022', 71.00, '', 1, '2022-10-27 06:16:17', 0, NULL, 0, NULL, 1),
(13603, 10702, '3', 'University of Madras ', '', 'B.com CS', '2019', 72.00, '', 1, '2022-10-27 06:16:46', 0, NULL, 0, NULL, 1),
(13604, 10702, '2', 'State board ', '', '', '2016', 61.00, '', 1, '2022-10-27 06:17:25', 0, NULL, 0, NULL, 1),
(13605, 10706, '3', 'IEC University ', '', 'BBA', '2019', 70.00, '', 1, '2022-10-28 11:32:46', 0, NULL, 0, NULL, 1),
(13606, 10714, '4', 'Bharathidasan engineering college', '', 'Structural engineering', '2021', 78.00, '', 1, '2022-10-28 12:04:30', 0, NULL, 0, NULL, 1),
(13607, 10715, '1', 'VHN Hr Sec School', '', '', '2008', 89.80, '', 1, '2022-10-28 12:32:56', 0, NULL, 0, NULL, 1),
(13608, 10715, '2', 'VHN Hr Sec School ', '', '', '2010', 78.90, '', 1, '2022-10-28 12:33:32', 0, NULL, 0, NULL, 1),
(13609, 10715, '3', 'SACS MAVMM ENGG COLLEGE ', '', 'BE EEE', '2014', 68.90, '', 1, '2022-10-28 12:34:42', 0, NULL, 0, NULL, 1),
(13610, 10716, '3', 'madras university', '', 'b.sc. hcm', '2013', 74.00, '', 1, '2022-10-28 12:54:21', 0, NULL, 0, NULL, 1),
(13611, 10718, '3', 'Anna University', '', 'B.tech', '2012', 85.00, '', 1, '2022-10-28 01:00:27', 0, NULL, 0, NULL, 1),
(13612, 10717, '3', 'Manonmaniyam sundharnar University ', '', 'BCOM', '2021', 60.00, '', 1, '2022-10-28 01:01:25', 0, NULL, 0, NULL, 1),
(13613, 10722, '3', 'Nmssvn college Madurai', '', 'Bsc mathematics ', '2022', 70.00, '', 1, '2022-10-29 09:55:50', 0, NULL, 0, NULL, 1),
(13614, 10723, '3', 'Karpagam university', '', 'B.SC computer science', '2022', 65.00, '', 1, '2022-10-29 09:56:44', 0, NULL, 0, NULL, 1),
(13615, 10724, '3', 'Karpagam university', '', 'B.com (computer application)', '2022', 65.00, '', 1, '2022-10-29 09:56:47', 0, NULL, 0, NULL, 1),
(13616, 10721, '3', 'Karpagam academy of higher education, coimbatore ', '', 'B.com(computer application)', '2022', 75.00, '', 1, '2022-10-29 10:08:01', 0, NULL, 0, NULL, 1),
(13617, 10726, '3', 'Madras University ', '', 'B.com', '2021', 72.00, '', 1, '2022-10-29 10:16:41', 0, NULL, 0, NULL, 1),
(13618, 10727, '3', 'Manonmaniyam sundaranar University ', '', 'BSc information technology ', '2021', 80.00, '', 1, '2022-10-29 11:19:50', 0, NULL, 0, NULL, 1),
(13619, 10728, '4', 'University of Madras ', '', 'Mac. statistics ', '2022', 89.00, '', 1, '2022-10-29 11:34:12', 0, NULL, 0, NULL, 1),
(13620, 10728, '3', 'University of Madras ', '', 'Bsc. Mathematics ', '2020', 84.70, '', 1, '2022-10-29 11:34:48', 0, NULL, 0, NULL, 1),
(13621, 10728, '2', 'State board of tamilnadu ', '', '', '2017', 70.00, '', 1, '2022-10-29 11:35:28', 0, NULL, 0, NULL, 1),
(13622, 10728, '1', 'State board of tamilnadu ', '', '', '2015', 84.00, '', 1, '2022-10-29 11:35:49', 0, NULL, 0, NULL, 1),
(13623, 10725, '3', 'Kcs kasi nadar college ', '', 'Bcom', '2021', 75.00, '', 1, '2022-10-29 11:53:49', 0, NULL, 0, NULL, 1),
(13624, 10730, '3', 'Alpha arts and science college ', '', 'Bsc biotechnology ', '2019', 82.00, '', 1, '2022-10-29 12:52:17', 0, NULL, 0, NULL, 1),
(13625, 10732, '3', 'Periyar manniyammai universite', '', 'BBA', '2020', 7.00, '', 1, '2022-10-29 12:58:44', 0, NULL, 0, NULL, 1),
(13626, 10731, '3', 'Periyar Maniammai Institute of Science and Technology ', '', 'BBA', '2020', 8.77, '', 1, '2022-10-29 12:59:14', 0, NULL, 0, NULL, 1),
(13627, 10735, '3', 'Karpagam University ', '', 'B.E mechanical engineering ', '2019', 7.21, '', 1, '2022-10-29 04:57:22', 0, NULL, 0, NULL, 1),
(13628, 10736, '1', 'State Board', '', '', '2015', 90.00, '', 1, '2022-10-29 05:59:47', 0, NULL, 0, NULL, 1),
(13629, 10736, '2', 'State Board', '', '', '2017', 70.00, '', 1, '2022-10-29 06:00:18', 0, NULL, 0, NULL, 1),
(13630, 10736, '3', 'Anna University', '', 'B.E Civil Engineering', '2021', 75.00, '', 1, '2022-10-29 06:01:29', 0, NULL, 0, NULL, 1),
(13631, 10733, '3', 'madra University ', '', 'b.com', '2016', 63.00, '', 1, '2022-10-31 10:30:52', 0, NULL, 0, NULL, 1),
(13632, 10741, '4', 'Bharathidasan university', '', 'MCA', '2018', 70.00, '', 1, '2022-10-31 10:33:34', 0, NULL, 0, NULL, 1),
(13633, 10739, '4', 'Madras University ', '', 'MBA system management ', '2019', 65.00, '', 1, '2022-10-31 10:38:30', 0, NULL, 0, NULL, 1),
(13634, 10739, '4', 'Madras University ', '', 'MBA system management ', '2019', 65.00, '', 1, '2022-10-31 10:39:08', 1, '2022-10-31 10:39:17', 0, NULL, 0),
(13635, 10739, '3', 'Madras University ', '', 'BA English literature ', '2017', 65.00, '', 1, '2022-10-31 10:40:16', 0, NULL, 0, NULL, 1),
(13636, 10743, '3', 'anna university', '', 'be', '2020', 7.32, '', 1, '2022-10-31 10:40:35', 0, NULL, 0, NULL, 1),
(13637, 10739, '2', 'State board ', '', '', '2014', 60.00, '', 1, '2022-10-31 10:41:24', 0, NULL, 0, NULL, 1),
(13638, 10739, '1', 'State board ', '', '', '2012', 80.00, '', 1, '2022-10-31 10:41:52', 0, NULL, 0, NULL, 1),
(13639, 10743, '5', 'tamilnadu board of technical department', '', 'dece', '2017', 86.10, '', 1, '2022-10-31 10:42:18', 0, NULL, 0, NULL, 1),
(13640, 10743, '1', 'state board of tamilnadu', '', '', '2014', 62.40, '', 1, '2022-10-31 10:43:00', 0, NULL, 0, NULL, 1),
(13641, 10742, '3', 'madras university', '', 'bba', '2015', 65.00, '', 1, '2022-10-31 10:50:14', 0, NULL, 0, NULL, 1),
(13642, 10745, '3', 'Mohamed sathak aj college of engineering', '', 'B.E civil', '2019', 56.00, '', 1, '2022-10-31 11:05:47', 0, NULL, 0, NULL, 1),
(13643, 10744, '3', 'Anna University', '', 'B.E', '2013', 69.40, '', 1, '2022-10-31 11:14:09', 0, NULL, 0, NULL, 1),
(13644, 10747, '3', 'Anna university', '', 'B.E', '2020', 6.80, '', 1, '2022-10-31 11:21:36', 0, NULL, 0, NULL, 1),
(13645, 10748, '4', 'Anna University', '', 'Master of computer applications', '2022', 78.00, '', 1, '2022-10-31 11:24:00', 0, NULL, 0, NULL, 1),
(13646, 10719, '4', 'Anna university ', '', 'Master of Computer Applications', '2022', 79.00, '', 1, '2022-10-31 11:25:01', 0, NULL, 0, NULL, 1),
(13647, 10748, '3', 'Bharathiyar University', '', 'B.sc Physics', '2019', 55.00, '', 1, '2022-10-31 11:25:04', 0, NULL, 0, NULL, 1),
(13648, 10748, '2', 'Tamilnadu State board', '', '', '2016', 71.00, '', 1, '2022-10-31 11:25:46', 0, NULL, 0, NULL, 1),
(13649, 10746, '3', 'Bharathidasan University ', '', 'BCA', '2020', 63.00, '', 1, '2022-10-31 11:25:49', 0, NULL, 0, NULL, 1),
(13650, 10719, '3', 'Bharathiyar University ', '', 'Bachelor of Computer Science ', '2020', 64.00, '', 1, '2022-10-31 11:25:57', 0, NULL, 0, NULL, 1),
(13651, 10748, '1', 'Tamilnadu State Board', '', '', '2014', 78.00, '', 1, '2022-10-31 11:26:18', 0, NULL, 0, NULL, 1),
(13652, 10719, '2', 'State Board', '', '', '2017', 69.00, '', 1, '2022-10-31 11:26:39', 0, NULL, 0, NULL, 1),
(13653, 10719, '1', 'State Board ', '', '', '2015', 84.00, '', 1, '2022-10-31 11:27:10', 0, NULL, 0, NULL, 1),
(13654, 10749, '1', 'State board ', '', '', '2015', 50.80, '', 1, '2022-10-31 11:29:04', 0, NULL, 0, NULL, 1),
(13655, 10749, '5', 'DOTE', '', 'Diploma Mechanical engineering ', '2018', 64.47, '', 1, '2022-10-31 11:30:03', 0, NULL, 0, NULL, 1),
(13656, 10749, '3', 'Anna University ', '', 'BE. Mechanical Engineering ', '2022', 8.00, '', 1, '2022-10-31 11:30:36', 0, NULL, 0, NULL, 1),
(13657, 10752, '5', 'Dotboard university ', '', '', '2016', 60.00, '', 1, '2022-10-31 12:49:27', 0, NULL, 0, NULL, 1),
(13658, 10751, '3', 'Madras University ', '', 'Bsc ', '2022', 86.00, '', 1, '2022-10-31 12:56:16', 0, NULL, 0, NULL, 1),
(13659, 10753, '3', 'Anna University ', '', 'B. Tech', '2020', 73.00, '', 1, '2022-10-31 01:18:56', 0, NULL, 0, NULL, 1),
(13660, 10754, '3', 'Anna University ', '', 'Be', '2014', 60.00, '', 1, '2022-10-31 01:44:30', 0, NULL, 0, NULL, 1),
(13661, 10754, '2', 'State board ', '', '', '2010', 67.00, '', 1, '2022-10-31 01:45:06', 0, NULL, 0, NULL, 1),
(13662, 10754, '1', 'State board ', '', '', '2008', 82.00, '', 1, '2022-10-31 01:45:30', 0, NULL, 0, NULL, 1),
(13663, 10720, '3', 'University', '', 'B.sc', '2022', 78.00, '', 1, '2022-10-31 02:12:39', 0, NULL, 0, NULL, 1),
(13664, 10755, '3', 'The New college', '', 'B.com', '2013', 75.00, '', 1, '2022-10-31 02:49:28', 0, NULL, 0, NULL, 1),
(13665, 10757, '3', 'Madras University ', '', 'Bcom', '2021', 62.00, '', 1, '2022-10-31 03:02:51', 0, NULL, 0, NULL, 1),
(13666, 10757, '2', 'State board', '', '', '2018', 50.00, '', 1, '2022-10-31 03:03:36', 0, NULL, 0, NULL, 1),
(13667, 10757, '1', 'State board ', '', '', '2016', 68.00, '', 1, '2022-10-31 03:03:58', 0, NULL, 0, NULL, 1),
(13668, 10756, '4', 'Anna university ', '', 'Mba (  Technology Management )', '2022', 65.00, '', 1, '2022-10-31 03:24:19', 0, NULL, 0, NULL, 1),
(13669, 10760, '3', 'Anna university', '', 'B.E', '2022', 79.00, '', 1, '2022-10-31 05:22:28', 0, NULL, 0, NULL, 1),
(13670, 10760, '1', 'State board', '', '', '2016', 86.00, '', 1, '2022-10-31 05:23:26', 1, '2022-10-31 05:25:01', 0, NULL, 0),
(13671, 10760, '2', 'State board', '', '', '2018', 64.00, '', 1, '2022-10-31 05:23:52', 1, '2022-10-31 05:25:30', 0, NULL, 0),
(13672, 10760, '1', 'State board', '', '', '2016', 86.00, '', 1, '2022-10-31 05:25:18', 1, '2022-10-31 05:25:26', 0, NULL, 0),
(13673, 10760, '2', 'State board', '', '', '2018', 64.00, '', 1, '2022-10-31 05:26:05', 0, NULL, 0, NULL, 1),
(13674, 10760, '1', 'State board', '', '', '2016', 84.00, '', 1, '2022-10-31 05:26:23', 0, NULL, 0, NULL, 1),
(13675, 10765, '3', 'Patrician college of arts and science', '', 'BCA', '2020', 61.00, '', 1, '2022-10-31 05:52:56', 0, NULL, 0, NULL, 1),
(13676, 10762, '3', 'Madras', '', 'B.com information systems management', '2020', 70.00, '', 1, '2022-10-31 06:05:29', 0, NULL, 0, NULL, 1),
(13677, 10767, '3', 'Periyar University ', '', 'BCA ', '2020', 76.00, '', 1, '2022-10-31 06:45:34', 0, NULL, 0, NULL, 1),
(13678, 10767, '2', 'State board ', '', '', '2017', 66.00, '', 1, '2022-10-31 06:45:59', 0, NULL, 0, NULL, 1),
(13679, 10767, '1', 'State board ', '', '', '2015', 79.00, '', 1, '2022-10-31 06:46:14', 0, NULL, 0, NULL, 1),
(13680, 10734, '2', 'State board', '', '', '2016', 68.00, '', 1, '2022-10-31 07:14:10', 0, NULL, 0, NULL, 1),
(13681, 10734, '3', 'A. M jain college ', '', 'B. Sc', '2021', 82.00, '', 1, '2022-10-31 07:14:40', 0, NULL, 0, NULL, 1),
(13682, 10734, '1', 'Hindu higher secondary school', '', '', '2018', 56.00, '', 1, '2022-10-31 07:15:17', 1, '2022-10-31 07:16:27', 0, NULL, 1),
(13683, 10761, '5', 'Nice ', '', 'Diploma computer teacher training ', '2010', 100.00, '', 1, '2022-10-31 09:00:49', 0, NULL, 0, NULL, 1),
(13684, 10769, '2', 'Sri vidyasam mathkam', '', '', '2016', 75.00, '', 1, '2022-10-31 09:08:15', 1, '2022-10-31 09:10:22', 0, NULL, 1),
(13685, 10769, '5', 'Thakkar bapa vidyalaya ', '', 'MRAC CP ', '2020', 80.00, '', 1, '2022-10-31 09:11:21', 0, NULL, 0, NULL, 1),
(13686, 10770, '2', 'state board', '', '', '2017', 68.00, '', 1, '2022-10-31 09:28:06', 0, NULL, 0, NULL, 1),
(13687, 10772, '3', 'gurunanak univesity', '', 'b.sc compter science', '2014', 67.00, '', 1, '2022-11-01 10:29:54', 0, NULL, 0, NULL, 1),
(13688, 10773, '5', 'Anna University ', '', 'Diploma mechatronics engineering ', '2021', 85.00, '', 1, '2022-11-01 11:00:36', 0, NULL, 0, NULL, 1),
(13689, 10763, '3', 'Anna University ', '', 'BE / EEE', '2018', 60.00, '', 1, '2022-11-01 11:34:36', 0, NULL, 0, NULL, 1),
(13690, 10774, '3', 'Chevalier T Thomas Elizabeth college for women ', '', 'Bsc psychology ', '2019', 72.00, '', 1, '2022-11-01 02:43:02', 0, NULL, 0, NULL, 1),
(13691, 10777, '3', 'Shri Shankarlal Sundarbai Shasun Jain College ', '', 'B.COM (CORPORATE SECRETARYSHIP)', '2020', 66.00, '', 1, '2022-11-01 08:11:48', 0, NULL, 0, NULL, 1),
(13692, 10779, '3', 'Madras University ', '', 'B.sc computer science ', '2020', 69.00, '', 1, '2022-11-02 10:09:55', 0, NULL, 0, NULL, 1),
(13693, 10780, '2', 'stateboard', '', '', '2016', 65.00, '', 1, '2022-11-02 10:35:07', 0, NULL, 0, NULL, 1),
(13694, 10781, '2', 'state board', '', '', '2015', 70.00, '', 1, '2022-11-02 10:39:10', 0, NULL, 0, NULL, 1),
(13695, 10781, '3', 'anna university', '', 'bca', '2019', 70.00, '', 1, '2022-11-02 10:39:27', 0, NULL, 0, NULL, 1),
(13696, 10782, '3', 'Loyola college ', '', 'B.A.History', '2022', 60.04, '', 1, '2022-11-02 10:51:05', 0, NULL, 0, NULL, 1),
(13697, 10783, '3', 'Anna university ', '', 'BE', '2021', 70.00, '', 1, '2022-11-02 10:56:18', 0, NULL, 0, NULL, 1),
(13698, 10785, '3', 'Madras University', '', 'BA Eng literature', '2020', 72.40, '', 1, '2022-11-02 11:06:29', 0, NULL, 0, NULL, 1),
(13699, 10787, '3', 'Madras University ', '', 'BCA', '2016', 81.00, '', 1, '2022-11-02 12:03:24', 0, NULL, 0, NULL, 1),
(13700, 10787, '2', 'Stateboard ', '', '', '2013', 78.00, '', 1, '2022-11-02 12:03:50', 0, NULL, 0, NULL, 1),
(13701, 10787, '1', 'Stateboard ', '', '', '2011', 81.00, '', 1, '2022-11-02 12:04:07', 0, NULL, 0, NULL, 1),
(13702, 10788, '5', 'Amirtha University ', '', 'Diploma', '2018', 66.00, '', 1, '2022-11-02 01:05:31', 0, NULL, 0, NULL, 1),
(13703, 10789, '4', 'Anna. University ', '', 'Mco', '2021', 90.00, '', 1, '2022-11-02 01:07:03', 0, NULL, 0, NULL, 1),
(13704, 10790, '3', 'Sri venkateswara university ', '', 'B.com', '2022', 74.00, '', 1, '2022-11-02 03:59:26', 0, NULL, 0, NULL, 1),
(13705, 10791, '4', 'Thiruvalluvar University ', '', 'MBA', '2020', 79.00, '', 1, '2022-11-02 04:02:35', 0, NULL, 0, NULL, 1),
(13706, 10794, '3', 'Stella Maris College ', '', 'BCA', '2022', 62.00, '', 1, '2022-11-02 04:52:32', 0, NULL, 0, NULL, 1),
(13707, 10794, '1', 'Tamil Nadu State Board ', '', '', '2017', 85.00, '', 1, '2022-11-02 04:53:04', 0, NULL, 0, NULL, 1),
(13708, 10794, '2', 'Tamil Nadu State Board ', '', '', '2019', 80.00, '', 1, '2022-11-02 04:53:24', 0, NULL, 0, NULL, 1),
(13709, 10795, '3', 'Madras University ', '', 'Bsc computer science ', '2022', 82.00, '', 1, '2022-11-02 04:55:37', 0, NULL, 0, NULL, 1),
(13710, 10795, '2', 'State board ', '', '', '2017', 69.00, '', 1, '2022-11-02 04:56:32', 0, NULL, 0, NULL, 1),
(13711, 10795, '1', 'State board', '', '', '2019', 55.00, '', 1, '2022-11-02 04:56:49', 0, NULL, 0, NULL, 1),
(13712, 10796, '3', 'Sri venkateswara university', '', 'Bsc(computer science) ', '2020', 7.50, '', 1, '2022-11-02 05:03:08', 0, NULL, 0, NULL, 1),
(13713, 10798, '3', 'Anna University', '', 'B.E (Computer Science and Engineering)', '2022', 78.20, '', 1, '2022-11-02 05:10:42', 0, NULL, 0, NULL, 1),
(13714, 10799, '4', ' manonmaniam University ', '', 'MA', '2022', 67.00, '', 1, '2022-11-02 05:11:37', 0, NULL, 0, NULL, 1),
(13715, 10803, '3', 'anna university', '', 'Bachelor Of Engineering', '2020', 60.80, '', 1, '2022-11-02 05:39:50', 0, NULL, 0, NULL, 1),
(13716, 10804, '3', 'Anna University', '', 'BE cSE', '2022', 75.00, '', 1, '2022-11-02 05:41:37', 0, NULL, 0, NULL, 1),
(13717, 10807, '1', 'State board', '', '', '2013', 88.40, '', 1, '2022-11-02 06:39:47', 0, NULL, 0, NULL, 1),
(13718, 10807, '2', 'State board', '', '', '2015', 86.50, '', 1, '2022-11-02 06:40:52', 0, NULL, 0, NULL, 1),
(13719, 10807, '3', 'Anna University ', '', 'B.E', '2019', 6.65, '', 1, '2022-11-02 06:43:48', 0, NULL, 0, NULL, 1),
(13720, 10810, '3', 'University voc college of engineering ', '', 'BE', '2022', 79.00, '', 1, '2022-11-02 08:32:07', 0, NULL, 0, NULL, 1),
(13721, 10814, '4', 'University of Madras', '', 'Msc(computer science)', '2020', 80.00, '', 1, '2022-11-02 10:03:38', 0, NULL, 0, NULL, 1),
(13722, 10814, '3', 'University of Madras', '', 'Bsc(computer science)', '2018', 69.78, '', 1, '2022-11-02 10:04:27', 0, NULL, 0, NULL, 1),
(13723, 10814, '2', 'State Board', '', '', '2015', 69.00, '', 1, '2022-11-02 10:07:39', 1, '2022-11-02 10:09:43', 0, NULL, 1),
(13724, 10814, '1', 'State Board', '', '', '2013', 75.00, '', 1, '2022-11-02 10:10:16', 0, NULL, 0, NULL, 1),
(13725, 10817, '3', 'Anna university', '', 'BE - CSE', '2020', 7.40, '', 1, '2022-11-03 08:32:19', 0, NULL, 0, NULL, 1),
(13726, 10820, '3', 'anna university', '', 'be', '2022', 73.00, '', 1, '2022-11-03 09:24:11', 0, NULL, 0, NULL, 1),
(13727, 10822, '3', 'University of madras ', '', 'BBA', '2022', 63.60, '', 1, '2022-11-03 09:57:33', 0, NULL, 0, NULL, 1),
(13728, 10822, '2', 'State board ', '', 'BBA', '2019', 43.80, '', 1, '2022-11-03 09:59:15', 0, NULL, 0, NULL, 1),
(13729, 10822, '1', 'State board', '', '', '2017', 59.00, '', 1, '2022-11-03 09:59:53', 0, NULL, 0, NULL, 1),
(13730, 10823, '3', 'Anna University ', '', 'B.E', '2023', 83.00, '', 1, '2022-11-03 10:38:53', 0, NULL, 0, NULL, 1),
(13731, 10825, '3', 'Periyar University salem ', '', 'BSC computer science ', '2022', 73.00, '', 1, '2022-11-03 10:41:13', 0, NULL, 0, NULL, 1),
(13732, 10824, '3', 'Bharathidasan University', '', 'B. Sc., Mathematics', '2022', 74.00, '', 1, '2022-11-03 10:49:03', 0, NULL, 0, NULL, 1),
(13733, 10778, '3', 'Madras University ', '', 'B.sc maths', '2018', 70.00, '', 1, '2022-11-03 10:57:58', 0, NULL, 0, NULL, 1),
(13734, 10827, '4', 'ANNA UNIVERSITY', '', 'Mba', '2011', 67.00, '', 1, '2022-11-03 10:58:10', 0, NULL, 0, NULL, 1),
(13735, 10778, '2', 'State board ', '', '', '2015', 72.00, '', 1, '2022-11-03 10:58:28', 0, NULL, 0, NULL, 1),
(13736, 10826, '3', 'Prist University', '', 'BA. English', '2022', 64.00, '', 1, '2022-11-03 11:04:54', 0, NULL, 0, NULL, 1),
(13737, 10828, '3', 'Anna University', '', 'Bachelor of Engineering (Mechanical)', '2021', 76.60, '', 1, '2022-11-03 11:15:13', 0, NULL, 0, NULL, 1),
(13738, 10800, '3', 'Bharathidasan University ', '', 'Biotechnology ', '2017', 80.00, '', 1, '2022-11-03 11:19:44', 0, NULL, 0, NULL, 1),
(13739, 10786, '1', 'Secondary school Leaving Certificate', '', 'B.com ', '2015', 63.00, '', 1, '2022-11-03 11:20:21', 0, NULL, 0, NULL, 1),
(13740, 10786, '2', 'State boards of school examination, Tamilnadu', '', '', '2017', 65.00, '', 1, '2022-11-03 11:21:39', 0, NULL, 0, NULL, 1),
(13741, 10829, '3', 'The Tamilnadu Dr.MGR medical university', '', 'Bsc', '2020', 80.00, '', 1, '2022-11-03 11:25:42', 0, NULL, 0, NULL, 1),
(13742, 10832, '3', 'Anna University ', '', 'BE.Computer science and engineering ', '2022', 70.00, '', 1, '2022-11-03 12:27:06', 0, NULL, 0, NULL, 1),
(13743, 10834, '3', 'Periyar university', '', 'B. Sc., computer science', '2016', 70.00, '', 1, '2022-11-03 01:09:18', 0, NULL, 0, NULL, 1),
(13744, 10831, '3', 'Ponjesly college of engineering ', '', 'BE', '2022', 80.00, '', 1, '2022-11-03 01:35:39', 0, NULL, 0, NULL, 1),
(13745, 10809, '3', 'Anna university', '', 'BE ', '2021', 68.00, '', 1, '2022-11-03 02:21:09', 0, NULL, 0, NULL, 1),
(13746, 10835, '3', 'Anna University', '', 'BE_Computer Science and Engineering', '2022', 75.00, '', 1, '2022-11-03 03:35:15', 0, NULL, 0, NULL, 1),
(13747, 10835, '2', 'State board ', '', '', '2018', 69.00, '', 1, '2022-11-03 03:35:58', 0, NULL, 0, NULL, 1),
(13748, 10835, '1', 'State board', '', '', '2016', 84.00, '', 1, '2022-11-03 03:36:21', 0, NULL, 0, NULL, 1),
(13749, 10839, '3', 'The Tamilnadu Dr .MGR medical university', '', 'Bsc', '2020', 80.00, '', 1, '2022-11-03 05:33:23', 0, NULL, 0, NULL, 1),
(13750, 10837, '4', 'Anna University ', '', 'MCA', '2020', 60.00, '', 1, '2022-11-03 05:42:31', 0, NULL, 0, NULL, 1),
(13751, 10837, '3', 'Bharathidasan university ', '', 'BCA', '2017', 72.00, '', 1, '2022-11-03 05:44:33', 0, NULL, 0, NULL, 1),
(13752, 10838, '1', 'State Board ', '', '', '2016', 79.00, '', 1, '2022-11-03 06:35:31', 0, NULL, 0, NULL, 1),
(13753, 10838, '2', 'State Board ', '', '', '2018', 81.00, '', 1, '2022-11-03 06:36:09', 0, NULL, 0, NULL, 1),
(13754, 10838, '3', 'Anna University ', '', 'Bachelor of civil Engineering ', '2022', 78.00, '', 1, '2022-11-03 06:36:52', 0, NULL, 0, NULL, 1),
(13755, 10841, '1', 'Stateboard', '', 'B.com', '2009', 70.00, '', 1, '2022-11-04 10:48:58', 0, NULL, 0, NULL, 1),
(13756, 10841, '2', 'Stateboard ', '', '', '2011', 60.00, '', 1, '2022-11-04 10:49:20', 0, NULL, 0, NULL, 1),
(13757, 10841, '3', 'Antonomus', '', 'B com', '2015', 65.00, '', 1, '2022-11-04 10:49:54', 0, NULL, 0, NULL, 1),
(13758, 10842, '3', 'Panimalar Institute of Technology ', '', 'BE( ECE)', '2020', 70.00, '', 1, '2022-11-04 11:03:06', 1, '2022-11-04 11:05:20', 0, NULL, 0),
(13759, 10842, '2', 'Vidhyaa Vikas Girls Higher Secondary school ', '', '', '2016', 85.00, '', 1, '2022-11-04 11:03:52', 1, '2022-11-04 11:05:25', 0, NULL, 0),
(13760, 10842, '1', 'St Joseph of cluny Matriculation Higher Secondary School ', '', '', '2014', 95.00, '', 1, '2022-11-04 11:04:27', 1, '2022-11-04 11:05:09', 0, NULL, 0),
(13761, 10842, '1', 'St Joseph of cluny Matriculation Higher Secondary School ', '', '', '2014', 95.00, '', 1, '2022-11-04 11:05:46', 0, NULL, 0, NULL, 1),
(13762, 10843, '1', 'T.P.K.n Matric Hr Sec School', '', 'B.e', '2014', 94.00, '', 1, '2022-11-04 11:06:15', 0, NULL, 0, NULL, 1),
(13763, 10842, '2', 'Vidhyaa Vijay Girls Higher Secondary school ', '', '', '2016', 85.00, '', 1, '2022-11-04 11:06:18', 0, NULL, 0, NULL, 1),
(13764, 10842, '3', 'Panimalar Institute of Technology ', '', 'BE ', '2020', 70.00, '', 1, '2022-11-04 11:06:46', 0, NULL, 0, NULL, 1),
(13765, 10843, '2', 'T.P.K.N Matric Hr Sec School', '', '', '2016', 77.60, '', 1, '2022-11-04 11:07:32', 0, NULL, 0, NULL, 1),
(13766, 10844, '3', 'Anna university ', '', 'BE', '2021', 68.00, '', 1, '2022-11-04 11:15:27', 0, NULL, 0, NULL, 1),
(13767, 10844, '1', 'Anna sivabakkiyam school ', '', '', '2013', 75.00, '', 1, '2022-11-04 11:17:06', 0, NULL, 0, NULL, 1),
(13768, 10844, '2', 'Sowratra higher secondary school ', '', '', '2015', 65.00, '', 1, '2022-11-04 11:18:18', 0, NULL, 0, NULL, 1),
(13769, 10846, '4', 'Annamalai University ', '', 'Master of labour management', '2008', 60.00, '', 1, '2022-11-04 12:02:35', 0, NULL, 0, NULL, 1),
(13770, 10847, '3', 'Anna university ', '', 'B Tech Information Technology ', '2018', 79.00, '', 1, '2022-11-04 05:20:47', 0, NULL, 0, NULL, 1),
(13771, 10847, '2', 'St Michael\'s higher secondary school ', '', '', '2018', 79.00, '', 1, '2022-11-04 05:21:19', 0, NULL, 0, NULL, 1),
(13772, 10848, '3', 'Perriyar university ', '', 'B. Com cA', '2020', 75.00, '', 1, '2022-11-04 05:38:55', 0, NULL, 0, NULL, 1),
(13773, 10850, '3', 'Bharathiyar University ', '', 'B com', '2022', 76.00, '', 1, '2022-11-04 05:48:35', 0, NULL, 0, NULL, 1),
(13774, 10849, '3', 'bharathiar university', '', 'b.com with computer application', '2022', 64.00, '', 1, '2022-11-04 05:53:28', 0, NULL, 0, NULL, 1),
(13775, 10851, '3', 'University', '', 'Bsc cs', '2020', 68.00, '', 1, '2022-11-04 05:58:36', 0, NULL, 0, NULL, 1),
(13776, 10852, '5', 'Csc', '', '1', '2012', 95.00, '', 1, '2022-11-05 11:14:09', 0, NULL, 0, NULL, 1),
(13777, 10853, '4', 'Vel\'s university', '', 'Mca', '2022', 79.00, '', 1, '2022-11-05 11:34:38', 0, NULL, 0, NULL, 1),
(13778, 10853, '1', 'State board', '', '', '2015', 63.00, '', 1, '2022-11-05 11:35:53', 0, NULL, 0, NULL, 1),
(13779, 10855, '3', 'Annauniversity', '', 'BE', '2012', 65.00, '', 1, '2022-11-05 02:39:12', 0, NULL, 0, NULL, 1),
(13780, 10856, '3', 'universit of madras ', '', 'bBA', '2020', 66.00, '', 99, '2022-11-05 05:03:11', 0, NULL, 0, NULL, 1),
(13781, 10857, '3', 'Anna university', '', 'B.Tech-IT', '2020', 69.90, '', 1, '2022-11-05 06:02:28', 0, NULL, 0, NULL, 1),
(13782, 10860, '3', 'University of Madras ', '', 'B.sc', '2021', 85.00, '', 1, '2022-11-05 06:31:44', 0, NULL, 0, NULL, 1),
(13783, 10793, '1', 'govt hr sec school', '', '', '2015', 88.70, '', 1, '2022-11-05 07:07:55', 0, NULL, 0, NULL, 1),
(13784, 10793, '2', 'govt hr sec school', '', '', '2017', 80.00, '', 1, '2022-11-05 07:09:15', 0, NULL, 0, NULL, 1),
(13785, 10862, '3', 'Periyar University', '', 'Bsc computer science', '2021', 65.00, '', 1, '2022-11-05 08:52:22', 0, NULL, 0, NULL, 1),
(13786, 10864, '1', 'State Board ', '', '', '2015', 89.00, '', 1, '2022-11-06 06:19:45', 0, NULL, 0, NULL, 1),
(13787, 10864, '2', 'State Board ', '', '', '2017', 81.00, '', 1, '2022-11-06 06:20:05', 0, NULL, 0, NULL, 1),
(13788, 10864, '3', 'Anna University ', '', 'BE/Mechanical ', '2021', 76.80, '', 1, '2022-11-06 06:20:48', 0, NULL, 0, NULL, 1),
(13789, 10867, '2', 'state board', '', '', '2018', 68.00, '', 1, '2022-11-07 09:38:57', 0, NULL, 0, NULL, 1),
(13790, 10867, '5', 'anna university', '', 'diploma in computer engineering', '2020', 82.00, '', 1, '2022-11-07 09:39:36', 0, NULL, 0, NULL, 1),
(13791, 10868, '3', 'Anna University ', '', 'B.E', '2020', 70.00, '', 1, '2022-11-07 10:43:32', 0, NULL, 0, NULL, 1),
(13792, 10869, '4', 'Anna University ', '', 'B.Tech-IT', '2020', 75.00, '', 1, '2022-11-07 10:44:42', 0, NULL, 0, NULL, 1),
(13793, 10870, '3', 'Vels university', '', 'BCA', '2022', 85.00, '', 1, '2022-11-07 11:00:29', 0, NULL, 0, NULL, 1),
(13794, 10870, '2', 'St. Josephs hr, sec school', '', '', '2019', 74.00, '', 1, '2022-11-07 11:01:31', 0, NULL, 0, NULL, 1),
(13795, 10870, '1', 'St. Josephs hr sec school', '', '', '2017', 94.00, '', 1, '2022-11-07 11:08:32', 0, NULL, 0, NULL, 1),
(13796, 10871, '4', 'Annamalai university ', '', 'M b a', '2014', 86.00, '', 1, '2022-11-07 11:42:47', 0, NULL, 0, NULL, 1),
(13797, 10873, '3', 'Deemed to beuniversity', '', 'B. Com', '2022', 75.00, '', 1, '2022-11-07 11:59:44', 0, NULL, 0, NULL, 1),
(13798, 10874, '4', 'Bharathidason university ', '', 'M. Sc physics', '2022', 70.00, '', 1, '2022-11-07 12:04:50', 0, NULL, 0, NULL, 1),
(13799, 10875, '4', 'Anna university ', '', 'Master of zoology ', '2021', 70.00, '', 1, '2022-11-07 12:25:50', 0, NULL, 0, NULL, 1),
(13800, 10858, '3', 'Anna university ', '', 'BE -CSE ', '2016', 60.00, '', 1, '2022-11-07 01:13:25', 0, NULL, 0, NULL, 1),
(13801, 10859, '3', 'Rmk Engineering college ', '', 'BE', '2018', 6.10, '', 1, '2022-11-07 01:42:57', 0, NULL, 0, NULL, 1),
(13802, 10859, '5', 'Sri durgadevi polytechnic college ', '', 'Diploma ', '2015', 83.00, '', 1, '2022-11-07 01:43:57', 0, NULL, 0, NULL, 1),
(13803, 10859, '2', 'State board ', '', '', '2013', 65.00, '', 1, '2022-11-07 01:44:18', 0, NULL, 0, NULL, 1),
(13804, 10859, '1', 'State board ', '', '', '2011', 75.00, '', 1, '2022-11-07 01:44:44', 0, NULL, 0, NULL, 1),
(13805, 10879, '3', 'Anna university ', '', 'B.Tech ', '2022', 79.00, '', 1, '2022-11-07 03:46:36', 0, NULL, 0, NULL, 1),
(13806, 10879, '2', 'State board of Tamilnadu ', '', '', '2018', 70.00, '', 1, '2022-11-07 03:47:11', 0, NULL, 0, NULL, 1),
(13807, 10879, '1', 'State Board of Tamilnadu ', '', '', '2016', 75.00, '', 1, '2022-11-07 03:47:41', 0, NULL, 0, NULL, 1),
(13808, 10880, '4', 'Anna University', '', 'ME', '2023', 7.50, '', 1, '2022-11-07 03:59:15', 0, NULL, 0, NULL, 1),
(13809, 10881, '3', 'Sri Muthukumaran Institute of Technology ', '', 'B.E', '2022', 79.00, '', 1, '2022-11-07 04:07:13', 0, NULL, 0, NULL, 1),
(13810, 10882, '1', 'matric', '', '', '2016', 64.00, '', 1, '2022-11-07 05:49:17', 0, NULL, 0, NULL, 1),
(13811, 10882, '5', 'dote', '', 'ece', '2019', 70.00, '', 1, '2022-11-07 05:49:50', 0, NULL, 0, NULL, 1),
(13812, 10882, '3', 'st peters university', '', 'be', '2022', 71.00, '', 1, '2022-11-07 05:50:22', 0, NULL, 0, NULL, 1),
(13813, 10885, '3', 'University of madras ', '', 'B. Com c/s', '2022', 67.00, '', 1, '2022-11-07 06:05:52', 0, NULL, 0, NULL, 1),
(13814, 10883, '3', 'Deemed ', '', 'Bachelor of commerce ', '2022', 68.00, '', 1, '2022-11-07 06:29:29', 0, NULL, 0, NULL, 1),
(13815, 10883, '1', 'Board', '', '', '2017', 57.00, '', 1, '2022-11-07 06:45:04', 0, NULL, 0, NULL, 1),
(13816, 10883, '2', 'Board', '', '', '2019', 50.00, '', 1, '2022-11-07 06:45:28', 0, NULL, 0, NULL, 1),
(13817, 10897, '3', 'Madras University ', '', 'B.voc digital Journalism ', '2022', 53.00, '', 1, '2022-11-07 07:09:19', 0, NULL, 0, NULL, 1),
(13818, 10898, '3', 'Madras University ', '', 'B.com (accounting & finance)', '2022', 77.00, '', 1, '2022-11-07 07:15:29', 0, NULL, 0, NULL, 1),
(13819, 10898, '2', 'State board', '', '', '2019', 72.00, '', 1, '2022-11-07 07:17:07', 0, NULL, 0, NULL, 1),
(13820, 10898, '1', 'State board ', '', '', '2017', 94.00, '', 1, '2022-11-07 07:17:32', 0, NULL, 0, NULL, 1),
(13821, 10891, '1', 'state board', '', '', '2009', 63.00, '', 1, '2022-11-07 08:59:29', 0, NULL, 0, NULL, 1),
(13822, 10892, '1', 'Board', '', '', '2014', 84.00, '', 1, '2022-11-07 08:59:37', 0, NULL, 0, NULL, 1),
(13823, 10892, '2', 'Board', '', '', '2016', 59.00, '', 1, '2022-11-07 08:59:56', 0, NULL, 0, NULL, 1),
(13824, 10892, '3', 'University', '', 'Bcom', '2019', 74.00, '', 1, '2022-11-07 09:00:22', 0, NULL, 0, NULL, 1),
(13825, 10892, '4', 'University', '', 'MBA', '2022', 64.00, '', 1, '2022-11-07 09:00:42', 0, NULL, 0, NULL, 1),
(13826, 10902, '4', 'Madras University ', '', 'MBA', '2021', 85.00, '', 1, '2022-11-07 09:32:28', 0, NULL, 0, NULL, 1),
(13827, 10907, '4', 'JNTU A', '', 'M.Tech', '2016', 72.00, '', 1, '2022-11-08 10:04:12', 0, NULL, 0, NULL, 1),
(13828, 10908, '3', 'anna university', '', 'b.e', '2019', 75.90, '', 1, '2022-11-08 10:10:10', 0, NULL, 0, NULL, 1),
(13829, 10909, '3', 'Anna University ', '', 'BE', '2019', 6.67, '', 1, '2022-11-08 10:43:14', 0, NULL, 0, NULL, 1),
(13830, 10896, '1', 'Madaras University ', '', '', '2022', 56.00, '', 1, '2022-11-08 10:44:50', 0, NULL, 0, NULL, 1),
(13831, 10886, '3', 'Board ', '', 'B.com ', '2021', 77.00, '', 1, '2022-11-08 11:07:18', 0, NULL, 0, NULL, 1),
(13832, 10913, '3', 'Anna university', '', 'BE', '2014', 8.00, '', 1, '2022-11-08 11:12:31', 0, NULL, 0, NULL, 1),
(13833, 10894, '3', 'Madras university', '', 'B. Sc computer science', '2022', 80.00, '', 1, '2022-11-08 12:08:44', 0, NULL, 0, NULL, 1),
(13834, 10894, '2', 'State board', '', '', '2019', 64.00, '', 1, '2022-11-08 12:09:11', 0, NULL, 0, NULL, 1),
(13835, 10894, '1', 'State board', '', '', '2017', 88.00, '', 1, '2022-11-08 12:09:34', 0, NULL, 0, NULL, 1),
(13836, 10914, '3', 'MADURAI INSTITUTE OF SOCIAL SCIENCES ', '', 'BSc Computer Science ', '2018', 82.00, '', 1, '2022-11-08 12:16:10', 0, NULL, 0, NULL, 1),
(13837, 10917, '3', 'Bharadhidasan', '', 'Bcom', '2024', 70.00, '', 1, '2022-11-08 12:27:26', 0, NULL, 0, NULL, 1),
(13838, 10915, '3', 'Vels University ', '', 'B com General ', '2020', 7.30, '', 1, '2022-11-08 12:30:04', 0, NULL, 0, NULL, 1),
(13839, 10919, '3', 'Anna university', '', 'B.E', '2022', 8.90, '', 1, '2022-11-08 03:11:53', 0, NULL, 0, NULL, 1),
(13840, 10928, '3', 'thiruvallur university', '', 'b.com general', '2022', 72.00, '', 1, '2022-11-08 08:08:46', 0, NULL, 0, NULL, 1),
(13841, 10922, '3', 'Bharathiyar University of arts and science ', '', 'BSW ', '2021', 70.00, '', 1, '2022-11-08 09:35:11', 0, NULL, 0, NULL, 1),
(13842, 10929, '3', 'Madras university ', '', 'B. Com', '2013', 59.00, '', 1, '2022-11-09 08:10:03', 0, NULL, 0, NULL, 1),
(13843, 10931, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2016', 56.00, '', 1, '2022-11-09 09:56:58', 0, NULL, 0, NULL, 1),
(13844, 10933, '4', 'Anna university', '', 'Mba', '2013', 59.00, '', 1, '2022-11-09 10:21:18', 0, NULL, 0, NULL, 1),
(13845, 10924, '4', 'Madras University ', '', 'M.com', '2021', 79.00, '', 1, '2022-11-09 10:26:39', 1, '2022-11-09 10:28:57', 0, NULL, 0),
(13846, 10924, '3', 'Madras University ', '', 'B.com ', '2019', 67.00, '', 1, '2022-11-09 10:27:26', 0, NULL, 0, NULL, 1),
(13847, 10924, '2', 'State Board ', '', '', '2016', 88.00, '', 1, '2022-11-09 10:28:22', 0, NULL, 0, NULL, 1),
(13848, 10924, '4', 'Madras University ', '', 'M.com', '2021', 79.00, '', 1, '2022-11-09 10:29:26', 0, NULL, 0, NULL, 1),
(13849, 10925, '3', 'Bharathi dhasan university', '', 'B. Com computer application', '2021', 70.00, '', 1, '2022-11-09 10:59:57', 0, NULL, 0, NULL, 1),
(13850, 10923, '4', 'Anna University', '', 'MBA', '2022', 65.00, '', 1, '2022-11-09 11:48:46', 0, NULL, 0, NULL, 1),
(13851, 10920, '3', 'Guru nanak ', '', 'B.com A&f', '2022', 79.00, '', 1, '2022-11-09 11:53:11', 0, NULL, 0, NULL, 1),
(13852, 10939, '3', 'University', '', 'BBA', '2019', 85.00, '', 1, '2022-11-09 11:59:29', 0, NULL, 0, NULL, 1),
(13853, 10935, '3', 'Bharathidasan university', '', 'BBA', '2022', 65.00, '', 1, '2022-11-09 12:00:55', 0, NULL, 0, NULL, 1),
(13854, 10937, '4', 'Bharadhidasan', '', 'Mba', '2020', 82.00, '', 1, '2022-11-09 12:02:19', 0, NULL, 0, NULL, 1),
(13855, 10936, '3', 'Bharadhidasan', '', 'Bcom', '2022', 65.00, '', 1, '2022-11-09 12:04:58', 0, NULL, 0, NULL, 1),
(13856, 10938, '3', 'Bharathidasan university ', '', 'B. Com', '2022', 68.00, '', 1, '2022-11-09 12:05:39', 0, NULL, 0, NULL, 1),
(13857, 10940, '3', 'Anna University ', '', 'BE', '2020', 6.80, '', 1, '2022-11-09 01:15:46', 0, NULL, 0, NULL, 1),
(13858, 10932, '4', 'University of madars ', '', 'M .Com', '2019', 65.00, '', 1, '2022-11-09 02:37:33', 0, NULL, 0, NULL, 1),
(13859, 10932, '4', 'University of madars ', '', 'M.com', '2019', 65.00, '', 1, '2022-11-09 02:38:17', 0, NULL, 0, NULL, 1),
(13860, 10942, '4', 'Thiruvalluvar University ', '', 'M.com', '2022', 92.00, '', 1, '2022-11-09 06:52:29', 0, NULL, 0, NULL, 1),
(13861, 10943, '3', 'dr pt mgr government arts and sciences College ', '', 'B.sc(c/s)', '2021', 79.90, '', 1, '2022-11-09 06:53:24', 0, NULL, 0, NULL, 1),
(13862, 10944, '3', 'University of Madras ', '', 'B.Cim (C.S)', '2020', 75.35, '', 1, '2022-11-09 07:06:01', 0, NULL, 0, NULL, 1),
(13863, 10944, '2', 'Central Board of Secondary education ', '', '', '2017', 74.40, '', 1, '2022-11-09 07:06:36', 0, NULL, 0, NULL, 1),
(13864, 10944, '1', 'Central Board of secondary education ', '', '', '2015', 60.00, '', 1, '2022-11-09 07:06:55', 0, NULL, 0, NULL, 1),
(13865, 10944, '5', 'Alagappa University ', '', 'Diploma in Masters in Professional Accounting ', '2018', 75.00, '', 1, '2022-11-09 07:07:41', 0, NULL, 0, NULL, 1),
(13866, 10945, '3', 'Periyar university ', '', 'BCA', '2021', 65.00, '', 1, '2022-11-10 10:22:34', 0, NULL, 0, NULL, 1),
(13867, 10945, '2', 'State board', '', '', '2018', 70.58, '', 1, '2022-11-10 10:23:36', 0, NULL, 0, NULL, 1),
(13868, 10945, '1', 'State board ', '', '', '2016', 89.20, '', 1, '2022-11-10 10:24:18', 0, NULL, 0, NULL, 1),
(13869, 10927, '3', 'Anna University ', '', 'B.E.', '2022', 7.24, '', 1, '2022-11-10 10:55:45', 0, NULL, 0, NULL, 1),
(13870, 10948, '3', 'autonomous ', '', 'B.E', '2022', 80.00, '', 1, '2022-11-10 10:57:49', 0, NULL, 0, NULL, 1),
(13871, 10926, '3', 'Bharathidasan university', '', 'Bcom', '2022', 77.00, '', 1, '2022-11-10 11:11:19', 0, NULL, 0, NULL, 1),
(13872, 10949, '3', 'jamal moha coll ', '', 'b.com', '2022', 76.00, '', 1, '2022-11-10 11:16:30', 0, NULL, 0, NULL, 1),
(13873, 10952, '2', 'State board ', '', '', '2017', 62.00, '', 1, '2022-11-10 11:16:59', 0, NULL, 0, NULL, 1),
(13874, 10951, '3', 'Bharadhidasan', '', 'Dfd', '2022', 75.00, '', 1, '2022-11-10 11:26:29', 0, NULL, 0, NULL, 1),
(13875, 10950, '3', 'Bharadhidasan ', '', 'Bsc ft', '2021', 60.00, '', 1, '2022-11-10 11:33:12', 0, NULL, 0, NULL, 1),
(13876, 10953, '3', 'Bharadhidasan', '', 'Bca', '2022', 82.00, '', 1, '2022-11-10 11:36:56', 0, NULL, 0, NULL, 1),
(13877, 10954, '5', 'udaya dipolma collage.', '', 'techincal board', '2017', 68.00, '', 1, '2022-11-10 02:40:32', 0, NULL, 0, NULL, 1),
(13878, 10956, '3', 'Prist University', '', 'Bca', '2022', 80.00, '', 1, '2022-11-10 07:24:00', 0, NULL, 0, NULL, 1),
(13879, 10961, '1', 'Tamilnadu state board', '', '', '2015', 80.40, '', 1, '2022-11-10 11:56:45', 0, NULL, 0, NULL, 1),
(13880, 10961, '2', 'Tamilnadu state board ', '', '', '2017', 76.91, '', 1, '2022-11-10 11:57:18', 0, NULL, 0, NULL, 1),
(13881, 10961, '3', 'Anna University ', '', 'BE (mechanical Engineering)', '2021', 8.30, '', 1, '2022-11-10 11:57:59', 0, NULL, 0, NULL, 1),
(13882, 10962, '3', 'Vishweshwaraay technological University belagum', '', 'BE ( E&C engineering) ', '2019', 7.10, '', 1, '2022-11-11 10:43:06', 0, NULL, 0, NULL, 1),
(13883, 10963, '3', 'Manoanmaniyam suntharanaar university Thirunelveli', '', 'B.sc computer science', '2017', 82.70, '', 1, '2022-11-11 07:35:22', 0, NULL, 0, NULL, 1),
(13884, 10958, '3', 'Anna University ', '', 'B.E', '2017', 62.00, '', 1, '2022-11-12 10:45:17', 0, NULL, 0, NULL, 1),
(13885, 10968, '3', 'Davangere University', '', 'BCA ', '2017', 68.00, '', 1, '2022-11-12 10:58:10', 0, NULL, 0, NULL, 1),
(13886, 10965, '3', 'University of Madras ', '', 'BCA', '2021', 68.00, '', 1, '2022-11-12 12:14:07', 0, NULL, 0, NULL, 1),
(13887, 10970, '3', 'University of Madras ', '', 'BCA', '2021', 75.00, '', 1, '2022-11-12 01:27:15', 1, '2022-11-12 01:28:47', 0, NULL, 1),
(13888, 10973, '5', 'Chennai Amrita international institute of hotel management', '', 'Diploma', '2017', 100.00, '', 1, '2022-11-12 01:42:16', 0, NULL, 0, NULL, 1),
(13889, 10973, '1', 'Rani main higher secondary School', '', '', '2015', 100.00, '', 1, '2022-11-12 01:43:15', 0, NULL, 0, NULL, 1),
(13890, 10972, '3', 'Sri Venkateshwara University Tirupati.', '', 'B.com', '2021', 66.00, '', 1, '2022-11-12 03:48:23', 0, NULL, 0, NULL, 1),
(13891, 10771, '3', 'Thiruvalluvar University ', '', 'B.Sc Mathematics ', '2020', 72.00, '', 1, '2022-11-12 06:43:27', 0, NULL, 0, NULL, 1),
(13892, 10771, '2', 'State Board ', '', '', '2017', 70.00, '', 1, '2022-11-12 06:50:57', 0, NULL, 0, NULL, 1),
(13893, 10771, '1', 'State board ', '', '', '2015', 87.00, '', 1, '2022-11-12 06:51:58', 0, NULL, 0, NULL, 1),
(13894, 10978, '3', 'Mgr University ', '', 'B.com general', '2020', 60.00, '', 1, '2022-11-13 12:14:32', 0, NULL, 0, NULL, 1),
(13895, 10979, '4', 'SAVEETHA ENGINEERING COLLEGE', '', 'MBA - FINANCE', '2022', 80.00, '', 1, '2022-11-13 02:26:07', 0, NULL, 0, NULL, 1),
(13896, 10979, '3', 'GURUNANAK COLLEGE', '', 'BCOM - CORPORATE SECRETARYSHIP', '2020', 74.07, '', 1, '2022-11-13 02:26:55', 0, NULL, 0, NULL, 1),
(13897, 10979, '2', 'MGR ADHARSH SCHOOL', '', '', '2017', 86.83, '', 1, '2022-11-13 02:29:15', 0, NULL, 0, NULL, 1),
(13898, 10979, '1', 'SIRORATHNAM MATRICULATION SCHOOL', '', '', '2015', 85.00, '', 1, '2022-11-13 02:29:37', 0, NULL, 0, NULL, 1),
(13899, 9480, '3', 'anna university', '', 'B.E Mechanical Engineering', '2020', 63.00, '', 1, '2022-11-13 05:39:01', 0, NULL, 0, NULL, 1),
(13900, 9480, '2', 'state board', '', '', '2016', 67.00, '', 1, '2022-11-13 05:39:33', 0, NULL, 0, NULL, 1),
(13901, 9480, '1', 'state board', '', '', '2014', 84.00, '', 1, '2022-11-13 05:39:54', 0, NULL, 0, NULL, 1),
(13902, 10981, '3', 'anna university', '', 'b.e', '2019', 70.00, '', 1, '2022-11-13 05:44:09', 0, NULL, 0, NULL, 1),
(13903, 10981, '1', 'stateboard', '', '', '2013', 80.00, '', 1, '2022-11-13 05:44:36', 0, NULL, 0, NULL, 1),
(13904, 10981, '2', 'stateboard', '', '', '2015', 70.00, '', 1, '2022-11-13 05:44:51', 0, NULL, 0, NULL, 1),
(13905, 10983, '1', 'state board', '', '', '2014', 84.00, '', 1, '2022-11-13 05:50:46', 0, NULL, 0, NULL, 1),
(13906, 10983, '2', 'state board', '', '', '2016', 67.00, '', 1, '2022-11-13 05:51:01', 0, NULL, 0, NULL, 1),
(13907, 10983, '3', 'anna university', '', 'B.E Mechanical Engineering', '2020', 63.00, '', 1, '2022-11-13 05:51:22', 0, NULL, 0, NULL, 1),
(13908, 10980, '3', 'Anna University Chennai ', '', 'BE', '2022', 76.00, '', 1, '2022-11-13 06:01:36', 0, NULL, 0, NULL, 1),
(13909, 10980, '2', 'CSI HIGHER Secondary ', '', '', '2018', 65.00, '', 1, '2022-11-13 06:02:37', 0, NULL, 0, NULL, 1),
(13910, 10980, '1', 'CSI HIGH School ', '', '', '2016', 83.00, '', 1, '2022-11-13 06:03:32', 0, NULL, 0, NULL, 1),
(13911, 10985, '1', 'state board', '', '', '2016', 80.00, '', 1, '2022-11-13 06:51:45', 1, '2022-11-13 06:52:09', 0, NULL, 1),
(13912, 10985, '2', 'state board', '', '', '2018', 53.00, '', 1, '2022-11-13 06:53:15', 0, NULL, 0, NULL, 1),
(13913, 10988, '3', 'Anna University', '', 'B. E', '2017', 7.01, '', 1, '2022-11-13 06:54:03', 0, NULL, 0, NULL, 1),
(13914, 10985, '3', 'university', '', 'b.e mechanical engineering manufacturing', '2022', 68.00, '', 1, '2022-11-13 06:55:19', 0, NULL, 0, NULL, 1),
(13915, 10988, '5', 'DOTE', '', 'Diploma in EEE', '2014', 89.00, '', 1, '2022-11-13 06:55:27', 0, NULL, 0, NULL, 1),
(13916, 10988, '1', 'State board', '', '', '2011', 69.00, '', 1, '2022-11-13 06:56:05', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(13917, 10990, '3', 'Bharathiyar ', '', 'BBACA', '2021', 67.00, '', 1, '2022-11-13 06:59:19', 1, '2022-11-13 06:59:56', 0, NULL, 0),
(13918, 10990, '3', 'Bharathiyar ', '', 'BBACA', '2021', 67.00, '', 1, '2022-11-13 07:02:06', 0, NULL, 0, NULL, 1),
(13919, 10996, '3', 'University of Calicut ', '', 'Bcom', '2021', 72.80, '', 1, '2022-11-13 07:22:00', 0, NULL, 0, NULL, 1),
(13920, 10996, '2', 'Kerala State board ', '', '', '2018', 96.00, '', 1, '2022-11-13 07:22:28', 0, NULL, 0, NULL, 1),
(13921, 10996, '1', 'Kerala State board ', '', '', '2016', 93.30, '', 1, '2022-11-13 07:22:55', 0, NULL, 0, NULL, 1),
(13922, 11000, '3', 'Madras university ', '', 'BBA', '2021', 72.00, '', 1, '2022-11-13 07:32:15', 0, NULL, 0, NULL, 1),
(13923, 10987, '4', 'Madras university', '', 'Computer science', '2020', 91.00, '', 1, '2022-11-13 07:36:01', 1, '2022-11-13 07:41:37', 0, NULL, 0),
(13924, 10987, '3', 'Thiruvalluvar university', '', 'Computer science', '2018', 78.00, '', 1, '2022-11-13 07:37:10', 0, NULL, 0, NULL, 1),
(13925, 10987, '2', 'State board', '', '', '2015', 71.00, '', 1, '2022-11-13 07:38:15', 1, '2022-11-13 07:41:51', 0, NULL, 1),
(13926, 10987, '1', 'State board', '', '', '2013', 70.00, '', 1, '2022-11-13 07:38:39', 1, '2022-11-13 07:39:24', 0, NULL, 0),
(13927, 10987, '1', 'State board', '', '', '2013', 70.00, '', 1, '2022-11-13 07:39:58', 0, NULL, 0, NULL, 1),
(13928, 10987, '4', 'Madras university', '', 'Computer science', '2020', 90.00, '', 1, '2022-11-13 07:42:50', 0, NULL, 0, NULL, 1),
(13929, 11004, '3', 'Sathyabama institute of science and technology ', '', 'B.com', '2021', 63.27, '', 1, '2022-11-13 07:57:58', 0, NULL, 0, NULL, 1),
(13930, 10994, '3', 'University of madras', '', 'B. Com', '2020', 70.00, '', 1, '2022-11-13 08:07:53', 0, NULL, 0, NULL, 1),
(13931, 11009, '3', 'Bharathidasan University ', '', 'Bsc Chemistry ', '2022', 84.00, '', 1, '2022-11-13 08:16:30', 0, NULL, 0, NULL, 1),
(13932, 10976, '3', 'Bharathidhasan University', '', 'Bsc Chemistry', '2022', 80.00, '', 1, '2022-11-13 08:22:23', 0, NULL, 0, NULL, 1),
(13933, 11011, '3', 'Government arts college salem', '', 'BA.Economics', '2021', 60.00, '', 1, '2022-11-13 08:37:46', 0, NULL, 0, NULL, 1),
(13934, 11012, '4', 'University of Mysore ', '', 'MBA ', '2022', 75.00, '', 1, '2022-11-13 08:37:54', 0, NULL, 0, NULL, 1),
(13935, 11007, '4', 'Bharathidasan university ', '', 'Mathematics', '2021', 78.00, '', 1, '2022-11-13 08:44:00', 0, NULL, 0, NULL, 1),
(13936, 11013, '4', 'bharadhi dhasan universi ', '', 'm.com', '2022', 68.00, '', 1, '2022-11-13 09:05:19', 0, NULL, 0, NULL, 1),
(13937, 11015, '4', 'Anna University ', '', 'MBA (Hr finance )', '2022', 85.00, '', 1, '2022-11-13 10:03:12', 0, NULL, 0, NULL, 1),
(13938, 11014, '1', 'cbse board', '', '', '2015', 74.00, '', 1, '2022-11-13 10:31:47', 1, '2022-11-13 10:32:34', 0, NULL, 1),
(13939, 11014, '3', 'deemed university', '', 'bcom', '2020', 76.00, '', 1, '2022-11-13 10:33:06', 0, NULL, 0, NULL, 1),
(13940, 11014, '2', 'stateboard', '', '', '2017', 82.00, '', 1, '2022-11-13 10:33:30', 0, NULL, 0, NULL, 1),
(13941, 11014, '4', 'deemed university', '', 'mba', '2022', 83.00, '', 1, '2022-11-13 10:33:56', 0, NULL, 0, NULL, 1),
(13942, 11016, '3', 'Madurai kamaraj university', '', 'Bcom', '2021', 73.00, '', 1, '2022-11-13 10:41:59', 0, NULL, 0, NULL, 1),
(13943, 11016, '2', 'State board', '', '', '2018', 75.00, '', 1, '2022-11-13 10:43:23', 0, NULL, 0, NULL, 1),
(13944, 11020, '4', 'Periyar University', '', 'MBA', '2022', 75.00, '', 1, '2022-11-14 07:32:07', 0, NULL, 0, NULL, 1),
(13945, 10872, '2', 'Anna  university ', '', '', '2022', 87.00, '', 1, '2022-11-14 10:08:21', 0, NULL, 0, NULL, 1),
(13946, 11026, '3', 'University ', '', 'B.sc,ELECTRONIC AND COMMUNICATION ', '2019', 75.00, '', 1, '2022-11-14 10:16:01', 0, NULL, 0, NULL, 1),
(13947, 11029, '4', 'Presdicny University ', '', 'Bca ', '2017', 60.00, '', 1, '2022-11-14 11:08:45', 0, NULL, 0, NULL, 1),
(13948, 11029, '4', 'Presdincy University ', '', 'MBA ', '2019', 5.30, '', 1, '2022-11-14 11:09:37', 0, NULL, 0, NULL, 1),
(13949, 11031, '3', 'University ', '', 'BCA', '2021', 79.00, '', 1, '2022-11-14 11:13:28', 0, NULL, 0, NULL, 1),
(13950, 11030, '3', 'Bharthiyar university', '', 'BCA', '2021', 66.00, '', 1, '2022-11-14 11:14:34', 0, NULL, 0, NULL, 1),
(13951, 11028, '3', 'Bharathi Dharsan university', '', 'Bsc', '2021', 72.00, '', 1, '2022-11-14 11:32:34', 0, NULL, 0, NULL, 1),
(13952, 11019, '3', 'Vels University ', '', 'BBA', '2020', 76.00, '', 1, '2022-11-14 11:36:55', 0, NULL, 0, NULL, 1),
(13953, 11032, '3', 'Thiruvalluvar University ', '', 'BCA ', '2020', 68.00, '', 1, '2022-11-14 11:39:12', 0, NULL, 0, NULL, 1),
(13954, 11025, '3', 'institute of technology and management nanded ', '', 'bba finance ', '2022', 82.31, '', 1, '2022-11-14 11:39:28', 0, NULL, 0, NULL, 1),
(13955, 11032, '4', 'Anna university ', '', 'MCA ', '2022', 83.00, '', 1, '2022-11-14 11:39:52', 0, NULL, 0, NULL, 1),
(13956, 11032, '2', 'State board ', '', '', '2017', 52.00, '', 1, '2022-11-14 11:40:33', 0, NULL, 0, NULL, 1),
(13957, 11032, '1', 'State board ', '', '', '2015', 75.00, '', 1, '2022-11-14 11:40:53', 0, NULL, 0, NULL, 1),
(13958, 11033, '3', 'Madras University ', '', 'BSC COMPUTER SCIENCE', '2022', 75.00, '', 1, '2022-11-14 11:49:19', 0, NULL, 0, NULL, 1),
(13959, 11034, '3', 'Madras University ', '', 'Bsc computer science ', '2021', 68.00, '', 1, '2022-11-14 11:49:19', 0, NULL, 0, NULL, 1),
(13960, 11036, '3', 'Thiruvalluvar University ', '', 'Bsc.Computer science ', '2022', 89.00, '', 1, '2022-11-14 11:52:33', 0, NULL, 0, NULL, 1),
(13961, 11035, '3', 'Thiruvalluvar University', '', 'BSC, CS', '2022', 85.00, '', 1, '2022-11-14 11:54:11', 0, NULL, 0, NULL, 1),
(13962, 11037, '4', 'Sri padmavathi mahila Vishwavidyalaya tirupati ', '', 'SRI padmavathi women\'s degree and pg college tirup', '2020', 7.50, '', 1, '2022-11-14 12:10:22', 0, NULL, 0, NULL, 1),
(13963, 10977, '3', 'Thiruvalluvar university', '', 'BSC. CS', '2022', 85.00, '', 1, '2022-11-14 12:12:19', 0, NULL, 0, NULL, 1),
(13964, 11040, '3', 'Bharathidhasan university ', '', 'BCA', '2022', 74.00, '', 1, '2022-11-14 12:43:35', 0, NULL, 0, NULL, 1),
(13965, 11040, '2', 'Stateboard', '', '', '2019', 72.00, '', 1, '2022-11-14 12:45:09', 0, NULL, 0, NULL, 1),
(13966, 11040, '1', 'State board', '', '', '2017', 82.00, '', 1, '2022-11-14 12:46:10', 0, NULL, 0, NULL, 1),
(13967, 11042, '3', 'Madras university ', '', 'B.com general ', '2021', 71.00, '', 1, '2022-11-14 12:48:38', 0, NULL, 0, NULL, 1),
(13968, 11041, '3', 'Anna University ', '', 'B. E', '2014', 78.00, '', 1, '2022-11-14 12:50:53', 0, NULL, 0, NULL, 1),
(13969, 10967, '3', 'Anna university ', '', 'BE', '2022', 77.00, '', 1, '2022-11-14 12:53:01', 0, NULL, 0, NULL, 1),
(13970, 10967, '5', 'DOTE', '', 'Diploma', '2019', 77.00, '', 1, '2022-11-14 12:53:32', 0, NULL, 0, NULL, 1),
(13971, 10967, '1', 'CBSE ', '', '', '2016', 64.00, '', 1, '2022-11-14 12:53:56', 0, NULL, 0, NULL, 1),
(13972, 11043, '5', 'Anna University ', '', 'Computer engineering ', '2022', 89.00, '', 1, '2022-11-14 12:54:19', 0, NULL, 0, NULL, 1),
(13973, 11039, '3', 'Prist University,Thanjavur', '', 'B.Sc.Mathematics', '2021', 83.00, '', 1, '2022-11-14 01:05:22', 0, NULL, 0, NULL, 1),
(13974, 11039, '2', 'K.G.K.G.Girls.Hr.Secondary, School,Vederanyam', '', '', '2018', 68.00, '', 1, '2022-11-14 01:07:40', 0, NULL, 0, NULL, 1),
(13975, 11044, '3', 'Madurai kamaraj University ', '', 'Bsc Cs', '2020', 59.00, '', 1, '2022-11-14 01:26:09', 0, NULL, 0, NULL, 1),
(13976, 11038, '3', 'JCT college off Engineering and technology ', '', 'BE CSE', '2022', 7.90, '', 1, '2022-11-14 01:41:19', 0, NULL, 0, NULL, 1),
(13977, 11045, '4', 'Vishweswaraya university', '', 'MBA', '2021', 75.00, '', 1, '2022-11-14 02:05:10', 0, NULL, 0, NULL, 1),
(13978, 11045, '3', 'Bangalore university', '', 'B. Com', '2019', 82.00, '', 1, '2022-11-14 02:06:14', 0, NULL, 0, NULL, 1),
(13979, 11045, '2', 'PU borad', '', '', '2016', 70.13, '', 1, '2022-11-14 02:06:55', 0, NULL, 0, NULL, 1),
(13980, 11045, '1', 'School board', '', '', '2014', 80.00, '', 1, '2022-11-14 02:07:20', 0, NULL, 0, NULL, 1),
(13981, 10997, '3', 'pondicherry university', '', 'b.sc. agriculture', '2022', 78.90, '', 1, '2022-11-14 02:09:42', 0, NULL, 0, NULL, 1),
(13982, 10997, '2', 'state board ', '', '', '2018', 79.90, '', 1, '2022-11-14 02:11:19', 0, NULL, 0, NULL, 1),
(13983, 10997, '1', 'state board', '', '', '2016', 94.60, '', 1, '2022-11-14 02:11:46', 0, NULL, 0, NULL, 1),
(13984, 11047, '3', 'Anna university', '', 'BE', '2021', 7.89, '', 1, '2022-11-14 04:24:05', 0, NULL, 0, NULL, 1),
(13985, 11048, '4', 'Anna University ', '', 'MBA HR and Finance ', '2012', 60.00, '', 1, '2022-11-14 04:45:02', 0, NULL, 0, NULL, 1),
(13986, 11049, '3', 'Madras University ', '', 'B com', '2015', 75.00, '', 1, '2022-11-14 04:47:17', 0, NULL, 0, NULL, 1),
(13987, 11053, '3', 'Madras University ', '', 'B.C.A', '2022', 80.00, '', 1, '2022-11-14 06:23:05', 0, NULL, 0, NULL, 1),
(13988, 11053, '2', 'State board', '', '', '2019', 71.00, '', 1, '2022-11-14 06:23:48', 0, NULL, 0, NULL, 1),
(13989, 11053, '1', 'State board ', '', '', '2017', 89.00, '', 1, '2022-11-14 06:24:24', 0, NULL, 0, NULL, 1),
(13990, 11057, '3', 'anna university', '', 'b.tech', '2022', 75.40, '', 1, '2022-11-14 06:36:16', 1, '2022-11-14 06:37:17', 0, NULL, 0),
(13991, 11057, '2', 'state board', '', '', '2018', 54.83, '', 1, '2022-11-14 06:38:41', 1, '2022-11-14 06:41:15', 0, NULL, 1),
(13992, 11057, '2', 'state board', '', '', '2018', 54.83, '', 1, '2022-11-14 06:39:38', 1, '2022-11-14 06:41:13', 0, NULL, 0),
(13993, 11057, '3', 'anna university', '', 'b.tech', '2022', 75.40, '', 1, '2022-11-14 06:40:12', 0, NULL, 0, NULL, 1),
(13994, 11057, '1', 'state board', '', '', '2016', 72.40, '', 1, '2022-11-14 06:41:50', 0, NULL, 0, NULL, 1),
(13995, 11059, '4', 'madurai kamaraj university', '', 'mca', '2022', 70.00, '', 1, '2022-11-14 06:43:33', 0, NULL, 0, NULL, 1),
(13996, 11052, '4', 'madurai kamaraj university', '', 'master of computer application', '2022', 74.00, '', 1, '2022-11-14 06:43:33', 0, NULL, 0, NULL, 1),
(13997, 11059, '3', 'barathithasan university', '', 'b.sc cs', '2019', 61.00, '', 1, '2022-11-14 06:44:30', 1, '2022-11-14 06:46:22', 0, NULL, 1),
(13998, 11052, '1', 'tamilnadu state board', '', '', '2013', 88.00, '', 1, '2022-11-14 06:44:32', 1, '2022-11-14 06:44:53', 0, NULL, 0),
(13999, 11052, '3', 'madurai kamaraj university college', '', 'b.sc', '2018', 63.00, '', 1, '2022-11-14 06:46:08', 0, NULL, 0, NULL, 1),
(14000, 11059, '2', 'state board', '', '', '2016', 60.00, '', 1, '2022-11-14 06:46:10', 0, NULL, 0, NULL, 1),
(14001, 11052, '2', 'tamilnadu state board', '', '', '2015', 67.00, '', 1, '2022-11-14 06:47:28', 0, NULL, 0, NULL, 1),
(14002, 11059, '1', 'state board', '', '', '2013', 59.00, '', 1, '2022-11-14 06:47:30', 1, '2022-11-14 06:47:54', 0, NULL, 1),
(14003, 11052, '1', 'tamilnadu state board', '', '', '2013', 88.00, '', 1, '2022-11-14 06:47:57', 0, NULL, 0, NULL, 1),
(14004, 11058, '1', 'Cholan Matriculation Higher Secondary School. Kanchipuram -631 502', '', '', '2017', 90.40, '', 1, '2022-11-14 06:55:06', 0, NULL, 0, NULL, 1),
(14005, 11058, '2', 'Cholan Matriculation Higher secondary School. Kanchipuram. 631 502', '', '', '2019', 70.16, '', 1, '2022-11-14 06:56:38', 0, NULL, 0, NULL, 1),
(14006, 11058, '3', 'Sri Sankara Arts and Science College.Enathur, Kanchipuram.631 561', '', 'BCA', '2022', 7.49, '', 1, '2022-11-14 06:59:02', 0, NULL, 0, NULL, 1),
(14007, 11050, '3', 'Anna University', '', 'B.tech', '2022', 81.00, '', 1, '2022-11-14 07:00:29', 0, NULL, 0, NULL, 1),
(14008, 11061, '4', 'Anna University ', '', 'MBA. Finance ', '2022', 70.00, '', 1, '2022-11-14 07:08:33', 0, NULL, 0, NULL, 1),
(14009, 11061, '3', 'University of Madras ', '', 'BCom', '2020', 67.00, '', 1, '2022-11-14 07:09:12', 0, NULL, 0, NULL, 1),
(14010, 11061, '2', 'State board ', '', '', '2017', 73.00, '', 1, '2022-11-14 07:09:57', 0, NULL, 0, NULL, 1),
(14011, 11061, '1', 'State Board ', '', '', '2015', 75.00, '', 1, '2022-11-14 07:10:15', 0, NULL, 0, NULL, 1),
(14012, 10982, '3', 'Nil', '', '', '2022', 60.00, '', 60, '2022-11-14 07:10:46', 0, NULL, 0, NULL, 1),
(14013, 11055, '3', 'noorul islam centre for higher edcation', '', 'b.tech', '2022', 70.00, '', 1, '2022-11-14 10:18:29', 0, NULL, 0, NULL, 1),
(14014, 11055, '2', 'king universe matric hr sec school', '', '', '2018', 49.00, '', 1, '2022-11-14 10:20:23', 0, NULL, 0, NULL, 1),
(14015, 11055, '1', 'king universe matric hr sec school', '', '', '2016', 72.00, '', 1, '2022-11-14 10:21:30', 1, '2022-11-14 10:21:43', 0, NULL, 1),
(14016, 11068, '3', 'Kalasalingam University ', '', '', '2021', 69.00, '', 1, '2022-11-14 10:34:31', 0, NULL, 0, NULL, 1),
(14017, 11067, '4', 'Pondicherry university', '', 'MBA financial technology', '2022', 7.90, '', 1, '2022-11-14 10:58:13', 0, NULL, 0, NULL, 1),
(14018, 11067, '3', 'Bharathidasan university', '', 'BBA', '2020', 7.10, '', 1, '2022-11-14 10:59:40', 0, NULL, 0, NULL, 1),
(14019, 11070, '4', 'ANNA UNIVERSITY ', '', 'MBA', '2021', 83.00, '', 1, '2022-11-15 09:37:24', 0, NULL, 0, NULL, 1),
(14020, 11071, '1', 'Periyar', '', '', '2022', 60.00, '', 1, '2022-11-15 10:08:19', 0, NULL, 0, NULL, 1),
(14021, 11072, '3', 'St.joseph college of engineering ', '', 'BE cse', '2021', 7.39, '', 1, '2022-11-15 10:37:22', 0, NULL, 0, NULL, 1),
(14022, 11054, '3', 'Dhirajlal Gandhi College of Technology', '', 'B.E', '2021', 71.00, '', 1, '2022-11-15 10:46:20', 0, NULL, 0, NULL, 1),
(14023, 11069, '4', 'Delhi university ', '', 'pgpm', '2022', 84.00, '', 1, '2022-11-15 10:52:05', 0, NULL, 0, NULL, 1),
(14024, 11069, '3', 'Madras University ', '', 'Bcom', '2020', 75.00, '', 1, '2022-11-15 10:52:30', 0, NULL, 0, NULL, 1),
(14025, 11074, '3', 'Manonmaniyam University ', '', 'b.com (P.A)', '2021', 70.00, '', 1, '2022-11-15 11:27:34', 0, NULL, 0, NULL, 1),
(14026, 11076, '3', 'Prist university', '', 'Bca', '2022', 71.00, '', 1, '2022-11-15 11:34:46', 0, NULL, 0, NULL, 1),
(14027, 11078, '5', 'Alagappa institute of technology ', '', 'DEEE complete ', '2020', 70.00, '', 1, '2022-11-15 11:35:31', 0, NULL, 0, NULL, 1),
(14028, 11079, '3', 'Alagappa University ', '', 'BCA ', '2022', 69.00, '', 1, '2022-11-15 11:36:13', 0, NULL, 0, NULL, 1),
(14029, 11080, '3', 'Madras University ', '', 'Bsc Computer science ', '2020', 70.00, '', 1, '2022-11-15 11:55:37', 0, NULL, 0, NULL, 1),
(14030, 11082, '1', 'matriculation', '', '', '2012', 61.00, '', 1, '2022-11-15 12:48:17', 0, NULL, 0, NULL, 1),
(14031, 11082, '5', 'dote', '', '', '2016', 65.00, '', 1, '2022-11-15 12:48:39', 0, NULL, 0, NULL, 1),
(14032, 11081, '1', 'Matriculation ', '', '', '2013', 57.00, '', 1, '2022-11-15 12:49:02', 0, NULL, 0, NULL, 1),
(14033, 11081, '3', 'Madras university', '', 'Bca', '2016', 70.00, '', 1, '2022-11-15 12:49:31', 0, NULL, 0, NULL, 1),
(14034, 11081, '4', 'Anna university', '', 'Mba', '2023', 55.00, '', 1, '2022-11-15 12:50:01', 0, NULL, 0, NULL, 1),
(14035, 11085, '3', 'Madras university', '', 'Bca', '2020', 65.00, '', 1, '2022-11-15 05:13:02', 0, NULL, 0, NULL, 1),
(14036, 11086, '1', 'Stateboard', '', '', '2017', 86.20, '', 1, '2022-11-15 07:36:22', 0, NULL, 0, NULL, 1),
(14037, 11086, '2', 'Stateboard ', '', '', '2019', 64.50, '', 1, '2022-11-15 07:36:58', 0, NULL, 0, NULL, 1),
(14038, 11086, '3', 'Madras University ', '', 'BSc.Computer Science ', '2022', 82.00, '', 1, '2022-11-15 07:37:43', 1, '2022-11-15 07:38:10', 0, NULL, 1),
(14039, 11089, '3', 'madras university', '', 'bsc . computer science', '2022', 72.00, '', 1, '2022-11-15 08:51:30', 0, NULL, 0, NULL, 1),
(14040, 11090, '3', 'Sri venkateswar University ', '', 'B.cim(ca(', '2021', 7.80, '', 1, '2022-11-15 09:25:23', 0, NULL, 0, NULL, 1),
(14041, 11091, '3', 'Sri venkateswar University ', '', 'B.com(ca)', '2021', 7.80, '', 1, '2022-11-15 09:28:57', 0, NULL, 0, NULL, 1),
(14042, 11092, '3', 'Bharathidasan University', '', 'BCA', '2021', 8.50, '', 1, '2022-11-15 09:39:55', 1, '2022-11-15 09:40:09', 0, NULL, 0),
(14043, 11092, '2', 'St. Theresa\'s matric. Hr. Sec. School', '', '', '2018', 54.50, '', 1, '2022-11-15 09:41:29', 1, '2022-11-15 09:41:32', 0, NULL, 0),
(14044, 11092, '1', 'St. Theresa\'s matric. Hr. Sec. School', '', '', '2016', 81.20, '', 1, '2022-11-15 09:42:03', 0, NULL, 0, NULL, 1),
(14045, 11092, '2', 'St. Theresa\'s matric. Hr. Sec. School', '', '', '2018', 54.50, '', 1, '2022-11-15 09:42:27', 1, '2022-11-15 09:43:11', 0, NULL, 0),
(14046, 11092, '3', 'Bharathidasan University', '', 'BCA', '2021', 8.50, '', 1, '2022-11-15 09:42:49', 1, '2022-11-15 09:43:14', 0, NULL, 0),
(14047, 11092, '2', 'St. Theresa\'s matric. Hr. Sec. School', '', '', '2018', 54.50, '', 1, '2022-11-15 09:43:37', 0, NULL, 0, NULL, 1),
(14048, 11092, '3', 'Bharathidasan university', '', 'BCA', '2021', 8.50, '', 1, '2022-11-15 09:44:00', 0, NULL, 0, NULL, 1),
(14049, 11093, '3', 'Periyar University ', '', 'B com ', '2013', 60.00, '', 1, '2022-11-15 09:51:33', 0, NULL, 0, NULL, 1),
(14050, 11093, '2', 'State board ', '', '', '2010', 79.00, '', 1, '2022-11-15 09:52:12', 0, NULL, 0, NULL, 1),
(14051, 11093, '1', 'State board ', '', '', '2008', 60.00, '', 1, '2022-11-15 09:52:32', 0, NULL, 0, NULL, 1),
(14052, 11095, '3', 'Vikrama simhapuri university, nellore', '', 'B.com commerce', '2022', 92.00, '', 1, '2022-11-16 10:34:19', 0, NULL, 0, NULL, 1),
(14053, 11095, '1', 'ANDHRA PRADESH SCHOOL SECONDAY BOARD', '', '', '2013', 95.00, '', 1, '2022-11-16 10:35:05', 0, NULL, 0, NULL, 1),
(14054, 10916, '3', 'Madras', '', 'B.com (general)', '2022', 80.00, '', 1, '2022-11-16 10:35:46', 0, NULL, 0, NULL, 1),
(14055, 11095, '2', 'BOARD OF INTERMEDIATE EDUCATION ANDHARAPRADESH ', '', '', '2015', 92.00, '', 1, '2022-11-16 10:35:57', 0, NULL, 0, NULL, 1),
(14056, 10916, '2', 'State', '', '', '2019', 67.00, '', 1, '2022-11-16 10:36:38', 0, NULL, 0, NULL, 1),
(14057, 11096, '3', 'Anna University ', '', 'BE', '2022', 80.00, '', 1, '2022-11-16 11:01:50', 0, NULL, 0, NULL, 1),
(14058, 11094, '3', 'Anna University ', '', 'BE', '2022', 80.00, '', 1, '2022-11-16 11:08:33', 0, NULL, 0, NULL, 1),
(14059, 11056, '3', 'alagappa university', '', 'bsc computer science', '2020', 61.00, '', 1, '2022-11-16 11:43:16', 0, NULL, 0, NULL, 1),
(14060, 11098, '2', 'matric', '', '', '2010', 61.00, '', 1, '2022-11-16 12:14:54', 0, NULL, 0, NULL, 1),
(14061, 11098, '3', 'autonomous', '', 'bca', '2016', 62.00, '', 1, '2022-11-16 12:15:20', 0, NULL, 0, NULL, 1),
(14062, 11100, '2', 'state board', '', '', '2016', 52.00, '', 1, '2022-11-16 12:42:17', 0, NULL, 0, NULL, 1),
(14063, 11101, '3', 'Rayalaseema University ', '', 'B.com', '2001', 75.00, '', 1, '2022-11-16 01:06:23', 0, NULL, 0, NULL, 1),
(14064, 11101, '2', 'Board of intermediate ', '', '', '2016', 52.00, '', 1, '2022-11-16 01:06:54', 0, NULL, 0, NULL, 1),
(14065, 11101, '1', 'Board of secondary ', '', '', '2014', 50.00, '', 1, '2022-11-16 01:07:16', 0, NULL, 0, NULL, 1),
(14066, 11101, '5', 'Delhi University ', '', 'ITI ', '2018', 85.00, '', 1, '2022-11-16 01:08:09', 0, NULL, 0, NULL, 1),
(14067, 11102, '5', 'DIRECTATE OF TECHNICAL EDUCATION', '', '', '2005', 65.00, '', 1, '2022-11-16 02:34:32', 0, NULL, 0, NULL, 1),
(14068, 11051, '3', 'University College of engineering Tindivanam ', '', 'B.E', '2022', 74.00, '', 1, '2022-11-16 05:09:36', 0, NULL, 0, NULL, 1),
(14069, 11103, '3', 'University College of engineering-Tindivanam.', '', 'B.E.Civil engineering', '2022', 7.67, '', 1, '2022-11-16 05:40:51', 0, NULL, 0, NULL, 1),
(14070, 11105, '3', 'Anna University ', '', 'B.E', '2019', 76.00, '', 1, '2022-11-16 07:37:25', 0, NULL, 0, NULL, 1),
(14071, 11107, '3', 'KUVEMPU UNIVERSITY ', '', 'B.com', '2020', 58.00, '', 1, '2022-11-16 10:45:08', 0, NULL, 0, NULL, 1),
(14072, 11066, '3', 'Madras university', '', 'B. Sc computer science', '2023', 91.00, '', 1, '2022-11-17 09:39:14', 0, NULL, 0, NULL, 1),
(14073, 11109, '4', 'Bangalore', '', 'MBA', '2022', 80.00, '', 1, '2022-11-17 10:29:25', 0, NULL, 0, NULL, 1),
(14074, 11110, '3', 'Thiruvalluvar University, Vellore ', '', 'Bachelor of Arts In ENGLISH LITERATURE ', '2020', 68.00, '', 1, '2022-11-17 10:48:54', 0, NULL, 0, NULL, 1),
(14075, 11112, '3', 'Madras University ', '', 'B.com', '2018', 60.00, '', 1, '2022-11-17 11:28:36', 0, NULL, 0, NULL, 1),
(14076, 11114, '4', 'University ', '', 'M.com', '2022', 70.00, '', 1, '2022-11-17 11:32:46', 0, NULL, 0, NULL, 1),
(14077, 11111, '3', 'Loyola ', '', 'B.sc', '2020', 50.00, '', 1, '2022-11-17 11:36:28', 0, NULL, 0, NULL, 1),
(14078, 11113, '3', 'University ', '', 'B.com', '2018', 70.00, '', 1, '2022-11-17 11:40:14', 0, NULL, 0, NULL, 1),
(14079, 11115, '4', 'Vels University ', '', 'MCA', '2022', 82.23, '', 1, '2022-11-17 11:46:13', 0, NULL, 0, NULL, 1),
(14080, 11116, '3', 'Thiruvallur university ', '', 'B.Sc(Cs)', '2020', 70.00, '', 1, '2022-11-17 11:48:29', 0, NULL, 0, NULL, 1),
(14081, 11117, '3', 'University', '', 'B.Sc Pysics', '2022', 83.60, '', 1, '2022-11-17 11:51:22', 0, NULL, 0, NULL, 1),
(14082, 11118, '5', 'Miet', '', 'Engineering ', '2022', 85.00, '', 1, '2022-11-17 03:51:48', 0, NULL, 0, NULL, 1),
(14083, 10877, '3', 'puducherry technological university', '', 'information technology', '2022', 8.40, '', 1, '2022-11-17 05:29:24', 0, NULL, 0, NULL, 1),
(14084, 11119, '4', 'dr. m g r education and research institute of university', '', 'mca', '2022', 80.00, '', 1, '2022-11-17 05:32:41', 0, NULL, 0, NULL, 1),
(14085, 11119, '3', 'dr m g r education and research institude of university', '', 'bca', '2019', 80.00, '', 1, '2022-11-17 05:34:36', 0, NULL, 0, NULL, 1),
(14086, 11121, '2', 'Tamil Nadu ', '', '', '2014', 55.00, '', 1, '2022-11-17 06:47:38', 0, NULL, 0, NULL, 1),
(14087, 11121, '3', 'Bharadhiyar University ', '', 'B.com with CA', '2019', 60.00, '', 1, '2022-11-17 06:49:04', 0, NULL, 0, NULL, 1),
(14088, 11121, '4', 'Anna University ', '', 'MAB', '2022', 70.00, '', 1, '2022-11-17 06:49:54', 0, NULL, 0, NULL, 1),
(14089, 11123, '3', 'Vels University ', '', 'BE-ECE ', '2020', 64.20, '', 1, '2022-11-17 07:01:27', 0, NULL, 0, NULL, 1),
(14090, 11123, '1', 'Stateboard', '', '', '2014', 83.40, '', 1, '2022-11-17 07:02:06', 0, NULL, 0, NULL, 1),
(14091, 11123, '2', 'State board ', '', '', '2016', 62.00, '', 1, '2022-11-17 07:02:34', 0, NULL, 0, NULL, 1),
(14092, 11124, '1', 'State board ', '', '', '2014', 83.40, '', 1, '2022-11-17 07:05:19', 0, NULL, 0, NULL, 1),
(14093, 11124, '2', 'State board ', '', '', '2016', 62.00, '', 1, '2022-11-17 07:05:43', 0, NULL, 0, NULL, 1),
(14094, 11124, '3', 'State board ', '', 'BE-ECE ', '2020', 64.00, '', 1, '2022-11-17 07:06:29', 1, '2022-11-17 07:50:53', 0, NULL, 0),
(14095, 11125, '4', 'Periyar University salem', '', 'MBA ', '2022', 77.00, '', 1, '2022-11-17 07:17:06', 0, NULL, 0, NULL, 1),
(14096, 11124, '3', 'Vels University,pallavaram', '', 'BE-ECE ', '2020', 65.00, '', 1, '2022-11-17 07:51:44', 0, NULL, 0, NULL, 1),
(14097, 11127, '3', 'Adhiyamaan College of Engineering ', '', 'B. E(Mechanical Engineering)', '2021', 75.00, '', 1, '2022-11-17 08:09:58', 0, NULL, 0, NULL, 1),
(14098, 11127, '2', 'State Board ', '', '', '2017', 54.00, '', 1, '2022-11-17 08:10:21', 1, '2022-11-17 08:10:36', 0, NULL, 1),
(14099, 11127, '1', 'State Board ', '', '', '2015', 72.50, '', 1, '2022-11-17 08:10:51', 0, NULL, 0, NULL, 1),
(14100, 11108, '3', 'Manonmaniam Sundaranar University ', '', 'B.Sc.Information Technology ', '2021', 8.37, '', 1, '2022-11-17 08:17:24', 0, NULL, 0, NULL, 1),
(14101, 11126, '3', 'Manonmaniam sundaranar University ', '', 'Bsc Information Technology ', '2021', 8.17, '', 1, '2022-11-17 08:17:25', 0, NULL, 0, NULL, 1),
(14102, 11129, '3', 'Madras university', '', 'Bcom', '2019', 77.00, '', 1, '2022-11-18 11:04:50', 0, NULL, 0, NULL, 1),
(14103, 11132, '3', 'Bharathidasan University ', '', 'BBA', '2022', 80.00, '', 1, '2022-11-18 11:56:31', 0, NULL, 0, NULL, 1),
(14104, 11131, '3', 'Bharathidasan', '', 'Ba', '2022', 70.00, '', 1, '2022-11-18 12:00:10', 0, NULL, 0, NULL, 1),
(14105, 11137, '2', 'state board', '', '', '2019', 65.00, '', 1, '2022-11-18 12:01:38', 0, NULL, 0, NULL, 1),
(14106, 11137, '3', 'madras university', '', 'bcom corp', '2022', 86.00, '', 1, '2022-11-18 12:02:25', 0, NULL, 0, NULL, 1),
(14107, 11133, '3', 'Bharathidasan university', '', 'BA English', '2022', 73.32, '', 1, '2022-11-18 12:10:19', 0, NULL, 0, NULL, 1),
(14108, 11135, '3', 'Madras University ', '', 'BA(lm)', '2005', 60.00, '', 1, '2022-11-18 12:20:04', 0, NULL, 0, NULL, 1),
(14109, 11134, '3', 'Bharathithasan ', '', 'Bsc', '2004', 62.00, '', 1, '2022-11-18 12:28:00', 0, NULL, 0, NULL, 1),
(14110, 11138, '4', 'Periyar', '', 'Mca', '2014', 75.50, '', 1, '2022-11-18 12:31:13', 0, NULL, 0, NULL, 1),
(14111, 11140, '3', 'Kamaraj College of engineering and technology ', '', 'B.E', '2016', 57.50, '', 1, '2022-11-18 06:27:54', 0, NULL, 0, NULL, 1),
(14112, 11141, '3', 'Tamil Nadu Open University, Chennai ', '', 'B.A Criminology And Criminal Justice Administratio', '2021', 59.00, '', 1, '2022-11-19 09:35:27', 1, '2022-11-19 09:40:03', 0, NULL, 0),
(14113, 11141, '5', 'Softlogic Institute, KK Nagar ', '', 'Professional certificate in python Developer ', '2022', 90.00, '', 1, '2022-11-19 09:36:46', 0, NULL, 0, NULL, 1),
(14114, 11141, '4', 'Softlogic Institute(SLA), KK Nagar ', '', 'Professional Certificate In Full Stack Web Develop', '2022', 85.00, '', 1, '2022-11-19 09:40:40', 1, '2022-11-19 09:42:01', 0, NULL, 1),
(14115, 11141, '3', 'Tamil Nadu Open University, Chennai ', '', 'B.A Criminology And Criminal Justice Administratio', '2021', 59.00, '', 1, '2022-11-19 09:42:38', 0, NULL, 0, NULL, 1),
(14116, 11143, '3', 'Madras university', '', 'Bcom(General)', '2020', 75.00, '', 1, '2022-11-19 10:26:52', 0, NULL, 0, NULL, 1),
(14117, 11139, '4', 'periyar university', '', 'm.com', '2021', 83.00, '', 1, '2022-11-19 10:56:24', 0, NULL, 0, NULL, 1),
(14118, 11139, '4', 'periyar university', '', 'm.com', '2021', 83.00, '', 1, '2022-11-19 10:57:17', 0, NULL, 0, NULL, 1),
(14119, 11145, '2', 'state board', '', '', '2017', 66.00, '', 1, '2022-11-19 11:04:43', 0, NULL, 0, NULL, 1),
(14120, 11145, '5', 'dote', '', 'diploma automobile', '2018', 77.00, '', 1, '2022-11-19 11:05:10', 0, NULL, 0, NULL, 1),
(14121, 11146, '2', 'state board', '', '', '2012', 70.00, '', 1, '2022-11-19 11:08:49', 0, NULL, 0, NULL, 1),
(14122, 11142, '4', 'Amman arts &science ', '', 'Mca', '2022', 82.00, '', 1, '2022-11-19 11:09:12', 0, NULL, 0, NULL, 1),
(14123, 11146, '5', 'dipl', '', 'diploma eee', '2014', 76.00, '', 1, '2022-11-19 11:09:18', 0, NULL, 0, NULL, 1),
(14124, 11147, '3', 'Sri ganesh college selam', '', '', '2022', 72.00, '', 1, '2022-11-19 11:57:00', 0, NULL, 0, NULL, 1),
(14125, 11151, '3', 'Anna University ', '', 'B.E-EEE', '2022', 8.20, '', 1, '2022-11-20 12:48:34', 0, NULL, 0, NULL, 1),
(14126, 11151, '5', 'DOTE', '', 'DEEE', '2019', 84.00, '', 1, '2022-11-20 12:49:49', 0, NULL, 0, NULL, 1),
(14127, 11151, '1', 'STATE BOARD ', '', '', '2015', 85.00, '', 1, '2022-11-20 12:53:56', 0, NULL, 0, NULL, 1),
(14128, 11151, '2', 'STATE BOARD ', '', '', '2017', 57.00, '', 1, '2022-11-20 12:54:51', 0, NULL, 0, NULL, 1),
(14129, 11150, '4', 'Madras University', '', 'MBA', '2022', 75.00, '', 1, '2022-11-20 11:53:38', 0, NULL, 0, NULL, 1),
(14130, 11153, '3', 'Anna university', '', 'BE(CSE)', '2019', 63.00, '', 1, '2022-11-21 09:46:52', 0, NULL, 0, NULL, 1),
(14131, 11149, '1', 'state boa ', '', '', '2016', 81.00, '', 1, '2022-11-21 09:55:29', 0, NULL, 0, NULL, 1),
(14132, 11149, '2', 'higher sec school ', '', '', '2018', 67.00, '', 1, '2022-11-21 09:56:10', 0, NULL, 0, NULL, 1),
(14133, 11149, '3', 'anna university', '', 'b.tech information technolgy', '2022', 75.00, '', 1, '2022-11-21 09:57:17', 0, NULL, 0, NULL, 1),
(14134, 11154, '2', 'State board', '', '', '2016', 55.00, '', 1, '2022-11-21 10:13:34', 0, NULL, 0, NULL, 1),
(14135, 11156, '3', 'Erode sengunthar Engineering college ', '', 'B.E ', '2018', 70.00, '', 1, '2022-11-21 10:33:05', 0, NULL, 0, NULL, 1),
(14136, 11156, '4', 'Softlogic Institute,KK Nagar', '', 'Full Stack Web Development Using React js and Php', '2022', 90.00, '', 1, '2022-11-21 10:34:26', 0, NULL, 0, NULL, 1),
(14137, 11155, '5', 'Bharathiyar university', '', 'Msc agriculture technology', '2020', 69.00, '', 1, '2022-11-21 10:41:04', 0, NULL, 0, NULL, 1),
(14138, 11157, '1', 'state board', '', '', '2013', 88.40, '', 1, '2022-11-21 10:54:32', 0, NULL, 0, NULL, 1),
(14139, 11157, '2', 'State Board', '', '', '2015', 86.50, '', 1, '2022-11-21 10:55:29', 0, NULL, 0, NULL, 1),
(14140, 11157, '3', 'anna university', '', 'b.e', '2019', 6.65, '', 1, '2022-11-21 10:57:05', 0, NULL, 0, NULL, 1),
(14141, 11158, '3', 'thiruvalluvar university', '', '', '2021', 71.08, '', 1, '2022-11-21 11:01:06', 0, NULL, 0, NULL, 1),
(14142, 11152, '3', 'Madurai KAMARAJAR University ', '', 'Information Technology ', '2022', 75.00, '', 1, '2022-11-21 11:02:45', 0, NULL, 0, NULL, 1),
(14143, 11148, '3', 'Anna University ', '', '', '2022', 71.00, '', 1, '2022-11-21 11:22:40', 0, NULL, 0, NULL, 1),
(14144, 11162, '4', 'Bharathidasan', '', 'Mcom', '2022', 75.00, '', 1, '2022-11-21 11:40:41', 0, NULL, 0, NULL, 1),
(14145, 11163, '3', 'Madras university', '', 'B. COM', '2020', 74.00, '', 1, '2022-11-21 11:50:45', 0, NULL, 0, NULL, 1),
(14146, 11159, '3', 'Bharathidasan', '', 'Bcom', '2022', 80.00, '', 1, '2022-11-21 11:55:44', 0, NULL, 0, NULL, 1),
(14147, 11164, '3', 'Prist', '', 'Bsc', '2022', 86.00, '', 1, '2022-11-21 12:02:32', 0, NULL, 0, NULL, 1),
(14148, 11166, '3', 'MS University', '', 'Bsc Information Technology', '2021', 83.36, '', 1, '2022-11-21 12:04:07', 0, NULL, 0, NULL, 1),
(14149, 11165, '4', 'Bharathidasan University', '', 'B.sc, b.ed, m.sc purchasing', '2022', 83.50, '', 1, '2022-11-21 12:04:28', 0, NULL, 0, NULL, 1),
(14150, 11161, '3', 'Prist', '', 'Bsc', '2022', 90.00, '', 1, '2022-11-21 12:05:28', 0, NULL, 0, NULL, 1),
(14151, 11160, '3', 'Bharathidasan ', '', 'Bsc', '2022', 86.00, '', 1, '2022-11-21 12:09:51', 0, NULL, 0, NULL, 1),
(14152, 11165, '4', 'Bharathidasan University', '', 'B.sc, b.ed, msc purchasing', '2022', 83.50, '', 1, '2022-11-21 12:10:16', 0, NULL, 0, NULL, 1),
(14153, 11167, '3', 'MS university', '', 'Bsc computer science', '2021', 80.00, '', 1, '2022-11-21 12:12:18', 0, NULL, 0, NULL, 1),
(14154, 11130, '3', 'Deemend University ', '', 'B com', '2021', 70.00, '', 1, '2022-11-21 12:12:28', 0, NULL, 0, NULL, 1),
(14155, 11168, '3', 'Madras University ', '', 'B.com ( genral )', '2020', 60.00, '', 1, '2022-11-21 12:39:39', 0, NULL, 0, NULL, 1),
(14156, 11169, '4', 'Anna University ', '', 'MBA ', '2022', 72.00, '', 1, '2022-11-21 02:28:37', 0, NULL, 0, NULL, 1),
(14157, 11171, '3', 'Anna University ', '', 'Bachelor of engineering ', '2021', 76.90, '', 1, '2022-11-21 11:15:23', 0, NULL, 0, NULL, 1),
(14158, 11171, '2', 'Tamil nadu higher secondary examination ', '', '', '2017', 77.40, '', 1, '2022-11-21 11:15:58', 0, NULL, 0, NULL, 1),
(14159, 11171, '1', 'Tamilnadu state board exam', '', '', '2015', 95.20, '', 1, '2022-11-21 11:16:41', 0, NULL, 0, NULL, 1),
(14160, 11173, '3', 'BHARATHIYAR  UNIVERSITY', '', 'B. com', '2021', 62.00, '', 1, '2022-11-22 10:35:37', 0, NULL, 0, NULL, 1),
(14161, 11174, '3', 'sethu Institute of technology', '', 'be - computer science engineering', '2020', 69.70, '', 1, '2022-11-22 10:39:11', 0, NULL, 0, NULL, 1),
(14162, 11175, '3', 'Madras University ', '', 'B.com marketing management ', '2020', 65.00, '', 1, '2022-11-22 01:14:29', 0, NULL, 0, NULL, 1),
(14163, 6223, '3', 'Madras University ', '', 'Bcom', '2017', 65.00, '', 1, '2022-11-22 01:23:32', 0, NULL, 0, NULL, 1),
(14164, 6223, '2', 'Guntur subbiah pillai school ', '', '', '2012', 80.00, '', 1, '2022-11-22 01:24:11', 0, NULL, 0, NULL, 1),
(14165, 9761, '4', 'Anna University', '', 'Mba', '2019', 85.00, '', 1, '2022-11-22 03:51:00', 0, NULL, 0, NULL, 1),
(14166, 11177, '3', 'Anna university ', '', 'B.e', '2019', 6.95, '', 1, '2022-11-22 06:37:18', 0, NULL, 0, NULL, 1),
(14167, 11176, '4', 'bharathidasan university', '', 'm.sc', '2022', 93.00, '', 1, '2022-11-22 07:15:57', 0, NULL, 0, NULL, 1),
(14168, 11176, '3', 'university of  madras', '', 'b.sc', '2019', 53.00, '', 1, '2022-11-22 07:17:23', 0, NULL, 0, NULL, 1),
(14169, 11176, '2', 'state board', '', '', '2016', 56.00, '', 1, '2022-11-22 07:19:18', 0, NULL, 0, NULL, 1),
(14170, 11176, '1', 'state board', '', '', '2014', 69.00, '', 1, '2022-11-22 07:19:50', 0, NULL, 0, NULL, 1),
(14171, 11179, '3', 'Anna university ', '', 'B.e', '2022', 75.00, '', 1, '2022-11-22 11:07:59', 0, NULL, 0, NULL, 1),
(14172, 11180, '3', 'madras university', '', 'b.com', '2014', 69.00, '', 1, '2022-11-23 10:31:52', 0, NULL, 0, NULL, 1),
(14173, 11181, '3', 'Dr. MGR University ', '', 'B tech', '2022', 75.00, '', 1, '2022-11-23 11:15:47', 0, NULL, 0, NULL, 1),
(14174, 11182, '3', 'anna university', '', '', '2019', 70.00, '', 1, '2022-11-23 12:37:25', 0, NULL, 0, NULL, 1),
(14175, 11184, '3', 'Madras University ', '', 'Bachelor of computer science ', '2021', 74.35, '', 1, '2022-11-23 01:53:02', 0, NULL, 0, NULL, 1),
(14176, 11186, '3', 'Krishna University ', '', 'Bachelor  of technology ', '2021', 76.00, '', 1, '2022-11-23 06:23:22', 0, NULL, 0, NULL, 1),
(14177, 11186, '2', 'BIEAP', '', '', '2017', 98.00, '', 1, '2022-11-23 06:23:50', 0, NULL, 0, NULL, 1),
(14178, 11186, '1', 'SSC', '', '', '2015', 98.00, '', 1, '2022-11-23 06:24:26', 0, NULL, 0, NULL, 1),
(14179, 11188, '2', 'state board', '', '', '2017', 68.00, '', 1, '2022-11-24 10:06:10', 0, NULL, 0, NULL, 1),
(14180, 11188, '3', 'anna university', '', 'be ece', '2022', 79.00, '', 1, '2022-11-24 10:06:33', 0, NULL, 0, NULL, 1),
(14181, 11189, '2', 'state board', '', '', '2017', 65.00, '', 1, '2022-11-24 10:09:21', 0, NULL, 0, NULL, 1),
(14182, 11189, '3', 'anna university', '', 'be mech eng', '2022', 79.00, '', 1, '2022-11-24 10:09:48', 0, NULL, 0, NULL, 1),
(14183, 11191, '2', 'state board', '', '', '2015', 66.00, '', 1, '2022-11-24 10:12:31', 0, NULL, 0, NULL, 1),
(14184, 11192, '2', 'state board', '', '', '2013', 78.00, '', 1, '2022-11-24 10:17:06', 0, NULL, 0, NULL, 1),
(14185, 11192, '3', 'anna university', '', 'be', '2017', 79.00, '', 1, '2022-11-24 10:17:21', 0, NULL, 0, NULL, 1),
(14186, 11190, '3', 'Manonmanium Sundaranar University', '', 'Bachelor of Computer Application', '2012', 75.00, '', 1, '2022-11-24 10:17:52', 0, NULL, 0, NULL, 1),
(14187, 11193, '2', 'state board', '', '', '2014', 58.00, '', 1, '2022-11-24 10:45:42', 0, NULL, 0, NULL, 1),
(14188, 11193, '5', 'anna university', '', 'diploma', '2017', 72.00, '', 1, '2022-11-24 10:46:02', 0, NULL, 0, NULL, 1),
(14189, 11194, '2', 'state board', '', '', '2017', 76.00, '', 1, '2022-11-24 10:50:44', 0, NULL, 0, NULL, 1),
(14190, 11194, '3', 'madras', '', 'bsc', '2021', 82.00, '', 1, '2022-11-24 10:51:36', 0, NULL, 0, NULL, 1),
(14191, 11196, '4', 'Anna University ', '', 'MBA', '2021', 65.00, '', 1, '2022-11-24 11:05:44', 0, NULL, 0, NULL, 1),
(14192, 11195, '3', 'Madras University ', '', 'BBA', '2019', 67.30, '', 1, '2022-11-24 11:09:53', 0, NULL, 0, NULL, 1),
(14193, 11197, '3', 'University ', '', 'BE', '2022', 7.40, '', 1, '2022-11-24 11:17:07', 0, NULL, 0, NULL, 1),
(14194, 11198, '3', 'anna University ', '', 'bachelor of Engineering ', '2020', 72.00, '', 1, '2022-11-24 11:27:44', 0, NULL, 0, NULL, 1),
(14195, 11198, '4', 'alagappa University ', '', 'master of Business Administration ', '2022', 83.00, '', 1, '2022-11-24 11:29:15', 0, NULL, 0, NULL, 1),
(14196, 11199, '4', 'Bharathiyar University ', '', 'MBA(HR)', '2023', 75.00, '', 1, '2022-11-24 11:29:27', 0, NULL, 0, NULL, 1),
(14197, 11199, '3', 'Bannariamman institute of technology ', '', 'B.E (CSE)', '2020', 8.30, '', 1, '2022-11-24 11:30:07', 0, NULL, 0, NULL, 1),
(14198, 11201, '3', 'Vels university', '', 'BBA', '2021', 80.00, '', 1, '2022-11-24 11:41:19', 0, NULL, 0, NULL, 1),
(14199, 11202, '3', 'Board', '', 'Bsc mathematics', '2021', 73.00, '', 1, '2022-11-24 11:49:22', 0, NULL, 0, NULL, 1),
(14200, 11203, '3', 'Madras university', '', '', '2021', 63.00, '', 1, '2022-11-24 02:16:11', 0, NULL, 0, NULL, 1),
(14201, 11204, '1', 'Board of secondary education andhrapradesh', '', '', '2013', 40.00, '', 1, '2022-11-24 05:17:12', 0, NULL, 0, NULL, 1),
(14202, 11204, '2', 'Board of intermediate andhrapradesh', '', '', '2015', 45.00, '', 1, '2022-11-24 05:17:43', 0, NULL, 0, NULL, 1),
(14203, 11204, '3', 'Vikrama simhapuri university', '', 'B com', '2022', 62.00, '', 1, '2022-11-24 05:18:22', 0, NULL, 0, NULL, 1),
(14204, 11204, '4', 'Vikrama simhapuri university ', '', 'M.com ', '2022', 70.00, '', 1, '2022-11-24 05:18:58', 0, NULL, 0, NULL, 1),
(14205, 11187, '5', 'Bangalore university ', '', 'Diploma', '2015', 60.00, '', 1, '2022-11-24 06:56:36', 0, NULL, 0, NULL, 1),
(14206, 11208, '3', 'autonomous', '', 'b.com accounting finance', '2020', 60.00, '', 1, '2022-11-25 10:54:12', 0, NULL, 0, NULL, 1),
(14207, 11210, '3', 'Dr.MGR University ', '', 'B.tech', '2016', 66.00, '', 1, '2022-11-25 11:13:01', 0, NULL, 0, NULL, 1),
(14208, 11209, '3', 'Anna University ', '', 'B.tech', '2021', 78.00, '', 1, '2022-11-25 11:56:23', 0, NULL, 0, NULL, 1),
(14209, 11213, '4', 'Periyar manniammai ', '', 'MBA', '2022', 81.00, '', 1, '2022-11-25 12:25:19', 0, NULL, 0, NULL, 1),
(14210, 11212, '3', 'University Of Madras', '', 'B.Com (A/F)', '2021', 67.00, '', 1, '2022-11-25 12:32:25', 0, NULL, 0, NULL, 1),
(14211, 11206, '3', 'madras university', '', 'b.a history', '2022', 75.00, '', 1, '2022-11-25 12:39:17', 0, NULL, 0, NULL, 1),
(14212, 11211, '3', 'Tamiknadu University', '', 'BA', '2007', 74.00, '', 1, '2022-11-25 02:39:00', 0, NULL, 0, NULL, 1),
(14213, 11215, '3', 'Autonomous ', '', 'BSC physics ', '2022', 77.00, '', 1, '2022-11-25 02:45:06', 0, NULL, 0, NULL, 1),
(14214, 11214, '3', 'SDNB vaishnav college ', '', 'B.com general ', '2022', 70.36, '', 1, '2022-11-25 02:54:38', 0, NULL, 0, NULL, 1),
(14215, 11216, '3', 'S v University', '', 'B. Com in commerce', '2022', 80.00, '', 1, '2022-11-25 05:14:49', 0, NULL, 0, NULL, 1),
(14216, 11223, '3', 'anna university', '', 'bachelor of engineering', '2022', 79.00, '', 1, '2022-11-28 09:52:25', 0, NULL, 0, NULL, 1),
(14217, 11226, '3', 'Anna University ', '', 'BE EEE', '2021', 7.49, '', 1, '2022-11-28 10:28:56', 0, NULL, 0, NULL, 1),
(14218, 11225, '3', 'MADRAS UNIVERSITY', '', 'B.COM ( C.S) ', '2018', 65.00, '', 1, '2022-11-28 10:38:37', 0, NULL, 0, NULL, 1),
(14219, 11224, '3', 'Justice basher ahmed sayed ', '', 'B.com', '2020', 68.50, '', 1, '2022-11-28 10:56:36', 0, NULL, 0, NULL, 1),
(14220, 11227, '3', 'Valliammal college for women (madras university) ', '', 'Bsc. Mathematics ', '2022', 82.00, '', 1, '2022-11-28 10:59:38', 0, NULL, 0, NULL, 1),
(14221, 11227, '1', 'Tamil nadu ', '', '', '2017', 92.00, '', 1, '2022-11-28 11:00:56', 0, NULL, 0, NULL, 1),
(14222, 11228, '3', 'Bharathidasan ', '', 'Bba', '2022', 78.00, '', 1, '2022-11-28 11:05:29', 0, NULL, 0, NULL, 1),
(14223, 11229, '3', 'Madras university ', '', 'B.Com(G)', '2021', 74.00, '', 1, '2022-11-28 11:12:21', 0, NULL, 0, NULL, 1),
(14224, 11229, '2', 'State board ', '', '', '2018', 63.00, '', 1, '2022-11-28 11:12:48', 0, NULL, 0, NULL, 1),
(14225, 11232, '2', 'Board', '', '', '2018', 75.00, '', 1, '2022-11-28 11:19:19', 0, NULL, 0, NULL, 1),
(14226, 11231, '3', 'Madurai Kamaraj University ', '', 'Bcom (cA)', '2021', 74.00, '', 1, '2022-11-28 11:21:57', 0, NULL, 0, NULL, 1),
(14227, 11229, '1', 'State Board ', '', '', '2016', 75.00, '', 1, '2022-11-28 11:22:41', 0, NULL, 0, NULL, 1),
(14228, 11234, '3', 'Bharathiar University', '', 'B.com(banking & insurance)', '2022', 70.00, '', 1, '2022-11-28 11:26:03', 0, NULL, 0, NULL, 1),
(14229, 11222, '4', 'Bharathidasan', '', 'MBA', '2020', 69.00, '', 1, '2022-11-28 11:30:55', 0, NULL, 0, NULL, 1),
(14230, 11235, '3', 'Madrasa University ', '', 'B.com ', '2021', 76.40, '', 1, '2022-11-28 11:31:46', 0, NULL, 0, NULL, 1),
(14231, 11230, '3', 'bharathidasan university', '', 'bsc maths', '2021', 70.00, '', 1, '2022-11-28 11:33:09', 0, NULL, 0, NULL, 1),
(14232, 11233, '3', 'Kamaraj University', '', 'B.com CA', '2021', 65.00, '', 1, '2022-11-28 11:35:05', 0, NULL, 0, NULL, 1),
(14233, 11236, '3', 'Madras University ', '', 'B.com', '2012', 65.00, '', 1, '2022-11-28 11:40:07', 0, NULL, 0, NULL, 1),
(14234, 11238, '3', 'Madras University ', '', 'B.com', '2012', 60.00, '', 1, '2022-11-28 11:56:49', 0, NULL, 0, NULL, 1),
(14235, 11237, '3', 'Mother Teresa University kodaikanal', '', 'B.sc mathematics ', '2020', 73.00, '', 1, '2022-11-28 12:04:02', 0, NULL, 0, NULL, 1),
(14236, 11239, '3', 'Madras University ', '', 'BA(criminology police addmission)', '2022', 63.00, '', 1, '2022-11-28 12:36:54', 0, NULL, 0, NULL, 1),
(14237, 11240, '3', 'Bharathidasan   university', '', 'B.cOM ( computer applications)', '2022', 69.00, '', 1, '2022-11-28 12:51:28', 0, NULL, 0, NULL, 1),
(14238, 11242, '3', 'Anna university', '', 'BE', '2017', 70.00, '', 1, '2022-11-28 01:05:56', 0, NULL, 0, NULL, 1),
(14239, 11241, '3', 'Tamilnadu Open University ', '', 'BCA', '2023', 75.00, '', 1, '2022-11-28 01:14:00', 0, NULL, 0, NULL, 1),
(14240, 11243, '4', 'University of North bengal', '', 'Msc', '2017', 61.40, '', 1, '2022-11-28 02:48:16', 0, NULL, 0, NULL, 1),
(14241, 11245, '5', 'Mit polytechnic college mettur dam ', '', 'DME', '2017', 56.00, '', 1, '2022-11-28 06:34:37', 0, NULL, 0, NULL, 1),
(14242, 11246, '3', 'Madras university ', '', 'B.sc mathematics ', '2018', 6.31, '', 1, '2022-11-28 07:25:08', 0, NULL, 0, NULL, 1),
(14243, 11248, '4', 'Himdustan college of Engineering ', '', 'MCA', '2022', 70.00, '', 1, '2022-11-28 09:20:02', 0, NULL, 0, NULL, 1),
(14244, 11251, '4', 'Annamalai university', '', 'MBA', '2021', 65.00, '', 1, '2022-11-29 10:44:47', 0, NULL, 0, NULL, 1),
(14245, 11250, '3', 'apollo ', '', 'no', '2013', 50.00, '', 1, '2022-11-29 10:46:14', 0, NULL, 0, NULL, 1),
(14246, 11252, '1', 'MCC HR sec school ', '', '', '2018', 76.00, '', 1, '2022-11-29 10:53:41', 0, NULL, 0, NULL, 1),
(14247, 11253, '3', 'SRM institutions for training and development ', '', 'B.com ', '2020', 62.00, '', 1, '2022-11-29 11:19:55', 0, NULL, 0, NULL, 1),
(14248, 11254, '3', 'Pachaiyappas college ', '', 'Bcom', '2016', 50.00, '', 1, '2022-11-29 11:25:42', 0, NULL, 0, NULL, 1),
(14249, 11255, '3', 'srm university', '', 'b.com', '2021', 70.30, '', 1, '2022-11-29 11:52:05', 0, NULL, 0, NULL, 1),
(14250, 11247, '3', 'Bharathiyar university ', '', 'BCA', '2022', 72.00, '', 1, '2022-11-29 12:05:24', 0, NULL, 0, NULL, 1),
(14251, 11257, '4', 'Anna University ', '', 'MBA', '2021', 75.00, '', 1, '2022-11-29 12:28:45', 0, NULL, 0, NULL, 1),
(14252, 11257, '3', 'Madras University ', '', 'BA', '2019', 56.00, '', 1, '2022-11-29 12:29:30', 0, NULL, 0, NULL, 1),
(14253, 11258, '4', 'Crescent university', '', 'MCA', '2017', 71.00, '', 1, '2022-11-29 12:34:43', 0, NULL, 0, NULL, 1),
(14254, 11256, '3', 'Bharathidhasan University ', '', 'Bsc', '2022', 72.00, '', 1, '2022-11-29 12:35:03', 0, NULL, 0, NULL, 1),
(14255, 11258, '3', 'Madras university', '', 'BCA', '2015', 70.00, '', 1, '2022-11-29 12:35:11', 0, NULL, 0, NULL, 1),
(14256, 11258, '2', 'JGN Hr. Sec. School', '', '', '2012', 55.00, '', 1, '2022-11-29 12:36:03', 0, NULL, 0, NULL, 1),
(14257, 11258, '1', 'JGN. Hr. Sec. School', '', '', '2010', 50.00, '', 1, '2022-11-29 12:36:40', 0, NULL, 0, NULL, 1),
(14258, 11259, '3', 'Bharathidhasan University ', '', 'Bsc', '2022', 70.00, '', 1, '2022-11-29 12:39:43', 0, NULL, 0, NULL, 1),
(14259, 11260, '4', 'University of madras', '', 'Mba finance', '2021', 60.00, '', 1, '2022-11-29 12:56:38', 0, NULL, 0, NULL, 1),
(14260, 11261, '3', 'Anna university', '', '', '2022', 82.00, '', 1, '2022-11-29 03:35:06', 0, NULL, 0, NULL, 1),
(14261, 11262, '3', 'Anna University ', '', 'BE', '2021', 75.00, '', 1, '2022-11-29 03:55:28', 0, NULL, 0, NULL, 1),
(14262, 11264, '3', 'New prince Shri bhavani college of engineering and technology ', '', 'B.E', '2021', 77.00, '', 1, '2022-11-29 06:54:00', 0, NULL, 0, NULL, 1),
(14263, 11266, '3', 'Madras university', '', '', '2019', 65.00, '', 1, '2022-11-29 09:16:58', 0, NULL, 0, NULL, 1),
(14264, 11268, '3', 'Prist University ', '', 'Bsc computer science ', '2022', 75.00, '', 1, '2022-11-30 09:55:00', 0, NULL, 0, NULL, 1),
(14265, 11217, '3', 'Madras University ', '', 'Bsc physics ', '2022', 78.00, '', 1, '2022-11-30 09:57:46', 0, NULL, 0, NULL, 1),
(14266, 11270, '4', 'Bharathidasan university ', '', 'M.A. English literature ', '2022', 67.00, '', 1, '2022-11-30 10:32:14', 0, NULL, 0, NULL, 1),
(14267, 11269, '3', 'Anna university ', '', 'BE', '2016', 72.00, '', 1, '2022-11-30 10:37:11', 0, NULL, 0, NULL, 1),
(14268, 11271, '4', 'Anna University ', '', 'Mba', '2013', 69.00, '', 1, '2022-11-30 11:00:46', 0, NULL, 0, NULL, 1),
(14269, 11272, '3', 'Madras university ', '', 'B.com', '2019', 54.00, '', 1, '2022-11-30 11:30:42', 0, NULL, 0, NULL, 1),
(14270, 11274, '5', 'Govt of polytechnic', '', 'Diplom', '2020', 65.00, '', 1, '2022-11-30 11:51:51', 0, NULL, 0, NULL, 1),
(14271, 11273, '3', 'Queen  Mary\'s  college ', '', 'BSc clinical  nutrition  and dietician ', '2017', 45.00, '', 1, '2022-11-30 12:13:23', 0, NULL, 0, NULL, 1),
(14272, 11275, '3', 'Bharadidasan university trichirappalli', '', 'BA.ENGLISH', '2022', 73.00, '', 1, '2022-11-30 12:29:01', 0, NULL, 0, NULL, 1),
(14273, 11277, '3', 'Tiruvalluvar university', '', 'BCA', '2019', 75.00, '', 1, '2022-11-30 12:37:23', 0, NULL, 0, NULL, 1),
(14274, 11276, '3', 'Bharadidasan University trichirappalli', '', 'Bsc.computer Science', '2021', 70.00, '', 1, '2022-11-30 12:42:00', 0, NULL, 0, NULL, 1),
(14275, 11263, '1', 'State board', '', '', '2019', 75.00, '', 1, '2022-11-30 12:50:10', 0, NULL, 0, NULL, 1),
(14276, 11263, '2', 'State board', '', '', '2017', 70.00, '', 1, '2022-11-30 12:50:39', 0, NULL, 0, NULL, 1),
(14277, 11278, '4', 'Bharathiyar university ', '', 'Msc(cs)', '2022', 68.00, '', 1, '2022-11-30 01:00:28', 0, NULL, 0, NULL, 1),
(14278, 11205, '4', 'Anna university ', '', 'MBA', '2022', 70.00, '', 1, '2022-11-30 01:07:57', 0, NULL, 0, NULL, 1),
(14279, 11279, '2', 'State Board', '', '', '2016', 84.60, '', 1, '2022-11-30 02:36:16', 0, NULL, 0, NULL, 1),
(14280, 11280, '3', 'University ', '', 'B com cs', '2022', 61.00, '', 1, '2022-11-30 02:58:58', 0, NULL, 0, NULL, 1),
(14281, 11281, '3', 'Sri kanyaka parameshwari Arts and Science college ', '', 'B. Com', '2020', 82.00, '', 1, '2022-11-30 02:59:06', 0, NULL, 0, NULL, 1),
(14282, 11282, '3', 'Thiruvalluvar university ', '', 'BCA(Bachelor of computer Application )', '2022', 78.00, '', 1, '2022-11-30 03:29:43', 0, NULL, 0, NULL, 1),
(14283, 11283, '3', 'SRM UNIVERSITY ', '', 'B.COM(GENERAL)', '2022', 71.00, '', 1, '2022-11-30 07:25:25', 0, NULL, 0, NULL, 1),
(14284, 11284, '3', 'Sss.shasun jain college for women', '', 'B.com ', '2021', 72.00, '', 1, '2022-11-30 07:33:55', 0, NULL, 0, NULL, 1),
(14285, 11285, '1', 'central board of secondary education', '', '', '2017', 88.00, '', 1, '2022-11-30 09:55:49', 0, NULL, 0, NULL, 1),
(14286, 11285, '2', 'Central Board Of Secondary Education', '', '', '2019', 72.00, '', 1, '2022-11-30 09:56:24', 0, NULL, 0, NULL, 1),
(14287, 11285, '3', 'Bharathidasan University', '', 'bachelor of commerce', '2022', 84.00, '', 1, '2022-11-30 10:01:18', 0, NULL, 0, NULL, 1),
(14288, 11286, '3', 'Madras University ', '', 'B com ', '2022', 64.00, '', 1, '2022-12-01 04:29:03', 0, NULL, 0, NULL, 1),
(14289, 11287, '2', 'state board', '', '', '2015', 80.00, '', 1, '2022-12-01 09:34:22', 0, NULL, 0, NULL, 1),
(14290, 11287, '3', 'anna university', '', 'be', '2019', 70.00, '', 1, '2022-12-01 09:34:43', 0, NULL, 0, NULL, 1),
(14291, 11288, '1', 'Board', '', '', '2015', 75.00, '', 1, '2022-12-01 10:20:21', 0, NULL, 0, NULL, 1),
(14292, 11288, '5', 'Dote', '', 'DEEEE', '2018', 78.00, '', 1, '2022-12-01 10:22:21', 0, NULL, 0, NULL, 1),
(14293, 11288, '3', 'Vinayaga mission  university', '', 'BE', '2022', 88.00, '', 1, '2022-12-01 10:23:02', 0, NULL, 0, NULL, 1),
(14294, 11289, '3', 'KS Rangasamy college of arts and science', '', 'B.sc computer science', '2020', 65.00, '', 1, '2022-12-01 10:28:26', 0, NULL, 0, NULL, 1),
(14295, 11290, '4', 'Madras University ', '', 'MBA', '2016', 67.00, '', 1, '2022-12-01 10:37:33', 0, NULL, 0, NULL, 1),
(14296, 11292, '3', 'Bharathidhasan University Trichy', '', 'Bsc', '2022', 60.00, '', 1, '2022-12-01 10:51:54', 0, NULL, 0, NULL, 1),
(14297, 11291, '3', 'madras university', '', 'bcom', '2021', 77.00, '', 1, '2022-12-01 11:04:52', 0, NULL, 0, NULL, 1),
(14298, 11295, '3', 'vignanasudha degree college', '', 'b.com', '2020', 70.00, '', 1, '2022-12-01 11:26:31', 0, NULL, 0, NULL, 1),
(14299, 11294, '3', 'Shri shankarlal Sundar Bai Shasun Jain college ', '', 'Ba English ', '2022', 70.00, '', 1, '2022-12-01 11:37:10', 0, NULL, 0, NULL, 1),
(14300, 11296, '4', 'Madurai kamarajar university madurai', '', 'Mathematics ', '2020', 60.00, '', 1, '2022-12-01 12:52:45', 0, NULL, 0, NULL, 1),
(14301, 11297, '3', 'Anna University ', '', 'B tech', '2017', 61.20, '', 1, '2022-12-01 01:04:23', 0, NULL, 0, NULL, 1),
(14302, 11298, '3', 'University of madras', '', 'B. Com', '2017', 76.00, '', 1, '2022-12-01 01:28:07', 0, NULL, 0, NULL, 1),
(14303, 11300, '3', 'Anna University ', '', 'BE CSE', '2018', 70.00, '', 1, '2022-12-01 03:54:14', 0, NULL, 0, NULL, 1),
(14304, 11301, '3', 'Jeppiar Maamallan Engineering College ', '', 'B.E', '2019', 68.00, '', 1, '2022-12-01 04:29:40', 0, NULL, 0, NULL, 1),
(14305, 11302, '2', 'state board', '', '', '2017', 82.00, '', 1, '2022-12-01 06:32:14', 0, NULL, 0, NULL, 1),
(14306, 11302, '4', 'alagappa university', '', 'msc cs', '2022', 75.00, '', 1, '2022-12-01 06:32:38', 0, NULL, 0, NULL, 1),
(14307, 11303, '3', 'madras university', '', 'bcom', '2023', 65.00, '', 1, '2022-12-01 06:37:00', 0, NULL, 0, NULL, 1),
(14308, 11304, '1', 'state board', '', '', '2010', 51.00, '', 1, '2022-12-01 06:43:52', 0, NULL, 0, NULL, 1),
(14309, 11304, '3', 'madras', '', 'bca', '2021', 61.00, '', 1, '2022-12-01 06:44:14', 0, NULL, 0, NULL, 1),
(14310, 11306, '2', 'state board', '', '', '2018', 67.00, '', 1, '2022-12-01 06:49:20', 0, NULL, 0, NULL, 1),
(14311, 11306, '3', 'madurai kamaraj university', '', 'bsc maths', '2021', 63.00, '', 1, '2022-12-01 06:50:03', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14312, 11310, '4', 'Jntu anantapur', '', 'MBA', '2017', 65.00, '', 1, '2022-12-02 09:38:35', 0, NULL, 0, NULL, 1),
(14313, 11310, '3', 'Jntu university', '', 'Btech it', '2014', 63.00, '', 1, '2022-12-02 09:39:11', 0, NULL, 0, NULL, 1),
(14314, 11310, '2', 'State board', '', '', '2010', 62.00, '', 1, '2022-12-02 09:39:33', 0, NULL, 0, NULL, 1),
(14315, 11310, '1', 'State board', '', '', '2008', 59.00, '', 1, '2022-12-02 09:39:57', 0, NULL, 0, NULL, 1),
(14316, 11305, '4', 'Madras university', '', 'M.com', '2022', 60.00, '', 1, '2022-12-02 09:40:48', 0, NULL, 0, NULL, 1),
(14317, 11312, '3', 'University of Madras ', '', 'B.com', '2021', 71.00, '', 1, '2022-12-02 10:59:01', 0, NULL, 0, NULL, 1),
(14318, 11312, '2', 'State board ', '', '', '2018', 73.00, '', 1, '2022-12-02 10:59:56', 1, '2022-12-02 11:01:50', 0, NULL, 0),
(14319, 11312, '1', 'State board ', '', '', '2015', 72.00, '', 1, '2022-12-02 11:00:36', 1, '2022-12-02 11:01:14', 0, NULL, 0),
(14320, 11312, '1', 'State board ', '', '', '2015', 72.00, '', 1, '2022-12-02 11:01:36', 0, NULL, 0, NULL, 1),
(14321, 11312, '2', 'State board ', '', '', '2018', 73.00, '', 1, '2022-12-02 11:02:15', 0, NULL, 0, NULL, 1),
(14322, 11308, '3', 'Madras University ', '', 'Bcom (A&F)', '2022', 87.00, '', 1, '2022-12-02 11:22:15', 1, '2022-12-02 11:22:35', 0, NULL, 0),
(14323, 11309, '3', 'Anna University ', '', 'B.E Electronics and communication engineering ', '2023', 8.28, '', 1, '2022-12-02 11:22:31', 1, '2022-12-02 11:22:58', 0, NULL, 0),
(14324, 11308, '1', 'CBSE', '', '', '2017', 90.00, '', 1, '2022-12-02 11:23:24', 0, NULL, 0, NULL, 1),
(14325, 11309, '1', 'CBSE', '', '', '2017', 53.00, '', 1, '2022-12-02 11:23:30', 1, '2022-12-02 11:24:58', 0, NULL, 1),
(14326, 11308, '2', 'CBSE', '', '', '2019', 75.00, '', 1, '2022-12-02 11:23:45', 0, NULL, 0, NULL, 1),
(14327, 11309, '2', 'STATE BOARD ', '', '', '2019', 65.00, '', 1, '2022-12-02 11:23:46', 0, NULL, 0, NULL, 1),
(14328, 11308, '3', 'Madras University ', '', 'Bcom (A&F)', '2022', 87.00, '', 1, '2022-12-02 11:24:18', 0, NULL, 0, NULL, 1),
(14329, 11309, '3', 'Anna University ', '', 'B.E Electronics and communication engineering ', '2023', 82.00, '', 1, '2022-12-02 11:24:36', 0, NULL, 0, NULL, 1),
(14330, 11313, '3', 'autonomus', '', 'bsc physics', '2018', 75.00, '', 1, '2022-12-02 12:00:41', 0, NULL, 0, NULL, 1),
(14331, 11314, '4', 'Bharathiar university ', '', 'M.com', '2017', 74.00, '', 1, '2022-12-02 12:05:23', 0, NULL, 0, NULL, 1),
(14332, 11316, '3', 'thiruvalluvar University ', '', 'Bsc chemistry ', '2021', 73.00, '', 1, '2022-12-02 12:11:23', 0, NULL, 0, NULL, 1),
(14333, 11317, '4', 'madras university', '', 'mcom', '2022', 65.00, '', 1, '2022-12-02 12:18:51', 0, NULL, 0, NULL, 1),
(14334, 11318, '3', 'Thiruvallur University', '', 'BA', '2022', 75.00, '', 1, '2022-12-02 12:50:38', 0, NULL, 0, NULL, 1),
(14335, 7916, '4', 'Nehru Institute of information technology and management ', '', 'MCA', '2020', 70.00, '', 1, '2022-12-03 10:00:15', 0, NULL, 0, NULL, 1),
(14336, 11320, '3', 'dr mgr university ', '', 'b.tech ', '2019', 65.00, '', 1, '2022-12-03 10:28:58', 0, NULL, 0, NULL, 1),
(14337, 11321, '5', 'Dote', '', 'Cse', '2016', 63.00, '', 1, '2022-12-03 10:50:13', 0, NULL, 0, NULL, 1),
(14338, 11322, '5', 'DOTE', '', 'Petrochemical engineering ', '2019', 72.00, '', 1, '2022-12-03 10:55:10', 0, NULL, 0, NULL, 1),
(14339, 11323, '5', 'Anna university ', '', 'D EEE', '2017', 59.00, '', 1, '2022-12-03 11:08:11', 0, NULL, 0, NULL, 1),
(14340, 11324, '3', 'Sir thegaraya college', '', 'Bcom', '2022', 62.00, '', 1, '2022-12-03 12:18:31', 0, NULL, 0, NULL, 1),
(14341, 11319, '3', 'Autonomous ', '', 'B.Com general', '2022', 82.00, '', 1, '2022-12-03 12:23:01', 0, NULL, 0, NULL, 1),
(14342, 11319, '2', 'Santhome higher secondary school ', '', '', '2019', 80.00, '', 1, '2022-12-03 12:23:46', 0, NULL, 0, NULL, 1),
(14343, 11319, '1', 'Santhome higher secondary school ', '', '', '2017', 81.00, '', 1, '2022-12-03 12:24:23', 0, NULL, 0, NULL, 1),
(14344, 11325, '5', 'Irt poitechnic college', '', 'Dipoloma', '2020', 75.00, '', 1, '2022-12-03 12:29:32', 0, NULL, 0, NULL, 1),
(14345, 11326, '3', 'Rajasthan Technical University ', '', 'B.Tech', '2022', 82.40, '', 1, '2022-12-03 01:37:26', 0, NULL, 0, NULL, 1),
(14346, 11326, '2', 'Jharkhand Academic Council ', '', '', '2017', 66.80, '', 1, '2022-12-03 01:38:07', 0, NULL, 0, NULL, 1),
(14347, 11328, '3', 'K s r college of engineering ', '', 'BE', '2018', 65.00, '', 1, '2022-12-03 03:23:50', 0, NULL, 0, NULL, 1),
(14348, 11329, '3', 'Madras University', '', 'B.Sc Computer science', '2018', 55.00, '', 1, '2022-12-03 03:33:33', 0, NULL, 0, NULL, 1),
(14349, 11333, '3', 'K s r college of engineering ', '', 'BE', '2018', 65.00, '', 1, '2022-12-04 07:08:27', 0, NULL, 0, NULL, 1),
(14350, 11334, '3', 'Anna university ', '', 'BTech IT ', '2017', 6.70, '', 1, '2022-12-04 10:03:52', 0, NULL, 0, NULL, 1),
(14351, 11335, '3', 'University of madras', '', 'B. Sc computer science ', '2021', 77.64, '', 1, '2022-12-05 10:23:18', 0, NULL, 0, NULL, 1),
(14352, 11337, '3', 'Madras University ', '', 'B.com', '2021', 68.00, '', 1, '2022-12-05 11:12:28', 0, NULL, 0, NULL, 1),
(14353, 11339, '3', 'UNIVERSITY OF mADRAS', '', 'B.COM', '2021', 68.00, '', 1, '2022-12-05 11:12:49', 0, NULL, 0, NULL, 1),
(14354, 11341, '3', 'Bharayhidasa', '', 'B. Com ca', '2020', 62.00, '', 1, '2022-12-05 11:20:45', 0, NULL, 0, NULL, 1),
(14355, 11342, '3', 'Madras university ', '', 'BCA', '2018', 65.00, '', 1, '2022-12-05 11:38:00', 0, NULL, 0, NULL, 1),
(14356, 11338, '4', 'Chellamal women\'s college ', '', 'MA tamil', '2022', 72.00, '', 1, '2022-12-05 11:44:25', 0, NULL, 0, NULL, 1),
(14357, 11340, '3', 'madras university ', '', 'bcom accounting and financial ', '2017', 75.00, '', 1, '2022-12-05 11:44:35', 0, NULL, 0, NULL, 1),
(14358, 11331, '3', 'anna university', '', 'b.e', '2018', 65.00, '', 1, '2022-12-05 12:33:52', 0, NULL, 0, NULL, 1),
(14359, 11331, '2', 'state  board', '', '', '2014', 90.00, '', 1, '2022-12-05 12:35:03', 0, NULL, 0, NULL, 1),
(14360, 11331, '1', 'state board', '', '', '2012', 83.00, '', 1, '2022-12-05 12:35:24', 0, NULL, 0, NULL, 1),
(14361, 11343, '3', 'Periyar maniyamai institute of science and technology ', '', 'B.com', '2019', 65.00, '', 1, '2022-12-05 12:35:28', 0, NULL, 0, NULL, 1),
(14362, 11344, '3', 'Madras University ', '', 'Bcom ism ', '2020', 87.00, '', 1, '2022-12-05 12:55:33', 0, NULL, 0, NULL, 1),
(14363, 11349, '4', 'Madras university', '', 'M.com', '2022', 75.00, '', 1, '2022-12-06 09:09:46', 0, NULL, 0, NULL, 1),
(14364, 11350, '3', 'Madras University ', '', 'B.com', '2018', 78.00, '', 1, '2022-12-06 10:14:56', 0, NULL, 0, NULL, 1),
(14365, 11351, '4', 'Pondicherry University ', '', 'MBA', '2020', 65.00, '', 1, '2022-12-06 10:59:20', 0, NULL, 0, NULL, 1),
(14366, 11352, '3', 'Periyar maniyammai University ', '', 'B.com ', '2019', 60.00, '', 1, '2022-12-06 11:18:08', 0, NULL, 0, NULL, 1),
(14367, 11353, '4', 'Pondicherry University ', '', 'MBA', '2022', 57.00, '', 1, '2022-12-06 11:44:20', 0, NULL, 0, NULL, 1),
(14368, 11307, '3', 'Msu University ', '', 'Bsc it', '2022', 79.00, '', 1, '2022-12-06 12:19:12', 0, NULL, 0, NULL, 1),
(14369, 11354, '4', 'Madras University ', '', 'MBA ', '2022', 80.00, '', 1, '2022-12-06 12:22:31', 0, NULL, 0, NULL, 1),
(14370, 11355, '3', 'MS University', '', 'BCA', '2022', 80.00, '', 1, '2022-12-06 12:22:34', 0, NULL, 0, NULL, 1),
(14371, 11356, '3', 'Anna University ', '', 'BE Mechanical ', '2020', 64.00, '', 1, '2022-12-06 01:11:14', 0, NULL, 0, NULL, 1),
(14372, 11357, '4', 'Bharathidasan University ', '', 'Master of computer science ', '2021', 80.00, '', 1, '2022-12-06 02:22:24', 0, NULL, 0, NULL, 1),
(14373, 11357, '3', 'Bharathidasan University ', '', 'Bachelor of Computer Applications ', '2019', 82.00, '', 1, '2022-12-06 02:23:32', 0, NULL, 0, NULL, 1),
(14374, 11357, '2', 'State', '', '', '2016', 73.00, '', 1, '2022-12-06 02:24:00', 0, NULL, 0, NULL, 1),
(14375, 11357, '1', 'State', '', '', '2014', 65.00, '', 1, '2022-12-06 02:24:13', 0, NULL, 0, NULL, 1),
(14376, 11358, '5', 'Majathama technology  engineering ', '', 'Ac', '2010', 80.00, '', 1, '2022-12-06 02:59:20', 0, NULL, 0, NULL, 1),
(14377, 11359, '4', 'iikm business school', '', 'mba', '2019', 58.00, '', 1, '2022-12-06 04:32:16', 0, NULL, 0, NULL, 1),
(14378, 11360, '3', 'madras university', '', 'bsc. computer science', '2020', 65.00, '', 1, '2022-12-06 04:49:34', 0, NULL, 0, NULL, 1),
(14379, 11361, '4', 'Bharadhidasan ', '', 'Mca', '2020', 74.00, '', 1, '2022-12-07 10:23:54', 0, NULL, 0, NULL, 1),
(14380, 11363, '3', 'Aalagappa University ', '', 'B.a history ', '2018', 45.00, '', 1, '2022-12-07 10:44:53', 0, NULL, 0, NULL, 1),
(14381, 11362, '3', 'university of madras', '', 'b.com a/f', '2018', 70.00, '', 1, '2022-12-07 10:48:17', 0, NULL, 0, NULL, 1),
(14382, 11365, '3', 'University ', '', 'Bsc.viscom', '2018', 70.00, '', 1, '2022-12-07 11:04:27', 0, NULL, 0, NULL, 1),
(14383, 11366, '3', 'Vels University ', '', 'BA English ', '2021', 68.00, '', 1, '2022-12-07 11:27:43', 0, NULL, 0, NULL, 1),
(14384, 11367, '2', 'state board', '', '', '2016', 71.00, '', 1, '2022-12-07 11:49:07', 0, NULL, 0, NULL, 1),
(14385, 11367, '3', 'anna university', '', 'be', '2020', 63.00, '', 1, '2022-12-07 11:49:23', 0, NULL, 0, NULL, 1),
(14386, 11368, '3', 'University', '', 'Computer science and Engineering', '2020', 75.00, '', 1, '2022-12-07 12:23:43', 0, NULL, 0, NULL, 1),
(14387, 11370, '3', 'Madras university ', '', 'B. Com', '2202', 60.00, '', 1, '2022-12-07 12:35:02', 0, NULL, 0, NULL, 1),
(14388, 11369, '3', 'karpagan university', '', 'becse', '2020', 75.00, '', 1, '2022-12-07 01:01:33', 0, NULL, 0, NULL, 1),
(14389, 11330, '3', 'madras unversity', '', 'b.com', '2022', 60.00, '', 1, '2022-12-07 01:18:33', 0, NULL, 0, NULL, 1),
(14390, 11371, '3', 'SRM', '', 'B. Com', '2020', 72.80, '', 1, '2022-12-07 02:12:48', 0, NULL, 0, NULL, 1),
(14391, 11371, '2', 'State', '', '', '2017', 84.60, '', 1, '2022-12-07 02:13:07', 0, NULL, 0, NULL, 1),
(14392, 11371, '1', 'State', '', '', '2015', 77.40, '', 1, '2022-12-07 02:13:23', 0, NULL, 0, NULL, 1),
(14393, 11377, '3', 'Alagappa university', '', 'B. Sc, B. Ed', '2019', 78.00, '', 1, '2022-12-07 10:31:27', 0, NULL, 0, NULL, 1),
(14394, 11376, '3', 'Apollo Engineering college', '', 'BE', '2022', 7.39, '', 1, '2022-12-08 10:51:32', 0, NULL, 0, NULL, 1),
(14395, 11374, '3', 'university of madras', '', 'BBA', '2020', 75.00, '', 1, '2022-12-08 11:14:07', 0, NULL, 0, NULL, 1),
(14396, 11375, '2', 'Madras University ', '', '', '2021', 66.00, '', 1, '2022-12-08 11:19:37', 0, NULL, 0, NULL, 1),
(14397, 11378, '3', 'madras university', '', 'bsc computer science', '2017', 73.00, '', 1, '2022-12-08 11:58:46', 0, NULL, 0, NULL, 1),
(14398, 11379, '3', 'Madras university', '', 'BSC computer science', '2021', 70.00, '', 1, '2022-12-08 12:08:31', 0, NULL, 0, NULL, 1),
(14399, 11380, '3', 'Periyar university', '', 'Bcs chemistry', '2021', 69.00, '', 1, '2022-12-08 12:20:11', 0, NULL, 0, NULL, 1),
(14400, 11381, '3', 'University of Madras ', '', 'B.a', '2021', 72.00, '', 1, '2022-12-08 12:56:31', 0, NULL, 0, NULL, 1),
(14401, 11382, '3', 'Anna university', '', 'BE', '2019', 60.00, '', 1, '2022-12-08 04:56:25', 0, NULL, 0, NULL, 1),
(14402, 11383, '1', 'State Board ', '', '', '2015', 83.00, '', 1, '2022-12-08 05:23:03', 0, NULL, 0, NULL, 1),
(14403, 11383, '2', 'State Board ', '', '', '2017', 69.00, '', 1, '2022-12-08 05:23:35', 0, NULL, 0, NULL, 1),
(14404, 11383, '3', 'Anna University ', '', 'B.E', '2021', 72.00, '', 1, '2022-12-08 05:23:59', 0, NULL, 0, NULL, 1),
(14405, 11384, '3', 'Anna University City ', '', 'BE(Mechanical engineering)', '2021', 75.30, '', 1, '2022-12-08 05:34:32', 0, NULL, 0, NULL, 1),
(14406, 11384, '2', 'Status bord', '', '', '2017', 70.00, '', 1, '2022-12-08 05:35:22', 0, NULL, 0, NULL, 1),
(14407, 11385, '4', 'Anna university ', '', 'mca', '2022', 78.00, '', 1, '2022-12-09 12:02:48', 0, NULL, 0, NULL, 1),
(14408, 11385, '3', 'madras University ', '', 'bca', '2018', 70.00, '', 1, '2022-12-09 12:03:38', 0, NULL, 0, NULL, 1),
(14409, 11387, '3', 'Anna university', '', 'BE- Computer Science', '2020', 70.00, '', 1, '2022-12-09 11:14:44', 0, NULL, 0, NULL, 1),
(14410, 11388, '4', 'University of madras', '', 'MBA', '2022', 75.00, '', 1, '2022-12-09 12:05:39', 0, NULL, 0, NULL, 1),
(14411, 11390, '3', 'Am jain collage', '', 'BA public administration', '2022', 80.00, '', 1, '2022-12-09 12:33:02', 0, NULL, 0, NULL, 1),
(14412, 11394, '2', 'Tamil nadu', '', '', '2014', 96.10, '', 1, '2022-12-10 10:48:09', 0, NULL, 0, NULL, 1),
(14413, 11393, '5', 'Anna University', '', 'Diploma in electrical and electronics engineering', '2018', 71.00, '', 1, '2022-12-10 10:50:09', 0, NULL, 0, NULL, 1),
(14414, 11398, '3', 'Anna University', '', 'B. E', '2019', 70.00, '', 1, '2022-12-10 11:58:39', 0, NULL, 0, NULL, 1),
(14415, 11396, '3', 'Bharathiar University ', '', 'BCA ', '2017', 60.00, '', 1, '2022-12-10 12:07:27', 0, NULL, 0, NULL, 1),
(14416, 11395, '3', 'Anna University', '', 'BE Electronics and communication engineering', '2022', 80.00, '', 1, '2022-12-10 12:07:40', 0, NULL, 0, NULL, 1),
(14417, 11397, '3', 'Anna University ', '', 'BE', '2022', 80.00, '', 1, '2022-12-10 12:11:16', 0, NULL, 0, NULL, 1),
(14418, 11399, '3', 'madras university', '', 'b.e', '2020', 68.00, '', 1, '2022-12-10 04:32:13', 0, NULL, 0, NULL, 1),
(14419, 11400, '3', 'Madras University ', '', 'BSc', '2022', 6.07, '', 1, '2022-12-10 04:54:04', 0, NULL, 0, NULL, 1),
(14420, 11401, '5', 'Murugappa Polytechnic College', '', 'Diploma in Computer Engineering', '2020', 77.00, '', 1, '2022-12-10 05:26:24', 0, NULL, 0, NULL, 1),
(14421, 11402, '3', 'Madras Christian College', '', 'BA philosophy', '2022', 72.00, '', 1, '2022-12-10 06:58:13', 0, NULL, 0, NULL, 1),
(14422, 11403, '3', 's k university', '', 'b.sc statistic ', '2021', 71.00, '', 1, '2022-12-10 07:36:47', 0, NULL, 0, NULL, 1),
(14423, 11404, '3', 'Madras ', '', 'B. Com', '2013', 60.00, '', 1, '2022-12-10 07:59:24', 0, NULL, 0, NULL, 1),
(14424, 11404, '2', 'Tn state education', '', '', '2009', 87.00, '', 1, '2022-12-10 07:59:58', 0, NULL, 0, NULL, 1),
(14425, 11405, '3', 'Madras University ', '', 'B.com(cs)', '2021', 74.95, '', 1, '2022-12-11 12:34:44', 0, NULL, 0, NULL, 1),
(14426, 11408, '3', 'Anna University ', '', 'B.E', '2019', 62.00, '', 1, '2022-12-11 03:10:13', 0, NULL, 0, NULL, 1),
(14427, 11406, '3', 'sri muthukumaran arts and science', '', 'bsc', '2020', 68.00, '', 1, '2022-12-11 03:30:57', 0, NULL, 0, NULL, 1),
(14428, 11407, '3', 'madras university', '', 'bsc.mathematics', '2020', 62.00, '', 1, '2022-12-11 05:08:27', 0, NULL, 0, NULL, 1),
(14429, 11407, '2', 'state board', '', '', '2017', 54.00, '', 1, '2022-12-11 05:08:48', 0, NULL, 0, NULL, 1),
(14430, 11407, '1', 'state board', '', '', '2015', 84.00, '', 1, '2022-12-11 05:09:07', 0, NULL, 0, NULL, 1),
(14431, 11410, '3', 'GTN arts and science College Dindigul ', '', 'Bsc computer science ', '2022', 6.53, '', 1, '2022-12-12 10:00:50', 0, NULL, 0, NULL, 1),
(14432, 11410, '1', 'Achyuta Academy matric hr sec school Dindigul ', '', '', '2017', 89.00, '', 1, '2022-12-12 10:01:33', 0, NULL, 0, NULL, 1),
(14433, 11410, '2', 'Achyuta Academy matric hr sec school Dindigul ', '', '', '2019', 65.00, '', 1, '2022-12-12 10:02:05', 0, NULL, 0, NULL, 1),
(14434, 11411, '1', 'State borad', '', '', '2013', 65.20, '', 1, '2022-12-12 11:10:44', 0, NULL, 0, NULL, 1),
(14435, 11411, '2', 'State borad', '', '', '2015', 49.80, '', 1, '2022-12-12 11:12:03', 0, NULL, 0, NULL, 1),
(14436, 11411, '3', 'Madras university ', '', 'B.A History ', '2019', 60.00, '', 1, '2022-12-12 11:14:05', 0, NULL, 0, NULL, 1),
(14437, 11412, '5', 'Subramanian Polytechnic College ', '', 'Diploma Computer Science ', '2015', 76.00, '', 1, '2022-12-12 11:29:53', 0, NULL, 0, NULL, 1),
(14438, 11413, '3', 'Madras University ', '', 'BCA ', '2019', 65.00, '', 1, '2022-12-12 11:43:23', 0, NULL, 0, NULL, 1),
(14439, 11415, '3', 'Madras University ', '', 'BSc', '2022', 74.00, '', 1, '2022-12-12 01:00:20', 0, NULL, 0, NULL, 1),
(14440, 11420, '3', 'Madras University ', '', 'Bsc computer science ', '2020', 68.00, '', 1, '2022-12-12 06:50:55', 0, NULL, 0, NULL, 1),
(14441, 11420, '4', 'Anna University ', '', 'MCA', '2022', 81.00, '', 1, '2022-12-12 06:51:26', 0, NULL, 0, NULL, 1),
(14442, 11421, '4', 'Sikkim Manipal University ', '', 'MCA', '2017', 60.00, '', 1, '2022-12-12 07:16:55', 0, NULL, 0, NULL, 1),
(14443, 11423, '3', 'Madras university ', '', 'B. Sc', '2021', 71.00, '', 1, '2022-12-13 10:52:01', 0, NULL, 0, NULL, 1),
(14444, 11419, '3', 'Anna university ', '', 'B.E.Aeronautical Engineering ', '2022', 7.54, '', 1, '2022-12-13 10:53:12', 0, NULL, 0, NULL, 1),
(14445, 11419, '1', 'State board ', '', '', '2016', 94.50, '', 1, '2022-12-13 10:54:31', 0, NULL, 0, NULL, 1),
(14446, 11414, '3', 'Anna university ', '', 'BE ', '2021', 75.00, '', 1, '2022-12-13 10:57:17', 0, NULL, 0, NULL, 1),
(14447, 11426, '3', 'Madras University ', '', 'B.com', '2019', 63.00, '', 1, '2022-12-13 10:59:06', 1, '2022-12-13 10:59:26', 0, NULL, 0),
(14448, 11414, '1', 'State Board ', '', '', '2015', 85.00, '', 1, '2022-12-13 10:59:14', 0, NULL, 0, NULL, 1),
(14449, 11414, '2', 'State Board ', '', '', '2017', 75.00, '', 1, '2022-12-13 10:59:36', 0, NULL, 0, NULL, 1),
(14450, 11425, '3', 'Madras University ', '', 'B.com(c.s)', '2019', 67.00, '', 1, '2022-12-13 11:00:29', 0, NULL, 0, NULL, 1),
(14451, 11426, '3', 'Madras University ', '', 'B.com', '2019', 63.00, '', 1, '2022-12-13 11:02:06', 0, NULL, 0, NULL, 1),
(14452, 11424, '4', 'madras university', '', 'msc mathematics', '2021', 85.50, '', 1, '2022-12-13 11:19:19', 0, NULL, 0, NULL, 1),
(14453, 11428, '1', 'Gulberga University ', '', '', '2011', 65.00, '', 1, '2022-12-13 11:37:22', 0, NULL, 0, NULL, 1),
(14454, 11429, '4', 'Natesan institute ', '', 'MBA', '2022', 60.00, '', 1, '2022-12-13 11:54:10', 0, NULL, 0, NULL, 1),
(14455, 11430, '3', 'Madras University ', '', 'B.com ( general )', '2021', 74.00, '', 1, '2022-12-13 12:20:42', 0, NULL, 0, NULL, 1),
(14456, 11409, '1', 'State Board', '', 'B.E EEE', '2013', 80.00, '', 1, '2022-12-13 01:01:09', 1, '2022-12-13 01:03:11', 0, NULL, 1),
(14457, 11409, '2', 'State board', '', '', '2015', 69.00, '', 1, '2022-12-13 01:01:47', 0, NULL, 0, NULL, 1),
(14458, 11409, '3', 'Anna university', '', 'B.E EEE', '2019', 64.00, '', 1, '2022-12-13 01:03:48', 0, NULL, 0, NULL, 1),
(14459, 11432, '3', 'Madras University', '', 'B.com(G)', '2021', 73.00, '', 1, '2022-12-13 06:39:14', 1, '2022-12-13 06:41:34', 0, NULL, 0),
(14460, 11432, '2', 'State Board', '', '', '2018', 92.00, '', 1, '2022-12-13 06:40:10', 1, '2022-12-13 06:41:42', 0, NULL, 0),
(14461, 11433, '4', 'loyol College ', '', 'msc computer science ', '2020', 65.00, '', 1, '2022-12-13 06:41:54', 0, NULL, 0, NULL, 1),
(14462, 11432, '1', 'State Board', '', '', '2016', 95.00, '', 1, '2022-12-13 06:42:44', 0, NULL, 0, NULL, 1),
(14463, 11432, '2', 'State Board ', '', '', '2018', 93.00, '', 1, '2022-12-13 06:43:23', 0, NULL, 0, NULL, 1),
(14464, 11432, '3', 'Madras University', '', 'B.com (G)', '2021', 73.00, '', 1, '2022-12-13 06:44:03', 0, NULL, 0, NULL, 1),
(14465, 11434, '3', 'Sastra University', '', 'Bcom CA', '2020', 83.00, '', 1, '2022-12-13 07:10:27', 0, NULL, 0, NULL, 1),
(14466, 11435, '3', 'St. Peters university ', '', 'BE mechanical', '2024', 70.00, '', 1, '2022-12-14 09:51:21', 1, '2022-12-14 09:53:10', 0, NULL, 0),
(14467, 11435, '5', 'V ramakrishna polytechnic college', '', 'Diploma in Mechanical engineering (DME) ', '2016', 65.00, '', 1, '2022-12-14 09:52:37', 1, '2022-12-14 09:53:08', 0, NULL, 0),
(14468, 11435, '1', 'Bosco academy mat. Her. School. ', '', '', '2013', 75.00, '', 1, '2022-12-14 09:53:42', 0, NULL, 0, NULL, 1),
(14469, 11435, '5', 'V. Ramakrishna polytechnic college', '', 'Diploma in mechanical Engineering  (DME) ', '2016', 67.00, '', 1, '2022-12-14 09:54:39', 0, NULL, 0, NULL, 1),
(14470, 11436, '3', 'Madurai KAMARAJAR University ', '', 'BSC.IT', '2022', 75.00, '', 1, '2022-12-14 09:55:17', 0, NULL, 0, NULL, 1),
(14471, 11435, '3', 'St. Peters university', '', 'BE mechanical engineering', '2024', 70.00, '', 1, '2022-12-14 09:55:57', 0, NULL, 0, NULL, 1),
(14472, 11438, '3', 'University of Madras ', '', 'BBA ', '2022', 82.00, '', 1, '2022-12-14 10:48:40', 0, NULL, 0, NULL, 1),
(14473, 11437, '3', 'Dr. MGR. Janaki College of arts and science for women ', '', 'BBA', '2022', 82.00, '', 1, '2022-12-14 10:49:21', 0, NULL, 0, NULL, 1),
(14474, 11441, '3', 'Bharadhidasan', '', 'Bca', '2018', 74.00, '', 1, '2022-12-14 11:57:35', 0, NULL, 0, NULL, 1),
(14475, 11440, '3', 'Bharathidasan University ', '', 'B.com', '2022', 79.00, '', 1, '2022-12-14 12:00:13', 0, NULL, 0, NULL, 1),
(14476, 11443, '3', 'Madanapalle Institute of Technology and Science ', '', 'B. Tech-Mechanical Engineering ', '2020', 70.00, '', 1, '2022-12-14 12:02:20', 0, NULL, 0, NULL, 1),
(14477, 11446, '3', 'University of madras', '', 'B com', '2020', 73.00, '', 1, '2022-12-14 04:54:47', 0, NULL, 0, NULL, 1),
(14478, 11445, '4', 'bharadiyar university', '', 'm.c.a', '2022', 84.00, '', 1, '2022-12-14 04:55:22', 0, NULL, 0, NULL, 1),
(14479, 11447, '1', 'state board', '', '', '2014', 92.00, '', 1, '2022-12-14 06:21:40', 0, NULL, 0, NULL, 1),
(14480, 11447, '2', 'state board', '', '', '2016', 73.25, '', 1, '2022-12-14 06:22:04', 0, NULL, 0, NULL, 1),
(14481, 11447, '3', 'bharath univerity', '', 'b.tech', '2020', 64.50, '', 1, '2022-12-14 06:22:40', 0, NULL, 0, NULL, 1),
(14482, 11450, '4', 'Sri Sairam engineering college ', '', 'Mba', '2022', 7.90, '', 1, '2022-12-14 06:25:11', 0, NULL, 0, NULL, 1),
(14483, 11453, '3', 'University of Madras ', '', 'BCA', '2022', 71.00, '', 1, '2022-12-15 12:56:00', 0, NULL, 0, NULL, 1),
(14484, 11455, '2', 'State ', '', '', '2018', 67.00, '', 1, '2022-12-15 11:22:53', 0, NULL, 0, NULL, 1),
(14485, 11459, '2', 'state board', '', '', '2005', 58.00, '', 1, '2022-12-15 12:05:36', 0, NULL, 0, NULL, 1),
(14486, 11457, '3', 'Apollo arts and sciences College ', '', 'B.C.A(Computer Applications)', '2022', 79.30, '', 1, '2022-12-15 12:05:55', 0, NULL, 0, NULL, 1),
(14487, 11459, '4', 'madras university', '', 'msc it', '2010', 76.00, '', 1, '2022-12-15 12:06:07', 0, NULL, 0, NULL, 1),
(14488, 11456, '3', 'Mint government college ', '', 'Dcivil', '2021', 80.00, '', 1, '2022-12-15 12:16:39', 0, NULL, 0, NULL, 1),
(14489, 11460, '3', 'Bharathitasan university ', '', 'Bsc computer science ', '2022', 80.00, '', 1, '2022-12-15 01:08:30', 0, NULL, 0, NULL, 1),
(14490, 11452, '4', 'madras university', '', 'm.sc  mathematics', '2023', 6.50, '', 1, '2022-12-15 02:50:44', 0, NULL, 0, NULL, 1),
(14491, 11464, '3', 'Aalim Muhammed salegh college of engineering ', '', 'BE', '2022', 80.00, '', 1, '2022-12-15 10:47:10', 0, NULL, 0, NULL, 1),
(14492, 11464, '2', 'Tamil nadu', '', '', '2018', 68.00, '', 1, '2022-12-15 10:48:41', 0, NULL, 0, NULL, 1),
(14493, 11464, '1', 'Tamil nadu ', '', '', '2016', 75.00, '', 1, '2022-12-15 10:49:12', 0, NULL, 0, NULL, 1),
(14494, 11465, '3', 'jeppiaar engineering college ', '', 'bachelor of engineering', '2020', 65.00, '', 1, '2022-12-16 11:00:02', 0, NULL, 0, NULL, 1),
(14495, 11467, '4', 'Anna University ', '', 'MCA ', '2022', 85.00, '', 1, '2022-12-16 11:03:29', 0, NULL, 0, NULL, 1),
(14496, 11463, '4', 'VIT Vellore', '', 'M.Sc Physics', '2019', 70.00, '', 1, '2022-12-16 11:08:53', 0, NULL, 0, NULL, 1),
(14497, 11458, '4', 'RDB College Of Arts And Science', '', 'MBA FINANCE ', '2022', 75.00, '', 1, '2022-12-16 11:28:49', 0, NULL, 0, NULL, 1),
(14498, 11466, '4', 'tamilnadu teachers education', '', 'b.ed', '2022', 92.00, '', 1, '2022-12-16 11:40:41', 0, NULL, 0, NULL, 1),
(14499, 11468, '3', 'Pondicherry', '', 'B. Com', '2022', 61.50, '', 1, '2022-12-16 11:50:46', 0, NULL, 0, NULL, 1),
(14500, 11469, '3', 'Hindusthan college of engineering and technology coimbatore ', '', 'B.E mechatronics ', '2022', 94.00, '', 1, '2022-12-16 12:27:42', 0, NULL, 0, NULL, 1),
(14501, 11470, '3', 'Hindusthan college of engineering and technology coimbatore ', '', 'B.E mechatronics ', '2022', 94.00, '', 1, '2022-12-16 12:30:53', 0, NULL, 0, NULL, 1),
(14502, 11475, '3', 'madras university', '', 'bba', '2021', 65.00, '', 1, '2022-12-16 05:06:45', 0, NULL, 0, NULL, 1),
(14503, 11474, '3', 'Anna university', '', 'B. Tech', '2022', 8.07, '', 1, '2022-12-16 05:15:46', 0, NULL, 0, NULL, 1),
(14504, 11472, '4', 'Dr.M.G.R.EDUCATIONAL AND RESEARCH INSTITUTE', '', 'MCA', '2022', 78.52, '', 1, '2022-12-16 05:16:17', 1, '2022-12-16 05:17:25', 0, NULL, 1),
(14505, 11478, '4', 'Dr.M.G.R.EDUCATIONAL AND RESEARCH INSTITUTE', '', 'MCA', '2022', 78.52, '', 1, '2022-12-17 09:23:02', 0, NULL, 0, NULL, 1),
(14506, 11479, '3', 'Bharath university ', '', 'B.TECH- MECHANICAL ENGINEERING ', '2021', 79.00, '', 1, '2022-12-17 10:47:49', 0, NULL, 0, NULL, 1),
(14507, 11479, '5', 'Anna university ', '', 'Diploma in Mechanical Engineering ', '2015', 71.00, '', 1, '2022-12-17 10:48:45', 0, NULL, 0, NULL, 1),
(14508, 11480, '3', 'university of madras', '', 'b.com', '2019', 68.07, '', 1, '2022-12-17 11:36:59', 0, NULL, 0, NULL, 1),
(14509, 11473, '4', 'university of madras', '', 'msc mathematics', '2020', 70.00, '', 1, '2022-12-17 11:41:16', 0, NULL, 0, NULL, 1),
(14510, 11481, '3', 'Annai Teresa college of engineering ', '', 'BE (electrical and electronics)', '2021', 70.40, '', 1, '2022-12-17 11:50:46', 0, NULL, 0, NULL, 1),
(14511, 11461, '3', 'Madras university ', '', 'B. Com', '2020', 65.00, '', 1, '2022-12-17 01:21:47', 1, '2022-12-17 01:22:55', 0, NULL, 0),
(14512, 11461, '4', 'Madras university ', '', 'MBA', '2022', 65.00, '', 1, '2022-12-17 01:22:13', 1, '2022-12-17 01:22:34', 0, NULL, 0),
(14513, 11461, '4', 'Madras university ', '', 'MBA', '2022', 60.00, '', 1, '2022-12-17 01:23:28', 0, NULL, 0, NULL, 1),
(14514, 11482, '1', 'board of secondary education manipur', '', '', '2007', 58.00, '', 1, '2022-12-17 04:05:28', 1, '2022-12-17 04:05:42', 0, NULL, 0),
(14515, 11482, '3', 'manipur university', '', 'bachelor of science', '2012', 58.00, '', 1, '2022-12-17 04:06:16', 0, NULL, 0, NULL, 1),
(14516, 11483, '3', 'Anna university ', '', 'B.e', '2016', 67.00, '', 1, '2022-12-17 04:08:45', 0, NULL, 0, NULL, 1),
(14517, 11486, '1', 'Iti', '', '', '2021', 85.00, '', 1, '2022-12-19 09:19:53', 0, NULL, 0, NULL, 1),
(14518, 11491, '3', 'MADRAS UNIVERSITY ', '', 'B.com', '2018', 64.00, '', 1, '2022-12-19 10:47:25', 0, NULL, 0, NULL, 1),
(14519, 11493, '3', 'university of madras', '', 'b.com', '2022', 52.00, '', 1, '2022-12-19 11:42:41', 0, NULL, 0, NULL, 1),
(14520, 11495, '3', 'Bharath University ', '', 'BSC computer science ', '2019', 81.00, '', 1, '2022-12-19 11:50:10', 0, NULL, 0, NULL, 1),
(14521, 11496, '3', 'Bharathidasan University Trichy ', '', 'Bachelor of computer application ', '2018', 58.00, '', 1, '2022-12-19 12:27:24', 0, NULL, 0, NULL, 1),
(14522, 11497, '3', 'anna university chennai', '', 'btech ', '2017', 65.00, '', 1, '2022-12-19 01:06:35', 0, NULL, 0, NULL, 1),
(14523, 11497, '1', 'kerala state ', '', '', '2009', 80.00, '', 1, '2022-12-19 01:07:31', 1, '2022-12-19 01:08:03', 0, NULL, 1),
(14524, 11497, '2', 'kerala stste', '', '', '2011', 74.00, '', 1, '2022-12-19 01:08:25', 0, NULL, 0, NULL, 1),
(14525, 11500, '4', 'Thiruvalluvar University ', '', 'M.a. B.Ed', '2022', 76.00, '', 1, '2022-12-19 03:51:43', 0, NULL, 0, NULL, 1),
(14526, 11502, '3', 'Alpha college of engineering ', '', 'BE cse', '2022', 78.28, '', 1, '2022-12-19 05:04:03', 0, NULL, 0, NULL, 1),
(14527, 11501, '3', 'anna university', '', 'b.e', '2022', 85.00, '', 1, '2022-12-19 05:06:20', 0, NULL, 0, NULL, 1),
(14528, 11501, '5', 'anna university', '', 'd.m.e', '2019', 83.00, '', 1, '2022-12-19 05:06:50', 0, NULL, 0, NULL, 1),
(14529, 11501, '1', 'state board', '', '', '2016', 60.00, '', 1, '2022-12-19 05:07:14', 0, NULL, 0, NULL, 1),
(14530, 11503, '4', 'Loyola College Chennai/ University of Madras ', '', 'MSc ( Computer Science)', '2020', 75.00, '', 1, '2022-12-19 05:11:11', 0, NULL, 0, NULL, 1),
(14531, 11504, '4', 'srm university', '', 'mca', '2022', 92.00, '', 1, '2022-12-19 05:11:58', 0, NULL, 0, NULL, 1),
(14532, 11504, '3', 'srm university', '', 'bca', '2020', 63.00, '', 1, '2022-12-19 05:12:22', 0, NULL, 0, NULL, 1),
(14533, 11504, '1', 'assisi mhss', '', '', '2017', 55.00, '', 1, '2022-12-19 05:12:40', 0, NULL, 0, NULL, 1),
(14534, 11505, '4', 'Anna University ', '', 'Mba', '2017', 6.80, '', 1, '2022-12-19 05:36:40', 0, NULL, 0, NULL, 1),
(14535, 11505, '3', 'Bharathidasan University ', '', 'Bcom ca ', '2015', 57.00, '', 1, '2022-12-19 05:37:12', 0, NULL, 0, NULL, 1),
(14536, 11505, '2', 'State board ', '', '', '2012', 79.00, '', 1, '2022-12-19 05:37:34', 0, NULL, 0, NULL, 1),
(14537, 11505, '1', 'State board ', '', '', '2010', 60.00, '', 1, '2022-12-19 05:38:10', 0, NULL, 0, NULL, 1),
(14538, 11506, '3', 'Anna University ', '', 'B.E', '2022', 82.00, '', 1, '2022-12-19 05:47:01', 0, NULL, 0, NULL, 1),
(14539, 11511, '1', 'Tamilnadu State board', '', '', '2013', 79.00, '', 1, '2022-12-19 10:20:58', 1, '2022-12-19 10:22:24', 0, NULL, 1),
(14540, 11511, '2', 'Tamilnadu State board ', '', '', '2015', 74.00, '', 1, '2022-12-19 10:21:27', 1, '2022-12-19 10:22:06', 0, NULL, 1),
(14541, 11511, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2019', 72.00, '', 1, '2022-12-19 10:21:55', 0, NULL, 0, NULL, 1),
(14542, 11513, '3', 'Anna University ', '', 'Bachelor of engineering ', '2022', 79.00, '', 1, '2022-12-20 09:09:52', 0, NULL, 0, NULL, 1),
(14543, 11514, '4', 'Anna university ', '', 'Mechanical engineering ', '2019', 67.00, '', 1, '2022-12-20 09:16:41', 0, NULL, 0, NULL, 1),
(14544, 11515, '2', 'Singaram pillai boys hr sec school', '', '', '2016', 80.00, '', 1, '2022-12-20 10:26:50', 0, NULL, 0, NULL, 1),
(14545, 11516, '2', 'state board', '', '', '2017', 66.00, '', 1, '2022-12-20 10:41:05', 0, NULL, 0, NULL, 1),
(14546, 11516, '3', 'madras university', '', 'ba eco', '2020', 77.00, '', 1, '2022-12-20 10:41:46', 0, NULL, 0, NULL, 1),
(14547, 11518, '2', 'state board', '', '', '2015', 66.00, '', 1, '2022-12-20 10:45:18', 0, NULL, 0, NULL, 1),
(14548, 11518, '3', 'madras university', '', 'bcom ism', '2019', 63.00, '', 1, '2022-12-20 10:45:41', 0, NULL, 0, NULL, 1),
(14549, 11517, '3', 'Bharathiyar university', '', 'B.com(ca)', '2017', 78.00, '', 1, '2022-12-20 10:46:01', 0, NULL, 0, NULL, 1),
(14550, 11519, '2', 'state board', '', '', '2017', 66.00, '', 1, '2022-12-20 10:51:15', 0, NULL, 0, NULL, 1),
(14551, 11519, '3', 'anna university', '', 'be civil', '2021', 75.00, '', 1, '2022-12-20 10:51:51', 0, NULL, 0, NULL, 1),
(14552, 11520, '2', 'state board', '', '', '2019', 75.00, '', 1, '2022-12-20 10:55:05', 0, NULL, 0, NULL, 1),
(14553, 11520, '3', 'madras university', '', 'ba economics', '2022', 76.00, '', 1, '2022-12-20 10:55:33', 0, NULL, 0, NULL, 1),
(14554, 11523, '3', 'Bharadhidasan', '', 'Bsc', '2019', 65.00, '', 1, '2022-12-20 11:19:14', 0, NULL, 0, NULL, 1),
(14555, 11525, '3', 'Manonmaniyam sundaranar university', '', 'BA', '2015', 56.00, '', 1, '2022-12-20 11:39:47', 0, NULL, 0, NULL, 1),
(14556, 11522, '3', 'university o madras', '', 'b.com', '2022', 84.00, '', 1, '2022-12-20 11:58:54', 0, NULL, 0, NULL, 1),
(14557, 11507, '4', 'S.K. University. ', '', 'mba', '2017', 70.00, '', 1, '2022-12-20 01:07:48', 0, NULL, 0, NULL, 1),
(14558, 11498, '3', 'Bharathiyar university ', '', 'Bsc', '2018', 62.00, '', 1, '2022-12-20 02:43:57', 0, NULL, 0, NULL, 1),
(14559, 11528, '3', 'Francis Xavier Engineering college ', '', 'BE computer science and Engineering ', '2019', 75.00, '', 1, '2022-12-20 04:48:24', 0, NULL, 0, NULL, 1),
(14560, 11529, '1', 'Board', '', '', '2011', 89.00, '', 1, '2022-12-20 05:03:44', 0, NULL, 0, NULL, 1),
(14561, 11529, '2', 'Board ', '', '', '2013', 89.00, '', 1, '2022-12-20 05:04:06', 0, NULL, 0, NULL, 1),
(14562, 11529, '3', 'Anna university ', '', 'B.tech', '2017', 73.00, '', 1, '2022-12-20 05:04:26', 0, NULL, 0, NULL, 1),
(14563, 11532, '2', 'state board', '', '', '2019', 62.00, '', 1, '2022-12-21 10:23:52', 0, NULL, 0, NULL, 1),
(14564, 11532, '3', 'bharathidasan university', '', 'bsc maths', '2022', 85.00, '', 1, '2022-12-21 10:24:16', 0, NULL, 0, NULL, 1),
(14565, 11535, '4', 'Annamalai university', '', 'M. Sc. It', '2021', 69.00, '', 1, '2022-12-21 02:54:21', 0, NULL, 0, NULL, 1),
(14566, 11534, '4', 'Annamalai university', '', 'Msc. It', '2021', 70.00, '', 1, '2022-12-21 02:54:34', 0, NULL, 0, NULL, 1),
(14567, 11538, '3', 'Dhanalakshmi srinivasan engineering college ', '', 'BE.CSE', '2020', 6.40, '', 1, '2022-12-21 05:57:19', 0, NULL, 0, NULL, 1),
(14568, 11541, '3', 'Bangalore University ', '', 'B.com ', '2022', 70.13, '', 1, '2022-12-21 09:15:11', 0, NULL, 0, NULL, 1),
(14569, 11543, '3', 'SRM INSTITUTE OF SCIENCE AND TECHNOLOGY ', '', '', '2021', 85.00, '', 1, '2022-12-22 07:54:12', 0, NULL, 0, NULL, 1),
(14570, 11545, '3', 'Anna University ', '', 'BE', '2022', 82.00, '', 1, '2022-12-22 10:41:09', 0, NULL, 0, NULL, 1),
(14571, 11544, '3', 'Anna University ', '', 'BE ECE', '2020', 62.00, '', 1, '2022-12-22 10:42:17', 0, NULL, 0, NULL, 1),
(14572, 11547, '3', 'Bharathi women\'s college ', '', 'B.com(general)', '2019', 70.00, '', 1, '2022-12-22 11:28:59', 0, NULL, 0, NULL, 1),
(14573, 11548, '5', 'Ants animation ', '', 'Diploma in animation ', '2012', 80.00, '', 1, '2022-12-22 11:33:36', 1, '2022-12-22 11:34:41', 0, NULL, 0),
(14574, 11548, '5', 'Ants animation ', '', 'Diploma in animation ', '2012', 80.00, '', 1, '2022-12-22 11:35:31', 0, NULL, 0, NULL, 1),
(14575, 11549, '3', 'University', '', 'B.sc Computer Science', '2019', 65.00, '', 1, '2022-12-22 12:30:27', 0, NULL, 0, NULL, 1),
(14576, 11550, '3', 'Anna University ', '', 'Bachelor of engineering ', '2017', 65.00, '', 1, '2022-12-22 01:26:23', 0, NULL, 0, NULL, 1),
(14577, 11551, '3', 'Anna University ', '', 'Btech Infromation technology ', '2022', 76.00, '', 1, '2022-12-22 06:23:38', 0, NULL, 0, NULL, 1),
(14578, 11553, '4', 'Anna University ', '', 'Mba', '2021', 71.00, '', 1, '2022-12-22 06:37:38', 0, NULL, 0, NULL, 1),
(14579, 11555, '3', 'Periyar University ', '', 'B.com(CA)', '2021', 76.60, '', 1, '2022-12-22 09:13:37', 0, NULL, 0, NULL, 1),
(14580, 11556, '3', 'loyola college ', '', 'b.a', '2016', 60.00, '', 1, '2022-12-23 08:43:22', 0, NULL, 0, NULL, 1),
(14581, 11558, '3', 'Anna university', '', 'BE- Computer science', '2022', 75.00, '', 1, '2022-12-23 11:16:47', 0, NULL, 0, NULL, 1),
(14582, 11559, '3', 'MEHAR University ', '', 'B.sc computer science ', '2022', 80.00, '', 1, '2022-12-23 11:30:22', 0, NULL, 0, NULL, 1),
(14583, 11560, '3', 'MAHER University ', '', 'Bsc(computer science)', '2022', 81.00, '', 1, '2022-12-23 02:35:48', 0, NULL, 0, NULL, 1),
(14584, 11561, '3', 'Anna University ', '', 'B.Tech', '2022', 75.00, '', 1, '2022-12-23 07:51:49', 0, NULL, 0, NULL, 1),
(14585, 11484, '3', 'Bangalore University ', '', 'BCA', '2021', 84.00, '', 1, '2022-12-23 08:55:54', 0, NULL, 0, NULL, 1),
(14586, 11564, '4', 'bangalore University ', '', 'Bachelor of business management', '2014', 53.00, '', 1, '2022-12-24 10:08:14', 0, NULL, 0, NULL, 1),
(14587, 11565, '3', 'Bharathiyar university ', '', '', '2022', 57.00, '', 1, '2022-12-24 10:48:32', 0, NULL, 0, NULL, 1),
(14588, 11570, '4', 'University of madras', '', 'MBA', '2022', 70.00, '', 1, '2022-12-24 06:35:07', 0, NULL, 0, NULL, 1),
(14589, 11571, '3', 'Kongunadu Arts and Science college', '', 'B.sc Computer science ', '2022', 68.96, '', 1, '2022-12-24 06:54:32', 0, NULL, 0, NULL, 1),
(14590, 11572, '3', 'karpagam college of engineering', '', 'be', '2022', 76.00, '', 1, '2022-12-24 08:44:20', 0, NULL, 0, NULL, 1),
(14591, 11572, '1', 'state board', '', '', '2015', 82.00, '', 1, '2022-12-24 08:45:10', 0, NULL, 0, NULL, 1),
(14592, 11572, '5', 'Vellaichamy Nadar Polytechnic College', '', 'dme', '2018', 70.00, '', 1, '2022-12-24 08:47:00', 0, NULL, 0, NULL, 1),
(14593, 11557, '3', 'Anna university', '', 'BE', '2022', 76.00, '', 1, '2022-12-24 11:14:37', 0, NULL, 0, NULL, 1),
(14594, 11569, '3', 'skr enngineering college    anna university', '', 'B.Tech IT', '2022', 78.90, '', 1, '2022-12-25 09:58:25', 0, NULL, 0, NULL, 1),
(14595, 11577, '3', 'Anna University ', '', 'Bcom', '2019', 70.00, '', 1, '2022-12-26 01:21:30', 0, NULL, 0, NULL, 1),
(14596, 11580, '4', 'Madras University ', '', 'MCA ', '2020', 68.00, '', 1, '2022-12-26 06:37:36', 0, NULL, 0, NULL, 1),
(14597, 11580, '3', 'Madras University ', '', 'BCA ', '2018', 65.00, '', 1, '2022-12-26 06:38:14', 0, NULL, 0, NULL, 1),
(14598, 11581, '3', 'Anna university', '', 'B. E -Mechanical', '2022', 7.21, '', 1, '2022-12-26 06:38:49', 0, NULL, 0, NULL, 1),
(14599, 11581, '2', 'State Board', '', '', '2017', 83.25, '', 1, '2022-12-26 06:39:43', 0, NULL, 0, NULL, 1),
(14600, 11581, '1', 'State Board', '', '', '2015', 96.20, '', 1, '2022-12-26 06:40:29', 0, NULL, 0, NULL, 1),
(14601, 11584, '1', 'state board', '', '', '2014', 91.00, '', 1, '2022-12-26 07:12:43', 0, NULL, 0, NULL, 1),
(14602, 11584, '2', 'state board', '', '', '2016', 69.00, '', 1, '2022-12-26 07:12:56', 0, NULL, 0, NULL, 1),
(14603, 11584, '3', 'university of madras', '', 'bca', '2019', 71.00, '', 1, '2022-12-26 07:13:32', 0, NULL, 0, NULL, 1),
(14604, 11585, '3', 'Madras', '', 'B com ', '2019', 72.00, '', 1, '2022-12-26 08:40:29', 0, NULL, 0, NULL, 1),
(14605, 11585, '1', 'St Raphael\'s Girls higher secondary school ', '', '', '2014', 96.00, '', 1, '2022-12-26 08:44:22', 0, NULL, 0, NULL, 1),
(14606, 11585, '2', 'St Raphael\'s girls higher secondary school ', '', '', '2016', 93.00, '', 1, '2022-12-26 08:50:04', 0, NULL, 0, NULL, 1),
(14607, 11586, '1', 'tate ', '', '', '2014', 89.00, '', 1, '2022-12-26 09:11:50', 0, NULL, 0, NULL, 1),
(14608, 11587, '3', 'A.M.Jain college - Chennai ', '', 'Bsc (mathematics with computer applications)', '2019', 71.30, '', 1, '2022-12-27 10:50:39', 0, NULL, 0, NULL, 1),
(14609, 11589, '3', 'Madras University ', '', 'B com (General)', '2021', 89.00, '', 1, '2022-12-27 11:31:29', 0, NULL, 0, NULL, 1),
(14610, 11590, '3', 'Anna university', '', 'BE', '2015', 68.00, '', 1, '2022-12-27 11:58:39', 0, NULL, 0, NULL, 1),
(14611, 11590, '5', 'Department of Preventive health and Medicine', '', '', '2019', 80.00, '', 1, '2022-12-27 11:59:10', 0, NULL, 0, NULL, 1),
(14612, 11592, '3', 'dr.mgr university ', '', 'b.tech ', '2022', 70.00, '', 1, '2022-12-27 06:37:38', 0, NULL, 0, NULL, 1),
(14613, 11592, '1', 'anna gem science park school ', '', '', '2016', 65.00, '', 1, '2022-12-27 06:38:55', 0, NULL, 0, NULL, 1),
(14614, 11592, '2', 'mohammed  sathak school ', '', '', '2018', 58.00, '', 1, '2022-12-27 06:39:53', 0, NULL, 0, NULL, 1),
(14615, 11593, '3', 'bharathiyar ', '', 'bba', '2021', 70.00, '', 1, '2022-12-27 06:58:31', 0, NULL, 0, NULL, 1),
(14616, 11596, '3', 'Anna University', '', 'B. E - Civil', '2018', 6.00, '', 1, '2022-12-28 09:28:43', 0, NULL, 0, NULL, 1),
(14617, 11597, '3', 'Mohammed sathak aj college of engineering', '', 'B.E civil', '2019', 56.00, '', 1, '2022-12-28 10:20:11', 0, NULL, 0, NULL, 1),
(14618, 11598, '3', 'Bharathidasan University ', '', 'BCA', '2022', 80.00, '', 1, '2022-12-28 11:37:14', 0, NULL, 0, NULL, 1),
(14619, 11575, '4', 'Bharathiar University ', '', 'mBA', '2017', 69.00, '', 1, '2022-12-28 12:27:37', 0, NULL, 0, NULL, 1),
(14620, 11575, '3', 'Anna university ', '', 'BE', '2014', 66.50, '', 1, '2022-12-28 12:28:09', 0, NULL, 0, NULL, 1),
(14621, 11600, '3', 'university of madras', '', 'bcom', '2021', 8.00, '', 1, '2022-12-28 04:08:31', 0, NULL, 0, NULL, 1),
(14622, 11605, '4', 'Madras University', '', 'M.com', '2022', 73.00, '', 1, '2022-12-28 07:19:47', 0, NULL, 0, NULL, 1),
(14623, 11606, '3', 'Loyola college of arts and science ', '', 'B.a', '2021', 90.00, '', 1, '2022-12-28 10:58:23', 0, NULL, 0, NULL, 1),
(14624, 11608, '3', 'MKU', '', 'BCA ', '2021', 69.00, '', 1, '2022-12-29 10:38:09', 0, NULL, 0, NULL, 1),
(14625, 11608, '1', 'State board ', '', '', '2016', 79.00, '', 1, '2022-12-29 10:39:02', 1, '2022-12-29 10:39:50', 0, NULL, 1),
(14626, 11608, '2', 'State board ', '', '', '2018', 75.00, '', 1, '2022-12-29 10:40:10', 0, NULL, 0, NULL, 1),
(14627, 11609, '3', 'university', '', 'bachelor of computer application', '2019', 70.00, '', 1, '2022-12-29 12:30:13', 0, NULL, 0, NULL, 1),
(14628, 11610, '3', 'Madras University ', '', 'B.com(ism)', '2020', 78.00, '', 1, '2022-12-29 12:51:48', 0, NULL, 0, NULL, 1),
(14629, 11612, '4', 'University of Madras ', '', 'MCA', '2023', 79.00, '', 1, '2022-12-29 12:53:37', 0, NULL, 0, NULL, 1),
(14630, 11611, '4', 'University of madras', '', 'MCA', '2023', 70.00, '', 1, '2022-12-29 12:53:42', 0, NULL, 0, NULL, 1),
(14631, 11612, '3', 'PSGR krishnammal college for women ', '', 'BCA', '2021', 80.00, '', 1, '2022-12-29 12:54:08', 0, NULL, 0, NULL, 1),
(14632, 11611, '3', 'Ramakrishna Mission Vivekananda College', '', 'B.Sc.Mathematics', '2021', 75.00, '', 1, '2022-12-29 12:54:24', 0, NULL, 0, NULL, 1),
(14633, 11615, '4', 'University of Madras', '', 'MCA', '2023', 7.60, '', 1, '2022-12-29 03:49:31', 0, NULL, 0, NULL, 1),
(14634, 11614, '4', 'University of madras', '', 'MCA', '2023', 71.00, '', 1, '2022-12-29 03:56:42', 0, NULL, 0, NULL, 1),
(14635, 11616, '3', 'University of Madras ', '', 'B.com', '2021', 75.00, '', 1, '2022-12-29 04:45:22', 0, NULL, 0, NULL, 1),
(14636, 11617, '3', 'Anna university', '', 'Bachelor of technology', '2022', 78.00, '', 1, '2022-12-29 05:10:18', 0, NULL, 0, NULL, 1),
(14637, 11613, '4', 'Apollo Computer Education ', '', 'Master in Software Application (MSA)', '2022', 60.00, '', 1, '2022-12-29 07:26:29', 0, NULL, 0, NULL, 1),
(14638, 11613, '3', 'The New College', '', 'B.com(ISM)', '2021', 69.00, '', 1, '2022-12-29 07:27:04', 0, NULL, 0, NULL, 1),
(14639, 11620, '3', 'Crescent Institute of science and technology', '', 'Bca data science', '2021', 6.71, '', 1, '2022-12-29 11:54:52', 0, NULL, 0, NULL, 1),
(14640, 11619, '3', 'Board', '', 'B.sc physics with computer applications ', '2022', 77.00, '', 1, '2022-12-30 10:42:59', 0, NULL, 0, NULL, 1),
(14641, 11618, '3', 'Kalasalingam Institute of Technology ', '', 'Bachelor of Engineering - Electronics and Communic', '2022', 79.00, '', 1, '2022-12-30 11:12:25', 0, NULL, 0, NULL, 1),
(14642, 11623, '3', 'VTU', '', 'Mechanical engineering', '2020', 62.00, '', 1, '2022-12-30 11:51:51', 0, NULL, 0, NULL, 1),
(14643, 11627, '3', 'Anna University ', '', 'B.Tech', '2019', 89.00, '', 1, '2022-12-30 02:12:56', 0, NULL, 0, NULL, 1),
(14644, 11629, '3', 'Bharath institute of higher education and research ', '', 'BTech ', '2023', 85.00, '', 1, '2022-12-30 07:06:55', 0, NULL, 0, NULL, 1),
(14645, 11629, '2', 'Krishnaveni jr college ', '', '', '2019', 80.00, '', 1, '2022-12-30 07:07:18', 0, NULL, 0, NULL, 1),
(14646, 11629, '1', 'Gitanjali ', '', '', '2017', 98.00, '', 1, '2022-12-30 07:07:35', 0, NULL, 0, NULL, 1),
(14647, 11631, '3', 'Rayalaseema university ', '', 'D ed', '2015', 70.00, '', 1, '2022-12-31 07:12:41', 0, NULL, 0, NULL, 1),
(14648, 11626, '3', 'The New College ', '', 'B.a', '2020', 65.00, '', 1, '2022-12-31 10:34:43', 0, NULL, 0, NULL, 1),
(14649, 11632, '3', 'Anna University ', '', 'B.E electronics and communication engineering ', '2019', 6.45, '', 1, '2022-12-31 10:47:38', 0, NULL, 0, NULL, 1),
(14650, 11633, '3', 'universityof madras', '', 'b.com', '2022', 75.00, '', 1, '2022-12-31 12:22:08', 0, NULL, 0, NULL, 1),
(14651, 11635, '3', 'manonmaniam sundaranar university', '', 'B.Sc.Information Technology ', '2021', 83.00, '', 1, '2022-12-31 05:03:30', 0, NULL, 0, NULL, 1),
(14652, 11635, '2', 'State board ', '', '', '2018', 62.00, '', 1, '2022-12-31 05:06:18', 0, NULL, 0, NULL, 1),
(14653, 11636, '4', 'Madras University ', '', 'M.Sc Mathematics ', '2022', 85.00, '', 1, '2023-01-01 06:03:13', 0, NULL, 0, NULL, 1),
(14654, 11637, '3', 'SRM institute of science and humanities ', '', 'B.com Ism', '2020', 65.00, '', 1, '2023-01-01 04:05:54', 0, NULL, 0, NULL, 1),
(14655, 11638, '3', 'University', '', 'BBA', '2020', 60.00, '', 1, '2023-01-01 08:25:38', 0, NULL, 0, NULL, 1),
(14656, 11639, '3', 'Anna university ', '', 'BE CIVIL', '2019', 70.00, '', 1, '2023-01-02 10:29:11', 0, NULL, 0, NULL, 1),
(14657, 11634, '3', 'Agriculture ', '', 'Bsc agriculture ', '2017', 74.40, '', 1, '2023-01-02 10:47:32', 0, NULL, 0, NULL, 1),
(14658, 11604, '3', 'Sathyabama Institute of Science and Technology ', '', 'Bachelor of Engineering ', '2019', 7.16, '', 1, '2023-01-02 11:13:46', 0, NULL, 0, NULL, 1),
(14659, 11642, '3', 'Alagappa university', '', 'b.com', '2019', 54.00, '', 1, '2023-01-02 12:45:59', 0, NULL, 0, NULL, 1),
(14660, 11643, '3', 'KPR College of arts science and research ', '', 'Bsc cs ', '2022', 85.00, '', 1, '2023-01-02 12:58:31', 0, NULL, 0, NULL, 1),
(14661, 11644, '3', 'Anna University ', '', 'B.E mechanical engineering ', '2021', 74.00, '', 1, '2023-01-02 01:27:24', 0, NULL, 0, NULL, 1),
(14662, 11645, '3', 'Anna University ', '', 'B.E eEE', '2020', 70.00, '', 1, '2023-01-02 02:22:30', 0, NULL, 0, NULL, 1),
(14663, 11646, '3', 'university of madras', '', 'b.sc cs', '2022', 84.40, '', 1, '2023-01-02 03:21:54', 0, NULL, 0, NULL, 1),
(14664, 11647, '3', 'Madras university ', '', 'Bca ', '2022', 60.00, '', 1, '2023-01-02 06:05:41', 0, NULL, 0, NULL, 1),
(14665, 11647, '2', 'State board', '', '', '2019', 65.00, '', 1, '2023-01-02 06:06:15', 1, '2023-01-02 06:07:12', 0, NULL, 0),
(14666, 11647, '1', 'State board', '', '', '2018', 75.00, '', 1, '2023-01-02 06:06:40', 1, '2023-01-02 06:07:16', 0, NULL, 0),
(14667, 11650, '1', 'Nadar sanga matriculation higher secondary school', '', '', '2014', 69.00, '', 1, '2023-01-02 11:38:08', 0, NULL, 0, NULL, 1),
(14668, 11650, '2', 'Nadar sanga matriculation higher secondary school', '', '', '2016', 73.00, '', 1, '2023-01-02 11:39:02', 0, NULL, 0, NULL, 1),
(14669, 11650, '3', 'Apollo arts and science college, poonamallee', '', 'Bachelor of Commerce (corporate secretaryship) ', '2019', 57.00, '', 1, '2023-01-02 11:41:34', 0, NULL, 0, NULL, 1),
(14670, 11651, '3', 'Madras of  University ', '', 'B.Com \'CA\'', '2020', 64.50, '', 1, '2023-01-03 09:57:35', 0, NULL, 0, NULL, 1),
(14671, 11648, '3', 'Anna University ', '', 'Electrical and Electronic Engineer', '2022', 85.00, '', 1, '2023-01-03 11:01:11', 0, NULL, 0, NULL, 1),
(14672, 11652, '3', 'Annai College of Arts and Science ', '', 'BCA', '2022', 75.00, '', 1, '2023-01-03 12:01:42', 0, NULL, 0, NULL, 1),
(14673, 11653, '3', 'Annai college of arts and sceince', '', 'Bca', '2022', 68.00, '', 1, '2023-01-03 12:02:42', 0, NULL, 0, NULL, 1),
(14674, 11654, '3', 'Annai college of arts and science', '', 'Bca', '2022', 75.00, '', 1, '2023-01-03 12:03:08', 0, NULL, 0, NULL, 1),
(14675, 11656, '3', 'Bharathiyar university', '', 'Bcom CA', '2022', 70.00, '', 1, '2023-01-03 01:18:22', 0, NULL, 0, NULL, 1),
(14676, 11657, '4', 'Bharathiar University ', '', 'MSc Mathematics CA ', '2021', 80.00, '', 1, '2023-01-03 03:18:05', 0, NULL, 0, NULL, 1),
(14677, 11660, '3', 'Thiruvalluvar University, Vellore ', '', 'Bsc computer science ', '2022', 82.00, '', 1, '2023-01-03 07:32:48', 0, NULL, 0, NULL, 1),
(14678, 11658, '4', 'Bharathiar University ', '', 'MSc Mathematics CA ', '2021', 80.00, '', 1, '2023-01-04 09:10:10', 0, NULL, 0, NULL, 1),
(14679, 11661, '4', 'Arignar anna Institute of science and technology ', '', 'BE Cse', '2011', 64.00, '', 1, '2023-01-04 09:54:18', 1, '2023-01-04 09:54:40', 0, NULL, 1),
(14680, 11662, '2', 'state board', '', '', '2012', 75.00, '', 1, '2023-01-04 11:05:24', 0, NULL, 0, NULL, 1),
(14681, 11662, '3', 'anna university', '', 'be eee', '2017', 65.00, '', 1, '2023-01-04 11:05:43', 0, NULL, 0, NULL, 1),
(14682, 11663, '2', 'state board', '', '', '2011', 64.00, '', 1, '2023-01-04 11:08:50', 0, NULL, 0, NULL, 1),
(14683, 11663, '3', 'anna university', '', 'be', '2014', 66.00, '', 1, '2023-01-04 11:09:09', 0, NULL, 0, NULL, 1),
(14684, 11664, '4', 'Madurai Kamaraj University ', '', 'MSC Computer science ', '2021', 65.00, '', 1, '2023-01-04 12:40:22', 0, NULL, 0, NULL, 1),
(14685, 11665, '3', 'Thiruvallur University ', '', 'Bachelor of Computer Application ', '2016', 62.00, '', 1, '2023-01-04 12:43:48', 0, NULL, 0, NULL, 1),
(14686, 11665, '2', 'Islamiah Boy\'s Higher Secondary School ', '', '', '2011', 60.00, '', 1, '2023-01-04 12:44:48', 0, NULL, 0, NULL, 1),
(14687, 11665, '1', 'Islamiah Boy\'s Higher Secondary School ', '', '', '2009', 65.00, '', 1, '2023-01-04 12:45:16', 0, NULL, 0, NULL, 1),
(14688, 11666, '4', 'Madras university ', '', '', '2021', 73.00, '', 1, '2023-01-04 12:51:02', 1, '2023-01-04 12:52:40', 0, NULL, 0),
(14689, 11666, '3', 'Madras university ', '', 'B.com', '2021', 73.00, '', 1, '2023-01-04 12:52:25', 1, '2023-01-04 12:52:35', 0, NULL, 0),
(14690, 11666, '3', 'Madras university ', '', 'B.com', '2021', 73.00, '', 1, '2023-01-04 12:53:05', 0, NULL, 0, NULL, 1),
(14691, 11668, '3', 'Anna university', '', 'B.E', '2017', 69.90, '', 1, '2023-01-04 03:08:20', 0, NULL, 0, NULL, 1),
(14692, 11669, '3', 'Bharathiyar University ', '', 'Bachelor of Computer Applications ', '2022', 6.90, '', 1, '2023-01-04 08:32:55', 0, NULL, 0, NULL, 1),
(14693, 11670, '3', 'Board', '', 'BCA', '2022', 73.00, '', 1, '2023-01-05 12:22:31', 0, NULL, 0, NULL, 1),
(14694, 11670, '2', 'Board', '', '', '2019', 53.00, '', 1, '2023-01-05 12:23:15', 0, NULL, 0, NULL, 1),
(14695, 11670, '1', 'Board', '', '', '2017', 83.00, '', 1, '2023-01-05 12:23:29', 0, NULL, 0, NULL, 1),
(14696, 11671, '4', 'anna university', '', 'mba hr', '2011', 78.00, '', 1, '2023-01-05 10:58:52', 0, NULL, 0, NULL, 1),
(14697, 11672, '5', 'anna university', '', 'diploma', '2018', 68.00, '', 1, '2023-01-05 11:15:44', 0, NULL, 0, NULL, 1),
(14698, 11674, '3', 'D.b Jain college ', '', 'Bsc Computer science ', '2019', 77.00, '', 1, '2023-01-05 11:38:22', 0, NULL, 0, NULL, 1),
(14699, 11675, '3', 'calicut university', '', 'bsc cs', '2017', 78.00, '', 1, '2023-01-05 11:47:01', 0, NULL, 0, NULL, 1),
(14700, 11676, '3', 'Periyar university', '', 'Computer science', '2017', 80.00, '', 1, '2023-01-05 12:24:02', 0, NULL, 0, NULL, 1),
(14701, 11677, '3', 'Anna University ', '', 'B.Tech ', '2022', 80.00, '', 1, '2023-01-05 01:43:15', 0, NULL, 0, NULL, 1),
(14702, 11678, '3', 'rajalakshmi engineering college', '', 'b.e', '2022', 7.62, '', 1, '2023-01-05 04:41:50', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(14703, 11678, '2', 'shri vidhyabharathi matric higher secondary school ', '', '', '2018', 86.50, '', 1, '2023-01-05 04:42:29', 0, NULL, 0, NULL, 1),
(14704, 11678, '1', 'vivekananda matric higher secondary school ', '', '', '2016', 85.80, '', 1, '2023-01-05 04:43:12', 0, NULL, 0, NULL, 1),
(14705, 11683, '3', 'Srmist vadapalani', '', 'BCA', '2022', 81.00, '', 1, '2023-01-05 05:37:27', 0, NULL, 0, NULL, 1),
(14706, 11345, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2021', 70.00, '', 1, '2023-01-05 06:14:04', 0, NULL, 0, NULL, 1),
(14707, 11684, '4', 'Kalasalingam university ', '', 'MCA', '2022', 78.00, '', 1, '2023-01-05 06:40:59', 0, NULL, 0, NULL, 1),
(14708, 11684, '3', 'Kamaraj university ', '', 'B.com cA', '2020', 72.00, '', 1, '2023-01-05 06:41:57', 0, NULL, 0, NULL, 1),
(14709, 11686, '3', 'APJ Abdul Kalam Technological University ', '', 'B Tech', '2022', 81.00, '', 1, '2023-01-05 07:16:34', 0, NULL, 0, NULL, 1),
(14710, 11686, '2', 'Kerala board of examination ', '', '', '2018', 84.33, '', 1, '2023-01-05 07:17:17', 0, NULL, 0, NULL, 1),
(14711, 11686, '1', 'Kerala board of examination ', '', '', '2016', 96.57, '', 1, '2023-01-05 07:17:39', 0, NULL, 0, NULL, 1),
(14712, 11687, '3', 'University College Of Engineering BIT Campus, Anna University, Trichy', '', 'Information Technology ', '2022', 74.00, '', 1, '2023-01-05 08:11:18', 1, '2023-01-05 08:14:15', 0, NULL, 0),
(14713, 11687, '2', 'Government Boys Higher Secondary school, Sendurai ( State Board  )', '', '', '2018', 65.00, '', 1, '2023-01-05 08:14:04', 1, '2023-01-05 08:14:17', 0, NULL, 0),
(14714, 11687, '1', 'Government Boys Higher Secondary School, Sendurai ( State Board )', '', '', '2016', 81.00, '', 1, '2023-01-05 08:14:52', 0, NULL, 0, NULL, 1),
(14715, 11687, '2', 'Government Boys Higher Secondary School, Sendurai ( State Board )', '', '', '2018', 65.00, '', 1, '2023-01-05 08:15:30', 0, NULL, 0, NULL, 1),
(14716, 11687, '3', 'University College Of Engineering ( BIT Campus ), Anna University, Trichy', '', 'Information Technology ', '2022', 74.00, '', 1, '2023-01-05 08:16:58', 0, NULL, 0, NULL, 1),
(14717, 11688, '3', 'University of madras', '', 'Bsc chemistry', '2020', 74.00, '', 1, '2023-01-05 08:26:54', 0, NULL, 0, NULL, 1),
(14718, 11689, '3', 'university college of engineering  bit campus trichy', '', 'b.tech.information technology', '2022', 72.00, '', 1, '2023-01-05 08:27:48', 0, NULL, 0, NULL, 1),
(14719, 11689, '2', 'sri ramakrishna matriculation higher secondary school perambalur', '', '', '2018', 66.00, '', 1, '2023-01-05 08:29:10', 0, NULL, 0, NULL, 1),
(14720, 11689, '1', 'rajavignesh higher secondary school melamathur', '', '', '2016', 82.00, '', 1, '2023-01-05 08:30:00', 0, NULL, 0, NULL, 1),
(14721, 11690, '3', 'K RAMAKRISHNAN COLLEGE OF ENGINEERING', '', 'BE MECH', '2020', 63.00, '', 1, '2023-01-05 10:05:49', 0, NULL, 0, NULL, 1),
(14722, 11690, '2', 'Tamilnadu board', '', '', '2016', 83.00, '', 1, '2023-01-05 10:06:17', 0, NULL, 0, NULL, 1),
(14723, 11691, '4', 'Anna University ', '', 'MASTER OF COMPUTER APPLICATIONS ', '2020', 82.00, '', 1, '2023-01-05 10:39:52', 0, NULL, 0, NULL, 1),
(14724, 11691, '3', 'Thiruvalluvar University ', '', 'Bsc. (Computer Science) ', '2018', 70.00, '', 1, '2023-01-05 10:40:37', 0, NULL, 0, NULL, 1),
(14725, 11691, '2', 'Tamil Nadu State Board ', '', '', '2015', 59.00, '', 1, '2023-01-05 10:41:01', 0, NULL, 0, NULL, 1),
(14726, 11691, '1', 'Tamil Nadu State Board ', '', '', '2013', 74.00, '', 1, '2023-01-05 10:41:19', 0, NULL, 0, NULL, 1),
(14727, 11692, '3', 'anna university', '', 'be mech', '2023', 66.00, '', 1, '2023-01-06 10:06:42', 0, NULL, 0, NULL, 1),
(14728, 11693, '3', 'Anna University ', '', 'B.E.', '2022', 77.00, '', 1, '2023-01-06 10:57:09', 0, NULL, 0, NULL, 1),
(14729, 11693, '2', 'Tamilnadu state board ', '', '', '2018', 91.12, '', 1, '2023-01-06 10:57:38', 0, NULL, 0, NULL, 1),
(14730, 11693, '1', 'Tamilnadu state board ', '', '', '2016', 97.00, '', 1, '2023-01-06 10:57:53', 0, NULL, 0, NULL, 1),
(14731, 11694, '3', 'Anna University(Vel tech multi tech engineering college)', '', 'BTech IT ', '2018', 70.03, '', 1, '2023-01-06 11:18:29', 0, NULL, 0, NULL, 1),
(14732, 11695, '4', 'Alagappa university karaikudi', '', 'MSc (IT)', '2022', 75.00, '', 1, '2023-01-06 11:20:23', 0, NULL, 0, NULL, 1),
(14733, 11696, '3', 'St, joseph\'s college', '', 'B.com', '2016', 65.00, '', 1, '2023-01-06 11:26:24', 0, NULL, 0, NULL, 1),
(14734, 11697, '3', 'madras university ', '', 'b.scmaths', '2018', 63.90, '', 1, '2023-01-06 11:49:30', 0, NULL, 0, NULL, 1),
(14735, 11698, '3', 'University of Madras ', '', 'Bsc Zoology ', '2020', 72.00, '', 1, '2023-01-06 12:38:24', 0, NULL, 0, NULL, 1),
(14736, 11701, '3', 'Madurai Kamarajar University ', '', 'Bsc', '2021', 79.00, '', 1, '2023-01-06 01:31:25', 0, NULL, 0, NULL, 1),
(14737, 11704, '3', 'Anna university', '', 'B. E - Mechanical Engineering', '2020', 73.80, '', 1, '2023-01-06 02:58:43', 0, NULL, 0, NULL, 1),
(14738, 11704, '2', 'State Board ', '', '', '2016', 73.50, '', 1, '2023-01-06 02:59:10', 0, NULL, 0, NULL, 1),
(14739, 11704, '1', 'State Board ', '', '', '2014', 90.60, '', 1, '2023-01-06 02:59:37', 0, NULL, 0, NULL, 1),
(14740, 11706, '4', 'Anna University ', '', 'M.Sc IT', '2019', 81.00, '', 1, '2023-01-06 03:17:27', 0, NULL, 0, NULL, 1),
(14741, 11705, '3', 'Thiruvalluvar university ', '', 'B. Sc. Physics ', '2022', 90.00, '', 1, '2023-01-06 07:49:38', 0, NULL, 0, NULL, 1),
(14742, 11708, '3', 'vels university', '', 'bachelor of engineering', '2021', 80.00, '', 1, '2023-01-07 09:27:13', 0, NULL, 0, NULL, 1),
(14743, 11709, '3', 'SRM University', '', 'BSc', '2021', 71.00, '', 1, '2023-01-07 09:44:14', 0, NULL, 0, NULL, 1),
(14744, 11709, '1', 'Matriculation', '', '', '2016', 77.40, '', 1, '2023-01-07 09:47:05', 0, NULL, 0, NULL, 1),
(14745, 11709, '2', 'Matriculation', '', '', '2018', 74.40, '', 1, '2023-01-07 09:47:21', 0, NULL, 0, NULL, 1),
(14746, 11710, '3', 'Nmssvn college ', '', 'Bsc mathematics ', '2022', 75.00, '', 1, '2023-01-07 10:07:23', 0, NULL, 0, NULL, 1),
(14747, 11711, '3', 'Anna University ', '', 'BE Computer Science and engineering ', '2021', 7.11, '', 1, '2023-01-07 12:33:28', 0, NULL, 0, NULL, 1),
(14748, 11712, '1', 'State Board ', '', '', '2016', 80.00, '', 1, '2023-01-07 12:36:37', 0, NULL, 0, NULL, 1),
(14749, 11712, '2', 'Sate board ', '', '', '2018', 60.00, '', 1, '2023-01-07 12:37:43', 0, NULL, 0, NULL, 1),
(14750, 11714, '3', 'Madras university', '', 'Bcom (cs) ', '2021', 73.00, '', 1, '2023-01-07 12:39:39', 0, NULL, 0, NULL, 1),
(14751, 11714, '2', 'State board', '', '', '2018', 57.00, '', 1, '2023-01-07 12:41:24', 0, NULL, 0, NULL, 1),
(14752, 11712, '3', 'Madras University ', '', 'Bcom', '2021', 68.00, '', 1, '2023-01-07 12:41:50', 1, '2023-01-07 12:42:10', 0, NULL, 1),
(14753, 11714, '1', 'State board', '', '', '2016', 69.00, '', 1, '2023-01-07 12:41:54', 0, NULL, 0, NULL, 1),
(14754, 11713, '3', 'Madras University ', '', 'B com', '2021', 73.00, '', 1, '2023-01-07 12:53:41', 0, NULL, 0, NULL, 1),
(14755, 11713, '2', 'State Board ', '', '', '2018', 65.00, '', 1, '2023-01-07 12:54:09', 0, NULL, 0, NULL, 1),
(14756, 11713, '1', 'Sate board ', '', '', '2016', 68.00, '', 1, '2023-01-07 12:54:23', 0, NULL, 0, NULL, 1),
(14757, 11715, '3', 'Madras University ', '', 'B com', '2016', 51.00, '', 1, '2023-01-07 01:30:39', 0, NULL, 0, NULL, 1),
(14758, 11716, '3', 'Thiruvalluvar University ', '', 'B.A.ENGLISH', '2020', 63.00, '', 1, '2023-01-07 03:52:18', 0, NULL, 0, NULL, 1),
(14759, 11717, '3', 'Jawahar Engineering College ', '', 'BE', '2018', 68.00, '', 1, '2023-01-07 04:41:52', 0, NULL, 0, NULL, 1),
(14760, 11718, '3', 'university', '', 'bsc psychology', '2022', 80.00, '', 1, '2023-01-08 11:50:50', 0, NULL, 0, NULL, 1),
(14761, 11719, '3', 'Anna university ', '', 'B.E (Mechanical)', '2018', 78.00, '', 1, '2023-01-09 10:47:58', 0, NULL, 0, NULL, 1),
(14762, 11719, '2', 'State board', '', '', '2014', 78.00, '', 1, '2023-01-09 10:48:22', 0, NULL, 0, NULL, 1),
(14763, 11719, '1', 'State', '', '', '2012', 85.00, '', 1, '2023-01-09 10:48:53', 0, NULL, 0, NULL, 1),
(14764, 11723, '3', 'Annaunversity', '', 'B.E', '2022', 70.00, '', 1, '2023-01-09 11:25:57', 0, NULL, 0, NULL, 1),
(14765, 11720, '3', 'diploma', '', 'iti', '2022', 75.00, '', 1, '2023-01-09 11:26:01', 0, NULL, 0, NULL, 1),
(14766, 11724, '4', 'Bharathidhasan University ', '', 'M.sc mathematics ', '2021', 73.00, '', 1, '2023-01-09 11:26:49', 0, NULL, 0, NULL, 1),
(14767, 11725, '3', 'madras university', '', 'bcom', '2022', 76.00, '', 1, '2023-01-09 11:28:03', 0, NULL, 0, NULL, 1),
(14768, 11722, '3', 'Jain college', '', 'Bcom ', '2022', 78.00, '', 1, '2023-01-09 11:30:15', 0, NULL, 0, NULL, 1),
(14769, 11726, '4', 'Anna University ', '', 'MBA', '2022', 88.00, '', 1, '2023-01-09 11:38:57', 0, NULL, 0, NULL, 1),
(14770, 11726, '1', 'state board', '', '', '2011', 73.00, '', 1, '2023-01-09 11:39:34', 0, NULL, 0, NULL, 1),
(14771, 11726, '2', 'state', '', '', '2013', 64.90, '', 1, '2023-01-09 11:40:00', 0, NULL, 0, NULL, 1),
(14772, 11726, '3', 'Bharathiyar University ', '', 'BCA ', '2019', 75.00, '', 1, '2023-01-09 11:41:04', 0, NULL, 0, NULL, 1),
(14773, 11454, '4', 'kamarajar university', '', 'mba', '2022', 85.00, '', 1, '2023-01-09 03:24:50', 0, NULL, 0, NULL, 1),
(14774, 11728, '4', 'Anna University', '', 'MCA', '2022', 88.00, '', 1, '2023-01-09 06:15:05', 0, NULL, 0, NULL, 1),
(14775, 11728, '3', 'Dr MGR Educational and Research Institute', '', 'BCA', '2020', 73.00, '', 1, '2023-01-09 06:15:35', 0, NULL, 0, NULL, 1),
(14776, 11731, '3', 'Bharathidasan', '', 'BBA ', '2021', 50.00, '', 1, '2023-01-10 09:15:38', 0, NULL, 0, NULL, 1),
(14777, 11732, '3', 'meenakshi college of engineering', '', 'be mechanical', '2016', 59.00, '', 1, '2023-01-10 10:11:27', 0, NULL, 0, NULL, 1),
(14778, 11735, '3', 'Madras University ', '', 'B.sc maths with computer Applications ', '2020', 6.90, '', 1, '2023-01-10 10:22:04', 0, NULL, 0, NULL, 1),
(14779, 11734, '4', 'SRM University ', '', 'B.tech mech', '2022', 74.00, '', 1, '2023-01-10 10:28:49', 0, NULL, 0, NULL, 1),
(14780, 11734, '5', 'K.s.rangasamy institute of technology ', '', 'Diploma mechanical engineering ', '2016', 81.00, '', 1, '2023-01-10 10:31:03', 0, NULL, 0, NULL, 1),
(14781, 11736, '4', 'Aalim Muhammed saleghi college ', '', 'Mba', '2017', 80.00, '', 1, '2023-01-10 10:31:28', 0, NULL, 0, NULL, 1),
(14782, 11734, '2', 'Gbhs school pallipalayam ', '', '', '2014', 52.00, '', 1, '2023-01-10 10:31:51', 0, NULL, 0, NULL, 1),
(14783, 11734, '1', 'Gbhs school pallipalayam ', '', '', '2012', 70.00, '', 1, '2023-01-10 10:32:57', 0, NULL, 0, NULL, 1),
(14784, 11737, '3', 'Vels UNIVERSITY', '', 'BE-COMPUTER SCIENCE AND ENGINEERING', '2021', 60.00, '', 1, '2023-01-10 11:20:22', 0, NULL, 0, NULL, 1),
(14785, 11730, '3', 'Anna university', '', 'B.tech IT', '2021', 85.00, '', 1, '2023-01-10 01:03:04', 0, NULL, 0, NULL, 1),
(14786, 11738, '3', 'Madras university', '', 'B.com cs ', '2019', 80.00, '', 1, '2023-01-10 02:40:42', 0, NULL, 0, NULL, 1),
(14787, 11739, '3', 'Bharathiyar university', '', 'B. A', '2020', 56.50, '', 1, '2023-01-10 03:41:12', 0, NULL, 0, NULL, 1),
(14788, 11741, '3', 'Anna university ', '', 'B E(ECE)', '2021', 77.00, '', 1, '2023-01-10 06:38:23', 0, NULL, 0, NULL, 1),
(14789, 11741, '2', 'State board ', '', '', '2017', 68.00, '', 1, '2023-01-10 06:51:36', 0, NULL, 0, NULL, 1),
(14790, 11741, '1', 'State board ', '', '', '2015', 92.00, '', 1, '2023-01-10 06:51:57', 0, NULL, 0, NULL, 1),
(14791, 11742, '3', 'RVS Technical Campus ', '', 'B.E Mechanical engineering ', '2018', 63.00, '', 1, '2023-01-11 10:41:31', 0, NULL, 0, NULL, 1),
(14792, 11743, '3', 'Anna University', '', 'BE-mechanical', '2022', 81.50, '', 1, '2023-01-11 11:08:03', 0, NULL, 0, NULL, 1),
(14793, 11743, '1', 'State board', '', '', '2016', 88.00, '', 1, '2023-01-11 11:09:51', 1, '2023-01-11 11:13:04', 0, NULL, 1),
(14794, 11743, '2', 'State board', '', '', '2018', 78.00, '', 1, '2023-01-11 11:12:54', 0, NULL, 0, NULL, 1),
(14795, 11744, '1', 'State Board', '', '', '2012', 91.00, '', 1, '2023-01-11 11:19:39', 0, NULL, 0, NULL, 1),
(14796, 11744, '2', 'State Board', '', '', '2014', 91.00, '', 1, '2023-01-11 11:20:04', 0, NULL, 0, NULL, 1),
(14797, 11744, '3', 'Anna University ', '', 'BE', '2018', 70.00, '', 1, '2023-01-11 11:20:26', 0, NULL, 0, NULL, 1),
(14798, 11746, '1', 'Zion Matriculation. Hr. Sec. School, Selaiyur', '', '', '2015', 85.00, '', 1, '2023-01-11 11:28:09', 0, NULL, 0, NULL, 1),
(14799, 11746, '2', 'Zion Matriculation. Hr. Sec. School, Selaiyur', '', '', '2017', 61.00, '', 1, '2023-01-11 11:28:32', 0, NULL, 0, NULL, 1),
(14800, 11746, '3', 'Anand Institute of Higher Technology', '', 'Mechanical ', '2021', 75.00, '', 1, '2023-01-11 11:29:10', 0, NULL, 0, NULL, 1),
(14801, 11745, '3', 'Peri college of arts and sciences ', '', 'Bsc', '2022', 84.00, '', 1, '2023-01-11 11:33:01', 0, NULL, 0, NULL, 1),
(14802, 11747, '4', 'Bharathidasan university', '', 'Msc computer science', '2018', 78.00, '', 1, '2023-01-11 01:18:40', 0, NULL, 0, NULL, 1),
(14803, 11748, '3', 'Anna university', '', 'BE', '2018', 7.20, '', 1, '2023-01-11 01:32:35', 0, NULL, 0, NULL, 1),
(14804, 11749, '3', 'Bharathidasan University', '', 'Bsc. Computer science', '2021', 60.00, '', 1, '2023-01-11 03:17:10', 0, NULL, 0, NULL, 1),
(14805, 11750, '3', 'ssn college of engineering', '', 'be', '2021', 7.99, '', 1, '2023-01-11 03:58:11', 1, '2023-01-11 03:59:03', 0, NULL, 0),
(14806, 11750, '5', 'dote', '', 'diploma', '2018', 91.00, '', 1, '2023-01-11 03:58:49', 1, '2023-01-11 03:58:59', 0, NULL, 0),
(14807, 11750, '1', 'state board', '', '', '2014', 86.00, '', 1, '2023-01-11 03:59:38', 1, '2023-01-11 04:00:10', 0, NULL, 0),
(14808, 11750, '1', 'don bosco', '', '', '2014', 86.00, '', 1, '2023-01-11 04:00:30', 0, NULL, 0, NULL, 1),
(14809, 11750, '2', 'hsc', '', '', '2016', 63.00, '', 1, '2023-01-11 04:00:49', 0, NULL, 0, NULL, 1),
(14810, 11750, '5', 'dote', '', 'dilpoma', '2018', 91.00, '', 1, '2023-01-11 04:01:09', 0, NULL, 0, NULL, 1),
(14811, 11750, '3', 'ssn college', '', 'be', '2021', 7.99, '', 1, '2023-01-11 04:01:44', 0, NULL, 0, NULL, 1),
(14812, 11751, '4', 'University ', '', 'Msc', '2022', 80.00, '', 1, '2023-01-11 06:06:02', 0, NULL, 0, NULL, 1),
(14813, 11751, '3', 'University ', '', 'Bsc(mathematics)', '2020', 80.00, '', 1, '2023-01-11 06:07:11', 0, NULL, 0, NULL, 1),
(14814, 11751, '2', 'Board', '', '', '2017', 74.00, '', 1, '2023-01-11 06:08:08', 0, NULL, 0, NULL, 1),
(14815, 11751, '1', 'Board', '', '', '2015', 89.00, '', 1, '2023-01-11 06:08:46', 0, NULL, 0, NULL, 1),
(14816, 11756, '3', 'Madras University ', '', 'B.com general ', '2022', 74.00, '', 1, '2023-01-12 11:10:27', 0, NULL, 0, NULL, 1),
(14817, 11754, '3', 'Presidency college ', '', 'BSC statistics ', '2020', 60.00, '', 1, '2023-01-12 11:18:38', 0, NULL, 0, NULL, 1),
(14818, 11754, '2', 'Little flower ', '', '', '2017', 84.00, '', 1, '2023-01-12 11:19:05', 0, NULL, 0, NULL, 1),
(14819, 11754, '1', 'Little flower ', '', '', '2015', 93.00, '', 1, '2023-01-12 11:19:19', 0, NULL, 0, NULL, 1),
(14820, 11755, '3', 'anna university', '', 'be computer science', '2022', 80.00, '', 1, '2023-01-12 11:57:50', 0, NULL, 0, NULL, 1),
(14821, 11758, '3', 'Madras University ', '', 'B.com general ', '2021', 75.00, '', 1, '2023-01-12 12:05:38', 0, NULL, 0, NULL, 1),
(14822, 11759, '3', 'St Joseph College of engineering ', '', 'B.E Computer Science ', '2021', 70.00, '', 1, '2023-01-12 12:41:27', 0, NULL, 0, NULL, 1),
(14823, 11760, '5', 'PRIYADARSHINI POLYTECHNIC COLLEGE ', '', 'Diploma in computer engineering ', '2022', 68.00, '', 1, '2023-01-12 01:29:10', 0, NULL, 0, NULL, 1),
(14824, 11761, '4', 'srm university', '', 'msc.it', '2021', 88.00, '', 1, '2023-01-12 05:13:25', 0, NULL, 0, NULL, 1),
(14825, 11763, '3', 'Madras university', '', 'B.com', '2022', 67.00, '', 1, '2023-01-13 10:51:51', 0, NULL, 0, NULL, 1),
(14826, 11764, '3', 'anna univer ', '', 'be', '2019', 6.80, '', 1, '2023-01-13 11:09:59', 0, NULL, 0, NULL, 1),
(14827, 11766, '3', 'st.peters institution of higher education and research', '', 'b. e', '2020', 6.02, '', 1, '2023-01-13 08:12:03', 0, NULL, 0, NULL, 1),
(14828, 11765, '3', 'Anna University', '', 'Bachelor of Engineering', '2019', 62.30, '', 1, '2023-01-14 10:01:19', 1, '2023-01-14 10:01:35', 0, NULL, 0),
(14829, 11765, '1', 'State', '', '', '2013', 93.00, '', 1, '2023-01-14 10:02:39', 0, NULL, 0, NULL, 1),
(14830, 11765, '2', 'State', '', '', '2015', 75.00, '', 1, '2023-01-14 10:03:08', 0, NULL, 0, NULL, 1),
(14831, 11765, '3', 'Anna university', '', 'Bachelor of Engineering', '2019', 62.30, '', 1, '2023-01-14 10:03:38', 0, NULL, 0, NULL, 1),
(14832, 11768, '4', 'Bharathidasan university', '', 'Msc computer science', '2022', 8.23, '', 1, '2023-01-14 05:40:37', 0, NULL, 0, NULL, 1),
(14833, 11769, '3', 'university of madras', '', 'bba', '2018', 5.50, '', 1, '2023-01-14 07:32:55', 1, '2023-01-14 07:33:29', 0, NULL, 0),
(14834, 11769, '3', 'university of madras', '', 'bba', '2018', 55.00, '', 1, '2023-01-14 07:34:27', 0, NULL, 0, NULL, 1),
(14835, 11770, '3', 'University of madras', '', 'b c a', '2021', 75.00, '', 1, '2023-01-15 08:59:29', 0, NULL, 0, NULL, 1),
(14836, 11767, '4', 'St. Joseph\'s College ', '', 'MCA', '2022', 76.54, '', 1, '2023-01-16 09:56:44', 0, NULL, 0, NULL, 1),
(14837, 11771, '3', 'Anna university', '', 'B.e.computer science', '2012', 75.00, '', 1, '2023-01-16 01:00:42', 0, NULL, 0, NULL, 1),
(14838, 11773, '4', 'vels University ', '', 'mca', '2020', 70.00, '', 1, '2023-01-17 10:43:08', 0, NULL, 0, NULL, 1),
(14839, 11774, '4', 'Alagapa university', '', '', '2016', 70.00, '', 1, '2023-01-17 02:42:04', 0, NULL, 0, NULL, 1),
(14840, 11775, '3', 'Anna university ', '', 'BE', '2016', 6.80, '', 1, '2023-01-17 06:31:52', 0, NULL, 0, NULL, 1),
(14841, 11777, '1', 'Sacred heart mat.hr.sec school ', '', '', '2016', 63.00, '', 1, '2023-01-18 11:27:01', 0, NULL, 0, NULL, 1),
(14842, 11778, '3', 'Alagappa university ', '', 'B.sc computer science ', '2022', 62.00, '', 1, '2023-01-18 11:37:01', 0, NULL, 0, NULL, 1),
(14843, 11780, '3', 'Madras University ', '', 'Bsc computer science ', '2022', 73.00, '', 1, '2023-01-18 12:43:07', 0, NULL, 0, NULL, 1),
(14844, 11781, '2', 'TN State board ', '', 'BA', '2016', 71.00, '', 1, '2023-01-18 01:07:29', 0, NULL, 0, NULL, 1),
(14845, 11782, '4', 'Barthidasan University ', '', 'MSW', '2022', 72.00, '', 1, '2023-01-18 01:31:37', 0, NULL, 0, NULL, 1),
(14846, 11784, '5', 'Panimalar ', '', 'Diploma csc ', '2018', 70.00, '', 1, '2023-01-19 11:23:22', 0, NULL, 0, NULL, 1),
(14847, 11786, '5', 'Deee', '', 'Dimploma', '2015', 65.00, '', 1, '2023-01-19 11:51:33', 0, NULL, 0, NULL, 1),
(14848, 11783, '3', 'Anna University ', '', 'B.E.', '2020', 69.00, '', 1, '2023-01-19 12:23:42', 1, '2023-01-19 12:24:44', 0, NULL, 0),
(14849, 11783, '2', 'State board of secondary education ', '', '', '2016', 64.00, '', 1, '2023-01-19 12:24:30', 1, '2023-01-19 12:24:47', 0, NULL, 0),
(14850, 11783, '1', 'Tamilnadu board of education ', '', '', '2014', 75.00, '', 1, '2023-01-19 12:27:23', 0, NULL, 0, NULL, 1),
(14851, 11783, '2', 'State board of secondary education ', '', '', '2016', 64.00, '', 1, '2023-01-19 12:27:53', 0, NULL, 0, NULL, 1),
(14852, 11783, '3', 'Anna University ', '', 'B.E.', '2020', 69.00, '', 1, '2023-01-19 12:28:18', 0, NULL, 0, NULL, 1),
(14853, 11787, '3', 'Anna University', '', 'B.E', '2022', 76.50, '', 1, '2023-01-19 01:33:51', 0, NULL, 0, NULL, 1),
(14854, 11788, '3', 'Madras University ', '', 'BSC Computer Science ', '2022', 82.30, '', 1, '2023-01-19 11:03:30', 0, NULL, 0, NULL, 1),
(14855, 11791, '3', 'Anna University ', '', 'BE', '2022', 7.48, '', 1, '2023-01-20 06:15:07', 0, NULL, 0, NULL, 1),
(14856, 11792, '3', 'Anna University', '', 'B.E.', '2018', 72.00, '', 1, '2023-01-20 06:37:51', 0, NULL, 0, NULL, 1),
(14857, 11792, '2', 'Tamil Nadu State board Corporation', '', '', '2014', 88.00, '', 1, '2023-01-20 06:38:30', 0, NULL, 0, NULL, 1),
(14858, 11792, '1', 'Tamil Nadu State Board Corporation', '', '', '2012', 87.00, '', 1, '2023-01-20 06:38:58', 0, NULL, 0, NULL, 1),
(14859, 11796, '3', 'Chhattisgarh Swami Vivekananda technical University', '', 'BE', '2022', 84.00, '', 1, '2023-01-21 01:02:45', 0, NULL, 0, NULL, 1),
(14860, 11794, '1', 'state board', '', '', '2017', 99.00, '', 1, '2023-01-22 07:33:08', 0, NULL, 0, NULL, 1),
(14861, 11794, '2', 'state board', '', '', '2019', 93.00, '', 1, '2023-01-22 07:33:28', 0, NULL, 0, NULL, 1),
(14862, 11794, '3', 'anna university', '', 'bachelor of engineering', '2023', 80.00, '', 1, '2023-01-22 07:34:14', 0, NULL, 0, NULL, 1),
(14863, 11797, '3', 'Anna University ', '', 'B.Tech', '2021', 77.00, '', 1, '2023-01-22 09:00:44', 0, NULL, 0, NULL, 1),
(14864, 11797, '1', 'StateBoard', '', '', '2015', 71.00, '', 1, '2023-01-22 09:01:12', 0, NULL, 0, NULL, 1),
(14865, 11797, '2', 'Stateboard', '', '', '2017', 59.00, '', 1, '2023-01-22 09:01:42', 0, NULL, 0, NULL, 1),
(14866, 11800, '3', 'Mahendra engineering college, Autonomous', '', 'BE (aeronautical engineering)', '2019', 7.43, '', 1, '2023-01-23 12:12:03', 0, NULL, 0, NULL, 1),
(14867, 11799, '3', 'anna university - velammal institute of technology', '', 'bachelor of engineering - computer science and eng', '2022', 85.10, '', 1, '2023-01-23 12:12:13', 0, NULL, 0, NULL, 1),
(14868, 11799, '2', 'state board - st. josephs girls higher secondary school', '', '', '2018', 82.25, '', 1, '2023-01-23 12:13:31', 1, '2023-01-23 12:14:31', 0, NULL, 1),
(14869, 11799, '1', 'State Board - St. Josephs Girls Higher Secondary School', '', '', '2016', 90.00, '', 1, '2023-01-23 12:14:48', 0, NULL, 0, NULL, 1),
(14870, 11801, '3', 'dr mgr university', '', 'b.com cs', '2021', 80.00, '', 1, '2023-01-23 12:36:37', 0, NULL, 0, NULL, 1),
(14871, 11798, '3', 'Anna university ', '', 'BE-mechanical engineering ', '2021', 69.00, '', 1, '2023-01-23 01:03:58', 0, NULL, 0, NULL, 1),
(14872, 11798, '3', 'PAVAI engineering college', '', 'BE', '2021', 70.00, '', 85, '2023-01-23 01:05:42', 85, '2023-01-23 01:05:48', 0, NULL, 0),
(14873, 11802, '5', 'Anna university ', '', 'Dme', '2015', 70.00, '', 1, '2023-01-23 02:48:32', 0, NULL, 0, NULL, 1),
(14874, 11803, '4', 'Anna university ', '', 'MCA', '2022', 81.00, '', 1, '2023-01-23 04:30:37', 0, NULL, 0, NULL, 1),
(14875, 11804, '3', 'Periyar University ', '', 'Bsc. Computer science ', '2020', 65.00, '', 1, '2023-01-24 02:44:00', 0, NULL, 0, NULL, 1),
(14876, 11805, '1', 'State board ', '', '', '2017', 80.00, '', 1, '2023-01-24 10:05:42', 0, NULL, 0, NULL, 1),
(14877, 11805, '2', 'State board ', '', '', '2019', 58.00, '', 1, '2023-01-24 10:06:03', 0, NULL, 0, NULL, 1),
(14878, 11805, '3', 'University of Madras ', '', 'BCA', '2022', 77.00, '', 1, '2023-01-24 10:06:26', 0, NULL, 0, NULL, 1),
(14879, 11806, '3', 'Madras University ', '', 'B.com', '2021', 72.00, '', 1, '2023-01-24 11:33:55', 0, NULL, 0, NULL, 1),
(14880, 10409, '5', 'P.t Lee chengalvaraya naikar', '', 'Ece', '2019', 72.00, '', 1, '2023-01-24 12:14:39', 0, NULL, 0, NULL, 1),
(14881, 11811, '3', 'University', '', '', '2022', 78.00, '', 1, '2023-01-24 11:22:15', 0, NULL, 0, NULL, 1),
(14882, 11809, '3', 'Barathidhasan university', '', 'Bachelor of computer application', '2022', 75.00, '', 1, '2023-01-25 09:52:32', 0, NULL, 0, NULL, 1),
(14883, 11813, '3', 'Madras University ', '', 'BCA ', '2021', 67.00, '', 1, '2023-01-25 09:54:44', 0, NULL, 0, NULL, 1),
(14884, 11814, '3', 'Stella Maris college of engineering ', '', 'BE', '2021', 74.00, '', 1, '2023-01-25 12:35:08', 0, NULL, 0, NULL, 1),
(14885, 11815, '4', 'Madras University ', '', 'MBA ', '2015', 60.00, '', 1, '2023-01-25 02:15:20', 0, NULL, 0, NULL, 1),
(14886, 11808, '3', 'anna university ', '', 'B.comcsca', '2021', 52.00, '', 1, '2023-01-25 02:53:03', 0, NULL, 0, NULL, 1),
(14887, 11817, '4', 'Prist University', '', 'B. Com', '2022', 75.00, '', 1, '2023-01-25 06:20:41', 1, '2023-01-25 06:20:52', 0, NULL, 0),
(14888, 11817, '4', 'Prist university', '', 'B. Com', '2022', 75.00, '', 1, '2023-01-25 06:21:36', 0, NULL, 0, NULL, 1),
(14889, 11818, '3', 'Bhaktavatsalam memorial College for Women', '', 'Bachelor of commerce', '2017', 67.00, '', 1, '2023-01-27 10:31:33', 1, '2023-01-27 10:32:33', 0, NULL, 1),
(14890, 11818, '2', 'Nazareth Matric Higher secondary school', '', '', '2014', 87.00, '', 1, '2023-01-27 10:33:31', 0, NULL, 0, NULL, 1),
(14891, 11819, '3', 'Madras University ', '', 'BBA ', '2021', 75.00, '', 1, '2023-01-27 12:21:35', 0, NULL, 0, NULL, 1),
(14892, 11820, '4', 'Madras University ', '', 'Bcom Computer Applications ', '2021', 65.00, '', 1, '2023-01-27 12:31:41', 0, NULL, 0, NULL, 1),
(14893, 11779, '3', 'velammal institute of technology', '', 'b.e cse', '2022', 82.00, '', 1, '2023-01-27 04:22:12', 0, NULL, 0, NULL, 1),
(14894, 11822, '3', 'thiruvalluvar university', '', 'bcom', '2022', 75.00, '', 1, '2023-01-28 09:29:03', 0, NULL, 0, NULL, 1),
(14895, 11823, '3', 'Bharadhidhasan University ', '', 'B.sc mathematics ', '2019', 78.00, '', 1, '2023-01-28 10:33:53', 0, NULL, 0, NULL, 1),
(14896, 11824, '3', 'B. S Abdur Rahman University ', '', 'B-tech ', '2016', 66.70, '', 1, '2023-01-28 11:11:06', 1, '2023-01-28 11:12:13', 0, NULL, 1),
(14897, 11824, '5', 'Anna University ', '', 'Diploma in Mechanical engineering ', '2013', 86.32, '', 1, '2023-01-28 11:11:47', 1, '2023-01-28 11:13:36', 0, NULL, 1),
(14898, 11824, '1', 'Tamil Nadu State Board', '', '', '2010', 76.00, '', 1, '2023-01-28 11:12:46', 0, NULL, 0, NULL, 1),
(14899, 11826, '3', 'Madras University ', '', 'B.com', '2021', 75.00, '', 1, '2023-01-28 05:29:30', 0, NULL, 0, NULL, 1),
(14900, 11827, '3', 'Madras University ', '', 'B.sc chemistry ', '2020', 70.00, '', 1, '2023-01-29 07:08:14', 0, NULL, 0, NULL, 1),
(14901, 11828, '1', 'CBSE', '', '', '2016', 86.00, '', 1, '2023-01-30 12:19:59', 0, NULL, 0, NULL, 1),
(14902, 11828, '2', 'State Board ', '', '', '2018', 79.16, '', 1, '2023-01-30 12:20:42', 0, NULL, 0, NULL, 1),
(14903, 11828, '3', 'Agni College of Technology', '', 'BE-CSE', '2023', 90.40, '', 1, '2023-01-30 12:21:19', 0, NULL, 0, NULL, 1),
(14904, 11829, '3', 'Bharathi womens arts an science College ', '', 'BA ', '2022', 75.00, '', 1, '2023-01-30 01:06:31', 0, NULL, 0, NULL, 1),
(14905, 11830, '3', 'd.b jain arts and science', '', 'b.b.a', '2018', 70.00, '', 1, '2023-01-30 02:39:54', 0, NULL, 0, NULL, 1),
(14906, 11832, '4', 'University of Madras ', '', 'MCA Computer Applications ', '2022', 80.00, '', 1, '2023-01-30 07:03:14', 0, NULL, 0, NULL, 1),
(14907, 11833, '3', 'Madras University ', '', 'BA History ', '2021', 51.00, '', 1, '2023-01-31 09:59:24', 0, NULL, 0, NULL, 1),
(14908, 11834, '5', 'psb polytechinc college', '', 'diploma', '2013', 84.00, '', 1, '2023-01-31 11:01:50', 0, NULL, 0, NULL, 1),
(14909, 11840, '3', 'Apollo arts and sciences ', '', 'B.com', '2021', 75.00, '', 1, '2023-02-01 08:02:56', 0, NULL, 0, NULL, 1),
(14910, 11840, '2', 'Bcs Jain matric hr sec school ', '', '', '2018', 68.00, '', 1, '2023-02-01 08:03:48', 1, '2023-02-01 08:03:59', 0, NULL, 0),
(14911, 11835, '3', 'Anna University ', '', 'BE mechanical engineering ', '2018', 5.91, '', 1, '2023-02-01 09:26:49', 0, NULL, 0, NULL, 1),
(14912, 11841, '3', 'Patrician College of Arts and Science', '', 'Bcom', '2018', 71.00, '', 1, '2023-02-01 10:37:42', 0, NULL, 0, NULL, 1),
(14913, 11842, '3', 'University of madras', '', 'B. Com (CS) ', '2017', 62.00, '', 1, '2023-02-01 10:58:17', 0, NULL, 0, NULL, 1),
(14914, 11837, '3', 'Madras University ', '', 'BA', '2022', 70.20, '', 1, '2023-02-01 11:24:27', 0, NULL, 0, NULL, 1),
(14915, 11843, '3', 'Bharathidasan university ', '', 'Bsc', '2021', 76.00, '', 1, '2023-02-01 11:24:46', 0, NULL, 0, NULL, 1),
(14916, 11607, '3', 'Madras University ', '', 'B.A ', '2022', 6.82, '', 1, '2023-02-01 11:26:02', 0, NULL, 0, NULL, 1),
(14917, 11838, '3', 'am jain ', '', 'ba', '2022', 67.00, '', 1, '2023-02-01 12:06:54', 0, NULL, 0, NULL, 1),
(14918, 11844, '3', 'Madras University ', '', 'B.com', '2020', 75.00, '', 1, '2023-02-01 12:23:14', 0, NULL, 0, NULL, 1),
(14919, 11831, '4', 'Madras University', '', 'Msc IT', '2021', 69.00, '', 1, '2023-02-01 12:24:28', 0, NULL, 0, NULL, 1),
(14920, 11845, '3', 'Madras University ', '', 'Bsc.psychology', '2022', 75.00, '', 1, '2023-02-01 12:52:01', 0, NULL, 0, NULL, 1),
(14921, 11846, '3', 'Anna university ', '', 'B.E', '2021', 7.27, '', 1, '2023-02-01 01:31:08', 0, NULL, 0, NULL, 1),
(14922, 11836, '3', 'Rajah serfoji government College, Thanjavur ', '', 'BCOM ', '2021', 79.00, '', 1, '2023-02-01 01:32:27', 0, NULL, 0, NULL, 1),
(14923, 11848, '2', 'Dote', '', 'Dipoloma', '2020', 75.00, '', 1, '2023-02-01 02:23:22', 1, '2023-02-01 02:24:14', 0, NULL, 0),
(14924, 11848, '2', 'Dote', '', '', '2020', 73.00, '', 1, '2023-02-01 02:24:16', 0, NULL, 0, NULL, 1),
(14925, 11847, '3', 'mgr ', '', 'bsc visual comm', '2021', 70.00, '', 1, '2023-02-01 02:45:32', 0, NULL, 0, NULL, 1),
(14926, 11850, '3', 'BHARATHIDASAN UNIVERSITY', '', 'BCA', '2020', 76.00, '', 1, '2023-02-02 10:10:21', 0, NULL, 0, NULL, 1),
(14927, 11851, '4', 'Bharathidasan University ', '', 'M. Sc mathematics ', '2021', 72.00, '', 1, '2023-02-02 10:10:33', 0, NULL, 0, NULL, 1),
(14928, 11852, '3', 'Anna university', '', 'B. E mechanical engineering', '2014', 65.00, '', 1, '2023-02-02 10:46:56', 0, NULL, 0, NULL, 1),
(14929, 11856, '3', 'anna university', '', ' Bachelor of Engineering', '2020', 87.40, '', 1, '2023-02-02 06:14:37', 0, NULL, 0, NULL, 1),
(14930, 11856, '2', 'stateboard', '', '', '2016', 82.75, '', 1, '2023-02-02 06:15:09', 0, NULL, 0, NULL, 1),
(14931, 11856, '1', 'stateboard', '', '', '2014', 95.20, '', 1, '2023-02-02 06:15:30', 0, NULL, 0, NULL, 1),
(14932, 11854, '3', 'SRMIST ', '', 'B.Tech', '2022', 7.47, '', 1, '2023-02-02 06:41:07', 0, NULL, 0, NULL, 1),
(14933, 11855, '3', 'University ', '', 'BCA', '2022', 73.00, '', 1, '2023-02-02 07:04:44', 0, NULL, 0, NULL, 1),
(14934, 11855, '2', 'Board ', '', '', '2019', 64.33, '', 1, '2023-02-02 07:05:21', 0, NULL, 0, NULL, 1),
(14935, 11853, '3', 'Unnamalai  Institute  of Technology ', '', 'BE-ECE', '2019', 64.20, '', 1, '2023-02-02 07:14:15', 0, NULL, 0, NULL, 1),
(14936, 11859, '3', 'Bcom', '', 'Accounts', '2021', 70.00, '', 1, '2023-02-03 10:36:38', 0, NULL, 0, NULL, 1),
(14937, 11858, '4', 'Bharadhidasan', '', 'Ma', '2016', 59.00, '', 1, '2023-02-03 10:57:28', 0, NULL, 0, NULL, 1),
(14938, 11857, '5', 'Periyar university', '', 'Bcom', '2020', 62.00, '', 1, '2023-02-03 10:59:38', 0, NULL, 0, NULL, 1),
(14939, 11860, '5', 'diploma', '', 'diploma', '2021', 67.00, '', 1, '2023-02-03 12:23:07', 0, NULL, 0, NULL, 1),
(14940, 11861, '3', 'Bharathiar University', '', 'B.A', '2014', 70.00, '', 1, '2023-02-04 10:20:11', 0, NULL, 0, NULL, 1),
(14941, 11862, '3', 'rajiv Gandhi Proudyogiki viswavidayala', '', 'B. E. ', '2009', 70.00, '', 1, '2023-02-04 10:26:06', 0, NULL, 0, NULL, 1),
(14942, 11862, '2', 'M. P. Board', '', '', '2005', 70.00, '', 1, '2023-02-04 10:26:26', 0, NULL, 0, NULL, 1),
(14943, 11862, '1', 'M. P. Board', '', '', '2003', 69.00, '', 1, '2023-02-04 10:26:44', 0, NULL, 0, NULL, 1),
(14944, 11839, '3', 'annai velankani ', '', 'bba', '2020', 82.00, '', 1, '2023-02-04 11:03:55', 0, NULL, 0, NULL, 1),
(14945, 11863, '3', 'Madras University ', '', 'BBA', '2021', 60.00, '', 1, '2023-02-04 11:30:12', 0, NULL, 0, NULL, 1),
(14946, 11864, '3', 'anna university ', '', 'Bachelor of Engineering ', '2021', 83.00, '', 1, '2023-02-04 03:38:41', 0, NULL, 0, NULL, 1),
(14947, 11865, '3', 'Maders University ', '', 'Ba English literature ', '2021', 64.00, '', 1, '2023-02-04 04:51:53', 0, NULL, 0, NULL, 1),
(14948, 11866, '4', 'Vels University', '', 'M.Sc Software Technology', '2021', 81.00, '', 1, '2023-02-05 11:06:43', 0, NULL, 0, NULL, 1),
(14949, 11868, '3', 'Government college for women\'s', '', 'B. Com', '2021', 76.00, '', 1, '2023-02-06 09:55:15', 0, NULL, 0, NULL, 1),
(14950, 11871, '3', 'Thiruvalluvar university ', '', 'B. Sc physical', '2022', 79.00, '', 1, '2023-02-07 10:49:39', 0, NULL, 0, NULL, 1),
(14951, 11869, '4', 'madar universitY', '', 'MA', '2021', 70.00, '', 85, '2023-02-07 11:03:01', 0, NULL, 0, NULL, 1),
(14952, 11873, '3', 'Madras university ', '', 'BBA ', '2021', 7.80, '', 1, '2023-02-07 11:42:54', 0, NULL, 0, NULL, 1),
(14953, 11874, '3', 'jha agrasen college', '', 'bcom', '2022', 85.00, '', 1, '2023-02-07 11:47:04', 0, NULL, 0, NULL, 1),
(14954, 11872, '2', 'Higher secondary', '', '', '2011', 87.00, '', 1, '2023-02-07 11:51:47', 0, NULL, 0, NULL, 1),
(14955, 11875, '4', 'Madras university ', '', 'M.A economics ', '2016', 70.00, '', 1, '2023-02-07 12:49:08', 0, NULL, 0, NULL, 1),
(14956, 11876, '2', ' M H School ', '', '', '2011', 50.00, '', 1, '2023-02-07 12:53:02', 0, NULL, 0, NULL, 1),
(14957, 11877, '1', 'State board', '', '', '2016', 94.00, '', 1, '2023-02-08 09:26:35', 0, NULL, 0, NULL, 1),
(14958, 11877, '2', 'State board', '', '', '2018', 74.00, '', 1, '2023-02-08 09:26:59', 0, NULL, 0, NULL, 1),
(14959, 11877, '3', 'University of panruti', '', 'BE ( Computer science )', '2022', 81.00, '', 1, '2023-02-08 09:27:57', 0, NULL, 0, NULL, 1),
(14960, 11878, '1', 'Wesley higher secondary school', '', '', '2015', 60.00, '', 1, '2023-02-08 11:10:11', 0, NULL, 0, NULL, 1),
(14961, 11870, '5', 'Anna University ', '', 'Diploma in automobile ', '2018', 75.00, '', 1, '2023-02-08 11:29:07', 0, NULL, 0, NULL, 1),
(14962, 11879, '3', 'Madras University ', '', 'Bsc Mathematics ', '2022', 92.00, '', 1, '2023-02-08 11:42:44', 1, '2023-02-08 11:43:41', 0, NULL, 0),
(14963, 11879, '2', 'State board ', '', '', '2019', 85.00, '', 1, '2023-02-08 11:43:23', 1, '2023-02-08 11:43:40', 0, NULL, 0),
(14964, 11879, '1', 'State board ', '', '', '2017', 95.00, '', 1, '2023-02-08 11:44:07', 0, NULL, 0, NULL, 1),
(14965, 11879, '2', 'State board ', '', '', '2019', 85.00, '', 1, '2023-02-08 11:44:22', 0, NULL, 0, NULL, 1),
(14966, 11879, '3', 'State board ', '', 'Bsc Mathematics ', '2022', 92.00, '', 1, '2023-02-08 11:44:46', 0, NULL, 0, NULL, 1),
(14967, 11883, '3', 'Bharathiyar University ', '', 'B.sc computer science ', '2022', 86.00, '', 1, '2023-02-09 11:30:20', 0, NULL, 0, NULL, 1),
(14968, 11885, '3', 'Madras university', '', 'B. Com (cs) ', '2018', 58.00, '', 1, '2023-02-09 11:57:49', 0, NULL, 0, NULL, 1),
(14969, 11886, '2', 'Tamilnadu board', '', '', '2016', 55.00, '', 1, '2023-02-09 12:33:03', 0, NULL, 0, NULL, 1),
(14970, 11887, '5', 'Government polytechnic college', '', '', '2022', 90.00, '', 1, '2023-02-09 02:32:08', 0, NULL, 0, NULL, 1),
(14971, 11889, '4', 'University of Madras ', '', 'MBA', '2022', 81.00, '', 1, '2023-02-09 05:31:39', 0, NULL, 0, NULL, 1),
(14972, 11889, '4', 'University of Madras ', '', 'MBA', '2022', 81.00, '', 1, '2023-02-09 05:32:44', 1, '2023-02-09 05:32:54', 0, NULL, 0),
(14973, 11890, '5', 'Sri nallalaghu nadar polythenic college', '', 'Dipoloma', '2021', 65.00, '', 1, '2023-02-10 10:48:19', 0, NULL, 0, NULL, 1),
(14974, 11891, '3', 'Madras University ', '', 'B.SC Zoopla ', '2021', 72.00, '', 1, '2023-02-10 11:45:58', 0, NULL, 0, NULL, 1),
(14975, 11893, '3', 'Periya University ', '', 'B.sc computer science ', '2021', 60.00, '', 1, '2023-02-10 12:30:41', 0, NULL, 0, NULL, 1),
(14976, 11898, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2021', 74.00, '', 1, '2023-02-10 01:20:06', 0, NULL, 0, NULL, 1),
(14977, 11897, '2', 'dvs readdy hr sec school', '', 'bba', '2015', 56.00, '', 1, '2023-02-10 01:22:34', 0, NULL, 0, NULL, 1),
(14978, 11899, '2', 'STATE BOARD', '', '', '2013', 70.00, '', 1, '2023-02-10 02:36:07', 1, '2023-02-10 02:36:31', 0, NULL, 0),
(14979, 11899, '3', 'ANNA UNIV', '', 'BE', '2017', 76.40, '', 1, '2023-02-10 02:37:30', 0, NULL, 0, NULL, 1),
(14980, 11902, '3', 'madras university', '', 'bca', '2015', 62.00, '', 1, '2023-02-11 11:11:25', 0, NULL, 0, NULL, 1),
(14981, 11903, '5', 'Al ameen polytechnic college ', '', 'DAE', '2016', 63.00, '', 1, '2023-02-12 12:23:56', 0, NULL, 0, NULL, 1),
(14982, 11906, '5', 'Dote', '', 'Ece', '2016', 88.00, '', 1, '2023-02-15 10:28:30', 0, NULL, 0, NULL, 1),
(14983, 11905, '3', 'Sathyabama University ', '', 'Bachelors of commerce ', '2019', 6.54, '', 1, '2023-02-15 10:33:30', 0, NULL, 0, NULL, 1),
(14984, 11907, '3', 'University of Madras ', '', 'B.COM', '2020', 50.00, '', 1, '2023-02-15 10:59:57', 0, NULL, 0, NULL, 1),
(14985, 11910, '3', 'Bharathidasan University ', '', 'Bsc IT', '2019', 75.50, '', 1, '2023-02-15 11:40:22', 0, NULL, 0, NULL, 1),
(14986, 11911, '4', 'university of madras', '', 'msc ', '2021', 80.00, '', 1, '2023-02-15 03:46:33', 0, NULL, 0, NULL, 1),
(14987, 11912, '3', 'Sri Sairam Engineering College ', '', 'BE', '2021', 7.70, '', 1, '2023-02-16 11:26:57', 0, NULL, 0, NULL, 1),
(14988, 11912, '2', 'Vidya Vikas boys higher secondary school ', '', '', '2017', 83.00, '', 1, '2023-02-16 11:27:56', 0, NULL, 0, NULL, 1),
(14989, 11913, '5', 'Sri nallazhagu polytechnic college', '', '', '2016', 70.00, '', 1, '2023-02-16 11:28:34', 0, NULL, 0, NULL, 1),
(14990, 11912, '1', 'Dr.g.s.kalyana Sundaram.mt.hr.sec.school', '', '', '2015', 93.50, '', 1, '2023-02-16 11:28:51', 0, NULL, 0, NULL, 1),
(14991, 11914, '3', 'Madras University ', '', 'B.com', '2022', 51.80, '', 1, '2023-02-16 03:50:05', 0, NULL, 0, NULL, 1),
(14992, 11914, '2', 'State board', '', '', '2019', 47.60, '', 1, '2023-02-16 03:50:49', 0, NULL, 0, NULL, 1),
(14993, 11914, '1', 'State board ', '', '', '2017', 79.80, '', 1, '2023-02-16 03:51:23', 0, NULL, 0, NULL, 1),
(14994, 11915, '3', 'Quaid millage womens', '', 'BA', '2018', 59.00, '', 1, '2023-02-16 05:36:06', 0, NULL, 0, NULL, 1),
(14995, 11916, '3', 'Madras University ', '', 'Bcom cs', '2022', 89.00, '', 1, '2023-02-17 10:58:43', 0, NULL, 0, NULL, 1),
(14996, 11917, '3', 'University', '', 'Bca', '2021', 75.00, '', 1, '2023-02-17 01:12:09', 0, NULL, 0, NULL, 1),
(14997, 11919, '3', 'University of madras ', '', 'Bsc computer science ', '2021', 75.00, '', 1, '2023-02-17 05:12:09', 0, NULL, 0, NULL, 1),
(14998, 11921, '3', 'Vels University', '', 'Bsc Biotechnology ', '2019', 63.00, '', 1, '2023-02-18 11:10:24', 0, NULL, 0, NULL, 1),
(14999, 11922, '4', 'Madras University ', '', 'MSW HR ', '2022', 82.00, '', 1, '2023-02-18 11:13:44', 0, NULL, 0, NULL, 1),
(15000, 11923, '3', 'university of madras', '', 'bca', '2015', 76.00, '', 1, '2023-02-18 12:41:31', 0, NULL, 0, NULL, 1),
(15001, 11924, '3', 'Madras University ', '', 'B.com accounting finance ', '2019', 75.00, '', 1, '2023-02-18 01:18:17', 0, NULL, 0, NULL, 1),
(15002, 11918, '3', 'University of madras', '', 'BBA', '2017', 65.00, '', 1, '2023-02-19 09:04:35', 0, NULL, 0, NULL, 1),
(15003, 11925, '3', 'BHARATHIDASAN UNIVERSITY ', '', 'BCA ', '2022', 86.00, '', 1, '2023-02-20 11:20:35', 0, NULL, 0, NULL, 1),
(15004, 11926, '3', 'Bharathidasan university ', '', 'BCA', '2022', 85.00, '', 1, '2023-02-20 11:23:53', 0, NULL, 0, NULL, 1),
(15005, 11927, '3', 'Bharathidasan', '', 'Bsc', '2022', 88.00, '', 1, '2023-02-20 11:29:08', 0, NULL, 0, NULL, 1),
(15006, 11929, '3', 'kamban college', '', 'bca', '2019', 70.00, '', 1, '2023-02-20 12:08:54', 0, NULL, 0, NULL, 1),
(15007, 11930, '5', 'Dote', '', '', '2020', 75.00, '', 1, '2023-02-20 01:21:00', 0, NULL, 0, NULL, 1),
(15008, 11932, '4', 'Madras University ', '', 'MSW (HR)', '2022', 75.00, '', 1, '2023-02-20 02:16:42', 0, NULL, 0, NULL, 1),
(15009, 11931, '3', 'Madras University', '', 'BBA', '2020', 59.00, '', 1, '2023-02-20 02:16:51', 0, NULL, 0, NULL, 1),
(15010, 11933, '4', 'Anna University ', '', 'MBA ', '2021', 72.00, '', 1, '2023-02-20 05:05:32', 0, NULL, 0, NULL, 1),
(15011, 11933, '3', 'Thiruvalluvar University ', '', 'B.com', '2017', 54.00, '', 1, '2023-02-20 05:06:39', 0, NULL, 0, NULL, 1),
(15012, 11933, '2', 'State board', '', '', '2014', 62.00, '', 1, '2023-02-20 05:08:08', 0, NULL, 0, NULL, 1),
(15013, 11933, '1', 'State board ', '', '', '2012', 61.40, '', 1, '2023-02-20 05:08:50', 0, NULL, 0, NULL, 1),
(15014, 11934, '3', 'Thiruvalluvar ', '', 'Bsc', '2019', 75.00, '', 1, '2023-02-20 06:13:11', 0, NULL, 0, NULL, 1),
(15015, 11901, '4', 'University of Madras ', '', 'MBA', '2020', 90.00, '', 1, '2023-02-20 07:12:28', 0, NULL, 0, NULL, 1),
(15016, 11935, '1', 'State board', '', '', '2011', 50.00, '', 1, '2023-02-20 09:16:08', 0, NULL, 0, NULL, 1),
(15017, 11936, '3', 'University of Madras ', '', 'BBA', '2022', 84.00, '', 1, '2023-02-20 09:20:27', 0, NULL, 0, NULL, 1),
(15018, 11937, '3', 'Anna university', '', 'Be', '2021', 75.00, '', 1, '2023-02-21 11:32:06', 0, NULL, 0, NULL, 1),
(15019, 11938, '3', 'Anna University ', '', 'Be', '2020', 67.00, '', 1, '2023-02-21 11:33:38', 0, NULL, 0, NULL, 1),
(15020, 11939, '3', 'Bharathidhasan university', '', 'B. Sc mathematics', '2021', 74.00, '', 1, '2023-02-21 11:41:53', 0, NULL, 0, NULL, 1),
(15021, 11940, '3', 'Anna University  / T.J.S Engineering College ', '', 'BE Mechanical Engineering ', '2021', 7.80, '', 1, '2023-02-21 12:03:50', 0, NULL, 0, NULL, 1),
(15022, 11940, '2', 'State Board / sri kalai Magal  vidya mandir matric hr sec School', '', '', '2017', 84.60, '', 1, '2023-02-21 12:05:09', 0, NULL, 0, NULL, 1),
(15023, 11942, '3', 'Anna university ', '', 'BE CSE ', '2019', 85.00, '', 1, '2023-02-21 02:25:06', 0, NULL, 0, NULL, 1),
(15024, 11944, '4', 'Nagarjuna university', '', 'Mba', '2007', 64.00, '', 1, '2023-02-21 02:37:24', 0, NULL, 0, NULL, 1),
(15025, 11943, '3', 'Anna University', '', 'BE', '2020', 6.70, '', 1, '2023-02-21 02:44:41', 0, NULL, 0, NULL, 1),
(15026, 11946, '3', 'Lotola college ', '', 'B. Com', '2021', 63.00, '', 1, '2023-02-22 10:56:08', 0, NULL, 0, NULL, 1),
(15027, 11947, '3', 'mardas University ', '', 'bba', '2019', 65.00, '', 1, '2023-02-22 11:01:11', 0, NULL, 0, NULL, 1),
(15028, 11948, '1', 'Anna University ', '', '', '2019', 7.30, '', 1, '2023-02-22 11:30:14', 0, NULL, 0, NULL, 1),
(15029, 11949, '3', 'madras unversity', '', 'b.a economics', '2016', 70.00, '', 1, '2023-02-22 11:41:04', 0, NULL, 0, NULL, 1),
(15030, 11951, '3', 'Madras University ', '', 'B.com', '2021', 72.00, '', 1, '2023-02-22 03:05:14', 0, NULL, 0, NULL, 1),
(15031, 11953, '4', 'Madurai kamaraj University ', '', 'MA', '2020', 71.00, '', 1, '2023-02-22 03:52:02', 0, NULL, 0, NULL, 1),
(15032, 11953, '3', 'Madurai kamaraj University ', '', 'BA', '2018', 50.00, '', 1, '2023-02-22 03:52:32', 0, NULL, 0, NULL, 1),
(15033, 11952, '3', 'Anna University ', '', 'B Tech', '2020', 67.00, '', 1, '2023-02-22 04:11:00', 0, NULL, 0, NULL, 1),
(15034, 11955, '4', 'Alagappa University ', '', 'M.COM', '2024', 83.00, '', 1, '2023-02-23 01:55:47', 0, NULL, 0, NULL, 1),
(15035, 11955, '3', 'INDIAN INSTITUTE OF INTEGRATED SCIENCE AND TECHNOLOGY ', '', 'B.COM', '2013', 83.00, '', 1, '2023-02-23 01:57:45', 0, NULL, 0, NULL, 1),
(15036, 11956, '3', 'Dr. MGR Janaki College', '', 'BCA', '2021', 45.00, '', 1, '2023-02-23 03:09:12', 0, NULL, 0, NULL, 1),
(15037, 11958, '3', 'Anna university', '', 'B.TECH', '2023', 73.00, '', 1, '2023-02-24 10:39:40', 0, NULL, 0, NULL, 1),
(15038, 11959, '3', 'Anna university', '', 'B. TECH', '2023', 70.00, '', 1, '2023-02-24 10:43:16', 0, NULL, 0, NULL, 1),
(15039, 11960, '3', 'sathyabama', '', 'eie', '2019', 78.00, '', 1, '2023-02-24 11:18:09', 0, NULL, 0, NULL, 1),
(15040, 11960, '2', 'ramakrishna mission school', '', 'eie', '2015', 70.00, '', 1, '2023-02-24 11:20:52', 1, '2023-02-24 11:22:17', 0, NULL, 1),
(15041, 11960, '1', 'ramakrishna mission school', '', '', '2013', 77.00, '', 1, '2023-02-24 11:21:57', 0, NULL, 0, NULL, 1),
(15042, 11961, '3', 'Madras University', '', 'Bsc computer science', '2022', 75.50, '', 1, '2023-02-24 12:32:39', 0, NULL, 0, NULL, 1),
(15043, 11957, '3', 'Autonomous ', '', 'BA(history and tourism)', '2021', 44.00, '', 1, '2023-02-24 12:41:29', 0, NULL, 0, NULL, 1),
(15044, 11962, '4', 'National College jayanagar ', '', 'Bcom', '2019', 60.00, '', 1, '2023-02-24 01:47:28', 0, NULL, 0, NULL, 1),
(15045, 11963, '3', 'Bharathidasan University ', '', 'Bsc biotechnology ', '2022', 70.00, '', 1, '2023-02-25 10:18:10', 0, NULL, 0, NULL, 1),
(15046, 11964, '4', 'Anna university', '', 'Mca', '2018', 79.60, '', 1, '2023-02-25 10:34:58', 0, NULL, 0, NULL, 1),
(15047, 11964, '3', 'Bharathidasan University', '', 'Bca', '2015', 75.00, '', 1, '2023-02-25 10:35:35', 0, NULL, 0, NULL, 1),
(15048, 11966, '3', 'Madras University ', '', 'B com', '2012', 72.00, '', 1, '2023-02-25 03:12:36', 0, NULL, 0, NULL, 1),
(15049, 11968, '3', 'Madras university', '', 'B. Com', '2021', 78.00, '', 1, '2023-02-25 04:39:14', 0, NULL, 0, NULL, 1),
(15050, 11969, '5', 'Vel tech polytechnic college ', '', 'DEEE', '2010', 64.00, '', 1, '2023-02-25 04:49:23', 0, NULL, 0, NULL, 1),
(15051, 11975, '3', 'Madras University ', '', 'B. Com', '2019', 75.00, '', 1, '2023-02-27 10:47:04', 0, NULL, 0, NULL, 1),
(15052, 11974, '4', 'Madras University ', '', 'MBA ', '2021', 80.00, '', 1, '2023-02-27 10:47:54', 0, NULL, 0, NULL, 1),
(15053, 11976, '3', 'Madras university', '', 'BA', '2021', 80.00, '', 1, '2023-02-27 11:05:15', 0, NULL, 0, NULL, 1),
(15054, 11973, '3', 'MGR UNIVERSITY ', '', 'Bsc physics ', '2021', 81.00, '', 1, '2023-02-27 11:14:06', 0, NULL, 0, NULL, 1),
(15055, 11965, '3', 'Bharadhidasan', '', 'B lit', '2022', 63.00, '', 1, '2023-02-27 11:27:57', 0, NULL, 0, NULL, 1),
(15056, 11978, '5', 'MGR UNIVERSITY ', '', 'Diploma in pharmacy ', '2019', 75.00, '', 1, '2023-02-27 11:30:51', 0, NULL, 0, NULL, 1),
(15057, 11977, '3', 'jesu art and sci college', '', 'bsc', '2022', 70.00, '', 1, '2023-02-27 11:56:00', 0, NULL, 0, NULL, 1),
(15058, 11972, '3', 'ba', '', 'all saint christian law', '2020', 62.00, '', 1, '2023-02-27 12:37:29', 0, NULL, 0, NULL, 1),
(15059, 11980, '3', 'Anna university ', '', 'Be mechanical ', '2017', 6.50, '', 1, '2023-02-27 01:09:26', 0, NULL, 0, NULL, 1),
(15060, 11979, '3', 'Kumarani meena muthiyah college ', '', 'Bsc viscom', '2021', 68.00, '', 1, '2023-02-27 02:54:45', 0, NULL, 0, NULL, 1),
(15061, 11982, '5', 'Madras university ', '', 'EEE', '2021', 60.00, '', 1, '2023-02-27 04:55:40', 0, NULL, 0, NULL, 1),
(15062, 11983, '4', 'Bharadhidhasan University ', '', 'MSW', '2022', 86.00, '', 1, '2023-02-28 10:09:21', 0, NULL, 0, NULL, 1),
(15063, 11983, '3', 'Bharadhidhasan ', '', 'BSW', '2017', 72.00, '', 1, '2023-02-28 10:10:04', 1, '2023-02-28 10:10:40', 0, NULL, 1),
(15064, 11984, '3', 'ANJALAI AMMAL MAJHALINGAM ENGINEERING COLLEGE ', '', 'B.E', '2022', 7.90, '', 1, '2023-02-28 10:52:38', 0, NULL, 0, NULL, 1),
(15065, 11945, '3', 'Madras University ', '', 'B com ', '2022', 62.76, '', 1, '2023-02-28 11:33:24', 0, NULL, 0, NULL, 1),
(15066, 11985, '3', 'Madras University ', '', 'B.com', '2022', 45.00, '', 1, '2023-02-28 11:35:52', 0, NULL, 0, NULL, 1),
(15067, 11987, '3', 'Anna university', '', 'BE mechanical engineering', '2019', 6.20, '', 1, '2023-02-28 11:39:28', 0, NULL, 0, NULL, 1),
(15068, 11986, '3', 'Madras  University', '', 'B. com ', '2022', 63.00, '', 1, '2023-02-28 11:42:35', 0, NULL, 0, NULL, 1),
(15069, 11988, '4', 'Anna University ', '', 'Mechatronics engineering ', '2020', 6.40, '', 1, '2023-02-28 11:49:38', 0, NULL, 0, NULL, 1),
(15070, 11989, '3', 'The new college', '', 'Bcom', '2020', 79.00, '', 1, '2023-02-28 11:55:37', 0, NULL, 0, NULL, 1),
(15071, 11990, '3', 'Madras University ', '', 'B.com', '2022', 48.00, '', 1, '2023-02-28 12:59:51', 0, NULL, 0, NULL, 1),
(15072, 11992, '3', 'Bharadidhasan university ', '', 'B.com ', '2017', 70.00, '', 1, '2023-02-28 02:21:37', 0, NULL, 0, NULL, 1),
(15073, 11993, '3', 'Vellore Institute of technology', '', 'Bsc Cs', '2016', 63.00, '', 1, '2023-02-28 05:04:36', 0, NULL, 0, NULL, 1),
(15074, 11993, '1', 'State Board', '', '', '2011', 62.00, '', 1, '2023-02-28 05:06:09', 0, NULL, 0, NULL, 1),
(15075, 11993, '2', 'State board', '', '', '2013', 66.00, '', 1, '2023-02-28 05:06:42', 0, NULL, 0, NULL, 1),
(15076, 11995, '3', 'Anna University ', '', 'B tech', '2019', 63.00, '', 1, '2023-03-01 11:28:10', 0, NULL, 0, NULL, 1),
(15077, 11996, '3', 'Madras University ', '', 'Bcom Computer Application ', '2022', 72.00, '', 1, '2023-03-01 12:42:40', 0, NULL, 0, NULL, 1),
(15078, 11997, '3', 'arasu engineering college', '', 'bachelor of engineering', '2023', 7.90, '', 1, '2023-03-01 01:48:22', 0, NULL, 0, NULL, 1),
(15079, 11997, '2', 'christ the king matric higher secondary school', '', '', '2019', 63.00, '', 1, '2023-03-01 01:49:45', 0, NULL, 0, NULL, 1),
(15080, 11998, '3', 'SRM University ', '', 'Bachelor of Commerce', '2021', 79.16, '', 1, '2023-03-02 10:55:44', 0, NULL, 0, NULL, 1),
(15081, 11998, '2', 'State board ', '', '', '2018', 79.10, '', 1, '2023-03-02 10:56:14', 0, NULL, 0, NULL, 1),
(15082, 11998, '1', 'State board', '', '', '2016', 62.40, '', 1, '2023-03-02 10:57:07', 0, NULL, 0, NULL, 1),
(15083, 12000, '3', 'Tiruvalluvar university ', '', 'B.sc.mathematics ', '2019', 65.00, '', 1, '2023-03-02 11:42:17', 0, NULL, 0, NULL, 1),
(15084, 12001, '3', 'Anna University ', '', 'B.E', '2022', 83.00, '', 1, '2023-03-02 01:24:16', 0, NULL, 0, NULL, 1),
(15085, 12002, '3', 'MADRAS UNIVERSITY ', '', 'Bsc computer science ', '2021', 74.00, '', 1, '2023-03-02 01:25:50', 0, NULL, 0, NULL, 1),
(15086, 12003, '3', 'Anna University ', '', 'BE', '2021', 79.80, '', 1, '2023-03-02 02:32:03', 0, NULL, 0, NULL, 1),
(15087, 12004, '3', 'Vel Tech Multi Tech Dr Rangarajan Dr Shakunthala Engineering College ', '', 'B.Tech in Information Technology ', '2022', 80.00, '', 1, '2023-03-03 10:59:18', 0, NULL, 0, NULL, 1),
(15088, 12005, '3', 'Thiruvalluvar University ', '', 'B. SC computer science ', '2022', 75.00, '', 1, '2023-03-03 01:59:15', 0, NULL, 0, NULL, 1),
(15089, 12008, '3', 'Madras University ', '', 'Bsc mathematics ', '2020', 78.00, '', 1, '2023-03-04 10:48:51', 0, NULL, 0, NULL, 1),
(15090, 12007, '3', 'madurai kamaraj university', '', 'bsc chemistry', '2022', 87.00, '', 1, '2023-03-04 11:48:23', 0, NULL, 0, NULL, 1),
(15091, 12007, '2', 'govt hr sec school ', '', '', '2019', 83.00, '', 1, '2023-03-04 11:48:46', 0, NULL, 0, NULL, 1),
(15092, 12007, '1', 'govt hr sec school', '', '', '2017', 94.00, '', 1, '2023-03-04 11:49:07', 0, NULL, 0, NULL, 1),
(15093, 12009, '4', 'Madras University ', '', 'Mba', '2020', 65.00, '', 1, '2023-03-04 11:56:25', 0, NULL, 0, NULL, 1),
(15094, 12010, '3', 'Manomaiom Sundaranar University ', '', 'Bsc Computer Science ', '2022', 90.00, '', 1, '2023-03-05 09:12:56', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15095, 12010, '2', 'State Board', '', '', '2019', 68.00, '', 1, '2023-03-05 09:13:17', 0, NULL, 0, NULL, 1),
(15096, 12010, '1', 'State Board', '', '', '2017', 95.00, '', 1, '2023-03-05 09:13:43', 0, NULL, 0, NULL, 1),
(15097, 12012, '1', 'Little Oxford Matriculation Higher Secondary School', '', '', '2016', 68.00, '', 1, '2023-03-06 10:28:58', 1, '2023-03-06 10:32:31', 0, NULL, 1),
(15098, 12012, '2', 'Little Oxford Matriculation Higher Secondary School', '', '', '2018', 65.00, '', 1, '2023-03-06 10:29:40', 1, '2023-03-06 10:32:11', 0, NULL, 1),
(15099, 12012, '3', 'Loyola College chennai', '', 'B. A Economic', '2021', 70.00, '', 1, '2023-03-06 10:30:30', 0, NULL, 0, NULL, 1),
(15100, 12012, '4', 'Sathyabama university science and technology', '', 'MBA', '2023', 70.00, '', 1, '2023-03-06 10:31:16', 0, NULL, 0, NULL, 1),
(15101, 12013, '3', 'radhakrishnan arts and sci ', '', ' english', '2019', 70.00, '', 1, '2023-03-06 12:26:31', 0, NULL, 0, NULL, 1),
(15102, 12015, '3', 'Madras University ', '', 'Bcom accounting and finance ', '2022', 75.00, '', 1, '2023-03-06 05:11:03', 0, NULL, 0, NULL, 1),
(15103, 12016, '3', 'Madras University ', '', 'B.com cS', '2022', 79.00, '', 1, '2023-03-06 05:22:01', 0, NULL, 0, NULL, 1),
(15104, 12011, '4', 'Sathyabama university ', '', 'MBA', '2023', 76.00, '', 1, '2023-03-07 10:15:42', 0, NULL, 0, NULL, 1),
(15105, 12011, '3', 'Madras university ', '', 'B.COM', '2021', 80.00, '', 1, '2023-03-07 10:16:10', 0, NULL, 0, NULL, 1),
(15106, 12011, '2', 'State board ', '', '', '2016', 91.00, '', 1, '2023-03-07 10:16:27', 0, NULL, 0, NULL, 1),
(15107, 12011, '1', 'State board ', '', '', '2014', 89.00, '', 1, '2023-03-07 10:16:45', 0, NULL, 0, NULL, 1),
(15108, 12014, '3', 'BHARATHIDASAN UNIVERSITY ', '', 'Bsc computer science ', '2022', 78.00, '', 1, '2023-03-07 10:22:29', 0, NULL, 0, NULL, 1),
(15109, 12017, '4', 'Sathyabama University of Science and Technology', '', 'MBA', '2023', 85.00, '', 1, '2023-03-07 10:37:54', 0, NULL, 0, NULL, 1),
(15110, 12017, '3', 'Sathyabama University of Science and Technology', '', 'B.COM', '2021', 87.50, '', 1, '2023-03-07 10:38:34', 0, NULL, 0, NULL, 1),
(15111, 12017, '2', 'State Board', '', '', '2018', 87.50, '', 1, '2023-03-07 10:38:56', 0, NULL, 0, NULL, 1),
(15112, 12017, '1', 'State Board', '', '', '2016', 89.00, '', 1, '2023-03-07 10:40:19', 0, NULL, 0, NULL, 1),
(15113, 12018, '3', 'Madras University ', '', 'BCA', '2020', 68.00, '', 1, '2023-03-07 11:38:34', 0, NULL, 0, NULL, 1),
(15114, 12019, '2', 'State board', '', '', '2014', 70.00, '', 1, '2023-03-07 11:55:03', 0, NULL, 0, NULL, 1),
(15115, 12020, '3', 'Anna University', '', 'B.E', '2020', 62.00, '', 1, '2023-03-07 12:15:33', 0, NULL, 0, NULL, 1),
(15116, 12021, '4', 'karpaga vinayaga college of engineering', '', 'mca', '2021', 84.00, '', 1, '2023-03-08 12:35:29', 0, NULL, 0, NULL, 1),
(15117, 12022, '3', 'University ', '', 'BCA', '2021', 65.00, '', 1, '2023-03-09 09:53:27', 0, NULL, 0, NULL, 1),
(15118, 12023, '3', 'Madras University ', '', 'B. Com', '2019', 71.00, '', 1, '2023-03-09 02:08:21', 0, NULL, 0, NULL, 1),
(15119, 12024, '3', 'Madras University ', '', 'Bcom', '2019', 74.00, '', 1, '2023-03-09 02:14:40', 0, NULL, 0, NULL, 1),
(15120, 12025, '5', 'Mrk Institute of college', '', 'Dcse', '2020', 82.00, '', 1, '2023-03-09 04:35:46', 0, NULL, 0, NULL, 1),
(15121, 12025, '1', 'Mrk Institute of college', '', '', '2020', 82.00, '', 1, '2023-03-09 04:36:20', 1, '2023-03-09 04:36:38', 0, NULL, 0),
(15122, 12026, '3', 'Anna university', '', 'B.E computer science', '2022', 82.00, '', 1, '2023-03-09 06:43:10', 0, NULL, 0, NULL, 1),
(15123, 12028, '3', 'Ms University', '', 'BBA', '2019', 78.00, '', 1, '2023-03-10 10:44:02', 0, NULL, 0, NULL, 1),
(15124, 12027, '3', 'Tiruvalluvar University ', '', 'BCA Computer Application ', '2018', 63.50, '', 1, '2023-03-10 12:01:24', 0, NULL, 0, NULL, 1),
(15125, 12029, '3', 'Anna University ', '', 'B E', '2019', 6.02, '', 1, '2023-03-10 12:35:41', 0, NULL, 0, NULL, 1),
(15126, 12030, '3', 'Alagappa university', '', 'Bba', '2013', 60.00, '', 1, '2023-03-10 12:39:41', 0, NULL, 0, NULL, 1),
(15127, 12031, '4', 'Rvs college of engineering and technology', '', 'MBA in HR and Marketing', '2021', 70.00, '', 1, '2023-03-10 03:37:16', 0, NULL, 0, NULL, 1),
(15128, 12033, '3', 'Anna university ', '', 'B. E', '2020', 73.00, '', 1, '2023-03-11 11:28:23', 0, NULL, 0, NULL, 1),
(15129, 12035, '3', 'Anna University ', '', 'Bachelor of engineering ', '2022', 77.00, '', 1, '2023-03-11 11:29:04', 0, NULL, 0, NULL, 1),
(15130, 12035, '1', 'State board of TAMILNADU ', '', '', '2016', 85.00, '', 1, '2023-03-11 11:29:49', 0, NULL, 0, NULL, 1),
(15131, 12035, '2', 'State board of TAMILNADU ', '', '', '2018', 64.00, '', 1, '2023-03-11 11:30:16', 0, NULL, 0, NULL, 1),
(15132, 12034, '3', 'Aanad institute of higher technology, Chennai ', '', 'BE', '2019', 66.00, '', 1, '2023-03-11 11:30:44', 0, NULL, 0, NULL, 1),
(15133, 12036, '3', 'Loyola College', '', 'B.com', '2022', 61.00, '', 1, '2023-03-13 10:20:48', 0, NULL, 0, NULL, 1),
(15134, 12037, '5', 'GPTC', '', 'Nil', '2019', 70.00, '', 1, '2023-03-13 11:23:37', 0, NULL, 0, NULL, 1),
(15135, 12038, '3', 'Madras', '', 'B.A', '2002', 79.00, '', 1, '2023-03-13 12:24:52', 0, NULL, 0, NULL, 1),
(15136, 12041, '4', 'Hindustan institute of technology and science ', '', 'Mca', '2022', 8.60, '', 1, '2023-03-13 12:31:17', 0, NULL, 0, NULL, 1),
(15137, 12040, '4', 'vels institute', '', 'mca', '2023', 70.00, '', 1, '2023-03-13 12:31:44', 0, NULL, 0, NULL, 1),
(15138, 12042, '2', 'No', '', '', '2015', 47.00, '', 1, '2023-03-13 02:49:08', 0, NULL, 0, NULL, 1),
(15139, 12043, '3', 'Anna university', '', 'BE', '2018', 7.10, '', 1, '2023-03-14 10:31:57', 0, NULL, 0, NULL, 1),
(15140, 12045, '1', 'State board', '', '', '2017', 45.00, '', 1, '2023-03-14 11:02:54', 0, NULL, 0, NULL, 1),
(15141, 12049, '3', 'Madras University ', '', 'B.com', '2022', 82.00, '', 1, '2023-03-14 11:14:06', 0, NULL, 0, NULL, 1),
(15142, 12047, '3', 'Madras university', '', '', '2018', 75.00, '', 1, '2023-03-14 11:17:57', 0, NULL, 0, NULL, 1),
(15143, 12044, '3', 'Madras university', '', 'Bcom ca', '2017', 65.00, '', 1, '2023-03-14 11:20:44', 0, NULL, 0, NULL, 1),
(15144, 12046, '3', 'Anna university ', '', 'B. E', '2022', 76.00, '', 1, '2023-03-14 11:29:57', 0, NULL, 0, NULL, 1),
(15145, 12048, '2', 'Anna University ', '', '', '2019', 70.00, '', 1, '2023-03-14 11:40:14', 0, NULL, 0, NULL, 1),
(15146, 12051, '3', 'Anna University ', '', 'B.E(CSE)', '2018', 80.00, '', 1, '2023-03-14 12:11:13', 0, NULL, 0, NULL, 1),
(15147, 12052, '3', 'University of Madras ', '', 'B com ( Bank management)', '2021', 6.90, '', 1, '2023-03-14 04:50:11', 0, NULL, 0, NULL, 1),
(15148, 12053, '3', 'Kalasalingam Institute of technology ', '', 'BE', '2022', 8.26, '', 1, '2023-03-15 11:17:14', 0, NULL, 0, NULL, 1),
(15149, 12054, '3', 'Sree sakthi Engineering college', '', 'BE- Mechanical', '2022', 7.74, '', 1, '2023-03-15 11:24:58', 0, NULL, 0, NULL, 1),
(15150, 12056, '3', 'Anna University ', '', 'B.E-CSR', '2022', 83.00, '', 1, '2023-03-15 11:59:52', 0, NULL, 0, NULL, 1),
(15151, 12055, '3', 'Anna University ', '', 'B.E-CSE', '2022', 81.00, '', 1, '2023-03-15 12:11:40', 0, NULL, 0, NULL, 1),
(15152, 12057, '5', 'Saravanan paramedical College ', '', 'Nursing ', '2017', 100.00, '', 1, '2023-03-15 02:06:04', 0, NULL, 0, NULL, 1),
(15153, 12060, '5', 'State board', '', '', '2009', 89.00, '', 1, '2023-03-15 03:18:47', 0, NULL, 0, NULL, 1),
(15154, 12058, '3', 'Madras University ', '', 'B.com', '2019', 78.00, '', 1, '2023-03-15 03:19:17', 0, NULL, 0, NULL, 1),
(15155, 12059, '3', 'UNIVERSITY OF MADRAS ', '', 'B.com(ISM)', '2019', 65.00, '', 1, '2023-03-15 03:22:41', 0, NULL, 0, NULL, 1),
(15156, 12061, '4', 'MKU', '', 'Mca', '2023', 71.00, '', 1, '2023-03-16 10:57:47', 0, NULL, 0, NULL, 1),
(15157, 12062, '3', 'Madras University', '', 'Bsc computer science', '2020', 71.00, '', 1, '2023-03-16 11:39:20', 0, NULL, 0, NULL, 1),
(15158, 12064, '3', 'Government arts college-salem. ', '', 'BCA', '2019', 52.00, '', 1, '2023-03-17 10:22:18', 85, '2023-03-17 11:32:20', 0, NULL, 1),
(15159, 12065, '4', 'Anna University ', '', 'B.E(Mechanical engineering)', '2020', 69.82, '', 1, '2023-03-17 12:19:27', 0, NULL, 0, NULL, 1),
(15160, 12065, '1', 'N.S.M.V.P.S HIGHER SECONDARY SCHOOL ', '', '', '2014', 93.41, '', 1, '2023-03-17 12:20:23', 0, NULL, 0, NULL, 1),
(15161, 12065, '2', 'N.S.M.V.P.S.Hr.Sec.School ', '', '', '2016', 81.41, '', 1, '2023-03-17 12:20:40', 0, NULL, 0, NULL, 1),
(15162, 12066, '3', 'Shanmuganathan engineering college/Anna University', '', 'BE', '2020', 68.80, '', 1, '2023-03-17 12:21:38', 0, NULL, 0, NULL, 1),
(15163, 12066, '2', 'Laurel Higher secondary school ', '', '', '2015', 76.80, '', 1, '2023-03-17 12:22:14', 0, NULL, 0, NULL, 1),
(15164, 12066, '1', 'Laurel Higher secondary school ', '', '', '2013', 83.60, '', 1, '2023-03-17 12:22:47', 0, NULL, 0, NULL, 1),
(15165, 12068, '5', 'Kumaran polytechnic college', '', 'DCE', '2011', 74.00, '', 1, '2023-03-17 01:05:53', 0, NULL, 0, NULL, 1),
(15166, 12071, '4', 'Jss medical ', '', 'Mba', '2016', 79.00, '', 1, '2023-03-17 03:07:54', 0, NULL, 0, NULL, 1),
(15167, 12072, '3', 'Anna University ', '', 'BE', '2021', 7.31, '', 1, '2023-03-18 10:22:56', 0, NULL, 0, NULL, 1),
(15168, 12074, '4', 'University of Madras', '', 'MBA HRM', '2021', 85.00, '', 1, '2023-03-18 11:28:30', 0, NULL, 0, NULL, 1),
(15169, 12073, '3', 'Kamaraj University ', '', 'B.Sc', '2022', 70.00, '', 1, '2023-03-18 11:39:39', 1, '2023-03-18 11:40:08', 0, NULL, 0),
(15170, 12073, '3', 'Kamaraj University ', '', 'B.Sc', '2022', 63.00, '', 1, '2023-03-18 11:40:51', 0, NULL, 0, NULL, 1),
(15171, 12069, '5', 'Dote', '', 'Cs', '2020', 90.00, '', 1, '2023-03-18 11:44:59', 0, NULL, 0, NULL, 1),
(15172, 12067, '3', 'Bharathidasan', '', 'Computer applications ', '2020', 72.00, '', 1, '2023-03-18 11:53:37', 0, NULL, 0, NULL, 1),
(15173, 12075, '3', 'Dr MGR UNIVERSITY', '', 'B.tech cSE', '2022', 73.00, '', 1, '2023-03-18 12:00:52', 0, NULL, 0, NULL, 1),
(15174, 12077, '3', 'University ', '', 'B.TECH', '2022', 70.00, '', 1, '2023-03-18 12:02:04', 0, NULL, 0, NULL, 1),
(15175, 12076, '3', 'Dr.Mgr University ', '', 'B.TECH  CSE', '2022', 68.00, '', 1, '2023-03-18 12:25:38', 0, NULL, 0, NULL, 1),
(15176, 12076, '2', 'TN BOARD', '', '', '2018', 68.30, '', 1, '2023-03-18 12:26:21', 1, '2023-03-18 12:27:52', 0, NULL, 1),
(15177, 12076, '1', 'TN BOARD', '', '', '2016', 83.80, '', 1, '2023-03-18 12:26:53', 0, NULL, 0, NULL, 1),
(15178, 12079, '3', 'Bharathídànsàn university', '', 'Bcom ca', '2018', 83.00, '', 1, '2023-03-18 12:40:28', 0, NULL, 0, NULL, 1),
(15179, 12078, '3', 'Barathidhasan University ', '', 'B. com (ca )', '2021', 82.00, '', 1, '2023-03-18 12:46:28', 0, NULL, 0, NULL, 1),
(15180, 12081, '3', 'University', '', 'Pursuing ', '2023', 60.00, '', 1, '2023-03-18 05:14:56', 0, NULL, 0, NULL, 1),
(15181, 0, '3', ' University of Madras ', '', 'B com general ', '2022', 72.00, '', 1, '2023-03-20 10:44:15', 1, '2023-03-20 01:25:08', 0, NULL, 0),
(15182, 0, '3', 'SRM institute for training and development ', '', 'B.Com General', '2020', 70.00, '', 1, '2023-03-20 10:44:49', 1, '2023-03-20 01:24:04', 0, NULL, 0),
(15183, 0, '1', 'Tamil Nadu State Board', '', '12', '2015', 86.00, '', 1, '2023-03-20 10:45:59', 1, '2023-03-20 01:24:14', 0, NULL, 0),
(15184, 0, '1', 'Tamil Nadu State Board ', '', '10', '2015', 92.00, '', 1, '2023-03-20 10:46:28', 1, '2023-03-20 01:24:09', 0, NULL, 0),
(15185, 12082, '4', 'Vel tech University ', '', 'MBA', '2022', 72.00, '', 1, '2023-03-20 10:50:05', 0, NULL, 0, NULL, 1),
(15186, 12082, '3', 'Bharathiyar University ', '', 'B.com', '2020', 70.00, '', 1, '2023-03-20 10:52:04', 0, NULL, 0, NULL, 1),
(15187, 12082, '2', '12', '', '', '2017', 86.00, '', 1, '2023-03-20 10:53:10', 0, NULL, 0, NULL, 1),
(15188, 12082, '1', '10', '', '', '2015', 92.00, '', 1, '2023-03-20 10:53:22', 0, NULL, 0, NULL, 1),
(15189, 12084, '3', 'Board', '', 'B.sc', '2022', 70.00, '', 1, '2023-03-20 11:11:38', 0, NULL, 0, NULL, 1),
(15190, 12085, '3', 'University', '', 'BCA', '2022', 54.00, '', 1, '2023-03-20 11:19:52', 0, NULL, 0, NULL, 1),
(15191, 12085, '2', 'Board', '', '', '2019', 60.00, '', 1, '2023-03-20 11:20:58', 0, NULL, 0, NULL, 1),
(15192, 12085, '1', 'Board', '', '', '2017', 75.00, '', 1, '2023-03-20 11:21:26', 0, NULL, 0, NULL, 1),
(15193, 12083, '3', 'University ', '', 'BBA', '2022', 64.00, '', 1, '2023-03-20 11:35:28', 0, NULL, 0, NULL, 1),
(15194, 12086, '1', 'hsc', '', '', '2012', 80.00, '', 1, '2023-03-20 11:40:10', 1, '2023-03-20 11:42:15', 0, NULL, 0),
(15195, 12086, '2', 'matriculation', '', '', '2014', 70.00, '', 1, '2023-03-20 11:40:59', 0, NULL, 0, NULL, 1),
(15196, 12086, '3', 'loyola college', '', 'bsc', '2017', 60.00, '', 1, '2023-03-20 11:41:34', 0, NULL, 0, NULL, 1),
(15197, 12086, '4', 'loyola college', '', 'ma', '2021', 70.00, '', 1, '2023-03-20 11:42:06', 0, NULL, 0, NULL, 1),
(15198, 12087, '2', 'tamilnadu state board', '', '', '2017', 93.00, '', 1, '2023-03-20 11:56:53', 0, NULL, 0, NULL, 1),
(15199, 12087, '3', 'madras university', '', 'b.com', '2020', 69.00, '', 1, '2023-03-20 11:57:32', 0, NULL, 0, NULL, 1),
(15200, 12088, '3', 'university', '', 'b.com', '2022', 81.00, '', 1, '2023-03-20 12:33:31', 0, NULL, 0, NULL, 1),
(15201, 12090, '3', 'MIET ENGINEERING cOLLEGE', '', 'B. E', '2022', 7.50, '', 1, '2023-03-20 01:03:17', 0, NULL, 0, NULL, 1),
(15202, 12090, '2', 'STATE BOARD', '', '', '2018', 70.00, '', 1, '2023-03-20 01:03:59', 0, NULL, 0, NULL, 1),
(15203, 12090, '1', 'State board', '', '', '2016', 75.00, '', 1, '2023-03-20 01:04:40', 0, NULL, 0, NULL, 1),
(15204, 12092, '3', 'MIET ENGINEERING COLLEGE', '', 'B.E', '2022', 74.00, '', 1, '2023-03-20 01:09:27', 0, NULL, 0, NULL, 1),
(15205, 12092, '2', 'State board', '', '', '2018', 69.00, '', 1, '2023-03-20 01:09:58', 0, NULL, 0, NULL, 1),
(15206, 12092, '1', 'State board', '', '', '2016', 70.00, '', 1, '2023-03-20 01:10:31', 0, NULL, 0, NULL, 1),
(15207, 12089, '5', 'NCVRT', '', 'Diploma in nursing assistant ', '2020', 60.00, '', 1, '2023-03-20 01:14:59', 0, NULL, 0, NULL, 1),
(15208, 12093, '3', 'University of Madras ', '', 'B com general ', '2022', 87.00, '', 1, '2023-03-20 01:29:02', 0, NULL, 0, NULL, 1),
(15209, 12095, '3', 'Madras University ', '', 'BBA', '2023', 75.00, '', 1, '2023-03-20 01:51:27', 0, NULL, 0, NULL, 1),
(15210, 12096, '2', 'ST.PETER\'S HIGHER SECONDARY SCHOOL ', '', '', '2019', 51.00, '', 1, '2023-03-20 02:17:11', 0, NULL, 0, NULL, 1),
(15211, 12096, '5', 'AMET UNIVERSITY ', '', 'GP RATING ', '2021', 50.00, '', 1, '2023-03-20 02:18:53', 0, NULL, 0, NULL, 1),
(15212, 12097, '3', 'Madras University ', '', 'Bsc Home science ', '2021', 70.00, '', 1, '2023-03-20 02:43:51', 0, NULL, 0, NULL, 1),
(15213, 12098, '3', 'Madras university', '', 'BBA', '2022', 75.00, '', 1, '2023-03-20 02:45:16', 0, NULL, 0, NULL, 1),
(15214, 12099, '3', 'Don Bosco Arts and Science College ', '', 'B. Com (Corporate Secretaryship)', '2023', 76.00, '', 1, '2023-03-21 10:08:59', 0, NULL, 0, NULL, 1),
(15215, 12099, '2', 'Union Christian Matriculation Higher Secondary School', '', '', '2020', 76.00, '', 1, '2023-03-21 10:09:45', 0, NULL, 0, NULL, 1),
(15216, 12099, '1', 'Union Christian Matriculation Higher Secondary School', '', '', '2017', 78.00, '', 1, '2023-03-21 10:10:25', 0, NULL, 0, NULL, 1),
(15217, 12100, '3', 'Anna university', '', 'B.TECH(IT)', '2021', 76.00, '', 1, '2023-03-21 10:11:36', 0, NULL, 0, NULL, 1),
(15218, 12101, '3', 'Anna University ', '', 'B.tech', '2022', 7.90, '', 1, '2023-03-21 10:33:47', 0, NULL, 0, NULL, 1),
(15219, 12101, '2', 'TamilNadu State board ', '', '', '2018', 69.90, '', 1, '2023-03-21 10:34:37', 1, '2023-03-21 10:36:16', 0, NULL, 1),
(15220, 12101, '1', 'Tamilnadu state board ', '', '', '2016', 86.60, '', 1, '2023-03-21 10:35:43', 0, NULL, 0, NULL, 1),
(15221, 12103, '3', 'Anna university', '', 'BE', '2022', 85.00, '', 1, '2023-03-21 11:11:37', 1, '2023-03-21 11:13:47', 0, NULL, 1),
(15222, 12102, '3', 'Anna university ', '', 'B.tech ', '2022', 7.71, '', 1, '2023-03-21 11:12:35', 0, NULL, 0, NULL, 1),
(15223, 12102, '2', 'State board', '', '', '2018', 60.25, '', 1, '2023-03-21 11:14:25', 0, NULL, 0, NULL, 1),
(15224, 12102, '1', 'State board ', '', '', '2016', 79.80, '', 1, '2023-03-21 11:15:01', 0, NULL, 0, NULL, 1),
(15225, 12104, '3', 'Anna University ', '', 'Civil', '2019', 60.00, '', 1, '2023-03-21 11:19:37', 0, NULL, 0, NULL, 1),
(15226, 12104, '2', 'Tamilnadu stateboard', '', '', '2015', 60.00, '', 1, '2023-03-21 11:20:06', 0, NULL, 0, NULL, 1),
(15227, 12104, '1', 'Tamilnadu stateboard ', '', '', '2013', 71.00, '', 1, '2023-03-21 11:20:33', 0, NULL, 0, NULL, 1),
(15228, 12105, '3', 'Dhanraj Baid Jain College Autonomous ', '', 'Bachelor of computer science ', '2020', 55.00, '', 1, '2023-03-21 11:26:54', 0, NULL, 0, NULL, 1),
(15229, 12107, '3', 'Jeppiaar SRR Engineering college ', '', 'B.E Civil engineering ', '2017', 72.00, '', 1, '2023-03-21 11:40:28', 0, NULL, 0, NULL, 1),
(15230, 12108, '3', 'periyar maniammai university of science and technology', '', 'bca', '2021', 66.00, '', 1, '2023-03-21 11:51:05', 0, NULL, 0, NULL, 1),
(15231, 12106, '4', 'annamalai university', '', 'mba', '2020', 70.00, '', 1, '2023-03-21 12:03:00', 0, NULL, 0, NULL, 1),
(15232, 12109, '3', 'Bharathidasan University ', '', 'BCA', '2020', 56.00, '', 1, '2023-03-21 12:15:24', 0, NULL, 0, NULL, 1),
(15233, 12110, '3', 'Madras University ', '', 'Bsc computer science ', '2021', 70.00, '', 1, '2023-03-21 12:35:41', 0, NULL, 0, NULL, 1),
(15234, 12111, '3', 'Knowledge institute of technology ', '', 'BE.Mechan Engineering ', '2022', 79.00, '', 1, '2023-03-21 12:40:45', 0, NULL, 0, NULL, 1),
(15235, 12112, '3', 'Madras University', '', 'Bsc physics', '2018', 55.00, '', 1, '2023-03-21 12:43:11', 0, NULL, 0, NULL, 1),
(15236, 12113, '3', 'Alagappa University Karaikudi', '', 'BA-English', '2021', 65.00, '', 1, '2023-03-21 02:19:05', 0, NULL, 0, NULL, 1),
(15237, 12114, '3', 'Shri Krishnaswamy college for women', '', 'Bcom computer application ', '2018', 68.00, '', 1, '2023-03-21 04:48:51', 1, '2023-03-21 04:49:32', 0, NULL, 1),
(15238, 12115, '3', 'BS Abdul Rahman crescent institute of science and technology ', '', 'Bachlor of Computer application ', '2022', 65.00, '', 1, '2023-03-21 05:15:19', 0, NULL, 0, NULL, 1),
(15239, 12116, '3', 'Madurai kamaraj University ', '', 'BCA', '2022', 71.00, '', 1, '2023-03-22 10:44:38', 0, NULL, 0, NULL, 1),
(15240, 12117, '3', 'Thiruvallur University ', '', 'B.com', '2021', 78.00, '', 1, '2023-03-22 12:23:57', 0, NULL, 0, NULL, 1),
(15241, 12120, '3', 'Monomaniyam sudharnar University Thirunelaveli', '', 'B. Sc(Maths) ', '2022', 80.00, '', 1, '2023-03-22 01:55:16', 0, NULL, 0, NULL, 1),
(15242, 12121, '4', 'manonmaniam sundaranar University, Tirunelveli. ', '', 'Msc Environmental Science ', '2022', 85.00, '', 1, '2023-03-22 01:58:13', 0, NULL, 0, NULL, 1),
(15243, 12124, '3', 'Manonmaniyam sundaranar university ', '', 'BCA', '2022', 80.20, '', 1, '2023-03-22 02:01:14', 0, NULL, 0, NULL, 1),
(15244, 12122, '4', 'Sri Venkateshwara university ', '', 'B.Com(computer) ', '2021', 69.00, '', 1, '2023-03-22 02:33:54', 0, NULL, 0, NULL, 1),
(15245, 12123, '3', 'Yv university ', '', 'Bsc', '2018', 68.00, '', 1, '2023-03-22 02:36:11', 0, NULL, 0, NULL, 1),
(15246, 12119, '4', 'manonmaniam sundaranar university', '', 'msc', '2022', 81.00, '', 1, '2023-03-22 02:38:50', 0, NULL, 0, NULL, 1),
(15247, 12126, '5', 'IIT Madras ', '', 'DEEE', '2022', 86.00, '', 1, '2023-03-22 02:52:16', 0, NULL, 0, NULL, 1),
(15248, 12125, '5', 'cpt college ', '', 'dme sw ', '2023', 80.00, '', 1, '2023-03-22 02:55:34', 0, NULL, 0, NULL, 1),
(15249, 12127, '3', 'University of Madras ', '', 'English literature ', '2017', 57.00, '', 1, '2023-03-22 04:51:39', 1, '2023-03-22 04:52:33', 0, NULL, 1),
(15250, 12127, '4', 'University of Madras ', '', 'English literature ', '2019', 60.00, '', 1, '2023-03-22 04:52:09', 0, NULL, 0, NULL, 1),
(15251, 12129, '3', 'University ', '', 'B.com cs', '2021', 60.00, '', 1, '2023-03-22 05:39:04', 0, NULL, 0, NULL, 1),
(15252, 12130, '3', 'Kalasalingam Institiute Of Technology ', '', 'B.E ', '2022', 78.00, '', 1, '2023-03-22 09:53:46', 1, '2023-03-22 09:58:10', 0, NULL, 1),
(15253, 12130, '2', 'T.N.P.M.Marimuthu nadar.Hsc', '', '', '2018', 57.50, '', 1, '2023-03-22 09:59:01', 0, NULL, 0, NULL, 1),
(15254, 12130, '1', 'T.N.P.M.Marimuthu nadar .hsc', '', '', '2016', 76.80, '', 1, '2023-03-22 09:59:47', 0, NULL, 0, NULL, 1),
(15255, 12132, '3', 'sourashra college', '', 'bca', '2019', 75.00, '', 1, '2023-03-23 10:45:31', 0, NULL, 0, NULL, 1),
(15256, 12133, '3', 'Sourashtra college ', '', 'BCA.,', '2019', 65.00, '', 1, '2023-03-23 10:45:48', 0, NULL, 0, NULL, 1),
(15257, 12132, '2', 'madurai college higher secondary school', '', '', '2016', 52.00, '', 1, '2023-03-23 10:46:08', 0, NULL, 0, NULL, 1),
(15258, 12133, '2', 'Pasumalai Higher security school ', '', '', '2016', 50.50, '', 1, '2023-03-23 10:46:37', 0, NULL, 0, NULL, 1),
(15259, 12133, '1', 'Pasumalai Higher secondary school ', '', '', '2014', 80.00, '', 1, '2023-03-23 10:46:58', 0, NULL, 0, NULL, 1),
(15260, 12132, '1', 'madurai college higher secondary school', '', '', '2014', 76.00, '', 1, '2023-03-23 10:47:40', 0, NULL, 0, NULL, 1),
(15261, 12131, '3', 'Bharathidhasan', '', 'BCA', '2022', 65.00, '', 1, '2023-03-23 10:51:40', 0, NULL, 0, NULL, 1),
(15262, 12136, '3', 'Bharathidasan University ', '', 'BCA', '2021', 73.00, '', 1, '2023-03-23 11:29:35', 0, NULL, 0, NULL, 1),
(15263, 11971, '5', 'NPR group of institutions ', '', 'DME', '2017', 61.00, '', 1, '2023-03-23 12:11:54', 0, NULL, 0, NULL, 1),
(15264, 12137, '3', 'SRM University Chennai ', '', 'Bachelor of Commerce (B.Com)', '2022', 70.00, '', 1, '2023-03-23 12:26:02', 0, NULL, 0, NULL, 1),
(15265, 12137, '1', 'VAILANKANNI MATRICULATION SCHOOL ', '', '', '2018', 78.00, '', 1, '2023-03-23 12:27:08', 1, '2023-03-23 12:28:07', 0, NULL, 0),
(15266, 12137, '2', 'VAILANKANNI MATRICULATION SCHOOL ', '', '', '2019', 71.00, '', 1, '2023-03-23 12:28:36', 0, NULL, 0, NULL, 1),
(15267, 12137, '1', 'VAILANKANNI MATRICULATION SCHOOL ', '', '', '2017', 71.00, '', 1, '2023-03-23 12:29:01', 0, NULL, 0, NULL, 1),
(15268, 12138, '1', 'State board ', '', '', '2017', 77.60, '', 1, '2023-03-23 12:29:36', 0, NULL, 0, NULL, 1),
(15269, 12138, '2', 'State board ', '', '', '2019', 64.60, '', 1, '2023-03-23 12:30:20', 0, NULL, 0, NULL, 1),
(15270, 12138, '3', 'Madras University ', '', 'B.com(general)', '2022', 78.40, '', 1, '2023-03-23 12:31:09', 0, NULL, 0, NULL, 1),
(15271, 0, '3', 'Paavai Engineering College ', '', 'B.TECH', '2022', 6.90, '', 1, '2023-03-23 12:57:36', 1, '2023-03-25 11:33:24', 0, NULL, 0),
(15272, 0, '2', 'State Board', '', 'Maths/Biology', '2018', 62.00, '', 1, '2023-03-23 12:59:34', 1, '2023-03-24 04:36:25', 0, NULL, 0),
(15273, 0, '1', 'State board', '', '', '2016', 77.00, '', 1, '2023-03-23 01:00:23', 1, '2023-03-25 11:33:31', 0, NULL, 0),
(15274, 12140, '3', 'Rajha sarfoj govt college, Thanjavur (autonomous)', '', 'Bsc. Computer science ', '2022', 83.00, '', 1, '2023-03-23 01:48:13', 0, NULL, 0, NULL, 1),
(15275, 12134, '3', 'ethiraj university', '', 'bsc', '2019', 65.00, '', 1, '2023-03-23 05:22:51', 0, NULL, 0, NULL, 1),
(15276, 12141, '4', 'Kumaraguru College of Technology ', '', 'Master of engineering ', '2020', 68.40, '', 1, '2023-03-24 10:59:15', 0, NULL, 0, NULL, 1),
(15277, 12143, '3', 'Madurai kamaraja University ', '', 'Information technology ', '2022', 73.00, '', 1, '2023-03-24 11:30:33', 0, NULL, 0, NULL, 1),
(15278, 12143, '2', 'Tamilnadu secondry education ', '', '', '2019', 60.00, '', 1, '2023-03-24 11:31:08', 0, NULL, 0, NULL, 1),
(15279, 12143, '1', 'SSLc', '', '', '2017', 73.00, '', 1, '2023-03-24 11:31:42', 0, NULL, 0, NULL, 1),
(15280, 12146, '3', 'Anna University', '', 'B.E-CSE', '2021', 60.00, '', 1, '2023-03-24 11:54:33', 0, NULL, 0, NULL, 1),
(15281, 12146, '2', 'State bord', '', '', '2017', 49.50, '', 1, '2023-03-24 11:55:08', 0, NULL, 0, NULL, 1),
(15282, 12146, '1', 'State board', '', '', '2015', 63.90, '', 1, '2023-03-24 11:55:35', 0, NULL, 0, NULL, 1),
(15283, 12144, '3', 'Manonmaniam sundaranar university', '', 'Bsc Physics', '2019', 59.00, '', 1, '2023-03-24 12:03:06', 0, NULL, 0, NULL, 1),
(15284, 12142, '3', 'Mahendra Institute of engineering and technology', '', 'Mechanical engineering', '2020', 67.00, '', 1, '2023-03-24 12:03:54', 0, NULL, 0, NULL, 1),
(15285, 12142, '2', 'Tamilnadu Board', '', '', '2016', 67.00, '', 1, '2023-03-24 12:04:43', 0, NULL, 0, NULL, 1),
(15286, 12142, '1', 'State Board', '', '', '2014', 70.00, '', 1, '2023-03-24 12:05:19', 0, NULL, 0, NULL, 1),
(15287, 12145, '5', 'V.RAMAKRISHNA POLYTECHNIC COLLEGE ', '', 'Computer Engineering', '2022', 98.00, '', 1, '2023-03-24 12:45:15', 0, NULL, 0, NULL, 1),
(15288, 12147, '1', 'State board ', '', '', '2015', 87.00, '', 1, '2023-03-24 03:02:04', 0, NULL, 0, NULL, 1),
(15289, 12147, '2', 'State board ', '', '', '2017', 79.00, '', 1, '2023-03-24 03:02:41', 0, NULL, 0, NULL, 1),
(15290, 12147, '3', 'Madras University ', '', 'BCA bachelor of computer applications ', '2020', 72.00, '', 1, '2023-03-24 03:03:23', 1, '2023-03-24 03:03:58', 0, NULL, 1),
(15291, 12147, '4', 'Madras University ', '', 'MBA human resources management ', '2023', 70.00, '', 1, '2023-03-24 03:04:44', 1, '2023-03-24 03:05:00', 0, NULL, 0),
(15292, 12147, '4', 'Madras University ', '', 'MBA human resources management ', '2023', 70.00, '', 1, '2023-03-24 03:05:51', 0, NULL, 0, NULL, 1),
(15293, 12148, '3', 'Madras University ', '', 'Bsc cs', '2017', 62.00, '', 1, '2023-03-24 03:24:58', 0, NULL, 0, NULL, 1),
(15294, 12149, '1', 'State board', '', '', '2016', 82.00, '', 1, '2023-03-24 03:40:46', 0, NULL, 0, NULL, 1),
(15295, 12149, '2', 'State board', '', '', '2018', 85.00, '', 1, '2023-03-24 03:41:20', 0, NULL, 0, NULL, 1),
(15296, 12149, '3', 'Autonomous ', '', 'Bachelor of commerce ', '2021', 76.00, '', 1, '2023-03-24 03:41:57', 0, NULL, 0, NULL, 1),
(15297, 12149, '4', 'Autonomous ', '', 'PGDM', '2023', 83.00, '', 1, '2023-03-24 03:42:52', 0, NULL, 0, NULL, 1),
(15298, 12151, '3', 'University of Madras ', '', 'B.com general', '2022', 65.00, '', 1, '2023-03-24 04:41:24', 0, NULL, 0, NULL, 1),
(15299, 12151, '2', 'Shikshaa Matric HR sec school ', '', '', '2016', 85.00, '', 1, '2023-03-24 04:42:57', 0, NULL, 0, NULL, 1),
(15300, 12151, '1', 'Shikshaa Matric HR sec school ', '', '', '2018', 78.00, '', 1, '2023-03-24 04:44:57', 0, NULL, 0, NULL, 1),
(15301, 12152, '3', 'anna university', '', 'be/ece', '2020', 79.00, '', 1, '2023-03-24 05:08:48', 0, NULL, 0, NULL, 1),
(15302, 12153, '3', 'madress university', '', 'bsc.cs', '2021', 72.00, '', 1, '2023-03-24 08:53:37', 0, NULL, 0, NULL, 1),
(15303, 12155, '1', 'state board tamilnadu ', '', '', '2015', 64.00, '', 1, '2023-03-25 11:36:52', 0, NULL, 0, NULL, 1),
(15304, 12155, '3', 'anna university', '', 'b.e', '2022', 81.20, '', 1, '2023-03-25 11:38:16', 0, NULL, 0, NULL, 1),
(15305, 12154, '3', 'Anna university', '', 'BE ', '2007', 70.00, '', 1, '2023-03-25 11:39:35', 0, NULL, 0, NULL, 1),
(15306, 12156, '3', 'Jamal Mohamed College ', '', 'BCA', '2022', 73.00, '', 1, '2023-03-25 12:01:43', 0, NULL, 0, NULL, 1),
(15307, 12157, '4', 'Pondicherry University ', '', 'MBA', '2021', 70.00, '', 1, '2023-03-25 12:38:37', 85, '2023-03-25 03:36:23', 0, NULL, 0),
(15308, 12157, '4', 'Pondicherry University ', '', 'MBA', '2021', 70.00, '', 1, '2023-03-25 12:38:38', 85, '2023-03-25 03:36:28', 0, NULL, 0),
(15309, 12158, '3', 'Madras university', '', 'Bcom corporate secretaryship', '2022', 67.40, '', 1, '2023-03-25 01:33:21', 0, NULL, 0, NULL, 1),
(15310, 12158, '2', 'Cbse board of education', '', '', '2019', 75.54, '', 1, '2023-03-25 01:34:01', 0, NULL, 0, NULL, 1),
(15311, 12158, '1', 'Cbse board of education', '', '', '2017', 83.60, '', 1, '2023-03-25 01:34:24', 0, NULL, 0, NULL, 1),
(15312, 12159, '4', 'Maharishi Dayanand University, Haryana ', '', 'MBA', '2022', 70.00, '', 1, '2023-03-25 02:57:20', 0, NULL, 0, NULL, 1),
(15313, 12159, '3', 'MADRAS UNIVERSITY', '', 'B. Com General', '2019', 70.00, '', 1, '2023-03-25 02:57:51', 0, NULL, 0, NULL, 1),
(15314, 12159, '2', 'State Board', '', '', '2015', 82.00, '', 1, '2023-03-25 02:58:12', 1, '2023-03-25 02:58:26', 0, NULL, 1),
(15315, 12159, '1', 'STATE BOARD', '', '', '2013', 83.00, '', 1, '2023-03-25 02:58:42', 0, NULL, 0, NULL, 1),
(15316, 12157, '4', 'Pondicherry University ', '', 'MBA', '2021', 72.00, '', 1, '2023-03-25 03:31:21', 0, NULL, 0, NULL, 1),
(15317, 12160, '3', 'state board', '', 'b.com', '2018', 70.00, '', 1, '2023-03-27 08:45:02', 0, NULL, 0, NULL, 1),
(15318, 12162, '3', 'Anna university ', '', 'B.E', '2020', 82.00, '', 1, '2023-03-27 09:59:24', 0, NULL, 0, NULL, 1),
(15319, 12161, '3', 'Anna university ', '', 'BE/ECE', '2021', 70.00, '', 1, '2023-03-27 10:00:59', 0, NULL, 0, NULL, 1),
(15320, 12161, '5', 'DOTE', '', 'ECE', '2017', 60.00, '', 1, '2023-03-27 10:01:23', 0, NULL, 0, NULL, 1),
(15321, 12161, '1', 'State board', '', '', '2014', 86.00, '', 1, '2023-03-27 10:01:41', 0, NULL, 0, NULL, 1),
(15322, 12163, '3', 'Anna University ', '', 'Bachelor of engineering ', '2020', 73.20, '', 1, '2023-03-27 10:13:47', 0, NULL, 0, NULL, 1),
(15323, 12164, '3', 'Cauvery College for Women ', '', 'BCA ', '2022', 84.30, '', 1, '2023-03-27 10:20:19', 0, NULL, 0, NULL, 1),
(15324, 12165, '3', 'Anna university', '', 'B.E', '2020', 70.00, '', 1, '2023-03-27 10:40:50', 0, NULL, 0, NULL, 1),
(15325, 12166, '3', 'Bhardidhasan University ', '', 'B.Sc. computer science ', '2022', 83.00, '', 1, '2023-03-27 10:53:49', 0, NULL, 0, NULL, 1),
(15326, 12167, '3', 'Anna University', '', 'BE', '2021', 70.80, '', 1, '2023-03-27 10:56:00', 0, NULL, 0, NULL, 1),
(15327, 12168, '3', 'Bharathithasan University ', '', 'B.com', '2019', 60.00, '', 1, '2023-03-27 11:04:30', 0, NULL, 0, NULL, 1),
(15328, 12169, '3', 'Anna University ', '', 'Be', '2015', 6.30, '', 1, '2023-03-27 12:04:22', 0, NULL, 0, NULL, 1),
(15329, 12172, '3', 'St.joseph\'s institute of technology ', '', 'BE', '2022', 7.89, '', 1, '2023-03-27 12:11:36', 0, NULL, 0, NULL, 1),
(15330, 12170, '3', 'Renganayagi varatharaj college of engineering ', '', 'B E', '2021', 76.00, '', 1, '2023-03-27 12:12:17', 0, NULL, 0, NULL, 1),
(15331, 12171, '3', 'Psn engineering college (anna university )', '', 'BE', '2020', 60.30, '', 1, '2023-03-27 12:12:38', 0, NULL, 0, NULL, 1),
(15332, 12173, '3', 'Kongunadu college of engineering and t', '', 'BE', '2021', 7.40, '', 1, '2023-03-27 01:28:51', 0, NULL, 0, NULL, 1),
(15333, 12174, '4', 'Thiruvalluvar university ', '', 'M. Sc computer science ', '2020', 79.08, '', 1, '2023-03-27 01:30:56', 0, NULL, 0, NULL, 1),
(15334, 12174, '3', 'Thiruvalluvar university', '', 'B. Sc computer science ', '2018', 71.00, '', 1, '2023-03-27 01:32:08', 0, NULL, 0, NULL, 1),
(15335, 12176, '3', 'Anna University ', '', 'B.E', '2023', 7.90, '', 1, '2023-03-27 01:38:38', 0, NULL, 0, NULL, 1),
(15336, 12175, '3', 'Wanna university ', '', 'Bachelor of Engineering ', '2023', 75.00, '', 1, '2023-03-27 01:38:43', 1, '2023-03-27 01:39:49', 0, NULL, 0),
(15337, 12175, '3', 'Anna  University ', '', 'Bachelor of Engineering ', '2023', 75.00, '', 1, '2023-03-27 01:39:51', 0, NULL, 0, NULL, 1),
(15338, 12177, '1', 'GGSM HR SEC SCHOOL ', '', '', '2017', 86.00, '', 1, '2023-03-27 02:39:54', 0, NULL, 0, NULL, 1),
(15339, 12177, '2', 'GGSM HR SEC SCHOOL ', '', '', '2019', 72.00, '', 1, '2023-03-27 02:40:10', 0, NULL, 0, NULL, 1),
(15340, 12177, '3', 'Avc college of engineering ', '', 'Bachelor in Computer Science and Engineering ', '2023', 83.00, '', 1, '2023-03-27 02:40:40', 0, NULL, 0, NULL, 1),
(15341, 12178, '3', 'Anna University ', '', 'Computer science engineering ', '2017', 6.10, '', 1, '2023-03-28 10:09:30', 0, NULL, 0, NULL, 1),
(15342, 12180, '3', 'University of madras', '', 'Bsc', '2020', 70.00, '', 1, '2023-03-28 10:19:33', 0, NULL, 0, NULL, 1),
(15343, 12181, '3', 'University college of engineering bIT campus trichy', '', 'B. E', '2022', 85.00, '', 1, '2023-03-28 10:26:17', 0, NULL, 0, NULL, 1),
(15344, 12182, '4', 'Anna University ', '', 'MCA', '2021', 80.10, '', 1, '2023-03-28 10:33:15', 0, NULL, 0, NULL, 1),
(15345, 12183, '3', 'Anna University ', '', 'BE', '2021', 77.00, '', 1, '2023-03-28 10:42:58', 0, NULL, 0, NULL, 1),
(15346, 12183, '2', 'State', '', '', '2017', 67.00, '', 1, '2023-03-28 10:44:19', 1, '2023-03-28 10:44:39', 0, NULL, 0),
(15347, 12184, '3', 'Anna university ', '', 'B.E ', '2023', 79.00, '', 1, '2023-03-28 10:44:29', 0, NULL, 0, NULL, 1),
(15348, 12184, '2', 'State board', '', '', '2018', 69.00, '', 1, '2023-03-28 10:44:58', 0, NULL, 0, NULL, 1),
(15349, 12184, '1', 'State board ', '', '', '2016', 84.00, '', 1, '2023-03-28 10:45:22', 0, NULL, 0, NULL, 1),
(15350, 12186, '3', 'Madras university', '', 'Bsc', '2018', 74.00, '', 1, '2023-03-28 10:50:16', 0, NULL, 0, NULL, 1),
(15351, 12185, '3', 'Bharathidasan University', '', 'Bsc', '2021', 91.00, '', 1, '2023-03-28 10:51:26', 0, NULL, 0, NULL, 1),
(15352, 12190, '3', 'Alpha arts and science college ', '', 'Bca', '2022', 74.30, '', 1, '2023-03-28 11:34:39', 0, NULL, 0, NULL, 1),
(15353, 12188, '1', 'State board', '', '', '2015', 82.00, '', 1, '2023-03-28 11:34:47', 0, NULL, 0, NULL, 1),
(15354, 12190, '2', 'Annai Theresa matriculation.hr.sec.school ', '', '', '2019', 50.00, '', 1, '2023-03-28 11:35:18', 0, NULL, 0, NULL, 1),
(15355, 12188, '2', 'State board', '', '', '2017', 59.00, '', 1, '2023-03-28 11:35:35', 0, NULL, 0, NULL, 1),
(15356, 12190, '1', 'Annai Theresa matriculation.hr.sec.school ', '', '', '2017', 79.20, '', 1, '2023-03-28 11:35:47', 0, NULL, 0, NULL, 1),
(15357, 12187, '1', 'State board', '', 'Bachelor of commerce ', '2015', 70.00, '', 1, '2023-03-28 11:35:50', 1, '2023-03-28 11:38:03', 0, NULL, 1),
(15358, 12187, '2', 'State board', '', '', '2017', 53.00, '', 1, '2023-03-28 11:36:25', 0, NULL, 0, NULL, 1),
(15359, 12187, '3', 'Periyar University ', '', 'Bachelor of commerce ', '2020', 62.00, '', 1, '2023-03-28 11:37:09', 0, NULL, 0, NULL, 1),
(15360, 12188, '3', 'Anna university', '', 'BE-ECE', '2021', 71.60, '', 1, '2023-03-28 11:37:18', 0, NULL, 0, NULL, 1),
(15361, 12189, '3', 'Krishna University ', '', 'Bsc', '2021', 66.00, '', 1, '2023-03-28 11:39:00', 0, NULL, 0, NULL, 1),
(15362, 12191, '3', 'Bharathiar University ', '', 'BCA', '2022', 78.00, '', 1, '2023-03-28 11:49:50', 0, NULL, 0, NULL, 1),
(15363, 12191, '2', 'NSM VPS Hr sec school Devakottai ', '', '', '2019', 50.00, '', 1, '2023-03-28 11:50:43', 0, NULL, 0, NULL, 1),
(15364, 12191, '1', 'NSM VPS Hr Sec school Devakottai ', '', '', '2017', 60.00, '', 1, '2023-03-28 11:51:17', 0, NULL, 0, NULL, 1),
(15365, 12192, '3', 'Panimalar institute of technology ', '', 'B.E', '2022', 78.00, '', 1, '2023-03-28 11:57:19', 0, NULL, 0, NULL, 1),
(15366, 12192, '2', 'State board of tamilnadu ', '', '', '2018', 64.00, '', 1, '2023-03-28 11:58:03', 0, NULL, 0, NULL, 1),
(15367, 12194, '2', 'Anna Gen', '', '', '2015', 63.00, '', 1, '2023-03-28 12:45:35', 0, NULL, 0, NULL, 1),
(15368, 12193, '2', 'Anna Gem', '', '', '2015', 63.00, '', 1, '2023-03-28 12:47:46', 0, NULL, 0, NULL, 1),
(15369, 12195, '3', 'Madras university ', '', 'Bsc physics', '2020', 71.00, '', 1, '2023-03-29 10:17:34', 0, NULL, 0, NULL, 1),
(15370, 12196, '3', 'Madras university', '', 'B. Sc., Computer Science', '2017', 80.00, '', 1, '2023-03-29 11:05:19', 0, NULL, 0, NULL, 1),
(15371, 12197, '1', 'ITI', '', '', '2020', 67.00, '', 1, '2023-03-29 12:16:33', 0, NULL, 0, NULL, 1),
(15372, 12199, '5', 'Aite', '', 'Mechanical engineering ', '2020', 74.00, '', 1, '2023-03-29 12:17:38', 0, NULL, 0, NULL, 1),
(15373, 12200, '5', 'Virudhunagar S.Vellaichamy Nadar Polytechnic College ', '', 'Diploma Civil Engineering ', '2015', 67.00, '', 1, '2023-03-29 12:15:51', 0, NULL, 0, NULL, 1),
(15374, 12200, '1', 'Sri Sowdambigai. Higher Secondary School Virudhunagar ', '', '', '2010', 80.00, '', 1, '2023-03-29 12:16:58', 0, NULL, 0, NULL, 1),
(15375, 12199, '1', 'Ilayangudi higher secondary school ', '', 'Bca', '2015', 84.00, '', 1, '2023-03-29 12:17:21', 0, NULL, 0, NULL, 1),
(15376, 12199, '2', 'Ilayangudi higher secondary school ', '', '', '2017', 53.00, '', 1, '2023-03-29 12:18:23', 0, NULL, 0, NULL, 1),
(15377, 12198, '3', 'Alagappa University', '', 'B.com', '2022', 7.50, '', 1, '2023-03-29 12:21:12', 0, NULL, 0, NULL, 1),
(15378, 12204, '4', 'Dr SNS college of arts and science ', '', 'MCA', '2020', 75.00, '', 1, '2023-03-29 12:48:18', 0, NULL, 0, NULL, 1),
(15379, 12202, '4', 'Central University ', '', 'MSC Maths', '2018', 70.00, '', 1, '2023-03-29 12:55:41', 0, NULL, 0, NULL, 1),
(15380, 12201, '5', 'Narasimma pallavan polytechnic college', '', '', '2019', 79.00, '', 1, '2023-03-29 12:55:49', 0, NULL, 0, NULL, 1),
(15381, 12202, '4', 'Tamilnadu Education University ', '', 'B.ed', '2016', 75.00, '', 1, '2023-03-29 12:56:19', 0, NULL, 0, NULL, 1),
(15382, 12205, '3', 'bharathidasan university ', '', 'BSC IT ', '2022', 68.00, '', 1, '2023-03-29 02:55:10', 0, NULL, 0, NULL, 1),
(15383, 12206, '4', 'University of madras', '', 'Msc it', '2014', 74.11, '', 1, '2023-03-29 03:15:26', 0, NULL, 0, NULL, 1),
(15384, 12206, '3', 'University of madras', '', '', '2012', 71.00, '', 1, '2023-03-29 03:16:33', 0, NULL, 0, NULL, 1),
(15385, 12206, '2', 'State board', '', '', '2009', 61.00, '', 1, '2023-03-29 03:17:05', 0, NULL, 0, NULL, 1),
(15386, 12206, '1', 'State board', '', '', '2007', 74.34, '', 1, '2023-03-29 03:17:42', 0, NULL, 0, NULL, 1),
(15387, 12207, '3', 'Mookambigai college of engineering ', '', 'B.E', '2020', 60.00, '', 1, '2023-03-29 05:48:13', 0, NULL, 0, NULL, 1),
(15388, 9060, '3', 'Madras University ', '', 'BBA', '2021', 87.00, '', 1, '2023-03-29 08:03:24', 1, '2023-03-29 08:03:41', 0, NULL, 1),
(15389, 12209, '1', 'State board ', '', '', '2015', 92.40, '', 1, '2023-03-30 10:09:17', 0, NULL, 0, NULL, 1),
(15390, 12209, '2', 'State board ', '', '', '2017', 78.89, '', 1, '2023-03-30 10:09:41', 0, NULL, 0, NULL, 1),
(15391, 12209, '3', 'Anniversary ', '', 'B.E', '2021', 7.89, '', 1, '2023-03-30 10:10:16', 0, NULL, 0, NULL, 1),
(15392, 12211, '3', 'Madras University ', '', 'B.com', '2016', 70.00, '', 1, '2023-03-30 10:40:30', 0, NULL, 0, NULL, 1),
(15393, 12212, '3', 'Thiruvallur University ', '', 'B.sc(computer science)', '2022', 81.00, '', 1, '2023-03-30 10:43:14', 0, NULL, 0, NULL, 1),
(15394, 12212, '2', 'State boad', '', '', '2019', 45.00, '', 1, '2023-03-30 10:44:22', 0, NULL, 0, NULL, 1),
(15395, 12212, '1', 'State boad ', '', '', '2016', 61.00, '', 1, '2023-03-30 10:45:51', 0, NULL, 0, NULL, 1),
(15396, 12210, '3', 'Anna University ', '', 'B.E Mechatronics engineering ', '2020', 69.80, '', 1, '2023-03-30 10:48:59', 0, NULL, 0, NULL, 1),
(15397, 12210, '1', 'TN State board ', '', '', '2014', 91.00, '', 1, '2023-03-30 10:49:27', 0, NULL, 0, NULL, 1),
(15398, 12210, '2', 'State board ', '', '', '2016', 85.83, '', 1, '2023-03-30 10:50:07', 0, NULL, 0, NULL, 1),
(15399, 12215, '3', 'Anna university', '', 'BE', '2020', 69.00, '', 1, '2023-03-30 10:57:25', 0, NULL, 0, NULL, 1),
(15400, 12214, '3', 'Anna University ', '', 'BE', '2020', 68.30, '', 1, '2023-03-30 10:58:06', 0, NULL, 0, NULL, 1),
(15401, 12213, '4', 'Medrash University ', '', 'MBA (hrm)', '2023', 85.00, '', 1, '2023-03-30 11:09:43', 0, NULL, 0, NULL, 1),
(15402, 12217, '3', 'Kamaraj University madurai ', '', 'Bsc information technology ', '2020', 65.00, '', 1, '2023-03-30 11:23:05', 0, NULL, 0, NULL, 1),
(15403, 12216, '3', 'Kalasalingam University ', '', 'Bachelor of computer science ', '2021', 7.32, '', 1, '2023-03-30 11:24:12', 0, NULL, 0, NULL, 1),
(15404, 12218, '3', 'Anna university ', '', 'B. E', '2017', 65.00, '', 1, '2023-03-30 11:29:25', 0, NULL, 0, NULL, 1),
(15405, 12220, '3', 'Thiruvalluvar university', '', 'BCA', '2022', 89.00, '', 1, '2023-03-30 12:03:42', 0, NULL, 0, NULL, 1),
(15406, 12208, '3', 'Madras university', '', 'B. Com(general) ', '2022', 74.00, '', 1, '2023-03-30 12:37:22', 0, NULL, 0, NULL, 1),
(15407, 12219, '3', 'Alagappa', '', 'Bcom', '2019', 67.00, '', 1, '2023-03-30 12:44:00', 0, NULL, 0, NULL, 1),
(15408, 12221, '3', 'GLOBAL INSTITUTE OF ENGINEERING AND TECHNOLOGY ', '', 'B.E', '2020', 75.00, '', 1, '2023-03-30 01:02:54', 0, NULL, 0, NULL, 1),
(15409, 12222, '3', 'Anna University ', '', '', '2022', 83.00, '', 1, '2023-03-30 01:40:04', 0, NULL, 0, NULL, 1),
(15410, 12222, '2', 'Tamilnadu ', '', '', '2018', 89.00, '', 1, '2023-03-30 01:40:43', 0, NULL, 0, NULL, 1),
(15411, 12222, '1', 'Tamilnadu ', '', '', '2016', 95.00, '', 1, '2023-03-30 01:41:03', 0, NULL, 0, NULL, 1),
(15412, 12224, '3', 'Anna University ', '', 'BE Ece', '2013', 68.00, '', 1, '2023-03-30 06:21:05', 0, NULL, 0, NULL, 1),
(15413, 12228, '4', 'Madras University ', '', 'MSWHR', '2022', 78.00, '', 1, '2023-03-31 09:19:48', 0, NULL, 0, NULL, 1),
(15414, 12228, '3', 'Bharathidasan ', '', 'B.Com.', '2020', 76.00, '', 1, '2023-03-31 09:22:41', 0, NULL, 0, NULL, 1),
(15415, 12228, '2', 'State', '', '', '2017', 92.00, '', 1, '2023-03-31 09:22:57', 0, NULL, 0, NULL, 1),
(15416, 12228, '1', 'State', '', '', '2015', 91.00, '', 1, '2023-03-31 09:23:12', 0, NULL, 0, NULL, 1),
(15417, 12229, '3', 'Madras of university', '', 'B. Sc', '2019', 55.00, '', 1, '2023-03-31 10:28:31', 0, NULL, 0, NULL, 1),
(15418, 12230, '3', 'Anna University', '', 'B.E-CSE', '2022', 72.80, '', 1, '2023-03-31 10:39:57', 0, NULL, 0, NULL, 1),
(15419, 12231, '3', 'Madras university', '', 'B. Com', '2021', 64.00, '', 1, '2023-03-31 11:02:07', 0, NULL, 0, NULL, 1),
(15420, 12233, '3', 'Anna University ', '', 'BE-Mechanical', '2020', 70.00, '', 1, '2023-03-31 11:12:32', 0, NULL, 0, NULL, 1),
(15421, 12234, '3', 'Karunya University ', '', 'B.Tech EEE', '2021', 70.00, '', 1, '2023-03-31 11:13:41', 0, NULL, 0, NULL, 1),
(15422, 12234, '1', 'Amala metric higher secondary school ', '', '', '2015', 84.00, '', 1, '2023-03-31 11:14:44', 0, NULL, 0, NULL, 1),
(15423, 12234, '2', 'Amala metric higher secondary school ', '', '', '2017', 76.00, '', 1, '2023-03-31 11:15:15', 0, NULL, 0, NULL, 1),
(15424, 12232, '3', 'Manonmaniam sundaranar university,Tirunelveli ', '', 'Bsc computer science ', '2019', 74.00, '', 1, '2023-03-31 11:17:30', 0, NULL, 0, NULL, 1),
(15425, 12235, '5', 'Anna University ', '', 'Diploma ', '2019', 73.00, '', 1, '2023-03-31 12:05:24', 0, NULL, 0, NULL, 1),
(15426, 12236, '1', 'State Board', '', '', '2014', 81.00, '', 1, '2023-03-31 01:01:56', 0, NULL, 0, NULL, 1),
(15427, 12236, '2', 'State Board', '', '', '2016', 66.00, '', 1, '2023-03-31 01:02:30', 0, NULL, 0, NULL, 1),
(15428, 12236, '3', 'S.I.V.E.T. College', '', 'BCA', '2019', 65.00, '', 1, '2023-03-31 01:05:40', 0, NULL, 0, NULL, 1),
(15429, 12236, '4', 'Madras University', '', 'MCA', '2022', 85.00, '', 1, '2023-03-31 01:07:22', 0, NULL, 0, NULL, 1),
(15430, 12238, '3', 'Chennai national arts and science college ', '', 'B.C.A', '2022', 56.00, '', 1, '2023-03-31 03:43:38', 0, NULL, 0, NULL, 1),
(15431, 12239, '3', 'Madras University ', '', 'Bcom general ', '2022', 78.00, '', 1, '2023-03-31 07:30:26', 0, NULL, 0, NULL, 1),
(15432, 12239, '2', 'State board ', '', '', '2019', 77.00, '', 1, '2023-03-31 07:32:31', 0, NULL, 0, NULL, 1),
(15433, 12239, '1', 'State board ', '', '', '2017', 71.00, '', 1, '2023-03-31 07:36:09', 0, NULL, 0, NULL, 1),
(15434, 12240, '4', 'anna university', '', 'mba hr and finance', '2023', 70.00, '', 1, '2023-04-01 09:36:56', 0, NULL, 0, NULL, 1),
(15435, 12240, '3', 'anna university', '', ' b tech it', '2020', 68.00, '', 1, '2023-04-01 09:37:43', 0, NULL, 0, NULL, 1),
(15436, 12243, '3', 'Anna University ', '', 'B.E', '2022', 7.02, '', 1, '2023-04-01 10:56:20', 0, NULL, 0, NULL, 1),
(15437, 12244, '3', 'L.n.g collage ', '', 'B com', '2019', 68.00, '', 1, '2023-04-01 11:47:52', 0, NULL, 0, NULL, 1),
(15438, 12245, '4', 'University of madras ', '', 'M.com', '2021', 75.00, '', 1, '2023-04-01 02:22:00', 0, NULL, 0, NULL, 1),
(15439, 12246, '2', 'State board', '', '', '2017', 86.00, '', 1, '2023-04-01 04:49:13', 0, NULL, 0, NULL, 1),
(15440, 12247, '3', 'St Anne\'s arts and science college ', '', 'B.com', '2021', 82.00, '', 1, '2023-04-02 07:00:29', 0, NULL, 0, NULL, 1),
(15441, 12249, '3', 'Govt art\'s and science college ', '', 'B.COM', '2021', 62.00, '', 1, '2023-04-03 10:36:25', 0, NULL, 0, NULL, 1),
(15442, 12250, '3', 'Anna University ', '', 'B.E-CSE', '2018', 60.00, '', 1, '2023-04-03 10:39:28', 0, NULL, 0, NULL, 1),
(15443, 12227, '3', 'Madras University ', '', 'BCA', '2020', 75.00, '', 1, '2023-04-03 10:41:39', 0, NULL, 0, NULL, 1),
(15444, 12227, '2', 'State board ', '', '', '2017', 80.00, '', 1, '2023-04-03 10:43:04', 1, '2023-04-03 10:44:25', 0, NULL, 1),
(15445, 12227, '1', 'State board ', '', '', '2015', 89.00, '', 1, '2023-04-03 10:44:40', 0, NULL, 0, NULL, 1),
(15446, 12251, '3', 'Anna university College nagapattinam', '', 'BE', '2017', 67.80, '', 1, '2023-04-03 11:03:56', 0, NULL, 0, NULL, 1),
(15447, 12252, '4', 'B school ', '', 'MBA', '2020', 77.00, '', 1, '2023-04-03 11:09:25', 0, NULL, 0, NULL, 1),
(15448, 12255, '3', 'Anna University ', '', 'BE computer science and engineering ', '2022', 71.00, '', 1, '2023-04-03 11:16:52', 0, NULL, 0, NULL, 1),
(15449, 12255, '2', 'Tamilnadu board ', '', '', '2017', 66.00, '', 1, '2023-04-03 11:17:34', 0, NULL, 0, NULL, 1),
(15450, 12253, '3', 'Anna University ', '', 'Bachelor of Computer science and engineering ', '2022', 77.00, '', 1, '2023-04-03 11:17:49', 0, NULL, 0, NULL, 1),
(15451, 12253, '2', 'Tamilnadu state board ', '', '', '2018', 60.00, '', 1, '2023-04-03 11:18:17', 0, NULL, 0, NULL, 1),
(15452, 12253, '1', 'Tamilnadu state board ', '', '', '2016', 81.00, '', 1, '2023-04-03 11:18:36', 0, NULL, 0, NULL, 1),
(15453, 12256, '4', 'Periyaar University ', '', 'M .sc', '2022', 82.00, '', 1, '2023-04-03 11:54:46', 0, NULL, 0, NULL, 1),
(15454, 12248, '4', 'SATHYABAMA UNIVERSITY ', '', 'MBA', '2023', 70.00, '', 1, '2023-04-03 12:04:30', 0, NULL, 0, NULL, 1),
(15455, 12260, '4', 'Hochschule rheinwaal ', '', 'Msc', '2020', 80.00, '', 1, '2023-04-03 12:27:28', 0, NULL, 0, NULL, 1),
(15456, 12259, '3', 'Karpagam Academy of higher education ', '', 'B.E Mechanical engineering ', '2019', 72.80, '', 1, '2023-04-03 12:31:29', 0, NULL, 0, NULL, 1),
(15457, 12258, '3', 'Tagore Institute of engineering and technology ', '', 'B.E.civil Engineering ', '2019', 6.00, '', 1, '2023-04-03 12:49:16', 0, NULL, 0, NULL, 1),
(15458, 12263, '3', 'anna university', '', 'b.tech', '2022', 7.50, '', 1, '2023-04-03 02:59:38', 0, NULL, 0, NULL, 1),
(15459, 12262, '3', 'rajalakshmi engineering college', '', 'be', '2022', 78.00, '', 1, '2023-04-03 03:32:27', 0, NULL, 0, NULL, 1),
(15460, 12264, '3', 'madras university', '', 'bsc', '2017', 65.00, '', 1, '2023-04-03 06:53:16', 0, NULL, 0, NULL, 1),
(15461, 12264, '4', 'madurai kamaraj university', '', 'pgdsi', '2022', 96.00, '', 1, '2023-04-03 06:53:58', 0, NULL, 0, NULL, 1),
(15462, 12265, '3', 'anna University chennai', '', 'b.teach', '2022', 7.50, '', 1, '2023-04-04 09:03:05', 0, NULL, 0, NULL, 1),
(15463, 12265, '2', 'tamilnadu state board', '', '', '2018', 61.66, '', 1, '2023-04-04 09:03:43', 0, NULL, 0, NULL, 1),
(15464, 12265, '1', 'Tamilnadu State Board	', '', '', '2016', 88.20, '', 1, '2023-04-04 09:04:33', 0, NULL, 0, NULL, 1),
(15465, 12267, '4', 'Thiruvalluvar University ', '', 'MSc, Computer Science ', '2022', 70.00, '', 1, '2023-04-04 11:05:22', 0, NULL, 0, NULL, 1),
(15466, 12267, '3', 'Thiruvalluvar University ', '', 'B.SC, COMPUTER SCIENCE ', '2020', 73.00, '', 1, '2023-04-04 11:06:13', 0, NULL, 0, NULL, 1),
(15467, 12267, '1', 'State board of Tamilnadu ', '', '', '2015', 77.00, '', 1, '2023-04-04 11:08:20', 0, NULL, 0, NULL, 1),
(15468, 12268, '3', 'Anna University ', '', 'B.E', '2020', 70.00, '', 1, '2023-04-04 11:11:03', 0, NULL, 0, NULL, 1),
(15469, 12268, '1', 'State government ', '', '', '2014', 76.00, '', 1, '2023-04-04 11:11:47', 0, NULL, 0, NULL, 1),
(15470, 12268, '2', 'State government ', '', '', '2016', 60.00, '', 1, '2023-04-04 11:12:05', 0, NULL, 0, NULL, 1),
(15471, 12266, '1', 'State Board ', '', '', '2013', 87.20, '', 1, '2023-04-04 11:12:47', 0, NULL, 0, NULL, 1),
(15472, 12266, '2', 'State Board ', '', '', '2015', 68.00, '', 1, '2023-04-04 11:13:32', 1, '2023-04-04 11:16:53', 0, NULL, 1),
(15473, 12266, '3', 'Anna University ', '', 'B.E.(CSE)', '2021', 75.00, '', 1, '2023-04-04 11:25:28', 0, NULL, 0, NULL, 1),
(15474, 12269, '3', 'Madras university ', '', 'Bcom', '2018', 50.00, '', 1, '2023-04-04 11:42:45', 0, NULL, 0, NULL, 1),
(15475, 12270, '4', 'Presidency college', '', 'Msc- STATISTICS', '2022', 82.00, '', 1, '2023-04-04 11:46:19', 0, NULL, 0, NULL, 1),
(15476, 12271, '3', 'University of madras', '', 'B.Sc Computer Science ', '2020', 68.00, '', 1, '2023-04-04 11:50:22', 0, NULL, 0, NULL, 1),
(15477, 12273, '3', 'Psna college of engineering and technology ', '', 'BE', '2022', 7.30, '', 1, '2023-04-04 12:25:22', 0, NULL, 0, NULL, 1),
(15478, 12272, '3', 'Anna University ', '', 'Be', '2022', 72.00, '', 1, '2023-04-04 12:31:21', 0, NULL, 0, NULL, 1),
(15479, 12274, '3', 'Thiruvalluvar university ', '', 'BSC computer science ', '2020', 65.00, '', 1, '2023-04-04 12:47:34', 0, NULL, 0, NULL, 1),
(15480, 12276, '3', 'Saveetha University ', '', 'Bachelor of engineering in computer science ', '2016', 70.00, '', 1, '2023-04-04 01:01:07', 0, NULL, 0, NULL, 1),
(15481, 12275, '3', 'Madras University ', '', 'BCA', '2022', 85.00, '', 1, '2023-04-04 01:07:08', 0, NULL, 0, NULL, 1),
(15482, 12277, '1', 'State board', '', '', '2017', 90.00, '', 1, '2023-04-04 01:10:23', 0, NULL, 0, NULL, 1),
(15483, 12277, '2', 'State board ', '', '', '2019', 68.00, '', 1, '2023-04-04 01:10:40', 0, NULL, 0, NULL, 1),
(15484, 12277, '3', 'Alagappa University ', '', 'B.voc (software development)', '2022', 96.00, '', 1, '2023-04-04 01:11:20', 0, NULL, 0, NULL, 1),
(15485, 12278, '3', 'anna university', '', 'be', '2022', 75.60, '', 1, '2023-04-04 01:39:55', 0, NULL, 0, NULL, 1),
(15486, 12279, '4', 'Alagappa university', '', 'Mca', '2023', 7.30, '', 1, '2023-04-05 09:38:25', 0, NULL, 0, NULL, 1),
(15487, 12281, '3', 'Madurai kamaraj university college ', '', 'BCA', '2021', 60.00, '', 1, '2023-04-05 10:41:27', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15488, 12280, '3', 'Madurai kamarajar University ', '', 'B.Sc IT', '2015', 62.50, '', 1, '2023-04-05 11:10:07', 0, NULL, 0, NULL, 1),
(15489, 12282, '1', 'State board', '', 'BE civil engineering', '2015', 84.00, '', 1, '2023-04-05 11:15:13', 1, '2023-04-05 11:19:19', 0, NULL, 0),
(15490, 12282, '2', 'State Board', '', 'BE civil engineering', '2017', 64.00, '', 1, '2023-04-05 11:16:53', 1, '2023-04-05 11:19:24', 0, NULL, 0),
(15491, 12282, '3', 'Anna university', '', 'BE Civil Engineering', '2021', 71.00, '', 1, '2023-04-05 11:18:10', 0, NULL, 0, NULL, 1),
(15492, 12283, '3', 'University college of engineering (BIT campus)', '', 'B.Tech', '2022', 71.00, '', 1, '2023-04-05 11:27:04', 0, NULL, 0, NULL, 1),
(15493, 12283, '2', 'Board', '', '', '2018', 67.00, '', 1, '2023-04-05 11:28:01', 0, NULL, 0, NULL, 1),
(15494, 12283, '1', 'Board', '', '', '2016', 84.00, '', 1, '2023-04-05 11:28:25', 0, NULL, 0, NULL, 1),
(15495, 12285, '3', 'Sri Ramanujar Engineering College,anna University ', '', 'B.E EEE', '2022', 80.00, '', 1, '2023-04-05 11:44:19', 0, NULL, 0, NULL, 1),
(15496, 12285, '2', 'State board', '', '', '2018', 58.00, '', 1, '2023-04-05 11:44:58', 0, NULL, 0, NULL, 1),
(15497, 12285, '1', 'State board ', '', '', '2016', 82.00, '', 1, '2023-04-05 11:45:20', 0, NULL, 0, NULL, 1),
(15498, 12284, '3', 'Madras University ', '', 'B.bA', '2022', 83.00, '', 1, '2023-04-05 11:51:49', 0, NULL, 0, NULL, 1),
(15499, 12286, '1', 'KA board ', '', '', '2018', 68.00, '', 1, '2023-04-05 12:54:16', 0, NULL, 0, NULL, 1),
(15500, 12286, '5', 'DTE board', '', 'Diploma ', '2022', 76.00, '', 1, '2023-04-05 12:55:01', 0, NULL, 0, NULL, 1),
(15501, 12287, '1', 'KEA board', '', '', '2017', 77.00, '', 1, '2023-04-05 12:59:37', 0, NULL, 0, NULL, 1),
(15502, 12287, '5', 'DTE university', '', 'Diploma', '2022', 68.00, '', 1, '2023-04-05 01:00:11', 0, NULL, 0, NULL, 1),
(15503, 12288, '3', 'Anna University', '', 'B.E', '2018', 67.00, '', 1, '2023-04-05 01:30:47', 0, NULL, 0, NULL, 1),
(15504, 12289, '3', 'Tagore college of arts and science ', '', 'B.com accounting and finance ', '2019', 68.00, '', 1, '2023-04-05 01:32:29', 0, NULL, 0, NULL, 1),
(15505, 12290, '4', 'Madras University ', '', 'MBA', '2016', 68.00, '', 1, '2023-04-05 01:34:12', 0, NULL, 0, NULL, 1),
(15506, 12292, '3', 'Anna University ', '', 'B.E/mechanical Engineering ', '2021', 68.00, '', 1, '2023-04-06 10:26:15', 0, NULL, 0, NULL, 1),
(15507, 12293, '3', 'Anna University ', '', 'Eee', '2018', 60.00, '', 1, '2023-04-06 10:46:46', 0, NULL, 0, NULL, 1),
(15508, 12294, '3', 'Anna University ', '', 'B.Tech(IT)', '2021', 7.40, '', 1, '2023-04-06 10:46:56', 0, NULL, 0, NULL, 1),
(15509, 12295, '3', 'Anna University,MIT campus ', '', 'BE', '2022', 74.00, '', 1, '2023-04-06 11:10:40', 0, NULL, 0, NULL, 1),
(15510, 12296, '3', 'Madras University ', '', 'BSC computer science ', '2020', 73.30, '', 1, '2023-04-06 11:53:55', 0, NULL, 0, NULL, 1),
(15511, 12296, '2', 'Tamil nadu stateboard', '', '', '2017', 85.00, '', 1, '2023-04-06 11:54:23', 0, NULL, 0, NULL, 1),
(15512, 12296, '1', 'Tamil nadu Stateboard', '', '', '2015', 96.00, '', 1, '2023-04-06 11:54:46', 0, NULL, 0, NULL, 1),
(15513, 12297, '3', 'Anna University ', '', 'B.Tech IT', '2021', 64.00, '', 1, '2023-04-06 11:56:59', 0, NULL, 0, NULL, 1),
(15514, 12297, '1', 'State Board', '', '', '2015', 81.00, '', 1, '2023-04-06 11:57:50', 0, NULL, 0, NULL, 1),
(15515, 12298, '1', 'State Board', '', '', '2015', 75.00, '', 1, '2023-04-06 12:10:53', 0, NULL, 0, NULL, 1),
(15516, 12298, '2', 'State Board', '', '', '2017', 60.80, '', 1, '2023-04-06 12:11:19', 0, NULL, 0, NULL, 1),
(15517, 12299, '1', 'State board ', '', '', '2015', 91.00, '', 1, '2023-04-06 12:15:58', 0, NULL, 0, NULL, 1),
(15518, 12299, '2', 'State board', '', '', '2017', 76.00, '', 1, '2023-04-06 12:16:22', 0, NULL, 0, NULL, 1),
(15519, 12299, '3', 'Manonmaniyam sundaranar university, Thirunelveli', '', 'Bsc computer science', '2020', 78.00, '', 1, '2023-04-06 12:17:24', 0, NULL, 0, NULL, 1),
(15520, 12299, '4', 'Manonmaniyam sundaranar university, Thirunelveli', '', 'Master of computer Application', '2022', 91.00, '', 1, '2023-04-06 12:18:27', 0, NULL, 0, NULL, 1),
(15521, 12300, '2', 'loyola college ', '', '', '2017', 6.80, '', 1, '2023-04-06 02:33:38', 1, '2023-04-06 02:35:03', 0, NULL, 0),
(15522, 12300, '3', 'loyola collge ', '', 'bca', '2017', 6.28, '', 1, '2023-04-06 02:34:44', 0, NULL, 0, NULL, 1),
(15523, 12302, '4', 'Amity university', '', 'MBA ', '2016', 77.00, '', 1, '2023-04-06 02:41:36', 0, NULL, 0, NULL, 1),
(15524, 12301, '3', 'Madras University ', '', 'BBA', '2019', 68.00, '', 1, '2023-04-06 02:50:17', 0, NULL, 0, NULL, 1),
(15525, 12303, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2020', 66.00, '', 1, '2023-04-06 04:31:49', 0, NULL, 0, NULL, 1),
(15526, 12304, '1', 'State board ', '', '', '2011', 75.00, '', 1, '2023-04-06 04:38:46', 0, NULL, 0, NULL, 1),
(15527, 12304, '2', 'State board ', '', '', '2013', 65.00, '', 1, '2023-04-06 04:39:19', 0, NULL, 0, NULL, 1),
(15528, 12304, '3', 'SRM University ', '', 'B .sc ', '2019', 75.50, '', 1, '2023-04-06 04:39:52', 0, NULL, 0, NULL, 1),
(15529, 12304, '4', 'Dr mgr Deemed University ', '', 'MBA HR ', '2021', 87.00, '', 1, '2023-04-06 04:40:56', 0, NULL, 0, NULL, 1),
(15530, 12307, '1', 'State board ', '', '', '2016', 82.00, '', 1, '2023-04-06 05:35:42', 0, NULL, 0, NULL, 1),
(15531, 12307, '2', 'State board ', '', '', '2018', 75.00, '', 1, '2023-04-06 05:36:17', 0, NULL, 0, NULL, 1),
(15532, 12307, '3', 'Madras University ', '', 'B.com', '2021', 73.00, '', 1, '2023-04-06 05:36:39', 0, NULL, 0, NULL, 1),
(15533, 12309, '3', 'Baradidasan ', '', 'B. com', '2021', 72.00, '', 1, '2023-04-07 07:03:55', 0, NULL, 0, NULL, 1),
(15534, 12311, '3', 'The madura college ', '', 'B. Sc physics ', '2017', 50.00, '', 1, '2023-04-07 10:07:07', 0, NULL, 0, NULL, 1),
(15535, 12311, '4', 'The kamarajar university ', '', 'B. Sc physics ', '2017', 50.00, '', 1, '2023-04-07 10:07:59', 0, NULL, 0, NULL, 1),
(15536, 12310, '3', 'Db jain college ', '', 'BS.c mathematics ', '2021', 64.40, '', 1, '2023-04-07 10:09:32', 0, NULL, 0, NULL, 1),
(15537, 12312, '3', 'sri venkateshwara university', '', 'bsc computer', '2022', 80.00, '', 1, '2023-04-07 11:11:52', 0, NULL, 0, NULL, 1),
(15538, 12312, '2', 'board of andra pradhesh ', '', '', '2019', 77.00, '', 1, '2023-04-07 11:12:55', 0, NULL, 0, NULL, 1),
(15539, 12313, '1', 'open school university', '', '', '2017', 60.00, '', 1, '2023-04-07 11:22:00', 0, NULL, 0, NULL, 1),
(15540, 12313, '3', 'sri venkateshawara university', '', 'b. com', '2022', 60.00, '', 1, '2023-04-07 11:23:30', 0, NULL, 0, NULL, 1),
(15541, 12305, '3', 'crescent university', '', 'b.com', '2022', 60.10, '', 1, '2023-04-07 11:58:29', 0, NULL, 0, NULL, 1),
(15542, 12314, '3', 'Bharathidasan University', '', 'Bachelor of Business Administration', '2022', 82.30, '', 1, '2023-04-07 12:07:28', 1, '2023-04-07 12:08:24', 0, NULL, 0),
(15543, 12314, '2', 'State Board of Tamil Nadu', '', '', '2019', 56.00, '', 1, '2023-04-07 12:08:06', 1, '2023-04-07 12:08:15', 0, NULL, 0),
(15544, 12314, '1', 'State Board of Tamil Nadu', '', '', '2017', 88.80, '', 1, '2023-04-07 12:09:10', 1, '2023-04-07 12:09:20', 0, NULL, 1),
(15545, 12314, '2', 'State Board of Tamil Nadu', '', '', '2019', 55.50, '', 1, '2023-04-07 12:09:52', 0, NULL, 0, NULL, 1),
(15546, 12314, '3', 'Bharathidasan University', '', 'Bachelor of Business Administration', '2022', 82.30, '', 1, '2023-04-07 12:10:51', 0, NULL, 0, NULL, 1),
(15547, 12317, '3', 'Medras University ', '', 'B com', '2015', 78.00, '', 1, '2023-04-07 12:48:10', 0, NULL, 0, NULL, 1),
(15548, 12316, '4', 'F.m University ', '', 'MBA', '2020', 71.00, '', 1, '2023-04-07 12:54:55', 0, NULL, 0, NULL, 1),
(15549, 12318, '3', 'Thiruvalluvar University', '', 'BCA', '2019', 79.01, '', 1, '2023-04-07 01:05:34', 0, NULL, 0, NULL, 1),
(15550, 12319, '3', 'Alagappa university', '', 'B.com(computer Application)', '2020', 58.50, '', 1, '2023-04-07 01:07:42', 0, NULL, 0, NULL, 1),
(15551, 12315, '3', 'Anna University ', '', 'BE', '2021', 77.50, '', 1, '2023-04-07 01:09:55', 0, NULL, 0, NULL, 1),
(15552, 12320, '1', 'State Board ', '', '', '2015', 55.20, '', 1, '2023-04-07 01:26:51', 0, NULL, 0, NULL, 1),
(15553, 12320, '2', 'State Board ', '', '', '2017', 57.75, '', 1, '2023-04-07 01:27:18', 0, NULL, 0, NULL, 1),
(15554, 12320, '3', 'SRM institute of science and technology ', '', 'Bsc Film Tech ', '2020', 6.62, '', 1, '2023-04-07 01:28:45', 0, NULL, 0, NULL, 1),
(15555, 12321, '3', 'Chennai Institute of Technology ', '', 'B.E', '2023', 87.00, '', 1, '2023-04-07 01:42:14', 0, NULL, 0, NULL, 1),
(15556, 12323, '3', 'Anna university affiled', '', 'BE', '2019', 65.00, '', 1, '2023-04-07 03:50:18', 0, NULL, 0, NULL, 1),
(15557, 12323, '2', 'CBSE', '', '', '2015', 58.00, '', 1, '2023-04-07 03:50:45', 0, NULL, 0, NULL, 1),
(15558, 12324, '3', 'University of Madras ', '', 'B.com (computer Applications)', '2022', 68.00, '', 1, '2023-04-08 10:44:52', 0, NULL, 0, NULL, 1),
(15559, 12326, '3', 'Madras University ', '', 'Bcom ', '2017', 59.00, '', 1, '2023-04-08 12:31:13', 0, NULL, 0, NULL, 1),
(15560, 12325, '3', 'University', '', 'B.TECH', '2023', 8.98, '', 1, '2023-04-08 12:37:07', 0, NULL, 0, NULL, 1),
(15561, 12327, '5', 'Sri nalalaghu polytechnic College ', '', 'Diploma ', '2016', 70.00, '', 1, '2023-04-08 02:59:24', 0, NULL, 0, NULL, 1),
(15562, 12328, '2', 'State board ', '', '', '2015', 50.00, '', 1, '2023-04-08 03:20:16', 0, NULL, 0, NULL, 1),
(15563, 12329, '3', 'University of Madras', '', 'B.com Accounting/ Finance', '2018', 75.00, '', 1, '2023-04-10 07:41:57', 1, '2023-04-10 07:44:41', 0, NULL, 0),
(15564, 12329, '1', 'State Board', '', '', '2013', 84.00, '', 1, '2023-04-10 07:46:11', 0, NULL, 0, NULL, 1),
(15565, 12329, '2', 'State Board ', '', '', '2015', 82.00, '', 1, '2023-04-10 07:47:05', 0, NULL, 0, NULL, 1),
(15566, 12329, '3', 'University of Madras ', '', 'B.com Accounting and Finance', '2018', 75.00, '', 1, '2023-04-10 07:48:37', 0, NULL, 0, NULL, 1),
(15567, 12331, '4', 'New college ', '', 'Ma', '2018', 60.00, '', 1, '2023-04-10 10:14:28', 0, NULL, 0, NULL, 1),
(15568, 12332, '3', 'Anna University ', '', 'It', '2023', 7.77, '', 1, '2023-04-10 10:23:30', 0, NULL, 0, NULL, 1),
(15569, 12333, '4', 'SRM Institute Of Science And Technology ', '', '', '2023', 82.00, '', 1, '2023-04-10 10:55:09', 0, NULL, 0, NULL, 1),
(15570, 12333, '3', 'SRM Institute Of Science And Technology ', '', '', '2021', 85.00, '', 1, '2023-04-10 10:55:33', 0, NULL, 0, NULL, 1),
(15571, 12334, '1', 'School ', '', '', '2017', 70.00, '', 1, '2023-04-10 11:29:13', 0, NULL, 0, NULL, 1),
(15572, 12336, '3', 'Saveetha Engineering College ', '', 'B.e', '2023', 83.00, '', 1, '2023-04-10 11:37:52', 0, NULL, 0, NULL, 1),
(15573, 12339, '3', 'Krishnasamy College of Engineering and Technology, Cuddalore. ', '', 'B. E', '2022', 82.60, '', 1, '2023-04-10 01:04:20', 0, NULL, 0, NULL, 1),
(15574, 12339, '2', 'St. Anne\'s Girls Higher Secondary School, Cuddalore. ', '', '', '2018', 77.04, '', 1, '2023-04-10 01:05:40', 0, NULL, 0, NULL, 1),
(15575, 12339, '1', 'St. Anne\'s Girls Higher Secondary School, Cuddalore. ', '', '', '2016', 87.40, '', 1, '2023-04-10 01:06:26', 0, NULL, 0, NULL, 1),
(15576, 12337, '2', 'state board', '', '', '2009', 80.00, '', 1, '2023-04-10 01:10:12', 0, NULL, 0, NULL, 1),
(15577, 12337, '1', 'state board', '', '', '2011', 87.00, '', 1, '2023-04-10 01:10:56', 0, NULL, 0, NULL, 1),
(15578, 12337, '3', 'madras ', '', 'b.com', '2014', 89.00, '', 1, '2023-04-10 01:11:22', 0, NULL, 0, NULL, 1),
(15579, 12340, '2', 'Kavitha matriculation higher secondary school ', '', '', '2018', 65.00, '', 1, '2023-04-10 01:24:49', 0, NULL, 0, NULL, 1),
(15580, 12340, '3', 'Srm university ', '', 'B.com general', '2021', 72.00, '', 1, '2023-04-10 01:25:30', 0, NULL, 0, NULL, 1),
(15581, 12341, '3', 'Anna University ', '', 'Bachelor of engineering ', '2021', 75.30, '', 1, '2023-04-10 02:15:13', 0, NULL, 0, NULL, 1),
(15582, 12343, '3', 'Anna University ', '', 'Bachelor of engineering ', '2021', 75.30, '', 1, '2023-04-10 02:34:02', 0, NULL, 0, NULL, 1),
(15583, 12344, '3', 'Ramakrishna mission vivekananda college ', '', 'Bsc (CS)', '2022', 89.00, '', 1, '2023-04-10 04:51:51', 0, NULL, 0, NULL, 1),
(15584, 12346, '3', 'Anna University ', '', 'Bachelor of engineering ', '2022', 87.00, '', 1, '2023-04-10 05:07:48', 0, NULL, 0, NULL, 1),
(15585, 12346, '2', 'Tamilnadu board of examination ', '', '', '2018', 80.00, '', 1, '2023-04-10 05:08:12', 0, NULL, 0, NULL, 1),
(15586, 12346, '1', 'Tamilnadu board of examination ', '', '', '2016', 91.00, '', 1, '2023-04-10 05:08:24', 0, NULL, 0, NULL, 1),
(15587, 12345, '3', 'Anna university ', '', 'B E mechanical engineering ', '2019', 6.50, '', 1, '2023-04-10 05:56:40', 0, NULL, 0, NULL, 1),
(15588, 12349, '3', 'srm ', '', 'bcom ', '2021', 6.80, '', 1, '2023-04-10 07:30:04', 0, NULL, 0, NULL, 1),
(15589, 12350, '3', 'Madras university', '', 'B.com general', '2021', 65.00, '', 1, '2023-04-11 07:41:33', 0, NULL, 0, NULL, 1),
(15590, 12335, '3', 'Thiruvalluvar university', '', 'BCA', '2021', 60.00, '', 1, '2023-04-11 10:41:54', 0, NULL, 0, NULL, 1),
(15591, 12353, '5', 'PSG institute of technology ', '', 'Textile technology ', '2021', 64.00, '', 1, '2023-04-11 10:56:19', 0, NULL, 0, NULL, 1),
(15592, 12352, '5', 'Open university Malaysia ', '', 'Hotel management ', '2016', 85.00, '', 1, '2023-04-11 11:19:44', 0, NULL, 0, NULL, 1),
(15593, 12354, '4', 'Alagappa University ', '', 'M.sc(c.s)', '2021', 67.00, '', 1, '2023-04-11 11:22:55', 0, NULL, 0, NULL, 1),
(15594, 12355, '3', 'Anna University ', '', 'BE', '2022', 72.00, '', 1, '2023-04-11 11:25:33', 0, NULL, 0, NULL, 1),
(15595, 12356, '3', 'madras university ', '', 'b.sc.electronics and communication science', '2019', 70.00, '', 1, '2023-04-11 11:33:15', 0, NULL, 0, NULL, 1),
(15596, 12357, '3', 'Anna University ', '', 'Be', '2015', 61.00, '', 1, '2023-04-11 01:54:15', 0, NULL, 0, NULL, 1),
(15597, 12358, '3', 'Anna University ', '', 'BE', '2020', 75.00, '', 1, '2023-04-11 03:03:38', 0, NULL, 0, NULL, 1),
(15598, 12361, '3', 'Anna University ', '', 'BE.ECE', '2020', 63.00, '', 1, '2023-04-11 04:41:24', 0, NULL, 0, NULL, 1),
(15599, 12362, '3', 'University', '', 'BCA', '2022', 65.00, '', 1, '2023-04-11 05:31:43', 0, NULL, 0, NULL, 1),
(15600, 12363, '3', 'srm', '', 'BCA', '2025', 70.00, '', 1, '2023-04-11 06:14:40', 0, NULL, 0, NULL, 1),
(15601, 12347, '3', 'University of Madras ', '', 'BBA ', '2021', 60.00, '', 60, '2023-04-11 07:05:54', 1, '2023-04-11 08:53:25', 0, NULL, 1),
(15602, 12365, '3', 'avc college ', '', 'bsc', '2021', 70.00, '', 1, '2023-04-11 07:24:24', 0, NULL, 0, NULL, 1),
(15603, 12347, '4', 'University of Madras ', '', 'MBA', '2022', 72.00, '', 1, '2023-04-11 08:52:28', 0, NULL, 0, NULL, 1),
(15604, 12368, '4', 'M.G.R Arts and Science College ', '', 'M.Sc., Mathematics ', '2021', 70.00, '', 1, '2023-04-12 11:06:34', 0, NULL, 0, NULL, 1),
(15605, 12369, '4', 'Madrass university', '', 'B.com', '2020', 75.00, '', 1, '2023-04-12 11:07:01', 0, NULL, 0, NULL, 1),
(15606, 12367, '4', 'MADRAS UNIVERSITY ', '', 'MSC IT ', '2018', 70.00, '', 1, '2023-04-12 11:17:51', 0, NULL, 0, NULL, 1),
(15607, 12367, '1', 'CBSE', '', '', '2011', 70.00, '', 1, '2023-04-12 11:18:17', 0, NULL, 0, NULL, 1),
(15608, 12367, '2', 'MATRICULATION ', '', '', '2013', 88.00, '', 1, '2023-04-12 11:18:38', 0, NULL, 0, NULL, 1),
(15609, 12367, '3', 'MADRAS UNIVERSITY ', '', 'BSC COMPUTER SCIENCE ', '2016', 75.00, '', 1, '2023-04-12 11:19:09', 0, NULL, 0, NULL, 1),
(15610, 12370, '3', 'kcs kasi nadar college', '', 'bcom ', '2018', 70.00, '', 1, '2023-04-12 11:20:54', 0, NULL, 0, NULL, 1),
(15611, 12364, '2', 'chennai higher sec school', '', '', '2023', 70.00, '', 1, '2023-04-12 11:41:35', 0, NULL, 0, NULL, 1),
(15612, 12348, '3', 'Kamaraj University ', '', 'B com', '2019', 75.00, '', 1, '2023-04-12 11:56:55', 0, NULL, 0, NULL, 1),
(15613, 12371, '3', 'Anna University ', '', 'B.E', '2022', 76.00, '', 1, '2023-04-12 12:03:43', 0, NULL, 0, NULL, 1),
(15614, 12372, '3', 'Anna University ', '', 'BE', '2019', 62.00, '', 1, '2023-04-12 12:09:09', 0, NULL, 0, NULL, 1),
(15615, 12373, '3', 'The new college ', '', 'B.com (General)', '2021', 73.00, '', 1, '2023-04-12 01:21:04', 0, NULL, 0, NULL, 1),
(15616, 12374, '5', 'Anjunman ', '', 'ITI', '2017', 58.00, '', 1, '2023-04-12 02:33:17', 0, NULL, 0, NULL, 1),
(15617, 12377, '3', 'Madras university ', '', 'B.com', '2020', 79.00, '', 1, '2023-04-12 10:48:03', 0, NULL, 0, NULL, 1),
(15618, 12379, '3', 'Anna university ', '', 'B.E Electronics communication engineering ', '2023', 8.20, '', 1, '2023-04-13 09:46:34', 0, NULL, 0, NULL, 1),
(15619, 12375, '2', 'Board', '', '', '2018', 84.00, '', 1, '2023-04-13 10:00:52', 1, '2023-04-13 10:01:48', 0, NULL, 0),
(15620, 12375, '3', 'University', '', 'BA ', '2022', 65.00, '', 1, '2023-04-13 10:02:50', 0, NULL, 0, NULL, 1),
(15621, 12381, '3', 'Bharathidasan University ', '', 'BBA', '2017', 53.00, '', 1, '2023-04-13 10:20:46', 1, '2023-04-13 10:21:29', 0, NULL, 1),
(15622, 12381, '4', 'Alagappa University ', '', 'MBA', '2023', 80.00, '', 1, '2023-04-13 10:21:52', 0, NULL, 0, NULL, 1),
(15623, 12383, '3', 'Board', '', 'B.com general', '2022', 80.00, '', 1, '2023-04-13 11:42:56', 0, NULL, 0, NULL, 1),
(15624, 12384, '4', 'University of Madras ', '', 'MBA', '2023', 80.00, '', 1, '2023-04-13 12:19:26', 0, NULL, 0, NULL, 1),
(15625, 12385, '3', 'Madras university ', '', 'B.sc computer  science ', '2019', 65.00, '', 1, '2023-04-13 12:35:51', 0, NULL, 0, NULL, 1),
(15626, 12386, '4', 'paavai engineering college', '', 'm.c.a', '2022', 75.00, '', 1, '2023-04-13 12:40:41', 0, NULL, 0, NULL, 1),
(15627, 12376, '3', 'rajalakshmi engineering', '', 'btech', '2022', 70.00, '', 1, '2023-04-13 12:45:01', 0, NULL, 0, NULL, 1),
(15628, 12387, '2', 'State board', '', '', '2016', 56.00, '', 1, '2023-04-13 01:19:59', 0, NULL, 0, NULL, 1),
(15629, 12388, '5', 'srm University ', '', '', '2014', 70.00, '', 1, '2023-04-13 02:48:04', 0, NULL, 0, NULL, 1),
(15630, 12389, '4', 'Madras University ', '', 'MSW (HRM)', '2023', 78.00, '', 1, '2023-04-13 04:08:30', 0, NULL, 0, NULL, 1),
(15631, 12389, '3', 'Madras University ', '', 'B.COM (CS)', '2021', 77.00, '', 1, '2023-04-13 04:09:03', 0, NULL, 0, NULL, 1),
(15632, 12389, '2', 'State board ', '', '', '2018', 90.00, '', 1, '2023-04-13 04:09:23', 0, NULL, 0, NULL, 1),
(15633, 12389, '1', 'State board ', '', '', '2016', 77.00, '', 1, '2023-04-13 04:09:47', 0, NULL, 0, NULL, 1),
(15634, 12389, '5', 'Madras University ', '', 'PGDLL', '2022', 60.00, '', 1, '2023-04-13 04:10:13', 0, NULL, 0, NULL, 1),
(15635, 12390, '3', 'Bharath University ', '', 'B.com LLB', '2022', 79.00, '', 1, '2023-04-13 05:08:14', 0, NULL, 0, NULL, 1),
(15636, 12391, '4', 'Anna university', '', 'MBA', '2020', 79.90, '', 1, '2023-04-13 06:05:46', 0, NULL, 0, NULL, 1),
(15637, 12391, '1', 'State board', '', '', '2013', 71.00, '', 1, '2023-04-13 06:06:46', 0, NULL, 0, NULL, 1),
(15638, 12391, '2', 'State board', '', '', '2015', 61.00, '', 1, '2023-04-13 06:07:07', 0, NULL, 0, NULL, 1),
(15639, 12391, '3', 'Madras university', '', 'Bcom', '2018', 75.00, '', 1, '2023-04-13 06:07:35', 0, NULL, 0, NULL, 1),
(15640, 12395, '3', 'Anna University ', '', 'B.E -ECE', '2022', 7.49, '', 1, '2023-04-14 10:12:11', 1, '2023-04-14 10:12:29', 0, NULL, 1),
(15641, 12393, '3', 'Pachaiyappa\'s College', '', 'bsc. maths', '2019', 52.00, '', 1, '2023-04-15 10:06:22', 0, NULL, 0, NULL, 1),
(15642, 12393, '2', 'assumption higher secondary school', '', '', '2016', 60.00, '', 1, '2023-04-15 10:06:56', 0, NULL, 0, NULL, 1),
(15643, 12393, '1', 'Assumption Higher Secondary School', '', '', '2014', 82.00, '', 1, '2023-04-15 10:07:12', 0, NULL, 0, NULL, 1),
(15644, 12396, '3', 'Anna University ', '', 'B.E', '2021', 75.20, '', 1, '2023-04-15 10:17:40', 0, NULL, 0, NULL, 1),
(15645, 12396, '2', 'Tamil Nadu State Board', '', '', '2017', 95.75, '', 1, '2023-04-15 10:18:18', 1, '2023-04-15 10:18:34', 0, NULL, 1),
(15646, 12396, '1', 'Tamil Nadu State Board ', '', '', '2015', 97.40, '', 1, '2023-04-15 10:19:11', 0, NULL, 0, NULL, 1),
(15647, 12397, '4', 'University of Madras ', '', 'MSC ', '2018', 80.00, '', 1, '2023-04-15 10:25:27', 0, NULL, 0, NULL, 1),
(15648, 12397, '3', 'University of Madras ', '', 'Bsc', '2016', 78.00, '', 1, '2023-04-15 10:26:03', 0, NULL, 0, NULL, 1),
(15649, 12398, '5', 'Anna University ', '', 'Automobile engineering ', '2016', 65.00, '', 1, '2023-04-15 11:49:21', 0, NULL, 0, NULL, 1),
(15650, 12392, '3', 'university of madras', '', 'b.com general', '2021', 75.00, '', 1, '2023-04-15 12:24:55', 0, NULL, 0, NULL, 1),
(15651, 12399, '3', 'anna university', '', 'b.tech', '2022', 83.00, '', 1, '2023-04-15 12:55:46', 0, NULL, 0, NULL, 1),
(15652, 12401, '5', 'Sri Krishna College', '', 'Diploma', '2014', 61.00, '', 1, '2023-04-15 06:54:32', 0, NULL, 0, NULL, 1),
(15653, 12402, '4', 'Bharathidasan university ', '', 'MBA', '2022', 75.77, '', 1, '2023-04-15 07:34:26', 0, NULL, 0, NULL, 1),
(15654, 12405, '3', 'The New College Autonomous', '', 'B.com Corporate secretaryship ', '2022', 74.00, '', 1, '2023-04-17 07:21:40', 1, '2023-04-17 07:21:57', 0, NULL, 0),
(15655, 12405, '1', 'M.E.S RAZEENA MATRICULATION HIGHER SECONDARY SCHOOL ', '', '', '2017', 85.00, '', 1, '2023-04-17 07:22:23', 0, NULL, 0, NULL, 1),
(15656, 12405, '2', 'M.E.S RAZEENA MATRICULATION HIGHER SECONDARY SCHOOL ', '', '', '2019', 56.00, '', 1, '2023-04-17 07:22:48', 0, NULL, 0, NULL, 1),
(15657, 12405, '3', 'The New College Autonomous ', '', 'B.com Corporate secretaryship ', '2022', 74.00, '', 1, '2023-04-17 07:23:30', 0, NULL, 0, NULL, 1),
(15658, 12406, '4', 'Anna university ', '', 'MBA', '2022', 80.00, '', 1, '2023-04-17 10:36:38', 0, NULL, 0, NULL, 1),
(15659, 12408, '3', 'Anna Unniversity', '', 'B.E/ ECE', '2019', 75.00, '', 1, '2023-04-17 10:41:45', 0, NULL, 0, NULL, 1),
(15660, 12409, '3', 'Mary Matha college of Arts and science ', '', 'BSC COMPUTER SCIENCE ', '2022', 78.00, '', 1, '2023-04-17 10:44:22', 0, NULL, 0, NULL, 1),
(15661, 12411, '3', 'Anna University ', '', 'B.E', '2017', 67.00, '', 1, '2023-04-17 11:00:38', 0, NULL, 0, NULL, 1),
(15662, 12412, '1', 'State', '', '', '2010', 88.00, '', 1, '2023-04-17 11:07:10', 0, NULL, 0, NULL, 1),
(15663, 12412, '2', 'State', '', '', '2012', 66.00, '', 1, '2023-04-17 11:07:23', 0, NULL, 0, NULL, 1),
(15664, 12412, '3', 'Anna University ', '', 'BE Civil ', '2016', 74.50, '', 1, '2023-04-17 11:07:46', 0, NULL, 0, NULL, 1),
(15665, 12413, '3', 'queen mary college', '', 'ba', '2021', 81.00, '', 1, '2023-04-17 11:20:00', 0, NULL, 0, NULL, 1),
(15666, 12415, '3', 'Anna university', '', 'B. Tech/IT', '2022', 86.00, '', 1, '2023-04-17 11:45:36', 0, NULL, 0, NULL, 1),
(15667, 12416, '3', 'University of madras ', '', 'Bsc computer science ', '2022', 88.00, '', 1, '2023-04-17 11:53:33', 0, NULL, 0, NULL, 1),
(15668, 12414, '3', 'University of Madras', '', 'BSc Computer science ', '2022', 71.00, '', 1, '2023-04-17 11:54:00', 0, NULL, 0, NULL, 1),
(15669, 12417, '3', 'Prist University ', '', 'BBA', '2019', 61.70, '', 1, '2023-04-17 12:04:35', 0, NULL, 0, NULL, 1),
(15670, 12418, '3', 'Anna University', '', 'Bachelor of Engineering', '2021', 70.00, '', 1, '2023-04-17 12:08:36', 0, NULL, 0, NULL, 1),
(15671, 12420, '3', 'Rajalakshmi engineering college', '', 'B.E. EEE', '2022', 93.80, '', 1, '2023-04-17 12:51:50', 0, NULL, 0, NULL, 1),
(15672, 12419, '3', 'Anna University ', '', 'B.E', '2019', 6.66, '', 1, '2023-04-17 12:58:48', 0, NULL, 0, NULL, 1),
(15673, 12419, '5', 'DOTE', '', 'D.EEE', '2015', 68.00, '', 1, '2023-04-17 12:59:29', 0, NULL, 0, NULL, 1),
(15674, 12419, '1', 'Tamilnadu secondary school ', '', '', '2012', 48.00, '', 1, '2023-04-17 12:59:57', 0, NULL, 0, NULL, 1),
(15675, 12422, '4', 'APJ ABDUL KALAM TECHNOLOGICAL UNIVERSITY ', '', 'MBA', '2019', 75.00, '', 1, '2023-04-17 01:33:10', 0, NULL, 0, NULL, 1),
(15676, 12423, '3', 'Bharath University ', '', 'Bsc cs', '2019', 75.00, '', 1, '2023-04-17 01:54:59', 0, NULL, 0, NULL, 1),
(15677, 12421, '3', 'bharathiyar university', '', 'b.com ', '2023', 60.00, '', 1, '2023-04-17 03:02:50', 0, NULL, 0, NULL, 1),
(15678, 12421, '2', 'stateboard', '', '', '2016', 83.00, '', 1, '2023-04-17 03:03:58', 0, NULL, 0, NULL, 1),
(15679, 12421, '1', 'stateboard', '', '', '2014', 92.00, '', 1, '2023-04-17 03:04:20', 0, NULL, 0, NULL, 1),
(15680, 12424, '4', 'Rajalakshmi engineering college ', '', 'MBA', '2022', 7.24, '', 1, '2023-04-17 03:43:36', 0, NULL, 0, NULL, 1),
(15681, 12424, '3', 'Dr.m.g.r Educational Research Institute ', '', 'B.com', '2019', 7.71, '', 1, '2023-04-17 03:44:36', 0, NULL, 0, NULL, 1),
(15682, 12424, '2', 'Singaram pillai higher secondary school ', '', '', '2016', 56.00, '', 1, '2023-04-17 03:46:05', 0, NULL, 0, NULL, 1),
(15683, 12425, '4', 'Madras University ', '', 'M.com ', '2019', 78.00, '', 1, '2023-04-17 06:51:15', 0, NULL, 0, NULL, 1),
(15684, 12426, '4', 'Sathyabama university', '', 'MBA', '2023', 83.00, '', 1, '2023-04-18 06:51:17', 0, NULL, 0, NULL, 1),
(15685, 12430, '3', 'Bannari Amman Institute of Technology Sathyamangalam', '', 'B.E- Aeronautical Engineering', '2022', 84.00, '', 1, '2023-04-18 10:45:03', 1, '2023-04-18 10:45:43', 0, NULL, 1),
(15686, 12428, '3', 'Thiruvallur university ', '', 'BA English ', '2019', 80.00, '', 1, '2023-04-18 10:46:19', 0, NULL, 0, NULL, 1),
(15687, 12431, '3', 'jeppiaar engineering college', '', 'be ece', '2019', 70.00, '', 1, '2023-04-18 10:53:16', 0, NULL, 0, NULL, 1),
(15688, 12429, '3', 'Manonmaniam sundaranar university', '', 'B. Sc (CS) ', '2022', 91.80, '', 1, '2023-04-18 11:01:45', 0, NULL, 0, NULL, 1),
(15689, 12427, '4', 'Sathyabama university', '', 'MBA', '2023', 7.50, '', 1, '2023-04-18 11:20:51', 0, NULL, 0, NULL, 1),
(15690, 12432, '4', 'Periyar University', '', 'MA (English)', '2016', 63.00, '', 1, '2023-04-18 12:05:12', 0, NULL, 0, NULL, 1),
(15691, 12433, '3', 'IRTT COLLEGE ANNA UNIVERSITY ', '', 'BE ECE', '2015', 69.00, '', 1, '2023-04-18 12:06:06', 0, NULL, 0, NULL, 1),
(15692, 12434, '4', 'Anna university ', '', 'MBA (Finance& Marketing)', '2016', 74.00, '', 1, '2023-04-18 12:21:50', 0, NULL, 0, NULL, 1),
(15693, 12436, '3', 'Anna university', '', 'B.E', '2019', 65.00, '', 1, '2023-04-18 12:36:11', 0, NULL, 0, NULL, 1),
(15694, 12435, '1', 'marthoma matric hr sec school', '', '', '2012', 76.00, '', 1, '2023-04-18 12:36:26', 0, NULL, 0, NULL, 1),
(15695, 12435, '2', 'Marthoma matric hr sec school', '', '', '2014', 66.50, '', 1, '2023-04-18 12:37:08', 0, NULL, 0, NULL, 1),
(15696, 12435, '3', 'Dmi college of engineering', '', 'B.e civil engineering', '2018', 64.20, '', 1, '2023-04-18 12:37:55', 0, NULL, 0, NULL, 1),
(15697, 12438, '4', 'Dr Mgr educational institute and research ', '', 'Biotechnology ', '2023', 8.70, '', 1, '2023-04-18 01:07:27', 0, NULL, 0, NULL, 1),
(15698, 12437, '3', 'Madras University ', '', 'Bachelor of science ', '2021', 80.00, '', 1, '2023-04-18 01:11:37', 0, NULL, 0, NULL, 1),
(15699, 12441, '3', 'Bharathidasan University ', '', 'BCA ', '2022', 88.00, '', 1, '2023-04-18 02:34:00', 0, NULL, 0, NULL, 1),
(15700, 12442, '3', 'Bharathidasan University ', '', 'B.sc', '2022', 82.00, '', 1, '2023-04-18 02:51:36', 0, NULL, 0, NULL, 1),
(15701, 12440, '3', 'Annamalai University ', '', 'B.sc.(hons) Agriculture ', '2022', 78.00, '', 1, '2023-04-18 03:04:19', 0, NULL, 0, NULL, 1),
(15702, 12445, '3', 'Board', '', 'B.E', '2022', 7.74, '', 1, '2023-04-19 09:55:11', 0, NULL, 0, NULL, 1),
(15703, 12446, '3', 'JNTU,ANANTHAPUR ', '', 'Btech', '2020', 56.00, '', 1, '2023-04-19 12:19:14', 0, NULL, 0, NULL, 1),
(15704, 12443, '3', 'Madras University ', '', 'B.com (cS)', '2017', 58.00, '', 1, '2023-04-19 12:22:09', 0, NULL, 0, NULL, 1),
(15705, 12447, '3', 'Anna University ', '', 'B.E.,-ECE', '2021', 72.30, '', 1, '2023-04-19 03:03:11', 0, NULL, 0, NULL, 1),
(15706, 12447, '1', 'State board', '', '', '2015', 90.40, '', 1, '2023-04-19 03:03:47', 0, NULL, 0, NULL, 1),
(15707, 12447, '2', 'State board ', '', '', '2017', 84.50, '', 1, '2023-04-19 03:04:04', 0, NULL, 0, NULL, 1),
(15708, 12448, '3', 'Erode sengunthar engineering college ', '', 'BE', '2021', 73.00, '', 1, '2023-04-19 03:04:33', 0, NULL, 0, NULL, 1),
(15709, 12448, '2', 'Sri Ramakrishna matric hrs sec school ', '', '', '2017', 77.00, '', 1, '2023-04-19 03:04:51', 0, NULL, 0, NULL, 1),
(15710, 12448, '1', 'Sri Ramakrishna matric hrs sec school ', '', '', '2015', 78.00, '', 1, '2023-04-19 03:05:21', 0, NULL, 0, NULL, 1),
(15711, 12449, '3', 'Anna University ', '', 'BE', '2023', 7.96, '', 1, '2023-04-19 04:23:12', 0, NULL, 0, NULL, 1),
(15712, 12450, '3', 'Thriuvalluvar university', '', 'Physics', '2019', 68.00, '', 1, '2023-04-20 11:06:35', 0, NULL, 0, NULL, 1),
(15713, 12450, '2', 'Sri valliammal metric hrs sec School', '', '', '2015', 59.00, '', 1, '2023-04-20 11:08:37', 0, NULL, 0, NULL, 1),
(15714, 12450, '1', 'St.joseph\'s metric hrs sec school', '', '', '2013', 72.00, '', 1, '2023-04-20 11:09:28', 0, NULL, 0, NULL, 1),
(15715, 12451, '3', 'Queen marys college', '', 'BA', '2021', 80.00, '', 1, '2023-04-20 11:29:18', 0, NULL, 0, NULL, 1),
(15716, 12452, '3', 'Anna University', '', 'B.E', '2021', 7.69, '', 1, '2023-04-20 11:38:08', 0, NULL, 0, NULL, 1),
(15717, 12453, '3', 'Bharathithasan university', '', 'Bca', '2019', 79.00, '', 1, '2023-04-20 12:01:41', 0, NULL, 0, NULL, 1),
(15718, 12454, '3', 'Anna University ', '', 'B.e', '2023', 70.00, '', 1, '2023-04-20 12:08:25', 0, NULL, 0, NULL, 1),
(15719, 12456, '3', 'Sir Theagaraya College ', '', 'BCA', '2020', 61.00, '', 1, '2023-04-20 01:02:46', 0, NULL, 0, NULL, 1),
(15720, 12457, '4', 'tcet college', '', 'me-cse', '2019', 85.00, '', 1, '2023-04-20 01:22:35', 0, NULL, 0, NULL, 1),
(15721, 12458, '5', 'Anna University ', '', 'Null', '2021', 82.00, '', 1, '2023-04-20 01:39:37', 0, NULL, 0, NULL, 1),
(15722, 12460, '4', 'Deemed University ', '', 'MBA ', '2023', 70.00, '', 1, '2023-04-20 06:45:26', 0, NULL, 0, NULL, 1),
(15723, 12461, '4', 'University ', '', 'MBA', '2023', 68.00, '', 1, '2023-04-20 06:47:42', 0, NULL, 0, NULL, 1),
(15724, 12462, '3', 'NSN COLLEGE OF engineering and technology ', '', 'B.E', '2023', 8.00, '', 1, '2023-04-21 09:45:28', 0, NULL, 0, NULL, 1),
(15725, 12462, '2', 'Board', '', '', '2019', 59.33, '', 1, '2023-04-21 09:46:06', 0, NULL, 0, NULL, 1),
(15726, 12463, '3', 'Anna University ', '', 'B.Tech (IT)', '2020', 74.00, '', 1, '2023-04-21 09:46:07', 0, NULL, 0, NULL, 1),
(15727, 12463, '2', 'State board ', '', '', '2016', 79.00, '', 1, '2023-04-21 09:46:36', 0, NULL, 0, NULL, 1),
(15728, 12463, '1', 'State board ', '', '', '2014', 94.00, '', 1, '2023-04-21 09:46:58', 0, NULL, 0, NULL, 1),
(15729, 12464, '3', 'St.joseph\'s college of Arts and Science ', '', 'B.com', '2021', 69.00, '', 1, '2023-04-21 10:50:50', 0, NULL, 0, NULL, 1),
(15730, 12465, '3', 'DG Vaishnava college Chennai ', '', 'Bsc physics with computer application ', '2022', 72.00, '', 1, '2023-04-21 11:41:24', 0, NULL, 0, NULL, 1),
(15731, 12467, '3', 'University of Madras', '', 'B.Sc (Cs)', '2014', 62.00, '', 1, '2023-04-21 11:45:15', 0, NULL, 0, NULL, 1),
(15732, 12467, '2', 'CHSS', '', '', '2011', 70.00, '', 1, '2023-04-21 11:45:52', 0, NULL, 0, NULL, 1),
(15733, 12467, '1', 'CHSS', '', '', '2009', 84.00, '', 1, '2023-04-21 11:47:45', 0, NULL, 0, NULL, 1),
(15734, 12466, '4', 'Bharathidasan University ', '', 'Msc computer science ', '2020', 71.00, '', 1, '2023-04-21 11:48:18', 0, NULL, 0, NULL, 1),
(15735, 12468, '3', 'Bharathidasan University ', '', 'Bsc computer science ', '2022', 87.00, '', 1, '2023-04-21 12:53:12', 0, NULL, 0, NULL, 1),
(15736, 12468, '2', 'SBIOA matriculation school ', '', '', '2018', 75.00, '', 1, '2023-04-21 12:53:39', 0, NULL, 0, NULL, 1),
(15737, 12468, '1', 'Government higher secondary school madambakkam Chennai ', '', '', '2015', 85.00, '', 1, '2023-04-21 12:54:02', 0, NULL, 0, NULL, 1),
(15738, 12471, '4', 'Annauniversity ', '', 'MBA', '2022', 60.00, '', 1, '2023-04-21 06:22:00', 0, NULL, 0, NULL, 1),
(15739, 12472, '3', 'S.A.Engineering College', '', 'B.E (EEE)', '2021', 80.00, '', 1, '2023-04-22 10:33:12', 0, NULL, 0, NULL, 1),
(15740, 12472, '2', 'Velammal Mat Hr Sec School', '', '', '2017', 85.00, '', 1, '2023-04-22 10:33:42', 0, NULL, 0, NULL, 1),
(15741, 12472, '1', 'Velammal Mat Hr Sec School ', '', '', '2015', 87.00, '', 1, '2023-04-22 10:34:05', 0, NULL, 0, NULL, 1),
(15742, 12470, '3', 'Dr MGR Educational and Research institute ', '', 'BBA', '2022', 8.50, '', 1, '2023-04-22 10:50:47', 0, NULL, 0, NULL, 1),
(15743, 12473, '3', 'Board', '', 'B. Com', '2016', 65.00, '', 1, '2023-04-22 11:41:38', 0, NULL, 0, NULL, 1),
(15744, 12474, '3', 'Bharathidasan University ', '', 'BCA', '2021', 83.00, '', 1, '2023-04-22 11:56:14', 0, NULL, 0, NULL, 1),
(15745, 12475, '3', 'Anna university ', '', 'Bachelor of Engineering (B.E)', '2018', 5.85, '', 1, '2023-04-22 01:09:12', 0, NULL, 0, NULL, 1),
(15746, 12475, '1', 'State board ', '', '', '2013', 70.20, '', 1, '2023-04-22 01:10:46', 0, NULL, 0, NULL, 1),
(15747, 12476, '4', 'Deemed university', '', 'Mca', '2023', 80.00, '', 1, '2023-04-22 01:28:22', 0, NULL, 0, NULL, 1),
(15748, 12476, '3', 'Pondicherry university', '', 'Bca', '2021', 79.00, '', 1, '2023-04-22 01:28:50', 0, NULL, 0, NULL, 1),
(15749, 12476, '2', 'State board', '', '', '2018', 84.00, '', 1, '2023-04-22 01:29:17', 0, NULL, 0, NULL, 1),
(15750, 12476, '1', 'State board', '', '', '2016', 94.00, '', 1, '2023-04-22 01:29:50', 0, NULL, 0, NULL, 1),
(15751, 12478, '3', 'A.V.C college of engineering ', '', 'B Tech it', '2023', 80.00, '', 1, '2023-04-22 06:57:25', 0, NULL, 0, NULL, 1),
(15752, 12480, '3', 'Anna Adarsh college for women ', '', 'Bsc computer science ', '2021', 82.00, '', 1, '2023-04-22 09:36:03', 0, NULL, 0, NULL, 1),
(15753, 12481, '4', 'Gitam deemed university', '', 'B. Com', '2022', 9.50, '', 1, '2023-04-23 09:06:16', 0, NULL, 0, NULL, 1),
(15754, 12482, '3', 'Anna university', '', 'B. E', '2018', 6.63, '', 1, '2023-04-24 10:31:24', 0, NULL, 0, NULL, 1),
(15755, 12483, '4', 'University of Madras ', '', 'MA. HRM', '2022', 77.00, '', 1, '2023-04-24 10:41:10', 0, NULL, 0, NULL, 1),
(15756, 12483, '3', 'University of Madras ', '', 'Bsc., psychology ', '2020', 74.00, '', 1, '2023-04-24 10:50:59', 0, NULL, 0, NULL, 1),
(15757, 12483, '2', 'Board', '', '', '2017', 75.00, '', 1, '2023-04-24 10:51:30', 0, NULL, 0, NULL, 1),
(15758, 12483, '1', 'Board', '', '', '2015', 92.00, '', 1, '2023-04-24 10:51:50', 0, NULL, 0, NULL, 1),
(15759, 12483, '5', 'University of Madras ', '', 'Labour law', '2021', 60.00, '', 1, '2023-04-24 10:52:49', 0, NULL, 0, NULL, 1),
(15760, 12484, '3', 'M.I.E.T engineering college Trichy', '', 'BE mechanical engineering ', '2020', 66.00, '', 1, '2023-04-24 11:03:59', 0, NULL, 0, NULL, 1),
(15761, 12485, '3', 'Anna University ', '', 'BE ', '2022', 71.00, '', 1, '2023-04-24 11:21:35', 0, NULL, 0, NULL, 1),
(15762, 0, '4', 'Anna university ', '', 'MBA ', '2023', 90.00, '', 1, '2023-04-24 11:42:52', 1, '2023-04-24 12:30:06', 0, NULL, 0),
(15763, 12242, '4', 'Anna university ', '', 'MBA HUMAN RESOURCES ', '2023', 90.00, '', 1, '2023-04-24 11:46:43', 0, NULL, 0, NULL, 1),
(15764, 12486, '4', 'University of Chennai', '', 'Msc', '2005', 67.00, '', 1, '2023-04-24 12:05:16', 0, NULL, 0, NULL, 1),
(15765, 12488, '3', 'Thiruvalluvar University ', '', 'Bsc.microbiology', '2022', 85.00, '', 1, '2023-04-24 12:06:59', 0, NULL, 0, NULL, 1),
(15766, 12489, '3', 'Anna university', '', 'B. TECH., IT', '2022', 77.00, '', 1, '2023-04-24 12:30:40', 0, NULL, 0, NULL, 1),
(15767, 12479, '3', 'anna university', '', 'b.e ece', '2020', 63.00, '', 1, '2023-04-24 01:19:01', 0, NULL, 0, NULL, 1),
(15768, 12491, '3', 'Madras University ', '', 'B.A', '2021', 73.70, '', 1, '2023-04-24 01:28:21', 0, NULL, 0, NULL, 1),
(15769, 12490, '3', 'Madras University ', '', 'B.A economics ', '2021', 76.60, '', 1, '2023-04-24 02:07:19', 0, NULL, 0, NULL, 1),
(15770, 12493, '5', 'Anna University ', '', 'It', '2023', 80.00, '', 1, '2023-04-24 04:59:13', 0, NULL, 0, NULL, 1),
(15771, 12494, '4', 'The Gandhigram University ', '', 'PG Dip In Sanitary Inspector ', '2019', 82.00, '', 1, '2023-04-24 05:05:21', 0, NULL, 0, NULL, 1),
(15772, 12494, '3', 'The Madras University ', '', 'Bsc Chemistry ', '2018', 56.00, '', 1, '2023-04-24 05:05:49', 0, NULL, 0, NULL, 1),
(15773, 12494, '2', 'State Board of Tamilnadu ', '', '', '2015', 76.00, '', 1, '2023-04-24 05:06:23', 0, NULL, 0, NULL, 1),
(15774, 12495, '4', 'womens chrstian college', '', 'ma', '2023', 65.00, '', 1, '2023-04-24 06:42:50', 0, NULL, 0, NULL, 1),
(15775, 12495, '3', 'womens chrstian college', '', 'ba', '2021', 50.00, '', 1, '2023-04-24 06:43:59', 0, NULL, 0, NULL, 1),
(15776, 12495, '2', 'state', '', '', '2018', 53.00, '', 1, '2023-04-24 06:45:10', 0, NULL, 0, NULL, 1),
(15777, 12495, '1', 'state', '', '', '2016', 61.00, '', 1, '2023-04-24 06:45:59', 0, NULL, 0, NULL, 1),
(15778, 12496, '3', 'Women\'s Christian College ', '', 'BBA ', '2023', 68.00, '', 1, '2023-04-24 06:49:47', 0, NULL, 0, NULL, 1),
(15779, 12498, '3', 'Manonmaniam sundaranar university ', '', 'B.com', '2022', 74.30, '', 1, '2023-04-24 10:39:59', 0, NULL, 0, NULL, 1),
(15780, 12498, '2', 'Tamilnadu government higher secondary school ', '', 'B.com(cs)', '2019', 48.30, '', 1, '2023-04-24 10:42:57', 0, NULL, 0, NULL, 1),
(15781, 12498, '1', 'Tamilnadu government higher secondary school', '', '', '2017', 58.20, '', 1, '2023-04-24 10:43:31', 0, NULL, 0, NULL, 1),
(15782, 12499, '3', 'University of madras', '', 'B.A. history ', '2021', 68.00, '', 1, '2023-04-25 09:56:41', 0, NULL, 0, NULL, 1),
(15783, 12500, '1', 'State board ', '', '', '2016', 88.00, '', 1, '2023-04-25 11:32:43', 0, NULL, 0, NULL, 1),
(15784, 12500, '3', 'Madras University ', '', 'Bsc ', '2021', 75.00, '', 1, '2023-04-25 11:33:23', 0, NULL, 0, NULL, 1),
(15785, 12504, '3', 'srm university', '', 'bba', '2021', 70.00, '', 1, '2023-04-25 11:35:18', 0, NULL, 0, NULL, 1),
(15786, 12505, '3', 'St.peter\'s University ', '', 'Bachelor of computer applications', '2022', 62.00, '', 1, '2023-04-25 11:46:56', 0, NULL, 0, NULL, 1),
(15787, 12501, '1', 'Board', '', 'B.e', '2016', 92.00, '', 1, '2023-04-25 11:56:54', 1, '2023-04-25 11:57:33', 0, NULL, 0),
(15788, 12501, '1', 'Board', '', '', '2016', 92.00, '', 1, '2023-04-25 11:57:55', 0, NULL, 0, NULL, 1),
(15789, 12501, '2', 'Board', '', '', '2018', 74.00, '', 1, '2023-04-25 11:58:14', 0, NULL, 0, NULL, 1),
(15790, 12501, '3', 'Anna University ', '', 'B.e', '2022', 82.00, '', 1, '2023-04-25 11:58:49', 0, NULL, 0, NULL, 1),
(15791, 12506, '3', 'Dr. M.G.R. Educational and Research Institute ', '', 'B.Tech', '2023', 74.00, '', 1, '2023-04-25 12:25:43', 1, '2023-04-25 12:26:33', 0, NULL, 1),
(15792, 12507, '3', 'thiruvalluvar University ', '', 'bca', '2022', 75.00, '', 1, '2023-04-25 12:59:01', 0, NULL, 0, NULL, 1),
(15793, 12487, '3', 'Madras University ', '', 'Bcom', '2019', 80.00, '', 1, '2023-04-25 03:13:28', 0, NULL, 0, NULL, 1),
(15794, 12511, '3', 'Mar gregorios college of arts and science ', '', 'BBA', '2017', 70.00, '', 1, '2023-04-25 07:25:27', 0, NULL, 0, NULL, 1),
(15795, 12514, '5', 'Thiagarajar Polytechnic College, Salem.', '', 'Diploma', '2023', 92.00, '', 1, '2023-04-26 09:56:00', 0, NULL, 0, NULL, 1),
(15796, 12513, '3', 'Anna University', '', 'B.E', '2016', 75.00, '', 1, '2023-04-26 09:58:34', 0, NULL, 0, NULL, 1),
(15797, 12515, '3', 'Anna University ', '', 'BE. ECE ', '2023', 72.00, '', 1, '2023-04-26 10:21:02', 0, NULL, 0, NULL, 1),
(15798, 12518, '4', 'Anna University ', '', 'MBA', '2017', 63.00, '', 1, '2023-04-26 10:30:00', 0, NULL, 0, NULL, 1),
(15799, 12518, '3', 'Madras University ', '', 'B com commerce ', '2015', 60.00, '', 1, '2023-04-26 10:30:37', 0, NULL, 0, NULL, 1),
(15800, 12518, '2', 'State board ', '', '', '2012', 65.00, '', 1, '2023-04-26 10:31:03', 0, NULL, 0, NULL, 1),
(15801, 12517, '3', 'Madras University ', '', 'Bsc', '2022', 87.00, '', 1, '2023-04-26 10:31:18', 0, NULL, 0, NULL, 1),
(15802, 12518, '1', 'State board ', '', '', '2010', 63.00, '', 1, '2023-04-26 10:31:26', 0, NULL, 0, NULL, 1),
(15803, 12516, '4', 'Madras University ', '', 'MBA ', '2021', 70.00, '', 1, '2023-04-26 11:13:02', 0, NULL, 0, NULL, 1),
(15804, 12512, '2', 'Govt', '', '', '2017', 50.00, '', 1, '2023-04-26 11:36:40', 0, NULL, 0, NULL, 1),
(15805, 12519, '3', 'Mgr University ', '', 'B.com (c/s)', '2022', 65.00, '', 1, '2023-04-26 11:44:16', 0, NULL, 0, NULL, 1),
(15806, 12520, '3', 'Bharathidhasan', '', 'Bsc computer science', '2020', 65.00, '', 1, '2023-04-26 12:03:06', 0, NULL, 0, NULL, 1),
(15807, 11991, '3', 'MIET', '', 'B.com', '2017', 70.00, '', 1, '2023-04-26 01:04:11', 0, NULL, 0, NULL, 1),
(15808, 12521, '1', 'state board ', '', '', '2014', 91.00, '', 1, '2023-04-26 01:38:23', 0, NULL, 0, NULL, 1),
(15809, 12521, '2', 'state board ', '', '', '2016', 67.00, '', 1, '2023-04-26 01:38:52', 0, NULL, 0, NULL, 1),
(15810, 12521, '3', 'anna university ', '', 'b.E - Mechanical engineering ', '2020', 68.00, '', 1, '2023-04-26 01:39:30', 0, NULL, 0, NULL, 1),
(15811, 12522, '4', 'Madras University ', '', 'Mba', '2023', 70.00, '', 1, '2023-04-26 03:40:33', 0, NULL, 0, NULL, 1),
(15812, 12522, '3', 'Chevalier t Thomas Elizabeth college for women ', '', 'B COM ', '2020', 73.50, '', 1, '2023-04-26 03:40:55', 0, NULL, 0, NULL, 1),
(15813, 12522, '2', 'St Anne\'s girl\'s higher secondary school ', '', '', '2017', 83.50, '', 1, '2023-04-26 03:41:13', 0, NULL, 0, NULL, 1),
(15814, 12523, '3', 'Vels institute science and technology Chennai ', '', 'BE computer science ', '2022', 69.00, '', 1, '2023-04-26 04:40:05', 0, NULL, 0, NULL, 1),
(15815, 12525, '3', 'madras university', '', 'bca', '2020', 50.00, '', 1, '2023-04-26 05:15:15', 0, NULL, 0, NULL, 1),
(15816, 12524, '3', 'VISTAS', '', 'BE cSE', '2022', 64.00, '', 1, '2023-04-26 05:41:41', 0, NULL, 0, NULL, 1),
(15817, 12526, '3', 'University ', '', 'B.com', '2009', 68.00, '', 1, '2023-04-26 07:26:25', 0, NULL, 0, NULL, 1),
(15818, 12527, '3', 'anna  university', '', 'electrical and electronic emgineering', '2021', 78.00, '', 1, '2023-04-27 12:24:38', 0, NULL, 0, NULL, 1),
(15819, 12527, '5', 'dote', '', 'deee', '2018', 80.00, '', 1, '2023-04-27 12:25:19', 0, NULL, 0, NULL, 1),
(15820, 12527, '2', 'state board', '', '', '2016', 60.00, '', 1, '2023-04-27 12:25:47', 0, NULL, 0, NULL, 1),
(15821, 12527, '1', 'stateboard', '', '', '2014', 80.00, '', 1, '2023-04-27 12:26:12', 0, NULL, 0, NULL, 1),
(15822, 12528, '3', 'Vel tech multi tech Dr sakuntala engineering College autonomous ', '', 'B.e', '2023', 7.80, '', 1, '2023-04-27 07:23:20', 0, NULL, 0, NULL, 1),
(15823, 12529, '3', 'Manonmaniam sundaranar university', '', 'Bsc', '2023', 83.00, '', 1, '2023-04-27 10:05:53', 0, NULL, 0, NULL, 1),
(15824, 12530, '3', 'Bharathiar University ', '', 'BSc Information Technology ', '2022', 75.00, '', 1, '2023-04-27 10:10:44', 0, NULL, 0, NULL, 1),
(15825, 12531, '4', 'University of Madras ', '', 'mBA HR', '2021', 72.00, '', 1, '2023-04-27 10:30:15', 0, NULL, 0, NULL, 1),
(15826, 12531, '4', 'University of madras', '', 'MBA HR', '2021', 72.00, '', 1, '2023-04-27 10:30:43', 0, NULL, 0, NULL, 1),
(15827, 12532, '4', 'University of madras', '', 'MSC IT', '2023', 93.00, '', 1, '2023-04-27 10:53:30', 0, NULL, 0, NULL, 1),
(15828, 12532, '4', 'University of madras', '', 'MSC IT', '2023', 93.00, '', 1, '2023-04-27 10:54:50', 1, '2023-04-27 10:55:03', 0, NULL, 0),
(15829, 12532, '3', 'University of Madras', '', 'COMPUTER APPLICATION', '2020', 75.00, '', 1, '2023-04-27 10:56:41', 0, NULL, 0, NULL, 1),
(15830, 12533, '3', 'Anna University ', '', 'Bachelor of engineering ', '2020', 7.50, '', 1, '2023-04-27 12:05:43', 0, NULL, 0, NULL, 1),
(15831, 12534, '3', 'Saveetha Engineering College', '', 'Bachelors of Engineering', '2020', 76.10, '', 1, '2023-04-27 12:06:03', 0, NULL, 0, NULL, 1),
(15832, 12536, '3', 'Vels University ', '', 'B.com Computer application', '2021', 78.00, '', 1, '2023-04-27 12:22:39', 0, NULL, 0, NULL, 1),
(15833, 12536, '4', 'Madras University ', '', 'MBA hr', '2023', 80.00, '', 1, '2023-04-27 12:23:33', 0, NULL, 0, NULL, 1),
(15834, 12537, '4', 'Hindustan institute of technology and science ', '', 'MCA ', '2022', 83.00, '', 1, '2023-04-27 12:37:35', 0, NULL, 0, NULL, 1),
(15835, 12535, '3', 'anna university', '', 'b.e mech', '2020', 69.00, '', 1, '2023-04-27 12:51:19', 0, NULL, 0, NULL, 1),
(15836, 12539, '4', 'Sathyabhama institute of science and technology ', '', 'B.E', '2022', 6.52, '', 1, '2023-04-27 12:52:16', 0, NULL, 0, NULL, 1),
(15837, 12541, '3', 'Anna University ', '', 'B.E', '2020', 70.00, '', 1, '2023-04-27 05:45:56', 0, NULL, 0, NULL, 1),
(15838, 12541, '2', 'State ', '', '', '2016', 90.00, '', 1, '2023-04-27 05:46:21', 0, NULL, 0, NULL, 1),
(15839, 12541, '1', 'State ', '', '', '2014', 95.00, '', 1, '2023-04-27 05:46:35', 0, NULL, 0, NULL, 1),
(15840, 12542, '3', 'Anna university ', '', 'B.Tech', '2023', 8.60, '', 1, '2023-04-28 08:07:24', 0, NULL, 0, NULL, 1),
(15841, 12544, '5', 'bharath university ', '', 'diploma in mechanical', '2017', 69.00, '', 1, '2023-04-28 11:35:18', 0, NULL, 0, NULL, 1),
(15842, 12545, '1', 'State board', '', '', '2011', 77.00, '', 1, '2023-04-28 12:16:02', 0, NULL, 0, NULL, 1),
(15843, 12545, '2', 'State board', '', '', '2013', 58.00, '', 1, '2023-04-28 12:16:25', 0, NULL, 0, NULL, 1),
(15844, 12545, '5', 'DOTE', '', '', '2017', 71.00, '', 1, '2023-04-28 12:16:52', 0, NULL, 0, NULL, 1),
(15845, 12546, '3', 'Anna University ', '', 'BE-MECHANICAL ENGINEERING ', '2019', 64.00, '', 1, '2023-04-28 12:17:23', 0, NULL, 0, NULL, 1),
(15846, 12550, '3', 'hindusthan college of engineering and technology', '', 'b.tech information technology ', '2022', 73.00, '', 1, '2023-04-28 12:51:22', 1, '2023-04-28 12:55:06', 0, NULL, 1),
(15847, 12550, '2', 'skv higher secondary school', '', '', '2018', 64.00, '', 1, '2023-04-28 12:53:04', 1, '2023-04-28 12:53:48', 0, NULL, 0),
(15848, 12552, '3', 'kumaraguru college technology', '', 'b e', '2022', 8.65, '', 1, '2023-04-28 12:57:55', 0, NULL, 0, NULL, 1),
(15849, 12551, '4', 'University ', '', 'MSc computer  science', '2023', 75.00, '', 1, '2023-04-28 01:37:56', 0, NULL, 0, NULL, 1),
(15850, 12548, '3', 'University ', '', 'B.Tech', '2023', 80.00, '', 1, '2023-04-28 01:54:25', 0, NULL, 0, NULL, 1),
(15851, 12548, '1', 'State Board ', '', '', '2017', 81.00, '', 1, '2023-04-28 01:55:05', 0, NULL, 0, NULL, 1),
(15852, 12548, '2', 'State Board ', '', '', '2019', 67.00, '', 1, '2023-04-28 01:55:22', 0, NULL, 0, NULL, 1),
(15853, 12555, '3', 'Saveetha Engineering College ', '', 'B.E', '2022', 7.71, '', 1, '2023-04-28 03:19:20', 0, NULL, 0, NULL, 1),
(15854, 12559, '3', 'Anna University ', '', 'B.Tech Information Technology ', '2023', 8.70, '', 1, '2023-04-28 06:07:57', 0, NULL, 0, NULL, 1),
(15855, 12560, '3', 'Anna University ', '', 'B.Tech IT', '2023', 87.00, '', 1, '2023-04-28 06:14:50', 0, NULL, 0, NULL, 1),
(15856, 12561, '3', 'Anna University ', '', 'B.Tech', '2023', 82.00, '', 1, '2023-04-28 06:28:03', 0, NULL, 0, NULL, 1),
(15857, 12562, '1', 'State board', '', '', '2016', 86.00, '', 1, '2023-04-28 06:30:51', 0, NULL, 0, NULL, 1),
(15858, 12562, '2', 'State board ', '', '', '2018', 69.00, '', 1, '2023-04-28 06:31:12', 0, NULL, 0, NULL, 1),
(15859, 12562, '3', 'Anna University ', '', 'BE', '2022', 74.00, '', 1, '2023-04-28 06:31:33', 0, NULL, 0, NULL, 1),
(15860, 12563, '3', 'Anna University Chennai  , PavaiCollegeOfTechnology-Namakkal ', '', 'Be-Mechanical engineering ', '2020', 70.00, '', 1, '2023-04-29 07:22:49', 0, NULL, 0, NULL, 1),
(15861, 12540, '4', 'SASTRA DEEMED UNIVERSITY ', '', 'Msc.physics', '2022', 71.00, '', 1, '2023-04-29 10:07:46', 0, NULL, 0, NULL, 1),
(15862, 12540, '3', 'Bishop Heber college', '', 'Bsc.physics', '2020', 74.00, '', 1, '2023-04-29 10:08:29', 0, NULL, 0, NULL, 1),
(15863, 12540, '2', 'Lakshmi Matriculation higher secondary school ', '', '', '2017', 80.00, '', 1, '2023-04-29 10:09:18', 0, NULL, 0, NULL, 1),
(15864, 12540, '1', 'Lakshmi Matriculation higher secondary school ', '', '', '2015', 96.00, '', 1, '2023-04-29 10:09:50', 0, NULL, 0, NULL, 1),
(15865, 12565, '3', 'Anna University ', '', 'B.E. Computer Science and Engineering ', '2022', 79.50, '', 1, '2023-04-29 10:47:46', 0, NULL, 0, NULL, 1),
(15866, 12566, '3', 'Anna university', '', 'B. Tech', '2022', 81.00, '', 1, '2023-04-29 11:01:41', 0, NULL, 0, NULL, 1),
(15867, 12566, '2', 'State board of Tamil nadu', '', '', '2018', 82.00, '', 1, '2023-04-29 11:02:27', 0, NULL, 0, NULL, 1),
(15868, 12567, '2', 'State board ', '', '', '2020', 60.00, '', 1, '2023-04-29 11:07:23', 0, NULL, 0, NULL, 1),
(15869, 12571, '3', 'Dr.Mgr Educational and research institute ', '', 'B.com Accounting and finance ', '2023', 75.00, '', 1, '2023-04-29 11:19:42', 0, NULL, 0, NULL, 1),
(15870, 12570, '3', 'Madras university ', '', 'B. Com ( corporate Seceratryship)', '2023', 61.00, '', 1, '2023-04-29 11:20:13', 0, NULL, 0, NULL, 1),
(15871, 12569, '3', 'Dr MGR UNIVERSITY ', '', 'Bcom General ', '2023', 85.00, '', 1, '2023-04-29 11:20:39', 0, NULL, 0, NULL, 1),
(15872, 12568, '3', 'Dr.MGR University ', '', 'B.com (General)', '2023', 85.00, '', 1, '2023-04-29 11:20:42', 1, '2023-04-29 11:20:53', 0, NULL, 1),
(15873, 12573, '3', 'University of madras', '', 'BCA ', '2021', 75.00, '', 1, '2023-04-29 11:47:59', 0, NULL, 0, NULL, 1),
(15874, 12572, '3', 'Madras University ', '', 'Bca', '2021', 89.00, '', 1, '2023-04-29 11:59:47', 0, NULL, 0, NULL, 1),
(15875, 12574, '4', 'Anna University ', '', 'Mca', '2022', 88.00, '', 1, '2023-04-29 01:16:44', 0, NULL, 0, NULL, 1),
(15876, 12575, '4', 'Anna university', '', 'Mca', '2022', 80.00, '', 1, '2023-04-29 01:19:24', 0, NULL, 0, NULL, 1),
(15877, 12576, '3', 'Madras University ', '', 'B.com', '2016', 84.00, '', 1, '2023-04-29 04:00:17', 0, NULL, 0, NULL, 1),
(15878, 12577, '5', 'State board', '', 'Civil engineering', '2017', 69.00, '', 1, '2023-04-29 04:12:18', 0, NULL, 0, NULL, 1),
(15879, 12579, '3', 'sacred heart of college tirupattur ', '', 'bba', '2022', 60.00, '', 1, '2023-04-30 03:54:29', 0, NULL, 0, NULL, 1),
(15880, 12580, '3', 'Madras University ', '', 'BBA', '2022', 64.80, '', 1, '2023-04-30 05:19:02', 0, NULL, 0, NULL, 1),
(15881, 12581, '3', 'Sv University Tirupati', '', 'B.com', '2020', 80.00, '', 1, '2023-05-02 06:41:11', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(15882, 12583, '1', 'State board ', '', '', '2015', 81.00, '', 1, '2023-05-02 10:16:01', 0, NULL, 0, NULL, 1),
(15883, 12583, '2', 'State board ', '', '', '2017', 70.00, '', 1, '2023-05-02 10:16:27', 0, NULL, 0, NULL, 1),
(15884, 12583, '3', 'Madras University ', '', 'BCA computer applications ', '2020', 7.30, '', 1, '2023-05-02 10:16:50', 0, NULL, 0, NULL, 1),
(15885, 12584, '3', 'Anna university', '', 'BE', '2020', 67.00, '', 1, '2023-05-02 10:18:05', 0, NULL, 0, NULL, 1),
(15886, 12585, '3', 'bsc', '', 'computer Science ', '2023', 3.50, '', 1, '2023-05-02 10:28:38', 0, NULL, 0, NULL, 1),
(15887, 12587, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 80.00, '', 1, '2023-05-02 10:32:11', 0, NULL, 0, NULL, 1),
(15888, 12588, '4', 'university of madras', '', 'mca', '2022', 85.00, '', 1, '2023-05-02 10:34:47', 0, NULL, 0, NULL, 1),
(15889, 12589, '3', 'Anna University ', '', 'B.E', '2023', 8.40, '', 1, '2023-05-02 10:37:53', 0, NULL, 0, NULL, 1),
(15890, 12592, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 85.00, '', 1, '2023-05-02 10:38:43', 0, NULL, 0, NULL, 1),
(15891, 12590, '3', 'Anna University ', '', 'Bcs.computer science ', '2023', 81.11, '', 1, '2023-05-02 10:49:13', 0, NULL, 0, NULL, 1),
(15892, 12586, '3', 'madras University ', '', 'bsc computer science', '2023', 8.00, '', 1, '2023-05-02 11:00:05', 0, NULL, 0, NULL, 1),
(15893, 12593, '3', 'Madras University ', '', 'Bsc. Computer Science ', '2023', 79.00, '', 1, '2023-05-02 11:55:06', 0, NULL, 0, NULL, 1),
(15894, 12594, '3', 'Anna university', '', 'BE', '2021', 70.00, '', 1, '2023-05-02 12:01:20', 0, NULL, 0, NULL, 1),
(15895, 12596, '4', 'Bharathidhasan University ', '', 'MCA', '2022', 76.00, '', 1, '2023-05-02 12:06:12', 0, NULL, 0, NULL, 1),
(15896, 12598, '3', 'Dr.Mahalingam College Of Engineering And Technology Pollachi ', '', 'Bachelor\'s Of Mechanical  Engineering ', '2021', 73.00, '', 1, '2023-05-02 12:06:29', 0, NULL, 0, NULL, 1),
(15897, 12597, '3', 'madras university', '', 'b.com Computer Application ', '2021', 79.00, '', 1, '2023-05-02 12:08:11', 0, NULL, 0, NULL, 1),
(15898, 12582, '5', 'Anna University ', '', 'DCSE', '2019', 73.00, '', 1, '2023-05-02 12:11:50', 0, NULL, 0, NULL, 1),
(15899, 12591, '3', 'p.s.r engg college', '', 'b.e', '2023', 74.00, '', 1, '2023-05-02 12:38:42', 0, NULL, 0, NULL, 1),
(15900, 12600, '3', 'Anna university', '', 'B.tech/IT', '2020', 67.00, '', 1, '2023-05-02 12:56:51', 0, NULL, 0, NULL, 1),
(15901, 12595, '3', 'Veltech', '', 'Be', '2020', 79.00, '', 1, '2023-05-02 12:59:45', 0, NULL, 0, NULL, 1),
(15902, 12601, '3', 'Utkal university', '', 'B. Com', '2014', 48.00, '', 1, '2023-05-02 01:12:40', 0, NULL, 0, NULL, 1),
(15903, 12602, '3', 'Pre University Education Karnataka ', '', 'PUC', '0002', 56.00, '', 1, '2023-05-02 01:42:37', 0, NULL, 0, NULL, 1),
(15904, 12602, '1', 'Pre University Education Karnataka ', '', 'SSLC', '0014', 56.00, '', 1, '2023-05-02 01:43:36', 0, NULL, 0, NULL, 1),
(15905, 12603, '3', 'Bharathidasan university', '', 'B. Com, (C.A) ', '2021', 78.00, '', 1, '2023-05-02 06:34:38', 1, '2023-05-02 06:37:01', 0, NULL, 0),
(15906, 12603, '3', 'Bharathidasan university', '', 'B. Com', '2021', 78.00, '', 1, '2023-05-02 06:38:55', 0, NULL, 0, NULL, 1),
(15907, 12605, '4', 'Bharthidsan University -Thrichy', '', 'Msc., Computer Science ', '2023', 86.00, '', 1, '2023-05-03 06:28:59', 0, NULL, 0, NULL, 1),
(15908, 12606, '3', 'Madras University', '', 'BCA', '2022', 69.10, '', 1, '2023-05-03 09:21:50', 0, NULL, 0, NULL, 1),
(15909, 12606, '2', 'State Board', '', '', '2018', 44.60, '', 1, '2023-05-03 09:22:45', 0, NULL, 0, NULL, 1),
(15910, 12606, '1', 'State Board', '', '', '2016', 61.80, '', 1, '2023-05-03 09:23:14', 0, NULL, 0, NULL, 1),
(15911, 12607, '3', 'Loyola -ICAM', '', 'BE', '2021', 74.00, '', 1, '2023-05-03 11:58:23', 0, NULL, 0, NULL, 1),
(15912, 12608, '3', 'Anna university, trichy', '', 'BE, mechanical engineering', '2022', 72.00, '', 1, '2023-05-03 12:00:56', 0, NULL, 0, NULL, 1),
(15913, 12609, '3', 'Bharathidasan', '', 'BE', '1991', 58.00, '', 1, '2023-05-03 12:23:46', 0, NULL, 0, NULL, 1),
(15914, 12610, '4', 'Pondicherry ', '', 'MBA ', '2019', 68.00, '', 1, '2023-05-03 12:24:25', 0, NULL, 0, NULL, 1),
(15915, 12613, '3', 'Anna university ', '', 'BE', '2021', 83.00, '', 1, '2023-05-03 12:29:47', 0, NULL, 0, NULL, 1),
(15916, 12612, '4', 'Anna university ', '', 'Bachelor of Engineering ', '2021', 8.50, '', 1, '2023-05-03 12:43:29', 0, NULL, 0, NULL, 1),
(15917, 12615, '4', 'Anna University ', '', 'Msc', '2016', 7.90, '', 1, '2023-05-03 12:57:32', 0, NULL, 0, NULL, 1),
(15918, 12615, '4', 'Anna University ', '', 'Msc(Software Engineering)', '2016', 7.90, '', 1, '2023-05-03 12:58:37', 0, NULL, 0, NULL, 1),
(15919, 12616, '5', 'AM Jain collage ', '', 'B.com', '2018', 75.00, '', 1, '2023-05-03 01:50:21', 0, NULL, 0, NULL, 1),
(15920, 12617, '3', 'Thiruvalluvar University', '', 'BCA', '2019', 7.82, '', 1, '2023-05-03 02:33:08', 0, NULL, 0, NULL, 1),
(15921, 12618, '3', 'Madras university', '', 'B. Com', '2017', 50.00, '', 1, '2023-05-03 03:17:03', 0, NULL, 0, NULL, 1),
(15922, 12619, '3', 'Anna University ', '', 'B.E(Computer science and Engineering)', '2019', 6.93, '', 1, '2023-05-03 04:15:48', 0, NULL, 0, NULL, 1),
(15923, 12620, '1', 'state board', '', '', '2014', 93.00, '', 1, '2023-05-03 05:15:58', 0, NULL, 0, NULL, 1),
(15924, 12620, '2', 'state board', '', '', '2016', 84.00, '', 1, '2023-05-03 05:16:25', 0, NULL, 0, NULL, 1),
(15925, 12620, '3', 'anna university', '', 'b.tech', '2020', 75.00, '', 1, '2023-05-03 05:17:15', 0, NULL, 0, NULL, 1),
(15926, 12624, '3', 'Loyola ', '', 'B.A.ECONOMICS', '2022', 6.00, '', 1, '2023-05-04 01:29:18', 0, NULL, 0, NULL, 1),
(15927, 12626, '4', 'Periyar university', '', 'MSc computer science', '2022', 7.40, '', 1, '2023-05-04 10:11:34', 0, NULL, 0, NULL, 1),
(15928, 12630, '4', 'Anna University ', '', 'MCA', '2022', 89.00, '', 1, '2023-05-04 10:28:07', 0, NULL, 0, NULL, 1),
(15929, 12629, '4', 'Anna University ', '', 'MCA ', '2022', 87.00, '', 1, '2023-05-04 10:28:08', 0, NULL, 0, NULL, 1),
(15930, 12630, '3', 'Periyar University ', '', 'BSc Computer science', '2020', 76.00, '', 1, '2023-05-04 10:29:46', 0, NULL, 0, NULL, 1),
(15931, 12630, '2', 'State board ', '', '', '2017', 63.00, '', 1, '2023-05-04 10:30:25', 0, NULL, 0, NULL, 1),
(15932, 12629, '3', 'Periyar University ', '', 'Bsc computer science ', '2020', 75.00, '', 1, '2023-05-04 10:30:32', 0, NULL, 0, NULL, 1),
(15933, 12628, '4', 'Bharathidasan University ', '', 'MCA', '2022', 85.00, '', 1, '2023-05-04 10:31:02', 0, NULL, 0, NULL, 1),
(15934, 12630, '1', 'State board ', '', '', '2015', 83.00, '', 1, '2023-05-04 10:31:22', 0, NULL, 0, NULL, 1),
(15935, 12629, '2', 'State board ', '', '', '2017', 63.00, '', 1, '2023-05-04 10:31:23', 0, NULL, 0, NULL, 1),
(15936, 12629, '1', 'State board ', '', '', '2015', 87.00, '', 1, '2023-05-04 10:31:56', 0, NULL, 0, NULL, 1),
(15937, 12628, '3', 'Bharathidasan University ', '', 'BCA', '2020', 75.00, '', 1, '2023-05-04 10:32:06', 0, NULL, 0, NULL, 1),
(15938, 12631, '4', 'BHARATHIDASAN UNIVERSITY ', '', 'MCA', '2022', 90.00, '', 1, '2023-05-04 10:32:22', 0, NULL, 0, NULL, 1),
(15939, 12628, '2', 'State Board ', '', '', '2017', 60.00, '', 1, '2023-05-04 10:33:12', 0, NULL, 0, NULL, 1),
(15940, 12631, '3', 'BHARATHIDASAN ', '', 'B.SC(COMPUTER SCIENCE)', '2020', 70.00, '', 1, '2023-05-04 10:33:13', 0, NULL, 0, NULL, 1),
(15941, 12628, '1', 'State Board ', '', '', '2015', 75.00, '', 1, '2023-05-04 10:33:59', 0, NULL, 0, NULL, 1),
(15942, 12631, '2', 'STATE BOARD ', '', '', '2017', 60.00, '', 1, '2023-05-04 10:34:14', 0, NULL, 0, NULL, 1),
(15943, 12631, '1', 'STATE BOARD ', '', '', '2015', 80.00, '', 1, '2023-05-04 10:34:44', 0, NULL, 0, NULL, 1),
(15944, 12627, '4', 'Bharathidasan University ', '', 'MCA', '2022', 87.00, '', 1, '2023-05-04 10:36:52', 0, NULL, 0, NULL, 1),
(15945, 12632, '3', 'Mother Teresa women\'s university', '', 'Bca', '2022', 76.00, '', 1, '2023-05-04 10:37:14', 0, NULL, 0, NULL, 1),
(15946, 12627, '3', 'Bharathidasan University ', '', 'BCA', '2020', 71.40, '', 1, '2023-05-04 10:37:16', 0, NULL, 0, NULL, 1),
(15947, 12627, '2', 'State board ', '', '', '2017', 65.00, '', 1, '2023-05-04 10:37:42', 0, NULL, 0, NULL, 1),
(15948, 12627, '1', 'State board ', '', '', '2015', 74.00, '', 1, '2023-05-04 10:38:03', 0, NULL, 0, NULL, 1),
(15949, 12632, '1', 'Government higher secondary school', '', '', '2019', 74.00, '', 1, '2023-05-04 10:38:12', 0, NULL, 0, NULL, 1),
(15950, 12632, '2', 'Government secondary school', '', '', '2017', 86.00, '', 1, '2023-05-04 10:38:44', 0, NULL, 0, NULL, 1),
(15951, 12633, '3', 'Loyola college ', '', 'BA', '2020', 55.00, '', 1, '2023-05-04 10:40:26', 0, NULL, 0, NULL, 1),
(15952, 12634, '3', 'Bharathidhasan University ', '', 'BCA- Computer Application ', '2022', 7.50, '', 1, '2023-05-04 11:24:02', 0, NULL, 0, NULL, 1),
(15953, 12635, '3', 'Thiruvalluvar university ', '', 'Computer application ', '2018', 79.00, '', 1, '2023-05-04 11:40:05', 0, NULL, 0, NULL, 1),
(15954, 12636, '3', 'Anna University ', '', 'B.E MECHANICAL ', '2022', 80.00, '', 1, '2023-05-04 11:49:22', 0, NULL, 0, NULL, 1),
(15955, 12636, '2', 'Tamil Nadu State board ', '', '', '2018', 84.00, '', 1, '2023-05-04 11:50:19', 0, NULL, 0, NULL, 1),
(15956, 12636, '1', 'Tamil Nadu State board ', '', '', '2016', 96.00, '', 1, '2023-05-04 11:50:37', 0, NULL, 0, NULL, 1),
(15957, 12637, '3', 'panimalar Engineering college ', '', 'B.E ECE', '2022', 78.00, '', 1, '2023-05-04 12:04:04', 0, NULL, 0, NULL, 1),
(15958, 12637, '2', 'tamil Nadu State board ', '', '', '2018', 76.00, '', 1, '2023-05-04 12:04:35', 0, NULL, 0, NULL, 1),
(15959, 12637, '1', 'Tamil Nadu State board ', '', '', '2016', 92.00, '', 1, '2023-05-04 12:05:06', 0, NULL, 0, NULL, 1),
(15960, 12638, '4', 'Pondicherry university ', '', 'MBA', '2016', 53.00, '', 1, '2023-05-04 01:47:36', 0, NULL, 0, NULL, 1),
(15961, 12639, '4', 'University of Madras ', '', 'MSc Computer Science and Technology ', '2023', 84.00, '', 1, '2023-05-04 02:18:44', 0, NULL, 0, NULL, 1),
(15962, 12640, '2', 'Municipal girls higer secondary school', '', '', '2014', 80.00, '', 1, '2023-05-04 04:27:45', 0, NULL, 0, NULL, 1),
(15963, 12642, '4', 'Anna University', '', 'MBA', '2015', 70.00, '', 1, '2023-05-04 06:12:36', 0, NULL, 0, NULL, 1),
(15964, 12643, '3', 'Bangalore University ', '', 'BA (journalism, Psychology and English)', '2018', 64.60, '', 1, '2023-05-04 08:02:22', 0, NULL, 0, NULL, 1),
(15965, 12645, '4', 'University of Madras ', '', 'MCA', '2020', 81.00, '', 1, '2023-05-05 10:02:28', 0, NULL, 0, NULL, 1),
(15966, 12646, '1', 'State Board ', '', 'BCA ', '2016', 83.00, '', 1, '2023-05-05 10:28:15', 1, '2023-05-05 10:29:10', 0, NULL, 0),
(15967, 12646, '2', 'State Board ', '', '', '2018', 54.00, '', 1, '2023-05-05 10:29:26', 0, NULL, 0, NULL, 1),
(15968, 12646, '3', 'Kmg College of Arts and sciences ', '', 'BCA ', '2021', 63.00, '', 1, '2023-05-05 10:29:53', 0, NULL, 0, NULL, 1),
(15969, 12646, '1', 'State Board ', '', '', '2016', 83.00, '', 1, '2023-05-05 10:30:33', 0, NULL, 0, NULL, 1),
(15970, 12648, '3', 'Anna University ', '', 'B. E', '2017', 68.00, '', 1, '2023-05-05 10:59:25', 0, NULL, 0, NULL, 1),
(15971, 12648, '2', 'Government Boys Higher Secondary School ', '', '', '2013', 77.58, '', 1, '2023-05-05 11:01:01', 0, NULL, 0, NULL, 1),
(15972, 12625, '3', 'Madras University ', '', 'B.com commerce ', '2021', 76.00, '', 1, '2023-05-05 11:14:39', 0, NULL, 0, NULL, 1),
(15973, 12650, '3', 'Stella Maris College, Chennai', '', 'B. COM GENERAL', '2023', 69.00, '', 1, '2023-05-05 11:14:59', 0, NULL, 0, NULL, 1),
(15974, 12649, '3', 'Madras University Chennai', '', 'B.com commerce', '2021', 65.00, '', 1, '2023-05-05 11:15:10', 0, NULL, 0, NULL, 1),
(15975, 12651, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2016', 6.70, '', 1, '2023-05-05 12:02:01', 0, NULL, 0, NULL, 1),
(15976, 12653, '3', 'Sri jayaram Institute of engineering', '', 'BE', '2019', 75.00, '', 1, '2023-05-05 12:02:02', 0, NULL, 0, NULL, 1),
(15977, 12651, '2', 'State board', '', '', '2012', 65.50, '', 1, '2023-05-05 12:02:17', 0, NULL, 0, NULL, 1),
(15978, 12651, '1', 'State Board ', '', '', '2010', 82.00, '', 1, '2023-05-05 12:02:36', 0, NULL, 0, NULL, 1),
(15979, 12652, '3', 'Madras University ', '', 'Bcom ', '2020', 65.00, '', 1, '2023-05-05 12:08:15', 0, NULL, 0, NULL, 1),
(15980, 12655, '3', 'University ', '', 'B.sc. Physics ', '2023', 80.00, '', 1, '2023-05-05 01:14:45', 0, NULL, 0, NULL, 1),
(15981, 12656, '2', 'National star matric higher sec school', '', '', '2009', 70.00, '', 1, '2023-05-05 01:21:10', 0, NULL, 0, NULL, 1),
(15982, 12657, '1', 'Kendriya Vidyalaya Anna Nagar ', '', '', '2015', 9.20, '', 1, '2023-05-05 01:24:38', 0, NULL, 0, NULL, 1),
(15983, 12657, '2', 'Kendriya Vidyalaya Anna Nagar ', '', '', '2017', 79.00, '', 1, '2023-05-05 01:25:34', 0, NULL, 0, NULL, 1),
(15984, 12660, '5', 'State board', '', 'Diploma in computer engineering', '2018', 64.00, '', 1, '2023-05-05 05:08:35', 0, NULL, 0, NULL, 1),
(15985, 12662, '4', 'Prist University ', '', 'B.Tech', '2019', 64.00, '', 1, '2023-05-05 10:40:55', 0, NULL, 0, NULL, 1),
(15986, 12662, '4', 'Prist University ', '', 'B.tech', '2019', 64.00, '', 1, '2023-05-05 10:45:49', 1, '2023-05-05 10:45:57', 0, NULL, 0),
(15987, 12664, '3', 'Board', '', 'B.Sc ', '2023', 78.00, '', 1, '2023-05-06 10:16:18', 0, NULL, 0, NULL, 1),
(15988, 12663, '3', 'University ', '', 'Bsc physics ', '2023', 68.00, '', 1, '2023-05-06 10:18:07', 0, NULL, 0, NULL, 1),
(15989, 12666, '3', 'Sona college of technology', '', 'Bachelore of engineering in mechanical', '2021', 78.00, '', 1, '2023-05-06 10:38:11', 0, NULL, 0, NULL, 1),
(15990, 12666, '2', 'Tamilnadu state board ', '', '', '2017', 88.00, '', 1, '2023-05-06 10:41:57', 0, NULL, 0, NULL, 1),
(15991, 12666, '1', 'Tamilnadu state board', '', '', '2015', 93.00, '', 1, '2023-05-06 10:42:26', 0, NULL, 0, NULL, 1),
(15992, 12665, '3', 'Madras University ', '', 'B.com', '2019', 71.00, '', 1, '2023-05-06 10:43:33', 0, NULL, 0, NULL, 1),
(15993, 12665, '2', 'Tamilnadu State board', '', '', '2016', 67.00, '', 1, '2023-05-06 10:44:26', 0, NULL, 0, NULL, 1),
(15994, 12665, '1', 'Tamilnadu State board ', '', '', '2014', 74.00, '', 1, '2023-05-06 10:45:03', 0, NULL, 0, NULL, 1),
(15995, 12667, '3', 'Anna university', '', 'BE', '2022', 78.00, '', 1, '2023-05-06 10:47:30', 1, '2023-05-06 10:47:40', 0, NULL, 0),
(15996, 12667, '1', 'State board of Tamilnadu', '', '', '2016', 92.00, '', 1, '2023-05-06 10:48:11', 0, NULL, 0, NULL, 1),
(15997, 12667, '2', 'State board of Tamilnadu', '', '', '2018', 85.00, '', 1, '2023-05-06 10:48:31', 0, NULL, 0, NULL, 1),
(15998, 12667, '3', 'Anna university', '', 'BE/ECE', '2022', 78.00, '', 1, '2023-05-06 10:49:15', 0, NULL, 0, NULL, 1),
(15999, 12671, '2', 'State board', '', '', '2008', 60.00, '', 1, '2023-05-06 10:59:13', 0, NULL, 0, NULL, 1),
(16000, 12668, '3', 'madras university ', '', 'b.com', '2023', 85.00, '', 1, '2023-05-06 11:03:54', 0, NULL, 0, NULL, 1),
(16001, 12669, '3', 'Anna University ', '', 'B.E ', '2023', 8.10, '', 1, '2023-05-06 11:09:38', 0, NULL, 0, NULL, 1),
(16002, 12670, '3', 'Anna University', '', 'B.E', '2023', 7.50, '', 1, '2023-05-06 11:11:18', 0, NULL, 0, NULL, 1),
(16003, 12674, '4', 'Madras University ', '', 'Mba', '2022', 78.00, '', 1, '2023-05-06 11:51:11', 0, NULL, 0, NULL, 1),
(16004, 12674, '3', 'Madras University ', '', 'B.com', '2019', 63.00, '', 1, '2023-05-06 11:52:01', 0, NULL, 0, NULL, 1),
(16005, 12674, '2', 'Gvt hr secondary school ', '', '', '2016', 58.00, '', 1, '2023-05-06 11:53:25', 0, NULL, 0, NULL, 1),
(16006, 12674, '1', 'Gvt hr secondary school ', '', '', '2015', 63.00, '', 1, '2023-05-06 11:54:33', 0, NULL, 0, NULL, 1),
(16007, 12672, '3', 'Anna University ', '', 'BE', '2020', 6.90, '', 1, '2023-05-06 11:58:36', 0, NULL, 0, NULL, 1),
(16008, 12673, '3', 'Anna University ', '', 'BE', '2021', 7.50, '', 1, '2023-05-06 12:04:12', 0, NULL, 0, NULL, 1),
(16009, 12675, '3', 'Anna university ', '', 'BE ', '2018', 65.00, '', 1, '2023-05-06 12:23:15', 0, NULL, 0, NULL, 1),
(16010, 12676, '3', 'anna univer ', '', 'be-cse', '2019', 68.00, '', 1, '2023-05-06 12:24:14', 0, NULL, 0, NULL, 1),
(16011, 12677, '3', 'Agurchand manmull Jain college ', '', 'Bsc psychology ', '2021', 64.00, '', 1, '2023-05-06 12:30:05', 0, NULL, 0, NULL, 1),
(16012, 12677, '2', 'Chennai girls higher secondary school ', '', '', '2018', 65.00, '', 1, '2023-05-06 12:30:33', 0, NULL, 0, NULL, 1),
(16013, 12682, '4', 'Bharathidhasan university ', '', 'MBA', '2024', 71.00, '', 1, '2023-05-07 10:58:36', 0, NULL, 0, NULL, 1),
(16014, 12685, '3', 'Dr Babasaheb Ambedkar technological University lonere ', '', 'B.Tech', '2023', 7.06, '', 1, '2023-05-08 09:32:30', 0, NULL, 0, NULL, 1),
(16015, 12685, '2', 'Pratishthan mahavidyalaya paithan ', '', '', '2019', 67.56, '', 1, '2023-05-08 09:33:00', 0, NULL, 0, NULL, 1),
(16016, 12685, '1', 'Sahakar maharshi marautiraoji ghule patil school vijaypur ', '', '', '2017', 73.59, '', 1, '2023-05-08 09:33:21', 0, NULL, 0, NULL, 1),
(16017, 12686, '3', 'NPR GROUP OF INSTITUTION ', '', 'Bachelor of degree ', '2021', 78.00, '', 1, '2023-05-08 10:12:06', 1, '2023-05-08 10:12:59', 0, NULL, 0),
(16018, 12686, '5', 'DOTE ', '', 'MECHANICAL ENGINEERING ', '2018', 86.00, '', 1, '2023-05-08 10:12:42', 1, '2023-05-08 10:12:53', 0, NULL, 0),
(16019, 12686, '5', 'DOTE', '', 'mechanical engineering ', '2018', 80.00, '', 1, '2023-05-08 10:14:29', 0, NULL, 0, NULL, 1),
(16020, 12686, '3', 'NPR GROUP OF INSTITUTION ', '', 'mechanical engineering ', '2021', 78.00, '', 1, '2023-05-08 10:15:03', 0, NULL, 0, NULL, 1),
(16021, 12688, '5', 'Board', '', '', '2019', 60.00, '', 1, '2023-05-08 10:18:08', 0, NULL, 0, NULL, 1),
(16022, 12687, '4', 'Madras university', '', 'MA Economics', '2021', 55.00, '', 1, '2023-05-08 10:19:22', 0, NULL, 0, NULL, 1),
(16023, 12683, '4', 'Bharathidhasan university ', '', 'MBA', '2024', 70.00, '', 1, '2023-05-08 10:20:09', 0, NULL, 0, NULL, 1),
(16024, 12689, '3', 'Dr.Babasaheb Ambedkar Technological University, Lonere ', '', 'B tech', '2023', 70.00, '', 1, '2023-05-08 10:30:05', 0, NULL, 0, NULL, 1),
(16025, 12690, '5', 'Department of Technical Education ', '', 'None', '2018', 90.00, '', 1, '2023-05-08 10:49:48', 0, NULL, 0, NULL, 1),
(16026, 12680, '3', 'Madras University ', '', 'B.com', '2021', 73.00, '', 1, '2023-05-08 11:15:27', 0, NULL, 0, NULL, 1),
(16027, 12692, '3', 'Anna University ', '', 'B.E', '2023', 87.00, '', 1, '2023-05-08 11:51:59', 0, NULL, 0, NULL, 1),
(16028, 12692, '2', 'Tamilnadu state board', '', '', '2019', 70.00, '', 1, '2023-05-08 11:52:30', 0, NULL, 0, NULL, 1),
(16029, 12692, '1', 'Tamilnadu state board ', '', '', '2017', 84.00, '', 1, '2023-05-08 11:52:53', 0, NULL, 0, NULL, 1),
(16030, 12693, '1', 'STATE BOARD OF SCHOOL ', '', '', '2003', 55.00, '', 1, '2023-05-08 12:02:47', 0, NULL, 0, NULL, 1),
(16031, 12693, '2', 'STATE BOARD OF SCHOOL ', '', '', '2005', 50.00, '', 1, '2023-05-08 12:03:14', 0, NULL, 0, NULL, 1),
(16032, 12693, '3', 'MADRAS UNIVERSITY OF CHENNAI', '', 'Bsc Hotel and catering management ', '2009', 50.00, '', 1, '2023-05-08 12:04:07', 0, NULL, 0, NULL, 1),
(16033, 12696, '1', 'State board ', '', '', '2016', 81.80, '', 1, '2023-05-08 12:12:41', 0, NULL, 0, NULL, 1),
(16034, 12696, '2', 'State board ', '', '', '2018', 72.50, '', 1, '2023-05-08 12:13:20', 0, NULL, 0, NULL, 1),
(16035, 12696, '3', 'Veltech Multitech Dr Rangarajan Dr Sakuntala Engineering college ', '', 'BTech Information technology ', '2022', 7.70, '', 1, '2023-05-08 12:14:05', 0, NULL, 0, NULL, 1),
(16036, 12694, '3', 'University ', '', 'Bca', '2023', 70.00, '', 1, '2023-05-08 12:25:47', 0, NULL, 0, NULL, 1),
(16037, 12697, '3', 'Prist University Chennai ', '', 'BCA', '2022', 78.00, '', 1, '2023-05-08 12:28:04', 0, NULL, 0, NULL, 1),
(16038, 12697, '2', 'Jai gopal garodia girls hr sec school', '', '', '2019', 62.00, '', 1, '2023-05-08 12:29:06', 0, NULL, 0, NULL, 1),
(16039, 12697, '1', 'Jai gopal garodia girls hr sec school ', '', '', '2017', 89.00, '', 1, '2023-05-08 12:29:38', 0, NULL, 0, NULL, 1),
(16040, 12695, '3', 'Baharathiyar University', '', 'Bsc(Computer Science)', '2021', 67.90, '', 1, '2023-05-08 12:36:39', 1, '2023-05-08 12:37:57', 0, NULL, 0),
(16041, 12695, '3', 'Bharathiyar university ', '', 'Bsc(cs)', '2021', 67.90, '', 1, '2023-05-08 12:38:39', 0, NULL, 0, NULL, 1),
(16042, 12695, '2', 'Kongu vellala matriculation hr sec school', '', '', '2018', 64.58, '', 1, '2023-05-08 12:39:15', 0, NULL, 0, NULL, 1),
(16043, 12695, '1', 'Kongu Vellalar matriculation hr sec school ', '', '', '2016', 81.00, '', 1, '2023-05-08 12:39:52', 0, NULL, 0, NULL, 1),
(16044, 12691, '3', 'Anna university ', '', 'B.E computer science engineering ', '2023', 75.00, '', 1, '2023-05-08 12:47:37', 0, NULL, 0, NULL, 1),
(16045, 12698, '3', 'Madras University ', '', 'BCA', '2023', 85.00, '', 1, '2023-05-08 01:32:08', 0, NULL, 0, NULL, 1),
(16046, 12699, '2', 'St.theresa girls higher secondary school ', '', 'Bca', '2018', 75.00, '', 1, '2023-05-08 02:33:06', 0, NULL, 0, NULL, 1),
(16047, 12699, '3', 'St. Theresa art\'s and science college ', '', 'BCA ', '2018', 75.00, '', 1, '2023-05-08 02:35:35', 0, NULL, 0, NULL, 1),
(16048, 12699, '1', 'St.therasa girls higher secondary school ', '', '', '2016', 70.00, '', 1, '2023-05-08 02:37:58', 0, NULL, 0, NULL, 1),
(16049, 12701, '3', 'Madras University ', '', 'Bsc', '2020', 68.00, '', 1, '2023-05-08 04:08:16', 0, NULL, 0, NULL, 1),
(16050, 12701, '2', 'Government Higher secondary school ', '', '', '2017', 60.00, '', 1, '2023-05-08 04:09:21', 0, NULL, 0, NULL, 1),
(16051, 12701, '1', 'Government Higher secondary school ', '', '', '2015', 68.00, '', 1, '2023-05-08 04:10:08', 0, NULL, 0, NULL, 1),
(16052, 12702, '3', 'Vel Tech Multi Tech ', '', 'B Tech Information Technology ', '2023', 81.00, '', 1, '2023-05-08 05:33:14', 0, NULL, 0, NULL, 1),
(16053, 12705, '4', 'ST JOSEPH INSTITUTE OF MANAGEMENT', '', 'MBA', '2017', 65.00, '', 1, '2023-05-08 06:00:20', 0, NULL, 0, NULL, 1),
(16054, 12704, '4', 'Bharathidasan university ', '', 'MBA', '2017', 60.00, '', 1, '2023-05-08 06:09:18', 0, NULL, 0, NULL, 1),
(16055, 12704, '3', 'Anna university ', '', 'BE', '2015', 7.70, '', 1, '2023-05-08 06:09:58', 0, NULL, 0, NULL, 1),
(16056, 12704, '2', 'State board', '', '', '2011', 87.90, '', 1, '2023-05-08 06:10:53', 0, NULL, 0, NULL, 1),
(16057, 12704, '1', 'State board', '', '', '2009', 87.40, '', 1, '2023-05-08 06:11:27', 0, NULL, 0, NULL, 1),
(16058, 12706, '3', 'The NEW COLLEGE ', '', 'B.A ENGLISH ', '2020', 56.00, '', 1, '2023-05-08 06:19:29', 0, NULL, 0, NULL, 1),
(16059, 12709, '3', 'Pavendar bharathudasan college of engineering and technology ', '', 'B.tech', '2021', 71.00, '', 1, '2023-05-09 10:51:18', 0, NULL, 0, NULL, 1),
(16060, 12711, '3', 'Pavendhar bharathidasan  college of engineering and technology ', '', 'Computer science And engineering ', '2021', 76.00, '', 1, '2023-05-09 10:52:58', 0, NULL, 0, NULL, 1),
(16061, 12681, '5', 'Anna University ', '', 'Diploma ', '2015', 71.40, '', 1, '2023-05-09 11:24:19', 0, NULL, 0, NULL, 1),
(16062, 12712, '4', 'Madras University ', '', 'B.sc physics ', '2018', 65.00, '', 1, '2023-05-09 11:29:45', 0, NULL, 0, NULL, 1),
(16063, 12710, '3', 'Bharthiyar University ', '', 'Bachelor of computer applications ', '2023', 69.00, '', 1, '2023-05-09 11:47:51', 0, NULL, 0, NULL, 1),
(16064, 12714, '3', 'Anna university', '', 'B.E Mechanical Engineering', '2017', 61.00, '', 1, '2023-05-09 12:02:51', 0, NULL, 0, NULL, 1),
(16065, 12715, '4', 'Anna University', '', 'MCA', '2021', 80.03, '', 1, '2023-05-09 12:04:08', 0, NULL, 0, NULL, 1),
(16066, 12715, '3', 'Manonmaniam Sundaranar University', '', 'Bsc Computer Science', '2019', 80.70, '', 1, '2023-05-09 12:05:13', 0, NULL, 0, NULL, 1),
(16067, 12713, '2', 'NIOS', '', '', '2019', 60.00, '', 103, '2023-05-09 12:22:43', 103, '2023-05-09 12:24:02', 0, NULL, 1),
(16068, 12717, '3', 'Madras University ', '', 'B. Com accounting and finance ', '2022', 80.00, '', 1, '2023-05-09 12:35:53', 0, NULL, 0, NULL, 1),
(16069, 12716, '3', 'Madras University ', '', 'B.com', '2022', 80.00, '', 1, '2023-05-09 12:36:23', 0, NULL, 0, NULL, 1),
(16070, 12719, '2', 'state board', '', '', '2013', 80.00, '', 1, '2023-05-09 01:28:52', 0, NULL, 0, NULL, 1),
(16071, 12719, '1', 'state board', '', '', '2011', 95.00, '', 1, '2023-05-09 01:29:18', 0, NULL, 0, NULL, 1),
(16072, 12719, '3', 'sathyabama university', '', 'bachelor of technology', '2017', 78.60, '', 1, '2023-05-09 01:30:08', 0, NULL, 0, NULL, 1),
(16073, 12719, '4', 'university of madras', '', 'mba', '2020', 72.00, '', 1, '2023-05-09 01:30:39', 0, NULL, 0, NULL, 1),
(16074, 12720, '3', 'University of madras', '', 'B sc, Computer Science ', '2000', 78.00, '', 1, '2023-05-09 01:37:34', 0, NULL, 0, NULL, 1),
(16075, 12722, '5', 'Hindustan polytechnic college', '', 'DME', '2022', 71.00, '', 1, '2023-05-09 02:46:39', 0, NULL, 0, NULL, 1),
(16076, 12723, '3', 'Madras university ', '', 'B.com cS', '2019', 70.00, '', 1, '2023-05-09 02:47:42', 0, NULL, 0, NULL, 1),
(16077, 12713, '1', 'nios', '', '', '2019', 74.00, '', 1, '2023-05-09 02:59:01', 0, NULL, 0, NULL, 1),
(16078, 12724, '3', 'Anna University ', '', 'Btech', '2020', 66.00, '', 1, '2023-05-09 06:39:30', 0, NULL, 0, NULL, 1),
(16079, 12725, '3', 'Loyola institute of technology ', '', 'BE ECE ', '2022', 78.00, '', 1, '2023-05-09 06:53:56', 0, NULL, 0, NULL, 1),
(16080, 12728, '3', 'Anna University ', '', 'BE ECE', '2022', 78.00, '', 1, '2023-05-10 09:42:14', 0, NULL, 0, NULL, 1),
(16081, 12707, '3', 'Agni college of technology', '', 'B.e', '2022', 72.00, '', 1, '2023-05-10 10:20:18', 0, NULL, 0, NULL, 1),
(16082, 12729, '4', 'Anna University ', '', 'M.B.a', '2023', 70.00, '', 1, '2023-05-10 10:24:01', 0, NULL, 0, NULL, 1),
(16083, 12729, '4', 'Anna University ', '', 'M.B.A', '2023', 70.00, '', 1, '2023-05-10 10:25:51', 1, '2023-05-10 10:26:05', 0, NULL, 0),
(16084, 12727, '3', 'asan memorial', '', 'bba', '2022', 70.00, '', 1, '2023-05-10 10:34:40', 0, NULL, 0, NULL, 1),
(16085, 12730, '3', 'Anna University', '', 'B.E. CSE', '2014', 87.40, '', 1, '2023-05-10 10:47:10', 1, '2023-05-10 10:47:27', 0, NULL, 1),
(16086, 12732, '3', 'Jerusalem college of engineering', '', 'B. Tech IT', '2023', 80.41, '', 1, '2023-05-10 10:50:08', 0, NULL, 0, NULL, 1),
(16087, 12733, '3', 'University', '', 'BA history and Toursim', '2023', 65.00, '', 1, '2023-05-10 11:03:33', 0, NULL, 0, NULL, 1),
(16088, 12731, '3', 'Anna University ', '', 'BE me', '2020', 65.00, '', 1, '2023-05-10 11:11:13', 0, NULL, 0, NULL, 1),
(16089, 12735, '4', 'BHARADHIDASAN UNIVERSITY', '', 'MCA', '2014', 80.00, '', 1, '2023-05-10 11:13:22', 0, NULL, 0, NULL, 1),
(16090, 12736, '4', 'BS Abdur Rahman Crescent institute of science and technology ', '', 'MCA ', '2022', 85.00, '', 1, '2023-05-10 11:33:23', 0, NULL, 0, NULL, 1),
(16091, 12736, '3', 'Bharathidasan University ', '', 'BCA ', '2020', 78.00, '', 1, '2023-05-10 11:33:54', 0, NULL, 0, NULL, 1),
(16092, 12736, '2', 'National Higher secondary school ', '', '', '2017', 71.00, '', 1, '2023-05-10 11:34:25', 0, NULL, 0, NULL, 1),
(16093, 12736, '1', 'Our lady of Health Higher secondary school ', '', '', '2015', 79.00, '', 1, '2023-05-10 11:34:58', 0, NULL, 0, NULL, 1),
(16094, 12734, '3', 'University of Madras ', '', 'B.C.A', '2022', 76.00, '', 1, '2023-05-10 11:35:34', 0, NULL, 0, NULL, 1),
(16095, 12734, '2', 'State Board ', '', '', '2019', 67.00, '', 1, '2023-05-10 11:40:12', 0, NULL, 0, NULL, 1),
(16096, 12726, '3', 'madras university', '', 'bca', '2022', 78.00, '', 1, '2023-05-10 12:20:34', 0, NULL, 0, NULL, 1),
(16097, 12737, '3', 'A.m.jain college', '', 'Bsc.visual Communication ', '2018', 60.00, '', 1, '2023-05-10 12:30:27', 0, NULL, 0, NULL, 1),
(16098, 12738, '4', 'Bharathiyar University ', '', 'M.Sc Software Systems ', '2023', 69.00, '', 1, '2023-05-10 01:04:25', 0, NULL, 0, NULL, 1),
(16099, 12738, '2', 'Tamilnadu State Board ', '', '', '2018', 60.00, '', 1, '2023-05-10 01:06:06', 0, NULL, 0, NULL, 1),
(16100, 12738, '1', 'Tamilnadu State Board ', '', '', '2016', 86.00, '', 1, '2023-05-10 01:06:32', 0, NULL, 0, NULL, 1),
(16101, 12740, '3', 'Madras University ', '', 'Bsc maths ', '2020', 73.00, '', 1, '2023-05-10 02:09:40', 0, NULL, 0, NULL, 1),
(16102, 12740, '4', 'Madras University ', '', 'Bsc mathematics ', '2020', 73.00, '', 1, '2023-05-10 02:11:01', 0, NULL, 0, NULL, 1),
(16103, 12739, '3', 'Anna University ', '', 'BE Computer science ', '2022', 84.00, '', 1, '2023-05-10 02:13:33', 0, NULL, 0, NULL, 1),
(16104, 12741, '3', 'VIT chennai', '', 'B.tech ecm', '2022', 73.80, '', 1, '2023-05-10 02:24:18', 0, NULL, 0, NULL, 1),
(16105, 12741, '2', 'State', '', '', '2018', 77.00, '', 1, '2023-05-10 02:25:11', 0, NULL, 0, NULL, 1),
(16106, 12742, '4', 'Anna University ', '', 'MCA', '2021', 90.00, '', 1, '2023-05-10 05:21:18', 0, NULL, 0, NULL, 1),
(16107, 12743, '3', 'Anna university', '', 'BE', '2019', 6.98, '', 1, '2023-05-10 05:58:12', 0, NULL, 0, NULL, 1),
(16108, 12743, '1', 'English ', '', 'BE', '2012', 83.00, '', 1, '2023-05-10 05:59:30', 0, NULL, 0, NULL, 1),
(16109, 12743, '2', 'English', '', '', '2014', 72.00, '', 1, '2023-05-10 05:59:53', 0, NULL, 0, NULL, 1),
(16110, 12744, '2', 'state board', '', '', '2022', 60.00, '', 1, '2023-05-10 07:23:42', 1, '2023-05-10 07:25:05', 0, NULL, 0),
(16111, 12744, '1', 'state board', '', '', '2020', 60.00, '', 1, '2023-05-10 07:24:36', 1, '2023-05-10 07:25:00', 0, NULL, 0),
(16112, 12744, '1', 'state board', '', 'bba', '2020', 60.00, '', 1, '2023-05-10 07:26:45', 1, '2023-05-10 07:27:53', 0, NULL, 0),
(16113, 12744, '2', 'state board', '', '', '2022', 60.00, '', 1, '2023-05-10 07:27:12', 0, NULL, 0, NULL, 1),
(16114, 12744, '1', 'state board', '', '', '2020', 60.00, '', 1, '2023-05-10 07:28:14', 0, NULL, 0, NULL, 1),
(16115, 12745, '1', 'State board', '', 'BE', '2017', 75.00, '', 1, '2023-05-10 07:42:35', 0, NULL, 0, NULL, 1),
(16116, 12745, '5', 'DOTE', '', 'Diplomo ', '2020', 89.00, '', 1, '2023-05-10 07:43:14', 0, NULL, 0, NULL, 1),
(16117, 12745, '3', 'ANNA UNIVERSITY ', '', 'BE', '2023', 8.65, '', 1, '2023-05-10 07:43:36', 0, NULL, 0, NULL, 1),
(16118, 12746, '3', 'DR.MGR UNIVERSITY ', '', 'BBA', '2020', 68.00, '', 1, '2023-05-10 07:46:54', 0, NULL, 0, NULL, 1),
(16119, 12747, '3', 'University ', '', 'BBA', '2023', 78.00, '', 1, '2023-05-11 12:09:23', 0, NULL, 0, NULL, 1),
(16120, 12748, '3', 'Rayalaseema University ', '', 'Bachelor ', '2021', 62.00, '', 1, '2023-05-11 07:22:20', 0, NULL, 0, NULL, 1),
(16121, 12749, '3', 'Karnataka university ', '', 'Bcom', '2018', 80.00, '', 1, '2023-05-11 10:09:47', 0, NULL, 0, NULL, 1),
(16122, 12750, '3', 'University ', '', 'B.com', '2023', 8.30, '', 1, '2023-05-11 10:38:03', 0, NULL, 0, NULL, 1),
(16123, 12752, '1', 'State board ', '', '', '2015', 89.20, '', 1, '2023-05-11 11:09:48', 0, NULL, 0, NULL, 1),
(16124, 12752, '2', 'State board ', '', '', '2017', 67.10, '', 1, '2023-05-11 11:10:01', 0, NULL, 0, NULL, 1),
(16125, 12752, '3', 'Anna University ', '', 'BE', '2021', 73.15, '', 1, '2023-05-11 11:10:24', 0, NULL, 0, NULL, 1),
(16126, 12753, '3', 'Dr.MGR University ', '', 'B.com', '2023', 8.39, '', 1, '2023-05-11 11:26:45', 0, NULL, 0, NULL, 1),
(16127, 12751, '3', 'Dr Mgr educational and Research Institute ', '', 'Bcom ', '2023', 8.14, '', 1, '2023-05-11 11:27:14', 0, NULL, 0, NULL, 1),
(16128, 12753, '2', 'Sri sankara vidya kendra School', '', '', '2020', 83.00, '', 1, '2023-05-11 11:28:10', 0, NULL, 0, NULL, 1),
(16129, 12751, '2', 'Lalchand milachand dadha senior secondary school ', '', '', '2020', 83.00, '', 1, '2023-05-11 11:28:30', 0, NULL, 0, NULL, 1),
(16130, 12753, '1', 'Sri sankara vidya kendra school', '', '', '2018', 91.00, '', 1, '2023-05-11 11:28:50', 0, NULL, 0, NULL, 1),
(16131, 12751, '1', 'Lalchand milachand Dadha senior secondary school ', '', '', '2018', 65.00, '', 1, '2023-05-11 11:29:56', 0, NULL, 0, NULL, 1),
(16132, 12754, '3', 'Anna university', '', 'Bachelor in Civil Engineering', '2019', 73.00, '', 1, '2023-05-11 12:10:25', 0, NULL, 0, NULL, 1),
(16133, 12757, '3', 'Anna university', '', 'BE mech', '2022', 81.00, '', 1, '2023-05-11 01:12:57', 0, NULL, 0, NULL, 1),
(16134, 12757, '2', 'Government boys higher secondary school', '', '', '2018', 72.00, '', 1, '2023-05-11 01:13:33', 0, NULL, 0, NULL, 1),
(16135, 12757, '1', 'Government boys higher secondary', '', '', '2016', 87.00, '', 1, '2023-05-11 01:13:57', 0, NULL, 0, NULL, 1),
(16136, 12755, '3', 'Bharathidasan ', '', 'B. Sc., maths', '2021', 69.00, '', 1, '2023-05-11 01:16:31', 0, NULL, 0, NULL, 1),
(16137, 12755, '2', 'State', '', '', '2018', 74.00, '', 1, '2023-05-11 01:17:18', 0, NULL, 0, NULL, 1),
(16138, 12755, '1', 'State', '', '', '2016', 83.00, '', 1, '2023-05-11 01:17:44', 0, NULL, 0, NULL, 1),
(16139, 12759, '3', 'Anna university', '', 'Bachelor of computer science and engineering', '2021', 82.00, '', 1, '2023-05-11 02:58:19', 0, NULL, 0, NULL, 1),
(16140, 12760, '3', 'Anna University ', '', 'Be Mechanical ', '2019', 62.00, '', 1, '2023-05-11 03:03:32', 0, NULL, 0, NULL, 1),
(16141, 12761, '3', 'a.m. jain college', '', 'b b a', '2018', 75.00, '', 1, '2023-05-11 03:16:27', 0, NULL, 0, NULL, 1),
(16142, 12764, '3', 'University college of engineering arni ', '', 'B.E', '2020', 6.84, '', 1, '2023-05-11 05:07:33', 0, NULL, 0, NULL, 1),
(16143, 12766, '3', 'University college of engineering ', '', 'B.tech ', '2020', 70.00, '', 1, '2023-05-11 11:08:28', 1, '2023-05-11 11:09:01', 0, NULL, 0),
(16144, 12766, '1', 'State Board ', '', '', '2014', 90.00, '', 1, '2023-05-11 11:09:53', 0, NULL, 0, NULL, 1),
(16145, 12766, '2', 'State Board ', '', '', '2016', 75.00, '', 1, '2023-05-11 11:10:13', 0, NULL, 0, NULL, 1),
(16146, 12766, '3', 'University ', '', 'B.tech', '2020', 70.00, '', 1, '2023-05-11 11:10:40', 0, NULL, 0, NULL, 1),
(16147, 12768, '3', 'Anna university', '', 'BE', '2020', 7.00, '', 1, '2023-05-12 08:27:18', 0, NULL, 0, NULL, 1),
(16148, 12769, '3', 'Anna university ', '', 'BE Mechanical Engineering', '2016', 6.00, '', 1, '2023-05-12 09:51:08', 0, NULL, 0, NULL, 1),
(16149, 12770, '3', 'Anna University ', '', 'BE ECE', '2019', 75.00, '', 1, '2023-05-12 10:15:41', 0, NULL, 0, NULL, 1),
(16150, 12773, '1', 'State board ', '', '', '2016', 90.00, '', 1, '2023-05-12 11:49:56', 1, '2023-05-12 11:53:02', 0, NULL, 1),
(16151, 12773, '2', 'State board ', '', '', '2018', 75.00, '', 1, '2023-05-12 11:50:19', 0, NULL, 0, NULL, 1),
(16152, 12773, '3', 'University of Madras ', '', 'Bsc computer science ', '2021', 90.00, '', 1, '2023-05-12 11:51:08', 0, NULL, 0, NULL, 1),
(16153, 12773, '4', 'University of Madras ', '', 'Msc computer science ', '2023', 70.00, '', 1, '2023-05-12 11:51:37', 0, NULL, 0, NULL, 1),
(16154, 12774, '3', 'Anna University ', '', 'BE mechanical ', '2020', 6.70, '', 1, '2023-05-12 11:56:35', 0, NULL, 0, NULL, 1),
(16155, 12767, '1', 'State Board', '', '', '2015', 82.00, '', 1, '2023-05-12 12:02:26', 0, NULL, 0, NULL, 1),
(16156, 12767, '2', 'State Board', '', '', '2017', 70.00, '', 1, '2023-05-12 12:02:44', 0, NULL, 0, NULL, 1),
(16157, 12767, '3', 'University', '', 'Bca', '2020', 71.00, '', 1, '2023-05-12 12:03:12', 0, NULL, 0, NULL, 1),
(16158, 12767, '4', 'University', '', 'Mca', '2022', 78.00, '', 1, '2023-05-12 12:03:29', 0, NULL, 0, NULL, 1),
(16159, 12772, '3', 'University ', '', 'Bcom ', '2019', 62.00, '', 1, '2023-05-12 12:12:08', 0, NULL, 0, NULL, 1),
(16160, 12762, '1', 'State board ', '', '', '2012', 69.00, '', 1, '2023-05-12 12:33:35', 0, NULL, 0, NULL, 1),
(16161, 12762, '2', 'State board ', '', '', '2014', 78.00, '', 1, '2023-05-12 12:34:07', 0, NULL, 0, NULL, 1),
(16162, 12762, '3', 'Anna University ', '', 'BE', '2018', 6.80, '', 1, '2023-05-12 12:34:44', 0, NULL, 0, NULL, 1),
(16163, 12775, '5', 'Government girls higher secondary school ', '', 'Bsc nursing ', '2018', 80.00, '', 1, '2023-05-12 01:10:15', 0, NULL, 0, NULL, 1),
(16164, 12776, '5', 'madras university', '', 'bsc.viscom ', '2018', 50.00, '', 1, '2023-05-12 01:14:40', 0, NULL, 0, NULL, 1),
(16165, 12777, '1', 'State Board ', '', '', '2017', 94.40, '', 1, '2023-05-12 01:18:22', 0, NULL, 0, NULL, 1),
(16166, 12777, '2', 'State Board ', '', '', '2019', 75.50, '', 1, '2023-05-12 01:18:39', 0, NULL, 0, NULL, 1),
(16167, 12777, '3', 'Anna University ', '', 'BE - ECE', '2023', 7.24, '', 1, '2023-05-12 01:19:20', 0, NULL, 0, NULL, 1),
(16168, 12778, '3', 'Anna university', '', 'B.E CSE', '2022', 83.00, '', 1, '2023-05-12 01:38:23', 0, NULL, 0, NULL, 1),
(16169, 12779, '1', 'State board ', '', '', '2017', 96.00, '', 1, '2023-05-12 01:43:29', 0, NULL, 0, NULL, 1),
(16170, 12779, '2', 'State board ', '', '', '2019', 76.50, '', 1, '2023-05-12 01:44:04', 0, NULL, 0, NULL, 1),
(16171, 12779, '3', 'Madras University ', '', 'Bsc computer science ', '2022', 86.34, '', 1, '2023-05-12 01:44:34', 0, NULL, 0, NULL, 1),
(16172, 12780, '3', 'Anna University', '', 'BE', '2020', 61.80, '', 1, '2023-05-12 02:58:03', 0, NULL, 0, NULL, 1),
(16173, 12781, '3', 'anna university', '', 'b.e', '2020', 7.80, '', 1, '2023-05-12 02:59:58', 0, NULL, 0, NULL, 1),
(16174, 12771, '2', 'Nios', '', '', '2020', 83.00, '', 1, '2023-05-12 04:25:16', 0, NULL, 0, NULL, 1),
(16175, 12782, '4', 'JNTU ANANTAPUR ', '', 'MBA', '2013', 85.00, '', 1, '2023-05-13 06:36:33', 0, NULL, 0, NULL, 1),
(16176, 12783, '3', 'Madras University ', '', 'BCA', '2020', 60.00, '', 1, '2023-05-13 10:59:48', 0, NULL, 0, NULL, 1),
(16177, 12784, '3', 'Madras University ', '', 'B.com', '2022', 70.00, '', 1, '2023-05-13 12:00:53', 0, NULL, 0, NULL, 1),
(16178, 12785, '2', 'Board', '', '', '2015', 70.00, '', 1, '2023-05-13 12:05:57', 0, NULL, 0, NULL, 1),
(16179, 12763, '2', 'State board ', '', '', '2021', 70.00, '', 1, '2023-05-13 12:15:38', 0, NULL, 0, NULL, 1),
(16180, 12786, '3', 'Mgr University ', '', 'Bcom', '2023', 70.00, '', 1, '2023-05-13 12:16:36', 0, NULL, 0, NULL, 1),
(16181, 12787, '3', 'Anna university ', '', 'B.E', '2017', 63.00, '', 1, '2023-05-13 12:24:19', 0, NULL, 0, NULL, 1),
(16182, 12789, '4', 'The New college', '', 'Msc computer science', '2023', 80.00, '', 1, '2023-05-13 06:00:46', 1, '2023-05-13 06:01:17', 0, NULL, 0),
(16183, 12789, '1', 'Justice basheer Ahamed sayed memorial matriculation higher secondary school', '', '', '2016', 75.00, '', 1, '2023-05-13 06:03:55', 0, NULL, 0, NULL, 1),
(16184, 12789, '2', 'Justice basheer Ahamed sayed memorial matriculation higher secondary school', '', '', '2018', 80.00, '', 1, '2023-05-13 06:04:29', 0, NULL, 0, NULL, 1),
(16185, 12789, '3', 'The New college', '', 'Bsc computer science', '2021', 89.00, '', 1, '2023-05-13 06:04:59', 0, NULL, 0, NULL, 1),
(16186, 12789, '4', 'The New college', '', 'Msc computer science', '2023', 75.00, '', 1, '2023-05-13 06:05:19', 0, NULL, 0, NULL, 1),
(16187, 12788, '5', 'Oxford Polytechnic College, Bangalore', '', '', '2017', 70.00, '', 1, '2023-05-13 06:46:50', 0, NULL, 0, NULL, 1),
(16188, 12791, '3', 'karnataka pre university', '', 'ba', '2021', 55.00, '', 1, '2023-05-13 06:49:11', 0, NULL, 0, NULL, 1),
(16189, 12791, '4', 'karnataka board ', '', 'Bachelor of arts', '2021', 55.00, '', 1, '2023-05-13 06:52:42', 0, NULL, 0, NULL, 1),
(16190, 12791, '1', 'karnataka board ', '', '', '2015', 83.00, '', 1, '2023-05-13 06:53:54', 0, NULL, 0, NULL, 1),
(16191, 12793, '4', 'Kamaraj University ', '', 'MA', '2020', 80.00, '', 1, '2023-05-14 11:21:22', 0, NULL, 0, NULL, 1),
(16192, 12793, '4', 'Kamaraj University ', '', 'MA', '2020', 80.00, '', 1, '2023-05-14 11:23:20', 1, '2023-05-14 11:23:27', 0, NULL, 0),
(16193, 12792, '4', 'University', '', 'M.Sc (CS)', '2023', 80.00, '', 1, '2023-05-15 09:31:47', 0, NULL, 0, NULL, 1),
(16194, 12792, '3', 'University', '', 'B.Sc(CS)', '2021', 83.00, '', 1, '2023-05-15 09:32:49', 0, NULL, 0, NULL, 1),
(16195, 12792, '2', 'Board', '', '', '2018', 85.00, '', 1, '2023-05-15 09:33:23', 0, NULL, 0, NULL, 1),
(16196, 12792, '1', 'Board', '', '', '2016', 85.00, '', 1, '2023-05-15 09:34:18', 0, NULL, 0, NULL, 1),
(16197, 12796, '3', 'Thiruvalluvar University ', '', 'B.Sc Computer Science ', '2022', 74.10, '', 1, '2023-05-15 10:00:13', 0, NULL, 0, NULL, 1),
(16198, 12795, '5', 'STAT BOARD ', '', 'No', '2016', 71.00, '', 1, '2023-05-15 10:33:22', 0, NULL, 0, NULL, 1),
(16199, 12798, '3', 'the new college ', '', 'b.com', '2022', 72.00, '', 1, '2023-05-15 10:36:22', 0, NULL, 0, NULL, 1),
(16200, 12797, '3', 'madars university ', '', 'b.com general ', '2020', 59.00, '', 1, '2023-05-15 10:38:54', 0, NULL, 0, NULL, 1),
(16201, 12799, '3', 'Srm university', '', 'bca', '2022', 81.00, '', 1, '2023-05-15 10:42:25', 0, NULL, 0, NULL, 1),
(16202, 12802, '5', 'Directorate of technical education ', '', 'Diploma in electrical and electronics engineering ', '2015', 70.00, '', 1, '2023-05-15 11:15:11', 0, NULL, 0, NULL, 1),
(16203, 12801, '3', 'Thiruvalluvar University ', '', 'B.com (computer application)', '2019', 71.80, '', 1, '2023-05-15 11:15:47', 0, NULL, 0, NULL, 1),
(16204, 12803, '3', 'Bharathidhasan University ', '', 'BCA', '2021', 82.00, '', 1, '2023-05-15 11:21:56', 0, NULL, 0, NULL, 1),
(16205, 12804, '1', 'State board ', '', '', '2014', 85.40, '', 1, '2023-05-15 11:34:26', 0, NULL, 0, NULL, 1),
(16206, 12805, '3', 'K.C.S.Kasi Nadar College of Arts and Science ', '', 'B.com corporate Secretaryship ', '2019', 67.00, '', 1, '2023-05-15 12:57:23', 0, NULL, 0, NULL, 1),
(16207, 12794, '3', 'Sri Venkateswara University, Tirupathi', '', 'bsc.computer science', '2022', 8.86, '', 1, '2023-05-15 03:55:17', 0, NULL, 0, NULL, 1),
(16208, 12807, '3', 'Am Jain college', '', 'B\'COM', '1995', 100.00, '', 1, '2023-05-15 07:30:32', 0, NULL, 0, NULL, 1),
(16209, 12808, '3', 'madras university', '', 'bba', '2018', 75.00, '', 1, '2023-05-15 09:17:58', 0, NULL, 0, NULL, 1),
(16210, 12811, '3', 'Anna university ', '', 'Be', '2020', 70.00, '', 1, '2023-05-16 11:04:23', 0, NULL, 0, NULL, 1),
(16211, 12812, '4', 'Sambhram Academy of Management Studies', '', 'MBA', '2020', 7.00, '', 1, '2023-05-16 11:34:09', 0, NULL, 0, NULL, 1),
(16212, 12810, '3', 'Jain University ', '', 'Bachelor\'s of commerce ', '2021', 82.00, '', 1, '2023-05-16 11:49:32', 0, NULL, 0, NULL, 1),
(16213, 12813, '3', 'Anna university', '', 'B.E', '2021', 6.50, '', 1, '2023-05-16 12:40:56', 0, NULL, 0, NULL, 1),
(16214, 12813, '2', 'St, Francis,Hr,sec school', '', '', '2017', 64.50, '', 1, '2023-05-16 12:41:30', 0, NULL, 0, NULL, 1),
(16215, 12813, '1', 'St, Francis,Hr,Sec, School', '', '', '2015', 76.00, '', 1, '2023-05-16 12:41:59', 0, NULL, 0, NULL, 1),
(16216, 12816, '3', 'Board', '', 'Bcom', '2018', 72.00, '', 1, '2023-05-16 12:51:02', 0, NULL, 0, NULL, 1),
(16217, 12815, '3', 'Board', '', 'Bcom', '2019', 78.00, '', 1, '2023-05-16 12:54:09', 0, NULL, 0, NULL, 1),
(16218, 12817, '3', 'delhi university', '', 'b.a english', '2023', 60.00, '', 1, '2023-05-16 12:59:32', 0, NULL, 0, NULL, 1),
(16219, 12818, '3', 'madras university', '', 'b.a english literature', '2022', 78.00, '', 1, '2023-05-16 03:00:56', 0, NULL, 0, NULL, 1),
(16220, 12819, '3', 'Anna university', '', 'B.E', '2015', 70.00, '', 1, '2023-05-16 03:30:33', 0, NULL, 0, NULL, 1),
(16221, 12820, '3', 'Bharathiya University ', '', 'B.sc ', '2019', 60.00, '', 1, '2023-05-16 04:06:38', 0, NULL, 0, NULL, 1),
(16222, 12822, '3', 'Thiruvalluvar university', '', 'B. Com', '2021', 70.00, '', 1, '2023-05-17 09:36:05', 0, NULL, 0, NULL, 1),
(16223, 12823, '3', 'Madras University ', '', 'Bca', '2020', 85.00, '', 1, '2023-05-17 10:04:28', 0, NULL, 0, NULL, 1),
(16224, 12823, '1', 'State Board ', '', '', '2015', 80.00, '', 1, '2023-05-17 10:06:35', 0, NULL, 0, NULL, 1),
(16225, 12823, '2', 'State Board ', '', '', '2017', 75.00, '', 1, '2023-05-17 10:06:59', 0, NULL, 0, NULL, 1),
(16226, 12825, '3', 'Madras university', '', 'Bsc', '2022', 6.52, '', 1, '2023-05-17 10:53:37', 0, NULL, 0, NULL, 1),
(16227, 12824, '3', 'Thiruvalluvar ', '', 'BCA', '2019', 55.00, '', 1, '2023-05-17 10:56:24', 0, NULL, 0, NULL, 1),
(16228, 12826, '3', 'University of Madras', '', 'B com', '2013', 73.00, '', 1, '2023-05-17 11:16:35', 0, NULL, 0, NULL, 1),
(16229, 12821, '3', 'Maharani cluster University ', '', 'Digree BA ', '2022', 74.00, '', 1, '2023-05-17 11:37:24', 0, NULL, 0, NULL, 1),
(16230, 12827, '3', 'Anna university ', '', 'B.E Electrical and Electronics Engineering ', '2018', 6.60, '', 1, '2023-05-17 11:40:08', 0, NULL, 0, NULL, 1),
(16231, 12829, '3', 'University ', '', 'BBA', '2020', 61.00, '', 1, '2023-05-17 12:52:19', 0, NULL, 0, NULL, 1),
(16232, 12830, '2', 'board', '', '', '2018', 61.00, '', 1, '2023-05-17 01:40:47', 0, NULL, 0, NULL, 1),
(16233, 12831, '3', 'university', '', 'bcom', '2021', 70.00, '', 1, '2023-05-17 04:57:16', 0, NULL, 0, NULL, 1),
(16234, 12833, '3', 'Anna University ', '', 'B.Tech', '2023', 83.00, '', 1, '2023-05-18 09:54:59', 0, NULL, 0, NULL, 1),
(16235, 12833, '2', 'State board ', '', '', '2019', 63.00, '', 1, '2023-05-18 09:55:24', 0, NULL, 0, NULL, 1),
(16236, 12833, '1', 'State board ', '', '', '2017', 88.00, '', 1, '2023-05-18 09:55:49', 0, NULL, 0, NULL, 1),
(16237, 12834, '4', 'Autonomous', '', 'BA economic', '2022', 70.00, '', 1, '2023-05-18 10:29:05', 0, NULL, 0, NULL, 1),
(16238, 12834, '4', 'autonomous', '', 'BA economic', '2022', 70.00, '', 1, '2023-05-18 10:30:48', 0, NULL, 0, NULL, 1),
(16239, 12834, '4', 'Autonomous', '', 'BA economic', '2022', 70.00, '', 1, '2023-05-18 10:32:42', 0, NULL, 0, NULL, 1),
(16240, 12836, '5', 'Crescent college', '', '', '2008', 85.00, '', 1, '2023-05-18 10:38:43', 0, NULL, 0, NULL, 1),
(16241, 12835, '3', 'Quaid e-millath got Arts and science college ', '', 'BA', '2022', 75.00, '', 1, '2023-05-18 10:53:17', 0, NULL, 0, NULL, 1),
(16242, 12832, '3', 'Kamal Azad University of technology', '', 'B. Tech', '2017', 61.00, '', 1, '2023-05-18 02:35:45', 0, NULL, 0, NULL, 1),
(16243, 12840, '1', 'State board ', '', '', '2015', 82.00, '', 1, '2023-05-18 02:41:13', 0, NULL, 0, NULL, 1),
(16244, 12840, '2', 'State board ', '', '', '2017', 59.80, '', 1, '2023-05-18 02:41:56', 0, NULL, 0, NULL, 1),
(16245, 12840, '3', 'Anna University ', '', 'B.E civil', '2021', 7.79, '', 1, '2023-05-18 02:43:12', 0, NULL, 0, NULL, 1),
(16246, 12837, '3', 'Madras university ', '', 'B. Com', '2018', 87.00, '', 1, '2023-05-18 03:18:56', 0, NULL, 0, NULL, 1),
(16247, 12841, '4', 'Alagappa University ', '', 'MBA-logistics management ', '2023', 67.00, '', 1, '2023-05-18 08:20:35', 0, NULL, 0, NULL, 1),
(16248, 12842, '3', 'Dwaraka Dass Govinda Dass Vaishnav College', '', 'B A Business Economics ', '2020', 70.00, '', 1, '2023-05-18 08:27:57', 0, NULL, 0, NULL, 1),
(16249, 12843, '3', 'Bharathidhasan University ', '', 'bCA', '2022', 80.00, '', 1, '2023-05-19 09:41:25', 0, NULL, 0, NULL, 1),
(16250, 12844, '3', 'Thiruvalluvar University', '', 'BCA', '2022', 83.00, '', 1, '2023-05-19 10:28:44', 0, NULL, 0, NULL, 1),
(16251, 12846, '4', 'Periyar University', '', 'MBA', '2020', 89.90, '', 1, '2023-05-19 10:42:56', 0, NULL, 0, NULL, 1),
(16252, 12847, '3', 'Periyar ', '', 'B.sc', '2019', 60.00, '', 1, '2023-05-19 11:17:00', 0, NULL, 0, NULL, 1),
(16253, 12847, '3', 'selvam arts and science college ', '', 'Bsc biotech', '2019', 60.00, '', 85, '2023-05-19 11:21:12', 85, '2023-05-19 11:21:23', 0, NULL, 0),
(16254, 12848, '3', 'Anna University ', '', 'B.E', '2021', 7.58, '', 1, '2023-05-19 11:58:11', 0, NULL, 0, NULL, 1),
(16255, 12849, '3', 'Loyola ', '', 'Bcom ', '2017', 64.00, '', 1, '2023-05-19 04:14:29', 0, NULL, 0, NULL, 1),
(16256, 12850, '3', 'srm', '', 'b.b.a', '2023', 74.00, '', 1, '2023-05-19 05:40:17', 0, NULL, 0, NULL, 1),
(16257, 12852, '3', 'Madras university', '', 'Bsc computer science', '2010', 78.00, '', 1, '2023-05-20 11:21:24', 0, NULL, 0, NULL, 1),
(16258, 12853, '3', 'Jamal Mohamed College ', '', 'BCA', '2022', 77.00, '', 1, '2023-05-20 12:20:03', 0, NULL, 0, NULL, 1),
(16259, 12854, '3', 'Madras University ', '', 'B.com commerce ', '2021', 60.00, '', 1, '2023-05-20 01:40:32', 0, NULL, 0, NULL, 1),
(16260, 12854, '2', 'State board', '', '', '2018', 71.00, '', 1, '2023-05-20 01:41:27', 1, '2023-05-20 01:42:24', 0, NULL, 0),
(16261, 12854, '2', 'State board ', '', '', '2018', 71.00, '', 1, '2023-05-20 01:42:47', 0, NULL, 0, NULL, 1),
(16262, 12854, '1', 'State board ', '', '', '2015', 60.00, '', 1, '2023-05-20 01:42:59', 0, NULL, 0, NULL, 1),
(16263, 12855, '3', 'Veltech University ', '', 'B.com', '2020', 71.00, '', 1, '2023-05-20 02:45:53', 0, NULL, 0, NULL, 1),
(16264, 12855, '1', 'State Board ', '', '', '2015', 71.00, '', 1, '2023-05-20 02:46:09', 0, NULL, 0, NULL, 1),
(16265, 12855, '2', 'State Board ', '', '', '2017', 76.00, '', 1, '2023-05-20 02:46:26', 0, NULL, 0, NULL, 1),
(16266, 12856, '3', 'DR MGR EDUCATIONAL AND RESEARCH INSTITUTE', '', 'bsc.computer science', '2021', 90.00, '', 1, '2023-05-20 03:12:03', 0, NULL, 0, NULL, 1),
(16267, 12858, '3', 'IFET college of engineering ', '', 'BE - Mechanical engineering ', '2022', 8.49, '', 1, '2023-05-20 06:45:45', 0, NULL, 0, NULL, 1),
(16268, 12858, '2', 'St Joseph\'s Higher secondary school ', '', '', '2018', 81.00, '', 1, '2023-05-20 06:46:15', 0, NULL, 0, NULL, 1),
(16269, 12858, '1', 'St Joseph\'s Higher secondary school ', '', '', '2016', 92.60, '', 1, '2023-05-20 06:46:34', 0, NULL, 0, NULL, 1),
(16270, 12862, '3', 'Rmd ENGINEERING college ', '', '', '2022', 85.00, '', 1, '2023-05-21 07:26:38', 0, NULL, 0, NULL, 1),
(16271, 12862, '1', 'St.Marys School', '', '', '2016', 96.00, '', 1, '2023-05-21 07:27:33', 0, NULL, 0, NULL, 1),
(16272, 12862, '2', 'Velammal Matric school', '', '', '2018', 83.00, '', 1, '2023-05-21 07:27:59', 0, NULL, 0, NULL, 1),
(16273, 12863, '4', 'anna university', '', 'mba', '2023', 80.00, '', 1, '2023-05-21 08:38:16', 0, NULL, 0, NULL, 1),
(16274, 12864, '4', 'Madras University ', '', 'M.sc computer science ', '2022', 85.00, '', 1, '2023-05-21 11:45:52', 0, NULL, 0, NULL, 1),
(16275, 12865, '3', 'Thiruvallur university', '', 'BCA', '2022', 86.00, '', 1, '2023-05-22 09:54:49', 0, NULL, 0, NULL, 1),
(16276, 12866, '3', 'Andhra Pradesh ', '', '', '2017', 72.00, '', 1, '2023-05-22 10:14:43', 0, NULL, 0, NULL, 1),
(16277, 12867, '3', 'Madurai kamaraj University ', '', 'Bsc', '2019', 65.00, '', 1, '2023-05-22 10:33:02', 0, NULL, 0, NULL, 1),
(16278, 12868, '3', 'Autonomous ', '', 'B.A', '2017', 80.00, '', 1, '2023-05-22 10:43:05', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16279, 12869, '1', 'state board of tamilnadu ', '', '', '2016', 82.00, '', 1, '2023-05-22 11:24:46', 1, '2023-05-22 11:29:35', 0, NULL, 0),
(16280, 12869, '1', 'State board of tamilnadu ', '', '', '2016', 82.00, '', 1, '2023-05-22 11:30:07', 0, NULL, 0, NULL, 1),
(16281, 12869, '2', 'state board of tamilnadu ', '', '', '2018', 62.00, '', 1, '2023-05-22 11:30:28', 0, NULL, 0, NULL, 1),
(16282, 12869, '3', 'Anna University ', '', 'B.tech/it', '2022', 7.52, '', 1, '2023-05-22 11:31:04', 0, NULL, 0, NULL, 1),
(16283, 12870, '3', 'Anna Adarsh College for women', '', 'BSc', '2021', 80.00, '', 1, '2023-05-22 11:41:50', 0, NULL, 0, NULL, 1),
(16284, 12870, '4', 'University of Madras ', '', 'MSc', '2023', 70.00, '', 1, '2023-05-22 11:42:11', 0, NULL, 0, NULL, 1),
(16285, 12871, '4', 'University Of Madras ', '', 'MSC Information Technology ', '2023', 80.00, '', 1, '2023-05-22 11:50:03', 0, NULL, 0, NULL, 1),
(16286, 12871, '3', 'Guru Nanak College ', '', 'Bsc Computer Science ', '2021', 80.00, '', 1, '2023-05-22 11:52:04', 0, NULL, 0, NULL, 1),
(16287, 12874, '3', 'the new college', '', 'bca ', '2020', 62.00, '', 1, '2023-05-22 12:55:46', 0, NULL, 0, NULL, 1),
(16288, 12873, '3', 'Selvamm Arts and Science College ', '', 'Discontinued ', '2018', 50.00, '', 1, '2023-05-22 12:59:41', 0, NULL, 0, NULL, 1),
(16289, 12876, '4', 'Madurai kamaraj University ', '', 'JOURNALISM AND MASS COMMUNICATION ', '2019', 61.50, '', 1, '2023-05-22 01:12:52', 0, NULL, 0, NULL, 1),
(16290, 12875, '3', 'madras university', '', 'bcom', '2023', 75.00, '', 1, '2023-05-22 01:16:23', 0, NULL, 0, NULL, 1),
(16291, 12877, '4', 'Alagappa University ', '', 'MCA ', '2019', 6.81, '', 1, '2023-05-22 01:19:31', 0, NULL, 0, NULL, 1),
(16292, 12882, '3', 'Hindustan college of arts and science ', '', 'Bacholr of computer applications ', '2018', 61.79, '', 1, '2023-05-22 06:56:25', 0, NULL, 0, NULL, 1),
(16293, 12880, '3', 'Madras University', '', 'B.com(CS)', '2022', 89.00, '', 1, '2023-05-23 10:08:57', 0, NULL, 0, NULL, 1),
(16294, 12886, '1', 'Karnataka state education boar ', '', '', '2017', 65.00, '', 1, '2023-05-23 10:10:25', 0, NULL, 0, NULL, 1),
(16295, 12887, '3', 'Anna university ', '', 'Be', '2021', 72.00, '', 1, '2023-05-23 10:12:28', 0, NULL, 0, NULL, 1),
(16296, 12888, '3', 'Anna university', '', 'B. E', '2022', 82.00, '', 1, '2023-05-23 10:13:31', 0, NULL, 0, NULL, 1),
(16297, 12878, '3', 'Bharathidasan ', '', 'B.com', '2022', 83.00, '', 1, '2023-05-23 10:29:49', 0, NULL, 0, NULL, 1),
(16298, 12890, '3', 'Anna University ', '', 'B.Tech', '2022', 75.00, '', 1, '2023-05-23 10:38:12', 0, NULL, 0, NULL, 1),
(16299, 12889, '3', 'Bharathidasan University ', '', 'B.com', '2022', 75.00, '', 1, '2023-05-23 10:40:28', 0, NULL, 0, NULL, 1),
(16300, 12891, '3', 'Anna University', '', 'BE - Computer science Engineering', '2017', 60.00, '', 1, '2023-05-23 10:47:52', 0, NULL, 0, NULL, 1),
(16301, 12893, '3', 'Madras University', '', 'B.Sc Physics', '2018', 89.00, '', 1, '2023-05-23 11:15:48', 0, NULL, 0, NULL, 1),
(16302, 12892, '3', 'Vels Institute of science, Technology and Advanced Studies', '', 'Biochemistry ', '2021', 80.60, '', 1, '2023-05-23 11:18:43', 0, NULL, 0, NULL, 1),
(16303, 12894, '3', 'Soka ikeda college of arts and science for women', '', 'B.com(Corporate secretaryship)', '2019', 64.00, '', 1, '2023-05-23 12:16:48', 0, NULL, 0, NULL, 1),
(16304, 12895, '3', 'madras university', '', 'bca', '2022', 85.00, '', 1, '2023-05-23 12:32:39', 0, NULL, 0, NULL, 1),
(16305, 12896, '3', 'Mohammad sathak', '', 'Bca ', '2022', 60.00, '', 1, '2023-05-23 12:37:41', 0, NULL, 0, NULL, 1),
(16306, 12897, '3', 'Loyola college, Chennai ', '', 'BA English ', '2016', 59.00, '', 1, '2023-05-23 01:55:02', 0, NULL, 0, NULL, 1),
(16307, 12879, '3', 'Prist University ', '', 'B.Tech', '2018', 73.00, '', 1, '2023-05-23 05:24:02', 0, NULL, 0, NULL, 1),
(16308, 12900, '3', 'Banglore University ', '', 'Bbm', '2015', 50.00, '', 1, '2023-05-23 06:09:58', 0, NULL, 0, NULL, 1),
(16309, 12901, '4', 'Madras University', '', 'Msc.IT', '2020', 79.00, '', 1, '2023-05-23 10:03:29', 0, NULL, 0, NULL, 1),
(16310, 12901, '3', 'Tiruvalluvar', '', 'BCA', '2018', 82.00, '', 1, '2023-05-23 10:04:14', 0, NULL, 0, NULL, 1),
(16311, 12902, '4', 'Barathidasan University ', '', 'Msc', '2020', 76.00, '', 1, '2023-05-23 10:17:24', 0, NULL, 0, NULL, 1),
(16312, 12903, '3', 'Thiruvallur University ', '', 'BCA', '2020', 69.00, '', 1, '2023-05-24 09:52:52', 0, NULL, 0, NULL, 1),
(16313, 12904, '3', 'Bharathiar university ', '', 'BCA', '2022', 84.00, '', 1, '2023-05-24 09:55:48', 0, NULL, 0, NULL, 1),
(16314, 12904, '2', 'Stateboard ', '', '', '2019', 75.00, '', 1, '2023-05-24 09:56:40', 0, NULL, 0, NULL, 1),
(16315, 12904, '1', 'Stateboard', '', '', '2016', 82.00, '', 1, '2023-05-24 09:57:18', 0, NULL, 0, NULL, 1),
(16316, 12883, '3', 'University', '', 'B.com', '2013', 75.00, '', 1, '2023-05-24 10:34:44', 0, NULL, 0, NULL, 1),
(16317, 12905, '3', 'Kalasalingam Academy and research and education ', '', 'Bsc(computer Science)', '2022', 6.66, '', 1, '2023-05-24 10:48:17', 0, NULL, 0, NULL, 1),
(16318, 12907, '1', 'Tamil Nadu State Board ', '', '', '2016', 88.00, '', 1, '2023-05-24 10:48:26', 0, NULL, 0, NULL, 1),
(16319, 12907, '2', 'TamilNadu Higher Secondary Board ', '', '', '2018', 63.00, '', 1, '2023-05-24 10:48:56', 0, NULL, 0, NULL, 1),
(16320, 12906, '4', 'Anna University ', '', 'M.E', '2021', 9.21, '', 1, '2023-05-24 10:50:16', 0, NULL, 0, NULL, 1),
(16321, 12907, '3', 'Anna University ', '', 'B. Tech ', '2022', 73.00, '', 1, '2023-05-24 10:50:17', 0, NULL, 0, NULL, 1),
(16322, 12906, '3', 'Anna University ', '', 'B.E', '2019', 6.64, '', 1, '2023-05-24 10:50:52', 0, NULL, 0, NULL, 1),
(16323, 12906, '2', 'St John\'s HR. Sec. School ', '', '', '2015', 57.00, '', 1, '2023-05-24 10:51:34', 0, NULL, 0, NULL, 1),
(16324, 12906, '1', 'St.johns Hr. Sec. School', '', '', '2013', 81.00, '', 1, '2023-05-24 10:52:13', 0, NULL, 0, NULL, 1),
(16325, 12910, '4', 'Kamarajar university ', '', 'MSC Computer science ', '2022', 73.00, '', 1, '2023-05-24 12:15:41', 0, NULL, 0, NULL, 1),
(16326, 12909, '4', 'Madurai kamarajar University ', '', 'Msc computer science ', '2022', 79.00, '', 1, '2023-05-24 12:15:53', 0, NULL, 0, NULL, 1),
(16327, 12911, '4', 'Anna University ', '', 'Master of Computer applications ', '2022', 87.00, '', 1, '2023-05-24 12:16:24', 0, NULL, 0, NULL, 1),
(16328, 12911, '3', 'Kamaraj University ', '', 'B.Sc (Information technology)', '2020', 72.00, '', 1, '2023-05-24 12:18:06', 0, NULL, 0, NULL, 1),
(16329, 12911, '2', 'Tamilnadu Board', '', '', '2017', 67.00, '', 1, '2023-05-24 12:20:10', 0, NULL, 0, NULL, 1),
(16330, 12911, '1', 'Tamilnadu Board ', '', '', '2015', 82.60, '', 1, '2023-05-24 12:20:33', 0, NULL, 0, NULL, 1),
(16331, 12908, '4', 'bharathiyar university', '', 'm c a', '2023', 75.00, '', 1, '2023-05-24 12:24:09', 0, NULL, 0, NULL, 1),
(16332, 12912, '4', 'Anna University ', '', 'MCA', '2022', 84.50, '', 1, '2023-05-24 12:27:31', 0, NULL, 0, NULL, 1),
(16333, 12912, '3', 'Kamaraj University ', '', 'BSC IT ', '2020', 59.00, '', 1, '2023-05-24 12:28:22', 0, NULL, 0, NULL, 1),
(16334, 12913, '3', 'Anna university', '', 'BE. CSE', '2021', 70.00, '', 1, '2023-05-24 12:48:36', 0, NULL, 0, NULL, 1),
(16335, 12914, '4', 'Bharathidhasan University ', '', 'MCA', '2022', 83.00, '', 1, '2023-05-24 01:01:14', 0, NULL, 0, NULL, 1),
(16336, 12914, '3', 'Bharathidhasan University ', '', 'BCA', '2020', 77.00, '', 1, '2023-05-24 01:01:35', 0, NULL, 0, NULL, 1),
(16337, 12914, '2', 'State board ', '', '', '2017', 61.00, '', 1, '2023-05-24 01:01:57', 0, NULL, 0, NULL, 1),
(16338, 12914, '1', 'State board ', '', '', '2015', 76.00, '', 1, '2023-05-24 01:02:14', 0, NULL, 0, NULL, 1),
(16339, 12915, '3', 'Anna University', '', 'Btech IT', '2021', 78.00, '', 1, '2023-05-24 01:54:34', 0, NULL, 0, NULL, 1),
(16340, 12916, '3', 'the new college', '', 'bsc.it', '2023', 70.43, '', 1, '2023-05-24 03:11:08', 0, NULL, 0, NULL, 1),
(16341, 12917, '3', 'Jawaharlal Nehru technological University', '', 'Btech', '2020', 68.00, '', 1, '2023-05-25 12:10:12', 0, NULL, 0, NULL, 1),
(16342, 12917, '5', 'State board', '', 'Mpcs', '2016', 63.00, '', 1, '2023-05-25 12:11:51', 0, NULL, 0, NULL, 1),
(16343, 12919, '2', 'State board', '', '', '2019', 65.00, '', 1, '2023-05-25 10:12:41', 0, NULL, 0, NULL, 1),
(16344, 12920, '3', 'Anna University ', '', 'B.E', '2023', 81.00, '', 1, '2023-05-25 10:38:25', 1, '2023-05-25 10:42:53', 0, NULL, 1),
(16345, 12920, '2', 'State board ', '', '', '2019', 77.00, '', 1, '2023-05-25 10:38:53', 1, '2023-05-25 10:42:32', 0, NULL, 1),
(16346, 12921, '4', 'Anna University ', '', 'MCA', '2022', 80.00, '', 1, '2023-05-25 10:42:44', 0, NULL, 0, NULL, 1),
(16347, 12920, '1', 'State board ', '', '', '2017', 93.00, '', 1, '2023-05-25 10:43:34', 0, NULL, 0, NULL, 1),
(16348, 12922, '1', 'Board', '', 'BE-ECE', '2015', 86.00, '', 1, '2023-05-25 11:01:08', 0, NULL, 0, NULL, 1),
(16349, 12922, '2', 'Board', '', '', '2017', 79.25, '', 1, '2023-05-25 11:01:41', 0, NULL, 0, NULL, 1),
(16350, 12922, '3', 'University', '', 'BE-ECE', '2021', 73.00, '', 1, '2023-05-25 11:02:12', 0, NULL, 0, NULL, 1),
(16351, 12924, '3', 'The New College', '', 'B.Sc - IT', '2023', 70.00, '', 1, '2023-05-25 11:21:57', 0, NULL, 0, NULL, 1),
(16352, 12925, '3', 'B. S Abdur Rahman Crescent Institute Of Science And Technology', '', 'BCA - Multimedia And Web Application Development', '2022', 78.00, '', 1, '2023-05-25 11:25:12', 0, NULL, 0, NULL, 1),
(16353, 12923, '3', 'anna university', '', 'b e', '2021', 78.00, '', 1, '2023-05-25 11:31:21', 0, NULL, 0, NULL, 1),
(16354, 12926, '2', 'tamil nadu board of education', '', '', '2020', 62.00, '', 1, '2023-05-25 11:35:54', 0, NULL, 0, NULL, 1),
(16355, 12926, '1', 'Tamil Nadu Board Of Education', '', '', '2018', 60.00, '', 1, '2023-05-25 11:36:20', 0, NULL, 0, NULL, 1),
(16356, 12926, '3', 'madras university', '', 'b.com', '2023', 71.00, '', 1, '2023-05-25 11:36:59', 0, NULL, 0, NULL, 1),
(16357, 12928, '3', 'Bishop Heber College ', '', 'B Sc Computer Science ', '2023', 79.80, '', 1, '2023-05-25 11:59:20', 0, NULL, 0, NULL, 1),
(16358, 12928, '2', 'Maxwell Matriculation Higher Secondary School, STATE board ', '', '', '2020', 65.40, '', 1, '2023-05-25 12:00:00', 1, '2023-05-25 12:01:11', 0, NULL, 1),
(16359, 12928, '1', 'Maxwell Matriculation Higher Secondary School, STATE board', '', '', '2018', 81.93, '', 1, '2023-05-25 12:00:47', 0, NULL, 0, NULL, 1),
(16360, 12927, '3', 'Madras University ', '', 'B.com(general)', '2023', 62.00, '', 1, '2023-05-25 12:05:43', 0, NULL, 0, NULL, 1),
(16361, 12929, '3', 'Bharathidasan', '', 'Bsc', '2018', 84.00, '', 1, '2023-05-25 12:15:26', 0, NULL, 0, NULL, 1),
(16362, 12933, '4', 'University of maders', '', 'mca', '2022', 75.00, '', 1, '2023-05-25 12:50:28', 0, NULL, 0, NULL, 1),
(16363, 12933, '4', 'unverisity of Madras ', '', 'mca', '2022', 75.00, '', 1, '2023-05-25 12:52:11', 0, NULL, 0, NULL, 1),
(16364, 12930, '3', 'anna university', '', 'b e', '2017', 63.00, '', 1, '2023-05-25 12:53:49', 0, NULL, 0, NULL, 1),
(16365, 12934, '3', 'Jawaharlal Nehru technological University', '', 'Btech', '2023', 68.00, '', 1, '2023-05-25 01:28:17', 0, NULL, 0, NULL, 1),
(16366, 12931, '1', 'tamil nadu board of Education ', '', '', '2018', 63.00, '', 1, '2023-05-25 02:40:36', 0, NULL, 0, NULL, 1),
(16367, 12931, '2', 'Tamil Nadu Board Of Education', '', '', '2020', 64.00, '', 1, '2023-05-25 02:40:53', 0, NULL, 0, NULL, 1),
(16368, 12931, '3', 'university of madras', '', 'b.com', '2023', 65.00, '', 1, '2023-05-25 02:41:33', 0, NULL, 0, NULL, 1),
(16369, 12936, '1', 'tamil nadu board of education', '', '', '2010', 60.00, '', 1, '2023-05-25 03:01:56', 0, NULL, 0, NULL, 1),
(16370, 12936, '2', 'Tamil Nadu Board Of Education', '', '', '2012', 62.00, '', 1, '2023-05-25 03:02:16', 0, NULL, 0, NULL, 1),
(16371, 12936, '3', 'Madras University  ', '', 'b.a business economics', '2015', 65.00, '', 1, '2023-05-25 03:03:19', 0, NULL, 0, NULL, 1),
(16372, 12935, '3', ' cape institute of technology', '', 'b e', '2019', 69.00, '', 1, '2023-05-25 03:55:39', 0, NULL, 0, NULL, 1),
(16373, 12941, '3', 'Madras University ', '', 'B.Sc Physics ', '2023', 76.00, '', 1, '2023-05-26 09:08:18', 0, NULL, 0, NULL, 1),
(16374, 12940, '3', 'Prist University ', '', 'Bsc', '2022', 76.00, '', 1, '2023-05-26 10:02:21', 0, NULL, 0, NULL, 1),
(16375, 12942, '3', 'University of madras', '', 'BSc Computer Science', '2023', 61.00, '', 1, '2023-05-26 10:49:47', 0, NULL, 0, NULL, 1),
(16376, 12944, '1', 'Vellayan Chettiar Higher Secondary School', '', '', '2014', 86.40, '', 1, '2023-05-26 11:04:50', 1, '2023-05-26 11:06:43', 0, NULL, 0),
(16377, 12944, '2', 'Vellayan Chettiar Higher Secondary School', '', '', '2016', 82.00, '', 1, '2023-05-26 11:05:07', 1, '2023-05-26 11:06:46', 0, NULL, 0),
(16378, 12944, '3', 'Anna University', '', 'BE Mechanical', '2020', 73.00, '', 1, '2023-05-26 11:05:29', 1, '2023-05-26 11:06:39', 0, NULL, 0),
(16379, 12944, '4', 'Anna University', '', 'MBA', '2023', 72.00, '', 1, '2023-05-26 11:05:51', 1, '2023-05-26 11:06:55', 0, NULL, 1),
(16380, 12945, '4', 'Anna university ', '', 'ME(VLSI) ', '2014', 86.60, '', 1, '2023-05-26 11:06:58', 0, NULL, 0, NULL, 1),
(16381, 12944, '3', 'Anna University', '', 'BE Mechanical', '2020', 73.00, '', 1, '2023-05-26 11:07:16', 0, NULL, 0, NULL, 1),
(16382, 12944, '2', 'Vellayan Chettiar Higher Secondary School', '', '', '2016', 82.00, '', 1, '2023-05-26 11:07:45', 0, NULL, 0, NULL, 1),
(16383, 12944, '1', 'Vellayan Chettiar Higher Secondary School ', '', '', '2014', 86.00, '', 1, '2023-05-26 11:08:22', 0, NULL, 0, NULL, 1),
(16384, 12946, '2', 'State board', '', '', '2013', 51.00, '', 1, '2023-05-26 11:27:00', 0, NULL, 0, NULL, 1),
(16385, 12946, '1', 'Matric', '', '', '2011', 72.00, '', 1, '2023-05-26 11:28:33', 0, NULL, 0, NULL, 1),
(16386, 12946, '3', 'Madras', '', 'BCA', '2016', 59.50, '', 1, '2023-05-26 11:29:25', 0, NULL, 0, NULL, 1),
(16387, 12947, '3', 'Periyar University ', '', 'BBA ca', '2020', 80.00, '', 1, '2023-05-26 11:41:23', 0, NULL, 0, NULL, 1),
(16388, 12948, '3', 'Prist university ', '', 'B.COM (CA)', '2023', 92.00, '', 1, '2023-05-26 11:52:59', 0, NULL, 0, NULL, 1),
(16389, 12948, '1', 'State board', '', '', '2018', 63.00, '', 1, '2023-05-26 11:53:48', 0, NULL, 0, NULL, 1),
(16390, 12948, '2', 'Tamilnadu state board', '', '', '2020', 69.00, '', 1, '2023-05-26 11:54:09', 0, NULL, 0, NULL, 1),
(16391, 12950, '3', 'Bharathiyar university ', '', 'B. Com', '2022', 70.00, '', 1, '2023-05-26 12:11:47', 0, NULL, 0, NULL, 1),
(16392, 12949, '3', 'University college of engineering kanchipuram ', '', 'BE CSE ', '2021', 71.00, '', 1, '2023-05-26 12:11:50', 0, NULL, 0, NULL, 1),
(16393, 12932, '3', 'University of Madras ', '', 'B.com (G)', '2023', 58.00, '', 1, '2023-05-26 01:16:37', 0, NULL, 0, NULL, 1),
(16394, 12951, '1', 'Stateboard', '', '', '2015', 87.00, '', 1, '2023-05-26 02:16:16', 0, NULL, 0, NULL, 1),
(16395, 12951, '2', 'Stateboard ', '', '', '2017', 76.00, '', 1, '2023-05-26 02:16:32', 0, NULL, 0, NULL, 1),
(16396, 12951, '3', 'Madras University ', '', 'BCA ', '2020', 69.00, '', 1, '2023-05-26 02:16:53', 0, NULL, 0, NULL, 1),
(16397, 12953, '4', 'Madras University ', '', 'MCA ', '2022', 88.00, '', 1, '2023-05-26 02:26:07', 0, NULL, 0, NULL, 1),
(16398, 12953, '3', 'Madras University ', '', 'BCA ', '2020', 69.00, '', 1, '2023-05-26 02:26:32', 0, NULL, 0, NULL, 1),
(16399, 12953, '2', 'Stateboard ', '', '', '2017', 76.00, '', 1, '2023-05-26 02:26:48', 0, NULL, 0, NULL, 1),
(16400, 12953, '1', 'Stateboard ', '', '', '2015', 87.00, '', 1, '2023-05-26 02:27:03', 0, NULL, 0, NULL, 1),
(16401, 12952, '1', 'Stateboard', '', '', '2015', 90.00, '', 1, '2023-05-26 02:50:56', 0, NULL, 0, NULL, 1),
(16402, 12952, '2', 'Stateboard ', '', '', '2017', 79.00, '', 1, '2023-05-26 02:51:42', 0, NULL, 0, NULL, 1),
(16403, 12952, '3', 'Madras University ', '', 'Msc', '2020', 80.00, '', 1, '2023-05-26 02:52:15', 0, NULL, 0, NULL, 1),
(16404, 12952, '4', 'Madras University ', '', 'Msc', '2022', 82.00, '', 1, '2023-05-26 02:52:43', 0, NULL, 0, NULL, 1),
(16405, 2446, '3', 'Madras University ', '', 'Bsc computer science ', '2019', 69.00, '', 1, '2023-05-27 09:37:58', 0, NULL, 0, NULL, 1),
(16406, 12956, '3', 'Madurai kamaraj University ', '', 'Bsc physics ', '2022', 70.80, '', 1, '2023-05-27 10:52:19', 0, NULL, 0, NULL, 1),
(16407, 12955, '3', 'SRM UNIVERSITY science and humanities ', '', 'B.com ', '2023', 6.70, '', 1, '2023-05-27 11:10:25', 0, NULL, 0, NULL, 1),
(16408, 12957, '1', 'State board ', '', '', '2014', 82.40, '', 1, '2023-05-27 11:18:34', 0, NULL, 0, NULL, 1),
(16409, 12957, '2', 'State board ', '', '', '2016', 72.00, '', 1, '2023-05-27 11:19:03', 0, NULL, 0, NULL, 1),
(16410, 12957, '3', 'Anna University ', '', 'BE. Mechanical engineering ', '2020', 71.00, '', 1, '2023-05-27 11:19:56', 0, NULL, 0, NULL, 1),
(16411, 12958, '3', 'Presidency college,chennai', '', 'BA English literature', '2023', 75.00, '', 1, '2023-05-27 12:17:32', 0, NULL, 0, NULL, 1),
(16412, 12959, '3', 'Presidency college Chennai ', '', 'BA', '2023', 75.00, '', 1, '2023-05-27 12:17:35', 0, NULL, 0, NULL, 1),
(16413, 12960, '4', 'Manonmanium sundaranar University ', '', 'Mca', '2021', 92.00, '', 1, '2023-05-27 12:18:11', 0, NULL, 0, NULL, 1),
(16414, 12958, '1', 'Om maruthi matric hr.sec school', '', '', '2018', 86.00, '', 1, '2023-05-27 12:18:41', 0, NULL, 0, NULL, 1),
(16415, 12959, '1', 'SRI KRISHNASWAMY MATRIC HR SEC SCHOOL CHENNAI ', '', '', '2018', 90.00, '', 1, '2023-05-27 12:19:15', 0, NULL, 0, NULL, 1),
(16416, 12958, '2', 'st.josephs Anglo Indian girls hr.sec school', '', '', '2020', 83.00, '', 1, '2023-05-27 12:19:25', 0, NULL, 0, NULL, 1),
(16417, 12959, '2', 'GOVT GIRLS HR SEC SCHOOL CHENNAI ', '', '', '2020', 63.00, '', 1, '2023-05-27 12:20:11', 0, NULL, 0, NULL, 1),
(16418, 12961, '3', 'anna university ', '', 'BE(ECE)', '2017', 75.00, '', 1, '2023-05-27 12:20:11', 0, NULL, 0, NULL, 1),
(16419, 12960, '3', 'Manonmanium sundaranar University ', '', 'Bsc .CS', '2019', 75.00, '', 1, '2023-05-27 12:20:17', 0, NULL, 0, NULL, 1),
(16420, 12962, '3', 'Thiruvalluvar University ', '', 'Bsc', '2021', 78.00, '', 1, '2023-05-27 01:01:27', 0, NULL, 0, NULL, 1),
(16421, 12962, '2', 'Thivaruvalur University ', '', '', '2021', 78.00, '', 1, '2023-05-27 01:02:03', 0, NULL, 0, NULL, 1),
(16422, 12963, '3', 'Anna University ', '', 'BE-ECE ', '2021', 76.00, '', 1, '2023-05-27 02:51:49', 0, NULL, 0, NULL, 1),
(16423, 12966, '3', 'Madras university', '', 'B.A.English', '2021', 67.00, '', 1, '2023-05-28 07:55:14', 0, NULL, 0, NULL, 1),
(16424, 12969, '4', 'Anna University ', '', 'MBA', '2022', 70.00, '', 1, '2023-05-29 09:59:07', 0, NULL, 0, NULL, 1),
(16425, 12968, '3', 'Thiruvallauvar', '', 'BCA', '2022', 82.00, '', 1, '2023-05-29 10:19:17', 0, NULL, 0, NULL, 1),
(16426, 12971, '3', 'Kamaraj University', '', 'Bsc.Computer Science', '2023', 8.80, '', 1, '2023-05-29 10:20:21', 0, NULL, 0, NULL, 1),
(16427, 12972, '3', 'Kamarajar University ', '', 'B.Sc', '2023', 8.20, '', 1, '2023-05-29 10:21:09', 0, NULL, 0, NULL, 1),
(16428, 12971, '1', 'Tvs Higher Secondary School', '', '', '2018', 82.00, '', 1, '2023-05-29 10:21:30', 0, NULL, 0, NULL, 1),
(16429, 12971, '2', 'Tvs Higher Secondary school', '', '', '2020', 71.00, '', 1, '2023-05-29 10:22:05', 0, NULL, 0, NULL, 1),
(16430, 12973, '3', 'JNTUk', '', 'B.Tech', '2024', 6.76, '', 1, '2023-05-29 10:24:34', 0, NULL, 0, NULL, 1),
(16431, 12972, '1', 'E.B.G.Matriculation.Higher.Secondary.School', '', 'b.Sc', '2018', 78.00, '', 1, '2023-05-29 10:24:48', 0, NULL, 0, NULL, 1),
(16432, 12972, '2', 'E.B.G.Matriculation.Higher.Secondary.School', '', '', '2020', 75.00, '', 1, '2023-05-29 10:25:24', 0, NULL, 0, NULL, 1),
(16433, 12973, '2', 'State board', '', '', '2019', 8.10, '', 1, '2023-05-29 10:25:44', 0, NULL, 0, NULL, 1),
(16434, 12973, '1', 'State board ', '', '', '2017', 8.00, '', 1, '2023-05-29 10:26:22', 0, NULL, 0, NULL, 1),
(16435, 12970, '5', 'Panimalar polytechnic college ', '', 'Diploma mechanical engineering ', '2010', 60.00, '', 1, '2023-05-29 10:34:35', 0, NULL, 0, NULL, 1),
(16436, 12970, '1', 'Sri saradhadevi matriculation ', '', '', '2006', 50.00, '', 1, '2023-05-29 10:35:37', 0, NULL, 0, NULL, 1),
(16437, 12974, '3', 'Anna University affiliate (JEPPIAAR Engineering College)', '', 'B.E-Mechanical Engineering ', '2022', 7.94, '', 1, '2023-05-29 10:39:10', 0, NULL, 0, NULL, 1),
(16438, 12975, '3', 'Madras university', '', 'Bachelor of Computer Application', '2023', 86.60, '', 1, '2023-05-29 10:49:26', 0, NULL, 0, NULL, 1),
(16439, 12975, '2', 'State board', '', '', '2020', 86.66, '', 1, '2023-05-29 10:50:16', 0, NULL, 0, NULL, 1),
(16440, 12977, '3', 'Bharathiyar University ', '', 'Bsc computer science ', '2022', 80.00, '', 1, '2023-05-29 11:07:28', 0, NULL, 0, NULL, 1),
(16441, 12977, '2', 'State Board ', '', '', '2019', 63.00, '', 1, '2023-05-29 11:08:03', 0, NULL, 0, NULL, 1),
(16442, 12977, '1', 'State Board ', '', '', '2017', 83.00, '', 1, '2023-05-29 11:08:32', 0, NULL, 0, NULL, 1),
(16443, 12976, '3', 'Anna university', '', 'Be me', '2019', 6.50, '', 1, '2023-05-29 11:17:36', 0, NULL, 0, NULL, 1),
(16444, 12978, '4', 'Bharathiyar University', '', 'M. Com', '2021', 7.40, '', 1, '2023-05-29 11:26:04', 0, NULL, 0, NULL, 1),
(16445, 12980, '3', 'Anna University ', '', 'B.Tech ', '2022', 8.20, '', 1, '2023-05-29 11:49:18', 0, NULL, 0, NULL, 1),
(16446, 12982, '4', 'University of Madras ', '', 'MCA', '2023', 90.00, '', 1, '2023-05-29 11:51:01', 0, NULL, 0, NULL, 1),
(16447, 12982, '3', 'University of Madras ', '', 'BCA', '2021', 88.00, '', 1, '2023-05-29 11:51:36', 0, NULL, 0, NULL, 1),
(16448, 12982, '2', 'State board ', '', '', '2018', 64.00, '', 1, '2023-05-29 11:52:33', 1, '2023-05-29 11:53:53', 0, NULL, 1),
(16449, 12983, '3', 'Madras University ', '', 'B.SC Computer Science ', '2022', 76.00, '', 1, '2023-05-29 12:10:43', 1, '2023-05-29 12:11:22', 0, NULL, 0),
(16450, 12983, '2', 'State Board ', '', '', '2019', 68.00, '', 1, '2023-05-29 12:11:09', 1, '2023-05-29 12:11:17', 0, NULL, 0),
(16451, 12983, '1', 'State Board ', '', '', '2017', 82.00, '', 1, '2023-05-29 12:11:43', 1, '2023-05-29 12:13:46', 0, NULL, 0),
(16452, 12983, '2', 'State Board ', '', '', '2019', 68.00, '', 1, '2023-05-29 12:11:59', 1, '2023-05-29 12:13:44', 0, NULL, 0),
(16453, 12984, '1', 'State board ', '', 'Bachelor of Science (B.Sc)', '2017', 90.00, '', 1, '2023-05-29 12:12:33', 0, NULL, 0, NULL, 1),
(16454, 12983, '3', 'Madras University ', '', 'B.SC Computer Science ', '2022', 76.00, '', 1, '2023-05-29 12:12:45', 1, '2023-05-29 12:13:16', 0, NULL, 0),
(16455, 12984, '2', 'State board ', '', '', '2019', 70.10, '', 1, '2023-05-29 12:13:17', 0, NULL, 0, NULL, 1),
(16456, 12984, '3', 'Madras University ', '', 'Bachelor of Science (B.Sc)', '2022', 70.00, '', 1, '2023-05-29 12:13:55', 0, NULL, 0, NULL, 1),
(16457, 12983, '1', 'State Board ', '', '', '2017', 82.00, '', 1, '2023-05-29 12:14:08', 0, NULL, 0, NULL, 1),
(16458, 12983, '2', 'State Board ', '', '', '2019', 68.00, '', 1, '2023-05-29 12:14:25', 0, NULL, 0, NULL, 1),
(16459, 12983, '3', 'Madras University ', '', 'B.SC Computer Science ', '2022', 76.00, '', 1, '2023-05-29 12:14:55', 0, NULL, 0, NULL, 1),
(16460, 12981, '3', 'Seethalakshmi Ramaswamy College,Trichy', '', 'B.sc CS', '2021', 84.00, '', 1, '2023-05-29 12:14:56', 0, NULL, 0, NULL, 1),
(16461, 12985, '4', 'Psg college of arts and science', '', 'Msc. Cs', '2019', 83.00, '', 1, '2023-05-29 12:29:01', 0, NULL, 0, NULL, 1),
(16462, 12986, '3', 'Madras University ', '', 'Bsc cs', '2022', 77.00, '', 1, '2023-05-29 12:30:14', 0, NULL, 0, NULL, 1),
(16463, 12989, '3', 'Anna university ', '', 'BE. cSE', '2019', 7.02, '', 1, '2023-05-29 12:37:14', 0, NULL, 0, NULL, 1),
(16464, 12988, '3', 'Tiruvalluvar University ', '', 'BCA', '2022', 79.00, '', 1, '2023-05-29 12:38:15', 0, NULL, 0, NULL, 1),
(16465, 12990, '3', 'sastra ', '', 'eee', '2016', 69.00, '', 1, '2023-05-29 12:42:14', 0, NULL, 0, NULL, 1),
(16466, 12987, '3', 'Madras University ', '', 'Bsc-cs', '2022', 73.00, '', 1, '2023-05-29 12:42:37', 0, NULL, 0, NULL, 1),
(16467, 12991, '1', 'StateBoard ', '', '', '2017', 82.40, '', 1, '2023-05-29 02:34:02', 0, NULL, 0, NULL, 1),
(16468, 12991, '2', 'State Board ', '', '', '2019', 69.00, '', 1, '2023-05-29 02:34:28', 0, NULL, 0, NULL, 1),
(16469, 12991, '3', 'University of Madras ', '', 'BSC', '2022', 75.00, '', 1, '2023-05-29 02:34:47', 0, NULL, 0, NULL, 1),
(16470, 12992, '3', 'Bharadhidasan university', '', 'BCA', '2022', 83.00, '', 1, '2023-05-29 02:36:12', 0, NULL, 0, NULL, 1),
(16471, 12994, '4', 'University ', '', 'M. A English Literature ', '2023', 72.00, '', 1, '2023-05-29 07:54:37', 0, NULL, 0, NULL, 1),
(16472, 12996, '3', 'madurai kamaraj university', '', 'bcom', '2019', 63.00, '', 1, '2023-05-30 09:54:13', 0, NULL, 0, NULL, 1),
(16473, 12996, '2', 'central board of Secondary education', '', '', '2016', 87.00, '', 1, '2023-05-30 09:55:10', 0, NULL, 0, NULL, 1),
(16474, 12996, '1', 'central board of secondary education', '', '', '2014', 80.00, '', 1, '2023-05-30 09:55:51', 0, NULL, 0, NULL, 1),
(16475, 12997, '3', 'Periyar University ', '', 'Bachelor Of Business Administration ', '2022', 70.00, '', 1, '2023-05-30 10:07:21', 0, NULL, 0, NULL, 1),
(16476, 13000, '3', 'Madras University ', '', 'BSC (Computer Science)', '2022', 73.20, '', 1, '2023-05-30 10:42:03', 0, NULL, 0, NULL, 1),
(16477, 13001, '3', 'Annamacharya Institute of Technology and Sciences', '', 'Civil Engineering ', '2022', 77.00, '', 1, '2023-05-30 10:47:25', 0, NULL, 0, NULL, 1),
(16478, 13002, '3', 'Kerala technical university ', '', 'Bachelor of technology ', '2022', 6.30, '', 1, '2023-05-30 10:58:45', 0, NULL, 0, NULL, 1),
(16479, 13002, '2', 'Kerala board', '', 'Bachelor of technology ', '2018', 72.00, '', 1, '2023-05-30 11:03:00', 0, NULL, 0, NULL, 1),
(16480, 13003, '4', 'Presidency college ', '', 'Master of Arts ', '2023', 74.00, '', 1, '2023-05-30 11:16:55', 0, NULL, 0, NULL, 1),
(16481, 12967, '3', 'Thiruvalluvar university ', '', 'Bsc computer science', '2022', 7.30, '', 1, '2023-05-30 11:34:30', 0, NULL, 0, NULL, 1),
(16482, 12998, '3', 'Shanmuga Industries Arts and science College', '', 'BCA', '2022', 85.00, '', 1, '2023-05-30 11:40:39', 0, NULL, 0, NULL, 1),
(16483, 13004, '4', 'Madras University', '', 'MCA', '2023', 80.21, '', 1, '2023-05-30 11:43:04', 0, NULL, 0, NULL, 1),
(16484, 12999, '3', 'St Thomas College ', '', 'Bca', '2022', 70.00, '', 1, '2023-05-30 11:44:06', 0, NULL, 0, NULL, 1),
(16485, 12898, '4', 'University', '', 'B.com', '2022', 75.00, '', 1, '2023-05-30 12:05:07', 0, NULL, 0, NULL, 1),
(16486, 13008, '4', 'Anna university', '', 'Mca', '2023', 6.50, '', 1, '2023-05-30 12:20:37', 0, NULL, 0, NULL, 1),
(16487, 13008, '3', 'Bharathidasan  university', '', 'Bca', '2021', 70.00, '', 1, '2023-05-30 12:21:58', 0, NULL, 0, NULL, 1),
(16488, 13008, '2', 'ICSE', '', '', '2018', 46.00, '', 1, '2023-05-30 12:23:45', 0, NULL, 0, NULL, 1),
(16489, 13008, '1', 'Isc', '', '', '2016', 45.50, '', 1, '2023-05-30 12:24:38', 0, NULL, 0, NULL, 1),
(16490, 13005, '3', 'Affiliated by university', '', 'Bsc. Mathematics', '2023', 70.80, '', 1, '2023-05-30 12:35:15', 0, NULL, 0, NULL, 1),
(16491, 13010, '3', 'Barathidasan University', '', 'Computer Science', '2017', 70.00, '', 1, '2023-05-30 12:36:46', 0, NULL, 0, NULL, 1),
(16492, 13006, '3', 'Affiliate by University ', '', 'Bsc.mathematics', '2023', 75.00, '', 1, '2023-05-30 12:38:34', 0, NULL, 0, NULL, 1),
(16493, 13007, '3', 'University ', '', 'Ba economics ', '2023', 86.00, '', 1, '2023-05-30 12:44:52', 0, NULL, 0, NULL, 1),
(16494, 13012, '4', 'Bishop Heber College', '', 'MCA', '2023', 70.00, '', 1, '2023-05-30 01:25:01', 0, NULL, 0, NULL, 1),
(16495, 13015, '3', 'Stella Maris College of Engineering ', '', 'BE', '2021', 7.44, '', 1, '2023-05-30 03:24:22', 0, NULL, 0, NULL, 1),
(16496, 12954, '4', 'Baradhidasan University ', '', 'MBA ', '2018', 72.00, '', 1, '2023-05-30 03:44:16', 0, NULL, 0, NULL, 1),
(16497, 13016, '3', 'Rvs arts', '', 'Bcom', '2015', 80.00, '', 1, '2023-05-30 03:50:34', 0, NULL, 0, NULL, 1),
(16498, 13018, '2', 'Good Hope matriculation higher secondary school ', '', '', '2018', 52.00, '', 1, '2023-05-30 05:34:45', 1, '2023-05-30 05:36:24', 0, NULL, 0),
(16499, 13017, '4', 'Periyar Maniammai institute of science and technology', '', 'MBA', '2023', 7.45, '', 1, '2023-05-30 05:40:04', 0, NULL, 0, NULL, 1),
(16500, 13017, '3', 'Annai college of Arts and science', '', 'B. COM (CA)', '2021', 76.00, '', 1, '2023-05-30 05:41:45', 0, NULL, 0, NULL, 1),
(16501, 13020, '1', 'State Board', '', '', '2016', 75.00, '', 1, '2023-05-30 09:59:59', 0, NULL, 0, NULL, 1),
(16502, 13020, '2', 'State Board', '', '', '2018', 49.00, '', 1, '2023-05-30 10:00:41', 0, NULL, 0, NULL, 1),
(16503, 13020, '3', 'Bharathidasan University', '', 'BCA', '2018', 67.00, '', 1, '2023-05-30 10:01:46', 0, NULL, 0, NULL, 1),
(16504, 13020, '4', 'Periyar Mannaiammai Unniversity', '', 'MBA', '2023', 6.67, '', 1, '2023-05-30 10:04:48', 0, NULL, 0, NULL, 1),
(16505, 13019, '3', 'University of Madras', '', 'B. A English Literature', '2023', 70.00, '', 1, '2023-05-30 10:13:51', 0, NULL, 0, NULL, 1),
(16506, 13019, '1', 'State board', '', '', '2016', 75.00, '', 1, '2023-05-30 10:14:26', 1, '2023-05-30 10:17:19', 0, NULL, 0),
(16507, 13019, '2', 'State board', '', '', '2018', 62.00, '', 1, '2023-05-30 10:15:49', 1, '2023-05-30 10:17:13', 0, NULL, 0),
(16508, 13019, '5', 'State board', '', 'D. El. Ed', '2020', 67.00, '', 1, '2023-05-30 10:16:20', 1, '2023-05-30 10:17:09', 0, NULL, 0),
(16509, 13019, '5', 'State board', '', 'D. El. Ed', '2020', 67.00, '', 1, '2023-05-30 10:17:48', 0, NULL, 0, NULL, 1),
(16510, 13019, '2', 'State board', '', '', '2018', 62.00, '', 1, '2023-05-30 10:18:04', 0, NULL, 0, NULL, 1),
(16511, 13019, '1', 'State board', '', '', '2016', 75.00, '', 1, '2023-05-30 10:18:25', 0, NULL, 0, NULL, 1),
(16512, 13014, '3', 'Mahatma Gandhi University ', '', 'Bachelor\'s ', '2020', 65.00, '', 1, '2023-05-31 08:59:27', 0, NULL, 0, NULL, 1),
(16513, 13018, '2', 'Good Hope matriculation higher secondary school ', '', '', '2018', 52.00, '', 1, '2023-05-31 10:16:49', 0, NULL, 0, NULL, 1),
(16514, 13022, '1', 'Tamilnadu state board ', '', '', '2013', 89.00, '', 1, '2023-05-31 10:49:29', 1, '2023-05-31 10:53:33', 0, NULL, 1),
(16515, 13022, '3', 'Anna University', '', 'B.E', '2019', 6.05, '', 1, '2023-05-31 10:50:27', 1, '2023-05-31 10:51:45', 0, NULL, 1),
(16516, 13022, '2', 'Tamilnadu state board ', '', '', '2015', 82.25, '', 1, '2023-05-31 10:53:02', 0, NULL, 0, NULL, 1),
(16517, 13023, '3', 'Bharath university', '', 'B. Sc', '2022', 84.00, '', 1, '2023-05-31 10:55:23', 0, NULL, 0, NULL, 1),
(16518, 13025, '3', 'Anna University ', '', 'B.E', '2022', 77.00, '', 1, '2023-05-31 11:07:38', 0, NULL, 0, NULL, 1),
(16519, 13024, '3', 'anna University ', '', 'b-tech ', '2022', 70.00, '', 1, '2023-05-31 11:08:35', 0, NULL, 0, NULL, 1),
(16520, 13025, '2', 'State', '', '', '2018', 86.50, '', 1, '2023-05-31 11:08:49', 0, NULL, 0, NULL, 1),
(16521, 13025, '1', 'State', '', '', '2016', 86.80, '', 1, '2023-05-31 11:09:04', 0, NULL, 0, NULL, 1),
(16522, 13024, '2', 'cbse', '', 'b-tech', '2018', 60.00, '', 1, '2023-05-31 11:10:36', 0, NULL, 0, NULL, 1),
(16523, 13024, '1', 'cbse', '', '', '2016', 69.00, '', 1, '2023-05-31 11:11:01', 0, NULL, 0, NULL, 1),
(16524, 13028, '4', 'bharathidasan univercity', '', 'm.sc. computer science', '2023', 82.00, '', 1, '2023-05-31 11:51:13', 0, NULL, 0, NULL, 1),
(16525, 13027, '4', 'bharathidasan university', '', 'msc.cs.', '2023', 90.00, '', 1, '2023-05-31 11:54:31', 0, NULL, 0, NULL, 1),
(16526, 13027, '3', 'bharathidasan university', '', 'b.sc.', '2021', 88.00, '', 1, '2023-05-31 11:55:55', 0, NULL, 0, NULL, 1),
(16527, 13030, '3', 'kingston Engineering College', '', 'BE(ECE) ', '2022', 7.93, '', 1, '2023-05-31 12:01:19', 0, NULL, 0, NULL, 1),
(16528, 13030, '2', 'State board of TamilNadu', '', '', '2018', 62.58, '', 1, '2023-05-31 12:01:54', 0, NULL, 0, NULL, 1),
(16529, 13031, '3', 'Ms University ', '', 'Bsc cs ', '2021', 84.00, '', 1, '2023-05-31 12:02:12', 0, NULL, 0, NULL, 1),
(16530, 13030, '1', 'state Board of TamilNadu', '', '', '2016', 77.60, '', 1, '2023-05-31 12:02:31', 0, NULL, 0, NULL, 1),
(16531, 13026, '3', 'bharathidasan university', '', 'b.sc', '2021', 85.00, '', 1, '2023-05-31 12:03:10', 0, NULL, 0, NULL, 1),
(16532, 13029, '3', 'bharathidasan university', '', 'b.sc', '2021', 83.00, '', 1, '2023-05-31 12:03:24', 0, NULL, 0, NULL, 1),
(16533, 13026, '4', 'bharathidasan university', '', 'm.sc', '2023', 82.00, '', 1, '2023-05-31 12:03:43', 0, NULL, 0, NULL, 1),
(16534, 13029, '4', 'bharathidasan university', '', 'm.sc', '2023', 87.00, '', 1, '2023-05-31 12:04:07', 0, NULL, 0, NULL, 1),
(16535, 13031, '2', 'St.Michael girls Hr. sec.school', '', '', '2018', 62.00, '', 1, '2023-05-31 12:04:42', 1, '2023-05-31 12:05:43', 0, NULL, 1),
(16536, 13031, '1', 'St.Michael girls hr.sec.school', '', '', '2016', 82.00, '', 1, '2023-05-31 12:06:17', 0, NULL, 0, NULL, 1),
(16537, 13032, '3', 'M.A.M college of engineering and technology,trichy', '', 'B.E(MECHANICAL ENGINEERING)', '2020', 74.00, '', 1, '2023-05-31 12:21:43', 0, NULL, 0, NULL, 1),
(16538, 13013, '5', 'SWAMY  ABEDHANANDHA POLYTECHNIC COLLEGE', '', 'd e r e', '2023', 73.00, '', 1, '2023-05-31 12:45:32', 0, NULL, 0, NULL, 1),
(16539, 13034, '3', 'Anna university', '', 'B.tech', '2021', 75.00, '', 1, '2023-05-31 01:54:30', 0, NULL, 0, NULL, 1),
(16540, 13033, '3', 'Anna University ', '', 'Be me', '2022', 81.00, '', 1, '2023-05-31 02:37:55', 0, NULL, 0, NULL, 1),
(16541, 13035, '3', 'Jayaram College of Engineering and Technology ', '', 'B.E.', '2022', 80.00, '', 1, '2023-05-31 02:50:04', 0, NULL, 0, NULL, 1),
(16542, 13035, '2', 'Dalmia Higher Secondary School ', '', '', '2018', 63.00, '', 1, '2023-05-31 02:50:38', 0, NULL, 0, NULL, 1),
(16543, 13035, '1', 'Government High school ', '', '', '2016', 90.00, '', 1, '2023-05-31 02:51:00', 0, NULL, 0, NULL, 1),
(16544, 13037, '3', 'Anna university', '', 'B. E computer science engineering', '2022', 79.40, '', 1, '2023-06-01 10:21:02', 0, NULL, 0, NULL, 1),
(16545, 13039, '3', 'Anna University ', '', 'BE', '2022', 74.00, '', 1, '2023-06-01 10:22:09', 0, NULL, 0, NULL, 1),
(16546, 13038, '3', 'Anna University ', '', 'BE', '2022', 84.00, '', 1, '2023-06-01 10:38:06', 0, NULL, 0, NULL, 1),
(16547, 13040, '3', 'Anna university ', '', 'bE', '2016', 8.20, '', 1, '2023-06-01 11:04:30', 0, NULL, 0, NULL, 1),
(16548, 13040, '2', 'State board ', '', '', '2012', 85.00, '', 1, '2023-06-01 11:05:13', 0, NULL, 0, NULL, 1),
(16549, 13042, '3', 'Anna University Chennai ', '', 'B.E(Computer Science Engineering)', '2018', 65.55, '', 1, '2023-06-01 11:06:31', 0, NULL, 0, NULL, 1),
(16550, 13041, '5', 'State board', '', '', '2022', 80.00, '', 1, '2023-06-01 11:09:16', 0, NULL, 0, NULL, 1),
(16551, 13043, '2', 'Board', '', '', '2020', 70.00, '', 1, '2023-06-01 11:48:11', 0, NULL, 0, NULL, 1),
(16552, 13044, '3', 'Bharathidasan University ', '', 'B com CA', '2023', 85.00, '', 1, '2023-06-01 12:51:17', 0, NULL, 0, NULL, 1),
(16553, 13046, '4', 'Karpagam Academy of higher education ', '', 'MSC computer science ', '2023', 80.00, '', 1, '2023-06-01 12:56:01', 0, NULL, 0, NULL, 1),
(16554, 13046, '3', 'V.v.Vanniaperumal college for women ', '', 'BCA', '2020', 70.00, '', 1, '2023-06-01 12:57:02', 0, NULL, 0, NULL, 1),
(16555, 13047, '3', 'University of madras', '', 'B. Com', '2016', 55.00, '', 1, '2023-06-01 01:29:30', 0, NULL, 0, NULL, 1),
(16556, 13048, '3', 'Madras University ', '', 'Bsc', '2023', 80.00, '', 1, '2023-06-01 02:58:33', 0, NULL, 0, NULL, 1),
(16557, 13052, '3', 'Thiruvalluvar University ', '', 'B.com', '2019', 60.00, '', 1, '2023-06-02 10:05:51', 0, NULL, 0, NULL, 1),
(16558, 13052, '2', 'State board ', '', '', '2016', 88.00, '', 1, '2023-06-02 10:07:11', 0, NULL, 0, NULL, 1),
(16559, 13052, '1', 'State board ', '', '', '2014', 60.00, '', 1, '2023-06-02 10:07:28', 0, NULL, 0, NULL, 1),
(16560, 13053, '3', 'Tagore engineering college ', '', 'BE(mechanical)', '2018', 65.00, '', 1, '2023-06-02 10:47:44', 0, NULL, 0, NULL, 1),
(16561, 13054, '4', 'madras university', '', 'mba', '2013', 60.00, '', 1, '2023-06-02 10:51:57', 0, NULL, 0, NULL, 1),
(16562, 13050, '3', 'University', '', 'B.A', '2017', 61.00, '', 1, '2023-06-02 11:30:33', 0, NULL, 0, NULL, 1),
(16563, 13036, '3', 'Am jain college', '', 'B.com ca', '2021', 60.00, '', 1, '2023-06-02 11:36:45', 0, NULL, 0, NULL, 1),
(16564, 13055, '3', 'new college roapettah', '', 'bsc computer science', '2023', 0.00, '', 85, '2023-06-02 12:13:36', 85, '2023-06-02 12:15:19', 0, NULL, 0),
(16565, 13055, '3', 'New College Roapettah', '', 'Bsc computer science', '2023', 0.00, '', 85, '2023-06-02 12:15:13', 0, NULL, 0, NULL, 1),
(16566, 13057, '3', 'Madras University ', '', 'BBA', '2021', 61.00, '', 1, '2023-06-02 12:26:36', 0, NULL, 0, NULL, 1),
(16567, 13056, '3', 'University of Madras ', '', 'Bsc chemistry ', '2022', 63.00, '', 1, '2023-06-02 01:04:18', 0, NULL, 0, NULL, 1),
(16568, 13059, '3', 'Madras University ', '', 'Bsc', '2023', 64.00, '', 1, '2023-06-02 01:27:31', 0, NULL, 0, NULL, 1),
(16569, 13061, '4', 'Bharathidasan university', '', 'M.A', '2023', 70.00, '', 1, '2023-06-02 02:20:36', 0, NULL, 0, NULL, 1),
(16570, 13060, '4', 'Bharathidasan University ', '', 'M.sc Computer science ', '2022', 88.00, '', 1, '2023-06-02 02:22:22', 0, NULL, 0, NULL, 1),
(16571, 13062, '4', 'Bharathidasan University ', '', 'M.Sc Computer Science ', '2023', 79.00, '', 1, '2023-06-02 02:46:25', 0, NULL, 0, NULL, 1),
(16572, 13062, '3', 'Bharathidasan University ', '', 'B.Sc Computer Science ', '2021', 75.00, '', 1, '2023-06-02 02:47:23', 0, NULL, 0, NULL, 1),
(16573, 13063, '4', 'Bharathidasan university ', '', 'M.sc, Computer Science ', '2023', 79.00, '', 1, '2023-06-02 02:54:48', 0, NULL, 0, NULL, 1),
(16574, 13064, '3', 'Hindustan Institute of Technology and Science ', '', 'B.Tech Mechatronics ', '2022', 82.00, '', 1, '2023-06-03 12:45:29', 0, NULL, 0, NULL, 1),
(16575, 13066, '5', 'Kumaran polytechnic College ', '', 'Diploma civil engineering ', '2013', 65.00, '', 1, '2023-06-04 12:51:48', 0, NULL, 0, NULL, 1),
(16576, 13068, '4', 'UNIVERSITY OF MADRAS', '', 'MBA', '2023', 77.31, '', 1, '2023-06-05 09:59:09', 0, NULL, 0, NULL, 1),
(16577, 13068, '3', 'UNIVERSITY OF MADRAS ', '', 'B.com', '2020', 72.00, '', 1, '2023-06-05 09:59:55', 0, NULL, 0, NULL, 1),
(16578, 13068, '2', 'MATRICULATION ', '', '', '2017', 82.66, '', 1, '2023-06-05 10:00:25', 0, NULL, 0, NULL, 1),
(16579, 13068, '1', 'CBSE', '', '', '2015', 5.80, '', 1, '2023-06-05 10:01:02', 0, NULL, 0, NULL, 1),
(16580, 13071, '3', 'Madras University', '', 'Bcom', '2020', 60.00, '', 1, '2023-06-05 10:35:57', 0, NULL, 0, NULL, 1),
(16581, 13069, '4', 'Dr.MGR University ', '', 'MBA', '2023', 76.00, '', 1, '2023-06-05 10:38:05', 0, NULL, 0, NULL, 1),
(16582, 13072, '3', 'University of Madras ', '', 'B.Sc mathematics ', '2023', 75.00, '', 1, '2023-06-05 10:39:30', 0, NULL, 0, NULL, 1),
(16583, 13070, '4', 'dr.mgr University ', '', 'mba', '2023', 78.00, '', 1, '2023-06-05 10:40:27', 0, NULL, 0, NULL, 1),
(16584, 13073, '3', 'Madras University ', '', 'B com', '2023', 75.00, '', 1, '2023-06-05 10:56:06', 0, NULL, 0, NULL, 1),
(16585, 13051, '2', '_', '', '', '2021', 80.00, '', 1, '2023-06-05 11:11:30', 0, NULL, 0, NULL, 1),
(16586, 13074, '3', 'Bharathidhasan University ', '', 'Chemistry ', '2020', 70.00, '', 1, '2023-06-05 11:12:29', 0, NULL, 0, NULL, 1),
(16587, 13075, '3', 'Francis Xavier Engineering College ', '', 'B.E ', '2019', 81.33, '', 1, '2023-06-05 11:22:37', 0, NULL, 0, NULL, 1),
(16588, 13075, '1', 'State board ', '', '', '2013', 81.00, '', 1, '2023-06-05 11:23:31', 0, NULL, 0, NULL, 1),
(16589, 13075, '2', 'State board ', '', '', '2015', 77.00, '', 1, '2023-06-05 11:24:02', 0, NULL, 0, NULL, 1),
(16590, 13080, '4', 'Government arts college for women pudukottai ', '', 'M.Sc maths', '2021', 9.50, '', 1, '2023-06-05 11:41:13', 0, NULL, 0, NULL, 1),
(16591, 13077, '3', 'University of madras', '', 'Bca', '2022', 76.00, '', 1, '2023-06-05 11:42:58', 0, NULL, 0, NULL, 1),
(16592, 13076, '3', 'University of Madras', '', 'B.com', '2021', 85.00, '', 1, '2023-06-05 11:43:08', 0, NULL, 0, NULL, 1),
(16593, 13079, '3', 'Madras university', '', 'B.com general', '2020', 70.00, '', 1, '2023-06-05 11:43:43', 0, NULL, 0, NULL, 1),
(16594, 13078, '3', 'University of Madras ', '', 'B.com (corporate secrataryship)', '2023', 70.00, '', 1, '2023-06-05 11:50:39', 0, NULL, 0, NULL, 1),
(16595, 13081, '3', 'Anna University ', '', 'B.E Mechanical ', '2022', 76.40, '', 1, '2023-06-05 12:05:06', 0, NULL, 0, NULL, 1),
(16596, 13082, '3', 'KSR COLLEGE OF ENGINEERING ', '', 'BE(ECE)', '2023', 89.00, '', 1, '2023-06-05 12:10:42', 0, NULL, 0, NULL, 1),
(16597, 13084, '3', 'KSR COLLEGE OF ENGINEERING ', '', 'BE-ECE', '2023', 8.10, '', 1, '2023-06-05 12:14:09', 0, NULL, 0, NULL, 1),
(16598, 13083, '4', 'Anna University ', '', 'MBA ( HR and Finance)', '2023', 75.00, '', 1, '2023-06-05 12:16:48', 1, '2023-06-05 12:17:50', 0, NULL, 1),
(16599, 13085, '4', 'Dr.MGR UNIVERSITY ', '', 'MBA FINANCIAL MANAGEMEN ', '2023', 75.00, '', 1, '2023-06-05 12:38:59', 0, NULL, 0, NULL, 1),
(16600, 13087, '3', 'Madras University ', '', 'BCOM ', '2023', 81.00, '', 1, '2023-06-05 12:52:52', 0, NULL, 0, NULL, 1),
(16601, 13087, '2', 'State board ', '', '', '2020', 83.00, '', 1, '2023-06-05 12:54:20', 0, NULL, 0, NULL, 1),
(16602, 13087, '1', 'State board ', '', '', '2018', 82.00, '', 1, '2023-06-05 12:55:05', 0, NULL, 0, NULL, 1),
(16603, 13088, '3', 'Madras University ', '', 'B.com', '2023', 83.00, '', 1, '2023-06-05 01:04:16', 0, NULL, 0, NULL, 1),
(16604, 13088, '2', 'State board', '', '', '2020', 86.00, '', 1, '2023-06-05 01:04:37', 0, NULL, 0, NULL, 1),
(16605, 13088, '1', 'State board ', '', '', '2018', 89.00, '', 1, '2023-06-05 01:05:05', 0, NULL, 0, NULL, 1),
(16606, 13086, '3', 'Dg vaishnav college', '', 'Bsc computer science ', '2021', 63.00, '', 1, '2023-06-05 01:18:28', 0, NULL, 0, NULL, 1),
(16607, 13086, '4', 'Dr.mgr University ', '', 'MCA', '2023', 75.00, '', 1, '2023-06-05 01:18:53', 0, NULL, 0, NULL, 1),
(16608, 13092, '3', 'Anna university ', '', 'Bachelor of Engineering', '2022', 85.00, '', 1, '2023-06-05 01:30:35', 0, NULL, 0, NULL, 1),
(16609, 13093, '3', 'Bharadhidasan University', '', 'BCA', '2023', 70.00, '', 1, '2023-06-05 01:47:24', 0, NULL, 0, NULL, 1),
(16610, 13089, '4', 'MGR UNIVERSITY ', '', 'MBA /HRM/SCM', '2022', 80.00, '', 1, '2023-06-05 01:52:16', 0, NULL, 0, NULL, 1),
(16611, 13094, '3', 'Anna University', '', 'B. E ', '2023', 87.40, '', 1, '2023-06-05 02:09:29', 0, NULL, 0, NULL, 1),
(16612, 13094, '2', 'State Board', '', '', '2019', 73.00, '', 1, '2023-06-05 02:09:46', 0, NULL, 0, NULL, 1),
(16613, 13094, '1', 'State Board', '', '', '2017', 92.00, '', 1, '2023-06-05 02:10:02', 0, NULL, 0, NULL, 1),
(16614, 13096, '4', 'Dr.M.G.R University ', '', 'MCA', '2023', 79.00, '', 1, '2023-06-05 02:21:04', 0, NULL, 0, NULL, 1),
(16615, 13096, '3', 'UNOM', '', 'B.sc', '2018', 72.00, '', 1, '2023-06-05 02:21:26', 0, NULL, 0, NULL, 1),
(16616, 13096, '2', 'TN Board', '', '', '2015', 69.00, '', 1, '2023-06-05 02:21:44', 0, NULL, 0, NULL, 1),
(16617, 13096, '1', 'TN Board', '', '', '2013', 75.00, '', 1, '2023-06-05 02:22:02', 0, NULL, 0, NULL, 1),
(16618, 13095, '4', 'Autonomous ', '', 'MCA', '2023', 8.10, '', 1, '2023-06-05 02:22:31', 0, NULL, 0, NULL, 1),
(16619, 13097, '5', '2023', '', 'Dipoloma', '2023', 72.00, '', 1, '2023-06-05 02:58:08', 0, NULL, 0, NULL, 1),
(16620, 13099, '3', 'VTU', '', 'B.E', '2020', 72.00, '', 1, '2023-06-05 07:00:29', 0, NULL, 0, NULL, 1),
(16621, 13100, '3', 'The New college ', '', 'BBA(Business administration)', '2023', 65.00, '', 1, '2023-06-05 07:27:15', 0, NULL, 0, NULL, 1),
(16622, 13098, '4', 'sathyabama university ', '', 'be cse', '2022', 70.00, '', 1, '2023-06-06 12:04:09', 0, NULL, 0, NULL, 1),
(16623, 13102, '4', 'Madras Christian College', '', 'MCA', '2023', 81.00, '', 1, '2023-06-06 09:44:41', 0, NULL, 0, NULL, 1),
(16624, 13102, '3', 'Crescent university,vandalur', '', 'BCA', '2021', 73.00, '', 1, '2023-06-06 09:45:08', 0, NULL, 0, NULL, 1),
(16625, 13102, '2', 'State board', '', '', '2018', 82.00, '', 1, '2023-06-06 09:46:54', 0, NULL, 0, NULL, 1),
(16626, 13102, '1', 'State board', '', '', '2016', 89.00, '', 1, '2023-06-06 09:47:21', 0, NULL, 0, NULL, 1),
(16627, 13101, '4', 'Madras University', '', 'Mca', '2023', 77.00, '', 1, '2023-06-06 09:52:31', 0, NULL, 0, NULL, 1),
(16628, 13101, '3', 'Crescent university', '', 'Bca', '2020', 81.00, '', 1, '2023-06-06 09:52:50', 0, NULL, 0, NULL, 1),
(16629, 13101, '2', 'State board', '', '', '2017', 63.00, '', 1, '2023-06-06 09:53:05', 0, NULL, 0, NULL, 1),
(16630, 13101, '1', 'State board', '', '', '2015', 94.00, '', 1, '2023-06-06 09:53:19', 0, NULL, 0, NULL, 1),
(16631, 13104, '3', 'Anna University ', '', 'B.E automobile Engineering ', '2023', 8.70, '', 1, '2023-06-06 10:25:28', 0, NULL, 0, NULL, 1),
(16632, 13105, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2023', 8.75, '', 1, '2023-06-06 10:25:31', 0, NULL, 0, NULL, 1),
(16633, 13104, '5', 'Dote', '', 'Diploma in Automobile Engineering ', '2019', 86.00, '', 1, '2023-06-06 10:26:07', 0, NULL, 0, NULL, 1),
(16634, 13105, '5', 'Dote', '', 'Diploma in Automobile Engineering ', '2020', 80.00, '', 1, '2023-06-06 10:26:15', 0, NULL, 0, NULL, 1),
(16635, 13105, '1', 'State Board ', '', '', '2017', 74.40, '', 1, '2023-06-06 10:26:36', 0, NULL, 0, NULL, 1),
(16636, 13104, '1', 'State board ', '', '', '2016', 91.00, '', 1, '2023-06-06 10:26:41', 0, NULL, 0, NULL, 1),
(16637, 13103, '4', 'University of Madras ', '', 'Economics ', '2023', 70.00, '', 1, '2023-06-06 10:27:44', 1, '2023-06-06 10:29:36', 0, NULL, 1),
(16638, 13106, '3', 'bharathidasan university', '', 'BBA', '2023', 65.00, '', 1, '2023-06-06 10:41:35', 0, NULL, 0, NULL, 1),
(16639, 13107, '3', 'Hindu college ', '', 'BCA', '2022', 80.00, '', 1, '2023-06-06 10:47:48', 0, NULL, 0, NULL, 1),
(16640, 13108, '3', 'Anna University ', '', 'BE', '2022', 7.70, '', 1, '2023-06-06 11:06:51', 0, NULL, 0, NULL, 1),
(16641, 13115, '2', 'TAMILNADU STATE BOARD ', '', '', '2017', 72.00, '', 1, '2023-06-06 11:17:14', 0, NULL, 0, NULL, 1),
(16642, 13115, '3', 'Anna University ', '', 'BE', '2021', 78.00, '', 1, '2023-06-06 11:17:52', 0, NULL, 0, NULL, 1),
(16643, 13113, '4', 'MEASI INSTITUTE OF INFORMATION TECHNOLOGY (UNIVERSITY OF MADRAS)', '', 'MCA ', '2023', 90.00, '', 1, '2023-06-06 11:23:29', 0, NULL, 0, NULL, 1),
(16644, 13114, '4', 'measi institute of information technology', '', 'mca', '2023', 83.00, '', 1, '2023-06-06 11:23:46', 0, NULL, 0, NULL, 1),
(16645, 13116, '3', 'Muzharul uloom college', '', 'BBA', '2016', 60.00, '', 1, '2023-06-06 11:37:50', 0, NULL, 0, NULL, 1),
(16646, 13117, '3', 'sathyabama university', '', 'be cse', '2022', 6.65, '', 1, '2023-06-06 12:13:13', 0, NULL, 0, NULL, 1),
(16647, 13118, '3', 'sathyabama university', '', 'be cse', '2022', 68.00, '', 1, '2023-06-06 12:15:41', 0, NULL, 0, NULL, 1),
(16648, 13119, '3', 'PERIYAR UNIVERSITY ', '', 'B.A ( PUBLIC ADMINISTRATION)', '2019', 70.00, '', 1, '2023-06-06 12:57:51', 0, NULL, 0, NULL, 1),
(16649, 13120, '3', 'JBAS Madras University ', '', 'BA corporate Economic ', '2016', 70.00, '', 1, '2023-06-06 03:40:46', 0, NULL, 0, NULL, 1),
(16650, 13122, '3', 'Vinayaga missions university ', '', 'bE.Mechanical', '2019', 70.00, '', 1, '2023-06-06 04:58:17', 0, NULL, 0, NULL, 1),
(16651, 13125, '3', 'Apollo arts and science college ', '', 'Bsc computer science ', '2023', 75.00, '', 1, '2023-06-07 10:27:32', 0, NULL, 0, NULL, 1),
(16652, 13126, '3', 'Madras University ', '', 'B.sc', '2023', 83.00, '', 1, '2023-06-07 10:45:26', 0, NULL, 0, NULL, 1),
(16653, 13127, '3', 'Bharadhidasan University ', '', 'B.sc', '2003', 81.00, '', 1, '2023-06-07 10:57:43', 0, NULL, 0, NULL, 1),
(16654, 13123, '2', 'No', '', '', '2023', 70.00, '', 1, '2023-06-07 11:30:24', 0, NULL, 0, NULL, 1),
(16655, 13128, '3', 'Bharathidasan ', '', 'B com', '2020', 72.00, '', 1, '2023-06-07 11:40:30', 0, NULL, 0, NULL, 1),
(16656, 13130, '4', 'The American College', '', 'MCA', '2022', 77.00, '', 1, '2023-06-07 11:57:39', 0, NULL, 0, NULL, 1),
(16657, 13129, '3', 'stella maris', '', 'b voc', '2023', 77.00, '', 1, '2023-06-07 12:13:06', 0, NULL, 0, NULL, 1),
(16658, 13131, '3', 'd b jain college ', '', 'b c a', '2014', 75.00, '', 1, '2023-06-07 12:58:00', 0, NULL, 0, NULL, 1),
(16659, 13132, '4', 'university of madras', '', 'physics', '2023', 78.00, '', 1, '2023-06-07 01:01:53', 0, NULL, 0, NULL, 1),
(16660, 13133, '3', 'anna university', '', 'b.e', '2022', 8.14, '', 1, '2023-06-07 01:13:47', 0, NULL, 0, NULL, 1),
(16661, 13133, '2', 'state board', '', '', '2016', 75.00, '', 1, '2023-06-07 01:14:41', 0, NULL, 0, NULL, 1),
(16662, 13133, '1', 'state board', '', '', '2018', 56.00, '', 1, '2023-06-07 01:15:03', 0, NULL, 0, NULL, 1),
(16663, 13134, '3', 'Madras University ', '', 'B.sc ', '2019', 70.00, '', 1, '2023-06-07 01:44:02', 0, NULL, 0, NULL, 1),
(16664, 13135, '3', 'Anna University ', '', 'BE', '2022', 78.00, '', 1, '2023-06-08 10:13:44', 0, NULL, 0, NULL, 1),
(16665, 13137, '3', 'madras university', '', 'b a', '2021', 50.00, '', 1, '2023-06-08 10:17:41', 0, NULL, 0, NULL, 1),
(16666, 13136, '3', 'Anna University ', '', 'BE', '2022', 79.00, '', 1, '2023-06-08 10:36:10', 0, NULL, 0, NULL, 1),
(16667, 13138, '3', 'University ', '', 'B.voc tourism and hospitality ', '2023', 80.00, '', 1, '2023-06-08 11:09:33', 0, NULL, 0, NULL, 1),
(16668, 13139, '3', 'Madras ', '', 'Bsc mathematics', '2021', 60.00, '', 1, '2023-06-08 01:09:58', 0, NULL, 0, NULL, 1),
(16669, 13140, '3', 'Quiad e milath government college for women ', '', 'BA English literature ', '2023', 68.00, '', 1, '2023-06-08 02:15:23', 0, NULL, 0, NULL, 1),
(16670, 13141, '3', 'Madras University ', '', 'Ba ', '2023', 63.00, '', 1, '2023-06-08 02:28:46', 0, NULL, 0, NULL, 1),
(16671, 13142, '3', 'Anna University ', '', 'B.E', '2023', 82.00, '', 1, '2023-06-08 04:19:26', 0, NULL, 0, NULL, 1),
(16672, 13144, '3', 'MADRAS UNIVERSITY ', '', 'BACHELOR OF COMMERCE ', '2023', 70.00, '', 1, '2023-06-08 07:54:02', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(16673, 13145, '3', 'Thiruvalluvar University', '', 'BBA', '2021', 63.00, '', 1, '2023-06-09 09:58:35', 0, NULL, 0, NULL, 1),
(16674, 13146, '3', 'University ', '', 'BCA', '2021', 55.00, '', 1, '2023-06-09 11:08:45', 0, NULL, 0, NULL, 1),
(16675, 13147, '3', 'Tamilnadu Agriculture University ', '', 'BSC ', '2021', 76.00, '', 1, '2023-06-09 11:17:53', 0, NULL, 0, NULL, 1),
(16676, 13149, '2', 'Jaigopal garodia ', '', '', '2017', 62.00, '', 1, '2023-06-09 11:59:07', 0, NULL, 0, NULL, 1),
(16677, 13150, '4', 'Anna University ', '', 'Mba', '2023', 70.68, '', 1, '2023-06-09 12:32:18', 0, NULL, 0, NULL, 1),
(16678, 13151, '3', 'Periyar University ', '', 'Bachelor of Science (B.Sc)', '2021', 70.00, '', 1, '2023-06-09 12:42:46', 0, NULL, 0, NULL, 1),
(16679, 13152, '3', 'Thiruvalluvar University ', '', 'BCA', '2022', 7.90, '', 1, '2023-06-09 01:03:29', 0, NULL, 0, NULL, 1),
(16680, 13154, '3', 'akt memorial college of engineering and technology', '', 'be', '2022', 70.00, '', 1, '2023-06-09 03:30:05', 0, NULL, 0, NULL, 1),
(16681, 13156, '5', 'dote', '', 'diploma in electrical and electronics engineering ', '2016', 60.00, '', 1, '2023-06-09 06:36:57', 0, NULL, 0, NULL, 1),
(16682, 13157, '3', 'Bharathidasan University ', '', 'B.com', '2023', 65.00, '', 1, '2023-06-10 09:52:57', 0, NULL, 0, NULL, 1),
(16683, 13158, '3', 'University College of Engineering ', '', 'Bachelor of Engineering', '2018', 72.30, '', 1, '2023-06-10 09:53:49', 1, '2023-06-10 09:54:34', 0, NULL, 0),
(16684, 13158, '2', 'State Board of tamilnadu', '', '', '2014', 89.75, '', 1, '2023-06-10 09:54:17', 1, '2023-06-10 09:54:38', 0, NULL, 0),
(16685, 13158, '1', 'State board of Tamilnadu', '', '', '2012', 89.04, '', 1, '2023-06-10 09:54:56', 0, NULL, 0, NULL, 1),
(16686, 13158, '2', 'State board of Tamilnadu', '', '', '2014', 89.75, '', 1, '2023-06-10 09:55:16', 0, NULL, 0, NULL, 1),
(16687, 13158, '3', 'University College of engineering', '', 'Bachelor of engineering', '2018', 72.30, '', 1, '2023-06-10 09:55:40', 0, NULL, 0, NULL, 1),
(16688, 13159, '3', 'Bangalore University', '', 'BBM', '2016', 57.00, '', 1, '2023-06-10 10:12:35', 0, NULL, 0, NULL, 1),
(16689, 13160, '3', 'RVS EDUCATIONAL INSTITUTION', '', 'Be Biomedical', '2019', 7.30, '', 1, '2023-06-10 11:00:18', 0, NULL, 0, NULL, 1),
(16690, 13161, '3', 'Bharathidhasan University ', '', 'Bcom', '2023', 75.00, '', 1, '2023-06-10 11:22:30', 0, NULL, 0, NULL, 1),
(16691, 13163, '3', 'st peters University ', '', 'b.com cs', '2021', 67.00, '', 1, '2023-06-10 11:38:55', 0, NULL, 0, NULL, 1),
(16692, 13164, '4', 'Anna University', '', 'MCA', '2019', 78.00, '', 1, '2023-06-10 11:48:24', 0, NULL, 0, NULL, 1),
(16693, 13165, '3', 'Madras university ', '', 'B. Com ', '2019', 75.00, '', 1, '2023-06-10 11:53:40', 0, NULL, 0, NULL, 1),
(16694, 13153, '4', 'Anna University ', '', 'MCA ', '2019', 79.00, '', 1, '2023-06-10 02:45:00', 0, NULL, 0, NULL, 1),
(16695, 13166, '3', 'Thiruvalluvar ', '', 'BBA ', '2023', 70.00, '', 1, '2023-06-10 04:07:28', 0, NULL, 0, NULL, 1),
(16696, 13167, '4', 'University ', '', 'Mba', '2021', 8.43, '', 1, '2023-06-11 08:59:04', 0, NULL, 0, NULL, 1),
(16697, 13168, '3', 'loyola college chennai', '', 'b a economics', '2023', 6.50, '', 1, '2023-06-12 07:55:58', 0, NULL, 0, NULL, 1),
(16698, 13169, '3', 'University of Madras ', '', 'B.com CA', '2023', 84.00, '', 1, '2023-06-12 10:16:39', 0, NULL, 0, NULL, 1),
(16699, 13170, '4', 'Panimalar engineering college ', '', 'MBA', '2023', 78.00, '', 1, '2023-06-12 10:19:03', 1, '2023-06-12 10:19:56', 0, NULL, 1),
(16700, 13170, '3', 'Sathyabama institute of science and technology ', '', 'BSC computer science ', '2021', 79.00, '', 1, '2023-06-12 10:19:41', 0, NULL, 0, NULL, 1),
(16701, 13171, '3', 'Madras university', '', 'B com', '2023', 84.00, '', 1, '2023-06-12 10:20:13', 0, NULL, 0, NULL, 1),
(16702, 13172, '3', 'Anna university', '', 'B. E. ', '2023', 80.00, '', 1, '2023-06-12 10:23:20', 1, '2023-06-12 10:24:42', 0, NULL, 1),
(16703, 13172, '1', 'Tamilnadu', '', '', '2017', 88.00, '', 1, '2023-06-12 10:24:10', 0, NULL, 0, NULL, 1),
(16704, 13172, '2', 'Tamilnadu', '', '', '2019', 57.00, '', 1, '2023-06-12 10:25:13', 0, NULL, 0, NULL, 1),
(16705, 13173, '3', 'Mahendra Engineering College', '', 'BE Mechanical ', '2018', 71.00, '', 1, '2023-06-12 10:41:29', 0, NULL, 0, NULL, 1),
(16706, 13178, '4', 'University of Madras', '', 'M. Sc Information technology', '2023', 77.00, '', 1, '2023-06-12 10:49:35', 0, NULL, 0, NULL, 1),
(16707, 13174, '3', 'Vels Institute of Science Technology and Advanced Studies', '', 'B.E (COMPUTER SCIENCE)', '2023', 72.00, '', 1, '2023-06-12 10:49:56', 0, NULL, 0, NULL, 1),
(16708, 13176, '3', 'Vels Institute Of Science Technology And Advanced Science ', '', 'B.E', '2023', 68.42, '', 1, '2023-06-12 10:50:10', 0, NULL, 0, NULL, 1),
(16709, 13174, '2', 'Tamilnadu State board', '', '', '2019', 55.00, '', 1, '2023-06-12 10:50:38', 0, NULL, 0, NULL, 1),
(16710, 13174, '1', 'Tamilnadu State board', '', '', '2017', 80.40, '', 1, '2023-06-12 10:51:40', 0, NULL, 0, NULL, 1),
(16711, 13177, '3', 'Vels institute Of science technology And advance studies ', '', 'BE Computer science ', '2023', 74.00, '', 1, '2023-06-12 10:51:45', 0, NULL, 0, NULL, 1),
(16712, 13177, '2', 'Vidya ratna PTS matric higher secondary school ', '', '', '2019', 69.00, '', 1, '2023-06-12 10:52:25', 0, NULL, 0, NULL, 1),
(16713, 13177, '1', 'Vidya ratna PTS matric higher secondary school ', '', '', '2017', 91.00, '', 1, '2023-06-12 10:52:49', 0, NULL, 0, NULL, 1),
(16714, 13179, '3', 'University of Madras ', '', 'B.com', '2023', 80.00, '', 1, '2023-06-12 10:55:22', 0, NULL, 0, NULL, 1),
(16715, 13176, '2', 'Christ The King ', '', 'B.E', '2019', 61.00, '', 1, '2023-06-12 10:57:03', 0, NULL, 0, NULL, 1),
(16716, 13176, '1', 'Christ The King ', '', '', '2017', 86.00, '', 1, '2023-06-12 10:57:32', 0, NULL, 0, NULL, 1),
(16717, 13181, '1', 'Christ the  King', '', '', '2017', 75.00, '', 1, '2023-06-12 10:58:41', 0, NULL, 0, NULL, 1),
(16718, 13181, '2', 'Christ the King', '', '', '2019', 62.00, '', 1, '2023-06-12 10:59:12', 0, NULL, 0, NULL, 1),
(16719, 13181, '3', 'Vels University', '', 'BE CSE', '2023', 67.00, '', 1, '2023-06-12 11:00:30', 0, NULL, 0, NULL, 1),
(16720, 13186, '3', 'Anna university ', '', 'B.E', '2020', 59.66, '', 1, '2023-06-12 11:03:32', 0, NULL, 0, NULL, 1),
(16721, 13182, '3', 'The New College(Autonomous) - under Madras University ', '', 'B Sc Computer Science ', '2022', 74.00, '', 1, '2023-06-12 11:04:39', 0, NULL, 0, NULL, 1),
(16722, 13183, '4', 'Anna University ', '', 'MCA', '2022', 85.00, '', 1, '2023-06-12 11:04:55', 0, NULL, 0, NULL, 1),
(16723, 13184, '3', 'Anna University', '', 'B.E(Mechatronics)', '2020', 69.00, '', 1, '2023-06-12 11:05:26', 0, NULL, 0, NULL, 1),
(16724, 13183, '3', 'Madras University ', '', 'BCA', '2020', 62.00, '', 1, '2023-06-12 11:05:36', 0, NULL, 0, NULL, 1),
(16725, 13184, '1', 'Tamilnadu State Board', '', '', '2014', 87.00, '', 1, '2023-06-12 11:06:01', 0, NULL, 0, NULL, 1),
(16726, 13180, '5', 'Dote ', '', 'Diploma in Mechanical Engineering ', '2019', 71.00, '', 1, '2023-06-12 11:06:11', 0, NULL, 0, NULL, 1),
(16727, 13184, '2', 'TamilNadu State Board', '', '', '2016', 74.00, '', 1, '2023-06-12 11:06:28', 0, NULL, 0, NULL, 1),
(16728, 13185, '3', 'Bharathidasan University', '', 'BSC computer science', '2023', 82.00, '', 1, '2023-06-12 11:08:29', 0, NULL, 0, NULL, 1),
(16729, 13187, '4', 'Anna University', '', 'MCA', '2023', 66.00, '', 1, '2023-06-12 11:15:53', 1, '2023-06-12 11:21:59', 0, NULL, 1),
(16730, 13187, '3', 'Manonmaniam University', '', 'Bsc computer science', '2021', 65.00, '', 1, '2023-06-12 11:17:18', 1, '2023-06-12 11:19:47', 0, NULL, 1),
(16731, 13191, '1', 'State board ', '', 'Bachelor computer Application ', '2018', 54.90, '', 1, '2023-06-12 11:18:19', 1, '2023-06-12 11:21:03', 0, NULL, 1),
(16732, 13191, '2', 'State board ', '', '', '2020', 59.00, '', 1, '2023-06-12 11:19:32', 0, NULL, 0, NULL, 1),
(16733, 13188, '1', 'State Board ', '', '', '2015', 74.00, '', 1, '2023-06-12 11:20:06', 0, NULL, 0, NULL, 1),
(16734, 13191, '3', 'Thiruvalluvar university ', '', 'Bachelor computer Application ', '2023', 75.00, '', 1, '2023-06-12 11:20:07', 0, NULL, 0, NULL, 1),
(16735, 13187, '2', 'State Board ', '', '', '2018', 60.00, '', 1, '2023-06-12 11:20:20', 1, '2023-06-12 11:21:53', 0, NULL, 1),
(16736, 13188, '2', 'State Board ', '', '', '2017', 66.00, '', 1, '2023-06-12 11:20:26', 0, NULL, 0, NULL, 1),
(16737, 13187, '1', 'State Board', '', '', '2016', 84.00, '', 1, '2023-06-12 11:21:18', 1, '2023-06-12 11:21:48', 0, NULL, 1),
(16738, 13188, '3', 'manonmaniam sundaranar university', '', 'BCA', '2021', 76.00, '', 1, '2023-06-12 11:21:50', 0, NULL, 0, NULL, 1),
(16739, 13188, '4', 'Anna University ', '', 'MCA', '2021', 77.00, '', 1, '2023-06-12 11:22:31', 0, NULL, 0, NULL, 1),
(16740, 13192, '3', 'Madras University', '', 'B.sc computer science', '2022', 77.00, '', 1, '2023-06-12 11:23:27', 0, NULL, 0, NULL, 1),
(16741, 13193, '1', 'Tamil Nadu State Board ', '', 'B.C.A', '2017', 60.00, '', 1, '2023-06-12 11:24:15', 1, '2023-06-12 11:25:23', 0, NULL, 0),
(16742, 13193, '2', 'Tamil Nadu State Board ', '', '', '2019', 65.00, '', 1, '2023-06-12 11:24:50', 1, '2023-06-12 11:25:20', 0, NULL, 0),
(16743, 13193, '3', 'Madras University ', '', 'B.C.A', '2022', 76.00, '', 1, '2023-06-12 11:25:15', 0, NULL, 0, NULL, 1),
(16744, 13194, '3', 'Anna University ', '', 'BE', '2022', 77.00, '', 1, '2023-06-12 11:34:05', 0, NULL, 0, NULL, 1),
(16745, 13195, '1', 'state board', '', '', '2016', 72.00, '', 1, '2023-06-12 11:48:03', 0, NULL, 0, NULL, 1),
(16746, 13189, '1', 'State board ', '', '', '2016', 84.40, '', 1, '2023-06-12 11:49:42', 0, NULL, 0, NULL, 1),
(16747, 13195, '2', 'state board', '', '', '2018', 55.00, '', 1, '2023-06-12 11:49:55', 0, NULL, 0, NULL, 1),
(16748, 13189, '2', 'State board ', '', '', '2018', 72.00, '', 1, '2023-06-12 11:49:56', 0, NULL, 0, NULL, 1),
(16749, 13189, '3', 'manonmaniam sundaranar University ', '', 'BCA', '2021', 82.00, '', 1, '2023-06-12 11:51:54', 0, NULL, 0, NULL, 1),
(16750, 13195, '3', 'ms university', '', 'bca', '2021', 70.00, '', 1, '2023-06-12 11:52:38', 0, NULL, 0, NULL, 1),
(16751, 13189, '4', 'Anna university ', '', 'MCA', '2023', 75.00, '', 1, '2023-06-12 11:53:39', 0, NULL, 0, NULL, 1),
(16752, 13195, '4', 'anna university', '', 'mca computer Application ', '2023', 75.00, '', 1, '2023-06-12 11:54:19', 0, NULL, 0, NULL, 1),
(16753, 13197, '4', 'University of Madras ', '', 'MSc Computer science ', '2023', 76.00, '', 1, '2023-06-12 12:01:50', 0, NULL, 0, NULL, 1),
(16754, 13198, '3', 'Anna University ', '', 'Bca', '2023', 7.79, '', 1, '2023-06-12 12:20:10', 0, NULL, 0, NULL, 1),
(16755, 13199, '3', 'Sri Krishna College of engineering and technology ', '', 'B.tech ', '2023', 88.30, '', 1, '2023-06-12 12:26:09', 0, NULL, 0, NULL, 1),
(16756, 13200, '1', 'Anna University ', '', '', '2010', 77.00, '', 1, '2023-06-12 12:54:14', 0, NULL, 0, NULL, 1),
(16757, 13202, '3', 'Anna University ', '', 'B.E', '2022', 77.20, '', 1, '2023-06-12 01:03:38', 0, NULL, 0, NULL, 1),
(16758, 13203, '1', 'State board', '', '', '2003', 50.00, '', 1, '2023-06-12 01:14:27', 0, NULL, 0, NULL, 1),
(16759, 13203, '2', 'State board', '', '', '2005', 55.00, '', 1, '2023-06-12 01:14:58', 0, NULL, 0, NULL, 1),
(16760, 13203, '3', 'Thiruvalluvar University', '', 'BCA', '2009', 62.00, '', 1, '2023-06-12 01:15:46', 0, NULL, 0, NULL, 1),
(16761, 13203, '4', 'Bharathidasan University', '', 'MCA', '2013', 67.00, '', 1, '2023-06-12 01:16:22', 0, NULL, 0, NULL, 1),
(16762, 13206, '3', 'Madras University ', '', 'B.com c.s', '2022', 55.00, '', 1, '2023-06-12 03:25:15', 0, NULL, 0, NULL, 1),
(16763, 13205, '3', 'psna college of engeering and tecnology', '', 'Be Computer Science/Engineering', '2023', 7.96, '', 1, '2023-06-12 03:40:37', 0, NULL, 0, NULL, 1),
(16764, 13207, '3', 'Dhanalakshmi Srinivasan college of engineering and technology ', '', 'B tech ', '2017', 60.00, '', 1, '2023-06-12 04:39:53', 0, NULL, 0, NULL, 1),
(16765, 11576, '1', 'SV University Tirupathi ', '', 'B.com', '2022', 75.00, '', 1, '2023-06-12 05:13:24', 0, NULL, 0, NULL, 1),
(16766, 13208, '3', 'Anna university ', '', 'BE computer science engineering ', '2023', 7.59, '', 1, '2023-06-12 07:06:35', 0, NULL, 0, NULL, 1),
(16767, 13190, '3', 'sdnb vaishnav college', '', 'bca', '2022', 83.00, '', 104, '2023-06-12 07:48:33', 0, NULL, 0, NULL, 1),
(16768, 13209, '3', 'Anna University ', '', 'BE(EEE)', '2020', 7.39, '', 1, '2023-06-12 09:20:28', 1, '2023-06-12 09:22:06', 0, NULL, 1),
(16769, 13209, '2', 'Stateboard ', '', '', '2016', 79.00, '', 1, '2023-06-12 09:21:04', 0, NULL, 0, NULL, 1),
(16770, 13209, '1', 'Stateboard ', '', '', '2014', 92.40, '', 1, '2023-06-12 09:22:30', 0, NULL, 0, NULL, 1),
(16771, 13210, '3', 'Anna university', '', 'B.E', '2020', 6.40, '', 1, '2023-06-13 09:19:32', 0, NULL, 0, NULL, 1),
(16772, 13211, '3', 'Chellammal women\'s college ', '', 'B.com', '2022', 70.00, '', 1, '2023-06-13 10:37:44', 0, NULL, 0, NULL, 1),
(16773, 13213, '4', 'Sri Ramachandra Institute of Higher Education and Research ', '', 'M.Sc', '2022', 74.00, '', 1, '2023-06-13 10:44:00', 0, NULL, 0, NULL, 1),
(16774, 13213, '3', 'University of Madras', '', 'B.Sc', '2020', 72.00, '', 1, '2023-06-13 10:44:53', 0, NULL, 0, NULL, 1),
(16775, 13213, '2', 'State Board', '', '', '2017', 57.00, '', 1, '2023-06-13 10:45:44', 1, '2023-06-13 10:45:51', 0, NULL, 0),
(16776, 13212, '3', 'Madras University ', '', 'B.com', '2023', 82.00, '', 1, '2023-06-13 10:48:28', 0, NULL, 0, NULL, 1),
(16777, 13214, '3', 'St Joseph\'s College of Engineering ', '', 'B.E', '2021', 7.80, '', 1, '2023-06-13 10:53:01', 0, NULL, 0, NULL, 1),
(16778, 13215, '3', 'Madras University ', '', 'B.com', '2023', 88.00, '', 1, '2023-06-13 11:05:03', 0, NULL, 0, NULL, 1),
(16779, 13216, '1', 'State board', '', '', '2015', 79.00, '', 1, '2023-06-13 11:15:40', 0, NULL, 0, NULL, 1),
(16780, 13216, '2', 'State board ', '', '', '2017', 65.00, '', 1, '2023-06-13 11:16:14', 0, NULL, 0, NULL, 1),
(16781, 13216, '3', 'MSU', '', 'BCA ', '2020', 7.64, '', 1, '2023-06-13 11:17:06', 0, NULL, 0, NULL, 1),
(16782, 13216, '4', 'Anna University ', '', 'MCA', '2022', 8.08, '', 1, '2023-06-13 11:17:32', 0, NULL, 0, NULL, 1),
(16783, 13217, '3', 'Hnbgu university, uttarakhand', '', 'Bsc. Agriculture', '2021', 67.00, '', 1, '2023-06-13 11:32:14', 0, NULL, 0, NULL, 1),
(16784, 13217, '2', 'Mount park hr sec school -kallakurichi', '', '', '2017', 76.00, '', 1, '2023-06-13 11:33:13', 0, NULL, 0, NULL, 1),
(16785, 13217, '1', 'Tagore matric hr sec school-salem', '', '', '2015', 91.00, '', 1, '2023-06-13 11:33:52', 0, NULL, 0, NULL, 1),
(16786, 13218, '3', 'Thiruvalluvar university ', '', 'Bachelor of computer applications ', '2022', 78.00, '', 1, '2023-06-13 11:47:07', 0, NULL, 0, NULL, 1),
(16787, 13218, '2', 'State board ', '', '', '2019', 50.00, '', 1, '2023-06-13 11:47:42', 0, NULL, 0, NULL, 1),
(16788, 13218, '1', 'State board ', '', '', '2017', 78.00, '', 1, '2023-06-13 11:48:17', 0, NULL, 0, NULL, 1),
(16789, 13221, '4', 'Bharathiyar University ', '', 'MCA', '2023', 80.00, '', 1, '2023-06-13 12:04:20', 0, NULL, 0, NULL, 1),
(16790, 13222, '4', 'Bharathiyar University ', '', 'MCA', '2023', 80.00, '', 1, '2023-06-13 12:04:28', 0, NULL, 0, NULL, 1),
(16791, 13220, '4', 'Bharathiyar University ', '', 'MCA', '2023', 80.00, '', 1, '2023-06-13 12:05:55', 0, NULL, 0, NULL, 1),
(16792, 13219, '3', 'Autonomous (Madras University)', '', 'B.A economic', '2020', 59.00, '', 1, '2023-06-13 12:06:46', 0, NULL, 0, NULL, 1),
(16793, 13224, '3', 'anna university', '', 'b.e', '2022', 84.00, '', 1, '2023-06-13 12:47:29', 0, NULL, 0, NULL, 1),
(16794, 13224, '2', 'state board', '', '', '2017', 58.00, '', 1, '2023-06-13 12:48:16', 1, '2023-06-13 12:49:20', 0, NULL, 1),
(16795, 13225, '3', 'Madras university ', '', 'BBA', '2015', 65.00, '', 1, '2023-06-13 12:51:39', 0, NULL, 0, NULL, 1),
(16796, 13224, '5', 'anna university', '', 'diploma ', '2019', 81.30, '', 1, '2023-06-13 12:53:28', 0, NULL, 0, NULL, 1),
(16797, 13224, '1', 'state board', '', '', '2015', 81.00, '', 1, '2023-06-13 12:53:50', 0, NULL, 0, NULL, 1),
(16798, 13223, '1', 'State Board', '', '', '2014', 79.00, '', 1, '2023-06-13 12:58:35', 0, NULL, 0, NULL, 1),
(16799, 13223, '2', 'State Board', '', '', '2016', 59.00, '', 1, '2023-06-13 12:59:17', 0, NULL, 0, NULL, 1),
(16800, 13226, '3', 'Kamarajar University ', '', 'B.sc.Costume design &Fashion', '2020', 74.60, '', 1, '2023-06-13 01:00:12', 0, NULL, 0, NULL, 1),
(16801, 13223, '3', 'Madras University ', '', 'Bsc computer Science', '2019', 69.00, '', 1, '2023-06-13 01:00:15', 0, NULL, 0, NULL, 1),
(16802, 13223, '4', 'Anna University ', '', 'MCA', '2021', 71.00, '', 1, '2023-06-13 01:00:44', 0, NULL, 0, NULL, 1),
(16803, 13230, '4', 'SVU ', '', 'MSc (CS)', '2022', 6.60, '', 1, '2023-06-13 02:09:43', 0, NULL, 0, NULL, 1),
(16804, 13231, '4', 'JNTU-A ', '', 'MCA', '2022', 76.00, '', 1, '2023-06-13 02:15:33', 0, NULL, 0, NULL, 1),
(16805, 13231, '3', 'Sri venkateshwar University ', '', 'BSc(MPCs)', '2020', 84.00, '', 1, '2023-06-13 02:16:25', 0, NULL, 0, NULL, 1),
(16806, 13232, '4', 'JNTU-A ', '', 'MCA', '2022', 76.00, '', 1, '2023-06-13 02:24:48', 0, NULL, 0, NULL, 1),
(16807, 13232, '3', 'Sri venkateshwar University ', '', 'Bsc', '2020', 84.00, '', 1, '2023-06-13 02:25:12', 0, NULL, 0, NULL, 1),
(16808, 13232, '4', 'JNTU ANATHAPUR', '', 'SVU TIRUPATHI', '2022', 8.25, '', 1, '2023-06-13 02:27:42', 0, NULL, 0, NULL, 1),
(16809, 13235, '3', 'Bharadidhasan University ', '', 'Bca', '2021', 86.00, '', 1, '2023-06-13 02:35:57', 0, NULL, 0, NULL, 1),
(16810, 13234, '1', 'Krishna matriculation school', '', '', '2015', 69.00, '', 1, '2023-06-13 02:39:20', 0, NULL, 0, NULL, 1),
(16811, 13234, '2', 'Mar thoma Matric.higher school ', '', '', '2016', 73.00, '', 1, '2023-06-13 02:41:24', 0, NULL, 0, NULL, 1),
(16812, 13234, '3', 'Madras university ', '', 'BCA', '2019', 78.00, '', 1, '2023-06-13 02:46:02', 0, NULL, 0, NULL, 1),
(16813, 13234, '4', 'Anna university ', '', 'MCA', '2021', 81.00, '', 1, '2023-06-13 02:46:49', 0, NULL, 0, NULL, 1),
(16814, 13236, '4', 'Bharathidasan university ', '', 'M.Sc', '2020', 79.00, '', 1, '2023-06-13 03:06:13', 0, NULL, 0, NULL, 1),
(16815, 13236, '4', 'Bharathidasan university ', '', 'M.Sc', '2020', 79.00, '', 1, '2023-06-13 03:07:17', 0, NULL, 0, NULL, 1),
(16816, 13238, '3', 'annauniversit', '', 'be computerscience', '2012', 60.00, '', 104, '2023-06-13 05:41:29', 104, '2023-06-13 05:57:49', 0, NULL, 1),
(16817, 13237, '3', 'VTU Board', '', 'Bachelor\'s of Engineering ', '2022', 61.32, '', 1, '2023-06-13 10:09:13', 0, NULL, 0, NULL, 1),
(16818, 13240, '3', 'srm university', '', 'bca', '2019', 70.00, '', 1, '2023-06-13 10:28:49', 0, NULL, 0, NULL, 1),
(16819, 13239, '3', 'University of Madras', '', 'Bsc computer science ', '2020', 70.00, '', 1, '2023-06-13 11:23:05', 0, NULL, 0, NULL, 1),
(16820, 13241, '4', 'Anna University ', '', '', '2023', 85.00, '', 1, '2023-06-14 09:19:47', 0, NULL, 0, NULL, 1),
(16821, 13243, '3', 'University ', '', '', '2022', 70.00, '', 1, '2023-06-14 10:20:42', 0, NULL, 0, NULL, 1),
(16822, 13246, '3', 'Madras university', '', 'B. COM', '2019', 64.00, '', 1, '2023-06-14 11:28:44', 0, NULL, 0, NULL, 1),
(16823, 13248, '1', 'State Board ', '', 'B.com(cS)', '2014', 69.00, '', 1, '2023-06-14 11:30:11', 1, '2023-06-14 11:35:18', 0, NULL, 0),
(16824, 13248, '2', 'State board ', '', '', '2016', 73.00, '', 1, '2023-06-14 11:31:05', 1, '2023-06-14 11:35:12', 0, NULL, 0),
(16825, 13249, '3', 'Agni College of Technology ', '', 'Computer Science Engineering ', '2012', 7.50, '', 1, '2023-06-14 11:31:18', 0, NULL, 0, NULL, 1),
(16826, 13248, '3', 'Madras University ', '', 'B.com(cS)', '2019', 59.00, '', 1, '2023-06-14 11:34:31', 1, '2023-06-14 11:35:07', 0, NULL, 0),
(16827, 13248, '3', 'Madras University ', '', 'B.com(CS)', '2019', 59.00, '', 1, '2023-06-14 11:36:10', 0, NULL, 0, NULL, 1),
(16828, 13250, '3', 'Bangalore University ', '', 'Bsc', '2019', 7.27, '', 1, '2023-06-14 11:37:42', 0, NULL, 0, NULL, 1),
(16829, 13251, '3', 'Madras University ', '', 'B.com(CS)', '2019', 59.00, '', 1, '2023-06-14 11:52:26', 0, NULL, 0, NULL, 1),
(16830, 13253, '4', 'Dr. MGR University', '', 'Mca', '2020', 7.40, '', 1, '2023-06-14 12:05:41', 0, NULL, 0, NULL, 1),
(16831, 13253, '3', 'Madras university', '', 'Bca', '2018', 60.00, '', 1, '2023-06-14 12:06:13', 0, NULL, 0, NULL, 1),
(16832, 13253, '2', 'CBSE', '', '', '2015', 60.00, '', 1, '2023-06-14 12:06:42', 0, NULL, 0, NULL, 1),
(16833, 13252, '3', 'Madras University ', '', 'B.com', '2018', 61.00, '', 1, '2023-06-14 12:28:51', 0, NULL, 0, NULL, 1),
(16834, 13255, '3', 'BHARAT UNIVERSITY ', '', 'B.TECH', '2023', 72.30, '', 1, '2023-06-14 12:29:19', 0, NULL, 0, NULL, 1),
(16835, 13254, '3', 'University ', '', 'BTech ', '2023', 82.00, '', 1, '2023-06-14 12:33:31', 0, NULL, 0, NULL, 1),
(16836, 13256, '3', 'Madras University ', '', 'B.com', '2023', 75.00, '', 1, '2023-06-14 01:07:38', 0, NULL, 0, NULL, 1),
(16837, 13245, '3', 'rks inter college', '', 'BBA', '2023', 70.00, '', 85, '2023-06-14 01:09:05', 0, NULL, 0, NULL, 1),
(16838, 13257, '4', 'Bharathidasan University Trichy ', '', 'MCA ', '2018', 75.00, '', 1, '2023-06-14 01:46:45', 1, '2023-06-14 01:47:55', 0, NULL, 1),
(16839, 13257, '3', 'Bharathidasan University ', '', 'BCA ', '2015', 71.00, '', 1, '2023-06-14 01:48:24', 0, NULL, 0, NULL, 1),
(16840, 13258, '3', 'Anna University ', '', 'B.E', '2015', 70.00, '', 1, '2023-06-14 02:18:29', 0, NULL, 0, NULL, 1),
(16841, 13259, '3', 'Madras University ', '', 'B.com', '2023', 62.00, '', 1, '2023-06-14 04:09:02', 0, NULL, 0, NULL, 1),
(16842, 13260, '2', 'Ganapathy high school', '', '', '2014', 75.00, '', 1, '2023-06-14 04:19:16', 0, NULL, 0, NULL, 1),
(16843, 13260, '1', 'Seventh day Adventist higher secondary school ', '', '', '2012', 64.80, '', 1, '2023-06-14 04:21:34', 0, NULL, 0, NULL, 1),
(16844, 13261, '3', 'Bharathidasan University, Thiruchirapalli', '', 'B.Sc Physics', '2022', 68.00, '', 1, '2023-06-14 06:52:34', 0, NULL, 0, NULL, 1),
(16845, 13261, '2', 'State Board of Tamil Nadu ', '', '', '2019', 60.00, '', 1, '2023-06-14 06:53:16', 0, NULL, 0, NULL, 1),
(16846, 13261, '1', 'State Board of Tamil Nadu ', '', '', '2017', 87.00, '', 1, '2023-06-14 06:53:33', 0, NULL, 0, NULL, 1),
(16847, 13262, '3', 'University of Mysore ', '', 'B com', '2022', 72.00, '', 1, '2023-06-14 07:52:32', 0, NULL, 0, NULL, 1),
(16848, 13265, '3', 'Anna University ', '', 'BE - ECE', '2023', 77.00, '', 1, '2023-06-15 09:31:12', 0, NULL, 0, NULL, 1),
(16849, 13266, '3', 'Anna University', '', 'B.e (ECE)', '2023', 73.00, '', 1, '2023-06-15 09:31:14', 0, NULL, 0, NULL, 1),
(16850, 13264, '3', 'anna university', '', 'b.e.cse', '2023', 72.00, '', 1, '2023-06-15 09:31:26', 0, NULL, 0, NULL, 1),
(16851, 13267, '4', 'Annamalai University ', '', 'Master of computer Applications ', '2023', 82.00, '', 1, '2023-06-15 10:13:22', 0, NULL, 0, NULL, 1),
(16852, 13267, '3', 'Thiruvalluvar University ', '', 'Bachelor of computer Applications ', '2021', 72.00, '', 1, '2023-06-15 10:14:07', 0, NULL, 0, NULL, 1),
(16853, 13267, '2', 'State board ', '', '', '2018', 64.00, '', 1, '2023-06-15 10:15:12', 0, NULL, 0, NULL, 1),
(16854, 13267, '1', 'State board ', '', '', '2016', 74.00, '', 1, '2023-06-15 10:15:41', 0, NULL, 0, NULL, 1),
(16855, 13268, '1', 'Medras University ', '', '', '2022', 78.00, '', 1, '2023-06-15 10:58:53', 0, NULL, 0, NULL, 1),
(16856, 13269, '1', 'state board', '', '', '2016', 88.00, '', 1, '2023-06-15 10:59:31', 0, NULL, 0, NULL, 1),
(16857, 13269, '2', 'state board', '', '', '2018', 77.00, '', 1, '2023-06-15 10:59:50', 0, NULL, 0, NULL, 1),
(16858, 13269, '3', 'autonomous', '', 'civil engineering', '2022', 76.00, '', 1, '2023-06-15 11:00:29', 0, NULL, 0, NULL, 1),
(16859, 13271, '3', 'SRM University ', '', 'B. tech', '2019', 75.00, '', 1, '2023-06-15 11:09:43', 0, NULL, 0, NULL, 1),
(16860, 13270, '2', 'State board', '', '', '2018', 58.00, '', 1, '2023-06-15 11:13:14', 0, NULL, 0, NULL, 1),
(16861, 13272, '2', 'fatima.mat.hr.sec.school', '', '', '2017', 90.20, '', 1, '2023-06-15 11:16:28', 0, NULL, 0, NULL, 1),
(16862, 13272, '1', 'stateboard', '', '', '2019', 53.30, '', 1, '2023-06-15 11:16:51', 0, NULL, 0, NULL, 1),
(16863, 13272, '3', 'loyola icam college of engineering and technology', '', 'be', '2023', 72.00, '', 1, '2023-06-15 11:17:28', 0, NULL, 0, NULL, 1),
(16864, 13274, '4', 'Anna University ', '', 'MBA', '2023', 79.00, '', 1, '2023-06-15 11:28:19', 0, NULL, 0, NULL, 1),
(16865, 13273, '4', 'anna university', '', 'mba', '2023', 82.00, '', 1, '2023-06-15 11:28:43', 0, NULL, 0, NULL, 1),
(16866, 13274, '1', 'CBSE', '', '', '2016', 60.00, '', 1, '2023-06-15 11:29:27', 1, '2023-06-15 11:32:28', 0, NULL, 0),
(16867, 13273, '3', 'madras university', '', 'bba', '2021', 72.00, '', 1, '2023-06-15 11:29:33', 0, NULL, 0, NULL, 1),
(16868, 13273, '2', 'state board', '', '', '2018', 87.00, '', 1, '2023-06-15 11:30:16', 0, NULL, 0, NULL, 1),
(16869, 13274, '2', 'CBSE', '', '', '2016', 69.00, '', 1, '2023-06-15 11:30:30', 1, '2023-06-15 11:32:12', 0, NULL, 0),
(16870, 13273, '1', 'state board', '', '', '2016', 69.00, '', 1, '2023-06-15 11:30:50', 0, NULL, 0, NULL, 1),
(16871, 13274, '3', 'Anna University ', '', 'B.com(A&F)', '2021', 78.00, '', 1, '2023-06-15 11:31:24', 0, NULL, 0, NULL, 1),
(16872, 13274, '1', 'CBSE', '', '', '2016', 60.00, '', 1, '2023-06-15 11:32:51', 0, NULL, 0, NULL, 1),
(16873, 13274, '2', 'CBSE ', '', '', '2018', 69.00, '', 1, '2023-06-15 11:33:37', 0, NULL, 0, NULL, 1),
(16874, 13276, '3', 'Dr mGR university ', '', 'BCA', '2023', 80.00, '', 1, '2023-06-15 11:48:18', 0, NULL, 0, NULL, 1),
(16875, 13275, '4', 'Anna University ', '', 'MBA', '2023', 79.00, '', 1, '2023-06-15 12:00:08', 0, NULL, 0, NULL, 1),
(16876, 13275, '1', 'State board ', '', '', '2016', 74.00, '', 1, '2023-06-15 12:01:31', 0, NULL, 0, NULL, 1),
(16877, 13275, '2', 'State board ', '', '', '2018', 84.00, '', 1, '2023-06-15 12:02:01', 0, NULL, 0, NULL, 1),
(16878, 13275, '3', 'Madras University ', '', 'B COM GENERAL ', '2021', 78.00, '', 1, '2023-06-15 12:02:43', 0, NULL, 0, NULL, 1),
(16879, 13280, '3', 'Madras University ', '', 'BBA', '2022', 72.00, '', 1, '2023-06-15 12:11:11', 0, NULL, 0, NULL, 1),
(16880, 13278, '5', 'Anna University ', '', 'Dip in cSE', '2022', 72.00, '', 1, '2023-06-15 12:11:47', 0, NULL, 0, NULL, 1),
(16881, 13282, '3', 'Anna university', '', 'BE', '2022', 81.50, '', 1, '2023-06-15 12:22:31', 0, NULL, 0, NULL, 1),
(16882, 13282, '2', 'State board', '', '', '2018', 78.00, '', 1, '2023-06-15 12:22:54', 0, NULL, 0, NULL, 1),
(16883, 13282, '1', 'State board', '', '', '2016', 88.00, '', 1, '2023-06-15 12:23:09', 0, NULL, 0, NULL, 1),
(16884, 13279, '3', 'Madras University ', '', 'BBA', '2022', 72.00, '', 1, '2023-06-15 12:25:05', 0, NULL, 0, NULL, 1),
(16885, 13283, '4', 'Alagabpa University ', '', 'Msc', '2023', 89.00, '', 1, '2023-06-15 12:48:29', 0, NULL, 0, NULL, 1),
(16886, 13284, '3', 'Meenakshi academy of higher education and research ', '', 'B.com general ', '2022', 78.60, '', 1, '2023-06-15 01:09:43', 0, NULL, 0, NULL, 1),
(16887, 13284, '2', 'Dr.K.K nirmala girls hr sec school ', '', '', '2019', 53.50, '', 1, '2023-06-15 01:11:09', 0, NULL, 0, NULL, 1),
(16888, 13284, '1', 'Dr.K.K Nirmala girl hr sec school ', '', '', '2017', 60.20, '', 1, '2023-06-15 01:11:42', 0, NULL, 0, NULL, 1),
(16889, 13285, '3', 'Madras university', '', 'B. A economic', '2023', 61.00, '', 1, '2023-06-15 03:15:46', 0, NULL, 0, NULL, 1),
(16890, 13286, '3', 'University ', '', 'Bsc ', '2016', 70.00, '', 1, '2023-06-15 03:30:54', 0, NULL, 0, NULL, 1),
(16891, 13281, '3', 'QUEEN MARYS', '', 'B SC', '2021', 76.00, '', 101, '2023-06-15 08:05:02', 0, NULL, 0, NULL, 1),
(16892, 13289, '3', 'madras University ', '', 'B.com general ', '2023', 69.00, '', 1, '2023-06-16 10:02:56', 0, NULL, 0, NULL, 1),
(16893, 13290, '3', 'Park college of technology ', '', 'BE', '2022', 7.88, '', 1, '2023-06-16 10:33:08', 0, NULL, 0, NULL, 1),
(16894, 13291, '3', 'Anna University ', '', 'Btech', '2022', 82.00, '', 1, '2023-06-16 10:35:24', 0, NULL, 0, NULL, 1),
(16895, 13292, '3', 'University of Madras ', '', 'B.com', '2021', 70.00, '', 1, '2023-06-16 11:28:38', 0, NULL, 0, NULL, 1),
(16896, 13293, '3', 'Madras university', '', 'BA.English literature ', '2023', 65.00, '', 1, '2023-06-16 12:32:51', 0, NULL, 0, NULL, 1),
(16897, 13294, '3', 'Gayatri vidya parishad', '', 'B-TECH ', '2021', 74.00, '', 1, '2023-06-16 12:42:42', 0, NULL, 0, NULL, 1),
(16898, 13294, '2', 'Board of intermediate education', '', '', '2017', 97.00, '', 1, '2023-06-16 12:43:18', 0, NULL, 0, NULL, 1),
(16899, 13294, '1', 'Secondary school certificate', '', '', '2015', 86.00, '', 1, '2023-06-16 12:44:21', 0, NULL, 0, NULL, 1),
(16900, 13297, '2', 'Board', '', '', '2021', 50.00, '', 1, '2023-06-16 06:43:45', 0, NULL, 0, NULL, 1),
(16901, 13298, '4', 'Presidency college', '', 'Physics', '2023', 76.70, '', 1, '2023-06-16 06:57:23', 0, NULL, 0, NULL, 1),
(16902, 13296, '3', 'Bharathi Women\'s College', '', 'B.A. English Literature', '2023', 75.00, '', 1, '2023-06-17 02:49:49', 0, NULL, 0, NULL, 1),
(16903, 13296, '2', 'Kalaimagal viddyalaiya Matriculation Higher Secondary School', '', '', '2019', 70.00, '', 1, '2023-06-17 02:52:05', 0, NULL, 0, NULL, 1),
(16904, 13296, '1', 'St.Kevin\'s Anglo Indian High School', '', '', '2016', 70.00, '', 1, '2023-06-17 02:53:05', 0, NULL, 0, NULL, 1),
(16905, 13300, '4', 'guru nanak College ', '', 'mba', '2022', 67.00, '', 1, '2023-06-17 11:59:02', 0, NULL, 0, NULL, 1),
(16906, 13300, '3', 'veles univercity ', '', 'bcom ', '2020', 65.00, '', 1, '2023-06-17 12:00:55', 0, NULL, 0, NULL, 1),
(16907, 13300, '2', 'littel flower ', '', '', '2017', 62.00, '', 1, '2023-06-17 12:02:40', 0, NULL, 0, NULL, 1),
(16908, 13300, '1', 'vivekananda vidlya ', '', '', '2015', 7.20, '', 1, '2023-06-17 12:04:30', 0, NULL, 0, NULL, 1),
(16909, 13302, '3', 'Jerusalem college of Engg', '', 'B. E', '2020', 62.00, '', 1, '2023-06-17 12:25:51', 1, '2023-06-17 12:28:38', 0, NULL, 0),
(16910, 13303, '3', 'Anna University ', '', 'B.E', '2021', 86.00, '', 1, '2023-06-17 12:26:24', 0, NULL, 0, NULL, 1),
(16911, 13301, '1', 'State Board ', '', '', '2011', 71.00, '', 1, '2023-06-17 12:27:55', 1, '2023-06-17 12:28:49', 0, NULL, 0),
(16912, 13301, '2', 'State Board ', '', '', '2013', 65.33, '', 1, '2023-06-17 12:28:27', 1, '2023-06-17 12:28:48', 0, NULL, 0),
(16913, 13302, '3', 'Jerusalem college of Engg', '', 'B. E', '2020', 62.00, '', 1, '2023-06-17 12:29:27', 0, NULL, 0, NULL, 1),
(16914, 13299, '3', 'Anna University ', '', 'B.E-Aero engg', '2017', 6.50, '', 1, '2023-06-17 12:29:32', 0, NULL, 0, NULL, 1),
(16915, 13301, '3', 'Alagappa University Karaikudi ', '', 'BBA', '2022', 7.03, '', 1, '2023-06-17 12:30:11', 0, NULL, 0, NULL, 1),
(16916, 13302, '2', 'Aruna higher secondary school', '', '', '2016', 65.00, '', 1, '2023-06-17 12:30:17', 0, NULL, 0, NULL, 1),
(16917, 13302, '1', 'Aruna higher secondary school', '', '', '2014', 82.00, '', 1, '2023-06-17 12:30:36', 0, NULL, 0, NULL, 1),
(16918, 13305, '3', 'College', '', 'BA Economic', '2022', 76.00, '', 1, '2023-06-17 01:22:23', 0, NULL, 0, NULL, 1),
(16919, 13305, '1', 'Sowdharapandya girls higher secondary school', '', '', '2016', 75.00, '', 1, '2023-06-17 01:42:46', 0, NULL, 0, NULL, 1),
(16920, 13305, '2', 'Government school', '', '', '2019', 75.00, '', 1, '2023-06-17 01:43:33', 0, NULL, 0, NULL, 1),
(16921, 13307, '3', 'Madras university ', '', 'BA', '2020', 64.00, '', 1, '2023-06-17 01:49:52', 0, NULL, 0, NULL, 1),
(16922, 13304, '3', 'Anna University guindy', '', 'BE', '2016', 63.20, '', 1, '2023-06-17 04:17:01', 0, NULL, 0, NULL, 1),
(16923, 13308, '3', 'Madras universit', '', 'bsc plant biologi', '2021', 85.00, '', 104, '2023-06-17 05:54:30', 0, NULL, 0, NULL, 1),
(16924, 13309, '3', 'Madras University ', '', 'BCA', '2023', 61.00, '', 1, '2023-06-19 10:59:07', 0, NULL, 0, NULL, 1),
(16925, 13310, '3', 'Madras University ', '', 'BCA', '2023', 61.00, '', 1, '2023-06-19 10:59:16', 0, NULL, 0, NULL, 1),
(16926, 13311, '3', 'Sir theagaraya college', '', 'B.Com', '2023', 74.00, '', 1, '2023-06-19 11:04:15', 0, NULL, 0, NULL, 1),
(16927, 13313, '3', 'Thiruvallvar university', '', 'BBA', '2018', 72.00, '', 1, '2023-06-19 11:11:23', 0, NULL, 0, NULL, 1),
(16928, 13313, '2', 'Tamil state board', '', '', '2015', 60.00, '', 1, '2023-06-19 11:12:05', 0, NULL, 0, NULL, 1),
(16929, 13313, '1', 'Tamil Nadu state board', '', '', '2013', 58.00, '', 1, '2023-06-19 11:12:35', 0, NULL, 0, NULL, 1),
(16930, 13312, '3', 'Madras University ', '', 'B.com', '2023', 76.00, '', 1, '2023-06-19 11:17:41', 0, NULL, 0, NULL, 1),
(16931, 13317, '3', 'ETHIRAJ COLLEGE FOR WOMEN ', '', 'BCA', '2023', 74.23, '', 1, '2023-06-19 12:07:03', 1, '2023-06-19 12:13:04', 0, NULL, 0),
(16932, 13316, '3', 'Ethiraj college for women ', '', 'BCA', '2023', 71.37, '', 1, '2023-06-19 12:10:00', 1, '2023-06-19 12:13:16', 0, NULL, 0),
(16933, 13317, '2', 'REVOOR PADMANABHA  CHETTY’S.MATRIC. HR.SEC.SCHOOL', '', '', '2020', 70.33, '', 1, '2023-06-19 12:11:10', 0, NULL, 0, NULL, 1),
(16934, 13316, '2', 'st.brittos matriculation ', '', '', '2020', 69.00, '', 1, '2023-06-19 12:11:46', 0, NULL, 0, NULL, 1),
(16935, 13317, '1', 'DOVETON GROUP OF SCHOOLS (ICSE)', '', '', '2018', 60.83, '', 1, '2023-06-19 12:12:06', 0, NULL, 0, NULL, 1),
(16936, 13316, '1', 'Sivasakthi matriculation school', '', '', '2018', 85.00, '', 1, '2023-06-19 12:12:26', 0, NULL, 0, NULL, 1),
(16937, 13317, '3', 'ETHIRAJ COLLEGE FOR WOMEN ', '', 'BCA ', '2023', 74.23, '', 1, '2023-06-19 12:13:37', 0, NULL, 0, NULL, 1),
(16938, 13316, '3', 'Ethiraj college for women ', '', 'BCA', '2023', 71.37, '', 1, '2023-06-19 12:14:01', 0, NULL, 0, NULL, 1),
(16939, 13315, '3', 'Madras university ', '', 'B.com (G)', '2023', 71.00, '', 1, '2023-06-19 12:26:12', 0, NULL, 0, NULL, 1),
(16940, 13319, '3', 'University of Madras ', '', 'B.com general ', '2023', 72.00, '', 1, '2023-06-19 12:30:17', 0, NULL, 0, NULL, 1),
(16941, 13318, '3', 'Anna University ', '', 'B.E Computer science and engineering ', '2022', 78.00, '', 1, '2023-06-19 12:32:37', 0, NULL, 0, NULL, 1),
(16942, 13318, '2', 'State board ', '', '', '2018', 67.00, '', 1, '2023-06-19 12:33:40', 0, NULL, 0, NULL, 1),
(16943, 13318, '1', 'State board ', '', '', '2016', 82.00, '', 1, '2023-06-19 12:34:12', 0, NULL, 0, NULL, 1),
(16944, 13322, '3', 'MADRAS UNIVERSITY ', '', 'B. COM', '2023', 87.00, '', 1, '2023-06-19 12:34:59', 0, NULL, 0, NULL, 1),
(16945, 13323, '3', 'UNIVERSITY OF MADRAS', '', 'B.cOM', '2023', 83.00, '', 1, '2023-06-19 12:37:37', 0, NULL, 0, NULL, 1),
(16946, 13321, '3', 'Bharathithasan University ', '', 'BA English ', '2019', 65.00, '', 1, '2023-06-19 12:39:03', 0, NULL, 0, NULL, 1),
(16947, 13320, '3', 'UNIVERSITY OF MADRAS', '', 'B.com (general)', '2023', 72.00, '', 1, '2023-06-19 12:49:07', 0, NULL, 0, NULL, 1),
(16948, 13325, '4', 'Bharathidasan University ', '', 'MSc information technology ', '2022', 80.00, '', 1, '2023-06-19 12:58:22', 0, NULL, 0, NULL, 1),
(16949, 13325, '3', 'Bishop Heber college Bharathidasan University ', '', 'B.voc information technology ', '2020', 70.00, '', 1, '2023-06-19 12:59:17', 0, NULL, 0, NULL, 1),
(16950, 13324, '3', 'Bharathidasan University', '', 'BCA', '2020', 60.00, '', 1, '2023-06-19 12:59:57', 0, NULL, 0, NULL, 1),
(16951, 13325, '2', 'State board ', '', '', '2017', 70.00, '', 1, '2023-06-19 01:00:11', 0, NULL, 0, NULL, 1),
(16952, 13324, '4', 'Bharathidasan University', '', 'M.Sc IT', '2022', 78.00, '', 1, '2023-06-19 01:00:33', 0, NULL, 0, NULL, 1),
(16953, 13327, '3', 'Db Jain college ', '', 'Bca', '2023', 80.00, '', 1, '2023-06-19 01:45:54', 1, '2023-06-19 01:46:15', 0, NULL, 1),
(16954, 13326, '3', 'Dhanraj Baid Jain College ', '', 'BCA ', '2023', 80.00, '', 1, '2023-06-19 01:53:57', 1, '2023-06-19 01:54:32', 0, NULL, 1),
(16955, 13328, '3', 'Db jain College ', '', 'Bca', '2023', 78.00, '', 1, '2023-06-19 02:11:56', 0, NULL, 0, NULL, 1),
(16956, 13329, '3', 'Madras university ', '', 'B. Sc chemistry ', '2022', 64.00, '', 1, '2023-06-19 03:06:47', 0, NULL, 0, NULL, 1),
(16957, 13330, '3', 'University Of Madras', '', 'Bsc Computer Science', '2023', 65.00, '', 1, '2023-06-19 03:10:37', 0, NULL, 0, NULL, 1),
(16958, 13331, '3', 'University Of Madras', '', 'Bsc Computer Science', '2023', 70.00, '', 1, '2023-06-19 03:14:33', 0, NULL, 0, NULL, 1),
(16959, 13333, '3', 'Alagappa university', '', 'Bachelor of computer Application', '2023', 70.00, '', 1, '2023-06-20 11:14:01', 0, NULL, 0, NULL, 1),
(16960, 13334, '4', 'Anna University ', '', 'M.E.', '2021', 81.60, '', 1, '2023-06-20 11:20:51', 0, NULL, 0, NULL, 1),
(16961, 13334, '3', 'Anna University', '', 'B.E.', '2019', 74.00, '', 1, '2023-06-20 11:21:25', 0, NULL, 0, NULL, 1),
(16962, 13334, '2', 'Tamilnadu State Board Education', '', '', '2015', 75.40, '', 1, '2023-06-20 11:22:11', 1, '2023-06-20 11:23:29', 0, NULL, 0),
(16963, 13334, '2', 'Tamilnadu State Board', '', '', '2015', 75.50, '', 1, '2023-06-20 11:22:53', 1, '2023-06-20 11:24:19', 0, NULL, 1),
(16964, 13335, '3', 'Madras University', '', 'B.com(Accounting and Finance)', '2023', 50.00, '', 1, '2023-06-20 11:28:22', 0, NULL, 0, NULL, 1),
(16965, 13336, '1', 'State board ', '', '', '2015', 7.60, '', 1, '2023-06-20 11:49:09', 0, NULL, 0, NULL, 1),
(16966, 13336, '2', 'State board ', '', '', '2017', 7.20, '', 1, '2023-06-20 11:49:35', 0, NULL, 0, NULL, 1),
(16967, 13332, '3', 'madras university', '', 'b.com', '2017', 59.58, '', 1, '2023-06-20 12:11:07', 0, NULL, 0, NULL, 1),
(16968, 13337, '3', 'Alagappa University ', '', 'BCA', '2022', 67.00, '', 1, '2023-06-20 12:11:54', 0, NULL, 0, NULL, 1),
(16969, 13341, '3', 'University ', '', 'BCA ', '2023', 70.00, '', 1, '2023-06-20 12:30:16', 0, NULL, 0, NULL, 1),
(16970, 13338, '3', 'Dhanraj Baid Jain college ', '', 'B. com cS', '2023', 7.50, '', 1, '2023-06-20 12:33:42', 0, NULL, 0, NULL, 1),
(16971, 13342, '3', 'Agurchand manmull Jain college, Chennai ', '', 'B.sc(Electronics and communication science)', '2022', 80.00, '', 1, '2023-06-20 12:37:08', 0, NULL, 0, NULL, 1),
(16972, 13347, '4', 'jamal mohamad college', '', 'msc cs', '2022', 80.00, '', 1, '2023-06-20 12:43:50', 0, NULL, 0, NULL, 1),
(16973, 13344, '3', 'Vels University ', '', 'BCA ', '2023', 75.00, '', 1, '2023-06-20 12:57:48', 0, NULL, 0, NULL, 1),
(16974, 13343, '3', 'Madras University ', '', 'B.com ( Bank Management )', '2019', 62.00, '', 1, '2023-06-20 01:02:26', 0, NULL, 0, NULL, 1),
(16975, 13349, '4', 'SV University ', '', 'MBA', '2022', 70.00, '', 1, '2023-06-20 01:03:00', 0, NULL, 0, NULL, 1),
(16976, 13350, '4', 'Periyar University', '', 'Master of computer application', '2023', 80.00, '', 1, '2023-06-20 01:09:09', 0, NULL, 0, NULL, 1),
(16977, 13352, '3', 'University of madras', '', 'BCA', '2023', 65.00, '', 1, '2023-06-20 01:13:07', 0, NULL, 0, NULL, 1),
(16978, 13351, '4', 'Anna University', '', 'MCA', '2023', 85.00, '', 1, '2023-06-20 01:15:06', 0, NULL, 0, NULL, 1),
(16979, 13351, '3', 'Periyar University', '', 'Bsc Mathematics', '2020', 75.00, '', 1, '2023-06-20 01:15:37', 0, NULL, 0, NULL, 1),
(16980, 13351, '2', 'State Board', '', '', '2017', 92.00, '', 1, '2023-06-20 01:16:12', 0, NULL, 0, NULL, 1),
(16981, 13351, '1', 'State Board', '', '', '2015', 97.00, '', 1, '2023-06-20 01:16:28', 0, NULL, 0, NULL, 1),
(16982, 13348, '3', 'Madras university', '', 'BCA', '2017', 57.00, '', 1, '2023-06-20 01:23:57', 0, NULL, 0, NULL, 1),
(16983, 13345, '4', 'Madras University ', '', 'Mba', '2023', 87.00, '', 1, '2023-06-20 01:26:45', 0, NULL, 0, NULL, 1),
(16984, 13346, '1', 'Anna  university ', '', '', '2023', 81.00, '', 1, '2023-06-20 01:27:28', 0, NULL, 0, NULL, 1),
(16985, 13353, '3', 'Asan memorial College ', '', 'BCA', '2023', 70.00, '', 1, '2023-06-20 02:13:44', 0, NULL, 0, NULL, 1),
(16986, 13354, '3', 'kamarajar university', '', 'B.Sc  MATHS', '2020', 65.00, '', 1, '2023-06-20 02:31:04', 0, NULL, 0, NULL, 1),
(16987, 13355, '4', 'Madras christian college', '', 'MCA', '2023', 76.00, '', 1, '2023-06-20 03:03:08', 0, NULL, 0, NULL, 1),
(16988, 13355, '3', 'Sri Sankara arts and science college', '', 'bCA', '2021', 73.00, '', 1, '2023-06-20 03:03:50', 0, NULL, 0, NULL, 1),
(16989, 13357, '4', 'madras christian college', '', 'mca', '2023', 76.00, '', 1, '2023-06-20 03:23:00', 0, NULL, 0, NULL, 1),
(16990, 13357, '3', 'bishop heber college', '', 'bsc physics', '2021', 68.00, '', 1, '2023-06-20 03:24:06', 0, NULL, 0, NULL, 1),
(16991, 13357, '2', 'bell matric higher secondary school', '', '', '2018', 70.00, '', 1, '2023-06-20 03:25:22', 0, NULL, 0, NULL, 1),
(16992, 13356, '3', 'Madras University', '', 'Ba', '2015', 68.00, '', 1, '2023-06-20 03:34:44', 0, NULL, 0, NULL, 1),
(16993, 13358, '3', 'Madras university ', '', 'B.com bank management ', '2023', 50.00, '', 1, '2023-06-20 05:40:55', 0, NULL, 0, NULL, 1),
(16994, 13360, '3', 'Anna University ', '', 'Bsc', '2023', 80.00, '', 1, '2023-06-21 10:50:47', 0, NULL, 0, NULL, 1),
(16995, 13361, '3', 'Anna University ', '', 'Eee', '2018', 78.00, '', 1, '2023-06-21 12:11:28', 0, NULL, 0, NULL, 1),
(16996, 13362, '3', 'Vels y', '', 'B.Tech petroleum engineering ', '2022', 68.00, '', 1, '2023-06-21 12:20:48', 0, NULL, 0, NULL, 1),
(16997, 10335, '2', 'Our Lady matric secondary school ', '', '', '2017', 50.00, '', 1, '2023-06-21 04:33:07', 0, NULL, 0, NULL, 1),
(16998, 13365, '3', 'Anna university ', '', 'B.E', '2023', 75.00, '', 1, '2023-06-21 05:19:50', 0, NULL, 0, NULL, 1),
(16999, 13366, '3', 'VSKUB', '', 'BS.c', '2023', 83.00, '', 1, '2023-06-21 07:06:10', 0, NULL, 0, NULL, 1),
(17000, 13366, '1', 'Kseeb', '', '', '2018', 76.48, '', 1, '2023-06-21 07:06:32', 0, NULL, 0, NULL, 1),
(17001, 13366, '2', 'Kseeb', '', '', '2020', 70.00, '', 1, '2023-06-21 07:06:51', 0, NULL, 0, NULL, 1),
(17002, 13368, '4', 'jntu anantapur', '', 'mba', '2021', 73.42, '', 1, '2023-06-21 09:30:34', 0, NULL, 0, NULL, 1),
(17003, 13368, '3', 'sv university', '', 'bcom computers', '2019', 74.00, '', 1, '2023-06-21 09:31:21', 0, NULL, 0, NULL, 1),
(17004, 13368, '2', 'andhra pradesh board of intemediate education ', '', '', '2016', 77.00, '', 1, '2023-06-21 09:33:42', 0, NULL, 0, NULL, 1),
(17005, 13368, '1', 'board of secundry education andhra pradesh ', '', '', '2014', 78.00, '', 1, '2023-06-21 09:38:23', 0, NULL, 0, NULL, 1),
(17006, 13370, '3', 'Panimalar Engineering College anna University ', '', 'BE', '2019', 81.00, '', 1, '2023-06-22 09:52:04', 0, NULL, 0, NULL, 1),
(17007, 13371, '3', 'Madras university', '', 'Bcs', '2023', 80.00, '', 1, '2023-06-22 10:10:50', 0, NULL, 0, NULL, 1),
(17008, 13373, '3', 'Madras University ', '', 'B.com (general)', '2023', 62.00, '', 1, '2023-06-22 10:13:29', 0, NULL, 0, NULL, 1),
(17009, 13373, '2', 'State Board ', '', '', '2020', 56.50, '', 1, '2023-06-22 10:16:02', 0, NULL, 0, NULL, 1),
(17010, 13372, '1', 'state borad ', '', '', '2010', 50.00, '', 1, '2023-06-22 10:16:17', 0, NULL, 0, NULL, 1),
(17011, 13373, '1', 'State Board ', '', '', '2018', 64.20, '', 1, '2023-06-22 10:16:58', 0, NULL, 0, NULL, 1),
(17012, 13372, '2', 'nios ', '', '', '2020', 50.00, '', 1, '2023-06-22 10:18:04', 0, NULL, 0, NULL, 1),
(17013, 13372, '3', 'sri Venkateshwara University ', '', 'b.com', '2024', 50.00, '', 1, '2023-06-22 10:19:26', 0, NULL, 0, NULL, 1),
(17014, 13374, '4', 'Bharathiyar university ', '', 'MCA', '2023', 78.00, '', 1, '2023-06-22 10:56:47', 0, NULL, 0, NULL, 1),
(17015, 13374, '4', 'Bharathiyar university ', '', 'MCA', '2023', 78.00, '', 1, '2023-06-22 10:57:58', 1, '2023-06-22 10:58:08', 0, NULL, 0),
(17016, 13377, '4', 'University', '', 'B.COM(GENERAL)', '2023', 77.18, '', 1, '2023-06-22 11:20:44', 1, '2023-06-22 11:31:57', 0, NULL, 0),
(17017, 13375, '3', 'Alagappa University ', '', 'B.voc Software Development ', '2023', 79.74, '', 1, '2023-06-22 11:32:29', 0, NULL, 0, NULL, 1),
(17018, 13376, '3', 'Madras University ', '', 'B.com (accounting and finance)', '2023', 63.00, '', 1, '2023-06-22 11:33:22', 0, NULL, 0, NULL, 1),
(17019, 13380, '3', 'Guru nanak college', '', 'B. Com', '2023', 77.00, '', 1, '2023-06-22 11:34:57', 0, NULL, 0, NULL, 1),
(17020, 13364, '3', 'Medras University ', '', 'B com', '2021', 76.00, '', 1, '2023-06-22 11:34:58', 0, NULL, 0, NULL, 1),
(17021, 13377, '3', 'University of madras', '', 'B.COM GENERAL', '2023', 77.00, '', 1, '2023-06-22 11:39:29', 0, NULL, 0, NULL, 1),
(17022, 0, '3', 'Madras university', '', 'B.com general', '2023', 81.40, '', 1, '2023-06-22 11:53:10', 1, '2023-06-23 12:10:47', 0, NULL, 0),
(17023, 13379, '3', 'Madrs university', '', 'B.com', '2023', 81.40, '', 1, '2023-06-22 12:01:29', 0, NULL, 0, NULL, 1),
(17024, 13378, '3', 'Madras University ', '', 'B.sc', '2023', 69.00, '', 1, '2023-06-22 12:24:20', 0, NULL, 0, NULL, 1),
(17025, 13382, '3', 'Vels University ', '', 'BCA', '2023', 92.00, '', 1, '2023-06-22 01:04:23', 0, NULL, 0, NULL, 1),
(17026, 13381, '3', 'Vel\'s University ', '', 'BCA', '2023', 82.00, '', 1, '2023-06-22 01:05:09', 0, NULL, 0, NULL, 1),
(17027, 13383, '3', 'Vels University ', '', 'BCA', '2023', 70.00, '', 1, '2023-06-22 01:06:02', 0, NULL, 0, NULL, 1),
(17028, 13384, '3', 'Madras University ', '', 'B.A', '2023', 81.00, '', 1, '2023-06-22 01:23:24', 1, '2023-06-22 01:25:12', 0, NULL, 0),
(17029, 13384, '3', 'Madras University ', '', 'B A', '2023', 81.00, '', 1, '2023-06-22 01:25:47', 0, NULL, 0, NULL, 1),
(17030, 13385, '2', 'Voc matriculation Higher secondary school ', '', '', '2021', 50.00, '', 1, '2023-06-22 01:37:35', 0, NULL, 0, NULL, 1),
(17031, 13386, '3', 'Anna University ', '', 'B.E me', '2022', 83.00, '', 1, '2023-06-22 02:37:25', 0, NULL, 0, NULL, 1),
(17032, 13385, '3', 'Anna University ', '', 'Me', '2021', 71.00, '', 1, '2023-06-22 02:39:26', 0, NULL, 0, NULL, 1),
(17033, 13387, '3', 'Anna university ', '', 'B.e civil ', '2016', 75.00, '', 1, '2023-06-22 02:45:25', 0, NULL, 0, NULL, 1),
(17034, 13388, '3', 'Ethiraj college for women ', '', 'B a history ', '2023', 7.90, '', 1, '2023-06-22 06:43:35', 0, NULL, 0, NULL, 1),
(17035, 13389, '3', 'Bharathidasan University ', '', 'B com', '2023', 80.00, '', 1, '2023-06-23 10:13:40', 0, NULL, 0, NULL, 1),
(17036, 13391, '3', 'Anna University ', '', 'B Tech Information Technology ', '2023', 85.00, '', 1, '2023-06-23 11:03:36', 0, NULL, 0, NULL, 1),
(17037, 13390, '3', 'Anna University ', '', 'B.Tech -Information Technology ', '2023', 87.00, '', 1, '2023-06-23 11:19:00', 0, NULL, 0, NULL, 1),
(17038, 13392, '3', 'University of Madras ', '', 'B.com CA', '2023', 78.00, '', 1, '2023-06-23 11:27:18', 0, NULL, 0, NULL, 1),
(17039, 13393, '3', 'University of Madras ', '', 'Bca', '2023', 65.00, '', 1, '2023-06-23 11:31:32', 0, NULL, 0, NULL, 1),
(17040, 13394, '4', 'Pondicherry University karaikal campus ', '', 'Msc computer science ', '2023', 89.70, '', 1, '2023-06-23 12:10:53', 0, NULL, 0, NULL, 1),
(17041, 13394, '3', 'Madurai Kamaraj University ', '', 'Bsc computer science ', '2021', 72.60, '', 1, '2023-06-23 12:12:11', 0, NULL, 0, NULL, 1),
(17042, 13394, '2', 'State board ', '', '', '2018', 71.00, '', 1, '2023-06-23 12:13:13', 0, NULL, 0, NULL, 1),
(17043, 13394, '1', 'State board', '', '', '2016', 84.00, '', 1, '2023-06-23 12:13:39', 0, NULL, 0, NULL, 1),
(17044, 13396, '3', 'Ethiraj College for Women ', '', 'Bcom Corporate secretaryship ', '2023', 80.47, '', 1, '2023-06-23 12:13:41', 0, NULL, 0, NULL, 1),
(17045, 13396, '1', 'State board ', '', '', '2020', 91.83, '', 1, '2023-06-23 12:14:11', 0, NULL, 0, NULL, 1),
(17046, 13396, '2', 'State board ', '', '', '2018', 84.00, '', 1, '2023-06-23 12:14:35', 0, NULL, 0, NULL, 1),
(17047, 13395, '3', 'Ethiraj college for women', '', 'B. Com corporate secretaryship', '2023', 80.00, '', 1, '2023-06-23 12:14:39', 0, NULL, 0, NULL, 1),
(17048, 13395, '1', 'State board', '', '', '2020', 86.00, '', 1, '2023-06-23 12:15:09', 0, NULL, 0, NULL, 1),
(17049, 13395, '2', 'State board', '', '', '2018', 92.00, '', 1, '2023-06-23 12:15:34', 0, NULL, 0, NULL, 1),
(17050, 13397, '3', 'University', '', 'B. Sc', '2023', 85.00, '', 1, '2023-06-23 12:35:43', 0, NULL, 0, NULL, 1),
(17051, 13397, '1', 'Board', '', '', '2018', 80.00, '', 1, '2023-06-23 12:36:17', 0, NULL, 0, NULL, 1),
(17052, 13397, '2', 'Board', '', '', '2020', 58.00, '', 1, '2023-06-23 12:36:39', 0, NULL, 0, NULL, 1),
(17053, 13398, '3', 'Madras university ', '', 'B.com', '2023', 83.00, '', 1, '2023-06-23 12:47:07', 0, NULL, 0, NULL, 1),
(17054, 13400, '5', 'Government polytechnic college thuvakkudi', '', 'Diploma in civil engineering ', '2020', 69.50, '', 1, '2023-06-23 12:49:43', 0, NULL, 0, NULL, 1),
(17055, 13399, '3', 'University of Madras ', '', 'B.com', '2023', 76.00, '', 1, '2023-06-23 12:51:59', 0, NULL, 0, NULL, 1),
(17056, 13401, '3', 'Madras university ', '', 'B.com', '2023', 85.00, '', 1, '2023-06-23 12:52:46', 0, NULL, 0, NULL, 1),
(17057, 13404, '3', 'University of Madras ', '', 'B.com', '2023', 76.00, '', 1, '2023-06-23 12:56:38', 0, NULL, 0, NULL, 1),
(17058, 13402, '3', 'DB JAIN  COLLEGE (autonomous)', '', 'Bsc computer science ', '2023', 83.00, '', 1, '2023-06-23 01:26:02', 0, NULL, 0, NULL, 1),
(17059, 13405, '3', 'Dhanraj Baid Jain College ', '', 'Bsc computer science ', '2023', 75.00, '', 1, '2023-06-23 01:28:42', 0, NULL, 0, NULL, 1),
(17060, 13405, '1', 'Chennai High school ', '', '', '2014', 75.00, '', 1, '2023-06-23 01:30:22', 0, NULL, 0, NULL, 1),
(17061, 13405, '2', 'Chennai Boys Higher Secondary School ', '', '', '2016', 50.00, '', 1, '2023-06-23 01:30:45', 0, NULL, 0, NULL, 1),
(17062, 13402, '2', 'Infant Jesus matriculation higher secondary school ', '', '', '2020', 71.00, '', 1, '2023-06-23 01:31:29', 1, '2023-06-23 01:34:22', 0, NULL, 1),
(17063, 13402, '1', 'Infant Jesus matriculation higher secondary school ', '', '', '2018', 88.00, '', 1, '2023-06-23 01:34:57', 0, NULL, 0, NULL, 1),
(17064, 13407, '3', 'Visvesvaraya Technological University (VTU)', '', 'btech', '2023', 70.00, '', 1, '2023-06-23 02:55:11', 0, NULL, 0, NULL, 1),
(17065, 13408, '3', ' University of Madras ', '', 'Bsc computer science ', '2023', 65.00, '', 1, '2023-06-23 03:12:08', 0, NULL, 0, NULL, 1),
(17066, 13409, '3', 'University of madras ', '', 'Bsc computer science ', '2023', 65.00, '', 1, '2023-06-23 03:19:52', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17067, 13410, '3', 'University of Madras ', '', 'Bsc.computer science ', '2023', 78.00, '', 1, '2023-06-23 03:20:42', 0, NULL, 0, NULL, 1),
(17068, 13411, '3', 'Madras University ', '', 'B.sc ', '2023', 75.00, '', 1, '2023-06-23 03:42:56', 0, NULL, 0, NULL, 1),
(17069, 13414, '3', 'Shri Krishnaswamy college for women ', '', 'BA English ', '2023', 52.00, '', 1, '2023-06-23 11:48:58', 0, NULL, 0, NULL, 1),
(17070, 13416, '3', 'Madras university ', '', 'B.com  general ', '2023', 80.00, '', 1, '2023-06-24 10:12:53', 0, NULL, 0, NULL, 1),
(17071, 13415, '3', 'Madras university ', '', 'B.com general ', '2023', 80.00, '', 1, '2023-06-24 10:18:19', 0, NULL, 0, NULL, 1),
(17072, 13417, '3', 'Vels University ', '', 'BCA HONS ', '2023', 83.00, '', 1, '2023-06-24 10:27:04', 0, NULL, 0, NULL, 1),
(17073, 13413, '3', 'Madras university ', '', 'B.com', '2023', 81.00, '', 1, '2023-06-24 11:52:37', 0, NULL, 0, NULL, 1),
(17074, 13418, '3', 'Bharathidasan', '', 'Bca', '2023', 74.00, '', 1, '2023-06-24 12:08:55', 0, NULL, 0, NULL, 1),
(17075, 13419, '3', 'Bharathidasan', '', 'Bba', '2023', 70.00, '', 1, '2023-06-24 12:10:00', 0, NULL, 0, NULL, 1),
(17076, 13420, '3', 'Anna University ', '', 'BSc software systems ', '2023', 80.00, '', 1, '2023-06-24 01:30:21', 0, NULL, 0, NULL, 1),
(17077, 13422, '5', 'Government polytechnic college', '', 'Civil', '2019', 66.00, '', 1, '2023-06-24 02:22:40', 0, NULL, 0, NULL, 1),
(17078, 13423, '5', 'Anna University ', '', 'Dece', '2017', 70.00, '', 1, '2023-06-24 02:26:49', 0, NULL, 0, NULL, 1),
(17079, 13424, '4', 'Alagappa University ', '', 'Mba', '2023', 70.00, '', 1, '2023-06-24 03:23:59', 0, NULL, 0, NULL, 1),
(17080, 13424, '5', 'Db jain College ', '', 'PGDM ', '2023', 70.00, '', 1, '2023-06-24 03:24:26', 0, NULL, 0, NULL, 1),
(17081, 13424, '3', 'Madras University ', '', 'Bca', '2021', 76.00, '', 1, '2023-06-24 03:24:54', 0, NULL, 0, NULL, 1),
(17082, 13425, '3', 'Madras University ', '', 'BCA ', '2021', 70.00, '', 1, '2023-06-24 03:33:55', 0, NULL, 0, NULL, 1),
(17083, 13425, '4', 'Alagappa University ', '', 'MBA ', '2023', 70.00, '', 1, '2023-06-24 03:35:03', 0, NULL, 0, NULL, 1),
(17084, 13425, '5', 'DB jain institute of management ', '', 'PGDM ', '2023', 68.00, '', 1, '2023-06-24 03:35:48', 0, NULL, 0, NULL, 1),
(17085, 13429, '3', 'JNTUA', '', 'Mechanical ', '2023', 75.00, '', 1, '2023-06-26 11:03:06', 0, NULL, 0, NULL, 1),
(17086, 13427, '3', 'Bharathiyar University coimbatore ', '', 'B.Com(CA)', '2021', 81.00, '', 1, '2023-06-26 11:04:49', 0, NULL, 0, NULL, 1),
(17087, 13428, '3', 'Madhuri kamarajar University ', '', 'BSC computer science ', '2022', 85.00, '', 1, '2023-06-26 11:15:45', 0, NULL, 0, NULL, 1),
(17088, 13426, '4', 'amjain', '', 'msc', '2023', 70.00, '', 1, '2023-06-26 11:25:21', 0, NULL, 0, NULL, 1),
(17089, 13431, '3', 'Anna University ', '', 'BE', '2020', 70.00, '', 1, '2023-06-26 11:58:44', 0, NULL, 0, NULL, 1),
(17090, 13431, '1', 'State board ', '', '', '2014', 76.00, '', 1, '2023-06-26 11:59:18', 0, NULL, 0, NULL, 1),
(17091, 13431, '5', 'Dote', '', 'Diploma', '2017', 78.00, '', 1, '2023-06-26 11:59:52', 0, NULL, 0, NULL, 1),
(17092, 13430, '3', 'Anna university ', '', 'B.E', '2020', 6.50, '', 1, '2023-06-26 12:00:06', 0, NULL, 0, NULL, 1),
(17093, 13434, '3', 'Bharathidasan University. ', '', 'B. SC computer science ', '2023', 78.00, '', 1, '2023-06-26 12:11:35', 0, NULL, 0, NULL, 1),
(17094, 13434, '2', 'State board ', '', '', '2020', 56.00, '', 1, '2023-06-26 12:12:08', 0, NULL, 0, NULL, 1),
(17095, 13434, '1', 'State board ', '', '', '2018', 67.00, '', 1, '2023-06-26 12:12:42', 0, NULL, 0, NULL, 1),
(17096, 13433, '3', 'University of Madras ', '', 'B.com', '2023', 71.00, '', 1, '2023-06-26 12:15:09', 0, NULL, 0, NULL, 1),
(17097, 13433, '1', 'State board ', '', '', '2018', 81.80, '', 1, '2023-06-26 12:16:22', 0, NULL, 0, NULL, 1),
(17098, 13433, '2', 'State board ', '', '', '2020', 74.50, '', 1, '2023-06-26 12:17:05', 0, NULL, 0, NULL, 1),
(17099, 13432, '3', 'Anna University ', '', 'B. E', '2021', 76.00, '', 1, '2023-06-26 12:23:15', 0, NULL, 0, NULL, 1),
(17100, 13432, '1', 'State board ', '', '', '2015', 76.00, '', 1, '2023-06-26 12:23:41', 0, NULL, 0, NULL, 1),
(17101, 13432, '2', 'State board ', '', '', '2017', 62.00, '', 1, '2023-06-26 12:24:03', 0, NULL, 0, NULL, 1),
(17102, 13435, '3', 'Madras University ', '', 'Bba', '2023', 85.00, '', 1, '2023-06-26 12:24:46', 0, NULL, 0, NULL, 1),
(17103, 13436, '3', 'Madras University ', '', 'BBA ', '2023', 79.00, '', 1, '2023-06-26 12:34:03', 0, NULL, 0, NULL, 1),
(17104, 13437, '3', 'Madras University ', '', 'Bcom ', '2020', 68.00, '', 1, '2023-06-26 02:37:26', 0, NULL, 0, NULL, 1),
(17105, 13438, '3', 'Madras University ', '', 'BCA', '2023', 70.00, '', 1, '2023-06-26 03:00:26', 0, NULL, 0, NULL, 1),
(17106, 13439, '4', 'Annamalai University ', '', 'MSC software engineering integrated ', '2011', 60.00, '', 1, '2023-06-26 03:10:13', 0, NULL, 0, NULL, 1),
(17107, 13440, '3', 'mk university', '', 'bsc maths', '2019', 60.00, '', 1, '2023-06-26 03:35:00', 0, NULL, 0, NULL, 1),
(17108, 13441, '3', 'State board ', '', 'B.e ', '2018', 6.10, '', 1, '2023-06-26 05:17:01', 0, NULL, 0, NULL, 1),
(17109, 13443, '2', 'Bhakatavasalam memorial collage for women', '', '', '2020', 73.00, '', 1, '2023-06-26 05:44:13', 0, NULL, 0, NULL, 1),
(17110, 13444, '4', 'Mangayarkarasi college of arts and science for women ', '', 'M.com(CA)', '2023', 64.00, '', 1, '2023-06-26 06:57:56', 0, NULL, 0, NULL, 1),
(17111, 13445, '4', 'Bharathithasan university', '', 'MBA', '2023', 80.00, '', 1, '2023-06-26 07:52:55', 0, NULL, 0, NULL, 1),
(17112, 13448, '5', 'Amar Institute of opticals management ', '', 'BSC', '2020', 78.00, '', 1, '2023-06-27 10:08:32', 0, NULL, 0, NULL, 1),
(17113, 13449, '4', 'Bharadhidasan University ', '', 'Ma', '2022', 65.00, '', 1, '2023-06-27 10:49:44', 0, NULL, 0, NULL, 1),
(17114, 13450, '3', 'anna university', '', 'computer science engineering', '2021', 7.15, '', 1, '2023-06-27 11:35:26', 0, NULL, 0, NULL, 1),
(17115, 13454, '4', 'University of Madras', '', 'mBA', '2022', 65.00, '', 1, '2023-06-27 12:58:09', 0, NULL, 0, NULL, 1),
(17116, 13452, '3', 'Madras University ', '', 'Bca', '2023', 59.00, '', 1, '2023-06-27 01:28:28', 0, NULL, 0, NULL, 1),
(17117, 13456, '3', 'University of Madras', '', 'Bsc Computer & Technology', '2019', 56.00, '', 1, '2023-06-27 04:39:27', 0, NULL, 0, NULL, 1),
(17118, 13458, '3', 'Madras university', '', 'BBA', '2023', 63.00, '', 1, '2023-06-27 05:34:36', 0, NULL, 0, NULL, 1),
(17119, 13455, '3', 'Madras university ', '', 'Bachelor of business administration ', '2023', 70.00, '', 1, '2023-06-28 12:24:38', 1, '2023-06-28 12:24:58', 0, NULL, 0),
(17120, 13455, '3', 'Madras university ', '', 'Bachelor of business administration ', '2023', 70.00, '', 1, '2023-06-28 12:25:59', 0, NULL, 0, NULL, 1),
(17121, 13460, '4', 'Srm institute of science and technology ', '', 'MBA ', '2023', 7.93, '', 1, '2023-06-28 08:18:46', 0, NULL, 0, NULL, 1),
(17122, 13460, '3', 'Madras University ', '', 'B.com cs', '2020', 62.00, '', 1, '2023-06-28 08:19:18', 0, NULL, 0, NULL, 1),
(17123, 13446, '3', 'Vels university', '', '', '2014', 63.00, '', 1, '2023-06-28 09:54:05', 0, NULL, 0, NULL, 1),
(17124, 13461, '1', 'Tamil Nadu State Board', '', '', '2017', 86.00, '', 1, '2023-06-28 10:08:59', 0, NULL, 0, NULL, 1),
(17125, 13461, '2', 'Tamil Nadu State Board', '', '', '2019', 50.00, '', 1, '2023-06-28 10:09:22', 0, NULL, 0, NULL, 1),
(17126, 13461, '3', 'Anna University', '', 'BE', '2023', 79.00, '', 1, '2023-06-28 10:09:43', 0, NULL, 0, NULL, 1),
(17127, 13462, '3', 'Bharathidasan University ', '', 'BSC', '2021', 77.00, '', 1, '2023-06-28 01:03:38', 0, NULL, 0, NULL, 1),
(17128, 13453, '3', 'mgr university', '', 'bca', '2023', 63.00, '', 1, '2023-06-28 01:04:52', 0, NULL, 0, NULL, 1),
(17129, 13463, '3', 'Anna university', '', 'B. E ', '2022', 65.00, '', 1, '2023-06-28 02:45:12', 0, NULL, 0, NULL, 1),
(17130, 13464, '3', 'Madras university', '', 'B. A arabic', '2020', 90.00, '', 1, '2023-06-28 03:06:20', 0, NULL, 0, NULL, 1),
(17131, 13457, '3', 'Madras university ', '', 'B.A. English Literature ', '2021', 65.00, '', 1, '2023-06-28 03:17:56', 0, NULL, 0, NULL, 1),
(17132, 13466, '3', 'University of madras', '', 'B.sc Mathematics', '2021', 75.00, '', 1, '2023-06-28 06:57:13', 0, NULL, 0, NULL, 1),
(17133, 13466, '4', 'University of madras', '', 'M.sc mathematics', '2023', 75.00, '', 1, '2023-06-28 06:58:08', 0, NULL, 0, NULL, 1),
(17134, 13466, '2', 'State board of tamilnadu', '', '', '2018', 65.00, '', 1, '2023-06-28 06:58:51', 0, NULL, 0, NULL, 1),
(17135, 13466, '1', 'State board of tamilnadu', '', '', '2016', 77.00, '', 1, '2023-06-28 06:59:25', 0, NULL, 0, NULL, 1),
(17136, 13467, '3', 'Anna Adarsh College for women ', '', 'B.com general ', '2023', 79.00, '', 1, '2023-06-28 07:13:44', 0, NULL, 0, NULL, 1),
(17137, 13467, '2', 'S B.O.A.mtr.hr.sec.school', '', '', '2020', 78.00, '', 1, '2023-06-28 07:14:30', 0, NULL, 0, NULL, 1),
(17138, 13467, '1', 'S.B.O.A.mtr.hr.sec.school', '', '', '2018', 87.00, '', 1, '2023-06-28 07:15:41', 0, NULL, 0, NULL, 1),
(17139, 13468, '4', 'Madras university Presidency college chennai', '', 'MSc biotechnology ', '2023', 75.00, '', 1, '2023-06-28 07:49:33', 0, NULL, 0, NULL, 1),
(17140, 13470, '4', 'Bharathithasan University', '', 'MBA', '2023', 70.00, '', 1, '2023-06-29 10:36:25', 0, NULL, 0, NULL, 1),
(17141, 13471, '3', 'Madras University ', '', 'B.com', '2023', 76.00, '', 1, '2023-06-29 10:38:44', 0, NULL, 0, NULL, 1),
(17142, 13472, '3', 'Madras University ', '', 'BA', '2023', 70.00, '', 1, '2023-06-29 11:01:53', 0, NULL, 0, NULL, 1),
(17143, 13473, '2', 'State board of India ', '', '', '2015', 78.00, '', 1, '2023-06-29 12:53:46', 0, NULL, 0, NULL, 1),
(17144, 13475, '3', 'Vellore institute of technology ', '', 'Bachelor of computer science ', '2021', 68.00, '', 1, '2023-06-29 02:17:59', 0, NULL, 0, NULL, 1),
(17145, 13476, '3', 'TAMILNADU COLLEGE OF ENGINEERING ', '', 'B.E', '2019', 6.70, '', 1, '2023-06-29 02:24:20', 0, NULL, 0, NULL, 1),
(17146, 13474, '5', 'Madras University', '', 'Ece', '2023', 79.00, '', 1, '2023-06-29 02:32:53', 0, NULL, 0, NULL, 1),
(17147, 13367, '3', 'vsk universit', '', 'bsc', '2023', 82.00, '', 104, '2023-06-29 06:15:07', 0, NULL, 0, NULL, 1),
(17148, 13478, '4', 'Anna University ', '', 'MBA', '2023', 81.00, '', 1, '2023-06-29 08:42:47', 0, NULL, 0, NULL, 1),
(17149, 13478, '3', 'SCSVMV University ', '', 'Bsc', '2021', 92.00, '', 1, '2023-06-29 08:43:37', 0, NULL, 0, NULL, 1),
(17150, 13478, '2', 'State board', '', '', '2018', 83.00, '', 1, '2023-06-29 08:44:44', 0, NULL, 0, NULL, 1),
(17151, 13478, '1', 'State board', '', '', '2016', 92.00, '', 1, '2023-06-29 08:45:02', 0, NULL, 0, NULL, 1),
(17152, 13479, '3', 'Vels institute of science technology and advanced studies ', '', 'B.com(general)', '2023', 72.00, '', 1, '2023-06-29 08:45:10', 0, NULL, 0, NULL, 1),
(17153, 13480, '4', 'St.Peters college of engineering and technology ', '', 'MBA', '2021', 60.00, '', 1, '2023-06-30 08:39:36', 0, NULL, 0, NULL, 1),
(17154, 13482, '3', 'Madras University ', '', 'B.com corporate secretaryship ', '2023', 80.00, '', 1, '2023-06-30 10:07:21', 0, NULL, 0, NULL, 1),
(17155, 13483, '3', 'Madras University ', '', 'Bsc. Computer science ', '2023', 73.00, '', 1, '2023-06-30 10:17:39', 0, NULL, 0, NULL, 1),
(17156, 13484, '3', 'Madras University ', '', 'B.com ', '2019', 51.00, '', 1, '2023-06-30 10:20:29', 0, NULL, 0, NULL, 1),
(17157, 13481, '3', 'Madras University ', '', 'B. Com general ', '2023', 69.00, '', 1, '2023-06-30 10:33:25', 0, NULL, 0, NULL, 1),
(17158, 13485, '3', 'St.thomas collage of arts and science ', '', 'BBA', '2021', 69.00, '', 1, '2023-06-30 10:40:20', 0, NULL, 0, NULL, 1),
(17159, 13486, '4', 'Anna University ', '', 'BE', '2022', 7.64, '', 1, '2023-06-30 11:14:33', 0, NULL, 0, NULL, 1),
(17160, 13487, '3', 'Madras university ', '', 'B.com cs ', '2023', 81.00, '', 1, '2023-06-30 12:54:11', 0, NULL, 0, NULL, 1),
(17161, 13493, '3', 'Madras University', '', 'BA', '2023', 70.00, '', 1, '2023-06-30 06:29:44', 0, NULL, 0, NULL, 1),
(17162, 13494, '3', 'MADURAI KAMARAJ UNIVERSITY', '', 'Bachelors of computer application', '2019', 60.00, '', 1, '2023-07-01 09:48:44', 0, NULL, 0, NULL, 1),
(17163, 13495, '3', 'Madras University ', '', 'B.A Criminology & Police Administration ', '2023', 60.00, '', 1, '2023-07-01 12:38:06', 0, NULL, 0, NULL, 1),
(17164, 13496, '3', 'Anna university chennai', '', 'BE mechanical', '2021', 86.77, '', 1, '2023-07-01 03:32:47', 0, NULL, 0, NULL, 1),
(17165, 13500, '3', 'University ', '', 'B com (CS)', '2020', 78.00, '', 1, '2023-07-03 10:42:46', 0, NULL, 0, NULL, 1),
(17166, 13497, '3', 'Madras University ', '', 'Bbm', '2023', 79.00, '', 1, '2023-07-03 10:42:47', 0, NULL, 0, NULL, 1),
(17167, 13498, '3', 'madurai kamaraj university', '', 'Bsc (Computer Science)', '2023', 75.00, '', 1, '2023-07-03 10:43:14', 0, NULL, 0, NULL, 1),
(17168, 13499, '3', 'Madras University ', '', 'Bca', '2023', 70.00, '', 1, '2023-07-03 11:08:17', 0, NULL, 0, NULL, 1),
(17169, 13502, '3', 'Dr.MGR University ', '', 'B.tech', '2023', 70.00, '', 1, '2023-07-03 11:20:32', 0, NULL, 0, NULL, 1),
(17170, 13504, '1', 'Everwin Matriculation higher secondary school ', '', '', '2016', 87.20, '', 1, '2023-07-03 11:43:12', 1, '2023-07-03 11:44:41', 0, NULL, 1),
(17171, 13504, '2', 'Don Bosco Higher secondary school ', '', '', '2018', 76.00, '', 1, '2023-07-03 11:45:13', 1, '2023-07-03 11:48:21', 0, NULL, 1),
(17172, 13505, '3', 'Jntu kakinada', '', 'B tech ', '2021', 76.00, '', 1, '2023-07-03 11:45:58', 0, NULL, 0, NULL, 1),
(17173, 13504, '3', 'VelTech Dr.Rangarajan and Dr. Sagunthala R&D Institute of science and technology ', '', 'B.tech / CSE', '2022', 81.00, '', 1, '2023-07-03 11:47:56', 0, NULL, 0, NULL, 1),
(17174, 13506, '3', 'Bharathidhasan University ', '', 'BA. Economics & statistics ', '2019', 70.00, '', 1, '2023-07-03 11:49:12', 0, NULL, 0, NULL, 1),
(17175, 13503, '3', 'SRM University ', '', 'B.com (general)', '2023', 80.00, '', 1, '2023-07-03 11:50:11', 0, NULL, 0, NULL, 1),
(17176, 13490, '3', 'bharathidasan university', '', 'b com', '2020', 72.00, '', 1, '2023-07-03 02:41:15', 0, NULL, 0, NULL, 1),
(17177, 13501, '3', 'Sri muthukumara swamy colleg', '', 'B.com', '2001', 80.00, '', 1, '2023-07-03 02:53:16', 0, NULL, 0, NULL, 1),
(17178, 13507, '3', 'Anna university', '', 'BE', '2023', 7.30, '', 1, '2023-07-03 06:37:20', 0, NULL, 0, NULL, 1),
(17179, 13508, '3', 'Madras university ', '', 'Ba.Sociology', '2022', 52.00, '', 1, '2023-07-04 10:13:41', 0, NULL, 0, NULL, 1),
(17180, 13509, '3', 'Madras University of Chennai ', '', 'B.Sc Mathematics ', '2017', 65.00, '', 1, '2023-07-04 10:17:30', 0, NULL, 0, NULL, 1),
(17181, 13510, '3', 'Anna University ', '', 'Be', '2015', 68.00, '', 1, '2023-07-04 10:31:44', 0, NULL, 0, NULL, 1),
(17182, 13514, '5', 'BSS diploma ', '', '', '2018', 75.00, '', 1, '2023-07-04 10:56:51', 0, NULL, 0, NULL, 1),
(17183, 13512, '4', 'Periyar University ', '', 'MCA', '2023', 70.00, '', 1, '2023-07-04 10:58:27', 0, NULL, 0, NULL, 1),
(17184, 13512, '3', 'Bharathidhasan University ', '', 'BCA', '2021', 73.00, '', 1, '2023-07-04 10:59:35', 0, NULL, 0, NULL, 1),
(17185, 13511, '3', 'Kamraj University ', '', 'B com', '2021', 65.00, '', 1, '2023-07-04 11:01:05', 108, '2023-07-04 11:19:44', 0, NULL, 1),
(17186, 13512, '2', 'State Board ', '', '', '2018', 76.00, '', 1, '2023-07-04 11:01:07', 0, NULL, 0, NULL, 1),
(17187, 13516, '4', 'Periyar University ', '', 'Master of computer applications (MCA)', '2023', 75.00, '', 1, '2023-07-04 11:01:07', 0, NULL, 0, NULL, 1),
(17188, 13516, '3', 'Periyar University ', '', 'Bachelor of computer applications (BCA)', '2021', 70.00, '', 1, '2023-07-04 11:02:18', 0, NULL, 0, NULL, 1),
(17189, 13515, '3', 'Thiruvalluvar University ', '', 'Bachelor of computer Applications (BCA)', '2017', 71.00, '', 1, '2023-07-04 11:08:34', 0, NULL, 0, NULL, 1),
(17190, 13515, '4', 'Periyar University ', '', 'Master of computer Applications (MCA)', '2023', 72.00, '', 1, '2023-07-04 11:09:11', 0, NULL, 0, NULL, 1),
(17191, 13513, '4', 'PERIYAR UNIVERSITY ', '', 'Master of computer Applications ', '2023', 76.00, '', 1, '2023-07-04 11:17:22', 0, NULL, 0, NULL, 1),
(17192, 13513, '3', 'Periyar University ', '', 'Bachelor of Computer Application', '2021', 70.00, '', 1, '2023-07-04 11:18:23', 1, '2023-07-04 11:18:46', 0, NULL, 1),
(17193, 13518, '3', 'Madras University ', '', 'B.com', '2019', 75.00, '', 1, '2023-07-04 01:09:36', 0, NULL, 0, NULL, 1),
(17194, 13520, '3', 'Madras University', '', 'Bsc Chemistry', '2021', 65.00, '', 1, '2023-07-04 01:41:38', 0, NULL, 0, NULL, 1),
(17195, 13521, '5', 'Government of Tamil Nadu department of technical education', '', 'DME', '2019', 70.00, '', 1, '2023-07-04 02:14:38', 0, NULL, 0, NULL, 1),
(17196, 13523, '3', 'Anna University ', '', 'BE CSE', '2020', 69.00, '', 1, '2023-07-04 06:49:45', 0, NULL, 0, NULL, 1),
(17197, 13524, '3', 'Bharathi dhasan ', '', 'BA English Literature ', '2017', 63.00, '', 1, '2023-07-04 08:23:46', 0, NULL, 0, NULL, 1),
(17198, 13525, '3', 'Islamic college automos', '', 'Commerce ', '2023', 70.00, '', 1, '2023-07-04 11:13:19', 0, NULL, 0, NULL, 1),
(17199, 13526, '3', 'saveetha university ', '', 'bsc ahs ', '2021', 82.00, '', 1, '2023-07-05 10:08:30', 0, NULL, 0, NULL, 1),
(17200, 13528, '3', 'Bharathiyar University ', '', 'B com', '2023', 62.00, '', 1, '2023-07-05 10:43:52', 0, NULL, 0, NULL, 1),
(17201, 13530, '3', 'Thiruvalluvar University ', '', 'B.SC', '2021', 80.00, '', 1, '2023-07-05 10:45:15', 0, NULL, 0, NULL, 1),
(17202, 13529, '4', 'Thiruvallur University ', '', 'MSC chemistry ', '2021', 70.00, '', 1, '2023-07-05 10:45:30', 0, NULL, 0, NULL, 1),
(17203, 13531, '5', 'Central polytechnic college', '', 'DME ', '2023', 50.00, '', 1, '2023-07-05 11:36:01', 0, NULL, 0, NULL, 1),
(17204, 13532, '1', 'state board', '', '', '2018', 73.20, '', 1, '2023-07-05 12:09:55', 0, NULL, 0, NULL, 1),
(17205, 13532, '2', 'state board', '', '', '2020', 63.00, '', 1, '2023-07-05 12:10:18', 0, NULL, 0, NULL, 1),
(17206, 13532, '3', 'university of madras', '', 'b.com ', '2023', 73.00, '', 1, '2023-07-05 12:11:31', 0, NULL, 0, NULL, 1),
(17207, 13533, '3', 'Manonmaniyam sundaranath University ', '', 'BBA', '2020', 66.00, '', 1, '2023-07-05 02:43:14', 0, NULL, 0, NULL, 1),
(17208, 13534, '3', 'Madras university ', '', 'B.com', '2017', 67.00, '', 1, '2023-07-05 08:32:33', 0, NULL, 0, NULL, 1),
(17209, 13538, '3', 'Anna University ', '', 'B.E mechanical ', '2019', 70.00, '', 1, '2023-07-06 10:56:28', 0, NULL, 0, NULL, 1),
(17210, 13537, '3', 'Anna University ', '', 'B. E(Mechanical)', '2019', 65.00, '', 1, '2023-07-06 10:56:37', 0, NULL, 0, NULL, 1),
(17211, 13539, '3', 'Madras university ', '', 'B.sc.Maths', '2021', 80.00, '', 1, '2023-07-06 11:14:59', 0, NULL, 0, NULL, 1),
(17212, 13544, '1', 'State borad ', '', '', '2012', 50.00, '', 1, '2023-07-06 12:34:17', 0, NULL, 0, NULL, 1),
(17213, 13543, '3', 'dr mgr university', '', 'bba', '2023', 75.00, '', 1, '2023-07-06 12:39:26', 0, NULL, 0, NULL, 1),
(17214, 13540, '3', 'dr ambedkar college', '', 'b.sc', '2023', 70.00, '', 1, '2023-07-06 12:47:15', 0, NULL, 0, NULL, 1),
(17215, 13542, '3', 'dr.mgr University ', '', 'bba', '2023', 75.00, '', 1, '2023-07-06 12:49:14', 0, NULL, 0, NULL, 1),
(17216, 13541, '3', 'devanga arts', '', 'bca', '2021', 70.00, '', 1, '2023-07-06 01:05:27', 0, NULL, 0, NULL, 1),
(17217, 13545, '3', 'Board', '', 'B.com(ca)', '2017', 60.00, '', 1, '2023-07-06 01:12:33', 0, NULL, 0, NULL, 1),
(17218, 13547, '3', 'Madras University ', '', 'B.com General ', '2023', 80.00, '', 1, '2023-07-06 02:40:53', 0, NULL, 0, NULL, 1),
(17219, 13548, '3', 'Madars University ', '', 'B.com General ', '2023', 80.00, '', 1, '2023-07-06 02:41:52', 0, NULL, 0, NULL, 1),
(17220, 13549, '3', 'Bharathi women\'s college ', '', 'B Com general ', '2023', 69.00, '', 1, '2023-07-06 03:11:38', 0, NULL, 0, NULL, 1),
(17221, 13551, '3', 'Justice basheer Ahmed Sayeed college for women ', '', 'Bcom', '2023', 80.00, '', 1, '2023-07-07 09:45:56', 0, NULL, 0, NULL, 1),
(17222, 13550, '1', 'KARNATAKA SECONDARY EDUCATION EXAMINATION BOARD ', '', '', '2018', 90.40, '', 1, '2023-07-07 10:50:44', 0, NULL, 0, NULL, 1),
(17223, 13550, '2', 'DEPARTMENT OF PRE UNIVERSITY EDUCATION ', '', '', '2020', 64.00, '', 1, '2023-07-07 10:52:13', 0, NULL, 0, NULL, 1),
(17224, 13554, '4', 'Bharathidasan University ', '', 'Msc computer science ', '2023', 81.00, '', 1, '2023-07-07 11:11:50', 1, '2023-07-07 11:13:05', 0, NULL, 0),
(17225, 13552, '4', 'University ', '', 'M.sc cS', '2023', 74.40, '', 1, '2023-07-07 11:12:16', 0, NULL, 0, NULL, 1),
(17226, 13554, '4', 'Bharathidasan University ', '', 'Msc cs', '2023', 82.00, '', 1, '2023-07-07 11:12:52', 0, NULL, 0, NULL, 1),
(17227, 13550, '3', 'RANI CHENNAMMA UNIVERSITY BELAGAVI ', '', 'BACHELOR\'S OF SCIENCE ', '2023', 68.21, '', 1, '2023-07-07 11:15:59', 0, NULL, 0, NULL, 1),
(17228, 13553, '4', 'Anna University ', '', 'Mca', '2023', 8.07, '', 1, '2023-07-07 11:44:57', 0, NULL, 0, NULL, 1),
(17229, 13555, '4', 'Madras university', '', 'mSWHRM', '2022', 74.00, '', 1, '2023-07-07 12:12:10', 0, NULL, 0, NULL, 1),
(17230, 13555, '3', 'Madras university', '', 'bSC', '2020', 72.00, '', 1, '2023-07-07 12:12:53', 0, NULL, 0, NULL, 1),
(17231, 13556, '3', 'Annamalai University ', '', 'B.Com', '2005', 55.00, '', 1, '2023-07-07 12:19:33', 0, NULL, 0, NULL, 1),
(17232, 13557, '3', 'Thiruvalluvar University', '', 'bCA', '2023', 79.00, '', 1, '2023-07-07 12:33:41', 0, NULL, 0, NULL, 1),
(17233, 13558, '4', 'Periyar University ', '', 'MCA', '2023', 85.00, '', 1, '2023-07-07 12:51:14', 0, NULL, 0, NULL, 1),
(17234, 13558, '3', 'Bharathidasan University ', '', 'BCA ', '2021', 82.00, '', 1, '2023-07-07 12:51:54', 0, NULL, 0, NULL, 1),
(17235, 13558, '2', 'State Board ', '', '', '2018', 77.00, '', 1, '2023-07-07 12:52:19', 0, NULL, 0, NULL, 1),
(17236, 13558, '1', 'State Board ', '', '', '2016', 90.00, '', 1, '2023-07-07 12:52:38', 0, NULL, 0, NULL, 1),
(17237, 13559, '3', 'Madras University ', '', 'B. Sc Computer science ', '2021', 77.00, '', 1, '2023-07-07 03:00:07', 0, NULL, 0, NULL, 1),
(17238, 13559, '2', 'State Board of Tamilnadu ', '', '', '2018', 66.00, '', 1, '2023-07-07 03:00:42', 0, NULL, 0, NULL, 1),
(17239, 13559, '1', 'State board of Tamilnadu ', '', '', '2016', 78.00, '', 1, '2023-07-07 03:01:21', 0, NULL, 0, NULL, 1),
(17240, 13560, '3', 'Stella Maris college', '', 'BCA', '2021', 60.00, '', 1, '2023-07-07 03:13:31', 0, NULL, 0, NULL, 1),
(17241, 13560, '2', 'State board', '', '', '2018', 83.00, '', 1, '2023-07-07 03:14:40', 0, NULL, 0, NULL, 1),
(17242, 13560, '1', 'State board', '', '', '2016', 87.00, '', 1, '2023-07-07 03:15:07', 0, NULL, 0, NULL, 1),
(17243, 13561, '3', 'Madras university', '', 'B. Sc physics', '2021', 84.00, '', 1, '2023-07-07 04:38:26', 0, NULL, 0, NULL, 1),
(17244, 13562, '3', 'Anna university', '', 'Be ece', '2012', 7.00, '', 1, '2023-07-07 06:47:50', 0, NULL, 0, NULL, 1),
(17245, 13563, '1', 'State board ', '', '', '2016', 93.00, '', 1, '2023-07-08 10:00:05', 0, NULL, 0, NULL, 1),
(17246, 13563, '2', 'State board ', '', '', '2018', 72.00, '', 1, '2023-07-08 10:00:33', 0, NULL, 0, NULL, 1),
(17247, 13563, '3', 'Bharathidasan University ', '', 'BCA ', '2021', 84.00, '', 1, '2023-07-08 10:02:01', 0, NULL, 0, NULL, 1),
(17248, 13563, '4', 'Anna University ', '', 'MCA ', '2023', 79.00, '', 1, '2023-07-08 10:02:23', 0, NULL, 0, NULL, 1),
(17249, 13564, '3', 'university of madras', '', 'BA Economics', '2023', 73.00, '', 1, '2023-07-08 11:13:32', 0, NULL, 0, NULL, 1),
(17250, 13566, '4', 'University of Madras ', '', 'MCA', '2022', 80.00, '', 1, '2023-07-08 11:33:17', 0, NULL, 0, NULL, 1),
(17251, 13568, '3', 'Madras university ', '', 'B.com ( cORPORATE SECRETARYSHIP)', '2023', 85.00, '', 1, '2023-07-08 11:41:16', 0, NULL, 0, NULL, 1),
(17252, 13567, '3', 'Autonomous', '', 'B.com information system management', '2023', 64.70, '', 1, '2023-07-08 11:46:28', 0, NULL, 0, NULL, 1),
(17253, 13571, '5', 'DOTE', '', 'Diploma in mechatronics', '2019', 65.00, '', 1, '2023-07-08 12:18:17', 0, NULL, 0, NULL, 1),
(17254, 13565, '3', 'bharathi womens college', '', 'b a', '2023', 71.00, '', 1, '2023-07-08 12:20:22', 0, NULL, 0, NULL, 1),
(17255, 13572, '3', 'Madras University ', '', 'BBA ', '2023', 60.00, '', 1, '2023-07-08 12:26:21', 0, NULL, 0, NULL, 1),
(17256, 13573, '3', 'Madras University ', '', 'BBA ', '2023', 64.00, '', 1, '2023-07-08 12:29:27', 0, NULL, 0, NULL, 1),
(17257, 13572, '1', 'Madras University ', '', 'BBA ', '2023', 60.00, '', 1, '2023-07-08 12:32:44', 0, NULL, 0, NULL, 1),
(17258, 13572, '2', 'Madras University ', '', '', '2019', 66.00, '', 1, '2023-07-08 12:34:17', 0, NULL, 0, NULL, 1),
(17259, 13574, '1', 'Madras University ', '', '', '2017', 61.00, '', 1, '2023-07-08 12:38:07', 0, NULL, 0, NULL, 1),
(17260, 13574, '2', 'Madras University ', '', '', '2019', 52.00, '', 1, '2023-07-08 12:38:19', 0, NULL, 0, NULL, 1),
(17261, 13574, '3', 'Madras University ', '', 'BBA ', '2023', 63.00, '', 1, '2023-07-08 12:38:39', 0, NULL, 0, NULL, 1),
(17262, 13576, '3', 'Madras university', '', 'B. Com', '2021', 78.00, '', 1, '2023-07-08 01:02:05', 0, NULL, 0, NULL, 1),
(17263, 13575, '2', 'Assumption Higher Secondary School', '', '', '2019', 1.00, '', 1, '2023-07-08 01:09:19', 0, NULL, 0, NULL, 1),
(17264, 13578, '3', 'Loyola college ', '', 'B.com cs', '2023', 6.52, '', 1, '2023-07-10 09:52:57', 0, NULL, 0, NULL, 1),
(17265, 13579, '4', 'Madras University ', '', 'Mba', '2023', 89.00, '', 1, '2023-07-10 10:31:41', 0, NULL, 0, NULL, 1),
(17266, 13580, '5', 'Dote', '', 'Computer science engineering ', '2022', 73.00, '', 1, '2023-07-10 10:37:15', 0, NULL, 0, NULL, 1),
(17267, 13581, '3', 'Anna University ', '', 'B.a', '2023', 61.00, '', 1, '2023-07-10 11:17:40', 0, NULL, 0, NULL, 1),
(17268, 13582, '5', 'periyar University ', '', 'dct', '2020', 62.00, '', 1, '2023-07-10 11:33:00', 0, NULL, 0, NULL, 1),
(17269, 13583, '2', 'University of madras', '', '', '2017', 70.00, '', 1, '2023-07-10 12:00:42', 0, NULL, 0, NULL, 1),
(17270, 13584, '3', 'Madras University ', '', 'BCA ', '2023', 75.00, '', 1, '2023-07-10 01:19:38', 1, '2023-07-10 01:20:11', 0, NULL, 0),
(17271, 13584, '3', 'Madras University ', '', 'BCA ', '2023', 75.00, '', 1, '2023-07-10 01:20:42', 0, NULL, 0, NULL, 1),
(17272, 13585, '2', 'MCTM Girls higher secondary school ', '', '', '2021', 60.00, '', 1, '2023-07-10 02:23:51', 0, NULL, 0, NULL, 1),
(17273, 13586, '4', 'University of Madras ', '', 'MBalA', '2023', 72.00, '', 1, '2023-07-10 04:01:21', 0, NULL, 0, NULL, 1),
(17274, 13588, '3', 'Berhampur Univercity ', '', '+3 Arts', '2014', 72.00, '', 1, '2023-07-10 04:53:49', 0, NULL, 0, NULL, 1),
(17275, 13590, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2021', 80.00, '', 1, '2023-07-10 05:17:05', 0, NULL, 0, NULL, 1),
(17276, 13594, '3', 'Thiruvalluvar university ', '', 'Bsc chemistry ', '2020', 60.00, '', 1, '2023-07-11 12:37:23', 0, NULL, 0, NULL, 1),
(17277, 13595, '3', 'Yashvant rao chavan university nashik', '', 'BA', '2022', 75.00, '', 1, '2023-07-11 10:56:53', 0, NULL, 0, NULL, 1),
(17278, 13595, '2', 'Rayat shikshan sanstha', '', '', '2018', 52.00, '', 1, '2023-07-11 11:01:06', 0, NULL, 0, NULL, 1),
(17279, 13595, '1', 'Anant english school', '', '', '2016', 80.60, '', 1, '2023-07-11 11:01:29', 0, NULL, 0, NULL, 1),
(17280, 13587, '3', 'Anna university ', '', 'B E Aeronautical ', '2022', 75.00, '', 1, '2023-07-11 11:13:24', 0, NULL, 0, NULL, 1),
(17281, 13587, '2', 'Board', '', '', '2018', 82.00, '', 1, '2023-07-11 11:14:05', 0, NULL, 0, NULL, 1),
(17282, 13587, '1', 'Matriculation ', '', '', '2016', 87.00, '', 1, '2023-07-11 11:14:31', 0, NULL, 0, NULL, 1),
(17283, 13599, '3', 'Anna University ', '', 'B.E', '2022', 79.00, '', 1, '2023-07-11 11:19:52', 0, NULL, 0, NULL, 1),
(17284, 13599, '2', 'Tamilnadu ', '', '', '2014', 80.91, '', 1, '2023-07-11 11:21:52', 0, NULL, 0, NULL, 1),
(17285, 13600, '3', 'Anna University', '', 'B.Tech -Information technology', '2018', 75.00, '', 1, '2023-07-11 11:24:05', 0, NULL, 0, NULL, 1),
(17286, 13597, '3', 'University of Madras ', '', 'Bcom', '2023', 65.00, '', 1, '2023-07-11 11:24:57', 0, NULL, 0, NULL, 1),
(17287, 13593, '4', 'Annamalai university', '', 'M. Com', '2023', 74.00, '', 1, '2023-07-11 11:32:06', 0, NULL, 0, NULL, 1),
(17288, 13589, '4', 'Madras University ', '', 'B.com computer application ', '2019', 52.00, '', 1, '2023-07-11 11:35:10', 0, NULL, 0, NULL, 1),
(17289, 13596, '3', 'Madras University ', '', 'Ba', '2023', 64.00, '', 1, '2023-07-11 11:43:17', 0, NULL, 0, NULL, 1),
(17290, 13601, '3', 'Madras University ', '', 'Bba', '2022', 75.00, '', 1, '2023-07-11 11:48:53', 0, NULL, 0, NULL, 1),
(17291, 13602, '3', 'mgr university', '', 'btrch', '2016', 62.00, '', 1, '2023-07-11 11:58:10', 0, NULL, 0, NULL, 1),
(17292, 13605, '3', 'MK university', '', 'BBA', '2016', 55.00, '', 1, '2023-07-11 12:37:24', 0, NULL, 0, NULL, 1),
(17293, 13605, '2', 'State board', '', '', '2013', 48.00, '', 1, '2023-07-11 12:38:18', 0, NULL, 0, NULL, 1),
(17294, 13605, '1', 'State Board', '', '', '2011', 72.00, '', 1, '2023-07-11 12:39:00', 0, NULL, 0, NULL, 1),
(17295, 13603, '3', 'University of madras', '', 'Bcom', '2023', 70.00, '', 1, '2023-07-11 12:42:05', 0, NULL, 0, NULL, 1),
(17296, 13603, '2', 'State borad', '', '', '2020', 75.00, '', 1, '2023-07-11 12:42:50', 1, '2023-07-11 12:44:24', 0, NULL, 1),
(17297, 13603, '1', 'State board', '', '', '2018', 80.00, '', 1, '2023-07-11 12:44:58', 0, NULL, 0, NULL, 1),
(17298, 13604, '4', 'Thiruvalluvar University ', '', 'M.A', '2023', 60.00, '', 1, '2023-07-11 12:57:12', 0, NULL, 0, NULL, 1),
(17299, 13606, '3', 'bharath university', '', 'bca', '2021', 75.50, '', 1, '2023-07-11 01:06:30', 0, NULL, 0, NULL, 1),
(17300, 13608, '3', 'Dr.Mgr Educational and Research institute ', '', 'B.Tech IT', '2023', 72.00, '', 1, '2023-07-11 01:46:09', 0, NULL, 0, NULL, 1),
(17301, 13609, '3', 'Madras University ', '', 'B.com', '2022', 75.00, '', 1, '2023-07-11 01:49:38', 0, NULL, 0, NULL, 1),
(17302, 13607, '5', 'apollo university', '', 'dme', '2014', 61.00, '', 1, '2023-07-11 01:55:16', 0, NULL, 0, NULL, 1),
(17303, 13610, '3', 'Anna University ', '', 'B. e', '2007', 74.00, '', 1, '2023-07-11 03:10:49', 0, NULL, 0, NULL, 1),
(17304, 13610, '2', 'State Board', '', '', '2003', 87.00, '', 1, '2023-07-11 03:11:17', 0, NULL, 0, NULL, 1),
(17305, 13610, '1', 'State Board', '', '', '2001', 91.00, '', 1, '2023-07-11 03:11:35', 0, NULL, 0, NULL, 1),
(17306, 13611, '4', 'Madras University ', '', 'MBA', '2020', 54.00, '', 1, '2023-07-11 04:48:22', 0, NULL, 0, NULL, 1),
(17307, 13613, '4', 'ims proschool', '', 'post Graduation program in management accounting', '2022', 66.00, '', 1, '2023-07-12 01:24:31', 0, NULL, 0, NULL, 1),
(17308, 13613, '4', 'chartered institute of management accounting', '', 'cima - pursing management level', '2024', 100.00, '', 1, '2023-07-12 01:27:13', 0, NULL, 0, NULL, 1),
(17309, 13614, '3', 'Bharathidasan university', '', 'BCA', '2021', 8.18, '', 1, '2023-07-12 10:07:56', 0, NULL, 0, NULL, 1),
(17310, 5548, '3', 'Anna University ', '', 'BE CSE ', '2021', 76.40, '', 1, '2023-07-12 10:12:42', 0, NULL, 0, NULL, 1),
(17311, 13615, '3', 'University of Madras ', '', 'B.Com', '2023', 77.00, '', 1, '2023-07-12 10:18:47', 0, NULL, 0, NULL, 1),
(17312, 13616, '3', 'Madras University ', '', 'B.com', '2023', 75.00, '', 1, '2023-07-12 10:19:47', 0, NULL, 0, NULL, 1),
(17313, 13617, '3', 'Madras university', '', 'B.com', '2021', 70.93, '', 1, '2023-07-12 10:20:11', 0, NULL, 0, NULL, 1),
(17314, 13617, '2', 'State board', '', '', '2018', 89.88, '', 1, '2023-07-12 10:20:58', 0, NULL, 0, NULL, 1),
(17315, 13617, '1', 'State board', '', '', '2016', 94.60, '', 1, '2023-07-12 10:21:19', 0, NULL, 0, NULL, 1),
(17316, 13598, '3', 'Am Jain college', '', 'Bba ', '2022', 79.00, '', 1, '2023-07-12 10:25:22', 0, NULL, 0, NULL, 1),
(17317, 13618, '3', 'bharathi university', '', 'b.com', '2023', 68.00, '', 1, '2023-07-12 11:04:54', 0, NULL, 0, NULL, 1),
(17318, 13619, '5', 'Anna university ', '', 'Electrical and electronic engineering ', '2021', 95.00, '', 1, '2023-07-12 12:12:47', 0, NULL, 0, NULL, 1),
(17319, 13620, '3', 'Bharathithasan university', '', 'B.com', '2023', 63.00, '', 1, '2023-07-12 12:16:40', 0, NULL, 0, NULL, 1),
(17320, 13621, '5', 'Anna University ', '', 'Diploma Mechanical Engineering ', '2019', 75.00, '', 1, '2023-07-12 01:52:01', 0, NULL, 0, NULL, 1),
(17321, 13625, '3', 'Cipet', '', '', '2017', 60.00, '', 1, '2023-07-13 10:23:08', 0, NULL, 0, NULL, 1),
(17322, 13625, '1', 'Sri Ramakrishna hr,. Sec. School', '', '12th', '2013', 92.00, '', 1, '2023-07-13 10:24:02', 0, NULL, 0, NULL, 1),
(17323, 13625, '2', 'Tagore. Hr. Sec. Matric. School', '', '', '2011', 91.60, '', 1, '2023-07-13 10:24:35', 0, NULL, 0, NULL, 1),
(17324, 13623, '3', 'Stella maris', '', 'B.com', '2023', 68.00, '', 1, '2023-07-13 10:26:11', 0, NULL, 0, NULL, 1),
(17325, 13623, '1', 'St.antonys school', '', '', '2018', 88.00, '', 1, '2023-07-13 10:26:48', 0, NULL, 0, NULL, 1),
(17326, 13623, '2', 'St.antonys school', '', '', '2023', 87.00, '', 1, '2023-07-13 10:27:14', 0, NULL, 0, NULL, 1),
(17327, 13626, '3', 'University of Madras', '', 'BCA', '2019', 70.00, '', 1, '2023-07-13 10:27:37', 0, NULL, 0, NULL, 1),
(17328, 13624, '5', 'Dote', '', 'Diploma ', '2015', 72.00, '', 1, '2023-07-13 10:27:56', 0, NULL, 0, NULL, 1),
(17329, 13627, '3', 'Madras University ', '', 'B.Com', '2023', 77.60, '', 1, '2023-07-13 10:57:37', 0, NULL, 0, NULL, 1),
(17330, 13628, '3', 'Mahendra engineering college for women ', '', 'B.tech.it', '2019', 64.00, '', 1, '2023-07-13 11:34:31', 0, NULL, 0, NULL, 1),
(17331, 13629, '3', 'University of Madras ', '', 'BBA', '2023', 74.00, '', 1, '2023-07-13 11:34:40', 0, NULL, 0, NULL, 1),
(17332, 13630, '2', 'State board ', '', '', '2017', 57.00, '', 1, '2023-07-13 11:40:19', 0, NULL, 0, NULL, 1),
(17333, 13631, '2', 'State board', '', '', '2014', 48.00, '', 1, '2023-07-13 11:40:27', 0, NULL, 0, NULL, 1),
(17334, 13632, '4', 'Bharadhiar University ', '', 'Msc cs', '2023', 72.00, '', 1, '2023-07-13 11:55:56', 0, NULL, 0, NULL, 1),
(17335, 13633, '3', 'Chevalier T Thomas Elizabeth college for women ', '', 'B.com CS', '2023', 73.00, '', 1, '2023-07-13 12:00:44', 0, NULL, 0, NULL, 1),
(17336, 13633, '2', 'Princess matriculation higher secondary school ', '', '', '2020', 83.00, '', 1, '2023-07-13 12:01:06', 0, NULL, 0, NULL, 1),
(17337, 13634, '3', 'Madras University ', '', 'BBA', '2023', 71.00, '', 1, '2023-07-13 12:19:03', 0, NULL, 0, NULL, 1),
(17338, 13635, '3', 'Anna university ', '', 'Bacherlor of computer science engineering ', '2022', 88.00, '', 1, '2023-07-13 12:43:59', 0, NULL, 0, NULL, 1),
(17339, 13636, '3', 'Madras university', '', 'BCA', '2019', 86.00, '', 1, '2023-07-13 02:44:15', 0, NULL, 0, NULL, 1),
(17340, 13637, '3', 'Thiruvalluvar ', '', 'BA.English', '2023', 60.00, '', 1, '2023-07-13 02:52:43', 0, NULL, 0, NULL, 1),
(17341, 13638, '3', 'Anna university ', '', '', '2013', 60.00, '', 1, '2023-07-14 09:17:52', 0, NULL, 0, NULL, 1),
(17342, 13639, '3', 'Institute of Engineering Technology and Management Chennai', '', 'BA English', '2009', 80.02, '', 1, '2023-07-14 10:15:14', 0, NULL, 0, NULL, 1),
(17343, 13639, '5', 'Srinivasa Subbaraya Polytechnic College', '', 'Computer', '2006', 69.75, '', 1, '2023-07-14 10:16:17', 0, NULL, 0, NULL, 1),
(17344, 13639, '2', 'Thavasumuthu Nadar Higher Secondary School', '', '', '2003', 48.50, '', 1, '2023-07-14 10:17:07', 0, NULL, 0, NULL, 1),
(17345, 13639, '1', 'Government High School Thirukadaiyur', '', '', '2001', 79.85, '', 1, '2023-07-14 10:17:36', 0, NULL, 0, NULL, 1),
(17346, 13640, '3', 'VSB engineering college', '', 'BE.ECE', '2020', 70.00, '', 1, '2023-07-14 11:04:42', 0, NULL, 0, NULL, 1),
(17347, 13641, '3', 'Madras University ', '', 'B.com(general)', '2023', 87.00, '', 1, '2023-07-14 11:23:22', 0, NULL, 0, NULL, 1),
(17348, 13642, '3', 'madras university', '', 'b sc', '2021', 75.00, '', 1, '2023-07-14 12:44:37', 0, NULL, 0, NULL, 1),
(17349, 13648, '3', 'PRIST UNIVERSITY ', '', 'B.tech', '2012', 66.00, '', 1, '2023-07-14 12:58:31', 0, NULL, 0, NULL, 1),
(17350, 13647, '3', 'Veltech University ', '', 'B.Tech ', '2017', 73.00, '', 1, '2023-07-14 12:59:06', 0, NULL, 0, NULL, 1),
(17351, 13649, '4', 'Madars University ', '', 'M.com', '2021', 75.00, '', 1, '2023-07-14 01:09:24', 0, NULL, 0, NULL, 1),
(17352, 13645, '3', 'madras university', '', 'B.com(G)', '2023', 62.00, '', 1, '2023-07-14 01:26:39', 0, NULL, 0, NULL, 1),
(17353, 13650, '3', 'Kalasalingam institute of technology ', '', 'B.E', '2021', 81.40, '', 1, '2023-07-14 02:11:44', 0, NULL, 0, NULL, 1),
(17354, 13650, '1', 'Sitalakshmi girls higher secondary school ', '', '', '2015', 90.60, '', 1, '2023-07-14 02:12:41', 1, '2023-07-14 02:13:29', 0, NULL, 0),
(17355, 13650, '2', 'Sitalakshmi girls higher secondary school ', '', '', '2017', 72.17, '', 1, '2023-07-14 02:13:05', 0, NULL, 0, NULL, 1),
(17356, 13650, '1', 'Sitalakshmi girls higher secondary school ', '', '', '2015', 90.60, '', 1, '2023-07-14 02:14:07', 0, NULL, 0, NULL, 1),
(17357, 13652, '3', 'Madras University ', '', 'Ba', '2023', 75.00, '', 1, '2023-07-14 05:09:33', 0, NULL, 0, NULL, 1),
(17358, 13653, '3', 'Gurunanak college ', '', 'B.com ', '2023', 70.00, '', 1, '2023-07-14 06:50:22', 0, NULL, 0, NULL, 1),
(17359, 13651, '3', 'Madras university', '', 'B. C. A', '2022', 73.71, '', 1, '2023-07-15 07:21:02', 0, NULL, 0, NULL, 1),
(17360, 13656, '4', 'Alagappa university ', '', 'MBA', '2023', 75.00, '', 1, '2023-07-15 09:25:45', 0, NULL, 0, NULL, 1),
(17361, 13659, '3', 'Madras University ', '', 'B.com (corporate secretaryship)', '2022', 87.00, '', 1, '2023-07-15 10:16:19', 0, NULL, 0, NULL, 1),
(17362, 13657, '3', 'Madras university ', '', 'BA English', '2021', 73.00, '', 1, '2023-07-15 10:16:30', 0, NULL, 0, NULL, 1),
(17363, 13659, '2', 'State board', '', '', '2019', 68.00, '', 1, '2023-07-15 10:17:21', 0, NULL, 0, NULL, 1),
(17364, 13657, '2', 'State board ', '', '', '2018', 61.00, '', 1, '2023-07-15 10:17:35', 0, NULL, 0, NULL, 1),
(17365, 13659, '1', 'State board ', '', '', '2017', 78.00, '', 1, '2023-07-15 10:17:58', 0, NULL, 0, NULL, 1),
(17366, 13657, '1', 'State board ', '', '', '2016', 65.00, '', 1, '2023-07-15 10:18:38', 0, NULL, 0, NULL, 1),
(17367, 13659, '4', 'Madras University ', '', 'MBA(financial management)', '2024', 0.00, '', 1, '2023-07-15 10:19:40', 1, '2023-07-15 10:19:53', 0, NULL, 0),
(17368, 13660, '3', 'Dr. mgr University ', '', 'B sc', '2021', 79.00, '', 1, '2023-07-15 10:28:52', 0, NULL, 0, NULL, 1),
(17369, 13658, '3', 'Madras University ', '', 'B.Com (cs)', '2022', 77.00, '', 1, '2023-07-15 10:36:47', 0, NULL, 0, NULL, 1),
(17370, 13658, '2', 'CSI ANDERSON DAYS GIRLS HIGHER SECONDARY SCHOOL ', '', '', '2019', 73.00, '', 1, '2023-07-15 10:37:47', 0, NULL, 0, NULL, 1),
(17371, 13658, '1', 'Chennai Girls government higher secondary school ', '', '', '2017', 85.00, '', 1, '2023-07-15 10:38:28', 0, NULL, 0, NULL, 1),
(17372, 13661, '3', 'Anna University ', '', 'B.E. CSE', '2021', 74.00, '', 1, '2023-07-15 10:57:47', 0, NULL, 0, NULL, 1),
(17373, 13661, '1', 'State Board', '', '', '2015', 91.25, '', 1, '2023-07-15 10:58:42', 0, NULL, 0, NULL, 1),
(17374, 13661, '2', 'State Board ', '', '', '2017', 87.25, '', 1, '2023-07-15 10:59:04', 0, NULL, 0, NULL, 1),
(17375, 13654, '3', 'University of madras', '', 'BBA', '2023', 70.00, '', 1, '2023-07-15 11:31:13', 0, NULL, 0, NULL, 1),
(17376, 13535, '3', 'Thiruvalluvar University ', '', 'BCA', '2023', 77.00, '', 1, '2023-07-15 12:15:35', 1, '2023-07-15 12:16:14', 0, NULL, 0),
(17377, 13535, '3', 'Thiruvalluvar University ', '', 'BCA', '2023', 77.00, '', 1, '2023-07-15 12:17:01', 0, NULL, 0, NULL, 1),
(17378, 13655, '3', 'Thiruvalluvar University ', '', 'BCA', '2023', 74.00, '', 1, '2023-07-15 12:19:40', 0, NULL, 0, NULL, 1),
(17379, 13662, '5', 'Dote', '', 'Diploma ', '2017', 72.00, '', 1, '2023-07-15 12:20:40', 0, NULL, 0, NULL, 1),
(17380, 13663, '4', 'University of madras', '', 'Mba', '2008', 60.00, '', 1, '2023-07-15 12:45:44', 0, NULL, 0, NULL, 1),
(17381, 13664, '1', 'Matric', '', '', '2006', 61.00, '', 1, '2023-07-15 12:55:56', 0, NULL, 0, NULL, 1),
(17382, 13664, '2', 'Matric', '', '', '2008', 63.00, '', 1, '2023-07-15 12:56:14', 0, NULL, 0, NULL, 1),
(17383, 13664, '3', 'Periyar unuversity', '', 'Bca', '2011', 67.00, '', 1, '2023-07-15 12:56:39', 0, NULL, 0, NULL, 1),
(17384, 13664, '4', 'Annauniversity', '', 'Mca', '2014', 70.00, '', 1, '2023-07-15 12:57:10', 0, NULL, 0, NULL, 1),
(17385, 13665, '3', 'Idhaya college', '', 'Bcom(cs) ', '2017', 78.00, '', 1, '2023-07-15 02:16:56', 0, NULL, 0, NULL, 1),
(17386, 13665, '1', 'Sai baba school', '', '', '2011', 60.00, '', 1, '2023-07-15 02:18:28', 0, NULL, 0, NULL, 1),
(17387, 13665, '2', 'Soucila bai', '', '', '2013', 79.00, '', 1, '2023-07-15 02:19:11', 0, NULL, 0, NULL, 1),
(17388, 13666, '4', 'Anna University', '', '', '2023', 82.00, '', 1, '2023-07-15 03:07:14', 0, NULL, 0, NULL, 1),
(17389, 13666, '3', 'Bharathiar University ', '', '', '2020', 70.00, '', 1, '2023-07-15 03:07:32', 0, NULL, 0, NULL, 1),
(17390, 13666, '2', 'State board', '', '', '2017', 69.00, '', 1, '2023-07-15 03:07:56', 0, NULL, 0, NULL, 1),
(17391, 13666, '1', 'State board ', '', '', '2015', 91.00, '', 1, '2023-07-15 03:08:15', 0, NULL, 0, NULL, 1),
(17392, 13667, '3', 'Mar Gregorius arts and science college.. University of madras', '', 'B.Com.Coroporate secretaryship', '2022', 75.00, '', 1, '2023-07-16 11:03:21', 0, NULL, 0, NULL, 1),
(17393, 13668, '3', 'Thiruvalluvar University ', '', 'BCA', '2023', 100.00, '', 1, '2023-07-17 11:07:38', 0, NULL, 0, NULL, 1),
(17394, 13671, '3', 'Dhanraj baid Jain college ', '', 'B.com ', '2023', 70.00, '', 1, '2023-07-17 11:24:56', 0, NULL, 0, NULL, 1),
(17395, 13673, '3', 'Madras University ', '', 'BCA ', '2017', 70.00, '', 1, '2023-07-17 11:52:27', 0, NULL, 0, NULL, 1),
(17396, 13672, '3', 'Madras university', '', 'B. A', '2020', 75.00, '', 1, '2023-07-17 11:53:34', 0, NULL, 0, NULL, 1),
(17397, 13674, '3', 'Madurai kamarajar university ', '', 'Bsc computer science ', '2021', 73.00, '', 1, '2023-07-17 11:55:47', 0, NULL, 0, NULL, 1),
(17398, 13669, '3', 'Anna University ', '', 'BE/COMPUTER SCIENCE ENGINEERING ', '2022', 81.00, '', 1, '2023-07-17 12:01:11', 0, NULL, 0, NULL, 1),
(17399, 13622, '4', 'Alagappa University ', '', 'M.sc bioelectronics and biosensor ', '2023', 69.00, '', 1, '2023-07-17 12:15:38', 0, NULL, 0, NULL, 1),
(17400, 13675, '5', 'State ', '', '', '2015', 76.00, '', 1, '2023-07-17 07:28:17', 0, NULL, 0, NULL, 1),
(17401, 13675, '1', 'Diploma ', '', '', '2015', 76.00, '', 1, '2023-07-17 07:31:12', 0, NULL, 0, NULL, 1),
(17402, 13676, '3', 'Madras University ', '', 'Bsc computer science ', '2020', 84.00, '', 1, '2023-07-17 10:08:20', 0, NULL, 0, NULL, 1),
(17403, 13679, '5', 'diploma ', '', 'ece', '2018', 68.00, '', 1, '2023-07-18 10:36:51', 0, NULL, 0, NULL, 1),
(17404, 13678, '3', 'Madras university', '', 'B. Com', '2021', 83.00, '', 1, '2023-07-18 10:43:53', 0, NULL, 0, NULL, 1),
(17405, 13680, '3', 'gurshree shanhi college', '', 'bcom', '2023', 80.00, '', 1, '2023-07-18 11:38:52', 0, NULL, 0, NULL, 1),
(17406, 13681, '3', 'dr mgr janagi college', '', 'bcom', '2023', 80.00, '', 1, '2023-07-18 11:42:31', 0, NULL, 0, NULL, 1),
(17407, 13683, '3', 'Government arts college salem', '', 'Bsc computer science', '2022', 71.00, '', 1, '2023-07-18 12:25:19', 0, NULL, 0, NULL, 1),
(17408, 13683, '2', 'Government boys higher secondary school', '', '', '2019', 58.00, '', 1, '2023-07-18 12:25:51', 0, NULL, 0, NULL, 1),
(17409, 13683, '1', 'Government boys higher secondary school', '', '', '2017', 74.00, '', 1, '2023-07-18 12:26:25', 0, NULL, 0, NULL, 1),
(17410, 13684, '3', 'Presidency college', '', 'Bsc physics', '2019', 58.00, '', 1, '2023-07-18 03:25:18', 0, NULL, 0, NULL, 1),
(17411, 13686, '3', 'Srinivasa Institute of engineering and technology', '', 'B. Tech (IT) ', '2016', 5.90, '', 1, '2023-07-19 02:14:30', 0, NULL, 0, NULL, 1),
(17412, 13670, '3', 'Anna University ', '', 'BE MECHATRONICS ENGINEERING ', '2022', 78.00, '', 1, '2023-07-19 05:05:04', 0, NULL, 0, NULL, 1),
(17413, 13670, '1', 'State board of tamil ', '', '', '2016', 81.00, '', 1, '2023-07-19 05:05:41', 0, NULL, 0, NULL, 1),
(17414, 13687, '3', 'Vels University ', '', 'BCA HONORS', '2021', 70.00, '', 1, '2023-07-19 08:17:43', 0, NULL, 0, NULL, 1),
(17415, 13685, '3', 'Madras university', '', 'B. A', '2023', 60.00, '', 1, '2023-07-19 10:47:36', 0, NULL, 0, NULL, 1),
(17416, 13689, '3', 'Annai Vailankanni Arts And Science College Thanjavur ', '', 'B.com ca', '2023', 85.00, '', 1, '2023-07-19 11:27:41', 0, NULL, 0, NULL, 1),
(17417, 13690, '3', 'sri devi arts and science college', '', 'b.com', '2021', 81.00, '', 1, '2023-07-19 12:22:55', 0, NULL, 0, NULL, 1),
(17418, 13688, '3', 'alpha arts and science college', '', 'bca', '2022', 72.60, '', 108, '2023-07-19 12:44:02', 0, NULL, 0, NULL, 1),
(17419, 13691, '3', 'dbjain college ', '', 'b.com', '2023', 75.00, '', 1, '2023-07-20 11:29:54', 0, NULL, 0, NULL, 1),
(17420, 13693, '3', 'Bharathidasan', '', 'Bcom', '2022', 65.00, '', 1, '2023-07-20 12:14:39', 0, NULL, 0, NULL, 1),
(17421, 13695, '3', 'Anna university', '', 'BE', '2023', 8.04, '', 1, '2023-07-20 12:23:50', 0, NULL, 0, NULL, 1),
(17422, 13694, '3', 'Anna University ', '', 'B.E', '2023', 8.50, '', 1, '2023-07-20 12:23:50', 0, NULL, 0, NULL, 1),
(17423, 13697, '3', 'masras university', '', 'b com', '2023', 72.00, '', 1, '2023-07-20 03:12:25', 0, NULL, 0, NULL, 1),
(17424, 13696, '3', 'p a c ramasamy raja polytechnic college', '', 'b e', '2019', 71.00, '', 1, '2023-07-20 06:52:03', 0, NULL, 0, NULL, 1),
(17425, 13692, '3', 'n g m college of arts and science', '', 'b com', '2023', 69.00, '', 101, '2023-07-20 06:54:31', 0, NULL, 0, NULL, 1),
(17426, 13698, '3', 'M.A.M. SCHOOL OF ENGINEERING', '', 'Bachelor of Engineering', '2023', 82.00, '', 1, '2023-07-21 09:56:27', 1, '2023-07-21 09:58:18', 0, NULL, 0),
(17427, 13698, '1', 'Government Hr. Sec. School', '', '', '2017', 80.00, '', 1, '2023-07-21 09:57:20', 0, NULL, 0, NULL, 1),
(17428, 13698, '2', 'Government Hr. Sec. School', '', '', '2019', 60.00, '', 1, '2023-07-21 09:57:47', 0, NULL, 0, NULL, 1),
(17429, 13698, '3', 'M.A.M. SCHOOL OF ENGINEERING', '', 'Bachelor of Engineering', '2023', 82.00, '', 1, '2023-07-21 09:58:47', 0, NULL, 0, NULL, 1),
(17430, 13700, '4', 'Baradhithasan University', '', 'MSc Computer science', '2023', 75.00, '', 1, '2023-07-21 10:01:41', 1, '2023-07-21 10:02:25', 0, NULL, 1),
(17431, 13700, '3', 'Thiruvalluvar University', '', 'Bsc Computer science', '2021', 65.00, '', 1, '2023-07-21 10:03:20', 0, NULL, 0, NULL, 1),
(17432, 13699, '3', 'State', '', 'B.SC computer science ', '2023', 80.00, '', 1, '2023-07-21 10:12:21', 0, NULL, 0, NULL, 1),
(17433, 13702, '1', 'State board', '', 'BE. COMPUTER SCIENCE AND ENGINEERING', '2017', 91.00, '', 1, '2023-07-21 10:15:12', 1, '2023-07-21 10:16:38', 0, NULL, 1),
(17434, 13702, '2', 'State board', '', '', '2019', 47.00, '', 1, '2023-07-21 10:17:06', 0, NULL, 0, NULL, 1),
(17435, 13702, '3', 'Anna university', '', 'BE. COMPUTER SCIENCE AND ENGINEERING', '2019', 78.00, '', 1, '2023-07-21 10:18:21', 0, NULL, 0, NULL, 1),
(17436, 13703, '3', 'Bharathidasan', '', 'Bsc', '2022', 50.00, '', 1, '2023-07-21 11:06:53', 0, NULL, 0, NULL, 1),
(17437, 13705, '3', 'University of madras ', '', 'Bachelor of computer applications ', '2023', 73.75, '', 1, '2023-07-21 11:10:14', 0, NULL, 0, NULL, 1),
(17438, 13704, '3', 'Madras University', '', 'BCA', '2023', 75.00, '', 1, '2023-07-21 11:10:19', 0, NULL, 0, NULL, 1),
(17439, 13706, '3', 'pondicherry university', '', 'b tech', '2018', 66.00, '', 1, '2023-07-21 11:25:16', 0, NULL, 0, NULL, 1),
(17440, 13708, '5', 'mohamed sathak', '', 'dipolama', '2020', 90.00, '', 1, '2023-07-21 04:08:04', 0, NULL, 0, NULL, 1),
(17441, 13710, '3', 'madras university', '', 'b com', '2023', 75.00, '', 1, '2023-07-21 04:59:04', 0, NULL, 0, NULL, 1),
(17442, 13713, '3', 'Anna University', '', 'Bachelor of Engineering ', '2022', 80.00, '', 1, '2023-07-21 05:14:10', 0, NULL, 0, NULL, 1),
(17443, 13713, '5', 'Directorate of technical education ', '', 'Diploma in Mechanical Engineering', '2019', 88.00, '', 1, '2023-07-21 05:14:59', 0, NULL, 0, NULL, 1),
(17444, 13713, '1', 'State Board', '', '', '2016', 80.00, '', 1, '2023-07-21 05:15:57', 0, NULL, 0, NULL, 1),
(17445, 13714, '3', 'Madras university ', '', 'B.com(c.s)', '2023', 86.00, '', 1, '2023-07-21 06:41:10', 0, NULL, 0, NULL, 1),
(17446, 13707, '3', 'Madras University ', '', 'B.com', '2023', 75.00, '', 1, '2023-07-21 07:54:23', 0, NULL, 0, NULL, 1),
(17447, 13715, '5', 'dote university', '', 'one', '2018', 75.00, '', 1, '2023-07-22 10:11:37', 0, NULL, 0, NULL, 1),
(17448, 13715, '1', 'state board', '', '', '2014', 79.00, '', 1, '2023-07-22 10:12:05', 0, NULL, 0, NULL, 1),
(17449, 13715, '2', 'state board', '', '', '2016', 60.00, '', 1, '2023-07-22 10:12:48', 0, NULL, 0, NULL, 1),
(17450, 13715, '3', 'bharath university', '', 'one', '2024', 65.00, '', 1, '2023-07-22 10:13:15', 0, NULL, 0, NULL, 1),
(17451, 13717, '3', 'Bharathidhasan University ', '', 'BCA', '2020', 74.00, '', 1, '2023-07-22 10:55:28', 0, NULL, 0, NULL, 1),
(17452, 13718, '3', 'Madras University ', '', 'BBA', '2022', 75.00, '', 1, '2023-07-22 11:15:33', 0, NULL, 0, NULL, 1),
(17453, 13721, '4', 'miit', '', 'msc.computer', '2023', 87.00, '', 1, '2023-07-22 11:47:36', 0, NULL, 0, NULL, 1),
(17454, 13720, '3', 'jaya college', '', 'b.com', '2017', 65.00, '', 1, '2023-07-22 12:14:58', 0, NULL, 0, NULL, 1),
(17455, 13722, '4', 'alagappa university', '', 'mba', '2020', 80.00, '', 1, '2023-07-22 01:20:42', 0, NULL, 0, NULL, 1),
(17456, 13724, '3', 'University ', '', 'B.com(honours)', '2022', 80.00, '', 1, '2023-07-22 01:44:56', 0, NULL, 0, NULL, 1),
(17457, 13723, '3', 'University ', '', 'B.com ', '2022', 74.00, '', 1, '2023-07-22 01:45:04', 0, NULL, 0, NULL, 1),
(17458, 13723, '2', 'Board', '', '', '2019', 94.00, '', 1, '2023-07-22 01:46:23', 0, NULL, 0, NULL, 1),
(17459, 13724, '2', 'Board', '', '', '2019', 89.00, '', 1, '2023-07-22 01:46:29', 0, NULL, 0, NULL, 1),
(17460, 13723, '1', 'Board', '', '', '2017', 92.00, '', 1, '2023-07-22 01:47:17', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17461, 13724, '1', 'Board', '', '', '2017', 85.00, '', 1, '2023-07-22 01:47:22', 0, NULL, 0, NULL, 1),
(17462, 13730, '3', 'Madras University ', '', 'Mca', '2022', 89.00, '', 1, '2023-07-24 10:17:20', 0, NULL, 0, NULL, 1),
(17463, 13728, '3', 'madras university ', '', 'BSC.INFORMATION TECHNOLOGY ', '2023', 82.00, '', 1, '2023-07-24 10:17:26', 0, NULL, 0, NULL, 1),
(17464, 13727, '3', 'University of madras ', '', 'B.com CA', '2023', 68.00, '', 1, '2023-07-24 10:22:35', 0, NULL, 0, NULL, 1),
(17465, 13729, '1', 'Stateboard', '', '', '2012', 98.00, '', 1, '2023-07-24 10:26:39', 0, NULL, 0, NULL, 1),
(17466, 13729, '2', 'State board', '', '', '2015', 83.17, '', 1, '2023-07-24 10:27:02', 0, NULL, 0, NULL, 1),
(17467, 13729, '3', 'Alagappa University ', '', 'B sc ', '2018', 85.65, '', 1, '2023-07-24 10:27:34', 0, NULL, 0, NULL, 1),
(17468, 13729, '4', 'Gandhigram University ', '', 'M sc', '2022', 75.60, '', 1, '2023-07-24 10:28:04', 0, NULL, 0, NULL, 1),
(17469, 13731, '3', 'university of madras', '', 'bca', '2023', 6.60, '', 1, '2023-07-24 10:31:18', 0, NULL, 0, NULL, 1),
(17470, 13731, '2', 'Ebenezer Marcus Matriculation Higher Secondary School', '', '', '2020', 60.00, '', 1, '2023-07-24 10:32:59', 0, NULL, 0, NULL, 1),
(17471, 13731, '1', 'Ebenezer Marcus Matriculation Higher Secondary School', '', '', '2017', 70.00, '', 1, '2023-07-24 10:33:43', 0, NULL, 0, NULL, 1),
(17472, 13712, '3', 'University of madras', '', 'Bachelor of business administration', '2023', 68.00, '', 1, '2023-07-24 10:40:03', 0, NULL, 0, NULL, 1),
(17473, 13732, '4', 'Madras University ', '', 'MCA', '2023', 60.00, '', 1, '2023-07-24 10:49:03', 0, NULL, 0, NULL, 1),
(17474, 13732, '3', 'Bharathidasan University ', '', 'Bsc computer science ', '2021', 70.00, '', 1, '2023-07-24 10:49:44', 0, NULL, 0, NULL, 1),
(17475, 13734, '4', 'C.Abdul Hakeem college of Engineering and Technology ', '', 'MCA', '2023', 83.00, '', 1, '2023-07-24 10:49:45', 0, NULL, 0, NULL, 1),
(17476, 13735, '4', 'Indian Institute of Science, Bangalore ', '', 'Master of Design - Product Design and Engineering ', '2016', 7.30, '', 1, '2023-07-24 10:52:40', 0, NULL, 0, NULL, 1),
(17477, 13738, '3', 'Madras University ', '', 'B.com', '2020', 60.00, '', 1, '2023-07-24 11:03:19', 0, NULL, 0, NULL, 1),
(17478, 13725, '3', 'Madras University ', '', 'Bsc computer science ', '2020', 65.00, '', 1, '2023-07-24 11:04:33', 0, NULL, 0, NULL, 1),
(17479, 13736, '3', 'Academic ', '', 'B.com (general)', '2022', 74.00, '', 1, '2023-07-24 11:04:45', 0, NULL, 0, NULL, 1),
(17480, 13737, '3', 'Anna University', '', 'BE', '2020', 80.00, '', 1, '2023-07-24 11:15:25', 0, NULL, 0, NULL, 1),
(17481, 13739, '3', 'PSNA COLLEGE OF ENGINEERING AND TECHNOLOGY ', '', 'B.E', '2023', 82.00, '', 1, '2023-07-24 11:21:19', 0, NULL, 0, NULL, 1),
(17482, 13740, '3', 'PSG College of technology', '', 'BE ', '2021', 72.00, '', 1, '2023-07-24 11:22:57', 0, NULL, 0, NULL, 1),
(17483, 13740, '5', 'Tamilnadu technical Education ', '', 'Diploma ', '2017', 75.00, '', 1, '2023-07-24 11:25:10', 0, NULL, 0, NULL, 1),
(17484, 13740, '1', 'Government higher secondary school ', '', '', '2015', 53.00, '', 1, '2023-07-24 11:26:42', 0, NULL, 0, NULL, 1),
(17485, 13741, '4', 'Anna University', '', 'MCA', '2022', 74.50, '', 1, '2023-07-24 11:38:50', 0, NULL, 0, NULL, 1),
(17486, 13744, '4', 'Madras University ', '', 'MBA', '2015', 75.00, '', 1, '2023-07-24 12:00:53', 0, NULL, 0, NULL, 1),
(17487, 13743, '3', 'Anna university', '', 'B. E', '2022', 84.40, '', 1, '2023-07-24 12:10:19', 0, NULL, 0, NULL, 1),
(17488, 13743, '2', 'State Board of Tamilnadu', '', '', '2018', 73.50, '', 1, '2023-07-24 12:11:22', 0, NULL, 0, NULL, 1),
(17489, 13745, '3', 'Anna University', '', 'B.Tech(IT) ', '2023', 7.80, '', 1, '2023-07-24 12:11:27', 0, NULL, 0, NULL, 1),
(17490, 13743, '1', 'State board of Tamilnadu', '', '', '2016', 86.00, '', 1, '2023-07-24 12:11:52', 0, NULL, 0, NULL, 1),
(17491, 13747, '4', 'University of Madras ', '', 'M.B.A', '2023', 71.00, '', 1, '2023-07-24 12:14:28', 0, NULL, 0, NULL, 1),
(17492, 13746, '3', 'Anna University ', '', 'B.Tech information technology ', '2023', 7.20, '', 1, '2023-07-24 12:21:36', 0, NULL, 0, NULL, 1),
(17493, 13748, '4', 'Madras University ', '', 'Mcom ', '2021', 8.20, '', 1, '2023-07-24 12:23:10', 0, NULL, 0, NULL, 1),
(17494, 13733, '3', 'gurunanak college', '', 'bsc. physics', '2009', 6.50, '', 1, '2023-07-24 12:27:16', 0, NULL, 0, NULL, 1),
(17495, 13749, '3', 'Anna University ', '', 'BE', '2021', 72.77, '', 1, '2023-07-24 12:38:08', 0, NULL, 0, NULL, 1),
(17496, 13750, '3', 'Anna University ', '', 'BE Mechanical Engineering ', '2021', 76.70, '', 1, '2023-07-24 12:38:53', 0, NULL, 0, NULL, 1),
(17497, 13751, '3', 'Madras University ', '', 'Bca', '2019', 75.00, '', 1, '2023-07-24 12:41:02', 0, NULL, 0, NULL, 1),
(17498, 13753, '3', 'Vel\'s Institute of science technology and Advanced studies', '', 'Bachelor of computer science ', '2021', 79.90, '', 1, '2023-07-24 12:51:57', 0, NULL, 0, NULL, 1),
(17499, 13742, '3', 'vinayaka mission engineering college', '', 'be', '2017', 9.10, '', 1, '2023-07-24 12:58:14', 0, NULL, 0, NULL, 1),
(17500, 13755, '3', 'Anna University ', '', 'BE', '2019', 70.00, '', 1, '2023-07-24 01:13:06', 0, NULL, 0, NULL, 1),
(17501, 13752, '3', 'Periyar university ', '', '', '2023', 75.00, '', 1, '2023-07-24 01:23:32', 1, '2023-07-24 01:24:22', 0, NULL, 0),
(17502, 13752, '3', 'Periyar university ', '', 'BCA', '2023', 75.00, '', 1, '2023-07-24 01:24:42', 0, NULL, 0, NULL, 1),
(17503, 13756, '4', 'Anna University ', '', 'MBA', '2020', 70.00, '', 1, '2023-07-24 01:25:01', 0, NULL, 0, NULL, 1),
(17504, 13757, '2', 'CBSE', '', '', '2021', 90.00, '', 1, '2023-07-24 01:33:31', 0, NULL, 0, NULL, 1),
(17505, 13758, '3', 'Madras University ', '', 'B.com', '2023', 75.00, '', 1, '2023-07-24 01:40:32', 0, NULL, 0, NULL, 1),
(17506, 13760, '3', 'University of Madras', '', 'B.com', '2023', 78.00, '', 1, '2023-07-24 01:42:41', 0, NULL, 0, NULL, 1),
(17507, 13759, '3', 'University of madras', '', 'B. Com', '2023', 79.00, '', 1, '2023-07-24 01:45:01', 1, '2023-07-24 01:45:27', 0, NULL, 1),
(17508, 13762, '3', 'Anna University ', '', 'B.E', '2024', 80.00, '', 1, '2023-07-24 01:49:32', 0, NULL, 0, NULL, 1),
(17509, 13764, '3', 'Madras university', '', 'Bsc computer science', '2023', 80.83, '', 1, '2023-07-24 02:07:52', 0, NULL, 0, NULL, 1),
(17510, 13766, '3', 'Madrus University', '', 'B.sc (mathematics)', '2021', 67.00, '', 1, '2023-07-24 02:08:22', 0, NULL, 0, NULL, 1),
(17511, 13764, '2', 'Tamil nadu ', '', '', '2020', 61.83, '', 1, '2023-07-24 02:09:04', 0, NULL, 0, NULL, 1),
(17512, 13764, '1', 'Tamil nadu', '', '', '2018', 80.40, '', 1, '2023-07-24 02:09:44', 0, NULL, 0, NULL, 1),
(17513, 13768, '3', 'University ', '', 'BBA', '2023', 62.00, '', 1, '2023-07-24 02:32:38', 0, NULL, 0, NULL, 1),
(17514, 13768, '2', 'Board', '', '', '2020', 48.00, '', 1, '2023-07-24 02:33:17', 0, NULL, 0, NULL, 1),
(17515, 13768, '1', 'Board', '', '', '2018', 52.00, '', 1, '2023-07-24 02:33:45', 0, NULL, 0, NULL, 1),
(17516, 13761, '5', 'chennai institute cooperetive management', '', 'diploma in Cooperetive Management', '2022', 75.00, '', 1, '2023-07-24 02:50:18', 0, NULL, 0, NULL, 1),
(17517, 13770, '2', 'State board of Tamilnadu', '', '', '2014', 59.25, '', 1, '2023-07-24 02:56:13', 0, NULL, 0, NULL, 1),
(17518, 13770, '1', 'State board of Tamilnadu', '', '', '2012', 68.80, '', 1, '2023-07-24 02:57:30', 0, NULL, 0, NULL, 1),
(17519, 13754, '3', 'sri kanaka parameswari arts and science college', '', 'bcom', '2023', 89.00, '', 108, '2023-07-24 02:59:10', 108, '2023-07-24 05:59:56', 0, NULL, 1),
(17520, 13769, '3', 'University of Madras ', '', 'BCom ', '2002', 55.00, '', 1, '2023-07-24 02:59:12', 0, NULL, 0, NULL, 1),
(17521, 13772, '3', 'The New College', '', 'BCA', '2021', 67.90, '', 1, '2023-07-24 03:00:01', 0, NULL, 0, NULL, 1),
(17522, 13769, '5', 'Government of Tamilnadu', '', 'Diploma in Commercial Practice ', '2000', 70.00, '', 1, '2023-07-24 03:00:37', 0, NULL, 0, NULL, 1),
(17523, 13769, '2', 'Government of Tamilnadu ', '', '', '1997', 50.00, '', 1, '2023-07-24 03:01:20', 0, NULL, 0, NULL, 1),
(17524, 13769, '1', 'Government of Tamilnadu ', '', '', '1995', 70.00, '', 1, '2023-07-24 03:02:04', 0, NULL, 0, NULL, 1),
(17525, 13773, '3', 'Vels University ', '', 'Bsc microbiology ', '2021', 67.00, '', 1, '2023-07-24 03:03:25', 1, '2023-07-24 03:03:59', 0, NULL, 1),
(17526, 13771, '3', 'B s abdur Rahman crescent institute of science and technology ', '', 'Btech CSE', '2023', 85.00, '', 1, '2023-07-24 03:03:49', 0, NULL, 0, NULL, 1),
(17527, 13763, '4', 'srm university', '', 'mca', '2023', 82.00, '', 1, '2023-07-24 03:09:38', 0, NULL, 0, NULL, 1),
(17528, 13775, '1', 'CBSE ', '', '', '2016', 92.00, '', 1, '2023-07-24 03:54:13', 0, NULL, 0, NULL, 1),
(17529, 13775, '2', 'CBSE ', '', '', '2018', 70.00, '', 1, '2023-07-24 03:54:34', 0, NULL, 0, NULL, 1),
(17530, 13775, '3', 'Anna University ', '', 'B.Tech Information technology ', '2022', 83.00, '', 1, '2023-07-24 03:54:59', 0, NULL, 0, NULL, 1),
(17531, 13776, '3', 'merit arts and science college', '', 'ba', '2020', 65.00, '', 1, '2023-07-24 04:24:56', 0, NULL, 0, NULL, 1),
(17532, 13765, '3', 'Alagappa University ', '', 'BBA airline and airport management ', '2023', 75.00, '', 1, '2023-07-24 10:20:47', 0, NULL, 0, NULL, 1),
(17533, 13778, '4', 'Bharathidhasan university', '', 'Msc. Physics', '2023', 80.00, '', 1, '2023-07-25 09:09:56', 0, NULL, 0, NULL, 1),
(17534, 13778, '3', 'Bharathidhasan university', '', 'Bsc. Physics', '2021', 84.00, '', 1, '2023-07-25 09:10:23', 0, NULL, 0, NULL, 1),
(17535, 13778, '2', 'State board', '', '', '2018', 75.00, '', 1, '2023-07-25 09:10:48', 0, NULL, 0, NULL, 1),
(17536, 13780, '3', 'university of madras', '', 'B.com', '2023', 78.50, '', 1, '2023-07-25 10:41:02', 1, '2023-07-25 10:42:32', 0, NULL, 1),
(17537, 13781, '3', 'Loyola institute of technology', '', 'BE', '2021', 69.00, '', 1, '2023-07-25 11:34:49', 0, NULL, 0, NULL, 1),
(17538, 13786, '4', 'Madras university', '', 'M.sc (computer science)', '2021', 85.00, '', 1, '2023-07-25 11:49:54', 0, NULL, 0, NULL, 1),
(17539, 13783, '4', 'madras university ', '', 'MSC computer Science', '2021', 93.60, '', 1, '2023-07-25 11:49:54', 0, NULL, 0, NULL, 1),
(17540, 13786, '3', 'Madras university', '', 'B.sc (computer science)', '2019', 70.00, '', 1, '2023-07-25 11:50:54', 0, NULL, 0, NULL, 1),
(17541, 13783, '3', 'Ethiraj college for women ', '', 'BCA', '2019', 74.60, '', 1, '2023-07-25 11:51:11', 0, NULL, 0, NULL, 1),
(17542, 13786, '2', 'State board', '', '', '2016', 63.00, '', 1, '2023-07-25 11:51:52', 0, NULL, 0, NULL, 1),
(17543, 13783, '2', 'Dharam hinduja matriculation higher secondary school ', '', '', '2016', 78.41, '', 1, '2023-07-25 11:52:19', 0, NULL, 0, NULL, 1),
(17544, 13783, '1', 'Rukmani vidyalaya matrix school ', '', '', '2014', 92.50, '', 1, '2023-07-25 11:52:50', 0, NULL, 0, NULL, 1),
(17545, 13786, '1', 'State board', '', '', '2013', 73.00, '', 1, '2023-07-25 11:53:12', 0, NULL, 0, NULL, 1),
(17546, 13785, '3', 'The New College', '', 'Bca', '2021', 68.00, '', 1, '2023-07-25 11:56:11', 0, NULL, 0, NULL, 1),
(17547, 13784, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2022', 88.10, '', 1, '2023-07-25 11:57:48', 1, '2023-07-25 11:58:44', 0, NULL, 0),
(17548, 13784, '1', 'State Board Of Tamilnadu', '', '', '2016', 93.20, '', 1, '2023-07-25 11:59:58', 1, '2023-07-25 12:03:43', 0, NULL, 0),
(17549, 13784, '2', 'State Board of Tamil Nadu ', '', '', '2018', 76.83, '', 1, '2023-07-25 12:00:34', 1, '2023-07-25 12:02:46', 0, NULL, 0),
(17550, 13784, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2022', 88.10, '', 1, '2023-07-25 12:01:31', 0, NULL, 0, NULL, 1),
(17551, 13784, '1', 'State Board of Tamil Nadu ', '', '', '2016', 93.20, '', 1, '2023-07-25 12:04:32', 0, NULL, 0, NULL, 1),
(17552, 13784, '2', 'State Board of Tamil Nadu ', '', '', '2018', 76.83, '', 1, '2023-07-25 12:05:32', 0, NULL, 0, NULL, 1),
(17553, 13787, '3', 'JUSTICE BASHER AHMED SAYEED COLLEGE FOR WOMEN', '', 'Bsc.Advanced Zoology and Biotechnology ', '2023', 6.95, '', 1, '2023-07-25 12:15:55', 0, NULL, 0, NULL, 1),
(17554, 13782, '3', 'Anna university ', '', 'BE', '2019', 63.00, '', 1, '2023-07-25 12:23:12', 0, NULL, 0, NULL, 1),
(17555, 13788, '5', 'Sisi', '', 'Diploma in Hotel Management ', '2009', 80.00, '', 1, '2023-07-25 01:21:16', 0, NULL, 0, NULL, 1),
(17556, 13789, '3', 'Kamarajar University ', '', 'B.sc computer science ', '2022', 78.00, '', 1, '2023-07-25 01:44:17', 0, NULL, 0, NULL, 1),
(17557, 13790, '3', 'Jaya college of arts and science ', '', 'Ba English ', '2023', 70.00, '', 1, '2023-07-25 02:22:17', 0, NULL, 0, NULL, 1),
(17558, 13791, '3', 'University ', '', 'BA Criminology And Police Administration ', '2023', 60.00, '', 1, '2023-07-25 02:37:10', 0, NULL, 0, NULL, 1),
(17559, 13793, '3', 'Bharthidasan university, Trichy', '', 'Bachelor of computer application', '2023', 69.00, '', 1, '2023-07-25 02:58:57', 0, NULL, 0, NULL, 1),
(17560, 13792, '3', 'Bharathidhasan University ', '', 'BCA', '2023', 72.00, '', 1, '2023-07-25 02:59:04', 0, NULL, 0, NULL, 1),
(17561, 13794, '3', 'Bharathidasan university', '', 'BCA', '2023', 73.00, '', 1, '2023-07-25 02:59:05', 0, NULL, 0, NULL, 1),
(17562, 13795, '3', 'Loyola college ', '', 'BCA', '2018', 5.59, '', 1, '2023-07-25 03:33:05', 0, NULL, 0, NULL, 1),
(17563, 13796, '3', 'anna university', '', 'b.e.', '2020', 69.00, '', 1, '2023-07-25 03:46:45', 0, NULL, 0, NULL, 1),
(17564, 13797, '3', 'Anna University ', '', 'B.E Mechanical Engineering ', '2016', 73.00, '', 1, '2023-07-25 04:41:40', 0, NULL, 0, NULL, 1),
(17565, 13798, '3', 'Anna University ', '', 'BE mechatronics engineering ', '2022', 8.20, '', 1, '2023-07-25 04:42:02', 0, NULL, 0, NULL, 1),
(17566, 13800, '3', 'Anna University ', '', 'BE', '2019', 65.00, '', 1, '2023-07-25 06:37:34', 0, NULL, 0, NULL, 1),
(17567, 13803, '1', 'State board of tamilnadu ', '', '', '2018', 76.80, '', 1, '2023-07-26 06:01:22', 0, NULL, 0, NULL, 1),
(17568, 13803, '2', 'State Board of tamilnadu ', '', '', '2020', 69.00, '', 1, '2023-07-26 06:01:59', 0, NULL, 0, NULL, 1),
(17569, 13806, '3', 'anna university coimbatore', '', 'bsc computer science', '2022', 65.00, '', 1, '2023-07-26 10:35:45', 0, NULL, 0, NULL, 1),
(17570, 13806, '2', 'kongu vellar matric higher Secondary school tiruppur', '', '', '2017', 69.00, '', 1, '2023-07-26 10:36:52', 0, NULL, 0, NULL, 1),
(17571, 13806, '1', 'kongu vellar matric higher Secondary schpool tiruppur', '', '', '2015', 66.10, '', 1, '2023-07-26 10:38:17', 0, NULL, 0, NULL, 1),
(17572, 13807, '3', 'Madurai Kamaraj University ', '', 'B.sc Computer science ', '2022', 83.31, '', 1, '2023-07-26 10:41:30', 0, NULL, 0, NULL, 1),
(17573, 13810, '1', 'State board', '', '', '2018', 65.00, '', 1, '2023-07-26 10:44:47', 0, NULL, 0, NULL, 1),
(17574, 13808, '2', 'gov ', '', '', '2018', 1.00, '', 1, '2023-07-26 10:47:31', 0, NULL, 0, NULL, 1),
(17575, 13812, '3', 'Sri kanyaka parameswari college ', '', 'Bcom', '2022', 84.00, '', 1, '2023-07-26 10:50:04', 0, NULL, 0, NULL, 1),
(17576, 13811, '3', 'Bharathidasan', '', 'Bcom', '2022', 78.00, '', 1, '2023-07-26 10:52:27', 0, NULL, 0, NULL, 1),
(17577, 13815, '3', 'Saveetha University - Anna University affiliated ', '', 'B.E mechanical engineering ', '2022', 73.00, '', 1, '2023-07-26 10:58:38', 0, NULL, 0, NULL, 1),
(17578, 13819, '3', 'Anna University ', '', 'B.E EEE', '2022', 81.00, '', 1, '2023-07-26 11:00:00', 0, NULL, 0, NULL, 1),
(17579, 13815, '2', 'State board ', '', '', '2018', 73.00, '', 1, '2023-07-26 11:00:37', 0, NULL, 0, NULL, 1),
(17580, 13818, '1', 'St. Joseph\'s English School', '', '', '2016', 91.40, '', 1, '2023-07-26 11:00:43', 0, NULL, 0, NULL, 1),
(17581, 13819, '1', 'State Board', '', '', '2016', 77.00, '', 1, '2023-07-26 11:00:43', 0, NULL, 0, NULL, 1),
(17582, 13819, '2', 'State Board ', '', '', '2018', 80.00, '', 1, '2023-07-26 11:01:06', 0, NULL, 0, NULL, 1),
(17583, 13818, '2', 'Anbalaya Higher Secondry School', '', '', '2018', 69.10, '', 1, '2023-07-26 11:01:14', 0, NULL, 0, NULL, 1),
(17584, 13815, '1', 'State board ', '', '', '2016', 94.00, '', 1, '2023-07-26 11:01:27', 0, NULL, 0, NULL, 1),
(17585, 13818, '3', 'Puducherry Technological University', '', 'B. Tech', '2022', 74.00, '', 1, '2023-07-26 11:01:42', 0, NULL, 0, NULL, 1),
(17586, 13809, '3', 'Bharathidasan', '', 'Bcom', '2022', 81.00, '', 1, '2023-07-26 11:02:24', 0, NULL, 0, NULL, 1),
(17587, 13820, '3', 'Anna university ', '', 'B.E', '2023', 81.00, '', 1, '2023-07-26 11:04:49', 0, NULL, 0, NULL, 1),
(17588, 13817, '3', 'Anna University ', '', 'B.E-EEE', '2023', 82.00, '', 1, '2023-07-26 11:04:50', 0, NULL, 0, NULL, 1),
(17589, 13823, '3', 'Anna university ', '', 'B.E ', '2023', 82.00, '', 1, '2023-07-26 11:04:51', 0, NULL, 0, NULL, 1),
(17590, 13827, '3', 'Anna university ', '', 'Bachelor of engineering ', '2022', 80.00, '', 1, '2023-07-26 11:04:56', 0, NULL, 0, NULL, 1),
(17591, 13825, '3', 'Anna university ', '', 'B.E ECE', '2023', 75.00, '', 1, '2023-07-26 11:05:11', 0, NULL, 0, NULL, 1),
(17592, 13824, '3', 'Anna University ', '', 'B.E - Computer Science and Engineering ', '2022', 78.00, '', 1, '2023-07-26 11:05:23', 1, '2023-07-26 11:07:07', 0, NULL, 1),
(17593, 13827, '2', 'State board', '', '', '2018', 67.50, '', 1, '2023-07-26 11:05:44', 0, NULL, 0, NULL, 1),
(17594, 13823, '2', 'State board ', '', '', '2019', 74.00, '', 1, '2023-07-26 11:05:56', 0, NULL, 0, NULL, 1),
(17595, 13824, '2', 'State Board ', '', '', '2018', 65.80, '', 1, '2023-07-26 11:06:12', 0, NULL, 0, NULL, 1),
(17596, 13824, '1', 'State Board ', '', '', '2016', 89.00, '', 1, '2023-07-26 11:06:37', 0, NULL, 0, NULL, 1),
(17597, 13827, '1', 'State board', '', '', '2016', 85.60, '', 1, '2023-07-26 11:07:20', 0, NULL, 0, NULL, 1),
(17598, 13828, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 75.00, '', 1, '2023-07-26 11:10:36', 0, NULL, 0, NULL, 1),
(17599, 13813, '4', 'Mgr University ', '', 'M.tech cse', '2021', 71.00, '', 1, '2023-07-26 11:13:13', 0, NULL, 0, NULL, 1),
(17600, 13822, '3', 'Anna University ', '', 'B.E', '2023', 78.00, '', 1, '2023-07-26 11:13:31', 1, '2023-07-26 11:13:45', 0, NULL, 1),
(17601, 13821, '3', 'Madras University ', '', 'BBA', '2023', 67.00, '', 1, '2023-07-26 11:14:49', 0, NULL, 0, NULL, 1),
(17602, 13829, '3', 'The new college -chennai', '', 'B.SC.computer science ', '2022', 80.00, '', 1, '2023-07-26 11:15:10', 0, NULL, 0, NULL, 1),
(17603, 13829, '1', 'Dawn metric hr secondary school ', '', '', '2017', 64.00, '', 1, '2023-07-26 11:16:21', 0, NULL, 0, NULL, 1),
(17604, 13829, '2', 'Dawn metric hr secondary school ', '', '', '2019', 62.00, '', 1, '2023-07-26 11:16:46', 0, NULL, 0, NULL, 1),
(17605, 13830, '3', 'Deemed', '', 'B. Tech ', '2022', 75.00, '', 1, '2023-07-26 11:23:12', 0, NULL, 0, NULL, 1),
(17606, 13830, '2', 'State Board', '', '', '2018', 64.00, '', 1, '2023-07-26 11:23:45', 0, NULL, 0, NULL, 1),
(17607, 13826, '3', 'Anna University ', '', 'B.Tech', '2023', 79.00, '', 1, '2023-07-26 11:24:12', 0, NULL, 0, NULL, 1),
(17608, 13830, '1', 'State Board', '', '', '2016', 81.00, '', 1, '2023-07-26 11:24:18', 0, NULL, 0, NULL, 1),
(17609, 13814, '3', 'Madras University ', '', 'BSc.computer Science ', '2023', 87.00, '', 1, '2023-07-26 11:28:12', 0, NULL, 0, NULL, 1),
(17610, 13831, '3', 'Bharathiyiar university ', '', 'B.Sc (Mathematics)', '2022', 67.00, '', 1, '2023-07-26 11:35:58', 0, NULL, 0, NULL, 1),
(17611, 13832, '1', 'John dewey matric higher secondary school', '', '', '2014', 74.00, '', 1, '2023-07-26 11:36:17', 0, NULL, 0, NULL, 1),
(17612, 13832, '2', 'John Dewey Matric Higher Secondary School', '', '', '2016', 63.00, '', 1, '2023-07-26 11:36:43', 0, NULL, 0, NULL, 1),
(17613, 13831, '2', 'Board', '', '', '2019', 60.00, '', 1, '2023-07-26 11:37:43', 0, NULL, 0, NULL, 1),
(17614, 13832, '3', 'Alpha arts and science college', '', 'Bsc computer science', '2019', 60.00, '', 1, '2023-07-26 11:37:48', 0, NULL, 0, NULL, 1),
(17615, 13831, '1', 'Board', '', '', '2017', 82.00, '', 1, '2023-07-26 11:38:11', 0, NULL, 0, NULL, 1),
(17616, 13832, '4', 'Meenakshi college of engineering', '', 'MCA', '2021', 70.00, '', 1, '2023-07-26 11:38:38', 0, NULL, 0, NULL, 1),
(17617, 13804, '3', 'dhanalakshmi Srinivasan Institute of technology', '', 'be-engineering', '2022', 80.00, '', 1, '2023-07-26 11:40:43', 0, NULL, 0, NULL, 1),
(17618, 13834, '4', 'Thiruvalluvar university ', '', 'Computer science ', '2023', 81.00, '', 1, '2023-07-26 11:44:06', 0, NULL, 0, NULL, 1),
(17619, 13843, '2', 'Tamilnadu state board', '', '', '2017', 66.00, '', 1, '2023-07-26 11:47:41', 0, NULL, 0, NULL, 1),
(17620, 13840, '3', 'Annauniversity ', '', 'BE', '2022', 78.00, '', 1, '2023-07-26 11:49:48', 0, NULL, 0, NULL, 1),
(17621, 13843, '1', 'Tamilnadu state board ', '', '', '2015', 68.00, '', 1, '2023-07-26 11:50:17', 1, '2023-07-26 11:51:17', 0, NULL, 1),
(17622, 13843, '3', 'bharathidasan university', '', 'B.com', '2020', 75.00, '', 1, '2023-07-26 11:53:20', 0, NULL, 0, NULL, 1),
(17623, 13843, '4', 'Periyar manianmai institute of science and technology ', '', 'Mba', '2023', 79.00, '', 1, '2023-07-26 11:53:44', 0, NULL, 0, NULL, 1),
(17624, 13842, '3', 'St.peters institute of higher education and research chennai ', '', 'B.Sc Computer Science ', '2022', 6.70, '', 1, '2023-07-26 11:54:26', 0, NULL, 0, NULL, 1),
(17625, 13835, '3', 'Anna university ', '', 'B.E-CSE', '2023', 87.00, '', 1, '2023-07-26 11:54:40', 0, NULL, 0, NULL, 1),
(17626, 13842, '2', 'State', '', '', '2019', 53.00, '', 1, '2023-07-26 11:55:47', 0, NULL, 0, NULL, 1),
(17627, 13842, '1', 'State', '', '', '2017', 50.00, '', 1, '2023-07-26 11:56:29', 0, NULL, 0, NULL, 1),
(17628, 13844, '3', 'Yadava College', '', 'Bachelor of computer applications', '2022', 72.00, '', 1, '2023-07-26 12:01:12', 0, NULL, 0, NULL, 1),
(17629, 13838, '3', 'Vels university', '', 'BE( computer science and engineering)', '2020', 55.00, '', 1, '2023-07-26 12:05:57', 0, NULL, 0, NULL, 1),
(17630, 13845, '3', 'University of madras', '', 'B. Sc(computer science) ', '2022', 79.00, '', 1, '2023-07-26 12:07:23', 0, NULL, 0, NULL, 1),
(17631, 13833, '3', 'University of madras', '', 'Bsc', '2022', 85.70, '', 1, '2023-07-26 12:08:02', 0, NULL, 0, NULL, 1),
(17632, 13846, '3', 'PRIST UNIVERSITY THANJAVUR ', '', 'B.tech/civil', '2022', 84.40, '', 1, '2023-07-26 12:08:13', 0, NULL, 0, NULL, 1),
(17633, 13799, '4', 'kumaraguru ', '', 'mca', '2016', 80.00, '', 1, '2023-07-26 12:09:24', 0, NULL, 0, NULL, 1),
(17634, 13848, '3', 'Anna University ', '', 'B.e', '2022', 73.00, '', 1, '2023-07-26 12:15:29', 0, NULL, 0, NULL, 1),
(17635, 13847, '3', 'University of madras', '', 'B.com', '2022', 69.00, '', 1, '2023-07-26 12:18:15', 0, NULL, 0, NULL, 1),
(17636, 13837, '4', 'Dr. MGR', '', 'MBA', '2022', 76.50, '', 1, '2023-07-26 12:24:45', 0, NULL, 0, NULL, 1),
(17637, 13851, '3', 'University of Madras ', '', 'BSc', '2022', 85.30, '', 1, '2023-07-26 12:25:18', 0, NULL, 0, NULL, 1),
(17638, 13841, '4', 'Periyar manianmai institute of science and technology ', '', 'MBA', '2023', 68.00, '', 1, '2023-07-26 12:28:20', 0, NULL, 0, NULL, 1),
(17639, 13841, '3', 'Periyar manianmai institute of science and technology ', '', 'BBA', '2020', 70.00, '', 1, '2023-07-26 12:29:19', 0, NULL, 0, NULL, 1),
(17640, 13836, '3', 'Kcs kasi Nadar college ', '', 'Bca', '2021', 72.00, '', 1, '2023-07-26 12:29:34', 0, NULL, 0, NULL, 1),
(17641, 13841, '1', 'Amalraj matriculation.hr.sec.school', '', '', '2016', 50.00, '', 1, '2023-07-26 12:30:23', 0, NULL, 0, NULL, 1),
(17642, 13841, '2', 'Amalraj matriculation hr.sec.school', '', '', '2017', 50.00, '', 1, '2023-07-26 12:31:30', 0, NULL, 0, NULL, 1),
(17643, 13852, '3', 'S.a. Engineering College ', '', 'B.e ', '2023', 81.00, '', 1, '2023-07-26 12:36:23', 0, NULL, 0, NULL, 1),
(17644, 13852, '2', 'Little Flower Matriculation Higher Sec. School ', '', '', '2019', 66.00, '', 1, '2023-07-26 12:36:46', 0, NULL, 0, NULL, 1),
(17645, 13852, '1', 'St\' Anns Matriculation School ', '', '', '2017', 85.00, '', 1, '2023-07-26 12:37:06', 0, NULL, 0, NULL, 1),
(17646, 13849, '3', 'Muthukumaran arts and science college ', '', 'B.com', '2011', 60.00, '', 1, '2023-07-26 12:39:45', 0, NULL, 0, NULL, 1),
(17647, 13839, '3', 'Vels University', '', 'BE', '2020', 6.12, '', 1, '2023-07-26 12:49:13', 0, NULL, 0, NULL, 1),
(17648, 13853, '3', 'Madras University ', '', 'Bcom general ', '2023', 88.00, '', 1, '2023-07-26 12:57:45', 0, NULL, 0, NULL, 1),
(17649, 13854, '1', 'Tn state board ', '', '', '2013', 96.20, '', 1, '2023-07-26 01:03:26', 0, NULL, 0, NULL, 1),
(17650, 13854, '2', 'TN state board ', '', '', '2015', 82.60, '', 1, '2023-07-26 01:04:22', 0, NULL, 0, NULL, 1),
(17651, 13854, '3', 'Anna University ', '', 'BE', '2019', 68.40, '', 1, '2023-07-26 01:05:04', 0, NULL, 0, NULL, 1),
(17652, 13855, '3', 'Thiruvalluvar university', '', 'B .com -corporate secretaryship', '2023', 75.00, '', 1, '2023-07-26 01:32:22', 0, NULL, 0, NULL, 1),
(17653, 13856, '3', 'Thiruvalluvar University', '', 'B.com corporate SecretaryShip', '2023', 84.00, '', 1, '2023-07-26 01:56:09', 0, NULL, 0, NULL, 1),
(17654, 13857, '3', 'karpagam academy of higher education', '', 'bsc', '2019', 65.00, '', 1, '2023-07-26 02:19:57', 0, NULL, 0, NULL, 1),
(17655, 13860, '3', 'Madras university', '', 'B. Com (General) ', '2023', 74.00, '', 1, '2023-07-26 07:01:25', 0, NULL, 0, NULL, 1),
(17656, 13861, '3', 'Madras University ', '', 'B.A ECONOMICS', '2023', 70.00, '', 1, '2023-07-27 10:00:09', 0, NULL, 0, NULL, 1),
(17657, 13862, '3', 'bharathiar university', '', ' BCA', '2020', 61.00, '', 1, '2023-07-27 10:32:06', 0, NULL, 0, NULL, 1),
(17658, 13864, '3', 'Priest university', '', 'BBA', '2019', 85.00, '', 1, '2023-07-27 10:33:18', 0, NULL, 0, NULL, 1),
(17659, 13866, '3', 'Anna University ', '', 'BTech IT ', '2023', 7.78, '', 1, '2023-07-27 10:33:38', 0, NULL, 0, NULL, 1),
(17660, 13863, '3', 'Loyola institute of technology', '', 'B.E/ECE', '2023', 75.00, '', 1, '2023-07-27 10:38:17', 0, NULL, 0, NULL, 1),
(17661, 13865, '3', 'DMI COLLEGE OF ENGINEERING ', '', 'BE', '2023', 77.00, '', 1, '2023-07-27 10:38:34', 0, NULL, 0, NULL, 1),
(17662, 13868, '3', 'University of Madras', '', 'B.sc computer science', '2018', 70.00, '', 1, '2023-07-27 11:19:20', 0, NULL, 0, NULL, 1),
(17663, 13868, '2', 'State board', '', '12th', '2015', 75.00, '', 1, '2023-07-27 11:20:12', 0, NULL, 0, NULL, 1),
(17664, 13868, '1', 'State board', '', '', '2013', 84.00, '', 1, '2023-07-27 11:20:38', 0, NULL, 0, NULL, 1),
(17665, 13873, '3', 'Madras University ', '', 'Bca', '2021', 67.00, '', 1, '2023-07-27 11:28:16', 0, NULL, 0, NULL, 1),
(17666, 13872, '3', 'Anna University ', '', 'B.Tech', '2023', 83.70, '', 1, '2023-07-27 11:28:39', 1, '2023-07-27 11:29:42', 0, NULL, 0),
(17667, 13872, '2', 'Tamil Nadu State Board ', '', '', '2019', 73.00, '', 1, '2023-07-27 11:29:27', 1, '2023-07-27 11:29:46', 0, NULL, 0),
(17668, 13874, '4', 'Manonmaniam Sundarnar University ', '', 'MCA', '2023', 92.00, '', 1, '2023-07-27 11:29:30', 0, NULL, 0, NULL, 1),
(17669, 13872, '1', 'Tamilnadu state Board ', '', '', '2017', 94.00, '', 1, '2023-07-27 11:30:10', 0, NULL, 0, NULL, 1),
(17670, 13872, '2', 'Tamilnadu state Board ', '', '', '2019', 73.00, '', 1, '2023-07-27 11:30:28', 0, NULL, 0, NULL, 1),
(17671, 13872, '3', 'Anna University ', '', 'B.Tech', '2023', 83.70, '', 1, '2023-07-27 11:30:48', 0, NULL, 0, NULL, 1),
(17672, 13870, '4', 'Thiruvalluvar University ', '', 'M.com', '2023', 70.00, '', 1, '2023-07-27 11:33:36', 0, NULL, 0, NULL, 1),
(17673, 13869, '3', 'Periyar University ', '', 'Bachelor of Computer Application ', '2022', 73.00, '', 1, '2023-07-27 11:53:59', 0, NULL, 0, NULL, 1),
(17674, 13876, '4', 'Alagappa University ', '', 'MBA finance ', '2023', 82.00, '', 1, '2023-07-27 11:56:15', 1, '2023-07-27 11:57:23', 0, NULL, 1),
(17675, 13871, '4', 'Thiruvallur University ', '', 'M. Com', '2023', 75.00, '', 1, '2023-07-27 11:57:43', 0, NULL, 0, NULL, 1),
(17676, 13877, '3', 'Queen marry\'s college chennai', '', 'Ba economics ', '2023', 65.00, '', 1, '2023-07-27 12:07:58', 0, NULL, 0, NULL, 1),
(17677, 13875, '1', 'State Board', '', '', '2012', 50.00, '', 1, '2023-07-27 12:10:00', 0, NULL, 0, NULL, 1),
(17678, 13875, '2', 'State Board ', '', '', '2014', 55.00, '', 1, '2023-07-27 12:10:53', 0, NULL, 0, NULL, 1),
(17679, 13875, '3', 'University', '', 'B.sc Zoology and Biotechnology', '2017', 60.00, '', 1, '2023-07-27 12:11:26', 0, NULL, 0, NULL, 1),
(17680, 13875, '4', 'University ', '', 'MBA Systems Management', '2022', 75.00, '', 1, '2023-07-27 12:11:50', 0, NULL, 0, NULL, 1),
(17681, 13878, '4', 'Anna university', '', 'MBA', '2020', 70.00, '', 1, '2023-07-27 12:14:34', 0, NULL, 0, NULL, 1),
(17682, 13878, '3', 'Bharathithason', '', 'Bsc maths', '2018', 65.00, '', 1, '2023-07-27 12:15:59', 0, NULL, 0, NULL, 1),
(17683, 13878, '1', 'Stateboard', '', '', '2013', 84.00, '', 1, '2023-07-27 12:18:16', 0, NULL, 0, NULL, 1),
(17684, 13879, '3', 'AnnaUniversity', '', 'BE-Mechanical', '2020', 69.20, '', 1, '2023-07-27 12:18:39', 0, NULL, 0, NULL, 1),
(17685, 13878, '2', 'Stateboard', '', '', '2015', 80.00, '', 1, '2023-07-27 12:18:48', 0, NULL, 0, NULL, 1),
(17686, 13880, '3', 'Anna university ', '', 'Btech ', '2023', 80.00, '', 1, '2023-07-27 12:32:02', 0, NULL, 0, NULL, 1),
(17687, 13880, '1', 'State board', '', '', '2017', 85.00, '', 1, '2023-07-27 12:33:44', 0, NULL, 0, NULL, 1),
(17688, 13882, '4', 'Dr.M.G.R Educational and Research institute', '', 'MCA', '2022', 70.00, '', 1, '2023-07-27 12:37:15', 0, NULL, 0, NULL, 1),
(17689, 13881, '4', 'Univercity of madras', '', 'M com', '2022', 68.00, '', 1, '2023-07-27 12:39:50', 0, NULL, 0, NULL, 1),
(17690, 13884, '3', 'Anna University ', '', 'B.E', '2023', 8.25, '', 1, '2023-07-27 01:24:25', 0, NULL, 0, NULL, 1),
(17691, 13883, '3', 'Anna University', '', 'b.e.civil Engineering ', '2023', 7.66, '', 1, '2023-07-27 01:24:53', 0, NULL, 0, NULL, 1),
(17692, 13887, '3', 'DR.MGR Education and Research Institute', '', 'MCA', '2022', 70.00, '', 1, '2023-07-27 02:42:03', 0, NULL, 0, NULL, 1),
(17693, 13888, '3', 'overrnment college of engineering', '', 'be', '2022', 80.00, '', 1, '2023-07-27 03:15:23', 0, NULL, 0, NULL, 1),
(17694, 13889, '1', 'State board ', '', '', '2017', 90.00, '', 1, '2023-07-27 03:19:22', 0, NULL, 0, NULL, 1),
(17695, 13889, '2', 'State board ', '', '', '2019', 75.00, '', 1, '2023-07-27 03:19:43', 0, NULL, 0, NULL, 1),
(17696, 13889, '3', 'Anna university ', '', 'B.tech-IT ', '2023', 70.00, '', 1, '2023-07-27 03:20:20', 0, NULL, 0, NULL, 1),
(17697, 13890, '3', 'Mohammed Sathak A.J College of engineering ', '', 'B.Tech IT', '2023', 77.00, '', 1, '2023-07-27 03:59:11', 0, NULL, 0, NULL, 1),
(17698, 13891, '3', 'Madras University ', '', 'B.Com', '2015', 75.00, '', 1, '2023-07-27 08:50:55', 0, NULL, 0, NULL, 1),
(17699, 13891, '2', 'State Board', '', '', '2012', 72.00, '', 1, '2023-07-27 08:51:29', 0, NULL, 0, NULL, 1),
(17700, 13891, '1', 'State Board', '', '', '2010', 56.00, '', 1, '2023-07-27 08:54:57', 0, NULL, 0, NULL, 1),
(17701, 13892, '4', 'srm university', '', 'data science', '2020', 80.00, '', 1, '2023-07-27 09:23:52', 0, NULL, 0, NULL, 1),
(17702, 13892, '3', 'bharathidasan university', '', 'statistics', '2018', 60.00, '', 1, '2023-07-27 09:26:26', 0, NULL, 0, NULL, 1),
(17703, 13894, '3', 'JNN Arts and science Women\'s college', '', 'B.COM Accounting and Finance', '2023', 80.00, '', 1, '2023-07-28 09:24:53', 0, NULL, 0, NULL, 1),
(17704, 13896, '4', 'Vels university ', '', 'M.Sc.Computer Science ', '2023', 84.00, '', 1, '2023-07-28 09:45:18', 0, NULL, 0, NULL, 1),
(17705, 13895, '4', 'Vels University', '', 'M.Sc.(Computer Science) ', '2023', 92.00, '', 1, '2023-07-28 10:12:19', 0, NULL, 0, NULL, 1),
(17706, 13898, '3', 'Madras university', '', 'B. Sc Chemistry', '2020', 65.00, '', 1, '2023-07-28 10:14:37', 0, NULL, 0, NULL, 1),
(17707, 13899, '3', 'Anna University ', '', 'B.e', '2021', 77.00, '', 1, '2023-07-28 10:17:48', 0, NULL, 0, NULL, 1),
(17708, 13899, '2', 'State borad', '', '', '2017', 78.50, '', 1, '2023-07-28 10:18:31', 0, NULL, 0, NULL, 1),
(17709, 13899, '1', 'State borad ', '', '', '2015', 90.60, '', 1, '2023-07-28 10:18:54', 0, NULL, 0, NULL, 1),
(17710, 13900, '3', 'Anna University ', '', 'B.E', '2023', 76.00, '', 1, '2023-07-28 10:27:31', 0, NULL, 0, NULL, 1),
(17711, 13901, '3', 'St Peter\'s college of engineering and technology ', '', 'B.E ', '2023', 78.00, '', 1, '2023-07-28 10:28:38', 0, NULL, 0, NULL, 1),
(17712, 13904, '3', 'Anna University', '', 'B.E', '2023', 83.00, '', 1, '2023-07-28 10:29:33', 0, NULL, 0, NULL, 1),
(17713, 13903, '3', 'Mother Teresa', '', 'Bachelor of computer application ', '2022', 80.00, '', 1, '2023-07-28 10:30:12', 0, NULL, 0, NULL, 1),
(17714, 13903, '2', 'Stateboard', '', '', '2019', 64.00, '', 1, '2023-07-28 10:30:56', 0, NULL, 0, NULL, 1),
(17715, 13903, '1', 'Stateboard', '', '', '2017', 90.00, '', 1, '2023-07-28 10:31:12', 0, NULL, 0, NULL, 1),
(17716, 13885, '3', 'Madras University ', '', 'Application ', '2022', 70.28, '', 1, '2023-07-28 10:36:32', 1, '2023-07-28 10:37:07', 0, NULL, 1),
(17717, 13885, '2', 'Stateboard ', '', '', '2019', 68.00, '', 1, '2023-07-28 10:37:58', 0, NULL, 0, NULL, 1),
(17718, 13885, '1', 'Stateboard ', '', '', '2017', 60.00, '', 1, '2023-07-28 10:38:30', 0, NULL, 0, NULL, 1),
(17719, 13902, '3', 'Anna University ', '', 'Bachelor of Technology ', '2023', 81.00, '', 1, '2023-07-28 10:47:32', 0, NULL, 0, NULL, 1),
(17720, 13897, '3', 'Madras University ', '', 'B.sC mathematics with computer applications ', '2023', 76.08, '', 1, '2023-07-28 10:57:28', 0, NULL, 0, NULL, 1),
(17721, 13859, '3', 'Madrash University ', '', 'B.com', '2023', 60.00, '', 1, '2023-07-28 11:06:00', 0, NULL, 0, NULL, 1),
(17722, 13905, '3', 'Manonmaniam  sundaranar University ', '', 'Bsc', '2022', 75.00, '', 1, '2023-07-28 11:12:14', 0, NULL, 0, NULL, 1),
(17723, 13906, '3', 'Bharathidasan University ', '', 'B.com CA', '2023', 78.00, '', 1, '2023-07-28 11:35:48', 0, NULL, 0, NULL, 1),
(17724, 13907, '1', 'State board ', '', '', '2015', 84.40, '', 1, '2023-07-28 11:45:32', 0, NULL, 0, NULL, 1),
(17725, 13907, '2', 'State board ', '', '', '2017', 75.00, '', 1, '2023-07-28 11:45:58', 0, NULL, 0, NULL, 1),
(17726, 13907, '3', 'Kingston engineering college ', '', 'BE.computer science ', '2017', 78.20, '', 1, '2023-07-28 11:46:39', 0, NULL, 0, NULL, 1),
(17727, 13907, '4', 'Anna University ', '', 'ME', '2023', 77.00, '', 1, '2023-07-28 11:47:06', 0, NULL, 0, NULL, 1),
(17728, 13908, '3', 'anna University ', '', 'bachol of Engineering ', '2023', 8.35, '', 1, '2023-07-28 11:49:11', 0, NULL, 0, NULL, 1),
(17729, 13909, '3', 'manonmaiyam sundharanar university', '', 'bsc', '2020', 72.00, '', 1, '2023-07-28 12:21:10', 0, NULL, 0, NULL, 1),
(17730, 13911, '3', 'Anna university ', '', 'B.E eCE', '2020', 60.00, '', 1, '2023-07-28 12:21:41', 0, NULL, 0, NULL, 1),
(17731, 13910, '3', 'Kamaraj collage of engg and technology', '', 'BE', '2021', 68.00, '', 1, '2023-07-28 12:22:34', 0, NULL, 0, NULL, 1),
(17732, 13915, '3', 'University of Madras ', '', 'B.com', '2023', 79.00, '', 1, '2023-07-28 12:39:46', 0, NULL, 0, NULL, 1),
(17733, 13917, '3', 'Dr Mgr education and research institute ', '', 'B tech (cse)', '2022', 67.50, '', 1, '2023-07-28 12:51:36', 0, NULL, 0, NULL, 1),
(17734, 13917, '2', 'Tamilnadu State board of higher secondary education ', '', '', '2018', 62.50, '', 1, '2023-07-28 12:52:19', 0, NULL, 0, NULL, 1),
(17735, 13917, '1', 'Tamilnadu State board of secondary education ', '', '', '2016', 68.60, '', 1, '2023-07-28 12:53:08', 0, NULL, 0, NULL, 1),
(17736, 13918, '3', 'M.i.e.t Art\'s and Science College trichy', '', 'BBA', '2022', 71.00, '', 1, '2023-07-28 12:59:49', 0, NULL, 0, NULL, 1),
(17737, 13918, '2', 'St Joseph\'s Higher secondary school ', '', '', '2019', 60.00, '', 1, '2023-07-28 01:01:04', 0, NULL, 0, NULL, 1),
(17738, 13918, '1', 'Boys\'higher secondary school ', '', '', '2017', 61.00, '', 1, '2023-07-28 01:01:36', 0, NULL, 0, NULL, 1),
(17739, 13919, '2', 'correspondence', '', '', '2018', 60.00, '', 1, '2023-07-28 01:25:43', 0, NULL, 0, NULL, 1),
(17740, 13920, '3', 'Anna University ', '', 'B.E computer science and Engineering ', '2019', 63.00, '', 1, '2023-07-28 02:17:54', 0, NULL, 0, NULL, 1),
(17741, 13920, '2', 'Board of Tamilnadu ', '', '', '2014', 65.00, '', 1, '2023-07-28 02:18:33', 0, NULL, 0, NULL, 1),
(17742, 13920, '1', 'Board of Tamilnadu ', '', '', '2012', 70.00, '', 1, '2023-07-28 02:18:52', 0, NULL, 0, NULL, 1),
(17743, 13921, '3', 'Anna University', '', 'B.E CSE ', '2016', 62.00, '', 1, '2023-07-28 03:27:43', 0, NULL, 0, NULL, 1),
(17744, 13923, '5', 'IHRDU', '', 'Pursuing bca', '2018', 60.00, '', 1, '2023-07-29 10:14:35', 0, NULL, 0, NULL, 1),
(17745, 13924, '5', 'Anna University', '', '', '2018', 88.00, '', 1, '2023-07-29 11:11:20', 0, NULL, 0, NULL, 1),
(17746, 13925, '3', 'Manonmaniam Sundaranar University', '', 'BCA', '2022', 82.70, '', 1, '2023-07-29 11:11:24', 0, NULL, 0, NULL, 1),
(17747, 13928, '3', 'Madras university ', '', '', '2023', 76.00, '', 1, '2023-07-29 11:42:17', 0, NULL, 0, NULL, 1),
(17748, 13926, '3', 'Madras university ', '', 'BCA', '2023', 68.00, '', 1, '2023-07-29 12:14:57', 0, NULL, 0, NULL, 1),
(17749, 13922, '3', ' University of Madras ', '', 'B.com ( bank management)', '2022', 60.00, '', 1, '2023-07-29 12:17:30', 0, NULL, 0, NULL, 1),
(17750, 0, '3', 'Anna university', '', 'B.E', '2022', 76.00, '', 1, '2023-07-29 02:48:08', 1, '2023-08-01 12:06:07', 0, NULL, 0),
(17751, 13929, '3', 'NEHU', '', 'B.com', '2022', 68.75, '', 1, '2023-07-29 03:16:44', 0, NULL, 0, NULL, 1),
(17752, 13930, '3', 'Pondicherry university ', '', 'B.Tech', '2022', 8.29, '', 1, '2023-07-29 05:56:00', 0, NULL, 0, NULL, 1),
(17753, 13932, '3', 'SRM IST', '', 'BCA(computer application)', '2021', 6.28, '', 1, '2023-07-30 02:02:37', 0, NULL, 0, NULL, 1),
(17754, 13935, '4', 'Periyar Maniammai Institute of Science & Technology ', '', 'MBA', '2023', 87.00, '', 1, '2023-07-31 10:03:19', 0, NULL, 0, NULL, 1),
(17755, 13934, '4', 'Periyar Maniammai Institute of Science & Technology ', '', 'MBA', '2023', 85.00, '', 1, '2023-07-31 10:03:26', 0, NULL, 0, NULL, 1),
(17756, 13935, '3', 'Sastra Deemed To Be University ', '', 'B com', '2021', 72.00, '', 1, '2023-07-31 10:03:52', 0, NULL, 0, NULL, 1),
(17757, 13934, '3', 'SASTRA Deemed to be University ', '', 'BCOM ', '2023', 74.00, '', 1, '2023-07-31 10:03:53', 0, NULL, 0, NULL, 1),
(17758, 13936, '3', 'madras university ', '', 'bachelor of business administration', '2023', 68.00, '', 1, '2023-07-31 10:36:05', 0, NULL, 0, NULL, 1),
(17759, 13940, '3', 'University of madras', '', 'BBA', '2023', 69.00, '', 1, '2023-07-31 10:37:20', 0, NULL, 0, NULL, 1),
(17760, 13937, '4', 'Madara University', '', 'B.com corporate secretaryship', '2023', 69.00, '', 1, '2023-07-31 10:38:52', 1, '2023-07-31 10:40:49', 0, NULL, 0),
(17761, 13941, '4', 'Muthayammal Engineering college Autonomous -rasipuram ', '', 'Master of computer Applications ', '2023', 76.00, '', 1, '2023-07-31 10:39:28', 0, NULL, 0, NULL, 1),
(17762, 13941, '3', 'Presidency college Autonomous Chennai ', '', 'Mathematics ', '2021', 69.00, '', 1, '2023-07-31 10:40:03', 0, NULL, 0, NULL, 1),
(17763, 13937, '4', 'Madars University', '', 'B.com corporate secretaryship', '2023', 69.00, '', 1, '2023-07-31 10:40:57', 0, NULL, 0, NULL, 1),
(17764, 13938, '3', 'Madras unversity ', '', 'B. Com', '2023', 72.00, '', 1, '2023-07-31 10:41:44', 0, NULL, 0, NULL, 1),
(17765, 13938, '1', 'Board ', '', 'B. Com', '2018', 72.00, '', 1, '2023-07-31 10:43:04', 0, NULL, 0, NULL, 1),
(17766, 13942, '3', 'the new college', '', 'b.sc', '2020', 70.00, '', 1, '2023-07-31 10:43:54', 0, NULL, 0, NULL, 1),
(17767, 13939, '3', 'madra university ', '', 'bachelor of business administration', '2023', 69.00, '', 1, '2023-07-31 10:46:49', 0, NULL, 0, NULL, 1),
(17768, 13945, '3', 'Madras University ', '', 'Bsc.Chemistry', '2019', 70.00, '', 1, '2023-07-31 10:50:25', 0, NULL, 0, NULL, 1),
(17769, 13943, '3', 'Dhanraj Baid Jain College ', '', 'B.com', '2019', 60.40, '', 1, '2023-07-31 10:51:02', 0, NULL, 0, NULL, 1),
(17770, 13946, '4', 'Loyola College ', '', 'MSW', '2023', 7.80, '', 1, '2023-07-31 11:01:33', 0, NULL, 0, NULL, 1),
(17771, 13947, '2', 'St.Aloysious', '', '', '2018', 65.00, '', 1, '2023-07-31 11:02:34', 0, NULL, 0, NULL, 1),
(17772, 13946, '3', 'Stella Maris college', '', 'BSW', '2021', 7.50, '', 1, '2023-07-31 11:02:43', 0, NULL, 0, NULL, 1),
(17773, 13947, '3', 'Stella Maris', '', 'BSW', '2021', 68.00, '', 1, '2023-07-31 11:02:59', 0, NULL, 0, NULL, 1),
(17774, 13944, '3', 'Anna university', '', 'B. E', '2022', 76.00, '', 1, '2023-07-31 11:03:20', 0, NULL, 0, NULL, 1),
(17775, 13946, '2', 'Sacred Heart Mat. Hr.Sec School, Church Park', '', '', '2018', 59.00, '', 1, '2023-07-31 11:03:44', 0, NULL, 0, NULL, 1),
(17776, 13947, '4', 'Patrician College', '', 'MA HRM', '2023', 79.00, '', 1, '2023-07-31 11:04:42', 0, NULL, 0, NULL, 1),
(17777, 13946, '1', 'Sacred Heart Mat. Hr. Sec School, Church Park', '', '', '2016', 86.00, '', 1, '2023-07-31 11:05:09', 0, NULL, 0, NULL, 1),
(17778, 13948, '3', 'Anna university', '', 'BE. CSE', '2023', 78.60, '', 1, '2023-07-31 11:08:38', 0, NULL, 0, NULL, 1),
(17779, 13949, '1', 'Tamilnadu State board ', '', '', '2017', 90.00, '', 1, '2023-07-31 11:09:16', 0, NULL, 0, NULL, 1),
(17780, 13948, '1', 'Tamilnadu state board', '', '', '2017', 71.00, '', 1, '2023-07-31 11:09:18', 0, NULL, 0, NULL, 1),
(17781, 13949, '2', 'Tamilnadu State board ', '', '', '2019', 61.00, '', 1, '2023-07-31 11:09:33', 0, NULL, 0, NULL, 1),
(17782, 13948, '2', 'Tamilnadu State board', '', '', '2019', 58.00, '', 1, '2023-07-31 11:09:46', 0, NULL, 0, NULL, 1),
(17783, 13949, '3', 'Anna University ', '', 'BE CSE', '2023', 70.00, '', 1, '2023-07-31 11:09:55', 0, NULL, 0, NULL, 1),
(17784, 13950, '3', 'Anna university', '', 'B. E', '2022', 84.40, '', 1, '2023-07-31 11:14:38', 0, NULL, 0, NULL, 1),
(17785, 13950, '2', 'State board of Tamilnadu', '', '', '2018', 73.50, '', 1, '2023-07-31 11:15:10', 0, NULL, 0, NULL, 1),
(17786, 13951, '3', 'Madras University ', '', 'BCA', '2023', 75.00, '', 1, '2023-07-31 11:18:28', 0, NULL, 0, NULL, 1),
(17787, 13952, '4', 'Annamalai University ', '', 'MCA', '2022', 8.50, '', 1, '2023-07-31 11:25:54', 0, NULL, 0, NULL, 1),
(17788, 13950, '1', 'State board of Tamilnadu', '', '', '2016', 86.00, '', 1, '2023-07-31 11:26:55', 0, NULL, 0, NULL, 1),
(17789, 13956, '1', 'Tamilnadu', '', 'B. Tech', '2016', 83.00, '', 1, '2023-07-31 11:32:26', 0, NULL, 0, NULL, 1),
(17790, 13954, '3', 'Bharathiyar Univercity', '', 'B.com computer application ', '2019', 65.00, '', 1, '2023-07-31 11:32:41', 0, NULL, 0, NULL, 1),
(17791, 13956, '2', 'Tamilnadu', '', '', '2018', 60.00, '', 1, '2023-07-31 11:32:47', 0, NULL, 0, NULL, 1),
(17792, 13958, '4', 'Anna university', '', 'MCA', '2022', 72.00, '', 1, '2023-07-31 11:38:02', 0, NULL, 0, NULL, 1),
(17793, 13959, '3', 'Bharathidasan University ', '', 'B.SC ', '2022', 73.00, '', 1, '2023-07-31 11:38:30', 0, NULL, 0, NULL, 1),
(17794, 13957, '3', 'Anna university', '', 'Bachelor of engineering', '2022', 82.00, '', 1, '2023-07-31 11:38:46', 0, NULL, 0, NULL, 1),
(17795, 13961, '3', 'Anna University ', '', 'B.E', '2020', 85.00, '', 1, '2023-07-31 11:43:52', 0, NULL, 0, NULL, 1),
(17796, 13953, '3', 'Bharathidasan ', '', 'Bsc', '2022', 84.00, '', 1, '2023-07-31 12:00:17', 0, NULL, 0, NULL, 1),
(17797, 13962, '3', 'Medras University ', '', 'B.com', '2023', 7.16, '', 1, '2023-07-31 12:04:39', 0, NULL, 0, NULL, 1),
(17798, 13955, '5', 'Anna', '', 'Diploma ', '2015', 79.00, '', 1, '2023-07-31 12:47:25', 0, NULL, 0, NULL, 1),
(17799, 13963, '3', 'Bharathiyar University ', '', 'B.Com computer application ', '2019', 60.00, '', 1, '2023-07-31 12:57:44', 0, NULL, 0, NULL, 1),
(17800, 13964, '1', 'State board', '', '', '2015', 78.20, '', 1, '2023-07-31 02:07:47', 0, NULL, 0, NULL, 1),
(17801, 13964, '2', 'State board', '', '', '2017', 49.00, '', 1, '2023-07-31 02:08:45', 0, NULL, 0, NULL, 1),
(17802, 13964, '5', 'Pondicherry university', '', 'Instrumentation & Control Engineer ', '2019', 86.00, '', 1, '2023-07-31 02:10:04', 0, NULL, 0, NULL, 1),
(17803, 13964, '3', 'Pondicherry University', '', 'Btech Electronics and Instrumentation ', '2022', 72.20, '', 1, '2023-07-31 02:13:03', 0, NULL, 0, NULL, 1),
(17804, 13966, '3', 'Bharathidasan University ', '', 'Bsc', '2018', 73.00, '', 1, '2023-07-31 02:39:27', 0, NULL, 0, NULL, 1),
(17805, 13967, '3', 'Anna University ', '', 'B.E. mechanical ', '2019', 6.50, '', 1, '2023-08-01 10:03:59', 0, NULL, 0, NULL, 1),
(17806, 13933, '3', 'arunai engineering college', '', 'be', '2023', 8.57, '', 108, '2023-08-01 10:29:06', 0, NULL, 0, NULL, 1),
(17807, 13969, '3', 'THIRUVALLUVAR UNIVERSITY ', '', 'B.sc.computer science', '2022', 78.00, '', 1, '2023-08-01 11:02:54', 0, NULL, 0, NULL, 1),
(17808, 13971, '3', 'Madras university', '', 'B. A economic', '2019', 90.00, '', 1, '2023-08-01 11:23:07', 0, NULL, 0, NULL, 1),
(17809, 13970, '5', 'government poltechnic college', '', 'dce', '2022', 94.00, '', 108, '2023-08-01 11:48:18', 0, NULL, 0, NULL, 1),
(17810, 13974, '3', 'Anna University ', '', 'BE', '2021', 72.00, '', 1, '2023-08-01 11:53:26', 0, NULL, 0, NULL, 1),
(17811, 13973, '3', 'Vels University ', '', 'BE CSE', '2021', 62.00, '', 1, '2023-08-01 11:54:41', 0, NULL, 0, NULL, 1),
(17812, 13972, '3', 'ANNA UNIVERSITY ', '', 'B.E ', '2020', 70.00, '', 1, '2023-08-01 11:57:42', 0, NULL, 0, NULL, 1),
(17813, 13976, '1', 'State board', '', '', '2023', 7.82, '', 1, '2023-08-01 12:06:44', 1, '2023-08-01 12:07:49', 0, NULL, 0),
(17814, 13976, '1', 'State board', '', '', '2017', 91.80, '', 1, '2023-08-01 12:07:50', 0, NULL, 0, NULL, 1),
(17815, 13976, '2', 'State Board ', '', '', '2019', 73.30, '', 1, '2023-08-01 12:09:09', 0, NULL, 0, NULL, 1),
(17816, 13976, '3', 'Anna University ', '', 'B.E', '2023', 7.82, '', 1, '2023-08-01 12:09:47', 0, NULL, 0, NULL, 1),
(17817, 13977, '4', 'Bharathithasan University ', '', 'Msc', '2023', 78.00, '', 1, '2023-08-01 12:12:54', 0, NULL, 0, NULL, 1),
(17818, 13975, '3', 'Sri Sairam Institute of Technology', '', 'B.E', '2023', 8.20, '', 1, '2023-08-01 12:20:34', 1, '2023-08-01 12:22:46', 0, NULL, 0),
(17819, 13975, '2', 'State Board of Tamilnadu ', '', '', '2019', 71.00, '', 1, '2023-08-01 12:21:20', 0, NULL, 0, NULL, 1),
(17820, 13975, '1', 'State Board Of Tamilnadu ', '', '', '2017', 87.00, '', 1, '2023-08-01 12:22:02', 0, NULL, 0, NULL, 1),
(17821, 13975, '3', 'Anna University ', '', 'B.E', '2023', 82.00, '', 1, '2023-08-01 12:23:19', 0, NULL, 0, NULL, 1),
(17822, 13978, '3', 'University of Madras', '', 'B.Com(Information System Management)', '2022', 76.00, '', 1, '2023-08-01 12:23:43', 0, NULL, 0, NULL, 1),
(17823, 13979, '3', 'Autonomous ', '', '', '2023', 78.00, '', 1, '2023-08-01 05:03:14', 0, NULL, 0, NULL, 1),
(17824, 13982, '4', 'Dr mgr University', '', 'Bsc viscom', '2020', 5.38, '', 1, '2023-08-02 10:12:38', 0, NULL, 0, NULL, 1),
(17825, 13983, '3', 'Bharathi dasan ', '', 'Bsc computer science ', '2022', 61.00, '', 1, '2023-08-02 10:58:21', 0, NULL, 0, NULL, 1),
(17826, 13984, '3', 'Periyar University ', '', 'Bsc physics ', '2021', 70.00, '', 1, '2023-08-02 11:26:05', 0, NULL, 0, NULL, 1),
(17827, 13984, '2', 'English medium', '', '', '2018', 68.00, '', 1, '2023-08-02 11:26:31', 0, NULL, 0, NULL, 1),
(17828, 13984, '1', 'English ', '', '', '2016', 84.00, '', 1, '2023-08-02 11:26:52', 0, NULL, 0, NULL, 1),
(17829, 13987, '3', 'Sindhi college of arts and science ', '', 'B.sc Computer science ', '2021', 70.00, '', 1, '2023-08-02 11:49:14', 0, NULL, 0, NULL, 1),
(17830, 13981, '3', 'Loyola college', '', 'B\'sc', '2019', 62.10, '', 1, '2023-08-02 12:00:37', 0, NULL, 0, NULL, 1),
(17831, 13986, '3', 'Thiruvalluvar University ', '', 'B.cOM', '2019', 68.00, '', 1, '2023-08-02 12:00:39', 0, NULL, 0, NULL, 1),
(17832, 13988, '3', 'Madras University ', '', 'B.com Bank management ', '2023', 80.00, '', 1, '2023-08-02 12:06:46', 0, NULL, 0, NULL, 1),
(17833, 13985, '3', 'Manomaniyam Suntharanaar University ', '', 'Bsc computer science ', '2023', 8.00, '', 1, '2023-08-02 12:12:52', 0, NULL, 0, NULL, 1),
(17834, 13989, '3', 'Madras University ', '', 'BCA', '2023', 65.00, '', 1, '2023-08-03 09:00:57', 0, NULL, 0, NULL, 1),
(17835, 13990, '3', 'Dwaraka doss goverdhan doss vaishnav college ', '', 'Bcom General ', '2022', 86.00, '', 1, '2023-08-03 09:13:46', 0, NULL, 0, NULL, 1),
(17836, 13991, '3', 'Madras University ', '', 'B.com (corporate)', '2020', 69.00, '', 1, '2023-08-03 11:13:39', 0, NULL, 0, NULL, 1),
(17837, 13994, '3', 'K S Rangasamy college of Technology ', '', 'B Tech Information technology ', '2023', 85.00, '', 1, '2023-08-03 11:20:50', 0, NULL, 0, NULL, 1),
(17838, 13994, '1', 'Tamil Nadu State board ', '', '', '2017', 86.00, '', 1, '2023-08-03 11:21:41', 0, NULL, 0, NULL, 1),
(17839, 13994, '2', 'Tamil Nadu State board ', '', '', '2019', 64.00, '', 1, '2023-08-03 11:21:57', 0, NULL, 0, NULL, 1),
(17840, 13993, '3', 'Miet engineering college ', '', 'Mechanical engineering ', '2018', 70.00, '', 1, '2023-08-03 11:23:46', 0, NULL, 0, NULL, 1),
(17841, 13996, '3', 'Anna University ', '', 'B Tech IT ', '2023', 85.00, '', 1, '2023-08-03 11:24:12', 0, NULL, 0, NULL, 1),
(17842, 13996, '2', 'State board ', '', '', '2019', 71.50, '', 1, '2023-08-03 11:24:41', 0, NULL, 0, NULL, 1),
(17843, 13996, '1', 'State Board ', '', '', '2017', 95.60, '', 1, '2023-08-03 11:25:00', 0, NULL, 0, NULL, 1),
(17844, 13995, '1', 'State board', '', '', '2017', 74.20, '', 1, '2023-08-03 11:28:57', 0, NULL, 0, NULL, 1),
(17845, 13995, '2', 'State board ', '', '', '2019', 54.30, '', 1, '2023-08-03 11:29:26', 0, NULL, 0, NULL, 1),
(17846, 13992, '3', 'Madras University ', '', 'B.com', '2018', 58.00, '', 1, '2023-08-03 11:39:27', 0, NULL, 0, NULL, 1),
(17847, 13992, '5', 'Cooperative manegement ', '', '', '2019', 57.00, '', 1, '2023-08-03 11:40:24', 0, NULL, 0, NULL, 1),
(17848, 13998, '3', 'K.S.Rangasamy college of Technology ', '', 'B.Tech', '2022', 77.00, '', 1, '2023-08-03 12:28:22', 0, NULL, 0, NULL, 1),
(17849, 13997, '3', 'dr. ambedkar arts and science college', '', 'bba', '2022', 70.00, '', 1, '2023-08-03 12:47:27', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(17850, 14000, '3', 'dr. ambedkar arts and science college', '', 'bba', '2022', 70.00, '', 1, '2023-08-03 01:08:01', 0, NULL, 0, NULL, 1),
(17851, 13999, '3', 'sree muthukumara swami college', '', 'bcom', '2022', 85.00, '', 1, '2023-08-03 01:27:00', 0, NULL, 0, NULL, 1),
(17852, 14001, '5', 'Anna university', '', 'Diploma in civil', '2019', 65.00, '', 1, '2023-08-03 03:22:48', 0, NULL, 0, NULL, 1),
(17853, 14002, '3', 'Bharadhidasan University Trichy ', '', 'B.sc computer science ', '2020', 69.00, '', 1, '2023-08-04 10:49:29', 0, NULL, 0, NULL, 1),
(17854, 14003, '3', 'Madras University ', '', 'BBA', '2023', 69.00, '', 1, '2023-08-04 10:52:46', 0, NULL, 0, NULL, 1),
(17855, 14004, '3', 'Madras University ', '', 'Bcom general ', '2018', 75.00, '', 1, '2023-08-04 11:15:38', 0, NULL, 0, NULL, 1),
(17856, 14005, '3', 'Madras university ', '', 'BBA ', '2020', 75.00, '', 1, '2023-08-04 11:19:15', 0, NULL, 0, NULL, 1),
(17857, 14006, '3', 'Madras university ', '', 'BSc computer science ', '2019', 76.80, '', 1, '2023-08-04 11:20:41', 0, NULL, 0, NULL, 1),
(17858, 0, '5', 'Tamilnadu agriculture University ', '', 'Diploma in agriculture ', '2022', 80.02, '', 1, '2023-08-04 12:01:11', 1, '2023-08-05 01:28:04', 0, NULL, 0),
(17859, 14008, '3', 'Anna University Chennai ', '', 'BE', '2020', 64.40, '', 1, '2023-08-04 12:18:05', 0, NULL, 0, NULL, 1),
(17860, 14007, '5', 'Tamilnadu agriculture University ', '', 'Diploma in agriculture ', '2022', 80.02, '', 1, '2023-08-04 12:58:30', 0, NULL, 0, NULL, 1),
(17861, 14009, '4', 'National forensic sciences university tripura', '', 'M. Sc Forensic sciences', '2023', 80.00, '', 1, '2023-08-04 03:45:13', 0, NULL, 0, NULL, 1),
(17862, 14009, '3', 'Dr. Mgr janaki college of arts and sciences', '', 'B. Sc Biochemistry', '2020', 75.00, '', 1, '2023-08-04 03:46:05', 0, NULL, 0, NULL, 1),
(17863, 14010, '3', 'madras university', '', 'b.com', '2021', 75.00, '', 1, '2023-08-04 04:56:59', 0, NULL, 0, NULL, 1),
(17864, 14013, '4', 'Bharathidasan university', '', 'Mba', '2019', 67.00, '', 1, '2023-08-05 10:50:23', 0, NULL, 0, NULL, 1),
(17865, 14016, '3', 'Madras University ', '', 'BCA', '2023', 75.00, '', 1, '2023-08-05 11:02:56', 0, NULL, 0, NULL, 1),
(17866, 14014, '3', 'University of Madras ', '', 'B.com(general)', '2023', 90.00, '', 1, '2023-08-05 11:04:38', 0, NULL, 0, NULL, 1),
(17867, 14017, '3', 'Anna University ', '', 'B.E- Computer science ', '2023', 83.00, '', 1, '2023-08-05 11:16:48', 0, NULL, 0, NULL, 1),
(17868, 14015, '3', 'Stella Marty\'s college ', '', 'B.com General ', '2023', 75.00, '', 1, '2023-08-05 11:29:44', 0, NULL, 0, NULL, 1),
(17869, 14018, '4', 'Medras University ', '', 'MBA', '2021', 75.00, '', 1, '2023-08-05 11:34:44', 0, NULL, 0, NULL, 1),
(17870, 14019, '3', 'Sri venkateswaraa college of technology ', '', 'B.E', '2019', 66.30, '', 1, '2023-08-05 11:35:16', 0, NULL, 0, NULL, 1),
(17871, 14020, '3', 'Manonmaniam sundaranar university', '', 'B. Sc computer science', '2022', 75.00, '', 1, '2023-08-05 11:57:46', 0, NULL, 0, NULL, 1),
(17872, 14012, '3', 'Madras University ', '', 'BA English ', '2021', 80.00, '', 1, '2023-08-05 12:02:36', 0, NULL, 0, NULL, 1),
(17873, 14022, '3', 'Autonomous ', '', 'B.com general ', '2023', 70.00, '', 1, '2023-08-05 12:22:33', 0, NULL, 0, NULL, 1),
(17874, 14023, '3', 'Autonomous ', '', 'B.com General ', '2023', 73.00, '', 1, '2023-08-05 12:22:53', 0, NULL, 0, NULL, 1),
(17875, 14021, '3', 'St.thomas College of arts and science', '', 'B.com general', '2012', 75.00, '', 1, '2023-08-05 12:24:47', 0, NULL, 0, NULL, 1),
(17876, 0, '3', 'Nadar Saraswathi college of Engineering and Technology', '', 'B. E', '2021', 76.00, '', 1, '2023-08-05 01:28:00', 1, '2023-08-05 03:59:45', 0, NULL, 0),
(17877, 14026, '5', 'Integral coach factory', '', 'Painting ', '2021', 60.00, '', 1, '2023-08-05 04:00:12', 0, NULL, 0, NULL, 1),
(17878, 14029, '3', 'Bharathiar University ', '', 'BCA', '2023', 63.00, '', 1, '2023-08-07 09:57:16', 0, NULL, 0, NULL, 1),
(17879, 14030, '3', 'Madras University ', '', 'B.sc Botany ', '2018', 75.00, '', 1, '2023-08-07 10:08:36', 0, NULL, 0, NULL, 1),
(17880, 14025, '3', 'Madras University ', '', '', '2020', 70.00, '', 1, '2023-08-07 10:41:29', 0, NULL, 0, NULL, 1),
(17881, 14032, '3', 'Bishop Heber college ', '', 'Computer science ', '2023', 7.50, '', 1, '2023-08-07 10:49:27', 0, NULL, 0, NULL, 1),
(17882, 14034, '3', 'Anna University', '', 'Bachelor of Technology ', '2021', 73.00, '', 1, '2023-08-07 10:51:36', 0, NULL, 0, NULL, 1),
(17883, 14034, '2', 'State Board of TamilNadu ', '', '', '2017', 72.50, '', 1, '2023-08-07 10:52:05', 0, NULL, 0, NULL, 1),
(17884, 14034, '1', 'State Board of TamilNadu', '', '', '2015', 85.80, '', 1, '2023-08-07 10:52:23', 0, NULL, 0, NULL, 1),
(17885, 0, '3', 'Anna University ', '', 'B.tech', '2023', 80.00, '', 1, '2023-08-07 10:52:48', 1, '2023-08-09 11:36:43', 0, NULL, 0),
(17886, 14035, '3', 'Sree muthukumaran Swamy college ', '', 'B.com (general)', '2022', 68.00, '', 1, '2023-08-07 10:59:16', 0, NULL, 0, NULL, 1),
(17887, 14036, '3', 'Madras University ', '', 'Bcom', '2023', 70.00, '', 1, '2023-08-07 11:01:04', 0, NULL, 0, NULL, 1),
(17888, 14037, '5', 'Integral coach factory ', '', '', '2022', 75.00, '', 1, '2023-08-07 11:30:23', 0, NULL, 0, NULL, 1),
(17889, 14038, '3', 'University of Madras ', '', 'BCA', '2019', 68.00, '', 1, '2023-08-07 11:30:28', 0, NULL, 0, NULL, 1),
(17890, 14039, '3', 'anna university', '', 'bachelor of engineering', '2022', 79.90, '', 1, '2023-08-07 11:39:10', 0, NULL, 0, NULL, 1),
(17891, 14040, '2', 'State board ', '', '', '2015', 55.00, '', 1, '2023-08-07 12:16:37', 0, NULL, 0, NULL, 1),
(17892, 14033, '3', 'Anna University ', '', 'B.Tech (IT)', '2016', 65.00, '', 1, '2023-08-07 12:27:37', 0, NULL, 0, NULL, 1),
(17893, 14027, '5', 'panimalar poletechnic colledge', '', 'diplamo in mechanical', '2020', 75.00, '', 1, '2023-08-07 01:11:47', 0, NULL, 0, NULL, 1),
(17894, 14042, '3', 'Bharathidasan', '', 'Bsc', '2022', 70.00, '', 1, '2023-08-07 01:13:35', 0, NULL, 0, NULL, 1),
(17895, 14041, '3', 'Bharathidasan ', '', 'Bsc', '2022', 68.00, '', 1, '2023-08-07 01:17:21', 0, NULL, 0, NULL, 1),
(17896, 14043, '3', 'Bharathidasan ', '', 'Bsc', '2022', 65.00, '', 1, '2023-08-07 01:24:09', 0, NULL, 0, NULL, 1),
(17897, 14044, '1', 'State Board', '', '', '2015', 85.00, '', 1, '2023-08-07 02:41:23', 0, NULL, 0, NULL, 1),
(17898, 14044, '2', 'State Board', '', '', '2017', 65.00, '', 1, '2023-08-07 02:41:48', 0, NULL, 0, NULL, 1),
(17899, 14044, '3', 'Anna University ', '', 'B.E - CSE', '2023', 79.00, '', 1, '2023-08-07 02:42:28', 0, NULL, 0, NULL, 1),
(17900, 14045, '3', 'University of Madras', '', 'B. Sc', '2020', 75.00, '', 1, '2023-08-07 04:22:57', 0, NULL, 0, NULL, 1),
(17901, 14046, '3', 'Bharathidasan University ', '', 'Bachelor of Business Administration ', '2020', 75.00, '', 1, '2023-08-07 05:13:21', 0, NULL, 0, NULL, 1),
(17902, 14047, '3', 'The New College, Madras University', '', 'B. Sc computer science', '2020', 69.00, '', 1, '2023-08-07 10:48:14', 0, NULL, 0, NULL, 1),
(17903, 14048, '3', 'Tiruvaluvar university', '', 'Bsc computer science', '2023', 60.00, '', 1, '2023-08-08 09:29:55', 0, NULL, 0, NULL, 1),
(17904, 14049, '3', 'Anna university ', '', 'BE. Computer science and engineering.', '2012', 68.50, '', 1, '2023-08-08 10:14:20', 0, NULL, 0, NULL, 1),
(17905, 14051, '3', 'Anna University ', '', 'Mechanical Engineering ', '2022', 77.20, '', 1, '2023-08-08 11:24:50', 0, NULL, 0, NULL, 1),
(17906, 14052, '3', 'Thiruvalluvar University ', '', 'Bachelor of Computer Application ', '2023', 8.30, '', 1, '2023-08-08 11:31:39', 0, NULL, 0, NULL, 1),
(17907, 14050, '3', 'hindustan  college', '', 'btech', '2023', 0.00, '', 104, '2023-08-08 11:46:12', 0, NULL, 0, NULL, 1),
(17908, 14053, '3', 'University college of engineering nagercoil ', '', 'B.E', '2023', 81.00, '', 1, '2023-08-09 10:01:21', 0, NULL, 0, NULL, 1),
(17909, 14053, '2', 'State Board ', '', '', '2019', 65.83, '', 1, '2023-08-09 10:01:44', 0, NULL, 0, NULL, 1),
(17910, 14053, '1', 'State Board ', '', '', '2017', 94.60, '', 1, '2023-08-09 10:02:13', 0, NULL, 0, NULL, 1),
(17911, 14054, '3', 'GOJAN SCHOOL OF BUSINESS AND TECHNOLOGY', '', 'B.Tech', '2023', 8.14, '', 1, '2023-08-09 10:36:57', 0, NULL, 0, NULL, 1),
(17912, 14055, '3', 'anna University ', '', 'btech-it', '2022', 78.00, '', 1, '2023-08-09 10:42:26', 0, NULL, 0, NULL, 1),
(17913, 14056, '3', 'Madras University ', '', 'Bsc maths', '2022', 65.00, '', 1, '2023-08-09 10:59:29', 0, NULL, 0, NULL, 1),
(17914, 14057, '3', 'Bharadhidasan ', '', 'B.sc', '2022', 87.00, '', 1, '2023-08-09 11:11:45', 0, NULL, 0, NULL, 1),
(17915, 14058, '4', 'Anna University ', '', 'M.E', '2020', 67.80, '', 1, '2023-08-09 11:16:13', 0, NULL, 0, NULL, 1),
(17916, 14058, '3', 'Anna University ', '', 'B.E', '2017', 69.40, '', 1, '2023-08-09 11:17:08', 0, NULL, 0, NULL, 1),
(17917, 14058, '2', 'State board', '', '', '2013', 76.00, '', 1, '2023-08-09 11:18:38', 0, NULL, 0, NULL, 1),
(17918, 14060, '3', 'The new College autonomous ', '', 'B.com cs', '2023', 75.00, '', 1, '2023-08-09 11:34:02', 0, NULL, 0, NULL, 1),
(17919, 14062, '3', 'Anna university ', '', 'B.Tech', '2023', 8.20, '', 1, '2023-08-09 11:36:30', 0, NULL, 0, NULL, 1),
(17920, 14061, '3', 'Anna University ', '', 'B.tech IT', '2023', 8.00, '', 1, '2023-08-09 11:38:10', 0, NULL, 0, NULL, 1),
(17921, 14063, '3', 'Anna University ', '', 'B.tech', '2023', 80.00, '', 1, '2023-08-09 11:38:14', 0, NULL, 0, NULL, 1),
(17922, 14064, '4', 'University of Madras ', '', 'M.SC', '2022', 86.00, '', 1, '2023-08-09 11:44:13', 0, NULL, 0, NULL, 1),
(17923, 14059, '3', 'Madras University ', '', 'B.com general ', '2023', 70.00, '', 1, '2023-08-09 11:44:27', 0, NULL, 0, NULL, 1),
(17924, 14064, '3', 'University of Madras ', '', 'B.Sc. Computer Science ', '2020', 76.00, '', 1, '2023-08-09 11:44:36', 0, NULL, 0, NULL, 1),
(17925, 14064, '2', 'State board of tamilnadu ', '', '', '2017', 76.00, '', 1, '2023-08-09 11:45:05', 0, NULL, 0, NULL, 1),
(17926, 14064, '1', 'State board of tamilnadu ', '', '', '2015', 86.00, '', 1, '2023-08-09 11:45:33', 0, NULL, 0, NULL, 1),
(17927, 14065, '3', 'Madras University', '', 'Bachelor of Computer Application ', '2020', 70.00, '', 1, '2023-08-09 12:02:40', 0, NULL, 0, NULL, 1),
(17928, 14067, '4', 'Madurai kamarajar university ', '', 'M.Sc', '2022', 81.00, '', 1, '2023-08-09 01:49:08', 0, NULL, 0, NULL, 1),
(17929, 14066, '3', 'PSNA college of engineering ', '', 'Be.', '2023', 76.90, '', 1, '2023-08-09 02:50:59', 0, NULL, 0, NULL, 1),
(17930, 14069, '3', 'Madras University', '', 'Bcom', '2023', 79.00, '', 1, '2023-08-09 11:10:29', 0, NULL, 0, NULL, 1),
(17931, 14070, '3', 'Madras University ', '', 'BCOM', '2023', 75.00, '', 1, '2023-08-10 11:20:09', 0, NULL, 0, NULL, 1),
(17932, 14071, '3', 'Anna university Chennai', '', 'BE Mechanical', '2014', 72.00, '', 1, '2023-08-10 11:38:48', 0, NULL, 0, NULL, 1),
(17933, 14072, '3', 'Dhirajlal Gandhi College Of Technology ', '', 'B.E', '2022', 8.22, '', 1, '2023-08-10 11:39:11', 0, NULL, 0, NULL, 1),
(17934, 14074, '3', 'Autonomous ', '', 'BCA', '2023', 71.00, '', 1, '2023-08-10 12:04:37', 0, NULL, 0, NULL, 1),
(17935, 14075, '3', 'Madras University ', '', 'BCA ', '2023', 83.00, '', 1, '2023-08-10 12:05:09', 0, NULL, 0, NULL, 1),
(17936, 14076, '3', 'University ', '', 'information technology', '2023', 8.00, '', 1, '2023-08-10 12:19:58', 0, NULL, 0, NULL, 1),
(17937, 14077, '3', 'MBA Admission chennai India', '', 'B.com degree', '2021', 85.00, '', 1, '2023-08-10 02:15:23', 0, NULL, 0, NULL, 1),
(17938, 14078, '5', 'aalim muhammed salegh polytechnic college', '', 'DECE', '2022', 85.00, '', 1, '2023-08-10 02:15:48', 0, NULL, 0, NULL, 1),
(17939, 14079, '3', 'Anna university ', '', 'B.e.', '2023', 81.00, '', 1, '2023-08-10 03:05:49', 0, NULL, 0, NULL, 1),
(17940, 14079, '2', 'State Board ', '', '', '2019', 65.00, '', 1, '2023-08-10 03:06:11', 0, NULL, 0, NULL, 1),
(17941, 14079, '1', 'State Board ', '', '', '2017', 82.00, '', 1, '2023-08-10 03:06:48', 0, NULL, 0, NULL, 1),
(17942, 14080, '4', 'Bharathiyar university ', '', 'MCA', '2022', 86.00, '', 1, '2023-08-10 03:08:44', 0, NULL, 0, NULL, 1),
(17943, 14080, '3', 'Thiruvalluvar university ', '', 'BCA', '2020', 72.00, '', 1, '2023-08-10 03:09:12', 1, '2023-08-10 03:09:46', 0, NULL, 1),
(17944, 14083, '3', 'Vivekanandha college of technology for women ', '', 'BE', '2022', 8.01, '', 1, '2023-08-11 10:13:58', 1, '2023-08-11 10:14:17', 0, NULL, 0),
(17945, 14084, '3', 'Vivekanandha college of technology for women ', '', 'B.E', '2022', 80.00, '', 1, '2023-08-11 10:14:31', 1, '2023-08-11 10:18:53', 0, NULL, 1),
(17946, 14083, '1', 'St.Kanakadasa Matriculation school ', '', '', '2016', 87.00, '', 1, '2023-08-11 10:14:45', 1, '2023-08-11 10:16:53', 0, NULL, 1),
(17947, 14084, '1', 'Sri Ramana Maharshi matriculation higher secondary school ', '', '', '2016', 74.00, '', 1, '2023-08-11 10:15:30', 1, '2023-08-11 10:17:49', 0, NULL, 0),
(17948, 14083, '2', 'St.Kanakadasa Matriculation School ', '', '', '2018', 76.00, '', 1, '2023-08-11 10:15:57', 0, NULL, 0, NULL, 1),
(17949, 14083, '3', 'Vivekanandha college of technology for women ', '', 'BE', '2022', 8.01, '', 1, '2023-08-11 10:16:29', 0, NULL, 0, NULL, 1),
(17950, 14084, '2', 'India matriculation higher secondary school ', '', '', '2018', 70.00, '', 1, '2023-08-11 10:18:19', 0, NULL, 0, NULL, 1),
(17951, 14084, '1', 'India matriculation higher secondary school ', '', '', '2018', 70.00, '', 1, '2023-08-11 10:19:21', 0, NULL, 0, NULL, 1),
(17952, 14085, '4', 'MADRAS UNIVERSITY ', '', 'MBA MARKETING MANAGEMENT ', '2021', 67.00, '', 1, '2023-08-11 10:39:00', 0, NULL, 0, NULL, 1),
(17953, 14087, '4', 'Gojan School Of Business And technology', '', 'M.E CSE', '2022', 9.17, '', 1, '2023-08-11 11:24:22', 0, NULL, 0, NULL, 1),
(17954, 14087, '3', 'Gojan school of business and technology', '', 'B.E CSE', '2019', 7.40, '', 1, '2023-08-11 11:25:51', 0, NULL, 0, NULL, 1),
(17955, 14087, '2', 'St.Anns Matric Hr Sec School', '', '', '2015', 74.00, '', 1, '2023-08-11 11:27:42', 0, NULL, 0, NULL, 1),
(17956, 14087, '1', 'St.Anns Matric Hr Sec school', '', '', '2013', 87.20, '', 1, '2023-08-11 11:28:36', 0, NULL, 0, NULL, 1),
(17957, 14086, '3', 'University ', '', 'BCA', '2023', 78.00, '', 1, '2023-08-11 11:52:15', 0, NULL, 0, NULL, 1),
(17958, 14089, '3', 'University ', '', 'BCA', '2023', 69.00, '', 1, '2023-08-11 11:55:26', 0, NULL, 0, NULL, 1),
(17959, 14088, '3', 'Anna University ', '', 'Electrical and electronics engineering ', '2017', 6.10, '', 1, '2023-08-11 11:59:08', 0, NULL, 0, NULL, 1),
(17960, 14090, '3', 'Anna University ', '', 'Ba', '2023', 87.00, '', 1, '2023-08-11 12:22:11', 0, NULL, 0, NULL, 1),
(17961, 14091, '3', 'Madras University ', '', 'B com', '2022', 6.70, '', 1, '2023-08-11 12:38:38', 0, NULL, 0, NULL, 1),
(17962, 14093, '3', 'Anna University ', '', 'B.E', '2022', 86.40, '', 1, '2023-08-11 12:59:16', 0, NULL, 0, NULL, 1),
(17963, 14092, '3', 'Anna university ', '', 'BE', '2022', 86.30, '', 1, '2023-08-11 01:01:58', 0, NULL, 0, NULL, 1),
(17964, 14094, '3', 'M.A.M College of engineering ', '', 'B.E', '2022', 8.30, '', 1, '2023-08-11 01:27:26', 0, NULL, 0, NULL, 1),
(17965, 14095, '3', 'St.peter\'s college of engineering and technology ', '', 'BE', '2017', 72.50, '', 1, '2023-08-11 02:42:13', 0, NULL, 0, NULL, 1),
(17966, 14097, '4', 'ethiraj college for women', '', 'm.a human resource management', '2023', 65.00, '', 1, '2023-08-12 10:03:26', 0, NULL, 0, NULL, 1),
(17967, 14097, '3', 'justice basheer ahmad syeed college', '', 'b a political science', '2021', 73.00, '', 1, '2023-08-12 10:04:32', 0, NULL, 0, NULL, 1),
(17968, 14098, '1', 'cbse', '', '', '2017', 82.00, '', 1, '2023-08-12 10:20:22', 0, NULL, 0, NULL, 1),
(17969, 14098, '2', 'cbse', '', '', '2019', 70.00, '', 1, '2023-08-12 10:20:42', 0, NULL, 0, NULL, 1),
(17970, 14098, '3', 'anna university', '', 'Bachelor of engineering', '2023', 88.00, '', 1, '2023-08-12 10:21:32', 0, NULL, 0, NULL, 1),
(17971, 14099, '3', 'Lakshmi bangaru arts and science college ', '', 'Bca', '2023', 70.00, '', 1, '2023-08-12 10:51:51', 0, NULL, 0, NULL, 1),
(17972, 14100, '1', 'State board', '', '', '2019', 60.00, '', 1, '2023-08-12 11:33:47', 0, NULL, 0, NULL, 1),
(17973, 14102, '4', 'Thiruvallur ', '', 'M.com', '2020', 68.00, '', 1, '2023-08-12 12:08:03', 0, NULL, 0, NULL, 1),
(17974, 14103, '4', 'Sri Venkateswara University ', '', 'MSC', '2019', 72.00, '', 1, '2023-08-12 12:09:00', 0, NULL, 0, NULL, 1),
(17975, 14103, '3', 'Sri Venkateswara University ', '', 'BSc', '2017', 82.00, '', 1, '2023-08-12 12:09:19', 0, NULL, 0, NULL, 1),
(17976, 14101, '3', 'JBAS college for women ', '', 'BA Corp Economics ', '2016', 80.00, '', 1, '2023-08-12 12:13:38', 0, NULL, 0, NULL, 1),
(17977, 14104, '3', 'Anna University ( Annai Mira engineering College of technology)', '', 'BE', '2019', 65.00, '', 1, '2023-08-12 01:05:45', 0, NULL, 0, NULL, 1),
(17978, 14104, '2', 'GBHS ', '', '', '2015', 80.00, '', 1, '2023-08-12 01:06:22', 0, NULL, 0, NULL, 1),
(17979, 14104, '1', 'GBHS', '', '', '2013', 80.00, '', 1, '2023-08-12 01:06:51', 0, NULL, 0, NULL, 1),
(17980, 14105, '3', 'Madras university', '', 'B. Com', '2023', 76.00, '', 1, '2023-08-12 03:22:26', 0, NULL, 0, NULL, 1),
(17981, 14107, '3', 'Anna University ', '', 'BE Ece', '2020', 75.00, '', 1, '2023-08-14 09:55:21', 0, NULL, 0, NULL, 1),
(17982, 14108, '4', 'Anna university ', '', 'MCA', '2023', 82.00, '', 1, '2023-08-14 09:57:15', 0, NULL, 0, NULL, 1),
(17983, 14109, '4', 'Anna University', '', 'MCA', '2023', 84.00, '', 1, '2023-08-14 09:58:29', 0, NULL, 0, NULL, 1),
(17984, 14109, '3', 'Bharathidasan University', '', 'BCA', '2020', 81.00, '', 1, '2023-08-14 09:59:59', 0, NULL, 0, NULL, 1),
(17985, 14106, '4', 'Anna University ', '', 'MCA ', '2023', 85.00, '', 1, '2023-08-14 10:01:27', 0, NULL, 0, NULL, 1),
(17986, 14106, '3', 'Periyar maniammai University ', '', 'BCA', '2021', 67.00, '', 1, '2023-08-14 10:02:16', 0, NULL, 0, NULL, 1),
(17987, 14110, '3', 'Madras University ', '', 'Bsc Computer science ', '2022', 60.00, '', 1, '2023-08-14 10:52:36', 0, NULL, 0, NULL, 1),
(17988, 14111, '3', 'Madras University ', '', 'BSC computer science ', '2022', 67.00, '', 1, '2023-08-14 11:07:11', 0, NULL, 0, NULL, 1),
(17989, 14113, '3', 'university of madras', '', 'bca', '2023', 78.89, '', 1, '2023-08-14 12:56:57', 0, NULL, 0, NULL, 1),
(17990, 14114, '4', 'Bharathidasan University ', '', 'Mcom', '2021', 77.00, '', 1, '2023-08-14 04:26:02', 0, NULL, 0, NULL, 1),
(17991, 14115, '1', 'cbhs school', '', '', '2010', 50.00, '', 1, '2023-08-16 01:19:25', 0, NULL, 0, NULL, 1),
(17992, 14115, '2', 'nios', '', '', '2020', 70.00, '', 1, '2023-08-16 01:20:07', 0, NULL, 0, NULL, 1),
(17993, 14115, '3', 'sv University', '', 'b.com', '2025', 60.00, '', 1, '2023-08-16 01:21:39', 0, NULL, 0, NULL, 1),
(17994, 14116, '3', 'Madras university ', '', 'B.com', '2018', 56.00, '', 1, '2023-08-16 08:53:56', 0, NULL, 0, NULL, 1),
(17995, 14118, '3', 'university of madras', '', 'Bachelors of business administration', '2021', 56.00, '', 1, '2023-08-16 10:45:57', 0, NULL, 0, NULL, 1),
(17996, 14117, '3', 'University ', '', 'BSC CS', '2023', 85.00, '', 1, '2023-08-16 11:23:50', 0, NULL, 0, NULL, 1),
(17997, 14119, '1', 'State board ', '', '', '2018', 60.00, '', 1, '2023-08-16 11:45:47', 0, NULL, 0, NULL, 1),
(17998, 14119, '2', 'State board ', '', '', '2020', 49.00, '', 1, '2023-08-16 11:46:18', 0, NULL, 0, NULL, 1),
(17999, 14119, '3', 'Madras University ', '', 'BBA', '2023', 50.00, '', 1, '2023-08-16 11:47:30', 0, NULL, 0, NULL, 1),
(18000, 14120, '3', ' University of Madras ', '', 'B.A.English', '2023', 64.00, '', 1, '2023-08-16 12:26:30', 0, NULL, 0, NULL, 1),
(18001, 14122, '3', 'Bharathidasan', '', 'Bio tech', '2022', 75.00, '', 1, '2023-08-16 01:36:36', 0, NULL, 0, NULL, 1),
(18002, 14124, '3', 'Bharathidasan', '', 'Bio tech', '2022', 75.00, '', 1, '2023-08-16 01:46:39', 0, NULL, 0, NULL, 1),
(18003, 14125, '3', 'Madras university ', '', 'B.Sc.,Maths', '2020', 85.00, '', 1, '2023-08-16 01:55:37', 0, NULL, 0, NULL, 1),
(18004, 14126, '3', 'university', '', 'BA Economics', '2023', 78.00, '', 1, '2023-08-16 02:47:37', 0, NULL, 0, NULL, 1),
(18005, 14127, '2', 'Government girls High sec school ', '', '', '2014', 75.00, '', 1, '2023-08-16 03:12:27', 0, NULL, 0, NULL, 1),
(18006, 14128, '2', 'State board ', '', '', '2018', 50.00, '', 1, '2023-08-16 05:58:10', 0, NULL, 0, NULL, 1),
(18007, 14130, '3', 'Alagappa university', '', 'BA ENGLISH', '2022', 67.67, '', 1, '2023-08-16 06:39:49', 0, NULL, 0, NULL, 1),
(18008, 14131, '4', 'Ms college ', '', 'Engineering ', '2019', 60.00, '', 1, '2023-08-16 06:44:48', 0, NULL, 0, NULL, 1),
(18009, 14132, '3', 'Holy cross college Tiruchirapalli ', '', 'BBA', '2022', 65.00, '', 1, '2023-08-16 06:51:56', 0, NULL, 0, NULL, 1),
(18010, 14133, '3', 'Holy Cross College Trichy ', '', 'B.sc Mathematics ', '2022', 73.00, '', 1, '2023-08-16 06:55:05', 0, NULL, 0, NULL, 1),
(18011, 14134, '3', 'Madras University ', '', 'B.C.A', '2018', 65.00, '', 1, '2023-08-17 09:52:51', 0, NULL, 0, NULL, 1),
(18012, 14135, '3', 'SRM UNIVERSITY ', '', 'B.com', '2023', 75.00, '', 1, '2023-08-17 10:31:10', 0, NULL, 0, NULL, 1),
(18013, 14137, '1', 'State board ', '', '', '2017', 82.00, '', 1, '2023-08-17 10:33:42', 0, NULL, 0, NULL, 1),
(18014, 14137, '2', 'State board ', '', '', '2019', 52.00, '', 1, '2023-08-17 10:33:58', 0, NULL, 0, NULL, 1),
(18015, 14138, '1', 'State board ', '', '', '2017', 89.00, '', 1, '2023-08-17 10:34:15', 0, NULL, 0, NULL, 1),
(18016, 14137, '3', 'Anna University ', '', 'B.tech Information Technology ', '2023', 79.90, '', 1, '2023-08-17 10:34:34', 0, NULL, 0, NULL, 1),
(18017, 14138, '2', 'State board ', '', '', '2019', 68.00, '', 1, '2023-08-17 10:34:53', 0, NULL, 0, NULL, 1),
(18018, 14138, '3', 'Anna University ', '', 'B Tech information technology ', '2023', 80.00, '', 1, '2023-08-17 10:35:38', 0, NULL, 0, NULL, 1),
(18019, 14136, '3', 'Madras University ', '', 'B.sc Microbiology ', '2021', 60.00, '', 1, '2023-08-17 10:56:03', 0, NULL, 0, NULL, 1),
(18020, 14140, '4', 'Anna University ', '', 'MBA ', '2022', 81.00, '', 1, '2023-08-17 11:01:21', 0, NULL, 0, NULL, 1),
(18021, 14141, '3', 'Panimalar engineering college ( Affiliated to Anna University )', '', 'b.E ( CSE )', '2023', 9.14, '', 1, '2023-08-17 11:47:14', 0, NULL, 0, NULL, 1),
(18022, 14142, '4', 'University of Madras ', '', 'MBA', '2021', 80.00, '', 1, '2023-08-17 11:48:45', 0, NULL, 0, NULL, 1),
(18023, 14143, '3', 'University of madras', '', 'Bsc(computer science)', '2009', 62.00, '', 1, '2023-08-17 11:56:59', 0, NULL, 0, NULL, 1),
(18024, 14144, '3', 'Anna University ', '', 'B.E', '2021', 7.33, '', 1, '2023-08-17 12:08:06', 0, NULL, 0, NULL, 1),
(18025, 14145, '3', 'Anna', '', 'B.tech', '2017', 72.00, '', 1, '2023-08-17 12:11:53', 0, NULL, 0, NULL, 1),
(18026, 14139, '3', 'University of madras ', '', 'B.A English ', '2022', 58.00, '', 1, '2023-08-17 12:13:46', 0, NULL, 0, NULL, 1),
(18027, 14146, '3', 'Anna university', '', 'BE', '2022', 79.00, '', 1, '2023-08-17 12:23:56', 0, NULL, 0, NULL, 1),
(18028, 14147, '3', 'madras University', '', 'ba', '2020', 61.00, '', 1, '2023-08-17 12:28:37', 0, NULL, 0, NULL, 1),
(18029, 14148, '3', 'Anna University ', '', 'Bachelor Of Engineering', '2023', 83.50, '', 1, '2023-08-17 12:38:16', 0, NULL, 0, NULL, 1),
(18030, 14148, '2', 'Tamil Nadu State Board', '', '', '2019', 74.50, '', 1, '2023-08-17 12:38:51', 0, NULL, 0, NULL, 1),
(18031, 14148, '1', 'Tamil Nadu State Board ', '', '', '2017', 93.00, '', 1, '2023-08-17 12:39:22', 0, NULL, 0, NULL, 1),
(18032, 14149, '3', 'Madras University ', '', 'Bsc cs', '2023', 76.00, '', 1, '2023-08-17 12:52:07', 0, NULL, 0, NULL, 1),
(18033, 14150, '3', 'Anna university ', '', 'Bachelor of computer Applications BCA', '2022', 80.00, '', 1, '2023-08-17 02:51:16', 0, NULL, 0, NULL, 1),
(18034, 14151, '4', 'madras university ', '', 'mba', '2022', 61.00, '', 1, '2023-08-17 02:56:29', 0, NULL, 0, NULL, 1),
(18035, 14152, '3', 'madra univer ', '', 'bcom', '2019', 60.00, '', 1, '2023-08-17 03:01:45', 0, NULL, 0, NULL, 1),
(18036, 14155, '4', 'BHARATHIYAR UNIVERSITY', '', 'MBA', '2023', 70.00, '', 1, '2023-08-17 06:56:24', 0, NULL, 0, NULL, 1),
(18037, 14156, '4', 'Barathaiyar University ', '', 'Master of business administration ', '2023', 72.30, '', 1, '2023-08-17 06:56:55', 0, NULL, 0, NULL, 1),
(18038, 14155, '3', 'MANONMANIAM SUNDARANAR UNIVERSITY ', '', 'B.COM', '2021', 65.33, '', 1, '2023-08-17 06:57:05', 0, NULL, 0, NULL, 1),
(18039, 14155, '2', 'SRI JAYENDRA SARASWATI SWAMIGAL GOLDEN JUBILEE SCHOOL, TIRUNELVELI ', '', '', '2018', 75.50, '', 1, '2023-08-17 06:57:23', 0, NULL, 0, NULL, 1),
(18040, 14156, '3', 'Madras University ', '', 'Bachelor of commerce ', '2021', 61.30, '', 1, '2023-08-17 06:57:25', 0, NULL, 0, NULL, 1),
(18041, 14155, '1', 'SARATHA MATRICULATION SCHOOL ', '', '', '2016', 81.00, '', 1, '2023-08-17 06:57:38', 0, NULL, 0, NULL, 1),
(18042, 14156, '2', 'Sri jayendra higher secondary school ', '', '', '2018', 49.00, '', 1, '2023-08-17 06:58:08', 0, NULL, 0, NULL, 1),
(18043, 14156, '1', 'Scism matric higher secondary school ', '', '', '2016', 54.00, '', 1, '2023-08-17 06:58:45', 0, NULL, 0, NULL, 1),
(18044, 14158, '3', 'Madras university', '', 'B. Com (general) ', '2023', 71.00, '', 1, '2023-08-18 10:35:36', 0, NULL, 0, NULL, 1),
(18045, 14160, '1', 'Govt girls highschool,sathyavedu', '', '', '2015', 63.00, '', 1, '2023-08-18 10:56:36', 0, NULL, 0, NULL, 1),
(18046, 14160, '2', 'Govt Jr college, sathyavedu ', '', '', '2018', 83.00, '', 1, '2023-08-18 10:57:27', 0, NULL, 0, NULL, 1),
(18047, 14160, '3', 'Gokula Krishna college of engineering ', '', 'Btech( csc)', '2022', 75.00, '', 1, '2023-08-18 10:58:29', 0, NULL, 0, NULL, 1),
(18048, 14161, '3', 'Jawahar engineering college', '', 'BE', '2020', 63.00, '', 1, '2023-08-18 11:01:24', 0, NULL, 0, NULL, 1),
(18049, 14157, '3', 'kingston engineering college', '', 'be', '2022', 61.00, '', 1, '2023-08-18 11:24:40', 0, NULL, 0, NULL, 1),
(18050, 14163, '3', 'Bishop Heber College ', '', 'Bsc', '2022', 72.00, '', 1, '2023-08-18 11:39:14', 0, NULL, 0, NULL, 1),
(18051, 14164, '1', 'State board', '', 'MCA', '2016', 92.00, '', 1, '2023-08-18 11:51:41', 1, '2023-08-18 12:00:26', 0, NULL, 0),
(18052, 14164, '2', 'State board ', '', '', '2018', 63.00, '', 1, '2023-08-18 11:52:16', 0, NULL, 0, NULL, 1),
(18053, 14164, '3', 'Bharathidasan University ', '', 'B.Sc Computer science ', '2021', 77.00, '', 1, '2023-08-18 11:52:49', 0, NULL, 0, NULL, 1),
(18054, 14164, '4', 'Bharathidasan University ', '', 'MCA', '2023', 79.00, '', 1, '2023-08-18 11:53:21', 0, NULL, 0, NULL, 1),
(18055, 14164, '1', 'State board ', '', '', '2016', 92.00, '', 1, '2023-08-18 12:00:54', 0, NULL, 0, NULL, 1),
(18056, 14165, '1', 'State Board ', '', '', '2016', 87.00, '', 1, '2023-08-18 12:02:47', 0, NULL, 0, NULL, 1),
(18057, 14165, '2', 'State Board ', '', '', '2018', 71.50, '', 1, '2023-08-18 12:04:12', 0, NULL, 0, NULL, 1),
(18058, 14165, '3', 'Bharathidasan', '', 'B.Sc Computer Science ', '2021', 85.00, '', 1, '2023-08-18 12:05:02', 0, NULL, 0, NULL, 1),
(18059, 14165, '4', 'Bharathidasan ', '', 'MCA', '2021', 87.00, '', 1, '2023-08-18 12:05:41', 0, NULL, 0, NULL, 1),
(18060, 14162, '3', 'jntua university', '', 'b.tech', '2023', 65.00, '', 1, '2023-08-18 12:15:25', 0, NULL, 0, NULL, 1),
(18061, 14166, '3', 'Panimalar ', '', 'BE mechanical ', '2019', 65.00, '', 1, '2023-08-18 12:20:19', 0, NULL, 0, NULL, 1),
(18062, 14167, '3', 'Madras University ', '', 'B.sc Chemistry ', '2015', 65.00, '', 1, '2023-08-18 12:27:13', 0, NULL, 0, NULL, 1),
(18063, 14154, '5', 'Anna University ', '', 'Civil engineering ', '2022', 81.00, '', 1, '2023-08-18 01:27:58', 0, NULL, 0, NULL, 1),
(18064, 14173, '4', 'Anna University ', '', 'Master of Science ', '2020', 80.00, '', 1, '2023-08-19 09:49:28', 0, NULL, 0, NULL, 1),
(18065, 14173, '3', 'Loyola College ', '', 'Bachelor of Science ', '2018', 66.00, '', 1, '2023-08-19 09:50:02', 0, NULL, 0, NULL, 1),
(18066, 14175, '3', 'Anna University ', '', 'B.E.', '2023', 78.00, '', 1, '2023-08-19 09:52:23', 0, NULL, 0, NULL, 1),
(18067, 14174, '3', 'Anna University ', '', 'Bachelor of engineering ', '2023', 70.00, '', 1, '2023-08-19 09:52:45', 0, NULL, 0, NULL, 1),
(18068, 14171, '3', 'Tamilnadu Dr ambedkar law University ', '', 'BA,LLB', '2022', 60.00, '', 1, '2023-08-19 10:04:53', 0, NULL, 0, NULL, 1),
(18069, 14176, '3', 'Panimalar Institute of Technology ', '', 'B.E', '2023', 80.00, '', 1, '2023-08-19 10:47:01', 0, NULL, 0, NULL, 1),
(18070, 14177, '3', 'Madras university ', '', 'BCA', '2023', 68.00, '', 1, '2023-08-19 11:03:21', 0, NULL, 0, NULL, 1),
(18071, 14178, '3', 'University of Madras ', '', 'B.com general ', '2023', 65.00, '', 1, '2023-08-19 11:18:08', 0, NULL, 0, NULL, 1),
(18072, 14179, '3', 'Annai veilankanni\'s college for women ', '', 'BCA', '2022', 85.00, '', 1, '2023-08-19 12:15:43', 0, NULL, 0, NULL, 1),
(18073, 14179, '4', 'Sathyabama institute science and technology ', '', 'MBA (Hr and marketing)', '2024', 70.00, '', 1, '2023-08-19 12:16:28', 0, NULL, 0, NULL, 1),
(18074, 14179, '2', 'St. Joseph\'s mat higher secondary school ', '', '', '2019', 67.00, '', 1, '2023-08-19 12:17:10', 0, NULL, 0, NULL, 1),
(18075, 14179, '1', 'St. Josephs mat higher secondary school ', '', '', '2017', 86.00, '', 1, '2023-08-19 12:17:41', 0, NULL, 0, NULL, 1),
(18076, 14180, '3', 'Madras university', '', 'B.A.ECONOMICS', '2021', 60.00, '', 1, '2023-08-19 12:26:23', 0, NULL, 0, NULL, 1),
(18077, 14181, '1', 'State board ', '', '', '2005', 59.00, '', 1, '2023-08-19 12:33:15', 0, NULL, 0, NULL, 1),
(18078, 14181, '2', 'State board ', '', '', '2007', 60.00, '', 1, '2023-08-19 12:34:05', 0, NULL, 0, NULL, 1),
(18079, 14181, '3', 'D. B. Jain college ', '', 'BCA ', '2010', 68.00, '', 1, '2023-08-19 12:35:42', 0, NULL, 0, NULL, 1),
(18080, 14181, '4', 'Madras University ', '', 'MBA (HR)', '2015', 57.00, '', 1, '2023-08-19 12:36:23', 0, NULL, 0, NULL, 1),
(18081, 14182, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 70.00, '', 1, '2023-08-19 12:43:08', 0, NULL, 0, NULL, 1),
(18082, 14184, '3', 'Anna University ', '', 'B.E-Biomedical Engineering ', '2023', 8.50, '', 1, '2023-08-19 01:08:44', 0, NULL, 0, NULL, 1),
(18083, 14183, '3', 'Anna university', '', 'B. E - Biomedical Engineering', '2023', 8.50, '', 1, '2023-08-19 01:08:44', 0, NULL, 0, NULL, 1),
(18084, 14185, '3', 'ALAGAPPA UNIVERSITY ', '', 'BCA ', '2023', 78.00, '', 1, '2023-08-19 01:16:17', 0, NULL, 0, NULL, 1),
(18085, 14187, '3', 'Vels University ', '', 'BE-EEE', '2023', 80.00, '', 1, '2023-08-19 02:21:19', 0, NULL, 0, NULL, 1),
(18086, 14187, '5', 'Aalim Muhammad saligh polytechnic college ', '', 'DEEE', '2018', 60.00, '', 1, '2023-08-19 02:22:10', 0, NULL, 0, NULL, 1),
(18087, 14188, '3', 'JNTU Kakinada', '', 'Mechanical Engineering', '2022', 65.00, '', 1, '2023-08-19 02:35:58', 0, NULL, 0, NULL, 1),
(18088, 14188, '5', 'APSBTET', '', 'Mechanical Engineering ', '2018', 71.00, '', 1, '2023-08-19 02:36:43', 0, NULL, 0, NULL, 1),
(18089, 14188, '2', 'AP SSC ', '', '', '2014', 67.00, '', 1, '2023-08-19 02:37:14', 0, NULL, 0, NULL, 1),
(18090, 14189, '3', 'Hindustan college of arts and science', '', 'BSC ELECTRONIC MEDIA', '2022', 80.00, '', 1, '2023-08-19 02:50:25', 0, NULL, 0, NULL, 1),
(18091, 14196, '3', 'Madras University ', '', '', '2018', 82.00, '', 1, '2023-08-20 11:33:13', 0, NULL, 0, NULL, 1),
(18092, 14196, '2', 'State Board ', '', 'Bsc Computer Science ', '2015', 82.00, '', 1, '2023-08-20 11:34:18', 0, NULL, 0, NULL, 1),
(18093, 14196, '1', 'State Board ', '', '', '2013', 91.00, '', 1, '2023-08-20 11:34:42', 0, NULL, 0, NULL, 1),
(18094, 14198, '3', 'Hindustan college of arts and science, coimbatore ', '', 'B.A English ', '2023', 60.00, '', 1, '2023-08-20 07:33:45', 0, NULL, 0, NULL, 1),
(18095, 14199, '3', 'anna University ', '', 'b.e production', '2023', 75.00, '', 1, '2023-08-20 10:12:11', 0, NULL, 0, NULL, 1),
(18096, 14200, '3', 'Alagappa University ', '', 'Bachelor of science ', '2022', 82.00, '', 1, '2023-08-21 09:45:18', 0, NULL, 0, NULL, 1),
(18097, 14201, '3', 'Vinayaga mission engineering college ', '', 'B.tech IT', '2017', 7.28, '', 1, '2023-08-21 10:36:22', 0, NULL, 0, NULL, 1),
(18098, 14202, '3', 'Madras University ', '', 'Bsc', '2018', 82.00, '', 1, '2023-08-21 11:04:32', 0, NULL, 0, NULL, 1),
(18099, 14202, '2', 'State Board ', '', '', '2015', 78.00, '', 1, '2023-08-21 11:04:53', 0, NULL, 0, NULL, 1),
(18100, 14194, '3', 'vels university ', '', 'bsc computer science ', '2023', 71.00, '', 1, '2023-08-21 11:05:00', 0, NULL, 0, NULL, 1),
(18101, 14202, '1', 'State Board ', '', '', '2013', 88.00, '', 1, '2023-08-21 11:05:21', 0, NULL, 0, NULL, 1),
(18102, 14203, '3', 'vels university', '', 'bsc.Computer science', '2023', 85.00, '', 1, '2023-08-21 11:06:10', 0, NULL, 0, NULL, 1),
(18103, 14205, '1', 'Tamil Nadu State board', '', '', '2017', 78.00, '', 1, '2023-08-21 11:32:41', 0, NULL, 0, NULL, 1),
(18104, 14205, '2', 'State board', '', '', '2019', 56.00, '', 1, '2023-08-21 11:33:07', 0, NULL, 0, NULL, 1),
(18105, 14205, '3', 'Bharathidasan University ', '', 'Bsc cs', '2022', 86.00, '', 1, '2023-08-21 11:33:38', 0, NULL, 0, NULL, 1),
(18106, 14206, '3', 'University of Madras ', '', '', '2022', 75.00, '', 1, '2023-08-21 11:53:01', 0, NULL, 0, NULL, 1),
(18107, 14207, '4', 'National College ', '', 'M.com', '2015', 70.00, '', 1, '2023-08-21 12:12:00', 0, NULL, 0, NULL, 1),
(18108, 14208, '3', 'University of madras', '', 'BBA ', '2021', 78.00, '', 1, '2023-08-21 12:22:47', 0, NULL, 0, NULL, 1),
(18109, 14186, '3', 'University of Madras ', '', 'BBA ', '2021', 78.00, '', 1, '2023-08-21 12:27:13', 0, NULL, 0, NULL, 1),
(18110, 14192, '3', 'Madras University ', '', 'B.com corporate secretaryship', '2019', 70.00, '', 1, '2023-08-21 12:44:34', 0, NULL, 0, NULL, 1),
(18111, 14191, '3', 'Madras University ', '', 'B.Sc', '2015', 74.00, '', 1, '2023-08-21 03:36:08', 0, NULL, 0, NULL, 1),
(18112, 14211, '3', 'Vels University ', '', 'Bsc computer science ', '2022', 76.00, '', 1, '2023-08-21 04:14:47', 0, NULL, 0, NULL, 1),
(18113, 14212, '3', 'Tiruvaluvar university ', '', 'Bsc cs', '2013', 65.00, '', 1, '2023-08-21 04:22:03', 0, NULL, 0, NULL, 1),
(18114, 14213, '3', 'Bharathiyar University ', '', 'BCA', '2021', 73.00, '', 1, '2023-08-21 05:20:23', 1, '2023-08-21 05:20:44', 0, NULL, 1),
(18115, 14216, '4', 'Government arts and science college, Sivakasi ', '', 'M.sc', '2021', 69.00, '', 1, '2023-08-21 08:08:15', 0, NULL, 0, NULL, 1),
(18116, 14214, '3', 'Madras University ', '', 'B.com(CS)', '2022', 75.00, '', 1, '2023-08-21 08:40:54', 0, NULL, 0, NULL, 1),
(18117, 14218, '3', 'bharathiar university', '', 'bachelor of computer applications ', '2021', 75.00, '', 1, '2023-08-21 09:46:07', 0, NULL, 0, NULL, 1),
(18118, 14219, '3', 'Madras University ', '', 'Bba', '2023', 71.00, '', 1, '2023-08-22 07:07:02', 0, NULL, 0, NULL, 1),
(18119, 14209, '3', 'Madras University ', '', 'Bsc. Computer science ', '2022', 69.00, '', 1, '2023-08-22 08:39:20', 0, NULL, 0, NULL, 1),
(18120, 14221, '3', 'University ', '', 'B.sc ( Electronic media)', '2022', 75.00, '', 1, '2023-08-22 10:30:29', 0, NULL, 0, NULL, 1),
(18121, 14204, '2', 'Private exam ', '', 'B.A', '2014', 49.60, '', 1, '2023-08-22 10:51:30', 0, NULL, 0, NULL, 1),
(18122, 14223, '3', 'Government arts and science college R.k.nagar, chennai-81', '', 'B. A. Economics', '2023', 63.00, '', 1, '2023-08-22 10:52:51', 0, NULL, 0, NULL, 1),
(18123, 14224, '3', 'Government arts and science college ', '', 'ba.economic ', '2023', 63.00, '', 1, '2023-08-22 10:54:21', 0, NULL, 0, NULL, 1),
(18124, 14222, '3', 'Queen Mary\'s College', '', 'B.A Economics', '2020', 70.00, '', 1, '2023-08-22 11:12:17', 0, NULL, 0, NULL, 1),
(18125, 14225, '3', 'MADRAS UNIVERSITY', '', 'B cOM GENERAL', '2023', 81.00, '', 1, '2023-08-22 11:21:14', 0, NULL, 0, NULL, 1),
(18126, 14195, '3', 'Madras University ', '', 'B. Com', '2023', 81.00, '', 1, '2023-08-22 11:22:15', 0, NULL, 0, NULL, 1),
(18127, 14220, '5', 'Murugappa polytechnic college', '', 'Electronic and communication engineering', '2019', 86.00, '', 1, '2023-08-22 11:26:50', 0, NULL, 0, NULL, 1),
(18128, 14217, '4', 'Madurai kamaraj University ', '', 'M. Sc maths', '2023', 74.00, '', 1, '2023-08-22 11:33:14', 1, '2023-08-22 11:33:48', 0, NULL, 0),
(18129, 14217, '3', 'Madurai Kamaraj University', '', 'B. Sc maths ', '2021', 74.00, '', 1, '2023-08-22 11:34:14', 1, '2023-08-22 11:38:10', 0, NULL, 0),
(18130, 14217, '4', 'Madurai Kamaraj university', '', 'M. Sc maths ', '2023', 74.00, '', 1, '2023-08-22 11:34:57', 1, '2023-08-22 11:38:07', 0, NULL, 0),
(18131, 14228, '3', 'Madras University ', '', 'Bcom', '2021', 75.00, '', 1, '2023-08-22 11:37:58', 0, NULL, 0, NULL, 1),
(18132, 14217, '1', 'Kamma mahajana trust girls higher secondary school', '', '', '2016', 89.90, '', 1, '2023-08-22 11:39:21', 0, NULL, 0, NULL, 1),
(18133, 14217, '2', 'Kamma mahajana trust girls higher secondary school', '', '', '2018', 74.00, '', 1, '2023-08-22 11:40:19', 0, NULL, 0, NULL, 1),
(18134, 14217, '3', 'Madurai Kamaraj university', '', 'B. Sc maths ', '2021', 76.00, '', 1, '2023-08-22 11:40:50', 1, '2023-08-22 11:42:46', 0, NULL, 1),
(18135, 14226, '1', 'Board', '', '', '2017', 82.00, '', 1, '2023-08-22 11:40:52', 0, NULL, 0, NULL, 1),
(18136, 14217, '4', 'Madurai Kamaraj university', '', 'M. Sc maths ', '2023', 74.00, '', 1, '2023-08-22 11:41:08', 0, NULL, 0, NULL, 1),
(18137, 14226, '2', 'Board', '', '', '2019', 55.00, '', 1, '2023-08-22 11:41:24', 0, NULL, 0, NULL, 1),
(18138, 14226, '3', 'University ', '', 'BCA ', '2022', 75.00, '', 1, '2023-08-22 11:41:55', 0, NULL, 0, NULL, 1),
(18139, 14230, '3', 'Autonomous ', '', 'Bcom(corporate secretary)', '2019', 72.00, '', 1, '2023-08-22 12:06:38', 0, NULL, 0, NULL, 1),
(18140, 14231, '3', 'Anna University ', '', 'B.E', '2023', 7.20, '', 1, '2023-08-22 12:15:51', 0, NULL, 0, NULL, 1),
(18141, 14233, '3', 'University ', '', 'B.com', '2023', 75.00, '', 1, '2023-08-22 12:25:40', 0, NULL, 0, NULL, 1),
(18142, 14234, '3', 'Bharathidasan University ', '', 'Bsc.physics', '2022', 75.00, '', 1, '2023-08-22 12:33:43', 0, NULL, 0, NULL, 1),
(18143, 14235, '3', 'Karpagam institute of technology', '', 'BE CSE', '2022', 75.00, '', 1, '2023-08-22 12:51:56', 0, NULL, 0, NULL, 1),
(18144, 14215, '3', 'the quaide milleth college for men', '', 'b.com', '2022', 80.00, '', 1, '2023-08-22 01:01:07', 0, NULL, 0, NULL, 1),
(18145, 14229, '3', 'Gkm college of engineering and technology ', '', 'B.tech ', '2019', 70.00, '', 1, '2023-08-22 01:02:45', 0, NULL, 0, NULL, 1),
(18146, 14229, '2', 'Vidyodaya matriculation academy ', '', '', '2019', 72.00, '', 1, '2023-08-22 01:03:24', 0, NULL, 0, NULL, 1),
(18147, 14229, '1', 'Seventh day Adventist ', '', '', '2013', 84.00, '', 1, '2023-08-22 01:04:02', 0, NULL, 0, NULL, 1),
(18148, 14237, '5', 'state board of technical  education and training ', '', 'diploma', '2019', 74.00, '', 1, '2023-08-23 09:39:02', 0, NULL, 0, NULL, 1),
(18149, 14238, '3', 'Thiruvalluvar University ', '', 'B.sc physics ', '2022', 82.00, '', 1, '2023-08-23 09:48:46', 0, NULL, 0, NULL, 1),
(18150, 14241, '3', 'Madras University ', '', 'B. A Economics', '2020', 70.00, '', 1, '2023-08-23 11:27:06', 0, NULL, 0, NULL, 1),
(18151, 14242, '3', 'Anna University ', '', 'BE', '2023', 80.00, '', 1, '2023-08-23 11:49:29', 0, NULL, 0, NULL, 1),
(18152, 14242, '2', 'State board ', '', '', '2019', 69.00, '', 1, '2023-08-23 11:50:28', 0, NULL, 0, NULL, 1),
(18153, 14240, '3', 'Bharathiyar arts &Science college for women', '', 'BCA', '2022', 75.00, '', 1, '2023-08-23 12:00:53', 0, NULL, 0, NULL, 1),
(18154, 14245, '3', 'Madras University ', '', 'B.com(general)', '2021', 76.00, '', 1, '2023-08-23 12:02:56', 0, NULL, 0, NULL, 1),
(18155, 14239, '4', 'government arts and science college', '', 'msc', '2017', 6.92, '', 1, '2023-08-23 12:04:06', 0, NULL, 0, NULL, 1),
(18156, 14244, '5', 'University ', '', 'Diploma in Computer Engineering ', '2020', 80.00, '', 1, '2023-08-23 12:05:58', 0, NULL, 0, NULL, 1),
(18157, 14244, '3', 'University ', '', 'Bachelor of Computer Application ( Upto 2\'nd semes', '2024', 75.00, '', 1, '2023-08-23 12:07:11', 0, NULL, 0, NULL, 1),
(18158, 14246, '3', 'Periyar University ', '', 'B.Sc MATHEMATICS', '2022', 82.00, '', 1, '2023-08-23 12:20:27', 0, NULL, 0, NULL, 1),
(18159, 14243, '4', 'jamal mohamed college', '', 'msc', '2020', 74.00, '', 1, '2023-08-23 12:44:01', 0, NULL, 0, NULL, 1),
(18160, 14248, '1', 'state board', '', '', '2017', 86.60, '', 1, '2023-08-23 12:53:25', 0, NULL, 0, NULL, 1),
(18161, 14248, '2', 'state board', '', '', '2019', 58.50, '', 1, '2023-08-23 12:54:09', 0, NULL, 0, NULL, 1),
(18162, 14248, '3', 'autonomus', '', 'b.tech', '2023', 78.60, '', 1, '2023-08-23 12:55:17', 0, NULL, 0, NULL, 1),
(18163, 14247, '1', 'state board', '', '', '2017', 87.20, '', 1, '2023-08-23 12:57:38', 0, NULL, 0, NULL, 1),
(18164, 14247, '2', 'state board', '', '', '2019', 57.83, '', 1, '2023-08-23 12:58:10', 0, NULL, 0, NULL, 1),
(18165, 14247, '3', 'autonomous institute', '', 'btech', '2023', 75.60, '', 1, '2023-08-23 12:59:02', 0, NULL, 0, NULL, 1),
(18166, 14249, '2', 'Board', '', '', '2010', 76.00, '', 1, '2023-08-23 01:07:43', 0, NULL, 0, NULL, 1),
(18167, 14252, '3', 'Bhaktavatsalam memorial college for women ', '', 'B.Sc.Computer Science ', '2023', 76.85, '', 1, '2023-08-23 01:13:29', 0, NULL, 0, NULL, 1),
(18168, 14253, '3', 'Anna university chennai', '', 'B. Tech( IT) ', '2023', 79.80, '', 1, '2023-08-23 01:14:56', 0, NULL, 0, NULL, 1),
(18169, 14251, '3', 'Soka ikeda college ', '', 'B.Com general', '2023', 75.00, '', 1, '2023-08-23 01:26:46', 0, NULL, 0, NULL, 1),
(18170, 14256, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 80.00, '', 1, '2023-08-24 10:29:36', 0, NULL, 0, NULL, 1),
(18171, 14255, '3', 'd b jain college', '', 'b com', '2023', 79.00, '', 1, '2023-08-24 10:33:21', 0, NULL, 0, NULL, 1),
(18172, 14257, '3', 'Madars University ', '', '', '2023', 85.00, '', 1, '2023-08-24 10:34:12', 0, NULL, 0, NULL, 1),
(18173, 14258, '4', 'annai university', '', 'mca', '2023', 70.00, '', 1, '2023-08-24 11:48:07', 0, NULL, 0, NULL, 1),
(18174, 14250, '3', 'Government arts and science college RK NAGAR ', '', 'B com general ', '2023', 63.00, '', 1, '2023-08-24 11:51:37', 0, NULL, 0, NULL, 1),
(18175, 14259, '4', 'Arrupadai veedu institute of technology ', '', 'Mba', '2022', 80.00, '', 1, '2023-08-24 12:32:29', 0, NULL, 0, NULL, 1),
(18176, 14260, '3', 'bharathiar university', '', 'b.com', '2021', 76.00, '', 1, '2023-08-24 12:46:05', 0, NULL, 0, NULL, 1),
(18177, 14261, '3', 'the new college autonomous', '', 'bba', '2023', 70.00, '', 1, '2023-08-24 12:58:22', 0, NULL, 0, NULL, 1),
(18178, 14262, '3', 'Madras university ', '', 'B.com', '2023', 80.00, '', 1, '2023-08-24 01:20:18', 0, NULL, 0, NULL, 1),
(18179, 14263, '3', 'Anna University, trichy. ', '', 'Bachelor\'s of Engineering ', '2021', 7.50, '', 1, '2023-08-24 01:53:18', 0, NULL, 0, NULL, 1),
(18180, 14265, '3', 'Idhaya Engineering college for women', '', 'B. E', '2022', 80.00, '', 1, '2023-08-24 02:10:52', 0, NULL, 0, NULL, 1),
(18181, 14264, '3', 'University', '', 'BE', '2022', 77.00, '', 1, '2023-08-24 02:44:10', 0, NULL, 0, NULL, 1),
(18182, 14267, '3', 'University of Madras ', '', 'BBA', '2019', 75.00, '', 1, '2023-08-24 03:44:37', 0, NULL, 0, NULL, 1),
(18183, 14266, '4', 'bharathiyar university', '', 'mba', '2021', 78.00, '', 1, '2023-08-24 04:39:19', 0, NULL, 0, NULL, 1),
(18184, 14266, '3', 'bharathiyar university', '', 'b.com', '2019', 73.00, '', 1, '2023-08-24 04:45:22', 0, NULL, 0, NULL, 1),
(18185, 14266, '2', 'stateboard', '', '', '2016', 80.00, '', 1, '2023-08-24 04:45:51', 0, NULL, 0, NULL, 1),
(18186, 14266, '1', 'stateboard', '', '', '2014', 83.50, '', 1, '2023-08-24 04:46:18', 0, NULL, 0, NULL, 1),
(18187, 14268, '3', 'MADRAS UNIVERSITY ', '', 'BBA', '2020', 65.00, '', 1, '2023-08-25 10:15:52', 0, NULL, 0, NULL, 1),
(18188, 14271, '3', 'Maders University', '', 'B.SC Computer Science', '2023', 75.00, '', 1, '2023-08-25 10:40:57', 0, NULL, 0, NULL, 1),
(18189, 14269, '3', 'Madras ', '', 'B.com general', '2021', 90.00, '', 1, '2023-08-25 10:45:47', 0, NULL, 0, NULL, 1),
(18190, 14270, '3', 'Valliammal college for women ', '', 'B.com Bank Management ', '2023', 77.00, '', 1, '2023-08-25 10:48:03', 0, NULL, 0, NULL, 1),
(18191, 14272, '3', 'Dhanraj baid jain college', '', 'BSC computer science ', '2023', 71.60, '', 1, '2023-08-25 10:54:45', 0, NULL, 0, NULL, 1),
(18192, 14273, '1', 'Anna University ', '', 'BE(Cse)', '2023', 7.30, '', 1, '2023-08-25 12:11:59', 0, NULL, 0, NULL, 1),
(18193, 14273, '2', 'State board', '', '', '2019', 70.00, '', 1, '2023-08-25 12:12:38', 0, NULL, 0, NULL, 1),
(18194, 14273, '3', 'State board ', '', 'BE', '2017', 86.00, '', 1, '2023-08-25 12:13:21', 0, NULL, 0, NULL, 1),
(18195, 14274, '3', 'University of madras', '', 'B.com bank management ', '2023', 69.00, '', 1, '2023-08-25 12:14:44', 0, NULL, 0, NULL, 1),
(18196, 14275, '3', 'University of madras', '', 'Bachelor\'s in English literature', '2020', 62.00, '', 1, '2023-08-25 12:29:31', 0, NULL, 0, NULL, 1),
(18197, 14276, '3', 'University of madras', '', 'B.Com(CS)', '2020', 56.00, '', 1, '2023-08-25 12:35:01', 0, NULL, 0, NULL, 1),
(18198, 14282, '3', 'BHARATHIYAR UNIVERSITY ', '', 'BSC.computer science ', '2023', 78.00, '', 1, '2023-08-25 11:03:09', 0, NULL, 0, NULL, 1),
(18199, 14283, '3', 'As salam college off Engineering and technology', '', 'BE', '2023', 65.00, '', 1, '2023-08-26 08:57:03', 0, NULL, 0, NULL, 1),
(18200, 14285, '3', 'SRM', '', 'Bsc visual communication ', '2018', 60.00, '', 1, '2023-08-26 10:08:10', 0, NULL, 0, NULL, 1),
(18201, 14286, '4', 'Anna University ', '', 'MBA', '2019', 77.30, '', 1, '2023-08-26 10:43:06', 0, NULL, 0, NULL, 1),
(18202, 14288, '3', 'Madras University ', '', 'B.Sc', '2020', 80.00, '', 1, '2023-08-26 11:07:40', 0, NULL, 0, NULL, 1),
(18203, 14291, '4', 'University of Madras ', '', 'Master of Information Technology ', '2023', 86.00, '', 1, '2023-08-26 11:26:01', 0, NULL, 0, NULL, 1),
(18204, 14291, '3', 'University of Madras ', '', 'BCA', '2021', 82.00, '', 1, '2023-08-26 11:26:22', 0, NULL, 0, NULL, 1),
(18205, 14291, '2', 'Tamilnadu board ', '', '', '2018', 85.00, '', 1, '2023-08-26 11:26:54', 0, NULL, 0, NULL, 1),
(18206, 14291, '1', 'Tamilnadu board ', '', '', '2016', 75.00, '', 1, '2023-08-26 11:27:20', 0, NULL, 0, NULL, 1),
(18207, 14292, '3', 'Panimalar institute of technology ', '', 'B.E', '2023', 76.00, '', 1, '2023-08-26 11:30:42', 0, NULL, 0, NULL, 1),
(18208, 14292, '2', 'Sboa.Matric.Hr.sec.School', '', '', '2019', 66.00, '', 1, '2023-08-26 11:31:14', 0, NULL, 0, NULL, 1),
(18209, 14292, '1', 'St.Thresas .matri.hr.sec.school', '', '', '2017', 92.00, '', 1, '2023-08-26 11:31:43', 0, NULL, 0, NULL, 1),
(18210, 14172, '2', 'Higher secondry', '', '', '2013', 50.00, '', 1, '2023-08-26 11:40:00', 0, NULL, 0, NULL, 1),
(18211, 14289, '3', 'Periyar university salem', '', 'BBA', '2022', 80.00, '', 1, '2023-08-26 12:11:44', 0, NULL, 0, NULL, 1),
(18212, 14293, '3', 'PANIMALAR ENGINEERING COLLEGE', '', 'BACHELOR OF ENGINEERING ', '2023', 92.00, '', 1, '2023-08-26 12:13:03', 0, NULL, 0, NULL, 1),
(18213, 14293, '2', 'STATE BOARD OF TAMIL NADU', '', '', '2019', 74.80, '', 1, '2023-08-26 12:13:32', 0, NULL, 0, NULL, 1),
(18214, 14293, '1', 'STATE BOARD OF TAMILNADU ', '', '', '2017', 94.20, '', 1, '2023-08-26 12:13:56', 0, NULL, 0, NULL, 1),
(18215, 14294, '3', 'Madras university', '', 'B.B.A', '2020', 72.00, '', 1, '2023-08-26 12:23:34', 0, NULL, 0, NULL, 1),
(18216, 14295, '3', 'ANNA UNIVERSITY ', '', 'B.E / CIVIL ', '2020', 64.00, '', 1, '2023-08-26 12:42:08', 0, NULL, 0, NULL, 1),
(18217, 14297, '3', 'Madras University ', '', 'Bcom accounting and finance ', '2022', 73.00, '', 1, '2023-08-28 10:30:18', 0, NULL, 0, NULL, 1),
(18218, 14299, '3', 'Thiruvalluvar University ', '', 'B.com ( general)', '2018', 74.00, '', 1, '2023-08-28 11:30:14', 0, NULL, 0, NULL, 1),
(18219, 14300, '4', 'Madras University ', '', 'Mcom', '2022', 79.00, '', 1, '2023-08-28 12:02:49', 0, NULL, 0, NULL, 1),
(18220, 14300, '4', 'Madras University ', '', 'Mcom', '2022', 79.00, '', 1, '2023-08-28 12:03:18', 0, NULL, 0, NULL, 1),
(18221, 14298, '3', 'Medras university ', '', 'B.com', '2019', 60.00, '', 1, '2023-08-28 12:24:57', 0, NULL, 0, NULL, 1),
(18222, 14301, '3', 'The American college ', '', 'Bachelor of commerce ', '2016', 60.00, '', 1, '2023-08-28 01:32:17', 0, NULL, 0, NULL, 1),
(18223, 14302, '3', 'skr college of engineering', '', 'btech', '2014', 80.00, '', 1, '2023-08-28 02:49:05', 0, NULL, 0, NULL, 1),
(18224, 14303, '3', 'Madras University ', '', 'B.com general', '2023', 80.00, '', 1, '2023-08-29 09:26:48', 0, NULL, 0, NULL, 1),
(18225, 14304, '3', 'Bharathidhasan university ', '', 'B. Com', '2023', 71.00, '', 1, '2023-08-29 09:34:36', 0, NULL, 0, NULL, 1),
(18226, 14305, '3', 'Bharathidhaasan University ', '', 'B com', '2022', 78.00, '', 1, '2023-08-29 09:44:18', 0, NULL, 0, NULL, 1),
(18227, 14169, '4', 'Annamalai university', '', 'M.A English', '2021', 75.00, '', 1, '2023-08-29 09:53:50', 0, NULL, 0, NULL, 1),
(18228, 14307, '3', 'Anna University ', '', 'B E', '2022', 79.00, '', 1, '2023-08-29 10:03:13', 0, NULL, 0, NULL, 1),
(18229, 14307, '2', 'State board', '', '', '2018', 69.00, '', 1, '2023-08-29 10:03:37', 0, NULL, 0, NULL, 1),
(18230, 14306, '5', 'mohamed sathak polytechnic collage', '', 'diploma in electrical electronic engineering', '2019', 70.00, '', 1, '2023-08-29 10:04:11', 0, NULL, 0, NULL, 1),
(18231, 14308, '3', 'University of Madras', '', 'B. Com (C S) ', '2020', 68.00, '', 1, '2023-08-29 10:34:45', 0, NULL, 0, NULL, 1),
(18232, 14309, '4', 'Bharathidasan', '', 'M. Com', '2023', 75.00, '', 1, '2023-08-29 10:56:12', 0, NULL, 0, NULL, 1),
(18233, 14310, '3', 'Madras University ', '', 'B Com', '2017', 60.00, '', 1, '2023-08-29 11:21:41', 0, NULL, 0, NULL, 1),
(18234, 14311, '3', 'Jaya Engineering College ', '', 'Bachelor of Engineering (B.E) ', '2023', 86.00, '', 1, '2023-08-29 12:52:03', 0, NULL, 0, NULL, 1),
(18235, 14313, '3', 'Madras University ', '', 'B.com', '2020', 56.00, '', 1, '2023-08-29 04:50:34', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18236, 14314, '5', 'Sri venkateshwara polytechnic college ', '', 'DECE', '2017', 91.00, '', 1, '2023-08-29 06:15:15', 0, NULL, 0, NULL, 1),
(18237, 14314, '1', 'Govt.hir.sec.school', '', '', '2013', 80.00, '', 1, '2023-08-29 06:15:51', 0, NULL, 0, NULL, 1),
(18238, 14314, '2', 'Thiruvalluvar.hir.sec.school', '', '', '2015', 55.00, '', 1, '2023-08-29 06:16:18', 0, NULL, 0, NULL, 1),
(18239, 14316, '3', 'Periyar maniammai University of science and technology ', '', 'BBA', '2023', 8.23, '', 1, '2023-08-30 11:13:23', 0, NULL, 0, NULL, 1),
(18240, 14317, '4', 'B S Abdur Rahman Crescent Institute of Science And technology ', '', 'M A', '2023', 70.00, '', 1, '2023-08-30 12:04:04', 0, NULL, 0, NULL, 1),
(18241, 14317, '3', 'B s Abdul rahamn crescent institute of science and technology ', '', 'BA', '2021', 65.00, '', 1, '2023-08-30 12:05:10', 0, NULL, 0, NULL, 1),
(18242, 14318, '4', 'Anna University ', '', 'BE', '2023', 76.00, '', 1, '2023-08-30 12:08:03', 0, NULL, 0, NULL, 1),
(18243, 14319, '3', 'Alagappa University ', '', 'B.voc,Banking and financial services ', '2022', 71.00, '', 1, '2023-08-30 12:38:33', 0, NULL, 0, NULL, 1),
(18244, 14278, '3', 'Madras University ', '', 'B.com', '2017', 78.00, '', 1, '2023-08-30 12:39:54', 0, NULL, 0, NULL, 1),
(18245, 14320, '3', 'Madras University', '', 'B.com Corporate Secretaryship', '2016', 68.00, '', 1, '2023-08-30 03:54:58', 0, NULL, 0, NULL, 1),
(18246, 14321, '3', 'Madras University', '', 'B.Com', '2020', 68.00, '', 1, '2023-08-30 07:42:29', 0, NULL, 0, NULL, 1),
(18247, 14322, '3', 'bharathidasan university', '', 'BA,ENGLISH LITERATURE', '2022', 60.00, '', 1, '2023-08-31 11:23:57', 0, NULL, 0, NULL, 1),
(18248, 14323, '3', 'Azhagappa University ', '', 'Bachelor of Business administration ', '2022', 67.00, '', 1, '2023-08-31 11:25:58', 0, NULL, 0, NULL, 1),
(18249, 14324, '3', 'Madras University ', '', 'Bsc Computer science ', '2023', 80.00, '', 1, '2023-08-31 11:46:21', 0, NULL, 0, NULL, 1),
(18250, 14325, '3', 'Madras University ', '', 'B.com ', '2022', 73.00, '', 1, '2023-08-31 12:04:46', 0, NULL, 0, NULL, 1),
(18251, 14327, '3', 'University of Madras ', '', 'Bsc cs', '2023', 60.00, '', 1, '2023-08-31 12:05:36', 0, NULL, 0, NULL, 1),
(18252, 14326, '3', 'University ', '', 'BA economics ', '2021', 70.00, '', 1, '2023-08-31 12:29:52', 0, NULL, 0, NULL, 1),
(18253, 14328, '3', 'Madras of university ', '', 'BSC', '2020', 80.00, '', 1, '2023-08-31 12:36:53', 0, NULL, 0, NULL, 1),
(18254, 14329, '2', 'Board', '', '', '2017', 78.00, '', 1, '2023-08-31 12:38:47', 0, NULL, 0, NULL, 1),
(18255, 14330, '3', 'Bharathidasan University ', '', 'B.A economics ', '2023', 70.00, '', 1, '2023-09-01 11:00:54', 0, NULL, 0, NULL, 1),
(18256, 14332, '4', 'Madras University ', '', 'M.sc physics ', '2020', 68.00, '', 1, '2023-09-01 12:06:46', 0, NULL, 0, NULL, 1),
(18257, 14333, '3', 'Madras University', '', 'BSC computer science ', '2016', 70.00, '', 1, '2023-09-01 02:33:17', 0, NULL, 0, NULL, 1),
(18258, 14334, '3', 'Madras University ', '', '', '2019', 65.00, '', 1, '2023-09-01 03:44:51', 0, NULL, 0, NULL, 1),
(18259, 14336, '3', 'Autonomous ', '', 'B.A History ', '2021', 76.00, '', 1, '2023-09-01 05:45:40', 0, NULL, 0, NULL, 1),
(18260, 14337, '3', 'PAAVAI ENGINEERING COLLEGE ', '', 'BE.ECE', '2023', 78.00, '', 1, '2023-09-02 08:36:39', 0, NULL, 0, NULL, 1),
(18261, 14337, '2', 'State board ', '', '', '2019', 73.33, '', 1, '2023-09-02 08:36:57', 0, NULL, 0, NULL, 1),
(18262, 14337, '1', 'State board ', '', '', '2017', 86.00, '', 1, '2023-09-02 08:37:23', 0, NULL, 0, NULL, 1),
(18263, 14338, '3', 'Anna university ', '', 'BE', '2023', 70.00, '', 1, '2023-09-02 10:45:53', 0, NULL, 0, NULL, 1),
(18264, 14339, '3', 'Anna University ', '', 'BE', '2021', 77.00, '', 1, '2023-09-02 11:17:17', 0, NULL, 0, NULL, 1),
(18265, 14340, '3', 'thiruvalluvar university ', '', 'B.com', '2020', 60.00, '', 1, '2023-09-02 11:55:50', 0, NULL, 0, NULL, 1),
(18266, 14341, '2', 'State bord ', '', '', '2010', 49.00, '', 1, '2023-09-02 12:03:23', 0, NULL, 0, NULL, 1),
(18267, 14341, '1', 'State bord ', '', '', '2010', 64.00, '', 1, '2023-09-02 12:03:54', 0, NULL, 0, NULL, 1),
(18268, 14343, '3', 'Madras University ', '', 'BA economics ', '2020', 63.00, '', 1, '2023-09-04 10:34:55', 0, NULL, 0, NULL, 1),
(18269, 14344, '3', 'Msuniversity', '', 'B. Sc', '2023', 8.20, '', 1, '2023-09-04 11:04:46', 0, NULL, 0, NULL, 1),
(18270, 14345, '3', 'Madras University ', '', 'Bsc', '2022', 61.00, '', 1, '2023-09-04 11:43:58', 0, NULL, 0, NULL, 1),
(18271, 14346, '3', 'Madras university ', '', 'B.com general', '2023', 74.00, '', 1, '2023-09-04 12:01:52', 0, NULL, 0, NULL, 1),
(18272, 14347, '3', 'Madras University', '', 'Na Economics', '2023', 56.00, '', 1, '2023-09-04 12:08:57', 0, NULL, 0, NULL, 1),
(18273, 14349, '3', 'Bharathidasan ', '', 'Bsc', '2022', 81.00, '', 1, '2023-09-04 12:29:00', 0, NULL, 0, NULL, 1),
(18274, 14348, '3', 'easwari engineering college', '', 'be', '2021', 70.00, '', 108, '2023-09-04 12:41:56', 0, NULL, 0, NULL, 1),
(18275, 14342, '3', 'veltech ', '', 'BBA', '2023', 6.80, '', 104, '2023-09-04 12:50:54', 0, NULL, 0, NULL, 1),
(18276, 14331, '1', 'Bihar board ', '', '', '2015', 55.00, '', 1, '2023-09-04 03:15:13', 0, NULL, 0, NULL, 1),
(18277, 14351, '3', 'University of madras', '', 'B. Com', '2021', 85.00, '', 1, '2023-09-04 06:29:48', 0, NULL, 0, NULL, 1),
(18278, 14354, '3', 'Vels University ', '', 'BCA ', '2023', 72.00, '', 1, '2023-09-05 10:42:06', 0, NULL, 0, NULL, 1),
(18279, 14287, '3', 'Anna University ', '', 'BSC fashion designer ', '2017', 80.00, '', 1, '2023-09-05 10:51:51', 0, NULL, 0, NULL, 1),
(18280, 14355, '3', 'Ethiraj', '', 'B.A ECONOMICS ', '2012', 66.00, '', 1, '2023-09-05 11:21:32', 0, NULL, 0, NULL, 1),
(18281, 14356, '3', 'Madras University ', '', 'B Voc digital journalism ', '2020', 68.00, '', 1, '2023-09-05 11:28:46', 0, NULL, 0, NULL, 1),
(18282, 14357, '3', 'Bharath University ', '', 'Bsc', '2023', 78.00, '', 1, '2023-09-05 11:30:47', 0, NULL, 0, NULL, 1),
(18283, 14352, '3', 'ANNA UNIVERSITY', '', 'B.E ', '2008', 67.00, '', 1, '2023-09-05 11:50:07', 0, NULL, 0, NULL, 1),
(18284, 14358, '3', 'Madras University ', '', 'Bcom computer applications ', '2022', 67.00, '', 1, '2023-09-05 01:18:49', 0, NULL, 0, NULL, 1),
(18285, 14358, '2', 'St mathais Anglo Indian hr sec school ', '', '', '2019', 60.00, '', 1, '2023-09-05 01:20:06', 0, NULL, 0, NULL, 1),
(18286, 14358, '1', 'St mathais Anglo Indian school ', '', '', '2017', 70.00, '', 1, '2023-09-05 01:20:33', 0, NULL, 0, NULL, 1),
(18287, 14359, '4', 'Vels university', '', 'MCA', '2023', 80.00, '', 1, '2023-09-05 01:57:11', 0, NULL, 0, NULL, 1),
(18288, 14359, '3', 'Periyar University', '', 'B. Sc', '2020', 82.00, '', 1, '2023-09-05 01:58:07', 0, NULL, 0, NULL, 1),
(18289, 14353, '4', 'university', '', 'mba', '2022', 60.00, '', 1, '2023-09-05 03:03:35', 0, NULL, 0, NULL, 1),
(18290, 14360, '3', 'SRM University ', '', 'B.com ', '2021', 70.00, '', 1, '2023-09-05 03:20:05', 0, NULL, 0, NULL, 1),
(18291, 14362, '4', 'Panimalar UniversitY', '', 'MBA', '2023', 70.00, '', 85, '2023-09-06 11:14:49', 0, NULL, 0, NULL, 1),
(18292, 14363, '5', 'Bangalore University ', '', 'Ba', '2019', 52.00, '', 1, '2023-09-06 11:39:49', 0, NULL, 0, NULL, 1),
(18293, 14364, '4', 'Baharathiyar university', '', 'MBA', '2022', 7.53, '', 1, '2023-09-06 12:55:28', 0, NULL, 0, NULL, 1),
(18294, 14364, '3', 'Manonmanium sundranar university', '', 'B.com', '2019', 6.30, '', 1, '2023-09-06 12:56:39', 0, NULL, 0, NULL, 1),
(18295, 14365, '1', 'STATE BOARD', '', '', '2017', 83.20, '', 1, '2023-09-06 01:02:31', 1, '2023-09-06 01:03:54', 0, NULL, 0),
(18296, 14365, '2', 'STATE BOARD', '', '', '2019', 57.30, '', 1, '2023-09-06 01:04:24', 0, NULL, 0, NULL, 1),
(18297, 14366, '4', 'Anna University ', '', 'ME', '2021', 81.70, '', 1, '2023-09-06 01:26:25', 1, '2023-09-06 01:27:33', 0, NULL, 1),
(18298, 14366, '3', 'Anna University ', '', 'BE', '2017', 68.70, '', 1, '2023-09-06 01:27:17', 0, NULL, 0, NULL, 1),
(18299, 14368, '3', 'Bharathdasan university', '', 'B. Com', '2021', 69.00, '', 1, '2023-09-06 01:32:22', 0, NULL, 0, NULL, 1),
(18300, 14367, '4', 'Bharathidasan University', '', 'MBA (HR) ', '2023', 67.00, '', 1, '2023-09-06 01:32:42', 0, NULL, 0, NULL, 1),
(18301, 14368, '4', 'Bharathdasan university', '', 'MBA (HR) ', '2023', 70.00, '', 1, '2023-09-06 01:33:00', 0, NULL, 0, NULL, 1),
(18302, 14369, '3', 'Bharathi dasan University Trichy ', '', 'B.com ( applied)', '2023', 70.00, '', 1, '2023-09-06 01:33:06', 0, NULL, 0, NULL, 1),
(18303, 14369, '4', 'Bharathi dasan University Trichy ', '', 'MBA ', '2023', 69.00, '', 1, '2023-09-06 01:33:38', 0, NULL, 0, NULL, 1),
(18304, 14370, '5', 'Aalim Muhammad salegh polytechnic College ', '', '', '2020', 81.00, '', 1, '2023-09-06 01:36:26', 0, NULL, 0, NULL, 1),
(18305, 14370, '2', 'State board ', '', '', '2018', 70.00, '', 1, '2023-09-06 01:37:10', 0, NULL, 0, NULL, 1),
(18306, 14371, '4', 'University of madras', '', 'MBA (hr & finance) ', '2021', 82.50, '', 1, '2023-09-06 02:50:42', 0, NULL, 0, NULL, 1),
(18307, 14371, '3', 'University of madras', '', 'B. Com (general) ', '2019', 60.00, '', 1, '2023-09-06 02:51:29', 0, NULL, 0, NULL, 1),
(18308, 14372, '3', 'Sethu Institute of Technology, Virudhunagar. ', '', 'B. E-MECH', '2022', 84.00, '', 1, '2023-09-06 03:00:25', 1, '2023-09-06 03:01:32', 0, NULL, 1),
(18309, 14372, '2', 'Nazar Higher Secondary School, Rajapalayam. ', '', '', '2018', 70.00, '', 1, '2023-09-06 03:01:17', 1, '2023-09-06 03:02:28', 0, NULL, 1),
(18310, 14372, '1', 'A. k. D. R. Boys High School, Rajapalayam', '', '', '2016', 70.00, '', 1, '2023-09-06 03:02:10', 0, NULL, 0, NULL, 1),
(18311, 14373, '3', 'Anna University ', '', 'Be', '2023', 60.00, '', 1, '2023-09-06 03:11:48', 0, NULL, 0, NULL, 1),
(18312, 14374, '3', 'Quaid-E-Millath government college for womans Autonomous', '', 'BA-Economics', '2023', 76.00, '', 1, '2023-09-06 06:20:25', 0, NULL, 0, NULL, 1),
(18313, 14375, '3', 'St Peter\'s Institute Of Higher Education and Research ', '', 'B com', '2023', 65.00, '', 1, '2023-09-06 09:06:28', 0, NULL, 0, NULL, 1),
(18314, 14377, '3', 'Asm women\'s college', '', 'Bsc(cbz) ', '2021', 76.50, '', 1, '2023-09-07 09:57:43', 0, NULL, 0, NULL, 1),
(18315, 14376, '3', 'Raja duraisingam government arts & science college ', '', 'B.sc', '2010', 58.00, '', 1, '2023-09-07 10:02:41', 0, NULL, 0, NULL, 1),
(18316, 14379, '5', 'Elumalai polytechnic college ', '', 'Electronics communication engineering ', '2020', 61.00, '', 1, '2023-09-07 10:57:02', 0, NULL, 0, NULL, 1),
(18317, 14378, '3', 'Madras University ', '', 'Bcom', '2020', 90.00, '', 1, '2023-09-07 11:16:34', 0, NULL, 0, NULL, 1),
(18318, 14380, '3', 'University of Madras ', '', 'B.Com Corporate Secretaryship ', '2023', 77.50, '', 1, '2023-09-07 11:42:50', 0, NULL, 0, NULL, 1),
(18319, 14381, '3', 'srm institute of science and technology', '', 'bba', '2023', 88.00, '', 1, '2023-09-07 11:56:30', 0, NULL, 0, NULL, 1),
(18320, 14381, '2', 'shri krishnaswamy matriculation higher secondary school', '', '', '2020', 74.00, '', 1, '2023-09-07 11:57:24', 0, NULL, 0, NULL, 1),
(18321, 14381, '1', 'shri krishnaswamy matriculation higher secondary school', '', '', '2018', 78.00, '', 1, '2023-09-07 11:57:52', 0, NULL, 0, NULL, 1),
(18322, 14382, '4', 'Anna University ', '', 'MBA ', '2016', 7.00, '', 1, '2023-09-07 12:17:51', 0, NULL, 0, NULL, 1),
(18323, 14361, '3', 'Bharatiyar', '', 'B.com', '2021', 70.00, '', 1, '2023-09-07 01:15:15', 0, NULL, 0, NULL, 1),
(18324, 14383, '4', 'Thiruvalluvar University ', '', 'M. A English ', '2017', 72.00, '', 1, '2023-09-07 01:24:58', 0, NULL, 0, NULL, 1),
(18325, 14384, '4', 'Anna University ', '', 'MBA ', '2023', 78.00, '', 1, '2023-09-07 04:17:44', 0, NULL, 0, NULL, 1),
(18326, 14385, '4', 'Bharathidasan University ', '', 'Msc', '2021', 78.00, '', 1, '2023-09-08 09:52:24', 0, NULL, 0, NULL, 1),
(18327, 14389, '1', 'State board ', '', '', '2018', 93.00, '', 1, '2023-09-08 10:45:20', 0, NULL, 0, NULL, 1),
(18328, 14389, '2', 'State board ', '', '', '2020', 80.00, '', 1, '2023-09-08 10:45:45', 0, NULL, 0, NULL, 1),
(18329, 14389, '3', 'Vels University ', '', 'B.sc ', '2023', 83.00, '', 1, '2023-09-08 10:46:14', 0, NULL, 0, NULL, 1),
(18330, 14390, '3', 'University', '', 'BEcse', '2016', 72.00, '', 1, '2023-09-08 11:06:33', 0, NULL, 0, NULL, 1),
(18331, 14393, '2', 'State board', '', 'B. Com ', '2020', 48.00, '', 1, '2023-09-08 11:22:50', 1, '2023-09-08 11:23:26', 0, NULL, 0),
(18332, 14393, '2', 'State board', '', '', '2020', 48.00, '', 1, '2023-09-08 11:24:33', 1, '2023-09-08 11:25:09', 0, NULL, 1),
(18333, 14392, '1', 'bangalore university', '', '', '2016', 61.00, '', 1, '2023-09-08 11:24:35', 0, NULL, 0, NULL, 1),
(18334, 14394, '3', 'Makaut', '', 'BBA', '2019', 7.25, '', 1, '2023-09-08 11:26:58', 0, NULL, 0, NULL, 1),
(18335, 14395, '4', 'University of Madras', '', 'MBA', '2023', 80.00, '', 1, '2023-09-08 11:32:21', 0, NULL, 0, NULL, 1),
(18336, 14396, '4', 'Madras University ', '', 'MBA ', '2023', 83.00, '', 1, '2023-09-08 11:32:26', 0, NULL, 0, NULL, 1),
(18337, 14391, '3', 'Madras University ', '', 'Bba', '2019', 72.00, '', 1, '2023-09-08 11:44:53', 0, NULL, 0, NULL, 1),
(18338, 14397, '1', 'Anna  university ', '', '', '2022', 45.00, '', 1, '2023-09-08 12:00:50', 0, NULL, 0, NULL, 1),
(18339, 14398, '4', 'Bangalore University ', '', 'PGDHRM', '2013', 82.00, '', 1, '2023-09-08 12:37:32', 0, NULL, 0, NULL, 1),
(18340, 14399, '4', 'Madras University ', '', 'MBA', '2023', 76.00, '', 1, '2023-09-08 02:16:57', 0, NULL, 0, NULL, 1),
(18341, 14400, '3', 'Madras University ', '', 'BBA ', '2021', 60.00, '', 1, '2023-09-09 08:25:40', 0, NULL, 0, NULL, 1),
(18342, 14401, '3', 'Madrasa University ', '', 'BBA', '2021', 70.00, '', 1, '2023-09-09 08:28:15', 0, NULL, 0, NULL, 1),
(18343, 14402, '4', 'B.a', '', 'Sociology ', '2020', 70.00, '', 1, '2023-09-09 10:00:51', 0, NULL, 0, NULL, 1),
(18344, 14404, '4', 'University of Madras', '', 'MBA', '2023', 63.00, '', 1, '2023-09-09 11:37:23', 0, NULL, 0, NULL, 1),
(18345, 14405, '3', 'University', '', 'Bcom CA', '2020', 80.00, '', 1, '2023-09-09 11:41:29', 0, NULL, 0, NULL, 1),
(18346, 14406, '3', 'Priyar university', '', 'B.sc (Chemistry)', '2019', 74.00, '', 1, '2023-09-09 11:41:34', 0, NULL, 0, NULL, 1),
(18347, 14407, '3', 'Karpagam College of Engineering', '', 'BE', '2023', 8.80, '', 1, '2023-09-09 01:13:22', 0, NULL, 0, NULL, 1),
(18348, 14408, '4', 'Madras University', '', 'MA HRM', '2023', 65.00, '', 1, '2023-09-09 01:25:51', 0, NULL, 0, NULL, 1),
(18349, 14410, '3', 'Madrash university ', '', 'BBA', '2019', 56.00, '', 1, '2023-09-09 03:12:06', 0, NULL, 0, NULL, 1),
(18350, 14409, '4', 'Madaras University ', '', 'M.com', '2022', 68.00, '', 1, '2023-09-09 06:26:36', 0, NULL, 0, NULL, 1),
(18351, 14409, '3', 'B.com', '', 'Madras University ', '2020', 72.00, '', 1, '2023-09-09 06:27:02', 1, '2023-09-09 06:27:29', 0, NULL, 0),
(18352, 14409, '3', 'Madras University ', '', 'B.com', '2020', 72.00, '', 1, '2023-09-09 06:27:55', 0, NULL, 0, NULL, 1),
(18353, 14409, '2', 'Tamil nadu HSC board', '', '', '2017', 74.00, '', 1, '2023-09-09 06:28:36', 1, '2023-09-09 06:29:12', 0, NULL, 0),
(18354, 14409, '1', 'Tamil nadu SSLC', '', '', '2015', 72.00, '', 1, '2023-09-09 06:29:46', 0, NULL, 0, NULL, 1),
(18355, 14409, '2', 'Tamil nadu HSC board', '', '', '2020', 74.00, '', 1, '2023-09-09 06:30:28', 0, NULL, 0, NULL, 1),
(18356, 14411, '3', ' mgr university', '', 'btech', '2023', 75.00, '', 1, '2023-09-11 11:26:21', 0, NULL, 0, NULL, 1),
(18357, 14403, '5', 'Rjs polytechnic ', '', 'Noi', '2016', 67.00, '', 1, '2023-09-11 11:46:56', 0, NULL, 0, NULL, 1),
(18358, 14413, '3', 'Madras university', '', 'B.com(general)', '2022', 68.00, '', 1, '2023-09-11 12:39:51', 0, NULL, 0, NULL, 1),
(18359, 14414, '3', 'sdnb vaishnav college for women', '', 'bsc', '2022', 75.00, '', 1, '2023-09-11 12:55:18', 0, NULL, 0, NULL, 1),
(18360, 14415, '3', 'Madurai Kamaraj University ', '', 'B.Sc. Maths', '2022', 80.00, '', 1, '2023-09-11 01:04:02', 0, NULL, 0, NULL, 1),
(18361, 14417, '3', 'PSR ENGINEERING COLLEGE SIVAKASI ', '', 'B.E', '2023', 84.00, '', 1, '2023-09-11 03:11:43', 0, NULL, 0, NULL, 1),
(18362, 14418, '3', 'Madras University ', '', 'B.com', '2021', 72.00, '', 1, '2023-09-12 10:16:20', 0, NULL, 0, NULL, 1),
(18363, 14419, '3', 'Anna University ', '', 'BE cse', '2022', 76.00, '', 1, '2023-09-12 11:04:53', 0, NULL, 0, NULL, 1),
(18364, 14420, '3', 'Prist university', '', 'B.Tecj', '2020', 6.85, '', 1, '2023-09-12 11:18:04', 0, NULL, 0, NULL, 1),
(18365, 14421, '3', 'Madras University ', '', 'BCA', '2022', 78.00, '', 1, '2023-09-12 12:02:02', 0, NULL, 0, NULL, 1),
(18366, 14423, '3', 'Madras university', '', 'B. Com (general) ', '2022', 83.00, '', 1, '2023-09-12 12:09:32', 0, NULL, 0, NULL, 1),
(18367, 14424, '3', 'University of medras', '', 'B com ( General)', '2022', 83.00, '', 1, '2023-09-12 12:13:09', 0, NULL, 0, NULL, 1),
(18368, 14426, '1', 'Cbse', '', '', '2012', 74.00, '', 1, '2023-09-12 03:03:02', 0, NULL, 0, NULL, 1),
(18369, 14426, '2', 'Stateboard', '', '', '2014', 65.00, '', 1, '2023-09-12 03:03:29', 0, NULL, 0, NULL, 1),
(18370, 14426, '3', 'Anna University ', '', 'BE Mechanical ', '2018', 65.00, '', 1, '2023-09-12 03:04:12', 0, NULL, 0, NULL, 1),
(18371, 14428, '3', 'Madras', '', 'B. Com', '2018', 71.00, '', 1, '2023-09-12 06:08:42', 0, NULL, 0, NULL, 1),
(18372, 14428, '1', 'State board', '', '', '2013', 93.00, '', 1, '2023-09-12 06:09:07', 0, NULL, 0, NULL, 1),
(18373, 14428, '2', 'State board ', '', '', '2015', 98.00, '', 1, '2023-09-12 06:09:22', 0, NULL, 0, NULL, 1),
(18374, 14429, '3', 'Dr MGR janaki college arts and science for women ', '', 'Bcom Bank management ', '2021', 70.00, '', 1, '2023-09-13 10:55:40', 0, NULL, 0, NULL, 1),
(18375, 14430, '3', 'Queen Mercies College ', '', 'B.A Economic ', '2021', 70.00, '', 1, '2023-09-13 11:43:53', 0, NULL, 0, NULL, 1),
(18376, 14433, '3', 'madras University ', '', 'b.sc comp sc ', '2020', 72.00, '', 1, '2023-09-13 11:53:35', 0, NULL, 0, NULL, 1),
(18377, 14436, '3', 'Justice basheer ahmed  Sayeed college ', '', 'B com', '2021', 79.00, '', 1, '2023-09-13 11:09:04', 0, NULL, 0, NULL, 1),
(18378, 14438, '3', 'Madras University ', '', 'Bsc chemistry ', '2023', 78.00, '', 1, '2023-09-14 10:54:57', 0, NULL, 0, NULL, 1),
(18379, 14439, '4', 'Bharathi dasan University ', '', 'Master of Computer Application', '2023', 77.00, '', 1, '2023-09-14 11:48:49', 0, NULL, 0, NULL, 1),
(18380, 14440, '4', 'Thiruvalluvar University ', '', 'MSC computer science ', '2020', 71.00, '', 1, '2023-09-14 11:49:40', 0, NULL, 0, NULL, 1),
(18381, 14440, '3', 'Thiruvalluvar University ', '', 'Bsc computer science ', '2018', 76.00, '', 1, '2023-09-14 11:50:15', 0, NULL, 0, NULL, 1),
(18382, 14442, '4', 'ethiraj college for women', '', '', '2023', 6.40, '', 1, '2023-09-14 12:21:54', 0, NULL, 0, NULL, 1),
(18383, 14442, '4', 'ethiraj college for women', '', '', '2023', 6.40, '', 1, '2023-09-14 12:21:55', 0, NULL, 0, NULL, 1),
(18384, 14442, '4', 'ethiraj college for women', '', '', '2023', 6.40, '', 1, '2023-09-14 12:21:56', 0, NULL, 0, NULL, 1),
(18385, 14441, '3', 'Madras University ', '', 'BBA', '2022', 67.00, '', 1, '2023-09-14 12:36:22', 0, NULL, 0, NULL, 1),
(18386, 14444, '3', 'Madras University ', '', 'Bcom (cS)', '2020', 65.00, '', 1, '2023-09-14 01:15:05', 1, '2023-09-14 01:15:27', 0, NULL, 1),
(18387, 14443, '3', 'SRM UNIVERSITY ', '', 'BBA', '2025', 70.00, '', 1, '2023-09-14 01:16:50', 0, NULL, 0, NULL, 1),
(18388, 14431, '3', 'Madras University ', '', 'B.com', '2022', 78.00, '', 1, '2023-09-14 01:35:08', 0, NULL, 0, NULL, 1),
(18389, 14446, '3', 'Madras University ', '', 'B.sc computer science ', '2022', 60.00, '', 1, '2023-09-14 09:18:13', 0, NULL, 0, NULL, 1),
(18390, 14447, '1', 'IHM GIRLS HR SEC SCHOOL', '', '', '2011', 80.00, '', 1, '2023-09-14 10:10:31', 0, NULL, 0, NULL, 1),
(18391, 14448, '3', 'Medras University ', '', 'B.A- Economics ', '2021', 60.81, '', 1, '2023-09-15 09:47:13', 0, NULL, 0, NULL, 1),
(18392, 14450, '3', 'surya engineering college', '', 'be', '2012', 75.00, '', 1, '2023-09-15 10:57:05', 0, NULL, 0, NULL, 1),
(18393, 14449, '3', 'SRM University ', '', 'B.COM', '2022', 72.00, '', 1, '2023-09-15 11:07:29', 0, NULL, 0, NULL, 1),
(18394, 14451, '4', 'Madras university ', '', 'MCA', '2023', 80.00, '', 1, '2023-09-15 11:56:21', 0, NULL, 0, NULL, 1),
(18395, 14454, '3', 'University ', '', 'B.com(G)', '2023', 85.00, '', 1, '2023-09-16 10:50:59', 0, NULL, 0, NULL, 1),
(18396, 14455, '3', 'Vels institute of science and technology VISTA ', '', 'B.C.A', '2023', 75.00, '', 1, '2023-09-16 10:52:37', 0, NULL, 0, NULL, 1),
(18397, 14456, '3', 'Madras University ', '', 'B.COM GENERAL ', '2023', 80.00, '', 1, '2023-09-16 11:30:48', 0, NULL, 0, NULL, 1),
(18398, 14457, '3', 'Madras University ', '', 'B.com general ', '2023', 70.00, '', 1, '2023-09-16 11:42:08', 0, NULL, 0, NULL, 1),
(18399, 14458, '3', 'Madras University ', '', 'B.cOM', '2023', 70.00, '', 1, '2023-09-16 12:01:03', 0, NULL, 0, NULL, 1),
(18400, 14460, '4', 'B s abdur rahman crescent University ', '', 'Mca', '2023', 9.37, '', 1, '2023-09-16 01:00:40', 0, NULL, 0, NULL, 1),
(18401, 14460, '4', 'Hindustan University ', '', 'M.tech', '2018', 7.68, '', 1, '2023-09-16 01:01:29', 0, NULL, 0, NULL, 1),
(18402, 14460, '3', 'Anna University ', '', 'B.E mechanical engineering ', '2011', 64.00, '', 1, '2023-09-16 01:02:08', 0, NULL, 0, NULL, 1),
(18403, 14460, '2', 'State board', '', '', '2007', 63.34, '', 1, '2023-09-16 01:02:34', 0, NULL, 0, NULL, 1),
(18404, 14461, '3', 'Bharathidasan university ', '', 'Bachelor of commerce ', '2021', 74.00, '', 1, '2023-09-18 08:45:04', 0, NULL, 0, NULL, 1),
(18405, 14463, '3', 'University ', '', 'BCA ', '2023', 67.05, '', 1, '2023-09-19 11:24:22', 0, NULL, 0, NULL, 1),
(18406, 14462, '3', 'Madras University ', '', 'BBA ', '2022', 87.00, '', 1, '2023-09-19 11:24:43', 0, NULL, 0, NULL, 1),
(18407, 14464, '3', 'Madras University ', '', 'B.com', '2023', 70.00, '', 1, '2023-09-19 11:41:16', 0, NULL, 0, NULL, 1),
(18408, 14466, '3', 'Madras University', '', 'B.com corporate', '2019', 75.00, '', 1, '2023-09-19 09:09:56', 0, NULL, 0, NULL, 1),
(18409, 14467, '4', 'Madras University ', '', 'Msc. Computer science ', '2021', 73.00, '', 1, '2023-09-20 09:46:21', 0, NULL, 0, NULL, 1),
(18410, 14467, '4', 'Madras University ', '', 'Msc. Computer science ', '2021', 73.00, '', 1, '2023-09-20 09:50:47', 0, NULL, 0, NULL, 1),
(18411, 14474, '4', 'university of madras', '', 'mca', '2024', 76.00, '', 1, '2023-09-20 10:24:31', 0, NULL, 0, NULL, 1),
(18412, 14474, '3', 'madurai kamaraj university', '', 'bsc cs', '2022', 67.00, '', 1, '2023-09-20 10:25:11', 0, NULL, 0, NULL, 1),
(18413, 14474, '2', 'state board', '', '', '2019', 59.70, '', 1, '2023-09-20 10:25:32', 0, NULL, 0, NULL, 1),
(18414, 14474, '1', 'state board', '', '', '2017', 89.60, '', 1, '2023-09-20 10:25:48', 0, NULL, 0, NULL, 1),
(18415, 14475, '4', 'University of Madras ', '', 'MCA', '2024', 77.00, '', 1, '2023-09-20 10:25:51', 0, NULL, 0, NULL, 1),
(18416, 14468, '4', 'Madras university', '', 'MCA', '2024', 81.00, '', 1, '2023-09-20 10:25:58', 0, NULL, 0, NULL, 1),
(18417, 14475, '3', 'SRM UNIVERSITY ', '', 'BCA', '2022', 82.00, '', 1, '2023-09-20 10:26:38', 0, NULL, 0, NULL, 1),
(18418, 14473, '4', 'University of madras', '', 'MCA', '2024', 78.00, '', 1, '2023-09-20 10:26:43', 0, NULL, 0, NULL, 1),
(18419, 14468, '3', 'Bharath univarsity', '', 'B.com', '2020', 60.40, '', 1, '2023-09-20 10:26:50', 0, NULL, 0, NULL, 1),
(18420, 14470, '4', 'University of madras', '', 'M.C.A', '2024', 86.00, '', 1, '2023-09-20 10:27:06', 0, NULL, 0, NULL, 1),
(18421, 14475, '2', 'CBSE', '', '', '2019', 60.00, '', 1, '2023-09-20 10:27:06', 1, '2023-09-20 10:28:33', 0, NULL, 1),
(18422, 14468, '2', 'State board', '', '', '2017', 91.00, '', 1, '2023-09-20 10:27:34', 0, NULL, 0, NULL, 1),
(18423, 14473, '3', 'Thiruvalluvar university', '', 'Bsc', '2022', 78.00, '', 1, '2023-09-20 10:27:43', 0, NULL, 0, NULL, 1),
(18424, 14470, '3', 'Madurai kamaraj University ', '', 'Bachelor of computer science ', '2021', 80.00, '', 1, '2023-09-20 10:27:48', 1, '2023-09-20 10:29:48', 0, NULL, 1),
(18425, 14475, '1', 'CBSE ', '', '', '2017', 82.00, '', 1, '2023-09-20 10:28:04', 0, NULL, 0, NULL, 1),
(18426, 14468, '1', 'State board', '', '', '2015', 90.00, '', 1, '2023-09-20 10:28:19', 0, NULL, 0, NULL, 1),
(18427, 14472, '4', 'Madras University ', '', 'MCA', '2024', 80.00, '', 1, '2023-09-20 10:28:20', 0, NULL, 0, NULL, 1),
(18428, 14473, '2', 'State board', '', '', '2019', 63.00, '', 1, '2023-09-20 10:28:28', 0, NULL, 0, NULL, 1),
(18429, 14470, '2', 'State board', '', '', '2018', 81.00, '', 1, '2023-09-20 10:28:33', 0, NULL, 0, NULL, 1),
(18430, 14469, '4', 'Madras University ', '', 'MCA', '2024', 81.50, '', 1, '2023-09-20 10:28:40', 0, NULL, 0, NULL, 1),
(18431, 14470, '1', 'State board ', '', '', '2016', 96.00, '', 1, '2023-09-20 10:28:56', 0, NULL, 0, NULL, 1),
(18432, 14473, '1', 'State board', '', '', '2017', 80.00, '', 1, '2023-09-20 10:28:59', 0, NULL, 0, NULL, 1),
(18433, 14472, '3', 'Bharathidasan University ', '', 'BSC(c.s)', '2022', 86.00, '', 1, '2023-09-20 10:29:14', 0, NULL, 0, NULL, 1),
(18434, 14472, '2', 'State Board ', '', '', '2019', 64.00, '', 1, '2023-09-20 10:29:45', 1, '2023-09-20 10:30:29', 0, NULL, 1),
(18435, 14469, '3', 'Madras University ', '', 'BCA', '2022', 74.10, '', 1, '2023-09-20 10:29:56', 1, '2023-09-20 10:30:58', 0, NULL, 1),
(18436, 14472, '1', 'State Board ', '', '', '2017', 84.00, '', 1, '2023-09-20 10:31:22', 0, NULL, 0, NULL, 1),
(18437, 14469, '2', 'State board', '', '', '2019', 76.00, '', 1, '2023-09-20 10:31:33', 0, NULL, 0, NULL, 1),
(18438, 14469, '1', 'State board ', '', '', '2017', 91.40, '', 1, '2023-09-20 10:32:10', 0, NULL, 0, NULL, 1),
(18439, 14478, '3', 'Anna university', '', 'B Tech IT', '2023', 78.00, '', 1, '2023-09-20 10:33:38', 0, NULL, 0, NULL, 1),
(18440, 14471, '4', 'Madras university ', '', 'MCA', '2024', 70.00, '', 1, '2023-09-20 10:37:40', 0, NULL, 0, NULL, 1),
(18441, 14471, '3', 'Bharathidasan university', '', 'BSC(c.s)', '2022', 85.00, '', 1, '2023-09-20 10:38:27', 0, NULL, 0, NULL, 1),
(18442, 14476, '3', 'Madras University ', '', 'B.com General ', '2023', 70.00, '', 1, '2023-09-20 10:38:51', 0, NULL, 0, NULL, 1),
(18443, 14471, '2', 'State Board ', '', '', '2019', 47.00, '', 1, '2023-09-20 10:38:57', 0, NULL, 0, NULL, 1),
(18444, 14471, '1', 'State Board ', '', '', '2017', 54.00, '', 1, '2023-09-20 10:39:13', 0, NULL, 0, NULL, 1),
(18445, 14479, '4', 'University of madras', '', 'MCA', '2024', 78.50, '', 1, '2023-09-20 10:39:18', 0, NULL, 0, NULL, 1),
(18446, 14477, '3', 'Periyar University ', '', 'BBA', '2023', 63.00, '', 1, '2023-09-20 10:39:31', 0, NULL, 0, NULL, 1),
(18447, 14479, '3', 'University of madras', '', 'Physics', '2021', 74.50, '', 1, '2023-09-20 10:39:42', 0, NULL, 0, NULL, 1),
(18448, 14479, '2', 'State  board', '', '', '2018', 77.80, '', 1, '2023-09-20 10:40:04', 0, NULL, 0, NULL, 1),
(18449, 14479, '1', 'State board', '', '', '2016', 91.50, '', 1, '2023-09-20 10:40:21', 0, NULL, 0, NULL, 1),
(18450, 14480, '3', 'Madras University ', '', 'BBA', '2023', 80.00, '', 1, '2023-09-20 11:32:00', 0, NULL, 0, NULL, 1),
(18451, 14481, '3', 'Quaide Milleth College', '', 'B.Com', '2016', 55.00, '', 1, '2023-09-20 11:57:45', 0, NULL, 0, NULL, 1),
(18452, 14483, '3', 'Madras university', '', 'B. Com(accounting and finance) ', '2021', 80.00, '', 1, '2023-09-20 12:21:21', 0, NULL, 0, NULL, 1),
(18453, 14482, '5', 'Sri sam Ram engineering College ', '', 'DEEE', '2015', 78.00, '', 1, '2023-09-20 12:21:43', 0, NULL, 0, NULL, 1),
(18454, 14483, '1', 'Santhome higher secondary school', '', '', '2015', 71.00, '', 1, '2023-09-20 12:22:38', 0, NULL, 0, NULL, 1),
(18455, 14484, '3', 'Annai violet acts and science college ', '', 'BCA ', '2023', 62.70, '', 1, '2023-09-20 12:23:17', 0, NULL, 0, NULL, 1),
(18456, 14482, '2', 'Model hr.sec school ', '', 'DEEE', '2013', 50.00, '', 1, '2023-09-20 12:23:22', 0, NULL, 0, NULL, 1),
(18457, 14486, '3', 'Dr. m.G.R University ', '', 'BCA', '2023', 87.20, '', 1, '2023-09-20 12:23:35', 1, '2023-09-20 12:25:40', 0, NULL, 0),
(18458, 14484, '2', 'Sir Ramaswami Mudaliar Higher secondary school ', '', '', '2020', 60.00, '', 1, '2023-09-20 12:24:50', 0, NULL, 0, NULL, 1),
(18459, 14484, '1', 'Sir Ramaswami Mudaliar Higher secondary school ', '', '', '2018', 62.00, '', 1, '2023-09-20 12:25:30', 0, NULL, 0, NULL, 1),
(18460, 14483, '2', 'P. S. Higher secondary school', '', '', '2018', 81.00, '', 1, '2023-09-20 12:25:32', 0, NULL, 0, NULL, 1),
(18461, 14486, '1', 'Perunthalaivar Kamarajar Government Girls Higher secondary school ', '', '', '2018', 73.00, '', 1, '2023-09-20 12:27:00', 0, NULL, 0, NULL, 1),
(18462, 14486, '2', 'Perunthalaivar Kamarajar Government Girls Higher secondary school ', '', '', '2020', 62.50, '', 1, '2023-09-20 12:27:42', 0, NULL, 0, NULL, 1),
(18463, 14486, '3', 'Dr. M.G.R Educational and Research Institute ', '', 'BCA', '2023', 87.20, '', 1, '2023-09-20 12:28:56', 0, NULL, 0, NULL, 1),
(18464, 14485, '1', 'CHSS BUNDER GARDER PERAMBUR CH-11', '', '', '2020', 74.00, '', 1, '2023-09-20 12:36:57', 0, NULL, 0, NULL, 1),
(18465, 14485, '2', 'CHSS BUNDER GARDER,PERAMBUR,CH-11 ', '', '', '2018', 75.00, '', 1, '2023-09-20 12:37:59', 0, NULL, 0, NULL, 1),
(18466, 14485, '3', 'DR.MGR UNIVERSITY, MADURAVOYAL,CHENNAI ', '', 'BCA', '2023', 7.81, '', 1, '2023-09-20 12:39:16', 0, NULL, 0, NULL, 1),
(18467, 14489, '4', 'Madras University ', '', 'MCA', '2024', 81.00, '', 1, '2023-09-21 10:19:04', 0, NULL, 0, NULL, 1),
(18468, 14493, '4', 'mADRAS UNIVERSITY', '', 'MCA', '2024', 75.00, '', 1, '2023-09-21 10:20:58', 0, NULL, 0, NULL, 1),
(18469, 14496, '4', 'University Of Madras', '', 'MCA', '2024', 82.00, '', 1, '2023-09-21 10:24:42', 0, NULL, 0, NULL, 1),
(18470, 14495, '4', 'University of Madras ', '', 'MCA', '2024', 78.00, '', 1, '2023-09-21 10:24:45', 0, NULL, 0, NULL, 1),
(18471, 14496, '3', 'Autonomous ', '', 'Bsc computer science ', '2022', 87.00, '', 1, '2023-09-21 10:25:30', 0, NULL, 0, NULL, 1),
(18472, 14491, '4', 'Madras University ', '', 'MCA', '2024', 83.07, '', 1, '2023-09-21 10:26:00', 0, NULL, 0, NULL, 1),
(18473, 14496, '2', 'State board ', '', '', '2019', 80.83, '', 1, '2023-09-21 10:26:20', 0, NULL, 0, NULL, 1),
(18474, 14492, '4', 'University of Madras', '', 'mCA', '2024', 76.65, '', 1, '2023-09-21 10:26:53', 0, NULL, 0, NULL, 1),
(18475, 14496, '1', 'State board ', '', '', '2017', 90.80, '', 1, '2023-09-21 10:26:55', 0, NULL, 0, NULL, 1),
(18476, 14494, '4', 'Bharathidasan University ', '', 'M.s.w', '2021', 69.18, '', 1, '2023-09-21 10:27:02', 1, '2023-09-21 10:29:28', 0, NULL, 0),
(18477, 14492, '3', 'Crescent University ', '', 'BCA', '2022', 80.60, '', 1, '2023-09-21 10:27:18', 0, NULL, 0, NULL, 1),
(18478, 14492, '2', 'State Board', '', '', '2019', 61.33, '', 1, '2023-09-21 10:27:46', 0, NULL, 0, NULL, 1),
(18479, 14490, '4', 'Madras University ', '', 'MCA', '2024', 80.00, '', 1, '2023-09-21 10:27:48', 0, NULL, 0, NULL, 1),
(18480, 14492, '1', 'State Board ', '', '', '2017', 74.60, '', 1, '2023-09-21 10:28:19', 0, NULL, 0, NULL, 1),
(18481, 14495, '3', 'Bharathidasan University', '', 'B sc Computer Science ', '2022', 74.00, '', 1, '2023-09-21 10:28:31', 1, '2023-09-21 10:31:05', 0, NULL, 1),
(18482, 14488, '4', 'University of Madras ', '', 'Mca', '2024', 70.00, '', 1, '2023-09-21 10:29:06', 0, NULL, 0, NULL, 1),
(18483, 14491, '3', 'Madras University ', '', 'B.com (Information Systems Management)', '2022', 81.00, '', 1, '2023-09-21 10:29:36', 0, NULL, 0, NULL, 1),
(18484, 14494, '4', 'Bharathidasan University ', '', 'M.s.w', '2021', 69.18, '', 1, '2023-09-21 10:29:49', 0, NULL, 0, NULL, 1),
(18485, 14495, '2', 'State Board ', '', '', '2019', 54.00, '', 1, '2023-09-21 10:29:50', 0, NULL, 0, NULL, 1),
(18486, 14491, '2', 'State board ', '', '', '2019', 70.00, '', 1, '2023-09-21 10:30:16', 1, '2023-09-21 10:30:51', 0, NULL, 0),
(18487, 14495, '1', 'CBSE', '', '', '2017', 74.00, '', 1, '2023-09-21 10:30:24', 0, NULL, 0, NULL, 1),
(18488, 14488, '3', 'University of Madras ', '', 'Bca', '2022', 75.00, '', 1, '2023-09-21 10:31:37', 0, NULL, 0, NULL, 1),
(18489, 14491, '2', 'State board ', '', '', '2019', 70.00, '', 1, '2023-09-21 10:31:48', 0, NULL, 0, NULL, 1),
(18490, 14497, '4', 'Madras University ', '', 'MCA', '2024', 82.00, '', 1, '2023-09-21 10:32:12', 0, NULL, 0, NULL, 1),
(18491, 14497, '3', 'Madras University ', '', 'BCA', '2022', 72.00, '', 1, '2023-09-21 10:33:09', 0, NULL, 0, NULL, 1),
(18492, 14491, '1', 'State board ', '', '', '2017', 78.40, '', 1, '2023-09-21 10:33:19', 0, NULL, 0, NULL, 1),
(18493, 14488, '1', 'State board ', '', '', '2017', 40.00, '', 1, '2023-09-21 10:34:32', 0, NULL, 0, NULL, 1),
(18494, 14497, '2', 'Velammal vidhyashram ', '', '', '2019', 65.00, '', 1, '2023-09-21 10:34:42', 0, NULL, 0, NULL, 1),
(18495, 14488, '2', 'State board ', '', '', '2019', 50.00, '', 1, '2023-09-21 10:35:34', 0, NULL, 0, NULL, 1),
(18496, 14497, '1', 'Velammal vidhyashram ', '', '', '2017', 86.00, '', 1, '2023-09-21 10:36:19', 0, NULL, 0, NULL, 1),
(18497, 14498, '4', 'University of Madras', '', '', '2024', 77.00, '', 1, '2023-09-21 10:42:37', 0, NULL, 0, NULL, 1),
(18498, 14498, '3', 'University of Madras', '', 'B.A Economics', '2022', 69.00, '', 1, '2023-09-21 10:49:26', 0, NULL, 0, NULL, 1),
(18499, 14498, '2', 'State Board', '', '', '2019', 60.00, '', 1, '2023-09-21 10:52:10', 1, '2023-09-21 10:52:30', 0, NULL, 1),
(18500, 14498, '1', 'State board', '', '', '2017', 61.00, '', 1, '2023-09-21 10:53:28', 0, NULL, 0, NULL, 1),
(18501, 14499, '3', 'Bharathidasan University ', '', 'Bsc biotechnology ', '2022', 77.00, '', 1, '2023-09-21 12:27:22', 0, NULL, 0, NULL, 1),
(18502, 14501, '3', 'Anna university ', '', 'B.e(ECE)', '2021', 73.00, '', 1, '2023-09-21 12:34:15', 0, NULL, 0, NULL, 1),
(18503, 14501, '2', 'State board ', '', '', '2017', 46.00, '', 1, '2023-09-21 12:35:52', 0, NULL, 0, NULL, 1),
(18504, 14501, '1', 'State board ', '', '', '2015', 64.00, '', 1, '2023-09-21 12:36:17', 0, NULL, 0, NULL, 1),
(18505, 14503, '4', 'Dr. Mgr educational and research Institute', '', 'Mba', '2023', 77.00, '', 1, '2023-09-21 02:49:25', 0, NULL, 0, NULL, 1),
(18506, 14504, '1', 'State board ', '', '', '2013', 79.20, '', 1, '2023-09-21 10:39:04', 0, NULL, 0, NULL, 1),
(18507, 14504, '2', 'State board ', '', '', '2015', 76.20, '', 1, '2023-09-21 10:40:58', 0, NULL, 0, NULL, 1),
(18508, 14505, '4', 'University of Pune ', '', 'M.Sc. Physics with specialization in Materials Sci', '2009', 55.52, '', 1, '2023-09-22 10:27:18', 0, NULL, 0, NULL, 1),
(18509, 14507, '4', 'university of madras', '', 'm a human resources management', '2023', 64.00, '', 1, '2023-09-22 10:52:32', 0, NULL, 0, NULL, 1),
(18510, 14508, '4', 'University of Madras ', '', 'M A Human Resource management ', '2023', 68.45, '', 1, '2023-09-22 10:52:47', 1, '2023-09-22 10:54:50', 0, NULL, 1),
(18511, 14508, '3', 'University of Madras ', '', 'B.com corporate secretaryship ', '2021', 79.00, '', 1, '2023-09-22 10:54:28', 0, NULL, 0, NULL, 1),
(18512, 14507, '3', 'University of madras', '', 'u g', '2021', 67.00, '', 1, '2023-09-22 10:56:19', 0, NULL, 0, NULL, 1),
(18513, 14509, '3', 'Anna University ', '', 'BE ', '2020', 7.90, '', 1, '2023-09-22 11:07:37', 0, NULL, 0, NULL, 1),
(18514, 14511, '3', 'Thiruvalluvar university ', '', 'B.sc Microbiolagy', '2022', 82.00, '', 1, '2023-09-22 11:14:47', 0, NULL, 0, NULL, 1),
(18515, 14510, '3', 'Kamaraj university', '', 'B.sc Maths', '2019', 62.00, '', 1, '2023-09-22 11:15:06', 0, NULL, 0, NULL, 1),
(18516, 14512, '4', 'Pondicherry University ', '', 'MBA hrm', '0021', 70.00, '', 1, '2023-09-22 11:22:51', 0, NULL, 0, NULL, 1),
(18517, 14512, '3', 'Madars University ', '', 'Bsc', '0019', 80.00, '', 1, '2023-09-22 11:23:42', 0, NULL, 0, NULL, 1),
(18518, 14512, '2', 'State board ', '', '', '0016', 70.00, '', 1, '2023-09-22 11:24:33', 0, NULL, 0, NULL, 1),
(18519, 14512, '1', 'State board ', '', '', '2014', 80.00, '', 1, '2023-09-22 11:24:59', 0, NULL, 0, NULL, 1),
(18520, 14506, '3', 'madras university', '', 'bba', '2017', 50.00, '', 1, '2023-09-22 11:26:51', 0, NULL, 0, NULL, 1),
(18521, 14502, '2', 'Assumption her sec school ', '', '', '2014', 75.00, '', 1, '2023-09-22 12:01:34', 0, NULL, 0, NULL, 1),
(18522, 14516, '3', 'University of madras', '', 'B.com', '2020', 69.00, '', 1, '2023-09-22 12:27:01', 0, NULL, 0, NULL, 1),
(18523, 14515, '3', 'Bharadhidasan university', '', 'B. SC, B. Ed. ', '2020', 70.00, '', 1, '2023-09-22 12:32:23', 0, NULL, 0, NULL, 1),
(18524, 14517, '4', 'Anna university ', '', 'MBA', '2023', 70.00, '', 1, '2023-09-22 01:28:34', 0, NULL, 0, NULL, 1),
(18525, 14518, '4', 'Anna University ', '', 'MBA', '2023', 7.90, '', 1, '2023-09-22 10:44:34', 0, NULL, 0, NULL, 1),
(18526, 14500, '4', 'Thiruvallur university ', '', 'MBA', '2020', 65.00, '', 1, '2023-09-23 04:02:23', 0, NULL, 0, NULL, 1),
(18527, 14520, '3', 'Annamalai University ', '', 'B.A', '2019', 70.00, '', 1, '2023-09-25 10:41:48', 0, NULL, 0, NULL, 1),
(18528, 14521, '3', 'Madras University ', '', 'B.com', '2021', 78.00, '', 1, '2023-09-25 11:09:53', 0, NULL, 0, NULL, 1),
(18529, 14521, '2', 'State board ', '', '', '2018', 62.00, '', 1, '2023-09-25 11:12:32', 1, '2023-09-25 11:17:09', 0, NULL, 1),
(18530, 14521, '1', 'Sate board ', '', '', '2016', 72.00, '', 1, '2023-09-25 11:13:19', 1, '2023-09-25 11:15:56', 0, NULL, 0),
(18531, 14521, '1', 'Sate board ', '', '', '2016', 72.00, '', 1, '2023-09-25 11:17:37', 0, NULL, 0, NULL, 1),
(18532, 14522, '3', 'Madras university', '', 'B.Com cs', '2023', 61.00, '', 1, '2023-09-25 11:50:54', 0, NULL, 0, NULL, 1),
(18533, 14525, '3', 'patrician college of arts science', '', 'bca', '2023', 60.00, '', 1, '2023-09-25 05:26:06', 0, NULL, 0, NULL, 1),
(18534, 14524, '3', 'Madras University ', '', 'B.com Cs', '2021', 80.00, '', 1, '2023-09-25 06:24:35', 0, NULL, 0, NULL, 1),
(18535, 14527, '3', 'Madras University ', '', 'Bcom', '2011', 60.00, '', 1, '2023-09-26 09:46:55', 0, NULL, 0, NULL, 1),
(18536, 14527, '2', 'Jaigopal Garodia National Hr sec school', '', '', '2008', 64.00, '', 1, '2023-09-26 09:48:13', 0, NULL, 0, NULL, 1),
(18537, 14527, '1', 'Govt Hr sec school ', '', '', '2007', 65.00, '', 1, '2023-09-26 09:48:34', 0, NULL, 0, NULL, 1),
(18538, 14528, '4', 'guru nanak', '', 'msc', '2023', 75.00, '', 1, '2023-09-26 11:36:41', 0, NULL, 0, NULL, 1),
(18539, 14526, '3', 'University of Madras ', '', 'Bachelor of computer applications ', '2023', 68.00, '', 1, '2023-09-26 11:49:33', 0, NULL, 0, NULL, 1),
(18540, 14530, '3', 'The new college ', '', 'B com corporate secretaryship ', '2023', 65.00, '', 1, '2023-09-26 11:50:11', 0, NULL, 0, NULL, 1),
(18541, 14531, '3', 'Bharathithasan University Trichy ', '', 'Bachelor of Computer Application', '2018', 75.00, '', 1, '2023-09-26 11:53:38', 0, NULL, 0, NULL, 1),
(18542, 14531, '1', 'Arunachalam Chettiyar Higher Secondary school Pallathur ', '', '', '2012', 80.00, '', 1, '2023-09-26 11:54:55', 0, NULL, 0, NULL, 1),
(18543, 14531, '2', 'Arunachalam Chettiyar Higher Secondary school Pallathur ', '', '', '2014', 75.00, '', 1, '2023-09-26 11:55:28', 0, NULL, 0, NULL, 1),
(18544, 14529, '3', 'madras University ', '', 'bsc Geography tourism and travel management', '2023', 67.10, '', 1, '2023-09-26 12:05:16', 0, NULL, 0, NULL, 1),
(18545, 14532, '3', 'University of madras', '', 'bCA - Computer Applications', '2023', 65.00, '', 1, '2023-09-26 12:26:14', 0, NULL, 0, NULL, 1),
(18546, 14533, '3', 'Autonomous', '', 'B.com (Accounting and finance)', '2015', 75.00, '', 1, '2023-09-26 02:08:17', 0, NULL, 0, NULL, 1),
(18547, 14534, '3', 'manomaniyam University ', '', 'bsc it', '2017', 72.00, '', 1, '2023-09-26 02:43:15', 0, NULL, 0, NULL, 1),
(18548, 14536, '5', 'Dr yc James polytechnic college ', '', 'Computer science engineering ', '2019', 75.00, '', 1, '2023-09-27 09:53:03', 0, NULL, 0, NULL, 1),
(18549, 14537, '3', 'University of madras', '', 'B.com', '2023', 73.00, '', 1, '2023-09-27 10:03:44', 0, NULL, 0, NULL, 1),
(18550, 14537, '2', 'Pathipaga chemmal k.ganapathi Government Higher Secondary school', '', '', '2020', 57.00, '', 1, '2023-09-27 10:04:56', 0, NULL, 0, NULL, 1),
(18551, 14537, '1', 'Pathipaga Chemmal k.Ganapathi Government Higher Secondary school ', '', '', '2018', 69.00, '', 1, '2023-09-27 10:05:43', 0, NULL, 0, NULL, 1),
(18552, 14539, '3', 'Ramakrishna mission Vivekananda College ', '', 'B.com', '2021', 63.00, '', 1, '2023-09-27 10:37:18', 0, NULL, 0, NULL, 1),
(18553, 14538, '3', 'Anna University ', '', 'B.E', '2020', 65.00, '', 1, '2023-09-27 10:48:36', 0, NULL, 0, NULL, 1),
(18554, 14540, '4', 'University of Madras ', '', 'MBA ', '2019', 52.00, '', 1, '2023-09-27 11:09:04', 0, NULL, 0, NULL, 1),
(18555, 14540, '3', 'University of Madras ', '', 'B.com ', '2017', 50.00, '', 1, '2023-09-27 11:09:37', 0, NULL, 0, NULL, 1),
(18556, 14541, '3', 'Vels Institute of Science, Technology and Advanced Studies (VISTAS)', '', 'B.E. (Computer Science and Engineering)', '2022', 78.00, '', 1, '2023-09-27 11:22:24', 0, NULL, 0, NULL, 1),
(18557, 14541, '2', 'Sri Ahobila Math Oriental Higher Secondary School', '', '', '2018', 80.00, '', 1, '2023-09-27 11:23:04', 0, NULL, 0, NULL, 1),
(18558, 14541, '1', 'Jawahar Vidyalaya Senior Secondary School', '', '', '2016', 82.00, '', 1, '2023-09-27 11:23:30', 0, NULL, 0, NULL, 1),
(18559, 14541, '4', 'University of Madras', '', 'M.B.A. (Systems Management)', '2024', 75.00, '', 1, '2023-09-27 11:24:24', 0, NULL, 0, NULL, 1),
(18560, 14542, '1', 'Matriculation ', '', '', '2016', 84.00, '', 1, '2023-09-27 11:27:33', 0, NULL, 0, NULL, 1),
(18561, 14542, '2', 'Matriculation ', '', '', '2018', 72.00, '', 1, '2023-09-27 11:27:56', 0, NULL, 0, NULL, 1),
(18562, 14542, '3', 'Madras University ', '', 'B. Com', '2021', 74.00, '', 1, '2023-09-27 11:28:27', 0, NULL, 0, NULL, 1),
(18563, 14542, '4', 'Madras University ', '', 'MBA financial management ', '2023', 82.00, '', 1, '2023-09-27 11:29:01', 0, NULL, 0, NULL, 1),
(18564, 14544, '3', 'Madras university', '', 'B. Com corporate secretaryship', '2022', 84.00, '', 1, '2023-09-27 11:31:38', 0, NULL, 0, NULL, 1),
(18565, 14543, '1', 'Tamil Nadu State board ', '', '', '2018', 74.00, '', 1, '2023-09-27 11:43:46', 0, NULL, 0, NULL, 1),
(18566, 14543, '2', 'Tamil Nadu State board ', '', '', '2020', 71.00, '', 1, '2023-09-27 11:44:10', 0, NULL, 0, NULL, 1),
(18567, 14543, '3', 'Madras University ', '', 'B.com', '2023', 74.00, '', 1, '2023-09-27 11:44:30', 0, NULL, 0, NULL, 1),
(18568, 14545, '3', 'Madras university ', '', 'Bcom(g)', '2023', 69.00, '', 1, '2023-09-27 11:47:41', 0, NULL, 0, NULL, 1),
(18569, 14546, '4', 'Madras University ', '', 'M.com', '2023', 76.50, '', 1, '2023-09-27 01:26:33', 0, NULL, 0, NULL, 1),
(18570, 14546, '3', 'Periyar University ', '', 'B.com', '2021', 75.00, '', 1, '2023-09-27 01:27:08', 0, NULL, 0, NULL, 1),
(18571, 14546, '2', 'Tamilnadu State Board ', '', '', '2018', 93.08, '', 1, '2023-09-27 01:27:55', 0, NULL, 0, NULL, 1),
(18572, 14546, '1', 'Tamilnadu State board ', '', '', '2016', 92.60, '', 1, '2023-09-27 01:28:22', 0, NULL, 0, NULL, 1),
(18573, 14547, '3', 'Stella Maris college ', '', 'B.com', '2018', 72.00, '', 1, '2023-09-27 02:22:59', 0, NULL, 0, NULL, 1),
(18574, 14535, '3', 'University of Madras ', '', 'BCOM', '2022', 70.00, '', 1, '2023-09-27 02:43:22', 0, NULL, 0, NULL, 1),
(18575, 14548, '5', 'Vivekananda institute college ', '', 'Mechanical', '2017', 85.00, '', 1, '2023-09-27 05:02:25', 0, NULL, 0, NULL, 1),
(18576, 14549, '5', 'Alaghappa University ', '', 'Hotel management ', '2021', 87.00, '', 1, '2023-09-27 05:12:03', 0, NULL, 0, NULL, 1),
(18577, 14550, '3', 'Anna University', '', 'B. Tech(IT) ', '2016', 7.24, '', 1, '2023-09-28 10:20:44', 0, NULL, 0, NULL, 1),
(18578, 14551, '3', 'Madras University ', '', 'Bcom General ', '2022', 68.00, '', 1, '2023-09-28 10:26:52', 0, NULL, 0, NULL, 1),
(18579, 14552, '5', 'DOTE', '', '', '2015', 96.00, '', 1, '2023-09-28 12:26:22', 0, NULL, 0, NULL, 1),
(18580, 14553, '4', 'Erode sengunthar engineering college ', '', 'ME.Power Electronics', '2023', 8.70, '', 1, '2023-09-28 01:34:42', 0, NULL, 0, NULL, 1),
(18581, 14556, '3', 'K RAMAKRISHNAN COLLEGE OF ENGINEERING ', '', 'Bachelor of computer science and engineering ', '2023', 78.70, '', 1, '2023-09-28 04:41:49', 0, NULL, 0, NULL, 1),
(18582, 14556, '1', 'Vidya Mandir matric higher secondary school ', '', '', '2017', 86.40, '', 1, '2023-09-28 04:42:29', 0, NULL, 0, NULL, 1),
(18583, 14556, '2', 'Vidya Mandir matric higher secondary school ', '', '', '2019', 74.60, '', 1, '2023-09-28 04:42:53', 0, NULL, 0, NULL, 1),
(18584, 14557, '1', 'state board', '', '', '2018', 89.00, '', 1, '2023-09-28 05:08:46', 0, NULL, 0, NULL, 1),
(18585, 14557, '2', 'state board', '', '', '2020', 72.10, '', 1, '2023-09-28 05:09:13', 0, NULL, 0, NULL, 1),
(18586, 14557, '3', 'university of madras', '', 'b.sc computer science', '2023', 89.50, '', 1, '2023-09-28 05:09:57', 0, NULL, 0, NULL, 1),
(18587, 14559, '3', 'Board of Intermediate secondary education', '', '', '2019', 73.00, '', 1, '2023-09-29 09:24:56', 0, NULL, 0, NULL, 1),
(18588, 14560, '5', 'Board', '', 'D.M.E', '2023', 50.00, '', 1, '2023-09-29 10:10:54', 0, NULL, 0, NULL, 1),
(18589, 14561, '3', 'University of Madras ', '', 'Bcom ', '2022', 75.00, '', 1, '2023-09-29 10:24:30', 0, NULL, 0, NULL, 1),
(18590, 14563, '4', 'Jeppiaar engineering college ', '', 'MBA', '2023', 75.00, '', 1, '2023-09-29 10:37:15', 0, NULL, 0, NULL, 1),
(18591, 14563, '3', 'D G vaishnav ', '', 'B com corporate secretary ', '2021', 65.00, '', 1, '2023-09-29 10:37:45', 0, NULL, 0, NULL, 1),
(18592, 14562, '4', 'University of Madras distance education ', '', 'MBA', '2022', 73.00, '', 1, '2023-09-29 10:42:07', 0, NULL, 0, NULL, 1),
(18593, 14564, '4', 'Madras University ', '', 'MSc cs', '2013', 77.00, '', 1, '2023-09-29 11:34:17', 0, NULL, 0, NULL, 1),
(18594, 14564, '3', 'Madras University ', '', 'BSc cs', '2011', 75.00, '', 1, '2023-09-29 11:34:45', 0, NULL, 0, NULL, 1),
(18595, 14564, '2', 'Matriculation ', '', '', '2007', 77.00, '', 1, '2023-09-29 11:35:12', 0, NULL, 0, NULL, 1),
(18596, 14564, '1', 'Matriculation ', '', '', '2005', 81.00, '', 1, '2023-09-29 11:35:44', 0, NULL, 0, NULL, 1),
(18597, 14565, '4', 'Anna University ', '', 'MCA', '2021', 70.00, '', 1, '2023-09-29 11:37:21', 0, NULL, 0, NULL, 1),
(18598, 11018, '4', 'madras university', '', 'physics', '2022', 75.00, '', 1, '2023-09-29 11:41:40', 0, NULL, 0, NULL, 1),
(18599, 11018, '3', 'the new college', '', 'physics', '2020', 70.00, '', 1, '2023-09-29 11:42:08', 0, NULL, 0, NULL, 1),
(18600, 14554, '3', 'Sathyabama university ', '', 'BE Mechanical ', '2023', 8.20, '', 1, '2023-09-29 12:16:04', 0, NULL, 0, NULL, 1),
(18601, 14567, '3', 'Anna University ', '', 'BE', '2017', 67.00, '', 1, '2023-09-29 12:42:27', 0, NULL, 0, NULL, 1),
(18602, 14569, '1', 'tamilnadu staye boa ', '', '', '2014', 90.20, '', 1, '2023-09-29 12:51:55', 0, NULL, 0, NULL, 1),
(18603, 14569, '2', 'tamil nadu state board', '', '', '2016', 83.00, '', 1, '2023-09-29 12:52:32', 0, NULL, 0, NULL, 1),
(18604, 14569, '3', 'anna university', '', 'btech leather te ', '2020', 60.00, '', 1, '2023-09-29 12:53:05', 0, NULL, 0, NULL, 1),
(18605, 14569, '4', 'madras university', '', 'mba hrm', '2023', 72.00, '', 1, '2023-09-29 12:53:35', 0, NULL, 0, NULL, 1),
(18606, 14568, '3', 'Madras University', '', 'B.com', '2012', 58.00, '', 1, '2023-09-29 12:59:11', 0, NULL, 0, NULL, 1),
(18607, 14570, '3', 'Karunya university', '', 'B.tech', '2017', 65.00, '', 1, '2023-09-29 01:31:45', 0, NULL, 0, NULL, 1),
(18608, 14571, '3', 'madras University ', '', 'bcom', '2022', 8.30, '', 1, '2023-09-29 02:52:25', 0, NULL, 0, NULL, 1),
(18609, 14572, '4', 'Vel tech University ', '', 'Master of arts ', '2023', 87.00, '', 1, '2023-09-29 03:10:58', 0, NULL, 0, NULL, 1),
(18610, 14572, '3', 'Thiruvalluvar University ', '', 'BA', '2020', 70.00, '', 1, '2023-09-29 03:11:29', 0, NULL, 0, NULL, 1),
(18611, 14575, '4', 'Pondicherry University ', '', 'MBA (Finance)', '2023', 87.00, '', 1, '2023-09-30 10:56:29', 0, NULL, 0, NULL, 1),
(18612, 14576, '3', 'Deemed Unversity', '', 'B. Com CS', '2019', 70.00, '', 1, '2023-09-30 11:26:28', 1, '2023-09-30 11:29:23', 0, NULL, 1),
(18613, 14576, '1', 'Government girls higher secondry school', '', '', '2014', 57.00, '', 1, '2023-09-30 11:27:20', 1, '2023-09-30 11:29:09', 0, NULL, 1),
(18614, 14576, '2', 'Government girls higer secondry school', '', '', '2016', 68.00, '', 1, '2023-09-30 11:28:38', 0, NULL, 0, NULL, 1),
(18615, 14576, '4', 'Madras Unversity', '', 'Mba', '2021', 75.00, '', 1, '2023-09-30 11:30:09', 0, NULL, 0, NULL, 1),
(18616, 14573, '3', 'Women\'s christian college ', '', 'BSc Computer science ', '2021', 62.00, '', 1, '2023-09-30 11:44:41', 0, NULL, 0, NULL, 1),
(18617, 14577, '5', 'sowdambika polytechnic college', '', 'diploma mechanical engineer', '2021', 67.00, '', 1, '2023-09-30 12:02:51', 0, NULL, 0, NULL, 1),
(18618, 14578, '3', 'autonomous', '', 'b.com gen', '2021', 75.00, '', 1, '2023-09-30 01:23:56', 0, NULL, 0, NULL, 1),
(18619, 14579, '4', 'Periyar university ', '', 'Ma English ', '2015', 63.00, '', 1, '2023-09-30 04:04:02', 0, NULL, 0, NULL, 1),
(18620, 14582, '3', 'Automous', '', 'B.com', '2018', 69.00, '', 1, '2023-09-30 10:14:41', 1, '2023-09-30 10:28:23', 0, NULL, 0),
(18621, 14582, '4', 'Institute of cost and management accountants', '', 'Inter', '2022', 50.00, '', 1, '2023-09-30 10:27:34', 1, '2023-09-30 10:28:19', 0, NULL, 0),
(18622, 14582, '1', 'Matricalutaion higher secondary school', '', '', '2013', 75.00, '', 1, '2023-09-30 10:30:28', 0, NULL, 0, NULL, 1),
(18623, 14582, '2', 'Matriculation higher secondary school ', '', '', '2015', 85.00, '', 1, '2023-09-30 10:31:09', 0, NULL, 0, NULL, 1),
(18624, 14582, '3', 'Automous ', '', 'B.com', '2018', 70.00, '', 1, '2023-09-30 10:31:38', 0, NULL, 0, NULL, 1),
(18625, 14582, '4', 'Institute of cost and management accountant', '', 'Inter group 1', '0000', 10.00, '', 1, '2023-09-30 10:34:08', 0, NULL, 0, NULL, 1),
(18626, 14585, '1', 'State board', '', '', '2013', 69.00, '', 1, '2023-10-02 09:51:06', 0, NULL, 0, NULL, 1),
(18627, 14585, '2', 'State board ', '', '', '2016', 73.00, '', 1, '2023-10-02 09:52:49', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(18628, 14585, '3', 'University of madras', '', 'B.com(general)', '2019', 71.00, '', 1, '2023-10-02 09:54:31', 0, NULL, 0, NULL, 1),
(18629, 14585, '4', 'University of madras ', '', 'M.com(general)', '2021', 75.00, '', 1, '2023-10-02 09:55:38', 0, NULL, 0, NULL, 1),
(18630, 14583, '1', 'Karnataka board of education ', '', '', '2018', 86.72, '', 1, '2023-10-03 08:54:07', 0, NULL, 0, NULL, 1),
(18631, 14580, '4', 'Annamalai university', '', 'M. Com pursing', '2019', 78.00, '', 1, '2023-10-03 10:01:27', 0, NULL, 0, NULL, 1),
(18632, 14587, '4', 'Bharathi dasan university ', '', 'MBA', '2022', 69.00, '', 1, '2023-10-03 10:09:57', 0, NULL, 0, NULL, 1),
(18633, 14588, '3', 'Anna University ', '', 'BE - Electrical and Electronics Engineering ', '2020', 70.90, '', 1, '2023-10-03 10:54:23', 0, NULL, 0, NULL, 1),
(18634, 14589, '2', 'HINDU HR SEC SCHOOL ', '', '', '2014', 50.00, '', 1, '2023-10-03 11:04:57', 0, NULL, 0, NULL, 1),
(18635, 14591, '5', 'TNDTE', '', 'Diploma in Computer science engineering ', '2023', 61.00, '', 1, '2023-10-03 11:55:05', 0, NULL, 0, NULL, 1),
(18636, 14593, '5', 'don bosoco', '', 'me', '2018', 80.00, '', 1, '2023-10-03 12:04:33', 0, NULL, 0, NULL, 1),
(18637, 14586, '3', 'madras university', '', 'b.com', '2021', 74.00, '', 1, '2023-10-03 12:12:29', 0, NULL, 0, NULL, 1),
(18638, 14594, '3', 'University of Madras ', '', 'B.Sc ( Software Applications )', '2020', 76.00, '', 1, '2023-10-03 12:12:29', 0, NULL, 0, NULL, 1),
(18639, 14594, '2', 'State Board ', '', '', '2017', 50.00, '', 1, '2023-10-03 12:12:56', 0, NULL, 0, NULL, 1),
(18640, 14595, '3', 'madars university ', '', 'bca', '2020', 63.00, '', 1, '2023-10-03 01:14:30', 0, NULL, 0, NULL, 1),
(18641, 14597, '1', 'Satate board ', '', '', '2016', 85.00, '', 1, '2023-10-03 01:23:26', 0, NULL, 0, NULL, 1),
(18642, 14597, '2', 'Satate board ', '', '', '2018', 76.00, '', 1, '2023-10-03 01:23:56', 0, NULL, 0, NULL, 1),
(18643, 14597, '3', 'Anna University ', '', 'BE-cse', '2022', 80.00, '', 1, '2023-10-03 01:24:18', 0, NULL, 0, NULL, 1),
(18644, 14598, '1', 'state board', '', '', '2015', 58.00, '', 1, '2023-10-03 01:47:15', 0, NULL, 0, NULL, 1),
(18645, 14598, '5', 'anna unirvercity', '', 'cse', '2020', 79.00, '', 1, '2023-10-03 01:48:26', 0, NULL, 0, NULL, 1),
(18646, 14598, '3', 'anna university', '', 'b.e cse', '2023', 85.00, '', 1, '2023-10-03 01:49:12', 0, NULL, 0, NULL, 1),
(18647, 14599, '3', 'Madurai Kamaraj University', '', 'bca', '2023', 74.00, '', 1, '2023-10-03 02:58:41', 0, NULL, 0, NULL, 1),
(18648, 14600, '3', 'Madras university', '', 'BCA', '2022', 80.00, '', 1, '2023-10-03 03:15:49', 0, NULL, 0, NULL, 1),
(18649, 14602, '4', 'Measi institute of information technology ', '', 'MCA ', '2022', 70.00, '', 1, '2023-10-03 04:34:39', 0, NULL, 0, NULL, 1),
(18650, 14603, '3', 'Anna university', '', 'BE', '2021', 7.76, '', 1, '2023-10-03 05:08:32', 0, NULL, 0, NULL, 1),
(18651, 14605, '3', 'Davangere ', '', 'BB A', '2023', 8.01, '', 1, '2023-10-04 10:35:49', 0, NULL, 0, NULL, 1),
(18652, 14605, '1', 'Central board of education ', '', 'BBA', '2020', 69.00, '', 1, '2023-10-04 10:52:35', 0, NULL, 0, NULL, 1),
(18653, 14606, '4', 'Bharathidasan University tiruchirapalli ', '', 'M.com', '2023', 70.00, '', 1, '2023-10-04 10:52:51', 0, NULL, 0, NULL, 1),
(18654, 14607, '4', 'Pondicherry University', '', 'M. com', '2023', 74.00, '', 1, '2023-10-04 11:09:09', 0, NULL, 0, NULL, 1),
(18655, 14607, '3', 'Thiruvalluvar University', '', 'B. com', '2021', 76.00, '', 1, '2023-10-04 11:09:55', 0, NULL, 0, NULL, 1),
(18656, 14607, '2', 'State board Tamilnadu ', '', '', '2018', 97.25, '', 1, '2023-10-04 11:10:23', 0, NULL, 0, NULL, 1),
(18657, 14610, '4', 'Vels University ', '', 'MBA Business Analytics ', '2023', 73.00, '', 1, '2023-10-04 11:30:21', 0, NULL, 0, NULL, 1),
(18658, 14611, '4', 'Vels university ', '', 'MBA buisness analytics ', '2023', 75.00, '', 1, '2023-10-04 11:31:42', 0, NULL, 0, NULL, 1),
(18659, 14609, '4', 'Madras university', '', 'MBA', '2023', 75.00, '', 1, '2023-10-04 11:31:56', 0, NULL, 0, NULL, 1),
(18660, 14611, '3', 'Karpagam college of engineering ', '', 'BE', '2020', 72.30, '', 1, '2023-10-04 11:32:27', 0, NULL, 0, NULL, 1),
(18661, 14610, '3', 'Vels University ', '', 'B.com computer Application ', '2021', 76.00, '', 1, '2023-10-04 11:32:27', 0, NULL, 0, NULL, 1),
(18662, 14609, '3', 'Anna university', '', 'B.E CSE', '2021', 75.00, '', 1, '2023-10-04 11:32:48', 0, NULL, 0, NULL, 1),
(18663, 14612, '3', 'Loyola college ', '', 'B.A french Literature ', '2019', 60.00, '', 1, '2023-10-04 11:33:11', 0, NULL, 0, NULL, 1),
(18664, 14609, '2', 'St marys angelo indian higher secondary school', '', '', '2017', 60.00, '', 1, '2023-10-04 11:33:42', 0, NULL, 0, NULL, 1),
(18665, 14612, '4', 'Vels University ', '', 'M.B.A Business Analytics ', '2023', 70.00, '', 1, '2023-10-04 11:34:11', 0, NULL, 0, NULL, 1),
(18666, 14609, '1', 'St marys angelo indian higher secondary school', '', '', '2015', 70.00, '', 1, '2023-10-04 11:34:25', 0, NULL, 0, NULL, 1),
(18667, 14608, '2', 'Sree Venkateswarar Matriculation Higher Secondary School ', '', '', '2020', 54.60, '', 1, '2023-10-04 11:41:43', 1, '2023-10-04 11:47:10', 0, NULL, 0),
(18668, 14566, '3', 'Anna university', '', 'BE', '2012', 70.00, '', 1, '2023-10-04 11:42:10', 0, NULL, 0, NULL, 1),
(18669, 14596, '3', 'Madras University ', '', 'B.sc Computer Science ', '2023', 76.00, '', 1, '2023-10-04 11:43:03', 0, NULL, 0, NULL, 1),
(18670, 14608, '3', 'SRM Ramapuram', '', 'BBA', '2023', 7.62, '', 1, '2023-10-04 11:44:09', 1, '2023-10-04 11:45:26', 0, NULL, 1),
(18671, 14613, '3', 'Mgr university ', '', 'Bsc', '2018', 70.00, '', 1, '2023-10-04 12:13:01', 0, NULL, 0, NULL, 1),
(18672, 14614, '3', 'Anna University ', '', 'BE', '2023', 7.50, '', 1, '2023-10-04 12:36:54', 1, '2023-10-04 12:37:26', 0, NULL, 0),
(18673, 14614, '3', 'Anna University ', '', 'BE', '2023', 7.50, '', 1, '2023-10-04 12:37:35', 0, NULL, 0, NULL, 1),
(18674, 14616, '3', 'Periyar university ', '', 'B.SC Computer Science', '2019', 63.00, '', 1, '2023-10-04 02:00:26', 0, NULL, 0, NULL, 1),
(18675, 14616, '1', 'State board ', '', '', '2014', 62.00, '', 1, '2023-10-04 02:01:23', 0, NULL, 0, NULL, 1),
(18676, 14616, '2', 'State board ', '', '', '2016', 50.00, '', 1, '2023-10-04 02:01:59', 0, NULL, 0, NULL, 1),
(18677, 14617, '4', 'madras university', '', 'mca', '2023', 81.00, '', 1, '2023-10-04 02:24:22', 0, NULL, 0, NULL, 1),
(18678, 14617, '3', 'madras university', '', 'bca', '2021', 84.00, '', 1, '2023-10-04 02:25:08', 0, NULL, 0, NULL, 1),
(18679, 14617, '2', 'state board', '', '', '2018', 75.30, '', 1, '2023-10-04 02:27:13', 0, NULL, 0, NULL, 1),
(18680, 14617, '1', 'state board', '', '', '2016', 89.40, '', 1, '2023-10-04 02:27:48', 0, NULL, 0, NULL, 1),
(18681, 14621, '4', 'mgr university', '', 'mca', '2022', 80.00, '', 1, '2023-10-05 10:58:20', 0, NULL, 0, NULL, 1),
(18682, 14620, '3', 'Madras University', '', 'BCA', '2020', 58.00, '', 1, '2023-10-05 11:10:16', 0, NULL, 0, NULL, 1),
(18683, 14623, '3', 'Madras University ', '', 'Bcom', '2008', 65.00, '', 1, '2023-10-05 11:19:39', 0, NULL, 0, NULL, 1),
(18684, 14623, '2', 'Matriculation ', '', '', '2005', 65.00, '', 1, '2023-10-05 11:20:02', 0, NULL, 0, NULL, 1),
(18685, 14623, '1', 'Matriculation ', '', '', '2003', 50.00, '', 1, '2023-10-05 11:20:37', 0, NULL, 0, NULL, 1),
(18686, 14624, '3', 'Madras University ', '', 'Ba', '2022', 89.00, '', 1, '2023-10-05 11:30:09', 0, NULL, 0, NULL, 1),
(18687, 14625, '3', 'Madras University ', '', 'Ba en', '2019', 62.00, '', 1, '2023-10-05 12:03:26', 0, NULL, 0, NULL, 1),
(18688, 14626, '3', 'Madras University ', '', 'B.com (CS)', '2022', 81.00, '', 1, '2023-10-05 12:18:38', 0, NULL, 0, NULL, 1),
(18689, 14584, '3', 'Madras university', '', 'B.com', '2017', 59.00, '', 1, '2023-10-05 12:49:46', 0, NULL, 0, NULL, 1),
(18690, 14627, '3', 'University of madras', '', 'B.com accounting and finance', '2015', 78.00, '', 1, '2023-10-05 12:56:00', 0, NULL, 0, NULL, 1),
(18691, 14629, '3', 'psg collage of arts and sc ', '', 'bba logistics', '2022', 70.00, '', 1, '2023-10-05 01:26:17', 0, NULL, 0, NULL, 1),
(18692, 14631, '3', 'Madras University ', '', 'bsc computer science ', '2021', 86.00, '', 1, '2023-10-05 05:16:06', 0, NULL, 0, NULL, 1),
(18693, 14632, '3', 'Anna university', '', 'B. E Mechanical', '2022', 80.00, '', 1, '2023-10-06 10:57:12', 0, NULL, 0, NULL, 1),
(18694, 14632, '2', 'State border', '', '', '2018', 61.00, '', 1, '2023-10-06 10:57:44', 0, NULL, 0, NULL, 1),
(18695, 14634, '3', 'Annauniversity', '', 'Bachelor of Engineering ', '2018', 70.00, '', 1, '2023-10-06 11:12:45', 0, NULL, 0, NULL, 1),
(18696, 14633, '1', 'State board', '', '', '2021', 65.00, '', 1, '2023-10-06 11:19:36', 0, NULL, 0, NULL, 1),
(18697, 14635, '3', 'vels University ', '', 'B.E computer science engineering ', '2023', 66.00, '', 1, '2023-10-06 11:26:36', 0, NULL, 0, NULL, 1),
(18698, 14636, '5', 'IRT ', '', 'DEEE', '2021', 77.00, '', 1, '2023-10-06 11:27:04', 0, NULL, 0, NULL, 1),
(18699, 14637, '3', 'Anna University ', '', 'BE', '2019', 6.70, '', 1, '2023-10-06 11:38:25', 0, NULL, 0, NULL, 1),
(18700, 14638, '3', 'Madras University ', '', 'B.Com Corporate Secretaryship ', '2023', 69.00, '', 1, '2023-10-06 11:50:35', 0, NULL, 0, NULL, 1),
(18701, 14640, '3', 'University College of engineering panruti', '', 'Engineering', '2022', 7.94, '', 1, '2023-10-06 02:00:47', 0, NULL, 0, NULL, 1),
(18702, 14640, '2', 'Vetrivikaas boy higher secondary school', '', '', '2018', 60.70, '', 1, '2023-10-06 02:02:02', 0, NULL, 0, NULL, 1),
(18703, 14640, '1', 'Indo American matriculation higher secondary school', '', '', '2016', 80.00, '', 1, '2023-10-06 02:02:38', 0, NULL, 0, NULL, 1),
(18704, 14641, '3', 'Madrass University ', '', 'Bcom', '2018', 55.00, '', 1, '2023-10-06 02:24:47', 0, NULL, 0, NULL, 1),
(18705, 14630, '3', 'quaide milleth college for men', '', 'bca', '2023', 76.00, '', 1, '2023-10-06 03:23:03', 0, NULL, 0, NULL, 1),
(18706, 14643, '4', 'University', '', 'M.com', '2023', 8.18, '', 1, '2023-10-07 08:39:14', 0, NULL, 0, NULL, 1),
(18707, 14643, '4', 'University', '', 'M.com', '2023', 8.18, '', 1, '2023-10-07 08:40:03', 1, '2023-10-07 08:40:39', 0, NULL, 0),
(18708, 14644, '3', 'Pondicherry University ', '', 'B.Sc', '2022', 70.40, '', 1, '2023-10-07 10:22:44', 0, NULL, 0, NULL, 1),
(18709, 14644, '2', 'Tamilnadu State Board ', '', '', '2019', 65.00, '', 1, '2023-10-07 10:23:17', 0, NULL, 0, NULL, 1),
(18710, 14644, '1', 'Tamilnadu State Board ', '', '', '2017', 91.20, '', 1, '2023-10-07 10:23:41', 0, NULL, 0, NULL, 1),
(18711, 14645, '2', 'Government hr sec school', '', '', '2018', 78.00, '', 1, '2023-10-07 10:50:31', 0, NULL, 0, NULL, 1),
(18712, 14647, '3', 'Madras university', '', 'BBA', '2022', 68.00, '', 1, '2023-10-07 12:39:09', 0, NULL, 0, NULL, 1),
(18713, 14649, '4', 'Dr. Mgr university of arts and science', '', 'Msc', '2023', 79.17, '', 1, '2023-10-07 12:47:27', 0, NULL, 0, NULL, 1),
(18714, 14651, '4', 'Anna University', '', 'MBA', '2023', 83.00, '', 1, '2023-10-07 12:48:06', 0, NULL, 0, NULL, 1),
(18715, 14648, '3', 'Bharathidhasan University ', '', 'B.sc Mathematics ', '2019', 75.00, '', 1, '2023-10-07 12:53:37', 0, NULL, 0, NULL, 1),
(18716, 14651, '4', 'Anna University', '', 'MBA', '2023', 83.00, '', 1, '2023-10-07 12:53:56', 0, NULL, 0, NULL, 1),
(18717, 14650, '4', 'Madras university', '', 'MBA', '2022', 75.00, '', 1, '2023-10-07 12:59:38', 0, NULL, 0, NULL, 1),
(18718, 14646, '3', 'University ', '', 'B.Tech (IT)', '2015', 67.21, '', 1, '2023-10-07 01:16:52', 0, NULL, 0, NULL, 1),
(18719, 14646, '5', 'Board', '', 'Computer Technology ', '2011', 71.58, '', 1, '2023-10-07 01:18:46', 0, NULL, 0, NULL, 1),
(18720, 14646, '1', 'Board', '', '', '2008', 73.82, '', 1, '2023-10-07 01:19:27', 0, NULL, 0, NULL, 1),
(18721, 14653, '3', 'Anna University ', '', 'BE Mechanical ', '2020', 68.00, '', 1, '2023-10-07 03:46:12', 0, NULL, 0, NULL, 1),
(18722, 14655, '3', 'Annamalai University ', '', 'B.E Information Technology ', '2023', 75.00, '', 1, '2023-10-09 09:35:15', 0, NULL, 0, NULL, 1),
(18723, 14656, '4', 'Anna University ', '', 'MBA', '2023', 75.00, '', 1, '2023-10-09 10:15:09', 0, NULL, 0, NULL, 1),
(18724, 14657, '4', 'Bharathidasan ', '', 'Mba', '2023', 85.00, '', 1, '2023-10-09 10:32:32', 0, NULL, 0, NULL, 1),
(18725, 14658, '3', 'SSN COLLEGE OF ENGINEERING ', '', 'Bachelor of Education ', '2020', 74.30, '', 1, '2023-10-09 10:38:39', 0, NULL, 0, NULL, 1),
(18726, 14654, '3', 'Madras university', '', 'B.sc computer science', '2021', 75.00, '', 1, '2023-10-09 10:40:58', 0, NULL, 0, NULL, 1),
(18727, 14660, '4', 'niversity of madras', '', 'master of computer science', '2023', 89.00, '', 1, '2023-10-09 11:26:21', 0, NULL, 0, NULL, 1),
(18728, 14659, '3', 'madras university', '', 'bca', '2022', 67.00, '', 1, '2023-10-09 11:27:47', 0, NULL, 0, NULL, 1),
(18729, 14121, '3', 'Manonmaniyan Sundaranar University ', '', 'Bachelor of commerce ', '2021', 74.00, '', 1, '2023-10-09 11:27:57', 0, NULL, 0, NULL, 1),
(18730, 14661, '3', 'University of Madras ', '', 'B.sC cS', '2022', 69.00, '', 1, '2023-10-09 11:28:16', 0, NULL, 0, NULL, 1),
(18731, 14619, '3', 'Madras University ', '', 'BA history ', '2023', 65.00, '', 1, '2023-10-09 11:53:44', 0, NULL, 0, NULL, 1),
(18732, 14665, '3', 'Madras University ', '', 'B.com', '2023', 75.00, '', 1, '2023-10-09 12:08:02', 0, NULL, 0, NULL, 1),
(18733, 14664, '3', 'Madras University ', '', 'B.com (Accounting and finance)', '2019', 75.00, '', 1, '2023-10-09 12:10:10', 0, NULL, 0, NULL, 1),
(18734, 14667, '3', 'Bharathidasan University ', '', 'B.Com', '2023', 79.00, '', 1, '2023-10-09 01:35:14', 0, NULL, 0, NULL, 1),
(18735, 14662, '3', 'anna university', '', 'b e ece', '2020', 72.00, '', 1, '2023-10-09 01:40:35', 0, NULL, 0, NULL, 1),
(18736, 14662, '2', 'stateboard', '', '', '2016', 83.75, '', 1, '2023-10-09 01:41:58', 1, '2023-10-09 01:42:55', 0, NULL, 0),
(18737, 14662, '1', 'stateboard', '', '', '2014', 94.40, '', 1, '2023-10-09 01:42:27', 1, '2023-10-09 01:42:51', 0, NULL, 0),
(18738, 14668, '3', 'Karpagam institute of technology', '', 'BE', '2018', 68.30, '', 1, '2023-10-09 02:31:19', 0, NULL, 0, NULL, 1),
(18739, 14668, '2', 'Govt higher secondary school', '', '', '2014', 81.00, '', 1, '2023-10-09 02:31:49', 0, NULL, 0, NULL, 1),
(18740, 14666, '3', 'Anna University', '', 'BE ', '2022', 75.00, '', 1, '2023-10-09 02:36:14', 0, NULL, 0, NULL, 1),
(18741, 14669, '3', 'Tamilnadu University ', '', 'Bcom ', '2011', 64.00, '', 1, '2023-10-09 02:46:51', 0, NULL, 0, NULL, 1),
(18742, 14671, '3', 'Bharathidasan University', '', 'Bsc forensic science', '2023', 81.00, '', 1, '2023-10-09 03:58:45', 0, NULL, 0, NULL, 1),
(18743, 14671, '2', 'State board', '', '', '2019', 75.00, '', 1, '2023-10-09 03:59:51', 0, NULL, 0, NULL, 1),
(18744, 14671, '1', 'State board', '', '', '2017', 93.00, '', 1, '2023-10-09 04:00:17', 0, NULL, 0, NULL, 1),
(18745, 14672, '3', 'Anna university ', '', 'B.E Computer Science and Engineering', '2012', 6.20, '', 1, '2023-10-09 04:16:31', 0, NULL, 0, NULL, 1),
(18746, 14663, '3', 'patrician', '', 'bcom', '2022', 70.00, '', 1, '2023-10-09 04:36:38', 0, NULL, 0, NULL, 1),
(18747, 14670, '3', 'thiruvallluvar university', '', 'b.sc', '2021', 76.25, '', 1, '2023-10-09 04:42:31', 0, NULL, 0, NULL, 1),
(18748, 14670, '4', 'annamalai university', '', 'msc zoology', '2023', 85.00, '', 1, '2023-10-09 04:43:20', 0, NULL, 0, NULL, 1),
(18749, 14673, '3', 'Matric ', '', 'Bsc', '2022', 70.00, '', 1, '2023-10-09 06:07:02', 0, NULL, 0, NULL, 1),
(18750, 14676, '3', 'Anna university ', '', 'BE Mechanical engineering ', '2022', 77.00, '', 1, '2023-10-09 06:37:02', 0, NULL, 0, NULL, 1),
(18751, 14675, '3', 'Madras University ', '', 'B.sc  Mathematics ', '2020', 80.00, '', 1, '2023-10-09 06:49:24', 0, NULL, 0, NULL, 1),
(18752, 14677, '3', 'Bharathidasan University ', '', 'B com', '2023', 70.84, '', 1, '2023-10-09 07:16:03', 0, NULL, 0, NULL, 1),
(18753, 14674, '4', 'University', '', 'MA English', '2023', 68.40, '', 1, '2023-10-10 10:29:05', 0, NULL, 0, NULL, 1),
(18754, 14678, '3', 'universit ', '', 'b.a english literatuer', '2022', 80.00, '', 1, '2023-10-10 10:35:54', 0, NULL, 0, NULL, 1),
(18755, 14679, '4', 'Hindustan college of Arts and science ', '', 'M.sc(it)', '2022', 85.00, '', 1, '2023-10-10 10:41:56', 0, NULL, 0, NULL, 1),
(18756, 14680, '5', 'VSVN Polytechnic college ', '', 'ECE', '2024', 67.41, '', 1, '2023-10-10 10:49:40', 0, NULL, 0, NULL, 1),
(18757, 14680, '3', 'Alagappa University Karaikudi ', '', 'BCA', '2024', 67.00, '', 1, '2023-10-10 10:50:46', 0, NULL, 0, NULL, 1),
(18758, 14681, '3', 'Thiruvalluvar University ', '', 'BSc maths', '2017', 5.40, '', 1, '2023-10-10 11:18:20', 0, NULL, 0, NULL, 1),
(18759, 14681, '4', 'thiruvalluvar universitY', '', 'msc computerscience', '2023', 68.00, '', 104, '2023-10-10 11:20:39', 0, NULL, 0, NULL, 1),
(18760, 14686, '3', 'Pondicherry University ', '', 'Btech information technology ', '2023', 80.00, '', 1, '2023-10-10 11:50:59', 0, NULL, 0, NULL, 1),
(18761, 14686, '1', 'Tamil board standard ', '', '', '2019', 48.00, '', 1, '2023-10-10 11:51:23', 0, NULL, 0, NULL, 1),
(18762, 14686, '2', 'Tamil state board ', '', '', '2017', 78.00, '', 1, '2023-10-10 11:51:49', 0, NULL, 0, NULL, 1),
(18763, 14683, '3', 'Muhammad shathak collage ', '', 'B.com ', '2023', 65.00, '', 1, '2023-10-10 11:59:57', 0, NULL, 0, NULL, 1),
(18764, 14683, '4', 'Muhammad shathak collage ', '', 'B.com', '2023', 65.00, '', 1, '2023-10-10 12:01:20', 0, NULL, 0, NULL, 1),
(18765, 14684, '3', 'Periyar University ', '', 'Bsc cs', '2021', 66.00, '', 1, '2023-10-10 12:12:16', 0, NULL, 0, NULL, 1),
(18766, 14682, '3', 'Ann university ', '', 'B.e computer science ', '2018', 60.00, '', 1, '2023-10-10 12:14:49', 0, NULL, 0, NULL, 1),
(18767, 14687, '4', 'Vels university ', '', 'MBA (Distance)', '2023', 75.00, '', 1, '2023-10-10 12:21:16', 0, NULL, 0, NULL, 1),
(18768, 14688, '3', 'Smk fomra institute of technology ', '', 'B.E MECH', '2021', 7.68, '', 1, '2023-10-10 12:33:00', 0, NULL, 0, NULL, 1),
(18769, 14685, '3', 'Don Bosco Art\'s and Science College ', '', 'B.com corporate secretaryship ', '2023', 65.00, '', 1, '2023-10-10 12:46:40', 0, NULL, 0, NULL, 1),
(18770, 14689, '3', 'Anna University ', '', 'B. Tech. Petroleum Engineering and Technology ', '2023', 87.20, '', 1, '2023-10-10 12:58:14', 0, NULL, 0, NULL, 1),
(18771, 14690, '3', 'University', '', 'Degree', '2023', 8.30, '', 1, '2023-10-10 01:33:19', 0, NULL, 0, NULL, 1),
(18772, 14692, '3', 'Tamilnadu teacher education University', '', 'B.A ,B.ed.,', '2023', 80.00, '', 1, '2023-10-10 04:09:10', 0, NULL, 0, NULL, 1),
(18773, 14695, '3', 'Alagappa University ', '', 'B.A-English', '2022', 85.54, '', 1, '2023-10-10 06:50:20', 0, NULL, 0, NULL, 1),
(18774, 14696, '3', 'Madras university ', '', 'B.A Tourism and Travel Management ', '2023', 65.00, '', 1, '2023-10-10 11:28:44', 0, NULL, 0, NULL, 1),
(18775, 14697, '2', 'Stateboard', '', '', '2006', 65.00, '', 1, '2023-10-11 09:55:34', 0, NULL, 0, NULL, 1),
(18776, 14698, '3', 'Madras University ', '', 'BBA', '2023', 75.00, '', 1, '2023-10-11 10:53:07', 0, NULL, 0, NULL, 1),
(18777, 14701, '4', 'Anna University ', '', 'MCA', '2016', 8.34, '', 1, '2023-10-11 11:14:16', 0, NULL, 0, NULL, 1),
(18778, 14700, '3', 'madraas university', '', 'b com general', '2017', 56.00, '', 1, '2023-10-11 11:16:36', 0, NULL, 0, NULL, 1),
(18779, 14699, '3', 'Madras University ', '', 'B.com (cs)', '2023', 70.00, '', 1, '2023-10-11 11:29:08', 0, NULL, 0, NULL, 1),
(18780, 14704, '3', 'Madras University ', '', 'Journalism ', '2021', 70.00, '', 1, '2023-10-11 11:31:25', 0, NULL, 0, NULL, 1),
(18781, 14703, '3', 'JHAAAGarsen', '', 'bcom', '2015', 50.00, '', 104, '2023-10-11 11:36:07', 0, NULL, 0, NULL, 1),
(18782, 14702, '3', 'Thiruvalluvar University ', '', 'B.sc computer science ', '2020', 63.00, '', 1, '2023-10-11 11:39:46', 0, NULL, 0, NULL, 1),
(18783, 14705, '3', 'Autonomous ', '', 'B.com', '2022', 60.00, '', 1, '2023-10-11 12:34:52', 0, NULL, 0, NULL, 1),
(18784, 14706, '3', 'sirissac newtom college of engineering', '', 'be', '2021', 74.00, '', 1, '2023-10-11 02:45:28', 0, NULL, 0, NULL, 1),
(18785, 14707, '3', 'Madras University', '', 'BBA', '2018', 76.00, '', 1, '2023-10-11 02:58:19', 0, NULL, 0, NULL, 1),
(18786, 14708, '5', 'Vignan instute', '', 'DpN', '2016', 62.00, '', 1, '2023-10-11 03:27:24', 0, NULL, 0, NULL, 1),
(18787, 14709, '5', 'Vellore palytechnic college ', '', 'DME ', '2016', 72.00, '', 1, '2023-10-11 03:37:35', 0, NULL, 0, NULL, 1),
(18788, 14710, '1', 'State board ', '', 'BE-EEE', '2016', 74.00, '', 1, '2023-10-11 03:42:17', 1, '2023-10-11 03:44:37', 0, NULL, 0),
(18789, 14711, '1', 'tamil nadu state board', '', '', '2016', 71.00, '', 1, '2023-10-11 03:44:37', 0, NULL, 0, NULL, 1),
(18790, 14710, '2', 'Tamilnadu State board ', '', '', '2018', 78.00, '', 1, '2023-10-11 03:45:04', 1, '2023-10-11 03:46:07', 0, NULL, 0),
(18791, 14711, '2', 'tamil nadu state board', '', '', '2018', 62.00, '', 1, '2023-10-11 03:45:08', 0, NULL, 0, NULL, 1),
(18792, 14710, '1', 'Tamilnadu State board ', '', '', '2016', 74.00, '', 1, '2023-10-11 03:45:51', 0, NULL, 0, NULL, 1),
(18793, 14711, '3', 'anna university', '', 'be', '2022', 75.00, '', 1, '2023-10-11 03:46:22', 1, '2023-10-11 03:47:07', 0, NULL, 1),
(18794, 14710, '2', 'Tamilnadu State Board ', '', '', '2018', 78.00, '', 1, '2023-10-11 03:46:25', 0, NULL, 0, NULL, 1),
(18795, 14710, '3', 'Anna University ', '', 'BE', '2022', 79.00, '', 1, '2023-10-11 03:47:24', 0, NULL, 0, NULL, 1),
(18796, 14712, '2', 'northwick girls\' higher secondary school', '', '', '2020', 85.00, '', 1, '2023-10-11 04:31:10', 0, NULL, 0, NULL, 1),
(18797, 14713, '3', 'Ramakrishna mission Vivekananda College ', '', 'B.com general ', '2013', 68.00, '', 1, '2023-10-11 04:31:33', 0, NULL, 0, NULL, 1),
(18798, 14716, '4', 'Madras University ', '', 'Bcom ', '2020', 60.00, '', 1, '2023-10-11 05:20:09', 0, NULL, 0, NULL, 1),
(18799, 14717, '3', 'Autonomous', '', 'B.com Accounting Fiance', '2022', 68.00, '', 1, '2023-10-11 09:14:58', 0, NULL, 0, NULL, 1),
(18800, 14718, '3', 'dr. mgr university', '', 'b. tech mechanical', '2018', 65.00, '', 1, '2023-10-11 09:39:34', 0, NULL, 0, NULL, 1),
(18801, 14718, '1', 'velammal matriculation higher sec school', '', '', '2012', 79.00, '', 1, '2023-10-11 09:40:47', 0, NULL, 0, NULL, 1),
(18802, 14718, '2', 'green valley matric hr sec school', '', '', '2014', 52.00, '', 1, '2023-10-11 09:41:42', 0, NULL, 0, NULL, 1),
(18803, 14722, '3', 'Anna university chennai', '', 'Bachelor of Engineering', '2021', 7.40, '', 1, '2023-10-12 10:38:03', 0, NULL, 0, NULL, 1),
(18804, 14722, '2', 'State board', '', '', '2017', 71.02, '', 1, '2023-10-12 10:40:03', 0, NULL, 0, NULL, 1),
(18805, 14722, '1', 'State board', '', '', '2015', 87.04, '', 1, '2023-10-12 10:40:43', 0, NULL, 0, NULL, 1),
(18806, 14723, '3', 'Madras University ', '', 'B.com', '2023', 75.00, '', 1, '2023-10-12 10:43:37', 0, NULL, 0, NULL, 1),
(18807, 14725, '3', 'Sethu institute of technology ', '', 'BE', '2021', 7.14, '', 1, '2023-10-12 10:46:20', 0, NULL, 0, NULL, 1),
(18808, 14725, '1', 'M M Hr sec school ', '', '', '2015', 89.00, '', 1, '2023-10-12 10:47:18', 0, NULL, 0, NULL, 1),
(18809, 14725, '2', 'M M hr sec school ', '', '', '2017', 71.00, '', 1, '2023-10-12 10:47:43', 0, NULL, 0, NULL, 1),
(18810, 14721, '3', 'Sree Muthukumarswamy college ', '', 'Bsc cs ', '2019', 52.00, '', 1, '2023-10-12 11:02:39', 0, NULL, 0, NULL, 1),
(18811, 14721, '1', 'St Joseph\'s girls HIGHER secondary school ', '', '', '2016', 75.00, '', 1, '2023-10-12 11:03:22', 0, NULL, 0, NULL, 1),
(18812, 14726, '1', 'St pauls hss school     kumaran I.T.I', '', '', '2010', 40.00, '', 1, '2023-10-12 11:10:47', 0, NULL, 0, NULL, 1),
(18813, 14727, '1', 'Board of Tamilnadu Education', '', '', '1991', 72.00, '', 1, '2023-10-12 11:12:52', 0, NULL, 0, NULL, 1),
(18814, 14727, '2', 'Board of Tamilnadu Education', '', '', '1994', 65.00, '', 1, '2023-10-12 11:13:34', 0, NULL, 0, NULL, 1),
(18815, 14727, '5', 'Madurai Kamaraj University', '', 'DECE', '1997', 75.00, '', 1, '2023-10-12 11:14:17', 0, NULL, 0, NULL, 1),
(18816, 14720, '2', 'State board ', '', '', '2018', 60.00, '', 1, '2023-10-12 11:15:13', 0, NULL, 0, NULL, 1),
(18817, 14727, '3', 'Annamalai University', '', 'BCA', '2009', 74.00, '', 1, '2023-10-12 11:15:17', 0, NULL, 0, NULL, 1),
(18818, 14720, '3', 'Thiruvalluvar University ', '', 'BCA', '2021', 75.00, '', 1, '2023-10-12 11:15:37', 0, NULL, 0, NULL, 1),
(18819, 14729, '3', 'Autonomous', '', 'B.sc Advanced Zoology and biotechnology', '2020', 77.00, '', 1, '2023-10-12 11:40:58', 0, NULL, 0, NULL, 1),
(18820, 14733, '3', 'Anna university', '', 'B. E', '2019', 6.50, '', 1, '2023-10-12 11:59:36', 0, NULL, 0, NULL, 1),
(18821, 14732, '1', 'State board', '', '', '2013', 74.00, '', 1, '2023-10-12 11:59:48', 0, NULL, 0, NULL, 1),
(18822, 14732, '2', 'State board', '', '', '2015', 76.00, '', 1, '2023-10-12 12:01:18', 0, NULL, 0, NULL, 1),
(18823, 14732, '3', 'Madras university', '', 'BBA', '2018', 70.00, '', 1, '2023-10-12 12:01:49', 0, NULL, 0, NULL, 1),
(18824, 14732, '4', 'Pondichery university', '', 'MBA (finance)', '2021', 65.00, '', 1, '2023-10-12 12:04:07', 0, NULL, 0, NULL, 1),
(18825, 14731, '2', 'State board', '', '', '2012', 60.00, '', 1, '2023-10-12 12:10:18', 0, NULL, 0, NULL, 1),
(18826, 14728, '2', 'Moongibai goenka Girls HR sec school', '', 'B .com ', '2020', 84.00, '', 1, '2023-10-12 12:17:27', 0, NULL, 0, NULL, 1),
(18827, 14734, '3', 'University of Madras', '', 'B.Sc (Mathematics)', '2003', 45.00, '', 1, '2023-10-12 12:28:39', 0, NULL, 0, NULL, 1),
(18828, 14734, '2', 'State Board', '', '', '1998', 65.00, '', 1, '2023-10-12 12:29:17', 0, NULL, 0, NULL, 1),
(18829, 14735, '3', 'Anna University ', '', 'BE', '2014', 6.80, '', 1, '2023-10-12 12:32:26', 0, NULL, 0, NULL, 1),
(18830, 14739, '3', 'University of Madras ', '', 'Bachelor of business administration ', '2019', 60.00, '', 1, '2023-10-12 06:47:35', 0, NULL, 0, NULL, 1),
(18831, 14740, '3', 'Bharathidasan University', '', 'Bsc. Computer science', '2022', 73.00, '', 1, '2023-10-12 07:06:42', 0, NULL, 0, NULL, 1),
(18832, 14741, '3', 'Anna University', '', 'BE computer science engineering', '2021', 7.36, '', 1, '2023-10-12 07:06:44', 0, NULL, 0, NULL, 1),
(18833, 14742, '3', 'Dr. mgr University', '', 'BCA ', '2022', 70.00, '', 1, '2023-10-12 09:44:25', 0, NULL, 0, NULL, 1),
(18834, 14737, '3', 'Dhanalakshmi srinivasan collage of engineering Coimbatore ', '', 'BE-EEE ', '2022', 7.77, '', 1, '2023-10-13 10:50:25', 0, NULL, 0, NULL, 1),
(18835, 14744, '4', 'loyola college', '', 'data science', '2023', 86.00, '', 1, '2023-10-13 12:22:40', 0, NULL, 0, NULL, 1),
(18836, 14744, '3', 'calicut university', '', 'statistics', '2021', 79.00, '', 1, '2023-10-13 12:23:44', 0, NULL, 0, NULL, 1),
(18837, 14746, '3', 'Madras University ', '', 'B.Com(G)', '2018', 71.00, '', 1, '2023-10-13 12:28:36', 0, NULL, 0, NULL, 1),
(18838, 14746, '2', 'State board ', '', '', '2015', 82.00, '', 1, '2023-10-13 12:31:07', 0, NULL, 0, NULL, 1),
(18839, 14746, '1', 'State board ', '', '', '2013', 69.00, '', 1, '2023-10-13 12:32:03', 0, NULL, 0, NULL, 1),
(18840, 14748, '3', 'Madras University ', '', 'Bsc mathematics ', '2023', 85.00, '', 1, '2023-10-13 12:33:32', 0, NULL, 0, NULL, 1),
(18841, 14749, '3', 'Anna University ', '', 'B.E EEE', '2016', 60.00, '', 1, '2023-10-13 12:33:55', 0, NULL, 0, NULL, 1),
(18842, 14750, '1', 'Model matriculation Hr Sec School ', '', '', '2018', 84.60, '', 1, '2023-10-13 12:38:00', 0, NULL, 0, NULL, 1),
(18843, 14750, '2', 'PAK P HR SEC SCHOOL ', '', '', '2020', 66.40, '', 1, '2023-10-13 12:38:28', 0, NULL, 0, NULL, 1),
(18844, 14750, '3', 'Rajalakshmi institution of technology ', '', 'B.e.Computer Science and engineering ', '2024', 78.40, '', 1, '2023-10-13 12:38:59', 0, NULL, 0, NULL, 1),
(18845, 14747, '3', 'Alagappa University ', '', 'BA English ', '2022', 72.00, '', 1, '2023-10-13 12:39:36', 0, NULL, 0, NULL, 1),
(18846, 14752, '3', 'Anna University', '', 'B.Tech', '2023', 83.50, '', 1, '2023-10-13 12:45:52', 0, NULL, 0, NULL, 1),
(18847, 14752, '2', 'Tamilnadu Board of Education', '', '', '2019', 68.50, '', 1, '2023-10-13 12:46:37', 0, NULL, 0, NULL, 1),
(18848, 14752, '1', 'Tamilnadu Board of Education', '', '', '2017', 96.40, '', 1, '2023-10-13 12:46:56', 0, NULL, 0, NULL, 1),
(18849, 14743, '1', 'tamilnadu board of education', '', '', '2017', 76.40, '', 1, '2023-10-13 12:51:31', 0, NULL, 0, NULL, 1),
(18850, 14743, '2', 'tamilnadu board of education', '', '', '2019', 61.00, '', 1, '2023-10-13 12:52:08', 0, NULL, 0, NULL, 1),
(18851, 14743, '3', 'anna university', '', 'b.e-ece', '2023', 74.00, '', 1, '2023-10-13 12:53:15', 0, NULL, 0, NULL, 1),
(18852, 14745, '3', 'Anna University ', '', 'BE Cse', '2016', 66.00, '', 1, '2023-10-13 01:03:25', 0, NULL, 0, NULL, 1),
(18853, 14754, '3', 'Alagappa University,Karaikudi', '', 'BBA', '2022', 86.00, '', 1, '2023-10-13 01:57:47', 1, '2023-10-13 02:00:05', 0, NULL, 0),
(18854, 14754, '3', 'Alagappa University,Karaikudi', '', 'BBA', '2020', 86.00, '', 1, '2023-10-13 02:00:23', 0, NULL, 0, NULL, 1),
(18855, 14755, '4', 'Alagappa University, Karaikudi', '', 'MA( Economic) ', '2022', 82.00, '', 1, '2023-10-13 02:09:22', 0, NULL, 0, NULL, 1),
(18856, 14756, '3', 'GKM College of engineering  and technology', '', 'BE', '2018', 6.90, '', 1, '2023-10-13 03:04:00', 0, NULL, 0, NULL, 1),
(18857, 14759, '3', 'Manonmaniam sundaranar University, Tirunelveli ', '', 'BSC computer science ', '2023', 76.00, '', 1, '2023-10-13 04:05:55', 1, '2023-10-13 04:06:30', 0, NULL, 0),
(18858, 14759, '3', 'Manonmaniam sundaranar University, Tirunelveli ', '', 'BSC computer science ', '2023', 76.00, '', 1, '2023-10-13 04:07:25', 0, NULL, 0, NULL, 1),
(18859, 14757, '3', 'anna  university', '', 'bachelor of engineering in electrical and electron', '2023', 79.00, '', 1, '2023-10-13 04:14:56', 1, '2023-10-13 04:16:49', 0, NULL, 1),
(18860, 14760, '3', 'Women\'s Christian College', '', 'BA', '2017', 72.00, '', 1, '2023-10-13 04:16:16', 0, NULL, 0, NULL, 1),
(18861, 14760, '2', 'State board', '', '', '2014', 91.00, '', 1, '2023-10-13 04:17:00', 0, NULL, 0, NULL, 1),
(18862, 14760, '1', 'State board', '', '', '2012', 92.00, '', 1, '2023-10-13 04:17:34', 0, NULL, 0, NULL, 1),
(18863, 14761, '3', 'university', '', 'bca', '2022', 60.74, '', 1, '2023-10-13 04:26:01', 0, NULL, 0, NULL, 1),
(18864, 14758, '3', 'Anna University ', '', 'BE.Mechanical', '2023', 70.00, '', 1, '2023-10-13 11:28:09', 1, '2023-10-13 11:31:30', 0, NULL, 0),
(18865, 14758, '2', 'Government higher secondary school ', '', '', '2019', 55.00, '', 1, '2023-10-13 11:30:46', 1, '2023-10-13 11:32:09', 0, NULL, 0),
(18866, 14758, '1', 'Government higher secondary school ', '', '', '2017', 79.00, '', 1, '2023-10-13 11:32:39', 0, NULL, 0, NULL, 1),
(18867, 14758, '2', 'Government higher secondary school ', '', '', '2019', 55.00, '', 1, '2023-10-13 11:32:56', 0, NULL, 0, NULL, 1),
(18868, 14758, '3', 'Anna University ', '', 'BE.Mechanical', '2023', 70.00, '', 1, '2023-10-13 11:34:06', 0, NULL, 0, NULL, 1),
(18869, 14763, '3', 'Hindustan college of arts and science', '', 'B.Com Genera', '2023', 74.00, '', 1, '2023-10-14 10:50:02', 0, NULL, 0, NULL, 1),
(18870, 14763, '2', 'David Matriculation Higher secondary school ', '', '', '2020', 75.00, '', 1, '2023-10-14 10:50:47', 0, NULL, 0, NULL, 1),
(18871, 14763, '1', 'David Matriculation Higher secondary school ', '', '', '2018', 69.00, '', 1, '2023-10-14 10:51:12', 0, NULL, 0, NULL, 1),
(18872, 14764, '4', 'Anna university ', '', 'ME', '2019', 84.00, '', 1, '2023-10-14 11:05:38', 0, NULL, 0, NULL, 1),
(18873, 14765, '1', 'Meenakshi ramaswamy matric hr.sec school', '', '', '2016', 94.00, '', 1, '2023-10-14 11:13:32', 0, NULL, 0, NULL, 1),
(18874, 14765, '2', 'Meenakshi ramaswamy matric hr.sec.school', '', '', '2018', 79.00, '', 1, '2023-10-14 11:13:59', 0, NULL, 0, NULL, 1),
(18875, 14765, '3', 'Bishop Heber college ', '', 'Bca', '2021', 85.00, '', 1, '2023-10-14 11:14:20', 0, NULL, 0, NULL, 1),
(18876, 14766, '3', 'Sri Sankara arts and science college', '', 'B SC Computer Science ', '2018', 79.00, '', 1, '2023-10-14 11:36:33', 0, NULL, 0, NULL, 1),
(18877, 14766, '2', 'Tamil Nadu state Board', '', '', '2015', 65.00, '', 1, '2023-10-14 11:37:51', 0, NULL, 0, NULL, 1),
(18878, 14766, '1', 'Tamil State Board', '', '', '2013', 85.00, '', 1, '2023-10-14 11:38:27', 0, NULL, 0, NULL, 1),
(18879, 14767, '3', 'Periyar institute of science and technology (deemed to be university) , Thanjavur', '', 'B. Com', '2023', 6.82, '', 1, '2023-10-14 11:57:28', 0, NULL, 0, NULL, 1),
(18880, 14768, '3', 'SRI RAM COLLEGE OF ARTS AND SCIENCE ', '', 'BCA ', '2021', 81.00, '', 1, '2023-10-14 12:01:32', 0, NULL, 0, NULL, 1),
(18881, 14769, '4', 'Madera university', '', 'Ma Eco', '2015', 9.00, '', 1, '2023-10-14 12:42:28', 0, NULL, 0, NULL, 1),
(18882, 14770, '3', 'Thiagarajar College of Engineering ', '', 'BE Mechatronics ', '2023', 87.80, '', 1, '2023-10-14 12:51:06', 0, NULL, 0, NULL, 1),
(18883, 14772, '3', 'Triuvalluvar University ', '', 'Bsc computer science ', '2021', 89.00, '', 1, '2023-10-14 06:22:45', 0, NULL, 0, NULL, 1),
(18884, 14773, '3', 'Anna University', '', 'B.E', '2022', 75.00, '', 1, '2023-10-14 06:39:53', 0, NULL, 0, NULL, 1),
(18885, 14773, '2', 'State board ', '', '', '2018', 61.50, '', 1, '2023-10-14 06:40:30', 0, NULL, 0, NULL, 1),
(18886, 14773, '1', 'CBSE', '', '', '2016', 80.00, '', 1, '2023-10-14 06:40:53', 0, NULL, 0, NULL, 1),
(18887, 14777, '4', 'University of madras ', '', 'MBA', '2023', 72.00, '', 1, '2023-10-16 05:52:43', 0, NULL, 0, NULL, 1),
(18888, 14774, '3', 'SRM arts and sciences college ', '', 'BSC VISCOM', '2019', 59.00, '', 1, '2023-10-16 07:53:02', 0, NULL, 0, NULL, 1),
(18889, 14779, '1', 'State Board ', '', '', '2016', 88.20, '', 1, '2023-10-16 09:12:34', 0, NULL, 0, NULL, 1),
(18890, 14779, '5', 'Sastra University ', '', 'Automobile Engineering ', '2019', 69.43, '', 1, '2023-10-16 09:13:16', 0, NULL, 0, NULL, 1),
(18891, 14779, '3', 'Karpagam College of Engineering ', '', 'Automobile Engineering ', '2022', 7.56, '', 1, '2023-10-16 09:13:51', 0, NULL, 0, NULL, 1),
(18892, 14781, '1', 'State board ', '', '', '2014', 96.60, '', 1, '2023-10-16 09:45:36', 0, NULL, 0, NULL, 1),
(18893, 14781, '2', 'State board', '', '', '2016', 92.91, '', 1, '2023-10-16 09:46:01', 0, NULL, 0, NULL, 1),
(18894, 14781, '3', 'Thiagarajar College of engineering ', '', 'B.E', '2020', 73.00, '', 1, '2023-10-16 09:46:29', 0, NULL, 0, NULL, 1),
(18895, 14780, '3', 'madras university', '', 'Bsc', '2022', 74.00, '', 1, '2023-10-16 09:56:53', 0, NULL, 0, NULL, 1),
(18896, 14780, '2', 'Cbse', '', '', '2018', 70.00, '', 1, '2023-10-16 09:58:13', 0, NULL, 0, NULL, 1),
(18897, 14780, '1', 'Martri', '', '', '2019', 50.00, '', 1, '2023-10-16 09:59:07', 0, NULL, 0, NULL, 1),
(18898, 14783, '1', 'Karaikudi maharishi vidhya manddir', '', '', '2017', 90.00, '', 1, '2023-10-16 10:08:24', 1, '2023-10-16 10:09:23', 0, NULL, 0),
(18899, 14783, '2', 'Karaikudi maharishi vidhya manddir ', '', '', '2019', 70.00, '', 1, '2023-10-16 10:09:44', 0, NULL, 0, NULL, 1),
(18900, 14783, '3', 'Anna University', '', 'BE-COMPUTER SCIENCE AND ENGINEERING ', '2023', 80.00, '', 1, '2023-10-16 10:10:13', 0, NULL, 0, NULL, 1),
(18901, 14783, '1', 'Karaikudi maharishi vidhya manddir', '', '', '2017', 90.00, '', 1, '2023-10-16 10:10:41', 0, NULL, 0, NULL, 1),
(18902, 14786, '1', 'State board ', '', '', '2014', 75.00, '', 1, '2023-10-16 10:11:43', 0, NULL, 0, NULL, 1),
(18903, 14786, '2', 'State board ', '', '', '2016', 68.00, '', 1, '2023-10-16 10:12:03', 0, NULL, 0, NULL, 1),
(18904, 14786, '3', 'Periyar University ', '', 'BSc', '2019', 81.00, '', 1, '2023-10-16 10:12:46', 0, NULL, 0, NULL, 1),
(18905, 14786, '4', 'Periyar University ', '', 'MSc', '2023', 80.00, '', 1, '2023-10-16 10:13:21', 0, NULL, 0, NULL, 1),
(18906, 14788, '3', 'Bharathidasan University ', '', 'B. Sc (Information technology)', '2020', 76.60, '', 1, '2023-10-16 10:19:31', 0, NULL, 0, NULL, 1),
(18907, 14782, '3', 'Sathyabama university', '', 'Be.mechatronics', '2023', 77.00, '', 1, '2023-10-16 10:20:25', 0, NULL, 0, NULL, 1),
(18908, 14782, '1', 'Cbse', '', '', '2019', 60.00, '', 1, '2023-10-16 10:20:52', 0, NULL, 0, NULL, 1),
(18909, 14782, '2', 'Cbse', '', '', '2017', 80.00, '', 1, '2023-10-16 10:21:17', 0, NULL, 0, NULL, 1),
(18910, 14789, '3', 'Manonmaniam  Sundaranar University ', '', 'B. sc(cs)', '2022', 84.36, '', 1, '2023-10-16 10:22:26', 0, NULL, 0, NULL, 1),
(18911, 14790, '3', 'Excel Engineering College ', '', 'Be.ECE', '2023', 75.00, '', 1, '2023-10-16 10:22:43', 0, NULL, 0, NULL, 1),
(18912, 14784, '1', 'State Board', '', '', '2011', 84.00, '', 1, '2023-10-16 10:26:40', 0, NULL, 0, NULL, 1),
(18913, 14784, '2', 'State Board', '', '', '2013', 66.00, '', 1, '2023-10-16 10:27:03', 0, NULL, 0, NULL, 1),
(18914, 14784, '3', 'Anna University', '', 'B.E- Electronics and communication Engineering', '2017', 63.00, '', 1, '2023-10-16 10:28:20', 0, NULL, 0, NULL, 1),
(18915, 14785, '1', 'State board', '', '', '2013', 89.00, '', 1, '2023-10-16 10:32:00', 0, NULL, 0, NULL, 1),
(18916, 14785, '2', 'State board', '', '', '2015', 70.00, '', 1, '2023-10-16 10:32:32', 0, NULL, 0, NULL, 1),
(18917, 14785, '3', 'Kamaraj University ', '', 'BCA', '2018', 73.00, '', 1, '2023-10-16 10:33:25', 0, NULL, 0, NULL, 1),
(18918, 14785, '4', 'Sastra university', '', 'MCA', '2020', 72.00, '', 1, '2023-10-16 10:37:00', 0, NULL, 0, NULL, 1),
(18919, 14791, '4', 'Bharathidhasan University ', '', 'MBA', '2023', 79.00, '', 1, '2023-10-16 10:44:17', 0, NULL, 0, NULL, 1),
(18920, 14792, '3', 'University of Madras ', '', 'BCA', '2022', 85.00, '', 1, '2023-10-16 11:12:29', 0, NULL, 0, NULL, 1),
(18921, 14796, '4', 'anna university ', '', 'b.e', '2020', 67.00, '', 1, '2023-10-16 11:13:15', 0, NULL, 0, NULL, 1),
(18922, 14793, '3', 'B.s Abdhur rahman crescent institute of science and technology ', '', 'BCA', '2022', 84.00, '', 1, '2023-10-16 11:15:34', 0, NULL, 0, NULL, 1),
(18923, 14795, '3', 'Anna University ', '', 'B.E- Computer science ', '2023', 74.00, '', 1, '2023-10-16 11:15:35', 0, NULL, 0, NULL, 1),
(18924, 14794, '3', 'Sapthagiri college of engineering Dharmapuri ', '', 'BE -EEE', '2022', 79.00, '', 1, '2023-10-16 11:16:07', 0, NULL, 0, NULL, 1),
(18925, 14797, '1', 'Anna university', '', '', '2013', 60.10, '', 1, '2023-10-16 11:34:52', 0, NULL, 0, NULL, 1),
(18926, 14798, '4', 'University of madras', '', 'MBA (finance and Marketing) ', '2023', 76.00, '', 1, '2023-10-16 11:39:12', 0, NULL, 0, NULL, 1),
(18927, 14798, '3', 'Ethiraj college for women - University of Madras', '', 'B. Com (Accounting and finance) ', '2021', 86.00, '', 1, '2023-10-16 11:41:02', 0, NULL, 0, NULL, 1),
(18928, 14800, '3', 'saveetha school of engineering', '', 'b.tech information technology', '2019', 72.00, '', 1, '2023-10-16 11:41:06', 0, NULL, 0, NULL, 1),
(18929, 14800, '2', 'shanthinikethan mat hr sec school', '', '', '2015', 67.00, '', 1, '2023-10-16 11:42:24', 0, NULL, 0, NULL, 1),
(18930, 14800, '1', 'shanthinikethan mat hr sec school', '', '', '2013', 75.00, '', 1, '2023-10-16 11:43:43', 0, NULL, 0, NULL, 1),
(18931, 14802, '2', 'MDT school', '', 'BCA', '2019', 51.00, '', 1, '2023-10-16 11:59:47', 0, NULL, 0, NULL, 1),
(18932, 14801, '5', 'Doat', '', 'Diploma ', '2021', 75.00, '', 1, '2023-10-16 12:00:27', 0, NULL, 0, NULL, 1),
(18933, 14803, '3', 'Sri Krishna engineering  college', '', 'BE (cse)', '2018', 70.00, '', 1, '2023-10-16 12:07:30', 0, NULL, 0, NULL, 1),
(18934, 14804, '3', 'Madras university', '', 'B.B. A', '2018', 64.00, '', 1, '2023-10-16 12:23:19', 0, NULL, 0, NULL, 1),
(18935, 14805, '3', 'University of madras ', '', 'B.sc', '2022', 67.00, '', 1, '2023-10-16 12:27:47', 0, NULL, 0, NULL, 1),
(18936, 14806, '3', 'Pondicherry University ', '', 'BTech ', '2020', 71.00, '', 1, '2023-10-16 12:32:50', 0, NULL, 0, NULL, 1),
(18937, 14811, '3', 'Anna University ', '', 'BE Mechanical ', '2022', 7.88, '', 1, '2023-10-16 12:33:45', 0, NULL, 0, NULL, 1),
(18938, 14809, '3', 'Anna University', '', 'Bachelor of engineering', '2020', 6.59, '', 1, '2023-10-16 12:34:59', 0, NULL, 0, NULL, 1),
(18939, 14808, '3', 'Thiruvalluvar University ', '', 'BCA', '2022', 62.00, '', 1, '2023-10-16 12:36:08', 0, NULL, 0, NULL, 1),
(18940, 14807, '3', 'bharathidasan', '', 'bca', '2021', 73.50, '', 1, '2023-10-16 12:38:29', 0, NULL, 0, NULL, 1),
(18941, 14807, '2', 'stateboard', '', '', '2018', 73.00, '', 1, '2023-10-16 12:39:56', 0, NULL, 0, NULL, 1),
(18942, 14807, '1', 'stateboard', '', '', '2016', 90.80, '', 1, '2023-10-16 12:40:19', 0, NULL, 0, NULL, 1),
(18943, 14812, '3', 'Thiruvalluvar ', '', 'Bsc computer science ', '2022', 73.00, '', 1, '2023-10-16 12:43:03', 0, NULL, 0, NULL, 1),
(18944, 14814, '3', 'Shri Shankarlal sundarbai shasun Jain college for women ', '', 'Bsc computer science ', '2023', 80.00, '', 1, '2023-10-16 12:45:59', 0, NULL, 0, NULL, 1),
(18945, 14816, '3', 'Thiruvalluvar university', '', 'Bca', '2020', 67.00, '', 1, '2023-10-16 01:24:53', 0, NULL, 0, NULL, 1),
(18946, 14815, '3', 'amity university', '', 'bba', '2021', 86.00, '', 1, '2023-10-16 01:35:39', 0, NULL, 0, NULL, 1),
(18947, 14818, '4', 'institution of distance education university of madras', '', 'mba', '2020', 68.00, '', 1, '2023-10-16 01:36:54', 0, NULL, 0, NULL, 1),
(18948, 14815, '2', 'cbse', '', '', '2018', 93.00, '', 1, '2023-10-16 01:37:14', 0, NULL, 0, NULL, 1),
(18949, 14817, '3', 'Bharathidasan University- Trichirapalli', '', 'U. g Major Of English', '2021', 61.38, '', 1, '2023-10-16 01:38:16', 0, NULL, 0, NULL, 1),
(18950, 14819, '3', 'Anna University ', '', 'BE', '2023', 78.50, '', 1, '2023-10-16 02:47:08', 0, NULL, 0, NULL, 1),
(18951, 14813, '3', 'Anna University ', '', 'B.Tech', '2023', 8.01, '', 1, '2023-10-16 02:57:22', 0, NULL, 0, NULL, 1),
(18952, 14822, '3', 'Anna university', '', 'Mechanical Engineering', '2020', 76.30, '', 1, '2023-10-17 09:33:42', 1, '2023-10-17 09:34:15', 0, NULL, 1),
(18953, 14822, '2', 'State board ', '', '', '2016', 86.50, '', 1, '2023-10-17 09:34:40', 0, NULL, 0, NULL, 1),
(18954, 14822, '1', 'State board', '', '', '2014', 92.40, '', 1, '2023-10-17 09:35:10', 0, NULL, 0, NULL, 1),
(18955, 14823, '3', 'ANNA UNIVERSITY', '', 'BE-MECHANICAL ENGG', '2019', 66.20, '', 1, '2023-10-17 09:53:25', 0, NULL, 0, NULL, 1),
(18956, 14823, '2', 'State', '', '', '2015', 88.60, '', 1, '2023-10-17 09:53:51', 0, NULL, 0, NULL, 1),
(18957, 14823, '1', 'State', '', '', '2013', 92.60, '', 1, '2023-10-17 09:54:07', 0, NULL, 0, NULL, 1),
(18958, 14821, '3', 'KBN college ', '', 'BCA', '2019', 7.19, '', 1, '2023-10-17 10:07:23', 0, NULL, 0, NULL, 1),
(18959, 14827, '1', 'Vel\'s vidhyadhram matric higher secondary school ', '', '', '2017', 92.00, '', 1, '2023-10-17 10:17:52', 0, NULL, 0, NULL, 1),
(18960, 14827, '2', 'Sunbeam matric higher secondary school ', '', '', '2019', 68.00, '', 1, '2023-10-17 10:18:14', 0, NULL, 0, NULL, 1),
(18961, 14827, '3', 'Panimalar Engineering College ', '', 'B.E. Computer science and engineering ', '2023', 87.00, '', 1, '2023-10-17 10:18:44', 0, NULL, 0, NULL, 1),
(18962, 14828, '1', 'Velammal Vidhyamal matrix higher secondary school', '', '', '2017', 92.00, '', 1, '2023-10-17 10:22:46', 0, NULL, 0, NULL, 1),
(18963, 14828, '2', 'Sethu,baskara matrix higher secondary school', '', '', '2019', 60.00, '', 1, '2023-10-17 10:23:44', 0, NULL, 0, NULL, 1),
(18964, 14828, '3', 'Panimalar engineering college', '', 'B.E. COMPUTER SCIENCE AND ENGINEERING', '2023', 84.00, '', 1, '2023-10-17 10:25:03', 0, NULL, 0, NULL, 1),
(18965, 14825, '3', 'Bharath Institute of Higher Education and Research ', '', '', '2023', 87.50, '', 1, '2023-10-17 10:26:27', 0, NULL, 0, NULL, 1),
(18966, 14825, '2', 'State Board', '', '', '2019', 94.00, '', 1, '2023-10-17 10:26:57', 0, NULL, 0, NULL, 1),
(18967, 14825, '1', 'State Board', '', '', '2017', 90.00, '', 1, '2023-10-17 10:27:36', 0, NULL, 0, NULL, 1),
(18968, 14829, '3', 'Sadakathullah Appa College', '', 'B.sc Computer science', '2020', 66.00, '', 1, '2023-10-17 10:27:43', 0, NULL, 0, NULL, 1),
(18969, 14830, '3', 'Anna University ', '', 'BE CSE', '2015', 71.00, '', 1, '2023-10-17 10:32:06', 0, NULL, 0, NULL, 1),
(18970, 14824, '3', 'Anna University', '', 'BE - ECE', '2017', 73.00, '', 1, '2023-10-17 10:40:45', 0, NULL, 0, NULL, 1),
(18971, 14832, '1', 'State board ', '', '', '2015', 73.00, '', 1, '2023-10-17 10:41:09', 0, NULL, 0, NULL, 1),
(18972, 14833, '4', 'srm university', '', 'mca', '2023', 8.73, '', 1, '2023-10-17 10:43:25', 0, NULL, 0, NULL, 1),
(18973, 14833, '4', 'srm university', '', 'mca', '2023', 8.73, '', 1, '2023-10-17 10:46:44', 1, '2023-10-17 10:46:52', 0, NULL, 0),
(18974, 14831, '3', 'Anna university', '', 'BE', '2012', 70.00, '', 1, '2023-10-17 10:48:08', 0, NULL, 0, NULL, 1),
(18975, 14833, '3', 'dg vaishnav', '', 'bsc mathematics with computer applications', '2021', 67.00, '', 1, '2023-10-17 10:48:22', 0, NULL, 0, NULL, 1),
(18976, 14832, '5', 'Dote university ', '', 'Mechanical engineering ', '2020', 72.00, '', 1, '2023-10-17 10:48:31', 0, NULL, 0, NULL, 1),
(18977, 14835, '3', 'University College of Engineering, Thirukkuvalai, Nagapattinam. ', '', 'Bachelor\'s', '2023', 80.00, '', 1, '2023-10-17 10:51:50', 0, NULL, 0, NULL, 1),
(18978, 14834, '3', 'Anna University ', '', 'BE', '2023', 73.00, '', 1, '2023-10-17 10:52:02', 0, NULL, 0, NULL, 1),
(18979, 14834, '1', 'State board', '', '', '2016', 89.00, '', 1, '2023-10-17 10:52:40', 0, NULL, 0, NULL, 1),
(18980, 14834, '2', 'State board ', '', '', '2016', 89.00, '', 1, '2023-10-17 10:53:49', 0, NULL, 0, NULL, 1),
(18981, 14838, '3', 'Madras university ', '', 'B.sc.computer science ', '2023', 90.12, '', 1, '2023-10-17 11:11:38', 0, NULL, 0, NULL, 1),
(18982, 14836, '4', 'SRM University ', '', 'MCA ', '2023', 93.00, '', 1, '2023-10-17 11:12:19', 0, NULL, 0, NULL, 1),
(18983, 14836, '3', 'SRM University ', '', 'BSC CS ', '2021', 80.00, '', 1, '2023-10-17 11:12:41', 0, NULL, 0, NULL, 1),
(18984, 14837, '3', 'State Board ', '', 'BCA', '2023', 85.00, '', 1, '2023-10-17 11:22:10', 0, NULL, 0, NULL, 1),
(18985, 14840, '3', 'University ', '', 'b com (cs)', '2020', 60.00, '', 1, '2023-10-17 11:47:27', 0, NULL, 0, NULL, 1),
(18986, 14841, '4', 'Anna University ', '', 'BE ECE', '2020', 6.50, '', 1, '2023-10-17 11:54:58', 0, NULL, 0, NULL, 1),
(18987, 14820, '3', 'Madras University ', '', 'BCA ', '2020', 64.00, '', 1, '2023-10-17 11:58:27', 0, NULL, 0, NULL, 1),
(18988, 14843, '2', '-', '', '', '2017', 76.00, '', 1, '2023-10-17 12:27:52', 0, NULL, 0, NULL, 1),
(18989, 14844, '1', 'Started ', '', '', '2009', 82.00, '', 1, '2023-10-17 05:15:35', 0, NULL, 0, NULL, 1),
(18990, 14845, '3', 'madras university', '', 'bcom accounting  finance', '2017', 60.00, '', 1, '2023-10-17 07:01:48', 0, NULL, 0, NULL, 1),
(18991, 14845, '1', 'state board', '', '', '2012', 55.00, '', 1, '2023-10-17 07:03:26', 0, NULL, 0, NULL, 1),
(18992, 14845, '2', 'state board', '', '', '2014', 52.00, '', 1, '2023-10-17 07:03:58', 0, NULL, 0, NULL, 1),
(18993, 14846, '3', 'Dwaraka doss goverdhan doss vaishnav college ', '', 'B.com', '2021', 57.00, '', 1, '2023-10-18 09:24:08', 0, NULL, 0, NULL, 1),
(18994, 14847, '4', 'Snmv college of Art\'s and Science ', '', 'Msc computer Science ', '2021', 85.00, '', 1, '2023-10-18 09:30:28', 0, NULL, 0, NULL, 1),
(18995, 14848, '3', 'presidency college', '', 'BA', '2022', 63.71, '', 1, '2023-10-18 10:06:04', 0, NULL, 0, NULL, 1),
(18996, 14850, '3', 'Jbas college for women', '', 'Bsc computer science', '2023', 7.87, '', 1, '2023-10-18 10:10:27', 0, NULL, 0, NULL, 1),
(18997, 14849, '3', 'Anna University ', '', 'B.E', '2023', 82.00, '', 1, '2023-10-18 10:11:47', 1, '2023-10-18 10:12:36', 0, NULL, 0),
(18998, 14849, '2', 'State board ', '', '', '2019', 73.00, '', 1, '2023-10-18 10:12:20', 1, '2023-10-18 10:12:40', 0, NULL, 0),
(18999, 14849, '1', 'State board ', '', '', '2017', 90.00, '', 1, '2023-10-18 10:13:05', 0, NULL, 0, NULL, 1),
(19000, 14849, '2', 'State board ', '', '', '2019', 73.00, '', 1, '2023-10-18 10:13:22', 0, NULL, 0, NULL, 1),
(19001, 14849, '3', 'Anna University ', '', 'B.E', '2023', 82.00, '', 1, '2023-10-18 10:13:50', 0, NULL, 0, NULL, 1),
(19002, 14851, '3', 'Guru nanak college', '', 'B. Com Information system management', '2023', 75.00, '', 1, '2023-10-18 10:15:17', 0, NULL, 0, NULL, 1),
(19003, 14851, '2', 'Anjuham hr. Sec school', '', '', '2020', 71.00, '', 1, '2023-10-18 10:17:26', 0, NULL, 0, NULL, 1),
(19004, 14851, '1', 'Anjuham Hr. Sec school', '', '', '2018', 75.00, '', 1, '2023-10-18 10:18:57', 0, NULL, 0, NULL, 1),
(19005, 14854, '3', 'Madras University ', '', 'B.COM CS', '2022', 85.30, '', 1, '2023-10-18 10:28:29', 0, NULL, 0, NULL, 1),
(19006, 14857, '3', 'Anna University ', '', 'B.E', '2023', 80.50, '', 1, '2023-10-18 10:29:08', 0, NULL, 0, NULL, 1),
(19007, 14855, '3', 'Dr mgr University ', '', 'Btech', '2022', 7.76, '', 1, '2023-10-18 10:29:17', 0, NULL, 0, NULL, 1),
(19008, 14860, '1', 'State Board ', '', '', '2017', 91.80, '', 1, '2023-10-18 10:30:39', 0, NULL, 0, NULL, 1),
(19009, 14860, '2', 'State Board ', '', '', '2019', 73.30, '', 1, '2023-10-18 10:31:05', 0, NULL, 0, NULL, 1),
(19010, 14860, '3', 'Anna University ', '', 'B.E', '2023', 78.20, '', 1, '2023-10-18 10:32:08', 0, NULL, 0, NULL, 1),
(19011, 14852, '3', 'SITAMS', '', 'B.Tech', '2023', 73.00, '', 1, '2023-10-18 10:32:10', 1, '2023-10-18 10:33:44', 0, NULL, 0),
(19012, 14852, '2', 'Vivekananda junior College ', '', '', '2019', 89.00, '', 1, '2023-10-18 10:32:40', 0, NULL, 0, NULL, 1),
(19013, 14858, '3', 'Anna University ', '', 'BE', '2023', 77.00, '', 1, '2023-10-18 10:33:09', 0, NULL, 0, NULL, 1),
(19014, 14852, '1', 'State board ', '', '', '2017', 78.00, '', 1, '2023-10-18 10:33:16', 0, NULL, 0, NULL, 1),
(19015, 14852, '3', 'SITAMS', '', 'B.Tech', '2023', 74.00, '', 1, '2023-10-18 10:34:08', 0, NULL, 0, NULL, 1),
(19016, 14856, '3', 'Anna University ', '', 'BE Mechanical Engineering ', '2017', 70.00, '', 1, '2023-10-18 10:34:39', 0, NULL, 0, NULL, 1),
(19017, 14853, '3', 'Anna University ', '', 'B.E (CSE)', '2023', 85.90, '', 1, '2023-10-18 10:34:43', 0, NULL, 0, NULL, 1),
(19018, 14856, '5', 'DOTE', '', 'DME', '2014', 82.00, '', 1, '2023-10-18 10:35:27', 0, NULL, 0, NULL, 1),
(19019, 14856, '1', 'Matric', '', '', '2011', 66.00, '', 1, '2023-10-18 10:35:51', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19020, 14859, '3', 'Anna University ', '', 'B.E ( Computer Science )', '2023', 82.00, '', 1, '2023-10-18 10:53:28', 0, NULL, 0, NULL, 1),
(19021, 14861, '3', 'anna university', '', 'Bachelor of engineering in computer science ', '2023', 87.77, '', 1, '2023-10-18 10:53:41', 1, '2023-10-18 10:59:22', 0, NULL, 1),
(19022, 14859, '2', 'State Board ', '', '', '2019', 72.00, '', 1, '2023-10-18 10:53:56', 0, NULL, 0, NULL, 1),
(19023, 14861, '2', 'state board', '', '', '2019', 70.00, '', 1, '2023-10-18 10:54:18', 1, '2023-10-18 10:59:44', 0, NULL, 0),
(19024, 14859, '1', 'State Board ', '', '', '2017', 87.00, '', 1, '2023-10-18 10:54:20', 0, NULL, 0, NULL, 1),
(19025, 14861, '1', 'state board', '', '', '2017', 90.60, '', 1, '2023-10-18 10:58:26', 1, '2023-10-18 10:59:38', 0, NULL, 0),
(19026, 14861, '2', 'state board', '', '', '2019', 69.66, '', 1, '2023-10-18 11:00:06', 0, NULL, 0, NULL, 1),
(19027, 14861, '1', 'state board', '', '', '2017', 90.60, '', 1, '2023-10-18 11:00:28', 0, NULL, 0, NULL, 1),
(19028, 14864, '3', 'Anna university', '', 'BE CSE', '2022', 59.00, '', 1, '2023-10-18 11:37:36', 0, NULL, 0, NULL, 1),
(19029, 14863, '3', 'Anna University', '', 'BE', '2022', 82.60, '', 1, '2023-10-18 11:40:48', 1, '2023-10-18 11:42:17', 0, NULL, 1),
(19030, 14863, '1', 'State Board', '', '', '2018', 79.80, '', 1, '2023-10-18 11:42:43', 0, NULL, 0, NULL, 1),
(19031, 14862, '3', 'Deemed', '', 'B. Com', '2021', 78.32, '', 1, '2023-10-18 12:24:36', 0, NULL, 0, NULL, 1),
(19032, 14866, '3', 'Thiruvalluvar University ', '', 'Bcom CA ', '2023', 76.00, '', 1, '2023-10-18 12:28:21', 0, NULL, 0, NULL, 1),
(19033, 14865, '3', 'bharathi womens college', '', 'ba economics', '2021', 75.00, '', 1, '2023-10-18 12:28:37', 0, NULL, 0, NULL, 1),
(19034, 14868, '3', 'Madras university ', '', 'Bsc', '2015', 60.00, '', 1, '2023-10-18 01:33:03', 0, NULL, 0, NULL, 1),
(19035, 14867, '3', 'Madras University ', '', 'B.com', '2023', 70.00, '', 1, '2023-10-18 03:01:27', 0, NULL, 0, NULL, 1),
(19036, 14872, '3', 'Kongunadu college of Engineering and technology', '', 'B. E', '2023', 8.25, '', 1, '2023-10-19 07:33:23', 1, '2023-10-20 09:51:31', 0, NULL, 1),
(19037, 14869, '4', 'Bharathidasan University ', '', 'M.Sc.,', '2018', 69.00, '', 1, '2023-10-19 09:25:33', 0, NULL, 0, NULL, 1),
(19038, 14869, '3', 'Bharathidasan University ', '', 'B.Sc.,', '2016', 70.77, '', 1, '2023-10-19 09:27:23', 0, NULL, 0, NULL, 1),
(19039, 14869, '2', 'State Board ', '', '', '2013', 77.42, '', 1, '2023-10-19 09:27:47', 0, NULL, 0, NULL, 1),
(19040, 14869, '1', 'State Board', '', '', '2011', 92.80, '', 1, '2023-10-19 09:28:36', 0, NULL, 0, NULL, 1),
(19041, 14874, '3', 'Madurai Kamaraj University', '', 'B.Sc Zoology', '2020', 57.60, '', 1, '2023-10-19 10:10:30', 0, NULL, 0, NULL, 1),
(19042, 14875, '3', 'University', '', 'Bachelor of Computer Applications', '2021', 70.00, '', 1, '2023-10-19 10:25:11', 0, NULL, 0, NULL, 1),
(19043, 14870, '3', 'University ', '', 'B.com general ', '2022', 71.00, '', 1, '2023-10-19 10:26:01', 0, NULL, 0, NULL, 1),
(19044, 14876, '1', 'Achariya siksha mandir ', '', '', '2017', 86.00, '', 1, '2023-10-19 10:30:35', 0, NULL, 0, NULL, 1),
(19045, 14876, '2', 'Achariya siksha mandir ', '', '', '2019', 52.40, '', 1, '2023-10-19 10:31:12', 0, NULL, 0, NULL, 1),
(19046, 14876, '3', 'Sri manakula vinayagar engineering College', '', 'B Tech Civil engineering ', '2023', 78.00, '', 1, '2023-10-19 10:31:42', 0, NULL, 0, NULL, 1),
(19047, 14877, '3', 'Madras University ', '', 'BA Travel and tourism management ', '2020', 52.70, '', 1, '2023-10-19 10:33:55', 0, NULL, 0, NULL, 1),
(19048, 14878, '3', 'Madras University ', '', 'BCA', '2023', 74.00, '', 1, '2023-10-19 10:43:37', 0, NULL, 0, NULL, 1),
(19049, 14873, '3', 'jnn insititu of engineering', '', 'be', '2020', 6.90, '', 1, '2023-10-19 10:45:43', 0, NULL, 0, NULL, 1),
(19050, 14880, '4', 'Bharathi Dhasan University ', '', 'mCA', '2022', 72.00, '', 1, '2023-10-19 10:53:59', 0, NULL, 0, NULL, 1),
(19051, 14879, '3', 'Anna University', '', 'B.Tech Information Technology', '2023', 89.00, '', 1, '2023-10-19 10:58:56', 0, NULL, 0, NULL, 1),
(19052, 14883, '3', 'Anna University ', '', 'B.Tech', '2023', 90.00, '', 1, '2023-10-19 11:22:06', 0, NULL, 0, NULL, 1),
(19053, 14883, '2', 'State Board ', '', '', '2019', 59.50, '', 1, '2023-10-19 11:22:46', 0, NULL, 0, NULL, 1),
(19054, 14883, '1', 'State Board ', '', '', '2017', 91.60, '', 1, '2023-10-19 11:23:07', 0, NULL, 0, NULL, 1),
(19055, 14884, '4', 'Bharathidhasan university ', '', 'MBA', '2023', 67.39, '', 1, '2023-10-19 11:23:44', 0, NULL, 0, NULL, 1),
(19056, 14871, '3', 'Government arts and science college perumbakkam Madras University ', '', 'B.COM (CS)', '2023', 68.00, '', 1, '2023-10-19 11:28:28', 0, NULL, 0, NULL, 1),
(19057, 14882, '4', 'Thiruvalluvar university', '', 'MBA', '2023', 70.00, '', 1, '2023-10-19 11:36:14', 0, NULL, 0, NULL, 1),
(19058, 14886, '4', 'University of Madras ', '', 'M.com', '2021', 80.00, '', 1, '2023-10-19 11:38:29', 0, NULL, 0, NULL, 1),
(19059, 14881, '3', 'Patrician arts college ', '', 'BBA', '2020', 80.00, '', 1, '2023-10-19 11:49:48', 0, NULL, 0, NULL, 1),
(19060, 14885, '3', 'Anna University ', '', 'Mechanical engineering ', '2015', 76.90, '', 1, '2023-10-19 12:00:30', 0, NULL, 0, NULL, 1),
(19061, 14889, '4', 'Madras university', '', 'M.A tamil', '2023', 78.00, '', 1, '2023-10-19 12:51:01', 0, NULL, 0, NULL, 1),
(19062, 14891, '3', 'Madras University ', '', 'BSc', '2010', 73.00, '', 1, '2023-10-19 01:10:35', 0, NULL, 0, NULL, 1),
(19063, 14892, '1', 'Sri Sankara vidyalaya higher secondary school ', '', '', '2015', 91.00, '', 1, '2023-10-19 01:18:48', 0, NULL, 0, NULL, 1),
(19064, 14892, '2', 'Sri Sankara vidyalaya higher secondary school ', '', '', '2017', 57.00, '', 1, '2023-10-19 01:19:25', 0, NULL, 0, NULL, 1),
(19065, 14893, '3', 'Chennai national arts and science college ', '', 'BCA', '2022', 70.00, '', 1, '2023-10-19 01:19:29', 0, NULL, 0, NULL, 1),
(19066, 14893, '2', 'Gandhiji mat.hr.sec.school(State board )', '', '', '2019', 50.00, '', 1, '2023-10-19 01:20:05', 1, '2023-10-19 01:22:05', 0, NULL, 1),
(19067, 14893, '1', 'Gandhiji Mat.Hr.Sec.School(State board )', '', '', '2017', 57.00, '', 1, '2023-10-19 01:20:33', 1, '2023-10-19 01:22:44', 0, NULL, 1),
(19068, 14892, '3', 'Saradha Gangadharan Art\'s and science college ', '', 'BSc.Information Technology ', '2020', 67.00, '', 1, '2023-10-19 01:21:08', 0, NULL, 0, NULL, 1),
(19069, 14892, '4', 'Pope John Paul 2 college of education ', '', 'MCA', '2022', 84.00, '', 1, '2023-10-19 01:21:50', 0, NULL, 0, NULL, 1),
(19070, 14893, '4', 'Sri Muthukumaran Institute of Technology', '', 'MCA', '2024', 0.00, '', 1, '2023-10-19 01:24:26', 0, NULL, 0, NULL, 1),
(19071, 14894, '4', 'Anna University ', '', 'MBA finance and hR', '2022', 71.25, '', 1, '2023-10-19 01:40:10', 1, '2023-10-19 01:57:14', 0, NULL, 0),
(19072, 14894, '4', 'Anna University ', '', 'MBA finance and HR ', '2022', 71.25, '', 1, '2023-10-19 01:57:06', 0, NULL, 0, NULL, 1),
(19073, 14890, '4', 'Gandhigram Rural Institute ', '', 'MCA', '2023', 72.00, '', 1, '2023-10-19 02:43:27', 0, NULL, 0, NULL, 1),
(19074, 14899, '1', 'Malar matric higher secondary school ', '', '', '2017', 96.00, '', 1, '2023-10-19 05:53:08', 0, NULL, 0, NULL, 1),
(19075, 14899, '2', 'Malar Matric higher secondary school ', '', '', '2019', 69.50, '', 1, '2023-10-19 05:53:30', 0, NULL, 0, NULL, 1),
(19076, 14899, '3', 'M.Kumarasamy college of engineering ', '', 'B.E ECE', '2023', 85.00, '', 1, '2023-10-19 05:54:04', 0, NULL, 0, NULL, 1),
(19077, 14897, '4', 'srinivasan college of arts and science perambalur', '', 'mca', '2023', 78.00, '', 1, '2023-10-19 05:55:22', 0, NULL, 0, NULL, 1),
(19078, 14897, '3', 'srinivasan college of arts and science perambalur', '', 'bca', '2021', 79.00, '', 1, '2023-10-19 05:56:08', 0, NULL, 0, NULL, 1),
(19079, 14897, '2', 'state board', '', '', '2018', 60.00, '', 1, '2023-10-19 05:56:28', 0, NULL, 0, NULL, 1),
(19080, 14897, '1', 'state board', '', '', '2016', 79.00, '', 1, '2023-10-19 05:56:44', 0, NULL, 0, NULL, 1),
(19081, 14898, '3', 'm.kumarasamy college of engineering', '', 'be', '2023', 7.79, '', 1, '2023-10-19 06:05:39', 0, NULL, 0, NULL, 1),
(19082, 14901, '5', 'National Institute of open schooling', '', 'Diploma', '2023', 55.60, '', 1, '2023-10-19 07:49:59', 0, NULL, 0, NULL, 1),
(19083, 14902, '4', 'Bharathidasan University ', '', 'MCA ', '2023', 77.00, '', 1, '2023-10-19 07:53:39', 0, NULL, 0, NULL, 1),
(19084, 14902, '3', 'Bharathidasan University ', '', 'BCA ', '2021', 74.00, '', 1, '2023-10-19 07:54:24', 0, NULL, 0, NULL, 1),
(19085, 14902, '2', 'State board ', '', '', '2018', 69.00, '', 1, '2023-10-19 07:55:14', 0, NULL, 0, NULL, 1),
(19086, 14902, '1', 'State board ', '', '', '2016', 92.60, '', 1, '2023-10-19 07:55:51', 0, NULL, 0, NULL, 1),
(19087, 14896, '3', 'Anna university', '', 'BE', '2020', 65.00, '', 1, '2023-10-19 09:39:10', 0, NULL, 0, NULL, 1),
(19088, 14872, '1', 'Indian matric Higher secondary school', '', '', '2017', 91.20, '', 1, '2023-10-20 09:48:46', 1, '2023-10-20 09:53:04', 0, NULL, 1),
(19089, 14872, '2', 'Indian Matric higher secondary school', '', '', '2019', 68.60, '', 1, '2023-10-20 09:49:35', 1, '2023-10-20 09:53:47', 0, NULL, 1),
(19090, 14904, '3', 'Bharath university', '', 'B. Sc', '2023', 83.20, '', 1, '2023-10-20 09:53:53', 0, NULL, 0, NULL, 1),
(19091, 14906, '3', 'Madras University ', '', 'Bca', '2022', 69.00, '', 1, '2023-10-20 10:37:08', 0, NULL, 0, NULL, 1),
(19092, 14905, '3', 'Anna University ', '', 'B.E', '2023', 81.10, '', 1, '2023-10-20 10:37:34', 0, NULL, 0, NULL, 1),
(19093, 14903, '3', 'SRM Trichy Arts And Science College ', '', 'BCA', '2023', 84.40, '', 1, '2023-10-20 10:39:53', 0, NULL, 0, NULL, 1),
(19094, 14910, '3', 'University of Madras ', '', 'BCA', '2022', 80.00, '', 1, '2023-10-20 10:52:20', 0, NULL, 0, NULL, 1),
(19095, 14909, '4', 'Bharathidasan University ', '', 'M.com', '2023', 76.00, '', 1, '2023-10-20 10:53:59', 0, NULL, 0, NULL, 1),
(19096, 14908, '3', 'madras univesity', '', 'b.com Account and finance', '2023', 60.00, '', 1, '2023-10-20 10:56:41', 0, NULL, 0, NULL, 1),
(19097, 14776, '3', 'Queen Mary\'s college', '', 'B.A Tamil Literature ', '2022', 71.00, '', 1, '2023-10-20 11:06:38', 0, NULL, 0, NULL, 1),
(19098, 14911, '1', 'state borad of tamilnadu', '', '', '2016', 86.00, '', 1, '2023-10-20 11:12:04', 1, '2023-10-20 11:13:06', 0, NULL, 1),
(19099, 14911, '2', 'state board of tamilnadu', '', '', '2018', 67.00, '', 1, '2023-10-20 11:13:47', 0, NULL, 0, NULL, 1),
(19100, 14911, '3', 'bharathidasan unversity', '', 'bca-computer applictions', '2021', 74.00, '', 1, '2023-10-20 11:14:50', 0, NULL, 0, NULL, 1),
(19101, 14911, '4', 'bharathidasan unversity', '', 'mca-computer applications', '2023', 74.00, '', 1, '2023-10-20 11:15:45', 0, NULL, 0, NULL, 1),
(19102, 14913, '3', 'Madras ', '', 'BSc', '2023', 66.00, '', 1, '2023-10-20 11:37:38', 0, NULL, 0, NULL, 1),
(19103, 14916, '3', 'Anna university', '', 'B.E.Mechanical Engineering', '2023', 8.00, '', 1, '2023-10-20 11:40:56', 0, NULL, 0, NULL, 1),
(19104, 14912, '4', 'SRM University ', '', 'MCA ', '2023', 90.00, '', 1, '2023-10-20 11:41:35', 0, NULL, 0, NULL, 1),
(19105, 14907, '3', 'Madras University ', '', 'Bcom ISM', '2023', 80.00, '', 1, '2023-10-20 11:43:12', 0, NULL, 0, NULL, 1),
(19106, 14915, '3', 'Anna University ', '', 'B.Tech.IT', '2023', 80.00, '', 1, '2023-10-20 11:58:28', 0, NULL, 0, NULL, 1),
(19107, 14917, '3', 'madras university', '', 'b.com general', '2023', 70.00, '', 1, '2023-10-20 12:04:32', 0, NULL, 0, NULL, 1),
(19108, 14895, '3', 'University of Madras ', '', 'B.com (General)', '2023', 75.93, '', 1, '2023-10-20 12:06:19', 0, NULL, 0, NULL, 1),
(19109, 14914, '3', 'Madras University ', '', 'Bba', '2021', 70.00, '', 1, '2023-10-20 12:17:12', 0, NULL, 0, NULL, 1),
(19110, 14900, '3', 'Crescent university ', '', 'B.com  General ', '2023', 74.00, '', 1, '2023-10-20 12:32:07', 0, NULL, 0, NULL, 1),
(19111, 14918, '3', 'Muthurangam govt arts college', '', 'Bcom', '2019', 54.00, '', 108, '2023-10-20 06:23:04', 108, '2023-10-20 06:27:39', 0, NULL, 1),
(19112, 14918, '2', 'StJoseph  hr sec school ', '', '', '2016', 0.00, '', 108, '2023-10-20 06:24:21', 108, '2023-10-20 06:25:44', 0, NULL, 0),
(19113, 14918, '1', 'St.Jospeh Hr Sec School', '', '', '2014', 0.00, '', 108, '2023-10-20 06:25:03', 108, '2023-10-20 06:25:47', 0, NULL, 0),
(19114, 14921, '5', 'Deemed ', '', '', '2019', 79.00, '', 1, '2023-10-21 11:01:08', 0, NULL, 0, NULL, 1),
(19115, 14922, '3', 'RKMVC Autonomous College ', '', 'BBA', '2023', 7.20, '', 1, '2023-10-21 11:10:55', 1, '2023-10-21 11:12:33', 0, NULL, 1),
(19116, 14922, '2', 'State Board', '', '', '2020', 74.00, '', 1, '2023-10-21 11:13:07', 0, NULL, 0, NULL, 1),
(19117, 14924, '3', 'Periyar University ', '', 'B.Com ', '2021', 75.80, '', 1, '2023-10-21 11:40:24', 0, NULL, 0, NULL, 1),
(19118, 14923, '4', 'anna university', '', 'mba', '2021', 60.00, '', 1, '2023-10-21 11:42:43', 0, NULL, 0, NULL, 1),
(19119, 14925, '3', 'University of Madras ', '', 'Bcom general', '2022', 70.00, '', 1, '2023-10-21 05:20:34', 0, NULL, 0, NULL, 1),
(19120, 14925, '1', 'State board ', '', '', '2017', 80.00, '', 1, '2023-10-21 05:21:34', 0, NULL, 0, NULL, 1),
(19121, 14925, '2', 'State board ', '', '', '2019', 50.00, '', 1, '2023-10-21 05:22:27', 0, NULL, 0, NULL, 1),
(19122, 14928, '3', 'madras university', '', 'b. com', '2022', 82.00, '', 1, '2023-10-22 05:08:40', 0, NULL, 0, NULL, 1),
(19123, 14928, '2', 'state board', '', '', '2018', 75.00, '', 1, '2023-10-22 05:09:27', 0, NULL, 0, NULL, 1),
(19124, 14928, '1', 'state board', '', '', '2016', 94.00, '', 1, '2023-10-22 05:09:48', 0, NULL, 0, NULL, 1),
(19125, 14926, '1', 'state board', '', '', '2016', 93.00, '', 1, '2023-10-22 06:52:48', 0, NULL, 0, NULL, 1),
(19126, 14926, '2', 'state board', '', '', '2018', 88.00, '', 1, '2023-10-22 06:53:29', 0, NULL, 0, NULL, 1),
(19127, 14926, '3', 'anna university', '', 'b.e', '2022', 77.00, '', 1, '2023-10-22 06:54:08', 0, NULL, 0, NULL, 1),
(19128, 14927, '2', 'mary matha matric hr sec school ', '', '', '2016', 86.00, '', 1, '2023-10-22 10:16:06', 0, NULL, 0, NULL, 1),
(19129, 14927, '1', 'tmhnu matric hr sec school ', '', '', '2018', 76.00, '', 1, '2023-10-22 10:16:39', 0, NULL, 0, NULL, 1),
(19130, 14927, '3', 'bharathiyar ', '', 'bsc comp Science ', '2021', 63.00, '', 1, '2023-10-22 10:17:14', 0, NULL, 0, NULL, 1),
(19131, 14929, '1', 'thambithottam higher secondary school', '', '', '2016', 94.50, '', 1, '2023-10-22 11:22:04', 0, NULL, 0, NULL, 1),
(19132, 14929, '2', 'Thambithottam Higher Secondary School', '', '', '2018', 75.40, '', 1, '2023-10-22 11:22:34', 0, NULL, 0, NULL, 1),
(19133, 14929, '3', 'bharathidasan ', '', 'bsc', '2021', 85.40, '', 1, '2023-10-22 11:23:47', 0, NULL, 0, NULL, 1),
(19134, 14929, '4', 'bharathiyar ', '', 'msc', '2023', 88.00, '', 1, '2023-10-22 11:24:17', 1, '2023-10-22 11:25:38', 0, NULL, 1),
(19135, 14930, '3', 'madras university', '', 'b.com', '2023', 65.00, '', 1, '2023-10-23 12:17:44', 0, NULL, 0, NULL, 1),
(19136, 14931, '3', 'University of Madras ', '', 'Bachelor of business administration ', '2021', 75.00, '', 1, '2023-10-23 08:45:08', 0, NULL, 0, NULL, 1),
(19137, 14932, '3', 'Sona College of Technology, Salem', '', 'BE Computer Science and Engineering ', '2023', 86.60, '', 1, '2023-10-24 10:22:55', 1, '2023-10-24 10:23:30', 0, NULL, 1),
(19138, 14932, '2', 'Sri Vijay Vidhyalaya Matriculation Higher Secondary School, Hosur ', '', '', '2019', 76.00, '', 1, '2023-10-24 10:24:23', 0, NULL, 0, NULL, 1),
(19139, 14932, '1', 'Sri Vijay Vidhyalaya Matriculation Higher Secondary School, Hosur ', '', '', '2017', 95.60, '', 1, '2023-10-24 10:24:43', 0, NULL, 0, NULL, 1),
(19140, 14933, '3', 'Srm university', '', 'Bachelor of computer application', '2020', 6.50, '', 1, '2023-10-24 10:28:23', 0, NULL, 0, NULL, 1),
(19141, 13488, '3', 'Madrase university', '', 'B. Com', '2023', 7.00, '', 1, '2023-10-24 10:48:11', 0, NULL, 0, NULL, 1),
(19142, 14919, '3', 'Autonomous ', '', 'Bsc . microbiology ', '2019', 70.00, '', 1, '2023-10-24 11:00:17', 0, NULL, 0, NULL, 1),
(19143, 14935, '3', 'vels University ', '', 'b.com', '2022', 70.00, '', 1, '2023-10-24 11:03:00', 0, NULL, 0, NULL, 1),
(19144, 14934, '3', 'Madras University ', '', 'Bcom.General', '2021', 73.00, '', 1, '2023-10-24 11:14:18', 0, NULL, 0, NULL, 1),
(19145, 14936, '3', 'madras university ', '', 'b.sc cs', '2022', 6.10, '', 1, '2023-10-24 11:26:31', 0, NULL, 0, NULL, 1),
(19146, 14938, '3', 'University of Madras ', '', 'BCA', '2022', 85.00, '', 1, '2023-10-24 11:55:22', 1, '2023-10-24 11:55:32', 0, NULL, 0),
(19147, 14938, '3', 'University of Madras ', '', 'BCA', '2022', 85.00, '', 1, '2023-10-24 11:55:57', 0, NULL, 0, NULL, 1),
(19148, 14937, '3', 'Madras ', '', 'BBA', '2022', 87.00, '', 1, '2023-10-24 12:01:45', 0, NULL, 0, NULL, 1),
(19149, 14939, '3', 'Anna University ', '', 'B.E', '2022', 77.00, '', 1, '2023-10-24 12:11:07', 0, NULL, 0, NULL, 1),
(19150, 14941, '4', 'Anna University ', '', 'MCA', '2021', 62.00, '', 1, '2023-10-24 12:32:20', 0, NULL, 0, NULL, 1),
(19151, 14940, '3', 'Anna University ', '', 'B E', '2018', 71.90, '', 1, '2023-10-24 12:45:37', 0, NULL, 0, NULL, 1),
(19152, 14942, '3', 'St.thomas arts and science college ', '', 'B.sc computer science ', '2023', 58.00, '', 1, '2023-10-24 12:46:15', 0, NULL, 0, NULL, 1),
(19153, 14943, '3', 'Madras University ', '', 'B. Com general ', '2023', 70.00, '', 1, '2023-10-24 02:51:43', 0, NULL, 0, NULL, 1),
(19154, 14944, '3', 'University of madras', '', 'BA English', '2023', 72.00, '', 1, '2023-10-24 03:25:33', 0, NULL, 0, NULL, 1),
(19155, 14945, '3', 'Madras University ', '', 'B.com (corporate secretaryShip )', '2021', 81.00, '', 1, '2023-10-24 07:49:49', 0, NULL, 0, NULL, 1),
(19156, 14945, '1', 'State board ', '', '', '2015', 81.00, '', 1, '2023-10-24 07:51:03', 0, NULL, 0, NULL, 1),
(19157, 14945, '2', 'State board ', '', '', '2018', 80.90, '', 1, '2023-10-24 07:51:56', 0, NULL, 0, NULL, 1),
(19158, 14946, '3', 'university', '', 'bba Shipping ', '2022', 7.70, '', 1, '2023-10-25 10:39:26', 0, NULL, 0, NULL, 1),
(19159, 14947, '3', 'Hindustan art and science college ', '', 'BSC computer science ', '2023', 76.00, '', 1, '2023-10-25 10:39:38', 0, NULL, 0, NULL, 1),
(19160, 14948, '3', 'MNSK College of Engineering ', '', 'B.Tech IT', '2015', 60.00, '', 1, '2023-10-25 11:32:33', 0, NULL, 0, NULL, 1),
(19161, 14949, '3', 'Allagappa University - Karaikudi', '', 'B.sc Computer Science ', '2023', 72.00, '', 1, '2023-10-25 12:11:31', 0, NULL, 0, NULL, 1),
(19162, 14950, '3', 'University', '', 'B.E ', '2023', 7.80, '', 1, '2023-10-25 12:42:21', 0, NULL, 0, NULL, 1),
(19163, 14951, '3', 'Madrass university ', '', 'BCA', '2023', 80.00, '', 1, '2023-10-25 02:31:28', 0, NULL, 0, NULL, 1),
(19164, 14952, '4', 'Madras University ', '', 'MSc physics ', '2022', 86.00, '', 1, '2023-10-25 03:21:33', 0, NULL, 0, NULL, 1),
(19165, 14953, '3', 'madras university', '', 'Bachelor of Computer application', '2022', 76.00, '', 1, '2023-10-25 04:17:48', 0, NULL, 0, NULL, 1),
(19166, 14954, '3', 'Am jain college ', '', 'B.com general ', '2023', 65.00, '', 1, '2023-10-25 05:25:00', 0, NULL, 0, NULL, 1),
(19167, 14955, '3', 'Madras University ', '', 'B.com computer application ', '2023', 73.00, '', 1, '2023-10-25 05:57:24', 0, NULL, 0, NULL, 1),
(19168, 14959, '3', 'VELS UNIVERSITY ', '', 'BCA', '2020', 63.71, '', 1, '2023-10-25 07:06:50', 0, NULL, 0, NULL, 1),
(19169, 14958, '3', 'University', '', 'B.com', '2021', 65.00, '', 1, '2023-10-25 07:07:05', 0, NULL, 0, NULL, 1),
(19170, 14958, '2', 'State board', '', '', '2018', 80.00, '', 1, '2023-10-25 07:07:39', 0, NULL, 0, NULL, 1),
(19171, 14958, '1', 'State Board', '', '', '2016', 75.00, '', 1, '2023-10-25 07:08:06', 0, NULL, 0, NULL, 1),
(19172, 14956, '3', 'S.A Engineering College ', '', 'bTECH(Information Technology)', '2018', 66.70, '', 1, '2023-10-25 07:19:53', 0, NULL, 0, NULL, 1),
(19173, 14956, '1', 'Sri Sarada Eashwar Vidhya Mandir Matriculation higher secondary school ', '', '', '2012', 74.00, '', 1, '2023-10-25 07:21:06', 0, NULL, 0, NULL, 1),
(19174, 14956, '2', 'Sri Sarada Eashwar Vidhya Mandir Matriculation higher secondary school ', '', '', '2014', 60.00, '', 1, '2023-10-25 07:21:39', 0, NULL, 0, NULL, 1),
(19175, 14961, '4', 'Anna University', '', 'MCA', '2020', 80.00, '', 1, '2023-10-25 10:07:45', 0, NULL, 0, NULL, 1),
(19176, 14962, '3', 'university', '', ' b com', '2021', 66.00, '', 1, '2023-10-26 04:45:36', 0, NULL, 0, NULL, 1),
(19177, 14963, '3', 'Patrician college of arts and science ', '', 'Bachelor of computer applications ', '2023', 85.00, '', 1, '2023-10-26 05:01:09', 0, NULL, 0, NULL, 1),
(19178, 14964, '3', 'patrician college of arts and science ', '', 'Bachelor’s of computer application', '2023', 83.00, '', 1, '2023-10-26 05:01:46', 0, NULL, 0, NULL, 1),
(19179, 14963, '2', 'Padma Subramaniam Bala Bhavan Matriculation Higher secondary school ', '', '', '2020', 58.00, '', 1, '2023-10-26 05:02:26', 1, '2023-10-26 05:03:55', 0, NULL, 1),
(19180, 14964, '2', 'guntur subbiah pillai t.nagar girls higher secondary ', '', '', '2020', 74.00, '', 1, '2023-10-26 05:03:02', 0, NULL, 0, NULL, 1),
(19181, 14963, '1', 'Padma Subramaniam Bala Bhavan Matriculation Higher secondary school ', '', '', '2018', 80.00, '', 1, '2023-10-26 05:03:21', 0, NULL, 0, NULL, 1),
(19182, 14964, '1', 'guntur subbiah pillai t.nagar girls higher secondary ', '', '', '2018', 84.00, '', 1, '2023-10-26 05:03:27', 0, NULL, 0, NULL, 1),
(19183, 14965, '5', 'Department of Technical Education ', '', 'ECE', '2018', 86.50, '', 1, '2023-10-26 05:04:05', 0, NULL, 0, NULL, 1),
(19184, 14967, '3', 'Aalim Muhammed Salegh college of engineering', '', 'B.Tech(IT) ', '2023', 78.00, '', 1, '2023-10-26 05:56:28', 0, NULL, 0, NULL, 1),
(19185, 14966, '3', 'Anna University ', '', 'B.TECH-IT', '2023', 79.00, '', 1, '2023-10-26 05:57:36', 0, NULL, 0, NULL, 1),
(19186, 14969, '3', 'Ms University of Tirunelveli ', '', 'BCA', '2023', 80.00, '', 1, '2023-10-26 06:12:47', 0, NULL, 0, NULL, 1),
(19187, 14971, '1', 'state board', '', '', '2020', 76.00, '', 1, '2023-10-26 06:16:51', 0, NULL, 0, NULL, 1),
(19188, 14971, '5', 'Govt Polytechnic College', '', '', '2023', 60.00, '', 1, '2023-10-26 06:17:40', 0, NULL, 0, NULL, 1),
(19189, 14972, '3', 'Tj Institute of technology ', '', 'Be', '2011', 65.00, '', 1, '2023-10-26 06:19:08', 0, NULL, 0, NULL, 1),
(19190, 14968, '5', 'gptc diploma college', '', 'ece', '2023', 68.00, '', 1, '2023-10-26 06:23:28', 0, NULL, 0, NULL, 1),
(19191, 14973, '5', 'anna univesity', '', '', '2004', 50.00, '', 1, '2023-10-26 06:29:26', 0, NULL, 0, NULL, 1),
(19192, 14975, '3', 'Anna University ', '', 'B.Tech(IT)', '2023', 75.00, '', 1, '2023-10-26 06:45:41', 0, NULL, 0, NULL, 1),
(19193, 14976, '3', 'Dr.Ambedkar Government Art\'s college', '', 'bsc computer science', '2023', 82.00, '', 1, '2023-10-26 06:50:50', 0, NULL, 0, NULL, 1),
(19194, 14977, '4', 'University of Madras', '', 'M. Com', '2023', 79.00, '', 1, '2023-10-26 07:06:52', 0, NULL, 0, NULL, 1),
(19195, 14977, '3', 'University of Madras', '', 'B. Com(Bank Management) ', '2021', 66.00, '', 1, '2023-10-26 07:08:08', 0, NULL, 0, NULL, 1),
(19196, 14977, '2', 'State board of Tamilnadu', '', '', '2018', 61.00, '', 1, '2023-10-26 07:08:52', 0, NULL, 0, NULL, 1),
(19197, 14977, '1', 'State board of Tamilnadu', '', '', '2016', 63.00, '', 1, '2023-10-26 07:09:24', 0, NULL, 0, NULL, 1),
(19198, 14993, '3', 'Anna University ', '', 'BE ECE ', '2020', 70.00, '', 1, '2023-10-26 10:14:45', 0, NULL, 0, NULL, 1),
(19199, 14994, '5', 'Dote', '', 'Diploma cs', '2015', 80.00, '', 1, '2023-10-26 01:00:15', 0, NULL, 0, NULL, 1),
(19200, 14995, '3', 'Madras University ', '', 'B.com', '2022', 70.00, '', 1, '2023-10-26 01:04:26', 0, NULL, 0, NULL, 1),
(19201, 14997, '1', 'State board ', '', '', '2017', 94.00, '', 1, '2023-10-26 01:51:17', 0, NULL, 0, NULL, 1),
(19202, 14997, '2', 'State board', '', '', '2019', 85.00, '', 1, '2023-10-26 01:51:47', 0, NULL, 0, NULL, 1),
(19203, 14997, '3', 'Gurunanak college ', '', 'B.com(General)', '2022', 85.00, '', 1, '2023-10-26 01:52:28', 0, NULL, 0, NULL, 1),
(19204, 0, '3', 'University of Madras', '', 'B.com', '2023', 68.00, '', 1, '2023-10-26 01:59:03', 1, '2023-10-30 06:40:26', 0, NULL, 0),
(19205, 15000, '4', 'Dhanraj baid Institute of management ', '', 'MBA (Finance and HR)', '2023', 70.00, '', 1, '2023-10-26 02:47:35', 0, NULL, 0, NULL, 1),
(19206, 15000, '3', 'Dhanraj baid jain college ', '', 'B.com (Account and finance)', '2019', 72.00, '', 1, '2023-10-26 02:49:01', 0, NULL, 0, NULL, 1),
(19207, 15000, '2', 'Krishnaswamy matric hr sec school of excellence ', '', '', '2016', 70.00, '', 1, '2023-10-26 02:49:38', 0, NULL, 0, NULL, 1),
(19208, 14999, '3', 'UNIVERSITY OF MADRAS', '', 'BCA', '2019', 7.00, '', 1, '2023-10-26 03:16:46', 0, NULL, 0, NULL, 1),
(19209, 15002, '3', 'KSR COLLEGE OF ENGINEERING ', '', 'B.Tech Information Technology', '2023', 75.00, '', 1, '2023-10-27 11:18:32', 0, NULL, 0, NULL, 1),
(19210, 15003, '3', 'University of Madras ', '', 'B.com', '2023', 79.00, '', 1, '2023-10-27 11:52:33', 0, NULL, 0, NULL, 1),
(19211, 15003, '1', 'State board ', '', '', '2018', 87.00, '', 1, '2023-10-27 11:53:48', 0, NULL, 0, NULL, 1),
(19212, 15003, '2', 'State board ', '', '', '2020', 81.00, '', 1, '2023-10-27 11:54:23', 0, NULL, 0, NULL, 1),
(19213, 15005, '3', 'Guru nanak', '', 'B.com', '2019', 59.00, '', 1, '2023-10-27 12:22:37', 0, NULL, 0, NULL, 1),
(19214, 15010, '3', 'Periyar maniyammai University ', '', 'B.com( ca )', '2021', 60.00, '', 1, '2023-10-27 04:41:13', 0, NULL, 0, NULL, 1),
(19215, 15004, '3', 'University of Madras ', '', 'B.com', '2023', 81.00, '', 1, '2023-10-28 04:17:59', 0, NULL, 0, NULL, 1),
(19216, 15004, '2', 'CBSE ', '', '', '2020', 84.20, '', 1, '2023-10-28 04:18:28', 0, NULL, 0, NULL, 1),
(19217, 15004, '1', 'CBSE ', '', '', '2018', 79.40, '', 1, '2023-10-28 04:18:52', 0, NULL, 0, NULL, 1),
(19218, 15013, '3', 'Anna University', '', 'BE', '2019', 79.50, '', 1, '2023-10-28 04:46:10', 0, NULL, 0, NULL, 1),
(19219, 15014, '4', 'Madras University', '', 'MBA(HR & FINANCE)', '2023', 80.00, '', 1, '2023-10-28 05:02:02', 0, NULL, 0, NULL, 1),
(19220, 15014, '3', 'Madras University', '', 'B.com', '2020', 75.00, '', 1, '2023-10-28 05:02:42', 0, NULL, 0, NULL, 1),
(19221, 15015, '3', 'University of Madras ', '', 'B.com', '2023', 68.00, '', 1, '2023-10-28 05:07:35', 0, NULL, 0, NULL, 1),
(19222, 15011, '3', 'madhurai kamarajar university', '', 'bsc', '2013', 85.00, '', 1, '2023-10-28 05:14:58', 0, NULL, 0, NULL, 1),
(19223, 15016, '3', 'University of Madras ', '', 'B.Com', '2023', 79.45, '', 1, '2023-10-28 05:15:02', 0, NULL, 0, NULL, 1),
(19224, 15012, '4', 'Meenakshi engineering College ', '', 'MCA ', '2023', 82.00, '', 1, '2023-10-28 05:27:52', 0, NULL, 0, NULL, 1),
(19225, 15018, '3', 'anna university', '', 'be bme', '2022', 77.00, '', 1, '2023-10-28 06:06:08', 0, NULL, 0, NULL, 1),
(19226, 15007, '3', 'University of Madras', '', 'BCA', '2018', 63.00, '', 1, '2023-10-28 06:24:23', 0, NULL, 0, NULL, 1),
(19227, 14981, '5', 'Anna University ', '', '', '2019', 77.00, '', 1, '2023-10-28 06:25:09', 0, NULL, 0, NULL, 1),
(19228, 15020, '4', 'Anna University ', '', 'MCA', '2021', 8.88, '', 1, '2023-10-28 06:27:22', 0, NULL, 0, NULL, 1),
(19229, 15021, '3', 'Anna University ', '', 'B. E(CSE)', '2021', 7.11, '', 1, '2023-10-28 06:34:25', 0, NULL, 0, NULL, 1),
(19230, 15019, '3', 'Kalasalingam university', '', '', '2021', 6.50, '', 1, '2023-10-28 06:34:34', 0, NULL, 0, NULL, 1),
(19231, 15022, '3', 'University ', '', 'B.COM', '2024', 60.00, '', 1, '2023-10-28 06:40:33', 0, NULL, 0, NULL, 1),
(19232, 15024, '3', 'SRM University ', '', 'B.COM', '2020', 72.00, '', 1, '2023-10-28 12:28:29', 0, NULL, 0, NULL, 1),
(19233, 15001, '3', 'Madras University ', '', 'bsc.physics', '2023', 80.00, '', 1, '2023-10-28 12:29:40', 0, NULL, 0, NULL, 1),
(19234, 15025, '3', 'Madras University ', '', 'BSC Statistics ', '2023', 60.00, '', 1, '2023-10-28 12:33:59', 0, NULL, 0, NULL, 1),
(19235, 15023, '3', 'Madras University ', '', 'B.com', '2020', 64.00, '', 1, '2023-10-28 12:49:29', 0, NULL, 0, NULL, 1),
(19236, 15027, '3', 'Thiruvalluvar university ', '', 'Bachelor of commerce (General)', '2023', 80.00, '', 1, '2023-10-28 01:42:10', 0, NULL, 0, NULL, 1),
(19237, 15028, '3', 'Apollo arts and science college ', '', 'B.com', '2022', 75.00, '', 1, '2023-10-28 04:03:28', 0, NULL, 0, NULL, 1),
(19238, 15029, '3', 'Vivekananda College Madurai ', '', 'B.sc Maths ', '2017', 58.10, '', 1, '2023-10-28 05:49:00', 0, NULL, 0, NULL, 1),
(19239, 15030, '4', 'Bharathidasan University ', '', 'M.com', '2023', 70.00, '', 1, '2023-10-29 07:15:27', 0, NULL, 0, NULL, 1),
(19240, 15031, '4', 'Prist university ', '', 'M.tech', '2020', 79.70, '', 1, '2023-10-29 09:36:27', 0, NULL, 0, NULL, 1),
(19241, 15032, '3', 'Madras university', '', 'B.com', '2021', 70.00, '', 1, '2023-10-29 05:00:39', 1, '2023-10-29 05:00:48', 0, NULL, 0),
(19242, 15032, '1', 'State board', '', '', '2016', 74.00, '', 1, '2023-10-29 05:01:59', 0, NULL, 0, NULL, 1),
(19243, 15032, '2', 'State board', '', '', '2018', 73.00, '', 1, '2023-10-29 05:02:19', 0, NULL, 0, NULL, 1),
(19244, 15032, '3', 'Madras university', '', 'B.com', '2021', 65.00, '', 1, '2023-10-29 05:02:48', 0, NULL, 0, NULL, 1),
(19245, 15033, '3', 'university of madras', '', 'b.com', '2018', 62.00, '', 1, '2023-10-30 04:18:32', 0, NULL, 0, NULL, 1),
(19246, 15034, '4', 'University of Madras ', '', 'M.C.A master of Computer Applications ', '2023', 79.00, '', 1, '2023-10-30 05:09:04', 0, NULL, 0, NULL, 1),
(19247, 15034, '3', 'University of Madras ', '', 'B.sc computer science ', '2021', 79.00, '', 1, '2023-10-30 05:09:25', 0, NULL, 0, NULL, 1),
(19248, 15034, '2', 'State Board of TamilNadu ', '', '', '2018', 82.00, '', 1, '2023-10-30 05:09:47', 0, NULL, 0, NULL, 1),
(19249, 15034, '1', 'State Board of TamilNadu ', '', '', '2016', 94.60, '', 1, '2023-10-30 05:10:04', 0, NULL, 0, NULL, 1),
(19250, 15035, '3', 'University College of engineering', '', 'B. E', '2019', 6.41, '', 1, '2023-10-30 05:12:55', 0, NULL, 0, NULL, 1),
(19251, 15036, '4', 'Anna university', '', 'MCA', '2023', 75.00, '', 1, '2023-10-30 05:43:30', 0, NULL, 0, NULL, 1),
(19252, 15037, '1', 'Board ', '', '', '2015', 75.00, '', 1, '2023-10-30 06:23:07', 0, NULL, 0, NULL, 1),
(19253, 15037, '2', 'State Board ', '', '', '2017', 64.00, '', 1, '2023-10-30 06:23:26', 0, NULL, 0, NULL, 1),
(19254, 15037, '3', 'Anna University ', '', 'BE', '2021', 75.00, '', 1, '2023-10-30 06:24:17', 0, NULL, 0, NULL, 1),
(19255, 15038, '3', 'Alagappa University ', '', 'B sc computer science ', '2023', 76.00, '', 1, '2023-10-30 06:40:57', 0, NULL, 0, NULL, 1),
(19256, 15041, '4', 'Pondicherry University ', '', 'mba finance', '2021', 70.00, '', 1, '2023-10-30 07:13:24', 0, NULL, 0, NULL, 1),
(19257, 15041, '3', 'university of madras ', '', 'bcom', '2019', 67.00, '', 1, '2023-10-30 07:14:12', 0, NULL, 0, NULL, 1),
(19258, 15042, '3', 'Dhanalakshmi srinivasan college of engineering and technology ', '', 'B.E', '2023', 80.00, '', 1, '2023-10-30 11:22:06', 1, '2023-10-30 11:22:37', 0, NULL, 1),
(19259, 15042, '2', 'State board ', '', '', '2019', 56.00, '', 1, '2023-10-30 11:23:01', 1, '2023-10-30 11:24:34', 0, NULL, 1),
(19260, 15042, '1', 'State board ', '', '', '2017', 90.00, '', 1, '2023-10-30 11:24:20', 0, NULL, 0, NULL, 1),
(19261, 15044, '3', 'Bharathidasan University ', '', 'BCA', '2019', 80.00, '', 1, '2023-10-30 01:58:58', 0, NULL, 0, NULL, 1),
(19262, 15045, '3', 'M. O. P Vaishnav College for Women ', '', 'B.Sc Computer Science ', '2021', 84.00, '', 1, '2023-10-30 04:37:26', 1, '2023-10-30 04:38:03', 0, NULL, 1),
(19263, 15045, '2', 'State Board ', '', '', '2017', 88.00, '', 1, '2023-10-30 04:39:13', 0, NULL, 0, NULL, 1),
(19264, 15045, '1', 'Central Board ', '', '', '2015', 84.00, '', 1, '2023-10-30 04:39:58', 0, NULL, 0, NULL, 1),
(19265, 15047, '4', 'Sarah tucker college ', '', 'MCA', '2023', 78.00, '', 1, '2023-10-31 05:03:11', 0, NULL, 0, NULL, 1),
(19266, 15048, '4', 'Madras University ', '', 'BA', '2021', 80.00, '', 1, '2023-10-31 05:13:40', 0, NULL, 0, NULL, 1),
(19267, 15049, '3', 'Government Arts College For Men at Nandanam ', '', 'Bsc.ComputerScience', '2023', 79.00, '', 1, '2023-10-31 05:31:03', 0, NULL, 0, NULL, 1),
(19268, 15050, '4', 'Anna University ', '', 'MCA', '2023', 75.00, '', 1, '2023-10-31 05:34:25', 0, NULL, 0, NULL, 1),
(19269, 15050, '3', 'Madras University ', '', 'BCA', '2021', 77.00, '', 1, '2023-10-31 05:34:44', 0, NULL, 0, NULL, 1),
(19270, 15051, '3', 'Madras University ', '', 'BCA ', '2021', 79.00, '', 1, '2023-10-31 05:39:47', 0, NULL, 0, NULL, 1),
(19271, 15051, '4', 'Anna University ', '', 'MCA ', '2023', 75.00, '', 1, '2023-10-31 05:41:08', 0, NULL, 0, NULL, 1),
(19272, 15052, '3', 'Thiruvalluvar University ', '', 'BCA', '2023', 75.00, '', 1, '2023-10-31 06:01:54', 0, NULL, 0, NULL, 1),
(19273, 15052, '4', 'Anna University ', '', 'MCA', '2023', 75.00, '', 1, '2023-10-31 06:02:15', 0, NULL, 0, NULL, 1),
(19274, 15054, '4', 'Pondicherry University ', '', 'MCA', '2023', 83.00, '', 1, '2023-10-31 06:18:18', 0, NULL, 0, NULL, 1),
(19275, 15054, '3', 'Thiruvalluvar University ', '', 'BCA', '2021', 76.00, '', 1, '2023-10-31 06:19:08', 0, NULL, 0, NULL, 1),
(19276, 15053, '4', 'M.S University ', '', 'M.sc (Information Technology)', '2023', 70.10, '', 1, '2023-10-31 06:28:46', 0, NULL, 0, NULL, 1),
(19277, 15055, '3', 'University ', '', 'BE,cse', '2023', 7.90, '', 1, '2023-10-31 06:30:17', 0, NULL, 0, NULL, 1),
(19278, 15055, '1', 'State board ', '', '', '2017', 88.80, '', 1, '2023-10-31 06:31:49', 0, NULL, 0, NULL, 1),
(19279, 15055, '2', 'State board ', '', '', '2019', 57.30, '', 1, '2023-10-31 06:33:32', 0, NULL, 0, NULL, 1),
(19280, 15059, '4', 'Anna University ', '', 'MCA', '2023', 8.30, '', 1, '2023-10-31 07:00:37', 0, NULL, 0, NULL, 1),
(19281, 15057, '4', 'Anna University ', '', 'MCA', '2023', 8.30, '', 1, '2023-10-31 07:03:57', 0, NULL, 0, NULL, 1),
(19282, 15058, '3', 'kalaiganar karunanidhi institute of technology', '', ' be', '2022', 76.00, '', 1, '2023-10-31 07:07:59', 0, NULL, 0, NULL, 1),
(19283, 15060, '3', 'Anna university ', '', 'B.E computer science and engineering ', '2017', 65.00, '', 1, '2023-10-31 07:11:45', 0, NULL, 0, NULL, 1),
(19284, 15056, '3', 'mohammed sathak', '', 'bcom', '2019', 80.00, '', 1, '2023-10-31 07:14:38', 0, NULL, 0, NULL, 1),
(19285, 15061, '5', 'Dote ', '', '', '2020', 67.00, '', 1, '2023-10-31 07:25:57', 0, NULL, 0, NULL, 1),
(19286, 15062, '3', 'Anna university ', '', 'BE', '2022', 80.00, '', 1, '2023-10-31 09:42:31', 0, NULL, 0, NULL, 1),
(19287, 15063, '3', 'Anna University ', '', 'BE', '2021', 8.40, '', 1, '2023-10-31 09:44:50', 0, NULL, 0, NULL, 1),
(19288, 15066, '3', 'dr. m.g.r educational and research institute', '', 'bachelors of technology', '2023', 80.00, '', 1, '2023-10-31 01:14:37', 0, NULL, 0, NULL, 1),
(19289, 15067, '3', 'Anna university', '', 'BE', '2022', 70.00, '', 1, '2023-11-01 04:10:47', 0, NULL, 0, NULL, 1),
(19290, 15068, '3', 'Madurai Kamarajar University ', '', 'B.sc Computer science ', '2023', 76.00, '', 1, '2023-11-01 04:10:53', 0, NULL, 0, NULL, 1),
(19291, 15069, '3', 'Government Arts College', '', 'B.sc', '2021', 72.00, '', 1, '2023-11-01 04:11:13', 0, NULL, 0, NULL, 1),
(19292, 15068, '2', 'Central Board of secondary education ', '', '', '2017', 80.00, '', 1, '2023-11-01 04:11:56', 0, NULL, 0, NULL, 1),
(19293, 15068, '1', 'Central Board of secondary education ', '', '', '2020', 78.00, '', 1, '2023-11-01 04:12:18', 0, NULL, 0, NULL, 1),
(19294, 15071, '3', 'Bharathidhasan University Trichy ', '', 'Bsc', '2023', 90.00, '', 1, '2023-11-01 04:13:18', 0, NULL, 0, NULL, 1),
(19295, 15071, '2', 'State board', '', '', '2020', 68.00, '', 1, '2023-11-01 04:15:17', 0, NULL, 0, NULL, 1),
(19296, 15072, '4', 'periyar university', '', '', '2021', 79.00, '', 1, '2023-11-01 04:36:15', 0, NULL, 0, NULL, 1),
(19297, 15073, '3', 'MSU university', '', 'B. Com', '2022', 78.00, '', 1, '2023-11-01 04:36:25', 0, NULL, 0, NULL, 1),
(19298, 15074, '3', 'SRM University ', '', 'Bsc', '2019', 72.00, '', 1, '2023-11-01 04:40:05', 0, NULL, 0, NULL, 1),
(19299, 15075, '3', 'Bharathidhasan University ', '', 'BCA', '2021', 79.00, '', 1, '2023-11-01 04:41:05', 0, NULL, 0, NULL, 1),
(19300, 15075, '2', 'Sate board ', '', '', '2018', 58.00, '', 1, '2023-11-01 04:41:45', 0, NULL, 0, NULL, 1),
(19301, 15076, '4', 'University ', '', 'MCA', '2022', 6.30, '', 1, '2023-11-01 04:49:02', 0, NULL, 0, NULL, 1),
(19302, 15077, '3', 'Scott Christian College, Nagercoil ', '', 'Mathematics ', '2023', 76.00, '', 1, '2023-11-01 04:49:52', 0, NULL, 0, NULL, 1),
(19303, 15076, '3', 'University ', '', 'BCA', '2020', 7.61, '', 1, '2023-11-01 04:51:34', 0, NULL, 0, NULL, 1),
(19304, 15076, '2', 'State Board', '', '', '2020', 56.42, '', 1, '2023-11-01 04:54:11', 0, NULL, 0, NULL, 1),
(19305, 15065, '5', 'Subasakthi college of arts and science ', '', 'Mphw', '2021', 69.00, '', 1, '2023-11-01 05:32:36', 0, NULL, 0, NULL, 1),
(19306, 15079, '4', 'Alagappa University karaikudi ', '', 'M.Sc Computer science ', '2023', 70.00, '', 1, '2023-11-01 06:01:47', 0, NULL, 0, NULL, 1),
(19307, 15078, '3', 'Thiruvallur university ', '', 'B.sc mathematics ', '2019', 60.00, '', 1, '2023-11-01 06:02:53', 0, NULL, 0, NULL, 1),
(19308, 15080, '4', 'Alagappa University ', '', 'Msc Computer science ', '2023', 75.00, '', 1, '2023-11-01 06:05:05', 0, NULL, 0, NULL, 1),
(19309, 15081, '4', 'Anna University ', '', 'B.E', '2019', 85.00, '', 1, '2023-11-01 06:08:01', 0, NULL, 0, NULL, 1),
(19310, 15084, '3', 'Anna university', '', 'Be', '2023', 81.00, '', 1, '2023-11-01 06:27:08', 0, NULL, 0, NULL, 1),
(19311, 15084, '2', 'Government higher secondary school', '', '', '2019', 67.00, '', 1, '2023-11-01 06:27:39', 0, NULL, 0, NULL, 1),
(19312, 15084, '1', 'Government high school', '', '', '2017', 91.00, '', 1, '2023-11-01 06:27:57', 0, NULL, 0, NULL, 1),
(19313, 15083, '4', 'Bharathiyar university', '', 'M. Com', '2021', 7.30, '', 1, '2023-11-01 06:47:03', 0, NULL, 0, NULL, 1),
(19314, 15085, '3', 'Anna university', '', 'BE-(mechanical)', '2019', 6.50, '', 1, '2023-11-01 06:47:09', 0, NULL, 0, NULL, 1),
(19315, 15087, '3', 'Anna University', '', 'B.E', '2023', 8.20, '', 1, '2023-11-01 06:50:03', 0, NULL, 0, NULL, 1),
(19316, 15082, '3', 'Annamalai University ', '', 'B Sc', '2021', 59.00, '', 1, '2023-11-01 07:06:37', 0, NULL, 0, NULL, 1),
(19317, 15086, '4', 'Bharathiyar University ', '', 'Msc', '2021', 80.00, '', 1, '2023-11-01 07:15:51', 0, NULL, 0, NULL, 1),
(19318, 15088, '3', 'Madras University ', '', 'B.A English ', '2017', 50.00, '', 1, '2023-11-01 07:20:14', 0, NULL, 0, NULL, 1),
(19319, 15089, '3', 'madras university', '', 'b.s.c computer science', '2021', 60.00, '', 1, '2023-11-01 05:37:08', 0, NULL, 0, NULL, 1),
(19320, 15089, '2', 'st.anns higher secondary school', '', '', '2017', 50.00, '', 1, '2023-11-01 05:38:35', 0, NULL, 0, NULL, 1),
(19321, 15089, '1', 'dhanalakshmi higher secondary school', '', '', '2015', 70.00, '', 1, '2023-11-01 05:39:30', 0, NULL, 0, NULL, 1),
(19322, 15099, '3', 'Madras University ', '', 'BSC computer science ', '2021', 64.00, '', 1, '2023-11-02 07:05:48', 0, NULL, 0, NULL, 1),
(19323, 15100, '3', 'Saveetha school of engineering ', '', 'B.tech ', '2022', 7.10, '', 1, '2023-11-02 07:10:58', 0, NULL, 0, NULL, 1),
(19324, 15100, '2', 'Matriculation ', '', '', '2018', 60.00, '', 1, '2023-11-02 07:11:38', 0, NULL, 0, NULL, 1),
(19325, 15100, '1', 'Matriculation ', '', '', '2016', 80.00, '', 1, '2023-11-02 07:12:23', 0, NULL, 0, NULL, 1),
(19326, 15101, '5', 'Directorate of technical education ', '', 'Diploma in automobile engineering ', '2020', 85.00, '', 1, '2023-11-02 07:41:37', 1, '2023-11-02 07:41:55', 0, NULL, 1),
(19327, 15101, '3', 'Directorate of technical education ', '', 'Bachelor of engineering ', '2026', 75.00, '', 1, '2023-11-02 07:43:47', 0, NULL, 0, NULL, 1),
(19328, 15102, '3', 'Manononmaniam sundaranar University ', '', 'Bsc physics', '2018', 63.00, '', 1, '2023-11-02 07:44:59', 0, NULL, 0, NULL, 1),
(19329, 15064, '3', 'Madras university', '', 'B. Com', '2019', 65.00, '', 1, '2023-11-02 08:42:21', 0, NULL, 0, NULL, 1),
(19330, 15064, '2', 'State board', '', '', '2016', 71.00, '', 1, '2023-11-02 08:42:53', 0, NULL, 0, NULL, 1),
(19331, 15064, '1', 'State board', '', '', '2014', 81.00, '', 1, '2023-11-02 08:43:12', 0, NULL, 0, NULL, 1),
(19332, 15103, '3', 'Vels university', '', 'Bba', '2022', 75.00, '', 1, '2023-11-02 08:51:56', 0, NULL, 0, NULL, 1),
(19333, 15103, '2', 'State board', '', '', '2019', 68.00, '', 1, '2023-11-02 08:52:47', 1, '2023-11-02 08:55:12', 0, NULL, 1),
(19334, 15103, '1', 'State board', '', '', '2017', 69.00, '', 1, '2023-11-02 08:54:11', 1, '2023-11-02 08:54:56', 0, NULL, 1),
(19335, 15104, '3', 'presidency college', '', 'ba', '2013', 90.00, '', 1, '2023-11-02 10:05:04', 0, NULL, 0, NULL, 1),
(19336, 15106, '4', 'Anna University', '', 'MBA', '2015', 7.17, '', 1, '2023-11-02 10:38:36', 0, NULL, 0, NULL, 1),
(19337, 15107, '1', 'SLV matric her sec School ', '', '', '2015', 89.00, '', 1, '2023-11-02 11:37:21', 0, NULL, 0, NULL, 1),
(19338, 15107, '2', 'SLV Matrix Her Sec School', '', '', '2017', 85.00, '', 1, '2023-11-02 11:37:55', 0, NULL, 0, NULL, 1),
(19339, 15107, '3', 'Panimalar Engineering College ', '', 'ECE', '2021', 76.00, '', 1, '2023-11-02 11:38:23', 0, NULL, 0, NULL, 1),
(19340, 15108, '3', 'Madras University ', '', 'B. Com', '2022', 83.92, '', 1, '2023-11-02 12:21:47', 0, NULL, 0, NULL, 1),
(19341, 15097, '3', 'Velammal engineering college ', '', 'B.E(ECE)', '2019', 64.00, '', 1, '2023-11-03 02:26:45', 1, '2023-11-03 02:27:07', 0, NULL, 1),
(19342, 15110, '3', 'Madurai Kamaraj University ', '', 'Bsc Computer science ', '2023', 7.40, '', 1, '2023-11-03 04:27:15', 0, NULL, 0, NULL, 1),
(19343, 15112, '3', 'University of madras', '', 'B.com(Computer application)', '2018', 75.00, '', 1, '2023-11-03 04:54:35', 0, NULL, 0, NULL, 1),
(19344, 15114, '3', 'Bharathidasan university', '', 'Bachelor of business administration', '2022', 70.00, '', 1, '2023-11-03 05:26:56', 0, NULL, 0, NULL, 1),
(19345, 15113, '3', 'Anjali Ammal Mahalingam Engineering College ', '', 'B.E(cSE)', '2022', 82.00, '', 1, '2023-11-03 05:32:10', 0, NULL, 0, NULL, 1),
(19346, 15116, '3', 'University of madras', '', 'B.com Accounting & finance', '2022', 80.00, '', 1, '2023-11-03 06:09:09', 0, NULL, 0, NULL, 1),
(19347, 15116, '1', 'State board', '', '', '2017', 86.00, '', 1, '2023-11-03 06:09:41', 0, NULL, 0, NULL, 1),
(19348, 15116, '2', 'State board', '', '', '2019', 83.00, '', 1, '2023-11-03 06:10:04', 0, NULL, 0, NULL, 1),
(19349, 15117, '3', ' PSR engineering college ', '', 'B.E(Computer Science)', '2022', 78.00, '', 1, '2023-11-03 06:13:57', 0, NULL, 0, NULL, 1),
(19350, 15115, '4', 'Pondycherry University ', '', 'MCA ', '2023', 8.50, '', 1, '2023-11-03 06:15:38', 0, NULL, 0, NULL, 1),
(19351, 15118, '3', 'Anna University ', '', 'BE', '2021', 79.10, '', 1, '2023-11-03 06:23:07', 0, NULL, 0, NULL, 1),
(19352, 15119, '4', 'Alagappa University ', '', 'MBa', '2023', 70.00, '', 1, '2023-11-03 06:44:49', 0, NULL, 0, NULL, 1),
(19353, 15120, '3', 'Sathyabama University ', '', 'B.E', '2016', 60.00, '', 1, '2023-11-03 06:53:47', 0, NULL, 0, NULL, 1),
(19354, 15120, '2', 'sT.Mary\'s Hr.Sec.School', '', '', '2012', 65.00, '', 1, '2023-11-03 06:54:27', 0, NULL, 0, NULL, 1),
(19355, 15120, '1', 'ST.Mary\'s Hr.Sec.School', '', '', '2010', 90.00, '', 1, '2023-11-03 06:55:11', 0, NULL, 0, NULL, 1),
(19356, 15105, '1', 'State board of Tamilnadu', '', '', '2017', 88.00, '', 1, '2023-11-03 09:02:08', 1, '2023-11-03 09:02:51', 0, NULL, 0),
(19357, 15122, '5', 'Dote University ', '', '', '2018', 72.00, '', 1, '2023-11-03 09:02:25', 0, NULL, 0, NULL, 1),
(19358, 15105, '2', 'State Board of Tamil Nadu', '', '', '2019', 73.00, '', 1, '2023-11-03 09:03:24', 0, NULL, 0, NULL, 1),
(19359, 15105, '3', 'Dwaraka Doss Goverdhan Doss Vaishnav College', '', ' B. Com', '2022', 75.00, '', 1, '2023-11-03 09:04:08', 0, NULL, 0, NULL, 1),
(19360, 15123, '4', 'Bharathidasan University ', '', 'MA.HRM', '2023', 75.00, '', 1, '2023-11-03 09:27:03', 0, NULL, 0, NULL, 1),
(19361, 15123, '3', 'Bharathidasan University ', '', 'B.com', '2021', 75.00, '', 1, '2023-11-03 09:28:26', 0, NULL, 0, NULL, 1),
(19362, 15124, '3', 'Madurai kamarajar university ', '', 'BA English literature ', '2021', 75.00, '', 1, '2023-11-03 10:16:33', 0, NULL, 0, NULL, 1),
(19363, 15127, '3', 'Adaikala matha collage under Bharathidhasan University ', '', 'Computer science ', '2022', 80.34, '', 1, '2023-11-03 01:34:53', 0, NULL, 0, NULL, 1),
(19364, 15126, '3', 'Madras University ', '', 'B.Com', '2019', 70.00, '', 1, '2023-11-03 02:52:58', 0, NULL, 0, NULL, 1),
(19365, 15128, '3', 'KSR College of engineering ', '', 'BE', '2021', 8.20, '', 1, '2023-11-03 05:21:39', 0, NULL, 0, NULL, 1),
(19366, 15128, '5', 'Thiyagarajar Polytechnic college ', '', '', '2018', 83.79, '', 1, '2023-11-03 05:22:42', 0, NULL, 0, NULL, 1),
(19367, 15128, '2', 'GV hr.sec.school', '', '', '2016', 58.00, '', 1, '2023-11-03 05:23:24', 0, NULL, 0, NULL, 1),
(19368, 15128, '1', 'Viswesvaraiyah hr.sec.school', '', '', '2014', 90.00, '', 1, '2023-11-03 05:23:52', 0, NULL, 0, NULL, 1),
(19369, 15129, '1', 'State board ', '', '', '2014', 98.00, '', 1, '2023-11-03 05:29:28', 1, '2023-11-03 05:31:32', 0, NULL, 1),
(19370, 15129, '2', 'State board ', '', '', '2016', 88.00, '', 1, '2023-11-03 05:30:42', 0, NULL, 0, NULL, 1),
(19371, 15129, '3', 'Anna University ', '', 'B.tech', '2020', 8.50, '', 1, '2023-11-03 05:31:13', 0, NULL, 0, NULL, 1),
(19372, 15131, '4', 'Queen Mary\'s College', '', 'Sociology', '2022', 84.00, '', 1, '2023-11-04 05:16:47', 0, NULL, 0, NULL, 1),
(19373, 15132, '3', 'Manonmaniam sundaranar University of thirunelvelli ', '', 'Bsc computer science ', '2023', 92.00, '', 1, '2023-11-04 05:37:10', 0, NULL, 0, NULL, 1),
(19374, 15121, '3', 'Anna University ', '', 'B.E', '2014', 72.00, '', 1, '2023-11-04 05:42:21', 0, NULL, 0, NULL, 1),
(19375, 15133, '3', 'Madras University ', '', 'BBA ', '2018', 80.00, '', 1, '2023-11-04 05:50:41', 0, NULL, 0, NULL, 1),
(19376, 15134, '2', 'State Board ', '', '', '2018', 92.50, '', 1, '2023-11-04 06:03:15', 0, NULL, 0, NULL, 1),
(19377, 15134, '1', 'State Board', '', '', '2016', 87.40, '', 1, '2023-11-04 06:03:38', 0, NULL, 0, NULL, 1),
(19378, 15134, '3', 'Madars University', '', 'BBA', '2021', 79.00, '', 1, '2023-11-04 06:04:33', 0, NULL, 0, NULL, 1),
(19379, 15134, '4', 'Saveetha University', '', 'MBA', '2023', 95.00, '', 1, '2023-11-04 06:05:00', 0, NULL, 0, NULL, 1),
(19380, 15135, '1', 'State board', '', '', '2016', 86.00, '', 1, '2023-11-04 06:09:41', 0, NULL, 0, NULL, 1),
(19381, 15135, '2', 'State board', '', '', '2018', 70.17, '', 1, '2023-11-04 06:10:03', 0, NULL, 0, NULL, 1),
(19382, 15135, '3', 'Anna university', '', 'BE ', '2022', 80.03, '', 1, '2023-11-04 06:11:20', 0, NULL, 0, NULL, 1),
(19383, 15136, '1', 'State board ', '', '', '2013', 56.00, '', 1, '2023-11-04 06:20:38', 0, NULL, 0, NULL, 1),
(19384, 15138, '3', 'the new college', '', 'bsc.it', '2023', 70.22, '', 1, '2023-11-04 06:31:54', 0, NULL, 0, NULL, 1),
(19385, 15139, '1', 'State Board ', '', '', '2018', 79.00, '', 1, '2023-11-04 06:37:09', 0, NULL, 0, NULL, 1),
(19386, 15139, '2', 'State Board ', '', '', '2020', 59.00, '', 1, '2023-11-04 06:37:48', 0, NULL, 0, NULL, 1),
(19387, 15137, '3', 'Algappa University ', '', 'B.com', '2020', 63.00, '', 1, '2023-11-04 06:42:21', 0, NULL, 0, NULL, 1),
(19388, 15137, '2', 'Syed ammal higher secondary school ', '', '', '2017', 83.50, '', 1, '2023-11-04 06:44:39', 0, NULL, 0, NULL, 1),
(19389, 15142, '3', 'Madras university', '', 'B. Com CA', '2019', 60.00, '', 1, '2023-11-04 07:26:20', 0, NULL, 0, NULL, 1),
(19390, 15143, '3', 'Madras of university', '', 'B.com Cs', '2017', 54.00, '', 1, '2023-11-04 07:27:58', 0, NULL, 0, NULL, 1),
(19391, 15144, '3', 'Sss shashun jain college', '', 'B.com.ca', '2019', 60.00, '', 1, '2023-11-04 07:30:15', 0, NULL, 0, NULL, 1),
(19392, 15140, '3', 'University ', '', 'B.sc microbiology ', '2020', 78.00, '', 1, '2023-11-04 07:32:24', 0, NULL, 0, NULL, 1),
(19393, 15141, '3', 'Jntu', '', 'Btech', '2014', 60.00, '', 1, '2023-11-04 07:45:11', 0, NULL, 0, NULL, 1),
(19394, 15145, '5', 'Anna University ', '', '', '2018', 80.00, '', 1, '2023-11-04 10:00:48', 0, NULL, 0, NULL, 1),
(19395, 15146, '3', 'Thiruvalluvar university', '', 'Bachelor of science in Chemistry', '2022', 85.00, '', 1, '2023-11-04 12:26:22', 0, NULL, 0, NULL, 1),
(19396, 15147, '3', 'Thiruvalluvar University ', '', 'Bsc', '2022', 85.00, '', 1, '2023-11-04 12:33:56', 0, NULL, 0, NULL, 1),
(19397, 15150, '2', 'Board ', '', '', '2021', 74.00, '', 1, '2023-11-05 05:21:39', 0, NULL, 0, NULL, 1),
(19398, 15150, '3', 'University ', '', 'BSC maths ', '2022', 70.00, '', 1, '2023-11-05 05:23:51', 0, NULL, 0, NULL, 1),
(19399, 15151, '3', 'Thiruvalluvar ', '', 'B a English ', '2019', 58.00, '', 1, '2023-11-05 07:22:07', 0, NULL, 0, NULL, 1),
(19400, 15152, '3', 'Alagappa University ', '', 'B. Litt(Tamil)', '2023', 69.50, '', 1, '2023-11-05 08:13:45', 0, NULL, 0, NULL, 1),
(19401, 15149, '3', 'Madras University ', '', 'Ba economics ', '2023', 72.00, '', 1, '2023-11-05 05:15:55', 0, NULL, 0, NULL, 1),
(19402, 15156, '4', 'Virudhunagar HinduNadar’sSenthikumara NadarCollege', '', 'mca', '2023', 79.00, '', 1, '2023-11-06 04:56:41', 0, NULL, 0, NULL, 1),
(19403, 15154, '3', 'Madras University', '', 'BCA', '2020', 78.00, '', 1, '2023-11-06 05:28:58', 0, NULL, 0, NULL, 1),
(19404, 15153, '3', 'ANNAMALAI UNIVERSITY ', '', 'B.A.history', '2019', 30.00, '', 1, '2023-11-06 05:41:36', 0, NULL, 0, NULL, 1),
(19405, 15157, '4', 'stella maris college', '', 'm.com', '2023', 67.00, '', 1, '2023-11-06 06:12:11', 0, NULL, 0, NULL, 1),
(19406, 15159, '3', 'Anna University ', '', 'Bca', '2023', 77.00, '', 1, '2023-11-06 06:14:28', 0, NULL, 0, NULL, 1),
(19407, 15109, '3', 'Anna University ', '', 'BE', '2019', 70.00, '', 1, '2023-11-06 06:32:06', 0, NULL, 0, NULL, 1),
(19408, 15161, '3', 'Madras university', '', 'BBA', '2022', 77.00, '', 1, '2023-11-06 06:51:44', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19409, 15155, '5', 'Guindy iti', '', 'Dtpo, computer hardware and software ', '2023', 70.00, '', 1, '2023-11-06 06:55:07', 0, NULL, 0, NULL, 1),
(19410, 15162, '3', 'Madras University ', '', 'ba ', '2023', 89.00, '', 1, '2023-11-06 07:00:00', 0, NULL, 0, NULL, 1),
(19411, 15165, '2', 'Karnataka board  ', '', '', '2013', 59.00, '', 1, '2023-11-06 07:03:58', 0, NULL, 0, NULL, 1),
(19412, 15164, '3', 'KUD DHARAWAD ', '', 'Ba', '2023', 70.00, '', 1, '2023-11-06 07:17:42', 0, NULL, 0, NULL, 1),
(19413, 15163, '5', 'Department of technical education ', '', 'Mechanical ', '2020', 79.00, '', 1, '2023-11-06 07:18:06', 0, NULL, 0, NULL, 1),
(19414, 15160, '3', 'thiruthanagal nadar college', '', 'bcom', '2023', 76.00, '', 1, '2023-11-06 07:21:53', 0, NULL, 0, NULL, 1),
(19415, 15167, '3', 'Anna University', '', 'Bachelor of Engineering ', '2021', 70.00, '', 1, '2023-11-06 07:52:48', 0, NULL, 0, NULL, 1),
(19416, 15166, '3', 'University ', '', 'Ba economics ', '2023', 85.00, '', 1, '2023-11-06 08:01:45', 0, NULL, 0, NULL, 1),
(19417, 15169, '4', 'Pondicherry university ', '', 'Mca', '2015', 63.63, '', 1, '2023-11-06 08:06:03', 0, NULL, 0, NULL, 1),
(19418, 15169, '3', 'Pondicherry university ', '', 'Bca', '2011', 56.00, '', 1, '2023-11-06 08:06:43', 0, NULL, 0, NULL, 1),
(19419, 15169, '2', 'Tamilnadu Statebroad ', '', '', '2008', 78.83, '', 1, '2023-11-06 08:08:05', 0, NULL, 0, NULL, 1),
(19420, 15169, '1', 'Tamil nadu Statebroad ', '', '', '2006', 60.20, '', 1, '2023-11-06 08:09:04', 0, NULL, 0, NULL, 1),
(19421, 15170, '4', 'University ', '', 'MBA', '2023', 65.60, '', 1, '2023-11-06 09:46:34', 0, NULL, 0, NULL, 1),
(19422, 15171, '3', 'Ksou+Diploma', '', 'E&E', '2011', 60.00, '', 1, '2023-11-06 09:57:44', 0, NULL, 0, NULL, 1),
(19423, 15172, '3', 'Mangalore University ', '', 'BSW', '2022', 66.00, '', 1, '2023-11-06 10:19:51', 0, NULL, 0, NULL, 1),
(19424, 15174, '3', 'Bharathiyar university coimbatore ', '', 'B.gom', '2018', 67.00, '', 1, '2023-11-06 11:04:54', 0, NULL, 0, NULL, 1),
(19425, 15175, '2', 'ISC', '', '', '2022', 72.00, '', 1, '2023-11-06 02:04:48', 0, NULL, 0, NULL, 1),
(19426, 15177, '4', 'periyar University', '', 'MSc mathematics', '2023', 72.00, '', 1, '2023-11-07 02:37:09', 0, NULL, 0, NULL, 1),
(19427, 15178, '4', 'Muthayammal memorial College of arts and science ', '', 'Msc mathematics ', '2023', 74.00, '', 1, '2023-11-07 04:17:21', 0, NULL, 0, NULL, 1),
(19428, 15179, '4', 'Saveetha University ', '', 'MBA', '2023', 93.00, '', 1, '2023-11-07 05:22:02', 0, NULL, 0, NULL, 1),
(19429, 15180, '5', 'Bangalore technical board ', '', 'NA', '2016', 63.00, '', 1, '2023-11-07 06:22:04', 0, NULL, 0, NULL, 1),
(19430, 15181, '3', 'Madras University ', '', 'B.com', '2021', 89.00, '', 1, '2023-11-07 07:01:21', 0, NULL, 0, NULL, 1),
(19431, 15111, '3', 'shivani college of engineering', '', 'be', '2018', 63.00, '', 1, '2023-11-07 09:47:09', 0, NULL, 0, NULL, 1),
(19432, 15183, '3', 'PERI INSTITUTE OF TECHNOLOGY ', '', 'BE-CSE', '2022', 79.00, '', 1, '2023-11-07 12:48:59', 0, NULL, 0, NULL, 1),
(19433, 15184, '4', 'Presidency college chennai', '', 'Master of science in statistics', '2023', 79.00, '', 1, '2023-11-07 01:14:09', 0, NULL, 0, NULL, 1),
(19434, 15185, '3', 'Bharathidasan', '', 'B.sc', '2018', 68.00, '', 1, '2023-11-07 02:36:05', 0, NULL, 0, NULL, 1),
(19435, 15186, '3', 'mgr university', '', 'bsc', '2023', 70.00, '', 1, '2023-11-08 05:59:03', 0, NULL, 0, NULL, 1),
(19436, 15187, '3', 'Bangalore University ', '', 'B.com', '2022', 85.00, '', 1, '2023-11-08 06:23:38', 0, NULL, 0, NULL, 1),
(19437, 15188, '3', 'National engineering college kovilpatti ', '', 'BE computer science ', '2023', 8.00, '', 1, '2023-11-08 06:28:11', 0, NULL, 0, NULL, 1),
(19438, 15189, '4', 'Bangalore city college ', '', 'Bba ', '2023', 65.00, '', 1, '2023-11-08 06:40:15', 0, NULL, 0, NULL, 1),
(19439, 15190, '3', 'JNTU Kakinada ', '', 'B.tech', '2023', 67.00, '', 1, '2023-11-08 07:26:43', 0, NULL, 0, NULL, 1),
(19440, 15190, '2', 'State board ', '', 'B.tech', '2019', 93.00, '', 1, '2023-11-08 07:28:06', 0, NULL, 0, NULL, 1),
(19441, 15190, '1', 'State board ', '', '', '2017', 82.00, '', 1, '2023-11-08 07:28:30', 0, NULL, 0, NULL, 1),
(19442, 15191, '1', 'State Board', '', '', '2010', 76.64, '', 1, '2023-11-08 08:50:42', 0, NULL, 0, NULL, 1),
(19443, 15192, '3', 'SRM UNIVERSITY TRICHY ', '', 'BCA', '2023', 92.00, '', 1, '2023-11-08 01:02:09', 0, NULL, 0, NULL, 1),
(19444, 15192, '2', 'SRI SRINIVASA MATRIC HIGHER SECONDARY SCHOOL ', '', '', '2020', 70.00, '', 1, '2023-11-08 01:02:55', 1, '2023-11-08 01:03:06', 0, NULL, 0),
(19445, 15193, '3', 'Madras University ', '', '', '2018', 78.00, '', 1, '2023-11-08 01:15:29', 0, NULL, 0, NULL, 1),
(19446, 15196, '3', 'University of Madras', '', 'Bcom(ISM)', '2023', 84.00, '', 1, '2023-11-09 05:39:47', 0, NULL, 0, NULL, 1),
(19447, 15195, '3', 'Mardas University ', '', 'Bsc.computer science ', '2023', 73.00, '', 1, '2023-11-09 05:41:09', 0, NULL, 0, NULL, 1),
(19448, 15197, '4', 'SRM University ', '', 'Bcom general ', '2021', 60.00, '', 1, '2023-11-09 06:21:24', 0, NULL, 0, NULL, 1),
(19449, 15194, '3', 'bharathi womens college', '', 'bsc biochemistry', '2023', 75.00, '', 1, '2023-11-09 06:30:17', 0, NULL, 0, NULL, 1),
(19450, 15199, '3', 'guru nanak college', '', 'b.com', '2023', 76.00, '', 1, '2023-11-09 07:10:04', 0, NULL, 0, NULL, 1),
(19451, 15200, '3', 'Madras university ', '', 'Bba', '2020', 66.00, '', 1, '2023-11-09 07:23:45', 0, NULL, 0, NULL, 1),
(19452, 15201, '4', 'Madras University', '', 'M. Com', '2021', 86.00, '', 1, '2023-11-09 08:13:59', 0, NULL, 0, NULL, 1),
(19453, 15201, '3', 'Madras University', '', 'B. Com', '2019', 82.00, '', 1, '2023-11-09 08:14:28', 0, NULL, 0, NULL, 1),
(19454, 15201, '2', 'State Board', '', '', '2016', 75.00, '', 1, '2023-11-09 08:15:06', 0, NULL, 0, NULL, 1),
(19455, 15201, '1', 'State Board', '', '', '2014', 78.00, '', 1, '2023-11-09 08:15:47', 0, NULL, 0, NULL, 1),
(19456, 15202, '3', 'Meenakshi Sundararajan engineering College ', '', 'B.E', '2023', 89.00, '', 1, '2023-11-09 08:40:26', 0, NULL, 0, NULL, 1),
(19457, 15203, '5', 'Tamilnadu polytechnic college ', '', 'DEEE', '2023', 78.00, '', 1, '2023-11-09 09:40:18', 0, NULL, 0, NULL, 1),
(19458, 15204, '3', 'Bharathidasan university', '', 'BCA', '2022', 76.14, '', 1, '2023-11-09 09:48:01', 0, NULL, 0, NULL, 1),
(19459, 15206, '3', 'Añna University ', '', 'B tech IT', '2023', 7.60, '', 1, '2023-11-10 04:17:06', 0, NULL, 0, NULL, 1),
(19460, 15207, '1', 'Our lady of fathima High school', '', '', '2012', 72.00, '', 1, '2023-11-10 05:25:09', 0, NULL, 0, NULL, 1),
(19461, 15208, '3', 'Thiruvalluvar University ', '', 'BSc.Computer Science ', '2022', 76.00, '', 1, '2023-11-10 06:54:28', 0, NULL, 0, NULL, 1),
(19462, 15209, '3', 'Anna University', '', 'B.E - Computer Science and Engineering', '2023', 7.85, '', 1, '2023-11-10 08:56:31', 0, NULL, 0, NULL, 1),
(19463, 15209, '2', 'State Board', '', '', '2019', 70.00, '', 1, '2023-11-10 08:57:09', 0, NULL, 0, NULL, 1),
(19464, 15209, '1', 'State Board', '', '', '2017', 89.90, '', 1, '2023-11-10 08:57:32', 0, NULL, 0, NULL, 1),
(19465, 15210, '3', 'Periyaar university ', '', 'BCA ', '2014', 75.00, '', 1, '2023-11-10 09:46:51', 0, NULL, 0, NULL, 1),
(19466, 15210, '1', 'State board ', '', '', '2011', 50.00, '', 1, '2023-11-10 09:48:13', 0, NULL, 0, NULL, 1),
(19467, 15210, '2', 'State Board', '', '', '2011', 50.00, '', 1, '2023-11-10 09:51:03', 0, NULL, 0, NULL, 1),
(19468, 15211, '3', 'Sastra deemed to be university ', '', 'BBA', '2018', 62.00, '', 1, '2023-11-10 11:45:35', 0, NULL, 0, NULL, 1),
(19469, 15212, '3', 'Madras University ', '', 'BSc computer science ', '2022', 85.00, '', 1, '2023-11-11 05:20:20', 0, NULL, 0, NULL, 1),
(19470, 15205, '4', 'Anna University ', '', 'B.TECH IT', '2018', 9.00, '', 1, '2023-11-11 06:05:02', 0, NULL, 0, NULL, 1),
(19471, 15213, '4', 'University of Madras ', '', 'MBA', '2021', 67.00, '', 1, '2023-11-11 08:48:55', 0, NULL, 0, NULL, 1),
(19472, 15214, '1', 'State board ', '', '', '2017', 73.00, '', 1, '2023-11-13 06:13:03', 0, NULL, 0, NULL, 1),
(19473, 15214, '3', 'Govt polytechnic ', '', 'Civil engineering ', '2017', 73.00, '', 1, '2023-11-13 06:14:12', 1, '2023-11-13 06:14:22', 0, NULL, 0),
(19474, 15215, '5', 'ptc avaition academy', '', 'air travel management and crs', '2014', 70.00, '', 1, '2023-11-13 07:25:03', 0, NULL, 0, NULL, 1),
(19475, 15216, '3', 'Madras University ', '', 'B.sc computer science ', '2023', 89.00, '', 1, '2023-11-14 05:03:53', 0, NULL, 0, NULL, 1),
(19476, 15217, '3', 'Madras University ', '', 'B.sc computer science ', '2023', 89.00, '', 1, '2023-11-14 05:08:36', 0, NULL, 0, NULL, 1),
(19477, 15218, '3', 'Anna University ', '', 'B.tech', '2023', 8.04, '', 1, '2023-11-14 06:41:53', 0, NULL, 0, NULL, 1),
(19478, 15219, '3', 'St.Antonys College of arts and sciences for women ', '', 'Bsc Computer science ', '2022', 81.00, '', 1, '2023-11-14 06:53:14', 0, NULL, 0, NULL, 1),
(19479, 15220, '4', 'Madras University ', '', 'BBA', '2020', 73.00, '', 1, '2023-11-14 07:30:27', 0, NULL, 0, NULL, 1),
(19480, 15223, '3', 'sv university', '', 'b.sc computer science', '2017', 70.00, '', 1, '2023-11-14 01:18:35', 0, NULL, 0, NULL, 1),
(19481, 15224, '4', 'University of Madras ', '', 'MBA ', '2023', 54.00, '', 1, '2023-11-14 01:23:15', 0, NULL, 0, NULL, 1),
(19482, 15222, '3', 'Thiruvallur University', '', 'B.Sc Mathematics', '2022', 85.00, '', 1, '2023-11-14 01:23:18', 0, NULL, 0, NULL, 1),
(19483, 15225, '4', 'Bharathidasan University ', '', 'MBA ', '2020', 65.00, '', 1, '2023-11-14 01:40:57', 0, NULL, 0, NULL, 1),
(19484, 15227, '4', 'Alagappa University ', '', 'MBA ', '2024', 75.00, '', 1, '2023-11-15 03:48:39', 0, NULL, 0, NULL, 1),
(19485, 15227, '3', 'Bharathidasan University ', '', 'Ba', '2020', 70.00, '', 1, '2023-11-15 03:49:07', 0, NULL, 0, NULL, 1),
(19486, 15228, '3', 'Madras University ', '', 'B com ', '2019', 56.00, '', 1, '2023-11-15 04:47:22', 0, NULL, 0, NULL, 1),
(19487, 15229, '3', 'University ', '', 'B.com', '2009', 40.00, '', 1, '2023-11-15 04:56:29', 0, NULL, 0, NULL, 1),
(19488, 15231, '3', 'Chennai University ', '', 'Bsc computer science ', '2023', 75.00, '', 1, '2023-11-15 05:34:12', 0, NULL, 0, NULL, 1),
(19489, 15232, '3', 'Anna University ', '', 'B.Tech Biotechnology ', '2023', 71.00, '', 1, '2023-11-15 05:36:02', 0, NULL, 0, NULL, 1),
(19490, 15230, '3', 'Anna University ', '', 'B E', '2017', 64.50, '', 1, '2023-11-15 05:36:43', 0, NULL, 0, NULL, 1),
(19491, 15230, '2', 'State board ', '', '', '2013', 79.00, '', 1, '2023-11-15 05:37:30', 0, NULL, 0, NULL, 1),
(19492, 15230, '1', 'Matriculation ', '', '', '2011', 83.40, '', 1, '2023-11-15 05:37:50', 0, NULL, 0, NULL, 1),
(19493, 15233, '3', 'University of Madras ', '', 'Bsx', '2023', 75.00, '', 1, '2023-11-15 05:45:52', 0, NULL, 0, NULL, 1),
(19494, 15235, '5', 'Snnpt ', '', 'DCT', '2022', 70.00, '', 1, '2023-11-15 07:01:51', 0, NULL, 0, NULL, 1),
(19495, 15234, '5', 'Snnpt ', '', 'Dct', '2020', 70.00, '', 1, '2023-11-15 07:01:58', 0, NULL, 0, NULL, 1),
(19496, 15236, '3', 'Periyar University selam', '', 'B.A', '2019', 60.00, '', 1, '2023-11-15 07:55:56', 0, NULL, 0, NULL, 1),
(19497, 15237, '3', 'University', '', 'BE', '2014', 70.00, '', 1, '2023-11-15 08:12:08', 0, NULL, 0, NULL, 1),
(19498, 15239, '4', 'Board', '', 'Masters ', '2022', 86.30, '', 1, '2023-11-15 01:23:37', 0, NULL, 0, NULL, 1),
(19499, 15240, '3', 'Bharathi dasan University ', '', 'B.com (CA)', '2023', 72.00, '', 1, '2023-11-15 01:52:00', 0, NULL, 0, NULL, 1),
(19500, 15243, '3', 'Anna University ', '', 'B.E(cse)', '2023', 80.50, '', 1, '2023-11-16 05:12:50', 0, NULL, 0, NULL, 1),
(19501, 15243, '2', 'State board ', '', '', '2019', 65.67, '', 1, '2023-11-16 05:13:42', 0, NULL, 0, NULL, 1),
(19502, 15243, '1', 'State board ', '', '', '2017', 86.80, '', 1, '2023-11-16 05:14:24', 0, NULL, 0, NULL, 1),
(19503, 15238, '3', 'Madras University ', '', 'Bcom', '2022', 55.00, '', 1, '2023-11-16 06:18:12', 0, NULL, 0, NULL, 1),
(19504, 15246, '3', 'Madrass University ', '', 'B com cs', '2020', 58.00, '', 1, '2023-11-16 07:21:13', 0, NULL, 0, NULL, 1),
(19505, 0, '3', 'madars university', '', 'Bcom', '2021', 7.50, '', 1, '2023-11-16 12:08:13', 1, '2023-11-20 07:13:14', 0, NULL, 0),
(19506, 15247, '3', 'University of Madras ', '', 'Bba', '2021', 75.00, '', 1, '2023-11-16 12:37:41', 0, NULL, 0, NULL, 1),
(19507, 15245, '3', 'Mgr university ', '', 'BSc. Computer science ', '2023', 7.50, '', 1, '2023-11-16 01:50:29', 0, NULL, 0, NULL, 1),
(19508, 15248, '3', 'Thiruvalluvar University ', '', 'B.com', '2023', 65.00, '', 1, '2023-11-16 01:54:21', 0, NULL, 0, NULL, 1),
(19509, 15249, '4', 'Adaikalam matha university', '', 'MBA', '2023', 75.00, '', 1, '2023-11-16 01:56:05', 0, NULL, 0, NULL, 1),
(19510, 15250, '3', 'Srm university kattankulathur chennai', '', 'Bba', '2022', 7.50, '', 1, '2023-11-17 04:52:21', 0, NULL, 0, NULL, 1),
(19511, 15251, '4', 'GIBS', '', 'pGDM', '2022', 72.00, '', 1, '2023-11-17 04:55:41', 0, NULL, 0, NULL, 1),
(19512, 15252, '3', 'Madras university', '', 'B. Com', '2023', 72.00, '', 1, '2023-11-17 05:40:59', 0, NULL, 0, NULL, 1),
(19513, 15254, '3', 'Madras University ', '', 'B.com', '2021', 78.00, '', 1, '2023-11-17 06:20:49', 0, NULL, 0, NULL, 1),
(19514, 15253, '3', 'Madras University', '', 'B.com cs ', '2023', 90.00, '', 1, '2023-11-17 06:22:45', 0, NULL, 0, NULL, 1),
(19515, 15256, '3', 'University of madras', '', 'BBA', '2021', 48.00, '', 1, '2023-11-17 09:01:04', 0, NULL, 0, NULL, 1),
(19516, 15256, '2', 'Kv air force', '', '', '2007', 63.00, '', 1, '2023-11-17 09:01:39', 0, NULL, 0, NULL, 1),
(19517, 15256, '1', 'Kv CRPF school', '', '', '2005', 46.00, '', 1, '2023-11-17 09:02:20', 0, NULL, 0, NULL, 1),
(19518, 15257, '3', 'Bput', '', '1st', '2019', 63.50, '', 1, '2023-11-17 09:41:04', 0, NULL, 0, NULL, 1),
(19519, 15258, '4', 'Bharathidasan university', '', 'M. Sc biotechnology', '2022', 78.00, '', 1, '2023-11-17 01:15:23', 0, NULL, 0, NULL, 1),
(19520, 15258, '3', 'Bharathidasan university', '', 'B. Sc biotechnology', '2020', 69.00, '', 1, '2023-11-17 01:16:16', 0, NULL, 0, NULL, 1),
(19521, 15259, '3', 'Madras University ', '', 'Bsc Computer science ', '2023', 75.00, '', 1, '2023-11-18 04:34:50', 0, NULL, 0, NULL, 1),
(19522, 15259, '1', 'State Board ', '', '', '2018', 84.00, '', 1, '2023-11-18 04:35:20', 0, NULL, 0, NULL, 1),
(19523, 15259, '2', 'State Board ', '', '', '2020', 70.00, '', 1, '2023-11-18 04:35:54', 0, NULL, 0, NULL, 1),
(19524, 15260, '3', 'Madras university', '', 'B. Com', '2022', 82.00, '', 1, '2023-11-18 05:36:43', 0, NULL, 0, NULL, 1),
(19525, 15261, '4', 'Sri Krishna devaraya University ', '', 'BBM', '2009', 67.00, '', 1, '2023-11-18 05:45:14', 0, NULL, 0, NULL, 1),
(19526, 15263, '3', 'Anna uni', '', 'Bsc', '2022', 65.00, '', 1, '2023-11-18 06:27:08', 0, NULL, 0, NULL, 1),
(19527, 15264, '3', 'Madras University ', '', 'B com', '2019', 57.00, '', 1, '2023-11-18 06:33:28', 0, NULL, 0, NULL, 1),
(19528, 15262, '3', 'Anaa university ', '', 'B.com(ISM)', '2022', 75.00, '', 1, '2023-11-18 06:53:00', 0, NULL, 0, NULL, 1),
(19529, 15266, '3', 'Madars University ', '', 'BA economics ', '2022', 86.00, '', 1, '2023-11-18 06:57:14', 0, NULL, 0, NULL, 1),
(19530, 15268, '3', 'madras university', '', 'B.sc Electronic media', '2022', 63.00, '', 1, '2023-11-18 07:13:59', 0, NULL, 0, NULL, 1),
(19531, 15269, '3', 'Annamalai University ', '', 'B.E information technology ', '2020', 65.00, '', 1, '2023-11-18 07:18:54', 0, NULL, 0, NULL, 1),
(19532, 15267, '3', 'Anna University Chennai ', '', 'B.E', '2022', 7.30, '', 1, '2023-11-18 07:37:01', 0, NULL, 0, NULL, 1),
(19533, 15271, '3', 'Anna University ', '', 'Bachelor Of computer science engineering ', '2022', 7.30, '', 1, '2023-11-18 07:49:15', 0, NULL, 0, NULL, 1),
(19534, 15272, '1', 'State board ', '', '', '2016', 93.00, '', 1, '2023-11-19 11:40:45', 0, NULL, 0, NULL, 1),
(19535, 15272, '2', 'State board ', '', '', '2018', 73.00, '', 1, '2023-11-19 11:41:24', 0, NULL, 0, NULL, 1),
(19536, 15272, '3', 'Bharadidasan University ', '', 'BCA', '2021', 69.00, '', 1, '2023-11-19 11:41:50', 0, NULL, 0, NULL, 1),
(19537, 15274, '4', 'SCSVMV UNIVERSITY ', '', 'MCA', '2022', 8.25, '', 1, '2023-11-20 04:02:22', 0, NULL, 0, NULL, 1),
(19538, 15274, '3', 'Sri Sankara arts and science college ', '', 'BCA', '2019', 6.00, '', 1, '2023-11-20 04:03:07', 0, NULL, 0, NULL, 1),
(19539, 15274, '2', 'Victoria matriculation higher secondary school ', '', '', '2016', 61.00, '', 1, '2023-11-20 04:03:42', 0, NULL, 0, NULL, 1),
(19540, 15274, '1', 'Victoria matriculation higher secondary school ', '', '', '2014', 75.00, '', 1, '2023-11-20 04:04:04', 0, NULL, 0, NULL, 1),
(19541, 15277, '3', 'Anna University ', '', 'BE', '2019', 64.00, '', 1, '2023-11-20 05:25:35', 0, NULL, 0, NULL, 1),
(19542, 15275, '3', 'Bharathidasan', '', 'Ba', '2019', 60.00, '', 1, '2023-11-20 05:31:54', 0, NULL, 0, NULL, 1),
(19543, 15278, '3', 'University of Madras ', '', 'B.com (accounting and finance)', '2023', 81.00, '', 1, '2023-11-20 05:40:48', 0, NULL, 0, NULL, 1),
(19544, 15279, '3', 'Madras University ', '', 'B.sc (cS)', '2017', 72.00, '', 1, '2023-11-20 06:15:19', 0, NULL, 0, NULL, 1),
(19545, 15280, '4', 'BPUT', '', 'MBA', '2023', 61.00, '', 1, '2023-11-20 06:21:59', 0, NULL, 0, NULL, 1),
(19546, 15273, '3', 'Anna Adarsh college ', '', 'BA English ', '2023', 73.00, '', 1, '2023-11-20 07:01:11', 0, NULL, 0, NULL, 1),
(19547, 15282, '3', 'Anna university ', '', 'B.E CSE', '2023', 7.80, '', 1, '2023-11-20 07:12:17', 0, NULL, 0, NULL, 1),
(19548, 15283, '3', 'madras unversity', '', 'bcom', '2021', 70.00, '', 1, '2023-11-20 07:13:42', 0, NULL, 0, NULL, 1),
(19549, 15285, '3', 'University of Madras', '', 'B. Com (General) ', '2024', 60.00, '', 1, '2023-11-20 07:48:06', 0, NULL, 0, NULL, 1),
(19550, 15286, '3', 'Anna university', '', 'BE EEE', '2017', 7.20, '', 1, '2023-11-20 08:39:55', 0, NULL, 0, NULL, 1),
(19551, 15286, '2', 'State board', '', '', '2013', 87.20, '', 1, '2023-11-20 08:40:27', 0, NULL, 0, NULL, 1),
(19552, 15286, '1', 'State board', '', '', '2010', 96.20, '', 1, '2023-11-20 08:40:59', 0, NULL, 0, NULL, 1),
(19553, 15287, '3', 'Government art college ', '', 'BCA', '2023', 71.00, '', 1, '2023-11-20 09:07:33', 0, NULL, 0, NULL, 1),
(19554, 15288, '3', 'Bharathidasan ', '', 'Bsc Biotechnology ', '2019', 74.00, '', 1, '2023-11-20 09:15:56', 0, NULL, 0, NULL, 1),
(19555, 15289, '3', 'Sree Vidyanikethan engineering college', '', '', '2022', 65.00, '', 1, '2023-11-20 09:18:18', 0, NULL, 0, NULL, 1),
(19556, 15292, '3', 'icbt campus', '', 'bsc computer sc ', '2021', 66.00, '', 1, '2023-11-20 01:05:21', 0, NULL, 0, NULL, 1),
(19557, 15293, '3', 'SRM University ', '', '', '2023', 85.00, '', 1, '2023-11-20 01:06:43', 0, NULL, 0, NULL, 1),
(19558, 15291, '5', 'Shanmugha phollytechnich college ', '', 'DEEE', '2020', 80.00, '', 1, '2023-11-20 01:12:48', 0, NULL, 0, NULL, 1),
(19559, 15298, '3', 'icbt campus', '', 'bsc computer sx ', '2021', 66.00, '', 1, '2023-11-21 05:38:14', 0, NULL, 0, NULL, 1),
(19560, 15294, '3', 'apollo arts and science collge', '', 'b.com g ', '2022', 70.00, '', 1, '2023-11-21 05:38:16', 0, NULL, 0, NULL, 1),
(19561, 15295, '3', 'womens christian college', '', ' ba history', '2019', 70.00, '', 1, '2023-11-21 05:42:19', 0, NULL, 0, NULL, 1),
(19562, 15297, '4', 'Presidency College, chennai ', '', 'Master of Science ', '2023', 77.00, '', 1, '2023-11-21 05:43:00', 0, NULL, 0, NULL, 1),
(19563, 15300, '3', 'EGS PILLAY ART\'S AND SCIENCE COLLEGE NAGAPATTINAM ', '', 'BCA- computer application ', '2023', 65.00, '', 1, '2023-11-21 06:14:11', 0, NULL, 0, NULL, 1),
(19564, 15299, '3', 'Avc college ', '', 'BCA ', '2022', 80.00, '', 1, '2023-11-21 06:22:41', 0, NULL, 0, NULL, 1),
(19565, 15301, '3', 'Bharathidasan ', '', 'Bca', '2022', 78.00, '', 1, '2023-11-21 06:27:59', 0, NULL, 0, NULL, 1),
(19566, 15302, '4', 'Loyola college ', '', 'MBA hr', '2021', 60.00, '', 1, '2023-11-21 06:31:44', 0, NULL, 0, NULL, 1),
(19567, 15303, '5', 'Polytechnic', '', 'DME', '2015', 65.00, '', 1, '2023-11-21 06:38:16', 0, NULL, 0, NULL, 1),
(19568, 15296, '3', 'Anna University ', '', 'Be', '2019', 6.30, '', 1, '2023-11-21 06:57:35', 0, NULL, 0, NULL, 1),
(19569, 15304, '3', 'University of Madras ', '', 'B.A', '2020', 66.00, '', 1, '2023-11-21 09:33:02', 0, NULL, 0, NULL, 1),
(19570, 15305, '3', 'The New college', '', 'B.com', '2020', 60.00, '', 1, '2023-11-21 12:38:31', 0, NULL, 0, NULL, 1),
(19571, 15306, '3', 'University of Madras ', '', 'B.com', '2020', 73.00, '', 1, '2023-11-21 01:02:57', 0, NULL, 0, NULL, 1),
(19572, 15307, '3', 'Srinivasan college of arts and science ', '', 'B.com', '2017', 70.00, '', 1, '2023-11-22 04:59:32', 0, NULL, 0, NULL, 1),
(19573, 15308, '3', 'Loyola college', '', 'Bachelor of commerce', '2019', 58.00, '', 1, '2023-11-22 05:31:56', 0, NULL, 0, NULL, 1),
(19574, 15309, '3', 'Madras University ', '', 'BCA', '2021', 75.00, '', 1, '2023-11-22 05:46:17', 0, NULL, 0, NULL, 1),
(19575, 15310, '3', 'Madras ', '', 'B.com', '2020', 76.00, '', 1, '2023-11-22 05:51:18', 0, NULL, 0, NULL, 1),
(19576, 15311, '3', 'S. A. Engineering college ', '', 'B. E. EEE', '2018', 75.00, '', 1, '2023-11-22 06:01:22', 0, NULL, 0, NULL, 1),
(19577, 15312, '3', 'Asan memorial college of arts and science ', '', 'B.com', '2019', 70.00, '', 1, '2023-11-22 06:23:42', 0, NULL, 0, NULL, 1),
(19578, 15314, '3', 'Karpagam University ', '', 'BE.MECHANICAL ENGINEERING', '2023', 7.03, '', 1, '2023-11-22 07:34:14', 0, NULL, 0, NULL, 1),
(19579, 15313, '3', 'Anna university', '', 'Mechanical engineering', '2022', 70.00, '', 1, '2023-11-22 07:47:57', 0, NULL, 0, NULL, 1),
(19580, 15315, '3', 'Anna University ', '', 'BE Mechanical Engineering ', '2022', 84.00, '', 1, '2023-11-22 07:49:29', 0, NULL, 0, NULL, 1),
(19581, 15316, '3', 'Madras University ', '', 'Bsc ( ism)', '2012', 71.00, '', 1, '2023-11-22 07:57:18', 0, NULL, 0, NULL, 1),
(19582, 15319, '3', 'Anna university ', '', 'B. Tech ', '2019', 67.00, '', 1, '2023-11-23 04:35:18', 0, NULL, 0, NULL, 1),
(19583, 15317, '3', 'RVS Technical Campus-Coimbatore ', '', 'BE', '2023', 78.00, '', 1, '2023-11-23 04:51:47', 0, NULL, 0, NULL, 1),
(19584, 15317, '2', 'National Matric Hr Sec School ', '', '', '2019', 63.00, '', 1, '2023-11-23 04:53:06', 0, NULL, 0, NULL, 1),
(19585, 15320, '3', 'Anna University ', '', 'BE  ECE', '2022', 84.00, '', 1, '2023-11-23 05:19:16', 0, NULL, 0, NULL, 1),
(19586, 15320, '2', 'State Board ', '', '', '2018', 80.00, '', 1, '2023-11-23 05:19:43', 0, NULL, 0, NULL, 1),
(19587, 15320, '1', 'ICSE', '', '', '2016', 76.00, '', 1, '2023-11-23 05:20:01', 0, NULL, 0, NULL, 1),
(19588, 15321, '3', 'Alagappa University ', '', 'BBA', '2009', 40.00, '', 1, '2023-11-23 05:54:26', 0, NULL, 0, NULL, 1),
(19589, 15323, '4', 'govy.arts and science', '', 'mcom', '2021', 84.00, '', 1, '2023-11-23 05:58:19', 0, NULL, 0, NULL, 1),
(19590, 15322, '3', 'Periyar university', '', 'Bsc., Computer Science', '2022', 83.00, '', 1, '2023-11-23 06:00:34', 0, NULL, 0, NULL, 1),
(19591, 15324, '3', 'bhaktavatsalam memorial college', '', 'b.com', '2022', 78.00, '', 1, '2023-11-23 06:04:29', 0, NULL, 0, NULL, 1),
(19592, 15325, '3', 'Periyar university', '', 'Bsc Computer Science', '2020', 64.00, '', 1, '2023-11-23 06:16:29', 0, NULL, 0, NULL, 1),
(19593, 15325, '1', 'State board', '', '', '2015', 84.00, '', 1, '2023-11-23 06:16:52', 0, NULL, 0, NULL, 1),
(19594, 15325, '2', 'State board', '', '', '2017', 73.50, '', 1, '2023-11-23 06:17:15', 0, NULL, 0, NULL, 1),
(19595, 15326, '3', 'Autonomous ', '', 'BscBotany', '2022', 77.00, '', 1, '2023-11-23 06:19:11', 0, NULL, 0, NULL, 1),
(19596, 15327, '3', 'Madras university', '', 'Bsc computer science', '2023', 67.00, '', 1, '2023-11-23 06:51:29', 0, NULL, 0, NULL, 1),
(19597, 14960, '3', 'University ', '', 'B.voc Banking Financial Services And Insurances ', '2023', 60.00, '', 1, '2023-11-23 06:59:50', 0, NULL, 0, NULL, 1),
(19598, 15328, '5', 'Meenakshi Krishnan polytechnic College pammal', '', 'Dece', '2009', 53.00, '', 1, '2023-11-23 07:41:22', 0, NULL, 0, NULL, 1),
(19599, 15330, '5', 'Sa polytechnic college ', '', 'DME', '2010', 68.00, '', 1, '2023-11-23 08:01:49', 0, NULL, 0, NULL, 1),
(19600, 15329, '3', 'dg vaishnav college', '', 'bsc computer science', '2017', 80.00, '', 1, '2023-11-23 08:07:59', 0, NULL, 0, NULL, 1),
(19601, 13591, '2', 'Government higher secondary school ', '', '', '2011', 58.00, '', 1, '2023-11-23 10:59:58', 0, NULL, 0, NULL, 1),
(19602, 15331, '1', 'State board, Tamilnadu ', '', '', '2016', 74.00, '', 1, '2023-11-23 12:19:26', 0, NULL, 0, NULL, 1),
(19603, 15331, '2', 'State board, Tamilnadu ', '', '', '2019', 49.00, '', 1, '2023-11-23 12:19:58', 0, NULL, 0, NULL, 1),
(19604, 15331, '3', 'Alagappa University ', '', 'Bachelor of Business Administration ', '2022', 75.10, '', 1, '2023-11-23 12:21:24', 0, NULL, 0, NULL, 1),
(19605, 15332, '3', 'Board new college ', '', 'B.com general ', '2022', 85.00, '', 1, '2023-11-23 12:23:41', 0, NULL, 0, NULL, 1),
(19606, 15333, '3', 'Anna University ', '', 'BE', '2011', 56.00, '', 1, '2023-11-24 04:40:50', 0, NULL, 0, NULL, 1),
(19607, 15333, '2', 'Malco vidyalaya ', '', 'BE', '2007', 65.00, '', 1, '2023-11-24 04:41:46', 0, NULL, 0, NULL, 1),
(19608, 15333, '1', 'Ideal higher secondary school ', '', '', '2005', 65.00, '', 1, '2023-11-24 04:42:09', 0, NULL, 0, NULL, 1),
(19609, 15335, '3', 'Thiruvalluvar University ', '', 'Bcom', '2023', 65.00, '', 1, '2023-11-24 05:58:10', 0, NULL, 0, NULL, 1),
(19610, 15334, '3', 'Anna University ', '', 'B.tech, chemical engineering ', '2021', 80.15, '', 1, '2023-11-24 06:03:34', 0, NULL, 0, NULL, 1),
(19611, 15336, '3', 'Madras University ', '', 'Bsc. Physics', '2022', 73.00, '', 1, '2023-11-24 06:04:49', 0, NULL, 0, NULL, 1),
(19612, 15337, '4', 'Anna University ', '', 'Mba Hr& Finance ', '2022', 74.00, '', 1, '2023-11-24 06:20:04', 1, '2023-11-24 06:23:15', 0, NULL, 1),
(19613, 15337, '1', 'Matriculation ', '', '', '2013', 50.00, '', 1, '2023-11-24 06:21:01', 0, NULL, 0, NULL, 1),
(19614, 15337, '2', 'State board ', '', '', '2016', 60.00, '', 1, '2023-11-24 06:21:35', 0, NULL, 0, NULL, 1),
(19615, 15337, '3', 'Madras University ', '', 'B.com (ISM)', '2019', 68.00, '', 1, '2023-11-24 06:22:14', 0, NULL, 0, NULL, 1),
(19616, 15338, '3', 'University ', '', 'B.Sc Mathematics ', '2022', 60.00, '', 1, '2023-11-24 06:29:29', 0, NULL, 0, NULL, 1),
(19617, 15339, '3', 'Loyola Institute of Technology,Anna University ', '', 'B.Tech - IT', '2023', 70.00, '', 1, '2023-11-24 07:31:17', 0, NULL, 0, NULL, 1),
(19618, 15340, '3', 'Madras University ', '', 'B.sc Advanced zoology & biotechnology ', '2020', 65.00, '', 1, '2023-11-24 09:21:22', 0, NULL, 0, NULL, 1),
(19619, 15343, '3', 'university of madras', '', 'b.com', '2022', 76.00, '', 1, '2023-11-24 01:45:31', 0, NULL, 0, NULL, 1),
(19620, 15349, '3', 'Bharathidasan university', '', 'BBA', '2014', 66.00, '', 1, '2023-11-25 05:17:23', 0, NULL, 0, NULL, 1),
(19621, 15346, '3', 'Guru nanak college Velachery ', '', 'BCA', '2022', 81.00, '', 1, '2023-11-25 05:23:26', 0, NULL, 0, NULL, 1),
(19622, 15347, '4', 'madras university', '', 'mca', '2023', 82.00, '', 1, '2023-11-25 05:27:39', 0, NULL, 0, NULL, 1),
(19623, 15348, '3', 'Bharathiyar University ', '', 'BCA ', '2020', 67.00, '', 1, '2023-11-25 05:36:08', 0, NULL, 0, NULL, 1),
(19624, 15350, '3', 'ARJ COLLEGE ENGINEERING AND TECHNOLOGY ', '', 'B.E', '2019', 7.00, '', 1, '2023-11-25 05:41:27', 0, NULL, 0, NULL, 1),
(19625, 15351, '5', 'DOAT', '', '', '2020', 75.00, '', 1, '2023-11-25 05:47:00', 0, NULL, 0, NULL, 1),
(19626, 15345, '3', 'Bharathidhasan university', '', 'Bachelor of computer application', '2023', 78.00, '', 1, '2023-11-25 05:49:40', 0, NULL, 0, NULL, 1),
(19627, 15352, '3', 'Madras University ', '', 'B.com', '2019', 59.00, '', 1, '2023-11-25 06:18:15', 0, NULL, 0, NULL, 1),
(19628, 15354, '3', 'Vivekanandha college ', '', 'B.Tech', '2023', 8.14, '', 1, '2023-11-25 06:25:18', 0, NULL, 0, NULL, 1),
(19629, 15354, '2', 'State board', '', '', '2019', 65.00, '', 1, '2023-11-25 06:26:31', 0, NULL, 0, NULL, 1),
(19630, 15354, '1', 'State board', '', '', '2017', 92.00, '', 1, '2023-11-25 06:27:07', 0, NULL, 0, NULL, 1),
(19631, 15353, '3', 'Vivekanandha college ', '', 'B.Tech IT', '2023', 8.56, '', 1, '2023-11-25 06:37:40', 0, NULL, 0, NULL, 1),
(19632, 15353, '2', 'State board', '', '', '2019', 70.30, '', 1, '2023-11-25 06:38:18', 0, NULL, 0, NULL, 1),
(19633, 15353, '1', 'State Board ', '', '', '2017', 87.80, '', 1, '2023-11-25 06:38:36', 0, NULL, 0, NULL, 1),
(19634, 15355, '1', 'State board', '', '', '2015', 77.80, '', 1, '2023-11-25 06:41:41', 0, NULL, 0, NULL, 1),
(19635, 15355, '2', 'State Board', '', '', '2017', 78.00, '', 1, '2023-11-25 06:42:20', 0, NULL, 0, NULL, 1),
(19636, 15355, '3', 'Madras University', '', 'B.Com', '2020', 64.00, '', 1, '2023-11-25 06:42:55', 0, NULL, 0, NULL, 1),
(19637, 15356, '3', 'Madras University ', '', 'BCA', '2019', 73.00, '', 1, '2023-11-25 06:49:30', 0, NULL, 0, NULL, 1),
(19638, 15357, '3', 'anna University ', '', 'b.e', '2021', 65.00, '', 1, '2023-11-25 06:58:01', 0, NULL, 0, NULL, 1),
(19639, 15358, '3', 'Jamal Mohammad college ', '', 'BCA', '2022', 78.80, '', 1, '2023-11-25 07:18:24', 0, NULL, 0, NULL, 1),
(19640, 15359, '3', 'Madras university', '', 'B.com', '2022', 75.00, '', 1, '2023-11-25 07:23:40', 0, NULL, 0, NULL, 1),
(19641, 15360, '4', 'Alagappa University ', '', 'MBA ', '2020', 100.00, '', 1, '2023-11-25 07:38:47', 0, NULL, 0, NULL, 1),
(19642, 15360, '3', 'Madras University ', '', 'B.com', '2016', 100.00, '', 1, '2023-11-25 07:39:14', 0, NULL, 0, NULL, 1),
(19643, 15361, '3', 'Jamal Mohammad college ', '', 'BCA ', '2022', 78.80, '', 1, '2023-11-25 08:08:42', 0, NULL, 0, NULL, 1),
(19644, 15362, '3', 'Pondicherry University ', '', 'B.tech', '2019', 70.00, '', 1, '2023-11-25 08:44:41', 0, NULL, 0, NULL, 1),
(19645, 15362, '2', 'Tamilnadu state board ', '', '', '2015', 68.50, '', 1, '2023-11-25 08:45:26', 0, NULL, 0, NULL, 1),
(19646, 15362, '1', 'Tamilnadu state board ', '', '', '2013', 83.50, '', 1, '2023-11-25 08:46:04', 0, NULL, 0, NULL, 1),
(19647, 15363, '3', 'Guru Nanak collage Velachery ', '', 'B.com general ', '2020', 62.00, '', 1, '2023-11-25 09:19:17', 0, NULL, 0, NULL, 1),
(19648, 15366, '3', 'Jeppiaar Srr Engineering College ', '', 'Engineering in computer science ', '2018', 63.00, '', 1, '2023-11-25 10:14:13', 0, NULL, 0, NULL, 1),
(19649, 15367, '4', 'Roever Institute of Management', '', 'MBA', '2018', 70.00, '', 1, '2023-11-25 01:25:17', 0, NULL, 0, NULL, 1),
(19650, 15368, '3', 'Autonomous ', '', 'B.Sc., Mathematics ', '2023', 90.00, '', 1, '2023-11-25 01:53:02', 0, NULL, 0, NULL, 1),
(19651, 15368, '2', 'State board', '', '', '2020', 75.00, '', 1, '2023-11-25 01:54:22', 0, NULL, 0, NULL, 1),
(19652, 15368, '1', 'State board ', '', '', '2018', 92.00, '', 1, '2023-11-25 01:54:57', 0, NULL, 0, NULL, 1),
(19653, 15370, '3', 'Madras University ', '', 'B com computer application', '2020', 63.00, '', 1, '2023-11-26 12:45:23', 0, NULL, 0, NULL, 1),
(19654, 15372, '3', 'Excel College of engineering and technology ', '', 'Bachelor of engineering (Electrical and electronic', '2021', 7.60, '', 1, '2023-11-27 04:16:12', 0, NULL, 0, NULL, 1),
(19655, 15371, '4', 'Madras university ', '', 'Msc computer science ', '2023', 88.00, '', 1, '2023-11-27 04:32:18', 0, NULL, 0, NULL, 1),
(19656, 15373, '3', 'Madras University', '', 'BA History ', '2021', 50.00, '', 1, '2023-11-27 05:02:11', 0, NULL, 0, NULL, 1),
(19657, 15375, '1', 'Pune Board ', '', '', '2003', 63.00, '', 1, '2023-11-27 05:24:45', 0, NULL, 0, NULL, 1),
(19658, 15375, '2', 'Pune Board ', '', '', '2005', 52.00, '', 1, '2023-11-27 05:25:03', 0, NULL, 0, NULL, 1),
(19659, 15374, '4', 'RVS college of arts and science ', '', 'MCA', '2023', 89.00, '', 1, '2023-11-27 05:28:59', 0, NULL, 0, NULL, 1),
(19660, 15374, '3', 'Nazareth College of arts and science ', '', 'BCA', '2021', 75.00, '', 1, '2023-11-27 05:29:47', 0, NULL, 0, NULL, 1),
(19661, 15377, '5', 'fida', '', '', '2023', 84.00, '', 1, '2023-11-27 05:43:20', 0, NULL, 0, NULL, 1),
(19662, 15376, '3', 'Bharathidasan ', '', 'B. Sc computerscience', '2020', 72.00, '', 1, '2023-11-27 05:44:34', 0, NULL, 0, NULL, 1),
(19663, 15377, '1', 'board', '', '', '2021', 75.00, '', 1, '2023-11-27 05:44:44', 0, NULL, 0, NULL, 1),
(19664, 15379, '3', 'Karunya University ', '', 'Biotechnology ', '2016', 5.00, '', 1, '2023-11-27 05:45:52', 1, '2023-11-27 05:46:20', 0, NULL, 1),
(19665, 15378, '3', 'university of madras', '', 'bca', '2023', 74.00, '', 1, '2023-11-27 05:54:23', 0, NULL, 0, NULL, 1),
(19666, 15380, '1', 'board', '', '', '2018', 76.00, '', 1, '2023-11-27 05:54:57', 0, NULL, 0, NULL, 1),
(19667, 15381, '3', 'Anna University ', '', 'Bachelor of Engineering', '2023', 80.00, '', 1, '2023-11-27 06:02:03', 1, '2023-11-27 06:02:22', 0, NULL, 0),
(19668, 15381, '3', 'Velammal institute of technology ', '', 'Bachelor of Engineering(CSE)', '2023', 80.00, '', 1, '2023-11-27 06:02:55', 0, NULL, 0, NULL, 1),
(19669, 15381, '2', 'State board ', '', '', '2019', 73.80, '', 1, '2023-11-27 06:06:04', 0, NULL, 0, NULL, 1),
(19670, 15381, '1', 'State Board ', '', '', '2017', 80.00, '', 1, '2023-11-27 06:06:40', 0, NULL, 0, NULL, 1),
(19671, 15383, '3', 'Jain University ', '', 'B.Sc', '2021', 59.00, '', 1, '2023-11-27 07:22:51', 0, NULL, 0, NULL, 1),
(19672, 15383, '2', 'Tamilnadu state board', '', '', '2018', 68.00, '', 1, '2023-11-27 07:23:18', 0, NULL, 0, NULL, 1),
(19673, 15383, '1', 'Tamilnadu state board ', '', '', '2015', 85.00, '', 1, '2023-11-27 07:23:35', 0, NULL, 0, NULL, 1),
(19674, 15382, '1', 'state board', '', '', '2017', 94.00, '', 1, '2023-11-27 07:25:04', 0, NULL, 0, NULL, 1),
(19675, 15382, '2', 'state board', '', '', '2019', 85.00, '', 1, '2023-11-27 07:25:42', 0, NULL, 0, NULL, 1),
(19676, 15382, '3', 'anna university', '', 'b.e computer science and engineering', '2023', 85.00, '', 1, '2023-11-27 07:26:57', 0, NULL, 0, NULL, 1),
(19677, 15384, '4', 'University of Madras ', '', 'MCA ', '2020', 75.00, '', 1, '2023-11-27 07:34:11', 0, NULL, 0, NULL, 1),
(19678, 15384, '1', 'State board ', '', '', '2013', 70.00, '', 1, '2023-11-27 07:34:44', 0, NULL, 0, NULL, 1),
(19679, 15384, '3', 'University of madras ', '', 'BCA ', '2018', 74.00, '', 1, '2023-11-27 07:35:06', 0, NULL, 0, NULL, 1),
(19680, 15386, '2', 'P.s matriculation ', '', '', '2005', 54.00, '', 1, '2023-11-27 11:47:18', 0, NULL, 0, NULL, 1),
(19681, 15387, '3', 'University college of Engineering chennai ', '', 'BE ', '2023', 80.00, '', 1, '2023-11-27 02:06:32', 0, NULL, 0, NULL, 1),
(19682, 15389, '3', 'bharathidasan university', '', 'bsc Computer Science ', '2022', 75.00, '', 1, '2023-11-28 04:32:20', 0, NULL, 0, NULL, 1),
(19683, 15390, '3', 'University of madras', '', 'bcom general', '2023', 74.00, '', 1, '2023-11-28 04:41:34', 0, NULL, 0, NULL, 1),
(19684, 15391, '3', 'University of Madras ', '', 'B.Com', '2015', 59.00, '', 1, '2023-11-28 04:47:10', 0, NULL, 0, NULL, 1),
(19685, 15392, '3', 'Dr.MGR University ', '', 'B.com', '2019', 69.00, '', 1, '2023-11-28 04:51:15', 0, NULL, 0, NULL, 1),
(19686, 15393, '4', 'SRM University ', '', 'MCA ', '2022', 85.00, '', 1, '2023-11-28 04:52:33', 0, NULL, 0, NULL, 1),
(19687, 15394, '3', 'Anna University ', '', 'BE', '2023', 82.40, '', 1, '2023-11-28 05:06:48', 0, NULL, 0, NULL, 1),
(19688, 15385, '3', 'University of Madras ', '', 'B.sc computer science ', '2023', 60.00, '', 1, '2023-11-28 05:09:59', 0, NULL, 0, NULL, 1),
(19689, 15395, '3', 'Thiruvalluvar university ', '', 'Bca', '2022', 86.00, '', 1, '2023-11-28 05:23:29', 0, NULL, 0, NULL, 1),
(19690, 15396, '3', 'Anna University ', '', 'BE', '2022', 75.00, '', 1, '2023-11-28 05:34:30', 0, NULL, 0, NULL, 1),
(19691, 15397, '5', 'Dote', '', 'Deee', '2012', 64.00, '', 1, '2023-11-28 05:37:55', 0, NULL, 0, NULL, 1),
(19692, 15398, '3', 'University of madras', '', 'B.com(cS)', '2023', 80.00, '', 1, '2023-11-28 06:07:59', 0, NULL, 0, NULL, 1),
(19693, 14810, '1', 'Government boys higher secondary school ', '', '', '2015', 73.20, '', 1, '2023-11-28 06:10:29', 0, NULL, 0, NULL, 1),
(19694, 14810, '2', 'Government Boys Higher Secondary School', '', '', '2017', 62.00, '', 1, '2023-11-28 06:11:11', 0, NULL, 0, NULL, 1),
(19695, 14810, '3', 'Sri Jayendra Saraswathy Maha Vidyalaya College of Arts & Science', '', 'Bsc Information Technology ', '2020', 65.80, '', 1, '2023-11-28 06:12:01', 0, NULL, 0, NULL, 1),
(19696, 15401, '3', 'Jeppiaar Maamallan Engineering college ', '', 'B.e Ece', '2020', 65.00, '', 1, '2023-11-28 06:22:14', 0, NULL, 0, NULL, 1),
(19697, 15400, '3', 'Bharathidasn ', '', 'BCA', '2021', 79.00, '', 1, '2023-11-28 06:24:18', 0, NULL, 0, NULL, 1),
(19698, 15400, '4', 'Bharathidasan University ', '', 'MBA', '2023', 79.05, '', 1, '2023-11-28 06:25:01', 1, '2023-11-28 06:25:24', 0, NULL, 1),
(19699, 15399, '3', 'Anni  Velakanni art and science college ', '', 'BCA ', '2021', 51.00, '', 1, '2023-11-28 06:25:48', 0, NULL, 0, NULL, 1),
(19700, 15399, '4', 'Bharathi science and management ', '', 'MBA ', '2023', 70.00, '', 1, '2023-11-28 06:26:35', 0, NULL, 0, NULL, 1),
(19701, 15402, '3', 'bharathiar university', '', 'b.com', '2020', 70.00, '', 1, '2023-11-28 07:19:47', 0, NULL, 0, NULL, 1),
(19702, 15402, '2', 'state board', '', '', '2017', 86.00, '', 1, '2023-11-28 07:20:39', 0, NULL, 0, NULL, 1),
(19703, 15402, '1', 'central board', '', '', '2015', 70.00, '', 1, '2023-11-28 07:21:27', 0, NULL, 0, NULL, 1),
(19704, 15403, '4', 'pulc ', '', 'mba finance', '2021', 70.00, '', 1, '2023-11-28 07:49:27', 0, NULL, 0, NULL, 1),
(19705, 10547, '4', 'Anna University ', '', 'MBA', '2019', 72.00, '', 1, '2023-11-28 08:11:48', 0, NULL, 0, NULL, 1),
(19706, 15404, '3', 'Bharathidasan University, Trichy ', '', 'B.SC Computer science ', '2022', 81.00, '', 1, '2023-11-28 08:53:54', 0, NULL, 0, NULL, 1),
(19707, 15405, '3', 'Anna university', '', 'BE', '2017', 7.21, '', 1, '2023-11-28 09:14:23', 0, NULL, 0, NULL, 1),
(19708, 0, '4', 'anna unviersity', '', 'mba', '2018', 69.00, '', 1, '2023-11-28 09:39:09', 1, '2023-11-28 11:38:57', 0, NULL, 0),
(19709, 15406, '3', 'Prof.dhanpalan arts & science college ', '', 'B.com( general)', '2022', 75.00, '', 1, '2023-11-28 09:52:46', 0, NULL, 0, NULL, 1),
(19710, 15407, '4', 'anna unviersity', '', 'mba', '2018', 69.00, '', 1, '2023-11-28 09:57:24', 0, NULL, 0, NULL, 1),
(19711, 15408, '3', 'Madras University', '', 'B.com', '2020', 62.00, '', 1, '2023-11-28 11:39:04', 0, NULL, 0, NULL, 1),
(19712, 0, '4', 'Bharathidasan University ', '', 'BCA', '2023', 75.00, '', 1, '2023-11-29 05:07:42', 1, '2023-11-29 06:56:36', 0, NULL, 0),
(19713, 15409, '3', 'Bharathidasan ', '', 'Ba', '2023', 68.00, '', 1, '2023-11-29 05:14:32', 0, NULL, 0, NULL, 1),
(19714, 15344, '3', 'Sathyabama University ', '', 'BTech', '2021', 85.80, '', 1, '2023-11-29 05:17:38', 0, NULL, 0, NULL, 1),
(19715, 15414, '3', 'Anna University ', '', 'Computer science ', '2021', 78.00, '', 1, '2023-11-29 05:18:04', 0, NULL, 0, NULL, 1),
(19716, 15412, '3', 'Bharathidasan University ', '', 'BCA', '2023', 75.00, '', 1, '2023-11-29 05:18:11', 0, NULL, 0, NULL, 1),
(19717, 15344, '2', 'Dhivya metric higher secondary school ', '', '', '2017', 94.50, '', 1, '2023-11-29 05:18:16', 0, NULL, 0, NULL, 1),
(19718, 15344, '1', 'Sacred heart higher secondary school ', '', '', '2015', 93.50, '', 1, '2023-11-29 05:18:41', 0, NULL, 0, NULL, 1),
(19719, 15413, '3', 'Bharathidasan University ', '', 'B.com computer applications ', '2023', 77.90, '', 1, '2023-11-29 05:22:28', 0, NULL, 0, NULL, 1),
(19720, 15415, '3', 'Anna university ', '', 'B.E', '2023', 80.00, '', 1, '2023-11-29 05:34:49', 0, NULL, 0, NULL, 1),
(19721, 15416, '3', 'Anna university ', '', 'B.Tech(IT)', '2021', 75.00, '', 1, '2023-11-29 05:35:33', 0, NULL, 0, NULL, 1),
(19722, 15418, '4', 'Anna University', '', 'Masters in Mathematics', '2023', 80.00, '', 1, '2023-11-29 05:51:17', 0, NULL, 0, NULL, 1),
(19723, 15418, '3', 'Madras university', '', 'Bsc in mathematics', '2021', 94.00, '', 1, '2023-11-29 05:51:53', 0, NULL, 0, NULL, 1),
(19724, 15418, '2', 'State Board', '', '', '2018', 80.00, '', 1, '2023-11-29 05:52:38', 0, NULL, 0, NULL, 1),
(19725, 15418, '1', 'State Board', '', '', '2016', 90.50, '', 1, '2023-11-29 05:53:05', 0, NULL, 0, NULL, 1),
(19726, 15419, '4', 'Anna University ', '', 'MBA finance ', '2023', 7.10, '', 1, '2023-11-29 05:54:21', 0, NULL, 0, NULL, 1),
(19727, 15421, '4', 'Srm university ', '', 'MCA', '2023', 86.00, '', 1, '2023-11-29 06:14:30', 0, NULL, 0, NULL, 1),
(19728, 15420, '3', 'srm university ', '', 'bsc computer science', '2023', 7.40, '', 1, '2023-11-29 06:15:05', 0, NULL, 0, NULL, 1),
(19729, 15421, '3', 'Sourashtra college for women', '', 'BSc Computer Science ', '2021', 7.50, '', 1, '2023-11-29 06:16:33', 0, NULL, 0, NULL, 1),
(19730, 15421, '2', 'St johns matric hr sec school ', '', '', '2018', 53.00, '', 1, '2023-11-29 06:17:13', 0, NULL, 0, NULL, 1),
(19731, 15421, '1', 'Dolphin matric hr sec school ', '', '', '2016', 75.00, '', 1, '2023-11-29 06:17:40', 0, NULL, 0, NULL, 1),
(19732, 15423, '4', 'Sathyabama institute of science and technology', '', 'MBA', '2022', 89.00, '', 1, '2023-11-29 06:19:10', 0, NULL, 0, NULL, 1),
(19733, 15423, '3', 'Ramakrishna mission Vivekananda College', '', 'Bcom ', '2020', 63.00, '', 1, '2023-11-29 06:19:58', 0, NULL, 0, NULL, 1),
(19734, 15422, '3', 'Vistas University ', '', 'B.com', '2023', 6.70, '', 1, '2023-11-29 06:22:17', 0, NULL, 0, NULL, 1),
(19735, 15428, '3', 'Anna university', '', 'b.tech ', '2023', 77.00, '', 1, '2023-11-29 06:34:30', 1, '2023-11-29 06:37:00', 0, NULL, 0),
(19736, 15428, '2', 'state board', '', '', '2019', 55.00, '', 1, '2023-11-29 06:36:46', 1, '2023-11-29 06:36:58', 0, NULL, 0),
(19737, 15428, '1', 'state board', '', '', '2017', 71.00, '', 1, '2023-11-29 06:37:32', 0, NULL, 0, NULL, 1),
(19738, 15428, '2', 'state board', '', '', '2019', 55.00, '', 1, '2023-11-29 06:38:08', 0, NULL, 0, NULL, 1),
(19739, 15428, '3', 'Anna university', '', 'b.tech ', '2023', 77.00, '', 1, '2023-11-29 06:38:35', 0, NULL, 0, NULL, 1),
(19740, 15429, '3', 'Madras University ', '', 'B.Sc physics', '2014', 61.00, '', 1, '2023-11-29 06:52:27', 0, NULL, 0, NULL, 1),
(19741, 15430, '3', 'Sri krishna arts and science College ', '', 'B.com ', '2020', 61.00, '', 1, '2023-11-29 06:57:27', 0, NULL, 0, NULL, 1),
(19742, 15430, '4', 'Srm university kattankulathur ', '', 'MBA-Banking and Financial services ', '2023', 80.00, '', 1, '2023-11-29 06:57:57', 0, NULL, 0, NULL, 1),
(19743, 15417, '4', 'Anna University ', '', 'Msc', '2021', 68.00, '', 1, '2023-11-29 07:04:39', 0, NULL, 0, NULL, 1),
(19744, 15427, '3', 'Anna university ', '', 'B. Tech IT', '2023', 78.00, '', 1, '2023-11-29 07:05:26', 0, NULL, 0, NULL, 1),
(19745, 15431, '3', 'university of madras', '', 'bcom', '2020', 67.00, '', 1, '2023-11-29 07:11:47', 0, NULL, 0, NULL, 1),
(19746, 15426, '3', 'Anna university', '', 'B. Tech', '2023', 80.00, '', 1, '2023-11-29 07:19:29', 0, NULL, 0, NULL, 1),
(19747, 15432, '3', 'Anna University ', '', 'Be', '2021', 81.00, '', 1, '2023-11-29 07:42:45', 0, NULL, 0, NULL, 1),
(19748, 15433, '3', 'University of Madras ', '', 'Bsc(ECS)', '2022', 76.00, '', 1, '2023-11-29 07:45:03', 0, NULL, 0, NULL, 1),
(19749, 15434, '3', 'University of Madras ', '', 'B.com general', '2020', 53.00, '', 1, '2023-11-29 09:26:19', 0, NULL, 0, NULL, 1),
(19750, 15435, '3', 'Bharathidasan ', '', 'Bba', '2019', 65.00, '', 1, '2023-11-30 05:09:30', 0, NULL, 0, NULL, 1),
(19751, 15437, '3', 'Madras University ', '', 'B.com general ', '2021', 75.00, '', 1, '2023-11-30 05:29:07', 0, NULL, 0, NULL, 1),
(19752, 15438, '3', 'Vels University ', '', 'B.com', '2021', 75.00, '', 1, '2023-11-30 05:48:32', 0, NULL, 0, NULL, 1),
(19753, 15439, '3', 'Tamilnadu Open University ', '', 'BCA', '2016', 70.00, '', 1, '2023-11-30 05:54:39', 0, NULL, 0, NULL, 1),
(19754, 15440, '3', 'Anna university', '', 'bE', '2022', 85.00, '', 1, '2023-11-30 06:29:58', 0, NULL, 0, NULL, 1),
(19755, 15442, '3', 'University of madras', '', 'B.com CS', '2023', 70.00, '', 1, '2023-11-30 06:35:01', 0, NULL, 0, NULL, 1),
(19756, 15443, '3', 'Anna university', '', 'BE', '2020', 55.00, '', 1, '2023-11-30 06:47:43', 0, NULL, 0, NULL, 1),
(19757, 15441, '3', 'Anna university ', '', 'B.tech- information technology ', '2022', 74.00, '', 1, '2023-11-30 06:54:29', 0, NULL, 0, NULL, 1),
(19758, 15444, '3', 'Anna university', '', 'BE', '2022', 85.00, '', 1, '2023-11-30 07:09:26', 0, NULL, 0, NULL, 1),
(19759, 15444, '2', 'Hsc', '', '', '2018', 67.00, '', 1, '2023-11-30 07:09:43', 0, NULL, 0, NULL, 1),
(19760, 15444, '1', 'Sslc', '', '', '2016', 94.00, '', 1, '2023-11-30 07:10:06', 0, NULL, 0, NULL, 1),
(19761, 15445, '3', 'Madras university ', '', 'b. Com(G)', '2020', 70.00, '', 1, '2023-11-30 07:16:15', 0, NULL, 0, NULL, 1),
(19762, 15446, '3', 'Bharathi women\'s college', '', 'B.A.English literature', '2019', 60.00, '', 1, '2023-11-30 07:16:16', 0, NULL, 0, NULL, 1),
(19763, 15447, '4', 'Meenakshi college for women', '', 'MCA', '2021', 80.00, '', 1, '2023-11-30 07:35:23', 0, NULL, 0, NULL, 1),
(19764, 15449, '3', 'Anna University ', '', 'B.Tech IT', '2023', 80.00, '', 1, '2023-11-30 07:36:49', 0, NULL, 0, NULL, 1),
(19765, 15449, '2', 'State', '', '', '2019', 60.00, '', 1, '2023-11-30 07:39:34', 0, NULL, 0, NULL, 1),
(19766, 15449, '1', 'State', '', '', '2017', 80.00, '', 1, '2023-11-30 07:41:05', 0, NULL, 0, NULL, 1),
(19767, 15450, '3', 'university of madras', '', 'BSC computer science', '2021', 71.00, '', 1, '2023-11-30 07:54:42', 0, NULL, 0, NULL, 1),
(19768, 15450, '1', 'state board', '', '', '2017', 87.00, '', 1, '2023-11-30 07:55:21', 0, NULL, 0, NULL, 1),
(19769, 15450, '2', 'state board', '', '', '2018', 78.41, '', 1, '2023-11-30 07:55:40', 0, NULL, 0, NULL, 1),
(19770, 15452, '1', 'State Board', '', '', '2017', 66.00, '', 1, '2023-11-30 09:27:08', 0, NULL, 0, NULL, 1),
(19771, 15453, '1', 'Chennai boys hr sec school ', '', '', '2017', 89.00, '', 1, '2023-11-30 09:27:53', 0, NULL, 0, NULL, 1),
(19772, 15452, '2', 'State Board', '', '', '2019', 50.00, '', 1, '2023-11-30 09:27:58', 0, NULL, 0, NULL, 1),
(19773, 15453, '2', 'Chennai boys hr sec school ', '', '', '2019', 70.00, '', 1, '2023-11-30 09:28:09', 0, NULL, 0, NULL, 1),
(19774, 15453, '3', 'Anna University ', '', 'B.tech it', '2023', 86.00, '', 1, '2023-11-30 09:28:40', 1, '2023-11-30 09:29:06', 0, NULL, 1),
(19775, 15452, '3', 'Anna University ', '', 'B.Tech IT ', '2023', 80.00, '', 1, '2023-11-30 09:28:42', 0, NULL, 0, NULL, 1),
(19776, 15455, '3', 'University of Madras ', '', 'BSC COMPUTER SCIENCE ', '2021', 89.98, '', 1, '2023-11-30 10:09:18', 0, NULL, 0, NULL, 1),
(19777, 15456, '3', 'Madurai kamaraj university College, Madurai-02', '', 'Bsc Computer Science', '2023', 73.69, '', 1, '2023-11-30 10:59:25', 0, NULL, 0, NULL, 1),
(19778, 15457, '3', 'Madras university ', '', 'B.sc computer science ', '2019', 60.00, '', 1, '2023-11-30 12:09:12', 0, NULL, 0, NULL, 1),
(19779, 15459, '4', 'Bharithiyar University ', '', 'MIB', '2022', 69.00, '', 1, '2023-11-30 01:06:25', 0, NULL, 0, NULL, 1),
(19780, 15461, '4', 'Deemed University ', '', 'MBA (FINANCE AND LOGISTICS)', '2023', 70.00, '', 1, '2023-11-30 01:46:27', 0, NULL, 0, NULL, 1),
(19781, 15461, '3', 'Madras University ', '', 'B.com (general)', '2021', 66.00, '', 1, '2023-11-30 01:47:14', 0, NULL, 0, NULL, 1),
(19782, 15462, '4', 'State or Madras University ', '', 'M.com', '2023', 75.00, '', 1, '2023-11-30 02:57:46', 0, NULL, 0, NULL, 1),
(19783, 15463, '3', 'Bharathidasan university', '', 'BCA', '2019', 70.00, '', 1, '2023-11-30 04:38:21', 0, NULL, 0, NULL, 1),
(19784, 15467, '3', 'Surya group of instution', '', 'Be', '2021', 64.00, '', 1, '2023-12-01 04:26:34', 0, NULL, 0, NULL, 1),
(19785, 15467, '1', 'Jawahar Higher secondary school (CBSE)', '', '', '2013', 57.00, '', 1, '2023-12-01 04:27:16', 0, NULL, 0, NULL, 1),
(19786, 15467, '2', 'Valallar matriculation higher secondary school', '', '', '2016', 55.00, '', 1, '2023-12-01 04:28:40', 0, NULL, 0, NULL, 1),
(19787, 15468, '3', 'Parisutham Institute of Technology And Science ', '', 'BE', '2020', 65.90, '', 1, '2023-12-01 04:29:51', 0, NULL, 0, NULL, 1),
(19788, 15469, '3', 'Autonomous', '', 'B.Tech ( biotechnology)', '2023', 86.00, '', 1, '2023-12-01 04:33:06', 0, NULL, 0, NULL, 1),
(19789, 15469, '1', 'State board', '', '', '2017', 95.00, '', 1, '2023-12-01 04:33:58', 0, NULL, 0, NULL, 1),
(19790, 15469, '2', 'State board', '', '', '2019', 67.00, '', 1, '2023-12-01 04:34:23', 0, NULL, 0, NULL, 1),
(19791, 15470, '4', 'Madras University ', '', 'M.com (G)', '2023', 75.00, '', 1, '2023-12-01 04:51:40', 0, NULL, 0, NULL, 1),
(19792, 15470, '3', 'Madras University ', '', 'B.com (A/F)', '2021', 74.00, '', 1, '2023-12-01 04:52:37', 0, NULL, 0, NULL, 1),
(19793, 15470, '2', 'Matriculation ', '', '', '2018', 80.00, '', 1, '2023-12-01 04:53:12', 0, NULL, 0, NULL, 1),
(19794, 15470, '1', 'Martuclation ', '', '', '2018', 63.00, '', 1, '2023-12-01 04:53:52', 0, NULL, 0, NULL, 1),
(19795, 15471, '1', 'Board', '', '', '2014', 85.00, '', 1, '2023-12-01 05:27:30', 0, NULL, 0, NULL, 1),
(19796, 15471, '2', 'Board', '', '', '2016', 85.00, '', 1, '2023-12-01 05:27:48', 0, NULL, 0, NULL, 1),
(19797, 15471, '3', 'Thiruvalluvar University ', '', 'Bsc computer science', '2019', 65.00, '', 1, '2023-12-01 05:28:30', 0, NULL, 0, NULL, 1),
(19798, 15471, '4', 'Anna University ', '', 'MCA', '2023', 75.00, '', 1, '2023-12-01 05:28:51', 0, NULL, 0, NULL, 1),
(19799, 15472, '3', 'University of Mad', '', 'B Sc Physics ', '2012', 52.00, '', 1, '2023-12-01 05:36:06', 0, NULL, 0, NULL, 1),
(19800, 15475, '4', 'bharathidasan university', '', 'MCA', '2022', 80.00, '', 1, '2023-12-01 05:47:11', 0, NULL, 0, NULL, 1),
(19801, 15475, '3', 'bharathidasan university', '', 'B.Come(Computer Applications)', '2019', 74.00, '', 1, '2023-12-01 05:48:07', 0, NULL, 0, NULL, 1),
(19802, 15476, '3', 'Anna University ', '', 'B.E', '2023', 83.00, '', 1, '2023-12-01 05:50:44', 0, NULL, 0, NULL, 1),
(19803, 15477, '3', 'Anna University ', '', 'BE', '2020', 78.00, '', 1, '2023-12-01 06:00:23', 0, NULL, 0, NULL, 1),
(19804, 15479, '3', 'Anna University ', '', 'BE', '2023', 79.00, '', 1, '2023-12-01 06:16:26', 0, NULL, 0, NULL, 1),
(19805, 15451, '3', 'Madras University ', '', 'B com ', '2021', 70.00, '', 1, '2023-12-01 06:17:02', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(19806, 15458, '3', 'Madras University ', '', 'Bsc Computer science ', '2016', 80.00, '', 1, '2023-12-01 06:25:15', 0, NULL, 0, NULL, 1),
(19807, 15410, '3', 'St.peter\'s institute of higher education and research', '', 'b.com general', '2023', 75.00, '', 1, '2023-12-01 06:26:43', 0, NULL, 0, NULL, 1),
(19808, 15478, '3', 'Anna university', '', 'BE(ECE)', '2022', 69.00, '', 1, '2023-12-01 06:33:32', 0, NULL, 0, NULL, 1),
(19809, 15482, '3', 'Sacred Heart College', '', 'B.sc Computer science ', '2023', 80.00, '', 1, '2023-12-01 06:34:52', 0, NULL, 0, NULL, 1),
(19810, 15480, '3', 'Madras University ', '', 'Bcom ( General )', '2023', 79.00, '', 1, '2023-12-01 06:40:25', 0, NULL, 0, NULL, 1),
(19811, 15481, '3', 'Madars University ', '', 'B com general', '2023', 83.00, '', 1, '2023-12-01 06:51:36', 0, NULL, 0, NULL, 1),
(19812, 15460, '3', 'Bharathidasan ', '', 'Bcom', '2023', 72.00, '', 1, '2023-12-01 06:52:24', 0, NULL, 0, NULL, 1),
(19813, 15483, '3', 'Thiruvalluvar University ', '', 'Bachelor\'s in Computer Applications-B.C.A ', '2022', 81.00, '', 1, '2023-12-01 07:10:06', 0, NULL, 0, NULL, 1),
(19814, 15484, '3', 'University of Madras ', '', 'BCA', '2023', 90.00, '', 1, '2023-12-01 07:53:50', 0, NULL, 0, NULL, 1),
(19815, 15484, '2', 'State board ', '', '', '2020', 87.00, '', 1, '2023-12-01 07:54:19', 0, NULL, 0, NULL, 1),
(19816, 15484, '1', 'State board ', '', '', '2018', 73.00, '', 1, '2023-12-01 07:54:47', 0, NULL, 0, NULL, 1),
(19817, 15486, '3', 'madaras university ', '', 'bsc', '2017', 52.00, '', 1, '2023-12-01 08:55:48', 0, NULL, 0, NULL, 1),
(19818, 15488, '4', 'Anna University ', '', 'M.C.A', '2023', 75.00, '', 1, '2023-12-01 09:27:12', 0, NULL, 0, NULL, 1),
(19819, 15489, '3', 'Anna University ', '', 'BE', '2023', 85.60, '', 1, '2023-12-01 09:34:30', 0, NULL, 0, NULL, 1),
(19820, 15489, '2', 'State Board ', '', '', '2019', 74.50, '', 1, '2023-12-01 09:34:56', 1, '2023-12-01 09:35:49', 0, NULL, 1),
(19821, 15489, '1', 'State Board ', '', '', '2017', 94.40, '', 1, '2023-12-01 09:35:23', 0, NULL, 0, NULL, 1),
(19822, 15487, '1', 'State Board', '', '', '2016', 77.60, '', 1, '2023-12-01 09:40:08', 0, NULL, 0, NULL, 1),
(19823, 15487, '2', 'State board', '', '', '2019', 52.00, '', 1, '2023-12-01 09:40:33', 0, NULL, 0, NULL, 1),
(19824, 15487, '3', 'Rajalakshmi Engineering College', '', 'B.Tech IT', '2023', 7.38, '', 1, '2023-12-01 09:41:18', 0, NULL, 0, NULL, 1),
(19825, 15490, '3', 'vetri vinayaha college of engineering and technology', '', 'be', '2019', 65.00, '', 1, '2023-12-01 10:27:07', 0, NULL, 0, NULL, 1),
(19826, 15491, '4', 'Anna University', '', 'MCA', '2016', 70.20, '', 1, '2023-12-01 10:27:33', 0, NULL, 0, NULL, 1),
(19827, 15474, '3', 'University of Madras ', '', 'BCA ', '2023', 79.80, '', 1, '2023-12-01 10:33:42', 0, NULL, 0, NULL, 1),
(19828, 15492, '3', 'Anna university ', '', 'BE-CSE', '2022', 79.00, '', 1, '2023-12-01 10:35:36', 0, NULL, 0, NULL, 1),
(19829, 15492, '2', 'State board ', '', '', '2018', 76.00, '', 1, '2023-12-01 10:36:48', 0, NULL, 0, NULL, 1),
(19830, 15492, '1', 'State board ', '', '', '2016', 92.00, '', 1, '2023-12-01 10:37:37', 0, NULL, 0, NULL, 1),
(19831, 15494, '3', 'madras university', '', 'bba', '2021', 69.00, '', 1, '2023-12-01 11:27:55', 0, NULL, 0, NULL, 1),
(19832, 15495, '4', 'manonmaniam sundaranar', '', 'mathematics', '2021', 9.04, '', 1, '2023-12-01 11:34:14', 1, '2023-12-01 11:37:01', 0, NULL, 0),
(19833, 15495, '4', 'manonmaniam sundaranar', '', 'mathematics', '2021', 9.04, '', 1, '2023-12-01 11:36:53', 0, NULL, 0, NULL, 1),
(19834, 15496, '4', 'Periyar university ', '', 'M. SC Mathematics ', '2021', 85.00, '', 1, '2023-12-01 11:41:39', 0, NULL, 0, NULL, 1),
(19835, 15497, '3', 'University of Madras ', '', 'Bca', '2022', 70.00, '', 1, '2023-12-01 12:33:17', 0, NULL, 0, NULL, 1),
(19836, 15499, '3', 'Government art\'s and science College, Chennai ', '', 'B.com ', '2023', 87.00, '', 1, '2023-12-01 01:11:44', 0, NULL, 0, NULL, 1),
(19837, 15500, '1', 'state board', '', '', '2017', 89.00, '', 1, '2023-12-01 03:55:03', 1, '2023-12-01 03:55:34', 0, NULL, 1),
(19838, 15500, '2', 'state board', '', '', '2019', 82.00, '', 1, '2023-12-01 03:55:57', 1, '2023-12-01 03:58:32', 0, NULL, 1),
(19839, 15500, '3', 'b s abdur rahman crescent institute of science and technology', '', 'b com accounts and finance', '2022', 9.30, '', 1, '2023-12-01 03:59:32', 1, '2023-12-01 03:59:42', 0, NULL, 1),
(19840, 15501, '4', 'University of Madras ', '', 'MBA ', '2021', 72.00, '', 1, '2023-12-01 06:40:34', 0, NULL, 0, NULL, 1),
(19841, 15501, '3', 'University of Madras ', '', 'B.com', '2019', 62.00, '', 1, '2023-12-01 06:41:50', 0, NULL, 0, NULL, 1),
(19842, 15501, '2', 'State board ', '', '', '2016', 80.00, '', 1, '2023-12-01 06:42:26', 0, NULL, 0, NULL, 1),
(19843, 15501, '1', 'State board ', '', '', '2014', 74.00, '', 1, '2023-12-01 06:42:46', 0, NULL, 0, NULL, 1),
(19844, 15502, '3', 'Anna university', '', 'B.Tech(IT)', '2019', 70.00, '', 1, '2023-12-02 06:02:55', 0, NULL, 0, NULL, 1),
(19845, 15503, '3', 'prist', '', 'bcom', '2022', 7.23, '', 1, '2023-12-02 06:06:19', 0, NULL, 0, NULL, 1),
(19846, 15504, '3', 'sri venkateshwara university Tirupati', '', 'bca', '2023', 70.00, '', 1, '2023-12-02 06:09:30', 0, NULL, 0, NULL, 1),
(19847, 15505, '3', 'University of Madras ', '', '', '2023', 63.00, '', 1, '2023-12-02 06:15:43', 1, '2023-12-02 06:15:55', 0, NULL, 0),
(19848, 15505, '3', 'University of Madras ', '', 'BBA', '2023', 63.00, '', 1, '2023-12-02 06:16:22', 1, '2023-12-02 06:16:49', 0, NULL, 0),
(19849, 15505, '3', 'University of Madras ', '', 'BBA', '2023', 63.00, '', 1, '2023-12-02 06:17:26', 0, NULL, 0, NULL, 1),
(19850, 15506, '3', 'Anna University ', '', 'BE', '2019', 71.00, '', 1, '2023-12-02 06:19:57', 0, NULL, 0, NULL, 1),
(19851, 15508, '3', 'University of Madras ', '', 'B.Com', '2023', 70.00, '', 1, '2023-12-02 06:23:45', 0, NULL, 0, NULL, 1),
(19852, 15509, '3', 'University of Madras ', '', 'B.com', '2022', 69.00, '', 1, '2023-12-02 06:28:46', 0, NULL, 0, NULL, 1),
(19853, 15507, '3', 'University of Madras ', '', 'B.com(c.s)', '2022', 55.00, '', 1, '2023-12-02 06:41:32', 0, NULL, 0, NULL, 1),
(19854, 15510, '4', 'Anna University ', '', 'MCA', '2023', 80.00, '', 1, '2023-12-02 07:09:23', 0, NULL, 0, NULL, 1),
(19855, 15511, '3', 'Government art\'s and science college, Chennai ', '', 'B.com ', '2023', 86.00, '', 1, '2023-12-02 07:25:33', 0, NULL, 0, NULL, 1),
(19856, 15513, '3', 'Alagappa university', '', 'B com', '2023', 68.00, '', 1, '2023-12-02 07:43:08', 0, NULL, 0, NULL, 1),
(19857, 15498, '3', 'Madras University ', '', 'Ba', '2023', 80.00, '', 1, '2023-12-02 09:42:14', 0, NULL, 0, NULL, 1),
(19858, 15514, '1', 'Madras University ', '', '', '2013', 76.00, '', 1, '2023-12-02 10:08:10', 0, NULL, 0, NULL, 1),
(19859, 15515, '3', 'Madras University ', '', 'Biology ', '2011', 85.00, '', 1, '2023-12-02 10:38:21', 0, NULL, 0, NULL, 1),
(19860, 15517, '3', 'Madras University ', '', 'B com ca', '2020', 65.00, '', 1, '2023-12-02 01:29:24', 0, NULL, 0, NULL, 1),
(19861, 15518, '3', 'Bangalore University ', '', 'Bcom ', '2023', 75.00, '', 1, '2023-12-02 01:31:18', 0, NULL, 0, NULL, 1),
(19862, 15516, '3', 'Madras university ', '', 'BBA', '2016', 56.00, '', 1, '2023-12-02 01:37:24', 0, NULL, 0, NULL, 1),
(19863, 15520, '5', 'Dote', '', 'EEE', '2021', 80.00, '', 1, '2023-12-02 01:38:16', 0, NULL, 0, NULL, 1),
(19864, 15493, '3', 'Tiruvalluvar university', '', 'Bsc computer science ', '2023', 65.00, '', 1, '2023-12-03 05:52:16', 0, NULL, 0, NULL, 1),
(19865, 15523, '1', 'sri mookambika temple high school', '', '', '2018', 80.00, '', 1, '2023-12-05 06:17:07', 0, NULL, 0, NULL, 1),
(19866, 15523, '3', 'mangalore university', '', 'bba', '2023', 60.00, '', 1, '2023-12-05 06:18:20', 0, NULL, 0, NULL, 1),
(19867, 15318, '3', 'Bharathidasan university', '', 'B. Sc computer science', '2018', 71.00, '', 1, '2023-12-06 06:38:17', 0, NULL, 0, NULL, 1),
(19868, 15524, '3', 'Anna university', '', 'BE Mechanical', '2018', 7.80, '', 1, '2023-12-07 04:31:56', 0, NULL, 0, NULL, 1),
(19869, 15525, '3', 'Anna university ', '', 'B. E-computer science and engineering ', '2021', 72.00, '', 1, '2023-12-07 05:15:20', 0, NULL, 0, NULL, 1),
(19870, 15526, '3', 'Chennai University ', '', 'B.Com', '2011', 72.00, '', 1, '2023-12-07 05:46:35', 0, NULL, 0, NULL, 1),
(19871, 15526, '2', 'CBSE', '', '', '2008', 63.00, '', 1, '2023-12-07 05:47:31', 0, NULL, 0, NULL, 1),
(19872, 15526, '1', 'CBSE', '', '', '2006', 71.00, '', 1, '2023-12-07 05:47:49', 0, NULL, 0, NULL, 1),
(19873, 15527, '3', 'Anna University ', '', 'BE MECHANICAL ENGINEERING ', '2022', 6.80, '', 1, '2023-12-07 05:53:12', 0, NULL, 0, NULL, 1),
(19874, 15529, '3', 'St peters university ', '', 'Bsc viscom', '2021', 81.00, '', 1, '2023-12-07 06:00:27', 0, NULL, 0, NULL, 1),
(19875, 15528, '3', 'university of madras', '', 'bcom', '2021', 60.00, '', 1, '2023-12-07 06:00:34', 0, NULL, 0, NULL, 1),
(19876, 15530, '4', 'Madras university', '', 'BBA', '2023', 72.00, '', 1, '2023-12-07 06:45:48', 0, NULL, 0, NULL, 1),
(19877, 15532, '3', 'Anna university ', '', 'BE', '2020', 78.00, '', 1, '2023-12-07 08:04:20', 0, NULL, 0, NULL, 1),
(19878, 15519, '3', 'sir theagaraya college', '', 'b.com', '2019', 68.00, '', 1, '2023-12-07 09:37:44', 0, NULL, 0, NULL, 1),
(19879, 15533, '3', 'University', '', 'Bsc', '2018', 69.00, '', 1, '2023-12-07 10:33:18', 0, NULL, 0, NULL, 1),
(19880, 15534, '3', 'Anna University ', '', 'BE', '2023', 82.00, '', 1, '2023-12-08 04:33:41', 0, NULL, 0, NULL, 1),
(19881, 15538, '3', 'Dr MGR UNIVERSITY ', '', 'BCA', '2018', 70.00, '', 1, '2023-12-08 04:37:56', 0, NULL, 0, NULL, 1),
(19882, 15538, '2', 'Caldwell hir sec school ', '', '', '2015', 60.00, '', 1, '2023-12-08 04:38:39', 0, NULL, 0, NULL, 1),
(19883, 15539, '1', 'State Board ', '', '', '2015', 84.00, '', 1, '2023-12-08 04:48:39', 0, NULL, 0, NULL, 1),
(19884, 15539, '2', 'State board ', '', '', '2017', 69.00, '', 1, '2023-12-08 04:49:07', 0, NULL, 0, NULL, 1),
(19885, 15539, '3', 'Bharadhidasan university trichy', '', 'B.sc(computer science) ', '2020', 73.00, '', 1, '2023-12-08 04:49:59', 0, NULL, 0, NULL, 1),
(19886, 15540, '3', 'hindustan university', '', 'b.tech', '2018', 69.00, '', 1, '2023-12-08 05:24:23', 0, NULL, 0, NULL, 1),
(19887, 15541, '4', 'Anna university', '', 'MBA', '2016', 72.00, '', 1, '2023-12-08 05:28:54', 0, NULL, 0, NULL, 1),
(19888, 15531, '1', 'Matric', '', '', '2016', 80.60, '', 1, '2023-12-08 05:36:52', 0, NULL, 0, NULL, 1),
(19889, 15531, '2', 'Matric', '', '', '2019', 56.70, '', 1, '2023-12-08 05:37:09', 0, NULL, 0, NULL, 1),
(19890, 15531, '3', 'Anna University ', '', 'B.E ', '2023', 70.62, '', 1, '2023-12-08 05:37:48', 0, NULL, 0, NULL, 1),
(19891, 15542, '3', 'Mepco schlenk engineering college ', '', 'BE', '2020', 70.60, '', 1, '2023-12-08 05:38:54', 0, NULL, 0, NULL, 1),
(19892, 15542, '5', 'Paavai polytechnic college ', '', 'Diploma', '2017', 85.00, '', 1, '2023-12-08 05:39:23', 0, NULL, 0, NULL, 1),
(19893, 15543, '3', 'Madras University ', '', 'B.com(computer application)', '2023', 62.00, '', 1, '2023-12-08 05:52:21', 0, NULL, 0, NULL, 1),
(19894, 15544, '3', 'madras of university', '', 'b a economics', '2022', 70.00, '', 1, '2023-12-08 05:56:54', 0, NULL, 0, NULL, 1),
(19895, 15544, '2', 'state board', '', '', '2019', 64.00, '', 1, '2023-12-08 05:58:41', 0, NULL, 0, NULL, 1),
(19896, 15544, '1', 'state board', '', '', '2017', 79.80, '', 1, '2023-12-08 05:59:21', 0, NULL, 0, NULL, 1),
(19897, 15545, '3', 'Anna university ', '', 'B.e-ECE', '2019', 67.00, '', 1, '2023-12-08 06:35:36', 0, NULL, 0, NULL, 1),
(19898, 15545, '1', 'State board', '', '', '2013', 94.00, '', 1, '2023-12-08 06:36:20', 0, NULL, 0, NULL, 1),
(19899, 15545, '2', 'State board', '', '', '2015', 77.00, '', 1, '2023-12-08 06:36:44', 0, NULL, 0, NULL, 1),
(19900, 15546, '3', 'Autonomous ', '', 'BA', '2021', 70.00, '', 1, '2023-12-08 08:25:28', 0, NULL, 0, NULL, 1),
(19901, 15547, '3', 'University of Madras ', '', 'B. com ', '2023', 89.00, '', 1, '2023-12-08 10:48:48', 0, NULL, 0, NULL, 1),
(19902, 15549, '4', 'Madras University ', '', 'MBA', '2023', 75.00, '', 1, '2023-12-08 11:30:08', 0, NULL, 0, NULL, 1),
(19903, 15548, '4', 'Bharathidasan ', '', 'Mba', '2021', 75.00, '', 1, '2023-12-09 04:46:23', 0, NULL, 0, NULL, 1),
(19904, 15551, '3', 'University ', '', 'Puc', '2015', 70.00, '', 1, '2023-12-09 04:48:28', 0, NULL, 0, NULL, 1),
(19905, 15552, '3', 'University college of engineering BIT campus TIRUCHIRAPALLI ', '', 'BE(ELECTRICAL AND ELECTRONIC ENGINEERING)', '2021', 75.00, '', 1, '2023-12-09 04:59:59', 0, NULL, 0, NULL, 1),
(19906, 15550, '4', 'Acharya Nagarjuna University ', '', 'M.B.A', '2019', 6.75, '', 1, '2023-12-09 05:20:07', 0, NULL, 0, NULL, 1),
(19907, 15553, '3', 'University', '', 'B.tech', '2022', 7.70, '', 1, '2023-12-09 05:20:19', 0, NULL, 0, NULL, 1),
(19908, 15555, '3', 'Bangalore University ', '', 'BBA ', '2023', 76.00, '', 1, '2023-12-09 06:09:26', 0, NULL, 0, NULL, 1),
(19909, 15556, '3', 'University ', '', 'BBA-SHIPPING ', '2023', 68.00, '', 1, '2023-12-09 06:49:06', 0, NULL, 0, NULL, 1),
(19910, 15557, '4', 'University of Madras ', '', 'B.Com Accounting Finance ', '2015', 59.00, '', 1, '2023-12-09 07:53:01', 0, NULL, 0, NULL, 1),
(19911, 15558, '3', 'Madras university', '', 'BCA', '2013', 75.00, '', 1, '2023-12-09 07:26:44', 0, NULL, 0, NULL, 1),
(19912, 15560, '3', 'Madras University', '', 'BA Economics', '2021', 65.00, '', 1, '2023-12-09 09:12:44', 0, NULL, 0, NULL, 1),
(19913, 15559, '3', 'Autonomous ', '', 'B. A', '2021', 65.00, '', 1, '2023-12-09 09:17:47', 0, NULL, 0, NULL, 1),
(19914, 15561, '4', 'Bangalore university', '', 'M. Com ', '2022', 78.00, '', 1, '2023-12-10 12:42:16', 0, NULL, 0, NULL, 1),
(19915, 15561, '3', 'Bangalore university', '', 'B. Com ', '2020', 85.00, '', 1, '2023-12-10 12:42:55', 0, NULL, 0, NULL, 1),
(19916, 15561, '2', 'Karnataka board ', '', '', '2017', 77.00, '', 1, '2023-12-10 12:43:29', 0, NULL, 0, NULL, 1),
(19917, 15561, '1', 'Karnataka board', '', '', '2015', 65.00, '', 1, '2023-12-10 12:45:26', 0, NULL, 0, NULL, 1),
(19918, 2269, '3', 'Madras university', '', 'BCA', '2019', 75.00, '', 1, '2023-12-10 01:05:27', 0, NULL, 0, NULL, 1),
(19919, 15564, '3', 'Tiruvallur University ', '', 'BCA', '2023', 89.00, '', 1, '2023-12-10 05:49:04', 0, NULL, 0, NULL, 1),
(19920, 15563, '3', 'Madras university', '', 'B.com', '2021', 75.00, '', 1, '2023-12-10 06:22:55', 0, NULL, 0, NULL, 1),
(19921, 15566, '3', 'Chennai University ', '', 'B.Com', '2023', 76.40, '', 1, '2023-12-11 05:06:46', 0, NULL, 0, NULL, 1),
(19922, 15568, '3', 'Aarupadai veedu institute of technology', '', 'B.E Mechanical', '2023', 8.75, '', 1, '2023-12-11 05:08:29', 0, NULL, 0, NULL, 1),
(19923, 15567, '3', 'University ', '', 'Bachelor of technology ', '2023', 82.70, '', 1, '2023-12-11 05:11:31', 0, NULL, 0, NULL, 1),
(19924, 15568, '5', 'PSB polytechnic college ', '', 'Diploma in mechanical engineering', '2020', 84.00, '', 1, '2023-12-11 05:11:35', 0, NULL, 0, NULL, 1),
(19925, 15568, '1', 'Thanthai periyar government higher secondary school', '', '', '2017', 89.40, '', 1, '2023-12-11 05:12:06', 0, NULL, 0, NULL, 1),
(19926, 15565, '5', 'Dote', '', 'Dme', '2019', 69.00, '', 1, '2023-12-11 05:13:42', 0, NULL, 0, NULL, 1),
(19927, 15569, '4', 'Barathidasan University', '', 'M.Sc., Computer Science', '2023', 76.00, '', 1, '2023-12-11 05:27:56', 0, NULL, 0, NULL, 1),
(19928, 15569, '3', 'Barathidasan University', '', 'B.Sc., Computer science', '2021', 74.00, '', 1, '2023-12-11 05:28:47', 0, NULL, 0, NULL, 1),
(19929, 15569, '2', 'State Board', '', '', '2018', 61.00, '', 1, '2023-12-11 05:29:18', 0, NULL, 0, NULL, 1),
(19930, 15569, '1', 'State Board', '', '', '2016', 82.00, '', 1, '2023-12-11 05:29:41', 0, NULL, 0, NULL, 1),
(19931, 15572, '3', 'B. S. Abdur Rahman Crescent Institute Of Science And Technology', '', 'B.tech Computer science ', '2023', 7.90, '', 1, '2023-12-11 06:02:11', 0, NULL, 0, NULL, 1),
(19932, 15571, '3', 'Government arts and Science collage', '', 'B.sc Mathematics', '2021', 72.00, '', 1, '2023-12-11 06:02:13', 0, NULL, 0, NULL, 1),
(19933, 15577, '3', 'Anna University ', '', 'BE', '2020', 70.00, '', 1, '2023-12-11 06:13:13', 0, NULL, 0, NULL, 1),
(19934, 15576, '3', 'bishop heber collage', '', 'bsc comput Sciences ', '2020', 86.02, '', 1, '2023-12-11 06:13:23', 1, '2023-12-11 06:14:05', 0, NULL, 1),
(19935, 15577, '5', 'Dote', '', 'Diploma ', '2017', 78.00, '', 1, '2023-12-11 06:13:41', 0, NULL, 0, NULL, 1),
(19936, 15578, '3', 'Aarupadai veedu institute of technology', '', 'B.E Mechanical engineerings ', '2023', 8.10, '', 1, '2023-12-11 06:15:39', 0, NULL, 0, NULL, 1),
(19937, 15578, '2', 'St marry gorety Higher secondary schools ', '', '', '2019', 50.00, '', 1, '2023-12-11 06:16:26', 0, NULL, 0, NULL, 1),
(19938, 15578, '1', 'St marry gorety Higher secondary school', '', '', '2017', 76.00, '', 1, '2023-12-11 06:16:56', 0, NULL, 0, NULL, 1),
(19939, 15570, '2', 'pre university ', '', '', '2016', 76.00, '', 1, '2023-12-11 06:16:57', 0, NULL, 0, NULL, 1),
(19940, 15579, '3', 'Madars University ', '', 'B.com(Information systems Management)', '2022', 80.00, '', 1, '2023-12-11 06:28:48', 0, NULL, 0, NULL, 1),
(19941, 15574, '3', 'MKU university ', '', 'BSc.coputer science ', '2023', 79.00, '', 1, '2023-12-11 06:29:40', 0, NULL, 0, NULL, 1),
(19942, 15454, '3', 'guru nanak college', '', 'b.com', '2022', 88.00, '', 1, '2023-12-11 06:50:29', 0, NULL, 0, NULL, 1),
(19943, 15582, '3', 'Anna University ', '', 'B.voc', '2022', 65.00, '', 1, '2023-12-11 07:10:30', 0, NULL, 0, NULL, 1),
(19944, 15584, '3', 'SRMU Chennai ', '', 'MCA', '2202', 8.23, '', 1, '2023-12-11 07:13:42', 1, '2023-12-11 07:14:42', 0, NULL, 0),
(19945, 15583, '3', 'SRM ', '', 'bCA', '2021', 90.00, '', 1, '2023-12-11 07:15:00', 0, NULL, 0, NULL, 1),
(19946, 15584, '3', 'Anna University ', '', 'Bachelor of engineering ', '2022', 8.23, '', 1, '2023-12-11 07:15:05', 0, NULL, 0, NULL, 1),
(19947, 15585, '3', 'madras', '', 'bcom', '2010', 55.00, '', 1, '2023-12-11 07:19:50', 0, NULL, 0, NULL, 1),
(19948, 15587, '3', 'Sri Ramakrishna College of Arts and science ', '', 'B.Sc', '2022', 75.00, '', 1, '2023-12-11 07:37:18', 0, NULL, 0, NULL, 1),
(19949, 15588, '2', 'PUC', '', '', '2016', 64.00, '', 1, '2023-12-11 07:37:29', 0, NULL, 0, NULL, 1),
(19950, 15589, '3', 'Kamarajar University ', '', 'BA English Literature ', '2023', 59.00, '', 1, '2023-12-11 07:51:40', 0, NULL, 0, NULL, 1),
(19951, 15586, '4', 'Anna university', '', 'MBA', '2016', 70.00, '', 1, '2023-12-11 07:53:55', 0, NULL, 0, NULL, 1),
(19952, 15591, '3', 'University of Madras', '', 'B.com (general)', '2021', 60.00, '', 1, '2023-12-11 09:28:07', 0, NULL, 0, NULL, 1),
(19953, 15575, '4', 'institute of technology', '', 'mba', '2023', 71.00, '', 1, '2023-12-11 09:38:52', 0, NULL, 0, NULL, 1),
(19954, 15590, '3', 'UNIVERSITY ', '', 'B.e', '2023', 80.00, '', 1, '2023-12-11 09:56:46', 0, NULL, 0, NULL, 1),
(19955, 15594, '3', 'Bangalore City University ', '', 'Bachelor of commerce ', '2023', 88.88, '', 1, '2023-12-11 01:38:40', 0, NULL, 0, NULL, 1),
(19956, 15594, '2', 'Department of pre-university education ', '', '', '2020', 65.00, '', 1, '2023-12-11 01:39:13', 0, NULL, 0, NULL, 1),
(19957, 15594, '1', 'Karnataka secondary education examination ', '', '', '2018', 70.00, '', 1, '2023-12-11 01:39:32', 0, NULL, 0, NULL, 1),
(19958, 15593, '3', 'Sir venkatesh University ', '', 'B com ', '2018', 60.00, '', 1, '2023-12-11 01:42:49', 0, NULL, 0, NULL, 1),
(19959, 15595, '3', 'Sss jain college for womens', '', 'BBA', '2019', 70.00, '', 1, '2023-12-11 01:43:59', 0, NULL, 0, NULL, 1),
(19960, 15596, '3', 'Anna university', '', 'B.Tech', '2018', 72.00, '', 1, '2023-12-11 01:45:00', 0, NULL, 0, NULL, 1),
(19961, 15596, '2', 'State', '', '', '2014', 82.00, '', 1, '2023-12-11 01:45:18', 1, '2023-12-11 01:46:10', 0, NULL, 1),
(19962, 15596, '1', 'State Board', '', '', '2012', 87.00, '', 1, '2023-12-11 01:45:45', 0, NULL, 0, NULL, 1),
(19963, 15601, '4', 'Bharath Institute of higher education and research ', '', 'M.Sc', '2023', 9.10, '', 1, '2023-12-12 04:43:40', 0, NULL, 0, NULL, 1),
(19964, 15602, '3', 'Madara university ', '', 'B.com general', '2020', 80.00, '', 1, '2023-12-12 04:54:50', 0, NULL, 0, NULL, 1),
(19965, 13536, '3', 'Madras University ', '', 'Bsc ', '2020', 50.00, '', 1, '2023-12-12 05:10:42', 0, NULL, 0, NULL, 1),
(19966, 15600, '3', 'university of madras', '', 'b com general', '2020', 58.00, '', 1, '2023-12-12 05:41:16', 0, NULL, 0, NULL, 1),
(19967, 0, '1', 'Vel\'s vidhyadhram ', '', '', '2017', 92.00, '', 1, '2023-12-12 05:42:38', 1, '2023-12-12 09:49:08', 0, NULL, 0),
(19968, 0, '3', 'Panimalar Engineering College ', '', 'B.E. Computer Science and Engineering ', '2023', 87.00, '', 1, '2023-12-12 05:43:15', 1, '2023-12-12 09:48:59', 0, NULL, 0),
(19969, 15604, '3', 'Madras University ', '', 'BBA', '2023', 84.00, '', 1, '2023-12-12 05:43:34', 0, NULL, 0, NULL, 1),
(19970, 0, '3', 'Panimalar Engineering College ', '', 'B.E. Computer Science and Engineering ', '2023', 87.00, '', 1, '2023-12-12 05:43:43', 1, '2023-12-12 06:22:35', 0, NULL, 0),
(19971, 15603, '3', 'Madras University ', '', 'B.B.A.,', '2022', 80.00, '', 1, '2023-12-12 05:52:02', 0, NULL, 0, NULL, 1),
(19972, 15606, '3', 'Shantiniketan pU college ', '', '12', '2022', 65.00, '', 1, '2023-12-12 06:16:08', 0, NULL, 0, NULL, 1),
(19973, 15605, '5', 'govt polyt ', '', '', '2019', 63.00, '', 1, '2023-12-12 06:22:31', 0, NULL, 0, NULL, 1),
(19974, 15607, '1', 'Vel\'s vidhyadhram matric higher secondary school ', '', '', '2017', 92.00, '', 1, '2023-12-12 06:23:48', 0, NULL, 0, NULL, 1),
(19975, 15607, '2', 'Sunbeam matric higher secondary school ', '', '', '2019', 68.00, '', 1, '2023-12-12 06:24:17', 0, NULL, 0, NULL, 1),
(19976, 15607, '3', 'Panimalar Engineering College ', '', 'B.E. Computer Science and Engineering ', '2023', 87.00, '', 1, '2023-12-12 06:24:44', 0, NULL, 0, NULL, 1),
(19977, 15608, '1', 'state board', '', '', '2016', 75.20, '', 1, '2023-12-12 06:31:52', 0, NULL, 0, NULL, 1),
(19978, 15608, '2', 'state board', '', '', '2018', 90.50, '', 1, '2023-12-12 06:32:16', 0, NULL, 0, NULL, 1),
(19979, 15608, '3', 'unive of madras', '', 'b.com', '2021', 76.00, '', 1, '2023-12-12 06:32:59', 0, NULL, 0, NULL, 1),
(19980, 15599, '3', 'AGNI college of technology ', '', 'BE', '2015', 63.00, '', 1, '2023-12-12 06:51:17', 0, NULL, 0, NULL, 1),
(19981, 15609, '3', 'ANNA UNIVERSITY ', '', 'Be. Computer  science ', '2024', 87.00, '', 1, '2023-12-12 06:58:08', 0, NULL, 0, NULL, 1),
(19982, 15611, '3', 'Madras University ', '', 'B.s.c computer science ', '2023', 6.10, '', 1, '2023-12-12 06:59:12', 0, NULL, 0, NULL, 1),
(19983, 15610, '3', 'Anna University ', '', 'BE. CSE', '2023', 80.00, '', 1, '2023-12-12 07:15:35', 0, NULL, 0, NULL, 1),
(19984, 15613, '3', 'Anna University', '', 'B.Tech - Petroleum Engineering', '2021', 73.50, '', 1, '2023-12-12 07:29:41', 0, NULL, 0, NULL, 1),
(19985, 15614, '3', 'Anna University ', '', 'B.tech chemical engineering ', '2021', 73.80, '', 1, '2023-12-12 07:31:20', 0, NULL, 0, NULL, 1),
(19986, 15612, '3', 'Anna University', '', 'B.E', '2021', 73.00, '', 1, '2023-12-12 07:46:21', 0, NULL, 0, NULL, 1),
(19987, 15615, '3', 'Anna University ', '', 'Computer science Engineering ', '2021', 70.00, '', 1, '2023-12-12 07:54:40', 0, NULL, 0, NULL, 1),
(19988, 15616, '3', 'Anna University', '', 'B. E', '2021', 78.00, '', 1, '2023-12-12 09:03:48', 0, NULL, 0, NULL, 1),
(19989, 15616, '2', 'GMHSS', '', '', '2017', 92.00, '', 1, '2023-12-12 09:04:36', 0, NULL, 0, NULL, 1),
(19990, 15616, '1', 'GMHSS', '', '', '2015', 97.00, '', 1, '2023-12-12 09:04:53', 0, NULL, 0, NULL, 1),
(19991, 15617, '3', 'University of Madras ', '', 'B. Sc', '2021', 70.00, '', 1, '2023-12-12 09:50:06', 0, NULL, 0, NULL, 1),
(19992, 15598, '3', 'University ', '', 'B.com', '2023', 60.00, '', 1, '2023-12-12 09:51:35', 0, NULL, 0, NULL, 1),
(19993, 15618, '3', 'Deemed University ', '', 'B.com ', '2022', 75.00, '', 1, '2023-12-12 12:21:51', 0, NULL, 0, NULL, 1),
(19994, 15620, '3', 'Madras university ', '', 'Bachelor of Commerce ', '2023', 68.00, '', 1, '2023-12-12 01:37:39', 0, NULL, 0, NULL, 1),
(19995, 15623, '3', 'Madras University ', '', 'B.com ', '2021', 68.00, '', 1, '2023-12-13 05:05:07', 0, NULL, 0, NULL, 1),
(19996, 15624, '3', 'Justin basheer Ahmed Syed Sayed for women ', '', 'B.com general', '2021', 75.00, '', 1, '2023-12-13 05:13:21', 0, NULL, 0, NULL, 1),
(19997, 15626, '3', 'Anna University ', '', 'Engineering in Computer science ', '2020', 63.50, '', 1, '2023-12-13 05:44:22', 0, NULL, 0, NULL, 1),
(19998, 15627, '3', 'Anna University ', '', 'B.Tech', '2022', 75.40, '', 1, '2023-12-13 05:48:37', 0, NULL, 0, NULL, 1),
(19999, 15628, '3', 'Bharathodasan University', '', 'B.com', '2021', 60.00, '', 1, '2023-12-13 05:53:49', 0, NULL, 0, NULL, 1),
(20000, 15630, '5', 'Anna University ', '', 'DECE', '2021', 80.00, '', 1, '2023-12-13 06:10:38', 1, '2023-12-14 04:32:50', 0, NULL, 0),
(20001, 15634, '3', 'Madras university', '', 'BBA', '2019', 85.00, '', 1, '2023-12-13 06:22:43', 0, NULL, 0, NULL, 1),
(20002, 15629, '3', 'Dr.MGR University', '', 'Bsc. Psychology', '2022', 80.00, '', 1, '2023-12-13 06:22:55', 0, NULL, 0, NULL, 1),
(20003, 15635, '3', 'Alagappa University ', '', 'B.Voc software development ', '2023', 80.00, '', 1, '2023-12-13 06:28:16', 0, NULL, 0, NULL, 1),
(20004, 15633, '3', 'Alagappa university', '', 'B. Voc(software development) ', '2023', 81.00, '', 1, '2023-12-13 06:34:01', 0, NULL, 0, NULL, 1),
(20005, 15633, '2', 'State board of tamilnafu', '', '', '2020', 58.00, '', 1, '2023-12-13 06:34:42', 0, NULL, 0, NULL, 1),
(20006, 15633, '1', 'State board of tamilnadu', '', '', '2017', 81.00, '', 1, '2023-12-13 06:35:14', 0, NULL, 0, NULL, 1),
(20007, 15636, '2', 'Board', '', '', '2011', 62.00, '', 1, '2023-12-13 06:35:34', 0, NULL, 0, NULL, 1),
(20008, 15636, '1', 'Board ', '', '', '2014', 60.00, '', 1, '2023-12-13 06:36:12', 0, NULL, 0, NULL, 1),
(20009, 15636, '3', 'Thiruvalluvar University ', '', 'BCA', '2017', 72.00, '', 1, '2023-12-13 06:36:47', 0, NULL, 0, NULL, 1),
(20010, 15636, '4', 'Madras University ', '', 'MBA ', '2021', 60.00, '', 1, '2023-12-13 06:37:19', 0, NULL, 0, NULL, 1),
(20011, 15637, '5', 'Board', '', 'Mechanical engineering', '2023', 70.00, '', 1, '2023-12-13 06:46:47', 0, NULL, 0, NULL, 1),
(20012, 9579, '3', 'Anna University ', '', 'B.E', '2021', 71.10, '', 1, '2023-12-13 07:29:37', 0, NULL, 0, NULL, 1),
(20013, 15638, '4', 'Thiruvalluvar University ', '', 'M.sc computer science ', '2022', 87.00, '', 1, '2023-12-13 07:36:01', 0, NULL, 0, NULL, 1),
(20014, 15621, '5', 'anna university ', '', 'diploma ', '2018', 75.00, '', 1, '2023-12-13 08:13:59', 0, NULL, 0, NULL, 1),
(20015, 15641, '4', 'Puducherry University ', '', 'MBA', '2021', 8.09, '', 1, '2023-12-13 01:11:07', 0, NULL, 0, NULL, 1),
(20016, 15641, '3', 'Puducherry University ', '', 'B.Com', '2019', 6.95, '', 1, '2023-12-13 01:13:46', 0, NULL, 0, NULL, 1),
(20017, 15641, '2', 'State board', '', '', '2018', 70.00, '', 1, '2023-12-13 01:14:48', 0, NULL, 0, NULL, 1),
(20018, 15641, '1', 'State board ', '', '', '2016', 70.00, '', 1, '2023-12-13 01:15:54', 0, NULL, 0, NULL, 1),
(20019, 15642, '4', 'Annamalai University ', '', 'M.com', '2023', 55.00, '', 1, '2023-12-13 01:24:29', 1, '2023-12-13 01:24:58', 0, NULL, 0),
(20020, 0, '3', 'Anna university ', '', 'BE', '2023', 80.00, '', 1, '2023-12-13 01:30:32', 1, '2023-12-14 04:58:55', 0, NULL, 0),
(20021, 15642, '4', 'Annamalai University ', '', 'M.com', '2023', 48.70, '', 1, '2023-12-13 01:35:13', 0, NULL, 0, NULL, 1),
(20022, 15642, '3', 'Bharathidhasan University ', '', 'BBA', '2021', 75.30, '', 1, '2023-12-13 01:36:09', 0, NULL, 0, NULL, 1),
(20023, 15642, '2', 'Bhanadhurai higer secondary school ', '', '', '2018', 68.00, '', 1, '2023-12-13 01:37:33', 0, NULL, 0, NULL, 1),
(20024, 15644, '3', 'Madras University ', '', 'B com', '2023', 70.00, '', 1, '2023-12-13 02:07:08', 0, NULL, 0, NULL, 1),
(20025, 15645, '3', 'Madras University', '', 'B. Com', '2023', 44.00, '', 1, '2023-12-13 03:00:50', 0, NULL, 0, NULL, 1),
(20026, 15630, '5', 'Anna university', '', 'ECE', '2021', 89.00, '', 1, '2023-12-14 04:32:56', 0, NULL, 0, NULL, 1),
(20027, 15646, '3', 'University of Madras ', '', 'B.sc', '2023', 66.00, '', 1, '2023-12-14 04:57:55', 0, NULL, 0, NULL, 1),
(20028, 15648, '3', 'University of Madras ', '', 'B.sc', '2023', 63.00, '', 1, '2023-12-14 04:58:10', 0, NULL, 0, NULL, 1),
(20029, 15649, '3', 'Anna university ', '', 'BE', '2023', 80.00, '', 1, '2023-12-14 04:59:20', 0, NULL, 0, NULL, 1),
(20030, 15625, '4', 'Dr.MGR Educational And Research Institute ', '', 'M.sc', '2022', 79.00, '', 1, '2023-12-14 05:04:48', 0, NULL, 0, NULL, 1),
(20031, 15625, '3', 'Periyar Maniammai Institute of science and technology ', '', 'B.sc', '2020', 75.00, '', 1, '2023-12-14 05:05:37', 0, NULL, 0, NULL, 1),
(20032, 15650, '3', 'Annamalai University ', '', 'BBA', '2019', 53.00, '', 1, '2023-12-14 05:12:57', 0, NULL, 0, NULL, 1),
(20033, 15650, '5', 'DOTE', '', 'Diploma in mechanical engineering ', '2015', 83.00, '', 1, '2023-12-14 05:13:38', 0, NULL, 0, NULL, 1),
(20034, 15651, '4', 'Ethiraj College for women', '', 'MCA', '2020', 74.00, '', 1, '2023-12-14 05:41:13', 0, NULL, 0, NULL, 1),
(20035, 15651, '3', 'Madras university ', '', 'BCA', '2017', 72.00, '', 1, '2023-12-14 05:41:53', 0, NULL, 0, NULL, 1),
(20036, 14073, '1', 'State of tamil nadu ', '', '', '2015', 84.00, '', 1, '2023-12-14 06:01:04', 0, NULL, 0, NULL, 1),
(20037, 14073, '2', 'State of tamil nadu ', '', '', '2017', 78.00, '', 1, '2023-12-14 06:01:26', 0, NULL, 0, NULL, 1),
(20038, 14073, '3', 'Vels University ', '', 'BE Computer science engineering ', '2021', 62.00, '', 1, '2023-12-14 06:01:53', 0, NULL, 0, NULL, 1),
(20039, 15652, '1', 'State board ', '', '', '2017', 92.20, '', 1, '2023-12-14 06:05:06', 0, NULL, 0, NULL, 1),
(20040, 15656, '1', 'State board of tamil nadu ', '', '', '2015', 84.00, '', 1, '2023-12-14 06:05:23', 0, NULL, 0, NULL, 1),
(20041, 15656, '2', 'State board of tamil nadu ', '', '', '2017', 78.00, '', 1, '2023-12-14 06:05:44', 0, NULL, 0, NULL, 1),
(20042, 15652, '2', 'State board ', '', '', '2019', 57.50, '', 1, '2023-12-14 06:05:45', 0, NULL, 0, NULL, 1),
(20043, 15656, '3', 'Vels University ', '', 'BE computer science engineering ', '2021', 62.00, '', 1, '2023-12-14 06:06:04', 0, NULL, 0, NULL, 1),
(20044, 15652, '3', 'Anna University ', '', 'BE', '2023', 8.33, '', 1, '2023-12-14 06:06:08', 0, NULL, 0, NULL, 1),
(20045, 15655, '3', 'Thiruvalluvar', '', 'B.sc computer science', '2021', 79.00, '', 1, '2023-12-14 06:07:41', 0, NULL, 0, NULL, 1),
(20046, 15655, '1', 'Sd eaden matric', '', '', '2016', 76.00, '', 1, '2023-12-14 06:08:23', 0, NULL, 0, NULL, 1),
(20047, 15655, '2', 'Sd eaden matric', '', '', '2018', 78.00, '', 1, '2023-12-14 06:08:41', 0, NULL, 0, NULL, 1),
(20048, 15653, '3', 'Bharathidasan University ', '', 'Bsc', '2023', 77.00, '', 1, '2023-12-14 06:08:53', 0, NULL, 0, NULL, 1),
(20049, 15654, '3', 'Bharathidasan ', '', 'Bsc', '2023', 83.00, '', 1, '2023-12-14 06:11:34', 0, NULL, 0, NULL, 1),
(20050, 15657, '3', 'Anna university', '', 'B.E', '2021', 73.00, '', 1, '2023-12-14 06:18:25', 0, NULL, 0, NULL, 1),
(20051, 15657, '2', 'State board', '', '', '2017', 75.00, '', 1, '2023-12-14 06:19:05', 0, NULL, 0, NULL, 1),
(20052, 15657, '1', 'State board', '', '', '2015', 78.00, '', 1, '2023-12-14 06:19:27', 0, NULL, 0, NULL, 1),
(20053, 15647, '5', 'Diploma in technical education ', '', 'Automobile engineering ', '2021', 55.00, '', 1, '2023-12-14 06:52:35', 0, NULL, 0, NULL, 1),
(20054, 15658, '3', 'A.V.C COLLEGE OF ENGINEERING ', '', 'B.E', '2023', 8.40, '', 1, '2023-12-14 07:03:44', 0, NULL, 0, NULL, 1),
(20055, 15659, '3', 'Bharathidasan University ', '', 'Bsc', '2019', 93.00, '', 1, '2023-12-14 07:08:00', 0, NULL, 0, NULL, 1),
(20056, 15659, '4', 'Mgr University ', '', 'Dmlt', '2022', 62.00, '', 1, '2023-12-14 07:08:26', 0, NULL, 0, NULL, 1),
(20057, 15660, '3', 'madras university', '', 'Ba. Economics', '2023', 63.00, '', 1, '2023-12-14 07:25:42', 0, NULL, 0, NULL, 1),
(20058, 15661, '3', 'Madras University ', '', 'BA(eco)', '2023', 61.00, '', 1, '2023-12-14 07:27:40', 0, NULL, 0, NULL, 1),
(20059, 15663, '3', 'University of madras', '', 'bcom cs', '2023', 60.00, '', 1, '2023-12-14 07:43:25', 0, NULL, 0, NULL, 1),
(20060, 15662, '3', 'UNIVERSITY OF MADRAS', '', 'Bcom cs', '2023', 60.00, '', 1, '2023-12-14 07:46:36', 0, NULL, 0, NULL, 1),
(20061, 15664, '3', 'Kamarajar University,madurai', '', 'Bsc', '2019', 80.00, '', 1, '2023-12-14 09:01:15', 0, NULL, 0, NULL, 1),
(20062, 15665, '3', 'Thiruvallur  university  ', '', 'B.com', '2020', 60.00, '', 1, '2023-12-14 12:17:48', 0, NULL, 0, NULL, 1),
(20063, 15667, '3', 'DG Vaishnav College', '', 'Business Economics', '2019', 58.00, '', 1, '2023-12-14 01:30:12', 0, NULL, 0, NULL, 1),
(20064, 15669, '3', 'University ', '', 'BBA', '2021', 62.32, '', 1, '2023-12-14 02:17:24', 0, NULL, 0, NULL, 1),
(20065, 15671, '3', 'Thiruvalluvar University ', '', 'BCA', '2022', 89.00, '', 1, '2023-12-15 04:30:43', 0, NULL, 0, NULL, 1),
(20066, 15674, '3', 'panimalar engineering college', '', 'b.e', '2023', 87.72, '', 1, '2023-12-15 05:19:14', 0, NULL, 0, NULL, 1),
(20067, 15674, '2', 'state board', '', '', '2019', 69.66, '', 1, '2023-12-15 05:19:35', 0, NULL, 0, NULL, 1),
(20068, 15674, '1', 'state board', '', '', '2017', 90.60, '', 1, '2023-12-15 05:20:11', 0, NULL, 0, NULL, 1),
(20069, 15675, '4', 'university of madras ', '', 'master in commerce ', '2023', 70.00, '', 1, '2023-12-15 05:23:53', 0, NULL, 0, NULL, 1),
(20070, 15666, '3', 'MADRAS UNIVERSITY', '', 'B.SC MATHS', '2020', 68.00, '', 1, '2023-12-15 05:31:59', 0, NULL, 0, NULL, 1),
(20071, 15673, '3', 'Sv university ', '', 'Bcom', '2023', 70.00, '', 1, '2023-12-15 05:33:47', 0, NULL, 0, NULL, 1),
(20072, 15676, '4', 'Queen Mary\'s College ', '', 'M sc computer science ', '2023', 83.95, '', 1, '2023-12-15 05:35:22', 0, NULL, 0, NULL, 1),
(20073, 15676, '3', 'Queen Mary\'s College ', '', 'B. Sc computer science ', '2021', 82.26, '', 1, '2023-12-15 05:35:46', 0, NULL, 0, NULL, 1),
(20074, 15676, '2', 'State board ', '', '', '2017', 70.00, '', 1, '2023-12-15 05:36:34', 0, NULL, 0, NULL, 1),
(20075, 15676, '1', 'State board ', '', '', '2015', 81.60, '', 1, '2023-12-15 05:36:55', 0, NULL, 0, NULL, 1),
(20076, 15677, '3', 'Alagappa University', '', 'B.Sc., Information Technology', '2023', 78.00, '', 1, '2023-12-15 05:37:33', 0, NULL, 0, NULL, 1),
(20077, 15679, '3', 'Madras University ', '', 'BBA ', '2023', 70.00, '', 1, '2023-12-15 05:45:07', 0, NULL, 0, NULL, 1),
(20078, 15672, '4', 'Anna University ', '', 'MCA', '2023', 80.00, '', 1, '2023-12-15 05:48:45', 0, NULL, 0, NULL, 1),
(20079, 15681, '1', 'State Board ', '', '', '2015', 68.00, '', 1, '2023-12-15 05:55:30', 0, NULL, 0, NULL, 1),
(20080, 15678, '3', 'University  of Madras ', '', 'BBA ', '2023', 81.00, '', 1, '2023-12-15 05:55:48', 0, NULL, 0, NULL, 1),
(20081, 15680, '1', 'State Board ', '', '', '2015', 85.00, '', 1, '2023-12-15 05:55:53', 0, NULL, 0, NULL, 1),
(20082, 15681, '2', 'State Board ', '', '', '2017', 65.00, '', 1, '2023-12-15 05:56:04', 0, NULL, 0, NULL, 1),
(20083, 15682, '4', 'rathinam college', '', 'mba', '2024', 82.00, '', 1, '2023-12-15 05:56:06', 0, NULL, 0, NULL, 1),
(20084, 15680, '2', 'State Board ', '', '', '2017', 64.00, '', 1, '2023-12-15 05:56:24', 0, NULL, 0, NULL, 1),
(20085, 15683, '1', 'state board', '', '', '2015', 81.00, '', 1, '2023-12-15 05:56:40', 0, NULL, 0, NULL, 1),
(20086, 15683, '2', 'state board', '', '', '2017', 82.00, '', 1, '2023-12-15 05:57:20', 0, NULL, 0, NULL, 1),
(20087, 15680, '3', 'Deemed University ', '', 'BCA', '2020', 72.00, '', 1, '2023-12-15 05:57:39', 0, NULL, 0, NULL, 1),
(20088, 15681, '3', 'Deemed University ', '', 'BSc', '2020', 73.00, '', 1, '2023-12-15 05:57:40', 0, NULL, 0, NULL, 1),
(20089, 15683, '5', 'deemed universi ', '', 'diploma in mechanical Engineering ', '2019', 72.00, '', 1, '2023-12-15 05:59:03', 0, NULL, 0, NULL, 1),
(20090, 15684, '3', 'Madras University ', '', 'B.sc', '2019', 52.00, '', 1, '2023-12-15 06:20:22', 0, NULL, 0, NULL, 1),
(20091, 15687, '3', 'Madras University ', '', 'Bsc Computer science ', '2022', 87.00, '', 1, '2023-12-15 06:26:51', 0, NULL, 0, NULL, 1),
(20092, 15689, '4', 'University of madras', '', 'M. B. A', '2024', 64.00, '', 1, '2023-12-15 06:30:21', 0, NULL, 0, NULL, 1),
(20093, 15686, '3', 'Madras University ', '', 'BCA', '2022', 74.00, '', 1, '2023-12-15 06:30:24', 0, NULL, 0, NULL, 1),
(20094, 15689, '3', 'Srm university', '', 'Bsc', '2022', 74.00, '', 1, '2023-12-15 06:31:20', 0, NULL, 0, NULL, 1),
(20095, 15689, '4', 'University of madras', '', 'M. A', '2024', 81.00, '', 1, '2023-12-15 06:31:47', 0, NULL, 0, NULL, 1),
(20096, 15688, '5', 'dote', '', 'Automobile', '2020', 78.00, '', 1, '2023-12-15 06:38:32', 0, NULL, 0, NULL, 1),
(20097, 15690, '3', 'Madras University ', '', 'Bsc computer science ', '2022', 77.00, '', 1, '2023-12-15 06:46:49', 0, NULL, 0, NULL, 1),
(20098, 15685, '3', 'Madras University College ', '', 'Bca', '2022', 85.00, '', 1, '2023-12-15 06:50:15', 0, NULL, 0, NULL, 1),
(20099, 15692, '4', 'SRM Institute of Science and Technology', '', 'MCA', '2022', 86.00, '', 1, '2023-12-15 07:33:31', 0, NULL, 0, NULL, 1),
(20100, 11707, '4', 'SRM University ', '', 'Mca', '2022', 8.50, '', 1, '2023-12-15 07:33:58', 0, NULL, 0, NULL, 1),
(20101, 15692, '3', 'SRM Arts and Science College', '', 'Bsc', '2020', 67.00, '', 1, '2023-12-15 07:34:10', 0, NULL, 0, NULL, 1),
(20102, 11707, '3', 'Hindustan college of arts and sciences ', '', 'Bca', '2020', 6.40, '', 1, '2023-12-15 07:34:35', 0, NULL, 0, NULL, 1),
(20103, 15692, '2', 'TAMILNADU HIGHER SECONDARY', '', '', '2017', 58.60, '', 1, '2023-12-15 07:34:50', 0, NULL, 0, NULL, 1),
(20104, 15692, '1', 'Tamil Nadu Secondary board', '', '', '2015', 82.40, '', 1, '2023-12-15 07:35:28', 0, NULL, 0, NULL, 1),
(20105, 15693, '3', 'Sathyabama University ', '', 'BE ', '2021', 69.00, '', 1, '2023-12-15 07:38:55', 0, NULL, 0, NULL, 1),
(20106, 15694, '3', 'Sri Ranganathar Institue of Engineering and technology ', '', 'BE ', '2022', 75.00, '', 1, '2023-12-15 07:42:11', 0, NULL, 0, NULL, 1),
(20107, 15694, '2', 'St. Joseph\'s Higher secondary school ', '', '', '2018', 75.00, '', 1, '2023-12-15 07:42:41', 0, NULL, 0, NULL, 1),
(20108, 15694, '1', 'St. Joseph\'s High School ', '', '', '2016', 86.00, '', 1, '2023-12-15 07:43:05', 0, NULL, 0, NULL, 1),
(20109, 15691, '3', 'Anna University ', '', 'It', '2021', 75.00, '', 1, '2023-12-15 07:45:28', 0, NULL, 0, NULL, 1),
(20110, 15698, '3', 'Ethiraj college for women', '', 'BBA', '2021', 76.00, '', 1, '2023-12-15 10:27:36', 0, NULL, 0, NULL, 1),
(20111, 15697, '4', 'annamalai uiversity', '', 'msc', '2020', 70.00, '', 1, '2023-12-15 10:37:37', 0, NULL, 0, NULL, 1),
(20112, 15700, '3', 'M.I.E.T ENGINEERING COLLEGE TRICHY', '', 'B.E', '2019', 62.00, '', 1, '2023-12-15 01:41:50', 0, NULL, 0, NULL, 1),
(20113, 15700, '2', 'Allwin Higher Secondary School Thanjavur ', '', '', '2015', 64.00, '', 1, '2023-12-15 01:42:54', 0, NULL, 0, NULL, 1),
(20114, 15700, '1', 'Kalaimagal higher Secondary School Thanjavur', '', '', '2015', 76.00, '', 1, '2023-12-15 01:44:11', 0, NULL, 0, NULL, 1),
(20115, 15701, '3', 'Sastra University SRC Kumbakonam ', '', 'Bcom', '2022', 86.00, '', 1, '2023-12-15 01:53:28', 0, NULL, 0, NULL, 1),
(20116, 15702, '3', 'Anna University ', '', 'B.Tech', '2013', 65.00, '', 1, '2023-12-16 03:50:39', 0, NULL, 0, NULL, 1),
(20117, 15703, '3', 'Anna university ', '', 'B.E. CSE', '2023', 80.00, '', 1, '2023-12-16 04:09:56', 0, NULL, 0, NULL, 1),
(20118, 15704, '3', 'Anna University ', '', 'B.E', '2023', 7.78, '', 1, '2023-12-16 04:28:29', 0, NULL, 0, NULL, 1),
(20119, 15705, '3', 'University ', '', 'B.tech(information technology)', '2023', 7.79, '', 1, '2023-12-16 04:35:04', 0, NULL, 0, NULL, 1),
(20120, 15705, '2', 'Board', '', '', '2017', 92.40, '', 1, '2023-12-16 04:35:40', 0, NULL, 0, NULL, 1),
(20121, 15705, '1', 'Board', '', '', '2019', 68.00, '', 1, '2023-12-16 04:36:04', 0, NULL, 0, NULL, 1),
(20122, 15706, '3', 'Bharath university', '', 'Bachelor of Technology', '2023', 87.00, '', 1, '2023-12-16 04:42:27', 0, NULL, 0, NULL, 1),
(20123, 15708, '3', 'Anna university ', '', 'B. E', '2023', 77.00, '', 1, '2023-12-16 04:49:04', 0, NULL, 0, NULL, 1),
(20124, 15711, '3', 'Sri Venkateshwar University ', '', 'Bsc', '2021', 78.00, '', 1, '2023-12-16 05:07:08', 0, NULL, 0, NULL, 1),
(20125, 15713, '4', 'University of Madras', '', 'MCA', '2023', 91.00, '', 1, '2023-12-16 05:15:57', 0, NULL, 0, NULL, 1),
(20126, 15713, '3', 'Thiruvalluvar university ', '', 'BCA', '2021', 83.00, '', 1, '2023-12-16 05:16:50', 0, NULL, 0, NULL, 1),
(20127, 15713, '2', 'State board', '', '', '2018', 73.00, '', 1, '2023-12-16 05:17:19', 0, NULL, 0, NULL, 1),
(20128, 15713, '1', 'State board', '', '', '2016', 89.00, '', 1, '2023-12-16 05:17:54', 0, NULL, 0, NULL, 1),
(20129, 15715, '4', 'University of Madras ', '', 'MCA', '2023', 89.00, '', 1, '2023-12-16 05:18:47', 0, NULL, 0, NULL, 1),
(20130, 15714, '3', 'Anna University ', '', 'B.Tech', '2023', 7.71, '', 1, '2023-12-16 05:19:03', 0, NULL, 0, NULL, 1),
(20131, 15712, '3', 'Anna University ', '', 'B.E', '2023', 7.82, '', 1, '2023-12-16 05:19:14', 0, NULL, 0, NULL, 1),
(20132, 15715, '3', 'University of Madras ', '', 'BCA ', '2021', 85.00, '', 1, '2023-12-16 05:19:21', 1, '2023-12-16 05:20:54', 0, NULL, 1),
(20133, 15710, '5', 'PER Centenary polytechnic College', '', 'Modern office practice', '2020', 84.00, '', 1, '2023-12-16 05:29:18', 0, NULL, 0, NULL, 1),
(20134, 15707, '3', 'Vels University ', '', 'B.com general ', '2023', 71.00, '', 1, '2023-12-16 05:41:40', 0, NULL, 0, NULL, 1),
(20135, 15718, '3', 'Hindusthan college of engineering and technology ', '', 'B tech IT', '2023', 75.00, '', 1, '2023-12-16 05:49:51', 0, NULL, 0, NULL, 1),
(20136, 15717, '3', 'hindusthan college of engineering and technology', '', 'btech it', '2023', 79.80, '', 1, '2023-12-16 05:50:04', 0, NULL, 0, NULL, 1),
(20137, 15716, '3', 'anna university', '', 'b e computerscience', '2022', 76.00, '', 1, '2023-12-16 05:54:14', 0, NULL, 0, NULL, 1),
(20138, 15720, '3', 'Bharathidasan University ', '', 'B.com ( Computer Application)', '2023', 76.00, '', 1, '2023-12-16 06:02:54', 0, NULL, 0, NULL, 1),
(20139, 15719, '3', 'Autonomous ', '', 'BA', '2022', 76.00, '', 1, '2023-12-16 06:22:07', 0, NULL, 0, NULL, 1),
(20140, 15721, '3', 'Madras uni', '', 'B com', '2015', 70.00, '', 1, '2023-12-16 06:47:16', 0, NULL, 0, NULL, 1),
(20141, 15723, '3', 'Madurai kamaraj university ', '', 'B. Sc', '2008', 65.00, '', 1, '2023-12-16 06:51:20', 0, NULL, 0, NULL, 1),
(20142, 15722, '3', 'Madras University ', '', 'B.com', '2023', 70.00, '', 1, '2023-12-16 07:04:29', 0, NULL, 0, NULL, 1),
(20143, 1247, '4', 'Madras University ', '', 'Mca', '2023', 84.00, '', 1, '2023-12-16 07:48:13', 0, NULL, 0, NULL, 1),
(20144, 15724, '3', 'Vinayaga mission university', '', 'B.E Mechanical', '2019', 61.00, '', 1, '2023-12-16 09:28:54', 0, NULL, 0, NULL, 1),
(20145, 15725, '3', 'Bharathidhasan University ', '', 'B.sc computer Science ', '2023', 83.00, '', 1, '2023-12-16 09:33:12', 0, NULL, 0, NULL, 1),
(20146, 15726, '3', 'jain university', '', 'bba', '2020', 75.00, '', 1, '2023-12-16 10:31:39', 0, NULL, 0, NULL, 1),
(20147, 15728, '3', 'Bharathidasan University ', '', 'B.com', '2023', 69.00, '', 1, '2023-12-16 01:14:03', 0, NULL, 0, NULL, 1),
(20148, 15729, '3', 'Bharathidasan University trichirappalli ', '', 'BCA', '2023', 85.00, '', 1, '2023-12-16 01:21:13', 0, NULL, 0, NULL, 1),
(20149, 15699, '3', 'srm university', '', 'btech', '2018', 69.00, '', 1, '2023-12-17 02:43:25', 0, NULL, 0, NULL, 1),
(20150, 15733, '3', 'anna university', '', 'Bachelor of Engineering ', '2023', 78.00, '', 1, '2023-12-18 04:35:56', 1, '2023-12-18 04:37:24', 0, NULL, 1),
(20151, 15733, '2', 'state board', '', '', '2019', 64.00, '', 1, '2023-12-18 04:36:24', 0, NULL, 0, NULL, 1),
(20152, 15733, '1', 'state board', '', '', '2017', 89.00, '', 1, '2023-12-18 04:36:50', 0, NULL, 0, NULL, 1),
(20153, 15734, '4', 'SASTRA Deemed to be University ', '', 'MCA', '2023', 77.00, '', 1, '2023-12-18 04:40:09', 0, NULL, 0, NULL, 1),
(20154, 15734, '3', 'Idhaya College For Women ', '', 'Bsc', '2021', 74.00, '', 1, '2023-12-18 04:41:23', 0, NULL, 0, NULL, 1),
(20155, 15734, '2', 'Sri Saraswati padasala girls hr sec school ', '', '', '2018', 61.00, '', 1, '2023-12-18 04:41:49', 1, '2023-12-18 04:42:53', 0, NULL, 1),
(20156, 15731, '3', 'Anna university', '', 'BE', '2019', 8.25, '', 1, '2023-12-18 04:42:58', 0, NULL, 0, NULL, 1),
(20157, 15734, '1', 'C P Vidya Mandir Matriculation Hr Sec school ', '', '', '2016', 77.00, '', 1, '2023-12-18 04:43:36', 0, NULL, 0, NULL, 1),
(20158, 15735, '3', 'Anna university ', '', 'B.Tech', '2022', 8.50, '', 1, '2023-12-18 04:53:04', 0, NULL, 0, NULL, 1),
(20159, 15709, '3', 'Thiruvalluvar University ', '', 'BCA', '2022', 85.00, '', 1, '2023-12-18 04:54:12', 0, NULL, 0, NULL, 1),
(20160, 15732, '3', 'Madras University ', '', 'B com', '2023', 82.00, '', 1, '2023-12-18 05:03:35', 0, NULL, 0, NULL, 1),
(20161, 15736, '3', 'Madras University ', '', 'BA .English literature ', '2023', 60.00, '', 1, '2023-12-18 05:15:04', 0, NULL, 0, NULL, 1),
(20162, 15737, '4', 'Alagappa university', '', 'Msc', '2023', 69.00, '', 1, '2023-12-18 05:18:56', 1, '2023-12-18 05:20:16', 0, NULL, 0),
(20163, 15737, '1', 'Pethal achi girls higher secondary school', '', '', '2016', 94.00, '', 1, '2023-12-18 05:21:09', 0, NULL, 0, NULL, 1),
(20164, 15737, '2', 'Pethal achi girls higher secondary school', '', '', '2018', 81.00, '', 1, '2023-12-18 05:21:43', 0, NULL, 0, NULL, 1),
(20165, 15737, '3', 'Sri saradha niketan college for women', '', 'Bsc', '2021', 90.00, '', 1, '2023-12-18 05:22:27', 0, NULL, 0, NULL, 1),
(20166, 15737, '4', 'Alagappa university ', '', 'Msc', '2023', 69.00, '', 1, '2023-12-18 05:22:50', 0, NULL, 0, NULL, 1),
(20167, 15738, '4', 'Anna University ', '', 'MCA', '2023', 76.00, '', 1, '2023-12-18 05:24:32', 0, NULL, 0, NULL, 1),
(20168, 15741, '3', 'Anna University ', '', 'B Tech Information Technology ', '2023', 82.00, '', 1, '2023-12-18 05:32:18', 0, NULL, 0, NULL, 1),
(20169, 15740, '4', 'Madras University ', '', 'English literature ', '2023', 62.00, '', 1, '2023-12-18 05:33:37', 0, NULL, 0, NULL, 1),
(20170, 15742, '2', 'Chss appaswamy school', '', '', '2016', 75.00, '', 1, '2023-12-18 05:42:13', 0, NULL, 0, NULL, 1),
(20171, 15743, '4', 'Hindustan science and technology', '', 'MCA', '2024', 80.00, '', 1, '2023-12-18 05:47:39', 0, NULL, 0, NULL, 1),
(20172, 15743, '3', 'University', '', 'B. Com', '2022', 82.00, '', 1, '2023-12-18 05:48:22', 0, NULL, 0, NULL, 1),
(20173, 15743, '2', 'Board', '', '', '2019', 81.00, '', 1, '2023-12-18 05:48:54', 0, NULL, 0, NULL, 1),
(20174, 15743, '1', 'Board', '', '', '2017', 73.00, '', 1, '2023-12-18 05:49:13', 0, NULL, 0, NULL, 1),
(20175, 15744, '4', 'Pondicherry University ', '', 'MCA ', '2023', 78.00, '', 1, '2023-12-18 05:49:28', 0, NULL, 0, NULL, 1),
(20176, 15744, '3', 'Tiruvallvar University ', '', 'B.sc', '2021', 86.00, '', 1, '2023-12-18 05:50:09', 0, NULL, 0, NULL, 1),
(20177, 15747, '2', 'State board', '', '', '2018', 75.00, '', 1, '2023-12-18 06:00:39', 0, NULL, 0, NULL, 1),
(20178, 15739, '3', 'University of madras', '', 'BSc physics', '2022', 81.00, '', 1, '2023-12-18 06:06:55', 0, NULL, 0, NULL, 1),
(20179, 15748, '4', 'madras university', '', 'mba', '2024', 71.00, '', 1, '2023-12-18 06:07:25', 0, NULL, 0, NULL, 1),
(20180, 15748, '3', 'madras university', '', 'b com cs', '2022', 72.00, '', 1, '2023-12-18 06:09:24', 0, NULL, 0, NULL, 1),
(20181, 15748, '2', 'state board', '', '', '2019', 70.00, '', 1, '2023-12-18 06:10:00', 0, NULL, 0, NULL, 1),
(20182, 15748, '1', 'state borad', '', '', '2017', 85.00, '', 1, '2023-12-18 06:10:28', 0, NULL, 0, NULL, 1),
(20183, 15745, '4', 'Anna University ', '', 'MCA', '2022', 85.00, '', 1, '2023-12-18 06:14:02', 0, NULL, 0, NULL, 1),
(20184, 15752, '3', 'Vels University ', '', 'B.E Computer Science', '2023', 7.43, '', 1, '2023-12-18 06:27:34', 0, NULL, 0, NULL, 1),
(20185, 15746, '3', 'Madras University ', '', 'B.com cs', '2023', 66.00, '', 1, '2023-12-18 06:27:47', 0, NULL, 0, NULL, 1),
(20186, 15752, '2', 'Tamil Nadu state board ', '', '', '2019', 77.00, '', 1, '2023-12-18 06:28:08', 0, NULL, 0, NULL, 1),
(20187, 15752, '1', 'Tamilnadu state board ', '', '', '2017', 90.00, '', 1, '2023-12-18 06:28:27', 0, NULL, 0, NULL, 1),
(20188, 15753, '3', 'Avit', '', 'B.com', '2016', 81.00, '', 1, '2023-12-18 06:29:55', 0, NULL, 0, NULL, 1),
(20189, 15750, '3', 'Achariya college of engineering and technology ', '', 'B.tech (computer science and engineering)', '2022', 7.20, '', 1, '2023-12-18 06:34:15', 0, NULL, 0, NULL, 1),
(20190, 15754, '4', 'Dr.M.G.R. Educational and Research institute ', '', 'MCA ', '2023', 7.30, '', 1, '2023-12-18 06:37:02', 0, NULL, 0, NULL, 1),
(20191, 15749, '3', 'Achariya college of engineering technology ', '', 'B.tech cse', '2022', 73.00, '', 1, '2023-12-18 06:39:09', 0, NULL, 0, NULL, 1),
(20192, 15755, '3', 'Thiruvalluvar University ', '', 'BCA', '2019', 70.00, '', 1, '2023-12-18 06:39:19', 0, NULL, 0, NULL, 1),
(20193, 15751, '4', 'Anna University ', '', 'MBA ', '2022', 8.16, '', 1, '2023-12-18 06:45:48', 0, NULL, 0, NULL, 1),
(20194, 15756, '5', 'Murugappa polytechnic college', '', 'electronics robotics', '2015', 71.00, '', 1, '2023-12-18 06:47:04', 0, NULL, 0, NULL, 1),
(20195, 15757, '3', 'Barathidasan University', '', 'BCA', '2020', 71.00, '', 1, '2023-12-18 07:13:38', 0, NULL, 0, NULL, 1),
(20196, 15758, '3', 'Madras University ', '', 'B.com cs', '2014', 69.00, '', 1, '2023-12-18 07:41:17', 0, NULL, 0, NULL, 1),
(20197, 15760, '3', 'Bharthidasan University ', '', 'Bca', '2023', 72.69, '', 1, '2023-12-18 08:00:00', 0, NULL, 0, NULL, 1),
(20198, 15759, '3', 'madras university', '', 'b. com  corporate secretaryship', '2019', 57.00, '', 1, '2023-12-18 08:02:12', 0, NULL, 0, NULL, 1),
(20199, 15762, '4', 'Pondicherry University ', '', 'MBA - HRM', '2025', 10.00, '', 1, '2023-12-18 09:44:37', 0, NULL, 0, NULL, 1),
(20200, 15762, '3', 'Anna university ', '', 'BE', '2023', 82.00, '', 1, '2023-12-18 09:45:21', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20201, 15763, '3', 'Anna university ', '', 'B.E computer science ', '2023', 78.00, '', 1, '2023-12-18 09:58:52', 0, NULL, 0, NULL, 1),
(20202, 15761, '3', 'mam college of engineering', '', 'be', '2023', 79.00, '', 1, '2023-12-18 10:21:32', 0, NULL, 0, NULL, 1),
(20203, 15765, '3', 'UNIVERSITY OF MADRAS', '', 'B sc', '2022', 80.00, '', 1, '2023-12-19 01:29:24', 0, NULL, 0, NULL, 1),
(20204, 15766, '4', 'SDNB VAISHNAV COLLEGE FOR WOMEN ', '', 'Master of science (Computer science)', '2023', 82.00, '', 1, '2023-12-19 04:53:02', 0, NULL, 0, NULL, 1),
(20205, 15766, '3', 'Madha Arts and science college ', '', 'Bachelor of science (Computer science)', '2023', 72.80, '', 1, '2023-12-19 04:54:06', 0, NULL, 0, NULL, 1),
(20206, 15768, '3', 'Alagappa University ', '', 'B.Sc(computer science)', '2023', 65.00, '', 1, '2023-12-19 04:54:30', 1, '2023-12-19 04:54:52', 0, NULL, 1),
(20207, 15768, '1', 'Alangara Matha Higher secondary school ', '', '', '2017', 63.00, '', 1, '2023-12-19 04:55:58', 1, '2023-12-19 04:56:58', 0, NULL, 1),
(20208, 15768, '2', 'Alangara Matha Higher secondary school ', '', '', '2018', 64.00, '', 1, '2023-12-19 04:56:33', 0, NULL, 0, NULL, 1),
(20209, 15767, '1', 'Andhrapradesh state board', '', '', '2016', 97.00, '', 1, '2023-12-19 05:02:39', 1, '2023-12-19 05:03:10', 0, NULL, 1),
(20210, 15767, '2', 'Tamilnadu state board', '', '', '2019', 78.00, '', 1, '2023-12-19 05:03:32', 0, NULL, 0, NULL, 1),
(20211, 15767, '3', 'M. O. p vaishnav college for women, Madras University', '', 'BA Sociology', '2022', 79.00, '', 1, '2023-12-19 05:04:40', 0, NULL, 0, NULL, 1),
(20212, 15767, '4', 'Panimalar Engineering college ', '', 'MBA', '2024', 85.00, '', 1, '2023-12-19 05:05:20', 0, NULL, 0, NULL, 1),
(20213, 15769, '3', 'Madras University ', '', 'B.com c.s', '2017', 62.30, '', 1, '2023-12-19 05:10:01', 0, NULL, 0, NULL, 1),
(20214, 15770, '1', 'State board', '', '', '2016', 84.00, '', 1, '2023-12-19 05:17:57', 0, NULL, 0, NULL, 1),
(20215, 15770, '2', 'State board', '', '', '2018', 71.00, '', 1, '2023-12-19 05:18:14', 0, NULL, 0, NULL, 1),
(20216, 15772, '4', 'Bharadhidasan University, Trichy', '', 'MBA', '2023', 78.00, '', 1, '2023-12-19 05:18:42', 0, NULL, 0, NULL, 1),
(20217, 15770, '3', 'Madras', '', 'B.sc. Mathematics', '2021', 70.00, '', 1, '2023-12-19 05:18:42', 0, NULL, 0, NULL, 1),
(20218, 15771, '3', 'A M Jain college', '', 'B. Com', '2022', 70.00, '', 1, '2023-12-19 05:20:04', 0, NULL, 0, NULL, 1),
(20219, 15774, '1', 'Board', '', '', '2023', 88.40, '', 1, '2023-12-19 05:33:12', 0, NULL, 0, NULL, 1),
(20220, 15774, '2', 'Board', '', '', '2019', 60.66, '', 1, '2023-12-19 05:34:19', 0, NULL, 0, NULL, 1),
(20221, 15774, '3', 'Sathyabama institute of science and technology ', '', 'Bachelor of technology ', '2023', 83.00, '', 1, '2023-12-19 05:34:53', 0, NULL, 0, NULL, 1),
(20222, 15775, '1', 'state board', '', '', '2014', 95.00, '', 1, '2023-12-19 05:48:21', 0, NULL, 0, NULL, 1),
(20223, 15775, '2', 'state board', '', '', '2016', 87.00, '', 1, '2023-12-19 05:48:45', 0, NULL, 0, NULL, 1),
(20224, 15775, '3', 'university of madras', '', 'bsc', '2019', 71.00, '', 1, '2023-12-19 05:49:47', 0, NULL, 0, NULL, 1),
(20225, 15775, '4', 'university of madras', '', 'msc', '2021', 81.00, '', 1, '2023-12-19 05:50:16', 0, NULL, 0, NULL, 1),
(20226, 15777, '1', 'State Board', '', '', '2013', 88.80, '', 1, '2023-12-19 05:57:44', 0, NULL, 0, NULL, 1),
(20227, 15777, '2', 'State Board', '', '', '2015', 64.16, '', 1, '2023-12-19 05:58:19', 0, NULL, 0, NULL, 1),
(20228, 15777, '3', 'Bharathidasan University ', '', 'BCA', '2018', 61.00, '', 1, '2023-12-19 05:58:43', 0, NULL, 0, NULL, 1),
(20229, 15779, '2', 'Banglore ', '', '', '2018', 68.00, '', 1, '2023-12-19 06:01:33', 0, NULL, 0, NULL, 1),
(20230, 15779, '3', 'Bangalore University ', '', 'B com', '2021', 68.00, '', 1, '2023-12-19 06:02:47', 0, NULL, 0, NULL, 1),
(20231, 15778, '3', 'krupanidhi college ', '', ' b com ', '2017', 75.00, '', 1, '2023-12-19 06:04:45', 0, NULL, 0, NULL, 1),
(20232, 15781, '3', 'Anna university', '', 'Bachelor of technology', '2023', 82.00, '', 1, '2023-12-19 06:06:14', 0, NULL, 0, NULL, 1),
(20233, 15781, '2', 'State board', '', '', '2019', 73.00, '', 1, '2023-12-19 06:06:58', 0, NULL, 0, NULL, 1),
(20234, 15781, '1', 'State board', '', '', '2017', 94.00, '', 1, '2023-12-19 06:07:18', 0, NULL, 0, NULL, 1),
(20235, 15780, '3', 'University ', '', 'B.sc(phy)', '2022', 80.00, '', 1, '2023-12-19 06:11:03', 0, NULL, 0, NULL, 1),
(20236, 15782, '3', 'Anna University', '', 'Bachelor of engineering in computer science and en', '2023', 85.00, '', 1, '2023-12-19 06:23:19', 0, NULL, 0, NULL, 1),
(20237, 15782, '2', 'State board', '', '', '2019', 85.00, '', 1, '2023-12-19 06:24:38', 0, NULL, 0, NULL, 1),
(20238, 15782, '1', 'State board', '', '', '2017', 95.00, '', 1, '2023-12-19 06:31:17', 0, NULL, 0, NULL, 1),
(20239, 15776, '3', 'University of Madras ', '', 'Bcom general', '2023', 88.00, '', 1, '2023-12-19 06:46:05', 0, NULL, 0, NULL, 1),
(20240, 15773, '5', 'FCI', '', 'Hotel management ', '2014', 75.00, '', 1, '2023-12-19 06:52:11', 0, NULL, 0, NULL, 1),
(20241, 15783, '1', 'Tamilnadu ', '', '', '2022', 77.00, '', 1, '2023-12-19 06:57:42', 0, NULL, 0, NULL, 1),
(20242, 15784, '1', 'Tamilnadu ', '', '', '2022', 51.00, '', 1, '2023-12-19 07:01:13', 0, NULL, 0, NULL, 1),
(20243, 15787, '3', 'Thiruvalluvar University', '', 'B. Sc', '2023', 79.00, '', 1, '2023-12-19 07:02:32', 0, NULL, 0, NULL, 1),
(20244, 15785, '3', 'Sacred Heart (Autonomous) College', '', 'BCA', '2023', 76.40, '', 1, '2023-12-19 07:02:59', 0, NULL, 0, NULL, 1),
(20245, 15788, '3', 'Madras university', '', '', '2023', 80.00, '', 1, '2023-12-19 07:10:42', 0, NULL, 0, NULL, 1),
(20246, 15789, '3', 'Thiruvalluvar University ', '', 'Bca', '2023', 80.00, '', 1, '2023-12-19 07:14:08', 0, NULL, 0, NULL, 1),
(20247, 15790, '4', 'Kingston Engineering College ', '', 'MBA', '2023', 9.20, '', 1, '2023-12-19 07:22:28', 0, NULL, 0, NULL, 1),
(20248, 15790, '3', 'DKMC for women', '', 'Bsc', '2020', 85.00, '', 1, '2023-12-19 07:23:05', 0, NULL, 0, NULL, 1),
(20249, 15786, '3', 'Kamarajar University', '', 'B.Sc (CS)', '2023', 85.00, '', 1, '2023-12-19 07:24:12', 0, NULL, 0, NULL, 1),
(20250, 15790, '2', 'Tamil Nadu State Board of Education ', '', '', '2017', 75.00, '', 1, '2023-12-19 07:24:26', 0, NULL, 0, NULL, 1),
(20251, 15790, '1', 'Tamil Nadu state Board of Education ', '', '', '2015', 94.00, '', 1, '2023-12-19 07:25:20', 0, NULL, 0, NULL, 1),
(20252, 15791, '3', 'Bharathiar university', '', 'Bachelor of commerce with computer application', '2012', 58.00, '', 1, '2023-12-19 09:33:12', 0, NULL, 0, NULL, 1),
(20253, 15792, '4', 'Anna University ', '', 'MBA', '2021', 72.00, '', 1, '2023-12-19 09:43:14', 0, NULL, 0, NULL, 1),
(20254, 15793, '4', 'Anna University ', '', 'MBA', '2021', 7.14, '', 1, '2023-12-19 09:46:25', 0, NULL, 0, NULL, 1),
(20255, 15794, '3', 'Bharathiyar university ', '', 'Bsc', '2019', 55.00, '', 1, '2023-12-19 10:24:08', 0, NULL, 0, NULL, 1),
(20256, 15796, '3', 'Pachaiyappas college', '', 'B.com', '2023', 72.00, '', 1, '2023-12-19 11:54:11', 0, NULL, 0, NULL, 1),
(20257, 15797, '4', 'anna university', '', 'mtech', '2021', 80.00, '', 1, '2023-12-19 12:04:05', 0, NULL, 0, NULL, 1),
(20258, 15798, '3', 'Anna university', '', 'BE', '2023', 7.50, '', 1, '2023-12-20 04:15:15', 1, '2023-12-20 04:16:25', 0, NULL, 0),
(20259, 15798, '3', 'Anna university ', '', 'BE', '2023', 7.50, '', 1, '2023-12-20 04:17:10', 0, NULL, 0, NULL, 1),
(20260, 15799, '4', 'Anna University ', '', 'M. Sc', '2021', 78.00, '', 1, '2023-12-20 04:30:30', 0, NULL, 0, NULL, 1),
(20261, 15799, '3', 'Anna University ', '', 'B. Sc', '2018', 60.00, '', 1, '2023-12-20 04:31:23', 0, NULL, 0, NULL, 1),
(20262, 15802, '4', 'Panimalar engineering college ', '', 'BE', '2023', 8.60, '', 1, '2023-12-20 05:02:13', 0, NULL, 0, NULL, 1),
(20263, 15800, '4', 'University of Madras', '', 'M. Sc. Mathematics', '2023', 69.00, '', 1, '2023-12-20 05:04:58', 0, NULL, 0, NULL, 1),
(20264, 15801, '3', 'Manonmaniyam sundarnar university ', '', 'B com', '2021', 70.00, '', 1, '2023-12-20 05:05:40', 0, NULL, 0, NULL, 1),
(20265, 15800, '3', 'University of madras', '', 'B. Sc. Mathematics', '2021', 79.00, '', 1, '2023-12-20 05:06:04', 0, NULL, 0, NULL, 1),
(20266, 15800, '2', 'State Board of tamilnadu', '', '', '2018', 63.00, '', 1, '2023-12-20 05:06:56', 0, NULL, 0, NULL, 1),
(20267, 15800, '1', 'State Board', '', '', '2016', 85.00, '', 1, '2023-12-20 05:07:13', 0, NULL, 0, NULL, 1),
(20268, 15804, '4', 'Alagappa University ', '', 'M.Sc (Physics)', '2023', 65.00, '', 1, '2023-12-20 05:23:57', 0, NULL, 0, NULL, 1),
(20269, 15804, '3', 'Alagappa University ', '', 'B.Sc', '2021', 81.00, '', 1, '2023-12-20 05:25:01', 0, NULL, 0, NULL, 1),
(20270, 15804, '2', 'Tamil Nadu State board ', '', '', '2018', 63.00, '', 1, '2023-12-20 05:25:36', 0, NULL, 0, NULL, 1),
(20271, 15803, '1', 'State Board ', '', 'B.E', '2015', 65.00, '', 1, '2023-12-20 05:32:10', 0, NULL, 0, NULL, 1),
(20272, 15803, '2', 'State Board ', '', '', '2017', 69.00, '', 1, '2023-12-20 05:32:35', 0, NULL, 0, NULL, 1),
(20273, 15805, '3', 'srm university kattankulathur', '', 'b.com infomation system management', '2024', 7.94, '', 1, '2023-12-20 05:32:37', 0, NULL, 0, NULL, 1),
(20274, 15803, '3', 'Anna University ', '', 'B.E', '2021', 72.00, '', 1, '2023-12-20 05:33:01', 0, NULL, 0, NULL, 1),
(20275, 15810, '3', 'Anna university ', '', 'B.Tech ', '2023', 82.40, '', 1, '2023-12-20 05:35:49', 0, NULL, 0, NULL, 1),
(20276, 15807, '3', 'Sethu institute of technology ', '', 'BE', '2020', 6.90, '', 1, '2023-12-20 05:36:05', 0, NULL, 0, NULL, 1),
(20277, 15810, '1', 'Tamil nadu state board ', '', '', '2017', 81.00, '', 1, '2023-12-20 05:36:39', 0, NULL, 0, NULL, 1),
(20278, 15810, '2', 'Tamil nadu state board ', '', '', '2019', 63.00, '', 1, '2023-12-20 05:37:04', 0, NULL, 0, NULL, 1),
(20279, 15808, '4', 'Madras university ', '', 'MBA', '2023', 80.00, '', 1, '2023-12-20 05:37:05', 0, NULL, 0, NULL, 1),
(20280, 15808, '3', 'Madras university ', '', 'B.com', '2019', 60.00, '', 1, '2023-12-20 05:37:36', 0, NULL, 0, NULL, 1),
(20281, 15808, '1', 'State board ', '', '', '2016', 70.00, '', 1, '2023-12-20 05:38:12', 0, NULL, 0, NULL, 1),
(20282, 15811, '3', 'Annamalai university', '', 'B. Sc computer science', '2022', 6.94, '', 1, '2023-12-20 05:39:15', 0, NULL, 0, NULL, 1),
(20283, 15808, '2', 'State board ', '', '', '2014', 75.00, '', 1, '2023-12-20 05:39:16', 0, NULL, 0, NULL, 1),
(20284, 15812, '3', 'madras university', '', 'bba', '2021', 69.00, '', 1, '2023-12-20 05:46:34', 0, NULL, 0, NULL, 1),
(20285, 15809, '3', 'Anna university ', '', 'B.Tech ', '2023', 84.40, '', 1, '2023-12-20 05:50:08', 0, NULL, 0, NULL, 1),
(20286, 15809, '1', 'Tamil nadu state board ', '', '', '2017', 90.20, '', 1, '2023-12-20 05:50:32', 0, NULL, 0, NULL, 1),
(20287, 15809, '2', 'Tamil nadu state board ', '', '', '2019', 71.33, '', 1, '2023-12-20 05:50:49', 0, NULL, 0, NULL, 1),
(20288, 15815, '3', 'Anna University ', '', 'BE', '2014', 86.00, '', 1, '2023-12-20 06:02:33', 0, NULL, 0, NULL, 1),
(20289, 15806, '4', 'panimalar engineering college', '', 'mba', '2023', 84.00, '', 1, '2023-12-20 06:03:57', 0, NULL, 0, NULL, 1),
(20290, 15817, '3', 'Anna university', '', 'B. Tech IT', '2023', 78.00, '', 1, '2023-12-20 06:20:10', 0, NULL, 0, NULL, 1),
(20291, 15818, '3', 'Anna University ', '', 'B.Tech IT', '2023', 84.00, '', 1, '2023-12-20 06:20:13', 0, NULL, 0, NULL, 1),
(20292, 15818, '2', 'State board ', '', '', '2019', 80.83, '', 1, '2023-12-20 06:21:14', 0, NULL, 0, NULL, 1),
(20293, 15817, '2', 'State', '', '', '2019', 76.14, '', 1, '2023-12-20 06:21:15', 0, NULL, 0, NULL, 1),
(20294, 15817, '1', 'State', '', '', '2017', 96.40, '', 1, '2023-12-20 06:21:31', 0, NULL, 0, NULL, 1),
(20295, 15818, '1', 'State board ', '', '', '2017', 92.80, '', 1, '2023-12-20 06:21:41', 0, NULL, 0, NULL, 1),
(20296, 15813, '3', 'jaya arts and science college', '', 'b.com', '2021', 75.00, '', 1, '2023-12-20 06:22:45', 0, NULL, 0, NULL, 1),
(20297, 15816, '3', 'Medras', '', 'B.com general ', '2023', 70.00, '', 1, '2023-12-20 06:33:03', 0, NULL, 0, NULL, 1),
(20298, 15819, '3', 'Madras University ', '', 'Bsc', '2022', 77.00, '', 1, '2023-12-20 06:48:25', 0, NULL, 0, NULL, 1),
(20299, 15820, '5', 'Anna University ', '', 'Diploma mechatronics engineering ', '2021', 85.00, '', 1, '2023-12-20 06:54:57', 0, NULL, 0, NULL, 1),
(20300, 15821, '4', 'Jaya college of arts and science ', '', 'MBA ', '2022', 82.00, '', 1, '2023-12-20 06:55:27', 0, NULL, 0, NULL, 1),
(20301, 15821, '4', 'Jaya college of arts and science ', '', 'MBA ', '2022', 82.00, '', 1, '2023-12-20 06:55:27', 0, NULL, 0, NULL, 1),
(20302, 15822, '3', 'Jaya college of Arts and science ', '', 'B.com', '2019', 52.00, '', 1, '2023-12-20 07:06:33', 0, NULL, 0, NULL, 1),
(20303, 15822, '4', 'Jaya college of arts and science ', '', 'MBA ', '2022', 82.00, '', 1, '2023-12-20 07:06:56', 0, NULL, 0, NULL, 1),
(20304, 15814, '3', 'Bharadhidasan', '', ' University ', '2021', 79.00, '', 1, '2023-12-20 07:08:18', 0, NULL, 0, NULL, 1),
(20305, 15823, '4', 'University of Madras ', '', 'Master\'s ', '2023', 76.00, '', 1, '2023-12-20 08:04:02', 0, NULL, 0, NULL, 1),
(20306, 15824, '4', 'Anna University ', '', 'MCA', '2018', 78.00, '', 1, '2023-12-20 08:26:56', 0, NULL, 0, NULL, 1),
(20307, 15824, '3', 'Bharathidasan university', '', 'BCA', '2016', 70.00, '', 1, '2023-12-20 08:27:59', 0, NULL, 0, NULL, 1),
(20308, 15824, '2', 'State board', '', '', '2013', 72.00, '', 1, '2023-12-20 08:28:21', 0, NULL, 0, NULL, 1),
(20309, 15824, '1', 'State board', '', '', '2011', 90.00, '', 1, '2023-12-20 08:28:54', 0, NULL, 0, NULL, 1),
(20310, 15825, '3', 'Anna University ', '', '', '2019', 68.00, '', 1, '2023-12-20 09:00:09', 0, NULL, 0, NULL, 1),
(20311, 15826, '3', 'Anna university ', '', 'BE', '2019', 70.00, '', 1, '2023-12-20 09:04:14', 0, NULL, 0, NULL, 1),
(20312, 15827, '3', 'srm university', '', 'bba', '2024', 7.57, '', 1, '2023-12-20 09:10:08', 0, NULL, 0, NULL, 1),
(20313, 15827, '2', 'vels vidyashram cbse school', '', '', '2021', 78.00, '', 1, '2023-12-20 09:10:38', 0, NULL, 0, NULL, 1),
(20314, 15828, '4', 'SRM UNIVERSITY ', '', '', '2020', 7.40, '', 1, '2023-12-20 09:45:13', 0, NULL, 0, NULL, 1),
(20315, 15830, '5', 'Periyar centenary polytechnic college ', '', 'Diploma in mechanical engineering ', '2020', 79.54, '', 1, '2023-12-20 02:05:49', 0, NULL, 0, NULL, 1),
(20316, 15832, '1', 'Tamil Nadu Board', '', '', '2018', 77.00, '', 1, '2023-12-21 03:48:06', 0, NULL, 0, NULL, 1),
(20317, 15832, '2', 'Tamil Nadu Board', '', '', '2020', 73.00, '', 1, '2023-12-21 03:48:45', 0, NULL, 0, NULL, 1),
(20318, 15832, '3', 'Madras University', '', 'B. Com Marketing Management', '2023', 81.00, '', 1, '2023-12-21 03:49:12', 0, NULL, 0, NULL, 1),
(20319, 15835, '3', 'University', '', 'B.Tech/IT', '2023', 8.05, '', 1, '2023-12-21 04:26:54', 0, NULL, 0, NULL, 1),
(20320, 15836, '3', 'Meenakshi Sundararajan Engineering College ', '', 'Bachelor of Technology', '2023', 8.36, '', 1, '2023-12-21 04:28:34', 0, NULL, 0, NULL, 1),
(20321, 15833, '3', 'shanmuganathan engineering college', '', 'Bachelor of computer science and engineering', '2023', 88.50, '', 1, '2023-12-21 04:29:54', 0, NULL, 0, NULL, 1),
(20322, 15834, '3', 'Periyar University ', '', 'Bsc Computer Science ', '2023', 76.00, '', 1, '2023-12-21 04:31:46', 0, NULL, 0, NULL, 1),
(20323, 15834, '1', 'State', '', '', '2023', 69.00, '', 1, '2023-12-21 04:32:24', 0, NULL, 0, NULL, 1),
(20324, 15833, '1', 'shri vidhyaa giri matriculation higher secondary school', '', '', '2017', 92.60, '', 1, '2023-12-21 04:32:43', 1, '2023-12-21 04:33:03', 0, NULL, 1),
(20325, 15833, '2', 'shri vidhyaa giri matriculation higher secondary school', '', '', '2019', 75.67, '', 1, '2023-12-21 04:34:19', 0, NULL, 0, NULL, 1),
(20326, 15837, '4', 'Madras University ', '', 'MCA', '2024', 85.00, '', 1, '2023-12-21 04:41:56', 0, NULL, 0, NULL, 1),
(20327, 15843, '3', 'University ', '', 'B.com Ca', '2023', 79.00, '', 1, '2023-12-21 04:43:25', 0, NULL, 0, NULL, 1),
(20328, 15843, '1', 'State board', '', '', '2017', 60.00, '', 1, '2023-12-21 04:47:15', 1, '2023-12-21 04:47:50', 0, NULL, 0),
(20329, 15841, '3', 'Anna University', '', 'B. TECH - Food Technology', '2020', 7.50, '', 1, '2023-12-21 04:47:28', 0, NULL, 0, NULL, 1),
(20330, 15843, '2', 'State Board', '', '', '2019', 71.00, '', 1, '2023-12-21 04:47:35', 1, '2023-12-21 04:47:50', 0, NULL, 0),
(20331, 15837, '3', 'Madras University ', '', 'Bsc physics ', '2022', 65.00, '', 1, '2023-12-21 04:48:18', 0, NULL, 0, NULL, 1),
(20332, 15839, '3', 'Bharathidasan University', '', 'Bsc physics ', '2023', 70.00, '', 1, '2023-12-21 04:49:07', 0, NULL, 0, NULL, 1),
(20333, 15838, '3', 'Madras', '', 'B.com general', '2023', 70.00, '', 1, '2023-12-21 04:49:52', 0, NULL, 0, NULL, 1),
(20334, 15840, '3', 'PRIST University ', '', 'Bsc.cs', '2023', 7.20, '', 1, '2023-12-21 04:50:50', 0, NULL, 0, NULL, 1),
(20335, 15842, '3', 'Madurai kamarajar University ', '', 'Bacholer of Commerce ', '2024', 7.10, '', 1, '2023-12-21 04:51:01', 0, NULL, 0, NULL, 1),
(20336, 15845, '3', 'Muthayammal college of arts and science ', '', 'B.sc computer science ', '2023', 80.00, '', 1, '2023-12-21 05:21:35', 0, NULL, 0, NULL, 1),
(20337, 15845, '2', 'Bharathi matric higher secondary school ', '', '', '2020', 60.60, '', 1, '2023-12-21 05:22:19', 0, NULL, 0, NULL, 1),
(20338, 15845, '1', 'Bharathi matric higher secondary school ', '', '', '2018', 66.60, '', 1, '2023-12-21 05:22:38', 0, NULL, 0, NULL, 1),
(20339, 15847, '3', 'Prist University ', '', 'B.Sc Computer Science ', '2022', 85.00, '', 1, '2023-12-21 05:23:49', 0, NULL, 0, NULL, 1),
(20340, 15847, '2', 'State Board ', '', '', '2019', 50.00, '', 1, '2023-12-21 05:24:32', 0, NULL, 0, NULL, 1),
(20341, 15847, '1', 'State Board ', '', '', '2017', 80.00, '', 1, '2023-12-21 05:24:55', 0, NULL, 0, NULL, 1),
(20342, 15850, '3', 'Madras university', '', 'Bsc computer science', '2023', 78.00, '', 1, '2023-12-21 05:26:28', 0, NULL, 0, NULL, 1),
(20343, 15831, '3', 'University of Madras', '', 'BBA', '2022', 80.00, '', 1, '2023-12-21 05:27:58', 0, NULL, 0, NULL, 1),
(20344, 15829, '3', 'JNTU ANANTAPUR ', '', 'B.tech', '2014', 59.50, '', 1, '2023-12-21 05:28:17', 0, NULL, 0, NULL, 1),
(20345, 15848, '5', 'Anna University ', '', 'Diploma Mechanical Engineering', '2017', 70.00, '', 1, '2023-12-21 05:28:48', 0, NULL, 0, NULL, 1),
(20346, 15852, '3', 'Mother Theresa University, kodaikanal', '', 'B.A.English Literature ', '2023', 66.00, '', 1, '2023-12-21 05:28:50', 0, NULL, 0, NULL, 1),
(20347, 15849, '3', 'university of madras', '', 'bachelor of computer science', '2023', 75.00, '', 1, '2023-12-21 05:29:43', 0, NULL, 0, NULL, 1),
(20348, 15795, '3', 'university', '', 'b.com', '2020', 6.33, '', 1, '2023-12-21 05:30:17', 0, NULL, 0, NULL, 1),
(20349, 15846, '3', 'the new college', '', 'b a', '2022', 82.00, '', 1, '2023-12-21 05:31:38', 0, NULL, 0, NULL, 1),
(20350, 15844, '3', 'anna university', '', 'be', '2019', 75.00, '', 1, '2023-12-21 05:37:49', 0, NULL, 0, NULL, 1),
(20351, 15844, '2', 'state board', '', '', '2015', 70.00, '', 1, '2023-12-21 05:38:23', 1, '2023-12-21 05:39:17', 0, NULL, 1),
(20352, 15844, '1', 'state board', '', '', '2013', 90.00, '', 1, '2023-12-21 05:40:01', 0, NULL, 0, NULL, 1),
(20353, 15851, '3', 'Alagappa University ', '', 'B.Sc', '2022', 80.00, '', 1, '2023-12-21 05:40:04', 0, NULL, 0, NULL, 1),
(20354, 15853, '3', 'Anna University', '', 'BE', '2019', 67.00, '', 1, '2023-12-21 06:15:58', 0, NULL, 0, NULL, 1),
(20355, 15853, '5', 'Dote', '', 'Diploma', '2016', 95.00, '', 1, '2023-12-21 06:16:32', 0, NULL, 0, NULL, 1),
(20356, 15853, '1', 'Stateboard', '', '', '2013', 80.00, '', 1, '2023-12-21 06:17:11', 0, NULL, 0, NULL, 1),
(20357, 15854, '3', 'Anna University ', '', 'B.E', '2022', 83.50, '', 1, '2023-12-21 06:22:16', 0, NULL, 0, NULL, 1),
(20358, 15854, '5', 'Dote', '', 'Mechanical engineering ', '2019', 74.00, '', 1, '2023-12-21 06:23:07', 0, NULL, 0, NULL, 1),
(20359, 15854, '1', 'State board ', '', '', '2015', 83.00, '', 1, '2023-12-21 06:24:08', 0, NULL, 0, NULL, 1),
(20360, 15854, '2', 'State board ', '', '', '2017', 61.00, '', 1, '2023-12-21 06:24:40', 0, NULL, 0, NULL, 1),
(20361, 15855, '3', 'PSNA college of engineering and technology ', '', 'Biomedical engineering ', '2020', 65.00, '', 1, '2023-12-21 06:28:20', 0, NULL, 0, NULL, 1),
(20362, 15856, '3', 'St.Joseph\'s College of Arts and Science,  Cuddalore. ', '', 'BCA', '2022', 84.00, '', 1, '2023-12-21 06:53:07', 0, NULL, 0, NULL, 1),
(20363, 15857, '3', 'Hindustan University of Arts & Science', '', 'B. sC. computer Science', '2021', 78.00, '', 1, '2023-12-21 06:56:24', 0, NULL, 0, NULL, 1),
(20364, 15857, '1', 'David Matriculation Higher Secondary School', '', '', '2016', 83.00, '', 1, '2023-12-21 06:57:09', 0, NULL, 0, NULL, 1),
(20365, 15857, '2', 'David Matriculation Higher Secondary School', '', '', '2018', 60.00, '', 1, '2023-12-21 06:57:54', 0, NULL, 0, NULL, 1),
(20366, 15858, '3', 'Anna University ', '', 'B.E.', '2023', 82.30, '', 1, '2023-12-21 08:05:57', 0, NULL, 0, NULL, 1),
(20367, 15860, '3', 'University of Madras ', '', 'Social work BSW', '2020', 70.00, '', 1, '2023-12-21 10:30:11', 0, NULL, 0, NULL, 1),
(20368, 15860, '4', 'University of Madras ', '', 'Masters in Human resources management ', '2022', 82.00, '', 1, '2023-12-21 10:30:40', 0, NULL, 0, NULL, 1),
(20369, 15863, '3', 'Anna University ', '', 'BE-ECE', '2016', 6.15, '', 1, '2023-12-22 03:44:16', 0, NULL, 0, NULL, 1),
(20370, 15863, '1', 'Navarasam matriculation higher secondary school ', '', '', '2010', 55.00, '', 1, '2023-12-22 03:45:34', 0, NULL, 0, NULL, 1),
(20371, 15863, '5', 'Al-ameen polytechnic college ', '', 'D-ECE', '2013', 73.00, '', 1, '2023-12-22 03:46:48', 0, NULL, 0, NULL, 1),
(20372, 15865, '3', 'SNS College of technology ', '', 'BE Computer Science ', '2021', 73.00, '', 1, '2023-12-22 04:08:22', 0, NULL, 0, NULL, 1),
(20373, 15862, '4', 'Bharathidhasan University ', '', 'Bsc Physics ', '2022', 83.00, '', 1, '2023-12-22 04:09:02', 1, '2023-12-22 04:50:15', 0, NULL, 0),
(20374, 15862, '4', 'Bharathidhasan University ', '', 'Bsc Physics ', '2022', 83.00, '', 1, '2023-12-22 04:10:09', 0, NULL, 0, NULL, 1),
(20375, 15866, '4', 'Tagore engineering college ', '', 'MBA ', '2023', 7.96, '', 1, '2023-12-22 04:10:22', 0, NULL, 0, NULL, 1),
(20376, 15866, '3', 'Sri Sankara arts and science college ', '', 'B.com', '2021', 7.34, '', 1, '2023-12-22 04:11:41', 0, NULL, 0, NULL, 1),
(20377, 15866, '2', 'Little flower Hr sec school ', '', '', '2018', 6.75, '', 1, '2023-12-22 04:12:26', 0, NULL, 0, NULL, 1),
(20378, 15862, '4', 'Bharathidhasan University ', '', 'Bsc Physics ', '2022', 80.00, '', 1, '2023-12-22 04:14:49', 0, NULL, 0, NULL, 1),
(20379, 15868, '3', 'Anna University ', '', 'B. E ECE ', '2023', 83.00, '', 1, '2023-12-22 04:33:53', 0, NULL, 0, NULL, 1),
(20380, 15868, '2', 'State board ', '', '', '2019', 64.50, '', 1, '2023-12-22 04:34:23', 0, NULL, 0, NULL, 1),
(20381, 15868, '1', 'State board', '', '', '2017', 85.00, '', 1, '2023-12-22 04:34:41', 0, NULL, 0, NULL, 1),
(20382, 15869, '5', 'State Board', '', '', '2021', 79.11, '', 1, '2023-12-22 04:38:56', 0, NULL, 0, NULL, 1),
(20383, 15869, '2', 'State Board ', '', '', '2019', 58.00, '', 1, '2023-12-22 04:39:49', 0, NULL, 0, NULL, 1),
(20384, 15870, '3', 'Madurai Kamarajar university ', '', 'B.sc computer science', '2023', 70.00, '', 1, '2023-12-22 04:39:54', 0, NULL, 0, NULL, 1),
(20385, 15871, '3', 'University of Madras ', '', 'Bsc computer science ', '2022', 80.00, '', 1, '2023-12-22 04:40:05', 0, NULL, 0, NULL, 1),
(20386, 15869, '1', 'State Board ', '', '', '2017', 85.20, '', 1, '2023-12-22 04:40:19', 0, NULL, 0, NULL, 1),
(20387, 15867, '4', 'Thiruvalluvar University ', '', 'MBA Hr', '2022', 69.00, '', 1, '2023-12-22 04:51:49', 0, NULL, 0, NULL, 1),
(20388, 15867, '4', 'Thiruvalluvar University ', '', 'MBA', '2022', 69.00, '', 1, '2023-12-22 04:52:17', 0, NULL, 0, NULL, 1),
(20389, 15864, '3', 'Bharathidhasan University ', '', 'B.com corporate secartyship', '2016', 75.00, '', 1, '2023-12-22 05:25:11', 0, NULL, 0, NULL, 1),
(20390, 15872, '3', 'Anna University', '', 'B. E - CSE', '2023', 78.60, '', 1, '2023-12-22 05:27:10', 0, NULL, 0, NULL, 1),
(20391, 15872, '2', 'State Board', '', '', '2019', 56.00, '', 1, '2023-12-22 05:27:49', 0, NULL, 0, NULL, 1),
(20392, 15872, '1', 'State Board', '', '', '2017', 75.60, '', 1, '2023-12-22 05:29:51', 0, NULL, 0, NULL, 1),
(20393, 15873, '3', 'Tiruvalluvar university', '', 'B.sc mathematics', '2021', 80.00, '', 1, '2023-12-22 05:35:20', 0, NULL, 0, NULL, 1),
(20394, 15874, '4', 'Anna University ', '', 'MCA ', '2022', 8.30, '', 1, '2023-12-22 06:20:08', 0, NULL, 0, NULL, 1),
(20395, 15875, '3', 'Stella Maris College ', '', 'B com General ', '2023', 71.00, '', 1, '2023-12-22 06:39:50', 0, NULL, 0, NULL, 1),
(20396, 15876, '3', 'Anna University ', '', 'B.E CSE', '2023', 8.30, '', 1, '2023-12-22 06:48:11', 0, NULL, 0, NULL, 1),
(20397, 15876, '2', 'State Board ', '', '', '2019', 71.00, '', 1, '2023-12-22 06:49:51', 1, '2023-12-22 06:50:47', 0, NULL, 1),
(20398, 15876, '1', 'State-Board ', '', '', '2017', 90.00, '', 1, '2023-12-22 06:51:22', 0, NULL, 0, NULL, 1),
(20399, 15668, '5', 'Fighter wings Aviation college ', '', 'Diploma in airline and airport management ', '2022', 81.00, '', 1, '2023-12-22 06:58:50', 0, NULL, 0, NULL, 1),
(20400, 15878, '3', 'Anna University ', '', 'B.Tech', '2020', 62.00, '', 1, '2023-12-22 10:42:48', 0, NULL, 0, NULL, 1),
(20401, 15879, '1', 'Netru technical training foundation ', '', '', '2017', 65.00, '', 1, '2023-12-22 02:14:38', 0, NULL, 0, NULL, 1),
(20402, 15881, '3', 'Anna University', '', 'BE civil engineering', '2020', 6.45, '', 1, '2023-12-23 04:01:10', 0, NULL, 0, NULL, 1),
(20403, 15882, '3', 'Brathiyaar University ', '', 'BSC.computer Science', '2023', 80.00, '', 1, '2023-12-23 04:43:50', 0, NULL, 0, NULL, 1),
(20404, 15883, '3', 'Anna University ', '', 'B.E Computer science and Engineering ', '2023', 7.53, '', 1, '2023-12-23 04:44:28', 0, NULL, 0, NULL, 1),
(20405, 15885, '4', 'University of Madras ', '', 'MA Human resource Management ', '2023', 81.00, '', 1, '2023-12-23 04:45:08', 0, NULL, 0, NULL, 1),
(20406, 15886, '3', 'Coimbatore Institute of Technology ', '', 'BTech IT', '2023', 76.00, '', 1, '2023-12-23 04:45:09', 0, NULL, 0, NULL, 1),
(20407, 15885, '3', 'University of Madras ', '', 'B.com Information Systems Management ', '2021', 85.00, '', 1, '2023-12-23 04:45:42', 0, NULL, 0, NULL, 1),
(20408, 15880, '2', 'Chennai hr sec school ', '', '', '2018', 75.00, '', 1, '2023-12-23 04:46:03', 0, NULL, 0, NULL, 1),
(20409, 15880, '5', 'Smart skills ', '', 'No', '2019', 78.00, '', 1, '2023-12-23 04:46:47', 0, NULL, 0, NULL, 1),
(20410, 15884, '3', 'Anna University ', '', 'Engineering ', '2018', 65.00, '', 1, '2023-12-23 04:47:21', 0, NULL, 0, NULL, 1),
(20411, 15880, '1', 'Chennai hr sec school ', '', '', '2016', 70.00, '', 1, '2023-12-23 04:47:47', 0, NULL, 0, NULL, 1),
(20412, 15887, '4', 'Bharathidasan ', '', 'Ma', '2019', 70.00, '', 1, '2023-12-23 04:48:05', 0, NULL, 0, NULL, 1),
(20413, 15888, '4', 'Dr mgr University ', '', 'MBA HR ', '2023', 7.00, '', 1, '2023-12-23 04:57:16', 0, NULL, 0, NULL, 1),
(20414, 15889, '3', 'Anna University', '', 'BE ', '2024', 8.53, '', 1, '2023-12-23 05:04:37', 0, NULL, 0, NULL, 1),
(20415, 15890, '5', 'AKY POLYTECHNIC COLLEGE ', '', 'DIPLOMA ', '2021', 93.00, '', 1, '2023-12-23 05:16:59', 0, NULL, 0, NULL, 1),
(20416, 15891, '3', 'Anna University', '', 'B.E', '2021', 7.87, '', 1, '2023-12-23 05:41:49', 0, NULL, 0, NULL, 1),
(20417, 15892, '4', 'Anna University ', '', 'MBA', '2024', 71.30, '', 1, '2023-12-23 06:35:04', 0, NULL, 0, NULL, 1),
(20418, 15892, '3', 'Anna University ', '', 'BE', '2019', 96.40, '', 1, '2023-12-23 06:35:32', 0, NULL, 0, NULL, 1),
(20419, 15892, '2', 'State Board ', '', '', '2015', 91.60, '', 1, '2023-12-23 06:36:03', 0, NULL, 0, NULL, 1),
(20420, 15892, '1', 'State Board ', '', '', '2013', 96.40, '', 1, '2023-12-23 06:36:27', 0, NULL, 0, NULL, 1),
(20421, 15893, '3', 'Anna University ', '', 'B.E', '2020', 76.00, '', 1, '2023-12-23 07:13:28', 1, '2023-12-23 07:13:52', 0, NULL, 1),
(20422, 15896, '4', 'Anna University ', '', 'MBA', '2023', 6.30, '', 1, '2023-12-23 10:02:58', 0, NULL, 0, NULL, 1),
(20423, 15895, '4', 'Sathyabama university ', '', 'MBA', '2024', 73.50, '', 1, '2023-12-23 10:17:11', 0, NULL, 0, NULL, 1),
(20424, 15895, '3', 'Stella Maris College ', '', 'BSC', '2022', 80.63, '', 1, '2023-12-23 10:18:29', 0, NULL, 0, NULL, 1),
(20425, 15895, '2', 'State board ', '', '', '2019', 68.83, '', 1, '2023-12-23 10:18:55', 0, NULL, 0, NULL, 1),
(20426, 15895, '1', 'State Board ', '', '', '2017', 91.00, '', 1, '2023-12-23 10:19:10', 0, NULL, 0, NULL, 1),
(20427, 15897, '3', 'New prince shri Bhavani college of engineering and technology ', '', 'B.E', '2020', 70.00, '', 1, '2023-12-24 04:21:10', 0, NULL, 0, NULL, 1),
(20428, 15900, '3', 'Anna University ', '', 'B.E', '2022', 71.20, '', 1, '2023-12-24 04:30:32', 0, NULL, 0, NULL, 1),
(20429, 15902, '3', 'Annamalai University ', '', 'B.E Mechanical ', '2023', 89.00, '', 1, '2023-12-24 04:36:12', 0, NULL, 0, NULL, 1),
(20430, 15901, '3', 'P.S.R Engineering college', '', 'B.E', '2023', 65.50, '', 1, '2023-12-24 04:38:28', 0, NULL, 0, NULL, 1),
(20431, 15899, '3', 'Anna University ', '', 'B.E', '2023', 80.70, '', 1, '2023-12-24 04:38:58', 0, NULL, 0, NULL, 1),
(20432, 15898, '3', 'Madurai Kamaraj University ', '', 'Bsc computer science ', '2023', 69.00, '', 1, '2023-12-24 04:39:43', 0, NULL, 0, NULL, 1),
(20433, 15899, '2', 'MKVK Matric Hr Secondary school ', '', '', '2019', 77.00, '', 1, '2023-12-24 04:40:14', 0, NULL, 0, NULL, 1),
(20434, 15903, '3', 'bharathidasan university', '', 'B.com', '2022', 71.00, '', 1, '2023-12-24 04:40:23', 0, NULL, 0, NULL, 1),
(20435, 15898, '1', 'Nadar Hr secondary School ', '', '', '2023', 82.00, '', 1, '2023-12-24 04:40:37', 0, NULL, 0, NULL, 1),
(20436, 15899, '1', 'Spectrum Matric Hr Secondary school ', '', '', '2017', 95.00, '', 1, '2023-12-24 04:41:01', 0, NULL, 0, NULL, 1),
(20437, 15907, '3', 'Renganaygi varatharaj college of engineering ', '', 'B.E -Mechanical ', '2021', 70.00, '', 1, '2023-12-24 05:40:29', 0, NULL, 0, NULL, 1),
(20438, 15908, '3', 'Anna University ', '', 'B.E', '2023', 8.30, '', 1, '2023-12-24 05:40:33', 0, NULL, 0, NULL, 1),
(20439, 15905, '4', 'Bishop heber college ', '', 'MCA ', '2023', 7.80, '', 1, '2023-12-24 05:41:07', 0, NULL, 0, NULL, 1),
(20440, 15906, '3', 'Anna University ', '', 'B.E', '2023', 76.80, '', 1, '2023-12-24 05:42:49', 0, NULL, 0, NULL, 1),
(20441, 15909, '3', 'Madras University', '', 'B.com', '2010', 50.00, '', 1, '2023-12-24 05:55:24', 0, NULL, 0, NULL, 1),
(20442, 15904, '3', 'srm institution of science and technology', '', 'btech', '2022', 77.00, '', 1, '2023-12-24 06:26:04', 0, NULL, 0, NULL, 1),
(20443, 15910, '4', 'Pondicherry University ', '', 'MCA', '2023', 72.00, '', 1, '2023-12-24 08:15:04', 0, NULL, 0, NULL, 1),
(20444, 15911, '3', 'Anna University ', '', 'BE.CSE', '2023', 76.00, '', 1, '2023-12-24 09:50:56', 0, NULL, 0, NULL, 1),
(20445, 15912, '3', 'Anna University ', '', 'BE CSE', '2023', 8.60, '', 1, '2023-12-24 09:51:28', 0, NULL, 0, NULL, 1),
(20446, 15912, '2', 'State board ', '', '', '2019', 82.00, '', 1, '2023-12-24 09:52:16', 0, NULL, 0, NULL, 1),
(20447, 15911, '1', 'state board', '', '', '2019', 67.00, '', 1, '2023-12-24 09:52:30', 0, NULL, 0, NULL, 1),
(20448, 15912, '1', 'ICSE', '', '', '2017', 72.00, '', 1, '2023-12-24 09:52:39', 0, NULL, 0, NULL, 1),
(20449, 15911, '2', 'state board ', '', '', '2017', 85.00, '', 1, '2023-12-24 09:53:01', 0, NULL, 0, NULL, 1),
(20450, 15913, '4', 'Madras University ', '', 'MBA', '2023', 72.00, '', 1, '2023-12-25 04:33:32', 0, NULL, 0, NULL, 1),
(20451, 15913, '3', 'Thiruvalluvar University', '', 'B.com', '2021', 69.00, '', 1, '2023-12-25 04:34:09', 0, NULL, 0, NULL, 1),
(20452, 15913, '2', 'State', '', '', '2018', 65.00, '', 1, '2023-12-25 04:34:26', 0, NULL, 0, NULL, 1),
(20453, 15913, '1', 'State', '', '', '2016', 63.00, '', 1, '2023-12-25 04:34:53', 0, NULL, 0, NULL, 1),
(20454, 15914, '3', 'Bharathidasan University, Tiruchirapalli ', '', 'B.Sc Computer science ', '2023', 86.70, '', 1, '2023-12-25 05:12:48', 0, NULL, 0, NULL, 1),
(20455, 15916, '3', 'Bharathidasan university ', '', 'BCA', '2023', 83.00, '', 1, '2023-12-25 05:15:52', 0, NULL, 0, NULL, 1),
(20456, 15917, '4', 'University of Madras', '', 'MBA ', '2019', 52.00, '', 1, '2023-12-25 05:19:22', 0, NULL, 0, NULL, 1),
(20457, 15915, '3', 'Anna university ', '', 'B.Tech', '2023', 87.00, '', 1, '2023-12-25 05:42:12', 0, NULL, 0, NULL, 1),
(20458, 15918, '3', 'Menakshi academy of higher education and research ', '', '', '2022', 75.00, '', 1, '2023-12-25 06:08:23', 0, NULL, 0, NULL, 1),
(20459, 15921, '3', 'Prist', '', 'Bca', '2023', 90.00, '', 1, '2023-12-25 06:32:41', 0, NULL, 0, NULL, 1),
(20460, 15924, '4', 'srm university katankalathur', '', 'mba ', '2023', 78.90, '', 1, '2023-12-25 06:40:46', 0, NULL, 0, NULL, 1),
(20461, 15923, '3', 'Madras', '', 'B. Com', '2023', 78.00, '', 1, '2023-12-25 06:42:39', 0, NULL, 0, NULL, 1),
(20462, 15924, '4', 'srm University ', '', 'mba', '2023', 78.90, '', 1, '2023-12-25 06:43:46', 0, NULL, 0, NULL, 1),
(20463, 15925, '3', 'new college', '', 'bba', '2021', 72.00, '', 1, '2023-12-25 07:22:05', 0, NULL, 0, NULL, 1),
(20464, 15927, '4', 'Anna university ', '', 'BE', '2020', 65.00, '', 1, '2023-12-26 04:44:59', 0, NULL, 0, NULL, 1),
(20465, 15926, '3', 'SRM University ', '', 'B.COM ', '2023', 85.00, '', 1, '2023-12-26 05:07:42', 0, NULL, 0, NULL, 1),
(20466, 15929, '3', 'University ', '', 'B com ', '2023', 70.00, '', 1, '2023-12-26 05:08:57', 0, NULL, 0, NULL, 1),
(20467, 15928, '3', 'Manonmaniam Sundaranar University', '', '', '2023', 6.50, '', 1, '2023-12-26 05:10:17', 0, NULL, 0, NULL, 1),
(20468, 15930, '3', 'Anna University', '', 'BE-ECE', '2020', 79.70, '', 1, '2023-12-26 05:22:05', 0, NULL, 0, NULL, 1),
(20469, 15931, '3', 'Kamarajar university ', '', 'BBA', '2019', 54.00, '', 1, '2023-12-26 05:35:06', 0, NULL, 0, NULL, 1),
(20470, 15932, '3', 'Anna university', '', 'BE', '2022', 76.00, '', 1, '2023-12-26 05:46:16', 0, NULL, 0, NULL, 1),
(20471, 15933, '3', 'Madras university', '', 'B.com', '2023', 50.00, '', 1, '2023-12-26 05:53:30', 0, NULL, 0, NULL, 1),
(20472, 15935, '3', 'Vels University', '', 'BCA', '2023', 72.00, '', 1, '2023-12-26 05:57:16', 0, NULL, 0, NULL, 1),
(20473, 15936, '3', 'university of madras ', '', 'Arts & Science ', '2013', 58.00, '', 1, '2023-12-26 05:58:00', 0, NULL, 0, NULL, 1),
(20474, 15937, '3', 'Madras university', '', 'B. Com(accounting & finance) ', '2023', 71.00, '', 1, '2023-12-26 06:17:18', 0, NULL, 0, NULL, 1),
(20475, 15938, '4', 'M.O.P. Vaishnav college for women ', '', 'MBA', '2023', 70.00, '', 1, '2023-12-26 06:17:27', 0, NULL, 0, NULL, 1),
(20476, 0, '4', 'Sri Ramakrishna Institute of technology ', '', 'M.E', '2023', 80.00, '', 1, '2023-12-26 06:56:13', 1, '2023-12-27 06:17:59', 0, NULL, 0),
(20477, 15943, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2021', 72.00, '', 1, '2023-12-26 07:05:46', 0, NULL, 0, NULL, 1),
(20478, 15942, '3', 'Madras University', '', 'B com', '2023', 70.00, '', 1, '2023-12-26 07:12:17', 0, NULL, 0, NULL, 1),
(20479, 15945, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2021', 72.00, '', 1, '2023-12-26 07:12:26', 0, NULL, 0, NULL, 1),
(20480, 15934, '3', 'am jain college', '', 'bcom', '2021', 80.00, '', 1, '2023-12-26 07:12:55', 0, NULL, 0, NULL, 1),
(20481, 15941, '3', 'JNTU', '', 'BTECH', '2020', 60.00, '', 1, '2023-12-26 07:15:45', 0, NULL, 0, NULL, 1),
(20482, 15946, '3', 'Madras University', '', 'BBA', '2014', 74.00, '', 1, '2023-12-26 09:02:59', 0, NULL, 0, NULL, 1),
(20483, 15947, '1', 'Thiruvalluvar university', '', '', '2022', 7.30, '', 1, '2023-12-26 09:06:34', 0, NULL, 0, NULL, 1),
(20484, 15947, '2', 'Government Higher Secondry school', '', '', '2019', 60.00, '', 1, '2023-12-26 09:08:13', 0, NULL, 0, NULL, 1),
(20485, 15949, '4', 'Anna University ', '', 'MBA', '2023', 7.79, '', 1, '2023-12-26 09:56:35', 0, NULL, 0, NULL, 1),
(20486, 15949, '3', 'Periyar University ', '', 'Bsc physics ', '2020', 70.00, '', 1, '2023-12-26 09:57:19', 0, NULL, 0, NULL, 1),
(20487, 15949, '2', 'State board ', '', '', '2016', 70.00, '', 1, '2023-12-26 09:58:11', 0, NULL, 0, NULL, 1),
(20488, 15949, '1', 'State board ', '', '', '2014', 80.00, '', 1, '2023-12-26 09:58:40', 0, NULL, 0, NULL, 1),
(20489, 15950, '4', 'Anna University ', '', 'MBA', '2023', 74.70, '', 1, '2023-12-26 10:37:08', 0, NULL, 0, NULL, 1),
(20490, 15951, '3', 'tagore arts and science college', '', 'b.com', '2020', 59.00, '', 1, '2023-12-26 01:49:36', 0, NULL, 0, NULL, 1),
(20491, 15951, '4', 'pondicherry university', '', 'mba', '2023', 60.00, '', 1, '2023-12-26 01:50:23', 0, NULL, 0, NULL, 1),
(20492, 15952, '3', 'Kamaraj University ', '', 'BBA', '2021', 64.00, '', 1, '2023-12-26 04:34:31', 0, NULL, 0, NULL, 1),
(20493, 15952, '1', 'M.A.N.U.G.HR.SEC.SCHOOL', '', '', '2016', 81.00, '', 1, '2023-12-26 05:34:06', 0, NULL, 0, NULL, 1),
(20494, 15952, '2', 'M.A.N.U.G.HR.SEC.SCHOOL', '', '', '2018', 76.00, '', 1, '2023-12-26 05:35:19', 0, NULL, 0, NULL, 1),
(20495, 15953, '3', 'Anna University ', '', 'B.Tech', '2019', 80.00, '', 1, '2023-12-27 04:26:21', 0, NULL, 0, NULL, 1),
(20496, 15954, '3', 'Anna University', '', 'B.Tech Information technology', '2023', 80.00, '', 1, '2023-12-27 04:34:13', 0, NULL, 0, NULL, 1),
(20497, 15955, '3', 'THIRUVALLUVAR UNIVERSITY ', '', 'BACHELOR IN COMPUTER SCIENCE ', '2018', 65.00, '', 1, '2023-12-27 04:51:38', 0, NULL, 0, NULL, 1),
(20498, 15956, '3', 'Madras university', '', 'B. Com (CA) ', '2023', 70.00, '', 1, '2023-12-27 04:57:06', 0, NULL, 0, NULL, 1),
(20499, 15957, '3', 'M Kumarasamy college of engineering ', '', 'Bachelor of engineering', '2023', 76.00, '', 1, '2023-12-27 04:58:14', 0, NULL, 0, NULL, 1),
(20500, 15958, '3', 'Madras University ', '', 'B.com', '2023', 70.00, '', 1, '2023-12-27 05:08:02', 0, NULL, 0, NULL, 1),
(20501, 15959, '4', 'Bharathidasan University ', '', 'Master of Commerce ', '2022', 76.00, '', 1, '2023-12-27 05:13:31', 1, '2023-12-27 05:15:04', 0, NULL, 0),
(20502, 15959, '3', 'Bharathidasan University ', '', 'Bachelor of Commerce ', '2020', 68.00, '', 1, '2023-12-27 05:14:04', 0, NULL, 0, NULL, 1),
(20503, 15959, '2', 'State Board', '', '', '2017', 63.00, '', 1, '2023-12-27 05:14:32', 0, NULL, 0, NULL, 1),
(20504, 15959, '1', 'State Board ', '', '', '2015', 62.00, '', 1, '2023-12-27 05:14:52', 0, NULL, 0, NULL, 1),
(20505, 15959, '4', 'Bharathidasan University ', '', 'Master of Commerce ', '2022', 76.00, '', 1, '2023-12-27 05:15:51', 0, NULL, 0, NULL, 1),
(20506, 15961, '1', 'State Board ', '', '', '2016', 90.00, '', 1, '2023-12-27 05:19:15', 0, NULL, 0, NULL, 1),
(20507, 15961, '2', 'State Board ', '', '', '2018', 90.00, '', 1, '2023-12-27 05:19:37', 0, NULL, 0, NULL, 1),
(20508, 15961, '3', 'Madras Christian College ', '', 'BSC', '2021', 83.00, '', 1, '2023-12-27 05:20:04', 0, NULL, 0, NULL, 1),
(20509, 15961, '4', 'University of Madras ', '', 'MBA', '2023', 76.00, '', 1, '2023-12-27 05:20:25', 0, NULL, 0, NULL, 1),
(20510, 15960, '3', 'Madras university', '', 'Bcom', '2021', 65.00, '', 1, '2023-12-27 05:21:47', 0, NULL, 0, NULL, 1),
(20511, 15962, '3', 'Hemvati Nandan Bahuguna Garhwal University', '', 'bsc', '2022', 65.00, '', 1, '2023-12-27 05:28:05', 0, NULL, 0, NULL, 1),
(20512, 15963, '4', 'Sri Ramakrishna Institute of technology ', '', 'Power systems engineering ', '2023', 80.00, '', 1, '2023-12-27 05:30:47', 0, NULL, 0, NULL, 1),
(20513, 15965, '3', 'anna university', '', 'be', '2023', 7.87, '', 1, '2023-12-27 05:46:20', 0, NULL, 0, NULL, 1),
(20514, 15964, '3', 'Anna University', '', 'Bacholor of Computer Science and Engineering', '2023', 75.00, '', 1, '2023-12-27 05:46:49', 0, NULL, 0, NULL, 1),
(20515, 15968, '3', 'Anna university', '', 'B.Tech', '2019', 6.44, '', 1, '2023-12-27 05:49:22', 0, NULL, 0, NULL, 1),
(20516, 15968, '2', 'SRVS national hr sec school', '', '', '2015', 7.40, '', 1, '2023-12-27 05:49:57', 0, NULL, 0, NULL, 1),
(20517, 15968, '1', 'Central board', '', '', '2013', 8.20, '', 1, '2023-12-27 05:50:20', 0, NULL, 0, NULL, 1),
(20518, 15966, '4', 'madras university', '', 'msc comp science ', '2023', 68.00, '', 1, '2023-12-27 05:53:24', 0, NULL, 0, NULL, 1),
(20519, 15967, '3', 'Thiruvalluvar University ', '', 'B.com', '2022', 72.50, '', 1, '2023-12-27 05:53:24', 0, NULL, 0, NULL, 1),
(20520, 15956, '4', 'Madras university', '', 'B. Com (CA) ', '2023', 70.00, '', 1, '2023-12-27 06:06:37', 0, NULL, 0, NULL, 1),
(20521, 15969, '3', 'University of madras', '', 'B Com', '2023', 71.25, '', 1, '2023-12-27 06:13:11', 0, NULL, 0, NULL, 1),
(20522, 15971, '4', 'Anna university ', '', 'MBA ', '2023', 76.60, '', 1, '2023-12-27 06:18:37', 0, NULL, 0, NULL, 1),
(20523, 15970, '3', 'Madras University ', '', '', '2022', 75.00, '', 1, '2023-12-27 06:18:50', 0, NULL, 0, NULL, 1),
(20524, 15971, '3', 'Kalasalingam University ', '', 'B. Com(PA) ', '2020', 71.10, '', 1, '2023-12-27 06:19:08', 0, NULL, 0, NULL, 1),
(20525, 15971, '2', 'State board ', '', '', '2017', 67.00, '', 1, '2023-12-27 06:19:45', 0, NULL, 0, NULL, 1),
(20526, 15971, '1', 'State board ', '', '', '2015', 71.00, '', 1, '2023-12-27 06:20:13', 0, NULL, 0, NULL, 1),
(20527, 15972, '4', 'University of Madrs', '', 'M. Com', '2023', 72.00, '', 1, '2023-12-27 07:06:20', 0, NULL, 0, NULL, 1),
(20528, 15973, '3', 'Bharathidhasan university', '', 'BCA', '2021', 70.00, '', 1, '2023-12-27 07:34:28', 0, NULL, 0, NULL, 1),
(20529, 15975, '3', 'Madras university ', '', 'BBA', '2023', 70.00, '', 1, '2023-12-27 08:45:51', 0, NULL, 0, NULL, 1),
(20530, 15974, '3', 'University of Madras ', '', 'BCA', '2023', 69.00, '', 1, '2023-12-27 09:19:59', 0, NULL, 0, NULL, 1),
(20531, 15976, '4', 'Lille University', '', 'Masters', '2022', 90.00, '', 1, '2023-12-27 09:25:23', 0, NULL, 0, NULL, 1),
(20532, 15978, '3', 'Anna University ', '', 'B.E', '2020', 80.00, '', 1, '2023-12-27 09:27:07', 0, NULL, 0, NULL, 1),
(20533, 15980, '3', 'Anna ', '', 'B.E.Mechanical', '2018', 73.00, '', 1, '2023-12-27 09:28:28', 0, NULL, 0, NULL, 1),
(20534, 15980, '2', 'State board', '', '', '2014', 80.00, '', 1, '2023-12-27 09:28:47', 0, NULL, 0, NULL, 1),
(20535, 15980, '1', 'State board', '', '', '2012', 80.00, '', 1, '2023-12-27 09:29:02', 0, NULL, 0, NULL, 1),
(20536, 15977, '3', 'Sri Venkateshwara University ', '', 'B.com', '2016', 73.00, '', 1, '2023-12-27 09:29:15', 0, NULL, 0, NULL, 1),
(20537, 15979, '4', 'Syed Ammal Engineering college', '', 'MBA(hr&marketing)', '2022', 8.58, '', 1, '2023-12-27 09:39:32', 0, NULL, 0, NULL, 1),
(20538, 15981, '3', 'Loyola college chennai ', '', 'Ba sociology ', '2023', 50.00, '', 1, '2023-12-27 12:58:05', 110, '2024-02-02 01:18:54', 0, NULL, 1),
(20539, 15982, '3', 'BHARATHIDASAN UNIVERSITY KUMBAKONAM ', '', 'MBA FINANCIAL MANAGEMENT ', '2023', 65.00, '', 1, '2023-12-27 01:46:13', 0, NULL, 0, NULL, 1),
(20540, 15983, '3', 'MAHER University ', '', 'Bcom', '2022', 80.00, '', 1, '2023-12-27 02:30:31', 0, NULL, 0, NULL, 1),
(20541, 15984, '2', 'Board', '', '', '2018', 50.00, '', 1, '2023-12-28 03:49:42', 0, NULL, 0, NULL, 1),
(20542, 15986, '2', 'CBSE', '', '', '2015', 96.00, '', 1, '2023-12-28 05:21:46', 0, NULL, 0, NULL, 1),
(20543, 15986, '1', 'Tamilnadu higher secondary board', '', '', '2017', 87.00, '', 1, '2023-12-28 05:22:32', 0, NULL, 0, NULL, 1),
(20544, 15986, '3', 'Anna university ', '', 'BE Biomedical engineering ', '2021', 78.00, '', 1, '2023-12-28 05:23:29', 0, NULL, 0, NULL, 1),
(20545, 15986, '4', 'Dr DY Patil Online center of learning ', '', 'MBA', '2025', 87.00, '', 1, '2023-12-28 05:25:28', 0, NULL, 0, NULL, 1),
(20546, 15988, '3', 'Madras University ', '', 'B.com', '2023', 81.50, '', 1, '2023-12-28 05:34:16', 0, NULL, 0, NULL, 1),
(20547, 15985, '3', 'Madras University chennai ', '', 'B.com cS', '2023', 7.30, '', 1, '2023-12-28 05:38:00', 0, NULL, 0, NULL, 1),
(20548, 15473, '3', 'Bharathidasan University ', '', 'BCA', '2022', 83.00, '', 1, '2023-12-28 05:47:10', 0, NULL, 0, NULL, 1),
(20549, 15473, '2', 'State board', '', '', '2019', 76.00, '', 1, '2023-12-28 05:47:37', 0, NULL, 0, NULL, 1),
(20550, 15987, '4', 'Bharathidasan university ', '', 'Master of science ', '2021', 78.00, '', 1, '2023-12-28 05:47:46', 0, NULL, 0, NULL, 1),
(20551, 15990, '4', 'Bharathidasan university ', '', 'MBA', '2023', 70.00, '', 1, '2023-12-28 06:15:04', 0, NULL, 0, NULL, 1),
(20552, 15989, '3', 'Madras University ', '', 'B.com(Gen)', '2021', 62.50, '', 1, '2023-12-28 06:16:50', 0, NULL, 0, NULL, 1),
(20553, 15991, '4', 'Alagappa University ', '', 'MBA (HR & marketing)', '2023', 60.00, '', 1, '2023-12-28 06:39:24', 0, NULL, 0, NULL, 1),
(20554, 15992, '3', 'Bharathidasan ', '', 'B.com', '2018', 59.00, '', 1, '2023-12-28 07:21:17', 0, NULL, 0, NULL, 1),
(20555, 15993, '3', 'Sri Sairam Engineering College ', '', 'B.tech', '2024', 8.33, '', 1, '2023-12-28 09:49:00', 0, NULL, 0, NULL, 1),
(20556, 15994, '3', 'Acharya Institute of technology', '', 'BE mining', '2021', 68.00, '', 1, '2023-12-28 12:52:15', 0, NULL, 0, NULL, 1),
(20557, 15995, '3', 'Bharathidasan University ', '', 'BCA', '2023', 82.20, '', 1, '2023-12-29 05:13:05', 0, NULL, 0, NULL, 1),
(20558, 15996, '3', 'GRT institute of Engineering and Technology ', '', 'Bachelor of Engineering ', '2020', 64.00, '', 1, '2023-12-29 06:22:24', 0, NULL, 0, NULL, 1),
(20559, 15997, '3', 'Prist University ', '', 'B.TECH', '2019', 70.00, '', 1, '2023-12-29 06:23:14', 0, NULL, 0, NULL, 1),
(20560, 15998, '1', 'matriculation', '', '', '2011', 76.00, '', 1, '2023-12-29 06:44:50', 0, NULL, 0, NULL, 1),
(20561, 15998, '2', 'state board', '', '', '2013', 73.00, '', 1, '2023-12-29 06:45:18', 0, NULL, 0, NULL, 1),
(20562, 15998, '3', 'anna university ', '', 'be', '2017', 64.00, '', 1, '2023-12-29 06:46:14', 0, NULL, 0, NULL, 1),
(20563, 15998, '4', 'anna university', '', 'mba', '2021', 83.00, '', 1, '2023-12-29 06:46:59', 0, NULL, 0, NULL, 1),
(20564, 16001, '3', 'Madras University ', '', 'B.sc computer science ', '2019', 68.00, '', 1, '2023-12-29 07:20:56', 0, NULL, 0, NULL, 1),
(20565, 16001, '1', 'Government Higher secondary school, Pudhur, Chennai', '', '', '2014', 80.00, '', 1, '2023-12-29 07:22:20', 0, NULL, 0, NULL, 1),
(20566, 16001, '2', 'Government Higher secondary school ,Pudhur , Chennai ', '', '', '2016', 60.00, '', 1, '2023-12-29 07:23:09', 0, NULL, 0, NULL, 1),
(20567, 16000, '3', 'madras university', '', 'bsc cs', '2019', 70.00, '', 1, '2023-12-29 07:23:50', 0, NULL, 0, NULL, 1),
(20568, 15999, '3', 'anna University ', '', 'be mechanical', '2017', 70.00, '', 1, '2023-12-29 07:30:14', 0, NULL, 0, NULL, 1),
(20569, 15999, '1', 'govt high scholl', '', '', '2010', 75.00, '', 1, '2023-12-29 07:31:04', 0, NULL, 0, NULL, 1),
(20570, 15999, '2', 'bharathi matric higher secondary scholl', '', '', '2012', 80.00, '', 1, '2023-12-29 07:31:46', 0, NULL, 0, NULL, 1),
(20571, 16002, '3', 'Anna University ', '', 'B.E', '2020', 68.00, '', 1, '2023-12-30 05:13:19', 0, NULL, 0, NULL, 1),
(20572, 16004, '3', 'ALAGAPPA UNIVERSITY ', '', 'B.Sc, Mathematics ', '2023', 70.00, '', 1, '2023-12-30 05:23:45', 0, NULL, 0, NULL, 1),
(20573, 16003, '3', 'Manonmanian sundarnar University', '', 'bsc computer science', '2023', 70.00, '', 1, '2023-12-30 05:25:27', 0, NULL, 0, NULL, 1),
(20574, 16004, '2', 'GOVERNMENT HIGHER SECONDARY ', '', '', '2020', 71.00, '', 1, '2023-12-30 05:25:36', 0, NULL, 0, NULL, 1),
(20575, 16003, '2', 'State board', '', '', '2020', 65.00, '', 1, '2023-12-30 05:26:10', 0, NULL, 0, NULL, 1),
(20576, 16005, '4', 'Anna University ', '', 'MBA ', '2023', 70.00, '', 1, '2023-12-30 05:27:16', 0, NULL, 0, NULL, 1),
(20577, 16005, '3', 'Bharathiyar University ', '', 'Bcom', '2021', 64.00, '', 1, '2023-12-30 05:27:56', 0, NULL, 0, NULL, 1),
(20578, 16006, '4', 'Madras University ', '', 'Full time MBA (Hr & Finance)', '2023', 80.20, '', 1, '2023-12-30 07:07:48', 0, NULL, 0, NULL, 1),
(20579, 16008, '1', 'State Board', '', '', '2012', 77.00, '', 1, '2024-01-02 04:04:34', 0, NULL, 0, NULL, 1),
(20580, 16008, '5', 'DOTE', '', 'Diploma in Computer science ', '2017', 89.00, '', 1, '2024-01-02 04:05:01', 0, NULL, 0, NULL, 1),
(20581, 16008, '3', 'Anna University ', '', 'bE', '2020', 71.30, '', 1, '2024-01-02 04:05:21', 0, NULL, 0, NULL, 1),
(20582, 16009, '3', 'Anna University ', '', 'Bachelor\'s of Engineering ', '2019', 73.00, '', 1, '2024-01-02 04:41:54', 0, NULL, 0, NULL, 1),
(20583, 16009, '5', 'Periyar University ', '', 'Diploma', '2016', 83.00, '', 1, '2024-01-02 04:42:46', 0, NULL, 0, NULL, 1),
(20584, 16009, '1', 'St Antony\'s Hr Sec School ', '', '', '2013', 87.00, '', 1, '2024-01-02 04:43:28', 0, NULL, 0, NULL, 1),
(20585, 16011, '3', 'Periyar University ', '', 'Bba', '2016', 65.00, '', 1, '2024-01-02 06:19:01', 0, NULL, 0, NULL, 1),
(20586, 16010, '3', 'Madras University ', '', 'B.com (General)', '2022', 85.00, '', 1, '2024-01-02 06:34:48', 0, NULL, 0, NULL, 1),
(20587, 16012, '3', 'Madras University ', '', 'B. com General ', '2022', 68.56, '', 1, '2024-01-02 06:35:30', 0, NULL, 0, NULL, 1),
(20588, 16014, '3', 'Madras University ', '', 'BBA', '2022', 75.00, '', 1, '2024-01-02 06:53:02', 0, NULL, 0, NULL, 1),
(20589, 16013, '3', 'Alagappa university', '', 'BCA', '2022', 45.00, '', 1, '2024-01-02 06:55:40', 0, NULL, 0, NULL, 1),
(20590, 16016, '4', 'Anna university', '', 'Mechanical', '2019', 8.30, '', 1, '2024-01-02 07:40:38', 0, NULL, 0, NULL, 1),
(20591, 16015, '1', 'anna university ', '', '', '2018', 6.50, '', 1, '2024-01-02 07:54:19', 0, NULL, 0, NULL, 1),
(20592, 16017, '2', 'Our lady mart hr sec school ', '', '', '2017', 55.00, '', 1, '2024-01-02 09:28:25', 0, NULL, 0, NULL, 1),
(20593, 16018, '4', 'university of madras', '', 'mba', '2022', 61.00, '', 1, '2024-01-02 11:09:23', 0, NULL, 0, NULL, 1),
(20594, 16019, '3', 'Periyar University ', '', 'BCA', '2021', 77.00, '', 1, '2024-01-03 03:42:23', 0, NULL, 0, NULL, 1),
(20595, 16020, '3', 'Autonomous ', '', 'BA', '2016', 66.00, '', 1, '2024-01-03 04:40:52', 0, NULL, 0, NULL, 1),
(20596, 16021, '3', 'Anna university ', '', 'BE computer science and engineering ', '2020', 64.00, '', 1, '2024-01-03 04:42:42', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20597, 16021, '2', 'State board', '', '', '2016', 72.00, '', 1, '2024-01-03 04:43:05', 0, NULL, 0, NULL, 1),
(20598, 16021, '1', 'State', '', '', '2014', 86.00, '', 1, '2024-01-03 04:43:22', 0, NULL, 0, NULL, 1),
(20599, 16022, '4', 'MK University ', '', 'MA', '2023', 6.29, '', 1, '2024-01-03 05:13:43', 0, NULL, 0, NULL, 1),
(20600, 16023, '3', 'Anna University ', '', 'B.E', '2023', 83.00, '', 1, '2024-01-03 05:16:43', 0, NULL, 0, NULL, 1),
(20601, 16025, '3', 'Anna university ', '', 'BE', '2023', 83.00, '', 1, '2024-01-03 05:33:29', 0, NULL, 0, NULL, 1),
(20602, 16026, '4', 'Madras University ', '', 'M. Com', '2023', 70.00, '', 1, '2024-01-03 05:39:47', 0, NULL, 0, NULL, 1),
(20603, 16024, '3', 'Justice basheer ahmed syed college for women', '', 'Bsc Computer science', '2023', 75.00, '', 1, '2024-01-03 05:44:09', 0, NULL, 0, NULL, 1),
(20604, 16027, '2', 'Madras university ', '', '', '2023', 74.00, '', 1, '2024-01-03 07:21:01', 0, NULL, 0, NULL, 1),
(20605, 16028, '4', 'Madras university ', '', 'BBA ', '2022', 65.00, '', 1, '2024-01-03 07:37:06', 0, NULL, 0, NULL, 1),
(20606, 16030, '4', 'Anna university', '', 'MBA', '2024', 7.90, '', 1, '2024-01-03 09:48:00', 0, NULL, 0, NULL, 1),
(20607, 16033, '5', 'univesity', '', 'dmech', '2017', 68.00, '', 1, '2024-01-03 03:19:39', 0, NULL, 0, NULL, 1),
(20608, 16034, '1', 'State Board', '', 'B.tech Artificial intelligence and data science ', '2018', 88.00, '', 1, '2024-01-04 04:07:08', 1, '2024-01-04 04:10:08', 0, NULL, 0),
(20609, 16034, '2', 'State Board', '', '', '2020', 65.00, '', 1, '2024-01-04 04:07:36', 0, NULL, 0, NULL, 1),
(20610, 16034, '3', 'Anna University ', '', 'B.tech Artificial intelligence and data science ', '2024', 89.00, '', 1, '2024-01-04 04:08:35', 0, NULL, 0, NULL, 1),
(20611, 16034, '1', 'StateBoard', '', '', '2018', 88.00, '', 1, '2024-01-04 04:10:38', 1, '2024-01-04 04:11:03', 0, NULL, 1),
(20612, 16036, '3', 'Anna University', '', 'Bachelor Of Technology', '2022', 74.00, '', 1, '2024-01-04 04:44:55', 0, NULL, 0, NULL, 1),
(20613, 16037, '3', 'Thanthai Periyar Govt Institute of Technology ', '', 'B.E', '2023', 75.10, '', 1, '2024-01-04 05:10:10', 0, NULL, 0, NULL, 1),
(20614, 16037, '2', 'Ave Maria Matric Hr.sec school ', '', '', '2019', 60.00, '', 1, '2024-01-04 05:10:57', 0, NULL, 0, NULL, 1),
(20615, 16037, '1', 'Ave Maria Matric HR. Sec school ', '', '', '2017', 88.40, '', 1, '2024-01-04 05:11:23', 0, NULL, 0, NULL, 1),
(20616, 16039, '3', 'University of Madras ', '', 'BCA', '2023', 72.00, '', 1, '2024-01-04 05:24:04', 0, NULL, 0, NULL, 1),
(20617, 16038, '3', '  Bharathidasan University   ', '', 'B.com  COMPUTER APPLICATION', '2022', 6.69, '', 1, '2024-01-04 05:29:55', 0, NULL, 0, NULL, 1),
(20618, 16041, '3', 'Annamalai University ', '', 'B.E Computer Science and Engineering ', '2023', 8.60, '', 1, '2024-01-04 05:42:29', 0, NULL, 0, NULL, 1),
(20619, 16040, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2023', 77.00, '', 1, '2024-01-04 05:49:46', 0, NULL, 0, NULL, 1),
(20620, 16042, '3', 'Anna university ', '', 'B.E.Electronics and communication engineering ', '2023', 80.00, '', 1, '2024-01-04 05:59:08', 0, NULL, 0, NULL, 1),
(20621, 16032, '5', 'Dote', '', 'Civil ', '2019', 81.00, '', 1, '2024-01-04 06:28:31', 0, NULL, 0, NULL, 1),
(20622, 16044, '3', 'new college', '', 'bsc', '2016', 50.00, '', 1, '2024-01-04 07:03:39', 0, NULL, 0, NULL, 1),
(20623, 16046, '3', 'A.m Jain college ', '', 'B.A Economic ', '2021', 95.00, '', 1, '2024-01-04 08:11:01', 0, NULL, 0, NULL, 1),
(20624, 16031, '3', 'kcs kasi nagar', '', 'bsc', '2019', 68.00, '', 104, '2024-01-04 02:42:43', 0, NULL, 0, NULL, 1),
(20625, 16049, '3', 'Anna University ', '', 'B.E', '2023', 80.02, '', 1, '2024-01-04 09:32:57', 0, NULL, 0, NULL, 1),
(20626, 16051, '3', 'Anna University ', '', 'B.E Electrical and Electronics ', '2023', 79.20, '', 1, '2024-01-04 09:33:42', 0, NULL, 0, NULL, 1),
(20627, 16050, '3', 'Anna University ', '', 'B.E Electrical and Electronics', '2023', 74.90, '', 1, '2024-01-04 09:45:33', 0, NULL, 0, NULL, 1),
(20628, 16048, '3', 'Madras University ', '', 'B com', '2019', 78.00, '', 1, '2024-01-04 09:49:41', 0, NULL, 0, NULL, 1),
(20629, 16047, '4', 'James Cook University ', '', 'MIT', '2014', 69.00, '', 1, '2024-01-04 10:02:58', 0, NULL, 0, NULL, 1),
(20630, 16052, '3', 'Bharathidasan university', '', 'B.com(cA)', '2020', 69.00, '', 1, '2024-01-04 10:15:23', 0, NULL, 0, NULL, 1),
(20631, 16053, '4', 'Bharathidhasan  university', '', 'MBA', '2022', 81.00, '', 1, '2024-01-04 10:32:08', 0, NULL, 0, NULL, 1),
(20632, 16055, '1', 'Banu Matriculation Higher Secondary School', '', '', '2023', 98.20, '', 1, '2024-01-04 10:41:20', 0, NULL, 0, NULL, 1),
(20633, 16055, '2', 'Banu Matriculation Higher Secondary School', '', '', '2019', 73.40, '', 1, '2024-01-04 10:42:08', 0, NULL, 0, NULL, 1),
(20634, 16054, '4', 'Bharathidasan university', '', 'MBA', '2022', 81.00, '', 1, '2024-01-04 10:47:57', 0, NULL, 0, NULL, 1),
(20635, 16056, '1', 'St Antony\'s matriculation school ', '', '', '2018', 81.20, '', 1, '2024-01-04 10:52:25', 0, NULL, 0, NULL, 1),
(20636, 16057, '3', 'Thiruvalluvar University ', '', 'Bsc Computer science', '2023', 76.00, '', 1, '2024-01-04 10:52:57', 0, NULL, 0, NULL, 1),
(20637, 16056, '2', 'Sishya matric higher secondary school ', '', '', '2020', 57.00, '', 1, '2024-01-04 10:53:09', 0, NULL, 0, NULL, 1),
(20638, 16056, '3', 'Thiruvalluvar university ', '', 'Bsc Computers science', '2023', 80.20, '', 1, '2024-01-04 10:54:09', 0, NULL, 0, NULL, 1),
(20639, 16057, '2', 'Government Higher Secondary School ', '', '', '2020', 55.00, '', 1, '2024-01-04 10:54:16', 0, NULL, 0, NULL, 1),
(20640, 16057, '1', 'Government High School ', '', '', '2018', 82.00, '', 1, '2024-01-04 10:54:43', 0, NULL, 0, NULL, 1),
(20641, 16058, '3', 'University of Madras ', '', 'B.com ', '2023', 72.00, '', 1, '2024-01-04 01:32:23', 0, NULL, 0, NULL, 1),
(20642, 16060, '3', 'William Carey University ', '', 'BA', '2019', 70.00, '', 1, '2024-01-04 02:08:15', 0, NULL, 0, NULL, 1),
(20643, 16059, '3', 'madras university', '', 'bba', '2023', 56.00, '', 1, '2024-01-04 03:42:03', 0, NULL, 0, NULL, 1),
(20644, 16064, '1', 'bharathidhasan university', '', '', '2020', 65.00, '', 1, '2024-01-05 05:38:43', 0, NULL, 0, NULL, 1),
(20645, 16063, '3', 'Thiruvalluvar ', '', 'B.com', '2018', 60.00, '', 1, '2024-01-05 05:38:54', 0, NULL, 0, NULL, 1),
(20646, 16066, '4', 'Anna university', '', 'Mba', '2015', 70.00, '', 1, '2024-01-05 06:29:41', 0, NULL, 0, NULL, 1),
(20647, 16062, '3', 'Dr.mgr university', '', 'Bca', '2023', 70.00, '', 1, '2024-01-05 06:34:03', 0, NULL, 0, NULL, 1),
(20648, 11681, '5', 'Gururagavindra Polytechnic college ', '', 'Diploma ', '2019', 82.00, '', 1, '2024-01-05 06:52:44', 0, NULL, 0, NULL, 1),
(20649, 16067, '3', 'Mgr University ', '', 'Bca', '2020', 75.00, '', 1, '2024-01-05 06:54:35', 0, NULL, 0, NULL, 1),
(20650, 16068, '3', 'srm', '', 'information technology', '2022', 60.00, '', 1, '2024-01-05 12:12:35', 0, NULL, 0, NULL, 1),
(20651, 16069, '3', 'Madras University ', '', 'B. Com ', '2020', 78.00, '', 1, '2024-01-06 03:00:48', 0, NULL, 0, NULL, 1),
(20652, 16070, '3', 'Anna university', '', 'Bachelor Engineering', '2022', 7.50, '', 1, '2024-01-06 05:16:31', 0, NULL, 0, NULL, 1),
(20653, 16071, '3', 'Bharadhithasan university', '', 'B. Sc ', '2021', 75.00, '', 1, '2024-01-06 05:47:57', 0, NULL, 0, NULL, 1),
(20654, 16074, '3', 'Thiruvalluvar university vellore ', '', 'B.com', '2021', 85.00, '', 1, '2024-01-06 06:40:23', 0, NULL, 0, NULL, 1),
(20655, 16076, '3', 'Bharathier university', '', 'B. Sc', '2022', 74.00, '', 1, '2024-01-06 06:52:07', 0, NULL, 0, NULL, 1),
(20656, 16073, '3', 'State', '', 'B.com', '2023', 79.00, '', 1, '2024-01-06 06:52:27', 0, NULL, 0, NULL, 1),
(20657, 16075, '3', 'ad coll of engineering Madanapalle ', '', 'b.tech', '2022', 63.76, '', 1, '2024-01-06 06:55:57', 0, NULL, 0, NULL, 1),
(20658, 16077, '3', 'Hubli University ', '', '2nd year', '2022', 60.00, '', 1, '2024-01-06 07:16:31', 0, NULL, 0, NULL, 1),
(20659, 16078, '3', 'Madras University', '', 'B. Sc', '2014', 54.60, '', 1, '2024-01-06 08:43:43', 0, NULL, 0, NULL, 1),
(20660, 16080, '4', 'University of Madras ', '', 'Msc', '2023', 65.00, '', 1, '2024-01-06 09:23:48', 0, NULL, 0, NULL, 1),
(20661, 16080, '4', 'Madras University ', '', 'Msc(i.t)', '2021', 65.00, '', 1, '2024-01-06 09:24:47', 0, NULL, 0, NULL, 1),
(20662, 16081, '3', 'Anna University ', '', 'BE', '2019', 70.00, '', 1, '2024-01-06 09:26:54', 0, NULL, 0, NULL, 1),
(20663, 16082, '3', 'Anna university ', '', 'BE', '2019', 67.00, '', 1, '2024-01-06 09:27:18', 0, NULL, 0, NULL, 1),
(20664, 16085, '4', 'Bharathiyar university', '', 'Msc', '2023', 75.00, '', 1, '2024-01-08 04:23:28', 0, NULL, 0, NULL, 1),
(20665, 16085, '3', 'Bishop Heber College', '', 'B. sc', '2021', 75.00, '', 1, '2024-01-08 04:24:03', 0, NULL, 0, NULL, 1),
(20666, 16085, '2', 'State Board', '', '', '2018', 84.80, '', 1, '2024-01-08 04:24:42', 0, NULL, 0, NULL, 1),
(20667, 16085, '1', 'State Board', '', '', '2016', 93.20, '', 1, '2024-01-08 04:25:10', 0, NULL, 0, NULL, 1),
(20668, 16086, '3', 'Alpha Arts and science college ', '', 'B.sc in computer science ', '2020', 60.00, '', 1, '2024-01-08 04:42:58', 0, NULL, 0, NULL, 1),
(20669, 16087, '3', 'Anna University ', '', 'Bca', '2022', 67.00, '', 1, '2024-01-08 05:05:41', 0, NULL, 0, NULL, 1),
(20670, 16091, '3', 'Anna university', '', 'BE-Mechanical Engineering', '2019', 62.00, '', 1, '2024-01-08 05:19:34', 0, NULL, 0, NULL, 1),
(20671, 16092, '3', 'Madras University ', '', 'B.com (general)', '2024', 71.00, '', 1, '2024-01-08 05:29:25', 0, NULL, 0, NULL, 1),
(20672, 16088, '4', 'Anna University ', '', 'Master of computer Applications ', '2022', 85.00, '', 1, '2024-01-08 05:42:08', 0, NULL, 0, NULL, 1),
(20673, 16088, '3', 'Manonmaniam Sundaranar University', '', 'Bsc information technology ', '2020', 78.00, '', 1, '2024-01-08 05:44:06', 0, NULL, 0, NULL, 1),
(20674, 16088, '2', 'State Board', '', '', '2017', 77.00, '', 1, '2024-01-08 05:45:16', 0, NULL, 0, NULL, 1),
(20675, 16088, '1', 'State Board', '', '', '2015', 88.00, '', 1, '2024-01-08 05:45:36', 0, NULL, 0, NULL, 1),
(20676, 16093, '3', 'University of Madras ', '', 'Bsc.cs', '2023', 70.00, '', 1, '2024-01-08 05:46:23', 0, NULL, 0, NULL, 1),
(20677, 16090, '4', 'University of madras', '', 'MCA ', '2024', 7.90, '', 1, '2024-01-08 05:51:12', 0, NULL, 0, NULL, 1),
(20678, 16089, '3', 'University of madras ', '', 'Mca', '2024', 79.00, '', 1, '2024-01-08 05:55:27', 0, NULL, 0, NULL, 1),
(20679, 16043, '3', 'Bharadhidhasan university ', '', 'Bsc', '2022', 80.00, '', 1, '2024-01-08 07:39:12', 0, NULL, 0, NULL, 1),
(20680, 16094, '3', 'State board', '', 'BA English literature ', '2023', 60.00, '', 1, '2024-01-08 07:42:29', 0, NULL, 0, NULL, 1),
(20681, 16083, '3', 'Thiruvalluvar University ', '', 'Bsc computer science ', '2020', 60.00, '', 1, '2024-01-08 07:45:57', 0, NULL, 0, NULL, 1),
(20682, 16098, '3', 'Bharathidasan university', '', 'B. Com', '2022', 70.00, '', 1, '2024-01-08 10:10:34', 0, NULL, 0, NULL, 1),
(20683, 16099, '3', 'Madras University ', '', 'Bsw', '2021', 75.00, '', 1, '2024-01-09 04:02:24', 0, NULL, 0, NULL, 1),
(20684, 16100, '3', 'DB Jain College ', '', 'Bachelors in Commerce ', '2021', 75.00, '', 1, '2024-01-09 04:31:37', 0, NULL, 0, NULL, 1),
(20685, 16100, '4', 'Loyola PULC Twinning University ', '', 'Masters in Business Administration ', '2023', 60.00, '', 1, '2024-01-09 04:32:39', 0, NULL, 0, NULL, 1),
(20686, 16101, '3', 'deemed to be university', '', 'b.com', '2021', 85.00, '', 1, '2024-01-09 04:34:26', 1, '2024-01-09 04:34:50', 0, NULL, 1),
(20687, 16102, '3', 'Hindustan institute of technology and science ', '', 'Bachelor of Computer Applications (BCA)', '2022', 83.00, '', 1, '2024-01-09 04:43:20', 0, NULL, 0, NULL, 1),
(20688, 16104, '3', 'Anna University ', '', 'Be', '2018', 62.00, '', 1, '2024-01-09 06:50:58', 0, NULL, 0, NULL, 1),
(20689, 16105, '3', 'university of madras', '', 'bsc visual communication', '2022', 7.77, '', 1, '2024-01-09 06:57:44', 0, NULL, 0, NULL, 1),
(20690, 16105, '2', 'state board', '', '', '2019', 59.00, '', 1, '2024-01-09 06:58:37', 0, NULL, 0, NULL, 1),
(20691, 16105, '1', 'state borad', '', '', '2016', 74.00, '', 1, '2024-01-09 06:59:00', 0, NULL, 0, NULL, 1),
(20692, 16106, '3', 'C.Abdul Hakkem College ', '', 'B.com', '2023', 64.00, '', 1, '2024-01-09 06:59:48', 0, NULL, 0, NULL, 1),
(20693, 16107, '3', 'madras University ', '', 'ba his ', '2022', 62.30, '', 1, '2024-01-09 07:14:40', 0, NULL, 0, NULL, 1),
(20694, 16108, '3', 'Madras University ', '', 'BCA', '2015', 60.00, '', 1, '2024-01-09 07:27:27', 0, NULL, 0, NULL, 1),
(20695, 16109, '4', 'Madras University ', '', 'MBA Hr', '2023', 60.00, '', 1, '2024-01-09 07:30:43', 0, NULL, 0, NULL, 1),
(20696, 16109, '3', 'Madras University ', '', 'BBA ', '2020', 80.00, '', 1, '2024-01-09 07:31:04', 0, NULL, 0, NULL, 1),
(20697, 16111, '3', 'ANNAMALAI UNIVERSITY', '', 'B.Sc.(Hons) Agriculture ', '2023', 88.10, '', 1, '2024-01-09 01:56:19', 0, NULL, 0, NULL, 1),
(20698, 16111, '2', 'Muvendar Matric. Hr. Sec. School', '', '', '2019', 87.30, '', 1, '2024-01-09 01:57:27', 0, NULL, 0, NULL, 1),
(20699, 16112, '3', 'Anna university ', '', 'BE', '2020', 83.44, '', 1, '2024-01-10 04:45:05', 0, NULL, 0, NULL, 1),
(20700, 16113, '5', 'Miet polytechnic college ', '', 'DCT', '2018', 70.00, '', 1, '2024-01-10 04:54:30', 0, NULL, 0, NULL, 1),
(20701, 16114, '1', 'sboa mat hr sec school', '', 'b. tech', '2017', 85.20, '', 1, '2024-01-10 05:02:01', 1, '2024-01-10 05:04:36', 0, NULL, 0),
(20702, 16114, '2', 'velammal mat hr sec school', '', '', '2019', 61.60, '', 1, '2024-01-10 05:02:46', 1, '2024-01-10 05:03:51', 0, NULL, 0),
(20703, 16115, '3', 'bharathidasan university', '', 'b.com', '2021', 70.00, '', 1, '2024-01-10 05:02:54', 0, NULL, 0, NULL, 1),
(20704, 16114, '1', 'sboa mat hr sec school', '', '', '2017', 85.20, '', 1, '2024-01-10 05:03:31', 1, '2024-01-10 05:03:54', 0, NULL, 0),
(20705, 16115, '1', 'st. michael. matric. hr. sec. school', '', '', '2016', 95.00, '', 1, '2024-01-10 05:03:42', 0, NULL, 0, NULL, 1),
(20706, 16115, '2', 'st. michae. matric. hr. sec. school', '', '', '2018', 93.00, '', 1, '2024-01-10 05:04:12', 0, NULL, 0, NULL, 1),
(20707, 16114, '1', 'sboa mat hr sec school', '', '', '2017', 85.20, '', 1, '2024-01-10 05:05:04', 0, NULL, 0, NULL, 1),
(20708, 16114, '2', 'velammal mat hr sec school', '', '', '2019', 61.60, '', 1, '2024-01-10 05:05:25', 0, NULL, 0, NULL, 1),
(20709, 16114, '3', 'easwari engineering college', '', 'b. tech', '2023', 81.10, '', 1, '2024-01-10 05:07:46', 0, NULL, 0, NULL, 1),
(20710, 16116, '3', 'Madras University ', '', 'Bcom', '2022', 75.00, '', 1, '2024-01-10 05:53:45', 0, NULL, 0, NULL, 1),
(20711, 16116, '4', 'Pondicherry University ', '', 'Mba', '2024', 70.00, '', 1, '2024-01-10 05:54:24', 0, NULL, 0, NULL, 1),
(20712, 16117, '3', 'Madras University ', '', 'B com CS', '2024', 72.00, '', 1, '2024-01-10 06:14:07', 0, NULL, 0, NULL, 1),
(20713, 16118, '4', 'University ', '', 'MBA', '2024', 8.36, '', 1, '2024-01-10 06:19:41', 0, NULL, 0, NULL, 1),
(20714, 16120, '3', 'Bangalore North University ', '', 'BCA', '2022', 75.00, '', 1, '2024-01-10 06:44:25', 0, NULL, 0, NULL, 1),
(20715, 16121, '1', 'Government Higher Secondary School', '', '', '2023', 82.00, '', 1, '2024-01-10 07:27:40', 1, '2024-01-10 07:30:32', 0, NULL, 0),
(20716, 16122, '3', 'PSR Engineering College ', '', 'BE ECE', '2023', 86.00, '', 1, '2024-01-10 07:27:45', 1, '2024-01-10 07:29:46', 0, NULL, 0),
(20717, 16122, '2', 'The Lakshmi Mills Higher Secondary school ', '', '', '2019', 66.50, '', 1, '2024-01-10 07:29:00', 0, NULL, 0, NULL, 1),
(20718, 16122, '1', 'The Lakshmi Mills Higher secondary school ', '', '', '2017', 96.20, '', 1, '2024-01-10 07:29:28', 1, '2024-01-10 07:31:26', 0, NULL, 0),
(20719, 16122, '3', 'PSR Engineering College ', '', 'BE ECE', '2023', 86.00, '', 1, '2024-01-10 07:30:14', 1, '2024-01-10 07:30:47', 0, NULL, 0),
(20720, 16121, '1', 'Government Higher Secondary School', '', '', '2017', 80.00, '', 1, '2024-01-10 07:30:39', 0, NULL, 0, NULL, 1),
(20721, 16121, '2', 'Government Higher Secondary School', '', '', '2019', 60.00, '', 1, '2024-01-10 07:30:53', 0, NULL, 0, NULL, 1),
(20722, 16122, '3', 'PSR Engineering College ', '', 'BE ECE', '2023', 86.00, '', 1, '2024-01-10 07:31:10', 0, NULL, 0, NULL, 1),
(20723, 16122, '1', 'The Lakshmi Mills Higher secondary school ', '', '', '2017', 96.20, '', 1, '2024-01-10 07:31:48', 0, NULL, 0, NULL, 1),
(20724, 16121, '3', 'p.s.r Engineering College ', '', 'b.e-ece', '2023', 82.00, '', 1, '2024-01-10 07:31:48', 0, NULL, 0, NULL, 1),
(20725, 16123, '3', 'University of Madras ', '', 'BCA', '2021', 81.00, '', 1, '2024-01-10 09:32:30', 0, NULL, 0, NULL, 1),
(20726, 16124, '3', 'University ', '', 'B. Tech', '2023', 81.30, '', 1, '2024-01-10 09:47:54', 0, NULL, 0, NULL, 1),
(20727, 16124, '2', 'Board', '', '', '2019', 70.30, '', 1, '2024-01-10 09:48:24', 0, NULL, 0, NULL, 1),
(20728, 16124, '1', 'Board', '', '', '2017', 90.00, '', 1, '2024-01-10 09:49:04', 0, NULL, 0, NULL, 1),
(20729, 16125, '3', 'Madras University ', '', 'BSW', '2022', 90.00, '', 1, '2024-01-10 01:51:52', 0, NULL, 0, NULL, 1),
(20730, 16126, '1', 'Vidya vikas hr sec school ', '', '', '2016', 58.00, '', 1, '2024-01-10 04:04:21', 0, NULL, 0, NULL, 1),
(20731, 16126, '3', 'Sikkim profesional University ', '', 'BBA ', '2022', 78.00, '', 1, '2024-01-10 04:04:53', 0, NULL, 0, NULL, 1),
(20732, 16127, '3', 'JAYAGOVIND HARIGOPAL AGARWAL AGARSEN COLLEGE ', '', 'B.com Corporate secretaryship', '2023', 87.00, '', 1, '2024-01-10 04:15:18', 0, NULL, 0, NULL, 1),
(20733, 16129, '4', 'Alagappa University ', '', 'MBA (HR & Marketing)', '2023', 72.00, '', 1, '2024-01-11 04:50:47', 0, NULL, 0, NULL, 1),
(20734, 16128, '3', 'Bharathidasan university ', '', 'BBA', '2021', 79.00, '', 1, '2024-01-11 04:57:31', 0, NULL, 0, NULL, 1),
(20735, 16131, '3', 'ANNA UNIVERSITY ', '', 'BE', '2019', 73.20, '', 1, '2024-01-11 05:22:18', 0, NULL, 0, NULL, 1),
(20736, 16131, '2', 'STATE BOARD ', '', '', '2015', 81.75, '', 1, '2024-01-11 05:24:22', 0, NULL, 0, NULL, 1),
(20737, 16132, '3', 'Anna University ', '', 'B.Tech ', '2020', 63.08, '', 1, '2024-01-11 05:24:30', 0, NULL, 0, NULL, 1),
(20738, 16132, '2', 'State Board ', '', '', '2016', 67.42, '', 1, '2024-01-11 05:26:15', 0, NULL, 0, NULL, 1),
(20739, 16131, '1', 'STATE BOARD', '', '', '2013', 70.30, '', 1, '2024-01-11 05:26:20', 0, NULL, 0, NULL, 1),
(20740, 16133, '4', 'Bharadhidasan', '', 'MSc.bio tech', '2022', 85.00, '', 1, '2024-01-11 05:30:36', 0, NULL, 0, NULL, 1),
(20741, 16130, '3', 'Bharathiyar University ', '', 'Bsc', '2022', 63.00, '', 1, '2024-01-11 05:38:09', 0, NULL, 0, NULL, 1),
(20742, 16130, '2', 'State board', '', '', '2019', 60.00, '', 1, '2024-01-11 05:38:37', 0, NULL, 0, NULL, 1),
(20743, 16130, '1', 'State board ', '', '', '2017', 79.00, '', 1, '2024-01-11 05:38:55', 0, NULL, 0, NULL, 1),
(20744, 16135, '3', 'Thiruvalluvar university', '', 'Bsc physics', '2023', 83.50, '', 1, '2024-01-11 06:00:55', 0, NULL, 0, NULL, 1),
(20745, 16136, '5', 'Don Bosco polytechnic college ', '', 'Diploma mechanical engineering ', '2019', 82.00, '', 1, '2024-01-11 06:21:12', 0, NULL, 0, NULL, 1),
(20746, 16137, '3', 'Madras University ', '', 'B COM Bank Management ', '2021', 75.00, '', 1, '2024-01-11 07:12:47', 0, NULL, 0, NULL, 1),
(20747, 16134, '3', 'Anna university', '', 'Aeronautical engeenering', '2019', 78.00, '', 1, '2024-01-11 07:16:18', 0, NULL, 0, NULL, 1),
(20748, 16138, '4', 'deemed', '', 'MBA', '2023', 78.00, '', 1, '2024-01-11 07:26:23', 0, NULL, 0, NULL, 1),
(20749, 16140, '3', 'Anna University Chennai ', '', 'Bachelor of Engineering ', '2021', 8.14, '', 1, '2024-01-11 09:59:32', 0, NULL, 0, NULL, 1),
(20750, 16139, '3', 'MADRAS UNIVERSITY ', '', 'Bca', '2022', 72.00, '', 1, '2024-01-11 10:18:08', 0, NULL, 0, NULL, 1),
(20751, 16141, '4', 'Alagappan University', '', 'MBA HR', '2023', 68.00, '', 1, '2024-01-11 10:35:56', 0, NULL, 0, NULL, 1),
(20752, 16141, '3', 'Stella Maris college', '', 'B.com', '2021', 55.00, '', 1, '2024-01-11 10:36:34', 0, NULL, 0, NULL, 1),
(20753, 16141, '2', 'St. Francis Xavier Higher Secondary School', '', '', '2018', 89.00, '', 1, '2024-01-11 10:37:13', 0, NULL, 0, NULL, 1),
(20754, 16141, '1', 'St. Francis Xavier', '', '', '2016', 89.00, '', 1, '2024-01-11 10:37:37', 0, NULL, 0, NULL, 1),
(20755, 16142, '3', 'SRM institute of science and technology ', '', 'b com', '2020', 8.02, '', 1, '2024-01-12 04:08:15', 0, NULL, 0, NULL, 1),
(20756, 16143, '5', 'Annamalai university chedhamparam ', '', 'D.ECE', '2020', 72.00, '', 1, '2024-01-12 04:55:41', 0, NULL, 0, NULL, 1),
(20757, 16143, '5', 'annamalai universit', '', 'd ECE', '2020', 72.00, '', 104, '2024-01-12 10:29:02', 104, '2024-01-12 10:29:08', 0, NULL, 0),
(20758, 16144, '3', 'Thiruvalluvar University ', '', 'BSC', '2019', 65.00, '', 1, '2024-01-12 05:03:04', 0, NULL, 0, NULL, 1),
(20759, 16145, '3', 'GKM college of engineering and technology ', '', 'Computer science ', '2016', 64.00, '', 1, '2024-01-12 05:20:40', 0, NULL, 0, NULL, 1),
(20760, 16146, '2', 'Tiruppur ', '', '', '2020', 45.05, '', 1, '2024-01-12 05:27:03', 0, NULL, 0, NULL, 1),
(20761, 16147, '4', 'Madras university ', '', 'MBA(HRM)', '2018', 58.00, '', 1, '2024-01-12 05:28:40', 0, NULL, 0, NULL, 1),
(20762, 16148, '3', 'SRM Easwari Engineering college', '', 'BE', '2019', 7.40, '', 1, '2024-01-12 05:31:00', 0, NULL, 0, NULL, 1),
(20763, 16148, '4', 'Madras University', '', '', '2021', 7.90, '', 1, '2024-01-12 05:31:25', 0, NULL, 0, NULL, 1),
(20764, 16149, '4', 'Anna University ', '', 'MBA', '2022', 70.00, '', 1, '2024-01-12 05:42:21', 0, NULL, 0, NULL, 1),
(20765, 16150, '3', 'Periyaruniversity salem', '', 'Bcom ca', '2023', 73.00, '', 1, '2024-01-12 05:43:59', 0, NULL, 0, NULL, 1),
(20766, 16151, '4', 'Anna University ', '', 'MCA', '2023', 82.00, '', 1, '2024-01-12 06:42:00', 0, NULL, 0, NULL, 1),
(20767, 16151, '3', 'Madras University ', '', 'B.SC', '2018', 62.00, '', 1, '2024-01-12 06:42:43', 0, NULL, 0, NULL, 1),
(20768, 16151, '2', 'State board', '', '', '2015', 52.00, '', 1, '2024-01-12 06:43:14', 0, NULL, 0, NULL, 1),
(20769, 16151, '1', 'State board ', '', '', '2015', 73.00, '', 1, '2024-01-12 06:43:46', 0, NULL, 0, NULL, 1),
(20770, 16152, '3', 'Thiruvalluvar University ', '', 'Bachelor of Computer Application', '2017', 78.00, '', 1, '2024-01-12 06:46:14', 0, NULL, 0, NULL, 1),
(20771, 16152, '2', 'State Board ', '', '', '2014', 63.00, '', 1, '2024-01-12 06:46:55', 0, NULL, 0, NULL, 1),
(20772, 16152, '1', 'State Board ', '', '', '2012', 80.00, '', 1, '2024-01-12 06:47:18', 0, NULL, 0, NULL, 1),
(20773, 16154, '4', 'Anna university ', '', 'MBA', '2021', 70.15, '', 1, '2024-01-12 07:29:11', 0, NULL, 0, NULL, 1),
(20774, 16153, '3', 'Madras University ', '', 'BCA', '2023', 77.85, '', 1, '2024-01-12 07:51:24', 0, NULL, 0, NULL, 1),
(20775, 16155, '2', 'Sir Ramaswami Mudaliyar Hr sec school', '', '', '2019', 57.00, '', 1, '2024-01-12 07:58:02', 0, NULL, 0, NULL, 1),
(20776, 16157, '3', 'University', '', 'B.A', '2022', 70.00, '', 1, '2024-01-12 09:54:02', 0, NULL, 0, NULL, 1),
(20777, 16156, '3', 'Madras University ', '', 'Bachelor of Arts in History ', '2023', 68.00, '', 1, '2024-01-12 10:21:16', 0, NULL, 0, NULL, 1),
(20778, 16159, '4', 'Anna University ', '', 'MBA', '2022', 88.00, '', 1, '2024-01-13 04:30:16', 0, NULL, 0, NULL, 1),
(20779, 16159, '3', 'Madras University ', '', 'B A (Business Economics)', '2020', 73.00, '', 1, '2024-01-13 04:30:58', 0, NULL, 0, NULL, 1),
(20780, 16159, '2', 'State board ', '', '', '2017', 94.00, '', 1, '2024-01-13 04:31:17', 0, NULL, 0, NULL, 1),
(20781, 16159, '1', 'State board ', '', '', '2015', 94.00, '', 1, '2024-01-13 04:31:35', 0, NULL, 0, NULL, 1),
(20782, 16160, '1', 'Tamilnadu State Board', '', '', '2017', 91.40, '', 1, '2024-01-13 04:55:16', 0, NULL, 0, NULL, 1),
(20783, 16160, '2', 'Tamilnadu State board', '', '', '2019', 88.17, '', 1, '2024-01-13 04:55:58', 0, NULL, 0, NULL, 1),
(20784, 16160, '3', 'Capital University', '', 'B. Com', '2022', 68.19, '', 1, '2024-01-13 04:56:26', 0, NULL, 0, NULL, 1),
(20785, 16161, '4', 'University of Madras ', '', 'MBA Finance Management ', '2021', 75.00, '', 1, '2024-01-13 05:18:43', 0, NULL, 0, NULL, 1),
(20786, 16161, '3', 'Tiruvalluvar University ', '', 'B.com general ', '2017', 70.00, '', 1, '2024-01-13 05:19:25', 0, NULL, 0, NULL, 1),
(20787, 16161, '2', 'State board ', '', '', '2014', 67.00, '', 1, '2024-01-13 05:19:52', 0, NULL, 0, NULL, 1),
(20788, 16162, '3', 'Anna university ', '', 'Be', '2019', 70.00, '', 1, '2024-01-13 05:41:46', 0, NULL, 0, NULL, 1),
(20789, 16163, '4', 'justice basheer ahmed sayeed college for women', '', 'msc computer science', '2023', 80.00, '', 1, '2024-01-13 05:57:50', 0, NULL, 0, NULL, 1),
(20790, 16163, '3', 'dr.mgr janaki college of arts and science for women', '', 'bca computer applications', '2021', 92.00, '', 1, '2024-01-13 05:59:09', 0, NULL, 0, NULL, 1),
(20791, 16164, '4', 'Bharathidasan university', '', 'Mba', '2019', 55.00, '', 1, '2024-01-13 06:31:58', 0, NULL, 0, NULL, 1),
(20792, 16165, '3', 'Bharathi women\'s college ', '', 'B.A Economics ', '2023', 77.60, '', 1, '2024-01-13 07:32:58', 0, NULL, 0, NULL, 1),
(20793, 16166, '3', 'Sathyabama Institute of science and technology ', '', 'Bachelor of business administration ', '2022', 72.50, '', 1, '2024-01-13 09:29:38', 0, NULL, 0, NULL, 1),
(20794, 16167, '3', 'MIT anna university ', '', 'BE', '2019', 79.00, '', 1, '2024-01-13 10:08:10', 0, NULL, 0, NULL, 1),
(20795, 16167, '2', 'State board', '', '', '2015', 91.00, '', 1, '2024-01-13 10:08:38', 0, NULL, 0, NULL, 1),
(20796, 16167, '1', 'State board', '', '', '2013', 88.40, '', 1, '2024-01-13 10:08:59', 0, NULL, 0, NULL, 1),
(20797, 16170, '3', 'Anna University ', '', 'B.E. Mechanical Engineering ', '2019', 65.00, '', 1, '2024-01-17 04:26:34', 0, NULL, 0, NULL, 1),
(20798, 16171, '3', 'madras university', '', 'Computer science ', '2023', 74.00, '', 1, '2024-01-17 04:31:31', 0, NULL, 0, NULL, 1),
(20799, 16172, '4', 'Dr MGR Educational and research Institute ', '', 'MCA', '2023', 80.00, '', 1, '2024-01-17 04:32:38', 0, NULL, 0, NULL, 1),
(20800, 16173, '3', 'Kcs kasi nadar colleg of arts and science', '', 'Bsc computer science', '2021', 72.00, '', 1, '2024-01-17 04:59:14', 0, NULL, 0, NULL, 1),
(20801, 16173, '2', 'Government Higher Secondary School ', '', '', '2018', 76.00, '', 1, '2024-01-17 04:59:52', 0, NULL, 0, NULL, 1),
(20802, 16173, '1', 'Government higher secondary school', '', '', '2016', 94.00, '', 1, '2024-01-17 05:00:23', 0, NULL, 0, NULL, 1),
(20803, 16174, '3', 'srm institute of science and technology', '', 'bsc cs', '2020', 8.90, '', 1, '2024-01-17 05:12:55', 0, NULL, 0, NULL, 1),
(20804, 16176, '4', 'Patrician College of Arts and science', '', 'Msc', '2022', 78.00, '', 1, '2024-01-17 05:22:17', 0, NULL, 0, NULL, 1),
(20805, 16176, '3', 'Patrician College of Arts and science', '', 'Msc', '2020', 62.00, '', 1, '2024-01-17 05:22:43', 0, NULL, 0, NULL, 1),
(20806, 16175, '3', 'm.p.nachimuthu m.jaganathan engineering college', '', 'b e computer science and engineering ', '2023', 7.56, '', 1, '2024-01-17 05:31:30', 0, NULL, 0, NULL, 1),
(20807, 16177, '3', 'vels institute of technology ', '', 'BE- Mechanical Engineering ', '2024', 75.00, '', 1, '2024-01-17 06:02:18', 0, NULL, 0, NULL, 1),
(20808, 16178, '3', 'Madras university', '', 'B.Sc ', '2021', 77.00, '', 1, '2024-01-17 06:09:12', 0, NULL, 0, NULL, 1),
(20809, 16179, '3', 'madurai kamaraj university', '', 'B.Com (computer applications)', '2022', 63.00, '', 1, '2024-01-17 07:03:20', 0, NULL, 0, NULL, 1),
(20810, 16179, '2', 'Devangan higher secondary school ', '', '', '2017', 50.00, '', 1, '2024-01-17 07:04:10', 0, NULL, 0, NULL, 1),
(20811, 16179, '1', 'Devangan higher secondary school in chinnalapatti ', '', '', '2019', 50.00, '', 1, '2024-01-17 07:04:49', 0, NULL, 0, NULL, 1),
(20812, 16180, '4', 'The new college,Chennai', '', 'Msc cs', '2023', 78.00, '', 1, '2024-01-17 07:07:38', 0, NULL, 0, NULL, 1),
(20813, 16182, '3', 'Shanmuga Industries Arts and science College ', '', 'Bachelor of Computer science ', '2023', 78.00, '', 1, '2024-01-17 09:19:52', 0, NULL, 0, NULL, 1),
(20814, 16182, '2', 'Jayam Matric Higher Secondary School ', '', '', '2020', 60.00, '', 1, '2024-01-17 09:20:28', 0, NULL, 0, NULL, 1),
(20815, 16182, '1', 'Jayam Matric Higher Secondary school ', '', '', '2018', 75.00, '', 1, '2024-01-17 09:20:45', 0, NULL, 0, NULL, 1),
(20816, 16183, '3', 'Misrimal Navajee Munoth Jain Engineering College ', '', 'Bachelor of Engineering ', '2018', 73.00, '', 1, '2024-01-17 09:29:32', 0, NULL, 0, NULL, 1),
(20817, 16183, '2', 'State Board', '', '', '2014', 89.00, '', 1, '2024-01-17 09:29:55', 0, NULL, 0, NULL, 1),
(20818, 16183, '1', 'State Board', '', '', '2012', 85.00, '', 1, '2024-01-17 09:30:15', 0, NULL, 0, NULL, 1),
(20819, 16184, '3', 'Autonomous ', '', 'Bcom ', '2021', 55.00, '', 1, '2024-01-17 11:17:00', 0, NULL, 0, NULL, 1),
(20820, 16185, '3', 'Madras University ', '', 'BBA', '2022', 70.00, '', 1, '2024-01-17 03:01:06', 0, NULL, 0, NULL, 1),
(20821, 16186, '3', 'Madras', '', 'B.com', '1999', 80.00, '', 1, '2024-01-18 04:37:25', 0, NULL, 0, NULL, 1),
(20822, 16188, '4', 'bhartiyar university', '', 'M. sc electronics', '2022', 82.00, '', 1, '2024-01-18 04:47:40', 0, NULL, 0, NULL, 1),
(20823, 16189, '3', 'University ', '', 'Bachelor of Commerce ', '2023', 80.00, '', 1, '2024-01-18 04:48:37', 0, NULL, 0, NULL, 1),
(20824, 16188, '3', 'manomaniyam sundarar university', '', 'B. sc electronics', '2020', 75.00, '', 1, '2024-01-18 04:48:59', 0, NULL, 0, NULL, 1),
(20825, 16189, '1', 'Board', '', '', '2018', 84.00, '', 1, '2024-01-18 04:50:04', 1, '2024-01-18 04:50:44', 0, NULL, 0),
(20826, 16189, '2', 'Board', '', '', '2020', 78.00, '', 1, '2024-01-18 04:50:58', 0, NULL, 0, NULL, 1),
(20827, 16191, '3', 'Madras University ', '', 'Bsc computer science ', '2018', 70.00, '', 1, '2024-01-18 04:52:58', 0, NULL, 0, NULL, 1),
(20828, 16191, '4', 'Madras University ', '', 'MBA', '2020', 60.00, '', 1, '2024-01-18 04:53:25', 0, NULL, 0, NULL, 1),
(20829, 16191, '2', 'State board', '', '', '2015', 70.00, '', 1, '2024-01-18 04:53:45', 0, NULL, 0, NULL, 1),
(20830, 16191, '1', 'State board ', '', '', '2013', 80.00, '', 1, '2024-01-18 04:54:03', 0, NULL, 0, NULL, 1),
(20831, 16190, '3', 'Madras university', '', 'BA. Defence', '2023', 76.00, '', 1, '2024-01-18 04:56:13', 0, NULL, 0, NULL, 1),
(20832, 16192, '3', 'University of Madras ', '', 'Bachelor\'s', '2023', 79.40, '', 1, '2024-01-18 05:01:42', 0, NULL, 0, NULL, 1),
(20833, 16192, '2', 'State board ', '', '', '2020', 71.60, '', 1, '2024-01-18 05:02:14', 0, NULL, 0, NULL, 1),
(20834, 16192, '1', 'State board ', '', '', '2018', 82.00, '', 1, '2024-01-18 05:02:42', 0, NULL, 0, NULL, 1),
(20835, 16193, '3', 'Bharathidasan University ', '', 'BCA ', '2023', 60.00, '', 1, '2024-01-18 05:05:00', 0, NULL, 0, NULL, 1),
(20836, 16194, '3', 'Madras University ', '', 'BCA', '2023', 65.00, '', 1, '2024-01-18 05:08:51', 0, NULL, 0, NULL, 1),
(20837, 16187, '3', 'Meenakshi college for woman ', '', 'Bcom', '2021', 85.00, '', 1, '2024-01-18 05:09:03', 0, NULL, 0, NULL, 1),
(20838, 16195, '4', 'Cdac', '', 'Post graduation in Advance computing ', '2022', 66.00, '', 1, '2024-01-18 05:24:44', 0, NULL, 0, NULL, 1),
(20839, 16195, '3', 'Biju patnaik University ', '', 'B.tech', '2016', 74.00, '', 1, '2024-01-18 05:25:56', 0, NULL, 0, NULL, 1),
(20840, 16196, '3', 'Pavendar Bharathidasan college of engineering and technology ', '', 'B.tech', '2023', 7.80, '', 1, '2024-01-18 05:45:39', 0, NULL, 0, NULL, 1),
(20841, 16197, '3', 'Himalayan university', '', 'BBA', '2018', 80.00, '', 1, '2024-01-18 06:38:12', 0, NULL, 0, NULL, 1),
(20842, 16197, '2', 'Stateboard', '', '', '2013', 67.00, '', 1, '2024-01-18 06:38:58', 0, NULL, 0, NULL, 1),
(20843, 16199, '3', 'The New College ', '', 'Bachelor of computer science ', '2023', 79.00, '', 1, '2024-01-18 06:51:45', 0, NULL, 0, NULL, 1),
(20844, 16200, '4', 'Jerusalem collage of engineering ', '', 'MBA HR ', '2021', 74.00, '', 1, '2024-01-18 08:46:37', 0, NULL, 0, NULL, 1),
(20845, 16201, '3', 'Agni college of technology ', '', 'B.tech', '2024', 8.17, '', 1, '2024-01-18 08:51:49', 0, NULL, 0, NULL, 1),
(20846, 16202, '3', 'Madras University ', '', 'B.sc. Computer science ', '2022', 80.00, '', 1, '2024-01-18 09:19:35', 0, NULL, 0, NULL, 1),
(20847, 8732, '2', 'Hindu school', '', '', '2015', 70.00, '', 1, '2024-01-18 09:31:15', 0, NULL, 0, NULL, 1),
(20848, 8732, '3', 'Patrician college ', '', 'Bcom', '2018', 70.00, '', 1, '2024-01-18 09:31:43', 0, NULL, 0, NULL, 1),
(20849, 16203, '3', 'Anna University ', '', 'B. Tech', '2023', 7.20, '', 1, '2024-01-18 09:33:28', 0, NULL, 0, NULL, 1),
(20850, 16204, '3', 'University ', '', 'BCA DATABASE ', '2022', 70.00, '', 1, '2024-01-18 09:47:41', 0, NULL, 0, NULL, 1),
(20851, 16206, '3', 'Madras university ', '', 'BCA ', '2023', 80.00, '', 1, '2024-01-18 10:28:21', 0, NULL, 0, NULL, 1),
(20852, 16205, '3', 'Madara University of Chennai ', '', 'BCA ', '2023', 79.00, '', 1, '2024-01-18 10:28:27', 0, NULL, 0, NULL, 1),
(20853, 16207, '3', 'madras university', '', 'bcom ', '2023', 85.00, '', 1, '2024-01-18 10:39:58', 0, NULL, 0, NULL, 1),
(20854, 16208, '3', 'Anna Uni', '', 'B.E -CSE', '2023', 85.00, '', 1, '2024-01-19 04:24:59', 0, NULL, 0, NULL, 1),
(20855, 16210, '3', 'vel tech engineering college', '', 'be', '2019', 63.00, '', 1, '2024-01-19 04:35:23', 0, NULL, 0, NULL, 1),
(20856, 16209, '3', 'Anna University', '', 'B.E Electrical and Electronics Engineering ', '2019', 76.50, '', 1, '2024-01-19 04:36:52', 0, NULL, 0, NULL, 1),
(20857, 16211, '3', 'Gurunanak college', '', 'Bsc', '2023', 84.46, '', 1, '2024-01-19 04:52:49', 0, NULL, 0, NULL, 1),
(20858, 16212, '3', 'University of madras ', '', 'B.com', '2020', 70.00, '', 1, '2024-01-19 05:02:16', 0, NULL, 0, NULL, 1),
(20859, 16213, '3', 'KCG college of Technology', '', 'BE', '2023', 84.70, '', 1, '2024-01-19 05:15:17', 0, NULL, 0, NULL, 1),
(20860, 16214, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2021', 8.25, '', 1, '2024-01-19 05:33:28', 0, NULL, 0, NULL, 1),
(20861, 16214, '2', 'State board', '', '', '2017', 82.83, '', 1, '2024-01-19 05:34:42', 0, NULL, 0, NULL, 1),
(20862, 16214, '1', 'State board', '', '', '2015', 93.04, '', 1, '2024-01-19 05:35:20', 0, NULL, 0, NULL, 1),
(20863, 16216, '3', 'Dr.M.G.R educational and research institute of technology ', '', 'BCA', '2023', 7.93, '', 1, '2024-01-19 05:47:10', 0, NULL, 0, NULL, 1),
(20864, 16215, '3', 'Ramakrishna Mission Vivekananda College ', '', 'B.con', '2022', 8.20, '', 1, '2024-01-19 05:50:48', 0, NULL, 0, NULL, 1),
(20865, 16215, '2', 'Sai Matriculation Higher secondary school ', '', '', '2019', 85.50, '', 1, '2024-01-19 05:51:37', 0, NULL, 0, NULL, 1),
(20866, 16218, '3', 'Chevalier T Thomas Elizabeth college for women ', '', 'B com', '2019', 80.00, '', 1, '2024-01-19 05:51:52', 0, NULL, 0, NULL, 1),
(20867, 16215, '1', 'Sai Matriculation Higher secondary school ', '', '', '2017', 89.50, '', 1, '2024-01-19 05:52:10', 0, NULL, 0, NULL, 1),
(20868, 16217, '3', 'Women\'s Christians College', '', 'B.Com(Computer Applications)', '2022', 67.20, '', 1, '2024-01-19 06:23:06', 0, NULL, 0, NULL, 1),
(20869, 16219, '3', 'Anna University ', '', 'Bachelor of Civil Engineering ', '2020', 6.90, '', 1, '2024-01-19 06:27:23', 0, NULL, 0, NULL, 1),
(20870, 16221, '3', 'Madras University ', '', 'Bachelor Degree ', '2014', 70.00, '', 1, '2024-01-19 06:51:26', 0, NULL, 0, NULL, 1),
(20871, 16220, '3', 'Manonmaniam sundaranar university', '', 'BBA ', '2017', 60.00, '', 1, '2024-01-19 07:00:09', 0, NULL, 0, NULL, 1),
(20872, 16223, '3', 'Kamaraj University ', '', 'Bcom computer Application ', '2023', 71.00, '', 1, '2024-01-19 07:59:03', 0, NULL, 0, NULL, 1),
(20873, 16222, '3', 'Anna University ', '', 'BE', '2021', 7.40, '', 1, '2024-01-19 08:00:18', 0, NULL, 0, NULL, 1),
(20874, 16224, '4', 'University of madras', '', 'MBA', '2024', 70.00, '', 1, '2024-01-19 08:11:54', 0, NULL, 0, NULL, 1),
(20875, 16225, '3', ' srm university', '', 'bsc.cs', '2021', 60.00, '', 1, '2024-01-19 01:11:23', 0, NULL, 0, NULL, 1),
(20876, 16226, '3', 'Anna University ', '', 'B.E', '2015', 61.00, '', 1, '2024-01-19 04:43:30', 0, NULL, 0, NULL, 1),
(20877, 16227, '2', 'TAMILNADU BOARD', '', '', '2017', 89.00, '', 1, '2024-01-20 03:56:55', 0, NULL, 0, NULL, 1),
(20878, 16227, '3', 'Anna University', '', 'B.E ECE', '2021', 74.00, '', 1, '2024-01-20 03:57:32', 0, NULL, 0, NULL, 1),
(20879, 16228, '4', 'Bharathiar University ', '', 'MSC Software Systems', '2023', 78.00, '', 1, '2024-01-20 04:18:09', 0, NULL, 0, NULL, 1),
(20880, 16230, '3', 'anna universi ', '', 'be comp science ', '2023', 80.00, '', 1, '2024-01-20 04:18:59', 0, NULL, 0, NULL, 1),
(20881, 16228, '2', 'Vimal jothi convent matric higher secondary school ', '', '', '2018', 81.00, '', 1, '2024-01-20 04:19:33', 0, NULL, 0, NULL, 1),
(20882, 16228, '1', 'Ruby matric higher secondary school ', '', '', '2016', 92.00, '', 1, '2024-01-20 04:20:05', 0, NULL, 0, NULL, 1),
(20883, 16230, '1', 'akt acadam high sec schools kallakurichi', '', '', '2017', 74.00, '', 1, '2024-01-20 04:20:06', 0, NULL, 0, NULL, 1),
(20884, 16230, '2', 'magalore model school ', '', '', '2019', 57.00, '', 1, '2024-01-20 04:20:43', 0, NULL, 0, NULL, 1),
(20885, 16229, '3', 'Vivekananda\' collage Madurai', '', 'B. Com', '2021', 68.70, '', 1, '2024-01-20 04:28:03', 0, NULL, 0, NULL, 1),
(20886, 16233, '3', 'Anna university', '', 'BE/ computer science engineering', '2023', 79.00, '', 1, '2024-01-20 04:37:44', 0, NULL, 0, NULL, 1),
(20887, 16232, '3', 'Alagappa University ', '', 'Bsc(Electronics)', '2020', 70.00, '', 1, '2024-01-20 04:38:36', 0, NULL, 0, NULL, 1),
(20888, 0, '3', 'Anna University', '', 'BE', '2023', 79.00, '', 1, '2024-01-20 04:46:49', 1, '2024-01-20 05:34:30', 0, NULL, 0),
(20889, 16235, '3', 'Annamalai University ', '', 'Bachelor\'s of civil engineering ', '2017', 65.00, '', 1, '2024-01-20 04:58:19', 0, NULL, 0, NULL, 1),
(20890, 16238, '4', 'Pondicherry engineering college ', '', 'MCA', '2022', 8.00, '', 1, '2024-01-20 05:03:04', 0, NULL, 0, NULL, 1),
(20891, 16238, '1', 'Govt girls higher secondary school ', '', '', '2015', 72.25, '', 1, '2024-01-20 05:05:04', 0, NULL, 0, NULL, 1),
(20892, 16238, '2', 'Govt girls high school ', '', '', '2017', 50.20, '', 1, '2024-01-20 05:05:31', 0, NULL, 0, NULL, 1),
(20893, 16238, '3', 'Achariya Arts and science college ', '', 'BCA', '2020', 7.23, '', 1, '2024-01-20 05:06:05', 0, NULL, 0, NULL, 1),
(20894, 16239, '4', 'sathyabama university', '', 'mba', '2023', 83.00, '', 1, '2024-01-20 05:06:56', 0, NULL, 0, NULL, 1),
(20895, 16236, '1', 'Alpha English higher secondary school ', '', '', '2015', 89.20, '', 1, '2024-01-20 05:06:58', 0, NULL, 0, NULL, 1),
(20896, 16237, '1', 'STATE BOARD OF TAMILNADU', '', '', '2013', 91.00, '', 1, '2024-01-20 05:07:10', 0, NULL, 0, NULL, 1),
(20897, 16239, '3', 'anna university', '', 'bachelor of engineering', '2021', 72.00, '', 1, '2024-01-20 05:07:34', 0, NULL, 0, NULL, 1),
(20898, 16236, '2', 'Alpha English higher secondary school ', '', '', '2017', 86.40, '', 1, '2024-01-20 05:07:59', 0, NULL, 0, NULL, 1),
(20899, 16237, '2', 'STATE BOARD OF TAMILNADU', '', '', '2015', 93.73, '', 1, '2024-01-20 05:08:15', 0, NULL, 0, NULL, 1),
(20900, 16236, '3', 'Indira Gandhi College of arts and science ', '', 'BCA', '2020', 81.90, '', 1, '2024-01-20 05:08:43', 0, NULL, 0, NULL, 1),
(20901, 16236, '4', 'Puducherry technological University ', '', 'MCA', '2022', 89.60, '', 1, '2024-01-20 05:09:25', 0, NULL, 0, NULL, 1),
(20902, 16237, '3', 'ANNA UNIVERSITY', '', 'B.E MECHANICAL', '2019', 72.00, '', 1, '2024-01-20 05:09:32', 0, NULL, 0, NULL, 1),
(20903, 16234, '3', 'Anna university', '', 'BE(CSE) ', '2023', 79.00, '', 1, '2024-01-20 05:10:27', 0, NULL, 0, NULL, 1),
(20904, 16234, '2', 'Bharathidasanar mat hr sec school', '', '', '2019', 75.00, '', 1, '2024-01-20 05:11:01', 0, NULL, 0, NULL, 1),
(20905, 16234, '1', 'Bharathidasanar mat hr sec school', '', '', '2017', 91.00, '', 1, '2024-01-20 05:11:38', 0, NULL, 0, NULL, 1),
(20906, 16240, '3', 'Anna University ', '', 'B.E', '2023', 70.00, '', 1, '2024-01-20 05:18:54', 0, NULL, 0, NULL, 1),
(20907, 16240, '2', 'ST.Andrews matric Hr sec school ', '', '', '2019', 68.00, '', 1, '2024-01-20 05:20:07', 0, NULL, 0, NULL, 1),
(20908, 16240, '1', 'St.Andrews Martic Hr sec school ', '', '', '2017', 81.00, '', 1, '2024-01-20 05:20:48', 0, NULL, 0, NULL, 1),
(20909, 16241, '3', 'University of madras ', '', 'BCA', '2023', 80.00, '', 1, '2024-01-20 05:28:49', 0, NULL, 0, NULL, 1),
(20910, 16242, '3', 'srm university', '', 'b.com ism', '2022', 58.00, '', 1, '2024-01-20 05:34:32', 0, NULL, 0, NULL, 1),
(20911, 16243, '3', 'Rgpv', '', 'B Tech', '2023', 82.00, '', 1, '2024-01-20 05:35:13', 0, NULL, 0, NULL, 1),
(20912, 16243, '5', 'BTE Delhi', '', 'Diploma', '2018', 67.00, '', 1, '2024-01-20 05:36:06', 0, NULL, 0, NULL, 1),
(20913, 16243, '2', 'CBSE', '', '', '2015', 83.00, '', 1, '2024-01-20 05:36:31', 0, NULL, 0, NULL, 1),
(20914, 16244, '3', 'Thiruvalluvar University ', '', 'BBA ', '2023', 80.00, '', 1, '2024-01-20 05:46:36', 0, NULL, 0, NULL, 1),
(20915, 16246, '3', 'Thiruvalluvar University Vellore ', '', 'BCA', '2023', 68.00, '', 1, '2024-01-20 06:13:46', 0, NULL, 0, NULL, 1),
(20916, 16245, '3', 'Thiruvalluvar University ', '', 'Bsc computer science ', '2023', 68.00, '', 1, '2024-01-20 06:13:47', 0, NULL, 0, NULL, 1),
(20917, 16247, '3', 'University of Madras ', '', 'B.Com cS', '2014', 61.00, '', 1, '2024-01-20 07:37:21', 0, NULL, 0, NULL, 1),
(20918, 16249, '3', 'Veltech University ', '', 'B.tech', '2021', 71.30, '', 1, '2024-01-20 09:39:37', 0, NULL, 0, NULL, 1),
(20919, 16250, '2', 'State board', '', '', '2016', 89.60, '', 1, '2024-01-20 09:46:16', 0, NULL, 0, NULL, 1),
(20920, 16250, '1', 'State board ', '', '', '2018', 79.00, '', 1, '2024-01-20 09:46:38', 0, NULL, 0, NULL, 1),
(20921, 16250, '3', 'Anna University ', '', 'BE', '2022', 7.80, '', 1, '2024-01-20 09:47:11', 0, NULL, 0, NULL, 1),
(20922, 16248, '3', 'Anna University ', '', '', '2013', 60.00, '', 1, '2024-01-20 09:55:18', 0, NULL, 0, NULL, 1),
(20923, 16251, '4', 'Anna University ', '', 'Mca', '2022', 78.00, '', 1, '2024-01-20 10:23:39', 1, '2024-01-20 10:26:06', 0, NULL, 1),
(20924, 16251, '3', 'Bharadithasan University ', '', 'Bsc computer science ', '2020', 63.00, '', 1, '2024-01-20 10:24:35', 0, NULL, 0, NULL, 1),
(20925, 16251, '2', 'State board ', '', '', '2017', 49.00, '', 1, '2024-01-20 10:25:05', 0, NULL, 0, NULL, 1),
(20926, 16251, '1', 'State board ', '', '', '2015', 73.00, '', 1, '2024-01-20 10:25:44', 1, '2024-01-20 10:26:29', 0, NULL, 1),
(20927, 16254, '3', 'anna university', '', 'B.E', '2023', 76.00, '', 1, '2024-01-22 04:14:42', 0, NULL, 0, NULL, 1),
(20928, 16256, '3', 'Anna University ', '', 'B.E,CSE', '2023', 76.00, '', 1, '2024-01-22 04:32:02', 0, NULL, 0, NULL, 1),
(20929, 16257, '4', 'Thiruvalluvar University ', '', 'M.Sc Computer science ', '2022', 90.00, '', 1, '2024-01-22 04:40:36', 0, NULL, 0, NULL, 1),
(20930, 16257, '3', 'Bharathidasan University ', '', 'B.Sc Computer science ', '2020', 79.00, '', 1, '2024-01-22 04:42:05', 0, NULL, 0, NULL, 1),
(20931, 16259, '3', 'University of Madras', '', 'B.com general', '2022', 76.00, '', 1, '2024-01-22 04:42:16', 0, NULL, 0, NULL, 1),
(20932, 16258, '4', 'University of Madras ', '', 'MBA', '2010', 69.00, '', 1, '2024-01-22 04:43:28', 0, NULL, 0, NULL, 1),
(20933, 16258, '3', 'University of Madras ', '', 'B.Com', '2008', 58.00, '', 1, '2024-01-22 04:44:01', 0, NULL, 0, NULL, 1),
(20934, 16258, '2', 'SJNS Jain Vidhyala Matriculation Hr Sec School ', '', '', '2005', 68.00, '', 1, '2024-01-22 04:44:55', 0, NULL, 0, NULL, 1),
(20935, 16258, '1', 'THSSS', '', '', '2003', 62.00, '', 1, '2024-01-22 04:45:26', 0, NULL, 0, NULL, 1),
(20936, 16255, '3', 'Madras', '', 'B.Com', '2019', 60.00, '', 1, '2024-01-22 04:47:05', 0, NULL, 0, NULL, 1),
(20937, 16260, '3', 'MADRAS UNIVERSITY', '', 'BACHELOR OF BUSINESS ADMINISTRATION', '2023', 74.00, '', 1, '2024-01-22 04:56:05', 0, NULL, 0, NULL, 1),
(20938, 16261, '3', 'Anna university', '', 'Bachelor of engineering', '2019', 60.00, '', 1, '2024-01-22 05:05:43', 0, NULL, 0, NULL, 1),
(20939, 16265, '4', 'Bharathidasan University ', '', 'MBA ( HR & marketing)', '2023', 70.00, '', 1, '2024-01-22 05:12:01', 0, NULL, 0, NULL, 1),
(20940, 16265, '4', 'Bharathidasan University ', '', 'MBA  (HR)', '2023', 75.00, '', 1, '2024-01-22 05:12:52', 0, NULL, 0, NULL, 1),
(20941, 16266, '1', 'State board ', '', '', '2013', 85.00, '', 1, '2024-01-22 05:14:33', 0, NULL, 0, NULL, 1),
(20942, 16266, '2', 'State board ', '', '', '2015', 65.50, '', 1, '2024-01-22 05:15:19', 0, NULL, 0, NULL, 1),
(20943, 16264, '3', 'MS University', '', 'bsc.zoology', '2023', 65.00, '', 1, '2024-01-22 05:15:25', 0, NULL, 0, NULL, 1),
(20944, 16266, '3', 'Anna University ', '', 'B.E', '2019', 69.70, '', 1, '2024-01-22 05:15:41', 0, NULL, 0, NULL, 1),
(20945, 16267, '3', 'Dhanalakshmi Srinivasan College of engineering and Technology ', '', 'B.E Electronics and Communication Engineering ', '2021', 7.44, '', 1, '2024-01-22 05:15:41', 0, NULL, 0, NULL, 1),
(20946, 16262, '3', 'Madras University ', '', 'B.com CS', '2023', 56.17, '', 1, '2024-01-22 05:16:40', 0, NULL, 0, NULL, 1),
(20947, 16266, '4', 'University of madras ', '', 'mBA', '2022', 72.30, '', 1, '2024-01-22 05:17:17', 0, NULL, 0, NULL, 1),
(20948, 16268, '3', 'Alagappa university', '', 'B. Sc. Computer science', '2023', 78.00, '', 1, '2024-01-22 05:17:38', 0, NULL, 0, NULL, 1),
(20949, 16263, '4', 'Dwaraka Doss Goverdhan Doss Vaishnav College', '', 'M. a Business Economics', '2020', 79.00, '', 1, '2024-01-22 05:23:10', 0, NULL, 0, NULL, 1),
(20950, 16270, '3', 'anna university', '', 'be', '2023', 7.43, '', 1, '2024-01-22 05:24:04', 0, NULL, 0, NULL, 1),
(20951, 16269, '4', 'srm university ', '', 'mca', '2024', 8.02, '', 1, '2024-01-22 05:26:40', 0, NULL, 0, NULL, 1),
(20952, 16271, '3', 'M.s.University', '', 'B sc', '2022', 71.00, '', 1, '2024-01-22 05:27:51', 0, NULL, 0, NULL, 1),
(20953, 16253, '4', 'Tiruvalluvar University ', '', 'MCA ', '2018', 80.00, '', 1, '2024-01-22 05:38:45', 0, NULL, 0, NULL, 1),
(20954, 16272, '3', 'Einstein college of arts & science', '', 'Bsc computer science', '2023', 7.00, '', 1, '2024-01-22 06:05:51', 0, NULL, 0, NULL, 1),
(20955, 16273, '3', 'Mumbai University ', '', 'Bachelor of Banking & Insurance', '2016', 62.00, '', 1, '2024-01-22 06:25:15', 0, NULL, 0, NULL, 1),
(20956, 16275, '3', 'PSN Enginnering college ', '', 'B Tech', '2023', 7.90, '', 1, '2024-01-22 06:34:33', 0, NULL, 0, NULL, 1),
(20957, 16277, '3', 'State Board ', '', 'B.Com', '2023', 77.00, '', 1, '2024-01-22 06:53:53', 1, '2024-01-22 06:54:09', 0, NULL, 0),
(20958, 16277, '1', 'Board', '', '', '2018', 84.00, '', 1, '2024-01-22 06:54:29', 0, NULL, 0, NULL, 1),
(20959, 16277, '2', 'Boarx', '', '', '2020', 86.00, '', 1, '2024-01-22 06:54:42', 0, NULL, 0, NULL, 1),
(20960, 16277, '3', 'Deemed University ', '', 'B.com', '2023', 77.00, '', 1, '2024-01-22 06:55:09', 0, NULL, 0, NULL, 1),
(20961, 16278, '3', 'Madras University ', '', 'BCA', '2020', 62.00, '', 1, '2024-01-22 07:15:04', 0, NULL, 0, NULL, 1),
(20962, 16280, '5', 'Kamarajar university', '', 'Electrical and electronic', '2020', 69.00, '', 1, '2024-01-22 07:30:49', 0, NULL, 0, NULL, 1),
(20963, 16281, '3', 'University ', '', 'Bsc', '2023', 86.00, '', 1, '2024-01-22 07:46:05', 0, NULL, 0, NULL, 1),
(20964, 16285, '3', 'Anna University ', '', 'B.E (EEE)', '2020', 69.00, '', 1, '2024-01-22 08:41:17', 0, NULL, 0, NULL, 1),
(20965, 16286, '1', 'Tamil Nadu State Board', '', '', '2017', 95.80, '', 1, '2024-01-22 09:19:45', 0, NULL, 0, NULL, 1),
(20966, 16284, '3', 'Anna University ', '', 'B.E (Mechanical Engineering)', '2019', 67.00, '', 1, '2024-01-22 09:19:52', 0, NULL, 0, NULL, 1),
(20967, 16287, '3', 'Anna University ', '', 'Bachelor of Technology - Information Technology ', '2023', 75.00, '', 1, '2024-01-22 09:19:55', 0, NULL, 0, NULL, 1),
(20968, 16286, '2', 'Tamil Nadu State Board', '', '', '2019', 70.80, '', 1, '2024-01-22 09:20:16', 0, NULL, 0, NULL, 1),
(20969, 16287, '1', 'National matriculation higher secondary school ', '', '', '2017', 94.80, '', 1, '2024-01-22 09:20:19', 0, NULL, 0, NULL, 1),
(20970, 16282, '3', 'Madrid university', '', 'Bsc computer science', '2020', 65.00, '', 1, '2024-01-22 09:20:21', 0, NULL, 0, NULL, 1),
(20971, 16287, '2', 'National matriculation higher secondary school ', '', '', '2019', 78.80, '', 1, '2024-01-22 09:20:33', 0, NULL, 0, NULL, 1),
(20972, 16286, '3', 'Anna University', '', 'B. Tech', '2023', 80.20, '', 1, '2024-01-22 09:20:50', 0, NULL, 0, NULL, 1),
(20973, 16283, '3', 'Quaid -e-millath govt women college ', '', 'B.com general ', '2022', 74.00, '', 1, '2024-01-22 09:21:39', 0, NULL, 0, NULL, 1),
(20974, 16288, '3', 'Anna University ', '', 'b.E', '2020', 71.00, '', 1, '2024-01-22 09:27:25', 0, NULL, 0, NULL, 1),
(20975, 16289, '3', 'bharathidasan university', '', 'BSc computer science ', '2022', 7.00, '', 1, '2024-01-22 09:34:53', 0, NULL, 0, NULL, 1),
(20976, 16292, '3', 'Anna University ', '', 'BTech ', '2023', 78.00, '', 1, '2024-01-22 10:08:07', 0, NULL, 0, NULL, 1),
(20977, 16293, '3', 'Anna University ', '', 'B.Tech iT', '2023', 7.90, '', 1, '2024-01-22 10:08:25', 0, NULL, 0, NULL, 1),
(20978, 16291, '4', 'Dr mgr University ', '', 'Mca', '2023', 6.90, '', 1, '2024-01-22 10:08:33', 0, NULL, 0, NULL, 1),
(20979, 16292, '2', 'State Board ', '', '', '2019', 70.60, '', 1, '2024-01-22 10:08:49', 1, '2024-01-22 10:09:43', 0, NULL, 1),
(20980, 16291, '3', 'Jamal Mohamed college ', '', 'Bsc physics', '2021', 7.20, '', 1, '2024-01-22 10:09:06', 0, NULL, 0, NULL, 1),
(20981, 16292, '1', 'State Board ', '', '', '2016', 90.60, '', 1, '2024-01-22 10:09:30', 0, NULL, 0, NULL, 1),
(20982, 16293, '1', 'State Board ', '', '', '2017', 85.00, '', 1, '2024-01-22 10:09:35', 1, '2024-01-22 10:10:59', 0, NULL, 1),
(20983, 16293, '2', 'State board', '', '', '2019', 55.00, '', 1, '2024-01-22 10:10:15', 0, NULL, 0, NULL, 1),
(20984, 0, '4', 'Madras university ', '', 'MCA', '2022', 65.00, '', 1, '2024-01-22 10:40:20', 1, '2024-01-23 05:55:39', 0, NULL, 0);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(20985, 16294, '4', 'Madras university ', '', 'MCA', '2022', 68.00, '', 1, '2024-01-22 10:53:42', 0, NULL, 0, NULL, 1),
(20986, 16294, '3', 'Sri sankara arts and science college ', '', 'Bsc computer science and technology ', '2019', 67.00, '', 1, '2024-01-22 10:54:01', 0, NULL, 0, NULL, 1),
(20987, 16295, '3', 'Justice basheer ahmed sayeed college for women', '', 'Bcom general', '2023', 70.00, '', 1, '2024-01-22 11:24:37', 0, NULL, 0, NULL, 1),
(20988, 16298, '4', 'SCSVMV University', '', 'M.B.A', '2017', 86.70, '', 1, '2024-01-23 04:44:43', 0, NULL, 0, NULL, 1),
(20989, 16298, '3', 'Sri Muthukumaran institute of technology', '', 'E.C.E', '2015', 72.80, '', 1, '2024-01-23 04:45:12', 0, NULL, 0, NULL, 1),
(20990, 16298, '2', 'State board', '', '', '2011', 90.00, '', 1, '2024-01-23 04:45:45', 0, NULL, 0, NULL, 1),
(20991, 16298, '1', 'State board', '', '', '2009', 89.00, '', 1, '2024-01-23 04:45:57', 0, NULL, 0, NULL, 1),
(20992, 16297, '4', 'Madhurai kamaraj University ', '', 'M.sc maths', '2022', 81.50, '', 1, '2024-01-23 04:53:42', 0, NULL, 0, NULL, 1),
(20993, 16296, '3', 'Manonmaniyam sundharanar University', '', 'B. Sc Mathematics', '2022', 80.00, '', 1, '2024-01-23 04:56:12', 0, NULL, 0, NULL, 1),
(20994, 16302, '3', 'Anna University ', '', 'BE Mechanical engineering ', '2021', 80.00, '', 1, '2024-01-23 05:37:34', 0, NULL, 0, NULL, 1),
(20995, 16301, '3', 'Pondicherry  university', '', 'B. Tech(ECE) ', '2018', 8.10, '', 1, '2024-01-23 05:40:24', 0, NULL, 0, NULL, 1),
(20996, 16300, '3', 'Anna University ', '', 'BE', '2015', 63.00, '', 1, '2024-01-23 05:40:58', 0, NULL, 0, NULL, 1),
(20997, 16300, '4', 'Annamalai University ', '', 'Diploma in Industrial Safety ', '2016', 60.00, '', 1, '2024-01-23 05:43:14', 0, NULL, 0, NULL, 1),
(20998, 16304, '3', 'University ', '', 'BE (CSE)', '2023', 9.70, '', 1, '2024-01-23 05:50:48', 0, NULL, 0, NULL, 1),
(20999, 16304, '2', 'S.s.k.v matriculation boys Higher secondary school ', '', '', '2019', 70.00, '', 1, '2024-01-23 05:51:20', 0, NULL, 0, NULL, 1),
(21000, 16304, '1', 'S.s.k.v matriculation boys Higher secondary school ', '', '', '2017', 94.00, '', 1, '2024-01-23 05:51:47', 0, NULL, 0, NULL, 1),
(21001, 16306, '3', 'Anna University ', '', 'B.Tech(Information Technology)', '2023', 74.50, '', 1, '2024-01-23 05:54:13', 0, NULL, 0, NULL, 1),
(21002, 16305, '4', 'Bharathidasan University', '', 'MBA Human resource management ', '2023', 75.00, '', 1, '2024-01-23 05:55:53', 0, NULL, 0, NULL, 1),
(21003, 16303, '3', 'Anna University', '', 'B.E-cSE', '2023', 8.05, '', 1, '2024-01-23 05:58:54', 0, NULL, 0, NULL, 1),
(21004, 16303, '2', 'State board', '', '', '2019', 48.10, '', 1, '2024-01-23 06:00:13', 0, NULL, 0, NULL, 1),
(21005, 16303, '1', 'State board', '', '', '2017', 78.60, '', 1, '2024-01-23 06:00:45', 0, NULL, 0, NULL, 1),
(21006, 16307, '3', 'Anna University ', '', 'B.E Aero', '2018', 6.20, '', 1, '2024-01-23 06:15:48', 0, NULL, 0, NULL, 1),
(21007, 16308, '3', 'DR.MGR EDUCATIONAL AND RESEARCH INTUITION', '', 'BBA FP', '2023', 68.80, '', 1, '2024-01-23 06:36:58', 0, NULL, 0, NULL, 1),
(21008, 16309, '3', 'University', '', 'B. Com', '2022', 75.00, '', 1, '2024-01-23 06:50:31', 0, NULL, 0, NULL, 1),
(21009, 16311, '3', 'Anna University ', '', 'Bachelor of civil engineering ', '2020', 6.90, '', 1, '2024-01-23 07:10:32', 0, NULL, 0, NULL, 1),
(21010, 16312, '4', 'university of madras', '', 'mba', '2024', 70.00, '', 1, '2024-01-23 07:29:35', 0, NULL, 0, NULL, 1),
(21011, 16310, '3', 'Anna University ', '', 'B.E computer science and Engineering ', '2023', 7.85, '', 1, '2024-01-23 08:21:52', 0, NULL, 0, NULL, 1),
(21012, 16314, '3', 'Anna University', '', 'Bachelor of  Engineering', '2019', 80.00, '', 1, '2024-01-23 08:57:49', 0, NULL, 0, NULL, 1),
(21013, 16318, '5', 'Delhi University ', '', 'PGPM', '2022', 8.90, '', 1, '2024-01-23 09:14:45', 0, NULL, 0, NULL, 1),
(21014, 16318, '3', 'Madras University ', '', 'Bcom', '2020', 75.00, '', 1, '2024-01-23 09:15:11', 0, NULL, 0, NULL, 1),
(21015, 16317, '4', 'University ', '', 'MBA', '2021', 82.00, '', 1, '2024-01-23 09:34:30', 0, NULL, 0, NULL, 1),
(21016, 16317, '3', 'University ', '', 'bca', '2019', 67.00, '', 1, '2024-01-23 09:35:28', 0, NULL, 0, NULL, 1),
(21017, 16313, '3', 'Government college of engineering bargur', '', 'BE cse', '2023', 8.20, '', 1, '2024-01-23 09:44:54', 0, NULL, 0, NULL, 1),
(21018, 16315, '3', 'Madras University ', '', 'b.A. Tourism and travel management ', '2022', 69.00, '', 1, '2024-01-23 09:56:40', 0, NULL, 0, NULL, 1),
(21019, 16319, '4', 'Sathyabama University ', '', 'MBA', '2024', 70.00, '', 1, '2024-01-23 11:12:16', 0, NULL, 0, NULL, 1),
(21020, 16322, '5', 'Mother therasa women\'s University Kodaikanal ', '', 'B.COM CA', '2021', 80.00, '', 1, '2024-01-24 04:59:43', 0, NULL, 0, NULL, 1),
(21021, 16322, '3', 'Mother therasa women\'s University Kodaikanal ', '', 'B.COM CA', '2021', 80.00, '', 1, '2024-01-24 05:00:36', 0, NULL, 0, NULL, 1),
(21022, 16323, '3', 'Madras University ', '', 'B.Com', '2023', 88.00, '', 1, '2024-01-24 05:44:19', 0, NULL, 0, NULL, 1),
(21023, 16324, '3', 'Bharathi women\'s college', '', 'B. Com', '2022', 85.00, '', 1, '2024-01-24 05:52:02', 0, NULL, 0, NULL, 1),
(21024, 16325, '3', 'Thiruvalluvar University ', '', 'Bcom computer applications ', '2021', 90.00, '', 1, '2024-01-24 05:59:53', 0, NULL, 0, NULL, 1),
(21025, 16326, '3', 'Dr. MGR educational and research institute ', '', 'B.tech / Electrical And Electronics Engineering', '2021', 7.28, '', 1, '2024-01-24 06:35:51', 1, '2024-01-24 06:37:45', 0, NULL, 1),
(21026, 16326, '5', 'Panimalar polytechnic college ', '', 'Electrical And Electronics Engineering', '2018', 76.00, '', 1, '2024-01-24 06:38:04', 0, NULL, 0, NULL, 1),
(21027, 16327, '3', 'B.s.abdul Rahman University chennai', '', 'B.tech Mechanical ', '2019', 60.00, '', 1, '2024-01-24 06:49:51', 0, NULL, 0, NULL, 1),
(21028, 16328, '3', 'Madras University ', '', 'B.com', '2022', 83.00, '', 1, '2024-01-24 07:37:57', 0, NULL, 0, NULL, 1),
(21029, 16330, '3', 'Anna University ', '', 'B.e electrical and electronics ', '2024', 7.50, '', 1, '2024-01-24 09:08:50', 0, NULL, 0, NULL, 1),
(21030, 16331, '3', 'Board (Bannari amman Inistution of technology', '', 'B. Tech', '2019', 70.00, '', 1, '2024-01-24 09:18:30', 0, NULL, 0, NULL, 1),
(21031, 16329, '3', 'Madras University ', '', 'B.com', '2022', 77.00, '', 1, '2024-01-24 09:22:19', 0, NULL, 0, NULL, 1),
(21032, 16334, '3', 'Madras University ', '', 'Bba', '2023', 81.60, '', 1, '2024-01-25 04:42:06', 0, NULL, 0, NULL, 1),
(21033, 16335, '3', 'Medrass University ', '', 'Bsc', '2018', 78.00, '', 1, '2024-01-25 04:59:45', 0, NULL, 0, NULL, 1),
(21034, 16336, '3', 'Periyar University ', '', 'BA.ENGLISH LITERATURE ', '2018', 64.00, '', 1, '2024-01-25 05:17:17', 0, NULL, 0, NULL, 1),
(21035, 16337, '3', 'Anna University ', '', 'BE CSE ', '2022', 87.00, '', 1, '2024-01-25 05:23:21', 0, NULL, 0, NULL, 1),
(21036, 16338, '3', 'Madras University ', '', 'Bcom', '2023', 65.00, '', 1, '2024-01-25 05:29:29', 0, NULL, 0, NULL, 1),
(21037, 16339, '3', 'SRM University ', '', 'B.com General', '2023', 84.40, '', 1, '2024-01-25 05:50:37', 0, NULL, 0, NULL, 1),
(21038, 16340, '3', 'University', '', 'BA english literature', '2023', 64.00, '', 1, '2024-01-25 06:07:27', 0, NULL, 0, NULL, 1),
(21039, 16342, '3', 'noorul islam collage of arts and science', '', 'bsc information technology', '2022', 75.00, '', 1, '2024-01-25 06:09:18', 0, NULL, 0, NULL, 1),
(21040, 16341, '3', 'university of madras', '', 'bba', '2022', 64.00, '', 1, '2024-01-25 06:09:48', 0, NULL, 0, NULL, 1),
(21041, 16343, '3', 'ANNA UNIVERSITY CHENNAI ', '', 'B.E - AGRICULTURE ENGINEERING ', '2021', 7.96, '', 1, '2024-01-25 07:04:24', 0, NULL, 0, NULL, 1),
(21042, 16345, '3', 'The new college ', '', 'B.com CS', '2023', 75.00, '', 1, '2024-01-25 07:58:42', 0, NULL, 0, NULL, 1),
(21043, 16345, '1', 'Matriculation ', '', '', '2020', 80.00, '', 1, '2024-01-25 07:59:33', 0, NULL, 0, NULL, 1),
(21044, 16347, '3', 'Madras University ', '', 'BCA ', '2015', 59.00, '', 1, '2024-01-25 09:14:43', 0, NULL, 0, NULL, 1),
(21045, 16344, '5', 'Team educational institute ', '', 'Monsterssori  teacher training ', '2021', 75.00, '', 1, '2024-01-25 09:20:30', 0, NULL, 0, NULL, 1),
(21046, 16344, '3', 'Madrasa Christian college ', '', 'B.voc', '2020', 70.00, '', 1, '2024-01-25 09:21:21', 0, NULL, 0, NULL, 1),
(21047, 16344, '2', 'C s I Corley higher secondary school ', '', '', '2017', 60.00, '', 1, '2024-01-25 09:22:10', 0, NULL, 0, NULL, 1),
(21048, 16344, '1', 'C s I Corley higher secondary school', '', '', '2015', 82.00, '', 1, '2024-01-25 09:22:49', 0, NULL, 0, NULL, 1),
(21049, 16346, '3', 'Shri shankarlal sundarbai shasun Jain college for woman ', '', 'Bsc Computer Science ', '2021', 82.60, '', 1, '2024-01-25 09:51:43', 0, NULL, 0, NULL, 1),
(21050, 16348, '4', 'Alagappa University', '', 'MBA', '2023', 74.00, '', 1, '2024-01-25 11:12:52', 0, NULL, 0, NULL, 1),
(21051, 16348, '3', 'Sastra deemed to be University', '', 'Bcom', '2021', 77.00, '', 1, '2024-01-25 11:13:21', 0, NULL, 0, NULL, 1),
(21052, 16350, '5', 'Sankar Polytechnic College', '', 'Computer Engineering ', '2022', 80.00, '', 1, '2024-01-27 05:05:19', 0, NULL, 0, NULL, 1),
(21053, 16351, '3', 'Madras University ', '', 'Bca', '2018', 65.00, '', 1, '2024-01-27 05:10:52', 0, NULL, 0, NULL, 1),
(21054, 16351, '2', 'Government school ', '', '', '2015', 60.00, '', 1, '2024-01-27 05:11:33', 0, NULL, 0, NULL, 1),
(21055, 16351, '1', 'Government school ', '', '', '2013', 74.00, '', 1, '2024-01-27 05:12:03', 0, NULL, 0, NULL, 1),
(21056, 16355, '3', 'Agni College of Technology ', '', 'B.Tech .IT', '2024', 8.44, '', 1, '2024-01-27 06:56:14', 0, NULL, 0, NULL, 1),
(21057, 16355, '2', 'State Board ', '', '', '2020', 59.67, '', 1, '2024-01-27 06:56:49', 0, NULL, 0, NULL, 1),
(21058, 16355, '1', 'State Board ', '', '', '2018', 83.80, '', 1, '2024-01-27 06:57:05', 0, NULL, 0, NULL, 1),
(21059, 16353, '3', 'Madurai kamarajar University ', '', 'B.com', '2020', 54.00, '', 1, '2024-01-27 07:06:00', 0, NULL, 0, NULL, 1),
(21060, 16352, '3', 'Madras University ', '', 'Bs management ', '2019', 70.00, '', 1, '2024-01-27 07:09:03', 0, NULL, 0, NULL, 1),
(21061, 16354, '3', 'Madras University ', '', 'Bachelor of business administration ', '2022', 69.00, '', 1, '2024-01-27 07:30:22', 0, NULL, 0, NULL, 1),
(21062, 16356, '3', 'Sir theyagaraya college chennai', '', 'B com general ', '2023', 82.00, '', 1, '2024-01-27 07:36:20', 0, NULL, 0, NULL, 1),
(21063, 16358, '1', 'State Board', '', '', '2016', 97.00, '', 1, '2024-01-27 08:49:57', 0, NULL, 0, NULL, 1),
(21064, 16358, '2', 'State Board ', '', '', '2018', 86.00, '', 1, '2024-01-27 08:50:16', 0, NULL, 0, NULL, 1),
(21065, 16358, '3', 'Madras University ', '', 'Bachelor of computer Applications ', '2022', 74.40, '', 1, '2024-01-27 08:50:45', 0, NULL, 0, NULL, 1),
(21066, 16359, '3', 'THIRUVALLUVAR UNIVERSITY ', '', 'B.com', '2023', 88.00, '', 1, '2024-01-27 09:08:05', 0, NULL, 0, NULL, 1),
(21067, 16357, '5', 'Kumaran polytechnic college ', '', 'Mechanical fitter ', '2016', 78.00, '', 1, '2024-01-27 09:13:42', 0, NULL, 0, NULL, 1),
(21068, 16361, '4', 'anna university', '', 'mba', '2024', 9.30, '', 1, '2024-01-29 04:33:28', 0, NULL, 0, NULL, 1),
(21069, 16362, '4', 'Anna university', '', 'MBA', '2024', 9.00, '', 1, '2024-01-29 04:46:07', 0, NULL, 0, NULL, 1),
(21070, 16362, '3', 'Scsvmv university', '', 'B. Com (general)', '2022', 9.50, '', 1, '2024-01-29 04:47:38', 0, NULL, 0, NULL, 1),
(21071, 16363, '4', 'Periyar maniammai University ', '', 'Msc', '2023', 73.00, '', 1, '2024-01-29 04:48:20', 0, NULL, 0, NULL, 1),
(21072, 16362, '2', 'State board', '', '', '2019', 78.30, '', 1, '2024-01-29 04:48:34', 0, NULL, 0, NULL, 1),
(21073, 16362, '1', 'State board', '', '', '2017', 93.00, '', 1, '2024-01-29 04:48:58', 0, NULL, 0, NULL, 1),
(21074, 16365, '3', 'Anna University ', '', 'BE CSE', '2019', 63.00, '', 1, '2024-01-29 04:56:11', 0, NULL, 0, NULL, 1),
(21075, 16366, '4', 'The Gandhigram Rural institute - (Deemed to be university)', '', 'MBA', '2023', 7.78, '', 1, '2024-01-29 05:02:10', 0, NULL, 0, NULL, 1),
(21076, 16360, '4', 'Anna University ', '', 'Mba', '2024', 63.00, '', 1, '2024-01-29 05:04:20', 0, NULL, 0, NULL, 1),
(21077, 16368, '3', 'Anna university ', '', 'BE-ECE ', '2022', 76.00, '', 1, '2024-01-29 05:04:43', 0, NULL, 0, NULL, 1),
(21078, 16369, '3', 'Madras University ', '', 'B.A. ( labour management)', '2022', 69.80, '', 1, '2024-01-29 05:24:41', 0, NULL, 0, NULL, 1),
(21079, 16370, '4', 'Anna University ', '', 'MBA HR AND FINANCE ', '2020', 75.00, '', 1, '2024-01-29 05:25:54', 0, NULL, 0, NULL, 1),
(21080, 16369, '2', 'State board ', '', '', '2019', 61.80, '', 1, '2024-01-29 05:26:24', 0, NULL, 0, NULL, 1),
(21081, 16369, '1', 'State board ', '', '', '2016', 73.80, '', 1, '2024-01-29 05:26:42', 0, NULL, 0, NULL, 1),
(21082, 16364, '4', 'Anna University ', '', 'MBA', '2023', 70.04, '', 1, '2024-01-29 05:34:40', 0, NULL, 0, NULL, 1),
(21083, 16364, '4', 'Anna University ', '', 'MBA', '2023', 70.00, '', 1, '2024-01-29 05:35:50', 0, NULL, 0, NULL, 1),
(21084, 16364, '3', 'Anna University ', '', 'mBA', '2023', 70.00, '', 1, '2024-01-29 05:36:37', 0, NULL, 0, NULL, 1),
(21085, 16367, '3', 'Anna University ', '', 'BE', '2021', 80.00, '', 1, '2024-01-29 05:53:55', 0, NULL, 0, NULL, 1),
(21086, 16371, '3', 'Alagappa University ', '', 'B.com(computer application)', '2022', 8.10, '', 1, '2024-01-29 05:54:16', 0, NULL, 0, NULL, 1),
(21087, 16372, '4', 'OUM University ', '', 'BSC ', '2013', 65.00, '', 1, '2024-01-29 06:15:17', 0, NULL, 0, NULL, 1),
(21088, 16373, '3', 'Madras University', '', 'B.Sc', '2019', 84.00, '', 1, '2024-01-29 06:21:01', 0, NULL, 0, NULL, 1),
(21089, 16375, '3', 'Anna university', '', 'B.e', '2022', 80.00, '', 1, '2024-01-29 06:38:20', 0, NULL, 0, NULL, 1),
(21090, 16374, '3', 'coimba institute of engineering and technology coimba ', '', 'be cse', '2023', 72.00, '', 1, '2024-01-29 06:38:29', 0, NULL, 0, NULL, 1),
(21091, 16374, '1', 'tks mat hr sec school theni', '', '', '2017', 86.00, '', 1, '2024-01-29 06:39:39', 0, NULL, 0, NULL, 1),
(21092, 16374, '2', 'tmhnu mat hr sec school theni', '', '', '2019', 74.00, '', 1, '2024-01-29 06:40:13', 0, NULL, 0, NULL, 1),
(21093, 16376, '4', 'Dr. MGR educational and research institute ', '', 'MBA ', '2023', 8.00, '', 1, '2024-01-29 06:47:20', 0, NULL, 0, NULL, 1),
(21094, 16377, '3', 'Anna university', '', 'B.E', '2022', 85.00, '', 1, '2024-01-29 06:49:20', 0, NULL, 0, NULL, 1),
(21095, 16378, '4', 'University of Madras ', '', 'M.Sc', '2023', 80.00, '', 1, '2024-01-29 06:58:36', 0, NULL, 0, NULL, 1),
(21096, 16379, '3', 'Anna University ', '', 'B.E(CSE)', '2023', 84.50, '', 1, '2024-01-29 07:50:23', 0, NULL, 0, NULL, 1),
(21097, 16380, '1', 'State board ', '', 'B.com cs', '2014', 82.00, '', 1, '2024-01-29 08:07:20', 0, NULL, 0, NULL, 1),
(21098, 16380, '2', 'State board ', '', '', '2016', 76.00, '', 1, '2024-01-29 08:07:43', 0, NULL, 0, NULL, 1),
(21099, 16380, '3', 'Madras University ', '', 'B com cs', '2019', 75.00, '', 1, '2024-01-29 08:08:10', 0, NULL, 0, NULL, 1),
(21100, 16381, '2', 'APSWR GIRLS COLLEGE ', '', '', '2013', 68.00, '', 1, '2024-01-29 09:39:40', 0, NULL, 0, NULL, 1),
(21101, 16381, '3', 'Sk University ', '', 'MPC ', '2018', 56.00, '', 1, '2024-01-29 09:46:07', 0, NULL, 0, NULL, 1),
(21102, 16382, '3', 'Anna University ', '', 'BE', '2020', 65.00, '', 1, '2024-01-29 10:03:11', 0, NULL, 0, NULL, 1),
(21103, 16383, '4', 'Christ college of engineering and technology ', '', 'MBA (HR AND FINANCE)', '2021', 78.60, '', 1, '2024-01-29 10:23:14', 0, NULL, 0, NULL, 1),
(21104, 16386, '3', 'Alagappa University ', '', 'B.sc Fire and Industrial Safety ', '2022', 75.00, '', 1, '2024-01-29 01:30:00', 0, NULL, 0, NULL, 1),
(21105, 16387, '3', 'Anna University ', '', 'BE', '2023', 79.00, '', 1, '2024-01-30 04:05:55', 0, NULL, 0, NULL, 1),
(21106, 16388, '3', 'Anna University ', '', 'B.E.', '2023', 86.60, '', 1, '2024-01-30 04:15:24', 0, NULL, 0, NULL, 1),
(21107, 16388, '2', 'CBSE', '', '', '2019', 70.00, '', 1, '2024-01-30 04:16:01', 0, NULL, 0, NULL, 1),
(21108, 16388, '1', 'State board', '', '', '2017', 92.60, '', 1, '2024-01-30 04:16:41', 0, NULL, 0, NULL, 1),
(21109, 9910, '3', 'Madras university ', '', 'BBM', '2022', 74.00, '', 1, '2024-01-30 04:47:02', 0, NULL, 0, NULL, 1),
(21110, 16391, '3', 'Madras university', '', 'Bsc computer science', '2022', 75.00, '', 1, '2024-01-30 04:58:24', 0, NULL, 0, NULL, 1),
(21111, 16393, '3', 'Madras University ', '', 'Bcs computer science ', '2020', 8.20, '', 1, '2024-01-30 05:03:11', 0, NULL, 0, NULL, 1),
(21112, 16392, '3', 'Bharadhidasan', '', 'B lit', '2021', 71.00, '', 1, '2024-01-30 05:07:29', 0, NULL, 0, NULL, 1),
(21113, 16389, '3', 'Madras university', '', 'Bcom', '2022', 86.00, '', 1, '2024-01-30 05:09:31', 0, NULL, 0, NULL, 1),
(21114, 16389, '2', 'State board', '', '', '2019', 75.00, '', 1, '2024-01-30 05:12:15', 0, NULL, 0, NULL, 1),
(21115, 16394, '3', 'Muthayammal Engineering College,Rasipuram ,Namakkal', '', 'B.E', '2023', 81.50, '', 1, '2024-01-30 05:26:41', 0, NULL, 0, NULL, 1),
(21116, 16394, '1', 'Govt hr sec school,kalapaganur,attur,salem', '', '', '2014', 65.00, '', 1, '2024-01-30 05:27:55', 0, NULL, 0, NULL, 1),
(21117, 16394, '2', 'Srv matric hr sec school,attur', '', '', '2016', 64.50, '', 1, '2024-01-30 05:28:22', 0, NULL, 0, NULL, 1),
(21118, 16396, '3', 'Anna University ', '', 'BE CSE ', '2023', 78.00, '', 1, '2024-01-30 05:40:36', 0, NULL, 0, NULL, 1),
(21119, 16398, '3', 'Thiruvalluvar University ', '', 'BCA ', '2023', 72.00, '', 1, '2024-01-30 05:42:07', 0, NULL, 0, NULL, 1),
(21120, 16399, '4', 'Madras university', '', 'Mba ', '2023', 60.00, '', 1, '2024-01-30 05:46:21', 0, NULL, 0, NULL, 1),
(21121, 16400, '3', 'Madras University', '', 'BBA', '2022', 70.00, '', 1, '2024-01-30 05:53:27', 0, NULL, 0, NULL, 1),
(21122, 16401, '4', 'Bharathidasan university', '', 'MBA hR', '2023', 85.00, '', 1, '2024-01-30 06:05:18', 1, '2024-01-30 06:06:25', 0, NULL, 0),
(21123, 16401, '3', 'Madras university', '', 'BBA', '2020', 68.00, '', 1, '2024-01-30 06:06:18', 0, NULL, 0, NULL, 1),
(21124, 16401, '4', 'Bharathidasan university', '', 'MBA HR', '2023', 85.00, '', 1, '2024-01-30 06:06:55', 0, NULL, 0, NULL, 1),
(21125, 16397, '3', 'Anna University ', '', 'B.E', '2019', 66.00, '', 1, '2024-01-30 06:10:21', 0, NULL, 0, NULL, 1),
(21126, 16404, '4', 'Madras University ', '', 'M.com', '2015', 81.00, '', 1, '2024-01-30 06:12:09', 0, NULL, 0, NULL, 1),
(21127, 16403, '3', 'University of Madras', '', 'BBA', '2020', 56.00, '', 1, '2024-01-30 06:12:27', 0, NULL, 0, NULL, 1),
(21128, 16404, '3', 'Madras University ', '', 'B.com', '2012', 76.00, '', 1, '2024-01-30 06:12:45', 0, NULL, 0, NULL, 1),
(21129, 16402, '3', 'The american college madurai', '', 'Bachelor of business administration ', '2021', 56.00, '', 1, '2024-01-30 06:21:06', 0, NULL, 0, NULL, 1),
(21130, 16402, '2', 'Le Chatelier matri', '', '', '2017', 80.00, '', 1, '2024-01-30 06:21:57', 0, NULL, 0, NULL, 1),
(21131, 16406, '3', 'Manonmaniam sundaranar university ', '', 'B.sc  Computer science ', '2023', 7.89, '', 1, '2024-01-30 06:38:47', 0, NULL, 0, NULL, 1),
(21132, 16407, '4', 'Bharathidasan University ', '', 'M.com', '2020', 54.00, '', 1, '2024-01-30 06:39:39', 0, NULL, 0, NULL, 1),
(21133, 16405, '3', 'Anna University ', '', 'Bachelor of Engineering in Computer Science (B.E C', '2023', 86.20, '', 1, '2024-01-30 06:41:47', 0, NULL, 0, NULL, 1),
(21134, 16408, '3', 'Anna nagar ', '', 'BE', '2021', 7.80, '', 1, '2024-01-30 07:32:33', 0, NULL, 0, NULL, 1),
(21135, 16409, '3', 'Alagappa University ', '', 'B.sc computer science ', '2023', 76.00, '', 1, '2024-01-30 07:37:58', 0, NULL, 0, NULL, 1),
(21136, 16411, '3', 'Bharathiar University', '', 'Bsc (Information Technology) ', '2020', 80.00, '', 1, '2024-01-30 09:26:20', 0, NULL, 0, NULL, 1),
(21137, 16410, '3', 'Gojan school of Business and technology', '', 'B. e ECE', '2019', 7.26, '', 1, '2024-01-30 09:31:45', 0, NULL, 0, NULL, 1),
(21138, 16412, '4', 'Madras University ', '', 'Mba Human Resource management ', '2019', 60.00, '', 1, '2024-01-30 09:42:35', 0, NULL, 0, NULL, 1),
(21139, 16413, '5', 'DOTE', '', 'Diploma in computer engineering ', '2019', 60.00, '', 1, '2024-01-30 09:44:12', 0, NULL, 0, NULL, 1),
(21140, 16414, '3', 'Bharathudasan University ', '', 'Bsc maths ', '2021', 47.00, '', 1, '2024-01-30 09:45:10', 0, NULL, 0, NULL, 1),
(21141, 16415, '4', 'Ramachandra University ', '', 'MBA', '2023', 78.00, '', 1, '2024-01-31 04:36:28', 0, NULL, 0, NULL, 1),
(21142, 16415, '3', 'Karunya University ', '', 'BCA', '2021', 75.00, '', 1, '2024-01-31 04:36:58', 0, NULL, 0, NULL, 1),
(21143, 16416, '4', 'St. Peter\'s Institute of Higher Education and Research (Deemed University) ', '', 'MBA ', '2022', 89.04, '', 1, '2024-01-31 04:43:28', 0, NULL, 0, NULL, 1),
(21144, 16417, '4', 'Anna university', '', 'MBA', '2020', 74.00, '', 1, '2024-01-31 04:43:37', 0, NULL, 0, NULL, 1),
(21145, 16416, '3', 'Mar Gregorios College of Arts and Science (Madras University) ', '', 'B.Com(C.A) ', '2020', 77.34, '', 1, '2024-01-31 04:44:26', 0, NULL, 0, NULL, 1),
(21146, 16416, '2', 'Green Valley Matric Hr Sec School(State Board) ', '', '', '2017', 83.75, '', 1, '2024-01-31 04:45:44', 0, NULL, 0, NULL, 1),
(21147, 16416, '1', 'Velammal Matric Hr Sec School(State Board) ', '', '', '2015', 78.02, '', 1, '2024-01-31 04:46:17', 0, NULL, 0, NULL, 1),
(21148, 16418, '4', 'The American college', '', 'Msw(HR) ', '2023', 67.50, '', 1, '2024-01-31 05:04:30', 0, NULL, 0, NULL, 1),
(21149, 16420, '3', 'Pondicherry university', '', 'b.Tech (mechanical)', '2018', 7.31, '', 1, '2024-01-31 05:22:14', 0, NULL, 0, NULL, 1),
(21150, 16419, '3', 'Pondicherry University ', '', 'BCA', '2021', 6.31, '', 1, '2024-01-31 05:22:48', 0, NULL, 0, NULL, 1),
(21151, 16424, '3', 'Anna University ', '', 'B.E', '2022', 81.00, '', 1, '2024-01-31 05:25:34', 0, NULL, 0, NULL, 1),
(21152, 16424, '1', 'State Board', '', '', '2016', 82.40, '', 1, '2024-01-31 05:26:15', 0, NULL, 0, NULL, 1),
(21153, 16424, '2', 'State Board', '', '', '2018', 52.00, '', 1, '2024-01-31 05:27:00', 0, NULL, 0, NULL, 1),
(21154, 16423, '3', 'Anna university ', '', 'B.E( MECHANICAL ENGINEERING)', '2019', 67.00, '', 1, '2024-01-31 05:29:25', 0, NULL, 0, NULL, 1),
(21155, 16423, '5', 'Directorate of Technical Education, Tamil Nadu', '', 'DIPLOMA IN MECHANICAL ENGINEERING ', '2016', 69.00, '', 1, '2024-01-31 05:31:05', 0, NULL, 0, NULL, 1),
(21156, 16423, '1', 'State board ', '', '', '2013', 75.00, '', 1, '2024-01-31 05:31:30', 0, NULL, 0, NULL, 1),
(21157, 16421, '3', 'Bharathidasan university ', '', '', '2023', 80.00, '', 1, '2024-01-31 05:32:48', 0, NULL, 0, NULL, 1),
(21158, 16428, '4', 'Manonmaniam sundaranar University, Tirunelveli ', '', 'MBA ', '2023', 83.00, '', 1, '2024-01-31 05:43:28', 0, NULL, 0, NULL, 1),
(21159, 16428, '3', 'Manonmaniam sundaranar University, Tirunelveli ', '', 'Bsc ', '2021', 97.10, '', 1, '2024-01-31 05:44:00', 0, NULL, 0, NULL, 1),
(21160, 16426, '5', 'SIGA polytechnic college ', '', 'Printing technology ', '2019', 80.00, '', 1, '2024-01-31 05:48:08', 0, NULL, 0, NULL, 1),
(21161, 16429, '3', 'Srm University ', '', 'B.tech', '2020', 73.50, '', 1, '2024-01-31 05:48:30', 0, NULL, 0, NULL, 1),
(21162, 16431, '3', 'Bharathidasan University ', '', 'B.Sc IT', '2021', 75.00, '', 1, '2024-01-31 05:48:34', 0, NULL, 0, NULL, 1),
(21163, 16425, '3', 'Bharathidasan university', '', 'Bba', '2018', 70.00, '', 1, '2024-01-31 05:49:02', 0, NULL, 0, NULL, 1),
(21164, 16426, '2', 'Sacret heart hr, sec, school ', '', '', '2017', 83.00, '', 1, '2024-01-31 05:49:04', 0, NULL, 0, NULL, 1),
(21165, 16425, '5', 'Amirta', '', 'Pdhmcs', '2018', 80.00, '', 1, '2024-01-31 05:50:11', 0, NULL, 0, NULL, 1),
(21166, 16427, '4', 'Bharathidasan University ', '', 'MBA', '2021', 75.00, '', 1, '2024-01-31 05:59:30', 0, NULL, 0, NULL, 1),
(21167, 16433, '4', 'Sri manakula vinayagar engineering college ', '', 'MCA', '2022', 70.00, '', 1, '2024-01-31 06:05:27', 0, NULL, 0, NULL, 1),
(21168, 16427, '3', 'Bharathidasan University ', '', 'BBA', '2018', 65.00, '', 1, '2024-01-31 06:06:32', 0, NULL, 0, NULL, 1),
(21169, 16432, '4', 'Bharathidasan University ', '', 'MCA ', '2020', 80.00, '', 1, '2024-01-31 06:15:16', 0, NULL, 0, NULL, 1),
(21170, 16436, '3', 'Anna university', '', 'BE', '2022', 87.20, '', 1, '2024-01-31 06:16:21', 0, NULL, 0, NULL, 1),
(21171, 16435, '3', 'Thiruvallur university ', '', 'B.com', '2022', 70.00, '', 1, '2024-01-31 06:16:36', 0, NULL, 0, NULL, 1),
(21172, 16438, '3', 'Madras University ', '', 'B.com computer Application ', '2022', 76.00, '', 1, '2024-01-31 06:16:44', 0, NULL, 0, NULL, 1),
(21173, 16436, '2', 'State board', '', '', '2018', 66.00, '', 1, '2024-01-31 06:16:46', 0, NULL, 0, NULL, 1),
(21174, 16434, '3', 'Bharathidhasan University ', '', 'B. Sc computer science ', '2023', 75.00, '', 1, '2024-01-31 06:19:54', 0, NULL, 0, NULL, 1),
(21175, 16439, '3', 'University of Madras ', '', 'b.com A&F', '2023', 70.00, '', 1, '2024-01-31 06:25:10', 0, NULL, 0, NULL, 1),
(21176, 16441, '3', 'Madras University ', '', 'Bba', '2023', 76.00, '', 1, '2024-01-31 06:43:30', 0, NULL, 0, NULL, 1),
(21177, 16442, '4', 'Manonmaniyam Sundranar University', '', 'Master\'s of Computer y', '2023', 71.20, '', 1, '2024-01-31 06:52:35', 0, NULL, 0, NULL, 1),
(21178, 16445, '3', 'university', '', 'bca', '2022', 63.00, '', 1, '2024-01-31 07:16:07', 0, NULL, 0, NULL, 1),
(21179, 16444, '3', 'Autonomous ', '', 'B.E(ECE)', '2022', 6.77, '', 1, '2024-01-31 07:34:42', 0, NULL, 0, NULL, 1),
(21180, 16446, '3', 'Anna university', '', 'Bachelor of engineering', '2022', 81.00, '', 1, '2024-01-31 07:35:35', 0, NULL, 0, NULL, 1),
(21181, 16437, '3', 'MGR Janaki college of arts and science ', '', 'B.com', '2016', 53.00, '', 1, '2024-01-31 07:42:37', 0, NULL, 0, NULL, 1),
(21182, 16447, '4', 'Bharathiyar university ', '', 'MCA', '2021', 80.00, '', 1, '2024-01-31 08:36:32', 0, NULL, 0, NULL, 1),
(21183, 16447, '3', 'Bharathiyar university ', '', 'Bsc computer technology ', '2019', 73.00, '', 1, '2024-01-31 08:37:06', 0, NULL, 0, NULL, 1),
(21184, 16448, '3', 'vels university', '', 'b.com', '2021', 74.30, '', 1, '2024-01-31 10:24:49', 0, NULL, 0, NULL, 1),
(21185, 16449, '3', 'Dhanalakshmi srinivasan engineering college,Anna University', '', 'B.E computer science engineering ', '2020', 6.20, '', 1, '2024-01-31 10:33:55', 0, NULL, 0, NULL, 1),
(21186, 16450, '4', 'Hindusthan College of Arts and science ', '', 'Mba', '2023', 78.00, '', 1, '2024-01-31 12:53:44', 0, NULL, 0, NULL, 1),
(21187, 16452, '3', 'Thiruvalluvar University', '', 'BCA ', '2023', 57.00, '', 1, '2024-01-31 01:11:39', 0, NULL, 0, NULL, 1),
(21188, 16453, '3', 'Sri ramakrishna mission vivekananda college mylapore chennai', '', 'B.com', '2015', 55.80, '', 1, '2024-01-31 02:44:56', 0, NULL, 0, NULL, 1),
(21189, 16453, '4', 'ICAI INSTITUTE OF CHARTERED ACCOUNTANT OF INDIA', '', 'Chartered accountant ', '2026', 50.00, '', 1, '2024-01-31 02:46:26', 0, NULL, 0, NULL, 1),
(21190, 16454, '3', 'St. Peter\'s University of higher education and technology ', '', 'B.Sc ', '2022', 64.00, '', 1, '2024-02-01 02:34:03', 0, NULL, 0, NULL, 1),
(21191, 16457, '4', 'University of Madras ', '', 'MSc', '2022', 78.00, '', 1, '2024-02-01 04:49:40', 0, NULL, 0, NULL, 1),
(21192, 16456, '4', 'Hindustan University ', '', 'MBA  hR and Finance', '2023', 82.00, '', 1, '2024-02-01 05:10:20', 0, NULL, 0, NULL, 1),
(21193, 16456, '3', 'Thiruvaluvar university', '', 'BCA', '2022', 80.00, '', 1, '2024-02-01 05:10:59', 0, NULL, 0, NULL, 1),
(21194, 16458, '3', 'Anna University ', '', 'BE', '2022', 79.20, '', 1, '2024-02-01 05:16:22', 0, NULL, 0, NULL, 1),
(21195, 16458, '2', 'Board ', '', '', '2018', 89.40, '', 1, '2024-02-01 05:16:59', 0, NULL, 0, NULL, 1),
(21196, 16458, '1', 'Board', '', '', '2016', 94.40, '', 1, '2024-02-01 05:17:17', 0, NULL, 0, NULL, 1),
(21197, 16459, '3', 'Thiruvallur University ', '', '', '2023', 58.00, '', 1, '2024-02-01 05:25:50', 0, NULL, 0, NULL, 1),
(21198, 16462, '3', 'Psna college of engineering and technology ', '', 'B.Tech It', '2022', 7.80, '', 1, '2024-02-01 05:37:22', 0, NULL, 0, NULL, 1),
(21199, 16460, '3', 'Madras University ', '', 'B.com ( general)', '2023', 78.00, '', 1, '2024-02-01 05:40:56', 0, NULL, 0, NULL, 1),
(21200, 16463, '5', 'Dote', '', 'Mechanical engineering ', '2020', 81.00, '', 1, '2024-02-01 05:43:33', 0, NULL, 0, NULL, 1),
(21201, 16463, '1', 'Board ', '', '', '2017', 86.00, '', 1, '2024-02-01 05:44:01', 0, NULL, 0, NULL, 1),
(21202, 16464, '4', 'Annamalai University ', '', 'M.C.A', '2023', 85.00, '', 1, '2024-02-01 05:44:47', 0, NULL, 0, NULL, 1),
(21203, 16464, '3', 'Thiruvalluvar University ', '', 'B.C.A', '2021', 72.00, '', 1, '2024-02-01 05:45:45', 0, NULL, 0, NULL, 1),
(21204, 16464, '2', 'State board ', '', '', '2018', 64.00, '', 1, '2024-02-01 05:46:11', 0, NULL, 0, NULL, 1),
(21205, 16464, '1', 'State board ', '', '', '2016', 74.00, '', 1, '2024-02-01 05:46:39', 0, NULL, 0, NULL, 1),
(21206, 16461, '3', 'Madras University secretary ', '', 'B.com corporate ', '2023', 65.00, '', 1, '2024-02-01 05:46:53', 0, NULL, 0, NULL, 1),
(21207, 16468, '1', 'Central Board of Secondary Education ', '', '', '2016', 68.00, '', 1, '2024-02-01 05:50:44', 0, NULL, 0, NULL, 1),
(21208, 16465, '3', 'Bharathidasan University ', '', 'B.sc(IT)', '2022', 85.00, '', 1, '2024-02-01 05:51:17', 0, NULL, 0, NULL, 1),
(21209, 16468, '5', 'Directorate of technical education ', '', 'DME', '2020', 76.00, '', 1, '2024-02-01 05:51:34', 0, NULL, 0, NULL, 1),
(21210, 16468, '3', 'Anna University ', '', 'B.E ', '2023', 80.00, '', 1, '2024-02-01 05:52:02', 0, NULL, 0, NULL, 1),
(21211, 16465, '2', 'Sheik farthima school', '', '', '2019', 53.00, '', 1, '2024-02-01 05:52:28', 0, NULL, 0, NULL, 1),
(21212, 16465, '1', 'Amnm school ', '', '', '2017', 84.00, '', 1, '2024-02-01 05:52:53', 0, NULL, 0, NULL, 1),
(21213, 16469, '3', 'Anna University ', '', 'B.E', '2023', 79.00, '', 1, '2024-02-01 05:55:46', 0, NULL, 0, NULL, 1),
(21214, 16466, '3', 'Anna University ', '', 'B.E', '2021', 81.00, '', 1, '2024-02-01 05:59:04', 0, NULL, 0, NULL, 1),
(21215, 16466, '2', 'State Board', '', '', '2017', 78.00, '', 1, '2024-02-01 05:59:45', 0, NULL, 0, NULL, 1),
(21216, 16467, '3', 'Anna University ', '', 'B.E', '2023', 78.00, '', 1, '2024-02-01 06:04:12', 0, NULL, 0, NULL, 1),
(21217, 16470, '1', 'Board', '', '', '2017', 93.00, '', 1, '2024-02-01 06:12:36', 0, NULL, 0, NULL, 1),
(21218, 16470, '2', 'Board', '', '', '2019', 71.00, '', 1, '2024-02-01 06:12:52', 0, NULL, 0, NULL, 1),
(21219, 16470, '3', 'University ', '', 'B.Tech', '2023', 74.00, '', 1, '2024-02-01 06:13:10', 0, NULL, 0, NULL, 1),
(21220, 16471, '4', 'Annamalai University ', '', 'M.Sc Physics ', '2023', 70.00, '', 1, '2024-02-01 06:16:37', 0, NULL, 0, NULL, 1),
(21221, 16473, '3', 'Tiruvalluvar University ', '', 'BCA', '2023', 74.00, '', 1, '2024-02-01 06:25:05', 0, NULL, 0, NULL, 1),
(21222, 16475, '3', 'Anna University ', '', 'B.E', '2023', 86.40, '', 1, '2024-02-01 06:40:41', 0, NULL, 0, NULL, 1),
(21223, 16475, '2', 'State board', '', '', '2018', 86.00, '', 1, '2024-02-01 06:41:14', 0, NULL, 0, NULL, 1),
(21224, 16475, '1', 'State board ', '', '', '2017', 98.20, '', 1, '2024-02-01 06:42:08', 0, NULL, 0, NULL, 1),
(21225, 16474, '3', 'Madras University ', '', 'BSc.Computersciemce', '2022', 80.00, '', 1, '2024-02-01 06:50:38', 0, NULL, 0, NULL, 1),
(21226, 16472, '3', 'University of Madras', '', 'BCA ', '2022', 65.00, '', 1, '2024-02-01 07:49:30', 0, NULL, 0, NULL, 1),
(21227, 16476, '3', 'Bharathidhasan ', '', 'Bcom', '2023', 72.00, '', 1, '2024-02-01 07:51:29', 0, NULL, 0, NULL, 1),
(21228, 16478, '4', 'University of Madras ', '', 'MBA ', '2019', 70.00, '', 1, '2024-02-01 10:05:46', 0, NULL, 0, NULL, 1),
(21229, 16479, '3', 'madras University ', '', 'b.a englis literature ', '2020', 62.00, '', 1, '2024-02-01 11:06:34', 0, NULL, 0, NULL, 1),
(21230, 16480, '3', 'CMS College of Science and Commerce ', '', 'BBA ', '2023', 73.00, '', 1, '2024-02-02 03:14:24', 0, NULL, 0, NULL, 1),
(21231, 16481, '1', 'Sri Jadavbai Nathmal Singhvee Jain Vidhyalaya Matric Higher Secondary School', '', '', '2018', 70.00, '', 1, '2024-02-02 04:00:11', 0, NULL, 0, NULL, 1),
(21232, 16482, '3', 'Thiruvalluvar University', '', 'Bsc Mathematics', '2020', 75.00, '', 1, '2024-02-02 04:10:44', 0, NULL, 0, NULL, 1),
(21233, 16483, '3', 'Anna University ', '', 'MBA', '2021', 73.00, '', 1, '2024-02-02 04:46:23', 0, NULL, 0, NULL, 1),
(21234, 16483, '4', 'Madras University ', '', 'MBA ', '2019', 74.00, '', 1, '2024-02-02 04:47:01', 1, '2024-02-02 04:47:28', 0, NULL, 1),
(21235, 16484, '3', 'Madras University ', '', 'Bcom', '2022', 70.00, '', 1, '2024-02-02 04:50:15', 0, NULL, 0, NULL, 1),
(21236, 16485, '4', 'Bharathidasan University', '', 'MSc Mathematics ', '2020', 75.00, '', 1, '2024-02-02 05:06:16', 0, NULL, 0, NULL, 1),
(21237, 16485, '3', 'Bharathidasan University', '', 'BSc Mathematics', '2018', 68.00, '', 1, '2024-02-02 05:07:00', 0, NULL, 0, NULL, 1),
(21238, 16485, '2', 'State board', '', '', '2015', 82.00, '', 1, '2024-02-02 05:08:16', 0, NULL, 0, NULL, 1),
(21239, 16485, '1', 'State Board', '', '', '2013', 92.00, '', 1, '2024-02-02 05:08:48', 0, NULL, 0, NULL, 1),
(21240, 16487, '5', 'DOTE Board', '', 'Computer Science engineering ', '2021', 78.00, '', 1, '2024-02-02 05:14:14', 0, NULL, 0, NULL, 1),
(21241, 16489, '3', 'Anna university ', '', 'B.E', '2023', 83.00, '', 1, '2024-02-02 05:20:17', 0, NULL, 0, NULL, 1),
(21242, 16488, '3', 'Madras University ', '', 'BCA', '2023', 70.00, '', 1, '2024-02-02 05:21:16', 0, NULL, 0, NULL, 1),
(21243, 16490, '3', 'Madras University ', '', 'B com', '2023', 7.69, '', 1, '2024-02-02 05:24:50', 0, NULL, 0, NULL, 1),
(21244, 16491, '3', 'Periyar University ', '', 'Bachelor of Computer Applications ', '2023', 71.00, '', 1, '2024-02-02 05:40:49', 0, NULL, 0, NULL, 1),
(21245, 16491, '2', 'Model higher secondary school G ariyur ', '', '', '2020', 61.00, '', 1, '2024-02-02 05:41:36', 0, NULL, 0, NULL, 1),
(21246, 16491, '1', 'Model higher secondary school G ariyur ', '', '', '2018', 70.00, '', 1, '2024-02-02 05:42:11', 0, NULL, 0, NULL, 1),
(21247, 16492, '3', 'Mailam engineering college', '', 'B.Tech', '2023', 8.05, '', 1, '2024-02-02 05:43:50', 0, NULL, 0, NULL, 1),
(21248, 16492, '2', 'St Michael\'s hr sec school gingee', '', '', '2019', 57.50, '', 1, '2024-02-02 05:45:28', 0, NULL, 0, NULL, 1),
(21249, 16492, '1', 'St Michael\'s Hr Sec School Gingee', '', '', '2017', 71.60, '', 1, '2024-02-02 05:45:48', 0, NULL, 0, NULL, 1),
(21250, 16494, '3', 'University of madras', '', 'B. Sc Mathamatics', '2023', 68.00, '', 1, '2024-02-02 05:54:08', 0, NULL, 0, NULL, 1),
(21251, 16493, '4', 'Manonmaniyam Sundaranar university', '', 'MSc(computer science) ', '2021', 87.00, '', 1, '2024-02-02 06:06:17', 0, NULL, 0, NULL, 1),
(21252, 16495, '3', 'University of madras ', '', 'B.com Bank Management ', '2016', 73.00, '', 1, '2024-02-02 06:20:56', 0, NULL, 0, NULL, 1),
(21253, 16455, '3', 'University of Madras ', '', 'B.B.A', '2022', 67.00, '', 1, '2024-02-02 06:35:42', 0, NULL, 0, NULL, 1),
(21254, 16499, '3', 'Anna university', '', 'BE ', '2023', 80.00, '', 1, '2024-02-02 06:43:29', 1, '2024-02-02 06:44:02', 0, NULL, 1),
(21255, 16497, '3', 'University of Madras ', '', 'B.com general ', '2018', 60.00, '', 1, '2024-02-02 07:02:29', 0, NULL, 0, NULL, 1),
(21256, 16498, '3', 'University of Madras ', '', 'B.com(g)', '2021', 70.00, '', 1, '2024-02-02 07:03:36', 0, NULL, 0, NULL, 1),
(21257, 16502, '3', 'Madras University ', '', 'BSC computer science ', '2023', 7.50, '', 1, '2024-02-02 07:08:28', 0, NULL, 0, NULL, 1),
(21258, 16500, '3', 'Madras University ', '', 'BBA', '2023', 7.20, '', 1, '2024-02-02 08:03:35', 0, NULL, 0, NULL, 1),
(21259, 16501, '3', 'Madras University ', '', 'BBA ', '2023', 70.00, '', 1, '2024-02-02 08:39:03', 0, NULL, 0, NULL, 1),
(21260, 16504, '3', 'Veltech University ', '', 'B.Tech Aeronautical Engineering ', '2022', 8.01, '', 1, '2024-02-02 09:23:44', 0, NULL, 0, NULL, 1),
(21261, 16505, '4', 'Anna university ceg campus', '', 'Msc IT', '2017', 61.00, '', 1, '2024-02-02 09:34:58', 0, NULL, 0, NULL, 1),
(21262, 16496, '4', 'Srm institute of science and technology kattankulathur', '', 'M.com', '2023', 82.90, '', 1, '2024-02-02 10:05:48', 0, NULL, 0, NULL, 1),
(21263, 16507, '3', 'Rathinam College of arts and science ', '', 'B.com professional accounting ', '2021', 76.00, '', 1, '2024-02-02 10:22:38', 0, NULL, 0, NULL, 1),
(21264, 16506, '2', 'St Peter\'s University ', '', 'Bcom', '2018', 70.00, '', 1, '2024-02-02 10:26:54', 0, NULL, 0, NULL, 1),
(21265, 16512, '3', 'Anna University ', '', 'B.E.', '2023', 89.60, '', 1, '2024-02-03 04:59:00', 0, NULL, 0, NULL, 1),
(21266, 16511, '3', 'Madras University ', '', 'Bsc.computer science ', '2023', 60.00, '', 1, '2024-02-03 06:25:01', 0, NULL, 0, NULL, 1),
(21267, 16509, '3', 'Bharath University ', '', 'B.Tech ', '2016', 67.30, '', 1, '2024-02-03 07:07:48', 0, NULL, 0, NULL, 1),
(21268, 16513, '3', 'Pondicherry University ', '', 'B.com CS', '2022', 7.34, '', 1, '2024-02-03 07:11:16', 0, NULL, 0, NULL, 1),
(21269, 16515, '4', 'Sathyabama University of Science and Technology', '', 'MBA', '2022', 78.00, '', 1, '2024-02-03 09:16:51', 1, '2024-02-03 09:19:27', 0, NULL, 1),
(21270, 16514, '3', 'Tamilnadu board ', '', 'BCA', '2023', 80.00, '', 1, '2024-02-03 09:20:52', 0, NULL, 0, NULL, 1),
(21271, 16517, '3', 'Periyaruniversity', '', 'B. Sc. Computer science', '2023', 75.00, '', 1, '2024-02-03 09:23:15', 0, NULL, 0, NULL, 1),
(21272, 16518, '2', ' Madras Christian college of higher secondary school ', '', 'MBA finance and marketing ', '2022', 79.00, '', 1, '2024-02-03 09:24:54', 0, NULL, 0, NULL, 1),
(21273, 16516, '3', 'Anna Adarsh college for women', '', 'B. Com cs', '2020', 77.00, '', 1, '2024-02-03 10:00:18', 0, NULL, 0, NULL, 1),
(21274, 16516, '2', 'Satheesh balaji matric her sec school', '', '', '2017', 84.00, '', 1, '2024-02-03 10:00:57', 0, NULL, 0, NULL, 1),
(21275, 16516, '1', 'Satheesh balaji matric her sec school', '', '', '2015', 80.00, '', 1, '2024-02-03 10:01:26', 0, NULL, 0, NULL, 1),
(21276, 16520, '4', 'Anna University ', '', 'MBA', '2018', 72.00, '', 1, '2024-02-05 04:09:00', 0, NULL, 0, NULL, 1),
(21277, 16520, '3', 'Anna University ', '', 'B.E', '2011', 65.00, '', 1, '2024-02-05 04:09:33', 1, '2024-02-05 04:09:51', 0, NULL, 1),
(21278, 16521, '3', 'Anna University ', '', 'BE', '2020', 70.50, '', 1, '2024-02-05 04:32:57', 0, NULL, 0, NULL, 1),
(21279, 16522, '3', 'Anna univeraity ', '', 'BE Mechanical ', '2020', 76.40, '', 1, '2024-02-05 04:33:24', 0, NULL, 0, NULL, 1),
(21280, 16524, '4', 'VISTAS', '', 'MBA', '2021', 80.00, '', 1, '2024-02-05 04:43:54', 0, NULL, 0, NULL, 1),
(21281, 16524, '3', 'JNRM', '', 'Bcom', '2019', 70.00, '', 1, '2024-02-05 04:44:20', 0, NULL, 0, NULL, 1),
(21282, 16523, '4', 'Bharathidassion University ', '', 'M.sc', '2023', 74.64, '', 1, '2024-02-05 04:50:43', 0, NULL, 0, NULL, 1),
(21283, 16526, '3', 'madras university', '', 'b.com', '2021', 70.00, '', 1, '2024-02-05 04:59:51', 0, NULL, 0, NULL, 1),
(21284, 16528, '3', 'Madras university ', '', 'Bca computer application ', '2023', 81.10, '', 1, '2024-02-05 05:00:57', 0, NULL, 0, NULL, 1),
(21285, 16528, '1', 'Central  borad', '', '', '2018', 65.00, '', 1, '2024-02-05 05:01:38', 0, NULL, 0, NULL, 1),
(21286, 16528, '2', 'Center board ', '', '', '2020', 67.10, '', 1, '2024-02-05 05:01:59', 0, NULL, 0, NULL, 1),
(21287, 16529, '3', 'Anna University', '', 'Bachelor of engineering', '2022', 76.00, '', 1, '2024-02-05 05:05:15', 0, NULL, 0, NULL, 1),
(21288, 16529, '1', 'Central board of secondary Education(CBSE)', '', '', '2016', 96.00, '', 1, '2024-02-05 05:05:53', 1, '2024-02-05 05:07:33', 0, NULL, 1),
(21289, 16525, '3', 'Madurai kamaraj University ', '', 'B.Sc computer science ', '2023', 72.00, '', 1, '2024-02-05 05:06:05', 0, NULL, 0, NULL, 1),
(21290, 16529, '2', 'Central board of secondary Education(CBSE) ', '', '', '2018', 62.00, '', 1, '2024-02-05 05:06:59', 0, NULL, 0, NULL, 1),
(21291, 16527, '3', 'Anna university ', '', 'B. E', '2015', 80.00, '', 1, '2024-02-05 05:09:57', 0, NULL, 0, NULL, 1),
(21292, 16530, '3', 'Anna University ', '', 'Mechanical Engineering ', '2022', 80.00, '', 1, '2024-02-05 05:17:16', 0, NULL, 0, NULL, 1),
(21293, 16531, '4', 'Manonmaniam Sundaranar university', '', ' mathematics', '2023', 75.00, '', 1, '2024-02-05 05:18:01', 0, NULL, 0, NULL, 1),
(21294, 16531, '3', 'Manonmaniam sundaranar', '', 'Mathematics', '2021', 81.00, '', 1, '2024-02-05 05:18:44', 0, NULL, 0, NULL, 1),
(21295, 16534, '3', 'Anna University', '', 'B.E', '2022', 86.00, '', 1, '2024-02-05 05:22:50', 0, NULL, 0, NULL, 1),
(21296, 16534, '2', 'State Board', '', '', '2018', 78.00, '', 1, '2024-02-05 05:23:31', 0, NULL, 0, NULL, 1),
(21297, 16534, '1', 'State Board', '', '', '2016', 95.00, '', 1, '2024-02-05 05:23:57', 0, NULL, 0, NULL, 1),
(21298, 16538, '3', 'Pondicherry university', '', 'BCA', '2022', 65.70, '', 1, '2024-02-05 05:28:41', 0, NULL, 0, NULL, 1),
(21299, 16532, '3', 'Madras University ', '', 'B.Sc', '2021', 78.30, '', 1, '2024-02-05 05:28:59', 0, NULL, 0, NULL, 1),
(21300, 16538, '2', 'Tamil Nadu state board', '', '', '2019', 64.30, '', 1, '2024-02-05 05:29:21', 0, NULL, 0, NULL, 1),
(21301, 16532, '2', 'State Board ', '', '', '2018', 62.00, '', 1, '2024-02-05 05:29:35', 0, NULL, 0, NULL, 1),
(21302, 16538, '1', 'Tamil Nadu State board', '', '', '2017', 84.60, '', 1, '2024-02-05 05:29:51', 0, NULL, 0, NULL, 1),
(21303, 16532, '1', 'State Board ', '', '', '2015', 77.40, '', 1, '2024-02-05 05:30:00', 0, NULL, 0, NULL, 1),
(21304, 16537, '3', 'Sri Venkateswara University ', '', 'Bsc (computer science)', '2022', 74.00, '', 1, '2024-02-05 05:31:17', 0, NULL, 0, NULL, 1),
(21305, 16540, '3', 'Anna University ', '', 'B.Tech', '2020', 70.00, '', 1, '2024-02-05 05:32:03', 0, NULL, 0, NULL, 1),
(21306, 16537, '1', 'Board of secondary education Andhrapradesh ', '', '', '2017', 68.00, '', 1, '2024-02-05 05:33:08', 0, NULL, 0, NULL, 1),
(21307, 16537, '2', 'Board of Intermediate Education Andhrapradesh ', '', '', '2019', 62.00, '', 1, '2024-02-05 05:33:49', 0, NULL, 0, NULL, 1),
(21308, 16543, '4', 'Anna University ', '', 'MCA', '2023', 77.00, '', 1, '2024-02-05 05:34:55', 0, NULL, 0, NULL, 1),
(21309, 16543, '3', 'Madras University ', '', 'BCA', '2021', 72.00, '', 1, '2024-02-05 05:36:13', 0, NULL, 0, NULL, 1),
(21310, 16545, '3', 'Madras University ', '', 'B.com', '2022', 85.00, '', 1, '2024-02-05 05:36:43', 0, NULL, 0, NULL, 1),
(21311, 16535, '3', 'Dhanalakshmi Srinivasan Engineering College ', '', 'B.E.CSE', '2020', 71.00, '', 1, '2024-02-05 05:37:02', 0, NULL, 0, NULL, 1),
(21312, 16549, '4', 'Bharathidasan university', '', 'Mca', '2021', 81.00, '', 1, '2024-02-05 05:47:12', 0, NULL, 0, NULL, 1),
(21313, 16536, '4', 'Bharathidasan', '', 'M.sc', '2023', 80.00, '', 1, '2024-02-05 05:47:46', 0, NULL, 0, NULL, 1),
(21314, 16539, '1', 'ECI.mat her sec school', '', '', '2017', 88.00, '', 1, '2024-02-05 05:48:44', 0, NULL, 0, NULL, 1),
(21315, 16539, '3', 'SA engineering college', '', 'BE(computer science and engineering)', '2023', 82.10, '', 1, '2024-02-05 05:49:36', 0, NULL, 0, NULL, 1),
(21316, 16539, '2', 'PAK.palanisamy her sec school', '', '', '2019', 60.00, '', 1, '2024-02-05 05:50:12', 0, NULL, 0, NULL, 1),
(21317, 16542, '4', 'Anna University ', '', 'MCA', '2023', 75.00, '', 1, '2024-02-05 05:52:00', 0, NULL, 0, NULL, 1),
(21318, 16556, '3', 'Anna university', '', 'BE', '2023', 78.89, '', 1, '2024-02-05 05:52:03', 0, NULL, 0, NULL, 1),
(21319, 16547, '3', 'madras university ', '', 'bsc psychology ', '2021', 75.00, '', 1, '2024-02-05 05:53:43', 0, NULL, 0, NULL, 1),
(21320, 16553, '4', 'Sastra University ', '', 'MCA', '2020', 72.00, '', 1, '2024-02-05 05:54:20', 0, NULL, 0, NULL, 1),
(21321, 16551, '4', 'Anna University ', '', 'MCA', '2023', 75.80, '', 1, '2024-02-05 05:55:40', 0, NULL, 0, NULL, 1),
(21322, 16555, '4', 'rajalakshmi school of business', '', 'pgdm', '2025', 70.00, '', 1, '2024-02-05 05:56:01', 1, '2024-02-05 05:56:41', 0, NULL, 1),
(21323, 16551, '3', 'Thiruvalluvar University ', '', 'BCA', '2021', 74.50, '', 1, '2024-02-05 05:56:15', 0, NULL, 0, NULL, 1),
(21324, 16557, '3', 'Manonmaniyam Sundaranar University ', '', 'Bachelor of science ', '2023', 75.00, '', 1, '2024-02-05 05:56:27', 0, NULL, 0, NULL, 1),
(21325, 16551, '2', 'State board ', '', '', '2018', 55.04, '', 1, '2024-02-05 05:56:55', 0, NULL, 0, NULL, 1),
(21326, 16551, '1', 'State board ', '', '', '2016', 70.60, '', 1, '2024-02-05 05:57:25', 0, NULL, 0, NULL, 1),
(21327, 16555, '3', 'avinashilingam university', '', 'ba english literature', '2023', 78.00, '', 1, '2024-02-05 05:57:38', 0, NULL, 0, NULL, 1),
(21328, 16552, '4', 'Anna university', '', 'MCA', '2023', 60.00, '', 1, '2024-02-05 05:57:38', 0, NULL, 0, NULL, 1),
(21329, 16555, '2', 'malco vidayalaya matriculation higher Secondary School', '', '', '2020', 70.00, '', 1, '2024-02-05 05:58:32', 0, NULL, 0, NULL, 1),
(21330, 16555, '1', 'Malco Vidayalaya Matriculation Higher Secondary School', '', '', '2018', 75.80, '', 1, '2024-02-05 06:00:08', 0, NULL, 0, NULL, 1),
(21331, 16533, '4', 'Bharathidhasan', '', 'M.sc', '2023', 85.00, '', 1, '2024-02-05 06:00:17', 0, NULL, 0, NULL, 1),
(21332, 16550, '3', 'Tamilnadu college of engineering ', '', 'BE', '2019', 6.27, '', 1, '2024-02-05 06:01:55', 0, NULL, 0, NULL, 1),
(21333, 16546, '3', 'Jntuk ', '', 'BTech ', '2019', 62.00, '', 1, '2024-02-05 06:04:06', 0, NULL, 0, NULL, 1),
(21334, 16558, '3', 'Anna university ', '', 'B.E Mechanical ', '2022', 8.30, '', 1, '2024-02-05 06:04:40', 0, NULL, 0, NULL, 1),
(21335, 16560, '4', 'Bharathidarsan university', '', 'MCA', '2023', 70.00, '', 1, '2024-02-05 06:10:06', 0, NULL, 0, NULL, 1),
(21336, 16554, '3', 'Anna university', '', 'BE. CSE', '2023', 8.10, '', 1, '2024-02-05 06:16:39', 0, NULL, 0, NULL, 1),
(21337, 16563, '3', 'mnm jain engineering college', '', 'electronic and communication engineering', '2022', 73.00, '', 1, '2024-02-05 06:17:24', 0, NULL, 0, NULL, 1),
(21338, 16563, '2', 'vailankanni matric hr sec school', '', '', '2018', 62.00, '', 1, '2024-02-05 06:18:10', 0, NULL, 0, NULL, 1),
(21339, 16563, '1', 'himayam matric school', '', '', '2016', 83.00, '', 1, '2024-02-05 06:18:33', 0, NULL, 0, NULL, 1),
(21340, 16567, '4', 'Karpagam university ', '', 'MCA', '2023', 89.00, '', 1, '2024-02-05 06:19:19', 0, NULL, 0, NULL, 1),
(21341, 16566, '4', 'karpagam academy of higher education', '', 'mca', '2023', 89.00, '', 1, '2024-02-05 06:20:14', 0, NULL, 0, NULL, 1),
(21342, 16568, '3', 'Bharathiyar University', '', 'BCA', '2023', 75.80, '', 1, '2024-02-05 06:20:53', 0, NULL, 0, NULL, 1),
(21343, 16569, '3', 'Bharathiar University', '', 'BCA', '2023', 71.00, '', 1, '2024-02-05 06:22:28', 0, NULL, 0, NULL, 1),
(21344, 16561, '3', 'Anna University ', '', 'BE cse', '2023', 82.00, '', 1, '2024-02-05 06:27:06', 0, NULL, 0, NULL, 1),
(21345, 16572, '2', 'State Board ', '', 'B Sc Comp sci', '2016', 60.00, '', 1, '2024-02-05 06:30:21', 0, NULL, 0, NULL, 1),
(21346, 16571, '3', 'Meenakshi college of engineering ', '', 'B.E CSE', '2023', 75.00, '', 1, '2024-02-05 06:34:04', 0, NULL, 0, NULL, 1),
(21347, 16570, '3', 'Thiruvalluvar college ', '', 'B.com', '2023', 70.00, '', 1, '2024-02-05 06:34:05', 0, NULL, 0, NULL, 1),
(21348, 16573, '3', 'Hindustan college of arts and science ', '', 'Bsc computer science ', '2023', 81.00, '', 1, '2024-02-05 06:35:04', 0, NULL, 0, NULL, 1),
(21349, 16575, '3', 'Anna University ', '', 'BE-EEE', '2022', 84.00, '', 1, '2024-02-05 06:35:15', 0, NULL, 0, NULL, 1),
(21350, 16576, '3', 'Anna university ', '', 'B.Tech(Information Technology)', '2020', 68.00, '', 1, '2024-02-05 06:40:36', 0, NULL, 0, NULL, 1),
(21351, 16562, '3', 'UNIVERSITY OF MADRAS', '', 'B Sc COMPUTER SCIENCE', '2023', 82.00, '', 1, '2024-02-05 06:46:52', 0, NULL, 0, NULL, 1),
(21352, 16579, '3', 'Anna University ', '', 'B.E(ECE)', '2023', 75.00, '', 1, '2024-02-05 07:01:47', 0, NULL, 0, NULL, 1),
(21353, 16581, '3', 'Anna University ', '', 'B.E Ece', '2023', 74.00, '', 1, '2024-02-05 07:01:55', 0, NULL, 0, NULL, 1),
(21354, 16579, '2', 'Higher secondary ', '', '', '2019', 65.00, '', 1, '2024-02-05 07:02:59', 0, NULL, 0, NULL, 1),
(21355, 16581, '2', 'Higher secondary ', '', '', '2019', 68.00, '', 1, '2024-02-05 07:03:28', 0, NULL, 0, NULL, 1),
(21356, 16579, '1', 'State board ', '', '', '2017', 88.00, '', 1, '2024-02-05 07:03:34', 0, NULL, 0, NULL, 1),
(21357, 16581, '1', 'State board ', '', '', '2017', 88.00, '', 1, '2024-02-05 07:03:48', 0, NULL, 0, NULL, 1),
(21358, 16583, '3', 'UNIVERSITY OF MADRAS', '', 'B Sc ECS ', '2020', 62.00, '', 1, '2024-02-05 07:05:27', 0, NULL, 0, NULL, 1),
(21359, 16580, '3', 'Anna University ', '', 'BE-ECE ', '2023', 77.00, '', 1, '2024-02-05 07:06:17', 0, NULL, 0, NULL, 1),
(21360, 16582, '4', 'Anna university ', '', 'Electronic and communication engineering ', '2022', 75.00, '', 1, '2024-02-05 07:07:56', 0, NULL, 0, NULL, 1),
(21361, 16582, '3', 'Anna university ', '', 'B.E', '2022', 75.00, '', 1, '2024-02-05 07:09:05', 1, '2024-02-05 07:21:06', 0, NULL, 0),
(21362, 16584, '4', 'Bharathiyar university', '', 'MBA', '2021', 64.00, '', 1, '2024-02-05 07:14:36', 0, NULL, 0, NULL, 1),
(21363, 16584, '3', 'Periyar university', '', 'BBA', '2019', 58.00, '', 1, '2024-02-05 07:16:43', 0, NULL, 0, NULL, 1),
(21364, 16582, '2', 'Tamil Nadu ', '', '', '2018', 55.00, '', 1, '2024-02-05 07:20:44', 1, '2024-02-05 07:22:21', 0, NULL, 1),
(21365, 16582, '1', 'Tamil Nadu ', '', '', '2016', 50.00, '', 1, '2024-02-05 07:22:48', 0, NULL, 0, NULL, 1),
(21366, 16587, '4', 'Bharathidasan University ', '', 'Msc Computer science ', '2023', 73.26, '', 1, '2024-02-05 07:28:52', 0, NULL, 0, NULL, 1),
(21367, 16588, '4', 'Bharathidasan ', '', 'Msc computer science ', '2023', 71.00, '', 1, '2024-02-05 07:31:16', 0, NULL, 0, NULL, 1),
(21368, 16586, '4', 'Bharathidasan ', '', 'M.sc', '2023', 83.00, '', 1, '2024-02-05 07:34:05', 0, NULL, 0, NULL, 1),
(21369, 16590, '3', 'Anna University ', '', 'BE', '2023', 81.50, '', 1, '2024-02-05 07:37:13', 0, NULL, 0, NULL, 1),
(21370, 16590, '2', 'State Board', '', '', '2019', 62.00, '', 1, '2024-02-05 07:37:50', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21371, 16590, '1', 'State Board ', '', '', '2017', 92.00, '', 1, '2024-02-05 07:38:21', 0, NULL, 0, NULL, 1),
(21372, 16589, '3', 'Madras University ', '', 'Bsc computer science ', '2020', 60.00, '', 1, '2024-02-05 07:40:22', 0, NULL, 0, NULL, 1),
(21373, 0, '1', 'State board ', '', '', '2017', 73.00, '', 1, '2024-02-05 07:40:59', 1, '2024-02-06 05:51:50', 0, NULL, 0),
(21374, 16589, '2', 'State Board ', '', '', '2017', 50.00, '', 1, '2024-02-05 07:41:24', 0, NULL, 0, NULL, 1),
(21375, 16589, '1', 'State Board ', '', '', '2015', 67.20, '', 1, '2024-02-05 07:41:56', 0, NULL, 0, NULL, 1),
(21376, 0, '1', 'State board ', '', '', '2016', 75.00, '', 1, '2024-02-05 07:42:00', 1, '2024-02-06 05:52:59', 0, NULL, 0),
(21377, 0, '3', 'Anna university ', '', 'Be ', '2022', 80.00, '', 1, '2024-02-05 07:42:38', 1, '2024-02-06 05:52:14', 0, NULL, 0),
(21378, 16591, '3', 'Madras university', '', 'Bsc', '2023', 80.00, '', 1, '2024-02-05 07:49:33', 0, NULL, 0, NULL, 1),
(21379, 16592, '3', 'Anna University', '', 'B.tech', '2023', 77.00, '', 1, '2024-02-05 07:53:24', 0, NULL, 0, NULL, 1),
(21380, 16592, '2', 'State board', '', '', '2019', 89.80, '', 1, '2024-02-05 07:54:10', 0, NULL, 0, NULL, 1),
(21381, 16592, '1', 'State board', '', '', '2017', 95.00, '', 1, '2024-02-05 07:54:47', 0, NULL, 0, NULL, 1),
(21382, 16593, '3', 'Anna University ', '', '', '2022', 80.00, '', 1, '2024-02-05 07:54:55', 0, NULL, 0, NULL, 1),
(21383, 16578, '1', 'State board ', '', '', '2016', 85.00, '', 1, '2024-02-05 08:00:34', 0, NULL, 0, NULL, 1),
(21384, 16578, '2', 'State board ', '', '', '2018', 76.00, '', 1, '2024-02-05 08:00:52', 0, NULL, 0, NULL, 1),
(21385, 16578, '3', 'Sa engineering college ', '', 'BE', '2022', 80.00, '', 1, '2024-02-05 08:01:28', 0, NULL, 0, NULL, 1),
(21386, 16594, '4', 'SRM University', '', 'MBA (HR & Marketing) ', '2024', 78.20, '', 1, '2024-02-05 09:24:36', 0, NULL, 0, NULL, 1),
(21387, 16585, '3', 'Annamalai University ', '', 'BE INFORMATION TECHNOLOGY ', '2023', 80.10, '', 1, '2024-02-05 09:36:42', 0, NULL, 0, NULL, 1),
(21388, 16595, '3', 'University', '', 'Bachelor of computer application', '2023', 76.00, '', 1, '2024-02-05 09:57:54', 0, NULL, 0, NULL, 1),
(21389, 16597, '3', 'University College of Engineering Ariyalur ', '', 'BE', '2022', 7.60, '', 1, '2024-02-05 10:00:21', 0, NULL, 0, NULL, 1),
(21390, 16597, '1', 'Mar Gregorious Matric Higher Secondary school kirathoor ', '', '', '2016', 92.00, '', 1, '2024-02-05 10:01:34', 0, NULL, 0, NULL, 1),
(21391, 16596, '3', 'University', '', 'Bachelor of computer application', '2023', 75.00, '', 1, '2024-02-05 10:03:14', 0, NULL, 0, NULL, 1),
(21392, 16598, '3', 'SA Engineering College /Anna University ', '', 'eEE', '2020', 64.00, '', 1, '2024-02-05 10:17:38', 0, NULL, 0, NULL, 1),
(21393, 16519, '3', 'Thiruvalluvar college', '', 'bcom', '2023', 70.00, '', 104, '2024-02-05 04:01:44', 0, NULL, 0, NULL, 1),
(21394, 16599, '3', 'University of Madras ', '', 'B.com', '2021', 64.00, '', 1, '2024-02-05 11:25:13', 0, NULL, 0, NULL, 1),
(21395, 16599, '5', 'G-Tech Computer Education ', '', 'Diploma in web Designing ', '2023', 95.00, '', 1, '2024-02-05 11:25:50', 0, NULL, 0, NULL, 1),
(21396, 16600, '3', 'Srm University ', '', 'BCA', '2019', 60.00, '', 1, '2024-02-06 04:20:18', 0, NULL, 0, NULL, 1),
(21397, 16600, '1', 'Tamil nadu board', '', '', '2014', 90.00, '', 1, '2024-02-06 04:21:23', 0, NULL, 0, NULL, 1),
(21398, 16600, '2', 'Tamil nadu board', '', '', '2016', 70.00, '', 1, '2024-02-06 04:21:40', 0, NULL, 0, NULL, 1),
(21399, 16601, '4', 'Anna University ', '', 'MBA', '2024', 8.70, '', 1, '2024-02-06 04:32:35', 0, NULL, 0, NULL, 1),
(21400, 16601, '3', 'Anna University ', '', 'BE-ECE', '2022', 7.50, '', 1, '2024-02-06 04:33:00', 0, NULL, 0, NULL, 1),
(21401, 16601, '2', 'State board', '', '', '2017', 80.00, '', 1, '2024-02-06 04:33:45', 0, NULL, 0, NULL, 1),
(21402, 16601, '1', 'State board ', '', '', '2015', 92.40, '', 1, '2024-02-06 04:34:04', 0, NULL, 0, NULL, 1),
(21403, 16602, '1', 'Veera Savarkar Netaji Matriculation School, Chennai', '', '', '2016', 71.00, '', 1, '2024-02-06 04:47:20', 0, NULL, 0, NULL, 1),
(21404, 16602, '2', 'Kamaraj Matriculation Higher Secondary School, Chennai', '', '', '2018', 61.00, '', 1, '2024-02-06 04:47:47', 0, NULL, 0, NULL, 1),
(21405, 16602, '3', 'St.Peter’s College of Engineering and Technology, Chennai', '', 'b. tech', '2018', 7.67, '', 1, '2024-02-06 04:48:48', 0, NULL, 0, NULL, 1),
(21406, 16602, '4', 'Velammal Engineering College, Chennai', '', 'Master of Business Administration', '2024', 7.80, '', 1, '2024-02-06 04:49:54', 0, NULL, 0, NULL, 1),
(21407, 16604, '4', 'Anna University ', '', 'Master of science ', '2023', 76.00, '', 1, '2024-02-06 05:08:39', 0, NULL, 0, NULL, 1),
(21408, 16604, '3', 'SCSVMV UNIVERSITY ', '', 'Bachelor of science ', '2021', 83.20, '', 1, '2024-02-06 05:09:09', 0, NULL, 0, NULL, 1),
(21409, 16604, '2', 'State board ', '', '', '2018', 68.00, '', 1, '2024-02-06 05:09:40', 1, '2024-02-06 05:10:19', 0, NULL, 1),
(21410, 16604, '1', 'State board ', '', '', '2016', 83.00, '', 1, '2024-02-06 05:10:36', 0, NULL, 0, NULL, 1),
(21411, 16606, '4', 'Anna University ', '', 'MCA ', '2023', 81.00, '', 1, '2024-02-06 05:11:25', 0, NULL, 0, NULL, 1),
(21412, 16606, '3', 'University of Madras ', '', 'BCA ', '2021', 79.00, '', 1, '2024-02-06 05:12:04', 0, NULL, 0, NULL, 1),
(21413, 16605, '3', 'Berhampur university', '', 'Bachelor in science', '2023', 72.00, '', 1, '2024-02-06 05:12:04', 0, NULL, 0, NULL, 1),
(21414, 16607, '2', 'State board', '', '', '2018', 86.00, '', 1, '2024-02-06 05:12:14', 0, NULL, 0, NULL, 1),
(21415, 16606, '2', 'State board ', '', '', '2018', 70.00, '', 1, '2024-02-06 05:12:32', 0, NULL, 0, NULL, 1),
(21416, 16605, '1', 'Berhampur university', '', '', '2020', 57.00, '', 1, '2024-02-06 05:12:32', 0, NULL, 0, NULL, 1),
(21417, 16609, '3', 'Madras university', '', 'B. Com (CS) ', '2021', 64.50, '', 1, '2024-02-06 05:12:41', 0, NULL, 0, NULL, 1),
(21418, 16607, '3', 'Anna University ', '', 'Bachelor of engineering ', '2022', 76.00, '', 1, '2024-02-06 05:12:48', 0, NULL, 0, NULL, 1),
(21419, 16606, '1', 'State board ', '', '', '2016', 85.00, '', 1, '2024-02-06 05:12:51', 0, NULL, 0, NULL, 1),
(21420, 16605, '2', 'Berhampur university', '', '', '2016', 65.00, '', 1, '2024-02-06 05:13:02', 0, NULL, 0, NULL, 1),
(21421, 16607, '1', 'State board ', '', '', '2016', 91.00, '', 1, '2024-02-06 05:13:25', 0, NULL, 0, NULL, 1),
(21422, 16611, '2', 'State board ', '', '', '2019', 71.00, '', 1, '2024-02-06 05:19:51', 0, NULL, 0, NULL, 1),
(21423, 16610, '3', 'Bharath University', '', 'BCA', '2023', 8.61, '', 1, '2024-02-06 05:20:31', 0, NULL, 0, NULL, 1),
(21424, 16611, '3', 'Loyola -Icam College of Engineering and Technology ', '', 'B.E Mechanical engineering ', '2023', 75.00, '', 1, '2024-02-06 05:20:42', 0, NULL, 0, NULL, 1),
(21425, 16610, '2', 'Tamil Nadu State Board', '', '', '2020', 64.50, '', 1, '2024-02-06 05:21:27', 0, NULL, 0, NULL, 1),
(21426, 16610, '1', 'Tamil Nadu State Board', '', '', '2018', 81.80, '', 1, '2024-02-06 05:22:16', 0, NULL, 0, NULL, 1),
(21427, 16611, '1', 'State board ', '', '', '2017', 91.00, '', 1, '2024-02-06 05:22:28', 1, '2024-02-06 05:23:23', 0, NULL, 1),
(21428, 16612, '1', 'State Board', '', '', '2018', 74.00, '', 1, '2024-02-06 05:24:23', 0, NULL, 0, NULL, 1),
(21429, 16612, '2', 'State Board', '', '', '2020', 69.00, '', 1, '2024-02-06 05:24:41', 0, NULL, 0, NULL, 1),
(21430, 16612, '3', 'Thiruvalluvar University', '', 'Bsc Computer Science', '2023', 79.00, '', 1, '2024-02-06 05:25:07', 0, NULL, 0, NULL, 1),
(21431, 16603, '3', 'Anna university', '', 'B-tech IT', '2023', 8.24, '', 1, '2024-02-06 05:31:25', 0, NULL, 0, NULL, 1),
(21432, 16603, '1', 'AGM matric Hr sec school', '', '', '2017', 78.60, '', 1, '2024-02-06 05:32:28', 0, NULL, 0, NULL, 1),
(21433, 16614, '1', 'State board', '', '', '2018', 73.00, '', 1, '2024-02-06 05:32:53', 0, NULL, 0, NULL, 1),
(21434, 16603, '2', 'Velammal matric Hr sec school', '', '', '2019', 70.00, '', 1, '2024-02-06 05:32:59', 0, NULL, 0, NULL, 1),
(21435, 16614, '2', 'State board', '', '', '2020', 59.00, '', 1, '2024-02-06 05:33:14', 0, NULL, 0, NULL, 1),
(21436, 16614, '3', 'University of madras', '', 'Bsc Information Technology', '2023', 80.00, '', 1, '2024-02-06 05:34:04', 0, NULL, 0, NULL, 1),
(21437, 16613, '3', 'Bharathi dasan University ', '', 'B.com computer application ', '2023', 65.00, '', 1, '2024-02-06 05:34:05', 0, NULL, 0, NULL, 1),
(21438, 16608, '3', 'Madras University ', '', 'B.sc Mathematics ', '2020', 71.00, '', 1, '2024-02-06 05:38:54', 0, NULL, 0, NULL, 1),
(21439, 16619, '4', 'Bharathiyar University ', '', 'MCA', '2023', 75.00, '', 1, '2024-02-06 05:40:52', 0, NULL, 0, NULL, 1),
(21440, 16623, '3', 'Anna university', '', 'BE', '2017', 60.00, '', 1, '2024-02-06 05:42:32', 0, NULL, 0, NULL, 1),
(21441, 16626, '1', 'State board', '', '', '2017', 87.80, '', 1, '2024-02-06 05:45:16', 1, '2024-02-06 05:45:47', 0, NULL, 1),
(21442, 16627, '3', 'Anna university', '', 'B. Tech IT', '2016', 60.00, '', 1, '2024-02-06 05:45:42', 0, NULL, 0, NULL, 1),
(21443, 16626, '2', 'State board', '', '', '2019', 68.60, '', 1, '2024-02-06 05:46:27', 0, NULL, 0, NULL, 1),
(21444, 16615, '1', 'Immaculate heart of Mary matriculation school', '', '', '2018', 68.00, '', 1, '2024-02-06 05:46:56', 0, NULL, 0, NULL, 1),
(21445, 16626, '3', 'Anna university', '', 'BE-EEE', '2023', 76.60, '', 1, '2024-02-06 05:47:02', 0, NULL, 0, NULL, 1),
(21446, 16615, '2', 'Wesley higher secondary school ', '', '', '2020', 60.00, '', 1, '2024-02-06 05:47:56', 0, NULL, 0, NULL, 1),
(21447, 16629, '5', 'Stateboard', '', 'Mern fullstack developer ', '2023', 85.00, '', 1, '2024-02-06 05:48:27', 0, NULL, 0, NULL, 1),
(21448, 16629, '3', 'Stateboard ', '', 'Bachelor of Engineering ', '2021', 80.00, '', 1, '2024-02-06 05:48:50', 0, NULL, 0, NULL, 1),
(21449, 16620, '3', 'ANNA UNIVERSITY', '', 'BE', '2023', 81.00, '', 1, '2024-02-06 05:48:54', 0, NULL, 0, NULL, 1),
(21450, 16615, '3', 'Kumara Rani Meena muthaiya college of arts and science ', '', 'B.com', '2023', 60.00, '', 1, '2024-02-06 05:49:02', 0, NULL, 0, NULL, 1),
(21451, 16629, '2', 'Stateboard ', '', '', '2017', 88.00, '', 1, '2024-02-06 05:49:05', 0, NULL, 0, NULL, 1),
(21452, 16629, '1', 'Stateboard ', '', '', '2015', 89.00, '', 1, '2024-02-06 05:49:19', 0, NULL, 0, NULL, 1),
(21453, 16620, '1', 'STATE BOARD', '', '', '2017', 93.00, '', 1, '2024-02-06 05:49:59', 0, NULL, 0, NULL, 1),
(21454, 16620, '2', 'STATE BOARD', '', '', '2019', 65.00, '', 1, '2024-02-06 05:50:22', 0, NULL, 0, NULL, 1),
(21455, 16625, '2', 'Government Higher secondary School in keelavilyuer ', '', 'BE CSE ', '2018', 50.00, '', 1, '2024-02-06 05:50:24', 0, NULL, 0, NULL, 1),
(21456, 16625, '1', 'Government higher secondary School in keelavilyuer ', '', '', '2016', 74.00, '', 1, '2024-02-06 05:51:08', 0, NULL, 0, NULL, 1),
(21457, 16630, '3', 'Anna University ', '', 'B.E civil', '2015', 6.57, '', 1, '2024-02-06 05:52:33', 0, NULL, 0, NULL, 1),
(21458, 16634, '4', 'MS university ', '', 'Mathematics ', '2023', 79.00, '', 1, '2024-02-06 05:52:38', 0, NULL, 0, NULL, 1),
(21459, 16635, '2', 'Secondary school ', '', '', '2020', 55.00, '', 1, '2024-02-06 05:53:54', 1, '2024-02-06 05:54:50', 0, NULL, 0),
(21460, 16632, '1', 'Andhra Pradesh secondary education ', '', '', '2016', 65.00, '', 1, '2024-02-06 05:54:02', 1, '2024-02-06 05:54:24', 0, NULL, 1),
(21461, 16636, '4', 'Manonmaniam Sundaranar University', '', 'Master of Commerce (M.Com)', '2019', 60.00, '', 1, '2024-02-06 05:54:12', 0, NULL, 0, NULL, 1),
(21462, 16635, '1', 'Secondary school ', '', '', '2018', 60.00, '', 1, '2024-02-06 05:55:13', 0, NULL, 0, NULL, 1),
(21463, 16632, '3', 'Jawaharlal Nehru Technological University anathapur', '', 'B tech', '2023', 63.48, '', 1, '2024-02-06 05:55:17', 0, NULL, 0, NULL, 1),
(21464, 16635, '3', 'Bharidhasan ', '', 'BCA', '2023', 78.00, '', 1, '2024-02-06 05:55:59', 0, NULL, 0, NULL, 1),
(21465, 16633, '3', 'Periyar University ', '', 'BCA', '2023', 68.00, '', 1, '2024-02-06 05:57:28', 0, NULL, 0, NULL, 1),
(21466, 16638, '3', 'Bharathiyar University ', '', 'BSC COMPUTER TECHNOLOGY ', '2023', 71.00, '', 1, '2024-02-06 05:57:37', 0, NULL, 0, NULL, 1),
(21467, 16621, '1', 'State Board', '', '', '2017', 90.00, '', 1, '2024-02-06 05:57:40', 1, '2024-02-06 05:59:31', 0, NULL, 1),
(21468, 16621, '2', 'State Board', '', '', '2019', 80.16, '', 1, '2024-02-06 05:58:02', 1, '2024-02-06 05:59:16', 0, NULL, 1),
(21469, 16621, '3', 'Anna Uniersity', '', 'EEE', '2023', 79.50, '', 1, '2024-02-06 05:58:28', 0, NULL, 0, NULL, 1),
(21470, 16633, '2', 'Govt boys hr secondary school ', '', '', '2020', 54.00, '', 1, '2024-02-06 05:58:30', 0, NULL, 0, NULL, 1),
(21471, 16638, '1', 'State board', '', '', '2018', 73.00, '', 1, '2024-02-06 05:58:32', 0, NULL, 0, NULL, 1),
(21472, 16641, '3', 'anna university', '', 'bachelora', '2022', 79.30, '', 1, '2024-02-06 05:58:47', 0, NULL, 0, NULL, 1),
(21473, 16638, '2', 'State board', '', '', '2020', 76.00, '', 1, '2024-02-06 05:58:56', 0, NULL, 0, NULL, 1),
(21474, 16633, '1', 'Govt boys hr secondary school ', '', '', '2017', 76.00, '', 1, '2024-02-06 05:59:06', 0, NULL, 0, NULL, 1),
(21475, 16641, '2', 'state board of tamilnadu', '', '', '2018', 65.50, '', 1, '2024-02-06 05:59:19', 0, NULL, 0, NULL, 1),
(21476, 16640, '3', 'Alagappa chettair government college of engineering and technology', '', 'B. E. Mechanical', '2023', 80.00, '', 1, '2024-02-06 05:59:40', 0, NULL, 0, NULL, 1),
(21477, 16641, '1', 'state board of tamilnadu', '', '', '2022', 89.00, '', 1, '2024-02-06 05:59:50', 0, NULL, 0, NULL, 1),
(21478, 16618, '1', 'SIR M VENKATASUBBRAO MAT HIG SCHOOL ', '', '', '2018', 73.00, '', 1, '2024-02-06 06:00:37', 0, NULL, 0, NULL, 1),
(21479, 16628, '3', 'Presidency college (autonomous) Chennai ', '', 'B.sc Chemistry.', '2022', 81.00, '', 1, '2024-02-06 06:00:54', 0, NULL, 0, NULL, 1),
(21480, 16618, '2', 'SIR M VENTAKASUBBRAO MAT HIG SCHOOL ', '', '', '2020', 60.00, '', 1, '2024-02-06 06:01:49', 0, NULL, 0, NULL, 1),
(21481, 16646, '4', 'anna university regional campus coimbatore', '', 'mba', '2024', 7.40, '', 1, '2024-02-06 06:02:22', 0, NULL, 0, NULL, 1),
(21482, 16618, '3', 'RAMAKRISHNA MISSION VIVEKANANDA COLLEGE ', '', 'B.Sc', '2023', 7.50, '', 1, '2024-02-06 06:03:28', 0, NULL, 0, NULL, 1),
(21483, 16631, '1', 'Tamil Nadu state board', '', '', '2014', 83.00, '', 1, '2024-02-06 06:06:13', 1, '2024-02-06 06:07:40', 0, NULL, 1),
(21484, 16639, '1', 'State Board', '', '', '2018', 80.00, '', 1, '2024-02-06 06:07:19', 0, NULL, 0, NULL, 1),
(21485, 16631, '2', 'Tamil Nadu state Board ', '', '', '2016', 60.50, '', 1, '2024-02-06 06:07:25', 0, NULL, 0, NULL, 1),
(21486, 16642, '3', 'pondicherry university', '', 'b.tech', '2023', 81.00, '', 1, '2024-02-06 06:07:38', 0, NULL, 0, NULL, 1),
(21487, 16639, '2', 'State Board ', '', '', '2020', 68.00, '', 1, '2024-02-06 06:07:40', 0, NULL, 0, NULL, 1),
(21488, 16645, '3', 'Anna University ', '', 'B.Tech', '2023', 84.40, '', 1, '2024-02-06 06:07:45', 0, NULL, 0, NULL, 1),
(21489, 16616, '4', 'Madras University ', '', 'M.sc', '2023', 86.00, '', 1, '2024-02-06 06:07:46', 0, NULL, 0, NULL, 1),
(21490, 16644, '3', 'Pondicherry university', '', 'B. Tech', '2023', 83.00, '', 1, '2024-02-06 06:07:47', 0, NULL, 0, NULL, 1),
(21491, 16648, '3', 'Anna University ', '', 'B.E.', '2023', 89.00, '', 1, '2024-02-06 06:07:57', 0, NULL, 0, NULL, 1),
(21492, 16631, '3', 'Madras university ', '', 'Bsc Computer Science ', '2019', 61.00, '', 1, '2024-02-06 06:08:09', 0, NULL, 0, NULL, 1),
(21493, 16647, '3', 'Anna University ', '', 'B.Tech (Information Technology)', '2023', 87.00, '', 1, '2024-02-06 06:08:16', 0, NULL, 0, NULL, 1),
(21494, 16639, '3', 'MS University ', '', 'B .sc maths', '2023', 80.00, '', 1, '2024-02-06 06:08:31', 0, NULL, 0, NULL, 1),
(21495, 16648, '2', 'Tamil Nadu State Board', '', '', '2019', 73.00, '', 1, '2024-02-06 06:08:32', 0, NULL, 0, NULL, 1),
(21496, 16643, '3', 'RAAKCET', '', 'B.Tech', '2023', 88.00, '', 1, '2024-02-06 06:08:43', 0, NULL, 0, NULL, 1),
(21497, 16648, '1', 'Tamil Nadu State Board ', '', '', '2017', 90.00, '', 1, '2024-02-06 06:09:09', 0, NULL, 0, NULL, 1),
(21498, 16653, '3', 'Pondicherry University ', '', 'Btech', '2023', 82.00, '', 1, '2024-02-06 06:09:20', 0, NULL, 0, NULL, 1),
(21499, 16652, '3', 'Pondicherry university ', '', 'B.tech', '2023', 82.50, '', 1, '2024-02-06 06:09:44', 0, NULL, 0, NULL, 1),
(21500, 16650, '3', 'University', '', '', '2023', 69.00, '', 1, '2024-02-06 06:11:04', 0, NULL, 0, NULL, 1),
(21501, 16622, '3', 'Madras University ', '', 'BCA', '2021', 71.00, '', 1, '2024-02-06 06:11:15', 0, NULL, 0, NULL, 1),
(21502, 16637, '3', 'Anna University ', '', 'BE', '2019', 63.00, '', 1, '2024-02-06 06:15:42', 0, NULL, 0, NULL, 1),
(21503, 16617, '2', 'Government  higher secondary ', '', '', '2016', 68.00, '', 1, '2024-02-06 06:16:17', 0, NULL, 0, NULL, 1),
(21504, 16651, '4', 'UNIVERSITY OF MADRAS', '', 'MSc Computer science', '2023', 76.00, '', 1, '2024-02-06 06:16:18', 0, NULL, 0, NULL, 1),
(21505, 16654, '3', 'State Board ', '', 'BE Mechanical Engineer Degree', '2018', 60.00, '', 1, '2024-02-06 06:17:14', 0, NULL, 0, NULL, 1),
(21506, 16617, '3', 'Sri Sai bharath', '', 'Bsc Computer science ', '2016', 69.00, '', 1, '2024-02-06 06:17:17', 0, NULL, 0, NULL, 1),
(21507, 16656, '3', 'Sri Venkateswara University (Tirupati) ', '', 'Sri Vani degree College at palamaner ', '2022', 80.00, '', 1, '2024-02-06 06:17:20', 0, NULL, 0, NULL, 1),
(21508, 16617, '4', 'Sri Sai bharath', '', 'Mca', '2021', 72.00, '', 1, '2024-02-06 06:17:49', 0, NULL, 0, NULL, 1),
(21509, 16660, '3', 'Madurai kamaraj university', '', 'BA. English', '2023', 75.00, '', 1, '2024-02-06 06:20:37', 0, NULL, 0, NULL, 1),
(21510, 16624, '3', 'Anna University ', '', 'BE', '2021', 8.10, '', 1, '2024-02-06 06:21:14', 0, NULL, 0, NULL, 1),
(21511, 16658, '3', 'Deemed university ', '', 'CSE', '2023', 74.00, '', 1, '2024-02-06 06:22:01', 0, NULL, 0, NULL, 1),
(21512, 16661, '3', 'Deemed University ', '', 'C.S.E', '2023', 70.00, '', 1, '2024-02-06 06:22:21', 0, NULL, 0, NULL, 1),
(21513, 16663, '4', 'Anna University ', '', 'MSc Software Systems ', '2024', 82.00, '', 1, '2024-02-06 06:24:23', 0, NULL, 0, NULL, 1),
(21514, 16657, '1', 'STATE', '', '', '2016', 88.40, '', 1, '2024-02-06 06:28:22', 0, NULL, 0, NULL, 1),
(21515, 16657, '2', 'STATE', '', '', '2018', 78.00, '', 1, '2024-02-06 06:28:44', 0, NULL, 0, NULL, 1),
(21516, 16657, '3', 'MADRAS UNIVERSITY ', '', 'B.Sc(cs)', '2021', 74.00, '', 1, '2024-02-06 06:29:09', 0, NULL, 0, NULL, 1),
(21517, 16657, '4', 'MADRAS UNIVERSITY ', '', 'M SC(cs)', '2023', 76.00, '', 1, '2024-02-06 06:29:33', 0, NULL, 0, NULL, 1),
(21518, 16662, '3', 'Vels university', '', 'B. E. CS', '2022', 69.00, '', 1, '2024-02-06 06:30:04', 0, NULL, 0, NULL, 1),
(21519, 16662, '1', 'State Board', '', 'B. E. CS', '2016', 78.00, '', 1, '2024-02-06 06:32:18', 1, '2024-02-06 06:33:06', 0, NULL, 1),
(21520, 16662, '2', 'State board', '', '', '2018', 58.00, '', 1, '2024-02-06 06:32:39', 0, NULL, 0, NULL, 1),
(21521, 16659, '3', 'Bharthiyar university', '', 'Bsc. IT', '2023', 78.00, '', 1, '2024-02-06 06:35:26', 0, NULL, 0, NULL, 1),
(21522, 16667, '3', 'Bharthida University ', '', 'BCA', '2023', 77.00, '', 1, '2024-02-06 06:38:27', 0, NULL, 0, NULL, 1),
(21523, 16669, '4', 'UNIVERSITY OF MADRAS', '', 'MSc Computer science', '2023', 76.00, '', 1, '2024-02-06 06:41:43', 0, NULL, 0, NULL, 1),
(21524, 16668, '3', 'madras university', '', 'bca', '2021', 75.00, '', 1, '2024-02-06 06:42:23', 0, NULL, 0, NULL, 1),
(21525, 16666, '3', 'Madras University ', '', 'Bcom ', '2021', 65.00, '', 1, '2024-02-06 06:43:54', 0, NULL, 0, NULL, 1),
(21526, 16665, '3', 'barathidasan university', '', 'Bachelor of computer application', '2023', 70.00, '', 1, '2024-02-06 06:45:23', 0, NULL, 0, NULL, 1),
(21527, 16670, '3', 'University college of engineering Villupuram ', '', 'BE CSE ', '2023', 7.20, '', 1, '2024-02-06 06:46:27', 0, NULL, 0, NULL, 1),
(21528, 16672, '3', 'Bharathidasan University ', '', 'BCA ', '2023', 7.00, '', 1, '2024-02-06 06:47:00', 0, NULL, 0, NULL, 1),
(21529, 16670, '1', 'SRGDS MAT. HR. SEC. SCHOOL ,THIRUVANNAMALAI. TAMILNADU STATE BOARD', '', '', '2017', 86.00, '', 1, '2024-02-06 06:48:00', 0, NULL, 0, NULL, 1),
(21530, 16670, '2', 'SRGDS MAT. HR. SEC. SCHOOL ,THIRUVANNAMALAI. TAMILNADU STATE BOARD', '', '', '2019', 74.00, '', 1, '2024-02-06 06:48:23', 0, NULL, 0, NULL, 1),
(21531, 16673, '3', 'University of Madras', '', 'B.Sc Computer Science ', '2021', 80.35, '', 1, '2024-02-06 06:50:57', 1, '2024-02-06 06:52:23', 0, NULL, 0),
(21532, 16673, '1', 'State Board ', '', '', '2016', 87.40, '', 1, '2024-02-06 06:51:45', 0, NULL, 0, NULL, 1),
(21533, 16673, '2', 'State Board ', '', '', '2018', 69.70, '', 1, '2024-02-06 06:52:18', 0, NULL, 0, NULL, 1),
(21534, 16675, '3', 'Hindusthan institute of technology ', '', 'Bachelor of engineering ', '2023', 78.00, '', 1, '2024-02-06 06:52:21', 0, NULL, 0, NULL, 1),
(21535, 16655, '3', 'Anna University ', '', 'B. Tech ', '2020', 66.00, '', 1, '2024-02-06 06:52:59', 0, NULL, 0, NULL, 1),
(21536, 16673, '3', 'University of Madras', '', 'B.Sc Computer Science ', '2021', 80.35, '', 1, '2024-02-06 06:53:05', 0, NULL, 0, NULL, 1),
(21537, 16676, '1', 'State board of tamilnadu ', '', '', '2016', 86.50, '', 1, '2024-02-06 06:55:08', 0, NULL, 0, NULL, 1),
(21538, 16676, '2', 'State board of tamilnadu ', '', '', '2018', 85.80, '', 1, '2024-02-06 06:55:32', 0, NULL, 0, NULL, 1),
(21539, 16676, '3', 'Anna University ', '', 'B.E computer science ', '2022', 76.00, '', 1, '2024-02-06 06:55:58', 0, NULL, 0, NULL, 1),
(21540, 16674, '1', 'Tamilnadu state Board ', '', '', '2017', 87.40, '', 1, '2024-02-06 06:56:22', 0, NULL, 0, NULL, 1),
(21541, 16664, '3', 'Anna University', '', 'B. E-CSE', '2023', 7.88, '', 1, '2024-02-06 06:57:46', 0, NULL, 0, NULL, 1),
(21542, 16674, '2', 'Tamilnadu state Board ', '', '', '2019', 62.00, '', 1, '2024-02-06 06:57:53', 0, NULL, 0, NULL, 1),
(21543, 16664, '2', 'Stateboard', '', '', '2019', 79.00, '', 1, '2024-02-06 06:58:33', 0, NULL, 0, NULL, 1),
(21544, 16674, '3', 'Periyar University ', '', 'BSC Computer science ', '2022', 74.00, '', 1, '2024-02-06 06:58:50', 0, NULL, 0, NULL, 1),
(21545, 16664, '1', 'Stateboard', '', '', '2017', 95.40, '', 1, '2024-02-06 06:59:20', 0, NULL, 0, NULL, 1),
(21546, 16674, '4', 'bharathidasan university', '', 'MCA', '2024', 75.00, '', 1, '2024-02-06 07:00:06', 0, NULL, 0, NULL, 1),
(21547, 16679, '4', 'Periyar maniammai institute of science and technology ', '', 'MCA ', '2023', 81.00, '', 1, '2024-02-06 07:15:36', 0, NULL, 0, NULL, 1),
(21548, 16680, '3', 'Madras university', '', 'Bsc. Visual communication', '2020', 72.00, '', 1, '2024-02-06 07:24:00', 0, NULL, 0, NULL, 1),
(21549, 16681, '3', 'Kalasalingam University ', '', 'B.tech', '2021', 65.00, '', 1, '2024-02-06 07:26:47', 0, NULL, 0, NULL, 1),
(21550, 16678, '3', 'Sastra Deemed University', '', 'B.Tech- Computer Science and Engineering', '2023', 73.60, '', 1, '2024-02-06 07:27:30', 0, NULL, 0, NULL, 1),
(21551, 16678, '2', 'Tamil Nadu Board of Higher Secondary Education', '', '', '2019', 88.33, '', 1, '2024-02-06 07:28:15', 0, NULL, 0, NULL, 1),
(21552, 16682, '3', 'Anna University ', '', 'BE', '2022', 78.00, '', 1, '2024-02-06 07:28:39', 0, NULL, 0, NULL, 1),
(21553, 16678, '1', 'Tamil Nadu Board of secondary Education', '', '', '2017', 94.80, '', 1, '2024-02-06 07:28:42', 0, NULL, 0, NULL, 1),
(21554, 16671, '3', 'Anna University ', '', 'BE-Cse', '2023', 84.00, '', 1, '2024-02-06 07:32:47', 0, NULL, 0, NULL, 1),
(21555, 16683, '3', 'Pondicherry university ', '', 'BSC Computer science ', '2023', 7.89, '', 1, '2024-02-06 07:36:16', 0, NULL, 0, NULL, 1),
(21556, 16684, '3', 'Madras University ', '', 'Bsc Computer science ', '2023', 84.30, '', 1, '2024-02-06 08:01:17', 0, NULL, 0, NULL, 1),
(21557, 16688, '4', 'Selvamm arts and science college', '', 'MSc', '2023', 80.00, '', 1, '2024-02-06 09:26:32', 0, NULL, 0, NULL, 1),
(21558, 16689, '4', 'Vivekanandha college of arts and science', '', 'MCA', '2023', 76.00, '', 1, '2024-02-06 09:28:24', 0, NULL, 0, NULL, 1),
(21559, 16690, '3', 'Anna university ', '', 'BE Mechanical ', '2019', 68.00, '', 1, '2024-02-06 09:32:30', 0, NULL, 0, NULL, 1),
(21560, 16691, '2', 'BSE, Odisha ', '', '', '1996', 58.00, '', 1, '2024-02-06 09:44:28', 1, '2024-02-06 09:47:48', 0, NULL, 0),
(21561, 16691, '1', 'BSE, Odisha ', '', '', '1996', 58.00, '', 1, '2024-02-06 09:48:36', 0, NULL, 0, NULL, 1),
(21562, 16691, '2', 'CHSE', '', '', '1998', 42.00, '', 1, '2024-02-06 09:54:18', 0, NULL, 0, NULL, 1),
(21563, 16691, '3', 'Berhampur University ', '', 'BA', '2001', 43.00, '', 1, '2024-02-06 09:56:39', 0, NULL, 0, NULL, 1),
(21564, 16691, '4', 'SMU', '', 'MBA', '2017', 52.00, '', 1, '2024-02-06 09:58:25', 0, NULL, 0, NULL, 1),
(21565, 16677, '3', 'National College Trichy ', '', 'Bsc Computer science ', '2022', 70.00, '', 1, '2024-02-06 09:58:42', 0, NULL, 0, NULL, 1),
(21566, 16687, '3', 'The new college ', '', 'Bcom general', '2023', 85.00, '', 1, '2024-02-06 10:20:23', 0, NULL, 0, NULL, 1),
(21567, 16693, '3', 'Anna University ', '', 'B.E /CSE', '2023', 8.10, '', 1, '2024-02-06 12:14:05', 0, NULL, 0, NULL, 1),
(21568, 16693, '1', 'State board of secondary education ', '', '', '2019', 55.00, '', 1, '2024-02-06 12:15:49', 0, NULL, 0, NULL, 1),
(21569, 16693, '2', 'State board education ', '', '', '2017', 72.00, '', 1, '2024-02-06 12:16:25', 0, NULL, 0, NULL, 1),
(21570, 16443, '3', 'Madras university', '', 'B. Com', '2016', 6.50, '', 1, '2024-02-06 03:15:45', 0, NULL, 0, NULL, 1),
(21571, 16695, '4', 'the new college chennai', '', 'M.sc computer science', '2022', 85.00, '', 1, '2024-02-07 03:47:47', 0, NULL, 0, NULL, 1),
(21572, 16696, '5', 'PSB POLYTECHNIC COLLEGE ', '', 'Diploma In Electronics and Communication Engineeri', '2022', 92.00, '', 1, '2024-02-07 05:11:49', 0, NULL, 0, NULL, 1),
(21573, 16696, '1', 'Sushil Hari International Residential School', '', '', '2019', 62.00, '', 1, '2024-02-07 05:12:41', 0, NULL, 0, NULL, 1),
(21574, 16697, '3', 'Tagore college of arts and science', '', 'B. Com ', '2022', 7.30, '', 1, '2024-02-07 05:13:12', 0, NULL, 0, NULL, 1),
(21575, 16698, '1', 'board', '', '', '2018', 63.00, '', 1, '2024-02-07 05:17:06', 0, NULL, 0, NULL, 1),
(21576, 16698, '2', 'board', '', '', '2020', 51.50, '', 1, '2024-02-07 05:17:48', 0, NULL, 0, NULL, 1),
(21577, 16698, '3', 'university', '', 'b.com general', '2023', 7.20, '', 1, '2024-02-07 05:18:24', 0, NULL, 0, NULL, 1),
(21578, 16699, '1', 'State Board ', '', 'B.Tech', '2017', 86.00, '', 1, '2024-02-07 05:21:53', 0, NULL, 0, NULL, 1),
(21579, 16699, '2', 'State Board ', '', '', '2019', 59.00, '', 1, '2024-02-07 05:22:20', 0, NULL, 0, NULL, 1),
(21580, 16703, '3', 'Manonmaniam Sundaranar University', '', 'BCA ', '2023', 67.00, '', 1, '2024-02-07 05:26:25', 0, NULL, 0, NULL, 1),
(21581, 16706, '4', 'University of Madras', '', 'M.com', '2023', 60.00, '', 1, '2024-02-07 05:27:39', 0, NULL, 0, NULL, 1),
(21582, 16704, '3', 'Madras university ', '', 'B.sc Computer Science ', '2023', 76.40, '', 1, '2024-02-07 05:33:09', 0, NULL, 0, NULL, 1),
(21583, 16700, '3', 'Anna University ', '', 'BE', '2023', 8.70, '', 1, '2024-02-07 05:34:16', 0, NULL, 0, NULL, 1),
(21584, 16709, '3', 'Anna University ', '', 'BE', '2023', 7.00, '', 1, '2024-02-07 05:35:56', 0, NULL, 0, NULL, 1),
(21585, 16702, '3', 'Anna University ', '', 'B E', '2019', 70.00, '', 1, '2024-02-07 05:37:00', 0, NULL, 0, NULL, 1),
(21586, 16710, '3', 'Oxford engineering college', '', 'BE Electronic and communication', '2016', 60.00, '', 1, '2024-02-07 05:37:52', 0, NULL, 0, NULL, 1),
(21587, 16708, '1', 'CBSE', '', '', '2016', 74.00, '', 1, '2024-02-07 05:39:23', 0, NULL, 0, NULL, 1),
(21588, 16708, '2', 'State Board ', '', '', '2018', 80.00, '', 1, '2024-02-07 05:40:00', 0, NULL, 0, NULL, 1),
(21589, 16708, '3', 'Pondicherry University ', '', 'B.Tech', '2022', 7.90, '', 1, '2024-02-07 05:40:27', 0, NULL, 0, NULL, 1),
(21590, 16701, '3', 'Anna University ', '', 'B.Tech', '2023', 88.00, '', 1, '2024-02-07 05:44:10', 0, NULL, 0, NULL, 1),
(21591, 16711, '1', 'Board', '', '', '2015', 67.00, '', 1, '2024-02-07 05:44:16', 0, NULL, 0, NULL, 1),
(21592, 16711, '2', 'Board', '', '', '2018', 63.00, '', 1, '2024-02-07 05:44:43', 0, NULL, 0, NULL, 1),
(21593, 16711, '3', 'University', '', 'Batchelor', '2021', 73.00, '', 1, '2024-02-07 05:45:07', 0, NULL, 0, NULL, 1),
(21594, 16713, '3', 'Jerusalem college of engineering ', '', 'Bachelor of technology ', '2023', 83.80, '', 1, '2024-02-07 05:50:11', 0, NULL, 0, NULL, 1),
(21595, 13701, '3', 'Anna University', '', 'B.E., CSE', '2023', 82.50, '', 1, '2024-02-07 05:54:55', 1, '2024-02-07 05:56:56', 0, NULL, 0),
(21596, 16714, '3', 'ANNA UNIVERSITY ', '', 'B.E.CSE', '2024', 76.00, '', 1, '2024-02-07 05:55:33', 1, '2024-02-07 05:59:48', 0, NULL, 0),
(21597, 13701, '1', 'Directorate of Tamilnadu education', '', '', '2017', 80.00, '', 1, '2024-02-07 05:56:01', 1, '2024-02-07 05:56:24', 0, NULL, 1),
(21598, 16719, '3', 'Anna University ', '', 'Mechanical ', '2020', 64.90, '', 1, '2024-02-07 05:56:21', 0, NULL, 0, NULL, 1),
(21599, 13701, '2', 'Directorate of Tamilnadu education', '', '', '2019', 60.00, '', 1, '2024-02-07 05:56:44', 1, '2024-02-07 05:57:41', 0, NULL, 1),
(21600, 13701, '3', 'Anna University', '', 'B.E., CSE', '2023', 82.50, '', 1, '2024-02-07 05:57:24', 0, NULL, 0, NULL, 1),
(21601, 16722, '4', 'Madras University ', '', 'Msc CS', '2024', 70.00, '', 1, '2024-02-07 05:58:13', 0, NULL, 0, NULL, 1),
(21602, 16720, '4', 'Anna University ', '', 'MCA', '2023', 72.00, '', 1, '2024-02-07 05:58:31', 1, '2024-02-07 05:59:58', 0, NULL, 0),
(21603, 16715, '3', 'Anna University ', '', 'B tech - information technology ', '2022', 71.00, '', 1, '2024-02-07 05:58:39', 0, NULL, 0, NULL, 1),
(21604, 16714, '1', 'Directorate of tamilnadu education', '', '', '2018', 60.00, '', 1, '2024-02-07 05:58:59', 0, NULL, 0, NULL, 1),
(21605, 16712, '3', 'UNIVERSITY OF MADRAS', '', 'B.COM', '2021', 72.90, '', 1, '2024-02-07 05:59:08', 0, NULL, 0, NULL, 1),
(21606, 16722, '4', 'Madras University ', '', 'Msc CS ', '2024', 70.00, '', 1, '2024-02-07 05:59:09', 1, '2024-02-07 05:59:17', 0, NULL, 0),
(21607, 16714, '2', 'Directorate of tamilnadu education', '', '', '2020', 69.00, '', 1, '2024-02-07 05:59:19', 0, NULL, 0, NULL, 1),
(21608, 16720, '1', 'State board ', '', '', '2016', 80.00, '', 1, '2024-02-07 05:59:38', 0, NULL, 0, NULL, 1),
(21609, 16714, '3', 'Anna University', '', 'B.E., CSE', '2024', 76.00, '', 1, '2024-02-07 05:59:50', 1, '2024-02-07 05:59:59', 0, NULL, 0),
(21610, 16720, '2', 'State board ', '', '', '2018', 66.00, '', 1, '2024-02-07 06:00:15', 0, NULL, 0, NULL, 1),
(21611, 16714, '3', 'Anna University', '', 'B.E., CSE', '2024', 76.00, '', 1, '2024-02-07 06:00:23', 0, NULL, 0, NULL, 1),
(21612, 16720, '3', 'University of Madras ', '', 'B.sc.computer science ', '2021', 75.50, '', 1, '2024-02-07 06:01:08', 0, NULL, 0, NULL, 1),
(21613, 16720, '4', 'Anna University ', '', 'MCA', '2023', 72.00, '', 1, '2024-02-07 06:01:31', 0, NULL, 0, NULL, 1),
(21614, 16716, '3', 'Anna University ', '', 'B.TECH.IT', '2021', 71.00, '', 1, '2024-02-07 06:01:43', 0, NULL, 0, NULL, 1),
(21615, 16718, '3', 'Thiruvalluar University ', '', 'B com', '2022', 75.00, '', 1, '2024-02-07 06:03:02', 0, NULL, 0, NULL, 1),
(21616, 16717, '3', 'Anna university ', '', 'Btech ', '2021', 76.00, '', 1, '2024-02-07 06:06:19', 0, NULL, 0, NULL, 1),
(21617, 16723, '4', 'SRM INSTITUTE OF SCIENCE AND TECHNOLOGY ', '', 'M.sc.Information technology ', '2024', 82.00, '', 1, '2024-02-07 06:08:43', 0, NULL, 0, NULL, 1),
(21618, 16723, '3', 'SRM INSTITUTE oF SCIENCE AND TECHNOLOGY ', '', 'BCA ', '2022', 81.00, '', 1, '2024-02-07 06:09:46', 0, NULL, 0, NULL, 1),
(21619, 16721, '4', 'Meenakshi college of Engineering', '', 'MCA', '2023', 82.00, '', 1, '2024-02-07 06:09:58', 0, NULL, 0, NULL, 1),
(21620, 16725, '3', 'Anna University ', '', '', '2022', 70.00, '', 1, '2024-02-07 06:10:06', 0, NULL, 0, NULL, 1),
(21621, 16721, '3', 'Ayya Nadar Janaki Ammal College', '', 'BCA', '2021', 80.00, '', 1, '2024-02-07 06:10:26', 0, NULL, 0, NULL, 1),
(21622, 16726, '4', 'Anna university ', '', 'MCA', '2023', 80.00, '', 1, '2024-02-07 06:10:33', 0, NULL, 0, NULL, 1),
(21623, 16721, '2', 'S. h. N. G hir. Secondary School', '', '', '2018', 65.00, '', 1, '2024-02-07 06:10:50', 0, NULL, 0, NULL, 1),
(21624, 16721, '1', 'S. h. n. g. Hir. Secondary School', '', '', '2016', 86.00, '', 1, '2024-02-07 06:11:21', 0, NULL, 0, NULL, 1),
(21625, 16727, '4', 'Anna university', '', 'MCA', '2023', 90.00, '', 1, '2024-02-07 06:12:16', 0, NULL, 0, NULL, 1),
(21626, 16724, '4', 'SRM institute of science and technology ', '', 'M.Sc Information technology ', '2024', 82.00, '', 1, '2024-02-07 06:14:36', 0, NULL, 0, NULL, 1),
(21627, 16724, '3', 'Sri Sankara University ', '', 'BCA', '2022', 88.00, '', 1, '2024-02-07 06:16:32', 0, NULL, 0, NULL, 1),
(21628, 16729, '4', 'Madras university', '', 'MCA', '2022', 88.00, '', 1, '2024-02-07 06:19:11', 0, NULL, 0, NULL, 1),
(21629, 16730, '4', 'madras univesity', '', 'mca', '2022', 80.00, '', 1, '2024-02-07 06:19:39', 0, NULL, 0, NULL, 1),
(21630, 16729, '3', 'Kamaraj university ', '', 'Bsc computer science ', '2020', 68.00, '', 1, '2024-02-07 06:19:45', 0, NULL, 0, NULL, 1),
(21631, 16732, '3', 'Thiruvalluvar University ', '', 'Bachelor of Commerce ', '2020', 60.00, '', 1, '2024-02-07 06:27:29', 0, NULL, 0, NULL, 1),
(21632, 16738, '3', 'Saveetha school of engineering ', '', 'B.E', '2024', 76.90, '', 1, '2024-02-07 06:29:25', 0, NULL, 0, NULL, 1),
(21633, 16731, '3', 'Bharatdhidasan ', '', 'Bsc computer science ', '2023', 72.00, '', 1, '2024-02-07 06:32:36', 0, NULL, 0, NULL, 1),
(21634, 16735, '3', 'Thiruvalluvar University ', '', 'BCA', '2020', 70.00, '', 1, '2024-02-07 06:33:34', 0, NULL, 0, NULL, 1),
(21635, 16742, '3', 'University ', '', 'Bsc computer science ', '2023', 85.00, '', 1, '2024-02-07 06:36:21', 0, NULL, 0, NULL, 1),
(21636, 16744, '3', 'Bharadhidasan University ', '', 'Bsc Computer science ', '2023', 80.00, '', 1, '2024-02-07 06:36:57', 0, NULL, 0, NULL, 1),
(21637, 16733, '3', 'Bharathidasan University ', '', 'B.sC computer Science ', '2023', 80.00, '', 1, '2024-02-07 06:37:25', 0, NULL, 0, NULL, 1),
(21638, 16741, '4', 'Alagappa University ', '', 'msc.information technology ', '2023', 78.00, '', 1, '2024-02-07 06:37:31', 1, '2024-02-07 06:38:35', 0, NULL, 1),
(21639, 16736, '3', 'Bharadhidhasan University', '', 'Bsc Computer Science', '2023', 90.00, '', 1, '2024-02-07 06:37:35', 0, NULL, 0, NULL, 1),
(21640, 16741, '2', 'State board', '', '', '2018', 83.00, '', 1, '2024-02-07 06:38:09', 1, '2024-02-07 06:39:22', 0, NULL, 1),
(21641, 16741, '1', 'State board ', '', '', '2016', 80.00, '', 1, '2024-02-07 06:39:41', 0, NULL, 0, NULL, 1),
(21642, 16741, '3', 'Alagappa University ,syed ammal arts and science college ', '', 'Bsc . information technology ', '2021', 88.00, '', 1, '2024-02-07 06:40:34', 0, NULL, 0, NULL, 1),
(21643, 16740, '3', 'Bharathidasan University ', '', 'B.sc computer science ', '2023', 80.34, '', 1, '2024-02-07 06:40:48', 0, NULL, 0, NULL, 1),
(21644, 16728, '3', 'Madras University ', '', 'Bachelor of computer applications ', '2022', 74.00, '', 1, '2024-02-07 06:41:43', 1, '2024-02-07 06:43:11', 0, NULL, 0),
(21645, 16728, '2', 'State board ', '', '', '2019', 72.00, '', 1, '2024-02-07 06:43:00', 1, '2024-02-07 06:43:19', 0, NULL, 0),
(21646, 16728, '1', 'State board ', '', '', '2017', 92.00, '', 1, '2024-02-07 06:43:44', 0, NULL, 0, NULL, 1),
(21647, 16728, '2', 'State board ', '', '', '2019', 72.00, '', 1, '2024-02-07 06:43:57', 0, NULL, 0, NULL, 1),
(21648, 16728, '3', 'Madras University ', '', 'Bachelor of computer applications ', '2022', 74.00, '', 1, '2024-02-07 06:44:18', 0, NULL, 0, NULL, 1),
(21649, 16739, '3', 'Barathithasan University ', '', 'Bsc cs', '2023', 79.00, '', 1, '2024-02-07 07:00:40', 0, NULL, 0, NULL, 1),
(21650, 16737, '3', 'Bharadhidasan ', '', 'Bsc computer science ', '2023', 78.00, '', 1, '2024-02-07 07:00:46', 0, NULL, 0, NULL, 1),
(21651, 16746, '3', 'Anna University ', '', 'BE.EEE', '2023', 81.90, '', 1, '2024-02-07 07:03:40', 0, NULL, 0, NULL, 1),
(21652, 16748, '3', 'Anna University ', '', 'B.E,ECE', '2022', 7.60, '', 1, '2024-02-07 07:04:17', 0, NULL, 0, NULL, 1),
(21653, 16734, '3', 'Thiruvalluvar university', '', 'BCA', '2020', 70.00, '', 1, '2024-02-07 07:04:31', 0, NULL, 0, NULL, 1),
(21654, 16746, '2', 'Sathya saai matric.hr.sec.school', '', 'BE.EEE', '2019', 84.83, '', 1, '2024-02-07 07:04:58', 0, NULL, 0, NULL, 1),
(21655, 16748, '2', 'Tamilnadu State board ', '', '', '2018', 64.00, '', 1, '2024-02-07 07:05:06', 0, NULL, 0, NULL, 1),
(21656, 16748, '1', 'Tamilnadu State board ', '', '', '2016', 87.00, '', 1, '2024-02-07 07:05:29', 0, NULL, 0, NULL, 1),
(21657, 16746, '1', 'Sakthi matric.hr.sec.school', '', '', '2017', 97.20, '', 1, '2024-02-07 07:05:46', 0, NULL, 0, NULL, 1),
(21658, 16745, '3', 'Vels University', '', 'Bachelor of Commerce (B.Com)', '2023', 72.00, '', 1, '2024-02-07 07:12:02', 0, NULL, 0, NULL, 1),
(21659, 16751, '3', 'Mannar thirumalai naicker college madurai ', '', 'B.Sc.physics', '2023', 74.00, '', 1, '2024-02-07 07:15:23', 0, NULL, 0, NULL, 1),
(21660, 16752, '1', 'State board ', '', '', '2012', 74.00, '', 1, '2024-02-07 07:20:39', 0, NULL, 0, NULL, 1),
(21661, 16752, '2', 'State board ', '', '', '2014', 72.00, '', 1, '2024-02-07 07:20:59', 0, NULL, 0, NULL, 1),
(21662, 16752, '3', 'Barathidhasan University ', '', 'Bsc', '2017', 71.00, '', 1, '2024-02-07 07:21:44', 0, NULL, 0, NULL, 1),
(21663, 16752, '4', 'Madras University ', '', 'MBA ', '2020', 61.00, '', 1, '2024-02-07 07:22:12', 0, NULL, 0, NULL, 1),
(21664, 16753, '3', 'SRM Valliammai Engineering college ', '', 'Bachelor of engineering (civil)', '2021', 5.82, '', 1, '2024-02-07 07:37:40', 0, NULL, 0, NULL, 1),
(21665, 16747, '3', 'Ethiraj college for women', '', 'Bsc computer science ', '2024', 70.20, '', 1, '2024-02-07 07:42:04', 0, NULL, 0, NULL, 1),
(21666, 16750, '3', 'Anna University ', '', 'BE ECE', '2022', 73.00, '', 1, '2024-02-07 07:48:04', 0, NULL, 0, NULL, 1),
(21667, 16750, '2', 'State board', '', '12th', '2018', 55.00, '', 1, '2024-02-07 07:49:48', 0, NULL, 0, NULL, 1),
(21668, 16750, '1', 'State board ', '', '', '2016', 81.00, '', 1, '2024-02-07 07:50:24', 1, '2024-02-07 07:51:19', 0, NULL, 1),
(21669, 16754, '3', 'Bharathidhasan University ', '', 'BSc Computer Science ', '2023', 84.00, '', 1, '2024-02-07 07:51:16', 0, NULL, 0, NULL, 1),
(21670, 16755, '3', 'Chandy college of engineering ', '', 'BE', '2019', 74.00, '', 1, '2024-02-07 09:14:57', 0, NULL, 0, NULL, 1),
(21671, 16757, '4', 'srm university', '', 'mca', '2023', 91.00, '', 1, '2024-02-07 09:16:34', 0, NULL, 0, NULL, 1),
(21672, 16757, '3', 'srm university', '', 'bsc computer science', '2021', 78.00, '', 1, '2024-02-07 09:17:22', 0, NULL, 0, NULL, 1),
(21673, 16757, '1', 'avmeiyappan', '', '', '2016', 85.00, '', 1, '2024-02-07 09:17:46', 0, NULL, 0, NULL, 1),
(21674, 16757, '2', 'avmeiyappan', '', '', '2018', 68.00, '', 1, '2024-02-07 09:18:05', 1, '2024-02-07 09:18:26', 0, NULL, 1),
(21675, 16756, '4', 'Anna University', '', 'MBA', '2012', 65.00, '', 1, '2024-02-07 09:24:01', 0, NULL, 0, NULL, 1),
(21676, 16759, '3', 'Ethiraj College for Women ', '', 'B.A', '2021', 73.00, '', 1, '2024-02-07 10:04:39', 0, NULL, 0, NULL, 1),
(21677, 16759, '1', 'Venus High school ', '', '', '2015', 93.00, '', 1, '2024-02-07 10:05:04', 0, NULL, 0, NULL, 1),
(21678, 16759, '2', 'Dharam Hindhuja matriculation higher secondary ', '', '', '2017', 85.00, '', 1, '2024-02-07 10:05:21', 0, NULL, 0, NULL, 1),
(21679, 16760, '3', 'Anna university', '', '', '2023', 7.00, '', 1, '2024-02-07 10:40:49', 0, NULL, 0, NULL, 1),
(21680, 16760, '2', 'Government higher secondary school', '', '', '2019', 60.00, '', 1, '2024-02-07 10:41:21', 0, NULL, 0, NULL, 1),
(21681, 16760, '1', 'Government higher secondary school', '', '', '2017', 89.00, '', 1, '2024-02-07 10:41:42', 0, NULL, 0, NULL, 1),
(21682, 16762, '2', 'State board of tamilnadu', '', '', '2018', 77.00, '', 1, '2024-02-08 04:31:24', 0, NULL, 0, NULL, 1),
(21683, 16762, '3', 'Anna University ', '', 'BE Mechanical Engineering ', '2023', 80.00, '', 1, '2024-02-08 04:41:01', 0, NULL, 0, NULL, 1),
(21684, 16764, '3', 'Madurai kamaraj university ', '', 'BCA', '2023', 70.00, '', 1, '2024-02-08 04:54:59', 0, NULL, 0, NULL, 1),
(21685, 16763, '4', 'Dr. MGR University And Research Institute ', '', 'MCA', '2023', 7.33, '', 1, '2024-02-08 05:01:35', 0, NULL, 0, NULL, 1),
(21686, 16766, '3', 'Anna University ', '', 'B. Tech Information Technology', '2022', 78.00, '', 1, '2024-02-08 05:07:56', 0, NULL, 0, NULL, 1),
(21687, 16766, '2', 'Tamilnadu stateboard ', '', '', '2018', 64.00, '', 1, '2024-02-08 05:08:35', 0, NULL, 0, NULL, 1),
(21688, 16766, '1', 'Tamilnadu Stateboard ', '', '', '2016', 78.00, '', 1, '2024-02-08 05:08:53', 0, NULL, 0, NULL, 1),
(21689, 16768, '3', 'Queen Mary\'s College ', '', 'BCA', '2023', 80.00, '', 1, '2024-02-08 05:18:46', 0, NULL, 0, NULL, 1),
(21690, 16769, '3', 'Dr Ambedkar Government Arts College ', '', 'B.Sc', '2023', 7.00, '', 1, '2024-02-08 05:19:18', 0, NULL, 0, NULL, 1),
(21691, 16770, '5', 'Ayya Nadar Janaki Ammal Polytechnic College ', '', '', '2021', 80.00, '', 1, '2024-02-08 05:22:50', 0, NULL, 0, NULL, 1),
(21692, 16772, '3', 'Periyar University ', '', 'Bsc', '2019', 60.00, '', 1, '2024-02-08 05:24:16', 0, NULL, 0, NULL, 1),
(21693, 16774, '3', 'Anna University ', '', 'Bachelor of engineering ', '2021', 78.30, '', 1, '2024-02-08 05:26:13', 0, NULL, 0, NULL, 1),
(21694, 16776, '3', 'Anna University', '', 'Bachelor of Engineering', '2020', 6.70, '', 1, '2024-02-08 05:28:37', 0, NULL, 0, NULL, 1),
(21695, 16777, '4', 'Anna University ', '', 'Mca', '2024', 75.00, '', 1, '2024-02-08 05:37:21', 0, NULL, 0, NULL, 1),
(21696, 16777, '3', 'Madras University ', '', 'Bca', '2022', 80.00, '', 1, '2024-02-08 05:37:45', 0, NULL, 0, NULL, 1),
(21697, 16773, '3', 'Bharathiyar University ', '', 'B.Voc Multimedia And animation ', '2020', 73.00, '', 1, '2024-02-08 05:37:45', 0, NULL, 0, NULL, 1),
(21698, 16778, '4', 'ANNW UNIVERSITY', '', 'MCA', '2024', 78.00, '', 1, '2024-02-08 05:38:09', 0, NULL, 0, NULL, 1),
(21699, 16780, '4', 'Anna University ', '', 'MCA', '2024', 78.00, '', 1, '2024-02-08 05:38:11', 0, NULL, 0, NULL, 1),
(21700, 16777, '2', 'State board', '', '', '2019', 58.00, '', 1, '2024-02-08 05:38:43', 0, NULL, 0, NULL, 1),
(21701, 16778, '3', 'MADRAS UNIVERSITY', '', 'BCQ', '2022', 86.00, '', 1, '2024-02-08 05:38:44', 0, NULL, 0, NULL, 1),
(21702, 16780, '3', 'Bharatidhasan University', '', 'BCA', '2022', 73.00, '', 1, '2024-02-08 05:38:51', 0, NULL, 0, NULL, 1),
(21703, 16777, '1', 'State board', '', '', '2017', 78.00, '', 1, '2024-02-08 05:39:12', 0, NULL, 0, NULL, 1),
(21704, 16780, '2', 'State board of Tamilnadu ', '', '', '2019', 65.00, '', 1, '2024-02-08 05:40:04', 0, NULL, 0, NULL, 1),
(21705, 16775, '3', 'Anna university', '', 'BE', '2023', 89.00, '', 1, '2024-02-08 05:40:52', 0, NULL, 0, NULL, 1),
(21706, 16780, '1', 'State board of Tamilnadu ', '', '', '2017', 85.00, '', 1, '2024-02-08 05:41:28', 0, NULL, 0, NULL, 1),
(21707, 16778, '2', 'State board of Tamilnadu', '', '', '2019', 76.00, '', 1, '2024-02-08 05:41:58', 0, NULL, 0, NULL, 1),
(21708, 16778, '1', 'State board of Tamilnadu', '', '', '2017', 90.40, '', 1, '2024-02-08 05:42:20', 0, NULL, 0, NULL, 1),
(21709, 16767, '3', 'D.B.jain college', '', 'Bsc computer science', '2023', 73.45, '', 1, '2024-02-08 05:42:50', 0, NULL, 0, NULL, 1),
(21710, 16781, '1', 'Tamil Nadu State Board ', '', '', '2016', 83.00, '', 1, '2024-02-08 05:44:39', 0, NULL, 0, NULL, 1),
(21711, 16781, '2', 'Tamil Nadu State Board ', '', '', '2018', 61.20, '', 1, '2024-02-08 05:45:11', 0, NULL, 0, NULL, 1),
(21712, 16781, '3', 'University of Madras ', '', 'B.Sc Computer Science ', '2021', 68.50, '', 1, '2024-02-08 05:45:54', 0, NULL, 0, NULL, 1),
(21713, 16781, '4', 'Madurai Kamaraj University ', '', 'M.Sc Computer Science ', '2023', 77.70, '', 1, '2024-02-08 05:46:22', 0, NULL, 0, NULL, 1),
(21714, 16782, '4', 'dp jain', '', 'general', '2021', 80.00, '', 1, '2024-02-08 05:49:22', 0, NULL, 0, NULL, 1),
(21715, 16782, '4', 'jain', '', 'bcom', '2021', 80.00, '', 1, '2024-02-08 05:49:56', 0, NULL, 0, NULL, 1),
(21716, 16782, '4', 'dp ', '', 'bcom', '2021', 80.00, '', 1, '2024-02-08 05:50:36', 0, NULL, 0, NULL, 1),
(21717, 16783, '3', 'Anna University', '', 'B. E.', '2023', 87.00, '', 1, '2024-02-08 05:56:58', 0, NULL, 0, NULL, 1),
(21718, 16783, '2', 'State Board', '', '', '2019', 82.66, '', 1, '2024-02-08 05:57:17', 0, NULL, 0, NULL, 1),
(21719, 16783, '1', 'State Board', '', '', '2017', 95.20, '', 1, '2024-02-08 05:57:33', 0, NULL, 0, NULL, 1),
(21720, 16785, '3', 'SSM INSTITUTE OF ENGINEERING AND TECHNOLOGY ', '', 'Bachelor of engineering ', '2021', 80.00, '', 1, '2024-02-08 06:07:52', 1, '2024-02-08 06:08:42', 0, NULL, 0),
(21721, 16785, '3', 'SSM INSTITUTE OF ENGINEERING AND TECHNOLOGY ', '', 'BE', '2021', 80.00, '', 1, '2024-02-08 06:08:58', 0, NULL, 0, NULL, 1),
(21722, 16789, '3', 'Paavai engineering college', '', 'B. Tech', '2023', 79.00, '', 1, '2024-02-08 06:16:05', 0, NULL, 0, NULL, 1),
(21723, 16794, '3', 'Thiruvallurvar University ', '', 'BCA', '2022', 70.00, '', 1, '2024-02-08 06:17:23', 0, NULL, 0, NULL, 1),
(21724, 16788, '3', 'Vels University ', '', 'Bsc computer science ', '2023', 75.00, '', 1, '2024-02-08 06:18:37', 0, NULL, 0, NULL, 1),
(21725, 16794, '1', 'Tamilnadu board of secondary education ', '', '', '2017', 65.00, '', 1, '2024-02-08 06:18:38', 0, NULL, 0, NULL, 1),
(21726, 16796, '3', 'Madras University ', '', 'B com ', '2022', 75.00, '', 1, '2024-02-08 06:18:40', 0, NULL, 0, NULL, 1),
(21727, 16794, '2', 'Tamilnadu board of secondary education ', '', '', '2019', 50.00, '', 1, '2024-02-08 06:18:55', 0, NULL, 0, NULL, 1),
(21728, 16798, '3', 'Anna University ', '', 'B.Tech', '2021', 71.00, '', 1, '2024-02-08 06:22:02', 0, NULL, 0, NULL, 1),
(21729, 16787, '3', 'Bharathidasan University ', '', 'Bsc Computer science ', '2023', 76.00, '', 1, '2024-02-08 06:23:38', 0, NULL, 0, NULL, 1),
(21730, 16791, '3', 'PGP college ofArts and science', '', 'B. Sc computer Science', '2020', 62.00, '', 1, '2024-02-08 06:25:34', 0, NULL, 0, NULL, 1),
(21731, 16799, '3', 'Madras University ', '', 'Bcom General ', '2023', 70.00, '', 1, '2024-02-08 06:25:50', 0, NULL, 0, NULL, 1),
(21732, 16793, '3', 'University of Madras ', '', 'Bsc computer science ', '2022', 78.80, '', 1, '2024-02-08 06:27:21', 0, NULL, 0, NULL, 1),
(21733, 16790, '3', 'Bharathidasan University ', '', 'Bsc computer science ', '2023', 82.73, '', 1, '2024-02-08 06:28:04', 0, NULL, 0, NULL, 1),
(21734, 16797, '3', 'Madras University ', '', 'Bsc', '2023', 65.00, '', 1, '2024-02-08 06:31:03', 0, NULL, 0, NULL, 1),
(21735, 16786, '3', 'Anniversary ', '', 'B.E', '2023', 75.00, '', 1, '2024-02-08 06:31:12', 0, NULL, 0, NULL, 1),
(21736, 16802, '3', 'Governmant College of Engineering Erode(IRTT)', '', 'B.E', '2022', 73.10, '', 1, '2024-02-08 06:32:56', 0, NULL, 0, NULL, 1),
(21737, 16779, '3', 'Dr. G. U. Pope college of engineering', '', 'B. E', '2022', 7.10, '', 1, '2024-02-08 06:33:27', 0, NULL, 0, NULL, 1),
(21738, 16802, '2', 'General', '', '', '2018', 91.00, '', 1, '2024-02-08 06:35:08', 0, NULL, 0, NULL, 1),
(21739, 16803, '3', 'Theni Kammavar sangam college of technology ', '', 'BE', '2023', 8.13, '', 1, '2024-02-08 06:36:07', 0, NULL, 0, NULL, 1),
(21740, 16802, '1', 'General', '', '', '2016', 92.00, '', 1, '2024-02-08 06:39:57', 0, NULL, 0, NULL, 1),
(21741, 16792, '3', 'Madras University ', '', 'Bsc. Information technology ', '2023', 7.80, '', 1, '2024-02-08 06:40:03', 0, NULL, 0, NULL, 1),
(21742, 16801, '5', 'Anna University Chennai ', '', 'Diploma ', '2019', 79.00, '', 1, '2024-02-08 06:41:09', 0, NULL, 0, NULL, 1),
(21743, 16801, '1', 'General ', '', '', '2016', 87.00, '', 1, '2024-02-08 06:41:51', 0, NULL, 0, NULL, 1),
(21744, 16806, '1', 'State Board', '', '', '2017', 92.00, '', 1, '2024-02-08 07:07:03', 0, NULL, 0, NULL, 1),
(21745, 16805, '1', 'State board ', '', '', '2017', 92.00, '', 1, '2024-02-08 07:07:20', 0, NULL, 0, NULL, 1),
(21746, 16806, '2', 'State Board', '', '', '2019', 74.50, '', 1, '2024-02-08 07:07:32', 0, NULL, 0, NULL, 1),
(21747, 16805, '2', 'State board ', '', '', '2019', 76.50, '', 1, '2024-02-08 07:07:45', 0, NULL, 0, NULL, 1),
(21748, 16806, '3', 'Anna university', '', 'B. Tech IT', '2023', 74.00, '', 1, '2024-02-08 07:08:16', 0, NULL, 0, NULL, 1),
(21749, 16805, '3', 'Anna University ', '', 'B.tech IT', '2023', 76.00, '', 1, '2024-02-08 07:08:19', 0, NULL, 0, NULL, 1),
(21750, 16812, '3', 'Anna University ', '', 'B.E-ECE', '2023', 78.00, '', 1, '2024-02-08 07:44:37', 0, NULL, 0, NULL, 1),
(21751, 16807, '3', 'Manonmaniam suntrnar', '', 'Computer science ', '2023', 84.00, '', 1, '2024-02-08 07:50:04', 0, NULL, 0, NULL, 1),
(21752, 16807, '1', 'State board ', '', '', '2018', 84.00, '', 1, '2024-02-08 07:54:10', 0, NULL, 0, NULL, 1),
(21753, 16807, '2', 'State board ', '', '', '2020', 64.00, '', 1, '2024-02-08 07:54:43', 1, '2024-02-08 07:55:00', 0, NULL, 1),
(21754, 16811, '3', 'Anna University ', '', 'Bachelor\'s degree ', '2023', 75.00, '', 1, '2024-02-08 07:55:45', 0, NULL, 0, NULL, 1),
(21755, 16809, '1', 'State Board ', '', '', '2017', 92.00, '', 1, '2024-02-08 08:12:58', 0, NULL, 0, NULL, 1),
(21756, 16809, '2', 'State Board ', '', '', '2019', 66.00, '', 1, '2024-02-08 08:13:22', 0, NULL, 0, NULL, 1),
(21757, 16809, '3', 'Madurai kamaraj', '', 'B.sc .physics', '2022', 83.00, '', 1, '2024-02-08 08:14:20', 0, NULL, 0, NULL, 1),
(21758, 16815, '3', 'Autonomous', '', 'BE', '2022', 80.00, '', 1, '2024-02-08 08:20:25', 0, NULL, 0, NULL, 1),
(21759, 16816, '3', 'P.T.Lee Chengalvaraya Naicker College of Engineering and Technology ', '', 'B.E.Mechanical', '2023', 83.00, '', 1, '2024-02-08 08:20:46', 0, NULL, 0, NULL, 1),
(21760, 16817, '3', 'A Veeraiya Vandayar Memorial Sri Pushpam College, Poondi', '', 'B.Sc', '2022', 72.00, '', 1, '2024-02-08 08:42:32', 0, NULL, 0, NULL, 1),
(21761, 16795, '3', 'Anna University ', '', 'B.E', '2023', 78.00, '', 1, '2024-02-08 08:44:24', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(21762, 16795, '2', 'State board', '', '', '2019', 59.00, '', 1, '2024-02-08 08:44:59', 0, NULL, 0, NULL, 1),
(21763, 16795, '1', 'CBSE', '', '', '2017', 76.00, '', 1, '2024-02-08 08:45:22', 0, NULL, 0, NULL, 1),
(21764, 16814, '3', 'Bharathidhasan University ', '', 'BCA', '2022', 80.00, '', 1, '2024-02-08 08:50:49', 0, NULL, 0, NULL, 1),
(21765, 16813, '3', 'Madras university', '', 'B.sc', '2022', 70.00, '', 1, '2024-02-08 08:51:17', 0, NULL, 0, NULL, 1),
(21766, 16820, '3', 'Agurchand manmull jain college ', '', 'BCA ', '2022', 84.00, '', 1, '2024-02-08 08:54:11', 0, NULL, 0, NULL, 1),
(21767, 16818, '3', 'Anna University', '', 'BE', '2023', 81.10, '', 1, '2024-02-08 09:05:39', 0, NULL, 0, NULL, 1),
(21768, 16819, '3', 'Anna University ', '', 'B.E Mech', '2023', 70.00, '', 1, '2024-02-08 09:06:01', 0, NULL, 0, NULL, 1),
(21769, 16818, '1', 'Tamilnadu State Board', '', '', '2019', 75.00, '', 1, '2024-02-08 09:06:32', 0, NULL, 0, NULL, 1),
(21770, 16819, '1', 'Tamilnadu Stateboard', '', '', '2017', 94.00, '', 1, '2024-02-08 09:06:44', 0, NULL, 0, NULL, 1),
(21771, 16818, '2', 'Tamilnadu State Board', '', '', '2017', 93.60, '', 1, '2024-02-08 09:07:05', 0, NULL, 0, NULL, 1),
(21772, 16822, '4', 'Anna University ', '', 'MCA', '2024', 80.50, '', 1, '2024-02-08 09:08:19', 0, NULL, 0, NULL, 1),
(21773, 16822, '3', 'Madras University ', '', 'BCA', '2022', 86.60, '', 1, '2024-02-08 09:09:04', 0, NULL, 0, NULL, 1),
(21774, 16821, '3', 'Dr.M.G.R University ', '', 'BCA', '2024', 77.00, '', 1, '2024-02-08 09:09:07', 1, '2024-02-08 09:09:28', 0, NULL, 1),
(21775, 16821, '4', 'Anna University ', '', 'MCA', '2024', 74.00, '', 1, '2024-02-08 09:09:51', 0, NULL, 0, NULL, 1),
(21776, 16826, '1', 'STATE BOARD ', '', '', '2015', 91.00, '', 1, '2024-02-08 09:38:33', 0, NULL, 0, NULL, 1),
(21777, 16823, '3', 'Prathyusha engineering college ', '', 'B. E ECE', '2023', 85.00, '', 1, '2024-02-08 09:39:01', 0, NULL, 0, NULL, 1),
(21778, 16823, '2', 'Priyadarshini junior college ', '', '', '2019', 99.00, '', 1, '2024-02-08 09:39:26', 0, NULL, 0, NULL, 1),
(21779, 16823, '1', 'ZPHS', '', '', '2017', 88.00, '', 1, '2024-02-08 09:39:38', 0, NULL, 0, NULL, 1),
(21780, 16826, '3', 'ANNA UNIVERSITY ', '', 'B.E-COMPUTER SCIENCE AND ENGINEERING ', '2021', 75.00, '', 1, '2024-02-08 09:40:38', 0, NULL, 0, NULL, 1),
(21781, 16824, '4', 'Anna University regional campus ', '', 'ME', '2017', 70.00, '', 1, '2024-02-08 09:40:55', 0, NULL, 0, NULL, 1),
(21782, 16826, '2', 'STATE BOARD ', '', '', '2017', 85.00, '', 1, '2024-02-08 09:41:12', 0, NULL, 0, NULL, 1),
(21783, 16824, '3', 'Anna University ', '', 'BE', '2015', 65.00, '', 1, '2024-02-08 09:41:51', 0, NULL, 0, NULL, 1),
(21784, 16825, '3', 'Bharathidhasan University ', '', 'B sc', '2023', 78.00, '', 1, '2024-02-08 09:41:56', 0, NULL, 0, NULL, 1),
(21785, 16824, '2', 'Tamilnadu state board ', '', '', '2011', 70.00, '', 1, '2024-02-08 09:42:57', 0, NULL, 0, NULL, 1),
(21786, 16824, '1', 'Tamilnadu state board ', '', '', '2009', 80.00, '', 1, '2024-02-08 09:43:33', 0, NULL, 0, NULL, 1),
(21787, 16825, '1', 'Government High secondary school perugavazhndan ', '', '', '2018', 60.00, '', 1, '2024-02-08 09:43:42', 0, NULL, 0, NULL, 1),
(21788, 16825, '2', 'Government High secondary school ', '', '', '2020', 58.00, '', 1, '2024-02-08 09:44:11', 0, NULL, 0, NULL, 1),
(21789, 16828, '3', 'Ana University ', '', 'B.E', '2020', 67.10, '', 1, '2024-02-08 09:48:21', 0, NULL, 0, NULL, 1),
(21790, 16827, '3', 'Anna university', '', 'B.E', '2020', 69.50, '', 1, '2024-02-08 09:48:23', 0, NULL, 0, NULL, 1),
(21791, 16833, '3', 'Anna University ', '', 'BE', '2022', 86.90, '', 1, '2024-02-09 04:26:10', 0, NULL, 0, NULL, 1),
(21792, 16836, '4', 'Bharathidasan University ', '', 'Master of science ', '2021', 79.50, '', 1, '2024-02-09 04:36:01', 0, NULL, 0, NULL, 1),
(21793, 16836, '3', 'Bharathidasan University ', '', 'Bachelor of science ', '2019', 62.00, '', 1, '2024-02-09 04:36:49', 1, '2024-02-09 04:38:13', 0, NULL, 0),
(21794, 16836, '2', 'Bharathidasan University ', '', '', '2016', 65.00, '', 1, '2024-02-09 04:37:31', 1, '2024-02-09 04:37:56', 0, NULL, 0),
(21795, 16836, '3', 'Bharathidasan University ', '', 'Bachelor of science ', '2019', 62.00, '', 1, '2024-02-09 04:39:04', 0, NULL, 0, NULL, 1),
(21796, 16837, '3', 'Thiruvalluvar University ', '', 'Bsc physics ', '2023', 63.00, '', 1, '2024-02-09 04:39:20', 0, NULL, 0, NULL, 1),
(21797, 16838, '4', 'Thiruvalluvar university', '', 'MBA', '2021', 78.00, '', 1, '2024-02-09 04:42:03', 0, NULL, 0, NULL, 1),
(21798, 16835, '3', 'Madras University ', '', 'B.com', '2023', 6.00, '', 1, '2024-02-09 04:44:56', 0, NULL, 0, NULL, 1),
(21799, 16834, '3', 'Bharathidasan University ', '', 'B.Com', '2021', 62.00, '', 1, '2024-02-09 04:48:47', 0, NULL, 0, NULL, 1),
(21800, 16841, '4', 'Bharathidasan university', '', 'MCA', '2013', 85.00, '', 1, '2024-02-09 04:58:41', 0, NULL, 0, NULL, 1),
(21801, 16840, '3', 'Bharathidasan university ', '', 'BCA', '2017', 80.00, '', 1, '2024-02-09 05:00:05', 0, NULL, 0, NULL, 1),
(21802, 16839, '4', 'Madras university ', '', 'MA. HRM', '2023', 73.00, '', 1, '2024-02-09 05:07:46', 0, NULL, 0, NULL, 1),
(21803, 16842, '4', 'Anna University ', '', 'MBA', '2023', 82.00, '', 1, '2024-02-09 05:14:03', 0, NULL, 0, NULL, 1),
(21804, 16845, '1', 'Christ The King Mat. Hr. Sec. School', '', '', '2016', 85.00, '', 1, '2024-02-09 05:19:25', 0, NULL, 0, NULL, 1),
(21805, 16843, '3', 'Madras University', '', 'BSC CS', '2022', 83.00, '', 1, '2024-02-09 05:20:23', 0, NULL, 0, NULL, 1),
(21806, 16845, '2', 'Christ the king mat. Hr. Sec. School', '', '', '2018', 63.00, '', 1, '2024-02-09 05:20:36', 0, NULL, 0, NULL, 1),
(21807, 16845, '3', 'Guru nanak college', '', 'B. Sc.', '2021', 79.00, '', 1, '2024-02-09 05:21:15', 0, NULL, 0, NULL, 1),
(21808, 16845, '4', 'Guru nanak college', '', 'M. Sc', '2023', 69.00, '', 1, '2024-02-09 05:21:59', 0, NULL, 0, NULL, 1),
(21809, 16844, '1', 'State board', '', '', '2016', 91.00, '', 1, '2024-02-09 05:22:28', 0, NULL, 0, NULL, 1),
(21810, 16844, '2', 'State board', '', '', '2018', 76.00, '', 1, '2024-02-09 05:23:35', 0, NULL, 0, NULL, 1),
(21811, 16848, '4', 'Anna University ', '', 'M.Tech', '2023', 80.00, '', 1, '2024-02-09 05:24:32', 0, NULL, 0, NULL, 1),
(21812, 16844, '3', 'University', '', 'B.Sc', '2021', 71.00, '', 1, '2024-02-09 05:24:38', 1, '2024-02-09 05:25:47', 0, NULL, 1),
(21813, 16844, '4', 'University', '', 'MSC', '2023', 86.70, '', 1, '2024-02-09 05:25:14', 0, NULL, 0, NULL, 1),
(21814, 16849, '3', 'Anna University ', '', 'BE', '2023', 76.00, '', 1, '2024-02-09 05:26:26', 0, NULL, 0, NULL, 1),
(21815, 16849, '2', 'State board ', '', '', '2018', 69.00, '', 1, '2024-02-09 05:26:59', 0, NULL, 0, NULL, 1),
(21816, 16849, '1', 'State board ', '', '', '2016', 71.00, '', 1, '2024-02-09 05:27:42', 0, NULL, 0, NULL, 1),
(21817, 16846, '4', 'vels college of science and technology', '', 'visual communication', '2023', 80.30, '', 1, '2024-02-09 05:29:54', 0, NULL, 0, NULL, 1),
(21818, 16847, '3', 'SRM institute of science and technology ', '', 'B.Tech Mechatronics ', '2020', 71.00, '', 1, '2024-02-09 05:30:08', 0, NULL, 0, NULL, 1),
(21819, 11573, '3', 'Madras University ', '', 'BCA', '2021', 7.45, '', 1, '2024-02-09 05:30:14', 0, NULL, 0, NULL, 1),
(21820, 16846, '5', 'web d school', '', 'advanced ux/ui designing', '2023', 92.00, '', 1, '2024-02-09 05:31:49', 0, NULL, 0, NULL, 1),
(21821, 16853, '3', 'M.Kumarasamy College of Engineering ', '', 'B.Tech(IT)', '2021', 70.00, '', 1, '2024-02-09 05:32:07', 1, '2024-02-09 05:32:45', 0, NULL, 1),
(21822, 16847, '5', 'WebD school ', '', 'Advanced UX UI Designing ', '2023', 95.00, '', 1, '2024-02-09 05:32:42', 0, NULL, 0, NULL, 1),
(21823, 16851, '3', 'THIRUVALLUVAR UNIVERSITY VELLORE ', '', 'BCA', '2023', 81.00, '', 1, '2024-02-09 05:35:46', 0, NULL, 0, NULL, 1),
(21824, 16851, '2', 'THE NAMAKKAL TEACHERS VIDHYA ASHRAM , MATRICULATION ', '', '', '2020', 65.50, '', 1, '2024-02-09 05:37:14', 0, NULL, 0, NULL, 1),
(21825, 16862, '3', 'Sns college of technology ', '', 'BE', '2019', 73.00, '', 1, '2024-02-09 05:41:41', 0, NULL, 0, NULL, 1),
(21826, 16859, '4', 'Anna University', '', 'Mca', '2016', 8.20, '', 1, '2024-02-09 05:41:46', 0, NULL, 0, NULL, 1),
(21827, 16861, '3', 'Anna University', '', 'B.E CSE', '2023', 85.00, '', 1, '2024-02-09 05:41:51', 0, NULL, 0, NULL, 1),
(21828, 16855, '3', 'Anna university', '', 'Btech -iT', '2021', 74.00, '', 1, '2024-02-09 05:42:19', 0, NULL, 0, NULL, 1),
(21829, 16851, '1', 'FREEDOM CONCEPT SCHOOL,CBSC', '', '', '2018', 60.00, '', 1, '2024-02-09 05:42:21', 0, NULL, 0, NULL, 1),
(21830, 16859, '3', 'Bharathidasan University ', '', 'Bca', '2014', 7.90, '', 1, '2024-02-09 05:42:27', 0, NULL, 0, NULL, 1),
(21831, 16855, '2', 'State board', '', '', '2017', 59.00, '', 1, '2024-02-09 05:42:42', 0, NULL, 0, NULL, 1),
(21832, 16855, '1', 'State board', '', '', '2015', 84.00, '', 1, '2024-02-09 05:43:49', 0, NULL, 0, NULL, 1),
(21833, 16859, '1', 'Matriculation ', '', '', '2008', 68.00, '', 1, '2024-02-09 05:43:52', 0, NULL, 0, NULL, 1),
(21834, 16859, '2', 'Stateboard', '', '', '2011', 93.00, '', 1, '2024-02-09 05:44:14', 0, NULL, 0, NULL, 1),
(21835, 16858, '3', 'Vel tech high tech engineering college ', '', 'B.tech(IT)', '2023', 80.00, '', 1, '2024-02-09 05:44:27', 0, NULL, 0, NULL, 1),
(21836, 16863, '3', 'Madress University ', '', 'BCA ', '2023', 81.00, '', 1, '2024-02-09 05:44:46', 0, NULL, 0, NULL, 1),
(21837, 16858, '2', 'Vivekananda vidyalaya matriculation higher secondary school ', '', 'B.tech', '2019', 63.00, '', 1, '2024-02-09 05:45:48', 0, NULL, 0, NULL, 1),
(21838, 16869, '4', 'Thiruvalluvar University ', '', 'M.sc physics ', '2022', 75.00, '', 1, '2024-02-09 05:45:51', 0, NULL, 0, NULL, 1),
(21839, 16868, '3', 'State', '', 'BCA', '2023', 70.00, '', 1, '2024-02-09 05:46:32', 0, NULL, 0, NULL, 1),
(21840, 16865, '3', 'Excel Engineering College ', '', 'BE-CSE', '2022', 77.00, '', 1, '2024-02-09 05:46:55', 0, NULL, 0, NULL, 1),
(21841, 16869, '3', 'Thiruvalluvar University ', '', 'B.sc physics ', '2020', 62.00, '', 1, '2024-02-09 05:46:56', 0, NULL, 0, NULL, 1),
(21842, 16869, '2', 'State board ', '', '', '2017', 61.00, '', 1, '2024-02-09 05:47:25', 0, NULL, 0, NULL, 1),
(21843, 16864, '3', 'Madras university', '', 'BCA', '2023', 78.50, '', 1, '2024-02-09 05:47:35', 0, NULL, 0, NULL, 1),
(21844, 16869, '1', 'State board ', '', '', '2015', 69.00, '', 1, '2024-02-09 05:47:53', 0, NULL, 0, NULL, 1),
(21845, 16858, '1', 'Sudandira matriculation higher secondary school ', '', '', '2017', 79.00, '', 1, '2024-02-09 05:48:34', 0, NULL, 0, NULL, 1),
(21846, 16876, '1', 'State board ', '', '', '2017', 63.00, '', 1, '2024-02-09 05:49:11', 0, NULL, 0, NULL, 1),
(21847, 16874, '3', 'Anna University', '', 'BE', '2021', 7.10, '', 1, '2024-02-09 05:49:16', 0, NULL, 0, NULL, 1),
(21848, 16870, '1', 'Centeral board', '', 'Bca', '2018', 45.00, '', 1, '2024-02-09 05:49:32', 0, NULL, 0, NULL, 1),
(21849, 16876, '2', 'State board ', '', '', '2019', 53.00, '', 1, '2024-02-09 05:49:33', 0, NULL, 0, NULL, 1),
(21850, 16876, '3', 'Autonomous ', '', 'B.Tech ', '2023', 81.00, '', 1, '2024-02-09 05:50:15', 0, NULL, 0, NULL, 1),
(21851, 16873, '3', 'Thiruvallur university ', '', 'Bsc computer science ', '2022', 76.00, '', 1, '2024-02-09 05:50:35', 0, NULL, 0, NULL, 1),
(21852, 16870, '3', 'Madars University ', '', 'Bca', '2023', 85.00, '', 1, '2024-02-09 05:51:16', 0, NULL, 0, NULL, 1),
(21853, 16850, '4', 'Bharadhidasan ', '', 'Msc', '2021', 83.00, '', 1, '2024-02-09 05:51:40', 0, NULL, 0, NULL, 1),
(21854, 16866, '3', 'Anna university ', '', 'B.E-CSE ', '2023', 81.00, '', 1, '2024-02-09 05:53:14', 0, NULL, 0, NULL, 1),
(21855, 16875, '1', 'State', '', '', '2013', 88.40, '', 1, '2024-02-09 05:53:37', 0, NULL, 0, NULL, 1),
(21856, 16875, '2', 'Stateboard', '', '', '2015', 86.50, '', 1, '2024-02-09 05:54:07', 0, NULL, 0, NULL, 1),
(21857, 16871, '1', 'State board', '', '', '2016', 81.00, '', 1, '2024-02-09 05:54:44', 0, NULL, 0, NULL, 1),
(21858, 16875, '3', 'Anna University ', '', 'B.E', '2019', 66.00, '', 1, '2024-02-09 05:54:49', 0, NULL, 0, NULL, 1),
(21859, 16871, '2', 'State board', '', '', '2019', 61.00, '', 1, '2024-02-09 05:55:06', 0, NULL, 0, NULL, 1),
(21860, 16871, '3', 'Anna University ', '', 'BE', '2023', 89.00, '', 1, '2024-02-09 05:55:40', 1, '2024-02-09 05:56:11', 0, NULL, 0),
(21861, 16872, '3', 'Bharathidasan University ', '', 'B.sc Mathematics ', '2020', 78.00, '', 1, '2024-02-09 05:56:25', 0, NULL, 0, NULL, 1),
(21862, 16871, '3', 'Anna University ', '', 'BE', '2023', 89.00, '', 1, '2024-02-09 05:56:53', 0, NULL, 0, NULL, 1),
(21863, 16852, '3', 'anna university', '', 'b.e ece', '2023', 90.60, '', 1, '2024-02-09 05:57:26', 0, NULL, 0, NULL, 1),
(21864, 16878, '1', 'goverment school', '', '', '2004', 50.00, '', 1, '2024-02-09 05:57:28', 0, NULL, 0, NULL, 1),
(21865, 16852, '1', 'elite matriculation secondary school', '', '', '2019', 71.16, '', 1, '2024-02-09 05:58:15', 0, NULL, 0, NULL, 1),
(21866, 16877, '3', 'Autonomous ', '', 'BCA', '2022', 80.00, '', 1, '2024-02-09 06:04:27', 0, NULL, 0, NULL, 1),
(21867, 16856, '3', 'Anna University ', '', 'B.E', '2021', 78.30, '', 1, '2024-02-09 06:05:47', 0, NULL, 0, NULL, 1),
(21868, 16880, '1', 'State Board ', '', '', '2016', 89.00, '', 1, '2024-02-09 06:09:35', 0, NULL, 0, NULL, 1),
(21869, 16881, '4', 'Anna University', '', 'BE ( Mechanical)', '2018', 69.00, '', 1, '2024-02-09 06:09:46', 0, NULL, 0, NULL, 1),
(21870, 16880, '2', 'State board', '', '', '2018', 59.00, '', 1, '2024-02-09 06:10:04', 0, NULL, 0, NULL, 1),
(21871, 16883, '3', 'University of Mumbai', '', 'BSc computer Science', '2021', 7.64, '', 1, '2024-02-09 06:10:05', 0, NULL, 0, NULL, 1),
(21872, 16880, '3', 'Periyar University ', '', 'Bsc Mathematics ', '2021', 67.00, '', 1, '2024-02-09 06:10:39', 0, NULL, 0, NULL, 1),
(21873, 16884, '3', 'ANNA UNIVERSITY ', '', 'B.E, MECHANICAL ENGINEERING ', '2023', 8.10, '', 1, '2024-02-09 06:11:03', 0, NULL, 0, NULL, 1),
(21874, 16880, '4', 'Anna University ', '', 'MCA(Master of computer application)', '2023', 80.00, '', 1, '2024-02-09 06:11:17', 0, NULL, 0, NULL, 1),
(21875, 0, '3', 'University of madras', '', 'BSC', '2013', 70.00, '', 1, '2024-02-09 06:12:03', 1, '2024-02-09 06:50:45', 0, NULL, 0),
(21876, 16891, '4', 'Bharathidasan ', '', 'Msc', '2023', 90.40, '', 1, '2024-02-09 06:12:22', 0, NULL, 0, NULL, 1),
(21877, 16857, '3', 'University ', '', 'BE.ECE', '2023', 75.00, '', 1, '2024-02-09 06:12:24', 0, NULL, 0, NULL, 1),
(21878, 16887, '1', 'State board', '', '', '2016', 77.00, '', 1, '2024-02-09 06:12:38', 0, NULL, 0, NULL, 1),
(21879, 16882, '3', 'Anna university', '', 'B. E Mechanical', '2023', 76.80, '', 1, '2024-02-09 06:12:51', 0, NULL, 0, NULL, 1),
(21880, 16887, '2', 'State board', '', '', '2018', 66.00, '', 1, '2024-02-09 06:13:04', 0, NULL, 0, NULL, 1),
(21881, 16887, '3', 'Periyar University ', '', 'BCA', '2021', 78.00, '', 1, '2024-02-09 06:13:37', 0, NULL, 0, NULL, 1),
(21882, 16887, '4', 'Anna University ', '', 'MCA', '2023', 80.00, '', 1, '2024-02-09 06:13:54', 0, NULL, 0, NULL, 1),
(21883, 16886, '3', 'Anna university ', '', 'BE mechanical ', '2023', 80.20, '', 1, '2024-02-09 06:15:15', 0, NULL, 0, NULL, 1),
(21884, 16894, '3', 'Madras University ', '', 'BCA', '2017', 73.00, '', 1, '2024-02-09 06:16:20', 0, NULL, 0, NULL, 1),
(21885, 16885, '3', 'Anna University', '', 'BE Computer Science and Engineering ', '2023', 79.80, '', 1, '2024-02-09 06:16:43', 0, NULL, 0, NULL, 1),
(21886, 16854, '3', 'Kamaraj University ', '', 'BSC CS', '2021', 7.00, '', 1, '2024-02-09 06:17:19', 0, NULL, 0, NULL, 1),
(21887, 16854, '1', 'State board ', '', '', '2015', 86.00, '', 1, '2024-02-09 06:17:45', 0, NULL, 0, NULL, 1),
(21888, 16854, '2', 'State board ', '', '', '2017', 74.00, '', 1, '2024-02-09 06:18:01', 0, NULL, 0, NULL, 1),
(21889, 16895, '3', 'KSR institutions', '', 'B. E ', '2023', 79.95, '', 1, '2024-02-09 06:18:15', 0, NULL, 0, NULL, 1),
(21890, 16892, '4', 'Kalasalingam academy research and education srivilliputhur ', '', 'M.sc computer science ', '2020', 8.87, '', 1, '2024-02-09 06:19:56', 0, NULL, 0, NULL, 1),
(21891, 16889, '3', 'Anna university', '', 'B.E-EEE', '2020', 85.00, '', 1, '2024-02-09 06:21:28', 0, NULL, 0, NULL, 1),
(21892, 16892, '1', 'H.N.U.C. hr.sec.school puliyangudi ', '', '', '2013', 78.00, '', 1, '2024-02-09 06:22:12', 0, NULL, 0, NULL, 1),
(21893, 16889, '1', 'CBSE', '', '', '2015', 86.00, '', 1, '2024-02-09 06:22:16', 0, NULL, 0, NULL, 1),
(21894, 16892, '2', 'Suyambulingam hr.sec.school puliyangudi ', '', '', '2015', 58.00, '', 1, '2024-02-09 06:22:41', 0, NULL, 0, NULL, 1),
(21895, 16889, '2', 'State Board', '', '', '2016', 80.00, '', 1, '2024-02-09 06:22:42', 0, NULL, 0, NULL, 1),
(21896, 16897, '3', 'Thiruvalluvar University ', '', 'B. Sc., computer Science ', '2023', 75.00, '', 1, '2024-02-09 06:22:58', 0, NULL, 0, NULL, 1),
(21897, 16892, '3', 'Kalasalingam academy research and education srivilliputhur ', '', 'B.sc computer science ', '2018', 8.14, '', 1, '2024-02-09 06:23:33', 0, NULL, 0, NULL, 1),
(21898, 16867, '3', 'Anna University', '', 'BE', '2023', 75.00, '', 1, '2024-02-09 06:24:41', 0, NULL, 0, NULL, 1),
(21899, 16899, '3', 'Calicut University', '', 'BBA', '2022', 50.00, '', 1, '2024-02-09 06:26:44', 0, NULL, 0, NULL, 1),
(21900, 16900, '3', 'Anna University', '', 'BE (Mech)', '2018', 69.00, '', 1, '2024-02-09 06:29:27', 0, NULL, 0, NULL, 1),
(21901, 16901, '3', 'veltech  high tech en coll ', '', 'b.tech', '2023', 83.00, '', 1, '2024-02-09 06:30:32', 0, NULL, 0, NULL, 1),
(21902, 16902, '3', 'Anna University', '', 'BE', '2018', 69.00, '', 1, '2024-02-09 06:37:43', 0, NULL, 0, NULL, 1),
(21903, 16890, '1', 'GOVERNMENT HR SEC SCHOOL- CHETTIKULAM', '', '', '2017', 88.00, '', 1, '2024-02-09 06:43:31', 0, NULL, 0, NULL, 1),
(21904, 16890, '2', 'Thanthai hence roever hr. Sec. School perambalur', '', '', '2019', 72.50, '', 1, '2024-02-09 06:44:53', 0, NULL, 0, NULL, 1),
(21905, 16890, '3', 'Anna university tirichy', '', 'BE ECE', '2023', 7.90, '', 1, '2024-02-09 06:46:08', 0, NULL, 0, NULL, 1),
(21906, 16898, '3', 'Anna university', '', 'BE (Manufacturing Engineering)', '2023', 75.70, '', 1, '2024-02-09 06:50:06', 0, NULL, 0, NULL, 1),
(21907, 16879, '3', 'Dr.MGR University ', '', 'Bca computer applications ', '2023', 74.00, '', 1, '2024-02-09 06:51:25', 0, NULL, 0, NULL, 1),
(21908, 16903, '3', 'Madras university', '', 'BSC', '2013', 70.00, '', 1, '2024-02-09 06:51:45', 0, NULL, 0, NULL, 1),
(21909, 16896, '3', 'Anna University', '', 'B.E ', '2023', 7.67, '', 1, '2024-02-09 06:54:59', 0, NULL, 0, NULL, 1),
(21910, 16904, '3', 'Anjalai ammal mahalingam engineering College ', '', 'BE/mechanical engineering ', '2023', 7.15, '', 1, '2024-02-09 06:55:50', 0, NULL, 0, NULL, 1),
(21911, 16905, '3', 'Anna University ', '', 'BE', '2022', 80.50, '', 1, '2024-02-09 07:17:24', 0, NULL, 0, NULL, 1),
(21912, 16906, '3', 'Anna University ', '', 'B.E', '2022', 78.90, '', 1, '2024-02-09 07:32:04', 0, NULL, 0, NULL, 1),
(21913, 16909, '3', 'Anna University ', '', 'B.E', '2023', 78.70, '', 1, '2024-02-09 07:39:50', 0, NULL, 0, NULL, 1),
(21914, 16910, '3', 'Anna University ', '', 'B.E', '2023', 76.00, '', 1, '2024-02-09 07:41:06', 0, NULL, 0, NULL, 1),
(21915, 16909, '1', 'State board ', '', '', '2017', 97.80, '', 1, '2024-02-09 07:44:39', 0, NULL, 0, NULL, 1),
(21916, 16909, '2', 'State board ', '', '', '2019', 81.60, '', 1, '2024-02-09 07:45:13', 0, NULL, 0, NULL, 1),
(21917, 16907, '3', 'Bharadhidasan University ', '', 'Bca', '2017', 68.00, '', 1, '2024-02-09 08:18:02', 0, NULL, 0, NULL, 1),
(21918, 16912, '1', 'State Board ', '', '', '2017', 63.00, '', 1, '2024-02-09 09:05:33', 0, NULL, 0, NULL, 1),
(21919, 16912, '2', 'State Board ', '', '', '2019', 42.00, '', 1, '2024-02-09 09:05:48', 0, NULL, 0, NULL, 1),
(21920, 16912, '3', 'University of Madras ', '', 'B.com', '2022', 65.00, '', 1, '2024-02-09 09:07:07', 0, NULL, 0, NULL, 1),
(21921, 16913, '4', 'MADURAI KAMARAJ UNIVERSITY ', '', 'MCA', '2022', 72.00, '', 1, '2024-02-09 09:10:22', 0, NULL, 0, NULL, 1),
(21922, 16916, '1', 'State board ', '', '', '2018', 63.00, '', 1, '2024-02-09 09:18:02', 0, NULL, 0, NULL, 1),
(21923, 16911, '3', 'University of Madras ', '', 'BCA ', '2022', 65.00, '', 1, '2024-02-09 09:18:09', 0, NULL, 0, NULL, 1),
(21924, 16916, '2', 'State board ', '', '', '2020', 48.00, '', 1, '2024-02-09 09:18:42', 0, NULL, 0, NULL, 1),
(21925, 16916, '3', 'Madras University ', '', 'BBA', '2023', 65.00, '', 1, '2024-02-09 09:19:10', 0, NULL, 0, NULL, 1),
(21926, 16829, '3', 'University of Madras ', '', 'B.com', '2022', 70.00, '', 1, '2024-02-09 09:20:22', 0, NULL, 0, NULL, 1),
(21927, 16915, '3', 'Madras University ', '', '', '2022', 84.40, '', 1, '2024-02-09 09:21:43', 0, NULL, 0, NULL, 1),
(21928, 16917, '3', 'Anna University ', '', '', '2020', 74.50, '', 1, '2024-02-09 09:34:20', 0, NULL, 0, NULL, 1),
(21929, 16918, '3', 'psna college of engineering and technology', '', 'b.e', '2023', 80.00, '', 1, '2024-02-09 09:35:34', 0, NULL, 0, NULL, 1),
(21930, 16918, '1', 'anguvilas hr sec school', '', '', '2017', 91.00, '', 1, '2024-02-09 09:36:47', 0, NULL, 0, NULL, 1),
(21931, 16918, '2', 'anguvilas hr sec school', '', '', '2019', 73.00, '', 1, '2024-02-09 09:37:18', 0, NULL, 0, NULL, 1),
(21932, 16919, '3', 'Anna University ', '', 'BE', '2023', 79.50, '', 1, '2024-02-09 09:38:55', 0, NULL, 0, NULL, 1),
(21933, 16920, '3', 'University of Madras', '', 'BSC (COMPUTER SCIENCE) ', '2023', 71.20, '', 1, '2024-02-09 10:02:11', 0, NULL, 0, NULL, 1),
(21934, 16921, '3', 'Dwaraka Doss Goverdhan Doss Vaishnav College', '', 'Bachelor\'s ', '2023', 78.20, '', 1, '2024-02-09 10:03:11', 0, NULL, 0, NULL, 1),
(21935, 16922, '4', 'Pondicherry university ', '', 'MBA', '2024', 50.00, '', 1, '2024-02-09 11:46:24', 0, NULL, 0, NULL, 1),
(21936, 16922, '3', 'Deemed university ', '', 'Bachelor of technology ', '2016', 7.68, '', 1, '2024-02-09 11:47:12', 0, NULL, 0, NULL, 1),
(21937, 16922, '2', 'State board ', '', '', '2012', 70.00, '', 1, '2024-02-09 11:47:36', 0, NULL, 0, NULL, 1),
(21938, 16922, '1', 'State board ', '', '', '2010', 75.00, '', 1, '2024-02-09 11:48:00', 0, NULL, 0, NULL, 1),
(21939, 16924, '3', 'Thiruvalluvar University ', '', 'Bsc., Computer Science ', '2022', 85.00, '', 1, '2024-02-10 04:12:38', 0, NULL, 0, NULL, 1),
(21940, 16928, '3', 'Anna University affiliated ', '', 'B.Tech(IT)', '2022', 82.00, '', 1, '2024-02-10 04:48:05', 0, NULL, 0, NULL, 1),
(21941, 16928, '2', 'Minerva Higher Secondary School ', '', '', '2018', 75.00, '', 1, '2024-02-10 04:49:07', 0, NULL, 0, NULL, 1),
(21942, 16929, '3', 'Anna University ', '', 'BE(EEE)', '2022', 75.00, '', 1, '2024-02-10 04:49:16', 0, NULL, 0, NULL, 1),
(21943, 16928, '1', 'Tamilnadu State board', '', '', '2016', 95.00, '', 1, '2024-02-10 04:49:42', 0, NULL, 0, NULL, 1),
(21944, 16929, '1', 'State board of tamilnadu ', '', '', '2016', 88.00, '', 1, '2024-02-10 04:50:05', 0, NULL, 0, NULL, 1),
(21945, 16929, '2', 'State board of tamilnadu ', '', '', '2018', 66.00, '', 1, '2024-02-10 04:50:28', 0, NULL, 0, NULL, 1),
(21946, 16930, '3', 'Loyola college', '', 'B.com', '2023', 68.00, '', 1, '2024-02-10 04:51:01', 0, NULL, 0, NULL, 1),
(21947, 16927, '1', 'SSLC', '', '', '2017', 77.00, '', 1, '2024-02-10 05:00:34', 0, NULL, 0, NULL, 1),
(21948, 16927, '5', 'DOTE', '', 'DCE', '2020', 72.00, '', 1, '2024-02-10 05:01:01', 0, NULL, 0, NULL, 1),
(21949, 16927, '3', 'Anna University ', '', 'BE CSE', '2023', 83.00, '', 1, '2024-02-10 05:01:24', 0, NULL, 0, NULL, 1),
(21950, 16925, '4', 'Anna University ', '', 'MBA', '2022', 8.08, '', 1, '2024-02-10 05:10:17', 0, NULL, 0, NULL, 1),
(21951, 16932, '3', 'Anna University ', '', 'BE-Computer Science and Engineering ', '2023', 72.00, '', 1, '2024-02-10 05:10:41', 0, NULL, 0, NULL, 1),
(21952, 16931, '3', 'Madras university', '', 'B. Sc. Mathematics', '2022', 73.00, '', 1, '2024-02-10 05:10:50', 0, NULL, 0, NULL, 1),
(21953, 16933, '3', 'Bharathidasan University ', '', 'Bsc', '2021', 80.00, '', 1, '2024-02-10 05:11:15', 0, NULL, 0, NULL, 1),
(21954, 16937, '3', 'Kongu engineering College affiliated by Anna University ', '', 'BE - Mechanical engineering ', '2023', 87.60, '', 1, '2024-02-10 05:29:27', 0, NULL, 0, NULL, 1),
(21955, 16936, '1', 'State', '', '', '2017', 86.00, '', 1, '2024-02-10 05:29:41', 0, NULL, 0, NULL, 1),
(21956, 16935, '1', 'State Board ', '', '', '2016', 76.00, '', 1, '2024-02-10 05:29:46', 0, NULL, 0, NULL, 1),
(21957, 16934, '1', 'State board ', '', '', '2017', 81.20, '', 1, '2024-02-10 05:29:51', 0, NULL, 0, NULL, 1),
(21958, 16937, '2', 'Town higher secondary school ', '', '', '2019', 78.00, '', 1, '2024-02-10 05:29:51', 0, NULL, 0, NULL, 1),
(21959, 16935, '2', 'State Board ', '', '', '2018', 67.58, '', 1, '2024-02-10 05:30:12', 0, NULL, 0, NULL, 1),
(21960, 16937, '1', 'Town higher secondary school ', '', '', '2017', 94.00, '', 1, '2024-02-10 05:30:18', 0, NULL, 0, NULL, 1),
(21961, 16936, '2', 'State board', '', '', '2019', 56.00, '', 1, '2024-02-10 05:30:41', 0, NULL, 0, NULL, 1),
(21962, 16934, '2', 'State board ', '', '', '2019', 53.45, '', 1, '2024-02-10 05:30:50', 0, NULL, 0, NULL, 1),
(21963, 16938, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2022', 84.49, '', 1, '2024-02-10 05:31:06', 0, NULL, 0, NULL, 1),
(21964, 16936, '3', 'ANNA university', '', 'B.Tech', '2023', 73.00, '', 1, '2024-02-10 05:31:50', 0, NULL, 0, NULL, 1),
(21965, 16934, '3', 'Anna University ', '', 'B.Tech(Information technology)', '2023', 71.00, '', 1, '2024-02-10 05:31:58', 0, NULL, 0, NULL, 1),
(21966, 16935, '3', 'Madurai Kamaraj University', '', 'B.Sc.Information Technology ', '2021', 73.00, '', 1, '2024-02-10 05:32:51', 0, NULL, 0, NULL, 1),
(21967, 16940, '3', 'Anna university ', '', 'B.E', '2023', 75.00, '', 1, '2024-02-10 05:36:22', 0, NULL, 0, NULL, 1),
(21968, 16940, '1', 'State ', '', '', '2017', 97.00, '', 1, '2024-02-10 05:37:41', 0, NULL, 0, NULL, 1),
(21969, 16940, '2', 'State', '', '', '2019', 83.00, '', 1, '2024-02-10 05:38:23', 0, NULL, 0, NULL, 1),
(21970, 16941, '3', 'Anna university', '', 'BE', '2019', 65.00, '', 1, '2024-02-10 06:08:50', 0, NULL, 0, NULL, 1),
(21971, 16941, '1', 'State board', '', '', '2013', 92.00, '', 1, '2024-02-10 06:09:41', 0, NULL, 0, NULL, 1),
(21972, 16941, '2', 'State board', '', '', '2015', 86.00, '', 1, '2024-02-10 06:10:25', 0, NULL, 0, NULL, 1),
(21973, 16946, '3', 'University of Madras ', '', 'BSc', '2019', 82.00, '', 1, '2024-02-10 06:12:11', 0, NULL, 0, NULL, 1),
(21974, 16947, '3', 'madras university', '', 'bca', '2024', 80.00, '', 1, '2024-02-10 06:12:32', 0, NULL, 0, NULL, 1),
(21975, 16946, '4', 'University of Madras ', '', 'MCA', '2021', 82.00, '', 1, '2024-02-10 06:12:36', 0, NULL, 0, NULL, 1),
(21976, 16945, '1', 'State Board', '', '', '2015', 85.00, '', 1, '2024-02-10 06:18:08', 0, NULL, 0, NULL, 1),
(21977, 16953, '3', 'Anna University', '', 'Be(bme)', '2022', 77.00, '', 1, '2024-02-10 06:26:10', 0, NULL, 0, NULL, 1),
(21978, 16952, '1', 'State board ', '', '', '2017', 84.00, '', 1, '2024-02-10 06:26:20', 0, NULL, 0, NULL, 1),
(21979, 16951, '1', 'State board ', '', 'MSc computer science ', '2016', 73.00, '', 1, '2024-02-10 06:26:21', 0, NULL, 0, NULL, 1),
(21980, 16951, '2', 'State board ', '', '', '2018', 51.00, '', 1, '2024-02-10 06:26:52', 0, NULL, 0, NULL, 1),
(21981, 16952, '2', 'State board ', '', '', '2019', 87.00, '', 1, '2024-02-10 06:26:57', 1, '2024-02-10 06:28:11', 0, NULL, 1),
(21982, 16951, '3', 'Pondicherry University ', '', 'Bsc computer science ', '2021', 69.00, '', 1, '2024-02-10 06:27:47', 0, NULL, 0, NULL, 1),
(21983, 16952, '3', 'Anna University ', '', 'B.Tech', '2023', 82.00, '', 1, '2024-02-10 06:27:48', 0, NULL, 0, NULL, 1),
(21984, 16950, '3', 'Avinashilingam institute ', '', 'B.voc AI and ML ', '2023', 8.30, '', 1, '2024-02-10 06:27:49', 0, NULL, 0, NULL, 1),
(21985, 16951, '4', 'Pondicherry University ', '', 'MSc computer science ', '2023', 84.00, '', 1, '2024-02-10 06:28:30', 0, NULL, 0, NULL, 1),
(21986, 16954, '3', 'State Board', '', 'B.E', '2016', 77.50, '', 1, '2024-02-10 06:29:18', 0, NULL, 0, NULL, 1),
(21987, 16954, '2', 'State Board', '', '', '2012', 89.40, '', 1, '2024-02-10 06:29:47', 0, NULL, 0, NULL, 1),
(21988, 16954, '1', 'State Board', '', '', '2010', 90.40, '', 1, '2024-02-10 06:30:13', 0, NULL, 0, NULL, 1),
(21989, 16942, '1', 'Tamilnadu Stateboard ', '', '', '2016', 84.00, '', 1, '2024-02-10 06:33:18', 0, NULL, 0, NULL, 1),
(21990, 16942, '2', 'Tamilnadu Stateboard ', '', '', '2018', 60.00, '', 1, '2024-02-10 06:33:51', 0, NULL, 0, NULL, 1),
(21991, 16955, '3', 'Anna university', '', 'B.E computer science and engineering', '2020', 69.00, '', 1, '2024-02-10 06:37:27', 0, NULL, 0, NULL, 1),
(21992, 16956, '3', 'Anna University ', '', 'Mechatronics ', '2019', 75.00, '', 1, '2024-02-10 06:37:32', 0, NULL, 0, NULL, 1),
(21993, 16955, '2', 'State board', '', '', '2016', 72.60, '', 1, '2024-02-10 06:37:55', 0, NULL, 0, NULL, 1),
(21994, 16956, '2', 'State board ', '', '', '2015', 88.00, '', 1, '2024-02-10 06:37:57', 0, NULL, 0, NULL, 1),
(21995, 16943, '1', 'State board', '', '', '2016', 76.00, '', 1, '2024-02-10 06:38:07', 0, NULL, 0, NULL, 1),
(21996, 16956, '1', 'State board ', '', '', '2013', 93.00, '', 1, '2024-02-10 06:38:17', 0, NULL, 0, NULL, 1),
(21997, 16943, '2', 'State board ', '', '', '2018', 65.00, '', 1, '2024-02-10 06:38:28', 0, NULL, 0, NULL, 1),
(21998, 16955, '1', 'State board', '', '', '2014', 92.40, '', 1, '2024-02-10 06:38:28', 0, NULL, 0, NULL, 1),
(21999, 16943, '3', 'Anna University ', '', 'BE', '2022', 8.30, '', 1, '2024-02-10 06:38:57', 0, NULL, 0, NULL, 1),
(22000, 16949, '1', 'State board', '', '', '2017', 90.00, '', 1, '2024-02-10 06:49:49', 0, NULL, 0, NULL, 1),
(22001, 16949, '2', 'State board', '', '', '2019', 47.00, '', 1, '2024-02-10 06:50:06', 0, NULL, 0, NULL, 1),
(22002, 16949, '3', 'Anna university', '', 'BE CSE', '2023', 83.00, '', 1, '2024-02-10 06:50:46', 0, NULL, 0, NULL, 1),
(22003, 16948, '1', 'State board ', '', '', '2018', 78.00, '', 1, '2024-02-10 06:57:57', 0, NULL, 0, NULL, 1),
(22004, 16948, '2', 'State board ', '', '', '2020', 65.00, '', 1, '2024-02-10 06:58:19', 0, NULL, 0, NULL, 1),
(22005, 16948, '3', 'Avinashi Lingam University ', '', 'B.VOC', '2023', 81.00, '', 1, '2024-02-10 06:59:50', 0, NULL, 0, NULL, 1),
(22006, 16959, '5', 'DOTE', '', 'Diploma in civil engineering ', '2017', 65.00, '', 1, '2024-02-10 07:48:48', 0, NULL, 0, NULL, 1),
(22007, 16959, '1', 'State board ', '', '', '2012', 66.00, '', 1, '2024-02-10 07:49:32', 0, NULL, 0, NULL, 1),
(22008, 16959, '2', 'State board ', '', '', '2014', 51.00, '', 1, '2024-02-10 07:50:10', 0, NULL, 0, NULL, 1),
(22009, 16959, '3', 'Alagappa University ', '', 'B com', '2024', 60.00, '', 1, '2024-02-10 07:50:57', 0, NULL, 0, NULL, 1),
(22010, 16958, '4', 'Anna University ', '', 'MCA', '2022', 75.00, '', 1, '2024-02-10 08:06:21', 0, NULL, 0, NULL, 1),
(22011, 16939, '3', 'University of Madras ', '', 'B.com ca computer application ', '2020', 67.00, '', 1, '2024-02-10 08:11:49', 0, NULL, 0, NULL, 1),
(22012, 16944, '3', 'Madras university', '', 'B. Com. General', '2020', 74.00, '', 1, '2024-02-10 08:15:44', 0, NULL, 0, NULL, 1),
(22013, 16961, '3', 'Dr.M.G.R. University research and institute ', '', 'B.B.A', '2020', 72.00, '', 1, '2024-02-10 08:17:55', 0, NULL, 0, NULL, 1),
(22014, 16962, '3', 'Anna University ', '', 'B.E Computer science ', '2020', 76.80, '', 1, '2024-02-10 08:34:21', 0, NULL, 0, NULL, 1),
(22015, 16960, '4', 'Sathyabama University ', '', 'MBA', '2019', 6.26, '', 1, '2024-02-10 08:46:50', 0, NULL, 0, NULL, 1),
(22016, 16960, '3', 'Madras University ', '', 'B.COM', '2017', 55.55, '', 1, '2024-02-10 08:47:15', 0, NULL, 0, NULL, 1),
(22017, 16963, '4', 'Anna University ', '', 'MCA ', '2023', 8.40, '', 1, '2024-02-10 08:51:52', 0, NULL, 0, NULL, 1),
(22018, 16964, '4', 'Annamalai University', '', 'MCA', '2023', 70.00, '', 1, '2024-02-10 08:52:29', 0, NULL, 0, NULL, 1),
(22019, 16965, '4', 'Dr. NGP arts and science college ', '', 'M. Com computer applications', '2022', 79.00, '', 1, '2024-02-10 09:16:11', 0, NULL, 0, NULL, 1),
(22020, 16966, '4', 'Velammal Engineering College ', '', 'MBA', '2024', 83.80, '', 1, '2024-02-10 09:25:58', 0, NULL, 0, NULL, 1),
(22021, 16966, '3', 'Anna University ', '', 'B.E. Mechanical Engineering ', '2019', 70.00, '', 1, '2024-02-10 09:26:31', 0, NULL, 0, NULL, 1),
(22022, 16966, '2', 'State Board ', '', '', '2015', 70.58, '', 1, '2024-02-10 09:27:20', 0, NULL, 0, NULL, 1),
(22023, 16967, '3', 'Anna University ', '', 'BE MECHANICAL ENGINEERING ', '2021', 6.90, '', 1, '2024-02-10 09:27:28', 0, NULL, 0, NULL, 1),
(22024, 16966, '1', 'State Board ', '', '', '2013', 93.60, '', 1, '2024-02-10 09:27:36', 0, NULL, 0, NULL, 1),
(22025, 16969, '3', 'Anna University ', '', 'Mechanical engineering ', '2022', 82.00, '', 1, '2024-02-10 09:33:34', 0, NULL, 0, NULL, 1),
(22026, 16969, '2', 'State Board ', '', '', '2018', 66.00, '', 1, '2024-02-10 09:34:16', 0, NULL, 0, NULL, 1),
(22027, 16969, '1', 'State Board ', '', '', '2016', 77.00, '', 1, '2024-02-10 09:34:58', 0, NULL, 0, NULL, 1),
(22028, 16970, '5', 'Abhijay institute of technology ', '', 'Diploma ', '2017', 71.00, '', 1, '2024-02-10 09:47:05', 0, NULL, 0, NULL, 1),
(22029, 16968, '3', 'Anna University ', '', 'BE Mechanical engineering ', '2017', 66.00, '', 1, '2024-02-10 09:51:39', 0, NULL, 0, NULL, 1),
(22030, 16972, '3', 'PSNA CET', '', 'BE - ECE', '2019', 70.00, '', 1, '2024-02-10 09:56:50', 0, NULL, 0, NULL, 1),
(22031, 16971, '3', 'anna university', '', 'be -mechanical', '2017', 68.00, '', 1, '2024-02-10 10:03:34', 0, NULL, 0, NULL, 1),
(22032, 16973, '3', 'madras universitu ', '', 'bcom', '2017', 70.00, '', 1, '2024-02-10 10:34:01', 0, NULL, 0, NULL, 1),
(22033, 16974, '3', 'Anna University ', '', 'B.E Computer Science and engineering ', '2018', 65.00, '', 1, '2024-02-10 10:38:02', 0, NULL, 0, NULL, 1),
(22034, 16975, '4', 'Calicut University ', '', 'Msc ', '2019', 70.00, '', 1, '2024-02-10 11:18:16', 0, NULL, 0, NULL, 1),
(22035, 16976, '3', 'Anna university ', '', 'B.E .Civil Engineering ', '2021', 79.00, '', 1, '2024-02-10 11:25:47', 0, NULL, 0, NULL, 1),
(22036, 16979, '4', 'University ', '', 'M com ', '2023', 72.00, '', 1, '2024-02-12 04:35:39', 0, NULL, 0, NULL, 1),
(22037, 16982, '3', 'Bharathiar university', '', 'B.com.,CA', '2023', 60.00, '', 1, '2024-02-12 05:05:52', 0, NULL, 0, NULL, 1),
(22038, 16981, '3', 'Alagappa University', '', 'B.com', '2024', 69.00, '', 1, '2024-02-12 05:06:45', 0, NULL, 0, NULL, 1),
(22039, 16984, '3', 'Bharathiar University ', '', 'BCA', '2023', 75.00, '', 1, '2024-02-12 05:12:00', 0, NULL, 0, NULL, 1),
(22040, 16980, '3', 'Bharathiyar University ', '', 'Bachelor of Computer Application ', '2023', 76.00, '', 1, '2024-02-12 05:13:22', 0, NULL, 0, NULL, 1),
(22041, 16983, '3', 'Sethu institute of technology ', '', 'B.E', '2023', 88.00, '', 1, '2024-02-12 05:14:07', 0, NULL, 0, NULL, 1),
(22042, 16985, '3', 'Anna University ', '', 'B. Tech-IT', '2023', 82.00, '', 1, '2024-02-12 05:14:29', 0, NULL, 0, NULL, 1),
(22043, 16983, '1', 'State Board ', '', '', '2017', 89.00, '', 1, '2024-02-12 05:14:41', 1, '2024-02-12 05:16:03', 0, NULL, 1),
(22044, 16983, '2', 'State Board', '', '', '2018', 63.00, '', 1, '2024-02-12 05:15:15', 0, NULL, 0, NULL, 1),
(22045, 16987, '1', 'State Board', '', '', '2016', 76.00, '', 1, '2024-02-12 05:49:29', 0, NULL, 0, NULL, 1),
(22046, 16987, '2', 'Stateboard', '', '', '2018', 76.00, '', 1, '2024-02-12 05:49:55', 0, NULL, 0, NULL, 1),
(22047, 16987, '3', 'Madras University', '', 'B.com', '2021', 76.00, '', 1, '2024-02-12 05:50:27', 0, NULL, 0, NULL, 1),
(22048, 16986, '3', 'Jaya institute of technology ', '', 'B.E (Mechanical engineering) ', '2019', 68.20, '', 1, '2024-02-12 05:54:00', 0, NULL, 0, NULL, 1),
(22049, 16989, '3', 'Madras University ', '', 'B.com cs', '2023', 66.00, '', 1, '2024-02-12 06:38:13', 0, NULL, 0, NULL, 1),
(22050, 16988, '3', 'kpr institute of engineering and technology', '', 'b. e', '2021', 7.20, '', 1, '2024-02-12 06:40:20', 0, NULL, 0, NULL, 1),
(22051, 16988, '2', 'psg sarvajana hr sec school', '', '', '2017', 56.00, '', 1, '2024-02-12 06:40:57', 0, NULL, 0, NULL, 1),
(22052, 16988, '1', 'psg sarvajana hr sec school', '', '', '2015', 72.00, '', 1, '2024-02-12 06:41:46', 1, '2024-02-12 06:42:52', 0, NULL, 1),
(22053, 16990, '4', 'madras university', '', 'ma hr', '2022', 69.00, '', 1, '2024-02-12 07:06:13', 0, NULL, 0, NULL, 1),
(22054, 16992, '4', 'Madras University ', '', 'Malayalam', '2021', 70.00, '', 1, '2024-02-12 07:21:01', 0, NULL, 0, NULL, 1),
(22055, 16994, '3', 'Anna University ', '', 'B.E Mechanical engineering ', '2021', 72.00, '', 1, '2024-02-12 09:40:05', 0, NULL, 0, NULL, 1),
(22056, 16995, '4', 'Thiruvalluvar university ', '', 'M.Sc', '2020', 78.00, '', 1, '2024-02-12 10:19:04', 0, NULL, 0, NULL, 1),
(22057, 16996, '3', 'Anna university ', '', 'BE', '2023', 79.00, '', 1, '2024-02-12 02:20:16', 0, NULL, 0, NULL, 1),
(22058, 16997, '3', 'Madras University ', '', 'B.com', '2020', 60.44, '', 1, '2024-02-12 02:48:30', 0, NULL, 0, NULL, 1),
(22059, 16998, '5', 'Dote in chennai', '', 'D,EEE', '2018', 72.00, '', 1, '2024-02-13 04:34:47', 0, NULL, 0, NULL, 1),
(22060, 16999, '4', 'RMK VIVEKANAND COLLEGE CHENNAI MYLAPORE ', '', 'M.a economics ', '2016', 65.00, '', 1, '2024-02-13 05:44:13', 1, '2024-02-13 05:44:34', 0, NULL, 1),
(22061, 16999, '4', 'Rmk vivekanand college Chennai Mylapore ', '', 'M.a economics ', '2016', 65.00, '', 1, '2024-02-13 05:45:07', 1, '2024-02-13 05:45:17', 0, NULL, 0),
(22062, 17000, '3', 'Thiruvalluvar University ', '', 'BCA', '2020', 82.00, '', 1, '2024-02-13 05:54:07', 0, NULL, 0, NULL, 1),
(22063, 17002, '5', 'Dote', '', 'Diploma', '2022', 73.45, '', 1, '2024-02-13 06:21:20', 0, NULL, 0, NULL, 1),
(22064, 17001, '5', 'DOTE', '', 'Diploma in mechanical engineering ', '2022', 74.00, '', 1, '2024-02-13 06:26:24', 0, NULL, 0, NULL, 1),
(22065, 17005, '3', 'University ', '', 'Bca', '2023', 46.00, '', 1, '2024-02-13 07:00:06', 0, NULL, 0, NULL, 1),
(22066, 17003, '3', 'Madras University ', '', 'BBA', '2018', 75.00, '', 1, '2024-02-13 07:11:07', 0, NULL, 0, NULL, 1),
(22067, 17004, '3', 'Madras University ', '', 'Bca', '2022', 80.00, '', 1, '2024-02-13 07:20:18', 0, NULL, 0, NULL, 1),
(22068, 17006, '3', 'University of Madras ', '', 'Bca ', '2022', 70.00, '', 1, '2024-02-13 07:28:54', 0, NULL, 0, NULL, 1),
(22069, 17008, '3', 'Kcg college of technology ', '', 'Electronics and communication engineering ', '2023', 84.60, '', 1, '2024-02-13 10:16:20', 0, NULL, 0, NULL, 1),
(22070, 17007, '3', 'Anna university ', '', 'BE', '2022', 85.00, '', 1, '2024-02-13 10:18:33', 0, NULL, 0, NULL, 1),
(22071, 17009, '3', 'The new college autonomous', '', 'B.A.Economics', '2019', 50.00, '', 1, '2024-02-13 10:52:31', 0, NULL, 0, NULL, 1),
(22072, 17010, '3', 'PERI INSTITUTE OF TECHNOLOGY ', '', 'BE Mechanical Engineering ', '2019', 68.00, '', 1, '2024-02-13 12:12:15', 0, NULL, 0, NULL, 1),
(22073, 17011, '3', 'Panimalar engineering college', '', 'B.E electronic and Instrumentation engineering', '2023', 7.82, '', 1, '2024-02-14 04:39:04', 0, NULL, 0, NULL, 1),
(22074, 17013, '3', 'Thiruvalluvar University', '', 'B. Sc Computer Science', '2021', 70.00, '', 1, '2024-02-14 05:08:15', 0, NULL, 0, NULL, 1),
(22075, 17014, '3', 'Madras University ', '', 'B.Com', '2019', 75.00, '', 1, '2024-02-14 05:11:50', 0, NULL, 0, NULL, 1),
(22076, 17012, '3', 'Thiruvalluvar University', '', 'B. Com ( Computer Application) ', '2022', 72.00, '', 1, '2024-02-14 05:17:57', 0, NULL, 0, NULL, 1),
(22077, 17015, '3', 'Vellore Institute of technology', '', 'BHM', '2022', 9.00, '', 1, '2024-02-14 05:24:53', 0, NULL, 0, NULL, 1),
(22078, 17018, '3', 'B.S.Abdur Rahman crescent Institute ', '', 'B.tech ', '2022', 6.40, '', 1, '2024-02-14 05:54:16', 0, NULL, 0, NULL, 1),
(22079, 17019, '3', 'M.g.r University ', '', 'B.com', '2020', 53.29, '', 1, '2024-02-14 06:19:38', 0, NULL, 0, NULL, 1),
(22080, 17020, '3', 'Vel Tech Multi Engineering College ', '', 'B.E', '2023', 74.70, '', 1, '2024-02-14 06:20:17', 0, NULL, 0, NULL, 1),
(22081, 17017, '4', 'University of madras', '', 'MCA', '2024', 70.00, '', 1, '2024-02-14 06:34:45', 0, NULL, 0, NULL, 1),
(22082, 17016, '4', 'Madras University ', '', 'MCA ', '2023', 72.00, '', 1, '2024-02-14 06:39:27', 0, NULL, 0, NULL, 1),
(22083, 17022, '3', 'Crescent ', '', 'Bsc computer science ', '2020', 7.30, '', 1, '2024-02-14 06:53:47', 0, NULL, 0, NULL, 1),
(22084, 17023, '3', 'Ramakrishna Mission Vivekananda College Autonomous', '', 'B A Sanskrit', '2017', 55.00, '', 1, '2024-02-14 07:13:30', 0, NULL, 0, NULL, 1),
(22085, 17023, '1', 'Brindavan Matriculation Hr Secondary School', '', '', '2012', 58.00, '', 1, '2024-02-14 07:14:57', 1, '2024-02-14 07:16:31', 0, NULL, 0),
(22086, 17023, '2', 'C S I Kellet Higher Secondary School', '', '', '2014', 58.00, '', 1, '2024-02-14 07:15:56', 0, NULL, 0, NULL, 1),
(22087, 17023, '1', 'Brindavan Matriculation Hr Secondary School', '', '', '2012', 50.00, '', 1, '2024-02-14 07:17:26', 0, NULL, 0, NULL, 1),
(22088, 17021, '3', 'Thiruvalur', '', 'BCA ', '2022', 88.00, '', 1, '2024-02-14 07:20:47', 0, NULL, 0, NULL, 1),
(22089, 17025, '3', 'University of Madras', '', 'B. Com', '2019', 65.00, '', 1, '2024-02-15 02:44:47', 0, NULL, 0, NULL, 1),
(22090, 17027, '3', 'Bharadhidasan ', '', 'Bcom', '2020', 68.00, '', 1, '2024-02-15 05:14:23', 0, NULL, 0, NULL, 1),
(22091, 17028, '3', 'Madras university ', '', 'bcom ca', '2022', 76.00, '', 1, '2024-02-15 05:53:13', 0, NULL, 0, NULL, 1),
(22092, 17030, '3', 'prist university Thanjavur vallam', '', 'bcom ca', '2023', 78.00, '', 1, '2024-02-15 05:53:19', 0, NULL, 0, NULL, 1),
(22093, 17029, '4', 'Sathyabama University', '', 'MBA', '2020', 70.90, '', 1, '2024-02-15 05:55:31', 0, NULL, 0, NULL, 1),
(22094, 17031, '3', 'Anna University ', '', 'Bachalor of Engineering ', '2019', 62.00, '', 1, '2024-02-15 06:21:05', 0, NULL, 0, NULL, 1),
(22095, 17032, '3', 'Thiruvallur university ', '', 'BSC computer science ', '2023', 67.00, '', 1, '2024-02-15 06:26:46', 0, NULL, 0, NULL, 1),
(22096, 17024, '3', 'Madras university ', '', 'B. A Tamil ', '2022', 85.00, '', 1, '2024-02-15 06:37:35', 0, NULL, 0, NULL, 1),
(22097, 17033, '5', 'Murugappa Polytechnic college ', '', 'Civil engineering ', '2005', 71.00, '', 1, '2024-02-15 06:43:34', 0, NULL, 0, NULL, 1),
(22098, 17035, '5', 'Board', '', 'DME', '2016', 71.00, '', 1, '2024-02-15 06:55:55', 0, NULL, 0, NULL, 1),
(22099, 17036, '3', 'Anna University ', '', 'BE (EEE)', '2015', 62.00, '', 1, '2024-02-15 06:57:33', 0, NULL, 0, NULL, 1),
(22100, 17037, '5', 'Excel Polytechnic college ', '', 'dME', '2020', 73.00, '', 1, '2024-02-15 06:59:22', 0, NULL, 0, NULL, 1),
(22101, 17034, '3', 'Sriram nallamani yadav art\'s and science college ', '', 'Bsc', '2023', 60.00, '', 1, '2024-02-15 07:02:46', 0, NULL, 0, NULL, 1),
(22102, 17039, '4', 'Sri Venkateswara University ', '', 'Mca', '2018', 85.00, '', 1, '2024-02-15 08:04:46', 0, NULL, 0, NULL, 1),
(22103, 17041, '3', 'Anna University ', '', 'B.E', '2022', 81.00, '', 1, '2024-02-15 09:37:03', 0, NULL, 0, NULL, 1),
(22104, 17041, '2', 'State Board ', '', '', '2018', 54.00, '', 1, '2024-02-15 09:37:47', 0, NULL, 0, NULL, 1),
(22105, 17041, '1', 'State Board ', '', '', '2016', 88.00, '', 1, '2024-02-15 09:38:09', 0, NULL, 0, NULL, 1),
(22106, 17042, '3', 'Manonmaniam sundaranar University ', '', 'B.SC Computer Science ', '2022', 77.00, '', 1, '2024-02-15 10:45:28', 1, '2024-02-15 10:46:17', 0, NULL, 0),
(22107, 17042, '1', 'State board ', '', '', '2017', 79.50, '', 1, '2024-02-15 10:46:53', 0, NULL, 0, NULL, 1),
(22108, 17042, '2', 'State board ', '', '', '2019', 55.00, '', 1, '2024-02-15 10:47:19', 0, NULL, 0, NULL, 1),
(22109, 17042, '3', 'Manonmaniam sundaranar University ', '', 'B.SC Computer Science ', '2022', 77.00, '', 1, '2024-02-15 10:48:02', 0, NULL, 0, NULL, 1),
(22110, 17045, '3', 'Madras University', '', 'B.Sc Company Science', '2020', 75.00, '', 1, '2024-02-15 04:07:38', 0, NULL, 0, NULL, 1),
(22111, 17045, '2', 'State Board', '', '', '2017', 80.00, '', 1, '2024-02-15 04:11:54', 0, NULL, 0, NULL, 1),
(22112, 17045, '1', 'State Board ', '', '', '2015', 87.00, '', 1, '2024-02-15 04:12:27', 0, NULL, 0, NULL, 1),
(22113, 17046, '3', 'UNIVERSITY OF MADRAS', '', 'BSc.cOMPUTER SCIENCE', '2023', 69.00, '', 1, '2024-02-16 03:58:49', 0, NULL, 0, NULL, 1),
(22114, 17047, '3', 'Jerusalem college of engineering ', '', 'BE EEE', '2019', 69.00, '', 1, '2024-02-16 05:30:13', 0, NULL, 0, NULL, 1),
(22115, 17048, '5', 'Anna University ', '', 'DECE', '2019', 82.00, '', 1, '2024-02-16 06:37:30', 0, NULL, 0, NULL, 1),
(22116, 17048, '3', 'Madras University ', '', 'BCA', '2023', 85.00, '', 1, '2024-02-16 06:38:07', 0, NULL, 0, NULL, 1),
(22117, 17049, '2', 'Anna University ', '', 'BE', '2021', 75.00, '', 1, '2024-02-16 07:46:53', 0, NULL, 0, NULL, 1),
(22118, 17050, '3', 'Sri sankara arts and science college, kanchipuram', '', 'Bca', '2022', 79.00, '', 1, '2024-02-16 10:16:28', 0, NULL, 0, NULL, 1),
(22119, 17050, '1', 'Sudadira mat.hr.sec.school', '', '', '2017', 80.00, '', 1, '2024-02-16 10:17:02', 0, NULL, 0, NULL, 1),
(22120, 17050, '2', 'Sudandira mat.hr.sec.school. tiruttani', '', '', '2019', 64.00, '', 1, '2024-02-16 10:18:13', 0, NULL, 0, NULL, 1),
(22121, 17054, '3', 'University of Madras', '', 'B.A Arts', '2017', 70.00, '', 1, '2024-02-17 05:43:46', 0, NULL, 0, NULL, 1),
(22122, 17055, '4', 'Southern Asia Bible College ', '', 'MABS', '2022', 60.00, '', 1, '2024-02-17 05:50:22', 0, NULL, 0, NULL, 1),
(22123, 17055, '3', 'Madras University ', '', 'BA English Literature ', '2020', 75.00, '', 1, '2024-02-17 05:51:34', 0, NULL, 0, NULL, 1),
(22124, 17055, '2', 'State Board', '', '', '2017', 80.60, '', 1, '2024-02-17 05:52:15', 0, NULL, 0, NULL, 1),
(22125, 17055, '1', 'State Board', '', '', '2015', 78.00, '', 1, '2024-02-17 05:52:44', 1, '2024-02-17 05:53:40', 0, NULL, 0),
(22126, 17056, '3', 'Vel Tech High Tech Dr Rangarajan Dr Sakunthala Engineering College ', '', 'B.Tech - Information Technology', '2023', 78.00, '', 1, '2024-02-17 06:41:07', 0, NULL, 0, NULL, 1),
(22127, 17056, '2', 'St.Ann\'s higher secondary school ', '', '', '2019', 68.00, '', 1, '2024-02-17 06:42:17', 0, NULL, 0, NULL, 1),
(22128, 17056, '1', 'St.Joseph\'s matriculation school ', '', '', '2017', 92.00, '', 1, '2024-02-17 06:42:49', 0, NULL, 0, NULL, 1),
(22129, 17057, '3', 'Anna University ', '', 'B.Tech - Information Technology ', '2023', 88.00, '', 1, '2024-02-17 06:53:16', 0, NULL, 0, NULL, 1),
(22130, 17057, '2', 'St.Joseph\'s matric higher secondary school ', '', '', '2019', 73.00, '', 1, '2024-02-17 06:53:45', 0, NULL, 0, NULL, 1),
(22131, 17057, '1', 'St.Joseph\'s matriculation school ', '', '', '2017', 94.00, '', 1, '2024-02-17 06:54:05', 0, NULL, 0, NULL, 1),
(22132, 17058, '3', 'Justice Basheer Ahmed Syeed college from womens', '', 'B.com.cs', '2022', 70.00, '', 1, '2024-02-17 07:00:35', 0, NULL, 0, NULL, 1),
(22133, 17059, '3', 'Anna University ', '', 'B E ', '2021', 69.00, '', 1, '2024-02-17 07:33:32', 0, NULL, 0, NULL, 1),
(22134, 17060, '3', 'Madras University ', '', 'B.com', '2019', 92.00, '', 1, '2024-02-17 07:57:11', 0, NULL, 0, NULL, 1),
(22135, 17061, '3', 'Madras University ', '', 'B.Com', '2020', 80.00, '', 1, '2024-02-17 09:05:26', 0, NULL, 0, NULL, 1),
(22136, 17038, '1', 'Govt.School', '', '', '2009', 80.00, '', 1, '2024-02-17 09:15:29', 0, NULL, 0, NULL, 1),
(22137, 17063, '4', 'University of madras ', '', 'M.sc.IT', '2023', 80.00, '', 1, '2024-02-19 05:12:23', 0, NULL, 0, NULL, 1),
(22138, 17063, '3', 'Madurai kamaraj university ', '', 'B.sc IT ', '2020', 76.00, '', 1, '2024-02-19 05:13:10', 0, NULL, 0, NULL, 1),
(22139, 17063, '2', 'SR govt girls hr sec School ', '', '', '2017', 75.00, '', 1, '2024-02-19 05:13:41', 0, NULL, 0, NULL, 1),
(22140, 17063, '1', 'SR govt girls hr sec School ', '', '', '2015', 70.00, '', 1, '2024-02-19 05:14:25', 0, NULL, 0, NULL, 1),
(22141, 17066, '3', 'Madras University ', '', 'BBA', '2021', 75.00, '', 1, '2024-02-19 05:25:26', 0, NULL, 0, NULL, 1),
(22142, 17066, '4', 'Chellammal women\'s college ', '', 'Bachelor of Business Administration ', '2021', 75.00, '', 1, '2024-02-19 05:26:15', 110, '2024-02-19 11:32:47', 0, NULL, 0),
(22143, 17067, '5', 'Anna University ', '', 'EEE', '2021', 86.00, '', 1, '2024-02-19 05:36:07', 0, NULL, 0, NULL, 1),
(22144, 17068, '3', 'Madras University ', '', 'BA.ENG', '2023', 69.00, '', 1, '2024-02-19 05:36:54', 0, NULL, 0, NULL, 1),
(22145, 17069, '3', 'Dhanraj baid jain college', '', 'Bachelor of Computer Applications (BCA)', '2022', 70.00, '', 1, '2024-02-19 06:09:36', 0, NULL, 0, NULL, 1),
(22146, 17070, '4', 'Bharth university ', '', 'Ma English ', '2022', 84.00, '', 1, '2024-02-19 06:21:28', 0, NULL, 0, NULL, 1),
(22147, 17071, '3', 'Madras University ', '', 'Bsc Physics ', '2021', 73.00, '', 1, '2024-02-19 06:22:07', 0, NULL, 0, NULL, 1),
(22148, 17064, '3', 'Vels university', '', 'B.E', '2021', 62.93, '', 1, '2024-02-19 06:26:48', 0, NULL, 0, NULL, 1),
(22149, 17065, '3', 'anna university', '', 'be', '2024', 65.00, '', 1, '2024-02-19 06:31:00', 0, NULL, 0, NULL, 1),
(22150, 17075, '3', 'Periyar', '', '', '2019', 75.00, '', 1, '2024-02-19 07:17:00', 0, NULL, 0, NULL, 1),
(22151, 17073, '3', 'Saveetha University ', '', 'B.tech', '2023', 78.00, '', 1, '2024-02-19 07:20:34', 0, NULL, 0, NULL, 1),
(22152, 17077, '3', 'KCS Kasi nadar college of arts and science ', '', 'B.com', '2022', 75.00, '', 1, '2024-02-19 10:38:33', 0, NULL, 0, NULL, 1),
(22153, 17079, '3', 'Bharathidasan University ', '', 'BCA', '2019', 7.00, '', 1, '2024-02-19 12:17:43', 0, NULL, 0, NULL, 1),
(22154, 17080, '3', 'Thiruvalluvar University', '', 'BCA', '2020', 58.00, '', 1, '2024-02-19 12:26:49', 0, NULL, 0, NULL, 1),
(22155, 17085, '3', 'Madras University ', '', 'B.Com', '2020', 75.00, '', 1, '2024-02-19 01:29:07', 0, NULL, 0, NULL, 1),
(22156, 17086, '3', 'Anna University ', '', 'B.E Automobile Engineering ', '2021', 78.80, '', 1, '2024-02-19 02:10:16', 0, NULL, 0, NULL, 1),
(22157, 17086, '5', 'Anna University ', '', 'Diploma automobile engineering ', '2014', 72.00, '', 1, '2024-02-19 02:11:14', 0, NULL, 0, NULL, 1),
(22158, 17084, '3', 'Madras university', '', 'B. Com (A/F) ', '2023', 62.00, '', 1, '2024-02-19 02:25:33', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22159, 17088, '3', 'Madras university ', '', 'B.com general ', '2023', 72.00, '', 1, '2024-02-19 04:10:53', 0, NULL, 0, NULL, 1),
(22160, 17087, '3', 'Sri venkateshwara University ', '', 'B.com ', '2023', 71.00, '', 1, '2024-02-20 04:07:40', 0, NULL, 0, NULL, 1),
(22161, 17089, '3', 'Sri venkateshwara University ', '', 'B.com', '2023', 70.00, '', 1, '2024-02-20 04:16:38', 0, NULL, 0, NULL, 1),
(22162, 17090, '4', 'state board university', '', 'mba', '2024', 83.00, '', 1, '2024-02-20 04:52:43', 0, NULL, 0, NULL, 1),
(22163, 17090, '3', 'bharathidhasan university', '', 'bsc it', '2022', 84.00, '', 1, '2024-02-20 04:53:57', 0, NULL, 0, NULL, 1),
(22164, 17092, '3', 'loyola college chennai', '', 'bcom Corporate secretaryship ', '2023', 75.00, '', 1, '2024-02-20 05:17:37', 0, NULL, 0, NULL, 1),
(22165, 17091, '3', 'Loyola College Nungambakkam ', '', 'B.com . Corporate Sectary ship', '2023', 66.00, '', 1, '2024-02-20 05:18:02', 0, NULL, 0, NULL, 1),
(22166, 17092, '1', 'cbse', '', '', '2018', 70.00, '', 1, '2024-02-20 05:18:55', 0, NULL, 0, NULL, 1),
(22167, 17092, '2', 'cbse', '', '', '2020', 76.00, '', 1, '2024-02-20 05:19:23', 0, NULL, 0, NULL, 1),
(22168, 17091, '1', 'Madras Christian College Hr sec School ', '', 'B.com corporate Sectary ship', '2019', 72.00, '', 1, '2024-02-20 05:23:51', 0, NULL, 0, NULL, 1),
(22169, 17091, '2', 'Madras Christian College Hr sec school ', '', '', '2020', 75.20, '', 1, '2024-02-20 05:25:15', 0, NULL, 0, NULL, 1),
(22170, 17094, '3', 'Government ', '', 'BA economics ', '2016', 66.00, '', 1, '2024-02-20 06:20:47', 0, NULL, 0, NULL, 1),
(22171, 17096, '5', 'Anna University ', '', 'Mechanical engineering ', '2019', 80.00, '', 1, '2024-02-20 06:37:30', 0, NULL, 0, NULL, 1),
(22172, 17097, '3', 'sir theagaraya college', '', 'b.com general', '2019', 62.00, '', 1, '2024-02-20 06:47:12', 0, NULL, 0, NULL, 1),
(22173, 17099, '3', 'University of madras', '', 'Ba Sociology', '2021', 69.00, '', 1, '2024-02-20 06:57:23', 0, NULL, 0, NULL, 1),
(22174, 17099, '1', 'State board', '', 'BA sociology', '2016', 76.00, '', 1, '2024-02-20 06:58:12', 0, NULL, 0, NULL, 1),
(22175, 17099, '2', 'State board', '', '', '2018', 66.00, '', 1, '2024-02-20 06:58:36', 0, NULL, 0, NULL, 1),
(22176, 17100, '3', 'Madras University ', '', 'B.com', '2019', 70.00, '', 1, '2024-02-20 07:02:26', 0, NULL, 0, NULL, 1),
(22177, 17098, '4', ' University Madras', '', 'B.com (ISM)', '2024', 85.00, '', 1, '2024-02-20 07:13:00', 0, NULL, 0, NULL, 1),
(22178, 17101, '3', 'University ', '', 'BPT', '2024', 70.00, '', 1, '2024-02-20 07:54:16', 0, NULL, 0, NULL, 1),
(22179, 17102, '3', 'the american college', '', 'b.com it', '2021', 70.00, '', 1, '2024-02-20 07:59:18', 0, NULL, 0, NULL, 1),
(22180, 17103, '4', 'Madras university ', '', 'MBA', '2024', 70.00, '', 1, '2024-02-20 08:44:19', 0, NULL, 0, NULL, 1),
(22181, 17104, '3', 'vels university', '', ' be civil', '2022', 80.70, '', 1, '2024-02-20 09:19:39', 0, NULL, 0, NULL, 1),
(22182, 17106, '4', 'Madras university ', '', 'M.com', '2023', 64.00, '', 1, '2024-02-20 09:27:33', 0, NULL, 0, NULL, 1),
(22183, 17105, '4', 'Bharathiyar University ', '', 'MBA', '2018', 60.00, '', 1, '2024-02-20 09:34:59', 0, NULL, 0, NULL, 1),
(22184, 17111, '3', 'Kingston engineering college ', '', 'B.E- CSE', '2024', 77.00, '', 1, '2024-02-20 10:10:23', 0, NULL, 0, NULL, 1),
(22185, 17111, '2', 'Sri chaitanya junior college ', '', '', '2020', 78.00, '', 1, '2024-02-20 10:11:07', 0, NULL, 0, NULL, 1),
(22186, 17110, '3', 'University ', '', 'B.e computer science ', '2024', 7.40, '', 1, '2024-02-20 10:39:05', 0, NULL, 0, NULL, 1),
(22187, 17110, '2', 'Board', '', '', '2018', 45.00, '', 1, '2024-02-20 10:40:47', 0, NULL, 0, NULL, 1),
(22188, 17114, '3', 'Anna University ', '', 'B.E', '2017', 69.00, '', 1, '2024-02-20 01:13:37', 0, NULL, 0, NULL, 1),
(22189, 17114, '2', 'State Board ', '', '', '2013', 74.00, '', 1, '2024-02-20 01:14:47', 0, NULL, 0, NULL, 1),
(22190, 17114, '1', 'State Board ', '', '', '2011', 94.00, '', 1, '2024-02-20 01:15:09', 0, NULL, 0, NULL, 1),
(22191, 17115, '3', 'Madras University ', '', 'B.Sc', '2019', 70.00, '', 1, '2024-02-20 01:28:58', 0, NULL, 0, NULL, 1),
(22192, 17115, '2', 'Cbse', '', '', '2014', 62.00, '', 1, '2024-02-20 01:29:17', 0, NULL, 0, NULL, 1),
(22193, 17115, '1', 'Cbse', '', '', '2011', 63.00, '', 1, '2024-02-20 01:29:34', 0, NULL, 0, NULL, 1),
(22194, 17121, '1', 'Board of secondary education ', '', '', '2012', 73.00, '', 1, '2024-02-21 03:37:10', 0, NULL, 0, NULL, 1),
(22195, 17121, '5', 'Board of technical education and training ', '', 'Electronics and communication engineering ', '2017', 96.00, '', 1, '2024-02-21 03:37:39', 0, NULL, 0, NULL, 1),
(22196, 17120, '1', 'State board', '', '', '2015', 67.00, '', 1, '2024-02-21 03:37:53', 0, NULL, 0, NULL, 1),
(22197, 17120, '5', 'Alagappa University ', '', 'DEEE', '2018', 89.00, '', 1, '2024-02-21 03:38:27', 0, NULL, 0, NULL, 1),
(22198, 17120, '3', 'Anna University ', '', 'BE.EEE', '2022', 86.00, '', 1, '2024-02-21 03:39:12', 0, NULL, 0, NULL, 1),
(22199, 17122, '1', 'State Board ', '', '', '2016', 76.00, '', 1, '2024-02-21 03:59:22', 0, NULL, 0, NULL, 1),
(22200, 17122, '2', 'State Board ', '', '', '2018', 60.00, '', 1, '2024-02-21 03:59:52', 0, NULL, 0, NULL, 1),
(22201, 17122, '3', 'Srm University ', '', 'B.sc Hotel Management ', '2021', 7.68, '', 1, '2024-02-21 04:01:16', 0, NULL, 0, NULL, 1),
(22202, 17122, '4', 'MBA', '', 'Anna University ', '2023', 7.80, '', 1, '2024-02-21 04:01:39', 0, NULL, 0, NULL, 1),
(22203, 17123, '3', 'Anna university ', '', 'BE', '2022', 85.20, '', 1, '2024-02-21 04:06:25', 0, NULL, 0, NULL, 1),
(22204, 17107, '3', 'Medras University', '', 'Bsc computer science', '2023', 80.00, '', 1, '2024-02-21 04:20:31', 0, NULL, 0, NULL, 1),
(22205, 17112, '3', 'Madras University ', '', 'Bsc computer science ', '2022', 68.00, '', 1, '2024-02-21 04:35:58', 0, NULL, 0, NULL, 1),
(22206, 17125, '5', 'medras university', '', 'diploma', '2023', 70.00, '', 1, '2024-02-21 05:10:58', 0, NULL, 0, NULL, 1),
(22207, 17127, '3', 'Thiruvalluvar university vellore ', '', 'BCA', '2023', 82.00, '', 1, '2024-02-21 05:26:09', 0, NULL, 0, NULL, 1),
(22208, 17128, '3', 'Thiruvalluvar ', '', 'Bca', '2022', 75.00, '', 1, '2024-02-21 05:32:11', 0, NULL, 0, NULL, 1),
(22209, 17130, '5', 'Kennedy ', '', 'ITI', '2020', 75.00, '', 1, '2024-02-21 05:43:27', 0, NULL, 0, NULL, 1),
(22210, 17131, '3', 'Thiruvalluvar University ', '', 'B. Com ', '2023', 65.00, '', 1, '2024-02-21 05:54:10', 0, NULL, 0, NULL, 1),
(22211, 17132, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 72.00, '', 1, '2024-02-21 06:02:35', 0, NULL, 0, NULL, 1),
(22212, 17132, '1', 'Madras', '', '', '2018', 70.00, '', 1, '2024-02-21 06:03:20', 0, NULL, 0, NULL, 1),
(22213, 17132, '2', 'Madras University ', '', '', '2020', 60.00, '', 1, '2024-02-21 06:03:46', 0, NULL, 0, NULL, 1),
(22214, 17133, '1', 'Sri venkateswara matriculation hr.sec.school', '', '', '2018', 60.00, '', 1, '2024-02-21 06:06:42', 0, NULL, 0, NULL, 1),
(22215, 17133, '2', 'Sri venkateswara matriculation .hr.sec.school', '', '', '2020', 69.00, '', 1, '2024-02-21 06:08:18', 0, NULL, 0, NULL, 1),
(22216, 17133, '3', 'Annai voilet arts and science college', '', 'Bsc(cs)', '2023', 72.00, '', 1, '2024-02-21 06:09:31', 0, NULL, 0, NULL, 1),
(22217, 17134, '4', 'Madras University ', '', 'M.com', '2022', 75.00, '', 1, '2024-02-21 06:14:20', 0, NULL, 0, NULL, 1),
(22218, 17129, '3', 'Thiruvalluvar', '', 'Bsc', '2020', 70.00, '', 1, '2024-02-21 06:16:44', 0, NULL, 0, NULL, 1),
(22219, 17135, '3', 'Kingston engineering college ', '', 'B.E-C.S.E', '2024', 77.00, '', 1, '2024-02-21 06:27:47', 0, NULL, 0, NULL, 1),
(22220, 17135, '2', 'Sri Chaitanya Junior College ', '', '', '2020', 72.00, '', 1, '2024-02-21 06:28:04', 0, NULL, 0, NULL, 1),
(22221, 17135, '1', 'Little rose english medium high school ', '', '', '2018', 82.00, '', 1, '2024-02-21 06:28:47', 0, NULL, 0, NULL, 1),
(22222, 17136, '1', 'State board ', '', '', '2013', 74.00, '', 1, '2024-02-21 06:42:31', 0, NULL, 0, NULL, 1),
(22223, 17136, '2', 'State board ', '', '', '2015', 60.00, '', 1, '2024-02-21 06:43:07', 0, NULL, 0, NULL, 1),
(22224, 17136, '3', 'Bharathidasan university ', '', 'Bca', '2018', 60.00, '', 1, '2024-02-21 06:44:23', 0, NULL, 0, NULL, 1),
(22225, 17136, '4', 'Anna University ', '', 'MBA ', '2020', 58.00, '', 1, '2024-02-21 06:44:52', 0, NULL, 0, NULL, 1),
(22226, 17137, '4', 'Anna university ', '', 'MBA', '2021', 7.50, '', 1, '2024-02-21 07:21:55', 0, NULL, 0, NULL, 1),
(22227, 17138, '3', 'Bharathidasan ', '', 'BA', '2021', 68.00, '', 1, '2024-02-21 07:41:07', 0, NULL, 0, NULL, 1),
(22228, 17140, '3', 'Anna University ', '', 'BE', '2017', 75.00, '', 1, '2024-02-21 08:18:39', 0, NULL, 0, NULL, 1),
(22229, 17126, '3', 'Anna University ', '', 'Be', '2022', 8.10, '', 1, '2024-02-21 09:20:07', 0, NULL, 0, NULL, 1),
(22230, 17126, '2', 'State board', '', '', '2018', 63.00, '', 1, '2024-02-21 09:20:25', 0, NULL, 0, NULL, 1),
(22231, 17143, '5', 'Thiruvalluvar univ8', '', '', '2021', 85.00, '', 1, '2024-02-21 12:11:47', 0, NULL, 0, NULL, 1),
(22232, 17145, '1', 'Bentinck girls higher secondary school', '', 'MBA (HR)', '2014', 77.00, '', 1, '2024-02-21 12:53:12', 1, '2024-02-21 12:58:21', 0, NULL, 0),
(22233, 17145, '2', 'Bentinck Girls Higher Secondary School', '', '', '2016', 62.00, '', 1, '2024-02-21 12:53:41', 0, NULL, 0, NULL, 1),
(22234, 17145, '3', 'Quaid -E-Millath government college for women ', '', 'BA', '2019', 64.00, '', 1, '2024-02-21 12:56:17', 0, NULL, 0, NULL, 1),
(22235, 17145, '4', 'Madras University ', '', 'MBA', '2023', 68.00, '', 1, '2024-02-21 12:56:36', 0, NULL, 0, NULL, 1),
(22236, 17145, '1', 'Bentinck girls higher secondary school', '', '', '2014', 77.00, '', 1, '2024-02-21 12:59:09', 0, NULL, 0, NULL, 1),
(22237, 17146, '3', 'Thiruvallur university', '', 'BCA', '2021', 78.00, '', 1, '2024-02-21 01:18:39', 0, NULL, 0, NULL, 1),
(22238, 17139, '3', 'Madras University ', '', 'B.com ', '2023', 70.00, '', 1, '2024-02-22 04:26:48', 0, NULL, 0, NULL, 1),
(22239, 17149, '3', 'SRM Valliammai Engineering College ', '', 'BE', '2024', 7.70, '', 1, '2024-02-22 04:33:24', 0, NULL, 0, NULL, 1),
(22240, 17150, '3', 'medras university', '', 'b.sc  physics', '2022', 73.00, '', 1, '2024-02-22 04:58:20', 0, NULL, 0, NULL, 1),
(22241, 17151, '4', 'Anna University ', '', 'MCA', '2022', 7.50, '', 1, '2024-02-22 05:09:10', 0, NULL, 0, NULL, 1),
(22242, 17152, '3', 'Anna University', '', 'B.Tech', '2013', 69.00, '', 1, '2024-02-22 05:15:06', 0, NULL, 0, NULL, 1),
(22243, 17153, '3', 'Thiruvalluvar University ', '', 'B.com (ca)', '2022', 55.00, '', 1, '2024-02-22 05:24:50', 0, NULL, 0, NULL, 1),
(22244, 17154, '3', 'CAPE INSTITUTE OF TECHNOLOGY ', '', 'B.Tech - Information Technology ', '2021', 7.39, '', 1, '2024-02-22 05:25:17', 0, NULL, 0, NULL, 1),
(22245, 17154, '2', 'TAMILNADU STATE BOARD EXAMINATION ', '', '', '2017', 69.00, '', 1, '2024-02-22 05:25:48', 1, '2024-02-22 05:26:41', 0, NULL, 1),
(22246, 17154, '1', 'TAMILNADU STATE BOARD EXAMINATION ', '', '', '2015', 90.80, '', 1, '2024-02-22 05:27:04', 0, NULL, 0, NULL, 1),
(22247, 17155, '3', 'Madras University ', '', 'Bcom cs ', '2023', 85.00, '', 1, '2024-02-22 05:28:22', 0, NULL, 0, NULL, 1),
(22248, 17158, '1', 'State board ', '', '', '2023', 51.00, '', 1, '2024-02-22 05:53:54', 0, NULL, 0, NULL, 1),
(22249, 17158, '2', 'State board ', '', '', '2020', 47.00, '', 1, '2024-02-22 05:54:33', 0, NULL, 0, NULL, 1),
(22250, 11967, '4', 'University', '', 'M. A economic', '2018', 75.00, '', 1, '2024-02-22 05:55:04', 0, NULL, 0, NULL, 1),
(22251, 17158, '3', 'Madras University ', '', 'B com computer applications ', '2023', 78.00, '', 1, '2024-02-22 05:55:12', 0, NULL, 0, NULL, 1),
(22252, 17161, '3', 'Thiruthangal Nadar college ', '', 'B sc maths', '2017', 54.00, '', 1, '2024-02-22 06:27:58', 0, NULL, 0, NULL, 1),
(22253, 17162, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2015', 74.00, '', 1, '2024-02-22 07:03:46', 0, NULL, 0, NULL, 1),
(22254, 17163, '3', 'Anna university', '', 'BE computer science', '2024', 8.10, '', 1, '2024-02-22 07:40:16', 0, NULL, 0, NULL, 1),
(22255, 17164, '3', 'Madras University ', '', 'Bcom Bank management ', '2023', 65.00, '', 1, '2024-02-22 08:06:18', 0, NULL, 0, NULL, 1),
(22256, 17166, '3', 'Madras University ', '', 'Bsc Computer science ', '2023', 60.00, '', 1, '2024-02-22 08:11:23', 0, NULL, 0, NULL, 1),
(22257, 17159, '3', 'Mahendra Engineering College ', '', 'B.E', '2022', 85.00, '', 1, '2024-02-22 09:19:13', 0, NULL, 0, NULL, 1),
(22258, 17165, '3', 'Anjum institute I', '', 'ITi', '2021', 60.00, '', 1, '2024-02-22 09:27:33', 0, NULL, 0, NULL, 1),
(22259, 17167, '4', 'Madras University ', '', 'M.A public Administration ', '2023', 88.00, '', 1, '2024-02-22 11:05:43', 0, NULL, 0, NULL, 1),
(22260, 17169, '5', 'Board ', '', 'DECE', '2013', 59.00, '', 1, '2024-02-22 01:28:32', 0, NULL, 0, NULL, 1),
(22261, 17172, '3', 'University of madras', '', 'Bsc computer science', '2020', 69.00, '', 1, '2024-02-22 04:34:02', 0, NULL, 0, NULL, 1),
(22262, 17176, '5', 'RDB College of Arts and Science ', '', '', '2016', 75.00, '', 1, '2024-02-23 04:29:46', 0, NULL, 0, NULL, 1),
(22263, 17177, '5', 'Hindustan Polytechnic College', '', '', '2020', 71.00, '', 1, '2024-02-23 04:35:21', 0, NULL, 0, NULL, 1),
(22264, 17178, '3', 'Srm institute of science and technology ', '', 'B.com ', '2022', 89.00, '', 1, '2024-02-23 04:41:59', 0, NULL, 0, NULL, 1),
(22265, 17175, '5', 'DOTE', '', '', '2019', 72.00, '', 1, '2024-02-23 04:43:40', 0, NULL, 0, NULL, 1),
(22266, 17174, '5', 'State Board ', '', 'Diploma mechanical engineering ', '2019', 89.00, '', 1, '2024-02-23 05:02:01', 0, NULL, 0, NULL, 1),
(22267, 17180, '4', 'Manonmaniam sundaranar University ', '', '', '2023', 79.00, '', 1, '2024-02-23 05:19:29', 0, NULL, 0, NULL, 1),
(22268, 17179, '3', 'University of Madras ', '', 'B.com general ', '2023', 70.00, '', 1, '2024-02-23 05:21:59', 0, NULL, 0, NULL, 1),
(22269, 17180, '4', 'V.O.Chidambaram College of arts and science ', '', 'MSC computer science ', '2023', 80.00, '', 1, '2024-02-23 05:30:06', 0, NULL, 0, NULL, 1),
(22270, 17181, '3', 'Madurai kamaraj University ', '', 'BBA', '2021', 63.00, '', 1, '2024-02-23 05:55:05', 0, NULL, 0, NULL, 1),
(22271, 17185, '4', 'Bharthidasan university', '', 'Msc computer science', '2023', 72.00, '', 1, '2024-02-23 06:04:42', 0, NULL, 0, NULL, 1),
(22272, 17183, '3', 'Thiruvallur University ', '', 'B.Com', '2023', 90.00, '', 1, '2024-02-23 06:21:31', 0, NULL, 0, NULL, 1),
(22273, 17168, '3', 'Maher ', '', 'B.com', '2019', 65.00, '', 1, '2024-02-23 06:22:31', 0, NULL, 0, NULL, 1),
(22274, 17184, '3', 'Bharath Institute of ', '', 'BBA', '2021', 70.00, '', 1, '2024-02-23 06:35:48', 0, NULL, 0, NULL, 1),
(22275, 17186, '3', 'Anna University ', '', 'BE', '2022', 79.00, '', 1, '2024-02-23 06:39:52', 0, NULL, 0, NULL, 1),
(22276, 17187, '4', 'State board ', '', 'MSc IT ', '2022', 84.50, '', 1, '2024-02-23 06:54:27', 0, NULL, 0, NULL, 1),
(22277, 17188, '3', 'Anna University ', '', 'BE', '2016', 60.00, '', 1, '2024-02-23 07:26:16', 0, NULL, 0, NULL, 1),
(22278, 17189, '2', 'muhyiddheenya. matric. hr. sec. school', '', '', '2013', 70.00, '', 1, '2024-02-23 07:30:03', 0, NULL, 0, NULL, 1),
(22279, 17190, '1', 'Sri Sai Ram English Medium school ', '', 'B.Tech Aeronautical Engineering ', '2016', 72.00, '', 1, '2024-02-23 08:00:44', 1, '2024-02-23 08:02:36', 0, NULL, 1),
(22280, 17190, '2', 'Bhashyam IIT JEE Intermediate College ', '', '', '2018', 83.00, '', 1, '2024-02-23 08:02:51', 0, NULL, 0, NULL, 1),
(22281, 17190, '3', 'Vel Tech University ', '', 'B.Tech Aeronautical Engineering ', '2022', 80.00, '', 1, '2024-02-23 08:03:15', 0, NULL, 0, NULL, 1),
(22282, 17191, '3', 'APJ Abdul Kalam Technological University', '', 'B.Tech ', '2021', 6.00, '', 1, '2024-02-23 08:18:39', 0, NULL, 0, NULL, 1),
(22283, 17191, '2', 'APJ Abdul Kalam Technological University', '', '', '2017', 7.00, '', 1, '2024-02-23 08:20:50', 0, NULL, 0, NULL, 1),
(22284, 17193, '3', 'SRM UNIVERSITY Trichy', '', 'Bachelor of Engineering ', '2021', 7.83, '', 1, '2024-02-23 09:15:28', 0, NULL, 0, NULL, 1),
(22285, 17196, '2', 'State board ', '', '', '2014', 84.00, '', 1, '2024-02-23 11:50:35', 0, NULL, 0, NULL, 1),
(22286, 17196, '1', 'State board ', '', '', '2012', 78.00, '', 1, '2024-02-23 11:50:56', 0, NULL, 0, NULL, 1),
(22287, 17197, '4', 'Anna University ', '', 'Mca', '2016', 78.00, '', 1, '2024-02-23 01:32:00', 0, NULL, 0, NULL, 1),
(22288, 17198, '3', 'Madras University ', '', 'Bsc computer science ', '2021', 75.00, '', 1, '2024-02-23 01:34:56', 0, NULL, 0, NULL, 1),
(22289, 17199, '3', 'Madras university', '', 'BCA', '2022', 70.00, '', 1, '2024-02-23 05:45:04', 0, NULL, 0, NULL, 1),
(22290, 17200, '3', 'Stella Maris college ', '', 'History and travel tourism ', '2022', 75.00, '', 1, '2024-02-24 04:21:43', 0, NULL, 0, NULL, 1),
(22291, 17200, '1', 'Doveton girls higher secondary school', '', '', '2019', 80.00, '', 1, '2024-02-24 04:22:35', 0, NULL, 0, NULL, 1),
(22292, 17200, '2', 'Doveton girls higher secondary ', '', '', '2019', 80.00, '', 1, '2024-02-24 04:23:37', 0, NULL, 0, NULL, 1),
(22293, 17201, '3', 'Madras University ', '', 'Bsc chemistry ', '2012', 52.00, '', 1, '2024-02-24 04:31:42', 0, NULL, 0, NULL, 1),
(22294, 17202, '3', 'Bharathidasan University ', '', 'B sc computer science ', '2022', 73.00, '', 1, '2024-02-24 05:07:49', 0, NULL, 0, NULL, 1),
(22295, 17203, '3', 'DR.MGR RESEARCH AND EDUCATIONAL INSTITUTE OF UNIVERSITY', '', 'BCA', '2023', 70.00, '', 1, '2024-02-24 05:07:54', 0, NULL, 0, NULL, 1),
(22296, 17204, '4', 'anna university', '', 'mca', '2023', 80.00, '', 1, '2024-02-24 05:11:07', 0, NULL, 0, NULL, 1),
(22297, 17204, '3', 'manonmaniam sundranar university', '', 'bsc computer scien ', '2021', 77.00, '', 1, '2024-02-24 05:12:10', 0, NULL, 0, NULL, 1),
(22298, 17204, '2', 'state board', '', '', '2018', 85.00, '', 1, '2024-02-24 05:13:23', 0, NULL, 0, NULL, 1),
(22299, 17204, '1', 'state board', '', '', '2016', 93.00, '', 1, '2024-02-24 05:13:43', 0, NULL, 0, NULL, 1),
(22300, 17206, '3', 'Bharathidasan university', '', 'B.com CA', '2023', 85.00, '', 1, '2024-02-24 05:46:59', 0, NULL, 0, NULL, 1),
(22301, 17209, '3', 'University of Madras ', '', 'BCA', '2023', 79.00, '', 1, '2024-02-24 05:48:50', 0, NULL, 0, NULL, 1),
(22302, 17210, '1', 'Kerala state', '', '', '2020', 89.00, '', 1, '2024-02-24 05:49:37', 1, '2024-02-24 05:50:20', 0, NULL, 0),
(22303, 17211, '4', 'Automatics', '', 'B.E.Automobile Engineering', '2021', 7.89, '', 1, '2024-02-24 05:50:30', 0, NULL, 0, NULL, 1),
(22304, 17211, '1', 'ssbm', '', '', '2018', 56.00, '', 1, '2024-02-24 05:50:49', 0, NULL, 0, NULL, 1),
(22305, 17210, '2', 'Kerala State ', '', '', '2022', 80.00, '', 1, '2024-02-24 05:50:49', 1, '2024-02-24 05:50:58', 0, NULL, 0),
(22306, 17208, '3', 'Anna University ', '', 'B.E Mechanical engineer ', '2020', 6.57, '', 1, '2024-02-24 05:51:06', 0, NULL, 0, NULL, 1),
(22307, 17210, '2', 'Kerala state syllabus ', '', '', '2022', 80.00, '', 1, '2024-02-24 05:51:22', 0, NULL, 0, NULL, 1),
(22308, 17212, '3', 'Vinayaka missions', '', 'B.E', '2022', 80.00, '', 1, '2024-02-24 05:51:47', 0, NULL, 0, NULL, 1),
(22309, 17207, '3', 'madras university', '', 'b a business Economic ', '2018', 70.00, '', 1, '2024-02-24 05:53:09', 0, NULL, 0, NULL, 1),
(22310, 16181, '3', 'Parvaty Art\'s and science college ', '', 'BCom (CA)', '2022', 63.00, '', 1, '2024-02-24 06:10:55', 0, NULL, 0, NULL, 1),
(22311, 17205, '3', 'Prist University ', '', 'Bsc', '2021', 83.00, '', 1, '2024-02-24 06:23:29', 0, NULL, 0, NULL, 1),
(22312, 17214, '3', 'Medras University ', '', 'B.sc mathematics with computer applications ', '2020', 70.00, '', 1, '2024-02-24 07:01:31', 0, NULL, 0, NULL, 1),
(22313, 17214, '2', 'C h h s s Purasaiwalkkam ', '', '', '2017', 80.00, '', 1, '2024-02-24 07:02:31', 0, NULL, 0, NULL, 1),
(22314, 17214, '1', 'C h s goyyathope ', '', '', '2015', 85.00, '', 1, '2024-02-24 07:03:03', 0, NULL, 0, NULL, 1),
(22315, 17194, '3', 'Himalayan University ', '', 'B.com', '2019', 84.00, '', 1, '2024-02-24 07:23:07', 0, NULL, 0, NULL, 1),
(22316, 17216, '4', 'Arrupadai veedu instute of technology ', '', 'Mba', '2022', 80.00, '', 1, '2024-02-24 08:47:18', 0, NULL, 0, NULL, 1),
(22317, 17217, '3', 'christ university bangalore', '', 'bsc', '2022', 61.00, '', 1, '2024-02-24 08:51:27', 0, NULL, 0, NULL, 1),
(22318, 17218, '3', 'srm University', '', 'b-tech/mechanical', '2019', 65.00, '', 1, '2024-02-24 09:21:19', 0, NULL, 0, NULL, 1),
(22319, 17220, '3', 'Government Art\'s and Science College ', '', 'B.com', '2019', 65.00, '', 1, '2024-02-24 09:54:11', 0, NULL, 0, NULL, 1),
(22320, 17221, '2', 'Madras university', '', '', '2013', 65.00, '', 1, '2024-02-24 10:04:34', 0, NULL, 0, NULL, 1),
(22321, 17223, '3', 'stella maris college', '', 'b.com cs', '2021', 68.00, '', 1, '2024-02-24 10:35:17', 0, NULL, 0, NULL, 1),
(22322, 17222, '2', 'Board', '', '', '2010', 76.00, '', 1, '2024-02-24 10:37:51', 1, '2024-02-24 10:39:20', 0, NULL, 0),
(22323, 17222, '2', 'Board', '', '', '2010', 63.00, '', 1, '2024-02-24 10:40:13', 0, NULL, 0, NULL, 1),
(22324, 17221, '1', 'Madras university ', '', '', '2013', 60.00, '', 1, '2024-02-24 12:57:48', 0, NULL, 0, NULL, 1),
(22325, 17215, '3', 'Anna University ', '', 'Be Cse', '2023', 80.00, '', 1, '2024-02-24 02:32:32', 0, NULL, 0, NULL, 1),
(22326, 17225, '4', 'Madras University ', '', 'M.A.Economics', '2021', 75.00, '', 1, '2024-02-26 03:31:36', 0, NULL, 0, NULL, 1),
(22327, 17227, '3', 'Bharathiyar University ', '', 'B.com computer Applications ', '2020', 62.00, '', 1, '2024-02-26 04:29:48', 0, NULL, 0, NULL, 1),
(22328, 17228, '3', 'SRM UNIVERSITY ', '', 'B.com general ', '2023', 70.00, '', 1, '2024-02-26 05:43:47', 0, NULL, 0, NULL, 1),
(22329, 17229, '1', 'State board ', '', '', '2016', 77.80, '', 1, '2024-02-26 05:56:00', 1, '2024-02-26 05:56:46', 0, NULL, 0),
(22330, 17229, '2', 'State board ', '', '', '2018', 70.00, '', 1, '2024-02-26 05:57:04', 0, NULL, 0, NULL, 1),
(22331, 17229, '3', 'The New College ', '', 'Bsc', '2021', 71.70, '', 1, '2024-02-26 05:57:45', 0, NULL, 0, NULL, 1),
(22332, 17230, '3', 'SRM UNIVERSITY ', '', 'B.com general ', '2023', 70.00, '', 1, '2024-02-26 06:32:58', 0, NULL, 0, NULL, 1),
(22333, 17232, '3', 'Mk University ', '', 'Mba', '2012', 60.00, '', 1, '2024-02-26 06:54:52', 0, NULL, 0, NULL, 1),
(22334, 17235, '1', 'State board', '', 'BCA', '2017', 81.00, '', 1, '2024-02-26 07:03:11', 1, '2024-02-26 07:04:32', 0, NULL, 0),
(22335, 17235, '2', 'State Board', '', '', '2019', 60.00, '', 1, '2024-02-26 07:03:34', 0, NULL, 0, NULL, 1),
(22336, 17234, '1', 'State', '', 'MBA', '2015', 75.00, '', 1, '2024-02-26 07:04:04', 1, '2024-02-26 07:04:39', 0, NULL, 0),
(22337, 17235, '1', 'State board', '', 'BCA', '2017', 81.00, '', 1, '2024-02-26 07:04:48', 0, NULL, 0, NULL, 1),
(22338, 17235, '3', 'Madras Universiry', '', 'BCA', '2022', 71.00, '', 1, '2024-02-26 07:05:22', 0, NULL, 0, NULL, 1),
(22339, 17234, '4', 'Anna University ', '', 'MBA ', '2022', 76.00, '', 1, '2024-02-26 07:05:31', 0, NULL, 0, NULL, 1),
(22340, 17233, '4', 'University of Madras', '', 'MSC.Applied Geography ', '2019', 72.00, '', 1, '2024-02-26 07:06:21', 0, NULL, 0, NULL, 1),
(22341, 17234, '3', 'Bharadidasansan University ', '', 'B.com(cA)', '2020', 68.00, '', 1, '2024-02-26 07:07:15', 0, NULL, 0, NULL, 1),
(22342, 17234, '1', 'State board ', '', '', '2015', 72.00, '', 1, '2024-02-26 07:07:56', 0, NULL, 0, NULL, 1),
(22343, 17237, '4', 'Anna University ', '', 'MBA ', '2022', 81.00, '', 1, '2024-02-26 07:08:05', 0, NULL, 0, NULL, 1),
(22344, 17234, '2', 'State board ', '', '', '2020', 74.00, '', 1, '2024-02-26 07:08:41', 0, NULL, 0, NULL, 1),
(22345, 17238, '3', 'Anna University', '', 'B. E(ECE) ', '2019', 6.33, '', 1, '2024-02-26 07:18:31', 0, NULL, 0, NULL, 1),
(22346, 17231, '3', 'Maras University ', '', 'BA', '2022', 78.00, '', 1, '2024-02-26 07:21:29', 0, NULL, 0, NULL, 1),
(22347, 17236, '3', 'Srrcet', '', 'B.e', '2016', 6.90, '', 1, '2024-02-26 08:03:56', 0, NULL, 0, NULL, 1),
(22348, 17239, '3', 'IEC University ', '', 'BCA', '2021', 62.00, '', 1, '2024-02-26 08:05:22', 0, NULL, 0, NULL, 1),
(22349, 17243, '3', 'University ', '', 'B.com', '2022', 68.00, '', 1, '2024-02-26 08:32:37', 0, NULL, 0, NULL, 1),
(22350, 17241, '3', 'Anna University ', '', 'B.E', '2017', 5.90, '', 1, '2024-02-26 08:39:45', 0, NULL, 0, NULL, 1),
(22351, 17244, '3', 'Madras University', '', 'B. Com (CS) ', '2020', 60.00, '', 1, '2024-02-26 08:46:27', 0, NULL, 0, NULL, 1),
(22352, 17240, '2', 'St. John\'s Matriculation Hr. Sec. School', '', '', '2016', 70.00, '', 1, '2024-02-26 08:55:45', 0, NULL, 0, NULL, 1),
(22353, 17242, '3', 'Anna University ', '', 'B.tech', '2023', 70.00, '', 1, '2024-02-26 08:55:53', 0, NULL, 0, NULL, 1),
(22354, 17246, '4', 'Bharathiyar University ', '', 'M.A.English Literature ', '2023', 70.00, '', 1, '2024-02-26 09:11:32', 1, '2024-02-26 09:13:22', 0, NULL, 1),
(22355, 17246, '3', 'Bharathiyar ', '', 'B.A.English Literature ', '2021', 64.50, '', 1, '2024-02-26 09:14:04', 0, NULL, 0, NULL, 1),
(22356, 17224, '3', 'Anna university', '', 'B.tech IT', '2021', 85.00, '', 1, '2024-02-26 10:44:02', 0, NULL, 0, NULL, 1),
(22357, 17247, '3', 'Thiruvalluvar ', '', 'B com', '2020', 92.00, '', 1, '2024-02-26 11:46:47', 0, NULL, 0, NULL, 1),
(22358, 17249, '4', 'S.v University, tirupati', '', 'MBA', '2021', 60.00, '', 1, '2024-02-26 01:35:39', 0, NULL, 0, NULL, 1),
(22359, 17249, '3', 'S.v University, tirupati', '', 'Bcom(C.A)', '2019', 60.00, '', 1, '2024-02-26 01:36:17', 0, NULL, 0, NULL, 1),
(22360, 17250, '2', 'State board of examination ', '', '', '2020', 60.00, '', 1, '2024-02-26 03:05:33', 0, NULL, 0, NULL, 1),
(22361, 17251, '4', 'SRM university ', '', 'MBA ', '2024', 7.30, '', 1, '2024-02-27 03:21:20', 0, NULL, 0, NULL, 1),
(22362, 17252, '1', 'State board ', '', '', '2016', 65.00, '', 1, '2024-02-27 04:02:21', 0, NULL, 0, NULL, 1),
(22363, 17252, '2', 'State board', '', '', '2018', 55.00, '', 1, '2024-02-27 04:02:40', 0, NULL, 0, NULL, 1),
(22364, 17252, '3', 'Anna University ', '', 'BE Medical Electronics Engineering ', '2022', 88.00, '', 1, '2024-02-27 04:03:13', 0, NULL, 0, NULL, 1),
(22365, 17253, '4', 'Bharathidasan University ', '', 'MCA ', '2023', 85.00, '', 1, '2024-02-27 04:32:06', 0, NULL, 0, NULL, 1),
(22366, 17254, '3', 'Anna university ', '', 'B.E', '2023', 78.00, '', 1, '2024-02-27 05:07:49', 0, NULL, 0, NULL, 1),
(22367, 17255, '3', 'Anna University ', '', 'B.E,EEE', '2018', 60.00, '', 1, '2024-02-27 05:15:19', 0, NULL, 0, NULL, 1),
(22368, 17256, '3', 'Univercity of Madras ', '', 'BA Economics ', '2021', 80.00, '', 1, '2024-02-27 05:18:02', 0, NULL, 0, NULL, 1),
(22369, 17258, '3', 'JNTUA', '', '', '2019', 7.50, '', 1, '2024-02-27 06:33:36', 0, NULL, 0, NULL, 1),
(22370, 17257, '3', 'Karpagam academy of hir education ', '', 'BSC . IT', '2023', 70.00, '', 1, '2024-02-27 06:54:29', 0, NULL, 0, NULL, 1),
(22371, 17260, '3', 'Madras university', '', 'BBA', '2023', 67.00, '', 1, '2024-02-27 07:04:14', 0, NULL, 0, NULL, 1),
(22372, 17264, '3', 'Veltech university', '', 'B.Tech', '2021', 74.00, '', 1, '2024-02-27 07:23:29', 0, NULL, 0, NULL, 1),
(22373, 17259, '3', 'Madras University ', '', 'BCA', '2023', 83.00, '', 1, '2024-02-27 07:31:28', 0, NULL, 0, NULL, 1),
(22374, 17266, '3', 'Madras university ', '', 'BBA', '2021', 72.00, '', 1, '2024-02-27 08:12:26', 0, NULL, 0, NULL, 1),
(22375, 17269, '3', 'Quaid -e-millath government college for women ', '', 'B.com (cS)', '2023', 76.00, '', 1, '2024-02-27 09:39:38', 0, NULL, 0, NULL, 1),
(22376, 17270, '3', 'TNAU ', '', 'BSC hons agriculture ', '2023', 75.00, '', 1, '2024-02-27 10:05:19', 0, NULL, 0, NULL, 1),
(22377, 17272, '4', 'Anna university ', '', 'MBA', '2022', 85.30, '', 1, '2024-02-27 10:21:07', 0, NULL, 0, NULL, 1),
(22378, 17271, '4', 'Madras University ', '', 'Mba', '2022', 76.00, '', 1, '2024-02-27 10:21:07', 0, NULL, 0, NULL, 1),
(22379, 17272, '3', 'Anna university ', '', 'B.E MECHANICAL ENGINEERING ', '2020', 77.90, '', 1, '2024-02-27 10:21:39', 0, NULL, 0, NULL, 1),
(22380, 17271, '3', 'Madras University ', '', 'Bcom accounting and finance ', '2020', 79.00, '', 1, '2024-02-27 10:21:50', 0, NULL, 0, NULL, 1),
(22381, 17272, '2', 'State board', '', '', '2016', 73.30, '', 1, '2024-02-27 10:22:08', 0, NULL, 0, NULL, 1),
(22382, 17272, '1', 'State board ', '', '', '2014', 94.20, '', 1, '2024-02-27 10:22:39', 0, NULL, 0, NULL, 1),
(22383, 17271, '2', 'Anita Methodist matriculation school ', '', '', '2017', 88.00, '', 1, '2024-02-27 10:23:23', 0, NULL, 0, NULL, 1),
(22384, 17271, '1', 'Anita Methodist matriculation school ', '', '', '2015', 86.00, '', 1, '2024-02-27 10:23:44', 0, NULL, 0, NULL, 1),
(22385, 17276, '3', 'Vels University ', '', 'B.sc chemistry ', '2021', 75.00, '', 1, '2024-02-27 11:24:18', 0, NULL, 0, NULL, 1),
(22386, 17275, '3', 'Madras University ', '', 'BCA', '2023', 75.00, '', 1, '2024-02-27 11:41:35', 0, NULL, 0, NULL, 1),
(22387, 17277, '3', 'Madurai Kamaraj university', '', 'B.sc(Computer Science)', '2020', 68.00, '', 1, '2024-02-27 11:48:28', 0, NULL, 0, NULL, 1),
(22388, 17279, '3', 'Vinayaka Missions University ', '', 'B.Sc Chemistry ', '2021', 90.05, '', 1, '2024-02-27 12:08:20', 0, NULL, 0, NULL, 1),
(22389, 17279, '2', 'State Board ', '', '', '2017', 72.00, '', 1, '2024-02-27 12:09:53', 0, NULL, 0, NULL, 1),
(22390, 17279, '1', 'State Board ', '', '', '2015', 87.00, '', 1, '2024-02-27 12:10:13', 0, NULL, 0, NULL, 1),
(22391, 17278, '3', 'Madras University', '', 'B.sc PHYSICS', '2022', 65.00, '', 1, '2024-02-27 12:12:22', 0, NULL, 0, NULL, 1),
(22392, 17280, '3', 'Madras University ', '', 'BCA', '2017', 85.00, '', 1, '2024-02-27 12:20:49', 0, NULL, 0, NULL, 1),
(22393, 17284, '4', 'Madras University ', '', 'MCA', '2018', 83.00, '', 1, '2024-02-27 04:51:15', 0, NULL, 0, NULL, 1),
(22394, 17285, '3', 'Thiruvallur University ', '', 'B sc(Mathematics)', '2016', 85.00, '', 1, '2024-02-28 04:47:51', 0, NULL, 0, NULL, 1),
(22395, 17286, '3', 'Rvs engineering institute of college ', '', 'Civil ', '2016', 78.00, '', 1, '2024-02-28 04:58:21', 0, NULL, 0, NULL, 1),
(22396, 17289, '1', 'velammal', '', '', '2013', 72.00, '', 1, '2024-02-28 05:29:17', 0, NULL, 0, NULL, 1),
(22397, 17289, '2', ' velammal', '', '', '2015', 50.00, '', 1, '2024-02-28 05:29:41', 0, NULL, 0, NULL, 1),
(22398, 17289, '5', 'bharthidasan', '', 'diploma in logistics', '2017', 50.00, '', 1, '2024-02-28 05:30:19', 0, NULL, 0, NULL, 1),
(22399, 17291, '4', 'Bharathidasan University ', '', 'M.sc., Microbiology ', '2023', 88.00, '', 1, '2024-02-28 05:38:59', 0, NULL, 0, NULL, 1),
(22400, 17281, '3', 'JNTUK', '', 'B.tech', '2023', 6.90, '', 1, '2024-02-28 05:42:02', 0, NULL, 0, NULL, 1),
(22401, 17290, '4', 'Anna University', '', 'MCA', '2023', 80.00, '', 1, '2024-02-28 05:44:23', 0, NULL, 0, NULL, 1),
(22402, 17290, '3', 'Bharathidasan University ', '', 'BCA', '2020', 82.00, '', 1, '2024-02-28 05:44:58', 0, NULL, 0, NULL, 1),
(22403, 17290, '2', 'StateBoard', '', '', '2017', 79.00, '', 1, '2024-02-28 05:45:25', 0, NULL, 0, NULL, 1),
(22404, 17290, '1', 'StateBoard', '', '', '2015', 90.00, '', 1, '2024-02-28 05:46:03', 0, NULL, 0, NULL, 1),
(22405, 17293, '3', 'Bharathidasan University trichy ', '', 'B.com ( CA)', '2000', 77.00, '', 1, '2024-02-28 06:04:30', 0, NULL, 0, NULL, 1),
(22406, 17296, '4', 'Madras University ', '', 'B.com', '2021', 73.00, '', 1, '2024-02-28 06:25:06', 0, NULL, 0, NULL, 1),
(22407, 17292, '3', 'Madras university', '', 'BSc physics', '2021', 75.00, '', 1, '2024-02-28 06:35:50', 0, NULL, 0, NULL, 1),
(22408, 17296, '4', 'Madras University ', '', 'B.com', '2021', 74.00, '', 1, '2024-02-28 06:41:13', 0, NULL, 0, NULL, 1),
(22409, 17299, '3', 'CRESCENT INSTITUTE OF SCIENCE AND TECHNOLOGY ', '', 'BA ', '2021', 66.00, '', 1, '2024-02-28 06:50:04', 0, NULL, 0, NULL, 1),
(22410, 17299, '1', 'Private ', '', '', '2018', 63.00, '', 1, '2024-02-28 06:50:41', 1, '2024-02-28 06:51:00', 0, NULL, 0),
(22411, 17298, '3', 'Fatima Michael college of engineering and technology ', '', 'BE ', '2023', 79.00, '', 1, '2024-02-28 06:53:27', 0, NULL, 0, NULL, 1),
(22412, 17297, '3', 'University of Madras ', '', 'B.com', '2023', 80.71, '', 1, '2024-02-28 06:56:30', 0, NULL, 0, NULL, 1),
(22413, 17300, '3', 'Madras University ', '', 'B.com', '2019', 76.00, '', 1, '2024-02-28 07:01:56', 0, NULL, 0, NULL, 1),
(22414, 17265, '3', 'Manonmaniam Sundaranar University ', '', 'B.com', '2023', 78.00, '', 1, '2024-02-28 07:29:13', 0, NULL, 0, NULL, 1),
(22415, 17288, '3', 'Madras University ', '', 'B.com cs', '2023', 81.00, '', 1, '2024-02-28 07:45:48', 0, NULL, 0, NULL, 1),
(22416, 17301, '3', 'Annauniversity', '', 'B.E', '2010', 66.00, '', 1, '2024-02-28 07:51:52', 0, NULL, 0, NULL, 1),
(22417, 17304, '3', 'Madras university', '', 'B. Com', '2023', 57.00, '', 1, '2024-02-28 08:16:47', 0, NULL, 0, NULL, 1),
(22418, 17303, '3', 'University ', '', 'Bcom', '2022', 79.00, '', 1, '2024-02-28 08:18:40', 0, NULL, 0, NULL, 1),
(22419, 17303, '1', 'Board ', '', '', '2017', 94.50, '', 1, '2024-02-28 08:20:40', 0, NULL, 0, NULL, 1),
(22420, 17303, '2', 'Board', '', '', '2019', 93.30, '', 1, '2024-02-28 08:21:45', 0, NULL, 0, NULL, 1),
(22421, 17302, '1', 'State Board ', '', '', '2016', 95.00, '', 1, '2024-02-28 08:29:44', 0, NULL, 0, NULL, 1),
(22422, 17302, '2', 'State Board ', '', '', '2018', 86.00, '', 1, '2024-02-28 08:30:05', 0, NULL, 0, NULL, 1),
(22423, 17302, '3', 'Tamilnadu Agriculture University ', '', 'B.Sc( Hons) Agriculture ', '2022', 74.50, '', 1, '2024-02-28 08:30:47', 0, NULL, 0, NULL, 1),
(22424, 17305, '3', 'Mohamedsathak college of arts and science ', '', 'Bachelor of Business Administration - BBA', '2023', 75.00, '', 1, '2024-02-28 08:40:11', 0, NULL, 0, NULL, 1),
(22425, 17306, '3', 'SRM UNIVERSITY OF SCIENCE AND TECHNOLOGY ', '', 'B.Tech CSE', '2022', 85.70, '', 1, '2024-02-28 09:27:34', 0, NULL, 0, NULL, 1),
(22426, 17306, '1', 'Sri krishnaswamy matriculation Higher secondary school ', '', '', '2018', 77.00, '', 1, '2024-02-28 09:28:58', 0, NULL, 0, NULL, 1),
(22427, 17306, '2', 'Sri krishnaswamy matriculation Higher secondary school ', '', '', '2016', 90.00, '', 1, '2024-02-28 09:30:07', 0, NULL, 0, NULL, 1),
(22428, 17307, '2', 'State Board', '', '', '2019', 51.00, '', 1, '2024-02-28 09:49:43', 0, NULL, 0, NULL, 1),
(22429, 17309, '1', 'St josephs High school ', '', '', '2015', 84.80, '', 1, '2024-02-28 10:46:19', 0, NULL, 0, NULL, 1),
(22430, 17309, '2', 'Goverment Boys Hr Sec school ponneri', '', '', '2017', 72.00, '', 1, '2024-02-28 10:46:56', 0, NULL, 0, NULL, 1),
(22431, 17309, '3', 'University Of madras', '', 'Bsc Chemistry', '2021', 67.00, '', 1, '2024-02-28 10:47:31', 0, NULL, 0, NULL, 1),
(22432, 17309, '4', 'University of madras ', '', 'Msc chemistry', '2023', 65.00, '', 1, '2024-02-28 10:47:52', 0, NULL, 0, NULL, 1),
(22433, 17310, '3', 'Madras University ', '', 'Bsc biotechnology ', '2020', 68.00, '', 1, '2024-02-28 10:59:56', 0, NULL, 0, NULL, 1),
(22434, 17311, '3', 'Madras unversity', '', 'BBA', '2021', 74.00, '', 1, '2024-02-29 04:33:13', 0, NULL, 0, NULL, 1),
(22435, 17311, '1', 'Stateboard', '', '', '2016', 84.50, '', 1, '2024-02-29 04:34:45', 0, NULL, 0, NULL, 1),
(22436, 17311, '2', 'Stateboard', '', '', '2018', 71.00, '', 1, '2024-02-29 04:35:05', 0, NULL, 0, NULL, 1),
(22437, 17312, '4', 'University of Madras ', '', 'MA Public Administration ', '2023', 75.00, '', 1, '2024-02-29 05:30:45', 0, NULL, 0, NULL, 1),
(22438, 17313, '4', 'Madurai Kamara university ', '', 'B COM CA ', '2023', 80.00, '', 1, '2024-02-29 05:49:13', 0, NULL, 0, NULL, 1),
(22439, 17314, '3', 'bharathidasan university', '', 'BCA', '2021', 76.00, '', 1, '2024-02-29 05:57:54', 0, NULL, 0, NULL, 1),
(22440, 17315, '3', 'Madurai kamrajar University ', '', 'BBA', '2022', 65.00, '', 1, '2024-02-29 06:08:28', 0, NULL, 0, NULL, 1),
(22441, 17315, '2', 'State board ', '', '', '2019', 68.00, '', 1, '2024-02-29 06:09:18', 0, NULL, 0, NULL, 1),
(22442, 17315, '1', 'State board ', '', '', '2017', 62.00, '', 1, '2024-02-29 06:09:53', 0, NULL, 0, NULL, 1),
(22443, 17316, '3', 'Madras University ', '', 'B com', '2020', 54.00, '', 1, '2024-02-29 06:20:23', 0, NULL, 0, NULL, 1),
(22444, 17317, '4', '2020', '', 'B com', '2020', 70.00, '', 1, '2024-02-29 06:21:34', 0, NULL, 0, NULL, 1),
(22445, 17318, '1', 'Government High school ', '', 'BA English literature ', '2018', 54.20, '', 1, '2024-02-29 06:35:15', 0, NULL, 0, NULL, 1),
(22446, 17318, '2', 'Government High school ', '', '', '2020', 50.00, '', 1, '2024-02-29 06:35:37', 0, NULL, 0, NULL, 1),
(22447, 17318, '3', 'Thiruvalluvar University ', '', 'BA English literature ', '2023', 70.60, '', 1, '2024-02-29 06:36:08', 0, NULL, 0, NULL, 1),
(22448, 17319, '3', 'Guru nank', '', 'B. Com general', '2023', 72.00, '', 1, '2024-02-29 06:56:44', 0, NULL, 0, NULL, 1),
(22449, 17319, '2', 'Nsn higher secondary', '', '', '2020', 76.00, '', 1, '2024-02-29 06:57:53', 0, NULL, 0, NULL, 1),
(22450, 17319, '1', 'Nsn cbse', '', '', '2018', 72.00, '', 1, '2024-02-29 06:58:40', 0, NULL, 0, NULL, 1),
(22451, 17320, '3', 'anna university', '', 'aeronautical engineering', '2023', 8.50, '', 1, '2024-02-29 09:58:42', 1, '2024-02-29 09:59:27', 0, NULL, 1),
(22452, 17320, '1', 'stateboard', '', '', '2019', 60.00, '', 1, '2024-02-29 09:59:52', 0, NULL, 0, NULL, 1),
(22453, 17322, '3', 'St Peter\'s college of engineering and technology ', '', 'BE', '2016', 59.00, '', 1, '2024-03-02 05:00:48', 0, NULL, 0, NULL, 1),
(22454, 17324, '3', 'Madras University ', '', 'BCA ', '2021', 76.60, '', 1, '2024-03-02 05:07:55', 0, NULL, 0, NULL, 1),
(22455, 17325, '3', 'Periyar University ', '', 'B.Sc ', '2023', 72.00, '', 1, '2024-03-02 05:09:26', 0, NULL, 0, NULL, 1),
(22456, 17323, '3', 'Anna University ', '', 'BE', '2019', 70.00, '', 1, '2024-03-02 05:13:00', 0, NULL, 0, NULL, 1),
(22457, 17327, '3', 'Vinayaka Mission’s Research university ', '', 'B Tech Mechanical engineering ', '2021', 85.00, '', 1, '2024-03-02 05:28:00', 0, NULL, 0, NULL, 1),
(22458, 17328, '4', 'Kalasalingam University ', '', 'MCA', '2022', 78.00, '', 1, '2024-03-02 05:30:45', 0, NULL, 0, NULL, 1),
(22459, 17328, '3', 'Vhnsn college, virudhunagar ', '', 'B.com CA', '2020', 72.00, '', 1, '2024-03-02 05:32:31', 0, NULL, 0, NULL, 1),
(22460, 17328, '2', 'State board', '', '', '2017', 72.00, '', 1, '2024-03-02 05:33:51', 0, NULL, 0, NULL, 1),
(22461, 17328, '1', 'State Board ', '', '', '2015', 65.00, '', 1, '2024-03-02 05:34:12', 0, NULL, 0, NULL, 1),
(22462, 17329, '3', 'Madras University ', '', 'BBA', '2013', 67.00, '', 1, '2024-03-02 05:38:00', 0, NULL, 0, NULL, 1),
(22463, 17326, '3', 'Madras university', '', 'B.com accounting and finance', '2023', 53.20, '', 1, '2024-03-02 05:38:10', 0, NULL, 0, NULL, 1),
(22464, 17331, '3', 'anna univer ', '', 'b.e compu science ', '2023', 7.50, '', 1, '2024-03-02 06:19:16', 0, NULL, 0, NULL, 1),
(22465, 17332, '3', 'agni college of technology', '', 'btech information technology', '2023', 84.00, '', 1, '2024-03-02 06:49:09', 0, NULL, 0, NULL, 1),
(22466, 17330, '3', 'Madras University ', '', 'B.com', '2023', 59.00, '', 1, '2024-03-02 06:52:36', 0, NULL, 0, NULL, 1),
(22467, 17333, '3', 'Vels University ', '', 'Bsc Biochemistry ', '2022', 70.00, '', 1, '2024-03-02 07:55:53', 0, NULL, 0, NULL, 1),
(22468, 17333, '2', 'State Board ', '', '', '2019', 65.00, '', 1, '2024-03-02 07:56:18', 0, NULL, 0, NULL, 1),
(22469, 17333, '1', 'State Board ', '', '', '2017', 91.00, '', 1, '2024-03-02 07:56:38', 0, NULL, 0, NULL, 1),
(22470, 17334, '3', 'Anna University ', '', 'Bachelor of engineering (mechanical)', '2018', 6.36, '', 1, '2024-03-02 09:22:56', 0, NULL, 0, NULL, 1),
(22471, 17335, '2', 'Anna University ', '', '', '2024', 6.50, '', 1, '2024-03-02 09:22:57', 0, NULL, 0, NULL, 1),
(22472, 17337, '3', 'Ethiraj college for women', '', 'Bsc mathematics with computer applications', '2020', 79.83, '', 1, '2024-03-02 01:17:54', 0, NULL, 0, NULL, 1),
(22473, 17339, '4', 'Amity University ', '', 'MBA ', '2024', 74.00, '', 1, '2024-03-03 04:27:55', 0, NULL, 0, NULL, 1),
(22474, 17342, '2', 'state board', '', '', '2012', 67.90, '', 1, '2024-03-04 04:53:46', 1, '2024-03-04 04:54:14', 0, NULL, 0),
(22475, 17342, '1', 'state board', '', '', '2012', 71.20, '', 1, '2024-03-04 04:54:38', 0, NULL, 0, NULL, 1),
(22476, 17342, '2', 'state board', '', '', '2014', 67.90, '', 1, '2024-03-04 04:55:15', 0, NULL, 0, NULL, 1),
(22477, 17342, '3', 'ms university', '', 'bsc computer science', '2019', 6.11, '', 1, '2024-03-04 04:55:56', 0, NULL, 0, NULL, 1),
(22478, 17343, '3', 'Madras University ', '', 'B.com', '2019', 58.00, '', 1, '2024-03-04 04:59:53', 0, NULL, 0, NULL, 1),
(22479, 17344, '3', 'rathinavel subramaniam college of arts and science', '', 'bsc information technology', '2021', 76.50, '', 1, '2024-03-04 05:26:26', 0, NULL, 0, NULL, 1),
(22480, 17346, '3', 'Anna University ', '', '', '2020', 72.00, '', 1, '2024-03-04 05:29:17', 0, NULL, 0, NULL, 1),
(22481, 17346, '2', 'State board ', '', '', '2016', 72.00, '', 1, '2024-03-04 05:29:37', 0, NULL, 0, NULL, 1),
(22482, 17346, '1', 'State board ', '', '', '2014', 96.00, '', 1, '2024-03-04 05:29:50', 0, NULL, 0, NULL, 1),
(22483, 17345, '3', 'Anna University', '', 'B. tech:IT', '2022', 78.80, '', 1, '2024-03-04 05:33:36', 0, NULL, 0, NULL, 1),
(22484, 17347, '4', 'Madras University ', '', 'M.com', '2020', 69.00, '', 1, '2024-03-04 05:40:32', 0, NULL, 0, NULL, 1),
(22485, 17350, '4', 'Anna University ', '', 'MBA ', '2024', 8.30, '', 1, '2024-03-04 06:26:46', 0, NULL, 0, NULL, 1),
(22486, 17349, '4', 'Anna university ', '', 'MBA', '2024', 70.00, '', 1, '2024-03-04 06:52:13', 1, '2024-03-04 06:55:08', 0, NULL, 0),
(22487, 17349, '4', 'Anna University ', '', 'MBA', '2024', 70.00, '', 1, '2024-03-04 06:52:57', 0, NULL, 0, NULL, 1),
(22488, 17351, '4', 'Anna University', '', 'MBA', '2024', 70.00, '', 1, '2024-03-04 07:02:12', 0, NULL, 0, NULL, 1),
(22489, 17352, '3', 'Mumbai university ', '', 'S.Y.B.A', '2006', 50.00, '', 1, '2024-03-04 10:58:37', 0, NULL, 0, NULL, 1),
(22490, 17355, '3', 'Women\'s Christian College ', '', 'B.sc.Information Technology', '2023', 76.80, '', 1, '2024-03-04 02:25:45', 0, NULL, 0, NULL, 1),
(22491, 17358, '3', 'Madras University ', '', 'B com ', '2021', 82.00, '', 1, '2024-03-05 03:38:12', 0, NULL, 0, NULL, 1),
(22492, 17359, '3', 'AnnaUniversity ', '', 'BE CSE ', '2023', 6.80, '', 1, '2024-03-05 04:12:45', 0, NULL, 0, NULL, 1),
(22493, 17359, '2', 'State Board ', '', '', '2018', 51.00, '', 1, '2024-03-05 04:13:47', 0, NULL, 0, NULL, 1),
(22494, 17359, '1', 'State Board ', '', '', '2016', 74.00, '', 1, '2024-03-05 04:14:22', 0, NULL, 0, NULL, 1),
(22495, 17360, '3', 'Thiruvallur Un76.17%iversity ', '', 'B.com(ca)', '2022', 76.17, '', 1, '2024-03-05 04:35:16', 0, NULL, 0, NULL, 1),
(22496, 17363, '3', 'PRIST University ', '', 'B.Tech', '2023', 8.34, '', 1, '2024-03-05 05:06:19', 0, NULL, 0, NULL, 1),
(22497, 17362, '3', 'prist university', '', 'b.tech', '2023', 8.22, '', 1, '2024-03-05 05:08:00', 0, NULL, 0, NULL, 1),
(22498, 17364, '2', 'St.ephrams.hss', '', '', '2007', 75.00, '', 1, '2024-03-05 05:09:59', 0, NULL, 0, NULL, 1),
(22499, 17361, '3', 'Manonmaniam Sundaranar University ', '', 'B.Sc', '2023', 75.40, '', 1, '2024-03-05 05:20:25', 0, NULL, 0, NULL, 1),
(22500, 17357, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 87.00, '', 1, '2024-03-05 06:07:42', 0, NULL, 0, NULL, 1),
(22501, 17365, '4', 'Anna university ', '', 'MBA ', '2024', 74.00, '', 1, '2024-03-05 06:17:49', 0, NULL, 0, NULL, 1),
(22502, 17366, '3', 'Madras University ', '', 'BCA', '2023', 62.00, '', 1, '2024-03-05 06:27:10', 0, NULL, 0, NULL, 1),
(22503, 17368, '4', 'Anna university', '', 'Mba', '2024', 7.90, '', 1, '2024-03-05 06:42:44', 0, NULL, 0, NULL, 1),
(22504, 17368, '3', 'Anna university', '', 'BE', '2022', 7.95, '', 1, '2024-03-05 06:43:23', 0, NULL, 0, NULL, 1),
(22505, 17368, '2', 'State board', '', '', '2018', 75.00, '', 1, '2024-03-05 06:44:39', 0, NULL, 0, NULL, 1),
(22506, 17368, '1', 'State board', '', '', '2016', 80.00, '', 1, '2024-03-05 06:45:10', 0, NULL, 0, NULL, 1),
(22507, 17369, '3', 'Anna University ', '', 'BE ECE', '2021', 7.76, '', 1, '2024-03-05 07:08:27', 0, NULL, 0, NULL, 1),
(22508, 17370, '3', 'meenakshi college of engineering ', '', 'mba', '2024', 84.00, '', 1, '2024-03-05 07:10:22', 0, NULL, 0, NULL, 1),
(22509, 17371, '4', 'University of Madras ', '', 'Msc Mathematics ', '2023', 83.00, '', 1, '2024-03-05 09:13:32', 0, NULL, 0, NULL, 1),
(22510, 17372, '3', 'Anna University ', '', 'B.E', '2022', 78.00, '', 1, '2024-03-05 09:42:39', 0, NULL, 0, NULL, 1),
(22511, 17374, '4', 'Madras University ', '', 'M.com', '2023', 60.00, '', 1, '2024-03-05 12:38:16', 0, NULL, 0, NULL, 1),
(22512, 17374, '3', 'Madras University ', '', 'B.com', '2020', 58.00, '', 1, '2024-03-05 12:38:57', 0, NULL, 0, NULL, 1),
(22513, 17374, '2', 'St.joseph matric higher secondary school ', '', '', '2017', 68.00, '', 1, '2024-03-05 12:39:34', 0, NULL, 0, NULL, 1),
(22514, 17377, '3', 'kongu arts and science college', '', 'computer science', '2020', 60.00, '', 1, '2024-03-06 04:19:51', 0, NULL, 0, NULL, 1),
(22515, 17377, '2', 'kathiravan matriculation higher secondary school', '', '', '2017', 60.00, '', 1, '2024-03-06 04:21:04', 0, NULL, 0, NULL, 1),
(22516, 17377, '1', 'bharath matriculation school', '', '', '2015', 85.00, '', 1, '2024-03-06 04:21:26', 0, NULL, 0, NULL, 1),
(22517, 17378, '3', 'Thiruvalluvaruniversity', '', 'Bsc physivs', '2021', 75.00, '', 1, '2024-03-06 04:45:30', 0, NULL, 0, NULL, 1),
(22518, 17379, '4', 'Bharathiyar university ', '', 'B com', '2020', 70.00, '', 1, '2024-03-06 05:08:03', 0, NULL, 0, NULL, 1),
(22519, 17376, '4', 'Madarsa university ', '', 'B.com,MBA', '2022', 86.00, '', 1, '2024-03-06 05:12:54', 0, NULL, 0, NULL, 1),
(22520, 17376, '4', 'Madarsa University ', '', 'B.com, MBA ', '2022', 86.00, '', 1, '2024-03-06 05:13:34', 0, NULL, 0, NULL, 1),
(22521, 17376, '3', 'Madars University ', '', 'B.com', '2023', 86.00, '', 1, '2024-03-06 05:14:19', 0, NULL, 0, NULL, 1),
(22522, 17376, '4', 'Madras University ', '', 'MBA ', '2023', 86.00, '', 1, '2024-03-06 05:15:16', 0, NULL, 0, NULL, 1),
(22523, 17380, '3', 'Anna University ', '', 'B.E EEE', '2018', 6.97, '', 1, '2024-03-06 05:21:30', 0, NULL, 0, NULL, 1),
(22524, 17381, '3', 'Gnanamani college of technology (Afflicted to Anna University)', '', 'BE CSE ', '2023', 80.40, '', 1, '2024-03-06 05:27:17', 0, NULL, 0, NULL, 1),
(22525, 17381, '1', 'Kamarajar hr sec school,State board', '', '', '2017', 90.40, '', 1, '2024-03-06 05:28:28', 0, NULL, 0, NULL, 1),
(22526, 17381, '2', 'Kamarajar hr sec school ', '', '', '2019', 68.00, '', 1, '2024-03-06 05:28:57', 0, NULL, 0, NULL, 1),
(22527, 17385, '3', 'University of Madras', '', 'BCA', '2019', 90.00, '', 1, '2024-03-06 06:10:04', 0, NULL, 0, NULL, 1),
(22528, 17382, '1', 'State board', '', '', '2016', 85.00, '', 1, '2024-03-06 06:49:22', 1, '2024-03-06 06:49:44', 0, NULL, 1),
(22529, 17382, '2', 'State board', '', '', '2018', 60.00, '', 1, '2024-03-06 06:50:08', 0, NULL, 0, NULL, 1),
(22530, 17382, '3', 'Anna university', '', 'B. Tech IT', '2022', 85.00, '', 1, '2024-03-06 06:51:23', 0, NULL, 0, NULL, 1),
(22531, 17387, '3', 'Universit of madras', '', 'bca', '2022', 76.00, '', 112, '2024-03-06 12:26:02', 112, '2024-03-06 12:26:22', 0, NULL, 1),
(22532, 17384, '1', 'State board', '', '', '2016', 76.00, '', 1, '2024-03-06 06:57:14', 0, NULL, 0, NULL, 1),
(22533, 17384, '2', 'State Board', '', '', '2018', 65.00, '', 1, '2024-03-06 06:57:34', 0, NULL, 0, NULL, 1),
(22534, 17384, '3', 'Anna University', '', 'BE ECE', '2022', 83.00, '', 1, '2024-03-06 06:58:20', 0, NULL, 0, NULL, 1),
(22535, 17386, '3', 'Anna University', '', 'BE-ECE', '2023', 80.00, '', 1, '2024-03-06 07:18:04', 0, NULL, 0, NULL, 1),
(22536, 17388, '4', 'anna university', '', 'm.sc electronic media', '2023', 74.00, '', 1, '2024-03-06 07:26:34', 0, NULL, 0, NULL, 1),
(22537, 17383, '3', 'university of madras', '', 'bca', '2022', 76.00, '', 1, '2024-03-06 07:38:57', 0, NULL, 0, NULL, 1),
(22538, 17389, '3', 'MAM college of engineering and technology ', '', 'Bachelor of Engineering', '2019', 7.20, '', 1, '2024-03-06 08:00:31', 0, NULL, 0, NULL, 1),
(22539, 17390, '3', 'Madurai Kamaraj University', '', 'B.Sc (IT)', '2019', 65.00, '', 1, '2024-03-06 08:29:13', 0, NULL, 0, NULL, 1),
(22540, 17390, '4', 'Madurai Kamaraj University ', '', 'MCA ', '2022', 78.00, '', 1, '2024-03-06 08:30:05', 0, NULL, 0, NULL, 1),
(22541, 17391, '3', 'Bharathidasan', '', 'B.com computer Applications', '2018', 72.00, '', 1, '2024-03-06 08:38:50', 0, NULL, 0, NULL, 1),
(22542, 17348, '3', 'vit university', '', 'Bachelor of Business Administration', '2023', 8.54, '', 1, '2024-03-06 01:03:56', 0, NULL, 0, NULL, 1),
(22543, 17348, '5', 'web d school', '', 'advanced ui ux', '2024', 100.00, '', 1, '2024-03-06 01:04:55', 1, '2024-03-06 01:05:05', 0, NULL, 1),
(22544, 17393, '4', 'University of Madras ', '', 'MBA HRM', '2024', 87.00, '', 1, '2024-03-07 05:11:32', 0, NULL, 0, NULL, 1),
(22545, 17394, '3', 'Annamalai University ', '', 'B Com General ', '2021', 70.00, '', 1, '2024-03-07 05:12:17', 0, NULL, 0, NULL, 1),
(22546, 17396, '4', 'Madras university', '', 'MBA', '2024', 65.00, '', 1, '2024-03-07 05:36:12', 0, NULL, 0, NULL, 1),
(22547, 17395, '3', 'Vel tech deemed University ', '', 'B .tech.computer science', '2023', 80.30, '', 1, '2024-03-07 05:41:54', 0, NULL, 0, NULL, 1),
(22548, 17397, '3', 'Bharathidasan University ', '', 'B.com', '2019', 65.00, '', 1, '2024-03-07 05:46:26', 0, NULL, 0, NULL, 1),
(22549, 17400, '3', 'Scott Christian College ', '', 'Bsc', '2023', 60.00, '', 1, '2024-03-07 05:47:35', 0, NULL, 0, NULL, 1),
(22550, 17399, '4', 'Madras university ', '', 'M.sc.(Computer science)', '2023', 75.00, '', 1, '2024-03-07 05:49:15', 0, NULL, 0, NULL, 1),
(22551, 17398, '3', 'Bharathidasan', '', 'Bcom', '2018', 67.00, '', 1, '2024-03-07 05:51:36', 0, NULL, 0, NULL, 1),
(22552, 17401, '4', 'University of madras', '', ' MBA (System Management) ', '2024', 73.00, '', 1, '2024-03-07 06:05:15', 0, NULL, 0, NULL, 1),
(22553, 17375, '3', 'bharthiyar univer ', '', 'bsc biochemistry', '2021', 69.00, '', 1, '2024-03-07 06:14:37', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22554, 17375, '4', 'vels university', '', 'msc biochemistry', '2023', 70.00, '', 1, '2024-03-07 06:15:12', 0, NULL, 0, NULL, 1),
(22555, 17402, '1', 'Sri sampurna vidyalayam', '', '', '2015', 94.50, '', 1, '2024-03-07 06:19:19', 0, NULL, 0, NULL, 1),
(22556, 17402, '2', 'Fatima Higher Secondary School', '', '', '2018', 79.40, '', 1, '2024-03-07 06:19:53', 0, NULL, 0, NULL, 1),
(22557, 17403, '4', 'University of madras', '', '(MBA) financial management ', '2025', 80.00, '', 1, '2024-03-07 06:45:57', 0, NULL, 0, NULL, 1),
(22558, 17404, '3', 'Thiruvalluvar university Vellore ', '', 'Bsc, computer science ', '2023', 80.00, '', 1, '2024-03-07 07:21:22', 0, NULL, 0, NULL, 1),
(22559, 17405, '3', 'Anna University ', '', 'B.Tech  (Information technology )', '2023', 81.00, '', 1, '2024-03-07 07:29:11', 0, NULL, 0, NULL, 1),
(22560, 17406, '3', 'Anna University ', '', 'B.Tech, information Technology ', '2023', 87.00, '', 1, '2024-03-07 07:30:54', 0, NULL, 0, NULL, 1),
(22561, 17407, '3', 'Madras University ', '', 'B.sc', '2015', 71.00, '', 1, '2024-03-07 09:26:08', 0, NULL, 0, NULL, 1),
(22562, 17408, '3', 'University of madras', '', 'B. Com', '2021', 69.00, '', 1, '2024-03-07 01:42:32', 0, NULL, 0, NULL, 1),
(22563, 17409, '4', 'Anna University ', '', 'MBA', '2024', 8.80, '', 1, '2024-03-07 01:55:05', 0, NULL, 0, NULL, 1),
(22564, 17410, '3', 'Madras University ', '', 'B.com ', '2015', 61.00, '', 1, '2024-03-08 03:41:18', 0, NULL, 0, NULL, 1),
(22565, 17411, '1', 'State board of secondary education ', '', '', '2017', 97.80, '', 1, '2024-03-08 03:48:27', 0, NULL, 0, NULL, 1),
(22566, 17411, '2', 'State board of secondary education ', '', '', '2019', 89.10, '', 1, '2024-03-08 03:49:14', 0, NULL, 0, NULL, 1),
(22567, 17411, '3', 'ANNA UNIVERSITY ', '', 'B.E', '2023', 89.70, '', 1, '2024-03-08 03:49:34', 0, NULL, 0, NULL, 1),
(22568, 17412, '1', 'State board', '', '', '2011', 91.50, '', 1, '2024-03-08 04:24:17', 0, NULL, 0, NULL, 1),
(22569, 17412, '2', 'State board', '', '', '2013', 87.25, '', 1, '2024-03-08 04:25:29', 0, NULL, 0, NULL, 1),
(22570, 17412, '3', 'Anna university', '', 'Bachelor of engineering', '2017', 7.26, '', 1, '2024-03-08 04:26:18', 0, NULL, 0, NULL, 1),
(22571, 17414, '3', 'Arulmigu Kalasalingam College of Arts and Science ', '', 'B.Sc(Computer Science)', '2023', 79.00, '', 1, '2024-03-08 04:27:13', 0, NULL, 0, NULL, 1),
(22572, 17413, '4', 'Anna university', '', 'MCA', '2023', 65.00, '', 1, '2024-03-08 04:27:33', 0, NULL, 0, NULL, 1),
(22573, 17415, '3', 'Madras University', '', 'bba', '2023', 70.00, '', 1, '2024-03-08 04:49:56', 0, NULL, 0, NULL, 1),
(22574, 17417, '1', 'Stateboard', '', '', '2015', 69.00, '', 1, '2024-03-08 05:14:46', 1, '2024-03-08 05:15:29', 0, NULL, 0),
(22575, 17417, '2', 'State board', '', '', '2017', 53.00, '', 1, '2024-03-08 05:15:04', 1, '2024-03-08 05:15:26', 0, NULL, 0),
(22576, 17417, '3', 'Bharath university ', '', 'Btech mechanical engineering ', '2022', 74.30, '', 1, '2024-03-08 05:15:59', 0, NULL, 0, NULL, 1),
(22577, 17420, '2', 'Venkateswara University ', '', '', '2019', 87.00, '', 1, '2024-03-08 05:25:29', 0, NULL, 0, NULL, 1),
(22578, 17419, '3', 'Anna University ', '', 'B.E', '2020', 72.30, '', 1, '2024-03-08 05:26:35', 0, NULL, 0, NULL, 1),
(22579, 17421, '4', 'Alagappa University ', '', 'M.A.Economics', '2023', 82.00, '', 1, '2024-03-08 05:31:51', 0, NULL, 0, NULL, 1),
(22580, 17416, '3', 'Periyar university', '', 'BA English', '2020', 6.95, '', 1, '2024-03-08 05:32:15', 0, NULL, 0, NULL, 1),
(22581, 17421, '3', 'Manonmaniam Sundharanar University ', '', 'B.A.Economics', '2021', 80.00, '', 1, '2024-03-08 05:32:41', 0, NULL, 0, NULL, 1),
(22582, 17418, '3', 'Mother Theresa University ', '', 'B.Sc(Computer Science)', '2022', 67.00, '', 1, '2024-03-08 05:39:50', 0, NULL, 0, NULL, 1),
(22583, 17422, '3', 'Madras University ', '', 'B.com general', '2023', 64.00, '', 1, '2024-03-08 05:50:45', 0, NULL, 0, NULL, 1),
(22584, 17423, '3', 'University of Madras ', '', 'B.sc physics ', '2020', 60.00, '', 1, '2024-03-08 05:54:55', 0, NULL, 0, NULL, 1),
(22585, 17424, '1', 'State board', '', '', '2014', 96.00, '', 1, '2024-03-08 05:55:13', 0, NULL, 0, NULL, 1),
(22586, 17424, '2', 'State board', '', '', '2016', 82.00, '', 1, '2024-03-08 05:55:37', 0, NULL, 0, NULL, 1),
(22587, 17424, '3', 'Anna University', '', 'BE/ECE', '2020', 70.00, '', 1, '2024-03-08 05:56:42', 0, NULL, 0, NULL, 1),
(22588, 17426, '4', 'Dr. Mgr university', '', 'Mba-hrm', '2024', 7.50, '', 1, '2024-03-08 06:37:16', 0, NULL, 0, NULL, 1),
(22589, 17425, '3', 'Madras university', '', 'BA.Graduate', '2020', 70.00, '', 1, '2024-03-08 06:51:30', 0, NULL, 0, NULL, 1),
(22590, 17428, '4', 'Anna University ', '', 'mBA', '2024', 70.00, '', 1, '2024-03-08 07:04:00', 0, NULL, 0, NULL, 1),
(22591, 17427, '3', 'Madras university', '', 'BCA', '2019', 85.00, '', 1, '2024-03-08 07:04:24', 0, NULL, 0, NULL, 1),
(22592, 17429, '3', 'madras university', '', 'BCA', '2020', 75.00, '', 1, '2024-03-08 07:17:13', 1, '2024-03-08 07:38:27', 0, NULL, 1),
(22593, 17430, '3', 'Manonmaniyam university', '', 'BBA', '2023', 73.00, '', 1, '2024-03-08 07:33:31', 0, NULL, 0, NULL, 1),
(22594, 17431, '3', 'KSR COLLEGE OF ARTS AND SCIENCE ', '', 'BCA', '2023', 75.00, '', 1, '2024-03-08 09:16:23', 1, '2024-03-08 09:16:45', 0, NULL, 1),
(22595, 17432, '4', 'Hindustan University ', '', 'MCA', '2024', 7.00, '', 1, '2024-03-08 10:52:38', 0, NULL, 0, NULL, 1),
(22596, 17432, '3', 'Madras University ', '', 'Bsc computer science ', '2022', 7.90, '', 1, '2024-03-08 10:53:00', 0, NULL, 0, NULL, 1),
(22597, 17433, '5', 'Annamalai University ', '', 'Diploma In visual Media', '2014', 60.00, '', 1, '2024-03-08 11:24:23', 0, NULL, 0, NULL, 1),
(22598, 17435, '3', 'Periyar maniammai Institute of science and technology', '', 'BCA', '2020', 5.65, '', 1, '2024-03-08 12:35:31', 0, NULL, 0, NULL, 1),
(22599, 17436, '3', 'Anna University', '', 'B.E', '2021', 78.00, '', 1, '2024-03-08 01:43:06', 0, NULL, 0, NULL, 1),
(22600, 17437, '3', 'Anna University ', '', 'B.Tech IT', '2022', 75.00, '', 1, '2024-03-09 03:57:09', 0, NULL, 0, NULL, 1),
(22601, 17437, '2', 'Tvrk Hindu vidhalaya hr secschool srivaikundam ', '', '', '2018', 60.00, '', 1, '2024-03-09 03:57:39', 1, '2024-03-09 03:58:23', 0, NULL, 1),
(22602, 17437, '1', 'Tvrk Hindu vidhalaya hr secschool srivaikundam ', '', '', '2016', 75.00, '', 1, '2024-03-09 03:58:50', 0, NULL, 0, NULL, 1),
(22603, 17439, '3', 'Thiruvalluvar college of engineering and technology ', '', 'BE-Mechanical ', '2019', 68.00, '', 1, '2024-03-09 04:04:23', 0, NULL, 0, NULL, 1),
(22604, 17438, '1', 'STATE BOARD', '', '', '2013', 90.60, '', 1, '2024-03-09 04:10:08', 0, NULL, 0, NULL, 1),
(22605, 17438, '2', 'STATE BOARD', '', '', '2015', 87.80, '', 1, '2024-03-09 04:10:36', 0, NULL, 0, NULL, 1),
(22606, 17438, '3', 'ANNA UNIVERSITY', '', 'B.E MECHANICAL ENGINEERING', '2019', 69.50, '', 1, '2024-03-09 04:11:13', 0, NULL, 0, NULL, 1),
(22607, 17443, '3', 'Sivet college', '', 'B. Com general', '2021', 71.00, '', 1, '2024-03-09 04:31:33', 0, NULL, 0, NULL, 1),
(22608, 17442, '3', 'Madras University ', '', 'BCA ', '2022', 75.00, '', 1, '2024-03-09 04:32:32', 0, NULL, 0, NULL, 1),
(22609, 17441, '3', 'Crescent college ', '', 'Bsc computer science ', '2023', 60.00, '', 1, '2024-03-09 04:34:05', 1, '2024-03-09 04:35:49', 0, NULL, 0),
(22610, 17445, '3', 'Crescent Institute of Science and technology', '', 'Bachelor of computer Application (Cloud technology', '2023', 8.30, '', 1, '2024-03-09 04:35:23', 0, NULL, 0, NULL, 1),
(22611, 17441, '3', 'Crescent college ', '', 'Bsc computer science ', '2023', 60.00, '', 1, '2024-03-09 04:36:32', 0, NULL, 0, NULL, 1),
(22612, 17444, '3', 'University of Madras ', '', 'Bsc', '2023', 83.00, '', 1, '2024-03-09 04:39:51', 0, NULL, 0, NULL, 1),
(22613, 17447, '4', 'Tamilnadu Agricultural University ', '', 'MBA', '2022', 70.00, '', 1, '2024-03-09 04:40:30', 0, NULL, 0, NULL, 1),
(22614, 17446, '5', 'Government of Tamil Nadu department of technical education ', '', 'Diploma ', '2020', 79.00, '', 1, '2024-03-09 04:49:59', 0, NULL, 0, NULL, 1),
(22615, 17448, '3', 'Affilated by Madras university', '', 'Bsc ', '2019', 75.60, '', 1, '2024-03-09 04:50:06', 0, NULL, 0, NULL, 1),
(22616, 17449, '3', 'Madras University ', '', 'Bsc', '2023', 82.00, '', 1, '2024-03-09 04:52:37', 0, NULL, 0, NULL, 1),
(22617, 17450, '3', 'University', '', 'BE', '2022', 76.00, '', 1, '2024-03-09 05:14:12', 0, NULL, 0, NULL, 1),
(22618, 17450, '2', 'State Board', '', '', '2018', 77.00, '', 1, '2024-03-09 05:15:10', 0, NULL, 0, NULL, 1),
(22619, 17450, '1', 'State board', '', '', '2016', 88.00, '', 1, '2024-03-09 05:15:29', 0, NULL, 0, NULL, 1),
(22620, 17451, '3', 'Manonmaniyam Sundaranar university', '', 'Bsc(cs)', '2023', 70.00, '', 1, '2024-03-09 06:29:52', 0, NULL, 0, NULL, 1),
(22621, 17440, '3', 'Madras University ', '', 'Bsc computer science ', '2022', 70.00, '', 1, '2024-03-09 06:36:49', 0, NULL, 0, NULL, 1),
(22622, 17452, '4', 'Karpagam University ', '', 'MCA', '2023', 78.00, '', 1, '2024-03-09 08:03:11', 0, NULL, 0, NULL, 1),
(22623, 17452, '4', 'Karpagam University ', '', 'MCA', '2023', 78.00, '', 1, '2024-03-09 08:04:14', 1, '2024-03-09 08:04:23', 0, NULL, 0),
(22624, 17454, '4', 'Manonmaniam sundaranar University ', '', 'MCA', '2023', 76.00, '', 1, '2024-03-09 08:04:28', 0, NULL, 0, NULL, 1),
(22625, 17453, '3', 'Tiruvalluvar', '', 'BCA', '2023', 65.00, '', 1, '2024-03-09 08:20:22', 0, NULL, 0, NULL, 1),
(22626, 17455, '4', 'Madras university', '', 'MSc(Mathematics)', '2021', 80.00, '', 1, '2024-03-09 09:08:15', 0, NULL, 0, NULL, 1),
(22627, 17456, '3', 'Apollo Engineering College ', '', 'Mechanical Engineer ', '2022', 8.18, '', 1, '2024-03-09 09:20:26', 0, NULL, 0, NULL, 1),
(22628, 17457, '1', 'State board ', '', '', '2017', 87.60, '', 1, '2024-03-09 09:24:29', 0, NULL, 0, NULL, 1),
(22629, 17457, '2', 'State board ', '', '', '2019', 74.00, '', 1, '2024-03-09 09:24:48', 0, NULL, 0, NULL, 1),
(22630, 17457, '3', 'Anna University ', '', 'B.E- CSE', '2023', 84.20, '', 1, '2024-03-09 09:25:14', 0, NULL, 0, NULL, 1),
(22631, 17460, '3', 'Loyola institute of technology', '', 'B.E (Civil)', '2018', 65.00, '', 1, '2024-03-10 07:28:45', 0, NULL, 0, NULL, 1),
(22632, 17461, '3', 'madras university', '', 'bca', '2011', 65.00, '', 1, '2024-03-10 01:57:26', 0, NULL, 0, NULL, 1),
(22633, 17462, '3', 'Jawaharlal technogical University kakinada', '', '', '2023', 77.00, '', 1, '2024-03-11 03:35:36', 0, NULL, 0, NULL, 1),
(22634, 17463, '5', 'MS University ', '', 'Diploma in Civil engineering ', '2019', 77.00, '', 1, '2024-03-11 04:32:18', 0, NULL, 0, NULL, 1),
(22635, 17465, '3', 'Anna University ', '', 'B.E -EEE', '2023', 83.40, '', 1, '2024-03-11 04:33:06', 0, NULL, 0, NULL, 1),
(22636, 17465, '2', 'Stateboard', '', '', '2019', 76.80, '', 1, '2024-03-11 04:33:31', 0, NULL, 0, NULL, 1),
(22637, 17465, '1', 'Stateboard ', '', '', '2017', 92.20, '', 1, '2024-03-11 04:33:51', 0, NULL, 0, NULL, 1),
(22638, 17469, '3', 'Pondicherry University ', '', 'B.tech', '2019', 78.85, '', 1, '2024-03-11 04:36:18', 0, NULL, 0, NULL, 1),
(22639, 17470, '3', 'Anna University ', '', 'BE', '2023', 8.19, '', 1, '2024-03-11 04:39:26', 0, NULL, 0, NULL, 1),
(22640, 17471, '3', 'Thiruvalluvar University ', '', 'B.com', '2023', 70.15, '', 1, '2024-03-11 04:46:15', 0, NULL, 0, NULL, 1),
(22641, 17464, '3', 'Anna university ', '', 'B.Tech', '2023', 7.63, '', 1, '2024-03-11 04:50:46', 0, NULL, 0, NULL, 1),
(22642, 17472, '5', 'DOTE ', '', 'DECE ', '2020', 78.00, '', 1, '2024-03-11 04:58:44', 0, NULL, 0, NULL, 1),
(22643, 17473, '5', 'Bhart sevak Samaj', '', 'Diploma Visual arts and cinema edition ', '2020', 89.00, '', 1, '2024-03-11 04:59:11', 0, NULL, 0, NULL, 1),
(22644, 17475, '1', 'Tamilnadu state board ', '', '', '2017', 82.00, '', 1, '2024-03-11 05:01:39', 0, NULL, 0, NULL, 1),
(22645, 17475, '2', 'Tamilnadu state board ', '', '', '2019', 52.00, '', 1, '2024-03-11 05:01:59', 0, NULL, 0, NULL, 1),
(22646, 17475, '3', 'Anna University ', '', 'B.tech IT', '2023', 79.80, '', 1, '2024-03-11 05:02:32', 0, NULL, 0, NULL, 1),
(22647, 17474, '3', 'Anna University ', '', 'B Tech Information Technology ', '2023', 77.10, '', 1, '2024-03-11 05:02:44', 0, NULL, 0, NULL, 1),
(22648, 17474, '2', 'State board', '', '', '2019', 68.00, '', 1, '2024-03-11 05:03:56', 0, NULL, 0, NULL, 1),
(22649, 17474, '1', 'State board ', '', '', '2017', 89.00, '', 1, '2024-03-11 05:04:14', 1, '2024-03-11 05:04:31', 0, NULL, 1),
(22650, 17477, '3', 'Anna university', '', 'BE CSE', '2020', 63.00, '', 1, '2024-03-11 05:07:34', 0, NULL, 0, NULL, 1),
(22651, 17476, '3', 'Anna University ', '', 'B.E-CSE', '2023', 85.00, '', 1, '2024-03-11 05:09:27', 0, NULL, 0, NULL, 1),
(22652, 17479, '3', 'Panimalar Engineering College ', '', 'Btech artificial intelligence and data science ', '2024', 89.00, '', 1, '2024-03-11 05:12:06', 0, NULL, 0, NULL, 1),
(22653, 17479, '2', 'Tamilnadu state board ', '', '', '2020', 70.00, '', 1, '2024-03-11 05:12:57', 0, NULL, 0, NULL, 1),
(22654, 17479, '1', 'Cbse', '', '', '2018', 67.00, '', 1, '2024-03-11 05:13:13', 0, NULL, 0, NULL, 1),
(22655, 17478, '3', 'Madras University ', '', 'B.COM', '2022', 80.50, '', 1, '2024-03-11 05:15:10', 0, NULL, 0, NULL, 1),
(22656, 17478, '1', 'State board', '', '', '2017', 70.50, '', 1, '2024-03-11 05:15:30', 0, NULL, 0, NULL, 1),
(22657, 17478, '2', 'State board ', '', '', '2019', 50.90, '', 1, '2024-03-11 05:15:50', 0, NULL, 0, NULL, 1),
(22658, 17480, '3', 'Madras University ', '', 'B.com', '2022', 87.00, '', 1, '2024-03-11 05:16:33', 0, NULL, 0, NULL, 1),
(22659, 17483, '3', 'Women\'s Christian College ', '', 'BCA ', '2023', 6.90, '', 1, '2024-03-11 05:17:00', 0, NULL, 0, NULL, 1),
(22660, 17480, '1', 'Madras University ', '', '', '2017', 70.00, '', 1, '2024-03-11 05:17:19', 0, NULL, 0, NULL, 1),
(22661, 17482, '1', 'State Board of Tamil Nadu', '', '', '2016', 91.00, '', 1, '2024-03-11 05:17:21', 0, NULL, 0, NULL, 1),
(22662, 17480, '2', 'Madras University ', '', '', '2019', 80.00, '', 1, '2024-03-11 05:17:38', 0, NULL, 0, NULL, 1),
(22663, 17483, '2', 'Rosary Matriculation higher Secondary School ', '', '', '2020', 76.00, '', 1, '2024-03-11 05:17:42', 0, NULL, 0, NULL, 1),
(22664, 17483, '1', 'Rosary Matriculation higher Secondary School ', '', '', '2018', 73.00, '', 1, '2024-03-11 05:18:15', 0, NULL, 0, NULL, 1),
(22665, 17482, '2', 'State Board Of Tamil Nadu', '', '', '2018', 77.00, '', 1, '2024-03-11 05:19:33', 0, NULL, 0, NULL, 1),
(22666, 17484, '3', 'Meenakshi academy of higher education and research ', '', 'B.com', '2021', 67.00, '', 1, '2024-03-11 05:20:15', 0, NULL, 0, NULL, 1),
(22667, 17482, '3', 'KR College of arts and science Kovil patti', '', 'BSc', '2021', 88.00, '', 1, '2024-03-11 05:20:42', 0, NULL, 0, NULL, 1),
(22668, 17482, '4', 'Bharathiar University ', '', 'MCA', '2023', 85.00, '', 1, '2024-03-11 05:21:10', 0, NULL, 0, NULL, 1),
(22669, 17481, '3', 'Anna University ', '', 'Computer science ', '2024', 72.00, '', 1, '2024-03-11 05:27:26', 0, NULL, 0, NULL, 1),
(22670, 17485, '5', 'Murugappa Polytechnic College ', '', 'Electrical and Electronics Engineering ', '2020', 80.00, '', 1, '2024-03-11 05:28:39', 0, NULL, 0, NULL, 1),
(22671, 17468, '3', 'Autonomous ', '', 'B.com', '2018', 60.00, '', 1, '2024-03-11 05:44:23', 0, NULL, 0, NULL, 1),
(22672, 17488, '3', 'Bharathiyara university', '', 'Bsc cs ', '2023', 66.00, '', 1, '2024-03-11 05:45:31', 0, NULL, 0, NULL, 1),
(22673, 17490, '3', 'Madras University ', '', 'B.sc csc', '2022', 7.30, '', 1, '2024-03-11 05:46:45', 0, NULL, 0, NULL, 1),
(22674, 17467, '3', 'Anna University ', '', 'B.tech', '2023', 84.00, '', 1, '2024-03-11 05:46:54', 0, NULL, 0, NULL, 1),
(22675, 17487, '4', 'Dr.M.G.R University ', '', 'MCA', '2023', 82.00, '', 1, '2024-03-11 05:47:58', 0, NULL, 0, NULL, 1),
(22676, 17487, '3', 'Madras University ', '', 'B.SC COMPUTER SCIENCE', '2021', 84.00, '', 1, '2024-03-11 05:49:01', 0, NULL, 0, NULL, 1),
(22677, 17487, '2', 'State Board', '', '', '2018', 73.00, '', 1, '2024-03-11 05:49:33', 0, NULL, 0, NULL, 1),
(22678, 17487, '1', 'State Board', '', '', '2016', 90.00, '', 1, '2024-03-11 05:50:22', 0, NULL, 0, NULL, 1),
(22679, 17489, '3', 'Kamaraj University Madurai ', '', 'Bachelor of Computer Application ', '2020', 65.00, '', 1, '2024-03-11 05:55:41', 0, NULL, 0, NULL, 1),
(22680, 17492, '3', 'Alagappa University ', '', 'Bsc computer science ', '2020', 85.00, '', 1, '2024-03-11 06:11:28', 0, NULL, 0, NULL, 1),
(22681, 17491, '3', 'Madras university ', '', 'B.com', '2022', 74.00, '', 1, '2024-03-11 06:17:57', 0, NULL, 0, NULL, 1),
(22682, 17495, '3', 'Madras University', '', 'B.com', '2023', 75.00, '', 1, '2024-03-11 06:34:08', 0, NULL, 0, NULL, 1),
(22683, 0, '4', 'Bharathidasan University ', '', 'MBA', '2023', 72.00, '', 1, '2024-03-11 06:34:46', 1, '2024-03-11 07:25:51', 0, NULL, 0),
(22684, 17494, '3', 'Bharathidasan University', '', 'Bachelor of Science in Computer Science', '2020', 60.00, '', 1, '2024-03-11 06:36:07', 0, NULL, 0, NULL, 1),
(22685, 17493, '4', 'Bharathidasan University ', '', 'MBA', '2023', 72.00, '', 1, '2024-03-11 06:38:26', 0, NULL, 0, NULL, 1),
(22686, 17493, '4', 'Bharathidasan University ', '', 'MBA', '2023', 72.00, '', 1, '2024-03-11 06:39:02', 1, '2024-03-11 06:39:10', 0, NULL, 0),
(22687, 17493, '3', 'Anna University ', '', 'BE', '2021', 74.00, '', 1, '2024-03-11 06:39:35', 0, NULL, 0, NULL, 1),
(22688, 17496, '3', 'Sathyabama university', '', 'B.E CSE', '2023', 80.00, '', 1, '2024-03-11 06:43:44', 0, NULL, 0, NULL, 1),
(22689, 17498, '3', 'University ', '', 'B.A Economics', '2020', 69.00, '', 1, '2024-03-11 07:26:24', 1, '2024-03-11 07:26:36', 0, NULL, 0),
(22690, 17498, '3', 'University ', '', 'B.A Economics', '2020', 69.00, '', 1, '2024-03-11 07:27:33', 0, NULL, 0, NULL, 1),
(22691, 17497, '1', 'State board ', '', '', '2016', 7.90, '', 1, '2024-03-11 07:45:30', 0, NULL, 0, NULL, 1),
(22692, 17497, '2', 'State board ', '', '', '2018', 7.90, '', 1, '2024-03-11 07:46:05', 0, NULL, 0, NULL, 1),
(22693, 17497, '3', 'Manonmaniam Sundaranar University ', '', 'BBA', '2022', 7.20, '', 1, '2024-03-11 07:46:33', 0, NULL, 0, NULL, 1),
(22694, 17497, '4', 'Anna University ', '', 'MBA ', '2024', 6.90, '', 1, '2024-03-11 07:47:22', 0, NULL, 0, NULL, 1),
(22695, 17499, '3', 'Thiruthangal Nadar college of arts and science ', '', 'B.com', '2023', 71.00, '', 1, '2024-03-11 08:19:45', 0, NULL, 0, NULL, 1),
(22696, 17500, '1', 'Anna University ', '', '', '2023', 75.00, '', 1, '2024-03-11 09:11:36', 1, '2024-03-11 09:11:53', 0, NULL, 0),
(22697, 17500, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2023', 73.00, '', 1, '2024-03-11 09:12:30', 0, NULL, 0, NULL, 1),
(22698, 17501, '3', 'Anna University ', '', 'BE', '2023', 87.60, '', 1, '2024-03-11 09:28:50', 0, NULL, 0, NULL, 1),
(22699, 17501, '2', 'HSC', '', '', '2019', 63.50, '', 1, '2024-03-11 09:29:06', 0, NULL, 0, NULL, 1),
(22700, 17501, '1', 'SSLC', '', '', '2017', 90.80, '', 1, '2024-03-11 09:29:24', 0, NULL, 0, NULL, 1),
(22701, 17486, '3', 'KSR INSTITUTE FOR ENGINEERING AND TECHNOLOGY', '', 'BE TECH', '2021', 0.00, '', 112, '2024-03-11 03:12:28', 0, NULL, 0, NULL, 1),
(22702, 17502, '1', 'Matriculation', '', 'B.Sc physics', '2016', 87.60, '', 1, '2024-03-11 09:53:07', 1, '2024-03-11 09:53:36', 0, NULL, 0),
(22703, 17502, '1', 'Matriculation', '', '', '2016', 87.60, '', 1, '2024-03-11 09:54:01', 0, NULL, 0, NULL, 1),
(22704, 17502, '2', 'Matriculation', '', '', '2018', 77.83, '', 1, '2024-03-11 09:54:25', 0, NULL, 0, NULL, 1),
(22705, 17502, '3', 'MS university', '', 'B.Sc physics', '2021', 89.00, '', 1, '2024-03-11 09:54:56', 0, NULL, 0, NULL, 1),
(22706, 17504, '3', 'Bangalore City University ', '', 'Bcom ', '2023', 7.50, '', 1, '2024-03-11 10:36:09', 0, NULL, 0, NULL, 1),
(22707, 17505, '3', 'VTU', '', 'BE', '2021', 70.00, '', 1, '2024-03-11 10:38:23', 0, NULL, 0, NULL, 1),
(22708, 17506, '3', 'Anna University ', '', 'B.e', '2023', 7.50, '', 1, '2024-03-11 12:05:50', 0, NULL, 0, NULL, 1),
(22709, 17503, '4', ' Sri Sai Institute of Engineering and technology', '', 'mba', '2018', 65.00, '', 1, '2024-03-11 12:44:42', 0, NULL, 0, NULL, 1),
(22710, 17509, '3', 'Swami dayananda college arts science ', '', 'BBA', '2022', 71.00, '', 1, '2024-03-11 02:14:18', 0, NULL, 0, NULL, 1),
(22711, 17510, '3', 'Women\'s Christian college ', '', 'B.com general ', '2023', 78.00, '', 1, '2024-03-11 04:09:22', 0, NULL, 0, NULL, 1),
(22712, 17511, '4', 'Madras University ', '', 'MSC information technology ', '2020', 60.00, '', 1, '2024-03-12 04:04:42', 0, NULL, 0, NULL, 1),
(22713, 17514, '4', 'Crescent University ', '', 'MCA', '2023', 84.70, '', 1, '2024-03-12 04:44:37', 0, NULL, 0, NULL, 1),
(22714, 17513, '3', 'Bharathi dhasan University', '', 'Bba', '2017', 70.00, '', 1, '2024-03-12 04:46:31', 0, NULL, 0, NULL, 1),
(22715, 17517, '4', 'anna university', '', 'mba', '2022', 7.10, '', 1, '2024-03-12 04:55:23', 0, NULL, 0, NULL, 1),
(22716, 17519, '3', 'Anna University ', '', 'BE', '2024', 7.29, '', 1, '2024-03-12 05:14:28', 0, NULL, 0, NULL, 1),
(22717, 17521, '4', 'Madras university', '', 'Mca', '2023', 71.00, '', 1, '2024-03-12 05:26:00', 0, NULL, 0, NULL, 1),
(22718, 17520, '3', 'Anna University ', '', 'B.com(cs)', '2021', 78.00, '', 1, '2024-03-12 05:27:13', 0, NULL, 0, NULL, 1),
(22719, 17521, '3', 'Anna university', '', 'B tech', '2016', 81.00, '', 1, '2024-03-12 05:31:35', 0, NULL, 0, NULL, 1),
(22720, 17512, '4', 'Madras university', '', 'Mba', '2019', 56.00, '', 1, '2024-03-12 05:50:13', 0, NULL, 0, NULL, 1),
(22721, 17512, '4', 'Madras university', '', 'Mba', '2019', 56.00, '', 1, '2024-03-12 05:50:46', 0, NULL, 0, NULL, 1),
(22722, 17518, '3', 'Anna university ', '', 'BE-CSE', '2022', 7.86, '', 1, '2024-03-12 05:51:57', 0, NULL, 0, NULL, 1),
(22723, 17522, '4', 'Sri sankara arts science ', '', 'Msc', '2020', 70.00, '', 1, '2024-03-12 06:00:39', 0, NULL, 0, NULL, 1),
(22724, 17525, '4', 'Madras University', '', 'M.Sc', '2021', 92.00, '', 1, '2024-03-12 06:13:33', 0, NULL, 0, NULL, 1),
(22725, 17524, '3', 'Anna University', '', 'BE CSE', '2023', 80.00, '', 1, '2024-03-12 06:19:02', 0, NULL, 0, NULL, 1),
(22726, 17515, '4', 'Deemed University ', '', 'MCA ', '2023', 82.00, '', 1, '2024-03-12 06:25:52', 0, NULL, 0, NULL, 1),
(22727, 17515, '3', 'Dr MGR University ', '', 'BCA', '2021', 74.00, '', 1, '2024-03-12 06:26:29', 0, NULL, 0, NULL, 1),
(22728, 17527, '3', 'Anna university ', '', 'BE', '2020', 6.60, '', 1, '2024-03-12 06:31:47', 0, NULL, 0, NULL, 1),
(22729, 17529, '3', 'Madras University ', '', 'B.sc Electronics and communication science', '2019', 70.00, '', 1, '2024-03-12 06:37:18', 0, NULL, 0, NULL, 1),
(22730, 17528, '1', 'Tamilnadu state board ', '', '', '2016', 77.60, '', 1, '2024-03-12 06:38:05', 0, NULL, 0, NULL, 1),
(22731, 17528, '2', 'Tamilnadu state board ', '', '', '2018', 82.16, '', 1, '2024-03-12 06:38:34', 0, NULL, 0, NULL, 1),
(22732, 17528, '3', 'PSG COLLEGE ARTS AND SCIENCE ', '', 'BCA', '2021', 76.60, '', 1, '2024-03-12 06:39:03', 0, NULL, 0, NULL, 1),
(22733, 17528, '4', 'Bharathidasan University ', '', 'MCA', '2024', 75.00, '', 1, '2024-03-12 06:40:13', 0, NULL, 0, NULL, 1),
(22734, 17526, '3', 'Madras University ', '', 'BBA', '2020', 69.00, '', 1, '2024-03-12 06:50:47', 0, NULL, 0, NULL, 1),
(22735, 17530, '4', 'Anna university', '', 'MBA', '2022', 65.00, '', 1, '2024-03-12 06:59:41', 0, NULL, 0, NULL, 1),
(22736, 17523, '3', 'anna university', '', 'computer science and engineering', '2023', 7.80, '', 1, '2024-03-12 08:38:21', 0, NULL, 0, NULL, 1),
(22737, 17531, '3', 'University of Madras ', '', 'BCOM Accounting and finance ', '2020', 79.00, '', 1, '2024-03-12 08:38:46', 0, NULL, 0, NULL, 1),
(22738, 17532, '5', 'State board ', '', 'Diploma in civil ', '2020', 73.00, '', 1, '2024-03-12 09:12:10', 0, NULL, 0, NULL, 1),
(22739, 17533, '3', 'Anna University ', '', 'B E ECE', '2018', 61.00, '', 1, '2024-03-12 09:16:13', 0, NULL, 0, NULL, 1),
(22740, 17535, '3', 'university of madras', '', 'bachelor of Arts ', '2020', 75.00, '', 1, '2024-03-12 10:14:18', 0, NULL, 0, NULL, 1),
(22741, 0, '3', 'university of madras', '', 'b.com cs', '2020', 6.50, '', 1, '2024-03-12 10:20:34', 1, '2024-03-13 09:22:48', 0, NULL, 0),
(22742, 0, '2', 'government hr sec school', '', '', '2017', 72.00, '', 1, '2024-03-12 10:21:35', 1, '2024-03-13 08:08:16', 0, NULL, 0),
(22743, 0, '1', 'government hr sec school', '', '', '2015', 75.00, '', 1, '2024-03-12 10:22:10', 1, '2024-03-13 09:22:41', 0, NULL, 0),
(22744, 17536, '4', 'Anna University ', '', 'Mca', '2022', 8.65, '', 1, '2024-03-12 10:27:04', 0, NULL, 0, NULL, 1),
(22745, 17540, '3', 'SV University, Tirupati ', '', 'Bsc Mathematics ', '2020', 82.00, '', 1, '2024-03-12 12:02:16', 0, NULL, 0, NULL, 1),
(22746, 17541, '3', 'MAKAUT', '', 'BCA', '2023', 69.00, '', 1, '2024-03-12 01:22:23', 0, NULL, 0, NULL, 1),
(22747, 17542, '3', 'Madras university', '', 'BBA', '2021', 82.00, '', 1, '2024-03-12 01:26:41', 0, NULL, 0, NULL, 1),
(22748, 17542, '2', 'State board', '', '', '2018', 60.00, '', 1, '2024-03-12 01:28:04', 0, NULL, 0, NULL, 1),
(22749, 17542, '1', 'State board', '', '', '2016', 70.00, '', 1, '2024-03-12 01:28:38', 0, NULL, 0, NULL, 1),
(22750, 17543, '3', 'MADRAS UNIVERSITY ', '', 'BCA', '2023', 76.40, '', 1, '2024-03-12 06:59:28', 0, NULL, 0, NULL, 1),
(22751, 17546, '4', 'Periyar university', '', 'M. Sc data science', '2022', 70.00, '', 1, '2024-03-13 05:22:46', 0, NULL, 0, NULL, 1),
(22752, 17551, '1', 'State Board', '', '', '2014', 94.40, '', 1, '2024-03-13 05:31:58', 0, NULL, 0, NULL, 1),
(22753, 17551, '2', 'State Board ', '', '', '2016', 85.40, '', 1, '2024-03-13 05:32:35', 0, NULL, 0, NULL, 1),
(22754, 17551, '3', 'Anna University ', '', 'BE', '2020', 8.09, '', 1, '2024-03-13 05:32:59', 0, NULL, 0, NULL, 1),
(22755, 17550, '2', 'state board', '', '', '2017', 85.00, '', 1, '2024-03-13 05:38:02', 0, NULL, 0, NULL, 1),
(22756, 17550, '1', 'state board', '', '', '2014', 75.00, '', 1, '2024-03-13 05:38:56', 0, NULL, 0, NULL, 1),
(22757, 17550, '3', 'madras univercity', '', 'b.com cs', '2020', 60.00, '', 1, '2024-03-13 05:39:50', 0, NULL, 0, NULL, 1),
(22758, 17549, '3', 'Madras University ', '', 'Bsc . Computer science ', '2023', 83.00, '', 1, '2024-03-13 05:44:50', 0, NULL, 0, NULL, 1),
(22759, 17547, '3', 'Dhanalakshmi Srinivasan enginnering college ', '', 'BE Cse', '2022', 7.70, '', 1, '2024-03-13 05:46:07', 0, NULL, 0, NULL, 1),
(22760, 17549, '1', 'Tamilnadu state board ', '', '', '2020', 56.00, '', 1, '2024-03-13 05:47:15', 0, NULL, 0, NULL, 1),
(22761, 17549, '2', 'Tamilnadu state board ', '', '', '2018', 86.00, '', 1, '2024-03-13 05:47:38', 0, NULL, 0, NULL, 1),
(22762, 17548, '1', 'Tamilnadu State board ', '', '', '2018', 70.00, '', 1, '2024-03-13 05:47:40', 0, NULL, 0, NULL, 1),
(22763, 17548, '2', 'Tamilnadu State board ', '', '', '2016', 75.00, '', 1, '2024-03-13 05:48:11', 0, NULL, 0, NULL, 1),
(22764, 17548, '3', 'Anna University ', '', 'BE - Mechanical ', '2022', 70.00, '', 1, '2024-03-13 05:49:01', 0, NULL, 0, NULL, 1),
(22765, 17553, '3', 'Madras University ', '', 'BA sociology ', '2022', 70.00, '', 1, '2024-03-13 06:15:17', 0, NULL, 0, NULL, 1),
(22766, 17554, '3', 'Madras University ', '', 'Bcom', '2023', 75.00, '', 1, '2024-03-13 06:22:30', 0, NULL, 0, NULL, 1),
(22767, 17556, '3', 'SRM University ', '', 'BBA', '2018', 64.00, '', 1, '2024-03-13 06:52:37', 0, NULL, 0, NULL, 1),
(22768, 17557, '4', 'Alagappa University ', '', 'MBA', '2020', 85.00, '', 1, '2024-03-13 07:12:00', 0, NULL, 0, NULL, 1),
(22769, 17558, '3', 'Alliance University ', '', 'BBA', '2023', 74.90, '', 1, '2024-03-13 08:09:04', 0, NULL, 0, NULL, 1),
(22770, 17555, '3', 'University of Madras ', '', 'B.A. Political science ', '2021', 65.00, '', 1, '2024-03-13 08:18:46', 0, NULL, 0, NULL, 1),
(22771, 17559, '4', 'University ', '', 'Mba', '2023', 84.00, '', 1, '2024-03-13 08:35:00', 0, NULL, 0, NULL, 1),
(22772, 17559, '3', 'University ', '', 'B.com', '2021', 82.00, '', 1, '2024-03-13 08:35:46', 0, NULL, 0, NULL, 1),
(22773, 17562, '3', 'Rani channamma university belgaum', '', 'Bba', '2018', 53.00, '', 1, '2024-03-13 09:18:52', 0, NULL, 0, NULL, 1),
(22774, 17560, '3', 'Madras university', '', 'BCA', '2023', 65.00, '', 1, '2024-03-13 09:20:14', 0, NULL, 0, NULL, 1),
(22775, 17563, '1', 'Sri Jayendra Matric hr.sec.school', '', '', '2016', 76.00, '', 1, '2024-03-13 09:24:20', 0, NULL, 0, NULL, 1),
(22776, 17563, '2', 'Sri Jeyandra Matric .hr.sec.school', '', '', '2018', 67.00, '', 1, '2024-03-13 09:25:04', 0, NULL, 0, NULL, 1),
(22777, 17563, '3', 'Manonmaniam Sundaranar University ', '', 'BCA', '2021', 74.00, '', 1, '2024-03-13 09:25:39', 1, '2024-03-13 09:26:44', 0, NULL, 1),
(22778, 17563, '4', 'Karpagam College of Engineering ', '', 'MCA', '2023', 70.00, '', 1, '2024-03-13 09:26:17', 0, NULL, 0, NULL, 1),
(22779, 17561, '3', 'anna university', '', 'engineering ', '2023', 80.00, '', 1, '2024-03-13 09:32:52', 0, NULL, 0, NULL, 1),
(22780, 17564, '3', 'ANNA UNIVERSITY ', '', 'BE ECE', '2021', 6.20, '', 1, '2024-03-13 10:06:33', 0, NULL, 0, NULL, 1),
(22781, 17565, '2', 'Board', '', '', '2010', 67.00, '', 1, '2024-03-13 10:44:14', 0, NULL, 0, NULL, 1),
(22782, 17566, '3', 'madras university', '', 'bsc chemistry', '2021', 80.00, '', 1, '2024-03-13 12:15:14', 0, NULL, 0, NULL, 1),
(22783, 17568, '3', 'Madras University ', '', 'Bsc computer science ', '2016', 71.00, '', 1, '2024-03-13 01:05:51', 0, NULL, 0, NULL, 1),
(22784, 17569, '3', 'University ', '', 'BE', '2022', 78.00, '', 1, '2024-03-14 05:04:27', 0, NULL, 0, NULL, 1),
(22785, 17570, '3', 'srm university', '', 'bcom commerce', '2023', 67.00, '', 1, '2024-03-14 05:06:06', 0, NULL, 0, NULL, 1),
(22786, 17571, '5', 'anna University', '', 'diploma in computer technology', '2017', 76.00, '', 1, '2024-03-14 05:28:30', 0, NULL, 0, NULL, 1),
(22787, 17572, '1', 'Government hr sec school', '', '', '2015', 63.00, '', 1, '2024-03-14 06:13:52', 0, NULL, 0, NULL, 1),
(22788, 17572, '2', 'Government hr sec school', '', '', '2017', 68.00, '', 1, '2024-03-14 06:14:16', 0, NULL, 0, NULL, 1),
(22789, 17572, '3', 'University of madras', '', 'Bachelor of arts', '2020', 65.00, '', 1, '2024-03-14 06:15:01', 0, NULL, 0, NULL, 1),
(22790, 16385, '3', 'anna university', '', 'b e computer science', '2019', 6.50, '', 1, '2024-03-14 06:27:48', 0, NULL, 0, NULL, 1),
(22791, 17545, '3', 'Thiruvalluvar university, vellore', '', 'BBA', '2020', 71.00, '', 1, '2024-03-14 06:33:02', 0, NULL, 0, NULL, 1),
(22792, 17545, '2', 'Matriculation higher secondary ', '', '', '2017', 68.00, '', 1, '2024-03-14 06:33:38', 0, NULL, 0, NULL, 1),
(22793, 17545, '1', 'Matriculation higher secondary ', '', '', '2015', 74.00, '', 1, '2024-03-14 06:34:00', 0, NULL, 0, NULL, 1),
(22794, 17573, '3', 'Manonmaniyam University', '', 'Bcom', '2021', 65.00, '', 1, '2024-03-14 07:03:11', 0, NULL, 0, NULL, 1),
(22795, 17574, '3', 'University of Madras ', '', 'Bachelor of Commerce in Corporate Secretaryship', '2020', 65.00, '', 1, '2024-03-14 07:07:04', 0, NULL, 0, NULL, 1),
(22796, 17574, '2', 'Central board of secondary education ', '', '', '2017', 74.00, '', 1, '2024-03-14 07:07:32', 0, NULL, 0, NULL, 1),
(22797, 17574, '1', 'Central board of secondary education ', '', '', '2015', 60.00, '', 1, '2024-03-14 07:07:53', 0, NULL, 0, NULL, 1),
(22798, 17575, '4', 'Annamalai University', '', 'MA PUBLIC ADMINISTRATION', '2018', 55.00, '', 1, '2024-03-14 07:24:10', 0, NULL, 0, NULL, 1),
(22799, 17575, '3', 'Bharathidasan University', '', 'BSC Computer Science', '2012', 55.00, '', 1, '2024-03-14 07:25:58', 0, NULL, 0, NULL, 1),
(22800, 17567, '5', 'alagappa', '', '', '2019', 85.00, '', 1, '2024-03-14 07:57:06', 0, NULL, 0, NULL, 1),
(22801, 17577, '3', 'Sree muthukumaraswamy college, Madras University ', '', 'B.com( ISM )', '2022', 75.80, '', 1, '2024-03-14 08:19:53', 0, NULL, 0, NULL, 1),
(22802, 17578, '1', 'Karnataka secondary education boards ', '', '', '2015', 71.04, '', 1, '2024-03-14 09:16:37', 0, NULL, 0, NULL, 1),
(22803, 17579, '3', 'SRM University ', '', 'B.com ', '2023', 8.88, '', 1, '2024-03-14 10:02:05', 0, NULL, 0, NULL, 1),
(22804, 17582, '3', 'Prist University ', '', 'Bsc computer science ', '2021', 76.00, '', 1, '2024-03-15 02:22:58', 0, NULL, 0, NULL, 1),
(22805, 17583, '4', 'Madras University ', '', 'MSC IT ', '2022', 84.00, '', 1, '2024-03-15 04:14:21', 0, NULL, 0, NULL, 1),
(22806, 17585, '4', 'Jaya Engineering College ', '', 'BE Mechanical ', '2019', 66.00, '', 1, '2024-03-15 05:03:12', 0, NULL, 0, NULL, 1),
(22807, 17581, '3', 'Deemed University ', '', 'BCA(computer application)', '2022', 74.61, '', 1, '2024-03-15 05:09:37', 0, NULL, 0, NULL, 1),
(22808, 17584, '3', 'Thiruvalluvar University ', '', 'BCA', '2022', 79.00, '', 1, '2024-03-15 05:09:47', 0, NULL, 0, NULL, 1),
(22809, 17587, '3', '  madras university', '', ' bca', '2023', 6.23, '', 1, '2024-03-15 05:23:16', 0, NULL, 0, NULL, 1),
(22810, 17586, '3', 'Anna University ', '', 'B.Tech(IT)', '2014', 67.00, '', 1, '2024-03-15 05:36:33', 0, NULL, 0, NULL, 1),
(22811, 17589, '3', 'anna uni ', '', 'b', '2017', 6.20, '', 1, '2024-03-15 05:59:04', 0, NULL, 0, NULL, 1),
(22812, 17590, '4', 'annamalai university', '', 'ma b.ed', '2019', 78.00, '', 1, '2024-03-15 06:06:25', 0, NULL, 0, NULL, 1),
(22813, 17588, '3', 'Sathyabama University ', '', 'B.sc Visual Communication ', '2017', 62.32, '', 1, '2024-03-15 06:12:58', 0, NULL, 0, NULL, 1),
(22814, 17591, '3', 'Madras University ', '', 'B.com (corporate secretaryship)', '2020', 63.00, '', 1, '2024-03-15 06:21:09', 0, NULL, 0, NULL, 1),
(22815, 17593, '3', 'Karpagam university ', '', 'B.Com(CA)', '2023', 73.00, '', 1, '2024-03-15 07:21:08', 0, NULL, 0, NULL, 1),
(22816, 17594, '3', 'State', '', 'B. A English', '2013', 70.00, '', 1, '2024-03-15 11:04:08', 0, NULL, 0, NULL, 1),
(22817, 17597, '4', 'Madras University ', '', 'Msc', '2022', 89.00, '', 1, '2024-03-15 12:45:22', 0, NULL, 0, NULL, 1),
(22818, 17600, '4', 'madras university', '', 'MbA', '2019', 75.00, '', 1, '2024-03-16 05:56:29', 0, NULL, 0, NULL, 1),
(22819, 17600, '3', 'madras university', '', 'b. com', '2017', 75.00, '', 1, '2024-03-16 05:57:02', 0, NULL, 0, NULL, 1),
(22820, 17600, '1', 'state board', '', '', '2012', 90.00, '', 1, '2024-03-16 05:57:45', 0, NULL, 0, NULL, 1),
(22821, 17600, '2', 'higher secondary', '', '', '2014', 90.00, '', 1, '2024-03-16 05:58:06', 0, NULL, 0, NULL, 1),
(22822, 17599, '4', 'University', '', 'MCA', '2024', 60.00, '', 1, '2024-03-16 06:56:23', 0, NULL, 0, NULL, 1),
(22823, 17601, '3', 'Bharathidasan university ', '', 'B.sc,.computer science ', '2023', 72.00, '', 1, '2024-03-16 06:58:54', 0, NULL, 0, NULL, 1),
(22824, 17602, '4', 'Anna university ', '', 'MBA', '2022', 8.50, '', 1, '2024-03-16 07:20:29', 0, NULL, 0, NULL, 1),
(22825, 17602, '3', 'Madurai kamarajar university ', '', 'BSc maths ', '2020', 69.00, '', 1, '2024-03-16 07:21:35', 0, NULL, 0, NULL, 1),
(22826, 17603, '3', 'Madras University ', '', 'BBA', '2020', 73.00, '', 1, '2024-03-16 07:26:15', 0, NULL, 0, NULL, 1),
(22827, 17604, '3', 'university ', '', 'bba', '2023', 80.00, '', 1, '2024-03-16 11:19:07', 0, NULL, 0, NULL, 1),
(22828, 17605, '4', 'Bharathidasan University ', '', 'M.sc Mathamatices ', '2023', 65.00, '', 1, '2024-03-18 03:23:49', 1, '2024-03-18 03:27:03', 0, NULL, 1),
(22829, 17605, '3', 'Bharathidasan University ', '', 'B.sc Mathematics ', '2020', 59.00, '', 1, '2024-03-18 03:25:16', 0, NULL, 0, NULL, 1),
(22830, 17605, '2', 'VIRARAGAHAVA HIGHER SECONDARY SCHOOL ', '', '', '2017', 61.00, '', 1, '2024-03-18 03:26:33', 0, NULL, 0, NULL, 1),
(22831, 17605, '1', 'KALYANASUNDARAM HR SEC SCHOOL ', '', '', '2015', 80.00, '', 1, '2024-03-18 03:28:58', 0, NULL, 0, NULL, 1),
(22832, 17606, '3', 'University', '', 'B. E(Mechanical engineering ) ', '2023', 76.00, '', 1, '2024-03-18 04:45:26', 0, NULL, 0, NULL, 1),
(22833, 17607, '3', 'University ', '', 'B.com', '2022', 80.00, '', 1, '2024-03-18 04:48:44', 0, NULL, 0, NULL, 1),
(22834, 17608, '1', 'State Board ', '', '', '2015', 61.00, '', 1, '2024-03-18 05:36:35', 0, NULL, 0, NULL, 1),
(22835, 17608, '2', 'State Board ', '', '', '2017', 76.00, '', 1, '2024-03-18 05:36:54', 0, NULL, 0, NULL, 1),
(22836, 17608, '3', 'Thiruvalluvar University ', '', 'B.com', '2020', 59.00, '', 1, '2024-03-18 05:37:23', 0, NULL, 0, NULL, 1),
(22837, 17608, '4', 'Periyar University ', '', 'MBA', '2023', 69.00, '', 1, '2024-03-18 05:37:43', 0, NULL, 0, NULL, 1),
(22838, 17598, '3', 'University of madras', '', 'B. Com', '2021', 67.00, '', 1, '2024-03-18 05:49:58', 0, NULL, 0, NULL, 1),
(22839, 17609, '3', 'Anna University ', '', 'BE', '2022', 100.00, '', 1, '2024-03-18 06:19:07', 0, NULL, 0, NULL, 1),
(22840, 17610, '3', 'Anna University ', '', 'Be', '2022', 79.00, '', 1, '2024-03-18 07:09:16', 0, NULL, 0, NULL, 1),
(22841, 17610, '2', 'Rajavignesh hr sec school ', '', '', '2018', 71.00, '', 1, '2024-03-18 07:09:46', 0, NULL, 0, NULL, 1),
(22842, 17610, '1', 'Rajavignesh hr sec school ', '', '', '2016', 82.00, '', 1, '2024-03-18 07:10:13', 0, NULL, 0, NULL, 1),
(22843, 17611, '3', 'University of madras', '', 'Bsc microbiology', '2020', 83.00, '', 1, '2024-03-18 08:00:16', 1, '2024-03-18 08:02:35', 0, NULL, 0),
(22844, 17611, '2', 'State board', '', '', '2017', 61.00, '', 1, '2024-03-18 08:01:23', 0, NULL, 0, NULL, 1),
(22845, 17611, '1', 'State board', '', '', '2015', 70.00, '', 1, '2024-03-18 08:01:51', 0, NULL, 0, NULL, 1),
(22846, 17611, '3', 'Madras University', '', 'B.SC', '2020', 83.00, '', 1, '2024-03-18 08:03:03', 0, NULL, 0, NULL, 1),
(22847, 17612, '4', 'Karnataka university', '', 'Mba', '2023', 6.80, '', 1, '2024-03-18 09:15:28', 0, NULL, 0, NULL, 1),
(22848, 15537, '2', 'Council of Assam', '', 'B.sc', '2016', 58.00, '', 1, '2024-03-19 04:01:42', 0, NULL, 0, NULL, 1),
(22849, 17614, '4', 'Bharathidasan University ', '', 'M.Sc', '2022', 83.90, '', 1, '2024-03-19 05:44:57', 0, NULL, 0, NULL, 1),
(22850, 17615, '3', 'Bangalore University ', '', 'BCom', '2018', 7.80, '', 1, '2024-03-19 06:22:29', 0, NULL, 0, NULL, 1),
(22851, 17613, '4', 'Bharathidasan University ', '', 'M.Sc', '2023', 82.00, '', 1, '2024-03-19 06:38:03', 0, NULL, 0, NULL, 1),
(22852, 17616, '3', 'madras university', '', 'b.com', '2024', 73.00, '', 1, '2024-03-19 07:15:26', 0, NULL, 0, NULL, 1),
(22853, 17617, '4', 'Madras university ', '', 'MBA  financial management ', '2024', 75.00, '', 1, '2024-03-19 08:37:05', 1, '2024-03-19 08:37:56', 0, NULL, 1),
(22854, 17617, '4', 'Madras university ', '', 'MBA ', '2024', 75.00, '', 1, '2024-03-19 08:38:54', 0, NULL, 0, NULL, 1),
(22855, 17618, '2', 'Board', '', '', '2018', 58.00, '', 1, '2024-03-19 10:12:21', 0, NULL, 0, NULL, 1),
(22856, 17619, '1', 'State board ', '', 'BSC CS ', '2018', 79.00, '', 1, '2024-03-19 12:16:24', 0, NULL, 0, NULL, 1),
(22857, 17619, '2', 'State board ', '', '', '2020', 52.00, '', 1, '2024-03-19 12:16:46', 0, NULL, 0, NULL, 1),
(22858, 17619, '3', 'Thiruvalluvar University ', '', 'BSC CS ', '2023', 75.00, '', 1, '2024-03-19 12:17:05', 0, NULL, 0, NULL, 1),
(22859, 17622, '1', 'State board ', '', '', '2018', 79.00, '', 1, '2024-03-20 04:20:03', 0, NULL, 0, NULL, 1),
(22860, 17622, '2', 'State board ', '', '', '2020', 52.00, '', 1, '2024-03-20 04:20:30', 0, NULL, 0, NULL, 1),
(22861, 17622, '3', 'Thiruvalluvar University ', '', 'BSC CS ', '2023', 75.00, '', 1, '2024-03-20 04:20:58', 0, NULL, 0, NULL, 1),
(22862, 17623, '3', 'University of Madras', '', 'Bachelor of Science in Computer Science', '2016', 67.50, '', 1, '2024-03-20 04:29:36', 0, NULL, 0, NULL, 1),
(22863, 17623, '2', 'State Board', '', '', '2013', 68.00, '', 1, '2024-03-20 04:30:03', 0, NULL, 0, NULL, 1),
(22864, 17623, '1', 'State Board', '', '', '2011', 87.00, '', 1, '2024-03-20 04:30:27', 0, NULL, 0, NULL, 1),
(22865, 17624, '3', 'Agni college of technology', '', 'B. E', '2023', 85.00, '', 1, '2024-03-20 05:21:11', 0, NULL, 0, NULL, 1),
(22866, 17624, '2', 'State board of Tamilnadu', '', '', '2019', 63.00, '', 1, '2024-03-20 05:21:44', 0, NULL, 0, NULL, 1),
(22867, 17624, '1', 'State board of Tamilnadu', '', '', '2017', 93.00, '', 1, '2024-03-20 05:22:09', 0, NULL, 0, NULL, 1),
(22868, 17625, '3', 'Anna University ', '', 'B.E', '2022', 82.00, '', 1, '2024-03-20 05:25:21', 0, NULL, 0, NULL, 1),
(22869, 17626, '1', 'State board', '', '', '2018', 58.00, '', 1, '2024-03-20 05:26:37', 0, NULL, 0, NULL, 1),
(22870, 17626, '2', 'State board', '', '', '2020', 50.20, '', 1, '2024-03-20 05:27:12', 0, NULL, 0, NULL, 1),
(22871, 17626, '3', 'Madras university', '', 'BCA', '2023', 70.00, '', 1, '2024-03-20 05:27:37', 0, NULL, 0, NULL, 1),
(22872, 17628, '3', 'Anna university', '', 'BE', '2021', 70.00, '', 1, '2024-03-20 05:35:17', 0, NULL, 0, NULL, 1),
(22873, 17628, '2', 'Higher secondary school', '', '', '2017', 70.00, '', 1, '2024-03-20 05:36:08', 0, NULL, 0, NULL, 1),
(22874, 17628, '1', 'Higher secondary school', '', '', '2015', 75.00, '', 1, '2024-03-20 05:36:46', 0, NULL, 0, NULL, 1),
(22875, 17629, '3', 'University of Madras ', '', 'B Com (CA)', '2020', 68.00, '', 1, '2024-03-20 05:37:42', 0, NULL, 0, NULL, 1),
(22876, 17627, '3', 'MADRAS', '', 'B.COM( BBM)', '2020', 62.00, '', 1, '2024-03-20 05:47:41', 0, NULL, 0, NULL, 1),
(22877, 17631, '4', 'Anna university', '', 'MBA', '2024', 78.00, '', 1, '2024-03-20 05:53:59', 0, NULL, 0, NULL, 1),
(22878, 17633, '3', 'Anna University ', '', 'B.Tech', '2023', 8.35, '', 1, '2024-03-20 05:56:45', 0, NULL, 0, NULL, 1),
(22879, 17632, '4', 'Anna University ', '', 'MBA', '2017', 77.00, '', 1, '2024-03-20 05:58:07', 0, NULL, 0, NULL, 1),
(22880, 17633, '2', 'State board', '', '', '2019', 70.00, '', 1, '2024-03-20 05:58:44', 0, NULL, 0, NULL, 1),
(22881, 17633, '1', 'State board ', '', '', '2017', 80.00, '', 1, '2024-03-20 05:59:05', 0, NULL, 0, NULL, 1),
(22882, 17634, '3', 'Anna University ', '', 'B.E(Mechanical)', '2023', 7.60, '', 1, '2024-03-20 06:08:41', 0, NULL, 0, NULL, 1),
(22883, 17634, '2', 'St.lawrence.Hr.Sec.School', '', '', '2019', 59.00, '', 1, '2024-03-20 06:09:37', 0, NULL, 0, NULL, 1),
(22884, 17634, '1', 'St.Lawrence.Hr.Sec.School', '', '', '2017', 80.00, '', 1, '2024-03-20 06:10:23', 0, NULL, 0, NULL, 1),
(22885, 17637, '1', 'John dewey matric school', '', '', '2017', 84.00, '', 1, '2024-03-20 06:13:02', 0, NULL, 0, NULL, 1),
(22886, 17637, '2', 'John dewey higher secondary school', '', '', '2019', 50.00, '', 1, '2024-03-20 06:13:45', 0, NULL, 0, NULL, 1),
(22887, 17637, '3', 'Dr mgr university ', '', 'B tech ', '2023', 70.00, '', 1, '2024-03-20 06:14:10', 0, NULL, 0, NULL, 1),
(22888, 17636, '3', 'Anna university ', '', 'B.Tech IT', '2023', 80.20, '', 1, '2024-03-20 06:14:25', 0, NULL, 0, NULL, 1),
(22889, 17636, '2', 'State board ', '', '', '2019', 57.20, '', 1, '2024-03-20 06:14:49', 0, NULL, 0, NULL, 1),
(22890, 17636, '1', 'State board ', '', '', '2017', 86.20, '', 1, '2024-03-20 06:15:04', 0, NULL, 0, NULL, 1),
(22891, 17639, '3', 'Unnamalai institute of technology-Kovilpatti ,Anna University Chennai', '', 'BE', '2023', 84.00, '', 1, '2024-03-20 06:20:31', 1, '2024-03-20 06:23:15', 0, NULL, 1),
(22892, 17639, '2', 'Tamilnadu State board', '', '', '2019', 81.00, '', 1, '2024-03-20 06:21:21', 0, NULL, 0, NULL, 1),
(22893, 17639, '1', 'Tamilnadu State board', '', '', '2017', 95.80, '', 1, '2024-03-20 06:21:52', 0, NULL, 0, NULL, 1),
(22894, 17635, '3', 'anna university', '', 'b.e', '2022', 77.00, '', 1, '2024-03-20 06:31:32', 0, NULL, 0, NULL, 1),
(22895, 17635, '2', 'tamil nadu board', '', '', '2018', 60.00, '', 1, '2024-03-20 06:32:27', 1, '2024-03-20 06:33:57', 0, NULL, 1),
(22896, 17638, '3', 'Sri Venkateswara university', '', 'Bachelor\'s of Science', '2019', 73.00, '', 1, '2024-03-20 06:36:10', 0, NULL, 0, NULL, 1),
(22897, 17640, '4', 'Madras university', '', 'MCA', '2023', 85.30, '', 1, '2024-03-20 06:36:44', 0, NULL, 0, NULL, 1),
(22898, 17640, '1', 'State Bord', '', '', '2016', 86.40, '', 1, '2024-03-20 06:37:49', 0, NULL, 0, NULL, 1),
(22899, 17640, '2', 'State bord', '', '', '2018', 64.75, '', 1, '2024-03-20 06:38:15', 0, NULL, 0, NULL, 1),
(22900, 17640, '3', 'Madras University', '', 'BCA', '2021', 68.10, '', 1, '2024-03-20 06:38:49', 0, NULL, 0, NULL, 1),
(22901, 17640, '4', 'Madras University', '', 'MCA', '2023', 85.30, '', 1, '2024-03-20 06:39:40', 0, NULL, 0, NULL, 1),
(22902, 17641, '3', 'University of Madras', '', 'B. Sc Computer Science', '2021', 70.00, '', 1, '2024-03-20 07:10:38', 0, NULL, 0, NULL, 1),
(22903, 17641, '2', 'Tamil Nadu State Board', '', '', '2018', 54.00, '', 1, '2024-03-20 07:11:54', 0, NULL, 0, NULL, 1),
(22904, 17641, '1', 'Tamil Nadu State Board', '', '', '2016', 74.00, '', 1, '2024-03-20 07:12:32', 0, NULL, 0, NULL, 1),
(22905, 17642, '3', 'Anna University ', '', 'B.tech ', '2016', 72.50, '', 1, '2024-03-20 07:16:25', 0, NULL, 0, NULL, 1),
(22906, 17642, '5', 'Anna University ', '', 'B.tech cse', '2016', 72.85, '', 1, '2024-03-20 07:32:46', 0, NULL, 0, NULL, 1),
(22907, 17645, '3', 'University of Madras ', '', 'B.A. English Literature ', '2023', 60.00, '', 1, '2024-03-20 07:37:33', 0, NULL, 0, NULL, 1),
(22908, 17643, '3', 'Madras University ', '', 'B.com ', '2023', 61.00, '', 1, '2024-03-20 07:37:55', 0, NULL, 0, NULL, 1),
(22909, 17644, '3', 'University of Madras ', '', 'B.A.English literature ', '2023', 62.00, '', 1, '2024-03-20 07:43:54', 0, NULL, 0, NULL, 1),
(22910, 17647, '1', 'State Board ', '', '', '2016', 74.00, '', 1, '2024-03-20 08:07:17', 0, NULL, 0, NULL, 1),
(22911, 17647, '2', 'State Board ', '', '', '2018', 51.00, '', 1, '2024-03-20 08:07:48', 0, NULL, 0, NULL, 1),
(22912, 17647, '3', 'AnnaUniversity ', '', 'BE CSE ', '2023', 67.00, '', 1, '2024-03-20 08:08:14', 0, NULL, 0, NULL, 1),
(22913, 17646, '3', 'University of Madras ', '', 'BA.English literature ', '2023', 62.00, '', 1, '2024-03-20 08:17:22', 0, NULL, 0, NULL, 1),
(22914, 17649, '1', 'Statebord', '', '', '2015', 82.00, '', 1, '2024-03-20 09:19:33', 0, NULL, 0, NULL, 1),
(22915, 17649, '2', 'Stateboard', '', '', '2017', 61.00, '', 1, '2024-03-20 09:20:05', 0, NULL, 0, NULL, 1),
(22916, 17649, '3', 'Periyar University ', '', 'Bsc Mathematics', '2020', 60.00, '', 1, '2024-03-20 09:20:37', 0, NULL, 0, NULL, 1),
(22917, 17648, '3', 'Madras University ', '', 'Bsc', '2016', 60.00, '', 1, '2024-03-20 09:30:54', 0, NULL, 0, NULL, 1),
(22918, 17648, '1', 'Anjuham hss school ', '', '', '2008', 55.00, '', 1, '2024-03-20 09:33:26', 0, NULL, 0, NULL, 1),
(22919, 17648, '2', 'C.D.nayagam', '', '', '2010', 55.00, '', 1, '2024-03-20 09:35:15', 0, NULL, 0, NULL, 1),
(22920, 17651, '3', 'Dhanraj baid jain collage', '', 'BCOM.CA', '2023', 60.00, '', 1, '2024-03-20 10:45:48', 0, NULL, 0, NULL, 1),
(22921, 17650, '3', 'Gitam University ', '', 'b.com', '2019', 75.00, '', 1, '2024-03-20 12:51:53', 0, NULL, 0, NULL, 1),
(22922, 17655, '5', 'Sri Ayyappa polytechnic college ivadhikudi', '', 'No', '2020', 89.00, '', 1, '2024-03-21 04:04:45', 0, NULL, 0, NULL, 1),
(22923, 17656, '4', 'Anna University ', '', 'M. E', '2021', 8.20, '', 1, '2024-03-21 04:09:18', 0, NULL, 0, NULL, 1),
(22924, 17657, '3', 'Anna University ', '', 'B.E', '2023', 7.80, '', 1, '2024-03-21 04:18:48', 0, NULL, 0, NULL, 1),
(22925, 17658, '3', 'J.J College of arts and science Pudukottai', '', 'Bsc,ComputerScience', '2023', 66.00, '', 1, '2024-03-21 04:22:57', 0, NULL, 0, NULL, 1),
(22926, 17659, '3', 'bharathidasan', '', 'B. Sc computer science', '2023', 71.00, '', 1, '2024-03-21 04:26:19', 0, NULL, 0, NULL, 1),
(22927, 17662, '1', 'State board ', '', '', '2019', 84.60, '', 1, '2024-03-21 04:40:38', 0, NULL, 0, NULL, 1),
(22928, 17662, '2', 'State board ', '', '', '2020', 62.00, '', 1, '2024-03-21 04:41:00', 0, NULL, 0, NULL, 1),
(22929, 17662, '3', 'Bharathidasan University ', '', 'Bsc Computer Science ', '2023', 75.50, '', 1, '2024-03-21 04:41:43', 0, NULL, 0, NULL, 1),
(22930, 17661, '3', 'Anna University ', '', 'B.E-CSE', '2023', 83.50, '', 1, '2024-03-21 04:41:45', 0, NULL, 0, NULL, 1),
(22931, 17663, '3', 'Bharathidasan University ', '', 'BCA', '2023', 84.00, '', 1, '2024-03-21 04:44:27', 0, NULL, 0, NULL, 1),
(22932, 17663, '2', 'State board ', '', '', '2020', 69.00, '', 1, '2024-03-21 04:45:11', 0, NULL, 0, NULL, 1),
(22933, 17664, '4', 'University of madras', '', 'MCA', '2021', 75.00, '', 1, '2024-03-21 04:45:26', 0, NULL, 0, NULL, 1),
(22934, 17663, '1', 'State board ', '', '', '2018', 82.00, '', 1, '2024-03-21 04:45:54', 0, NULL, 0, NULL, 1),
(22935, 17660, '3', 'Manonmaniam sundaranar university ', '', 'B. Com', '2023', 64.00, '', 1, '2024-03-21 04:51:00', 1, '2024-03-21 04:51:34', 0, NULL, 0),
(22936, 17660, '3', 'St.xaviers college,  autonomous ', '', 'B. Com', '2023', 64.00, '', 1, '2024-03-21 04:52:28', 0, NULL, 0, NULL, 1),
(22937, 17660, '1', 'Geetha matriculation higher secondary school ', '', '', '2018', 73.00, '', 1, '2024-03-21 04:53:19', 0, NULL, 0, NULL, 1),
(22938, 17665, '3', 'Anna university', '', 'BR', '2019', 6.50, '', 1, '2024-03-21 04:53:27', 0, NULL, 0, NULL, 1),
(22939, 17660, '2', 'Geetha matriculation higher secondary school ', '', '', '2020', 73.00, '', 1, '2024-03-21 04:53:54', 0, NULL, 0, NULL, 1),
(22940, 17665, '2', 'Matriculation school', '', '', '2015', 82.00, '', 1, '2024-03-21 04:54:10', 0, NULL, 0, NULL, 1),
(22941, 17665, '1', 'Stateboard', '', '', '2013', 92.00, '', 1, '2024-03-21 04:54:32', 0, NULL, 0, NULL, 1),
(22942, 17667, '4', 'Dr. M. G. R University', '', 'MCA', '2023', 74.00, '', 1, '2024-03-21 04:58:59', 0, NULL, 0, NULL, 1),
(22943, 17667, '3', 'Dr. M. G. R University', '', 'BSC', '2021', 78.00, '', 1, '2024-03-21 04:59:36', 0, NULL, 0, NULL, 1),
(22944, 17667, '2', 'State Board', '', '', '2018', 59.00, '', 1, '2024-03-21 05:00:15', 0, NULL, 0, NULL, 1),
(22945, 17669, '3', 'University of Madras ', '', 'BCA', '2021', 75.00, '', 1, '2024-03-21 05:02:43', 0, NULL, 0, NULL, 1),
(22946, 17668, '3', 'Anna University ', '', 'B.tech (IT)', '2023', 76.00, '', 1, '2024-03-21 05:03:10', 0, NULL, 0, NULL, 1),
(22947, 17669, '4', 'Dr M G R University', '', 'MCA', '2023', 83.00, '', 1, '2024-03-21 05:03:14', 0, NULL, 0, NULL, 1),
(22948, 17672, '4', 'Thiruvalluvar University ', '', 'MCA ', '2022', 88.12, '', 1, '2024-03-21 05:11:43', 0, NULL, 0, NULL, 1),
(22949, 17672, '3', 'Thiruvalluvar University ', '', 'BCA ', '2020', 76.03, '', 1, '2024-03-21 05:12:20', 0, NULL, 0, NULL, 1),
(22950, 17672, '2', 'State board ', '', '', '2017', 81.16, '', 1, '2024-03-21 05:12:46', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(22951, 17672, '1', 'State Board ', '', '', '2015', 87.00, '', 1, '2024-03-21 05:13:11', 0, NULL, 0, NULL, 1),
(22952, 17670, '3', 'University ', '', 'BCA', '2023', 72.00, '', 1, '2024-03-21 05:18:19', 0, NULL, 0, NULL, 1),
(22953, 17675, '4', 'Manonmaniam Sundharanar University ', '', 'MCA', '2022', 80.00, '', 1, '2024-03-21 05:18:33', 0, NULL, 0, NULL, 1),
(22954, 17666, '3', 'University of madras', '', 'Bsc(Computer science)', '2023', 76.00, '', 1, '2024-03-21 05:19:56', 0, NULL, 0, NULL, 1),
(22955, 17666, '2', 'State board ', '', '', '2020', 63.00, '', 1, '2024-03-21 05:20:12', 0, NULL, 0, NULL, 1),
(22956, 17666, '1', 'State board ', '', '', '2018', 81.00, '', 1, '2024-03-21 05:20:29', 0, NULL, 0, NULL, 1),
(22957, 17681, '3', 'Bharathidasan University ', '', 'Bachelor\'s of computer applications ', '2023', 76.00, '', 1, '2024-03-21 05:20:35', 0, NULL, 0, NULL, 1),
(22958, 17671, '3', 'Bharathidasan university', '', 'BCA', '2023', 75.00, '', 1, '2024-03-21 05:20:54', 0, NULL, 0, NULL, 1),
(22959, 17678, '4', 'Manonmaniam sundaranar University ', '', 'MCA', '2022', 74.00, '', 1, '2024-03-21 05:21:01', 0, NULL, 0, NULL, 1),
(22960, 17682, '3', 'Anna Adarsh college for women\'s, madars University ', '', 'B.com (Computer application)', '2023', 73.00, '', 1, '2024-03-21 05:27:11', 0, NULL, 0, NULL, 1),
(22961, 17679, '3', 'Bharathidadan University', '', 'BCA', '2023', 78.00, '', 1, '2024-03-21 05:27:34', 0, NULL, 0, NULL, 1),
(22962, 17677, '3', 'Thiruvalluvar university', '', 'B. Sc., Information System Management', '2023', 90.00, '', 1, '2024-03-21 05:30:04', 0, NULL, 0, NULL, 1),
(22963, 17676, '3', 'S.i.e.t college Madras University ', '', 'B.com(Information systems management)', '2023', 79.37, '', 1, '2024-03-21 05:31:15', 0, NULL, 0, NULL, 1),
(22964, 17684, '3', 'S.I.E.T college Madras University ', '', 'B.com(information system management )', '2023', 72.25, '', 1, '2024-03-21 05:31:32', 0, NULL, 0, NULL, 1),
(22965, 17685, '3', 'University of Madras ', '', 'Bsc', '2023', 78.00, '', 1, '2024-03-21 05:31:52', 0, NULL, 0, NULL, 1),
(22966, 17688, '3', 'Anna University tirunelveli ', '', 'BE CSE', '2017', 64.10, '', 1, '2024-03-21 05:32:03', 0, NULL, 0, NULL, 1),
(22967, 17689, '3', 'Mohammad sathak college of arts and science ', '', 'B.com computer applications ', '2022', 78.00, '', 1, '2024-03-21 05:33:53', 0, NULL, 0, NULL, 1),
(22968, 17687, '3', 'Bharathiar University ', '', 'BCA -computer Application ', '2023', 80.00, '', 1, '2024-03-21 05:34:22', 0, NULL, 0, NULL, 1),
(22969, 17689, '4', 'Madras University ', '', 'MCA', '2024', 75.00, '', 1, '2024-03-21 05:34:25', 0, NULL, 0, NULL, 1),
(22970, 17674, '3', 'Anna university ', '', 'B.E', '2023', 8.93, '', 1, '2024-03-21 05:39:55', 1, '2024-03-21 05:40:23', 0, NULL, 0),
(22971, 17690, '3', 'anna university ', '', 'b.e', '2015', 80.00, '', 1, '2024-03-21 05:42:10', 0, NULL, 0, NULL, 1),
(22972, 17674, '3', 'Anna university ', '', 'B.E', '2023', 8.93, '', 1, '2024-03-21 05:42:33', 0, NULL, 0, NULL, 1),
(22973, 17692, '4', 'Vels University ', '', 'M.Sc Biotechnology', '2023', 73.00, '', 1, '2024-03-21 05:45:52', 0, NULL, 0, NULL, 1),
(22974, 17692, '3', 'Vels University ', '', 'B.Sc Biotechnology ', '2021', 74.00, '', 1, '2024-03-21 05:46:21', 0, NULL, 0, NULL, 1),
(22975, 17693, '5', 'Anna University ', '', 'Electrical And Electronics Engineering ', '2021', 75.00, '', 1, '2024-03-21 06:00:24', 0, NULL, 0, NULL, 1),
(22976, 17683, '3', 'anna university', '', 'b e computer science', '2022', 73.00, '', 1, '2024-03-21 06:01:08', 0, NULL, 0, NULL, 1),
(22977, 17693, '1', 'Matriculation ', '', '', '2017', 80.00, '', 1, '2024-03-21 06:01:12', 0, NULL, 0, NULL, 1),
(22978, 17694, '3', 'Anna University ', '', 'BE', '2019', 71.60, '', 1, '2024-03-21 06:01:44', 0, NULL, 0, NULL, 1),
(22979, 17694, '2', 'Kongu vellalar matric HR.sec school', '', '', '2015', 79.00, '', 1, '2024-03-21 06:02:14', 0, NULL, 0, NULL, 1),
(22980, 17673, '3', 'Thiruvalluvar university ', '', 'B.Sc.,Information  System  Management ', '2023', 80.00, '', 1, '2024-03-21 06:02:20', 0, NULL, 0, NULL, 1),
(22981, 17694, '1', 'Kongu vellalar matric HR.sec school', '', '', '2013', 92.00, '', 1, '2024-03-21 06:02:39', 0, NULL, 0, NULL, 1),
(22982, 17680, '3', 'manomainan university', '', 'bsc computer science', '2023', 80.00, '', 1, '2024-03-21 06:07:37', 0, NULL, 0, NULL, 1),
(22983, 17696, '3', 'Anna University BIT Campus Tiruchirappalli', '', 'Electronics And Communication Engineering', '2023', 84.40, '', 1, '2024-03-21 06:12:44', 0, NULL, 0, NULL, 1),
(22984, 17697, '3', 'Anna University ', '', 'BE', '2022', 86.70, '', 1, '2024-03-21 06:13:01', 0, NULL, 0, NULL, 1),
(22985, 17698, '3', 'Anna University', '', 'BE. CSE', '2022', 78.00, '', 1, '2024-03-21 06:15:26', 0, NULL, 0, NULL, 1),
(22986, 17699, '3', 'Nehru art\'s and science college Coimbatore ', '', 'Bachelor of science ', '2022', 67.00, '', 1, '2024-03-21 06:17:06', 0, NULL, 0, NULL, 1),
(22987, 17701, '1', 'state board', '', '', '2016', 82.60, '', 1, '2024-03-21 06:20:06', 0, NULL, 0, NULL, 1),
(22988, 17701, '5', 'dote', '', 'ece', '2019', 73.00, '', 1, '2024-03-21 06:21:35', 0, NULL, 0, NULL, 1),
(22989, 17701, '3', 'government college of engineering', '', 'ece', '2022', 8.00, '', 1, '2024-03-21 06:22:29', 0, NULL, 0, NULL, 1),
(22990, 17695, '3', 'University ', '', 'B. Com Accounting and finance ', '2019', 63.00, '', 1, '2024-03-21 06:22:42', 0, NULL, 0, NULL, 1),
(22991, 17700, '1', 'State board', '', '', '2017', 85.40, '', 1, '2024-03-21 06:24:34', 0, NULL, 0, NULL, 1),
(22992, 17700, '2', 'State board', '', '', '2019', 61.60, '', 1, '2024-03-21 06:25:04', 0, NULL, 0, NULL, 1),
(22993, 17700, '3', 'Anna University ', '', 'B.Tech IT', '2023', 7.68, '', 1, '2024-03-21 06:25:44', 0, NULL, 0, NULL, 1),
(22994, 17704, '3', 'Anna University ', '', 'BE', '2020', 65.00, '', 1, '2024-03-21 06:41:50', 0, NULL, 0, NULL, 1),
(22995, 17705, '4', 'Anna University ', '', 'B.E', '2023', 83.00, '', 1, '2024-03-21 06:44:42', 0, NULL, 0, NULL, 1),
(22996, 17705, '2', 'State board ', '', '', '2019', 89.00, '', 1, '2024-03-21 06:45:10', 0, NULL, 0, NULL, 1),
(22997, 17706, '3', 'Bharathira university ', '', 'Bsc.IT', '2021', 60.00, '', 1, '2024-03-21 06:48:49', 0, NULL, 0, NULL, 1),
(22998, 17707, '4', 'Madras University ', '', 'MCA', '2023', 85.00, '', 1, '2024-03-21 07:01:46', 0, NULL, 0, NULL, 1),
(22999, 17686, '3', 'madras university', '', 'bsc zologoy', '2022', 6.09, '', 1, '2024-03-21 07:17:46', 0, NULL, 0, NULL, 1),
(23000, 17702, '3', 'anna university', '', 'b e computer science', '2024', 8.20, '', 1, '2024-03-21 07:20:59', 0, NULL, 0, NULL, 1),
(23001, 17691, '4', 'mgr university', '', 'mca', '2023', 7.90, '', 1, '2024-03-21 07:25:07', 0, NULL, 0, NULL, 1),
(23002, 17710, '3', 'university of madras', '', 'bsc mathematics', '0202', 71.14, '', 1, '2024-03-21 07:28:57', 0, NULL, 0, NULL, 1),
(23003, 17709, '3', 'Anna University ', '', 'B.E', '2023', 83.00, '', 1, '2024-03-21 07:41:55', 0, NULL, 0, NULL, 1),
(23004, 17712, '3', 'manonmani university', '', 'bsc ecectronics', '2022', 8.03, '', 1, '2024-03-21 07:42:58', 0, NULL, 0, NULL, 1),
(23005, 17708, '3', 'madras university', '', 'bca', '2023', 7.20, '', 1, '2024-03-21 07:51:05', 0, NULL, 0, NULL, 1),
(23006, 17713, '3', 'meenakshi college for women ', '', 'ba economics', '2019', 62.00, '', 1, '2024-03-21 08:02:57', 0, NULL, 0, NULL, 1),
(23007, 17713, '5', 'meenakshi college for women', '', 'retailmanagement', '2019', 67.00, '', 1, '2024-03-21 08:03:51', 0, NULL, 0, NULL, 1),
(23008, 17716, '4', 'Bharathiar University ', '', 'Msc computer science ', '2023', 80.00, '', 1, '2024-03-21 09:04:29', 0, NULL, 0, NULL, 1),
(23009, 17714, '3', 'anna university ', '', 'b.tech it', '2023', 72.00, '', 1, '2024-03-21 09:04:52', 0, NULL, 0, NULL, 1),
(23010, 17716, '3', 'Bharathidasan University ', '', 'Bsc computer science ', '2021', 75.00, '', 1, '2024-03-21 09:05:06', 0, NULL, 0, NULL, 1),
(23011, 17716, '2', 'State board ', '', '', '2018', 70.00, '', 1, '2024-03-21 09:05:42', 0, NULL, 0, NULL, 1),
(23012, 17716, '1', 'Sate board ', '', '', '2016', 78.00, '', 1, '2024-03-21 09:06:24', 0, NULL, 0, NULL, 1),
(23013, 17715, '3', 'periyar university', '', 'bsc fashion desiging', '2021', 74.00, '', 1, '2024-03-21 09:28:45', 0, NULL, 0, NULL, 1),
(23014, 17718, '3', 'University ', '', 'B.tech', '2021', 7.10, '', 1, '2024-03-21 09:42:21', 1, '2024-03-21 09:42:37', 0, NULL, 0),
(23015, 17718, '3', 'Crescent University ', '', 'B.tech', '2021', 7.10, '', 1, '2024-03-21 09:43:06', 0, NULL, 0, NULL, 1),
(23016, 17721, '3', 'Tiruvalluvar University', '', 'bsc', '2022', 60.00, '', 1, '2024-03-21 11:25:04', 0, NULL, 0, NULL, 1),
(23017, 17725, '3', 'autonomous', '', 'ba economics', '2022', 70.00, '', 1, '2024-03-21 02:11:06', 0, NULL, 0, NULL, 1),
(23018, 17719, '3', 'Sethu institute of technology ', '', 'B.E computer science engineering ', '2022', 7.89, '', 1, '2024-03-21 02:28:34', 0, NULL, 0, NULL, 1),
(23019, 17726, '3', 'Alagappa University ', '', 'B.A English literature ', '2023', 71.00, '', 1, '2024-03-21 04:07:09', 1, '2024-03-21 04:07:35', 0, NULL, 1),
(23020, 17727, '4', 'anna university', '', 'M.E', '2023', 82.00, '', 1, '2024-03-21 05:40:56', 1, '2024-03-21 05:44:12', 0, NULL, 1),
(23021, 17727, '3', 'anna university', '', 'B.E', '2021', 74.00, '', 1, '2024-03-21 05:44:50', 0, NULL, 0, NULL, 1),
(23022, 17727, '2', 'tamil nadu state board', '', '', '2017', 68.00, '', 1, '2024-03-21 05:45:46', 0, NULL, 0, NULL, 1),
(23023, 17727, '1', 'tamil nadu state board', '', '', '2015', 80.00, '', 1, '2024-03-21 05:46:13', 0, NULL, 0, NULL, 1),
(23024, 17728, '4', 'vit university', '', 'mba', '2022', 7.00, '', 1, '2024-03-22 04:13:05', 0, NULL, 0, NULL, 1),
(23025, 17733, '3', 'New prince shri bhavani college of engineering and technology ', '', 'BE CSE', '2022', 85.00, '', 1, '2024-03-22 04:37:15', 0, NULL, 0, NULL, 1),
(23026, 17730, '1', 'State board of school examinations Tamilnadu ', '', 'Nil', '2020', 52.00, '', 1, '2024-03-22 04:41:49', 0, NULL, 0, NULL, 1),
(23027, 17735, '1', 'State board', '', '', '2017', 80.00, '', 1, '2024-03-22 04:42:35', 0, NULL, 0, NULL, 1),
(23028, 17735, '2', 'State board ', '', '', '2019', 43.00, '', 1, '2024-03-22 04:43:57', 0, NULL, 0, NULL, 1),
(23029, 17731, '3', 'New prince shri bhavani college of engineering and technology ', '', 'BE CSE', '2022', 70.00, '', 1, '2024-03-22 04:44:19', 0, NULL, 0, NULL, 1),
(23030, 17735, '3', 'Anna University ', '', 'B.E computer Science ', '2023', 82.00, '', 1, '2024-03-22 04:44:50', 0, NULL, 0, NULL, 1),
(23031, 17736, '3', 'Thiruvalluvar ', '', 'B.sc Computer Science ', '2020', 70.10, '', 1, '2024-03-22 04:50:09', 0, NULL, 0, NULL, 1),
(23032, 17734, '3', 'Thiruvalluvar university', '', 'Bachelor of computer application', '2022', 75.00, '', 1, '2024-03-22 04:51:37', 0, NULL, 0, NULL, 1),
(23033, 17740, '3', 'Anna University ', '', 'B.tech', '2023', 7.80, '', 1, '2024-03-22 05:15:51', 0, NULL, 0, NULL, 1),
(23034, 17744, '3', 'University college of engineering kanchipuram', '', 'BE', '2020', 70.00, '', 1, '2024-03-22 05:16:10', 0, NULL, 0, NULL, 1),
(23035, 17740, '1', 'Government board of higher secondary school tamilnadu ', '', '', '2018', 83.60, '', 1, '2024-03-22 05:16:29', 1, '2024-03-22 05:19:10', 0, NULL, 0),
(23036, 17744, '2', 'State board', '', '', '2016', 92.00, '', 1, '2024-03-22 05:16:47', 0, NULL, 0, NULL, 1),
(23037, 17743, '1', 'State board', '', '', '2010', 76.00, '', 1, '2024-03-22 05:17:16', 0, NULL, 0, NULL, 1),
(23038, 17745, '4', 'Anna University ', '', 'Master of Computer Application ', '2024', 87.00, '', 1, '2024-03-22 05:17:16', 0, NULL, 0, NULL, 1),
(23039, 17744, '1', 'State board', '', '', '2014', 94.00, '', 1, '2024-03-22 05:17:19', 0, NULL, 0, NULL, 1),
(23040, 17741, '1', 'State Board ', '', '', '2013', 89.60, '', 1, '2024-03-22 05:17:25', 0, NULL, 0, NULL, 1),
(23041, 17743, '2', 'State board ', '', '', '2014', 69.00, '', 1, '2024-03-22 05:17:37', 0, NULL, 0, NULL, 1),
(23042, 17741, '2', 'State Board ', '', '', '2015', 75.50, '', 1, '2024-03-22 05:17:50', 0, NULL, 0, NULL, 1),
(23043, 17745, '3', 'Thiruvalluvar University ', '', 'BCA', '2022', 85.00, '', 1, '2024-03-22 05:17:51', 0, NULL, 0, NULL, 1),
(23044, 17739, '3', 'Anna University ', '', 'B.Tech', '2023', 7.89, '', 1, '2024-03-22 05:18:04', 0, NULL, 0, NULL, 1),
(23045, 17741, '3', 'Pondicherry university ', '', 'B. Tech ', '2019', 84.20, '', 1, '2024-03-22 05:18:22', 0, NULL, 0, NULL, 1),
(23046, 17742, '3', 'SRM University of ramapuram', '', 'B.com', '2023', 79.00, '', 1, '2024-03-22 05:18:25', 0, NULL, 0, NULL, 1),
(23047, 17743, '3', 'Madras University ', '', 'B sc Biotechnology ', '2017', 62.00, '', 1, '2024-03-22 05:18:25', 0, NULL, 0, NULL, 1),
(23048, 17743, '4', 'Madras University ', '', 'M.sc biotechnology ', '2019', 61.00, '', 1, '2024-03-22 05:18:50', 0, NULL, 0, NULL, 1),
(23049, 17740, '2', 'Government board of higher secondary school tamilnadu ', '', '', '2018', 65.00, '', 1, '2024-03-22 05:20:01', 0, NULL, 0, NULL, 1),
(23050, 17740, '1', 'Government board of higher secondary school tamilnadu ', '', '', '2016', 83.60, '', 1, '2024-03-22 05:21:00', 0, NULL, 0, NULL, 1),
(23051, 17748, '1', 'State board ', '', '', '2017', 67.80, '', 1, '2024-03-22 05:21:18', 1, '2024-03-22 05:22:23', 0, NULL, 1),
(23052, 17748, '2', 'State board ', '', '', '2019', 45.00, '', 1, '2024-03-22 05:23:04', 0, NULL, 0, NULL, 1),
(23053, 17748, '3', 'Anna University ', '', 'B.E COMPUTER SCIENCE ', '2023', 62.00, '', 1, '2024-03-22 05:25:04', 0, NULL, 0, NULL, 1),
(23054, 17751, '3', 'Anna University ', '', 'B.E Civil', '2019', 65.00, '', 1, '2024-03-22 05:34:52', 0, NULL, 0, NULL, 1),
(23055, 17723, '3', 'Bharathiyar University ', '', 'B.Com IT', '2023', 65.00, '', 1, '2024-03-22 05:35:05', 0, NULL, 0, NULL, 1),
(23056, 17752, '4', 'Alagappa University ', '', 'M.B.A Project Management ', '2022', 67.85, '', 1, '2024-03-22 05:35:08', 0, NULL, 0, NULL, 1),
(23057, 17746, '5', 'Solanallur', '', 'B. Com. Bank management', '2022', 80.00, '', 1, '2024-03-22 05:36:02', 0, NULL, 0, NULL, 1),
(23058, 17752, '3', 'Anna University ', '', 'B.E. mechanical engineering ', '2018', 6.63, '', 1, '2024-03-22 05:36:10', 0, NULL, 0, NULL, 1),
(23059, 17753, '3', 'madras university', '', 'bsc computer science', '2023', 78.00, '', 1, '2024-03-22 05:37:11', 0, NULL, 0, NULL, 1),
(23060, 17756, '4', 'SRMASC ', '', 'mca', '2024', 67.90, '', 1, '2024-03-22 05:40:33', 0, NULL, 0, NULL, 1),
(23061, 17749, '3', 'Bharathidasan University ', '', 'Bcom', '2023', 58.00, '', 1, '2024-03-22 05:42:08', 0, NULL, 0, NULL, 1),
(23062, 17754, '3', 'Anna University ', '', 'BE-ECE ', '2021', 74.00, '', 1, '2024-03-22 05:50:35', 0, NULL, 0, NULL, 1),
(23063, 17754, '2', 'State board ', '', '', '2017', 86.00, '', 1, '2024-03-22 05:51:16', 0, NULL, 0, NULL, 1),
(23064, 17754, '1', 'State board ', '', '', '2015', 89.00, '', 1, '2024-03-22 05:51:53', 0, NULL, 0, NULL, 1),
(23065, 17758, '3', 'Anna University', '', 'B.e(aeronautical)', '2016', 63.00, '', 1, '2024-03-22 06:05:26', 0, NULL, 0, NULL, 1),
(23066, 17724, '3', 'Madras University ', '', 'B.Com', '2022', 85.00, '', 1, '2024-03-22 06:08:03', 0, NULL, 0, NULL, 1),
(23067, 17764, '3', 'avinashi lingam', '', 'b.e', '2018', 73.00, '', 1, '2024-03-22 06:08:24', 0, NULL, 0, NULL, 1),
(23068, 17759, '3', 'Anna university', '', 'B.E', '2023', 85.00, '', 1, '2024-03-22 06:09:02', 1, '2024-03-22 06:12:31', 0, NULL, 1),
(23069, 17765, '3', 'Anna university', '', 'B. E', '2023', 7.83, '', 1, '2024-03-22 06:09:25', 0, NULL, 0, NULL, 1),
(23070, 17750, '3', 'Palar agricultural College ', '', 'Bsc.(hons). agriculture ', '2023', 82.00, '', 1, '2024-03-22 06:10:24', 0, NULL, 0, NULL, 1),
(23071, 17759, '1', 'State board', '', '', '2016', 84.00, '', 1, '2024-03-22 06:10:27', 1, '2024-03-22 06:10:54', 0, NULL, 0),
(23072, 17759, '2', 'State board', '', '', '2019', 65.00, '', 1, '2024-03-22 06:11:36', 0, NULL, 0, NULL, 1),
(23073, 17759, '1', 'State board', '', '', '2016', 84.00, '', 1, '2024-03-22 06:12:11', 0, NULL, 0, NULL, 1),
(23074, 17763, '1', 'State Board of Tamilnadu', '', '', '2017', 87.00, '', 1, '2024-03-22 06:12:15', 0, NULL, 0, NULL, 1),
(23075, 17763, '2', 'State Board of Tamilnadu ', '', '', '2019', 69.00, '', 1, '2024-03-22 06:13:35', 0, NULL, 0, NULL, 1),
(23076, 17770, '1', 'State Board', '', '', '2017', 89.20, '', 1, '2024-03-22 06:14:10', 0, NULL, 0, NULL, 1),
(23077, 17763, '3', 'Anna University ', '', 'B.E Computer Science and Engineering ', '2023', 78.20, '', 1, '2024-03-22 06:14:16', 0, NULL, 0, NULL, 1),
(23078, 17770, '2', 'State Board', '', '', '2019', 77.00, '', 1, '2024-03-22 06:14:31', 0, NULL, 0, NULL, 1),
(23079, 17770, '3', 'Anna university', '', 'BE-Computer science and Engineering', '2023', 7.20, '', 1, '2024-03-22 06:15:26', 0, NULL, 0, NULL, 1),
(23080, 17737, '3', 'Calicut University ', '', 'B com', '2021', 58.00, '', 1, '2024-03-22 06:20:52', 0, NULL, 0, NULL, 1),
(23081, 17772, '3', 'Deemed University ', '', 'Mechanical ', '2023', 95.00, '', 1, '2024-03-22 06:31:56', 0, NULL, 0, NULL, 1),
(23082, 17768, '4', 'Madras University ', '', 'Pg', '2023', 72.00, '', 1, '2024-03-22 06:33:07', 0, NULL, 0, NULL, 1),
(23083, 17776, '3', 'Anna University ', '', 'BE', '2021', 7.66, '', 1, '2024-03-22 06:41:52', 0, NULL, 0, NULL, 1),
(23084, 17777, '4', 'Annamalai University ', '', 'Msc Computer science ', '2023', 75.00, '', 1, '2024-03-22 06:50:41', 0, NULL, 0, NULL, 1),
(23085, 17778, '4', 'Bharathidasan', '', 'Msc', '2023', 90.40, '', 1, '2024-03-22 06:54:49', 0, NULL, 0, NULL, 1),
(23086, 17780, '3', 'Anna unniversity', '', 'BE', '2019', 63.00, '', 1, '2024-03-22 07:01:55', 0, NULL, 0, NULL, 1),
(23087, 17780, '2', 'State board', '', '', '2015', 83.00, '', 1, '2024-03-22 07:02:31', 0, NULL, 0, NULL, 1),
(23088, 17732, '4', 'Bharathidasan university', '', 'MBA', '2023', 71.00, '', 1, '2024-03-22 07:02:49', 0, NULL, 0, NULL, 1),
(23089, 17780, '1', 'State board', '', '', '2013', 92.00, '', 1, '2024-03-22 07:02:49', 0, NULL, 0, NULL, 1),
(23090, 17732, '3', 'Anna university', '', 'B.E mechanical ', '2021', 74.00, '', 1, '2024-03-22 07:03:31', 0, NULL, 0, NULL, 1),
(23091, 17782, '3', 'Pondicherry university ', '', 'Bsc computer science ', '2021', 70.00, '', 1, '2024-03-22 07:03:44', 0, NULL, 0, NULL, 1),
(23092, 17654, '3', 'JNTU Kakinada', '', 'B.Tech', '2023', 65.30, '', 1, '2024-03-22 07:04:40', 0, NULL, 0, NULL, 1),
(23093, 17654, '2', 'NRI ACADEMY ', '', '', '2019', 95.00, '', 1, '2024-03-22 07:05:05', 0, NULL, 0, NULL, 1),
(23094, 17784, '3', 'University of Madras', '', 'B.Sc', '2019', 74.00, '', 1, '2024-03-22 07:09:20', 1, '2024-03-22 07:09:49', 0, NULL, 1),
(23095, 17784, '2', 'Private', '', '', '2016', 84.00, '', 1, '2024-03-22 07:10:36', 1, '2024-03-22 07:12:01', 0, NULL, 0),
(23096, 17784, '1', 'Government', '', '', '2014', 95.00, '', 1, '2024-03-22 07:11:36', 1, '2024-03-22 07:11:58', 0, NULL, 0),
(23097, 17783, '3', 'University of Madras ', '', 'Bsc computer science ', '2019', 75.00, '', 1, '2024-03-22 07:11:42', 0, NULL, 0, NULL, 1),
(23098, 17762, '3', 'madras university', '', 'bsc computer science', '2018', 70.00, '', 1, '2024-03-22 07:24:56', 0, NULL, 0, NULL, 1),
(23099, 17787, '1', 'State Board of Tamilnadu', '', '', '2015', 89.00, '', 1, '2024-03-22 07:43:38', 0, NULL, 0, NULL, 1),
(23100, 17787, '2', 'State Board of Tamilnadu', '', '', '2017', 78.00, '', 1, '2024-03-22 07:44:07', 0, NULL, 0, NULL, 1),
(23101, 17787, '3', 'Vels university', '', 'BSc. Maths', '2020', 82.00, '', 1, '2024-03-22 07:44:29', 0, NULL, 0, NULL, 1),
(23102, 17787, '4', 'University of madras', '', 'MSc. Statistics', '2022', 70.00, '', 1, '2024-03-22 07:44:52', 0, NULL, 0, NULL, 1),
(23103, 17786, '3', 'Anna university', '', 'BE. Cse', '2022', 79.00, '', 1, '2024-03-22 08:04:44', 0, NULL, 0, NULL, 1),
(23104, 17788, '5', 'Jayaraj annapackima csc', '', 'DAE', '2021', 70.00, '', 1, '2024-03-22 09:14:17', 0, NULL, 0, NULL, 1),
(23105, 17760, '3', 'Anna university ', '', 'B E mech ', '2017', 66.00, '', 1, '2024-03-22 09:15:55', 0, NULL, 0, NULL, 1),
(23106, 17760, '1', 'Matriculation ', '', '', '2011', 63.00, '', 1, '2024-03-22 09:16:51', 0, NULL, 0, NULL, 1),
(23107, 17760, '2', 'State board ', '', '', '2013', 68.00, '', 1, '2024-03-22 09:17:20', 0, NULL, 0, NULL, 1),
(23108, 17790, '3', 'Anna university', '', 'Bachelor degree', '2018', 6.71, '', 1, '2024-03-22 09:37:30', 0, NULL, 0, NULL, 1),
(23109, 17789, '1', 'State board ', '', '', '2011', 91.00, '', 1, '2024-03-22 09:38:56', 0, NULL, 0, NULL, 1),
(23110, 17789, '2', 'State board ', '', '', '2013', 75.00, '', 1, '2024-03-22 09:39:27', 0, NULL, 0, NULL, 1),
(23111, 17789, '3', 'Madras university ', '', 'Bsc Computer Science ', '2016', 63.00, '', 1, '2024-03-22 09:40:14', 0, NULL, 0, NULL, 1),
(23112, 17789, '4', 'Madras university distance education ', '', 'MCA', '2020', 60.00, '', 1, '2024-03-22 09:40:46', 0, NULL, 0, NULL, 1),
(23113, 17791, '3', 'Madras University ', '', 'BBA', '2019', 95.00, '', 1, '2024-03-22 10:11:12', 0, NULL, 0, NULL, 1),
(23114, 17792, '3', 'Bharathaiyar univercity ', '', 'BBA', '2020', 70.00, '', 1, '2024-03-22 10:34:51', 0, NULL, 0, NULL, 1),
(23115, 17793, '3', 'Periyar University ', '', 'BCA', '2022', 75.00, '', 1, '2024-03-22 10:37:08', 0, NULL, 0, NULL, 1),
(23116, 17794, '4', 'Periyar University ', '', 'MSC MATHEMATICS ', '2021', 80.00, '', 1, '2024-03-22 10:39:20', 0, NULL, 0, NULL, 1),
(23117, 17797, '3', 'Anna University ', '', 'BE MECHANICAL ENGINEERING ', '2022', 75.00, '', 1, '2024-03-22 10:54:03', 0, NULL, 0, NULL, 1),
(23118, 17799, '3', 'Bharathidhasan University ', '', 'BCA', '2021', 78.00, '', 1, '2024-03-22 11:44:06', 0, NULL, 0, NULL, 1),
(23119, 17801, '1', 'State board', '', '', '2014', 89.00, '', 1, '2024-03-23 04:18:17', 0, NULL, 0, NULL, 1),
(23120, 17801, '2', 'State board', '', '', '2016', 65.00, '', 1, '2024-03-23 04:18:48', 0, NULL, 0, NULL, 1),
(23121, 17800, '3', 'Anna university ', '', 'b.E', '2022', 78.40, '', 1, '2024-03-23 04:19:09', 0, NULL, 0, NULL, 1),
(23122, 17801, '3', 'Anna university', '', 'BE (CSE) ', '2020', 72.60, '', 1, '2024-03-23 04:19:52', 0, NULL, 0, NULL, 1),
(23123, 17800, '2', 'State board of Tamil Nadu ', '', '', '2018', 72.25, '', 1, '2024-03-23 04:20:12', 0, NULL, 0, NULL, 1),
(23124, 17800, '1', 'State Board of Tamil Nadu ', '', '', '2016', 81.20, '', 1, '2024-03-23 04:21:11', 0, NULL, 0, NULL, 1),
(23125, 17803, '3', 'Karpagam Unviresity', '', 'BE (ECE)', '2023', 75.10, '', 1, '2024-03-23 04:34:32', 0, NULL, 0, NULL, 1),
(23126, 17803, '2', 'Nav Bharath matric higher secondary school', '', '', '2019', 53.10, '', 1, '2024-03-23 04:35:14', 0, NULL, 0, NULL, 1),
(23127, 17803, '1', 'Arunodhaya higher secondary school', '', '', '2017', 93.00, '', 1, '2024-03-23 04:35:42', 0, NULL, 0, NULL, 1),
(23128, 17804, '3', 'DB Jain College ', '', 'B.sc Computer science ', '2021', 80.00, '', 1, '2024-03-23 04:39:48', 0, NULL, 0, NULL, 1),
(23129, 17806, '4', 'Anna university ', '', 'MBA', '2022', 8.50, '', 1, '2024-03-23 04:45:28', 0, NULL, 0, NULL, 1),
(23130, 17807, '4', 'University ', '', 'MBA', '2023', 80.00, '', 1, '2024-03-23 04:48:37', 0, NULL, 0, NULL, 1),
(23131, 17807, '3', 'University ', '', 'BE', '2020', 70.00, '', 1, '2024-03-23 04:49:01', 0, NULL, 0, NULL, 1),
(23132, 17808, '3', 'Madras University', '', 'b.Sc -Maths', '2022', 75.00, '', 1, '2024-03-23 04:49:31', 0, NULL, 0, NULL, 1),
(23133, 17809, '3', 'Anna university, Chennai', '', 'B.E (ECE)', '2018', 64.00, '', 1, '2024-03-23 04:52:53', 0, NULL, 0, NULL, 1),
(23134, 17812, '3', 'Anna university', '', 'Bachelor of engineering (computer science) ', '2022', 89.90, '', 1, '2024-03-23 05:05:09', 0, NULL, 0, NULL, 1),
(23135, 17802, '4', 'madras university', '', 'msc mathematics', '2023', 71.00, '', 1, '2024-03-23 05:08:11', 0, NULL, 0, NULL, 1),
(23136, 17805, '3', 'Madras university ', '', 'Ba', '2023', 80.00, '', 1, '2024-03-23 05:08:50', 0, NULL, 0, NULL, 1),
(23137, 17814, '3', 'anna university', '', 'be mechanical engineering', '2021', 7.89, '', 1, '2024-03-23 05:13:23', 0, NULL, 0, NULL, 1),
(23138, 17810, '3', 'State board ', '', 'B.E', '2019', 8.90, '', 1, '2024-03-23 05:16:25', 0, NULL, 0, NULL, 1),
(23139, 17810, '1', 'State board ', '', '', '2017', 96.00, '', 1, '2024-03-23 05:17:01', 0, NULL, 0, NULL, 1),
(23140, 17810, '2', 'State board ', '', '', '2019', 79.00, '', 1, '2024-03-23 05:17:21', 0, NULL, 0, NULL, 1),
(23141, 17811, '3', 'Anna University', '', 'BE', '2023', 83.00, '', 1, '2024-03-23 05:19:23', 0, NULL, 0, NULL, 1),
(23142, 17813, '3', 'Anna University ', '', 'B.tech', '2023', 8.47, '', 1, '2024-03-23 05:20:45', 0, NULL, 0, NULL, 1),
(23143, 17815, '1', 'SrinivasaRao.Hr.Sec.School', '', '', '2009', 80.00, '', 1, '2024-03-23 05:21:18', 1, '2024-03-23 05:22:32', 0, NULL, 0),
(23144, 17815, '1', 'State Board', '', '', '2009', 80.00, '', 1, '2024-03-23 05:21:44', 1, '2024-03-23 05:23:05', 0, NULL, 0),
(23145, 17815, '1', 'State Board', '', '', '2009', 80.00, '', 1, '2024-03-23 05:23:31', 0, NULL, 0, NULL, 1),
(23146, 17815, '2', 'State Board ', '', '', '2011', 65.00, '', 1, '2024-03-23 05:23:44', 0, NULL, 0, NULL, 1),
(23147, 17815, '3', 'Bharathidasan University', '', 'B.sc ( Computer Science)', '2014', 79.00, '', 1, '2024-03-23 05:24:29', 0, NULL, 0, NULL, 1),
(23148, 17821, '3', 'Autonomous ', '', 'B.E Civil engineering ', '2022', 8.20, '', 1, '2024-03-23 05:31:17', 0, NULL, 0, NULL, 1),
(23149, 17825, '3', 'Bharathiyar University ', '', 'Bsc information technology ', '2018', 70.00, '', 1, '2024-03-23 05:40:42', 0, NULL, 0, NULL, 1),
(23150, 17823, '3', 'Anna University ', '', 'BE', '2024', 65.00, '', 1, '2024-03-23 05:40:45', 0, NULL, 0, NULL, 1),
(23151, 17822, '4', 'Madras University ', '', 'MBA hr', '2024', 80.00, '', 1, '2024-03-23 05:41:37', 0, NULL, 0, NULL, 1),
(23152, 17819, '1', 'Chennai girls Hr sec school pulla avaenue shenay nager ', '', '', '2017', 88.00, '', 1, '2024-03-23 05:42:15', 1, '2024-03-23 05:47:04', 0, NULL, 1),
(23153, 17819, '2', 'Chennai girls hr sec school pulla avaenue shenay nager ', '', '', '2019', 75.00, '', 1, '2024-03-23 05:46:04', 0, NULL, 0, NULL, 1),
(23154, 17826, '3', 'Prist University', '', 'BCA', '2022', 78.00, '', 1, '2024-03-23 05:49:38', 0, NULL, 0, NULL, 1),
(23155, 11075, '3', 'PRIST UNIVERSITY ', '', 'BCA', '2022', 68.00, '', 1, '2024-03-23 05:53:11', 0, NULL, 0, NULL, 1),
(23156, 17818, '3', 'Veltech multitech engineering college', '', 'B.E(EEE)', '2023', 8.35, '', 1, '2024-03-23 05:58:38', 0, NULL, 0, NULL, 1),
(23157, 17824, '3', 'Prist University ', '', 'B.com', '2022', 81.00, '', 1, '2024-03-23 06:02:53', 0, NULL, 0, NULL, 1),
(23158, 17828, '1', 'Nadar Mahamai Higher secondary school ', '', '', '2016', 89.00, '', 1, '2024-03-23 06:05:46', 0, NULL, 0, NULL, 1),
(23159, 17829, '3', 'Karpagam University ', '', 'B.E(mechanical engineering)', '2022', 70.00, '', 1, '2024-03-23 06:08:16', 0, NULL, 0, NULL, 1),
(23160, 17828, '2', 'Nadar Mahamai Higher secondary school ', '', '', '2018', 80.00, '', 1, '2024-03-23 06:08:28', 0, NULL, 0, NULL, 1),
(23161, 17829, '2', 'NM Higher Secondary School ', '', '', '2018', 75.00, '', 1, '2024-03-23 06:08:54', 0, NULL, 0, NULL, 1),
(23162, 17828, '3', 'Kamaraj college of engineering and Technology', '', 'B.E MECHANICAL ENGIEERING ', '2022', 79.50, '', 1, '2024-03-23 06:09:21', 0, NULL, 0, NULL, 1),
(23163, 17829, '1', 'NM Higher Secondary school ', '', '', '2016', 88.00, '', 1, '2024-03-23 06:09:35', 0, NULL, 0, NULL, 1),
(23164, 17820, '3', 'DMI ENGINEERING COLLEGE ', '', 'B.E', '2023', 85.00, '', 1, '2024-03-23 06:19:06', 0, NULL, 0, NULL, 1),
(23165, 17832, '1', 'G.G.S.M.M.HR.SEC.SCHOOL', '', '', '2016', 91.00, '', 1, '2024-03-23 07:02:11', 0, NULL, 0, NULL, 1),
(23166, 17832, '2', 'Silver Jubilee.M.M.HR.SEC.SCHOOL', '', '', '2018', 82.00, '', 1, '2024-03-23 07:02:51', 0, NULL, 0, NULL, 1),
(23167, 17832, '3', 'A.V.C College of engineering ', '', 'Mechanical engineering ', '2022', 76.00, '', 1, '2024-03-23 07:03:22', 0, NULL, 0, NULL, 1),
(23168, 17831, '3', 'Bharathiar University coimbatore ', '', 'B.voc Multimedia and Animation ', '2022', 75.00, '', 1, '2024-03-23 07:04:10', 0, NULL, 0, NULL, 1),
(23169, 17833, '3', 'Tiruvalluvar university', '', 'B. Sc mathematics', '2022', 86.00, '', 1, '2024-03-23 07:04:28', 0, NULL, 0, NULL, 1),
(23170, 17834, '1', 'Sacred heart high school ', '', '', '2018', 79.60, '', 1, '2024-03-23 07:06:09', 0, NULL, 0, NULL, 1),
(23171, 17834, '2', 'Govt high secondary school ', '', '', '2018', 60.90, '', 1, '2024-03-23 07:06:42', 0, NULL, 0, NULL, 1),
(23172, 17834, '3', 'Sanghamam Arts and science college ', '', 'B.SC PHYSICS ', '2021', 80.00, '', 1, '2024-03-23 07:07:12', 0, NULL, 0, NULL, 1),
(23173, 17834, '4', 'Thiru A govindasamy arts college ', '', 'M.Sc physics ', '2023', 72.00, '', 1, '2024-03-23 07:07:38', 0, NULL, 0, NULL, 1),
(23174, 17835, '4', 'University of Madras ', '', 'MBA in finance and accounting ', '2021', 80.00, '', 1, '2024-03-23 07:33:30', 0, NULL, 0, NULL, 1),
(23175, 17836, '3', 'madras university', '', 'bca', '2020', 69.00, '', 1, '2024-03-23 07:36:23', 0, NULL, 0, NULL, 1),
(23176, 17838, '4', 'jain university', '', 'mca', '2025', 73.00, '', 1, '2024-03-23 07:51:44', 0, NULL, 0, NULL, 1),
(23177, 17839, '3', 'Anna University ', '', 'B.E ECE', '2019', 70.00, '', 1, '2024-03-23 07:51:46', 0, NULL, 0, NULL, 1),
(23178, 17839, '1', 'State Board', '', '', '2012', 78.00, '', 1, '2024-03-23 07:52:49', 0, NULL, 0, NULL, 1),
(23179, 17839, '2', 'State Board ', '', '', '2015', 68.00, '', 1, '2024-03-23 07:53:28', 0, NULL, 0, NULL, 1),
(23180, 17841, '3', 'Anna University ', '', 'B.E', '2020', 8.29, '', 1, '2024-03-23 07:54:21', 0, NULL, 0, NULL, 1),
(23181, 17843, '3', 'Anna University ', '', 'Computer science engineering ', '2024', 82.00, '', 1, '2024-03-23 07:59:24', 0, NULL, 0, NULL, 1),
(23182, 17842, '2', 'St.Bedes A I Hr Sec School', '', '', '2020', 69.00, '', 1, '2024-03-23 08:00:04', 0, NULL, 0, NULL, 1),
(23183, 17842, '3', 'Kcg College of Technology ', '', 'Bachelor\'s ', '2024', 8.00, '', 1, '2024-03-23 08:01:15', 0, NULL, 0, NULL, 1),
(23184, 17844, '4', 'Alagappa University', '', 'B. Com', '2023', 63.00, '', 1, '2024-03-23 08:09:19', 0, NULL, 0, NULL, 1),
(23185, 17847, '4', 'Bangalore University ', '', 'MBA', '2024', 66.00, '', 1, '2024-03-23 08:37:23', 0, NULL, 0, NULL, 1),
(23186, 17849, '3', 'Thiruvalluvar University ', '', 'BCA', '2010', 67.70, '', 1, '2024-03-23 09:13:11', 0, NULL, 0, NULL, 1),
(23187, 17848, '3', 'Anna university', '', 'B. E', '2020', 6.65, '', 1, '2024-03-23 09:15:24', 0, NULL, 0, NULL, 1),
(23188, 17830, '4', 'Biju patnaik University of Technology ', '', 'Mca', '2016', 80.00, '', 1, '2024-03-23 09:38:13', 0, NULL, 0, NULL, 1),
(23189, 17845, '3', 'Anna University ', '', 'BE', '2024', 85.00, '', 1, '2024-03-24 01:47:10', 0, NULL, 0, NULL, 1),
(23190, 17853, '3', 'Sv University tirupati ', '', 'B.com computer application ', '2021', 78.00, '', 1, '2024-03-24 02:26:02', 0, NULL, 0, NULL, 1),
(23191, 17855, '3', 'Anna university ', '', 'B tech', '2021', 80.00, '', 1, '2024-03-24 07:02:09', 0, NULL, 0, NULL, 1),
(23192, 17856, '3', 'Bharathiyar University ', '', 'Bca', '2020', 58.00, '', 1, '2024-03-24 04:46:35', 0, NULL, 0, NULL, 1),
(23193, 17857, '3', 'K Ramkrishnan college of Technology ', '', 'B.E', '2023', 70.00, '', 1, '2024-03-25 03:50:14', 0, NULL, 0, NULL, 1),
(23194, 17857, '2', 'St.Andrews matric HR Sec School ', '', '', '2019', 68.00, '', 1, '2024-03-25 03:51:01', 0, NULL, 0, NULL, 1),
(23195, 17857, '1', 'St.Andrews Matric HR Sec School ', '', '', '2017', 81.00, '', 1, '2024-03-25 03:51:36', 0, NULL, 0, NULL, 1),
(23196, 17858, '3', 'Bharathidasan ', '', 'BCA', '2023', 71.00, '', 1, '2024-03-25 04:18:54', 0, NULL, 0, NULL, 1),
(23197, 17859, '4', 'Bharthidasan University', '', 'MCA', '2023', 76.00, '', 1, '2024-03-25 04:22:34', 0, NULL, 0, NULL, 1),
(23198, 17795, '3', 'anna university', '', 'b. e computer science and engineering', '2021', 7.54, '', 1, '2024-03-25 04:36:18', 0, NULL, 0, NULL, 1),
(23199, 17798, '3', 'Anna University ', '', 'B. E Computer Science and Engineering ', '2021', 73.00, '', 1, '2024-03-25 04:36:24', 1, '2024-03-25 04:36:49', 0, NULL, 1),
(23200, 17860, '3', 'anna university', '', 'b.e computer science and engineering', '2021', 74.00, '', 1, '2024-03-25 04:41:03', 0, NULL, 0, NULL, 1),
(23201, 17864, '1', 'tamilnadu goverment state board', '', '', '2017', 82.60, '', 1, '2024-03-25 04:45:43', 0, NULL, 0, NULL, 1),
(23202, 17864, '2', 'tamilnadu state government', '', '', '2019', 64.33, '', 1, '2024-03-25 04:46:32', 0, NULL, 0, NULL, 1),
(23203, 17864, '3', 'anna university ', '', 'be', '2023', 75.80, '', 1, '2024-03-25 04:47:12', 0, NULL, 0, NULL, 1),
(23204, 17865, '3', 'madurai Kamaraj University ', '', 'Bsc cs', '2022', 83.00, '', 1, '2024-03-25 04:47:34', 0, NULL, 0, NULL, 1),
(23205, 17861, '4', 'Bharathidasan University ', '', 'Master of Computer Application_(MCA)', '2020', 71.00, '', 1, '2024-03-25 04:47:49', 0, NULL, 0, NULL, 1),
(23206, 17861, '3', 'Bharathidasan University ', '', 'Bsc Mathematics ', '2017', 54.00, '', 1, '2024-03-25 04:48:19', 0, NULL, 0, NULL, 1),
(23207, 17862, '3', 'Sri kanyaka parameshwari college ', '', 'B. Com', '2022', 82.00, '', 1, '2024-03-25 04:48:21', 0, NULL, 0, NULL, 1),
(23208, 17865, '1', 'St.Justin Girls higher secondary school ', '', '', '2017', 94.00, '', 1, '2024-03-25 04:48:47', 0, NULL, 0, NULL, 1),
(23209, 17865, '2', 'St.Justin Girls Higher secondary school ', '', '', '2019', 79.00, '', 1, '2024-03-25 04:49:12', 0, NULL, 0, NULL, 1),
(23210, 17866, '3', 'Anna University ', '', 'B.E', '2023', 80.00, '', 1, '2024-03-25 04:57:21', 0, NULL, 0, NULL, 1),
(23211, 17866, '2', 'State board ', '', '', '2019', 75.00, '', 1, '2024-03-25 04:58:05', 0, NULL, 0, NULL, 1),
(23212, 17866, '1', 'State board ', '', '', '2017', 94.00, '', 1, '2024-03-25 04:58:21', 0, NULL, 0, NULL, 1),
(23213, 17868, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2023', 81.00, '', 1, '2024-03-25 05:03:48', 0, NULL, 0, NULL, 1),
(23214, 17869, '3', 'Anna University ', '', 'B.E(ECE)', '2023', 85.00, '', 1, '2024-03-25 05:04:02', 0, NULL, 0, NULL, 1),
(23215, 17873, '3', 'Anna University ', '', 'Bachelor of Enginneering ', '2023', 80.00, '', 1, '2024-03-25 05:04:04', 0, NULL, 0, NULL, 1),
(23216, 17868, '2', 'State Board ', '', '', '2019', 82.00, '', 1, '2024-03-25 05:04:19', 0, NULL, 0, NULL, 1),
(23217, 17869, '2', 'State Board ', '', '', '2019', 67.00, '', 1, '2024-03-25 05:04:27', 0, NULL, 0, NULL, 1),
(23218, 17873, '2', 'State Board ', '', '', '2019', 74.00, '', 1, '2024-03-25 05:04:37', 0, NULL, 0, NULL, 1),
(23219, 17867, '3', 'Madurai Kamaraj University, Madurai ', '', 'B.Com(computer applications)', '2023', 71.00, '', 1, '2024-03-25 05:04:42', 0, NULL, 0, NULL, 1),
(23220, 17869, '1', 'State Board ', '', '', '2017', 92.00, '', 1, '2024-03-25 05:05:05', 0, NULL, 0, NULL, 1),
(23221, 17867, '2', 'State board ', '', '', '2020', 53.00, '', 1, '2024-03-25 05:05:21', 1, '2024-03-25 05:06:31', 0, NULL, 0),
(23222, 17873, '1', 'State Board ', '', '', '2017', 94.00, '', 1, '2024-03-25 05:05:27', 0, NULL, 0, NULL, 1),
(23223, 17867, '1', 'State Board ', '', '', '2018', 71.00, '', 1, '2024-03-25 05:06:51', 0, NULL, 0, NULL, 1),
(23224, 17867, '2', 'State board ', '', '', '2020', 71.00, '', 1, '2024-03-25 05:07:17', 1, '2024-03-25 05:07:34', 0, NULL, 1),
(23225, 17878, '3', 'Periyar University ', '', 'B.sc', '2023', 64.70, '', 1, '2024-03-25 05:07:53', 0, NULL, 0, NULL, 1),
(23226, 17877, '1', 'Stateboard', '', '', '2016', 85.40, '', 1, '2024-03-25 05:08:20', 1, '2024-03-25 05:12:10', 0, NULL, 0),
(23227, 17875, '3', 'University ', '', 'BSC', '2024', 72.20, '', 1, '2024-03-25 05:08:37', 0, NULL, 0, NULL, 1),
(23228, 17876, '3', 'University ', '', 'B.sc(computer science)', '2023', 65.00, '', 1, '2024-03-25 05:09:35', 0, NULL, 0, NULL, 1),
(23229, 17871, '3', 'Anna University ', '', 'BE', '2022', 80.00, '', 1, '2024-03-25 05:09:47', 1, '2024-03-25 05:13:10', 0, NULL, 1),
(23230, 17870, '3', 'Anna University ', '', 'BE', '2021', 79.50, '', 1, '2024-03-25 05:10:18', 0, NULL, 0, NULL, 1),
(23231, 17877, '2', 'Stateboard', '', '', '2018', 83.58, '', 1, '2024-03-25 05:10:41', 0, NULL, 0, NULL, 1),
(23232, 17877, '1', 'Stateboard ', '', '', '2016', 85.40, '', 1, '2024-03-25 05:13:12', 0, NULL, 0, NULL, 1),
(23233, 17863, '3', 'Crescent University ', '', 'Electronics and communication engineering ', '2023', 73.00, '', 1, '2024-03-25 05:16:42', 0, NULL, 0, NULL, 1),
(23234, 17863, '5', 'Ramco polytechnic college ', '', 'Diploma in Electronics and communication engineeri', '2020', 78.00, '', 1, '2024-03-25 05:17:31', 0, NULL, 0, NULL, 1),
(23235, 17883, '4', 'Anna university ', '', 'Mca', '2024', 65.00, '', 1, '2024-03-25 05:18:30', 0, NULL, 0, NULL, 1),
(23236, 17879, '3', 'A. M. Jain college ', '', 'B. Com', '2021', 65.00, '', 1, '2024-03-25 05:18:45', 0, NULL, 0, NULL, 1),
(23237, 17882, '4', 'Anna University ', '', 'MCA ', '2024', 80.00, '', 1, '2024-03-25 05:19:17', 0, NULL, 0, NULL, 1),
(23238, 17881, '3', 'bharat university', '', 'bsc visual communication', '2022', 69.00, '', 1, '2024-03-25 05:22:52', 0, NULL, 0, NULL, 1),
(23239, 17872, '4', 'Bharathidasan University ', '', 'MCA', '2023', 77.00, '', 1, '2024-03-25 05:24:26', 1, '2024-03-25 05:24:50', 0, NULL, 1),
(23240, 17872, '3', 'Bharathidasan University ', '', 'B.sc Maths', '2021', 78.20, '', 1, '2024-03-25 05:25:59', 0, NULL, 0, NULL, 1),
(23241, 17880, '3', 'sri krish Adithya College of arts and science', '', 'b com it', '2023', 7.30, '', 1, '2024-03-25 05:29:17', 1, '2024-03-25 05:29:35', 0, NULL, 1),
(23242, 17874, '3', 'Periyar University ', '', 'Bsc CS', '2023', 66.00, '', 1, '2024-03-25 05:37:40', 0, NULL, 0, NULL, 1),
(23243, 17887, '4', 'Manonmaiam sundarnar university', '', 'Msc ca', '2023', 72.00, '', 1, '2024-03-25 05:40:36', 0, NULL, 0, NULL, 1),
(23244, 17888, '3', 'Thiruvalluvar University ', '', 'Bachelor\'s in arts in defence and strategic studie', '2023', 65.00, '', 1, '2024-03-25 05:41:04', 0, NULL, 0, NULL, 1),
(23245, 17886, '4', 'Chadalawada Ramanamma Engineering College', '', 'Master of Computer Applications', '2023', 88.00, '', 1, '2024-03-25 05:41:12', 0, NULL, 0, NULL, 1),
(23246, 17886, '3', 'Sri Venkateswara Arts College', '', 'Bachelor of Science', '2021', 81.00, '', 1, '2024-03-25 05:42:07', 0, NULL, 0, NULL, 1),
(23247, 17891, '3', 'Anna University', '', 'BE', '2023', 7.39, '', 1, '2024-03-25 05:45:49', 0, NULL, 0, NULL, 1),
(23248, 17892, '3', 'Periyar University Salem ', '', 'BCA', '2023', 70.00, '', 1, '2024-03-25 05:55:06', 0, NULL, 0, NULL, 1),
(23249, 17890, '3', 'MADRAS UNIVERSITY ', '', 'Bca', '2022', 83.00, '', 1, '2024-03-25 06:01:13', 0, NULL, 0, NULL, 1),
(23250, 17885, '3', 'madras university', '', 'bca', '0202', 76.00, '', 1, '2024-03-25 06:04:41', 0, NULL, 0, NULL, 1),
(23251, 17895, '3', 'Lovely Professional University', '', 'B tech (Computer science and engineering) ', '2023', 72.80, '', 1, '2024-03-25 06:05:57', 0, NULL, 0, NULL, 1),
(23252, 17890, '1', 'STATE BOARD', '', 'Bca', '2017', 92.00, '', 1, '2024-03-25 06:06:14', 0, NULL, 0, NULL, 1),
(23253, 17885, '2', 'state board', '', '', '0220', 74.00, '', 1, '2024-03-25 06:06:31', 0, NULL, 0, NULL, 1),
(23254, 17885, '1', 'state board', '', '', '0218', 80.00, '', 1, '2024-03-25 06:06:54', 0, NULL, 0, NULL, 1),
(23255, 17890, '2', 'STATE BOARD ', '', '', '2019', 69.00, '', 1, '2024-03-25 06:07:09', 0, NULL, 0, NULL, 1),
(23256, 17897, '1', 'State board', '', '', '2015', 94.60, '', 1, '2024-03-25 06:07:13', 0, NULL, 0, NULL, 1),
(23257, 17897, '2', 'State board ', '', '', '2017', 79.90, '', 1, '2024-03-25 06:07:40', 0, NULL, 0, NULL, 1),
(23258, 17897, '3', 'Anna University ', '', 'Aeronautical engineering ', '2021', 70.01, '', 1, '2024-03-25 06:08:09', 0, NULL, 0, NULL, 1),
(23259, 17900, '3', 'Acharya Nagarjuna University ', '', 'B.Sc(Computers)', '2023', 76.00, '', 1, '2024-03-25 06:08:59', 0, NULL, 0, NULL, 1),
(23260, 17893, '4', 'SRM UNIVERSITY', '', 'MBA', '2022', 78.00, '', 1, '2024-03-25 06:09:22', 0, NULL, 0, NULL, 1),
(23261, 17893, '3', 'Madras unversity', '', 'Bsc computer science', '2020', 68.00, '', 1, '2024-03-25 06:10:07', 0, NULL, 0, NULL, 1),
(23262, 17893, '2', 'Stateboard', '', '', '2017', 64.00, '', 1, '2024-03-25 06:11:12', 0, NULL, 0, NULL, 1),
(23263, 17893, '1', 'Stateboard', '', '', '2015', 83.00, '', 1, '2024-03-25 06:11:39', 0, NULL, 0, NULL, 1),
(23264, 17901, '3', 'Barathiyar University ', '', 'B.com pa', '2023', 66.00, '', 1, '2024-03-25 06:16:15', 0, NULL, 0, NULL, 1),
(23265, 17899, '3', 'Mgr University ', '', 'B.com', '2021', 63.00, '', 1, '2024-03-25 06:17:46', 0, NULL, 0, NULL, 1),
(23266, 17898, '3', 'University of Madras ', '', 'Bcom', '2021', 70.00, '', 1, '2024-03-25 06:18:21', 0, NULL, 0, NULL, 1),
(23267, 17896, '4', 'Madras university', '', 'Msc Csc', '2023', 77.00, '', 1, '2024-03-25 06:18:34', 0, NULL, 0, NULL, 1),
(23268, 17902, '3', 'Anna University', '', 'Bachelor of engineering', '2021', 73.90, '', 1, '2024-03-25 06:19:32', 0, NULL, 0, NULL, 1),
(23269, 17896, '3', 'SRM university', '', 'Bsc Csc', '2020', 64.30, '', 1, '2024-03-25 06:20:15', 0, NULL, 0, NULL, 1),
(23270, 17896, '2', 'Tamilnadu state', '', '', '2017', 84.00, '', 1, '2024-03-25 06:20:46', 0, NULL, 0, NULL, 1),
(23271, 17894, '1', 'State Board', '', '', '2018', 73.00, '', 1, '2024-03-25 06:21:36', 0, NULL, 0, NULL, 1),
(23272, 17896, '1', 'Tamilnadu state board', '', '', '2015', 96.20, '', 1, '2024-03-25 06:21:43', 0, NULL, 0, NULL, 1),
(23273, 17894, '2', 'State Board ', '', '', '2020', 67.00, '', 1, '2024-03-25 06:22:22', 0, NULL, 0, NULL, 1),
(23274, 17889, '3', 'Apollo arts and science college North Chennai ', '', 'Bcom cs', '2023', 7.00, '', 1, '2024-03-25 06:27:03', 0, NULL, 0, NULL, 1),
(23275, 17906, '3', 'Madras University ', '', 'Bca', '2023', 70.00, '', 1, '2024-03-25 06:27:57', 0, NULL, 0, NULL, 1),
(23276, 17903, '3', 'Bharathidasan University of arts and science collage', '', 'BCA', '2020', 7.34, '', 1, '2024-03-25 06:28:18', 0, NULL, 0, NULL, 1),
(23277, 17905, '3', 'Thiruvalluvar University, Vellore ', '', 'B Sc Computer science ', '2023', 7.99, '', 1, '2024-03-25 06:28:28', 0, NULL, 0, NULL, 1),
(23278, 17907, '4', 'bharathidasan university, Trichy', '', 'Msc Information technology', '2023', 7.50, '', 1, '2024-03-25 06:28:31', 0, NULL, 0, NULL, 1),
(23279, 17904, '3', 'Anna university', '', 'B.tech - Information technology', '2023', 75.00, '', 1, '2024-03-25 06:31:23', 0, NULL, 0, NULL, 1),
(23280, 17909, '3', 'Madras University ', '', 'B.sc Computer science ', '2022', 70.00, '', 1, '2024-03-25 06:32:37', 0, NULL, 0, NULL, 1),
(23281, 17910, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2021', 78.00, '', 1, '2024-03-25 06:35:07', 0, NULL, 0, NULL, 1),
(23282, 17911, '4', 'Bharathidasan', '', 'MCA', '2023', 72.80, '', 1, '2024-03-25 06:35:16', 0, NULL, 0, NULL, 1),
(23283, 17911, '3', 'Bharathidasan', '', 'BCA', '2019', 58.00, '', 1, '2024-03-25 06:35:37', 0, NULL, 0, NULL, 1),
(23284, 17913, '1', 'State board ', '', '', '2012', 76.00, '', 1, '2024-03-25 06:45:38', 0, NULL, 0, NULL, 1),
(23285, 17914, '3', 'Alagappa University Distance Education ', '', 'B.sC INFORMATION TECHNOLOGY ', '2022', 70.00, '', 1, '2024-03-25 06:45:40', 0, NULL, 0, NULL, 1),
(23286, 17913, '2', 'State board', '', '', '2014', 70.00, '', 1, '2024-03-25 06:46:07', 0, NULL, 0, NULL, 1),
(23287, 17915, '4', 'Thiruvalluvar University, Velllore', '', 'BCA', '2023', 7.97, '', 1, '2024-03-25 06:46:24', 0, NULL, 0, NULL, 1),
(23288, 17914, '5', 'King institute ', '', 'Diploma in medical laboratory Technology ', '2021', 70.00, '', 1, '2024-03-25 06:46:38', 0, NULL, 0, NULL, 1),
(23289, 17913, '3', 'Madras University ', '', 'BSc biotechnology ', '2017', 62.00, '', 1, '2024-03-25 06:46:52', 0, NULL, 0, NULL, 1),
(23290, 17914, '2', 'State board ', '', '', '2018', 73.00, '', 1, '2024-03-25 06:47:41', 0, NULL, 0, NULL, 1),
(23291, 17916, '3', 'Thiruvalluvar University ', '', 'Bsc (computer science)', '2023', 81.00, '', 1, '2024-03-25 06:47:53', 0, NULL, 0, NULL, 1),
(23292, 17914, '1', 'State board ', '', '', '2016', 83.30, '', 1, '2024-03-25 06:48:17', 0, NULL, 0, NULL, 1),
(23293, 17816, '3', 'Bharathiyar University ', '', 'Bsc.cs', '2023', 60.00, '', 1, '2024-03-25 06:54:29', 0, NULL, 0, NULL, 1),
(23294, 17919, '3', 'Bharathiyar ', '', 'Bsc(IT)', '2020', 72.00, '', 1, '2024-03-25 07:00:04', 0, NULL, 0, NULL, 1),
(23295, 17918, '3', 'Anna University', '', 'B. E', '2017', 77.70, '', 1, '2024-03-25 07:01:59', 0, NULL, 0, NULL, 1),
(23296, 17917, '4', 'Thiruvalluvar University, Vellore ', '', 'BCA', '2023', 7.89, '', 1, '2024-03-25 07:02:01', 0, NULL, 0, NULL, 1),
(23297, 17920, '3', 'KONGU ENGINEERING COLLEGE ', '', 'BE', '2023', 74.50, '', 1, '2024-03-25 07:02:37', 0, NULL, 0, NULL, 1),
(23298, 17921, '3', 'Madurai kamaraj University ', '', 'Bsc information technology ', '2019', 71.00, '', 1, '2024-03-25 07:03:15', 0, NULL, 0, NULL, 1),
(23299, 17922, '4', 'Measi Institute of Information Technology ', '', 'MCA', '2024', 80.00, '', 1, '2024-03-25 07:04:38', 0, NULL, 0, NULL, 1),
(23300, 17922, '3', 'New College ', '', 'BCA', '2022', 78.00, '', 1, '2024-03-25 07:05:00', 0, NULL, 0, NULL, 1),
(23301, 17923, '3', 'Anna University', '', 'B. E', '2023', 71.00, '', 1, '2024-03-25 07:09:12', 0, NULL, 0, NULL, 1),
(23302, 17923, '2', 'State Board', '', '', '2019', 51.00, '', 1, '2024-03-25 07:10:25', 1, '2024-03-25 07:11:47', 0, NULL, 1),
(23303, 17923, '1', 'State Board', '', '', '2017', 88.00, '', 1, '2024-03-25 07:11:23', 1, '2024-03-25 07:12:10', 0, NULL, 1),
(23304, 17925, '3', 'Madras ', '', 'B. a business economics', '2023', 72.45, '', 1, '2024-03-25 07:26:01', 0, NULL, 0, NULL, 1),
(23305, 17927, '4', 'anna university', '', 'be', '2015', 72.00, '', 1, '2024-03-25 07:32:09', 0, NULL, 0, NULL, 1),
(23306, 17884, '5', 'Dote', '', 'Diploma in computer science ', '2020', 75.00, '', 1, '2024-03-25 07:33:10', 0, NULL, 0, NULL, 1),
(23307, 17884, '1', 'State board', '', '', '2017', 84.00, '', 1, '2024-03-25 07:34:53', 0, NULL, 0, NULL, 1),
(23308, 17928, '3', 'Anna University', '', 'B.E ', '2019', 76.00, '', 1, '2024-03-25 07:39:17', 0, NULL, 0, NULL, 1),
(23309, 17926, '3', 'University ', '', 'Bachelor of computer applications ', '2023', 80.00, '', 1, '2024-03-25 07:43:08', 0, NULL, 0, NULL, 1),
(23310, 17930, '5', 'Bangalore ', '', 'No ', '2016', 65.00, '', 1, '2024-03-25 07:52:23', 0, NULL, 0, NULL, 1),
(23311, 17929, '5', 'Dote ', '', 'Diploma in computer science ', '2020', 75.00, '', 1, '2024-03-25 07:54:42', 0, NULL, 0, NULL, 1),
(23312, 17934, '4', 'Vel\'s Institute of Science Technology and Advanced Studies ', '', 'Msc. IT', '2023', 75.00, '', 1, '2024-03-25 07:55:13', 0, NULL, 0, NULL, 1),
(23313, 17933, '3', 'Annamalai ', '', 'BE computer science and engineering (Data science)', '2023', 8.20, '', 1, '2024-03-25 07:55:15', 0, NULL, 0, NULL, 1),
(23314, 17929, '1', 'STATE BOARD ', '', '', '2017', 85.00, '', 1, '2024-03-25 07:55:27', 0, NULL, 0, NULL, 1),
(23315, 17932, '4', 'Vels University ', '', 'Msc(it)', '2023', 82.40, '', 1, '2024-03-25 07:56:23', 0, NULL, 0, NULL, 1),
(23316, 17931, '4', 'Vels University ', '', 'Msc information technology ', '2023', 72.00, '', 1, '2024-03-25 07:56:43', 1, '2024-03-25 07:57:04', 0, NULL, 1),
(23317, 17933, '1', 'Nirmala school', '', '', '2017', 92.00, '', 1, '2024-03-25 07:56:55', 0, NULL, 0, NULL, 1),
(23318, 17932, '3', 'Vels University ', '', 'BCA', '2021', 79.80, '', 1, '2024-03-25 07:57:16', 0, NULL, 0, NULL, 1),
(23319, 17933, '2', 'Nirmala school ', '', '', '2019', 62.50, '', 1, '2024-03-25 07:57:18', 0, NULL, 0, NULL, 1),
(23320, 17932, '2', 'State board ', '', '', '2018', 72.00, '', 1, '2024-03-25 07:57:37', 0, NULL, 0, NULL, 1),
(23321, 17932, '1', 'State board ', '', '', '2016', 91.00, '', 1, '2024-03-25 07:57:55', 0, NULL, 0, NULL, 1),
(23322, 17936, '3', 'Thiruvalluvar University ', '', '', '2023', 72.00, '', 1, '2024-03-25 08:22:26', 1, '2024-03-25 08:23:29', 0, NULL, 0),
(23323, 17936, '3', 'Thiruvalluvar University ', '', 'Computer science ', '2023', 72.00, '', 1, '2024-03-25 08:23:31', 0, NULL, 0, NULL, 1),
(23324, 17940, '3', 'Thiruvalluvar university ', '', 'Bca', '2023', 70.00, '', 1, '2024-03-25 09:16:23', 0, NULL, 0, NULL, 1),
(23325, 17939, '3', 'Anna university ', '', 'Btech', '2023', 81.00, '', 1, '2024-03-25 09:21:24', 0, NULL, 0, NULL, 1),
(23326, 17941, '3', 'Madaras University ', '', 'Bsc computer science ', '2022', 70.00, '', 1, '2024-03-25 09:26:48', 0, NULL, 0, NULL, 1),
(23327, 17942, '3', 'anna university', '', 'bachelor of engineering', '2023', 8.20, '', 1, '2024-03-25 09:33:00', 0, NULL, 0, NULL, 1),
(23328, 17942, '5', 'university', '', 'diploma in electronics and communication', '2020', 7.60, '', 1, '2024-03-25 09:34:14', 0, NULL, 0, NULL, 1),
(23329, 17942, '1', 'board', '', '', '2017', 8.60, '', 1, '2024-03-25 09:34:37', 0, NULL, 0, NULL, 1),
(23330, 17943, '3', 'annamalai  university', '', 'b.e', '2023', 80.10, '', 1, '2024-03-25 09:47:58', 0, NULL, 0, NULL, 1),
(23331, 17945, '1', 'State board of School examinations, tamilnadu', '', '', '2017', 97.60, '', 1, '2024-03-25 09:58:51', 0, NULL, 0, NULL, 1),
(23332, 17945, '2', 'State Board Of School Examinations, Tamilnadu', '', '', '2019', 81.33, '', 1, '2024-03-25 09:59:09', 0, NULL, 0, NULL, 1),
(23333, 17945, '3', 'Sri sairam Institute of technology', '', 'Bachelor of Engineering -CSE', '2023', 81.80, '', 1, '2024-03-25 10:00:14', 0, NULL, 0, NULL, 1),
(23334, 17912, '1', 'state board', '', '', '2016', 73.00, '', 1, '2024-03-25 10:01:51', 0, NULL, 0, NULL, 1),
(23335, 17912, '2', 'state board', '', '', '2018', 56.00, '', 1, '2024-03-25 10:02:23', 0, NULL, 0, NULL, 1),
(23336, 17912, '3', 'periyar university', '', 'bsc computer science', '2021', 68.00, '', 1, '2024-03-25 10:03:59', 0, NULL, 0, NULL, 1),
(23337, 17912, '4', 'anna university', '', 'mca', '2023', 82.00, '', 1, '2024-03-25 10:04:43', 0, NULL, 0, NULL, 1),
(23338, 17946, '3', 'Sri sai ram institute of technology', '', 'BE', '2023', 78.00, '', 1, '2024-03-25 10:05:53', 0, NULL, 0, NULL, 1),
(23339, 17946, '2', 'State board of tamilnadu', '', '', '2019', 61.00, '', 1, '2024-03-25 10:06:45', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23340, 17946, '1', 'State board of Tamilnadu', '', '', '2017', 83.00, '', 1, '2024-03-25 10:07:06', 0, NULL, 0, NULL, 1),
(23341, 17948, '3', 'Anna university ', '', 'BE', '2023', 83.00, '', 1, '2024-03-25 10:47:41', 0, NULL, 0, NULL, 1),
(23342, 17951, '1', 'Madras University ', '', '', '2023', 80.00, '', 1, '2024-03-25 11:39:23', 0, NULL, 0, NULL, 1),
(23343, 17924, '3', 'Madres University ', '', 'Bca', '2023', 74.00, '', 1, '2024-03-25 11:39:43', 0, NULL, 0, NULL, 1),
(23344, 17952, '5', 'Thanthai Roever inst of Polytechnic College', '', 'Deploma EEE ', '2021', 75.00, '', 1, '2024-03-25 12:06:52', 0, NULL, 0, NULL, 1),
(23345, 17958, '3', 'madras university', '', 'b.com', '2022', 71.00, '', 1, '2024-03-25 05:01:26', 0, NULL, 0, NULL, 1),
(23346, 17962, '1', 'State board ', '', '', '2017', 64.00, '', 1, '2024-03-26 03:56:14', 0, NULL, 0, NULL, 1),
(23347, 17962, '5', 'Thiyagarajar Polytechnic College ', '', 'Computer Engineering ', '2020', 84.00, '', 1, '2024-03-26 03:57:10', 0, NULL, 0, NULL, 1),
(23348, 17962, '3', 'Sona college of Technology ', '', 'BE', '2023', 75.00, '', 1, '2024-03-26 03:57:58', 0, NULL, 0, NULL, 1),
(23349, 17963, '3', 'Barathiyar', '', 'Bca', '2020', 70.00, '', 1, '2024-03-26 04:12:44', 0, NULL, 0, NULL, 1),
(23350, 17967, '1', 'State Board ', '', '', '2014', 94.00, '', 1, '2024-03-26 04:26:27', 0, NULL, 0, NULL, 1),
(23351, 17967, '2', 'State Board ', '', '', '2016', 85.00, '', 1, '2024-03-26 04:26:40', 0, NULL, 0, NULL, 1),
(23352, 17967, '3', 'Anna University ', '', 'BE', '2020', 8.09, '', 1, '2024-03-26 04:26:57', 0, NULL, 0, NULL, 1),
(23353, 17968, '3', 'Thiruvalluvar University', '', 'BCA', '2023', 80.00, '', 1, '2024-03-26 04:32:57', 0, NULL, 0, NULL, 1),
(23354, 17969, '3', 'Anna university', '', 'Bachelore of Engineering in Electronics communicat', '2020', 71.50, '', 1, '2024-03-26 04:40:38', 0, NULL, 0, NULL, 1),
(23355, 17969, '1', 'State board', '', '', '2014', 91.00, '', 1, '2024-03-26 04:41:18', 0, NULL, 0, NULL, 1),
(23356, 17969, '2', 'State board', '', '', '2016', 70.00, '', 1, '2024-03-26 04:42:00', 0, NULL, 0, NULL, 1),
(23357, 17966, '4', 'anna university', '', 'mca', '2023', 8.00, '', 1, '2024-03-26 04:49:26', 0, NULL, 0, NULL, 1),
(23358, 17970, '3', 'Anna University ', '', 'B.E Computer Science and Engineering ', '2022', 7.56, '', 1, '2024-03-26 04:50:32', 0, NULL, 0, NULL, 1),
(23359, 17970, '2', 'State broad ', '', '', '2018', 83.75, '', 1, '2024-03-26 04:51:04', 0, NULL, 0, NULL, 1),
(23360, 17970, '1', 'State broad ', '', '', '2016', 90.80, '', 1, '2024-03-26 04:51:24', 0, NULL, 0, NULL, 1),
(23361, 17972, '3', 'Thiruvalluvar University ', '', 'BCA ', '2023', 67.91, '', 1, '2024-03-26 04:53:55', 0, NULL, 0, NULL, 1),
(23362, 17975, '3', 'Anna University', '', 'BE. ECE', '2023', 8.55, '', 1, '2024-03-26 05:03:42', 0, NULL, 0, NULL, 1),
(23363, 17978, '3', 'Anna University ', '', '', '2023', 80.00, '', 1, '2024-03-26 05:04:11', 0, NULL, 0, NULL, 1),
(23364, 17978, '1', 'Syed ammal matric hr sec ', '', '', '2017', 80.00, '', 1, '2024-03-26 05:05:33', 0, NULL, 0, NULL, 1),
(23365, 17978, '2', 'Syed ammal mat hr sec school ', '', '', '2019', 60.00, '', 1, '2024-03-26 05:06:23', 0, NULL, 0, NULL, 1),
(23366, 17976, '4', 'bharathiar university', '', 'msc physics', '2023', 70.00, '', 1, '2024-03-26 05:07:21', 0, NULL, 0, NULL, 1),
(23367, 17979, '2', 'State board', '', 'B A economics ', '2020', 49.00, '', 1, '2024-03-26 05:07:36', 0, NULL, 0, NULL, 1),
(23368, 17979, '1', 'State Board ', '', '', '2018', 60.00, '', 1, '2024-03-26 05:08:23', 0, NULL, 0, NULL, 1),
(23369, 17977, '4', 'Bharathiyar ', '', 'MA', '2023', 70.00, '', 1, '2024-03-26 05:11:02', 0, NULL, 0, NULL, 1),
(23370, 17980, '3', 'Sriram engineering college ', '', 'B.E(Mechanical)', '2018', 66.00, '', 1, '2024-03-26 05:12:03', 0, NULL, 0, NULL, 1),
(23371, 17983, '1', 'St.Marys Anglo Indian Higher Secondary School ', '', '', '2018', 83.60, '', 1, '2024-03-26 05:13:39', 0, NULL, 0, NULL, 1),
(23372, 17983, '2', 'St.Marys Anglo Indian Higher Secondary School ', '', '', '2020', 75.00, '', 1, '2024-03-26 05:15:33', 0, NULL, 0, NULL, 1),
(23373, 17983, '3', 'Jeppiaar Engineering College ', '', 'B.E Computer Science And Engineering ', '2024', 8.35, '', 1, '2024-03-26 05:16:09', 0, NULL, 0, NULL, 1),
(23374, 17985, '1', 'Stateboard', '', '', '2015', 72.60, '', 1, '2024-03-26 05:16:17', 0, NULL, 0, NULL, 1),
(23375, 17985, '2', 'Stateboard ', '', '', '2018', 73.00, '', 1, '2024-03-26 05:16:42', 0, NULL, 0, NULL, 1),
(23376, 17580, '1', 'Tamilnadu board of secondary education ', '', '', '2017', 86.00, '', 1, '2024-03-26 05:16:49', 0, NULL, 0, NULL, 1),
(23377, 17985, '3', 'Anna university ', '', 'B.E', '2022', 81.00, '', 1, '2024-03-26 05:17:05', 0, NULL, 0, NULL, 1),
(23378, 17580, '2', 'Tamilnadu board of secondary education ', '', '', '2019', 74.00, '', 1, '2024-03-26 05:17:23', 0, NULL, 0, NULL, 1),
(23379, 17580, '3', 'Anna University ', '', 'BE', '2023', 85.00, '', 1, '2024-03-26 05:17:41', 0, NULL, 0, NULL, 1),
(23380, 17982, '3', 'SRM institute of science and technology ', '', 'B.Tech - Information Technology  ', '2022', 7.68, '', 1, '2024-03-26 05:17:55', 0, NULL, 0, NULL, 1),
(23381, 17982, '2', 'Velammal martic Higher secondary school ', '', '', '2018', 63.00, '', 1, '2024-03-26 05:19:01', 0, NULL, 0, NULL, 1),
(23382, 17982, '1', 'Velammal vidhyashram ', '', '', '2016', 76.00, '', 1, '2024-03-26 05:19:31', 0, NULL, 0, NULL, 1),
(23383, 17990, '3', 'Jawaharlal Nehru Technological University Kakinada', '', 'Bachelor of technology', '2022', 64.00, '', 1, '2024-03-26 05:22:50', 0, NULL, 0, NULL, 1),
(23384, 17994, '3', 'vels unversity', '', 'b.tech naval architecture ', '2020', 61.00, '', 1, '2024-03-26 05:27:42', 0, NULL, 0, NULL, 1),
(23385, 17995, '3', 'Anna University ', '', 'B.E. Civil Engineering ', '2020', 6.49, '', 1, '2024-03-26 05:29:27', 0, NULL, 0, NULL, 1),
(23386, 18000, '3', 'Annnai vailankaani arts and science college Thanjavur affilated by (Bharathidasan university)', '', 'Bca', '2023', 70.00, '', 1, '2024-03-26 05:30:42', 0, NULL, 0, NULL, 1),
(23387, 17996, '3', 'Anna university ', '', 'BE cse', '2023', 80.00, '', 1, '2024-03-26 05:31:21', 0, NULL, 0, NULL, 1),
(23388, 17988, '3', 'Anna University ', '', 'B.E, ELECTRONIC COMMUNICATION AND ENGINEERING ', '2022', 7.10, '', 1, '2024-03-26 05:31:33', 0, NULL, 0, NULL, 1),
(23389, 18001, '3', 'Anna University ', '', 'Bachelor of engineering CSE', '2023', 77.60, '', 1, '2024-03-26 05:32:21', 0, NULL, 0, NULL, 1),
(23390, 17997, '3', 'Thanthai Periyar Government Institute of technology ', '', 'B.E(computer science and Engineering)', '2023', 76.00, '', 1, '2024-03-26 05:32:39', 0, NULL, 0, NULL, 1),
(23391, 18001, '2', 'CBSE', '', '', '2018', 81.00, '', 1, '2024-03-26 05:33:44', 0, NULL, 0, NULL, 1),
(23392, 17997, '5', 'P.A.C.Ramasamy Raja Polytechnic College ', '', 'Deploma (ECE)', '2020', 75.00, '', 1, '2024-03-26 05:34:02', 0, NULL, 0, NULL, 1),
(23393, 18001, '1', 'CBSE', '', '', '2016', 88.00, '', 1, '2024-03-26 05:34:13', 0, NULL, 0, NULL, 1),
(23394, 17997, '1', 'P.A.C.M. hr sec School ', '', '', '2017', 78.00, '', 1, '2024-03-26 05:34:40', 0, NULL, 0, NULL, 1),
(23395, 17992, '3', 'Bharathidasan University ', '', 'BCA', '2022', 77.05, '', 1, '2024-03-26 05:34:42', 0, NULL, 0, NULL, 1),
(23396, 17973, '1', 'shri natesan vidyasala matric higher secondary school', '', '', '2018', 80.00, '', 1, '2024-03-26 05:34:45', 0, NULL, 0, NULL, 1),
(23397, 17973, '2', 'Shri Natesan Vidyasala Matric Higher Secondary School', '', '', '2020', 65.00, '', 1, '2024-03-26 05:35:04', 0, NULL, 0, NULL, 1),
(23398, 18007, '3', 'Anna University ', '', 'B.E', '2023', 78.00, '', 1, '2024-03-26 05:35:17', 0, NULL, 0, NULL, 1),
(23399, 17986, '3', 'Anna University ', '', 'BE- Electronic and Communication Engineering ', '2022', 81.00, '', 1, '2024-03-26 05:35:25', 0, NULL, 0, NULL, 1),
(23400, 18013, '3', 'Vel Tech Multi Tech Engineering college ', '', 'B.E', '2023', 79.20, '', 1, '2024-03-26 05:35:31', 0, NULL, 0, NULL, 1),
(23401, 18007, '2', 'State board ', '', '', '2019', 79.00, '', 1, '2024-03-26 05:35:43', 0, NULL, 0, NULL, 1),
(23402, 17973, '3', 'jeppiaar institute of technology', '', 'BE', '2024', 78.00, '', 1, '2024-03-26 05:35:50', 0, NULL, 0, NULL, 1),
(23403, 18007, '1', 'State board ', '', '', '2017', 92.00, '', 1, '2024-03-26 05:36:04', 0, NULL, 0, NULL, 1),
(23404, 18008, '3', 'Anna University ', '', 'B.E Electronics and communication engineering ', '2023', 8.80, '', 1, '2024-03-26 05:36:04', 0, NULL, 0, NULL, 1),
(23405, 18002, '3', 'Anna University ', '', 'BE', '2023', 81.00, '', 1, '2024-03-26 05:36:07', 0, NULL, 0, NULL, 1),
(23406, 17998, '3', 'Bharathidasan  University', '', 'BCA', '2022', 76.14, '', 1, '2024-03-26 05:36:08', 0, NULL, 0, NULL, 1),
(23407, 18003, '1', 'State Board ', '', '', '2017', 85.00, '', 1, '2024-03-26 05:36:34', 0, NULL, 0, NULL, 1),
(23408, 18013, '2', 'Stateboard ', '', 'B.E', '2019', 65.30, '', 1, '2024-03-26 05:36:38', 0, NULL, 0, NULL, 1),
(23409, 18008, '2', 'Stateboard ', '', '', '2019', 74.30, '', 1, '2024-03-26 05:36:41', 0, NULL, 0, NULL, 1),
(23410, 18002, '2', 'State Board', '', '', '2019', 65.00, '', 1, '2024-03-26 05:36:56', 0, NULL, 0, NULL, 1),
(23411, 18003, '2', 'State Board ', '', '', '2019', 74.60, '', 1, '2024-03-26 05:37:08', 0, NULL, 0, NULL, 1),
(23412, 18008, '1', 'Stateboard ', '', '', '2017', 95.80, '', 1, '2024-03-26 05:37:11', 0, NULL, 0, NULL, 1),
(23413, 18004, '3', 'ANNA UNIVERSITY ', '', 'BE-ECE', '2023', 8.40, '', 1, '2024-03-26 05:37:27', 0, NULL, 0, NULL, 1),
(23414, 18002, '1', 'State Board ', '', '', '2017', 92.00, '', 1, '2024-03-26 05:37:35', 0, NULL, 0, NULL, 1),
(23415, 18006, '1', 'State Board ', '', '', '2017', 92.00, '', 1, '2024-03-26 05:37:46', 0, NULL, 0, NULL, 1),
(23416, 18003, '3', 'Anna University ', '', 'B.E/ECE', '2023', 81.00, '', 1, '2024-03-26 05:37:58', 0, NULL, 0, NULL, 1),
(23417, 18006, '2', 'State board ', '', '', '2019', 71.00, '', 1, '2024-03-26 05:38:10', 0, NULL, 0, NULL, 1),
(23418, 17991, '3', 'Thiruvalluvar University ', '', 'Bsc', '2023', 82.00, '', 1, '2024-03-26 05:38:13', 0, NULL, 0, NULL, 1),
(23419, 18006, '3', 'Anna unversity ', '', 'BE', '2023', 87.00, '', 1, '2024-03-26 05:38:29', 0, NULL, 0, NULL, 1),
(23420, 18005, '3', 'Bharathiar University ', '', 'B.sc information technology ', '2023', 74.00, '', 1, '2024-03-26 05:38:41', 0, NULL, 0, NULL, 1),
(23421, 18014, '3', 'Dr.ambedkar arts and science college ', '', 'B.SC Computer Science', '2020', 70.00, '', 1, '2024-03-26 05:41:31', 0, NULL, 0, NULL, 1),
(23422, 18009, '3', 'SRM Valliammai Engineering College ', '', 'B.Tech.', '2023', 79.00, '', 1, '2024-03-26 05:43:18', 0, NULL, 0, NULL, 1),
(23423, 18009, '2', 'St. Vincent Pallotti Matriculation Higher Secondary School ', '', '', '2019', 61.50, '', 1, '2024-03-26 05:43:46', 0, NULL, 0, NULL, 1),
(23424, 17987, '3', 'anna university', '', 'b.tech', '2024', 8.03, '', 1, '2024-03-26 05:43:52', 0, NULL, 0, NULL, 1),
(23425, 18012, '3', 'SRM Valliammai Engineering College ', '', 'B.Tech', '2023', 80.00, '', 1, '2024-03-26 05:44:17', 0, NULL, 0, NULL, 1),
(23426, 18009, '1', 'Vels Vidyashram ', '', '', '2017', 74.00, '', 1, '2024-03-26 05:44:18', 0, NULL, 0, NULL, 1),
(23427, 18011, '3', 'SRM VALLIAMMAI ENGINEERING COLLEGE ', '', 'B.tech ', '2023', 75.00, '', 1, '2024-03-26 05:44:19', 0, NULL, 0, NULL, 1),
(23428, 18012, '1', 'St Joseph Matriculation HR Sec School ', '', '', '2017', 76.00, '', 1, '2024-03-26 05:45:13', 0, NULL, 0, NULL, 1),
(23429, 18017, '3', 'Anna university ', '', 'BE/cse', '2023', 7.86, '', 1, '2024-03-26 05:45:34', 0, NULL, 0, NULL, 1),
(23430, 18011, '1', 'St.joseph Metric Hr Sec School ', '', '', '2017', 75.00, '', 1, '2024-03-26 05:46:17', 0, NULL, 0, NULL, 1),
(23431, 18012, '2', 'Little jacky Matriculation HR Sec School ', '', '', '2019', 61.00, '', 1, '2024-03-26 05:46:30', 0, NULL, 0, NULL, 1),
(23432, 18011, '2', 'St.joseph Metric Hr Sec School ', '', '', '2019', 58.00, '', 1, '2024-03-26 05:46:52', 0, NULL, 0, NULL, 1),
(23433, 18016, '3', 'Panimalar institute of technology ', '', 'Electrical and electronic engineering ', '2022', 82.00, '', 1, '2024-03-26 05:47:22', 0, NULL, 0, NULL, 1),
(23434, 18018, '3', 'anna university', '', 'be', '2020', 65.00, '', 1, '2024-03-26 05:47:53', 0, NULL, 0, NULL, 1),
(23435, 18019, '3', 'Anna university', '', 'BE', '2023', 80.00, '', 1, '2024-03-26 05:48:23', 0, NULL, 0, NULL, 1),
(23436, 17964, '3', 'Barathiyar', '', 'B. Com', '2023', 70.00, '', 1, '2024-03-26 05:48:53', 0, NULL, 0, NULL, 1),
(23437, 17989, '3', 'anna unniversity', '', 'b.tech', '2023', 86.30, '', 1, '2024-03-26 05:49:22', 0, NULL, 0, NULL, 1),
(23438, 17956, '3', 'Bharathiyar University ', '', 'Bsc information technology ', '2018', 68.00, '', 1, '2024-03-26 05:49:54', 0, NULL, 0, NULL, 1),
(23439, 18010, '3', 'Anna University', '', 'B. E', '2022', 80.00, '', 1, '2024-03-26 05:50:14', 0, NULL, 0, NULL, 1),
(23440, 17993, '3', 'Thiruvalluvar University ', '', 'BCA', '2023', 80.00, '', 1, '2024-03-26 05:51:51', 0, NULL, 0, NULL, 1),
(23441, 18020, '3', 'Bharath college of science and management ', '', 'Bca', '2017', 60.00, '', 1, '2024-03-26 05:51:57', 0, NULL, 0, NULL, 1),
(23442, 18027, '3', 'Bharathidhasan University ', '', 'B.sc(Maths)', '2021', 70.00, '', 1, '2024-03-26 05:52:26', 0, NULL, 0, NULL, 1),
(23443, 18024, '3', 'University', '', 'B. E', '2021', 75.00, '', 1, '2024-03-26 05:53:17', 0, NULL, 0, NULL, 1),
(23444, 17993, '1', 'Tamil Nadu board of secondary education ', '', '', '2017', 70.00, '', 1, '2024-03-26 05:53:26', 0, NULL, 0, NULL, 1),
(23445, 17993, '2', 'Tamil Nadu board of secondary education ', '', '', '2019', 65.00, '', 1, '2024-03-26 05:54:05', 0, NULL, 0, NULL, 1),
(23446, 17999, '3', 'Anna university ', '', 'Btech', '2021', 76.00, '', 1, '2024-03-26 05:54:08', 0, NULL, 0, NULL, 1),
(23447, 18022, '3', 'Barathidasan university', '', 'BSc.It', '2023', 65.00, '', 1, '2024-03-26 05:55:27', 0, NULL, 0, NULL, 1),
(23448, 18022, '2', 'Tamilnadu board Of Secondry Education', '', '', '2019', 80.00, '', 1, '2024-03-26 05:56:26', 0, NULL, 0, NULL, 1),
(23449, 18026, '3', 'THIRUVALLUVAR UNIVERSITY ', '', 'BSC Mathematics ', '2023', 83.00, '', 1, '2024-03-26 05:57:04', 0, NULL, 0, NULL, 1),
(23450, 18022, '1', 'Tamilnadu board of education', '', '', '2017', 82.00, '', 1, '2024-03-26 05:57:53', 0, NULL, 0, NULL, 1),
(23451, 18025, '3', 'Anna university', '', 'B. E computer science and engineering', '2023', 98.00, '', 1, '2024-03-26 05:58:09', 0, NULL, 0, NULL, 1),
(23452, 18023, '4', 'Bharadthidhasan University ', '', 'Mca', '2023', 78.00, '', 1, '2024-03-26 05:59:41', 0, NULL, 0, NULL, 1),
(23453, 18028, '1', 'State board ', '', '', '2016', 75.00, '', 1, '2024-03-26 06:00:36', 0, NULL, 0, NULL, 1),
(23454, 18029, '3', 'Kingston engineering college ', '', 'B.E', '2020', 6.66, '', 1, '2024-03-26 06:00:43', 0, NULL, 0, NULL, 1),
(23455, 18030, '3', 'Madras University', '', 'Bsc.zoology', '2023', 70.00, '', 1, '2024-03-26 06:00:59', 0, NULL, 0, NULL, 1),
(23456, 18030, '2', 'State board', '', '', '2020', 75.00, '', 1, '2024-03-26 06:01:34', 1, '2024-03-26 06:02:56', 0, NULL, 1),
(23457, 18028, '5', 'Central polytechnic college ', '', 'Diploma ', '2019', 66.00, '', 1, '2024-03-26 06:01:39', 0, NULL, 0, NULL, 1),
(23458, 18029, '1', 'Sky matric hr sec school', '', '', '2014', 48.00, '', 1, '2024-03-26 06:01:53', 0, NULL, 0, NULL, 1),
(23459, 18036, '3', 'Anna University ', '', 'Btech information technology ', '2024', 8.93, '', 1, '2024-03-26 06:02:04', 0, NULL, 0, NULL, 1),
(23460, 18030, '1', 'State board', '', '', '2018', 90.00, '', 1, '2024-03-26 06:02:15', 0, NULL, 0, NULL, 1),
(23461, 18028, '3', 'Anna University ', '', 'BE', '2023', 75.00, '', 1, '2024-03-26 06:02:22', 0, NULL, 0, NULL, 1),
(23462, 18029, '2', 'Kumaran polytechnic college ', '', '', '2017', 73.00, '', 1, '2024-03-26 06:02:24', 1, '2024-03-26 06:03:16', 0, NULL, 0),
(23463, 18036, '2', 'State Board ', '', '', '2020', 85.17, '', 1, '2024-03-26 06:02:28', 0, NULL, 0, NULL, 1),
(23464, 18036, '1', 'State Board ', '', '', '2018', 97.20, '', 1, '2024-03-26 06:02:41', 0, NULL, 0, NULL, 1),
(23465, 18029, '5', 'Kumaran polytechnic college ', '', 'DME', '2017', 73.00, '', 1, '2024-03-26 06:03:06', 0, NULL, 0, NULL, 1),
(23466, 17957, '3', 'madras university ', '', 'bba ', '2023', 65.00, '', 1, '2024-03-26 06:03:53', 0, NULL, 0, NULL, 1),
(23467, 18032, '1', 'state board of school examinations tamil nadu', '', '', '2017', 88.20, '', 1, '2024-03-26 06:04:04', 0, NULL, 0, NULL, 1),
(23468, 18032, '3', 'anna university', '', 'be ece', '2019', 7.69, '', 1, '2024-03-26 06:05:06', 0, NULL, 0, NULL, 1),
(23469, 18035, '3', 'Alagagappa university', '', 'B. Voc(software development) ', '2023', 76.00, '', 1, '2024-03-26 06:05:23', 0, NULL, 0, NULL, 1),
(23470, 18032, '2', 'state board of school examination tamilnadu', '', '', '2019', 45.10, '', 1, '2024-03-26 06:06:18', 0, NULL, 0, NULL, 1),
(23471, 18044, '3', 'Anna University ', '', 'B.tech', '2023', 7.89, '', 1, '2024-03-26 06:06:44', 0, NULL, 0, NULL, 1),
(23472, 18044, '1', 'Velankanni matriculation school ', '', '', '2019', 83.00, '', 1, '2024-03-26 06:07:09', 0, NULL, 0, NULL, 1),
(23473, 18037, '4', 'University of Madras ', '', 'MCA', '2023', 73.00, '', 1, '2024-03-26 06:07:20', 0, NULL, 0, NULL, 1),
(23474, 18040, '1', 'PKN MATRIC HR SEC SCHOOL', '', 'Bachelor degree ', '2016', 88.00, '', 1, '2024-03-26 06:08:35', 0, NULL, 0, NULL, 1),
(23475, 18040, '2', 'PKN BOYS HR SEC SCHOOL', '', '', '2018', 60.00, '', 1, '2024-03-26 06:09:05', 0, NULL, 0, NULL, 1),
(23476, 18040, '3', 'Kamaraj college of Engineering and Technology ', '', 'Bachelor of Engineering ', '2022', 7.32, '', 1, '2024-03-26 06:09:30', 0, NULL, 0, NULL, 1),
(23477, 18047, '3', 'Anna University ', '', 'BE', '2024', 72.00, '', 1, '2024-03-26 06:10:10', 0, NULL, 0, NULL, 1),
(23478, 18038, '4', 'Madurai Kamaraj University ', '', 'M.Sc', '2022', 86.00, '', 1, '2024-03-26 06:10:18', 0, NULL, 0, NULL, 1),
(23479, 18046, '3', 'Anna University ', '', 'Bachelor\'s of engineering ', '2019', 61.00, '', 1, '2024-03-26 06:11:21', 0, NULL, 0, NULL, 1),
(23480, 18041, '3', 'University  Of Madras ', '', 'BCA', '2023', 74.00, '', 1, '2024-03-26 06:12:34', 1, '2024-03-26 06:18:03', 0, NULL, 1),
(23481, 18049, '3', 'Velammal engineering college', '', 'BE-CSE', '2024', 8.50, '', 1, '2024-03-26 06:12:59', 0, NULL, 0, NULL, 1),
(23482, 18034, '1', 'Tamil nadu', '', '', '2018', 95.00, '', 1, '2024-03-26 06:13:06', 0, NULL, 0, NULL, 1),
(23483, 18033, '3', 'Anna university', '', 'B.E', '2024', 78.00, '', 1, '2024-03-26 06:13:16', 0, NULL, 0, NULL, 1),
(23484, 18034, '2', 'Tamil nadu ', '', '', '2020', 78.00, '', 1, '2024-03-26 06:13:33', 0, NULL, 0, NULL, 1),
(23485, 18033, '1', 'Tamil nadu', '', '', '2018', 76.00, '', 1, '2024-03-26 06:13:52', 0, NULL, 0, NULL, 1),
(23486, 18050, '3', 'University of Madras', '', 'B.sc[CS]', '2021', 87.00, '', 1, '2024-03-26 06:13:53', 0, NULL, 0, NULL, 1),
(23487, 18034, '3', 'Anna University ', '', 'BE', '2024', 83.00, '', 1, '2024-03-26 06:14:05', 0, NULL, 0, NULL, 1),
(23488, 18033, '2', 'Tamil nadu', '', '', '2020', 67.00, '', 1, '2024-03-26 06:14:27', 0, NULL, 0, NULL, 1),
(23489, 18052, '3', 'Bharathidhasan University ', '', 'B.sC computer science ', '2023', 81.00, '', 1, '2024-03-26 06:16:58', 0, NULL, 0, NULL, 1),
(23490, 18053, '3', 'Anna University ', '', 'B.Tech', '2015', 70.00, '', 1, '2024-03-26 06:16:58', 0, NULL, 0, NULL, 1),
(23491, 18054, '4', 'Bharathidasan University Tiruchirapalli ', '', 'M.Sc information technology ', '2020', 76.00, '', 1, '2024-03-26 06:17:47', 0, NULL, 0, NULL, 1),
(23492, 18055, '3', 'anna university ', '', 'b. tech', '2022', 74.50, '', 1, '2024-03-26 06:17:52', 0, NULL, 0, NULL, 1),
(23493, 18043, '3', 'University of madras ', '', 'BCA', '2023', 76.00, '', 1, '2024-03-26 06:18:18', 0, NULL, 0, NULL, 1),
(23494, 18048, '4', 'Dr.mgr', '', 'Mca', '2022', 68.00, '', 1, '2024-03-26 06:19:35', 0, NULL, 0, NULL, 1),
(23495, 18039, '3', 'Thiruvallur university ', '', 'BCA', '2022', 80.00, '', 1, '2024-03-26 06:19:41', 0, NULL, 0, NULL, 1),
(23496, 18056, '4', 'Tiruvalluvar University ', '', 'Msc computer science ', '2022', 84.00, '', 1, '2024-03-26 06:20:08', 0, NULL, 0, NULL, 1),
(23497, 18051, '3', 'Anna university ', '', 'BTech ', '2022', 74.19, '', 1, '2024-03-26 06:21:15', 0, NULL, 0, NULL, 1),
(23498, 18045, '4', 'Dr. Mgr University ', '', 'MCA', '2022', 70.00, '', 1, '2024-03-26 06:23:27', 0, NULL, 0, NULL, 1),
(23499, 18058, '3', 'Autonomous ', '', 'B.sC CS', '2020', 70.00, '', 1, '2024-03-26 06:25:42', 0, NULL, 0, NULL, 1),
(23500, 18061, '3', 'Anna University', '', 'BE', '2022', 80.20, '', 1, '2024-03-26 06:28:43', 0, NULL, 0, NULL, 1),
(23501, 18031, '1', 'mullai higher secondary school', '', '', '2016', 74.00, '', 1, '2024-03-26 06:29:41', 0, NULL, 0, NULL, 1),
(23502, 18031, '2', 'mullai higher secodary school', '', '', '2018', 61.00, '', 1, '2024-03-26 06:30:09', 0, NULL, 0, NULL, 1),
(23503, 18031, '3', 'selvam arts and science college', '', 'bca', '2021', 60.00, '', 1, '2024-03-26 06:30:47', 0, NULL, 0, NULL, 1),
(23504, 18059, '3', 'ALAGAPPA UNIVERSITY ', '', 'B.Sc., Mathematics ', '2023', 70.00, '', 1, '2024-03-26 06:30:47', 0, NULL, 0, NULL, 1),
(23505, 18060, '3', 'Anna University ', '', 'B.E', '2023', 83.50, '', 1, '2024-03-26 06:31:11', 0, NULL, 0, NULL, 1),
(23506, 18059, '2', 'State board', '', '', '2020', 70.00, '', 1, '2024-03-26 06:31:30', 0, NULL, 0, NULL, 1),
(23507, 18031, '4', 'anna unversity', '', 'mca', '2023', 62.00, '', 1, '2024-03-26 06:31:31', 0, NULL, 0, NULL, 1),
(23508, 18059, '1', 'State board ', '', '', '2018', 89.00, '', 1, '2024-03-26 06:31:53', 0, NULL, 0, NULL, 1),
(23509, 18067, '3', 'Saraswathi Narayanan college ', '', 'B.Sc', '2021', 64.00, '', 1, '2024-03-26 06:40:56', 0, NULL, 0, NULL, 1),
(23510, 18070, '3', 'University of Madras ', '', 'BCA', '2023', 75.00, '', 1, '2024-03-26 06:41:03', 0, NULL, 0, NULL, 1),
(23511, 18069, '4', 'University of Madras ', '', 'MSc IT ', '2023', 84.00, '', 1, '2024-03-26 06:41:23', 0, NULL, 0, NULL, 1),
(23512, 18067, '2', 'Tamilnadu board ', '', '', '2018', 62.00, '', 1, '2024-03-26 06:41:30', 0, NULL, 0, NULL, 1),
(23513, 18069, '3', 'University of Madras ', '', 'BSc Computer science ', '2020', 74.00, '', 1, '2024-03-26 06:41:51', 0, NULL, 0, NULL, 1),
(23514, 18068, '3', 'University of madras ', '', 'Bsc computer science ', '2021', 75.00, '', 1, '2024-03-26 06:46:48', 0, NULL, 0, NULL, 1),
(23515, 18066, '3', 'Madras university', '', 'B. Com Computer application', '2023', 71.00, '', 1, '2024-03-26 06:48:04', 0, NULL, 0, NULL, 1),
(23516, 18065, '3', 'ANNA UNIVERSITY ', '', 'BE . COMPUTER SCIENCE AND ENGINEERING ', '2021', 7.80, '', 1, '2024-03-26 06:48:11', 0, NULL, 0, NULL, 1),
(23517, 18073, '3', 'Anna University ', '', '', '2023', 8.23, '', 1, '2024-03-26 06:52:35', 0, NULL, 0, NULL, 1),
(23518, 18071, '3', 'Anna university', '', 'B. E', '2022', 82.00, '', 1, '2024-03-26 06:53:54', 0, NULL, 0, NULL, 1),
(23519, 18072, '3', 'Hindustan University ', '', 'Bsc', '2023', 80.00, '', 1, '2024-03-26 06:54:33', 0, NULL, 0, NULL, 1),
(23520, 18071, '2', 'Vivekananda vidyalaya matric hr sec school', '', '', '2018', 73.00, '', 1, '2024-03-26 06:55:04', 0, NULL, 0, NULL, 1),
(23521, 18072, '1', 'Vivekananda vidyalaya matric higher secondary school ', '', '', '2018', 80.00, '', 1, '2024-03-26 06:55:25', 0, NULL, 0, NULL, 1),
(23522, 18071, '1', 'Vivekananda Vidyalaya Matric hr sec school', '', '', '2016', 90.00, '', 1, '2024-03-26 06:55:37', 0, NULL, 0, NULL, 1),
(23523, 18072, '2', 'Vivekananda vidyalaya matric higher secondary school ', '', '', '2020', 70.00, '', 1, '2024-03-26 06:55:49', 1, '2024-03-26 06:56:26', 0, NULL, 0),
(23524, 18079, '3', 'Shanmuga industries arts and science college Tiruvannamalai ', '', 'Bsc computer science ', '2023', 81.00, '', 1, '2024-03-26 07:00:54', 0, NULL, 0, NULL, 1),
(23525, 18079, '2', 'Sishya Matric Higher Secondary School ', '', '', '2020', 52.00, '', 1, '2024-03-26 07:01:31', 0, NULL, 0, NULL, 1),
(23526, 18079, '1', 'Bhagavan Matric Higher Secondary School ', '', '', '2018', 62.00, '', 1, '2024-03-26 07:01:59', 0, NULL, 0, NULL, 1),
(23527, 18080, '3', 'Anna University ', '', 'B.E', '2021', 72.90, '', 1, '2024-03-26 07:02:41', 0, NULL, 0, NULL, 1),
(23528, 18080, '2', 'State board', '', '', '2017', 76.75, '', 1, '2024-03-26 07:03:32', 0, NULL, 0, NULL, 1),
(23529, 18080, '1', 'State board ', '', '', '2015', 94.50, '', 1, '2024-03-26 07:03:50', 0, NULL, 0, NULL, 1),
(23530, 18081, '3', 'Pondicherry university ', '', 'B.Tech', '2023', 84.20, '', 1, '2024-03-26 07:10:55', 0, NULL, 0, NULL, 1),
(23531, 18081, '1', 'Tamil Nadu state board ', '', '', '2017', 93.60, '', 1, '2024-03-26 07:11:31', 0, NULL, 0, NULL, 1),
(23532, 18081, '2', 'Tamil Nadu state board ', '', '', '2019', 87.10, '', 1, '2024-03-26 07:11:51', 0, NULL, 0, NULL, 1),
(23533, 18082, '3', 'thiruvalluvar university', '', 'bca', '2022', 82.00, '', 1, '2024-03-26 07:22:38', 0, NULL, 0, NULL, 1),
(23534, 18021, '3', 'anna university', '', 'b e mechanical', '2023', 84.00, '', 1, '2024-03-26 07:27:28', 0, NULL, 0, NULL, 1),
(23535, 18086, '1', 'SSC', '', '', '2014', 75.00, '', 1, '2024-03-26 07:32:14', 0, NULL, 0, NULL, 1),
(23536, 18083, '3', 'Mount Zion College of engineering and technology ', '', 'B.E(CSE)', '2018', 80.00, '', 1, '2024-03-26 07:32:23', 0, NULL, 0, NULL, 1),
(23537, 18089, '1', 'board', '', '', '2018', 72.00, '', 1, '2024-03-26 07:32:53', 0, NULL, 0, NULL, 1),
(23538, 18086, '2', 'BIEAP', '', '', '2019', 56.70, '', 1, '2024-03-26 07:33:52', 0, NULL, 0, NULL, 1),
(23539, 18086, '3', 'S. V UNIVERSITY', '', 'B. Com computer applications ', '2023', 62.00, '', 1, '2024-03-26 07:35:07', 0, NULL, 0, NULL, 1),
(23540, 18075, '4', 'Vikrama simhapuri University ', '', 'Mca', '2021', 72.00, '', 1, '2024-03-26 07:36:14', 0, NULL, 0, NULL, 1),
(23541, 18092, '1', 'State board ', '', '', '2015', 85.00, '', 1, '2024-03-26 07:37:26', 0, NULL, 0, NULL, 1),
(23542, 18091, '3', 'Anna University ', '', 'B.E.civil engineering ', '2022', 82.00, '', 1, '2024-03-26 07:37:54', 0, NULL, 0, NULL, 1),
(23543, 18092, '2', 'State board', '', '', '2017', 63.33, '', 1, '2024-03-26 07:37:55', 0, NULL, 0, NULL, 1),
(23544, 18091, '2', 'State board ', '', '', '2018', 80.00, '', 1, '2024-03-26 07:38:30', 0, NULL, 0, NULL, 1),
(23545, 18091, '1', 'State board ', '', '', '2016', 91.00, '', 1, '2024-03-26 07:38:52', 0, NULL, 0, NULL, 1),
(23546, 18092, '3', 'Anna University ', '', 'B.E(EEE)', '2021', 76.00, '', 1, '2024-03-26 07:39:15', 0, NULL, 0, NULL, 1),
(23547, 18084, '1', 'SSC', '', '', '2017', 94.80, '', 1, '2024-03-26 07:41:25', 0, NULL, 0, NULL, 1),
(23548, 18084, '2', 'State board TN', '', '', '2019', 75.00, '', 1, '2024-03-26 07:41:58', 0, NULL, 0, NULL, 1),
(23549, 18084, '3', 'Anna University ', '', 'B. Tech', '2023', 83.00, '', 1, '2024-03-26 07:42:34', 0, NULL, 0, NULL, 1),
(23550, 18087, '3', 'Kingston Engineering College ', '', 'BE', '2023', 81.00, '', 1, '2024-03-26 07:44:12', 0, NULL, 0, NULL, 1),
(23551, 18088, '3', 'St.peters University ', '', 'Bsc computer science ', '2022', 65.00, '', 1, '2024-03-26 07:46:40', 0, NULL, 0, NULL, 1),
(23552, 18085, '1', 'State board', '', '', '2016', 80.00, '', 1, '2024-03-26 07:48:47', 0, NULL, 0, NULL, 1),
(23553, 18085, '2', 'State board', '', '', '2018', 70.00, '', 1, '2024-03-26 07:49:14', 0, NULL, 0, NULL, 1),
(23554, 18085, '3', 'Madras University ', '', 'B.sc computer science ', '2021', 73.00, '', 1, '2024-03-26 07:50:25', 0, NULL, 0, NULL, 1),
(23555, 18093, '3', 'Kingston Engineering Coege ', '', 'B.E', '2023', 76.00, '', 1, '2024-03-26 07:51:58', 0, NULL, 0, NULL, 1),
(23556, 18057, '3', 'shri venkateshwara university', '', 'bba', '2023', 70.00, '', 1, '2024-03-26 07:54:47', 0, NULL, 0, NULL, 1),
(23557, 18095, '3', 'Anna University ', '', '', '2023', 8.61, '', 1, '2024-03-26 07:56:43', 0, NULL, 0, NULL, 1),
(23558, 18090, '4', 'University of medras ', '', 'MCA ', '2023', 83.63, '', 1, '2024-03-26 07:57:57', 0, NULL, 0, NULL, 1),
(23559, 18076, '3', 'madras university', '', 'b a english', '2023', 45.00, '', 1, '2024-03-26 08:05:56', 0, NULL, 0, NULL, 1),
(23560, 18096, '1', 'State board ', '', '', '2015', 85.20, '', 1, '2024-03-26 08:11:49', 0, NULL, 0, NULL, 1),
(23561, 18096, '2', 'State board ', '', '', '2017', 70.08, '', 1, '2024-03-26 08:12:33', 0, NULL, 0, NULL, 1),
(23562, 18096, '3', 'Anna University ', '', 'Bachelor\'s of Engineering ', '2021', 71.70, '', 1, '2024-03-26 08:13:22', 0, NULL, 0, NULL, 1),
(23563, 18094, '3', 'Anna University ', '', 'B.Tech IT', '2023', 7.90, '', 1, '2024-03-26 08:35:21', 0, NULL, 0, NULL, 1),
(23564, 18094, '1', 'State board ', '', '', '2017', 85.00, '', 1, '2024-03-26 08:35:53', 0, NULL, 0, NULL, 1),
(23565, 18094, '2', 'State board ', '', '', '2019', 55.00, '', 1, '2024-03-26 08:36:12', 0, NULL, 0, NULL, 1),
(23566, 18097, '3', 'bharathidasan University ', '', 'Bca', '2016', 65.00, '', 1, '2024-03-26 08:59:22', 0, NULL, 0, NULL, 1),
(23567, 18098, '3', 'anna university', '', 'b e cse', '2023', 83.00, '', 1, '2024-03-26 09:20:08', 0, NULL, 0, NULL, 1),
(23568, 18099, '1', 'State', '', '', '2018', 70.00, '', 1, '2024-03-26 09:23:38', 0, NULL, 0, NULL, 1),
(23569, 18099, '5', 'DOTE', '', 'Mechanical engineering ', '2021', 90.00, '', 1, '2024-03-26 09:24:03', 0, NULL, 0, NULL, 1),
(23570, 18100, '3', 'Anna University ', '', 'BE', '2022', 82.00, '', 1, '2024-03-26 09:24:37', 0, NULL, 0, NULL, 1),
(23571, 18099, '3', 'Anna university ', '', 'Mechanical engineering ', '2024', 70.00, '', 1, '2024-03-26 09:25:05', 0, NULL, 0, NULL, 1),
(23572, 18100, '1', 'Matriculation ', '', '', '2016', 81.00, '', 1, '2024-03-26 09:25:05', 0, NULL, 0, NULL, 1),
(23573, 18100, '2', 'State board ', '', '', '2018', 69.00, '', 1, '2024-03-26 09:25:30', 0, NULL, 0, NULL, 1),
(23574, 18101, '3', 'Panimalar institute of technology ', '', 'B.E', '2022', 86.00, '', 1, '2024-03-26 09:31:23', 0, NULL, 0, NULL, 1),
(23575, 18103, '3', 'Anna University ', '', 'BE', '2023', 74.00, '', 1, '2024-03-26 09:34:23', 0, NULL, 0, NULL, 1),
(23576, 18106, '3', 'PSNA COLLEGE OF ENGINEERING AND TECHNOLOGY ', '', 'B.E', '2023', 78.00, '', 1, '2024-03-26 09:34:26', 0, NULL, 0, NULL, 1),
(23577, 18103, '1', 'State board ', '', '', '2017', 68.00, '', 1, '2024-03-26 09:34:59', 0, NULL, 0, NULL, 1),
(23578, 18104, '3', 'University ', '', 'Bsc Information technology ', '2023', 80.00, '', 1, '2024-03-26 09:35:07', 0, NULL, 0, NULL, 1),
(23579, 18106, '1', 'State Board ', '', '', '2017', 91.00, '', 1, '2024-03-26 09:35:16', 0, NULL, 0, NULL, 1),
(23580, 18105, '3', 'University', '', 'B. Sc', '2023', 75.70, '', 1, '2024-03-26 09:35:28', 0, NULL, 0, NULL, 1),
(23581, 18104, '1', 'Board ', '', '', '2018', 84.00, '', 1, '2024-03-26 09:35:44', 0, NULL, 0, NULL, 1),
(23582, 18106, '2', 'State Board ', '', '', '2019', 72.00, '', 1, '2024-03-26 09:35:44', 0, NULL, 0, NULL, 1),
(23583, 18105, '2', 'Board', '', '', '2020', 76.00, '', 1, '2024-03-26 09:36:11', 0, NULL, 0, NULL, 1),
(23584, 18104, '2', 'Board ', '', '', '2020', 57.00, '', 1, '2024-03-26 09:36:13', 0, NULL, 0, NULL, 1),
(23585, 18105, '1', 'Board', '', '', '2018', 74.00, '', 1, '2024-03-26 09:36:38', 0, NULL, 0, NULL, 1),
(23586, 16804, '3', 'builders engineering college ', '', 'machanical ', '2020', 62.50, '', 1, '2024-03-26 09:58:42', 0, NULL, 0, NULL, 1),
(23587, 18108, '3', 'Annamalai University ', '', 'BE', '2023', 8.11, '', 1, '2024-03-26 10:38:48', 0, NULL, 0, NULL, 1),
(23588, 18108, '1', 'Antony ', '', '', '2017', 53.00, '', 1, '2024-03-26 10:39:32', 0, NULL, 0, NULL, 1),
(23589, 18108, '2', 'Laurel ', '', '', '2018', 59.00, '', 1, '2024-03-26 10:39:49', 0, NULL, 0, NULL, 1),
(23590, 18109, '3', 'Annamalai University ', '', 'Information technology ', '2023', 8.00, '', 1, '2024-03-26 10:42:07', 0, NULL, 0, NULL, 1),
(23591, 18110, '3', 'Annamalai University ', '', 'B.E(cse)', '2023', 81.00, '', 1, '2024-03-26 10:49:23', 0, NULL, 0, NULL, 1),
(23592, 18110, '2', 'Sri Krishna matric sec school ', '', '', '2019', 69.00, '', 1, '2024-03-26 10:51:02', 0, NULL, 0, NULL, 1),
(23593, 18110, '1', 'Sri Krishna matric sec school ', '', '', '2017', 96.00, '', 1, '2024-03-26 10:51:27', 0, NULL, 0, NULL, 1),
(23594, 18111, '3', 'Bhaktavatsalam memorial college for womens ', '', 'B.com corporate secretary ship ', '2022', 74.00, '', 1, '2024-03-26 11:30:54', 0, NULL, 0, NULL, 1),
(23595, 18115, '4', 'Manonmaniyam University ', '', 'MA', '2022', 85.00, '', 1, '2024-03-26 12:56:47', 0, NULL, 0, NULL, 1),
(23596, 18117, '2', 'velammal matriculation ', '', '', '2016', 90.00, '', 1, '2024-03-26 01:09:26', 0, NULL, 0, NULL, 1),
(23597, 18107, '3', 'Board / C Kandaswami Naidu College', '', 'B.Sc Computer Science', '2022', 76.00, '', 1, '2024-03-26 02:09:52', 0, NULL, 0, NULL, 1),
(23598, 18107, '2', 'Justice Basheer Sayeed Ahmed Matriculation Boys School', '', '', '2018', 78.00, '', 1, '2024-03-26 02:11:21', 0, NULL, 0, NULL, 1),
(23599, 18119, '3', 'Madras university', '', 'B. Com', '2021', 82.00, '', 1, '2024-03-26 04:59:24', 0, NULL, 0, NULL, 1),
(23600, 18118, '3', 'anna university', '', 'b.e electrical and electronics engineering', '2023', 83.00, '', 1, '2024-03-27 01:38:48', 0, NULL, 0, NULL, 1),
(23601, 18118, '2', 'state board', '', '', '2019', 67.00, '', 1, '2024-03-27 01:39:48', 0, NULL, 0, NULL, 1),
(23602, 18118, '1', 'state board', '', '', '2017', 95.00, '', 1, '2024-03-27 01:40:15', 0, NULL, 0, NULL, 1),
(23603, 18121, '3', 'st.josephs institute of technology', '', 'b.e', '2023', 70.00, '', 1, '2024-03-27 02:35:15', 0, NULL, 0, NULL, 1),
(23604, 18121, '2', 'state board', '', '', '2019', 68.00, '', 1, '2024-03-27 02:36:13', 0, NULL, 0, NULL, 1),
(23605, 18121, '1', 'state board', '', '', '2017', 85.00, '', 1, '2024-03-27 02:36:36', 0, NULL, 0, NULL, 1),
(23606, 18123, '3', 'University of Madras ', '', 'BA', '2023', 80.00, '', 1, '2024-03-27 05:05:37', 0, NULL, 0, NULL, 1),
(23607, 18124, '4', 'Bharathidasan University', '', 'MCA', '2016', 74.00, '', 1, '2024-03-27 05:18:46', 0, NULL, 0, NULL, 1),
(23608, 18124, '3', 'Bharathidasan University ', '', 'BCA', '2013', 73.00, '', 1, '2024-03-27 05:19:20', 0, NULL, 0, NULL, 1),
(23609, 18126, '3', 'Banglore North University ', '', 'BBA', '2024', 8.30, '', 1, '2024-03-27 05:19:46', 0, NULL, 0, NULL, 1),
(23610, 18125, '3', 'Periyar', '', 'B com ca', '2010', 60.00, '', 1, '2024-03-27 05:25:32', 0, NULL, 0, NULL, 1),
(23611, 18128, '4', 'Anna university', '', 'Mba', '2022', 80.00, '', 1, '2024-03-27 05:31:53', 0, NULL, 0, NULL, 1),
(23612, 18120, '4', 'anna university', '', 'b.tech', '2021', 7.80, '', 1, '2024-03-27 05:31:59', 0, NULL, 0, NULL, 1),
(23613, 18130, '3', 'Anna University ', '', 'BTech Information Technology ', '2014', 65.00, '', 1, '2024-03-27 05:38:50', 0, NULL, 0, NULL, 1),
(23614, 18120, '3', 'anna universirty ', '', 'b.tech ', '2021', 7.10, '', 1, '2024-03-27 05:41:03', 0, NULL, 0, NULL, 1),
(23615, 18129, '3', 'Saveetha Engineering college ', '', 'B.E', '2017', 60.00, '', 1, '2024-03-27 05:44:27', 0, NULL, 0, NULL, 1),
(23616, 18131, '3', 'Anna university ', '', 'BE', '2023', 79.00, '', 1, '2024-03-27 05:54:23', 0, NULL, 0, NULL, 1),
(23617, 18131, '2', 'State board ', '', '', '2019', 50.00, '', 1, '2024-03-27 05:55:15', 0, NULL, 0, NULL, 1),
(23618, 18131, '1', 'State board ', '', '', '2017', 86.00, '', 1, '2024-03-27 05:55:38', 0, NULL, 0, NULL, 1),
(23619, 18127, '3', 'Bengaluru City University ', '', 'B.com', '2023', 7.50, '', 1, '2024-03-27 05:56:38', 0, NULL, 0, NULL, 1),
(23620, 18132, '4', 'Canara Bank School of Management Studies Bangalore ', '', 'MBA finance ', '2021', 75.18, '', 1, '2024-03-27 05:56:39', 0, NULL, 0, NULL, 1),
(23621, 18135, '3', 'Sri Sairam engineering College ', '', 'BE / cse', '2022', 76.00, '', 1, '2024-03-27 06:13:46', 0, NULL, 0, NULL, 1),
(23622, 18134, '4', 'Madras University ', '', 'Bsc(MCA)', '2021', 71.00, '', 1, '2024-03-27 06:19:07', 0, NULL, 0, NULL, 1),
(23623, 18136, '3', 'Vmu', '', 'B.E Civil engineering ', '2018', 65.00, '', 1, '2024-03-27 06:51:32', 0, NULL, 0, NULL, 1),
(23624, 18137, '3', 'Madaras', '', 'B.com', '2020', 70.00, '', 1, '2024-03-27 06:54:47', 0, NULL, 0, NULL, 1),
(23625, 18138, '3', 'Madras University ', '', '  B.COM ', '2016', 60.00, '', 1, '2024-03-27 07:32:42', 0, NULL, 0, NULL, 1),
(23626, 18139, '3', 'Agurchand manmull Jain college', '', 'BCA', '2022', 70.00, '', 1, '2024-03-27 07:54:58', 0, NULL, 0, NULL, 1),
(23627, 18116, '5', 'dote university', '', 'cse', '2019', 70.00, '', 1, '2024-03-27 09:18:52', 0, NULL, 0, NULL, 1),
(23628, 18142, '3', 'University of madras', '', 'Bsc cs', '2010', 45.00, '', 1, '2024-03-27 11:09:36', 0, NULL, 0, NULL, 1),
(23629, 18142, '2', 'Higher secondary school or Board', '', '', '2007', 50.00, '', 1, '2024-03-27 11:11:19', 0, NULL, 0, NULL, 1),
(23630, 18142, '1', 'Matriculation', '', '', '2005', 50.00, '', 1, '2024-03-27 11:11:52', 0, NULL, 0, NULL, 1),
(23631, 18144, '3', 'Madras university ', '', 'Bcom general', '2020', 70.00, '', 1, '2024-03-27 11:30:36', 0, NULL, 0, NULL, 1),
(23632, 18148, '5', 'DIRECTORATE OF TECHNICAL EDUCATION', '', 'Diploma ', '2016', 65.00, '', 1, '2024-03-28 04:59:06', 0, NULL, 0, NULL, 1),
(23633, 18150, '3', 'Alagappa University ', '', 'BBA ', '2023', 62.00, '', 1, '2024-03-28 05:02:55', 0, NULL, 0, NULL, 1),
(23634, 18149, '5', 'Dote', '', 'Diploma in computer Teachnology ', '2011', 64.00, '', 1, '2024-03-28 05:07:39', 0, NULL, 0, NULL, 1),
(23635, 18151, '3', 'The new college, Madras University ', '', 'b.com (cS)', '2014', 59.00, '', 1, '2024-03-28 05:19:54', 0, NULL, 0, NULL, 1),
(23636, 18152, '3', 'Periyar maniammai institute of science and technology ', '', 'B.Tech EEE ', '2018', 8.31, '', 1, '2024-03-28 05:20:04', 0, NULL, 0, NULL, 1),
(23637, 18155, '4', 'Anna University ', '', 'MBA', '2023', 70.00, '', 1, '2024-03-28 05:55:25', 0, NULL, 0, NULL, 1),
(23638, 18155, '3', 'Madras University ', '', 'B.sc hotel management ', '2021', 90.00, '', 1, '2024-03-28 05:55:54', 0, NULL, 0, NULL, 1),
(23639, 18155, '2', 'State board ', '', '', '2018', 62.00, '', 1, '2024-03-28 05:56:28', 0, NULL, 0, NULL, 1),
(23640, 18154, '3', 'bangalore university', '', 'bba ', '2023', 73.00, '', 1, '2024-03-28 05:56:35', 0, NULL, 0, NULL, 1),
(23641, 18153, '3', 'Anna University ', '', 'BE.ece', '2024', 81.00, '', 1, '2024-03-28 05:56:43', 0, NULL, 0, NULL, 1),
(23642, 18155, '1', 'State board ', '', '', '2017', 62.00, '', 1, '2024-03-28 05:56:56', 0, NULL, 0, NULL, 1),
(23643, 18156, '4', 'bangalore university', '', 'mba', '2023', 70.00, '', 1, '2024-03-28 06:31:06', 0, NULL, 0, NULL, 1),
(23644, 18161, '4', 'Thiruvalluvar University ', '', 'Msc computer science ', '2023', 75.00, '', 1, '2024-03-28 09:16:29', 0, NULL, 0, NULL, 1),
(23645, 18161, '3', 'Thiruvalluvar University ', '', 'Bsc  computer science ', '2021', 65.00, '', 1, '2024-03-28 09:16:56', 0, NULL, 0, NULL, 1),
(23646, 18160, '3', 'Thiruvalluvar ', '', 'BSc ( Computer science)', '2019', 80.00, '', 1, '2024-03-28 09:19:01', 0, NULL, 0, NULL, 1),
(23647, 18160, '2', 'State ', '', 'Computer science ', '2016', 70.00, '', 1, '2024-03-28 09:20:09', 0, NULL, 0, NULL, 1),
(23648, 18160, '1', 'State', '', '', '2014', 90.00, '', 1, '2024-03-28 09:20:22', 0, NULL, 0, NULL, 1),
(23649, 18158, '3', 'Chennai University ', '', 'BBA', '2024', 70.00, '', 1, '2024-03-28 09:38:19', 0, NULL, 0, NULL, 1),
(23650, 18162, '3', 'Alagappa University ', '', 'BA', '2020', 86.00, '', 1, '2024-03-28 09:58:47', 0, NULL, 0, NULL, 1),
(23651, 18163, '3', 'Alagappa ', '', 'BA', '2024', 70.00, '', 1, '2024-03-28 10:22:15', 0, NULL, 0, NULL, 1),
(23652, 18165, '4', 'Bangalore University ', '', 'B.com', '2018', 61.00, '', 1, '2024-03-28 10:42:35', 0, NULL, 0, NULL, 1),
(23653, 18145, '3', 'THIRUTHANGAL NADAR', '', '', '2017', 63.00, '', 1, '2024-03-28 03:38:51', 0, NULL, 0, NULL, 1),
(23654, 18145, '1', 'TEMPLE PARK MATRICULATION HR SEC SCHOOL ', '', '', '2011', 53.00, '', 1, '2024-03-28 03:39:41', 0, NULL, 0, NULL, 1),
(23655, 18167, '2', 'Kaligi rangnath Montfort matric school ', '', '', '2017', 83.00, '', 1, '2024-03-28 04:14:52', 0, NULL, 0, NULL, 1),
(23656, 18167, '1', 'Kaligi rangnath Montfort matric HR sec school ', '', '', '2019', 65.00, '', 1, '2024-03-28 04:15:36', 0, NULL, 0, NULL, 1),
(23657, 18167, '3', 'Pratyusha engineering college ', '', 'B.Tech (IT)', '2023', 82.00, '', 1, '2024-03-28 04:16:28', 0, NULL, 0, NULL, 1),
(23658, 18168, '3', 'Madras University ', '', 'B.sc mathematics', '2022', 76.00, '', 1, '2024-03-29 12:06:55', 0, NULL, 0, NULL, 1),
(23659, 18169, '3', 'Anna University ', '', 'BE cSE', '2024', 70.00, '', 1, '2024-03-29 04:03:48', 0, NULL, 0, NULL, 1),
(23660, 18170, '4', 'Anna University ', '', 'Mba', '2023', 72.00, '', 1, '2024-03-29 04:20:05', 0, NULL, 0, NULL, 1),
(23661, 18171, '4', 'Mangalore University ', '', 'M.Com', '2023', 68.00, '', 1, '2024-03-29 04:29:37', 0, NULL, 0, NULL, 1),
(23662, 18172, '3', 'University of Madras ', '', 'BBA', '2023', 70.00, '', 1, '2024-03-29 04:33:50', 0, NULL, 0, NULL, 1),
(23663, 17908, '3', 'saveetha school of engineering', '', 'btech', '2019', 72.00, '', 1, '2024-03-29 04:45:52', 0, NULL, 0, NULL, 1),
(23664, 17908, '2', 'shanthinikethan school', '', '', '2015', 67.00, '', 1, '2024-03-29 04:46:45', 0, NULL, 0, NULL, 1),
(23665, 17908, '1', 'shanthinikethan school', '', '', '2013', 75.00, '', 1, '2024-03-29 04:47:27', 0, NULL, 0, NULL, 1),
(23666, 18175, '3', 'Anna University ', '', 'B.E', '2023', 79.60, '', 1, '2024-03-29 05:29:08', 0, NULL, 0, NULL, 1),
(23667, 18174, '4', 'Pondicherry university', '', 'Mba', '2020', 64.00, '', 1, '2024-03-29 05:29:24', 0, NULL, 0, NULL, 1),
(23668, 18176, '3', 'University of madras ', '', 'BA ( his) ', '2020', 60.00, '', 1, '2024-03-29 05:47:58', 1, '2024-03-29 05:51:10', 0, NULL, 0),
(23669, 18176, '2', 'K. B. C. Govt.Girls. Hr. Sec. School', '', '', '2017', 68.00, '', 1, '2024-03-29 05:49:13', 0, NULL, 0, NULL, 1),
(23670, 18176, '1', 'Ayisha Matriculation School ', '', '', '2015', 70.00, '', 1, '2024-03-29 05:50:44', 0, NULL, 0, NULL, 1),
(23671, 18176, '3', 'University of madras', '', 'b. a His ', '2020', 60.00, '', 1, '2024-03-29 05:52:06', 0, NULL, 0, NULL, 1),
(23672, 18177, '3', 'Madras University ', '', 'Bsc physics with computer application ', '2020', 75.00, '', 1, '2024-03-29 06:17:33', 1, '2024-03-29 06:19:06', 0, NULL, 1),
(23673, 18177, '1', 'Arignar anna higher secondary school ', '', '', '2015', 80.00, '', 1, '2024-03-29 06:21:53', 0, NULL, 0, NULL, 1),
(23674, 18177, '2', 'Arignar anna higher secondary school ', '', '', '2017', 75.00, '', 1, '2024-03-29 06:22:20', 0, NULL, 0, NULL, 1),
(23675, 18178, '3', 'Utkal University ', '', 'BA', '2013', 50.00, '', 1, '2024-03-29 06:32:51', 0, NULL, 0, NULL, 1),
(23676, 18180, '3', 'Bharathidasan University ', '', 'BBA', '2024', 80.00, '', 1, '2024-03-29 06:39:01', 0, NULL, 0, NULL, 1),
(23677, 18179, '5', 'Dote', '', 'DME', '2023', 84.00, '', 1, '2024-03-29 06:40:55', 0, NULL, 0, NULL, 1),
(23678, 18179, '2', 'State Board ', '', '', '2020', 57.00, '', 1, '2024-03-29 06:43:04', 0, NULL, 0, NULL, 1),
(23679, 18179, '1', 'State Board ', '', '', '2018', 82.00, '', 1, '2024-03-29 06:43:58', 0, NULL, 0, NULL, 1),
(23680, 18181, '5', 'Bharathidasan University ', '', 'DME', '2019', 65.00, '', 1, '2024-03-29 06:46:44', 0, NULL, 0, NULL, 1),
(23681, 18182, '2', 'St.savio matriculation higher secondary school ', '', '', '2024', 75.00, '', 1, '2024-03-29 06:53:34', 0, NULL, 0, NULL, 1),
(23682, 18183, '3', 'Madras University ', '', 'B.sc physics ', '2017', 65.00, '', 1, '2024-03-29 06:56:12', 0, NULL, 0, NULL, 1),
(23683, 18185, '3', 'Madras university', '', 'B.com', '2022', 75.00, '', 1, '2024-03-29 07:01:14', 0, NULL, 0, NULL, 1),
(23684, 18184, '5', 'Miet', '', '1', '2021', 75.00, '', 1, '2024-03-29 07:05:01', 0, NULL, 0, NULL, 1),
(23685, 18187, '3', 'Annamalai University ', '', 'Bsc agri', '2021', 74.00, '', 1, '2024-03-29 07:32:33', 0, NULL, 0, NULL, 1),
(23686, 18188, '3', 'University of madras', '', 'B. Com', '2023', 75.00, '', 1, '2024-03-29 07:37:15', 0, NULL, 0, NULL, 1),
(23687, 18189, '3', 'Jbas', '', 'B.com', '2016', 80.00, '', 1, '2024-03-29 07:38:10', 0, NULL, 0, NULL, 1),
(23688, 18190, '2', 'State board', '', '', '2012', 59.00, '', 1, '2024-03-29 07:59:25', 0, NULL, 0, NULL, 1),
(23689, 18191, '3', 'University of Madras ', '', 'B com', '2016', 62.00, '', 1, '2024-03-29 08:09:26', 0, NULL, 0, NULL, 1),
(23690, 18193, '3', 'DMI College Of Engineering ', '', 'B.E / EEE', '2017', 65.00, '', 1, '2024-03-29 09:18:35', 0, NULL, 0, NULL, 1),
(23691, 18196, '2', 'Board', '', '', '2014', 75.00, '', 1, '2024-03-29 10:43:36', 0, NULL, 0, NULL, 1),
(23692, 18196, '1', 'Board', '', '', '2012', 82.00, '', 1, '2024-03-29 10:44:06', 0, NULL, 0, NULL, 1),
(23693, 18198, '3', 'Autonomous', '', 'BCom Information System Management', '2023', 63.00, '', 1, '2024-03-30 04:58:11', 0, NULL, 0, NULL, 1),
(23694, 18200, '3', 'University of madras', '', 'Bsc computer science ', '2022', 89.00, '', 1, '2024-03-30 05:36:53', 0, NULL, 0, NULL, 1),
(23695, 18202, '3', 'Madras University ', '', 'Bsc.computer science ', '2019', 65.00, '', 1, '2024-03-30 05:38:31', 0, NULL, 0, NULL, 1),
(23696, 18201, '3', 'University ', '', 'B.Com CA', '2021', 85.40, '', 1, '2024-03-30 05:42:03', 0, NULL, 0, NULL, 1),
(23697, 18203, '4', 'Periyar University ', '', 'MCA', '2022', 80.00, '', 1, '2024-03-30 05:49:51', 0, NULL, 0, NULL, 1),
(23698, 18204, '3', 'Annamalai university ', '', 'B.sc.(Hons.) Agriculture ', '2022', 79.20, '', 1, '2024-03-30 07:29:23', 0, NULL, 0, NULL, 1),
(23699, 18206, '3', 'ktu university ', '', 'btech ', '2021', 8.20, '', 1, '2024-03-30 09:11:42', 0, NULL, 0, NULL, 1),
(23700, 18206, '1', 'state', '', '', '2015', 94.00, '', 1, '2024-03-30 09:12:34', 0, NULL, 0, NULL, 1),
(23701, 18206, '2', 'state board', '', '', '2017', 89.00, '', 1, '2024-03-30 09:12:59', 0, NULL, 0, NULL, 1),
(23702, 18207, '3', 'Sri Venkateswara College of Engineering', '', 'B. E. ', '2021', 74.60, '', 1, '2024-03-30 09:28:20', 0, NULL, 0, NULL, 1),
(23703, 18209, '3', 'madras university', '', 'b a tamil', '2016', 67.00, '', 1, '2024-03-30 11:03:09', 0, NULL, 0, NULL, 1),
(23704, 18210, '2', 'State government ', '', '', '2022', 49.00, '', 1, '2024-03-30 03:48:21', 0, NULL, 0, NULL, 1),
(23705, 18211, '3', 'Anna University', '', 'B. Tech IT', '2018', 61.60, '', 1, '2024-03-31 06:19:14', 0, NULL, 0, NULL, 1),
(23706, 18213, '4', 'measi Institute of Information Technology ', '', 'mca ', '2023', 78.00, '', 1, '2024-04-01 04:44:53', 0, NULL, 0, NULL, 1),
(23707, 18213, '3', 'the new college', '', 'bca', '2021', 79.00, '', 1, '2024-04-01 04:45:24', 0, NULL, 0, NULL, 1),
(23708, 18214, '3', 'Bharathiyar University ', '', 'BCA', '2021', 72.00, '', 1, '2024-04-01 04:48:59', 0, NULL, 0, NULL, 1),
(23709, 18197, '3', 'University of Madras ', '', 'Bcom corporate secretaryship', '2022', 80.00, '', 1, '2024-04-01 04:51:23', 0, NULL, 0, NULL, 1),
(23710, 18215, '3', 'Madras University ', '', 'B com general ', '2020', 86.00, '', 1, '2024-04-01 04:52:11', 0, NULL, 0, NULL, 1),
(23711, 18216, '3', 'Anna University ', '', 'B.E MECHANICAL ENGINEERING ', '2020', 70.00, '', 1, '2024-04-01 04:56:09', 0, NULL, 0, NULL, 1),
(23712, 18212, '3', 'vels univercity', '', 'bcom.ca', '2020', 63.50, '', 1, '2024-04-01 05:00:05', 0, NULL, 0, NULL, 1),
(23713, 18217, '5', 'Nehru college of aeronautics and applied sciences ', '', 'Aircraft maintenance engineering ', '2024', 80.10, '', 1, '2024-04-01 05:03:29', 0, NULL, 0, NULL, 1),
(23714, 17949, '5', 'Dote', '', 'DCE', '2020', 75.00, '', 1, '2024-04-01 05:05:57', 0, NULL, 0, NULL, 1),
(23715, 17949, '1', 'State board ', '', '', '2017', 84.00, '', 1, '2024-04-01 05:06:17', 0, NULL, 0, NULL, 1),
(23716, 18220, '3', 'Anna university', '', 'BE ELECTRONICS AND COMMUNICATION ENGINEERING', '2023', 76.00, '', 1, '2024-04-01 05:18:24', 0, NULL, 0, NULL, 1),
(23717, 18220, '5', 'Direct of tecnical education', '', 'Diplama in electronics and communication engineeri', '2020', 76.00, '', 1, '2024-04-01 05:19:19', 0, NULL, 0, NULL, 1),
(23718, 18219, '4', 'Anna University ', '', 'MBA', '2024', 70.00, '', 1, '2024-04-01 05:19:23', 0, NULL, 0, NULL, 1),
(23719, 18219, '3', 'Bharathidasan university ', '', 'B.Com', '2022', 67.00, '', 1, '2024-04-01 05:20:14', 1, '2024-04-01 05:21:37', 0, NULL, 1),
(23720, 18219, '2', 'State board ', '', '', '2019', 66.00, '', 1, '2024-04-01 05:22:27', 0, NULL, 0, NULL, 1),
(23721, 18218, '5', 'Rajendra educational society', '', '', '2019', 65.00, '', 1, '2024-04-01 05:42:12', 0, NULL, 0, NULL, 1),
(23722, 18221, '3', 'Madras University ', '', 'B com general ', '2021', 73.00, '', 1, '2024-04-01 05:46:16', 0, NULL, 0, NULL, 1),
(23723, 18224, '4', 'Anna University', '', 'M.E', '2018', 78.00, '', 1, '2024-04-01 07:52:56', 0, NULL, 0, NULL, 1),
(23724, 18223, '1', 'St Thomas Mat Hr sec school', '', '', '2011', 68.80, '', 1, '2024-04-01 07:53:42', 0, NULL, 0, NULL, 1),
(23725, 18223, '2', 'St Thomas Mat Hr sec school ', '', '', '2013', 72.90, '', 1, '2024-04-01 07:54:21', 0, NULL, 0, NULL, 1),
(23726, 18223, '3', 'JEPPIAAR SRR ENGINEERING COLLEGE ', '', 'B.E (ECE)', '2017', 67.90, '', 1, '2024-04-01 07:54:55', 0, NULL, 0, NULL, 1),
(23727, 18226, '3', 'anna university', '', 'bachelor of engineering', '2023', 81.00, '', 1, '2024-04-01 07:58:42', 0, NULL, 0, NULL, 1),
(23728, 18226, '2', 'state board of tamilnadu', '', '', '2019', 62.50, '', 1, '2024-04-01 07:59:12', 1, '2024-04-01 07:59:25', 0, NULL, 0),
(23729, 18225, '3', 'Madras University ', '', 'BBA ', '2023', 70.00, '', 1, '2024-04-01 08:28:41', 0, NULL, 0, NULL, 1),
(23730, 18229, '3', 'Andhra University ', '', 'Bsc', '2022', 74.00, '', 1, '2024-04-01 10:23:50', 0, NULL, 0, NULL, 1),
(23731, 18229, '2', 'Andhra Pradesh Board', '', '', '2019', 87.00, '', 1, '2024-04-01 10:24:15', 0, NULL, 0, NULL, 1),
(23732, 18229, '1', 'Andhra Pradesh Board', '', '', '2017', 90.00, '', 1, '2024-04-01 10:24:34', 0, NULL, 0, NULL, 1),
(23733, 18228, '3', 'Madras University ', '', 'B.A( English Literature)', '2022', 51.00, '', 1, '2024-04-01 12:15:43', 0, NULL, 0, NULL, 1),
(23734, 18231, '3', 'JNTUA ', '', 'B.tech', '2018', 70.00, '', 1, '2024-04-01 12:44:46', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(23735, 18232, '3', 'Madras university', '', 'B.com', '2019', 60.00, '', 1, '2024-04-01 12:50:55', 0, NULL, 0, NULL, 1),
(23736, 18233, '3', 'Madras university ', '', 'BSC', '2022', 85.00, '', 1, '2024-04-01 01:13:15', 0, NULL, 0, NULL, 1),
(23737, 18234, '3', 'St.Peter\'s University', '', 'B.com', '2021', 60.00, '', 1, '2024-04-01 01:32:50', 0, NULL, 0, NULL, 1),
(23738, 18222, '3', 'University of Madras', '', 'BCA', '2021', 8.20, '', 1, '2024-04-02 03:56:51', 0, NULL, 0, NULL, 1),
(23739, 18237, '3', 'University ', '', 'Bsc(computer science)', '2023', 74.00, '', 1, '2024-04-02 04:21:20', 0, NULL, 0, NULL, 1),
(23740, 18238, '3', 'Tamil Nadu agricultural University ', '', 'B Sc(agri)', '2020', 7.51, '', 1, '2024-04-02 04:31:24', 0, NULL, 0, NULL, 1),
(23741, 18240, '1', 'Vignan junior collage', '', '', '2018', 82.00, '', 1, '2024-04-02 05:05:00', 0, NULL, 0, NULL, 1),
(23742, 18244, '3', 'Bharatiyar University ', '', 'BSC - Viscom', '2022', 74.00, '', 1, '2024-04-02 05:22:04', 0, NULL, 0, NULL, 1),
(23743, 18246, '3', 'PRIST DEEMED UNIVERSITY ', '', 'B. Tech EEE', '2022', 80.00, '', 1, '2024-04-02 05:32:53', 0, NULL, 0, NULL, 1),
(23744, 18247, '3', 'Madras University ', '', 'B.com(a/F)', '2015', 70.00, '', 1, '2024-04-02 05:38:14', 0, NULL, 0, NULL, 1),
(23745, 18242, '3', 'Bhaktavatsalam memorial college for women ', '', 'Bca', '2023', 85.00, '', 1, '2024-04-02 05:44:37', 0, NULL, 0, NULL, 1),
(23746, 18242, '1', 'State board ', '', '', '2018', 84.00, '', 1, '2024-04-02 05:45:28', 0, NULL, 0, NULL, 1),
(23747, 18241, '3', 'Bharathiar University ', '', 'B com logistics and shipping ', '2020', 69.00, '', 1, '2024-04-02 05:45:52', 0, NULL, 0, NULL, 1),
(23748, 18245, '3', 'Gulbarga University ', '', 'BA ', '2022', 6.73, '', 1, '2024-04-02 05:47:32', 0, NULL, 0, NULL, 1),
(23749, 18249, '5', 'SRM University ', '', 'Civil engineering ', '2022', 70.00, '', 1, '2024-04-02 06:03:33', 0, NULL, 0, NULL, 1),
(23750, 18251, '3', 'sathyabama uni ', '', 'bcom general', '2017', 80.00, '', 1, '2024-04-02 06:19:44', 0, NULL, 0, NULL, 1),
(23751, 18251, '1', 'guru nanak matriculation school', '', '', '2012', 60.00, '', 1, '2024-04-02 06:22:14', 0, NULL, 0, NULL, 1),
(23752, 18252, '1', 'nav bharath vidhalaya matric hr sec school', '', '', '2016', 85.00, '', 1, '2024-04-02 06:31:02', 0, NULL, 0, NULL, 1),
(23753, 18252, '2', 'Nav Bharath Vidhalaya Matric Hr Sec School', '', '', '2018', 65.00, '', 1, '2024-04-02 06:31:29', 0, NULL, 0, NULL, 1),
(23754, 18252, '3', 'alpha arts and science college', '', 'bca', '2021', 75.00, '', 1, '2024-04-02 06:32:02', 0, NULL, 0, NULL, 1),
(23755, 18254, '3', 'the new college ', '', 'ba english ', '2022', 75.00, '', 1, '2024-04-02 06:33:50', 0, NULL, 0, NULL, 1),
(23756, 18255, '1', 'Matric Higher secondary ', '', '', '2017', 71.00, '', 1, '2024-04-02 06:35:12', 0, NULL, 0, NULL, 1),
(23757, 18255, '5', 'Dote', '', 'ECE', '2020', 70.00, '', 1, '2024-04-02 06:35:38', 0, NULL, 0, NULL, 1),
(23758, 18255, '3', 'Deemed University ', '', 'B.Tech ECE', '2024', 78.00, '', 1, '2024-04-02 06:36:05', 0, NULL, 0, NULL, 1),
(23759, 18256, '5', 'Bte up board ', '', 'Diploma ', '2020', 81.00, '', 1, '2024-04-02 06:42:53', 0, NULL, 0, NULL, 1),
(23760, 18258, '3', 'Bharathidasan university', '', 'B. Sc zoology', '2020', 75.00, '', 1, '2024-04-02 07:51:17', 0, NULL, 0, NULL, 1),
(23761, 18258, '1', 'State board', '', '', '2015', 87.00, '', 1, '2024-04-02 07:52:10', 0, NULL, 0, NULL, 1),
(23762, 18258, '2', 'State board', '', '', '2017', 73.00, '', 1, '2024-04-02 07:52:29', 0, NULL, 0, NULL, 1),
(23763, 18259, '4', 'Anna university ', '', 'MBA', '2024', 80.00, '', 1, '2024-04-02 08:17:31', 0, NULL, 0, NULL, 1),
(23764, 18236, '3', 'Bangalore University ', '', 'BBA ', '2019', 67.00, '', 1, '2024-04-02 11:30:38', 0, NULL, 0, NULL, 1),
(23765, 18262, '4', 'anna university', '', 'mba', '2023', 72.00, '', 1, '2024-04-02 11:48:26', 0, NULL, 0, NULL, 1),
(23766, 18263, '3', 'Madras University ', '', 'B.com Accounting And Finance ', '2023', 85.00, '', 1, '2024-04-02 01:45:16', 0, NULL, 0, NULL, 1),
(23767, 18266, '3', 'Madras university ', '', 'B.com (corporate secretaryship)', '2023', 75.00, '', 1, '2024-04-03 03:53:58', 0, NULL, 0, NULL, 1),
(23768, 18269, '3', 'Madras University ', '', 'BBA', '2020', 70.00, '', 1, '2024-04-03 04:47:13', 0, NULL, 0, NULL, 1),
(23769, 18271, '4', 'Madras University', '', 'B. Com Corporate Secretary Ship', '2021', 75.00, '', 1, '2024-04-03 04:57:51', 0, NULL, 0, NULL, 1),
(23770, 18271, '4', 'Madras University', '', 'B.Com Corporate Secretary Ship', '2021', 75.00, '', 1, '2024-04-03 05:05:44', 0, NULL, 0, NULL, 1),
(23771, 18271, '1', 'State Board', '', '', '2017', 81.00, '', 1, '2024-04-03 05:07:34', 0, NULL, 0, NULL, 1),
(23772, 18271, '2', 'State Board', '', '', '2014', 75.00, '', 1, '2024-04-03 05:09:25', 0, NULL, 0, NULL, 1),
(23773, 18273, '3', 'Maher university ', '', 'B.com', '2022', 76.00, '', 1, '2024-04-03 05:36:49', 0, NULL, 0, NULL, 1),
(23774, 18273, '2', 'State board', '', '', '2019', 64.00, '', 1, '2024-04-03 05:43:09', 0, NULL, 0, NULL, 1),
(23775, 18273, '1', 'State board', '', '', '2017', 88.00, '', 1, '2024-04-03 05:43:45', 0, NULL, 0, NULL, 1),
(23776, 18272, '3', 'madres University ', '', 'B.com ', '2019', 65.00, '', 1, '2024-04-03 05:45:15', 0, NULL, 0, NULL, 1),
(23777, 18274, '4', 'annamalai university', '', 'm.s.w', '2020', 60.00, '', 1, '2024-04-03 05:50:47', 1, '2024-04-03 05:51:49', 0, NULL, 0),
(23778, 18274, '4', 'annamalai university', '', 'm.s.w', '2020', 60.00, '', 1, '2024-04-03 05:51:43', 0, NULL, 0, NULL, 1),
(23779, 18277, '3', 'Tiruvalluvar', '', 'BSC:CS', '2021', 97.00, '', 1, '2024-04-03 06:18:27', 0, NULL, 0, NULL, 1),
(23780, 18279, '4', 'University of madras', '', 'MA journalism', '2024', 70.00, '', 1, '2024-04-03 06:24:46', 0, NULL, 0, NULL, 1),
(23781, 18279, '3', 'University of madras ', '', 'BA english', '2022', 83.00, '', 1, '2024-04-03 06:25:24', 0, NULL, 0, NULL, 1),
(23782, 18279, '2', 'State board of tamil nadu', '', '', '2018', 56.00, '', 1, '2024-04-03 06:25:49', 0, NULL, 0, NULL, 1),
(23783, 18279, '1', 'State board', '', '', '2016', 92.00, '', 1, '2024-04-03 06:26:04', 0, NULL, 0, NULL, 1),
(23784, 18278, '4', 'Madras University', '', 'MA HRM', '2020', 74.00, '', 1, '2024-04-03 06:26:12', 0, NULL, 0, NULL, 1),
(23785, 18280, '3', 'madurai kamaraj ', '', 'bBA', '2023', 70.00, '', 112, '2024-04-03 11:56:56', 112, '2024-04-03 12:16:08', 0, NULL, 1),
(23786, 18279, '5', 'Nil', '', 'Nil', '2016', 1.00, '', 1, '2024-04-03 06:27:01', 1, '2024-04-03 06:27:07', 0, NULL, 0),
(23787, 18276, '3', 'thiruvalluvar ', '', 'bba', '2023', 60.00, '', 1, '2024-04-03 06:29:14', 0, NULL, 0, NULL, 1),
(23788, 18281, '3', 'Agni college of Technology ', '', 'B. Tech', '2020', 70.00, '', 1, '2024-04-03 06:43:29', 0, NULL, 0, NULL, 1),
(23789, 18267, '3', 'Madurai kamaraj University ', '', 'BBA(logistics and shipping management)', '2023', 70.00, '', 1, '2024-04-03 07:00:49', 0, NULL, 0, NULL, 1),
(23790, 18283, '3', 'Madras University ', '', 'Bsc.Chemistry ', '2019', 75.00, '', 1, '2024-04-03 07:30:37', 0, NULL, 0, NULL, 1),
(23791, 18282, '3', 'Periyar University ', '', 'B.com  (ca)', '2020', 66.00, '', 1, '2024-04-03 09:30:04', 0, NULL, 0, NULL, 1),
(23792, 18284, '3', 'madras university', '', 'b.a eng', '2020', 50.00, '', 1, '2024-04-03 10:35:34', 0, NULL, 0, NULL, 1),
(23793, 18289, '4', 'Anna University ', '', 'B. tech IT', '2020', 71.99, '', 1, '2024-04-03 01:06:57', 0, NULL, 0, NULL, 1),
(23794, 18140, '3', 'Deemed University ', '', 'B.voc ( BFSI)', '2023', 83.50, '', 1, '2024-04-03 01:17:57', 0, NULL, 0, NULL, 1),
(23795, 18287, '3', 'Vtu', '', '', '2023', 60.00, '', 1, '2024-04-03 01:38:25', 0, NULL, 0, NULL, 1),
(23796, 18292, '3', 'Bharathidasan University ', '', 'BA English ', '2023', 70.00, '', 1, '2024-04-04 05:14:25', 0, NULL, 0, NULL, 1),
(23797, 18293, '3', 'Prist University ', '', 'B. Sc(Computer science)', '2021', 7.53, '', 1, '2024-04-04 05:28:02', 0, NULL, 0, NULL, 1),
(23798, 18293, '2', 'State board of education ', '', '', '2018', 43.00, '', 1, '2024-04-04 05:31:04', 0, NULL, 0, NULL, 1),
(23799, 18293, '1', 'State board of education ', '', '', '2016', 59.00, '', 1, '2024-04-04 05:31:37', 0, NULL, 0, NULL, 1),
(23800, 18294, '3', 'University of Madras ', '', 'BBA', '2023', 7.37, '', 1, '2024-04-04 05:59:28', 0, NULL, 0, NULL, 1),
(23801, 18291, '3', 'Banglore North university', '', 'Bcom', '2022', 75.00, '', 1, '2024-04-04 06:28:06', 0, NULL, 0, NULL, 1),
(23802, 18298, '1', 'university of madras', '', '', '2024', 68.00, '', 1, '2024-04-04 06:47:24', 0, NULL, 0, NULL, 1),
(23803, 18295, '3', 'Madras of university ', '', 'b.com ( corporate secretaryship)', '2023', 75.00, '', 1, '2024-04-04 06:47:45', 0, NULL, 0, NULL, 1),
(23804, 18302, '4', 'vtu', '', 'mba', '2017', 70.00, '', 1, '2024-04-04 06:49:28', 0, NULL, 0, NULL, 1),
(23805, 18302, '3', 'calicut university', '', 'bba', '2015', 72.00, '', 1, '2024-04-04 06:50:19', 0, NULL, 0, NULL, 1),
(23806, 18301, '3', 'University of Madras ', '', 'BBA', '2024', 60.00, '', 1, '2024-04-04 06:50:38', 0, NULL, 0, NULL, 1),
(23807, 18303, '3', 'University of madras', '', 'BBA', '2020', 75.00, '', 1, '2024-04-04 07:05:47', 0, NULL, 0, NULL, 1),
(23808, 18305, '3', 'Madras university', '', 'B. Com', '2022', 70.00, '', 1, '2024-04-04 07:15:50', 0, NULL, 0, NULL, 1),
(23809, 18300, '3', 'sathyabama university', '', 'b.com general', '2024', 77.00, '', 1, '2024-04-04 07:17:57', 0, NULL, 0, NULL, 1),
(23810, 18286, '2', 'Karnataka State ', '', '', '2008', 43.03, '', 126, '2024-04-04 12:53:59', 0, NULL, 0, NULL, 1),
(23811, 18299, '3', 'madras university', '', 'bcom', '2024', 68.00, '', 1, '2024-04-04 07:24:16', 0, NULL, 0, NULL, 1),
(23812, 18286, '1', 'Karnataka University', '', '', '2006', 52.00, '', 1, '2024-04-04 07:32:42', 0, NULL, 0, NULL, 1),
(23813, 18306, '3', 'Karnataka University ', '', 'B.cOM', '2023', 63.00, '', 1, '2024-04-04 08:01:46', 0, NULL, 0, NULL, 1),
(23814, 18306, '1', 'State board', '', '', '2018', 71.00, '', 1, '2024-04-04 08:03:43', 0, NULL, 0, NULL, 1),
(23815, 18307, '5', 'dote', '', 'mechanical Engineering in diploma', '2020', 74.00, '', 1, '2024-04-04 08:55:46', 0, NULL, 0, NULL, 1),
(23816, 18308, '4', 'Dg vaishnav college ', '', 'M.Sc. Information technology ', '2023', 79.00, '', 1, '2024-04-04 09:19:47', 0, NULL, 0, NULL, 1),
(23817, 18308, '3', 'Dg vaishnav college ', '', 'B.Sc. Maths with computer applications ', '2021', 68.00, '', 1, '2024-04-04 09:20:25', 0, NULL, 0, NULL, 1),
(23818, 18308, '2', 'Anita Methodist matriculation higher secondary school ', '', '', '2018', 60.00, '', 1, '2024-04-04 09:21:04', 0, NULL, 0, NULL, 1),
(23819, 18308, '1', 'Anita Methodist matriculation higher secondary school ', '', '', '2016', 77.00, '', 1, '2024-04-04 09:21:33', 0, NULL, 0, NULL, 1),
(23820, 18309, '3', 'Madhurai kamaraj University ', '', 'BBA', '2023', 58.00, '', 1, '2024-04-04 09:57:31', 0, NULL, 0, NULL, 1),
(23821, 18310, '3', 'Board', '', 'B.com general', '2024', 6.23, '', 1, '2024-04-04 11:13:01', 0, NULL, 0, NULL, 1),
(23822, 18313, '4', 'Bharathiar university ', '', 'MBA in finance ', '2022', 70.00, '', 1, '2024-04-04 11:55:04', 0, NULL, 0, NULL, 1),
(23823, 18316, '3', 'Bharathidasan University', '', 'B. Com', '2024', 75.00, '', 1, '2024-04-05 04:37:47', 0, NULL, 0, NULL, 1),
(23824, 18318, '3', 'Madras University ', '', 'B.Sc Advance zoology & Biotechnology ', '2023', 70.00, '', 1, '2024-04-05 04:53:54', 0, NULL, 0, NULL, 1),
(23825, 18319, '4', 'Kalaslingam academy of research and education ', '', 'M.C.A', '2023', 7.00, '', 1, '2024-04-05 05:01:46', 0, NULL, 0, NULL, 1),
(23826, 18323, '3', 'Deemed University ', '', 'BE', '2023', 8.80, '', 1, '2024-04-05 05:08:03', 0, NULL, 0, NULL, 1),
(23827, 18324, '5', 'State Board of Technical Education, Tamilnadu ', '', 'Diploma in ECE', '2014', 96.00, '', 1, '2024-04-05 05:13:44', 0, NULL, 0, NULL, 1),
(23828, 18324, '2', 'State Board ', '', '', '2012', 71.00, '', 1, '2024-04-05 05:14:25', 0, NULL, 0, NULL, 1),
(23829, 18324, '1', 'State Board ', '', '', '2010', 86.00, '', 1, '2024-04-05 05:14:41', 0, NULL, 0, NULL, 1),
(23830, 18317, '3', 'Madras university', '', 'B.Sc Computer Science', '2023', 88.00, '', 1, '2024-04-05 05:16:19', 0, NULL, 0, NULL, 1),
(23831, 18321, '4', 'MADRAS UNIVERSITY ', '', 'MSC IT ', '2018', 70.00, '', 1, '2024-04-05 05:17:20', 0, NULL, 0, NULL, 1),
(23832, 18321, '3', 'MADRAS UNIVERSITY ', '', 'BSC CS', '2016', 70.00, '', 1, '2024-04-05 05:17:55', 0, NULL, 0, NULL, 1),
(23833, 18321, '2', 'MATRICULATION ', '', '', '2013', 88.00, '', 1, '2024-04-05 05:18:26', 0, NULL, 0, NULL, 1),
(23834, 18321, '1', 'CBSE ', '', '', '2011', 60.00, '', 1, '2024-04-05 05:18:47', 0, NULL, 0, NULL, 1),
(23835, 18315, '3', 'university of madras', '', 'B. Com( c. S) ', '2022', 75.00, '', 1, '2024-04-05 05:27:53', 0, NULL, 0, NULL, 1),
(23836, 18320, '4', 'Anna university', '', 'MBA', '2018', 67.00, '', 1, '2024-04-05 05:32:17', 0, NULL, 0, NULL, 1),
(23837, 18325, '3', 'Madras University ', '', 'Bcom (corporate secretaryship )', '2023', 80.00, '', 1, '2024-04-05 05:37:31', 0, NULL, 0, NULL, 1),
(23838, 18325, '2', 'Muruga dhanuskodi girls Hr Sec School ', '', '', '2018', 80.00, '', 1, '2024-04-05 05:38:34', 0, NULL, 0, NULL, 1),
(23839, 18325, '1', 'Muruga dhanuskodi girls Hr Sec School ', '', '', '2020', 80.00, '', 1, '2024-04-05 05:38:57', 0, NULL, 0, NULL, 1),
(23840, 18326, '3', 'dr mgr University ', '', 'bca', '2018', 75.00, '', 1, '2024-04-05 05:44:16', 0, NULL, 0, NULL, 1),
(23841, 18328, '4', 'Madras University ', '', 'Msc Mathematics ', '2022', 74.40, '', 1, '2024-04-05 06:11:34', 0, NULL, 0, NULL, 1),
(23842, 18328, '3', 'Madras University ', '', 'Bsc Mathematics ', '2020', 80.00, '', 1, '2024-04-05 06:13:10', 0, NULL, 0, NULL, 1),
(23843, 18328, '2', 'Dr.vimala convent matriculation higher secondary school ', '', '', '2017', 80.40, '', 1, '2024-04-05 06:14:08', 0, NULL, 0, NULL, 1),
(23844, 18327, '3', 'Anna university', '', 'BE', '2016', 75.00, '', 1, '2024-04-05 06:22:47', 0, NULL, 0, NULL, 1),
(23845, 18328, '1', 'Dr. Vimala convent matriculation higher secondary school ', '', '', '2015', 87.60, '', 1, '2024-04-05 06:26:12', 0, NULL, 0, NULL, 1),
(23846, 18329, '3', 'Madurai thirumalai naicker collage', '', 'B. Com ca', '2021', 78.50, '', 1, '2024-04-05 06:36:15', 0, NULL, 0, NULL, 1),
(23847, 18330, '3', 'Sri Krishna devaraya university ', '', 'Bsc', '2015', 67.00, '', 1, '2024-04-05 06:40:30', 0, NULL, 0, NULL, 1),
(23848, 18331, '3', 'shree venkateswara university', '', 'bcom', '2018', 70.00, '', 1, '2024-04-05 06:48:58', 0, NULL, 0, NULL, 1),
(23849, 18333, '3', 'University ', '', 'BE', '2015', 75.00, '', 1, '2024-04-05 06:49:31', 0, NULL, 0, NULL, 1),
(23850, 18332, '5', 'central polytechnic college ', '', 'Electronic and commuication engineering', '2021', 68.00, '', 1, '2024-04-05 06:53:27', 0, NULL, 0, NULL, 1),
(23851, 18334, '3', 'Anna University ', '', 'Be cse', '2023', 80.00, '', 1, '2024-04-05 06:55:56', 0, NULL, 0, NULL, 1),
(23852, 18334, '2', 'Samacheer tamilnadu', '', '', '2019', 75.00, '', 1, '2024-04-05 06:56:31', 0, NULL, 0, NULL, 1),
(23853, 18334, '1', 'Samacheer twmilu', '', '', '2017', 90.00, '', 1, '2024-04-05 06:56:57', 0, NULL, 0, NULL, 1),
(23854, 18335, '3', 'Madras University ', '', 'B.C.A', '2018', 65.00, '', 1, '2024-04-05 07:01:30', 0, NULL, 0, NULL, 1),
(23855, 18336, '3', 'Madras University ', '', 'B com', '2023', 70.00, '', 1, '2024-04-05 07:03:41', 0, NULL, 0, NULL, 1),
(23856, 18338, '3', 'Loyola college ', '', 'Bsc.statistics', '2016', 55.00, '', 1, '2024-04-05 07:18:05', 0, NULL, 0, NULL, 1),
(23857, 18339, '2', 'Sri Chaitanya educational University ', '', '', '2017', 76.00, '', 1, '2024-04-05 07:44:23', 0, NULL, 0, NULL, 1),
(23858, 18340, '3', 'Bharathiyar university', '', 'B.sc Geology', '2022', 8.50, '', 1, '2024-04-05 07:52:36', 0, NULL, 0, NULL, 1),
(23859, 18342, '3', 'Anna University Chennai ', '', 'B.com CS', '2022', 78.00, '', 1, '2024-04-05 07:56:02', 0, NULL, 0, NULL, 1),
(23860, 18341, '3', 'University of Madras ', '', 'B.A English literature ', '2019', 68.00, '', 1, '2024-04-05 08:01:35', 0, NULL, 0, NULL, 1),
(23861, 18297, '3', 'Thiruvalluvar University ', '', 'Bcom', '2022', 72.00, '', 1, '2024-04-05 08:08:51', 0, NULL, 0, NULL, 1),
(23862, 18345, '3', 'Bharathidasan', '', 'Information technology ', '2017', 80.00, '', 1, '2024-04-05 09:10:03', 0, NULL, 0, NULL, 1),
(23863, 18322, '3', 'Yjr puc college gangavati', '', 'Bachelor of engineering', '2019', 60.00, '', 1, '2024-04-05 09:18:45', 0, NULL, 0, NULL, 1),
(23864, 18348, '2', 'osmania university', '', '', '2010', 56.00, '', 1, '2024-04-05 09:36:46', 0, NULL, 0, NULL, 1),
(23865, 18337, '2', 'Chitradurga ', '', '', '2021', 75.00, '', 1, '2024-04-05 09:42:31', 0, NULL, 0, NULL, 1),
(23866, 18346, '3', 'Thiru seven hills polytechnic college ', '', 'Diploma in mechanical ', '2024', 55.00, '', 1, '2024-04-05 10:18:52', 0, NULL, 0, NULL, 1),
(23867, 18350, '3', 'Madras University ', '', 'Bsw', '2021', 76.00, '', 1, '2024-04-05 10:28:20', 0, NULL, 0, NULL, 1),
(23868, 18349, '3', 'university of madras', '', 'bsc', '2020', 77.00, '', 1, '2024-04-05 10:31:51', 0, NULL, 0, NULL, 1),
(23869, 18349, '1', 'university of madras', '', '', '2015', 77.00, '', 1, '2024-04-05 10:34:15', 1, '2024-04-05 10:35:44', 0, NULL, 1),
(23870, 18349, '2', 'university of madras', '', '', '2017', 76.00, '', 1, '2024-04-05 10:36:08', 0, NULL, 0, NULL, 1),
(23871, 18355, '4', 'unversty of madras', '', '', '2022', 85.00, '', 1, '2024-04-05 12:37:10', 0, NULL, 0, NULL, 1),
(23872, 18353, '3', 'Loyola college', '', 'B.A French literature ', '2023', 75.00, '', 1, '2024-04-05 12:40:04', 0, NULL, 0, NULL, 1),
(23873, 18354, '3', 'Thiruvalluvar University ', '', 'BA - English', '2019', 80.00, '', 1, '2024-04-05 12:48:22', 0, NULL, 0, NULL, 1),
(23874, 18356, '4', 'Barkatullah University ', '', 'MBA', '2020', 60.00, '', 1, '2024-04-05 01:31:12', 0, NULL, 0, NULL, 1),
(23875, 18358, '3', 'Sri Muthukumaran Arts and science college(Madras University)', '', 'B.com', '2022', 80.20, '', 1, '2024-04-06 04:37:30', 0, NULL, 0, NULL, 1),
(23876, 18360, '3', 'Madras University ', '', 'B.A.Economics', '2024', 70.00, '', 1, '2024-04-06 05:02:20', 0, NULL, 0, NULL, 1),
(23877, 18359, '3', 'Bharathiyar university', '', 'Bcom CA', '2019', 70.00, '', 1, '2024-04-06 05:03:04', 0, NULL, 0, NULL, 1),
(23878, 18361, '3', 'Periyar University ', '', 'Mathematics ', '2019', 67.80, '', 1, '2024-04-06 05:30:20', 0, NULL, 0, NULL, 1),
(23879, 18363, '3', 'Madras University ', '', 'B a English literature ', '2023', 64.00, '', 1, '2024-04-06 05:43:26', 0, NULL, 0, NULL, 1),
(23880, 18362, '4', 'Mother\'s Theresa women\'s University in Kodaikanal ', '', 'M.sc maths ', '2023', 80.00, '', 1, '2024-04-06 05:43:42', 0, NULL, 0, NULL, 1),
(23881, 18364, '1', 'Sslc', '', '', '2019', 70.00, '', 1, '2024-04-06 05:55:20', 0, NULL, 0, NULL, 1),
(23882, 18364, '3', 'School of secondary education ', '', '', '2019', 70.00, '', 1, '2024-04-06 05:56:15', 0, NULL, 0, NULL, 1),
(23883, 18366, '3', 'Madras university ', '', 'BA.ECONOMICS', '2023', 60.00, '', 1, '2024-04-06 06:18:12', 0, NULL, 0, NULL, 1),
(23884, 18365, '3', 'Madras University ', '', 'BA . economics', '2023', 70.00, '', 1, '2024-04-06 06:22:23', 0, NULL, 0, NULL, 1),
(23885, 18367, '3', 'Bangalore University', '', 'B. Com graduate', '2023', 60.00, '', 1, '2024-04-06 06:41:01', 0, NULL, 0, NULL, 1),
(23886, 18368, '3', 'madras university', '', 'bsc maths', '2019', 63.00, '', 1, '2024-04-06 08:07:23', 0, NULL, 0, NULL, 1),
(23887, 18369, '3', 'Madras University ', '', 'B.com ', '2020', 65.00, '', 1, '2024-04-06 09:11:09', 0, NULL, 0, NULL, 1),
(23888, 18370, '3', 'Anna University ', '', 'Bachelor\'s of Engineering ', '2020', 63.00, '', 1, '2024-04-06 09:22:11', 0, NULL, 0, NULL, 1),
(23889, 18372, '3', 'Madras University ', '', 'BBA ', '2019', 68.00, '', 1, '2024-04-06 09:25:59', 0, NULL, 0, NULL, 1),
(23890, 18373, '1', 'RV College of Engineering ', '', '', '2023', 66.00, '', 1, '2024-04-06 09:45:26', 0, NULL, 0, NULL, 1),
(23891, 18371, '3', 'anna university', '', 'b e', '2022', 78.00, '', 1, '2024-04-06 09:57:26', 0, NULL, 0, NULL, 1),
(23892, 18260, '4', 'manipal university', '', 'mba', '2014', 58.00, '', 1, '2024-04-06 01:11:43', 0, NULL, 0, NULL, 1),
(23893, 18376, '3', 'University of madras ', '', 'BBA', '2022', 89.00, '', 1, '2024-04-08 02:04:21', 0, NULL, 0, NULL, 1),
(23894, 18377, '5', 'Dote', '', 'Deee', '2020', 73.00, '', 1, '2024-04-08 04:51:26', 0, NULL, 0, NULL, 1),
(23895, 18378, '2', 'state board', '', '', '2017', 55.00, '', 1, '2024-04-08 05:38:20', 0, NULL, 0, NULL, 1),
(23896, 18379, '4', 'Anna university ', '', 'MCA', '2023', 75.00, '', 1, '2024-04-08 05:40:07', 0, NULL, 0, NULL, 1),
(23897, 18379, '3', 'Thiruvallur University ', '', 'B.Sc Computer science', '2021', 72.00, '', 1, '2024-04-08 05:40:55', 0, NULL, 0, NULL, 1),
(23898, 18379, '2', 'Ramakrishna Higher secondary school ', '', '', '2018', 68.00, '', 1, '2024-04-08 05:41:18', 0, NULL, 0, NULL, 1),
(23899, 18379, '1', 'Government High school Ashok nagar ', '', '', '2016', 74.00, '', 1, '2024-04-08 05:41:57', 0, NULL, 0, NULL, 1),
(23900, 18380, '3', 'KSEEB', '', 'Swamy Vivekananda college ', '2017', 69.00, '', 1, '2024-04-08 06:09:32', 0, NULL, 0, NULL, 1),
(23901, 18375, '3', 'Madras University ', '', 'Bcom ISM', '2023', 72.37, '', 1, '2024-04-08 06:21:26', 0, NULL, 0, NULL, 1),
(23902, 18381, '3', 'Madras University ', '', 'BSC visual communication ', '2019', 65.00, '', 1, '2024-04-08 06:23:50', 0, NULL, 0, NULL, 1),
(23903, 18381, '2', 'Private ', '', '', '2014', 56.00, '', 1, '2024-04-08 06:24:09', 0, NULL, 0, NULL, 1),
(23904, 18381, '1', 'Angel Baby land Matriculation Higher secondary school ', '', '', '2011', 59.00, '', 1, '2024-04-08 06:24:42', 0, NULL, 0, NULL, 1),
(23905, 18384, '3', 'Gss jain college ', '', 'Bcom', '2019', 70.00, '', 1, '2024-04-08 06:31:49', 0, NULL, 0, NULL, 1),
(23906, 18382, '3', 'Thiruvalluvar', '', 'B.com', '2020', 70.00, '', 1, '2024-04-08 06:35:05', 0, NULL, 0, NULL, 1),
(23907, 18383, '5', 'Government polytechnic College ', '', '', '2018', 68.00, '', 1, '2024-04-08 06:40:20', 0, NULL, 0, NULL, 1),
(23908, 18344, '3', 'bangalore university', '', 'bcom', '2015', 60.00, '', 1, '2024-04-08 06:40:37', 0, NULL, 0, NULL, 1),
(23909, 18383, '1', 'Government polytechnic College ', '', 'Diploma ', '2018', 68.00, '', 1, '2024-04-08 06:40:52', 0, NULL, 0, NULL, 1),
(23910, 18385, '5', 'Panimalar polytechnic college ', '', 'Diploma in mechanical engineering ', '2019', 86.00, '', 1, '2024-04-08 06:52:59', 0, NULL, 0, NULL, 1),
(23911, 18386, '3', 'Thiruvaluvar university ', '', 'B. A history ', '2023', 69.00, '', 1, '2024-04-08 06:54:54', 0, NULL, 0, NULL, 1),
(23912, 18388, '3', 'Bangalore ', '', '', '2012', 79.00, '', 1, '2024-04-08 08:18:20', 0, NULL, 0, NULL, 1),
(23913, 18389, '3', 'Banglore University ', '', 'B.com', '2021', 78.00, '', 1, '2024-04-08 09:11:44', 0, NULL, 0, NULL, 1),
(23914, 18390, '3', 'University of Madras', '', 'BBA', '2023', 75.00, '', 1, '2024-04-08 09:38:11', 0, NULL, 0, NULL, 1),
(23915, 18392, '3', 'Anna University ', '', 'B.E/CSE ', '2023', 80.00, '', 1, '2024-04-08 09:44:37', 1, '2024-04-08 09:46:42', 0, NULL, 1),
(23916, 18392, '1', 'State board of secondary education ', '', '', '2017', 72.00, '', 1, '2024-04-08 09:45:37', 0, NULL, 0, NULL, 1),
(23917, 18392, '2', 'State board of secondary education ', '', '', '2019', 55.00, '', 1, '2024-04-08 09:46:08', 0, NULL, 0, NULL, 1),
(23918, 18391, '3', 'Thiruvalluvar University ', '', 'Bsc Physics ', '2020', 78.00, '', 1, '2024-04-08 09:50:39', 0, NULL, 0, NULL, 1),
(23919, 18394, '2', 'State board', '', '', '2019', 74.00, '', 1, '2024-04-08 10:14:03', 0, NULL, 0, NULL, 1),
(23920, 18394, '3', 'Thiruvalluvar university', '', 'B. Sc computer science', '2022', 84.00, '', 1, '2024-04-08 10:14:49', 0, NULL, 0, NULL, 1),
(23921, 18395, '4', 'Dr.m.g.r University art and science educational resources institute ', '', 'MBA logistics and supply chain management ', '2023', 80.00, '', 1, '2024-04-08 10:15:24', 0, NULL, 0, NULL, 1),
(23922, 18394, '4', 'Madras university', '', 'M. Sc computer science', '2024', 82.11, '', 1, '2024-04-08 10:15:35', 0, NULL, 0, NULL, 1),
(23923, 18393, '3', 'MSU', '', 'B.com', '2022', 70.00, '', 1, '2024-04-08 10:33:59', 0, NULL, 0, NULL, 1),
(23924, 18397, '3', 'bharath univerrsity', '', 'b tech', '2013', 60.00, '', 1, '2024-04-08 11:16:13', 0, NULL, 0, NULL, 1),
(23925, 18399, '3', 'Madras University', '', 'B.com (accounting and finance)', '2022', 73.00, '', 1, '2024-04-08 04:47:46', 0, NULL, 0, NULL, 1),
(23926, 18401, '3', 'Madras University ', '', 'B.com(computer application)', '2021', 71.00, '', 1, '2024-04-08 05:25:23', 0, NULL, 0, NULL, 1),
(23927, 18403, '5', 'Government Of Tamilnadu ', '', 'Diploma mechanical Engineering ', '2019', 66.00, '', 1, '2024-04-09 04:44:52', 0, NULL, 0, NULL, 1),
(23928, 18405, '3', 'SRM INSTITUTE oF SCIENCE AND TECHNOLOGY', '', 'B.BA', '2021', 6.04, '', 1, '2024-04-09 05:11:04', 0, NULL, 0, NULL, 1),
(23929, 18404, '4', 'bharathidasan university', '', 'mcom', '2020', 69.00, '', 1, '2024-04-09 05:21:59', 0, NULL, 0, NULL, 1),
(23930, 18404, '3', 'bharathidasan university', '', 'bcom', '2018', 66.00, '', 1, '2024-04-09 05:22:39', 0, NULL, 0, NULL, 1),
(23931, 18404, '2', 'state board', '', '', '2013', 58.00, '', 1, '2024-04-09 05:23:28', 0, NULL, 0, NULL, 1),
(23932, 18400, '3', 'AMET UNIVERSITY ', '', 'B.e marine engineering ', '2022', 75.00, '', 1, '2024-04-09 05:23:46', 0, NULL, 0, NULL, 1),
(23933, 18407, '3', 'Madurai kamaraj university ', '', 'B.sc chemistry ', '2022', 75.00, '', 1, '2024-04-09 05:59:49', 0, NULL, 0, NULL, 1),
(23934, 18408, '3', 'bharathidasan University ', '', 'BCA', '2022', 78.50, '', 1, '2024-04-09 06:07:43', 0, NULL, 0, NULL, 1),
(23935, 18410, '3', 'Guru Nanak college (autonomous)', '', 'B.com(mm)', '2022', 70.00, '', 1, '2024-04-09 06:14:32', 0, NULL, 0, NULL, 1),
(23936, 18411, '4', 'Madras University ', '', 'M.com', '2024', 77.00, '', 1, '2024-04-09 06:32:22', 0, NULL, 0, NULL, 1),
(23937, 18411, '3', 'Madras University ', '', 'B.Com ', '2022', 71.00, '', 1, '2024-04-09 06:32:48', 0, NULL, 0, NULL, 1),
(23938, 18409, '4', 'MSU UNIVERSITY', '', 'MA', '2023', 6.93, '', 1, '2024-04-09 06:37:33', 0, NULL, 0, NULL, 1),
(23939, 18413, '3', 'University ', '', 'B.sc Computer Science ', '2023', 83.00, '', 1, '2024-04-09 06:52:14', 0, NULL, 0, NULL, 1),
(23940, 18414, '2', 'university', '', '', '2022', 65.00, '', 1, '2024-04-09 06:58:37', 0, NULL, 0, NULL, 1),
(23941, 18415, '3', 'tamil nadu open university', '', 'bba -ca ', '2013', 60.00, '', 1, '2024-04-09 07:12:32', 0, NULL, 0, NULL, 1),
(23942, 18416, '3', 'Tamil Nadu Dr ambedkar law University ', '', 'BCA LLB ', '2023', 67.00, '', 1, '2024-04-09 08:26:22', 0, NULL, 0, NULL, 1),
(23943, 18417, '4', 'university', '', 'master of business administration', '2024', 9.00, '', 1, '2024-04-09 08:50:22', 0, NULL, 0, NULL, 1),
(23944, 18419, '3', 'Dr mgr University ', '', 'Bca', '2020', 69.00, '', 1, '2024-04-09 09:14:39', 0, NULL, 0, NULL, 1),
(23945, 18421, '3', 'Anna University ', '', 'Bachelor of architecture ', '2021', 68.00, '', 1, '2024-04-09 09:21:48', 0, NULL, 0, NULL, 1),
(23946, 18420, '3', 'Periyar University ', '', 'Bsc biotechnology ', '2023', 74.00, '', 1, '2024-04-09 09:27:48', 0, NULL, 0, NULL, 1),
(23947, 18424, '4', 'JNTU ', '', 'Sk University ', '2020', 65.00, '', 1, '2024-04-09 10:14:47', 0, NULL, 0, NULL, 1),
(23948, 18427, '4', 'University of Madras University ', '', 'B.com ', '2020', 75.00, '', 1, '2024-04-09 10:34:55', 0, NULL, 0, NULL, 1),
(23949, 18428, '3', 'Madras University', '', 'B,com', '2023', 7.70, '', 1, '2024-04-09 11:01:38', 0, NULL, 0, NULL, 1),
(23950, 18423, '3', 'Periyar University ', '', '', '2023', 74.00, '', 1, '2024-04-09 12:11:08', 0, NULL, 0, NULL, 1),
(23951, 18431, '3', 'Thiruvallur university ', '', 'Bsc, chemistry', '2016', 67.00, '', 1, '2024-04-09 12:53:13', 0, NULL, 0, NULL, 1),
(23952, 18422, '3', 'University ', '', 'Bsc', '2019', 60.00, '', 1, '2024-04-09 01:25:28', 0, NULL, 0, NULL, 1),
(23953, 10115, '3', 'bharathidasan university', '', 'BCA', '2019', 78.00, '', 1, '2024-04-09 02:33:53', 0, NULL, 0, NULL, 1),
(23954, 18433, '3', 'Loyola Institute of Technology ', '', 'B.tech', '2022', 78.00, '', 1, '2024-04-09 02:55:03', 0, NULL, 0, NULL, 1),
(23955, 18433, '2', 'Kalaimagal Matric Higher secondary school ', '', '', '2018', 78.40, '', 1, '2024-04-09 02:55:21', 0, NULL, 0, NULL, 1),
(23956, 18433, '1', 'Kalaimagal Matric Higher secondary school ', '', '', '2016', 95.40, '', 1, '2024-04-09 02:55:37', 0, NULL, 0, NULL, 1),
(23957, 18435, '4', 'Pondicherry University ', '', 'MBA ', '2021', 74.00, '', 1, '2024-04-09 03:25:55', 0, NULL, 0, NULL, 1),
(23958, 18435, '3', 'Madras University ', '', 'Bcom', '2018', 74.00, '', 1, '2024-04-09 03:26:18', 0, NULL, 0, NULL, 1),
(23959, 18435, '2', 'State board ', '', '', '2015', 89.00, '', 1, '2024-04-09 03:26:40', 0, NULL, 0, NULL, 1),
(23960, 18435, '1', 'State board ', '', '', '2013', 88.00, '', 1, '2024-04-09 03:26:53', 0, NULL, 0, NULL, 1),
(23961, 18436, '1', 'State board ', '', '', '2017', 89.80, '', 1, '2024-04-09 05:28:42', 0, NULL, 0, NULL, 1),
(23962, 18436, '2', 'State board ', '', '', '2019', 60.33, '', 1, '2024-04-09 05:29:00', 0, NULL, 0, NULL, 1),
(23963, 18432, '3', 'Patrician college of arts and science', '', 'B.COM GENERAL', '2022', 90.00, '', 1, '2024-04-10 02:43:58', 1, '2024-04-10 02:44:15', 0, NULL, 0),
(23964, 18439, '5', 'Nana University ', '', '', '2018', 71.00, '', 1, '2024-04-10 04:49:52', 0, NULL, 0, NULL, 1),
(23965, 18443, '3', 'Madras University ', '', 'BSc plan biology ', '2020', 70.00, '', 1, '2024-04-10 05:17:46', 1, '2024-04-10 05:18:45', 0, NULL, 1),
(23966, 18442, '3', 'dg vaishnav college', '', 'b.com general', '2022', 74.91, '', 1, '2024-04-10 05:18:42', 0, NULL, 0, NULL, 1),
(23967, 18444, '3', 'University of madras', '', 'BCA', '2022', 80.00, '', 1, '2024-04-10 05:23:33', 0, NULL, 0, NULL, 1),
(23968, 18444, '2', 'State board', '', '', '2019', 57.00, '', 1, '2024-04-10 05:23:56', 0, NULL, 0, NULL, 1),
(23969, 18444, '1', 'CBSE', '', '', '2017', 8.60, '', 1, '2024-04-10 05:24:15', 0, NULL, 0, NULL, 1),
(23970, 18441, '4', 'bharath institute of higher education and research', '', 'master of business administration', '2024', 9.00, '', 1, '2024-04-10 05:44:20', 0, NULL, 0, NULL, 1),
(23971, 18418, '4', 'bharath University ', '', 'mba', '2024', 8.00, '', 1, '2024-04-10 05:45:34', 0, NULL, 0, NULL, 1),
(23972, 18447, '2', 'sbioa model matric Higher Secondary School ', '', '', '2017', 87.00, '', 1, '2024-04-10 05:46:03', 0, NULL, 0, NULL, 1),
(23973, 18448, '1', 'Baby High school ', '', '', '2017', 84.00, '', 1, '2024-04-10 05:46:29', 0, NULL, 0, NULL, 1),
(23974, 18448, '2', 'National school ', '', '', '2019', 65.00, '', 1, '2024-04-10 05:47:08', 0, NULL, 0, NULL, 1),
(23975, 18447, '3', 'dg vaishnav college ', '', 'bba', '2020', 75.00, '', 1, '2024-04-10 05:47:21', 0, NULL, 0, NULL, 1),
(23976, 18448, '3', 'Sivet college ', '', 'Bsc.viscom', '2022', 60.00, '', 1, '2024-04-10 05:47:37', 0, NULL, 0, NULL, 1),
(23977, 18449, '4', 'University ', '', 'MBA', '2021', 83.00, '', 1, '2024-04-10 05:49:06', 0, NULL, 0, NULL, 1),
(23978, 18450, '3', 'SVCET', '', 'B.tech', '2015', 61.50, '', 1, '2024-04-10 05:49:10', 0, NULL, 0, NULL, 1),
(23979, 18450, '2', 'Velammal Matriculation Higher secondary school ', '', '', '2011', 76.40, '', 1, '2024-04-10 05:49:41', 0, NULL, 0, NULL, 1),
(23980, 18449, '3', 'University ', '', 'MBA', '2021', 65.00, '', 1, '2024-04-10 05:49:48', 0, NULL, 0, NULL, 1),
(23981, 18432, '3', 'Patrician college of arts and science', '', 'B.com', '2022', 90.00, '', 1, '2024-04-10 05:51:02', 0, NULL, 0, NULL, 1),
(23982, 18253, '2', 'State Board', '', '', '2019', 80.50, '', 1, '2024-04-10 05:53:01', 0, NULL, 0, NULL, 1),
(23983, 18253, '1', 'State Board ', '', '', '2017', 96.40, '', 1, '2024-04-10 05:53:19', 0, NULL, 0, NULL, 1),
(23984, 18253, '3', 'Anna University ', '', 'Computer Science and Engineering ', '2023', 87.40, '', 1, '2024-04-10 05:54:15', 0, NULL, 0, NULL, 1),
(23985, 18445, '3', 'bharathidasan university', '', 'b.com', '2016', 70.00, '', 1, '2024-04-10 06:03:20', 0, NULL, 0, NULL, 1),
(23986, 18452, '3', 'Madras University ', '', 'B.com (genral)', '2022', 76.00, '', 1, '2024-04-10 06:03:44', 0, NULL, 0, NULL, 1),
(23987, 18445, '2', 'state board', '', '', '2013', 61.00, '', 1, '2024-04-10 06:03:51', 0, NULL, 0, NULL, 1),
(23988, 18453, '3', 'Thiruvalluvar ', '', 'B.com ( CA)', '2023', 61.00, '', 1, '2024-04-10 06:04:18', 0, NULL, 0, NULL, 1),
(23989, 18445, '1', 'state board', '', '', '2011', 61.00, '', 1, '2024-04-10 06:04:25', 0, NULL, 0, NULL, 1),
(23990, 18451, '5', 'Dote', '', 'Mechanical engineering', '2023', 78.00, '', 1, '2024-04-10 06:05:41', 0, NULL, 0, NULL, 1),
(23991, 18437, '1', 'matriculation', '', '', '2015', 75.00, '', 1, '2024-04-10 06:07:32', 1, '2024-04-10 06:08:19', 0, NULL, 0),
(23992, 18437, '3', 'mgr university', '', 'bcom', '2018', 75.00, '', 1, '2024-04-10 06:08:48', 0, NULL, 0, NULL, 1),
(23993, 18437, '4', 'mgr university', '', 'mcom', '2020', 72.00, '', 1, '2024-04-10 06:10:20', 0, NULL, 0, NULL, 1),
(23994, 18438, '3', 'Periyar university ', '', 'BA english ', '2016', 52.00, '', 1, '2024-04-10 06:15:09', 0, NULL, 0, NULL, 1),
(23995, 18455, '3', 'Anna university', '', 'Computer science', '2020', 71.00, '', 1, '2024-04-10 06:21:49', 0, NULL, 0, NULL, 1),
(23996, 18446, '3', 'Loyola Institute Of Technology ', '', 'BE(CSE)', '2023', 79.00, '', 1, '2024-04-10 06:23:52', 0, NULL, 0, NULL, 1),
(23997, 18456, '5', 'Bharath University College ', '', 'DCE', '2016', 65.00, '', 1, '2024-04-10 06:37:21', 0, NULL, 0, NULL, 1),
(23998, 18458, '3', 'Madras University ', '', 'Bsc', '2021', 67.00, '', 1, '2024-04-10 06:37:50', 0, NULL, 0, NULL, 1),
(23999, 18458, '1', 'State board ', '', '', '2015', 74.00, '', 1, '2024-04-10 06:39:22', 0, NULL, 0, NULL, 1),
(24000, 18457, '1', 'State board ', '', 'B.com (cs)', '2015', 79.00, '', 1, '2024-04-10 06:39:36', 1, '2024-04-10 06:41:07', 0, NULL, 0),
(24001, 18458, '2', 'State board ', '', '', '2017', 70.00, '', 1, '2024-04-10 06:40:27', 0, NULL, 0, NULL, 1),
(24002, 18457, '1', 'State board ', '', '', '2015', 79.00, '', 1, '2024-04-10 06:42:40', 0, NULL, 0, NULL, 1),
(24003, 18457, '2', 'State board ', '', '', '2017', 64.00, '', 1, '2024-04-10 06:43:05', 0, NULL, 0, NULL, 1),
(24004, 18457, '3', 'Loyola college ', '', 'B.com(cS)', '2020', 72.00, '', 1, '2024-04-10 06:44:06', 0, NULL, 0, NULL, 1),
(24005, 18459, '3', 'Thiruvalluvar University ', '', 'Bsc computer science ', '2020', 75.00, '', 1, '2024-04-10 06:48:20', 0, NULL, 0, NULL, 1),
(24006, 18454, '3', 'madras university', '', 'bcom', '2022', 75.00, '', 1, '2024-04-10 06:49:01', 0, NULL, 0, NULL, 1),
(24007, 18463, '1', 'Anna university', '', '', '2021', 67.00, '', 1, '2024-04-10 07:19:25', 0, NULL, 0, NULL, 1),
(24008, 18465, '3', 'University ', '', 'B.COM ACCOUNTING AND FINANCE ', '2025', 70.00, '', 1, '2024-04-10 07:47:04', 0, NULL, 0, NULL, 1),
(24009, 18462, '3', 'Vijayanagara university ', '', 'B. Com', '2022', 78.00, '', 1, '2024-04-10 07:57:10', 0, NULL, 0, NULL, 1),
(24010, 18467, '3', 'Anna University ', '', 'B.E', '2022', 72.00, '', 1, '2024-04-10 09:16:36', 0, NULL, 0, NULL, 1),
(24011, 18467, '4', 'Anna University ', '', 'MBA', '2024', 62.00, '', 1, '2024-04-10 09:17:06', 0, NULL, 0, NULL, 1),
(24012, 18468, '3', 'Bharatiyar University ', '', 'B.Com CA', '2022', 81.00, '', 1, '2024-04-10 09:20:48', 0, NULL, 0, NULL, 1),
(24013, 18468, '4', 'Anna University ', '', 'MBA', '2024', 6.80, '', 1, '2024-04-10 09:21:39', 0, NULL, 0, NULL, 1),
(24014, 18466, '3', 'Board ', '', 'B.Sc.,', '2022', 78.00, '', 1, '2024-04-10 09:28:47', 0, NULL, 0, NULL, 1),
(24015, 18469, '4', 'University', '', 'B. Com', '2023', 80.00, '', 1, '2024-04-10 09:33:01', 0, NULL, 0, NULL, 1),
(24016, 18471, '4', 'Madras University ', '', 'MCA', '2022', 80.00, '', 1, '2024-04-10 10:37:23', 0, NULL, 0, NULL, 1),
(24017, 18472, '3', 'Manonmaniam Sundaranar University ', '', 'B.com', '2021', 87.00, '', 1, '2024-04-10 10:39:21', 0, NULL, 0, NULL, 1),
(24018, 18473, '3', 'Madras University ', '', 'B.com CA', '2024', 75.00, '', 1, '2024-04-10 11:48:50', 0, NULL, 0, NULL, 1),
(24019, 18461, '3', 'new prince', '', 'be electronics', '2020', 64.00, '', 112, '2024-04-10 05:35:24', 0, NULL, 0, NULL, 1),
(24020, 18475, '3', 'Acharya N.G.Ranga Agricultural University ', '', 'BSc.(Hons) Agriculture ', '2021', 80.50, '', 1, '2024-04-10 12:56:59', 0, NULL, 0, NULL, 1),
(24021, 18477, '3', 'Dr mgr University ', '', 'B.tech', '2021', 6.20, '', 1, '2024-04-11 03:22:44', 0, NULL, 0, NULL, 1),
(24022, 18478, '3', 'Bishop\'s Heber college', '', 'B.com', '2023', 72.50, '', 1, '2024-04-11 04:24:45', 0, NULL, 0, NULL, 1),
(24023, 18479, '3', 'university', '', 'b.com general', '2021', 85.00, '', 1, '2024-04-11 04:35:22', 0, NULL, 0, NULL, 1),
(24024, 18480, '3', 'Madras university ', '', 'B.com ISM', '2023', 80.00, '', 1, '2024-04-11 05:06:14', 0, NULL, 0, NULL, 1),
(24025, 18481, '3', 'St\'peters University of art and science ', '', 'B.com general ', '2023', 90.00, '', 1, '2024-04-11 05:08:33', 0, NULL, 0, NULL, 1),
(24026, 18482, '3', 'Bharathidasan university', '', 'Bsc. Computer sciences ', '2023', 90.00, '', 1, '2024-04-11 06:31:00', 0, NULL, 0, NULL, 1),
(24027, 18474, '4', 'Ethiraj college for women ', '', 'M.com general ', '2023', 75.00, '', 1, '2024-04-11 06:40:47', 0, NULL, 0, NULL, 1),
(24028, 18474, '3', 'St . Anne\'s art and science college ', '', 'B.com accounting and finance ', '2021', 87.90, '', 1, '2024-04-11 06:43:33', 0, NULL, 0, NULL, 1),
(24029, 18474, '1', 'Doveton matriculation higher secondary school ', '', '', '2018', 74.60, '', 1, '2024-04-11 06:44:37', 0, NULL, 0, NULL, 1),
(24030, 18474, '2', 'Doveton matriculation higher secondary school ', '', '', '2016', 65.25, '', 1, '2024-04-11 06:45:24', 0, NULL, 0, NULL, 1),
(24031, 18483, '3', 'Periyar University ', '', 'Bsc chemistry ', '2020', 78.00, '', 1, '2024-04-11 07:43:35', 0, NULL, 0, NULL, 1),
(24032, 18486, '3', 'Akkamahadevi University Bijapur ', '', 'Bcom', '2021', 86.00, '', 1, '2024-04-11 07:51:50', 0, NULL, 0, NULL, 1),
(24033, 18485, '3', 'Bangalore University ', '', 'Bcom ', '2019', 48.00, '', 1, '2024-04-11 07:52:55', 0, NULL, 0, NULL, 1),
(24034, 18487, '3', 'Sri chaitanya ', '', '3rd year ', '2024', 43.00, '', 1, '2024-04-11 09:50:23', 0, NULL, 0, NULL, 1),
(24035, 18489, '4', 'anna university', '', 'master of computer application', '2023', 78.00, '', 1, '2024-04-11 11:07:54', 0, NULL, 0, NULL, 1),
(24036, 18489, '3', 'anna university', '', 'electronics and communication engineering', '2021', 75.00, '', 1, '2024-04-11 11:09:43', 0, NULL, 0, NULL, 1),
(24037, 18489, '2', 'state board', '', '', '2017', 64.00, '', 1, '2024-04-11 11:10:17', 0, NULL, 0, NULL, 1),
(24038, 18489, '1', 'tamil nadu state board', '', '', '2015', 75.00, '', 1, '2024-04-11 11:10:50', 0, NULL, 0, NULL, 1),
(24039, 18491, '3', 'University ', '', 'B.com general ', '2024', 85.00, '', 1, '2024-04-11 11:13:54', 0, NULL, 0, NULL, 1),
(24040, 18488, '4', 'annamalai university', '', 'Msc Ocean Science', '2018', 59.00, '', 1, '2024-04-11 11:44:47', 0, NULL, 0, NULL, 1),
(24041, 18493, '3', 'Madras University ', '', 'B.com', '2023', 82.00, '', 1, '2024-04-11 01:21:45', 0, NULL, 0, NULL, 1),
(24042, 18495, '3', 'gojan school of business and technology', '', 'b.e', '2022', 75.00, '', 1, '2024-04-11 08:59:32', 0, NULL, 0, NULL, 1),
(24043, 18494, '3', 'Guru nanak college ', '', 'BCA', '2023', 73.00, '', 1, '2024-04-12 04:39:13', 0, NULL, 0, NULL, 1),
(24044, 18497, '3', 'Bharathidasan university', '', 'B. Com', '2023', 61.00, '', 1, '2024-04-12 04:58:20', 0, NULL, 0, NULL, 1),
(24045, 18498, '3', 'Anjalai ammal mahalingam engineering college ', '', 'B. E', '2019', 66.00, '', 1, '2024-04-12 05:24:36', 0, NULL, 0, NULL, 1),
(24046, 18499, '4', 'Anna University ', '', 'Mba', '2019', 66.00, '', 1, '2024-04-12 05:35:26', 0, NULL, 0, NULL, 1),
(24047, 18500, '4', 'Dr.mgr university ', '', 'Mba', '2024', 85.00, '', 1, '2024-04-12 05:41:13', 0, NULL, 0, NULL, 1),
(24048, 18501, '5', 'Dote', '', 'Yes', '2013', 67.00, '', 1, '2024-04-12 05:54:06', 1, '2024-04-12 05:56:00', 0, NULL, 1),
(24049, 18503, '3', 'Anna University ', '', 'BE ECE ', '2023', 7.85, '', 1, '2024-04-12 06:42:05', 0, NULL, 0, NULL, 1),
(24050, 18503, '2', 'State Board ', '', '', '2019', 71.50, '', 1, '2024-04-12 06:47:13', 0, NULL, 0, NULL, 1),
(24051, 18503, '1', 'State board ', '', '', '2017', 89.00, '', 1, '2024-04-12 06:47:49', 0, NULL, 0, NULL, 1),
(24052, 18502, '4', 'Anna University ', '', 'MBA ', '2023', 70.00, '', 1, '2024-04-12 06:47:53', 0, NULL, 0, NULL, 1),
(24053, 18502, '3', 'Bharathiyar University ', '', 'B.com PROFESSIONAL ACCOUNTING', '2019', 70.00, '', 1, '2024-04-12 06:48:35', 0, NULL, 0, NULL, 1),
(24054, 18502, '1', 'State board ', '', '', '2013', 69.00, '', 1, '2024-04-12 06:49:36', 0, NULL, 0, NULL, 1),
(24055, 18502, '2', 'State board ', '', '', '2016', 54.00, '', 1, '2024-04-12 06:50:16', 0, NULL, 0, NULL, 1),
(24056, 18505, '3', 'Bharathidasan University ', '', 'BBA', '2023', 7.28, '', 1, '2024-04-12 07:27:49', 0, NULL, 0, NULL, 1),
(24057, 18506, '4', 'Pondicherry University ', '', 'MBA ', '2021', 74.00, '', 1, '2024-04-12 08:32:03', 0, NULL, 0, NULL, 1),
(24058, 18506, '3', 'Madras University ', '', 'Bcom', '2018', 74.00, '', 1, '2024-04-12 08:32:20', 0, NULL, 0, NULL, 1),
(24059, 18506, '2', 'State board ', '', '', '2015', 88.00, '', 1, '2024-04-12 08:32:41', 0, NULL, 0, NULL, 1),
(24060, 18506, '1', 'State board ', '', '', '2013', 89.00, '', 1, '2024-04-12 08:32:55', 0, NULL, 0, NULL, 1),
(24061, 18507, '3', 'University of Madras ', '', 'B.Sc computer science ', '2024', 89.00, '', 1, '2024-04-12 10:43:42', 0, NULL, 0, NULL, 1),
(24062, 18509, '3', 'CMS College of Science and Commerce ', '', 'BBA ', '2023', 74.00, '', 1, '2024-04-12 02:08:13', 0, NULL, 0, NULL, 1),
(24063, 18511, '4', 'Ms University ', '', 'MBA HR and Operation ', '2016', 62.00, '', 1, '2024-04-13 04:21:22', 0, NULL, 0, NULL, 1),
(24064, 18511, '3', 'Ms University ', '', 'Bcom computer application ', '2012', 55.00, '', 1, '2024-04-13 04:21:48', 0, NULL, 0, NULL, 1),
(24065, 18512, '3', 'Bharathidasan University ', '', 'Bsc-computer Science ', '2023', 75.50, '', 1, '2024-04-13 04:37:24', 0, NULL, 0, NULL, 1),
(24066, 18514, '3', 'Bharathidasan University', '', 'BSC COMPUTER SCIENCE', '2023', 76.00, '', 1, '2024-04-13 04:40:54', 0, NULL, 0, NULL, 1),
(24067, 18515, '3', 'bharth university', '', 'btech', '2022', 77.00, '', 1, '2024-04-13 04:49:28', 0, NULL, 0, NULL, 1),
(24068, 18517, '3', 'Bharathiyar University ', '', 'Bsc information technology ', '2018', 70.00, '', 1, '2024-04-13 04:50:21', 0, NULL, 0, NULL, 1),
(24069, 18516, '3', 'Anna University ', '', 'BE', '2015', 65.00, '', 1, '2024-04-13 04:52:13', 0, NULL, 0, NULL, 1),
(24070, 18520, '3', 'Prist University ', '', 'B.com( corporate secretaryship )', '2024', 81.00, '', 1, '2024-04-13 04:52:24', 0, NULL, 0, NULL, 1),
(24071, 18518, '3', 'Thiruvalluvar ', '', 'Bsc computer science ', '2020', 70.00, '', 1, '2024-04-13 04:52:52', 0, NULL, 0, NULL, 1),
(24072, 18519, '3', 'Thiruvalluvar', '', 'Bca', '2022', 85.00, '', 1, '2024-04-13 04:53:12', 0, NULL, 0, NULL, 1),
(24073, 18513, '3', 'Bharathidasan University ', '', 'Bsc-computer science ', '2023', 70.00, '', 1, '2024-04-13 04:53:37', 0, NULL, 0, NULL, 1),
(24074, 18521, '3', 'Saveetha engineering college ', '', 'B.E', '2023', 77.00, '', 1, '2024-04-13 05:04:18', 0, NULL, 0, NULL, 1),
(24075, 18522, '2', 'Periyasaami government hr sec school', '', '', '2020', 50.00, '', 1, '2024-04-13 05:05:53', 0, NULL, 0, NULL, 1),
(24076, 18524, '3', 'Alagappa University - karaikudi ', '', 'BBA', '2023', 78.00, '', 1, '2024-04-13 05:22:08', 0, NULL, 0, NULL, 1),
(24077, 18523, '3', 'University of madras ', '', 'BCA', '2023', 69.00, '', 1, '2024-04-13 05:30:26', 0, NULL, 0, NULL, 1),
(24078, 18525, '3', 'Madras university ', '', 'B.sc', '2023', 60.00, '', 1, '2024-04-13 05:30:55', 0, NULL, 0, NULL, 1),
(24079, 18525, '2', 'State Board ', '', '', '2020', 50.00, '', 1, '2024-04-13 05:32:35', 0, NULL, 0, NULL, 1),
(24080, 18523, '2', 'State board', '', '', '2020', 68.00, '', 1, '2024-04-13 05:32:46', 1, '2024-04-13 05:33:52', 0, NULL, 1),
(24081, 18523, '1', 'State board', '', '', '2018', 59.00, '', 1, '2024-04-13 05:34:24', 0, NULL, 0, NULL, 1),
(24082, 18525, '1', 'State Board', '', '', '2018', 78.40, '', 1, '2024-04-13 05:34:48', 0, NULL, 0, NULL, 1),
(24083, 18528, '3', 'Mookambigai college of engineering ', '', 'B.E', '2019', 65.00, '', 1, '2024-04-13 05:47:51', 0, NULL, 0, NULL, 1),
(24084, 18526, '4', 'Madras University ', '', 'M Sc Computer science ', '2020', 71.00, '', 1, '2024-04-13 05:53:20', 0, NULL, 0, NULL, 1),
(24085, 18529, '3', 'Vels Institute of Science and Technology', '', 'BBA', '2022', 72.00, '', 1, '2024-04-13 05:54:47', 0, NULL, 0, NULL, 1),
(24086, 18529, '5', 'Manipal University', '', 'PGDBS', '2023', 80.00, '', 1, '2024-04-13 05:55:35', 0, NULL, 0, NULL, 1),
(24087, 18531, '3', 'Madras University ', '', 'BCA ', '2023', 62.42, '', 1, '2024-04-13 06:47:50', 0, NULL, 0, NULL, 1),
(24088, 18532, '3', 'university of madras', '', 'B.Sc. Mathematics', '2017', 73.00, '', 1, '2024-04-13 07:33:36', 0, NULL, 0, NULL, 1),
(24089, 18532, '2', 'state board of tamil nadu', '', '', '2014', 78.00, '', 1, '2024-04-13 07:34:07', 0, NULL, 0, NULL, 1),
(24090, 18532, '1', 'state board of tamil nadu', '', '', '2012', 83.00, '', 1, '2024-04-13 07:34:29', 0, NULL, 0, NULL, 1),
(24091, 18534, '3', 'University of Madras ', '', 'B.com', '2023', 75.00, '', 1, '2024-04-13 10:55:12', 0, NULL, 0, NULL, 1),
(24092, 18510, '3', 'madurai kamaraj ', '', 'bsc maths', '2020', 72.00, '', 130, '2024-04-13 04:26:38', 0, NULL, 0, NULL, 1),
(24093, 18537, '3', 'Anna university', '', 'BE', '2021', 80.40, '', 1, '2024-04-13 05:00:54', 0, NULL, 0, NULL, 1),
(24094, 18537, '1', 'State board', '', '', '2018', 70.40, '', 1, '2024-04-13 05:02:21', 0, NULL, 0, NULL, 1),
(24095, 18537, '2', 'State board', '', '', '2020', 50.67, '', 1, '2024-04-13 05:03:01', 0, NULL, 0, NULL, 1),
(24096, 18492, '3', 'rajasthan technical university', '', 'b-tech', '2020', 60.06, '', 1, '2024-04-15 04:20:28', 0, NULL, 0, NULL, 1),
(24097, 18540, '3', 'Bharathidasan University ', '', 'Bsc.Fashion technology and Costume designing ', '2023', 80.00, '', 1, '2024-04-15 04:41:27', 0, NULL, 0, NULL, 1),
(24098, 18539, '3', 'Bharathidasan university', '', 'Bcom CA', '2024', 74.00, '', 1, '2024-04-15 04:41:57', 0, NULL, 0, NULL, 1),
(24099, 18541, '5', 'Government polytechnic kampli', '', 'Non', '2023', 60.00, '', 1, '2024-04-15 05:08:25', 0, NULL, 0, NULL, 1),
(24100, 18543, '3', 'bharathidasan university', '', 'B.com', '2023', 60.00, '', 1, '2024-04-15 05:41:58', 0, NULL, 0, NULL, 1),
(24101, 18545, '1', 'State board ', '', 'B.tech iT', '2021', 80.00, '', 1, '2024-04-15 06:17:09', 1, '2024-04-15 06:17:25', 0, NULL, 0),
(24102, 18544, '3', 'Gulbarga University Gulbarga ', '', 'Bcom', '2021', 75.00, '', 1, '2024-04-15 06:17:20', 0, NULL, 0, NULL, 1),
(24103, 18545, '1', 'State board ', '', 'B.tech iT', '2021', 80.00, '', 1, '2024-04-15 06:17:30', 0, NULL, 0, NULL, 1),
(24104, 18544, '2', 'Karnataka state board ', '', '', '2018', 81.00, '', 1, '2024-04-15 06:18:20', 0, NULL, 0, NULL, 1),
(24105, 18544, '1', 'Karnataka state board ', '', '', '2016', 83.00, '', 1, '2024-04-15 06:18:38', 0, NULL, 0, NULL, 1),
(24106, 18545, '2', 'State board ', '', '', '2019', 65.00, '', 1, '2024-04-15 06:19:58', 0, NULL, 0, NULL, 1),
(24107, 18542, '3', 'University ', '', 'B.com (general )', '2023', 75.00, '', 1, '2024-04-15 06:28:10', 0, NULL, 0, NULL, 1),
(24108, 18542, '2', 'state board', '', '', '2020', 45.00, '', 112, '2024-04-15 12:04:12', 0, NULL, 0, NULL, 1),
(24109, 18542, '1', 'state board', '', '', '2018', 52.00, '', 112, '2024-04-15 12:04:33', 0, NULL, 0, NULL, 1),
(24110, 18547, '3', 'Bharathidasan University ', '', 'BBA', '2024', 80.00, '', 1, '2024-04-15 07:05:30', 0, NULL, 0, NULL, 1),
(24111, 18548, '3', 'Avcc college autonomous ', '', 'B com', '2023', 70.00, '', 1, '2024-04-15 07:09:44', 0, NULL, 0, NULL, 1),
(24112, 18548, '2', 'Arivalayam', '', '', '2020', 89.00, '', 1, '2024-04-15 07:10:28', 0, NULL, 0, NULL, 1),
(24113, 18548, '1', 'Raj vidhayalaya', '', '', '2018', 75.00, '', 1, '2024-04-15 07:11:07', 0, NULL, 0, NULL, 1),
(24114, 18551, '3', 'B.S abdur Rahman crescent institute of science and technology ', '', 'B.com general', '2023', 8.00, '', 1, '2024-04-15 07:55:28', 0, NULL, 0, NULL, 1),
(24115, 18551, '2', 'State board ', '', '', '2020', 67.60, '', 1, '2024-04-15 07:56:05', 0, NULL, 0, NULL, 1),
(24116, 18551, '1', 'State board ', '', '', '2018', 7.20, '', 1, '2024-04-15 07:56:34', 0, NULL, 0, NULL, 1),
(24117, 18552, '3', 'Anniversary ', '', 'BE mechanical ', '2018', 60.00, '', 1, '2024-04-15 07:58:51', 0, NULL, 0, NULL, 1),
(24118, 18554, '4', 'Bangalore University ', '', 'Bcom', '2019', 75.80, '', 1, '2024-04-15 08:37:18', 0, NULL, 0, NULL, 1),
(24119, 18554, '1', 'Bangalore University ', '', '', '2014', 80.32, '', 1, '2024-04-15 08:37:31', 0, NULL, 0, NULL, 1),
(24120, 18555, '3', 'Vels university', '', 'Be ece ', '2022', 79.00, '', 1, '2024-04-15 09:08:59', 0, NULL, 0, NULL, 1),
(24121, 18556, '5', 'Dote', '', '', '2016', 70.00, '', 1, '2024-04-15 09:15:24', 0, NULL, 0, NULL, 1),
(24122, 18556, '1', 'State Board', '', '', '2011', 73.00, '', 1, '2024-04-15 09:16:18', 0, NULL, 0, NULL, 1),
(24123, 18556, '2', 'State board', '', '', '2013', 73.00, '', 1, '2024-04-15 09:17:06', 0, NULL, 0, NULL, 1),
(24124, 18557, '4', 'Annamacharya institute of technology and sciences', '', 'Btech', '2023', 60.00, '', 1, '2024-04-15 10:16:19', 0, NULL, 0, NULL, 1),
(24125, 18559, '3', 'Dr.MGR University ', '', 'BCA', '2024', 7.89, '', 1, '2024-04-15 11:48:19', 0, NULL, 0, NULL, 1),
(24126, 18560, '1', 'Tamilnadu state board', '', '', '2016', 94.00, '', 1, '2024-04-15 01:03:40', 0, NULL, 0, NULL, 1),
(24127, 18560, '2', 'Tamilnadu state board ', '', '', '2018', 82.00, '', 1, '2024-04-15 01:03:59', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24128, 18560, '3', 'Annamalai University ', '', 'Bsc (Hons) Agriculture ', '2022', 85.00, '', 1, '2024-04-15 01:04:40', 0, NULL, 0, NULL, 1),
(24129, 18561, '3', 'visvesvaraya technological university', '', 'bachelor of engineering', '2023', 65.00, '', 1, '2024-04-15 03:46:41', 0, NULL, 0, NULL, 1),
(24130, 18562, '4', 'Karpagam Academy of higher education ', '', 'Masters in Science', '2022', 81.00, '', 1, '2024-04-16 01:25:57', 0, NULL, 0, NULL, 1),
(24131, 18562, '3', 'Bharathiyar University ', '', 'Bachelor in Science', '2019', 64.00, '', 1, '2024-04-16 01:26:33', 0, NULL, 0, NULL, 1),
(24132, 18563, '3', 'Anna university', '', 'BE mechanical engineering', '2019', 6.52, '', 1, '2024-04-16 04:18:57', 0, NULL, 0, NULL, 1),
(24133, 18563, '1', 'State board', '', '', '2012', 60.00, '', 1, '2024-04-16 04:19:29', 0, NULL, 0, NULL, 1),
(24134, 18564, '4', 'Kongu Engineering college ', '', 'MBA', '2023', 65.00, '', 1, '2024-04-16 05:09:06', 0, NULL, 0, NULL, 1),
(24135, 18565, '3', 'VTU', '', 'BE(computer science) ', '2023', 76.00, '', 1, '2024-04-16 05:20:27', 0, NULL, 0, NULL, 1),
(24136, 18572, '3', 'Visvesvaraya Technological University, Belgaum ', '', 'B.E, MECHANICAL ENGINEERING ', '2023', 6.20, '', 1, '2024-04-16 05:23:05', 0, NULL, 0, NULL, 1),
(24137, 18572, '2', 'BOARD OF INTERMEDIATE EDUCATION,A.P', '', '', '2017', 63.00, '', 1, '2024-04-16 05:23:49', 0, NULL, 0, NULL, 1),
(24138, 18572, '1', 'BOARD OF SECONDARY SCHOOL EDUCATION,A.P', '', '', '2015', 71.00, '', 1, '2024-04-16 05:24:20', 0, NULL, 0, NULL, 1),
(24139, 18569, '3', 'University of Madras ', '', 'BSC ( Computer science)', '2020', 94.00, '', 1, '2024-04-16 05:24:28', 0, NULL, 0, NULL, 1),
(24140, 18573, '3', 'State Board of examination ', '', 'ITI', '2015', 85.00, '', 1, '2024-04-16 05:28:44', 0, NULL, 0, NULL, 1),
(24141, 18573, '1', 'Karanataka secondary education exam board ', '', '', '2010', 50.00, '', 1, '2024-04-16 05:30:07', 0, NULL, 0, NULL, 1),
(24142, 18568, '3', 'Bharathidasan ', '', 'Bcom', '2021', 80.00, '', 1, '2024-04-16 05:33:17', 0, NULL, 0, NULL, 1),
(24143, 18575, '1', 'Bangalore University ', '', '', '2015', 71.00, '', 1, '2024-04-16 05:35:24', 0, NULL, 0, NULL, 1),
(24144, 18576, '3', 'Madras University ', '', 'BCA', '2019', 65.00, '', 1, '2024-04-16 05:37:41', 0, NULL, 0, NULL, 1),
(24145, 18570, '4', 'Sri venkateswar University ', '', 'M.com', '2019', 53.58, '', 1, '2024-04-16 05:40:40', 0, NULL, 0, NULL, 1),
(24146, 18577, '3', 'Bangalore North University ', '', 'Bca', '2023', 88.00, '', 1, '2024-04-16 05:42:49', 0, NULL, 0, NULL, 1),
(24147, 18567, '3', 'Bharathidasan ', '', 'Bcom', '2017', 63.00, '', 1, '2024-04-16 05:44:14', 0, NULL, 0, NULL, 1),
(24148, 18566, '3', 'Bharathidasan ', '', 'Ba', '2020', 70.00, '', 1, '2024-04-16 06:02:46', 0, NULL, 0, NULL, 1),
(24149, 18578, '3', 'Charan sing University ', '', 'Bsc MLT', '2020', 60.00, '', 1, '2024-04-16 06:03:39', 0, NULL, 0, NULL, 1),
(24150, 18580, '3', 'University of Madras ', '', '', '2018', 75.00, '', 1, '2024-04-16 06:17:48', 0, NULL, 0, NULL, 1),
(24151, 18579, '2', 'Board', '', '', '2017', 60.00, '', 1, '2024-04-16 06:22:47', 0, NULL, 0, NULL, 1),
(24152, 18582, '3', 'Vtu', '', 'Be', '2022', 69.00, '', 1, '2024-04-16 06:22:54', 0, NULL, 0, NULL, 1),
(24153, 18583, '3', 'Tamilnadu agriculture University ', '', 'Bsc (hons) Agri', '2023', 71.00, '', 1, '2024-04-16 06:23:57', 0, NULL, 0, NULL, 1),
(24154, 18585, '3', 'vtu', '', 'bachelor Of engineering', '2022', 72.00, '', 1, '2024-04-16 06:47:22', 0, NULL, 0, NULL, 1),
(24155, 18584, '4', 'University of Mysore ', '', 'MBA ', '2023', 7.50, '', 1, '2024-04-16 06:47:28', 0, NULL, 0, NULL, 1),
(24156, 18584, '3', 'University of Mysore ', '', 'B.com', '2021', 8.30, '', 1, '2024-04-16 06:48:51', 0, NULL, 0, NULL, 1),
(24157, 18586, '5', 'Prist University ', '', 'DME', '2021', 65.00, '', 1, '2024-04-16 07:09:04', 0, NULL, 0, NULL, 1),
(24158, 18587, '3', 'Mysore University', '', 'B.com', '2018', 60.63, '', 1, '2024-04-16 07:18:30', 0, NULL, 0, NULL, 1),
(24159, 18546, '3', 'Bangalore University ', '', 'Bcom', '2018', 52.00, '', 1, '2024-04-16 07:42:36', 0, NULL, 0, NULL, 1),
(24160, 18589, '3', 'Madras university ', '', 'B.com corporate ', '2017', 71.00, '', 1, '2024-04-16 08:04:39', 0, NULL, 0, NULL, 1),
(24161, 18589, '4', 'Madras university ', '', 'MBA ', '2020', 75.00, '', 1, '2024-04-16 08:05:30', 0, NULL, 0, NULL, 1),
(24162, 18590, '1', 'Balwins Methodist College', '', '', '2023', 69.00, '', 1, '2024-04-16 08:06:40', 0, NULL, 0, NULL, 1),
(24163, 18591, '1', 'board of secondar Education ', '', 'b.com', '2014', 6.80, '', 1, '2024-04-16 08:08:45', 1, '2024-04-16 08:13:22', 0, NULL, 1),
(24164, 18591, '4', 'jntu kakinada ', '', 'b.com', '2019', 78.00, '', 1, '2024-04-16 08:11:02', 1, '2024-04-16 08:13:46', 0, NULL, 1),
(24165, 18591, '3', 'board of intermediate enducation', '', 'ug', '2016', 70.00, '', 1, '2024-04-16 08:15:25', 0, NULL, 0, NULL, 1),
(24166, 18592, '1', 'Yogi vemana University ', '', '', '2023', 78.00, '', 1, '2024-04-16 08:18:54', 0, NULL, 0, NULL, 1),
(24167, 18592, '3', 'Board of intermediate education ', '', 'Intermediate ', '2019', 65.00, '', 1, '2024-04-16 08:21:06', 0, NULL, 0, NULL, 1),
(24168, 18592, '4', 'yogivemana University ', '', 'Bsc', '2023', 73.00, '', 1, '2024-04-16 08:24:01', 0, NULL, 0, NULL, 1),
(24169, 18593, '4', 'Periyar University ', '', 'Msc', '2019', 81.00, '', 1, '2024-04-16 11:26:02', 0, NULL, 0, NULL, 1),
(24170, 18594, '3', 'Madras University ', '', 'B.com general ', '2023', 64.00, '', 1, '2024-04-16 11:38:14', 0, NULL, 0, NULL, 1),
(24171, 18595, '5', 'TJS Polytechnic College', '', 'Diploma In Civil Engineering', '2021', 80.00, '', 1, '2024-04-16 01:39:56', 0, NULL, 0, NULL, 1),
(24172, 18596, '3', 'Madras University ', '', 'B.com Accounting and finance ', '2021', 89.50, '', 1, '2024-04-17 05:01:30', 0, NULL, 0, NULL, 1),
(24173, 18597, '4', 'Bharathidhasan University ', '', 'M.Com', '2021', 8.50, '', 1, '2024-04-17 05:04:53', 0, NULL, 0, NULL, 1),
(24174, 18597, '3', 'Periyar University ', '', 'B.Com (CA)', '2018', 6.50, '', 1, '2024-04-17 05:05:23', 0, NULL, 0, NULL, 1),
(24175, 18598, '3', 'SRM University ', '', 'B COM', '2018', 60.00, '', 1, '2024-04-17 05:09:08', 0, NULL, 0, NULL, 1),
(24176, 18599, '3', 'Bharthidasan university', '', 'BSc,FT', '2023', 83.30, '', 1, '2024-04-17 05:31:23', 0, NULL, 0, NULL, 1),
(24177, 18600, '3', 'Anna University ', '', 'B.E ', '2017', 65.00, '', 1, '2024-04-17 05:52:39', 0, NULL, 0, NULL, 1),
(24178, 18601, '3', 'Sri krishna devaraya university', '', 'B. Pharmacy', '2020', 6.60, '', 1, '2024-04-17 05:53:40', 0, NULL, 0, NULL, 1),
(24179, 18604, '1', 'State board ', '', '', '2016', 85.00, '', 1, '2024-04-17 06:01:34', 0, NULL, 0, NULL, 1),
(24180, 18604, '2', 'State board', '', '', '2018', 86.00, '', 1, '2024-04-17 06:02:02', 0, NULL, 0, NULL, 1),
(24181, 18604, '3', 'Calicut university ', '', 'BA English literature', '2021', 81.00, '', 1, '2024-04-17 06:03:00', 0, NULL, 0, NULL, 1),
(24182, 18604, '4', 'Karpagam university ', '', 'MBA', '2023', 83.00, '', 1, '2024-04-17 06:03:32', 0, NULL, 0, NULL, 1),
(24183, 18603, '3', 'Anna University', '', 'Computer science engineering', '2022', 7.80, '', 1, '2024-04-17 06:13:31', 0, NULL, 0, NULL, 1),
(24184, 18605, '4', 'Govt. Pg college satna mp', '', 'B. Com', '2020', 65.00, '', 1, '2024-04-17 06:14:05', 0, NULL, 0, NULL, 1),
(24185, 18606, '3', 'Anna University ', '', 'BE ', '2018', 6.80, '', 1, '2024-04-17 06:18:55', 0, NULL, 0, NULL, 1),
(24186, 18608, '3', 'glocal university', '', 'bsc cumputer science', '2023', 65.00, '', 1, '2024-04-17 08:26:32', 0, NULL, 0, NULL, 1),
(24187, 18609, '3', 'People Tree Education Society belagavi', '', 'Bcom', '2022', 67.96, '', 1, '2024-04-17 08:51:38', 0, NULL, 0, NULL, 1),
(24188, 18609, '1', 'KSEEB', '', '', '2017', 64.96, '', 1, '2024-04-17 08:53:31', 0, NULL, 0, NULL, 1),
(24189, 18610, '3', 'University ', '', 'B b a', '2023', 65.00, '', 1, '2024-04-17 08:57:41', 0, NULL, 0, NULL, 1),
(24190, 18611, '2', 'UP Board ', '', '', '2016', 62.00, '', 1, '2024-04-17 09:05:38', 0, NULL, 0, NULL, 1),
(24191, 18611, '1', 'CBSE Board ', '', '', '2014', 76.00, '', 1, '2024-04-17 09:06:14', 0, NULL, 0, NULL, 1),
(24192, 18612, '4', 'VTU', '', 'MCA ', '2024', 78.00, '', 1, '2024-04-17 09:41:58', 0, NULL, 0, NULL, 1),
(24193, 18612, '3', 'Kuvempu University ', '', 'BCA', '2022', 62.90, '', 1, '2024-04-17 09:42:33', 0, NULL, 0, NULL, 1),
(24194, 18612, '2', 'Karnataka secondary education ', '', '', '2019', 51.50, '', 1, '2024-04-17 09:43:54', 0, NULL, 0, NULL, 1),
(24195, 18612, '1', 'Karnataka education ', '', '', '2017', 78.00, '', 1, '2024-04-17 09:44:15', 0, NULL, 0, NULL, 1),
(24196, 18613, '3', 'anna university', '', 'b e computer science', '2019', 64.00, '', 1, '2024-04-17 10:21:00', 0, NULL, 0, NULL, 1),
(24197, 18615, '4', 'bharathidasan unuversity', '', 'm.b.a', '2024', 68.00, '', 1, '2024-04-17 11:24:32', 0, NULL, 0, NULL, 1),
(24198, 18615, '3', 'bharathidasan university', '', 'b.com', '2022', 70.00, '', 1, '2024-04-17 11:25:32', 0, NULL, 0, NULL, 1),
(24199, 18615, '2', 'state board of secondary education', '', '', '2019', 49.50, '', 1, '2024-04-17 11:26:55', 0, NULL, 0, NULL, 1),
(24200, 18615, '1', 'central board of secondary education', '', '', '2017', 86.00, '', 1, '2024-04-17 11:27:49', 0, NULL, 0, NULL, 1),
(24201, 18616, '5', 'Anna university of technology ', '', 'ECE', '2017', 81.00, '', 1, '2024-04-17 11:32:25', 0, NULL, 0, NULL, 1),
(24202, 18616, '1', 'State government ', '', '', '2014', 69.00, '', 1, '2024-04-17 11:33:02', 0, NULL, 0, NULL, 1),
(24203, 18619, '4', 'anna university ', '', 'MCA ', '2022', 84.00, '', 1, '2024-04-17 01:36:12', 0, NULL, 0, NULL, 1),
(24204, 18620, '4', 'Anna University ', '', 'Mca', '2022', 88.00, '', 1, '2024-04-17 02:03:14', 0, NULL, 0, NULL, 1),
(24205, 18620, '3', 'Bharathidhasan University ', '', 'B.sc', '2019', 61.00, '', 1, '2024-04-17 02:04:34', 0, NULL, 0, NULL, 1),
(24206, 18620, '2', 'Government Higher Secondary School ', '', '', '2016', 74.00, '', 1, '2024-04-17 02:05:20', 0, NULL, 0, NULL, 1),
(24207, 18624, '1', 'Tamilnadu state board', '', '', '2018', 93.00, '', 1, '2024-04-18 04:38:00', 0, NULL, 0, NULL, 1),
(24208, 18624, '2', 'Tamilnadu state board', '', '', '2020', 78.67, '', 1, '2024-04-18 04:38:29', 0, NULL, 0, NULL, 1),
(24209, 18624, '3', 'Kcg College of technology', '', 'B. Tech information technology', '2024', 74.00, '', 1, '2024-04-18 04:39:24', 0, NULL, 0, NULL, 1),
(24210, 18623, '3', 'Bhararthidasan university', '', 'B. Sc Fashion technology', '2023', 81.20, '', 1, '2024-04-18 04:49:57', 0, NULL, 0, NULL, 1),
(24211, 18625, '3', 'Raak Arts and Science College', '', 'BBA', '2020', 62.00, '', 1, '2024-04-18 05:10:56', 0, NULL, 0, NULL, 1),
(24212, 18627, '4', 'Sri venkateshwara university', '', 'MBA', '2022', 71.00, '', 1, '2024-04-18 05:31:05', 0, NULL, 0, NULL, 1),
(24213, 18630, '3', 'Jawaharlal Nehru technological University kakinada ', '', 'B Tech', '2021', 74.00, '', 1, '2024-04-18 05:47:57', 0, NULL, 0, NULL, 1),
(24214, 18630, '2', 'Board of intermediate education Andhrapradesh ', '', '', '2017', 77.00, '', 1, '2024-04-18 05:48:53', 0, NULL, 0, NULL, 1),
(24215, 18630, '1', 'Board of secondary education Andhra Pradesh ', '', '', '2014', 90.00, '', 1, '2024-04-18 05:49:22', 0, NULL, 0, NULL, 1),
(24216, 18629, '3', 'Madras ', '', 'B.com Ism', '2020', 68.00, '', 1, '2024-04-18 06:15:47', 0, NULL, 0, NULL, 1),
(24217, 18631, '1', 'Chennai ', '', '', '2019', 65.00, '', 1, '2024-04-18 06:18:43', 0, NULL, 0, NULL, 1),
(24218, 18574, '3', 'bangalore university', '', 'b.com', '2024', 5.62, '', 1, '2024-04-18 06:40:41', 0, NULL, 0, NULL, 1),
(24219, 18617, '3', 'Apollo engineering college ', '', 'BE.CSE', '2023', 6.80, '', 1, '2024-04-18 06:54:57', 0, NULL, 0, NULL, 1),
(24220, 18632, '4', 'Bharathiyar University ', '', 'MSW master of social work (medical &psychiatric)', '2020', 72.00, '', 1, '2024-04-18 07:02:53', 0, NULL, 0, NULL, 1),
(24221, 18628, '3', 'University ', '', 'BCA', '2020', 65.00, '', 1, '2024-04-18 07:36:27', 0, NULL, 0, NULL, 1),
(24222, 18636, '1', 'Madras University ', '', '', '2018', 70.00, '', 1, '2024-04-18 08:47:30', 0, NULL, 0, NULL, 1),
(24223, 18639, '3', 'kuvempu university', '', 'bba', '2021', 55.00, '', 1, '2024-04-18 09:11:44', 0, NULL, 0, NULL, 1),
(24224, 18636, '2', 'Kellelt hr school ', '', '', '2018', 45.00, '', 1, '2024-04-18 09:34:44', 0, NULL, 0, NULL, 1),
(24225, 18634, '3', 'Bangalore university ', '', 'BA', '2021', 75.00, '', 1, '2024-04-18 10:00:07', 0, NULL, 0, NULL, 1),
(24226, 18637, '1', 'state board ', '', '', '2016', 69.00, '', 1, '2024-04-18 10:05:46', 0, NULL, 0, NULL, 1),
(24227, 18641, '3', 'st peters Institute of higher education and research', '', 'be cse', '2023', 75.00, '', 1, '2024-04-18 10:54:25', 0, NULL, 0, NULL, 1),
(24228, 18640, '3', 'Anna University ', '', 'B.E ', '2023', 60.00, '', 1, '2024-04-18 10:56:32', 0, NULL, 0, NULL, 1),
(24229, 18633, '4', 'madres university', '', 'b.com', '2000', 67.00, '', 1, '2024-04-18 11:20:03', 0, NULL, 0, NULL, 1),
(24230, 18643, '2', 'Karnataka state board ', '', '', '2019', 52.00, '', 1, '2024-04-18 01:36:55', 0, NULL, 0, NULL, 1),
(24231, 18644, '3', 'Anna University ', '', 'B.E.mechanical', '2023', 80.00, '', 1, '2024-04-18 03:28:47', 0, NULL, 0, NULL, 1),
(24232, 18645, '3', 'mahendra college of engineering', '', 'b e  computer science and engineering', '2022', 70.30, '', 1, '2024-04-18 04:23:12', 0, NULL, 0, NULL, 1),
(24233, 18647, '3', 'university', '', 'bsc', '2020', 64.00, '', 1, '2024-04-18 05:44:13', 0, NULL, 0, NULL, 1),
(24234, 18648, '3', 'madras university', '', 'bcom', '2018', 72.00, '', 1, '2024-04-20 04:49:17', 0, NULL, 0, NULL, 1),
(24235, 18649, '4', 'Madras University ', '', 'M.sc ', '2022', 86.00, '', 1, '2024-04-20 05:06:12', 0, NULL, 0, NULL, 1),
(24236, 18650, '3', 'vels university ', '', 'b.com compu Application', '2022', 76.00, '', 1, '2024-04-20 05:39:30', 0, NULL, 0, NULL, 1),
(24237, 18651, '3', 'ST PETER\'S UNIVERSITY ', '', 'B.com (General)', '2023', 79.00, '', 1, '2024-04-20 05:42:37', 0, NULL, 0, NULL, 1),
(24238, 18652, '3', 'Bharadhidasan University ', '', 'B.sc mathematics ', '2019', 51.00, '', 1, '2024-04-20 05:56:09', 0, NULL, 0, NULL, 1),
(24239, 18653, '4', 'Madras University ', '', 'M A English literature ', '2019', 50.00, '', 1, '2024-04-20 06:12:26', 0, NULL, 0, NULL, 1),
(24240, 18654, '3', 'Anna University ', '', 'B.E', '2015', 80.00, '', 1, '2024-04-20 06:30:06', 0, NULL, 0, NULL, 1),
(24241, 18655, '3', 'Madras University ', '', 'BBA', '2015', 89.00, '', 1, '2024-04-20 06:59:11', 0, NULL, 0, NULL, 1),
(24242, 18656, '3', 'Madras university', '', 'B.com', '2016', 80.00, '', 1, '2024-04-20 07:11:14', 0, NULL, 0, NULL, 1),
(24243, 18496, '5', 'Banglore University ', '', 'Electronics and communication ', '2019', 75.00, '', 1, '2024-04-20 07:21:01', 0, NULL, 0, NULL, 1),
(24244, 18496, '1', 'Banglore University ', '', '', '2013', 59.52, '', 1, '2024-04-20 07:25:16', 0, NULL, 0, NULL, 1),
(24245, 18657, '4', 'Anna University ', '', 'MBA', '2022', 70.00, '', 1, '2024-04-20 07:33:13', 0, NULL, 0, NULL, 1),
(24246, 18657, '3', 'Thiruvalluvar University ', '', 'Bcom', '2019', 53.00, '', 1, '2024-04-20 07:33:35', 0, NULL, 0, NULL, 1),
(24247, 18658, '3', 'Anna University', '', 'BE', '2020', 68.00, '', 1, '2024-04-20 09:10:00', 0, NULL, 0, NULL, 1),
(24248, 18660, '3', 'Madras university ', '', 'BSC', '2024', 76.00, '', 1, '2024-04-21 08:46:00', 0, NULL, 0, NULL, 1),
(24249, 18661, '3', 'University of Madras ', '', 'Bsc computer science ', '2020', 60.00, '', 1, '2024-04-22 05:02:27', 0, NULL, 0, NULL, 1),
(24250, 18662, '3', 'Autonomous ', '', 'B.sc nutrition and dietetics ', '2019', 64.00, '', 1, '2024-04-22 05:26:03', 0, NULL, 0, NULL, 1),
(24251, 18665, '3', 'Anna university ', '', 'B.E', '2018', 66.80, '', 1, '2024-04-22 05:57:48', 0, NULL, 0, NULL, 1),
(24252, 18663, '3', 'Presidency college ', '', 'BA . economics ', '2024', 75.00, '', 1, '2024-04-22 06:17:27', 0, NULL, 0, NULL, 1),
(24253, 18664, '3', 'madras university', '', 'ba economics', '2024', 75.00, '', 1, '2024-04-22 06:50:59', 0, NULL, 0, NULL, 1),
(24254, 18642, '3', 'Anna University ', '', 'BE MECHANICAL ENGINEERING ', '2018', 75.00, '', 1, '2024-04-22 06:57:51', 0, NULL, 0, NULL, 1),
(24255, 18264, '1', 'Statement of marks', '', '', '2019', 60.00, '', 1, '2024-04-22 07:07:23', 0, NULL, 0, NULL, 1),
(24256, 18264, '5', 'Statement of marks', '', 'Diploma ', '2019', 60.00, '', 1, '2024-04-22 07:08:39', 0, NULL, 0, NULL, 1),
(24257, 18668, '3', 'pondicherry university', '', 'b.tech', '2020', 7.00, '', 1, '2024-04-22 07:13:48', 0, NULL, 0, NULL, 1),
(24258, 18668, '2', 'state board', '', '', '2016', 71.00, '', 1, '2024-04-22 07:14:10', 0, NULL, 0, NULL, 1),
(24259, 18668, '1', 'state board', '', '', '2014', 92.00, '', 1, '2024-04-22 07:14:29', 0, NULL, 0, NULL, 1),
(24260, 18669, '2', 'Board of open schooling ', '', '', '2023', 69.00, '', 1, '2024-04-22 07:37:50', 0, NULL, 0, NULL, 1),
(24261, 18669, '1', 'Karnataka state board ', '', '', '2013', 58.00, '', 1, '2024-04-22 07:38:17', 0, NULL, 0, NULL, 1),
(24262, 18670, '2', 'tamilnadu state', '', '', '2016', 65.00, '', 1, '2024-04-22 07:38:59', 0, NULL, 0, NULL, 1),
(24263, 18671, '4', 'Madras University ', '', 'Mba', '2024', 81.00, '', 1, '2024-04-22 08:27:40', 0, NULL, 0, NULL, 1),
(24264, 18672, '3', 'Velammal engineering college ', '', 'BE computer science engineering ', '2020', 6.90, '', 1, '2024-04-22 09:39:27', 0, NULL, 0, NULL, 1),
(24265, 18673, '3', 'Government First Grade College of Madhugiri ', '', 'Bachelor of commerce ', '2023', 62.00, '', 1, '2024-04-22 12:48:30', 0, NULL, 0, NULL, 1),
(24266, 18674, '5', 'Matric', '', 'Bca', '2017', 75.00, '', 1, '2024-04-23 04:45:05', 0, NULL, 0, NULL, 1),
(24267, 18674, '3', 'Matric', '', 'Bca', '2017', 75.00, '', 1, '2024-04-23 04:55:38', 0, NULL, 0, NULL, 1),
(24268, 18675, '3', 'Anna University ', '', 'B.Tech /IT', '2022', 72.00, '', 1, '2024-04-23 05:17:43', 0, NULL, 0, NULL, 1),
(24269, 18677, '3', 'Barathiyar university', '', 'Bsc. Visual commnication', '2021', 74.00, '', 1, '2024-04-23 05:20:42', 0, NULL, 0, NULL, 1),
(24270, 18676, '3', 'Anna University ', '', 'B.Tech /IT', '2020', 75.00, '', 1, '2024-04-23 05:31:47', 0, NULL, 0, NULL, 1),
(24271, 18679, '3', 'Nagpur University ', '', 'Bachelor\'s of Engineering ', '2022', 85.00, '', 1, '2024-04-23 05:45:02', 0, NULL, 0, NULL, 1),
(24272, 18680, '3', 'Madras university', '', 'BBA', '2024', 68.00, '', 1, '2024-04-23 05:45:43', 1, '2024-04-23 05:47:29', 0, NULL, 1),
(24273, 18680, '2', 'Board', '', '', '2021', 69.00, '', 1, '2024-04-23 05:46:25', 0, NULL, 0, NULL, 1),
(24274, 18680, '1', 'Board', '', '', '2019', 55.00, '', 1, '2024-04-23 05:47:54', 0, NULL, 0, NULL, 1),
(24275, 18681, '3', 'Madras University ', '', 'B.com bank management ', '2024', 74.00, '', 1, '2024-04-23 05:58:41', 0, NULL, 0, NULL, 1),
(24276, 18681, '2', 'State board', '', '', '2021', 72.00, '', 1, '2024-04-23 05:59:37', 0, NULL, 0, NULL, 1),
(24277, 18681, '1', 'State board ', '', '', '2019', 52.00, '', 1, '2024-04-23 06:00:09', 0, NULL, 0, NULL, 1),
(24278, 18678, '3', 'anna university', '', 'b e eee', '2019', 80.00, '', 1, '2024-04-23 06:08:58', 0, NULL, 0, NULL, 1),
(24279, 18682, '4', 'anna university', '', 'me computer science', '2023', 72.00, '', 1, '2024-04-23 06:29:46', 0, NULL, 0, NULL, 1),
(24280, 18686, '5', 'Dote University ', '', 'Diploma in computer engineering ', '2018', 72.00, '', 1, '2024-04-23 06:45:51', 0, NULL, 0, NULL, 1),
(24281, 18685, '3', 'Thiruvalluvar ', '', 'B.sc ', '2022', 70.00, '', 1, '2024-04-23 07:05:35', 1, '2024-04-23 07:06:53', 0, NULL, 0),
(24282, 18685, '3', 'Thiruvalluvar University ', '', 'B.sc chemistry ', '2019', 75.00, '', 1, '2024-04-23 07:07:03', 0, NULL, 0, NULL, 1),
(24283, 18684, '4', 'Deemed ', '', 'MCA', '2024', 84.00, '', 1, '2024-04-23 07:15:36', 0, NULL, 0, NULL, 1),
(24284, 18687, '3', 'Vels University ', '', 'Bba', '2019', 65.00, '', 1, '2024-04-23 07:25:31', 0, NULL, 0, NULL, 1),
(24285, 18690, '2', 'Muslim schl', '', '', '2019', 60.00, '', 1, '2024-04-23 09:16:56', 0, NULL, 0, NULL, 1),
(24286, 18688, '3', 'vtu', '', 'be', '2010', 59.00, '', 1, '2024-04-23 09:29:39', 0, NULL, 0, NULL, 1),
(24287, 18691, '2', 'M.g.r University ', '', '', '2023', 73.00, '', 1, '2024-04-23 10:45:43', 0, NULL, 0, NULL, 1),
(24288, 18694, '5', 'St Xavier College ', '', 'DME', '2020', 72.00, '', 1, '2024-04-24 04:45:15', 0, NULL, 0, NULL, 1),
(24289, 18694, '2', 'N.s.m.v.p s. Hr sec shcool ', '', '', '2017', 50.60, '', 1, '2024-04-24 04:47:25', 0, NULL, 0, NULL, 1),
(24290, 18694, '1', 'N.s.m. v.p. s hr sec school Devakottai ', '', '', '2015', 84.00, '', 1, '2024-04-24 04:48:38', 0, NULL, 0, NULL, 1),
(24291, 18696, '1', 'Bangalore ', '', '', '2016', 45.00, '', 1, '2024-04-24 04:52:28', 0, NULL, 0, NULL, 1),
(24292, 18695, '3', 'University of Madras ', '', 'Bsc.computer science ', '2023', 72.00, '', 1, '2024-04-24 05:10:17', 0, NULL, 0, NULL, 1),
(24293, 18698, '5', 'Dote', '', 'Eee', '2020', 94.00, '', 1, '2024-04-24 05:14:53', 0, NULL, 0, NULL, 1),
(24294, 18699, '3', 'Madras University', '', 'B Com General', '2022', 75.00, '', 1, '2024-04-24 05:17:01', 0, NULL, 0, NULL, 1),
(24295, 18697, '3', 'University of Madras ', '', 'B.com', '2023', 80.00, '', 1, '2024-04-24 05:25:35', 0, NULL, 0, NULL, 1),
(24296, 18701, '3', 'Thangavelu engineering college', '', 'Be mechanical', '2020', 70.00, '', 1, '2024-04-24 05:29:27', 0, NULL, 0, NULL, 1),
(24297, 18701, '1', 'Cbse', '', '', '2016', 80.00, '', 1, '2024-04-24 05:31:07', 0, NULL, 0, NULL, 1),
(24298, 18700, '2', 'state board', '', '', '2017', 62.00, '', 1, '2024-04-24 05:33:32', 0, NULL, 0, NULL, 1),
(24299, 18702, '3', 'Sathyabama University ', '', 'BBA', '2023', 85.00, '', 1, '2024-04-24 05:47:50', 0, NULL, 0, NULL, 1),
(24300, 18703, '4', 'Bengaluru city university', '', 'Masters', '2023', 70.00, '', 1, '2024-04-24 05:57:27', 0, NULL, 0, NULL, 1),
(24301, 18703, '3', 'Bangalore university', '', 'Bcom', '2022', 72.00, '', 1, '2024-04-24 05:58:05', 0, NULL, 0, NULL, 1),
(24302, 18703, '1', 'Secondary board of karnataka', '', '', '2015', 54.00, '', 1, '2024-04-24 05:59:14', 0, NULL, 0, NULL, 1),
(24303, 18683, '3', 'kamaraj university', '', 'ba english ', '2021', 83.00, '', 1, '2024-04-24 06:17:45', 0, NULL, 0, NULL, 1),
(24304, 18704, '3', 'University of Madras', '', 'BBA', '2019', 50.00, '', 1, '2024-04-24 06:22:46', 0, NULL, 0, NULL, 1),
(24305, 18705, '3', 'srm university', '', 'bsc.hha', '2019', 70.00, '', 1, '2024-04-24 06:25:29', 0, NULL, 0, NULL, 1),
(24306, 18706, '3', 'Madras of University ', '', 'B. Com', '2020', 57.90, '', 1, '2024-04-24 06:25:57', 0, NULL, 0, NULL, 1),
(24307, 18707, '3', 'DR mGR university chennai', '', 'Bsc physics', '2022', 1.00, '', 1, '2024-04-24 06:43:59', 0, NULL, 0, NULL, 1),
(24308, 18708, '1', 'SRKMV Higher secondary school ', '', '', '2020', 65.00, '', 1, '2024-04-24 06:44:12', 0, NULL, 0, NULL, 1),
(24309, 18710, '3', 'B.com (cA)B.c', '', 'B.com', '2022', 75.00, '', 1, '2024-04-24 07:04:54', 0, NULL, 0, NULL, 1),
(24310, 18710, '1', 'BSEAP', '', '', '2017', 57.00, '', 1, '2024-04-24 07:07:13', 0, NULL, 0, NULL, 1),
(24311, 18712, '3', 'Anna university ', '', 'BE', '2014', 72.00, '', 1, '2024-04-24 08:51:49', 0, NULL, 0, NULL, 1),
(24312, 18712, '2', 'State board', '', 'Engineering ', '2010', 68.00, '', 1, '2024-04-24 08:53:24', 0, NULL, 0, NULL, 1),
(24313, 18712, '1', 'State board ', '', '', '2008', 84.00, '', 1, '2024-04-24 08:53:46', 0, NULL, 0, NULL, 1),
(24314, 18713, '3', 'Loyola college ', '', 'B.sc. plant biology and biotechnology', '2023', 5.85, '', 1, '2024-04-24 10:11:36', 0, NULL, 0, NULL, 1),
(24315, 18714, '3', 'utkal university', '', 'bba', '2014', 55.00, '', 1, '2024-04-24 10:40:03', 0, NULL, 0, NULL, 1),
(24316, 18718, '4', 'Bharatiyar University ', '', 'MCA', '2023', 78.00, '', 1, '2024-04-25 05:30:55', 0, NULL, 0, NULL, 1),
(24317, 18717, '3', 'Anna University ', '', 'B.E - Computer Science ', '2023', 82.00, '', 1, '2024-04-25 05:31:58', 0, NULL, 0, NULL, 1),
(24318, 18722, '3', 'Anna University ', '', 'B.E (EEE)', '2020', 6.81, '', 1, '2024-04-25 05:34:27', 0, NULL, 0, NULL, 1),
(24319, 18721, '3', 'Bharathiyar University ', '', 'B. Com', '2018', 59.00, '', 1, '2024-04-25 05:35:25', 0, NULL, 0, NULL, 1),
(24320, 18719, '2', 'Tamilnadu state board', '', 'B com bank management ', '2019', 65.00, '', 1, '2024-04-25 05:37:21', 0, NULL, 0, NULL, 1),
(24321, 18728, '3', 'Anna University', '', 'Mechanical Engineering', '2020', 67.00, '', 1, '2024-04-25 05:51:02', 0, NULL, 0, NULL, 1),
(24322, 18725, '4', 'Bharathiyar University ', '', 'MCA', '2023', 79.00, '', 1, '2024-04-25 05:52:29', 0, NULL, 0, NULL, 1),
(24323, 18727, '3', 'Periyar University ', '', 'B.Sc-Physics', '2023', 7.20, '', 1, '2024-04-25 05:52:34', 0, NULL, 0, NULL, 1),
(24324, 18726, '3', 'Anna University ', '', 'B.tech (IT)', '2020', 8.90, '', 1, '2024-04-25 05:53:31', 0, NULL, 0, NULL, 1),
(24325, 18729, '4', 'Bharatiyar University ', '', 'MCA', '2023', 82.00, '', 1, '2024-04-25 06:02:49', 0, NULL, 0, NULL, 1),
(24326, 18729, '3', 'Bharatiyar University ', '', 'BCA', '2021', 80.00, '', 1, '2024-04-25 06:03:40', 0, NULL, 0, NULL, 1),
(24327, 18730, '1', 'Tamilnadu state board ', '', '', '2014', 95.60, '', 1, '2024-04-25 06:07:04', 0, NULL, 0, NULL, 1),
(24328, 18730, '2', 'Tamilnadu state board ', '', '', '2016', 89.75, '', 1, '2024-04-25 06:07:24', 0, NULL, 0, NULL, 1),
(24329, 18730, '3', 'Anna University ', '', 'B.E', '2020', 75.00, '', 1, '2024-04-25 06:07:47', 0, NULL, 0, NULL, 1),
(24330, 18730, '4', 'Anna University ', '', 'M.E', '2022', 86.60, '', 1, '2024-04-25 06:08:13', 0, NULL, 0, NULL, 1),
(24331, 18733, '3', 'JNTU A', '', '', '2023', 70.00, '', 1, '2024-04-25 06:16:40', 0, NULL, 0, NULL, 1),
(24332, 18732, '3', 'Jntu A', '', 'B.tech', '2023', 70.00, '', 1, '2024-04-25 06:23:58', 0, NULL, 0, NULL, 1),
(24333, 18724, '3', 'Bharathidhasan University ', '', 'Bsc', '2023', 78.00, '', 1, '2024-04-25 06:28:40', 0, NULL, 0, NULL, 1),
(24334, 18731, '3', 'Anna University ', '', 'BE', '2020', 63.00, '', 1, '2024-04-25 06:40:35', 0, NULL, 0, NULL, 1),
(24335, 18734, '1', 'Kamaraj university', '', '', '2018', 82.00, '', 1, '2024-04-25 07:29:15', 0, NULL, 0, NULL, 1),
(24336, 18736, '2', 'Jntuk university ', '', 'Btech', '2023', 60.00, '', 1, '2024-04-25 07:29:16', 1, '2024-04-25 07:30:20', 0, NULL, 1),
(24337, 18735, '1', 'Kamarajar', '', '', '2019', 62.00, '', 1, '2024-04-25 07:33:25', 0, NULL, 0, NULL, 1),
(24338, 18723, '3', 'Madras University ', '', 'B.com', '2022', 88.90, '', 1, '2024-04-25 07:47:34', 0, NULL, 0, NULL, 1),
(24339, 18737, '3', 'VTU', '', 'Batchelor of engineering', '2011', 55.00, '', 1, '2024-04-25 09:55:52', 0, NULL, 0, NULL, 1),
(24340, 18738, '3', 'Yogi Vemana University ', '', 'Bachelor of Commerce ', '2022', 70.00, '', 1, '2024-04-25 12:44:21', 0, NULL, 0, NULL, 1),
(24341, 18741, '3', 'University of Madras ', '', 'B.com Computer Applications ', '2024', 74.00, '', 1, '2024-04-26 04:33:46', 0, NULL, 0, NULL, 1),
(24342, 18742, '4', 'ANNA UNIVERSITY ', '', 'MBA', '2009', 72.00, '', 1, '2024-04-26 05:06:14', 0, NULL, 0, NULL, 1),
(24343, 18742, '3', 'PERIYAR UNIVERSITY ', '', 'B.Com', '2007', 51.00, '', 1, '2024-04-26 05:06:46', 0, NULL, 0, NULL, 1),
(24344, 18740, '3', 'madras university', '', 'ba english', '2023', 53.00, '', 1, '2024-04-26 06:11:57', 0, NULL, 0, NULL, 1),
(24345, 18743, '4', 'bput', '', 'mba', '2022', 78.00, '', 1, '2024-04-26 06:25:55', 0, NULL, 0, NULL, 1),
(24346, 18744, '3', 'Madras University ', '', 'Bcom ( cs)', '2021', 68.00, '', 1, '2024-04-26 06:36:40', 0, NULL, 0, NULL, 1),
(24347, 18746, '3', 'Anna University - Jerusalem College of Engineering ', '', 'B.E - Computer Science and Engineering ', '2024', 76.60, '', 1, '2024-04-26 08:12:36', 1, '2024-04-26 08:14:16', 0, NULL, 1),
(24348, 18746, '2', 'State board - Saurashtra hr sec. School', '', '', '2020', 60.17, '', 1, '2024-04-26 08:15:55', 0, NULL, 0, NULL, 1),
(24349, 18746, '1', 'State Board - The crescent matric hr Sec. School', '', '', '2018', 78.20, '', 1, '2024-04-26 08:18:41', 0, NULL, 0, NULL, 1),
(24350, 18747, '3', 'A.v.c college mayiladuthurai ', '', 'BCA ', '2023', 73.00, '', 1, '2024-04-26 09:41:16', 0, NULL, 0, NULL, 1),
(24351, 18750, '5', 'Anna University ', '', 'Computer science ', '2019', 54.00, '', 1, '2024-04-27 04:56:53', 1, '2024-04-27 04:58:47', 0, NULL, 1),
(24352, 18751, '3', 'VTU', '', 'BE CSE', '2020', 59.99, '', 1, '2024-04-27 05:01:30', 0, NULL, 0, NULL, 1),
(24353, 18752, '4', 'Bharathidasan University ', '', 'M.sc.,', '2022', 92.00, '', 1, '2024-04-27 05:37:48', 0, NULL, 0, NULL, 1),
(24354, 18752, '3', 'Bharathidasan University ', '', 'B.sc.,', '2020', 79.00, '', 1, '2024-04-27 05:39:21', 0, NULL, 0, NULL, 1),
(24355, 18753, '3', 'Kalasalingam Academy ', '', 'B.com CA', '2023', 7.96, '', 1, '2024-04-27 05:43:00', 0, NULL, 0, NULL, 1),
(24356, 18754, '4', 'Bharathidhasan university ', '', 'M.sc.,physics', '2022', 9.56, '', 1, '2024-04-27 05:45:36', 0, NULL, 0, NULL, 1),
(24357, 18755, '4', 'SRM UNIVERSITY ', '', 'B.TECH', '2023', 8.03, '', 1, '2024-04-27 05:50:53', 0, NULL, 0, NULL, 1),
(24358, 18756, '3', 'Anna University', '', 'BE', '2017', 71.00, '', 1, '2024-04-27 06:17:08', 1, '2024-04-27 06:18:04', 0, NULL, 0),
(24359, 18756, '2', 'State board', '', '', '2011', 73.00, '', 1, '2024-04-27 06:17:45', 1, '2024-04-27 06:18:01', 0, NULL, 0),
(24360, 18756, '3', 'Anna University', '', 'BE', '2017', 71.00, '', 1, '2024-04-27 06:18:29', 1, '2024-04-27 06:18:51', 0, NULL, 0),
(24361, 18757, '3', 'Madras University ', '', 'Bsc (computer science)', '2019', 68.00, '', 1, '2024-04-27 06:19:14', 0, NULL, 0, NULL, 1),
(24362, 18756, '1', 'State board', '', '', '2011', 80.00, '', 1, '2024-04-27 06:19:16', 1, '2024-04-27 06:19:42', 0, NULL, 0),
(24363, 18756, '3', 'Anna University', '', 'BE', '2017', 71.00, '', 1, '2024-04-27 06:20:04', 1, '2024-04-27 06:20:39', 0, NULL, 0),
(24364, 18759, '1', 'Banglore University ', '', '', '2023', 75.00, '', 1, '2024-04-27 06:20:08', 0, NULL, 0, NULL, 1),
(24365, 18757, '2', 'State board ', '', '', '2016', 64.00, '', 1, '2024-04-27 06:20:31', 1, '2024-04-27 06:28:36', 0, NULL, 1),
(24366, 18756, '1', 'State board', '', '', '2011', 80.00, '', 1, '2024-04-27 06:20:58', 0, NULL, 0, NULL, 1),
(24367, 18756, '2', 'State board', '', '', '2013', 73.00, '', 1, '2024-04-27 06:21:14', 0, NULL, 0, NULL, 1),
(24368, 18759, '3', 'Bangalore University ', '', 'Bcom', '2023', 75.00, '', 1, '2024-04-27 06:21:15', 0, NULL, 0, NULL, 1),
(24369, 18756, '3', 'Anna University', '', 'BE', '2017', 71.00, '', 1, '2024-04-27 06:21:29', 0, NULL, 0, NULL, 1),
(24370, 18758, '4', 'Thiruvalluvar University ', '', 'MSC', '2017', 79.00, '', 1, '2024-04-27 06:26:13', 0, NULL, 0, NULL, 1),
(24371, 18757, '1', 'State Board ', '', '', '2014', 84.00, '', 1, '2024-04-27 06:28:00', 0, NULL, 0, NULL, 1),
(24372, 18762, '3', 'madras university', '', 'bba ', '2020', 60.00, '', 1, '2024-04-27 06:56:42', 0, NULL, 0, NULL, 1),
(24373, 18761, '1', 'Tamilnadu State Board', '', '', '2016', 86.40, '', 1, '2024-04-27 06:57:45', 0, NULL, 0, NULL, 1),
(24374, 18761, '2', 'Tamilnadu State Board ', '', '', '2018', 69.50, '', 1, '2024-04-27 06:59:07', 0, NULL, 0, NULL, 1),
(24375, 18761, '3', 'M.K. University, Madurai', '', 'B.sc (Mathematics)', '2021', 70.60, '', 1, '2024-04-27 07:00:18', 0, NULL, 0, NULL, 1),
(24376, 18766, '4', 'anna University ', '', 'mca', '2023', 80.00, '', 1, '2024-04-27 09:16:44', 0, NULL, 0, NULL, 1),
(24377, 18766, '3', 'manonmaniam sundarnar university', '', 'bsc computer science', '2021', 78.00, '', 1, '2024-04-27 09:18:13', 0, NULL, 0, NULL, 1),
(24378, 18766, '2', 'state board', '', '', '2018', 85.00, '', 1, '2024-04-27 09:18:42', 1, '2024-04-27 09:19:27', 0, NULL, 1),
(24379, 18766, '1', 'state board', '', '', '2016', 93.00, '', 1, '2024-04-27 09:19:07', 0, NULL, 0, NULL, 1),
(24380, 18767, '4', 'mit pune', '', 'pgdm', '2019', 7.92, '', 1, '2024-04-27 11:20:08', 0, NULL, 0, NULL, 1),
(24381, 18763, '2', 'Board', '', '', '2018', 78.00, '', 1, '2024-04-27 11:37:05', 1, '2024-04-27 11:38:28', 0, NULL, 0),
(24382, 18764, '2', 'Board', '', '', '2023', 51.00, '', 1, '2024-04-27 11:37:22', 0, NULL, 0, NULL, 1),
(24383, 18763, '2', 'Board', '', '', '2018', 78.00, '', 1, '2024-04-27 11:41:45', 0, NULL, 0, NULL, 1),
(24384, 18765, '3', 'RajivGandhi University of health science BANGALORE ', '', 'Bsc nursing ', '2022', 72.00, '', 1, '2024-04-29 03:04:19', 0, NULL, 0, NULL, 1),
(24385, 18768, '4', 'Kongu Engineering College ', '', 'MBA', '2023', 7.50, '', 1, '2024-04-29 04:11:34', 0, NULL, 0, NULL, 1),
(24386, 18715, '3', 'Madras university', '', 'Bsc Computer science', '2022', 78.00, '', 1, '2024-04-29 04:57:46', 0, NULL, 0, NULL, 1),
(24387, 18769, '4', 'anna universit', '', 'BE Mechnical', '2017', 61.00, '', 112, '2024-04-29 10:36:23', 0, NULL, 0, NULL, 1),
(24388, 18771, '3', 'Anna University ', '', 'BE.EEE', '2020', 62.00, '', 1, '2024-04-29 05:14:08', 0, NULL, 0, NULL, 1),
(24389, 18773, '5', 'NCVT', '', 'Diploma ', '2019', 72.00, '', 1, '2024-04-29 05:34:14', 0, NULL, 0, NULL, 1),
(24390, 18775, '5', 'Autonomous ', '', 'BCA', '2021', 87.00, '', 1, '2024-04-29 05:37:38', 0, NULL, 0, NULL, 1),
(24391, 18775, '3', 'Autonomous ', '', 'BCA', '2021', 87.00, '', 1, '2024-04-29 05:38:21', 0, NULL, 0, NULL, 1),
(24392, 18777, '2', 'department of pre universi education', '', '', '2020', 85.00, '', 1, '2024-04-29 05:58:10', 0, NULL, 0, NULL, 1),
(24393, 18778, '5', 'Jansagar institute of parmedical science and education ', '', '', '2023', 67.00, '', 1, '2024-04-29 06:01:49', 0, NULL, 0, NULL, 1),
(24394, 18770, '3', 'mgr university', '', 'btech ece', '2020', 76.00, '', 1, '2024-04-29 06:02:28', 0, NULL, 0, NULL, 1),
(24395, 18772, '4', 'annamalai university', '', 'mca', '2022', 83.00, '', 1, '2024-04-29 06:10:29', 0, NULL, 0, NULL, 1),
(24396, 18779, '3', 'Madras University ', '', 'B.C.A', '2022', 7.80, '', 1, '2024-04-29 06:36:03', 0, NULL, 0, NULL, 1),
(24397, 18780, '3', 'Manonmanium sundarar University ', '', 'Bsc physics ', '2022', 75.00, '', 1, '2024-04-29 07:05:34', 0, NULL, 0, NULL, 1),
(24398, 18748, '2', 'J&k board', '', '', '2017', 80.00, '', 1, '2024-04-29 07:16:45', 0, NULL, 0, NULL, 1),
(24399, 18781, '3', 'Manonmanium sundarar University ', '', 'Bsc physics ', '2022', 75.00, '', 1, '2024-04-29 07:23:12', 0, NULL, 0, NULL, 1),
(24400, 18783, '4', 'Pondicherry University ', '', 'MBA', '2023', 6.20, '', 1, '2024-04-29 07:44:54', 0, NULL, 0, NULL, 1),
(24401, 18782, '4', 'Pondicherry University ', '', 'MBA ', '2023', 7.10, '', 1, '2024-04-29 07:45:25', 0, NULL, 0, NULL, 1),
(24402, 18786, '3', 'hindustan College of Art and Science ', '', 'b.com cs', '2017', 65.00, '', 1, '2024-04-29 07:57:11', 0, NULL, 0, NULL, 1),
(24403, 18787, '3', 'Anna University ', '', 'Bachelors of Engineering in Electrical Electronic ', '2019', 71.00, '', 1, '2024-04-29 07:59:19', 0, NULL, 0, NULL, 1),
(24404, 18787, '2', 'State Board', '', '', '2015', 83.00, '', 1, '2024-04-29 07:59:58', 0, NULL, 0, NULL, 1),
(24405, 18784, '1', 'Karnataka secondary  education  examination Board', '', '', '2010', 36.00, '', 1, '2024-04-29 08:01:19', 0, NULL, 0, NULL, 1),
(24406, 18785, '5', 'banga univ ', '', 'no', '2017', 65.00, '', 1, '2024-04-29 08:30:16', 0, NULL, 0, NULL, 1),
(24407, 18788, '1', 'Andhra pradesh broad of education ', '', '', '2016', 87.00, '', 1, '2024-04-29 09:52:28', 0, NULL, 0, NULL, 1),
(24408, 18788, '3', 'Vivekananda degree college ', '', 'Bsc electronics', '2023', 80.00, '', 1, '2024-04-29 09:53:34', 0, NULL, 0, NULL, 1),
(24409, 18789, '4', 'Annamalai university ', '', 'MA English ', '2024', 66.00, '', 1, '2024-04-29 10:55:31', 0, NULL, 0, NULL, 1),
(24410, 18790, '4', 'jntu', '', 'mba ', '2020', 72.00, '', 1, '2024-04-29 11:53:01', 0, NULL, 0, NULL, 1),
(24411, 18790, '3', 'ru kurnool', '', 'bcom', '2018', 65.00, '', 1, '2024-04-29 11:53:53', 0, NULL, 0, NULL, 1),
(24412, 18791, '3', 'bharathidasan university ', '', 'BCA', '2023', 7.40, '', 1, '2024-04-30 04:17:07', 0, NULL, 0, NULL, 1),
(24413, 18792, '3', 'Anna university', '', 'bE . Mechanical Engineering ', '2023', 6.90, '', 1, '2024-04-30 04:50:34', 0, NULL, 0, NULL, 1),
(24414, 18794, '3', 'PSNA College of engineering and technology ', '', 'BE ', '2021', 7.49, '', 1, '2024-04-30 05:02:22', 0, NULL, 0, NULL, 1),
(24415, 18793, '3', 'Madras University', '', 'B.com', '2024', 65.00, '', 1, '2024-04-30 05:10:57', 0, NULL, 0, NULL, 1),
(24416, 18796, '3', 'Anna University ', '', 'B.E Computer Science Engineering ', '2021', 83.00, '', 1, '2024-04-30 05:11:42', 0, NULL, 0, NULL, 1),
(24417, 18797, '3', 'vels university chennai', '', 'bcom acc and Finance ', '2022', 6.27, '', 1, '2024-04-30 05:12:34', 0, NULL, 0, NULL, 1),
(24418, 18795, '3', 'Bharathiyar University ', '', 'Bsc computer science ', '2023', 75.00, '', 1, '2024-04-30 05:16:39', 0, NULL, 0, NULL, 1),
(24419, 18798, '3', 'Anna University ', '', 'bE', '2021', 75.00, '', 1, '2024-04-30 05:17:36', 0, NULL, 0, NULL, 1),
(24420, 18800, '3', 'Anna University ', '', 'B.Tech', '2016', 66.60, '', 1, '2024-04-30 05:28:30', 0, NULL, 0, NULL, 1),
(24421, 18799, '3', 'Bharathidasan University', '', 'BCA', '2023', 65.00, '', 1, '2024-04-30 05:28:36', 0, NULL, 0, NULL, 1),
(24422, 18804, '4', 'Alagappa University ', '', 'MBA', '2023', 80.00, '', 1, '2024-04-30 05:49:12', 0, NULL, 0, NULL, 1),
(24423, 18803, '5', 'University ', '', 'Mechanical ', '2013', 85.00, '', 1, '2024-04-30 05:53:32', 0, NULL, 0, NULL, 1),
(24424, 18802, '3', 'Madras University ', '', 'B.com', '2020', 60.00, '', 1, '2024-04-30 05:55:54', 0, NULL, 0, NULL, 1),
(24425, 18801, '5', 'Open University ', '', 'Dpp', '2024', 65.00, '', 1, '2024-04-30 05:58:56', 0, NULL, 0, NULL, 1),
(24426, 18807, '3', 'Madras University ', '', 'B.Com', '2022', 7.03, '', 1, '2024-04-30 07:02:47', 0, NULL, 0, NULL, 1),
(24427, 18806, '3', 'Deemed University ', '', 'Bsc Visual communication ', '2024', 7.00, '', 1, '2024-04-30 07:07:56', 0, NULL, 0, NULL, 1),
(24428, 18808, '3', 'anna university', '', 'b.e', '2022', 74.00, '', 1, '2024-04-30 07:10:05', 0, NULL, 0, NULL, 1),
(24429, 18810, '3', 'Bharath University ', '', 'BA ECONOMICS ', '2021', 7.57, '', 1, '2024-04-30 08:04:29', 0, NULL, 0, NULL, 1),
(24430, 18816, '4', 'JNTU', '', 'Btech', '2022', 75.00, '', 1, '2024-04-30 08:20:21', 0, NULL, 0, NULL, 1),
(24431, 18818, '4', 'Bharathidhasan university ', '', 'MBA', '2023', 73.00, '', 1, '2024-04-30 09:17:11', 0, NULL, 0, NULL, 1),
(24432, 18818, '3', 'Bharathidhasan university ', '', 'BBA', '2021', 68.00, '', 1, '2024-04-30 09:17:53', 0, NULL, 0, NULL, 1),
(24433, 18809, '3', 'madras university', '', 'bsc computer science', '2020', 70.00, '', 1, '2024-04-30 09:31:34', 0, NULL, 0, NULL, 1),
(24434, 18812, '3', 'Madras university ', '', 'BBA', '2024', 81.00, '', 1, '2024-04-30 09:32:04', 0, NULL, 0, NULL, 1),
(24435, 18819, '4', 'Bharathidhasan University ', '', 'M.com', '2021', 60.00, '', 1, '2024-04-30 09:32:36', 0, NULL, 0, NULL, 1),
(24436, 18819, '3', 'Bharathidhasan University ', '', 'B.com', '2019', 70.00, '', 1, '2024-04-30 09:33:17', 0, NULL, 0, NULL, 1),
(24437, 18814, '3', 'Madras University ', '', 'B.com ( Accounting and finance)', '2024', 80.00, '', 1, '2024-04-30 09:35:38', 0, NULL, 0, NULL, 1),
(24438, 18813, '3', 'University of Madras ', '', 'B.com accounting and Finance ', '2024', 80.00, '', 1, '2024-04-30 09:35:49', 0, NULL, 0, NULL, 1),
(24439, 18811, '3', 'madras university', '', 'bcom accounts and finance', '2024', 84.00, '', 1, '2024-04-30 09:40:11', 0, NULL, 0, NULL, 1),
(24440, 18821, '3', 'madras university ', '', 'b.com', '2021', 72.00, '', 1, '2024-04-30 01:32:21', 0, NULL, 0, NULL, 1),
(24441, 18823, '3', 'Anna university Regional campus ,Coimbatore', '', 'BE Mechanical Engineering', '2022', 79.00, '', 1, '2024-05-02 04:26:27', 0, NULL, 0, NULL, 1),
(24442, 18826, '3', 'Anna University ', '', 'Bachelor\'s degree ', '2021', 6.78, '', 1, '2024-05-02 04:34:40', 0, NULL, 0, NULL, 1),
(24443, 18824, '1', 'Vallalar Higher Secondary School', '', '', '2016', 95.00, '', 1, '2024-05-02 04:35:54', 0, NULL, 0, NULL, 1),
(24444, 18824, '2', 'Sri Matha Matriculation Higher Secondary School', '', '', '2018', 79.00, '', 1, '2024-05-02 04:36:32', 0, NULL, 0, NULL, 1),
(24445, 18824, '3', 'Sastra Deemed University', '', 'B. Sc', '2021', 82.00, '', 1, '2024-05-02 04:37:21', 0, NULL, 0, NULL, 1),
(24446, 18824, '4', 'Bharathidasan University(GCWK) ', '', 'M. Sc', '2023', 86.00, '', 1, '2024-05-02 04:38:18', 0, NULL, 0, NULL, 1),
(24447, 18827, '3', 'Anna University ', '', 'B.E mechanical ', '2020', 6.57, '', 1, '2024-05-02 04:41:52', 0, NULL, 0, NULL, 1),
(24448, 18830, '4', 'Madras University institute of distance education ', '', 'M Sc IT', '2022', 81.00, '', 1, '2024-05-02 04:42:16', 0, NULL, 0, NULL, 1),
(24449, 18830, '3', 'Madras University mahalakshmi women\'s college of art\'s and science ', '', 'B.sc computer science ', '2019', 89.08, '', 1, '2024-05-02 04:43:32', 0, NULL, 0, NULL, 1),
(24450, 18830, '2', 'State board', '', '', '2016', 88.50, '', 1, '2024-05-02 04:44:05', 0, NULL, 0, NULL, 1),
(24451, 18830, '1', 'State board', '', '', '2014', 95.00, '', 1, '2024-05-02 04:44:47', 0, NULL, 0, NULL, 1),
(24452, 18831, '1', 'State board', '', 'B.E', '2017', 96.00, '', 1, '2024-05-02 04:50:17', 0, NULL, 0, NULL, 1),
(24453, 18831, '2', 'State board ', '', '', '2019', 73.00, '', 1, '2024-05-02 04:51:04', 0, NULL, 0, NULL, 1),
(24454, 18833, '4', 'Anna University ', '', 'ME(PSE)', '2023', 89.00, '', 1, '2024-05-02 04:51:11', 0, NULL, 0, NULL, 1),
(24455, 18831, '3', 'Anna University ', '', 'B.E', '2023', 87.00, '', 1, '2024-05-02 04:51:50', 0, NULL, 0, NULL, 1),
(24456, 18832, '4', 'Anna University ', '', 'MCA', '2023', 8.90, '', 1, '2024-05-02 04:57:22', 0, NULL, 0, NULL, 1),
(24457, 18832, '4', 'Anna University ', '', 'MCA', '2023', 8.90, '', 1, '2024-05-02 04:58:29', 0, NULL, 0, NULL, 1),
(24458, 18825, '3', 'St Joseph\'s College of engineering ', '', 'B-tech chemical', '2023', 88.00, '', 1, '2024-05-02 05:02:44', 0, NULL, 0, NULL, 1),
(24459, 18834, '3', 'Bharathidasan University ', '', 'BSC', '2023', 75.00, '', 1, '2024-05-02 05:12:11', 0, NULL, 0, NULL, 1),
(24460, 18835, '3', 'BCU', '', 'Bcom', '2023', 89.00, '', 1, '2024-05-02 05:12:14', 0, NULL, 0, NULL, 1),
(24461, 18828, '1', 'State Board', '', '', '2013', 88.00, '', 1, '2024-05-02 05:14:18', 1, '2024-05-02 05:15:53', 0, NULL, 1),
(24462, 18828, '2', 'State Board', '', '', '2015', 66.00, '', 1, '2024-05-02 05:16:14', 0, NULL, 0, NULL, 1),
(24463, 18828, '3', 'Anna University', '', 'B.E (Civil)', '2019', 75.00, '', 1, '2024-05-02 05:17:49', 0, NULL, 0, NULL, 1),
(24464, 18829, '3', 'Vijayanagara shree krishna devaraya university, bellari', '', 'BA', '2021', 7.74, '', 1, '2024-05-02 05:22:47', 0, NULL, 0, NULL, 1),
(24465, 18836, '3', 'Anna University ', '', 'B.E-CSE', '2023', 75.80, '', 1, '2024-05-02 05:30:20', 0, NULL, 0, NULL, 1),
(24466, 18836, '2', 'State board', '', '', '2019', 77.30, '', 1, '2024-05-02 05:30:53', 0, NULL, 0, NULL, 1),
(24467, 18836, '1', 'State board', '', '', '2017', 91.40, '', 1, '2024-05-02 05:31:20', 0, NULL, 0, NULL, 1),
(24468, 18838, '3', 'jntua university', '', 'btech', '2022', 82.00, '', 1, '2024-05-02 05:45:59', 0, NULL, 0, NULL, 1),
(24469, 18840, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2022', 76.00, '', 1, '2024-05-02 05:49:38', 0, NULL, 0, NULL, 1),
(24470, 18841, '4', 'srm ist', '', 'master of hospital administration', '2022', 71.50, '', 1, '2024-05-02 06:22:17', 0, NULL, 0, NULL, 1),
(24471, 18842, '2', 'TN Board', '', '', '2011', 87.00, '', 1, '2024-05-02 06:37:51', 0, NULL, 0, NULL, 1),
(24472, 18842, '3', 'MS University ', '', 'BBA', '2014', 70.00, '', 1, '2024-05-02 06:39:16', 0, NULL, 0, NULL, 1),
(24473, 18843, '3', 'Anna university ', '', 'BE', '2023', 7.90, '', 1, '2024-05-02 06:42:12', 0, NULL, 0, NULL, 1),
(24474, 18844, '3', 'Bharath institute of higher education and research ', '', 'Bachelor of technology ', '2023', 84.00, '', 1, '2024-05-02 06:45:21', 0, NULL, 0, NULL, 1),
(24475, 18844, '2', 'Tamil Nadu State board', '', '', '2019', 64.00, '', 1, '2024-05-02 06:46:57', 0, NULL, 0, NULL, 1),
(24476, 18844, '1', 'Tamil Nadu State board ', '', '', '2017', 84.00, '', 1, '2024-05-02 06:49:23', 0, NULL, 0, NULL, 1),
(24477, 18845, '3', 'Dg vaishnav college', '', 'Bsc computer science', '2023', 69.00, '', 1, '2024-05-02 06:49:30', 0, NULL, 0, NULL, 1),
(24478, 18845, '2', 'Tamilnadu state board', '', '', '2020', 76.00, '', 1, '2024-05-02 06:50:33', 0, NULL, 0, NULL, 1),
(24479, 18845, '1', 'Tamilnadu state board', '', '', '2018', 69.00, '', 1, '2024-05-02 06:50:53', 0, NULL, 0, NULL, 1),
(24480, 18846, '4', 'Presidency college', '', 'Master of Computer Application', '2023', 84.80, '', 1, '2024-05-02 06:57:33', 0, NULL, 0, NULL, 1),
(24481, 18847, '4', 'presidency college', '', 'mca', '2023', 64.70, '', 1, '2024-05-02 07:02:11', 0, NULL, 0, NULL, 1),
(24482, 18849, '4', 'Anna university ', '', 'MCA', '2023', 78.00, '', 1, '2024-05-02 07:49:26', 0, NULL, 0, NULL, 1),
(24483, 18849, '3', 'Alagappan University ', '', 'Bsc', '2021', 70.00, '', 1, '2024-05-02 07:50:18', 0, NULL, 0, NULL, 1),
(24484, 18850, '3', 'st.josephs college of engg', '', 'be', '2023', 76.00, '', 1, '2024-05-02 07:58:11', 0, NULL, 0, NULL, 1),
(24485, 18851, '4', 'VIT', '', 'M.Tech', '2022', 68.00, '', 1, '2024-05-02 08:14:21', 0, NULL, 0, NULL, 1),
(24486, 18848, '1', 'Bharat Dass matric higher secondary school', '', '', '2017', 82.00, '', 1, '2024-05-02 08:59:33', 0, NULL, 0, NULL, 1),
(24487, 18848, '3', 'University of madras', '', 'Bsc', '2022', 71.00, '', 1, '2024-05-02 09:00:17', 0, NULL, 0, NULL, 1),
(24488, 18852, '3', 'anna university', '', 'be civil', '2023', 83.00, '', 1, '2024-05-02 09:09:22', 0, NULL, 0, NULL, 1),
(24489, 18854, '3', 'Madras University', '', 'B.A', '2020', 75.00, '', 1, '2024-05-02 09:50:47', 1, '2024-05-02 09:52:06', 0, NULL, 1),
(24490, 18855, '2', 'State board ', '', '', '2014', 72.00, '', 1, '2024-05-02 10:07:46', 0, NULL, 0, NULL, 1),
(24491, 18855, '1', 'State board ', '', '', '2012', 74.80, '', 1, '2024-05-02 10:08:54', 0, NULL, 0, NULL, 1),
(24492, 18857, '4', 'Madras University', '', 'MCA', '2023', 87.00, '', 1, '2024-05-02 11:16:14', 0, NULL, 0, NULL, 1),
(24493, 18857, '3', 'Thiruvalluvar University', '', 'Bsc maths ', '2021', 81.00, '', 1, '2024-05-02 11:16:56', 0, NULL, 0, NULL, 1),
(24494, 18857, '2', 'Sarada matriculation higher secondary school', '', '', '2018', 69.00, '', 1, '2024-05-02 11:17:34', 0, NULL, 0, NULL, 1),
(24495, 18857, '1', 'Sarada matriculation higher secondary school', '', '', '2015', 89.00, '', 1, '2024-05-02 11:18:19', 0, NULL, 0, NULL, 1),
(24496, 18858, '3', 'Karnataka University ', '', 'BCA', '2023', 71.00, '', 1, '2024-05-02 01:23:04', 0, NULL, 0, NULL, 1),
(24497, 18860, '2', 'Matriculation ', '', '', '2017', 62.00, '', 1, '2024-05-03 04:26:57', 0, NULL, 0, NULL, 1),
(24498, 18859, '3', 'Thiruvalluvar Univercity ', '', 'BCA ', '2022', 84.00, '', 1, '2024-05-03 04:43:15', 0, NULL, 0, NULL, 1),
(24499, 18861, '3', 'jntua', '', 'b.tech', '2022', 70.00, '', 1, '2024-05-03 05:02:00', 0, NULL, 0, NULL, 1),
(24500, 18861, '5', 'sbtet', '', 'diploma', '2018', 75.00, '', 1, '2024-05-03 05:02:34', 0, NULL, 0, NULL, 1),
(24501, 18861, '1', 'ap state board', '', '', '2015', 82.00, '', 1, '2024-05-03 05:03:16', 0, NULL, 0, NULL, 1),
(24502, 18862, '3', 'S VUniversity tirupati ', '', 'Mother Theresa degree college palamaner ', '2021', 77.00, '', 1, '2024-05-03 05:06:12', 0, NULL, 0, NULL, 1),
(24503, 18862, '1', 'AP state board', '', '', '2016', 77.00, '', 1, '2024-05-03 05:06:57', 0, NULL, 0, NULL, 1),
(24504, 18863, '3', 'Jawaharlal Nehru technological University ', '', 'B-Tech ', '2023', 75.58, '', 1, '2024-05-03 05:10:11', 0, NULL, 0, NULL, 1),
(24505, 18865, '3', 'Thiruvalluvar University ', '', 'Bsc chemistry ', '2022', 70.00, '', 1, '2024-05-03 05:20:27', 0, NULL, 0, NULL, 1),
(24506, 18867, '3', 'university', '', 'bsc visual communication', '2020', 80.70, '', 1, '2024-05-03 05:45:25', 0, NULL, 0, NULL, 1),
(24507, 18864, '3', 'Anna university ', '', 'B.E MECHANICAL ', '2019', 7.10, '', 1, '2024-05-03 06:23:28', 0, NULL, 0, NULL, 1),
(24508, 6086, '3', 'Bharathi womens college chennai', '', 'B.sc physics', '2021', 75.00, '', 1, '2024-05-03 07:01:13', 0, NULL, 0, NULL, 1),
(24509, 18868, '1', 'S. K University', '', '', '2023', 70.00, '', 1, '2024-05-03 07:15:18', 0, NULL, 0, NULL, 1),
(24510, 18870, '3', 'ALGAPPA UNIVERSITY ', '', 'B.sc Information technology ', '2021', 7.40, '', 1, '2024-05-03 07:21:56', 0, NULL, 0, NULL, 1),
(24511, 18856, '3', 'Annamalai university', '', 'Msc', '2023', 72.00, '', 1, '2024-05-03 07:54:36', 0, NULL, 0, NULL, 1),
(24512, 18869, '3', 'Manonmaniam Sundaranar University', '', 'b.com', '2023', 63.04, '', 1, '2024-05-03 09:31:21', 0, NULL, 0, NULL, 1),
(24513, 18869, '4', 'jain university', '', 'MBA - Information Technology Management', '2025', 0.00, '', 1, '2024-05-03 09:33:24', 1, '2024-05-03 09:33:54', 0, NULL, 1),
(24514, 18871, '3', 'madras university', '', 'bcom', '2020', 65.00, '', 1, '2024-05-03 11:08:09', 0, NULL, 0, NULL, 1),
(24515, 18872, '4', 'Shanbasva University kalbuargi ', '', 'MBA ', '2023', 80.29, '', 1, '2024-05-03 11:26:14', 0, NULL, 0, NULL, 1),
(24516, 18872, '3', 'Gulbarga University ', '', 'B.com', '2020', 60.29, '', 1, '2024-05-03 11:26:49', 0, NULL, 0, NULL, 1),
(24517, 18872, '2', 'Karnataka secondary education board ', '', '', '2015', 58.00, '', 1, '2024-05-03 11:27:27', 0, NULL, 0, NULL, 1),
(24518, 18872, '1', 'Karnataka ', '', '', '2013', 63.84, '', 1, '2024-05-03 11:28:25', 0, NULL, 0, NULL, 1),
(24519, 18873, '4', 'Pondicherry University ', '', 'MBA (Business Administration)', '2023', 70.70, '', 1, '2024-05-03 12:23:51', 0, NULL, 0, NULL, 1),
(24520, 18873, '3', 'Don Bosco arts and science college ', '', 'B.com', '2021', 66.80, '', 1, '2024-05-03 12:24:32', 0, NULL, 0, NULL, 1),
(24521, 18873, '2', 'SRVS National Higher Secondary School ', '', '', '2018', 59.58, '', 1, '2024-05-03 12:25:20', 0, NULL, 0, NULL, 1),
(24522, 18873, '1', 'Andavar High school ', '', '', '2016', 80.60, '', 1, '2024-05-03 12:26:02', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24523, 18874, '4', 'RATHINAM COLLEGE OF ARTS AND SCIENCE BHARATHIYAR UNIVERSITY COIMBATORE.', '', 'MCOM.CA', '2022', 82.00, '', 1, '2024-05-03 12:46:44', 0, NULL, 0, NULL, 1),
(24524, 18875, '4', 'Bharathidasan University Thanjavur ', '', 'MBA', '2023', 7.50, '', 1, '2024-05-03 01:06:42', 0, NULL, 0, NULL, 1),
(24525, 18877, '3', 'Madras University ', '', 'B.sc', '2020', 57.00, '', 1, '2024-05-04 02:15:29', 0, NULL, 0, NULL, 1),
(24526, 18879, '3', 'Jerusalem College of engineering ', '', 'B.E computer science ', '2020', 70.00, '', 1, '2024-05-04 04:06:48', 0, NULL, 0, NULL, 1),
(24527, 18880, '3', 'SENTHAMARAI COLLEGE OF ARTS AND SCIENCE ', '', 'BSC COMPUTER SCIENCE', '2021', 75.00, '', 1, '2024-05-04 04:28:34', 0, NULL, 0, NULL, 1),
(24528, 18880, '2', 'SEVENTH DAY ADVENTIST HR SEC SCHOOL', '', '', '2018', 65.00, '', 1, '2024-05-04 04:30:30', 0, NULL, 0, NULL, 1),
(24529, 18881, '4', 'Annamallai university', '', 'M. Sc', '2010', 70.00, '', 1, '2024-05-04 05:20:49', 0, NULL, 0, NULL, 1),
(24530, 18882, '3', 'Anna University ', '', 'B.E', '2021', 70.00, '', 1, '2024-05-04 05:27:38', 0, NULL, 0, NULL, 1),
(24531, 18856, '4', 'Annanalai university', '', 'Pg', '2023', 70.00, '', 1, '2024-05-04 05:38:43', 0, NULL, 0, NULL, 1),
(24532, 18884, '5', 'M,G,R University ', '', '', '2023', 75.00, '', 1, '2024-05-04 06:21:37', 0, NULL, 0, NULL, 1),
(24533, 18886, '4', 'crescent university', '', 'mca', '2022', 7.10, '', 1, '2024-05-04 06:28:59', 0, NULL, 0, NULL, 1),
(24534, 18887, '3', 'Bangalore University ', '', 'Bcom', '2014', 52.00, '', 1, '2024-05-04 06:32:39', 0, NULL, 0, NULL, 1),
(24535, 18890, '3', 'Madras University ', '', 'BCA', '2023', 77.00, '', 1, '2024-05-04 06:38:26', 0, NULL, 0, NULL, 1),
(24536, 18888, '3', 'Quaid e millath govt college for women ', '', 'Bcom General ', '2024', 85.00, '', 1, '2024-05-04 06:53:51', 0, NULL, 0, NULL, 1),
(24537, 18889, '3', 'Quaid e millath government college for women ', '', 'B.com( general)', '2024', 70.00, '', 1, '2024-05-04 06:55:26', 0, NULL, 0, NULL, 1),
(24538, 18892, '3', 'Dr Sivanthi Aditanar College of Engineering', '', 'BE-ECE', '2022', 75.00, '', 1, '2024-05-04 07:16:02', 0, NULL, 0, NULL, 1),
(24539, 18892, '1', 'St.Mary\'s Boys Higher secondary school ', '', 'BE-ECE', '2016', 82.00, '', 1, '2024-05-04 07:17:37', 0, NULL, 0, NULL, 1),
(24540, 18892, '2', 'St.Mary\'s Boys Higher Secondary School', '', '', '2018', 79.30, '', 1, '2024-05-04 07:17:58', 0, NULL, 0, NULL, 1),
(24541, 18885, '3', 'Anna university ', '', 'Bsc.cs', '2013', 50.00, '', 1, '2024-05-04 07:28:41', 0, NULL, 0, NULL, 1),
(24542, 18885, '1', 'State board ', '', '', '2008', 80.00, '', 1, '2024-05-04 07:37:42', 0, NULL, 0, NULL, 1),
(24543, 18885, '2', 'State board ', '', '', '2010', 70.00, '', 1, '2024-05-04 07:38:13', 0, NULL, 0, NULL, 1),
(24544, 18885, '4', 'Anna university ', '', 'MBA', '2018', 50.00, '', 1, '2024-05-04 07:38:51', 0, NULL, 0, NULL, 1),
(24545, 18893, '3', 'Velammal college of engineering and technology', '', 'BE computer science', '2022', 79.00, '', 1, '2024-05-04 07:42:41', 0, NULL, 0, NULL, 1),
(24546, 18893, '1', 'Velammal school', '', '', '2018', 83.00, '', 1, '2024-05-04 07:43:08', 0, NULL, 0, NULL, 1),
(24547, 18893, '2', 'Velammal', '', '', '2016', 84.00, '', 1, '2024-05-04 07:43:53', 0, NULL, 0, NULL, 1),
(24548, 18894, '3', 'anna university', '', 'be computer science', '2023', 77.00, '', 1, '2024-05-04 09:24:49', 0, NULL, 0, NULL, 1),
(24549, 18895, '3', 'Madras University ', '', 'BBA', '2024', 68.00, '', 1, '2024-05-04 09:26:54', 0, NULL, 0, NULL, 1),
(24550, 18896, '3', 'anna university', '', 'bcom and ba arabic', '2020', 85.00, '', 1, '2024-05-04 10:12:19', 0, NULL, 0, NULL, 1),
(24551, 18897, '2', 'govt gitls higher Secondary hools ', '', '', '2012', 57.00, '', 1, '2024-05-04 11:04:17', 0, NULL, 0, NULL, 1),
(24552, 18898, '3', 'Bangalore University ', '', 'Completed but have some backlogs', '2020', 0.00, '', 1, '2024-05-04 12:11:31', 1, '2024-05-04 12:12:36', 0, NULL, 0),
(24553, 18898, '3', 'Bangalore University ', '', '', '2016', 55.00, '', 1, '2024-05-04 12:12:47', 0, NULL, 0, NULL, 1),
(24554, 18876, '4', 'University of Madras ', '', 'M.Com', '2024', 6.70, '', 1, '2024-05-05 08:40:07', 0, NULL, 0, NULL, 1),
(24555, 18876, '5', 'Tamilnadu Institute of Cooperative Management ', '', 'DCM', '2022', 62.00, '', 1, '2024-05-05 08:41:00', 0, NULL, 0, NULL, 1),
(24556, 18902, '2', 'st. johns', '', '', '2014', 70.00, '', 1, '2024-05-05 12:53:46', 0, NULL, 0, NULL, 1),
(24557, 18904, '3', 'Anna University ', '', 'BE', '2017', 75.10, '', 1, '2024-05-06 04:07:31', 0, NULL, 0, NULL, 1),
(24558, 18907, '3', 'Madras University ', '', 'B.com', '2023', 78.00, '', 1, '2024-05-06 04:52:38', 0, NULL, 0, NULL, 1),
(24559, 18909, '3', 'Manonmaniam sundarnar University ', '', 'BCA', '2023', 8.17, '', 1, '2024-05-06 05:03:07', 0, NULL, 0, NULL, 1),
(24560, 18910, '3', 'Anna university ', '', 'BE CSE', '2023', 71.00, '', 1, '2024-05-06 05:04:46', 0, NULL, 0, NULL, 1),
(24561, 18910, '2', 'State board ', '', '', '2019', 73.00, '', 1, '2024-05-06 05:05:48', 0, NULL, 0, NULL, 1),
(24562, 18910, '1', 'State board', '', '', '2017', 77.00, '', 1, '2024-05-06 05:06:27', 0, NULL, 0, NULL, 1),
(24563, 18908, '3', 'Bharadhidasan University ', '', 'BSC cs ', '2023', 90.00, '', 1, '2024-05-06 05:07:43', 0, NULL, 0, NULL, 1),
(24564, 18906, '3', 'Thiruvalluvar University ', '', 'B.sc computer science ', '2023', 60.00, '', 1, '2024-05-06 05:21:40', 0, NULL, 0, NULL, 1),
(24565, 18911, '4', 'madras university', '', 'b com', '2021', 80.00, '', 1, '2024-05-06 05:23:46', 0, NULL, 0, NULL, 1),
(24566, 18913, '3', 'Anna univercity', '', 'BE Mechanical Engineering', '2023', 7.00, '', 1, '2024-05-06 05:26:50', 0, NULL, 0, NULL, 1),
(24567, 18912, '3', 'Periyar University ', '', 'BCA', '2023', 69.00, '', 1, '2024-05-06 05:27:21', 0, NULL, 0, NULL, 1),
(24568, 18914, '3', 'Madras university ', '', 'BCA', '2023', 80.00, '', 1, '2024-05-06 05:34:17', 0, NULL, 0, NULL, 1),
(24569, 18916, '4', 'University of Madras ', '', 'MCA', '2024', 84.00, '', 1, '2024-05-06 05:34:26', 0, NULL, 0, NULL, 1),
(24570, 18916, '3', 'Justice Basheer Ahmed Sayed College for Women ', '', 'B.COM(ISM)', '2020', 78.00, '', 1, '2024-05-06 05:35:31', 0, NULL, 0, NULL, 1),
(24571, 18917, '3', 'Anna university', '', 'BE', '2023', 80.00, '', 1, '2024-05-06 05:41:46', 0, NULL, 0, NULL, 1),
(24572, 18920, '3', 'Anna University ', '', 'B.E. Agriculture Engineering ', '2023', 8.02, '', 1, '2024-05-06 05:50:50', 0, NULL, 0, NULL, 1),
(24573, 18915, '4', 'Madras university', '', 'MCA', '2022', 89.00, '', 1, '2024-05-06 05:53:23', 0, NULL, 0, NULL, 1),
(24574, 18923, '3', 'bangalore university', '', 'Bachelor\'s ', '2020', 79.00, '', 1, '2024-05-06 05:56:31', 0, NULL, 0, NULL, 1),
(24575, 18901, '3', 'Anna University ', '', 'B.E', '2022', 8.62, '', 1, '2024-05-06 05:56:41', 1, '2024-05-06 05:57:27', 0, NULL, 1),
(24576, 18919, '4', 'Madurai kamarajar University ', '', 'M. Sc', '2023', 69.00, '', 1, '2024-05-06 05:57:29', 0, NULL, 0, NULL, 1),
(24577, 18924, '3', 'Coimbatore Institute of Technology ', '', 'B.e Computer science and engineering ', '2023', 84.00, '', 1, '2024-05-06 05:58:27', 0, NULL, 0, NULL, 1),
(24578, 18922, '5', 'Panimalar Polytechnic college ', '', 'DEEE', '2015', 80.00, '', 1, '2024-05-06 06:04:02', 0, NULL, 0, NULL, 1),
(24579, 18925, '3', 'Anna university', '', 'B.E', '2020', 73.00, '', 1, '2024-05-06 06:05:26', 0, NULL, 0, NULL, 1),
(24580, 18925, '2', 'State board', '', '', '2016', 75.00, '', 1, '2024-05-06 06:05:59', 0, NULL, 0, NULL, 1),
(24581, 18925, '1', 'State board', '', '', '2014', 84.00, '', 1, '2024-05-06 06:06:15', 0, NULL, 0, NULL, 1),
(24582, 18927, '3', 'Anna University', '', 'B.E Mechanical engineering', '2020', 6.45, '', 1, '2024-05-06 06:19:50', 0, NULL, 0, NULL, 1),
(24583, 18926, '3', 'Anna university ', '', 'B.e mechanical ', '2020', 67.00, '', 1, '2024-05-06 06:24:28', 0, NULL, 0, NULL, 1),
(24584, 18667, '4', 'PSNA college of engineering and technology ', '', 'Master of computer Applications ', '2022', 83.00, '', 1, '2024-05-06 06:42:17', 0, NULL, 0, NULL, 1),
(24585, 18905, '3', 'SRM University ', '', 'BBA', '2022', 80.00, '', 1, '2024-05-06 07:09:58', 0, NULL, 0, NULL, 1),
(24586, 18929, '1', 'Kendriya vidyalay island ground', '', '', '2018', 50.00, '', 1, '2024-05-06 07:32:25', 1, '2024-05-06 07:33:17', 0, NULL, 1),
(24587, 18929, '2', 'Hindu higher secondary school', '', '', '2020', 71.00, '', 1, '2024-05-06 07:32:58', 0, NULL, 0, NULL, 1),
(24588, 18929, '3', 'St Thomas Art\'s and science college', '', 'B. C. A', '2023', 68.00, '', 1, '2024-05-06 07:33:46', 0, NULL, 0, NULL, 1),
(24589, 18930, '3', 'Karnataka university', '', 'Diploma NTT', '2022', 76.00, '', 1, '2024-05-06 07:36:57', 0, NULL, 0, NULL, 1),
(24590, 18928, '3', 'Hindustan university', '', 'B.tech', '2018', 68.00, '', 1, '2024-05-06 07:38:01', 0, NULL, 0, NULL, 1),
(24591, 18931, '3', 'Vels University institute of science and technology ', '', 'B.com general ', '2021', 71.00, '', 1, '2024-05-06 08:12:24', 0, NULL, 0, NULL, 1),
(24592, 18932, '4', 'Madras university', '', 'B.com (corporate secretaryship)', '2021', 80.00, '', 1, '2024-05-06 08:53:01', 0, NULL, 0, NULL, 1),
(24593, 18933, '4', 'Madras University ', '', 'BBA', '2022', 75.84, '', 1, '2024-05-06 08:53:02', 0, NULL, 0, NULL, 1),
(24594, 18933, '3', 'Madras University ', '', 'Bba', '2022', 75.84, '', 1, '2024-05-06 08:53:27', 0, NULL, 0, NULL, 1),
(24595, 18934, '4', 'Odisha ', '', 'M.phil', '2018', 60.00, '', 1, '2024-05-06 09:07:22', 0, NULL, 0, NULL, 1),
(24596, 18935, '3', 'Thiruvalluvar university', '', 'Bsw bachelor of social worker', '2021', 65.00, '', 1, '2024-05-06 09:14:27', 0, NULL, 0, NULL, 1),
(24597, 18936, '3', 'Thiruvalluvar university', '', 'Bsw bachelor of social work', '2021', 65.00, '', 1, '2024-05-06 09:27:31', 0, NULL, 0, NULL, 1),
(24598, 18937, '4', 'madras university', '', 'msc', '2022', 75.00, '', 1, '2024-05-06 09:41:24', 0, NULL, 0, NULL, 1),
(24599, 18938, '2', 'belgum', '', '', '2020', 60.00, '', 1, '2024-05-06 09:58:03', 0, NULL, 0, NULL, 1),
(24600, 18878, '3', 'SRM Valliammai Engineering College ', '', 'B.E', '2022', 80.00, '', 1, '2024-05-06 11:41:57', 1, '2024-05-06 11:43:56', 0, NULL, 0),
(24601, 18878, '3', 'Srm Valliammai Engineering College ', '', 'Bachelor of Engineering ', '2022', 80.00, '', 1, '2024-05-06 11:59:39', 0, NULL, 0, NULL, 1),
(24602, 18878, '5', 'Annauniversity ', '', 'Diplomo ', '2019', 70.00, '', 1, '2024-05-06 12:00:16', 0, NULL, 0, NULL, 1),
(24603, 18940, '3', 'SRM Valliammai engineering college ', '', 'Bachelor of engineering ', '2022', 77.00, '', 1, '2024-05-06 12:20:59', 0, NULL, 0, NULL, 1),
(24604, 18940, '2', 'Vidhyaa Vikas matriculation higher secondary school, Namakkal ', '', '', '2018', 70.00, '', 1, '2024-05-06 12:22:02', 0, NULL, 0, NULL, 1),
(24605, 18940, '1', 'Vidhyaa Vikas matriculation higher secondary school, Namakkal ', '', '', '2016', 92.00, '', 1, '2024-05-06 12:22:27', 0, NULL, 0, NULL, 1),
(24606, 18941, '3', 'Nallamuthu Gownder Mahaligam College ', '', 'BCA', '2022', 56.00, '', 1, '2024-05-06 12:32:20', 0, NULL, 0, NULL, 1),
(24607, 18941, '2', 'Thirumathi Rukmaniammal Higher Secondary School ', '', '', '2019', 47.00, '', 1, '2024-05-06 12:32:47', 0, NULL, 0, NULL, 1),
(24608, 18941, '1', 'Government High School ', '', '', '2017', 80.00, '', 1, '2024-05-06 12:33:15', 0, NULL, 0, NULL, 1),
(24609, 18943, '4', 'Bharathidasan university', '', 'M.sc', '2022', 81.00, '', 1, '2024-05-07 03:56:43', 0, NULL, 0, NULL, 1),
(24610, 18944, '3', 'Jntuk ', '', 'B.tech', '2023', 63.00, '', 1, '2024-05-07 03:58:00', 0, NULL, 0, NULL, 1),
(24611, 18945, '4', 'Madras University ', '', 'Bio chemistry ', '2023', 75.00, '', 1, '2024-05-07 04:26:25', 0, NULL, 0, NULL, 1),
(24612, 18945, '3', 'Madras University ', '', 'Biochemistry ', '2021', 69.00, '', 1, '2024-05-07 04:28:19', 0, NULL, 0, NULL, 1),
(24613, 18946, '4', 'Anna University Chennai ', '', 'MCA ', '2023', 86.00, '', 1, '2024-05-07 04:53:04', 0, NULL, 0, NULL, 1),
(24614, 18948, '4', 'Anna University ', '', 'MCA', '2024', 82.00, '', 1, '2024-05-07 04:59:24', 0, NULL, 0, NULL, 1),
(24615, 18949, '4', 'anna university ', '', 'pg', '2024', 72.60, '', 1, '2024-05-07 05:01:33', 0, NULL, 0, NULL, 1),
(24616, 18949, '3', 'kamraj university ', '', 'ug', '2022', 7.60, '', 1, '2024-05-07 05:02:19', 0, NULL, 0, NULL, 1),
(24617, 18947, '1', 'State board ', '', '', '2017', 86.00, '', 1, '2024-05-07 05:03:54', 0, NULL, 0, NULL, 1),
(24618, 18947, '2', 'State board ', '', '', '2019', 61.00, '', 1, '2024-05-07 05:04:32', 0, NULL, 0, NULL, 1),
(24619, 18947, '3', 'Anna University ', '', 'B.E', '2023', 85.00, '', 1, '2024-05-07 05:05:05', 0, NULL, 0, NULL, 1),
(24620, 18952, '3', 'Bharathidhasan University ', '', 'BCA', '2022', 86.00, '', 1, '2024-05-07 05:06:24', 0, NULL, 0, NULL, 1),
(24621, 18956, '4', 'Madras university', '', '', '2024', 75.00, '', 1, '2024-05-07 05:13:37', 0, NULL, 0, NULL, 1),
(24622, 18956, '3', 'Madras university', '', '', '2021', 74.00, '', 1, '2024-05-07 05:14:03', 0, NULL, 0, NULL, 1),
(24623, 18953, '3', 'VTU University ', '', 'B E civil engineering ', '2023', 7.50, '', 1, '2024-05-07 05:16:12', 0, NULL, 0, NULL, 1),
(24624, 18957, '3', 'Muthayammal Engineering College of Anna University ', '', 'BTech ', '2018', 7.90, '', 1, '2024-05-07 05:19:52', 0, NULL, 0, NULL, 1),
(24625, 18958, '3', 'Anna university ', '', 'BE -EEE', '2023', 8.43, '', 1, '2024-05-07 05:21:41', 0, NULL, 0, NULL, 1),
(24626, 18959, '1', 'State Board ', '', '', '2015', 76.00, '', 1, '2024-05-07 05:24:04', 0, NULL, 0, NULL, 1),
(24627, 18954, '3', 'Akshaya Institute of technology Tumkur ', '', 'BE Civil Engineering ', '2023', 78.00, '', 1, '2024-05-07 05:24:11', 0, NULL, 0, NULL, 1),
(24628, 18959, '2', 'State Board ', '', '', '2017', 65.00, '', 1, '2024-05-07 05:24:37', 0, NULL, 0, NULL, 1),
(24629, 18959, '3', 'Anna university ', '', 'B.E', '2021', 76.50, '', 1, '2024-05-07 05:24:56', 0, NULL, 0, NULL, 1),
(24630, 18965, '3', 'Anna University ', '', 'B.E Computer Science and Engineering ', '2023', 80.66, '', 1, '2024-05-07 05:31:05', 0, NULL, 0, NULL, 1),
(24631, 18965, '2', 'State board ', '', '', '2019', 62.00, '', 1, '2024-05-07 05:31:29', 0, NULL, 0, NULL, 1),
(24632, 18963, '3', 'Anna University ', '', 'BE computer science engineering ', '2023', 78.00, '', 1, '2024-05-07 05:31:37', 1, '2024-05-07 05:37:58', 0, NULL, 1),
(24633, 18965, '1', 'State board ', '', '', '2017', 95.00, '', 1, '2024-05-07 05:32:05', 0, NULL, 0, NULL, 1),
(24634, 18963, '2', 'State board of Tamilnadu ', '', '', '2019', 80.00, '', 1, '2024-05-07 05:32:52', 0, NULL, 0, NULL, 1),
(24635, 18963, '1', 'State board of Tamilnadu ', '', '', '2017', 94.00, '', 1, '2024-05-07 05:33:59', 0, NULL, 0, NULL, 1),
(24636, 18962, '3', 'Anna university', '', 'BE - CSE', '2023', 82.55, '', 1, '2024-05-07 05:34:36', 0, NULL, 0, NULL, 1),
(24637, 18962, '2', 'Tamilnadu state board', '', '', '2019', 84.50, '', 1, '2024-05-07 05:35:11', 0, NULL, 0, NULL, 1),
(24638, 18962, '1', 'Tamilnadu state board', '', '', '2017', 97.00, '', 1, '2024-05-07 05:35:47', 0, NULL, 0, NULL, 1),
(24639, 18964, '3', 'Anna University ', '', 'BE cse', '2023', 74.10, '', 1, '2024-05-07 05:39:09', 0, NULL, 0, NULL, 1),
(24640, 18961, '3', 'Sri krishnadevaraya university, anantapur ', '', 'Bachelor of computer science ', '2023', 8.04, '', 1, '2024-05-07 05:39:12', 0, NULL, 0, NULL, 1),
(24641, 18964, '2', 'Valivalam desikar higher secondary school ', '', '', '2019', 54.00, '', 1, '2024-05-07 05:40:04', 0, NULL, 0, NULL, 1),
(24642, 18961, '2', 'State board ', '', '', '2020', 8.09, '', 1, '2024-05-07 05:40:12', 0, NULL, 0, NULL, 1),
(24643, 18964, '1', 'Valivalam desiker higher secondary school ', '', '', '2017', 86.00, '', 1, '2024-05-07 05:40:46', 0, NULL, 0, NULL, 1),
(24644, 18961, '1', 'State board', '', '', '2018', 7.70, '', 1, '2024-05-07 05:40:55', 0, NULL, 0, NULL, 1),
(24645, 18960, '3', 'Sk University ', '', 'Bsc', '2023', 6.00, '', 1, '2024-05-07 05:42:02', 0, NULL, 0, NULL, 1),
(24646, 18967, '3', 'Anna University ', '', 'BE', '2024', 81.00, '', 1, '2024-05-07 05:45:15', 0, NULL, 0, NULL, 1),
(24647, 18966, '4', 'Madras University ', '', 'M.A', '2024', 65.00, '', 1, '2024-05-07 05:57:39', 0, NULL, 0, NULL, 1),
(24648, 18966, '4', 'Madras University ', '', 'M.A', '2024', 65.00, '', 1, '2024-05-07 05:58:44', 0, NULL, 0, NULL, 1),
(24649, 18971, '3', 'Thiruvalluvar ', '', 'BSC Maths ', '2023', 80.00, '', 1, '2024-05-07 06:04:35', 0, NULL, 0, NULL, 1),
(24650, 18968, '3', 'Anna university', '', 'BE', '2022', 7.50, '', 1, '2024-05-07 06:05:56', 0, NULL, 0, NULL, 1),
(24651, 18972, '3', 'Thiruvalluvar University ', '', 'Bsc computer science ', '2023', 75.00, '', 1, '2024-05-07 06:22:34', 0, NULL, 0, NULL, 1),
(24652, 18950, '4', 'Madras University ', '', 'M. A', '2024', 70.00, '', 1, '2024-05-07 06:27:41', 0, NULL, 0, NULL, 1),
(24653, 18970, '4', 'biju patnaik university and technology', '', 'mba', '2022', 80.00, '', 1, '2024-05-07 06:32:34', 0, NULL, 0, NULL, 1),
(24654, 18974, '3', 'Thiruvalluvar University ', '', 'Bsc. Computer Science ', '2023', 78.00, '', 1, '2024-05-07 06:35:18', 0, NULL, 0, NULL, 1),
(24655, 18951, '4', 'Madras University ', '', 'M.A', '2024', 70.00, '', 1, '2024-05-07 06:35:47', 0, NULL, 0, NULL, 1),
(24656, 18975, '4', 'Madras University ', '', 'MA ', '2024', 71.00, '', 1, '2024-05-07 06:36:55', 0, NULL, 0, NULL, 1),
(24657, 18976, '1', 'Tamilnadu state board ', '', '', '2011', 84.00, '', 1, '2024-05-07 06:39:59', 0, NULL, 0, NULL, 1),
(24658, 18976, '2', 'Tamilnadu state board ', '', '', '2013', 65.00, '', 1, '2024-05-07 06:40:33', 0, NULL, 0, NULL, 1),
(24659, 18976, '3', 'SRM university ', '', 'B-Tech', '2019', 60.00, '', 1, '2024-05-07 06:41:19', 0, NULL, 0, NULL, 1),
(24660, 18973, '3', 'Anna University ', '', 'B.tech', '2021', 70.00, '', 1, '2024-05-07 06:47:01', 0, NULL, 0, NULL, 1),
(24661, 17630, '3', 'Anna University ', '', 'B.E', '2022', 74.00, '', 1, '2024-05-07 06:48:59', 0, NULL, 0, NULL, 1),
(24662, 18977, '5', 'University ', '', 'Plastic engineering ', '2020', 80.00, '', 1, '2024-05-07 07:05:15', 0, NULL, 0, NULL, 1),
(24663, 18978, '2', 'Govt Boys Higher secondary school', '', '', '2015', 56.00, '', 1, '2024-05-07 07:07:01', 0, NULL, 0, NULL, 1),
(24664, 18979, '3', 'Alagappa university of karaikudi & Central polytechnic College ', '', 'BCA & DECE', '2018', 54.80, '', 1, '2024-05-07 07:13:24', 0, NULL, 0, NULL, 1),
(24665, 18982, '3', 'Anna University ', '', 'Bachelor\'s of engineering ', '2023', 69.00, '', 1, '2024-05-07 07:23:05', 0, NULL, 0, NULL, 1),
(24666, 18980, '3', 'JNTU ', '', '', '2023', 7.34, '', 1, '2024-05-07 07:30:09', 0, NULL, 0, NULL, 1),
(24667, 18981, '3', 'puducherry university', '', 'btech it', '2022', 75.00, '', 1, '2024-05-07 07:38:43', 0, NULL, 0, NULL, 1),
(24668, 18983, '4', 'Madras University ', '', 'B com', '2019', 72.00, '', 1, '2024-05-07 07:45:22', 0, NULL, 0, NULL, 1),
(24669, 18978, '3', 'anna universitY', '', 'BE', '2019', 64.00, '', 108, '2024-05-07 01:26:56', 0, NULL, 0, NULL, 1),
(24670, 18985, '3', 'University of Madras', '', 'BCA', '2023', 60.00, '', 1, '2024-05-07 08:10:42', 0, NULL, 0, NULL, 1),
(24671, 18986, '4', 'Pondicherry University ', '', 'MBA HR ', '2014', 73.00, '', 1, '2024-05-07 09:39:28', 0, NULL, 0, NULL, 1),
(24672, 18989, '1', 'State board ', '', '', '2016', 83.00, '', 1, '2024-05-07 09:45:15', 1, '2024-05-07 09:46:35', 0, NULL, 0),
(24673, 18988, '3', 'Anna University Regional Campus, Tirunelveli ', '', 'Bachelor of Engineering ', '2023', 83.30, '', 1, '2024-05-07 09:45:20', 1, '2024-05-07 09:46:28', 0, NULL, 1),
(24674, 18988, '2', 'State Board ', '', '', '2019', 81.00, '', 1, '2024-05-07 09:47:26', 0, NULL, 0, NULL, 1),
(24675, 18989, '2', 'State board', '', '', '2018', 70.00, '', 1, '2024-05-07 09:47:44', 0, NULL, 0, NULL, 1),
(24676, 18989, '1', 'State board', '', '', '2016', 83.00, '', 1, '2024-05-07 09:48:14', 0, NULL, 0, NULL, 1),
(24677, 18988, '1', 'State Board ', '', '', '2017', 94.80, '', 1, '2024-05-07 09:48:17', 0, NULL, 0, NULL, 1),
(24678, 18990, '4', 'VTU', '', 'UG', '2018', 60.00, '', 1, '2024-05-07 10:10:08', 0, NULL, 0, NULL, 1),
(24679, 18991, '3', 'vtu', '', '', '2023', 80.00, '', 1, '2024-05-07 10:22:38', 0, NULL, 0, NULL, 1),
(24680, 18987, '4', 'Madras University', '', 'MA Economics', '2023', 77.00, '', 1, '2024-05-07 11:34:16', 0, NULL, 0, NULL, 1),
(24681, 18995, '5', 'Amirta international institute hotel management ', '', 'BA English & communication skills', '2015', 90.00, '', 1, '2024-05-07 02:43:44', 0, NULL, 0, NULL, 1),
(24682, 18996, '3', 'bharathidhasan university', '', 'bsc it', '2020', 83.00, '', 1, '2024-05-08 05:08:59', 0, NULL, 0, NULL, 1),
(24683, 18997, '3', 'sathyabama university of science and technology', '', 'be cse', '2024', 80.00, '', 1, '2024-05-08 05:12:38', 0, NULL, 0, NULL, 1),
(24684, 18999, '5', 'Annamalai University ', '', 'Diploma in electrical and communication engineerin', '2020', 72.00, '', 1, '2024-05-08 05:16:54', 0, NULL, 0, NULL, 1),
(24685, 18998, '4', 'Bharthidasan university', '', 'Msc', '2024', 80.00, '', 1, '2024-05-08 05:17:36', 0, NULL, 0, NULL, 1),
(24686, 19001, '3', 'Anna University ', '', 'BE CSE ', '2022', 7.56, '', 1, '2024-05-08 05:21:43', 0, NULL, 0, NULL, 1),
(24687, 19002, '4', 'Manonmaniam sindaranar university', '', 'M.sc information technology', '2023', 7.40, '', 1, '2024-05-08 05:22:29', 0, NULL, 0, NULL, 1),
(24688, 19000, '3', 'Visveswaraya Technological University ', '', '', '2024', 7.10, '', 1, '2024-05-08 05:23:37', 0, NULL, 0, NULL, 1),
(24689, 19003, '3', 'Anna university', '', 'BE(cse)', '2010', 70.00, '', 1, '2024-05-08 05:33:31', 0, NULL, 0, NULL, 1),
(24690, 19004, '3', 'madras university', '', 'bsc computer science', '2022', 69.00, '', 1, '2024-05-08 05:35:12', 0, NULL, 0, NULL, 1),
(24691, 19006, '1', 'State board ', '', '', '2017', 90.00, '', 1, '2024-05-08 05:44:40', 0, NULL, 0, NULL, 1),
(24692, 19006, '2', 'State board ', '', '', '2019', 90.00, '', 1, '2024-05-08 05:45:05', 0, NULL, 0, NULL, 1),
(24693, 19005, '1', 'cheran matric higher sec ', '', '', '2014', 60.00, '', 1, '2024-05-08 05:45:13', 0, NULL, 0, NULL, 1),
(24694, 19006, '3', 'Dr. Mgr University ', '', 'B. Tech', '2023', 75.00, '', 1, '2024-05-08 05:45:28', 0, NULL, 0, NULL, 1),
(24695, 19005, '2', 'state board', '', '', '2016', 43.00, '', 1, '2024-05-08 05:45:51', 0, NULL, 0, NULL, 1),
(24696, 19005, '3', 'rvs arts and science ', '', ' b sc compute science ', '2020', 65.00, '', 1, '2024-05-08 05:46:54', 0, NULL, 0, NULL, 1),
(24697, 19005, '4', 'rvs arts and science', '', ' msc computer science', '2022', 85.00, '', 1, '2024-05-08 05:47:31', 0, NULL, 0, NULL, 1),
(24698, 19007, '3', 'Madras University ', '', 'BCA', '2023', 76.00, '', 1, '2024-05-08 05:52:05', 0, NULL, 0, NULL, 1),
(24699, 19012, '3', 'Anna University ', '', 'B.E', '2022', 79.10, '', 1, '2024-05-08 05:52:58', 0, NULL, 0, NULL, 1),
(24700, 19008, '4', 'Madras University ', '', 'B com cs', '2018', 75.00, '', 1, '2024-05-08 05:54:32', 0, NULL, 0, NULL, 1),
(24701, 19011, '3', 'madras University ', '', 'bca', '2023', 71.00, '', 1, '2024-05-08 05:55:55', 0, NULL, 0, NULL, 1),
(24702, 19010, '3', 'Anna University ', '', 'B.E', '2023', 77.20, '', 1, '2024-05-08 05:57:44', 0, NULL, 0, NULL, 1),
(24703, 19016, '1', 'State board ', '', '', '2015', 90.00, '', 1, '2024-05-08 05:59:52', 0, NULL, 0, NULL, 1),
(24704, 19015, '1', 'State Board', '', '', '2015', 92.00, '', 1, '2024-05-08 05:59:59', 0, NULL, 0, NULL, 1),
(24705, 19016, '2', 'State board', '', '', '2017', 72.00, '', 1, '2024-05-08 06:00:17', 0, NULL, 0, NULL, 1),
(24706, 19014, '3', 'Madras university ', '', 'BA English ', '2024', 67.00, '', 1, '2024-05-08 06:00:20', 0, NULL, 0, NULL, 1),
(24707, 19015, '2', 'State Board', '', '', '2017', 69.00, '', 1, '2024-05-08 06:00:24', 0, NULL, 0, NULL, 1),
(24708, 19015, '3', 'Bharathiar University ', '', 'B.Sc Computer Science ', '2020', 66.00, '', 1, '2024-05-08 06:00:58', 0, NULL, 0, NULL, 1),
(24709, 19014, '2', 'State board ', '', '', '2021', 87.00, '', 1, '2024-05-08 06:01:04', 0, NULL, 0, NULL, 1),
(24710, 19013, '1', 'state board', '', '', '2014', 94.00, '', 1, '2024-05-08 06:07:02', 0, NULL, 0, NULL, 1),
(24711, 19013, '2', 'state board', '', '', '2016', 89.00, '', 1, '2024-05-08 06:07:32', 0, NULL, 0, NULL, 1),
(24712, 19013, '3', 'anna university', '', 'be', '2020', 70.00, '', 1, '2024-05-08 06:08:19', 0, NULL, 0, NULL, 1),
(24713, 19018, '3', 'srm univer ', '', 'bca', '2020', 6.00, '', 1, '2024-05-08 06:13:24', 0, NULL, 0, NULL, 1),
(24714, 19019, '5', 'Anna University ', '', 'Diploma in mechanical engineering ', '2015', 71.20, '', 1, '2024-05-08 06:26:21', 0, NULL, 0, NULL, 1),
(24715, 19017, '3', 'madras university', '', 'bcom general', '2020', 66.00, '', 1, '2024-05-08 06:30:11', 0, NULL, 0, NULL, 1),
(24716, 19021, '4', 'Anna University ', '', 'B.E', '2021', 70.00, '', 1, '2024-05-08 06:52:48', 0, NULL, 0, NULL, 1),
(24717, 19020, '3', 'anna university ', '', 'b.tech', '2023', 80.00, '', 1, '2024-05-08 07:11:09', 0, NULL, 0, NULL, 1),
(24718, 19024, '3', 'Kpr institute of engineering and technology ', '', 'Bachelor of engineering ', '2024', 77.00, '', 1, '2024-05-08 07:47:25', 0, NULL, 0, NULL, 1),
(24719, 19024, '1', 'State Board - Infant Jesus Matriculation Higher secondary school ', '', '', '2019', 74.00, '', 1, '2024-05-08 07:48:58', 0, NULL, 0, NULL, 1),
(24720, 19024, '2', 'State Board - St Joseph matriculation Higher secondary school ', '', '', '2018', 86.00, '', 1, '2024-05-08 07:49:24', 0, NULL, 0, NULL, 1),
(24721, 19023, '3', 'Anna University ', '', 'B.E Electronic And Communication ', '2024', 78.00, '', 1, '2024-05-08 07:53:53', 0, NULL, 0, NULL, 1),
(24722, 19023, '2', 'State Board', '', '', '2020', 72.00, '', 1, '2024-05-08 08:09:11', 0, NULL, 0, NULL, 1),
(24723, 19023, '1', 'State Board ', '', '', '2018', 90.00, '', 1, '2024-05-08 08:09:43', 0, NULL, 0, NULL, 1),
(24724, 18984, '5', 'AMS COLLEGE ENGINEERING ', '', 'DEEE', '2016', 60.00, '', 1, '2024-05-08 08:44:56', 0, NULL, 0, NULL, 1),
(24725, 18994, '3', 'Guru Nanak college ', '', 'B.A defence and strategie study ', '2023', 78.00, '', 1, '2024-05-08 08:47:32', 0, NULL, 0, NULL, 1),
(24726, 19025, '3', 'Bangalore University ', '', 'BBM', '2015', 60.00, '', 1, '2024-05-08 09:36:29', 0, NULL, 0, NULL, 1),
(24727, 19026, '4', 'Bharathiar university ', '', 'MBA', '2018', 80.00, '', 1, '2024-05-08 10:51:38', 0, NULL, 0, NULL, 1),
(24728, 19026, '3', 'Bharathiar university ', '', 'BBA', '2016', 65.00, '', 1, '2024-05-08 10:52:16', 0, NULL, 0, NULL, 1),
(24729, 19028, '4', 'Banglore University ', '', 'Bcom', '2023', 77.00, '', 1, '2024-05-08 12:22:27', 0, NULL, 0, NULL, 1),
(24730, 19029, '5', 'Govt polytechnic ', '', 'Diploma ', '2023', 75.00, '', 1, '2024-05-08 01:22:17', 0, NULL, 0, NULL, 1),
(24731, 19030, '4', 'University of Madras ', '', 'Master of social work ', '2024', 81.00, '', 1, '2024-05-08 01:32:57', 0, NULL, 0, NULL, 1),
(24732, 19030, '3', 'University of Madras ', '', 'B com computer Applications ', '2022', 79.00, '', 1, '2024-05-08 01:33:32', 0, NULL, 0, NULL, 1),
(24733, 19032, '4', 'Hindustan Institute of Technology and Science ', '', 'MBA', '2023', 89.00, '', 1, '2024-05-09 02:07:46', 0, NULL, 0, NULL, 1),
(24734, 19033, '1', 'Tamilnadu Government ', '', '', '2013', 82.00, '', 1, '2024-05-09 04:31:40', 0, NULL, 0, NULL, 1),
(24735, 19033, '2', 'Tamilnadu Government ', '', '', '2015', 70.00, '', 1, '2024-05-09 04:32:21', 0, NULL, 0, NULL, 1),
(24736, 19033, '3', 'University of Madras ', '', 'BCA ', '2018', 75.00, '', 1, '2024-05-09 04:32:50', 0, NULL, 0, NULL, 1),
(24737, 19034, '3', 'Jerusalem College of engineering ', '', 'B.tech', '2023', 83.80, '', 1, '2024-05-09 04:42:24', 0, NULL, 0, NULL, 1),
(24738, 19034, '2', 'Govt.Hr.Sec.School', '', '', '2019', 70.00, '', 1, '2024-05-09 04:43:01', 0, NULL, 0, NULL, 1),
(24739, 19034, '1', 'Govt.Hr.Sec.School', '', '', '2017', 88.40, '', 1, '2024-05-09 04:43:16', 0, NULL, 0, NULL, 1),
(24740, 19035, '3', 'Prist university ', '', 'B.tech', '2019', 7.20, '', 1, '2024-05-09 04:46:49', 0, NULL, 0, NULL, 1),
(24741, 19036, '3', 'SRM Institute of Science and Technology ', '', 'B.Tech - EEE', '2018', 75.00, '', 1, '2024-05-09 04:51:07', 0, NULL, 0, NULL, 1),
(24742, 19039, '3', 'Kumara Rani Meena muthaiyah College ', '', 'B com', '2023', 70.00, '', 1, '2024-05-09 05:11:14', 0, NULL, 0, NULL, 1),
(24743, 19037, '3', 'Autonomous ', '', 'Bachelor of Engineering ', '2022', 82.00, '', 1, '2024-05-09 05:11:36', 0, NULL, 0, NULL, 1),
(24744, 19039, '2', 'Wesley Higher Secondary School ', '', '', '2020', 60.00, '', 1, '2024-05-09 05:12:09', 0, NULL, 0, NULL, 1),
(24745, 19039, '1', 'immaculate Heart of Mary Matriculation School ', '', '', '2018', 70.00, '', 1, '2024-05-09 05:13:18', 0, NULL, 0, NULL, 1),
(24746, 19038, '3', 'Madras University ', '', 'Bsc', '2019', 64.00, '', 1, '2024-05-09 05:19:54', 0, NULL, 0, NULL, 1),
(24747, 19038, '2', 'Tamilnadu StateBoard', '', '', '2016', 60.00, '', 1, '2024-05-09 05:20:57', 0, NULL, 0, NULL, 1),
(24748, 19038, '1', 'Tamilnadu state Board ', '', '', '2014', 83.00, '', 1, '2024-05-09 05:21:50', 0, NULL, 0, NULL, 1),
(24749, 19040, '3', 'Anna University ', '', 'BE-ECE ', '2024', 75.00, '', 1, '2024-05-09 05:22:30', 0, NULL, 0, NULL, 1),
(24750, 19043, '3', 'Adhiyamaan College of engineering ', '', 'B.Tech-Information Technology ', '2023', 89.00, '', 1, '2024-05-09 05:23:18', 0, NULL, 0, NULL, 1),
(24751, 19040, '1', 'Stateboard of tamilnadu ', '', '', '2018', 87.20, '', 1, '2024-05-09 05:25:31', 0, NULL, 0, NULL, 1),
(24752, 19040, '2', 'Stateboard of tamilnadu ', '', '', '2019', 60.00, '', 1, '2024-05-09 05:25:56', 0, NULL, 0, NULL, 1),
(24753, 19045, '3', 'Anna University ', '', 'BE', '2018', 60.00, '', 1, '2024-05-09 05:26:25', 0, NULL, 0, NULL, 1),
(24754, 19042, '1', 'Tn', '', '', '2016', 60.00, '', 1, '2024-05-09 05:26:53', 0, NULL, 0, NULL, 1),
(24755, 19042, '5', 'Dote', '', '', '2019', 90.00, '', 1, '2024-05-09 05:27:33', 0, NULL, 0, NULL, 1),
(24756, 19042, '3', 'Anna University', '', '', '2022', 70.00, '', 1, '2024-05-09 05:28:16', 0, NULL, 0, NULL, 1),
(24757, 19041, '3', 'Anna University ', '', 'Be', '2023', 80.00, '', 1, '2024-05-09 05:28:55', 0, NULL, 0, NULL, 1),
(24758, 19044, '3', 'KPR Institute of engineering and technology ', '', 'Bachelor\'s of engineering ', '2024', 7.60, '', 1, '2024-05-09 05:30:32', 0, NULL, 0, NULL, 1),
(24759, 19044, '2', 'Infant Jesus Matric Higher secondary school ', '', '', '2020', 81.00, '', 1, '2024-05-09 05:31:34', 1, '2024-05-09 05:34:13', 0, NULL, 1),
(24760, 19046, '1', 'stateboard', '', '', '2015', 95.00, '', 1, '2024-05-09 05:34:07', 0, NULL, 0, NULL, 1),
(24761, 19046, '2', 'state Board', '', '', '2017', 85.00, '', 1, '2024-05-09 05:34:39', 0, NULL, 0, NULL, 1),
(24762, 19044, '1', 'Infant Jesus Matric school ', '', '', '2018', 89.00, '', 1, '2024-05-09 05:34:46', 0, NULL, 0, NULL, 1),
(24763, 19046, '3', 'Anna University', '', 'B.E Mechatronics', '2021', 77.50, '', 1, '2024-05-09 05:35:23', 0, NULL, 0, NULL, 1),
(24764, 19047, '4', 'University of Madras ', '', 'Master of social work (Human resource)', '2024', 70.00, '', 1, '2024-05-09 05:36:52', 0, NULL, 0, NULL, 1),
(24765, 19047, '3', 'DG vaishnav College', '', 'BA sociology ', '2022', 61.00, '', 1, '2024-05-09 05:37:37', 0, NULL, 0, NULL, 1),
(24766, 19047, '2', 'State board ', '', '', '2019', 71.00, '', 1, '2024-05-09 05:38:16', 0, NULL, 0, NULL, 1),
(24767, 19047, '1', 'State board ', '', '', '2017', 91.00, '', 1, '2024-05-09 05:38:34', 0, NULL, 0, NULL, 1),
(24768, 19048, '3', 'madras univer ', '', 'b.com', '2023', 80.00, '', 1, '2024-05-09 05:42:57', 0, NULL, 0, NULL, 1),
(24769, 19050, '1', 'State board', '', '', '2016', 89.00, '', 1, '2024-05-09 05:44:52', 1, '2024-05-09 05:45:16', 0, NULL, 1),
(24770, 19050, '2', 'State board ', '', '', '2018', 59.00, '', 1, '2024-05-09 05:45:45', 0, NULL, 0, NULL, 1),
(24771, 19049, '1', 'State board ', '', 'Pg', '2016', 77.00, '', 1, '2024-05-09 05:46:18', 0, NULL, 0, NULL, 1),
(24772, 19050, '3', 'Periyar University ', '', 'Bsc.Mathematics', '2021', 67.00, '', 1, '2024-05-09 05:46:26', 0, NULL, 0, NULL, 1),
(24773, 19050, '4', 'Anna University ', '', 'MCA', '2023', 80.00, '', 1, '2024-05-09 05:46:43', 0, NULL, 0, NULL, 1),
(24774, 19049, '2', 'State board ', '', '', '2018', 65.00, '', 1, '2024-05-09 05:46:56', 0, NULL, 0, NULL, 1),
(24775, 19049, '3', 'Periyar University ', '', 'Bca', '2021', 78.00, '', 1, '2024-05-09 05:47:37', 0, NULL, 0, NULL, 1),
(24776, 19049, '4', 'Anna University ', '', 'MCA ', '2023', 80.00, '', 1, '2024-05-09 05:48:03', 0, NULL, 0, NULL, 1),
(24777, 19053, '3', 'Bharathidas University ', '', 'Bsc. Computer science ', '2021', 70.00, '', 1, '2024-05-09 05:48:53', 0, NULL, 0, NULL, 1),
(24778, 19051, '1', 'tamilnadu state board', '', '', '2011', 68.00, '', 1, '2024-05-09 05:51:02', 0, NULL, 0, NULL, 1),
(24779, 19052, '3', 'Anna university', '', 'B.E', '2023', 8.53, '', 1, '2024-05-09 05:51:13', 0, NULL, 0, NULL, 1),
(24780, 19052, '2', 'State board', '', '', '2019', 62.00, '', 1, '2024-05-09 05:51:47', 0, NULL, 0, NULL, 1),
(24781, 19051, '2', 'tamilnadu state board', '', '', '2013', 52.00, '', 1, '2024-05-09 05:51:56', 0, NULL, 0, NULL, 1),
(24782, 19052, '1', 'State board', '', '', '2017', 85.00, '', 1, '2024-05-09 05:52:08', 0, NULL, 0, NULL, 1),
(24783, 19051, '5', 'dote', '', 'Diploma in civi engineering ', '2015', 68.00, '', 1, '2024-05-09 05:53:40', 0, NULL, 0, NULL, 1),
(24784, 19051, '3', 'anna university ', '', 'b.e civil ', '2018', 6.40, '', 1, '2024-05-09 05:54:56', 0, NULL, 0, NULL, 1),
(24785, 19054, '3', 'bengaluru central university', '', 'bsc emcs', '2023', 65.00, '', 1, '2024-05-09 05:55:47', 1, '2024-05-09 05:58:46', 0, NULL, 1),
(24786, 19055, '3', 'Anna University ', '', 'B.E-ECE', '2023', 85.00, '', 1, '2024-05-09 05:56:35', 0, NULL, 0, NULL, 1),
(24787, 19054, '1', 'icse', '', '', '2018', 70.00, '', 1, '2024-05-09 05:56:41', 1, '2024-05-09 05:59:00', 0, NULL, 1),
(24788, 19055, '2', 'State Board ', '', '', '2019', 67.00, '', 1, '2024-05-09 05:56:52', 0, NULL, 0, NULL, 1),
(24789, 19055, '1', 'State Board ', '', '', '2017', 92.00, '', 1, '2024-05-09 05:57:12', 0, NULL, 0, NULL, 1),
(24790, 19056, '3', 'Anna University ', '', 'B.E', '2023', 80.00, '', 1, '2024-05-09 05:57:38', 0, NULL, 0, NULL, 1),
(24791, 19056, '2', 'Board', '', '', '2019', 75.00, '', 1, '2024-05-09 05:57:58', 0, NULL, 0, NULL, 1),
(24792, 19056, '1', 'Board', '', '', '2018', 94.00, '', 1, '2024-05-09 05:58:18', 0, NULL, 0, NULL, 1),
(24793, 19054, '2', 'karnataka state board', '', '', '2020', 68.00, '', 1, '2024-05-09 05:59:33', 0, NULL, 0, NULL, 1),
(24794, 19057, '3', 'Anna University ', '', 'Be Mechanical ', '2021', 72.00, '', 1, '2024-05-09 06:13:00', 0, NULL, 0, NULL, 1),
(24795, 19057, '2', 'State board ', '', '', '2017', 82.00, '', 1, '2024-05-09 06:14:09', 0, NULL, 0, NULL, 1),
(24796, 19057, '1', 'State board ', '', '', '2015', 94.00, '', 1, '2024-05-09 06:14:47', 0, NULL, 0, NULL, 1),
(24797, 19060, '4', 'Saveetha School of Management ', '', 'MBA', '2024', 83.00, '', 1, '2024-05-09 06:27:31', 0, NULL, 0, NULL, 1),
(24798, 19061, '4', 'Bharathiar University', '', 'master of computer application', '2023', 82.00, '', 1, '2024-05-09 06:32:45', 0, NULL, 0, NULL, 1),
(24799, 19059, '3', 'Anna University', '', 'BE', '2023', 65.00, '', 1, '2024-05-09 06:33:19', 0, NULL, 0, NULL, 1),
(24800, 19061, '3', 'b', '', 'bachelor of computer', '2021', 78.00, '', 1, '2024-05-09 06:34:09', 0, NULL, 0, NULL, 1),
(24801, 19061, '2', 'state board of examination higher secondary ', '', '', '2018', 61.00, '', 1, '2024-05-09 06:35:27', 0, NULL, 0, NULL, 1),
(24802, 19061, '1', 'SECONDARY SCHOOL LEAVING CERTIFICATEBy', '', '', '2016', 82.00, '', 1, '2024-05-09 06:36:37', 0, NULL, 0, NULL, 1),
(24803, 19063, '3', 'Anna University ', '', 'Bachelor of engineering mechanical ', '2021', 75.30, '', 1, '2024-05-09 06:39:11', 0, NULL, 0, NULL, 1),
(24804, 19062, '1', 'Government Higher Secondary School Vadakadu ', '', '', '2015', 66.80, '', 1, '2024-05-09 06:41:50', 0, NULL, 0, NULL, 1),
(24805, 19062, '2', 'Government Higher secondary school Vadakadu ', '', '', '2017', 58.40, '', 1, '2024-05-09 06:43:31', 0, NULL, 0, NULL, 1),
(24806, 19062, '3', 'Jayaram College of engineering and technology Trichy ', '', 'Bachelor of Electronics and Communication engineer', '2021', 7.49, '', 1, '2024-05-09 06:44:55', 0, NULL, 0, NULL, 1),
(24807, 19058, '3', 'Anna university', '', 'B. E', '2023', 65.00, '', 1, '2024-05-09 07:00:21', 0, NULL, 0, NULL, 1),
(24808, 19069, '3', 'Anna University ', '', 'B.e', '2023', 80.00, '', 1, '2024-05-09 07:01:38', 0, NULL, 0, NULL, 1),
(24809, 19068, '4', 'periyar University ', '', 'Msc', '2022', 82.00, '', 1, '2024-05-09 07:01:52', 0, NULL, 0, NULL, 1),
(24810, 19070, '3', 'Madras University ', '', 'Bsc electronic media ', '2021', 80.00, '', 1, '2024-05-09 07:04:26', 0, NULL, 0, NULL, 1),
(24811, 19064, '3', 'University of madras ', '', 'Bsc information technology ', '2023', 65.00, '', 1, '2024-05-09 07:04:48', 0, NULL, 0, NULL, 1),
(24812, 19065, '3', 'Anna University ', '', 'BE', '2023', 7.80, '', 1, '2024-05-09 07:06:07', 0, NULL, 0, NULL, 1),
(24813, 19074, '3', 'University ', '', 'Bsc (computer science)', '2023', 74.00, '', 1, '2024-05-09 07:06:52', 0, NULL, 0, NULL, 1),
(24814, 19067, '3', 'Justice Basheer Ahmed Syeed college', '', 'BCA', '2023', 75.00, '', 1, '2024-05-09 07:07:10', 0, NULL, 0, NULL, 1),
(24815, 19073, '3', 'Thiruvalluvar university', '', 'B.com computer application', '2023', 85.00, '', 1, '2024-05-09 07:07:16', 0, NULL, 0, NULL, 1),
(24816, 19072, '3', 'Sri ram engineering college ', '', 'B.E', '2022', 7.20, '', 1, '2024-05-09 07:09:05', 0, NULL, 0, NULL, 1),
(24817, 19076, '1', 'Skateboard ', '', '', '2015', 92.00, '', 1, '2024-05-09 07:25:07', 0, NULL, 0, NULL, 1),
(24818, 19078, '3', 'JNTUA', '', 'Electronic and communication of engineering ', '2024', 7.50, '', 1, '2024-05-09 07:38:35', 0, NULL, 0, NULL, 1),
(24819, 19078, '2', 'JNTUA', '', '', '2024', 7.50, '', 1, '2024-05-09 07:39:07', 0, NULL, 0, NULL, 1),
(24820, 19075, '1', 'muruga dhanushkodi girls hr sec school', '', 'mba human resources management', '2016', 88.00, '', 1, '2024-05-09 07:46:48', 1, '2024-05-09 07:54:09', 0, NULL, 0),
(24821, 19075, '2', 'muruga dhanushkodi girls hr sec school', '', 'Mba Human Resources management ', '2018', 68.00, '', 1, '2024-05-09 07:48:24', 1, '2024-05-09 07:54:04', 0, NULL, 0),
(24822, 19071, '3', 'Anna University ', '', 'B.E', '2020', 62.00, '', 1, '2024-05-09 07:51:15', 0, NULL, 0, NULL, 1),
(24823, 19075, '3', 'ethiraj college for womens', '', 'bsc plant biology and plant biotechnology', '2021', 69.00, '', 1, '2024-05-09 07:53:33', 1, '2024-05-09 07:54:20', 0, NULL, 0),
(24824, 19075, '4', 'Madras university', '', 'Mba Human Resources management ', '2023', 76.00, '', 1, '2024-05-09 07:55:32', 0, NULL, 0, NULL, 1),
(24825, 19082, '3', 'anna University ', '', 'bachelor of engineering', '2023', 89.00, '', 1, '2024-05-09 08:45:35', 0, NULL, 0, NULL, 1),
(24826, 19083, '1', 'Tamil Nadu State board University ', '', '', '2016', 95.00, '', 1, '2024-05-09 09:19:57', 0, NULL, 0, NULL, 1),
(24827, 19083, '2', 'Tamilnadu State board University ', '', '', '2018', 68.00, '', 1, '2024-05-09 09:20:17', 0, NULL, 0, NULL, 1),
(24828, 19085, '1', 'State Board', '', '', '2016', 82.00, '', 1, '2024-05-09 09:20:26', 0, NULL, 0, NULL, 1),
(24829, 19085, '2', 'State Board ', '', '', '2018', 79.30, '', 1, '2024-05-09 09:20:45', 0, NULL, 0, NULL, 1),
(24830, 19083, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2022', 77.00, '', 1, '2024-05-09 09:20:54', 0, NULL, 0, NULL, 1),
(24831, 19084, '1', 'State board ', '', '', '2016', 83.00, '', 1, '2024-05-09 09:21:02', 0, NULL, 0, NULL, 1),
(24832, 19085, '3', 'Anna University', '', 'BE-ECE', '2022', 75.00, '', 1, '2024-05-09 09:21:20', 0, NULL, 0, NULL, 1),
(24833, 19084, '2', 'State board ', '', '', '2018', 70.00, '', 1, '2024-05-09 09:21:45', 0, NULL, 0, NULL, 1),
(24834, 19084, '3', 'Anna university ', '', 'B.E', '2022', 79.00, '', 1, '2024-05-09 09:22:12', 0, NULL, 0, NULL, 1),
(24835, 19081, '3', 'mgr university', '', 'b.com', '2023', 60.00, '', 1, '2024-05-09 09:23:13', 0, NULL, 0, NULL, 1),
(24836, 19081, '2', 'state board', '', '', '2020', 55.00, '', 1, '2024-05-09 09:23:41', 0, NULL, 0, NULL, 1),
(24837, 18969, '3', 'Yenepoya University ', '', 'BBA AVIATION AND LOGISTICS ', '2022', 82.00, '', 1, '2024-05-09 09:36:45', 0, NULL, 0, NULL, 1),
(24838, 19087, '1', 'icse', '', '', '2018', 70.00, '', 1, '2024-05-09 09:46:51', 0, NULL, 0, NULL, 1),
(24839, 19087, '2', 'karnataka state board', '', '', '2020', 68.00, '', 1, '2024-05-09 09:47:56', 0, NULL, 0, NULL, 1),
(24840, 19087, '3', 'bengaluru central university', '', 'bsc emcs', '2023', 62.00, '', 1, '2024-05-09 09:48:36', 0, NULL, 0, NULL, 1),
(24841, 19088, '3', 'madras university', '', 'bsc maths', '2024', 70.00, '', 1, '2024-05-09 10:22:52', 0, NULL, 0, NULL, 1),
(24842, 16168, '3', 'madras University ', '', 'bcom', '2016', 65.00, '', 1, '2024-05-09 10:51:44', 0, NULL, 0, NULL, 1),
(24843, 16168, '2', 'Govt higher secandary school ', '', '', '2016', 65.00, '', 1, '2024-05-09 10:52:26', 0, NULL, 0, NULL, 1),
(24844, 16168, '1', 'govt higher secandary school', '', '', '2014', 66.00, '', 1, '2024-05-09 10:53:12', 0, NULL, 0, NULL, 1),
(24845, 19089, '3', 'madras univ ', '', 'bcom', '2018', 65.00, '', 1, '2024-05-09 11:06:51', 0, NULL, 0, NULL, 1),
(24846, 19089, '2', 'govt Higher ', '', '', '2015', 67.00, '', 1, '2024-05-09 11:07:43', 0, NULL, 0, NULL, 1),
(24847, 19089, '1', 'govt higher', '', '', '2013', 68.00, '', 1, '2024-05-09 11:08:11', 0, NULL, 0, NULL, 1),
(24848, 19090, '3', 'madras university', '', 'b.com', '2023', 85.00, '', 1, '2024-05-09 11:08:16', 0, NULL, 0, NULL, 1),
(24849, 19091, '1', '10th', '', '', '2016', 52.00, '', 1, '2024-05-09 11:17:23', 0, NULL, 0, NULL, 1),
(24850, 19091, '5', 'Allagappa University', '', 'Diploma', '2017', 83.00, '', 1, '2024-05-09 11:18:00', 0, NULL, 0, NULL, 1),
(24851, 19091, '3', 'Anna university', '', 'BE', '2020', 84.00, '', 1, '2024-05-09 11:18:34', 0, NULL, 0, NULL, 1),
(24852, 19092, '3', 'Madurai kamarajar University ', '', 'Bcom ca', '2023', 75.00, '', 1, '2024-05-09 12:49:53', 0, NULL, 0, NULL, 1),
(24853, 15388, '3', 'University College of Engineering Thirukkuvalai ', '', 'BE', '2023', 80.00, '', 1, '2024-05-10 03:32:44', 0, NULL, 0, NULL, 1),
(24854, 19094, '3', 'Stateboard ', '', 'BCA ', '2019', 74.00, '', 1, '2024-05-10 04:27:38', 0, NULL, 0, NULL, 1),
(24855, 19095, '3', 'Periyar University', '', 'Bsc. Maths', '2022', 6.71, '', 1, '2024-05-10 04:34:06', 0, NULL, 0, NULL, 1),
(24856, 19095, '2', 'State Board', '', 'Bsc', '2019', 63.67, '', 1, '2024-05-10 04:35:12', 0, NULL, 0, NULL, 1),
(24857, 19095, '1', 'State Board', '', '', '2017', 87.40, '', 1, '2024-05-10 04:35:51', 0, NULL, 0, NULL, 1),
(24858, 19096, '3', 'Anna university ', '', 'B.E( EEE)', '2019', 62.00, '', 1, '2024-05-10 04:45:44', 0, NULL, 0, NULL, 1),
(24859, 19096, '2', 'Government girls higher secondary school ,mettupalayam, trichy ', '', '', '2015', 84.75, '', 1, '2024-05-10 04:46:39', 0, NULL, 0, NULL, 1),
(24860, 19096, '1', 'Government girls higher secondary school, mettupalayam, trichy ', '', '', '2013', 87.00, '', 1, '2024-05-10 04:47:13', 0, NULL, 0, NULL, 1),
(24861, 19098, '3', 'Anna University ', '', 'B.E', '2023', 70.00, '', 1, '2024-05-10 05:07:37', 0, NULL, 0, NULL, 1),
(24862, 19098, '2', 'St.Andrews Matric Hr sec school ', '', '', '2023', 68.00, '', 1, '2024-05-10 05:08:51', 0, NULL, 0, NULL, 1),
(24863, 19098, '1', 'St.Andrews Matric Hr Sec School ', '', '', '2023', 81.80, '', 1, '2024-05-10 05:09:41', 0, NULL, 0, NULL, 1),
(24864, 19097, '4', 'MGR University ', '', 'MCA', '2024', 90.00, '', 1, '2024-05-10 05:10:05', 0, NULL, 0, NULL, 1),
(24865, 19101, '5', 'dote', '', 'diploma', '2015', 61.00, '', 1, '2024-05-10 05:13:46', 0, NULL, 0, NULL, 1),
(24866, 19099, '3', 'Vels University Chennai ', '', 'B.com computer applications ', '2022', 93.00, '', 1, '2024-05-10 05:14:41', 0, NULL, 0, NULL, 1),
(24867, 19105, '3', 'Bharathidasan University ', '', 'BSC', '2022', 72.00, '', 1, '2024-05-10 05:20:54', 0, NULL, 0, NULL, 1),
(24868, 19102, '4', 'BHARATHIDASAN UNIVERSITY, TIRUCHIRAPALLI ', '', 'M.Sc(Computer science)', '2023', 74.61, '', 1, '2024-05-10 05:22:19', 0, NULL, 0, NULL, 1),
(24869, 19105, '2', 'State board ', '', '', '2019', 63.00, '', 1, '2024-05-10 05:22:56', 0, NULL, 0, NULL, 1),
(24870, 19105, '1', 'State board ', '', '', '2017', 89.00, '', 1, '2024-05-10 05:23:27', 0, NULL, 0, NULL, 1),
(24871, 19103, '3', 'mahendra institute of technology', '', 'mechanical engineering', '2021', 7.98, '', 1, '2024-05-10 05:25:46', 0, NULL, 0, NULL, 1),
(24872, 19110, '3', 'Mohammad sadhak', '', 'Bca', '2023', 73.00, '', 1, '2024-05-10 05:36:16', 0, NULL, 0, NULL, 1),
(24873, 19108, '3', 'Hindustan university', '', 'B. Com', '2023', 68.00, '', 1, '2024-05-10 05:36:28', 0, NULL, 0, NULL, 1),
(24874, 19100, '5', 'dote', '', 'Automobile enmgineer', '2021', 89.00, '', 112, '2024-05-10 11:06:39', 0, NULL, 0, NULL, 1),
(24875, 19107, '5', 'Dote', '', 'Mechanical Engineer ', '2015', 79.10, '', 1, '2024-05-10 05:38:12', 0, NULL, 0, NULL, 1),
(24876, 19107, '1', 'State board ', '', '', '2011', 77.60, '', 1, '2024-05-10 05:43:03', 0, NULL, 0, NULL, 1),
(24877, 19107, '2', 'State board ', '', '', '2013', 64.16, '', 1, '2024-05-10 05:43:46', 0, NULL, 0, NULL, 1),
(24878, 19111, '2', 'Velammal Matric Hr Sec School', '', '', '2019', 55.00, '', 1, '2024-05-10 05:53:10', 0, NULL, 0, NULL, 1),
(24879, 19104, '3', 'Aringr anna government art&science', '', 'Bsc.computer science', '2023', 76.20, '', 1, '2024-05-10 05:54:31', 0, NULL, 0, NULL, 1),
(24880, 19109, '3', 'Mohamed sathak college', '', 'Bca', '2023', 65.00, '', 1, '2024-05-10 05:57:25', 0, NULL, 0, NULL, 1),
(24881, 19106, '3', 'Madras University ', '', 'Bachelor degree in computer science ', '2020', 65.00, '', 1, '2024-05-10 05:58:15', 0, NULL, 0, NULL, 1),
(24882, 19112, '4', 'Thiruvalluvar University ', '', 'M Sc chemistry ', '2023', 80.00, '', 1, '2024-05-10 05:58:52', 0, NULL, 0, NULL, 1),
(24883, 19112, '3', 'Thiruvalluvar University ', '', 'B Sc chemistry', '2021', 83.30, '', 1, '2024-05-10 05:59:51', 0, NULL, 0, NULL, 1),
(24884, 19112, '2', 'State Board ', '', '', '2018', 77.58, '', 1, '2024-05-10 06:00:43', 0, NULL, 0, NULL, 1),
(24885, 19112, '1', 'State board ', '', '', '2016', 87.20, '', 1, '2024-05-10 06:01:11', 0, NULL, 0, NULL, 1),
(24886, 19114, '3', 'Paavai Engineering College ', '', 'BE', '2023', 70.00, '', 1, '2024-05-10 06:12:07', 0, NULL, 0, NULL, 1),
(24887, 19113, '4', 'Anna University', '', 'MCA', '2023', 8.67, '', 1, '2024-05-10 06:13:16', 0, NULL, 0, NULL, 1),
(24888, 19117, '3', 'SV University Tirupati ', '', 'BSC ( CS )', '2022', 77.00, '', 1, '2024-05-10 06:16:16', 0, NULL, 0, NULL, 1),
(24889, 19118, '3', 'Government college of Engineering, Thanjavur ', '', 'B.E', '2022', 79.50, '', 1, '2024-05-10 06:18:26', 0, NULL, 0, NULL, 1),
(24890, 19118, '2', 'Ideal hr. Sec. School ', '', '', '2017', 87.00, '', 1, '2024-05-10 06:19:19', 0, NULL, 0, NULL, 1),
(24891, 19118, '1', 'Kannan Matriculation School ', '', '', '2015', 95.00, '', 1, '2024-05-10 06:19:48', 0, NULL, 0, NULL, 1),
(24892, 19121, '4', 'University of Madras ', '', 'M.sc', '2019', 88.00, '', 1, '2024-05-10 06:20:03', 0, NULL, 0, NULL, 1),
(24893, 19115, '1', 'STATE BOARD ', '', '', '2018', 75.00, '', 1, '2024-05-10 06:23:55', 0, NULL, 0, NULL, 1),
(24894, 19115, '2', 'STATE BOARD', '', '', '2020', 57.00, '', 1, '2024-05-10 06:27:02', 0, NULL, 0, NULL, 1),
(24895, 19115, '3', 'THIRUVALLUVAR UNIVERSITY ', '', 'B. Sc Physics ', '2023', 81.00, '', 1, '2024-05-10 06:28:19', 0, NULL, 0, NULL, 1),
(24896, 19122, '4', 'Pondicherry University ', '', 'MCA ', '2022', 75.00, '', 1, '2024-05-10 06:31:18', 0, NULL, 0, NULL, 1),
(24897, 19119, '3', 'Thiruvalluvar university ', '', 'B. Sc physics ', '2023', 84.00, '', 1, '2024-05-10 06:35:15', 0, NULL, 0, NULL, 1),
(24898, 19119, '1', 'State board ', '', '', '2018', 73.00, '', 1, '2024-05-10 06:36:13', 0, NULL, 0, NULL, 1),
(24899, 19119, '2', 'State Board', '', '', '2020', 60.00, '', 1, '2024-05-10 06:37:10', 0, NULL, 0, NULL, 1),
(24900, 19125, '3', 'Devanga Arts college ', '', 'B sc physics ', '2022', 83.00, '', 1, '2024-05-10 06:43:56', 0, NULL, 0, NULL, 1),
(24901, 19123, '3', 'Thiruvalluvar university ', '', 'Bachelor of computer applications ', '2023', 80.00, '', 1, '2024-05-10 06:48:04', 0, NULL, 0, NULL, 1),
(24902, 19123, '2', 'State board ', '', '', '2020', 64.00, '', 1, '2024-05-10 06:48:38', 0, NULL, 0, NULL, 1),
(24903, 19123, '1', 'State board ', '', '', '2018', 76.00, '', 1, '2024-05-10 06:49:00', 0, NULL, 0, NULL, 1),
(24904, 19093, '4', 'Board', '', 'Mba', '2023', 75.00, '', 1, '2024-05-10 06:49:39', 1, '2024-05-10 06:50:54', 0, NULL, 0),
(24905, 19093, '3', 'University', '', 'Bsc Maths', '2023', 83.00, '', 1, '2024-05-10 06:51:22', 1, '2024-05-10 06:52:14', 0, NULL, 1),
(24906, 19093, '4', 'University', '', 'MBA - HR', '2023', 75.00, '', 1, '2024-05-10 06:51:58', 1, '2024-05-10 06:52:26', 0, NULL, 1),
(24907, 19093, '2', 'Board', '', '', '2018', 59.00, '', 1, '2024-05-10 06:52:41', 0, NULL, 0, NULL, 1),
(24908, 19093, '1', 'Board', '', '', '2016', 71.00, '', 1, '2024-05-10 06:53:01', 0, NULL, 0, NULL, 1),
(24909, 19124, '3', 'Thiruvalluvar University ', '', 'Bachelor of Science ', '2021', 75.00, '', 1, '2024-05-10 06:53:21', 0, NULL, 0, NULL, 1),
(24910, 19124, '4', 'Thiruvalluvar University ', '', 'Master of Science ', '2023', 80.00, '', 1, '2024-05-10 06:54:16', 0, NULL, 0, NULL, 1),
(24911, 19124, '2', 'State Board ', '', '', '2018', 60.00, '', 1, '2024-05-10 06:55:37', 0, NULL, 0, NULL, 1),
(24912, 19124, '1', 'State Board ', '', '', '2016', 83.00, '', 1, '2024-05-10 06:56:11', 0, NULL, 0, NULL, 1),
(24913, 19126, '3', 'kongu engineering college', '', 'be', '2023', 85.00, '', 1, '2024-05-10 06:58:52', 0, NULL, 0, NULL, 1),
(24914, 19128, '3', 'Anna University ', '', 'BE ', '2021', 8.10, '', 1, '2024-05-10 07:14:36', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(24915, 19127, '3', 'Stella maris autonomous ', '', 'BCA', '2023', 80.00, '', 1, '2024-05-10 07:23:19', 0, NULL, 0, NULL, 1),
(24916, 19129, '1', 'State board ', '', '', '2017', 90.00, '', 1, '2024-05-10 07:26:12', 0, NULL, 0, NULL, 1),
(24917, 19131, '1', 'Little angels jayarani matriculation school ', '', '', '2016', 95.00, '', 1, '2024-05-10 07:26:15', 0, NULL, 0, NULL, 1),
(24918, 19129, '2', 'State board ', '', '', '2019', 70.00, '', 1, '2024-05-10 07:26:36', 1, '2024-05-10 07:27:50', 0, NULL, 1),
(24919, 19131, '2', 'Sri venkateshwara matric hr sec school ', '', '', '2018', 88.00, '', 1, '2024-05-10 07:27:38', 0, NULL, 0, NULL, 1),
(24920, 19131, '3', 'New prince shri bhavani college of engineering and technology ', '', 'BE CSE', '2022', 85.00, '', 1, '2024-05-10 07:28:05', 0, NULL, 0, NULL, 1),
(24921, 19129, '3', 'Anna University ', '', 'B.E', '2023', 78.00, '', 1, '2024-05-10 07:28:31', 0, NULL, 0, NULL, 1),
(24922, 19130, '3', 'Anna university ', '', 'B.E', '2023', 78.80, '', 1, '2024-05-10 07:28:44', 0, NULL, 0, NULL, 1),
(24923, 19130, '1', 'State board ', '', '', '2017', 95.40, '', 1, '2024-05-10 07:29:21', 0, NULL, 0, NULL, 1),
(24924, 19130, '2', 'State board ', '', '', '2019', 79.00, '', 1, '2024-05-10 07:29:38', 0, NULL, 0, NULL, 1),
(24925, 19133, '4', 'Jawaharlal Nehru University Anantapur ', '', 'B.tech', '2022', 64.00, '', 1, '2024-05-10 07:40:42', 0, NULL, 0, NULL, 1),
(24926, 19132, '3', 'New prince shri bhavani college of engineering and technology ', '', 'B.E computer science and engineering ', '2022', 7.30, '', 1, '2024-05-10 07:42:34', 0, NULL, 0, NULL, 1),
(24927, 19132, '1', 'Government school poonthottam', '', '', '2016', 81.80, '', 1, '2024-05-10 07:43:12', 0, NULL, 0, NULL, 1),
(24928, 19134, '3', 'Patrician College of Arts and Science ', '', 'BCA (Computer Application)', '2022', 76.00, '', 1, '2024-05-10 08:12:22', 0, NULL, 0, NULL, 1),
(24929, 19135, '3', 'Bharathidasan university', '', 'BCA', '2023', 78.00, '', 1, '2024-05-10 09:11:26', 0, NULL, 0, NULL, 1),
(24930, 19136, '3', 'Bharathidasan University ', '', 'BCA', '2022', 70.00, '', 1, '2024-05-10 09:36:05', 0, NULL, 0, NULL, 1),
(24931, 19137, '3', 'Anna University', '', 'B.E', '2022', 77.60, '', 1, '2024-05-10 09:36:58', 0, NULL, 0, NULL, 1),
(24932, 19137, '2', 'State Board of Tamilnadu', '', '', '2018', 86.08, '', 1, '2024-05-10 09:37:26', 0, NULL, 0, NULL, 1),
(24933, 19137, '1', 'State Board of Tamilnadu', '', '', '2016', 96.60, '', 1, '2024-05-10 09:38:05', 0, NULL, 0, NULL, 1),
(24934, 19139, '3', 'Jamal Mohamed College ', '', 'Bsc computer science ', '2023', 79.80, '', 1, '2024-05-10 10:00:58', 0, NULL, 0, NULL, 1),
(24935, 19138, '5', 'Anna University', '', 'Diploma in Civil Engeniering', '2021', 86.00, '', 1, '2024-05-10 10:46:54', 0, NULL, 0, NULL, 1),
(24936, 19138, '2', 'Kerala University', '', '', '2019', 80.00, '', 1, '2024-05-10 10:47:44', 0, NULL, 0, NULL, 1),
(24937, 19138, '1', 'Kerala university', '', '', '2017', 75.00, '', 1, '2024-05-10 10:48:06', 0, NULL, 0, NULL, 1),
(24938, 18921, '3', 'SV University ', '', 'Bcom ', '2020', 86.00, '', 1, '2024-05-10 12:09:04', 0, NULL, 0, NULL, 1),
(24939, 19142, '3', 'Sri Venkateswara College of Engineering, Tirupati.', '', 'B.Tech', '2022', 61.00, '', 1, '2024-05-11 04:11:29', 0, NULL, 0, NULL, 1),
(24940, 19143, '1', 'St.Justin Girls Higher secondary school ', '', '', '2017', 93.00, '', 1, '2024-05-11 04:24:17', 0, NULL, 0, NULL, 1),
(24941, 19143, '2', 'St.Justin Girls Higher secondary school ', '', '', '2019', 79.00, '', 1, '2024-05-11 04:24:43', 0, NULL, 0, NULL, 1),
(24942, 19143, '3', 'E.M.G Yadava women\'s college ,Madurai ', '', 'Bsc Cs', '2022', 83.00, '', 1, '2024-05-11 04:25:14', 0, NULL, 0, NULL, 1),
(24943, 19144, '3', 'madras university', '', 'bcom', '2021', 87.00, '', 1, '2024-05-11 04:35:43', 0, NULL, 0, NULL, 1),
(24944, 19145, '3', 'Madras University ', '', 'BCA', '2023', 78.00, '', 1, '2024-05-11 04:44:03', 0, NULL, 0, NULL, 1),
(24945, 19147, '4', 'SRM IST', '', 'MCA', '2025', 90.00, '', 1, '2024-05-11 04:50:09', 0, NULL, 0, NULL, 1),
(24946, 19147, '3', 'Thiruvalluvar University', '', 'BSc Maths', '2019', 75.00, '', 1, '2024-05-11 04:50:49', 0, NULL, 0, NULL, 1),
(24947, 19146, '4', 'Annamalai University ', '', 'MCA', '2023', 70.00, '', 1, '2024-05-11 04:50:56', 0, NULL, 0, NULL, 1),
(24948, 19146, '3', 'Thiruvalluvar University ', '', 'BCA', '2021', 68.00, '', 1, '2024-05-11 04:51:45', 0, NULL, 0, NULL, 1),
(24949, 19149, '3', 'Sridevi arts and science college ', '', 'BCA', '2023', 78.00, '', 1, '2024-05-11 04:59:05', 0, NULL, 0, NULL, 1),
(24950, 19148, '3', 'Avinashilingam University ', '', 'B.Sc Information Technology ', '2023', 74.00, '', 1, '2024-05-11 05:00:14', 0, NULL, 0, NULL, 1),
(24951, 19151, '2', 'Kingston mr.hr.sec.school', '', '', '2017', 88.00, '', 1, '2024-05-11 05:16:31', 0, NULL, 0, NULL, 1),
(24952, 19151, '1', 'Kingston mr.Hr.Sec.School', '', '', '2019', 63.00, '', 1, '2024-05-11 05:17:35', 0, NULL, 0, NULL, 1),
(24953, 19152, '3', 'Alagappa University ', '', 'Bcom computer applications ', '2023', 7.30, '', 1, '2024-05-11 05:17:53', 0, NULL, 0, NULL, 1),
(24954, 19151, '3', 'Adhiparasakthi Engineering College ', '', 'BE', '2023', 78.00, '', 1, '2024-05-11 05:18:28', 0, NULL, 0, NULL, 1),
(24955, 19150, '1', 'Board', '', '', '2017', 60.00, '', 1, '2024-05-11 05:19:10', 0, NULL, 0, NULL, 1),
(24956, 19150, '2', 'Board', '', '', '2020', 63.00, '', 1, '2024-05-11 05:19:32', 0, NULL, 0, NULL, 1),
(24957, 19153, '4', 'Anna University', '', 'MBA', '2020', 79.00, '', 1, '2024-05-11 05:19:47', 1, '2024-05-11 05:22:58', 0, NULL, 0),
(24958, 19152, '1', 'nSMVPS ', '', '', '2018', 55.00, '', 1, '2024-05-11 05:20:04', 0, NULL, 0, NULL, 1),
(24959, 19150, '3', 'Madras University', '', 'BCA', '2023', 82.00, '', 1, '2024-05-11 05:20:08', 0, NULL, 0, NULL, 1),
(24960, 19152, '2', 'Alagappa matriculation ', '', '', '2020', 56.00, '', 1, '2024-05-11 05:20:41', 0, NULL, 0, NULL, 1),
(24961, 19153, '3', 'Anna University', '', 'B. E', '2018', 70.00, '', 1, '2024-05-11 05:21:25', 0, NULL, 0, NULL, 1),
(24962, 19153, '2', 'State Board', '', '', '2014', 83.00, '', 1, '2024-05-11 05:21:56', 0, NULL, 0, NULL, 1),
(24963, 19153, '1', 'State Board', '', '', '2012', 96.60, '', 1, '2024-05-11 05:22:16', 0, NULL, 0, NULL, 1),
(24964, 19153, '4', 'Anna University', '', 'MBA', '2020', 79.00, '', 1, '2024-05-11 05:23:51', 0, NULL, 0, NULL, 1),
(24965, 19154, '3', 'srm easwari eng co ', '', 'be', '2023', 8.50, '', 1, '2024-05-11 05:29:25', 0, NULL, 0, NULL, 1),
(24966, 19155, '3', 'Thiruvalluvar University ', '', 'BCA', '2018', 60.00, '', 1, '2024-05-11 05:29:47', 0, NULL, 0, NULL, 1),
(24967, 19154, '5', 'pac ramaswami raja polyt college', '', 'dme', '2020', 74.00, '', 1, '2024-05-11 05:30:56', 0, NULL, 0, NULL, 1),
(24968, 19156, '1', 'State board of tamilnadu', '', '', '2014', 95.00, '', 1, '2024-05-11 05:34:31', 0, NULL, 0, NULL, 1),
(24969, 19157, '4', 'Vels University ', '', 'MCA', '2018', 91.00, '', 1, '2024-05-11 05:41:31', 0, NULL, 0, NULL, 1),
(24970, 19157, '1', 'State Board', '', '', '2010', 66.00, '', 1, '2024-05-11 05:42:13', 0, NULL, 0, NULL, 1),
(24971, 19162, '4', 'Vels University ', '', 'Msc cs', '2023', 84.00, '', 1, '2024-05-11 05:42:32', 0, NULL, 0, NULL, 1),
(24972, 19157, '2', 'HSC', '', '', '2012', 54.00, '', 1, '2024-05-11 05:43:04', 0, NULL, 0, NULL, 1),
(24973, 19157, '3', 'Vels University ', '', 'Bsc(csc)', '2015', 81.00, '', 1, '2024-05-11 05:43:47', 0, NULL, 0, NULL, 1),
(24974, 19158, '1', 'State board ', '', 'Bsc physics ', '2014', 58.00, '', 1, '2024-05-11 05:44:21', 1, '2024-05-11 05:45:27', 0, NULL, 0),
(24975, 19163, '4', 'Vels University ', '', 'M.Sc ( Computer Science)', '2023', 82.00, '', 1, '2024-05-11 05:44:35', 0, NULL, 0, NULL, 1),
(24976, 19158, '2', 'State board ', '', '', '2015', 58.00, '', 1, '2024-05-11 05:44:48', 0, NULL, 0, NULL, 1),
(24977, 19159, '1', 'State Board ', '', '', '2014', 83.40, '', 1, '2024-05-11 05:44:58', 0, NULL, 0, NULL, 1),
(24978, 19160, '1', 'State board ', '', 'B.e', '2017', 98.20, '', 1, '2024-05-11 05:45:25', 0, NULL, 0, NULL, 1),
(24979, 19158, '1', 'State board ', '', '', '2013', 58.00, '', 1, '2024-05-11 05:45:46', 0, NULL, 0, NULL, 1),
(24980, 19159, '2', 'State Board ', '', '', '2016', 66.25, '', 1, '2024-05-11 05:45:50', 0, NULL, 0, NULL, 1),
(24981, 19160, '2', 'Stateboard', '', '', '2019', 86.60, '', 1, '2024-05-11 05:45:50', 0, NULL, 0, NULL, 1),
(24982, 19158, '3', 'Sri Venkateshwara arts and science ', '', 'Bsc physics ', '2018', 64.00, '', 1, '2024-05-11 05:46:25', 0, NULL, 0, NULL, 1),
(24983, 19161, '3', 'Jerusalem. College of Engineering', '', 'B. e CSE', '2018', 70.00, '', 1, '2024-05-11 05:46:31', 0, NULL, 0, NULL, 1),
(24984, 19159, '3', 'Mother Teresa University ', '', 'Bsc Compute science ', '2019', 68.40, '', 1, '2024-05-11 05:47:26', 0, NULL, 0, NULL, 1),
(24985, 19160, '3', 'Anna University ', '', 'B.E cse', '2023', 90.10, '', 1, '2024-05-11 05:47:28', 0, NULL, 0, NULL, 1),
(24986, 19158, '4', 'Nehru college of management ', '', 'MCA - Master of Computer Applications ', '2021', 82.00, '', 1, '2024-05-11 05:47:44', 0, NULL, 0, NULL, 1),
(24987, 19169, '3', 'Anna University ', '', 'BE', '2008', 70.00, '', 1, '2024-05-11 05:53:39', 0, NULL, 0, NULL, 1),
(24988, 19170, '4', 'University', '', 'MCA', '2022', 79.00, '', 1, '2024-05-11 05:58:33', 0, NULL, 0, NULL, 1),
(24989, 19170, '3', 'University', '', 'BCA', '2020', 81.50, '', 1, '2024-05-11 05:59:46', 0, NULL, 0, NULL, 1),
(24990, 19170, '2', 'Board', '', '', '2017', 75.00, '', 1, '2024-05-11 06:00:04', 0, NULL, 0, NULL, 1),
(24991, 19170, '1', 'Board', '', '', '2015', 89.60, '', 1, '2024-05-11 06:00:23', 0, NULL, 0, NULL, 1),
(24992, 19168, '3', 'Madras University ', '', 'bsc.cs ', '2024', 71.00, '', 1, '2024-05-11 06:05:06', 0, NULL, 0, NULL, 1),
(24993, 19167, '3', 'Madras university', '', 'B. Sc. Geography', '2024', 71.00, '', 1, '2024-05-11 06:05:37', 0, NULL, 0, NULL, 1),
(24994, 19168, '4', 'Madras University ', '', 'bsc.cs ', '2024', 71.00, '', 1, '2024-05-11 06:05:57', 0, NULL, 0, NULL, 1),
(24995, 19171, '4', 'Jeppiaar University ', '', 'MBA ', '2024', 7.80, '', 1, '2024-05-11 06:06:24', 0, NULL, 0, NULL, 1),
(24996, 19166, '3', 'Madras University ', '', 'B sc geography ', '2024', 75.00, '', 1, '2024-05-11 06:06:32', 1, '2024-05-11 06:09:48', 0, NULL, 1),
(24997, 19172, '4', 'jeppiaar university', '', 'master of Business administration ', '2024', 80.47, '', 1, '2024-05-11 06:07:05', 0, NULL, 0, NULL, 1),
(24998, 19171, '3', 'Thiruvalluvar University ', '', 'B.com(bank management)', '2022', 6.61, '', 1, '2024-05-11 06:07:49', 0, NULL, 0, NULL, 1),
(24999, 19172, '3', 'madras University ', '', 'b.sc computer science', '2022', 74.00, '', 1, '2024-05-11 06:08:41', 0, NULL, 0, NULL, 1),
(25000, 19171, '2', 'State board ', '', '', '2019', 48.00, '', 1, '2024-05-11 06:08:54', 0, NULL, 0, NULL, 1),
(25001, 19172, '2', 'state board', '', '', '2019', 58.67, '', 1, '2024-05-11 06:09:18', 0, NULL, 0, NULL, 1),
(25002, 19171, '1', 'State board ', '', '', '2017', 52.40, '', 1, '2024-05-11 06:09:34', 0, NULL, 0, NULL, 1),
(25003, 19172, '1', 'state board', '', '', '2017', 91.00, '', 1, '2024-05-11 06:10:04', 0, NULL, 0, NULL, 1),
(25004, 19165, '3', 'Madras university', '', 'B. Sc. Geography', '2024', 71.00, '', 1, '2024-05-11 06:11:10', 0, NULL, 0, NULL, 1),
(25005, 19164, '3', 'Madaras University ', '', 'B.sc geography ', '2024', 73.00, '', 1, '2024-05-11 06:11:19', 0, NULL, 0, NULL, 1),
(25006, 19173, '3', 'Anna University ', '', 'B.E.Medical Electronics', '2023', 82.00, '', 1, '2024-05-11 06:14:47', 0, NULL, 0, NULL, 1),
(25007, 19174, '3', 'Anna University ', '', 'BE', '2023', 81.70, '', 1, '2024-05-11 06:15:06', 0, NULL, 0, NULL, 1),
(25008, 19175, '3', 'Thiruvalluvar university ', '', 'Bca', '2022', 78.00, '', 1, '2024-05-11 06:17:51', 0, NULL, 0, NULL, 1),
(25009, 19176, '4', 'Madras University ', '', 'M.sc., Computer science ', '2023', 82.30, '', 1, '2024-05-11 06:26:11', 0, NULL, 0, NULL, 1),
(25010, 18042, '3', 'Thiruvalluvar University ', '', 'Bca', '2022', 78.00, '', 1, '2024-05-11 06:26:39', 0, NULL, 0, NULL, 1),
(25011, 19176, '3', 'Madras University ', '', 'B.sc., computer science ', '2021', 81.90, '', 1, '2024-05-11 06:26:57', 0, NULL, 0, NULL, 1),
(25012, 19177, '4', 'University of Madras ', '', 'Msc', '2023', 77.00, '', 1, '2024-05-11 06:28:16', 0, NULL, 0, NULL, 1),
(25013, 19178, '4', 'Madras University ', '', 'Ancient History and Archeology', '2024', 60.00, '', 1, '2024-05-11 06:29:35', 0, NULL, 0, NULL, 1),
(25014, 19178, '3', 'Ramakrishna mission Vivekananda College', '', 'Historical Studies', '2021', 71.00, '', 1, '2024-05-11 06:30:18', 0, NULL, 0, NULL, 1),
(25015, 19180, '2', 'State board ', '', 'Bachelor of Computer Science and Engineering ', '2016', 86.00, '', 1, '2024-05-11 06:45:28', 1, '2024-05-11 06:47:04', 0, NULL, 0),
(25016, 19180, '2', 'State board ', '', '', '2018', 71.00, '', 1, '2024-05-11 06:46:11', 1, '2024-05-11 06:46:18', 0, NULL, 0),
(25017, 19180, '1', 'State board ', '', '', '2016', 86.00, '', 1, '2024-05-11 06:47:41', 1, '2024-05-11 06:51:34', 0, NULL, 0),
(25018, 19179, '3', 'University ', '', 'BBA', '2023', 84.00, '', 1, '2024-05-11 06:48:29', 0, NULL, 0, NULL, 1),
(25019, 19180, '3', 'Anna University ', '', 'Bachelor of Computer Science and Engineering ', '2022', 82.70, '', 1, '2024-05-11 06:48:39', 1, '2024-05-11 06:52:59', 0, NULL, 0),
(25020, 19180, '3', 'Anna University ', '', 'Bachelor of Computer Science and Engineering ', '2022', 82.70, '', 1, '2024-05-11 06:49:16', 1, '2024-05-11 06:51:19', 0, NULL, 0),
(25021, 19181, '3', 'Annamalai University', '', 'Bsc computer science ', '2020', 70.00, '', 1, '2024-05-11 06:49:20', 0, NULL, 0, NULL, 1),
(25022, 19180, '2', 'State board ', '', '', '2018', 71.00, '', 1, '2024-05-11 06:51:59', 0, NULL, 0, NULL, 1),
(25023, 19180, '1', 'State board ', '', '', '2016', 86.00, '', 1, '2024-05-11 06:52:43', 0, NULL, 0, NULL, 1),
(25024, 19180, '3', 'Anna University ', '', 'Bachelor of Computer Science and Engineering ', '2022', 82.70, '', 1, '2024-05-11 06:53:41', 0, NULL, 0, NULL, 1),
(25025, 19182, '4', 'Annamalai University ', '', 'Msc.software engineering ', '2020', 7.30, '', 1, '2024-05-11 06:54:07', 0, NULL, 0, NULL, 1),
(25026, 19184, '3', 'University college of Engineering Anna University BIT campus Tiruchirapalli ', '', 'B.E', '2023', 8.47, '', 1, '2024-05-11 06:56:28', 0, NULL, 0, NULL, 1),
(25027, 19183, '4', 'Madurai Kamaraj University ', '', 'Computer science ', '2023', 73.00, '', 1, '2024-05-11 06:56:45', 0, NULL, 0, NULL, 1),
(25028, 19189, '3', 'velammal inst of Technology ', '', 'b.e ece', '2023', 8.52, '', 1, '2024-05-11 06:57:35', 0, NULL, 0, NULL, 1),
(25029, 19187, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 81.00, '', 1, '2024-05-11 06:59:30', 0, NULL, 0, NULL, 1),
(25030, 19186, '3', 'Madras University ', '', 'Bachelor of science ', '2023', 76.00, '', 1, '2024-05-11 06:59:33', 0, NULL, 0, NULL, 1),
(25031, 19188, '3', 'Caussanel College Of Arts and Science ', '', 'B.Sc(IT)', '2023', 77.00, '', 1, '2024-05-11 07:01:37', 0, NULL, 0, NULL, 1),
(25032, 19185, '3', 'Maha Rani cluster University ', '', 'B.com', '2022', 88.00, '', 1, '2024-05-11 07:02:25', 0, NULL, 0, NULL, 1),
(25033, 19190, '3', 'Anna university', '', 'BE/CSE', '2023', 83.00, '', 1, '2024-05-11 07:04:31', 0, NULL, 0, NULL, 1),
(25034, 19191, '5', 'Government polytechnic college,sankarapuram', '', 'Diploma mechanical engineering ', '2020', 78.00, '', 1, '2024-05-11 07:21:37', 0, NULL, 0, NULL, 1),
(25035, 19191, '2', 'State board ', '', '', '2018', 80.00, '', 1, '2024-05-11 07:22:08', 0, NULL, 0, NULL, 1),
(25036, 19191, '1', 'State board ', '', '', '2016', 80.00, '', 1, '2024-05-11 07:22:40', 0, NULL, 0, NULL, 1),
(25037, 19192, '3', 'anna university', '', 'mechanical engineering ', '2023', 76.00, '', 1, '2024-05-11 07:52:34', 0, NULL, 0, NULL, 1),
(25038, 19193, '4', 'University of madharas', '', 'MCA ', '2024', 82.00, '', 1, '2024-05-11 08:05:41', 0, NULL, 0, NULL, 1),
(25039, 19193, '3', 'Thiruvallur University ', '', 'B.Sc.Computer Science ', '2022', 83.00, '', 1, '2024-05-11 08:07:13', 0, NULL, 0, NULL, 1),
(25040, 19193, '1', 'State Board ', '', '', '2017', 89.00, '', 1, '2024-05-11 08:10:17', 0, NULL, 0, NULL, 1),
(25041, 19193, '2', 'State Board ', '', '', '2019', 65.00, '', 1, '2024-05-11 08:11:18', 0, NULL, 0, NULL, 1),
(25042, 19194, '4', 'University of madras ', '', 'MCA', '2024', 82.00, '', 1, '2024-05-11 08:18:00', 0, NULL, 0, NULL, 1),
(25043, 19194, '3', 'University of Madras', '', 'BCA', '2020', 76.00, '', 1, '2024-05-11 08:18:30', 0, NULL, 0, NULL, 1),
(25044, 19194, '2', 'State board', '', '', '2017', 72.00, '', 1, '2024-05-11 08:19:37', 0, NULL, 0, NULL, 1),
(25045, 19194, '1', 'State Board ', '', '', '2015', 82.00, '', 1, '2024-05-11 08:20:09', 0, NULL, 0, NULL, 1),
(25046, 19196, '3', 'Anna University ', '', 'B.Tech', '2024', 83.70, '', 1, '2024-05-11 09:24:11', 1, '2024-05-11 09:25:06', 0, NULL, 1),
(25047, 19196, '2', 'State Board', '', '', '2020', 64.30, '', 1, '2024-05-11 09:24:55', 0, NULL, 0, NULL, 1),
(25048, 19196, '1', 'State Board ', '', '', '2018', 71.80, '', 1, '2024-05-11 09:25:22', 0, NULL, 0, NULL, 1),
(25049, 19197, '3', 'Sri Ramanujar Engineering College ', '', 'B.E.Computer and engineering ', '2022', 79.20, '', 1, '2024-05-11 01:04:42', 0, NULL, 0, NULL, 1),
(25050, 19197, '2', 'Government A.D.W Higher Secondary School', '', '', '2018', 58.60, '', 1, '2024-05-11 01:05:42', 0, NULL, 0, NULL, 1),
(25051, 19197, '1', 'Government A.D.W Higher Secondary School ', '', '', '2016', 74.20, '', 1, '2024-05-11 01:06:10', 0, NULL, 0, NULL, 1),
(25052, 19198, '4', 'ST. PETER\'S INSTITUTE OF HIGHER EDUCATION AND RESEARCH', '', 'MBA', '2024', 80.00, '', 1, '2024-05-11 02:01:57', 0, NULL, 0, NULL, 1),
(25053, 19198, '1', 'T.K. VINAYAGAM MATRIC HR SEC SCHOOL ', '', '', '2017', 65.00, '', 1, '2024-05-11 02:06:15', 0, NULL, 0, NULL, 1),
(25054, 19198, '2', 'Vethathiri maharishi Hr Sec school ', '', '', '2019', 58.00, '', 1, '2024-05-11 02:08:53', 0, NULL, 0, NULL, 1),
(25055, 19198, '3', 'Subramaniam arts and science college ', '', 'B.com (cS)', '2022', 68.00, '', 1, '2024-05-11 02:10:17', 0, NULL, 0, NULL, 1),
(25056, 19199, '4', 'Anna university ', '', 'MBA', '2024', 7.08, '', 1, '2024-05-11 04:01:38', 1, '2024-05-11 04:02:23', 0, NULL, 0),
(25057, 19199, '4', 'Anna university ', '', 'M.B.A', '2024', 7.08, '', 1, '2024-05-11 04:02:08', 0, NULL, 0, NULL, 1),
(25058, 19200, '3', 'Srinivasan college of arts and science, Perambalur ', '', 'BBA ', '2024', 84.00, '', 1, '2024-05-12 11:03:11', 0, NULL, 0, NULL, 1),
(25059, 19203, '4', 'JNTUA', '', 'Btech', '2022', 75.00, '', 1, '2024-05-13 05:21:42', 0, NULL, 0, NULL, 1),
(25060, 10674, '3', 'Madurai kamaraj University ', '', 'B.sc ', '2021', 77.00, '', 1, '2024-05-13 05:28:11', 0, NULL, 0, NULL, 1),
(25061, 19204, '4', 'Anna University ', '', 'Mba', '2024', 71.02, '', 1, '2024-05-13 05:30:48', 0, NULL, 0, NULL, 1),
(25062, 19205, '4', 'Madras University ', '', 'MA HRDE', '2022', 60.00, '', 1, '2024-05-13 05:39:32', 0, NULL, 0, NULL, 1),
(25063, 19206, '3', 'Anna university', '', 'BE mechanical', '2022', 3.00, '', 1, '2024-05-13 05:48:50', 0, NULL, 0, NULL, 1),
(25064, 19207, '3', 'Anna University ', '', 'B.Tech ', '2024', 8.00, '', 1, '2024-05-13 06:08:56', 0, NULL, 0, NULL, 1),
(25065, 19208, '4', 'BANGALORE ', '', 'B.com', '2023', 80.00, '', 1, '2024-05-13 06:31:46', 0, NULL, 0, NULL, 1),
(25066, 19209, '3', 'Bharath Institute of Higher Education and Research', '', 'BBA', '2020', 60.00, '', 1, '2024-05-13 07:17:56', 0, NULL, 0, NULL, 1),
(25067, 19211, '3', 'Periyar University ', '', 'BA English ', '2020', 89.00, '', 1, '2024-05-13 07:22:17', 0, NULL, 0, NULL, 1),
(25068, 19212, '3', 'University Of Madras', '', 'B.A.Tamil Literature ', '2021', 6.58, '', 1, '2024-05-13 07:52:14', 0, NULL, 0, NULL, 1),
(25069, 19202, '3', 'Bangalore University ', '', 'BE', '2021', 65.00, '', 1, '2024-05-13 08:17:19', 0, NULL, 0, NULL, 1),
(25070, 19213, '3', 'annamalai University ', '', 'BA', '2023', 60.00, '', 1, '2024-05-13 08:19:23', 0, NULL, 0, NULL, 1),
(25071, 19214, '3', 'Anna University ', '', 'BE ', '2022', 80.00, '', 1, '2024-05-13 11:13:45', 0, NULL, 0, NULL, 1),
(25072, 19201, '3', 'Gitam University ', '', 'Boom ', '2017', 72.00, '', 1, '2024-05-13 12:20:49', 0, NULL, 0, NULL, 1),
(25073, 19215, '3', 'Board ', '', 'B.com', '2023', 64.00, '', 1, '2024-05-13 01:34:21', 0, NULL, 0, NULL, 1),
(25074, 19216, '2', 'V.S Nethaji Matriculation higher Sec School', '', '', '2021', 60.00, '', 1, '2024-05-14 04:31:05', 0, NULL, 0, NULL, 1),
(25075, 19217, '2', 'Model matric higher secondary school', '', '', '2022', 66.00, '', 1, '2024-05-14 04:32:37', 0, NULL, 0, NULL, 1),
(25076, 19218, '3', 'davangere university', '', 'b.com', '2022', 86.70, '', 1, '2024-05-14 04:55:44', 0, NULL, 0, NULL, 1),
(25077, 19219, '3', 'Madras University ', '', 'MA ', '2020', 75.00, '', 1, '2024-05-14 04:58:03', 0, NULL, 0, NULL, 1),
(25078, 19219, '4', 'Madras University ', '', 'MA ', '2020', 75.00, '', 1, '2024-05-14 04:58:52', 0, NULL, 0, NULL, 1),
(25079, 19220, '3', 'srm university', '', 'bcom general', '2022', 7.97, '', 1, '2024-05-14 05:22:24', 0, NULL, 0, NULL, 1),
(25080, 19220, '1', 'csi bain school', '', 'mba finance', '2018', 71.00, '', 1, '2024-05-14 05:25:27', 1, '2024-05-14 05:29:12', 0, NULL, 0),
(25081, 19220, '2', 'csi bain school', '', '', '2019', 57.00, '', 1, '2024-05-14 05:27:41', 1, '2024-05-14 05:29:36', 0, NULL, 1),
(25082, 19220, '1', 'csi bain school', '', '', '2018', 71.00, '', 1, '2024-05-14 05:30:05', 0, NULL, 0, NULL, 1),
(25083, 19221, '3', 'Banglore ', '', 'Bcom ', '2017', 56.00, '', 1, '2024-05-14 06:26:52', 0, NULL, 0, NULL, 1),
(25084, 19227, '3', 'Bharathidas', '', 'Bcom', '2024', 69.00, '', 1, '2024-05-14 06:52:35', 0, NULL, 0, NULL, 1),
(25085, 19222, '4', 'tripura university ', '', 'journalism and masscommunication', '2020', 60.00, '', 1, '2024-05-14 06:54:50', 0, NULL, 0, NULL, 1),
(25086, 19224, '3', 'Bharathidasan', '', 'Bcom', '2024', 71.00, '', 1, '2024-05-14 06:56:16', 0, NULL, 0, NULL, 1),
(25087, 19222, '3', 'kolkata university', '', 'journalism and masscommunication', '2016', 50.00, '', 1, '2024-05-14 06:57:18', 0, NULL, 0, NULL, 1),
(25088, 19228, '3', 'Surya group of Institutions ', '', 'BE(MECHANICAL ENGINEERING)', '2021', 7.71, '', 1, '2024-05-14 07:03:04', 0, NULL, 0, NULL, 1),
(25089, 19225, '3', 'rani channamma University belagavi', '', 'b com', '2023', 76.57, '', 1, '2024-05-14 07:13:53', 0, NULL, 0, NULL, 1),
(25090, 19226, '2', 'Karanataka University dharwad ', '', 'B com ', '2023', 38.68, '', 1, '2024-05-14 07:13:54', 0, NULL, 0, NULL, 1),
(25091, 19229, '3', 'Gulbarga University ', '', 'B.com', '2023', 74.10, '', 1, '2024-05-14 07:25:35', 0, NULL, 0, NULL, 1),
(25092, 19230, '4', 'University of madaras', '', 'Ba history ', '2015', 60.00, '', 1, '2024-05-14 09:34:42', 0, NULL, 0, NULL, 1),
(25093, 19231, '4', 'Thiruvalluvar university ', '', 'Mcom computer application ', '2023', 76.00, '', 1, '2024-05-14 01:31:51', 0, NULL, 0, NULL, 1),
(25094, 19232, '4', 'Anna University ', '', 'MBA', '2023', 72.00, '', 1, '2024-05-14 02:08:37', 0, NULL, 0, NULL, 1),
(25095, 19235, '3', 'Bharathi women\'s college ', '', 'B.A.English', '2024', 70.00, '', 1, '2024-05-14 03:53:21', 0, NULL, 0, NULL, 1),
(25096, 19236, '3', 'Db. Jain college autonomous', '', 'B. Com (general) ', '2022', 75.00, '', 1, '2024-05-15 04:58:38', 0, NULL, 0, NULL, 1),
(25097, 7928, '3', 'Madras university ', '', '', '2018', 69.00, '', 1, '2024-05-15 05:24:24', 0, NULL, 0, NULL, 1),
(25098, 19239, '2', 'TN State', '', '', '2016', 75.00, '', 1, '2024-05-15 05:29:02', 0, NULL, 0, NULL, 1),
(25099, 19238, '3', 'guru shree shanti jain vidhyalaya', '', 'b.com cs', '2017', 78.00, '', 1, '2024-05-15 05:43:50', 0, NULL, 0, NULL, 1),
(25100, 19237, '3', 'Anna University ', '', 'B.E', '2023', 60.00, '', 1, '2024-05-15 05:53:47', 0, NULL, 0, NULL, 1),
(25101, 19240, '3', 'justice basheer ahmed sayeed college for women', '', 'bba', '2024', 73.00, '', 1, '2024-05-15 06:20:36', 0, NULL, 0, NULL, 1),
(25102, 19241, '3', 'Anna university', '', 'B. Tech/IT', '2023', 75.00, '', 1, '2024-05-15 06:32:00', 0, NULL, 0, NULL, 1),
(25103, 19242, '4', 'Vtu', '', 'MBA', '2023', 8.70, '', 1, '2024-05-15 06:57:21', 0, NULL, 0, NULL, 1),
(25104, 19243, '4', 'VTU belagavi', '', 'MBA', '2023', 8.60, '', 1, '2024-05-15 07:01:49', 0, NULL, 0, NULL, 1),
(25105, 19244, '4', 'Jain university ', '', 'MBA', '2023', 80.00, '', 1, '2024-05-15 07:14:30', 0, NULL, 0, NULL, 1),
(25106, 19244, '4', 'Jain university ', '', 'MBA', '2023', 80.00, '', 1, '2024-05-15 07:14:32', 1, '2024-05-15 07:14:38', 0, NULL, 0),
(25107, 19234, '3', 'justice basheer ahmed saareed womens college', '', 'bBA', '2024', 75.00, '', 104, '2024-05-15 01:05:57', 0, NULL, 0, NULL, 1),
(25108, 19247, '5', 'Dote', '', 'Diploma ', '2024', 51.00, '', 1, '2024-05-15 09:17:38', 0, NULL, 0, NULL, 1),
(25109, 19245, '5', 'Dote', '', 'Diploma', '2024', 59.00, '', 1, '2024-05-15 09:23:06', 0, NULL, 0, NULL, 1),
(25110, 19248, '5', 'Dote', '', 'Diploma civil engineering ', '2024', 63.33, '', 1, '2024-05-15 09:23:18', 0, NULL, 0, NULL, 1),
(25111, 19246, '5', 'Dote', '', 'Diploma civil Engineering', '2024', 53.88, '', 1, '2024-05-15 09:24:04', 0, NULL, 0, NULL, 1),
(25112, 19250, '3', 'srm university', '', 'b.com', '2022', 70.00, '', 1, '2024-05-15 01:21:03', 0, NULL, 0, NULL, 1),
(25113, 19251, '3', 'Arivu paramedical science ', '', 'Health Sciences ', '2021', 70.00, '', 1, '2024-05-16 03:58:54', 0, NULL, 0, NULL, 1),
(25114, 19251, '2', 'State board ', '', '', '2018', 52.00, '', 1, '2024-05-16 04:38:53', 0, NULL, 0, NULL, 1),
(25115, 19252, '4', 'jntu hyderabad', '', 'mba', '2021', 80.00, '', 1, '2024-05-16 05:25:27', 0, NULL, 0, NULL, 1),
(25116, 19252, '3', 'nagaland university', '', 'bba', '2019', 65.00, '', 1, '2024-05-16 05:26:31', 0, NULL, 0, NULL, 1),
(25117, 19253, '3', 'Anna university ', '', 'BE CSE', '2024', 80.00, '', 1, '2024-05-16 05:40:38', 0, NULL, 0, NULL, 1),
(25118, 19254, '3', 'Jawaharlal Nehru technological University ', '', 'Btech', '2024', 84.00, '', 1, '2024-05-16 06:35:00', 0, NULL, 0, NULL, 1),
(25119, 19254, '5', 'SV University ', '', 'Diploma in Ece', '2021', 82.00, '', 1, '2024-05-16 06:35:52', 0, NULL, 0, NULL, 1),
(25120, 19256, '1', 'MGR', '', '', '2012', 86.00, '', 1, '2024-05-16 10:41:32', 0, NULL, 0, NULL, 1),
(25121, 19257, '1', 'State', '', 'BA', '2018', 83.00, '', 1, '2024-05-16 10:54:37', 0, NULL, 0, NULL, 1),
(25122, 19257, '3', 'Banglore university', '', 'BA', '2019', 60.00, '', 1, '2024-05-16 10:55:06', 0, NULL, 0, NULL, 1),
(25123, 19258, '3', 'Annamalai University ', '', 'B.com', '2024', 50.00, '', 1, '2024-05-16 10:59:43', 0, NULL, 0, NULL, 1),
(25124, 19259, '3', 'Annamalai university', '', 'B.sc computer', '2021', 50.00, '', 1, '2024-05-16 11:00:04', 0, NULL, 0, NULL, 1),
(25125, 19255, '3', 'calicut university', '', 'bcom', '2023', 56.00, '', 1, '2024-05-16 12:34:52', 0, NULL, 0, NULL, 1),
(25126, 19260, '3', 'Sathyabama University ', '', 'B.com', '2024', 89.00, '', 1, '2024-05-16 01:13:45', 0, NULL, 0, NULL, 1),
(25127, 19261, '3', 'Bharthidasan ', '', 'Bachelor of Commerce (B.Com)', '2022', 89.00, '', 1, '2024-05-16 01:51:55', 0, NULL, 0, NULL, 1),
(25128, 19262, '4', 'aicte', '', 'mba', '2024', 80.00, '', 1, '2024-05-16 06:20:33', 0, NULL, 0, NULL, 1),
(25129, 19262, '3', 'makaut', '', 'b.tech', '2020', 63.00, '', 1, '2024-05-16 06:20:59', 0, NULL, 0, NULL, 1),
(25130, 19262, '2', 'cisce', '', '', '2015', 89.00, '', 1, '2024-05-16 06:21:15', 0, NULL, 0, NULL, 1),
(25131, 19262, '1', 'cisce', '', '', '2013', 93.00, '', 1, '2024-05-16 06:21:35', 0, NULL, 0, NULL, 1),
(25132, 19264, '4', 'v t u', '', 'master degree finance ', '2023', 7.00, '', 1, '2024-05-17 05:09:32', 0, NULL, 0, NULL, 1),
(25133, 19266, '3', 'Madras University ', '', 'B.com', '2022', 80.00, '', 1, '2024-05-17 05:52:44', 0, NULL, 0, NULL, 1),
(25134, 19269, '3', 'A.M.Jain college', '', 'B sc maths ', '2017', 60.00, '', 1, '2024-05-17 06:48:28', 0, NULL, 0, NULL, 1),
(25135, 19271, '3', 'University of Madras ', '', 'B.com', '2022', 62.00, '', 1, '2024-05-17 07:17:34', 0, NULL, 0, NULL, 1),
(25136, 19270, '3', 'University of Madras', '', 'B. Com general', '2022', 75.00, '', 1, '2024-05-17 07:17:56', 0, NULL, 0, NULL, 1),
(25137, 19265, '3', 'madras university', '', 'bcom', '2020', 6.90, '', 1, '2024-05-17 07:42:52', 0, NULL, 0, NULL, 1),
(25138, 19272, '4', 'Shri Krishnaswamy college for women ', '', 'M.A(HRM)', '2024', 68.00, '', 1, '2024-05-17 09:09:10', 0, NULL, 0, NULL, 1),
(25139, 19275, '3', 'Mahatma gandhi kashi vidyapeeth ', '', 'Bcom', '2020', 62.00, '', 1, '2024-05-17 09:33:48', 1, '2024-05-17 09:34:09', 0, NULL, 0),
(25140, 19275, '3', 'Mahatma gandhi kashi vidyapeeth ', '', 'Bcom', '2020', 62.00, '', 1, '2024-05-17 09:34:33', 0, NULL, 0, NULL, 1),
(25141, 19276, '1', 'Karnataka state Board ', '', '', '2015', 77.76, '', 1, '2024-05-17 09:35:08', 0, NULL, 0, NULL, 1),
(25142, 19274, '5', 'V B U HAZARIBAGH', '', 'Graduate', '2019', 65.00, '', 1, '2024-05-17 09:38:31', 0, NULL, 0, NULL, 1),
(25143, 19277, '3', 'Hindustan ', '', 'B.com', '2019', 75.00, '', 1, '2024-05-17 10:13:05', 0, NULL, 0, NULL, 1),
(25144, 19278, '3', 'anna university', '', 'be eee', '2021', 80.00, '', 1, '2024-05-17 10:43:54', 0, NULL, 0, NULL, 1),
(25145, 19273, '4', 'Sri Padmavati Mahila Visvavidyalayam', '', 'MBA', '2023', 74.00, '', 1, '2024-05-17 12:21:09', 0, NULL, 0, NULL, 1),
(25146, 19281, '3', 'vtu', '', 'engineering', '2024', 6.50, '', 1, '2024-05-17 04:56:32', 0, NULL, 0, NULL, 1),
(25147, 19282, '3', 'Jntu', '', 'Btech', '2023', 70.00, '', 1, '2024-05-17 07:40:09', 1, '2024-05-17 07:40:48', 0, NULL, 0),
(25148, 19282, '3', 'Jnti', '', 'Btech', '2023', 73.00, '', 1, '2024-05-17 07:41:03', 0, NULL, 0, NULL, 1),
(25149, 19283, '4', 'Madras University ', '', 'MA.SOCIOLOGY', '2023', 75.00, '', 1, '2024-05-18 04:22:37', 0, NULL, 0, NULL, 1),
(25150, 19286, '3', 'Bharathidasan university, trichirappali ', '', 'B. Com', '2023', 69.00, '', 1, '2024-05-18 04:48:32', 0, NULL, 0, NULL, 1),
(25151, 19285, '3', 'Bharathidasan University ', '', 'BA.English', '2022', 83.00, '', 1, '2024-05-18 04:49:17', 0, NULL, 0, NULL, 1),
(25152, 19284, '3', 'bharathidasan university', '', 'bca', '2023', 75.00, '', 1, '2024-05-18 05:07:04', 0, NULL, 0, NULL, 1),
(25153, 19287, '3', 'Bharathidasan University ', '', 'Bachelor of computer application ', '2023', 65.00, '', 1, '2024-05-18 05:08:01', 0, NULL, 0, NULL, 1),
(25154, 19288, '3', 'madras university', '', 'bca', '2022', 50.00, '', 1, '2024-05-18 05:33:11', 1, '2024-05-18 05:33:52', 0, NULL, 0),
(25155, 19288, '1', 'state board', '', '', '2017', 87.00, '', 1, '2024-05-18 05:35:15', 0, NULL, 0, NULL, 1),
(25156, 19288, '2', 'stateboard ', '', '', '2019', 59.00, '', 1, '2024-05-18 05:35:59', 0, NULL, 0, NULL, 1),
(25157, 19288, '3', 'madras university', '', 'bca', '2022', 50.00, '', 1, '2024-05-18 05:36:53', 0, NULL, 0, NULL, 1),
(25158, 19290, '3', 'Madras University ', '', 'B.SC MICROBIOLOGY ', '2022', 60.00, '', 1, '2024-05-18 06:03:16', 0, NULL, 0, NULL, 1),
(25159, 19291, '1', 'Kerala university', '', '', '2004', 74.00, '', 1, '2024-05-18 06:22:01', 0, NULL, 0, NULL, 1),
(25160, 19291, '2', 'Kerala university ', '', '', '2006', 72.00, '', 1, '2024-05-18 06:22:26', 0, NULL, 0, NULL, 1),
(25161, 19291, '3', 'Kerala university', '', 'Bsc chemistry', '2009', 62.00, '', 1, '2024-05-18 06:22:56', 0, NULL, 0, NULL, 1),
(25162, 19289, '3', 'madras university', '', 'bcom', '2022', 70.00, '', 1, '2024-05-18 06:39:14', 0, NULL, 0, NULL, 1),
(25163, 19293, '3', 'MG', '', 'BBA', '2022', 47.50, '', 1, '2024-05-19 04:41:26', 0, NULL, 0, NULL, 1),
(25164, 19294, '4', 'University ', '', 'MCA', '2022', 8.33, '', 1, '2024-05-20 04:28:13', 0, NULL, 0, NULL, 1),
(25165, 19292, '4', 'University of Madras', '', 'M.Com', '2022', 86.00, '', 1, '2024-05-20 04:57:54', 0, NULL, 0, NULL, 1),
(25166, 19295, '3', 'Madaras University ', '', 'B.com general ', '2023', 70.00, '', 1, '2024-05-20 05:01:15', 0, NULL, 0, NULL, 1),
(25167, 19296, '3', 'Madras University ', '', 'B com', '2022', 75.00, '', 1, '2024-05-20 05:07:44', 0, NULL, 0, NULL, 1),
(25168, 19296, '1', 'KV CRPF avadi', '', '', '2017', 70.00, '', 1, '2024-05-20 05:08:27', 0, NULL, 0, NULL, 1),
(25169, 19296, '2', 'KV HVF avadi', '', '', '2019', 84.00, '', 1, '2024-05-20 05:09:18', 0, NULL, 0, NULL, 1),
(25170, 19297, '4', 'Anna University ', '', 'M.B.A', '2019', 74.00, '', 1, '2024-05-20 05:29:11', 0, NULL, 0, NULL, 1),
(25171, 19299, '3', 'Anna university', '', 'Be', '2020', 60.00, '', 1, '2024-05-20 05:41:47', 0, NULL, 0, NULL, 1),
(25172, 19300, '4', 'JNTU University ', '', 'MBA', '2022', 70.90, '', 1, '2024-05-20 06:21:57', 0, NULL, 0, NULL, 1),
(25173, 19301, '3', 'Sri Krishna Swamy college for women ', '', 'Bsc maths ', '2020', 65.00, '', 1, '2024-05-20 06:26:45', 1, '2024-05-20 06:32:44', 0, NULL, 1),
(25174, 19298, '4', 'bharathidasan university', '', 'computer science', '2023', 90.00, '', 1, '2024-05-20 07:40:51', 0, NULL, 0, NULL, 1),
(25175, 19298, '4', 'bharathidasan university', '', 'msc computer science', '2023', 90.00, '', 1, '2024-05-20 07:46:43', 0, NULL, 0, NULL, 1),
(25176, 19302, '4', 'Medras university', '', 'M.A. Economics', '2018', 58.00, '', 1, '2024-05-20 09:28:51', 0, NULL, 0, NULL, 1),
(25177, 19303, '3', 'Periayar University ', '', 'BCA', '2024', 80.00, '', 1, '2024-05-20 10:11:23', 0, NULL, 0, NULL, 1),
(25178, 19304, '3', 'Queen Mary\'s college ', '', 'Ba', '2024', 70.00, '', 1, '2024-05-20 12:38:22', 0, NULL, 0, NULL, 1),
(25179, 19306, '3', 'Arignar Anna Institute of science and technology ', '', 'BE', '2020', 6.79, '', 1, '2024-05-20 04:21:16', 0, NULL, 0, NULL, 1),
(25180, 19307, '3', 'prist university', '', 'btech', '2020', 80.00, '', 1, '2024-05-20 06:55:15', 0, NULL, 0, NULL, 1),
(25181, 19308, '3', 'Dr MGR Janaki college of arts and science for women ', '', 'Bsc Microbiology', '2024', 77.00, '', 1, '2024-05-21 03:54:29', 0, NULL, 0, NULL, 1),
(25182, 19308, '2', 'Stateboard', '', '', '2021', 83.00, '', 1, '2024-05-21 03:55:47', 0, NULL, 0, NULL, 1),
(25183, 19305, '3', 'Periyar University', '', 'B.Com', '2022', 79.00, '', 1, '2024-05-21 04:05:23', 0, NULL, 0, NULL, 1),
(25184, 19305, '2', 'State Board', '', '', '2019', 89.00, '', 1, '2024-05-21 04:05:47', 0, NULL, 0, NULL, 1),
(25185, 19305, '1', 'State Board', '', '', '2017', 88.00, '', 1, '2024-05-21 04:06:06', 0, NULL, 0, NULL, 1),
(25186, 19309, '3', 'Thiruvalluvar University ', '', 'BSC computer science ', '2023', 70.00, '', 1, '2024-05-21 04:37:15', 0, NULL, 0, NULL, 1),
(25187, 19310, '3', 'Visvesvaraya technology university', '', 'Bachelor of engineering', '2024', 70.00, '', 1, '2024-05-21 05:08:38', 0, NULL, 0, NULL, 1),
(25188, 19312, '4', 'Bangalore north univerity', '', 'mba', '2023', 6.23, '', 1, '2024-05-21 05:26:50', 0, NULL, 0, NULL, 1),
(25189, 19311, '1', 'State Board ', '', 'Bsc computer science ', '2015', 75.00, '', 1, '2024-05-21 05:30:04', 0, NULL, 0, NULL, 1),
(25190, 19311, '2', 'State Board ', '', '', '2017', 58.00, '', 1, '2024-05-21 05:30:25', 0, NULL, 0, NULL, 1),
(25191, 19311, '3', 'University of Madras ', '', 'Bsc computer science ', '2020', 68.00, '', 1, '2024-05-21 05:30:55', 0, NULL, 0, NULL, 1),
(25192, 19315, '3', 'madras university', '', 'bcom general', '2021', 76.00, '', 1, '2024-05-21 06:30:49', 0, NULL, 0, NULL, 1),
(25193, 19313, '3', 'Thiruvalluvar ', '', 'Bsc computer science ', '2023', 69.00, '', 1, '2024-05-21 06:43:37', 0, NULL, 0, NULL, 1),
(25194, 19316, '4', 'Mgr University ', '', 'Mba Hr ', '2023', 92.00, '', 1, '2024-05-21 06:53:37', 0, NULL, 0, NULL, 1),
(25195, 19314, '4', 'Ethraj Women College ', '', 'B.A Travel tourism Management ', '2018', 78.00, '', 1, '2024-05-21 07:19:10', 1, '2024-05-21 07:25:21', 0, NULL, 0),
(25196, 19314, '4', 'Ethraj Women College ', '', 'B.A Tourism travel management ', '2024', 78.00, '', 1, '2024-05-21 07:25:05', 1, '2024-05-21 07:25:38', 0, NULL, 0),
(25197, 19314, '4', 'Ethraj Women College ', '', 'B.A Tourism travel management ', '2024', 78.00, '', 1, '2024-05-21 07:25:08', 0, NULL, 0, NULL, 1),
(25198, 19320, '4', 'Autonomous ', '', 'MBA', '2024', 7.50, '', 1, '2024-05-21 01:00:34', 0, NULL, 0, NULL, 1),
(25199, 19322, '4', 'Bharathiar University ', '', 'Bsc,MBA', '2024', 76.00, '', 1, '2024-05-22 02:55:22', 0, NULL, 0, NULL, 1),
(25200, 19321, '1', 'State board ', '', '', '2021', 60.00, '', 1, '2024-05-22 03:29:12', 0, NULL, 0, NULL, 1),
(25201, 19324, '3', 'NPR COLLEGE OF ENGINEERING AND TECHNOLOGY ', '', 'Electronic and communication engineering ', '2021', 69.00, '', 1, '2024-05-22 04:13:17', 0, NULL, 0, NULL, 1),
(25202, 19324, '2', 'Govt higher secondary school ', '', '', '2017', 74.00, '', 1, '2024-05-22 04:13:57', 0, NULL, 0, NULL, 1),
(25203, 19324, '1', 'JRC higher secondary school ', '', '', '2015', 79.00, '', 1, '2024-05-22 04:14:13', 0, NULL, 0, NULL, 1),
(25204, 19323, '4', 'Mangalore University ', '', 'bsc fashion designing ', '2023', 75.00, '', 1, '2024-05-22 04:44:51', 0, NULL, 0, NULL, 1),
(25205, 19325, '4', 'Thiruvalluvar University ', '', 'M.Sc. Computer Science ', '2023', 75.00, '', 1, '2024-05-22 04:45:27', 0, NULL, 0, NULL, 1),
(25206, 19326, '3', 'Tiruvallur University ', '', 'BCA', '2023', 68.00, '', 1, '2024-05-22 05:24:49', 0, NULL, 0, NULL, 1),
(25207, 19327, '3', 'Bharathithasan university trichy ', '', 'B, com ', '2020', 55.00, '', 1, '2024-05-22 05:48:07', 0, NULL, 0, NULL, 1),
(25208, 19280, '4', 'pune university', '', 'mba', '2021', 64.97, '', 1, '2024-05-22 05:56:54', 0, NULL, 0, NULL, 1),
(25209, 19280, '3', 'jagran lakecity', '', '', '2018', 56.09, '', 1, '2024-05-22 05:57:28', 0, NULL, 0, NULL, 1),
(25210, 19329, '5', 'Doat', '', 'Mechanical engineering', '2022', 72.00, '', 1, '2024-05-22 06:24:54', 0, NULL, 0, NULL, 1),
(25211, 19328, '4', 'SOA University ', '', 'MBA', '2022', 83.40, '', 1, '2024-05-22 06:30:22', 0, NULL, 0, NULL, 1),
(25212, 19328, '3', 'Rama Devi women\'s University ', '', 'Graduation ', '2020', 67.80, '', 1, '2024-05-22 06:31:40', 0, NULL, 0, NULL, 1),
(25213, 19331, '3', 'Tiruvalluvallur', '', 'Bcs. Computer science ', '2024', 83.00, '', 1, '2024-05-22 06:35:39', 0, NULL, 0, NULL, 1),
(25214, 19330, '4', 'Srinivasan College of arts and science ', '', 'msc computer science', '2022', 90.00, '', 1, '2024-05-22 06:49:25', 0, NULL, 0, NULL, 1),
(25215, 19333, '2', 'State board ', '', 'Ba ', '2018', 60.00, '', 1, '2024-05-22 06:52:58', 0, NULL, 0, NULL, 1),
(25216, 19332, '4', 'Madras university', '', 'B.sc', '2021', 68.00, '', 1, '2024-05-22 07:11:39', 0, NULL, 0, NULL, 1),
(25217, 19319, '4', 'bput', '', 'mba', '2022', 81.00, '', 1, '2024-05-22 07:14:59', 0, NULL, 0, NULL, 1),
(25218, 19334, '2', 'Board ', '', '', '2023', 80.00, '', 1, '2024-05-22 07:28:51', 0, NULL, 0, NULL, 1),
(25219, 19336, '4', 'anna university', '', 'B.tech', '2021', 78.00, '', 1, '2024-05-22 09:26:15', 0, NULL, 0, NULL, 1),
(25220, 19338, '4', 'bharathidasan university', '', 'msw hrm', '2024', 77.00, '', 1, '2024-05-22 01:24:31', 0, NULL, 0, NULL, 1),
(25221, 19337, '3', 'Thiruvalluvar University ', '', 'Bsc. Maths ', '2020', 61.00, '', 1, '2024-05-22 01:36:10', 0, NULL, 0, NULL, 1),
(25222, 19318, '3', 'University ', '', 'B.A Economics', '2019', 60.00, '', 1, '2024-05-22 01:47:59', 0, NULL, 0, NULL, 1),
(25223, 19339, '4', 'Selvam college of technology namakkal ', '', 'Mca', '2020', 80.00, '', 1, '2024-05-23 04:44:52', 0, NULL, 0, NULL, 1),
(25224, 19340, '3', 'Barathithasan University ', '', 'B com', '2020', 65.00, '', 1, '2024-05-23 04:49:43', 0, NULL, 0, NULL, 1),
(25225, 19342, '4', 'Bangalore Central University ', '', 'B.com', '2021', 60.00, '', 1, '2024-05-23 05:02:17', 0, NULL, 0, NULL, 1),
(25226, 19341, '5', 'Bangalore ', '', 'Iti', '2021', 65.00, '', 1, '2024-05-23 05:03:48', 0, NULL, 0, NULL, 1),
(25227, 19343, '3', 'madras university', '', 'bcom cs', '2023', 85.00, '', 1, '2024-05-23 05:45:04', 0, NULL, 0, NULL, 1),
(25228, 19344, '3', 'SRM University', '', 'B. Com', '2022', 63.30, '', 1, '2024-05-23 05:59:14', 0, NULL, 0, NULL, 1),
(25229, 19345, '3', 'ms', '', 'b.com', '2020', 80.00, '', 1, '2024-05-23 06:01:39', 0, NULL, 0, NULL, 1),
(25230, 19346, '3', 'Nmkrv College for Women\'s ', '', 'Bsc Computer science ', '2023', 67.00, '', 1, '2024-05-23 07:00:07', 0, NULL, 0, NULL, 1),
(25231, 19347, '4', 'Karnataka ', '', 'Bcom', '2019', 67.00, '', 1, '2024-05-23 07:23:39', 0, NULL, 0, NULL, 1),
(25232, 19349, '1', 'MGR Adarsh matriculation higher secondary school ', '', '', '2017', 70.00, '', 1, '2024-05-23 08:53:57', 0, NULL, 0, NULL, 1),
(25233, 19349, '2', 'MGR Adarsh matriculation higher secondary school ', '', '', '2019', 69.00, '', 1, '2024-05-23 08:54:31', 0, NULL, 0, NULL, 1),
(25234, 19349, '3', 'Anna Adarsh College for women', '', 'BA Travel and Tourism ', '2022', 77.00, '', 1, '2024-05-23 08:55:36', 0, NULL, 0, NULL, 1),
(25235, 19348, '3', 'University of madras ', '', 'B.com Cs', '2023', 55.00, '', 1, '2024-05-23 08:58:24', 0, NULL, 0, NULL, 1),
(25236, 19348, '2', 'Higher secondary school ', '', 'B.com Cs', '2020', 55.00, '', 1, '2024-05-23 08:59:57', 0, NULL, 0, NULL, 1),
(25237, 19350, '5', 'Snnpt', '', 'Computer engineering ', '2020', 70.00, '', 1, '2024-05-23 09:49:40', 0, NULL, 0, NULL, 1),
(25238, 19352, '4', 'Ranichenmma University ', '', 'MBA', '2023', 68.00, '', 1, '2024-05-23 03:10:13', 0, NULL, 0, NULL, 1),
(25239, 19352, '3', 'VTU ', '', 'BCA', '2021', 63.00, '', 1, '2024-05-23 03:10:45', 0, NULL, 0, NULL, 1),
(25240, 19353, '3', 'Sastra deemed to be University ', '', 'Bachelor of business administration ', '2024', 5.90, '', 1, '2024-05-24 04:12:00', 0, NULL, 0, NULL, 1),
(25241, 19356, '3', 'Bharathidasan ', '', 'Bcom', '2024', 75.00, '', 1, '2024-05-24 05:19:11', 0, NULL, 0, NULL, 1),
(25242, 19354, '3', 'Barathidasan ', '', 'Bba', '2024', 70.00, '', 1, '2024-05-24 05:27:46', 0, NULL, 0, NULL, 1),
(25243, 19355, '3', 'Bharathidasan', '', 'Bcom', '2024', 70.00, '', 1, '2024-05-24 05:33:18', 0, NULL, 0, NULL, 1),
(25244, 19357, '3', 'Medrass university', '', 'B. B. A', '2023', 70.00, '', 1, '2024-05-24 05:45:42', 0, NULL, 0, NULL, 1),
(25245, 19360, '3', 'Madras university', '', 'B. Com', '2019', 70.00, '', 1, '2024-05-24 06:24:48', 0, NULL, 0, NULL, 1),
(25246, 19359, '4', 'SRM Valliammai Engineering College', '', 'MBA', '2023', 75.00, '', 1, '2024-05-24 06:25:58', 0, NULL, 0, NULL, 1),
(25247, 19359, '3', 'SRMIST', '', 'B.Com CS', '2020', 60.10, '', 1, '2024-05-24 06:26:37', 0, NULL, 0, NULL, 1),
(25248, 19359, '2', 'K.c.sankaralinga Nadar Hr Sec School', '', '', '2017', 69.90, '', 1, '2024-05-24 06:27:20', 0, NULL, 0, NULL, 1),
(25249, 19358, '3', 'Anna university', '', 'Bechelor Engineering', '2022', 7.30, '', 1, '2024-05-24 06:32:06', 0, NULL, 0, NULL, 1),
(25250, 19358, '2', 'State board of Tamilnadu', '', '', '2018', 60.00, '', 1, '2024-05-24 06:33:09', 0, NULL, 0, NULL, 1),
(25251, 19358, '1', 'State board of Tamilnadu', '', '', '2016', 79.00, '', 1, '2024-05-24 06:34:04', 0, NULL, 0, NULL, 1),
(25252, 19361, '4', 'Madras University', '', 'MBA', '2021', 82.50, '', 1, '2024-05-24 12:50:14', 0, NULL, 0, NULL, 1),
(25253, 19362, '4', 'NATESAN INSTITUTE OF COOPERATIVE ', '', 'MBA HR AND MARKETING ', '2024', 77.00, '', 1, '2024-05-24 01:02:33', 0, NULL, 0, NULL, 1),
(25254, 19362, '3', 'MEENAKSHI COLLEGE FOR WOMEN ', '', 'BCOM GENERAL ', '2022', 75.00, '', 1, '2024-05-24 01:03:17', 0, NULL, 0, NULL, 1),
(25255, 19363, '3', 'anna university', '', 'b. e electrical engineering', '2016', 69.00, '', 1, '2024-05-25 04:54:22', 0, NULL, 0, NULL, 1),
(25256, 19364, '4', 'Madras university', '', 'Mba financial management', '2023', 69.00, '', 1, '2024-05-25 05:04:55', 0, NULL, 0, NULL, 1),
(25257, 19366, '3', 'Jamal Mohamed college ', '', 'Bachelor of commerce ', '2023', 68.00, '', 1, '2024-05-25 05:13:38', 0, NULL, 0, NULL, 1),
(25258, 19367, '3', 'dayananda sagar univer ', '', 'be', '2024', 7.40, '', 1, '2024-05-25 05:21:22', 1, '2024-05-25 05:21:51', 0, NULL, 0),
(25259, 19367, '3', 'dayananda sagar university', '', 'btech cse', '2024', 7.40, '', 1, '2024-05-25 05:22:29', 0, NULL, 0, NULL, 1),
(25260, 19368, '3', 'madras university ', '', 'bcom c s', '2022', 60.00, '', 1, '2024-05-25 06:00:56', 0, NULL, 0, NULL, 1),
(25261, 19374, '3', 'deemed', '', 'btech', '2019', 66.90, '', 1, '2024-05-25 06:15:40', 0, NULL, 0, NULL, 1),
(25262, 19373, '3', 'Madras university ', '', 'Bcom', '2021', 63.00, '', 1, '2024-05-25 06:19:21', 0, NULL, 0, NULL, 1),
(25263, 19371, '3', 'The New College ', '', 'B Com Accounting And Finance ', '2024', 65.00, '', 1, '2024-05-25 06:20:37', 0, NULL, 0, NULL, 1),
(25264, 19370, '3', 'The new college', '', 'Bcom accounting and finance', '2024', 75.00, '', 1, '2024-05-25 06:20:40', 0, NULL, 0, NULL, 1),
(25265, 19369, '4', 'bharathidhasan university', '', 'mba', '2021', 80.00, '', 1, '2024-05-25 06:31:41', 0, NULL, 0, NULL, 1),
(25266, 19375, '4', 'Pondicherry University Distance education ', '', 'MBA', '2023', 60.00, '', 1, '2024-05-25 06:32:44', 1, '2024-05-25 06:33:10', 0, NULL, 1),
(25267, 19375, '3', 'Madras University - Loyola college ', '', 'BBA', '2021', 60.00, '', 1, '2024-05-25 06:33:47', 0, NULL, 0, NULL, 1),
(25268, 19372, '3', 'UGC', '', 'Bsc maths hons.', '2022', 58.00, '', 1, '2024-05-25 06:57:43', 0, NULL, 0, NULL, 1),
(25269, 19379, '3', 'Madras University ', '', 'BBA', '2023', 72.00, '', 1, '2024-05-25 07:44:54', 0, NULL, 0, NULL, 1),
(25270, 19378, '3', 'University of madras', '', 'B. Com CS', '2022', 88.00, '', 1, '2024-05-25 07:45:44', 0, NULL, 0, NULL, 1),
(25271, 19377, '3', 'Madras university', '', 'Bca', '2024', 86.00, '', 1, '2024-05-25 07:50:20', 0, NULL, 0, NULL, 1),
(25272, 19380, '3', 'Jawaharlal Nehru technological University Hyderabad ', '', 'Btech', '2023', 60.00, '', 1, '2024-05-25 07:50:49', 0, NULL, 0, NULL, 1),
(25273, 19376, '4', 'Siksha o anusandhan university ', '', 'Master of Business Administration ', '2022', 79.00, '', 1, '2024-05-25 08:23:49', 0, NULL, 0, NULL, 1),
(25274, 19381, '3', 'Periyar maniammai institute of science and technology ', '', 'B.com', '2024', 7.00, '', 1, '2024-05-27 04:38:32', 0, NULL, 0, NULL, 1),
(25275, 19382, '3', 'Madras University ', '', 'B com general ', '2020', 67.00, '', 1, '2024-05-27 05:09:39', 0, NULL, 0, NULL, 1),
(25276, 19384, '4', 'Tamil University ', '', 'MA TAMIL', '2024', 60.00, '', 1, '2024-05-27 05:11:51', 0, NULL, 0, NULL, 1),
(25277, 19386, '3', 'Annamalai University ', '', 'B.A. Tamil', '2024', 80.00, '', 1, '2024-05-27 05:43:39', 0, NULL, 0, NULL, 1),
(25278, 19386, '1', 'STATE BOARD ', '', '', '2018', 80.00, '', 1, '2024-05-27 05:44:40', 0, NULL, 0, NULL, 1),
(25279, 19386, '2', 'STATE BOARD ', '', '', '2020', 60.00, '', 1, '2024-05-27 05:45:19', 0, NULL, 0, NULL, 1),
(25280, 19387, '3', 'Annai velankkanni\'s college for women under madras university ', '', 'B.com', '2022', 80.00, '', 1, '2024-05-27 05:46:15', 0, NULL, 0, NULL, 1),
(25281, 19389, '4', 'Madras university ', '', 'Mba HR', '2023', 80.00, '', 1, '2024-05-27 05:58:27', 0, NULL, 0, NULL, 1),
(25282, 19390, '3', 'Madras University ', '', 'B.com', '2019', 74.00, '', 1, '2024-05-27 06:03:09', 0, NULL, 0, NULL, 1),
(25283, 19392, '3', 'Madras University ', '', 'B.com(General)', '2020', 80.00, '', 1, '2024-05-27 06:03:10', 0, NULL, 0, NULL, 1),
(25284, 19393, '3', 'Anna  University ', '', 'Mechanical engineering ', '2018', 6.37, '', 1, '2024-05-27 06:08:36', 0, NULL, 0, NULL, 1),
(25285, 19391, '3', 'Pondycherry ', '', 'BA philosophy ', '2024', 69.00, '', 1, '2024-05-27 06:57:39', 0, NULL, 0, NULL, 1),
(25286, 19388, '4', 'Ethiraj women\'s college, Chennai ', '', 'Mathematics ', '2024', 75.00, '', 1, '2024-05-27 07:00:28', 0, NULL, 0, NULL, 1),
(25287, 19395, '3', 'madras university ', '', 'BCA', '2023', 70.00, '', 1, '2024-05-27 07:34:23', 0, NULL, 0, NULL, 1),
(25288, 19396, '3', 'VTU ', '', 'BE', '2022', 6.70, '', 1, '2024-05-27 07:35:05', 0, NULL, 0, NULL, 1),
(25289, 19394, '4', 'calicut unive ', '', 'b a ec ', '2018', 60.00, '', 1, '2024-05-27 07:38:08', 0, NULL, 0, NULL, 1),
(25290, 19385, '3', 'periar universit', '', 'bcom', '2023', 75.00, '', 108, '2024-05-27 03:33:58', 0, NULL, 0, NULL, 1),
(25291, 19397, '3', 'c.abdul hakeem college of arts ', '', 'b.com Corporate secretaryship', '2023', 70.00, '', 1, '2024-05-27 02:09:17', 0, NULL, 0, NULL, 1),
(25292, 19399, '3', 'Anna University ', '', 'B.Tech', '2024', 8.10, '', 1, '2024-05-28 04:44:09', 0, NULL, 0, NULL, 1),
(25293, 19400, '3', 'Anna University ', '', 'B.Tech', '2024', 8.15, '', 1, '2024-05-28 04:45:14', 0, NULL, 0, NULL, 1),
(25294, 19399, '2', 'Tamilnadu ', '', '', '2020', 75.60, '', 1, '2024-05-28 04:45:48', 0, NULL, 0, NULL, 1),
(25295, 19400, '1', 'State Board ', '', '', '2020', 79.20, '', 1, '2024-05-28 04:45:49', 0, NULL, 0, NULL, 1),
(25296, 19400, '2', 'State Board ', '', '', '2018', 79.50, '', 1, '2024-05-28 04:46:27', 0, NULL, 0, NULL, 1),
(25297, 19399, '1', 'State Board ', '', '', '2018', 86.00, '', 1, '2024-05-28 04:46:40', 0, NULL, 0, NULL, 1),
(25298, 19403, '3', 'SRM UNIVERSITY ', '', 'B COM GENERAL ', '2024', 7.81, '', 1, '2024-05-28 05:57:51', 0, NULL, 0, NULL, 1),
(25299, 19404, '3', 'UNIVERSITY OF MADRAS ', '', 'B.COM', '2021', 65.00, '', 1, '2024-05-28 06:02:59', 0, NULL, 0, NULL, 1),
(25300, 19405, '3', 'SRM University ', '', 'B COM (Genral)', '2024', 6.08, '', 1, '2024-05-28 06:08:31', 0, NULL, 0, NULL, 1),
(25301, 19406, '1', 'Madras University ', '', '', '2022', 77.00, '', 1, '2024-05-28 06:25:11', 0, NULL, 0, NULL, 1),
(25302, 19402, '4', 'Madras University ', '', 'MBA', '2023', 69.00, '', 1, '2024-05-28 07:13:19', 0, NULL, 0, NULL, 1),
(25303, 19408, '4', 'University of madras', '', 'M.A Corporate Economics ', '2021', 85.00, '', 1, '2024-05-28 09:52:28', 0, NULL, 0, NULL, 1),
(25304, 19409, '3', 'Dr.M.G.R. Educational and Research institute ', '', 'BSC', '2021', 7.50, '', 1, '2024-05-28 11:03:25', 0, NULL, 0, NULL, 1),
(25305, 19410, '3', 'Bharathidasan University', '', 'B.COM', '2018', 78.00, '', 1, '2024-05-28 03:33:18', 0, NULL, 0, NULL, 1),
(25306, 19411, '4', 'Prist University ', '', 'MBA', '2023', 85.00, '', 1, '2024-05-29 04:36:37', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25307, 19412, '5', 'Director of technical education', '', 'Diploma in electrical and electronics engineering ', '2015', 74.00, '', 1, '2024-05-29 05:05:47', 0, NULL, 0, NULL, 1),
(25308, 19414, '3', 'Madras University ', '', 'B.com', '2020', 90.00, '', 1, '2024-05-29 06:03:03', 0, NULL, 0, NULL, 1),
(25309, 19413, '3', 'sastra uni ', '', 'bachelor of Business administration ', '2020', 65.00, '', 1, '2024-05-29 06:03:35', 0, NULL, 0, NULL, 1),
(25310, 19415, '3', 'Anna university ', '', 'BE (EEE)', '2015', 60.00, '', 1, '2024-05-29 06:06:42', 0, NULL, 0, NULL, 1),
(25311, 19416, '3', 'alagappa university', '', 'b com with ca', '2018', 78.00, '', 1, '2024-05-29 06:16:33', 0, NULL, 0, NULL, 1),
(25312, 19417, '3', 'University of Madras- Bhaktavatsalam Memorial College for Women ', '', 'B.Com. Corporate Secretaryship ', '2024', 90.50, '', 1, '2024-05-29 06:46:02', 0, NULL, 0, NULL, 1),
(25313, 19417, '2', 'State Board ', '', '', '2021', 91.30, '', 1, '2024-05-29 06:46:28', 1, '2024-05-29 06:47:06', 0, NULL, 1),
(25314, 19417, '1', 'State Board ', '', '', '2019', 88.80, '', 1, '2024-05-29 06:47:30', 0, NULL, 0, NULL, 1),
(25315, 19418, '3', 'University ', '', 'B.tech', '2020', 73.00, '', 1, '2024-05-29 06:51:04', 0, NULL, 0, NULL, 1),
(25316, 19419, '3', 'Manonmaniyam university', '', 'Bsc,Cs', '2024', 76.95, '', 1, '2024-05-29 07:13:47', 0, NULL, 0, NULL, 1),
(25317, 19423, '3', 'Madras University ', '', 'B.com', '2024', 89.00, '', 1, '2024-05-29 08:32:28', 0, NULL, 0, NULL, 1),
(25318, 19422, '3', 'Madras University ', '', 'B.com', '2024', 85.00, '', 1, '2024-05-29 08:32:32', 0, NULL, 0, NULL, 1),
(25319, 19421, '3', 'Madras University ', '', 'B.com', '2024', 90.00, '', 1, '2024-05-29 08:33:36', 0, NULL, 0, NULL, 1),
(25320, 19424, '3', 'Anna University ', '', 'BE-ECE ', '2024', 88.00, '', 1, '2024-05-29 11:11:58', 0, NULL, 0, NULL, 1),
(25321, 19425, '5', 'Department of technical education ', '', 'Mechanical engineering ', '2019', 50.00, '', 1, '2024-05-29 01:05:58', 0, NULL, 0, NULL, 1),
(25322, 19428, '3', 'Madras university', '', 'BA English', '2024', 65.00, '', 1, '2024-05-30 05:28:42', 0, NULL, 0, NULL, 1),
(25323, 19429, '3', 'Alagappa University ', '', 'Bsc', '2015', 62.00, '', 1, '2024-05-30 05:30:46', 0, NULL, 0, NULL, 1),
(25324, 19426, '4', 'university', '', 'mba/ hrm', '2024', 80.00, '', 1, '2024-05-30 06:14:14', 0, NULL, 0, NULL, 1),
(25325, 19430, '5', 'dharmambal gov women college', '', 'ici', '2014', 70.00, '', 112, '2024-05-30 11:50:44', 0, NULL, 0, NULL, 1),
(25326, 19431, '3', 'Madras University ', '', 'B.sc(cs)', '2019', 75.00, '', 1, '2024-05-30 06:28:39', 0, NULL, 0, NULL, 1),
(25327, 19432, '3', 'Anna University', '', '', '2017', 64.00, '', 1, '2024-05-30 06:33:15', 0, NULL, 0, NULL, 1),
(25328, 19433, '5', 'DOTE ', '', 'DME', '2019', 78.00, '', 1, '2024-05-30 06:38:06', 0, NULL, 0, NULL, 1),
(25329, 18776, '3', 'Thiruvalluvar university ', '', 'Bca', '2015', 67.00, '', 1, '2024-05-30 06:41:15', 0, NULL, 0, NULL, 1),
(25330, 19434, '3', 'Madras university ', '', 'Bca', '2024', 74.00, '', 1, '2024-05-30 07:25:37', 0, NULL, 0, NULL, 1),
(25331, 19435, '3', 'Annamalai ', '', '', '2023', 70.00, '', 1, '2024-05-30 08:38:02', 0, NULL, 0, NULL, 1),
(25332, 19436, '2', 'Kerala State board ', '', 'B.com', '2019', 75.00, '', 1, '2024-05-30 08:38:56', 0, NULL, 0, NULL, 1),
(25333, 19437, '4', 'University of Madras ', '', 'Food Science Nutrition and Dietitics ', '2020', 73.50, '', 1, '2024-05-30 01:38:16', 0, NULL, 0, NULL, 1),
(25334, 19438, '4', 'VTU', '', 'B.Com', '2023', 63.00, '', 1, '2024-05-30 03:22:28', 0, NULL, 0, NULL, 1),
(25335, 19438, '3', 'Kucempu', '', 'B.Com', '2020', 67.00, '', 1, '2024-05-30 03:23:07', 0, NULL, 0, NULL, 1),
(25336, 19440, '3', 'Madras university', '', 'BBA', '2024', 60.00, '', 1, '2024-05-31 05:45:42', 0, NULL, 0, NULL, 1),
(25337, 19442, '3', 'University of Madras ', '', 'B.Sc', '2024', 7.80, '', 1, '2024-05-31 05:52:35', 0, NULL, 0, NULL, 1),
(25338, 19443, '3', 'St Peter\'s Institute of Higher Education and Research, Avadi', '', 'Bachelor of Computer Application', '2021', 59.50, '', 1, '2024-05-31 06:04:34', 0, NULL, 0, NULL, 1),
(25339, 19441, '3', 'University of madras', '', 'B. Com', '2024', 85.00, '', 1, '2024-05-31 06:11:11', 0, NULL, 0, NULL, 1),
(25340, 19439, '3', 'University of madras', '', 'B. Com A/F', '2024', 75.00, '', 1, '2024-05-31 06:15:30', 0, NULL, 0, NULL, 1),
(25341, 19444, '3', 'University of madras ', '', 'B.com', '2024', 55.00, '', 1, '2024-05-31 06:23:18', 0, NULL, 0, NULL, 1),
(25342, 19445, '3', 'Justice bashier seyed Ahmed college for women', '', 'B com corporate secretaryship ', '2021', 75.00, '', 1, '2024-05-31 06:39:30', 0, NULL, 0, NULL, 1),
(25343, 19447, '3', 'Bharathidasan ', '', 'Bsc.Chemistry', '2022', 70.00, '', 1, '2024-05-31 07:38:35', 0, NULL, 0, NULL, 1),
(25344, 19446, '3', 'madras university', '', 'bsc microbiology', '2023', 75.00, '', 1, '2024-05-31 08:01:25', 0, NULL, 0, NULL, 1),
(25345, 19450, '4', 'University of Madras ', '', 'M.Sc (Maths)', '2024', 66.00, '', 1, '2024-05-31 12:19:37', 0, NULL, 0, NULL, 1),
(25346, 19450, '4', 'University of Madras ', '', 'MBA FINANCIAL MANAGEMENT ', '2024', 7.10, '', 1, '2024-05-31 12:20:04', 0, NULL, 0, NULL, 1),
(25347, 19450, '3', 'University of Madras ', '', 'B.Sc (Maths)', '2022', 86.00, '', 1, '2024-05-31 12:20:37', 0, NULL, 0, NULL, 1),
(25348, 19450, '2', 'State Board of Secondary Education ', '', '', '2019', 84.00, '', 1, '2024-05-31 12:21:02', 0, NULL, 0, NULL, 1),
(25349, 19450, '1', 'State Board of Secondary Education ', '', '', '2017', 96.00, '', 1, '2024-05-31 12:21:27', 0, NULL, 0, NULL, 1),
(25350, 19451, '3', 'Justice Basheer Ahmed Sayeed College ', '', 'Ba.Corporate Economics ', '2024', 60.00, '', 1, '2024-05-31 12:50:58', 0, NULL, 0, NULL, 1),
(25351, 19452, '3', 'BHARATHIDASAN UNIVERSITY ', '', 'BCA ', '2022', 75.00, '', 1, '2024-06-01 06:02:50', 0, NULL, 0, NULL, 1),
(25352, 19453, '4', 'University of Madras ', '', 'MBA Hr', '2022', 85.00, '', 1, '2024-06-01 06:22:12', 0, NULL, 0, NULL, 1),
(25353, 19454, '4', 'Anna University ', '', 'MBA', '2023', 70.00, '', 1, '2024-06-01 08:08:41', 0, NULL, 0, NULL, 1),
(25354, 19455, '1', 'Tamilnadu state board ', '', 'Diploma electronics and communication engineering ', '2016', 78.00, '', 1, '2024-06-01 08:15:48', 1, '2024-06-01 08:16:39', 0, NULL, 0),
(25355, 19455, '1', 'Tamilnadu state board ', '', '', '2016', 78.00, '', 1, '2024-06-01 08:18:49', 0, NULL, 0, NULL, 1),
(25356, 19455, '5', 'Department of technical education ', '', 'Diploma electronics and communication engineering ', '2019', 72.00, '', 1, '2024-06-01 08:20:06', 0, NULL, 0, NULL, 1),
(25357, 19457, '3', 'Madras university', '', 'Bsc', '2024', 65.50, '', 1, '2024-06-01 10:36:11', 0, NULL, 0, NULL, 1),
(25358, 19458, '3', 'Madras University ', '', 'Bsc', '2024', 70.00, '', 1, '2024-06-01 10:38:05', 0, NULL, 0, NULL, 1),
(25359, 19456, '3', 'Madras University ', '', 'Bsc.Mathematics', '2024', 67.00, '', 1, '2024-06-01 10:46:47', 0, NULL, 0, NULL, 1),
(25360, 19459, '3', 'Madras University ', '', 'Bsc', '2024', 65.00, '', 1, '2024-06-01 10:54:19', 0, NULL, 0, NULL, 1),
(25361, 19460, '1', 'Karnataka ', '', '', '2011', 49.00, '', 1, '2024-06-01 01:03:48', 0, NULL, 0, NULL, 1),
(25362, 19463, '4', 'Periyar University', '', 'MBA', '2022', 84.00, '', 1, '2024-06-03 04:28:52', 0, NULL, 0, NULL, 1),
(25363, 19463, '3', 'Periyar University', '', 'bBA', '2020', 78.00, '', 1, '2024-06-03 04:29:23', 0, NULL, 0, NULL, 1),
(25364, 19462, '3', 'univer ', '', 'bca', '2019', 75.00, '', 1, '2024-06-03 05:01:17', 0, NULL, 0, NULL, 1),
(25365, 19464, '4', 'Maduras University ', '', 'M.com', '2024', 68.00, '', 1, '2024-06-03 05:08:19', 0, NULL, 0, NULL, 1),
(25366, 19466, '4', 'Maduras University ', '', 'M.com', '2024', 71.00, '', 1, '2024-06-03 05:28:15', 0, NULL, 0, NULL, 1),
(25367, 19465, '4', 'Maduras ', '', 'M.com', '2024', 75.00, '', 1, '2024-06-03 05:36:28', 0, NULL, 0, NULL, 1),
(25368, 19470, '3', 'Madras university', '', 'B. Com(general) ', '2020', 77.00, '', 1, '2024-06-03 05:54:45', 0, NULL, 0, NULL, 1),
(25369, 19469, '4', 'Madars university', '', 'M. Com', '2022', 82.00, '', 1, '2024-06-03 06:04:37', 0, NULL, 0, NULL, 1),
(25370, 19468, '3', 'Madras University ', '', 'B.sc', '2024', 65.00, '', 1, '2024-06-03 06:05:05', 0, NULL, 0, NULL, 1),
(25371, 19467, '3', 'Madras University ', '', 'B.sc', '2024', 66.00, '', 1, '2024-06-03 06:12:44', 0, NULL, 0, NULL, 1),
(25372, 19472, '1', 'Stateboard', '', '', '2013', 78.40, '', 1, '2024-06-03 06:14:35', 0, NULL, 0, NULL, 1),
(25373, 19472, '2', 'Stateboard', '', '', '2015', 72.00, '', 1, '2024-06-03 06:15:10', 0, NULL, 0, NULL, 1),
(25374, 19472, '3', 'Anna university', '', 'B.E(civil)', '2019', 61.00, '', 1, '2024-06-03 06:16:15', 0, NULL, 0, NULL, 1),
(25375, 19471, '3', 'Mohamed sathak College of arts and science ', '', 'B.com', '2021', 65.00, '', 1, '2024-06-03 06:17:34', 0, NULL, 0, NULL, 1),
(25376, 19473, '5', 'Anna University ', '', 'ECE', '2017', 85.00, '', 1, '2024-06-03 06:17:59', 0, NULL, 0, NULL, 1),
(25377, 19475, '3', 'Thiruvalluvar University', '', 'Bsc', '2022', 89.00, '', 1, '2024-06-03 06:48:08', 0, NULL, 0, NULL, 1),
(25378, 19475, '2', 'State board of secondary education', '', '', '2019', 64.00, '', 1, '2024-06-03 06:50:44', 0, NULL, 0, NULL, 1),
(25379, 19475, '1', 'State board of Secondry education Tamilnadu', '', '', '2017', 84.00, '', 1, '2024-06-03 06:51:57', 0, NULL, 0, NULL, 1),
(25380, 19474, '4', 'VELS UNIVERSITY ', '', 'MBA (GENERAL)', '2023', 67.00, '', 1, '2024-06-03 07:12:00', 0, NULL, 0, NULL, 1),
(25381, 19474, '3', 'MADRAS UNIVERSITY ', '', 'B.com', '2021', 65.00, '', 1, '2024-06-03 07:12:38', 0, NULL, 0, NULL, 1),
(25382, 19474, '2', 'STATE BOARD ', '', '', '2018', 75.00, '', 1, '2024-06-03 07:13:24', 0, NULL, 0, NULL, 1),
(25383, 19477, '3', 'Madras University ', '', 'Bsc computer science ', '2018', 62.00, '', 1, '2024-06-03 09:19:16', 0, NULL, 0, NULL, 1),
(25384, 19478, '3', 'anna university', '', 'BE', '2022', 60.00, '', 1, '2024-06-03 11:32:07', 0, NULL, 0, NULL, 1),
(25385, 19481, '3', 'Annamalai University ', '', 'BSc', '2013', 70.00, '', 1, '2024-06-03 02:31:00', 0, NULL, 0, NULL, 1),
(25386, 19482, '3', 'Velammal Institute of Technology ', '', 'Bachelor of Technology ', '2023', 83.00, '', 1, '2024-06-04 04:14:30', 0, NULL, 0, NULL, 1),
(25387, 19482, '2', 'Velammal Matriculation Higher Secondary School ', '', '', '2019', 64.00, '', 1, '2024-06-04 04:15:09', 0, NULL, 0, NULL, 1),
(25388, 19482, '1', 'Velammal Matriculation Higher Secondary School ', '', '', '2017', 87.00, '', 1, '2024-06-04 04:15:34', 0, NULL, 0, NULL, 1),
(25389, 19484, '3', 'Kongu Enginnering College ', '', 'Bachelor of Engineering ', '2018', 60.00, '', 1, '2024-06-04 04:39:35', 0, NULL, 0, NULL, 1),
(25390, 19485, '3', 'dr mgr educational and research institute', '', 'bachelor of technology', '2022', 80.00, '', 1, '2024-06-04 04:42:49', 0, NULL, 0, NULL, 1),
(25391, 19486, '1', 'Tamil Nadu state Board ', '', '', '2017', 80.50, '', 1, '2024-06-04 04:42:58', 0, NULL, 0, NULL, 1),
(25392, 19486, '2', 'Tamilnadu state board ', '', '', '2019', 50.80, '', 1, '2024-06-04 04:43:23', 0, NULL, 0, NULL, 1),
(25393, 19485, '2', 'st. marys matriculation hr sec school', '', '', '2018', 64.80, '', 1, '2024-06-04 04:43:41', 0, NULL, 0, NULL, 1),
(25394, 19486, '3', 'Anna university ', '', 'BE- ELECTRONICS AND INSTRUMENTATION ENGINEERING ', '2023', 70.00, '', 1, '2024-06-04 04:44:11', 0, NULL, 0, NULL, 1),
(25395, 19485, '1', 'st marys matriculation hr sec school', '', '', '2016', 82.40, '', 1, '2024-06-04 04:44:37', 0, NULL, 0, NULL, 1),
(25396, 19483, '3', 'Madras University ', '', 'BBA', '2022', 80.00, '', 1, '2024-06-04 04:47:17', 0, NULL, 0, NULL, 1),
(25397, 19483, '1', 'RCM higher secondary school ', '', '', '2018', 74.00, '', 1, '2024-06-04 04:48:28', 0, NULL, 0, NULL, 1),
(25398, 19483, '2', 'RCM higher secondary school ', '', '', '2019', 50.00, '', 1, '2024-06-04 04:48:51', 0, NULL, 0, NULL, 1),
(25399, 19487, '3', 'Mohamed Sathak AJ College of Engineering', '', 'BE', '2023', 8.40, '', 1, '2024-06-04 04:49:08', 0, NULL, 0, NULL, 1),
(25400, 19487, '2', 'Gk Matriculation higher secondary School', '', '', '2019', 77.00, '', 1, '2024-06-04 04:49:52', 0, NULL, 0, NULL, 1),
(25401, 19489, '3', 'Madras university', '', 'b.com', '2024', 65.00, '', 1, '2024-06-04 04:52:29', 0, NULL, 0, NULL, 1),
(25402, 19489, '2', 'State board', '', '', '2021', 75.00, '', 1, '2024-06-04 04:53:21', 0, NULL, 0, NULL, 1),
(25403, 19489, '1', 'State board', '', '', '2020', 55.00, '', 1, '2024-06-04 04:53:52', 0, NULL, 0, NULL, 1),
(25404, 19490, '3', 'Deemed ', '', 'Bca', '2024', 8.40, '', 1, '2024-06-04 05:14:09', 0, NULL, 0, NULL, 1),
(25405, 19491, '1', 'Stateboard', '', '', '2014', 87.00, '', 1, '2024-06-04 05:27:13', 0, NULL, 0, NULL, 1),
(25406, 19491, '2', 'State Board ', '', '', '2016', 78.00, '', 1, '2024-06-04 05:27:41', 0, NULL, 0, NULL, 1),
(25407, 19491, '3', 'Bharath University ', '', 'B.Tech/Civil', '2020', 69.00, '', 1, '2024-06-04 05:28:17', 0, NULL, 0, NULL, 1),
(25408, 19491, '4', 'Bharath University ', '', 'MBA', '2023', 81.00, '', 1, '2024-06-04 05:29:00', 0, NULL, 0, NULL, 1),
(25409, 19488, '3', 'Thiruvalluvar university', '', 'Bca', '2020', 76.00, '', 1, '2024-06-04 05:29:50', 0, NULL, 0, NULL, 1),
(25410, 19492, '3', 'Anna University ', '', 'BE', '2021', 70.00, '', 1, '2024-06-04 05:33:13', 0, NULL, 0, NULL, 1),
(25411, 19492, '2', 'Thanthai rover school of excellence ', '', '', '2017', 65.00, '', 1, '2024-06-04 05:33:54', 0, NULL, 0, NULL, 1),
(25412, 19492, '1', 'State board ', '', '', '2015', 70.00, '', 1, '2024-06-04 05:34:30', 0, NULL, 0, NULL, 1),
(25413, 19493, '3', 'Ayya Nadar janaki ammal college ', '', 'Bachelor of commerce ', '2021', 63.00, '', 1, '2024-06-04 06:04:23', 0, NULL, 0, NULL, 1),
(25414, 19495, '1', 'Board ', '', '', '2016', 90.00, '', 1, '2024-06-04 06:26:46', 0, NULL, 0, NULL, 1),
(25415, 19495, '2', 'Board ', '', '', '2018', 70.00, '', 1, '2024-06-04 06:27:10', 0, NULL, 0, NULL, 1),
(25416, 19495, '3', 'University ', '', 'B.E(ECE)', '2022', 80.00, '', 1, '2024-06-04 06:27:53', 0, NULL, 0, NULL, 1),
(25417, 19494, '3', 'Kamaraj University madurai', '', 'Bsc IT&M', '2023', 69.00, '', 1, '2024-06-04 06:36:13', 0, NULL, 0, NULL, 1),
(25418, 19497, '4', 'Anna University ', '', 'Mba', '2016', 76.00, '', 1, '2024-06-04 07:22:23', 0, NULL, 0, NULL, 1),
(25419, 19496, '3', 'SV University, Tirupati', '', 'B.com(computers)', '2015', 45.00, '', 1, '2024-06-04 07:44:00', 0, NULL, 0, NULL, 1),
(25420, 19498, '3', 'Assam University', '', 'BCA', '2022', 57.00, '', 1, '2024-06-04 08:39:30', 0, NULL, 0, NULL, 1),
(25421, 19499, '3', 'Thiruvalluvar University ', '', 'B.sc physics ', '2023', 64.00, '', 1, '2024-06-04 09:09:51', 0, NULL, 0, NULL, 1),
(25422, 19501, '3', 'Pmist', '', 'Btech', '2021', 62.00, '', 1, '2024-06-04 10:36:38', 0, NULL, 0, NULL, 1),
(25423, 19500, '1', 'Kamaraj University ', '', '', '2022', 70.00, '', 1, '2024-06-04 10:38:34', 0, NULL, 0, NULL, 1),
(25424, 19500, '3', 'Kamaraj ', '', 'Bsc', '2022', 70.00, '', 1, '2024-06-04 10:39:31', 0, NULL, 0, NULL, 1),
(25425, 19503, '3', 'Bharathidasan university', '', '', '2019', 71.00, '', 1, '2024-06-04 02:28:37', 0, NULL, 0, NULL, 1),
(25426, 19505, '3', 'anna university regional campus tirunelveli', '', 'Bachelor of Engineer', '2022', 7.10, '', 1, '2024-06-05 04:47:54', 0, NULL, 0, NULL, 1),
(25427, 19504, '3', 'SRM TRP ENGINEERING COLLEGE', '', 'BE', '2023', 79.00, '', 1, '2024-06-05 04:52:34', 0, NULL, 0, NULL, 1),
(25428, 19506, '1', 'State board of Tamil Nadu ', '', '', '2016', 91.00, '', 1, '2024-06-05 05:15:34', 0, NULL, 0, NULL, 1),
(25429, 19506, '2', 'State board of Tamil Nadu ', '', '', '2018', 88.00, '', 1, '2024-06-05 05:15:58', 0, NULL, 0, NULL, 1),
(25430, 19506, '3', 'Anna University ', '', 'BE Mechanical Engineering ', '2022', 80.00, '', 1, '2024-06-05 05:16:26', 0, NULL, 0, NULL, 1),
(25431, 19510, '3', 'University', '', 'B. E(ece) ', '2017', 65.00, '', 1, '2024-06-05 05:53:48', 0, NULL, 0, NULL, 1),
(25432, 19511, '3', 'Adhi College of Engineering and Technology ', '', 'BE(ECE)', '2022', 82.00, '', 1, '2024-06-05 05:54:29', 0, NULL, 0, NULL, 1),
(25433, 19513, '3', 'Anna University ', '', 'B.E.Mechanical Engineering', '2022', 81.20, '', 1, '2024-06-05 06:08:57', 0, NULL, 0, NULL, 1),
(25434, 19513, '2', 'State Board ', '', '', '2018', 80.75, '', 1, '2024-06-05 06:09:27', 0, NULL, 0, NULL, 1),
(25435, 19508, '3', 'madras university', '', 'ba economics', '2023', 76.00, '', 1, '2024-06-05 06:12:20', 0, NULL, 0, NULL, 1),
(25436, 19515, '3', 'Madras University ', '', 'B.com', '2024', 70.00, '', 1, '2024-06-05 06:18:23', 0, NULL, 0, NULL, 1),
(25437, 19507, '2', 'A. J. S NIDHI HIGHER SECONDARY SCHOOL ', '', 'B. A English ', '2017', 50.00, '', 1, '2024-06-05 06:26:28', 1, '2024-06-05 06:29:01', 0, NULL, 0),
(25438, 19507, '3', 'Annamalai university Egmore ', '', 'B. A English ', '2024', 50.00, '', 1, '2024-06-05 06:27:21', 1, '2024-06-05 06:29:22', 0, NULL, 1),
(25439, 19517, '4', 'College of horticulture, mudigere ', '', 'Bsc horticulture ', '2022', 88.00, '', 1, '2024-06-05 06:32:18', 0, NULL, 0, NULL, 1),
(25440, 19518, '5', 'Nallalaghu Nadar Polytechnic', '', 'Electical and Electronics', '2020', 90.00, '', 1, '2024-06-05 06:42:47', 0, NULL, 0, NULL, 1),
(25441, 19509, '3', 'madras university', '', 'b com general', '2023', 61.00, '', 1, '2024-06-05 07:08:55', 0, NULL, 0, NULL, 1),
(25442, 19519, '3', 'Madras University ', '', 'Business Administration ', '2024', 70.00, '', 1, '2024-06-05 07:28:07', 0, NULL, 0, NULL, 1),
(25443, 19520, '4', 'Bharathidasan University ', '', 'M.a', '2020', 80.00, '', 1, '2024-06-05 07:36:02', 0, NULL, 0, NULL, 1),
(25444, 19502, '3', 'Periyar University', '', 'BBA', '2024', 70.00, '', 1, '2024-06-05 09:40:15', 0, NULL, 0, NULL, 1),
(25445, 19522, '4', 'Madra university', '', 'Mba', '2024', 70.00, '', 1, '2024-06-05 10:00:31', 0, NULL, 0, NULL, 1),
(25446, 19523, '3', 'Madras University ', '', 'B.com(general)', '2024', 65.00, '', 1, '2024-06-05 10:15:33', 0, NULL, 0, NULL, 1),
(25447, 19480, '3', 'Bharathidasan university', '', 'BA English', '2023', 64.00, '', 1, '2024-06-05 10:19:46', 0, NULL, 0, NULL, 1),
(25448, 19479, '3', 'Bharathidasan University', '', '', '2023', 62.00, '', 1, '2024-06-05 10:41:44', 0, NULL, 0, NULL, 1),
(25449, 19524, '3', 'university ', '', 'vis.com ', '2023', 71.00, '', 1, '2024-06-05 03:41:56', 0, NULL, 0, NULL, 1),
(25450, 19529, '3', 'University ', '', 'BA', '2023', 80.00, '', 1, '2024-06-06 05:32:02', 0, NULL, 0, NULL, 1),
(25451, 19528, '3', 'Madras University ', '', 'B.com', '2017', 76.92, '', 1, '2024-06-06 05:32:14', 0, NULL, 0, NULL, 1),
(25452, 19529, '1', 'Board', '', 'BA', '2018', 76.00, '', 1, '2024-06-06 05:33:40', 0, NULL, 0, NULL, 1),
(25453, 19529, '2', 'Board', '', '', '2020', 73.00, '', 1, '2024-06-06 05:34:14', 0, NULL, 0, NULL, 1),
(25454, 19530, '3', 'Anna university', '', 'b.E Mechanical  Engineering', '2021', 78.80, '', 1, '2024-06-06 05:41:25', 0, NULL, 0, NULL, 1),
(25455, 19531, '1', ' board ', '', 'B.com cS', '2018', 72.00, '', 1, '2024-06-06 05:42:35', 1, '2024-06-06 05:45:58', 0, NULL, 1),
(25456, 19530, '1', 'State Board', '', '', '2015', 85.00, '', 1, '2024-06-06 05:42:36', 0, NULL, 0, NULL, 1),
(25457, 19530, '2', 'State Board ', '', '', '2017', 75.00, '', 1, '2024-06-06 05:44:04', 0, NULL, 0, NULL, 1),
(25458, 19531, '2', 'Board', '', '', '2020', 62.00, '', 1, '2024-06-06 05:44:26', 0, NULL, 0, NULL, 1),
(25459, 19531, '3', 'University ', '', 'Bcom Cs', '2023', 73.00, '', 1, '2024-06-06 05:45:31', 0, NULL, 0, NULL, 1),
(25460, 19532, '3', 'Madras University ', '', 'B.com', '2021', 87.00, '', 1, '2024-06-06 05:46:23', 0, NULL, 0, NULL, 1),
(25461, 19532, '2', 'State board', '', '', '2018', 78.00, '', 1, '2024-06-06 05:47:12', 0, NULL, 0, NULL, 1),
(25462, 19533, '4', 'Thiruvalluvar University ', '', 'Master\'s Degree in Mathematics ', '2023', 70.00, '', 1, '2024-06-06 05:49:02', 0, NULL, 0, NULL, 1),
(25463, 19533, '1', 'State board of Tamil Nadu ', '', '', '2016', 92.00, '', 1, '2024-06-06 05:51:38', 0, NULL, 0, NULL, 1),
(25464, 19533, '2', 'State board of Tamil Nadu ', '', '', '2018', 69.00, '', 1, '2024-06-06 05:52:09', 0, NULL, 0, NULL, 1),
(25465, 19533, '3', 'Thiruvalluvar University ', '', 'Bachelor of science (Mathematics)', '2021', 80.00, '', 1, '2024-06-06 05:54:16', 0, NULL, 0, NULL, 1),
(25466, 19534, '1', 'State board ', '', '', '2016', 86.00, '', 1, '2024-06-06 05:57:47', 0, NULL, 0, NULL, 1),
(25467, 19534, '2', 'State board ', '', '', '2018', 71.00, '', 1, '2024-06-06 05:58:09', 0, NULL, 0, NULL, 1),
(25468, 19534, '3', 'Anna University ', '', 'Bachelor of Computer Science and Engineering ', '2022', 83.00, '', 1, '2024-06-06 05:58:39', 0, NULL, 0, NULL, 1),
(25469, 19535, '3', 'University of madras ', '', 'B.com ( accounting finance)', '2024', 75.00, '', 1, '2024-06-06 06:09:47', 0, NULL, 0, NULL, 1),
(25470, 19536, '3', 'University of madras', '', 'BCA (computer application) ', '2024', 75.00, '', 1, '2024-06-06 06:12:09', 0, NULL, 0, NULL, 1),
(25471, 19538, '3', 'University ', '', 'B.com General', '2024', 80.20, '', 1, '2024-06-06 06:17:00', 0, NULL, 0, NULL, 1),
(25472, 19537, '3', 'University ', '', 'Ug', '2024', 75.00, '', 1, '2024-06-06 06:22:46', 0, NULL, 0, NULL, 1),
(25473, 19526, '3', 'SREE MUTHUKUMARASWAMY COLLEGE', '', 'B.COM (GENERAL)', '2021', 65.00, '', 1, '2024-06-06 06:27:10', 0, NULL, 0, NULL, 1),
(25474, 19526, '2', 'A G JAIN HR SEC SCHOOL ', '', '', '2018', 70.00, '', 1, '2024-06-06 06:27:45', 0, NULL, 0, NULL, 1),
(25475, 19526, '1', 'DON BOSCO MATRICULATION SCHOOL', '', '', '2016', 69.00, '', 1, '2024-06-06 06:28:26', 0, NULL, 0, NULL, 1),
(25476, 19540, '4', 'Maras University ', '', 'B.A economic ', '2020', 65.00, '', 1, '2024-06-06 06:35:59', 0, NULL, 0, NULL, 1),
(25477, 19539, '5', 'Presidency college of hotel management ', '', 'Diploma in hotel management ', '2017', 69.00, '', 1, '2024-06-06 06:39:23', 0, NULL, 0, NULL, 1),
(25478, 19541, '3', 'Annamalai University ', '', 'Bachelor degree ', '2017', 7.26, '', 1, '2024-06-06 06:48:59', 0, NULL, 0, NULL, 1),
(25479, 19542, '4', 'University of madras', '', 'Mba hr', '2023', 80.00, '', 1, '2024-06-06 06:51:38', 0, NULL, 0, NULL, 1),
(25480, 19542, '3', 'St Anne\'s Art\'s and science college ', '', 'Bsc computer science ', '2020', 67.00, '', 1, '2024-06-06 06:52:39', 0, NULL, 0, NULL, 1),
(25481, 19545, '3', 'Madras University ', '', 'BSC (mathematics)', '2024', 56.00, '', 1, '2024-06-06 06:59:50', 0, NULL, 0, NULL, 1),
(25482, 19544, '3', 'University of Madras', '', 'B.sc Maths', '2024', 61.00, '', 1, '2024-06-06 07:00:09', 0, NULL, 0, NULL, 1),
(25483, 19547, '1', 'STATE BOARD ', '', '', '2017', 89.00, '', 1, '2024-06-06 07:08:50', 0, NULL, 0, NULL, 1),
(25484, 19547, '2', 'STATE BOARD', '', '', '2019', 60.00, '', 1, '2024-06-06 07:09:37', 0, NULL, 0, NULL, 1),
(25485, 19547, '3', 'Anna University ', '', 'B.Tech-IT', '2023', 82.00, '', 1, '2024-06-06 07:10:11', 0, NULL, 0, NULL, 1),
(25486, 19548, '3', 'Periyar University ', '', 'BBA ', '2024', 62.00, '', 1, '2024-06-06 07:19:05', 0, NULL, 0, NULL, 1),
(25487, 19543, '2', 'Madras ', '', '', '2013', 50.00, '', 1, '2024-06-06 07:19:38', 0, NULL, 0, NULL, 1),
(25488, 19549, '3', 'VTU', '', 'BE', '2022', 62.00, '', 1, '2024-06-06 09:55:38', 0, NULL, 0, NULL, 1),
(25489, 19549, '5', 'RNSPT', '', 'Diploma', '2019', 60.00, '', 1, '2024-06-06 09:58:45', 0, NULL, 0, NULL, 1),
(25490, 19549, '1', 'Karnataka ', '', '', '2014', 67.00, '', 1, '2024-06-06 09:59:17', 0, NULL, 0, NULL, 1),
(25491, 19550, '3', 'Karnataka ', '', '12th puc', '2020', 67.00, '', 1, '2024-06-06 10:54:10', 0, NULL, 0, NULL, 1),
(25492, 19552, '3', 'Madras University', '', 'Business Administration', '2021', 90.00, '', 1, '2024-06-06 01:15:40', 0, NULL, 0, NULL, 1),
(25493, 19553, '3', 'Periyar University', '', 'BBA', '2024', 58.00, '', 1, '2024-06-07 01:34:39', 0, NULL, 0, NULL, 1),
(25494, 19553, '2', 'State board', '', '', '2021', 83.00, '', 1, '2024-06-07 01:35:21', 0, NULL, 0, NULL, 1),
(25495, 19551, '3', 'niv of madras', '', 'bba', '2024', 75.00, '', 1, '2024-06-07 04:14:01', 0, NULL, 0, NULL, 1),
(25496, 19555, '3', 'Government Arts College ( A ) Salem ', '', 'BBA', '2024', 60.00, '', 1, '2024-06-07 05:00:21', 0, NULL, 0, NULL, 1),
(25497, 19554, '3', 'Ethiraj womens college', '', 'Bachelors of visual communication ', '2023', 78.00, '', 1, '2024-06-07 05:05:09', 0, NULL, 0, NULL, 1),
(25498, 19557, '3', 'University of  Madras ', '', 'Bsc mathematics ', '2024', 80.00, '', 1, '2024-06-07 05:42:59', 0, NULL, 0, NULL, 1),
(25499, 19557, '2', 'State board ', '', '', '2021', 90.00, '', 1, '2024-06-07 05:43:44', 0, NULL, 0, NULL, 1),
(25500, 19557, '1', 'State board ', '', '', '2019', 80.00, '', 1, '2024-06-07 05:44:02', 0, NULL, 0, NULL, 1),
(25501, 19556, '3', 'Thiruvalluvar University ', '', 'BBA', '2022', 80.00, '', 1, '2024-06-07 05:47:39', 0, NULL, 0, NULL, 1),
(25502, 19558, '3', 'University of Madras ', '', 'Bsc chemistry ', '2024', 70.00, '', 1, '2024-06-07 05:52:11', 0, NULL, 0, NULL, 1),
(25503, 19559, '3', 'University of madras', '', 'B.sc Computer science', '2024', 70.00, '', 1, '2024-06-07 05:53:17', 0, NULL, 0, NULL, 1),
(25504, 19560, '3', 'Periya University ', '', 'B.cs computer science ', '2022', 75.00, '', 1, '2024-06-07 06:30:17', 0, NULL, 0, NULL, 1),
(25505, 19561, '3', 'Vels university', '', 'Bsc computer science', '2024', 51.00, '', 1, '2024-06-07 06:40:40', 0, NULL, 0, NULL, 1),
(25506, 19562, '4', 'mgr university', '', 'mba', '2024', 72.00, '', 1, '2024-06-07 06:53:46', 0, NULL, 0, NULL, 1),
(25507, 19563, '4', 'Dr Mgr educational and research institute ', '', 'Msc computer science ', '2023', 72.00, '', 1, '2024-06-07 07:37:18', 0, NULL, 0, NULL, 1),
(25508, 19564, '3', 'Easwari Engineering college ', '', 'BE', '2021', 81.00, '', 1, '2024-06-07 07:51:05', 0, NULL, 0, NULL, 1),
(25509, 19564, '5', 'Nachimuthu Polytechnic College ', '', 'DCE', '2018', 72.00, '', 1, '2024-06-07 07:51:30', 0, NULL, 0, NULL, 1),
(25510, 19566, '3', 'Madras University ', '', 'B.Com (Corporate secretaryship)', '2024', 67.00, '', 1, '2024-06-07 07:56:04', 0, NULL, 0, NULL, 1),
(25511, 19565, '3', 'Madras university', '', 'B. Com general', '2024', 70.00, '', 1, '2024-06-07 07:56:23', 0, NULL, 0, NULL, 1),
(25512, 19569, '3', 'calicut University ', '', 'b.com ', '2015', 1.00, '', 1, '2024-06-08 01:58:42', 0, NULL, 0, NULL, 1),
(25513, 19571, '3', 'Anna University (Ramco institute of technology))', '', 'B.E', '2023', 80.00, '', 1, '2024-06-08 04:32:06', 0, NULL, 0, NULL, 1),
(25514, 19571, '1', 'State Board ', '', '', '2017', 93.00, '', 1, '2024-06-08 04:32:28', 0, NULL, 0, NULL, 1),
(25515, 19571, '2', 'State board ', '', '', '2019', 75.00, '', 1, '2024-06-08 04:32:42', 0, NULL, 0, NULL, 1),
(25516, 19570, '4', 'Annamalai University ', '', 'MBA ', '2022', 72.00, '', 1, '2024-06-08 04:40:41', 0, NULL, 0, NULL, 1),
(25517, 19570, '3', 'Bharathidhasan University ', '', 'B. Com', '2020', 63.50, '', 1, '2024-06-08 04:41:45', 0, NULL, 0, NULL, 1),
(25518, 19573, '3', 'Thiruvalluvar University ', '', 'Bsc, computer science ', '2023', 70.00, '', 1, '2024-06-08 04:49:29', 0, NULL, 0, NULL, 1),
(25519, 19572, '3', 'Anna university', '', 'BE mechanical', '2023', 81.00, '', 1, '2024-06-08 04:49:29', 0, NULL, 0, NULL, 1),
(25520, 19574, '3', 'Alagapa University ', '', 'Bcs fashion design ', '2019', 85.00, '', 1, '2024-06-08 05:06:12', 0, NULL, 0, NULL, 1),
(25521, 19577, '3', 'Jawaharlal Nehru University ', '', 'B.tech', '2021', 72.00, '', 1, '2024-06-08 05:27:30', 0, NULL, 0, NULL, 1),
(25522, 19575, '3', 'Madras University ', '', 'Bba', '2024', 75.00, '', 1, '2024-06-08 05:28:29', 0, NULL, 0, NULL, 1),
(25523, 19578, '3', 'JNTU Ananthapur ', '', '', '2021', 70.00, '', 1, '2024-06-08 05:29:03', 0, NULL, 0, NULL, 1),
(25524, 19576, '3', 'Justice Basheer Ahmed Sayeed College for women', '', 'B.com General', '2024', 73.00, '', 1, '2024-06-08 05:30:41', 0, NULL, 0, NULL, 1),
(25525, 19580, '5', 'Vijya pu college ', '', 'No', '0202', 96.00, '', 1, '2024-06-08 05:40:05', 0, NULL, 0, NULL, 1),
(25526, 19581, '3', 'university of madars', '', 'bba', '2024', 71.00, '', 1, '2024-06-08 05:51:25', 0, NULL, 0, NULL, 1),
(25527, 19579, '3', 'Bharathi Women\'s College ', '', 'Bsc', '2024', 51.00, '', 1, '2024-06-08 06:16:01', 0, NULL, 0, NULL, 1),
(25528, 19582, '3', 'Dhanalakshmi srinivasan college of engineering and technology', '', 'B. E., Biomedical engineering', '2023', 8.40, '', 1, '2024-06-08 06:55:00', 0, NULL, 0, NULL, 1),
(25529, 19583, '3', 'madras University ', '', 'BA corp Economics ', '2016', 65.00, '', 1, '2024-06-08 06:55:54', 0, NULL, 0, NULL, 1),
(25530, 19585, '3', 'University of Madras ', '', 'BBA', '2024', 6.60, '', 1, '2024-06-08 09:22:47', 0, NULL, 0, NULL, 1),
(25531, 19587, '3', 'Madras University ', '', 'BBA', '2020', 72.00, '', 1, '2024-06-09 01:06:12', 0, NULL, 0, NULL, 1),
(25532, 19587, '2', 'State board', '', '', '2016', 74.00, '', 1, '2024-06-09 01:06:45', 0, NULL, 0, NULL, 1),
(25533, 19587, '1', 'State board', '', '', '2014', 60.00, '', 1, '2024-06-09 01:07:35', 0, NULL, 0, NULL, 1),
(25534, 19590, '3', 'The Tamilnadu Dr Ambedkar law University -School of excellence in law ', '', 'B.Com.LLb(Hons)', '2024', 70.00, '', 1, '2024-06-10 04:55:20', 0, NULL, 0, NULL, 1),
(25535, 19591, '3', 'Easwari engineering college ', '', 'B.tech', '2024', 80.00, '', 1, '2024-06-10 05:16:47', 0, NULL, 0, NULL, 1),
(25536, 19588, '3', 'University of Madras ', '', 'B.com', '2024', 65.00, '', 1, '2024-06-10 05:23:42', 0, NULL, 0, NULL, 1),
(25537, 19593, '3', 'University of Madras ', '', 'Bcom', '2024', 83.00, '', 1, '2024-06-10 05:30:46', 0, NULL, 0, NULL, 1),
(25538, 19592, '4', 'rNS Institute Of Technology', '', 'MCA', '2022', 90.00, '', 1, '2024-06-10 05:32:13', 0, NULL, 0, NULL, 1),
(25539, 19594, '3', 'Madras University ', '', 'B.com', '2024', 80.00, '', 1, '2024-06-10 05:40:22', 0, NULL, 0, NULL, 1),
(25540, 19584, '3', 'Jawaharlal Nehru Technology University Kakinada ', '', 'B.Tech', '2023', 6.58, '', 1, '2024-06-10 05:43:07', 0, NULL, 0, NULL, 1),
(25541, 19597, '3', 'Sathiyabama university ', '', 'BCOM genral', '2024', 7.50, '', 1, '2024-06-10 05:44:32', 0, NULL, 0, NULL, 1),
(25542, 19595, '3', 'New prince sri bhavani arts and science college ', '', 'B.com', '2024', 60.00, '', 1, '2024-06-10 05:49:29', 0, NULL, 0, NULL, 1),
(25543, 19596, '3', 'Madras university ', '', 'Bcom cA', '2024', 80.00, '', 1, '2024-06-10 05:54:55', 0, NULL, 0, NULL, 1),
(25544, 19599, '3', 'University of Madras ', '', 'BSC computer science ', '2021', 65.00, '', 1, '2024-06-10 06:48:10', 0, NULL, 0, NULL, 1),
(25545, 19600, '3', 'Bharathidasan ', '', 'Bcom', '2024', 70.00, '', 1, '2024-06-10 07:08:46', 0, NULL, 0, NULL, 1),
(25546, 19586, '3', 'anna university', '', 'bca ', '2024', 80.00, '', 1, '2024-06-10 07:20:27', 0, NULL, 0, NULL, 1),
(25547, 19602, '3', 'Madras ', '', 'B.com', '2024', 80.00, '', 1, '2024-06-10 10:28:43', 0, NULL, 0, NULL, 1),
(25548, 19604, '3', 'Madras university ', '', 'B.com', '2024', 70.00, '', 1, '2024-06-10 10:36:36', 0, NULL, 0, NULL, 1),
(25549, 19603, '5', 'aalim Muhammad salegh engineering ', '', 'DCE', '2016', 83.00, '', 1, '2024-06-10 10:37:32', 0, NULL, 0, NULL, 1),
(25550, 19601, '2', 'Vijaya college of university ', '', '', '2019', 60.00, '', 1, '2024-06-10 10:56:36', 0, NULL, 0, NULL, 1),
(25551, 19605, '2', 'BNM College ', '', '', '2018', 71.00, '', 1, '2024-06-10 10:57:00', 0, NULL, 0, NULL, 1),
(25552, 19606, '1', 'karnataka state board', '', '', '2019', 75.00, '', 1, '2024-06-10 01:26:52', 0, NULL, 0, NULL, 1),
(25553, 19606, '2', 'Karnataka State Board	', '', '', '2020', 70.00, '', 1, '2024-06-10 01:27:09', 0, NULL, 0, NULL, 1),
(25554, 19607, '3', 'st philominas college mysore', '', 'na', '2017', 70.00, '', 1, '2024-06-10 06:45:02', 0, NULL, 0, NULL, 1),
(25555, 19608, '3', 'Madras University ', '', 'Electronics and communication science ', '2023', 82.00, '', 1, '2024-06-11 01:57:30', 0, NULL, 0, NULL, 1),
(25556, 19610, '3', 'Periyar maniammai institute of science and technology ', '', 'Bsc cs', '2022', 80.01, '', 1, '2024-06-11 05:12:25', 0, NULL, 0, NULL, 1),
(25557, 19610, '2', 'Sir siva Swamy Ayyar Higher Secondary school ', '', '', '2019', 47.80, '', 1, '2024-06-11 05:13:07', 0, NULL, 0, NULL, 1),
(25558, 19610, '1', 'Sir Siva Swamy Ayyar Higher Secondary school ', '', '', '2017', 76.80, '', 1, '2024-06-11 05:13:44', 0, NULL, 0, NULL, 1),
(25559, 19611, '3', 'Pmist University', '', 'Bsc computer science', '2022', 6.74, '', 1, '2024-06-11 05:14:46', 0, NULL, 0, NULL, 1),
(25560, 19612, '3', 'Madras university', '', 'B. Com (General) ', '2024', 75.00, '', 1, '2024-06-11 05:26:57', 0, NULL, 0, NULL, 1),
(25561, 19613, '3', 'Madras University ', '', 'B.com', '2023', 75.00, '', 1, '2024-06-11 06:21:29', 0, NULL, 0, NULL, 1),
(25562, 19615, '3', 'University', '', 'B. Com', '2023', 85.00, '', 1, '2024-06-11 08:45:34', 0, NULL, 0, NULL, 1),
(25563, 19615, '1', 'Board', '', '', '2018', 68.00, '', 1, '2024-06-11 08:47:40', 0, NULL, 0, NULL, 1),
(25564, 19614, '3', 'Anna university', '', 'B. E', '2020', 75.00, '', 1, '2024-06-11 08:55:23', 0, NULL, 0, NULL, 1),
(25565, 19616, '4', 'VHNSN COLLEGE ', '', 'MBA', '2024', 70.00, '', 1, '2024-06-11 01:17:06', 0, NULL, 0, NULL, 1),
(25566, 19618, '3', 'vtu', '', 'Bachelor of Engineering', '2023', 7.50, '', 1, '2024-06-11 02:17:00', 0, NULL, 0, NULL, 1),
(25567, 19620, '4', 'University of Greenwich', '', 'MBA ', '2022', 70.00, '', 1, '2024-06-11 08:53:05', 0, NULL, 0, NULL, 1),
(25568, 19621, '3', 'Thiruvalluvar university', '', 'BCA', '2023', 80.00, '', 1, '2024-06-12 04:19:26', 0, NULL, 0, NULL, 1),
(25569, 19622, '3', 'niverst ', '', 'e agriculture engin ', '2024', 8.90, '', 1, '2024-06-12 05:08:01', 0, NULL, 0, NULL, 1),
(25570, 19622, '2', 'oard', '', '', '2019', 73.10, '', 1, '2024-06-12 05:08:39', 0, NULL, 0, NULL, 1),
(25571, 19617, '3', 'Hindusthan College of arts and science ', '', 'BCA', '2024', 75.00, '', 1, '2024-06-12 05:25:41', 0, NULL, 0, NULL, 1),
(25572, 19624, '4', 'Anna University ', '', 'Mca', '2024', 89.00, '', 1, '2024-06-12 05:28:14', 0, NULL, 0, NULL, 1),
(25573, 19623, '4', 'Anna university ', '', 'MCA', '2024', 84.00, '', 1, '2024-06-12 05:33:19', 0, NULL, 0, NULL, 1),
(25574, 19625, '3', 'Guru Nanak college ', '', 'Bsc cs', '2022', 80.00, '', 1, '2024-06-12 06:11:39', 0, NULL, 0, NULL, 1),
(25575, 19625, '1', 'ST.Antony\'s matric Hr.sec school', '', '', '2017', 87.00, '', 1, '2024-06-12 06:13:05', 0, NULL, 0, NULL, 1),
(25576, 19625, '2', 'St.Antony\'s Matric Hr.sec school', '', '', '2019', 74.00, '', 1, '2024-06-12 06:13:31', 0, NULL, 0, NULL, 1),
(25577, 19626, '3', 'Mysore University ', '', 'Bcom ', '2017', 66.00, '', 1, '2024-06-12 06:14:38', 0, NULL, 0, NULL, 1),
(25578, 19627, '3', 'SRM valliammai engineering college', '', 'BE', '2021', 67.64, '', 1, '2024-06-12 07:53:14', 0, NULL, 0, NULL, 1),
(25579, 19629, '3', 'Alagappa University ', '', 'B.sc aircraft maintenance science ', '2024', 89.00, '', 1, '2024-06-12 01:17:54', 0, NULL, 0, NULL, 1),
(25580, 19630, '3', 'Shri Shankarlal Sundarbai Shasun Jain College for Women ', '', 'B.COM', '2024', 77.00, '', 1, '2024-06-12 04:37:58', 1, '2024-06-12 04:39:30', 0, NULL, 0),
(25581, 19630, '2', 'State board of Tamilnadu ', '', '', '2021', 89.00, '', 1, '2024-06-12 04:38:35', 1, '2024-06-12 04:39:01', 0, NULL, 0),
(25582, 19630, '1', 'State board of Tamilnadu ', '', '', '2019', 86.00, '', 1, '2024-06-12 04:39:53', 0, NULL, 0, NULL, 1),
(25583, 19630, '2', 'State board of Tamilnadu ', '', '', '2021', 89.00, '', 1, '2024-06-12 04:40:11', 0, NULL, 0, NULL, 1),
(25584, 19630, '3', 'Shri Shankarlal Sundarbai Shasun Jain College for Women - Madras University ', '', 'B.COM', '2024', 77.00, '', 1, '2024-06-12 04:40:56', 0, NULL, 0, NULL, 1),
(25585, 19631, '4', 'Periyar Maniammai Institute of Science and Technology ', '', 'M. Sc. Mathematics ', '2023', 85.20, '', 1, '2024-06-13 04:22:52', 0, NULL, 0, NULL, 1),
(25586, 19631, '3', 'Periyar Maniammai Institute of Science and Technology ', '', 'B. Sc. Mathematics ', '2021', 85.20, '', 1, '2024-06-13 04:23:18', 0, NULL, 0, NULL, 1),
(25587, 19631, '2', 'Silver Jubilee matriculation Higher secondary school ', '', '', '2018', 75.40, '', 1, '2024-06-13 04:24:06', 0, NULL, 0, NULL, 1),
(25588, 19631, '1', 'Silver Jubilee matriculation Higher secondary school ', '', '', '2016', 90.80, '', 1, '2024-06-13 04:24:59', 0, NULL, 0, NULL, 1),
(25589, 19632, '3', 'Anna University ', '', 'Bachelor\'s degree ', '2021', 6.78, '', 1, '2024-06-13 04:51:02', 0, NULL, 0, NULL, 1),
(25590, 19632, '2', 'State board ', '', '', '2017', 75.00, '', 1, '2024-06-13 04:51:28', 0, NULL, 0, NULL, 1),
(25591, 19632, '1', 'State Board ', '', '', '2015', 85.00, '', 1, '2024-06-13 04:51:43', 0, NULL, 0, NULL, 1),
(25592, 19633, '3', 'bharathidasan university', '', 'b.com', '2022', 70.00, '', 1, '2024-06-13 04:57:52', 0, NULL, 0, NULL, 1),
(25593, 19633, '2', 'state board', '', '', '2019', 72.00, '', 1, '2024-06-13 04:59:57', 0, NULL, 0, NULL, 1),
(25594, 19634, '3', 'bharathiyar university', '', 'bsc.mathematics', '2020', 76.50, '', 1, '2024-06-13 05:01:06', 0, NULL, 0, NULL, 1),
(25595, 19635, '3', 'Madras university', '', 'BBA', '2022', 63.00, '', 1, '2024-06-13 05:01:47', 0, NULL, 0, NULL, 1),
(25596, 19633, '1', 'state board', '', '', '2017', 86.00, '', 1, '2024-06-13 05:02:11', 0, NULL, 0, NULL, 1),
(25597, 19636, '3', 'University', '', 'BCA', '2024', 84.00, '', 1, '2024-06-13 05:13:45', 0, NULL, 0, NULL, 1),
(25598, 19636, '2', 'Board', '', '', '2021', 84.00, '', 1, '2024-06-13 05:14:46', 0, NULL, 0, NULL, 1),
(25599, 19636, '1', 'Board', '', '', '2019', 77.00, '', 1, '2024-06-13 05:15:22', 0, NULL, 0, NULL, 1),
(25600, 19637, '4', 'Madras University ', '', 'Mba', '2022', 81.00, '', 1, '2024-06-13 05:25:44', 0, NULL, 0, NULL, 1),
(25601, 19638, '3', 'Periyar', '', 'BCA', '2023', 76.00, '', 1, '2024-06-13 05:29:32', 0, NULL, 0, NULL, 1),
(25602, 19639, '3', 'Anna university', '', 'B.E', '2022', 79.50, '', 1, '2024-06-13 05:42:14', 0, NULL, 0, NULL, 1),
(25603, 19640, '3', 'Saranathan  college of engineering ', '', 'BE', '2021', 75.00, '', 1, '2024-06-13 05:44:59', 0, NULL, 0, NULL, 1),
(25604, 19645, '3', 'Anna University ', '', '', '2021', 75.00, '', 1, '2024-06-13 05:46:19', 0, NULL, 0, NULL, 1),
(25605, 19642, '1', 'Govt hr sec school', '', '', '2017', 89.00, '', 1, '2024-06-13 05:49:21', 0, NULL, 0, NULL, 1),
(25606, 19642, '2', 'AKT matric hr sec school', '', '', '2019', 76.00, '', 1, '2024-06-13 05:49:45', 0, NULL, 0, NULL, 1),
(25607, 19643, '3', 'Calicut University ', '', 'B.A.ENGLISH (LIT)', '2022', 70.00, '', 1, '2024-06-13 05:51:45', 0, NULL, 0, NULL, 1),
(25608, 19643, '1', 'State board of Kerla ', '', '', '2018', 70.00, '', 1, '2024-06-13 05:52:41', 1, '2024-06-13 05:54:47', 0, NULL, 0),
(25609, 19644, '1', 'State board ', '', '', '2018', 70.00, '', 1, '2024-06-13 05:53:09', 1, '2024-06-13 05:55:24', 0, NULL, 0),
(25610, 19643, '2', 'State board of Kerala ', '', '', '2018', 74.00, '', 1, '2024-06-13 05:53:23', 0, NULL, 0, NULL, 1),
(25611, 19644, '2', 'State board ', '', '', '2018', 75.00, '', 1, '2024-06-13 05:54:23', 0, NULL, 0, NULL, 1),
(25612, 19643, '1', 'State board of kerla', '', '', '2016', 70.00, '', 1, '2024-06-13 05:55:11', 0, NULL, 0, NULL, 1),
(25613, 19644, '1', 'State board ', '', '', '2016', 70.00, '', 1, '2024-06-13 05:55:57', 0, NULL, 0, NULL, 1),
(25614, 19644, '3', 'Bharathidasan university ', '', 'Bsc computer science ', '2021', 80.00, '', 1, '2024-06-13 05:57:21', 0, NULL, 0, NULL, 1),
(25615, 19644, '4', 'Bharathidasan university ', '', 'MSc computer science ', '2023', 86.00, '', 1, '2024-06-13 05:57:51', 0, NULL, 0, NULL, 1),
(25616, 19641, '1', 'Government boys hostel school ', '', '', '2018', 56.00, '', 1, '2024-06-13 06:00:23', 0, NULL, 0, NULL, 1),
(25617, 19641, '2', 'Bharathi metrics higher secondary school ', '', '', '2020', 65.00, '', 1, '2024-06-13 06:02:08', 0, NULL, 0, NULL, 1),
(25618, 19641, '3', 'Karpagam University ', '', 'Bsc computer technology ', '2023', 7.60, '', 1, '2024-06-13 06:03:44', 0, NULL, 0, NULL, 1),
(25619, 19646, '3', 'Thiruvalluvar university', '', 'BBA CA ', '2024', 85.00, '', 1, '2024-06-13 06:22:12', 0, NULL, 0, NULL, 1),
(25620, 19646, '2', 'State board ', '', '', '2021', 67.00, '', 1, '2024-06-13 06:23:10', 0, NULL, 0, NULL, 1),
(25621, 19646, '1', 'State board ', '', '', '2019', 57.00, '', 1, '2024-06-13 06:23:29', 0, NULL, 0, NULL, 1),
(25622, 19648, '1', 'State board ', '', 'B.com ', '2019', 51.00, '', 1, '2024-06-13 06:47:49', 0, NULL, 0, NULL, 1),
(25623, 19651, '4', 'V.O.chidhambaram college ', '', 'Msc', '2024', 90.00, '', 1, '2024-06-13 06:59:12', 0, NULL, 0, NULL, 1),
(25624, 19650, '3', 'madras university', '', 'ba -criminolo and police adminstration', '2023', 67.00, '', 1, '2024-06-13 07:05:28', 0, NULL, 0, NULL, 1),
(25625, 19649, '3', 'Madurai Kamaraj University', '', 'B.com(ca)', '2023', 62.00, '', 1, '2024-06-13 07:18:14', 0, NULL, 0, NULL, 1),
(25626, 19652, '4', 'Dr. MGR university', '', 'MBA', '2024', 84.00, '', 1, '2024-06-13 08:36:04', 0, NULL, 0, NULL, 1),
(25627, 19652, '3', 'Madras university', '', 'BBA', '2022', 81.00, '', 1, '2024-06-13 08:36:45', 0, NULL, 0, NULL, 1),
(25628, 19654, '4', 'Dr mgr University Chennai ', '', 'MBA Finance and Supply chain ', '2019', 7.50, '', 1, '2024-06-13 09:28:11', 0, NULL, 0, NULL, 1),
(25629, 19655, '3', 'Government arts college for men, Nandanam ', '', 'B.Sc Computer science ', '2023', 71.20, '', 1, '2024-06-13 10:17:06', 0, NULL, 0, NULL, 1),
(25630, 19655, '1', 'Government higher secondary school, Arumbakkam ', '', '', '2018', 93.80, '', 1, '2024-06-13 10:17:45', 0, NULL, 0, NULL, 1),
(25631, 19655, '2', 'Government higher secondary school, Arumbakkam ', '', '', '2020', 72.00, '', 1, '2024-06-13 10:18:03', 0, NULL, 0, NULL, 1),
(25632, 19656, '1', 'Mangalore ', '', '', '2014', 53.00, '', 1, '2024-06-14 03:36:08', 0, NULL, 0, NULL, 1),
(25633, 19657, '3', 'madras university', '', 'b.com', '2023', 7.50, '', 1, '2024-06-14 04:37:34', 0, NULL, 0, NULL, 1),
(25634, 19658, '3', 'thiruvalluar', '', 'bca', '2023', 74.00, '', 1, '2024-06-14 04:47:28', 0, NULL, 0, NULL, 1),
(25635, 19661, '3', 'Anna University ', '', 'BE Biomedical Engineering ', '2023', 81.00, '', 1, '2024-06-14 04:54:51', 0, NULL, 0, NULL, 1),
(25636, 19659, '3', 'University ', '', 'Bachelor\'s of Engineering ', '2023', 77.00, '', 1, '2024-06-14 04:57:23', 1, '2024-06-14 04:58:40', 0, NULL, 0),
(25637, 19659, '2', 'State board ', '', '', '2019', 62.00, '', 1, '2024-06-14 04:58:03', 1, '2024-06-14 05:00:00', 0, NULL, 0),
(25638, 19659, '1', 'State board ', '', '', '2017', 89.00, '', 1, '2024-06-14 04:58:24', 1, '2024-06-14 05:00:03', 0, NULL, 0),
(25639, 19664, '3', 'Anna university', '', 'B. E', '2022', 76.00, '', 1, '2024-06-14 04:58:56', 0, NULL, 0, NULL, 1),
(25640, 19659, '3', 'Anna University ', '', 'Bachelor\'s of Engineering ', '2023', 77.00, '', 1, '2024-06-14 04:59:34', 0, NULL, 0, NULL, 1),
(25641, 19664, '2', 'State board', '', '', '2018', 87.00, '', 1, '2024-06-14 04:59:42', 0, NULL, 0, NULL, 1),
(25642, 19659, '2', 'State board ', '', '', '2019', 62.00, '', 1, '2024-06-14 05:00:18', 0, NULL, 0, NULL, 1),
(25643, 19659, '1', 'State board ', '', '', '2017', 89.00, '', 1, '2024-06-14 05:00:34', 0, NULL, 0, NULL, 1),
(25644, 19663, '3', 'Anna University ', '', 'B.tech', '2021', 74.46, '', 1, '2024-06-14 05:01:27', 0, NULL, 0, NULL, 1),
(25645, 19660, '3', 'Anna University ', '', 'BE', '2023', 78.00, '', 1, '2024-06-14 05:01:35', 0, NULL, 0, NULL, 1),
(25646, 19665, '4', 'Madras University ', '', 'M.com', '2024', 80.00, '', 1, '2024-06-14 05:01:35', 0, NULL, 0, NULL, 1),
(25647, 19663, '2', 'State board ', '', '', '2017', 75.46, '', 1, '2024-06-14 05:02:10', 0, NULL, 0, NULL, 1),
(25648, 19663, '1', 'State board ', '', '', '2015', 88.00, '', 1, '2024-06-14 05:02:48', 0, NULL, 0, NULL, 1),
(25649, 19660, '1', 'State Board ', '', '', '2017', 88.00, '', 1, '2024-06-14 05:03:39', 0, NULL, 0, NULL, 1),
(25650, 19660, '2', 'State Board', '', '', '2019', 72.00, '', 1, '2024-06-14 05:04:09', 0, NULL, 0, NULL, 1),
(25651, 19666, '3', 'University of madras ', '', 'B.com corporate secretaryship ', '2024', 74.00, '', 1, '2024-06-14 05:04:30', 0, NULL, 0, NULL, 1),
(25652, 19666, '2', 'Dr.KK nirmala girls hr.sec school', '', '', '2021', 83.00, '', 1, '2024-06-14 05:05:12', 0, NULL, 0, NULL, 1),
(25653, 19666, '1', 'Anna adarsh ', '', '', '2019', 75.00, '', 1, '2024-06-14 05:05:38', 0, NULL, 0, NULL, 1),
(25654, 19667, '3', 'bangalore university', '', 'bcom', '2021', 81.00, '', 1, '2024-06-14 05:18:34', 0, NULL, 0, NULL, 1),
(25655, 19668, '1', 'Tamilnadu board of secondary education ', '', '', '2016', 89.00, '', 1, '2024-06-14 05:21:02', 0, NULL, 0, NULL, 1),
(25656, 19668, '2', 'tamilnadu board of secondary education ', '', '', '2018', 73.30, '', 1, '2024-06-14 05:22:03', 0, NULL, 0, NULL, 1),
(25657, 19670, '3', ' k ramakrishnan college of techology', '', 'be', '2023', 78.00, '', 1, '2024-06-14 05:24:22', 0, NULL, 0, NULL, 1),
(25658, 19671, '3', 'Anna', '', 'BE', '2023', 8.50, '', 1, '2024-06-14 05:25:17', 0, NULL, 0, NULL, 1),
(25659, 19662, '3', 'thiruvalluvar ', '', 'bsc', '2022', 62.00, '', 1, '2024-06-14 05:26:24', 0, NULL, 0, NULL, 1),
(25660, 19669, '3', 'Madras university', '', 'B. Sc', '2019', 70.00, '', 1, '2024-06-14 05:32:17', 0, NULL, 0, NULL, 1),
(25661, 19675, '3', 'Anna University ', '', 'B.E computer science and engineering ', '2024', 7.90, '', 1, '2024-06-14 06:01:35', 0, NULL, 0, NULL, 1),
(25662, 19675, '2', 'State board', '', '', '2020', 61.00, '', 1, '2024-06-14 06:03:05', 0, NULL, 0, NULL, 1),
(25663, 19675, '1', 'State board ', '', '', '2018', 83.00, '', 1, '2024-06-14 06:03:21', 0, NULL, 0, NULL, 1),
(25664, 19674, '3', 'M.s University ', '', 'B. Com C.A', '2019', 86.00, '', 1, '2024-06-14 06:20:42', 0, NULL, 0, NULL, 1),
(25665, 19674, '1', 'Tamilnadu ', '', '', '2014', 63.00, '', 1, '2024-06-14 06:21:25', 0, NULL, 0, NULL, 1),
(25666, 19674, '2', 'Tamilnadu ', '', '', '2016', 69.00, '', 1, '2024-06-14 06:21:51', 0, NULL, 0, NULL, 1),
(25667, 19679, '4', 'VHNSN COLLEGE ', '', 'MBA', '2024', 7.50, '', 1, '2024-06-14 07:38:03', 0, NULL, 0, NULL, 1),
(25668, 19680, '3', 'Madras University ', '', 'B.com', '2018', 58.00, '', 1, '2024-06-14 07:38:34', 0, NULL, 0, NULL, 1),
(25669, 19677, '3', 'University ', '', '', '2024', 60.00, '', 1, '2024-06-14 07:41:10', 0, NULL, 0, NULL, 1),
(25670, 19678, '3', 'University', '', 'B. B.A', '2024', 60.60, '', 1, '2024-06-14 07:42:35', 0, NULL, 0, NULL, 1),
(25671, 19681, '2', 'State', '', '', '2022', 58.00, '', 1, '2024-06-14 08:03:30', 0, NULL, 0, NULL, 1),
(25672, 19682, '3', 'Madaras university ', '', 'B.com', '2022', 81.00, '', 1, '2024-06-14 09:16:11', 0, NULL, 0, NULL, 1),
(25673, 19684, '3', 'Madras university ', '', 'B.Com(corporative secreteryship)', '2024', 70.00, '', 1, '2024-06-14 09:23:34', 0, NULL, 0, NULL, 1),
(25674, 19683, '5', 'madras university', '', 'jsjsjsjs', '2024', 70.00, '', 1, '2024-06-14 09:29:36', 0, NULL, 0, NULL, 1),
(25675, 19685, '4', 'Bharathidhasan University ', '', 'M.com', '2024', 69.00, '', 1, '2024-06-14 09:35:19', 0, NULL, 0, NULL, 1),
(25676, 19686, '3', 'University', '', 'BA', '2020', 65.00, '', 1, '2024-06-14 09:55:54', 0, NULL, 0, NULL, 1),
(25677, 19683, '3', 'universiry', '', 'bba', '2024', 50.00, '', 1, '2024-06-14 10:00:15', 0, NULL, 0, NULL, 1),
(25678, 19688, '3', 'Anna University of Chennai ', '', 'BE CSE', '2014', 71.00, '', 1, '2024-06-15 02:07:41', 0, NULL, 0, NULL, 1),
(25679, 19690, '3', 'M.R.K institute of technology ', '', 'B.E Civil engineering ', '2020', 72.00, '', 1, '2024-06-15 04:10:17', 0, NULL, 0, NULL, 1),
(25680, 19691, '3', 'anna university', '', 'be', '2020', 6.90, '', 1, '2024-06-15 04:24:19', 0, NULL, 0, NULL, 1),
(25681, 19693, '4', 'Bharthiyar university ', '', 'M.Com', '2024', 76.00, '', 1, '2024-06-15 04:33:43', 0, NULL, 0, NULL, 1),
(25682, 19694, '1', 'State board ', '', 'BCA ', '2018', 72.00, '', 1, '2024-06-15 04:36:43', 0, NULL, 0, NULL, 1),
(25683, 19694, '2', 'State board ', '', '', '2020', 69.00, '', 1, '2024-06-15 04:37:06', 0, NULL, 0, NULL, 1),
(25684, 19694, '4', 'SASTRA DEEMED TO BE UNIVERSITY ', '', 'BCA ', '2023', 70.00, '', 1, '2024-06-15 04:37:25', 0, NULL, 0, NULL, 1),
(25685, 19696, '3', 'Anna University ', '', 'B.E', '2023', 83.00, '', 1, '2024-06-15 04:42:33', 0, NULL, 0, NULL, 1),
(25686, 19695, '3', 'Periyar univercity ', '', 'B.com ', '2023', 78.00, '', 1, '2024-06-15 04:43:32', 0, NULL, 0, NULL, 1),
(25687, 19698, '3', 'Sri Devi Arts and science college ', '', 'B.sc.Computer science ', '2023', 80.00, '', 1, '2024-06-15 05:12:31', 0, NULL, 0, NULL, 1),
(25688, 19697, '5', 'Board ', '', 'Diploma mechanical engineering ', '2014', 85.00, '', 1, '2024-06-15 05:28:46', 0, NULL, 0, NULL, 1),
(25689, 19699, '3', 'Madras university ', '', 'B.s.c ( computer science)', '2024', 60.00, '', 1, '2024-06-15 05:30:37', 0, NULL, 0, NULL, 1),
(25690, 19699, '2', 'State board', '', '', '2024', 70.00, '', 1, '2024-06-15 05:31:08', 0, NULL, 0, NULL, 1),
(25691, 19699, '1', 'State board', '', '', '2024', 60.00, '', 1, '2024-06-15 05:31:26', 0, NULL, 0, NULL, 1),
(25692, 19701, '3', 'St. Peter\'s College of Engineering and technology ', '', 'BE-ECE ', '2024', 82.00, '', 1, '2024-06-15 05:32:18', 0, NULL, 0, NULL, 1),
(25693, 19700, '3', 'Paavai college of engineering ', '', 'Bachelor of engineering ', '2024', 7.64, '', 1, '2024-06-15 05:33:09', 0, NULL, 0, NULL, 1),
(25694, 19700, '2', 'Government girls Higher secondary school ', '', '', '2020', 59.00, '', 1, '2024-06-15 05:33:59', 0, NULL, 0, NULL, 1),
(25695, 19700, '1', 'Government girls Higher secondary school ', '', '', '2018', 69.00, '', 1, '2024-06-15 05:34:32', 0, NULL, 0, NULL, 1),
(25696, 19702, '3', 'Anna University ', '', 'B tech information technology ', '2023', 78.00, '', 1, '2024-06-15 05:38:30', 0, NULL, 0, NULL, 1),
(25697, 19703, '3', 'Anna University ', '', 'Bachelor of Engineering', '2023', 79.00, '', 1, '2024-06-15 05:43:57', 0, NULL, 0, NULL, 1),
(25698, 19708, '3', 'Anna University ', '', '', '2018', 68.00, '', 1, '2024-06-15 05:52:47', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(25699, 19708, '2', 'State board ', '', '', '2018', 75.00, '', 1, '2024-06-15 05:53:22', 0, NULL, 0, NULL, 1),
(25700, 19707, '3', 'Anna University ', '', 'B.tech', '2024', 83.00, '', 1, '2024-06-15 05:53:43', 0, NULL, 0, NULL, 1),
(25701, 19692, '4', 'Madras University ', '', 'M.com', '2024', 71.27, '', 1, '2024-06-15 05:58:44', 0, NULL, 0, NULL, 1),
(25702, 19706, '3', 'Madras University', '', 'BSc ', '2024', 60.00, '', 1, '2024-06-15 06:10:08', 0, NULL, 0, NULL, 1),
(25703, 19705, '3', 'university of Madras', '', 'Bsc', '2024', 63.00, '', 1, '2024-06-15 06:10:26', 0, NULL, 0, NULL, 1),
(25704, 19704, '3', 'Madras University ', '', 'Bsc', '2024', 65.67, '', 1, '2024-06-15 06:10:41', 0, NULL, 0, NULL, 1),
(25705, 19706, '2', 'State Board', '', '', '2021', 83.00, '', 1, '2024-06-15 06:11:32', 0, NULL, 0, NULL, 1),
(25706, 19704, '2', 'State board', '', '', '2021', 77.67, '', 1, '2024-06-15 06:11:44', 0, NULL, 0, NULL, 1),
(25707, 19705, '2', 'Sate board', '', '', '2021', 59.00, '', 1, '2024-06-15 06:11:53', 0, NULL, 0, NULL, 1),
(25708, 19706, '1', 'State Board ', '', '', '2019', 76.00, '', 1, '2024-06-15 06:12:20', 0, NULL, 0, NULL, 1),
(25709, 19704, '1', 'State board', '', '', '2019', 69.60, '', 1, '2024-06-15 06:12:27', 0, NULL, 0, NULL, 1),
(25710, 19705, '1', 'Sate board', '', '', '2019', 49.00, '', 1, '2024-06-15 06:12:37', 0, NULL, 0, NULL, 1),
(25711, 19709, '3', 'Madras University ', '', 'Bsc computer science ', '2020', 80.00, '', 1, '2024-06-15 06:21:28', 0, NULL, 0, NULL, 1),
(25712, 19712, '3', 'DR.MGR University ', '', 'BCA', '2021', 60.00, '', 1, '2024-06-15 06:28:24', 0, NULL, 0, NULL, 1),
(25713, 19711, '3', 'Anna University ', '', 'B.e', '2017', 60.00, '', 1, '2024-06-15 06:36:50', 0, NULL, 0, NULL, 1),
(25714, 19713, '3', 'Apollo engineering college ', '', 'B.E.,computer science and engineering ', '2024', 78.00, '', 1, '2024-06-15 06:59:50', 0, NULL, 0, NULL, 1),
(25715, 19714, '3', 'anna uuniversity', '', 'B.E', '2024', 75.00, '', 1, '2024-06-15 07:00:10', 0, NULL, 0, NULL, 1),
(25716, 19716, '3', 'A.M. Jain college ', '', 'BSC computer science ', '2020', 80.00, '', 1, '2024-06-15 07:37:04', 0, NULL, 0, NULL, 1),
(25717, 19715, '3', 'Madras university ', '', 'BA.history ', '2024', 75.00, '', 1, '2024-06-15 08:09:46', 0, NULL, 0, NULL, 1),
(25718, 19718, '3', 'The new college', '', 'Ba', '2023', 74.00, '', 1, '2024-06-15 08:18:09', 0, NULL, 0, NULL, 1),
(25719, 19717, '3', 'madras university', '', 'bca', '2024', 68.00, '', 1, '2024-06-15 10:38:48', 0, NULL, 0, NULL, 1),
(25720, 19719, '1', 'State board ', '', '', '2015', 91.40, '', 1, '2024-06-15 11:27:55', 0, NULL, 0, NULL, 1),
(25721, 19719, '3', 'Thiruvalluvar University ', '', 'B.com', '2020', 61.00, '', 1, '2024-06-15 11:29:41', 0, NULL, 0, NULL, 1),
(25722, 19719, '4', 'Anna university ', '', 'MBA', '2023', 7.79, '', 1, '2024-06-15 11:30:28', 0, NULL, 0, NULL, 1),
(25723, 19721, '3', 'Anna University', '', 'B.E ', '2023', 84.50, '', 1, '2024-06-17 04:36:20', 0, NULL, 0, NULL, 1),
(25724, 19722, '3', 'SRM UNIVERSITY ', '', 'Bsc computer science ', '2021', 71.00, '', 1, '2024-06-17 05:11:56', 0, NULL, 0, NULL, 1),
(25725, 19723, '5', 'Anna university ', '', 'Diploma ', '2023', 67.00, '', 1, '2024-06-17 05:13:48', 0, NULL, 0, NULL, 1),
(25726, 19727, '3', 'Autonomous ', '', 'Bba', '2024', 65.00, '', 1, '2024-06-17 05:55:12', 0, NULL, 0, NULL, 1),
(25727, 19726, '3', 'THIRUVALLUVAR UNIVERSITY', '', 'BCA', '2024', 81.00, '', 1, '2024-06-17 06:00:38', 0, NULL, 0, NULL, 1),
(25728, 19725, '5', 'K.S.Rangasamy Institute of technology', '', 'Computer Engineering', '2024', 90.00, '', 1, '2024-06-17 06:07:55', 0, NULL, 0, NULL, 1),
(25729, 19729, '4', 'Vishwavishwa Technological university Belagavi ', '', 'MBA ', '2023', 63.00, '', 1, '2024-06-17 06:24:14', 0, NULL, 0, NULL, 1),
(25730, 19728, '3', 'University ', '', 'BBA', '2024', 72.00, '', 1, '2024-06-17 06:36:47', 0, NULL, 0, NULL, 1),
(25731, 19730, '3', 'Madras University ', '', 'B com general ', '2024', 66.00, '', 1, '2024-06-17 06:40:04', 0, NULL, 0, NULL, 1),
(25732, 19720, '3', 'Anna University ', '', 'BE', '2018', 78.00, '', 1, '2024-06-17 07:03:11', 1, '2024-06-17 07:04:57', 0, NULL, 1),
(25733, 19720, '2', 'State Board ', '', '', '2014', 94.00, '', 1, '2024-06-17 07:03:43', 1, '2024-06-17 07:04:47', 0, NULL, 1),
(25734, 19720, '1', 'State Board', '', '', '2012', 84.00, '', 1, '2024-06-17 07:04:03', 0, NULL, 0, NULL, 1),
(25735, 19732, '3', 'University ', '', 'BBA', '2024', 76.00, '', 1, '2024-06-17 08:31:06', 0, NULL, 0, NULL, 1),
(25736, 19733, '3', 'Anna university', '', 'BE', '2023', 7.93, '', 1, '2024-06-17 09:36:44', 0, NULL, 0, NULL, 1),
(25737, 19734, '4', 'Madras University ', '', 'MBA Finance management ', '2024', 70.00, '', 1, '2024-06-17 09:47:21', 0, NULL, 0, NULL, 1),
(25738, 19735, '3', 'Thiagarajar college madurai ', '', 'B.com BPS', '2023', 8.63, '', 1, '2024-06-17 09:55:53', 0, NULL, 0, NULL, 1),
(25739, 19740, '5', 'Directorate of Technical Education ', '', '', '2024', 85.00, '', 1, '2024-06-18 05:35:11', 0, NULL, 0, NULL, 1),
(25740, 19737, '3', 'Madras University', '', 'B.Com', '2020', 65.00, '', 1, '2024-06-18 05:40:04', 0, NULL, 0, NULL, 1),
(25741, 19736, '3', 'Periyar University ', '', 'BCA', '2024', 75.00, '', 1, '2024-06-18 05:41:36', 0, NULL, 0, NULL, 1),
(25742, 19739, '3', 'University', '', 'Bachelor\'s of science', '2020', 50.00, '', 1, '2024-06-18 05:44:19', 0, NULL, 0, NULL, 1),
(25743, 19744, '3', 'Jaya collage of arts and science', '', 'B C A ', '2023', 60.00, '', 1, '2024-06-18 05:48:00', 0, NULL, 0, NULL, 1),
(25744, 19741, '3', 'University of madras', '', 'BCA', '2024', 65.00, '', 1, '2024-06-18 05:48:01', 0, NULL, 0, NULL, 1),
(25745, 19743, '3', 'university of madras', '', 'b.c.a', '2023', 74.00, '', 1, '2024-06-18 05:49:00', 0, NULL, 0, NULL, 1),
(25746, 19743, '5', 'dote ', '', 'computer engineering', '2021', 81.00, '', 1, '2024-06-18 05:50:10', 0, NULL, 0, NULL, 1),
(25747, 19745, '3', 'Mar greiogus arts & science college', '', 'B.com(cs)', '2023', 70.00, '', 1, '2024-06-18 05:50:43', 0, NULL, 0, NULL, 1),
(25748, 19742, '3', 'Madras University ', '', 'B.Com', '2024', 78.00, '', 1, '2024-06-18 05:51:29', 0, NULL, 0, NULL, 1),
(25749, 19747, '3', 'Madras University ', '', 'B.A Philosophy ', '2024', 70.00, '', 1, '2024-06-18 05:55:04', 0, NULL, 0, NULL, 1),
(25750, 19746, '4', 'Db jain institute of management ', '', 'MBA(HR & Marketing management)', '2023', 60.00, '', 1, '2024-06-18 06:02:32', 0, NULL, 0, NULL, 1),
(25751, 19749, '3', 'Madras University ', '', 'Bsc computer science ', '2024', 73.00, '', 1, '2024-06-18 06:04:35', 0, NULL, 0, NULL, 1),
(25752, 19738, '3', 'University of Madras ', '', 'B .com', '2024', 67.00, '', 1, '2024-06-18 06:09:03', 0, NULL, 0, NULL, 1),
(25753, 19751, '3', 'University of madras ', '', 'B com general ', '2024', 73.00, '', 1, '2024-06-18 06:24:22', 0, NULL, 0, NULL, 1),
(25754, 19750, '3', 'Madras university', '', 'Bsc. Psychology', '2024', 62.00, '', 1, '2024-06-18 06:41:46', 0, NULL, 0, NULL, 1),
(25755, 19753, '3', 'Atoms ', '', 'BBA', '2023', 79.00, '', 1, '2024-06-18 06:44:13', 0, NULL, 0, NULL, 1),
(25756, 19752, '3', 'St Peter University', '', 'Bcom ', '2023', 75.00, '', 1, '2024-06-18 06:45:53', 0, NULL, 0, NULL, 1),
(25757, 19754, '3', 'university of madras', '', 'ba criminology ', '2024', 80.00, '', 1, '2024-06-18 06:48:25', 0, NULL, 0, NULL, 1),
(25758, 19755, '3', 'Agurchand manmull jain college ', '', 'B.com', '2024', 60.00, '', 1, '2024-06-18 06:57:40', 0, NULL, 0, NULL, 1),
(25759, 19756, '3', 'Gkm college of engineering and technology ', '', 'B.E.(CSE)', '2020', 6.50, '', 1, '2024-06-18 07:13:10', 0, NULL, 0, NULL, 1),
(25760, 19756, '1', 'P.A.K.PALANISWAMY HR.SEC SCHOOL', '', '', '2014', 72.00, '', 1, '2024-06-18 07:14:01', 0, NULL, 0, NULL, 1),
(25761, 19756, '2', 'REVOOR PADMANABHA CHETTYS MAT HR SEC SCHOOL', '', '', '2016', 64.00, '', 1, '2024-06-18 07:14:43', 0, NULL, 0, NULL, 1),
(25762, 19757, '3', 'Madras of university', '', 'B. Com genral', '2024', 60.00, '', 1, '2024-06-18 07:43:11', 0, NULL, 0, NULL, 1),
(25763, 19758, '3', 'University of Madras ', '', 'Bcom general ', '2024', 60.00, '', 1, '2024-06-18 07:44:05', 0, NULL, 0, NULL, 1),
(25764, 19759, '1', 'Madras University', '', '', '2024', 55.00, '', 1, '2024-06-18 07:54:56', 1, '2024-06-18 07:56:17', 0, NULL, 0),
(25765, 19759, '3', 'Madras university', '', 'B. Com', '2024', 55.00, '', 1, '2024-06-18 07:55:34', 0, NULL, 0, NULL, 1),
(25766, 19760, '3', 'Madras University ', '', 'Bcom General ', '2024', 70.00, '', 1, '2024-06-18 07:55:44', 0, NULL, 0, NULL, 1),
(25767, 19761, '3', 'Madras University ', '', 'Bsc', '2024', 77.00, '', 1, '2024-06-18 08:19:31', 0, NULL, 0, NULL, 1),
(25768, 19762, '3', 'Madras university ', '', 'BSc ', '2024', 77.00, '', 1, '2024-06-18 09:52:26', 0, NULL, 0, NULL, 1),
(25769, 19766, '3', 'Panimalar Institute of technology', '', 'B. Tech Information Technology ', '2024', 8.52, '', 1, '2024-06-19 04:36:27', 0, NULL, 0, NULL, 1),
(25770, 19767, '3', 'Madras university', '', 'B. Com', '2024', 84.00, '', 1, '2024-06-19 04:51:04', 0, NULL, 0, NULL, 1),
(25771, 19769, '3', 'Justice basheer Ahmed Sayeed college for women ', '', 'BCA', '2024', 60.00, '', 1, '2024-06-19 05:06:56', 0, NULL, 0, NULL, 1),
(25772, 19768, '3', 'University of Madras ', '', 'BBA ', '2024', 78.00, '', 1, '2024-06-19 05:07:21', 0, NULL, 0, NULL, 1),
(25773, 19771, '3', 'Madras University ', '', 'B.com', '2024', 65.00, '', 1, '2024-06-19 05:19:36', 0, NULL, 0, NULL, 1),
(25774, 19770, '3', 'Madras University ', '', 'B.com', '2024', 65.00, '', 1, '2024-06-19 05:19:39', 0, NULL, 0, NULL, 1),
(25775, 19774, '3', 'Annamalai university ', '', 'Bsc.Mathematics', '2024', 68.00, '', 1, '2024-06-19 05:36:49', 0, NULL, 0, NULL, 1),
(25776, 19773, '3', 'Annamalai University ', '', 'Bsc', '2024', 68.00, '', 1, '2024-06-19 05:37:47', 0, NULL, 0, NULL, 1),
(25777, 19776, '3', 'University of madras', '', 'BBA', '2024', 61.00, '', 1, '2024-06-19 05:54:31', 0, NULL, 0, NULL, 1),
(25778, 19764, '4', 'Adhichunchnagiri university ', '', 'Bcom', '2021', 64.00, '', 1, '2024-06-19 05:55:30', 0, NULL, 0, NULL, 1),
(25779, 19775, '3', 'Madras University ', '', 'B.com', '2024', 53.00, '', 1, '2024-06-19 05:58:23', 0, NULL, 0, NULL, 1),
(25780, 19777, '3', 'JHA Agarsen college ', '', 'B.com ( Information System management)', '2024', 75.00, '', 1, '2024-06-19 06:03:34', 0, NULL, 0, NULL, 1),
(25781, 19779, '3', 'University of Madras ', '', 'BCA ', '2024', 78.00, '', 1, '2024-06-19 06:14:18', 0, NULL, 0, NULL, 1),
(25782, 19778, '3', 'Bharathidhasan university', '', 'Bca', '2019', 58.00, '', 1, '2024-06-19 06:16:10', 0, NULL, 0, NULL, 1),
(25783, 19780, '3', 'RMK college of engineering and technology', '', 'B. Tech (IT)', '2014', 6.90, '', 1, '2024-06-19 06:21:24', 0, NULL, 0, NULL, 1),
(25784, 19772, '3', 'Anna University ', '', 'BE.Mechanical', '2022', 67.00, '', 1, '2024-06-19 06:28:16', 0, NULL, 0, NULL, 1),
(25785, 19782, '4', 'University of Madras ', '', 'M.sC(cS)', '2019', 60.00, '', 1, '2024-06-19 06:38:00', 0, NULL, 0, NULL, 1),
(25786, 19763, '3', 'Bharathidhasan', '', 'BA Defence ', '2023', 78.00, '', 1, '2024-06-19 06:49:45', 0, NULL, 0, NULL, 1),
(25787, 19784, '3', 'University Of Madras', '', 'B.com(General)', '2024', 83.00, '', 1, '2024-06-19 06:58:12', 0, NULL, 0, NULL, 1),
(25788, 19783, '3', 'University ot madras ', '', 'B. Com(general) ', '2024', 64.00, '', 1, '2024-06-19 06:58:13', 0, NULL, 0, NULL, 1),
(25789, 19785, '3', 'University of Madras ', '', 'BSW', '2023', 80.00, '', 1, '2024-06-19 07:04:33', 0, NULL, 0, NULL, 1),
(25790, 19786, '3', 'Madras University ', '', 'B.A history ', '2024', 72.00, '', 1, '2024-06-19 07:05:47', 0, NULL, 0, NULL, 1),
(25791, 19781, '3', 'Madras university', '', 'Bcom general', '2021', 72.00, '', 1, '2024-06-19 07:11:29', 0, NULL, 0, NULL, 1),
(25792, 19787, '4', 'Annamalai University ', '', 'MSc chemistry ', '2023', 70.00, '', 1, '2024-06-19 07:11:52', 0, NULL, 0, NULL, 1),
(25793, 19787, '4', 'Annamalai University ', '', 'MSc chemistry ', '2023', 70.00, '', 1, '2024-06-19 07:12:32', 0, NULL, 0, NULL, 1),
(25794, 19765, '5', 'vel tech Polytechnic College ', '', '', '2017', 72.00, '', 1, '2024-06-19 09:23:00', 0, NULL, 0, NULL, 1),
(25795, 19789, '3', 'Madras university', '', 'B. Com(general) ', '2022', 70.05, '', 1, '2024-06-19 09:28:04', 0, NULL, 0, NULL, 1),
(25796, 19790, '3', 'Queen Mary\'s College ', '', 'BA economics ', '2022', 78.00, '', 1, '2024-06-19 09:31:05', 0, NULL, 0, NULL, 1),
(25797, 19791, '2', 'T.E.L.E.C. Girls higher secondary school ', '', '', '2016', 65.00, '', 1, '2024-06-19 09:31:43', 0, NULL, 0, NULL, 1),
(25798, 19793, '3', 'Anna University', '', 'B. E', '2024', 67.00, '', 1, '2024-06-19 09:33:04', 0, NULL, 0, NULL, 1),
(25799, 19788, '3', 'University ', '', 'BBA', '2024', 65.00, '', 1, '2024-06-19 10:09:42', 0, NULL, 0, NULL, 1),
(25800, 19796, '3', 'Bhaathidasan university', '', 'BCA', '2024', 78.00, '', 1, '2024-06-20 04:36:44', 0, NULL, 0, NULL, 1),
(25801, 19800, '3', 'Egs Pillay arts and science college ', '', 'BBA', '2024', 73.00, '', 1, '2024-06-20 05:03:22', 0, NULL, 0, NULL, 1),
(25802, 19797, '3', 'Bharathithasan university ', '', 'BCA', '2024', 76.00, '', 1, '2024-06-20 05:04:37', 0, NULL, 0, NULL, 1),
(25803, 19798, '3', 'Bharathithasan university ', '', 'BCS', '2024', 70.00, '', 1, '2024-06-20 05:10:03', 0, NULL, 0, NULL, 1),
(25804, 19799, '3', 'Bharathidasan University ', '', 'BCA', '2024', 78.00, '', 1, '2024-06-20 05:14:23', 0, NULL, 0, NULL, 1),
(25805, 19801, '3', 'University ', '', 'B.com bank management ', '2024', 65.00, '', 1, '2024-06-20 05:24:11', 0, NULL, 0, NULL, 1),
(25806, 19802, '3', 'Anna University ', '', 'B.E', '2024', 8.62, '', 1, '2024-06-20 05:57:05', 0, NULL, 0, NULL, 1),
(25807, 19803, '3', 'St.Joseph\'s College Of Engineering and Technology ', '', 'B.Tech IT ', '2024', 7.67, '', 1, '2024-06-20 05:57:06', 0, NULL, 0, NULL, 1),
(25808, 19803, '1', 'Sunbeam Matriculation Higher Secondary School ', '', '', '2018', 79.20, '', 1, '2024-06-20 05:57:55', 0, NULL, 0, NULL, 1),
(25809, 19802, '1', 'CBSE', '', '', '2018', 62.00, '', 1, '2024-06-20 05:58:04', 0, NULL, 0, NULL, 1),
(25810, 19803, '2', 'St.Patrick\'s Anglo Indian Higher Secondary School ', '', '', '2020', 59.00, '', 1, '2024-06-20 05:58:20', 0, NULL, 0, NULL, 1),
(25811, 19802, '2', 'State board', '', '', '2020', 72.00, '', 1, '2024-06-20 05:58:35', 0, NULL, 0, NULL, 1),
(25812, 19805, '3', 'Madras University', '', 'B.com general ', '2024', 75.00, '', 1, '2024-06-20 06:08:55', 0, NULL, 0, NULL, 1),
(25813, 19804, '3', 'University of Madras ', '', 'B.COM GENERAL ', '2024', 75.00, '', 1, '2024-06-20 06:09:03', 0, NULL, 0, NULL, 1),
(25814, 19808, '4', 'Karaikudi Alagappa university ', '', 'Mathematics ', '2024', 78.00, '', 1, '2024-06-20 07:08:32', 0, NULL, 0, NULL, 1),
(25815, 19809, '5', 'Panimalar', '', 'Computer engineering ', '2024', 70.00, '', 1, '2024-06-20 07:37:19', 0, NULL, 0, NULL, 1),
(25816, 19811, '3', 'Madras university ', '', 'BBA', '2020', 50.00, '', 1, '2024-06-20 07:57:44', 0, NULL, 0, NULL, 1),
(25817, 19812, '3', 'Madras University ', '', 'B sc chemistry ', '2015', 75.00, '', 1, '2024-06-20 08:27:54', 0, NULL, 0, NULL, 1),
(25818, 19813, '2', 'State board ', '', '', '2017', 69.00, '', 1, '2024-06-20 10:11:15', 0, NULL, 0, NULL, 1),
(25819, 19813, '3', 'Karpagam university ', '', 'b.pharm', '2021', 68.40, '', 1, '2024-06-20 10:11:50', 0, NULL, 0, NULL, 1),
(25820, 19815, '4', 'SRM ', '', 'MBA', '2024', 84.00, '', 1, '2024-06-20 01:48:34', 0, NULL, 0, NULL, 1),
(25821, 19817, '4', 'Dr.mgr university ', '', 'MBA', '2024', 80.00, '', 1, '2024-06-21 05:13:07', 0, NULL, 0, NULL, 1),
(25822, 19818, '3', 'University of madras ', '', 'B. Com(Computer application) ', '2024', 73.00, '', 1, '2024-06-21 05:35:45', 0, NULL, 0, NULL, 1),
(25823, 19821, '3', 'Anna University ', '', 'B.E Petrochemical Engineering ', '2022', 76.00, '', 1, '2024-06-21 05:57:15', 1, '2024-06-21 05:57:41', 0, NULL, 1),
(25824, 19819, '3', 'University of Madras', '', 'BBA ', '2024', 65.00, '', 1, '2024-06-21 05:57:47', 0, NULL, 0, NULL, 1),
(25825, 19820, '3', 'ANNA UNIVERSITY', '', 'BE', '2023', 8.07, '', 1, '2024-06-21 05:59:27', 0, NULL, 0, NULL, 1),
(25826, 19822, '3', 'University of madras', '', 'B.com', '2024', 75.00, '', 1, '2024-06-21 06:46:43', 0, NULL, 0, NULL, 1),
(25827, 19823, '3', 'University of Madras', '', 'BBA', '2024', 65.00, '', 1, '2024-06-21 06:51:31', 0, NULL, 0, NULL, 1),
(25828, 19827, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2024', 8.08, '', 1, '2024-06-21 07:48:56', 0, NULL, 0, NULL, 1),
(25829, 19826, '3', 'Anna University ', '', 'B.Tech', '2024', 79.00, '', 1, '2024-06-21 07:50:12', 0, NULL, 0, NULL, 1),
(25830, 19825, '3', 'Madras University ', '', 'B.A.Tamil', '2024', 72.00, '', 1, '2024-06-21 07:55:49', 0, NULL, 0, NULL, 1),
(25831, 19828, '3', 'Banglore University', '', 'B.Com', '2023', 75.00, '', 1, '2024-06-21 08:27:45', 0, NULL, 0, NULL, 1),
(25832, 19829, '3', 'Madras university/ Justice Basheer Ahmed Sayeed College For Women ', '', 'BBA', '2023', 68.00, '', 1, '2024-06-21 09:51:05', 0, NULL, 0, NULL, 1),
(25833, 19830, '3', 'Madras university/ Justice Basheer Ahmed Sayeed College For Women ', '', 'BBA', '2024', 71.00, '', 1, '2024-06-21 10:05:13', 0, NULL, 0, NULL, 1),
(25834, 19831, '4', 'SONA COLLEGE OF TECHNOLOGY ', '', 'MBA', '2024', 7.70, '', 1, '2024-06-21 10:13:01', 0, NULL, 0, NULL, 1),
(25835, 19832, '1', 'state board', '', '', '2015', 89.00, '', 1, '2024-06-21 10:23:16', 0, NULL, 0, NULL, 1),
(25836, 19832, '2', 'state board', '', '', '2017', 79.00, '', 1, '2024-06-21 10:23:34', 0, NULL, 0, NULL, 1),
(25837, 19832, '3', 'periyar university', '', 'b.sc.physics', '2020', 70.00, '', 1, '2024-06-21 10:24:03', 0, NULL, 0, NULL, 1),
(25838, 19832, '4', 'jntu', '', 'm.b.a', '2024', 91.00, '', 1, '2024-06-21 10:24:34', 0, NULL, 0, NULL, 1),
(25839, 19833, '3', 'Annai Veilankanni College ', '', 'BCA', '2021', 80.00, '', 1, '2024-06-22 03:08:58', 0, NULL, 0, NULL, 1),
(25840, 19834, '3', 'Anna university ', '', 'EEE', '2020', 70.00, '', 1, '2024-06-22 05:04:48', 0, NULL, 0, NULL, 1),
(25841, 19835, '3', 'Dr.mgr educational and research institude ', '', 'b.tech', '2024', 7.50, '', 1, '2024-06-22 05:32:30', 0, NULL, 0, NULL, 1),
(25842, 19836, '4', 'Anna university', '', 'Master of business administration', '2021', 74.00, '', 1, '2024-06-22 05:45:08', 0, NULL, 0, NULL, 1),
(25843, 19837, '4', 'Madras University ', '', 'Msc', '2024', 83.00, '', 1, '2024-06-22 06:17:30', 0, NULL, 0, NULL, 1),
(25844, 19838, '2', 'state board', '', '', '2021', 55.00, '', 1, '2024-06-22 06:23:07', 0, NULL, 0, NULL, 1),
(25845, 19839, '3', 'madras university', '', 'bcom', '2024', 73.00, '', 1, '2024-06-22 09:57:43', 0, NULL, 0, NULL, 1),
(25846, 19840, '3', 'university', '', 'b.sc', '2018', 72.00, '', 1, '2024-06-22 01:05:42', 0, NULL, 0, NULL, 1),
(25847, 19840, '1', 'board', '', '', '2010', 85.00, '', 1, '2024-06-22 01:06:10', 0, NULL, 0, NULL, 1),
(25848, 19840, '2', 'board', '', '', '2012', 69.00, '', 1, '2024-06-22 01:07:05', 0, NULL, 0, NULL, 1),
(25849, 19842, '3', 'Madras university ', '', 'Bcom', '2024', 83.00, '', 1, '2024-06-22 03:23:07', 0, NULL, 0, NULL, 1),
(25850, 19843, '3', 'mgr university', '', 'b.tech ece', '2024', 70.00, '', 1, '2024-06-22 05:55:19', 0, NULL, 0, NULL, 1),
(25851, 19844, '3', 'MADRES UNIVERSITY ', '', 'B.COM ACCOUNTING AND FINANCE ', '2024', 65.00, '', 1, '2024-06-23 03:18:17', 0, NULL, 0, NULL, 1),
(25852, 19845, '4', 'Bharathidasan University ', '', 'Mca', '2022', 78.00, '', 1, '2024-06-24 04:34:09', 0, NULL, 0, NULL, 1),
(25853, 19846, '3', 'Periyar university ', '', 'BSc Maths ', '2017', 80.00, '', 1, '2024-06-24 04:39:05', 0, NULL, 0, NULL, 1),
(25854, 19848, '3', 'Alagappa University ', '', 'B .com', '2024', 85.00, '', 1, '2024-06-24 05:06:57', 0, NULL, 0, NULL, 1),
(25855, 19847, '4', 'Madras University ', '', 'M.A. English Literature ', '2022', 61.00, '', 1, '2024-06-24 05:08:52', 0, NULL, 0, NULL, 1),
(25856, 19850, '3', 'vels universtiy pallavar ', '', 'bsc visual communication', '2022', 80.00, '', 1, '2024-06-24 05:25:13', 0, NULL, 0, NULL, 1),
(25857, 19852, '3', 'Thiruvalluvar ', '', 'B.Com Computer Application ', '2024', 95.00, '', 1, '2024-06-24 05:41:17', 0, NULL, 0, NULL, 1),
(25858, 19853, '3', 'University of madras ', '', 'B.com', '2022', 76.40, '', 1, '2024-06-24 05:42:03', 0, NULL, 0, NULL, 1),
(25859, 19853, '2', 'Maharishi school of excellence ', '', '', '2019', 81.00, '', 1, '2024-06-24 05:42:32', 0, NULL, 0, NULL, 1),
(25860, 19853, '4', 'University of madras ', '', 'M.com', '2024', 75.00, '', 1, '2024-06-24 05:43:04', 0, NULL, 0, NULL, 1),
(25861, 19851, '3', 'Thiruvalluvar university ', '', 'B.Com Computer Application ', '2024', 95.00, '', 1, '2024-06-24 06:14:43', 0, NULL, 0, NULL, 1),
(25862, 19855, '3', 'Anna University ', '', 'B.E', '2019', 6.25, '', 1, '2024-06-24 06:19:44', 0, NULL, 0, NULL, 1),
(25863, 19854, '3', 'Madars univarsity ', '', 'B.com (g)', '2024', 70.00, '', 1, '2024-06-24 06:20:55', 0, NULL, 0, NULL, 1),
(25864, 19849, '3', 'madras university', '', 'ba economics', '2024', 75.00, '', 1, '2024-06-24 06:25:18', 0, NULL, 0, NULL, 1),
(25865, 19856, '3', 'Loyola', '', 'B.com', '2024', 60.00, '', 1, '2024-06-24 06:25:58', 0, NULL, 0, NULL, 1),
(25866, 19857, '4', 'University of madras', '', 'Mca', '2024', 80.00, '', 1, '2024-06-24 06:46:35', 0, NULL, 0, NULL, 1),
(25867, 19857, '3', 'University of madras', '', 'Bca', '2022', 80.00, '', 1, '2024-06-24 06:48:17', 0, NULL, 0, NULL, 1),
(25868, 19858, '3', 'University ', '', 'BE', '2019', 75.00, '', 1, '2024-06-24 07:05:20', 0, NULL, 0, NULL, 1),
(25869, 19859, '3', 'Madras university ', '', 'BCA ', '2024', 75.00, '', 1, '2024-06-24 09:06:58', 0, NULL, 0, NULL, 1),
(25870, 19860, '3', 'thiruvaluvar university', '', 'bsc zoology', '2024', 75.00, '', 1, '2024-06-24 10:31:30', 0, NULL, 0, NULL, 1),
(25871, 19862, '4', 'University of Madras ', '', 'M.A.', '2024', 75.00, '', 1, '2024-06-25 04:56:53', 0, NULL, 0, NULL, 1),
(25872, 19863, '3', 'anna university', '', 'b.e', '2023', 76.00, '', 1, '2024-06-25 04:56:55', 0, NULL, 0, NULL, 1),
(25873, 19863, '2', 'state board of tamilnadu', '', '', '2019', 60.00, '', 1, '2024-06-25 04:57:49', 0, NULL, 0, NULL, 1),
(25874, 19864, '3', 'Kcg college of technology ', '', 'Bachelor of engineering ', '2020', 64.00, '', 1, '2024-06-25 04:59:42', 0, NULL, 0, NULL, 1),
(25875, 19865, '3', 'University of madras', '', 'Bsc.cs', '2024', 77.00, '', 1, '2024-06-25 05:24:58', 0, NULL, 0, NULL, 1),
(25876, 19866, '3', 'Madras university', '', 'Ba English', '2022', 85.00, '', 1, '2024-06-25 05:27:45', 0, NULL, 0, NULL, 1),
(25877, 19867, '3', 'Madras University ', '', 'Bsc botany', '2024', 70.00, '', 1, '2024-06-25 05:51:20', 0, NULL, 0, NULL, 1),
(25878, 19867, '2', 'Govt higher secondary school ', '', '', '2021', 75.00, '', 1, '2024-06-25 05:52:00', 0, NULL, 0, NULL, 1),
(25879, 19868, '4', 'Periyar University ', '', 'Computer science ', '2023', 75.00, '', 1, '2024-06-25 05:53:55', 0, NULL, 0, NULL, 1),
(25880, 19868, '3', 'Periyar University ', '', 'Computer science ', '2021', 78.00, '', 1, '2024-06-25 05:54:35', 0, NULL, 0, NULL, 1),
(25881, 19870, '3', 'Dharmapuram Adhinam Arts College ', '', 'BCA ', '2024', 70.00, '', 1, '2024-06-25 06:07:09', 0, NULL, 0, NULL, 1),
(25882, 19869, '3', 'Anna University', '', 'BE(CSE)', '2024', 8.10, '', 1, '2024-06-25 06:09:46', 0, NULL, 0, NULL, 1),
(25883, 19872, '3', 'Prist college of engineering ', '', 'B.TECH(EEE)', '2021', 80.00, '', 1, '2024-06-25 06:27:04', 0, NULL, 0, NULL, 1),
(25884, 19873, '3', 'GTN Arts and Science college ', '', 'B. Sc IT', '2024', 84.00, '', 1, '2024-06-25 06:27:34', 0, NULL, 0, NULL, 1),
(25885, 19871, '3', 'Kamarajar University ', '', 'BBA', '2020', 69.00, '', 1, '2024-06-25 06:32:05', 0, NULL, 0, NULL, 1),
(25886, 19871, '2', 'Private ', '', '', '2014', 60.00, '', 1, '2024-06-25 06:33:05', 0, NULL, 0, NULL, 1),
(25887, 19874, '3', 'Thiruvalluvar University ', '', 'BA English ', '2021', 50.00, '', 1, '2024-06-25 06:49:10', 0, NULL, 0, NULL, 1),
(25888, 19875, '3', 'Kumararani Meena Muthiah college of arts and science ', '', 'Bsc cs', '2016', 55.00, '', 1, '2024-06-25 07:13:59', 0, NULL, 0, NULL, 1),
(25889, 19876, '4', 'Madras University ', '', 'MA Corporate Economics ', '2024', 70.00, '', 1, '2024-06-25 07:16:47', 0, NULL, 0, NULL, 1),
(25890, 19876, '3', 'Madras University ', '', 'BA Economics ', '2022', 76.00, '', 1, '2024-06-25 07:17:22', 0, NULL, 0, NULL, 1),
(25891, 19876, '2', 'State board of tamilnadu ', '', '', '2019', 75.00, '', 1, '2024-06-25 07:17:58', 0, NULL, 0, NULL, 1),
(25892, 19876, '1', 'State board of tamilnadu ', '', '', '2017', 85.00, '', 1, '2024-06-25 07:18:18', 0, NULL, 0, NULL, 1),
(25893, 19878, '1', 'State ', '', '', '2017', 77.00, '', 1, '2024-06-25 07:37:21', 0, NULL, 0, NULL, 1),
(25894, 19883, '3', 'Anna University ', '', 'BE', '2024', 8.35, '', 1, '2024-06-25 07:44:10', 0, NULL, 0, NULL, 1),
(25895, 19877, '5', 'Er.Sri palvannan memorial  iti', '', 'Iti', '2016', 47.00, '', 1, '2024-06-25 07:44:43', 1, '2024-06-25 07:47:27', 0, NULL, 1),
(25896, 19883, '2', 'State board ', '', '', '2020', 8.35, '', 1, '2024-06-25 07:45:07', 0, NULL, 0, NULL, 1),
(25897, 19884, '3', 'Anna university', '', 'BE.Cse', '2024', 83.00, '', 1, '2024-06-25 07:46:05', 0, NULL, 0, NULL, 1),
(25898, 19884, '2', 'Skateboard', '', '', '2020', 54.00, '', 1, '2024-06-25 07:46:23', 0, NULL, 0, NULL, 1),
(25899, 19884, '1', 'Skateboard', '', '', '2018', 65.00, '', 1, '2024-06-25 07:46:49', 0, NULL, 0, NULL, 1),
(25900, 19881, '3', 'TIRIUVALLUR UNIVERSITY ', '', 'B.COM(C.A)', '2024', 85.00, '', 1, '2024-06-25 07:58:13', 0, NULL, 0, NULL, 1),
(25901, 19879, '3', 'THIRUVALLUVAR UNIVERSITY ', '', 'BSC(C.S)', '2024', 85.00, '', 1, '2024-06-25 07:59:54', 0, NULL, 0, NULL, 1),
(25902, 19880, '3', 'Thiruvalluvar university ', '', 'B.COM CA', '2024', 85.00, '', 1, '2024-06-25 08:00:38', 0, NULL, 0, NULL, 1),
(25903, 19886, '4', 'srm university', '', 'bcom comme ', '2023', 87.70, '', 1, '2024-06-25 08:46:57', 0, NULL, 0, NULL, 1),
(25904, 19886, '1', 'sri ramakrishna mission higher secondary school', '', '', '2017', 72.00, '', 1, '2024-06-25 08:48:24', 1, '2024-06-25 08:48:44', 0, NULL, 0),
(25905, 19888, '4', 'meenakshi sundararajan school of management ', '', 'mba', '2024', 82.00, '', 1, '2024-06-25 04:33:40', 0, NULL, 0, NULL, 1),
(25906, 19888, '3', 'anna adharsh college for women', '', 'b.com general', '2022', 78.00, '', 1, '2024-06-25 04:35:17', 0, NULL, 0, NULL, 1),
(25907, 19889, '3', 'University ', '', 'B.A.English', '2024', 65.00, '', 1, '2024-06-26 05:01:08', 0, NULL, 0, NULL, 1),
(25908, 19891, '3', 'Anna University ', '', 'B.E', '2020', 7.82, '', 1, '2024-06-26 05:08:59', 0, NULL, 0, NULL, 1),
(25909, 19891, '2', 'State Board ', '', '', '2016', 85.58, '', 1, '2024-06-26 05:09:28', 0, NULL, 0, NULL, 1),
(25910, 19891, '1', 'State Board ', '', '', '2014', 92.00, '', 1, '2024-06-26 05:09:49', 0, NULL, 0, NULL, 1),
(25911, 19892, '3', 'University ', '', 'BSC MATHS ', '2024', 69.00, '', 1, '2024-06-26 05:11:28', 0, NULL, 0, NULL, 1),
(25912, 19893, '3', 'Chevalier T. Thomas Elizabeth college for women ', '', 'B. Com(general) ', '2022', 80.00, '', 1, '2024-06-26 05:33:22', 0, NULL, 0, NULL, 1),
(25913, 19894, '4', 'Madras University ', '', 'M.SC-Zoology', '2024', 85.00, '', 1, '2024-06-26 05:36:33', 0, NULL, 0, NULL, 1),
(25914, 19894, '3', 'Madras University ', '', 'B.sc-zoology', '2022', 80.00, '', 1, '2024-06-26 05:37:45', 0, NULL, 0, NULL, 1),
(25915, 19897, '3', 'University of Madras', '', 'B com corporate secretaryship', '2024', 73.00, '', 1, '2024-06-26 05:41:38', 0, NULL, 0, NULL, 1),
(25916, 19896, '4', 'Measi institute of management ', '', 'Mba', '2023', 65.00, '', 1, '2024-06-26 05:45:33', 0, NULL, 0, NULL, 1),
(25917, 19895, '3', 'QUAID E MILLATH COLLAGE FOR WOMEN\'S ', '', 'BA.English ', '2024', 59.70, '', 1, '2024-06-26 05:48:36', 0, NULL, 0, NULL, 1),
(25918, 19899, '3', 'Madras University chennai ', '', 'Bsc visual communication ', '2024', 78.00, '', 1, '2024-06-26 05:48:56', 0, NULL, 0, NULL, 1),
(25919, 19901, '3', 'madras university chennai', '', 'bsc visual communication', '2024', 78.00, '', 1, '2024-06-26 05:57:06', 0, NULL, 0, NULL, 1),
(25920, 19900, '3', 'Ramakrishna mission Vivekananda College ', '', '', '2023', 60.00, '', 1, '2024-06-26 06:10:05', 0, NULL, 0, NULL, 1),
(25921, 19902, '3', 'Madras university', '', 'B. Sc computer science', '2024', 73.00, '', 1, '2024-06-26 06:13:18', 0, NULL, 0, NULL, 1),
(25922, 19903, '4', 'Anna University ', '', 'Mba', '2024', 75.00, '', 1, '2024-06-26 06:21:29', 0, NULL, 0, NULL, 1),
(25923, 19904, '1', 'CHSS Thiruvanmiyur ', '', '', '2019', 70.00, '', 1, '2024-06-26 06:38:48', 0, NULL, 0, NULL, 1),
(25924, 19904, '2', 'CHSS Thiruvanmiyur ', '', '', '2021', 85.00, '', 1, '2024-06-26 06:39:09', 0, NULL, 0, NULL, 1),
(25925, 19905, '3', 'bharath university', '', 'b.tech', '2021', 70.00, '', 1, '2024-06-26 06:41:16', 0, NULL, 0, NULL, 1),
(25926, 19906, '1', 'gurunanak', '', '', '2020', 72.00, '', 1, '2024-06-26 06:45:31', 0, NULL, 0, NULL, 1),
(25927, 19907, '3', 'Madras university', '', 'B. Com(cA) ', '2024', 70.00, '', 1, '2024-06-26 06:54:16', 0, NULL, 0, NULL, 1),
(25928, 19908, '3', 'University of Madras ', '', 'B.com ', '2024', 77.00, '', 1, '2024-06-26 07:29:04', 0, NULL, 0, NULL, 1),
(25929, 19909, '4', 'University of Madras ', '', 'M.Sc', '2024', 78.00, '', 1, '2024-06-26 07:36:43', 0, NULL, 0, NULL, 1),
(25930, 19910, '3', 'Madras University ', '', 'B.com', '2024', 78.00, '', 1, '2024-06-26 08:10:11', 0, NULL, 0, NULL, 1),
(25931, 19911, '3', 'Madras university ', '', 'B.com', '2024', 78.00, '', 1, '2024-06-26 08:11:36', 0, NULL, 0, NULL, 1),
(25932, 19912, '3', 'Patrician college of arts and science ', '', 'Bca', '2024', 58.00, '', 1, '2024-06-26 09:10:18', 0, NULL, 0, NULL, 1),
(25933, 19915, '3', 'Anna university ', '', 'BE Mechanical ', '2024', 80.00, '', 1, '2024-06-26 10:25:08', 0, NULL, 0, NULL, 1),
(25934, 19913, '3', 'Anna university ', '', 'BE', '2024', 85.00, '', 1, '2024-06-26 10:28:23', 0, NULL, 0, NULL, 1),
(25935, 19914, '3', 'anna university', '', 'be mechanical', '2024', 90.00, '', 1, '2024-06-26 10:43:16', 1, '2024-06-26 10:44:06', 0, NULL, 1),
(25936, 19919, '3', 'Anna University ', '', 'B.E', '2024', 70.00, '', 1, '2024-06-27 04:55:55', 0, NULL, 0, NULL, 1),
(25937, 19918, '3', 'Thiruvallur university', '', 'Bsc chemistry', '2023', 78.00, '', 1, '2024-06-27 05:00:05', 0, NULL, 0, NULL, 1),
(25938, 19887, '1', 'Akt matric hr sec school', '', '', '2016', 60.00, '', 1, '2024-06-27 05:12:39', 0, NULL, 0, NULL, 1),
(25939, 19887, '3', 'Jamal Mohamed college ', '', 'B.Sc ', '2019', 75.00, '', 1, '2024-06-27 05:13:16', 0, NULL, 0, NULL, 1),
(25940, 19887, '4', 'Jamal Mohamed college ', '', 'M.Sc ', '2021', 85.00, '', 1, '2024-06-27 05:14:00', 0, NULL, 0, NULL, 1),
(25941, 19920, '3', 'Sri raaja raajan college of engineering and technology ', '', 'BE(ECE)', '2023', 76.38, '', 1, '2024-06-27 05:34:57', 0, NULL, 0, NULL, 1),
(25942, 19921, '4', 'Alagappa University ', '', 'MCA ', '2024', 74.00, '', 1, '2024-06-27 05:35:06', 0, NULL, 0, NULL, 1),
(25943, 19923, '4', 'Madurai kamaraj university ', '', 'MBA', '2024', 75.00, '', 1, '2024-06-27 05:59:14', 0, NULL, 0, NULL, 1),
(25944, 19922, '3', 'Bharathidasan', '', 'Bsc', '2023', 77.00, '', 1, '2024-06-27 06:00:58', 0, NULL, 0, NULL, 1),
(25945, 19882, '3', 'Anna university', '', 'Bachelor of engineering', '2019', 6.80, '', 1, '2024-06-27 06:29:03', 0, NULL, 0, NULL, 1),
(25946, 19924, '3', 'MS University ', '', 'BBA', '2017', 65.00, '', 1, '2024-06-27 06:48:04', 0, NULL, 0, NULL, 1),
(25947, 19925, '5', 'Anna university ', '', 'Dce', '2018', 60.00, '', 1, '2024-06-27 06:57:19', 0, NULL, 0, NULL, 1),
(25948, 19926, '5', 'Anna University ', '', 'Civil engineering ', '2018', 73.00, '', 1, '2024-06-27 07:00:04', 0, NULL, 0, NULL, 1),
(25949, 19928, '3', 'Soka Ikeda college of arts and science for women ', '', 'B.com corporate secretaryship ', '2024', 75.00, '', 1, '2024-06-27 07:17:50', 0, NULL, 0, NULL, 1),
(25950, 19927, '3', 'University of Madras ', '', 'B.com(ism)', '2023', 70.00, '', 1, '2024-06-27 07:19:41', 0, NULL, 0, NULL, 1),
(25951, 19929, '3', 'University of madras', '', 'B. Com', '2023', 75.00, '', 1, '2024-06-27 07:20:30', 0, NULL, 0, NULL, 1),
(25952, 19930, '3', 'Sri Venkateswara college of technology ', '', 'bE ', '2024', 82.00, '', 1, '2024-06-27 07:54:01', 0, NULL, 0, NULL, 1),
(25953, 19930, '5', 'Government polytechnic College of engineering ', '', 'Polytechnic ', '2020', 76.00, '', 1, '2024-06-27 07:54:30', 0, NULL, 0, NULL, 1),
(25954, 19932, '3', 'Madras University ', '', 'B.com', '2021', 70.00, '', 1, '2024-06-27 09:37:31', 0, NULL, 0, NULL, 1),
(25955, 19931, '4', 'Sairam Institute of Technology ', '', 'MBA , HR & Marketing ', '2023', 8.52, '', 1, '2024-06-27 09:48:34', 0, NULL, 0, NULL, 1),
(25956, 19933, '4', 'S. A. Engineering college ', '', 'MBA', '2024', 9.14, '', 1, '2024-06-27 09:54:27', 0, NULL, 0, NULL, 1),
(25957, 19935, '3', 'Anna university ', '', 'biomedical engineering ', '2023', 81.00, '', 1, '2024-06-27 10:03:30', 0, NULL, 0, NULL, 1),
(25958, 19934, '4', 'Vellore Institute of Technology ', '', 'MBA', '2024', 7.67, '', 1, '2024-06-27 10:04:14', 0, NULL, 0, NULL, 1),
(25959, 19934, '4', 'Vellore Institute of Technology ', '', 'MBA', '2024', 7.67, '', 1, '2024-06-27 10:06:02', 1, '2024-06-27 10:07:05', 0, NULL, 0),
(25960, 19934, '3', 'Anna University ', '', 'BE', '2021', 7.57, '', 1, '2024-06-27 10:07:43', 0, NULL, 0, NULL, 1),
(25961, 19937, '5', 'Director for technical education ', '', 'Diploma in Electronics communication ', '2011', 70.00, '', 1, '2024-06-28 05:19:53', 0, NULL, 0, NULL, 1),
(25962, 19936, '3', 'University ', '', 'B.com', '2022', 70.00, '', 1, '2024-06-28 05:21:45', 0, NULL, 0, NULL, 1),
(25963, 19940, '3', 'DR.M.G.R Educational and research institute', '', 'B.tech', '2021', 67.00, '', 1, '2024-06-28 05:27:45', 0, NULL, 0, NULL, 1),
(25964, 19938, '3', 'University ', '', 'B.com(cs)', '2024', 78.00, '', 1, '2024-06-28 05:36:57', 0, NULL, 0, NULL, 1),
(25965, 19939, '3', 'University', '', 'B.com (cs)', '2024', 78.00, '', 1, '2024-06-28 05:42:50', 0, NULL, 0, NULL, 1),
(25966, 19941, '4', 'Pondicherry University ', '', 'MSc Statistics ', '2021', 8.07, '', 1, '2024-06-28 06:20:23', 0, NULL, 0, NULL, 1),
(25967, 19942, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2021', 77.00, '', 1, '2024-06-28 06:22:49', 0, NULL, 0, NULL, 1),
(25968, 19944, '4', 'madras', '', 'm.com', '2024', 66.00, '', 1, '2024-06-28 07:03:11', 0, NULL, 0, NULL, 1),
(25969, 19945, '4', 'Madras university', '', 'Msc mathematics', '2024', 80.00, '', 1, '2024-06-28 07:11:20', 0, NULL, 0, NULL, 1),
(25970, 19944, '4', 'madras', '', 'm.com', '2024', 66.00, '', 1, '2024-06-28 07:11:45', 0, NULL, 0, NULL, 1),
(25971, 19945, '3', 'Thiruvallur university', '', 'Bsc mathematics', '2022', 89.00, '', 1, '2024-06-28 07:12:02', 1, '2024-06-28 07:13:30', 0, NULL, 1),
(25972, 19943, '4', 'madras', '', 'm.com', '2024', 66.00, '', 1, '2024-06-28 07:12:10', 0, NULL, 0, NULL, 1),
(25973, 19945, '2', 'State board', '', '', '2019', 61.00, '', 1, '2024-06-28 07:12:43', 0, NULL, 0, NULL, 1),
(25974, 19945, '1', 'State board', '', '', '2017', 88.00, '', 1, '2024-06-28 07:13:02', 0, NULL, 0, NULL, 1),
(25975, 19946, '3', 'madras University ', '', 'b.com', '2024', 80.00, '', 1, '2024-06-28 07:16:16', 0, NULL, 0, NULL, 1),
(25976, 19946, '1', 'tamilnadu state board ', '', '', '2017', 80.00, '', 1, '2024-06-28 07:16:58', 0, NULL, 0, NULL, 1),
(25977, 19946, '2', 'tamilnadu state board ', '', '', '2019', 75.00, '', 1, '2024-06-28 07:17:35', 0, NULL, 0, NULL, 1),
(25978, 19949, '4', 'Mysore university', '', 'bca', '2023', 70.00, '', 1, '2024-06-28 12:31:57', 0, NULL, 0, NULL, 1),
(25979, 19948, '4', 'mysore university', '', 'bca', '2023', 80.00, '', 1, '2024-06-28 01:02:06', 0, NULL, 0, NULL, 1),
(25980, 19952, '3', 'University of madras', '', 'BA', '2023', 80.00, '', 1, '2024-06-29 05:08:15', 0, NULL, 0, NULL, 1),
(25981, 19951, '3', 'Madras University ', '', '', '2024', 77.00, '', 1, '2024-06-29 05:08:19', 0, NULL, 0, NULL, 1),
(25982, 19953, '2', 'Government High school', '', '', '2014', 50.00, '', 1, '2024-06-29 06:32:08', 0, NULL, 0, NULL, 1),
(25983, 19954, '1', 'Vsvn polytechnic college ', '', '', '2020', 82.00, '', 1, '2024-06-29 07:00:05', 0, NULL, 0, NULL, 1),
(25984, 19956, '4', 'Kongunadu arts and science college ', '', 'MA English Literature ', '2019', 76.00, '', 1, '2024-06-29 07:57:55', 0, NULL, 0, NULL, 1),
(25985, 19957, '3', 'University of madras', '', 'B. Com', '2024', 80.00, '', 1, '2024-06-29 10:56:57', 0, NULL, 0, NULL, 1),
(25986, 19960, '3', 'Queen Mary\'s college ', '', 'Bachelors of science ', '2019', 75.00, '', 1, '2024-06-30 10:19:18', 0, NULL, 0, NULL, 1),
(25987, 19962, '3', 'Madras University ', '', 'B.com', '2024', 80.00, '', 1, '2024-07-01 05:08:07', 0, NULL, 0, NULL, 1),
(25988, 19963, '3', 'Madras university', '', 'B.com (general)', '2024', 75.00, '', 1, '2024-07-01 05:08:27', 0, NULL, 0, NULL, 1),
(25989, 19961, '5', 'KKS Mani Polytechnic College', '', 'DME', '2019', 74.00, '', 1, '2024-07-01 05:24:56', 0, NULL, 0, NULL, 1),
(25990, 19964, '3', 'Madras University ', '', 'B.com CORPORATE SECRETARYSHIP ', '2024', 78.00, '', 1, '2024-07-01 05:28:25', 0, NULL, 0, NULL, 1),
(25991, 19966, '3', 'Mohamed Sathak AJ College of Engineering ', '', 'BE', '2024', 77.00, '', 1, '2024-07-01 05:43:13', 0, NULL, 0, NULL, 1),
(25992, 19966, '2', 'Islamiah Matriculation Higher Secondary School ', '', '', '2020', 76.00, '', 1, '2024-07-01 05:43:41', 0, NULL, 0, NULL, 1),
(25993, 19966, '1', 'Islamiah Matriculation Higher Secondary School ', '', '', '2018', 86.00, '', 1, '2024-07-01 05:44:02', 0, NULL, 0, NULL, 1),
(25994, 19967, '3', 'Madras university', '', 'B.A.', '2016', 65.00, '', 1, '2024-07-01 05:53:10', 0, NULL, 0, NULL, 1),
(25995, 19968, '3', 'Bharathidhasan university ', '', 'BCA ', '2021', 80.00, '', 1, '2024-07-01 06:05:29', 0, NULL, 0, NULL, 1),
(25996, 19971, '4', 'Autonomous ', '', 'B.com (cs)', '2024', 50.00, '', 1, '2024-07-01 06:20:29', 0, NULL, 0, NULL, 1),
(25997, 19969, '3', 'Madras ', '', 'Bcom accounting and finance ', '2024', 67.50, '', 1, '2024-07-01 06:21:59', 0, NULL, 0, NULL, 1),
(25998, 19970, '3', 'Ethiraj college for women ', '', 'B.A business economics ', '2023', 80.00, '', 1, '2024-07-01 06:22:13', 0, NULL, 0, NULL, 1),
(25999, 19972, '3', 'University of Madras', '', 'BCA', '2024', 88.00, '', 1, '2024-07-01 06:24:11', 0, NULL, 0, NULL, 1),
(26000, 19972, '2', 'State Board', '', '', '2021', 79.00, '', 1, '2024-07-01 06:24:43', 0, NULL, 0, NULL, 1),
(26001, 19972, '1', 'State Board', '', '', '2019', 63.00, '', 1, '2024-07-01 06:25:01', 0, NULL, 0, NULL, 1),
(26002, 19975, '3', 'Annamalai university ', '', 'B.E (Mechanical engineering)', '2021', 79.00, '', 1, '2024-07-01 06:31:43', 0, NULL, 0, NULL, 1),
(26003, 19974, '3', 'Patrician college of arts and science ', '', 'B.com corporate secretaryship', '2023', 60.00, '', 1, '2024-07-01 06:32:03', 0, NULL, 0, NULL, 1),
(26004, 19976, '2', 'State board ', '', '', '2021', 69.00, '', 1, '2024-07-01 06:33:38', 0, NULL, 0, NULL, 1),
(26005, 19965, '1', 'Madras university ', '', '', '2020', 72.17, '', 1, '2024-07-01 06:34:34', 0, NULL, 0, NULL, 1),
(26006, 19978, '3', 'Madras University ', '', 'BCA ', '2022', 80.00, '', 1, '2024-07-01 06:34:40', 0, NULL, 0, NULL, 1),
(26007, 19977, '3', 'sri ramachandra university', '', 'b.sc nursing', '2023', 61.38, '', 1, '2024-07-01 06:35:36', 0, NULL, 0, NULL, 1),
(26008, 19965, '3', 'Madras university ', '', 'B.B.A', '2020', 72.17, '', 1, '2024-07-01 06:36:32', 0, NULL, 0, NULL, 1),
(26009, 19973, '3', 'University ', '', 'BCA ', '2020', 80.00, '', 1, '2024-07-01 07:00:04', 0, NULL, 0, NULL, 1),
(26010, 19979, '3', 'Madurai kamaraj university', '', 'B. Sc computer science', '2021', 75.00, '', 1, '2024-07-01 07:01:22', 0, NULL, 0, NULL, 1),
(26011, 19980, '3', 'Madras university ', '', 'B.com ( General) ', '2016', 60.00, '', 1, '2024-07-01 07:16:57', 0, NULL, 0, NULL, 1),
(26012, 19982, '3', 'Annamalai University ', '', 'BCA ', '2024', 78.00, '', 1, '2024-07-01 09:38:49', 0, NULL, 0, NULL, 1),
(26013, 19981, '3', 'Annamalai university', '', 'BCA', '2024', 75.00, '', 1, '2024-07-01 09:46:35', 0, NULL, 0, NULL, 1),
(26014, 19985, '3', 'Anna University ', '', 'B.E', '2024', 7.80, '', 1, '2024-07-01 09:47:45', 0, NULL, 0, NULL, 1),
(26015, 19986, '3', 'Anna university ', '', 'B.E', '2024', 8.30, '', 1, '2024-07-01 09:50:32', 0, NULL, 0, NULL, 1),
(26016, 19984, '3', 'Annamalai University ', '', 'BCA', '2024', 76.00, '', 1, '2024-07-01 09:52:16', 0, NULL, 0, NULL, 1),
(26017, 19959, '3', 'Annamalai university', '', 'BCA', '2024', 78.00, '', 1, '2024-07-01 10:20:03', 0, NULL, 0, NULL, 1),
(26018, 19983, '3', 'govt college of arts and science', '', 'b.com', '2024', 80.00, '', 1, '2024-07-01 10:29:50', 0, NULL, 0, NULL, 1),
(26019, 19989, '3', 'Madras university ', '', 'B.com general ', '2023', 74.00, '', 1, '2024-07-02 03:55:10', 0, NULL, 0, NULL, 1),
(26020, 19990, '3', 'Madras University ', '', 'B.Com(ISM)', '2024', 50.00, '', 1, '2024-07-02 04:44:34', 0, NULL, 0, NULL, 1),
(26021, 19993, '5', 'Sri Ambala academy ', '', 'Lab technician ', '2022', 80.00, '', 1, '2024-07-02 05:49:42', 0, NULL, 0, NULL, 1),
(26022, 19992, '3', 'Madras University ', '', 'Bcom', '2023', 70.00, '', 1, '2024-07-02 06:00:53', 0, NULL, 0, NULL, 1),
(26023, 19991, '4', 'University ', '', 'mba', '2021', 70.00, '', 1, '2024-07-02 06:03:36', 0, NULL, 0, NULL, 1),
(26024, 19997, '3', 'Manonmaniam sundaranar university ', '', 'Bsc Chemistry ', '2021', 78.00, '', 1, '2024-07-02 06:34:48', 0, NULL, 0, NULL, 1),
(26025, 19995, '5', 'dote', '', 'medical electronics', '2024', 55.00, '', 1, '2024-07-02 06:39:23', 0, NULL, 0, NULL, 1),
(26026, 19998, '3', 'Manonmaniam Sundaranar University ', '', 'Bsc Computer Science ', '2021', 80.00, '', 1, '2024-07-02 06:46:04', 0, NULL, 0, NULL, 1),
(26027, 19999, '3', 'Madras University ', '', 'Bca', '2024', 74.68, '', 1, '2024-07-02 06:52:38', 0, NULL, 0, NULL, 1),
(26028, 20000, '3', 'Justice Basheer Ahmed Sayeed College for women', '', 'Bcom. Information system management', '2024', 73.00, '', 1, '2024-07-02 07:17:25', 0, NULL, 0, NULL, 1),
(26029, 20000, '1', 'St. Theresa girls higher secondary school', '', '', '2019', 69.00, '', 1, '2024-07-02 07:18:09', 0, NULL, 0, NULL, 1),
(26030, 20000, '2', 'St Theresa girls higher secondary school', '', '', '2021', 84.00, '', 1, '2024-07-02 07:18:33', 0, NULL, 0, NULL, 1),
(26031, 20001, '3', 'Anna University ', '', 'BE - Electrical Electronics engineering', '2020', 6.43, '', 1, '2024-07-02 08:14:36', 1, '2024-07-02 08:14:51', 0, NULL, 0),
(26032, 20002, '3', 'Apollo Engineering college ', '', 'Bachelor of Engineering ', '2023', 76.00, '', 1, '2024-07-02 09:02:36', 0, NULL, 0, NULL, 1),
(26033, 20004, '3', 'justice basheer ahmed sayeed college for women', '', 'bcom accounting and finance', '2024', 88.00, '', 1, '2024-07-02 11:24:33', 0, NULL, 0, NULL, 1),
(26034, 20004, '1', 'sri sankara vidhyalaya matriculation higher secondary school', '', '', '2018', 85.00, '', 1, '2024-07-02 11:26:28', 1, '2024-07-02 11:28:10', 0, NULL, 1),
(26035, 20004, '2', 'sri sankara vidhyalaya matri higher secondary school', '', '', '2020', 90.00, '', 1, '2024-07-02 11:28:57', 0, NULL, 0, NULL, 1),
(26036, 20006, '3', 'University of Madras ', '', 'BCA ', '2024', 70.00, '', 1, '2024-07-03 04:49:44', 0, NULL, 0, NULL, 1),
(26037, 20008, '3', 'Thiruvalluvar university ', '', 'Bsc physics ', '2022', 75.00, '', 1, '2024-07-03 04:52:29', 0, NULL, 0, NULL, 1),
(26038, 20009, '3', 'Velammal institute of technology ', '', 'bE ', '2022', 8.04, '', 1, '2024-07-03 04:53:24', 0, NULL, 0, NULL, 1),
(26039, 20010, '3', 'University of Madras ', '', 'B.com Accounting and Finance ', '2014', 68.00, '', 1, '2024-07-03 05:10:03', 0, NULL, 0, NULL, 1),
(26040, 20011, '3', 'Anna university ', '', 'B.E', '2018', 60.00, '', 1, '2024-07-03 05:45:46', 0, NULL, 0, NULL, 1),
(26041, 20012, '3', 'Periyar university ', '', 'Bsc chemistry ', '2023', 73.00, '', 1, '2024-07-03 06:21:49', 0, NULL, 0, NULL, 1),
(26042, 20014, '3', 'Madras University ', '', 'B.com (cs)', '2024', 73.00, '', 1, '2024-07-03 07:43:55', 0, NULL, 0, NULL, 1),
(26043, 20015, '3', 'Idhaya college of arts and science for women', '', 'Bsc computer science', '2022', 90.00, '', 1, '2024-07-03 07:47:09', 0, NULL, 0, NULL, 1),
(26044, 20013, '3', 'meenakshi college', '', 'bsc chemistry', '2024', 70.00, '', 1, '2024-07-03 07:47:38', 0, NULL, 0, NULL, 1),
(26045, 20016, '3', 'Kalasalingam University ', '', 'BSc IT', '2023', 7.92, '', 1, '2024-07-03 09:26:55', 0, NULL, 0, NULL, 1),
(26046, 20017, '3', 'Periyar Maniammai Institute of Science and Technology ', '', 'B.Com', '2024', 8.91, '', 1, '2024-07-03 02:07:29', 0, NULL, 0, NULL, 1),
(26047, 20017, '2', 'Board ', '', '', '2021', 90.40, '', 1, '2024-07-03 02:07:51', 0, NULL, 0, NULL, 1),
(26048, 20017, '1', 'Board', '', '', '2024', 85.40, '', 1, '2024-07-03 02:08:02', 0, NULL, 0, NULL, 1),
(26049, 20020, '3', 'Anna university ', '', 'BE (Mechanical)', '2015', 70.00, '', 1, '2024-07-04 05:00:29', 0, NULL, 0, NULL, 1),
(26050, 20020, '2', 'State board', '', '', '2010', 67.00, '', 1, '2024-07-04 05:01:23', 0, NULL, 0, NULL, 1),
(26051, 20020, '1', 'State board', '', '', '2008', 70.00, '', 1, '2024-07-04 05:02:02', 0, NULL, 0, NULL, 1),
(26052, 20020, '5', 'Dote', '', 'Diplamo in mechanical ', '2012', 70.00, '', 1, '2024-07-04 05:02:30', 0, NULL, 0, NULL, 1),
(26053, 20019, '3', 'Madras University ', '', 'Bca', '2024', 75.00, '', 1, '2024-07-04 05:14:49', 0, NULL, 0, NULL, 1),
(26054, 20022, '4', 'Measi institute of management ', '', 'MBA finance and Marketing ', '2024', 70.00, '', 1, '2024-07-04 05:58:01', 0, NULL, 0, NULL, 1),
(26055, 20021, '3', 'mgr university', '', 'bsc nutrition food science', '2024', 75.00, '', 1, '2024-07-04 05:58:25', 0, NULL, 0, NULL, 1),
(26056, 20024, '3', 'Dhanalakshmi srinivasan engineering college', '', 'BE', '2023', 89.00, '', 1, '2024-07-04 06:14:00', 0, NULL, 0, NULL, 1),
(26057, 20025, '3', 'Dhanalakshmi Srinivasan Engineering College ', '', 'B tech', '2023', 79.00, '', 1, '2024-07-04 06:14:03', 0, NULL, 0, NULL, 1),
(26058, 20024, '2', 'Sowdambikaa matriculation higher secondary school', '', '', '2019', 82.00, '', 1, '2024-07-04 06:14:47', 0, NULL, 0, NULL, 1),
(26059, 20025, '2', 'Svm hr. sec. School', '', '', '2019', 65.00, '', 1, '2024-07-04 06:14:49', 0, NULL, 0, NULL, 1),
(26060, 20025, '1', 'Don Bosco matric school ', '', '', '2017', 75.00, '', 1, '2024-07-04 06:15:08', 0, NULL, 0, NULL, 1),
(26061, 20024, '1', 'Raj vidhya bhavan matriculation higher secondary school', '', '', '2017', 94.00, '', 1, '2024-07-04 06:15:15', 0, NULL, 0, NULL, 1),
(26062, 20026, '3', 'Autonomous', '', 'BBA', '2020', 77.00, '', 1, '2024-07-04 09:27:27', 0, NULL, 0, NULL, 1),
(26063, 20027, '3', 'Don Bosco college dharmapuri ', '', 'Bsc ', '2024', 80.00, '', 1, '2024-07-05 04:17:58', 0, NULL, 0, NULL, 1),
(26064, 20029, '3', 'University of Madras ', '', 'BBA', '2019', 72.00, '', 1, '2024-07-05 04:53:20', 0, NULL, 0, NULL, 1),
(26065, 20028, '3', 'madras universty ', '', 'ba.english ', '2023', 70.00, '', 1, '2024-07-05 04:57:13', 0, NULL, 0, NULL, 1),
(26066, 20030, '3', 'Madras University ', '', 'B.com', '2023', 89.50, '', 1, '2024-07-05 05:40:17', 0, NULL, 0, NULL, 1),
(26067, 20036, '4', 'SRM University ', '', 'M.sc physics ', '2024', 7.50, '', 1, '2024-07-05 05:58:14', 0, NULL, 0, NULL, 1),
(26068, 20033, '3', 'Madras University ', '', 'Bcom(general)', '2024', 77.23, '', 1, '2024-07-05 05:58:38', 0, NULL, 0, NULL, 1),
(26069, 20032, '3', 'Madras University ', '', 'B.com', '2024', 77.38, '', 1, '2024-07-05 05:59:12', 0, NULL, 0, NULL, 1),
(26070, 20037, '4', 'University of Madras', '', 'M.Sc(Computer Science)', '2023', 80.00, '', 1, '2024-07-05 06:04:32', 0, NULL, 0, NULL, 1),
(26071, 20031, '4', 'University of madras', '', 'Msc computer science', '2023', 79.00, '', 1, '2024-07-05 06:04:38', 0, NULL, 0, NULL, 1),
(26072, 20031, '3', 'Thiruvallur university', '', 'Bsc computer science', '2020', 70.00, '', 1, '2024-07-05 06:05:32', 0, NULL, 0, NULL, 1),
(26073, 20037, '3', 'University Of Madras', '', 'B Sc(Computer Science)', '2021', 74.00, '', 1, '2024-07-05 06:05:39', 0, NULL, 0, NULL, 1),
(26074, 20031, '2', 'State board', '', '', '2017', 60.00, '', 1, '2024-07-05 06:05:53', 0, NULL, 0, NULL, 1),
(26075, 20037, '2', 'State Board', '', '', '2018', 78.00, '', 1, '2024-07-05 06:06:08', 0, NULL, 0, NULL, 1),
(26076, 20034, '3', 'University of madras ', '', 'B.A ENGLISH LITERATURE ', '2024', 68.00, '', 1, '2024-07-05 06:06:12', 0, NULL, 0, NULL, 1),
(26077, 20031, '1', 'State board', '', '', '2015', 69.00, '', 1, '2024-07-05 06:06:14', 0, NULL, 0, NULL, 1),
(26078, 20037, '1', 'State Board', '', '', '2016', 88.00, '', 1, '2024-07-05 06:06:24', 0, NULL, 0, NULL, 1),
(26079, 20038, '3', 'Anna university ', '', 'B.E', '2024', 75.30, '', 1, '2024-07-05 06:06:41', 0, NULL, 0, NULL, 1),
(26080, 20040, '3', 'Anna University ', '', 'B.E', '2019', 62.20, '', 1, '2024-07-05 06:09:18', 0, NULL, 0, NULL, 1),
(26081, 20039, '3', 'Madras University ', '', 'B com (General)', '2019', 70.00, '', 1, '2024-07-05 06:10:28', 0, NULL, 0, NULL, 1),
(26082, 20035, '3', 'SRM UNIVERSITY ', '', 'B.SC VISUAL COMMUNICATION ', '2023', 79.00, '', 1, '2024-07-05 06:13:53', 0, NULL, 0, NULL, 1),
(26083, 20035, '2', 'Don Bosco Matriculation higher secondary school ', '', '', '2020', 61.00, '', 1, '2024-07-05 06:15:23', 0, NULL, 0, NULL, 1),
(26084, 20035, '1', 'Don Bosco Matriculation higher secondary school ', '', '', '2018', 59.00, '', 1, '2024-07-05 06:15:44', 0, NULL, 0, NULL, 1),
(26085, 20041, '3', 'Anna university ', '', 'B.E', '2024', 78.00, '', 1, '2024-07-05 06:18:13', 0, NULL, 0, NULL, 1),
(26086, 20043, '3', 'University of Madras ', '', 'Bsc computer science ', '2023', 72.00, '', 1, '2024-07-05 06:32:42', 0, NULL, 0, NULL, 1),
(26087, 20042, '3', 'university ', '', 'ba english lit', '2005', 60.00, '', 1, '2024-07-05 06:34:39', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26088, 20044, '4', 'Alagappa University ', '', 'MBA', '2024', 68.00, '', 1, '2024-07-05 06:49:04', 0, NULL, 0, NULL, 1),
(26089, 20046, '4', 'Alagappa University ', '', 'MBA', '2024', 66.00, '', 1, '2024-07-05 06:55:26', 0, NULL, 0, NULL, 1),
(26090, 20048, '3', 'Anna university ', '', 'BE civil engineering ', '2024', 75.00, '', 1, '2024-07-05 07:01:05', 0, NULL, 0, NULL, 1),
(26091, 20048, '2', 'Dominic savio matriculation hr secondary school', '', '', '2020', 70.00, '', 1, '2024-07-05 07:02:11', 0, NULL, 0, NULL, 1),
(26092, 20050, '3', 'MGR University ', '', 'BA ENGLISH ', '2024', 66.00, '', 1, '2024-07-05 07:12:05', 0, NULL, 0, NULL, 1),
(26093, 20053, '3', 'Madras University ', '', 'Bsc CS', '2023', 81.00, '', 1, '2024-07-05 07:45:08', 0, NULL, 0, NULL, 1),
(26094, 20051, '2', 'Sri mahaveer jain hrs sec school', '', '', '2020', 70.00, '', 1, '2024-07-05 07:45:11', 1, '2024-07-05 07:46:29', 0, NULL, 0),
(26095, 20045, '3', 'Madras ', '', 'BA', '2022', 79.00, '', 1, '2024-07-05 07:45:52', 0, NULL, 0, NULL, 1),
(26096, 20051, '1', 'Sri  mahaveer jain hrs sec school', '', '', '2018', 60.00, '', 1, '2024-07-05 07:47:34', 0, NULL, 0, NULL, 1),
(26097, 20051, '2', 'Sri mahaveer jain hrs sec school', '', '', '2020', 68.00, '', 1, '2024-07-05 07:49:33', 0, NULL, 0, NULL, 1),
(26098, 20049, '1', 'Jaigopal Garotia Hrs Sec School', '', '', '2019', 65.00, '', 1, '2024-07-05 07:49:35', 1, '2024-07-05 07:50:05', 0, NULL, 0),
(26099, 20051, '3', 'Madras university ', '', 'B. Com general', '2024', 65.00, '', 1, '2024-07-05 07:50:46', 0, NULL, 0, NULL, 1),
(26100, 20049, '1', 'Velliatan Chettiar Hrs Sec School ', '', '', '2019', 45.00, '', 1, '2024-07-05 07:51:01', 0, NULL, 0, NULL, 1),
(26101, 20049, '2', 'Jaigopal Garotia Hrs Sec School', '', '', '2022', 68.00, '', 1, '2024-07-05 07:52:04', 0, NULL, 0, NULL, 1),
(26102, 20047, '3', 'Autonomous ', '', '', '2023', 72.00, '', 1, '2024-07-05 07:53:39', 0, NULL, 0, NULL, 1),
(26103, 20049, '3', 'UNIVERSITY OF MADRAS', '', 'b.a ', '2023', 60.00, '', 1, '2024-07-05 07:53:54', 0, NULL, 0, NULL, 1),
(26104, 20054, '3', 'Madras  University ', '', 'BCA', '2023', 81.00, '', 1, '2024-07-05 07:54:23', 0, NULL, 0, NULL, 1),
(26105, 20052, '1', 'Government higher secondary school ', '', '', '2022', 59.00, '', 1, '2024-07-05 07:55:58', 0, NULL, 0, NULL, 1),
(26106, 20055, '4', 'University ', '', 'B com ', '2024', 68.00, '', 1, '2024-07-05 09:49:01', 0, NULL, 0, NULL, 1),
(26107, 20058, '3', 'Anna university ', '', 'BE', '2017', 78.00, '', 1, '2024-07-05 09:59:26', 0, NULL, 0, NULL, 1),
(26108, 20057, '4', 'Bharathidhasan University ', '', 'M.A', '2023', 78.08, '', 1, '2024-07-05 10:22:42', 0, NULL, 0, NULL, 1),
(26109, 20059, '3', 'mass college', '', 'b.sc computer science', '2024', 75.00, '', 1, '2024-07-05 12:37:23', 0, NULL, 0, NULL, 1),
(26110, 20060, '3', 'Dr.mgr educational and research university ', '', 'Bcom cs', '2024', 67.00, '', 1, '2024-07-06 05:22:12', 0, NULL, 0, NULL, 1),
(26111, 20063, '3', 'Madras University ', '', 'B.Com', '2018', 73.00, '', 1, '2024-07-06 05:40:10', 0, NULL, 0, NULL, 1),
(26112, 20063, '2', 'State board', '', '', '2015', 85.00, '', 1, '2024-07-06 05:40:53', 0, NULL, 0, NULL, 1),
(26113, 20061, '4', 'Periyar university', '', 'MBA', '2019', 74.00, '', 1, '2024-07-06 05:41:12', 0, NULL, 0, NULL, 1),
(26114, 20061, '3', 'Anna University', '', 'B. e', '2015', 76.00, '', 1, '2024-07-06 05:41:40', 0, NULL, 0, NULL, 1),
(26115, 20061, '5', 'DOTE', '', 'Diploma', '2012', 96.00, '', 1, '2024-07-06 05:42:19', 0, NULL, 0, NULL, 1),
(26116, 20062, '3', 'Periyar university ', '', 'Bba', '2016', 63.00, '', 1, '2024-07-06 05:46:04', 0, NULL, 0, NULL, 1),
(26117, 20064, '3', 'Madras ', '', 'B.com', '2021', 70.00, '', 1, '2024-07-06 05:46:42', 0, NULL, 0, NULL, 1),
(26118, 20065, '3', 'Anamalai university ', '', 'BA English ', '2024', 69.00, '', 1, '2024-07-06 06:00:41', 0, NULL, 0, NULL, 1),
(26119, 20067, '3', 'MADRASS ', '', 'Bsc.Computer Science', '2024', 4.50, '', 1, '2024-07-06 06:46:49', 0, NULL, 0, NULL, 1),
(26120, 20066, '5', 'central poltecnic collge', '', 'diplomo in electronicsand communiCATION', '2024', 76.00, '', 104, '2024-07-06 12:21:14', 0, NULL, 0, NULL, 1),
(26121, 20068, '4', 'University of Madras ', '', 'B.com (C.S)', '2020', 57.00, '', 1, '2024-07-06 07:10:21', 0, NULL, 0, NULL, 1),
(26122, 20068, '1', 'State board ', '', '', '2015', 80.00, '', 1, '2024-07-06 07:10:49', 0, NULL, 0, NULL, 1),
(26123, 20068, '2', 'State board ', '', '', '2017', 85.00, '', 1, '2024-07-06 07:11:16', 0, NULL, 0, NULL, 1),
(26124, 20069, '3', 'Manonmaniam Sundaranar University ', '', 'BA, English ', '2024', 60.00, '', 1, '2024-07-06 07:31:25', 0, NULL, 0, NULL, 1),
(26125, 20070, '3', 'Thiruvalluvar University', '', 'B.sc. Computer Science', '2022', 7.83, '', 1, '2024-07-06 07:58:30', 0, NULL, 0, NULL, 1),
(26126, 20071, '3', 'Annamalai ', '', 'B. Com', '2024', 70.00, '', 1, '2024-07-06 07:59:05', 0, NULL, 0, NULL, 1),
(26127, 20073, '3', 'Anna University ', '', 'B.Tech', '2023', 8.08, '', 1, '2024-07-06 02:29:37', 0, NULL, 0, NULL, 1),
(26128, 20076, '3', 'University of Madras ', '', 'B.com ( general)', '2024', 65.00, '', 1, '2024-07-07 07:51:34', 0, NULL, 0, NULL, 1),
(26129, 20074, '4', 'Madurai Kamaraj University ', '', 'MBA', '2024', 79.40, '', 1, '2024-07-07 12:05:12', 1, '2024-07-07 12:06:21', 0, NULL, 0),
(26130, 20074, '4', 'Madurai Kamaraj University ', '', 'MBA', '2024', 79.40, '', 1, '2024-07-07 12:05:50', 0, NULL, 0, NULL, 1),
(26131, 20074, '3', 'Madurai Kamaraj University ', '', 'BBA', '2021', 85.00, '', 1, '2024-07-07 12:06:11', 0, NULL, 0, NULL, 1),
(26132, 20074, '1', 'State Board', '', '', '2016', 95.00, '', 1, '2024-07-07 12:07:17', 0, NULL, 0, NULL, 1),
(26133, 20074, '2', 'State Board ', '', '', '2018', 94.00, '', 1, '2024-07-07 12:07:51', 0, NULL, 0, NULL, 1),
(26134, 20084, '5', 'Coimbatore University ', '', 'Diploma in agriculture ', '2022', 65.00, '', 1, '2024-07-08 04:47:00', 0, NULL, 0, NULL, 1),
(26135, 20079, '5', 'Technical education ', '', '', '2012', 83.00, '', 1, '2024-07-08 04:51:20', 0, NULL, 0, NULL, 1),
(26136, 20082, '3', 'Thiruvalluvar University in Vellore', '', 'BA history ', '2023', 62.00, '', 1, '2024-07-08 04:52:10', 0, NULL, 0, NULL, 1),
(26137, 20081, '4', 'Tiruvalluvar ', '', 'M.com', '2021', 66.00, '', 1, '2024-07-08 04:56:05', 0, NULL, 0, NULL, 1),
(26138, 20081, '4', 'Tiruvalluvar ', '', 'M.com', '2021', 66.00, '', 1, '2024-07-08 04:57:00', 0, NULL, 0, NULL, 1),
(26139, 20086, '4', 'University ', '', 'MSC Computer Science ', '2024', 73.00, '', 1, '2024-07-08 05:01:57', 0, NULL, 0, NULL, 1),
(26140, 20087, '3', 'Thiruvalluvar University ', '', 'BA Eng', '2023', 69.00, '', 1, '2024-07-08 05:12:51', 0, NULL, 0, NULL, 1),
(26141, 20085, '3', 'Periyar University ', '', 'B.com', '2021', 60.00, '', 1, '2024-07-08 05:14:42', 0, NULL, 0, NULL, 1),
(26142, 20088, '3', 'Bharadathidasan University ', '', 'B.com computer application', '2022', 69.90, '', 1, '2024-07-08 05:28:25', 0, NULL, 0, NULL, 1),
(26143, 20089, '3', 'Madras university', '', 'Bsc Microbiology', '2022', 83.00, '', 1, '2024-07-08 05:33:09', 0, NULL, 0, NULL, 1),
(26144, 20093, '3', 'University ', '', 'BE ', '2024', 7.50, '', 1, '2024-07-08 05:51:05', 0, NULL, 0, NULL, 1),
(26145, 20090, '3', 'University of madras', '', 'B Com', '2024', 75.00, '', 1, '2024-07-08 05:53:57', 0, NULL, 0, NULL, 1),
(26146, 20091, '3', 'Anna University ', '', 'B.E CSE', '2020', 65.00, '', 1, '2024-07-08 06:03:22', 0, NULL, 0, NULL, 1),
(26147, 20095, '3', 'Bharathidasan University ', '', 'B.com(CA)', '2024', 70.00, '', 1, '2024-07-08 06:03:28', 1, '2024-07-08 06:05:05', 0, NULL, 1),
(26148, 20092, '3', 'University of madras', '', 'b.com ', '2024', 74.80, '', 1, '2024-07-08 06:13:51', 0, NULL, 0, NULL, 1),
(26149, 20080, '3', 'Thiruvalluvar ', '', 'B.A History ', '2019', 55.00, '', 1, '2024-07-08 06:16:55', 0, NULL, 0, NULL, 1),
(26150, 20083, '3', 'Periyar university ', '', 'Bsc', '2023', 72.00, '', 1, '2024-07-08 06:18:14', 0, NULL, 0, NULL, 1),
(26151, 20097, '3', 'St Peter\'s Institute of Higher Education and Research, Avadi', '', 'Bachelor of Computer Application', '2021', 5.95, '', 1, '2024-07-08 06:21:50', 0, NULL, 0, NULL, 1),
(26152, 20097, '2', 'State Board', '', '', '2017', 72.00, '', 1, '2024-07-08 06:22:30', 0, NULL, 0, NULL, 1),
(26153, 20097, '1', 'State Board', '', '', '2015', 68.00, '', 1, '2024-07-08 06:23:08', 0, NULL, 0, NULL, 1),
(26154, 20094, '1', 'Madras University ', '', '', '2023', 75.00, '', 1, '2024-07-08 06:23:42', 0, NULL, 0, NULL, 1),
(26155, 20078, '3', 'kamaraj university', '', 'ba', '2022', 50.00, '', 1, '2024-07-08 06:25:49', 0, NULL, 0, NULL, 1),
(26156, 20078, '2', 'tamilnadu state board', '', '', '2015', 50.00, '', 1, '2024-07-08 06:26:51', 0, NULL, 0, NULL, 1),
(26157, 20078, '1', 'tamilnadu state board', '', '', '2013', 50.00, '', 1, '2024-07-08 06:27:21', 0, NULL, 0, NULL, 1),
(26158, 20099, '3', 'Madras university ', '', 'B.com General', '2024', 75.00, '', 1, '2024-07-08 06:45:01', 0, NULL, 0, NULL, 1),
(26159, 20100, '3', 'St Anne\'s arts and science college ', '', 'BCA', '2023', 77.00, '', 1, '2024-07-08 07:05:00', 0, NULL, 0, NULL, 1),
(26160, 20098, '3', 'Madras university', '', '', '2024', 65.00, '', 1, '2024-07-08 07:19:03', 0, NULL, 0, NULL, 1),
(26161, 20101, '3', 'University ', '', 'Bcom', '2023', 80.00, '', 1, '2024-07-08 09:19:57', 0, NULL, 0, NULL, 1),
(26162, 20103, '3', 'Periyar University ', '', 'B.sc ', '2023', 63.00, '', 1, '2024-07-08 09:32:06', 0, NULL, 0, NULL, 1),
(26163, 20103, '2', 'Periyar university', '', 'B.sc chemistry', '2015', 63.00, '', 1, '2024-07-08 09:34:25', 0, NULL, 0, NULL, 1),
(26164, 20104, '4', 'Bharathidhasan university Trichy ', '', 'MCA ', '2023', 8.10, '', 1, '2024-07-08 09:46:12', 0, NULL, 0, NULL, 1),
(26165, 20102, '3', 'Periyar university ', '', 'BA', '2021', 87.00, '', 1, '2024-07-08 10:07:30', 0, NULL, 0, NULL, 1),
(26166, 20106, '3', 'Madurai kamaraj University ', '', '', '2023', 69.80, '', 1, '2024-07-09 05:38:29', 0, NULL, 0, NULL, 1),
(26167, 20107, '4', 'Crescent university ', '', 'MCA', '2020', 9.20, '', 1, '2024-07-09 05:39:06', 0, NULL, 0, NULL, 1),
(26168, 20105, '3', 'Anna University ', '', 'B.E', '2024', 7.90, '', 1, '2024-07-09 05:44:32', 0, NULL, 0, NULL, 1),
(26169, 19567, '3', 'Madras University ', '', 'B.com bank management ', '2019', 75.00, '', 1, '2024-07-09 05:58:33', 0, NULL, 0, NULL, 1),
(26170, 20108, '3', 'anna university ', '', 'B.E mechanical engineering ', '2022', 7.99, '', 1, '2024-07-09 06:00:05', 0, NULL, 0, NULL, 1),
(26171, 20108, '5', 'dote', '', 'dME', '2019', 74.00, '', 1, '2024-07-09 06:00:45', 0, NULL, 0, NULL, 1),
(26172, 20108, '2', 'metric ', '', '', '2016', 70.00, '', 1, '2024-07-09 06:01:55', 0, NULL, 0, NULL, 1),
(26173, 20108, '1', 'cbse', '', '', '2014', 7.20, '', 1, '2024-07-09 06:02:15', 0, NULL, 0, NULL, 1),
(26174, 20110, '3', 'Madras university', '', 'B. Com', '2021', 70.00, '', 1, '2024-07-09 06:07:25', 0, NULL, 0, NULL, 1),
(26175, 20112, '3', 'Madras University ', '', 'Bca', '2023', 71.00, '', 1, '2024-07-09 06:15:52', 0, NULL, 0, NULL, 1),
(26176, 20112, '1', 'State board ', '', '', '2016', 79.00, '', 1, '2024-07-09 06:16:41', 0, NULL, 0, NULL, 1),
(26177, 20112, '2', 'State board ', '', '', '2018', 60.00, '', 1, '2024-07-09 06:17:02', 0, NULL, 0, NULL, 1),
(26178, 20109, '3', 'Anna university', '', 'Civil', '2022', 74.00, '', 1, '2024-07-09 06:17:11', 0, NULL, 0, NULL, 1),
(26179, 20111, '3', 'Thiruvalluvar university ', '', 'B.COM (G)', '2021', 71.00, '', 1, '2024-07-09 06:23:23', 0, NULL, 0, NULL, 1),
(26180, 20114, '4', 'Anna university', '', 'MBA - Tourism management', '2023', 67.00, '', 1, '2024-07-09 06:32:45', 0, NULL, 0, NULL, 1),
(26181, 20114, '3', 'Anna university', '', 'BE - Mechanical engineering', '2020', 63.00, '', 1, '2024-07-09 06:34:11', 0, NULL, 0, NULL, 1),
(26182, 20113, '3', 'sri vekanteshwara college', '', 'b pharmacy', '2022', 75.00, '', 1, '2024-07-09 06:37:24', 0, NULL, 0, NULL, 1),
(26183, 20115, '1', 'Board', '', '', '2013', 78.00, '', 1, '2024-07-09 07:11:20', 0, NULL, 0, NULL, 1),
(26184, 20115, '2', 'Board ', '', '', '2015', 72.00, '', 1, '2024-07-09 07:11:34', 0, NULL, 0, NULL, 1),
(26185, 20115, '3', 'University ', '', 'B.A History ', '2020', 92.00, '', 1, '2024-07-09 07:11:55', 0, NULL, 0, NULL, 1),
(26186, 20116, '4', 'Saveetha school of management ', '', 'MBA', '2024', 75.00, '', 1, '2024-07-09 10:06:49', 0, NULL, 0, NULL, 1),
(26187, 20118, '2', 'State board ', '', '', '2021', 79.00, '', 1, '2024-07-09 10:29:53', 0, NULL, 0, NULL, 1),
(26188, 20117, '3', 'Sastra Deemed to be University ', '', 'BCA', '2024', 68.00, '', 1, '2024-07-09 10:30:23', 0, NULL, 0, NULL, 1),
(26189, 20118, '1', 'State board ', '', '', '2019', 79.00, '', 1, '2024-07-09 10:30:34', 0, NULL, 0, NULL, 1),
(26190, 20117, '2', 'Town Higher Secondary school, Kumbakonam ', '', '', '2021', 85.00, '', 1, '2024-07-09 10:31:18', 1, '2024-07-09 10:33:30', 0, NULL, 1),
(26191, 20117, '1', 'V.G.M.Govt Higher Secondary School, Darasuram ', '', '', '2019', 80.00, '', 1, '2024-07-09 10:33:58', 0, NULL, 0, NULL, 1),
(26192, 20120, '3', 'madras university', '', 'BSC MATHAMATICS', '2018', 75.00, '', 1, '2024-07-09 07:14:45', 0, NULL, 0, NULL, 1),
(26193, 20121, '3', 'Golden valley institute', '', 'Btech', '2022', 70.00, '', 1, '2024-07-10 05:27:25', 0, NULL, 0, NULL, 1),
(26194, 20122, '3', 'Anna university ', '', 'B.E', '2024', 70.00, '', 1, '2024-07-10 05:34:41', 0, NULL, 0, NULL, 1),
(26195, 20125, '3', 'Madras University ', '', 'BSc visual communication ', '2024', 60.00, '', 1, '2024-07-10 06:09:53', 0, NULL, 0, NULL, 1),
(26196, 20127, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 89.00, '', 1, '2024-07-10 06:20:42', 0, NULL, 0, NULL, 1),
(26197, 20126, '3', 'Madras university', '', 'B. Com', '2020', 60.00, '', 1, '2024-07-10 06:20:49', 0, NULL, 0, NULL, 1),
(26198, 20129, '3', 'Madras University ', '', 'B.sc computer science ', '2023', 84.00, '', 1, '2024-07-10 06:26:01', 0, NULL, 0, NULL, 1),
(26199, 20130, '3', 'Madras University ', '', 'Bsc', '2022', 62.00, '', 1, '2024-07-10 06:31:43', 0, NULL, 0, NULL, 1),
(26200, 20132, '3', 'Autonomous', '', 'B. Com(computer application) ', '2018', 80.00, '', 1, '2024-07-10 06:48:01', 0, NULL, 0, NULL, 1),
(26201, 20133, '3', 'Madras university', '', 'B. Com (Computer application) ', '2024', 62.00, '', 1, '2024-07-10 07:07:36', 0, NULL, 0, NULL, 1),
(26202, 20136, '3', 'Sri Venkateswara Institute Of Science And Technology ', '', 'B.tech', '2022', 69.45, '', 1, '2024-07-10 07:39:41', 0, NULL, 0, NULL, 1),
(26203, 20134, '3', 'Sri vivekananda degree College', '', 'B.com', '2022', 75.00, '', 1, '2024-07-10 07:39:52', 0, NULL, 0, NULL, 1),
(26204, 20135, '3', 'JNTU ', '', 'B.tech ', '2022', 63.00, '', 1, '2024-07-10 07:42:53', 0, NULL, 0, NULL, 1),
(26205, 20137, '4', 'University of Madras ', '', 'MBA', '2024', 72.00, '', 1, '2024-07-10 08:05:24', 0, NULL, 0, NULL, 1),
(26206, 20137, '3', 'Sdnb vaishnav college for women ', '', 'B.com', '2020', 69.00, '', 1, '2024-07-10 08:06:26', 1, '2024-07-10 08:06:42', 0, NULL, 1),
(26207, 20139, '4', 'Kud ', '', 'MBA ', '2023', 70.10, '', 1, '2024-07-10 09:01:46', 0, NULL, 0, NULL, 1),
(26208, 20138, '5', 'Banglore ', '', 'Dmlt', '2017', 70.00, '', 1, '2024-07-10 09:02:46', 0, NULL, 0, NULL, 1),
(26209, 20138, '1', 'Banglore ', '', 'Dmlt', '2012', 60.00, '', 1, '2024-07-10 09:03:43', 1, '2024-07-10 09:04:57', 0, NULL, 1),
(26210, 20141, '4', 'Bharathiar University', '', 'Msw', '2019', 69.00, '', 1, '2024-07-10 09:13:02', 0, NULL, 0, NULL, 1),
(26211, 20141, '3', 'Thiruvallur University', '', 'Ba English ', '2017', 60.00, '', 1, '2024-07-10 09:14:11', 0, NULL, 0, NULL, 1),
(26212, 20140, '3', 'anna University', '', 'bca', '2019', 60.00, '', 1, '2024-07-10 09:17:15', 0, NULL, 0, NULL, 1),
(26213, 20142, '3', 'Madras university ', '', 'Bba', '2016', 70.00, '', 1, '2024-07-10 09:17:30', 1, '2024-07-10 09:18:01', 0, NULL, 0),
(26214, 20142, '3', 'Madras university ', '', 'Bba', '2016', 70.00, '', 1, '2024-07-10 09:18:13', 0, NULL, 0, NULL, 1),
(26215, 20143, '4', 'Anna University ', '', 'MBA', '2024', 8.30, '', 1, '2024-07-10 12:50:57', 0, NULL, 0, NULL, 1),
(26216, 20144, '4', 'Madras University ', '', 'M.com', '2024', 75.00, '', 1, '2024-07-11 04:39:29', 0, NULL, 0, NULL, 1),
(26217, 20146, '3', 'Madras University ', '', 'BBA', '2023', 75.00, '', 1, '2024-07-11 05:14:31', 0, NULL, 0, NULL, 1),
(26218, 20145, '3', 'Madras University ', '', 'BSc computerscience ', '2023', 73.00, '', 1, '2024-07-11 05:16:25', 0, NULL, 0, NULL, 1),
(26219, 20148, '4', 'Bharathidasan university ', '', 'Mcom', '2024', 74.00, '', 1, '2024-07-11 05:16:55', 0, NULL, 0, NULL, 1),
(26220, 20145, '1', 'Sri Ram Krishna matric higher secondary school ', '', '', '2018', 56.00, '', 1, '2024-07-11 05:17:19', 0, NULL, 0, NULL, 1),
(26221, 20145, '2', 'Sri Ram Krishna matric higher secondary school ', '', '', '2020', 57.00, '', 1, '2024-07-11 05:17:42', 0, NULL, 0, NULL, 1),
(26222, 20148, '4', 'Bharathidasan university ', '', 'Mcom', '2024', 75.00, '', 1, '2024-07-11 05:18:31', 0, NULL, 0, NULL, 1),
(26223, 20149, '3', 'Presidency College', '', '', '2024', 75.00, '', 1, '2024-07-11 05:21:56', 0, NULL, 0, NULL, 1),
(26224, 20147, '3', 'Anna university', '', 'B. Tech (textile technology) ', '2022', 7.10, '', 1, '2024-07-11 05:22:27', 0, NULL, 0, NULL, 1),
(26225, 20150, '3', 'Government arts college, karur', '', 'Bsc mathematics', '2022', 70.00, '', 1, '2024-07-11 05:34:48', 0, NULL, 0, NULL, 1),
(26226, 20156, '3', 'Tamilnadu agricultural university, coimbatore ', '', 'B.sc agriculture ', '2022', 75.00, '', 1, '2024-07-11 05:47:46', 0, NULL, 0, NULL, 1),
(26227, 20155, '3', 'Anna university ', '', 'Bachelor of engineering ', '2021', 7.32, '', 1, '2024-07-11 05:48:03', 0, NULL, 0, NULL, 1),
(26228, 20155, '2', 'Higher secondary education ', '', '', '2017', 76.00, '', 1, '2024-07-11 05:48:40', 0, NULL, 0, NULL, 1),
(26229, 20155, '1', 'Secondary school leaving  Certificate', '', '', '2015', 86.00, '', 1, '2024-07-11 05:49:56', 0, NULL, 0, NULL, 1),
(26230, 20151, '3', 'Coimbatore Institute of Technology ', '', 'B.E - ECE', '2023', 78.80, '', 1, '2024-07-11 05:52:33', 0, NULL, 0, NULL, 1),
(26231, 20154, '3', 'madras university', '', 'ba english', '2024', 65.00, '', 1, '2024-07-11 06:04:53', 0, NULL, 0, NULL, 1),
(26232, 20153, '3', 'Madras university ', '', 'Bsc computer science ', '2024', 70.00, '', 1, '2024-07-11 06:07:00', 0, NULL, 0, NULL, 1),
(26233, 20152, '3', 'madras university ', '', 'ba english litera ', '2024', 65.00, '', 1, '2024-07-11 06:07:34', 0, NULL, 0, NULL, 1),
(26234, 20158, '3', 'SRM UNIVERSITY ', '', 'B. Tech', '2024', 80.70, '', 1, '2024-07-11 06:16:35', 0, NULL, 0, NULL, 1),
(26235, 20160, '3', 'Sss .jain college ', '', 'B.sc viscom', '2016', 75.00, '', 1, '2024-07-11 06:38:02', 0, NULL, 0, NULL, 1),
(26236, 20159, '3', 'Madras University ', '', 'B,sc', '2024', 6.62, '', 1, '2024-07-11 06:56:28', 0, NULL, 0, NULL, 1),
(26237, 20162, '3', 'PONDICHERRY UNIVERSITY ', '', 'B.TECH ', '2024', 89.00, '', 1, '2024-07-11 07:43:22', 0, NULL, 0, NULL, 1),
(26238, 20163, '3', 'Pondicherry University ', '', 'B.Tech', '2024', 79.00, '', 1, '2024-07-11 07:43:27', 0, NULL, 0, NULL, 1),
(26239, 0, '4', 'University ', '', 'Mba', '2024', 82.00, '', 1, '2024-07-11 08:11:50', 1, '2024-07-12 06:08:14', 0, NULL, 0),
(26240, 20164, '4', 'University ', '', 'Mba', '2024', 75.00, '', 1, '2024-07-11 08:21:50', 0, NULL, 0, NULL, 1),
(26241, 20165, '4', 'SAIRAM INSTITUTE OF TECHNOLOGY', '', 'mBA', '2024', 82.00, '', 104, '2024-07-11 02:38:19', 0, NULL, 0, NULL, 1),
(26242, 20168, '4', 'Jain University', '', 'MBA', '2024', 6.00, '', 1, '2024-07-11 10:13:07', 1, '2024-07-11 10:13:22', 0, NULL, 0),
(26243, 20168, '3', 'BES COLLEGE ', '', 'BCOM', '2021', 7.30, '', 1, '2024-07-11 10:15:40', 0, NULL, 0, NULL, 1),
(26244, 20171, '2', 'Stay board', '', '', '2021', 76.00, '', 1, '2024-07-11 11:29:13', 0, NULL, 0, NULL, 1),
(26245, 20173, '4', 'Bharathiar University ', '', 'Msc cs', '2023', 90.00, '', 1, '2024-07-11 01:00:00', 0, NULL, 0, NULL, 1),
(26246, 20174, '3', 'Thiruvalluvar ', '', 'BCA', '2018', 80.00, '', 1, '2024-07-12 12:56:09', 0, NULL, 0, NULL, 1),
(26247, 20174, '2', 'National Higher Secondary school ', '', '', '2015', 64.00, '', 1, '2024-07-12 12:56:49', 0, NULL, 0, NULL, 1),
(26248, 20174, '1', 'National Higher Secondary school ', '', '', '2013', 84.00, '', 1, '2024-07-12 12:57:16', 0, NULL, 0, NULL, 1),
(26249, 20175, '1', 'Board', '', '', '2017', 93.40, '', 1, '2024-07-12 03:57:53', 0, NULL, 0, NULL, 1),
(26250, 20175, '2', 'Board', '', '', '2019', 88.19, '', 1, '2024-07-12 03:58:20', 0, NULL, 0, NULL, 1),
(26251, 20175, '3', 'University ', '', 'B. Com', '2022', 84.00, '', 1, '2024-07-12 03:58:37', 0, NULL, 0, NULL, 1),
(26252, 20175, '4', 'University ', '', 'MBA', '2024', 7.70, '', 1, '2024-07-12 03:58:57', 0, NULL, 0, NULL, 1),
(26253, 20176, '4', 'Annamalai University', '', 'Mba', '2024', 75.00, '', 1, '2024-07-12 04:44:02', 0, NULL, 0, NULL, 1),
(26254, 20176, '4', 'Annamalai University', '', 'MBA ', '2024', 75.00, '', 1, '2024-07-12 04:45:07', 0, NULL, 0, NULL, 1),
(26255, 20177, '3', 'Anna university ', '', 'B.E', '2024', 7.85, '', 1, '2024-07-12 04:46:09', 0, NULL, 0, NULL, 1),
(26256, 20178, '3', 'University of Madras ', '', 'B.sc CS', '2018', 62.00, '', 1, '2024-07-12 05:26:49', 0, NULL, 0, NULL, 1),
(26257, 20179, '4', 'Periyar university ', '', 'M com ', '2024', 74.50, '', 1, '2024-07-12 05:45:17', 0, NULL, 0, NULL, 1),
(26258, 20180, '3', 'Madras university', '', 'Bcom', '2024', 68.00, '', 1, '2024-07-12 05:51:50', 0, NULL, 0, NULL, 1),
(26259, 20182, '3', 'Anna University ', '', 'B.Tech It', '2012', 70.00, '', 1, '2024-07-12 06:01:59', 0, NULL, 0, NULL, 1),
(26260, 20183, '3', 'bs abdur rahman crescent institue of science and technology', '', 'bba', '2024', 8.39, '', 1, '2024-07-12 06:09:12', 0, NULL, 0, NULL, 1),
(26261, 20185, '3', 'Madras University ', '', 'Chemistry ', '2017', 70.31, '', 1, '2024-07-12 06:18:02', 0, NULL, 0, NULL, 1),
(26262, 20184, '3', 'Madras University ', '', 'Bsc.visual communication ', '2020', 60.00, '', 1, '2024-07-12 06:22:16', 0, NULL, 0, NULL, 1),
(26263, 20188, '4', 'saveetha school of managenent', '', 'mba in hr', '2024', 80.00, '', 1, '2024-07-12 06:58:59', 0, NULL, 0, NULL, 1),
(26264, 20188, '3', 'bishop heber college', '', 'b.sc computer Science', '2022', 85.00, '', 1, '2024-07-12 07:01:42', 0, NULL, 0, NULL, 1),
(26265, 20181, '3', 'Anna University ', '', 'B.E.aeronautical', '2022', 79.00, '', 1, '2024-07-12 07:01:58', 0, NULL, 0, NULL, 1),
(26266, 20187, '4', 'saveetha school of management', '', 'master of business administration', '2024', 87.00, '', 1, '2024-07-12 07:03:30', 1, '2024-07-12 07:04:20', 0, NULL, 1),
(26267, 20187, '3', 'ethiraj college for women', '', 'bachelor of business administration', '2022', 85.00, '', 1, '2024-07-12 07:04:54', 0, NULL, 0, NULL, 1),
(26268, 20186, '4', 'University ', '', 'Msc. Computer science ', '2019', 71.00, '', 1, '2024-07-12 07:16:11', 0, NULL, 0, NULL, 1),
(26269, 20189, '3', 'S.k university ', '', 'BBA', '2023', 72.00, '', 1, '2024-07-12 08:25:05', 0, NULL, 0, NULL, 1),
(26270, 20190, '4', 'M.G.R University ', '', 'Mba hrm', '2024', 83.00, '', 1, '2024-07-12 08:37:21', 0, NULL, 0, NULL, 1),
(26271, 20191, '4', 'DR. M.G.R. Educational and Research institute ', '', 'MBA', '2024', 83.00, '', 1, '2024-07-12 08:50:09', 0, NULL, 0, NULL, 1),
(26272, 20192, '3', 'Tamilnadu open university', '', 'Psychology', '2023', 100.00, '', 1, '2024-07-12 10:52:43', 0, NULL, 0, NULL, 1),
(26273, 20194, '3', 'panimalar engineering college', '', 'b.e', '2024', 80.00, '', 1, '2024-07-12 12:04:04', 0, NULL, 0, NULL, 1),
(26274, 20195, '3', 'Madars university ', '', 'Bca', '2024', 70.00, '', 1, '2024-07-12 12:55:50', 0, NULL, 0, NULL, 1),
(26275, 20193, '3', 'Baradhidasan University', '', 'B.com', '2024', 68.00, '', 1, '2024-07-12 05:13:44', 0, NULL, 0, NULL, 1),
(26276, 20196, '3', 'University ', '', 'BCA', '2024', 82.00, '', 1, '2024-07-13 04:36:25', 0, NULL, 0, NULL, 1),
(26277, 20197, '3', 'Excel Group of Institution ', '', 'B.E AGRICULTURE ENGINEER ', '2024', 7.00, '', 1, '2024-07-13 05:31:02', 1, '2024-07-13 05:33:12', 0, NULL, 1),
(26278, 20197, '2', 'Government High school ', '', '', '2020', 65.00, '', 1, '2024-07-13 05:31:49', 1, '2024-07-13 05:32:36', 0, NULL, 0),
(26279, 20197, '1', 'Government High school ', '', '', '2018', 73.80, '', 1, '2024-07-13 05:32:28', 1, '2024-07-13 05:32:39', 0, NULL, 0),
(26280, 20198, '3', 'University of Madras ', '', 'B.Com(General)', '2024', 75.00, '', 1, '2024-07-13 05:35:53', 0, NULL, 0, NULL, 1),
(26281, 20200, '3', 'Dr.MGR Janaki college of arts and science for women ', '', 'BCA ', '2021', 69.00, '', 1, '2024-07-13 05:36:11', 0, NULL, 0, NULL, 1),
(26282, 20198, '2', 'State Board', '', '', '2021', 83.00, '', 1, '2024-07-13 05:36:35', 0, NULL, 0, NULL, 1),
(26283, 20198, '1', 'State Board ', '', '', '2019', 69.00, '', 1, '2024-07-13 05:37:02', 0, NULL, 0, NULL, 1),
(26284, 20199, '3', 'Board ', '', 'BA English literature', '2024', 82.00, '', 1, '2024-07-13 05:38:29', 0, NULL, 0, NULL, 1),
(26285, 20201, '3', 'medras university', '', 'b.com', '2025', 50.00, '', 1, '2024-07-13 06:16:21', 0, NULL, 0, NULL, 1),
(26286, 20203, '3', 'SRM University ', '', 'B.com', '2024', 7.51, '', 1, '2024-07-13 06:28:35', 0, NULL, 0, NULL, 1),
(26287, 20202, '3', 'Periyar University ', '', 'BCA', '2019', 72.00, '', 1, '2024-07-13 06:38:07', 0, NULL, 0, NULL, 1),
(26288, 20204, '3', 'Anna University', '', 'B.E', '2024', 8.36, '', 1, '2024-07-13 07:13:52', 0, NULL, 0, NULL, 1),
(26289, 20205, '3', 'Asan memorial arts and science ', '', 'Bca', '2022', 80.00, '', 1, '2024-07-13 07:22:53', 0, NULL, 0, NULL, 1),
(26290, 20206, '3', 'Madras university ', '', 'B.com', '2024', 81.00, '', 1, '2024-07-13 07:24:03', 0, NULL, 0, NULL, 1),
(26291, 20207, '3', 'Madras University ', '', 'BCA', '2023', 60.00, '', 1, '2024-07-13 07:27:50', 0, NULL, 0, NULL, 1),
(26292, 20208, '3', 'University ', '', 'Bca ', '2019', 81.00, '', 1, '2024-07-13 08:19:26', 0, NULL, 0, NULL, 1),
(26293, 20211, '3', 'Madras University ', '', 'B.A history ', '2023', 65.00, '', 1, '2024-07-13 01:28:27', 0, NULL, 0, NULL, 1),
(26294, 20212, '4', 'Bangalore City University ', '', 'MBA', '2023', 70.00, '', 1, '2024-07-14 04:21:09', 1, '2024-07-14 04:21:32', 0, NULL, 0),
(26295, 20212, '1', 'Karnataka secondary education examination board ', '', '', '2016', 66.60, '', 1, '2024-07-14 04:22:10', 0, NULL, 0, NULL, 1),
(26296, 20212, '2', 'Department of  pre University education ', '', '', '2018', 70.00, '', 1, '2024-07-14 04:23:54', 0, NULL, 0, NULL, 1),
(26297, 20212, '3', 'University of Mysore ', '', 'B.com', '2021', 70.00, '', 1, '2024-07-14 04:24:48', 0, NULL, 0, NULL, 1),
(26298, 20212, '4', 'Bangalore City University ', '', 'MBA', '2023', 7.03, '', 1, '2024-07-14 04:25:13', 0, NULL, 0, NULL, 1),
(26299, 20213, '3', 'University of Madras ', '', 'Bsc mathmatics ', '2024', 70.00, '', 1, '2024-07-15 01:45:52', 1, '2024-07-15 01:46:03', 0, NULL, 1),
(26300, 20209, '3', 'University ', '', 'BelE', '2024', 82.00, '', 1, '2024-07-15 03:58:42', 0, NULL, 0, NULL, 1),
(26301, 20215, '3', 'Karnataka PU board', '', 'PCMB', '2023', 56.00, '', 1, '2024-07-15 04:02:32', 0, NULL, 0, NULL, 1),
(26302, 20217, '3', 'Anna university ', '', 'BE .Computer science ', '2024', 75.00, '', 1, '2024-07-15 05:04:31', 0, NULL, 0, NULL, 1),
(26303, 20216, '3', 'Dr.Mahalingam College of Engineering and Technology ', '', 'B.E. ECE', '2023', 87.00, '', 1, '2024-07-15 05:08:35', 0, NULL, 0, NULL, 1),
(26304, 20218, '4', 'Anna university ', '', 'MCA', '2023', 82.00, '', 1, '2024-07-15 05:18:49', 0, NULL, 0, NULL, 1),
(26305, 20218, '3', 'Thiruvalluvar university ', '', 'BCA', '2021', 57.00, '', 1, '2024-07-15 05:19:28', 0, NULL, 0, NULL, 1),
(26306, 20219, '3', 'Thiruvalluvar university', '', 'B.sc chemistry', '2023', 74.00, '', 1, '2024-07-15 05:19:40', 0, NULL, 0, NULL, 1),
(26307, 20218, '2', 'State Board', '', '', '2018', 61.00, '', 1, '2024-07-15 05:19:55', 0, NULL, 0, NULL, 1),
(26308, 20219, '1', 'State Board', '', 'B.sc.chemistry', '2018', 79.00, '', 1, '2024-07-15 05:21:51', 1, '2024-07-15 05:23:47', 0, NULL, 1),
(26309, 20219, '2', 'State Board', '', '', '2020', 60.00, '', 1, '2024-07-15 05:22:24', 0, NULL, 0, NULL, 1),
(26310, 20222, '4', 'Tiruvalluvar university', '', 'MCA', '2018', 76.00, '', 1, '2024-07-15 05:24:50', 0, NULL, 0, NULL, 1),
(26311, 20220, '3', 'Erode sengunthar Engineering College', '', 'Bachelor\'s degree', '2022', 76.00, '', 1, '2024-07-15 05:31:40', 0, NULL, 0, NULL, 1),
(26312, 20220, '2', 'Government Higher Secondary School', '', '', '2018', 77.00, '', 1, '2024-07-15 05:32:19', 0, NULL, 0, NULL, 1),
(26313, 20220, '1', 'Government Higher Secondary school', '', '', '2016', 70.00, '', 1, '2024-07-15 05:32:59', 0, NULL, 0, NULL, 1),
(26314, 20221, '3', 'University', '', 'Bsc computer science', '2024', 75.00, '', 1, '2024-07-15 05:44:01', 0, NULL, 0, NULL, 1),
(26315, 20221, '2', 'Board', '', '', '2021', 84.60, '', 1, '2024-07-15 05:44:38', 0, NULL, 0, NULL, 1),
(26316, 20221, '1', 'Board', '', '', '2019', 78.40, '', 1, '2024-07-15 05:45:20', 0, NULL, 0, NULL, 1),
(26317, 20226, '3', 'Alagappa University ', '', 'Bsc computer science ', '2022', 80.00, '', 1, '2024-07-15 05:49:27', 0, NULL, 0, NULL, 1),
(26318, 20228, '4', 'Madras of university ', '', 'MBA ', '2024', 86.00, '', 1, '2024-07-15 05:55:44', 0, NULL, 0, NULL, 1),
(26319, 20223, '3', 'BCA', '', 'Computer Application ', '2022', 89.00, '', 1, '2024-07-15 05:56:48', 0, NULL, 0, NULL, 1),
(26320, 20228, '3', 'Sri kanyaka parameswari arts and science college for women ', '', 'BCA ', '2021', 76.00, '', 1, '2024-07-15 05:57:04', 0, NULL, 0, NULL, 1),
(26321, 20225, '3', 'Madras University ', '', 'BCA(Computer Application)', '2022', 80.00, '', 1, '2024-07-15 05:57:13', 0, NULL, 0, NULL, 1),
(26322, 20228, '2', 'State board ', '', '', '2018', 69.90, '', 1, '2024-07-15 05:57:51', 0, NULL, 0, NULL, 1),
(26323, 20228, '1', 'State board ', '', '', '2016', 64.90, '', 1, '2024-07-15 05:58:23', 0, NULL, 0, NULL, 1),
(26324, 20229, '4', 'Madras University ', '', 'Msc', '2018', 70.00, '', 1, '2024-07-15 06:01:02', 0, NULL, 0, NULL, 1),
(26325, 20229, '4', 'Madras University ', '', 'Msc', '2018', 70.00, '', 1, '2024-07-15 06:02:14', 0, NULL, 0, NULL, 1),
(26326, 20224, '4', 'Annamalai University ', '', 'MCA', '2022', 8.30, '', 1, '2024-07-15 06:19:38', 0, NULL, 0, NULL, 1),
(26327, 20231, '3', 'Sri chandharasekara maha vidyala University Kancheepuram ', '', 'B.com', '2024', 7.90, '', 1, '2024-07-15 06:23:19', 0, NULL, 0, NULL, 1),
(26328, 20230, '3', 'Periyar university ', '', 'B.com', '2023', 70.00, '', 1, '2024-07-15 06:24:48', 1, '2024-07-15 06:25:14', 0, NULL, 1),
(26329, 20233, '3', 'Pondicherry', '', 'B. Tech', '2024', 84.00, '', 1, '2024-07-15 06:37:29', 0, NULL, 0, NULL, 1),
(26330, 20234, '5', 'Dote', '', 'Diploma', '2016', 68.00, '', 1, '2024-07-15 06:38:59', 0, NULL, 0, NULL, 1),
(26331, 20233, '5', 'Department of technical education', '', 'Diploma', '2020', 74.98, '', 1, '2024-07-15 06:39:32', 0, NULL, 0, NULL, 1),
(26332, 20235, '3', 'Thiruvalluvar university ', '', 'Bsc computer science ', '2023', 80.00, '', 1, '2024-07-15 06:40:47', 0, NULL, 0, NULL, 1),
(26333, 20233, '1', 'Secondary board of school', '', '', '2017', 79.20, '', 1, '2024-07-15 06:41:20', 0, NULL, 0, NULL, 1),
(26334, 20232, '3', 'PERIYAR UNIVERSITY ', '', 'B.VOC(TAD)', '2022', 7.30, '', 1, '2024-07-15 06:43:05', 0, NULL, 0, NULL, 1),
(26335, 20232, '1', 'STATE BOARD ', '', '', '2017', 89.90, '', 1, '2024-07-15 06:44:04', 0, NULL, 0, NULL, 1),
(26336, 20232, '2', 'STATE BOARD ', '', '', '2019', 68.80, '', 1, '2024-07-15 06:44:29', 0, NULL, 0, NULL, 1),
(26337, 20236, '4', 'Periyar university', '', 'M Sc', '2019', 89.00, '', 1, '2024-07-15 06:50:37', 0, NULL, 0, NULL, 1),
(26338, 20227, '3', 'Guru Nanak college', '', 'Bsc computer science ', '2022', 80.00, '', 1, '2024-07-15 06:52:42', 0, NULL, 0, NULL, 1),
(26339, 20227, '1', 'St . Antony Matric hr sec school ', '', '', '2017', 87.00, '', 1, '2024-07-15 06:53:10', 0, NULL, 0, NULL, 1),
(26340, 20227, '2', 'St.antony matric hr sec school ', '', '', '2019', 74.00, '', 1, '2024-07-15 06:53:30', 0, NULL, 0, NULL, 1),
(26341, 20238, '3', 'presidency collage ', '', 'bcom', '2024', 60.00, '', 1, '2024-07-15 07:02:29', 0, NULL, 0, NULL, 1),
(26342, 20237, '4', 'Karpagam college of Engineering ', '', 'MCA', '2023', 70.00, '', 1, '2024-07-15 07:07:06', 0, NULL, 0, NULL, 1),
(26343, 20242, '3', 'Madras University ', '', 'B.com ', '2022', 84.00, '', 1, '2024-07-15 07:36:19', 0, NULL, 0, NULL, 1),
(26344, 20242, '2', 'Kaligi ranganathan mont ford higher secondary school ', '', '', '2019', 54.00, '', 1, '2024-07-15 07:37:02', 0, NULL, 0, NULL, 1),
(26345, 20242, '1', 'Periyar matriculation higher secondary school ', '', '', '2017', 80.00, '', 1, '2024-07-15 07:37:36', 0, NULL, 0, NULL, 1),
(26346, 20239, '3', 'University of madras', '', 'Bcomc.a', '2024', 70.00, '', 1, '2024-07-15 07:39:25', 0, NULL, 0, NULL, 1),
(26347, 20241, '3', 'University of madras', '', 'b.com', '2024', 72.00, '', 1, '2024-07-15 07:39:28', 0, NULL, 0, NULL, 1),
(26348, 20240, '3', 'Madras university', '', 'B com', '2024', 70.00, '', 1, '2024-07-15 07:47:57', 0, NULL, 0, NULL, 1),
(26349, 20244, '3', 'Bangalore University ', '', 'Bba', '2023', 63.00, '', 1, '2024-07-15 08:08:49', 0, NULL, 0, NULL, 1),
(26350, 20246, '3', 'Bharathiyar university ', '', 'Bsc computer science ', '2021', 72.00, '', 1, '2024-07-15 09:02:45', 0, NULL, 0, NULL, 1),
(26351, 20247, '3', 'Alagappa University ', '', 'BBA', '2024', 60.00, '', 1, '2024-07-15 09:08:08', 0, NULL, 0, NULL, 1),
(26352, 20247, '5', 'Murugappa polytechnic college ', '', 'Ece', '2017', 82.00, '', 1, '2024-07-15 09:08:55', 0, NULL, 0, NULL, 1),
(26353, 20250, '3', 'Madras university ', '', 'Bachelor Of arts', '2023', 69.00, '', 1, '2024-07-15 09:14:41', 0, NULL, 0, NULL, 1),
(26354, 20248, '3', 'Anna University ', '', 'Bachelor of engineer', '2021', 74.00, '', 1, '2024-07-15 09:36:20', 0, NULL, 0, NULL, 1),
(26355, 20248, '3', 'jaYa engeineering cpllege', '', 'BE', '2021', 7.30, '', 104, '2024-07-15 03:06:30', 0, NULL, 0, NULL, 1),
(26356, 20249, '3', 'Madras ', '', 'Bsc computer science ', '2022', 76.00, '', 1, '2024-07-15 09:39:04', 0, NULL, 0, NULL, 1),
(26357, 20252, '3', 'University ', '', 'BCA', '2021', 82.00, '', 1, '2024-07-15 09:43:34', 0, NULL, 0, NULL, 1),
(26358, 20251, '3', 'University ', '', 'B.com general ', '2024', 85.00, '', 1, '2024-07-15 10:25:40', 0, NULL, 0, NULL, 1),
(26359, 20254, '2', 'state board ', '', '', '2017', 50.00, '', 1, '2024-07-15 12:13:54', 1, '2024-07-15 12:14:31', 0, NULL, 1),
(26360, 20253, '2', 'State Board', '', '', '2017', 89.00, '', 1, '2024-07-15 12:25:07', 0, NULL, 0, NULL, 1),
(26361, 20253, '3', 'Anna University ', '', 'Be / ECE ', '2021', 79.00, '', 1, '2024-07-15 12:25:36', 0, NULL, 0, NULL, 1),
(26362, 20243, '3', 'University of Madras ', '', 'B.com cs', '2020', 60.00, '', 1, '2024-07-16 05:01:00', 1, '2024-07-16 05:01:14', 0, NULL, 0),
(26363, 20243, '3', 'University of Madras ', '', 'B.com cs', '2020', 65.26, '', 1, '2024-07-16 05:04:48', 0, NULL, 0, NULL, 1),
(26364, 20255, '3', 'Madras University ', '', 'BCA', '2024', 65.00, '', 1, '2024-07-16 05:06:18', 0, NULL, 0, NULL, 1),
(26365, 20255, '1', 'St.Thomas school ', '', '', '2019', 61.00, '', 1, '2024-07-16 05:08:08', 1, '2024-07-16 05:10:27', 0, NULL, 1),
(26366, 20255, '2', 'St.thomas school ', '', '', '2021', 65.00, '', 1, '2024-07-16 05:09:06', 1, '2024-07-16 05:09:28', 0, NULL, 1),
(26367, 20256, '4', 'Anna University ', '', 'Master of Computer Application ', '2023', 84.00, '', 1, '2024-07-16 05:13:11', 0, NULL, 0, NULL, 1),
(26368, 20243, '2', 'state board', '', '', '2016', 52.00, '', 1, '2024-07-16 05:14:08', 1, '2024-07-16 05:14:35', 0, NULL, 0),
(26369, 20257, '3', 'Bharathidasan University ', '', 'B.com', '2023', 80.00, '', 1, '2024-07-16 05:28:39', 0, NULL, 0, NULL, 1),
(26370, 20258, '3', 'Bharathiyar university ', '', 'B.A English literature ', '2022', 73.00, '', 1, '2024-07-16 05:32:42', 1, '2024-07-16 05:33:00', 0, NULL, 0),
(26371, 20258, '1', 'Tamilnadu state government ', '', '', '2017', 79.80, '', 1, '2024-07-16 05:33:31', 0, NULL, 0, NULL, 1),
(26372, 20258, '2', 'Tamilnadu state government ', '', '', '2019', 70.00, '', 1, '2024-07-16 05:34:48', 0, NULL, 0, NULL, 1),
(26373, 20258, '3', 'Bharathiyar university ', '', 'B.A English literature ', '2022', 73.00, '', 1, '2024-07-16 05:35:29', 0, NULL, 0, NULL, 1),
(26374, 20258, '4', 'Periyar university ', '', 'MBA(HRM) online course ', '2026', 70.00, '', 1, '2024-07-16 05:37:15', 0, NULL, 0, NULL, 1),
(26375, 20260, '3', 'Loyola ', '', 'Bsc physics ', '2022', 65.00, '', 1, '2024-07-16 05:48:17', 0, NULL, 0, NULL, 1),
(26376, 20259, '3', 'University of Madras ', '', 'B.A Economics ', '2024', 76.00, '', 1, '2024-07-16 05:49:17', 0, NULL, 0, NULL, 1),
(26377, 20259, '1', 'CBSE', '', '', '2019', 58.00, '', 1, '2024-07-16 05:50:24', 0, NULL, 0, NULL, 1),
(26378, 20259, '2', 'CBSE', '', '', '2021', 77.40, '', 1, '2024-07-16 05:50:47', 0, NULL, 0, NULL, 1),
(26379, 20262, '2', 'Coaching Centre', '', '', '2024', 75.00, '', 1, '2024-07-16 06:02:37', 0, NULL, 0, NULL, 1),
(26380, 20261, '3', 'University of Madras ', '', 'B.com general ', '2024', 80.00, '', 1, '2024-07-16 06:02:49', 0, NULL, 0, NULL, 1),
(26381, 20263, '4', 'Bharathidhasan ', '', 'HRM', '2024', 61.46, '', 1, '2024-07-16 06:05:13', 0, NULL, 0, NULL, 1),
(26382, 20264, '3', 'Ponjesly College of Engineering, Nagercoil ', '', 'B.E Mechanical Engineering ', '2021', 7.45, '', 1, '2024-07-16 06:18:21', 0, NULL, 0, NULL, 1),
(26383, 20269, '3', 'Thiruvalluvar University ', '', 'Bsc Computer Science ', '2019', 73.00, '', 1, '2024-07-16 06:31:51', 0, NULL, 0, NULL, 1),
(26384, 20266, '3', 'University of madras', '', 'Ba Defence & strategic ', '2023', 65.00, '', 1, '2024-07-16 06:33:46', 0, NULL, 0, NULL, 1),
(26385, 20271, '3', 'Anna University ', '', 'B.E', '2024', 7.38, '', 1, '2024-07-16 06:34:06', 0, NULL, 0, NULL, 1),
(26386, 20271, '1', 'State Board ', '', '', '2018', 74.00, '', 1, '2024-07-16 06:34:31', 0, NULL, 0, NULL, 1),
(26387, 20271, '2', 'State Board ', '', '', '2020', 64.00, '', 1, '2024-07-16 06:34:47', 0, NULL, 0, NULL, 1),
(26388, 20270, '2', 'Alagappa university', '', '', '2019', 75.00, '', 1, '2024-07-16 06:42:22', 0, NULL, 0, NULL, 1),
(26389, 20274, '3', 'Anna University ', '', 'BE', '2019', 66.00, '', 1, '2024-07-16 06:43:00', 0, NULL, 0, NULL, 1),
(26390, 20275, '3', 'University of madras ', '', 'B.A ECONOMIC ', '2020', 65.00, '', 1, '2024-07-16 06:45:35', 0, NULL, 0, NULL, 1),
(26391, 20267, '3', 'Madras University ', '', 'B.a', '2023', 65.00, '', 1, '2024-07-16 06:45:57', 0, NULL, 0, NULL, 1),
(26392, 20268, '3', 'Thiruvalluvar University ', '', 'B.sc', '2023', 78.00, '', 1, '2024-07-16 06:48:00', 0, NULL, 0, NULL, 1),
(26393, 20273, '3', 'Madras University ', '', 'B.com corporate secretaryship ', '2024', 73.00, '', 1, '2024-07-16 06:48:26', 0, NULL, 0, NULL, 1),
(26394, 20272, '3', 'Madras University ', '', 'B.com(cs)', '2024', 75.00, '', 1, '2024-07-16 06:49:58', 0, NULL, 0, NULL, 1),
(26395, 20276, '1', 'Madras university', '', '', '2023', 61.00, '', 1, '2024-07-16 06:52:16', 0, NULL, 0, NULL, 1),
(26396, 20277, '3', 'University of Madras ', '', 'BA English literature ', '2024', 78.00, '', 1, '2024-07-16 07:02:35', 0, NULL, 0, NULL, 1),
(26397, 20279, '1', 'Gk jain school ', '', '', '2010', 70.00, '', 1, '2024-07-16 07:26:29', 0, NULL, 0, NULL, 1),
(26398, 20279, '2', 'Private institutions ', '', '', '2012', 60.00, '', 1, '2024-07-16 07:27:00', 0, NULL, 0, NULL, 1),
(26399, 20279, '3', 'The new college ', '', 'Ba sociology ', '2015', 72.00, '', 1, '2024-07-16 07:27:30', 0, NULL, 0, NULL, 1),
(26400, 20279, '4', 'Pondicherry University ', '', 'MBA HRM ', '2022', 75.00, '', 1, '2024-07-16 07:28:05', 0, NULL, 0, NULL, 1),
(26401, 20278, '5', 'murugappa polytechnic ', '', 'dme', '2023', 65.00, '', 1, '2024-07-16 07:49:30', 0, NULL, 0, NULL, 1),
(26402, 20280, '3', 'State board & Periyar University', '', 'Bsc mathematics ', '2021', 65.00, '', 1, '2024-07-16 08:03:24', 0, NULL, 0, NULL, 1),
(26403, 20281, '3', 'Periyar university ', '', 'Bsc maths', '2021', 73.00, '', 1, '2024-07-16 08:36:50', 0, NULL, 0, NULL, 1),
(26404, 20282, '4', 'University of Madras ', '', 'MBA ', '2024', 75.00, '', 1, '2024-07-16 10:19:31', 0, NULL, 0, NULL, 1),
(26405, 20283, '1', 'State Board', '', '', '2016', 92.60, '', 1, '2024-07-16 10:35:58', 0, NULL, 0, NULL, 1),
(26406, 20283, '2', 'State Board', '', '', '2018', 69.25, '', 1, '2024-07-16 10:36:21', 0, NULL, 0, NULL, 1),
(26407, 20283, '3', 'National College (Autonomous), Trichy', '', 'BSc Statistics', '2021', 81.64, '', 1, '2024-07-16 10:37:00', 0, NULL, 0, NULL, 1),
(26408, 20283, '4', 'Coventry University, UK', '', 'MSc International Business Management', '2023', 71.00, '', 1, '2024-07-16 10:37:52', 0, NULL, 0, NULL, 1),
(26409, 20284, '3', 'Madras University ', '', 'Bsc maths ', '2023', 70.00, '', 1, '2024-07-16 12:35:16', 0, NULL, 0, NULL, 1),
(26410, 20285, '3', 'Bharathidhasan university ', '', 'Bsc computer science ', '2024', 70.00, '', 1, '2024-07-16 12:40:44', 0, NULL, 0, NULL, 1),
(26411, 20286, '4', 'Anna University ', '', 'MBA ', '2021', 70.00, '', 1, '2024-07-16 12:41:37', 0, NULL, 0, NULL, 1),
(26412, 20287, '3', 'Excel Engineering College ', '', 'BE.ECE', '2023', 7.90, '', 1, '2024-07-16 12:59:44', 0, NULL, 0, NULL, 1),
(26413, 20289, '3', 'University ', '', 'B.com', '2023', 77.60, '', 1, '2024-07-17 04:34:15', 0, NULL, 0, NULL, 1),
(26414, 20291, '3', 'Madras University ', '', 'B com ', '2024', 60.00, '', 1, '2024-07-17 05:29:54', 0, NULL, 0, NULL, 1),
(26415, 20292, '3', 'Madras University ', '', 'B.COM', '2023', 72.00, '', 1, '2024-07-17 05:31:38', 0, NULL, 0, NULL, 1),
(26416, 20295, '1', 'Board', '', '', '2017', 93.00, '', 1, '2024-07-17 05:32:20', 0, NULL, 0, NULL, 1),
(26417, 20294, '4', 'Anna University', '', 'MCA', '2024', 82.00, '', 1, '2024-07-17 05:32:40', 0, NULL, 0, NULL, 1),
(26418, 20295, '2', 'Board', '', '', '2019', 68.00, '', 1, '2024-07-17 05:32:47', 0, NULL, 0, NULL, 1),
(26419, 20293, '4', 'Hindustan institute of technology and science ', '', 'Mba', '2025', 7.30, '', 1, '2024-07-17 05:33:13', 0, NULL, 0, NULL, 1),
(26420, 20295, '3', 'University', '', 'B.Tech IT', '2023', 81.00, '', 1, '2024-07-17 05:33:14', 0, NULL, 0, NULL, 1),
(26421, 20293, '3', 'Coimbatore institute of engineering and technology ', '', 'BE', '2018', 6.80, '', 1, '2024-07-17 05:33:53', 0, NULL, 0, NULL, 1),
(26422, 20293, '2', 'Laurel higher secondary school ', '', '', '2014', 7.30, '', 1, '2024-07-17 05:34:18', 0, NULL, 0, NULL, 1),
(26423, 20293, '1', 'Government higher secondary school ', '', '', '2012', 8.60, '', 1, '2024-07-17 05:34:48', 0, NULL, 0, NULL, 1),
(26424, 20290, '3', 'Madras University ', '', 'B.com general ', '2022', 73.80, '', 1, '2024-07-17 05:39:52', 0, NULL, 0, NULL, 1),
(26425, 20297, '3', 'Madras University ', '', 'BBA ', '2023', 71.00, '', 1, '2024-07-17 05:41:55', 0, NULL, 0, NULL, 1),
(26426, 20299, '5', 'Calicut', '', 'Pursuing', '2024', 64.00, '', 1, '2024-07-17 05:57:38', 0, NULL, 0, NULL, 1),
(26427, 20299, '3', 'Calicut university ', '', 'Pursuing', '2024', 64.00, '', 1, '2024-07-17 05:58:09', 0, NULL, 0, NULL, 1),
(26428, 20301, '3', 'University ', '', 'B com corporate secretaryship ', '2024', 76.00, '', 1, '2024-07-17 05:58:28', 0, NULL, 0, NULL, 1),
(26429, 20299, '2', 'Kerala', '', '', '2019', 74.00, '', 1, '2024-07-17 05:59:09', 0, NULL, 0, NULL, 1),
(26430, 20300, '4', 'MEASI INSTITUTE OF INFORMATION TECHNOLOGY ', '', 'MCA', '2024', 79.00, '', 1, '2024-07-17 05:59:15', 1, '2024-07-17 06:00:22', 0, NULL, 1),
(26431, 20300, '3', 'THE NEW COLLEGE ', '', 'BCA', '2022', 77.00, '', 1, '2024-07-17 06:00:03', 0, NULL, 0, NULL, 1),
(26432, 20296, '3', 'Madras University ', '', 'Bcom ', '2023', 71.00, '', 1, '2024-07-17 06:00:12', 0, NULL, 0, NULL, 1),
(26433, 20300, '2', 'STATE BOARD', '', '', '2019', 58.00, '', 1, '2024-07-17 06:00:43', 0, NULL, 0, NULL, 1),
(26434, 20300, '1', 'STATE BOARD', '', '', '2017', 73.00, '', 1, '2024-07-17 06:01:01', 0, NULL, 0, NULL, 1),
(26435, 20298, '4', 'Saveetha university ', '', 'MBA', '2024', 80.00, '', 1, '2024-07-17 06:01:30', 0, NULL, 0, NULL, 1),
(26436, 20302, '4', 'SRM EASWARI engineering college ', '', 'Mba hr and finance ', '2024', 7.80, '', 1, '2024-07-17 06:06:55', 0, NULL, 0, NULL, 1),
(26437, 20303, '4', 'Sri Sankara Arts & Science College', '', 'MBA', '2024', 67.60, '', 1, '2024-07-17 06:31:28', 0, NULL, 0, NULL, 1),
(26438, 20303, '3', 'Sathyabama Institute of science and technology', '', 'B.E., Computer Science and Engineering', '2021', 62.60, '', 1, '2024-07-17 06:34:45', 0, NULL, 0, NULL, 1),
(26439, 20304, '4', 'Sri Sankara arts and science college ', '', 'MBA', '2024', 70.00, '', 1, '2024-07-17 06:34:51', 0, NULL, 0, NULL, 1),
(26440, 20304, '3', 'Sri Sankara arts and science college ', '', 'B.Com', '2022', 71.00, '', 1, '2024-07-17 06:36:02', 0, NULL, 0, NULL, 1),
(26441, 20305, '3', 'University of Madras ', '', 'B.sc(computer science)', '2024', 84.00, '', 1, '2024-07-17 06:37:31', 0, NULL, 0, NULL, 1),
(26442, 20307, '3', 'Anna University', '', 'B.E Computer science Engineering', '2022', 78.00, '', 1, '2024-07-17 06:50:34', 0, NULL, 0, NULL, 1),
(26443, 20309, '4', 'Thiruvalluvar university ', '', 'MA. English ', '2019', 72.00, '', 1, '2024-07-17 07:08:43', 0, NULL, 0, NULL, 1),
(26444, 20308, '1', 'Mercury matriculation hr sec school', '', '', '2006', 55.00, '', 1, '2024-07-17 07:14:22', 0, NULL, 0, NULL, 1),
(26445, 20308, '2', 'Dr GMTTV hr sec school state Board', '', '', '2008', 70.00, '', 1, '2024-07-17 07:16:48', 0, NULL, 0, NULL, 1),
(26446, 20311, '3', 'Magna college of engineering ', '', 'B.E ', '2013', 5.70, '', 1, '2024-07-17 07:18:21', 0, NULL, 0, NULL, 1),
(26447, 20308, '3', 'Thiruthangal nadar college selavayal', '', 'Bachelor of commerce', '2011', 66.00, '', 1, '2024-07-17 07:19:22', 0, NULL, 0, NULL, 1),
(26448, 20310, '4', 'Bharathidasan university ', '', 'MSC CS ', '2024', 72.00, '', 1, '2024-07-17 07:20:13', 0, NULL, 0, NULL, 1),
(26449, 20308, '4', 'Jaya engineering college Thiruninravur', '', 'Master of business Administration', '2014', 79.00, '', 1, '2024-07-17 07:22:14', 0, NULL, 0, NULL, 1),
(26450, 20312, '4', 'Bharathidasan university ', '', 'MSc CS ', '2024', 70.00, '', 1, '2024-07-17 07:43:38', 0, NULL, 0, NULL, 1),
(26451, 20313, '3', 'University of Madras ', '', 'B.com', '2024', 7.00, '', 1, '2024-07-17 07:47:59', 0, NULL, 0, NULL, 1),
(26452, 20314, '3', 'VIT UNIVERSITY ', '', '', '2021', 6.25, '', 1, '2024-07-17 08:17:22', 0, NULL, 0, NULL, 1),
(26453, 20316, '3', 'University of Madras ', '', 'B.cA(computer application)', '2024', 87.00, '', 1, '2024-07-17 09:14:40', 0, NULL, 0, NULL, 1),
(26454, 20315, '3', 'Unvacity  of madras ', '', 'B.A.Economics', '2024', 75.00, '', 1, '2024-07-17 09:15:28', 0, NULL, 0, NULL, 1),
(26455, 20317, '3', 'Madras University ', '', 'B.COM', '2024', 70.00, '', 1, '2024-07-17 09:18:43', 0, NULL, 0, NULL, 1),
(26456, 20318, '3', 'madras university ', '', 'bca ', '2016', 82.00, '', 1, '2024-07-17 09:28:48', 0, NULL, 0, NULL, 1),
(26457, 20319, '3', 'University', '', 'B. tech', '2025', 80.00, '', 1, '2024-07-17 09:53:30', 0, NULL, 0, NULL, 1),
(26458, 20320, '3', 'University ', '', 'Bachelor of Technology (B.Tech.)', '2025', 83.00, '', 1, '2024-07-17 09:53:30', 0, NULL, 0, NULL, 1),
(26459, 20321, '3', 'Karnataka state Board ', '', '12th', '2015', 78.00, '', 1, '2024-07-17 05:03:13', 0, NULL, 0, NULL, 1),
(26460, 20323, '4', 'Annamalai University ', '', 'MCA ( Computer Applications )', '2023', 89.90, '', 1, '2024-07-18 05:08:30', 0, NULL, 0, NULL, 1),
(26461, 20323, '3', 'Thiruvalluvar University ', '', 'BCA ( computer Applications )', '2021', 85.60, '', 1, '2024-07-18 05:09:16', 0, NULL, 0, NULL, 1),
(26462, 20322, '3', 'Madras University ', '', 'BSc Computer science ', '2023', 90.10, '', 1, '2024-07-18 05:09:30', 0, NULL, 0, NULL, 1),
(26463, 20323, '2', 'State board ', '', '', '2018', 78.00, '', 1, '2024-07-18 05:10:18', 0, NULL, 0, NULL, 1),
(26464, 20323, '1', 'State board ', '', '', '2016', 82.00, '', 1, '2024-07-18 05:10:44', 0, NULL, 0, NULL, 1),
(26465, 20324, '3', 'Board ', '', 'Bcom ', '2024', 75.00, '', 1, '2024-07-18 05:16:37', 0, NULL, 0, NULL, 1),
(26466, 20325, '4', 'noorul islam university', '', 'mba', '2024', 75.00, '', 1, '2024-07-18 05:34:32', 0, NULL, 0, NULL, 1),
(26467, 20329, '3', 'Manonmaniam Sundaranar University ', '', 'BCA', '2022', 9.00, '', 1, '2024-07-18 05:39:00', 0, NULL, 0, NULL, 1),
(26468, 20329, '2', 'Sri Gomathi Ambal Matric Hr sec school ', '', '', '2019', 63.50, '', 1, '2024-07-18 05:39:32', 0, NULL, 0, NULL, 1),
(26469, 20329, '1', 'Sri Gomathi Ambal Matric Hr sec school ', '', '', '2017', 83.50, '', 1, '2024-07-18 05:41:10', 0, NULL, 0, NULL, 1),
(26470, 20327, '4', 'Bharathidasan university ', '', 'MSC COMPUTER SCIENCE ', '2023', 72.00, '', 1, '2024-07-18 05:45:08', 0, NULL, 0, NULL, 1),
(26471, 20326, '3', 'Madras University ', '', 'B.com', '2024', 50.00, '', 1, '2024-07-18 05:46:57', 0, NULL, 0, NULL, 1),
(26472, 20332, '4', 'Autonomous ', '', 'M.A. English ', '2023', 70.00, '', 1, '2024-07-18 05:51:21', 0, NULL, 0, NULL, 1),
(26473, 20332, '3', 'Thiruvalluvar University ', '', 'B.A.English', '2020', 69.00, '', 1, '2024-07-18 05:52:18', 0, NULL, 0, NULL, 1),
(26474, 20332, '2', 'Satate board ', '', '', '2018', 70.00, '', 1, '2024-07-18 05:52:56', 0, NULL, 0, NULL, 1),
(26475, 20332, '1', 'State board', '', '', '2016', 69.00, '', 1, '2024-07-18 05:53:28', 0, NULL, 0, NULL, 1),
(26476, 20330, '4', 'Bharathidasan university ', '', 'Msc computer science ', '2023', 83.00, '', 1, '2024-07-18 05:57:47', 0, NULL, 0, NULL, 1),
(26477, 20328, '3', 'State board ', '', 'Bsc mathematics ', '2023', 52.00, '', 1, '2024-07-18 05:58:39', 0, NULL, 0, NULL, 1),
(26478, 20330, '4', 'Bharathidasan university ', '', 'Msc computer science ', '2023', 83.00, '', 1, '2024-07-18 05:58:47', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26479, 20331, '3', 'Vel tech multi tech Dr rangarajan Dr sakunthala engineering college ', '', 'BTECH ', '2024', 73.00, '', 1, '2024-07-18 06:04:27', 1, '2024-07-18 06:05:06', 0, NULL, 1),
(26480, 20331, '5', 'PERIYAR CENTENARY POLYTECHNIC COLLEGE ', '', 'DME', '2021', 79.00, '', 1, '2024-07-18 06:05:44', 0, NULL, 0, NULL, 1),
(26481, 20337, '3', 'Anna University ', '', 'BE', '2023', 80.00, '', 1, '2024-07-18 06:06:02', 0, NULL, 0, NULL, 1),
(26482, 20331, '2', 'Kamala subramanian matric hr secondary school ', '', '', '2018', 58.00, '', 1, '2024-07-18 06:06:44', 0, NULL, 0, NULL, 1),
(26483, 20335, '3', 'Madras University ', '', 'B.com (accounting and finance)', '2024', 75.00, '', 1, '2024-07-18 06:06:53', 0, NULL, 0, NULL, 1),
(26484, 20334, '3', 'Madras University ', '', 'B. Com', '2024', 75.00, '', 1, '2024-07-18 06:14:08', 0, NULL, 0, NULL, 1),
(26485, 20336, '3', 'Bharathidhasan university ', '', 'B.C.A', '2023', 70.00, '', 1, '2024-07-18 06:14:19', 0, NULL, 0, NULL, 1),
(26486, 20339, '4', 'University of madras', '', 'MCA', '2024', 80.00, '', 1, '2024-07-18 06:23:36', 0, NULL, 0, NULL, 1),
(26487, 20333, '3', 'Bangalore University ', '', 'Bcom', '2023', 76.00, '', 1, '2024-07-18 06:27:12', 0, NULL, 0, NULL, 1),
(26488, 20306, '2', 'Csl kellett hr sce school ', '', '', '2011', 60.00, '', 1, '2024-07-18 06:31:40', 0, NULL, 0, NULL, 1),
(26489, 20338, '2', 'State Board ', '', '', '2015', 55.00, '', 1, '2024-07-18 06:35:24', 0, NULL, 0, NULL, 1),
(26490, 20340, '3', 'Madras University ', '', 'B com', '2024', 75.00, '', 1, '2024-07-18 06:56:42', 0, NULL, 0, NULL, 1),
(26491, 20344, '3', 'Madras University ', '', 'Bcom (General)', '2020', 58.00, '', 1, '2024-07-18 08:56:40', 0, NULL, 0, NULL, 1),
(26492, 20343, '3', 'Meenakshi academy of higher education and research', '', 'B.com', '2022', 86.00, '', 1, '2024-07-18 09:02:06', 0, NULL, 0, NULL, 1),
(26493, 20342, '3', 'Madras University ', '', 'Bca', '2023', 83.00, '', 1, '2024-07-18 09:06:16', 0, NULL, 0, NULL, 1),
(26494, 20346, '3', 'Bharathidasan University', '', 'BCA', '2024', 82.00, '', 1, '2024-07-18 09:52:06', 0, NULL, 0, NULL, 1),
(26495, 20347, '3', 'Madras University ', '', 'B.com accounting and finance ', '2024', 63.00, '', 1, '2024-07-18 01:41:53', 0, NULL, 0, NULL, 1),
(26496, 20349, '3', 'University of Madras ', '', 'B.Sc Computer Science ', '2024', 64.00, '', 1, '2024-07-19 04:43:33', 0, NULL, 0, NULL, 1),
(26497, 20349, '2', 'TN BOARD', '', '', '2021', 79.82, '', 1, '2024-07-19 04:44:43', 0, NULL, 0, NULL, 1),
(26498, 20349, '1', 'TN BOARD', '', '', '2019', 71.60, '', 1, '2024-07-19 04:45:11', 0, NULL, 0, NULL, 1),
(26499, 20348, '3', 'University of madras', '', 'BBA', '2021', 78.00, '', 1, '2024-07-19 04:51:35', 0, NULL, 0, NULL, 1),
(26500, 20354, '3', 'University ', '', 'B com general ', '2023', 65.00, '', 1, '2024-07-19 05:55:50', 0, NULL, 0, NULL, 1),
(26501, 20352, '3', 'University ', '', 'B.com Bank management ', '2024', 65.00, '', 1, '2024-07-19 05:57:29', 0, NULL, 0, NULL, 1),
(26502, 20350, '3', 'University ', '', 'BSC', '2024', 77.00, '', 1, '2024-07-19 05:57:40', 0, NULL, 0, NULL, 1),
(26503, 20356, '3', 'Madras University', '', 'B.com', '2024', 78.02, '', 1, '2024-07-19 05:59:41', 0, NULL, 0, NULL, 1),
(26504, 20355, '3', 'Madras University ', '', 'B.com', '2024', 72.13, '', 1, '2024-07-19 06:03:16', 0, NULL, 0, NULL, 1),
(26505, 20351, '3', 'Madras University ', '', 'B.com', '2024', 72.00, '', 1, '2024-07-19 06:07:17', 0, NULL, 0, NULL, 1),
(26506, 20353, '3', 'Madras university', '', 'B. Com (general) ', '2024', 70.00, '', 1, '2024-07-19 06:07:29', 0, NULL, 0, NULL, 1),
(26507, 20358, '1', 'State board', '', '', '2015', 80.00, '', 1, '2024-07-19 06:07:47', 0, NULL, 0, NULL, 1),
(26508, 20358, '2', 'State board', '', '', '2017', 60.00, '', 1, '2024-07-19 06:08:10', 0, NULL, 0, NULL, 1),
(26509, 20358, '5', 'Dote', '', 'DECE(Electronics communication Engineering)', '2020', 90.00, '', 1, '2024-07-19 06:09:15', 0, NULL, 0, NULL, 1),
(26510, 20357, '3', 'Bharath university ', '', '  IT ', '2024', 85.00, '', 1, '2024-07-19 06:12:21', 0, NULL, 0, NULL, 1),
(26511, 20360, '3', 'Yogi vemana university ', '', 'Bsc', '2019', 8.00, '', 1, '2024-07-19 06:25:51', 0, NULL, 0, NULL, 1),
(26512, 20359, '3', 'University ', '', 'Bsc.computer science ', '2015', 62.00, '', 1, '2024-07-19 06:28:07', 0, NULL, 0, NULL, 1),
(26513, 20362, '3', 'Madras university', '', 'Bcom CA', '2021', 70.00, '', 1, '2024-07-19 06:33:45', 0, NULL, 0, NULL, 1),
(26514, 20361, '3', 'Madras University ', '', 'Bachelor of commerce ', '2024', 77.00, '', 1, '2024-07-19 06:34:35', 0, NULL, 0, NULL, 1),
(26515, 20364, '3', 'University of Madras ', '', 'B.cOM', '2024', 65.00, '', 1, '2024-07-19 07:04:37', 0, NULL, 0, NULL, 1),
(26516, 20368, '3', 'Mardas university', '', 'B.A', '2022', 65.00, '', 1, '2024-07-19 07:36:41', 0, NULL, 0, NULL, 1),
(26517, 20371, '3', 'Bharath University', '', 'Bsc computer science', '2020', 7.20, '', 1, '2024-07-19 08:00:08', 0, NULL, 0, NULL, 1),
(26518, 20370, '3', 'Madras university', '', 'BBA', '2024', 65.00, '', 1, '2024-07-19 08:06:19', 0, NULL, 0, NULL, 1),
(26519, 20372, '3', 'madras  university', '', 'Bsc', '2024', 79.00, '', 1, '2024-07-19 08:16:12', 0, NULL, 0, NULL, 1),
(26520, 20372, '1', 'tamil nadu board of schooling', '', '', '2019', 84.00, '', 1, '2024-07-19 08:16:46', 0, NULL, 0, NULL, 1),
(26521, 20372, '2', 'tamil nadu board of schooling', '', '', '2021', 86.00, '', 1, '2024-07-19 08:17:29', 0, NULL, 0, NULL, 1),
(26522, 20375, '3', 'Loyola college, Chennai ', '', 'B SC CHEMISTRY ', '2024', 6.62, '', 1, '2024-07-19 06:22:26', 0, NULL, 0, NULL, 1),
(26523, 20379, '4', 'Bharathidasan University ', '', 'MBA', '2023', 71.00, '', 1, '2024-07-20 04:36:49', 0, NULL, 0, NULL, 1),
(26524, 20380, '1', 'State board ', '', '', '2014', 82.40, '', 1, '2024-07-20 04:47:37', 0, NULL, 0, NULL, 1),
(26525, 20380, '5', 'Technical board of education State board ', '', 'Electrical and electronics engineering ', '2017', 69.00, '', 1, '2024-07-20 04:48:24', 0, NULL, 0, NULL, 1),
(26526, 20380, '3', 'Anna University (Renganayagi Varatharaj college of engineering)', '', 'BE', '2020', 69.00, '', 1, '2024-07-20 04:49:13', 0, NULL, 0, NULL, 1),
(26527, 20381, '4', 'srm institute of science and technology', '', 'mca', '2024', 87.00, '', 1, '2024-07-20 05:09:13', 0, NULL, 0, NULL, 1),
(26528, 20383, '3', 'Anna University ', '', 'BE', '2022', 8.67, '', 1, '2024-07-20 05:14:27', 0, NULL, 0, NULL, 1),
(26529, 20386, '4', 'Madras University ', '', '', '2023', 7.96, '', 1, '2024-07-20 06:04:44', 0, NULL, 0, NULL, 1),
(26530, 20387, '3', 'Justice Basheer Ahmed Sayeed College for women ', '', 'Bcom', '2024', 75.00, '', 1, '2024-07-20 06:05:42', 0, NULL, 0, NULL, 1),
(26531, 20387, '1', 'Fathima Basheer matriculation higher secondary school for Girls ', '', '', '2019', 71.00, '', 1, '2024-07-20 06:06:30', 0, NULL, 0, NULL, 1),
(26532, 20388, '3', 'hindustan institute of Technology and Science ', '', 'bca', '2024', 70.00, '', 1, '2024-07-20 06:07:03', 0, NULL, 0, NULL, 1),
(26533, 20382, '3', 'Veltech University ', '', 'B.Tech', '2022', 7.56, '', 1, '2024-07-20 06:34:40', 0, NULL, 0, NULL, 1),
(26534, 20389, '3', 'Bharathidasan university', '', 'bca', '2023', 73.80, '', 1, '2024-07-20 06:39:44', 1, '2024-07-20 06:42:28', 0, NULL, 1),
(26535, 20389, '2', 'crescent international higher secondary school', '', '', '2020', 62.50, '', 1, '2024-07-20 06:42:04', 0, NULL, 0, NULL, 1),
(26536, 20389, '1', 'Crescent International Higher Secondary School', '', '', '2018', 83.80, '', 1, '2024-07-20 06:42:55', 0, NULL, 0, NULL, 1),
(26537, 20378, '3', 'Madras University', '', 'B.com', '2024', 76.00, '', 1, '2024-07-20 06:43:55', 0, NULL, 0, NULL, 1),
(26538, 20392, '3', 'bharadhidasan university', '', 'b.sc', '2023', 75.00, '', 1, '2024-07-20 06:53:18', 0, NULL, 0, NULL, 1),
(26539, 20392, '2', 'government boys hr.sec school', '', '', '2020', 65.00, '', 1, '2024-07-20 06:54:42', 0, NULL, 0, NULL, 1),
(26540, 20392, '1', 'beulah matriculation school', '', '', '2018', 72.00, '', 1, '2024-07-20 06:55:32', 0, NULL, 0, NULL, 1),
(26541, 20393, '3', 'bharathidasan university', '', 'bca', '2022', 67.00, '', 1, '2024-07-20 06:56:58', 0, NULL, 0, NULL, 1),
(26542, 20393, '2', 'raj vidyalaya matriculation higher secondary school', '', '', '2019', 63.00, '', 1, '2024-07-20 06:58:40', 0, NULL, 0, NULL, 1),
(26543, 20393, '1', 'Raj Vidyalaya Matriculation Higher Secondary School', '', '', '2017', 79.00, '', 1, '2024-07-20 06:59:05', 0, NULL, 0, NULL, 1),
(26544, 20390, '4', 'Annamalai University', '', 'MA English', '2022', 62.00, '', 1, '2024-07-20 07:09:29', 0, NULL, 0, NULL, 1),
(26545, 20394, '2', 'State board ', '', '', '2016', 60.00, '', 1, '2024-07-20 07:34:17', 0, NULL, 0, NULL, 1),
(26546, 20394, '1', 'State board ', '', '', '2014', 60.00, '', 1, '2024-07-20 07:35:07', 0, NULL, 0, NULL, 1),
(26547, 20395, '3', 'University of Madras ', '', 'BBA', '2024', 72.00, '', 1, '2024-07-20 09:24:14', 1, '2024-07-20 09:27:02', 0, NULL, 1),
(26548, 20396, '3', 'univ of madras', '', 'bba', '2024', 60.00, '', 1, '2024-07-20 09:25:27', 0, NULL, 0, NULL, 1),
(26549, 20366, '3', 'Anna University ', '', 'Bba', '2019', 60.00, '', 1, '2024-07-20 10:05:18', 0, NULL, 0, NULL, 1),
(26550, 20366, '2', 'Anna university', '', '', '2017', 60.00, '', 1, '2024-07-20 10:11:56', 0, NULL, 0, NULL, 1),
(26551, 20397, '3', 'JNTU Antapuramu', '', 'B. Tech', '2022', 70.00, '', 1, '2024-07-21 04:37:24', 0, NULL, 0, NULL, 1),
(26552, 20398, '3', 'Anna University ', '', 'BE (Computer science and engineering)', '2024', 8.20, '', 1, '2024-07-22 04:36:34', 0, NULL, 0, NULL, 1),
(26553, 20399, '5', 'government', '', 'ece ', '2018', 72.00, '', 1, '2024-07-22 05:26:11', 0, NULL, 0, NULL, 1),
(26554, 20400, '3', 'St Peter\'s institute of higher education and research ', '', 'Bsc computer science ', '2024', 67.00, '', 1, '2024-07-22 05:28:12', 0, NULL, 0, NULL, 1),
(26555, 20401, '2', 'Board', '', '', '2021', 71.62, '', 1, '2024-07-22 05:51:40', 1, '2024-07-22 05:52:46', 0, NULL, 0),
(26556, 20401, '2', 'Board', '', '', '2021', 71.62, '', 1, '2024-07-22 05:53:00', 0, NULL, 0, NULL, 1),
(26557, 20403, '5', 'Anna university ', '', 'Computer engineering ', '2023', 87.00, '', 1, '2024-07-22 06:00:59', 0, NULL, 0, NULL, 1),
(26558, 20402, '3', 'University', '', 'B.com.ca', '2024', 84.00, '', 1, '2024-07-22 06:03:51', 0, NULL, 0, NULL, 1),
(26559, 20402, '2', 'Board', '', '', '2019', 70.00, '', 1, '2024-07-22 06:05:20', 0, NULL, 0, NULL, 1),
(26560, 20402, '1', 'Board', '', '', '2021', 78.00, '', 1, '2024-07-22 06:05:59', 0, NULL, 0, NULL, 1),
(26561, 20405, '3', 'Sri venkateshwara university', '', 'B. Com', '2023', 79.00, '', 1, '2024-07-22 06:10:08', 0, NULL, 0, NULL, 1),
(26562, 20407, '3', 'Anna University ', '', 'B Tech Information Technology ', '2024', 79.00, '', 1, '2024-07-22 07:06:44', 0, NULL, 0, NULL, 1),
(26563, 20407, '1', 'Tamil Nadu State Board ', '', '', '2018', 79.00, '', 1, '2024-07-22 07:07:10', 0, NULL, 0, NULL, 1),
(26564, 20406, '3', 'Anna University', '', 'BTech Information Technology', '2024', 79.00, '', 1, '2024-07-22 07:07:37', 1, '2024-07-22 07:08:31', 0, NULL, 0),
(26565, 20407, '2', 'Tamil Nadu State Board ', '', '', '2020', 59.00, '', 1, '2024-07-22 07:07:39', 0, NULL, 0, NULL, 1),
(26566, 20406, '2', 'State board', '', '', '2020', 74.00, '', 1, '2024-07-22 07:08:21', 1, '2024-07-22 07:08:36', 0, NULL, 0),
(26567, 20406, '1', 'Sate board', '', '', '2018', 78.00, '', 1, '2024-07-22 07:09:12', 0, NULL, 0, NULL, 1),
(26568, 20406, '2', 'State board', '', '', '2020', 74.00, '', 1, '2024-07-22 07:09:43', 0, NULL, 0, NULL, 1),
(26569, 20406, '3', 'Anna University', '', 'B.Tech Information Technology', '2024', 79.70, '', 1, '2024-07-22 07:10:14', 0, NULL, 0, NULL, 1),
(26570, 20408, '3', 'Anna University ', '', 'B.E', '2023', 85.00, '', 1, '2024-07-22 07:25:09', 0, NULL, 0, NULL, 1),
(26571, 20408, '1', 'State board ', '', '', '2017', 88.00, '', 1, '2024-07-22 07:25:37', 0, NULL, 0, NULL, 1),
(26572, 20408, '2', 'State board ', '', '', '2019', 74.00, '', 1, '2024-07-22 07:26:04', 0, NULL, 0, NULL, 1),
(26573, 20409, '3', 'Anna University ', '', 'B.E', '2020', 7.10, '', 1, '2024-07-22 07:35:25', 0, NULL, 0, NULL, 1),
(26574, 20409, '1', 'State board ', '', '', '2014', 84.00, '', 1, '2024-07-22 07:36:25', 0, NULL, 0, NULL, 1),
(26575, 20411, '1', 'Second board of education ', '', '', '2016', 78.00, '', 1, '2024-07-22 09:31:56', 0, NULL, 0, NULL, 1),
(26576, 20415, '3', 'Anna University ', '', 'BE', '2023', 84.00, '', 1, '2024-07-23 04:51:34', 0, NULL, 0, NULL, 1),
(26577, 20414, '3', 'Anna university', '', 'B.E', '2023', 76.00, '', 1, '2024-07-23 04:51:41', 0, NULL, 0, NULL, 1),
(26578, 20419, '4', 'Bharathidasan University ', '', 'MCA', '2024', 70.40, '', 1, '2024-07-23 05:04:45', 0, NULL, 0, NULL, 1),
(26579, 20418, '5', 'central polytechnic college ', '', 'electronic and communication engineering ', '2021', 68.00, '', 1, '2024-07-23 05:05:16', 0, NULL, 0, NULL, 1),
(26580, 20419, '3', 'Bharathidasan University ', '', 'BCA', '2022', 74.40, '', 1, '2024-07-23 05:07:04', 0, NULL, 0, NULL, 1),
(26581, 20416, '3', 'Alagappa University ', '', 'BBA', '2023', 70.30, '', 1, '2024-07-23 05:07:11', 0, NULL, 0, NULL, 1),
(26582, 20420, '3', 'Sri venkateswar university ', '', 'B.sc', '2022', 7.00, '', 1, '2024-07-23 05:07:39', 0, NULL, 0, NULL, 1),
(26583, 20420, '2', 'Board of secondary school education ', '', '', '2015', 6.70, '', 1, '2024-07-23 05:08:33', 0, NULL, 0, NULL, 1),
(26584, 20420, '1', 'Board of intermediate ', '', '', '2017', 80.00, '', 1, '2024-07-23 05:09:44', 0, NULL, 0, NULL, 1),
(26585, 20421, '1', 'karpaga vigheshwara vidhalaya ', '', '', '2018', 45.00, '', 1, '2024-07-23 05:22:46', 0, NULL, 0, NULL, 1),
(26586, 20421, '2', 'kargapa viheshwara vidhalaya', '', '', '2020', 55.00, '', 1, '2024-07-23 05:24:03', 1, '2024-07-23 05:25:03', 0, NULL, 1),
(26587, 20422, '3', 'Vela University ', '', 'BCS ', '2024', 82.00, '', 1, '2024-07-23 05:32:00', 0, NULL, 0, NULL, 1),
(26588, 20423, '5', 'panimalar polytechnic college', '', 'computer engineering', '2021', 84.00, '', 1, '2024-07-23 06:01:00', 0, NULL, 0, NULL, 1),
(26589, 20425, '5', 'State board ', '', 'DME', '2018', 76.00, '', 1, '2024-07-23 06:30:14', 0, NULL, 0, NULL, 1),
(26590, 20425, '3', 'Madras University ', '', 'BBA', '2021', 70.00, '', 1, '2024-07-23 06:30:40', 0, NULL, 0, NULL, 1),
(26591, 20426, '3', 'Madaras university ', '', 'B. Com (cs)', '2022', 70.00, '', 1, '2024-07-23 07:40:59', 0, NULL, 0, NULL, 1),
(26592, 20427, '3', 'Anna university ', '', 'BE Aeronautical Engineering ', '2024', 75.00, '', 1, '2024-07-23 07:45:03', 0, NULL, 0, NULL, 1),
(26593, 20428, '3', 'Sitams ', '', 'B tech', '2023', 64.00, '', 1, '2024-07-23 07:50:08', 0, NULL, 0, NULL, 1),
(26594, 20429, '3', 'anna university', '', 'Be Aruronautical', '2024', 80.00, '', 1, '2024-07-23 07:54:08', 0, NULL, 0, NULL, 1),
(26595, 20413, '3', 'Madras University ', '', 'BBA', '2024', 75.00, '', 1, '2024-07-23 07:54:43', 0, NULL, 0, NULL, 1),
(26596, 20430, '4', 'Vels University ', '', 'MBA ( Marketing & hR)', '2024', 78.00, '', 1, '2024-07-23 08:59:31', 0, NULL, 0, NULL, 1),
(26597, 20432, '4', 'Mgr university', '', 'Mba', '2021', 80.00, '', 1, '2024-07-23 09:45:57', 0, NULL, 0, NULL, 1),
(26598, 20431, '3', 'Paavai Engineering College ', '', 'BE', '2024', 73.00, '', 1, '2024-07-23 10:17:54', 1, '2024-07-23 10:18:17', 0, NULL, 1),
(26599, 20435, '1', 'tamil nadu', '', '', '2017', 62.00, '', 1, '2024-07-24 05:15:28', 0, NULL, 0, NULL, 1),
(26600, 20436, '3', 'National College Trichy ', '', 'BSC statistics ', '2024', 74.00, '', 1, '2024-07-24 05:39:24', 0, NULL, 0, NULL, 1),
(26601, 20434, '1', 'Sv university ', '', '', '2023', 70.00, '', 1, '2024-07-24 05:53:02', 0, NULL, 0, NULL, 1),
(26602, 20438, '3', 'University of Madras', '', 'B Sc Mathematics ', '2024', 55.00, '', 1, '2024-07-24 06:01:32', 0, NULL, 0, NULL, 1),
(26603, 20438, '1', 'TN', '', '', '2019', 69.00, '', 1, '2024-07-24 06:02:26', 0, NULL, 0, NULL, 1),
(26604, 20438, '2', 'TN', '', '', '2021', 70.00, '', 1, '2024-07-24 06:03:58', 0, NULL, 0, NULL, 1),
(26605, 20439, '4', 'wcc', '', 'mba', '2013', 60.00, '', 1, '2024-07-24 06:07:08', 0, NULL, 0, NULL, 1),
(26606, 20441, '3', 'University of Madras ', '', 'B SC', '2020', 71.00, '', 1, '2024-07-24 06:19:52', 0, NULL, 0, NULL, 1),
(26607, 20442, '3', 'Jawaharlal Nehru University, kakinada ', '', 'BTech', '2020', 67.20, '', 1, '2024-07-24 06:45:15', 0, NULL, 0, NULL, 1),
(26608, 20440, '3', 'Thiruvalluvar University ', '', 'Bachelor of Science ', '2023', 7.90, '', 1, '2024-07-24 07:19:10', 0, NULL, 0, NULL, 1),
(26609, 20443, '3', 'Madras University ', '', 'B.com. corporate secretaryship ', '2022', 65.00, '', 1, '2024-07-24 07:26:03', 1, '2024-07-24 07:26:58', 0, NULL, 0),
(26610, 20443, '3', 'Mar gregories College Art and Science ', '', 'B.com corporate secretaryship ', '2022', 65.00, '', 1, '2024-07-24 07:27:20', 0, NULL, 0, NULL, 1),
(26611, 20445, '3', 'SRM TRP ENGINEERING COLLEGE (Anna University)', '', 'BE', '2023', 76.30, '', 1, '2024-07-24 08:32:17', 1, '2024-07-24 08:34:12', 0, NULL, 1),
(26612, 20445, '2', 'State board ', '', '', '2019', 63.30, '', 1, '2024-07-24 08:32:59', 1, '2024-07-24 08:34:31', 0, NULL, 1),
(26613, 20445, '1', 'Central board ', '', '', '2017', 86.60, '', 1, '2024-07-24 08:33:24', 0, NULL, 0, NULL, 1),
(26614, 20447, '4', 'Sv university ', '', 'Shri gnanambica degree college ', '2019', 93.00, '', 1, '2024-07-24 12:19:09', 0, NULL, 0, NULL, 1),
(26615, 20447, '3', 'Sv university ', '', 'Sri Chaitanya jr college ', '2016', 82.00, '', 1, '2024-07-24 12:20:02', 0, NULL, 0, NULL, 1),
(26616, 20448, '3', 'Madras University ', '', 'B.com cs', '2023', 55.00, '', 1, '2024-07-24 12:48:36', 0, NULL, 0, NULL, 1),
(26617, 20449, '3', 'Dhanalakshmi Srinivasan engineering college Perambalur', '', 'BE CSE', '2024', 83.00, '', 1, '2024-07-24 01:07:28', 1, '2024-07-24 01:08:10', 0, NULL, 0),
(26618, 20449, '2', 'Tamilnadu state board of education', '', '', '2020', 65.00, '', 1, '2024-07-24 01:08:28', 0, NULL, 0, NULL, 1),
(26619, 20450, '4', 'Presidency college ', '', 'M.A.ECONOMICS', '2024', 75.00, '', 1, '2024-07-24 02:20:44', 0, NULL, 0, NULL, 1),
(26620, 20451, '3', 'Sri Krishna Devaraya University ', '', 'Sri vani degree college ', '2021', 8.00, '', 1, '2024-07-25 02:27:47', 0, NULL, 0, NULL, 1),
(26621, 20451, '1', 'Board of secondary education ', '', '', '2018', 7.00, '', 1, '2024-07-25 02:28:32', 0, NULL, 0, NULL, 1),
(26622, 20452, '3', 'Bharathiyar University ', '', 'B.Com Computer Applications ', '2022', 75.00, '', 1, '2024-07-25 05:12:56', 0, NULL, 0, NULL, 1),
(26623, 20453, '3', 'Madras University ', '', 'Bsc computer science ', '2019', 65.00, '', 1, '2024-07-25 05:21:20', 0, NULL, 0, NULL, 1),
(26624, 20453, '2', 'state board ', '', '', '2016', 51.00, '', 1, '2024-07-25 05:22:00', 0, NULL, 0, NULL, 1),
(26625, 20453, '1', 'State board ', '', '', '2014', 67.00, '', 1, '2024-07-25 05:22:28', 0, NULL, 0, NULL, 1),
(26626, 20454, '3', 'Thiruvalluvar university ', '', 'B. Com', '2020', 71.00, '', 1, '2024-07-25 05:33:53', 0, NULL, 0, NULL, 1),
(26627, 20455, '3', 'Anna university', '', 'BE-ECE', '2023', 86.00, '', 1, '2024-07-25 05:48:04', 0, NULL, 0, NULL, 1),
(26628, 20458, '3', 'Madras University ', '', 'B.sc(computer science)', '2024', 50.00, '', 1, '2024-07-25 06:42:23', 0, NULL, 0, NULL, 1),
(26629, 20459, '3', 'Madras', '', 'Bsc computer science', '2024', 60.00, '', 1, '2024-07-25 06:46:53', 0, NULL, 0, NULL, 1),
(26630, 20457, '3', 'University of madras', '', 'BCA ', '2024', 75.00, '', 1, '2024-07-25 06:47:29', 0, NULL, 0, NULL, 1),
(26631, 20460, '3', 'University of madras', '', 'BCA ', '2024', 75.00, '', 1, '2024-07-25 07:10:57', 0, NULL, 0, NULL, 1),
(26632, 20462, '3', 'Bharathidhasan ', '', 'B sc mathematics ', '2024', 70.00, '', 1, '2024-07-25 09:08:43', 0, NULL, 0, NULL, 1),
(26633, 20463, '4', 'Bharathidhasan ', '', 'M.sc mathematics ', '2024', 80.00, '', 1, '2024-07-25 10:17:31', 0, NULL, 0, NULL, 1),
(26634, 20464, '3', 'MBOS', '', 'Graduate', '2022', 48.00, '', 1, '2024-07-25 11:34:24', 0, NULL, 0, NULL, 1),
(26635, 20466, '4', 'University of Madras ', '', 'MBA ', '2024', 70.00, '', 1, '2024-07-26 04:33:15', 0, NULL, 0, NULL, 1),
(26636, 20467, '3', 'BANNARI AMMAN INSTITUTE OF TECHNOLOGY (ANNA UNIVERSITY)', '', 'B.E Agriculture Engineering ', '2024', 8.45, '', 1, '2024-07-26 04:49:12', 0, NULL, 0, NULL, 1),
(26637, 20465, '3', 'Barathidhasan University ', '', 'BA.ENGLISH LITERATURE ', '2023', 70.00, '', 1, '2024-07-26 04:56:15', 1, '2024-07-26 04:56:38', 0, NULL, 1),
(26638, 20468, '3', 'Thiruvalluvar university ', '', 'Bsc Computer science ', '2024', 75.00, '', 1, '2024-07-26 04:56:59', 0, NULL, 0, NULL, 1),
(26639, 20469, '3', 'Bharathidasn university ', '', 'B.com', '2016', 80.00, '', 1, '2024-07-26 05:01:30', 0, NULL, 0, NULL, 1),
(26640, 20470, '4', 'Anna university ', '', 'MBA ', '2024', 70.00, '', 1, '2024-07-26 05:37:17', 0, NULL, 0, NULL, 1),
(26641, 20471, '3', ' AGURCHAND MANMULL JAIN COLLEGE ', '', 'B com marketing management ', '2024', 70.00, '', 1, '2024-07-26 05:45:58', 0, NULL, 0, NULL, 1),
(26642, 20473, '2', 'State Board ', '', '', '2019', 78.00, '', 1, '2024-07-26 06:01:59', 0, NULL, 0, NULL, 1),
(26643, 20474, '3', 'Anna University ', '', 'B.e civil engineering ', '2018', 5.70, '', 1, '2024-07-26 06:04:15', 0, NULL, 0, NULL, 1),
(26644, 20474, '2', 'Matriculation ', '', '', '2014', 50.00, '', 1, '2024-07-26 06:05:08', 0, NULL, 0, NULL, 1),
(26645, 20474, '1', 'Matriculation ', '', '', '2012', 60.00, '', 1, '2024-07-26 06:05:40', 0, NULL, 0, NULL, 1),
(26646, 20472, '3', 'MADRAS UNIVERSITY ', '', 'Bca', '2024', 60.00, '', 1, '2024-07-26 06:07:10', 0, NULL, 0, NULL, 1),
(26647, 20476, '3', 'Adhi college of engineering and technology ', '', 'BE mechanical engineering ', '2023', 80.00, '', 1, '2024-07-26 06:10:13', 0, NULL, 0, NULL, 1),
(26648, 20479, '3', 'MADURAI KAMARAJ UNIVERSITY', '', 'B. Com Computer application', '2023', 66.00, '', 1, '2024-07-26 06:22:52', 0, NULL, 0, NULL, 1),
(26649, 20477, '3', 'Madras University ', '', 'B.COM', '2022', 65.00, '', 1, '2024-07-26 06:24:07', 0, NULL, 0, NULL, 1),
(26650, 20475, '4', 'Anna University ', '', 'MBA', '2023', 71.00, '', 1, '2024-07-26 06:41:22', 0, NULL, 0, NULL, 1),
(26651, 20480, '3', 'Sri eshwar college of engineering ', '', 'Bachelor of engineering ', '2021', 7.20, '', 1, '2024-07-26 07:32:09', 0, NULL, 0, NULL, 1),
(26652, 20481, '3', 'sivet college', '', 'bca', '2024', 63.00, '', 1, '2024-07-26 10:13:23', 0, NULL, 0, NULL, 1),
(26653, 20483, '3', 'Vels University ', '', 'B.com general ', '2024', 69.00, '', 1, '2024-07-26 10:13:47', 0, NULL, 0, NULL, 1),
(26654, 20482, '3', 'Vels University ', '', 'B.com(accounts & finances)', '2024', 71.00, '', 1, '2024-07-26 10:22:20', 0, NULL, 0, NULL, 1),
(26655, 20478, '3', 'University of Madras ', '', 'BCA', '2024', 65.00, '', 1, '2024-07-26 10:40:31', 0, NULL, 0, NULL, 1),
(26656, 20486, '3', 'ETHIRAJ COLLEGE FOR WOMEN ', '', 'B.A.HISTORY', '2021', 82.00, '', 1, '2024-07-26 03:52:49', 0, NULL, 0, NULL, 1),
(26657, 20486, '2', 'DHARAM HINDUJA MAT HR SEC SCHOOL ', '', '', '2018', 89.00, '', 1, '2024-07-26 03:53:13', 0, NULL, 0, NULL, 1),
(26658, 20486, '1', 'DHARAM HINDUJA MAT HR SEC SCHOOL ', '', '', '2016', 97.00, '', 1, '2024-07-26 03:53:50', 0, NULL, 0, NULL, 1),
(26659, 20486, '4', 'Madras university ', '', 'M.A.HISTORY', '2023', 77.00, '', 1, '2024-07-26 03:54:33', 0, NULL, 0, NULL, 1),
(26660, 20489, '3', 'Madras University ', '', 'B.com bank management ', '2024', 64.00, '', 1, '2024-07-27 02:55:10', 0, NULL, 0, NULL, 1),
(26661, 20492, '3', 'Madars university ', '', 'B A political science ', '2024', 70.00, '', 1, '2024-07-27 04:33:48', 0, NULL, 0, NULL, 1),
(26662, 20491, '3', 'Ethiraj College for women ', '', 'Bsc. Psychology ', '2024', 72.00, '', 1, '2024-07-27 04:34:05', 0, NULL, 0, NULL, 1),
(26663, 20485, '4', 'University of madras', '', 'B.com (cs) corporate secretaryship', '2024', 85.00, '', 1, '2024-07-27 04:44:53', 0, NULL, 0, NULL, 1),
(26664, 20493, '3', 'Anna University ', '', 'B.E', '2024', 84.00, '', 1, '2024-07-27 04:45:56', 0, NULL, 0, NULL, 1),
(26665, 20488, '4', 'University of madras ', '', 'MBA', '2020', 92.00, '', 1, '2024-07-27 04:51:30', 0, NULL, 0, NULL, 1),
(26666, 20495, '4', 'Alpha college of engineering ', '', 'MBA ', '2024', 7.60, '', 1, '2024-07-27 05:13:09', 0, NULL, 0, NULL, 1),
(26667, 20495, '3', 'Alpha arts and science college ', '', 'B.com', '2022', 80.00, '', 1, '2024-07-27 05:13:43', 0, NULL, 0, NULL, 1),
(26668, 20496, '3', 'Board', '', 'Ba economics ', '2024', 66.22, '', 1, '2024-07-27 05:28:29', 0, NULL, 0, NULL, 1),
(26669, 20496, '2', 'Board', '', '', '2021', 65.33, '', 1, '2024-07-27 05:29:55', 0, NULL, 0, NULL, 1),
(26670, 20496, '1', 'Board', '', '', '2019', 50.80, '', 1, '2024-07-27 05:30:21', 0, NULL, 0, NULL, 1),
(26671, 20497, '4', 'Bharathidasan University ', '', 'Msc', '2022', 85.00, '', 1, '2024-07-27 05:36:05', 0, NULL, 0, NULL, 1),
(26672, 20498, '3', 'Madras university ', '', 'Bcom (general)', '2024', 84.00, '', 1, '2024-07-27 05:37:46', 0, NULL, 0, NULL, 1),
(26673, 20501, '3', 'St. Joseph college of arts and science Cuddalore ', '', 'BBA (cA)', '2023', 80.00, '', 1, '2024-07-27 07:06:05', 0, NULL, 0, NULL, 1),
(26674, 20502, '5', 'anna unveristy', '', 'meachanical engineering', '2019', 80.00, '', 1, '2024-07-27 07:11:00', 0, NULL, 0, NULL, 1),
(26675, 20499, '3', 'Madras University (Sri muthukumaran arts and science college)', '', 'BA English ', '2024', 70.00, '', 1, '2024-07-27 07:26:33', 0, NULL, 0, NULL, 1),
(26676, 20503, '3', 'Anna university ', '', 'B.e computerscience and engineering ', '2024', 70.00, '', 1, '2024-07-27 08:01:50', 0, NULL, 0, NULL, 1),
(26677, 20504, '3', 'Thiruvalluvare university', '', 'BSc .maths', '2023', 85.00, '', 1, '2024-07-27 08:22:03', 0, NULL, 0, NULL, 1),
(26678, 20507, '3', 'Vels University ', '', 'B.com', '2024', 62.00, '', 1, '2024-07-27 08:38:41', 0, NULL, 0, NULL, 1),
(26679, 20505, '4', 'Anna University ', '', 'MBA', '2022', 85.00, '', 1, '2024-07-27 08:44:21', 1, '2024-07-27 08:44:48', 0, NULL, 1),
(26680, 20508, '3', 'Madras University ', '', 'B A economics ', '2024', 68.00, '', 1, '2024-07-27 09:15:33', 0, NULL, 0, NULL, 1),
(26681, 20494, '3', 'Jntk', '', 'Betech ', '2021', 70.00, '', 1, '2024-07-27 11:13:13', 0, NULL, 0, NULL, 1),
(26682, 20510, '4', 'Sardharkrushinagar Dantiwada Agricultural university ', '', 'Agriculture extension ', '2024', 84.00, '', 1, '2024-07-27 01:59:15', 0, NULL, 0, NULL, 1),
(26683, 20510, '3', 'Dr.YSR Horticulture university ', '', 'BSc Horticulture ', '2022', 85.00, '', 1, '2024-07-27 02:00:09', 0, NULL, 0, NULL, 1),
(26684, 20511, '4', 'Sardarkrushinagar Dantiwada agricultural University ', '', 'MBA - ABM', '2024', 8.10, '', 1, '2024-07-27 02:34:20', 0, NULL, 0, NULL, 1),
(26685, 20513, '3', 'Board', '', 'BBA', '2024', 70.00, '', 1, '2024-07-29 04:16:42', 0, NULL, 0, NULL, 1),
(26686, 20514, '3', 'Madras University ', '', 'BA', '2024', 61.00, '', 1, '2024-07-29 04:20:20', 0, NULL, 0, NULL, 1),
(26687, 20515, '3', 'patrician college of arts and science', '', 'b.com', '2024', 72.00, '', 1, '2024-07-29 05:46:25', 0, NULL, 0, NULL, 1),
(26688, 20517, '3', 'Karnataka University dharvad ', '', 'B.com', '2023', 75.00, '', 1, '2024-07-29 06:27:39', 0, NULL, 0, NULL, 1),
(26689, 20518, '2', 'State board ', '', '', '2015', 91.20, '', 1, '2024-07-29 06:51:59', 1, '2024-07-29 06:56:15', 0, NULL, 0),
(26690, 20518, '2', 'State board ', '', '', '2015', 91.20, '', 1, '2024-07-29 06:56:35', 1, '2024-07-29 06:56:47', 0, NULL, 0),
(26691, 20518, '1', 'State board ', '', '', '2015', 91.20, '', 1, '2024-07-29 06:57:07', 0, NULL, 0, NULL, 1),
(26692, 20518, '2', 'State board ', '', '', '2017', 78.25, '', 1, '2024-07-29 06:57:32', 0, NULL, 0, NULL, 1),
(26693, 20518, '3', 'Anna University ', '', 'B.E - Mechanical Engineering ', '2021', 71.25, '', 1, '2024-07-29 06:58:09', 0, NULL, 0, NULL, 1),
(26694, 20518, '4', 'MGR university ', '', 'MBA - HRM', '2024', 82.25, '', 1, '2024-07-29 06:58:54', 0, NULL, 0, NULL, 1),
(26695, 20519, '3', 'Alagappa university', '', '', '2018', 67.00, '', 1, '2024-07-29 07:04:41', 0, NULL, 0, NULL, 1),
(26696, 20520, '4', 'Dr. M. G. R university', '', 'MBA HRM', '2024', 80.00, '', 1, '2024-07-29 07:05:11', 0, NULL, 0, NULL, 1),
(26697, 20521, '3', 'University of Madras ', '', 'B.com', '2023', 75.00, '', 1, '2024-07-29 08:32:17', 0, NULL, 0, NULL, 1),
(26698, 20521, '2', 'CSI Bain ', '', '', '2019', 60.00, '', 1, '2024-07-29 08:32:40', 0, NULL, 0, NULL, 1),
(26699, 20521, '1', 'CSI Bain ', '', '', '2017', 65.00, '', 1, '2024-07-29 08:32:54', 0, NULL, 0, NULL, 1),
(26700, 20522, '3', 'Thiruvalluvar ', '', 'BCA', '2022', 89.00, '', 1, '2024-07-29 08:33:19', 0, NULL, 0, NULL, 1),
(26701, 20523, '4', 'Anna University madurai ', '', 'MBA', '2024', 72.20, '', 1, '2024-07-29 10:04:52', 0, NULL, 0, NULL, 1),
(26702, 20523, '3', 'Kamaraj university ', '', 'BBA', '2022', 75.50, '', 1, '2024-07-29 10:05:43', 0, NULL, 0, NULL, 1),
(26703, 20523, '2', 'Nirmala girls higher secondary school ', '', '', '2019', 73.20, '', 1, '2024-07-29 10:06:37', 0, NULL, 0, NULL, 1),
(26704, 20523, '1', 'Lions matriculation higher secondary school ', '', '', '2017', 84.60, '', 1, '2024-07-29 10:07:01', 0, NULL, 0, NULL, 1),
(26705, 20527, '4', 'University ', '', 'Ba business economics ', '2022', 75.00, '', 1, '2024-07-29 04:02:17', 0, NULL, 0, NULL, 1),
(26706, 20530, '3', 'Madras university', '', 'Mba', '2024', 76.00, '', 1, '2024-07-30 04:34:37', 0, NULL, 0, NULL, 1),
(26707, 20531, '3', 'Dhanalakshmi srinivasan enginnering college (Anna University ', '', 'BE(CSE)', '2019', 7.00, '', 1, '2024-07-30 04:42:56', 0, NULL, 0, NULL, 1),
(26708, 20532, '3', 'Anna University ', '', 'B.tech (information technology)', '2024', 7.08, '', 1, '2024-07-30 04:43:01', 0, NULL, 0, NULL, 1),
(26709, 20533, '3', 'Anna University ', '', 'Bachelor of electrical and electronics engineering', '2020', 69.00, '', 1, '2024-07-30 04:50:05', 0, NULL, 0, NULL, 1),
(26710, 20533, '2', 'Stateboard', '', '', '2016', 81.00, '', 1, '2024-07-30 04:50:36', 0, NULL, 0, NULL, 1),
(26711, 20533, '1', 'Stateboard ', '', '', '2013', 80.00, '', 1, '2024-07-30 04:50:52', 0, NULL, 0, NULL, 1),
(26712, 20529, '3', 'St perters university avadi', '', 'B.sc visual communication ', '2024', 62.02, '', 1, '2024-07-30 04:55:12', 0, NULL, 0, NULL, 1),
(26713, 20534, '3', 'Srm university', '', 'B. Com', '2024', 8.22, '', 1, '2024-07-30 05:31:09', 0, NULL, 0, NULL, 1),
(26714, 20526, '3', 'Autonomous ', '', 'B.E MECHANICAL ENGINEER ', '2024', 75.00, '', 1, '2024-07-30 05:40:20', 0, NULL, 0, NULL, 1),
(26715, 20526, '5', 'Dote', '', 'Electronic robotics ', '2021', 72.00, '', 1, '2024-07-30 05:41:03', 0, NULL, 0, NULL, 1),
(26716, 20535, '3', 'srm university', '', 'b tech cse ', '2021', 60.00, '', 1, '2024-07-30 05:50:07', 0, NULL, 0, NULL, 1),
(26717, 20525, '3', 'sayhyabama institue of science and technology', '', 'b.com general', '2024', 74.00, '', 1, '2024-07-30 05:53:32', 0, NULL, 0, NULL, 1),
(26718, 20537, '3', 'Anna Adarsh college for women ', '', 'BCA', '2022', 74.00, '', 1, '2024-07-30 06:08:21', 0, NULL, 0, NULL, 1),
(26719, 20536, '3', 'Madras university ', '', 'B. Com(ca)', '2022', 70.00, '', 1, '2024-07-30 06:08:56', 0, NULL, 0, NULL, 1),
(26720, 20538, '3', 'Bharath university ', '', 'BE MECHANICAL ', '2017', 5.00, '', 1, '2024-07-30 06:12:32', 0, NULL, 0, NULL, 1),
(26721, 20539, '5', 'Central board ', '', 'EEE', '2021', 72.00, '', 1, '2024-07-30 06:14:51', 0, NULL, 0, NULL, 1),
(26722, 20541, '4', 'Bharathidasan ', '', 'Mca', '2024', 78.00, '', 1, '2024-07-30 06:25:28', 0, NULL, 0, NULL, 1),
(26723, 20541, '3', 'Alagappa University ', '', 'B. sc Mathematics ', '2022', 75.00, '', 1, '2024-07-30 06:26:13', 0, NULL, 0, NULL, 1),
(26724, 20542, '4', 'bharathidasan University', '', '', '2024', 81.00, '', 1, '2024-07-30 06:26:36', 0, NULL, 0, NULL, 1),
(26725, 20541, '2', 'St.Annes matriculation hr sec school ', '', '', '2019', 53.00, '', 1, '2024-07-30 06:27:02', 0, NULL, 0, NULL, 1),
(26726, 20544, '4', 'Bharathidasan University', '', 'MSC', '2024', 78.00, '', 1, '2024-07-30 06:27:52', 0, NULL, 0, NULL, 1),
(26727, 20542, '1', 'State Board ', '', '', '2017', 83.00, '', 1, '2024-07-30 06:27:54', 0, NULL, 0, NULL, 1),
(26728, 20542, '2', 'State Board ', '', '', '2019', 56.00, '', 1, '2024-07-30 06:28:21', 0, NULL, 0, NULL, 1),
(26729, 20544, '3', 'Bharathidasan University', '', 'BSC', '2022', 72.00, '', 1, '2024-07-30 06:28:29', 0, NULL, 0, NULL, 1),
(26730, 20542, '3', 'bharathidasan University ', '', 'BCA ', '2022', 83.40, '', 1, '2024-07-30 06:29:32', 0, NULL, 0, NULL, 1),
(26731, 20544, '2', 'State board', '', '', '2019', 71.80, '', 1, '2024-07-30 06:29:40', 0, NULL, 0, NULL, 1),
(26732, 20541, '1', 'St.Annes Matriculation hr sec school ', '', '', '2017', 69.00, '', 1, '2024-07-30 06:29:44', 0, NULL, 0, NULL, 1),
(26733, 20544, '1', 'State Board ', '', '', '2017', 86.00, '', 1, '2024-07-30 06:30:26', 0, NULL, 0, NULL, 1),
(26734, 20540, '4', 'Dr MGR University ', '', 'MBA', '2023', 70.00, '', 1, '2024-07-30 06:31:45', 0, NULL, 0, NULL, 1),
(26735, 20543, '3', 'Prist University ', '', 'B.sc computer science ', '2022', 78.00, '', 1, '2024-07-30 06:32:16', 0, NULL, 0, NULL, 1),
(26736, 20528, '3', 'Sri Krishna devaraya university ', '', 'Bsc', '2022', 80.00, '', 1, '2024-07-30 07:02:34', 0, NULL, 0, NULL, 1),
(26737, 20545, '3', 'Annamalai university ', '', 'BCA ', '2024', 70.00, '', 1, '2024-07-30 07:26:32', 0, NULL, 0, NULL, 1),
(26738, 20546, '3', 'Annamalai University ', '', 'B.E(CSE)', '2023', 7.54, '', 1, '2024-07-30 07:30:45', 0, NULL, 0, NULL, 1),
(26739, 20547, '2', 'State board', '', '', '2017', 56.00, '', 1, '2024-07-30 07:42:43', 0, NULL, 0, NULL, 1),
(26740, 20548, '3', 'anna university', '', 'bachelor of Engineering ', '2024', 8.16, '', 1, '2024-07-30 08:06:11', 0, NULL, 0, NULL, 1),
(26741, 20549, '4', 'Madras university', '', 'MBA', '2019', 6.90, '', 1, '2024-07-30 09:22:29', 0, NULL, 0, NULL, 1),
(26742, 20550, '3', 'presidency college ', '', 'bcom corporate secretaryship ', '2024', 67.00, '', 1, '2024-07-30 12:54:47', 0, NULL, 0, NULL, 1),
(26743, 20552, '3', 'Madras University ', '', 'bsc.physics ', '2024', 60.00, '', 1, '2024-07-30 03:21:45', 0, NULL, 0, NULL, 1),
(26744, 20553, '3', 'Anna University ', '', 'Civil Engineering ', '2023', 8.20, '', 1, '2024-07-31 04:18:48', 0, NULL, 0, NULL, 1),
(26745, 20553, '2', 'ISC', '', '', '2017', 80.00, '', 1, '2024-07-31 04:19:24', 0, NULL, 0, NULL, 1),
(26746, 20554, '3', 'SDNB vaishnav College', '', 'Bscchemistr', '2023', 82.00, '', 104, '2024-07-31 10:35:35', 0, NULL, 0, NULL, 1),
(26747, 13359, '3', 'Madras University ', '', 'Bcom', '2019', 81.00, '', 1, '2024-07-31 05:29:26', 0, NULL, 0, NULL, 1),
(26748, 20555, '4', 'bharathidasan', '', 'mba', '2023', 74.00, '', 1, '2024-07-31 05:40:35', 1, '2024-07-31 05:40:44', 0, NULL, 1),
(26749, 20557, '3', 'Sv university tirupathi', '', 'B com', '2022', 68.00, '', 1, '2024-07-31 05:54:34', 0, NULL, 0, NULL, 1),
(26750, 20557, '1', 'Board of secondary education,ap', '', '', '2013', 87.00, '', 1, '2024-07-31 05:55:25', 0, NULL, 0, NULL, 1),
(26751, 20559, '3', 'Bharathiar University ', '', 'B.com AF', '2024', 75.00, '', 1, '2024-07-31 06:11:40', 0, NULL, 0, NULL, 1),
(26752, 20551, '3', 'Bharathidasan University ', '', 'BCA', '2015', 74.00, '', 1, '2024-07-31 06:15:08', 0, NULL, 0, NULL, 1),
(26753, 20558, '3', 'Presidency college ', '', 'B.com(cS)', '2024', 75.00, '', 1, '2024-07-31 06:16:00', 0, NULL, 0, NULL, 1),
(26754, 20560, '3', 'Bharathiar University ', '', '', '2024', 70.00, '', 1, '2024-07-31 06:17:26', 0, NULL, 0, NULL, 1),
(26755, 20562, '3', 'Anna University ', '', 'B.E', '2023', 7.82, '', 1, '2024-07-31 08:31:55', 0, NULL, 0, NULL, 1),
(26756, 20565, '3', 'Thiruvalluvar university ', '', 'B.Sc C.S', '2020', 68.00, '', 1, '2024-07-31 09:12:18', 0, NULL, 0, NULL, 1),
(26757, 20564, '3', 'Anna university ', '', 'B.E', '2021', 7.71, '', 1, '2024-07-31 09:14:22', 0, NULL, 0, NULL, 1),
(26758, 20566, '4', 'Anna university ', '', 'Mba', '2024', 68.00, '', 1, '2024-07-31 11:40:26', 0, NULL, 0, NULL, 1),
(26759, 20568, '3', 'Madurai Kamaraj university ', '', 'Bsc(CS)', '2024', 6.10, '', 1, '2024-08-01 04:44:33', 0, NULL, 0, NULL, 1),
(26760, 20569, '3', 'Madras University ', '', 'BCA', '2017', 84.00, '', 1, '2024-08-01 04:59:27', 0, NULL, 0, NULL, 1),
(26761, 20570, '4', 'Periyar University ', '', 'MCA', '2022', 8.00, '', 1, '2024-08-01 05:11:15', 0, NULL, 0, NULL, 1),
(26762, 20571, '3', 'Sri venkateswara university', '', 'Bsc computer science ', '2022', 76.00, '', 1, '2024-08-01 05:47:28', 0, NULL, 0, NULL, 1),
(26763, 20573, '3', 'University of madras', '', 'B.com', '2024', 63.00, '', 1, '2024-08-01 06:01:10', 0, NULL, 0, NULL, 1),
(26764, 20575, '3', 'Anna University ', '', 'BE', '2021', 7.49, '', 1, '2024-08-01 06:04:12', 0, NULL, 0, NULL, 1),
(26765, 20572, '3', 'University of Madras ', '', 'Bcom Bank Management', '2024', 60.00, '', 1, '2024-08-01 06:05:20', 0, NULL, 0, NULL, 1),
(26766, 20576, '1', 'Hyder garden matriculation school ', '', '', '2023', 83.00, '', 1, '2024-08-01 06:09:53', 0, NULL, 0, NULL, 1),
(26767, 20576, '2', 'Anita Methodist school ', '', '', '2019', 63.00, '', 1, '2024-08-01 06:10:17', 0, NULL, 0, NULL, 1),
(26768, 20576, '3', 'Velammal engineering college ', '', 'BE CIVIL ENGINEERING ', '2023', 83.00, '', 1, '2024-08-01 06:10:58', 0, NULL, 0, NULL, 1),
(26769, 20579, '3', 'Madras University ', '', 'Bsc computer science ', '2019', 65.00, '', 1, '2024-08-01 06:19:55', 0, NULL, 0, NULL, 1),
(26770, 20578, '2', 'State board', '', '', '2012', 69.00, '', 1, '2024-08-01 06:21:37', 0, NULL, 0, NULL, 1),
(26771, 20578, '3', 'Alagappa university ', '', 'B.sc', '2017', 79.00, '', 1, '2024-08-01 06:22:21', 0, NULL, 0, NULL, 1),
(26772, 20580, '3', 'Sri Venkateswara University ', '', 'bsc', '2021', 82.00, '', 1, '2024-08-01 06:37:19', 0, NULL, 0, NULL, 1),
(26773, 20574, '3', 'Yogi vemana university ', '', 'B com computers ', '2014', 70.00, '', 1, '2024-08-01 06:53:49', 0, NULL, 0, NULL, 1),
(26774, 20582, '3', 'Anna University ', '', 'B.E', '2024', 7.59, '', 1, '2024-08-01 06:56:07', 0, NULL, 0, NULL, 1),
(26775, 20583, '3', 'Al - Ameen Engineering College, Erode', '', 'B.Tech information Technology ', '2024', 7.80, '', 1, '2024-08-01 06:58:52', 0, NULL, 0, NULL, 1),
(26776, 20577, '3', 'Bharathidasan UniversitY', '', 'Bcom', '2023', 72.00, '', 104, '2024-08-01 12:56:48', 0, NULL, 0, NULL, 1),
(26777, 20506, '3', 'JNTU A', '', 'B tech', '2022', 68.00, '', 1, '2024-08-01 08:47:59', 0, NULL, 0, NULL, 1),
(26778, 20584, '3', 'Madras University ', '', 'Bsc', '2024', 75.00, '', 1, '2024-08-01 08:49:14', 0, NULL, 0, NULL, 1),
(26779, 20585, '5', 'Goverment PolYtechic College keehapaluvur Arialur dist', '', 'Diploma in mechanical Engineering', '2018', 80.00, '', 104, '2024-08-01 04:07:52', 0, NULL, 0, NULL, 1),
(26780, 20586, '3', 'kings engineering college', '', 'be', '2012', 80.00, '', 1, '2024-08-01 11:13:10', 0, NULL, 0, NULL, 1),
(26781, 20589, '3', 'times and trends', '', 'bsc', '2022', 89.00, '', 1, '2024-08-02 03:48:25', 0, NULL, 0, NULL, 1),
(26782, 20590, '4', 'SASTRA University ', '', 'Msc biotechnology ', '2021', 76.00, '', 1, '2024-08-02 04:49:31', 0, NULL, 0, NULL, 1),
(26783, 20590, '3', 'Bharadhidasan university ', '', 'Bcs Biotechnology ', '2019', 86.00, '', 1, '2024-08-02 04:50:03', 0, NULL, 0, NULL, 1),
(26784, 20592, '3', 'university', '', 'b.e', '2024', 60.00, '', 1, '2024-08-02 05:19:58', 0, NULL, 0, NULL, 1),
(26785, 20592, '5', 'board', '', 'diploma ', '2020', 78.00, '', 1, '2024-08-02 05:21:33', 0, NULL, 0, NULL, 1),
(26786, 20593, '3', 'Medras university ', '', 'B sc.chemistry', '2021', 70.00, '', 1, '2024-08-02 05:22:30', 0, NULL, 0, NULL, 1),
(26787, 20587, '3', 'DG Vaishnav College chennai', '', 'bBA', '2019', 60.00, '', 104, '2024-08-02 10:55:29', 0, NULL, 0, NULL, 1),
(26788, 20587, '4', 'MAR gregorios College', '', 'Mcom', '2021', 82.00, '', 104, '2024-08-02 10:56:22', 0, NULL, 0, NULL, 1),
(26789, 20594, '3', 'University ', '', 'B.tech IT', '2023', 64.00, '', 1, '2024-08-02 05:38:57', 0, NULL, 0, NULL, 1),
(26790, 20595, '3', 'anna university', '', 'b tech', '2024', 84.00, '', 1, '2024-08-02 05:41:16', 0, NULL, 0, NULL, 1),
(26791, 20595, '5', 'anna university', '', 'mechanical', '2020', 78.00, '', 1, '2024-08-02 05:42:36', 0, NULL, 0, NULL, 1),
(26792, 20595, '1', 'state board', '', '', '2017', 76.00, '', 1, '2024-08-02 05:44:21', 0, NULL, 0, NULL, 1),
(26793, 20596, '3', 'Anna University ', '', 'be mechanical', '2018', 71.00, '', 1, '2024-08-02 06:09:27', 0, NULL, 0, NULL, 1),
(26794, 20556, '3', 'Madras University ', '', 'B.com', '2020', 85.00, '', 1, '2024-08-02 06:36:48', 1, '2024-08-02 06:37:24', 0, NULL, 1),
(26795, 20599, '3', 'Sir Ramachandra University ', '', 'B.sc', '2024', 75.00, '', 1, '2024-08-02 06:38:59', 0, NULL, 0, NULL, 1),
(26796, 20598, '3', 'kSR college of arts and science', '', 'bsc computer science', '2023', 70.00, '', 104, '2024-08-02 12:12:30', 0, NULL, 0, NULL, 1),
(26797, 20597, '2', 'STATE BOARD OF SCHOOL EXAMINATIONS, TAMILNADU ', '', '', '2020', 75.00, '', 1, '2024-08-02 06:45:59', 0, NULL, 0, NULL, 1),
(26798, 20601, '3', 'madras university', '', 'B. A economic', '2022', 58.00, '', 1, '2024-08-02 06:50:13', 0, NULL, 0, NULL, 1),
(26799, 20600, '5', 'murcgesan institute of technology', '', 'Computer technology', '2019', 60.80, '', 1, '2024-08-02 06:55:12', 0, NULL, 0, NULL, 1),
(26800, 20602, '1', 'state', '', '', '2016', 81.00, '', 1, '2024-08-02 07:21:38', 0, NULL, 0, NULL, 1),
(26801, 20602, '2', 'state', '', '', '2018', 56.00, '', 1, '2024-08-02 07:21:55', 0, NULL, 0, NULL, 1),
(26802, 20602, '3', 'anna university', '', 'btech', '2022', 82.00, '', 1, '2024-08-02 07:22:38', 0, NULL, 0, NULL, 1),
(26803, 20603, '4', 'State ', '', 'BBM ', '2015', 61.00, '', 1, '2024-08-02 08:09:10', 0, NULL, 0, NULL, 1),
(26804, 12995, '3', 'Madras university', '', 'B. A. English literature', '2023', 70.00, '', 1, '2024-08-02 09:32:39', 0, NULL, 0, NULL, 1),
(26805, 20604, '3', 'Gulbarga University ', '', 'B.com ', '2022', 72.00, '', 1, '2024-08-02 09:48:21', 0, NULL, 0, NULL, 1),
(26806, 20605, '3', 'Dhanraj Baid Jain College', '', 'Bsc computer science ', '2024', 77.70, '', 1, '2024-08-02 11:55:45', 0, NULL, 0, NULL, 1),
(26807, 20608, '5', 'Tamilnadu government polytechnic ', '', 'DEEE', '2023', 75.29, '', 1, '2024-08-03 04:58:29', 0, NULL, 0, NULL, 1),
(26808, 20609, '3', 'Madras University', '', 'B. Com commerce', '2024', 70.00, '', 1, '2024-08-03 06:01:52', 0, NULL, 0, NULL, 1),
(26809, 20610, '3', 'Madras University ', '', 'B.sc', '2024', 50.00, '', 1, '2024-08-03 06:09:24', 0, NULL, 0, NULL, 1),
(26810, 20611, '3', 'Anna university', '', 'B. Tech', '2024', 7.69, '', 1, '2024-08-03 06:41:43', 0, NULL, 0, NULL, 1),
(26811, 20612, '3', 'thanthai periyaar arts and sciences collage', '', 'bsc visual communication', '2021', 75.00, '', 1, '2024-08-03 06:54:32', 0, NULL, 0, NULL, 1),
(26812, 20613, '3', 'Stella Maris ', '', 'BA(history and tourism)', '2021', 50.00, '', 1, '2024-08-03 07:00:30', 0, NULL, 0, NULL, 1),
(26813, 20614, '3', 'srm university', '', 'btech it', '2023', 90.00, '', 1, '2024-08-03 09:18:48', 0, NULL, 0, NULL, 1),
(26814, 20618, '4', 'Bharathidasan university', '', 'M. Sc., ', '2024', 69.50, '', 1, '2024-08-04 08:31:27', 1, '2024-08-04 08:33:12', 0, NULL, 0),
(26815, 20618, '3', 'Bharathidasan university', '', 'B. Sc., mathematics', '2022', 82.92, '', 1, '2024-08-04 08:33:04', 1, '2024-08-04 08:33:16', 0, NULL, 0),
(26816, 20618, '4', 'Bharathidasan university', '', 'M. Sc., mathematics', '2024', 69.50, '', 1, '2024-08-04 08:33:41', 1, '2024-08-04 08:36:31', 0, NULL, 0),
(26817, 20618, '3', 'Bharathidasan university', '', 'B. Sc., mathematics', '2022', 82.92, '', 1, '2024-08-04 08:34:15', 1, '2024-08-04 08:36:23', 0, NULL, 0),
(26818, 20618, '2', 'State board', '', '', '2019', 65.16, '', 1, '2024-08-04 08:34:59', 1, '2024-08-04 08:36:50', 0, NULL, 0),
(26819, 20618, '1', 'State board', '', '', '2017', 88.20, '', 1, '2024-08-04 08:35:52', 0, NULL, 0, NULL, 1),
(26820, 20618, '2', 'State board', '', '', '2019', 65.16, '', 1, '2024-08-04 08:37:25', 0, NULL, 0, NULL, 1),
(26821, 20618, '3', 'Bharathidasan university', '', 'B. Sc., mathematics', '2022', 82.92, '', 1, '2024-08-04 08:38:04', 0, NULL, 0, NULL, 1),
(26822, 20618, '4', 'Bharathidasan university', '', 'M. Sc., mathematics', '2024', 69.50, '', 1, '2024-08-04 08:38:42', 0, NULL, 0, NULL, 1),
(26823, 20620, '3', 'Manonmaniyam University ', '', 'BA', '2024', 71.16, '', 1, '2024-08-05 04:25:36', 0, NULL, 0, NULL, 1),
(26824, 20616, '4', 'St. Joseph\'s College, Trichy ', '', 'M.com computer Applications ', '2024', 7.90, '', 1, '2024-08-05 04:56:43', 0, NULL, 0, NULL, 1),
(26825, 20616, '3', 'Sastra university ', '', 'B.com computer Applications ', '2022', 7.17, '', 1, '2024-08-05 04:57:12', 0, NULL, 0, NULL, 1),
(26826, 20621, '3', 'velammal institude of technologY', '', 'bE MECHANICAL ENGINEERING', '2019', 7.50, '', 104, '2024-08-05 10:35:42', 0, NULL, 0, NULL, 1),
(26827, 20623, '3', 'Periyar University ', '', 'B.Sc - Computer Science ', '2022', 70.00, '', 1, '2024-08-05 05:07:16', 0, NULL, 0, NULL, 1),
(26828, 20624, '3', 'Anna university ', '', 'B.E computer science engineering ', '2024', 76.00, '', 1, '2024-08-05 05:34:48', 0, NULL, 0, NULL, 1),
(26829, 20619, '3', 'alagappa university ', '', 'bba', '2024', 61.00, '', 1, '2024-08-05 05:39:38', 0, NULL, 0, NULL, 1),
(26830, 20627, '3', 'Bharathidasan university ', '', 'BCA', '2023', 7.34, '', 1, '2024-08-05 06:14:34', 0, NULL, 0, NULL, 1),
(26831, 20626, '3', 'sri sai ram engineering college ', '', 'BTECH   IT', '2023', 89.40, '', 104, '2024-08-05 12:02:31', 0, NULL, 0, NULL, 1),
(26832, 20628, '1', 'Singaram pillai hrs school ', '', '', '2008', 60.00, '', 1, '2024-08-05 07:31:46', 0, NULL, 0, NULL, 1),
(26833, 20628, '3', 'Loyala college ', '', 'B.com', '2013', 70.00, '', 1, '2024-08-05 07:32:26', 0, NULL, 0, NULL, 1),
(26834, 20628, '2', 'Singaram pillai school ', '', '', '2010', 68.00, '', 1, '2024-08-05 07:32:56', 0, NULL, 0, NULL, 1),
(26835, 20630, '4', 'Anna University ', '', 'Mba', '2024', 81.00, '', 1, '2024-08-05 07:40:38', 1, '2024-08-05 07:42:35', 0, NULL, 1),
(26836, 20630, '3', 'Manonmaniyam university ', '', 'Bachelor of arts ', '2022', 8.20, '', 1, '2024-08-05 07:41:49', 0, NULL, 0, NULL, 1),
(26837, 20629, '4', 'Anna University', '', 'MBA', '2024', 79.00, '', 1, '2024-08-05 07:43:09', 0, NULL, 0, NULL, 1),
(26838, 20591, '3', 'government arts and science college nagalapuram', '', 'bA English', '2022', 6.81, '', 104, '2024-08-05 02:33:30', 104, '2024-08-05 02:34:45', 0, NULL, 1),
(26839, 20591, '4', 'government arts and science kovilpatti', '', 'mA English', '2024', 7.20, '', 104, '2024-08-05 02:36:17', 0, NULL, 0, NULL, 1),
(26840, 20632, '3', 'Kamaraj University ', '', 'B.com information technology ', '2024', 60.00, '', 1, '2024-08-05 11:52:19', 0, NULL, 0, NULL, 1),
(26841, 20634, '4', 'Sri Venkateswara University ', '', 'Food Technology ', '2020', 71.00, '', 1, '2024-08-05 02:00:05', 0, NULL, 0, NULL, 1),
(26842, 20634, '3', 'Sri Venkateswara University ', '', 'Bio technology ', '2018', 83.00, '', 1, '2024-08-05 02:00:36', 0, NULL, 0, NULL, 1),
(26843, 20634, '2', 'Board of intermediate Education, A.P', '', '', '2015', 91.00, '', 1, '2024-08-05 02:01:46', 0, NULL, 0, NULL, 1),
(26844, 20634, '1', 'Board of secondary education ', '', '', '2013', 93.00, '', 1, '2024-08-05 02:02:23', 0, NULL, 0, NULL, 1),
(26845, 20635, '3', 'The New College ', '', 'BA', '2022', 53.00, '', 1, '2024-08-05 02:19:26', 0, NULL, 0, NULL, 1),
(26846, 20635, '1', 'St.Paul hr sec school', '', '', '2020', 54.00, '', 1, '2024-08-05 02:20:23', 0, NULL, 0, NULL, 1),
(26847, 20636, '3', 'JNTUA ', '', 'Btech', '2022', 54.60, '', 1, '2024-08-06 04:18:53', 0, NULL, 0, NULL, 1),
(26848, 20637, '3', 'Madras University ', '', 'B.com', '2022', 71.00, '', 1, '2024-08-06 04:52:26', 0, NULL, 0, NULL, 1),
(26849, 20638, '4', 'Anna University ', '', 'BE.computer science and engineering ', '2024', 74.00, '', 1, '2024-08-06 05:08:07', 0, NULL, 0, NULL, 1),
(26850, 20639, '3', 'Madras university ', '', 'BSc biochemistry ', '2024', 80.00, '', 1, '2024-08-06 05:23:16', 0, NULL, 0, NULL, 1),
(26851, 20640, '4', 'Annamalai University ', '', 'M.sc Mathematics ', '2023', 71.00, '', 1, '2024-08-06 05:27:13', 0, NULL, 0, NULL, 1),
(26852, 20641, '3', 'Thiruvauvar university', '', 'B. Sc physics', '2021', 66.00, '', 1, '2024-08-06 05:31:57', 0, NULL, 0, NULL, 1),
(26853, 20642, '4', 'anna university', '', 'master of business administration', '2023', 8.10, '', 1, '2024-08-06 06:03:42', 0, NULL, 0, NULL, 1),
(26854, 20643, '3', 'Madras University ', '', '', '2024', 70.00, '', 1, '2024-08-06 06:17:34', 0, NULL, 0, NULL, 1),
(26855, 20645, '5', 'Anna University ', '', 'Diploma mechanical engineering ', '2018', 68.00, '', 1, '2024-08-06 06:46:34', 0, NULL, 0, NULL, 1),
(26856, 20647, '3', 'Madras University ', '', 'BBA', '2024', 70.00, '', 1, '2024-08-06 07:07:51', 0, NULL, 0, NULL, 1),
(26857, 20648, '3', 'Madras University ', '', 'BBA ', '2024', 80.00, '', 1, '2024-08-06 07:08:18', 0, NULL, 0, NULL, 1),
(26858, 20646, '3', 'Madurai Kamaraj university ', '', 'B.sc ', '2016', 60.00, '', 1, '2024-08-06 07:10:48', 0, NULL, 0, NULL, 1),
(26859, 20650, '2', 'Karnataka state government ', '', '', '2018', 57.00, '', 1, '2024-08-06 07:38:27', 0, NULL, 0, NULL, 1),
(26860, 20644, '3', 'Kamaraj university ', '', 'B.A ', '2020', 56.00, '', 1, '2024-08-06 07:45:20', 0, NULL, 0, NULL, 1),
(26861, 20651, '1', 'State board ', '', '', '2016', 76.00, '', 1, '2024-08-06 08:09:24', 0, NULL, 0, NULL, 1),
(26862, 20651, '2', 'State board ', '', '', '2018', 56.00, '', 1, '2024-08-06 08:09:56', 0, NULL, 0, NULL, 1),
(26863, 20651, '5', 'Dote ', '', 'Diploma ', '2020', 78.00, '', 1, '2024-08-06 08:10:43', 0, NULL, 0, NULL, 1),
(26864, 20651, '3', 'Anna university ', '', 'BE.Computer Science And Engineering ', '2023', 80.17, '', 1, '2024-08-06 08:12:25', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(26865, 20653, '3', 'Madurai Kamaraj University ', '', 'BA English ', '2018', 68.00, '', 1, '2024-08-06 09:40:12', 0, NULL, 0, NULL, 1),
(26866, 20652, '5', 'Easa college of paramedical science ', '', 'Para medical and science ', '2021', 71.56, '', 1, '2024-08-06 09:41:25', 0, NULL, 0, NULL, 1),
(26867, 20655, '3', 'SRM UNIVERSITY ', '', 'B. Com (general)', '2024', 6.51, '', 1, '2024-08-06 02:14:52', 0, NULL, 0, NULL, 1),
(26868, 20656, '3', 'madras university', '', 'bca', '2021', 7.31, '', 1, '2024-08-06 02:42:39', 0, NULL, 0, NULL, 1),
(26869, 20658, '3', 'ANNA UNIVERSITY ', '', 'BE AERONAUTICAL ', '2024', 8.50, '', 1, '2024-08-07 04:57:44', 0, NULL, 0, NULL, 1),
(26870, 20659, '4', 'University of Madras ', '', 'MBA HR', '2023', 75.00, '', 1, '2024-08-07 04:59:47', 0, NULL, 0, NULL, 1),
(26871, 20661, '3', 'New prince Shri bhavani college of engineering and technology ', '', 'B.e', '2020', 60.00, '', 1, '2024-08-07 05:07:03', 0, NULL, 0, NULL, 1),
(26872, 20662, '3', 'Annamalai University ', '', 'BCA', '2023', 75.00, '', 1, '2024-08-07 05:10:51', 0, NULL, 0, NULL, 1),
(26873, 20660, '3', 'Periyar university ', '', 'B.sc Computer science ', '2023', 7.00, '', 1, '2024-08-07 05:40:29', 0, NULL, 0, NULL, 1),
(26874, 20664, '4', 'Annamalai University ', '', 'MBA ', '2024', 7.30, '', 1, '2024-08-07 05:49:23', 0, NULL, 0, NULL, 1),
(26875, 20663, '3', 'Sri ranganathar University ', '', 'B com', '2018', 60.00, '', 1, '2024-08-07 05:51:39', 0, NULL, 0, NULL, 1),
(26876, 20666, '3', 'University of madras', '', 'Undergraduate ', '2024', 78.00, '', 1, '2024-08-07 06:08:38', 0, NULL, 0, NULL, 1),
(26877, 20665, '4', 'Annamalai university ', '', 'B.com , MBA ', '2023', 82.00, '', 1, '2024-08-07 06:08:40', 0, NULL, 0, NULL, 1),
(26878, 20665, '4', 'Annamalai university ', '', 'B.com , MBA ', '2023', 82.00, '', 1, '2024-08-07 06:09:31', 0, NULL, 0, NULL, 1),
(26879, 20665, '4', 'Annamalai university ', '', 'B.com, MBA ', '2023', 82.00, '', 1, '2024-08-07 06:10:10', 0, NULL, 0, NULL, 1),
(26880, 20631, '3', 'Bharadhidasan', '', 'Bcom', '2021', 74.00, '', 1, '2024-08-07 06:11:25', 0, NULL, 0, NULL, 1),
(26881, 20667, '5', 'Anna University ', '', 'Diploma in mechanical engineering ', '2021', 89.00, '', 1, '2024-08-07 06:15:42', 0, NULL, 0, NULL, 1),
(26882, 20669, '4', 'srm university', '', 'msc computer science', '2024', 80.00, '', 1, '2024-08-07 06:23:26', 0, NULL, 0, NULL, 1),
(26883, 20670, '3', 'Anna university', '', 'BE', '2020', 6.66, '', 1, '2024-08-07 06:42:21', 0, NULL, 0, NULL, 1),
(26884, 20671, '3', 'University alagappa university', '', 'BBA airline and airport management ', '2024', 60.00, '', 1, '2024-08-07 06:57:43', 0, NULL, 0, NULL, 1),
(26885, 20668, '3', 'AM JAIN COLLEGE ', '', 'BBA', '2024', 75.00, '', 1, '2024-08-07 07:41:23', 0, NULL, 0, NULL, 1),
(26886, 20672, '3', 'Vels University of science and technology ', '', 'BCA', '2023', 66.00, '', 1, '2024-08-07 09:23:13', 0, NULL, 0, NULL, 1),
(26887, 20674, '3', 'Sv university ', '', 'BBA', '2023', 84.00, '', 1, '2024-08-07 11:20:31', 0, NULL, 0, NULL, 1),
(26888, 20674, '2', 'Sri medha university ', '', '', '2019', 48.00, '', 1, '2024-08-07 11:22:06', 0, NULL, 0, NULL, 1),
(26889, 20674, '1', 'Zphs university ', '', '', '2017', 68.00, '', 1, '2024-08-07 11:22:50', 0, NULL, 0, NULL, 1),
(26890, 20673, '1', 'Sv university ', '', '', '2018', 73.00, '', 1, '2024-08-07 11:29:29', 0, NULL, 0, NULL, 1),
(26891, 20673, '2', 'SV university ', '', '', '2020', 52.00, '', 1, '2024-08-07 11:30:13', 0, NULL, 0, NULL, 1),
(26892, 20673, '3', 'Sv university ', '', 'Bba', '2023', 62.00, '', 1, '2024-08-07 11:30:51', 0, NULL, 0, NULL, 1),
(26893, 20675, '4', 'Sathyabama Institute of Science and Technology ', '', 'Master of Business Administration ', '2024', 70.00, '', 1, '2024-08-07 11:50:29', 0, NULL, 0, NULL, 1),
(26894, 20649, '3', 'CHENNAI UNIVERSITY ', '', 'BSC', '2020', 67.00, '', 1, '2024-08-08 04:34:18', 0, NULL, 0, NULL, 1),
(26895, 20676, '3', 'Periyar University ', '', 'B.tech', '2023', 8.00, '', 1, '2024-08-08 04:42:48', 0, NULL, 0, NULL, 1),
(26896, 20678, '3', 'Vivekananda College ', '', 'B. com cs', '2023', 7.00, '', 1, '2024-08-08 04:53:54', 1, '2024-08-08 04:54:36', 0, NULL, 1),
(26897, 20677, '3', 'University of Madras ', '', 'B. Com general', '2024', 85.00, '', 1, '2024-08-08 04:53:54', 0, NULL, 0, NULL, 1),
(26898, 20679, '4', 'Bharathidasan University ', '', 'M.A HRM', '2024', 75.00, '', 1, '2024-08-08 05:34:09', 0, NULL, 0, NULL, 1),
(26899, 20680, '4', 'Bharathidasan University ', '', 'M A HRM', '2024', 70.00, '', 1, '2024-08-08 06:09:58', 0, NULL, 0, NULL, 1),
(26900, 20681, '3', 'dr mgr university', '', 'bcom', '2021', 66.00, '', 1, '2024-08-08 06:25:37', 0, NULL, 0, NULL, 1),
(26901, 20682, '3', 'Imayam Institute of Agriculture and Technology ', '', 'B.Sc Agriculture ', '2023', 80.09, '', 1, '2024-08-08 06:51:28', 0, NULL, 0, NULL, 1),
(26902, 20683, '4', 'Bhararthidasan university ', '', 'MBA', '2024', 70.00, '', 1, '2024-08-08 06:55:09', 0, NULL, 0, NULL, 1),
(26903, 20685, '4', 'Anna University ', '', 'Ba', '2024', 90.00, '', 1, '2024-08-08 08:21:26', 0, NULL, 0, NULL, 1),
(26904, 20687, '3', 'Remo international college ', '', 'BBA in Airline and airport management ', '2023', 75.00, '', 1, '2024-08-08 02:07:34', 0, NULL, 0, NULL, 1),
(26905, 20688, '3', 'Anna university ', '', 'B.tech biotechnology', '2023', 74.00, '', 1, '2024-08-09 05:01:26', 0, NULL, 0, NULL, 1),
(26906, 20689, '3', 'university', '', 'be', '2024', 7.63, '', 1, '2024-08-09 05:16:09', 0, NULL, 0, NULL, 1),
(26907, 20693, '3', 'Madras University ', '', 'BCA', '2022', 70.00, '', 1, '2024-08-09 06:04:05', 0, NULL, 0, NULL, 1),
(26908, 20691, '3', 'University of madrase', '', 'B.sc Computer science ', '2024', 63.00, '', 1, '2024-08-09 06:05:27', 0, NULL, 0, NULL, 1),
(26909, 20692, '3', 'Vels', '', 'B. Com(cs) ', '2024', 60.00, '', 1, '2024-08-09 06:14:02', 0, NULL, 0, NULL, 1),
(26910, 20696, '3', 'Vels university ', '', 'B. Com', '2021', 70.00, '', 1, '2024-08-09 06:14:08', 1, '2024-08-09 06:16:05', 0, NULL, 0),
(26911, 20696, '4', 'Vels university', '', 'B. Com (general) ', '2021', 75.00, '', 1, '2024-08-09 06:15:08', 1, '2024-08-09 06:16:10', 0, NULL, 0),
(26912, 20696, '3', 'University', '', 'Bcom', '2021', 75.00, '', 1, '2024-08-09 06:18:56', 0, NULL, 0, NULL, 1),
(26913, 20697, '3', 'Madrasa university', '', 'B.Com bm ', '2022', 80.00, '', 1, '2024-08-09 06:24:13', 0, NULL, 0, NULL, 1),
(26914, 20698, '3', 'Bangalore University ', '', 'Bcom', '2022', 62.00, '', 1, '2024-08-09 06:30:56', 0, NULL, 0, NULL, 1),
(26915, 20690, '3', 'Dhanalakshmi srinivasan college of engineering and technology ', '', 'Be', '2022', 7.98, '', 1, '2024-08-09 06:35:58', 0, NULL, 0, NULL, 1),
(26916, 20690, '2', 'State board ', '', '', '2017', 77.00, '', 1, '2024-08-09 06:36:48', 0, NULL, 0, NULL, 1),
(26917, 20690, '1', 'State board ', '', '', '2015', 81.00, '', 1, '2024-08-09 06:37:09', 0, NULL, 0, NULL, 1),
(26918, 20699, '5', 'DOTE', '', 'Electrical and electronics engineering ', '2014', 67.00, '', 1, '2024-08-09 06:37:54', 0, NULL, 0, NULL, 1),
(26919, 20701, '5', 'NAC academy ', '', 'PG fire and safety engineering ', '2021', 96.00, '', 1, '2024-08-09 06:42:58', 0, NULL, 0, NULL, 1),
(26920, 20700, '3', 'Madras university', '', 'B.Com', '2022', 67.00, '', 1, '2024-08-09 06:43:44', 0, NULL, 0, NULL, 1),
(26921, 20695, '3', 'Madras University ', '', 'B.com(bank management)', '2022', 85.00, '', 1, '2024-08-09 06:52:54', 0, NULL, 0, NULL, 1),
(26922, 20702, '3', 'Thiruvallur University', '', 'B.sc', '2024', 68.00, '', 1, '2024-08-09 08:16:05', 0, NULL, 0, NULL, 1),
(26923, 20703, '3', 'Periyar University', '', 'B.A English Literature', '2021', 75.00, '', 1, '2024-08-09 08:35:20', 0, NULL, 0, NULL, 1),
(26924, 20706, '4', 'St Xavier', '', 'BA in history', '2019', 72.00, '', 1, '2024-08-09 11:49:22', 0, NULL, 0, NULL, 1),
(26925, 20707, '3', 'Kamaraj university ', '', 'B.Sc(IT)', '2024', 82.40, '', 1, '2024-08-09 11:59:30', 0, NULL, 0, NULL, 1),
(26926, 20705, '4', 'University ', '', 'Bcom ', '2024', 83.00, '', 1, '2024-08-09 02:02:38', 0, NULL, 0, NULL, 1),
(26927, 20710, '1', 'State board ', '', '', '2017', 91.00, '', 1, '2024-08-10 04:43:00', 0, NULL, 0, NULL, 1),
(26928, 20710, '2', 'State board ', '', '', '2019', 85.00, '', 1, '2024-08-10 04:43:20', 0, NULL, 0, NULL, 1),
(26929, 20710, '3', 'University of Madras ', '', 'Bachelor of Commerce ', '2022', 88.00, '', 1, '2024-08-10 04:43:46', 0, NULL, 0, NULL, 1),
(26930, 20710, '4', 'University of Madras ', '', 'Master of Business Administration ', '2024', 77.00, '', 1, '2024-08-10 04:44:04', 0, NULL, 0, NULL, 1),
(26931, 20704, '3', 'banglore City University ', '', 'Bcom', '2024', 80.00, '', 1, '2024-08-10 05:18:18', 1, '2024-08-10 05:19:24', 0, NULL, 1),
(26932, 20708, '4', 'University ', '', 'Bcom ', '2024', 85.00, '', 1, '2024-08-10 05:18:54', 0, NULL, 0, NULL, 1),
(26933, 20713, '3', 'Anna University ', '', 'BE', '2024', 72.20, '', 1, '2024-08-10 05:20:07', 0, NULL, 0, NULL, 1),
(26934, 20712, '1', 'State board of tamil nadu', '', '', '2017', 9.00, '', 1, '2024-08-10 05:20:52', 0, NULL, 0, NULL, 1),
(26935, 20712, '2', 'State board of tamil nadu', '', '', '2019', 75.00, '', 1, '2024-08-10 05:21:44', 0, NULL, 0, NULL, 1),
(26936, 20712, '3', 'Madras university', '', 'Bsc physics', '2022', 77.00, '', 1, '2024-08-10 05:22:13', 0, NULL, 0, NULL, 1),
(26937, 20712, '4', 'Bharathidhasan university', '', 'Msc physics', '2024', 75.00, '', 1, '2024-08-10 05:22:44', 0, NULL, 0, NULL, 1),
(26938, 20264, '4', 'Noorul Islam center For Higher education', '', 'MBA', '2024', 80.00, '', 104, '2024-08-10 10:53:12', 0, NULL, 0, NULL, 1),
(26939, 20714, '4', 'Manonmaniam Sundaranar University', '', 'M.Sc Electronics ', '2024', 80.00, '', 1, '2024-08-10 05:33:35', 0, NULL, 0, NULL, 1),
(26940, 20716, '4', 'Anna university ', '', 'MCA', '2023', 82.00, '', 1, '2024-08-10 06:08:26', 0, NULL, 0, NULL, 1),
(26941, 20716, '3', 'Bharadidasan university ', '', 'Bsc,cs', '2021', 85.00, '', 1, '2024-08-10 06:09:04', 0, NULL, 0, NULL, 1),
(26942, 20711, '3', 'Anna university ', '', 'BE', '2020', 71.00, '', 1, '2024-08-10 06:30:45', 0, NULL, 0, NULL, 1),
(26943, 20717, '4', 'Annamalai University affiliated ', '', 'M.com', '2024', 66.00, '', 1, '2024-08-10 07:11:05', 0, NULL, 0, NULL, 1),
(26944, 20717, '3', 'Madurai kamaraj University ', '', 'B.com', '2021', 65.00, '', 1, '2024-08-10 07:11:45', 0, NULL, 0, NULL, 1),
(26945, 20718, '3', 'University of Madras ', '', 'B.com general ', '2024', 75.00, '', 1, '2024-08-10 07:40:40', 0, NULL, 0, NULL, 1),
(26946, 20721, '3', 'Madras University ', '', 'BBA ', '2024', 75.00, '', 1, '2024-08-11 07:47:59', 0, NULL, 0, NULL, 1),
(26947, 20719, '1', 'State board ', '', '', '2018', 80.00, '', 1, '2024-08-12 04:46:19', 0, NULL, 0, NULL, 1),
(26948, 20719, '2', 'State board ', '', '', '2020', 60.00, '', 1, '2024-08-12 04:46:40', 0, NULL, 0, NULL, 1),
(26949, 20722, '3', 'University of Madras ', '', 'BBA', '2024', 75.00, '', 1, '2024-08-12 04:50:21', 0, NULL, 0, NULL, 1),
(26950, 20723, '3', 'Anna University', '', 'BE Mechanical Engineering', '2016', 79.00, '', 1, '2024-08-12 04:54:16', 0, NULL, 0, NULL, 1),
(26951, 20724, '3', 'Thiruvalluvar University ', '', 'B. Sc. Computer science ', '2024', 60.00, '', 1, '2024-08-12 05:07:26', 0, NULL, 0, NULL, 1),
(26952, 20725, '3', 'Madras University ', '', 'Bcom', '2014', 50.00, '', 1, '2024-08-12 05:16:00', 0, NULL, 0, NULL, 1),
(26953, 20728, '5', 'Tndte', '', 'Computer science engineering ', '2018', 76.20, '', 1, '2024-08-12 05:17:45', 0, NULL, 0, NULL, 1),
(26954, 20726, '4', 'anna university', '', 'mba', '2014', 60.00, '', 1, '2024-08-12 05:17:50', 0, NULL, 0, NULL, 1),
(26955, 20727, '4', 'Bharathidasa. University ', '', 'Mathematics ', '2022', 76.00, '', 1, '2024-08-12 05:18:47', 0, NULL, 0, NULL, 1),
(26956, 20727, '4', 'Bharathidasan university ', '', 'Mathematics ', '2022', 76.00, '', 1, '2024-08-12 05:19:35', 1, '2024-08-12 05:20:14', 0, NULL, 0),
(26957, 20729, '3', 'dhanalakshmi srinivasan institute of research and technology', '', 'b.tech/petroleum engineer ', '2022', 70.00, '', 1, '2024-08-12 05:39:57', 0, NULL, 0, NULL, 1),
(26958, 20730, '3', 'madras university', '', 'b.com', '2024', 70.00, '', 1, '2024-08-12 05:51:30', 0, NULL, 0, NULL, 1),
(26959, 20731, '5', 'anna university ', '', 'deee', '2023', 80.00, '', 1, '2024-08-12 05:54:59', 0, NULL, 0, NULL, 1),
(26960, 20732, '3', 'Madras University - ethiraj college for women ', '', 'Bachelor\'s in Business administration ', '2023', 76.00, '', 1, '2024-08-12 05:56:20', 0, NULL, 0, NULL, 1),
(26961, 20732, '2', 'Central board of secondary education ', '', '', '2020', 94.60, '', 1, '2024-08-12 05:57:24', 0, NULL, 0, NULL, 1),
(26962, 20732, '1', 'Central Board of secondary education ', '', '', '2018', 88.00, '', 1, '2024-08-12 05:57:52', 0, NULL, 0, NULL, 1),
(26963, 20733, '3', 'University ', '', 'BCA', '2023', 7.11, '', 1, '2024-08-12 06:26:12', 0, NULL, 0, NULL, 1),
(26964, 20734, '5', 'University ', '', 'Diploma in civil', '2022', 73.00, '', 1, '2024-08-12 06:33:21', 0, NULL, 0, NULL, 1),
(26965, 20736, '4', 'Anna University ', '', 'MBA ', '2024', 80.00, '', 1, '2024-08-12 06:50:37', 0, NULL, 0, NULL, 1),
(26966, 20737, '4', 'Anna University ', '', 'MBA ', '2024', 80.00, '', 1, '2024-08-12 06:50:43', 0, NULL, 0, NULL, 1),
(26967, 20736, '3', 'Madras University ', '', 'B Com CA', '2022', 80.00, '', 1, '2024-08-12 06:51:26', 0, NULL, 0, NULL, 1),
(26968, 20737, '3', 'Madras university ', '', 'B. com Ca ', '2022', 85.00, '', 1, '2024-08-12 06:51:30', 0, NULL, 0, NULL, 1),
(26969, 20738, '4', 'Madras University', '', 'MBA', '2024', 70.00, '', 1, '2024-08-12 07:07:08', 0, NULL, 0, NULL, 1),
(26970, 20735, '3', 'Madras University ', '', 'BCA ', '2017', 66.00, '', 1, '2024-08-12 07:10:18', 0, NULL, 0, NULL, 1),
(26971, 20739, '4', 'University of Madras', '', 'MBA', '2019', 73.90, '', 1, '2024-08-12 08:12:05', 0, NULL, 0, NULL, 1),
(26972, 20739, '4', 'University of Madras ', '', 'MBA', '2019', 73.90, '', 1, '2024-08-12 08:12:46', 0, NULL, 0, NULL, 1),
(26973, 20739, '3', 'University of Madras ', '', 'B.Com', '2017', 51.00, '', 1, '2024-08-12 08:14:28', 0, NULL, 0, NULL, 1),
(26974, 20739, '2', 'Matriculation', '', '', '2014', 76.00, '', 1, '2024-08-12 08:15:19', 0, NULL, 0, NULL, 1),
(26975, 20739, '1', 'CBSE', '', '', '2012', 56.00, '', 1, '2024-08-12 08:15:50', 0, NULL, 0, NULL, 1),
(26976, 20694, '5', 'Gesto ', '', 'Hotel management ', '2014', 68.00, '', 1, '2024-08-12 09:27:18', 0, NULL, 0, NULL, 1),
(26977, 20741, '1', 'University ', '', '', '2017', 80.00, '', 1, '2024-08-13 04:54:03', 0, NULL, 0, NULL, 1),
(26978, 20740, '3', 'Madras University ', '', 'ba.english literature ', '2021', 72.00, '', 1, '2024-08-13 04:56:51', 0, NULL, 0, NULL, 1),
(26979, 20742, '4', 'Annamalai university ', '', 'MBA HR', '2024', 7.50, '', 1, '2024-08-13 05:05:46', 0, NULL, 0, NULL, 1),
(26980, 20743, '3', 'Thiruvalluvar university', '', 'B. Com(CA) ', '2023', 92.00, '', 1, '2024-08-13 05:13:25', 0, NULL, 0, NULL, 1),
(26981, 20744, '4', 'Vels University ', '', 'Msc', '2024', 85.00, '', 1, '2024-08-13 05:36:02', 0, NULL, 0, NULL, 1),
(26982, 20746, '4', 'Madurai kamaraj University Madurai ', '', 'Msc (Information technology)', '2024', 74.00, '', 1, '2024-08-13 06:17:31', 0, NULL, 0, NULL, 1),
(26983, 20748, '3', 'Thiruvalluvar University ', '', 'B.com Computer application ', '2014', 68.00, '', 1, '2024-08-13 06:24:25', 0, NULL, 0, NULL, 1),
(26984, 20749, '3', 'Madras University ', '', 'Bca', '2018', 70.00, '', 1, '2024-08-13 06:25:36', 0, NULL, 0, NULL, 1),
(26985, 20747, '3', 'Thiruvalluvar university ', '', 'B.com cS', '2014', 85.00, '', 1, '2024-08-13 06:29:12', 0, NULL, 0, NULL, 1),
(26986, 20750, '4', 'Tagore engineering college', '', 'Mba', '2024', 7.78, '', 1, '2024-08-13 06:42:48', 0, NULL, 0, NULL, 1),
(26987, 20751, '4', 'Mku University ', '', 'MBA', '2012', 60.00, '', 1, '2024-08-13 07:43:48', 0, NULL, 0, NULL, 1),
(26988, 20752, '4', 'Punyashlok Ahilyadevi Holakar Solapur university', '', 'M. Sc', '2016', 52.00, '', 1, '2024-08-13 08:09:30', 0, NULL, 0, NULL, 1),
(26989, 20754, '3', 'University of Madras ', '', 'b. com', '2018', 75.00, '', 1, '2024-08-13 09:09:50', 0, NULL, 0, NULL, 1),
(26990, 20753, '3', 'Alagappa University ', '', 'BBA', '2019', 80.00, '', 1, '2024-08-13 09:10:49', 0, NULL, 0, NULL, 1),
(26991, 20755, '3', 'Anna University ', '', 'B Tech IT', '2024', 7.85, '', 1, '2024-08-13 10:45:26', 0, NULL, 0, NULL, 1),
(26992, 20756, '3', 'Madras University ', '', 'b com ', '2024', 70.00, '', 1, '2024-08-13 11:34:23', 0, NULL, 0, NULL, 1),
(26993, 20758, '3', 'Paavai Engineering College ', '', 'BE', '2023', 75.00, '', 1, '2024-08-14 09:11:14', 0, NULL, 0, NULL, 1),
(26994, 20760, '3', 'ANNA UNIVERSITY ', '', 'B. TECH', '2024', 7.89, '', 1, '2024-08-14 12:46:46', 0, NULL, 0, NULL, 1),
(26995, 20759, '3', 'Paavai college of engineering ', '', 'BTech ', '2024', 81.00, '', 1, '2024-08-14 12:46:49', 0, NULL, 0, NULL, 1),
(26996, 20757, '3', 'Rajah serafoji goverment college Thanjavur ', '', 'BBA ', '2024', 74.85, '', 1, '2024-08-15 02:40:59', 0, NULL, 0, NULL, 1),
(26997, 20757, '2', 'Government higher secondary school ayyampet', '', '', '2021', 81.00, '', 1, '2024-08-15 02:46:36', 0, NULL, 0, NULL, 1),
(26998, 20757, '1', 'Government  higher secondary school, keelapunalvasal', '', '', '2018', 65.00, '', 1, '2024-08-15 02:47:37', 0, NULL, 0, NULL, 1),
(26999, 20762, '4', 'Baradhidasan university ', '', 'M.sc', '2023', 78.00, '', 1, '2024-08-16 04:47:23', 0, NULL, 0, NULL, 1),
(27000, 20763, '3', 'University of Madras', '', 'Bachelor of commerce ', '2025', 60.00, '', 1, '2024-08-16 05:08:47', 0, NULL, 0, NULL, 1),
(27001, 20764, '4', 'Madras University ', '', 'MBA', '2020', 6.60, '', 1, '2024-08-16 05:35:45', 0, NULL, 0, NULL, 1),
(27002, 20765, '4', 'Madras university ', '', 'MBA', '2022', 70.00, '', 1, '2024-08-16 05:55:54', 0, NULL, 0, NULL, 1),
(27003, 20633, '3', 'LNG COLLEGE', '', 'Bsc Mathematics', '2021', 76.00, '', 1, '2024-08-16 06:43:03', 0, NULL, 0, NULL, 1),
(27004, 20766, '4', 'Madras university distance ', '', 'MCA', '2024', 75.00, '', 1, '2024-08-16 06:53:18', 0, NULL, 0, NULL, 1),
(27005, 20766, '3', 'Madras university ', '', 'BSc cs', '2020', 77.00, '', 1, '2024-08-16 06:54:44', 0, NULL, 0, NULL, 1),
(27006, 20766, '2', 'Jayagopal Garodia Govt Girls Hr Sec School ', '', '', '2017', 64.00, '', 1, '2024-08-16 06:58:46', 0, NULL, 0, NULL, 1),
(27007, 20766, '1', 'Govt hr Sec School ', '', '', '2015', 75.00, '', 1, '2024-08-16 06:59:17', 0, NULL, 0, NULL, 1),
(27008, 20772, '4', 'jkbose', '', 'b.com', '2019', 70.00, '', 1, '2024-08-16 01:30:14', 0, NULL, 0, NULL, 1),
(27009, 20772, '4', 'jkbose', '', 'b.com', '2019', 70.00, '', 1, '2024-08-16 01:30:55', 1, '2024-08-16 01:31:03', 0, NULL, 0),
(27010, 20773, '3', 'Loyola institute of technology ', '', 'Mechanical engineering ', '2023', 76.00, '', 1, '2024-08-16 02:27:51', 0, NULL, 0, NULL, 1),
(27011, 20773, '2', 'Thiru.vi.ka higher secondary school ', '', '', '2019', 51.00, '', 1, '2024-08-16 02:28:22', 0, NULL, 0, NULL, 1),
(27012, 20773, '1', 'P s High school North ', '', '', '2017', 84.00, '', 1, '2024-08-16 02:28:46', 0, NULL, 0, NULL, 1),
(27013, 20774, '3', 'Manonmaniam Sundaranar University ', '', 'BSC (MATHEMATICS)', '2019', 67.00, '', 1, '2024-08-17 04:43:08', 0, NULL, 0, NULL, 1),
(27014, 20775, '4', 'Dhanalakshmi srinivasan engineering College ', '', 'MBA', '2024', 8.00, '', 1, '2024-08-17 05:15:28', 0, NULL, 0, NULL, 1),
(27015, 20776, '4', 'Thiruvalluvar University ', '', 'MSc Computer Science ', '2023', 76.00, '', 1, '2024-08-17 05:15:59', 0, NULL, 0, NULL, 1),
(27016, 20770, '4', 'Thiruvalluvar University ', '', 'MSc computer science ', '2023', 75.00, '', 1, '2024-08-17 05:20:38', 0, NULL, 0, NULL, 1),
(27017, 20778, '3', 'University of Madras ', '', 'Bsc computer science ', '2022', 70.00, '', 1, '2024-08-17 05:29:22', 0, NULL, 0, NULL, 1),
(27018, 20778, '1', 'Tamil Nadu board ', '', '', '2013', 88.60, '', 1, '2024-08-17 05:30:46', 0, NULL, 0, NULL, 1),
(27019, 20778, '2', 'Tamilnadu board', '', '', '2016', 66.00, '', 1, '2024-08-17 05:31:09', 0, NULL, 0, NULL, 1),
(27020, 20777, '3', 'Mgr University ', '', 'B.tech iT', '2024', 7.50, '', 1, '2024-08-17 05:32:20', 0, NULL, 0, NULL, 1),
(27021, 20779, '3', 'Alagappa university ', '', 'B.Com', '2023', 80.00, '', 1, '2024-08-17 05:54:20', 0, NULL, 0, NULL, 1),
(27022, 20780, '3', 'University of madras', '', 'Bsc mathematics', '2016', 57.00, '', 1, '2024-08-17 05:56:59', 0, NULL, 0, NULL, 1),
(27023, 20781, '3', 'Hindustan university ', '', 'B tech', '2014', 70.00, '', 1, '2024-08-17 06:44:03', 0, NULL, 0, NULL, 1),
(27024, 20787, '3', 'Autonomous ', '', 'B.sc Mathematics ', '2020', 60.00, '', 1, '2024-08-17 08:28:04', 0, NULL, 0, NULL, 1),
(27025, 20786, '3', 'Dr.Mgr educational and research institute ', '', 'Bsc', '2024', 69.00, '', 1, '2024-08-17 08:28:04', 0, NULL, 0, NULL, 1),
(27026, 20788, '3', 'Autonomus', '', 'B.com', '2024', 70.00, '', 1, '2024-08-17 09:36:05', 0, NULL, 0, NULL, 1),
(27027, 10374, '2', 'State Board', '', '', '2014', 68.00, '', 1, '2024-08-17 02:59:03', 0, NULL, 0, NULL, 1),
(27028, 10374, '1', 'State Board ', '', '', '2012', 59.00, '', 1, '2024-08-17 02:59:36', 0, NULL, 0, NULL, 1),
(27029, 20790, '4', 'Anna university ', '', 'MBA', '2023', 70.00, '', 1, '2024-08-19 04:34:17', 0, NULL, 0, NULL, 1),
(27030, 20791, '3', 'Bharathidasan university ', '', 'Bsc chemistry ', '2024', 74.80, '', 1, '2024-08-19 04:51:49', 0, NULL, 0, NULL, 1),
(27031, 20794, '4', 'DR MGR Educational and research institute Chennai ', '', 'B.com & MBA HRM', '2024', 90.00, '', 1, '2024-08-19 05:04:41', 0, NULL, 0, NULL, 1),
(27032, 20795, '3', 'Madras University ', '', 'BSC maths ', '2024', 92.00, '', 1, '2024-08-19 05:06:23', 0, NULL, 0, NULL, 1),
(27033, 20795, '1', 'State board ', '', '', '2019', 67.00, '', 1, '2024-08-19 05:07:49', 0, NULL, 0, NULL, 1),
(27034, 20795, '2', 'State board ', '', '', '2021', 86.00, '', 1, '2024-08-19 05:08:26', 0, NULL, 0, NULL, 1),
(27035, 20796, '3', 'Anna university', '', 'BE/CSE 222w22w', '2024', 78.00, '', 1, '2024-08-19 05:17:21', 0, NULL, 0, NULL, 1),
(27036, 20797, '1', 'Diploma in EEE', '', '', '2013', 80.00, '', 1, '2024-08-19 05:34:17', 0, NULL, 0, NULL, 1),
(27037, 20799, '4', 'Bharathidasan  University ', '', 'MBA', '2024', 80.00, '', 1, '2024-08-19 05:43:47', 0, NULL, 0, NULL, 1),
(27038, 20798, '4', 'Bharathidasan University ', '', 'MBA', '2024', 81.00, '', 1, '2024-08-19 05:51:27', 0, NULL, 0, NULL, 1),
(27039, 20800, '3', 'Sri krishnaswamy college ', '', 'B com', '2016', 70.00, '', 1, '2024-08-19 05:57:41', 0, NULL, 0, NULL, 1),
(27040, 20804, '3', 'Madras University of arts and science ', '', 'B.com (Bank management)', '2024', 65.00, '', 1, '2024-08-19 06:01:42', 0, NULL, 0, NULL, 1),
(27041, 20801, '3', 'University of madras', '', 'B.com (Bank management) ', '2024', 60.00, '', 1, '2024-08-19 06:03:30', 0, NULL, 0, NULL, 1),
(27042, 20802, '3', 'Thiruvalluvar university ', '', 'BBA', '2019', 78.00, '', 1, '2024-08-19 06:09:55', 0, NULL, 0, NULL, 1),
(27043, 20805, '3', 'IIKM-BUSINESS SCHOOL ', '', 'BBA-International Business ', '2024', 71.00, '', 1, '2024-08-19 06:42:06', 0, NULL, 0, NULL, 1),
(27044, 20806, '4', 'University of Madras ', '', 'Master of computer science ', '2018', 65.00, '', 1, '2024-08-19 06:53:07', 0, NULL, 0, NULL, 1),
(27045, 20807, '5', 'Sri bogar polytechnic college ', '', 'Diploma in civil engineering ', '2014', 66.00, '', 1, '2024-08-19 07:31:47', 0, NULL, 0, NULL, 1),
(27046, 20807, '1', 'Pallivasal higher secondary school ', '', '', '2009', 50.00, '', 1, '2024-08-19 07:33:40', 0, NULL, 0, NULL, 1),
(27047, 20808, '3', 'Hindustan University ', '', 'BCA', '2021', 70.00, '', 1, '2024-08-19 09:07:43', 0, NULL, 0, NULL, 1),
(27048, 20809, '4', 'Dr.m.g.r university ', '', 'Mca', '2024', 70.00, '', 1, '2024-08-19 09:20:11', 0, NULL, 0, NULL, 1),
(27049, 20810, '3', 'Thiruvalluvar university ', '', 'Bsc ', '2024', 60.00, '', 1, '2024-08-19 09:30:12', 0, NULL, 0, NULL, 1),
(27050, 20812, '3', 'AAA COLLEGE OF ENGINEERING AND TECHNOLOGY ', '', 'B.E', '2024', 75.00, '', 1, '2024-08-19 10:39:35', 0, NULL, 0, NULL, 1),
(27051, 20812, '2', 'T.N.P.M.M.N.HR.SEC.SCHOOL', '', '', '2020', 76.00, '', 1, '2024-08-19 10:40:10', 0, NULL, 0, NULL, 1),
(27052, 20812, '1', 'T.N.P.M.M.N.HR.SEC.SCHOOL', '', '', '2018', 86.00, '', 1, '2024-08-19 10:40:37', 0, NULL, 0, NULL, 1),
(27053, 20811, '3', 'Bharathidasan university ', '', 'B.COM CA', '2022', 70.00, '', 1, '2024-08-19 12:33:32', 0, NULL, 0, NULL, 1),
(27054, 20813, '5', 'MECT', '', 'NIL', '2022', 98.00, '', 1, '2024-08-19 02:24:56', 1, '2024-08-19 02:27:12', 0, NULL, 1),
(27055, 20814, '5', 'Bharath sevak samaj university ', '', 'Dhmcs', '2019', 80.00, '', 1, '2024-08-19 02:32:50', 0, NULL, 0, NULL, 1),
(27056, 20817, '3', 'Bharathidasan University ', '', 'B.com', '2023', 85.00, '', 1, '2024-08-20 03:53:49', 0, NULL, 0, NULL, 1),
(27057, 20818, '3', 'Hindustan college of arts & science ', '', 'B.com general', '2024', 68.90, '', 1, '2024-08-20 04:52:01', 0, NULL, 0, NULL, 1),
(27058, 20821, '4', 'SRM University ', '', 'Mba', '2023', 79.90, '', 1, '2024-08-20 05:45:23', 0, NULL, 0, NULL, 1),
(27059, 20821, '3', 'PRIST University ', '', 'Btech ', '2020', 67.00, '', 1, '2024-08-20 05:45:59', 0, NULL, 0, NULL, 1),
(27060, 20820, '3', 'Thiruvalluvar University ', '', 'BCA', '2023', 80.00, '', 1, '2024-08-20 05:49:44', 0, NULL, 0, NULL, 1),
(27061, 20819, '3', 'University of Madras ', '', 'Bcom corporate secretary ', '2022', 80.00, '', 1, '2024-08-20 05:53:30', 0, NULL, 0, NULL, 1),
(27062, 20823, '3', 'Anna university ', '', 'BE (ECE)', '2023', 83.40, '', 1, '2024-08-20 05:57:04', 0, NULL, 0, NULL, 1),
(27063, 20822, '3', 'University of Madras', '', 'Bsc biochemistry', '2023', 70.10, '', 1, '2024-08-20 05:57:29', 0, NULL, 0, NULL, 1),
(27064, 20825, '4', 'University of madras ', '', 'MBA HR ', '2024', 75.00, '', 1, '2024-08-20 06:25:24', 0, NULL, 0, NULL, 1),
(27065, 20824, '4', 'University ', '', 'MBA HRM', '2024', 91.00, '', 1, '2024-08-20 06:39:33', 0, NULL, 0, NULL, 1),
(27066, 20826, '1', 'State board', '', '', '2008', 67.60, '', 1, '2024-08-20 06:39:43', 0, NULL, 0, NULL, 1),
(27067, 20826, '5', 'CPCL education trust', '', 'Diplamo in petrochemical engineering ', '2011', 73.40, '', 1, '2024-08-20 06:40:36', 0, NULL, 0, NULL, 1),
(27068, 20826, '3', 'Anna university ', '', 'B.Tech Chemical engineering ', '2014', 72.00, '', 1, '2024-08-20 06:41:09', 0, NULL, 0, NULL, 1),
(27069, 20815, '4', 'Peeriya university', '', 'M. Com', '2023', 75.00, '', 1, '2024-08-20 07:04:08', 0, NULL, 0, NULL, 1),
(27070, 20828, '5', 'DOTE', '', 'DIPLOMA IN MECHANICAL ENGINEERING ', '2021', 90.00, '', 1, '2024-08-20 07:11:24', 0, NULL, 0, NULL, 1),
(27071, 20829, '3', 'Madras University ', '', 'B.com corporate secretaryship ', '2024', 59.00, '', 1, '2024-08-20 07:38:01', 0, NULL, 0, NULL, 1),
(27072, 20831, '3', 'Anna University Chennai ', '', 'BE', '2024', 70.00, '', 1, '2024-08-20 07:49:11', 0, NULL, 0, NULL, 1),
(27073, 20831, '5', 'State Board ', '', 'DECE', '2020', 81.70, '', 1, '2024-08-20 07:50:10', 0, NULL, 0, NULL, 1),
(27074, 20830, '3', 'madras university', '', 'ba economics', '2022', 70.00, '', 1, '2024-08-20 07:50:10', 0, NULL, 0, NULL, 1),
(27075, 20831, '1', 'State Board ', '', '', '2017', 76.80, '', 1, '2024-08-20 07:50:34', 0, NULL, 0, NULL, 1),
(27076, 20830, '1', 'state board', '', '', '2017', 80.00, '', 1, '2024-08-20 07:51:13', 0, NULL, 0, NULL, 1),
(27077, 20789, '1', 'Nazareth matriculation hr sec school ', '', 'Bcom cS', '2018', 80.00, '', 1, '2024-08-20 07:53:06', 0, NULL, 0, NULL, 1),
(27078, 20789, '2', 'State board', '', '', '2020', 75.00, '', 1, '2024-08-20 07:54:12', 0, NULL, 0, NULL, 1),
(27079, 20789, '3', 'Madras University ', '', 'B.com cs', '2023', 70.00, '', 1, '2024-08-20 07:58:21', 0, NULL, 0, NULL, 1),
(27080, 20833, '3', 'Anna University ', '', 'B.E', '2021', 70.00, '', 1, '2024-08-20 08:14:56', 0, NULL, 0, NULL, 1),
(27081, 20832, '3', 'Madras University ', '', 'B.Com', '2022', 75.00, '', 1, '2024-08-20 08:23:09', 0, NULL, 0, NULL, 1),
(27082, 20834, '3', 'Anna University ', '', 'B.E', '2023', 80.00, '', 1, '2024-08-20 09:20:13', 0, NULL, 0, NULL, 1),
(27083, 20835, '4', 'Anna University ', '', 'MBA In HR & marketing ', '2024', 70.00, '', 1, '2024-08-20 09:50:58', 0, NULL, 0, NULL, 1),
(27084, 20838, '1', 'State board ', '', 'Bsc computer science ', '2023', 65.00, '', 1, '2024-08-21 04:11:34', 0, NULL, 0, NULL, 1),
(27085, 20838, '2', 'State board ', '', '', '2020', 50.00, '', 1, '2024-08-21 04:12:08', 0, NULL, 0, NULL, 1),
(27086, 20838, '3', 'Madras University ', '', 'Bsc', '2023', 70.00, '', 1, '2024-08-21 04:12:39', 0, NULL, 0, NULL, 1),
(27087, 20842, '3', 'Justice Basheer Ahmed Sayeed college for Women ', '', 'B.com (Information systems management)', '2024', 69.00, '', 1, '2024-08-21 04:51:35', 0, NULL, 0, NULL, 1),
(27088, 20840, '3', 'Mookambika college of engineering ', '', 'BE', '2024', 82.00, '', 1, '2024-08-21 04:52:54', 0, NULL, 0, NULL, 1),
(27089, 20843, '3', 'Anna university ', '', 'B.Tech (information technology)', '2018', 68.00, '', 1, '2024-08-21 04:56:44', 0, NULL, 0, NULL, 1),
(27090, 20845, '3', 'Kamaraj university ', '', 'B. Sc ', '2022', 59.80, '', 1, '2024-08-21 05:11:38', 0, NULL, 0, NULL, 1),
(27091, 20846, '3', 'Madrasa university ', '', 'Ba', '2020', 60.00, '', 1, '2024-08-21 05:45:32', 0, NULL, 0, NULL, 1),
(27092, 20847, '3', 'SV University ', '', 'Gate Degree College ', '2024', 75.00, '', 1, '2024-08-21 05:56:50', 0, NULL, 0, NULL, 1),
(27093, 20848, '4', 'Thiruvalluvar univercity ', '', 'M.com', '2023', 60.00, '', 1, '2024-08-21 06:04:38', 0, NULL, 0, NULL, 1),
(27094, 20849, '4', 'Anna malai University ', '', 'Mba', '2024', 78.00, '', 1, '2024-08-21 06:10:56', 0, NULL, 0, NULL, 1),
(27095, 20851, '3', 'Bharathidasan University ', '', 'Bachelor of science ', '2022', 79.80, '', 1, '2024-08-21 06:18:05', 0, NULL, 0, NULL, 1),
(27096, 20850, '3', 'Bharathidasan University ', '', '', '2021', 71.00, '', 1, '2024-08-21 06:21:32', 0, NULL, 0, NULL, 1),
(27097, 20853, '3', 'Bharathidasan University ', '', 'BBA', '2024', 78.00, '', 1, '2024-08-21 06:24:12', 0, NULL, 0, NULL, 1),
(27098, 20852, '3', 'Madras University ', '', 'Bca', '2020', 65.00, '', 1, '2024-08-21 06:47:02', 0, NULL, 0, NULL, 1),
(27099, 20857, '3', 'Gss jain college', '', 'Bsc home science (IDD) ', '2022', 69.00, '', 1, '2024-08-21 07:05:02', 0, NULL, 0, NULL, 1),
(27100, 20854, '4', 'Anna University ', '', 'MCA', '2024', 75.00, '', 1, '2024-08-21 07:05:06', 0, NULL, 0, NULL, 1),
(27101, 20855, '4', 'Bharathidasan ', '', 'msc computer science', '2023', 90.00, '', 1, '2024-08-21 07:17:05', 1, '2024-08-21 07:17:44', 0, NULL, 1),
(27102, 20855, '3', 'bharathidasan ', '', 'bsc computer science', '2021', 78.00, '', 1, '2024-08-21 07:18:11', 0, NULL, 0, NULL, 1),
(27103, 20859, '3', 'JNTUK', '', 'B tech', '2019', 60.00, '', 1, '2024-08-21 07:27:31', 0, NULL, 0, NULL, 1),
(27104, 20860, '3', 'Madras University ', '', 'BA sociology ', '2022', 70.00, '', 1, '2024-08-21 07:33:03', 0, NULL, 0, NULL, 1),
(27105, 20863, '4', 'University', '', 'MBA', '2023', 80.00, '', 1, '2024-08-21 09:11:10', 0, NULL, 0, NULL, 1),
(27106, 20861, '5', 'Jaisakthi educational trust', '', 'Mechanical engineering ', '2022', 65.00, '', 1, '2024-08-21 09:17:10', 0, NULL, 0, NULL, 1),
(27107, 20864, '3', 'dr. m. g. r. University ', '', 'bach of Commerce ', '2024', 7.42, '', 1, '2024-08-21 09:25:45', 0, NULL, 0, NULL, 1),
(27108, 20865, '3', 'Madras University ', '', 'B.com cS', '2024', 65.00, '', 1, '2024-08-21 09:33:09', 0, NULL, 0, NULL, 1),
(27109, 20827, '3', 'Jawaharlal Nehru University', '', 'BTech', '2023', 74.00, '', 1, '2024-08-21 04:32:28', 0, NULL, 0, NULL, 1),
(27110, 20869, '3', 'University of madaras', '', 'B. Com (General) ', '2024', 72.00, '', 1, '2024-08-21 04:34:42', 0, NULL, 0, NULL, 1),
(27111, 20868, '3', 'sree vidyanikethan engineering college', '', '', '2023', 70.00, '', 1, '2024-08-21 04:53:04', 0, NULL, 0, NULL, 1),
(27112, 20870, '3', 'University of Madras ', '', 'B.com(General)', '2024', 60.00, '', 1, '2024-08-21 05:11:05', 1, '2024-08-21 05:11:19', 0, NULL, 0),
(27113, 20870, '3', 'University of Madras ', '', 'B com(General)', '2024', 65.00, '', 1, '2024-08-21 05:11:47', 0, NULL, 0, NULL, 1),
(27114, 20871, '4', 'Bharath university', '', 'MBA', '2024', 85.00, '', 1, '2024-08-22 03:16:35', 0, NULL, 0, NULL, 1),
(27115, 20871, '3', 'Madras university', '', 'B. Com CA', '2019', 65.00, '', 1, '2024-08-22 03:17:34', 0, NULL, 0, NULL, 1),
(27116, 20866, '3', 'Dr mgr University ', '', 'BA', '2024', 60.00, '', 1, '2024-08-22 04:48:34', 0, NULL, 0, NULL, 1),
(27117, 20873, '3', 'SRM University ', '', 'B.com(general)', '2024', 76.00, '', 1, '2024-08-22 05:01:59', 0, NULL, 0, NULL, 1),
(27118, 20874, '3', 'Anna university', '', 'B.Tech IT', '2021', 70.00, '', 1, '2024-08-22 05:03:03', 0, NULL, 0, NULL, 1),
(27119, 20875, '3', 'Madras University ', '', 'B a defence ', '2024', 50.00, '', 1, '2024-08-22 05:11:00', 0, NULL, 0, NULL, 1),
(27120, 20844, '4', 'Government college ', '', 'BBA', '2023', 50.00, '', 1, '2024-08-22 05:13:57', 0, NULL, 0, NULL, 1),
(27121, 20876, '4', 'Annamalai University ', '', 'M.sc CS', '2020', 66.50, '', 1, '2024-08-22 05:23:05', 0, NULL, 0, NULL, 1),
(27122, 20876, '3', 'Madras University ', '', 'B.sc CS', '2018', 83.00, '', 1, '2024-08-22 05:23:33', 0, NULL, 0, NULL, 1),
(27123, 20877, '3', 'madras university ', '', 'ba criminology', '2018', 61.00, '', 1, '2024-08-22 06:01:56', 0, NULL, 0, NULL, 1),
(27124, 20872, '4', 'Anna University ', '', 'BE', '2017', 60.00, '', 1, '2024-08-22 06:50:23', 0, NULL, 0, NULL, 1),
(27125, 20879, '3', 'University of Madras ', '', 'BCA', '2019', 60.00, '', 1, '2024-08-22 06:53:50', 0, NULL, 0, NULL, 1),
(27126, 20872, '3', 'Anna University ', '', 'BE', '2017', 60.00, '', 1, '2024-08-22 06:54:30', 0, NULL, 0, NULL, 1),
(27127, 20881, '3', 'Bharathidasan University ', '', 'BCA', '2023', 77.00, '', 1, '2024-08-22 07:06:07', 0, NULL, 0, NULL, 1),
(27128, 20881, '2', 'Tamilnadu State Board ', '', '', '2020', 67.00, '', 1, '2024-08-22 07:06:50', 0, NULL, 0, NULL, 1),
(27129, 20881, '1', 'Tamilnadu State Board ', '', '', '2018', 75.00, '', 1, '2024-08-22 07:07:23', 0, NULL, 0, NULL, 1),
(27130, 20880, '3', 'Thiruvalluvar ', '', '', '2020', 70.00, '', 1, '2024-08-22 07:12:01', 0, NULL, 0, NULL, 1),
(27131, 20880, '4', 'Thiruvalluvar', '', 'Bsc', '2017', 75.00, '', 1, '2024-08-22 07:14:36', 0, NULL, 0, NULL, 1),
(27132, 20882, '5', 'trust', '', 'bba', '2019', 80.00, '', 1, '2024-08-22 07:31:06', 0, NULL, 0, NULL, 1),
(27133, 20883, '3', 'Kud', '', 'Bachelor of Arts ', '2020', 67.00, '', 1, '2024-08-22 07:44:06', 0, NULL, 0, NULL, 1),
(27134, 20884, '3', 'Annamalai University ', '', 'B.com', '2023', 70.00, '', 1, '2024-08-22 07:47:34', 0, NULL, 0, NULL, 1),
(27135, 20885, '3', 'Anna University ', '', 'Bachelors in Engineering (Electrical And Electroni', '2020', 62.00, '', 1, '2024-08-22 08:47:25', 0, NULL, 0, NULL, 1),
(27136, 20886, '3', 'Justice basheer Ahmed Syed collage for womens ', '', 'B.sc interior designer and decore ', '2022', 8.00, '', 1, '2024-08-22 10:37:54', 0, NULL, 0, NULL, 1),
(27137, 20888, '4', 'University of Madras', '', '', '2022', 83.00, '', 1, '2024-08-22 01:18:47', 1, '2024-08-22 01:20:11', 0, NULL, 0),
(27138, 20888, '4', 'University of Madras', '', 'Master of Computer science', '2022', 83.00, '', 1, '2024-08-22 01:19:59', 0, NULL, 0, NULL, 1),
(27139, 20888, '3', 'University of Madras', '', 'Bachelor of computer application', '2020', 73.00, '', 1, '2024-08-22 01:24:20', 0, NULL, 0, NULL, 1),
(27140, 20888, '2', 'State board of Tamilnadu', '', '', '2017', 64.00, '', 1, '2024-08-22 01:25:59', 0, NULL, 0, NULL, 1),
(27141, 20888, '1', 'State board of Tamilnadu', '', '', '2013', 51.00, '', 1, '2024-08-22 01:26:56', 0, NULL, 0, NULL, 1),
(27142, 20890, '3', 'University ', '', 'B a', '2023', 73.00, '', 1, '2024-08-22 01:48:02', 0, NULL, 0, NULL, 1),
(27143, 20890, '2', 'Tamilnadu state board ', '', '', '2016', 58.90, '', 1, '2024-08-22 01:49:14', 0, NULL, 0, NULL, 1),
(27144, 20890, '1', 'Tamil Nadu State board ', '', '', '2014', 88.80, '', 1, '2024-08-22 01:50:08', 0, NULL, 0, NULL, 1),
(27145, 20892, '4', 'Bharathiyar University ', '', 'Master in computer science ', '2023', 73.00, '', 1, '2024-08-22 03:35:14', 0, NULL, 0, NULL, 1),
(27146, 20892, '1', 'Government girls higher secondary school ', '', '', '2017', 73.00, '', 1, '2024-08-22 03:35:59', 0, NULL, 0, NULL, 1),
(27147, 20892, '2', 'Vellamal matric higher secondary school ', '', '', '2015', 72.00, '', 1, '2024-08-22 03:36:38', 0, NULL, 0, NULL, 1),
(27148, 20893, '3', 'eri maniammai institute of science and technology ', '', 'bca', '2024', 7.62, '', 1, '2024-08-22 06:19:47', 0, NULL, 0, NULL, 1),
(27149, 20894, '3', 'periyar maniammai institute of science and technology ', '', 'bca', '2024', 7.52, '', 1, '2024-08-22 06:27:56', 0, NULL, 0, NULL, 1),
(27150, 20895, '3', 'Anna university ', '', 'B.E.', '2018', 6.50, '', 1, '2024-08-23 03:44:47', 1, '2024-08-23 06:36:57', 0, NULL, 0),
(27151, 20896, '4', 'Bharathidasan University', '', 'M. Sc', '2024', 9.32, '', 1, '2024-08-23 04:33:44', 0, NULL, 0, NULL, 1),
(27152, 20896, '3', 'Bharathidasan university', '', 'B. Sx', '2022', 68.00, '', 1, '2024-08-23 04:34:28', 0, NULL, 0, NULL, 1),
(27153, 20897, '1', 'STATE BOARD of SCHOOL EaxAMINATION. Namilnadu', '', '', '2017', 76.00, '', 1, '2024-08-23 05:14:46', 0, NULL, 0, NULL, 1),
(27154, 20897, '2', 'STATE BOARD Of SCHOOL EXAMINATION. Tamilnadu ', '', '', '2017', 61.00, '', 1, '2024-08-23 05:15:37', 0, NULL, 0, NULL, 1),
(27155, 20897, '3', 'Thiruvalluvar university ', '', 'B.Com', '2022', 75.00, '', 1, '2024-08-23 05:16:04', 0, NULL, 0, NULL, 1),
(27156, 20898, '4', 'Madras university ', '', 'Mba', '2024', 65.00, '', 1, '2024-08-23 05:21:18', 0, NULL, 0, NULL, 1),
(27157, 20900, '5', 'deemed ', '', 'btech ', '2022', 72.00, '', 1, '2024-08-23 05:38:46', 0, NULL, 0, NULL, 1),
(27158, 20901, '3', 'Madras university', '', 'B.com(corporate secretaryship) ', '2023', 86.00, '', 1, '2024-08-23 05:48:20', 0, NULL, 0, NULL, 1),
(27159, 20899, '4', 'Bharathidasan University ', '', 'MBA', '2021', 78.00, '', 1, '2024-08-23 05:53:27', 0, NULL, 0, NULL, 1),
(27160, 20895, '3', 'Anna university ', '', 'B.E.', '2018', 6.50, '', 1, '2024-08-23 06:38:00', 0, NULL, 0, NULL, 1),
(27161, 20903, '4', 'Madras University ', '', 'MSW', '2024', 70.00, '', 1, '2024-08-23 06:47:00', 0, NULL, 0, NULL, 1),
(27162, 20904, '3', 'madras university', '', 'BBa', '2024', 75.00, '', 1, '2024-08-23 07:09:39', 0, NULL, 0, NULL, 1),
(27163, 20906, '3', 'Madras University Chennai ', '', 'B.com', '2022', 85.00, '', 1, '2024-08-23 07:40:14', 0, NULL, 0, NULL, 1),
(27164, 20905, '3', 'BABHATHAVATSALAM MEMORIAL COLLEGE FOR WOMENS', '', 'BCOM cS', '2024', 60.00, '', 104, '2024-08-23 01:11:29', 0, NULL, 0, NULL, 1),
(27165, 20907, '3', 'Periyar university ', '', 'B.sc', '2015', 70.00, '', 1, '2024-08-23 09:03:59', 0, NULL, 0, NULL, 1),
(27166, 20908, '3', 'Manonmaniam Sundaranar University ', '', 'B.sc', '2022', 85.00, '', 1, '2024-08-23 09:09:31', 1, '2024-08-23 09:09:52', 0, NULL, 0),
(27167, 20908, '1', 'Govt girls higher secondary school ', '', '', '2017', 91.60, '', 1, '2024-08-23 09:10:22', 0, NULL, 0, NULL, 1),
(27168, 20908, '2', 'Govt girls higher secondary school ', '', '', '2019', 85.00, '', 1, '2024-08-23 09:10:42', 0, NULL, 0, NULL, 1),
(27169, 20908, '3', 'Manonmaniam Sundaranar University ', '', 'B.sc', '2022', 86.00, '', 1, '2024-08-23 09:11:03', 0, NULL, 0, NULL, 1),
(27170, 20902, '3', 'Deemed university', '', 'Bsc. Computer science', '2023', 8.80, '', 1, '2024-08-23 09:36:59', 0, NULL, 0, NULL, 1),
(27171, 20909, '3', 'Madras university ', '', 'B.com (G)', '2020', 70.00, '', 1, '2024-08-23 09:49:22', 0, NULL, 0, NULL, 1),
(27172, 20910, '3', 'Sri Sairam institute of technology ', '', 'Information technology ', '2021', 78.00, '', 1, '2024-08-23 10:56:14', 0, NULL, 0, NULL, 1),
(27173, 20910, '1', 'State board', '', '', '2017', 86.00, '', 1, '2024-08-23 10:57:04', 0, NULL, 0, NULL, 1),
(27174, 20911, '5', 'Chennai ', '', 'No', '2023', 100.00, '', 1, '2024-08-23 11:06:00', 0, NULL, 0, NULL, 1),
(27175, 20912, '3', 'srm university', '', 'b.com', '2022', 73.00, '', 1, '2024-08-24 04:37:47', 1, '2024-08-24 04:38:46', 0, NULL, 1),
(27176, 20912, '4', 'madras university', '', 'mba', '2024', 75.00, '', 1, '2024-08-24 04:39:24', 0, NULL, 0, NULL, 1),
(27177, 20889, '3', 'Bsc', '', 'Computer science ', '2024', 80.00, '', 1, '2024-08-24 04:45:57', 0, NULL, 0, NULL, 1),
(27178, 20914, '3', 'voorhees college vellore', '', 'bca', '2019', 70.00, '', 1, '2024-08-24 05:11:15', 0, NULL, 0, NULL, 1),
(27179, 20915, '4', 'Madras University ', '', 'M. A. Journalism and communication ', '2024', 82.00, '', 1, '2024-08-24 05:13:28', 0, NULL, 0, NULL, 1),
(27180, 20916, '4', 'Periyar manniammai Institute of science and technology', '', 'Master of computer science', '2023', 9.00, '', 1, '2024-08-24 05:13:49', 0, NULL, 0, NULL, 1),
(27181, 20915, '3', 'Madras University ', '', 'B. Com ', '2022', 72.00, '', 1, '2024-08-24 05:14:23', 1, '2024-08-24 05:16:27', 0, NULL, 1),
(27182, 20915, '2', 'State board ', '', '', '2019', 67.00, '', 1, '2024-08-24 05:15:03', 1, '2024-08-24 05:16:09', 0, NULL, 1),
(27183, 20913, '3', 'Anna University ', '', 'Civil engineering ', '2019', 62.00, '', 1, '2024-08-24 05:15:34', 0, NULL, 0, NULL, 1),
(27184, 20915, '1', 'State board ', '', '', '2017', 83.00, '', 1, '2024-08-24 05:15:41', 0, NULL, 0, NULL, 1),
(27185, 20917, '3', 'Yhiruthangal Nadar college ', '', 'B.com', '2022', 62.00, '', 1, '2024-08-24 05:20:04', 0, NULL, 0, NULL, 1),
(27186, 20918, '4', 'DG vaishnava', '', 'BBA', '2017', 81.00, '', 1, '2024-08-24 05:29:25', 0, NULL, 0, NULL, 1),
(27187, 20919, '3', 'Anna University ', '', 'BE', '2024', 75.00, '', 1, '2024-08-24 05:33:12', 0, NULL, 0, NULL, 1),
(27188, 20921, '3', 'Bharathidasan university ', '', 'BCA COMPUTER APPLICATION ', '2021', 80.00, '', 1, '2024-08-24 05:59:29', 0, NULL, 0, NULL, 1),
(27189, 20920, '4', 'Madras university', '', 'B.com (corporate Secretaryship)', '2024', 80.00, '', 1, '2024-08-24 06:06:59', 0, NULL, 0, NULL, 1),
(27190, 20920, '4', 'Madras university', '', 'B.com(corporate secretaryship)', '2024', 80.00, '', 1, '2024-08-24 06:07:53', 0, NULL, 0, NULL, 1),
(27191, 20922, '3', 'Madras university', '', 'B. Com(general) ', '2018', 64.00, '', 1, '2024-08-24 06:28:18', 0, NULL, 0, NULL, 1),
(27192, 17950, '3', 'Anna University ', '', 'B Tech IT', '2023', 7.50, '', 1, '2024-08-24 06:32:59', 0, NULL, 0, NULL, 1),
(27193, 20923, '3', 'Anna university', '', 'B. e', '2021', 70.00, '', 1, '2024-08-24 06:55:37', 0, NULL, 0, NULL, 1),
(27194, 20924, '4', 'Affiliated Madras University ', '', 'M.Sc.Mathematics', '2023', 7.90, '', 1, '2024-08-24 07:02:12', 0, NULL, 0, NULL, 1),
(27195, 20927, '3', 'Thiruvalluvar University ', '', 'BCA ', '2023', 84.00, '', 1, '2024-08-24 08:32:08', 0, NULL, 0, NULL, 1),
(27196, 20928, '4', 'Anna university ', '', 'BE', '2021', 7.67, '', 1, '2024-08-24 08:50:58', 0, NULL, 0, NULL, 1),
(27197, 20929, '3', 'St Joseph\'s University', '', 'Beachler of Arts', '2019', 35.00, '', 1, '2024-08-24 10:38:33', 0, NULL, 0, NULL, 1),
(27198, 20932, '3', 'University of Madras', '', 'Bachelor of business administration BBA', '2010', 65.00, '', 1, '2024-08-25 01:37:34', 0, NULL, 0, NULL, 1),
(27199, 20936, '3', 'Unversity', '', 'bCA', '2022', 85.00, '', 1, '2024-08-26 04:52:50', 0, NULL, 0, NULL, 1),
(27200, 20937, '3', 'ANNA UNIVERSITY', '', 'BE COMPUTER SCIENCE', '2018', 65.00, '', 1, '2024-08-26 04:54:46', 0, NULL, 0, NULL, 1),
(27201, 20938, '3', 'Avvm Sri Puspham College ', '', 'Bsc Physics ', '2023', 72.40, '', 1, '2024-08-26 05:05:20', 0, NULL, 0, NULL, 1),
(27202, 20940, '3', 'University of madras ', '', 'Bsc computer science ', '2022', 77.00, '', 1, '2024-08-26 05:23:39', 0, NULL, 0, NULL, 1),
(27203, 20939, '3', 'Anna university chennai', '', 'B.E CSE', '2015', 69.00, '', 1, '2024-08-26 05:24:40', 0, NULL, 0, NULL, 1),
(27204, 20941, '3', 'Akasc arts and science college ', '', 'Bca', '2024', 65.00, '', 1, '2024-08-26 05:34:08', 0, NULL, 0, NULL, 1),
(27205, 20941, '1', 'K.c.sanakaralinga Nadar higher secondary school ', '', '', '2019', 70.00, '', 1, '2024-08-26 05:34:49', 0, NULL, 0, NULL, 1),
(27206, 20941, '2', 'K.c.sankaralinga Nadar higher secondary school ', '', '', '2020', 68.00, '', 1, '2024-08-26 05:35:25', 0, NULL, 0, NULL, 1),
(27207, 20940, '2', '12th', '', '', '2019', 50.00, '', 1, '2024-08-26 05:36:55', 0, NULL, 0, NULL, 1),
(27208, 20940, '1', '10th', '', '', '2017', 80.00, '', 1, '2024-08-26 05:37:18', 0, NULL, 0, NULL, 1),
(27209, 20942, '3', 'Alagappa university ', '', 'B.sc., microbiology ', '2023', 71.00, '', 1, '2024-08-26 05:37:37', 0, NULL, 0, NULL, 1),
(27210, 20841, '3', 'University of Madras ', '', 'B.com ', '2024', 76.00, '', 1, '2024-08-26 05:44:37', 0, NULL, 0, NULL, 1),
(27211, 20943, '3', 'Algappa University ', '', 'M.com', '2024', 70.00, '', 1, '2024-08-26 05:46:54', 0, NULL, 0, NULL, 1),
(27212, 20946, '3', 'Anna university ', '', 'B.E(cse)', '2023', 65.00, '', 1, '2024-08-26 06:48:24', 0, NULL, 0, NULL, 1),
(27213, 20944, '3', 'University of Madras ', '', 'B.com Bank management ', '2022', 78.00, '', 1, '2024-08-26 07:23:29', 0, NULL, 0, NULL, 1),
(27214, 20948, '3', 'dr.mgr university', '', 'bba', '2023', 67.00, '', 1, '2024-08-26 07:24:59', 0, NULL, 0, NULL, 1),
(27215, 20949, '3', 'Government college of engineering', '', 'BE CSE', '2020', 6.20, '', 1, '2024-08-26 07:32:43', 0, NULL, 0, NULL, 1),
(27216, 20950, '4', 'Bharathidasan ', '', 'MBA', '2023', 78.00, '', 1, '2024-08-26 07:36:17', 0, NULL, 0, NULL, 1),
(27217, 20950, '4', 'bharathidasan university', '', 'MBA', '2023', 78.00, '', 1, '2024-08-26 07:39:31', 0, NULL, 0, NULL, 1),
(27218, 20952, '4', 'University ', '', 'M.com', '2022', 78.00, '', 1, '2024-08-26 09:20:20', 0, NULL, 0, NULL, 1),
(27219, 20953, '3', 'Madras University', '', 'BBA', '2017', 62.00, '', 1, '2024-08-26 09:53:43', 0, NULL, 0, NULL, 1),
(27220, 20956, '3', 'Madras University ', '', 'Bca', '2022', 80.00, '', 1, '2024-08-26 12:54:08', 0, NULL, 0, NULL, 1),
(27221, 20959, '3', 'Madras University ', '', 'BA Sociology ', '2023', 66.00, '', 1, '2024-08-27 04:39:05', 0, NULL, 0, NULL, 1),
(27222, 20958, '4', 'Bharathidasan university trichy', '', 'MA English literature', '2017', 62.00, '', 1, '2024-08-27 04:49:53', 0, NULL, 0, NULL, 1),
(27223, 20960, '3', 'Bannari Amman institute of technology ', '', 'BE Mechanical engineering ', '2021', 69.00, '', 1, '2024-08-27 05:05:03', 0, NULL, 0, NULL, 1),
(27224, 20962, '3', 'Anna University ', '', 'B.com', '2020', 92.00, '', 1, '2024-08-27 05:14:31', 0, NULL, 0, NULL, 1),
(27225, 20963, '3', 'University of Madras ', '', 'B.sc', '2020', 85.00, '', 1, '2024-08-27 05:14:44', 0, NULL, 0, NULL, 1),
(27226, 20935, '4', 'Madras University ', '', 'MBA HR ', '2023', 62.00, '', 1, '2024-08-27 05:20:12', 0, NULL, 0, NULL, 1),
(27227, 20961, '2', 'University of Madras ', '', '', '2019', 72.00, '', 1, '2024-08-27 05:31:37', 0, NULL, 0, NULL, 1),
(27228, 20966, '4', 'Bhaktavatsalam Memorial College For Women’s ', '', 'M.A HRM ', '2024', 60.00, '', 1, '2024-08-27 06:06:31', 0, NULL, 0, NULL, 1),
(27229, 20967, '4', 'University of madras', '', 'MSc biochemistry ', '2023', 70.00, '', 1, '2024-08-27 06:06:43', 0, NULL, 0, NULL, 1),
(27230, 20968, '4', 'Madras University ', '', 'M.Sc physics ', '2023', 75.00, '', 1, '2024-08-27 06:39:25', 0, NULL, 0, NULL, 1),
(27231, 20969, '4', 'Annamalai university ', '', 'MA', '2022', 59.00, '', 1, '2024-08-27 07:01:50', 0, NULL, 0, NULL, 1),
(27232, 20970, '4', 'Veltech University ', '', 'MBA Human Resource management ', '2024', 82.00, '', 1, '2024-08-27 07:19:48', 0, NULL, 0, NULL, 1),
(27233, 20970, '3', 'Anna University ', '', 'BE Mechanical Engineering ', '2018', 62.00, '', 1, '2024-08-27 07:20:40', 0, NULL, 0, NULL, 1),
(27234, 20970, '2', 'State board ', '', '', '2014', 79.00, '', 1, '2024-08-27 07:21:13', 0, NULL, 0, NULL, 1),
(27235, 20970, '1', 'CBSE Board ', '', '', '2012', 74.00, '', 1, '2024-08-27 07:21:38', 0, NULL, 0, NULL, 1),
(27236, 20971, '3', 'Madras university', '', 'B. Com', '2021', 83.00, '', 1, '2024-08-27 07:24:59', 0, NULL, 0, NULL, 1),
(27237, 20971, '4', 'Madras university', '', 'B. Com', '2021', 83.00, '', 1, '2024-08-27 07:30:31', 0, NULL, 0, NULL, 1),
(27238, 20971, '4', 'Madras university', '', 'B. Com', '2021', 83.00, '', 1, '2024-08-27 07:31:18', 0, NULL, 0, NULL, 1),
(27239, 20971, '4', 'Madras university', '', 'B. Com', '2021', 83.00, '', 1, '2024-08-27 07:31:49', 0, NULL, 0, NULL, 1),
(27240, 20972, '3', 'M. Kumarasamy college of engineering', '', 'B. E (Mechanical engineering) ', '2022', 7.20, '', 1, '2024-08-27 08:04:40', 0, NULL, 0, NULL, 1),
(27241, 20964, '3', 'autonomous', '', '.com', '2024', 60.00, '', 1, '2024-08-27 08:56:37', 0, NULL, 0, NULL, 1),
(27242, 20973, '3', 'University ', '', 'BTech e', '2023', 70.00, '', 1, '2024-08-27 09:03:52', 0, NULL, 0, NULL, 1),
(27243, 20974, '5', 'University ', '', 'NA', '2016', 1.00, '', 1, '2024-08-27 09:30:39', 0, NULL, 0, NULL, 1),
(27244, 20975, '3', 'university of madras ', '', 'b.com ', '2025', 74.00, '', 1, '2024-08-27 09:49:50', 0, NULL, 0, NULL, 1),
(27245, 20977, '3', 'Autonomous ', '', 'B.A ', '2021', 78.00, '', 1, '2024-08-27 10:16:32', 0, NULL, 0, NULL, 1),
(27246, 20976, '3', 'Anna University ', '', 'B. E', '2023', 70.00, '', 1, '2024-08-27 10:21:34', 0, NULL, 0, NULL, 1),
(27247, 20965, '3', 'Anna University ', '', 'BE', '2020', 81.00, '', 1, '2024-08-27 10:52:53', 0, NULL, 0, NULL, 1),
(27248, 20979, '3', 'Anna adarsh college for women ', '', 'Bcom computer applications ', '2023', 73.00, '', 1, '2024-08-27 12:27:11', 0, NULL, 0, NULL, 1),
(27249, 20978, '3', 'Sss Jain college ', '', 'Bca', '2016', 65.00, '', 1, '2024-08-27 12:28:53', 0, NULL, 0, NULL, 1),
(27250, 20980, '3', 'Anna University ', '', 'B.E', '2024', 82.00, '', 1, '2024-08-27 01:01:20', 0, NULL, 0, NULL, 1),
(27251, 20980, '2', 'State Board', '', '', '2020', 63.00, '', 1, '2024-08-27 01:01:53', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27252, 20983, '4', 'bharthidasan', '', 'mba', '2024', 74.00, '', 1, '2024-08-28 04:44:28', 0, NULL, 0, NULL, 1),
(27253, 20984, '4', 'Annamalai University ', '', 'MBA Hr', '2023', 75.00, '', 1, '2024-08-28 05:00:00', 0, NULL, 0, NULL, 1),
(27254, 20986, '5', 'University ', '', 'DCE', '2018', 78.00, '', 1, '2024-08-28 05:11:34', 0, NULL, 0, NULL, 1),
(27255, 20985, '3', 'Madras University', '', 'BA Economics ', '2024', 61.00, '', 1, '2024-08-28 05:12:55', 0, NULL, 0, NULL, 1),
(27256, 20988, '3', 'adr un ', '', 'ba economics', '2022', 60.00, '', 1, '2024-08-28 05:31:22', 0, NULL, 0, NULL, 1),
(27257, 20987, '3', 'university of madras', '', 'bba', '2023', 72.00, '', 1, '2024-08-28 05:32:22', 0, NULL, 0, NULL, 1),
(27258, 20981, '1', 'State board ', '', '', '2014', 95.00, '', 1, '2024-08-28 05:40:32', 0, NULL, 0, NULL, 1),
(27259, 20981, '2', 'State board ', '', '', '2016', 89.00, '', 1, '2024-08-28 05:40:49', 0, NULL, 0, NULL, 1),
(27260, 20981, '3', 'Anna University ', '', 'BE', '2020', 81.00, '', 1, '2024-08-28 05:41:06', 0, NULL, 0, NULL, 1),
(27261, 20989, '3', 'Madras University ', '', 'B.com (Genral)', '2022', 75.00, '', 1, '2024-08-28 06:15:22', 0, NULL, 0, NULL, 1),
(27262, 20989, '1', 'State board ', '', '', '2017', 73.00, '', 1, '2024-08-28 06:16:33', 0, NULL, 0, NULL, 1),
(27263, 20990, '3', 'Pondicherry University ', '', 'B.tech', '2021', 68.00, '', 1, '2024-08-28 06:17:43', 0, NULL, 0, NULL, 1),
(27264, 20784, '1', 'State board', '', '', '2017', 70.00, '', 1, '2024-08-28 06:24:53', 0, NULL, 0, NULL, 1),
(27265, 20784, '2', 'State board ', '', '', '2019', 75.00, '', 1, '2024-08-28 06:28:08', 0, NULL, 0, NULL, 1),
(27266, 20784, '3', 'Madras University ', '', 'Bcom ', '2022', 80.00, '', 1, '2024-08-28 06:28:43', 0, NULL, 0, NULL, 1),
(27267, 20991, '3', 'Justice Basheer Ahmed Syed College for women', '', 'B. Com General', '2022', 80.00, '', 1, '2024-08-28 06:36:39', 0, NULL, 0, NULL, 1),
(27268, 20989, '2', 'State board ', '', '', '2019', 75.00, '', 1, '2024-08-28 06:52:49', 0, NULL, 0, NULL, 1),
(27269, 20992, '4', 'Anna University ', '', 'MBA hr', '2023', 70.00, '', 1, '2024-08-28 07:06:13', 0, NULL, 0, NULL, 1),
(27270, 20995, '3', 'IIKM business school ', '', 'BBA International business ', '2025', 8.20, '', 1, '2024-08-28 07:06:35', 0, NULL, 0, NULL, 1),
(27271, 20994, '3', 'Bharathidasan university ', '', 'Bsc computer science ', '2023', 67.00, '', 1, '2024-08-28 07:11:41', 0, NULL, 0, NULL, 1),
(27272, 20993, '3', 'Thiruvalluvar university', '', 'B. A', '2023', 70.00, '', 1, '2024-08-28 07:14:09', 0, NULL, 0, NULL, 1),
(27273, 20997, '3', 'madras university', '', 'bba', '2024', 70.00, '', 1, '2024-08-28 07:14:12', 0, NULL, 0, NULL, 1),
(27274, 20996, '3', 'Atonomas', '', 'BBA', '2024', 70.00, '', 1, '2024-08-28 07:25:09', 0, NULL, 0, NULL, 1),
(27275, 20998, '5', 'Karnataka state ', '', 'B.sc', '2019', 81.00, '', 1, '2024-08-28 08:53:08', 0, NULL, 0, NULL, 1),
(27276, 21001, '4', 'Madras University ', '', 'MBA', '2023', 72.50, '', 1, '2024-08-28 10:11:26', 0, NULL, 0, NULL, 1),
(27277, 21000, '4', 'University of madras ', '', 'MBA', '2023', 6.85, '', 1, '2024-08-28 10:11:46', 0, NULL, 0, NULL, 1),
(27278, 21001, '3', 'Anna University ', '', 'BE', '2014', 70.00, '', 1, '2024-08-28 10:12:03', 0, NULL, 0, NULL, 1),
(27279, 21000, '3', 'Sri sairam engineering college ', '', 'B. E', '2020', 6.75, '', 1, '2024-08-28 10:12:37', 0, NULL, 0, NULL, 1),
(27280, 20999, '3', 'Dr. M. G. R university', '', 'B. Com general', '2024', 64.00, '', 1, '2024-08-28 01:00:48', 0, NULL, 0, NULL, 1),
(27281, 21003, '3', 'Madras university', '', 'B.com(computer application)', '2020', 63.00, '', 1, '2024-08-28 01:05:58', 0, NULL, 0, NULL, 1),
(27282, 21003, '1', 'State board', '', '', '2015', 80.00, '', 1, '2024-08-28 01:07:05', 1, '2024-08-28 01:08:36', 0, NULL, 1),
(27283, 21004, '3', 'University of Madras (A.M.Jain college)', '', 'B.com (General)', '2024', 72.00, '', 1, '2024-08-28 01:07:48', 0, NULL, 0, NULL, 1),
(27284, 21003, '2', 'State board', '', '', '2017', 70.00, '', 1, '2024-08-28 01:09:17', 0, NULL, 0, NULL, 1),
(27285, 21005, '3', 'Madras University ', '', 'Ba', '2020', 75.00, '', 1, '2024-08-28 01:57:17', 0, NULL, 0, NULL, 1),
(27286, 21008, '3', 'BHARATHI DHASAN UNIVERSITY ', '', 'B.SC', '2023', 71.00, '', 1, '2024-08-29 04:16:22', 0, NULL, 0, NULL, 1),
(27287, 21009, '4', 'anna university', '', 'master of business administration', '2023', 64.00, '', 1, '2024-08-29 04:23:31', 1, '2024-08-29 04:29:03', 0, NULL, 0),
(27288, 21009, '4', 'anna university', '', 'master of business administration', '2023', 64.00, '', 1, '2024-08-29 04:25:05', 1, '2024-08-29 04:29:08', 0, NULL, 0),
(27289, 21009, '4', 'anna university ', '', 'master of business administration ', '2023', 64.00, '', 1, '2024-08-29 04:26:07', 1, '2024-08-29 04:29:12', 0, NULL, 0),
(27290, 21009, '4', 'anna university ', '', 'master of business administration', '2023', 64.00, '', 1, '2024-08-29 04:27:07', 1, '2024-08-29 04:29:16', 0, NULL, 0),
(27291, 21009, '4', 'anna university', '', 'master of business administration', '2023', 64.00, '', 1, '2024-08-29 04:28:12', 0, NULL, 0, NULL, 1),
(27292, 21010, '3', 'Sri kanyaka parameswari arts and science college for women\'s ', '', 'BBA', '2022', 70.00, '', 1, '2024-08-29 04:34:34', 0, NULL, 0, NULL, 1),
(27293, 21010, '4', 'Madras University ', '', 'Mba hrm', '2024', 60.00, '', 1, '2024-08-29 04:34:58', 0, NULL, 0, NULL, 1),
(27294, 21013, '3', 'madras university ', '', 'ba economics', '2019', 58.00, '', 1, '2024-08-29 05:03:41', 1, '2024-08-29 05:05:24', 0, NULL, 1),
(27295, 21013, '2', 'madras university', '', '', '2016', 56.00, '', 1, '2024-08-29 05:04:24', 0, NULL, 0, NULL, 1),
(27296, 21013, '1', 'madras university', '', '', '2014', 56.00, '', 1, '2024-08-29 05:04:47', 0, NULL, 0, NULL, 1),
(27297, 21011, '4', 'Justice basheer Ahmed Sayed college ', '', 'Applied microbiology ', '2024', 73.00, '', 1, '2024-08-29 05:06:01', 0, NULL, 0, NULL, 1),
(27298, 21012, '4', 'Justice basheer Ahmed Sayed college ', '', 'Applied microbiology ', '2024', 71.00, '', 1, '2024-08-29 05:11:10', 0, NULL, 0, NULL, 1),
(27299, 21014, '3', 'medras unniversity', '', 'bsc viscom', '2023', 65.00, '', 1, '2024-08-29 05:17:15', 0, NULL, 0, NULL, 1),
(27300, 21015, '4', 'Deemed University ', '', 'Msc', '2024', 89.00, '', 1, '2024-08-29 05:17:56', 0, NULL, 0, NULL, 1),
(27301, 21016, '3', 'Autonomous', '', 'BA', '2024', 75.00, '', 1, '2024-08-29 05:19:25', 0, NULL, 0, NULL, 1),
(27302, 21002, '3', 'Madurai kamarajar university ', '', 'B.sc ', '2024', 62.00, '', 1, '2024-08-29 05:30:28', 0, NULL, 0, NULL, 1),
(27303, 21017, '3', 'Bharathiar university ', '', 'BCA', '2023', 74.00, '', 1, '2024-08-29 05:52:54', 0, NULL, 0, NULL, 1),
(27304, 21019, '3', 'Madras University ', '', 'B.A', '2021', 68.00, '', 1, '2024-08-29 06:09:28', 0, NULL, 0, NULL, 1),
(27305, 21020, '3', 'Rayalaseema University ', '', ' B com computers ', '2023', 60.00, '', 1, '2024-08-29 06:13:22', 0, NULL, 0, NULL, 1),
(27306, 21022, '3', 'Bangalore university', '', 'B.Com', '2016', 42.00, '', 1, '2024-08-29 06:17:18', 0, NULL, 0, NULL, 1),
(27307, 21023, '3', 'Quaid-e-millath government college for women ', '', 'Bsc chemistry ', '2023', 81.00, '', 1, '2024-08-29 06:20:25', 0, NULL, 0, NULL, 1),
(27308, 21021, '3', 'Sri Venkateswara University tirupathi ', '', '', '2023', 67.00, '', 1, '2024-08-29 06:31:53', 0, NULL, 0, NULL, 1),
(27309, 21018, '3', 'Annamalai university ', '', 'Bsc biochemistry ', '2024', 73.00, '', 1, '2024-08-29 06:48:39', 0, NULL, 0, NULL, 1),
(27310, 21024, '4', 'Anna University ', '', 'MBA ', '2024', 91.00, '', 1, '2024-08-29 06:55:44', 0, NULL, 0, NULL, 1),
(27311, 21025, '3', 'Alagappa University ', '', '', '2019', 50.00, '', 1, '2024-08-29 06:55:44', 0, NULL, 0, NULL, 1),
(27312, 21025, '5', 'Cyber Soft Solution gvt of India ', '', 'HDCA / Tally', '2022', 85.00, '', 1, '2024-08-29 06:56:41', 0, NULL, 0, NULL, 1),
(27313, 21028, '3', 'Anna university ', '', 'BE.EEE', '2016', 67.00, '', 1, '2024-08-29 07:05:50', 0, NULL, 0, NULL, 1),
(27314, 21029, '3', 'Madras University ', '', 'B.A', '2021', 70.00, '', 1, '2024-08-29 07:10:50', 0, NULL, 0, NULL, 1),
(27315, 21031, '3', 'Madras University ', '', 'bA.corporate Economics ', '2022', 68.00, '', 1, '2024-08-29 07:26:02', 0, NULL, 0, NULL, 1),
(27316, 21027, '3', 'Arumugam pillai seethai ammal college of arts and science ', '', 'B.sc information technology ', '2020', 87.00, '', 1, '2024-08-29 07:40:36', 0, NULL, 0, NULL, 1),
(27317, 21033, '3', 'University of Madras ', '', 'B.com (Information system management)', '2023', 75.00, '', 1, '2024-08-29 08:26:28', 0, NULL, 0, NULL, 1),
(27318, 21030, '3', 'Madras university', '', 'B.Com', '2024', 70.00, '', 1, '2024-08-29 08:50:24', 0, NULL, 0, NULL, 1),
(27319, 21035, '3', 'Vels University ', '', 'B.com ( General)', '2022', 75.00, '', 1, '2024-08-29 09:59:20', 0, NULL, 0, NULL, 1),
(27320, 21034, '3', 'University of Madras ', '', 'B.A. English literature ', '2023', 60.00, '', 1, '2024-08-29 10:56:46', 0, NULL, 0, NULL, 1),
(27321, 21039, '4', 'Priyadarshini Engineering college , Vaniyambadi ', '', 'Master of business Administration ', '2024', 85.00, '', 1, '2024-08-30 03:23:29', 1, '2024-08-30 03:28:35', 0, NULL, 0),
(27322, 21039, '3', 'Don Bosco College (Co-ed), Yelagiri hills ', '', 'Bachelor of Business Administration ', '2022', 85.00, '', 1, '2024-08-30 03:24:34', 1, '2024-08-30 03:28:42', 0, NULL, 0),
(27323, 21039, '2', 'St.Charles Matric Girls Hr.Sec.School, Tirupattur ', '', '', '2019', 74.50, '', 1, '2024-08-30 03:26:54', 1, '2024-08-30 03:28:30', 0, NULL, 0),
(27324, 21039, '1', 'Infant Jesus Matric School, Jolarpet ', '', '', '2017', 85.00, '', 1, '2024-08-30 03:28:02', 0, NULL, 0, NULL, 1),
(27325, 21039, '2', 'St.Charles Matric Girls Hr.Sec.School, Tirupattur ', '', '', '2019', 74.50, '', 1, '2024-08-30 03:30:49', 0, NULL, 0, NULL, 1),
(27326, 21039, '3', 'Don Bosco College (Co-ed), Yelagiri hills ', '', 'Bachelor of Business Administration ', '2022', 85.00, '', 1, '2024-08-30 03:32:20', 0, NULL, 0, NULL, 1),
(27327, 21039, '4', 'Priyadarshini Engineering college, Vaniyambadi ', '', 'Master of business Administration ', '2024', 85.00, '', 1, '2024-08-30 03:33:08', 0, NULL, 0, NULL, 1),
(27328, 21040, '3', 'University of Madras ', '', 'BBA', '2024', 73.00, '', 1, '2024-08-30 04:30:40', 1, '2024-08-30 04:32:23', 0, NULL, 0),
(27329, 21040, '1', 'Kings matriculation higher secondary school ', '', '', '2019', 70.00, '', 1, '2024-08-30 04:31:36', 1, '2024-08-30 04:33:06', 0, NULL, 1),
(27330, 21040, '2', 'Kings matriculation higher secondary school ', '', '', '2021', 71.00, '', 1, '2024-08-30 04:33:30', 0, NULL, 0, NULL, 1),
(27331, 21040, '3', 'University of Madras ', '', 'BBA - BUSINESS ADMINISTRATION', '2024', 73.00, '', 1, '2024-08-30 04:33:53', 0, NULL, 0, NULL, 1),
(27332, 21041, '3', 'Anna University ', '', 'BE', '2024', 61.00, '', 1, '2024-08-30 04:38:07', 0, NULL, 0, NULL, 1),
(27333, 21042, '3', 'St.Peter\'s College of Engineering and Technology ', '', 'B.E', '2024', 76.00, '', 1, '2024-08-30 04:43:03', 0, NULL, 0, NULL, 1),
(27334, 21043, '3', 'University of Madras ', '', 'BA CRIMINOLOGY AND POLICE ADMINISTRATION ', '2024', 60.00, '', 1, '2024-08-30 04:50:37', 0, NULL, 0, NULL, 1),
(27335, 21045, '3', 'Anna university', '', 'BE -  Mechanical', '2020', 68.00, '', 1, '2024-08-30 05:56:42', 0, NULL, 0, NULL, 1),
(27336, 21045, '1', 'Stateboard', '', '', '2012', 70.00, '', 1, '2024-08-30 05:57:33', 0, NULL, 0, NULL, 1),
(27337, 21045, '5', 'Technical board', '', 'Diploma Engineering - Mechanical', '2015', 70.00, '', 1, '2024-08-30 05:58:58', 0, NULL, 0, NULL, 1),
(27338, 21046, '3', 'Madha arts and science collage ', '', 'B. Com(general)', '2023', 70.00, '', 1, '2024-08-30 06:08:08', 0, NULL, 0, NULL, 1),
(27339, 21046, '2', 'MMA Govt HR sEC school ', '', '', '2020', 50.00, '', 1, '2024-08-30 06:11:40', 0, NULL, 0, NULL, 1),
(27340, 21046, '1', 'MMA Govt HR SEC school ', '', '', '2018', 63.00, '', 1, '2024-08-30 06:12:20', 0, NULL, 0, NULL, 1),
(27341, 21047, '5', 'University ', '', 'B.com', '2024', 81.00, '', 1, '2024-08-30 06:47:37', 0, NULL, 0, NULL, 1),
(27342, 21048, '3', 'Madras University ', '', 'B.Com', '2022', 85.00, '', 1, '2024-08-30 07:19:51', 0, NULL, 0, NULL, 1),
(27343, 21049, '3', 'Bangalore University ', '', 'Bachelor of Commerce ', '2024', 63.00, '', 1, '2024-08-30 07:34:14', 0, NULL, 0, NULL, 1),
(27344, 21050, '3', 'Bengaluru University ', '', 'Bachelor of commerce ', '2024', 69.00, '', 1, '2024-08-30 07:34:15', 0, NULL, 0, NULL, 1),
(27345, 21051, '3', 'Madras University ', '', 'B.com', '2022', 70.00, '', 1, '2024-08-30 08:04:03', 0, NULL, 0, NULL, 1),
(27346, 21052, '3', 'University of madras', '', 'BCA', '2024', 80.00, '', 1, '2024-08-30 08:27:19', 0, NULL, 0, NULL, 1),
(27347, 21055, '3', 'University of madras', '', 'b.com', '2024', 70.00, '', 1, '2024-08-30 09:13:30', 0, NULL, 0, NULL, 1),
(27348, 21054, '3', 'university', '', 'bcom cs', '2024', 72.00, '', 1, '2024-08-30 09:14:13', 0, NULL, 0, NULL, 1),
(27349, 21056, '3', 'BHARATHIDHASAN UNIVERSITY ', '', 'Bsc computer science ', '2019', 74.00, '', 1, '2024-08-30 10:25:32', 1, '2024-08-30 10:26:51', 0, NULL, 0),
(27350, 21056, '1', 'STATE BOARD ', '', '', '2014', 64.00, '', 1, '2024-08-30 10:29:47', 0, NULL, 0, NULL, 1),
(27351, 21057, '3', 'Anna University ', '', 'BE. cse ', '2024', 7.00, '', 1, '2024-08-30 10:30:05', 0, NULL, 0, NULL, 1),
(27352, 21056, '2', 'STATE BOARD ', '', '', '2016', 59.00, '', 1, '2024-08-30 10:30:21', 0, NULL, 0, NULL, 1),
(27353, 21056, '3', 'BHARATHIDHASAN UNIVERSITY ', '', 'BSc computer science ', '2019', 74.00, '', 1, '2024-08-30 10:30:56', 0, NULL, 0, NULL, 1),
(27354, 21058, '3', 'Bangalore ', '', 'B.com', '2022', 75.00, '', 1, '2024-08-30 11:02:03', 0, NULL, 0, NULL, 1),
(27355, 15043, '3', 'Madras university ', '', 'BA English literature ', '2021', 75.00, '', 1, '2024-08-30 12:53:59', 0, NULL, 0, NULL, 1),
(27356, 21060, '3', 'University of Madras ', '', 'BCA', '2022', 82.00, '', 1, '2024-08-30 01:14:39', 0, NULL, 0, NULL, 1),
(27357, 21059, '3', 'University of Madras ', '', 'BCA', '2024', 78.20, '', 1, '2024-08-30 03:33:23', 0, NULL, 0, NULL, 1),
(27358, 21062, '4', 'Baking industry training college Singapore ', '', 'PGDRSCM ', '2024', 96.00, '', 1, '2024-08-31 05:04:06', 0, NULL, 0, NULL, 1),
(27359, 21062, '3', 'Prist University ', '', 'Mechanical engineering ', '2021', 80.00, '', 1, '2024-08-31 05:04:34', 0, NULL, 0, NULL, 1),
(27360, 21063, '3', 'Madras University (chellammal women\'s college)', '', 'B.Com general ', '2023', 77.00, '', 1, '2024-08-31 05:27:42', 0, NULL, 0, NULL, 1),
(27361, 21064, '3', 'Anna university', '', 'B. E', '2017', 61.00, '', 1, '2024-08-31 05:44:15', 0, NULL, 0, NULL, 1),
(27362, 21066, '4', 'Madras University ', '', 'Master of commerce ', '2024', 81.00, '', 1, '2024-08-31 06:46:48', 0, NULL, 0, NULL, 1),
(27363, 21067, '3', 'D.b jain college Thoraipakkam ', '', 'B.com accounting and finance ', '2024', 69.00, '', 1, '2024-08-31 06:57:49', 0, NULL, 0, NULL, 1),
(27364, 21069, '3', 'Golden valley integrated campus ', '', 'B.tech ', '2022', 70.00, '', 1, '2024-08-31 07:12:59', 0, NULL, 0, NULL, 1),
(27365, 21070, '3', 'Bharathidasan university ', '', 'BBA', '2023', 69.70, '', 1, '2024-08-31 01:51:13', 0, NULL, 0, NULL, 1),
(27366, 21071, '3', 'anna university', '', 'electricals and electronics Engineering ', '2021', 80.00, '', 1, '2024-09-01 06:52:16', 0, NULL, 0, NULL, 1),
(27367, 21072, '4', 'Madras University ', '', 'M.com (commerce)', '2023', 79.00, '', 1, '2024-09-01 05:32:06', 0, NULL, 0, NULL, 1),
(27368, 21053, '4', 'Madras University ', '', 'M com', '2024', 80.00, '', 1, '2024-09-02 02:41:11', 0, NULL, 0, NULL, 1),
(27369, 21073, '3', 'Anna University ', '', 'BE', '2018', 70.00, '', 1, '2024-09-02 04:24:21', 0, NULL, 0, NULL, 1),
(27370, 21074, '3', 'Bharathiyar university ', '', 'B.com (cA)', '2019', 6.50, '', 1, '2024-09-02 04:43:03', 0, NULL, 0, NULL, 1),
(27371, 21075, '5', 'PKV INSTTUTIONS OF FARAMEDICAL', '', 'No', '2024', 85.00, '', 1, '2024-09-02 04:45:40', 0, NULL, 0, NULL, 1),
(27372, 21074, '1', 'state board', '', '', '2014', 41.00, '', 1, '2024-09-02 05:00:25', 0, NULL, 0, NULL, 1),
(27373, 21074, '2', 'state board', '', '', '2016', 73.00, '', 1, '2024-09-02 05:00:54', 0, NULL, 0, NULL, 1),
(27374, 21078, '4', 'srm university', '', 'mba', '2023', 8.41, '', 1, '2024-09-02 05:07:05', 0, NULL, 0, NULL, 1),
(27375, 21076, '4', 'M. Kumaraswamy college of engineering ', '', 'Electronics and instrumentation ', '2023', 8.15, '', 1, '2024-09-02 05:07:22', 0, NULL, 0, NULL, 1),
(27376, 21076, '2', 'Cheran matriculation school ', '', '', '2019', 63.00, '', 1, '2024-09-02 05:08:46', 0, NULL, 0, NULL, 1),
(27377, 21076, '1', 'Cheran matriculation school ', '', '', '2017', 75.00, '', 1, '2024-09-02 05:09:16', 0, NULL, 0, NULL, 1),
(27378, 21077, '3', 'AnnaUniversity', '', 'BE', '2024', 60.00, '', 1, '2024-09-02 05:13:32', 0, NULL, 0, NULL, 1),
(27379, 21081, '3', 'Madras University ', '', '', '2022', 75.00, '', 1, '2024-09-02 05:23:43', 0, NULL, 0, NULL, 1),
(27380, 21082, '1', 'board', '', '', '2019', 55.00, '', 1, '2024-09-02 05:27:45', 0, NULL, 0, NULL, 1),
(27381, 21083, '3', 'Mahalakshmi Women\'s College of Arts and science ', '', 'B.C.A', '2024', 69.00, '', 1, '2024-09-02 05:27:56', 0, NULL, 0, NULL, 1),
(27382, 21079, '3', 'university', '', 'bcom cs', '2023', 60.00, '', 1, '2024-09-02 05:32:49', 0, NULL, 0, NULL, 1),
(27383, 21084, '4', 'University ', '', 'Msc computer science ', '2024', 73.00, '', 1, '2024-09-02 05:32:59', 0, NULL, 0, NULL, 1),
(27384, 21087, '3', 'Anna University ', '', 'B.E', '2021', 78.00, '', 1, '2024-09-02 05:35:27', 0, NULL, 0, NULL, 1),
(27385, 21085, '3', 'Madras University ', '', 'B.A.Economics', '2024', 68.00, '', 1, '2024-09-02 05:37:20', 0, NULL, 0, NULL, 1),
(27386, 21080, '3', 'Madras University ', '', 'B.com', '2024', 60.00, '', 1, '2024-09-02 05:37:35', 0, NULL, 0, NULL, 1),
(27387, 21088, '4', 'Meenakshi college of engineering', '', 'MBA', '2024', 69.50, '', 1, '2024-09-02 06:16:13', 0, NULL, 0, NULL, 1),
(27388, 21086, '4', 'Anna University ', '', 'MBA', '2024', 75.20, '', 1, '2024-09-02 06:27:55', 0, NULL, 0, NULL, 1),
(27389, 21089, '3', 'Thiruvalluvar University ', '', 'Bachelor of Business administration (Computer appl', '2023', 74.30, '', 1, '2024-09-02 06:28:06', 0, NULL, 0, NULL, 1),
(27390, 21086, '4', 'Anna University ', '', 'MBA', '2024', 75.20, '', 1, '2024-09-02 06:28:24', 0, NULL, 0, NULL, 1),
(27391, 21090, '4', 'Anna university', '', 'MBA', '2024', 70.00, '', 1, '2024-09-02 06:32:04', 0, NULL, 0, NULL, 1),
(27392, 21092, '3', 'Anna university', '', 'Bachelor of Technology', '2024', 80.00, '', 1, '2024-09-02 06:39:04', 0, NULL, 0, NULL, 1),
(27393, 21093, '4', 'Anna unniversity', '', 'mba', '2024', 73.00, '', 1, '2024-09-02 06:44:10', 0, NULL, 0, NULL, 1),
(27394, 21095, '3', 'Anna university', '', 'Bachelor of engineering', '2024', 80.00, '', 1, '2024-09-02 06:47:17', 0, NULL, 0, NULL, 1),
(27395, 21096, '3', 'EASA college of engineering and technology ', '', 'B.tech IT', '2023', 71.73, '', 1, '2024-09-02 07:09:50', 0, NULL, 0, NULL, 1),
(27396, 21096, '2', 'Sri Saraswati vidyalaya matric hr sec school ', '', '', '2019', 64.00, '', 1, '2024-09-02 07:11:06', 1, '2024-09-02 07:12:03', 0, NULL, 1),
(27397, 21096, '1', 'Sri Saraswati vidyalaya matric hr sec school ', '', '', '2017', 84.00, '', 1, '2024-09-02 07:12:21', 0, NULL, 0, NULL, 1),
(27398, 21097, '3', 'Anna university ', '', 'BE (ECE)', '2021', 78.90, '', 1, '2024-09-02 07:41:21', 0, NULL, 0, NULL, 1),
(27399, 21098, '3', 'Madras university', '', 'B.com', '2022', 80.00, '', 1, '2024-09-02 07:51:53', 0, NULL, 0, NULL, 1),
(27400, 21100, '4', 'University ', '', 'MBA', '2024', 80.00, '', 1, '2024-09-02 08:18:09', 0, NULL, 0, NULL, 1),
(27401, 21099, '4', 'University ', '', 'MBA ', '2023', 70.00, '', 1, '2024-09-02 08:21:24', 0, NULL, 0, NULL, 1),
(27402, 21101, '3', 'Anna University ', '', 'B E', '2020', 8.03, '', 1, '2024-09-02 09:09:52', 0, NULL, 0, NULL, 1),
(27403, 21103, '3', 'anna university ', '', 'btech information technology', '2023', 65.00, '', 1, '2024-09-02 09:31:31', 0, NULL, 0, NULL, 1),
(27404, 21102, '4', 'Panimalar engineering college', '', 'MBA', '2021', 80.00, '', 1, '2024-09-02 09:34:11', 0, NULL, 0, NULL, 1),
(27405, 21105, '3', 'Board', '', 'BE', '2023', 7.58, '', 1, '2024-09-02 10:19:35', 0, NULL, 0, NULL, 1),
(27406, 21105, '2', 'Board', '', 'BE', '2017', 82.00, '', 1, '2024-09-02 10:27:43', 1, '2024-09-02 10:29:11', 0, NULL, 0),
(27407, 21105, '1', 'Board', '', '', '2019', 52.00, '', 1, '2024-09-02 10:30:03', 1, '2024-09-02 10:30:56', 0, NULL, 1),
(27408, 21105, '2', 'Board', '', '', '2017', 82.00, '', 1, '2024-09-02 10:31:47', 0, NULL, 0, NULL, 1),
(27409, 21106, '3', 'Anna University ', '', 'B.Tech', '2016', 7.90, '', 1, '2024-09-02 10:42:27', 0, NULL, 0, NULL, 1),
(27410, 21106, '2', 'Matric', '', '', '2012', 85.00, '', 1, '2024-09-02 10:43:13', 0, NULL, 0, NULL, 1),
(27411, 21108, '3', 'banglore north university', '', 'bba', '2023', 69.00, '', 1, '2024-09-02 01:27:39', 0, NULL, 0, NULL, 1),
(27412, 21112, '4', 'Dr. M.G.R. Educational and Research Institute ', '', 'MBA-HRM', '2025', 70.00, '', 1, '2024-09-03 04:45:46', 0, NULL, 0, NULL, 1),
(27413, 21115, '3', 'PERIYAR UNIVERSITY ', '', 'Bsc computer Science ', '2023', 7.80, '', 1, '2024-09-03 04:50:43', 0, NULL, 0, NULL, 1),
(27414, 21114, '3', 'University ', '', 'BCA', '2019', 59.00, '', 1, '2024-09-03 04:53:09', 0, NULL, 0, NULL, 1),
(27415, 21116, '3', 'Anna University ', '', 'BE', '2024', 76.00, '', 1, '2024-09-03 05:09:09', 0, NULL, 0, NULL, 1),
(27416, 21117, '3', 'Madras University ', '', 'B.S.W', '2023', 74.00, '', 1, '2024-09-03 05:15:11', 0, NULL, 0, NULL, 1),
(27417, 21109, '3', 'Annamalai University ', '', 'Bcom', '2024', 55.00, '', 1, '2024-09-03 05:35:21', 0, NULL, 0, NULL, 1),
(27418, 21118, '5', 'dote ', '', 'diploma in mechanical engineering ', '2018', 80.00, '', 1, '2024-09-03 05:40:17', 0, NULL, 0, NULL, 1),
(27419, 0, '3', 'Anna university ', '', 'BE computer science ', '2013', 58.00, '', 1, '2024-09-03 05:40:58', 1, '2024-09-03 01:30:24', 0, NULL, 0),
(27420, 21119, '3', 'Madras University ', '', 'B.com', '2019', 70.00, '', 1, '2024-09-03 05:51:09', 0, NULL, 0, NULL, 1),
(27421, 21122, '4', 'Pondicherry university', '', 'MBA', '2023', 7.90, '', 1, '2024-09-03 06:04:25', 0, NULL, 0, NULL, 1),
(27422, 21122, '3', 'Pondicherry university', '', 'B. Tech', '2020', 69.00, '', 1, '2024-09-03 06:05:11', 0, NULL, 0, NULL, 1),
(27423, 21122, '2', 'State board', '', '', '2016', 58.00, '', 1, '2024-09-03 06:05:37', 0, NULL, 0, NULL, 1),
(27424, 21122, '1', 'State board', '', '', '2014', 55.00, '', 1, '2024-09-03 06:06:20', 0, NULL, 0, NULL, 1),
(27425, 21120, '3', 'SCP jain college ', '', 'B.com general ', '2022', 82.50, '', 1, '2024-09-03 06:11:13', 0, NULL, 0, NULL, 1),
(27426, 21121, '3', 'SCP jain college', '', 'B. Com General', '2022', 80.03, '', 1, '2024-09-03 06:11:14', 0, NULL, 0, NULL, 1),
(27427, 21124, '3', 'Anna university ', '', 'Be computer science ', '2013', 58.00, '', 1, '2024-09-03 06:27:50', 0, NULL, 0, NULL, 1),
(27428, 21123, '3', 'Brathidasn university ', '', 'BCA', '2023', 72.00, '', 1, '2024-09-03 06:28:05', 0, NULL, 0, NULL, 1),
(27429, 21125, '3', 'Madaras university ', '', 'B.com (general)', '2024', 56.00, '', 1, '2024-09-03 06:39:16', 0, NULL, 0, NULL, 1),
(27430, 21126, '4', 'Anna University ', '', 'MBA', '2019', 67.00, '', 1, '2024-09-03 06:43:40', 0, NULL, 0, NULL, 1),
(27431, 21127, '4', 'vels univeesity pallavaram', '', 'mba', '2024', 7.80, '', 1, '2024-09-03 06:51:28', 0, NULL, 0, NULL, 1),
(27432, 21127, '3', 'srm university ramapuram', '', 'bsc computer science', '2022', 9.00, '', 1, '2024-09-03 06:52:20', 0, NULL, 0, NULL, 1),
(27433, 21128, '5', 'Tamilnadu medical college ', '', 'Health inspector ', '2021', 89.00, '', 1, '2024-09-03 06:58:27', 0, NULL, 0, NULL, 1),
(27434, 21128, '3', 'Thamild university ', '', 'Hi', '2024', 89.00, '', 1, '2024-09-03 07:06:10', 0, NULL, 0, NULL, 1),
(27435, 21129, '3', 'Madras University ', '', 'B com', '2024', 70.00, '', 1, '2024-09-03 07:15:33', 0, NULL, 0, NULL, 1),
(27436, 21131, '3', 'Madurai kamaraj university ', '', 'B.sc', '2021', 7.80, '', 1, '2024-09-03 07:49:04', 0, NULL, 0, NULL, 1),
(27437, 21132, '4', 'Annamalai university ', '', 'M.A', '2023', 75.00, '', 1, '2024-09-03 07:59:17', 0, NULL, 0, NULL, 1),
(27438, 21136, '1', 'Partician college of arts and science', '', '', '2024', 75.00, '', 1, '2024-09-03 08:37:34', 1, '2024-09-03 08:38:08', 0, NULL, 0),
(27439, 21136, '1', 'Children academy matriculation school', '', '', '2019', 65.00, '', 1, '2024-09-03 08:39:19', 0, NULL, 0, NULL, 1),
(27440, 21136, '2', 'St Mary\'s her secondary school ', '', '', '2021', 78.00, '', 1, '2024-09-03 08:40:02', 0, NULL, 0, NULL, 1),
(27441, 21136, '3', 'Partician college of arts and science ', '', 'UG', '2024', 79.00, '', 1, '2024-09-03 08:40:50', 0, NULL, 0, NULL, 1),
(27442, 21135, '3', 'Madras University ', '', 'B.Com', '2022', 74.00, '', 1, '2024-09-03 08:51:54', 0, NULL, 0, NULL, 1),
(27443, 21133, '3', 'Bharadithasan', '', 'BSc ', '2018', 72.00, '', 1, '2024-09-03 09:00:11', 0, NULL, 0, NULL, 1),
(27444, 21137, '3', 'Davangere University ', '', 'B com ', '2021', 61.28, '', 1, '2024-09-03 09:16:46', 0, NULL, 0, NULL, 1),
(27445, 21139, '3', 'Tiruvalluvar university ', '', 'B.A.English litrature ', '2018', 62.00, '', 1, '2024-09-03 09:52:52', 0, NULL, 0, NULL, 1),
(27446, 21140, '3', 'Madras University ', '', 'B.com general ', '2024', 80.00, '', 1, '2024-09-03 10:12:57', 0, NULL, 0, NULL, 1),
(27447, 21141, '3', 'Madras University ', '', 'Bsc', '2024', 75.00, '', 1, '2024-09-03 10:16:08', 0, NULL, 0, NULL, 1),
(27448, 21142, '3', 'Madras University ', '', 'BA Tamil ', '2024', 70.00, '', 1, '2024-09-03 10:17:28', 0, NULL, 0, NULL, 1),
(27449, 21145, '3', 'University Of Madras', '', 'BA (Economics)', '2024', 71.00, '', 1, '2024-09-03 01:30:29', 0, NULL, 0, NULL, 1),
(27450, 21147, '4', 'Anna University ', '', 'MBA ', '2024', 88.00, '', 1, '2024-09-04 03:23:07', 0, NULL, 0, NULL, 1),
(27451, 21149, '4', 'Anna university ', '', 'Information Technology ', '2024', 8.50, '', 1, '2024-09-04 04:30:39', 0, NULL, 0, NULL, 1),
(27452, 20023, '4', 'Dr.MGR UNIVERSITY ', '', 'MBA -HRM ', '2024', 8.21, '', 1, '2024-09-04 04:44:07', 0, NULL, 0, NULL, 1),
(27453, 20023, '3', 'Sri Kanayaka parmeshwari arts and Science women\'s College ', '', 'BBA ', '2022', 80.00, '', 1, '2024-09-04 04:44:53', 0, NULL, 0, NULL, 1),
(27454, 21150, '3', 'Thiruvalluvar university ', '', 'Bachelor of Computer Science ', '2023', 70.00, '', 1, '2024-09-04 04:55:46', 0, NULL, 0, NULL, 1),
(27455, 21151, '3', 'University of Madras ', '', 'BCA', '2022', 60.00, '', 1, '2024-09-04 05:11:07', 0, NULL, 0, NULL, 1),
(27456, 21148, '4', 'Mgr university ', '', 'Mba hr ', '2024', 80.00, '', 1, '2024-09-04 05:25:58', 0, NULL, 0, NULL, 1),
(27457, 21152, '5', 'thiagarajar polytechnic college ', '', 'diploma in Computer engineering ', '2017', 80.00, '', 1, '2024-09-04 05:32:48', 1, '2024-09-04 05:33:01', 0, NULL, 1),
(27458, 21156, '3', 'Banglore university ', '', 'BBA ', '2024', 8.20, '', 1, '2024-09-04 05:35:14', 0, NULL, 0, NULL, 1),
(27459, 21154, '3', 'Madras University ', '', 'BA sociology ', '2017', 62.00, '', 1, '2024-09-04 05:35:59', 0, NULL, 0, NULL, 1),
(27460, 21155, '3', 'Madras University ', '', 'Bcom (A&F)', '2022', 82.00, '', 1, '2024-09-04 05:36:44', 0, NULL, 0, NULL, 1),
(27461, 21154, '2', 'State board ', '', '', '2014', 73.00, '', 1, '2024-09-04 05:36:51', 0, NULL, 0, NULL, 1),
(27462, 21154, '1', 'State board ', '', '', '2012', 68.00, '', 1, '2024-09-04 05:37:15', 0, NULL, 0, NULL, 1),
(27463, 21161, '3', 'University of Madras', '', 'BSC Computer science ', '2021', 68.00, '', 1, '2024-09-04 05:51:10', 0, NULL, 0, NULL, 1),
(27464, 21160, '3', 'ANNA UNIVERSITY ', '', 'B.TECH', '2024', 80.00, '', 1, '2024-09-04 05:51:44', 0, NULL, 0, NULL, 1),
(27465, 21157, '3', 'Anna University ', '', 'B.E', '2024', 81.00, '', 1, '2024-09-04 05:51:52', 0, NULL, 0, NULL, 1),
(27466, 21162, '3', 'St.peters University', '', 'B.sc Game design', '2023', 65.00, '', 1, '2024-09-04 05:51:52', 0, NULL, 0, NULL, 1),
(27467, 21158, '3', 'Anna University ', '', 'BE', '2024', 75.00, '', 1, '2024-09-04 05:52:20', 0, NULL, 0, NULL, 1),
(27468, 21159, '3', 'Anna university ', '', 'BE', '2024', 80.00, '', 1, '2024-09-04 05:54:30', 0, NULL, 0, NULL, 1),
(27469, 21163, '3', 'Madras University ', '', 'BA English ', '2024', 75.00, '', 1, '2024-09-04 06:10:38', 0, NULL, 0, NULL, 1),
(27470, 21166, '3', 'manonmaniam sundaranar university', '', 'bsc computer science', '2023', 76.00, '', 1, '2024-09-04 06:37:12', 0, NULL, 0, NULL, 1),
(27471, 21164, '3', 'Maders university ', '', 'B. Com CS', '2019', 60.00, '', 1, '2024-09-04 06:54:59', 0, NULL, 0, NULL, 1),
(27472, 21146, '3', 'Madras University ', '', 'B com ', '2023', 80.00, '', 1, '2024-09-04 07:00:26', 0, NULL, 0, NULL, 1),
(27473, 21168, '4', 'Madras University ', '', 'MA PUBLIC ADMINISTRATION ', '2022', 75.00, '', 1, '2024-09-04 07:11:40', 0, NULL, 0, NULL, 1),
(27474, 21169, '3', 'Bir tikendrajit university manipur ', '', 'B. Tech mechanical ', '2021', 75.00, '', 1, '2024-09-04 07:51:56', 0, NULL, 0, NULL, 1),
(27475, 21171, '3', 'Thiruvullvar University', '', 'B.com', '2018', 85.00, '', 1, '2024-09-04 07:54:50', 0, NULL, 0, NULL, 1),
(27476, 21170, '3', 'Kannur University ', '', 'Bachelor of business administration ', '2020', 60.00, '', 1, '2024-09-04 07:54:52', 0, NULL, 0, NULL, 1),
(27477, 21172, '4', 'Bharathiar University ', '', 'M.sc(mathematics with computer application)', '2023', 78.00, '', 1, '2024-09-04 08:51:09', 0, NULL, 0, NULL, 1),
(27478, 21173, '4', 'Madras university', '', '', '2023', 70.00, '', 1, '2024-09-04 09:30:58', 0, NULL, 0, NULL, 1),
(27479, 21178, '3', 'Bengaluru University ', '', 'B com', '2022', 76.00, '', 1, '2024-09-05 04:51:44', 0, NULL, 0, NULL, 1),
(27480, 21179, '3', 'Bharadhidhasan', '', 'Bsc actuarial science', '2019', 8.70, '', 1, '2024-09-05 05:32:33', 0, NULL, 0, NULL, 1),
(27481, 21179, '4', 'Amity University ', '', 'MBA HR', '2022', 84.00, '', 1, '2024-09-05 05:33:09', 0, NULL, 0, NULL, 1),
(27482, 21180, '3', 'Dr.M.G.R Educational and Research Institute', '', 'Bba', '2023', 67.00, '', 1, '2024-09-05 05:48:52', 0, NULL, 0, NULL, 1),
(27483, 11700, '3', 'SIR THEYAGARAYA COLLEGE ', '', 'Bsc', '2020', 75.00, '', 1, '2024-09-05 06:01:00', 0, NULL, 0, NULL, 1),
(27484, 21183, '3', 'Madras University ', '', 'BBA', '2023', 70.00, '', 1, '2024-09-05 06:26:03', 0, NULL, 0, NULL, 1),
(27485, 21181, '3', 'Bangalore University ', '', 'Bcom', '2023', 79.00, '', 1, '2024-09-05 06:32:07', 0, NULL, 0, NULL, 1),
(27486, 21182, '3', 'Thiruvalluvar University ', '', 'BCA ', '2023', 75.00, '', 1, '2024-09-05 06:34:03', 0, NULL, 0, NULL, 1),
(27487, 21177, '3', 'Bharathidasan University ', '', 'BCA', '2021', 62.00, '', 1, '2024-09-05 06:34:05', 0, NULL, 0, NULL, 1),
(27488, 21187, '3', 'Bharathidasan University ', '', 'BCA ', '2021', 78.00, '', 1, '2024-09-05 06:50:27', 0, NULL, 0, NULL, 1),
(27489, 21187, '2', 'AKT MHSS ', '', '', '2018', 68.00, '', 1, '2024-09-05 06:51:23', 0, NULL, 0, NULL, 1),
(27490, 21187, '1', 'AKT MHSS ', '', '', '2016', 65.00, '', 1, '2024-09-05 06:51:45', 0, NULL, 0, NULL, 1),
(27491, 21184, '3', 'Deemed University ', '', '', '2021', 68.00, '', 1, '2024-09-05 07:34:37', 0, NULL, 0, NULL, 1),
(27492, 21176, '3', 'Anna university ', '', 'Bachelor of Engineering', '2023', 84.00, '', 1, '2024-09-05 07:56:29', 0, NULL, 0, NULL, 1),
(27493, 21188, '3', 'University of madras ', '', '', '2013', 53.00, '', 1, '2024-09-05 08:19:53', 0, NULL, 0, NULL, 1),
(27494, 21189, '3', 'Shri krishna devaraya university ', '', 'BBA', '2023', 71.00, '', 1, '2024-09-05 08:56:58', 0, NULL, 0, NULL, 1),
(27495, 21190, '3', 'annamalai university', '', 'fashion desining ', '2019', 78.00, '', 1, '2024-09-05 09:25:40', 0, NULL, 0, NULL, 1),
(27496, 21192, '1', 'State board ', '', 'B.tech IT', '2018', 80.00, '', 1, '2024-09-05 09:45:52', 1, '2024-09-05 09:46:54', 0, NULL, 1),
(27497, 21192, '2', 'State board ', '', '', '2020', 60.00, '', 1, '2024-09-05 09:47:10', 0, NULL, 0, NULL, 1),
(27498, 21192, '3', 'Anna university ', '', 'B.tech IT', '2024', 60.00, '', 1, '2024-09-05 09:47:37', 0, NULL, 0, NULL, 1),
(27499, 21194, '3', 'Anna university', '', 'B.tech', '2024', 60.00, '', 1, '2024-09-05 11:13:39', 0, NULL, 0, NULL, 1),
(27500, 21196, '3', 'Queen Mary\'s college ', '', 'BA Economics ', '2023', 69.20, '', 1, '2024-09-05 12:48:38', 0, NULL, 0, NULL, 1),
(27501, 21196, '2', 'Chennai Girls Higher secondary school ', '', '', '2020', 64.00, '', 1, '2024-09-05 12:49:49', 0, NULL, 0, NULL, 1),
(27502, 21196, '1', 'Kathivakkam Government Higher secondary school ', '', '', '2018', 61.60, '', 1, '2024-09-05 12:50:36', 0, NULL, 0, NULL, 1),
(27503, 21186, '3', 'Madras University ', '', 'B Com General ', '2024', 70.00, '', 1, '2024-09-05 12:59:08', 0, NULL, 0, NULL, 1),
(27504, 21197, '3', 'Manonmaniam university ', '', 'BBA', '2018', 75.00, '', 1, '2024-09-05 12:59:35', 0, NULL, 0, NULL, 1),
(27505, 21199, '3', 'Medras University ', '', 'BSC computer science ', '2023', 79.00, '', 1, '2024-09-05 01:16:26', 0, NULL, 0, NULL, 1),
(27506, 21199, '2', 'State board ', '', '', '2020', 54.00, '', 1, '2024-09-05 01:19:04', 0, NULL, 0, NULL, 1),
(27507, 21199, '1', 'State board ', '', '', '2018', 71.00, '', 1, '2024-09-05 01:19:28', 0, NULL, 0, NULL, 1),
(27508, 21185, '4', 'Mgr educational and research Institute', '', 'MCA', '2024', 6.90, '', 1, '2024-09-05 01:30:42', 1, '2024-09-05 01:31:19', 0, NULL, 0),
(27509, 21185, '4', 'Dr. Mgr educational and research Institute', '', 'MCA', '2024', 6.90, '', 1, '2024-09-05 01:33:55', 1, '2024-09-05 01:34:30', 0, NULL, 1),
(27510, 21195, '3', 'Scott Christian college Autonomous Nagercoil ', '', 'BSc', '2022', 65.00, '', 1, '2024-09-05 02:54:36', 0, NULL, 0, NULL, 1),
(27511, 21200, '4', 'S.A.ENGINEERING COLLEGE ', '', 'MCA', '2024', 64.00, '', 1, '2024-09-06 04:21:02', 0, NULL, 0, NULL, 1),
(27512, 21200, '3', 'MAR GREGORIOS COLLEGE OF ARTS AND SCIENCE', '', 'BCA', '2022', 72.00, '', 1, '2024-09-06 04:22:11', 0, NULL, 0, NULL, 1),
(27513, 21201, '3', 'Madras', '', 'B. Com General', '2024', 85.00, '', 1, '2024-09-06 04:37:30', 0, NULL, 0, NULL, 1),
(27514, 21202, '5', 'tamilnadu open university', '', 'bba', '2019', 67.00, '', 1, '2024-09-06 05:20:29', 0, NULL, 0, NULL, 1),
(27515, 21203, '3', ' University of medras', '', 'B.com CA', '2024', 74.00, '', 1, '2024-09-06 05:23:57', 0, NULL, 0, NULL, 1),
(27516, 21204, '3', 'University of Madras ', '', 'B.COM', '2024', 66.00, '', 1, '2024-09-06 05:27:16', 0, NULL, 0, NULL, 1),
(27517, 21205, '3', 'University of Madras ', '', 'BA (Economics)', '2024', 71.00, '', 1, '2024-09-06 05:32:02', 0, NULL, 0, NULL, 1),
(27518, 21205, '1', 'State Board ', '', '', '2019', 57.00, '', 1, '2024-09-06 05:33:00', 0, NULL, 0, NULL, 1),
(27519, 21205, '2', 'State Board ', '', '', '2021', 61.00, '', 1, '2024-09-06 05:33:20', 0, NULL, 0, NULL, 1),
(27520, 21206, '4', 'Bangalore City University ', '', 'B.com', '2019', 42.00, '', 1, '2024-09-06 05:41:44', 1, '2024-09-06 05:42:06', 0, NULL, 0),
(27521, 21206, '4', 'Bangalore City University ', '', '', '2022', 65.83, '', 1, '2024-09-06 05:42:49', 0, NULL, 0, NULL, 1),
(27522, 21207, '3', 'Madras University ', '', 'BSC computer science ', '2023', 71.00, '', 1, '2024-09-06 05:57:34', 0, NULL, 0, NULL, 1),
(27523, 21208, '1', 'State Board', '', '', '2014', 86.00, '', 1, '2024-09-06 06:40:15', 0, NULL, 0, NULL, 1),
(27524, 21211, '2', 'Sri Prathibha jr college ', '', '', '2017', 75.00, '', 1, '2024-09-06 06:40:17', 0, NULL, 0, NULL, 1),
(27525, 21208, '2', 'State board', '', '', '2016', 65.00, '', 1, '2024-09-06 06:40:52', 0, NULL, 0, NULL, 1),
(27526, 21208, '3', 'Madras University', '', 'Bachelor of science', '2019', 65.00, '', 1, '2024-09-06 06:41:40', 0, NULL, 0, NULL, 1),
(27527, 21212, '3', 'Ignou', '', 'Ba English', '2023', 89.00, '', 1, '2024-09-06 07:13:46', 0, NULL, 0, NULL, 1),
(27528, 21213, '3', 'Stella Maris college ', '', 'B.com cs', '2024', 68.00, '', 1, '2024-09-06 07:24:05', 0, NULL, 0, NULL, 1),
(27529, 21214, '3', 'Madras University ', '', 'B.sc computer science ', '2023', 80.00, '', 1, '2024-09-06 07:34:33', 0, NULL, 0, NULL, 1),
(27530, 21214, '2', 'State', '', '', '2020', 63.00, '', 1, '2024-09-06 07:35:03', 0, NULL, 0, NULL, 1),
(27531, 21214, '1', 'State', '', '', '2018', 80.00, '', 1, '2024-09-06 07:35:33', 0, NULL, 0, NULL, 1),
(27532, 21215, '4', 'Jain University ', '', 'MBA', '2024', 72.00, '', 1, '2024-09-06 07:39:53', 0, NULL, 0, NULL, 1),
(27533, 21216, '3', 'Madhurai kamaraj university ', '', 'B.a english ', '2014', 50.00, '', 1, '2024-09-06 08:34:14', 0, NULL, 0, NULL, 1),
(27534, 21217, '4', 'SRM Institute of Science and technology ', '', 'mba', '2023', 86.50, '', 1, '2024-09-06 09:24:24', 0, NULL, 0, NULL, 1),
(27535, 21217, '3', 'vels institute of science technology and advanced studies ', '', 'mechanical engineering ', '2020', 7.55, '', 1, '2024-09-06 09:24:54', 0, NULL, 0, NULL, 1),
(27536, 21104, '3', 'Annamalai ', '', 'BA ENGLISH ', '2024', 75.00, '', 1, '2024-09-06 10:29:42', 0, NULL, 0, NULL, 1),
(27537, 21219, '3', 'Madras University ', '', 'B.com', '2024', 70.00, '', 1, '2024-09-06 11:41:03', 0, NULL, 0, NULL, 1),
(27538, 21218, '3', 'Private', '', 'BA. History', '2024', 56.00, '', 1, '2024-09-06 11:56:00', 0, NULL, 0, NULL, 1),
(27539, 20836, '4', 'Bharathithasan university ', '', 'M.a history ', '2024', 70.00, '', 1, '2024-09-07 07:30:24', 0, NULL, 0, NULL, 1),
(27540, 21223, '3', 'Vtu', '', 'Btech ', '2024', 80.00, '', 1, '2024-09-09 01:55:50', 0, NULL, 0, NULL, 1),
(27541, 21220, '3', 'ajiv gandhi university', '', 'ds', '2023', 65.00, '', 1, '2024-09-09 04:54:40', 0, NULL, 0, NULL, 1),
(27542, 21225, '3', 'Jerusalem college of engineering ', '', 'B.E', '2024', 82.00, '', 1, '2024-09-09 05:05:13', 0, NULL, 0, NULL, 1),
(27543, 21226, '3', 'bharath university', '', 'b. tech. - aerospace Engineering', '2022', 78.00, '', 1, '2024-09-09 05:08:07', 0, NULL, 0, NULL, 1),
(27544, 21226, '2', 'tamil nadu state board', '', '', '2017', 84.00, '', 1, '2024-09-09 05:08:48', 1, '2024-09-09 05:11:57', 0, NULL, 1),
(27545, 21227, '4', 'St.Xavier\'s College(Autonomous)', '', 'M.Sc Computer Science ', '2024', 80.00, '', 1, '2024-09-09 05:10:13', 0, NULL, 0, NULL, 1),
(27546, 21226, '1', 'central board of secondary education', '', '', '2015', 95.00, '', 1, '2024-09-09 05:10:22', 1, '2024-09-09 05:11:10', 0, NULL, 1),
(27547, 21228, '3', 'Adhiparasakthi Engineering college melmaruvathur ', '', 'B.Tech', '2020', 6.10, '', 1, '2024-09-09 05:32:26', 0, NULL, 0, NULL, 1),
(27548, 21228, '2', 'John Dewey matric Hr.sec school Villupuram', '', '', '2016', 65.00, '', 1, '2024-09-09 05:34:01', 0, NULL, 0, NULL, 1),
(27549, 21228, '1', 'John Dewey matric hr.sec school Villupuram', '', '', '2014', 75.00, '', 1, '2024-09-09 05:34:46', 0, NULL, 0, NULL, 1),
(27550, 21230, '4', 'Anna University ', '', 'MBA', '2024', 8.32, '', 1, '2024-09-09 05:44:16', 0, NULL, 0, NULL, 1),
(27551, 21233, '4', 'Vtu', '', 'Bcom', '2020', 70.00, '', 1, '2024-09-09 05:44:53', 0, NULL, 0, NULL, 1),
(27552, 21230, '3', 'Madras University ', '', 'B.com', '2022', 74.00, '', 1, '2024-09-09 05:45:41', 0, NULL, 0, NULL, 1),
(27553, 21232, '4', 'University ', '', 'M.sc biochemistry ', '2022', 80.00, '', 1, '2024-09-09 05:45:55', 0, NULL, 0, NULL, 1),
(27554, 21231, '3', 'Anna University ', '', 'BE - Mechanical Engineering ', '2022', 77.00, '', 1, '2024-09-09 05:51:44', 0, NULL, 0, NULL, 1),
(27555, 21232, '4', 'University ', '', 'M.sc ', '2022', 80.00, '', 1, '2024-09-09 05:55:10', 0, NULL, 0, NULL, 1),
(27556, 21229, '3', 'Park college of engineering and technology ', '', 'B Tech ', '2024', 81.00, '', 1, '2024-09-09 06:00:33', 0, NULL, 0, NULL, 1),
(27557, 21229, '2', 'State board ', '', '', '2020', 67.00, '', 1, '2024-09-09 06:00:57', 0, NULL, 0, NULL, 1),
(27558, 21235, '4', 'Anna University ', '', 'MBA', '2024', 8.32, '', 1, '2024-09-09 06:01:14', 0, NULL, 0, NULL, 1),
(27559, 21229, '1', 'State board ', '', '', '2018', 92.00, '', 1, '2024-09-09 06:01:23', 0, NULL, 0, NULL, 1),
(27560, 21235, '3', 'Madras University ', '', 'B.com', '2022', 76.00, '', 1, '2024-09-09 06:01:46', 0, NULL, 0, NULL, 1),
(27561, 21237, '3', 'Madras university ', '', 'B.com general ', '2024', 75.00, '', 1, '2024-09-09 06:07:53', 0, NULL, 0, NULL, 1),
(27562, 21236, '3', 'University ', '', 'BBA ', '2023', 85.00, '', 1, '2024-09-09 06:08:08', 0, NULL, 0, NULL, 1),
(27563, 21239, '4', 'Madras University ', '', 'MA HRM', '2022', 79.00, '', 1, '2024-09-09 06:13:39', 0, NULL, 0, NULL, 1),
(27564, 21238, '3', 'Madras university ', '', 'B. Com ca', '2024', 70.00, '', 1, '2024-09-09 06:21:32', 0, NULL, 0, NULL, 1),
(27565, 21234, '5', 'Dote', '', 'DECE', '2020', 89.00, '', 1, '2024-09-09 06:26:51', 0, NULL, 0, NULL, 1),
(27566, 21241, '3', 'Madras university ', '', 'B.com', '2024', 70.00, '', 1, '2024-09-09 06:32:08', 0, NULL, 0, NULL, 1),
(27567, 21242, '3', 'University of Madras ', '', 'B.Sc', '2022', 87.00, '', 1, '2024-09-09 07:09:32', 0, NULL, 0, NULL, 1),
(27568, 21243, '4', 'Periyar university ', '', 'Master of computer application ', '2024', 82.00, '', 1, '2024-09-09 07:23:59', 0, NULL, 0, NULL, 1),
(27569, 21243, '3', 'Thiruvalluvar university ', '', 'Bachelor of computer application ', '2022', 72.00, '', 1, '2024-09-09 07:24:28', 0, NULL, 0, NULL, 1),
(27570, 21244, '3', 'Madras University', '', 'B.com accounting and finance ', '2023', 78.00, '', 1, '2024-09-09 08:01:31', 0, NULL, 0, NULL, 1),
(27571, 21246, '1', 'State board', '', '', '2010', 81.00, '', 1, '2024-09-09 08:06:48', 1, '2024-09-09 08:09:52', 0, NULL, 1),
(27572, 21246, '2', 'CBSE', '', '', '2008', 80.00, '', 1, '2024-09-09 08:07:50', 1, '2024-09-09 08:09:23', 0, NULL, 1),
(27573, 21246, '3', 'Anna University', '', 'BE ', '2014', 83.00, '', 1, '2024-09-09 08:08:47', 0, NULL, 0, NULL, 1),
(27574, 21247, '3', 'Jain University', '', 'BA', '2024', 8.26, '', 1, '2024-09-09 09:49:21', 0, NULL, 0, NULL, 1),
(27575, 21249, '3', 'Madras university', '', 'B. Com', '2020', 68.00, '', 1, '2024-09-09 10:31:28', 0, NULL, 0, NULL, 1),
(27576, 21250, '3', 'Madras university ', '', 'B.com Corporate Secretaryship ', '2024', 80.00, '', 1, '2024-09-09 12:05:16', 0, NULL, 0, NULL, 1),
(27577, 21256, '3', 'Dharwad ', '', 'B.com', '2022', 70.00, '', 1, '2024-09-09 02:33:38', 0, NULL, 0, NULL, 1),
(27578, 21253, '3', 'Madras University ', '', 'Bachelor of business administration ', '2024', 72.00, '', 1, '2024-09-09 03:32:54', 0, NULL, 0, NULL, 1),
(27579, 21253, '1', 'State board', '', '', '2019', 61.00, '', 1, '2024-09-09 03:34:14', 0, NULL, 0, NULL, 1),
(27580, 21253, '2', 'State board ', '', '', '2021', 75.00, '', 1, '2024-09-09 03:34:28', 0, NULL, 0, NULL, 1),
(27581, 21259, '3', 'Bharathidasan University ', '', 'BCA', '2021', 64.00, '', 1, '2024-09-10 04:44:27', 0, NULL, 0, NULL, 1),
(27582, 21259, '2', 'State board', '', '', '2018', 54.00, '', 1, '2024-09-10 04:44:53', 0, NULL, 0, NULL, 1),
(27583, 21265, '4', 'Bishop Heber college ', '', 'MCA', '2024', 72.00, '', 1, '2024-09-10 05:15:27', 0, NULL, 0, NULL, 1),
(27584, 21261, '3', 'Tamilnadu open university ', '', 'Bsc psychology ', '2024', 88.00, '', 1, '2024-09-10 05:15:34', 0, NULL, 0, NULL, 1),
(27585, 21262, '5', 'Madras university ', '', 'Bsc visual communication ', '2021', 88.00, '', 1, '2024-09-10 05:23:43', 0, NULL, 0, NULL, 1),
(27586, 21266, '3', 'Ms University ', '', 'B.sc', '2018', 63.00, '', 1, '2024-09-10 05:24:01', 0, NULL, 0, NULL, 1),
(27587, 21267, '3', 'Anna University ', '', 'B.E', '2020', 66.00, '', 1, '2024-09-10 05:56:02', 0, NULL, 0, NULL, 1),
(27588, 21268, '3', 'Sri Sairam Institute of Technology ', '', 'B.E', '2024', 84.10, '', 1, '2024-09-10 05:59:53', 0, NULL, 0, NULL, 1),
(27589, 21268, '1', 'CBSE', '', '', '2020', 80.60, '', 1, '2024-09-10 06:00:44', 0, NULL, 0, NULL, 1),
(27590, 21268, '2', 'CBSE', '', '', '2018', 80.40, '', 1, '2024-09-10 06:01:06', 0, NULL, 0, NULL, 1),
(27591, 21270, '3', 'Vinayaga mission research foundation ', '', 'BE CSE', '2022', 7.50, '', 1, '2024-09-10 06:19:51', 0, NULL, 0, NULL, 1),
(27592, 21269, '3', 'University of madras', '', 'B.A ECONOMICS', '2023', 65.00, '', 1, '2024-09-10 06:22:45', 0, NULL, 0, NULL, 1),
(27593, 21258, '2', 'High secondary school ', '', '', '2015', 75.00, '', 1, '2024-09-10 06:27:09', 0, NULL, 0, NULL, 1),
(27594, 21277, '3', 'Anna University', '', 'B.E(ECE) ', '2023', 80.05, '', 1, '2024-09-10 06:29:00', 0, NULL, 0, NULL, 1),
(27595, 21222, '3', 'Shanmuganathan engineering college', '', 'B.E', '2024', 8.29, '', 1, '2024-09-10 06:29:29', 0, NULL, 0, NULL, 1),
(27596, 21271, '3', 'Presidency college ', '', 'Ba Economics ', '2020', 85.00, '', 1, '2024-09-10 06:29:38', 0, NULL, 0, NULL, 1),
(27597, 21274, '3', 'Cauvery College for Women ', '', 'B.Sc Computer Science ', '2024', 84.00, '', 1, '2024-09-10 06:30:22', 0, NULL, 0, NULL, 1),
(27598, 21222, '2', 'A.V hr sec school', '', '', '2020', 64.50, '', 1, '2024-09-10 06:30:26', 0, NULL, 0, NULL, 1),
(27599, 21222, '1', 'Alangara matha hr sec school', '', '', '2018', 87.60, '', 1, '2024-09-10 06:30:55', 0, NULL, 0, NULL, 1),
(27600, 21272, '3', 'ANNA UNIVERSITY ', '', 'BE(eEE)', '2024', 8.31, '', 1, '2024-09-10 06:31:59', 0, NULL, 0, NULL, 1),
(27601, 21273, '3', 'Manonmaniam sundaranar university', '', 'Bsc .cs', '2024', 73.00, '', 1, '2024-09-10 06:32:35', 0, NULL, 0, NULL, 1),
(27602, 21276, '3', 'Manonmaniam sundaranar university', '', 'B. Sc(cs) ', '2024', 75.00, '', 1, '2024-09-10 06:33:16', 0, NULL, 0, NULL, 1),
(27603, 21274, '2', 'Higher secondary school ', '', '', '2021', 86.69, '', 1, '2024-09-10 06:34:07', 0, NULL, 0, NULL, 1),
(27604, 21274, '1', 'Secondary school leaving certificate ', '', '', '2019', 86.00, '', 1, '2024-09-10 06:35:09', 0, NULL, 0, NULL, 1),
(27605, 21279, '3', 'Bharathidasan university ', '', 'BCA ', '2021', 89.00, '', 1, '2024-09-10 06:51:02', 0, NULL, 0, NULL, 1),
(27606, 21260, '3', 'University ', '', 'B.SC biochemistry ', '2024', 75.00, '', 1, '2024-09-10 06:52:58', 0, NULL, 0, NULL, 1),
(27607, 21275, '3', 'Veltech ', '', 'BBA', '2022', 80.00, '', 1, '2024-09-10 07:22:17', 0, NULL, 0, NULL, 1),
(27608, 21282, '3', 'Madras University ', '', 'B. com ', '2022', 75.00, '', 1, '2024-09-10 07:44:58', 0, NULL, 0, NULL, 1),
(27609, 21280, '3', 'Jaya engineering college ', '', 'BE', '2024', 67.00, '', 1, '2024-09-10 09:15:05', 0, NULL, 0, NULL, 1),
(27610, 21283, '3', 'Madras University ', '', 'BA', '2001', 65.00, '', 1, '2024-09-10 09:38:38', 0, NULL, 0, NULL, 1),
(27611, 21284, '3', 'Madras University ', '', 'BBA ', '2022', 62.00, '', 1, '2024-09-10 09:47:39', 0, NULL, 0, NULL, 1),
(27612, 21285, '5', 'Bss ', '', 'Diploma', '2018', 80.00, '', 1, '2024-09-10 11:25:40', 1, '2024-09-10 11:26:23', 0, NULL, 0),
(27613, 21285, '2', 'Diploma ', '', '', '2018', 80.00, '', 1, '2024-09-10 11:26:07', 0, NULL, 0, NULL, 1),
(27614, 21288, '3', 'Sri Ganesh college of arts and science ', '', 'BA English ', '2021', 7.50, '', 1, '2024-09-11 02:14:27', 0, NULL, 0, NULL, 1),
(27615, 21289, '4', 'Anna University-CBSE', '', 'M.E', '2024', 80.00, '', 1, '2024-09-11 04:48:18', 0, NULL, 0, NULL, 1),
(27616, 21289, '3', 'Anna University -CBSE', '', 'B.E', '2022', 85.00, '', 1, '2024-09-11 04:48:53', 0, NULL, 0, NULL, 1),
(27617, 21290, '4', 'University of Madras ', '', 'M.Sc(Computer Science)', '2024', 83.00, '', 1, '2024-09-11 04:59:57', 0, NULL, 0, NULL, 1),
(27618, 21290, '3', 'University of Madras ', '', 'B.Sc(computer Science)', '2022', 77.00, '', 1, '2024-09-11 05:00:39', 0, NULL, 0, NULL, 1),
(27619, 21291, '4', 'State board', '', 'MBA', '2019', 6.30, '', 1, '2024-09-11 05:09:27', 0, NULL, 0, NULL, 1),
(27620, 21291, '4', 'State board ', '', 'MBA', '2019', 6.30, '', 1, '2024-09-11 05:11:06', 1, '2024-09-11 05:11:16', 0, NULL, 0),
(27621, 21291, '3', 'State board ', '', 'BE', '2016', 6.20, '', 1, '2024-09-11 05:11:43', 0, NULL, 0, NULL, 1),
(27622, 21291, '2', 'State board ', '', '', '2012', 77.00, '', 1, '2024-09-11 05:12:22', 1, '2024-09-11 05:13:33', 0, NULL, 1),
(27623, 21291, '1', 'State board ', '', '', '2010', 72.00, '', 1, '2024-09-11 05:12:47', 1, '2024-09-11 05:13:02', 0, NULL, 1),
(27624, 21293, '3', 'Anna University ', '', 'BE', '2020', 68.00, '', 1, '2024-09-11 05:18:29', 0, NULL, 0, NULL, 1),
(27625, 21293, '2', 'KNNC GOVT HER SEC SCHOOL ', '', '', '2016', 76.40, '', 1, '2024-09-11 05:19:05', 0, NULL, 0, NULL, 1),
(27626, 21293, '1', 'Govt high school ', '', '', '2014', 68.00, '', 1, '2024-09-11 05:19:26', 0, NULL, 0, NULL, 1),
(27627, 21295, '3', 'University ', '', 'B sc mathmatics ', '2021', 7.40, '', 1, '2024-09-11 05:25:34', 0, NULL, 0, NULL, 1),
(27628, 21296, '4', 'Madras University ', '', 'Mcom ', '2023', 60.00, '', 1, '2024-09-11 05:29:19', 0, NULL, 0, NULL, 1),
(27629, 21286, '1', 'Karnataka state board ', '', '', '2021', 55.00, '', 1, '2024-09-11 05:30:48', 0, NULL, 0, NULL, 1),
(27630, 21286, '2', 'Karnataka state board ', '', '', '2023', 50.00, '', 1, '2024-09-11 05:31:13', 0, NULL, 0, NULL, 1),
(27631, 21297, '3', 'Vels University ', '', 'BBM', '2022', 73.00, '', 1, '2024-09-11 05:31:35', 0, NULL, 0, NULL, 1),
(27632, 21298, '3', 'Anna university', '', 'B. E', '2020', 64.00, '', 1, '2024-09-11 05:35:16', 0, NULL, 0, NULL, 1),
(27633, 21299, '1', 'st josephs college hr sec school trichy', '', '', '2018', 6.50, '', 1, '2024-09-11 05:36:46', 0, NULL, 0, NULL, 1),
(27634, 21299, '2', 'st joseph college hr sec school teichy ', '', '', '2020', 7.50, '', 1, '2024-09-11 05:37:30', 0, NULL, 0, NULL, 1),
(27635, 21299, '3', 'jamal mohamed college trichy', '', 'Bachelor of Business Administration ', '2023', 8.00, '', 1, '2024-09-11 05:38:50', 0, NULL, 0, NULL, 1),
(27636, 21294, '3', 'Thiruvalluvar university ', '', 'BA Degree holder ', '2022', 70.00, '', 1, '2024-09-11 05:46:19', 0, NULL, 0, NULL, 1),
(27637, 21251, '3', 'bharathidasan', '', 'ba', '2024', 75.00, '', 1, '2024-09-11 05:49:04', 0, NULL, 0, NULL, 1),
(27638, 21292, '3', 'Periyar university', '', 'B. Com(Computer Application)', '2023', 81.00, '', 1, '2024-09-11 05:51:06', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(27639, 21300, '3', 'Jntuk ', '', 'B.Tech', '2024', 77.00, '', 1, '2024-09-11 05:51:16', 0, NULL, 0, NULL, 1),
(27640, 21304, '3', 'Madras university', '', 'BCA', '2023', 77.00, '', 1, '2024-09-11 06:03:18', 0, NULL, 0, NULL, 1),
(27641, 21301, '4', 'Mahatma Gandhi university', '', 'MCA', '2024', 85.00, '', 1, '2024-09-11 06:04:07', 0, NULL, 0, NULL, 1),
(27642, 21301, '3', 'Mahatma Gandhi university', '', 'Bsc computer science', '2022', 80.00, '', 1, '2024-09-11 06:04:55', 0, NULL, 0, NULL, 1),
(27643, 21301, '2', 'Kerala state board', '', '', '2018', 84.00, '', 1, '2024-09-11 06:05:21', 0, NULL, 0, NULL, 1),
(27644, 21301, '1', 'ICSE', '', '', '2016', 77.00, '', 1, '2024-09-11 06:05:58', 0, NULL, 0, NULL, 1),
(27645, 21302, '3', 'Bharathidhasan University ', '', 'B.Sc Computer science ', '2023', 80.00, '', 1, '2024-09-11 06:09:01', 0, NULL, 0, NULL, 1),
(27646, 21305, '3', 'Bharathidasan University', '', 'B.sc Computer Science', '2023', 81.00, '', 1, '2024-09-11 06:15:55', 0, NULL, 0, NULL, 1),
(27647, 21307, '5', 'Excel Group institutions', '', 'Dae', '2024', 83.00, '', 1, '2024-09-11 06:40:03', 0, NULL, 0, NULL, 1),
(27648, 21308, '4', 'Madras university ', '', 'MA.English', '2024', 65.00, '', 1, '2024-09-11 06:40:51', 0, NULL, 0, NULL, 1),
(27649, 21311, '3', 'Unom', '', 'Bsc', '2020', 65.00, '', 1, '2024-09-11 06:49:00', 0, NULL, 0, NULL, 1),
(27650, 21311, '1', 'State board', '', '', '2013', 75.00, '', 1, '2024-09-11 06:50:07', 0, NULL, 0, NULL, 1),
(27651, 21311, '2', 'State board', '', '', '2017', 55.00, '', 1, '2024-09-11 06:50:38', 0, NULL, 0, NULL, 1),
(27652, 21312, '3', 'Madras university ', '', 'Bca', '2023', 77.00, '', 1, '2024-09-11 06:55:05', 0, NULL, 0, NULL, 1),
(27653, 21312, '2', 'State board ', '', '', '2020', 50.00, '', 1, '2024-09-11 06:55:38', 0, NULL, 0, NULL, 1),
(27654, 21312, '1', 'Stateboard', '', '', '2018', 70.00, '', 1, '2024-09-11 06:56:24', 0, NULL, 0, NULL, 1),
(27655, 21309, '1', 'State board ', '', '', '2018', 64.00, '', 1, '2024-09-11 07:04:52', 0, NULL, 0, NULL, 1),
(27656, 21314, '3', 'Anna University ', '', 'B.E', '2024', 7.50, '', 1, '2024-09-11 07:05:00', 0, NULL, 0, NULL, 1),
(27657, 21309, '2', 'State board ', '', '', '2020', 63.00, '', 1, '2024-09-11 07:05:18', 0, NULL, 0, NULL, 1),
(27658, 21309, '3', 'Madras university ', '', 'Bsc computer  science ', '2023', 72.00, '', 1, '2024-09-11 07:06:09', 0, NULL, 0, NULL, 1),
(27659, 21315, '3', 'Jntua', '', 'Btech', '2019', 65.00, '', 1, '2024-09-11 07:15:24', 0, NULL, 0, NULL, 1),
(27660, 21287, '2', 'Sai junior college ', '', '', '2021', 83.00, '', 1, '2024-09-11 07:24:56', 0, NULL, 0, NULL, 1),
(27661, 21310, '1', 'State board ', '', '', '2018', 70.00, '', 1, '2024-09-11 07:27:30', 0, NULL, 0, NULL, 1),
(27662, 21310, '2', 'State board ', '', '', '2020', 50.00, '', 1, '2024-09-11 07:27:48', 0, NULL, 0, NULL, 1),
(27663, 21310, '3', 'Madras university ', '', 'Computer application', '2023', 77.00, '', 1, '2024-09-11 07:28:16', 0, NULL, 0, NULL, 1),
(27664, 21306, '1', 'Anna University ', '', '', '2009', 78.60, '', 1, '2024-09-11 07:28:40', 0, NULL, 0, NULL, 1),
(27665, 21306, '2', 'Hsc', '', '', '2011', 81.60, '', 1, '2024-09-11 07:29:16', 0, NULL, 0, NULL, 1),
(27666, 21306, '3', 'Anna University ', '', 'B.E', '2015', 6.90, '', 1, '2024-09-11 07:30:20', 0, NULL, 0, NULL, 1),
(27667, 21306, '4', 'Anna University ', '', 'MBA', '2017', 7.50, '', 1, '2024-09-11 07:30:56', 0, NULL, 0, NULL, 1),
(27668, 21317, '3', 'Anna University ', '', 'BE', '2024', 8.05, '', 1, '2024-09-11 07:37:09', 0, NULL, 0, NULL, 1),
(27669, 21304, '1', 'State board', '', '', '2018', 70.00, '', 1, '2024-09-11 07:38:53', 0, NULL, 0, NULL, 1),
(27670, 21304, '2', 'State board', '', '', '2020', 50.00, '', 1, '2024-09-11 07:39:15', 0, NULL, 0, NULL, 1),
(27671, 21319, '3', 'Madras University ', '', 'BA English Literature ', '2024', 56.00, '', 1, '2024-09-11 08:49:12', 1, '2024-09-11 08:49:34', 0, NULL, 1),
(27672, 21323, '4', 'Autonomous ', '', 'M..B.A', '2021', 65.00, '', 1, '2024-09-11 09:12:48', 0, NULL, 0, NULL, 1),
(27673, 21321, '3', 'University of medras', '', 'Bsc computer science ', '2024', 72.00, '', 1, '2024-09-11 09:22:35', 0, NULL, 0, NULL, 1),
(27674, 21320, '3', 'University of Madras ', '', 'Bsc.cs', '2024', 7.10, '', 1, '2024-09-11 09:23:27', 0, NULL, 0, NULL, 1),
(27675, 21324, '3', 'University of Madras ', '', 'BCA', '2024', 70.00, '', 1, '2024-09-11 09:23:41', 0, NULL, 0, NULL, 1),
(27676, 21326, '3', 'Madras university', '', 'BSC computer science', '2024', 61.00, '', 1, '2024-09-11 09:24:55', 0, NULL, 0, NULL, 1),
(27677, 21322, '3', ' University Madras ', '', 'Bachelor of computer applications BCA', '2024', 8.45, '', 1, '2024-09-11 09:32:29', 0, NULL, 0, NULL, 1),
(27678, 21325, '3', 'University of Madras ', '', 'BCA', '2024', 70.00, '', 1, '2024-09-11 09:33:09', 0, NULL, 0, NULL, 1),
(27679, 21327, '3', 'Panimalar Engineering College (UNIVERSITY)', '', 'B.Tech.IT', '2024', 87.00, '', 1, '2024-09-11 09:34:00', 0, NULL, 0, NULL, 1),
(27680, 21318, '3', 'University ', '', 'BCA', '2024', 75.00, '', 1, '2024-09-11 10:00:11', 0, NULL, 0, NULL, 1),
(27681, 21329, '3', 'Madras University ', '', 'B.A Economics ', '2024', 75.00, '', 1, '2024-09-11 10:03:24', 0, NULL, 0, NULL, 1),
(27682, 21331, '1', 'State board ', '', '', '2018', 73.00, '', 1, '2024-09-11 12:23:31', 1, '2024-09-11 12:23:58', 0, NULL, 1),
(27683, 21331, '2', 'State board ', '', '', '2020', 71.60, '', 1, '2024-09-11 12:24:55', 0, NULL, 0, NULL, 1),
(27684, 21331, '3', 'Bharathiyar university ', '', 'BBA(CA)', '2023', 64.00, '', 1, '2024-09-11 12:25:43', 0, NULL, 0, NULL, 1),
(27685, 21336, '3', 'Veltech Multitech Dr.rangarajan Dr.sakunthala Engineering college', '', 'B.Tech', '2024', 80.00, '', 1, '2024-09-11 02:02:24', 0, NULL, 0, NULL, 1),
(27686, 21336, '2', 'State board ', '', '', '2020', 79.00, '', 1, '2024-09-11 02:02:43', 0, NULL, 0, NULL, 1),
(27687, 21336, '1', 'State board ', '', '', '2018', 90.00, '', 1, '2024-09-11 02:03:08', 0, NULL, 0, NULL, 1),
(27688, 21337, '3', 'Anna university', '', 'B E', '2018', 5.65, '', 1, '2024-09-11 02:03:59', 0, NULL, 0, NULL, 1),
(27689, 21338, '3', 'St. Joseph\'s Institute of Technology ', '', 'B.Tech IT', '2024', 77.00, '', 1, '2024-09-11 04:32:22', 0, NULL, 0, NULL, 1),
(27690, 21342, '1', 'Bharathiyar', '', '', '2017', 81.40, '', 1, '2024-09-12 04:20:07', 0, NULL, 0, NULL, 1),
(27691, 21342, '2', 'Bharathiyar ', '', '', '2019', 61.80, '', 1, '2024-09-12 04:20:49', 0, NULL, 0, NULL, 1),
(27692, 21346, '4', 'Bharathithasan University ', '', 'Masters of international business ', '2024', 7.61, '', 1, '2024-09-12 04:33:11', 0, NULL, 0, NULL, 1),
(27693, 21343, '4', 'University', '', 'ME', '2023', 75.00, '', 1, '2024-09-12 04:35:41', 0, NULL, 0, NULL, 1),
(27694, 21351, '3', 'University ', '', 'BCA ', '2023', 83.50, '', 1, '2024-09-12 04:36:54', 0, NULL, 0, NULL, 1),
(27695, 21343, '3', 'University', '', 'BE- cse', '2020', 68.00, '', 1, '2024-09-12 04:37:57', 0, NULL, 0, NULL, 1),
(27696, 21340, '3', 'Jawaharlal Nehru technology University ', '', 'Btech', '2024', 70.00, '', 1, '2024-09-12 04:38:08', 0, NULL, 0, NULL, 1),
(27697, 21343, '1', 'Board', '', '', '2014', 63.00, '', 1, '2024-09-12 04:39:09', 1, '2024-09-12 04:40:20', 0, NULL, 1),
(27698, 21343, '2', 'Board', '', '', '2016', 55.00, '', 1, '2024-09-12 04:39:51', 0, NULL, 0, NULL, 1),
(27699, 21348, '4', 'Anna University ', '', 'MBA ', '2024', 78.30, '', 1, '2024-09-12 04:39:52', 0, NULL, 0, NULL, 1),
(27700, 21345, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2023', 70.00, '', 1, '2024-09-12 04:42:19', 0, NULL, 0, NULL, 1),
(27701, 21345, '2', 'State board ', '', '', '2019', 59.00, '', 1, '2024-09-12 04:42:54', 0, NULL, 0, NULL, 1),
(27702, 21347, '3', 'Jawaharlal Nehru technological University ananthapur', '', 'B pharmacy ', '2023', 85.00, '', 1, '2024-09-12 04:43:47', 0, NULL, 0, NULL, 1),
(27703, 21352, '3', 'Anand institute of higher technology ', '', 'Bachelor\'s degree', '2024', 80.00, '', 1, '2024-09-12 04:45:58', 0, NULL, 0, NULL, 1),
(27704, 21354, '3', 'Anna University ', '', 'BE', '2021', 70.00, '', 1, '2024-09-12 04:58:34', 0, NULL, 0, NULL, 1),
(27705, 21341, '3', 'S.V  University ', '', 'B.Sc (MSCS)', '2024', 70.00, '', 1, '2024-09-12 05:04:44', 0, NULL, 0, NULL, 1),
(27706, 21353, '3', 'Jawaharlal Nehru technological University ', '', 'BTech ', '2024', 75.00, '', 1, '2024-09-12 05:04:46', 0, NULL, 0, NULL, 1),
(27707, 21355, '3', 'Manonmanian sundaranar University ', '', '', '2023', 80.00, '', 1, '2024-09-12 05:05:20', 0, NULL, 0, NULL, 1),
(27708, 21341, '2', 'Saint France Junior  College ', '', '', '2021', 57.00, '', 1, '2024-09-12 05:05:44', 0, NULL, 0, NULL, 1),
(27709, 21357, '3', 'Madras University', '', 'B.com', '2015', 71.00, '', 1, '2024-09-12 05:23:55', 0, NULL, 0, NULL, 1),
(27710, 21358, '3', 'Tamilnadu Open University ', '', 'BCA', '2022', 75.00, '', 1, '2024-09-12 05:27:48', 0, NULL, 0, NULL, 1),
(27711, 21349, '3', 'Bharathidasan university ', '', 'BA', '2019', 100.00, '', 1, '2024-09-12 05:43:50', 0, NULL, 0, NULL, 1),
(27712, 21361, '2', 'P.c.k.g government higher secondary school ', '', 'BBA', '2018', 45.00, '', 1, '2024-09-12 05:49:54', 0, NULL, 0, NULL, 1),
(27713, 21364, '4', 'University of Madras ', '', 'Master of science  in information technology ', '2023', 73.00, '', 1, '2024-09-12 06:04:42', 0, NULL, 0, NULL, 1),
(27714, 21364, '3', 'University of Madras ', '', 'Bachelor of science in computer science ', '2020', 73.00, '', 1, '2024-09-12 06:05:14', 0, NULL, 0, NULL, 1),
(27715, 21364, '2', 'State board ', '', '', '2017', 68.05, '', 1, '2024-09-12 06:06:04', 0, NULL, 0, NULL, 1),
(27716, 21364, '1', 'State board ', '', '', '2015', 75.00, '', 1, '2024-09-12 06:06:28', 0, NULL, 0, NULL, 1),
(27717, 21367, '3', 'Anna University ', '', 'Be mechanical', '2017', 70.00, '', 1, '2024-09-12 06:13:00', 0, NULL, 0, NULL, 1),
(27718, 21365, '2', 'State governments ', '', '', '2018', 50.00, '', 1, '2024-09-12 06:14:14', 0, NULL, 0, NULL, 1),
(27719, 21365, '5', 'Central ', '', 'Instrument mechanic ', '2021', 89.00, '', 1, '2024-09-12 06:15:01', 0, NULL, 0, NULL, 1),
(27720, 21366, '3', 'Thiruvallur University', '', 'Chemistry', '2022', 78.00, '', 1, '2024-09-12 06:16:03', 0, NULL, 0, NULL, 1),
(27721, 21365, '3', 'Alagappa university ', '', 'B.Sc computer science ', '2021', 84.00, '', 1, '2024-09-12 06:16:26', 0, NULL, 0, NULL, 1),
(27722, 21363, '3', 'St. Joseph college', '', 'Bba', '2024', 75.00, '', 1, '2024-09-12 06:18:06', 0, NULL, 0, NULL, 1),
(27723, 21368, '3', 'St.joseph college', '', 'B.com cs', '2024', 74.00, '', 1, '2024-09-12 06:34:13', 0, NULL, 0, NULL, 1),
(27724, 21370, '3', 'anna university', '', 'BE', '2022', 7.98, '', 1, '2024-09-12 06:38:31', 0, NULL, 0, NULL, 1),
(27725, 21370, '2', 'general', '', '', '2016', 92.00, '', 1, '2024-09-12 06:39:09', 0, NULL, 0, NULL, 1),
(27726, 21371, '3', 'Pondicherry university ', '', 'B.sc,information technology ', '2022', 60.00, '', 1, '2024-09-12 06:42:47', 0, NULL, 0, NULL, 1),
(27727, 21374, '4', 'Madurai Kamaraj University', '', 'MCA', '2024', 70.00, '', 1, '2024-09-12 06:57:53', 0, NULL, 0, NULL, 1),
(27728, 21369, '3', 'Dr MGR Janaki collage arts and science for women', '', 'BCA', '2024', 80.00, '', 1, '2024-09-12 06:59:30', 0, NULL, 0, NULL, 1),
(27729, 21376, '3', 'Madras University ', '', 'B.com cS', '2024', 80.00, '', 1, '2024-09-12 07:07:35', 0, NULL, 0, NULL, 1),
(27730, 21377, '3', 'Autonomous ', '', 'Bachelor of business administration ', '2022', 6.31, '', 1, '2024-09-12 07:11:06', 0, NULL, 0, NULL, 1),
(27731, 21335, '3', 'Anna University ', '', 'BE - Civil Engineering ', '2020', 65.00, '', 1, '2024-09-12 07:16:37', 0, NULL, 0, NULL, 1),
(27732, 21378, '3', 'ANNA UNIVERSITY ', '', 'BE', '2024', 7.56, '', 1, '2024-09-12 07:34:16', 1, '2024-09-12 07:35:00', 0, NULL, 0),
(27733, 21378, '2', 'STATE BOARD ', '', '', '2017', 69.50, '', 1, '2024-09-12 07:35:01', 1, '2024-09-12 07:35:08', 0, NULL, 0),
(27734, 21378, '1', 'STATE BOARD ', '', '', '2015', 85.60, '', 1, '2024-09-12 07:35:33', 0, NULL, 0, NULL, 1),
(27735, 21378, '2', 'STATE BOARD ', '', '', '2017', 69.25, '', 1, '2024-09-12 07:35:52', 0, NULL, 0, NULL, 1),
(27736, 21378, '3', 'ANNA UNIVERSITY ', '', 'Bachelor of Engineering', '2024', 7.56, '', 1, '2024-09-12 07:36:20', 0, NULL, 0, NULL, 1),
(27737, 21362, '5', 'zion itt', '', 'bca', '2025', 60.00, '', 1, '2024-09-12 07:50:30', 0, NULL, 0, NULL, 1),
(27738, 21344, '3', 'Yogivemana university ', '', 'Bcom computer\'s ', '2019', 90.00, '', 1, '2024-09-12 07:54:35', 0, NULL, 0, NULL, 1),
(27739, 21379, '4', 'Mangalore university', '', 'BBA', '2020', 62.42, '', 1, '2024-09-12 07:54:57', 0, NULL, 0, NULL, 1),
(27740, 21381, '3', 'Jss science and technology university mysore ', '', 'B.E', '2022', 72.00, '', 1, '2024-09-12 07:56:04', 0, NULL, 0, NULL, 1),
(27741, 21382, '3', 'Anna University ', '', 'BE', '2023', 78.00, '', 1, '2024-09-12 08:06:17', 0, NULL, 0, NULL, 1),
(27742, 21383, '1', 'state board ', '', '', '2018', 75.20, '', 1, '2024-09-12 08:17:08', 0, NULL, 0, NULL, 1),
(27743, 21383, '2', 'state board', '', '', '2020', 72.50, '', 1, '2024-09-12 08:17:38', 0, NULL, 0, NULL, 1),
(27744, 21383, '3', 'srm university', '', 'bachelor degree', '2023', 7.72, '', 1, '2024-09-12 08:18:24', 0, NULL, 0, NULL, 1),
(27745, 21384, '3', 'Madras university', '', 'B. Com ( bank management) ', '2024', 75.00, '', 1, '2024-09-12 08:57:34', 0, NULL, 0, NULL, 1),
(27746, 9690, '3', 'Madras ', '', 'Bsc ', '2022', 80.00, '', 1, '2024-09-12 09:11:38', 0, NULL, 0, NULL, 1),
(27747, 21385, '3', 'Vels University ', '', 'B.com', '2020', 66.00, '', 1, '2024-09-12 09:14:22', 0, NULL, 0, NULL, 1),
(27748, 21386, '3', 'Thiruvalluvar university ', '', 'BA', '2022', 75.00, '', 1, '2024-09-12 09:36:42', 0, NULL, 0, NULL, 1),
(27749, 21387, '3', 'Periyar university ', '', 'Ba Tamil literature ', '2024', 59.50, '', 1, '2024-09-12 09:52:17', 0, NULL, 0, NULL, 1),
(27750, 21373, '3', 'Madras University ', '', 'Bachelors of business administration ', '2023', 69.00, '', 1, '2024-09-12 09:56:00', 0, NULL, 0, NULL, 1),
(27751, 21388, '3', 'University of madras ', '', 'BCA', '2024', 80.00, '', 1, '2024-09-12 10:00:52', 0, NULL, 0, NULL, 1),
(27752, 21390, '3', 'Madras University ', '', 'Bcom (Bank management)', '2024', 73.00, '', 1, '2024-09-12 12:49:27', 0, NULL, 0, NULL, 1),
(27753, 21391, '5', 'annai meenatchi nursing ', '', '', '2021', 90.00, '', 1, '2024-09-12 12:56:56', 0, NULL, 0, NULL, 1),
(27754, 21392, '3', 'C Kandhaswami naidu college for men', '', 'Bsc', '2021', 70.20, '', 1, '2024-09-12 01:20:39', 0, NULL, 0, NULL, 1),
(27755, 21393, '3', 'Bharath institute of Higher Education ', '', 'BSC Computer science ', '2023', 75.00, '', 1, '2024-09-13 03:40:24', 0, NULL, 0, NULL, 1),
(27756, 21393, '1', 'St ann\'s matriculation school ', '', '', '2017', 70.00, '', 1, '2024-09-13 03:41:38', 0, NULL, 0, NULL, 1),
(27757, 21393, '2', 'Little Jacky Higher secondery school ', '', '', '2019', 60.00, '', 1, '2024-09-13 03:42:31', 0, NULL, 0, NULL, 1),
(27758, 21395, '3', 'Anna university ', '', 'Bachelor of engineering ', '2024', 7.60, '', 1, '2024-09-13 04:42:06', 0, NULL, 0, NULL, 1),
(27759, 21397, '3', 'Thiruvalluvar University ', '', 'BCA ', '2024', 70.00, '', 1, '2024-09-13 04:45:21', 0, NULL, 0, NULL, 1),
(27760, 21396, '3', 'Bharathiar University ', '', 'Bsc computer science with data analytics ', '2024', 73.00, '', 1, '2024-09-13 04:54:30', 0, NULL, 0, NULL, 1),
(27761, 21396, '2', 'State board ', '', '', '2021', 88.00, '', 1, '2024-09-13 04:55:19', 1, '2024-09-13 04:56:10', 0, NULL, 1),
(27762, 21396, '1', 'State Board ', '', '', '2019', 85.00, '', 1, '2024-09-13 04:56:25', 0, NULL, 0, NULL, 1),
(27763, 21398, '3', 'University', '', 'Bsc(computer science) ', '2022', 81.00, '', 1, '2024-09-13 05:07:06', 0, NULL, 0, NULL, 1),
(27764, 21399, '3', 'Anna University ', '', 'Btech IT', '2024', 75.00, '', 1, '2024-09-13 05:32:29', 0, NULL, 0, NULL, 1),
(27765, 21401, '3', 'Even university', '', 'B. Com computers ', '2022', 84.00, '', 1, '2024-09-13 05:38:24', 0, NULL, 0, NULL, 1),
(27766, 21402, '3', 'K.S.Rangasamy College of Technology', '', 'B. e CSE', '2023', 83.40, '', 1, '2024-09-13 05:57:22', 0, NULL, 0, NULL, 1),
(27767, 21402, '2', 'State Board', '', '', '2019', 75.17, '', 1, '2024-09-13 05:57:55', 0, NULL, 0, NULL, 1),
(27768, 21402, '1', 'State Board', '', '', '2017', 93.60, '', 1, '2024-09-13 05:58:15', 0, NULL, 0, NULL, 1),
(27769, 21405, '1', 'State Board of Tamilnadu Education ', '', '', '2017', 90.20, '', 1, '2024-09-13 05:59:33', 0, NULL, 0, NULL, 1),
(27770, 21405, '2', 'State Board of Tamilnadu Education ', '', '', '2019', 62.00, '', 1, '2024-09-13 06:00:08', 0, NULL, 0, NULL, 1),
(27771, 21405, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2023', 81.00, '', 1, '2024-09-13 06:00:34', 0, NULL, 0, NULL, 1),
(27772, 21403, '3', 'K.S.Rangasamy College of Technology ', '', 'Bachelor of Engineering - Computer Science and Eng', '2023', 81.00, '', 1, '2024-09-13 06:01:55', 0, NULL, 0, NULL, 1),
(27773, 21403, '2', 'State Board ', '', '', '2019', 68.00, '', 1, '2024-09-13 06:02:35', 0, NULL, 0, NULL, 1),
(27774, 21403, '1', 'State Board ', '', '', '2017', 93.00, '', 1, '2024-09-13 06:02:56', 0, NULL, 0, NULL, 1),
(27775, 21394, '3', 'Anna University ', '', 'B.Tech', '2024', 77.10, '', 1, '2024-09-13 06:10:51', 0, NULL, 0, NULL, 1),
(27776, 21406, '3', 'Anna University ', '', 'BE', '2024', 89.00, '', 1, '2024-09-13 06:28:40', 0, NULL, 0, NULL, 1),
(27777, 21410, '3', 'Madras university', '', 'Bachelor of commerce', '2018', 67.00, '', 1, '2024-09-13 06:50:41', 0, NULL, 0, NULL, 1),
(27778, 21409, '3', 'madras universit ', '', 'ba tamil literapure', '2021', 70.00, '', 1, '2024-09-13 06:58:45', 0, NULL, 0, NULL, 1),
(27779, 21412, '3', 'madras university', '', 'b.com general', '2022', 81.00, '', 1, '2024-09-13 07:01:11', 0, NULL, 0, NULL, 1),
(27780, 21412, '1', 'state board', '', '', '2016', 60.00, '', 1, '2024-09-13 07:01:58', 0, NULL, 0, NULL, 1),
(27781, 21412, '2', 'state board', '', '', '2019', 58.00, '', 1, '2024-09-13 07:02:27', 0, NULL, 0, NULL, 1),
(27782, 21408, '3', 'Thiruvalluvar  university', '', 'bBA', '2024', 64.00, '', 1, '2024-09-13 07:10:11', 0, NULL, 0, NULL, 1),
(27783, 21411, '5', 'Anna university ', '', 'Diploma in Electronics and Communication Engineeri', '2014', 80.00, '', 1, '2024-09-13 07:25:27', 0, NULL, 0, NULL, 1),
(27784, 21413, '3', 'UNIVERSITY OF MADRAS ', '', 'B.Com', '2024', 85.00, '', 1, '2024-09-13 07:29:25', 0, NULL, 0, NULL, 1),
(27785, 21415, '3', 'Madras University ', '', 'Bcom Bank management ', '2024', 73.00, '', 1, '2024-09-13 07:31:25', 0, NULL, 0, NULL, 1),
(27786, 21407, '3', 'Thiruvalluvar University ', '', 'BBA', '2024', 76.00, '', 1, '2024-09-13 07:33:59', 0, NULL, 0, NULL, 1),
(27787, 21414, '5', 'Global Infotech Delhi', '', 'Diploma ', '2018', 100.00, '', 1, '2024-09-13 07:35:12', 0, NULL, 0, NULL, 1),
(27788, 21416, '3', 'JNTUA', '', 'B-Tech', '2024', 77.00, '', 1, '2024-09-13 07:52:03', 0, NULL, 0, NULL, 1),
(27789, 21417, '3', 'Bharath institute of higher education and research ', '', 'BTech IT ', '2024', 83.00, '', 1, '2024-09-13 08:00:55', 0, NULL, 0, NULL, 1),
(27790, 21417, '1', 'Krishnaveni english medium High school ', '', '', '2018', 70.00, '', 1, '2024-09-13 08:13:05', 0, NULL, 0, NULL, 1),
(27791, 21417, '2', 'narayan junior college ', '', '', '2020', 90.00, '', 1, '2024-09-13 08:13:48', 0, NULL, 0, NULL, 1),
(27792, 21418, '4', 'Madurai kamaraj university', '', 'M. Com', '2022', 83.00, '', 1, '2024-09-13 08:15:54', 0, NULL, 0, NULL, 1),
(27793, 21420, '3', 'bharathiyar', '', 'bachelor', '2021', 61.00, '', 1, '2024-09-13 08:21:18', 0, NULL, 0, NULL, 1),
(27794, 21419, '3', 'Periyar', '', 'BBA(CA) ', '2023', 6.30, '', 1, '2024-09-13 08:24:15', 0, NULL, 0, NULL, 1),
(27795, 21422, '3', 'Shri krishnaswamy college for women ', '', 'B.Sc computer science ', '2024', 85.00, '', 1, '2024-09-13 11:06:15', 0, NULL, 0, NULL, 1),
(27796, 21422, '2', 'State board ', '', '', '2021', 86.00, '', 1, '2024-09-13 11:06:58', 0, NULL, 0, NULL, 1),
(27797, 21422, '1', 'State Board ', '', '', '2019', 83.00, '', 1, '2024-09-13 11:07:23', 0, NULL, 0, NULL, 1),
(27798, 21330, '3', 'Bharathidasan university ', '', 'B.com', '2024', 80.00, '', 1, '2024-09-14 04:09:11', 0, NULL, 0, NULL, 1),
(27799, 21424, '3', 'Sri Ramakrishna College of Engineering ', '', 'B.E Agriculture Engineering ', '2023', 83.00, '', 1, '2024-09-14 04:17:52', 0, NULL, 0, NULL, 1),
(27800, 21425, '3', 'Bharathidasan University', '', 'B.Sc', '2022', 7.10, '', 1, '2024-09-14 04:34:24', 0, NULL, 0, NULL, 1),
(27801, 21426, '3', 'University collage of engineering thirukkuvalai', '', 'Be', '2019', 60.00, '', 1, '2024-09-14 04:48:47', 0, NULL, 0, NULL, 1),
(27802, 21428, '3', 'Alagappa', '', 'Bsc', '2020', 58.00, '', 1, '2024-09-14 04:54:59', 0, NULL, 0, NULL, 1),
(27803, 21427, '4', 'ethiraj college for women', '', 'm a - human resource management', '2024', 68.83, '', 1, '2024-09-14 04:56:37', 0, NULL, 0, NULL, 1),
(27804, 21427, '3', 'ethiraj college for women', '', 'b. com - honours', '2022', 70.35, '', 1, '2024-09-14 04:57:41', 0, NULL, 0, NULL, 1),
(27805, 21429, '3', 'anna university', '', '', '2022', 87.00, '', 1, '2024-09-14 05:07:30', 0, NULL, 0, NULL, 1),
(27806, 21430, '3', 'Autonomous ', '', 'BA.economics ', '2019', 80.00, '', 1, '2024-09-14 05:14:57', 0, NULL, 0, NULL, 1),
(27807, 20785, '3', 'Karnataka University of Dharwad', '', 'B.Sc', '2018', 56.19, '', 1, '2024-09-14 05:40:11', 0, NULL, 0, NULL, 1),
(27808, 21432, '2', 'Shivaji Maharaj University  kholapur ', '', '', '2019', 49.96, '', 1, '2024-09-14 05:46:40', 0, NULL, 0, NULL, 1),
(27809, 21434, '4', 'anna university', '', 'mba', '2024', 75.00, '', 1, '2024-09-14 05:52:03', 1, '2024-09-14 05:52:53', 0, NULL, 1),
(27810, 21433, '3', 'Banglore city University ', '', 'B.com', '2024', 75.80, '', 1, '2024-09-14 05:52:19', 0, NULL, 0, NULL, 1),
(27811, 21339, '3', 'Bharathidasan university ', '', 'B.com(ca)', '2024', 64.00, '', 1, '2024-09-14 05:58:27', 0, NULL, 0, NULL, 1),
(27812, 21435, '3', 'S.A Engineering college ', '', 'B.E', '2022', 80.10, '', 1, '2024-09-14 06:11:10', 1, '2024-09-14 06:11:35', 0, NULL, 1),
(27813, 21431, '3', 'Madras university ', '', 'Bcom(Honours)', '2024', 86.00, '', 1, '2024-09-14 06:30:51', 0, NULL, 0, NULL, 1),
(27814, 21439, '2', 'Sv ', '', 'Bcom', '2021', 60.00, '', 1, '2024-09-14 06:35:55', 1, '2024-09-14 06:38:12', 0, NULL, 1),
(27815, 21438, '2', 'Sv', '', 'Bsc (mscs)', '2021', 60.00, '', 1, '2024-09-14 06:38:18', 1, '2024-09-14 06:39:59', 0, NULL, 0),
(27816, 21437, '3', 'Madras University ', '', 'B. Com general ', '2015', 61.00, '', 1, '2024-09-14 06:39:53', 0, NULL, 0, NULL, 1),
(27817, 21438, '2', 'Sv', '', '', '2021', 60.00, '', 1, '2024-09-14 06:40:13', 0, NULL, 0, NULL, 1),
(27818, 21440, '3', 'Anna University ', '', 'B.E computer science and engineering ', '2024', 7.40, '', 1, '2024-09-14 06:40:31', 1, '2024-09-14 06:41:09', 0, NULL, 1),
(27819, 21440, '2', 'State board ', '', '', '2019', 72.00, '', 1, '2024-09-14 06:41:56', 0, NULL, 0, NULL, 1),
(27820, 21440, '1', 'State board ', '', '', '2017', 85.00, '', 1, '2024-09-14 06:43:00', 0, NULL, 0, NULL, 1),
(27821, 21441, '3', 'Bharathithasan university', '', 'B.com', '2023', 63.00, '', 1, '2024-09-14 07:13:21', 0, NULL, 0, NULL, 1),
(27822, 21442, '3', 'aRTS AND SCIENCE COLLEGE NAGAPATHINAM', '', 'BA TAMIL', '2024', 78.00, '', 104, '2024-09-14 12:53:54', 0, NULL, 0, NULL, 1),
(27823, 21444, '3', 'Paavai Engineering College ', '', 'BE', '2022', 79.00, '', 1, '2024-09-14 07:47:37', 0, NULL, 0, NULL, 1),
(27824, 21445, '4', 'Annamalai University', '', 'MCA', '2024', 66.00, '', 1, '2024-09-14 07:56:07', 0, NULL, 0, NULL, 1),
(27825, 21447, '3', 'Periyar university', '', 'B. Com Computer Application', '2023', 6.67, '', 1, '2024-09-14 09:44:56', 0, NULL, 0, NULL, 1),
(27826, 21448, '3', 'University of Madras', '', 'B.A. English Literature ', '2023', 74.00, '', 1, '2024-09-14 10:27:58', 0, NULL, 0, NULL, 1),
(27827, 21449, '3', 'Bharadhiasan university ', '', 'BCA', '2021', 70.00, '', 1, '2024-09-14 11:10:26', 0, NULL, 0, NULL, 1),
(27828, 21452, '3', 'Purnia college Purnia ', '', 'BBA', '2023', 78.00, '', 1, '2024-09-14 06:12:34', 0, NULL, 0, NULL, 1),
(27829, 21453, '4', 'Matriculation ', '', 'MBA', '2024', 72.00, '', 1, '2024-09-15 01:40:09', 0, NULL, 0, NULL, 1),
(27830, 21455, '3', 'Tamilnadu dr mgr medical University ', '', 'B.sc', '2024', 60.00, '', 1, '2024-09-15 04:49:51', 0, NULL, 0, NULL, 1),
(27831, 21457, '2', 'Government higher secondary school', '', 'BBA(ca)', '2019', 81.00, '', 1, '2024-09-16 04:31:57', 0, NULL, 0, NULL, 1),
(27832, 21459, '1', 'state board of tamilnadu', '', '', '2018', 93.00, '', 1, '2024-09-16 04:41:09', 0, NULL, 0, NULL, 1),
(27833, 21459, '2', 'state board of tamilnadu', '', '', '2020', 81.20, '', 1, '2024-09-16 04:41:53', 0, NULL, 0, NULL, 1),
(27834, 21459, '3', 'university of madras', '', 'bca', '2023', 85.00, '', 1, '2024-09-16 04:42:45', 0, NULL, 0, NULL, 1),
(27835, 21458, '3', 'Madras University ', '', '', '2024', 75.00, '', 1, '2024-09-16 04:44:52', 0, NULL, 0, NULL, 1),
(27836, 21460, '3', 'Madras University ', '', 'Bsc biochemistry ', '2022', 90.00, '', 1, '2024-09-16 05:00:44', 0, NULL, 0, NULL, 1),
(27837, 21461, '4', 'Anna University ', '', 'Bachlore of Computer Science and Engineering', '2024', 7.26, '', 1, '2024-09-16 05:11:28', 0, NULL, 0, NULL, 1),
(27838, 21461, '1', 'Tamilnadu', '', '', '2018', 81.20, '', 1, '2024-09-16 05:11:56', 0, NULL, 0, NULL, 1),
(27839, 21461, '2', 'Tamilnadu', '', '', '2020', 63.70, '', 1, '2024-09-16 05:12:20', 0, NULL, 0, NULL, 1),
(27840, 21462, '3', 'Anna University ', '', 'BE CSE', '2024', 87.00, '', 1, '2024-09-16 05:13:25', 0, NULL, 0, NULL, 1),
(27841, 21462, '2', 'State board of tamilnadu ', '', 'BE CSE', '2020', 66.00, '', 1, '2024-09-16 05:14:32', 0, NULL, 0, NULL, 1),
(27842, 21462, '1', 'CBSE', '', '', '2018', 65.00, '', 1, '2024-09-16 05:15:08', 0, NULL, 0, NULL, 1),
(27843, 21463, '3', 'Manonmaniam Sundarnar University ', '', 'BA Tamil', '2024', 45.00, '', 1, '2024-09-16 05:20:06', 0, NULL, 0, NULL, 1),
(27844, 21175, '3', 'national college ', '', 'bsc  microbiology', '2024', 83.00, '', 1, '2024-09-16 05:31:39', 1, '2024-09-16 05:35:46', 0, NULL, 0),
(27845, 21465, '4', 'Anna university ', '', 'MBA', '2019', 58.00, '', 1, '2024-09-16 05:41:51', 0, NULL, 0, NULL, 1),
(27846, 21466, '2', 'State Board ', '', '', '2021', 56.00, '', 1, '2024-09-16 05:46:35', 0, NULL, 0, NULL, 1),
(27847, 21451, '3', 'Madras university ', '', 'Bca', '2024', 81.00, '', 1, '2024-09-16 05:51:15', 0, NULL, 0, NULL, 1),
(27848, 21464, '3', 'Karaikudi university ', '', 'B.com', '2023', 57.00, '', 1, '2024-09-16 06:02:13', 0, NULL, 0, NULL, 1),
(27849, 21468, '3', 'Vtu', '', 'BE in civil', '2019', 75.00, '', 1, '2024-09-16 06:04:29', 0, NULL, 0, NULL, 1),
(27850, 21469, '3', 'Mardar ', '', 'BA Economics ', '2022', 70.00, '', 1, '2024-09-16 06:11:11', 0, NULL, 0, NULL, 1),
(27851, 21471, '4', 'Anna University ', '', 'MBA ', '2024', 85.00, '', 1, '2024-09-16 06:11:52', 1, '2024-09-16 06:12:22', 0, NULL, 0),
(27852, 21471, '4', 'Anna University ', '', 'MBA ', '2024', 85.00, '', 1, '2024-09-16 06:12:26', 0, NULL, 0, NULL, 1),
(27853, 21470, '1', 'Tamil Nadu state Board', '', '', '2017', 89.70, '', 1, '2024-09-16 06:16:36', 0, NULL, 0, NULL, 1),
(27854, 21470, '2', 'Tamil Nadu State Board ', '', '', '2019', 79.84, '', 1, '2024-09-16 06:17:01', 0, NULL, 0, NULL, 1),
(27855, 21470, '3', 'Periyar Maniammai Institute of Science and Technology ', '', 'BCA ', '2022', 88.00, '', 1, '2024-09-16 06:17:45', 0, NULL, 0, NULL, 1),
(27856, 21470, '4', 'Periyar Maniammai Institute of Science and Technology ', '', 'MCA', '2024', 89.00, '', 1, '2024-09-16 06:18:12', 0, NULL, 0, NULL, 1),
(27857, 21473, '3', 'Madras university', '', 'Bsc computer science', '2024', 87.00, '', 1, '2024-09-16 06:20:00', 0, NULL, 0, NULL, 1),
(27858, 21472, '4', 'Autonomous ', '', 'M.com', '2022', 85.00, '', 1, '2024-09-16 06:22:13', 0, NULL, 0, NULL, 1),
(27859, 21474, '4', 'SASTRA University ', '', 'M.Sc Physics ', '2024', 70.00, '', 1, '2024-09-16 06:27:05', 0, NULL, 0, NULL, 1),
(27860, 21476, '4', 'Periyar university ', '', 'MA english ', '2023', 83.00, '', 1, '2024-09-16 07:02:03', 1, '2024-09-16 07:05:14', 0, NULL, 0),
(27861, 21476, '1', 'State board ', '', 'BA English ', '2016', 70.00, '', 1, '2024-09-16 07:03:16', 1, '2024-09-16 07:08:39', 0, NULL, 0),
(27862, 21476, '2', 'State board ', '', '', '2018', 70.00, '', 1, '2024-09-16 07:04:07', 1, '2024-09-16 07:08:29', 0, NULL, 0),
(27863, 21476, '1', 'State board ', '', '', '2016', 70.00, '', 1, '2024-09-16 07:09:28', 0, NULL, 0, NULL, 1),
(27864, 21476, '2', 'State board ', '', '', '2018', 72.00, '', 1, '2024-09-16 07:10:06', 0, NULL, 0, NULL, 1),
(27865, 21476, '3', 'Periyar university ', '', 'BA English ', '2021', 75.00, '', 1, '2024-09-16 07:10:44', 0, NULL, 0, NULL, 1),
(27866, 21476, '4', 'Periyar university ', '', 'MA English ', '2023', 83.00, '', 1, '2024-09-16 07:11:22', 0, NULL, 0, NULL, 1),
(27867, 21480, '3', 'Autonomous', '', 'BA', '2024', 69.00, '', 1, '2024-09-16 07:14:50', 0, NULL, 0, NULL, 1),
(27868, 21482, '1', 'State board ', '', '', '2016', 68.00, '', 1, '2024-09-16 07:20:50', 0, NULL, 0, NULL, 1),
(27869, 21482, '2', 'State board ', '', '', '2016', 73.00, '', 1, '2024-09-16 07:21:14', 0, NULL, 0, NULL, 1),
(27870, 21482, '3', 'Bharathidhasan University ', '', 'BBA', '2018', 78.00, '', 1, '2024-09-16 07:22:40', 0, NULL, 0, NULL, 1),
(27871, 21482, '4', 'Annamalai University ', '', 'M.Com ', '2023', 83.00, '', 1, '2024-09-16 07:23:17', 0, NULL, 0, NULL, 1),
(27872, 21175, '3', 'Bharathidasan University', '', 'bsc Microbiology ', '2024', 78.00, '', 1, '2024-09-16 07:36:47', 0, NULL, 0, NULL, 1),
(27873, 21478, '4', 'Dr. RKS Arts and Science ', '', 'M.com', '2023', 65.00, '', 1, '2024-09-16 07:37:37', 0, NULL, 0, NULL, 1),
(27874, 21478, '3', 'Dr. RKS arts and science', '', 'B.com', '2021', 61.00, '', 1, '2024-09-16 07:41:27', 0, NULL, 0, NULL, 1),
(27875, 21484, '4', 'Bharathidasan University ', '', 'M. Sc computer science ', '2022', 85.00, '', 1, '2024-09-16 08:23:52', 0, NULL, 0, NULL, 1),
(27876, 21467, '3', 'University ', '', 'B.com', '2024', 78.00, '', 1, '2024-09-16 08:27:38', 0, NULL, 0, NULL, 1),
(27877, 21485, '4', 'university', '', 'mba', '2024', 75.00, '', 1, '2024-09-16 09:11:15', 0, NULL, 0, NULL, 1),
(27878, 21485, '4', 'unib ', '', 'mba', '2024', 75.00, '', 1, '2024-09-16 09:12:17', 0, NULL, 0, NULL, 1),
(27879, 21487, '3', 'Madras University ', '', 'Bsc computer science ', '2021', 60.00, '', 1, '2024-09-16 09:57:44', 0, NULL, 0, NULL, 1),
(27880, 21486, '3', 'Manonmaniyam sundharanar university ', '', 'BA tamil', '2021', 84.00, '', 1, '2024-09-16 10:07:15', 1, '2024-09-16 10:08:16', 0, NULL, 1),
(27881, 21488, '3', 'Gurunanak college ', '', 'BBA', '2024', 72.00, '', 1, '2024-09-16 10:16:02', 0, NULL, 0, NULL, 1),
(27882, 21479, '3', 'Barathidasan university', '', 'B. Com', '2024', 73.15, '', 1, '2024-09-16 10:45:54', 0, NULL, 0, NULL, 1),
(27883, 21490, '4', 'Bishop heber trichy', '', 'Mca', '2023', 70.00, '', 1, '2024-09-16 10:55:16', 0, NULL, 0, NULL, 1),
(27884, 21491, '3', 'Vel tech University ', '', 'B.Tech in Computer science and engineering ', '2025', 8.30, '', 1, '2024-09-16 11:22:26', 0, NULL, 0, NULL, 1),
(27885, 21492, '4', 'Bharathidasan university', '', 'M. Com', '2024', 100.00, '', 1, '2024-09-16 12:04:29', 1, '2024-09-16 12:07:19', 0, NULL, 0),
(27886, 21492, '4', 'Swami dayanandha college of arts and science', '', 'M. Com', '2024', 100.00, '', 1, '2024-09-16 12:06:54', 1, '2024-09-16 12:07:28', 0, NULL, 0),
(27887, 21492, '4', 'Swami dayanandha college of arts and science', '', 'M. Com', '2024', 100.00, '', 1, '2024-09-16 12:08:41', 1, '2024-09-16 12:11:47', 0, NULL, 0),
(27888, 21492, '4', 'Bharathidasan university', '', 'M. Com', '2024', 100.00, '', 1, '2024-09-16 12:10:51', 1, '2024-09-16 12:11:50', 0, NULL, 0),
(27889, 21492, '4', 'Swami dayanandha college of arts and science', '', 'M. Com', '2024', 100.00, '', 1, '2024-09-16 12:12:48', 0, NULL, 0, NULL, 1),
(27890, 21493, '4', 'Hindustan university ', '', 'Mca', '2024', 73.00, '', 1, '2024-09-16 01:20:45', 0, NULL, 0, NULL, 1),
(27891, 21496, '3', 'Anna University ', '', 'Computer science Engineering ', '2024', 81.00, '', 1, '2024-09-17 04:26:11', 0, NULL, 0, NULL, 1),
(27892, 21496, '1', 'State board ', '', '', '2018', 95.00, '', 1, '2024-09-17 04:26:34', 0, NULL, 0, NULL, 1),
(27893, 21496, '2', 'State board ', '', '', '2020', 78.00, '', 1, '2024-09-17 04:26:52', 0, NULL, 0, NULL, 1),
(27894, 21497, '3', 'Bharathidasan university ', '', 'B.C.a', '2024', 6.57, '', 1, '2024-09-17 04:42:49', 0, NULL, 0, NULL, 1),
(27895, 12378, '3', 'Ethiraj college for women ', '', 'BCOM ', '2022', 65.00, '', 1, '2024-09-17 04:43:07', 0, NULL, 0, NULL, 1),
(27896, 12378, '2', 'Matriculation government  ', '', '', '2019', 73.00, '', 1, '2024-09-17 04:44:27', 0, NULL, 0, NULL, 1),
(27897, 12378, '1', 'Matriculation  ', '', '', '2017', 75.00, '', 1, '2024-09-17 04:45:05', 0, NULL, 0, NULL, 1),
(27898, 21498, '1', 'state board', '', '', '2014', 91.50, '', 1, '2024-09-17 04:53:18', 0, NULL, 0, NULL, 1),
(27899, 21498, '2', 'state board', '', '', '2016', 83.25, '', 1, '2024-09-17 04:53:48', 0, NULL, 0, NULL, 1),
(27900, 21499, '1', 'State board', '', '', '2015', 83.00, '', 1, '2024-09-17 04:54:18', 0, NULL, 0, NULL, 1),
(27901, 21498, '3', 'university', '', 'bachelor of engineering', '2020', 7.90, '', 1, '2024-09-17 04:55:06', 0, NULL, 0, NULL, 1),
(27902, 21500, '1', 'State board ', '', '', '2015', 70.00, '', 1, '2024-09-17 04:55:38', 0, NULL, 0, NULL, 1),
(27903, 21500, '2', 'State board ', '', '', '2017', 69.00, '', 1, '2024-09-17 04:56:22', 0, NULL, 0, NULL, 1),
(27904, 21499, '2', 'State board ', '', '', '2017', 74.00, '', 1, '2024-09-17 04:56:35', 0, NULL, 0, NULL, 1),
(27905, 21500, '3', 'Madras University ', '', 'B.com accounting finance ', '2020', 65.00, '', 1, '2024-09-17 04:56:55', 0, NULL, 0, NULL, 1),
(27906, 21500, '4', 'Madras University ', '', 'MBA Financial management ', '2023', 80.00, '', 1, '2024-09-17 04:58:10', 0, NULL, 0, NULL, 1),
(27907, 21501, '3', 'Bharathidasan University ', '', 'BBA', '2023', 69.00, '', 1, '2024-09-17 05:33:53', 0, NULL, 0, NULL, 1),
(27908, 21502, '3', 'Barathidasan University', '', 'BSc Computer Science ', '2018', 61.00, '', 1, '2024-09-17 05:41:14', 0, NULL, 0, NULL, 1),
(27909, 21502, '1', 'Matriculation', '', '', '2013', 91.00, '', 1, '2024-09-17 05:42:44', 0, NULL, 0, NULL, 1),
(27910, 21502, '2', 'Matriculation ', '', '', '2015', 80.00, '', 1, '2024-09-17 05:43:08', 0, NULL, 0, NULL, 1),
(27911, 21503, '4', 'Padmavati University ', '', 'B.Sc.(mscs)', '2023', 75.00, '', 1, '2024-09-17 06:27:37', 0, NULL, 0, NULL, 1),
(27912, 21504, '3', 'Sadakathullah appa college tirunelveli', '', 'B.Sc information technology ', '2022', 71.00, '', 1, '2024-09-17 06:27:54', 0, NULL, 0, NULL, 1),
(27913, 21507, '3', 'Panimalar Engineering College', '', 'ECE', '2024', 86.10, '', 1, '2024-09-17 06:33:20', 0, NULL, 0, NULL, 1),
(27914, 21505, '3', 'University of Madras', '', 'B.com', '2022', 68.00, '', 1, '2024-09-17 06:34:02', 0, NULL, 0, NULL, 1),
(27915, 21506, '3', 'Vishwabharti Vidya parishat', '', 'Btech', '2021', 70.00, '', 1, '2024-09-17 06:35:20', 0, NULL, 0, NULL, 1),
(27916, 21508, '3', 'university of Madras', '', 'BCA', '2024', 50.00, '', 1, '2024-09-17 06:52:43', 0, NULL, 0, NULL, 1),
(27917, 21515, '4', 'Anna University ', '', 'MBA', '2024', 75.00, '', 1, '2024-09-17 08:05:48', 0, NULL, 0, NULL, 1),
(27918, 21516, '3', 'Bharadhidhasan University ', '', 'It', '2023', 100.00, '', 1, '2024-09-17 08:18:58', 0, NULL, 0, NULL, 1),
(27919, 21517, '3', 'Crescent university ', '', 'B.tech', '2017', 7.59, '', 1, '2024-09-17 08:44:50', 0, NULL, 0, NULL, 1),
(27920, 21520, '4', 'Bharathiyar university', '', 'MBA', '2025', 72.00, '', 1, '2024-09-17 09:14:00', 0, NULL, 0, NULL, 1),
(27921, 21519, '4', 'Annamalai University, Chidambaram', '', 'MBA Financial Management', '2024', 74.00, '', 1, '2024-09-17 09:20:00', 0, NULL, 0, NULL, 1),
(27922, 21521, '3', 'Bharathidasan university', '', 'B com', '2022', 77.00, '', 1, '2024-09-17 09:58:39', 0, NULL, 0, NULL, 1),
(27923, 21522, '3', 'Sri Ramachandra University', '', 'Pharmacy', '2022', 60.00, '', 1, '2024-09-17 10:11:14', 0, NULL, 0, NULL, 1),
(27924, 21523, '4', 'M. S. University ', '', 'M. Com', '2024', 7.05, '', 1, '2024-09-17 10:13:48', 0, NULL, 0, NULL, 1),
(27925, 21518, '3', 'Bharathiar University ', '', 'BCA', '2024', 93.00, '', 1, '2024-09-17 10:16:14', 0, NULL, 0, NULL, 1),
(27926, 21524, '3', 'justice basheer Ahmed Sayeed college for womens', '', 'b.com', '2024', 60.00, '', 1, '2024-09-17 12:41:39', 0, NULL, 0, NULL, 1),
(27927, 21525, '3', 'University of madras ', '', 'B.com ', '2021', 68.00, '', 1, '2024-09-17 12:46:25', 0, NULL, 0, NULL, 1),
(27928, 21530, '3', 'Anna University ', '', 'B.E.(ECE)', '2023', 81.00, '', 1, '2024-09-18 04:33:54', 0, NULL, 0, NULL, 1),
(27929, 21530, '2', 'State', '', '', '2019', 82.50, '', 1, '2024-09-18 04:34:40', 0, NULL, 0, NULL, 1),
(27930, 21530, '1', 'State', '', '', '2017', 98.00, '', 1, '2024-09-18 04:34:53', 0, NULL, 0, NULL, 1),
(27931, 21531, '3', 'Thiruvalluvar university ', '', 'BCA ', '2023', 87.00, '', 1, '2024-09-18 04:45:38', 0, NULL, 0, NULL, 1),
(27932, 21531, '2', 'Angavai sangavi govt girls school ', '', '', '2020', 71.00, '', 1, '2024-09-18 04:46:19', 0, NULL, 0, NULL, 1),
(27933, 21531, '1', 'Angavai sangavi govt girls school ', '', '', '2018', 81.00, '', 1, '2024-09-18 04:46:39', 0, NULL, 0, NULL, 1),
(27934, 21533, '3', 'Avvm sri pushpam clg Autonomous', '', 'Bsc physics', '2021', 80.00, '', 1, '2024-09-18 04:53:55', 0, NULL, 0, NULL, 1),
(27935, 21514, '5', 'Siga polytechnic College ', '', 'Printing process', '2024', 72.00, '', 1, '2024-09-18 04:56:18', 0, NULL, 0, NULL, 1),
(27936, 21509, '3', 'Thiruvalluvar university ', '', 'Bachelor of business administration ', '2023', 72.00, '', 1, '2024-09-18 05:04:56', 0, NULL, 0, NULL, 1),
(27937, 21509, '1', 'Tamilnadu school board ', '', '', '2020', 62.00, '', 1, '2024-09-18 05:05:40', 1, '2024-09-18 05:06:03', 0, NULL, 0),
(27938, 21509, '2', 'Tamilnadu school board ', '', '', '2020', 68.00, '', 1, '2024-09-18 05:06:17', 0, NULL, 0, NULL, 1),
(27939, 21509, '1', 'Tamilnadu school board ', '', '', '2018', 75.00, '', 1, '2024-09-18 05:06:38', 0, NULL, 0, NULL, 1),
(27940, 21535, '4', 'Madurai kamaraj university ', '', 'MCA', '2023', 71.82, '', 1, '2024-09-18 05:12:59', 0, NULL, 0, NULL, 1),
(27941, 21537, '3', 'Puducherry Technological University ', '', 'B. tech', '2024', 83.00, '', 1, '2024-09-18 05:13:42', 0, NULL, 0, NULL, 1),
(27942, 21537, '1', 'State board ', '', '', '2018', 85.60, '', 1, '2024-09-18 05:14:07', 0, NULL, 0, NULL, 1),
(27943, 21535, '3', 'Madurai kamaraj university ', '', 'BCA', '2020', 73.55, '', 1, '2024-09-18 05:14:26', 0, NULL, 0, NULL, 1),
(27944, 21537, '2', 'State board ', '', '', '2020', 83.20, '', 1, '2024-09-18 05:14:32', 0, NULL, 0, NULL, 1),
(27945, 21536, '3', 'University of Madras ', '', 'BSc.Chemistry', '2024', 70.00, '', 1, '2024-09-18 05:19:41', 0, NULL, 0, NULL, 1),
(27946, 21536, '2', 'State board of examination ', '', '', '2021', 88.81, '', 1, '2024-09-18 05:21:03', 0, NULL, 0, NULL, 1),
(27947, 21536, '1', 'State board of Examination ', '', '', '2019', 82.80, '', 1, '2024-09-18 05:21:40', 0, NULL, 0, NULL, 1),
(27948, 21532, '3', 'Madras University ', '', 'B.com information systems Management ', '2022', 60.00, '', 1, '2024-09-18 05:23:35', 0, NULL, 0, NULL, 1),
(27949, 21534, '3', 'Madras University ', '', 'BBA', '2023', 72.00, '', 1, '2024-09-18 05:24:00', 0, NULL, 0, NULL, 1),
(27950, 21532, '1', 'State', '', '', '2017', 75.00, '', 1, '2024-09-18 05:24:41', 1, '2024-09-18 05:25:51', 0, NULL, 0),
(27951, 21532, '2', 'State ', '', '', '2019', 62.00, '', 1, '2024-09-18 05:25:16', 0, NULL, 0, NULL, 1),
(27952, 21532, '1', 'State', '', '', '2017', 75.00, '', 1, '2024-09-18 05:26:10', 0, NULL, 0, NULL, 1),
(27953, 21534, '1', 'State ', '', '', '2017', 64.00, '', 1, '2024-09-18 05:26:12', 0, NULL, 0, NULL, 1),
(27954, 21534, '2', 'State ', '', '', '2019', 61.00, '', 1, '2024-09-18 05:27:13', 0, NULL, 0, NULL, 1),
(27955, 21539, '4', 'Bharathiar University ', '', 'M.Sc computer science ', '2023', 73.88, '', 1, '2024-09-18 05:33:14', 0, NULL, 0, NULL, 1),
(27956, 21538, '3', 'hindustan university', '', '', '2023', 81.00, '', 1, '2024-09-18 05:36:40', 0, NULL, 0, NULL, 1),
(27957, 21542, '3', 'Madurai Kamaraj University ', '', 'B.com(computer application)', '2023', 70.00, '', 1, '2024-09-18 05:58:35', 1, '2024-09-18 05:59:12', 0, NULL, 0),
(27958, 21543, '3', 'madras university', '', 'bca ', '2024', 60.00, '', 1, '2024-09-18 05:59:21', 0, NULL, 0, NULL, 1),
(27959, 21540, '3', 'anna university', '', 'b e', '2024', 81.00, '', 1, '2024-09-18 05:59:30', 0, NULL, 0, NULL, 1),
(27960, 21541, '4', 'Anna University ', '', 'master of business administration ', '2023', 7.73, '', 1, '2024-09-18 06:02:51', 0, NULL, 0, NULL, 1),
(27961, 21542, '3', 'Madurai Kamaraj University ', '', 'B.com(computer application)', '2023', 70.00, '', 1, '2024-09-18 06:08:57', 0, NULL, 0, NULL, 1),
(27962, 21541, '3', 'Manonmaniam sundaranar University ', '', 'Bachelor of business administration ', '2021', 7.61, '', 1, '2024-09-18 06:10:51', 0, NULL, 0, NULL, 1),
(27963, 21545, '3', 'Madras university ', '', 'B. Com Corporate Sectarship', '2024', 40.00, '', 1, '2024-09-18 06:18:17', 0, NULL, 0, NULL, 1),
(27964, 21546, '3', 'M.S.S. wakf Board College ', '', 'B.sc(Computer Science)', '2020', 68.00, '', 1, '2024-09-18 06:19:26', 0, NULL, 0, NULL, 1),
(27965, 21541, '2', 'State board of school ', '', '', '2018', 64.83, '', 1, '2024-09-18 06:21:24', 0, NULL, 0, NULL, 1),
(27966, 21547, '4', 'University of Madras ', '', 'MBA ', '2024', 80.00, '', 1, '2024-09-18 06:29:44', 0, NULL, 0, NULL, 1),
(27967, 21548, '3', 'Bharathiyar university', '', 'Bsc it', '2020', 69.50, '', 1, '2024-09-18 06:43:06', 0, NULL, 0, NULL, 1),
(27968, 21550, '3', 'anna University ', '', 'b.e', '2016', 85.00, '', 1, '2024-09-18 06:47:40', 0, NULL, 0, NULL, 1),
(27969, 21528, '5', 'Shine community college', '', '', '2021', 80.00, '', 1, '2024-09-18 06:48:42', 0, NULL, 0, NULL, 1),
(27970, 21528, '1', 'State', '', '', '2017', 75.00, '', 1, '2024-09-18 06:49:23', 0, NULL, 0, NULL, 1),
(27971, 21528, '2', 'State', '', '', '2019', 70.00, '', 1, '2024-09-18 06:49:57', 0, NULL, 0, NULL, 1),
(27972, 21551, '3', 'Barathidhasan university ', '', 'Bsc company ', '2003', 70.00, '', 1, '2024-09-18 06:53:16', 0, NULL, 0, NULL, 1),
(27973, 21549, '3', 'Krishna university', '', 'Bsc', '2023', 85.00, '', 1, '2024-09-18 07:01:31', 0, NULL, 0, NULL, 1),
(27974, 21544, '1', 'State', '', '', '2018', 57.00, '', 1, '2024-09-18 07:19:15', 0, NULL, 0, NULL, 1),
(27975, 21544, '2', 'State', '', '', '2020', 50.00, '', 1, '2024-09-18 07:20:00', 0, NULL, 0, NULL, 1),
(27976, 21544, '3', 'K.c.s kasi Nadar college of arts and science ', '', 'BCA', '2023', 78.00, '', 1, '2024-09-18 07:21:41', 0, NULL, 0, NULL, 1),
(27977, 21553, '3', 'annauniversity', '', 'be', '2024', 70.00, '', 1, '2024-09-18 07:55:27', 0, NULL, 0, NULL, 1),
(27978, 21554, '3', 'The New College ', '', 'BCA', '2021', 61.00, '', 1, '2024-09-18 07:57:44', 0, NULL, 0, NULL, 1),
(27979, 21555, '3', 'Madras University of Chennai (IDE)', '', 'BCA', '2024', 72.00, '', 1, '2024-09-18 07:59:37', 0, NULL, 0, NULL, 1),
(27980, 21555, '5', 'Ramakrishna mission polytechnic College ', '', 'Diploma in computer engineering ', '2020', 85.00, '', 1, '2024-09-18 08:00:50', 0, NULL, 0, NULL, 1),
(27981, 21559, '3', 'Anna University ', '', 'B.E. CSC ', '2019', 67.00, '', 1, '2024-09-18 08:12:15', 0, NULL, 0, NULL, 1),
(27982, 21558, '3', 'Thiruvalluvar university ', '', 'B com ', '2024', 65.00, '', 1, '2024-09-18 08:24:43', 0, NULL, 0, NULL, 1),
(27983, 21557, '3', 'Thiruvalluvar university ', '', 'B.com', '2024', 64.00, '', 1, '2024-09-18 08:25:57', 0, NULL, 0, NULL, 1),
(27984, 21561, '3', 'Autonomous', '', 'B.com general', '2024', 67.00, '', 1, '2024-09-18 09:37:19', 0, NULL, 0, NULL, 1),
(27985, 21563, '3', 'BHARATH INSTITUTE OF HIGHER EDUCATION AND RESEARCH ', '', 'B.TECH', '2024', 70.00, '', 1, '2024-09-18 02:07:45', 0, NULL, 0, NULL, 1),
(27986, 21564, '3', 'Madras University ', '', 'Bcom', '2007', 75.00, '', 1, '2024-09-18 02:26:45', 0, NULL, 0, NULL, 1),
(27987, 21564, '1', 'Railway colony High school ', '', '', '2001', 87.00, '', 1, '2024-09-18 02:28:27', 0, NULL, 0, NULL, 1),
(27988, 21564, '2', 'ICF Higher secondary school ', '', '', '2003', 67.00, '', 1, '2024-09-18 02:29:14', 0, NULL, 0, NULL, 1),
(27989, 21566, '4', 'anna university', '', 'b.e eee', '2024', 8.50, '', 1, '2024-09-18 04:26:41', 0, NULL, 0, NULL, 1),
(27990, 21566, '2', 'state board', '', '', '2020', 5.90, '', 1, '2024-09-18 04:27:29', 0, NULL, 0, NULL, 1),
(27991, 21566, '1', 'state board', '', '', '2018', 63.20, '', 1, '2024-09-18 04:28:32', 0, NULL, 0, NULL, 1),
(27992, 21568, '3', 'SRM Trichy Arts and Science College ', '', 'Bachelor of Computer Application ', '2024', 82.00, '', 1, '2024-09-19 02:58:12', 0, NULL, 0, NULL, 1),
(27993, 21568, '2', 'State Board ', '', '', '2021', 85.00, '', 1, '2024-09-19 02:58:40', 0, NULL, 0, NULL, 1),
(27994, 21568, '1', 'State Board ', '', '', '2019', 79.00, '', 1, '2024-09-19 02:59:17', 0, NULL, 0, NULL, 1),
(27995, 21483, '3', 'BHARTHIDASAN UNIVERSITY', '', 'BCOM', '2024', 78.00, '', 104, '2024-09-19 10:11:06', 0, NULL, 0, NULL, 1),
(27996, 21569, '3', 'APJ Abdul Kalam Technological University', '', 'B.tech', '2022', 61.00, '', 1, '2024-09-19 04:46:32', 0, NULL, 0, NULL, 1),
(27997, 21570, '4', 'Thiruvalluvar University ', '', 'M.sc PHYSICS ', '2024', 76.30, '', 1, '2024-09-19 04:55:14', 0, NULL, 0, NULL, 1),
(27998, 21571, '3', 'Annai velankanni art\'s and science college Thanjavur', '', 'BSC chemistry ', '2024', 64.00, '', 1, '2024-09-19 05:04:30', 0, NULL, 0, NULL, 1),
(27999, 21570, '3', 'Thiruvalluvar Universit', '', 'bsc ', '2022', 79.00, '', 104, '2024-09-19 10:49:42', 0, NULL, 0, NULL, 1),
(28000, 21576, '3', 'Anna University ', '', 'BE', '2022', 7.85, '', 1, '2024-09-19 05:33:15', 0, NULL, 0, NULL, 1),
(28001, 21574, '4', 'Bharadhisan University ', '', 'Msc Zoology ', '2024', 81.00, '', 1, '2024-09-19 05:36:08', 0, NULL, 0, NULL, 1),
(28002, 21577, '3', 'Bharathidas university ', '', 'B.com', '2024', 67.00, '', 1, '2024-09-19 05:40:44', 0, NULL, 0, NULL, 1),
(28003, 21575, '3', 'Kamarajar university ', '', 'Bsc chemistry ', '2024', 79.00, '', 1, '2024-09-19 05:48:11', 0, NULL, 0, NULL, 1),
(28004, 21578, '3', 'Madars university ', '', 'B.com', '2022', 79.00, '', 1, '2024-09-19 05:48:51', 0, NULL, 0, NULL, 1),
(28005, 21580, '3', 'Tamilnadu agricultural university ', '', 'B.Sc.,(Hons)Agriculture ', '2022', 78.00, '', 1, '2024-09-19 05:48:58', 0, NULL, 0, NULL, 1),
(28006, 21579, '3', 'Bharathidasan university ', '', 'B.sc Physics ', '2020', 79.50, '', 1, '2024-09-19 05:51:45', 0, NULL, 0, NULL, 1),
(28007, 21581, '3', 'University of Madras ', '', 'B.com', '2022', 78.00, '', 1, '2024-09-19 05:53:58', 0, NULL, 0, NULL, 1),
(28008, 21584, '4', 'University of Madras ', '', 'Msc computer science ', '2023', 73.00, '', 1, '2024-09-19 06:02:14', 0, NULL, 0, NULL, 1),
(28009, 21583, '3', 'Anna University ', '', 'BE', '2019', 7.50, '', 1, '2024-09-19 06:03:54', 0, NULL, 0, NULL, 1),
(28010, 21584, '3', 'University of Madras ', '', 'Bsc computer science ', '2021', 75.00, '', 1, '2024-09-19 06:03:59', 0, NULL, 0, NULL, 1),
(28011, 21584, '2', 'State board ', '', '', '2018', 77.00, '', 1, '2024-09-19 06:04:28', 0, NULL, 0, NULL, 1),
(28012, 21584, '1', 'State Board ', '', '', '2016', 82.00, '', 1, '2024-09-19 06:04:51', 0, NULL, 0, NULL, 1),
(28013, 21582, '3', 'Bharathidasan University ', '', 'BCA', '2017', 70.00, '', 1, '2024-09-19 06:06:31', 0, NULL, 0, NULL, 1),
(28014, 21582, '2', 'Tamilnadu ', '', '', '2014', 60.00, '', 1, '2024-09-19 06:07:14', 0, NULL, 0, NULL, 1),
(28015, 21582, '1', 'Board of tamilnadu ', '', '', '2012', 75.00, '', 1, '2024-09-19 06:07:59', 0, NULL, 0, NULL, 1),
(28016, 21586, '4', 'Madras ', '', 'MSC COMPUTER SCIENCE ', '2023', 71.00, '', 1, '2024-09-19 06:11:23', 1, '2024-09-19 06:12:13', 0, NULL, 1),
(28017, 21585, '3', 'Anna university', '', 'B.E  CSE', '2024', 78.00, '', 1, '2024-09-19 06:11:44', 0, NULL, 0, NULL, 1),
(28018, 21585, '1', 'CBSE', '', '', '2017', 70.00, '', 1, '2024-09-19 06:12:23', 0, NULL, 0, NULL, 1),
(28019, 21586, '3', 'Madras ', '', 'BSC computer science ', '2021', 70.00, '', 1, '2024-09-19 06:12:37', 0, NULL, 0, NULL, 1),
(28020, 21565, '3', 'Shri shankarlal sundarabai shasun Jain college for women ', '', 'B.Com Computer Application ', '2022', 72.00, '', 1, '2024-09-19 06:15:43', 1, '2024-09-19 06:16:06', 0, NULL, 1),
(28021, 21565, '2', 'Christ King Matriculation Higher secondary school ', '', '', '2019', 68.00, '', 1, '2024-09-19 06:16:27', 0, NULL, 0, NULL, 1),
(28022, 21565, '1', 'Shalom matriculation higher secondary school ', '', '', '2017', 70.00, '', 1, '2024-09-19 06:17:04', 0, NULL, 0, NULL, 1),
(28023, 21573, '3', 'Vels University ', '', 'B.com cs Corporate Secretaryship ', '2024', 75.00, '', 1, '2024-09-19 06:21:58', 0, NULL, 0, NULL, 1),
(28024, 21587, '3', 'University of Madras ', '', 'B.Sc.Chemistry', '2022', 80.00, '', 1, '2024-09-19 06:26:14', 0, NULL, 0, NULL, 1),
(28025, 21587, '2', 'State board ', '', '', '2019', 90.00, '', 1, '2024-09-19 06:26:50', 0, NULL, 0, NULL, 1),
(28026, 21587, '1', 'State board ', '', '', '2017', 80.00, '', 1, '2024-09-19 06:27:33', 0, NULL, 0, NULL, 1),
(28027, 21529, '3', 'University of Madras ', '', 'B.Com (COMPUTER APPLICATION)', '2024', 64.00, '', 1, '2024-09-19 06:31:10', 0, NULL, 0, NULL, 1),
(28028, 21591, '3', 'UNIVERSITY OF MEDRAS', '', 'B.COM GENERAL ', '2024', 70.00, '', 1, '2024-09-19 06:31:32', 0, NULL, 0, NULL, 1),
(28029, 21589, '3', 'Mar Gregorious college ', '', 'B.com cs ', '2024', 70.00, '', 1, '2024-09-19 06:32:40', 0, NULL, 0, NULL, 1),
(28030, 21588, '5', 'Jss', '', 'Interior design ', '2014', 78.00, '', 1, '2024-09-19 06:36:17', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28031, 21562, '3', 'madras University ', '', 'b.com cs', '2023', 56.00, '', 1, '2024-09-19 06:38:42', 0, NULL, 0, NULL, 1),
(28032, 21590, '3', 'Madras University ', '', 'Bca', '2022', 75.00, '', 1, '2024-09-19 06:38:50', 0, NULL, 0, NULL, 1),
(28033, 21592, '4', 'Pondicherry University ', '', 'MBA (finance)', '2024', 60.00, '', 1, '2024-09-19 06:55:51', 0, NULL, 0, NULL, 1),
(28034, 21592, '3', 'Madras University ', '', 'B.com (general)', '2021', 67.00, '', 1, '2024-09-19 06:56:53', 0, NULL, 0, NULL, 1),
(28035, 21594, '3', 'bharadhithasan university ', '', 'b. com', '2024', 65.00, '', 1, '2024-09-19 07:09:10', 0, NULL, 0, NULL, 1),
(28036, 21594, '2', 'state board ', '', '', '2021', 70.00, '', 1, '2024-09-19 07:09:43', 0, NULL, 0, NULL, 1),
(28037, 21594, '1', 'state board ', '', '', '2019', 80.00, '', 1, '2024-09-19 07:10:47', 0, NULL, 0, NULL, 1),
(28038, 21596, '3', 'University of Madras ', '', 'BCA', '2024', 62.00, '', 1, '2024-09-19 07:31:16', 0, NULL, 0, NULL, 1),
(28039, 21593, '4', 'Dr.mgr university ', '', 'MBA HR', '2025', 80.00, '', 1, '2024-09-19 07:37:33', 0, NULL, 0, NULL, 1),
(28040, 21595, '3', 'University of Madras ', '', 'B.com ', '2024', 62.00, '', 1, '2024-09-19 07:38:35', 0, NULL, 0, NULL, 1),
(28041, 21599, '3', 'Madras University ', '', 'Bca', '2023', 78.00, '', 1, '2024-09-19 07:47:06', 0, NULL, 0, NULL, 1),
(28042, 21601, '3', 'University of madras ', '', 'B.com', '2024', 70.00, '', 1, '2024-09-19 07:50:43', 0, NULL, 0, NULL, 1),
(28043, 21600, '4', 'Vels University ', '', 'Msc', '2024', 76.00, '', 1, '2024-09-19 07:51:06', 0, NULL, 0, NULL, 1),
(28044, 21598, '4', 'Vels University ', '', 'Msc computer science ', '2024', 75.00, '', 1, '2024-09-19 07:51:59', 0, NULL, 0, NULL, 1),
(28045, 21597, '4', 'Vels University ', '', 'English ', '2024', 73.00, '', 1, '2024-09-19 07:56:07', 0, NULL, 0, NULL, 1),
(28046, 21602, '4', 'Anna University ', '', 'M.E', '2023', 80.00, '', 1, '2024-09-19 09:13:00', 0, NULL, 0, NULL, 1),
(28047, 21602, '3', 'Anna University ', '', 'B.E Agriculture Engineering ', '2021', 78.00, '', 1, '2024-09-19 09:13:29', 0, NULL, 0, NULL, 1),
(28048, 21602, '2', 'Tamilnadu State board', '', '', '2017', 86.75, '', 1, '2024-09-19 09:14:11', 0, NULL, 0, NULL, 1),
(28049, 21603, '3', 'Bharathisan university ', '', 'BA', '2024', 60.00, '', 1, '2024-09-19 11:03:22', 0, NULL, 0, NULL, 1),
(28050, 21567, '3', 'Bharathidasan University ', '', 'B.sc computer science ', '2023', 60.00, '', 1, '2024-09-19 01:51:01', 0, NULL, 0, NULL, 1),
(28051, 21606, '3', 'Anna University ', '', 'BE-ECE ', '2024', 81.00, '', 1, '2024-09-19 02:48:56', 0, NULL, 0, NULL, 1),
(28052, 21607, '3', 'Dr.N.G.P. Institute of technology', '', 'BE', '2024', 77.90, '', 1, '2024-09-19 03:40:07', 0, NULL, 0, NULL, 1),
(28053, 21608, '3', 'SRM University ', '', 'B.tech(Electronics and Instrumentation Engineering', '2024', 83.30, '', 1, '2024-09-19 04:12:21', 0, NULL, 0, NULL, 1),
(28054, 21609, '3', 'Anna University ', '', 'B.E', '2023', 85.00, '', 1, '2024-09-19 04:21:43', 0, NULL, 0, NULL, 1),
(28055, 21604, '1', 'St Francis Xavier\'s Anglo Indian higher secondary school ', '', '', '2014', 80.00, '', 1, '2024-09-20 03:36:42', 0, NULL, 0, NULL, 1),
(28056, 21604, '2', 'St Francis Xavier\'s Anglo Indian higher secondary school ', '', '', '2016', 80.00, '', 1, '2024-09-20 03:37:06', 0, NULL, 0, NULL, 1),
(28057, 21604, '3', 'Stella Maris College', '', 'BA economics ', '2020', 89.00, '', 1, '2024-09-20 03:37:41', 0, NULL, 0, NULL, 1),
(28058, 21610, '3', 'Anna university ', '', 'B. E . Agriculture engineering ', '2023', 94.00, '', 1, '2024-09-20 04:00:36', 0, NULL, 0, NULL, 1),
(28059, 21611, '4', 'Madras University ', '', 'MCA', '2024', 85.00, '', 1, '2024-09-20 04:24:15', 0, NULL, 0, NULL, 1),
(28060, 21613, '4', 'SRM UNIVERSITY ', '', 'MSC IT', '2024', 7.90, '', 1, '2024-09-20 04:26:20', 0, NULL, 0, NULL, 1),
(28061, 21615, '2', 'State board ', '', '', '2019', 89.00, '', 1, '2024-09-20 04:36:40', 0, NULL, 0, NULL, 1),
(28062, 21615, '3', 'Anna University ', '', 'B.E', '2023', 70.00, '', 1, '2024-09-20 04:37:08', 0, NULL, 0, NULL, 1),
(28063, 21616, '3', 'Anna University ', '', 'B.E. Mechanical ', '2019', 78.00, '', 1, '2024-09-20 04:39:05', 0, NULL, 0, NULL, 1),
(28064, 21618, '3', 'University of Madras ', '', 'BCA', '2024', 75.00, '', 1, '2024-09-20 04:42:25', 0, NULL, 0, NULL, 1),
(28065, 21614, '3', 'Anna University ', '', 'BE', '2023', 83.90, '', 1, '2024-09-20 04:44:57', 0, NULL, 0, NULL, 1),
(28066, 21620, '3', 'Anna University', '', 'B.E', '2024', 84.00, '', 1, '2024-09-20 04:47:28', 0, NULL, 0, NULL, 1),
(28067, 21619, '3', 'Anna University ', '', 'B.E', '2024', 76.00, '', 1, '2024-09-20 04:47:40', 0, NULL, 0, NULL, 1),
(28068, 21621, '3', 'University college of engineering (Bit campus) trichy', '', 'B. E', '2024', 70.00, '', 1, '2024-09-20 04:56:21', 0, NULL, 0, NULL, 1),
(28069, 21622, '3', 'Bharathidasan university ', '', 'B.sc computer science ', '2020', 81.00, '', 1, '2024-09-20 05:06:35', 0, NULL, 0, NULL, 1),
(28070, 21622, '2', 'Boiler plant boys higher secondary school ', '', '', '2020', 80.60, '', 1, '2024-09-20 05:07:48', 0, NULL, 0, NULL, 1),
(28071, 21612, '3', 'Board', '', 'BE(ECE)', '2024', 70.00, '', 1, '2024-09-20 05:12:37', 0, NULL, 0, NULL, 1),
(28072, 21624, '3', 'MRG Arts Govt college', '', 'Bsc cs', '2022', 9.15, '', 1, '2024-09-20 05:13:24', 0, NULL, 0, NULL, 1),
(28073, 21624, '3', 'BHARATHIDASAN UNIVERSITY', '', '', '2022', 90.00, '', 104, '2024-09-20 10:44:15', 104, '2024-09-20 10:44:29', 0, NULL, 0),
(28074, 21623, '3', 'Madras university ', '', 'B.com general ', '2023', 80.00, '', 1, '2024-09-20 05:17:39', 0, NULL, 0, NULL, 1),
(28075, 21626, '3', 'Periya maniammai university ', '', 'BBA ', '2024', 7.63, '', 1, '2024-09-20 05:37:19', 0, NULL, 0, NULL, 1),
(28076, 21625, '1', 'Vivekanada vidyalaya Matriculation Higher Secondary School ', '', '', '2018', 87.00, '', 1, '2024-09-20 05:40:38', 0, NULL, 0, NULL, 1),
(28077, 21625, '2', 'Vivekanada vidyalaya Matriculation Higher Secondary School ', '', '', '2020', 85.00, '', 1, '2024-09-20 05:40:59', 0, NULL, 0, NULL, 1),
(28078, 21627, '4', 'Bharathidasan university ', '', 'MBA', '2022', 71.00, '', 1, '2024-09-20 05:41:37', 0, NULL, 0, NULL, 1),
(28079, 21625, '3', 'Sri sankara arts and Science College', '', 'B.Com', '2023', 83.00, '', 1, '2024-09-20 05:41:38', 0, NULL, 0, NULL, 1),
(28080, 21628, '3', 'Meenakshi college ', '', 'Bca ', '2024', 66.00, '', 1, '2024-09-20 05:49:38', 0, NULL, 0, NULL, 1),
(28081, 21629, '3', 'Madars university ', '', 'B.com cs', '2024', 70.00, '', 1, '2024-09-20 06:09:55', 0, NULL, 0, NULL, 1),
(28082, 21631, '3', 'madras university', '', 'ba econ ', '2024', 53.00, '', 1, '2024-09-20 06:29:40', 0, NULL, 0, NULL, 1),
(28083, 21632, '5', 'Ksr polytechnic college ', '', 'Civil Engineering ', '2013', 74.00, '', 1, '2024-09-20 06:32:16', 0, NULL, 0, NULL, 1),
(28084, 21617, '1', 'State board', '', '', '2016', 73.00, '', 1, '2024-09-20 06:41:57', 0, NULL, 0, NULL, 1),
(28085, 21617, '2', 'State board', '', '', '2018', 50.00, '', 1, '2024-09-20 06:42:16', 0, NULL, 0, NULL, 1),
(28086, 21617, '3', 'Thiruvalluvar university ', '', 'B.com computers applications ', '2021', 63.00, '', 1, '2024-09-20 06:43:02', 0, NULL, 0, NULL, 1),
(28087, 21617, '4', 'Thiruvalluvar university ', '', 'M.com computers applications ', '2023', 77.00, '', 1, '2024-09-20 06:43:30', 0, NULL, 0, NULL, 1),
(28088, 0, '3', 'Alagappa University ', '', 'bsc computer science ', '2024', 6.80, '', 1, '2024-09-20 06:44:32', 1, '2024-09-20 09:31:17', 0, NULL, 0),
(28089, 21634, '3', 'adikavi Nannaya University ', '', 'Bsc Datascience ', '2023', 7.00, '', 1, '2024-09-20 06:49:13', 0, NULL, 0, NULL, 1),
(28090, 21635, '3', 'Alagappa University ', '', 'Bsc computer science ', '2024', 68.50, '', 1, '2024-09-20 07:22:01', 1, '2024-09-20 07:22:25', 0, NULL, 1),
(28091, 21636, '3', 'madras university', '', 'bsc.zoology and biotechnology', '2024', 57.00, '', 1, '2024-09-20 07:42:05', 0, NULL, 0, NULL, 1),
(28092, 21637, '4', 'Kanchi Mamunivar Govt Institute of Postgraduate Studies and research ', '', 'M.Sc Computer Science', '2024', 78.00, '', 1, '2024-09-20 09:10:45', 0, NULL, 0, NULL, 1),
(28093, 21637, '3', 'Rajiv Gandhi Arts and Science College ', '', 'B.Sc Computer Science', '2022', 71.00, '', 1, '2024-09-20 09:11:07', 0, NULL, 0, NULL, 1),
(28094, 21639, '3', 'Ponjesly College Of Engineering ', '', 'Bachelor of Engineering ', '2023', 7.44, '', 1, '2024-09-20 09:30:45', 1, '2024-09-20 09:31:30', 0, NULL, 1),
(28095, 21640, '3', 'Jain University ', '', 'BSc. Computer Science ', '2024', 85.00, '', 1, '2024-09-20 09:31:02', 0, NULL, 0, NULL, 1),
(28096, 21638, '3', 'University of Madras (Patrician college of arts and science)', '', 'BSC CS', '2024', 83.00, '', 1, '2024-09-20 09:31:55', 0, NULL, 0, NULL, 1),
(28097, 21641, '1', 'State board', '', '', '2016', 83.00, '', 1, '2024-09-20 10:01:52', 0, NULL, 0, NULL, 1),
(28098, 21641, '2', 'State board', '', '', '2018', 59.00, '', 1, '2024-09-20 10:02:14', 0, NULL, 0, NULL, 1),
(28099, 21641, '5', 'DOTE', '', 'Computer Engineering', '2020', 84.00, '', 1, '2024-09-20 10:02:51', 0, NULL, 0, NULL, 1),
(28100, 21641, '3', 'Anna University', '', 'B.Tech IT', '2023', 71.00, '', 1, '2024-09-20 10:03:35', 0, NULL, 0, NULL, 1),
(28101, 21642, '3', 'Anna university ', '', 'B.Tech Information technology ', '2024', 90.00, '', 1, '2024-09-20 10:20:30', 0, NULL, 0, NULL, 1),
(28102, 21642, '2', 'State board ', '', '', '2017', 92.75, '', 1, '2024-09-20 10:21:04', 0, NULL, 0, NULL, 1),
(28103, 21643, '3', 'Periyar University ', '', 'B.SC COMPUTER SCIENCE ', '2023', 80.00, '', 1, '2024-09-20 10:47:01', 0, NULL, 0, NULL, 1),
(28104, 21644, '3', 'Madras University ', '', 'B.Com', '2024', 70.00, '', 1, '2024-09-20 11:29:33', 0, NULL, 0, NULL, 1),
(28105, 21645, '3', 'sri sankara atts and science college', '', 'bsc microbiology', '2020', 70.00, '', 1, '2024-09-20 01:54:08', 0, NULL, 0, NULL, 1),
(28106, 21646, '3', 'Alagappa University ', '', 'B.E EEE', '2022', 8.10, '', 1, '2024-09-21 04:17:34', 1, '2024-09-21 04:17:51', 0, NULL, 0),
(28107, 21646, '3', 'Anna University ', '', 'B.E', '2022', 8.10, '', 1, '2024-09-21 04:18:20', 1, '2024-09-21 04:18:41', 0, NULL, 1),
(28108, 21646, '4', 'Alagappa University ', '', 'MBA', '2025', 8.00, '', 1, '2024-09-21 04:19:15', 0, NULL, 0, NULL, 1),
(28109, 21647, '3', 'Rajalakshmi Engineering College ', '', 'B.E Automobile Engineering ', '2023', 84.00, '', 1, '2024-09-21 04:27:54', 0, NULL, 0, NULL, 1),
(28110, 21648, '3', 'Manonmanium Sundharanar university, thirunelveli', '', 'Bsc Physics', '2023', 70.00, '', 1, '2024-09-21 04:28:32', 0, NULL, 0, NULL, 1),
(28111, 21650, '3', 'university of madras', '', 'b.com', '2024', 81.00, '', 1, '2024-09-21 05:02:22', 0, NULL, 0, NULL, 1),
(28112, 21654, '3', 'The New College ', '', 'Bachelor of Computer Application (BCA)', '2024', 75.00, '', 1, '2024-09-21 05:03:10', 0, NULL, 0, NULL, 1),
(28113, 21651, '3', 'Madras University ', '', 'Bcom ', '2024', 75.00, '', 1, '2024-09-21 05:04:15', 0, NULL, 0, NULL, 1),
(28114, 21654, '2', 'Crescent Matric HR.sec.School', '', '', '2021', 70.00, '', 1, '2024-09-21 05:04:48', 0, NULL, 0, NULL, 1),
(28115, 21654, '1', 'Crescent Matric HR.Sec School', '', '', '2019', 63.00, '', 1, '2024-09-21 05:06:18', 0, NULL, 0, NULL, 1),
(28116, 21653, '3', 'University of madras', '', 'BCA', '2024', 86.00, '', 1, '2024-09-21 05:06:59', 0, NULL, 0, NULL, 1),
(28117, 21652, '3', 'The New College', '', 'BCA', '2024', 67.00, '', 1, '2024-09-21 05:08:11', 0, NULL, 0, NULL, 1),
(28118, 21652, '2', 'State Board', '', '', '2021', 91.00, '', 1, '2024-09-21 05:09:08', 0, NULL, 0, NULL, 1),
(28119, 21657, '4', 'Alagappa University ', '', 'MCA', '2023', 75.00, '', 1, '2024-09-21 05:09:53', 0, NULL, 0, NULL, 1),
(28120, 21652, '1', 'State Board', '', '', '2019', 92.60, '', 1, '2024-09-21 05:10:01', 0, NULL, 0, NULL, 1),
(28121, 21656, '3', 'Thiruvallur university ', '', 'BCA', '2024', 85.00, '', 1, '2024-09-21 05:10:25', 0, NULL, 0, NULL, 1),
(28122, 21656, '1', 'Don Bosco hr sec school ', '', '', '2019', 75.00, '', 1, '2024-09-21 05:11:20', 0, NULL, 0, NULL, 1),
(28123, 21656, '2', 'Auxilium Girls hr sec school vellore ', '', '', '2021', 80.00, '', 1, '2024-09-21 05:11:39', 0, NULL, 0, NULL, 1),
(28124, 21657, '3', 'NMS S.Vellaichamy Nadar College ', '', 'BCA', '2021', 86.00, '', 1, '2024-09-21 05:11:58', 0, NULL, 0, NULL, 1),
(28125, 21657, '2', 'Sacred Heart Girls Hr.Sec School ', '', '', '2018', 74.00, '', 1, '2024-09-21 05:12:26', 0, NULL, 0, NULL, 1),
(28126, 21657, '1', 'Sacred Heart convent High School ', '', '', '2016', 94.00, '', 1, '2024-09-21 05:12:47', 0, NULL, 0, NULL, 1),
(28127, 21658, '1', 'State board ', '', '', '2018', 85.00, '', 1, '2024-09-21 05:17:12', 0, NULL, 0, NULL, 1),
(28128, 21658, '2', 'State board', '', '', '2020', 65.00, '', 1, '2024-09-21 05:18:14', 0, NULL, 0, NULL, 1),
(28129, 21658, '3', 'Anna university ', '', 'B.E CSE', '2024', 80.00, '', 1, '2024-09-21 05:18:53', 0, NULL, 0, NULL, 1),
(28130, 21659, '3', 'University ', '', 'BE (CSE)', '2024', 80.00, '', 1, '2024-09-21 05:21:57', 0, NULL, 0, NULL, 1),
(28131, 21659, '1', 'State board', '', '', '2018', 80.00, '', 1, '2024-09-21 05:22:41', 0, NULL, 0, NULL, 1),
(28132, 21659, '2', 'State board', '', '', '2020', 65.00, '', 1, '2024-09-21 05:23:15', 0, NULL, 0, NULL, 1),
(28133, 21655, '3', 'University of madras', '', 'B.com general ', '2024', 61.70, '', 1, '2024-09-21 05:23:47', 0, NULL, 0, NULL, 1),
(28134, 21660, '3', 'Guru nanak University ', '', 'Back. Computer science ', '2024', 82.00, '', 1, '2024-09-21 05:38:32', 0, NULL, 0, NULL, 1),
(28135, 21662, '3', 'Anna university ', '', 'B.tech it', '2024', 7.30, '', 1, '2024-09-21 05:48:41', 0, NULL, 0, NULL, 1),
(28136, 21661, '3', 'Anna University ', '', 'B.Tech', '2023', 71.30, '', 1, '2024-09-21 05:49:14', 0, NULL, 0, NULL, 1),
(28137, 21662, '1', 'State board ', '', '', '2018', 73.00, '', 1, '2024-09-21 05:49:29', 0, NULL, 0, NULL, 1),
(28138, 21661, '2', 'Tamilnadu state board ', '', '', '2019', 66.00, '', 1, '2024-09-21 05:49:49', 0, NULL, 0, NULL, 1),
(28139, 21662, '2', 'State board ', '', '', '2020', 69.50, '', 1, '2024-09-21 05:50:05', 0, NULL, 0, NULL, 1),
(28140, 21661, '1', 'Tamilnadu state board ', '', '', '2017', 89.00, '', 1, '2024-09-21 05:50:10', 0, NULL, 0, NULL, 1),
(28141, 21649, '3', 'Bharathidhasan university ', '', 'BBA', '2023', 8.00, '', 1, '2024-09-21 05:52:28', 0, NULL, 0, NULL, 1),
(28142, 21663, '3', 'Madras university ', '', 'Bsc cS', '2016', 62.00, '', 1, '2024-09-21 06:13:08', 0, NULL, 0, NULL, 1),
(28143, 21664, '3', 'Anna University ', '', 'B.E Mechanical Engineering ', '2022', 80.00, '', 1, '2024-09-21 06:19:03', 0, NULL, 0, NULL, 1),
(28144, 21665, '3', 'University ', '', 'Bsc', '2021', 78.00, '', 1, '2024-09-21 06:23:56', 0, NULL, 0, NULL, 1),
(28145, 21666, '3', 'Thiruvalluvar university ', '', 'Bcom', '2021', 69.00, '', 1, '2024-09-21 06:33:44', 0, NULL, 0, NULL, 1),
(28146, 21667, '3', 'Anna University ', '', 'B.E', '2022', 8.67, '', 1, '2024-09-21 06:45:14', 0, NULL, 0, NULL, 1),
(28147, 21668, '3', 'BIKANER TECHNICAL UNIVERSITY ', '', 'B.Tech', '2023', 80.00, '', 1, '2024-09-21 06:51:23', 0, NULL, 0, NULL, 1),
(28148, 21668, '2', 'CBSE', '', '', '2019', 69.00, '', 1, '2024-09-21 06:52:17', 0, NULL, 0, NULL, 1),
(28149, 21668, '1', 'CBSE ', '', '', '2017', 80.00, '', 1, '2024-09-21 06:52:34', 0, NULL, 0, NULL, 1),
(28150, 21669, '3', 'SRM Ktr university ', '', 'B.com cs', '2024', 70.00, '', 1, '2024-09-21 07:03:02', 0, NULL, 0, NULL, 1),
(28151, 21670, '2', '1', '', '', '2020', 57.00, '', 1, '2024-09-21 07:13:33', 0, NULL, 0, NULL, 1),
(28152, 21671, '1', 'State board', '', '', '2017', 96.40, '', 1, '2024-09-21 07:20:26', 0, NULL, 0, NULL, 1),
(28153, 21671, '2', 'State board ', '', '', '2019', 84.25, '', 1, '2024-09-21 07:20:51', 0, NULL, 0, NULL, 1),
(28154, 21671, '3', 'Bharathidasan University ', '', 'Mathematics ', '2022', 79.65, '', 1, '2024-09-21 07:21:19', 0, NULL, 0, NULL, 1),
(28155, 21674, '3', 'SRM University Ktr ', '', 'B.com corporate secretaryship ', '2024', 70.00, '', 1, '2024-09-21 07:25:19', 0, NULL, 0, NULL, 1),
(28156, 21673, '3', 'Attandance ', '', 'BBA ', '2021', 89.00, '', 1, '2024-09-21 07:36:17', 0, NULL, 0, NULL, 1),
(28157, 21676, '4', 'Bharadhidhasan university ', '', 'MCA ', '2021', 82.00, '', 1, '2024-09-21 07:36:30', 0, NULL, 0, NULL, 1),
(28158, 21675, '1', 'Madras University ', '', '', '2019', 60.00, '', 1, '2024-09-21 07:49:42', 0, NULL, 0, NULL, 1),
(28159, 21681, '3', 'Periyar university', '', 'B. COM', '2024', 71.50, '', 1, '2024-09-21 09:12:10', 0, NULL, 0, NULL, 1),
(28160, 21682, '3', 'Jaya college of Engg and technology', '', 'BE', '2017', 7.50, '', 1, '2024-09-21 09:25:27', 0, NULL, 0, NULL, 1),
(28161, 21684, '4', 'University', '', 'MBA', '2024', 7.50, '', 1, '2024-09-21 11:38:48', 0, NULL, 0, NULL, 1),
(28162, 21686, '3', 'Anna university ', '', 'BE computer Science ', '2024', 7.20, '', 1, '2024-09-22 08:07:09', 0, NULL, 0, NULL, 1),
(28163, 21687, '4', 'manomainyam sundranar university ', '', 'Microbiology', '2022', 70.00, '', 1, '2024-09-22 10:24:14', 1, '2024-09-22 10:24:37', 0, NULL, 0),
(28164, 21687, '3', 'manomainyam. sudanranar university ', '', 'microbiology ', '2022', 70.00, '', 1, '2024-09-22 10:25:12', 0, NULL, 0, NULL, 1),
(28165, 21687, '1', 'Tamil State board public examinations ', '', '', '2016', 67.00, '', 1, '2024-09-22 10:26:26', 0, NULL, 0, NULL, 1),
(28166, 21687, '2', 'Tamil Nadu state board public examinations ', '', '', '2019', 60.00, '', 1, '2024-09-22 10:26:58', 0, NULL, 0, NULL, 1),
(28167, 21687, '4', 'manomainyam sundranar university ', '', 'microbiology ', '2024', 60.00, '', 1, '2024-09-22 10:27:25', 0, NULL, 0, NULL, 1),
(28168, 21691, '4', 'Bharadhidhasan University ', '', 'Msc computer science ', '2023', 74.00, '', 1, '2024-09-23 02:27:40', 0, NULL, 0, NULL, 1),
(28169, 21692, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2024', 67.00, '', 1, '2024-09-23 03:49:38', 0, NULL, 0, NULL, 1),
(28170, 21693, '4', 'Vellore Institute of Technology, Chennai Campus', '', 'M. Sc Datascience ', '2024', 7.50, '', 1, '2024-09-23 04:09:19', 0, NULL, 0, NULL, 1),
(28171, 21695, '3', 'Bharathidasan', '', 'BA English Literature ', '2024', 75.76, '', 1, '2024-09-23 05:00:42', 0, NULL, 0, NULL, 1),
(28172, 21694, '3', 'Bharathidasan ', '', 'BA English', '2023', 84.00, '', 1, '2024-09-23 05:01:02', 0, NULL, 0, NULL, 1),
(28173, 21696, '4', 'The New College ', '', 'M.sc maths', '2024', 70.00, '', 1, '2024-09-23 05:05:30', 0, NULL, 0, NULL, 1),
(28174, 21699, '4', 'Anna university ', '', 'MBA ', '2023', 70.00, '', 1, '2024-09-23 05:12:07', 0, NULL, 0, NULL, 1),
(28175, 21698, '3', 'madras university', '', 'hr', '2018', 60.00, '', 1, '2024-09-23 05:17:53', 1, '2024-09-23 05:19:00', 0, NULL, 0),
(28176, 21698, '4', 'madras university', '', 'hr', '2024', 55.00, '', 1, '2024-09-23 05:18:41', 0, NULL, 0, NULL, 1),
(28177, 21698, '2', 'state board', '', '', '2014', 45.00, '', 1, '2024-09-23 05:20:25', 0, NULL, 0, NULL, 1),
(28178, 21704, '4', 'Bharathidasan University', '', 'MCA', '2023', 70.00, '', 1, '2024-09-23 05:20:30', 0, NULL, 0, NULL, 1),
(28179, 21701, '4', 'manonmaniyam sundaranar university', '', 'm.com', '2024', 8.50, '', 1, '2024-09-23 05:20:56', 0, NULL, 0, NULL, 1),
(28180, 21698, '1', 'state board', '', '', '2012', 50.00, '', 1, '2024-09-23 05:22:01', 0, NULL, 0, NULL, 1),
(28181, 21700, '4', 'Periyar university', '', 'MCA', '2024', 6.80, '', 1, '2024-09-23 05:22:04', 0, NULL, 0, NULL, 1),
(28182, 21706, '4', 'Bharathiyar university', '', 'Msc ', '2024', 83.00, '', 1, '2024-09-23 05:26:26', 0, NULL, 0, NULL, 1),
(28183, 21702, '4', 'Vellore Institute of Technology ', '', 'MCA ', '2023', 7.48, '', 1, '2024-09-23 05:26:29', 0, NULL, 0, NULL, 1),
(28184, 21703, '3', 'Madras University ', '', 'Bsc ', '2022', 73.00, '', 1, '2024-09-23 05:26:35', 0, NULL, 0, NULL, 1),
(28185, 21707, '3', 'Kamaraj university ', '', 'Bsc Information technology ', '2022', 63.00, '', 1, '2024-09-23 05:27:03', 0, NULL, 0, NULL, 1),
(28186, 21706, '3', 'Bharathiyar university', '', 'Bsc', '2022', 79.00, '', 1, '2024-09-23 05:27:11', 0, NULL, 0, NULL, 1),
(28187, 21706, '2', 'State Board', '', '', '2019', 70.00, '', 1, '2024-09-23 05:27:45', 0, NULL, 0, NULL, 1),
(28188, 21706, '1', 'State board', '', '', '2017', 80.00, '', 1, '2024-09-23 05:28:05', 0, NULL, 0, NULL, 1),
(28189, 21708, '3', 'THE NEW COLLEGE AUTONOMOUS ', '', 'B. com General ', '2024', 63.00, '', 1, '2024-09-23 05:29:56', 0, NULL, 0, NULL, 1),
(28190, 21709, '3', 'Kamarajar university ', '', 'B.sc', '2024', 65.00, '', 1, '2024-09-23 05:32:21', 0, NULL, 0, NULL, 1),
(28191, 21710, '4', 'Madras university', '', 'M.A.ECONOMICS', '2023', 55.70, '', 1, '2024-09-23 05:40:52', 0, NULL, 0, NULL, 1),
(28192, 21715, '3', 'Kalasalingam Academy of Research and education ', '', 'B.com CA', '2023', 8.20, '', 1, '2024-09-23 05:59:55', 0, NULL, 0, NULL, 1),
(28193, 21714, '3', 'Bharathidasan University ', '', 'B.sc.,', '2020', 79.00, '', 1, '2024-09-23 06:00:56', 0, NULL, 0, NULL, 1),
(28194, 21712, '3', 'Dr Ambedkar college ', '', 'BSC Biotechnology ', '2020', 66.00, '', 1, '2024-09-23 06:01:54', 0, NULL, 0, NULL, 1),
(28195, 21713, '3', 'Anna University', '', '', '2024', 6.50, '', 1, '2024-09-23 06:02:23', 0, NULL, 0, NULL, 1),
(28196, 21713, '2', 'Tamilnadu board ', '', '', '2020', 52.00, '', 1, '2024-09-23 06:02:59', 0, NULL, 0, NULL, 1),
(28197, 21711, '3', 'Jeppiaar engineering college', '', 'B:E', '2020', 7.68, '', 1, '2024-09-23 06:03:08', 0, NULL, 0, NULL, 1),
(28198, 21713, '1', 'Tamilnadu Board ', '', '', '2018', 63.00, '', 1, '2024-09-23 06:03:44', 0, NULL, 0, NULL, 1),
(28199, 21680, '1', 'Madras University', '', '', '2024', 77.00, '', 1, '2024-09-23 06:14:41', 0, NULL, 0, NULL, 1),
(28200, 21716, '4', 'Bangalore university ', '', 'MBA', '2023', 7.22, '', 1, '2024-09-23 06:17:36', 0, NULL, 0, NULL, 1),
(28201, 21685, '3', 'Madras ', '', 'B.com ', '2021', 65.00, '', 1, '2024-09-23 06:29:05', 0, NULL, 0, NULL, 1),
(28202, 21718, '3', 'Alagappa university ', '', 'B. Sc', '2024', 76.00, '', 1, '2024-09-23 06:40:18', 0, NULL, 0, NULL, 1),
(28203, 21719, '3', 'Madras University ', '', 'B.com ', '2021', 65.00, '', 1, '2024-09-23 06:58:15', 0, NULL, 0, NULL, 1),
(28204, 21719, '1', 'Tamil Nadu State board ', '', '', '2016', 84.00, '', 1, '2024-09-23 06:59:19', 0, NULL, 0, NULL, 1),
(28205, 21719, '2', 'Tamil Nadu State Board ', '', '', '2018', 86.00, '', 1, '2024-09-23 06:59:50', 0, NULL, 0, NULL, 1),
(28206, 21720, '1', 'SUM,hr,sec, school ', '', '', '2016', 95.00, '', 1, '2024-09-23 07:13:58', 0, NULL, 0, NULL, 1),
(28207, 21720, '2', 'St\'mary hr sec school ', '', '', '2018', 60.00, '', 1, '2024-09-23 07:14:41', 0, NULL, 0, NULL, 1),
(28208, 21689, '5', 'University', '', 'Dme', '2022', 70.00, '', 1, '2024-09-23 07:14:47', 0, NULL, 0, NULL, 1),
(28209, 21720, '3', 'Dr.mGR University ', '', 'Bsc physics ', '2021', 65.00, '', 1, '2024-09-23 07:15:36', 0, NULL, 0, NULL, 1),
(28210, 21720, '4', 'Dr.MGR university ', '', 'Logistics and supply chain management ', '2023', 75.00, '', 1, '2024-09-23 07:16:19', 0, NULL, 0, NULL, 1),
(28211, 21722, '3', 'University ', '', 'BA English Literature ', '2019', 60.00, '', 1, '2024-09-23 07:55:05', 0, NULL, 0, NULL, 1),
(28212, 21723, '3', 'Srm University ', '', 'BTech ', '2024', 75.00, '', 1, '2024-09-23 08:09:46', 0, NULL, 0, NULL, 1),
(28213, 21725, '3', 'University of medras ', '', 'B.com ( general)', '2023', 75.00, '', 1, '2024-09-23 09:40:32', 0, NULL, 0, NULL, 1),
(28214, 21726, '3', 'Dr M. G.R EDUCATION INSTITUTIONS ', '', 'B. Com', '2023', 69.00, '', 1, '2024-09-23 10:11:05', 0, NULL, 0, NULL, 1),
(28215, 21727, '3', 'P.K.R Arts college for women ', '', 'Bcom', '2024', 75.00, '', 1, '2024-09-23 11:17:55', 0, NULL, 0, NULL, 1),
(28216, 21728, '1', 'St.joseph higher secondary ', '', '', '2022', 70.00, '', 1, '2024-09-23 12:58:14', 0, NULL, 0, NULL, 1),
(28217, 21731, '3', 'Madras University ', '', 'BBA', '2024', 80.00, '', 1, '2024-09-23 02:57:55', 0, NULL, 0, NULL, 1),
(28218, 21732, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 64.00, '', 1, '2024-09-24 03:31:16', 0, NULL, 0, NULL, 1),
(28219, 21705, '4', 'University of madras', '', 'M. Sc statistics', '2024', 62.00, '', 1, '2024-09-24 04:14:05', 0, NULL, 0, NULL, 1),
(28220, 21734, '4', 'Anna University Chennai ', '', 'Master of Computer Application', '2024', 80.00, '', 1, '2024-09-24 04:18:06', 0, NULL, 0, NULL, 1),
(28221, 21734, '3', 'Manonmaniam Sundarnar University Tirunelveli ', '', 'Bachelor of Mathematics', '2021', 77.00, '', 1, '2024-09-24 04:18:35', 0, NULL, 0, NULL, 1),
(28222, 21734, '2', 'State board Tamilnadu ', '', '', '2018', 77.00, '', 1, '2024-09-24 04:19:05', 0, NULL, 0, NULL, 1),
(28223, 21734, '1', 'State board Tamilnadu ', '', '', '2016', 91.00, '', 1, '2024-09-24 04:19:21', 0, NULL, 0, NULL, 1),
(28224, 21733, '3', 'University of Madras ', '', 'Bcom.cs', '2024', 71.00, '', 1, '2024-09-24 04:29:50', 0, NULL, 0, NULL, 1),
(28225, 21735, '3', 'R.M.K Engineering college ', '', 'B.e', '2023', 83.40, '', 1, '2024-09-24 04:31:39', 0, NULL, 0, NULL, 1),
(28226, 21735, '2', 'State Board ', '', '', '2019', 78.33, '', 1, '2024-09-24 04:32:11', 0, NULL, 0, NULL, 1),
(28227, 21735, '1', 'State Board ', '', '', '2017', 93.60, '', 1, '2024-09-24 04:32:50', 0, NULL, 0, NULL, 1),
(28228, 21736, '4', 'madras university', '', 'mba', '2024', 69.66, '', 1, '2024-09-24 04:43:16', 0, NULL, 0, NULL, 1),
(28229, 21736, '3', 'madras university', '', 'bba', '2022', 67.20, '', 1, '2024-09-24 04:43:54', 0, NULL, 0, NULL, 1),
(28230, 21738, '3', 'Anna University ', '', 'B.E Computer science and engineering ', '2023', 84.00, '', 1, '2024-09-24 04:53:30', 0, NULL, 0, NULL, 1),
(28231, 21738, '2', 'State board ', '', '', '2019', 75.00, '', 1, '2024-09-24 04:54:00', 0, NULL, 0, NULL, 1),
(28232, 21738, '1', 'State board', '', '', '2017', 90.00, '', 1, '2024-09-24 04:54:36', 0, NULL, 0, NULL, 1),
(28233, 21739, '3', 'Bharathidasan university', '', 'B.sc IT', '2022', 69.00, '', 1, '2024-09-24 05:06:38', 0, NULL, 0, NULL, 1),
(28234, 21744, '4', 'University ', '', 'MBA', '2024', 80.00, '', 1, '2024-09-24 05:36:38', 0, NULL, 0, NULL, 1),
(28235, 21744, '3', 'Board', '', 'BBA', '2021', 6.90, '', 1, '2024-09-24 05:37:44', 0, NULL, 0, NULL, 1),
(28236, 21742, '5', 'DPH', '', '', '2021', 75.00, '', 1, '2024-09-24 05:50:20', 0, NULL, 0, NULL, 1),
(28237, 21690, '5', 'DPH ', '', '', '2021', 74.00, '', 1, '2024-09-24 05:50:20', 0, NULL, 0, NULL, 1),
(28238, 21749, '3', 'Anna university ', '', 'B.E', '2024', 83.00, '', 1, '2024-09-24 05:52:36', 0, NULL, 0, NULL, 1),
(28239, 21741, '3', 'University of madras', '', 'B.com general ', '2021', 75.00, '', 1, '2024-09-24 05:55:36', 0, NULL, 0, NULL, 1),
(28240, 21747, '3', 'University of Madras ', '', 'B.com(computer application)', '2024', 75.00, '', 1, '2024-09-24 06:00:23', 0, NULL, 0, NULL, 1),
(28241, 21743, '5', 'DPH', '', '', '2021', 72.00, '', 1, '2024-09-24 06:06:17', 0, NULL, 0, NULL, 1),
(28242, 21748, '3', 'Madras university ', '', 'BCA', '2024', 80.00, '', 1, '2024-09-24 06:07:16', 0, NULL, 0, NULL, 1),
(28243, 21751, '3', 'Ann University ', '', 'BE', '2024', 70.00, '', 1, '2024-09-24 06:08:02', 0, NULL, 0, NULL, 1),
(28244, 21750, '1', 'State board ', '', '', '2017', 95.40, '', 1, '2024-09-24 06:11:03', 0, NULL, 0, NULL, 1),
(28245, 21750, '2', 'State board ', '', '', '2019', 73.00, '', 1, '2024-09-24 06:11:37', 0, NULL, 0, NULL, 1),
(28246, 21750, '3', 'Bharathidhasan university ', '', 'B.sc', '2022', 89.00, '', 1, '2024-09-24 06:12:21', 0, NULL, 0, NULL, 1),
(28247, 21746, '3', 'University of Madras ', '', 'B.com(computer application )', '2024', 75.00, '', 1, '2024-09-24 06:12:52', 0, NULL, 0, NULL, 1),
(28248, 21750, '4', 'Dhanalakshmi srinivasan engineering college ', '', 'MCA', '2024', 78.00, '', 1, '2024-09-24 06:12:55', 0, NULL, 0, NULL, 1),
(28249, 21752, '1', 'Shri malathi srinivas hi sec school ', '', '', '2018', 50.00, '', 1, '2024-09-24 06:14:40', 0, NULL, 0, NULL, 1),
(28250, 21753, '3', 'AnnaUniversity', '', 'BE', '2024', 86.00, '', 1, '2024-09-24 06:16:04', 0, NULL, 0, NULL, 1),
(28251, 21730, '3', 'Madras University ', '', 'BBA ', '2023', 70.00, '', 1, '2024-09-24 06:16:55', 0, NULL, 0, NULL, 1),
(28252, 21754, '3', 'University of Madras ', '', 'B.com.cs', '2023', 70.00, '', 1, '2024-09-24 06:58:57', 0, NULL, 0, NULL, 1),
(28253, 21755, '3', 'Pondicherry University ', '', 'Bachelor of business administration ', '2020', 63.08, '', 1, '2024-09-24 07:00:24', 0, NULL, 0, NULL, 1),
(28254, 21756, '3', 'Sri manakula vinayagar engineering college ', '', 'BBA', '2024', 74.00, '', 1, '2024-09-24 07:02:05', 0, NULL, 0, NULL, 1),
(28255, 21758, '3', 'Madras University ', '', 'BBA ', '2024', 65.00, '', 1, '2024-09-24 07:33:11', 0, NULL, 0, NULL, 1),
(28256, 21757, '3', 'Madras University ', '', 'BBA', '2024', 60.00, '', 1, '2024-09-24 08:52:32', 0, NULL, 0, NULL, 1),
(28257, 21757, '1', 'Cbse', '', '', '2019', 50.00, '', 1, '2024-09-24 08:53:11', 0, NULL, 0, NULL, 1),
(28258, 21757, '2', 'State', '', '', '2021', 66.00, '', 1, '2024-09-24 08:53:26', 0, NULL, 0, NULL, 1),
(28259, 21760, '3', 'Ethiraj college for women ', '', 'B.com', '2022', 60.00, '', 1, '2024-09-24 09:11:15', 0, NULL, 0, NULL, 1),
(28260, 21759, '3', 'Madaras University ', '', 'B.com a&f', '2024', 80.00, '', 1, '2024-09-24 09:13:23', 0, NULL, 0, NULL, 1),
(28261, 21762, '3', 'Periyar university', '', 'Bca', '2022', 82.00, '', 1, '2024-09-24 09:17:57', 0, NULL, 0, NULL, 1),
(28262, 21762, '2', 'Kongu higher secondary school', '', '', '2017', 75.00, '', 1, '2024-09-24 09:19:00', 0, NULL, 0, NULL, 1),
(28263, 21762, '1', 'Kongu higher secondary school', '', '', '2017', 75.00, '', 1, '2024-09-24 09:21:26', 0, NULL, 0, NULL, 1),
(28264, 21761, '4', 'ethiraj college for women ', '', 'm com  ', '2024', 61.00, '', 1, '2024-09-24 09:26:14', 0, NULL, 0, NULL, 1),
(28265, 21763, '3', 'Vel tech multi tech engineering college ', '', 'Btech computer science and business systems ', '2024', 8.50, '', 1, '2024-09-24 09:46:38', 0, NULL, 0, NULL, 1),
(28266, 21765, '3', 'University of Madras ', '', 'B.COM', '2023', 80.00, '', 1, '2024-09-25 01:22:57', 0, NULL, 0, NULL, 1),
(28267, 21767, '3', 'University ', '', 'B.com', '2023', 85.00, '', 1, '2024-09-25 03:55:50', 0, NULL, 0, NULL, 1),
(28268, 21768, '3', 'Madurai kamaraj university ', '', 'BCom Computer Applications ', '2023', 65.00, '', 1, '2024-09-25 04:24:22', 0, NULL, 0, NULL, 1),
(28269, 21769, '3', 'Dhanraj baid Jain College ', '', 'Bsc computer science ', '2019', 60.00, '', 1, '2024-09-25 04:54:58', 0, NULL, 0, NULL, 1),
(28270, 21772, '4', 'Saveetha University ', '', 'MBA', '2024', 80.00, '', 1, '2024-09-25 05:01:18', 0, NULL, 0, NULL, 1),
(28271, 21772, '3', 'Madras University ', '', 'B.Com (CS)', '2022', 85.00, '', 1, '2024-09-25 05:01:53', 0, NULL, 0, NULL, 1),
(28272, 21770, '4', 'Annamalai University ', '', 'Msc.Geology', '2019', 79.50, '', 1, '2024-09-25 05:03:01', 0, NULL, 0, NULL, 1),
(28273, 21771, '4', 'university of windsor', '', 'me', '2022', 77.50, '', 1, '2024-09-25 05:07:40', 0, NULL, 0, NULL, 1),
(28274, 21773, '3', 'The New College ', '', 'Bachelor\'s of computer applications ', '2024', 83.00, '', 1, '2024-09-25 05:08:31', 0, NULL, 0, NULL, 1),
(28275, 21771, '3', 'sri sairam engineering college', '', 'be', '2020', 81.00, '', 1, '2024-09-25 05:09:15', 0, NULL, 0, NULL, 1),
(28276, 21773, '2', 'Kavita matriculation higher secondary school ', '', '', '2021', 88.00, '', 1, '2024-09-25 05:09:34', 0, NULL, 0, NULL, 1),
(28277, 21773, '1', 'Kavita matriculation higher secondary school ', '', '', '2019', 84.00, '', 1, '2024-09-25 05:10:03', 0, NULL, 0, NULL, 1),
(28278, 21721, '3', 'Madras University ', '', 'BCA', '2024', 81.20, '', 1, '2024-09-25 05:12:03', 0, NULL, 0, NULL, 1),
(28279, 21630, '4', 'bharathidasan', '', 'msc', '2024', 82.00, '', 1, '2024-09-25 05:14:14', 0, NULL, 0, NULL, 1),
(28280, 21775, '3', 'SRM Valliammai engineering College ', '', 'BE', '2024', 85.00, '', 1, '2024-09-25 05:14:45', 0, NULL, 0, NULL, 1),
(28281, 21775, '1', 'Stateboard', '', '', '2018', 91.00, '', 1, '2024-09-25 05:15:13', 0, NULL, 0, NULL, 1),
(28282, 21775, '2', 'Stateboard ', '', '', '2020', 73.00, '', 1, '2024-09-25 05:15:33', 0, NULL, 0, NULL, 1),
(28283, 21774, '1', 'State board ', '', '', '2018', 76.50, '', 1, '2024-09-25 05:16:48', 0, NULL, 0, NULL, 1),
(28284, 21774, '2', 'State Board ', '', '', '2020', 65.50, '', 1, '2024-09-25 05:17:12', 0, NULL, 0, NULL, 1),
(28285, 21774, '3', 'Anna university ', '', '', '2024', 82.30, '', 1, '2024-09-25 05:17:43', 0, NULL, 0, NULL, 1),
(28286, 21777, '2', 'Government higher secondary school ', '', '', '2017', 82.00, '', 1, '2024-09-25 05:26:40', 1, '2024-09-25 05:27:42', 0, NULL, 1),
(28287, 21777, '4', 'Hindustan college of arts and sciences ', '', 'MCA', '2022', 85.00, '', 1, '2024-09-25 05:27:13', 0, NULL, 0, NULL, 1),
(28288, 21776, '4', 'pondicherry university', '', 'mba - financial technology', '2024', 69.20, '', 1, '2024-09-25 05:27:38', 0, NULL, 0, NULL, 1),
(28289, 21776, '3', 'pondicherry university', '', 'bcom', '2022', 65.80, '', 1, '2024-09-25 05:28:27', 0, NULL, 0, NULL, 1),
(28290, 21776, '2', 'jeevanandam boys government higher secondary school', '', '', '2019', 66.00, '', 1, '2024-09-25 05:29:17', 1, '2024-09-25 05:29:34', 0, NULL, 0),
(28291, 14081, '4', 'Bharathiyar University ', '', 'MCA', '2022', 86.00, '', 1, '2024-09-25 05:30:00', 0, NULL, 0, NULL, 1),
(28292, 21778, '3', 'Anna University ', '', 'Bachelor\'s of mechanical engineering ', '2024', 87.00, '', 1, '2024-09-25 05:30:20', 0, NULL, 0, NULL, 1),
(28293, 21778, '5', 'Sankar polytechnic College ', '', 'Mechanical engineering ', '2021', 91.00, '', 1, '2024-09-25 05:30:54', 0, NULL, 0, NULL, 1),
(28294, 21778, '1', 'Rose Mary matric hr.sec. school', '', '', '2018', 91.00, '', 1, '2024-09-25 05:31:26', 0, NULL, 0, NULL, 1),
(28295, 21780, '3', 'Periyar university ', '', 'Bsc ', '2018', 72.00, '', 1, '2024-09-25 05:39:09', 0, NULL, 0, NULL, 1),
(28296, 21781, '3', 'Anna University', '', 'Bachelor of engineering', '2020', 60.00, '', 1, '2024-09-25 05:41:47', 0, NULL, 0, NULL, 1),
(28297, 21781, '2', 'State Board', '', '', '2014', 76.00, '', 1, '2024-09-25 05:42:17', 0, NULL, 0, NULL, 1),
(28298, 21781, '1', 'State Board', '', '', '2012', 71.00, '', 1, '2024-09-25 05:42:53', 0, NULL, 0, NULL, 1),
(28299, 21724, '3', 'Veltech Ranga Sanku arts college ', '', 'Bsc.Computer Science ', '2023', 76.00, '', 1, '2024-09-25 05:49:01', 0, NULL, 0, NULL, 1),
(28300, 21779, '3', 'Periyar university ', '', 'BCA', '2017', 70.00, '', 1, '2024-09-25 05:54:51', 0, NULL, 0, NULL, 1),
(28301, 21779, '4', 'Anna University ', '', 'MCA', '2019', 80.14, '', 1, '2024-09-25 05:55:28', 0, NULL, 0, NULL, 1),
(28302, 21783, '3', 'Anna University ', '', 'B.E', '2022', 70.00, '', 1, '2024-09-25 06:02:05', 0, NULL, 0, NULL, 1),
(28303, 21784, '4', 'Anna university ', '', 'MBA', '2024', 7.30, '', 1, '2024-09-25 06:03:43', 0, NULL, 0, NULL, 1),
(28304, 21784, '3', 'Alagappa university ', '', 'B.com', '2022', 6.90, '', 1, '2024-09-25 06:04:22', 0, NULL, 0, NULL, 1),
(28305, 21782, '4', 'Anna University ', '', 'MBA', '2023', 70.00, '', 1, '2024-09-25 06:05:02', 0, NULL, 0, NULL, 1),
(28306, 21782, '3', 'Alagappa University ', '', 'BBA', '2021', 72.00, '', 1, '2024-09-25 06:06:02', 0, NULL, 0, NULL, 1),
(28307, 21785, '4', 'Anna University ', '', 'MBA ', '2022', 80.00, '', 1, '2024-09-25 06:07:34', 0, NULL, 0, NULL, 1),
(28308, 21785, '3', 'University of Madras ', '', 'BA english ', '2022', 63.00, '', 1, '2024-09-25 06:08:06', 0, NULL, 0, NULL, 1),
(28309, 21785, '2', 'St.Alosius hr sec school, Theni ', '', '', '2019', 63.00, '', 1, '2024-09-25 06:08:46', 0, NULL, 0, NULL, 1),
(28310, 21785, '1', 'St Aloysius HR sec school ', '', '', '2017', 83.00, '', 1, '2024-09-25 06:09:33', 0, NULL, 0, NULL, 1),
(28311, 21786, '3', 'Madras university ', '', 'B.com', '2023', 78.00, '', 1, '2024-09-25 06:25:50', 0, NULL, 0, NULL, 1),
(28312, 21789, '1', 'Anna University ', '', '', '2021', 82.00, '', 1, '2024-09-25 07:37:27', 0, NULL, 0, NULL, 1),
(28313, 21789, '5', 'Anna University ', '', 'DME', '2022', 88.00, '', 1, '2024-09-25 07:39:12', 0, NULL, 0, NULL, 1),
(28314, 21790, '1', 'state board', '', '', '2019', 62.00, '', 1, '2024-09-25 07:59:34', 0, NULL, 0, NULL, 1),
(28315, 21790, '2', 'state board', '', '', '2021', 73.00, '', 1, '2024-09-25 08:00:29', 0, NULL, 0, NULL, 1),
(28316, 21790, '3', 'deemed university', '', 'b.sc.cs', '2024', 65.00, '', 1, '2024-09-25 08:01:56', 0, NULL, 0, NULL, 1),
(28317, 21792, '1', 'Stateboard', '', '', '2019', 56.00, '', 1, '2024-09-25 08:02:34', 0, NULL, 0, NULL, 1),
(28318, 21792, '2', 'Statboard', '', '', '2021', 62.00, '', 1, '2024-09-25 08:03:00', 0, NULL, 0, NULL, 1),
(28319, 21792, '3', 'Deemed University ', '', 'Bca', '2024', 74.00, '', 1, '2024-09-25 08:03:31', 0, NULL, 0, NULL, 1),
(28320, 21791, '3', 'Madras University ', '', 'Bcom.CA ( Computer Application)', '2023', 75.00, '', 1, '2024-09-25 08:16:57', 0, NULL, 0, NULL, 1),
(28321, 21793, '4', 'SRM deemed university', '', 'M. COM', '2024', 8.48, '', 1, '2024-09-25 08:17:11', 0, NULL, 0, NULL, 1),
(28322, 21794, '3', 'University of madras', '', 'B. Com', '2021', 77.00, '', 1, '2024-09-25 08:55:27', 0, NULL, 0, NULL, 1),
(28323, 21796, '3', 'alagappa university', '', 'bsc', '2016', 60.00, '', 1, '2024-09-25 09:00:24', 0, NULL, 0, NULL, 1),
(28324, 21798, '3', 'SRMIST', '', 'Mechanical Engineer ', '2022', 7.68, '', 1, '2024-09-25 09:21:01', 0, NULL, 0, NULL, 1),
(28325, 21799, '3', 'Government College of Engineering, Bargur ', '', 'B.E(COMPUTER SCIENCE AND ENGINEERING)', '2024', 82.00, '', 1, '2024-09-25 09:25:27', 0, NULL, 0, NULL, 1),
(28326, 21800, '4', 'Vels Institute of Science, Technology and Advanced Studies', '', 'MCA', '2023', 73.80, '', 1, '2024-09-25 09:57:05', 0, NULL, 0, NULL, 1),
(28327, 21797, '3', 'University ', '', 'B.com', '2023', 96.00, '', 1, '2024-09-25 10:14:22', 0, NULL, 0, NULL, 1),
(28328, 21801, '3', 'SRMIST ', '', 'B.com', '2022', 72.00, '', 1, '2024-09-25 11:03:38', 1, '2024-09-25 11:04:23', 0, NULL, 0),
(28329, 21801, '3', 'SRMIST ', '', 'B.com', '2022', 7.35, '', 1, '2024-09-25 11:04:55', 0, NULL, 0, NULL, 1),
(28330, 21804, '3', 'Madurai kamaraj university ', '', 'B.com (PA)', '2024', 6.78, '', 1, '2024-09-25 03:31:17', 0, NULL, 0, NULL, 1),
(28331, 21807, '3', 'Meenakshi College of Engineering ', '', 'B.Tech(IT)', '2020', 6.20, '', 1, '2024-09-26 04:23:43', 1, '2024-09-26 04:24:59', 0, NULL, 1),
(28332, 21806, '3', 'Madras University ', '', 'BA English literature ', '2021', 60.00, '', 1, '2024-09-26 04:33:24', 0, NULL, 0, NULL, 1),
(28333, 21808, '3', 'Anna university ', '', 'Bachelor of engineering ', '2024', 80.20, '', 1, '2024-09-26 04:47:38', 0, NULL, 0, NULL, 1),
(28334, 21809, '3', 'Bharathidasan Uniiversity ', '', 'Bsc.cs', '2024', 69.00, '', 1, '2024-09-26 04:50:01', 0, NULL, 0, NULL, 1),
(28335, 21811, '1', 'State board ', '', '', '2018', 57.00, '', 1, '2024-09-26 04:57:32', 1, '2024-09-26 04:59:48', 0, NULL, 0),
(28336, 21811, '3', 'Dr.m.g.r University ', '', 'B.com (corporate secretary)', '2023', 7.67, '', 1, '2024-09-26 04:59:42', 0, NULL, 0, NULL, 1),
(28337, 21811, '4', 'Dr.m.g.r University ', '', 'MBA ( HRM)', '2025', 6.86, '', 1, '2024-09-26 05:00:53', 0, NULL, 0, NULL, 1),
(28338, 21813, '3', 'AGURCHAND MANMULL JAIN COLLEGE, MEENAMBAKKAM', '', 'BSc Computer Science ', '2023', 78.00, '', 1, '2024-09-26 05:03:28', 0, NULL, 0, NULL, 1),
(28339, 21814, '3', 'Bharathidhasan university JJ. College of Arts and Science', '', 'B.SC.ComputerScience', '2024', 75.00, '', 1, '2024-09-26 05:03:31', 0, NULL, 0, NULL, 1),
(28340, 21814, '1', 'St. Mary\'s boys higher secondary school', '', '', '2024', 65.00, '', 1, '2024-09-26 05:04:44', 0, NULL, 0, NULL, 1),
(28341, 21815, '4', 'Anna University ', '', 'MCA', '2023', 84.43, '', 1, '2024-09-26 05:05:04', 0, NULL, 0, NULL, 1),
(28342, 21813, '2', 'GENERAL CARIYAPPA HR SEC SCHOOL ', '', '', '2020', 57.00, '', 1, '2024-09-26 05:05:04', 0, NULL, 0, NULL, 1),
(28343, 21814, '2', 'St. Mary\'s boys higher secondary school', '', '', '2024', 75.00, '', 1, '2024-09-26 05:05:11', 0, NULL, 0, NULL, 1),
(28344, 21815, '3', 'Bharathiar University ', '', 'BCA', '2021', 87.73, '', 1, '2024-09-26 05:05:36', 0, NULL, 0, NULL, 1),
(28345, 21813, '1', 'PONNAMMAL MEMORIAL MATRICULATION SCHOOL ', '', '', '2018', 67.00, '', 1, '2024-09-26 05:06:00', 0, NULL, 0, NULL, 1),
(28346, 21815, '2', 'State Board of Kerala ', '', '', '2018', 72.00, '', 1, '2024-09-26 05:06:08', 0, NULL, 0, NULL, 1),
(28347, 21815, '1', 'State Board of Kerala ', '', '', '2016', 89.00, '', 1, '2024-09-26 05:06:35', 0, NULL, 0, NULL, 1),
(28348, 21810, '3', 'Dr.M.g.r.university', '', 'Bcom A&F', '2023', 80.00, '', 1, '2024-09-26 05:08:34', 0, NULL, 0, NULL, 1),
(28349, 21810, '4', 'Dr.M.G.r university ', '', 'MBA', '2025', 80.00, '', 1, '2024-09-26 05:10:02', 0, NULL, 0, NULL, 1),
(28350, 21812, '3', 'anna university', '', 'be', '2020', 80.00, '', 1, '2024-09-26 05:18:44', 0, NULL, 0, NULL, 1),
(28351, 21817, '3', 'Thiruvalluvar university ', '', 'BCA', '2019', 60.00, '', 1, '2024-09-26 05:20:36', 0, NULL, 0, NULL, 1),
(28352, 21817, '4', 'SRM University ', '', 'MBA FINANCE ', '2025', 63.00, '', 1, '2024-09-26 05:21:16', 0, NULL, 0, NULL, 1),
(28353, 21816, '3', 'Madurai kamarajar university', '', 'B. Com(CA) ', '2024', 70.00, '', 1, '2024-09-26 05:24:37', 0, NULL, 0, NULL, 1),
(28354, 21818, '5', 'Dot ', '', 'Diploma in electrical communication engineering ', '2017', 64.00, '', 1, '2024-09-26 05:31:33', 0, NULL, 0, NULL, 1),
(28355, 21820, '3', 'University of Madras ', '', 'B.com', '2024', 85.84, '', 1, '2024-09-26 05:41:10', 0, NULL, 0, NULL, 1),
(28356, 21819, '3', 'B.S.Abdur Rahman Crescent institute of science and Technology', '', 'B.com ( general)', '2024', 8.26, '', 1, '2024-09-26 05:43:41', 0, NULL, 0, NULL, 1),
(28357, 21821, '4', 'Thiruvalluvar university ', '', 'Physics ', '2022', 89.00, '', 1, '2024-09-26 05:45:19', 0, NULL, 0, NULL, 1),
(28358, 21821, '4', 'Thiruvalluvar university ', '', 'M.Sc', '2022', 89.00, '', 1, '2024-09-26 05:45:50', 0, NULL, 0, NULL, 1),
(28359, 21822, '3', 'Anna university', '', 'B. E(mechanical) ', '2024', 79.00, '', 1, '2024-09-26 05:52:11', 0, NULL, 0, NULL, 1),
(28360, 21823, '3', 'SK University ', '', 'BA computer application ', '2023', 75.00, '', 1, '2024-09-26 06:15:04', 0, NULL, 0, NULL, 1),
(28361, 21824, '2', 'St thomas hr sec school ', '', 'BSC cs', '2021', 71.30, '', 1, '2024-09-26 06:22:08', 0, NULL, 0, NULL, 1),
(28362, 21827, '1', 'Cbse', '', '', '2018', 89.60, '', 1, '2024-09-26 06:52:03', 1, '2024-09-26 06:52:37', 0, NULL, 1),
(28363, 21827, '2', 'Cbse', '', '', '2020', 84.60, '', 1, '2024-09-26 06:52:55', 0, NULL, 0, NULL, 1),
(28364, 21827, '3', 'Anna', '', 'B.E', '2024', 84.00, '', 1, '2024-09-26 06:53:46', 0, NULL, 0, NULL, 1),
(28365, 21828, '3', 'Manonmaniam Sundharanar university ', '', 'Bsc computer science ', '2024', 76.00, '', 1, '2024-09-26 06:55:56', 0, NULL, 0, NULL, 1),
(28366, 21825, '3', 'Madras University ', '', 'BCA', '2022', 89.00, '', 1, '2024-09-26 06:56:02', 0, NULL, 0, NULL, 1),
(28367, 21826, '4', 'amna university', '', 'mca', '2024', 80.00, '', 1, '2024-09-26 06:59:27', 0, NULL, 0, NULL, 1),
(28368, 21826, '3', 'thiruvalluvar university', '', 'bachelor of science in mathematics', '2022', 74.50, '', 1, '2024-09-26 07:00:32', 0, NULL, 0, NULL, 1),
(28369, 21826, '2', 'state board', '', '', '2019', 79.00, '', 1, '2024-09-26 07:00:55', 0, NULL, 0, NULL, 1),
(28370, 21826, '1', 'state board', '', '', '2017', 95.40, '', 1, '2024-09-26 07:01:23', 0, NULL, 0, NULL, 1),
(28371, 21830, '2', 'State board', '', '', '2015', 74.00, '', 1, '2024-09-26 07:15:28', 0, NULL, 0, NULL, 1),
(28372, 21830, '1', 'State board', '', '', '2013', 84.00, '', 1, '2024-09-26 07:16:12', 0, NULL, 0, NULL, 1),
(28373, 21831, '3', 'Dr. MGR University Research and Institute', '', 'B.B.A Financial planning ', '2023', 74.50, '', 1, '2024-09-26 07:32:00', 0, NULL, 0, NULL, 1),
(28374, 21833, '3', 'Jamal mohamed college, Trichy ', '', 'BSC Computer Science ', '2023', 85.00, '', 1, '2024-09-26 07:41:57', 0, NULL, 0, NULL, 1),
(28375, 21833, '2', 'Tamilnadu state board ', '', '', '2020', 63.00, '', 1, '2024-09-26 07:42:16', 0, NULL, 0, NULL, 1),
(28376, 21833, '1', 'Tamilnadu state board ', '', '', '2018', 75.00, '', 1, '2024-09-26 07:42:31', 0, NULL, 0, NULL, 1),
(28377, 21834, '1', 'Karnataka secondary ', '', '', '2010', 47.00, '', 1, '2024-09-26 08:40:48', 0, NULL, 0, NULL, 1),
(28378, 21835, '3', 'University of madras ', '', 'Bcom Accounting and Finance ', '2022', 86.00, '', 1, '2024-09-26 09:50:36', 0, NULL, 0, NULL, 1),
(28379, 21836, '3', ' University ', '', 'B.Tech(IT)', '2024', 89.00, '', 1, '2024-09-26 09:56:48', 0, NULL, 0, NULL, 1),
(28380, 21839, '3', 'Anna university ', '', 'B.E', '2024', 80.00, '', 1, '2024-09-26 12:59:48', 0, NULL, 0, NULL, 1),
(28381, 21805, '3', 'Anna University ', '', 'B.E', '2022', 80.00, '', 1, '2024-09-26 01:13:14', 0, NULL, 0, NULL, 1),
(28382, 21840, '1', 'State board government ', '', '', '2017', 66.00, '', 1, '2024-09-26 01:25:23', 0, NULL, 0, NULL, 1),
(28383, 21840, '2', 'State board government ', '', '', '2019', 53.00, '', 1, '2024-09-26 01:25:54', 1, '2024-09-26 01:27:09', 0, NULL, 1),
(28384, 21840, '3', 'Madurai Kamraj University ', '', 'BCA', '2022', 72.00, '', 1, '2024-09-26 01:27:35', 0, NULL, 0, NULL, 1),
(28385, 21840, '4', 'Madurai Kamraj University ', '', 'MCA', '2024', 70.00, '', 1, '2024-09-26 01:27:55', 0, NULL, 0, NULL, 1),
(28386, 21844, '3', 'Bharathiyar university', '', 'B.com', '2021', 68.00, '', 1, '2024-09-27 04:30:09', 0, NULL, 0, NULL, 1),
(28387, 21841, '3', 'Madras University ', '', 'BCA', '2023', 80.00, '', 1, '2024-09-27 04:47:51', 0, NULL, 0, NULL, 1),
(28388, 21843, '3', 'Thiruvalluvar university', '', 'B.sc Computer science', '2024', 80.00, '', 1, '2024-09-27 04:51:34', 0, NULL, 0, NULL, 1),
(28389, 21846, '3', 'Manonmaniam Sundaranar university ', '', 'B.com ', '2019', 71.00, '', 1, '2024-09-27 04:53:12', 0, NULL, 0, NULL, 1),
(28390, 21847, '1', 'tamilnadu state board ', '', '', '2018', 92.20, '', 1, '2024-09-27 04:54:59', 0, NULL, 0, NULL, 1),
(28391, 21847, '2', 'tamilnadu state board', '', '', '2020', 78.82, '', 1, '2024-09-27 04:55:28', 0, NULL, 0, NULL, 1),
(28392, 21847, '3', 'anna university ', '', 'b e cse', '2024', 83.80, '', 1, '2024-09-27 04:56:02', 0, NULL, 0, NULL, 1),
(28393, 21848, '3', 'University of Madras ', '', 'B.com (Gen)', '2024', 71.00, '', 1, '2024-09-27 05:08:36', 0, NULL, 0, NULL, 1),
(28394, 21848, '5', 'Madras computer center', '', 'Honorable Diploma in Computer Application ', '2021', 80.00, '', 1, '2024-09-27 05:09:51', 0, NULL, 0, NULL, 1),
(28395, 21845, '3', 'University ', '', 'Bsc computer science ', '2023', 79.00, '', 1, '2024-09-27 05:13:56', 0, NULL, 0, NULL, 1),
(28396, 21849, '4', 'Periyar university ', '', 'MBA', '2022', 64.00, '', 1, '2024-09-27 05:18:23', 0, NULL, 0, NULL, 1),
(28397, 21838, '3', 'University of madras ', '', 'Bsc computer science ', '2022', 75.00, '', 1, '2024-09-27 05:26:53', 0, NULL, 0, NULL, 1),
(28398, 21850, '1', 'Board', '', 'BE', '2016', 85.00, '', 1, '2024-09-27 05:32:22', 0, NULL, 0, NULL, 1),
(28399, 21850, '2', 'SRV Rasipuram', '', '', '2018', 70.00, '', 1, '2024-09-27 05:32:45', 0, NULL, 0, NULL, 1),
(28400, 21850, '3', 'Anna University ', '', 'BE', '2022', 85.00, '', 1, '2024-09-27 05:33:13', 0, NULL, 0, NULL, 1),
(28401, 21851, '3', 'Erode sengunthar engineering college ', '', 'BE-COMPUTER science and engineering ', '2024', 77.00, '', 1, '2024-09-27 05:38:09', 0, NULL, 0, NULL, 1),
(28402, 21852, '3', 'Thiruvalluvar university ', '', 'BA ENGLISH ', '2021', 57.00, '', 1, '2024-09-27 05:50:42', 0, NULL, 0, NULL, 1),
(28403, 21855, '3', 'SRM university', '', 'B.sc visual communication', '2020', 67.00, '', 1, '2024-09-27 06:21:43', 0, NULL, 0, NULL, 1),
(28404, 21856, '5', 'apollo', '', 'msa', '2022', 58.00, '', 1, '2024-09-27 06:29:29', 0, NULL, 0, NULL, 1),
(28405, 21854, '3', 'Madras University ', '', 'BCA', '2024', 70.00, '', 1, '2024-09-27 06:37:27', 0, NULL, 0, NULL, 1),
(28406, 21857, '3', 'Madras University ', '', 'BCA', '2021', 88.77, '', 1, '2024-09-27 06:40:38', 0, NULL, 0, NULL, 1),
(28407, 21860, '3', 'Bharathidasan university ', '', 'B.A', '2023', 75.00, '', 1, '2024-09-27 06:49:19', 0, NULL, 0, NULL, 1),
(28408, 21860, '1', 'State board ', '', '', '2018', 73.00, '', 1, '2024-09-27 06:49:43', 0, NULL, 0, NULL, 1),
(28409, 21860, '2', 'Oriental higher secondary school ', '', '', '2020', 75.00, '', 1, '2024-09-27 06:50:16', 0, NULL, 0, NULL, 1),
(28410, 21858, '4', 'KUVEMPU University ', '', 'BA', '2014', 55.18, '', 1, '2024-09-27 06:50:34', 0, NULL, 0, NULL, 1),
(28411, 21859, '3', 'Madras university', '', 'B.Com', '2022', 75.00, '', 1, '2024-09-27 06:54:19', 0, NULL, 0, NULL, 1),
(28412, 21861, '3', 'Anna University', '', 'B. Tech', '2023', 81.16, '', 1, '2024-09-27 07:12:25', 0, NULL, 0, NULL, 1),
(28413, 21861, '1', 'State board', '', '', '2017', 96.80, '', 1, '2024-09-27 07:13:55', 0, NULL, 0, NULL, 1),
(28414, 21861, '2', 'State Board', '', '', '2019', 70.10, '', 1, '2024-09-27 07:14:17', 0, NULL, 0, NULL, 1),
(28415, 21862, '5', 'Bangalore University ', '', 'B.com', '2021', 100.00, '', 1, '2024-09-27 07:30:22', 0, NULL, 0, NULL, 1),
(28416, 21863, '3', 'Alagappa university ', '', 'BA History ', '2024', 80.00, '', 1, '2024-09-27 07:35:43', 0, NULL, 0, NULL, 1),
(28417, 21864, '3', 'Ramakrishna  Mission Vivekanda College ', '', 'Bcom', '2024', 60.00, '', 104, '2024-09-27 03:19:37', 0, NULL, 0, NULL, 1),
(28418, 21865, '3', 'University of Madras ', '', 'Bcom', '2024', 70.00, '', 1, '2024-09-27 11:00:15', 0, NULL, 0, NULL, 1),
(28419, 21866, '3', 'Rrase college of engineering ', '', 'BE computer science engineering ', '2023', 70.00, '', 1, '2024-09-27 11:25:41', 1, '2024-09-27 11:29:06', 0, NULL, 1),
(28420, 21866, '1', 'State board ', '', '', '2016', 85.00, '', 1, '2024-09-27 11:27:22', 0, NULL, 0, NULL, 1),
(28421, 21866, '2', 'State board ', '', '', '2019', 61.00, '', 1, '2024-09-27 11:28:37', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28422, 21867, '3', 'Madras University ', '', 'Bba', '2024', 86.00, '', 1, '2024-09-27 03:04:56', 0, NULL, 0, NULL, 1),
(28423, 21870, '3', 'SNS College of Technology ', '', 'BE-ECE', '2024', 82.00, '', 1, '2024-09-28 04:13:51', 0, NULL, 0, NULL, 1),
(28424, 21869, '3', 'Dr.MGR educational and research institute ', '', 'BCA', '2023', 74.66, '', 1, '2024-09-28 04:14:25', 1, '2024-09-28 04:17:54', 0, NULL, 1),
(28425, 21870, '2', 'State board ', '', '', '2020', 74.00, '', 1, '2024-09-28 04:14:29', 0, NULL, 0, NULL, 1),
(28426, 21870, '1', 'State board ', '', '', '2018', 87.00, '', 1, '2024-09-28 04:14:53', 0, NULL, 0, NULL, 1),
(28427, 21871, '3', 'Anna university ', '', 'B.e computer science and Engineering ', '2024', 83.00, '', 1, '2024-09-28 04:15:57', 0, NULL, 0, NULL, 1),
(28428, 21874, '3', 'Anna University', '', 'BE.CSE', '2024', 86.00, '', 1, '2024-09-28 04:16:07', 0, NULL, 0, NULL, 1),
(28429, 21873, '3', 'Anna University ', '', 'BE(CSE)', '2024', 70.00, '', 1, '2024-09-28 04:16:14', 0, NULL, 0, NULL, 1),
(28430, 21871, '1', 'Tamil nadu State board ', '', '', '2018', 86.20, '', 1, '2024-09-28 04:16:39', 0, NULL, 0, NULL, 1),
(28431, 21869, '2', 'Tamilnadu state board ', '', '', '2020', 60.00, '', 1, '2024-09-28 04:16:41', 1, '2024-09-28 04:17:45', 0, NULL, 1),
(28432, 21871, '2', 'Tamil nadu State board', '', '', '2020', 73.00, '', 1, '2024-09-28 04:16:58', 0, NULL, 0, NULL, 1),
(28433, 21869, '1', 'Tamilnadu state board ', '', '', '2018', 65.00, '', 1, '2024-09-28 04:17:33', 0, NULL, 0, NULL, 1),
(28434, 21872, '4', 'tiruvalluvar university', '', 'mca', '2023', 89.00, '', 1, '2024-09-28 04:20:28', 0, NULL, 0, NULL, 1),
(28435, 21875, '3', 'Saveetha Engineering College ', '', 'BE', '2023', 80.00, '', 1, '2024-09-28 04:26:04', 0, NULL, 0, NULL, 1),
(28436, 21878, '1', 'Stateboard', '', '', '2017', 96.00, '', 1, '2024-09-28 04:27:34', 0, NULL, 0, NULL, 1),
(28437, 21878, '2', 'Stateboard ', '', '', '2019', 65.00, '', 1, '2024-09-28 04:28:03', 0, NULL, 0, NULL, 1),
(28438, 21876, '3', 'University of Madras ', '', 'B.com cs', '2023', 70.00, '', 1, '2024-09-28 04:28:25', 0, NULL, 0, NULL, 1),
(28439, 21877, '3', 'Anna university', '', 'Be(Cse)', '2022', 72.96, '', 1, '2024-09-28 04:29:25', 0, NULL, 0, NULL, 1),
(28440, 21879, '3', 'Anna university', '', '', '2024', 83.00, '', 1, '2024-09-28 04:39:42', 0, NULL, 0, NULL, 1),
(28441, 21880, '3', 'Anna University ', '', 'BE cSE', '2024', 80.00, '', 1, '2024-09-28 04:45:44', 0, NULL, 0, NULL, 1),
(28442, 21881, '3', 'Anna University ', '', 'BE', '2023', 82.00, '', 1, '2024-09-28 04:45:51', 0, NULL, 0, NULL, 1),
(28443, 21882, '4', 'Anna University ', '', 'MBA', '2024', 8.50, '', 1, '2024-09-28 04:53:47', 0, NULL, 0, NULL, 1),
(28444, 21883, '4', 'University of Madras ', '', 'Master of Information Technology', '2024', 70.00, '', 1, '2024-09-28 05:02:26', 0, NULL, 0, NULL, 1),
(28445, 21883, '3', 'Thiruvalluvar University ', '', 'Bachelor of Computer Science', '2022', 75.60, '', 1, '2024-09-28 05:02:57', 0, NULL, 0, NULL, 1),
(28446, 21883, '2', 'Subramania Sasthiriyar Hr sec School ', '', '', '2019', 60.00, '', 1, '2024-09-28 05:03:39', 0, NULL, 0, NULL, 1),
(28447, 21883, '1', 'Govt High School Vilai', '', '', '2017', 90.40, '', 1, '2024-09-28 05:04:18', 0, NULL, 0, NULL, 1),
(28448, 21884, '3', 'University of Madras', '', 'BCA ', '2024', 84.00, '', 1, '2024-09-28 05:13:30', 0, NULL, 0, NULL, 1),
(28449, 21884, '2', 'State Board', '', '', '2021', 87.00, '', 1, '2024-09-28 05:14:04', 0, NULL, 0, NULL, 1),
(28450, 21884, '1', 'State Board', '', '', '2019', 85.00, '', 1, '2024-09-28 05:14:50', 0, NULL, 0, NULL, 1),
(28451, 21885, '3', 'R M D engineering college ', '', 'Btech ', '2025', 62.00, '', 1, '2024-09-28 05:25:05', 0, NULL, 0, NULL, 1),
(28452, 21887, '3', 'University of madras', '', 'Bsc computer science', '2024', 61.50, '', 1, '2024-09-28 06:01:01', 0, NULL, 0, NULL, 1),
(28453, 21889, '1', 'State board ', '', '', '2016', 80.80, '', 1, '2024-09-28 06:30:34', 0, NULL, 0, NULL, 1),
(28454, 21889, '2', 'State board ', '', '', '2018', 55.50, '', 1, '2024-09-28 06:31:09', 0, NULL, 0, NULL, 1),
(28455, 21889, '3', 'Tiruvallur university ', '', 'B.Sc. physics ', '2021', 64.70, '', 1, '2024-09-28 06:31:57', 0, NULL, 0, NULL, 1),
(28456, 21890, '3', 'anna university', '', 'b.e', '2023', 79.20, '', 1, '2024-09-28 06:34:57', 0, NULL, 0, NULL, 1),
(28457, 21890, '1', 'state board', '', '', '2017', 63.00, '', 1, '2024-09-28 06:35:28', 0, NULL, 0, NULL, 1),
(28458, 21890, '2', 'state board', '', '', '2019', 67.50, '', 1, '2024-09-28 06:35:52', 0, NULL, 0, NULL, 1),
(28459, 21888, '3', 'Madras University ', '', 'B com corporate securityship ', '2024', 75.00, '', 1, '2024-09-28 06:47:55', 0, NULL, 0, NULL, 1),
(28460, 21888, '2', 'Board', '', '', '2021', 63.00, '', 1, '2024-09-28 06:49:22', 0, NULL, 0, NULL, 1),
(28461, 21888, '1', 'Board', '', '', '2019', 52.00, '', 1, '2024-09-28 06:49:58', 0, NULL, 0, NULL, 1),
(28462, 21892, '3', 'Madras university ', '', 'BBA', '2020', 78.00, '', 1, '2024-09-28 06:54:40', 0, NULL, 0, NULL, 1),
(28463, 21891, '3', 'Thiruvalluvar', '', 'BBA', '2017', 80.00, '', 1, '2024-09-28 07:06:26', 0, NULL, 0, NULL, 1),
(28464, 21893, '4', 'Vikrama simhapuri university', '', 'B. Com (CA) ', '2016', 73.00, '', 1, '2024-09-28 07:07:07', 0, NULL, 0, NULL, 1),
(28465, 21897, '3', 'State Board ', '', 'BSC computer science ', '2023', 86.00, '', 1, '2024-09-28 09:25:53', 0, NULL, 0, NULL, 1),
(28466, 21896, '3', 'Thiruvallur University', '', 'BCA', '2024', 75.00, '', 1, '2024-09-28 09:25:57', 0, NULL, 0, NULL, 1),
(28467, 21895, '3', 'Anna university', '', 'Bachelor of engineering ', '2022', 75.00, '', 1, '2024-09-28 09:33:50', 0, NULL, 0, NULL, 1),
(28468, 21895, '1', 'State Board of tamilnadu', '', '', '2016', 89.00, '', 1, '2024-09-28 09:34:29', 1, '2024-09-28 09:36:37', 0, NULL, 1),
(28469, 21895, '2', 'State Board of tamilnadu', '', '', '2018', 69.00, '', 1, '2024-09-28 09:37:13', 0, NULL, 0, NULL, 1),
(28470, 21898, '3', 'Bharathiar University', '', 'BSC Computer Science', '2023', 70.00, '', 1, '2024-09-28 09:39:43', 0, NULL, 0, NULL, 1),
(28471, 21898, '2', 'Annai Velankanni Matric Higher Secondary School', '', '', '2020', 75.00, '', 1, '2024-09-28 09:40:32', 0, NULL, 0, NULL, 1),
(28472, 21898, '1', 'Annai velankanni Matric Higher Secondary School', '', '', '2018', 86.00, '', 1, '2024-09-28 09:40:55', 0, NULL, 0, NULL, 1),
(28473, 21899, '3', 'Anna University', '', 'B.E - ECE', '2023', 75.00, '', 1, '2024-09-28 09:45:43', 0, NULL, 0, NULL, 1),
(28474, 21900, '3', 'Gnanamani college of technology', '', 'Bachelor of engineering', '2020', 7.09, '', 1, '2024-09-28 10:01:31', 0, NULL, 0, NULL, 1),
(28475, 21901, '3', 'Anna University ', '', 'B.E (CSE)', '2024', 80.00, '', 1, '2024-09-28 10:10:14', 0, NULL, 0, NULL, 1),
(28476, 21901, '2', 'State board ', '', '', '2020', 62.00, '', 1, '2024-09-28 10:11:14', 0, NULL, 0, NULL, 1),
(28477, 21903, '3', 'Anna university', '', 'Bachelor of Technology', '2024', 83.00, '', 1, '2024-09-28 10:12:41', 0, NULL, 0, NULL, 1),
(28478, 21902, '3', 'Anna university', '', 'Computer science and engineering ', '2024', 88.00, '', 1, '2024-09-28 10:12:55', 0, NULL, 0, NULL, 1),
(28479, 21903, '2', 'State board', '', '', '2020', 81.00, '', 1, '2024-09-28 10:13:51', 0, NULL, 0, NULL, 1),
(28480, 21903, '1', 'State board', '', '', '2018', 85.00, '', 1, '2024-09-28 10:14:14', 0, NULL, 0, NULL, 1),
(28481, 21905, '4', 'Anna University ', '', 'MCA', '2024', 84.00, '', 1, '2024-09-28 10:17:06', 0, NULL, 0, NULL, 1),
(28482, 21905, '3', 'Alagappa university ', '', 'BCA', '2022', 82.00, '', 1, '2024-09-28 10:17:49', 0, NULL, 0, NULL, 1),
(28483, 21905, '2', 'Syed ammal hr sec school', '', '', '2019', 59.00, '', 1, '2024-09-28 10:18:58', 0, NULL, 0, NULL, 1),
(28484, 21904, '4', 'Mohamed Sathak Engineering College ', '', 'MCA', '2024', 84.00, '', 1, '2024-09-28 10:19:35', 0, NULL, 0, NULL, 1),
(28485, 21905, '1', 'Schwartz mat hr sec school ', '', '', '2017', 75.00, '', 1, '2024-09-28 10:19:57', 0, NULL, 0, NULL, 1),
(28486, 21906, '4', 'Mohamed sathak', '', 'MCA', '2024', 75.00, '', 1, '2024-09-28 10:20:05', 0, NULL, 0, NULL, 1),
(28487, 21904, '3', 'Syed Hameedha Arts and Science College ', '', 'BCA ', '2022', 82.00, '', 1, '2024-09-28 10:20:19', 0, NULL, 0, NULL, 1),
(28488, 21904, '2', 'Hameediah Boys Higher secondary school ', '', '', '2019', 59.00, '', 1, '2024-09-28 10:20:45', 0, NULL, 0, NULL, 1),
(28489, 21904, '1', 'Islamiah High school ', '', '', '2017', 88.00, '', 1, '2024-09-28 10:21:05', 0, NULL, 0, NULL, 1),
(28490, 21906, '3', 'Syed hammedha arts and science college', '', 'BCA', '2021', 75.00, '', 1, '2024-09-28 10:21:31', 0, NULL, 0, NULL, 1),
(28491, 21906, '2', 'Vivekananda vidyalaya matric hr sec school', '', '', '2018', 54.00, '', 1, '2024-09-28 10:22:39', 0, NULL, 0, NULL, 1),
(28492, 21906, '1', 'Govt hr sec school ', '', '', '2015', 76.00, '', 1, '2024-09-28 10:23:14', 0, NULL, 0, NULL, 1),
(28493, 21907, '4', 'University of Madras ', '', 'MCA', '2024', 85.00, '', 1, '2024-09-28 10:53:31', 0, NULL, 0, NULL, 1),
(28494, 21907, '1', 'Government High secondary school segampalayam', '', '', '2017', 92.00, '', 1, '2024-09-28 10:54:20', 0, NULL, 0, NULL, 1),
(28495, 21907, '2', 'Slnm government high school ', '', '', '2019', 69.00, '', 1, '2024-09-28 10:54:45', 0, NULL, 0, NULL, 1),
(28496, 21907, '3', 'Bhrathiyar university ', '', 'Bsc maths with cA', '2022', 80.00, '', 1, '2024-09-28 10:55:22', 0, NULL, 0, NULL, 1),
(28497, 21910, '3', 'university', '', 'b.com llb', '2024', 70.00, '', 1, '2024-09-28 01:21:17', 0, NULL, 0, NULL, 1),
(28498, 21914, '3', 'Thiruvalluvar university ', '', 'Bcom CA ', '2024', 78.00, '', 1, '2024-09-28 04:49:50', 0, NULL, 0, NULL, 1),
(28499, 21911, '3', 'Madras University ', '', 'B.sc mathematics ', '2023', 70.00, '', 1, '2024-09-29 11:15:43', 0, NULL, 0, NULL, 1),
(28500, 21917, '4', 'University of Madras ', '', 'M.com', '2024', 75.00, '', 1, '2024-09-29 01:24:57', 0, NULL, 0, NULL, 1),
(28501, 21919, '3', 'Tiruvalluvar University ', '', 'Bsc.Computer Science ', '2024', 80.00, '', 1, '2024-09-30 05:00:49', 0, NULL, 0, NULL, 1),
(28502, 21920, '3', 'Madras university', '', 'B.sc mathematics', '2023', 80.00, '', 1, '2024-09-30 05:07:27', 0, NULL, 0, NULL, 1),
(28503, 21923, '5', 'Anna University ', '', 'Diploma and BE', '2017', 70.00, '', 1, '2024-09-30 05:10:06', 0, NULL, 0, NULL, 1),
(28504, 21921, '3', 'Periyar university ', '', 'B. Com (cs)', '2023', 72.00, '', 1, '2024-09-30 05:11:40', 0, NULL, 0, NULL, 1),
(28505, 21918, '4', 'dr.mgr educational and research institute', '', 'mba - hrm', '2025', 78.00, '', 1, '2024-09-30 05:12:21', 0, NULL, 0, NULL, 1),
(28506, 21925, '4', 'Bharathidhasan university', '', 'B. Com', '2023', 87.00, '', 1, '2024-09-30 05:15:38', 0, NULL, 0, NULL, 1),
(28507, 21922, '3', 'Madras University ', '', 'BA public administration ', '2024', 85.00, '', 1, '2024-09-30 05:15:49', 0, NULL, 0, NULL, 1),
(28508, 21916, '3', 'University of Madras ', '', 'Bcom general ', '2024', 60.00, '', 1, '2024-09-30 05:19:18', 0, NULL, 0, NULL, 1),
(28509, 21924, '3', 'University of Madras ', '', 'B.com', '2024', 75.00, '', 1, '2024-09-30 05:19:52', 0, NULL, 0, NULL, 1),
(28510, 21927, '3', 'Bharathiyar university ', '', 'Bsc computer science ', '2023', 65.00, '', 1, '2024-09-30 05:36:59', 0, NULL, 0, NULL, 1),
(28511, 21926, '5', 'KAR Polytechnic College, Solur ', '', 'Diploma In Computer Engineering ', '2024', 81.50, '', 1, '2024-09-30 05:38:52', 0, NULL, 0, NULL, 1),
(28512, 21928, '3', 'Madras University ', '', 'BCA', '2023', 70.00, '', 1, '2024-09-30 05:39:14', 0, NULL, 0, NULL, 1),
(28513, 21929, '4', 'Madras university ', '', 'BA HISTORY ', '2011', 60.00, '', 1, '2024-09-30 05:57:01', 0, NULL, 0, NULL, 1),
(28514, 21842, '4', 'University of Madras ', '', 'MA', '2023', 76.00, '', 1, '2024-09-30 06:03:43', 0, NULL, 0, NULL, 1),
(28515, 21930, '1', 'Board', '', '', '2022', 63.00, '', 1, '2024-09-30 06:07:17', 0, NULL, 0, NULL, 1),
(28516, 21931, '4', 'Annamalai University', '', 'MBA', '2024', 7.90, '', 1, '2024-09-30 06:07:29', 0, NULL, 0, NULL, 1),
(28517, 21931, '3', 'Bishop Heber College', '', 'BBA', '2022', 8.93, '', 1, '2024-09-30 06:08:41', 0, NULL, 0, NULL, 1),
(28518, 21933, '3', 'Anna University ', '', 'BE', '2024', 76.00, '', 1, '2024-09-30 06:18:42', 0, NULL, 0, NULL, 1),
(28519, 21932, '3', 'Chevalier T Thomas Elizabeth College for women ', '', 'BBA ', '2024', 70.00, '', 1, '2024-09-30 06:19:17', 0, NULL, 0, NULL, 1),
(28520, 21935, '3', 'Alpha College of Engineering ', '', 'B.E(Computer science Engineering)', '2022', 83.00, '', 1, '2024-09-30 06:19:29', 0, NULL, 0, NULL, 1),
(28521, 21933, '5', 'Directorate of technical education ', '', 'Diploma- cSE', '2022', 86.00, '', 1, '2024-09-30 06:19:54', 0, NULL, 0, NULL, 1),
(28522, 21933, '1', 'Secondary school ', '', '', '2018', 70.00, '', 1, '2024-09-30 06:20:21', 0, NULL, 0, NULL, 1),
(28523, 21932, '2', 'St.Marys Matriculation girls higher secondary school ', '', '', '2021', 79.00, '', 1, '2024-09-30 06:20:52', 0, NULL, 0, NULL, 1),
(28524, 21932, '1', 'St.Marys Matriculation girls higher secondary school ', '', '', '2019', 64.00, '', 1, '2024-09-30 06:21:34', 0, NULL, 0, NULL, 1),
(28525, 21934, '3', 'Madras university', '', 'B. Com(computer applications) ', '2024', 75.00, '', 1, '2024-09-30 06:29:28', 0, NULL, 0, NULL, 1),
(28526, 21937, '4', 'University of Madras ', '', '', '2023', 72.00, '', 1, '2024-09-30 07:59:09', 0, NULL, 0, NULL, 1),
(28527, 21939, '3', 'University of Madras ', '', '', '2022', 70.00, '', 1, '2024-09-30 08:05:55', 0, NULL, 0, NULL, 1),
(28528, 21940, '5', 'Panimalar', '', 'D.E.E.E', '2020', 75.00, '', 1, '2024-09-30 08:06:25', 0, NULL, 0, NULL, 1),
(28529, 21938, '3', 'SRM University', '', 'B.com General', '2024', 7.26, '', 1, '2024-09-30 08:09:12', 0, NULL, 0, NULL, 1),
(28530, 21942, '3', 'University Of Madras ', '', 'B.COM (CS)', '2024', 68.00, '', 1, '2024-09-30 08:22:02', 0, NULL, 0, NULL, 1),
(28531, 21943, '3', 'University of Madras ', '', 'BCA ', '2023', 64.00, '', 1, '2024-09-30 08:40:54', 0, NULL, 0, NULL, 1),
(28532, 21944, '4', 'Madurai kamaraj University ', '', 'MBA HR ', '2024', 76.00, '', 1, '2024-09-30 09:10:52', 0, NULL, 0, NULL, 1),
(28533, 21944, '3', 'Madurai kamaraj University ', '', 'B.com', '2022', 83.00, '', 1, '2024-09-30 09:11:21', 0, NULL, 0, NULL, 1),
(28534, 21944, '2', 'State board ', '', '', '2019', 83.00, '', 1, '2024-09-30 09:11:43', 0, NULL, 0, NULL, 1),
(28535, 21944, '1', 'State Board ', '', '', '2017', 87.00, '', 1, '2024-09-30 09:12:05', 0, NULL, 0, NULL, 1),
(28536, 21945, '4', 'sathyabama university ', '', 'mba', '2024', 78.00, '', 1, '2024-09-30 09:12:49', 0, NULL, 0, NULL, 1),
(28537, 21946, '3', 'Anna University ', '', 'B.E', '2017', 69.90, '', 1, '2024-09-30 09:26:38', 0, NULL, 0, NULL, 1),
(28538, 21948, '3', 'University of Madras ', '', 'B.com(G)', '2024', 69.00, '', 1, '2024-09-30 10:23:15', 0, NULL, 0, NULL, 1),
(28539, 21947, '3', 'University of madras ', '', 'B.Com CS', '2023', 70.00, '', 1, '2024-09-30 10:26:51', 0, NULL, 0, NULL, 1),
(28540, 21951, '4', 'Jntu', '', 'Mba', '2022', 8.00, '', 1, '2024-09-30 11:40:44', 0, NULL, 0, NULL, 1),
(28541, 21951, '3', 'Sk university ', '', 'Bsc', '2019', 8.00, '', 1, '2024-09-30 11:41:16', 0, NULL, 0, NULL, 1),
(28542, 21951, '2', 'Ibse', '', '', '2016', 75.00, '', 1, '2024-09-30 11:42:16', 0, NULL, 0, NULL, 1),
(28543, 21951, '1', 'IBSE', '', '', '2014', 9.30, '', 1, '2024-09-30 11:42:41', 0, NULL, 0, NULL, 1),
(28544, 21952, '3', 'Rayalaseema university ', '', '', '2021', 60.00, '', 1, '2024-09-30 11:44:59', 0, NULL, 0, NULL, 1),
(28545, 21950, '3', 'Rayalaseema univercity', '', 'Bsc', '2021', 62.50, '', 1, '2024-09-30 11:46:10', 0, NULL, 0, NULL, 1),
(28546, 21954, '3', 'Tamilnadu Agricultural university, Coimbatore', '', 'B.Sc(Hons) Agriculture', '2024', 77.30, '', 1, '2024-09-30 01:10:11', 0, NULL, 0, NULL, 1),
(28547, 21954, '2', 'Tamilnadu State board', '', '', '2020', 76.00, '', 1, '2024-09-30 01:11:09', 0, NULL, 0, NULL, 1),
(28548, 21954, '1', 'Tamilnadu Stateboard', '', '', '2018', 93.00, '', 1, '2024-09-30 01:11:34', 0, NULL, 0, NULL, 1),
(28549, 21955, '4', 'Annamalai University ', '', 'Msc Chemistry ', '2024', 70.00, '', 1, '2024-09-30 01:16:01', 0, NULL, 0, NULL, 1),
(28550, 21956, '3', 'anna university', '', 'b.e', '2025', 85.00, '', 1, '2024-09-30 03:20:59', 1, '2024-09-30 03:30:58', 0, NULL, 0),
(28551, 21956, '5', 'anna university', '', 'diploma', '2022', 85.00, '', 1, '2024-09-30 03:30:33', 0, NULL, 0, NULL, 1),
(28552, 21961, '3', 'Vaishnav College for Women', '', 'BA ', '2021', 58.00, '', 104, '2024-10-01 10:40:18', 0, NULL, 0, NULL, 1),
(28553, 21961, '4', 'Madras Universit', '', 'MBA', '2023', 62.00, '', 104, '2024-10-01 10:40:46', 0, NULL, 0, NULL, 1),
(28554, 21963, '4', 'Anna university', '', 'MCA', '2018', 7.65, '', 1, '2024-10-01 05:12:39', 0, NULL, 0, NULL, 1),
(28555, 21962, '3', 'Madras university', '', 'B. Com(general) ', '2024', 55.00, '', 1, '2024-10-01 05:12:51', 0, NULL, 0, NULL, 1),
(28556, 21963, '1', 'State board', '', '', '2011', 78.00, '', 1, '2024-10-01 05:13:15', 0, NULL, 0, NULL, 1),
(28557, 21963, '2', 'State board', '', '', '2013', 56.00, '', 1, '2024-10-01 05:13:32', 0, NULL, 0, NULL, 1),
(28558, 21963, '3', 'Periyar university', '', 'BCA', '2016', 80.00, '', 1, '2024-10-01 05:13:57', 0, NULL, 0, NULL, 1),
(28559, 21960, '3', 'Chellammal women\'s college ', '', 'B.sc.chemistry', '2022', 73.00, '', 1, '2024-10-01 05:14:56', 0, NULL, 0, NULL, 1),
(28560, 21965, '3', 'Sathyabama University ', '', 'Civil Engineering ', '2020', 65.00, '', 1, '2024-10-01 05:27:26', 0, NULL, 0, NULL, 1),
(28561, 21964, '3', 'Sathyabama Institute of science and technology ', '', 'B.E', '2020', 65.00, '', 1, '2024-10-01 05:38:17', 0, NULL, 0, NULL, 1),
(28562, 21967, '3', 'Anna university', '', 'BE(ECE)', '2020', 65.00, '', 1, '2024-10-01 05:43:13', 0, NULL, 0, NULL, 1),
(28563, 21966, '2', 'Sir chaitanya English medium school ', '', '', '2015', 60.00, '', 1, '2024-10-01 05:47:48', 0, NULL, 0, NULL, 1),
(28564, 21971, '3', 'Madras University ', '', 'BA public administration ', '2023', 73.00, '', 1, '2024-10-01 05:54:28', 0, NULL, 0, NULL, 1),
(28565, 21968, '2', 'AHSEC', '', '', '2022', 40.00, '', 1, '2024-10-01 05:56:24', 0, NULL, 0, NULL, 1),
(28566, 21972, '3', 'Jerusalem college of Engineering ', '', 'BE', '2018', 76.30, '', 1, '2024-10-01 06:00:42', 0, NULL, 0, NULL, 1),
(28567, 21970, '4', 'Sri Sankara arts and Science college ', '', 'Msc Computer Science ', '2023', 87.10, '', 1, '2024-10-01 06:04:44', 0, NULL, 0, NULL, 1),
(28568, 21970, '3', 'Sri Chandrasekharendra Saraswathi Viswa Mahavidyalaya', '', 'Bsc Computer Science ', '2020', 81.19, '', 1, '2024-10-01 06:06:17', 0, NULL, 0, NULL, 1),
(28569, 21969, '4', 'Sankara College for arts and Science, kanchipuram ', '', 'M.sc Computer Science ', '2023', 91.50, '', 1, '2024-10-01 06:06:47', 0, NULL, 0, NULL, 1),
(28570, 21970, '2', 'State board', '', '', '2017', 62.80, '', 1, '2024-10-01 06:07:00', 0, NULL, 0, NULL, 1),
(28571, 21969, '3', 'Pachaiyappas women\'s college, kanchipuram ', '', 'B.sc computer science ', '2021', 84.00, '', 1, '2024-10-01 06:07:22', 0, NULL, 0, NULL, 1),
(28572, 21970, '1', 'State board', '', '', '2015', 72.80, '', 1, '2024-10-01 06:07:53', 0, NULL, 0, NULL, 1),
(28573, 21969, '2', 'State board ', '', '', '2018', 83.00, '', 1, '2024-10-01 06:07:56', 0, NULL, 0, NULL, 1),
(28574, 21969, '1', 'State board ', '', '', '2016', 91.80, '', 1, '2024-10-01 06:08:21', 0, NULL, 0, NULL, 1),
(28575, 21973, '3', 'Vikrama simhapuri university ', '', 'Bsc ( mpcs )', '2020', 80.00, '', 1, '2024-10-01 06:27:23', 0, NULL, 0, NULL, 1),
(28576, 21974, '3', 'The New College ', '', 'BA English Literature ', '2023', 60.00, '', 1, '2024-10-01 06:34:05', 0, NULL, 0, NULL, 1),
(28577, 0, '3', 'Thiruvallur ', '', 'B.sc.Biotechnology ', '2024', 89.00, '', 1, '2024-10-01 06:43:01', 1, '2024-10-03 05:16:56', 0, NULL, 0),
(28578, 21975, '3', 'Madras University ', '', 'B com computer application ', '2020', 62.00, '', 1, '2024-10-01 06:44:16', 0, NULL, 0, NULL, 1),
(28579, 21977, '4', 'Bharathidasan University Trichy ', '', 'MBA', '2024', 80.00, '', 1, '2024-10-01 06:46:17', 0, NULL, 0, NULL, 1),
(28580, 21978, '4', 'St Xavier\'s catholic college of engineering ', '', 'MBA', '2023', 76.00, '', 1, '2024-10-01 06:46:43', 0, NULL, 0, NULL, 1),
(28581, 21977, '3', 'Bharathidasan University Trichy ', '', 'BBA', '2022', 82.00, '', 1, '2024-10-01 06:46:56', 0, NULL, 0, NULL, 1),
(28582, 21977, '2', 'State board ', '', '', '2019', 67.00, '', 1, '2024-10-01 06:47:28', 0, NULL, 0, NULL, 1),
(28583, 21978, '3', 'Neasamony memorial Christian college ', '', 'English Literature ', '2021', 79.00, '', 1, '2024-10-01 06:47:41', 0, NULL, 0, NULL, 1),
(28584, 21977, '1', '2017', '', '', '2017', 79.00, '', 1, '2024-10-01 06:47:43', 0, NULL, 0, NULL, 1),
(28585, 21976, '3', 'bharathidhasan university ', '', 'b com', '2022', 68.00, '', 1, '2024-10-01 06:50:51', 0, NULL, 0, NULL, 1),
(28586, 21976, '2', 'state board', '', '', '2019', 80.00, '', 1, '2024-10-01 06:51:36', 0, NULL, 0, NULL, 1),
(28587, 21976, '1', 'state boarf', '', '', '2017', 61.00, '', 1, '2024-10-01 06:51:52', 0, NULL, 0, NULL, 1),
(28588, 21980, '3', 'Thiruvallur university ', '', 'B.sc.Biotechnology ', '2024', 89.00, '', 1, '2024-10-01 06:54:30', 0, NULL, 0, NULL, 1),
(28589, 21979, '3', 'Sk university', '', 'B com', '2021', 85.00, '', 1, '2024-10-01 06:56:28', 0, NULL, 0, NULL, 1),
(28590, 21981, '4', 'Sv  university', '', 'B com ', '2023', 72.00, '', 1, '2024-10-01 07:02:03', 0, NULL, 0, NULL, 1),
(28591, 21982, '3', 'Jaya college of arts &science ', '', 'B.com general ', '2019', 78.00, '', 1, '2024-10-01 07:20:59', 1, '2024-10-01 07:21:45', 0, NULL, 0),
(28592, 21982, '3', 'Jaya College of arts and science ', '', 'B.Com General ', '2019', 80.00, '', 1, '2024-10-01 07:22:19', 0, NULL, 0, NULL, 1),
(28593, 21984, '1', 'TAMILNADU CENTRAL BOARD UNIVERSITY ', '', 'B.SC COMPUTER SCIENCE ', '2019', 81.20, '', 1, '2024-10-01 07:38:12', 0, NULL, 0, NULL, 1),
(28594, 21984, '2', 'TAMILNADU CENTRAL BOARD UNIVERSITY ', '', '', '2021', 83.70, '', 1, '2024-10-01 07:38:39', 0, NULL, 0, NULL, 1),
(28595, 21984, '3', 'BHARATHIYAR UNIVERSITY ', '', 'B.SC COMPUTER SCIENCE ', '2024', 80.10, '', 1, '2024-10-01 07:39:17', 0, NULL, 0, NULL, 1),
(28596, 21986, '5', 'Isbm', '', 'Financial management and development ', '2024', 71.00, '', 1, '2024-10-01 09:10:12', 0, NULL, 0, NULL, 1),
(28597, 21987, '4', 'Kongunadu arts and science college', '', 'M.Sc Mathematics', '2024', 75.00, '', 1, '2024-10-01 09:12:55', 0, NULL, 0, NULL, 1),
(28598, 21987, '3', 'Kongunadu arts and science college', '', 'B.Sc Mathematics', '2022', 85.00, '', 1, '2024-10-01 09:13:29', 0, NULL, 0, NULL, 1),
(28599, 21987, '1', 'St Joseph\'s girls hr sec school', '', '', '2019', 70.00, '', 1, '2024-10-01 09:13:57', 0, NULL, 0, NULL, 1),
(28600, 21987, '2', 'Kongunadu arts and science college', '', '', '2019', 71.00, '', 1, '2024-10-01 09:14:55', 1, '2024-10-01 09:15:15', 0, NULL, 1),
(28601, 21987, '5', 'Diplamo in Vedic mathematics ', '', 'Vedic mathematics', '2021', 95.00, '', 1, '2024-10-01 09:16:00', 0, NULL, 0, NULL, 1),
(28602, 21991, '4', 'Madurai kamaraj university ', '', 'Msc-computer science ', '2024', 85.00, '', 1, '2024-10-01 02:19:49', 0, NULL, 0, NULL, 1),
(28603, 21991, '3', 'Madurai kamaraj university ', '', 'Bsc- computer science ', '2022', 72.00, '', 1, '2024-10-01 02:20:23', 0, NULL, 0, NULL, 1),
(28604, 21989, '3', 'Madrad university', '', 'B. Com (cs) ', '2021', 70.00, '', 1, '2024-10-02 06:42:34', 0, NULL, 0, NULL, 1),
(28605, 21993, '3', 'pondicherry university', '', 'bca', '2023', 7.11, '', 1, '2024-10-03 12:38:20', 0, NULL, 0, NULL, 1),
(28606, 21994, '4', 'Pondicherry University ', '', 'Master of Commerce ', '2024', 75.56, '', 1, '2024-10-03 04:09:10', 0, NULL, 0, NULL, 1),
(28607, 21995, '4', 'Anna University ', '', 'MBA', '2024', 70.00, '', 1, '2024-10-03 04:49:25', 0, NULL, 0, NULL, 1),
(28608, 21998, '4', 'University ', '', 'MBA ', '2024', 85.00, '', 1, '2024-10-03 04:57:57', 0, NULL, 0, NULL, 1),
(28609, 21996, '4', 'Bharathidasan university ', '', 'MBA(hR)', '2024', 85.00, '', 1, '2024-10-03 05:02:02', 0, NULL, 0, NULL, 1),
(28610, 21909, '4', 'Bharathidasan University ', '', 'MBA', '2024', 77.00, '', 1, '2024-10-03 05:02:04', 1, '2024-10-03 05:02:55', 0, NULL, 0),
(28611, 21908, '4', 'Bharathidasan University ', '', 'MBA', '2024', 78.00, '', 1, '2024-10-03 05:02:09', 0, NULL, 0, NULL, 1),
(28612, 22000, '4', 'Bharathithasan university', '', 'MBA(finance) ', '2024', 73.00, '', 1, '2024-10-03 05:02:45', 0, NULL, 0, NULL, 1),
(28613, 21909, '4', 'Bharathidasan University ', '', 'MBA', '2024', 78.00, '', 1, '2024-10-03 05:02:47', 0, NULL, 0, NULL, 1),
(28614, 21997, '4', 'Bharthidhsan ', '', 'Msw', '2019', 73.00, '', 1, '2024-10-03 05:04:50', 0, NULL, 0, NULL, 1),
(28615, 22001, '4', 'Anna University ', '', 'MBA', '2024', 70.00, '', 1, '2024-10-03 05:17:12', 0, NULL, 0, NULL, 1),
(28616, 22002, '5', 'DOTE', '', 'Diploma in computer engineering ', '2018', 77.00, '', 1, '2024-10-03 05:17:59', 0, NULL, 0, NULL, 1),
(28617, 22001, '3', 'Manonmaniyam sundarnar university tirunelveli ', '', 'BA ( English literature)', '2022', 70.00, '', 1, '2024-10-03 05:20:17', 0, NULL, 0, NULL, 1),
(28618, 22001, '2', 'State board ', '', '', '2019', 86.00, '', 1, '2024-10-03 05:20:46', 0, NULL, 0, NULL, 1),
(28619, 22001, '1', 'State board ', '', '', '2017', 83.00, '', 1, '2024-10-03 05:21:08', 0, NULL, 0, NULL, 1),
(28620, 22003, '3', 'J.h.a agaresn college madhavaram', '', 'B.com (cs)', '2021', 70.00, '', 1, '2024-10-03 05:31:43', 0, NULL, 0, NULL, 1),
(28621, 21404, '3', 'Bharath University ', '', 'B.com', '2024', 50.00, '', 1, '2024-10-03 06:06:00', 0, NULL, 0, NULL, 1),
(28622, 22007, '3', 'Justice basheer Ahmed Sayeed college for women (siet)', '', 'BCA ', '2024', 73.00, '', 1, '2024-10-03 06:11:29', 0, NULL, 0, NULL, 1),
(28623, 22004, '3', 'Madras University ', '', 'B.com (cs)', '2020', 50.00, '', 1, '2024-10-03 06:12:50', 0, NULL, 0, NULL, 1),
(28624, 22008, '3', 'Jawaharlal Nehru technological University ', '', 'B tech', '2023', 71.56, '', 1, '2024-10-03 06:13:37', 0, NULL, 0, NULL, 1),
(28625, 22006, '3', 'Sk university ', '', 'Government arts college ', '2024', 70.00, '', 1, '2024-10-03 06:13:56', 0, NULL, 0, NULL, 1),
(28626, 22008, '2', 'Board of intermediate education ', '', '', '2019', 85.00, '', 1, '2024-10-03 06:15:25', 0, NULL, 0, NULL, 1),
(28627, 22006, '2', 'Board of intermediate education ', '', '', '2020', 5.85, '', 1, '2024-10-03 06:16:07', 0, NULL, 0, NULL, 1),
(28628, 22008, '1', 'Board of secondary education ', '', '', '2017', 82.00, '', 1, '2024-10-03 06:16:34', 0, NULL, 0, NULL, 1),
(28629, 22006, '1', 'Board of secondary education ', '', '', '2018', 9.30, '', 1, '2024-10-03 06:16:36', 0, NULL, 0, NULL, 1),
(28630, 22005, '3', 'Madras university', '', 'B.com', '2021', 78.20, '', 1, '2024-10-03 06:17:00', 0, NULL, 0, NULL, 1),
(28631, 20003, '3', 'Madras university ', '', 'BA ', '2020', 6.50, '', 1, '2024-10-03 07:02:20', 0, NULL, 0, NULL, 1),
(28632, 22009, '3', 'University of madras', '', 'BCA', '2020', 76.00, '', 1, '2024-10-03 07:35:35', 0, NULL, 0, NULL, 1),
(28633, 22010, '5', 'CIPET ', '', 'Diploma in plastic Mould technology ', '2019', 67.00, '', 1, '2024-10-03 08:48:24', 0, NULL, 0, NULL, 1),
(28634, 22010, '2', 'M.R matriculation higher secondary school ', '', '', '2016', 69.00, '', 1, '2024-10-03 08:49:04', 0, NULL, 0, NULL, 1),
(28635, 22012, '3', 'bharadhidasan', '', 'bsc', '2024', 73.00, '', 1, '2024-10-04 04:31:32', 0, NULL, 0, NULL, 1),
(28636, 22011, '3', 'siet', '', 'b.sc ', '2021', 78.00, '', 1, '2024-10-04 04:32:36', 0, NULL, 0, NULL, 1),
(28637, 22013, '1', 'STATE BOARD', '', '', '2016', 73.00, '', 1, '2024-10-04 04:49:20', 1, '2024-10-04 04:50:59', 0, NULL, 0),
(28638, 22013, '2', 'STATE BOARD', '', '', '2018', 63.00, '', 1, '2024-10-04 04:49:54', 0, NULL, 0, NULL, 1),
(28639, 22013, '1', 'STATE BOARD ', '', '', '2016', 73.00, '', 1, '2024-10-04 04:51:25', 0, NULL, 0, NULL, 1),
(28640, 22013, '5', 'DOTE', '', 'EEE ', '2021', 83.00, '', 1, '2024-10-04 04:51:50', 0, NULL, 0, NULL, 1),
(28641, 22015, '4', 'Dr MGR Education and research institute ', '', 'MBA human resources management ', '2025', 83.50, '', 1, '2024-10-04 05:14:43', 0, NULL, 0, NULL, 1),
(28642, 22014, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2018', 80.20, '', 1, '2024-10-04 05:37:28', 0, NULL, 0, NULL, 1),
(28643, 22017, '3', 'Bharath college of science and management ', '', 'BA English ', '2020', 64.00, '', 1, '2024-10-04 05:46:15', 0, NULL, 0, NULL, 1),
(28644, 22016, '3', 'PRIST University ', '', 'bCA', '2022', 7.90, '', 1, '2024-10-04 05:55:46', 0, NULL, 0, NULL, 1),
(28645, 22018, '3', 'Madras University ', '', 'B.com', '2023', 69.00, '', 1, '2024-10-04 06:02:41', 1, '2024-10-04 06:03:56', 0, NULL, 1),
(28646, 22019, '3', 'SRM ESWARI COLLEGE', '', 'eLECTRONIC AND INSTRUMENTATION', '2024', 0.00, '', 104, '2024-10-04 12:11:16', 0, NULL, 0, NULL, 1),
(28647, 22022, '3', 'Aaru padai Veedu institute of technology ', '', 'BE mechanical engineering ', '2022', 86.00, '', 1, '2024-10-04 06:46:05', 0, NULL, 0, NULL, 1),
(28648, 22021, '3', 'madras  University', '', 'b.com ism', '2024', 76.00, '', 1, '2024-10-04 06:52:59', 0, NULL, 0, NULL, 1),
(28649, 22023, '5', 'Government technical training center ', '', 'Mechanical engineering ', '2021', 85.00, '', 1, '2024-10-04 07:05:29', 0, NULL, 0, NULL, 1),
(28650, 22024, '3', 'Stella Maris ', '', 'B.com', '2018', 65.00, '', 1, '2024-10-04 07:34:02', 0, NULL, 0, NULL, 1),
(28651, 22025, '3', 'the new college', '', 'bcom accounting and finance', '2023', 65.70, '', 1, '2024-10-04 08:00:23', 0, NULL, 0, NULL, 1),
(28652, 22026, '2', 'Cbsc', '', '', '2020', 86.00, '', 1, '2024-10-04 08:03:25', 0, NULL, 0, NULL, 1),
(28653, 22027, '3', 'Board', '', 'BE- electronics and instrumentation engineering ', '2024', 7.86, '', 1, '2024-10-04 09:31:39', 0, NULL, 0, NULL, 1),
(28654, 22028, '3', 'University of Madras ', '', 'B.com (Bank Management)', '2023', 73.00, '', 1, '2024-10-04 10:34:39', 0, NULL, 0, NULL, 1),
(28655, 22030, '3', 'Autonomous ', '', 'Bcom bank management ', '2024', 60.00, '', 1, '2024-10-04 11:00:52', 0, NULL, 0, NULL, 1),
(28656, 22029, '3', 'Madras University ', '', 'Bcom corporate secretaryship', '2024', 59.00, '', 1, '2024-10-04 11:01:18', 0, NULL, 0, NULL, 1),
(28657, 22031, '3', 'Madras University ', '', 'B.com', '2020', 75.00, '', 1, '2024-10-04 11:08:20', 0, NULL, 0, NULL, 1),
(28658, 22020, '3', 'Sri Venkatesa Perumal College of engineering and technolog', '', 'ECE', '2024', 60.00, '', 104, '2024-10-04 04:55:09', 0, NULL, 0, NULL, 1),
(28659, 22032, '4', 'Manonmaniam sundaranar university ', '', 'MCA', '2023', 78.00, '', 1, '2024-10-05 04:20:09', 0, NULL, 0, NULL, 1),
(28660, 22035, '4', 'Bharathidasan University ', '', 'Msc cs', '2021', 94.00, '', 1, '2024-10-05 04:23:24', 0, NULL, 0, NULL, 1),
(28661, 22034, '3', 'Madurai Kamaraj University ', '', 'Bsc', '2019', 59.50, '', 1, '2024-10-05 04:24:08', 0, NULL, 0, NULL, 1),
(28662, 22037, '3', 'Kalasalingam University ', '', 'Bachelors of Technology  ', '2025', 74.50, '', 1, '2024-10-05 04:27:09', 0, NULL, 0, NULL, 1),
(28663, 22038, '3', 'Thanveerul Aslam Ahamed', '', 'BCA', '2023', 72.00, '', 1, '2024-10-05 04:27:19', 0, NULL, 0, NULL, 1),
(28664, 22037, '2', 'Tamil Nadu Start Board ', '', '', '2021', 81.40, '', 1, '2024-10-05 04:28:01', 0, NULL, 0, NULL, 1),
(28665, 22043, '4', 'A.M Jain college ', '', 'M.sc Mathematics ', '2022', 80.00, '', 1, '2024-10-05 04:28:11', 0, NULL, 0, NULL, 1),
(28666, 22043, '3', 'Sri Sankara Arts And science college ', '', 'Bsc Mathematics', '2020', 75.00, '', 1, '2024-10-05 04:28:56', 0, NULL, 0, NULL, 1),
(28667, 22041, '3', 'Panimalar Engineering College ', '', 'B.E - ECE', '2024', 84.60, '', 1, '2024-10-05 04:29:08', 0, NULL, 0, NULL, 1),
(28668, 22043, '2', 'State board ', '', '', '2017', 84.00, '', 1, '2024-10-05 04:29:19', 0, NULL, 0, NULL, 1),
(28669, 22043, '1', 'State board ', '', '', '2015', 88.00, '', 1, '2024-10-05 04:29:40', 0, NULL, 0, NULL, 1),
(28670, 22041, '2', 'Brindavan Matric Hr.sec school', '', '', '2020', 76.67, '', 1, '2024-10-05 04:29:58', 0, NULL, 0, NULL, 1),
(28671, 22036, '3', 'Mar Gregorius College of Arts and Science  (University of Madras)', '', 'BSc Computer science ', '2024', 84.00, '', 1, '2024-10-05 04:30:01', 0, NULL, 0, NULL, 1),
(28672, 22041, '1', 'Brindavan Matric HR.sec school', '', '', '2018', 94.60, '', 1, '2024-10-05 04:30:30', 0, NULL, 0, NULL, 1),
(28673, 22047, '3', 'University of Madras ', '', 'Bsc computer science ', '2024', 90.00, '', 1, '2024-10-05 04:30:42', 0, NULL, 0, NULL, 1),
(28674, 22046, '3', 'Madras University ', '', 'Bsc computer science ', '2024', 91.00, '', 1, '2024-10-05 04:31:07', 0, NULL, 0, NULL, 1),
(28675, 22042, '3', 'Anna University ', '', 'Bachelor of engineering ', '2023', 8.62, '', 1, '2024-10-05 04:34:00', 0, NULL, 0, NULL, 1),
(28676, 22045, '3', 'Anna University ', '', 'B.E(ECE)', '2022', 75.00, '', 1, '2024-10-05 04:34:20', 0, NULL, 0, NULL, 1),
(28677, 22039, '1', 'State board ', '', '', '2015', 63.00, '', 1, '2024-10-05 04:34:45', 0, NULL, 0, NULL, 1),
(28678, 22042, '1', 'Tamilnadu state board', '', '', '2016', 95.80, '', 1, '2024-10-05 04:35:03', 0, NULL, 0, NULL, 1),
(28679, 22040, '4', 'Manonmaniam University ', '', 'Information Technology ', '2024', 88.00, '', 1, '2024-10-05 04:35:08', 0, NULL, 0, NULL, 1),
(28680, 22048, '4', 'Bharathidasan University', '', 'MCA', '2024', 80.00, '', 1, '2024-10-05 04:35:14', 0, NULL, 0, NULL, 1),
(28681, 22044, '4', 'Bharathiyar University ', '', 'MSc cs', '2023', 85.00, '', 1, '2024-10-05 04:35:19', 0, NULL, 0, NULL, 1),
(28682, 22042, '2', 'Tamilnadu state board ', '', '', '2018', 73.30, '', 1, '2024-10-05 04:35:37', 0, NULL, 0, NULL, 1),
(28683, 22044, '3', 'Bharathiyar University ', '', 'BSc Cs ', '2021', 71.00, '', 1, '2024-10-05 04:35:41', 0, NULL, 0, NULL, 1),
(28684, 22048, '3', 'Bharathidasan University', '', 'Bsc Computer Science', '2022', 85.00, '', 1, '2024-10-05 04:35:49', 0, NULL, 0, NULL, 1),
(28685, 22049, '2', 'Tamilnadu board', '', '', '2020', 59.00, '', 1, '2024-10-05 04:38:43', 0, NULL, 0, NULL, 1),
(28686, 22049, '1', 'Tamilnadu board ', '', '', '2018', 70.80, '', 1, '2024-10-05 04:39:09', 0, NULL, 0, NULL, 1),
(28687, 22049, '3', 'Anna University ', '', 'B.Tech Information technology ', '2024', 79.50, '', 1, '2024-10-05 04:39:53', 0, NULL, 0, NULL, 1),
(28688, 22050, '3', 'SRM University ', '', 'BSC computer science ', '2024', 8.86, '', 1, '2024-10-05 04:40:32', 0, NULL, 0, NULL, 1),
(28689, 22050, '1', 'Board', '', '', '2021', 75.70, '', 1, '2024-10-05 04:40:50', 0, NULL, 0, NULL, 1),
(28690, 22052, '1', 'Tamil Nadu State Board ', '', '', '2019', 84.00, '', 1, '2024-10-05 04:44:37', 0, NULL, 0, NULL, 1),
(28691, 22052, '2', 'Tamil Nadu State Board ', '', '', '2021', 81.00, '', 1, '2024-10-05 04:45:03', 0, NULL, 0, NULL, 1),
(28692, 22052, '3', 'Thiruvalluvar University ', '', 'Bsc.Computer Science ', '2024', 75.00, '', 1, '2024-10-05 04:45:35', 0, NULL, 0, NULL, 1),
(28693, 22051, '1', 'Tamil Nadu state board', '', '', '2017', 89.00, '', 1, '2024-10-05 04:47:16', 0, NULL, 0, NULL, 1),
(28694, 22051, '2', 'Tamilnadu state board', '', '', '2019', 74.00, '', 1, '2024-10-05 04:47:41', 0, NULL, 0, NULL, 1),
(28695, 22051, '4', 'Vellore Institute of Technology', '', 'M. Tech integrated software engineering', '2024', 76.00, '', 1, '2024-10-05 04:48:29', 0, NULL, 0, NULL, 1),
(28696, 22053, '3', 'Gurunanak College ', '', 'BCA', '2022', 74.00, '', 1, '2024-10-05 04:49:40', 0, NULL, 0, NULL, 1),
(28697, 22033, '3', 'bannariyamman  institute of technologies', '', 'be computer science', '2023', 80.00, '', 1, '2024-10-05 04:52:40', 0, NULL, 0, NULL, 1),
(28698, 22054, '4', 'Davangere ', '', '', '2021', 80.00, '', 1, '2024-10-05 05:09:29', 0, NULL, 0, NULL, 1),
(28699, 22058, '1', 'St.Gabriel\'s  Higher secondary school ', '', '', '2017', 75.00, '', 1, '2024-10-05 05:16:12', 0, NULL, 0, NULL, 1),
(28700, 22058, '2', 'St.Gabriel\'s Higher secondary school ', '', '', '2019', 66.00, '', 1, '2024-10-05 05:17:16', 0, NULL, 0, NULL, 1),
(28701, 22057, '4', 'Alagappa University ', '', 'MBA ', '2023', 75.00, '', 1, '2024-10-05 05:17:34', 0, NULL, 0, NULL, 1),
(28702, 22055, '3', 'Sv university, Tirupati ', '', 'BCA, Bachelor of computer applications ', '2024', 80.00, '', 1, '2024-10-05 05:19:22', 0, NULL, 0, NULL, 1),
(28703, 22061, '4', 'Anna University ', '', 'MCA', '2024', 80.00, '', 1, '2024-10-05 05:26:48', 1, '2024-10-05 05:27:14', 0, NULL, 0),
(28704, 22059, '4', 'Bharathiar University ', '', 'MCA', '2023', 82.00, '', 1, '2024-10-05 05:27:18', 0, NULL, 0, NULL, 1),
(28705, 22061, '4', 'Anna University ', '', 'MCA', '2024', 80.00, '', 1, '2024-10-05 05:27:39', 0, NULL, 0, NULL, 1),
(28706, 22059, '3', 'Bharathiar University ', '', 'BSC computer science ', '2021', 71.00, '', 1, '2024-10-05 05:27:48', 0, NULL, 0, NULL, 1),
(28707, 22060, '3', 'The New College ', '', 'BCA', '2024', 75.00, '', 1, '2024-10-05 05:27:53', 0, NULL, 0, NULL, 1),
(28708, 22059, '2', 'State board ', '', '', '2018', 76.00, '', 1, '2024-10-05 05:29:42', 0, NULL, 0, NULL, 1),
(28709, 22059, '1', 'State board ', '', '', '2016', 87.00, '', 1, '2024-10-05 05:30:03', 0, NULL, 0, NULL, 1),
(28710, 22065, '3', 'University of madras', '', 'B.COM Accounting and finance', '2024', 87.00, '', 1, '2024-10-05 05:40:49', 0, NULL, 0, NULL, 1),
(28711, 22063, '3', 'R.M.K Engineering College ', '', 'Mechanical engineering ', '2023', 80.00, '', 1, '2024-10-05 05:43:53', 0, NULL, 0, NULL, 1),
(28712, 22066, '1', 'State Board', '', '', '2018', 80.00, '', 1, '2024-10-05 05:45:01', 0, NULL, 0, NULL, 1),
(28713, 22066, '2', 'State Board ', '', '', '2020', 60.00, '', 1, '2024-10-05 05:45:23', 0, NULL, 0, NULL, 1),
(28714, 22066, '3', 'Anna University ', '', 'BTech information technology ', '2024', 83.00, '', 1, '2024-10-05 05:46:05', 0, NULL, 0, NULL, 1),
(28715, 22062, '3', 'Pondicherry University ', '', 'B.Tech ', '2023', 6.96, '', 1, '2024-10-05 06:00:29', 0, NULL, 0, NULL, 1),
(28716, 22069, '3', 'Rmkcet ', '', 'B.E( EEE)', '2022', 84.00, '', 1, '2024-10-05 06:01:35', 0, NULL, 0, NULL, 1),
(28717, 22067, '3', 'Anna University', '', 'B.Tech', '2024', 84.30, '', 1, '2024-10-05 06:06:25', 0, NULL, 0, NULL, 1),
(28718, 22064, '3', 'UNIVERSITY', '', 'BE', '2024', 79.00, '', 1, '2024-10-05 06:16:06', 0, NULL, 0, NULL, 1),
(28719, 22064, '2', 'Tamilnadu board', '', '', '2020', 65.00, '', 1, '2024-10-05 06:16:33', 0, NULL, 0, NULL, 1),
(28720, 22064, '1', 'Tamilnadu board', '', '', '2018', 87.00, '', 1, '2024-10-05 06:16:51', 0, NULL, 0, NULL, 1),
(28721, 22068, '3', 'R. M. K engineering college', '', 'B. Tech', '2024', 76.00, '', 1, '2024-10-05 06:21:34', 0, NULL, 0, NULL, 1),
(28722, 22070, '3', 'University of Madras ', '', 'Bachelor of computer application ', '2024', 74.50, '', 1, '2024-10-05 06:48:20', 0, NULL, 0, NULL, 1),
(28723, 22071, '3', 'Anna University ', '', 'B.E', '2022', 76.00, '', 1, '2024-10-05 07:15:06', 0, NULL, 0, NULL, 1),
(28724, 22072, '4', 'Kannur university', '', 'MCA', '2023', 69.00, '', 1, '2024-10-05 09:02:40', 0, NULL, 0, NULL, 1),
(28725, 22073, '4', 'kannur university', '', 'mca', '2023', 83.00, '', 1, '2024-10-05 09:02:53', 0, NULL, 0, NULL, 1),
(28726, 22072, '3', 'Kannur university', '', 'B. Sc physics', '2021', 72.60, '', 1, '2024-10-05 09:03:11', 0, NULL, 0, NULL, 1),
(28727, 22073, '3', 'kannur university', '', 'bsc  computer science', '2021', 69.00, '', 1, '2024-10-05 09:03:55', 0, NULL, 0, NULL, 1),
(28728, 22072, '2', 'Kerala higher secondary', '', '', '2016', 85.30, '', 1, '2024-10-05 09:04:30', 1, '2024-10-05 09:06:26', 0, NULL, 0),
(28729, 22073, '2', 'kerala higher secondary ', '', '', '2018', 75.00, '', 1, '2024-10-05 09:04:32', 0, NULL, 0, NULL, 1),
(28730, 22073, '1', 'kerala state  board', '', '', '2016', 86.00, '', 1, '2024-10-05 09:05:21', 0, NULL, 0, NULL, 1),
(28731, 22072, '2', 'Kerala higher secondary', '', '', '2018', 85.30, '', 1, '2024-10-05 09:06:53', 0, NULL, 0, NULL, 1),
(28732, 22072, '1', 'Kerala state Board', '', '', '2016', 90.00, '', 1, '2024-10-05 09:07:35', 0, NULL, 0, NULL, 1),
(28733, 22075, '4', 'Mepco Schlenk Engineering College ', '', 'Master of Computer Application ', '2024', 7.90, '', 1, '2024-10-05 09:08:13', 0, NULL, 0, NULL, 1),
(28734, 22074, '3', 'Anna University ', '', 'BE', '2023', 82.00, '', 1, '2024-10-05 09:09:33', 0, NULL, 0, NULL, 1),
(28735, 22078, '3', 'University ', '', 'BE', '2023', 8.00, '', 1, '2024-10-05 09:09:53', 0, NULL, 0, NULL, 1),
(28736, 22077, '3', 'Anna University ', '', 'B.e', '2022', 7.80, '', 1, '2024-10-05 09:11:49', 0, NULL, 0, NULL, 1),
(28737, 22079, '3', 'Bharathidasan university', '', 'BCA', '2024', 73.00, '', 1, '2024-10-05 09:13:41', 0, NULL, 0, NULL, 1),
(28738, 22080, '3', 'Bharathidasan University ', '', 'BCA ', '2024', 80.00, '', 1, '2024-10-05 09:14:45', 0, NULL, 0, NULL, 1),
(28739, 22076, '1', 'State', '', '', '2018', 86.70, '', 1, '2024-10-05 09:24:28', 0, NULL, 0, NULL, 1),
(28740, 22076, '2', 'State ', '', '', '2020', 70.60, '', 1, '2024-10-05 09:24:42', 0, NULL, 0, NULL, 1),
(28741, 22085, '3', 'Anna University ', '', 'BE', '2023', 86.00, '', 1, '2024-10-05 09:24:52', 0, NULL, 0, NULL, 1),
(28742, 22076, '3', 'Anna University', '', 'B.E', '2024', 82.00, '', 1, '2024-10-05 09:25:06', 0, NULL, 0, NULL, 1),
(28743, 22083, '3', 'University of madras', '', 'Bsc', '2023', 81.00, '', 1, '2024-10-05 09:25:40', 0, NULL, 0, NULL, 1),
(28744, 22081, '3', 'University ', '', 'BCA', '2024', 82.00, '', 1, '2024-10-05 09:26:02', 0, NULL, 0, NULL, 1),
(28745, 22084, '3', 'Anna University ', '', 'B.E', '2023', 70.00, '', 1, '2024-10-05 09:26:21', 0, NULL, 0, NULL, 1),
(28746, 22086, '3', 'University of madras ', '', 'Bachelor of computer science ', '2024', 83.00, '', 1, '2024-10-05 09:28:40', 0, NULL, 0, NULL, 1),
(28747, 22082, '4', 'Jawaharlal Nehru technological University,kakinada', '', 'Mca', '2023', 72.00, '', 1, '2024-10-05 09:32:57', 0, NULL, 0, NULL, 1),
(28748, 22082, '3', 'Adhi kavi nannayya university ', '', 'Bsc(Mpcs)', '2021', 76.00, '', 1, '2024-10-05 09:33:50', 0, NULL, 0, NULL, 1),
(28749, 22085, '1', 'State Board ', '', '', '2016', 81.00, '', 1, '2024-10-05 09:39:09', 0, NULL, 0, NULL, 1),
(28750, 22085, '2', 'State Board ', '', '', '2019', 70.00, '', 1, '2024-10-05 09:39:28', 0, NULL, 0, NULL, 1),
(28751, 22087, '2', 'CBSE', '', '', '2018', 66.20, '', 1, '2024-10-05 09:49:16', 0, NULL, 0, NULL, 1),
(28752, 22087, '1', 'TNSE', '', '', '2020', 62.83, '', 1, '2024-10-05 09:49:52', 0, NULL, 0, NULL, 1),
(28753, 22087, '3', 'Sathyabama University ', '', 'BE', '2024', 78.60, '', 1, '2024-10-05 09:50:27', 0, NULL, 0, NULL, 1),
(28754, 22090, '3', 'Asan memorial college of arts and sciences ', '', 'B.com', '2024', 78.00, '', 1, '2024-10-05 09:56:18', 0, NULL, 0, NULL, 1),
(28755, 22088, '3', 'Anna university', '', 'B.E CSE', '2024', 7.97, '', 1, '2024-10-05 10:02:32', 0, NULL, 0, NULL, 1),
(28756, 22091, '1', 'State Board Of Tamilnadu', '', 'B Tech ', '2018', 88.00, '', 1, '2024-10-05 10:03:51', 0, NULL, 0, NULL, 1),
(28757, 22088, '1', 'State board of tamilnadu', '', '', '2018', 92.00, '', 1, '2024-10-05 10:03:54', 0, NULL, 0, NULL, 1),
(28758, 22088, '2', 'State board of Tamilnadu', '', '', '2020', 71.00, '', 1, '2024-10-05 10:04:16', 0, NULL, 0, NULL, 1),
(28759, 22091, '2', 'State Board Of Tamilnadu', '', '', '2020', 72.60, '', 1, '2024-10-05 10:04:33', 0, NULL, 0, NULL, 1),
(28760, 22092, '3', 'Anna university ', '', 'Be mechanical engineering ', '2019', 67.00, '', 1, '2024-10-05 10:05:27', 0, NULL, 0, NULL, 1),
(28761, 22091, '3', 'Anna University', '', 'B tech Information Technology', '2024', 79.30, '', 1, '2024-10-05 10:05:38', 0, NULL, 0, NULL, 1),
(28762, 22093, '4', 'Vels university ', '', '', '2023', 8.00, '', 1, '2024-10-05 10:29:05', 0, NULL, 0, NULL, 1),
(28763, 22093, '3', 'Ssb arts and science college ', '', 'Bsc(IT)', '2021', 7.49, '', 1, '2024-10-05 10:31:38', 0, NULL, 0, NULL, 1),
(28764, 22094, '3', 'Karnataka University Dharward ', '', 'Bcom', '2018', 70.00, '', 1, '2024-10-07 01:00:35', 0, NULL, 0, NULL, 1),
(28765, 22095, '3', 'anna unviersity', '', 'ece', '2024', 7.30, '', 1, '2024-10-07 04:20:04', 0, NULL, 0, NULL, 1),
(28766, 22096, '3', 'Dr M.G.R University ', '', 'BA Economics ', '2022', 7.80, '', 1, '2024-10-07 04:36:03', 0, NULL, 0, NULL, 1),
(28767, 22096, '4', 'Alagapa University ', '', 'MBA Industry Integrated ', '2025', 8.20, '', 1, '2024-10-07 04:36:51', 0, NULL, 0, NULL, 1),
(28768, 22097, '3', 'Madras University ', '', 'Bsc maths ', '2023', 73.00, '', 1, '2024-10-07 04:37:17', 0, NULL, 0, NULL, 1),
(28769, 22099, '4', 'loyola iiba ', '', 'pgdm media and enter management ', '2023', 90.00, '', 1, '2024-10-07 04:39:04', 0, NULL, 0, NULL, 1),
(28770, 22099, '3', 'stella maris college', '', 'bvoc food processing and quality control', '2022', 90.00, '', 1, '2024-10-07 04:39:49', 0, NULL, 0, NULL, 1),
(28771, 22101, '3', 'Anna University ', '', 'BE', '2023', 78.00, '', 1, '2024-10-07 04:39:52', 0, NULL, 0, NULL, 1),
(28772, 22100, '3', 'Anna University ', '', 'B Tech', '2024', 8.21, '', 1, '2024-10-07 04:40:39', 0, NULL, 0, NULL, 1),
(28773, 22100, '2', 'State board', '', '', '2020', 69.00, '', 1, '2024-10-07 04:42:13', 0, NULL, 0, NULL, 1),
(28774, 22101, '2', 'state board', '', '', '2019', 63.00, '', 1, '2024-10-07 04:42:25', 0, NULL, 0, NULL, 1),
(28775, 22100, '1', 'State board ', '', '', '2018', 59.00, '', 1, '2024-10-07 04:42:38', 0, NULL, 0, NULL, 1),
(28776, 22101, '1', 'State board', '', '', '2017', 88.00, '', 1, '2024-10-07 04:42:49', 0, NULL, 0, NULL, 1),
(28777, 22102, '3', 'PMIST ', '', 'B.Tech', '2024', 6.50, '', 1, '2024-10-07 04:44:11', 0, NULL, 0, NULL, 1),
(28778, 22103, '3', 'Dr.MGR educational and research institute ', '', 'B.tech CSE', '2024', 85.00, '', 1, '2024-10-07 04:48:55', 0, NULL, 0, NULL, 1),
(28779, 22098, '3', 'Madras university ', '', 'B.com ', '2024', 78.00, '', 1, '2024-10-07 04:56:55', 0, NULL, 0, NULL, 1),
(28780, 22106, '3', 'University', '', 'B com genaral', '2024', 72.00, '', 1, '2024-10-07 05:43:20', 0, NULL, 0, NULL, 1),
(28781, 22106, '2', 'Board', '', '', '2021', 69.00, '', 1, '2024-10-07 05:43:52', 0, NULL, 0, NULL, 1),
(28782, 22106, '1', 'Board', '', '', '2019', 55.00, '', 1, '2024-10-07 05:44:04', 0, NULL, 0, NULL, 1),
(28783, 22108, '3', 'Madras University ', '', 'B.com (accounting and finance)', '2024', 70.11, '', 1, '2024-10-07 05:44:39', 0, NULL, 0, NULL, 1),
(28784, 22107, '3', 'Stella Maris college ', '', 'B.com(Accounting and finance)', '2024', 56.00, '', 1, '2024-10-07 05:46:14', 0, NULL, 0, NULL, 1),
(28785, 22110, '3', 'Dr.M.G.R Educational and Research institution ', '', 'BCA', '2023', 8.72, '', 1, '2024-10-07 05:52:15', 0, NULL, 0, NULL, 1),
(28786, 22110, '1', 'State board ', '', '', '2018', 73.00, '', 1, '2024-10-07 05:53:43', 0, NULL, 0, NULL, 1),
(28787, 22109, '3', 'Madras University ', '', 'BCA ', '2023', 64.40, '', 1, '2024-10-07 05:53:57', 0, NULL, 0, NULL, 1),
(28788, 22110, '2', 'State board ', '', '', '2020', 63.00, '', 1, '2024-10-07 05:54:19', 0, NULL, 0, NULL, 1),
(28789, 22111, '5', 'Kumrma ITI mechanical fitter ', '', 'ITI mechanical fitter ', '2016', 85.00, '', 1, '2024-10-07 06:11:26', 0, NULL, 0, NULL, 1),
(28790, 22111, '1', 'St Paul\'s school ', '', '', '2012', 85.00, '', 1, '2024-10-07 06:12:18', 0, NULL, 0, NULL, 1),
(28791, 22112, '1', '10th pass ', '', '', '2015', 67.00, '', 1, '2024-10-07 06:27:30', 1, '2024-10-07 06:29:58', 0, NULL, 0),
(28792, 22112, '5', '10th pass ', '', 'Yes', '2021', 88.00, '', 1, '2024-10-07 06:29:29', 1, '2024-10-07 06:29:48', 0, NULL, 0),
(28793, 22114, '3', 'Madras University ', '', 'BA', '2024', 60.00, '', 1, '2024-10-07 06:34:29', 0, NULL, 0, NULL, 1),
(28794, 22113, '3', 'Madras University ', '', 'B.A history ', '2024', 60.00, '', 1, '2024-10-07 06:35:25', 0, NULL, 0, NULL, 1),
(28795, 22112, '1', ' Bentinck higher  school', '', '', '2015', 35.00, '', 1, '2024-10-07 06:36:13', 0, NULL, 0, NULL, 1),
(28796, 22117, '3', 'Banglore university', '', 'B com', '2018', 68.00, '', 1, '2024-10-07 06:52:32', 0, NULL, 0, NULL, 1),
(28797, 22118, '3', 'Mangalore university ', '', 'B COME ', '2015', 88.00, '', 1, '2024-10-07 06:54:45', 0, NULL, 0, NULL, 1),
(28798, 22119, '3', 'Bharathidasan', '', 'Bcom', '2019', 65.00, '', 1, '2024-10-07 07:06:29', 0, NULL, 0, NULL, 1),
(28799, 22121, '3', 'Periyarmaniammai', '', 'B.com', '2024', 6.96, '', 1, '2024-10-07 07:25:48', 0, NULL, 0, NULL, 1),
(28800, 22122, '3', 'Bharathidasan University ', '', 'BA English literature ', '2020', 66.00, '', 1, '2024-10-07 07:30:12', 0, NULL, 0, NULL, 1),
(28801, 22120, '3', 'Anna University ', '', 'BA ECONOMIC ', '2024', 50.00, '', 1, '2024-10-07 07:46:05', 0, NULL, 0, NULL, 1),
(28802, 22123, '3', 'University of Madras ', '', 'Ug', '2024', 62.00, '', 1, '2024-10-07 08:13:31', 0, NULL, 0, NULL, 1),
(28803, 22124, '3', 'Baradhidhasan university ', '', 'B .com(ca)', '2022', 82.00, '', 1, '2024-10-07 08:21:35', 0, NULL, 0, NULL, 1),
(28804, 22127, '3', 'Visvesvaraya technological University', '', 'Bachelor of engineering', '2024', 68.00, '', 1, '2024-10-07 09:20:55', 0, NULL, 0, NULL, 1),
(28805, 22127, '2', 'Karnataka state board', '', '', '2020', 60.00, '', 1, '2024-10-07 09:21:23', 0, NULL, 0, NULL, 1),
(28806, 22127, '1', 'Karnataka state board', '', '', '2018', 75.00, '', 1, '2024-10-07 09:21:58', 0, NULL, 0, NULL, 1),
(28807, 22126, '4', 'Kalasalingam academy of research and education ', '', 'MCA', '2024', 8.45, '', 1, '2024-10-07 09:24:25', 0, NULL, 0, NULL, 1),
(28808, 22126, '3', 'Kamarajar university ', '', 'BSc(cs)', '2022', 70.95, '', 1, '2024-10-07 09:25:34', 0, NULL, 0, NULL, 1),
(28809, 22126, '2', 'State board ', '', '', '2019', 79.00, '', 1, '2024-10-07 09:26:12', 0, NULL, 0, NULL, 1),
(28810, 22126, '1', 'State board ', '', '', '2017', 93.00, '', 1, '2024-10-07 09:26:47', 0, NULL, 0, NULL, 1),
(28811, 22128, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2023', 8.13, '', 1, '2024-10-07 09:29:02', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(28812, 22129, '4', 'Periyar maniyammai institute of science and technology ', '', 'MBA ', '2024', 8.25, '', 1, '2024-10-07 09:48:15', 0, NULL, 0, NULL, 1),
(28813, 22130, '5', 'SSI', '', 'Nil', '2019', 88.00, '', 1, '2024-10-07 09:55:00', 0, NULL, 0, NULL, 1),
(28814, 22130, '2', 'Sisi', '', 'Diploma in computer application ', '2019', 88.00, '', 1, '2024-10-07 10:02:15', 0, NULL, 0, NULL, 1),
(28815, 22125, '1', 'State Board ', '', '', '2017', 89.00, '', 1, '2024-10-07 10:05:53', 0, NULL, 0, NULL, 1),
(28816, 22125, '2', 'State Board ', '', '', '2019', 53.00, '', 1, '2024-10-07 10:06:14', 0, NULL, 0, NULL, 1),
(28817, 22125, '3', 'Kamaraj university ', '', 'B.sc', '2022', 74.00, '', 1, '2024-10-07 10:07:02', 0, NULL, 0, NULL, 1),
(28818, 22125, '4', 'Kalasalingam University ', '', 'MCA', '2024', 78.00, '', 1, '2024-10-07 10:07:45', 0, NULL, 0, NULL, 1),
(28819, 22131, '1', 'Board', '', 'Mba', '2016', 95.00, '', 1, '2024-10-07 11:34:26', 0, NULL, 0, NULL, 1),
(28820, 22131, '3', 'University ', '', 'Bsc.Perfusion technology ', '2022', 80.00, '', 1, '2024-10-07 11:35:25', 0, NULL, 0, NULL, 1),
(28821, 22131, '4', 'University ', '', 'Mba', '2026', 85.00, '', 1, '2024-10-07 11:36:26', 0, NULL, 0, NULL, 1),
(28822, 22132, '3', 'vels University ', '', 'b. com ', '2024', 5.96, '', 1, '2024-10-07 12:45:39', 0, NULL, 0, NULL, 1),
(28823, 22105, '3', 'PERIYAR MANIAMMAI INSTITUTE OF SCIENCE AND TECHNOLOGY ', '', 'BCA ', '2024', 80.00, '', 1, '2024-10-07 01:15:33', 0, NULL, 0, NULL, 1),
(28824, 22133, '3', 'Anna university', '', 'BE', '2023', 75.00, '', 1, '2024-10-08 04:03:49', 0, NULL, 0, NULL, 1),
(28825, 22135, '4', 'Dr Mgr university ', '', 'MBA ', '2023', 82.20, '', 1, '2024-10-08 04:46:33', 0, NULL, 0, NULL, 1),
(28826, 22135, '3', 'Anna university ', '', 'BE', '2020', 6.16, '', 1, '2024-10-08 04:47:07', 0, NULL, 0, NULL, 1),
(28827, 22135, '5', 'DOTE', '', 'DIPLOMA ', '2016', 76.00, '', 1, '2024-10-08 04:47:33', 0, NULL, 0, NULL, 1),
(28828, 22136, '4', 'SRIHER', '', 'Masters in Data Analytics ', '2024', 92.50, '', 1, '2024-10-08 04:53:54', 0, NULL, 0, NULL, 1),
(28829, 22136, '3', 'University of Madras ', '', 'B.sc', '2022', 75.00, '', 1, '2024-10-08 04:54:46', 0, NULL, 0, NULL, 1),
(28830, 22137, '4', 'madras university', '', 'b com', '2024', 55.00, '', 1, '2024-10-08 04:59:21', 0, NULL, 0, NULL, 1),
(28831, 22134, '3', 'Madras University', '', 'B. Com General', '2024', 80.00, '', 1, '2024-10-08 05:02:37', 1, '2024-10-08 05:03:29', 0, NULL, 1),
(28832, 22138, '3', 'madras University ', '', 'BBA ', '2021', 70.00, '', 1, '2024-10-08 05:12:59', 0, NULL, 0, NULL, 1),
(28833, 22143, '3', 'Chennai institute of technology (Anna university)', '', 'BE', '2024', 85.00, '', 1, '2024-10-08 05:46:56', 1, '2024-10-08 05:48:11', 0, NULL, 0),
(28834, 22143, '5', 'Anna university ', '', 'Dote', '2021', 93.00, '', 1, '2024-10-08 05:47:35', 1, '2024-10-08 05:48:08', 0, NULL, 0),
(28835, 22143, '1', 'Jaigopal Garodia Vivekananda Vidyalaya', '', '', '2018', 60.00, '', 1, '2024-10-08 05:48:58', 0, NULL, 0, NULL, 1),
(28836, 22143, '5', 'Anna university ', '', 'Dote', '2021', 93.00, '', 1, '2024-10-08 05:49:23', 0, NULL, 0, NULL, 1),
(28837, 22144, '3', 'Bharathidasan University, Tiruchirappalli, India', '', 'Bca', '2024', 76.50, '', 1, '2024-10-08 05:50:02', 0, NULL, 0, NULL, 1),
(28838, 22143, '3', 'Chennai institute of technology (Anna university)', '', 'BE', '2024', 85.00, '', 1, '2024-10-08 05:50:11', 0, NULL, 0, NULL, 1),
(28839, 22142, '3', 'Bharathithasan university ', '', 'BCA', '2024', 76.50, '', 1, '2024-10-08 05:51:27', 0, NULL, 0, NULL, 1),
(28840, 22140, '3', 'Bharathidasan university ', '', 'B.sc', '2024', 76.00, '', 1, '2024-10-08 05:54:40', 0, NULL, 0, NULL, 1),
(28841, 22141, '1', 'Stateboard', '', '', '2019', 78.00, '', 1, '2024-10-08 05:59:20', 0, NULL, 0, NULL, 1),
(28842, 22141, '2', 'Stateboard', '', '', '2021', 83.00, '', 1, '2024-10-08 05:59:55', 0, NULL, 0, NULL, 1),
(28843, 22141, '3', 'University of Madras', '', 'B.sc', '2024', 83.00, '', 1, '2024-10-08 06:00:43', 0, NULL, 0, NULL, 1),
(28844, 22145, '3', 'Bharathiyar university ', '', 'B.com B A', '2023', 62.00, '', 1, '2024-10-08 06:06:22', 0, NULL, 0, NULL, 1),
(28845, 22146, '3', 'Anna University ', '', 'B.E EEE', '2024', 70.00, '', 1, '2024-10-08 06:17:25', 0, NULL, 0, NULL, 1),
(28846, 22139, '3', 'Anna unversity', '', 'B.E', '2017', 65.00, '', 1, '2024-10-08 06:27:40', 0, NULL, 0, NULL, 1),
(28847, 22148, '5', 'CHENNAI VAZH NADARGAL SANGAM', '', 'Diploma computer engineering ', '2021', 81.00, '', 1, '2024-10-08 06:48:00', 0, NULL, 0, NULL, 1),
(28848, 22149, '3', 'State Board ', '', 'B.sc Computer Science ', '2021', 70.00, '', 1, '2024-10-08 06:48:04', 0, NULL, 0, NULL, 1),
(28849, 22147, '3', 'Anna University ', '', 'BE', '2024', 71.00, '', 1, '2024-10-08 06:48:40', 0, NULL, 0, NULL, 1),
(28850, 22150, '5', 'Vels University ', '', 'Vis.com', '2023', 75.00, '', 1, '2024-10-08 06:51:51', 0, NULL, 0, NULL, 1),
(28851, 22151, '4', 'Madras University ', '', 'MBA finance', '2024', 79.00, '', 1, '2024-10-08 07:11:21', 0, NULL, 0, NULL, 1),
(28852, 22152, '3', 'dwaka doss gowardhan doss vaishnav college', '', 'bcom corporate secreataryship', '2023', 6.01, '', 1, '2024-10-08 07:21:11', 0, NULL, 0, NULL, 1),
(28853, 22154, '3', 'PRIST UNIVERSITY THANJAVUR ', '', 'B.Tech CSE', '2022', 86.00, '', 1, '2024-10-08 07:35:51', 0, NULL, 0, NULL, 1),
(28854, 22154, '2', 'Tamilnadu Bord ', '', '', '2018', 67.00, '', 1, '2024-10-08 07:36:41', 0, NULL, 0, NULL, 1),
(28855, 22154, '1', 'Tamilnadu Bord ', '', '', '2016', 90.00, '', 1, '2024-10-08 07:36:56', 0, NULL, 0, NULL, 1),
(28856, 22153, '3', 'Ethiraj College for women  (University of Madras)', '', 'B.A English literature ', '2024', 60.00, '', 1, '2024-10-08 07:39:47', 1, '2024-10-08 07:42:57', 0, NULL, 1),
(28857, 22159, '4', 'Jntu ', '', 'Spw degree and pg college ', '2017', 73.00, '', 1, '2024-10-08 09:23:29', 0, NULL, 0, NULL, 1),
(28858, 22158, '3', 'Vikrama simhapuri university ', '', 'Bsc', '2022', 80.00, '', 1, '2024-10-08 09:26:54', 0, NULL, 0, NULL, 1),
(28859, 22160, '4', 'Tumkur university ', '', 'Mcom', '2022', 71.00, '', 1, '2024-10-08 10:25:36', 0, NULL, 0, NULL, 1),
(28860, 22160, '4', 'Tumkur university ', '', 'Mcom', '2022', 71.00, '', 1, '2024-10-08 10:26:17', 1, '2024-10-08 10:26:27', 0, NULL, 0),
(28861, 22161, '4', 'JAWAHARLAL NEHURU TECHNOLOGICAL UNIVERSITY, ANANTAPUR', '', 'MBA', '2024', 90.00, '', 1, '2024-10-08 01:21:24', 0, NULL, 0, NULL, 1),
(28862, 22161, '3', 'Sri venkateswara university ', '', 'Bcom', '2022', 75.00, '', 1, '2024-10-08 01:33:00', 0, NULL, 0, NULL, 1),
(28863, 22161, '2', 'Board of intermediate education Andhrapradesh', '', '', '2019', 95.00, '', 1, '2024-10-08 01:33:48', 0, NULL, 0, NULL, 1),
(28864, 22161, '1', 'Board of secondary education Andhrapradesh', '', '', '2017', 90.00, '', 1, '2024-10-08 01:34:38', 0, NULL, 0, NULL, 1),
(28865, 22163, '3', 'University ', '', 'B.Com ISM', '2021', 65.00, '', 1, '2024-10-09 05:04:11', 0, NULL, 0, NULL, 1),
(28866, 22165, '3', 'bharathidasan university', '', 'B. Com', '2023', 75.00, '', 1, '2024-10-09 05:12:56', 0, NULL, 0, NULL, 1),
(28867, 22167, '3', 'Sree sastha college of engineering', '', 'Mechanical', '2018', 68.00, '', 1, '2024-10-09 05:20:20', 0, NULL, 0, NULL, 1),
(28868, 22164, '3', 'Don bosco arts and science college kilpauk chennai', '', 'B com', '2022', 74.00, '', 1, '2024-10-09 05:20:35', 0, NULL, 0, NULL, 1),
(28869, 22166, '1', 'State board ', '', '', '2018', 63.00, '', 1, '2024-10-09 05:23:31', 0, NULL, 0, NULL, 1),
(28870, 22166, '3', 'Anna University ', '', 'B.E(ECE)', '2024', 7.80, '', 1, '2024-10-09 05:27:55', 0, NULL, 0, NULL, 1),
(28871, 22166, '2', 'State board ', '', '', '2020', 56.00, '', 1, '2024-10-09 05:28:45', 0, NULL, 0, NULL, 1),
(28872, 22168, '3', 'Manomaniyam sundarnar university Tirunelveli', '', 'Bsc(information Technology)', '2023', 75.00, '', 1, '2024-10-09 05:37:55', 0, NULL, 0, NULL, 1),
(28873, 22169, '3', 'Anna University ', '', 'B.E COMPUTER SCIENCE AND SCIENCE ', '2023', 65.00, '', 1, '2024-10-09 05:57:35', 0, NULL, 0, NULL, 1),
(28874, 22171, '4', 'University', '', 'Msc cs', '2024', 7.40, '', 1, '2024-10-09 06:00:04', 0, NULL, 0, NULL, 1),
(28875, 22170, '4', 'University of Madras ', '', 'Msc cs', '2024', 7.01, '', 1, '2024-10-09 06:00:04', 0, NULL, 0, NULL, 1),
(28876, 22172, '3', 'University of Madras ', '', 'B.com', '2024', 74.00, '', 1, '2024-10-09 06:19:20', 0, NULL, 0, NULL, 1),
(28877, 22173, '3', 'Sea college ', '', 'BCA', '2024', 65.00, '', 1, '2024-10-09 06:30:28', 0, NULL, 0, NULL, 1),
(28878, 22174, '3', 'Anna University', '', 'Mechanical', '2017', 66.80, '', 1, '2024-10-09 06:43:29', 0, NULL, 0, NULL, 1),
(28879, 22174, '2', 'State Board', '', '', '2013', 64.16, '', 1, '2024-10-09 06:44:09', 0, NULL, 0, NULL, 1),
(28880, 22174, '1', 'State Board', '', '', '2011', 93.00, '', 1, '2024-10-09 06:44:28', 0, NULL, 0, NULL, 1),
(28881, 22175, '3', 'Madras University ', '', 'BBA', '2018', 65.00, '', 1, '2024-10-09 06:53:47', 0, NULL, 0, NULL, 1),
(28882, 22176, '3', 'Shri Krishnaswamy college for women ', '', 'B.com', '2022', 80.00, '', 1, '2024-10-09 07:18:42', 1, '2024-10-09 07:19:24', 0, NULL, 0),
(28883, 22176, '1', 'WPA soundarapandian school ', '', '', '2016', 60.00, '', 1, '2024-10-09 07:21:44', 0, NULL, 0, NULL, 1),
(28884, 22176, '2', 'WPA soundarapandian school ', '', '', '2018', 75.00, '', 1, '2024-10-09 07:22:40', 0, NULL, 0, NULL, 1),
(28885, 22176, '3', 'Shri Krishnaswamy college for women ', '', 'B.COM', '2021', 80.00, '', 1, '2024-10-09 07:23:34', 0, NULL, 0, NULL, 1),
(28886, 22179, '3', 'Bharathidasan ', '', 'Bcom', '2024', 70.00, '', 1, '2024-10-09 07:24:10', 0, NULL, 0, NULL, 1),
(28887, 22178, '3', 'Bharathidasan university ', '', 'B. Com', '2024', 61.00, '', 1, '2024-10-09 07:25:48', 0, NULL, 0, NULL, 1),
(28888, 22177, '3', 'Bharathidasan ', '', 'BBA', '2024', 85.00, '', 1, '2024-10-09 07:26:22', 0, NULL, 0, NULL, 1),
(28889, 22180, '3', 'Madras University ', '', 'B.com', '2023', 71.00, '', 1, '2024-10-09 07:44:36', 0, NULL, 0, NULL, 1),
(28890, 22182, '3', 'Loyola college', '', 'B.A Economics', '2021', 64.70, '', 1, '2024-10-09 09:02:03', 0, NULL, 0, NULL, 1),
(28891, 22183, '4', 'Pondicherry University ', '', 'Mba', '2020', 72.00, '', 1, '2024-10-09 09:09:00', 0, NULL, 0, NULL, 1),
(28892, 22184, '4', 'Madras University', '', 'M.Sc', '2018', 85.00, '', 1, '2024-10-09 09:13:46', 0, NULL, 0, NULL, 1),
(28893, 22181, '4', 'Madras University ', '', 'M.sc zoology ', '2023', 69.00, '', 1, '2024-10-09 09:54:20', 0, NULL, 0, NULL, 1),
(28894, 22181, '4', 'Jerusalem University ', '', 'Ph.D', '2024', 79.00, '', 1, '2024-10-09 09:55:49', 0, NULL, 0, NULL, 1),
(28895, 22181, '4', 'Madras University ', '', 'Pgdmlt ', '2024', 75.00, '', 1, '2024-10-09 09:56:24', 0, NULL, 0, NULL, 1),
(28896, 22181, '4', 'Madras University ', '', 'PGDCA ', '2025', 70.00, '', 1, '2024-10-09 09:58:14', 0, NULL, 0, NULL, 1),
(28897, 22181, '3', 'Madras University ', '', 'B.sc', '2021', 58.00, '', 1, '2024-10-09 09:59:02', 0, NULL, 0, NULL, 1),
(28898, 22185, '2', 'state board', '', '', '2021', 83.57, '', 1, '2024-10-09 10:55:28', 0, NULL, 0, NULL, 1),
(28899, 22185, '1', 'state board', '', '', '2019', 73.00, '', 1, '2024-10-09 10:55:56', 0, NULL, 0, NULL, 1),
(28900, 22185, '3', 'university of madras', '', 'bba', '2024', 68.00, '', 1, '2024-10-09 10:56:52', 0, NULL, 0, NULL, 1),
(28901, 22188, '3', 'A.M Jain college ', '', 'B.com', '2023', 70.00, '', 1, '2024-10-09 12:54:20', 0, NULL, 0, NULL, 1),
(28902, 22191, '4', 'BHARATHIDASAN UNIVERSITY ', '', 'MBA HR', '2023', 89.00, '', 1, '2024-10-10 04:34:25', 0, NULL, 0, NULL, 1),
(28903, 22193, '3', 'PMIST', '', 'B tech ', '2023', 7.00, '', 1, '2024-10-10 04:50:10', 0, NULL, 0, NULL, 1),
(28904, 22192, '4', 'Thiruvalluvar University ', '', 'M.Com Computer Application ', '2023', 70.00, '', 1, '2024-10-10 04:59:51', 0, NULL, 0, NULL, 1),
(28905, 22192, '3', 'Thiruvalluvar University ', '', 'B.Com Computer Application ', '2021', 65.00, '', 1, '2024-10-10 05:00:40', 0, NULL, 0, NULL, 1),
(28906, 22192, '2', 'National HSE School ', '', '', '2018', 65.00, '', 1, '2024-10-10 05:01:21', 0, NULL, 0, NULL, 1),
(28907, 22192, '1', 'GHSS Thippasamudram ', '', '', '2016', 65.00, '', 1, '2024-10-10 05:02:06', 0, NULL, 0, NULL, 1),
(28908, 22194, '3', 'Deemed', '', 'B.tech', '2023', 72.00, '', 1, '2024-10-10 05:08:31', 0, NULL, 0, NULL, 1),
(28909, 22194, '2', 'State board', '', '', '2019', 56.00, '', 1, '2024-10-10 05:09:22', 0, NULL, 0, NULL, 1),
(28910, 22194, '1', 'State board', '', '', '2017', 73.00, '', 1, '2024-10-10 05:09:47', 0, NULL, 0, NULL, 1),
(28911, 22195, '3', 'Bharathidasan', '', 'Bsc', '2018', 76.00, '', 1, '2024-10-10 05:22:29', 0, NULL, 0, NULL, 1),
(28912, 22201, '3', 'Madras Unversity', '', 'B. Com', '2024', 66.00, '', 1, '2024-10-10 05:48:18', 0, NULL, 0, NULL, 1),
(28913, 22196, '3', 'Madras University ', '', 'B.Com', '2024', 65.00, '', 1, '2024-10-10 05:50:06', 0, NULL, 0, NULL, 1),
(28914, 22202, '3', 'Kamara college ', '', 'Bsc computer science ', '2022', 96.00, '', 1, '2024-10-10 05:52:41', 0, NULL, 0, NULL, 1),
(28915, 22203, '4', 'Dr.mgr university ', '', 'MBA', '2024', 75.00, '', 1, '2024-10-10 05:52:44', 0, NULL, 0, NULL, 1),
(28916, 22198, '4', 'New college ', '', 'M.a history', '2020', 70.00, '', 1, '2024-10-10 05:53:16', 0, NULL, 0, NULL, 1),
(28917, 22204, '3', 'Loyola college ', '', 'B.A history ', '2024', 6.65, '', 1, '2024-10-10 05:53:59', 0, NULL, 0, NULL, 1),
(28918, 22200, '4', 'Thiruvalluvar University ', '', 'MCA', '2024', 85.00, '', 1, '2024-10-10 05:55:54', 0, NULL, 0, NULL, 1),
(28919, 22199, '4', 'Thiruvalluvar ', '', 'MCA', '2024', 89.00, '', 1, '2024-10-10 06:05:28', 0, NULL, 0, NULL, 1),
(28920, 22205, '3', 'Madras University ', '', 'B com', '2024', 75.00, '', 1, '2024-10-10 06:12:56', 0, NULL, 0, NULL, 1),
(28921, 22205, '2', 'State board ', '', '', '2021', 80.00, '', 1, '2024-10-10 06:13:42', 0, NULL, 0, NULL, 1),
(28922, 22205, '1', 'State board ', '', '', '2019', 58.00, '', 1, '2024-10-10 06:14:10', 0, NULL, 0, NULL, 1),
(28923, 22197, '3', 'College ', '', 'B.Q. history and tourism ', '2024', 59.00, '', 1, '2024-10-10 06:16:08', 0, NULL, 0, NULL, 1),
(28924, 22206, '3', 'Anna university ', '', 'B.E mechanical ', '2016', 7.40, '', 1, '2024-10-10 06:16:41', 0, NULL, 0, NULL, 1),
(28925, 22206, '2', 'Govt HR sec school', '', '', '2012', 69.00, '', 1, '2024-10-10 06:17:26', 0, NULL, 0, NULL, 1),
(28926, 22207, '3', 'JNTUA', '', 'B.Tech', '2020', 75.01, '', 1, '2024-10-10 06:17:44', 0, NULL, 0, NULL, 1),
(28927, 22206, '1', 'MHH school', '', '', '2010', 86.00, '', 1, '2024-10-10 06:17:55', 0, NULL, 0, NULL, 1),
(28928, 22207, '2', 'State Board ', '', '', '2016', 95.10, '', 1, '2024-10-10 06:18:37', 0, NULL, 0, NULL, 1),
(28929, 22208, '3', 'Madras University ', '', 'Bachelor of Commerce ', '2023', 74.00, '', 1, '2024-10-10 06:24:28', 0, NULL, 0, NULL, 1),
(28930, 22210, '3', 'Anna University ', '', 'BE', '2022', 81.00, '', 1, '2024-10-10 06:48:17', 0, NULL, 0, NULL, 1),
(28931, 22211, '2', 'State board ', '', 'Bachelor of Computer Application', '2021', 71.67, '', 1, '2024-10-10 06:52:14', 1, '2024-10-10 06:52:57', 0, NULL, 1),
(28932, 22211, '1', 'State board', '', '', '2019', 54.80, '', 1, '2024-10-10 06:52:41', 0, NULL, 0, NULL, 1),
(28933, 22213, '3', 'Thiruvalluvar University ', '', 'B.CS.Computer Science ', '2024', 73.00, '', 1, '2024-10-10 06:55:48', 0, NULL, 0, NULL, 1),
(28934, 22212, '3', 'MS university ', '', 'B.Com CA', '2019', 61.00, '', 1, '2024-10-10 06:57:53', 0, NULL, 0, NULL, 1),
(28935, 22216, '3', 'Thiruvalluvar university ', '', 'B.sc.computer science ', '2024', 69.00, '', 1, '2024-10-10 07:01:14', 0, NULL, 0, NULL, 1),
(28936, 22217, '1', 'amalorpavam ', '', '', '2016', 92.60, '', 1, '2024-10-10 07:01:48', 0, NULL, 0, NULL, 1),
(28937, 22217, '2', 'amalorpavam', '', '', '2018', 82.50, '', 1, '2024-10-10 07:02:15', 0, NULL, 0, NULL, 1),
(28938, 22215, '3', 'Dr mgr janaki college of arts and science for womens', '', 'B.com accounting and finance ', '2022', 89.00, '', 1, '2024-10-10 07:02:29', 0, NULL, 0, NULL, 1),
(28939, 22217, '3', 'pondicherry university', '', 'b.tech', '2022', 67.50, '', 1, '2024-10-10 07:02:45', 0, NULL, 0, NULL, 1),
(28940, 22214, '3', 'The New college', '', 'Bsc', '2022', 74.90, '', 1, '2024-10-10 07:05:00', 0, NULL, 0, NULL, 1),
(28941, 22189, '5', 'State board of technical education ', '', 'Computer engineering ', '2022', 76.00, '', 1, '2024-10-10 07:31:01', 0, NULL, 0, NULL, 1),
(28942, 22218, '1', 'Tamil Nadu State board ', '', '', '2017', 86.00, '', 1, '2024-10-10 09:35:57', 0, NULL, 0, NULL, 1),
(28943, 22218, '2', 'Tamilnadu state board ', '', '', '2019', 68.00, '', 1, '2024-10-10 09:36:23', 0, NULL, 0, NULL, 1),
(28944, 22218, '3', 'Thiruvalluvar university ', '', 'B.SC.Computer Science ', '2022', 64.00, '', 1, '2024-10-10 09:36:55', 0, NULL, 0, NULL, 1),
(28945, 22218, '5', 'Madurai kamarajar university ', '', 'Journalism and mass communication ', '2023', 50.00, '', 1, '2024-10-10 09:37:46', 0, NULL, 0, NULL, 1),
(28946, 22220, '5', 'Anna university ', '', 'Diploma in computer engineering ', '2023', 84.00, '', 1, '2024-10-10 10:59:36', 0, NULL, 0, NULL, 1),
(28947, 22221, '1', 'Apollo arts and scince college ponnamallee', '', '', '2021', 60.00, '', 1, '2024-10-10 01:16:25', 0, NULL, 0, NULL, 1),
(28948, 22223, '3', 'Madras university ', '', 'BCA ', '2021', 89.00, '', 1, '2024-10-12 04:45:35', 0, NULL, 0, NULL, 1),
(28949, 22223, '2', 'State board', '', '', '2017', 51.00, '', 1, '2024-10-12 04:46:47', 0, NULL, 0, NULL, 1),
(28950, 22223, '1', 'State board ', '', '', '2019', 56.00, '', 1, '2024-10-12 04:47:38', 0, NULL, 0, NULL, 1),
(28951, 22224, '3', 'University of Madras', '', 'B.COM(CA)', '2024', 80.00, '', 1, '2024-10-12 04:55:41', 0, NULL, 0, NULL, 1),
(28952, 22225, '4', 'Bharathi Dhasan University Trichy ', '', 'MBA', '2022', 70.00, '', 1, '2024-10-12 05:22:24', 0, NULL, 0, NULL, 1),
(28953, 22226, '3', 'Stateboard', '', 'Bsc cs', '2023', 77.00, '', 1, '2024-10-12 06:03:27', 0, NULL, 0, NULL, 1),
(28954, 22228, '3', 'Bharadhidhasan University ', '', 'Bsc', '2021', 79.00, '', 1, '2024-10-12 06:53:13', 0, NULL, 0, NULL, 1),
(28955, 22232, '3', 'Madras University ', '', 'B.com (general)', '2024', 65.75, '', 1, '2024-10-12 02:55:42', 0, NULL, 0, NULL, 1),
(28956, 22235, '3', 'Anna University ', '', 'BE ECE', '2024', 75.00, '', 1, '2024-10-14 04:26:40', 0, NULL, 0, NULL, 1),
(28957, 22236, '3', 'The New College', '', 'B.Sc Computer Science', '2024', 61.00, '', 1, '2024-10-14 04:49:38', 0, NULL, 0, NULL, 1),
(28958, 22237, '4', 'Pondicherry university', '', 'MBA', '2024', 80.00, '', 1, '2024-10-14 05:09:33', 0, NULL, 0, NULL, 1),
(28959, 22231, '3', 'Bharathidasan ', '', 'B.com', '2024', 69.00, '', 1, '2024-10-14 05:13:30', 0, NULL, 0, NULL, 1),
(28960, 22239, '3', 'bharathiyar university', '', 'bca', '2024', 60.00, '', 1, '2024-10-14 05:29:14', 0, NULL, 0, NULL, 1),
(28961, 22240, '1', 'Tamilnadu State Board', '', '', '2018', 62.00, '', 1, '2024-10-14 05:29:42', 0, NULL, 0, NULL, 1),
(28962, 22240, '5', 'Department of technical education ', '', 'Diploma ', '2021', 68.00, '', 1, '2024-10-14 05:31:22', 0, NULL, 0, NULL, 1),
(28963, 22239, '2', 'state board', '', 'Computer Engineer', '2019', 62.00, '', 1, '2024-10-14 05:31:48', 0, NULL, 0, NULL, 1),
(28964, 22222, '3', 'University of Madras ', '', 'B.com cs', '2020', 70.00, '', 1, '2024-10-14 05:31:54', 0, NULL, 0, NULL, 1),
(28965, 22240, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2024', 70.00, '', 1, '2024-10-14 05:32:06', 0, NULL, 0, NULL, 1),
(28966, 22239, '5', 'govt industrial training insti ', '', 'Computer operating programming assistant ', '2020', 80.00, '', 1, '2024-10-14 05:33:02', 0, NULL, 0, NULL, 1),
(28967, 22241, '1', 'Anna University ', '', 'No', '2018', 73.00, '', 1, '2024-10-14 05:36:04', 0, NULL, 0, NULL, 1),
(28968, 22245, '3', 'Bharadhidasan', '', 'Bcom', '2024', 70.00, '', 1, '2024-10-14 05:39:18', 0, NULL, 0, NULL, 1),
(28969, 22243, '3', 'Prist university ', '', 'BCA', '2024', 80.00, '', 1, '2024-10-14 05:43:46', 0, NULL, 0, NULL, 1),
(28970, 22244, '1', 'Central board', '', '', '2005', 42.50, '', 1, '2024-10-14 05:44:18', 0, NULL, 0, NULL, 1),
(28971, 22244, '5', 'State Board', '', 'MOP', '2007', 65.00, '', 1, '2024-10-14 05:45:11', 0, NULL, 0, NULL, 1),
(28972, 22244, '3', 'Madras university', '', 'B.CS', '2009', 60.00, '', 1, '2024-10-14 05:47:45', 0, NULL, 0, NULL, 1),
(28973, 22251, '3', 'Hindusthan College of engineering and technology ', '', 'BE CSE', '2022', 80.00, '', 1, '2024-10-14 05:48:05', 0, NULL, 0, NULL, 1),
(28974, 22244, '4', 'Madras university', '', 'MBA', '2015', 60.00, '', 1, '2024-10-14 05:48:36', 0, NULL, 0, NULL, 1),
(28975, 22249, '3', 'Anna university ', '', 'B.tech', '2024', 70.00, '', 1, '2024-10-14 05:51:11', 0, NULL, 0, NULL, 1),
(28976, 22248, '3', 'Crescent university', '', 'B. Com ( general) ', '2024', 7.49, '', 1, '2024-10-14 05:52:49', 0, NULL, 0, NULL, 1),
(28977, 22242, '3', 'appollo art,s and science college ', '', 'B.com ( a/F)', '2024', 50.00, '', 1, '2024-10-14 05:54:59', 0, NULL, 0, NULL, 1),
(28978, 22252, '3', 'periyar maniammai institute science and technology in vallam', '', 'b.com', '2024', 6.36, '', 1, '2024-10-14 05:55:06', 0, NULL, 0, NULL, 1),
(28979, 22246, '3', 'madras university', '', 'bcom general', '2024', 76.00, '', 1, '2024-10-14 05:56:25', 0, NULL, 0, NULL, 1),
(28980, 22247, '3', 'Madras University ', '', 'B.com ( Accounting and finance)', '2024', 75.00, '', 1, '2024-10-14 05:56:30', 0, NULL, 0, NULL, 1),
(28981, 22242, '1', 'st ,Mary\'s boys hr sec school ', '', '', '2019', 60.00, '', 1, '2024-10-14 05:56:39', 0, NULL, 0, NULL, 1),
(28982, 22242, '2', 'cd nayagam thiyagarajan boys hr sec school ', '', '', '2021', 80.00, '', 1, '2024-10-14 05:58:04', 0, NULL, 0, NULL, 1),
(28983, 22250, '3', 'Madras University ', '', 'B.com general ', '2024', 75.00, '', 1, '2024-10-14 06:10:46', 0, NULL, 0, NULL, 1),
(28984, 22256, '3', 'Thirichirapalli', '', 'Bsc ', '2023', 74.00, '', 1, '2024-10-14 06:12:09', 0, NULL, 0, NULL, 1),
(28985, 22257, '3', 'Bharadhidasan University ', '', 'B.Sc., Computer Science ', '2022', 85.00, '', 1, '2024-10-14 06:22:15', 0, NULL, 0, NULL, 1),
(28986, 22257, '4', 'Bharadhidasan University ', '', 'M.Sc., Computer Science ', '2024', 82.00, '', 1, '2024-10-14 06:23:00', 0, NULL, 0, NULL, 1),
(28987, 22254, '3', 'Hindusthan College of Arts and science - coimbatore', '', 'Bachelor of computer science', '2023', 88.00, '', 1, '2024-10-14 06:23:00', 0, NULL, 0, NULL, 1),
(28988, 22258, '3', 'Thiruvalluvar University ', '', 'bsc.mathematics ', '2023', 75.00, '', 1, '2024-10-14 06:24:17', 0, NULL, 0, NULL, 1),
(28989, 22259, '4', 'University of Madras ', '', 'M.sc IT', '2024', 78.00, '', 1, '2024-10-14 06:29:16', 0, NULL, 0, NULL, 1),
(28990, 22260, '3', 'university of Madras', '', 'Ug', '2024', 60.00, '', 1, '2024-10-14 06:38:30', 0, NULL, 0, NULL, 1),
(28991, 22253, '3', 'University of madras ', '', 'B.com cs', '2023', 81.00, '', 1, '2024-10-14 06:40:19', 0, NULL, 0, NULL, 1),
(28992, 22261, '3', 'J.P. college of arts & Science', '', 'B. Sc Information Technology', '2024', 70.00, '', 1, '2024-10-14 06:51:50', 0, NULL, 0, NULL, 1),
(28993, 22263, '3', 'DB Jain College ', '', 'BCA', '2024', 73.00, '', 1, '2024-10-14 06:57:43', 0, NULL, 0, NULL, 1),
(28994, 22255, '3', 'Manonmaniam university ', '', 'Bsc', '2024', 78.00, '', 1, '2024-10-14 07:00:54', 0, NULL, 0, NULL, 1),
(28995, 22265, '3', 'SRM UNIVERSITY ', '', 'B.B.A', '2024', 65.00, '', 1, '2024-10-14 07:12:08', 0, NULL, 0, NULL, 1),
(28996, 22264, '3', 'DB Jain College', '', 'BCA', '2024', 83.00, '', 1, '2024-10-14 07:12:16', 0, NULL, 0, NULL, 1),
(28997, 22266, '3', 'J.p. College of arts and science', '', 'B. Sc information Technology', '2024', 70.00, '', 1, '2024-10-14 07:12:41', 0, NULL, 0, NULL, 1),
(28998, 22262, '3', 'JP College of arts&science ', '', 'Bsc.Information Technology ', '2024', 70.00, '', 1, '2024-10-14 07:14:12', 0, NULL, 0, NULL, 1),
(28999, 22268, '1', 'Deemed', '', '', '2024', 78.00, '', 1, '2024-10-14 07:17:53', 0, NULL, 0, NULL, 1),
(29000, 22270, '1', 'State board', '', 'Bca', '2018', 67.00, '', 1, '2024-10-14 07:23:43', 0, NULL, 0, NULL, 1),
(29001, 22267, '1', 'State board ', '', 'BSC computer science ', '2019', 79.00, '', 1, '2024-10-14 07:23:59', 1, '2024-10-14 07:24:45', 0, NULL, 0),
(29002, 22270, '2', 'State board ', '', '', '2020', 58.00, '', 1, '2024-10-14 07:24:16', 0, NULL, 0, NULL, 1),
(29003, 22270, '3', 'Srm university ', '', 'Bca', '2023', 85.00, '', 1, '2024-10-14 07:24:36', 0, NULL, 0, NULL, 1),
(29004, 22267, '1', 'State board ', '', '', '2019', 79.00, '', 1, '2024-10-14 07:25:28', 0, NULL, 0, NULL, 1),
(29005, 22267, '2', 'State board ', '', '', '2021', 81.00, '', 1, '2024-10-14 07:26:45', 0, NULL, 0, NULL, 1),
(29006, 22267, '3', 'Periya university ', '', 'BSC computer science ', '2024', 70.50, '', 1, '2024-10-14 07:28:19', 0, NULL, 0, NULL, 1),
(29007, 22271, '3', 'Thiruvalluvar university ', '', 'Bsc', '2021', 80.00, '', 1, '2024-10-14 07:36:06', 0, NULL, 0, NULL, 1),
(29008, 22269, '3', 'Manonmaniyam sundrananar university ', '', 'B.A History ', '2024', 75.00, '', 1, '2024-10-14 07:49:40', 0, NULL, 0, NULL, 1),
(29009, 22272, '3', 'Tiruvalluvar university ', '', 'Bca computer applications ', '2019', 78.00, '', 1, '2024-10-14 08:01:27', 0, NULL, 0, NULL, 1),
(29010, 22273, '3', 'Madras university ', '', 'B.A Economics', '2024', 68.00, '', 1, '2024-10-14 08:21:35', 0, NULL, 0, NULL, 1),
(29011, 22274, '5', 'Anna university', '', 'B. E', '2019', 75.00, '', 1, '2024-10-14 09:16:11', 0, NULL, 0, NULL, 1),
(29012, 22274, '4', 'Anna university', '', 'B. E civil', '2019', 67.00, '', 1, '2024-10-14 09:16:52', 0, NULL, 0, NULL, 1),
(29013, 22275, '4', 'Kamaraj University ', '', 'MBA', '2024', 71.00, '', 1, '2024-10-14 09:40:19', 1, '2024-10-14 09:40:39', 0, NULL, 0),
(29014, 22275, '4', 'Kamaraj University ', '', 'MBA', '2024', 71.00, '', 1, '2024-10-14 09:41:14', 0, NULL, 0, NULL, 1),
(29015, 22276, '4', 'Madras University ', '', 'Bcom mba', '2023', 70.00, '', 1, '2024-10-14 09:46:56', 0, NULL, 0, NULL, 1),
(29016, 22277, '3', 'Anna University ', '', 'Bachelor\'s Degree', '2024', 84.70, '', 1, '2024-10-14 09:54:41', 0, NULL, 0, NULL, 1),
(29017, 22277, '2', 'Tamil Nadu state board ', '', '', '2020', 77.00, '', 1, '2024-10-14 09:55:58', 0, NULL, 0, NULL, 1),
(29018, 22277, '1', 'Tamil Nadu state board', '', '', '2018', 91.70, '', 1, '2024-10-14 09:56:37', 0, NULL, 0, NULL, 1),
(29019, 22278, '3', 'Anna University', '', 'B.E Computer Science and engineering', '2024', 80.00, '', 1, '2024-10-14 10:49:17', 0, NULL, 0, NULL, 1),
(29020, 22278, '2', 'State Board of Tamil Nadu', '', '', '2020', 77.00, '', 1, '2024-10-14 10:49:49', 0, NULL, 0, NULL, 1),
(29021, 22278, '1', 'State Board of Tamil Nadu', '', '', '2018', 88.00, '', 1, '2024-10-14 10:50:28', 0, NULL, 0, NULL, 1),
(29022, 22279, '3', 'Anna university ', '', 'BE Electrical and electronics engineering ', '2018', 70.00, '', 1, '2024-10-14 01:37:55', 0, NULL, 0, NULL, 1),
(29023, 22280, '3', 'Thrivalluver University', '', 'Maths', '2022', 87.00, '', 1, '2024-10-15 02:55:17', 0, NULL, 0, NULL, 1),
(29024, 22281, '3', 'Bharathidasan university, Trichy', '', 'B.com CA', '2024', 78.00, '', 1, '2024-10-15 04:45:04', 0, NULL, 0, NULL, 1),
(29025, 22284, '3', 'SV University Tirupati ', '', 'Bsc', '2022', 77.00, '', 1, '2024-10-15 06:00:49', 0, NULL, 0, NULL, 1),
(29026, 22283, '3', 'Anna University ', '', 'Btech IT', '2024', 7.30, '', 1, '2024-10-15 06:03:23', 0, NULL, 0, NULL, 1),
(29027, 22285, '3', 'Anna University ', '', 'EEE', '2023', 71.00, '', 1, '2024-10-15 06:38:30', 1, '2024-10-15 06:39:43', 0, NULL, 0),
(29028, 22285, '2', 'HSC', '', '', '2019', 68.00, '', 1, '2024-10-15 06:38:58', 1, '2024-10-15 06:39:39', 0, NULL, 0),
(29029, 22285, '3', 'Anna University ', '', 'EEE', '2023', 71.00, '', 1, '2024-10-15 06:40:14', 0, NULL, 0, NULL, 1),
(29030, 21744, '4', 'University', '', 'MBA', '2024', 0.00, '', 60, '2024-10-15 12:54:47', 0, NULL, 0, NULL, 1),
(29031, 22286, '3', 'Manonmaniyam sundaranar university ', '', 'B. Sc Computer science ', '2020', 76.90, '', 1, '2024-10-15 07:52:50', 0, NULL, 0, NULL, 1),
(29032, 22287, '3', 'Madras University', '', 'Bsc', '2024', 68.45, '', 1, '2024-10-15 09:50:29', 0, NULL, 0, NULL, 1),
(29033, 22291, '3', 'Annamalai', '', 'Bcom', '2024', 82.00, '', 1, '2024-10-16 04:33:18', 0, NULL, 0, NULL, 1),
(29034, 22290, '3', 'Bharathidasan University', '', 'BBA', '2024', 76.00, '', 1, '2024-10-16 04:37:23', 0, NULL, 0, NULL, 1),
(29035, 22289, '3', 'Bharadhidasan University ', '', 'BBA', '2024', 82.00, '', 1, '2024-10-16 04:39:20', 0, NULL, 0, NULL, 1),
(29036, 22292, '3', 'Bharadhidasan ', '', 'Bba', '2024', 63.00, '', 1, '2024-10-16 04:44:53', 0, NULL, 0, NULL, 1),
(29037, 22294, '3', 'Madras University ', '', 'B.com(cs)', '2023', 85.00, '', 1, '2024-10-16 10:14:13', 0, NULL, 0, NULL, 1),
(29038, 22296, '3', 'madras university', '', 'bca', '2023', 75.00, '', 1, '2024-10-17 04:47:46', 0, NULL, 0, NULL, 1),
(29039, 22297, '3', 'Anna university ', '', 'B Tech-Information Technology ', '2023', 85.00, '', 1, '2024-10-17 04:51:37', 0, NULL, 0, NULL, 1),
(29040, 22298, '3', 'Anna University trichy ( BIT campus) ', '', 'BE mechanical engineering', '2023', 77.00, '', 1, '2024-10-17 05:15:52', 0, NULL, 0, NULL, 1),
(29041, 22298, '2', 'State board', '', '', '2019', 75.00, '', 1, '2024-10-17 05:16:51', 1, '2024-10-17 05:18:30', 0, NULL, 0),
(29042, 22298, '2', 'State board', '', '', '2019', 75.00, '', 1, '2024-10-17 05:18:54', 0, NULL, 0, NULL, 1),
(29043, 22298, '1', 'State board', '', '', '2017', 94.00, '', 1, '2024-10-17 05:19:14', 0, NULL, 0, NULL, 1),
(29044, 22299, '2', 'Chennai', '', '', '2019', 72.00, '', 1, '2024-10-17 06:16:43', 0, NULL, 0, NULL, 1),
(29045, 22301, '5', 'Dote', '', 'diploma', '2023', 99.00, '', 1, '2024-10-17 06:16:43', 0, NULL, 0, NULL, 1),
(29046, 22302, '3', 'Manonmaniam sundaranar university', '', 'B. Sc computer science', '2024', 81.00, '', 1, '2024-10-17 06:39:11', 0, NULL, 0, NULL, 1),
(29047, 22303, '4', 'Bharathidasan university', '', 'Msc maths', '2023', 88.00, '', 1, '2024-10-17 06:45:39', 0, NULL, 0, NULL, 1),
(29048, 22304, '3', 'Bharadhidasan university', '', 'B.A.ENGLISH LITERATURE', '2023', 65.00, '', 1, '2024-10-17 07:01:07', 0, NULL, 0, NULL, 1),
(29049, 22309, '3', 'Madras University ', '', 'B.com c.S', '2020', 65.00, '', 1, '2024-10-17 09:09:34', 0, NULL, 0, NULL, 1),
(29050, 22310, '3', 'Madras university', '', 'B. B. A', '2018', 52.00, '', 1, '2024-10-17 09:11:41', 0, NULL, 0, NULL, 1),
(29051, 22307, '3', 'University of Madras ', '', 'Bsc computer science ', '2024', 66.85, '', 1, '2024-10-17 09:14:00', 0, NULL, 0, NULL, 1),
(29052, 22306, '2', 'GHSS Vandayariruppu Thanjavur ', '', 'B.sc Statistics ', '2018', 62.00, '', 1, '2024-10-17 09:14:04', 0, NULL, 0, NULL, 1),
(29053, 22308, '3', 'Madras University ', '', 'B.com (ism)', '2024', 74.00, '', 1, '2024-10-17 09:15:12', 0, NULL, 0, NULL, 1),
(29054, 22306, '1', 'GBHSS Orathanadu Thanjavur ', '', '', '2016', 81.00, '', 1, '2024-10-17 09:15:12', 0, NULL, 0, NULL, 1),
(29055, 22305, '4', 'Madras University ', '', 'MBA', '2024', 75.00, '', 1, '2024-10-17 09:33:17', 0, NULL, 0, NULL, 1),
(29056, 22305, '3', 'Thiruvalluvar University ', '', 'BA', '2019', 55.00, '', 1, '2024-10-17 09:34:38', 0, NULL, 0, NULL, 1),
(29057, 22305, '2', 'Government higher sec school ', '', '', '2014', 67.00, '', 1, '2024-10-17 09:35:32', 0, NULL, 0, NULL, 1),
(29058, 22305, '1', 'Government higher sec School ', '', '', '2016', 65.00, '', 1, '2024-10-17 09:36:27', 0, NULL, 0, NULL, 1),
(29059, 22313, '3', 'Karunya University ', '', 'Bachelor of commerce', '2023', 63.00, '', 1, '2024-10-17 09:52:07', 0, NULL, 0, NULL, 1),
(29060, 22312, '3', 'Vels', '', 'B. Com', '2023', 68.80, '', 1, '2024-10-17 09:57:42', 0, NULL, 0, NULL, 1),
(29061, 22311, '4', 'University of madras', '', 'MBA', '2024', 75.00, '', 1, '2024-10-17 10:05:37', 0, NULL, 0, NULL, 1),
(29062, 22316, '3', 'Madurai kamaraj university ', '', 'BCA', '2022', 80.00, '', 1, '2024-10-17 11:22:00', 0, NULL, 0, NULL, 1),
(29063, 22318, '3', 'bangalore university', '', 'bbm', '2015', 62.40, '', 1, '2024-10-17 11:36:56', 0, NULL, 0, NULL, 1),
(29064, 22317, '4', 'annauniversity', '', 'mba', '2024', 70.00, '', 1, '2024-10-17 11:37:14', 0, NULL, 0, NULL, 1),
(29065, 22321, '3', 'S V UNIVERSITY', '', 'B com', '2022', 68.00, '', 1, '2024-10-17 11:48:27', 0, NULL, 0, NULL, 1),
(29066, 22320, '3', 'madras university', '', 'bca ', '2022', 72.00, '', 1, '2024-10-17 11:49:15', 0, NULL, 0, NULL, 1),
(29067, 22322, '3', 'Thiruvalluvar University ', '', 'B.A(Corporate Economics)', '2022', 65.00, '', 1, '2024-10-17 11:52:47', 0, NULL, 0, NULL, 1),
(29068, 22322, '1', 'GOVT Bord', '', '', '2017', 56.00, '', 1, '2024-10-17 11:53:41', 0, NULL, 0, NULL, 1),
(29069, 22322, '2', 'Govt Bord', '', '', '2019', 55.00, '', 1, '2024-10-17 11:54:22', 0, NULL, 0, NULL, 1),
(29070, 22319, '3', 'Madras University ', '', 'B com bank management ', '2018', 62.00, '', 1, '2024-10-17 11:56:01', 0, NULL, 0, NULL, 1),
(29071, 22323, '3', 'VISVESVARAYA TECHNOLOGICAL UNIVERSITY ', '', 'Bachelor of Engineering ', '2023', 67.00, '', 1, '2024-10-17 12:25:00', 0, NULL, 0, NULL, 1),
(29072, 22326, '4', 'University ', '', 'Bcom ', '2022', 70.00, '', 1, '2024-10-17 02:08:55', 0, NULL, 0, NULL, 1),
(29073, 22325, '3', 'Madras University', '', 'Bba', '2021', 91.00, '', 1, '2024-10-17 02:13:27', 0, NULL, 0, NULL, 1),
(29074, 22328, '3', 'Meenakshi University ', '', 'B tech IT', '2021', 85.00, '', 1, '2024-10-17 02:59:59', 0, NULL, 0, NULL, 1),
(29075, 22327, '3', 'Vandayar engineering college ', '', 'Bachelor\'s degree in Computer science and Engineer', '2024', 80.00, '', 1, '2024-10-17 03:10:23', 0, NULL, 0, NULL, 1),
(29076, 22329, '3', 'Madras University', '', 'Bca', '2021', 85.00, '', 1, '2024-10-17 04:07:03', 0, NULL, 0, NULL, 1),
(29077, 22331, '3', 'Madras University ', '', 'B.com commerce ', '2020', 90.00, '', 1, '2024-10-17 06:46:50', 0, NULL, 0, NULL, 1),
(29078, 22333, '3', 'annauniversity', '', 'be', '2022', 8.50, '', 1, '2024-10-18 04:52:03', 0, NULL, 0, NULL, 1),
(29079, 22334, '3', 'Madras university ', '', 'Bca', '2024', 67.00, '', 1, '2024-10-18 05:01:21', 0, NULL, 0, NULL, 1),
(29080, 22335, '3', 'madras university', '', 'bca', '2024', 70.00, '', 1, '2024-10-18 05:07:16', 0, NULL, 0, NULL, 1),
(29081, 22336, '3', 'Anna University', '', 'BE/ECE', '2024', 78.00, '', 1, '2024-10-18 05:25:03', 0, NULL, 0, NULL, 1),
(29082, 22338, '3', 'Srmuniversity', '', 'BCA', '2016', 6.05, '', 1, '2024-10-18 05:29:32', 0, NULL, 0, NULL, 1),
(29083, 22339, '3', 'Madras University ', '', 'BCA ', '2024', 95.00, '', 1, '2024-10-18 05:38:58', 0, NULL, 0, NULL, 1),
(29084, 22337, '3', 'Madras university ', '', 'B.A TTM', '2020', 70.00, '', 1, '2024-10-18 05:53:54', 0, NULL, 0, NULL, 1),
(29085, 22342, '3', 'University of madras', '', 'B.com(cs)', '2024', 76.00, '', 1, '2024-10-18 06:06:26', 0, NULL, 0, NULL, 1),
(29086, 22344, '3', 'Tiruvalluvar university ', '', 'B.A English ', '2019', 70.00, '', 1, '2024-10-18 06:06:42', 0, NULL, 0, NULL, 1),
(29087, 22342, '2', 'Private schooling', '', '', '2021', 66.00, '', 1, '2024-10-18 06:06:54', 0, NULL, 0, NULL, 1),
(29088, 22342, '1', 'Fathima basheer mat.hr.sec . school for girls', '', '', '2016', 86.00, '', 1, '2024-10-18 06:08:27', 0, NULL, 0, NULL, 1),
(29089, 22341, '3', 'vel tech multi tech ', '', 'b.e', '2024', 75.00, '', 1, '2024-10-18 06:14:13', 0, NULL, 0, NULL, 1),
(29090, 22330, '3', 'Annai Violet College University of Madras', '', 'MBA HR', '2023', 72.00, '', 1, '2024-10-18 06:18:04', 0, NULL, 0, NULL, 1),
(29091, 22340, '4', 'Bharathidasan University ', '', 'Mathematics ', '2024', 80.00, '', 1, '2024-10-18 06:22:18', 0, NULL, 0, NULL, 1),
(29092, 22345, '1', 'state board', '', '', '2019', 74.00, '', 1, '2024-10-18 06:23:54', 0, NULL, 0, NULL, 1),
(29093, 22345, '2', 'state board', '', '', '2021', 82.83, '', 1, '2024-10-18 06:25:12', 0, NULL, 0, NULL, 1),
(29094, 22346, '1', 'State board ', '', '', '2018', 72.20, '', 1, '2024-10-18 06:25:37', 0, NULL, 0, NULL, 1),
(29095, 22346, '2', 'State board ', '', '', '2020', 58.80, '', 1, '2024-10-18 06:26:09', 0, NULL, 0, NULL, 1),
(29096, 22345, '3', 'madras university ', '', 'b. a', '2024', 64.60, '', 1, '2024-10-18 06:26:35', 0, NULL, 0, NULL, 1),
(29097, 22346, '3', 'Jerusalaem college of engineering ', '', 'BE', '2024', 74.00, '', 1, '2024-10-18 06:27:09', 0, NULL, 0, NULL, 1),
(29098, 22343, '3', ' or, CAFS Infotech, Spencer Plaza Mall, Anna Salai, Phase II, Chennai, Tamil Nadu 600002', '', 'B.com', '2024', 60.00, '', 1, '2024-10-18 06:28:33', 0, NULL, 0, NULL, 1),
(29099, 22348, '3', 'University of Madras ', '', 'B. Com', '2024', 71.00, '', 1, '2024-10-18 06:34:45', 0, NULL, 0, NULL, 1),
(29100, 22347, '3', 'University of Madras', '', 'B.com', '2024', 70.00, '', 1, '2024-10-18 06:35:01', 0, NULL, 0, NULL, 1),
(29101, 22349, '3', 'Madras University ', '', 'BBA', '2015', 67.00, '', 1, '2024-10-18 06:43:04', 0, NULL, 0, NULL, 1),
(29102, 22350, '3', 'Thiruchirapalli ', '', '', '2023', 85.00, '', 1, '2024-10-18 07:38:39', 0, NULL, 0, NULL, 1),
(29103, 22351, '3', 'Thiruvalluvar university ', '', 'B.sc mathematics ', '2017', 85.00, '', 1, '2024-10-18 07:50:31', 0, NULL, 0, NULL, 1),
(29104, 22352, '3', 'Justice basheer ahmed sayeed college for women', '', 'B.a', '2024', 70.00, '', 1, '2024-10-18 08:49:21', 0, NULL, 0, NULL, 1),
(29105, 22353, '3', 'Justice basheer Ahmed sayeed college for women ', '', 'Bsc computer science ', '2024', 65.15, '', 1, '2024-10-18 09:21:54', 0, NULL, 0, NULL, 1),
(29106, 22354, '3', 'Madras University ', '', 'Bba', '2022', 90.00, '', 1, '2024-10-18 09:45:20', 0, NULL, 0, NULL, 1),
(29107, 22355, '3', 'Madras University ', '', 'B com ', '2022', 80.00, '', 1, '2024-10-18 10:58:26', 0, NULL, 0, NULL, 1),
(29108, 22357, '3', 'madras university', '', 'b.com', '2022', 66.00, '', 1, '2024-10-18 10:58:27', 0, NULL, 0, NULL, 1),
(29109, 22356, '3', 'Madras university ', '', 'B. A. English literature ', '2022', 65.00, '', 1, '2024-10-18 10:58:27', 0, NULL, 0, NULL, 1),
(29110, 22361, '3', 'Anna university ', '', 'B.E', '2024', 7.90, '', 1, '2024-10-18 03:38:16', 0, NULL, 0, NULL, 1),
(29111, 22360, '3', 'Anna  university ', '', 'B.E', '2024', 7.90, '', 1, '2024-10-18 03:44:36', 0, NULL, 0, NULL, 1),
(29112, 22288, '4', 'Bharathidasan University ', '', 'BBA', '2022', 79.00, '', 1, '2024-10-19 04:26:41', 0, NULL, 0, NULL, 1),
(29113, 22362, '3', 'Bharathidasan university ', '', 'BBA', '2022', 74.00, '', 1, '2024-10-19 04:31:32', 0, NULL, 0, NULL, 1),
(29114, 22363, '4', 'SASTRA Deemed To Be University ', '', 'Msc cs', '2023', 6.90, '', 1, '2024-10-19 05:02:09', 0, NULL, 0, NULL, 1),
(29115, 22363, '3', 'SASTRA Deemed To Be University ', '', 'Bsc physics and cs ', '2021', 6.80, '', 1, '2024-10-19 05:02:58', 0, NULL, 0, NULL, 1),
(29116, 22363, '2', 'Sri Saraswathi Patasala Girls Higher Secondary School ', '', '', '2018', 66.33, '', 1, '2024-10-19 05:03:45', 0, NULL, 0, NULL, 1),
(29117, 22363, '1', 'Anna govt higher secondary school ', '', '', '2016', 86.80, '', 1, '2024-10-19 05:04:08', 0, NULL, 0, NULL, 1),
(29118, 22364, '3', 'Anna university ', '', 'B.E - CSE', '2024', 76.00, '', 1, '2024-10-19 05:21:44', 0, NULL, 0, NULL, 1),
(29119, 22364, '2', 'State Board', '', '', '2024', 68.00, '', 1, '2024-10-19 05:22:01', 0, NULL, 0, NULL, 1),
(29120, 22364, '1', 'State Board ', '', '', '2024', 86.00, '', 1, '2024-10-19 05:22:19', 0, NULL, 0, NULL, 1),
(29121, 22365, '3', 'Anna University ', '', 'B.E', '2024', 78.00, '', 1, '2024-10-19 05:24:30', 0, NULL, 0, NULL, 1),
(29122, 22366, '3', 'Anna University ', '', 'B.E - CSE', '2024', 8.37, '', 1, '2024-10-19 05:24:39', 0, NULL, 0, NULL, 1),
(29123, 22365, '1', 'State Board ', '', '', '2018', 81.00, '', 1, '2024-10-19 05:25:00', 0, NULL, 0, NULL, 1),
(29124, 22366, '2', 'State board ', '', '', '2020', 80.66, '', 1, '2024-10-19 05:25:21', 0, NULL, 0, NULL, 1),
(29125, 22365, '2', 'State Board ', '', '', '2020', 77.00, '', 1, '2024-10-19 05:25:26', 0, NULL, 0, NULL, 1),
(29126, 22366, '1', 'State board ', '', '', '2018', 90.00, '', 1, '2024-10-19 05:25:38', 0, NULL, 0, NULL, 1),
(29127, 22368, '3', 'Thiruvalluvar university ', '', 'B.A English ', '2021', 73.00, '', 1, '2024-10-19 05:38:20', 0, NULL, 0, NULL, 1),
(29128, 22370, '3', 'Thiruvalluvar university ', '', 'BCA ', '2022', 78.00, '', 1, '2024-10-19 05:44:46', 0, NULL, 0, NULL, 1),
(29129, 22369, '3', 'Madurai kamraj university ', '', 'B.com(CA)', '2022', 80.00, '', 1, '2024-10-19 05:44:47', 0, NULL, 0, NULL, 1),
(29130, 22373, '3', 'Madras University ', '', 'Bsc computer science ', '2024', 65.00, '', 1, '2024-10-19 05:54:18', 0, NULL, 0, NULL, 1),
(29131, 22373, '2', 'State board ', '', '', '2021', 78.00, '', 1, '2024-10-19 05:55:14', 1, '2024-10-19 05:56:19', 0, NULL, 1),
(29132, 22373, '1', 'State board ', '', '', '2019', 65.00, '', 1, '2024-10-19 05:56:47', 0, NULL, 0, NULL, 1),
(29133, 22372, '3', 'Thiruvalluvar University ', '', 'BCA', '2024', 80.00, '', 1, '2024-10-19 05:56:55', 1, '2024-10-19 05:57:18', 0, NULL, 1),
(29134, 22367, '1', 'Dhanalakshmi Srinivasan mat hr sec school', '', 'M.a financial economics', '2017', 90.00, '', 1, '2024-10-19 06:20:31', 1, '2024-10-19 06:22:27', 0, NULL, 0),
(29135, 22367, '1', 'Board', '', '', '2017', 90.00, '', 1, '2024-10-19 06:23:16', 0, NULL, 0, NULL, 1),
(29136, 22367, '2', 'Board', '', '', '2019', 78.00, '', 1, '2024-10-19 06:24:00', 0, NULL, 0, NULL, 1),
(29137, 22367, '3', 'University', '', 'B.com', '2022', 78.00, '', 1, '2024-10-19 06:25:02', 0, NULL, 0, NULL, 1),
(29138, 22367, '4', 'University of Madras', '', 'M.a Financial economics', '2024', 75.00, '', 1, '2024-10-19 06:26:36', 0, NULL, 0, NULL, 1),
(29139, 22374, '3', 'university of madras', '', 'ngl ', '2021', 80.00, '', 1, '2024-10-19 06:31:28', 0, NULL, 0, NULL, 1),
(29140, 22375, '3', 'Mardes university ', '', 'B.com general ', '2024', 70.00, '', 1, '2024-10-19 08:02:34', 0, NULL, 0, NULL, 1),
(29141, 22376, '3', 'Alagappa University, Karaikudi', '', 'BBA', '2019', 7.20, '', 1, '2024-10-19 08:08:23', 0, NULL, 0, NULL, 1),
(29142, 22380, '4', 'Alagappa University ', '', 'M. Sc mathematics ', '2024', 76.00, '', 1, '2024-10-19 04:16:58', 0, NULL, 0, NULL, 1),
(29143, 22381, '4', 'SRM Easwari Engineering College ', '', 'MBA ', '2025', 8.10, '', 1, '2024-10-20 04:58:25', 0, NULL, 0, NULL, 1),
(29144, 22385, '3', 'Annamalai University ', '', 'BCA', '2024', 84.00, '', 1, '2024-10-20 12:19:21', 0, NULL, 0, NULL, 1),
(29145, 22384, '3', 'Madars unviserty ', '', 'B.com', '2024', 66.00, '', 1, '2024-10-20 12:34:14', 0, NULL, 0, NULL, 1),
(29146, 22382, '3', 'University of madras', '', 'b a economics ', '2024', 5.50, '', 1, '2024-10-21 02:53:49', 0, NULL, 0, NULL, 1),
(29147, 22388, '3', 'Bharadhidasan ', '', 'Msc', '2024', 70.00, '', 1, '2024-10-21 04:34:31', 0, NULL, 0, NULL, 1),
(29148, 22389, '3', 'Pondicherry University ', '', 'B.Tech', '2022', 7.80, '', 1, '2024-10-21 04:48:31', 0, NULL, 0, NULL, 1),
(29149, 22389, '1', 'Pondicherry University ', '', '', '2016', 7.40, '', 1, '2024-10-21 04:49:20', 0, NULL, 0, NULL, 1),
(29150, 22390, '3', 'Bharathidasan university', '', 'B.sc.,', '2018', 61.90, '', 1, '2024-10-21 04:49:28', 0, NULL, 0, NULL, 1),
(29151, 22389, '2', 'Pondicherry University ', '', '', '2022', 8.00, '', 1, '2024-10-21 04:49:46', 0, NULL, 0, NULL, 1),
(29152, 22387, '3', 'Anna University ', '', 'BE', '2022', 80.00, '', 1, '2024-10-21 04:49:53', 0, NULL, 0, NULL, 1),
(29153, 22391, '3', 'Bharathidasan university ', '', 'BCA', '2024', 75.00, '', 1, '2024-10-21 05:03:53', 0, NULL, 0, NULL, 1),
(29154, 22391, '1', 'State board', '', '', '2019', 82.00, '', 1, '2024-10-21 05:04:37', 0, NULL, 0, NULL, 1),
(29155, 22391, '2', 'State board ', '', '', '2021', 81.00, '', 1, '2024-10-21 05:05:10', 0, NULL, 0, NULL, 1),
(29156, 22393, '3', 'Dr Mgr educational and research Institute', '', 'B. Tech CSE', '2024', 75.00, '', 1, '2024-10-21 05:09:37', 0, NULL, 0, NULL, 1),
(29157, 22394, '3', 'Anna University ', '', 'Bachelor of engineering ', '2023', 80.00, '', 1, '2024-10-21 05:11:53', 0, NULL, 0, NULL, 1),
(29158, 22394, '2', 'State Board of Tamil Nadu ', '', '', '2019', 68.00, '', 1, '2024-10-21 05:12:19', 0, NULL, 0, NULL, 1),
(29159, 22394, '1', 'State Board of Tamil Nadu ', '', '', '2017', 91.00, '', 1, '2024-10-21 05:12:44', 0, NULL, 0, NULL, 1),
(29160, 22392, '3', 'Anna University ', '', 'B.E - Computer science and engineering ', '2023', 79.00, '', 1, '2024-10-21 05:13:37', 0, NULL, 0, NULL, 1),
(29161, 22392, '2', 'Board ', '', '', '2019', 69.00, '', 1, '2024-10-21 05:14:23', 0, NULL, 0, NULL, 1),
(29162, 22392, '1', 'Board ', '', '', '2017', 79.00, '', 1, '2024-10-21 05:14:37', 0, NULL, 0, NULL, 1),
(29163, 22396, '3', 'Manonmaniam Sundarnar University ', '', 'BSc information technology ', '2022', 78.00, '', 1, '2024-10-21 05:23:05', 0, NULL, 0, NULL, 1),
(29164, 22395, '3', 'Sri Ramakrishna engineering', '', 'BE', '2024', 73.00, '', 1, '2024-10-21 05:24:45', 0, NULL, 0, NULL, 1),
(29165, 22398, '3', 'Anna University ', '', 'BE, ECE', '2023', 93.10, '', 1, '2024-10-21 05:25:27', 0, NULL, 0, NULL, 1),
(29166, 22399, '4', 'Bharathidasan University ', '', 'MCA', '2024', 70.00, '', 1, '2024-10-21 05:25:43', 0, NULL, 0, NULL, 1),
(29167, 22399, '3', 'Bharathidasan University ', '', 'MCA', '2024', 67.00, '', 1, '2024-10-21 05:26:56', 0, NULL, 0, NULL, 1),
(29168, 22397, '3', 'Madras University ', '', 'B.com corporate secretary ship ', '2020', 70.00, '', 1, '2024-10-21 05:28:04', 0, NULL, 0, NULL, 1),
(29169, 22400, '1', 'State board', '', '', '2011', 75.00, '', 1, '2024-10-21 05:40:37', 0, NULL, 0, NULL, 1),
(29170, 22400, '2', 'State board', '', '', '2013', 65.00, '', 1, '2024-10-21 05:41:03', 0, NULL, 0, NULL, 1),
(29171, 22400, '3', 'Madras', '', 'B.com', '2013', 55.00, '', 1, '2024-10-21 05:41:36', 0, NULL, 0, NULL, 1),
(29172, 22403, '4', 'Anna University ', '', 'Master of business administration ', '2024', 75.00, '', 1, '2024-10-21 05:44:24', 0, NULL, 0, NULL, 1),
(29173, 22405, '3', 'The new college', '', 'BSC ADVANCED ZOOLOGY AND BIOTECHNOLOGY(3rd Year) ', '2024', 6.40, '', 1, '2024-10-21 05:51:41', 0, NULL, 0, NULL, 1),
(29174, 22404, '3', 'M S University ', '', 'B.com Corp ', '2022', 77.00, '', 1, '2024-10-21 05:52:52', 0, NULL, 0, NULL, 1),
(29175, 22406, '4', 'Pope john  Paul college of education ', '', 'MCA ', '2024', 80.00, '', 1, '2024-10-21 06:03:11', 0, NULL, 0, NULL, 1),
(29176, 22406, '3', 'St Joseph\'s College of Arts and science Cuddalore ', '', 'Bsc Physics ', '2022', 64.00, '', 1, '2024-10-21 06:04:00', 0, NULL, 0, NULL, 1),
(29177, 22406, '2', 'Amalorpavam Hr Sec school, Puducherry ', '', '', '2019', 66.00, '', 1, '2024-10-21 06:04:46', 0, NULL, 0, NULL, 1),
(29178, 22406, '1', 'Amalorpavam Hr Sec school Puducherry ', '', '', '2017', 89.00, '', 1, '2024-10-21 06:05:03', 0, NULL, 0, NULL, 1),
(29179, 22408, '3', 'Anna University ', '', 'BE', '2022', 78.00, '', 1, '2024-10-21 06:09:17', 1, '2024-10-21 06:10:06', 0, NULL, 1),
(29180, 22407, '3', 'Anna University ', '', 'B.E', '2022', 71.00, '', 1, '2024-10-21 06:09:44', 0, NULL, 0, NULL, 1),
(29181, 22408, '2', 'State Board ', '', '', '2018', 69.00, '', 1, '2024-10-21 06:09:51', 0, NULL, 0, NULL, 1),
(29182, 22407, '2', 'State Board ', '', '', '2018', 55.00, '', 1, '2024-10-21 06:10:31', 0, NULL, 0, NULL, 1),
(29183, 22408, '1', 'State Board ', '', '', '2016', 72.00, '', 1, '2024-10-21 06:10:36', 0, NULL, 0, NULL, 1),
(29184, 22407, '1', 'State Board ', '', '', '2016', 72.00, '', 1, '2024-10-21 06:10:52', 0, NULL, 0, NULL, 1),
(29185, 22410, '4', 'Madras University ', '', 'MBA ', '2024', 65.00, '', 1, '2024-10-21 06:16:54', 0, NULL, 0, NULL, 1),
(29186, 22410, '1', 'State board ', '', '', '2016', 63.00, '', 1, '2024-10-21 06:18:40', 0, NULL, 0, NULL, 1),
(29187, 22410, '2', 'State board ', '', '', '2019', 60.00, '', 1, '2024-10-21 06:19:14', 0, NULL, 0, NULL, 1),
(29188, 22410, '3', 'Scsvmv university ', '', 'BBA ', '2022', 83.00, '', 1, '2024-10-21 06:19:49', 0, NULL, 0, NULL, 1),
(29189, 22409, '3', 'Anna University ', '', 'B.E(ECE)', '2023', 73.63, '', 1, '2024-10-21 06:32:35', 0, NULL, 0, NULL, 1),
(29190, 22411, '4', 'Anna university', '', 'MBA', '2024', 75.00, '', 1, '2024-10-21 06:33:36', 0, NULL, 0, NULL, 1),
(29191, 22409, '2', 'Tamilnadu state board ', '', '', '2019', 77.00, '', 1, '2024-10-21 06:33:53', 0, NULL, 0, NULL, 1),
(29192, 22411, '3', 'Madurai kamaraj university', '', 'B. com CA', '2022', 79.00, '', 1, '2024-10-21 06:34:18', 0, NULL, 0, NULL, 1),
(29193, 22409, '1', 'Tamilnadu state board ', '', '', '2017', 97.00, '', 1, '2024-10-21 06:36:24', 0, NULL, 0, NULL, 1),
(29194, 22412, '4', 'Anna university ', '', 'MAB(Logistics and supply chain management)', '2024', 80.00, '', 1, '2024-10-21 06:37:36', 0, NULL, 0, NULL, 1),
(29195, 22332, '3', 'Madras University ', '', 'BBA ', '2024', 75.00, '', 1, '2024-10-21 06:49:13', 0, NULL, 0, NULL, 1),
(29196, 22413, '1', 'Matriculation ', '', '', '2008', 83.00, '', 1, '2024-10-21 06:54:37', 0, NULL, 0, NULL, 1),
(29197, 22413, '2', 'State', '', '', '2010', 74.00, '', 1, '2024-10-21 06:54:56', 0, NULL, 0, NULL, 1),
(29198, 22413, '3', 'Annamalai ', '', 'Ba english', '2017', 45.00, '', 1, '2024-10-21 06:55:58', 0, NULL, 0, NULL, 1),
(29199, 22413, '4', 'Annamalai', '', 'Mba finance', '2021', 75.00, '', 1, '2024-10-21 06:56:34', 0, NULL, 0, NULL, 1),
(29200, 22414, '3', 'Anna university', '', 'B.E', '2021', 75.30, '', 1, '2024-10-21 06:57:04', 0, NULL, 0, NULL, 1),
(29201, 22415, '2', 'state board', '', '', '2017', 65.00, '', 1, '2024-10-21 07:22:26', 0, NULL, 0, NULL, 1),
(29202, 22415, '3', 'madras university', '', 'bca computer application ', '2022', 93.00, '', 1, '2024-10-21 07:23:05', 0, NULL, 0, NULL, 1),
(29203, 22416, '3', 'Bharathidasan university ', '', 'B.com', '2015', 60.00, '', 1, '2024-10-21 07:42:58', 0, NULL, 0, NULL, 1),
(29204, 22419, '3', 'Anna University ', '', 'Computer science and engineering ', '2024', 79.00, '', 1, '2024-10-21 07:57:59', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29205, 22420, '3', 'Pondicherry university', '', 'B. Tech- Information Technology', '2024', 81.90, '', 1, '2024-10-21 07:58:38', 0, NULL, 0, NULL, 1),
(29206, 22418, '1', 'State board ', '', '', '2014', 70.00, '', 1, '2024-10-21 08:01:43', 0, NULL, 0, NULL, 1),
(29207, 22418, '2', 'State board ', '', '', '2016', 76.00, '', 1, '2024-10-21 08:02:27', 0, NULL, 0, NULL, 1),
(29208, 22422, '4', 'university of madras', '', 'm. a. hrm', '2024', 75.00, '', 1, '2024-10-21 09:13:34', 0, NULL, 0, NULL, 1),
(29209, 22423, '1', 'State board', '', '', '2018', 69.00, '', 1, '2024-10-21 09:32:11', 0, NULL, 0, NULL, 1),
(29210, 22423, '3', 'Anna University ', '', 'Bachelor\'s ', '2024', 73.30, '', 1, '2024-10-21 09:32:50', 0, NULL, 0, NULL, 1),
(29211, 22424, '3', 'Anna University ', '', 'B.E', '2023', 8.20, '', 1, '2024-10-21 10:39:23', 0, NULL, 0, NULL, 1),
(29212, 22425, '3', 'Anna University', '', 'B.E Computer Science and engineering', '2024', 80.00, '', 1, '2024-10-21 11:08:13', 0, NULL, 0, NULL, 1),
(29213, 22425, '2', 'State Board of tamilnadu', '', '', '2020', 77.00, '', 1, '2024-10-21 11:09:00', 0, NULL, 0, NULL, 1),
(29214, 22425, '1', 'State board of Tamilnadu', '', '', '2018', 88.00, '', 1, '2024-10-21 11:09:25', 0, NULL, 0, NULL, 1),
(29215, 22426, '3', 'Madras University ', '', 'B.com', '2020', 75.00, '', 1, '2024-10-21 11:27:56', 0, NULL, 0, NULL, 1),
(29216, 22429, '1', 'State board', '', '', '2018', 89.60, '', 1, '2024-10-22 04:46:25', 0, NULL, 0, NULL, 1),
(29217, 22429, '2', 'State board ', '', '', '2020', 75.50, '', 1, '2024-10-22 04:46:42', 0, NULL, 0, NULL, 1),
(29218, 22429, '3', 'Anna university ', '', 'B.tech information technology', '2024', 81.00, '', 1, '2024-10-22 04:47:22', 0, NULL, 0, NULL, 1),
(29219, 22428, '3', 'Anna University ', '', 'B.Tech', '2024', 7.50, '', 1, '2024-10-22 04:49:32', 0, NULL, 0, NULL, 1),
(29220, 22430, '1', 'CBSE', '', '', '2018', 71.00, '', 1, '2024-10-22 04:57:37', 0, NULL, 0, NULL, 1),
(29221, 22430, '2', 'State Board', '', '', '2020', 76.00, '', 1, '2024-10-22 04:57:58', 0, NULL, 0, NULL, 1),
(29222, 22430, '3', 'Anna university', '', 'B.Tech IT', '2024', 78.00, '', 1, '2024-10-22 04:58:35', 0, NULL, 0, NULL, 1),
(29223, 22432, '3', 'Bharadidasan university ', '', 'Bba ', '2024', 78.00, '', 1, '2024-10-22 05:00:45', 0, NULL, 0, NULL, 1),
(29224, 22431, '4', 'university', '', 'mba in hr and finance', '2024', 7.50, '', 1, '2024-10-22 05:01:55', 0, NULL, 0, NULL, 1),
(29225, 22431, '3', 'university', '', 'bsc visual communication', '2022', 8.00, '', 1, '2024-10-22 05:03:06', 0, NULL, 0, NULL, 1),
(29226, 22431, '2', 'board', '', '', '2019', 65.00, '', 1, '2024-10-22 05:04:42', 0, NULL, 0, NULL, 1),
(29227, 22431, '1', 'board', '', '', '2017', 92.00, '', 1, '2024-10-22 05:04:54', 0, NULL, 0, NULL, 1),
(29228, 22434, '3', 'Madras University ', '', 'B.Sc Computer science ', '2022', 87.00, '', 1, '2024-10-22 05:24:04', 0, NULL, 0, NULL, 1),
(29229, 22435, '3', 'Anna University', '', 'B. E', '2024', 87.60, '', 1, '2024-10-22 05:32:02', 0, NULL, 0, NULL, 1),
(29230, 22437, '3', 'University autonomous ', '', 'B-tech', '2024', 7.54, '', 1, '2024-10-22 05:35:41', 0, NULL, 0, NULL, 1),
(29231, 22436, '3', 'Anna university ', '', 'BE .CSE ', '2024', 7.86, '', 1, '2024-10-22 05:36:04', 0, NULL, 0, NULL, 1),
(29232, 22438, '3', 'hindusthan college of engineering and technology', '', 'b.e computer science ', '2023', 79.00, '', 1, '2024-10-22 05:48:52', 0, NULL, 0, NULL, 1),
(29233, 22439, '3', 'Panimalar (Anna university affliated)', '', 'B.E(CSE)', '2023', 86.90, '', 1, '2024-10-22 05:52:12', 0, NULL, 0, NULL, 1),
(29234, 22439, '2', 'Nazareth Matric Higher Secondary School', '', '', '2018', 83.40, '', 1, '2024-10-22 05:52:58', 0, NULL, 0, NULL, 1),
(29235, 22439, '1', 'Nazareth Matric Higher Secondary School', '', '', '2016', 94.60, '', 1, '2024-10-22 05:53:44', 0, NULL, 0, NULL, 1),
(29236, 22442, '2', 'Sri Raghavendra Matric Higher Secondary school ', '', '', '2020', 70.00, '', 1, '2024-10-22 05:55:28', 1, '2024-10-22 05:55:52', 0, NULL, 1),
(29237, 22442, '1', 'Sri Raghavendra Matric Higher Secondary school ', '', '', '2018', 84.00, '', 1, '2024-10-22 05:56:08', 0, NULL, 0, NULL, 1),
(29238, 22440, '3', 'SV University ', '', 'B com', '2024', 85.00, '', 1, '2024-10-22 05:56:19', 0, NULL, 0, NULL, 1),
(29239, 22441, '3', 'Sri Venkateswara University, tirupati ', '', 'B.Com(Computer applications)', '2024', 80.00, '', 1, '2024-10-22 05:56:30', 0, NULL, 0, NULL, 1),
(29240, 22442, '3', 'Annamalai University ', '', 'B.E cSE (AI and ML)', '2024', 8.49, '', 1, '2024-10-22 05:57:07', 0, NULL, 0, NULL, 1),
(29241, 22444, '3', 'Anna University ', '', 'BE Mechanical ', '2018', 61.70, '', 1, '2024-10-22 06:00:30', 0, NULL, 0, NULL, 1),
(29242, 22445, '5', 'Central polytechnic college ', '', '', '2020', 74.50, '', 1, '2024-10-22 06:01:47', 0, NULL, 0, NULL, 1),
(29243, 22443, '3', 'ms university ', '', 'bba', '2022', 70.00, '', 1, '2024-10-22 06:03:45', 0, NULL, 0, NULL, 1),
(29244, 22446, '3', 'Madras university', '', 'B. Com ', '2022', 77.00, '', 1, '2024-10-22 06:15:33', 0, NULL, 0, NULL, 1),
(29245, 22448, '3', 'Anna University ', '', 'BE', '2023', 8.00, '', 1, '2024-10-22 06:40:10', 0, NULL, 0, NULL, 1),
(29246, 22449, '3', 'Dhanabagiyam Krishnaswamy mudaliar womens college ', '', 'Bachelor of Science', '2022', 84.00, '', 1, '2024-10-22 06:48:44', 0, NULL, 0, NULL, 1),
(29247, 22450, '3', 'Vel tech deemed university', '', 'Btech', '2022', 7.44, '', 1, '2024-10-22 07:00:20', 0, NULL, 0, NULL, 1),
(29248, 22401, '1', 'Pak palanisamy higher secondary school ', '', '', '2014', 65.00, '', 1, '2024-10-22 07:01:07', 0, NULL, 0, NULL, 1),
(29249, 22401, '2', 'P.A.K palanisamy higher secondary school ', '', '', '2016', 70.00, '', 1, '2024-10-22 07:02:11', 0, NULL, 0, NULL, 1),
(29250, 22401, '3', 'Madras University ', '', 'Bachelor of business administration ', '2019', 69.00, '', 1, '2024-10-22 07:02:39', 0, NULL, 0, NULL, 1),
(29251, 22451, '3', 'Soka Ikeda', '', 'BBA', '2022', 90.00, '', 1, '2024-10-22 07:34:32', 0, NULL, 0, NULL, 1),
(29252, 22452, '3', 'Aalim Muhammed Saleh college of engineering ', '', 'Ece', '2021', 7.03, '', 1, '2024-10-22 07:35:16', 0, NULL, 0, NULL, 1),
(29253, 22447, '3', 'Anna University ', '', 'B.e', '2018', 63.30, '', 1, '2024-10-22 07:55:23', 0, NULL, 0, NULL, 1),
(29254, 22454, '3', 'Madras University ', '', 'B.com(c.s)', '2024', 60.00, '', 1, '2024-10-22 08:08:49', 0, NULL, 0, NULL, 1),
(29255, 22456, '4', 'Bharathiar university ', '', 'Master of computer application ', '2021', 77.00, '', 1, '2024-10-22 08:09:02', 0, NULL, 0, NULL, 1),
(29256, 22453, '4', 'University of Madras', '', 'MSc information technology', '2024', 76.00, '', 1, '2024-10-22 08:09:34', 1, '2024-10-22 08:11:55', 0, NULL, 1),
(29257, 22456, '3', 'Bharathiar university ', '', 'Bachelor of information technology ', '2019', 71.00, '', 1, '2024-10-22 08:09:42', 0, NULL, 0, NULL, 1),
(29258, 22453, '3', 'St Thomas college of arts and sciences', '', 'Bsc computer science', '2022', 85.00, '', 1, '2024-10-22 08:10:16', 0, NULL, 0, NULL, 1),
(29259, 22453, '2', 'St Ann\'s Hr sec school', '', '', '2018', 57.00, '', 1, '2024-10-22 08:11:44', 1, '2024-10-22 08:12:17', 0, NULL, 0),
(29260, 22453, '2', 'St Ann\'s Boys HR Sec school', '', '', '2018', 57.00, '', 1, '2024-10-22 08:13:33', 0, NULL, 0, NULL, 1),
(29261, 22453, '1', 'Rajiv school of excellence', '', '', '2016', 82.00, '', 1, '2024-10-22 08:14:45', 0, NULL, 0, NULL, 1),
(29262, 22457, '3', 'SSM College of Engineering ', '', 'B.E - CSE', '2024', 78.40, '', 1, '2024-10-22 08:16:27', 0, NULL, 0, NULL, 1),
(29263, 22457, '2', 'Nandha Matric Hr Sec School ', '', '', '2020', 57.30, '', 1, '2024-10-22 08:17:03', 0, NULL, 0, NULL, 1),
(29264, 22457, '1', 'Sri Vasavi Matriculation School ', '', '', '2018', 83.60, '', 1, '2024-10-22 08:17:52', 0, NULL, 0, NULL, 1),
(29265, 22455, '3', 'SSM College of Engineering', '', 'B. E CSE', '2024', 79.30, '', 1, '2024-10-22 08:18:12', 0, NULL, 0, NULL, 1),
(29266, 22455, '2', 'Government higher secondary school sowdhapuram', '', '', '2020', 64.00, '', 1, '2024-10-22 08:19:30', 0, NULL, 0, NULL, 1),
(29267, 22455, '1', 'Government higher secondary school Sowdhapuram', '', '', '2018', 72.00, '', 1, '2024-10-22 08:20:32', 0, NULL, 0, NULL, 1),
(29268, 22458, '3', 'Anna University ', '', 'B.E', '2024', 81.00, '', 1, '2024-10-22 08:21:40', 0, NULL, 0, NULL, 1),
(29269, 22458, '2', 'State board ', '', '', '2020', 60.00, '', 1, '2024-10-22 08:22:29', 0, NULL, 0, NULL, 1),
(29270, 22458, '1', 'State board ', '', '', '2018', 74.00, '', 1, '2024-10-22 08:24:09', 0, NULL, 0, NULL, 1),
(29271, 22459, '3', 'UNIVERSITY OF MADRAS ', '', 'BA( DEFENCE AND STRATEGIC STUDIES)', '2024', 77.00, '', 1, '2024-10-22 08:29:22', 0, NULL, 0, NULL, 1),
(29272, 22460, '3', 'University of Madras ', '', 'B.com (Corporate Secretaryship)', '2024', 7.79, '', 1, '2024-10-22 08:29:31', 0, NULL, 0, NULL, 1),
(29273, 22461, '5', 'Anna University ', '', 'Diploma computer science and engineering ', '2019', 6.60, '', 1, '2024-10-22 09:13:00', 0, NULL, 0, NULL, 1),
(29274, 22462, '3', 'Guru Nanak College ', '', 'BSC computer science ', '2023', 89.00, '', 1, '2024-10-22 09:22:51', 0, NULL, 0, NULL, 1),
(29275, 22462, '2', 'Union christian school ', '', '', '2020', 67.00, '', 1, '2024-10-22 09:23:35', 0, NULL, 0, NULL, 1),
(29276, 22464, '3', 'Deemed University ', '', 'B.com ', '2023', 79.00, '', 1, '2024-10-22 09:46:42', 0, NULL, 0, NULL, 1),
(29277, 22463, '1', 'State board', '', '', '2018', 90.80, '', 1, '2024-10-22 09:49:29', 0, NULL, 0, NULL, 1),
(29278, 22463, '2', 'State board ', '', '', '2020', 82.83, '', 1, '2024-10-22 09:49:59', 0, NULL, 0, NULL, 1),
(29279, 22463, '3', 'Anna University ', '', 'B.E.', '2024', 87.40, '', 1, '2024-10-22 09:50:40', 0, NULL, 0, NULL, 1),
(29280, 22465, '3', 'DR.M.G.R EDUCATIONAL AND RESEARCH INSTITUTE ', '', 'B.sc Computer Science', '2024', 76.00, '', 1, '2024-10-22 10:06:27', 0, NULL, 0, NULL, 1),
(29281, 22466, '1', 'State', '', '', '2015', 92.00, '', 1, '2024-10-22 10:15:16', 1, '2024-10-22 10:16:04', 0, NULL, 1),
(29282, 22466, '2', 'State', '', '', '2017', 83.00, '', 1, '2024-10-22 10:16:36', 0, NULL, 0, NULL, 1),
(29283, 22466, '3', 'Jeppiaar Maamallan Engineering College ', '', 'B.E.computer Science', '2021', 74.00, '', 1, '2024-10-22 10:17:27', 0, NULL, 0, NULL, 1),
(29284, 22469, '4', 'Sri sai ram engineering college', '', 'BE CIVIL Engineering ', '2023', 8.20, '', 1, '2024-10-22 12:10:12', 1, '2024-10-22 12:11:13', 0, NULL, 0),
(29285, 22469, '3', 'Sri sai ram engineering college ', '', 'BE CIVIL ', '2023', 8.20, '', 1, '2024-10-22 12:11:08', 1, '2024-10-22 12:11:27', 0, NULL, 0),
(29286, 22469, '1', 'Krishnasamy matriculation higher secondary school of Excellence ', '', '', '2017', 93.00, '', 1, '2024-10-22 12:12:10', 0, NULL, 0, NULL, 1),
(29287, 22469, '2', 'Krishnasamy Matric Higher Secondary School of Excellence ', '', '', '2019', 61.00, '', 1, '2024-10-22 12:12:37', 0, NULL, 0, NULL, 1),
(29288, 22469, '3', 'Sri sairam engineering college ', '', 'BE civil', '2023', 8.20, '', 1, '2024-10-22 12:13:04', 0, NULL, 0, NULL, 1),
(29289, 22470, '3', 'madras university', '', 'b.com general ', '2024', 50.00, '', 1, '2024-10-22 12:22:18', 0, NULL, 0, NULL, 1),
(29290, 22472, '3', 'University of Madras ', '', 'B.com', '2024', 70.00, '', 1, '2024-10-22 04:08:23', 0, NULL, 0, NULL, 1),
(29291, 22474, '4', 'Annamalai university ', '', 'M.Sc', '2024', 8.02, '', 1, '2024-10-22 05:02:56', 0, NULL, 0, NULL, 1),
(29292, 22473, '3', 'ALAGAPPA UNIVERSITY', '', 'B.COM(CA)', '2024', 91.00, '', 1, '2024-10-22 05:05:06', 0, NULL, 0, NULL, 1),
(29293, 22476, '3', 'University of madras ', '', 'BCA', '2023', 89.95, '', 1, '2024-10-23 04:24:53', 0, NULL, 0, NULL, 1),
(29294, 22476, '2', 'Stateboard', '', '', '2020', 61.66, '', 1, '2024-10-23 04:25:19', 0, NULL, 0, NULL, 1),
(29295, 22475, '3', 'Jawaharlal Nehru technological University, Ananthapur ', '', 'B.tech', '2023', 81.00, '', 1, '2024-10-23 04:25:24', 0, NULL, 0, NULL, 1),
(29296, 22476, '1', 'Stateboard', '', '', '2018', 77.00, '', 1, '2024-10-23 04:25:36', 0, NULL, 0, NULL, 1),
(29297, 22475, '5', 'State board of technical education and training, Andhrapradesh ', '', 'Diploma ', '2019', 86.00, '', 1, '2024-10-23 04:26:20', 0, NULL, 0, NULL, 1),
(29298, 22477, '3', 'Periyar Maniammai Institute of Science and technology ', '', 'B.sc Computer science ', '2024', 85.00, '', 1, '2024-10-23 04:44:00', 0, NULL, 0, NULL, 1),
(29299, 22478, '4', 'Kalasalingam University ', '', 'MCA', '2024', 86.00, '', 1, '2024-10-23 04:56:55', 0, NULL, 0, NULL, 1),
(29300, 22478, '3', 'The Madura college ', '', 'Information technology ', '2022', 77.00, '', 1, '2024-10-23 04:57:27', 0, NULL, 0, NULL, 1),
(29301, 22479, '3', 'Madras University ', '', 'BSW - Bachalor of social work ', '2024', 65.00, '', 1, '2024-10-23 05:05:29', 0, NULL, 0, NULL, 1),
(29302, 22481, '3', 'University of Madras', '', 'BCA', '2024', 75.00, '', 1, '2024-10-23 05:12:25', 0, NULL, 0, NULL, 1),
(29303, 22481, '2', 'Government Higher Secondary School', '', '', '2021', 79.00, '', 1, '2024-10-23 05:13:01', 1, '2024-10-23 05:14:00', 0, NULL, 1),
(29304, 22480, '3', 'Anna university ', '', 'B e', '2017', 64.00, '', 1, '2024-10-23 05:13:46', 0, NULL, 0, NULL, 1),
(29305, 22481, '1', 'Government Higher secondary school', '', '', '2019', 72.00, '', 1, '2024-10-23 05:14:20', 0, NULL, 0, NULL, 1),
(29306, 22481, '4', 'Muthukumaran Institute of technology', '', 'MCA', '2026', 1.00, '', 1, '2024-10-23 05:15:23', 0, NULL, 0, NULL, 1),
(29307, 22483, '4', 'Maradas university ', '', 'MBA', '2019', 75.00, '', 1, '2024-10-23 05:42:20', 0, NULL, 0, NULL, 1),
(29308, 22483, '3', 'Madras university ', '', 'BBA', '2017', 65.00, '', 1, '2024-10-23 05:43:16', 0, NULL, 0, NULL, 1),
(29309, 22483, '2', 'St Josephs Higher secondary school', '', '', '2014', 60.00, '', 1, '2024-10-23 05:46:57', 0, NULL, 0, NULL, 1),
(29310, 22484, '3', 'Anna university ', '', 'BE', '2023', 85.00, '', 1, '2024-10-23 05:47:51', 0, NULL, 0, NULL, 1),
(29311, 22487, '3', 'Bharadhidasan University ', '', 'Bsc computer science ', '2022', 62.00, '', 1, '2024-10-23 05:59:06', 0, NULL, 0, NULL, 1),
(29312, 22486, '4', 'Annamalai university ', '', 'Msc', '2023', 7.05, '', 1, '2024-10-23 05:59:18', 0, NULL, 0, NULL, 1),
(29313, 22489, '3', 'Anna university ', '', 'BE(ECE)', '2021', 7.40, '', 1, '2024-10-23 06:01:41', 0, NULL, 0, NULL, 1),
(29314, 22490, '3', 'Periyar university ', '', 'B.Sc.,', '2021', 76.00, '', 1, '2024-10-23 06:02:23', 0, NULL, 0, NULL, 1),
(29315, 22488, '3', 'Crescent univercity ', '', 'B.com', '2024', 70.00, '', 1, '2024-10-23 06:03:27', 0, NULL, 0, NULL, 1),
(29316, 22491, '3', 'Anna university ', '', 'B Tech', '2020', 6.70, '', 1, '2024-10-23 06:04:20', 0, NULL, 0, NULL, 1),
(29317, 22493, '3', 'Anna University ', '', 'BE mechanical ', '2024', 78.00, '', 1, '2024-10-23 06:22:58', 0, NULL, 0, NULL, 1),
(29318, 22494, '3', 'University of Madras ', '', 'B.Sc. (CS)', '2024', 75.00, '', 1, '2024-10-23 06:23:40', 1, '2024-10-23 06:24:30', 0, NULL, 1),
(29319, 22485, '4', 'University of Madras ', '', 'M.sc', '2024', 60.00, '', 1, '2024-10-23 06:30:42', 0, NULL, 0, NULL, 1),
(29320, 22495, '3', 'Annamalai University ', '', 'B.E', '2023', 8.50, '', 1, '2024-10-23 06:39:51', 0, NULL, 0, NULL, 1),
(29321, 22499, '3', 'Anna university', '', 'BE', '2022', 76.00, '', 1, '2024-10-23 06:52:28', 0, NULL, 0, NULL, 1),
(29322, 22497, '3', 'Thiruvalluvar university ', '', 'Bsc software computer science ', '2024', 7.74, '', 1, '2024-10-23 06:55:00', 0, NULL, 0, NULL, 1),
(29323, 22498, '3', 'Thiruvalluvar university', '', 'BCA', '2024', 70.00, '', 1, '2024-10-23 06:55:14', 0, NULL, 0, NULL, 1),
(29324, 22500, '3', 'Loyola college ', '', 'B.a economics ', '2024', 52.70, '', 1, '2024-10-23 06:56:18', 0, NULL, 0, NULL, 1),
(29325, 22500, '1', 'Matriculation ', '', '', '2019', 70.00, '', 1, '2024-10-23 06:56:46', 0, NULL, 0, NULL, 1),
(29326, 22500, '2', 'Matriculation ', '', '', '2021', 78.00, '', 1, '2024-10-23 06:57:02', 0, NULL, 0, NULL, 1),
(29327, 22496, '3', 'Bharathidasan University ', '', 'B Sc CS', '2024', 82.00, '', 1, '2024-10-23 07:17:27', 0, NULL, 0, NULL, 1),
(29328, 22502, '3', 'Jp college of engineering', '', ' ECE', '2022', 8.10, '', 1, '2024-10-23 08:14:14', 0, NULL, 0, NULL, 1),
(29329, 22505, '4', 'Anna university', '', 'MCA', '2024', 8.04, '', 1, '2024-10-23 09:54:03', 0, NULL, 0, NULL, 1),
(29330, 22503, '3', 'Meenakshi college for women ', '', 'B.A economics ', '2023', 85.00, '', 1, '2024-10-23 09:54:30', 0, NULL, 0, NULL, 1),
(29331, 22504, '3', 'University ', '', 'BA Economics ', '2023', 82.00, '', 1, '2024-10-23 10:06:40', 0, NULL, 0, NULL, 1),
(29332, 22508, '3', 'Anna University ', '', 'BE', '2022', 75.00, '', 1, '2024-10-23 10:07:43', 0, NULL, 0, NULL, 1),
(29333, 22507, '1', 'State board ', '', '', '2011', 70.00, '', 1, '2024-10-23 10:25:55', 0, NULL, 0, NULL, 1),
(29334, 22506, '3', 'Madras University ', '', 'BA .ENG', '2023', 58.00, '', 1, '2024-10-23 10:28:40', 1, '2024-10-23 10:30:58', 0, NULL, 1),
(29335, 22506, '2', 'State board ', '', '', '2020', 54.00, '', 1, '2024-10-23 10:31:34', 0, NULL, 0, NULL, 1),
(29336, 22506, '1', 'State board ', '', '', '2018', 52.00, '', 1, '2024-10-23 10:32:15', 0, NULL, 0, NULL, 1),
(29337, 22509, '1', 'state board', '', '', '2017', 68.00, '', 1, '2024-10-23 10:54:34', 0, NULL, 0, NULL, 1),
(29338, 22509, '2', 'State board', '', '', '2019', 75.00, '', 1, '2024-10-23 10:56:48', 0, NULL, 0, NULL, 1),
(29339, 22509, '3', 'state board', '', 'bsc.vis', '2020', 86.00, '', 1, '2024-10-23 10:58:26', 1, '2024-10-23 10:58:43', 0, NULL, 1),
(29340, 22510, '3', 'Madras University ', '', 'B.com', '2024', 64.00, '', 1, '2024-10-23 02:03:11', 0, NULL, 0, NULL, 1),
(29341, 22471, '4', 'Madras University ', '', 'MBA ', '2023', 65.00, '', 1, '2024-10-24 03:45:31', 0, NULL, 0, NULL, 1),
(29342, 22513, '3', 'University College of Engineering -Arni,Anna University ', '', 'Computer Science and Engineering ', '2024', 8.03, '', 1, '2024-10-24 04:39:44', 0, NULL, 0, NULL, 1),
(29343, 22513, '2', 'State Board', '', '', '2020', 76.00, '', 1, '2024-10-24 04:40:18', 0, NULL, 0, NULL, 1),
(29344, 22513, '1', 'State Board', '', '', '2018', 87.00, '', 1, '2024-10-24 04:40:46', 0, NULL, 0, NULL, 1),
(29345, 22512, '3', 'Meenakshi college for women', '', 'BSC Computer Science', '2024', 78.23, '', 1, '2024-10-24 04:44:21', 0, NULL, 0, NULL, 1),
(29346, 22516, '3', 'Madurai kamaraj university ', '', 'Chemistry ', '2022', 71.00, '', 1, '2024-10-24 04:44:39', 0, NULL, 0, NULL, 1),
(29347, 22515, '3', 'Kamarajer university ', '', 'B.Sc', '2022', 68.90, '', 1, '2024-10-24 04:45:04', 0, NULL, 0, NULL, 1),
(29348, 22517, '3', 'Madras University ', '', 'B.Sc Computer Science ', '2023', 73.00, '', 1, '2024-10-24 04:48:45', 0, NULL, 0, NULL, 1),
(29349, 22517, '2', 'State Board ', '', '', '2020', 57.00, '', 1, '2024-10-24 04:49:36', 0, NULL, 0, NULL, 1),
(29350, 22517, '1', 'State Board ', '', '', '2018', 71.00, '', 1, '2024-10-24 04:50:22', 0, NULL, 0, NULL, 1),
(29351, 22514, '3', 'Anna university ', '', 'B.E', '2022', 82.00, '', 1, '2024-10-24 05:05:48', 0, NULL, 0, NULL, 1),
(29352, 22519, '3', 'C. Kandaswami naidu college for men ', '', 'B. Com', '2024', 6.70, '', 1, '2024-10-24 05:07:47', 0, NULL, 0, NULL, 1),
(29353, 22520, '3', 'C. Kandaswami naidu college for men', '', 'B. Com', '2024', 6.72, '', 1, '2024-10-24 05:07:49', 0, NULL, 0, NULL, 1),
(29354, 22521, '1', 'Kerala Board of Public Examinations ', '', '', '2019', 99.00, '', 1, '2024-10-24 05:07:57', 0, NULL, 0, NULL, 1),
(29355, 22521, '2', 'Kerala Board of Public Examinations ', '', '', '2021', 96.00, '', 1, '2024-10-24 05:08:22', 0, NULL, 0, NULL, 1),
(29356, 22521, '3', 'Yenepoya University ', '', 'BCA', '2024', 83.00, '', 1, '2024-10-24 05:08:41', 0, NULL, 0, NULL, 1),
(29357, 22522, '3', 'Anna University ', '', 'BE', '2022', 77.30, '', 1, '2024-10-24 05:28:52', 0, NULL, 0, NULL, 1),
(29358, 22522, '2', 'State board ', '', '', '2017', 78.00, '', 1, '2024-10-24 05:29:30', 0, NULL, 0, NULL, 1),
(29359, 22522, '1', 'State board ', '', '', '2015', 87.00, '', 1, '2024-10-24 05:29:43', 0, NULL, 0, NULL, 1),
(29360, 22518, '1', 'Gmms school ', '', '', '2016', 74.00, '', 1, '2024-10-24 05:30:43', 0, NULL, 0, NULL, 1),
(29361, 22518, '2', 'Gmms school ', '', '', '2018', 69.00, '', 1, '2024-10-24 05:31:02', 0, NULL, 0, NULL, 1),
(29362, 22518, '3', 'c.abdhul Hakeem college Ranipet ', '', 'Bsc computer science ', '2018', 74.00, '', 1, '2024-10-24 05:31:44', 0, NULL, 0, NULL, 1),
(29363, 22518, '4', 'Bharadhisan University Trichy ', '', 'Msc computer science ', '2023', 77.00, '', 1, '2024-10-24 05:32:14', 0, NULL, 0, NULL, 1),
(29364, 22523, '1', 'State board ', '', '', '2016', 54.00, '', 1, '2024-10-24 05:41:12', 0, NULL, 0, NULL, 1),
(29365, 22523, '2', 'State board ', '', '', '2018', 47.00, '', 1, '2024-10-24 05:42:41', 0, NULL, 0, NULL, 1),
(29366, 22524, '4', 'SRM University Chennai ', '', 'MBA HR and Marketing ', '2024', 84.00, '', 1, '2024-10-24 05:45:39', 0, NULL, 0, NULL, 1),
(29367, 22524, '3', 'Loyola college Chennai ', '', 'B.com corporate secretryship ', '2022', 63.00, '', 1, '2024-10-24 05:46:20', 0, NULL, 0, NULL, 1),
(29368, 22524, '2', 'Velammal bodhi campus ', '', '', '2019', 69.00, '', 1, '2024-10-24 05:46:44', 0, NULL, 0, NULL, 1),
(29369, 22524, '1', 'Velammal bodhi campus ', '', '', '2017', 88.00, '', 1, '2024-10-24 05:47:00', 0, NULL, 0, NULL, 1),
(29370, 22523, '3', 'Manonmaniam Sundaranar University', '', 'BSC computer science ', '2022', 60.00, '', 1, '2024-10-24 05:47:07', 0, NULL, 0, NULL, 1),
(29371, 22523, '4', 'Noorul Islam centre for higher education ', '', 'Master of computer application ', '2024', 50.00, '', 1, '2024-10-24 05:48:57', 0, NULL, 0, NULL, 1),
(29372, 22525, '3', 'madras university', '', 'Bca', '2022', 60.00, '', 1, '2024-10-24 06:02:42', 0, NULL, 0, NULL, 1),
(29373, 22526, '3', 'Jeppiaar Engineering college ', '', 'B. Tech - Information Technology ', '2024', 8.21, '', 1, '2024-10-24 06:12:05', 0, NULL, 0, NULL, 1),
(29374, 22526, '1', 'State Board ', '', '', '2018', 70.00, '', 1, '2024-10-24 06:12:34', 0, NULL, 0, NULL, 1),
(29375, 22526, '2', 'State Board ', '', '', '2020', 65.00, '', 1, '2024-10-24 06:12:54', 0, NULL, 0, NULL, 1),
(29376, 22527, '3', 'Anna University ', '', 'B TECH', '2024', 89.00, '', 1, '2024-10-24 06:15:48', 0, NULL, 0, NULL, 1),
(29377, 22527, '2', 'State Board ', '', '', '2020', 80.00, '', 1, '2024-10-24 06:16:59', 0, NULL, 0, NULL, 1),
(29378, 22527, '1', 'State Board ', '', '', '2018', 88.00, '', 1, '2024-10-24 06:17:16', 0, NULL, 0, NULL, 1),
(29379, 22528, '3', 'Thiruvalluvar University', '', 'B.Sc Computer Science', '2022', 70.00, '', 1, '2024-10-24 06:18:18', 0, NULL, 0, NULL, 1),
(29380, 22529, '3', 'Autonomous ', '', 'Engineering ', '2023', 7.20, '', 1, '2024-10-24 06:43:12', 0, NULL, 0, NULL, 1),
(29381, 22529, '1', 'state board', '', 'Btech IT', '2017', 86.00, '', 1, '2024-10-24 06:44:08', 0, NULL, 0, NULL, 1),
(29382, 22529, '2', 'State board', '', '', '2019', 63.00, '', 1, '2024-10-24 06:44:41', 0, NULL, 0, NULL, 1),
(29383, 22531, '3', 'St. Joseph\'s College of engineering ', '', 'BE ', '2024', 86.00, '', 1, '2024-10-24 07:24:17', 0, NULL, 0, NULL, 1),
(29384, 22530, '3', 'Madras University ', '', 'Bsc.microbiology', '2022', 75.00, '', 1, '2024-10-24 07:25:24', 0, NULL, 0, NULL, 1),
(29385, 22530, '1', 'State board', '', '', '2017', 85.00, '', 1, '2024-10-24 07:26:27', 1, '2024-10-24 07:27:56', 0, NULL, 1),
(29386, 22530, '2', 'State board', '', '', '2019', 75.00, '', 1, '2024-10-24 07:28:11', 0, NULL, 0, NULL, 1),
(29387, 22533, '3', 'Madras University ', '', 'BA', '2022', 75.00, '', 1, '2024-10-24 07:46:47', 0, NULL, 0, NULL, 1),
(29388, 22534, '3', 'ms university', '', 'bcom', '2015', 64.00, '', 1, '2024-10-24 08:18:48', 0, NULL, 0, NULL, 1),
(29389, 22535, '1', 'State board Tamilnadu ', '', '', '2018', 85.00, '', 1, '2024-10-24 09:00:28', 0, NULL, 0, NULL, 1),
(29390, 22532, '1', 'State board of Tamilnadu ', '', '', '2018', 85.00, '', 1, '2024-10-24 09:00:32', 0, NULL, 0, NULL, 1),
(29391, 22535, '2', 'State board Tamilnadu ', '', '', '2020', 69.00, '', 1, '2024-10-24 09:01:40', 0, NULL, 0, NULL, 1),
(29392, 22532, '2', 'State board of Tamilnadu', '', '', '2020', 67.00, '', 1, '2024-10-24 09:01:44', 0, NULL, 0, NULL, 1),
(29393, 22535, '3', 'Anna university ', '', 'Bachelors of engineering ', '2024', 81.00, '', 1, '2024-10-24 09:02:24', 0, NULL, 0, NULL, 1),
(29394, 22532, '3', 'Anna University ', '', 'Bachelor of engineering', '2024', 86.00, '', 1, '2024-10-24 09:02:25', 0, NULL, 0, NULL, 1),
(29395, 22537, '1', 'State Board Tamilnadu ', '', '', '2018', 60.00, '', 1, '2024-10-24 09:08:17', 0, NULL, 0, NULL, 1),
(29396, 22537, '2', 'State board Tamilnadu ', '', '', '2020', 60.00, '', 1, '2024-10-24 09:08:40', 0, NULL, 0, NULL, 1),
(29397, 22537, '3', 'Anna University ', '', 'Bachelor of engineering ', '2024', 75.00, '', 1, '2024-10-24 09:09:22', 0, NULL, 0, NULL, 1),
(29398, 22538, '3', 'Madras University ', '', 'B.com (ISM)', '2022', 81.00, '', 1, '2024-10-24 09:43:26', 0, NULL, 0, NULL, 1),
(29399, 22539, '3', 'Madras University ', '', 'B.com CS', '2023', 76.00, '', 1, '2024-10-24 09:55:54', 0, NULL, 0, NULL, 1),
(29400, 22536, '3', 'University of Madras ', '', 'B.Com (general)', '2024', 78.00, '', 1, '2024-10-24 09:59:29', 0, NULL, 0, NULL, 1),
(29401, 22540, '3', 'Madras University ', '', 'B.COM ', '2020', 100.00, '', 1, '2024-10-24 12:42:27', 0, NULL, 0, NULL, 1),
(29402, 22541, '3', 'Anna University ', '', 'BE(cSE)', '2023', 7.71, '', 1, '2024-10-24 01:00:40', 0, NULL, 0, NULL, 1),
(29403, 22542, '3', 'Bharathidasan University ', '', 'B.sc.,Computer Science ', '2022', 85.00, '', 1, '2024-10-24 01:36:35', 0, NULL, 0, NULL, 1),
(29404, 22542, '2', 'Amalraj Matriculation higher secondary school ', '', '', '2019', 59.00, '', 1, '2024-10-24 01:41:12', 0, NULL, 0, NULL, 1),
(29405, 22542, '1', 'Amalraj Matriculation higher secondary school ', '', '', '2017', 77.00, '', 1, '2024-10-24 01:41:48', 0, NULL, 0, NULL, 1),
(29406, 22545, '3', 'Periyar maniammai institute of science and technology ', '', 'B.Tech', '2024', 85.00, '', 1, '2024-10-24 08:25:25', 0, NULL, 0, NULL, 1),
(29407, 22547, '3', 'SRI ESHWAR COLLEGE OF ENGINEERING ', '', 'B.E COMPUTER AND COMMUNICATION ENGINEERING ', '2024', 8.67, '', 1, '2024-10-25 03:36:14', 0, NULL, 0, NULL, 1),
(29408, 22549, '3', 'Pondicherry University', '', 'B.tech', '2024', 75.00, '', 1, '2024-10-25 04:25:12', 0, NULL, 0, NULL, 1),
(29409, 22551, '3', 'University ', '', 'Bachelor of Computer Application', '2024', 76.00, '', 1, '2024-10-25 04:28:50', 0, NULL, 0, NULL, 1),
(29410, 22551, '2', 'Board', '', '', '2021', 88.00, '', 1, '2024-10-25 04:29:15', 0, NULL, 0, NULL, 1),
(29411, 22550, '3', 'University ', '', 'BCA', '2024', 72.00, '', 1, '2024-10-25 04:29:31', 0, NULL, 0, NULL, 1),
(29412, 22551, '1', 'Board', '', '', '2019', 84.00, '', 1, '2024-10-25 04:29:41', 0, NULL, 0, NULL, 1),
(29413, 22550, '2', 'Board', '', '', '2021', 79.00, '', 1, '2024-10-25 04:29:49', 0, NULL, 0, NULL, 1),
(29414, 22550, '1', 'Board', '', '', '2019', 71.00, '', 1, '2024-10-25 04:30:15', 0, NULL, 0, NULL, 1),
(29415, 22552, '3', 'SRM University ramapuram ', '', 'B.tech', '2024', 89.00, '', 1, '2024-10-25 04:47:34', 0, NULL, 0, NULL, 1),
(29416, 22558, '3', 'Pondicherry University ', '', 'B.Tech CSE', '2022', 75.00, '', 1, '2024-10-25 05:11:32', 0, NULL, 0, NULL, 1),
(29417, 22555, '3', 'bharathidasan University', '', 'BCA', '2023', 70.00, '', 1, '2024-10-25 05:12:05', 0, NULL, 0, NULL, 1),
(29418, 22558, '1', 'SSLC', '', '', '2016', 90.00, '', 1, '2024-10-25 05:12:35', 0, NULL, 0, NULL, 1),
(29419, 22557, '3', 'anna university', '', 'b.tech chemical engineering', '2022', 81.00, '', 1, '2024-10-25 05:13:57', 0, NULL, 0, NULL, 1),
(29420, 22554, '3', 'Bharathidhasan university', '', '', '2023', 71.00, '', 1, '2024-10-25 05:15:08', 0, NULL, 0, NULL, 1),
(29421, 22560, '1', 'State board ', '', '', '2019', 84.60, '', 1, '2024-10-25 05:19:01', 0, NULL, 0, NULL, 1),
(29422, 22560, '2', 'State board ', '', '', '2021', 91.50, '', 1, '2024-10-25 05:19:28', 0, NULL, 0, NULL, 1),
(29423, 22560, '3', 'Bharathiar University ', '', 'B.com', '2024', 71.00, '', 1, '2024-10-25 05:20:00', 0, NULL, 0, NULL, 1),
(29424, 22561, '3', 'Dr.Mgr.University', '', 'B tech CFIS', '2024', 7.30, '', 1, '2024-10-25 05:24:37', 0, NULL, 0, NULL, 1),
(29425, 22562, '3', 'Dr.MGR university ', '', 'Bsc(visualcommunication)', '2023', 7.25, '', 1, '2024-10-25 05:25:58', 0, NULL, 0, NULL, 1),
(29426, 22559, '4', 'University ', '', 'MSc (computer science )', '2023', 75.00, '', 1, '2024-10-25 05:26:49', 0, NULL, 0, NULL, 1),
(29427, 22563, '3', 'Scsvmv', '', 'BE Mechatronics ', '2020', 73.90, '', 1, '2024-10-25 05:42:59', 0, NULL, 0, NULL, 1),
(29428, 22565, '1', 'State Board ', '', '', '2017', 93.00, '', 1, '2024-10-25 05:46:08', 0, NULL, 0, NULL, 1),
(29429, 22565, '2', 'State Board ', '', '', '2019', 83.00, '', 1, '2024-10-25 05:46:45', 0, NULL, 0, NULL, 1),
(29430, 22565, '3', 'Ann University ', '', 'BE ', '2023', 76.00, '', 1, '2024-10-25 05:47:12', 0, NULL, 0, NULL, 1),
(29431, 22564, '3', 'Anna university', '', 'BE', '2023', 8.53, '', 1, '2024-10-25 05:49:01', 0, NULL, 0, NULL, 1),
(29432, 22567, '3', 'Anna university', '', 'BE', '2021', 73.00, '', 1, '2024-10-25 06:05:49', 0, NULL, 0, NULL, 1),
(29433, 22543, '3', 'Thiruvalluvar University ', '', 'Ba, English ', '2024', 60.00, '', 1, '2024-10-25 06:17:50', 0, NULL, 0, NULL, 1),
(29434, 22569, '4', 'Bharathidasan ', '', 'Msc', '2024', 75.00, '', 1, '2024-10-25 06:18:19', 0, NULL, 0, NULL, 1),
(29435, 22572, '3', 'Anna University', '', 'Bachelors of Engineering ', '2024', 82.00, '', 1, '2024-10-25 06:27:55', 0, NULL, 0, NULL, 1),
(29436, 22556, '3', 'rmk engineering college', '', 'b.e', '2025', 71.00, '', 1, '2024-10-25 06:29:31', 0, NULL, 0, NULL, 1),
(29437, 22574, '3', 'NBKRIST', '', 'BTech', '2023', 65.00, '', 1, '2024-10-25 06:29:57', 0, NULL, 0, NULL, 1),
(29438, 22570, '2', 'Government school', '', '', '2016', 46.00, '', 1, '2024-10-25 06:31:10', 0, NULL, 0, NULL, 1),
(29439, 22574, '2', 'Sri Gayatri Junior College', '', '', '2019', 7.53, '', 1, '2024-10-25 06:31:15', 0, NULL, 0, NULL, 1),
(29440, 22574, '1', 'Ravindra Bharathi school ', '', '', '2017', 8.00, '', 1, '2024-10-25 06:31:40', 0, NULL, 0, NULL, 1),
(29441, 22571, '3', 'Anna university ', '', 'B E computer science ', '2024', 81.40, '', 1, '2024-10-25 06:33:49', 0, NULL, 0, NULL, 1),
(29442, 22571, '2', 'State board', '', '', '2024', 72.67, '', 1, '2024-10-25 06:35:26', 0, NULL, 0, NULL, 1),
(29443, 22571, '1', 'State board', '', '', '2024', 92.00, '', 1, '2024-10-25 06:35:40', 0, NULL, 0, NULL, 1),
(29444, 22573, '3', 'Madras University ', '', 'B.com', '2024', 6.10, '', 1, '2024-10-25 06:38:36', 0, NULL, 0, NULL, 1),
(29445, 22573, '1', 'St.claret', '', '', '2019', 63.00, '', 1, '2024-10-25 06:42:14', 0, NULL, 0, NULL, 1),
(29446, 22573, '2', 'St.claret', '', '', '2021', 75.00, '', 1, '2024-10-25 06:43:40', 0, NULL, 0, NULL, 1),
(29447, 22576, '3', 'Anna University ', '', 'BE', '2021', 80.00, '', 1, '2024-10-25 06:45:55', 0, NULL, 0, NULL, 1),
(29448, 22575, '4', 'Bharathidharasan', '', 'M. Sc', '2024', 75.00, '', 1, '2024-10-25 06:46:40', 0, NULL, 0, NULL, 1),
(29449, 22575, '4', 'Bharathidasan', '', 'Msc', '2024', 75.00, '', 1, '2024-10-25 06:47:28', 0, NULL, 0, NULL, 1),
(29450, 22568, '3', 'Anna university ', '', 'B.E', '2024', 7.97, '', 1, '2024-10-25 06:52:18', 0, NULL, 0, NULL, 1),
(29451, 22579, '1', 'st. claret ', '', '', '2019', 63.00, '', 1, '2024-10-25 08:42:08', 0, NULL, 0, NULL, 1),
(29452, 22579, '2', 'st. claret', '', '', '2021', 75.00, '', 1, '2024-10-25 08:43:26', 0, NULL, 0, NULL, 1),
(29453, 22579, '3', 'madras university', '', 'b.com', '2024', 62.00, '', 1, '2024-10-25 08:44:19', 0, NULL, 0, NULL, 1),
(29454, 22580, '3', 'Periyar Maniammai Institute of Science and Technology ', '', 'Bachelor of Computer Science and Applications ', '2024', 8.43, '', 1, '2024-10-25 08:46:05', 1, '2024-10-25 08:47:04', 0, NULL, 1),
(29455, 22580, '2', 'Maxwell Matriculation higher secondary school ', '', '', '2021', 80.84, '', 1, '2024-10-25 08:47:26', 0, NULL, 0, NULL, 1),
(29456, 22581, '3', 'Anna University ', '', 'B.E computer science and engineering ', '2022', 74.00, '', 1, '2024-10-25 08:47:50', 0, NULL, 0, NULL, 1),
(29457, 22580, '1', 'Maxwell Matriculation higher secondary school ', '', '', '2019', 72.60, '', 1, '2024-10-25 08:48:20', 0, NULL, 0, NULL, 1),
(29458, 22581, '2', 'State board ', '', '', '2018', 66.00, '', 1, '2024-10-25 08:48:51', 0, NULL, 0, NULL, 1),
(29459, 22583, '3', 'Agni college of technology - Anna university', '', 'BE', '2022', 75.00, '', 1, '2024-10-25 08:48:59', 0, NULL, 0, NULL, 1),
(29460, 22582, '3', 'Jawaheral Nehru University of Anatapur', '', 'Btech', '2024', 69.00, '', 1, '2024-10-25 08:49:04', 0, NULL, 0, NULL, 1),
(29461, 22583, '2', 'State board of tamilnadu', '', '', '2018', 70.00, '', 1, '2024-10-25 08:49:55', 0, NULL, 0, NULL, 1),
(29462, 22581, '1', 'State board ', '', '', '2016', 76.00, '', 1, '2024-10-25 08:50:02', 0, NULL, 0, NULL, 1),
(29463, 22583, '1', 'State board of tamilnadu', '', '', '2016', 84.00, '', 1, '2024-10-25 08:50:23', 0, NULL, 0, NULL, 1),
(29464, 22582, '2', 'Board of Intermediate Education Andhra Pradesh.', '', '', '2024', 75.00, '', 1, '2024-10-25 08:51:11', 0, NULL, 0, NULL, 1),
(29465, 22582, '1', 'Board of Secondary Education Andhra Pradesh ', '', '', '2024', 90.00, '', 1, '2024-10-25 08:52:00', 0, NULL, 0, NULL, 1),
(29466, 22584, '3', 'anna university', '', 'engineering', '2023', 76.00, '', 1, '2024-10-25 09:25:53', 0, NULL, 0, NULL, 1),
(29467, 22585, '4', 'University', '', 'Msc', '2023', 89.00, '', 1, '2024-10-25 09:46:59', 0, NULL, 0, NULL, 1),
(29468, 22586, '4', 'Periyar university ', '', 'Msc cs', '2023', 80.00, '', 1, '2024-10-25 10:39:26', 0, NULL, 0, NULL, 1),
(29469, 22587, '4', 'dr mgr educational and research institute ', '', 'msc', '2024', 80.00, '', 1, '2024-10-25 11:36:25', 0, NULL, 0, NULL, 1),
(29470, 22589, '3', 'the american college', '', 'Bsc.maths', '2021', 64.00, '', 1, '2024-10-25 12:52:51', 0, NULL, 0, NULL, 1),
(29471, 22591, '3', 'Madras University ', '', 'Bcom (accounting and finance)', '2024', 70.00, '', 1, '2024-10-25 03:50:48', 0, NULL, 0, NULL, 1),
(29472, 22577, '4', 'University of Madras - Guru Nanak College ', '', 'MBA ', '2024', 70.00, '', 1, '2024-10-25 05:37:11', 0, NULL, 0, NULL, 1),
(29473, 22577, '3', 'University of Madras - SIET Women\'s College ', '', 'BBA ', '2022', 78.00, '', 1, '2024-10-25 05:37:48', 0, NULL, 0, NULL, 1),
(29474, 22577, '2', 'State Board ', '', '', '2019', 68.00, '', 1, '2024-10-25 05:38:15', 0, NULL, 0, NULL, 1),
(29475, 22577, '1', 'State Board ', '', '', '2017', 80.00, '', 1, '2024-10-25 05:38:31', 0, NULL, 0, NULL, 1),
(29476, 22593, '3', 'Saveetha Engineering College ', '', 'BE', '2023', 80.00, '', 1, '2024-10-26 04:13:06', 0, NULL, 0, NULL, 1),
(29477, 22594, '1', 'STATE Board ', '', 'B. E Mechanical Engineering ', '2013', 91.00, '', 1, '2024-10-26 04:34:34', 0, NULL, 0, NULL, 1),
(29478, 22594, '2', 'STATE BOARD ', '', '', '2015', 93.75, '', 1, '2024-10-26 04:35:08', 0, NULL, 0, NULL, 1),
(29479, 22594, '3', 'Anna University', '', 'B.e Mechanical Engineering', '2019', 72.00, '', 1, '2024-10-26 04:35:51', 0, NULL, 0, NULL, 1),
(29480, 22595, '3', 'University of Madras ', '', 'B.sc mathematics ', '2022', 78.00, '', 1, '2024-10-26 04:46:03', 0, NULL, 0, NULL, 1),
(29481, 22596, '1', 'State board ', '', '', '2016', 87.20, '', 1, '2024-10-26 04:46:09', 0, NULL, 0, NULL, 1),
(29482, 22596, '2', 'State board ', '', '', '2018', 72.50, '', 1, '2024-10-26 04:46:30', 0, NULL, 0, NULL, 1),
(29483, 22596, '3', 'Anna University ', '', 'BE', '2022', 7.36, '', 1, '2024-10-26 04:47:04', 0, NULL, 0, NULL, 1),
(29484, 22595, '4', 'University of Madras ', '', 'M .sc mathematics ', '2024', 58.00, '', 1, '2024-10-26 04:47:08', 0, NULL, 0, NULL, 1),
(29485, 22595, '1', 'State board ', '', '', '2017', 92.00, '', 1, '2024-10-26 04:48:16', 0, NULL, 0, NULL, 1),
(29486, 22595, '2', 'State board ', '', '', '2019', 74.00, '', 1, '2024-10-26 04:49:02', 0, NULL, 0, NULL, 1),
(29487, 22599, '3', 'Anna university ', '', 'B.E & computer science and engineering ', '2024', 8.05, '', 1, '2024-10-26 05:22:52', 0, NULL, 0, NULL, 1),
(29488, 22599, '5', 'State board ', '', 'Diploma ', '2024', 80.00, '', 1, '2024-10-26 05:25:12', 0, NULL, 0, NULL, 1),
(29489, 22599, '1', 'State board ', '', '', '2018', 84.00, '', 1, '2024-10-26 05:26:06', 0, NULL, 0, NULL, 1),
(29490, 22553, '4', 'Anna university ', '', 'MBA', '2024', 77.50, '', 1, '2024-10-26 05:29:29', 0, NULL, 0, NULL, 1),
(29491, 22600, '3', 'Anna University ', '', 'BE', '2021', 74.00, '', 1, '2024-10-26 05:38:20', 0, NULL, 0, NULL, 1),
(29492, 22601, '1', 'Madras University ', '', '', '2024', 75.00, '', 1, '2024-10-26 05:43:10', 0, NULL, 0, NULL, 1),
(29493, 22602, '4', 'Anna University ', '', 'MBA OPERATION AND MARKETING ', '2024', 6.65, '', 1, '2024-10-26 06:10:03', 0, NULL, 0, NULL, 1),
(29494, 22603, '3', 'sri ramakrina institute of tecnolog', '', 'be', '2022', 74.00, '', 104, '2024-10-26 11:58:52', 0, NULL, 0, NULL, 1),
(29495, 22604, '3', 'Alagappa Chettiar Govt College of Engineering and Technology ', '', 'B.E', '2023', 7.80, '', 1, '2024-10-26 06:41:37', 0, NULL, 0, NULL, 1),
(29496, 22604, '5', 'Anna University ', '', 'Dme', '2018', 78.00, '', 1, '2024-10-26 06:42:30', 0, NULL, 0, NULL, 1),
(29497, 22604, '1', 'State Board ', '', '', '2015', 89.20, '', 1, '2024-10-26 06:43:47', 0, NULL, 0, NULL, 1),
(29498, 22605, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2024', 82.00, '', 1, '2024-10-26 09:48:29', 0, NULL, 0, NULL, 1),
(29499, 22605, '2', 'State Board', '', '', '2020', 80.00, '', 1, '2024-10-26 09:48:49', 0, NULL, 0, NULL, 1),
(29500, 22605, '1', 'State Board', '', '', '2018', 94.00, '', 1, '2024-10-26 09:49:08', 0, NULL, 0, NULL, 1),
(29501, 22606, '4', 'Bharathidasan university ', '', 'M.B.a', '2013', 76.00, '', 1, '2024-10-26 12:57:41', 0, NULL, 0, NULL, 1),
(29502, 22607, '3', 'Sri Eshwar College Of Engineering ', '', 'B.E-ECE', '2025', 7.20, '', 1, '2024-10-26 01:33:31', 0, NULL, 0, NULL, 1),
(29503, 22607, '2', 'Sri Lathangi Vidhya Mandir Matric Hr.Sec.School', '', '', '2021', 85.10, '', 1, '2024-10-26 01:34:48', 0, NULL, 0, NULL, 1),
(29504, 22607, '1', 'Shaanthi Matric Hr.Sec.School', '', '', '2019', 84.20, '', 1, '2024-10-26 01:35:46', 0, NULL, 0, NULL, 1),
(29505, 22611, '3', 'SRM University ', '', 'B.Tech', '2018', 5.95, '', 1, '2024-10-28 04:57:53', 0, NULL, 0, NULL, 1),
(29506, 22613, '3', 'Periyar', '', 'Bsc', '2024', 85.00, '', 1, '2024-10-28 05:21:09', 0, NULL, 0, NULL, 1),
(29507, 22614, '3', 'Periyar Maniyammai University ', '', 'Bsc chemistry', '2024', 8.30, '', 1, '2024-10-28 05:27:35', 0, NULL, 0, NULL, 1),
(29508, 22616, '3', 'madras university', '', 'bsc computer science', '2024', 60.00, '', 1, '2024-10-28 06:04:43', 0, NULL, 0, NULL, 1),
(29509, 22612, '3', 'JCT college of engineering and technolog', '', 'BE', '2024', 75.60, '', 104, '2024-10-28 11:38:52', 0, NULL, 0, NULL, 1),
(29510, 22617, '3', 'madras university', '', 'bsc computer science', '2024', 75.00, '', 1, '2024-10-28 06:13:21', 0, NULL, 0, NULL, 1),
(29511, 22615, '3', 'University ', '', 'B.E', '2019', 6.95, '', 1, '2024-10-28 06:20:10', 0, NULL, 0, NULL, 1),
(29512, 22619, '3', 'srm', '', 'btech-cse', '2024', 80.00, '', 1, '2024-10-28 06:32:55', 0, NULL, 0, NULL, 1),
(29513, 22620, '3', 'Karpagam college of engineering ', '', 'BE', '2023', 7.50, '', 1, '2024-10-28 07:06:49', 0, NULL, 0, NULL, 1),
(29514, 21913, '3', 'Madras university', '', 'Bachelor of business administartion', '2023', 75.00, '', 1, '2024-10-28 07:15:39', 0, NULL, 0, NULL, 1),
(29515, 22621, '5', 'Anna University Chennai ', '', 'DME', '2021', 73.00, '', 1, '2024-10-28 07:34:28', 0, NULL, 0, NULL, 1),
(29516, 22608, '3', 'University of Madras ', '', 'B.Com CS', '2022', 7.90, '', 1, '2024-10-28 07:53:04', 0, NULL, 0, NULL, 1),
(29517, 22608, '2', 'Board of tamilnadu', '', '', '2019', 67.00, '', 1, '2024-10-28 07:53:32', 0, NULL, 0, NULL, 1),
(29518, 22608, '1', 'Board of tamilnadu ', '', '', '2015', 86.00, '', 1, '2024-10-28 07:53:53', 0, NULL, 0, NULL, 1),
(29519, 22622, '4', 'Bharathidasan ', '', 'Msc Computer Science ', '2024', 7.60, '', 1, '2024-10-28 09:43:27', 0, NULL, 0, NULL, 1),
(29520, 22623, '3', 'Anits ', '', 'B tech ', '2024', 75.00, '', 1, '2024-10-28 11:23:03', 0, NULL, 0, NULL, 1),
(29521, 22625, '3', 'Anna university ', '', 'B.E', '2024', 7.54, '', 1, '2024-10-28 11:42:08', 0, NULL, 0, NULL, 1),
(29522, 22629, '3', 'Loyola icam college of engineering and technology ', '', 'BE', '2024', 7.80, '', 1, '2024-10-29 05:15:56', 0, NULL, 0, NULL, 1),
(29523, 22628, '3', 'State board ', '', 'Bcom', '2023', 78.00, '', 1, '2024-10-29 05:20:57', 0, NULL, 0, NULL, 1),
(29524, 22630, '3', 'Board ', '', 'B.COM', '2023', 78.00, '', 1, '2024-10-29 05:30:30', 0, NULL, 0, NULL, 1),
(29525, 22631, '3', 'Deemed University ', '', 'B.com ', '2023', 75.00, '', 1, '2024-10-29 05:33:21', 0, NULL, 0, NULL, 1),
(29526, 22633, '3', 'University of Madras ', '', 'Bba', '2023', 79.00, '', 1, '2024-10-29 05:40:33', 0, NULL, 0, NULL, 1),
(29527, 17576, '5', 'Sri Nallalaghu Nadar Polytechnic College', '', 'Diploma in Electrical and Electronics Engineering', '2021', 78.00, '', 1, '2024-10-29 06:17:10', 0, NULL, 0, NULL, 1),
(29528, 22626, '3', 'Anna University ', '', 'B.E', '2024', 75.00, '', 1, '2024-10-29 06:20:44', 0, NULL, 0, NULL, 1),
(29529, 22638, '5', 'nttf', '', 'Computers ', '2018', 61.00, '', 1, '2024-10-29 06:28:50', 0, NULL, 0, NULL, 1),
(29530, 22635, '3', 'Hindustan university', '', 'BBA', '2024', 75.00, '', 1, '2024-10-29 06:30:38', 0, NULL, 0, NULL, 1),
(29531, 22632, '4', 'madras university', '', 'mba hr', '2023', 85.00, '', 1, '2024-10-29 06:30:45', 0, NULL, 0, NULL, 1),
(29532, 22634, '3', 'Deemed ', '', 'B tech civil', '2024', 8.92, '', 1, '2024-10-29 06:33:26', 0, NULL, 0, NULL, 1),
(29533, 22636, '3', 'Bharath institute and university ', '', 'B.com general', '2024', 7.40, '', 1, '2024-10-29 06:38:00', 0, NULL, 0, NULL, 1),
(29534, 22639, '3', 'Anna University ', '', 'B.Tech', '2024', 85.00, '', 1, '2024-10-29 06:39:51', 0, NULL, 0, NULL, 1),
(29535, 22637, '3', 'University of madres', '', 'B.com ca', '2024', 69.70, '', 1, '2024-10-29 06:42:44', 0, NULL, 0, NULL, 1),
(29536, 22640, '3', 'Madras University ', '', 'BBA', '2021', 70.00, '', 1, '2024-10-29 09:38:29', 0, NULL, 0, NULL, 1),
(29537, 22642, '3', 'Anna University ', '', 'BE-Mechatronics Engineering ', '2023', 80.00, '', 1, '2024-10-29 10:14:34', 0, NULL, 0, NULL, 1),
(29538, 22643, '4', 'Vel Tech University ', '', 'MSc Data Analytics ', '2024', 7.80, '', 1, '2024-10-29 10:42:20', 0, NULL, 0, NULL, 1),
(29539, 22644, '3', 'University of Madras ', '', 'Bcom C.S', '2022', 85.00, '', 1, '2024-10-30 05:16:37', 0, NULL, 0, NULL, 1),
(29540, 22646, '3', 'Madras University ', '', 'BCA', '2022', 75.00, '', 1, '2024-11-01 06:01:44', 0, NULL, 0, NULL, 1),
(29541, 22647, '4', 'University of Madras ', '', 'M.Sc, Statistics', '2024', 71.00, '', 1, '2024-11-01 07:08:42', 0, NULL, 0, NULL, 1),
(29542, 22647, '3', 'Thiruvalluvar university ', '', 'B.Sc.Statistics', '2022', 84.00, '', 1, '2024-11-01 07:09:13', 0, NULL, 0, NULL, 1),
(29543, 22647, '2', 'State board ', '', '', '2019', 72.00, '', 1, '2024-11-01 07:09:35', 0, NULL, 0, NULL, 1),
(29544, 22647, '1', 'State board ', '', '', '2017', 77.00, '', 1, '2024-11-01 07:09:58', 0, NULL, 0, NULL, 1),
(29545, 22648, '4', 'Bharathidasan University ', '', 'MBA', '2024', 51.00, '', 1, '2024-11-01 08:13:35', 0, NULL, 0, NULL, 1),
(29546, 22649, '3', 'Women\'s Christian college ', '', 'Viscom', '2024', 68.00, '', 1, '2024-11-01 09:53:22', 0, NULL, 0, NULL, 1),
(29547, 22650, '4', 'Rajalakshmi Engineering college ', '', 'MBA', '2024', 8.50, '', 1, '2024-11-01 10:22:35', 0, NULL, 0, NULL, 1),
(29548, 22650, '3', 'Scsvmv University ', '', 'Bcom', '2022', 9.33, '', 1, '2024-11-01 10:22:57', 0, NULL, 0, NULL, 1),
(29549, 22650, '2', 'Bharathidhasanar mat hr sec school ', '', '', '2019', 80.60, '', 1, '2024-11-01 10:23:33', 0, NULL, 0, NULL, 1),
(29550, 22651, '4', 'Bharathidasan university', '', '', '2021', 68.00, '', 1, '2024-11-01 04:14:20', 0, NULL, 0, NULL, 1),
(29551, 22651, '4', 'Bharadidasan university', '', 'MBA', '2021', 68.00, '', 1, '2024-11-01 04:15:30', 0, NULL, 0, NULL, 1),
(29552, 22652, '3', 'srm insitute of science and technology ', '', 'bsc computer science ', '2022', 85.00, '', 1, '2024-11-02 05:37:30', 0, NULL, 0, NULL, 1),
(29553, 22654, '3', 'Bharadhidhasan University ', '', 'B.sc.physics', '2023', 72.00, '', 1, '2024-11-02 06:31:20', 0, NULL, 0, NULL, 1),
(29554, 22653, '4', 'Bharathita University ', '', 'MBA', '2024', 80.00, '', 1, '2024-11-02 06:32:55', 0, NULL, 0, NULL, 1),
(29555, 22655, '3', 'Madras University ', '', 'B.com corporate secretaryship', '2024', 70.00, '', 1, '2024-11-02 07:26:40', 0, NULL, 0, NULL, 1),
(29556, 22657, '4', 'Bharathiar University ', '', 'MBA ', '2024', 69.00, '', 1, '2024-11-03 12:34:40', 0, NULL, 0, NULL, 1),
(29557, 22648, '3', 'Bharathidasan University ', '', 'BBA', '2022', 69.40, '', 1, '2024-11-04 04:04:36', 0, NULL, 0, NULL, 1),
(29558, 22648, '2', 'Government Higher secondary school ', '', '', '2019', 64.00, '', 1, '2024-11-04 04:06:03', 0, NULL, 0, NULL, 1),
(29559, 22658, '4', 'Jawaharlal Nehru technological University ', '', 'mCA', '2023', 82.00, '', 1, '2024-11-04 04:06:32', 0, NULL, 0, NULL, 1),
(29560, 22648, '1', 'Government Higher secondary school ', '', '', '2017', 76.80, '', 1, '2024-11-04 04:06:41', 0, NULL, 0, NULL, 1),
(29561, 22660, '3', ' Bharathi dhasan University', '', 'B. Com', '2024', 67.00, '', 1, '2024-11-04 04:56:19', 0, NULL, 0, NULL, 1),
(29562, 0, '3', 'S V university ', '', 'Bsc Computer science ', '2024', 8.10, '', 1, '2024-11-04 04:57:54', 1, '2024-11-06 05:42:06', 0, NULL, 0),
(29563, 22659, '3', 'Madras University ', '', 'B Sc chemistry ', '2024', 50.70, '', 1, '2024-11-04 05:01:14', 0, NULL, 0, NULL, 1),
(29564, 22661, '3', 'madras university', '', 'ba ', '2024', 65.00, '', 1, '2024-11-04 05:02:11', 0, NULL, 0, NULL, 1),
(29565, 22662, '3', 'Anna University ', '', 'BE', '2017', 66.00, '', 1, '2024-11-04 05:03:29', 0, NULL, 0, NULL, 1),
(29566, 22663, '3', 'Bharathidasan university', '', 'B. Com general', '2024', 61.00, '', 1, '2024-11-04 05:09:49', 0, NULL, 0, NULL, 1),
(29567, 22667, '3', 'University of Madras ', '', 'B.com', '2024', 71.00, '', 1, '2024-11-04 05:39:43', 0, NULL, 0, NULL, 1),
(29568, 22669, '3', 'Alagappa university ', '', 'B Voc Software Development ', '2023', 80.00, '', 1, '2024-11-04 05:40:21', 0, NULL, 0, NULL, 1),
(29569, 22664, '3', 'Madras University ', '', 'B.Com', '2024', 64.00, '', 1, '2024-11-04 05:46:52', 0, NULL, 0, NULL, 1),
(29570, 22668, '3', 'University of Madras ', '', 'B.com', '2024', 65.00, '', 1, '2024-11-04 05:50:24', 0, NULL, 0, NULL, 1),
(29571, 22670, '3', 'A.m.jain college ', '', 'BBA ', '2024', 78.00, '', 1, '2024-11-04 05:50:49', 0, NULL, 0, NULL, 1),
(29572, 22671, '4', 'SRM Institute Of Science And Technology ', '', 'MCA', '2024', 94.90, '', 1, '2024-11-04 06:12:19', 0, NULL, 0, NULL, 1),
(29573, 22671, '3', 'Sathyabama Institute Of Science And Technology ', '', 'BSC Computer Science ', '2021', 79.30, '', 1, '2024-11-04 06:12:59', 0, NULL, 0, NULL, 1),
(29574, 22665, '3', 'madrasUniversit', '', 'bcom', '2024', 61.00, '', 104, '2024-11-04 12:00:12', 0, NULL, 0, NULL, 1),
(29575, 22666, '5', 'Hindustan institute engineering technology ', '', 'Diploma EEE', '2021', 86.00, '', 1, '2024-11-04 06:31:04', 0, NULL, 0, NULL, 1),
(29576, 22672, '3', 'Presidency collage', '', 'B.SC PHYSICS', '2024', 60.00, '', 1, '2024-11-04 06:36:06', 0, NULL, 0, NULL, 1),
(29577, 22674, '4', 'Dr. M. g. r university', '', 'MBA -HRM', '2025', 72.00, '', 1, '2024-11-04 06:57:04', 0, NULL, 0, NULL, 1),
(29578, 22673, '3', 'Madras Unversity ', '', 'BA English ', '2023', 70.00, '', 1, '2024-11-04 07:16:20', 0, NULL, 0, NULL, 1),
(29579, 22675, '3', 'University ', '', 'Ba english ', '2020', 75.00, '', 1, '2024-11-04 07:26:51', 0, NULL, 0, NULL, 1),
(29580, 22676, '3', 'Bharathidasan university Trichy ', '', 'BBA Aviation management ', '2024', 85.00, '', 1, '2024-11-04 07:51:28', 0, NULL, 0, NULL, 1),
(29581, 22680, '3', 'Alpha arts and science college ', '', 'B.com(gen)', '2020', 60.00, '', 1, '2024-11-04 09:18:17', 0, NULL, 0, NULL, 1),
(29582, 22677, '3', 'Madras University ', '', 'B.com ca', '2024', 60.00, '', 1, '2024-11-04 09:18:22', 0, NULL, 0, NULL, 1),
(29583, 22678, '3', 'Madras university ', '', 'B.com general ', '2024', 70.00, '', 1, '2024-11-04 09:19:08', 0, NULL, 0, NULL, 1),
(29584, 22679, '3', 'Madras university ', '', 'B Com genral', '2024', 73.00, '', 1, '2024-11-04 09:29:10', 0, NULL, 0, NULL, 1),
(29585, 22681, '3', 'S V university ', '', 'Bsc Computer science ', '2024', 8.00, '', 1, '2024-11-04 09:45:09', 0, NULL, 0, NULL, 1),
(29586, 22682, '3', 'Madras University ', '', 'B.Com., Corporate Secretaryship ', '2022', 67.00, '', 1, '2024-11-04 04:58:13', 0, NULL, 0, NULL, 1),
(29587, 22683, '3', 'Anna University ', '', 'Mechanical ', '2019', 6.73, '', 1, '2024-11-05 04:11:36', 0, NULL, 0, NULL, 1),
(29588, 22685, '3', 'University of Madras ', '', 'BCA', '2023', 76.00, '', 1, '2024-11-05 04:16:33', 0, NULL, 0, NULL, 1),
(29589, 22686, '3', 'Anna University ', '', 'Bachelor of engineering ', '2024', 8.80, '', 1, '2024-11-05 04:31:47', 0, NULL, 0, NULL, 1),
(29590, 22684, '4', 'Bharbharathiar university', '', 'M.Sc zoology wildlife biology ', '2023', 78.00, '', 1, '2024-11-05 04:43:33', 0, NULL, 0, NULL, 1),
(29591, 22684, '3', 'bharathiar university', '', 'B.Sc zoology wildlife biology ', '2021', 65.00, '', 1, '2024-11-05 04:46:05', 0, NULL, 0, NULL, 1),
(29592, 22688, '3', 'University of Madras ', '', 'Bachelor of commerce ', '2024', 80.00, '', 1, '2024-11-05 05:02:54', 0, NULL, 0, NULL, 1),
(29593, 22687, '3', 'University of Madras ', '', 'B.com', '2024', 75.00, '', 1, '2024-11-05 05:08:51', 0, NULL, 0, NULL, 1),
(29594, 22689, '3', 'University of Madras ', '', 'B.com', '2024', 6.80, '', 1, '2024-11-05 05:15:29', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29595, 22690, '3', 'Roever engineering college ', '', 'BTech Chemical Engineering ', '2023', 8.00, '', 1, '2024-11-05 05:31:42', 0, NULL, 0, NULL, 1),
(29596, 22690, '2', 'Mount park higher secondary school ', '', '', '2019', 60.00, '', 1, '2024-11-05 05:32:12', 0, NULL, 0, NULL, 1),
(29597, 22691, '3', 'Madras University ', '', 'B.com ., Corporate Secretaryship ', '2022', 67.00, '', 1, '2024-11-05 05:32:32', 0, NULL, 0, NULL, 1),
(29598, 22690, '1', 'Ccsm matriculation school ', '', '', '2017', 85.00, '', 1, '2024-11-05 05:32:57', 0, NULL, 0, NULL, 1),
(29599, 22692, '3', 'Sathyabama institute of science and technology ', '', 'B.E ', '2023', 76.30, '', 1, '2024-11-05 05:34:21', 0, NULL, 0, NULL, 1),
(29600, 22695, '5', 'Annamalai university ', '', 'Civil engineering ', '2017', 67.00, '', 1, '2024-11-05 05:37:20', 0, NULL, 0, NULL, 1),
(29601, 22695, '3', 'Anna University', '', 'Bachelor of Civil engineering ', '2020', 72.00, '', 1, '2024-11-05 05:37:56', 0, NULL, 0, NULL, 1),
(29602, 22694, '3', 'Anna University', '', 'B.E', '2023', 80.00, '', 1, '2024-11-05 05:38:19', 0, NULL, 0, NULL, 1),
(29603, 22696, '3', 'Anna University ', '', 'b.tech (information technology)', '2024', 7.50, '', 1, '2024-11-05 05:47:29', 0, NULL, 0, NULL, 1),
(29604, 22693, '3', 'Madras university ', '', 'B.com', '2024', 50.00, '', 1, '2024-11-05 05:54:48', 0, NULL, 0, NULL, 1),
(29605, 22702, '3', 'University ', '', 'BCA ', '2024', 82.00, '', 1, '2024-11-05 06:08:55', 0, NULL, 0, NULL, 1),
(29606, 22700, '3', 'University of madras ', '', 'B com', '2024', 78.00, '', 1, '2024-11-05 06:09:59', 0, NULL, 0, NULL, 1),
(29607, 22701, '3', 'University ', '', 'BCA', '2024', 78.00, '', 1, '2024-11-05 06:10:18', 0, NULL, 0, NULL, 1),
(29608, 22702, '2', 'Board', '', '', '2021', 71.00, '', 1, '2024-11-05 06:10:22', 0, NULL, 0, NULL, 1),
(29609, 22698, '3', 'University of madras', '', 'Bcom', '2024', 80.00, '', 1, '2024-11-05 06:10:59', 0, NULL, 0, NULL, 1),
(29610, 22701, '2', 'Board ', '', '', '2021', 81.00, '', 1, '2024-11-05 06:12:43', 0, NULL, 0, NULL, 1),
(29611, 22701, '1', 'Board ', '', '', '2019', 69.00, '', 1, '2024-11-05 06:13:39', 0, NULL, 0, NULL, 1),
(29612, 22702, '1', 'Board', '', '', '2019', 71.00, '', 1, '2024-11-05 06:13:41', 0, NULL, 0, NULL, 1),
(29613, 22699, '3', 'Madras University ', '', 'B.com ', '2024', 61.00, '', 1, '2024-11-05 06:15:57', 0, NULL, 0, NULL, 1),
(29614, 22704, '4', 'Takshashila university', '', 'Artificial inteligence and data science', '2024', 87.00, '', 1, '2024-11-05 06:30:05', 0, NULL, 0, NULL, 1),
(29615, 22704, '3', 'Thiruvalluvar university', '', 'Physics', '2024', 77.00, '', 1, '2024-11-05 06:30:28', 0, NULL, 0, NULL, 1),
(29616, 22704, '2', 'Tamil nadu state board', '', '', '2024', 50.00, '', 1, '2024-11-05 06:30:48', 0, NULL, 0, NULL, 1),
(29617, 22707, '3', 'Anna University ', '', 'Bachelor of engineering ', '2018', 65.00, '', 1, '2024-11-05 06:55:57', 0, NULL, 0, NULL, 1),
(29618, 22703, '4', 'Madras University ', '', 'BCA', '2024', 75.00, '', 1, '2024-11-05 06:58:14', 0, NULL, 0, NULL, 1),
(29619, 22708, '3', 'Annamalai university ', '', 'B.E Mechanical Engineer ', '2021', 7.50, '', 1, '2024-11-05 07:00:42', 0, NULL, 0, NULL, 1),
(29620, 22706, '3', 'Manonmaiyam sundram university Tirunelveli ', '', 'BA English ', '2023', 70.00, '', 1, '2024-11-05 07:02:18', 0, NULL, 0, NULL, 1),
(29621, 22709, '1', 'State board ', '', '', '2017', 80.00, '', 1, '2024-11-05 07:43:32', 0, NULL, 0, NULL, 1),
(29622, 22709, '2', 'State board ', '', '', '2019', 59.90, '', 1, '2024-11-05 07:44:31', 0, NULL, 0, NULL, 1),
(29623, 22709, '3', 'Anna University ', '', 'B.E-C.S.E', '2023', 82.20, '', 1, '2024-11-05 07:45:37', 0, NULL, 0, NULL, 1),
(29624, 22710, '3', 'Madras University ', '', 'Bsc', '2022', 70.00, '', 1, '2024-11-05 09:30:04', 0, NULL, 0, NULL, 1),
(29625, 22714, '4', 'Alagappa University ', '', 'MCA', '2023', 80.00, '', 1, '2024-11-05 12:25:39', 0, NULL, 0, NULL, 1),
(29626, 22716, '4', 'Bharathithasan university ', '', 'M.sc Mathematics ', '2022', 80.00, '', 1, '2024-11-05 02:43:52', 0, NULL, 0, NULL, 1),
(29627, 22716, '3', 'Bharathithasan university ', '', 'B.sc Mathematics ', '2020', 70.00, '', 1, '2024-11-05 02:44:35', 0, NULL, 0, NULL, 1),
(29628, 22719, '3', 'thiruvallur university', '', 'BCom', '2024', 71.02, '', 1, '2024-11-06 04:32:55', 0, NULL, 0, NULL, 1),
(29629, 22718, '5', 'University ', '', 'Electronics and Communication Engineering', '2024', 75.00, '', 1, '2024-11-06 05:10:23', 0, NULL, 0, NULL, 1),
(29630, 22721, '3', 'University of madras', '', 'Bsc', '2024', 78.00, '', 1, '2024-11-06 05:42:12', 0, NULL, 0, NULL, 1),
(29631, 22722, '3', 'Madurai kamarajar university ', '', 'Bsc computer science ', '2020', 60.00, '', 1, '2024-11-06 05:49:38', 0, NULL, 0, NULL, 1),
(29632, 22724, '1', 'State Board ', '', 'B.sc ( computer science)', '2019', 65.60, '', 1, '2024-11-06 06:16:15', 0, NULL, 0, NULL, 1),
(29633, 22724, '2', 'State Board ', '', '', '2021', 75.60, '', 1, '2024-11-06 06:17:15', 0, NULL, 0, NULL, 1),
(29634, 22725, '3', 'Baradhidasan University ', '', 'B.Sc Computer science ', '2021', 73.00, '', 1, '2024-11-06 06:18:41', 0, NULL, 0, NULL, 1),
(29635, 22724, '3', 'Madras University ', '', 'B.sc ( Computer Science)', '2024', 69.00, '', 1, '2024-11-06 06:19:07', 0, NULL, 0, NULL, 1),
(29636, 22727, '3', 'Madras university ', '', 'B.COM', '2022', 80.00, '', 1, '2024-11-06 06:44:27', 0, NULL, 0, NULL, 1),
(29637, 22729, '3', 'Anna University', '', 'B.tech -IT', '2022', 80.00, '', 1, '2024-11-06 06:50:26', 0, NULL, 0, NULL, 1),
(29638, 22728, '1', 'State board ', '', '', '2016', 73.00, '', 1, '2024-11-06 07:01:39', 1, '2024-11-06 07:02:23', 0, NULL, 1),
(29639, 22728, '2', 'State board ', '', '', '2018', 71.00, '', 1, '2024-11-06 07:02:40', 0, NULL, 0, NULL, 1),
(29640, 22728, '3', 'Madras university ', '', 'B. Com (Bank management) ', '2021', 70.00, '', 1, '2024-11-06 07:03:21', 0, NULL, 0, NULL, 1),
(29641, 22730, '3', 'the oxford college of engineering', '', 'computer science engineering', '2024', 75.30, '', 1, '2024-11-06 07:24:46', 0, NULL, 0, NULL, 1),
(29642, 22730, '2', 'kurinji educational institutions', '', '', '2020', 73.50, '', 1, '2024-11-06 07:25:53', 0, NULL, 0, NULL, 1),
(29643, 22730, '1', 'venus matriculation higher secondary school', '', '', '2018', 80.40, '', 1, '2024-11-06 07:26:58', 0, NULL, 0, NULL, 1),
(29644, 22731, '3', 'Government college', '', 'Ba economic', '2024', 80.00, '', 1, '2024-11-06 07:36:40', 1, '2024-11-06 07:38:43', 0, NULL, 0),
(29645, 22731, '3', 'Autonomous', '', 'Ba economic', '2024', 80.00, '', 1, '2024-11-06 07:38:49', 0, NULL, 0, NULL, 1),
(29646, 22732, '4', 'Bharathidasan University ', '', 'Master of Computer Applications ', '2024', 76.00, '', 1, '2024-11-06 08:45:04', 0, NULL, 0, NULL, 1),
(29647, 22734, '3', 'Anna University ', '', 'Bachelor of engineering ', '2025', 75.00, '', 1, '2024-11-06 09:07:53', 0, NULL, 0, NULL, 1),
(29648, 22735, '3', 'Anna university ', '', 'B.E', '2024', 85.00, '', 1, '2024-11-06 09:12:15', 0, NULL, 0, NULL, 1),
(29649, 22735, '2', 'State board ', '', '', '2020', 77.00, '', 1, '2024-11-06 09:12:33', 0, NULL, 0, NULL, 1),
(29650, 22735, '1', 'State board ', '', '', '2018', 89.40, '', 1, '2024-11-06 09:12:47', 0, NULL, 0, NULL, 1),
(29651, 22736, '5', 'CPT', '', '', '2021', 76.00, '', 1, '2024-11-06 09:18:41', 0, NULL, 0, NULL, 1),
(29652, 22737, '3', 'Anna University ', '', 'BE', '2023', 86.00, '', 1, '2024-11-06 09:54:03', 0, NULL, 0, NULL, 1),
(29653, 22740, '3', 'Kamaraj university ', '', 'B.com ', '2021', 74.00, '', 1, '2024-11-06 11:46:48', 0, NULL, 0, NULL, 1),
(29654, 14197, '3', 'Madras University ', '', 'Bsc ', '2018', 70.00, '', 1, '2024-11-06 01:36:59', 0, NULL, 0, NULL, 1),
(29655, 22741, '3', 'Madras University ', '', 'BCA ', '2024', 60.00, '', 1, '2024-11-06 02:27:39', 0, NULL, 0, NULL, 1),
(29656, 22742, '4', 'Thiruvallur university ', '', 'M.Sc.Physics', '2024', 80.00, '', 1, '2024-11-06 02:39:31', 1, '2024-11-06 02:42:00', 0, NULL, 0),
(29657, 22742, '4', 'Thiruvalluvar university ', '', 'M.Sc.Physics', '2024', 80.00, '', 1, '2024-11-06 02:41:37', 0, NULL, 0, NULL, 1),
(29658, 22743, '3', 'Anna University ', '', 'B.E', '2023', 7.30, '', 1, '2024-11-06 02:45:30', 0, NULL, 0, NULL, 1),
(29659, 22745, '3', 'University of Madras ', '', 'B. Com [ General ]', '2024', 75.00, '', 1, '2024-11-06 04:35:51', 0, NULL, 0, NULL, 1),
(29660, 22744, '3', 'Madras university', '', 'BA.History', '2024', 61.00, '', 1, '2024-11-07 02:04:57', 0, NULL, 0, NULL, 1),
(29661, 22746, '3', 'Bishop Heber college ', '', 'Bca', '2021', 90.00, '', 1, '2024-11-07 04:04:22', 0, NULL, 0, NULL, 1),
(29662, 22747, '3', 'Karpagam Institute of Technology ', '', 'B.E - Computer Science and Engineering ', '2024', 83.00, '', 1, '2024-11-07 04:09:27', 0, NULL, 0, NULL, 1),
(29663, 22747, '2', 'State board of Tamilnadu ', '', '', '2020', 78.00, '', 1, '2024-11-07 04:10:53', 0, NULL, 0, NULL, 1),
(29664, 22747, '1', 'State board of Tamilnadu ', '', '', '2018', 90.00, '', 1, '2024-11-07 04:11:08', 0, NULL, 0, NULL, 1),
(29665, 22751, '4', 'Bharathidasan', '', 'Msc', '2023', 70.00, '', 1, '2024-11-07 04:44:33', 0, NULL, 0, NULL, 1),
(29666, 22750, '3', 'bharathidasan university', '', 'Bachelor of Computer Applications', '2024', 71.00, '', 1, '2024-11-07 04:49:32', 1, '2024-11-07 04:50:04', 0, NULL, 1),
(29667, 22748, '4', 'anna university', '', 'master of computer application', '2024', 71.20, '', 1, '2024-11-07 04:49:39', 0, NULL, 0, NULL, 1),
(29668, 22749, '4', 'anna university', '', 'mca', '2024', 70.00, '', 1, '2024-11-07 04:50:34', 0, NULL, 0, NULL, 1),
(29669, 22753, '3', 'Bharathidasan University ', '', 'B.com', '2024', 60.00, '', 1, '2024-11-07 05:06:07', 0, NULL, 0, NULL, 1),
(29670, 22756, '3', 'k.l.n colle of engineering ', '', 'Mechanical engineering ', '2024', 82.00, '', 1, '2024-11-07 05:11:07', 1, '2024-11-07 05:12:18', 0, NULL, 1),
(29671, 22755, '3', 'anna university', '', 'bacholer of engneering ', '2024', 7.58, '', 1, '2024-11-07 05:14:02', 0, NULL, 0, NULL, 1),
(29672, 22757, '3', 'Madras University ', '', 'B.Sc Physics ', '2023', 79.00, '', 1, '2024-11-07 05:16:34', 0, NULL, 0, NULL, 1),
(29673, 22754, '3', 'Anna University ', '', 'BE', '2024', 8.20, '', 1, '2024-11-07 05:17:53', 0, NULL, 0, NULL, 1),
(29674, 22758, '3', 'Bharathidasan University Trichy ', '', 'B.com general ', '2024', 61.00, '', 1, '2024-11-07 05:19:45', 0, NULL, 0, NULL, 1),
(29675, 22759, '3', 'Madras University ', '', 'Bcom corporate secretaryship ', '2024', 76.00, '', 1, '2024-11-07 05:26:56', 0, NULL, 0, NULL, 1),
(29676, 22760, '3', 'Manormaniyam ', '', 'computer scienfe', '2022', 60.00, '', 1, '2024-11-07 06:03:59', 0, NULL, 0, NULL, 1),
(29677, 22761, '3', 'Maninmanium sundaranar university ', '', 'Bsc', '2022', 75.00, '', 1, '2024-11-07 06:11:50', 0, NULL, 0, NULL, 1),
(29678, 22762, '3', 'Anna University ', '', 'BE Computer Science Engineering ', '2024', 7.45, '', 1, '2024-11-07 06:25:34', 0, NULL, 0, NULL, 1),
(29679, 22763, '1', 'Sate board ', '', 'MCA ', '2017', 73.00, '', 1, '2024-11-07 06:41:35', 0, NULL, 0, NULL, 1),
(29680, 22763, '2', 'Sate board ', '', '', '2019', 53.00, '', 1, '2024-11-07 06:42:05', 1, '2024-11-07 06:43:48', 0, NULL, 1),
(29681, 22763, '3', 'Thiruvarur university ', '', 'BCA', '2022', 87.00, '', 1, '2024-11-07 06:44:22', 0, NULL, 0, NULL, 1),
(29682, 22723, '1', 'State Board', '', 'MCA', '2017', 90.00, '', 1, '2024-11-07 06:46:37', 1, '2024-11-07 06:52:12', 0, NULL, 0),
(29683, 22723, '2', 'State board', '', '', '2019', 75.00, '', 1, '2024-11-07 06:47:10', 1, '2024-11-07 06:51:25', 0, NULL, 1),
(29684, 22723, '3', 'Madras university', '', 'BCA', '2022', 88.00, '', 1, '2024-11-07 06:47:47', 0, NULL, 0, NULL, 1),
(29685, 22723, '4', 'Anna university', '', 'MCA', '2024', 85.00, '', 1, '2024-11-07 06:48:23', 0, NULL, 0, NULL, 1),
(29686, 22764, '1', 'Sate board ', '', '', '2017', 86.00, '', 1, '2024-11-07 06:49:59', 0, NULL, 0, NULL, 1),
(29687, 22764, '2', 'State board ', '', '', '2019', 74.00, '', 1, '2024-11-07 06:50:19', 0, NULL, 0, NULL, 1),
(29688, 22764, '3', 'Madras University ', '', 'BCA ', '2022', 8.70, '', 1, '2024-11-07 06:51:04', 0, NULL, 0, NULL, 1),
(29689, 22764, '4', 'Anna University ', '', 'MCA', '2024', 84.00, '', 1, '2024-11-07 06:51:38', 0, NULL, 0, NULL, 1),
(29690, 22723, '1', 'State board', '', '', '2017', 90.00, '', 1, '2024-11-07 06:52:38', 0, NULL, 0, NULL, 1),
(29691, 22765, '1', 'State board ', '', 'MBA', '2015', 61.00, '', 1, '2024-11-07 09:36:21', 1, '2024-11-07 09:38:14', 0, NULL, 0),
(29692, 22765, '1', 'State board ', '', '', '2015', 61.00, '', 1, '2024-11-07 09:38:34', 0, NULL, 0, NULL, 1),
(29693, 22765, '2', 'START board ', '', '', '2017', 78.00, '', 1, '2024-11-07 09:39:46', 0, NULL, 0, NULL, 1),
(29694, 22765, '3', 'Madurai Kamaraj university ', '', 'B.com(CA)', '2020', 71.00, '', 1, '2024-11-07 09:40:34', 0, NULL, 0, NULL, 1),
(29695, 22765, '4', 'Anna university ', '', 'MBA', '2022', 73.00, '', 1, '2024-11-07 09:41:50', 0, NULL, 0, NULL, 1),
(29696, 22711, '3', 'Dr.MGR university ', '', 'Bsc. Psychology ', '2024', 69.00, '', 1, '2024-11-07 10:27:33', 1, '2024-11-07 10:29:55', 0, NULL, 1),
(29697, 22711, '2', 'St. Joseph\'s mat  Hr Sec  School ', '', '', '2021', 74.00, '', 1, '2024-11-07 10:28:58', 0, NULL, 0, NULL, 1),
(29698, 22711, '1', 'St. Joseph\'s Mat Hr Sec school ', '', '', '2019', 65.00, '', 1, '2024-11-07 10:29:32', 0, NULL, 0, NULL, 1),
(29699, 22766, '4', 'Madras university ', '', 'Mba', '2021', 60.00, '', 1, '2024-11-07 11:48:08', 0, NULL, 0, NULL, 1),
(29700, 22767, '3', 'Anna university ', '', 'B.E', '2019', 65.00, '', 1, '2024-11-07 12:09:03', 0, NULL, 0, NULL, 1),
(29701, 22768, '3', 'Alagappa university', '', 'BBA logistics and shipping', '2024', 73.00, '', 1, '2024-11-07 12:55:11', 0, NULL, 0, NULL, 1),
(29702, 22770, '3', 'Periyar university ', '', 'BCA', '2024', 80.00, '', 1, '2024-11-07 01:27:05', 0, NULL, 0, NULL, 1),
(29703, 22771, '5', 'Annai Teresa para medical institute ', '', 'Lab technician ', '2023', 86.00, '', 1, '2024-11-07 01:46:04', 0, NULL, 0, NULL, 1),
(29704, 22772, '3', 'Mg university', '', 'Bca', '2022', 80.00, '', 1, '2024-11-07 01:49:04', 0, NULL, 0, NULL, 1),
(29705, 22773, '3', 'Annauniversity ', '', 'B.E-EEE ', '2021', 79.00, '', 1, '2024-11-07 01:54:30', 0, NULL, 0, NULL, 1),
(29706, 22774, '3', 'Madras university', '', 'Bca', '2021', 60.00, '', 1, '2024-11-07 03:43:41', 0, NULL, 0, NULL, 1),
(29707, 22775, '1', 'SSLC ', '', '', '2018', 73.00, '', 1, '2024-11-07 04:39:13', 0, NULL, 0, NULL, 1),
(29708, 22775, '2', 'HSLC', '', '', '2020', 48.00, '', 1, '2024-11-07 04:39:44', 0, NULL, 0, NULL, 1),
(29709, 22775, '3', 'BHARATHIDASAN UNIVERSITY ', '', 'BA', '2024', 61.00, '', 1, '2024-11-07 04:40:09', 0, NULL, 0, NULL, 1),
(29710, 22778, '4', 'Kalasalingam University ', '', 'Master of computer Application ', '2023', 78.00, '', 1, '2024-11-08 04:44:20', 0, NULL, 0, NULL, 1),
(29711, 22778, '3', 'Kalasalingam University ', '', 'Bachelor of Computer Application ', '2021', 74.00, '', 1, '2024-11-08 04:44:56', 0, NULL, 0, NULL, 1),
(29712, 22779, '3', 'Erode Sengunthar Engineering College', '', 'B.E', '2024', 8.26, '', 1, '2024-11-08 05:12:28', 0, NULL, 0, NULL, 1),
(29713, 22779, '2', 'St.Mary\'s Hr. sec. School', '', '', '2020', 68.00, '', 1, '2024-11-08 05:13:23', 0, NULL, 0, NULL, 1),
(29714, 22779, '1', 'St.Mary\'s Hr. sec. School', '', '', '2018', 78.00, '', 1, '2024-11-08 05:13:42', 0, NULL, 0, NULL, 1),
(29715, 22780, '3', 'Karpagam University ', '', 'BE EEE', '2024', 80.00, '', 1, '2024-11-08 05:14:08', 0, NULL, 0, NULL, 1),
(29716, 22780, '2', 'State Board ', '', '', '2020', 75.00, '', 1, '2024-11-08 05:14:33', 0, NULL, 0, NULL, 1),
(29717, 22780, '1', 'State Board ', '', '', '2018', 91.00, '', 1, '2024-11-08 05:14:48', 0, NULL, 0, NULL, 1),
(29718, 22781, '4', 'Madurai kamarajar University ', '', 'PHYSICS', '2023', 66.00, '', 1, '2024-11-08 05:47:15', 0, NULL, 0, NULL, 1),
(29719, 22783, '5', 'Kerala', '', '', '2017', 80.00, '', 1, '2024-11-08 07:22:49', 0, NULL, 0, NULL, 1),
(29720, 22784, '3', 'Anna University ', '', 'BE', '2022', 85.00, '', 1, '2024-11-08 07:34:54', 0, NULL, 0, NULL, 1),
(29721, 22785, '2', 'Thiruvalluvar University ', '', '', '2023', 57.00, '', 1, '2024-11-08 08:15:25', 0, NULL, 0, NULL, 1),
(29722, 22785, '3', 'Thiruvalluvar University ', '', '', '2023', 57.00, '', 1, '2024-11-08 08:15:28', 0, NULL, 0, NULL, 1),
(29723, 22785, '1', 'Thiruvalluvar University ', '', 'B.sc mathamatics ', '2023', 57.00, '', 1, '2024-11-08 08:16:51', 0, NULL, 0, NULL, 1),
(29724, 22788, '3', 'Madras University ', '', 'B.b.a', '2011', 75.00, '', 1, '2024-11-08 09:05:36', 0, NULL, 0, NULL, 1),
(29725, 22789, '3', 'Manonmaniam sundaranar University ', '', 'B.sc computer science ', '2023', 72.00, '', 1, '2024-11-08 09:09:36', 0, NULL, 0, NULL, 1),
(29726, 22791, '3', 'University of Madras ', '', 'B.sc', '2024', 70.00, '', 1, '2024-11-08 10:57:50', 0, NULL, 0, NULL, 1),
(29727, 22792, '3', 'madras university ', '', 'b.com', '2024', 79.00, '', 1, '2024-11-08 12:48:22', 0, NULL, 0, NULL, 1),
(29728, 22792, '2', 'state board', '', '', '2024', 88.00, '', 1, '2024-11-08 12:48:56', 0, NULL, 0, NULL, 1),
(29729, 22792, '1', 'state board', '', '', '2024', 78.00, '', 1, '2024-11-08 12:52:32', 0, NULL, 0, NULL, 1),
(29730, 22793, '3', 'Anna university ', '', 'B.Tech Information Technology ', '2024', 8.00, '', 1, '2024-11-09 04:21:00', 0, NULL, 0, NULL, 1),
(29731, 22793, '5', 'Anna university ', '', 'Electrical Electronics Engineering ', '2021', 8.50, '', 1, '2024-11-09 04:21:46', 0, NULL, 0, NULL, 1),
(29732, 22794, '3', 'Pondicherry university ', '', 'B. Sc computer science ', '2024', 66.00, '', 1, '2024-11-09 04:33:41', 0, NULL, 0, NULL, 1),
(29733, 22794, '1', 'State board ', '', '', '2019', 53.00, '', 1, '2024-11-09 04:34:33', 0, NULL, 0, NULL, 1),
(29734, 22794, '2', 'State board ', '', '', '2021', 70.00, '', 1, '2024-11-09 04:35:05', 0, NULL, 0, NULL, 1),
(29735, 22795, '3', 'Anna University ', '', 'BE (ECE) ', '2022', 75.00, '', 1, '2024-11-09 04:58:34', 0, NULL, 0, NULL, 1),
(29736, 22795, '2', 'State Board of Tamil Nadu ', '', '', '2018', 69.08, '', 1, '2024-11-09 04:59:10', 0, NULL, 0, NULL, 1),
(29737, 22795, '1', 'State Board of Tamil Nadu ', '', '', '2016', 90.60, '', 1, '2024-11-09 04:59:44', 0, NULL, 0, NULL, 1),
(29738, 22796, '3', 'Thiruvalluvar University ', '', 'BCA', '2022', 59.00, '', 1, '2024-11-09 05:29:57', 0, NULL, 0, NULL, 1),
(29739, 22798, '3', 'Anna university ', '', 'BE CSE ', '2024', 70.00, '', 1, '2024-11-09 05:48:19', 1, '2024-11-09 05:49:27', 0, NULL, 1),
(29740, 22798, '1', 'STATE BOARD ', '', '', '2018', 80.00, '', 1, '2024-11-09 05:50:13', 0, NULL, 0, NULL, 1),
(29741, 22797, '3', 'Annamalai university ', '', 'B. SC(Hons)Agri6', '2023', 8.34, '', 1, '2024-11-09 05:53:56', 0, NULL, 0, NULL, 1),
(29742, 22786, '3', 'Loyola College', '', 'B. A. Economics', '2021', 64.00, '', 1, '2024-11-09 06:08:52', 0, NULL, 0, NULL, 1),
(29743, 22786, '1', 'Stateboard', '', 'B. A. Economics', '2016', 78.00, '', 1, '2024-11-09 06:10:35', 1, '2024-11-09 06:12:15', 0, NULL, 1),
(29744, 22786, '2', 'State board ', '', '', '2018', 74.00, '', 1, '2024-11-09 06:11:00', 0, NULL, 0, NULL, 1),
(29745, 22799, '4', 'Annamalai', '', 'MSc', '2023', 62.00, '', 1, '2024-11-09 06:38:09', 0, NULL, 0, NULL, 1),
(29746, 22800, '4', 'Bharathidasan university ', '', 'BCA', '2021', 82.00, '', 1, '2024-11-09 07:15:29', 0, NULL, 0, NULL, 1),
(29747, 22801, '2', 'university', '', '', '2015', 60.00, '', 1, '2024-11-09 09:18:17', 0, NULL, 0, NULL, 1),
(29748, 22801, '3', 'boars', '', 'b.com', '2019', 50.00, '', 1, '2024-11-09 09:20:24', 0, NULL, 0, NULL, 1),
(29749, 22802, '3', 'Bharathidasan University ', '', 'Bsc computer science ', '2024', 76.60, '', 1, '2024-11-09 09:48:10', 0, NULL, 0, NULL, 1),
(29750, 22733, '3', 'Anna university ', '', 'B.E.Mechanical Engineering', '2019', 65.20, '', 1, '2024-11-11 04:36:54', 0, NULL, 0, NULL, 1),
(29751, 22804, '3', 'Manonmanium sundaranar University', '', 'Computer Application ', '2021', 56.00, '', 1, '2024-11-11 04:44:14', 0, NULL, 0, NULL, 1),
(29752, 22805, '3', 'Anna University ', '', 'B.E. Computer Science and Engineering ', '2024', 8.02, '', 1, '2024-11-11 04:58:11', 0, NULL, 0, NULL, 1),
(29753, 22805, '1', 'State Board of Tamilnadu ', '', '', '2018', 75.60, '', 1, '2024-11-11 04:58:57', 0, NULL, 0, NULL, 1),
(29754, 22805, '2', 'State Board of Tamilnadu ', '', '', '2020', 67.20, '', 1, '2024-11-11 04:59:37', 0, NULL, 0, NULL, 1),
(29755, 22806, '3', 'Government college of engineering bodinayakkanur', '', 'B. e', '2024', 75.00, '', 1, '2024-11-11 05:05:57', 0, NULL, 0, NULL, 1),
(29756, 22806, '1', 'Anitha kumaran matric and higher secondary schools', '', '', '2020', 78.00, '', 1, '2024-11-11 05:06:49', 0, NULL, 0, NULL, 1),
(29757, 22806, '2', 'Anitha kumaran matric and higher secondary school', '', '', '2020', 63.00, '', 1, '2024-11-11 05:07:21', 0, NULL, 0, NULL, 1),
(29758, 22807, '4', 'Anna University ', '', 'BE - Mechanical ENGINEERING ', '2019', 6.40, '', 1, '2024-11-11 05:18:44', 0, NULL, 0, NULL, 1),
(29759, 22808, '5', 'Srinivasan polytechnic College ', '', 'Diploma in mechanical engineering ', '2021', 80.00, '', 1, '2024-11-11 05:30:05', 0, NULL, 0, NULL, 1),
(29760, 22809, '4', 'Anna University ', '', 'master of computer application ', '2021', 84.00, '', 1, '2024-11-11 05:33:49', 0, NULL, 0, NULL, 1),
(29761, 22809, '3', 'Madras University ', '', 'BCA', '2019', 74.80, '', 1, '2024-11-11 05:34:17', 0, NULL, 0, NULL, 1),
(29762, 22809, '2', 'State board ', '', '', '2016', 69.00, '', 1, '2024-11-11 05:34:46', 0, NULL, 0, NULL, 1),
(29763, 22809, '1', 'State board ', '', '', '2014', 84.00, '', 1, '2024-11-11 05:35:05', 0, NULL, 0, NULL, 1),
(29764, 22810, '3', 'University College of engineering, arni', '', 'B. E', '2014', 72.00, '', 1, '2024-11-11 05:37:19', 0, NULL, 0, NULL, 1),
(29765, 22810, '2', 'Jawahar matriculation higher secondary school', '', '', '2010', 84.00, '', 1, '2024-11-11 05:38:06', 0, NULL, 0, NULL, 1),
(29766, 22810, '1', 'Jawahar matriculation higher secondary school', '', '', '2008', 82.00, '', 1, '2024-11-11 05:39:13', 0, NULL, 0, NULL, 1),
(29767, 22811, '1', 'State board ', '', '', '2017', 95.20, '', 1, '2024-11-11 05:46:12', 0, NULL, 0, NULL, 1),
(29768, 22811, '2', 'State board ', '', '', '2019', 84.10, '', 1, '2024-11-11 05:46:50', 0, NULL, 0, NULL, 1),
(29769, 22812, '3', 'Sastra', '', 'Bcom', '2024', 67.00, '', 1, '2024-11-11 05:58:27', 0, NULL, 0, NULL, 1),
(29770, 22814, '4', 'Madras University ', '', 'MSW', '2023', 80.00, '', 1, '2024-11-11 06:13:32', 0, NULL, 0, NULL, 1),
(29771, 22715, '4', 'Bharathithasan University', '', 'MCA', '2024', 85.00, '', 1, '2024-11-11 06:35:37', 0, NULL, 0, NULL, 1),
(29772, 22813, '4', 'Madras University College ', '', 'B.com and MBA', '2023', 72.00, '', 1, '2024-11-11 06:57:29', 0, NULL, 0, NULL, 1),
(29773, 22813, '3', 'Madras University College ', '', 'B.com', '2021', 74.00, '', 1, '2024-11-11 06:58:21', 0, NULL, 0, NULL, 1),
(29774, 22816, '4', 'Madras University ', '', 'MBA', '2024', 80.00, '', 1, '2024-11-11 08:51:23', 0, NULL, 0, NULL, 1),
(29775, 22817, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2024', 78.90, '', 1, '2024-11-11 09:18:37', 0, NULL, 0, NULL, 1),
(29776, 22818, '4', 'University Of Madras', '', 'MSc Information Technology', '2024', 80.00, '', 1, '2024-11-11 09:26:14', 0, NULL, 0, NULL, 1),
(29777, 22818, '3', 'University Of Madras', '', 'BSc Physics With Computer Application', '2022', 77.00, '', 1, '2024-11-11 09:26:56', 0, NULL, 0, NULL, 1),
(29778, 22819, '3', 'Madras University ', '', 'Bachelor of Business Administration', '2018', 80.00, '', 1, '2024-11-11 09:51:48', 0, NULL, 0, NULL, 1),
(29779, 22819, '2', 'Matriculation board ', '', '', '2015', 56.00, '', 1, '2024-11-11 09:52:16', 0, NULL, 0, NULL, 1),
(29780, 22819, '1', 'Matriculation ', '', '', '2013', 66.00, '', 1, '2024-11-11 09:52:46', 0, NULL, 0, NULL, 1),
(29781, 22820, '3', 'bharathidasan University ', '', 'BCA', '2024', 87.00, '', 1, '2024-11-11 10:23:50', 0, NULL, 0, NULL, 1),
(29782, 22820, '2', 'State Board', '', '', '2021', 82.00, '', 1, '2024-11-11 10:24:13', 0, NULL, 0, NULL, 1),
(29783, 22820, '1', 'State Board ', '', '', '2019', 79.00, '', 1, '2024-11-11 10:24:31', 0, NULL, 0, NULL, 1),
(29784, 22821, '1', 'State Board ', '', '', '2019', 69.00, '', 1, '2024-11-11 10:27:42', 0, NULL, 0, NULL, 1),
(29785, 22821, '3', 'Manonmaniam Sundaranar University, Tirunelveli ', '', 'Bsc Computer Science ', '2024', 80.00, '', 1, '2024-11-11 10:28:53', 0, NULL, 0, NULL, 1),
(29786, 22821, '2', 'State Board ', '', '', '2021', 76.00, '', 1, '2024-11-11 10:29:15', 0, NULL, 0, NULL, 1),
(29787, 22822, '4', 'Mgr university ', '', 'Mba ', '2023', 73.00, '', 1, '2024-11-11 03:21:38', 0, NULL, 0, NULL, 1),
(29788, 22823, '3', 'Anna Unversity', '', 'BE', '2023', 79.00, '', 1, '2024-11-12 05:00:43', 0, NULL, 0, NULL, 1),
(29789, 22824, '3', 'University of madras', '', 'B. Com', '2024', 78.69, '', 1, '2024-11-12 05:25:37', 1, '2024-11-12 05:27:52', 0, NULL, 0),
(29790, 22824, '3', 'University of madras', '', 'B. Com', '2024', 78.69, '', 1, '2024-11-12 05:30:55', 0, NULL, 0, NULL, 1),
(29791, 22825, '3', 'Anna University ', '', 'BE', '2023', 84.00, '', 1, '2024-11-12 05:38:44', 0, NULL, 0, NULL, 1),
(29792, 22825, '5', 'Dote University ', '', 'Computer science and technology ', '2019', 80.00, '', 1, '2024-11-12 05:39:09', 0, NULL, 0, NULL, 1),
(29793, 22825, '1', 'State Board', '', '', '2016', 78.00, '', 1, '2024-11-12 05:39:56', 0, NULL, 0, NULL, 1),
(29794, 22826, '3', 'Anna University (psna college of engineering and technology)', '', 'B.E.(Electronics and communication engineering)', '2024', 80.60, '', 1, '2024-11-12 05:47:30', 0, NULL, 0, NULL, 1),
(29795, 22831, '3', 'The new college', '', 'Bcom bank management', '2024', 65.00, '', 1, '2024-11-12 11:42:23', 0, NULL, 0, NULL, 1),
(29796, 22830, '3', 'University of madras', '', 'B.com (cs)', '2024', 62.00, '', 1, '2024-11-12 11:43:06', 0, NULL, 0, NULL, 1),
(29797, 22834, '2', 'Tamil Nadu Board of Secondary Education ', '', '', '2021', 85.00, '', 1, '2024-11-13 04:16:01', 0, NULL, 0, NULL, 1),
(29798, 22834, '1', 'Government of Tamil Nadu Directorate of Government Examinations.', '', '', '2019', 80.00, '', 1, '2024-11-13 04:17:07', 0, NULL, 0, NULL, 1),
(29799, 22834, '3', 'Bharathiar University ', '', 'Bsc Information technology ', '2024', 83.00, '', 1, '2024-11-13 04:17:41', 0, NULL, 0, NULL, 1),
(29800, 22835, '4', 'Bharathi Dasan university ', '', 'BA ENGLISH BEd ENGLISH ', '2023', 85.00, '', 1, '2024-11-13 04:21:44', 0, NULL, 0, NULL, 1),
(29801, 22836, '3', 'Madras University ', '', 'B.Com (General)', '2023', 61.00, '', 1, '2024-11-13 04:58:21', 0, NULL, 0, NULL, 1),
(29802, 22837, '5', 'Dote', '', 'Drac', '2021', 80.00, '', 1, '2024-11-13 05:17:41', 0, NULL, 0, NULL, 1),
(29803, 22829, '3', 'Raja Serfji Government college Thanjvavur', '', 'BSC Bio Technolog', '2022', 76.00, '', 153, '2024-11-13 10:52:10', 0, NULL, 0, NULL, 1),
(29804, 22839, '3', 'Guru Nanak College, Chennai', '', 'BCA (Computer Applications)', '2024', 88.00, '', 1, '2024-11-13 05:25:37', 0, NULL, 0, NULL, 1),
(29805, 22839, '2', 'Bharathi Matriculation Hr Sec School', '', '', '2021', 83.00, '', 1, '2024-11-13 05:26:14', 0, NULL, 0, NULL, 1),
(29806, 22839, '1', 'AVL Matriculation Hr Sec School', '', '', '2019', 75.00, '', 1, '2024-11-13 05:26:44', 0, NULL, 0, NULL, 1),
(29807, 22840, '3', 'Anna University', '', 'BE(CSE)', '2024', 70.00, '', 1, '2024-11-13 05:31:37', 0, NULL, 0, NULL, 1),
(29808, 22838, '3', 'Anna university ', '', 'BE-EEE', '2022', 75.54, '', 1, '2024-11-13 05:32:46', 0, NULL, 0, NULL, 1),
(29809, 22841, '1', 'State Board ', '', '', '2019', 84.00, '', 1, '2024-11-13 05:33:24', 0, NULL, 0, NULL, 1),
(29810, 22841, '2', 'State Board ', '', '', '2021', 89.00, '', 1, '2024-11-13 05:33:51', 0, NULL, 0, NULL, 1),
(29811, 22841, '3', 'BHARATHIDASAN ', '', 'BCA', '2024', 72.00, '', 1, '2024-11-13 05:34:16', 0, NULL, 0, NULL, 1),
(29812, 22842, '3', 'Anna university ', '', 'B.e Mechanical engineering ', '2020', 65.00, '', 1, '2024-11-13 06:33:26', 0, NULL, 0, NULL, 1),
(29813, 22843, '3', 'Bharathidasan ', '', 'BSC Computer science ', '2021', 74.00, '', 1, '2024-11-13 06:43:38', 0, NULL, 0, NULL, 1),
(29814, 22844, '3', 'madras university', '', 'bca', '2023', 75.00, '', 1, '2024-11-13 07:04:48', 0, NULL, 0, NULL, 1),
(29815, 22845, '3', 'Thiruvallur university ', '', 'B.sc mathematics ', '2022', 65.00, '', 1, '2024-11-13 07:37:28', 0, NULL, 0, NULL, 1),
(29816, 22846, '3', 'Thiruvalluvar university ', '', 'Bsc computer science ', '2022', 78.00, '', 1, '2024-11-13 07:37:35', 0, NULL, 0, NULL, 1),
(29817, 22847, '3', 'M.o.p vaishnav College ', '', 'Bsc computer science ', '2024', 85.00, '', 1, '2024-11-13 08:13:59', 0, NULL, 0, NULL, 1),
(29818, 22848, '3', 'Anna University ', '', 'BE Mechanical Engineering ', '2018', 65.00, '', 1, '2024-11-13 08:37:46', 1, '2024-11-13 08:40:50', 0, NULL, 1),
(29819, 22848, '5', 'DOTE Campus ', '', 'Diploma In Marine Engineering', '2014', 72.67, '', 1, '2024-11-13 08:39:45', 0, NULL, 0, NULL, 1),
(29820, 22848, '1', 'TBSE', '', '', '2011', 91.00, '', 1, '2024-11-13 08:42:44', 0, NULL, 0, NULL, 1),
(29821, 22849, '3', 'Madras University ', '', 'B com General ', '2022', 70.00, '', 1, '2024-11-13 09:12:14', 0, NULL, 0, NULL, 1),
(29822, 22850, '2', 'Discontinue education ', '', '', '2019', 69.00, '', 1, '2024-11-13 09:49:12', 0, NULL, 0, NULL, 1),
(29823, 22852, '4', 'madras university', '', 'msc. applied psychology specialization in organiza', '2025', 75.00, '', 1, '2024-11-13 09:59:35', 0, NULL, 0, NULL, 1),
(29824, 22853, '4', 'madras universi ', '', 'msc apllied psychology', '2025', 74.00, '', 1, '2024-11-13 10:00:27', 0, NULL, 0, NULL, 1),
(29825, 22851, '4', 'University of Madras', '', 'M.Sc Applied Psychology (Organizational Behavior) ', '2025', 77.43, '', 1, '2024-11-13 10:00:45', 0, NULL, 0, NULL, 1),
(29826, 22856, '5', 'Board', '', 'Petrochemical engineering ', '2022', 87.00, '', 1, '2024-11-13 04:08:11', 0, NULL, 0, NULL, 1),
(29827, 22857, '1', 'Government higher secondary school ', '', '', '2018', 79.00, '', 1, '2024-11-14 01:10:23', 1, '2024-11-14 01:10:50', 0, NULL, 1),
(29828, 22857, '2', 'Government higher secondary school ', '', '', '2019', 60.00, '', 1, '2024-11-14 01:11:13', 0, NULL, 0, NULL, 1),
(29829, 22857, '3', 'Park college of engineering and technology ', '', 'B.E.CSE', '2024', 84.00, '', 1, '2024-11-14 01:11:32', 0, NULL, 0, NULL, 1),
(29830, 22858, '3', 'bharathidasan', '', 'B.com', '2024', 75.00, '', 1, '2024-11-14 04:05:20', 0, NULL, 0, NULL, 1),
(29831, 22860, '3', 'Madras University ', '', 'BCA', '2020', 71.00, '', 1, '2024-11-14 04:29:25', 0, NULL, 0, NULL, 1),
(29832, 22860, '4', 'St.Joseph College ', '', 'MCA', '2022', 84.00, '', 1, '2024-11-14 04:29:52', 0, NULL, 0, NULL, 1),
(29833, 22855, '3', 'Medres university ', '', 'Bcom', '2014', 75.00, '', 1, '2024-11-14 05:24:55', 0, NULL, 0, NULL, 1),
(29834, 22864, '3', 'Annamalai University ', '', 'B.com', '2024', 79.00, '', 1, '2024-11-14 05:39:28', 0, NULL, 0, NULL, 1),
(29835, 22862, '3', 'Sathyabama University ', '', 'B.com general ', '2024', 70.00, '', 1, '2024-11-14 05:46:30', 0, NULL, 0, NULL, 1),
(29836, 22863, '3', 'Annamalai University ', '', 'B.com', '2024', 68.00, '', 1, '2024-11-14 05:51:29', 0, NULL, 0, NULL, 1),
(29837, 22866, '3', 'Ayya nadar Janaki ammal college Sivakasi ', '', 'BSc computer science ', '2024', 67.00, '', 1, '2024-11-14 06:17:24', 0, NULL, 0, NULL, 1),
(29838, 22866, '2', 'SHN Edward higher secondary school sattur', '', '', '2021', 64.00, '', 1, '2024-11-14 06:18:21', 0, NULL, 0, NULL, 1),
(29839, 22866, '1', 'SHN Edward higher secondary school sattur ', '', '', '2019', 54.00, '', 1, '2024-11-14 06:19:27', 0, NULL, 0, NULL, 1),
(29840, 22867, '4', 'Bharathidasan University ', '', 'MCA', '2024', 78.00, '', 1, '2024-11-14 06:50:29', 0, NULL, 0, NULL, 1),
(29841, 22870, '3', 'BHARATHIDHASAN UNIVERSITY ', '', 'BCA', '2023', 82.00, '', 1, '2024-11-14 06:50:52', 0, NULL, 0, NULL, 1),
(29842, 22867, '3', 'Bharathidasan University ', '', 'BCA', '2022', 74.00, '', 1, '2024-11-14 06:51:15', 0, NULL, 0, NULL, 1),
(29843, 22869, '3', 'Madras University ', '', 'BA English literature ', '2024', 58.00, '', 1, '2024-11-14 06:53:07', 0, NULL, 0, NULL, 1),
(29844, 22871, '3', 'Madras University ', '', 'BA Economics ', '2024', 50.64, '', 1, '2024-11-14 07:11:44', 0, NULL, 0, NULL, 1),
(29845, 22872, '3', 'Sangai', '', 'BCA', '2020', 3.10, '', 1, '2024-11-14 07:18:02', 0, NULL, 0, NULL, 1),
(29846, 22873, '3', 'SNS college of Technology ', '', 'B.E', '2023', 89.00, '', 1, '2024-11-14 07:21:36', 0, NULL, 0, NULL, 1),
(29847, 22868, '3', 'University of madras', '', 'Ba English literature ', '2024', 62.00, '', 1, '2024-11-14 07:25:36', 0, NULL, 0, NULL, 1),
(29848, 22874, '3', 'Madras University ', '', 'BCA', '2020', 84.00, '', 1, '2024-11-14 08:57:07', 0, NULL, 0, NULL, 1),
(29849, 22875, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 50.00, '', 1, '2024-11-14 09:20:19', 0, NULL, 0, NULL, 1),
(29850, 22876, '3', 'University', '', 'B. TECH', '2024', 70.00, '', 1, '2024-11-14 09:43:31', 0, NULL, 0, NULL, 1),
(29851, 22878, '1', 'CENTRAL BOARD OF SECONDARY EDUCATION (CBSE)', '', '', '2018', 72.40, '', 1, '2024-11-14 09:55:36', 0, NULL, 0, NULL, 1),
(29852, 22878, '2', 'CENTRAL BOARD OF SECONDARY EDUCATION (CBSE)', '', '', '2020', 67.40, '', 1, '2024-11-14 09:56:01', 0, NULL, 0, NULL, 1),
(29853, 22878, '3', 'ANNA UNIVERSITY ', '', 'BACHELOR OF ENGINEERING (BE)', '2024', 80.01, '', 1, '2024-11-14 09:56:34', 0, NULL, 0, NULL, 1),
(29854, 22877, '3', 'Anna university', '', 'B. E', '2022', 70.00, '', 1, '2024-11-14 10:09:59', 0, NULL, 0, NULL, 1),
(29855, 22880, '3', 'Bharathidasan university ', '', 'B.C.A', '2023', 69.00, '', 1, '2024-11-14 11:52:16', 0, NULL, 0, NULL, 1),
(29856, 22879, '5', 'Tamilnadu', '', 'No ', '2022', 7.50, '', 1, '2024-11-14 12:21:20', 0, NULL, 0, NULL, 1),
(29857, 22881, '2', 'Tamilnadu ', '', '', '2017', 75.00, '', 1, '2024-11-14 12:21:20', 0, NULL, 0, NULL, 1),
(29858, 22882, '4', 'Madras University ', '', 'Msc, biotech', '2022', 76.00, '', 1, '2024-11-14 12:43:53', 0, NULL, 0, NULL, 1),
(29859, 22884, '3', 'Madras University ', '', 'B com(g)', '2024', 78.00, '', 1, '2024-11-14 01:47:30', 0, NULL, 0, NULL, 1),
(29860, 22885, '3', 'MADRAS UNIVERSITY ', '', 'B.COM C.S', '2024', 80.00, '', 1, '2024-11-14 02:05:55', 0, NULL, 0, NULL, 1),
(29861, 22886, '3', 'ANNA UNIVERSITY ', '', 'BE', '2024', 7.45, '', 1, '2024-11-15 04:02:18', 0, NULL, 0, NULL, 1),
(29862, 22886, '2', 'STATE BOARD', '', '', '2020', 67.00, '', 1, '2024-11-15 04:03:03', 0, NULL, 0, NULL, 1),
(29863, 22887, '3', 'Quaid e millath Government College for women ', '', 'Bachelor Degree', '2024', 74.00, '', 1, '2024-11-15 04:51:37', 0, NULL, 0, NULL, 1),
(29864, 22865, '3', 'Dr.ambedkar arts and science ', '', 'Bsc.computer science ', '2023', 75.00, '', 1, '2024-11-15 05:10:11', 0, NULL, 0, NULL, 1),
(29865, 22888, '4', 'University of Madras ', '', 'M.sc(ComputerScience)', '2024', 75.00, '', 1, '2024-11-15 05:23:15', 0, NULL, 0, NULL, 1),
(29866, 22889, '3', 'Bharathidhasan ', '', 'Bcom', '2024', 68.00, '', 1, '2024-11-15 05:34:18', 0, NULL, 0, NULL, 1),
(29867, 22832, '3', 'Bharadhidasan ', '', 'Bca', '2024', 83.00, '', 1, '2024-11-15 05:49:14', 0, NULL, 0, NULL, 1),
(29868, 22890, '2', 'Raja Vignesh Higher secondary school ', '', '', '2017', 95.91, '', 1, '2024-11-15 06:00:49', 0, NULL, 0, NULL, 1),
(29869, 22883, '3', 'Thiruvalluvar university ', '', 'B.sc(computer science)', '2023', 85.00, '', 1, '2024-11-15 06:28:14', 0, NULL, 0, NULL, 1),
(29870, 22892, '3', 'University Of Madras ', '', 'Bsc. Computer Science ', '2024', 71.00, '', 1, '2024-11-15 06:33:23', 0, NULL, 0, NULL, 1),
(29871, 22892, '2', 'State Board ', '', '', '2020', 72.00, '', 1, '2024-11-15 06:33:43', 0, NULL, 0, NULL, 1),
(29872, 22892, '1', 'State Board ', '', '', '2018', 81.00, '', 1, '2024-11-15 06:34:03', 0, NULL, 0, NULL, 1),
(29873, 22893, '3', 'Autonomous ', '', 'B.A Economics', '2024', 70.00, '', 1, '2024-11-15 06:35:08', 0, NULL, 0, NULL, 1),
(29874, 22891, '5', 'State board ', '', 'Diploma in EEE ', '2019', 67.00, '', 1, '2024-11-15 06:35:53', 0, NULL, 0, NULL, 1),
(29875, 22894, '3', 'madras university', '', 'Bachelor of computer Science ', '2023', 67.00, '', 1, '2024-11-15 06:50:44', 0, NULL, 0, NULL, 1),
(29876, 22895, '3', 'Ethiraj college  for womens', '', 'BSc computer science ', '2024', 70.00, '', 1, '2024-11-15 07:04:17', 0, NULL, 0, NULL, 1),
(29877, 22896, '3', 'Anna university', '', 'BTech iT', '2024', 7.00, '', 1, '2024-11-15 07:50:06', 0, NULL, 0, NULL, 1),
(29878, 22897, '3', 'University of Madras', '', 'B. Com', '2024', 65.00, '', 1, '2024-11-15 09:59:50', 0, NULL, 0, NULL, 1),
(29879, 22899, '3', 'University of Madras ', '', 'B.com', '2024', 67.50, '', 1, '2024-11-15 11:14:38', 0, NULL, 0, NULL, 1),
(29880, 22900, '1', 'Tamilnadu State Board ', '', '', '2018', 91.60, '', 1, '2024-11-15 11:42:12', 0, NULL, 0, NULL, 1),
(29881, 22900, '2', 'Tamilnadu State Board ', '', '', '2020', 79.50, '', 1, '2024-11-15 11:42:45', 0, NULL, 0, NULL, 1),
(29882, 22900, '3', 'Anna University ', '', 'Bachelors of Technology ', '2024', 7.96, '', 1, '2024-11-15 11:43:34', 0, NULL, 0, NULL, 1),
(29883, 22901, '3', 'Anna University ', '', 'B.E aeronautical engineering ', '2023', 82.00, '', 1, '2024-11-15 12:05:34', 0, NULL, 0, NULL, 1),
(29884, 22902, '3', 'Anna University ', '', 'BE', '2021', 95.00, '', 1, '2024-11-16 04:55:01', 0, NULL, 0, NULL, 1),
(29885, 22903, '3', 'bharathidasan university ', '', 'Bsc computer science', '2024', 69.00, '', 1, '2024-11-16 05:01:55', 0, NULL, 0, NULL, 1),
(29886, 22905, '3', 'University ', '', 'B.Sc Computer science ', '2021', 85.00, '', 1, '2024-11-16 05:07:10', 0, NULL, 0, NULL, 1),
(29887, 22904, '3', 'Nandha Engineering College', '', 'B.E', '2024', 8.13, '', 1, '2024-11-16 05:13:36', 0, NULL, 0, NULL, 1),
(29888, 22906, '3', 'Madres University ', '', 'BA.Tamil', '2024', 70.00, '', 1, '2024-11-16 05:14:27', 1, '2024-11-16 05:15:14', 0, NULL, 1),
(29889, 22907, '3', 'Madras University', '', 'BCA', '2016', 85.00, '', 1, '2024-11-16 05:24:17', 0, NULL, 0, NULL, 1),
(29890, 22907, '1', 'State Board', '', '', '2011', 92.00, '', 1, '2024-11-16 05:24:58', 0, NULL, 0, NULL, 1),
(29891, 22907, '2', 'State Board', '', '', '2013', 80.00, '', 1, '2024-11-16 05:25:30', 0, NULL, 0, NULL, 1),
(29892, 22908, '3', 'anna University ', '', 'bachloer of mechanical engineering ', '2021', 76.00, '', 1, '2024-11-16 05:36:20', 0, NULL, 0, NULL, 1),
(29893, 22909, '3', 'Anna University Regional Campus, Tirunelveli.', '', 'be - cse ', '2022', 71.00, '', 1, '2024-11-16 05:46:44', 0, NULL, 0, NULL, 1),
(29894, 22909, '2', 'Servite Matriculation Hr. Sec school, Tirunelveli.', '', '', '2018', 75.00, '', 1, '2024-11-16 05:47:31', 0, NULL, 0, NULL, 1),
(29895, 22909, '1', 'Servite Matriculation Hr. Sec school, Tirunelveli.', '', '', '2016', 87.00, '', 1, '2024-11-16 05:48:26', 0, NULL, 0, NULL, 1),
(29896, 22911, '3', 'Madras University ', '', 'BSC computer science ', '2024', 76.54, '', 1, '2024-11-16 06:44:38', 0, NULL, 0, NULL, 1),
(29897, 22910, '5', 'Dote', '', 'Diploma ', '2020', 68.00, '', 1, '2024-11-16 07:07:35', 0, NULL, 0, NULL, 1),
(29898, 22912, '4', 'Bharathiyar university ', '', 'Mcomca', '2023', 69.00, '', 1, '2024-11-16 07:36:51', 0, NULL, 0, NULL, 1),
(29899, 22914, '3', 'Madras University', '', 'B Com ', '2023', 79.00, '', 1, '2024-11-16 11:52:30', 0, NULL, 0, NULL, 1),
(29900, 22915, '3', 'Manomaniyam university ', '', 'B. A', '2024', 75.00, '', 1, '2024-11-17 03:22:24', 0, NULL, 0, NULL, 1),
(29901, 22918, '1', 'State bord', '', '', '2019', 87.60, '', 1, '2024-11-17 03:48:25', 0, NULL, 0, NULL, 1),
(29902, 22918, '2', 'Status board ', '', '', '2021', 90.50, '', 1, '2024-11-17 04:05:48', 0, NULL, 0, NULL, 1),
(29903, 22918, '3', 'Bharathi dasan university ', '', 'Mathematics ', '2024', 70.77, '', 1, '2024-11-17 04:06:34', 0, NULL, 0, NULL, 1),
(29904, 22919, '3', 'University of Madras ', '', '', '2021', 50.00, '', 1, '2024-11-18 04:58:09', 0, NULL, 0, NULL, 1),
(29905, 22920, '3', 'Srm university ', '', 'Bachelor of computer science ', '2023', 91.00, '', 1, '2024-11-18 06:02:52', 0, NULL, 0, NULL, 1),
(29906, 22921, '3', 'Madras University ', '', 'B.com(corporate shecrataryship)', '2022', 80.00, '', 1, '2024-11-18 06:06:38', 0, NULL, 0, NULL, 1),
(29907, 22921, '4', 'PONDICHERRY UNIVERSITY ', '', 'MBA', '2024', 75.00, '', 1, '2024-11-18 06:07:09', 0, NULL, 0, NULL, 1),
(29908, 22922, '3', 'SRM University Chennai ', '', 'B.com Information System Management ', '2021', 64.50, '', 1, '2024-11-18 06:24:35', 0, NULL, 0, NULL, 1),
(29909, 22913, '3', 'Partition college of arts and science ', '', 'BCA', '2024', 60.00, '', 1, '2024-11-18 06:48:41', 0, NULL, 0, NULL, 1),
(29910, 22917, '3', 'madras university', '', 'bca', '2024', 75.00, '', 1, '2024-11-18 06:51:57', 0, NULL, 0, NULL, 1),
(29911, 22923, '3', 'Anna University ', '', 'B.E.Aeronautical', '2022', 8.00, '', 1, '2024-11-18 07:12:12', 0, NULL, 0, NULL, 1),
(29912, 22924, '5', 'Institute of leather technology ', '', 'Diploma ', '2022', 60.00, '', 1, '2024-11-18 07:39:39', 0, NULL, 0, NULL, 1),
(29913, 22928, '3', 'University ', '', 'B.E CSE', '2023', 90.00, '', 1, '2024-11-19 05:00:22', 0, NULL, 0, NULL, 1),
(29914, 22928, '1', 'Board', '', '', '2017', 84.40, '', 1, '2024-11-19 05:01:08', 0, NULL, 0, NULL, 1),
(29915, 22928, '2', 'Board', '', '', '2019', 72.30, '', 1, '2024-11-19 05:01:27', 0, NULL, 0, NULL, 1),
(29916, 22929, '3', 'ANNA UNIVERSITY ', '', 'B.E - ECE', '2024', 81.00, '', 1, '2024-11-19 05:19:54', 0, NULL, 0, NULL, 1),
(29917, 22929, '1', 'CBSE', '', '', '2018', 68.60, '', 1, '2024-11-19 05:21:36', 0, NULL, 0, NULL, 1),
(29918, 22929, '2', 'CBSE', '', '', '2020', 75.20, '', 1, '2024-11-19 05:21:53', 0, NULL, 0, NULL, 1),
(29919, 22931, '3', 'Anna university ', '', 'BE', '2024', 82.00, '', 1, '2024-11-19 05:26:56', 1, '2024-11-19 05:28:13', 0, NULL, 1),
(29920, 22931, '2', 'State Board ', '', '', '2020', 77.00, '', 1, '2024-11-19 05:27:34', 0, NULL, 0, NULL, 1),
(29921, 22931, '1', 'State Board ', '', '', '2018', 85.00, '', 1, '2024-11-19 05:27:57', 0, NULL, 0, NULL, 1),
(29922, 22935, '4', 'Dhanraj Baid Jain College', '', 'M. Com  Corporate Secretaryship ', '2024', 80.00, '', 1, '2024-11-19 05:33:28', 0, NULL, 0, NULL, 1),
(29923, 22932, '4', 'bharathidasen ', '', 'm.com', '2024', 65.00, '', 1, '2024-11-19 05:34:14', 0, NULL, 0, NULL, 1),
(29924, 22934, '4', 'Anna University ', '', 'MBA ', '2022', 84.00, '', 1, '2024-11-19 05:34:54', 0, NULL, 0, NULL, 1),
(29925, 22933, '4', 'Madras University ', '', '2', '2023', 75.00, '', 1, '2024-11-19 05:35:03', 0, NULL, 0, NULL, 1),
(29926, 22933, '4', 'Madras University ', '', 'Two ', '2023', 75.00, '', 1, '2024-11-19 05:35:48', 0, NULL, 0, NULL, 1),
(29927, 22925, '3', 'Sathyabama University ', '', 'B.E', '2019', 7.15, '', 1, '2024-11-19 05:59:50', 0, NULL, 0, NULL, 1),
(29928, 22937, '4', 'University of madras', '', 'MCA', '2022', 7.55, '', 1, '2024-11-19 06:40:00', 0, NULL, 0, NULL, 1),
(29929, 22939, '3', 'Madras university ', '', 'B com General ', '2023', 76.00, '', 1, '2024-11-19 06:58:28', 0, NULL, 0, NULL, 1),
(29930, 22938, '3', 'Madras University ', '', 'BSC microbiology ', '2022', 75.00, '', 1, '2024-11-19 07:26:04', 0, NULL, 0, NULL, 1),
(29931, 22941, '2', 'State board ', '', '', '2012', 80.00, '', 1, '2024-11-19 07:31:13', 0, NULL, 0, NULL, 1),
(29932, 22942, '4', 'Chennai University ', '', 'B com account finance ', '2023', 70.00, '', 1, '2024-11-19 07:34:39', 0, NULL, 0, NULL, 1),
(29933, 22940, '5', 'Annamal institute of hotel management ', '', '', '2022', 60.00, '', 1, '2024-11-19 07:46:30', 0, NULL, 0, NULL, 1),
(29934, 22943, '3', 'Anna University ', '', 'BE ECE', '2024', 78.00, '', 1, '2024-11-19 08:17:38', 0, NULL, 0, NULL, 1),
(29935, 22944, '3', 'anna university', '', 'b.e electronics and communication engineering ', '2024', 70.00, '', 1, '2024-11-19 08:25:45', 0, NULL, 0, NULL, 1),
(29936, 22946, '3', 'Bangalore university ', '', 'PUC ', '2022', 78.00, '', 1, '2024-11-19 10:37:47', 0, NULL, 0, NULL, 1),
(29937, 22948, '1', 'State Board ', '', '', '2017', 93.20, '', 1, '2024-11-20 04:37:49', 0, NULL, 0, NULL, 1),
(29938, 22948, '2', 'State Board ', '', '', '2019', 72.00, '', 1, '2024-11-20 04:38:06', 0, NULL, 0, NULL, 1),
(29939, 22948, '3', 'Bharathidasan University ', '', 'B.Sc. Mathematics ', '2022', 86.00, '', 1, '2024-11-20 04:38:47', 0, NULL, 0, NULL, 1),
(29940, 22948, '4', 'Bharathidasan University ', '', 'Master of Computer Applications', '2024', 76.00, '', 1, '2024-11-20 04:39:04', 0, NULL, 0, NULL, 1),
(29941, 22949, '3', 'PPG institute of technology ', '', 'BE Biomedical engineering ', '2024', 83.00, '', 1, '2024-11-20 05:42:54', 0, NULL, 0, NULL, 1),
(29942, 22950, '3', 'Nandha Arts And Science College ', '', 'BCom (Professional Accounting)', '2023', 67.20, '', 1, '2024-11-20 05:54:38', 0, NULL, 0, NULL, 1),
(29943, 22950, '2', 'State Board ', '', '', '2020', 55.50, '', 1, '2024-11-20 05:55:10', 0, NULL, 0, NULL, 1),
(29944, 22950, '1', 'State Board ', '', '', '2018', 63.60, '', 1, '2024-11-20 05:55:40', 0, NULL, 0, NULL, 1),
(29945, 22951, '3', 'Madras university', '', 'B.com ( c.s )', '2024', 75.00, '', 1, '2024-11-20 06:14:43', 0, NULL, 0, NULL, 1),
(29946, 22953, '3', 'University', '', 'B. Com', '2020', 58.00, '', 1, '2024-11-20 06:27:17', 0, NULL, 0, NULL, 1),
(29947, 22952, '3', 'MADRAS UNIVERSITY', '', 'B.com ( CS )', '2024', 75.00, '', 1, '2024-11-20 06:31:23', 0, NULL, 0, NULL, 1),
(29948, 22954, '3', 'Madras University', '', 'BBA', '2019', 70.00, '', 1, '2024-11-20 06:34:28', 0, NULL, 0, NULL, 1),
(29949, 22947, '3', 'University of madras', '', 'b.A.criminology', '2023', 68.00, '', 1, '2024-11-20 06:45:52', 0, NULL, 0, NULL, 1),
(29950, 22956, '3', 'Loyola ', '', 'Ba eco', '2019', 50.00, '', 1, '2024-11-20 07:01:22', 0, NULL, 0, NULL, 1),
(29951, 22957, '3', 'Autonomous ', '', 'BA.English ', '2024', 49.83, '', 1, '2024-11-20 07:21:17', 0, NULL, 0, NULL, 1),
(29952, 22959, '1', 'State Board', '', '', '2014', 94.40, '', 1, '2024-11-20 07:22:17', 0, NULL, 0, NULL, 1),
(29953, 22959, '2', 'State Board ', '', '', '2016', 85.40, '', 1, '2024-11-20 07:22:40', 0, NULL, 0, NULL, 1),
(29954, 22959, '3', 'Anna University ', '', 'B.E', '2020', 8.09, '', 1, '2024-11-20 07:23:13', 0, NULL, 0, NULL, 1),
(29955, 22958, '3', 'Paavai Engineering College', '', 'B.E', '2023', 72.00, '', 1, '2024-11-20 07:30:12', 0, NULL, 0, NULL, 1),
(29956, 22961, '3', 'Manomaniyam sunthanar University ', '', 'B.Com', '2024', 75.00, '', 1, '2024-11-20 09:17:27', 0, NULL, 0, NULL, 1),
(29957, 22960, '3', 'Tiruvalluvar univercity ', '', 'Bsc computer science ', '2023', 78.00, '', 1, '2024-11-20 09:17:58', 0, NULL, 0, NULL, 1),
(29958, 22960, '1', 'State board ', '', '', '2018', 75.00, '', 1, '2024-11-20 09:18:36', 0, NULL, 0, NULL, 1),
(29959, 22960, '2', 'State Board ', '', '', '2020', 65.00, '', 1, '2024-11-20 09:19:07', 0, NULL, 0, NULL, 1),
(29960, 22962, '3', 'University of madras ', '', 'B.com a&f ', '2023', 71.80, '', 1, '2024-11-20 09:40:54', 0, NULL, 0, NULL, 1),
(29961, 22963, '3', 'Government arts college ', '', 'BBA ', '2023', 60.10, '', 1, '2024-11-20 09:47:05', 0, NULL, 0, NULL, 1),
(29962, 22916, '3', 'Anna malai university', '', 'BCA', '2024', 75.00, '', 1, '2024-11-20 10:09:27', 0, NULL, 0, NULL, 1),
(29963, 22965, '3', 'Madras University ', '', 'B.com general ', '2023', 70.00, '', 1, '2024-11-20 01:36:55', 0, NULL, 0, NULL, 1),
(29964, 22966, '3', 'Madras university', '', 'B.com ', '2024', 70.00, '', 1, '2024-11-20 02:04:59', 0, NULL, 0, NULL, 1),
(29965, 22967, '3', 'Anna University ', '', 'BBM', '2020', 72.00, '', 1, '2024-11-20 03:42:01', 0, NULL, 0, NULL, 1),
(29966, 22969, '3', 'Madras University ', '', 'B.com General ', '2023', 80.00, '', 1, '2024-11-20 05:32:57', 0, NULL, 0, NULL, 1),
(29967, 22970, '3', 'Anna University ', '', 'BE', '2023', 7.80, '', 1, '2024-11-21 05:03:40', 0, NULL, 0, NULL, 1),
(29968, 22971, '3', 'Bharathiar University ', '', 'BCA - Bachelor of Computer Application ', '2023', 76.00, '', 1, '2024-11-21 05:22:19', 0, NULL, 0, NULL, 1),
(29969, 22971, '2', 'State Board of Tamilnadu ', '', '', '2020', 69.00, '', 1, '2024-11-21 05:22:57', 0, NULL, 0, NULL, 1),
(29970, 22971, '1', 'State Board of Tamilnadu ', '', '', '2018', 88.00, '', 1, '2024-11-21 05:23:14', 0, NULL, 0, NULL, 1),
(29971, 22973, '3', 'Theni Kammavar Sangam College of technology', '', 'B.E Electronics and Communication engineering', '2024', 88.00, '', 1, '2024-11-21 05:41:09', 0, NULL, 0, NULL, 1),
(29972, 22973, '2', 'Nadar Saraswathi Higher Secondary School,Theni', '', '', '2020', 80.10, '', 1, '2024-11-21 05:41:41', 0, NULL, 0, NULL, 1),
(29973, 22973, '1', 'Nadar Saraswathi Higher Secondary School,Theni', '', '', '2018', 94.40, '', 1, '2024-11-21 05:42:14', 0, NULL, 0, NULL, 1),
(29974, 22955, '4', 'sathyabama University ', '', 'mba', '2024', 6.90, '', 1, '2024-11-21 05:43:00', 0, NULL, 0, NULL, 1),
(29975, 22964, '4', 'sathyabama unversity ', '', 'mba ', '2024', 6.90, '', 1, '2024-11-21 05:43:10', 0, NULL, 0, NULL, 1),
(29976, 22972, '3', 'Alagappa university ', '', 'BCA', '2019', 70.00, '', 1, '2024-11-21 05:49:09', 0, NULL, 0, NULL, 1),
(29977, 22371, '3', 'MADRAS UNIVERSITY ', '', 'B.COM', '2020', 70.00, '', 1, '2024-11-21 06:30:42', 0, NULL, 0, NULL, 1),
(29978, 22974, '5', 'Madras ', '', 'Hotel management ', '2020', 84.00, '', 1, '2024-11-21 06:38:34', 0, NULL, 0, NULL, 1),
(29979, 22975, '3', 'Anna university ', '', 'B.E eCE', '2023', 7.66, '', 1, '2024-11-21 06:49:42', 0, NULL, 0, NULL, 1),
(29980, 22975, '4', 'Anna university ', '', 'BE', '2023', 76.00, '', 1, '2024-11-21 06:50:33', 1, '2024-11-21 06:50:41', 0, NULL, 0),
(29981, 22976, '3', 'Madras university ', '', 'B.sc computer science ', '2020', 79.00, '', 1, '2024-11-21 07:16:32', 0, NULL, 0, NULL, 1),
(29982, 22977, '3', 'Madras University ', '', 'BA economics ', '2024', 71.00, '', 1, '2024-11-21 07:27:34', 0, NULL, 0, NULL, 1),
(29983, 22978, '3', 'Madras University ', '', 'Bbm', '2022', 60.00, '', 1, '2024-11-21 09:59:14', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(29984, 22979, '3', 'University ', '', 'Bachelor of Business Administration', '2024', 80.00, '', 1, '2024-11-21 01:01:32', 0, NULL, 0, NULL, 1),
(29985, 22980, '3', 'Madurai Kamaraj University ', '', 'B A English ', '2018', 60.00, '', 1, '2024-11-21 01:12:37', 0, NULL, 0, NULL, 1),
(29986, 22982, '3', 'iiiier', '', 'b e computer science', '2020', 65.50, '', 1, '2024-11-22 04:29:41', 0, NULL, 0, NULL, 1),
(29987, 22983, '4', 'university of madras', '', 'msc it information technology', '2024', 63.00, '', 1, '2024-11-22 04:59:57', 0, NULL, 0, NULL, 1),
(29988, 22984, '3', 'University of Madras ', '', 'B.com general', '2024', 60.00, '', 1, '2024-11-22 05:40:05', 0, NULL, 0, NULL, 1),
(29989, 22986, '1', 'State board ', '', 'B E', '2017', 75.00, '', 1, '2024-11-22 05:46:41', 1, '2024-11-22 05:47:08', 0, NULL, 0),
(29990, 22986, '1', 'State board ', '', '', '2017', 75.00, '', 1, '2024-11-22 05:47:33', 0, NULL, 0, NULL, 1),
(29991, 22986, '2', 'State board ', '', '', '2019', 63.00, '', 1, '2024-11-22 05:48:00', 0, NULL, 0, NULL, 1),
(29992, 22986, '3', 'Loyola Institute Of Technology ', '', 'B.E', '2023', 7.56, '', 1, '2024-11-22 05:48:27', 0, NULL, 0, NULL, 1),
(29993, 22987, '3', 'Madras University ', '', 'BCA(Bachelor of Computer Application ', '2024', 73.95, '', 1, '2024-11-22 05:50:43', 0, NULL, 0, NULL, 1),
(29994, 22988, '3', 'Madras University ', '', 'Bcom(CA)', '2024', 60.00, '', 1, '2024-11-22 05:56:20', 0, NULL, 0, NULL, 1),
(29995, 22985, '3', 'Madras university', '', 'Bsc ', '2023', 60.00, '', 1, '2024-11-22 06:02:07', 0, NULL, 0, NULL, 1),
(29996, 22991, '3', 'KG college of Arts and science ', '', 'BSc Electronics and communication systems ', '2020', 68.00, '', 1, '2024-11-22 06:04:43', 0, NULL, 0, NULL, 1),
(29997, 22992, '3', 'Anna University ', '', 'BE', '2022', 81.00, '', 1, '2024-11-22 06:05:48', 0, NULL, 0, NULL, 1),
(29998, 22990, '3', 'Barathidasan ', '', 'Bsc computer science ', '2021', 83.00, '', 1, '2024-11-22 06:08:09', 0, NULL, 0, NULL, 1),
(29999, 22993, '3', 'University ', '', 'BCA', '2024', 60.00, '', 1, '2024-11-22 06:16:28', 0, NULL, 0, NULL, 1),
(30000, 22994, '3', 'University of madras', '', 'B.com', '2023', 57.00, '', 1, '2024-11-22 06:41:01', 0, NULL, 0, NULL, 1),
(30001, 22996, '3', 'University ', '', 'B.com(ISM)', '2024', 70.00, '', 1, '2024-11-22 07:25:34', 0, NULL, 0, NULL, 1),
(30002, 22995, '3', 'Madras university', '', 'B. Com(ism) ', '2024', 70.00, '', 1, '2024-11-22 07:27:40', 0, NULL, 0, NULL, 1),
(30003, 22998, '3', 'Madras University ', '', 'BCA ', '2024', 70.00, '', 1, '2024-11-22 07:33:36', 0, NULL, 0, NULL, 1),
(30004, 22997, '3', 'Prof of Dhanapalan college of arts and science ', '', 'BCA', '2024', 70.00, '', 1, '2024-11-22 07:34:00', 0, NULL, 0, NULL, 1),
(30005, 22999, '3', 'Bharathidasan university ', '', 'B.Sc CS', '2018', 71.00, '', 1, '2024-11-22 07:36:37', 0, NULL, 0, NULL, 1),
(30006, 22999, '2', 'State board', '', '', '2015', 67.00, '', 1, '2024-11-22 07:37:40', 0, NULL, 0, NULL, 1),
(30007, 22999, '1', 'State board ', '', '', '2013', 83.00, '', 1, '2024-11-22 07:38:07', 0, NULL, 0, NULL, 1),
(30008, 23000, '3', 'Periyar university ', '', 'BSC Chemistry ', '2024', 83.00, '', 1, '2024-11-22 07:38:16', 0, NULL, 0, NULL, 1),
(30009, 23000, '1', 'State board', '', '', '2019', 75.20, '', 1, '2024-11-22 07:39:18', 0, NULL, 0, NULL, 1),
(30010, 23000, '2', 'Stateboard', '', '', '2021', 83.90, '', 1, '2024-11-22 07:39:42', 0, NULL, 0, NULL, 1),
(30011, 23001, '3', 'Tamilnadu Agricultural University ', '', 'B.Sc(HONS) Agriculture ', '2022', 7.50, '', 1, '2024-11-22 07:41:26', 0, NULL, 0, NULL, 1),
(30012, 22989, '3', 'Tamilnadu Agriculture University ', '', 'B.sc', '2022', 76.00, '', 1, '2024-11-22 07:50:45', 0, NULL, 0, NULL, 1),
(30013, 23002, '4', 'mam college of engineering', '', 'mca', '2024', 76.00, '', 1, '2024-11-22 07:55:50', 0, NULL, 0, NULL, 1),
(30014, 23002, '3', 'srimadth aandavan arts and science  college', '', 'mathematics', '2022', 86.00, '', 1, '2024-11-22 07:57:16', 0, NULL, 0, NULL, 1),
(30015, 23004, '1', 'Kac jr college ', '', '', '2015', 68.00, '', 1, '2024-11-22 09:37:05', 0, NULL, 0, NULL, 1),
(30016, 23005, '3', 'Anna University ', '', 'B.E Cyber security ', '2024', 83.00, '', 1, '2024-11-22 11:21:33', 0, NULL, 0, NULL, 1),
(30017, 23006, '4', 'Madras University ', '', 'M.com', '2017', 74.00, '', 1, '2024-11-23 05:24:03', 0, NULL, 0, NULL, 1),
(30018, 23009, '3', 'Vels University ', '', 'B.Com computer application ', '2023', 70.00, '', 1, '2024-11-23 07:52:49', 0, NULL, 0, NULL, 1),
(30019, 23010, '3', 'Madras university', '', 'B. Com ( corporate secretaryship) ', '2023', 90.00, '', 1, '2024-11-23 07:57:27', 0, NULL, 0, NULL, 1),
(30020, 23008, '2', 'State board', '', '', '2019', 90.00, '', 1, '2024-11-23 08:07:42', 0, NULL, 0, NULL, 1),
(30021, 23011, '1', 'Dr. M. G. R Univercity', '', '', '2023', 89.00, '', 1, '2024-11-23 09:23:54', 0, NULL, 0, NULL, 1),
(30022, 23012, '3', 'Manonmaninam sundaranar University', '', 'BCom', '2024', 7.50, '', 1, '2024-11-23 11:48:47', 0, NULL, 0, NULL, 1),
(30023, 23014, '4', 'Central university Of tamil nadu', '', 'M. Sc', '2024', 8.32, '', 1, '2024-11-25 04:37:41', 1, '2024-11-25 04:37:59', 0, NULL, 1),
(30024, 23015, '3', 'Bharathiar University', '', 'B.com (CA)', '2023', 71.00, '', 1, '2024-11-25 04:48:48', 0, NULL, 0, NULL, 1),
(30025, 23016, '3', 'Bharathidhaasan university ', '', 'BSC. Computer science ', '2024', 74.00, '', 1, '2024-11-25 05:00:38', 0, NULL, 0, NULL, 1),
(30026, 23017, '3', 'Madras University ', '', 'BBA', '2020', 74.00, '', 1, '2024-11-25 05:01:59', 0, NULL, 0, NULL, 1),
(30027, 23016, '1', 'St.Antony\'s higher secondary school ', '', '', '2019', 64.40, '', 1, '2024-11-25 05:02:36', 0, NULL, 0, NULL, 1),
(30028, 23017, '2', 'State board ', '', '', '2017', 86.80, '', 1, '2024-11-25 05:03:14', 0, NULL, 0, NULL, 1),
(30029, 23017, '1', 'State board ', '', '', '2015', 89.80, '', 1, '2024-11-25 05:03:38', 0, NULL, 0, NULL, 1),
(30030, 23016, '2', 'St.Antony\'s Higher secondary school ', '', '', '2021', 73.60, '', 1, '2024-11-25 05:04:09', 0, NULL, 0, NULL, 1),
(30031, 23018, '3', 'Veltech college ', '', 'B.com general ', '2023', 75.00, '', 1, '2024-11-25 05:05:30', 0, NULL, 0, NULL, 1),
(30032, 23019, '3', 'Anna university', '', 'B.E', '2022', 74.00, '', 1, '2024-11-25 05:07:13', 0, NULL, 0, NULL, 1),
(30033, 23020, '3', 'annauniversity', '', 'btech- information technology', '2022', 7.46, '', 1, '2024-11-25 05:08:25', 0, NULL, 0, NULL, 1),
(30034, 23021, '3', 'Sethu Institute of technology ', '', 'B.E (ECE)', '2024', 85.00, '', 1, '2024-11-25 05:17:07', 0, NULL, 0, NULL, 1),
(30035, 23021, '2', 'Tamilnadu state board ', '', '', '2018', 88.00, '', 1, '2024-11-25 05:17:46', 0, NULL, 0, NULL, 1),
(30036, 23022, '3', 'Annamalai university,chidamabaram,cuddalore', '', 'Bachelore of egineering', '2022', 76.00, '', 1, '2024-11-25 05:20:53', 0, NULL, 0, NULL, 1),
(30037, 23021, '1', 'Tamilnadu state board ', '', '', '2020', 70.00, '', 1, '2024-11-25 05:23:54', 0, NULL, 0, NULL, 1),
(30038, 23023, '4', 'University of madras', '', 'MCA', '2024', 86.00, '', 1, '2024-11-25 05:52:21', 0, NULL, 0, NULL, 1),
(30039, 23023, '3', 'University of madras', '', 'Bsc.computer science ', '2022', 82.00, '', 1, '2024-11-25 05:52:47', 0, NULL, 0, NULL, 1),
(30040, 23024, '4', 'Vels Institute of Science, Technology & Advanced Studies', '', 'BSC HCM ', '2022', 85.00, '', 1, '2024-11-25 06:06:33', 0, NULL, 0, NULL, 1),
(30041, 23026, '3', 'Sri venkatesa perumal college of engineering and technology ', '', 'B. Tech', '2023', 83.00, '', 1, '2024-11-25 06:20:53', 0, NULL, 0, NULL, 1),
(30042, 23025, '3', 'Anna University ', '', 'B.A Economics', '2024', 66.00, '', 1, '2024-11-25 06:31:10', 0, NULL, 0, NULL, 1),
(30043, 23027, '3', 'Avichi college of arts and science ', '', 'B.com cs corporate secretaryship ', '2024', 70.00, '', 1, '2024-11-25 06:34:30', 0, NULL, 0, NULL, 1),
(30044, 23030, '4', 'hinduthan college of engineering and technology', '', 'mca', '2024', 83.00, '', 1, '2024-11-25 07:57:21', 0, NULL, 0, NULL, 1),
(30045, 23030, '3', ' bharathiyar university', '', 'bsc it', '2022', 60.00, '', 1, '2024-11-25 07:58:12', 0, NULL, 0, NULL, 1),
(30046, 23029, '4', 'Periyar university ', '', 'MA English', '2024', 70.00, '', 1, '2024-11-25 07:58:43', 0, NULL, 0, NULL, 1),
(30047, 23028, '3', 'Government College ', '', 'B.A tamil', '2024', 75.00, '', 1, '2024-11-25 08:04:09', 0, NULL, 0, NULL, 1),
(30048, 23031, '1', 'State', '', '', '2016', 66.00, '', 1, '2024-11-25 09:16:44', 0, NULL, 0, NULL, 1),
(30049, 23031, '5', 'Anna University ', '', 'Computer science engineering ', '2021', 82.00, '', 1, '2024-11-25 09:17:08', 0, NULL, 0, NULL, 1),
(30050, 23031, '3', 'Autou', '', 'B.TECH IT', '2024', 79.00, '', 1, '2024-11-25 09:17:32', 0, NULL, 0, NULL, 1),
(30051, 23032, '4', 'University of madras', '', 'MCA', '2023', 80.00, '', 1, '2024-11-25 10:13:04', 0, NULL, 0, NULL, 1),
(30052, 23034, '3', 'anna university', '', 'bachelore of engineering ', '2022', 78.00, '', 1, '2024-11-25 03:01:00', 0, NULL, 0, NULL, 1),
(30053, 23035, '3', 'Anna university ', '', 'BE CSE', '2021', 69.80, '', 1, '2024-11-26 03:51:55', 0, NULL, 0, NULL, 1),
(30054, 23036, '3', 'Thiruvalluvar university ', '', 'Bachelor of computer application ', '2022', 74.00, '', 1, '2024-11-26 06:05:09', 0, NULL, 0, NULL, 1),
(30055, 23037, '4', 'Vels University ', '', 'Master of Computer Application', '2023', 75.00, '', 1, '2024-11-26 06:21:07', 0, NULL, 0, NULL, 1),
(30056, 23039, '4', 'Madurai Kamarajar University ', '', 'M.sc', '2019', 71.00, '', 1, '2024-11-26 07:51:42', 1, '2024-11-26 07:52:46', 0, NULL, 0),
(30057, 23039, '3', 'Madurai Kamarajar University ', '', 'B.sc', '2019', 67.00, '', 1, '2024-11-26 07:53:00', 0, NULL, 0, NULL, 1),
(30058, 23039, '4', 'Madurai Kamarajar University ', '', 'M sc', '2021', 71.00, '', 1, '2024-11-26 07:53:29', 0, NULL, 0, NULL, 1),
(30059, 23038, '3', 'Madaras university', '', 'Ba .economic', '2021', 60.00, '', 1, '2024-11-26 07:56:22', 154, '2024-11-26 01:30:39', 0, NULL, 1),
(30060, 23038, '4', 'Madaras University ', '', 'Ma.economic', '2023', 60.00, '', 1, '2024-11-26 07:57:29', 0, NULL, 0, NULL, 1),
(30061, 23040, '3', 'Alagappa University', '', 'Bsc., Nautical Science', '2022', 72.00, '', 1, '2024-11-26 08:25:00', 0, NULL, 0, NULL, 1),
(30062, 23042, '3', 'RTMNU', '', 'BE', '2022', 74.72, '', 1, '2024-11-26 01:00:16', 0, NULL, 0, NULL, 1),
(30063, 23041, '3', 'University of madras', '', 'B.com', '2024', 7.10, '', 1, '2024-11-27 05:06:24', 0, NULL, 0, NULL, 1),
(30064, 23033, '3', 'Mgr University ', '', 'Bcom', '2024', 60.00, '', 1, '2024-11-27 05:17:19', 0, NULL, 0, NULL, 1),
(30065, 23044, '3', 'Alagappa University ', '', 'Bsc computer science ', '2023', 6.90, '', 1, '2024-11-27 05:44:38', 0, NULL, 0, NULL, 1),
(30066, 23043, '3', 'University of madras', '', 'Bcom(cS)', '2024', 72.50, '', 1, '2024-11-27 05:50:17', 1, '2024-11-27 05:51:21', 0, NULL, 0),
(30067, 23043, '3', 'University of madras ', '', 'Bcom(CS)', '2024', 72.50, '', 1, '2024-11-27 05:52:22', 0, NULL, 0, NULL, 1),
(30068, 23045, '3', 'SRM University ', '', 'Bca', '2024', 78.00, '', 1, '2024-11-27 06:03:28', 0, NULL, 0, NULL, 1),
(30069, 23046, '3', 'MADRAS UNIVERSITY ', '', 'B.COM', '2021', 63.50, '', 1, '2024-11-27 07:07:41', 0, NULL, 0, NULL, 1),
(30070, 22717, '3', 'Manonmaniyam sundaranar university ', '', 'BBA ', '2021', 90.00, '', 1, '2024-11-27 07:18:29', 0, NULL, 0, NULL, 1),
(30071, 23047, '4', 'Autonomous ', '', 'BE', '2024', 7.88, '', 1, '2024-11-27 07:18:31', 0, NULL, 0, NULL, 1),
(30072, 23048, '3', 'Nandha Arts And Science College ', '', 'Bcom( Professional Accounting)', '2023', 67.20, '', 1, '2024-11-27 07:32:47', 0, NULL, 0, NULL, 1),
(30073, 23051, '3', 'Prist university ', '', 'B.com general ', '2023', 75.00, '', 1, '2024-11-27 09:12:44', 0, NULL, 0, NULL, 1),
(30074, 23050, '3', 'Vels University ', '', 'Bca', '2023', 75.00, '', 1, '2024-11-27 09:19:42', 0, NULL, 0, NULL, 1),
(30075, 23052, '3', 'ANNA UNIVERSITY ', '', 'B.E', '2024', 8.62, '', 1, '2024-11-27 09:31:39', 0, NULL, 0, NULL, 1),
(30076, 23052, '2', 'STATE BOARD ', '', '', '2020', 88.00, '', 1, '2024-11-27 09:32:00', 0, NULL, 0, NULL, 1),
(30077, 23052, '1', 'STATE BOARD ', '', '', '2018', 96.40, '', 1, '2024-11-27 09:32:20', 0, NULL, 0, NULL, 1),
(30078, 23049, '3', 'Periyar university ', '', 'BSC Computer science ', '2023', 75.00, '', 1, '2024-11-27 10:02:56', 0, NULL, 0, NULL, 1),
(30079, 23053, '3', 'Thiruvalluvar university ', '', 'BCA', '2023', 65.00, '', 1, '2024-11-27 02:49:07', 0, NULL, 0, NULL, 1),
(30080, 23054, '3', 'Anna Adarsh college for womens', '', 'B.COM (CORPORATE SECRETERYSHIP)', '2022', 79.00, '', 1, '2024-11-28 05:04:01', 0, NULL, 0, NULL, 1),
(30081, 23055, '3', 'University ', '', 'BEHCSE', '2024', 86.00, '', 1, '2024-11-28 05:21:33', 0, NULL, 0, NULL, 1),
(30082, 23055, '2', 'Board', '', '', '2020', 58.00, '', 1, '2024-11-28 05:22:05', 0, NULL, 0, NULL, 1),
(30083, 23055, '1', 'Board', '', '', '2018', 65.00, '', 1, '2024-11-28 05:22:19', 0, NULL, 0, NULL, 1),
(30084, 23056, '3', 'Thiruvalluvar University ', '', 'BBA', '2018', 65.00, '', 1, '2024-11-28 05:57:28', 0, NULL, 0, NULL, 1),
(30085, 23057, '3', 'Anna university ', '', 'B-Tech IT', '2022', 78.00, '', 1, '2024-11-28 06:15:42', 0, NULL, 0, NULL, 1),
(30086, 23059, '4', 'Anna', '', 'MBA', '2023', 79.00, '', 1, '2024-11-28 06:39:10', 1, '2024-11-28 06:40:28', 0, NULL, 0),
(30087, 23059, '4', 'Anna university', '', 'MBA', '2023', 79.00, '', 1, '2024-11-28 06:40:04', 0, NULL, 0, NULL, 1),
(30088, 23058, '4', 'Anna university', '', 'MBA', '2024', 65.00, '', 1, '2024-11-28 06:45:08', 0, NULL, 0, NULL, 1),
(30089, 23060, '3', 'annamalai university', '', 'bsc cs', '2024', 65.00, '', 1, '2024-11-28 06:47:31', 0, NULL, 0, NULL, 1),
(30090, 23063, '3', 'Anna university ', '', 'Bsc Computer science ', '2024', 73.00, '', 1, '2024-11-28 06:48:28', 0, NULL, 0, NULL, 1),
(30091, 23061, '3', 'Annamalai university ', '', 'Bsc Computer science ', '2024', 75.00, '', 1, '2024-11-28 06:52:16', 0, NULL, 0, NULL, 1),
(30092, 23064, '3', 'Madras University ', '', 'Bsc visual communication ', '2019', 85.00, '', 1, '2024-11-28 07:05:16', 0, NULL, 0, NULL, 1),
(30093, 23062, '4', 'Annamalai university ', '', 'M.sc Physics ', '2024', 68.00, '', 1, '2024-11-28 07:27:40', 0, NULL, 0, NULL, 1),
(30094, 23062, '3', 'Periyar university ', '', 'B.sc Physics ', '2020', 68.00, '', 1, '2024-11-28 07:28:44', 0, NULL, 0, NULL, 1),
(30095, 23065, '3', 'Anna University', '', 'B.E. CSE', '2024', 78.80, '', 1, '2024-11-28 07:49:40', 0, NULL, 0, NULL, 1),
(30096, 23065, '2', 'State board of tamilnadu', '', '', '2020', 66.10, '', 1, '2024-11-28 07:50:16', 0, NULL, 0, NULL, 1),
(30097, 23065, '1', 'State board of tamilnadu', '', '', '2018', 80.20, '', 1, '2024-11-28 07:50:37', 0, NULL, 0, NULL, 1),
(30098, 23066, '4', 'Madras University ', '', 'MBA', '2025', 83.00, '', 1, '2024-11-28 08:06:48', 0, NULL, 0, NULL, 1),
(30099, 23066, '3', 'SRM UNIVERSITY ', '', 'BBA ', '2021', 89.00, '', 1, '2024-11-28 08:07:21', 0, NULL, 0, NULL, 1),
(30100, 23067, '3', 'Anna university ', '', 'B.E', '2024', 8.25, '', 1, '2024-11-28 11:54:45', 0, NULL, 0, NULL, 1),
(30101, 23069, '3', 'Arumugam pillai sethaiammal', '', 'BA.English ', '2024', 50.00, '', 1, '2024-11-28 04:10:54', 0, NULL, 0, NULL, 1),
(30102, 23068, '4', 'SRM University kattankulathur ', '', 'M.c', '2025', 83.40, '', 1, '2024-11-28 05:00:06', 0, NULL, 0, NULL, 1),
(30103, 23068, '2', 'State board ', '', '', '2020', 75.00, '', 1, '2024-11-28 05:00:36', 0, NULL, 0, NULL, 1),
(30104, 23068, '3', 'Arts college Autonomous Kumbakonam ', '', 'B.com', '2023', 76.60, '', 1, '2024-11-28 05:01:21', 0, NULL, 0, NULL, 1),
(30105, 23070, '3', 'University of madras ', '', 'B. SC ', '2014', 67.00, '', 1, '2024-11-29 05:15:25', 0, NULL, 0, NULL, 1),
(30106, 23071, '3', 'Madras University ', '', 'Bsc biochemistry ', '2011', 81.50, '', 1, '2024-11-29 05:31:31', 0, NULL, 0, NULL, 1),
(30107, 23072, '3', 'Anna university', '', 'B.tech Information technology', '2024', 8.00, '', 1, '2024-11-29 05:48:00', 0, NULL, 0, NULL, 1),
(30108, 23072, '2', 'State board of tamilnadu', '', '', '2020', 62.50, '', 1, '2024-11-29 05:49:27', 1, '2024-11-29 05:50:57', 0, NULL, 1),
(30109, 23072, '1', 'State board of tamilnadu', '', '', '2018', 74.00, '', 1, '2024-11-29 05:50:32', 0, NULL, 0, NULL, 1),
(30110, 23073, '3', 'Alagappa university ', '', 'BSC computer science ', '2022', 70.00, '', 1, '2024-11-29 06:18:28', 0, NULL, 0, NULL, 1),
(30111, 23073, '2', 'State board ', '', '', '2019', 78.17, '', 1, '2024-11-29 06:20:18', 0, NULL, 0, NULL, 1),
(30112, 23073, '1', 'State board ', '', '', '2017', 87.70, '', 1, '2024-11-29 06:20:46', 0, NULL, 0, NULL, 1),
(30113, 23074, '3', 'Madras ', '', 'Ba.economics ', '2023', 84.00, '', 1, '2024-11-29 06:31:57', 0, NULL, 0, NULL, 1),
(30114, 23075, '3', 'Alagappaa university karaikudi', '', 'BA Economics ', '2024', 62.00, '', 1, '2024-11-29 07:54:18', 0, NULL, 0, NULL, 1),
(30115, 23078, '3', 'Madras university ', '', 'B.com', '2016', 85.00, '', 1, '2024-11-29 08:05:36', 0, NULL, 0, NULL, 1),
(30116, 23076, '3', 'Anna University ', '', 'BE computer Science engineering ', '2023', 85.00, '', 1, '2024-11-29 09:14:22', 0, NULL, 0, NULL, 1),
(30117, 23079, '3', 'ANNA UNIVERSITY', '', 'B.E', '2016', 63.00, '', 1, '2024-11-29 10:41:42', 1, '2024-11-29 10:42:29', 0, NULL, 0),
(30118, 23079, '3', 'ANNA UNIVERSITY ', '', 'BE', '2016', 63.00, '', 1, '2024-11-29 10:44:00', 0, NULL, 0, NULL, 1),
(30119, 23080, '5', 'National institute of polytechnic', '', 'EEE', '2018', 86.00, '', 1, '2024-11-29 12:53:28', 0, NULL, 0, NULL, 1),
(30120, 23081, '3', 'Presidency college ', '', 'Bsc psychology ', '2023', 75.00, '', 1, '2024-11-30 06:37:57', 0, NULL, 0, NULL, 1),
(30121, 23081, '4', 'University of Madras ', '', 'Msc Hrd psychology ', '2025', 80.00, '', 1, '2024-11-30 06:38:19', 0, NULL, 0, NULL, 1),
(30122, 23082, '3', 'Mgr University art\'s and science', '', 'B.com General', '2024', 80.00, '', 1, '2024-11-30 09:38:16', 0, NULL, 0, NULL, 1),
(30123, 23083, '5', 'Dote ', '', 'Computer Science Engineering ', '2023', 77.00, '', 1, '2024-12-02 04:30:10', 0, NULL, 0, NULL, 1),
(30124, 23085, '3', 'Sri Krishna devaraya university ', '', 'B.sc computer science ', '2022', 8.48, '', 1, '2024-12-02 05:13:27', 0, NULL, 0, NULL, 1),
(30125, 23086, '3', 'Anna university ', '', 'BE / EEE', '2024', 82.00, '', 1, '2024-12-02 05:16:31', 0, NULL, 0, NULL, 1),
(30126, 23087, '3', 'Madurai kamaraj university ', '', 'Bsc computer Science', '2018', 70.00, '', 1, '2024-12-02 05:28:57', 0, NULL, 0, NULL, 1),
(30127, 23088, '3', 'stella maris', '', 'bcom ', '2024', 60.00, '', 1, '2024-12-02 05:53:10', 0, NULL, 0, NULL, 1),
(30128, 23089, '3', 'Madras University ', '', 'BBA ', '2022', 89.00, '', 1, '2024-12-02 06:04:12', 0, NULL, 0, NULL, 1),
(30129, 23090, '3', 'Alagappa university ', '', 'Ba English ', '2024', 70.00, '', 1, '2024-12-02 06:06:02', 0, NULL, 0, NULL, 1),
(30130, 23091, '3', 'Jeppiaar SRR Engineering College ', '', 'B.E', '2019', 70.00, '', 1, '2024-12-02 06:07:16', 0, NULL, 0, NULL, 1),
(30131, 23092, '3', 'Board', '', 'B.sc electronics communication science ', '2024', 75.00, '', 1, '2024-12-02 06:12:41', 0, NULL, 0, NULL, 1),
(30132, 23095, '3', 'Guru nanak college velachery ', '', 'BBA', '2024', 73.00, '', 1, '2024-12-02 06:48:21', 0, NULL, 0, NULL, 1),
(30133, 23097, '3', 'Thiruvalluvar university', '', 'Bcom(Bank management)', '2022', 65.00, '', 1, '2024-12-02 06:51:54', 0, NULL, 0, NULL, 1),
(30134, 23096, '4', 'Annamalai university', '', 'MSW(HR)', '2024', 65.00, '', 1, '2024-12-02 06:56:48', 0, NULL, 0, NULL, 1),
(30135, 23094, '3', 'Madras university', '', 'BBA', '2024', 79.00, '', 1, '2024-12-02 06:56:50', 0, NULL, 0, NULL, 1),
(30136, 0, '3', 'Barathidasan university ', '', 'BA English ', '2021', 88.00, '', 1, '2024-12-02 07:07:19', 1, '2024-12-07 06:23:14', 0, NULL, 0),
(30137, 23098, '3', 'Saveetha University ', '', 'B.com', '2024', 85.00, '', 1, '2024-12-02 07:09:47', 0, NULL, 0, NULL, 1),
(30138, 23093, '3', 'anna univer ', '', 'b.com', '2020', 80.00, '', 1, '2024-12-02 07:14:52', 0, NULL, 0, NULL, 1),
(30139, 23099, '3', 'PONDICHERRY UNIVERSITY ', '', 'B SC INFORMATION TECHNOLOGY ', '2020', 5.34, '', 1, '2024-12-02 07:36:25', 0, NULL, 0, NULL, 1),
(30140, 23100, '3', 'Madras university ', '', 'B.com ', '2019', 65.00, '', 1, '2024-12-02 09:08:09', 0, NULL, 0, NULL, 1),
(30141, 23101, '3', 'Medras university ', '', 'bachelor Of Computer application', '2021', 63.00, '', 1, '2024-12-02 10:08:45', 0, NULL, 0, NULL, 1),
(30142, 23102, '3', 'University of Madras', '', 'Bcom', '2023', 90.00, '', 1, '2024-12-02 11:54:32', 0, NULL, 0, NULL, 1),
(30143, 23104, '3', 'Bharadhisathan university ', '', 'B.sc (physics)', '2019', 7.00, '', 1, '2024-12-02 01:08:04', 0, NULL, 0, NULL, 1),
(30144, 23103, '4', 'Bharathiar University', '', 'M. Sc., ', '2022', 89.00, '', 1, '2024-12-02 05:22:14', 0, NULL, 0, NULL, 1),
(30145, 23103, '3', 'Periyar University', '', 'B. Sc., ', '2020', 92.20, '', 1, '2024-12-02 05:22:58', 0, NULL, 0, NULL, 1),
(30146, 23103, '2', 'State board', '', '', '2017', 79.90, '', 1, '2024-12-02 05:23:17', 0, NULL, 0, NULL, 1),
(30147, 23103, '1', 'State Board ', '', '', '2015', 93.40, '', 1, '2024-12-02 05:23:34', 0, NULL, 0, NULL, 1),
(30148, 23105, '4', 'Bharathidasan university ', '', 'M.sc Computer science ', '2024', 75.00, '', 1, '2024-12-03 04:58:49', 0, NULL, 0, NULL, 1),
(30149, 23106, '3', 'University ', '', 'bba', '2022', 90.00, '', 1, '2024-12-03 05:15:01', 0, NULL, 0, NULL, 1),
(30150, 23107, '3', 'Anna university ', '', 'B. E', '2024', 7.12, '', 1, '2024-12-03 05:31:24', 0, NULL, 0, NULL, 1),
(30151, 23107, '2', 'Alagappa University ', '', '', '2024', 67.50, '', 1, '2024-12-03 05:32:05', 0, NULL, 0, NULL, 1),
(30152, 23107, '1', 'Alagappa University ', '', '', '2018', 85.00, '', 1, '2024-12-03 05:33:31', 0, NULL, 0, NULL, 1),
(30153, 23108, '3', 'Anna University ', '', 'B.E CSE', '2024', 7.40, '', 1, '2024-12-03 05:34:47', 0, NULL, 0, NULL, 1),
(30154, 23108, '2', 'State board ', '', '', '2020', 56.00, '', 1, '2024-12-03 05:35:11', 0, NULL, 0, NULL, 1),
(30155, 23108, '1', 'State board ', '', '', '2018', 55.00, '', 1, '2024-12-03 05:35:39', 0, NULL, 0, NULL, 1),
(30156, 23110, '3', 'Bharathiyar university ', '', 'Bca', '2021', 75.00, '', 1, '2024-12-03 05:45:25', 0, NULL, 0, NULL, 1),
(30157, 23111, '3', 'anna univesity', '', 'b.tech', '2024', 7.20, '', 1, '2024-12-03 05:56:48', 0, NULL, 0, NULL, 1),
(30158, 23112, '3', 'Prist University Thanjavur ', '', 'Bcom Computer Application ', '2023', 85.00, '', 1, '2024-12-03 06:01:01', 0, NULL, 0, NULL, 1),
(30159, 23113, '3', 'Madras university', '', 'BBA', '2021', 67.00, '', 1, '2024-12-03 06:14:07', 0, NULL, 0, NULL, 1),
(30160, 23117, '3', 'Dr. Mgr educational and research institute ', '', 'B.sc', '2024', 7.41, '', 1, '2024-12-03 06:37:04', 0, NULL, 0, NULL, 1),
(30161, 23116, '3', 'Dr MGR education and research institute ', '', 'Bsc', '2024', 7.60, '', 1, '2024-12-03 06:37:41', 0, NULL, 0, NULL, 1),
(30162, 23114, '3', 'madrasa university', '', 'Bba', '2024', 7.00, '', 1, '2024-12-03 06:38:58', 0, NULL, 0, NULL, 1),
(30163, 23118, '4', 'Madurai kamaraj University ', '', '', '2023', 70.00, '', 1, '2024-12-03 06:40:40', 0, NULL, 0, NULL, 1),
(30164, 23119, '3', 'Madras University ', '', 'B.com accounting and finance ', '2020', 59.00, '', 1, '2024-12-03 06:51:14', 0, NULL, 0, NULL, 1),
(30165, 23115, '3', 'University of madras', '', 'B. Com ( corporate secretary ship) ', '2024', 7.00, '', 1, '2024-12-03 06:55:11', 0, NULL, 0, NULL, 1),
(30166, 23120, '4', 'Anna University ', '', 'MCA ', '2024', 7.59, '', 1, '2024-12-03 07:15:34', 0, NULL, 0, NULL, 1),
(30167, 23121, '4', 'Anna university', '', 'MCA', '2024', 7.15, '', 1, '2024-12-03 07:15:55', 0, NULL, 0, NULL, 1),
(30168, 23120, '3', 'University of Madras ', '', 'BCA ', '2022', 70.10, '', 1, '2024-12-03 07:16:30', 0, NULL, 0, NULL, 1),
(30169, 23120, '2', 'State Board ', '', '', '2019', 63.33, '', 1, '2024-12-03 07:17:10', 0, NULL, 0, NULL, 1),
(30170, 23121, '3', 'Tiruvalluvar university', '', 'Bsc computer science', '2022', 7.89, '', 1, '2024-12-03 07:17:15', 0, NULL, 0, NULL, 1),
(30171, 23120, '1', 'State Board ', '', '', '2017', 89.80, '', 1, '2024-12-03 07:17:47', 0, NULL, 0, NULL, 1),
(30172, 23121, '2', 'State Board', '', '', '2019', 52.00, '', 1, '2024-12-03 07:17:54', 0, NULL, 0, NULL, 1),
(30173, 23121, '1', 'State board', '', '', '2017', 79.00, '', 1, '2024-12-03 07:18:21', 0, NULL, 0, NULL, 1),
(30174, 23122, '3', 'shri shankarlal sundarbhai shasun jain College for women', '', 'Bachelor of business Administration', '2022', 77.30, '', 1, '2024-12-03 07:26:16', 0, NULL, 0, NULL, 1),
(30175, 23123, '3', 'University of madras ', '', 'Bca', '2012', 62.00, '', 1, '2024-12-03 09:05:14', 0, NULL, 0, NULL, 1),
(30176, 23123, '2', 'Magdalena school ', '', '', '2007', 78.00, '', 1, '2024-12-03 09:05:28', 0, NULL, 0, NULL, 1),
(30177, 23123, '1', 'Magdalena school ', '', '', '2005', 69.00, '', 1, '2024-12-03 09:05:45', 0, NULL, 0, NULL, 1),
(30178, 22936, '3', 'Cresent first grade college for womens', '', 'B.com', '2024', 80.00, '', 1, '2024-12-03 09:55:14', 0, NULL, 0, NULL, 1),
(30179, 22936, '1', 'Oxford pre university ', '', '', '2021', 70.00, '', 1, '2024-12-03 09:57:04', 0, NULL, 0, NULL, 1),
(30180, 23124, '3', 'The New College ', '', 'Bachelor of science computer science ', '2022', 80.00, '', 1, '2024-12-03 10:54:05', 0, NULL, 0, NULL, 1),
(30181, 23125, '3', 'Jntua', '', 'Btech ', '2021', 64.00, '', 1, '2024-12-04 04:48:06', 0, NULL, 0, NULL, 1),
(30182, 23126, '2', 'Stateboard ', '', '', '2015', 66.00, '', 1, '2024-12-04 06:59:31', 0, NULL, 0, NULL, 1),
(30183, 23128, '3', 'Vidhyaa giri college of arts and science', '', 'B.com (CA)', '2023', 70.00, '', 1, '2024-12-04 07:36:41', 0, NULL, 0, NULL, 1),
(30184, 23129, '3', 'Madras University ', '', 'B.com', '2024', 81.00, '', 1, '2024-12-04 08:26:50', 0, NULL, 0, NULL, 1),
(30185, 23130, '2', 'S.v university ', '', 'B.com computers ', '2020', 60.00, '', 1, '2024-12-04 01:40:28', 1, '2024-12-04 01:42:13', 0, NULL, 0),
(30186, 23130, '2', 'S.V University ', '', '', '2020', 60.00, '', 1, '2024-12-04 01:42:54', 0, NULL, 0, NULL, 1),
(30187, 23132, '3', 'Manonmaniam university ', '', 'B.com', '2024', 6.30, '', 1, '2024-12-05 04:25:45', 0, NULL, 0, NULL, 1),
(30188, 23133, '4', 'Bharadhidasan ', '', 'Ma', '2024', 59.00, '', 1, '2024-12-05 04:41:15', 0, NULL, 0, NULL, 1),
(30189, 23134, '3', 'The New College ', '', 'B.com corporate Secretaryship ', '2024', 78.00, '', 1, '2024-12-05 04:44:42', 0, NULL, 0, NULL, 1),
(30190, 23136, '3', 'Anna University ', '', 'B.E', '2017', 64.00, '', 1, '2024-12-05 05:20:51', 0, NULL, 0, NULL, 1),
(30191, 23136, '2', 'SFS matric hr sec school', '', '', '2013', 73.00, '', 1, '2024-12-05 05:21:41', 0, NULL, 0, NULL, 1),
(30192, 23136, '1', 'Vairams school ', '', '', '2011', 75.00, '', 1, '2024-12-05 05:22:00', 0, NULL, 0, NULL, 1),
(30193, 23137, '3', 'Anna University ', '', 'B Tech ', '2023', 82.00, '', 1, '2024-12-05 05:30:31', 0, NULL, 0, NULL, 1),
(30194, 23138, '3', 'Board', '', 'B.E', '2023', 7.19, '', 1, '2024-12-05 05:51:30', 0, NULL, 0, NULL, 1),
(30195, 23138, '5', 'University ', '', 'DECE', '2019', 69.00, '', 1, '2024-12-05 05:53:08', 0, NULL, 0, NULL, 1),
(30196, 23140, '3', 'Saveetha school of engineering ', '', 'B.E', '2024', 80.00, '', 1, '2024-12-05 05:56:08', 0, NULL, 0, NULL, 1),
(30197, 23135, '3', 'University ', '', 'Be .com gen', '2022', 50.00, '', 1, '2024-12-05 05:59:32', 0, NULL, 0, NULL, 1),
(30198, 23139, '3', 'Saveetha institute ', '', '', '2024', 72.00, '', 1, '2024-12-05 06:00:02', 0, NULL, 0, NULL, 1),
(30199, 23141, '3', 'Madras University ', '', 'B.com', '2023', 66.00, '', 1, '2024-12-05 06:04:14', 0, NULL, 0, NULL, 1),
(30200, 23142, '3', 'Annamalai University', '', 'bca', '2023', 72.00, '', 1, '2024-12-05 06:06:53', 0, NULL, 0, NULL, 1),
(30201, 23144, '3', 'Madha institute of engineering and technology / Anna University ', '', 'B.E electrical Electronics Engineering ', '2022', 78.00, '', 1, '2024-12-05 06:48:40', 0, NULL, 0, NULL, 1),
(30202, 23145, '3', 'Madras University ', '', 'B.com cs', '2023', 75.00, '', 1, '2024-12-05 07:02:28', 0, NULL, 0, NULL, 1),
(30203, 23146, '3', 'University of Madras ', '', 'B.sc Chemistry ', '2023', 65.00, '', 1, '2024-12-05 07:08:35', 0, NULL, 0, NULL, 1),
(30204, 23147, '3', 'saveetha university', '', 'tech it ', '2024', 8.23, '', 1, '2024-12-05 07:30:55', 0, NULL, 0, NULL, 1),
(30205, 23148, '3', 'kud', '', 'bca', '2024', 7.80, '', 1, '2024-12-05 07:54:29', 0, NULL, 0, NULL, 1),
(30206, 23149, '3', 'Madras University ', '', 'BA.english', '2023', 65.00, '', 1, '2024-12-05 10:01:11', 0, NULL, 0, NULL, 1),
(30207, 23150, '3', 'Dr.MGR University ', '', 'B.tech', '2023', 65.00, '', 1, '2024-12-05 10:08:15', 0, NULL, 0, NULL, 1),
(30208, 23151, '3', 'Periyar university ', '', 'B.com ca', '2023', 81.00, '', 1, '2024-12-05 12:22:13', 0, NULL, 0, NULL, 1),
(30209, 23152, '3', 'Madras University ', '', 'B.com', '2020', 82.00, '', 1, '2024-12-05 01:25:31', 0, NULL, 0, NULL, 1),
(30210, 23153, '3', 'Madras University ', '', 'B com', '2020', 53.00, '', 1, '2024-12-06 04:50:43', 0, NULL, 0, NULL, 1),
(30211, 23154, '3', 'DHANRAJ BAID COLLEGE', '', 'B. Com accounting and finance', '2024', 65.00, '', 1, '2024-12-06 05:15:45', 0, NULL, 0, NULL, 1),
(30212, 23156, '3', 'Madras University ', '', 'B.com(General)', '2022', 86.00, '', 1, '2024-12-06 05:34:14', 0, NULL, 0, NULL, 1),
(30213, 23155, '4', 'Rajiv Gandhi National Institute of youth development ', '', 'M.SC Cyber Security ', '2023', 67.00, '', 1, '2024-12-06 05:44:14', 0, NULL, 0, NULL, 1),
(30214, 23155, '3', 'SRM arts and science college ', '', 'B.sc computer science ', '2021', 77.00, '', 1, '2024-12-06 05:45:05', 0, NULL, 0, NULL, 1),
(30215, 23155, '2', 'State board ', '', '', '2018', 57.00, '', 1, '2024-12-06 05:47:05', 0, NULL, 0, NULL, 1),
(30216, 23158, '5', 'Anna university', '', '', '2015', 83.00, '', 1, '2024-12-06 05:48:16', 0, NULL, 0, NULL, 1),
(30217, 23157, '3', 'Madras University ', '', 'B.sc computer science ', '2021', 70.00, '', 1, '2024-12-06 05:48:50', 0, NULL, 0, NULL, 1),
(30218, 23159, '3', 'Anna university', '', 'B.E', '2021', 70.00, '', 1, '2024-12-06 06:11:38', 0, NULL, 0, NULL, 1),
(30219, 23160, '3', 'Sri muthukumarswamy college ', '', 'B.com', '2022', 72.00, '', 1, '2024-12-06 06:21:04', 0, NULL, 0, NULL, 1),
(30220, 23161, '3', ' University of Madras', '', 'B.com (G)', '2024', 66.00, '', 1, '2024-12-06 07:16:40', 0, NULL, 0, NULL, 1),
(30221, 23162, '3', 'madras University ', '', 'b.com a/f', '2023', 70.00, '', 1, '2024-12-06 01:01:14', 0, NULL, 0, NULL, 1),
(30222, 23164, '3', 'Thiruvalluvar university ', '', 'Bsc chemistry ', '2021', 78.00, '', 1, '2024-12-07 04:37:44', 0, NULL, 0, NULL, 1),
(30223, 23165, '4', 'Madurai kamaraj University ', '', 'M. A. ECONOMICS ', '2018', 63.00, '', 1, '2024-12-07 05:16:34', 0, NULL, 0, NULL, 1),
(30224, 23165, '3', 'Madurai kamaraj University ', '', 'B. A. ECONOMICS ', '2017', 50.26, '', 1, '2024-12-07 05:19:31', 0, NULL, 0, NULL, 1),
(30225, 23168, '3', 'Anna University ', '', 'B. E CSE ', '2024', 80.00, '', 1, '2024-12-07 06:01:06', 0, NULL, 0, NULL, 1),
(30226, 23168, '1', 'Chennai Government Higher secondary school ', '', '', '2018', 80.00, '', 1, '2024-12-07 06:01:46', 0, NULL, 0, NULL, 1),
(30227, 23168, '2', 'Chennai Government Higher secondary school ', '', '', '2020', 69.00, '', 1, '2024-12-07 06:02:12', 0, NULL, 0, NULL, 1),
(30228, 23169, '4', 'bharathidasan', '', 'mba', '2024', 75.00, '', 1, '2024-12-07 06:18:16', 0, NULL, 0, NULL, 1),
(30229, 23171, '3', 'Barathidasan university ', '', 'BA English ', '2021', 88.00, '', 1, '2024-12-07 06:24:58', 0, NULL, 0, NULL, 1),
(30230, 23170, '3', 'Bharathidhasan University', '', 'B.com (BM)', '2023', 80.00, '', 1, '2024-12-07 06:45:05', 0, NULL, 0, NULL, 1),
(30231, 23176, '3', 'Madras University ', '', 'B.a BUSSIENSS ECONOMIC ', '2024', 60.00, '', 1, '2024-12-07 09:11:04', 0, NULL, 0, NULL, 1),
(30232, 23177, '4', 'anna university ', '', 'mba', '2025', 6.32, '', 1, '2024-12-07 09:13:55', 0, NULL, 0, NULL, 1),
(30233, 23166, '3', 'Bharathidasan university trichy', '', 'B.com CA', '2023', 86.00, '', 1, '2024-12-07 11:30:26', 0, NULL, 0, NULL, 1),
(30234, 23167, '3', 'Bharathidasan university ', '', 'BCA', '2022', 88.30, '', 1, '2024-12-07 11:54:08', 0, NULL, 0, NULL, 1),
(30235, 23179, '3', 'the new college', '', 'bca', '2024', 60.00, '', 1, '2024-12-07 01:22:59', 0, NULL, 0, NULL, 1),
(30236, 23181, '3', 'apollo arts and science collage ', '', 'b.com', '2020', 70.00, '', 1, '2024-12-09 02:31:04', 0, NULL, 0, NULL, 1),
(30237, 23184, '3', 'Bharathidasan', '', 'Bcom', '2023', 68.00, '', 1, '2024-12-09 04:50:58', 0, NULL, 0, NULL, 1),
(30238, 23183, '3', 'SRM institute of science and Technology', '', 'B. Com', '2022', 40.00, '', 1, '2024-12-09 04:51:15', 0, NULL, 0, NULL, 1),
(30239, 23185, '3', 'Bharathidasan', '', 'B.COM (CA)', '2017', 70.64, '', 1, '2024-12-09 05:18:50', 0, NULL, 0, NULL, 1),
(30240, 23178, '1', 'Madras and jain University ', '', '', '2024', 70.00, '', 1, '2024-12-09 05:32:49', 1, '2024-12-09 05:33:23', 0, NULL, 0),
(30241, 23178, '1', 'Madras and jain University ', '', '', '2024', 70.00, '', 1, '2024-12-09 05:33:43', 0, NULL, 0, NULL, 1),
(30242, 23186, '3', 'bharathidasan University', '', 'B.sc computer science ', '2023', 74.00, '', 1, '2024-12-09 05:44:22', 0, NULL, 0, NULL, 1),
(30243, 23182, '3', 'Bs abdur Rahman crescent institute of science and technology ', '', 'BBA', '2024', 75.00, '', 1, '2024-12-09 06:02:29', 0, NULL, 0, NULL, 1),
(30244, 23187, '5', 'cristian polytechinic oddanchatram', '', 'dme', '2021', 65.00, '', 1, '2024-12-09 06:13:46', 0, NULL, 0, NULL, 1),
(30245, 23188, '3', 'Periyar university ', '', 'B.sc chemistry ', '2018', 73.00, '', 1, '2024-12-09 06:14:52', 0, NULL, 0, NULL, 1),
(30246, 23189, '3', 'Madras University ', '', 'B. Com', '2020', 70.00, '', 1, '2024-12-09 06:18:46', 0, NULL, 0, NULL, 1),
(30247, 23180, '3', 'dr. m g r university ', '', 'b.com general ', '2024', 70.00, '', 1, '2024-12-09 06:35:27', 0, NULL, 0, NULL, 1),
(30248, 23191, '3', 'Barathidhasan University ', '', 'Bsc.mathrmatics', '2023', 86.00, '', 1, '2024-12-09 06:45:44', 0, NULL, 0, NULL, 1),
(30249, 23190, '3', 'board ', '', 'b.com commerce ', '2024', 68.00, '', 1, '2024-12-09 06:45:58', 0, NULL, 0, NULL, 1),
(30250, 23193, '2', 'Tamilnadu sate government ', '', '', '2024', 50.00, '', 1, '2024-12-09 06:55:18', 0, NULL, 0, NULL, 1),
(30251, 23192, '5', 'Government of Tamil Nadu ', '', 'Diploma in Mechanical Engineering', '2019', 79.00, '', 1, '2024-12-09 06:59:54', 0, NULL, 0, NULL, 1),
(30252, 23194, '4', 'anna university', '', 'mca', '2024', 72.00, '', 1, '2024-12-09 07:35:37', 0, NULL, 0, NULL, 1),
(30253, 23194, '3', 'thiruvalluvar university', '', 'bca', '2022', 76.00, '', 1, '2024-12-09 07:39:18', 0, NULL, 0, NULL, 1),
(30254, 23195, '3', 'Madras University ', '', 'BCOM ', '2024', 78.00, '', 1, '2024-12-09 07:49:02', 0, NULL, 0, NULL, 1),
(30255, 23197, '4', 'Kalasalingam university ', '', 'MCA', '2024', 80.00, '', 1, '2024-12-09 08:15:42', 1, '2024-12-09 08:17:35', 0, NULL, 0),
(30256, 23197, '3', 'Kalasalingam Academy of Research and education ', '', 'BSC (cS)', '2022', 70.00, '', 1, '2024-12-09 08:16:55', 0, NULL, 0, NULL, 1),
(30257, 23197, '4', 'Kalasalingam Academy of Research and Education ', '', 'Master of Computer Applications (MCA)', '2024', 80.00, '', 1, '2024-12-09 08:18:39', 0, NULL, 0, NULL, 1),
(30258, 23196, '3', 'Madras University ', '', 'BBA', '2023', 80.00, '', 1, '2024-12-09 08:48:40', 0, NULL, 0, NULL, 1),
(30259, 23200, '3', 'madras University ', '', 'bcom general', '2024', 58.00, '', 1, '2024-12-10 04:02:45', 0, NULL, 0, NULL, 1),
(30260, 23202, '3', 'Bharathidhasan University ', '', 'Tamil', '2023', 75.00, '', 1, '2024-12-10 04:18:00', 0, NULL, 0, NULL, 1),
(30261, 23203, '3', 'Sri Padmavati Mahila ViswaVidyalayam ', '', 'Bachelor of technology ', '2024', 84.00, '', 1, '2024-12-10 05:04:18', 0, NULL, 0, NULL, 1),
(30262, 23204, '3', 'Madras ', '', 'B.com', '2021', 50.00, '', 1, '2024-12-10 05:40:42', 154, '2024-12-10 11:25:40', 0, NULL, 0),
(30263, 23205, '3', 'B S Abdur Rahman Crescent Institute of science and technology', '', 'B Tech IT', '2024', 7.00, '', 1, '2024-12-10 05:42:06', 0, NULL, 0, NULL, 1),
(30264, 23204, '2', 'State  board', '', '', '2018', 58.00, '', 1, '2024-12-10 05:45:55', 0, NULL, 0, NULL, 1),
(30265, 23206, '3', 'Madras university', '', 'B. Com', '2019', 81.00, '', 1, '2024-12-10 06:29:47', 0, NULL, 0, NULL, 1),
(30266, 23208, '4', 'University ', '', 'MBA', '2025', 81.70, '', 1, '2024-12-10 06:32:15', 0, NULL, 0, NULL, 1),
(30267, 23207, '3', 'saveetha school of engineering', '', 'btech', '2024', 72.00, '', 1, '2024-12-10 06:33:26', 0, NULL, 0, NULL, 1),
(30268, 23211, '3', 'Srm institute of science and technology ', '', 'BTech ', '2024', 7.30, '', 1, '2024-12-10 06:40:19', 0, NULL, 0, NULL, 1),
(30269, 23210, '3', 'Madras ', '', 'BCA', '2022', 81.00, '', 1, '2024-12-10 06:42:05', 0, NULL, 0, NULL, 1),
(30270, 23212, '3', 'SRM University ', '', 'BCA ', '2022', 71.00, '', 1, '2024-12-10 06:48:25', 0, NULL, 0, NULL, 1),
(30271, 23213, '3', 'Thiruvalur University ', '', 'Bsc physics ', '2022', 93.70, '', 1, '2024-12-10 06:57:56', 1, '2024-12-10 06:58:18', 0, NULL, 1),
(30272, 23214, '3', 'Thiruvalluvar university ', '', 'B.sc microbiology ', '2021', 60.00, '', 1, '2024-12-10 07:17:27', 0, NULL, 0, NULL, 1),
(30273, 23214, '4', 'Tiruvalluver university ', '', 'BSc microbiology ', '2021', 60.00, '', 1, '2024-12-10 07:34:52', 0, NULL, 0, NULL, 1),
(30274, 23199, '4', 'Annamalai university ', '', 'M.com', '2023', 63.00, '', 1, '2024-12-10 07:48:37', 0, NULL, 0, NULL, 1),
(30275, 23215, '4', 'Vels University ', '', 'Msc IT ', '2024', 67.00, '', 1, '2024-12-10 08:20:20', 0, NULL, 0, NULL, 1),
(30276, 23216, '3', 'Madras university', '', 'B.c.a', '2018', 72.00, '', 1, '2024-12-10 08:26:42', 0, NULL, 0, NULL, 1),
(30277, 23221, '3', 'University ', '', 'bba', '2023', 78.00, '', 1, '2024-12-11 05:43:30', 0, NULL, 0, NULL, 1),
(30278, 23223, '3', 'Madras University ', '', 'B.SC Computer science ', '2024', 75.00, '', 1, '2024-12-11 06:14:35', 0, NULL, 0, NULL, 1),
(30279, 23225, '3', 'Bharathidasan University, Trichy', '', 'Bsc', '2023', 87.00, '', 1, '2024-12-11 06:50:07', 0, NULL, 0, NULL, 1),
(30280, 23227, '3', 'Anna university ', '', 'B.e', '2023', 82.30, '', 1, '2024-12-11 07:53:38', 0, NULL, 0, NULL, 1),
(30281, 23228, '3', 'Anna university ', '', 'B.E Automobile engineering ', '2021', 74.00, '', 1, '2024-12-11 07:55:04', 0, NULL, 0, NULL, 1),
(30282, 23230, '4', 'Nagarjuna University ', '', 'Bcom', '2022', 85.00, '', 1, '2024-12-12 04:40:32', 0, NULL, 0, NULL, 1),
(30283, 23231, '3', 'karpagam academy of higher education', '', 'bachelor of engineering', '2024', 65.80, '', 1, '2024-12-12 05:10:20', 0, NULL, 0, NULL, 1),
(30284, 23233, '4', 'Madras University ', '', 'M.Sc., Computer Science ', '2023', 70.00, '', 1, '2024-12-12 06:14:53', 0, NULL, 0, NULL, 1),
(30285, 23234, '3', 'Agni college of technology ', '', 'B.E ', '2019', 6.70, '', 1, '2024-12-12 06:24:05', 0, NULL, 0, NULL, 1),
(30286, 23236, '3', 'Bharathidasan ', '', 'B.com', '2024', 65.00, '', 1, '2024-12-12 07:08:49', 0, NULL, 0, NULL, 1),
(30287, 23235, '3', 'University of Madras ', '', 'B.Com (accounting and finance)', '2024', 78.00, '', 1, '2024-12-12 07:34:35', 0, NULL, 0, NULL, 1),
(30288, 23235, '2', 'Tamil Nadu state government ', '', '', '2021', 80.00, '', 1, '2024-12-12 07:35:12', 0, NULL, 0, NULL, 1),
(30289, 23237, '3', 'Pondicherry university', '', 'Btech ', '2024', 7.64, '', 1, '2024-12-12 07:35:18', 0, NULL, 0, NULL, 1),
(30290, 23235, '1', 'Tamil Nadu state government ', '', '', '2019', 67.00, '', 1, '2024-12-12 07:35:58', 0, NULL, 0, NULL, 1),
(30291, 23238, '4', 'Anna university ', '', 'Mechanical engineering ', '2020', 80.00, '', 1, '2024-12-12 09:37:02', 0, NULL, 0, NULL, 1),
(30292, 23239, '3', 'Periyar Maniammai university ', '', 'BCA', '2022', 60.00, '', 1, '2024-12-13 05:34:32', 0, NULL, 0, NULL, 1),
(30293, 23240, '4', 'Pondicherry University ', '', 'Msc.computer science ', '2024', 63.00, '', 1, '2024-12-13 05:45:57', 0, NULL, 0, NULL, 1),
(30294, 23241, '4', 'Dr.MGR Educational and Research institute Chennai ', '', 'MCQ', '2024', 62.00, '', 1, '2024-12-13 05:47:29', 0, NULL, 0, NULL, 1),
(30295, 23172, '3', 'Anna University ', '', 'BE', '2023', 82.00, '', 1, '2024-12-13 06:08:28', 0, NULL, 0, NULL, 1),
(30296, 22769, '4', 'Anna University ', '', 'B. E CSE', '2024', 7.21, '', 1, '2024-12-13 06:29:42', 0, NULL, 0, NULL, 1),
(30297, 22769, '4', 'Anna university ', '', 'B.E CSE', '2024', 7.21, '', 1, '2024-12-13 06:30:20', 0, NULL, 0, NULL, 1),
(30298, 23242, '3', 'Manonmaniam sundaranar university ', '', 'B. A English', '2024', 70.00, '', 1, '2024-12-13 07:20:43', 0, NULL, 0, NULL, 1),
(30299, 23243, '3', 'Bharadhidasan ', '', 'Ba', '2023', 61.00, '', 1, '2024-12-13 09:07:17', 0, NULL, 0, NULL, 1),
(30300, 23244, '3', 'University of Madras ', '', 'B.sc computer science ', '2024', 72.00, '', 1, '2024-12-13 10:23:06', 0, NULL, 0, NULL, 1),
(30301, 23245, '3', 'University of Madras ', '', 'B.com(computer application)', '2024', 60.00, '', 1, '2024-12-13 11:28:30', 0, NULL, 0, NULL, 1),
(30302, 23246, '3', 'Madras University ', '', 'B.com CA', '2024', 8.00, '', 1, '2024-12-14 04:36:29', 0, NULL, 0, NULL, 1),
(30303, 23247, '3', 'Madras University ', '', 'B.com CA', '2024', 7.50, '', 1, '2024-12-14 04:46:06', 0, NULL, 0, NULL, 1),
(30304, 23248, '3', 'dr.mgr university', '', 'btech csc', '2023', 65.00, '', 1, '2024-12-14 05:21:04', 0, NULL, 0, NULL, 1),
(30305, 23249, '3', 'vels university', '', 'bca ', '2023', 75.00, '', 1, '2024-12-14 05:25:47', 0, NULL, 0, NULL, 1),
(30306, 23251, '3', 'Madras University ', '', 'Bsc.computer science ', '2024', 76.00, '', 1, '2024-12-14 05:35:32', 0, NULL, 0, NULL, 1),
(30307, 23250, '3', 'Madras University ', '', 'Bsc computer science ', '2024', 70.00, '', 1, '2024-12-14 05:35:43', 0, NULL, 0, NULL, 1),
(30308, 23252, '3', 'Vallal P T Lee Chengalvarayan Naicker Arts and science College ', '', 'Bsc computer science ', '2024', 73.00, '', 1, '2024-12-14 06:18:04', 0, NULL, 0, NULL, 1),
(30309, 23252, '2', 'Lourdes girl\'s Higher secondary school ', '', '', '2021', 74.00, '', 1, '2024-12-14 06:18:38', 0, NULL, 0, NULL, 1),
(30310, 23252, '1', 'Lourdes girl\'s Higher secondary school ', '', '', '2018', 55.00, '', 1, '2024-12-14 06:19:09', 0, NULL, 0, NULL, 1),
(30311, 23254, '4', 'Sri kalishwari institute of management and technology ', '', 'MBA', '2024', 75.00, '', 1, '2024-12-14 07:02:58', 0, NULL, 0, NULL, 1),
(30312, 23254, '3', 'Ayya Nadar janaki ammal college ', '', 'B.com(CA)', '2021', 74.00, '', 1, '2024-12-14 07:04:00', 0, NULL, 0, NULL, 1),
(30313, 23254, '1', 'P.A.C.R AMMANI AMMAL GIRLS HER SEC SCHOOL ', '', '', '2019', 80.00, '', 1, '2024-12-14 07:04:36', 0, NULL, 0, NULL, 1),
(30314, 23254, '2', 'P.A.C.R AMMANI AMMAL GIRLS HER SEC SCHOOL ', '', '', '2016', 82.00, '', 1, '2024-12-14 07:05:04', 0, NULL, 0, NULL, 1),
(30315, 23255, '3', 'Bharathiyar university', '', 'Bsc', '2015', 53.00, '', 1, '2024-12-14 07:12:28', 0, NULL, 0, NULL, 1),
(30316, 23253, '3', 'Sree sastha engineering college ', '', 'Be', '2012', 69.00, '', 1, '2024-12-14 07:36:57', 0, NULL, 0, NULL, 1),
(30317, 23256, '3', 'Dhanalakshmi college of engineering ', '', 'B.tech', '2024', 8.30, '', 1, '2024-12-14 09:04:57', 0, NULL, 0, NULL, 1),
(30318, 23257, '3', 'Periyar University ', '', 'Bsc computer science ', '2022', 78.00, '', 1, '2024-12-14 09:59:02', 0, NULL, 0, NULL, 1),
(30319, 23258, '3', 'St.joseph college of engineering ', '', 'B .E', '2023', 79.00, '', 1, '2024-12-14 10:02:53', 0, NULL, 0, NULL, 1),
(30320, 23259, '3', 'thiruvullvar uni ', '', 'bca', '2024', 69.00, '', 1, '2024-12-14 10:07:52', 0, NULL, 0, NULL, 1),
(30321, 23259, '1', 'sri lakshmi vidhyaliya matric higher sec  school', '', '', '2021', 75.00, '', 1, '2024-12-14 10:18:21', 0, NULL, 0, NULL, 1),
(30322, 23259, '2', 'Sri Lakshmi Vidhyaliya Matric Higher Sec School	', '', '', '2019', 70.00, '', 1, '2024-12-14 10:18:40', 0, NULL, 0, NULL, 1),
(30323, 23260, '1', 'State Board ', '', 'B.sc computer science ', '2017', 79.00, '', 1, '2024-12-14 10:40:35', 1, '2024-12-14 10:44:00', 0, NULL, 0),
(30324, 23260, '2', 'State Board ', '', '', '2017', 79.00, '', 1, '2024-12-14 10:41:19', 1, '2024-12-14 10:44:03', 0, NULL, 0),
(30325, 23260, '1', 'State Board ', '', '', '2017', 79.00, '', 1, '2024-12-14 10:44:13', 0, NULL, 0, NULL, 1),
(30326, 23260, '2', 'State Board ', '', '', '2019', 60.00, '', 1, '2024-12-14 10:44:35', 0, NULL, 0, NULL, 1),
(30327, 23260, '3', 'Madras university ', '', 'B.sc computer science ', '2022', 70.00, '', 1, '2024-12-14 10:44:57', 0, NULL, 0, NULL, 1),
(30328, 23261, '3', 'Dwarga doss Goverdhan doss vaishnav college', '', 'B.Com', '2024', 72.00, '', 1, '2024-12-14 01:08:30', 0, NULL, 0, NULL, 1),
(30329, 23263, '3', 'Anna university ', '', 'B.E cse', '2023', 7.80, '', 1, '2024-12-16 05:06:29', 0, NULL, 0, NULL, 1),
(30330, 23265, '3', 'National College ', '', 'B.COM', '2024', 71.00, '', 1, '2024-12-16 05:33:57', 0, NULL, 0, NULL, 1),
(30331, 23266, '4', 'University ', '', 'Msc.HRD.Psychology ', '2025', 70.00, '', 1, '2024-12-16 05:35:53', 0, NULL, 0, NULL, 1),
(30332, 23264, '3', 'DACE', '', 'BE', '2018', 71.00, '', 1, '2024-12-16 05:39:13', 1, '2024-12-16 05:41:03', 0, NULL, 1),
(30333, 23264, '2', 'Dhaanish matric hr sec school', '', '', '2014', 66.00, '', 1, '2024-12-16 05:39:48', 0, NULL, 0, NULL, 1),
(30334, 23264, '1', 'Kjem hr sec school', '', '', '2012', 81.00, '', 1, '2024-12-16 05:40:12', 0, NULL, 0, NULL, 1),
(30335, 23267, '4', 'srm ', '', 'btech ', '2022', 62.00, '', 1, '2024-12-16 05:41:49', 0, NULL, 0, NULL, 1),
(30336, 23267, '5', 'panimalar ', '', 'dece ', '2019', 74.00, '', 1, '2024-12-16 05:43:05', 0, NULL, 0, NULL, 1),
(30337, 23267, '1', 'cbse ', '', '', '2016', 72.00, '', 1, '2024-12-16 05:43:31', 0, NULL, 0, NULL, 1),
(30338, 23268, '3', 'Madras University ', '', 'BBA', '2024', 84.00, '', 1, '2024-12-16 06:01:01', 0, NULL, 0, NULL, 1),
(30339, 23262, '3', 'Govt pu college ', '', 'Puc', '2013', 65.00, '', 1, '2024-12-16 06:17:51', 0, NULL, 0, NULL, 1),
(30340, 23272, '3', 'dr.mgr university', '', 'bca', '2019', 65.00, '', 1, '2024-12-16 06:24:47', 0, NULL, 0, NULL, 1),
(30341, 23270, '3', 'university of madras', '', 'b.com', '2024', 60.00, '', 1, '2024-12-16 06:26:11', 0, NULL, 0, NULL, 1),
(30342, 23271, '3', 'Autonomous ', '', 'BA English and communicative English ', '2021', 52.00, '', 1, '2024-12-16 06:28:02', 0, NULL, 0, NULL, 1),
(30343, 23274, '3', 'Bharathi women\'s  arts college ', '', 'B.com general', '2021', 85.00, '', 1, '2024-12-16 06:34:32', 0, NULL, 0, NULL, 1),
(30344, 23273, '3', 'Ethiraj college for womens ', '', 'Bcom corporateship ', '2024', 57.00, '', 1, '2024-12-16 06:48:29', 0, NULL, 0, NULL, 1),
(30345, 23275, '3', 'M.I.E.T Engineering college ', '', 'B.E', '2024', 8.00, '', 1, '2024-12-16 07:00:47', 0, NULL, 0, NULL, 1),
(30346, 23278, '3', '.thiruthangal nadar college ', '', '.bcom general ', '2024', 68.00, '', 1, '2024-12-16 07:19:45', 0, NULL, 0, NULL, 1),
(30347, 23280, '3', 'Madras University ', '', 'B.com general ', '2024', 65.00, '', 1, '2024-12-16 07:35:22', 0, NULL, 0, NULL, 1),
(30348, 23279, '4', 'University of Madras ', '', 'B.com general ', '2024', 67.00, '', 1, '2024-12-16 07:36:39', 0, NULL, 0, NULL, 1),
(30349, 23283, '3', 'The new college ', '', 'Bachelor of science ', '2022', 78.00, '', 1, '2024-12-16 08:35:43', 0, NULL, 0, NULL, 1),
(30350, 23286, '3', 'Anna University', '', 'B.E-EEE', '2024', 8.13, '', 1, '2024-12-16 09:45:50', 0, NULL, 0, NULL, 1),
(30351, 23286, '2', 'State Board', '', '', '2020', 55.50, '', 1, '2024-12-16 09:47:19', 0, NULL, 0, NULL, 1),
(30352, 23286, '1', 'State Board ', '', '', '2018', 72.20, '', 1, '2024-12-16 09:47:50', 0, NULL, 0, NULL, 1),
(30353, 23287, '1', 'Board', '', '', '2017', 72.00, '', 1, '2024-12-16 09:49:20', 0, NULL, 0, NULL, 1),
(30354, 23287, '2', 'Board', '', '', '2019', 57.00, '', 1, '2024-12-16 09:52:50', 0, NULL, 0, NULL, 1),
(30355, 23287, '3', 'University ', '', 'Bca', '2022', 88.00, '', 1, '2024-12-16 09:54:02', 0, NULL, 0, NULL, 1),
(30356, 23287, '4', 'University ', '', 'Mca', '2024', 70.00, '', 1, '2024-12-16 09:55:53', 0, NULL, 0, NULL, 1),
(30357, 23288, '3', 'Bannari amman institute of technology ', '', 'Civil engineering ', '2019', 6.40, '', 1, '2024-12-16 10:06:58', 0, NULL, 0, NULL, 1),
(30358, 23289, '5', 'Board', '', 'Diploma in computer science engineering ', '2024', 50.00, '', 1, '2024-12-16 11:49:05', 0, NULL, 0, NULL, 1),
(30359, 23277, '3', 'University Madras', '', 'BBA', '2024', 60.00, '', 1, '2024-12-16 12:12:17', 0, NULL, 0, NULL, 1),
(30360, 23290, '3', 'University', '', 'B. Com', '2024', 68.00, '', 1, '2024-12-16 01:12:03', 0, NULL, 0, NULL, 1),
(30361, 23292, '3', 'madras University ', '', 'b..a. sociology ', '2021', 55.00, '', 1, '2024-12-17 04:00:43', 0, NULL, 0, NULL, 1),
(30362, 23296, '3', 'Anna university ', '', 'B. E-Computer Science Engineering ', '2024', 79.00, '', 1, '2024-12-17 05:40:23', 154, '2024-12-17 11:24:26', 0, NULL, 1),
(30363, 23295, '3', 'Madras University', '', 'BCA', '2022', 70.00, '', 1, '2024-12-17 05:48:16', 0, NULL, 0, NULL, 1),
(30364, 23293, '3', 'Anna University ', '', 'BE', '2024', 7.76, '', 1, '2024-12-17 05:50:54', 0, NULL, 0, NULL, 1),
(30365, 23297, '3', 'Madras University ', '', 'BA Economics ', '2024', 65.00, '', 1, '2024-12-17 05:54:36', 1, '2024-12-17 05:55:48', 0, NULL, 0),
(30366, 23297, '3', 'Madras University ', '', 'BA Economics ', '2024', 70.00, '', 1, '2024-12-17 05:56:00', 0, NULL, 0, NULL, 1),
(30367, 23294, '3', 'Anna University ', '', 'B.E.ECE', '2024', 80.00, '', 1, '2024-12-17 06:05:58', 0, NULL, 0, NULL, 1),
(30368, 13369, '1', 'State board', '', '', '2018', 86.00, '', 1, '2024-12-17 06:25:36', 1, '2024-12-17 06:27:11', 0, NULL, 1),
(30369, 13369, '2', 'State board', '', '', '2020', 79.00, '', 1, '2024-12-17 06:27:55', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(30370, 13369, '3', 'Madras university', '', 'Bcom corporate secretaryship', '2023', 84.00, '', 1, '2024-12-17 06:28:41', 0, NULL, 0, NULL, 1),
(30371, 23300, '3', 'Madras university ', '', 'B COM CS', '2024', 55.00, '', 1, '2024-12-17 07:02:29', 0, NULL, 0, NULL, 1),
(30372, 23299, '3', 'Anna university', '', 'B. E CIVIL ENGINEER', '2023', 7.63, '', 1, '2024-12-17 07:11:50', 0, NULL, 0, NULL, 1),
(30373, 23301, '4', 'University', '', 'M.B.A', '2016', 60.00, '', 1, '2024-12-17 07:14:45', 0, NULL, 0, NULL, 1),
(30374, 23302, '3', 'Madras University', '', 'B com (cS)', '2024', 50.00, '', 1, '2024-12-17 07:31:27', 0, NULL, 0, NULL, 1),
(30375, 23306, '3', 'madras university ', '', 'bsc.mathematics ', '2024', 62.00, '', 1, '2024-12-17 03:19:25', 0, NULL, 0, NULL, 1),
(30376, 23307, '4', 'University of madras ', '', 'B.com general', '2024', 75.00, '', 1, '2024-12-17 04:09:47', 0, NULL, 0, NULL, 1),
(30377, 23311, '3', 'Bharathithasan university', '', 'B.com', '2023', 63.00, '', 1, '2024-12-18 04:27:08', 0, NULL, 0, NULL, 1),
(30378, 23308, '3', 'Anna university ', '', 'B.E COMPUTER SCIENCE ENGINEERING ', '2024', 81.00, '', 1, '2024-12-18 04:29:31', 0, NULL, 0, NULL, 1),
(30379, 23310, '3', 'Alagappa University ', '', 'BBA', '2023', 5.80, '', 1, '2024-12-18 04:29:31', 0, NULL, 0, NULL, 1),
(30380, 23309, '3', 'periyar university salem', '', 'BCA', '2024', 60.44, '', 1, '2024-12-18 04:29:58', 1, '2024-12-18 04:30:15', 0, NULL, 1),
(30381, 23312, '3', 'Bharathidhasan university ', '', 'Bsc botany', '2024', 67.00, '', 1, '2024-12-18 04:33:50', 0, NULL, 0, NULL, 1),
(30382, 23314, '3', 'Anna university', '', 'BE -CSE', '2024', 8.20, '', 1, '2024-12-18 04:52:05', 0, NULL, 0, NULL, 1),
(30383, 23315, '3', 'University of Madras ', '', 'Biotechnology ', '2022', 71.00, '', 1, '2024-12-18 04:54:55', 0, NULL, 0, NULL, 1),
(30384, 23316, '5', 'Government polytechnic college ', '', 'DEEE', '2024', 70.00, '', 1, '2024-12-18 04:55:23', 0, NULL, 0, NULL, 1),
(30385, 7874, '5', 'Government polytechnic college ', '', 'Diploma ', '2020', 84.00, '', 1, '2024-12-18 05:02:07', 0, NULL, 0, NULL, 1),
(30386, 23317, '3', 'Bharathidhasan university ', '', 'BA ENGLISH ', '2022', 6.80, '', 1, '2024-12-18 05:04:43', 0, NULL, 0, NULL, 1),
(30387, 23318, '3', 'Anna university ', '', 'B.E', '2023', 84.50, '', 1, '2024-12-18 05:16:33', 0, NULL, 0, NULL, 1),
(30388, 23318, '2', 'State board ', '', '', '2019', 65.90, '', 1, '2024-12-18 05:16:58', 0, NULL, 0, NULL, 1),
(30389, 23318, '1', 'State board ', '', '', '2017', 93.50, '', 1, '2024-12-18 05:17:22', 0, NULL, 0, NULL, 1),
(30390, 23313, '4', 'Annamalai university ', '', 'Msc statistics ', '2024', 80.00, '', 1, '2024-12-18 05:34:34', 0, NULL, 0, NULL, 1),
(30391, 23319, '4', 'Bharathidasan uni7', '', 'Msc-Computer Science ', '2023', 99.00, '', 1, '2024-12-18 05:36:28', 0, NULL, 0, NULL, 1),
(30392, 23319, '4', 'Bharathidasan university ', '', 'Msc-Computer Science ', '2023', 89.00, '', 1, '2024-12-18 05:37:03', 0, NULL, 0, NULL, 1),
(30393, 23304, '5', 'board ', '', 'Computer Operator and Programing Assistant, Chenna', '2020', 70.00, '', 1, '2024-12-18 05:40:28', 1, '2024-12-18 05:41:01', 0, NULL, 1),
(30394, 23298, '3', 'Loyola Institute of technology ', '', 'BE ECE', '2020', 6.89, '', 1, '2024-12-18 05:44:37', 0, NULL, 0, NULL, 1),
(30395, 23320, '3', 'Bharathidasan university ', '', '', '2023', 88.00, '', 1, '2024-12-18 05:46:48', 0, NULL, 0, NULL, 1),
(30396, 23282, '3', 'Madras University ', '', 'Bcom', '2024', 60.00, '', 1, '2024-12-18 05:51:27', 0, NULL, 0, NULL, 1),
(30397, 23323, '3', 'Bangalore University ', '', 'B.COM', '2023', 63.00, '', 1, '2024-12-18 05:59:14', 0, NULL, 0, NULL, 1),
(30398, 23322, '1', 'Karnataka secondary education board', '', '', '2019', 56.00, '', 1, '2024-12-18 06:01:26', 0, NULL, 0, NULL, 1),
(30399, 23324, '4', 'Madras University ', '', 'BA Tamil literature ', '2020', 72.00, '', 1, '2024-12-18 06:24:36', 0, NULL, 0, NULL, 1),
(30400, 23325, '3', 'Autonomous ', '', 'BCA', '2024', 7.80, '', 1, '2024-12-18 06:26:25', 0, NULL, 0, NULL, 1),
(30401, 23321, '3', 'Bangalore city university', '', 'Bachelor of Arts', '2021', 48.00, '', 1, '2024-12-18 07:00:14', 0, NULL, 0, NULL, 1),
(30402, 23327, '3', 'Anna University ', '', 'B.E', '2024', 7.89, '', 1, '2024-12-18 03:20:07', 0, NULL, 0, NULL, 1),
(30403, 23329, '3', 'Anna University', '', 'Bachelor of Technology', '2023', 81.00, '', 1, '2024-12-19 04:51:48', 0, NULL, 0, NULL, 1),
(30404, 23331, '3', 'Manonmaniam Sundranar University Tirunelveli', '', 'Bcom', '2024', 7.40, '', 1, '2024-12-19 05:05:52', 0, NULL, 0, NULL, 1),
(30405, 23330, '3', 'Manonmaniam sundaranar university ', '', 'Bachelor of commerce ', '2024', 7.05, '', 1, '2024-12-19 05:07:39', 0, NULL, 0, NULL, 1),
(30406, 23332, '3', 'Anna University ', '', 'B.Tech', '2023', 76.00, '', 1, '2024-12-19 05:25:06', 0, NULL, 0, NULL, 1),
(30407, 23333, '3', 'Anna University ', '', 'B.Tech Information Technology ', '2023', 76.00, '', 1, '2024-12-19 05:25:11', 0, NULL, 0, NULL, 1),
(30408, 23332, '2', 'State board', '', '', '2019', 74.00, '', 1, '2024-12-19 05:26:19', 0, NULL, 0, NULL, 1),
(30409, 23333, '2', 'State Board', '', '', '2019', 67.66, '', 1, '2024-12-19 05:26:25', 1, '2024-12-19 05:28:50', 0, NULL, 1),
(30410, 23332, '1', 'State board ', '', '', '2017', 87.00, '', 1, '2024-12-19 05:26:55', 0, NULL, 0, NULL, 1),
(30411, 23333, '1', 'State Board', '', '', '2017', 86.60, '', 1, '2024-12-19 05:28:13', 0, NULL, 0, NULL, 1),
(30412, 23334, '3', 'St joseph college art and Science (Autonomous),Cuddalore. ', '', 'Bsc', '2024', 71.00, '', 1, '2024-12-19 05:42:00', 0, NULL, 0, NULL, 1),
(30413, 23335, '3', 'Kamarajar university ', '', 'information Technology ', '2019', 70.00, '', 1, '2024-12-19 05:46:58', 0, NULL, 0, NULL, 1),
(30414, 23336, '4', 'Madras University ', '', 'B.com', '2019', 58.27, '', 1, '2024-12-19 06:00:46', 0, NULL, 0, NULL, 1),
(30415, 23198, '3', 'University ', '', 'BA english', '2024', 75.00, '', 1, '2024-12-19 06:19:08', 0, NULL, 0, NULL, 1),
(30416, 23337, '3', 'Bharathidasan university ', '', 'B.sc.,Botany', '2020', 76.00, '', 1, '2024-12-19 06:38:14', 0, NULL, 0, NULL, 1),
(30417, 23337, '5', 'Bharathidasan university ', '', 'Diploma in computer Application ', '2018', 74.00, '', 1, '2024-12-19 06:39:09', 0, NULL, 0, NULL, 1),
(30418, 23338, '3', 'bharathidasan university', '', 'BCA', '2024', 69.00, '', 1, '2024-12-19 06:39:22', 0, NULL, 0, NULL, 1),
(30419, 23337, '1', 'State Board', '', '', '2015', 91.00, '', 1, '2024-12-19 06:39:40', 0, NULL, 0, NULL, 1),
(30420, 23341, '4', 'Madras University ', '', 'MA(hrm)', '2019', 73.00, '', 1, '2024-12-19 06:53:34', 0, NULL, 0, NULL, 1),
(30421, 23340, '3', 'University ', '', 'BCA', '2024', 65.00, '', 1, '2024-12-19 07:02:27', 0, NULL, 0, NULL, 1),
(30422, 23339, '3', 'Bharathidasan university ', '', 'Bca', '2024', 66.00, '', 1, '2024-12-19 07:04:54', 0, NULL, 0, NULL, 1),
(30423, 23342, '3', 'Bharathidasan university ', '', 'BSC cs', '2023', 73.20, '', 1, '2024-12-19 07:15:40', 0, NULL, 0, NULL, 1),
(30424, 23342, '1', 'Swami Vivekananda vidhya vanam Trichy ', '', '', '2018', 70.00, '', 1, '2024-12-19 07:16:18', 0, NULL, 0, NULL, 1),
(30425, 23342, '2', 'Little flower higher secondary school Kumbakonam ', '', '', '2020', 55.00, '', 1, '2024-12-19 07:16:48', 0, NULL, 0, NULL, 1),
(30426, 23326, '3', 'Periyar university ', '', 'B.sc(Computer science)', '2021', 88.00, '', 1, '2024-12-19 07:29:54', 0, NULL, 0, NULL, 1),
(30427, 23343, '3', 'Periyar university', '', 'Bsc-Computer science', '2021', 82.00, '', 1, '2024-12-19 07:34:56', 0, NULL, 0, NULL, 1),
(30428, 23344, '3', 'dr. mgr university ', '', 'bca', '2023', 65.00, '', 1, '2024-12-19 08:26:38', 0, NULL, 0, NULL, 1),
(30429, 23344, '2', 'shri krishnamsamy matrication school', '', '', '2020', 52.00, '', 1, '2024-12-19 08:28:05', 0, NULL, 0, NULL, 1),
(30430, 23344, '1', 'shri krishnamsamy matrication school', '', '', '2018', 50.00, '', 1, '2024-12-19 08:28:25', 0, NULL, 0, NULL, 1),
(30431, 23345, '3', 'Manonmaniyam sundarnar university college', '', 'B. Sc. Computer science', '2023', 6.50, '', 1, '2024-12-19 08:58:48', 0, NULL, 0, NULL, 1),
(30432, 23347, '3', 'Anna university', '', 'B. A Tourism And Travel Management', '2024', 60.00, '', 1, '2024-12-19 09:16:26', 0, NULL, 0, NULL, 1),
(30433, 23349, '4', 'Vels University ', '', 'Master of computer application ', '2024', 92.00, '', 1, '2024-12-19 09:31:13', 0, NULL, 0, NULL, 1),
(30434, 23349, '3', 'Madras University ', '', 'Bachelor of computer application ', '2022', 88.00, '', 1, '2024-12-19 09:31:43', 0, NULL, 0, NULL, 1),
(30435, 23350, '1', 'State board', '', '', '2017', 80.00, '', 1, '2024-12-19 09:32:13', 0, NULL, 0, NULL, 1),
(30436, 23350, '2', 'State board', '', '', '2019', 70.00, '', 1, '2024-12-19 09:33:06', 1, '2024-12-19 09:33:27', 0, NULL, 1),
(30437, 23350, '3', 'Barathidhasan university', '', 'Bca', '2022', 75.00, '', 1, '2024-12-19 09:34:09', 0, NULL, 0, NULL, 1),
(30438, 23350, '4', 'Vels university', '', 'Mca', '2024', 81.00, '', 1, '2024-12-19 09:35:40', 0, NULL, 0, NULL, 1),
(30439, 23348, '3', 'Anna University ', '', 'B.E - Bio Medical Engineering ', '2023', 81.00, '', 1, '2024-12-19 09:43:27', 0, NULL, 0, NULL, 1),
(30440, 23351, '5', 'University ', '', 'Diploma in medical laboratory ', '2023', 86.00, '', 1, '2024-12-19 10:15:42', 0, NULL, 0, NULL, 1),
(30441, 23353, '3', 'Madras University ', '', 'Bcom', '2020', 60.00, '', 1, '2024-12-19 10:36:59', 0, NULL, 0, NULL, 1),
(30442, 23352, '3', 'Manonmamiyam ', '', 'B.com', '2019', 70.00, '', 1, '2024-12-19 10:37:53', 0, NULL, 0, NULL, 1),
(30443, 23354, '3', 'anna university', '', 'b.e', '2019', 7.50, '', 1, '2024-12-19 10:54:56', 0, NULL, 0, NULL, 1),
(30444, 23355, '4', 'Bharathidasan University', '', 'MA', '2024', 77.00, '', 1, '2024-12-19 11:51:42', 0, NULL, 0, NULL, 1),
(30445, 23356, '3', 'Kongu arts and science college ', '', 'Bsc- computer science ', '2018', 7.00, '', 1, '2024-12-20 05:15:46', 0, NULL, 0, NULL, 1),
(30446, 23357, '3', 'Bharathidhasan  university ', '', 'BA.Tamil', '2023', 72.00, '', 1, '2024-12-20 05:19:13', 0, NULL, 0, NULL, 1),
(30447, 19996, '3', 'Bharadhidasan university ', '', 'Bsc cs', '2023', 86.00, '', 1, '2024-12-20 05:19:26', 0, NULL, 0, NULL, 1),
(30448, 23358, '3', 'Bharathidasan university ', '', 'B.com', '2024', 65.00, '', 1, '2024-12-20 05:20:19', 0, NULL, 0, NULL, 1),
(30449, 23359, '3', 'Bharathidasan university ', '', 'B.com(cA)', '2024', 70.00, '', 1, '2024-12-20 05:28:48', 0, NULL, 0, NULL, 1),
(30450, 23361, '3', 'Madras university ', '', 'BCA', '2023', 64.00, '', 1, '2024-12-20 06:07:53', 0, NULL, 0, NULL, 1),
(30451, 23360, '3', 'Anna university', '', 'BA Tourism And Travel Management', '2024', 60.00, '', 1, '2024-12-20 06:51:20', 0, NULL, 0, NULL, 1),
(30452, 23362, '5', 'Sri Durga Devi polytechnic college ', '', 'dEEE', '2022', 78.00, '', 1, '2024-12-20 07:44:21', 0, NULL, 0, NULL, 1),
(30453, 23364, '3', 'Madurai Kamarajar University ', '', 'B.com (CA)', '2024', 67.00, '', 1, '2024-12-20 07:49:49', 0, NULL, 0, NULL, 1),
(30454, 23363, '5', 'Dhanalakshmi Srinivasan polytechnic College ', '', 'DEEE', '2014', 69.00, '', 1, '2024-12-20 07:57:51', 0, NULL, 0, NULL, 1),
(30455, 23365, '3', 'AM Jain college ', '', 'BBA ', '2020', 70.00, '', 1, '2024-12-20 09:38:43', 0, NULL, 0, NULL, 1),
(30456, 23365, '2', 'Shalom matriculation Higher secondary school ', '', '', '2017', 50.00, '', 1, '2024-12-20 09:40:25', 0, NULL, 0, NULL, 1),
(30457, 23366, '4', 'Annamalai University ', '', 'M.Sc software Engineering ', '2022', 73.00, '', 1, '2024-12-21 04:08:36', 0, NULL, 0, NULL, 1),
(30458, 23367, '3', 'Bharathidasan university of Trichy ', '', 'B.A', '2022', 68.00, '', 1, '2024-12-21 04:10:58', 0, NULL, 0, NULL, 1),
(30459, 23369, '3', 'Government art and science ', '', 'B. Sc computer science', '2023', 70.00, '', 1, '2024-12-21 04:23:33', 0, NULL, 0, NULL, 1),
(30460, 23368, '3', 'bharathidasan university', '', 'BCA', '2024', 81.00, '', 1, '2024-12-21 04:25:00', 1, '2024-12-21 04:26:03', 0, NULL, 1),
(30461, 23370, '3', 'Kamaraj ', '', 'B.Com(ca)', '2024', 70.00, '', 1, '2024-12-21 04:45:43', 0, NULL, 0, NULL, 1),
(30462, 23372, '3', 'Annamalai university', '', 'Bsc mathematics', '2024', 74.90, '', 1, '2024-12-21 04:48:28', 0, NULL, 0, NULL, 1),
(30463, 23371, '4', 'Bharathidhasan university ', '', 'Pg', '2024', 77.00, '', 1, '2024-12-21 05:15:02', 0, NULL, 0, NULL, 1),
(30464, 23371, '4', 'Bharathidhasan university ', '', 'PG', '2024', 77.00, '', 1, '2024-12-21 05:15:58', 1, '2024-12-21 05:16:08', 0, NULL, 0),
(30465, 23373, '3', 'Bharathidhasan ', '', 'BBA', '2024', 55.00, '', 1, '2024-12-21 06:11:52', 0, NULL, 0, NULL, 1),
(30466, 23374, '3', 'THE NEW COLLEGE ', '', 'B,SC, COMPUTER SCIENCE ', '2023', 58.20, '', 1, '2024-12-21 07:22:05', 0, NULL, 0, NULL, 1),
(30467, 23376, '3', 'Mohamed sathak college of arts and science ', '', 'BSc.Visual Communication ', '2024', 70.00, '', 1, '2024-12-21 07:38:36', 0, NULL, 0, NULL, 1),
(30468, 23377, '3', 'kamaraj college of  engineering and technology', '', 'computer science and  engineering', '2023', 73.00, '', 1, '2024-12-21 08:01:59', 0, NULL, 0, NULL, 1),
(30469, 23379, '3', 'Jawarhala Nehru technological university', '', 'Btech', '2024', 73.00, '', 1, '2024-12-21 08:12:01', 0, NULL, 0, NULL, 1),
(30470, 23378, '3', 'Jawaharlal Nehru technological University ', '', 'Btech', '2024', 70.00, '', 1, '2024-12-21 08:12:08', 0, NULL, 0, NULL, 1),
(30471, 23375, '2', 'state', '', '', '2017', 55.00, '', 1, '2024-12-21 08:16:03', 0, NULL, 0, NULL, 1),
(30472, 23380, '3', 'Anna University ', '', 'B.E Mechatronics Engineering ', '2024', 80.00, '', 1, '2024-12-21 09:11:35', 0, NULL, 0, NULL, 1),
(30473, 23380, '2', 'State Board ', '', '', '2020', 66.00, '', 1, '2024-12-21 09:11:57', 1, '2024-12-21 09:12:50', 0, NULL, 1),
(30474, 23380, '1', 'State Board ', '', '', '2018', 85.00, '', 1, '2024-12-21 09:12:30', 0, NULL, 0, NULL, 1),
(30475, 23381, '1', 'Tamil Nadu State Borad', '', '', '2018', 80.00, '', 1, '2024-12-21 09:15:14', 1, '2024-12-21 09:16:44', 0, NULL, 1),
(30476, 23381, '2', 'Tamil Nadu State Borad', '', '', '2020', 70.00, '', 1, '2024-12-21 09:15:35', 0, NULL, 0, NULL, 1),
(30477, 23381, '3', 'Anna University', '', 'BE. Computer Science', '2024', 7.00, '', 1, '2024-12-21 09:16:01', 0, NULL, 0, NULL, 1),
(30478, 23382, '4', 'Thiruvalluvar university ', '', 'Msc maths', '2020', 79.00, '', 1, '2024-12-21 10:03:18', 0, NULL, 0, NULL, 1),
(30479, 23383, '4', 'Anna University ', '', 'MCA', '2023', 87.00, '', 1, '2024-12-22 04:50:25', 0, NULL, 0, NULL, 1),
(30480, 23384, '3', 'Sri Ramakrishna Institute of technology', '', 'B. E', '2022', 73.00, '', 1, '2024-12-23 04:54:08', 0, NULL, 0, NULL, 1),
(30481, 23384, '1', 'R. K. V matric higher secondary school', '', '', '2016', 92.00, '', 1, '2024-12-23 04:55:16', 0, NULL, 0, NULL, 1),
(30482, 23384, '2', 'R. K. V matric higher secondary school', '', '', '2018', 71.00, '', 1, '2024-12-23 04:55:58', 0, NULL, 0, NULL, 1),
(30483, 23385, '3', 'Bharadhidasan ', '', 'Bsc', '2022', 66.00, '', 1, '2024-12-23 05:03:03', 0, NULL, 0, NULL, 1),
(30484, 23386, '3', 'Alagappa university ', '', 'B.com(c.s)', '2018', 67.44, '', 1, '2024-12-23 05:52:30', 0, NULL, 0, NULL, 1),
(30485, 23386, '1', 'State board', '', '', '2013', 87.00, '', 1, '2024-12-23 05:53:26', 0, NULL, 0, NULL, 1),
(30486, 23386, '2', 'State board ', '', '', '2015', 86.00, '', 1, '2024-12-23 05:54:05', 0, NULL, 0, NULL, 1),
(30487, 23389, '3', 'Anna University ', '', 'b.e ece', '2023', 7.30, '', 1, '2024-12-23 06:26:14', 0, NULL, 0, NULL, 1),
(30488, 23387, '3', 'JNTUA', '', 'B.Tech', '2023', 70.00, '', 1, '2024-12-23 06:30:34', 0, NULL, 0, NULL, 1),
(30489, 22467, '3', 'Madurai kamaraj university ', '', 'B.com (CA)', '2024', 75.00, '', 1, '2024-12-23 06:40:29', 0, NULL, 0, NULL, 1),
(30490, 23390, '3', 'Madurai kamaraj university ', '', 'B.com(cA)', '2024', 70.00, '', 1, '2024-12-23 06:41:53', 0, NULL, 0, NULL, 1),
(30491, 23388, '3', 'vikrama simhapuri university', '', 'B. Com', '2023', 7.00, '', 1, '2024-12-23 06:45:14', 0, NULL, 0, NULL, 1),
(30492, 23391, '3', 'Thiruvallur university ', '', 'BSC.Maths ', '2020', 72.00, '', 1, '2024-12-23 07:05:37', 0, NULL, 0, NULL, 1),
(30493, 23393, '3', 'Madras university', '', 'B.com', '2024', 75.00, '', 1, '2024-12-23 08:06:56', 0, NULL, 0, NULL, 1),
(30494, 23392, '3', 'madras university', '', 'bsc computer science', '2024', 70.00, '', 1, '2024-12-23 08:54:51', 0, NULL, 0, NULL, 1),
(30495, 23394, '3', 'Madras University ', '', 'Bachelor of computer application ', '2024', 81.00, '', 1, '2024-12-23 09:22:16', 0, NULL, 0, NULL, 1),
(30496, 23396, '3', 'anna university', '', 'b tech', '2024', 82.00, '', 1, '2024-12-23 09:40:18', 0, NULL, 0, NULL, 1),
(30497, 23397, '3', 'Manomani sundarnar university ', '', 'B.sc computer science ', '2025', 75.00, '', 1, '2024-12-23 09:43:19', 0, NULL, 0, NULL, 1),
(30498, 23399, '3', 'Anna university ', '', 'BE (ECE)', '2024', 70.00, '', 1, '2024-12-23 11:47:30', 0, NULL, 0, NULL, 1),
(30499, 23400, '2', 'State board ', '', '', '2021', 75.00, '', 1, '2024-12-23 11:48:46', 0, NULL, 0, NULL, 1),
(30500, 23400, '3', 'KARPAGAM ACADEMY OF HIGHER EDUCATION ', '', 'B.Tech', '2025', 65.00, '', 1, '2024-12-23 11:49:23', 0, NULL, 0, NULL, 1),
(30501, 23399, '1', 'State board', '', '', '2018', 75.00, '', 1, '2024-12-23 11:49:27', 0, NULL, 0, NULL, 1),
(30502, 23401, '1', 'Stateboard', '', 'B.com', '2012', 79.00, '', 1, '2024-12-23 03:50:21', 1, '2024-12-23 03:52:09', 0, NULL, 0),
(30503, 23401, '2', 'Stateboard', '', '', '2014', 83.00, '', 1, '2024-12-23 03:50:50', 1, '2024-12-23 03:52:21', 0, NULL, 0),
(30504, 23401, '3', 'Autonomous ', '', 'B.com', '2017', 79.40, '', 1, '2024-12-23 03:51:10', 1, '2024-12-23 03:52:24', 0, NULL, 0),
(30505, 23401, '1', 'Stateboard ', '', '', '2014', 83.00, '', 1, '2024-12-23 03:52:40', 1, '2024-12-23 03:55:07', 0, NULL, 1),
(30506, 23401, '2', 'Stateboard ', '', '', '2012', 79.00, '', 1, '2024-12-23 03:53:01', 1, '2024-12-23 03:54:59', 0, NULL, 1),
(30507, 23401, '3', 'Autonomous ', '', 'B.com', '2017', 79.40, '', 1, '2024-12-23 03:53:22', 0, NULL, 0, NULL, 1),
(30508, 23398, '4', 'Bharathidasan university ', '', 'M.com', '2024', 75.00, '', 1, '2024-12-24 05:12:39', 0, NULL, 0, NULL, 1),
(30509, 23405, '2', 'matriculation', '', '', '2019', 71.00, '', 1, '2024-12-24 05:36:22', 0, NULL, 0, NULL, 1),
(30510, 23407, '3', 'Periyar University ', '', 'B.sc Textile and Fashion designing ', '2020', 71.00, '', 1, '2024-12-24 05:39:12', 1, '2024-12-24 05:39:30', 0, NULL, 1),
(30511, 23406, '3', 'Anna university ', '', 'B.E ', '2022', 80.00, '', 1, '2024-12-24 05:44:42', 0, NULL, 0, NULL, 1),
(30512, 23404, '3', 'Madras University ', '', 'B.sc plant biology and plant biotechnology ', '2024', 78.00, '', 1, '2024-12-24 05:57:04', 0, NULL, 0, NULL, 1),
(30513, 23409, '4', 'Manonmanium sundaranar university ', '', 'M.Sc', '2019', 81.00, '', 1, '2024-12-24 06:53:46', 0, NULL, 0, NULL, 1),
(30514, 23408, '3', 'Dr. Ambedkar Govt arts college', '', 'Bsc. Viscom', '2018', 55.00, '', 1, '2024-12-24 06:55:01', 0, NULL, 0, NULL, 1),
(30515, 23410, '1', 'Karnataka pu board ', '', '', '2024', 68.00, '', 1, '2024-12-24 07:26:30', 0, NULL, 0, NULL, 1),
(30516, 23395, '3', 'Sri sankara arts and science college(madras university ) ', '', 'Bachelor of computer application', '2024', 86.00, '', 1, '2024-12-24 10:23:49', 0, NULL, 0, NULL, 1),
(30517, 23395, '1', 'Vivekanandha matric higher secondary school', '', '', '2019', 91.00, '', 1, '2024-12-24 10:25:36', 0, NULL, 0, NULL, 1),
(30518, 23411, '3', 'Madras university ', '', 'BBA', '2022', 65.00, '', 1, '2024-12-24 11:52:36', 0, NULL, 0, NULL, 1),
(30519, 23403, '3', 'thiruvalluvar university', '', 'Bachelor of Mathematics', '2017', 80.00, '', 1, '2024-12-24 12:58:38', 0, NULL, 0, NULL, 1),
(30520, 23413, '3', 'University of Madars', '', 'BCA', '2022', 76.00, '', 1, '2024-12-26 04:39:12', 0, NULL, 0, NULL, 1),
(30521, 23414, '3', 'Anna University ', '', 'BE Computer Science and Engineering ', '2019', 60.40, '', 1, '2024-12-26 05:57:11', 0, NULL, 0, NULL, 1),
(30522, 23415, '4', 'DG vaishnav college ', '', 'MSc Information Technology ', '2024', 85.00, '', 1, '2024-12-26 06:10:20', 0, NULL, 0, NULL, 1),
(30523, 23415, '3', 'Ramakrishna mission Vivekananda College ', '', 'BCA', '2022', 83.00, '', 1, '2024-12-26 06:11:08', 0, NULL, 0, NULL, 1),
(30524, 23416, '3', 'Madras University ', '', 'Bcom cA', '2024', 60.00, '', 1, '2024-12-26 06:33:40', 0, NULL, 0, NULL, 1),
(30525, 23417, '3', 'Madras unversity', '', 'B.com computer application', '2024', 60.00, '', 1, '2024-12-26 06:35:18', 0, NULL, 0, NULL, 1),
(30526, 23419, '4', 'University of Madras ', '', 'MBA Marketing ', '2023', 84.00, '', 1, '2024-12-26 07:17:10', 0, NULL, 0, NULL, 1),
(30527, 23418, '3', 'Annamalai university', '', 'Bsc cS', '2024', 7.50, '', 1, '2024-12-26 07:21:30', 1, '2024-12-26 07:23:05', 0, NULL, 0),
(30528, 23418, '1', 'Govt higher sec school pathur', '', '', '2019', 7.00, '', 1, '2024-12-26 07:22:46', 1, '2024-12-26 07:23:01', 0, NULL, 0),
(30529, 23418, '1', 'Govt higher sec school pathur', '', '', '2019', 7.00, '', 1, '2024-12-26 07:23:32', 0, NULL, 0, NULL, 1),
(30530, 23418, '2', 'Govt higher sec school pathur', '', '', '2021', 7.50, '', 1, '2024-12-26 07:24:05', 0, NULL, 0, NULL, 1),
(30531, 23418, '3', 'Annamalai university', '', 'Bsc CS', '2024', 7.00, '', 1, '2024-12-26 07:24:46', 0, NULL, 0, NULL, 1),
(30532, 23420, '3', 'Sv university ', '', 'Bachelor of science ', '2024', 75.00, '', 1, '2024-12-26 08:42:28', 0, NULL, 0, NULL, 1),
(30533, 23421, '3', 'Anna University', '', 'B.E CSE', '2023', 82.00, '', 1, '2024-12-26 09:13:36', 0, NULL, 0, NULL, 1),
(30534, 23423, '3', 'Anna university ', '', 'B.Tech IT', '2022', 82.00, '', 1, '2024-12-26 02:33:09', 0, NULL, 0, NULL, 1),
(30535, 23424, '4', 'Bharathiyar university ', '', 'Master of international business ', '2019', 75.00, '', 1, '2024-12-27 05:24:06', 0, NULL, 0, NULL, 1),
(30536, 23425, '3', 'Anna University ', '', 'bE', '2023', 7.60, '', 1, '2024-12-27 06:40:18', 1, '2024-12-27 06:41:03', 0, NULL, 0),
(30537, 23425, '3', 'Anna University ', '', 'BE', '2023', 7.60, '', 1, '2024-12-27 06:41:58', 0, NULL, 0, NULL, 1),
(30538, 23427, '4', 'Anna university ', '', 'MCA', '2023', 78.00, '', 1, '2024-12-27 06:59:18', 0, NULL, 0, NULL, 1),
(30539, 23428, '5', 'TNDTE', '', 'Computer engineering ', '2022', 80.00, '', 1, '2024-12-27 07:11:10', 0, NULL, 0, NULL, 1),
(30540, 23430, '3', 'Madras university', '', 'Bca', '2022', 73.00, '', 1, '2024-12-27 07:25:46', 0, NULL, 0, NULL, 1),
(30541, 23431, '3', 'Autonomous ', '', 'bcom', '2024', 74.00, '', 1, '2024-12-27 07:36:45', 0, NULL, 0, NULL, 1),
(30542, 23429, '3', 'D. M. I college of engineering ', '', 'B. Tech IT', '2021', 7.78, '', 1, '2024-12-27 08:01:58', 0, NULL, 0, NULL, 1),
(30543, 23432, '3', 'Madras University ', '', 'Bsc computer science ', '2024', 65.00, '', 1, '2024-12-27 08:30:46', 0, NULL, 0, NULL, 1),
(30544, 23433, '3', 'alagappa university', '', 'bca', '2018', 74.00, '', 1, '2024-12-27 09:37:08', 0, NULL, 0, NULL, 1),
(30545, 23434, '3', 'University ', '', 'B.E', '2024', 83.00, '', 1, '2024-12-27 10:47:52', 0, NULL, 0, NULL, 1),
(30546, 23434, '2', 'Board ', '', '', '2020', 69.00, '', 1, '2024-12-27 10:48:23', 0, NULL, 0, NULL, 1),
(30547, 23434, '1', 'Board ', '', '', '2024', 83.00, '', 1, '2024-12-27 10:48:39', 0, NULL, 0, NULL, 1),
(30548, 23435, '2', 'Mariya auxilum', '', '', '2017', 79.00, '', 1, '2024-12-27 11:39:32', 0, NULL, 0, NULL, 1),
(30549, 23436, '3', 'Ifet college of engineering ', '', 'B.Tech', '2024', 8.25, '', 1, '2024-12-28 04:00:57', 0, NULL, 0, NULL, 1),
(30550, 23437, '4', 'MADARAS UNIVERSITY CHENNAI', '', 'MCA', '2022', 75.00, '', 1, '2024-12-28 05:06:57', 0, NULL, 0, NULL, 1),
(30551, 23438, '5', 'Dote', '', 'Computer engineering in diploma ', '2023', 77.00, '', 1, '2024-12-28 05:14:36', 0, NULL, 0, NULL, 1),
(30552, 23439, '3', 'Nazareth college of arts & science', '', 'Bba', '2015', 79.00, '', 1, '2024-12-28 05:28:29', 0, NULL, 0, NULL, 1),
(30553, 23442, '3', 'University of Madras ', '', 'B.com(cA)', '2022', 65.00, '', 1, '2024-12-28 06:20:35', 0, NULL, 0, NULL, 1),
(30554, 23441, '3', 'University of Madras ', '', 'B.com general ', '2022', 68.00, '', 1, '2024-12-28 06:27:23', 0, NULL, 0, NULL, 1),
(30555, 23444, '3', 'University of Madras', '', 'B.sc Computer Science', '2024', 62.00, '', 1, '2024-12-28 10:34:40', 0, NULL, 0, NULL, 1),
(30556, 23443, '3', 'Periyar Maniammai Institute of Science And Technology ', '', 'BCA', '2024', 70.40, '', 1, '2024-12-29 04:43:58', 0, NULL, 0, NULL, 1),
(30557, 23445, '3', 'Bharathidasan university', '', 'BA English', '2023', 60.00, '', 1, '2024-12-30 05:21:10', 0, NULL, 0, NULL, 1),
(30558, 23446, '3', 'University ', '', 'B.Com general ', '2024', 78.00, '', 1, '2024-12-30 05:49:10', 0, NULL, 0, NULL, 1),
(30559, 23449, '4', 'Pondicherry University ', '', 'MSW ', '2024', 72.00, '', 1, '2024-12-30 05:53:24', 1, '2024-12-30 05:54:18', 0, NULL, 0),
(30560, 23449, '1', 'State', '', '', '2016', 68.00, '', 1, '2024-12-30 05:54:50', 0, NULL, 0, NULL, 1),
(30561, 23449, '2', 'State', '', '', '2018', 53.00, '', 1, '2024-12-30 05:55:43', 0, NULL, 0, NULL, 1),
(30562, 23449, '3', 'Pondicherry University ', '', 'B.com', '2022', 63.00, '', 1, '2024-12-30 05:57:54', 0, NULL, 0, NULL, 1),
(30563, 23449, '4', 'Pondicherry University ', '', 'Msw ', '2024', 72.00, '', 1, '2024-12-30 05:58:22', 0, NULL, 0, NULL, 1),
(30564, 23450, '3', 'Pondicherry University community college ', '', 'BBA', '2022', 45.80, '', 1, '2024-12-30 06:01:54', 1, '2024-12-30 06:03:56', 0, NULL, 1),
(30565, 23451, '3', 'Madras University ', '', 'Bsc computer science ', '2024', 76.00, '', 1, '2024-12-30 06:02:19', 0, NULL, 0, NULL, 1),
(30566, 23447, '3', 'Periyar University ', '', 'Bsc cs ', '2021', 65.00, '', 1, '2024-12-30 06:02:43', 0, NULL, 0, NULL, 1),
(30567, 23453, '3', 'Madras university ', '', 'BSc Computer science ', '2024', 70.00, '', 1, '2024-12-30 06:09:07', 0, NULL, 0, NULL, 1),
(30568, 23448, '4', 'Pondicherry University ', '', 'Msw', '2024', 72.00, '', 1, '2024-12-30 06:09:17', 0, NULL, 0, NULL, 1),
(30569, 23452, '3', 'Bharadhidasan ', '', 'Bsc', '2024', 73.00, '', 1, '2024-12-30 06:24:31', 0, NULL, 0, NULL, 1),
(30570, 23454, '3', 'Anna University ', '', 'BE', '2023', 8.14, '', 1, '2024-12-30 07:00:26', 0, NULL, 0, NULL, 1),
(30571, 23455, '1', 'State board ', '', '', '2011', 95.00, '', 1, '2024-12-30 08:16:48', 0, NULL, 0, NULL, 1),
(30572, 23455, '2', 'State board ', '', '', '2013', 75.00, '', 1, '2024-12-30 08:17:06', 0, NULL, 0, NULL, 1),
(30573, 23455, '3', 'Anna University ', '', 'B.E civil ', '2017', 70.00, '', 1, '2024-12-30 08:17:43', 0, NULL, 0, NULL, 1),
(30574, 23456, '4', 'JantuA ', '', 'Btech ', '2024', 76.00, '', 1, '2024-12-30 10:37:56', 0, NULL, 0, NULL, 1),
(30575, 23457, '4', 'University ', '', 'Btech', '2024', 71.00, '', 1, '2024-12-30 10:38:55', 0, NULL, 0, NULL, 1),
(30576, 23459, '5', 'Ramya sathiyanathan polytechnic college ', '', 'DEEE', '2021', 71.57, '', 1, '2024-12-31 04:53:57', 0, NULL, 0, NULL, 1),
(30577, 23460, '3', 'University of Madras ', '', 'BSC COMPUTER SCIENCE ', '2023', 75.00, '', 1, '2024-12-31 04:55:41', 0, NULL, 0, NULL, 1),
(30578, 23461, '3', 'Queen Mary\'s College ', '', 'Bsc geography ', '2023', 85.00, '', 1, '2024-12-31 05:28:55', 0, NULL, 0, NULL, 1),
(30579, 23462, '3', 'Hindustan college of arts science ', '', 'B.com', '2017', 59.00, '', 1, '2024-12-31 05:44:08', 0, NULL, 0, NULL, 1),
(30580, 23464, '3', 'Anna university', '', 'B.E', '2021', 81.60, '', 1, '2024-12-31 06:03:38', 0, NULL, 0, NULL, 1),
(30581, 23463, '3', 'quad milath govt womens college', '', 'B.com (general)', '2022', 73.04, '', 1, '2024-12-31 06:48:47', 154, '2024-12-31 12:32:38', 0, NULL, 1),
(30582, 23466, '3', 'Sri venkateswarara university ', '', 'B. Com', '2024', 80.00, '', 1, '2024-12-31 07:10:36', 0, NULL, 0, NULL, 1),
(30583, 23465, '3', 'Sri Venkateswara university tirupathi', '', 'B.com computer ', '2024', 80.00, '', 1, '2024-12-31 07:14:32', 0, NULL, 0, NULL, 1),
(30584, 23467, '3', 'Anna University', '', '', '2019', 7.00, '', 1, '2024-12-31 07:35:17', 0, NULL, 0, NULL, 1),
(30585, 23468, '3', 'Medrass university ', '', 'BCA', '2022', 75.00, '', 1, '2024-12-31 08:39:30', 0, NULL, 0, NULL, 1),
(30586, 23469, '3', 'Anna Adarsh', '', '', '2014', 61.00, '', 1, '2024-12-31 09:02:50', 0, NULL, 0, NULL, 1),
(30587, 23470, '4', 'Anna University ', '', 'MBA', '2020', 75.00, '', 1, '2024-12-31 09:42:25', 0, NULL, 0, NULL, 1),
(30588, 23470, '3', 'Thiruvalluvar university ', '', 'B.com', '2018', 50.00, '', 1, '2024-12-31 09:43:02', 0, NULL, 0, NULL, 1),
(30589, 23470, '2', 'State board ', '', '', '2015', 50.00, '', 1, '2024-12-31 09:43:48', 0, NULL, 0, NULL, 1),
(30590, 23470, '1', 'State Board ', '', '', '2013', 71.00, '', 1, '2024-12-31 09:44:42', 0, NULL, 0, NULL, 1),
(30591, 23472, '4', 'SV university ', '', 'B.com ', '2018', 68.00, '', 1, '2025-01-02 04:43:02', 0, NULL, 0, NULL, 1),
(30592, 23473, '3', 'Mardas unversity', '', 'B. Com', '2022', 83.00, '', 1, '2025-01-02 04:51:14', 0, NULL, 0, NULL, 1),
(30593, 23476, '3', 'Mardas unversity', '', 'B. Com', '2022', 83.00, '', 1, '2025-01-02 05:08:20', 0, NULL, 0, NULL, 1),
(30594, 23475, '4', 'Anna University ', '', 'M.C.A', '2023', 67.00, '', 1, '2025-01-02 05:09:02', 0, NULL, 0, NULL, 1),
(30595, 23475, '3', 'Madhurai Kamarajar university ', '', 'Bsc,cs', '2021', 63.00, '', 1, '2025-01-02 05:10:36', 0, NULL, 0, NULL, 1),
(30596, 23474, '4', 'Anna university ', '', 'MCA', '2023', 73.00, '', 1, '2025-01-02 05:10:55', 0, NULL, 0, NULL, 1),
(30597, 23477, '3', 'Madras University ', '', 'B.com ( General)', '2023', 66.80, '', 1, '2025-01-02 06:55:40', 0, NULL, 0, NULL, 1),
(30598, 23478, '3', 'Madras University ', '', 'Bsc Electronics and communication science ', '2023', 82.00, '', 1, '2025-01-02 07:02:43', 0, NULL, 0, NULL, 1),
(30599, 23471, '3', 'Sri Ramachandra University ', '', 'Bachelor of Business Administration (B.B.A.)', '2024', 65.00, '', 1, '2025-01-02 07:05:30', 0, NULL, 0, NULL, 1),
(30600, 23471, '1', 'State board ', '', '', '2018', 62.00, '', 1, '2025-01-02 07:06:20', 1, '2025-01-02 07:07:11', 0, NULL, 1),
(30601, 23471, '2', 'State board ', '', '', '2020', 65.00, '', 1, '2025-01-02 07:06:45', 0, NULL, 0, NULL, 1),
(30602, 23479, '3', 'Madras University ', '', 'B.com(g)', '2020', 85.00, '', 1, '2025-01-02 07:53:45', 0, NULL, 0, NULL, 1),
(30603, 23480, '3', 'Hindusathan college of arts and science coimbatore ', '', 'B.com Accounting and finance ', '2020', 57.00, '', 1, '2025-01-02 11:41:28', 0, NULL, 0, NULL, 1),
(30604, 23486, '3', 'ethiraj', '', 'ba', '2014', 60.00, '', 1, '2025-01-03 04:27:35', 1, '2025-01-03 04:29:17', 0, NULL, 1),
(30605, 23486, '4', 'ethiraj ', '', 'ba', '2014', 60.00, '', 1, '2025-01-03 04:28:28', 1, '2025-01-03 04:28:56', 0, NULL, 0),
(30606, 23481, '3', 'Bon Secours arts &science college ', '', 'B.com', '2022', 70.00, '', 1, '2025-01-03 04:54:44', 0, NULL, 0, NULL, 1),
(30607, 23487, '3', 'Anna University ', '', 'BE', '2024', 79.00, '', 1, '2025-01-03 05:01:51', 0, NULL, 0, NULL, 1),
(30608, 23488, '3', 'ANNAMALAI UNIVERSITY ', '', 'BA ENGLISH ', '2024', 82.00, '', 1, '2025-01-03 05:39:05', 0, NULL, 0, NULL, 1),
(30609, 23489, '3', 'University ', '', 'Bachelor of computer application', '2022', 80.00, '', 1, '2025-01-03 06:08:37', 0, NULL, 0, NULL, 1),
(30610, 23492, '5', 'PSP polytechnic', '', 'Discontinue', '2015', 40.00, '', 1, '2025-01-03 06:23:38', 0, NULL, 0, NULL, 1),
(30611, 23490, '5', 'Chengalvaraya Nacker Polytechnic College', '', 'Diploma', '2021', 75.00, '', 1, '2025-01-03 06:30:27', 0, NULL, 0, NULL, 1),
(30612, 23491, '4', 'Madurai Kamaraj University', '', 'Post graduate in sanitary Inspector', '2022', 89.70, '', 1, '2025-01-03 06:47:37', 0, NULL, 0, NULL, 1),
(30613, 23482, '5', 'Kumaran ITI', '', '', '2020', 80.00, '', 1, '2025-01-03 07:10:36', 0, NULL, 0, NULL, 1),
(30614, 23484, '3', 'Madras university ', '', 'BA', '2024', 48.00, '', 1, '2025-01-03 07:14:34', 0, NULL, 0, NULL, 1),
(30615, 23483, '3', 'University of Madras', '', 'BA Defence and strategic studies', '2024', 62.00, '', 1, '2025-01-03 07:21:27', 1, '2025-01-03 07:23:04', 0, NULL, 1),
(30616, 23483, '1', 'State board of tamil nadu', '', '', '2019', 69.00, '', 1, '2025-01-03 07:22:25', 0, NULL, 0, NULL, 1),
(30617, 23483, '2', 'State board of tamil nadu', '', '', '2021', 81.50, '', 1, '2025-01-03 07:22:53', 0, NULL, 0, NULL, 1),
(30618, 23495, '1', 'State Board,', '', '', '2018', 79.00, '', 1, '2025-01-03 09:12:51', 0, NULL, 0, NULL, 1),
(30619, 23495, '2', 'state board', '', '', '2020', 60.00, '', 1, '2025-01-03 09:13:16', 0, NULL, 0, NULL, 1),
(30620, 23495, '3', 'Bharathidasan University', '', '', '2023', 73.00, '', 1, '2025-01-03 09:13:40', 0, NULL, 0, NULL, 1),
(30621, 23496, '3', 'Madras University', '', 'Bsc', '2023', 78.00, '', 1, '2025-01-03 09:40:12', 0, NULL, 0, NULL, 1),
(30622, 23496, '5', 'Hykin tech software academy', '', 'Diploma in computer application', '2024', 79.00, '', 1, '2025-01-03 09:41:20', 0, NULL, 0, NULL, 1),
(30623, 23497, '3', 'Bharathitahsan university ', '', 'BCA', '2023', 83.00, '', 1, '2025-01-03 10:01:01', 0, NULL, 0, NULL, 1),
(30624, 23498, '3', 'Madras University ', '', 'B.sc Bio Technology ', '2021', 65.00, '', 1, '2025-01-03 10:03:52', 0, NULL, 0, NULL, 1),
(30625, 23499, '4', 'Prist university', '', 'Mca', '2022', 84.50, '', 1, '2025-01-03 10:07:55', 0, NULL, 0, NULL, 1),
(30626, 23500, '3', 'DR.MGR EDUCATIONAL AND RESEARCH INSTITUTE ', '', 'B.COM GENERAL ', '2024', 74.74, '', 1, '2025-01-03 11:34:02', 0, NULL, 0, NULL, 1),
(30627, 23501, '3', 'bharathidasan university', '', 'bcom', '2022', 61.00, '', 1, '2025-01-03 03:35:12', 0, NULL, 0, NULL, 1),
(30628, 23502, '1', 'thaygu matric hr sec school ', '', '', '2014', 60.00, '', 1, '2025-01-04 04:46:17', 0, NULL, 0, NULL, 1),
(30629, 23502, '4', 'anna university ', '', 'b.e electrical', '2024', 65.00, '', 1, '2025-01-04 04:47:18', 0, NULL, 0, NULL, 1),
(30630, 23503, '4', 'Madras University ', '', 'M.com', '2024', 70.00, '', 1, '2025-01-04 05:07:11', 0, NULL, 0, NULL, 1),
(30631, 23504, '3', 'Sri Venkateswara College of Engineering Sriperumbudur ', '', 'B E', '2023', 80.00, '', 1, '2025-01-04 05:30:09', 0, NULL, 0, NULL, 1),
(30632, 23504, '5', 'Adhiparasakthi polytechnic College Melmaruvathur ', '', 'Diploma ', '2020', 90.00, '', 1, '2025-01-04 05:30:50', 0, NULL, 0, NULL, 1),
(30633, 23504, '2', 'Vivekananda matriculation Higher secondary school ', '', '', '2017', 80.00, '', 1, '2025-01-04 05:31:38', 0, NULL, 0, NULL, 1),
(30634, 23505, '4', 'Bharathidasan university ', '', 'MCA', '2024', 72.00, '', 1, '2025-01-04 05:37:00', 0, NULL, 0, NULL, 1),
(30635, 23505, '3', 'Bharathidasan university ', '', 'Bsc computer science ', '2022', 84.00, '', 1, '2025-01-04 05:37:44', 0, NULL, 0, NULL, 1),
(30636, 23506, '3', 'Anna University ', '', 'B.com general ', '2022', 82.00, '', 1, '2025-01-04 07:34:31', 0, NULL, 0, NULL, 1),
(30637, 23507, '5', 'v.ramakrishna polytechnic college', '', 'diploma in computer engineering ', '2024', 60.00, '', 1, '2025-01-04 08:32:35', 0, NULL, 0, NULL, 1),
(30638, 23509, '3', 'Madras University', '', 'b a', '2024', 73.00, '', 1, '2025-01-04 01:33:48', 0, NULL, 0, NULL, 1),
(30639, 23510, '3', 'Anna University ', '', 'B.E CSE', '2023', 91.00, '', 1, '2025-01-06 04:10:58', 0, NULL, 0, NULL, 1),
(30640, 23511, '4', 'Bharathidasan university', '', 'MBA', '2024', 69.00, '', 1, '2025-01-06 04:32:19', 0, NULL, 0, NULL, 1),
(30641, 23513, '4', 'BHARATHIDHAN UNIVERSITY ', '', 'Mba hr', '2023', 87.00, '', 1, '2025-01-06 04:33:43', 0, NULL, 0, NULL, 1),
(30642, 23514, '4', 'mop vaishanv college for womens', '', 'm.a human resoure management', '2025', 86.00, '', 1, '2025-01-06 04:49:45', 0, NULL, 0, NULL, 1),
(30643, 23515, '4', 'bishop heber college ', '', 'bioinformatics ', '2023', 80.00, '', 1, '2025-01-06 05:04:37', 0, NULL, 0, NULL, 1),
(30644, 23516, '4', 'Alagappa university', '', 'Computer science', '2023', 72.00, '', 1, '2025-01-06 05:19:36', 0, NULL, 0, NULL, 1),
(30645, 23516, '3', 'Raha durai singam arts and science college', '', 'B. Sc computer science', '2018', 68.00, '', 1, '2025-01-06 05:20:27', 0, NULL, 0, NULL, 1),
(30646, 23516, '2', 'St\'justin girls higher secondary school', '', '', '2014', 52.00, '', 1, '2025-01-06 05:21:17', 0, NULL, 0, NULL, 1),
(30647, 23516, '1', 'Alice millar girls high school', '', '', '2012', 79.00, '', 1, '2025-01-06 05:21:46', 0, NULL, 0, NULL, 1),
(30648, 23517, '3', 'University ', '', 'B.com computer application ', '2024', 80.00, '', 1, '2025-01-06 06:06:42', 1, '2025-01-06 06:08:57', 0, NULL, 0),
(30649, 23517, '1', 'Board ', '', '', '2019', 66.00, '', 1, '2025-01-06 06:09:35', 0, NULL, 0, NULL, 1),
(30650, 23517, '2', 'Board ', '', '', '2021', 83.00, '', 1, '2025-01-06 06:10:16', 0, NULL, 0, NULL, 1),
(30651, 23517, '3', 'University ', '', 'B.com computer application ', '2024', 80.00, '', 1, '2025-01-06 06:11:34', 0, NULL, 0, NULL, 1),
(30652, 23518, '3', 'Madras university', '', 'BSC Computer Science', '2024', 82.00, '', 1, '2025-01-06 06:19:10', 0, NULL, 0, NULL, 1),
(30653, 23519, '3', 'Board', '', 'BE', '2023', 77.80, '', 1, '2025-01-06 06:20:14', 0, NULL, 0, NULL, 1),
(30654, 23520, '3', 'Madras University ', '', 'Bsc', '2024', 76.00, '', 1, '2025-01-06 06:25:26', 0, NULL, 0, NULL, 1),
(30655, 23524, '4', 'Dr mgr educational and research institute ', '', 'Mba', '2023', 8.20, '', 1, '2025-01-06 06:52:47', 0, NULL, 0, NULL, 1),
(30656, 23521, '3', 'women christian college', '', 'ba', '2019', 65.00, '', 1, '2025-01-06 07:00:13', 0, NULL, 0, NULL, 1),
(30657, 23525, '3', 'Ms university', '', 'BCA', '2022', 55.00, '', 1, '2025-01-06 07:18:09', 0, NULL, 0, NULL, 1),
(30658, 23522, '3', 'University', '', 'B.com', '2024', 68.00, '', 1, '2025-01-06 07:27:35', 0, NULL, 0, NULL, 1),
(30659, 23523, '3', 'University', '', 'B.com', '2024', 60.00, '', 1, '2025-01-06 08:01:59', 0, NULL, 0, NULL, 1),
(30660, 23526, '1', 'State Board ', '', '', '2017', 68.00, '', 1, '2025-01-06 10:00:52', 0, NULL, 0, NULL, 1),
(30661, 23526, '3', 'Srm ', '', 'B.com', '2022', 6.50, '', 1, '2025-01-06 10:01:37', 0, NULL, 0, NULL, 1),
(30662, 23526, '2', 'State Board ', '', '', '2019', 6.50, '', 1, '2025-01-06 10:02:23', 0, NULL, 0, NULL, 1),
(30663, 23528, '3', 'Tamilnadu Agricultural University', '', 'B.Tech(Agricultural Information Technology) ', '2022', 73.32, '', 1, '2025-01-06 01:13:27', 0, NULL, 0, NULL, 1),
(30664, 23530, '3', 'Anna University ', '', 'BE CSE', '2024', 88.00, '', 1, '2025-01-07 04:12:12', 0, NULL, 0, NULL, 1),
(30665, 23531, '3', 'madras university', '', 'bsc maths', '2021', 75.00, '', 1, '2025-01-07 05:27:07', 0, NULL, 0, NULL, 1),
(30666, 23532, '3', 'Shrimathi Devkunvar Nanalal Bhatt Vaishnav College for Women', '', 'Bcom general', '2024', 79.00, '', 1, '2025-01-07 05:27:43', 0, NULL, 0, NULL, 1),
(30667, 23536, '3', 'SRM University ', '', 'B.com', '2022', 74.00, '', 1, '2025-01-07 05:42:14', 0, NULL, 0, NULL, 1),
(30668, 23533, '3', 'Madras university', '', 'B. Com (cS) ', '2022', 65.00, '', 1, '2025-01-07 05:47:13', 0, NULL, 0, NULL, 1),
(30669, 23534, '3', 'Kamarajar university ', '', 'B.a english ', '2022', 62.00, '', 1, '2025-01-07 05:49:52', 0, NULL, 0, NULL, 1),
(30670, 23535, '3', 'Madras University ', '', 'Bsc(idd)', '2022', 67.00, '', 1, '2025-01-07 05:55:18', 0, NULL, 0, NULL, 1),
(30671, 23529, '3', 'University ', '', 'B.com(Corporate secretaryship)', '2024', 74.00, '', 1, '2025-01-07 06:53:05', 0, NULL, 0, NULL, 1),
(30672, 23539, '3', 'Madras University ', '', 'B.sc(computer science)', '2021', 71.00, '', 1, '2025-01-07 06:53:58', 0, NULL, 0, NULL, 1),
(30673, 23540, '3', 'Anna University ', '', 'BE ', '2023', 7.50, '', 1, '2025-01-07 07:00:36', 0, NULL, 0, NULL, 1),
(30674, 23542, '3', 'BS Abduar Rahaman Crescent Institute Of Science And Technology ', '', 'BCA (CTIS)', '2024', 7.10, '', 1, '2025-01-07 09:18:11', 0, NULL, 0, NULL, 1),
(30675, 23544, '4', 'Srm institute of science and technology ', '', 'MCA', '2024', 77.90, '', 1, '2025-01-07 09:33:47', 0, NULL, 0, NULL, 1),
(30676, 23546, '4', 'Anna University', '', 'MBA', '2023', 77.70, '', 1, '2025-01-07 10:48:38', 0, NULL, 0, NULL, 1),
(30677, 23543, '4', 'St Thomas college of arts and science', '', 'M. Com', '2023', 80.00, '', 1, '2025-01-07 11:22:38', 0, NULL, 0, NULL, 1),
(30678, 23543, '3', 'St. Thomas college of arts and science', '', 'B. Com', '2021', 80.00, '', 1, '2025-01-07 11:23:05', 0, NULL, 0, NULL, 1),
(30679, 23541, '3', 'BHARATH University', '', 'B.SC COMPUTER SCIENCE', '2024', 65.20, '', 1, '2025-01-07 12:55:45', 0, NULL, 0, NULL, 1),
(30680, 23547, '3', 'Thiruvalluvar university ', '', 'BCA', '2024', 65.00, '', 1, '2025-01-08 04:05:22', 0, NULL, 0, NULL, 1),
(30681, 23548, '4', 'Bharathidasan University ', '', 'Chemistry ', '2024', 60.00, '', 1, '2025-01-08 04:18:41', 0, NULL, 0, NULL, 1),
(30682, 23549, '3', 'bharathiyar university', '', '', '2024', 65.00, '', 1, '2025-01-08 04:40:27', 0, NULL, 0, NULL, 1),
(30683, 23549, '1', 'state board', '', '', '2018', 73.00, '', 1, '2025-01-08 04:41:43', 0, NULL, 0, NULL, 1),
(30684, 23549, '2', 'state board', '', '', '2021', 81.00, '', 1, '2025-01-08 04:42:11', 0, NULL, 0, NULL, 1),
(30685, 23551, '1', 'StateBoard', '', '', '2018', 86.00, '', 1, '2025-01-08 04:45:21', 0, NULL, 0, NULL, 1),
(30686, 23551, '2', 'State board ', '', '', '2020', 63.00, '', 1, '2025-01-08 04:45:47', 0, NULL, 0, NULL, 1),
(30687, 23551, '3', 'Anna university ', '', 'BE computer science Engineering ', '2024', 82.00, '', 1, '2025-01-08 04:46:19', 0, NULL, 0, NULL, 1),
(30688, 23554, '1', 'state board', '', '', '2019', 56.00, '', 1, '2025-01-08 04:51:37', 0, NULL, 0, NULL, 1),
(30689, 23553, '3', 'Anna university', '', 'B. E-ECE', '2024', 83.00, '', 1, '2025-01-08 04:51:37', 0, NULL, 0, NULL, 1),
(30690, 23553, '2', 'State board', '', '', '2020', 71.00, '', 1, '2025-01-08 04:52:05', 0, NULL, 0, NULL, 1),
(30691, 23553, '1', 'State board', '', '', '2018', 86.00, '', 1, '2025-01-08 04:52:24', 1, '2025-01-08 04:52:40', 0, NULL, 1),
(30692, 23554, '2', 'state board', '', '', '2022', 69.67, '', 1, '2025-01-08 04:52:37', 0, NULL, 0, NULL, 1),
(30693, 23555, '3', 'Pondicherry University ', '', 'Bsc (cs)', '2024', 70.00, '', 1, '2025-01-08 04:53:18', 0, NULL, 0, NULL, 1),
(30694, 23554, '3', 'madras university', '', 'b.com computer application', '2024', 51.00, '', 1, '2025-01-08 04:53:42', 0, NULL, 0, NULL, 1),
(30695, 23557, '3', 'Madras University ', '', 'Bca', '2024', 70.00, '', 1, '2025-01-08 05:05:40', 0, NULL, 0, NULL, 1),
(30696, 23552, '3', 'Madras University ', '', 'Bsc', '2023', 72.00, '', 1, '2025-01-08 05:10:13', 0, NULL, 0, NULL, 1),
(30697, 23559, '3', 'Madras university ', '', 'BBA', '2019', 50.00, '', 1, '2025-01-08 05:14:16', 0, NULL, 0, NULL, 1),
(30698, 23558, '3', 'Periyar maniammai university', '', 'Bcom', '2024', 65.00, '', 1, '2025-01-08 05:26:45', 0, NULL, 0, NULL, 1),
(30699, 23550, '3', 'Madras University ', '', 'BCA(Computer application)', '2024', 70.00, '', 1, '2025-01-08 05:40:57', 0, NULL, 0, NULL, 1),
(30700, 23560, '3', 'University of Madras ', '', 'B.a defence and strategic studies ', '2023', 70.00, '', 1, '2025-01-08 05:45:58', 0, NULL, 0, NULL, 1),
(30701, 23562, '4', 'VTU ', '', 'MBA', '2024', 68.50, '', 1, '2025-01-08 06:09:16', 0, NULL, 0, NULL, 1),
(30702, 23562, '4', 'Vtu', '', 'MBA', '2024', 68.50, '', 1, '2025-01-08 06:10:04', 0, NULL, 0, NULL, 1),
(30703, 23563, '4', 'Bharathi Dhasan university ', '', 'Msc', '2020', 80.00, '', 1, '2025-01-08 06:22:15', 0, NULL, 0, NULL, 1),
(30704, 23556, '3', 'nazareth college of arts and science', '', 'bca', '2024', 65.00, '', 1, '2025-01-08 06:39:53', 0, NULL, 0, NULL, 1),
(30705, 23565, '3', 'gce thanjavur', '', 'b e', '2024', 65.00, '', 1, '2025-01-08 06:49:54', 0, NULL, 0, NULL, 1),
(30706, 23564, '5', 'Murugappa politechnic college', '', 'Mechanical engineering in tools and die making', '2022', 75.00, '', 1, '2025-01-08 06:59:29', 0, NULL, 0, NULL, 1),
(30707, 23566, '4', 'Presidency University ', '', 'MBA', '2023', 65.00, '', 1, '2025-01-08 07:27:19', 0, NULL, 0, NULL, 1),
(30708, 23567, '3', 'dr mgr univer ', '', 'b.com', '2024', 68.00, '', 1, '2025-01-08 10:07:54', 0, NULL, 0, NULL, 1),
(30709, 23568, '5', 'Mspvl', '', '', '2023', 72.00, '', 1, '2025-01-08 10:52:28', 0, NULL, 0, NULL, 1),
(30710, 23569, '3', 'Madras University ', '', 'B.Com (Computer applications)', '2024', 67.00, '', 1, '2025-01-08 11:28:31', 0, NULL, 0, NULL, 1),
(30711, 23570, '2', 'Madras University ', '', '', '2021', 80.00, '', 1, '2025-01-08 11:55:42', 0, NULL, 0, NULL, 1),
(30712, 23571, '3', 'Manonmaniam sundaranar university', '', 'B sc', '2017', 65.00, '', 1, '2025-01-09 04:55:18', 0, NULL, 0, NULL, 1),
(30713, 23572, '3', 'anna univ ', '', 'bba ', '2021', 70.00, '', 1, '2025-01-09 05:25:44', 0, NULL, 0, NULL, 1),
(30714, 23573, '1', 'State board', '', 'B.com', '2018', 65.00, '', 1, '2025-01-09 05:45:09', 0, NULL, 0, NULL, 1),
(30715, 23573, '2', 'State board ', '', '', '2020', 72.00, '', 1, '2025-01-09 05:45:56', 0, NULL, 0, NULL, 1),
(30716, 23573, '3', 'Veltech University ', '', 'B.com', '2024', 78.00, '', 1, '2025-01-09 05:46:28', 0, NULL, 0, NULL, 1),
(30717, 23576, '5', 'Dote', '', 'DME ', '2021', 75.00, '', 1, '2025-01-09 06:32:45', 0, NULL, 0, NULL, 1),
(30718, 23578, '3', 'Medras University ', '', 'B.com ', '2024', 70.00, '', 1, '2025-01-09 06:33:45', 0, NULL, 0, NULL, 1),
(30719, 23577, '4', 'Bangalore University ', '', 'B,B,M', '1998', 55.00, '', 1, '2025-01-09 06:39:29', 0, NULL, 0, NULL, 1),
(30720, 23579, '3', 'Bharathiyar university ', '', 'BSc', '2023', 78.00, '', 1, '2025-01-09 07:00:05', 0, NULL, 0, NULL, 1),
(30721, 23579, '2', 'State ', '', 'BSc', '2020', 69.00, '', 1, '2025-01-09 07:01:24', 1, '2025-01-09 07:02:34', 0, NULL, 1),
(30722, 23579, '1', 'State', '', '', '2018', 89.00, '', 1, '2025-01-09 07:01:44', 0, NULL, 0, NULL, 1),
(30723, 23580, '3', 'Anna university', '', 'BE', '2022', 7.80, '', 1, '2025-01-09 07:11:10', 0, NULL, 0, NULL, 1),
(30724, 23580, '2', 'State board', '', '', '2018', 69.00, '', 1, '2025-01-09 07:11:46', 0, NULL, 0, NULL, 1),
(30725, 23580, '1', 'State board', '', '', '2016', 85.20, '', 1, '2025-01-09 07:12:36', 0, NULL, 0, NULL, 1),
(30726, 23581, '4', 'Anna University ', '', 'M.b.a', '2019', 74.00, '', 1, '2025-01-09 07:27:36', 0, NULL, 0, NULL, 1),
(30727, 23583, '3', 'Bengalore university ', '', 'BA', '2023', 70.00, '', 1, '2025-01-09 08:46:40', 0, NULL, 0, NULL, 1),
(30728, 23582, '3', 'Bangalore university ', '', 'B. Com', '2023', 70.00, '', 1, '2025-01-09 08:50:56', 0, NULL, 0, NULL, 1),
(30729, 23586, '3', 'vels univers ', '', 'b.com', '2024', 6.90, '', 1, '2025-01-09 11:57:02', 0, NULL, 0, NULL, 1),
(30730, 23587, '3', 'Madras University ', '', 'B.com', '2023', 68.50, '', 1, '2025-01-09 01:57:21', 0, NULL, 0, NULL, 1),
(30731, 23589, '4', 'Bharathidasan university', '', 'M.sc(mathematics) ', '2017', 69.00, '', 1, '2025-01-09 04:47:46', 0, NULL, 0, NULL, 1),
(30732, 23585, '3', 'Kings college of Engineering ', '', 'B.E(computer science and Engineering)', '2019', 72.00, '', 1, '2025-01-10 04:17:48', 0, NULL, 0, NULL, 1),
(30733, 23590, '3', 'Bharadhidasan ', '', 'Ba', '2020', 65.00, '', 1, '2025-01-10 04:33:22', 0, NULL, 0, NULL, 1),
(30734, 23591, '3', 'UNIVERSITY OF MADRAS', '', 'B. COM BANK MANAGEMENT', '2024', 70.00, '', 1, '2025-01-10 05:00:50', 0, NULL, 0, NULL, 1),
(30735, 23592, '3', 'King\'s College of engineering ', '', 'B.E /ECE', '2024', 50.00, '', 1, '2025-01-10 05:29:52', 0, NULL, 0, NULL, 1),
(30736, 23594, '3', 'AVC collage Autonomous ', '', 'Bba', '2024', 75.00, '', 1, '2025-01-10 05:33:21', 0, NULL, 0, NULL, 1),
(30737, 23594, '2', 'GGSm hr sec school mayiladuthurai ', '', '', '2021', 86.00, '', 1, '2025-01-10 05:34:03', 0, NULL, 0, NULL, 1),
(30738, 23593, '3', 'BES', '', '', '2023', 56.00, '', 1, '2025-01-10 05:40:01', 0, NULL, 0, NULL, 1),
(30739, 23584, '3', 'Madras University ', '', 'B com ', '2023', 60.00, '', 1, '2025-01-10 05:53:14', 0, NULL, 0, NULL, 1),
(30740, 23596, '4', 'm g u ', '', 'bba', '2015', 68.00, '', 1, '2025-01-10 06:21:58', 0, NULL, 0, NULL, 1),
(30741, 23597, '4', 'University ', '', 'Mba', '2025', 75.00, '', 1, '2025-01-10 06:59:44', 0, NULL, 0, NULL, 1),
(30742, 23598, '4', 'vels university ', '', 'mba', '2025', 77.00, '', 1, '2025-01-10 06:59:56', 0, NULL, 0, NULL, 1),
(30743, 23599, '4', 'Anna University ', '', 'MBA HR ', '2024', 65.00, '', 1, '2025-01-10 07:50:43', 0, NULL, 0, NULL, 1),
(30744, 23538, '3', 'Shree sharda first grade college ', '', 'Degree', '2024', 73.00, '', 1, '2025-01-10 10:00:10', 0, NULL, 0, NULL, 1),
(30745, 23600, '2', 'Bangalore ', '', 'Dis', '2020', 43.30, '', 1, '2025-01-10 10:02:30', 0, NULL, 0, NULL, 1),
(30746, 23600, '1', 'Bangalore ', '', '', '2017', 59.68, '', 1, '2025-01-10 10:03:37', 0, NULL, 0, NULL, 1),
(30747, 23537, '3', 'Shree sharda first grade college ', '', 'Degree', '2024', 75.00, '', 1, '2025-01-10 10:08:44', 0, NULL, 0, NULL, 1),
(30748, 23601, '3', 'SRM institute of science and technology ', '', 'Bachelor of business administration ', '2025', 9.15, '', 1, '2025-01-10 10:58:37', 0, NULL, 0, NULL, 1),
(30749, 23601, '1', 'Our lady\'s matriculation higher secondary school ', '', '', '2020', 76.00, '', 1, '2025-01-10 10:59:06', 0, NULL, 0, NULL, 1),
(30750, 23601, '2', 'Our lady\'s matriculation higher secondary school ', '', '', '2022', 86.00, '', 1, '2025-01-10 10:59:28', 0, NULL, 0, NULL, 1),
(30751, 23602, '4', 'Madras University ', '', 'Bcom cs', '2020', 60.00, '', 1, '2025-01-11 04:13:11', 1, '2025-01-11 04:13:49', 0, NULL, 0),
(30752, 23602, '3', 'Asan Memorial college', '', 'bcom', '2024', 60.00, '', 154, '2025-01-11 09:46:30', 0, NULL, 0, NULL, 1),
(30753, 23603, '3', 'Ms university ', '', 'BBA ', '2019', 65.00, '', 1, '2025-01-11 04:35:29', 0, NULL, 0, NULL, 1),
(30754, 23604, '3', 'Anna university ', '', 'B.A History ', '2020', 82.00, '', 1, '2025-01-11 05:02:58', 0, NULL, 0, NULL, 1),
(30755, 23605, '3', 'VTU', '', 'bE', '2024', 7.00, '', 1, '2025-01-11 05:05:34', 0, NULL, 0, NULL, 1),
(30756, 23605, '1', 'SSLC board', '', '', '2018', 72.00, '', 1, '2025-01-11 05:06:26', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(30757, 23606, '3', 'Bharathidasan  university ', '', 'B.com', '2024', 80.00, '', 1, '2025-01-11 05:19:01', 0, NULL, 0, NULL, 1),
(30758, 23607, '3', 'Prist Deemed to be University, Thanjavur. ', '', 'B. Sc', '2024', 88.00, '', 1, '2025-01-11 05:56:45', 0, NULL, 0, NULL, 1),
(30759, 23608, '3', 'Adhiyamaan college of engineering', '', 'B.E - ECE', '2023', 82.00, '', 1, '2025-01-11 06:05:01', 0, NULL, 0, NULL, 1),
(30760, 23609, '3', 'Anna university ', '', 'BE', '2022', 7.60, '', 1, '2025-01-11 06:51:05', 0, NULL, 0, NULL, 1),
(30761, 23609, '2', 'Anna University ', '', 'BE', '2022', 7.60, '', 1, '2025-01-11 06:51:46', 0, NULL, 0, NULL, 1),
(30762, 23611, '2', 'Vijaya college ', '', '', '2017', 43.00, '', 1, '2025-01-11 07:32:22', 0, NULL, 0, NULL, 1),
(30763, 23612, '3', 'university', '', 'b.com accounting and finance', '2024', 75.00, '', 1, '2025-01-11 08:26:16', 0, NULL, 0, NULL, 1),
(30764, 23613, '2', 'Board', '', '', '2023', 75.00, '', 1, '2025-01-11 09:43:33', 0, NULL, 0, NULL, 1),
(30765, 23614, '2', 'Board', '', '', '2023', 46.00, '', 1, '2025-01-11 09:57:49', 0, NULL, 0, NULL, 1),
(30766, 23619, '2', 'state ', '', '', '2017', 81.50, '', 1, '2025-01-13 05:28:39', 0, NULL, 0, NULL, 1),
(30767, 23618, '3', 'madras UniversitY', '', 'BBA', '2024', 80.00, '', 153, '2025-01-13 11:01:46', 0, NULL, 0, NULL, 1),
(30768, 23620, '3', 'University ', '', 'BA', '2023', 92.00, '', 1, '2025-01-13 05:42:16', 0, NULL, 0, NULL, 1),
(30769, 23621, '4', 'Srm institute of science and technology ', '', 'Mba', '2025', 7.26, '', 1, '2025-01-13 07:00:57', 0, NULL, 0, NULL, 1),
(30770, 23621, '3', 'Srm institute of science and technology ', '', 'B.com', '2023', 8.20, '', 1, '2025-01-13 07:01:33', 0, NULL, 0, NULL, 1),
(30771, 23621, '2', 'Ramakrishna mission saradha vidhyalaya girls higher secondary school ', '', '', '2020', 59.00, '', 1, '2025-01-13 07:02:11', 0, NULL, 0, NULL, 1),
(30772, 23621, '1', 'Ramakrishna mission saradha vidhyalaya girls higher secondary school ', '', '', '2018', 50.00, '', 1, '2025-01-13 07:02:32', 0, NULL, 0, NULL, 1),
(30773, 23622, '4', 'Madras University ', '', 'Ma', '2023', 60.00, '', 1, '2025-01-13 07:27:34', 0, NULL, 0, NULL, 1),
(30774, 23625, '3', 'Government first grade college ', '', 'Degree', '2024', 65.00, '', 1, '2025-01-13 09:18:34', 0, NULL, 0, NULL, 1),
(30775, 23626, '3', 'Government first grade college ', '', 'Degree', '2024', 77.00, '', 1, '2025-01-13 09:22:14', 0, NULL, 0, NULL, 1),
(30776, 23617, '3', 'vijaa college', '', 'Bcom', '2023', 6.72, '', 153, '2025-01-15 09:31:07', 0, NULL, 0, NULL, 1),
(30777, 23627, '4', 'Thiruvallur University ', '', 'M.Sc Mathematics ', '2022', 88.00, '', 1, '2025-01-15 11:22:01', 0, NULL, 0, NULL, 1),
(30778, 23628, '4', 'Madras University ', '', 'Msc maths', '2020', 84.00, '', 1, '2025-01-16 04:34:31', 0, NULL, 0, NULL, 1),
(30779, 23629, '3', 'Madras University ', '', 'B.com(General)', '2024', 66.03, '', 1, '2025-01-16 05:25:15', 0, NULL, 0, NULL, 1),
(30780, 23630, '3', 'Queen Mary\'s College ', '', 'BA . history ', '2023', 58.00, '', 1, '2025-01-16 05:37:14', 0, NULL, 0, NULL, 1),
(30781, 23631, '3', 'Madras University ', '', 'B.sc Home science- Nutrition, Food service Managem', '2023', 76.00, '', 1, '2025-01-16 05:46:27', 0, NULL, 0, NULL, 1),
(30782, 23632, '3', 'Parisutham Institute of technology and science', '', 'BE', '2023', 7.44, '', 1, '2025-01-16 05:50:22', 0, NULL, 0, NULL, 1),
(30783, 23633, '3', 'Manonmaniam sundaranar university ', '', 'BCA', '2022', 70.00, '', 1, '2025-01-16 06:05:04', 0, NULL, 0, NULL, 1),
(30784, 23634, '4', 'Maharani', '', 'Bcom', '2023', 75.00, '', 1, '2025-01-16 06:54:39', 0, NULL, 0, NULL, 1),
(30785, 23635, '3', 'Madras University ', '', 'B com gene', '2022', 85.00, '', 1, '2025-01-16 07:49:43', 0, NULL, 0, NULL, 1),
(30786, 23636, '5', 'CPT', '', 'Modern Office practice ', '2022', 80.00, '', 1, '2025-01-16 07:49:46', 0, NULL, 0, NULL, 1),
(30787, 23637, '4', 'Demeed ', '', 'Mca', '2024', 57.00, '', 1, '2025-01-16 08:31:44', 1, '2025-01-16 08:31:53', 0, NULL, 0),
(30788, 23637, '4', 'Demmed', '', 'Mca', '2024', 57.00, '', 1, '2025-01-16 08:32:20', 0, NULL, 0, NULL, 1),
(30789, 23638, '3', 'Thiruvallur university ', '', 'Bachelor of arts ', '2023', 65.00, '', 1, '2025-01-16 10:32:59', 0, NULL, 0, NULL, 1),
(30790, 23639, '4', 'Annamalai university ', '', 'M.A-ENGLISH', '2024', 60.00, '', 1, '2025-01-16 10:36:59', 0, NULL, 0, NULL, 1),
(30791, 23641, '4', 'bharathidasan university ', '', 'mba hr', '2024', 67.00, '', 1, '2025-01-16 11:19:38', 0, NULL, 0, NULL, 1),
(30792, 23640, '3', 'Madras University ', '', 'BBA', '2020', 71.00, '', 1, '2025-01-16 11:20:44', 0, NULL, 0, NULL, 1),
(30793, 23642, '3', 'Anna University ', '', 'BE-ECE ', '2024', 76.00, '', 1, '2025-01-17 04:14:06', 0, NULL, 0, NULL, 1),
(30794, 23643, '3', 'Anna University ', '', 'BE(ECE)', '2024', 78.00, '', 1, '2025-01-17 04:17:55', 0, NULL, 0, NULL, 1),
(30795, 23644, '2', 'No', '', '', '2013', 70.00, '', 1, '2025-01-17 04:35:49', 0, NULL, 0, NULL, 1),
(30796, 23645, '4', 'Bharathidasan university ', '', 'MCA', '2021', 64.00, '', 1, '2025-01-17 04:41:19', 0, NULL, 0, NULL, 1),
(30797, 23646, '2', 'No', '', '', '2013', 70.00, '', 1, '2025-01-17 04:44:49', 0, NULL, 0, NULL, 1),
(30798, 23648, '3', 'Dr mgr university', '', 'B. Com general', '2019', 62.00, '', 1, '2025-01-17 06:25:20', 0, NULL, 0, NULL, 1),
(30799, 23647, '3', 'Madras University ', '', 'B.com', '2019', 60.00, '', 1, '2025-01-17 06:29:32', 0, NULL, 0, NULL, 1),
(30800, 23649, '3', 'Jntua', '', 'B tech ', '2024', 68.00, '', 1, '2025-01-17 06:33:29', 0, NULL, 0, NULL, 1),
(30801, 23651, '3', 'Anna University ', '', 'Bachelor of engineering ', '2019', 72.00, '', 1, '2025-01-17 10:33:16', 0, NULL, 0, NULL, 1),
(30802, 23652, '4', 'University ', '', 'Msc microbiology ', '2022', 8.40, '', 1, '2025-01-17 11:58:13', 0, NULL, 0, NULL, 1),
(30803, 23653, '3', 'Hindustan institute of technology and science ', '', 'BCA genral ', '2024', 7.07, '', 1, '2025-01-17 12:41:41', 0, NULL, 0, NULL, 1),
(30804, 23655, '3', 'Bharathidhasan University ', '', 'B.Com', '2024', 74.44, '', 1, '2025-01-18 05:00:11', 0, NULL, 0, NULL, 1),
(30805, 23656, '4', 'Madras University ', '', 'M.Sc', '2024', 79.00, '', 1, '2025-01-18 05:53:45', 0, NULL, 0, NULL, 1),
(30806, 23656, '3', 'Madras University ', '', 'BCA', '2022', 81.00, '', 1, '2025-01-18 05:54:29', 0, NULL, 0, NULL, 1),
(30807, 23654, '3', 'justice basheer ahmed sayeed college for women ', '', 'ba corporate eco ', '2024', 67.00, '', 1, '2025-01-18 06:23:34', 0, NULL, 0, NULL, 1),
(30808, 23654, '2', 'c.s.i monahan girls higher secondary school ', '', '', '2021', 68.00, '', 1, '2025-01-18 06:25:56', 0, NULL, 0, NULL, 1),
(30809, 23658, '3', 'Bengaluru City University ', '', 'Degree, B.com', '2024', 85.00, '', 1, '2025-01-18 06:27:47', 0, NULL, 0, NULL, 1),
(30810, 23657, '4', 'Pondicherry University ', '', 'MBA', '2024', 60.00, '', 1, '2025-01-18 06:31:26', 0, NULL, 0, NULL, 1),
(30811, 23657, '3', 'Madras University ', '', 'BCA', '2022', 74.00, '', 1, '2025-01-18 06:32:49', 0, NULL, 0, NULL, 1),
(30812, 23659, '4', 'Madurai Kamarajar university ', '', 'MBA', '2015', 77.00, '', 1, '2025-01-18 07:15:37', 0, NULL, 0, NULL, 1),
(30813, 23659, '1', 'Stateboard', '', '', '2006', 54.00, '', 1, '2025-01-18 07:16:18', 0, NULL, 0, NULL, 1),
(30814, 23659, '2', 'Stateboard ', '', '', '2008', 56.00, '', 1, '2025-01-18 07:16:44', 0, NULL, 0, NULL, 1),
(30815, 23659, '3', 'Madurai Kamarajar university ', '', 'BBA', '2013', 60.00, '', 1, '2025-01-18 07:17:19', 0, NULL, 0, NULL, 1),
(30816, 23661, '3', 'Bharathidasan university', '', 'Bsc computer science', '2024', 60.00, '', 1, '2025-01-18 07:37:53', 0, NULL, 0, NULL, 1),
(30817, 23660, '2', 'Cbse', '', '', '2018', 50.00, '', 1, '2025-01-18 07:39:06', 0, NULL, 0, NULL, 1),
(30818, 23660, '1', 'State board ', '', '', '2020', 63.10, '', 1, '2025-01-18 07:39:46', 0, NULL, 0, NULL, 1),
(30819, 23660, '3', 'Sa college of Arts and science ', '', 'B. Com corporate secrataryship ', '2023', 83.00, '', 1, '2025-01-18 07:41:29', 0, NULL, 0, NULL, 1),
(30820, 23660, '4', 'Jeppiaar university ', '', 'MBA ', '2025', 8.31, '', 1, '2025-01-18 07:42:35', 0, NULL, 0, NULL, 1),
(30821, 23662, '3', 'Justice basheer Ahmed Sayeed college ', '', 'B.com', '2024', 75.00, '', 1, '2025-01-18 08:47:44', 0, NULL, 0, NULL, 1),
(30822, 23662, '1', 'Fathima central senior secondary school ', '', '', '2019', 68.00, '', 1, '2025-01-18 08:48:43', 0, NULL, 0, NULL, 1),
(30823, 23662, '2', 'Fathima central senior secondary school ', '', '', '2021', 91.00, '', 1, '2025-01-18 08:49:07', 0, NULL, 0, NULL, 1),
(30824, 23663, '2', 'All saints hr sec school ', '', '', '2019', 60.00, '', 1, '2025-01-18 09:03:11', 0, NULL, 0, NULL, 1),
(30825, 23664, '4', 'Madras University ', '', 'B.com, MBA ', '2025', 87.00, '', 1, '2025-01-18 03:43:13', 0, NULL, 0, NULL, 1),
(30826, 23665, '3', 'Sv degree college', '', 'Bsc', '2021', 8.20, '', 1, '2025-01-18 04:00:21', 0, NULL, 0, NULL, 1),
(30827, 23666, '3', 'Bharathidasan University ', '', 'Bachelor of Arts ', '2023', 74.00, '', 1, '2025-01-19 07:39:08', 0, NULL, 0, NULL, 1),
(30828, 23668, '3', 'Gulbarga university ', '', 'B.com', '2021', 81.54, '', 1, '2025-01-20 04:33:52', 0, NULL, 0, NULL, 1),
(30829, 23669, '3', 'Dr Mgr Janaki Collage For Womens', '', 'Bcom(cs)', '2020', 68.00, '', 1, '2025-01-20 04:51:48', 0, NULL, 0, NULL, 1),
(30830, 23670, '3', 'Madurai Kamaraj University ', '', 'BBA', '2021', 58.00, '', 1, '2025-01-20 04:57:55', 0, NULL, 0, NULL, 1),
(30831, 23671, '4', 'Bharathidasan University ', '', 'B.com, MBA ( Finance )', '2024', 73.00, '', 1, '2025-01-20 05:07:18', 0, NULL, 0, NULL, 1),
(30832, 23667, '3', 'Vels University ', '', 'B.com corporate secterayship ', '2024', 75.00, '', 1, '2025-01-20 05:07:23', 0, NULL, 0, NULL, 1),
(30833, 23672, '3', 'Nagaland university ', '', 'B.com( account and finance)', '2022', 66.50, '', 1, '2025-01-20 05:26:41', 0, NULL, 0, NULL, 1),
(30834, 23674, '1', 'State board', '', 'Master of business administration ', '2016', 97.00, '', 1, '2025-01-20 05:32:42', 1, '2025-01-20 05:34:28', 0, NULL, 0),
(30835, 23674, '2', 'State board ', '', '', '2018', 91.00, '', 1, '2025-01-20 05:32:58', 0, NULL, 0, NULL, 1),
(30836, 23674, '3', 'PSG COLLEGE OF TECHNOLOGY ', '', 'B.tech. textile Technology ', '2022', 75.40, '', 1, '2025-01-20 05:33:29', 0, NULL, 0, NULL, 1),
(30837, 23674, '4', 'University of Madras ', '', 'Master of business administration ', '2025', 6.66, '', 1, '2025-01-20 05:33:52', 0, NULL, 0, NULL, 1),
(30838, 23674, '1', 'State board ', '', '', '2016', 97.00, '', 1, '2025-01-20 05:34:48', 0, NULL, 0, NULL, 1),
(30839, 23673, '4', 'Bharathidaasan University ', '', 'MCA', '2024', 77.00, '', 1, '2025-01-20 05:35:16', 0, NULL, 0, NULL, 1),
(30840, 23675, '3', 'Madras university ', '', 'B.Sc Mathematics ', '2024', 67.60, '', 1, '2025-01-20 05:42:13', 0, NULL, 0, NULL, 1),
(30841, 23677, '3', 'Sathyabama Institute of Science and Technology, Chennai', '', 'BBA', '2025', 82.00, '', 1, '2025-01-20 06:06:46', 0, NULL, 0, NULL, 1),
(30842, 23677, '1', 'NVKS CBSE Higher Secondary School, Attoor, Kanyakumari ', '', 'BBA', '2020', 74.00, '', 1, '2025-01-20 06:08:00', 0, NULL, 0, NULL, 1),
(30843, 23677, '2', 'RKV CBSE Senior Secondary School, Coimbatore ', '', '', '2022', 76.00, '', 1, '2025-01-20 06:08:29', 0, NULL, 0, NULL, 1),
(30844, 23679, '3', 'Madras university ', '', 'B.com', '2017', 70.00, '', 1, '2025-01-20 06:24:07', 0, NULL, 0, NULL, 1),
(30845, 23676, '3', 'Madras university ', '', '', '2021', 64.50, '', 1, '2025-01-20 06:29:29', 0, NULL, 0, NULL, 1),
(30846, 23683, '3', 'Madras university ', '', 'Bcom ca', '2022', 78.00, '', 1, '2025-01-20 07:31:11', 0, NULL, 0, NULL, 1),
(30847, 23682, '3', 'University of Madras ', '', 'BBA', '2023', 60.00, '', 1, '2025-01-20 07:35:49', 0, NULL, 0, NULL, 1),
(30848, 23685, '3', 'Andhra university', '', 'B. Sc', '2024', 87.00, '', 1, '2025-01-20 07:52:46', 0, NULL, 0, NULL, 1),
(30849, 23678, '3', 'Annai velankanni arts & science college', '', 'BSC (COMPUTER SCIENCE)', '2022', 84.00, '', 1, '2025-01-20 08:41:29', 0, NULL, 0, NULL, 1),
(30850, 23678, '4', 'Alpha college of engineering', '', 'MBA', '2024', 85.00, '', 1, '2025-01-20 08:42:05', 0, NULL, 0, NULL, 1),
(30851, 23681, '3', 'Government Arts and Science College Kuthalam', '', 'Bachelor of Commerce (B.Com)', '2024', 72.00, '', 1, '2025-01-20 08:45:34', 0, NULL, 0, NULL, 1),
(30852, 23681, '2', 'Government Higher Secondary School Sri Kandapuram,Mayiladuthurai ', '', '', '2020', 70.00, '', 1, '2025-01-20 08:47:15', 0, NULL, 0, NULL, 1),
(30853, 23686, '4', 'Madras university ', '', 'MCA', '2019', 7.50, '', 1, '2025-01-20 09:28:47', 0, NULL, 0, NULL, 1),
(30854, 23686, '4', 'Madras university ', '', 'MCA', '2019', 7.50, '', 1, '2025-01-20 09:30:06', 0, NULL, 0, NULL, 1),
(30855, 23687, '4', 'Periyar Maniammai Institute of Science and technology ', '', 'MCA', '2025', 7.76, '', 1, '2025-01-20 10:06:54', 0, NULL, 0, NULL, 1),
(30856, 23684, '3', 'jntua', '', 'b.tech', '2024', 75.00, '', 1, '2025-01-20 10:24:10', 0, NULL, 0, NULL, 1),
(30857, 23689, '5', 'vels universty', '', 'viscome', '2023', 78.00, '', 1, '2025-01-20 12:30:23', 0, NULL, 0, NULL, 1),
(30858, 23690, '5', 'University ', '', 'Viacom ', '2023', 80.00, '', 1, '2025-01-20 12:39:03', 0, NULL, 0, NULL, 1),
(30859, 23692, '4', 'Bharathidasan University ', '', 'Msc computer science ', '2024', 81.00, '', 1, '2025-01-21 04:55:22', 0, NULL, 0, NULL, 1),
(30860, 23697, '3', 'periyar Maniammai Institute of Science and Technology ', '', 'btech', '2024', 80.00, '', 1, '2025-01-21 05:26:15', 0, NULL, 0, NULL, 1),
(30861, 23694, '3', 'Madras University ', '', 'B.A English literature ', '2022', 55.00, '', 1, '2025-01-21 05:27:54', 0, NULL, 0, NULL, 1),
(30862, 23696, '3', 'Madras University ', '', 'B.A corporate economics ', '2023', 50.00, '', 1, '2025-01-21 05:50:10', 0, NULL, 0, NULL, 1),
(30863, 23695, '3', 'Madras University ', '', 'B.com gen ', '2024', 50.00, '', 1, '2025-01-21 05:53:08', 0, NULL, 0, NULL, 1),
(30864, 23699, '3', 'Madras University ', '', 'Psychology ', '2023', 80.00, '', 1, '2025-01-21 05:55:42', 0, NULL, 0, NULL, 1),
(30865, 23698, '3', 'Sri Sairam Engineering College/Anna University', '', 'BE - ECE', '2022', 73.15, '', 1, '2025-01-21 06:07:07', 1, '2025-01-21 06:07:37', 0, NULL, 1),
(30866, 23698, '2', 'Zion matric higher secondary school', '', '', '2018', 65.00, '', 1, '2025-01-21 06:08:15', 1, '2025-01-21 06:09:17', 0, NULL, 1),
(30867, 23698, '1', 'Zion matric higher secondary school', '', '', '2016', 93.00, '', 1, '2025-01-21 06:09:41', 0, NULL, 0, NULL, 1),
(30868, 23700, '5', 'Cpcl politechnic college ', '', '', '2023', 52.00, '', 1, '2025-01-21 06:13:59', 0, NULL, 0, NULL, 1),
(30869, 23700, '1', 'Government school', '', '', '2020', 40.00, '', 1, '2025-01-21 06:14:39', 0, NULL, 0, NULL, 1),
(30870, 23702, '3', 'Autonomous', '', 'Bca', '2024', 55.00, '', 1, '2025-01-21 06:15:11', 0, NULL, 0, NULL, 1),
(30871, 23701, '3', 'madras unversity', '', 'bca', '2024', 60.00, '', 1, '2025-01-21 06:15:41', 0, NULL, 0, NULL, 1),
(30872, 23703, '4', 'K RAMAKRISHNAN COLLEGE OF ENGINEERING ', '', '', '2024', 75.00, '', 1, '2025-01-21 06:26:51', 1, '2025-01-21 06:27:50', 0, NULL, 0),
(30873, 23703, '4', 'K RAMAKRISHNAN COLLEGE OF ENGINEERING ', '', 'M.E in Communication Systems ', '2024', 75.00, '', 1, '2025-01-21 06:27:40', 1, '2025-01-21 06:30:47', 0, NULL, 1),
(30874, 23703, '3', 'Anna University ', '', 'B.E in Electronics and Communication Engineering ', '2020', 61.00, '', 1, '2025-01-21 06:28:36', 1, '2025-01-21 06:30:08', 0, NULL, 1),
(30875, 23703, '5', 'Tamil Nadu Directorate of Technical education ', '', 'Diploma in Electronics and Communication Engineeri', '2015', 73.00, '', 1, '2025-01-21 06:29:31', 0, NULL, 0, NULL, 1),
(30876, 23703, '1', 'State board of Secondary education tamil nadu ', '', '', '2012', 61.00, '', 1, '2025-01-21 06:31:29', 0, NULL, 0, NULL, 1),
(30877, 23705, '3', 'Vel tech ', '', 'BSC computer science ', '2022', 67.00, '', 1, '2025-01-21 07:20:00', 0, NULL, 0, NULL, 1),
(30878, 23706, '4', 'RAJALAKSHMI ENGINEERING COLLEGE ', '', 'MBA', '2025', 8.41, '', 1, '2025-01-21 07:23:57', 0, NULL, 0, NULL, 1),
(30879, 23709, '1', 'Karnataka secondary education examination Board ', '', '', '2015', 54.00, '', 1, '2025-01-21 09:41:37', 0, NULL, 0, NULL, 1),
(30880, 23710, '3', 'Bharathi women\'s college ', '', 'B.COM', '2023', 83.00, '', 1, '2025-01-21 10:49:53', 0, NULL, 0, NULL, 1),
(30881, 23710, '2', 'State board ', '', '', '2020', 88.00, '', 1, '2025-01-21 10:50:16', 0, NULL, 0, NULL, 1),
(30882, 23710, '1', 'State board ', '', '', '2018', 85.00, '', 1, '2025-01-21 10:50:42', 0, NULL, 0, NULL, 1),
(30883, 23711, '3', 'Madras University', '', 'Bba', '2024', 63.00, '', 1, '2025-01-21 11:05:56', 0, NULL, 0, NULL, 1),
(30884, 23712, '4', 'madurai kamaraj univesity ', '', 'mba', '2025', 65.00, '', 1, '2025-01-21 11:31:40', 0, NULL, 0, NULL, 1),
(30885, 23712, '3', 'periyar university', '', 'bba', '2023', 65.00, '', 1, '2025-01-21 11:32:57', 0, NULL, 0, NULL, 1),
(30886, 23714, '5', 'sri durgadevi polytechnic collage ', '', 'diploma', '2016', 68.00, '', 1, '2025-01-21 01:53:28', 0, NULL, 0, NULL, 1),
(30887, 23714, '1', 'board', '', '', '2012', 64.00, '', 1, '2025-01-21 01:54:59', 0, NULL, 0, NULL, 1),
(30888, 23715, '3', 'Madars University ', '', 'B.com', '2023', 78.00, '', 1, '2025-01-21 02:04:18', 0, NULL, 0, NULL, 1),
(30889, 23717, '3', 'DG vaishnav ', '', 'BA ENGLISH LITERATURE ', '2024', 60.00, '', 1, '2025-01-22 04:54:49', 0, NULL, 0, NULL, 1),
(30890, 23718, '3', 'University of Madras', '', 'B.sc Computer Science ', '2023', 80.00, '', 1, '2025-01-22 04:54:59', 0, NULL, 0, NULL, 1),
(30891, 23721, '3', 'Anna University ', '', 'Btech', '2024', 70.00, '', 1, '2025-01-22 05:20:45', 0, NULL, 0, NULL, 1),
(30892, 23719, '3', 'Bharadhidasan ', '', 'Bcom', '2023', 75.00, '', 1, '2025-01-22 05:41:26', 0, NULL, 0, NULL, 1),
(30893, 23722, '3', 'Madras University ', '', 'B. Sc computer science ', '2024', 65.00, '', 1, '2025-01-22 05:46:08', 0, NULL, 0, NULL, 1),
(30894, 23723, '5', 'bangalore University ', '', 'b.com', '2022', 78.00, '', 1, '2025-01-22 05:58:45', 0, NULL, 0, NULL, 1),
(30895, 23724, '4', 'Madras university ', '', 'MBA ', '2025', 72.00, '', 1, '2025-01-22 06:11:12', 0, NULL, 0, NULL, 1),
(30896, 23725, '4', 'Madras University ', '', 'MBA', '2025', 80.00, '', 1, '2025-01-22 06:11:17', 0, NULL, 0, NULL, 1),
(30897, 23725, '4', 'Madras University ', '', 'MBA', '2025', 80.00, '', 1, '2025-01-22 06:12:24', 1, '2025-01-22 06:12:36', 0, NULL, 0),
(30898, 23725, '3', 'Madras University ', '', 'BCA', '2023', 88.00, '', 1, '2025-01-22 06:13:46', 1, '2025-01-22 06:18:45', 0, NULL, 1),
(30899, 23724, '3', 'Madras university ', '', 'B.com general ', '2023', 83.00, '', 1, '2025-01-22 06:14:20', 1, '2025-01-22 06:15:14', 0, NULL, 1),
(30900, 23725, '2', 'Jaigopal Garodia National Higher secondary School', '', '', '2020', 70.00, '', 1, '2025-01-22 06:15:08', 0, NULL, 0, NULL, 1),
(30901, 23724, '2', 'Jaigopal garodia national higher secondary school tambaram ', '', '', '2020', 67.00, '', 1, '2025-01-22 06:16:13', 0, NULL, 0, NULL, 1),
(30902, 23725, '1', 'Ebenezer Matriculation School ', '', '', '2018', 72.00, '', 1, '2025-01-22 06:16:41', 0, NULL, 0, NULL, 1),
(30903, 23724, '1', 'Christ the king matriculation higher secondary school medavakkam', '', '', '2018', 69.00, '', 1, '2025-01-22 06:17:47', 0, NULL, 0, NULL, 1),
(30904, 23726, '4', 'Anna University ', '', 'MBA (HR with Finance)', '2025', 94.00, '', 1, '2025-01-22 06:33:50', 0, NULL, 0, NULL, 1),
(30905, 23726, '3', 'Madras University ', '', 'B.Com', '2023', 87.00, '', 1, '2025-01-22 06:34:42', 0, NULL, 0, NULL, 1),
(30906, 23727, '3', 'University ', '', 'B.TECH', '2023', 90.00, '', 1, '2025-01-22 06:47:55', 0, NULL, 0, NULL, 1),
(30907, 23728, '3', 'University of Madras ', '', 'B.com Accounting and finance ', '2024', 85.00, '', 1, '2025-01-22 07:18:19', 0, NULL, 0, NULL, 1),
(30908, 23728, '1', 'State board', '', '', '2019', 56.00, '', 1, '2025-01-22 07:19:12', 0, NULL, 0, NULL, 1),
(30909, 23728, '2', 'State board ', '', '', '2021', 75.00, '', 1, '2025-01-22 07:19:45', 0, NULL, 0, NULL, 1),
(30910, 20433, '3', 'University ', '', 'B com General ', '2024', 61.50, '', 1, '2025-01-22 07:55:15', 0, NULL, 0, NULL, 1),
(30911, 23713, '3', 'anna university', '', 'b tech petroleum engineering', '2024', 79.00, '', 1, '2025-01-22 07:58:58', 0, NULL, 0, NULL, 1),
(30912, 23729, '3', 'JJ COLLEGE OF ENGINEERING AND TECHNOLOGY ', '', 'Bachelor of engineering ', '2024', 70.00, '', 1, '2025-01-22 08:14:45', 0, NULL, 0, NULL, 1),
(30913, 23730, '1', 'Board', '', '', '2019', 75.00, '', 1, '2025-01-22 09:13:14', 0, NULL, 0, NULL, 1),
(30914, 23730, '2', 'Board', '', '', '2021', 79.00, '', 1, '2025-01-22 09:13:47', 0, NULL, 0, NULL, 1),
(30915, 23730, '3', 'University', '', 'Bsc. Biotechnology', '2024', 79.00, '', 1, '2025-01-22 09:14:13', 0, NULL, 0, NULL, 1),
(30916, 23731, '4', 'Anna university ', '', 'MBA', '2025', 75.00, '', 1, '2025-01-22 10:13:23', 0, NULL, 0, NULL, 1),
(30917, 23731, '3', 'Madras University ', '', 'Bcom general ', '2023', 75.00, '', 1, '2025-01-22 10:13:59', 0, NULL, 0, NULL, 1),
(30918, 23731, '2', 'State board ', '', '', '2020', 75.00, '', 1, '2025-01-22 10:14:24', 0, NULL, 0, NULL, 1),
(30919, 23731, '1', 'State board ', '', '', '2018', 80.00, '', 1, '2025-01-22 10:14:39', 0, NULL, 0, NULL, 1),
(30920, 23733, '3', 'Bharathidasan University', '', 'BCA', '2024', 78.00, '', 1, '2025-01-22 12:22:10', 0, NULL, 0, NULL, 1),
(30921, 23734, '3', 'University of madras', '', 'B.A. English Literature', '2021', 70.00, '', 1, '2025-01-22 12:44:47', 0, NULL, 0, NULL, 1),
(30922, 23735, '3', 'Udaya school of engineering ', '', 'B. Tech', '2024', 86.00, '', 1, '2025-01-22 12:57:28', 0, NULL, 0, NULL, 1),
(30923, 23716, '3', 'University of Madras ', '', 'B.sc Computer science ', '2024', 74.00, '', 1, '2025-01-22 04:04:29', 0, NULL, 0, NULL, 1),
(30924, 23716, '2', 'State Board Of Tamil Nadu ', '', '', '2021', 70.00, '', 1, '2025-01-22 04:06:52', 0, NULL, 0, NULL, 1),
(30925, 23716, '1', 'State Board Of Tamil Nadu ', '', '', '2019', 69.00, '', 1, '2025-01-22 04:07:21', 0, NULL, 0, NULL, 1),
(30926, 23736, '3', 'University of madras', '', 'B. Sc Computer science', '2024', 73.00, '', 1, '2025-01-22 04:13:50', 0, NULL, 0, NULL, 1),
(30927, 23736, '2', 'State board of examination of Tamilnadu', '', '', '2021', 67.00, '', 1, '2025-01-22 04:14:52', 0, NULL, 0, NULL, 1),
(30928, 23736, '1', 'State board of examination Tamilnadu', '', '', '2019', 66.00, '', 1, '2025-01-22 04:15:25', 0, NULL, 0, NULL, 1),
(30929, 23737, '2', 'Arumugam palaniguru modern school ', '', '', '2021', 63.00, '', 1, '2025-01-23 04:29:19', 0, NULL, 0, NULL, 1),
(30930, 23738, '3', 'THIRUVALLUR UNIVERSITY ', '', 'BCA', '2024', 50.00, '', 1, '2025-01-23 05:27:07', 1, '2025-01-23 05:27:33', 0, NULL, 1),
(30931, 23739, '3', 'Bharadhidasan University ', '', '', '2023', 80.00, '', 1, '2025-01-23 05:41:29', 0, NULL, 0, NULL, 1),
(30932, 23740, '4', 'Annamalai university', '', 'Mba', '2025', 60.00, '', 1, '2025-01-23 05:58:49', 0, NULL, 0, NULL, 1),
(30933, 23742, '3', 'Madras University ', '', 'Bsc computer science ', '2022', 72.90, '', 1, '2025-01-23 05:59:07', 0, NULL, 0, NULL, 1),
(30934, 23743, '4', 'Sathyabama University ', '', 'MBA', '2023', 89.00, '', 1, '2025-01-23 06:11:18', 0, NULL, 0, NULL, 1),
(30935, 23744, '2', 'STATE BOARD ', '', '', '2020', 67.00, '', 1, '2025-01-23 06:12:32', 1, '2025-01-23 06:13:33', 0, NULL, 0),
(30936, 23744, '1', 'STATE BOARD ', '', '', '2018', 7.00, '', 1, '2025-01-23 06:13:49', 0, NULL, 0, NULL, 1),
(30937, 23744, '3', 'VELS UNIVERSITY ', '', 'B.COM', '2023', 80.00, '', 1, '2025-01-23 06:14:16', 0, NULL, 0, NULL, 1),
(30938, 23744, '4', 'VELS UNIVERSITY ', '', 'MBA', '2025', 79.00, '', 1, '2025-01-23 06:14:42', 0, NULL, 0, NULL, 1),
(30939, 23744, '2', 'STATE BOARD ', '', '', '2018', 67.00, '', 1, '2025-01-23 06:15:34', 0, NULL, 0, NULL, 1),
(30940, 23745, '3', 'Anna University ', '', 'BCA bachelor of computer application ', '2025', 68.00, '', 1, '2025-01-23 06:35:10', 0, NULL, 0, NULL, 1),
(30941, 23747, '4', 'University Of Madras', '', 'M. Com', '2023', 7.65, '', 1, '2025-01-23 06:41:32', 0, NULL, 0, NULL, 1),
(30942, 23748, '3', 'Prist university, thanjavur', '', 'B. Tech', '2024', 69.00, '', 1, '2025-01-23 07:10:42', 0, NULL, 0, NULL, 1),
(30943, 23749, '4', 'University', '', 'MBA', '2025', 72.00, '', 1, '2025-01-23 07:43:32', 0, NULL, 0, NULL, 1),
(30944, 23750, '3', 'anna University ', '', 'b.e cse', '2024', 8.50, '', 1, '2025-01-23 08:20:03', 0, NULL, 0, NULL, 1),
(30945, 23751, '3', 'Anna university ', '', 'B.Tech', '2022', 80.00, '', 1, '2025-01-23 09:37:09', 0, NULL, 0, NULL, 1),
(30946, 23751, '1', 'Government Girls Hr sec school ', '', '', '2016', 75.00, '', 1, '2025-01-23 09:38:16', 0, NULL, 0, NULL, 1),
(30947, 23751, '2', 'Government Girls Hr sec school ', '', '', '2018', 70.00, '', 1, '2025-01-23 09:38:42', 0, NULL, 0, NULL, 1),
(30948, 23753, '3', 'Madras Christian College ', '', 'Bsc Plant Biology and Plant Biotechnology ', '2023', 60.00, '', 1, '2025-01-23 11:20:30', 0, NULL, 0, NULL, 1),
(30949, 23755, '3', 'Thiruvalluvar University ', '', 'Bachelor of Business Administration ', '2023', 79.00, '', 1, '2025-01-23 01:16:58', 0, NULL, 0, NULL, 1),
(30950, 23757, '3', 'Justice basheer ahmed sayeed college for women', '', 'B.com general ', '2019', 60.00, '', 1, '2025-01-24 04:45:32', 0, NULL, 0, NULL, 1),
(30951, 23754, '3', 'Madras university', '', 'B. Com', '2020', 59.60, '', 1, '2025-01-24 04:50:34', 0, NULL, 0, NULL, 1),
(30952, 23758, '3', 'Anna University ', '', 'MBA (HR & Finance)', '2023', 83.00, '', 1, '2025-01-24 04:57:26', 0, NULL, 0, NULL, 1),
(30953, 23759, '4', 'Deemed University ', '', 'MBA', '2025', 80.00, '', 1, '2025-01-24 05:30:27', 1, '2025-01-24 05:30:53', 0, NULL, 1),
(30954, 23759, '3', 'Anna university ', '', 'BE', '2023', 85.00, '', 1, '2025-01-24 05:31:13', 0, NULL, 0, NULL, 1),
(30955, 23759, '2', 'Matriculation ', '', '', '2019', 61.00, '', 1, '2025-01-24 05:31:47', 0, NULL, 0, NULL, 1),
(30956, 23759, '1', 'Matriculation ', '', '', '2017', 89.00, '', 1, '2025-01-24 05:32:22', 0, NULL, 0, NULL, 1),
(30957, 23760, '4', 'Madras University ', '', 'M.com', '2020', 80.00, '', 1, '2025-01-24 05:35:24', 0, NULL, 0, NULL, 1),
(30958, 23761, '3', 'madras university', '', 'bba', '2023', 55.00, '', 1, '2025-01-24 06:01:37', 0, NULL, 0, NULL, 1),
(30959, 23756, '3', 'Madras university ', '', 'Bsc Home Science ', '2022', 85.00, '', 1, '2025-01-24 06:18:02', 0, NULL, 0, NULL, 1),
(30960, 23763, '4', 'Alagappa University ', '', 'MBA BANKING AND INSURANCE ', '2021', 70.00, '', 1, '2025-01-24 07:56:36', 0, NULL, 0, NULL, 1),
(30961, 23763, '3', 'Alagappa University ', '', 'B.sc', '2019', 72.00, '', 1, '2025-01-24 07:57:24', 0, NULL, 0, NULL, 1),
(30962, 23764, '3', 'State board ', '', 'B.com', '2023', 65.00, '', 1, '2025-01-24 09:22:31', 0, NULL, 0, NULL, 1),
(30963, 23765, '3', 'sourashtra college of madurai', '', 'bsc cs', '2023', 75.00, '', 1, '2025-01-24 10:27:29', 0, NULL, 0, NULL, 1),
(30964, 23765, '2', 'pancy vidhiyalaiya matric and hr sec school', '', '', '2020', 68.00, '', 1, '2025-01-24 10:28:24', 0, NULL, 0, NULL, 1),
(30965, 23765, '1', 'malli vidhiyalaiya matric and hr sec school', '', '', '2018', 65.00, '', 1, '2025-01-24 10:29:10', 0, NULL, 0, NULL, 1),
(30966, 23766, '3', 'madras university', '', 'b.com', '2020', 60.00, '', 1, '2025-01-24 11:27:26', 0, NULL, 0, NULL, 1),
(30967, 23766, '2', 'state board', '', '', '2017', 65.00, '', 1, '2025-01-24 11:28:30', 1, '2025-01-24 11:28:43', 0, NULL, 0),
(30968, 23769, '3', 'Loganatha Narayana swamy college Ponneri ', '', 'BSC computer science ', '2024', 70.00, '', 1, '2025-01-25 04:53:14', 0, NULL, 0, NULL, 1),
(30969, 23770, '3', 'anna university ', '', 'be', '2023', 8.00, '', 1, '2025-01-25 05:18:26', 0, NULL, 0, NULL, 1),
(30970, 23768, '1', 'Tamilnadu ', '', '', '2018', 75.00, '', 1, '2025-01-25 05:38:55', 0, NULL, 0, NULL, 1),
(30971, 23768, '2', 'Tamilnadu ', '', '', '2020', 65.00, '', 1, '2025-01-25 05:39:12', 0, NULL, 0, NULL, 1),
(30972, 23771, '4', 'University of Madras ', '', 'MBA', '2025', 74.00, '', 1, '2025-01-25 06:28:09', 0, NULL, 0, NULL, 1),
(30973, 23767, '3', 'Madras University ', '', 'B.com cs', '2024', 68.00, '', 1, '2025-01-25 06:48:41', 0, NULL, 0, NULL, 1),
(30974, 23772, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2022', 80.00, '', 1, '2025-01-25 08:29:38', 0, NULL, 0, NULL, 1),
(30975, 23772, '2', 'Matriculation ', '', '', '2018', 84.00, '', 1, '2025-01-25 08:30:32', 0, NULL, 0, NULL, 1),
(30976, 23772, '1', 'Matriculation ', '', '', '2016', 94.00, '', 1, '2025-01-25 08:30:57', 0, NULL, 0, NULL, 1),
(30977, 23776, '1', 'Nadar Higher secondary school ', '', '', '2017', 91.00, '', 1, '2025-01-27 04:09:03', 0, NULL, 0, NULL, 1),
(30978, 23776, '2', 'Nadar Higher secondary school ', '', '', '2019', 78.00, '', 1, '2025-01-27 04:09:28', 0, NULL, 0, NULL, 1),
(30979, 23776, '3', 'Kathir college of engineering ', '', 'B.E(Computer science and engineering)', '2023', 80.00, '', 1, '2025-01-27 04:10:06', 0, NULL, 0, NULL, 1),
(30980, 23775, '4', 'Bharathidasan university ', '', 'M.com', '2024', 70.00, '', 1, '2025-01-27 04:10:44', 0, NULL, 0, NULL, 1),
(30981, 23778, '3', 'Manonmaniam sundaranar university', '', 'BCA', '2024', 82.00, '', 1, '2025-01-27 04:20:43', 0, NULL, 0, NULL, 1),
(30982, 23777, '3', 'Anna university ', '', 'B.E', '2024', 8.32, '', 1, '2025-01-27 04:21:26', 0, NULL, 0, NULL, 1),
(30983, 23778, '2', 'State Board', '', '', '2021', 93.00, '', 1, '2025-01-27 04:21:43', 0, NULL, 0, NULL, 1),
(30984, 23778, '1', 'State board', '', '', '2019', 93.00, '', 1, '2025-01-27 04:22:02', 0, NULL, 0, NULL, 1),
(30985, 23782, '1', 'State Board ', '', '', '2020', 96.00, '', 1, '2025-01-27 04:37:41', 0, NULL, 0, NULL, 1),
(30986, 23780, '1', 'State board ', '', '', '2020', 50.00, '', 1, '2025-01-27 04:39:10', 0, NULL, 0, NULL, 1),
(30987, 23782, '2', 'State board ', '', '', '2022', 90.00, '', 1, '2025-01-27 04:39:57', 0, NULL, 0, NULL, 1),
(30988, 23783, '3', 'Madras University ', '', 'B.COM(G)', '2025', 76.00, '', 1, '2025-01-27 04:40:00', 0, NULL, 0, NULL, 1),
(30989, 23780, '2', 'State board ', '', '', '2022', 65.00, '', 1, '2025-01-27 04:40:13', 0, NULL, 0, NULL, 1),
(30990, 23782, '3', 'Madras university ', '', 'B.Com General ', '2025', 78.00, '', 1, '2025-01-27 04:41:05', 0, NULL, 0, NULL, 1),
(30991, 23783, '2', 'STATE BOARD ', '', '', '2022', 71.00, '', 1, '2025-01-27 04:41:58', 0, NULL, 0, NULL, 1),
(30992, 23781, '3', 'Madras University ', '', 'B.com(General)', '2022', 78.00, '', 1, '2025-01-27 04:42:24', 0, NULL, 0, NULL, 1),
(30993, 23781, '2', 'State board', '', '', '2022', 88.00, '', 1, '2025-01-27 04:42:51', 0, NULL, 0, NULL, 1),
(30994, 23783, '1', 'STATE BOARD ', '', '', '2020', 55.00, '', 1, '2025-01-27 04:42:53', 0, NULL, 0, NULL, 1),
(30995, 23780, '3', 'Madras university ', '', 'B.com (general)', '2025', 68.00, '', 1, '2025-01-27 04:43:03', 0, NULL, 0, NULL, 1),
(30996, 23781, '1', 'State board ', '', '', '2020', 75.00, '', 1, '2025-01-27 04:43:18', 0, NULL, 0, NULL, 1),
(30997, 23779, '3', 'Madras University ', '', 'B.com general ', '2025', 75.00, '', 1, '2025-01-27 04:56:43', 0, NULL, 0, NULL, 1),
(30998, 23779, '1', 'State board ', '', 'B.com general ', '2020', 70.00, '', 1, '2025-01-27 04:58:32', 0, NULL, 0, NULL, 1),
(30999, 23779, '2', 'State board ', '', '', '2022', 91.00, '', 1, '2025-01-27 04:58:53', 0, NULL, 0, NULL, 1),
(31000, 23787, '1', 'State board ', '', '', '2013', 85.00, '', 1, '2025-01-27 05:06:57', 0, NULL, 0, NULL, 1),
(31001, 23784, '3', 'Thiruvallur University ', '', 'B.A.English', '2018', 89.00, '', 1, '2025-01-27 05:10:49', 0, NULL, 0, NULL, 1),
(31002, 23784, '1', 'State board ', '', '', '2013', 79.00, '', 1, '2025-01-27 05:11:13', 0, NULL, 0, NULL, 1),
(31003, 23784, '2', 'State board ', '', '', '2015', 79.00, '', 1, '2025-01-27 05:11:52', 0, NULL, 0, NULL, 1),
(31004, 23785, '3', 'MADRAS UNIVERSITY ', '', 'BCOM HONOURS ', '2025', 79.00, '', 1, '2025-01-27 05:12:40', 0, NULL, 0, NULL, 1),
(31005, 23785, '2', 'CBSE ', '', '', '2022', 80.00, '', 1, '2025-01-27 05:13:23', 0, NULL, 0, NULL, 1),
(31006, 23785, '1', 'CBSE', '', '', '2020', 79.00, '', 1, '2025-01-27 05:13:40', 0, NULL, 0, NULL, 1),
(31007, 23786, '3', 'Jbas college for women ', '', 'BBA ', '2025', 70.00, '', 1, '2025-01-27 05:15:10', 0, NULL, 0, NULL, 1),
(31008, 23786, '1', 'Cbse ', '', '', '2022', 73.00, '', 1, '2025-01-27 05:15:47', 0, NULL, 0, NULL, 1),
(31009, 23786, '2', 'Cbse ', '', '', '2020', 64.00, '', 1, '2025-01-27 05:16:05', 0, NULL, 0, NULL, 1),
(31010, 23788, '3', 'Justice basheer Ahmed Sayeed college for women ', '', 'B.COM (A&F)', '2025', 68.00, '', 1, '2025-01-27 05:16:42', 0, NULL, 0, NULL, 1),
(31011, 23790, '3', 'Justice basheer ahmed sayeed college for women', '', 'B.Sc', '2025', 88.30, '', 1, '2025-01-27 05:17:37', 0, NULL, 0, NULL, 1),
(31012, 23788, '1', 'Dharam hinduja matriculation higher secondary school ', '', '', '2022', 54.00, '', 1, '2025-01-27 05:17:40', 1, '2025-01-27 05:18:58', 0, NULL, 1),
(31013, 23790, '2', 'State board', '', '', '2022', 69.00, '', 1, '2025-01-27 05:18:47', 0, NULL, 0, NULL, 1),
(31014, 23790, '1', 'State board', '', '', '2020', 70.20, '', 1, '2025-01-27 05:19:22', 0, NULL, 0, NULL, 1),
(31015, 23789, '1', 'Our lady\'s higher secondary school', '', '', '2020', 77.80, '', 1, '2025-01-27 05:22:56', 0, NULL, 0, NULL, 1),
(31016, 23789, '2', 'Our lady\'s higher secondary school', '', '', '2022', 87.00, '', 1, '2025-01-27 05:24:41', 0, NULL, 0, NULL, 1),
(31017, 23791, '1', 'St. Antony\'s Higher secondary school', '', '', '2020', 83.20, '', 1, '2025-01-27 05:29:56', 0, NULL, 0, NULL, 1),
(31018, 23791, '2', 'St. Antony\'s Higher secondary school', '', '', '2022', 82.30, '', 1, '2025-01-27 05:30:26', 0, NULL, 0, NULL, 1),
(31019, 23794, '4', 'Anna University  ', '', 'MBA ', '2025', 72.85, '', 1, '2025-01-27 05:38:43', 0, NULL, 0, NULL, 1),
(31020, 23794, '3', 'Madras University ', '', 'B.com', '2023', 82.40, '', 1, '2025-01-27 05:40:20', 0, NULL, 0, NULL, 1),
(31021, 23794, '2', 'State board ', '', '', '2020', 75.17, '', 1, '2025-01-27 05:41:36', 0, NULL, 0, NULL, 1),
(31022, 23795, '3', 'madras university ', '', 'BCA ', '2025', 70.00, '', 1, '2025-01-27 05:41:52', 0, NULL, 0, NULL, 1),
(31023, 23794, '1', 'State board ', '', '', '2018', 79.80, '', 1, '2025-01-27 05:42:11', 1, '2025-01-27 05:42:39', 0, NULL, 1),
(31024, 23797, '1', 'State Board ', '', '', '2018', 86.00, '', 1, '2025-01-27 05:44:26', 1, '2025-01-27 05:48:03', 0, NULL, 0),
(31025, 23797, '1', 'State Board ', '', '', '2018', 86.00, '', 1, '2025-01-27 05:45:01', 1, '2025-01-27 05:47:34', 0, NULL, 0),
(31026, 23795, '2', 'state board ', '', '', '2022', 89.00, '', 1, '2025-01-27 05:45:16', 0, NULL, 0, NULL, 1),
(31027, 23798, '3', 'Bharathidasan University ', '', 'Bsc', '2024', 82.00, '', 1, '2025-01-27 05:45:21', 0, NULL, 0, NULL, 1),
(31028, 23797, '3', 'University of Madras ', '', 'BSC ', '2023', 89.00, '', 1, '2025-01-27 05:46:04', 1, '2025-01-27 05:47:41', 0, NULL, 0),
(31029, 23795, '1', 'state board ', '', '', '2020', 66.00, '', 1, '2025-01-27 05:46:08', 0, NULL, 0, NULL, 1),
(31030, 23798, '2', 'Dhava Amutham Matric Higher Secondary School ', '', '', '2021', 86.00, '', 1, '2025-01-27 05:46:19', 0, NULL, 0, NULL, 1),
(31031, 23798, '1', 'Fathima Girls Higher Secondary School ', '', '', '2019', 74.00, '', 1, '2025-01-27 05:47:48', 0, NULL, 0, NULL, 1),
(31032, 23797, '2', 'State Board ', '', '', '2020', 60.00, '', 1, '2025-01-27 05:48:24', 0, NULL, 0, NULL, 1),
(31033, 23799, '3', 'Periyar Maniammai Institute Of Science And Technology ', '', 'BCA', '2023', 7.71, '', 1, '2025-01-27 05:48:28', 0, NULL, 0, NULL, 1),
(31034, 23797, '3', 'University of Madras ', '', 'Bsc', '2023', 89.00, '', 1, '2025-01-27 05:49:04', 0, NULL, 0, NULL, 1),
(31035, 23799, '4', 'Periyar Maniammai Institute Of Science And Technology ', '', 'BCA ', '2023', 7.71, '', 1, '2025-01-27 05:49:16', 1, '2025-01-27 05:49:40', 0, NULL, 0),
(31036, 23797, '1', 'State Board ', '', '', '2018', 86.00, '', 1, '2025-01-27 05:50:10', 0, NULL, 0, NULL, 1),
(31037, 23793, '3', 'Madras university', '', 'B. Com computer application', '2022', 80.00, '', 1, '2025-01-27 06:03:29', 0, NULL, 0, NULL, 1),
(31038, 23796, '3', 'University ', '', 'BBA', '2025', 70.00, '', 1, '2025-01-27 06:07:40', 0, NULL, 0, NULL, 1),
(31039, 23796, '2', 'State board ', '', '', '2022', 75.00, '', 1, '2025-01-27 06:08:16', 0, NULL, 0, NULL, 1),
(31040, 23796, '1', 'State board ', '', 'BBA', '2020', 60.00, '', 1, '2025-01-27 06:10:06', 0, NULL, 0, NULL, 1),
(31041, 23802, '4', 'TamilNad Open University', '', 'MBA(IT) ', '2021', 83.00, '', 1, '2025-01-27 06:10:26', 0, NULL, 0, NULL, 1),
(31042, 23802, '4', 'TamilNadu Open University', '', 'MBA', '2021', 83.00, '', 1, '2025-01-27 06:12:06', 0, NULL, 0, NULL, 1),
(31043, 23800, '3', 'Madras University ', '', 'BCA ', '2025', 70.00, '', 1, '2025-01-27 06:13:28', 0, NULL, 0, NULL, 1),
(31044, 23800, '2', 'State Board ', '', '', '2022', 76.00, '', 1, '2025-01-27 06:13:58', 0, NULL, 0, NULL, 1),
(31045, 23800, '1', 'State Board ', '', '', '2020', 74.00, '', 1, '2025-01-27 06:14:24', 0, NULL, 0, NULL, 1),
(31046, 23804, '3', 'Thiruvalluvar University. ', '', 'BBA ', '2023', 70.00, '', 1, '2025-01-27 06:19:12', 0, NULL, 0, NULL, 1),
(31047, 23803, '3', 'university of madras ', '', 'BBA', '2022', 75.00, '', 1, '2025-01-27 06:21:48', 0, NULL, 0, NULL, 1),
(31048, 23805, '3', 'Madras University ', '', 'B.sc computer science ', '2024', 65.00, '', 1, '2025-01-27 06:28:19', 0, NULL, 0, NULL, 1),
(31049, 23801, '1', 'State', '', '', '2020', 68.00, '', 1, '2025-01-27 06:33:59', 0, NULL, 0, NULL, 1),
(31050, 23801, '2', 'State', '', '', '2022', 70.00, '', 1, '2025-01-27 06:34:25', 0, NULL, 0, NULL, 1),
(31051, 23801, '3', 'Madras University ', '', 'BBA', '2025', 70.00, '', 1, '2025-01-27 06:35:01', 0, NULL, 0, NULL, 1),
(31052, 23808, '4', 'Tamilnadu open university', '', 'MBA', '2021', 83.00, '', 1, '2025-01-27 06:35:36', 0, NULL, 0, NULL, 1),
(31053, 23807, '3', 'Madras University ', '', '', '2023', 70.00, '', 1, '2025-01-27 06:48:48', 0, NULL, 0, NULL, 1),
(31054, 23806, '3', 'Madras university ', '', 'BBA', '2023', 65.00, '', 1, '2025-01-27 06:51:38', 0, NULL, 0, NULL, 1),
(31055, 23809, '3', 'Justice basheer Ahmed Sayeed college for womens ', '', 'B.com (accounting and Finance)', '2025', 72.80, '', 1, '2025-01-27 07:02:22', 0, NULL, 0, NULL, 1),
(31056, 23809, '1', 'Rani lady meyyammai hr sec school ', '', '', '2020', 64.20, '', 1, '2025-01-27 07:03:05', 0, NULL, 0, NULL, 1),
(31057, 23810, '3', 'Madras University ', '', 'Bcom accounting and finance ', '2021', 75.00, '', 1, '2025-01-27 07:05:24', 0, NULL, 0, NULL, 1),
(31058, 23811, '1', 'Stateboard', '', '', '2018', 88.80, '', 1, '2025-01-27 07:21:46', 0, NULL, 0, NULL, 1),
(31059, 23812, '3', 'Ck College of Engineering and Technology', '', 'B.E', '2024', 8.23, '', 1, '2025-01-27 07:29:38', 0, NULL, 0, NULL, 1),
(31060, 23813, '3', 'Board', '', 'B.com (general)', '2025', 60.00, '', 1, '2025-01-27 08:24:49', 0, NULL, 0, NULL, 1),
(31061, 23816, '3', 'Board', '', 'B.com', '2022', 65.00, '', 1, '2025-01-27 08:35:13', 0, NULL, 0, NULL, 1),
(31062, 23815, '3', 'Board ', '', 'B.com ', '2025', 76.00, '', 1, '2025-01-27 08:38:05', 0, NULL, 0, NULL, 1),
(31063, 23814, '3', 'Board ', '', 'B.com', '2025', 80.00, '', 1, '2025-01-27 08:46:42', 0, NULL, 0, NULL, 1),
(31064, 23818, '3', 'Anna University ', '', 'Btech ', '2025', 78.30, '', 1, '2025-01-27 08:51:31', 0, NULL, 0, NULL, 1),
(31065, 23819, '3', 'Board', '', 'B.com', '2022', 80.00, '', 1, '2025-01-27 08:59:58', 0, NULL, 0, NULL, 1),
(31066, 23820, '4', 'Anna University ', '', 'MBA', '2025', 82.00, '', 1, '2025-01-27 09:43:02', 0, NULL, 0, NULL, 1),
(31067, 23820, '3', 'Puducherry university ', '', 'BBA ', '2022', 72.00, '', 1, '2025-01-27 09:43:50', 0, NULL, 0, NULL, 1),
(31068, 23820, '2', 'State board', '', '', '2019', 65.00, '', 1, '2025-01-27 09:44:58', 0, NULL, 0, NULL, 1),
(31069, 23821, '3', 'manonmaniam sundaranar university', '', 'BSC Botany ', '2024', 82.00, '', 1, '2025-01-27 09:48:05', 0, NULL, 0, NULL, 1),
(31070, 23822, '3', 'Vel Tech Multi Tech Dr.Rangarajan Dr.Sakunthala Engineering College', '', 'b e', '2024', 60.00, '', 1, '2025-01-27 11:21:21', 0, NULL, 0, NULL, 1),
(31071, 23823, '3', 'Bharathiyar university ', '', 'BA', '2022', 75.00, '', 1, '2025-01-27 11:27:08', 0, NULL, 0, NULL, 1),
(31072, 23824, '3', 'Bharathidasan University', '', 'Bsc Computer Science', '2024', 76.00, '', 1, '2025-01-27 02:31:35', 0, NULL, 0, NULL, 1),
(31073, 23828, '2', 'Tamilnadu Board of Education ', '', 'B.com', '2018', 86.00, '', 1, '2025-01-28 04:52:28', 1, '2025-01-28 04:56:08', 0, NULL, 0),
(31074, 23828, '3', 'Annamalai University ', '', 'B.com', '2023', 69.00, '', 1, '2025-01-28 04:55:57', 0, NULL, 0, NULL, 1),
(31075, 23829, '4', 'Thiruvalluvar University ', '', 'MSC IT ', '2024', 80.00, '', 1, '2025-01-28 05:09:14', 0, NULL, 0, NULL, 1),
(31076, 23829, '3', 'Thiruvalluvar University ', '', 'BCA', '2021', 75.00, '', 1, '2025-01-28 05:09:50', 0, NULL, 0, NULL, 1),
(31077, 23829, '2', 'State board ', '', '', '2018', 67.00, '', 1, '2025-01-28 05:10:39', 0, NULL, 0, NULL, 1),
(31078, 23829, '1', 'State board ', '', '', '2016', 77.00, '', 1, '2025-01-28 05:11:17', 0, NULL, 0, NULL, 1),
(31079, 23830, '4', 'University', '', 'MBA', '2024', 70.00, '', 1, '2025-01-28 05:12:39', 0, NULL, 0, NULL, 1),
(31080, 23830, '4', 'University', '', 'MBA', '2024', 70.00, '', 1, '2025-01-28 05:14:23', 1, '2025-01-28 05:14:37', 0, NULL, 0),
(31081, 23830, '3', 'University', '', 'BBA', '2022', 70.00, '', 1, '2025-01-28 05:14:58', 0, NULL, 0, NULL, 1),
(31082, 23792, '3', 'bharathiar university', '', 'BBA ', '2024', 65.00, '', 1, '2025-01-28 05:39:26', 0, NULL, 0, NULL, 1),
(31083, 23831, '4', 'University ', '', 'MBA', '2025', 78.00, '', 1, '2025-01-28 05:47:40', 1, '2025-01-28 05:48:30', 0, NULL, 1),
(31084, 23831, '3', 'University ', '', 'Bsc chemistry ', '2023', 77.00, '', 1, '2025-01-28 05:49:05', 0, NULL, 0, NULL, 1),
(31085, 23832, '3', 'Justice basheer ahmed syeed college for women ', '', 'B.COM', '2025', 81.80, '', 1, '2025-01-28 05:57:32', 0, NULL, 0, NULL, 1),
(31086, 23834, '3', 'Justice basheer Ahmed syyed college for women ', '', 'B.Com (General)', '2025', 78.40, '', 1, '2025-01-28 05:57:39', 0, NULL, 0, NULL, 1),
(31087, 23833, '3', 'Justice basheer Ahmed sayeed college for women', '', 'B Com', '2025', 82.00, '', 1, '2025-01-28 06:11:21', 0, NULL, 0, NULL, 1),
(31088, 23835, '3', 'SRM University ', '', 'Bachelor of business administration ', '2022', 75.00, '', 1, '2025-01-28 06:15:56', 0, NULL, 0, NULL, 1),
(31089, 23836, '3', 'University of Madras ', '', 'Bsc Mathematics ', '2024', 71.00, '', 1, '2025-01-28 06:18:16', 0, NULL, 0, NULL, 1),
(31090, 23837, '4', 'Madhuri kamaraj university ', '', 'MBA ', '2025', 60.00, '', 1, '2025-01-28 06:22:28', 0, NULL, 0, NULL, 1),
(31091, 23839, '3', 'University ', '', 'Bca', '2024', 60.00, '', 1, '2025-01-28 07:04:04', 0, NULL, 0, NULL, 1),
(31092, 23840, '1', 'cbse', '', '', '2017', 82.20, '', 1, '2025-01-28 07:07:23', 0, NULL, 0, NULL, 1),
(31093, 23840, '2', 'cbse', '', '', '2019', 58.20, '', 1, '2025-01-28 07:07:47', 0, NULL, 0, NULL, 1),
(31094, 23841, '3', 'Madras University ', '', 'B.com Accounting and finance ', '2019', 75.00, '', 1, '2025-01-28 07:09:08', 0, NULL, 0, NULL, 1),
(31095, 23840, '3', 'university of madras', '', 'b.sc. computer science', '2022', 72.50, '', 1, '2025-01-28 07:09:09', 0, NULL, 0, NULL, 1),
(31096, 23841, '2', 'State board ', '', '', '2016', 75.00, '', 1, '2025-01-28 07:09:41', 0, NULL, 0, NULL, 1),
(31097, 23841, '1', 'State board ', '', '', '2014', 65.00, '', 1, '2025-01-28 07:10:01', 0, NULL, 0, NULL, 1),
(31098, 23842, '3', 'manonmaniam sundaranar university', '', '', '2024', 70.00, '', 1, '2025-01-28 07:14:10', 0, NULL, 0, NULL, 1),
(31099, 23844, '3', 'Bharathidasan University', '', 'BBA', '2021', 70.00, '', 1, '2025-01-28 08:45:51', 0, NULL, 0, NULL, 1),
(31100, 23838, '4', 'Manonmaniam sundaranar university ', '', 'MBA', '2024', 59.00, '', 1, '2025-01-28 11:27:49', 0, NULL, 0, NULL, 1),
(31101, 23838, '3', 'Manonmaniam sundaranar university ', '', 'B.com', '2022', 61.00, '', 1, '2025-01-28 11:28:23', 0, NULL, 0, NULL, 1),
(31102, 23850, '3', 'Anna university ', '', 'B.E', '2024', 78.00, '', 1, '2025-01-29 04:34:32', 0, NULL, 0, NULL, 1),
(31103, 23851, '3', 'Thiruvalluvar university ', '', 'B.sc biotechnology ', '2024', 86.00, '', 1, '2025-01-29 04:38:00', 0, NULL, 0, NULL, 1),
(31104, 23851, '1', 'Karapattu higher secondary school ', '', '', '2019', 75.00, '', 1, '2025-01-29 04:38:32', 0, NULL, 0, NULL, 1),
(31105, 23851, '2', 'Karapattu higher secondary school ', '', '', '2021', 80.00, '', 1, '2025-01-29 04:39:13', 0, NULL, 0, NULL, 1),
(31106, 23852, '3', 'Anna University ', '', 'BE', '2023', 76.00, '', 1, '2025-01-29 04:44:01', 0, NULL, 0, NULL, 1),
(31107, 23853, '3', 'dr.m.g.r educational and research institute', '', 'b. tech biotechnology', '2024', 60.00, '', 1, '2025-01-29 04:53:32', 0, NULL, 0, NULL, 1),
(31108, 23854, '3', 's v university', '', 'b com ', '2021', 75.00, '', 1, '2025-01-29 05:50:52', 0, NULL, 0, NULL, 1),
(31109, 23856, '4', 'JNTUK', '', 'B.Tech', '2023', 61.00, '', 1, '2025-01-29 06:15:58', 0, NULL, 0, NULL, 1),
(31110, 23857, '4', 'dr mgr uni ', '', 'msc', '2024', 87.00, '', 1, '2025-01-29 06:27:09', 0, NULL, 0, NULL, 1),
(31111, 23858, '3', 'Thiruvalluvar University ', '', 'BCA', '2020', 90.00, '', 1, '2025-01-29 06:54:59', 0, NULL, 0, NULL, 1),
(31112, 23859, '3', 'Manonmaniyam Sundaranar University', '', 'BA English literature', '2023', 7.30, '', 1, '2025-01-29 07:15:34', 0, NULL, 0, NULL, 1),
(31113, 23859, '2', 'Nadar Higher secondary School', '', '', '2020', 67.00, '', 1, '2025-01-29 07:18:19', 1, '2025-01-29 07:18:58', 0, NULL, 1),
(31114, 23859, '1', 'Nadar higher secondary school ', '', '', '2018', 89.00, '', 1, '2025-01-29 07:19:26', 1, '2025-01-29 07:19:51', 0, NULL, 0),
(31115, 23859, '1', 'Nadar Higher Secondary School ', '', '', '2018', 89.00, '', 1, '2025-01-29 07:20:34', 0, NULL, 0, NULL, 1),
(31116, 23862, '1', 'Senaiyar kalaimagal high school', '', '', '2018', 81.00, '', 1, '2025-01-29 07:35:05', 0, NULL, 0, NULL, 1),
(31117, 23862, '2', 'Nadar higher secondary school', '', '', '2020', 61.00, '', 1, '2025-01-29 07:36:17', 0, NULL, 0, NULL, 1),
(31118, 23861, '1', 'Kolping matri high Secondary School', '', '', '2018', 70.00, '', 1, '2025-01-29 07:39:18', 0, NULL, 0, NULL, 1),
(31119, 23861, '2', 'Kolping mrtri higher Secondary college', '', '', '2019', 75.00, '', 1, '2025-01-29 07:40:06', 0, NULL, 0, NULL, 1),
(31120, 23861, '3', 'Rajeshwari college atrs and science college', '', 'B. Com', '2022', 78.00, '', 1, '2025-01-29 07:41:34', 0, NULL, 0, NULL, 1),
(31121, 23860, '1', 'Government higher Secondary School', '', '', '2018', 66.00, '', 1, '2025-01-29 07:59:58', 0, NULL, 0, NULL, 1),
(31122, 23860, '2', 'Government higher Secondary School', '', '', '2020', 56.00, '', 1, '2025-01-29 08:00:19', 0, NULL, 0, NULL, 1),
(31123, 23860, '3', 'Bharadisan university', '', 'BA english', '2023', 66.00, '', 1, '2025-01-29 08:01:11', 0, NULL, 0, NULL, 1),
(31124, 23863, '3', 'Bharadhidasan ', '', 'Bsc', '2024', 82.00, '', 1, '2025-01-29 08:03:28', 0, NULL, 0, NULL, 1),
(31125, 23865, '4', 'University of Madras arts and science college ', '', 'B.A English And MBA finance management ', '2019', 65.00, '', 1, '2025-01-29 08:26:49', 0, NULL, 0, NULL, 1),
(31126, 23855, '4', 'Anna University ', '', 'MBA ', '2022', 8.30, '', 1, '2025-01-29 08:43:50', 0, NULL, 0, NULL, 1),
(31127, 23866, '3', 'University College Of Engineering Nagercoil ', '', 'B.tech', '2018', 68.00, '', 1, '2025-01-29 09:22:48', 0, NULL, 0, NULL, 1),
(31128, 23867, '3', 'Loyola institute of technology ', '', 'B.e', '2018', 5.93, '', 1, '2025-01-29 09:26:35', 0, NULL, 0, NULL, 1),
(31129, 23868, '4', 'Madras University ', '', 'MBA', '2024', 78.00, '', 1, '2025-01-29 10:01:24', 0, NULL, 0, NULL, 1),
(31130, 23869, '3', 'harathiyar university ', '', 'sc maths ', '2014', 74.50, '', 1, '2025-01-30 01:15:54', 0, NULL, 0, NULL, 1),
(31131, 23869, '2', 'state board ', '', '', '2011', 66.00, '', 1, '2025-01-30 01:18:37', 0, NULL, 0, NULL, 1),
(31132, 23869, '1', 'State board ', '', '', '2009', 74.50, '', 1, '2025-01-30 01:19:13', 0, NULL, 0, NULL, 1),
(31133, 23864, '3', 'Madras University', '', 'B.Com CA computer application ', '2024', 50.00, '', 1, '2025-01-30 05:08:05', 0, NULL, 0, NULL, 1),
(31134, 23871, '3', 'Anna University ', '', 'B.E', '2024', 83.20, '', 1, '2025-01-30 05:14:48', 0, NULL, 0, NULL, 1),
(31135, 23872, '3', 'Anna University ', '', 'BE', '2024', 86.00, '', 1, '2025-01-30 05:24:20', 0, NULL, 0, NULL, 1),
(31136, 23873, '5', 'Government polytechnic college ', '', 'ECE', '2024', 86.00, '', 1, '2025-01-30 05:26:45', 0, NULL, 0, NULL, 1),
(31137, 23876, '3', 'Anna university ', '', 'BE', '2024', 78.00, '', 1, '2025-01-30 05:44:41', 1, '2025-01-30 05:44:56', 0, NULL, 0),
(31138, 23876, '3', 'Anna university ', '', 'BE', '2024', 78.00, '', 1, '2025-01-30 05:45:23', 0, NULL, 0, NULL, 1),
(31139, 23874, '3', 'Madras university ', '', 'BBA ', '2024', 70.00, '', 1, '2025-01-30 05:48:38', 0, NULL, 0, NULL, 1),
(31140, 23877, '3', 'University of madras', '', 'BCA', '2024', 74.00, '', 1, '2025-01-30 06:04:03', 0, NULL, 0, NULL, 1),
(31141, 23875, '3', 'Madras university ', '', 'BSc chemistry ', '2024', 81.00, '', 1, '2025-01-30 06:07:36', 0, NULL, 0, NULL, 1),
(31142, 23878, '3', 'Thiruthangal nadar college', '', 'B. Com (cs) ', '2024', 60.00, '', 1, '2025-01-30 06:13:14', 0, NULL, 0, NULL, 1),
(31143, 23879, '3', 'anna university', '', 'b.e', '2024', 70.00, '', 1, '2025-01-30 06:14:32', 0, NULL, 0, NULL, 1),
(31144, 23880, '4', 'Annamalai University ', '', 'MBA', '2025', 80.00, '', 1, '2025-01-30 06:20:50', 0, NULL, 0, NULL, 1),
(31145, 23881, '4', 'Annaamalai university ', '', 'MBA', '2025', 75.00, '', 1, '2025-01-30 06:25:45', 0, NULL, 0, NULL, 1),
(31146, 23882, '4', 'Annamalai university ', '', 'MBA', '2025', 75.00, '', 1, '2025-01-30 06:30:09', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(31147, 23884, '3', 'Thiruvallur university ', '', 'BA ', '2019', 70.00, '', 1, '2025-01-30 07:21:05', 0, NULL, 0, NULL, 1),
(31148, 23885, '3', 'Thiruvalluvar university ', '', 'B.sc', '2024', 62.00, '', 1, '2025-01-30 07:22:34', 1, '2025-01-30 07:22:52', 0, NULL, 1),
(31149, 23883, '4', 'Madras University ', '', 'B.com(Bank Management)', '2024', 74.00, '', 1, '2025-01-30 07:25:03', 0, NULL, 0, NULL, 1),
(31150, 23887, '4', 'bharathiyar university', '', 'm.sc', '2021', 80.00, '', 1, '2025-01-30 07:28:30', 0, NULL, 0, NULL, 1),
(31151, 23886, '4', 'Tiruvalluvar university', '', 'MA .economic ', '2023', 76.00, '', 1, '2025-01-30 07:59:00', 0, NULL, 0, NULL, 1),
(31152, 23886, '3', 'Thiruvalluvar university', '', 'BA. Economic ', '2021', 65.00, '', 1, '2025-01-30 08:00:22', 0, NULL, 0, NULL, 1),
(31153, 23889, '3', 'Anna university', '', 'B.Tech', '2014', 7.64, '', 1, '2025-01-30 08:22:04', 0, NULL, 0, NULL, 1),
(31154, 23890, '4', 'CRESCENT UNIVERSITY', '', 'MBA ', '2025', 8.77, '', 1, '2025-01-30 09:11:27', 0, NULL, 0, NULL, 1),
(31155, 23890, '3', 'AUXILIUM COLLEGE ', '', 'BBA - General ', '2023', 7.00, '', 1, '2025-01-30 09:11:57', 1, '2025-01-30 09:12:13', 0, NULL, 1),
(31156, 23893, '3', 'bharathiyar university', '', 'm.sc computer science', '2021', 84.00, '', 1, '2025-01-30 12:05:43', 0, NULL, 0, NULL, 1),
(31157, 23892, '3', 'University ', '', 'BE computer science engineering ', '2024', 6.80, '', 1, '2025-01-30 01:28:00', 0, NULL, 0, NULL, 1),
(31158, 23894, '3', 'A.v.v.m.sri pushpam college bharathidasan unvistriy ', '', 'B.com computer application ', '2024', 65.00, '', 1, '2025-01-31 04:37:15', 0, NULL, 0, NULL, 1),
(31159, 23895, '3', 'thiruvalluvar university', '', 'b.sc', '2021', 85.00, '', 1, '2025-01-31 05:14:06', 0, NULL, 0, NULL, 1),
(31160, 23898, '3', 'SRI kanyaka parameshwari arts and science women\'s college ', '', 'B.com', '2023', 75.00, '', 1, '2025-01-31 05:28:46', 0, NULL, 0, NULL, 1),
(31161, 23897, '3', 'SIET ', '', 'UG', '2023', 75.00, '', 1, '2025-01-31 05:31:20', 0, NULL, 0, NULL, 1),
(31162, 23896, '1', 'State board ', '', '', '2009', 65.00, '', 1, '2025-01-31 05:35:23', 0, NULL, 0, NULL, 1),
(31163, 23899, '1', 'State board ', '', 'BCA ', '2010', 70.00, '', 1, '2025-01-31 06:19:17', 0, NULL, 0, NULL, 1),
(31164, 23899, '2', 'State board ', '', '', '2012', 65.00, '', 1, '2025-01-31 06:19:48', 0, NULL, 0, NULL, 1),
(31165, 23899, '3', 'Bharathidasan university ', '', 'BCA ', '2015', 78.00, '', 1, '2025-01-31 06:20:25', 0, NULL, 0, NULL, 1),
(31166, 23900, '3', 'Board', '', 'BA', '2022', 70.27, '', 1, '2025-01-31 06:34:48', 0, NULL, 0, NULL, 1),
(31167, 23901, '1', 'Government higher secondary school ', '', '', '2017', 92.00, '', 1, '2025-01-31 06:35:55', 0, NULL, 0, NULL, 1),
(31168, 23901, '2', 'Government higher secondary school ', '', '', '2019', 66.00, '', 1, '2025-01-31 06:36:25', 0, NULL, 0, NULL, 1),
(31169, 23901, '3', 'Dhanalakshmi srinivasan institute of technology ', '', 'B.E', '2023', 80.00, '', 1, '2025-01-31 06:37:15', 0, NULL, 0, NULL, 1),
(31170, 23902, '3', 'anna university', '', 'be', '2024', 75.00, '', 1, '2025-01-31 06:46:36', 0, NULL, 0, NULL, 1),
(31171, 23904, '4', 'Madras university', '', 'M. Sc', '2019', 73.00, '', 1, '2025-01-31 06:48:16', 0, NULL, 0, NULL, 1),
(31172, 23903, '3', 'University of Madras ', '', 'M.A.', '2024', 78.00, '', 1, '2025-01-31 06:48:26', 0, NULL, 0, NULL, 1),
(31173, 23903, '4', 'University of Madras ', '', 'M.a.', '2024', 78.00, '', 1, '2025-01-31 06:49:20', 0, NULL, 0, NULL, 1),
(31174, 23905, '3', 'SNS COLLEGE OF ENGINEERING', '', 'B.E', '2021', 73.00, '', 1, '2025-01-31 06:53:51', 0, NULL, 0, NULL, 1),
(31175, 23905, '2', 'SRI RAMAKRISHNA MATRIC HR SEC SCHOOL ', '', '', '2017', 70.00, '', 1, '2025-01-31 06:54:43', 0, NULL, 0, NULL, 1),
(31176, 23905, '1', 'SWAMI VIVEKANANDA MATRIC SCHOOL ', '', '', '2015', 90.00, '', 1, '2025-01-31 06:55:04', 0, NULL, 0, NULL, 1),
(31177, 23908, '3', 'University of Madras ', '', 'B.a.', '2025', 75.00, '', 1, '2025-01-31 06:59:19', 0, NULL, 0, NULL, 1),
(31178, 23907, '3', 'Dwarka Doss Goverdhan Doss Vaishnav College ', '', 'Bsc Mathematics With Computer Applications ', '2024', 83.00, '', 1, '2025-01-31 07:03:04', 0, NULL, 0, NULL, 1),
(31179, 23910, '3', 'Agni college of technology ', '', 'B.E', '2025', 78.00, '', 1, '2025-01-31 07:20:15', 0, NULL, 0, NULL, 1),
(31180, 23911, '3', 'Agni college of technology ', '', 'Biomedical Engineering ', '2023', 7.99, '', 1, '2025-01-31 07:29:06', 0, NULL, 0, NULL, 1),
(31181, 23912, '3', 'Madras University ', '', 'Bca', '2023', 88.00, '', 1, '2025-01-31 10:12:26', 0, NULL, 0, NULL, 1),
(31182, 23913, '3', 'Madras University ', '', 'B.com', '2023', 85.00, '', 1, '2025-01-31 12:23:46', 0, NULL, 0, NULL, 1),
(31183, 23914, '3', 'periyar university', '', 'b.a', '2020', 75.00, '', 1, '2025-01-31 12:30:35', 0, NULL, 0, NULL, 1),
(31184, 23915, '3', 'periyar university', '', 'bca', '2020', 75.00, '', 1, '2025-01-31 12:35:48', 0, NULL, 0, NULL, 1),
(31185, 23916, '3', 'Madras University ', '', 'BCA', '2022', 69.00, '', 1, '2025-01-31 05:44:18', 0, NULL, 0, NULL, 1),
(31186, 23918, '4', 'Anna University ', '', 'MBA', '2024', 7.60, '', 1, '2025-02-01 05:13:07', 0, NULL, 0, NULL, 1),
(31187, 23917, '4', 'Bangalore university', '', 'MBA', '2016', 75.00, '', 1, '2025-02-01 05:16:30', 0, NULL, 0, NULL, 1),
(31188, 23920, '4', 'JNTU university Ananthapur ', '', 'MBA', '2024', 7.81, '', 1, '2025-02-01 05:31:20', 0, NULL, 0, NULL, 1),
(31189, 23919, '4', 'Jawaharlal Nehru Technological University ', '', 'M.B.A', '2024', 80.00, '', 1, '2025-02-01 05:31:28', 0, NULL, 0, NULL, 1),
(31190, 23921, '4', 'BHARATHIDASAN UNIVERSITY ', '', 'M.Phil', '2019', 70.00, '', 1, '2025-02-01 06:04:57', 0, NULL, 0, NULL, 1),
(31191, 23922, '3', 'Anna University ', '', 'BE', '2024', 83.00, '', 1, '2025-02-01 06:06:02', 0, NULL, 0, NULL, 1),
(31192, 23923, '3', 'institute', '', 'b.e', '2020', 65.00, '', 1, '2025-02-01 06:44:10', 0, NULL, 0, NULL, 1),
(31193, 23924, '3', 'Madras University ', '', 'BCA', '2011', 75.00, '', 1, '2025-02-01 06:51:57', 0, NULL, 0, NULL, 1),
(31194, 23924, '2', 'State board ', '', '', '2008', 92.00, '', 1, '2025-02-01 06:52:23', 1, '2025-02-01 06:53:50', 0, NULL, 1),
(31195, 23924, '1', 'State board', '', '', '2006', 92.00, '', 1, '2025-02-01 06:53:04', 1, '2025-02-01 06:53:32', 0, NULL, 1),
(31196, 23926, '3', 'anna university ', '', 'be', '2024', 7.00, '', 1, '2025-02-01 07:32:12', 1, '2025-02-01 07:32:41', 0, NULL, 0),
(31197, 23926, '3', 'anna university ', '', 'be', '2024', 7.00, '', 1, '2025-02-01 07:33:28', 0, NULL, 0, NULL, 1),
(31198, 23927, '3', 'Madras ', '', 'B.Com (General)', '2022', 94.00, '', 1, '2025-02-01 08:49:45', 0, NULL, 0, NULL, 1),
(31199, 23929, '3', 'JNTU Anantapur ', '', 'Btech', '2024', 70.00, '', 1, '2025-02-01 09:05:57', 0, NULL, 0, NULL, 1),
(31200, 23930, '4', 'Association of Indian universities ', '', 'Master of business administration ', '2024', 82.00, '', 1, '2025-02-01 09:07:02', 0, NULL, 0, NULL, 1),
(31201, 23931, '3', 'Madam university ', '', 'BBA', '2022', 88.00, '', 1, '2025-02-01 09:24:40', 0, NULL, 0, NULL, 1),
(31202, 23932, '1', 'Bhuneshwar ', '', '', '2018', 45.00, '', 1, '2025-02-01 09:37:59', 0, NULL, 0, NULL, 1),
(31203, 23925, '3', 'Anna university ', '', 'B tech ', '2023', 78.00, '', 1, '2025-02-03 04:26:26', 0, NULL, 0, NULL, 1),
(31204, 23934, '3', 'University of Madras ', '', 'Bsc psychology ', '2021', 56.00, '', 1, '2025-02-03 04:34:32', 0, NULL, 0, NULL, 1),
(31205, 23935, '3', 'Islami college automatic ', '', 'BBA ', '2022', 70.00, '', 1, '2025-02-03 04:59:40', 0, NULL, 0, NULL, 1),
(31206, 23935, '4', 'Islami college automatic ', '', 'BBA ', '2022', 70.00, '', 1, '2025-02-03 05:00:33', 0, NULL, 0, NULL, 1),
(31207, 23935, '5', 'Islami college automatic ', '', 'BBA ', '2022', 70.00, '', 1, '2025-02-03 05:01:11', 0, NULL, 0, NULL, 1),
(31208, 23936, '4', 'Anna university ', '', 'MCA ', '2023', 87.00, '', 1, '2025-02-03 05:07:20', 0, NULL, 0, NULL, 1),
(31209, 23939, '3', 'Madras University ', '', 'BCA', '2024', 50.00, '', 1, '2025-02-03 05:22:42', 0, NULL, 0, NULL, 1),
(31210, 23937, '3', 'Sri Venkateswaraa college of technology ', '', 'BE COMPUTER SCIENCE AND ENGINEERING ', '2025', 7.98, '', 1, '2025-02-03 05:25:33', 0, NULL, 0, NULL, 1),
(31211, 23940, '4', 'Bharath institute of higher education research ', '', 'Msc computer science ', '2024', 75.00, '', 1, '2025-02-03 05:30:49', 0, NULL, 0, NULL, 1),
(31212, 23941, '3', 'madras univ ', '', 'bcom marketing man ', '2022', 52.00, '', 1, '2025-02-03 05:31:40', 0, NULL, 0, NULL, 1),
(31213, 23774, '3', 'Madras', '', 'BA english', '2024', 68.00, '', 1, '2025-02-03 05:37:57', 0, NULL, 0, NULL, 1),
(31214, 23942, '4', 'bharath university ', '', 'msc computer science', '2024', 77.00, '', 1, '2025-02-03 05:40:25', 0, NULL, 0, NULL, 1),
(31215, 23938, '4', 'University ', '', 'M sc geography ', '2023', 88.00, '', 1, '2025-02-03 05:56:45', 0, NULL, 0, NULL, 1),
(31216, 23943, '3', 'srm ramapuram', '', '', '2025', 9.25, '', 1, '2025-02-03 06:09:18', 0, NULL, 0, NULL, 1),
(31217, 21633, '3', 'Anna University Regional Campus Coimbatore', '', 'BE', '2022', 80.00, '', 1, '2025-02-03 06:37:10', 0, NULL, 0, NULL, 1),
(31218, 23947, '3', 'Periyar university ', '', 'Bcom', '2023', 85.00, '', 1, '2025-02-03 10:22:15', 0, NULL, 0, NULL, 1),
(31219, 23950, '4', 'Madras University ', '', 'Msc.computer science ', '2024', 81.00, '', 1, '2025-02-04 05:22:09', 0, NULL, 0, NULL, 1),
(31220, 23951, '2', 'Oxford matriculation school', '', 'Bachelor of science', '2020', 70.00, '', 1, '2025-02-04 05:33:09', 0, NULL, 0, NULL, 1),
(31221, 23952, '3', 'Anna University ', '', 'B.Tech iT', '2024', 8.20, '', 1, '2025-02-04 05:33:17', 0, NULL, 0, NULL, 1),
(31222, 23952, '2', 'Chennai girls higher secondary school ', '', '', '2020', 76.00, '', 1, '2025-02-04 05:33:52', 0, NULL, 0, NULL, 1),
(31223, 23741, '3', 'Autonomous', '', 'Bsc statistics ', '2023', 60.00, '', 1, '2025-02-04 05:34:11', 0, NULL, 0, NULL, 1),
(31224, 23952, '1', 'AEM high school ', '', '', '2018', 88.00, '', 1, '2025-02-04 05:34:16', 0, NULL, 0, NULL, 1),
(31225, 23948, '1', '?????????', '', '', '2017', 93.20, '', 1, '2025-02-04 05:41:17', 0, NULL, 0, NULL, 1),
(31226, 23949, '3', 'Madras University ', '', 'B.com computer application ', '2024', 70.00, '', 1, '2025-02-04 05:42:17', 0, NULL, 0, NULL, 1),
(31227, 23953, '4', 'Vels University ', '', 'M.sc', '2022', 71.00, '', 1, '2025-02-04 05:58:13', 0, NULL, 0, NULL, 1),
(31228, 23955, '3', 'Agurchand manmull jain college ', '', 'B.com', '2023', 65.00, '', 1, '2025-02-04 06:03:44', 0, NULL, 0, NULL, 1),
(31229, 23954, '3', 'AnanthaLakshmi Institute of technology and sciences ', '', 'Btech', '2024', 76.00, '', 1, '2025-02-04 06:04:33', 0, NULL, 0, NULL, 1),
(31230, 23956, '3', 'madras', '', 'b.com', '2021', 80.00, '', 1, '2025-02-04 06:25:36', 0, NULL, 0, NULL, 1),
(31231, 23958, '3', 'Anna university ', '', 'BE CSE ', '2024', 7.90, '', 1, '2025-02-04 07:25:35', 1, '2025-02-04 07:26:25', 0, NULL, 0),
(31232, 23958, '5', 'Dote', '', 'Diploma', '2021', 9.20, '', 1, '2025-02-04 07:26:09', 1, '2025-02-04 07:26:21', 0, NULL, 0),
(31233, 23958, '1', 'State board', '', '', '2018', 78.00, '', 1, '2025-02-04 07:27:40', 1, '2025-02-04 07:28:45', 0, NULL, 0),
(31234, 23958, '5', 'Dote', '', 'Diploma', '2021', 9.20, '', 1, '2025-02-04 07:28:04', 1, '2025-02-04 07:28:51', 0, NULL, 0),
(31235, 23958, '3', 'Anna university ', '', 'BE CSE ', '2024', 7.90, '', 1, '2025-02-04 07:28:27', 0, NULL, 0, NULL, 1),
(31236, 23957, '3', 'Anna University ', '', 'BE', '2024', 6.10, '', 1, '2025-02-04 07:29:46', 0, NULL, 0, NULL, 1),
(31237, 23959, '3', 'Jawaharlal Nehru technological University ', '', 'Batchelors of technology ', '2022', 67.27, '', 1, '2025-02-04 08:15:50', 0, NULL, 0, NULL, 1),
(31238, 23961, '3', 'University ', '', 'B. cOM', '2024', 75.00, '', 1, '2025-02-04 09:36:08', 0, NULL, 0, NULL, 1),
(31239, 23962, '3', 'Madras University', '', 'BA english', '2027', 75.00, '', 1, '2025-02-04 09:46:19', 0, NULL, 0, NULL, 1),
(31240, 23964, '1', 'state board of tamilnadu', '', '', '2017', 66.00, '', 1, '2025-02-04 03:31:55', 1, '2025-02-04 03:33:27', 0, NULL, 1),
(31241, 23964, '2', 'state board of tamilnadu', '', '', '2019', 45.00, '', 1, '2025-02-04 03:34:36', 0, NULL, 0, NULL, 1),
(31242, 23964, '3', 'university of madras', '', 'b.com bank management', '2022', 57.00, '', 1, '2025-02-04 03:36:07', 0, NULL, 0, NULL, 1),
(31243, 23965, '3', 'Justice basheer Ahmed Sayed college for women ', '', 'Business Administration ', '2023', 68.00, '', 1, '2025-02-04 04:55:04', 0, NULL, 0, NULL, 1),
(31244, 23966, '3', 'Bharathidhasan university', '', 'Ba english', '2020', 70.00, '', 1, '2025-02-05 05:47:31', 0, NULL, 0, NULL, 1),
(31245, 23960, '3', 'Dr. Mgr educational and research institute ', '', 'BCA', '2024', 7.22, '', 1, '2025-02-05 06:41:01', 0, NULL, 0, NULL, 1),
(31246, 23963, '3', 'SRM INSTITUTE OF SCIENCE AND TECHNOLOGY ', '', 'BCA', '2024', 6.49, '', 1, '2025-02-05 06:46:16', 0, NULL, 0, NULL, 1),
(31247, 23967, '3', 'Madras university ', '', 'B.com(c.s)', '2020', 67.60, '', 1, '2025-02-05 06:52:28', 0, NULL, 0, NULL, 1),
(31248, 23968, '3', 'Madras university ', '', 'B.Com cS', '2024', 71.00, '', 1, '2025-02-05 08:02:46', 0, NULL, 0, NULL, 1),
(31249, 23969, '3', 'Bangalore University', '', 'BCA', '2021', 78.00, '', 1, '2025-02-05 09:08:42', 0, NULL, 0, NULL, 1),
(31250, 23971, '3', 'University of Madras ', '', 'BBA', '2021', 71.00, '', 1, '2025-02-05 09:19:39', 0, NULL, 0, NULL, 1),
(31251, 23970, '4', 'JNTUA university ', '', 'Engineering ', '2024', 73.00, '', 1, '2025-02-05 09:29:57', 0, NULL, 0, NULL, 1),
(31252, 23972, '3', 'Mgr university ', '', 'B.a political science ', '2024', 6.50, '', 1, '2025-02-05 09:49:46', 0, NULL, 0, NULL, 1),
(31253, 23973, '3', 'Madras University ', '', 'Bcom', '2021', 75.00, '', 1, '2025-02-05 09:57:47', 0, NULL, 0, NULL, 1),
(31254, 23974, '3', 'Madras University ', '', 'Bsc computer science ', '2024', 74.00, '', 1, '2025-02-05 10:11:34', 0, NULL, 0, NULL, 1),
(31255, 19609, '3', 'Sastra University', '', 'B. Tech Chemical Engineering', '2023', 81.00, '', 1, '2025-02-05 10:25:02', 0, NULL, 0, NULL, 1),
(31256, 23975, '3', 'bangalore universit ', '', 'b.com', '2023', 70.00, '', 1, '2025-02-05 01:02:21', 0, NULL, 0, NULL, 1),
(31257, 23981, '3', 'Bharathidasan', '', 'Bca', '2017', 75.00, '', 1, '2025-02-06 04:28:13', 0, NULL, 0, NULL, 1),
(31258, 23980, '3', 'SRM UNIVERSITY ', '', 'B.com', '2023', 65.00, '', 1, '2025-02-06 04:28:36', 0, NULL, 0, NULL, 1),
(31259, 23982, '1', 'Psn college of engineering and technology tirunelveli ', '', '', '2023', 9.30, '', 1, '2025-02-06 04:30:36', 1, '2025-02-06 04:30:47', 0, NULL, 0),
(31260, 23982, '3', 'PSN COLLEGE OF ENGINEERING AND TECHNOLOGY TIRUNELVELI ', '', 'B.E Aeronautical ', '2023', 93.00, '', 1, '2025-02-06 04:32:38', 0, NULL, 0, NULL, 1),
(31261, 23983, '4', 'Jawaharlal Nehru University ', '', 'B. Com', '2022', 7.80, '', 1, '2025-02-06 04:58:07', 0, NULL, 0, NULL, 1),
(31262, 23984, '1', 'Vemu institution of technology ', '', '', '2025', 72.00, '', 1, '2025-02-06 05:09:54', 0, NULL, 0, NULL, 1),
(31263, 23987, '4', 'Kuvempu university Shankaraghatta ', '', 'MSc', '2024', 80.08, '', 1, '2025-02-06 05:15:26', 0, NULL, 0, NULL, 1),
(31264, 23987, '3', 'Kuvempu university ', '', 'BSc', '2022', 90.50, '', 1, '2025-02-06 05:15:56', 0, NULL, 0, NULL, 1),
(31265, 23986, '4', 'Kalasalìngam accademy of research and education ', '', 'MCA', '2024', 8.20, '', 1, '2025-02-06 05:16:40', 0, NULL, 0, NULL, 1),
(31266, 23987, '2', 'Karnatak PU board ', '', '', '2019', 76.00, '', 1, '2025-02-06 05:17:25', 0, NULL, 0, NULL, 1),
(31267, 23986, '3', 'Manonmaniyam university ', '', 'B.SC.cs', '2018', 55.00, '', 1, '2025-02-06 05:17:30', 0, NULL, 0, NULL, 1),
(31268, 23987, '1', 'SSLC board ', '', '', '2017', 87.04, '', 1, '2025-02-06 05:17:51', 0, NULL, 0, NULL, 1),
(31269, 23977, '3', 'University ', '', 'B. Sc physics ', '2020', 50.00, '', 1, '2025-02-06 05:33:05', 0, NULL, 0, NULL, 1),
(31270, 23989, '3', 'Madras university ', '', 'B. Com', '2020', 89.00, '', 1, '2025-02-06 05:33:15', 0, NULL, 0, NULL, 1),
(31271, 23989, '4', 'Mardas university ', '', 'B. Com', '2020', 89.00, '', 1, '2025-02-06 05:34:17', 0, NULL, 0, NULL, 1),
(31272, 23985, '3', 'dr ambedkar govt arts and science college', '', 'ba english', '2024', 60.00, '', 1, '2025-02-06 05:36:14', 0, NULL, 0, NULL, 1),
(31273, 23990, '3', 'Tamilnadu teacher recruitment board ', '', 'B.ed', '2024', 68.00, '', 1, '2025-02-06 05:36:20', 0, NULL, 0, NULL, 1),
(31274, 23988, '3', 'university of madras', '', 'B. A economics', '2024', 80.00, '', 1, '2025-02-06 05:38:57', 0, NULL, 0, NULL, 1),
(31275, 23991, '4', 'Vtu university ', '', 'MBA', '2013', 61.00, '', 1, '2025-02-06 05:45:06', 0, NULL, 0, NULL, 1),
(31276, 23992, '5', 'Dote', '', 'Beee', '2020', 73.00, '', 1, '2025-02-06 06:02:09', 0, NULL, 0, NULL, 1),
(31277, 23993, '2', 'Crescent high school ', '', '', '2013', 78.00, '', 1, '2025-02-06 06:10:40', 0, NULL, 0, NULL, 1),
(31278, 23994, '3', 'Bangalore University ', '', 'BACHELOR  of Arts ', '2022', 78.00, '', 1, '2025-02-06 07:42:49', 0, NULL, 0, NULL, 1),
(31279, 23995, '3', 'University of Madras ', '', 'BCA ', '2024', 72.00, '', 1, '2025-02-06 07:59:30', 0, NULL, 0, NULL, 1),
(31280, 24002, '4', 'University of Madras ', '', 'Mba', '2025', 60.00, '', 1, '2025-02-07 04:09:23', 0, NULL, 0, NULL, 1),
(31281, 24002, '3', 'St. Peter institute higher education research ', '', 'Bcom general ', '2021', 57.00, '', 1, '2025-02-07 04:10:29', 0, NULL, 0, NULL, 1),
(31282, 24003, '4', 'bharathiar university ', '', ' mba', '2025', 79.00, '', 1, '2025-02-07 04:47:24', 0, NULL, 0, NULL, 1),
(31283, 24005, '3', 'University of Madras ', '', 'BBA', '2023', 50.00, '', 1, '2025-02-07 05:16:05', 0, NULL, 0, NULL, 1),
(31284, 24004, '3', 'University of madras', '', 'Bba', '2023', 50.00, '', 1, '2025-02-07 05:16:06', 0, NULL, 0, NULL, 1),
(31285, 24006, '3', 'Madras University ', '', 'B.com accounting finance ', '2022', 60.00, '', 1, '2025-02-07 05:33:04', 0, NULL, 0, NULL, 1),
(31286, 24008, '4', 'University ', '', 'MBA', '2024', 70.00, '', 1, '2025-02-07 05:59:51', 0, NULL, 0, NULL, 1),
(31287, 24007, '3', 'Anna University ', '', 'B.sc comp.sci', '2023', 77.00, '', 1, '2025-02-07 06:08:23', 0, NULL, 0, NULL, 1),
(31288, 24010, '3', 'Pmist ', '', 'Bca', '2025', 59.00, '', 1, '2025-02-07 06:14:10', 0, NULL, 0, NULL, 1),
(31289, 24011, '3', 'Madras University ', '', 'Bsc', '2025', 85.00, '', 1, '2025-02-07 06:20:56', 0, NULL, 0, NULL, 1),
(31290, 24014, '3', 'Madras University ', '', 'B.sc', '2025', 83.00, '', 1, '2025-02-07 06:23:31', 0, NULL, 0, NULL, 1),
(31291, 24013, '3', 'Madras university ', '', 'Bsc', '2025', 8.10, '', 1, '2025-02-07 06:23:41', 0, NULL, 0, NULL, 1),
(31292, 24015, '3', 'Madras University ', '', 'Bsc', '2025', 85.00, '', 1, '2025-02-07 06:24:20', 0, NULL, 0, NULL, 1),
(31293, 24012, '3', 'Madras University ', '', 'B. SC. ELECTRONICS AND COMMUNICATION SCIENCE ', '2025', 90.00, '', 1, '2025-02-07 06:25:19', 0, NULL, 0, NULL, 1),
(31294, 24018, '3', 'Madras university ', '', 'B. Sc. Electronics and communication science ', '2025', 84.00, '', 1, '2025-02-07 06:25:41', 0, NULL, 0, NULL, 1),
(31295, 24017, '3', 'Madras University ', '', 'Bsc', '2025', 80.00, '', 1, '2025-02-07 06:27:44', 0, NULL, 0, NULL, 1),
(31296, 24016, '3', 'Madras university', '', 'Bsc', '2025', 87.00, '', 1, '2025-02-07 06:30:42', 0, NULL, 0, NULL, 1),
(31297, 24020, '3', 'Madras University ', '', 'B.Sc Electronics and communication science ', '2025', 62.00, '', 1, '2025-02-07 07:48:55', 0, NULL, 0, NULL, 1),
(31298, 24021, '3', 'Madras university ', '', 'B.Sc Electronics and Communication Science ', '2025', 84.00, '', 1, '2025-02-07 08:00:17', 0, NULL, 0, NULL, 1),
(31299, 24024, '3', 'Madras University ', '', 'BSC.ELECTRONIC AND COMMUNICATION SCIENCE', '2025', 82.00, '', 1, '2025-02-07 08:09:10', 0, NULL, 0, NULL, 1),
(31300, 24029, '4', 'Anna University ', '', 'B.TECH', '2024', 7.96, '', 1, '2025-02-07 08:12:11', 0, NULL, 0, NULL, 1),
(31301, 24026, '3', 'University ', '', 'Bcom BPS', '2024', 63.00, '', 1, '2025-02-07 08:14:06', 0, NULL, 0, NULL, 1),
(31302, 24028, '1', 'Karnataka State board', '', 'B com', '2018', 54.00, '', 1, '2025-02-07 08:16:38', 0, NULL, 0, NULL, 1),
(31303, 24023, '4', 'University ', '', 'MBA - logistics ', '2023', 7.28, '', 1, '2025-02-07 08:16:47', 0, NULL, 0, NULL, 1),
(31304, 24028, '2', 'Pre university', '', '', '2021', 60.00, '', 1, '2025-02-07 08:17:48', 0, NULL, 0, NULL, 1),
(31305, 24028, '3', 'Bangalore university', '', 'B com', '2024', 60.00, '', 1, '2025-02-07 08:18:51', 0, NULL, 0, NULL, 1),
(31306, 24025, '3', 'Madras university ', '', 'B.Sc.Electronics and communication science ', '2025', 80.00, '', 1, '2025-02-07 08:33:20', 0, NULL, 0, NULL, 1),
(31307, 24030, '3', 'Madras University ', '', 'Bca', '2016', 70.00, '', 1, '2025-02-07 11:05:55', 0, NULL, 0, NULL, 1),
(31308, 24031, '4', 'Bharathidasan university form Tiruchirapalli. ', '', 'Msc Biotechnology ', '2024', 71.00, '', 1, '2025-02-07 01:39:46', 0, NULL, 0, NULL, 1),
(31309, 24032, '3', 'University ', '', 'BBA', '2024', 84.70, '', 1, '2025-02-08 03:53:47', 0, NULL, 0, NULL, 1),
(31310, 24034, '3', 'srm university', '', 'bca', '2023', 7.80, '', 1, '2025-02-08 04:42:11', 0, NULL, 0, NULL, 1),
(31311, 24035, '3', 'The new college', '', 'B com (c.s) ', '2023', 55.00, '', 1, '2025-02-08 04:52:52', 0, NULL, 0, NULL, 1),
(31312, 24033, '3', 'Annai veilankanni\'s collage', '', 'B.com ', '2024', 82.00, '', 1, '2025-02-08 04:55:01', 0, NULL, 0, NULL, 1),
(31313, 24037, '1', 'state board', '', '', '2018', 78.00, '', 1, '2025-02-08 05:26:37', 0, NULL, 0, NULL, 1),
(31314, 24037, '2', 'state Board ', '', '', '2020', 61.00, '', 1, '2025-02-08 05:27:08', 0, NULL, 0, NULL, 1),
(31315, 24037, '3', 'madras university', '', 'bca ', '2023', 7.08, '', 1, '2025-02-08 05:27:59', 0, NULL, 0, NULL, 1),
(31316, 24038, '3', 'madras unibersity ', '', 'b.com', '2024', 68.00, '', 1, '2025-02-08 07:05:47', 0, NULL, 0, NULL, 1),
(31317, 24039, '3', 'Anna University ', '', '', '2024', 75.00, '', 1, '2025-02-08 07:35:31', 0, NULL, 0, NULL, 1),
(31318, 24040, '3', 'University of Madras ', '', 'B.sc Mathematics ', '2023', 68.00, '', 1, '2025-02-08 09:15:50', 0, NULL, 0, NULL, 1),
(31319, 24041, '2', 'St John\'s higher secondary school ', '', '', '2022', 60.00, '', 1, '2025-02-08 01:08:13', 0, NULL, 0, NULL, 1),
(31320, 24042, '3', 'Madras university', '', 'B. Com', '2020', 57.00, '', 1, '2025-02-10 05:34:45', 0, NULL, 0, NULL, 1),
(31321, 24043, '5', 'dote', '', 'diploma', '2019', 77.00, '', 1, '2025-02-10 05:35:53', 0, NULL, 0, NULL, 1),
(31322, 24042, '1', 'Govt Hr sec school', '', '', '2014', 57.00, '', 1, '2025-02-10 05:36:03', 0, NULL, 0, NULL, 1),
(31323, 24042, '2', 'Govt Hr sec school', '', '', '2016', 53.00, '', 1, '2025-02-10 05:37:07', 0, NULL, 0, NULL, 1),
(31324, 24044, '3', 'SIVET COLLEGE', '', 'BBA', '2021', 70.00, '', 1, '2025-02-10 05:46:07', 0, NULL, 0, NULL, 1),
(31325, 24044, '1', 'Govt higher secondary school ', '', '', '2015', 58.00, '', 1, '2025-02-10 05:48:05', 0, NULL, 0, NULL, 1),
(31326, 24044, '2', 'Govt higher secondary school ', '', '', '2017', 53.00, '', 1, '2025-02-10 05:48:43', 0, NULL, 0, NULL, 1),
(31327, 24045, '4', 'Sastra Deemed University, Thanjavur ', '', 'MCA', '2024', 75.00, '', 1, '2025-02-10 05:52:03', 0, NULL, 0, NULL, 1),
(31328, 24048, '3', 'madras university ', '', 'bachelor of business adminis ', '2022', 52.00, '', 1, '2025-02-10 06:31:31', 0, NULL, 0, NULL, 1),
(31329, 24050, '4', 'Kalasalingam academy of research and education ', '', 'MCA', '2024', 86.00, '', 1, '2025-02-10 06:43:18', 0, NULL, 0, NULL, 1),
(31330, 24050, '3', 'Arulmigu kalasalingam of arts and science college', '', 'BCA', '2018', 73.00, '', 1, '2025-02-10 06:44:17', 0, NULL, 0, NULL, 1),
(31331, 24051, '3', 'Shivamogga ', '', 'B.com', '2021', 58.00, '', 1, '2025-02-10 07:26:11', 0, NULL, 0, NULL, 1),
(31332, 24053, '3', 'Sv university ', '', 'B com computers', '2023', 70.00, '', 1, '2025-02-10 08:25:58', 0, NULL, 0, NULL, 1),
(31333, 24052, '3', 'JNTU ananthapur ', '', 'B tech ', '2024', 88.00, '', 1, '2025-02-10 09:14:56', 0, NULL, 0, NULL, 1),
(31334, 24054, '4', 'Visvesvaraya technological University ', '', 'MCA', '2023', 74.00, '', 1, '2025-02-11 05:13:19', 0, NULL, 0, NULL, 1),
(31335, 24054, '3', 'University of mysore', '', 'BSc', '2021', 62.00, '', 1, '2025-02-11 05:14:08', 0, NULL, 0, NULL, 1),
(31336, 24055, '3', 'Bharathithasan university', '', 'B. Sc computer science', '2024', 75.00, '', 1, '2025-02-11 05:37:51', 1, '2025-02-11 05:38:33', 0, NULL, 0),
(31337, 24055, '1', 'Ghs school', '', '', '2019', 65.00, '', 1, '2025-02-11 05:39:55', 0, NULL, 0, NULL, 1),
(31338, 24055, '2', 'Ghs School', '', '', '2021', 75.00, '', 1, '2025-02-11 05:40:36', 0, NULL, 0, NULL, 1),
(31339, 24055, '3', 'Bharathithasan university', '', 'B. Sc computer science', '2024', 75.00, '', 1, '2025-02-11 05:41:16', 0, NULL, 0, NULL, 1),
(31340, 24056, '3', 'Anna University ', '', 'BE', '2024', 88.76, '', 1, '2025-02-11 06:08:29', 0, NULL, 0, NULL, 1),
(31341, 24059, '3', 'Mgr university ', '', 'Bca', '2024', 60.00, '', 1, '2025-02-11 06:17:45', 0, NULL, 0, NULL, 1),
(31342, 24060, '1', 'ABU MATRIC HIGHER SECONDARY SCHOOL ', '', '', '2018', 65.00, '', 1, '2025-02-11 06:18:01', 0, NULL, 0, NULL, 1),
(31343, 24058, '3', 'Mgr university ', '', 'BCA', '2024', 65.00, '', 1, '2025-02-11 06:18:08', 0, NULL, 0, NULL, 1),
(31344, 24057, '3', 'Guru Nanak College ,Madras University ', '', 'Bsc Biotechnology ', '2022', 75.00, '', 1, '2025-02-11 06:19:44', 0, NULL, 0, NULL, 1),
(31345, 24060, '5', 'Dr.KALAM POLYTECHNIC COLLEGE ', '', 'Diploma in Mechanical Engineer ', '2021', 70.00, '', 1, '2025-02-11 06:23:06', 1, '2025-02-11 06:23:59', 0, NULL, 1),
(31346, 24062, '3', 'Anna University', '', 'B E Mechanical Engineering ', '2020', 70.00, '', 1, '2025-02-11 06:57:50', 0, NULL, 0, NULL, 1),
(31347, 24062, '2', 'State Board', '', '', '2016', 70.00, '', 1, '2025-02-11 06:58:23', 1, '2025-02-11 06:59:02', 0, NULL, 0),
(31348, 24062, '1', 'State Board', '', '', '2014', 75.00, '', 1, '2025-02-11 06:58:41', 1, '2025-02-11 06:59:07', 0, NULL, 0),
(31349, 24062, '2', 'State Board', '', '', '2016', 70.00, '', 1, '2025-02-11 06:59:29', 0, NULL, 0, NULL, 1),
(31350, 24062, '1', 'State Board', '', '', '2014', 75.00, '', 1, '2025-02-11 06:59:59', 0, NULL, 0, NULL, 1),
(31351, 24063, '4', 'angalore cuty uni', '', 'bcom', '2023', 54.00, '', 1, '2025-02-11 07:18:14', 0, NULL, 0, NULL, 1),
(31352, 24064, '4', 'Bharathidasan university ', '', 'MA', '2021', 74.00, '', 1, '2025-02-11 07:26:00', 0, NULL, 0, NULL, 1),
(31353, 24066, '3', 'DG Vaishnav college ', '', 'Bachelor of computer application ', '2024', 75.00, '', 1, '2025-02-11 11:14:17', 0, NULL, 0, NULL, 1),
(31354, 24069, '4', 'Madhurai Kamaraj University ', '', 'B.com', '2022', 63.10, '', 1, '2025-02-11 11:41:33', 0, NULL, 0, NULL, 1),
(31355, 24068, '3', 'Madras University ', '', 'BCA', '2023', 70.00, '', 1, '2025-02-12 04:08:46', 0, NULL, 0, NULL, 1),
(31356, 24071, '2', 'State board', '', '', '2019', 74.00, '', 1, '2025-02-12 05:10:38', 0, NULL, 0, NULL, 1),
(31357, 24071, '1', 'State board', '', '', '2017', 91.00, '', 1, '2025-02-12 05:11:31', 1, '2025-02-12 05:11:57', 0, NULL, 1),
(31358, 24072, '3', 'Prist university ', '', 'BE', '2020', 69.00, '', 1, '2025-02-12 05:15:54', 0, NULL, 0, NULL, 1),
(31359, 24073, '3', 'Anna University ', '', 'BE', '2024', 79.00, '', 1, '2025-02-12 05:18:15', 0, NULL, 0, NULL, 1),
(31360, 24074, '3', 'madras university', '', 'b.com', '2024', 70.00, '', 1, '2025-02-12 05:27:12', 0, NULL, 0, NULL, 1),
(31361, 24047, '3', 'Madras University ', '', 'Bba', '2021', 78.00, '', 1, '2025-02-12 05:37:15', 0, NULL, 0, NULL, 1),
(31362, 24076, '3', 'Madras university', '', 'B. Com general', '2024', 80.00, '', 1, '2025-02-12 06:45:33', 0, NULL, 0, NULL, 1),
(31363, 24076, '2', 'State board', '', '', '2021', 73.00, '', 1, '2025-02-12 06:46:47', 0, NULL, 0, NULL, 1),
(31364, 24076, '1', 'State board ', '', '', '2019', 58.00, '', 1, '2025-02-12 06:47:10', 0, NULL, 0, NULL, 1),
(31365, 24061, '2', 'State ', '', '', '2022', 80.00, '', 1, '2025-02-12 06:56:50', 0, NULL, 0, NULL, 1),
(31366, 24082, '3', 'University of Madras ', '', 'Bcs computer science ', '2022', 81.00, '', 1, '2025-02-12 08:29:03', 0, NULL, 0, NULL, 1),
(31367, 24081, '3', 'Madras University ', '', 'BCA', '2024', 70.00, '', 1, '2025-02-12 08:44:16', 0, NULL, 0, NULL, 1),
(31368, 24083, '3', 'Madras University ', '', 'B.comcs', '2021', 60.00, '', 1, '2025-02-12 09:00:26', 0, NULL, 0, NULL, 1),
(31369, 24084, '3', 'Madras University ', '', 'Bsc computer science ', '2021', 85.00, '', 1, '2025-02-12 09:03:17', 0, NULL, 0, NULL, 1),
(31370, 24084, '1', 'Madras University ', '', '', '2016', 90.00, '', 1, '2025-02-12 09:03:37', 0, NULL, 0, NULL, 1),
(31371, 24084, '2', 'Madras University ', '', '', '2018', 80.00, '', 1, '2025-02-12 09:03:59', 0, NULL, 0, NULL, 1),
(31372, 24085, '1', ' Shree Venkatraman High school ', '', '', '2008', 47.00, '', 1, '2025-02-12 09:50:07', 0, NULL, 0, NULL, 1),
(31373, 24086, '4', 'Anna university ', '', 'MBA', '2024', 8.10, '', 1, '2025-02-12 02:37:15', 0, NULL, 0, NULL, 1),
(31374, 24078, '3', 'Mahendra Arts and Science College', '', 'B.Com', '2023', 66.00, '', 1, '2025-02-13 04:29:42', 0, NULL, 0, NULL, 1),
(31375, 24078, '4', 'Mahendra Engineering College ', '', 'MBA', '2025', 74.00, '', 1, '2025-02-13 04:30:41', 0, NULL, 0, NULL, 1),
(31376, 24087, '3', 'Madurai KamaRaj University', '', 'Bsc', '2023', 6.63, '', 1, '2025-02-13 05:19:29', 0, NULL, 0, NULL, 1),
(31377, 24090, '4', 'Prist university ', '', 'MBA ', '2024', 68.00, '', 1, '2025-02-13 05:20:20', 0, NULL, 0, NULL, 1),
(31378, 24089, '4', 'Prist university vallem', '', 'Mba', '2024', 73.00, '', 1, '2025-02-13 05:21:53', 0, NULL, 0, NULL, 1),
(31379, 24092, '3', 'Meenakshi sundararajan engineering College.Anna university ', '', 'B.E Machanical engineering ', '2023', 74.70, '', 1, '2025-02-13 05:28:09', 0, NULL, 0, NULL, 1),
(31380, 24088, '3', 'Bharath university ', '', 'B.tech cse', '2023', 70.00, '', 1, '2025-02-13 05:31:05', 0, NULL, 0, NULL, 1),
(31381, 24093, '2', 'Hsc', '', '', '2020', 75.00, '', 1, '2025-02-13 05:46:09', 0, NULL, 0, NULL, 1),
(31382, 24096, '3', 'Bharathidasan university ', '', 'B sc.computerscience', '2024', 71.00, '', 1, '2025-02-13 05:50:32', 0, NULL, 0, NULL, 1),
(31383, 24095, '4', 'Anna University ', '', 'MBA ', '2025', 8.50, '', 1, '2025-02-13 05:51:52', 0, NULL, 0, NULL, 1),
(31384, 24091, '3', 'St Anne\'s art\'s and science college ', '', 'Bsc computer science ', '2023', 77.30, '', 1, '2025-02-13 05:52:02', 0, NULL, 0, NULL, 1),
(31385, 24094, '4', 'Anna University ', '', 'MBA ', '2025', 8.50, '', 1, '2025-02-13 05:52:02', 0, NULL, 0, NULL, 1),
(31386, 24094, '3', 'Madras University ', '', 'BSC ', '2023', 72.00, '', 1, '2025-02-13 05:53:06', 0, NULL, 0, NULL, 1),
(31387, 24097, '4', 'AnnaUniversity ', '', 'MBA ,HR and Operations ', '2025', 7.90, '', 1, '2025-02-13 06:17:43', 0, NULL, 0, NULL, 1),
(31388, 24097, '3', 'Madras University ', '', 'BA Economics ', '2023', 76.00, '', 1, '2025-02-13 06:18:24', 0, NULL, 0, NULL, 1),
(31389, 24098, '3', 'Madras University ', '', 'B.com', '2021', 75.00, '', 1, '2025-02-13 06:38:34', 0, NULL, 0, NULL, 1),
(31390, 24100, '3', 'Madras University ', '', 'B.com', '2023', 80.00, '', 1, '2025-02-13 06:47:30', 0, NULL, 0, NULL, 1),
(31391, 24102, '4', 'Anna University ', '', 'MBA', '2025', 80.00, '', 1, '2025-02-13 07:47:18', 0, NULL, 0, NULL, 1),
(31392, 24102, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2023', 87.00, '', 1, '2025-02-13 07:48:48', 0, NULL, 0, NULL, 1),
(31393, 24102, '2', 'State board ', '', '', '2019', 76.00, '', 1, '2025-02-13 07:49:20', 0, NULL, 0, NULL, 1),
(31394, 24102, '1', 'State board ', '', '', '2017', 90.00, '', 1, '2025-02-13 07:49:35', 0, NULL, 0, NULL, 1),
(31395, 24103, '3', 'Anna University ', '', 'MBA', '2025', 72.00, '', 1, '2025-02-13 07:58:32', 0, NULL, 0, NULL, 1),
(31396, 24104, '4', 'Anna University ', '', 'MBA', '2025', 73.00, '', 1, '2025-02-13 09:13:33', 0, NULL, 0, NULL, 1),
(31397, 24107, '3', 'St. Thomas college of arts and science , Koyembedu', '', 'B. Com ( Bank Management) ', '2024', 70.00, '', 1, '2025-02-14 05:06:41', 0, NULL, 0, NULL, 1),
(31398, 24108, '4', 'Bharathiyar university ', '', 'Master of computer applications ', '2023', 85.00, '', 1, '2025-02-14 05:22:43', 0, NULL, 0, NULL, 1),
(31399, 24108, '1', 'State board ', '', '', '2015', 94.00, '', 1, '2025-02-14 05:23:19', 0, NULL, 0, NULL, 1),
(31400, 24108, '2', 'State board ', '', '', '2017', 82.00, '', 1, '2025-02-14 05:23:47', 0, NULL, 0, NULL, 1),
(31401, 24108, '3', 'Bharathiyar University ', '', 'Bsc - Computer technology ', '2020', 79.00, '', 1, '2025-02-14 05:24:33', 0, NULL, 0, NULL, 1),
(31402, 24109, '3', 'Mathar therasaa university ', '', 'B.com', '2023', 61.00, '', 1, '2025-02-14 05:35:39', 0, NULL, 0, NULL, 1),
(31403, 24111, '4', 'Annaamalai university ', '', 'Msc Mathematics ', '2024', 72.00, '', 1, '2025-02-14 05:46:46', 0, NULL, 0, NULL, 1),
(31404, 24111, '4', 'Annaamalai university ', '', 'Msc Mathematics ', '2024', 72.00, '', 1, '2025-02-14 05:47:28', 0, NULL, 0, NULL, 1),
(31405, 24110, '4', 'Madras university', '', 'Msc mathematics', '2022', 82.00, '', 1, '2025-02-14 05:49:31', 0, NULL, 0, NULL, 1),
(31406, 24112, '3', 'university of Madras ', '', '', '2024', 65.00, '', 1, '2025-02-14 06:03:12', 0, NULL, 0, NULL, 1),
(31407, 24113, '5', 'TNAU', '', '', '2022', 83.00, '', 1, '2025-02-14 06:03:23', 0, NULL, 0, NULL, 1),
(31408, 24114, '5', 'tnau', '', 'diploma in agricultural', '2022', 79.10, '', 1, '2025-02-14 06:08:08', 0, NULL, 0, NULL, 1),
(31409, 24106, '4', 'University ', '', 'B.a.tamil', '2023', 75.00, '', 1, '2025-02-14 06:33:45', 0, NULL, 0, NULL, 1),
(31410, 24115, '3', 'Tumkur university ', '', 'BCA ', '2024', 80.00, '', 1, '2025-02-14 07:57:20', 0, NULL, 0, NULL, 1),
(31411, 24116, '3', 'Madras University ', '', 'Bsc cs', '2024', 72.00, '', 1, '2025-02-15 02:52:35', 0, NULL, 0, NULL, 1),
(31412, 24117, '3', 'Madras University ', '', 'B A', '2023', 70.00, '', 1, '2025-02-15 05:07:13', 0, NULL, 0, NULL, 1),
(31413, 24118, '3', 'Anna university ', '', 'Bachelor of engineering ', '2023', 76.00, '', 1, '2025-02-15 05:19:44', 0, NULL, 0, NULL, 1),
(31414, 24119, '3', 'Bhaktavatsalam memorial College ', '', 'B.com', '2023', 61.00, '', 1, '2025-02-15 05:26:04', 0, NULL, 0, NULL, 1),
(31415, 24120, '4', 'Tiruvalluvar university ', '', 'Mathamatics ', '2023', 78.00, '', 1, '2025-02-15 05:43:24', 0, NULL, 0, NULL, 1),
(31416, 24121, '4', 'Prist University ', '', 'MCA', '2022', 75.00, '', 1, '2025-02-15 05:51:11', 0, NULL, 0, NULL, 1),
(31417, 24123, '3', 'Hindustan college of arts and science ', '', '', '2020', 60.00, '', 1, '2025-02-15 06:20:34', 0, NULL, 0, NULL, 1),
(31418, 24124, '3', 'Madras ', '', 'BCA', '2025', 7.50, '', 1, '2025-02-15 06:29:34', 0, NULL, 0, NULL, 1),
(31419, 24122, '3', 'University of Madras', '', 'BCA', '2024', 7.50, '', 1, '2025-02-15 06:29:55', 0, NULL, 0, NULL, 1),
(31420, 24122, '2', 'State Board', '', '', '2021', 89.00, '', 1, '2025-02-15 06:31:20', 0, NULL, 0, NULL, 1),
(31421, 24122, '1', 'State Board', '', '', '2019', 89.00, '', 1, '2025-02-15 06:31:40', 0, NULL, 0, NULL, 1),
(31422, 24124, '1', 'State board', '', 'BCA', '2019', 70.00, '', 1, '2025-02-15 06:33:27', 0, NULL, 0, NULL, 1),
(31423, 24125, '3', 'Alagappa university ', '', 'BBA', '2020', 65.00, '', 1, '2025-02-15 06:33:51', 0, NULL, 0, NULL, 1),
(31424, 24124, '2', 'State board ', '', '', '2021', 80.00, '', 1, '2025-02-15 06:34:11', 0, NULL, 0, NULL, 1),
(31425, 24128, '3', 'SBC engg college', '', '', '2012', 73.00, '', 1, '2025-02-15 02:58:53', 0, NULL, 0, NULL, 1),
(31426, 24133, '5', 'ISBM university ', '', 'D cse', '2024', 80.00, '', 1, '2025-02-17 05:13:57', 0, NULL, 0, NULL, 1),
(31427, 24134, '3', 'Anna University  trichy', '', 'B.E', '2018', 60.00, '', 1, '2025-02-17 05:22:25', 0, NULL, 0, NULL, 1),
(31428, 24134, '1', 'State board', '', '', '2012', 77.00, '', 1, '2025-02-17 05:23:37', 0, NULL, 0, NULL, 1),
(31429, 24134, '2', 'State board ', '', '', '2014', 75.00, '', 1, '2025-02-17 05:24:06', 0, NULL, 0, NULL, 1),
(31430, 24135, '3', 'Madras University ', '', 'B.sc Computer Science ', '2024', 82.00, '', 1, '2025-02-17 05:31:50', 0, NULL, 0, NULL, 1),
(31431, 24136, '3', 'Madras university', '', 'B SC COMPUTER SCIENCE', '2024', 65.00, '', 1, '2025-02-17 05:39:03', 0, NULL, 0, NULL, 1),
(31432, 24137, '3', 'Bharadhidasan ', '', 'Bcom', '2024', 77.00, '', 1, '2025-02-17 05:56:38', 0, NULL, 0, NULL, 1),
(31433, 24138, '3', 'Bharadhidasan ', '', 'Bcom', '2024', 75.00, '', 1, '2025-02-17 06:02:37', 0, NULL, 0, NULL, 1),
(31434, 24142, '4', 'Anna university', '', 'MBA ', '2025', 7.80, '', 1, '2025-02-17 06:36:38', 0, NULL, 0, NULL, 1),
(31435, 24143, '4', 'Anna university ', '', 'MBA', '2025', 78.00, '', 1, '2025-02-17 06:39:11', 0, NULL, 0, NULL, 1),
(31436, 24141, '4', 'Anna University ', '', 'MBA', '2025', 86.00, '', 1, '2025-02-17 06:44:57', 0, NULL, 0, NULL, 1),
(31437, 24140, '4', 'Anna university ', '', 'MBA', '2025', 80.00, '', 1, '2025-02-17 06:46:59', 0, NULL, 0, NULL, 1),
(31438, 24145, '3', 'Prist University ', '', 'B-tech mechanical ', '2017', 68.00, '', 1, '2025-02-17 07:22:44', 0, NULL, 0, NULL, 1),
(31439, 24146, '3', 'Sdnb vaishnav college ', '', 'Bcom ', '2024', 70.00, '', 1, '2025-02-17 07:47:06', 0, NULL, 0, NULL, 1),
(31440, 24146, '2', 'Chennai girls higher secondary school ', '', '', '2021', 79.00, '', 1, '2025-02-17 07:47:57', 0, NULL, 0, NULL, 1),
(31441, 24147, '3', 'Priya deemed University', '', 'B tech', '2023', 84.00, '', 1, '2025-02-17 08:00:28', 0, NULL, 0, NULL, 1),
(31442, 24148, '3', 'Princess ', '', '+2', '2014', 78.00, '', 1, '2025-02-17 09:23:05', 0, NULL, 0, NULL, 1),
(31443, 24150, '4', 'University of Madras ', '', 'MCA', '2024', 84.00, '', 1, '2025-02-17 09:40:40', 0, NULL, 0, NULL, 1),
(31444, 24150, '3', 'University of Madras ', '', 'BCA ', '2022', 81.00, '', 1, '2025-02-17 09:41:12', 0, NULL, 0, NULL, 1),
(31445, 20341, '4', 'University of Madras ', '', 'Mca', '2024', 75.00, '', 1, '2025-02-17 09:42:10', 0, NULL, 0, NULL, 1),
(31446, 24151, '3', 'Karnataka University ', '', '2nd puc', '2019', 78.00, '', 1, '2025-02-17 09:47:35', 0, NULL, 0, NULL, 1),
(31447, 24152, '3', 'University of Madras', '', 'BCA', '2018', 70.00, '', 1, '2025-02-17 09:50:58', 0, NULL, 0, NULL, 1),
(31448, 24131, '3', 'Periyar University ', '', 'BBA', '2020', 65.00, '', 1, '2025-02-17 11:41:40', 0, NULL, 0, NULL, 1),
(31449, 24153, '4', 'Madras University ', '', 'Mca', '2023', 78.00, '', 1, '2025-02-17 12:17:11', 0, NULL, 0, NULL, 1),
(31450, 24154, '4', 'Dr.mgr University ', '', 'MCA', '2022', 69.00, '', 1, '2025-02-17 12:20:13', 0, NULL, 0, NULL, 1),
(31451, 24156, '2', 'state board', '', '', '2022', 65.00, '', 1, '2025-02-17 03:28:46', 1, '2025-02-17 03:29:57', 0, NULL, 0),
(31452, 24156, '1', 'state', '', '', '2020', 88.60, '', 1, '2025-02-17 03:31:02', 0, NULL, 0, NULL, 1),
(31453, 24156, '2', 'state', '', '', '2022', 65.00, '', 1, '2025-02-17 03:31:37', 0, NULL, 0, NULL, 1),
(31454, 24158, '1', 'tamilnad ', '', '', '2016', 65.00, '', 1, '2025-02-18 04:01:57', 0, NULL, 0, NULL, 1),
(31455, 24159, '3', 'University ', '', 'Bcom Accounting & Finance ', '2024', 68.00, '', 1, '2025-02-18 05:25:13', 0, NULL, 0, NULL, 1),
(31456, 24161, '2', 'Banglore university ', '', '', '2017', 65.00, '', 1, '2025-02-18 05:35:19', 0, NULL, 0, NULL, 1),
(31457, 24127, '1', 'Govt of tamil nadu ', '', '', '2019', 56.00, '', 1, '2025-02-18 05:49:34', 0, NULL, 0, NULL, 1),
(31458, 24160, '3', 'Automatic ', '', 'B A business economics ', '2024', 60.00, '', 1, '2025-02-18 05:56:48', 0, NULL, 0, NULL, 1),
(31459, 24162, '3', 'Anna University ', '', 'B.Tech', '2021', 7.80, '', 1, '2025-02-18 05:57:23', 0, NULL, 0, NULL, 1),
(31460, 24164, '3', 'Anna university ', '', 'Bachelor in civil engineering ', '2023', 83.00, '', 1, '2025-02-18 05:59:11', 0, NULL, 0, NULL, 1),
(31461, 24163, '3', 'Sankara university ', '', 'B.sc chemistry ', '2023', 77.70, '', 1, '2025-02-18 06:02:09', 0, NULL, 0, NULL, 1),
(31462, 24163, '2', 'Sri ayyan vidyashram Hr.Sec School', '', '', '2020', 61.00, '', 1, '2025-02-18 06:03:11', 0, NULL, 0, NULL, 1),
(31463, 24163, '1', 'Seri Ayyan vidyashram Hr.sec school ', '', '', '2018', 81.00, '', 1, '2025-02-18 06:03:51', 0, NULL, 0, NULL, 1),
(31464, 24165, '1', 'State board ', '', '', '2018', 66.00, '', 1, '2025-02-18 06:05:06', 0, NULL, 0, NULL, 1),
(31465, 24165, '2', 'State board ', '', '', '2020', 54.00, '', 1, '2025-02-18 06:05:54', 0, NULL, 0, NULL, 1),
(31466, 24166, '2', 'Laurel Higher Secondary School ', '', '', '2018', 79.40, '', 1, '2025-02-18 06:06:17', 0, NULL, 0, NULL, 1),
(31467, 24165, '3', 'Anna University ', '', 'BE CSE', '2024', 7.64, '', 1, '2025-02-18 06:06:24', 0, NULL, 0, NULL, 1),
(31468, 24166, '1', 'Laurel Higher Secondary School ', '', '', '2020', 61.40, '', 1, '2025-02-18 06:06:48', 0, NULL, 0, NULL, 1),
(31469, 24166, '3', 'Hindusthan institude of technology ', '', 'BE.COMPUTER SCIENCE AND ENGINEERING ', '2024', 82.80, '', 1, '2025-02-18 06:07:35', 0, NULL, 0, NULL, 1),
(31470, 24157, '2', 'State board ', '', '', '2020', 66.00, '', 1, '2025-02-18 06:59:20', 0, NULL, 0, NULL, 1),
(31471, 24168, '4', 'Thiruvalluvar university ', '', 'MSC computer science ', '2022', 9.20, '', 1, '2025-02-18 07:24:42', 0, NULL, 0, NULL, 1),
(31472, 24169, '3', 'DMI college of engineering ', '', 'Bachelor of engineering ', '2023', 80.00, '', 1, '2025-02-18 07:25:22', 0, NULL, 0, NULL, 1),
(31473, 24173, '3', 'mgr university', '', 'b.sc viscom and animation', '2023', 80.00, '', 1, '2025-02-18 09:21:25', 0, NULL, 0, NULL, 1),
(31474, 24172, '3', 'The new college ', '', 'B.com cs', '2023', 72.00, '', 1, '2025-02-18 09:24:51', 0, NULL, 0, NULL, 1),
(31475, 24175, '1', 'State board ', '', '', '2018', 72.00, '', 1, '2025-02-18 10:43:24', 0, NULL, 0, NULL, 1),
(31476, 24175, '2', 'State board ', '', '', '2020', 56.00, '', 1, '2025-02-18 10:43:47', 0, NULL, 0, NULL, 1),
(31477, 24175, '3', 'Autonomous ', '', 'B.tech information technology ', '2024', 86.00, '', 1, '2025-02-18 10:47:18', 0, NULL, 0, NULL, 1),
(31478, 24178, '3', 'bharathiyar', '', 'bca', '2022', 70.00, '', 1, '2025-02-18 11:23:53', 0, NULL, 0, NULL, 1),
(31479, 24065, '3', 'University ', '', 'Bsc Computer Science ', '2024', 75.80, '', 1, '2025-02-19 04:49:04', 0, NULL, 0, NULL, 1),
(31480, 24179, '3', 'Annai Vailankanni Arts And Science College', '', 'B.com ca', '2024', 60.00, '', 1, '2025-02-19 05:16:18', 0, NULL, 0, NULL, 1),
(31481, 24182, '3', 'Board', '', 'B.COM (GENERAL)', '2025', 6.70, '', 1, '2025-02-19 05:36:16', 0, NULL, 0, NULL, 1),
(31482, 24183, '3', 'Anna university ', '', 'B.E Mechanical Engineering ', '2024', 6.90, '', 1, '2025-02-19 05:42:09', 0, NULL, 0, NULL, 1),
(31483, 24184, '3', 'Bangalore university', '', 'B. Com', '2019', 70.00, '', 1, '2025-02-19 06:34:37', 0, NULL, 0, NULL, 1),
(31484, 24185, '1', '2016', '', '', '2016', 68.00, '', 1, '2025-02-19 06:43:01', 0, NULL, 0, NULL, 1),
(31485, 24186, '3', 'Madras University ', '', 'B.COM', '2025', 76.00, '', 1, '2025-02-19 07:04:17', 0, NULL, 0, NULL, 1),
(31486, 24188, '3', 'Madras University ', '', 'Bcom corporate secretaryship ', '2020', 74.00, '', 1, '2025-02-19 07:20:09', 0, NULL, 0, NULL, 1),
(31487, 0, '3', 'Anna University ', '', 'BE', '2020', 75.00, '', 1, '2025-02-19 07:55:03', 1, '2025-02-22 07:02:25', 0, NULL, 0),
(31488, 24191, '1', 'Anna University ', '', '', '2022', 80.00, '', 1, '2025-02-19 11:07:08', 0, NULL, 0, NULL, 1),
(31489, 23575, '3', 'St Anne\'s college of engineering and technology', '', 'BE', '2022', 79.00, '', 1, '2025-02-20 04:35:22', 0, NULL, 0, NULL, 1),
(31490, 23575, '2', 'State Board', '', '', '2018', 69.00, '', 1, '2025-02-20 04:37:24', 0, NULL, 0, NULL, 1),
(31491, 23575, '1', 'State board', '', '', '2016', 74.00, '', 1, '2025-02-20 04:37:52', 0, NULL, 0, NULL, 1),
(31492, 24194, '3', 'Anna University ', '', 'B E', '2024', 80.00, '', 1, '2025-02-20 05:12:43', 0, NULL, 0, NULL, 1),
(31493, 24194, '1', 'State board ', '', '', '2018', 70.00, '', 1, '2025-02-20 05:13:17', 0, NULL, 0, NULL, 1),
(31494, 24194, '2', 'State board', '', '', '2020', 68.00, '', 1, '2025-02-20 05:13:38', 0, NULL, 0, NULL, 1),
(31495, 24197, '3', 'Jairam arts and science ', '', 'Bsc computer science ', '2024', 89.00, '', 1, '2025-02-20 05:22:31', 0, NULL, 0, NULL, 1),
(31496, 24198, '3', 'St.peters university ', '', 'B.E (mechanical)', '2022', 70.00, '', 1, '2025-02-20 05:23:51', 0, NULL, 0, NULL, 1),
(31497, 24192, '4', 'Annamalai University ', '', 'M.sc', '2021', 7.20, '', 1, '2025-02-20 05:26:53', 0, NULL, 0, NULL, 1),
(31498, 24192, '3', 'Bharathidasan University ', '', 'B.sc', '2019', 74.00, '', 1, '2025-02-20 05:27:49', 0, NULL, 0, NULL, 1),
(31499, 24195, '3', 'Madras University ', '', 'B.com (Accounting & finance)', '2025', 5.50, '', 1, '2025-02-20 05:27:51', 1, '2025-02-20 05:29:30', 0, NULL, 0),
(31500, 24195, '2', 'State board ', '', '', '2022', 74.50, '', 1, '2025-02-20 05:28:22', 0, NULL, 0, NULL, 1),
(31501, 24195, '3', 'Madras University ', '', 'B.com (Accounting & finance)', '2025', 5.50, '', 1, '2025-02-20 05:30:15', 0, NULL, 0, NULL, 1),
(31502, 24195, '1', 'State board ', '', '', '2019', 54.50, '', 1, '2025-02-20 05:30:42', 0, NULL, 0, NULL, 1),
(31503, 24199, '3', 'stella mairs', '', 'b.com', '2024', 50.00, '', 1, '2025-02-20 05:31:40', 0, NULL, 0, NULL, 1),
(31504, 24196, '3', 'madras university', '', 'b.com cs', '2023', 69.00, '', 1, '2025-02-20 05:33:37', 0, NULL, 0, NULL, 1),
(31505, 24201, '5', 'Anna University ', '', 'Electronic communication Engineering ', '2017', 80.00, '', 1, '2025-02-20 05:40:28', 0, NULL, 0, NULL, 1),
(31506, 24200, '3', 'Anna University Chennai ', '', 'BCA', '2024', 75.00, '', 1, '2025-02-20 05:53:51', 1, '2025-02-20 05:56:47', 0, NULL, 0),
(31507, 24200, '3', 'Sri Sankara art\'s science college ', '', 'BCA', '2024', 7.00, '', 1, '2025-02-20 05:58:12', 0, NULL, 0, NULL, 1),
(31508, 24202, '5', 'Anna University ', '', 'Diploma computer Engineering ', '2024', 71.00, '', 1, '2025-02-20 06:03:47', 0, NULL, 0, NULL, 1),
(31509, 24203, '1', 'St. Joseph\'s Hr. Sec. School', '', '', '2017', 84.00, '', 1, '2025-02-20 06:11:10', 0, NULL, 0, NULL, 1),
(31510, 24203, '2', 'St. Joseph\'s Hr. Sec. School', '', '', '2019', 60.00, '', 1, '2025-02-20 06:11:36', 0, NULL, 0, NULL, 1),
(31511, 24203, '3', 'Holy Cross College (Autonomous) ', '', 'Bachelor of Computer Application', '2022', 74.00, '', 1, '2025-02-20 06:12:24', 0, NULL, 0, NULL, 1),
(31512, 24205, '1', 'Seventh day Adventist matric higher secondary school ', '', '', '2017', 85.00, '', 1, '2025-02-20 06:22:01', 0, NULL, 0, NULL, 1),
(31513, 24205, '2', 'Seventh day Adventist matric higher secondary school ', '', '', '2019', 55.00, '', 1, '2025-02-20 06:22:29', 0, NULL, 0, NULL, 1),
(31514, 24205, '3', 'Dr.m.g.r research university.', '', 'B.com', '2023', 73.70, '', 1, '2025-02-20 06:23:17', 0, NULL, 0, NULL, 1),
(31515, 24206, '3', 'Dwarka doss goverdhan doss vaishnav college ', '', 'B.com', '2024', 67.89, '', 1, '2025-02-20 06:28:04', 0, NULL, 0, NULL, 1),
(31516, 24208, '3', 'Periyar University ', '', 'BcA', '2018', 80.00, '', 1, '2025-02-20 07:00:07', 0, NULL, 0, NULL, 1),
(31517, 24139, '3', 'Anna University ', '', 'B. Tech', '2024', 79.10, '', 1, '2025-02-20 07:17:57', 0, NULL, 0, NULL, 1),
(31518, 24139, '2', 'Tamilnadu ', '', '', '2020', 57.20, '', 1, '2025-02-20 07:18:19', 0, NULL, 0, NULL, 1),
(31519, 24139, '1', 'Tamilnadu ', '', '', '2018', 79.80, '', 1, '2025-02-20 07:18:34', 0, NULL, 0, NULL, 1),
(31520, 24209, '4', 'MGR university ', '', 'MSc biotechnology ', '2024', 77.00, '', 1, '2025-02-20 07:28:47', 0, NULL, 0, NULL, 1),
(31521, 24204, '3', 'Madras university ', '', 'BA Business economics', '2022', 85.00, '', 1, '2025-02-20 08:26:19', 0, NULL, 0, NULL, 1),
(31522, 24211, '3', 'Thanthai hans roever arts and science college ', '', 'Bachelor\'s of commerce ', '2021', 60.00, '', 1, '2025-02-20 09:22:25', 0, NULL, 0, NULL, 1),
(31523, 24212, '3', 'Anna  University ', '', 'BE CIVIL', '2020', 87.00, '', 1, '2025-02-20 10:13:14', 154, '2025-02-20 03:47:35', 0, NULL, 1),
(31524, 24213, '5', 'Anna university ', '', '', '2018', 74.00, '', 1, '2025-02-20 11:48:56', 1, '2025-02-20 11:50:51', 0, NULL, 1),
(31525, 24214, '3', 'Anna University ', '', 'BE', '2020', 79.00, '', 1, '2025-02-20 11:49:10', 0, NULL, 0, NULL, 1),
(31526, 24213, '3', 'Anna university ', '', 'Diploma ', '2018', 74.00, '', 1, '2025-02-20 11:56:01', 0, NULL, 0, NULL, 1),
(31527, 8614, '2', 'Krm school ', '', '', '2018', 90.00, '', 1, '2025-02-20 01:48:25', 1, '2025-02-20 01:48:40', 0, NULL, 1),
(31528, 24215, '5', 'Anna University Chennai ', '', 'BE engineering ', '2018', 75.00, '', 1, '2025-02-21 05:02:39', 0, NULL, 0, NULL, 1),
(31529, 24217, '3', 'Cbse ', '', '', '2023', 60.00, '', 1, '2025-02-21 05:43:13', 0, NULL, 0, NULL, 1),
(31530, 24216, '3', 'Anna university', '', 'B.E-CSE', '2024', 75.00, '', 1, '2025-02-21 05:44:50', 0, NULL, 0, NULL, 1),
(31531, 24219, '3', 'University of Madras ', '', 'BA', '2023', 76.13, '', 1, '2025-02-21 06:34:33', 0, NULL, 0, NULL, 1),
(31532, 24220, '3', 'Board', '', 'B.com(General)', '2025', 6.40, '', 1, '2025-02-21 06:57:33', 0, NULL, 0, NULL, 1),
(31533, 24221, '3', 'Board', '', 'B.com (general)', '2025', 6.50, '', 1, '2025-02-21 07:04:32', 0, NULL, 0, NULL, 1),
(31534, 24222, '3', 'Shanmuga industries arts &Science college', '', 'Bca', '2021', 70.00, '', 1, '2025-02-21 07:20:19', 0, NULL, 0, NULL, 1),
(31535, 24223, '2', 'Board of Intermediate Education Andhra Pradesh ', '', '', '2018', 62.00, '', 1, '2025-02-21 07:28:18', 0, NULL, 0, NULL, 1),
(31536, 24223, '1', 'Board of Secondary Education Andhra Pradesh ', '', '', '2016', 75.00, '', 1, '2025-02-21 07:28:43', 0, NULL, 0, NULL, 1),
(31537, 24226, '3', 'Vel Tech Multi Tech Dr.Rangarajan Dr.Sakunthala Engineering College', '', 'B.TECH INFORMATION TECHNOLOGY ', '2023', 70.00, '', 1, '2025-02-21 07:34:11', 0, NULL, 0, NULL, 1),
(31538, 24224, '3', 'Anna university', '', 'B. TECH IT', '2023', 7.48, '', 1, '2025-02-21 07:35:11', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(31539, 24227, '3', 'Anna university ', '', 'B.E', '2018', 63.00, '', 1, '2025-02-21 07:47:38', 0, NULL, 0, NULL, 1),
(31540, 24228, '3', 'Alagappa university ', '', 'BBA', '2022', 81.00, '', 1, '2025-02-21 08:12:22', 0, NULL, 0, NULL, 1),
(31541, 24231, '3', 'Bharathidasan university ', '', 'BBA', '2022', 87.00, '', 1, '2025-02-21 11:03:00', 0, NULL, 0, NULL, 1),
(31542, 24232, '2', 'Chennai', '', '', '2021', 72.00, '', 1, '2025-02-21 01:24:40', 0, NULL, 0, NULL, 1),
(31543, 24233, '3', 'Sri Surya degree college ', '', 'Bsc', '2022', 74.00, '', 1, '2025-02-21 02:04:04', 0, NULL, 0, NULL, 1),
(31544, 24229, '3', 'University of madras', '', 'BCA', '2024', 75.00, '', 1, '2025-02-21 02:53:01', 0, NULL, 0, NULL, 1),
(31545, 24235, '3', 'Madras University ', '', 'BCA', '2024', 87.00, '', 1, '2025-02-21 02:53:45', 0, NULL, 0, NULL, 1),
(31546, 24236, '3', 'University of madras ', '', 'BCA', '2024', 75.00, '', 1, '2025-02-21 03:08:29', 0, NULL, 0, NULL, 1),
(31547, 24237, '4', 'Bharathidasan University ', '', 'M.A(English)', '2025', 71.00, '', 1, '2025-02-22 02:59:38', 0, NULL, 0, NULL, 1),
(31548, 24238, '4', 'Bharathidasan', '', 'MA (English)', '2023', 72.00, '', 1, '2025-02-22 04:09:30', 0, NULL, 0, NULL, 1),
(31549, 24239, '3', 'Anna University', '', 'B.E CSE', '2023', 8.50, '', 1, '2025-02-22 04:30:12', 0, NULL, 0, NULL, 1),
(31550, 24241, '4', 'Bangalore University ', '', 'MBA', '2025', 74.00, '', 1, '2025-02-22 05:55:09', 0, NULL, 0, NULL, 1),
(31551, 24240, '4', 'bharathidasan University', '', 'Mba', '2023', 82.00, '', 1, '2025-02-22 05:56:17', 0, NULL, 0, NULL, 1),
(31552, 24242, '4', 'Paavai Engineering college ', '', 'MCA', '2025', 74.76, '', 1, '2025-02-22 06:15:10', 0, NULL, 0, NULL, 1),
(31553, 24242, '3', 'Trinity College for women ', '', 'B.sc Mathematics ', '2023', 8.00, '', 1, '2025-02-22 06:16:08', 0, NULL, 0, NULL, 1),
(31554, 24242, '2', 'State board ', '', '', '2020', 61.50, '', 1, '2025-02-22 06:16:40', 0, NULL, 0, NULL, 1),
(31555, 24242, '1', 'State board ', '', '', '2018', 88.80, '', 1, '2025-02-22 06:16:58', 0, NULL, 0, NULL, 1),
(31556, 24243, '3', 'Bc', '', '', '2022', 66.00, '', 1, '2025-02-22 06:57:01', 0, NULL, 0, NULL, 1),
(31557, 24244, '4', 'University of Madras ', '', 'MSC psychology ', '2023', 89.00, '', 1, '2025-02-22 07:21:36', 0, NULL, 0, NULL, 1),
(31558, 24245, '3', 'University of Madras ', '', 'BA history ', '2024', 65.00, '', 1, '2025-02-22 07:27:21', 0, NULL, 0, NULL, 1),
(31559, 24246, '3', 'Mother Teresa women\'s University kodaikanal', '', 'B.sc', '2021', 70.30, '', 1, '2025-02-22 10:35:09', 0, NULL, 0, NULL, 1),
(31560, 24249, '3', 'Anna University', '', 'BE ECE', '2021', 79.80, '', 1, '2025-02-24 04:10:01', 0, NULL, 0, NULL, 1),
(31561, 24250, '4', 'Madurai kamaraj university', '', 'Mcom', '2024', 70.00, '', 1, '2025-02-24 05:09:40', 0, NULL, 0, NULL, 1),
(31562, 24253, '4', 'University of madras ', '', 'M.com', '2023', 77.00, '', 1, '2025-02-24 05:16:28', 0, NULL, 0, NULL, 1),
(31563, 24254, '3', 'madras University ', '', 'Bsc Mathematics ', '2021', 74.00, '', 1, '2025-02-24 05:16:47', 0, NULL, 0, NULL, 1),
(31564, 24254, '2', 'State board', '', '', '2018', 76.00, '', 1, '2025-02-24 05:17:15', 0, NULL, 0, NULL, 1),
(31565, 24254, '1', 'State board ', '', '', '2016', 78.00, '', 1, '2025-02-24 05:17:49', 0, NULL, 0, NULL, 1),
(31566, 24252, '3', 'Periyar University ', '', 'B.A English ', '2022', 86.00, '', 1, '2025-02-24 05:22:03', 0, NULL, 0, NULL, 1),
(31567, 24258, '4', 'anna university', '', 'mba', '2024', 76.00, '', 1, '2025-02-24 06:12:36', 0, NULL, 0, NULL, 1),
(31568, 24070, '5', 'Dhanalakshmi srinivasan university ', '', 'Diploma in civil engineering ', '2015', 89.00, '', 1, '2025-02-24 06:13:24', 0, NULL, 0, NULL, 1),
(31569, 24259, '3', 'dr.ambedkar clg arts and science ', '', 'bsc visual communication ', '2022', 60.00, '', 1, '2025-02-24 06:26:01', 0, NULL, 0, NULL, 1),
(31570, 24264, '3', 'Bharathidasan university ', '', 'B.sc computer science ', '2021', 83.00, '', 1, '2025-02-24 07:16:17', 0, NULL, 0, NULL, 1),
(31571, 24261, '2', 'Madras University ', '', 'B.com', '2021', 70.00, '', 1, '2025-02-24 07:20:18', 0, NULL, 0, NULL, 1),
(31572, 24265, '3', 'Madras University ', '', 'B.A', '2020', 60.00, '', 1, '2025-02-24 07:25:16', 0, NULL, 0, NULL, 1),
(31573, 24266, '3', 'Madras University ', '', '', '2020', 90.00, '', 1, '2025-02-24 07:36:31', 0, NULL, 0, NULL, 1),
(31574, 24126, '3', 'Anna University', '', 'B-tech', '2024', 7.80, '', 1, '2025-02-24 07:38:06', 0, NULL, 0, NULL, 1),
(31575, 24262, '1', 'Madras processive union higher secondary school ', '', '', '2021', 51.00, '', 1, '2025-02-24 07:40:56', 0, NULL, 0, NULL, 1),
(31576, 24263, '1', 'Hindu thuyalagikal higher secondary school', '', '', '2023', 50.00, '', 1, '2025-02-24 07:41:10', 0, NULL, 0, NULL, 1),
(31577, 24267, '3', 'Shri Krishna swamy college for womens', '', 'Bsc mathematics ', '2021', 80.00, '', 1, '2025-02-24 11:07:09', 0, NULL, 0, NULL, 1),
(31578, 24267, '4', 'Madras University ', '', 'Mbs ', '2024', 86.00, '', 1, '2025-02-24 11:07:30', 0, NULL, 0, NULL, 1),
(31579, 24268, '3', 'University college of engineering -Tiruchirappalli ', '', 'B tech ', '2021', 7.17, '', 1, '2025-02-24 11:46:46', 0, NULL, 0, NULL, 1),
(31580, 24270, '3', 'University of Madras ', '', 'B.com (corporate secrataryship)', '2024', 80.00, '', 1, '2025-02-24 01:36:31', 0, NULL, 0, NULL, 1),
(31581, 24260, '3', 'University of madras', '', 'B.a economics ', '2023', 80.00, '', 1, '2025-02-24 04:36:54', 0, NULL, 0, NULL, 1),
(31582, 24272, '5', 'Golden polytechnic college ', '', 'Dece', '2023', 67.00, '', 1, '2025-02-25 04:30:48', 0, NULL, 0, NULL, 1),
(31583, 24273, '3', 'Chellamal women college ', '', 'B.com cS', '2024', 75.00, '', 1, '2025-02-25 04:56:18', 0, NULL, 0, NULL, 1),
(31584, 24275, '1', 'Sri Lakshmi vidyalaya matriculation school,ammapet', '', '', '2018', 64.00, '', 1, '2025-02-25 05:17:20', 0, NULL, 0, NULL, 1),
(31585, 24274, '3', 'Dr MGR Educational And Research Institute ', '', 'Bsc', '2024', 66.97, '', 1, '2025-02-25 05:17:30', 0, NULL, 0, NULL, 1),
(31586, 24275, '2', 'UAAT,Higers secondary school, ammapet ', '', '', '2020', 65.00, '', 1, '2025-02-25 05:18:00', 0, NULL, 0, NULL, 1),
(31587, 24275, '3', 'Vandayar engineering college -Anna university ', '', 'bE-cse', '2024', 7.60, '', 1, '2025-02-25 05:18:41', 0, NULL, 0, NULL, 1),
(31588, 24277, '3', 'Madras University ', '', 'B.com corporate secretaryship', '2023', 45.00, '', 1, '2025-02-25 05:36:40', 0, NULL, 0, NULL, 1),
(31589, 24279, '3', 'Drbccc Hindu college ', '', 'Bsc computer science ', '2024', 84.00, '', 1, '2025-02-25 06:28:11', 0, NULL, 0, NULL, 1),
(31590, 24271, '3', 'University of Madras ', '', 'BA English ', '2024', 65.00, '', 1, '2025-02-25 06:46:29', 0, NULL, 0, NULL, 1),
(31591, 24280, '3', 'Lalita narayan mithila university ', '', '', '2024', 57.00, '', 1, '2025-02-25 06:51:35', 0, NULL, 0, NULL, 1),
(31592, 24280, '1', 'Bihar ', '', '', '2019', 60.00, '', 1, '2025-02-25 06:52:13', 0, NULL, 0, NULL, 1),
(31593, 24282, '3', 'Karnataka University dharwad ', '', 'B com', '2021', 51.00, '', 1, '2025-02-25 07:09:44', 0, NULL, 0, NULL, 1),
(31594, 24281, '3', 'Asan memories college of arts and science ', '', 'B.com (cS)', '2020', 67.00, '', 1, '2025-02-25 07:15:54', 0, NULL, 0, NULL, 1),
(31595, 24284, '3', 'VIKRAMA SIMHAPURI UNIVERSITY ', '', 'B.sc', '2016', 60.00, '', 1, '2025-02-25 07:23:26', 0, NULL, 0, NULL, 1),
(31596, 24283, '3', 'Sri muthukumara swam college', '', 'B.com', '2017', 65.00, '', 1, '2025-02-25 07:28:23', 153, '2025-02-25 01:11:53', 0, NULL, 1),
(31597, 24285, '5', 'Central polytechnic College ', '', 'Electronic communication engineering (sandwich)', '2025', 61.00, '', 1, '2025-02-25 11:01:38', 0, NULL, 0, NULL, 1),
(31598, 24286, '3', 'smvec', '', 'b.tech biomeical engineering', '2024', 70.00, '', 1, '2025-02-25 11:18:45', 0, NULL, 0, NULL, 1),
(31599, 24287, '3', 'University of Madras ', '', 'B.com', '2024', 62.00, '', 1, '2025-02-25 11:56:23', 0, NULL, 0, NULL, 1),
(31600, 24288, '3', 'Anna university ', '', 'B-Tech ', '2024', 7.80, '', 1, '2025-02-25 12:15:14', 0, NULL, 0, NULL, 1),
(31601, 24290, '3', 'madras University ', '', 'bca', '2024', 7.10, '', 1, '2025-02-26 05:24:12', 0, NULL, 0, NULL, 1),
(31602, 24291, '3', 'St Anne\'s Arts and science College Madhavaram ', '', 'Bachelor of computer science ', '2024', 83.00, '', 1, '2025-02-26 05:24:25', 0, NULL, 0, NULL, 1),
(31603, 24289, '3', 'Madras university', '', 'B.sc.computer science', '2024', 6.26, '', 1, '2025-02-26 05:24:46', 0, NULL, 0, NULL, 1),
(31604, 24292, '3', 'St.peter', '', 'B.E', '2020', 63.00, '', 1, '2025-02-26 05:57:17', 0, NULL, 0, NULL, 1),
(31605, 24293, '4', 'GOVT Polytechnic College Nagapadi Tiruvannamalai ', '', 'Diploma Computer Science ', '2023', 60.60, '', 1, '2025-02-26 06:10:53', 0, NULL, 0, NULL, 1),
(31606, 24295, '3', 'anna university', '', 'bachelor of degree - computer science and engineer', '2020', 6.76, '', 1, '2025-02-26 06:18:32', 0, NULL, 0, NULL, 1),
(31607, 24294, '3', 'Madras University ', '', 'BA ENGLISH ', '2023', 50.00, '', 1, '2025-02-26 06:22:18', 0, NULL, 0, NULL, 1),
(31608, 24296, '3', 'Bangalore University', '', 'Bachelor of Commerce', '2023', 86.27, '', 1, '2025-02-26 06:26:33', 0, NULL, 0, NULL, 1),
(31609, 24298, '3', 'Madras University ', '', 'B.Sc Computer Science ', '2024', 78.44, '', 1, '2025-02-26 06:45:11', 0, NULL, 0, NULL, 1),
(31610, 24297, '1', 'Kerala', '', '', '2011', 74.00, '', 1, '2025-02-26 06:47:50', 0, NULL, 0, NULL, 1),
(31611, 24300, '1', 'State board ', '', '', '2018', 49.00, '', 1, '2025-02-26 08:12:40', 0, NULL, 0, NULL, 1),
(31612, 24300, '2', 'State board ', '', '', '2020', 53.00, '', 1, '2025-02-26 08:13:16', 0, NULL, 0, NULL, 1),
(31613, 24300, '3', 'University of Madras ', '', 'Ba english ', '2023', 60.00, '', 1, '2025-02-26 08:13:49', 0, NULL, 0, NULL, 1),
(31614, 24301, '1', 'State board ', '', '', '2018', 65.00, '', 1, '2025-02-26 08:21:58', 0, NULL, 0, NULL, 1),
(31615, 24301, '2', 'State board ', '', '', '2020', 60.00, '', 1, '2025-02-26 08:22:17', 0, NULL, 0, NULL, 1),
(31616, 24301, '3', 'University of Madras ', '', 'BBA ', '2023', 60.00, '', 1, '2025-02-26 08:22:47', 0, NULL, 0, NULL, 1),
(31617, 24302, '3', 'Anna University ', '', 'BE', '2018', 64.00, '', 1, '2025-02-26 01:19:32', 0, NULL, 0, NULL, 1),
(31618, 24299, '3', 'bharathidasan university', '', 'Bachelor of Mathematics', '2022', 79.40, '', 1, '2025-02-27 03:42:14', 0, NULL, 0, NULL, 1),
(31619, 24304, '4', 'Alagappa University ', '', 'MBA corporate secretaryship ', '2023', 80.00, '', 1, '2025-02-27 03:51:20', 0, NULL, 0, NULL, 1),
(31620, 24304, '3', 'Bharathidasan University ', '', 'BCA Computer application ', '2021', 71.70, '', 1, '2025-02-27 03:52:06', 0, NULL, 0, NULL, 1),
(31621, 24304, '2', 'Vairams matriculation higher secondary school', '', '', '2018', 63.00, '', 1, '2025-02-27 03:52:32', 0, NULL, 0, NULL, 1),
(31622, 24304, '1', 'SFS matriculation higher secondary school ', '', '', '2015', 85.40, '', 1, '2025-02-27 03:53:06', 0, NULL, 0, NULL, 1),
(31623, 24305, '3', 'Kuvempu university', '', 'Bca', '2022', 66.47, '', 1, '2025-02-27 05:36:12', 0, NULL, 0, NULL, 1),
(31624, 24305, '4', 'Bms college of engineering', '', 'Mca', '2024', 71.00, '', 1, '2025-02-27 05:36:56', 1, '2025-02-27 05:37:02', 0, NULL, 0),
(31625, 24306, '3', 'Bangalore University ', '', 'BBA', '2020', 76.00, '', 1, '2025-02-27 05:40:57', 0, NULL, 0, NULL, 1),
(31626, 24306, '1', 'Karnataka board ', '', '', '2015', 70.00, '', 1, '2025-02-27 05:41:27', 0, NULL, 0, NULL, 1),
(31627, 24306, '2', 'Puc', '', '', '2017', 65.00, '', 1, '2025-02-27 05:41:53', 0, NULL, 0, NULL, 1),
(31628, 24307, '3', 'University of madras ', '', 'BBA', '2024', 85.00, '', 1, '2025-02-27 05:56:09', 1, '2025-02-27 05:58:01', 0, NULL, 1),
(31629, 24309, '3', 'Madras University ', '', 'Bcom General ', '2023', 60.00, '', 1, '2025-02-27 06:19:31', 0, NULL, 0, NULL, 1),
(31630, 24308, '3', 'University of madras ', '', 'B.com CS', '2024', 72.00, '', 1, '2025-02-27 06:22:33', 0, NULL, 0, NULL, 1),
(31631, 24310, '3', 'Madras university', '', 'BBA', '2024', 85.00, '', 1, '2025-02-27 06:30:37', 0, NULL, 0, NULL, 1),
(31632, 24311, '3', 'Madras University ', '', 'B com general', '2024', 75.00, '', 1, '2025-02-27 06:37:14', 0, NULL, 0, NULL, 1),
(31633, 24312, '3', 'Madras University ', '', 'B.com', '2021', 76.00, '', 1, '2025-02-27 07:48:28', 0, NULL, 0, NULL, 1),
(31634, 24313, '3', 'university of madras', '', 'bca', '2022', 50.00, '', 1, '2025-02-27 08:23:39', 0, NULL, 0, NULL, 1),
(31635, 24314, '3', 'Madras university', '', 'Bca', '2023', 78.00, '', 1, '2025-02-27 08:23:44', 0, NULL, 0, NULL, 1),
(31636, 24315, '4', 'bishop heber college', '', 'msc', '2023', 70.00, '', 1, '2025-02-27 12:15:50', 0, NULL, 0, NULL, 1),
(31637, 24318, '4', 'Madras university', '', 'M. Sc', '2023', 80.00, '', 1, '2025-02-28 04:43:04', 0, NULL, 0, NULL, 1),
(31638, 24321, '3', 'Bharathidasan university ', '', 'BBA', '2020', 78.00, '', 1, '2025-02-28 05:06:06', 0, NULL, 0, NULL, 1),
(31639, 24319, '3', 'Anna university ', '', 'B.Tech', '2024', 82.00, '', 1, '2025-02-28 05:10:16', 0, NULL, 0, NULL, 1),
(31640, 24322, '4', 'University ', '', 'MBA', '2023', 86.00, '', 1, '2025-02-28 05:20:14', 0, NULL, 0, NULL, 1),
(31641, 23746, '3', 'Madurai kamaraj university ', '', 'BCA', '2021', 72.00, '', 1, '2025-02-28 05:23:25', 0, NULL, 0, NULL, 1),
(31642, 24324, '3', 'Sk university ', '', 'BBA ', '2021', 65.00, '', 1, '2025-02-28 05:51:03', 0, NULL, 0, NULL, 1),
(31643, 24320, '3', 'Madras University ', '', 'B.com general ', '2023', 70.00, '', 1, '2025-02-28 05:52:40', 0, NULL, 0, NULL, 1),
(31644, 24327, '3', 'Madras University', '', 'BCA', '2021', 84.00, '', 1, '2025-02-28 06:01:12', 0, NULL, 0, NULL, 1),
(31645, 24325, '4', 'Madras University ', '', 'M.Sc mathematics ', '2024', 68.00, '', 1, '2025-02-28 06:01:30', 0, NULL, 0, NULL, 1),
(31646, 24326, '3', 'Bharathidasan university Trichy ', '', 'BSC computer science ', '2022', 85.00, '', 1, '2025-02-28 06:01:49', 0, NULL, 0, NULL, 1),
(31647, 24325, '3', 'Madras University ', '', 'Mathematics ', '2022', 72.00, '', 1, '2025-02-28 06:03:35', 0, NULL, 0, NULL, 1),
(31648, 24328, '4', 'Madras University', '', 'MBA HR', '2024', 80.50, '', 1, '2025-02-28 06:51:54', 0, NULL, 0, NULL, 1),
(31649, 24329, '5', 'Department of technical education, bangalore', '', 'Diploma in computer science and engineering', '2015', 66.53, '', 1, '2025-02-28 07:25:21', 0, NULL, 0, NULL, 1),
(31650, 24330, '4', 'University of Madras ', '', 'B.com (Accounting and Finance)', '2023', 60.00, '', 1, '2025-02-28 07:25:39', 0, NULL, 0, NULL, 1),
(31651, 24331, '3', 'Bharadhidasan university ', '', 'BSC Computer science ', '2024', 87.00, '', 1, '2025-02-28 08:01:07', 0, NULL, 0, NULL, 1),
(31652, 24334, '3', 'Thiruvallur University ', '', 'BBA', '2023', 81.00, '', 1, '2025-02-28 08:32:23', 0, NULL, 0, NULL, 1),
(31653, 24332, '3', 'Dr.M.G.R university ', '', 'B.com general ', '2024', 70.00, '', 1, '2025-02-28 08:34:50', 0, NULL, 0, NULL, 1),
(31654, 24333, '3', 'Soka ikeda arts and science collage ', '', 'BBA', '2023', 70.00, '', 1, '2025-02-28 08:37:06', 0, NULL, 0, NULL, 1),
(31655, 24336, '3', 'Madras University ', '', 'B.com (CS)', '2024', 50.00, '', 1, '2025-02-28 11:34:59', 1, '2025-02-28 11:36:16', 0, NULL, 1),
(31656, 24331, '4', 'Bharadhidasan university ', '', 'BSC.Computer Science ', '2024', 90.00, '', 1, '2025-02-28 02:29:36', 1, '2025-02-28 02:29:57', 0, NULL, 0),
(31657, 24338, '4', 'Anna University ', '', 'MCA', '2024', 80.00, '', 1, '2025-03-01 05:05:40', 0, NULL, 0, NULL, 1),
(31658, 24338, '3', 'MSU', '', 'BA English ', '2020', 70.00, '', 1, '2025-03-01 05:06:35', 0, NULL, 0, NULL, 1),
(31659, 24338, '2', 'State board ', '', '', '2017', 68.00, '', 1, '2025-03-01 05:07:13', 0, NULL, 0, NULL, 1),
(31660, 24338, '1', 'State Board ', '', '', '2015', 88.00, '', 1, '2025-03-01 05:07:55', 0, NULL, 0, NULL, 1),
(31661, 24339, '3', 'Srm Arts and Science college ', '', 'Bsc hotel management ', '2024', 60.00, '', 1, '2025-03-01 05:12:03', 0, NULL, 0, NULL, 1),
(31662, 24341, '3', 'sv university ', '', 'viswam degree college', '2022', 74.00, '', 1, '2025-03-01 05:26:21', 0, NULL, 0, NULL, 1),
(31663, 24340, '4', 'Madras University ', '', 'English language and literature ', '2022', 69.00, '', 1, '2025-03-01 05:28:19', 0, NULL, 0, NULL, 1),
(31664, 24343, '3', 'Madras University ', '', 'BA. sociology ', '2024', 70.00, '', 1, '2025-03-01 06:15:46', 0, NULL, 0, NULL, 1),
(31665, 24345, '4', 'Bangalore City University ', '', '', '2024', 60.00, '', 1, '2025-03-01 06:55:31', 0, NULL, 0, NULL, 1),
(31666, 24344, '4', 'Banglore City University ', '', 'Bcom', '2024', 70.00, '', 1, '2025-03-01 06:55:37', 0, NULL, 0, NULL, 1),
(31667, 24346, '3', 'University of Madras ', '', 'BCA', '2018', 67.00, '', 1, '2025-03-01 10:41:42', 0, NULL, 0, NULL, 1),
(31668, 24347, '3', 'Alagappa University', '', 'Bachelor of computer application', '2023', 68.00, '', 1, '2025-03-02 12:15:35', 0, NULL, 0, NULL, 1),
(31669, 24349, '3', 'Madras University ', '', 'B.com computer application ', '2023', 70.00, '', 1, '2025-03-03 04:41:28', 0, NULL, 0, NULL, 1),
(31670, 24351, '2', 'Pre University Karanataka ', '', '', '2018', 44.00, '', 1, '2025-03-03 04:59:12', 0, NULL, 0, NULL, 1),
(31671, 24352, '3', 'Madras University ', '', 'Bcom (cs)', '2020', 67.00, '', 1, '2025-03-03 06:16:48', 0, NULL, 0, NULL, 1),
(31672, 24353, '3', 'hindustan university', '', 'btech ', '2021', 78.00, '', 1, '2025-03-03 06:20:42', 0, NULL, 0, NULL, 1),
(31673, 24355, '3', 'Madras University ', '', 'BBA', '2023', 69.00, '', 1, '2025-03-03 07:10:05', 0, NULL, 0, NULL, 1),
(31674, 24354, '3', 'Tamil Nadu open university ', '', 'BCA ', '2011', 85.00, '', 1, '2025-03-03 07:10:35', 0, NULL, 0, NULL, 1),
(31675, 24356, '2', 'KRISHNA MALLI JUNIOR COLLEGE, PUTTUR', '', '', '2020', 60.00, '', 1, '2025-03-03 07:42:18', 0, NULL, 0, NULL, 1),
(31676, 24337, '4', 'Tirruvalur University ', '', 'BA Economics ', '2022', 70.00, '', 1, '2025-03-03 07:57:34', 0, NULL, 0, NULL, 1),
(31677, 24357, '3', 'University of madras', '', 'Bsc ', '2018', 65.00, '', 1, '2025-03-03 09:15:01', 0, NULL, 0, NULL, 1),
(31678, 24176, '3', 'Madras University ', '', 'BCA', '2024', 80.00, '', 1, '2025-03-03 03:11:34', 0, NULL, 0, NULL, 1),
(31679, 24177, '3', 'University of Madras ', '', 'BCA', '2024', 80.00, '', 1, '2025-03-03 03:21:07', 0, NULL, 0, NULL, 1),
(31680, 24363, '3', 'Madras University ', '', 'BCA', '2024', 80.00, '', 1, '2025-03-03 03:26:37', 0, NULL, 0, NULL, 1),
(31681, 24364, '4', 'Madras university ', '', 'M.com', '2024', 75.00, '', 1, '2025-03-04 04:04:21', 0, NULL, 0, NULL, 1),
(31682, 24359, '3', 'Autonomous ', '', 'B com', '2022', 80.00, '', 1, '2025-03-04 04:14:13', 0, NULL, 0, NULL, 1),
(31683, 24365, '4', 'University', '', 'MA English', '2025', 9.17, '', 1, '2025-03-04 04:18:47', 0, NULL, 0, NULL, 1),
(31684, 24366, '3', 'madras unversity ', '', 'bsc cs', '2022', 63.00, '', 1, '2025-03-04 04:32:08', 0, NULL, 0, NULL, 1),
(31685, 24367, '3', 'bangalore ', '', 'b.com', '2022', 77.00, '', 1, '2025-03-04 05:00:56', 0, NULL, 0, NULL, 1),
(31686, 24367, '1', 'ksseb', '', '', '2017', 71.00, '', 1, '2025-03-04 05:01:27', 1, '2025-03-04 05:01:58', 0, NULL, 0),
(31687, 24368, '3', 'Periya university ', '', 'Computer science ', '2020', 62.00, '', 1, '2025-03-04 05:09:50', 0, NULL, 0, NULL, 1),
(31688, 24369, '4', 'Alagappa university ', '', 'M.A.English ', '2024', 60.00, '', 1, '2025-03-04 05:30:50', 0, NULL, 0, NULL, 1),
(31689, 24371, '2', 'State board', '', '', '2019', 73.00, '', 1, '2025-03-04 06:36:35', 0, NULL, 0, NULL, 1),
(31690, 24371, '3', 'Anna university', '', 'BE', '2023', 86.80, '', 1, '2025-03-04 06:37:03', 0, NULL, 0, NULL, 1),
(31691, 24371, '1', 'State Board', '', '', '2017', 95.60, '', 1, '2025-03-04 06:37:42', 0, NULL, 0, NULL, 1),
(31692, 24372, '3', 'SRM INSTITUTE OF SCIENCE AND TECHNOLOGY ', '', 'B com', '2024', 7.52, '', 1, '2025-03-04 06:43:15', 0, NULL, 0, NULL, 1),
(31693, 24370, '3', 'University ', '', 'B A ECONOMICS', '2024', 67.00, '', 1, '2025-03-04 06:43:36', 0, NULL, 0, NULL, 1),
(31694, 24373, '4', 'Avs college of arts and science ', '', 'Mca', '2024', 75.00, '', 1, '2025-03-04 06:46:24', 0, NULL, 0, NULL, 1),
(31695, 24374, '4', 'Sc university ', '', 'Mecs', '2019', 89.00, '', 1, '2025-03-04 07:17:56', 0, NULL, 0, NULL, 1),
(31696, 24375, '3', 'UNIVERSITY OF MADRAS ', '', 'BCA', '2022', 65.00, '', 1, '2025-03-04 08:20:55', 0, NULL, 0, NULL, 1),
(31697, 24361, '3', 'Anna adarsh college for women', '', 'BCA', '2023', 63.00, '', 1, '2025-03-04 09:59:04', 0, NULL, 0, NULL, 1),
(31698, 24361, '2', 'SRM VIVEKANANADA GIRLS HIGHER SEC SCHOOL', '', '', '2020', 59.00, '', 1, '2025-03-04 09:59:57', 0, NULL, 0, NULL, 1),
(31699, 24361, '1', 'SRM VIVEKANANADA GIRLS HIGHER SEC SCHOOL', '', '', '2018', 71.00, '', 1, '2025-03-04 10:00:17', 0, NULL, 0, NULL, 1),
(31700, 24380, '3', 'Anna University ', '', 'B.E(ECE)', '2023', 78.57, '', 1, '2025-03-04 12:24:36', 0, NULL, 0, NULL, 1),
(31701, 24380, '2', 'Theni Melapettai Hindu Nadar Uravinmurai Matriculation Higher Secondary School', '', '', '2019', 66.50, '', 1, '2025-03-04 12:25:58', 1, '2025-03-04 12:26:38', 0, NULL, 0),
(31702, 24380, '2', 'Theni Melapettai Hindu Nadar Uravinmurai Matriculation Higher Secondary School', '', '', '2017', 94.00, '', 1, '2025-03-04 12:26:42', 1, '2025-03-04 12:26:46', 0, NULL, 0),
(31703, 24381, '3', 'AUTONOMOUS ', '', 'B.COM BM', '2024', 64.00, '', 1, '2025-03-05 04:20:20', 0, NULL, 0, NULL, 1),
(31704, 24377, '3', 'Bharadhidasan university ', '', 'BSc', '2023', 77.00, '', 1, '2025-03-05 05:11:09', 0, NULL, 0, NULL, 1),
(31705, 24382, '2', 'Arakkonam', '', '', '2018', 65.00, '', 1, '2025-03-05 05:40:51', 0, NULL, 0, NULL, 1),
(31706, 24335, '3', 'anna university', '', 'be', '2022', 7.50, '', 1, '2025-03-05 06:01:05', 0, NULL, 0, NULL, 1),
(31707, 24384, '3', 'Periyar University ', '', 'BCA', '2022', 83.00, '', 1, '2025-03-05 07:27:05', 0, NULL, 0, NULL, 1),
(31708, 24383, '4', 'Thiruvallvar  university ', '', 'MA. English ', '2022', 85.00, '', 1, '2025-03-05 07:33:06', 0, NULL, 0, NULL, 1),
(31709, 24383, '4', 'Thiruvallvar university ', '', 'MA ENGLISH ', '2022', 85.00, '', 1, '2025-03-05 07:34:05', 0, NULL, 0, NULL, 1),
(31710, 24386, '3', 'Anna University ', '', 'Btech IT', '2022', 79.00, '', 1, '2025-03-05 02:44:37', 0, NULL, 0, NULL, 1),
(31711, 24386, '2', 'State board', '', '', '2018', 74.00, '', 1, '2025-03-05 02:45:11', 0, NULL, 0, NULL, 1),
(31712, 24386, '1', 'State board', '', '', '2016', 88.00, '', 1, '2025-03-05 02:45:30', 0, NULL, 0, NULL, 1),
(31713, 24387, '3', 'Madras University ', '', 'B.com', '2023', 75.00, '', 1, '2025-03-05 03:14:17', 0, NULL, 0, NULL, 1),
(31714, 24387, '2', 'Singaram pillai Girls hr sec school ', '', '', '2020', 70.00, '', 1, '2025-03-05 03:15:57', 0, NULL, 0, NULL, 1),
(31715, 24387, '1', 'Singaram pillai Girls hr sec school ', '', '', '2018', 75.00, '', 1, '2025-03-05 03:16:32', 0, NULL, 0, NULL, 1),
(31716, 24388, '4', 'Bangalore university ', '', 'MBA', '2022', 6.80, '', 1, '2025-03-06 04:19:59', 0, NULL, 0, NULL, 1),
(31717, 24389, '3', 'University of madras', '', 'B.com', '2022', 65.00, '', 1, '2025-03-06 05:59:32', 0, NULL, 0, NULL, 1),
(31718, 24390, '4', 'Kalasalìngam accademy of research and education ', '', 'Mca', '2024', 8.00, '', 1, '2025-03-06 06:08:14', 0, NULL, 0, NULL, 1),
(31719, 24391, '3', 'Agurchand manmull Jain college ', '', 'Bsc computer science ', '2024', 70.00, '', 1, '2025-03-06 06:08:39', 0, NULL, 0, NULL, 1),
(31720, 24391, '2', 'St Peter\'s higher secondary school ', '', '', '2021', 77.00, '', 1, '2025-03-06 06:09:51', 0, NULL, 0, NULL, 1),
(31721, 24393, '3', 'Vels University ', '', 'B.sc Computer Science ', '2024', 7.60, '', 1, '2025-03-06 06:15:55', 0, NULL, 0, NULL, 1),
(31722, 24393, '2', 'St.Peters Hr Sec School', '', '', '2021', 74.00, '', 1, '2025-03-06 06:16:54', 0, NULL, 0, NULL, 1),
(31723, 24392, '3', 'Dwarka Doss Goverdhan Doss Vaishnav college ', '', 'Bachelor of commerce (General)', '2022', 78.00, '', 1, '2025-03-06 06:20:38', 0, NULL, 0, NULL, 1),
(31724, 24394, '3', 'Loyola institute of technology Chennai ', '', 'B E ', '2021', 7.36, '', 1, '2025-03-06 06:38:20', 0, NULL, 0, NULL, 1),
(31725, 24394, '2', 'Tamil Nadu State Board ', '', '', '2017', 63.00, '', 1, '2025-03-06 06:38:51', 0, NULL, 0, NULL, 1),
(31726, 24394, '1', 'TamilNadu State Board ', '', '', '2015', 80.00, '', 1, '2025-03-06 06:39:21', 0, NULL, 0, NULL, 1),
(31727, 24278, '3', 'Bharathidhan university ', '', 'BBA ', '2021', 83.00, '', 1, '2025-03-06 08:22:48', 0, NULL, 0, NULL, 1),
(31728, 24395, '3', 'Anna University ', '', 'BE', '2016', 78.00, '', 1, '2025-03-06 08:27:48', 0, NULL, 0, NULL, 1),
(31729, 24397, '3', 'B. S. Abdur Rahman Crescent Institute Of Science And Technology', '', 'BCA', '2024', 7.50, '', 1, '2025-03-06 09:16:31', 0, NULL, 0, NULL, 1),
(31730, 24396, '3', 'university of madras', '', 'sc comp science', '2024', 72.00, '', 1, '2025-03-06 09:17:30', 0, NULL, 0, NULL, 1),
(31731, 24399, '3', 'University ', '', 'B.E mechanical ', '2022', 82.00, '', 1, '2025-03-07 06:11:32', 0, NULL, 0, NULL, 1),
(31732, 24399, '2', 'State board ', '', '', '2018', 82.00, '', 1, '2025-03-07 06:12:15', 0, NULL, 0, NULL, 1),
(31733, 24399, '1', 'CBSE ', '', '', '2016', 82.00, '', 1, '2025-03-07 06:12:57', 0, NULL, 0, NULL, 1),
(31734, 24401, '3', 'Madras University ', '', 'B.sc computer science ', '2022', 85.00, '', 1, '2025-03-07 06:18:47', 0, NULL, 0, NULL, 1),
(31735, 24400, '3', 'Bharathidhasan university ', '', 'BCA', '2024', 71.00, '', 1, '2025-03-07 06:23:47', 0, NULL, 0, NULL, 1),
(31736, 24402, '3', 'Bharathidhasan university ', '', 'BCA ', '2024', 69.00, '', 1, '2025-03-07 06:30:25', 0, NULL, 0, NULL, 1),
(31737, 24403, '3', 'Dr MGR UNIVERSITY ', '', 'Human resources management ', '2023', 70.00, '', 1, '2025-03-07 06:30:59', 0, NULL, 0, NULL, 1),
(31738, 24405, '1', 'Karanataka secondary education examination board ', '', '', '2018', 72.80, '', 1, '2025-03-08 04:21:29', 0, NULL, 0, NULL, 1),
(31739, 24385, '3', 'IFET COLLEGE OF ENGINEERING', '', 'B. E', '2024', 8.40, '', 1, '2025-03-08 05:14:39', 0, NULL, 0, NULL, 1),
(31740, 24407, '3', 'Quaid E millath government college for women ', '', 'BA', '2024', 73.00, '', 1, '2025-03-08 05:20:57', 0, NULL, 0, NULL, 1),
(31741, 24408, '1', 'State board', '', '', '2015', 84.00, '', 1, '2025-03-08 05:45:16', 0, NULL, 0, NULL, 1),
(31742, 24406, '3', 'Madras University ', '', 'Bsc mathematics ', '2020', 75.00, '', 1, '2025-03-08 05:45:16', 0, NULL, 0, NULL, 1),
(31743, 24408, '2', 'State board', '', '', '2018', 72.00, '', 1, '2025-03-08 05:45:42', 0, NULL, 0, NULL, 1),
(31744, 24408, '3', 'Madras University ', '', 'BCA(Bachelor of Computer Applications)', '2022', 86.00, '', 1, '2025-03-08 05:48:06', 0, NULL, 0, NULL, 1),
(31745, 24409, '3', 'madras university', '', 'bca', '2024', 60.00, '', 1, '2025-03-08 06:19:29', 0, NULL, 0, NULL, 1),
(31746, 24410, '3', 'Queen Mary\'s college ', '', 'B.A economics ', '2022', 70.00, '', 1, '2025-03-08 06:54:16', 0, NULL, 0, NULL, 1),
(31747, 24411, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 72.00, '', 1, '2025-03-08 08:48:52', 0, NULL, 0, NULL, 1),
(31748, 24414, '1', 'state board', '', '', '2018', 50.00, '', 1, '2025-03-10 07:09:11', 1, '2025-03-10 07:10:28', 0, NULL, 0),
(31749, 24414, '5', 'doata universitt', '', 'no', '2021', 68.00, '', 1, '2025-03-10 07:10:14', 0, NULL, 0, NULL, 1),
(31750, 24415, '4', 'Madras University ', '', 'B.com', '2021', 95.00, '', 1, '2025-03-10 07:15:49', 0, NULL, 0, NULL, 1),
(31751, 24418, '3', 'Thiruvalluvar university', '', 'B. Com', '2023', 69.00, '', 1, '2025-03-11 04:16:07', 0, NULL, 0, NULL, 1),
(31752, 24417, '3', 'Chevalier t Thomas elizabeth college for women ', '', 'Batchelor business administration ', '2023', 74.00, '', 1, '2025-03-11 04:53:11', 0, NULL, 0, NULL, 1),
(31753, 24420, '4', 'Vishveshwarya Technological University ', '', 'MBA', '2024', 74.00, '', 1, '2025-03-11 05:01:58', 0, NULL, 0, NULL, 1),
(31754, 24419, '3', 'Thiruvalluvar University ', '', 'B.com', '2023', 60.00, '', 1, '2025-03-11 05:03:15', 0, NULL, 0, NULL, 1),
(31755, 24421, '3', 'Bharathidasan University ', '', 'B.Com', '2023', 70.00, '', 1, '2025-03-11 05:26:32', 0, NULL, 0, NULL, 1),
(31756, 24422, '3', 'Bharadhithasan university ', '', 'B. A ENGLISH ', '2021', 70.00, '', 1, '2025-03-11 05:31:28', 0, NULL, 0, NULL, 1),
(31757, 24423, '3', 'University ', '', 'BCA', '2024', 70.00, '', 1, '2025-03-11 05:46:01', 0, NULL, 0, NULL, 1),
(31758, 24424, '3', 'madurai kamaraj university', '', 'Home Science ', '2023', 76.00, '', 1, '2025-03-11 06:07:13', 0, NULL, 0, NULL, 1),
(31759, 24427, '3', 'Sri manakula vinayagar engineering College ', '', 'Btech-EEE', '2022', 69.00, '', 1, '2025-03-11 07:35:23', 0, NULL, 0, NULL, 1),
(31760, 24428, '3', 'Bengaluru City University ', '', 'B.com', '2023', 69.00, '', 1, '2025-03-11 08:17:18', 0, NULL, 0, NULL, 1),
(31761, 24431, '3', 'Anna University ', '', 'B.E mechanical Engineering ', '2024', 76.00, '', 1, '2025-03-12 03:47:40', 0, NULL, 0, NULL, 1),
(31762, 24431, '5', 'DOTE', '', 'Diploma in Mechanical Engineering ', '2021', 95.00, '', 1, '2025-03-12 03:48:13', 0, NULL, 0, NULL, 1),
(31763, 24431, '1', 'State board ', '', '', '2018', 89.00, '', 1, '2025-03-12 03:48:46', 0, NULL, 0, NULL, 1),
(31764, 24429, '3', 'Manonmaniam sundaranar university', '', 'B. Sc', '2021', 76.00, '', 1, '2025-03-12 03:54:30', 0, NULL, 0, NULL, 1),
(31765, 24432, '3', 'Thiruvalluver university ', '', 'Bsc computer science', '2023', 7.50, '', 1, '2025-03-12 03:55:35', 0, NULL, 0, NULL, 1),
(31766, 24430, '3', 'bharathidasan university', '', 'Bachelor computer science ', '2022', 67.46, '', 1, '2025-03-12 03:57:21', 0, NULL, 0, NULL, 1),
(31767, 24435, '3', 'Vels university', '', 'B. Com(computer application) ', '2020', 85.00, '', 1, '2025-03-12 03:57:40', 0, NULL, 0, NULL, 1),
(31768, 24433, '3', 'Madras University ', '', 'b sc Maths with Computer Applications ', '2020', 76.50, '', 1, '2025-03-12 03:57:45', 0, NULL, 0, NULL, 1),
(31769, 24434, '3', 'alagappa university ', '', 'Bsc', '2024', 89.00, '', 1, '2025-03-12 04:00:46', 0, NULL, 0, NULL, 1),
(31770, 24436, '3', 'Annamalai University ', '', 'Bsc mathematics ', '2024', 64.86, '', 1, '2025-03-12 04:16:26', 0, NULL, 0, NULL, 1),
(31771, 24437, '4', 'University', '', 'MCA', '2023', 69.00, '', 1, '2025-03-12 04:43:32', 0, NULL, 0, NULL, 1),
(31772, 24440, '3', 'Sethu insitute of technology ', '', 'B.E Computer Science and engineering ', '2024', 70.00, '', 1, '2025-03-12 04:44:18', 0, NULL, 0, NULL, 1),
(31773, 24442, '3', 'Periyar University ', '', 'Bachelor of Computer Application ', '2023', 70.00, '', 1, '2025-03-12 04:45:05', 0, NULL, 0, NULL, 1),
(31774, 24443, '4', 'Thiruvalluvar University ', '', 'BSC computer science ', '2022', 69.00, '', 1, '2025-03-12 04:45:27', 0, NULL, 0, NULL, 1),
(31775, 24438, '3', 'Vels University ', '', 'Bca data science ', '2024', 57.90, '', 1, '2025-03-12 04:45:58', 0, NULL, 0, NULL, 1),
(31776, 24442, '1', '10th', '', '', '2018', 75.00, '', 1, '2025-03-12 04:45:59', 0, NULL, 0, NULL, 1),
(31777, 24442, '2', '12th', '', '', '2020', 65.00, '', 1, '2025-03-12 04:46:18', 0, NULL, 0, NULL, 1),
(31778, 24444, '4', 'MAM college of engineering,Anna university ', '', 'MCA', '2024', 83.00, '', 1, '2025-03-12 04:47:52', 0, NULL, 0, NULL, 1),
(31779, 24441, '3', 'Anna university ', '', 'B.E', '2022', 70.00, '', 1, '2025-03-12 04:48:49', 0, NULL, 0, NULL, 1),
(31780, 24439, '3', 'Loyola college ', '', 'Bmm in animation ', '2023', 72.00, '', 1, '2025-03-12 04:49:33', 1, '2025-03-12 04:50:55', 0, NULL, 1),
(31781, 24445, '3', 'Thiruvaluvar university', '', 'B.sc mathematics', '2024', 58.00, '', 1, '2025-03-12 04:53:09', 0, NULL, 0, NULL, 1),
(31782, 24446, '4', 'Thiruvalluvar', '', 'MCA', '2023', 7.50, '', 1, '2025-03-12 06:06:29', 0, NULL, 0, NULL, 1),
(31783, 24447, '5', 'ramakrishna polytenic', '', 'mechanical engineering', '2023', 79.00, '', 1, '2025-03-12 06:47:50', 0, NULL, 0, NULL, 1),
(31784, 24449, '1', 'open unversity ', '', '', '2022', 65.00, '', 1, '2025-03-12 07:51:32', 0, NULL, 0, NULL, 1),
(31785, 24426, '2', 'State board of tamil nadu', '', '', '2020', 73.60, '', 1, '2025-03-12 08:06:21', 0, NULL, 0, NULL, 1),
(31786, 24425, '2', 'State board of tamilnadu ', '', '', '2020', 74.00, '', 1, '2025-03-12 08:10:35', 0, NULL, 0, NULL, 1),
(31787, 24451, '2', 'State board of tamil nadu ', '', '', '2020', 73.60, '', 1, '2025-03-12 09:23:36', 0, NULL, 0, NULL, 1),
(31788, 24452, '4', 'Karpagam university ', '', 'MBA', '2019', 70.00, '', 1, '2025-03-12 10:27:05', 0, NULL, 0, NULL, 1),
(31789, 24453, '1', 'Bharathidhasan university', '', '', '2021', 76.00, '', 1, '2025-03-12 12:34:36', 0, NULL, 0, NULL, 1),
(31790, 24455, '5', 'Govt polytechnic collage purasaiwakkam ', '', 'Nil', '2024', 80.00, '', 1, '2025-03-12 01:18:46', 0, NULL, 0, NULL, 1),
(31791, 24457, '3', 'university', '', 'b.com.cs', '2024', 65.00, '', 1, '2025-03-13 04:16:33', 0, NULL, 0, NULL, 1),
(31792, 24458, '3', 'Sri Kaliswari college (Autonomous) ', '', 'B. Com(corporate secretryship) ', '2024', 82.00, '', 1, '2025-03-13 04:21:28', 0, NULL, 0, NULL, 1),
(31793, 24456, '1', 'State board', '', '', '2015', 68.00, '', 1, '2025-03-13 04:28:06', 0, NULL, 0, NULL, 1),
(31794, 24456, '2', 'State board ', '', '', '2016', 83.00, '', 1, '2025-03-13 04:28:39', 0, NULL, 0, NULL, 1),
(31795, 24456, '3', 'Madras University ', '', 'B com', '2020', 93.00, '', 1, '2025-03-13 04:29:47', 0, NULL, 0, NULL, 1),
(31796, 24456, '4', 'Deemed University ', '', 'MCA', '2023', 83.00, '', 1, '2025-03-13 04:30:08', 0, NULL, 0, NULL, 1),
(31797, 24459, '3', 'annamalai university', '', 'b.com', '2023', 75.00, '', 1, '2025-03-13 04:54:35', 0, NULL, 0, NULL, 1),
(31798, 24461, '3', 'annamalai university ', '', 'b.com', '2023', 75.00, '', 1, '2025-03-13 05:10:18', 0, NULL, 0, NULL, 1),
(31799, 24234, '5', 'Dote', '', 'Diploma computer science engineering ', '2022', 72.00, '', 1, '2025-03-13 05:18:22', 0, NULL, 0, NULL, 1),
(31800, 24462, '3', 'Sadakuthullah appa college', '', 'B. A english literature', '2023', 60.00, '', 1, '2025-03-13 05:21:52', 0, NULL, 0, NULL, 1),
(31801, 24460, '3', 'thiruvalluvar University ', '', 'chemistry', '2020', 67.00, '', 1, '2025-03-13 05:21:56', 1, '2025-03-13 05:24:01', 0, NULL, 0),
(31802, 24462, '2', 'State Board', '', '', '2020', 60.00, '', 1, '2025-03-13 05:22:50', 0, NULL, 0, NULL, 1),
(31803, 24460, '1', 'State board ', '', '', '2015', 70.00, '', 1, '2025-03-13 05:23:51', 0, NULL, 0, NULL, 1),
(31804, 24460, '2', 'stateboard', '', '', '2017', 56.00, '', 1, '2025-03-13 05:24:25', 0, NULL, 0, NULL, 1),
(31805, 24462, '1', 'State board', '', '', '2018', 72.20, '', 1, '2025-03-13 05:24:26', 0, NULL, 0, NULL, 1),
(31806, 24460, '3', 'thiruvalluvar university', '', '', '2020', 67.00, '', 1, '2025-03-13 05:25:19', 1, '2025-03-13 05:27:01', 0, NULL, 1),
(31807, 24460, '4', 'thiruvalluvar university', '', '', '2022', 74.00, '', 1, '2025-03-13 05:25:57', 1, '2025-03-13 05:26:37', 0, NULL, 1),
(31808, 24463, '3', 'UNIVERSITY ', '', 'B.TECH', '2019', 6.07, '', 1, '2025-03-13 05:33:29', 0, NULL, 0, NULL, 1),
(31809, 24464, '3', 'Karnataka state akkamadahave womens University Vijaypur ', '', 'B.com', '2024', 86.50, '', 1, '2025-03-13 05:37:48', 0, NULL, 0, NULL, 1),
(31810, 24454, '3', 'Madras University ', '', 'BCA', '2022', 65.00, '', 1, '2025-03-13 05:40:35', 0, NULL, 0, NULL, 1),
(31811, 24465, '4', 'University ', '', 'MBA', '2025', 73.00, '', 1, '2025-03-13 05:46:57', 0, NULL, 0, NULL, 1),
(31812, 24465, '3', 'University ', '', 'BBA', '2021', 78.00, '', 1, '2025-03-13 05:47:30', 0, NULL, 0, NULL, 1),
(31813, 24466, '3', 'Madras university ', '', 'B.com', '2021', 75.00, '', 1, '2025-03-13 05:59:32', 0, NULL, 0, NULL, 1),
(31814, 24467, '3', 'Madras university', '', 'Because computer science', '2024', 68.00, '', 1, '2025-03-13 06:29:31', 0, NULL, 0, NULL, 1),
(31815, 24470, '3', ' mgr university', '', 'bsc viscom', '2019', 60.00, '', 1, '2025-03-13 07:31:04', 0, NULL, 0, NULL, 1),
(31816, 24471, '1', 'state boar', '', '', '2018', 73.80, '', 1, '2025-03-14 03:49:24', 1, '2025-03-14 03:50:20', 0, NULL, 1),
(31817, 24471, '2', 'state board', '', '', '2020', 86.50, '', 1, '2025-03-14 03:51:19', 0, NULL, 0, NULL, 1),
(31818, 24471, '3', 'bharathiar university', '', 'bba', '2023', 76.00, '', 1, '2025-03-14 03:53:34', 0, NULL, 0, NULL, 1),
(31819, 24472, '3', 'madras university', '', 'ba economics', '2019', 58.00, '', 1, '2025-03-14 05:14:43', 0, NULL, 0, NULL, 1),
(31820, 24472, '2', 'madras university', '', '', '2016', 56.00, '', 1, '2025-03-14 05:15:28', 0, NULL, 0, NULL, 1),
(31821, 24473, '3', 'sv university', '', 'b.com computer application', '2023', 65.00, '', 1, '2025-03-14 05:24:57', 0, NULL, 0, NULL, 1),
(31822, 24474, '3', 'Prist university', '', 'B. Sc computer science', '2024', 9.42, '', 1, '2025-03-14 06:00:59', 0, NULL, 0, NULL, 1),
(31823, 24475, '3', 'Madras University ', '', 'Bca', '2021', 68.00, '', 1, '2025-03-14 06:37:45', 0, NULL, 0, NULL, 1),
(31824, 24476, '3', 'Sv university ', '', 'b.s.c', '2022', 80.00, '', 1, '2025-03-14 11:42:18', 0, NULL, 0, NULL, 1),
(31825, 24478, '1', 'Fe\'s matriculation  high Secondary school', '', '', '2020', 72.00, '', 1, '2025-03-15 08:30:35', 0, NULL, 0, NULL, 1),
(31826, 24480, '4', 'Madras University ', '', 'MBA', '2024', 65.00, '', 1, '2025-03-17 05:08:23', 0, NULL, 0, NULL, 1),
(31827, 24481, '3', 'University ', '', 'BA corporate Economics ', '2023', 59.00, '', 1, '2025-03-17 05:12:19', 0, NULL, 0, NULL, 1),
(31828, 24483, '3', 'Rani parvati Devi', '', 'BA', '2022', 72.00, '', 1, '2025-03-17 06:00:23', 0, NULL, 0, NULL, 1),
(31829, 24482, '3', 'Madras University ', '', 'B.A', '2021', 89.00, '', 1, '2025-03-17 06:02:47', 0, NULL, 0, NULL, 1),
(31830, 24484, '4', 'deemed university', '', 'mba hr with marketing', '2025', 8.81, '', 1, '2025-03-17 06:12:32', 0, NULL, 0, NULL, 1),
(31831, 24486, '4', 'Madras University ', '', 'Pgdm Global Business and Finance ', '2019', 58.00, '', 1, '2025-03-17 06:40:12', 0, NULL, 0, NULL, 1),
(31832, 24486, '3', 'Madras University ', '', 'B.com', '2017', 60.00, '', 1, '2025-03-17 06:40:43', 0, NULL, 0, NULL, 1),
(31833, 24486, '2', 'State board ', '', '', '2014', 78.00, '', 1, '2025-03-17 06:41:13', 0, NULL, 0, NULL, 1),
(31834, 24486, '1', 'Cbse', '', '', '2012', 70.00, '', 1, '2025-03-17 06:41:37', 0, NULL, 0, NULL, 1),
(31835, 24487, '2', 'Mumbai University ', '', '', '2017', 66.00, '', 1, '2025-03-17 06:51:32', 0, NULL, 0, NULL, 1),
(31836, 24489, '3', 'UNIVERSITY', '', 'BA ECONOIMICS', '2023', 67.00, '', 153, '2025-03-17 12:34:45', 0, NULL, 0, NULL, 1),
(31837, 24488, '1', 'tamilnadu', '', '', '2018', 69.00, '', 1, '2025-03-17 07:24:31', 0, NULL, 0, NULL, 1),
(31838, 24488, '5', 'dote', '', 'diploma in mechanical engineering', '2021', 77.00, '', 1, '2025-03-17 07:25:50', 0, NULL, 0, NULL, 1),
(31839, 24488, '3', 'anna university', '', 'b.e in electronics and communication engineering', '2024', 69.00, '', 1, '2025-03-17 07:27:22', 0, NULL, 0, NULL, 1),
(31840, 24490, '4', 'Anna University ', '', 'B.E', '2022', 9.05, '', 1, '2025-03-17 12:09:13', 1, '2025-03-17 12:10:43', 0, NULL, 0),
(31841, 24490, '3', 'University ', '', 'B e', '2022', 9.05, '', 1, '2025-03-17 12:10:37', 0, NULL, 0, NULL, 1),
(31842, 24491, '3', 'Bharathidasan university ', '', 'B. Com computer application ', '2020', 65.00, '', 1, '2025-03-17 01:16:16', 0, NULL, 0, NULL, 1),
(31843, 24492, '3', 'Madras University ', '', 'B.com (cS)', '2020', 72.00, '', 1, '2025-03-17 01:49:32', 0, NULL, 0, NULL, 1),
(31844, 24494, '2', 'Board', '', '', '2019', 46.00, '', 1, '2025-03-18 04:49:10', 0, NULL, 0, NULL, 1),
(31845, 24495, '4', 'S.A engineering College ', '', 'MBA', '2025', 70.00, '', 1, '2025-03-18 05:49:49', 0, NULL, 0, NULL, 1),
(31846, 24496, '3', 'Madras University ', '', 'BBA', '2020', 75.00, '', 1, '2025-03-18 05:57:49', 0, NULL, 0, NULL, 1),
(31847, 24497, '3', 'Patrician college of arts and science ', '', 'BBA', '2024', 50.00, '', 1, '2025-03-18 05:58:17', 0, NULL, 0, NULL, 1),
(31848, 24498, '3', 'Anna University', '', 'BE', '2018', 70.00, '', 1, '2025-03-18 06:05:37', 0, NULL, 0, NULL, 1),
(31849, 24500, '4', 'Madras University ', '', 'M.A(HRM)', '2023', 75.00, '', 1, '2025-03-18 06:19:20', 0, NULL, 0, NULL, 1),
(31850, 24499, '3', 'Madras University ', '', 'B.A.Criminology & PA', '2023', 70.00, '', 1, '2025-03-18 06:19:56', 0, NULL, 0, NULL, 1),
(31851, 24502, '3', 'madras university', '', 'b.com', '2024', 70.00, '', 1, '2025-03-18 07:12:26', 0, NULL, 0, NULL, 1),
(31852, 24503, '3', 'Madras University ', '', 'BCOM', '2024', 70.00, '', 1, '2025-03-18 07:13:02', 0, NULL, 0, NULL, 1),
(31853, 24505, '3', 'Rani channamma  university ', '', 'B.com', '2022', 78.49, '', 1, '2025-03-18 09:32:26', 0, NULL, 0, NULL, 1),
(31854, 24506, '3', 'University of Madras ', '', 'BCA', '2024', 60.00, '', 1, '2025-03-19 01:52:39', 0, NULL, 0, NULL, 1),
(31855, 24507, '3', 'Anna university ', '', 'Be', '2024', 79.00, '', 1, '2025-03-19 05:19:56', 0, NULL, 0, NULL, 1),
(31856, 24508, '5', 'Govt polytechnic collage ', '', '', '2024', 80.00, '', 1, '2025-03-19 06:20:25', 0, NULL, 0, NULL, 1),
(31857, 24509, '4', 'Periyar University salem', '', 'M.sc physics', '2023', 77.00, '', 1, '2025-03-19 07:05:44', 0, NULL, 0, NULL, 1),
(31858, 24510, '5', 'Department of technical education ', '', 'DECE', '2022', 75.00, '', 1, '2025-03-19 07:35:55', 0, NULL, 0, NULL, 1),
(31859, 24513, '2', 'BOARD', '', '', '2013', 70.00, '', 154, '2025-03-19 02:42:51', 0, NULL, 0, NULL, 1),
(31860, 24514, '3', 'Manonmaniam Sundaranar University', '', 'B.Com', '2022', 76.00, '', 1, '2025-03-19 01:15:23', 0, NULL, 0, NULL, 1),
(31861, 24516, '3', 'University of Madras', '', 'BCA', '2018', 60.00, '', 1, '2025-03-19 04:59:17', 0, NULL, 0, NULL, 1),
(31862, 24517, '3', 'Vels University ', '', 'B.com computer application ', '2021', 70.00, '', 1, '2025-03-20 04:25:09', 0, NULL, 0, NULL, 1),
(31863, 24518, '3', 'Panimalar institute of technology ', '', 'B tech Information technology ', '2024', 80.00, '', 1, '2025-03-20 04:32:05', 0, NULL, 0, NULL, 1),
(31864, 24520, '3', 'Madras University ', '', 'BSC ', '2023', 82.00, '', 1, '2025-03-20 04:44:25', 0, NULL, 0, NULL, 1),
(31865, 24519, '3', 'Madras University ', '', 'Bsc. Biochemistry ', '2023', 85.00, '', 1, '2025-03-20 04:44:34', 0, NULL, 0, NULL, 1),
(31866, 24519, '4', 'Sathyabama ', '', 'Msc. Bioinformatics and data science ', '2025', 77.00, '', 1, '2025-03-20 04:45:35', 0, NULL, 0, NULL, 1),
(31867, 24521, '1', 'State board ', '', '', '2016', 72.00, '', 1, '2025-03-20 05:08:55', 0, NULL, 0, NULL, 1),
(31868, 24521, '2', 'State board ', '', '', '2018', 68.00, '', 1, '2025-03-20 05:09:23', 0, NULL, 0, NULL, 1),
(31869, 24521, '3', 'Madras university ', '', 'Bachelor of Arts', '2021', 70.00, '', 1, '2025-03-20 05:09:55', 0, NULL, 0, NULL, 1),
(31870, 24522, '3', 'Kamaraj university ', '', 'B.A.Economics', '2023', 68.00, '', 1, '2025-03-20 05:49:09', 0, NULL, 0, NULL, 1),
(31871, 24523, '3', 'Anna university ', '', 'BE (CSE)', '2024', 50.00, '', 1, '2025-03-20 06:02:05', 0, NULL, 0, NULL, 1),
(31872, 24524, '4', 'srm University ', '', 'mba', '2025', 83.00, '', 1, '2025-03-20 06:43:54', 0, NULL, 0, NULL, 1),
(31873, 24525, '3', 'Bengaluru City University ', '', 'Bcom', '2023', 8.28, '', 1, '2025-03-20 06:49:51', 0, NULL, 0, NULL, 1),
(31874, 24526, '3', 'University of Mysore', '', 'bcom', '2021', 70.00, '', 1, '2025-03-20 07:45:27', 0, NULL, 0, NULL, 1),
(31875, 24527, '5', 'Rajiv Gandhi national institute of youth development ', '', '', '2016', 65.00, '', 1, '2025-03-20 08:04:03', 0, NULL, 0, NULL, 1),
(31876, 24528, '5', 'Panimalar ', '', 'Electrical and electronics engineering ', '2023', 73.00, '', 1, '2025-03-20 01:12:49', 0, NULL, 0, NULL, 1),
(31877, 24529, '4', 'Bharathiyar university ', '', 'M.Sc ECS', '2024', 74.00, '', 1, '2025-03-21 05:21:18', 0, NULL, 0, NULL, 1),
(31878, 24529, '3', 'Periyar university', '', 'B. Sc ECS', '2022', 78.00, '', 1, '2025-03-21 05:21:51', 0, NULL, 0, NULL, 1),
(31879, 24529, '2', 'GHSS', '', '', '2019', 49.00, '', 1, '2025-03-21 05:22:52', 0, NULL, 0, NULL, 1),
(31880, 24529, '1', 'GHSS', '', '', '2017', 80.00, '', 1, '2025-03-21 05:23:11', 0, NULL, 0, NULL, 1),
(31881, 24530, '4', 'Madras University ', '', 'M.com ', '2024', 66.00, '', 1, '2025-03-21 05:31:31', 0, NULL, 0, NULL, 1),
(31882, 24530, '4', 'Madras University ', '', 'M.com', '2024', 66.00, '', 1, '2025-03-21 05:32:18', 0, NULL, 0, NULL, 1),
(31883, 24530, '3', 'Madras University ', '', 'M.com', '2024', 68.00, '', 1, '2025-03-21 05:33:03', 0, NULL, 0, NULL, 1),
(31884, 24533, '4', 'SJC Institute of technology ', '', 'B. E information science and engineering ', '2023', 8.20, '', 1, '2025-03-21 05:48:48', 0, NULL, 0, NULL, 1),
(31885, 24533, '1', 'Narayana junior college ', '', '', '2019', 9.34, '', 1, '2025-03-21 05:49:35', 1, '2025-03-21 05:50:20', 0, NULL, 1),
(31886, 24531, '3', 'Bharathi Women\'s college ', '', 'B.A. History ', '2022', 72.00, '', 1, '2025-03-21 05:52:08', 0, NULL, 0, NULL, 1),
(31887, 24532, '3', 'Bharathi women\'s college ', '', 'B.A History ', '2022', 72.00, '', 1, '2025-03-21 05:53:23', 0, NULL, 0, NULL, 1),
(31888, 24535, '2', 'State board ', '', '', '2021', 80.00, '', 1, '2025-03-21 06:03:15', 0, NULL, 0, NULL, 1),
(31889, 24534, '3', 'anna university', '', 'Electrical Electrician engineer', '2021', 80.00, '', 1, '2025-03-21 06:07:44', 0, NULL, 0, NULL, 1),
(31890, 24536, '4', 'Pondicherry University ', '', 'Mba hr ', '2025', 1.74, '', 1, '2025-03-21 06:09:40', 0, NULL, 0, NULL, 1),
(31891, 24536, '3', 'Madras University ', '', 'BBA', '2022', 76.00, '', 1, '2025-03-21 06:10:14', 0, NULL, 0, NULL, 1),
(31892, 24536, '2', 'St. Anne\'s girls higher secondary school ', '', '', '2019', 63.00, '', 1, '2025-03-21 06:10:53', 0, NULL, 0, NULL, 1),
(31893, 24536, '1', 'V.O.C Higher secondary school ', '', '', '2017', 93.00, '', 1, '2025-03-21 06:11:28', 0, NULL, 0, NULL, 1),
(31894, 24537, '3', 'Anna university ', '', 'BE ECE', '2016', 68.00, '', 1, '2025-03-21 06:42:51', 0, NULL, 0, NULL, 1),
(31895, 24538, '3', 'Madras University ', '', 'B.com', '2020', 60.00, '', 1, '2025-03-21 06:58:51', 0, NULL, 0, NULL, 1),
(31896, 24540, '3', 'Madras University ', '', 'BBA', '2024', 70.00, '', 1, '2025-03-21 01:37:52', 0, NULL, 0, NULL, 1),
(31897, 24541, '3', 'M.A.M School of engineering ', '', 'BE ', '2024', 7.00, '', 1, '2025-03-21 05:04:11', 0, NULL, 0, NULL, 1),
(31898, 24542, '3', 'Bharthiethasan University ', '', 'Bachelor of Computer Application ', '2024', 70.50, '', 1, '2025-03-22 04:27:35', 0, NULL, 0, NULL, 1),
(31899, 24543, '3', 'Autonomous ', '', 'Bsc physics ', '2024', 62.00, '', 1, '2025-03-22 05:04:28', 0, NULL, 0, NULL, 1),
(31900, 24544, '3', 'Anna University ', '', 'BE', '2024', 66.00, '', 1, '2025-03-22 09:41:01', 0, NULL, 0, NULL, 1),
(31901, 24548, '3', 'Anna University ', '', 'B.E ECE', '2023', 70.00, '', 1, '2025-03-24 05:29:26', 0, NULL, 0, NULL, 1),
(31902, 24548, '5', 'Anna University ', '', 'D.ECE', '2020', 80.00, '', 1, '2025-03-24 05:30:11', 0, NULL, 0, NULL, 1),
(31903, 24548, '2', 'Anna University ', '', '', '2018', 53.00, '', 1, '2025-03-24 05:30:33', 0, NULL, 0, NULL, 1),
(31904, 24548, '1', 'Anna University ', '', '', '2016', 82.00, '', 1, '2025-03-24 05:30:53', 0, NULL, 0, NULL, 1),
(31905, 24546, '3', 'Apollo engineering college ', '', 'Bachelor of engineering in aeronautical', '2024', 7.85, '', 1, '2025-03-24 06:32:28', 0, NULL, 0, NULL, 1),
(31906, 24550, '3', 'Gurunanak college ', '', 'Ba(Eco)', '2019', 70.00, '', 1, '2025-03-24 07:00:29', 0, NULL, 0, NULL, 1),
(31907, 24553, '4', 'Madras University ', '', 'M.com', '2024', 72.00, '', 1, '2025-03-24 07:52:35', 0, NULL, 0, NULL, 1),
(31908, 24552, '3', 'Deemed University ', '', 'B.Tech', '2022', 80.00, '', 1, '2025-03-24 07:52:40', 0, NULL, 0, NULL, 1),
(31909, 24547, '4', 'SRM University ', '', 'MSC IT ', '2023', 8.03, '', 1, '2025-03-24 08:26:45', 0, NULL, 0, NULL, 1),
(31910, 24555, '3', 'Anna University ', '', 'Be', '2020', 62.00, '', 1, '2025-03-24 03:00:54', 0, NULL, 0, NULL, 1),
(31911, 24557, '4', 'Sri Krishna Arts and science college ', '', 'M com ', '2021', 90.00, '', 1, '2025-03-25 04:41:50', 0, NULL, 0, NULL, 1),
(31912, 24556, '3', 'bharathidan university ', '', 'bsc', '2019', 68.00, '', 1, '2025-03-25 04:53:47', 0, NULL, 0, NULL, 1),
(31913, 24558, '5', 'Annamalai University ', '', 'Diploma in visual Effects ', '2020', 86.00, '', 1, '2025-03-25 04:58:37', 0, NULL, 0, NULL, 1),
(31914, 24560, '3', 'JNTUA ', '', 'BTECH', '2019', 71.00, '', 1, '2025-03-25 05:05:44', 0, NULL, 0, NULL, 1),
(31915, 24559, '3', 'S.V university, Tirupati ', '', 'Bsc computer science ', '2022', 77.00, '', 1, '2025-03-25 05:12:04', 0, NULL, 0, NULL, 1),
(31916, 24561, '3', 'Justice BASHEER AHMED SAYEED COLLEGE FOR WOMEN ', '', 'B.com', '2024', 73.00, '', 1, '2025-03-25 05:19:47', 0, NULL, 0, NULL, 1),
(31917, 24563, '4', 'Madras University ', '', 'MA -ECONOMICS ', '2024', 72.00, '', 1, '2025-03-25 05:41:48', 0, NULL, 0, NULL, 1),
(31918, 24563, '4', 'Madras University ', '', 'MA Economics ', '2024', 72.00, '', 1, '2025-03-25 05:42:30', 0, NULL, 0, NULL, 1),
(31919, 24564, '3', 'Madras University ', '', 'Ba economics ', '2022', 58.00, '', 1, '2025-03-25 05:50:43', 0, NULL, 0, NULL, 1),
(31920, 24562, '3', 'Periyar maniammai', '', 'Bcom', '2024', 65.00, '', 1, '2025-03-25 05:52:01', 0, NULL, 0, NULL, 1),
(31921, 24565, '5', 'Kuvempu university ', '', 'Bsc', '2022', 71.00, '', 1, '2025-03-25 06:01:08', 0, NULL, 0, NULL, 1),
(31922, 24566, '3', 'Thiruvalluvar University ', '', 'B sc physical education ', '2023', 75.00, '', 1, '2025-03-25 06:16:53', 0, NULL, 0, NULL, 1),
(31923, 24567, '4', 'Anna university', '', 'MCA', '2024', 8.01, '', 1, '2025-03-25 06:18:54', 0, NULL, 0, NULL, 1),
(31924, 24568, '4', 'Anna university', '', 'MCA', '2024', 6.70, '', 1, '2025-03-25 06:18:57', 0, NULL, 0, NULL, 1),
(31925, 24554, '4', 'Madras University ', '', 'MCA -Computer Application ', '2024', 80.00, '', 1, '2025-03-25 06:42:05', 0, NULL, 0, NULL, 1),
(31926, 24570, '4', 'Bharathidasan university ', '', 'Mcom ', '2019', 65.00, '', 1, '2025-03-25 09:10:45', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(31927, 24571, '3', 'Anna university ', '', 'B.E', '2024', 8.39, '', 1, '2025-03-26 04:47:46', 0, NULL, 0, NULL, 1),
(31928, 24572, '3', 'Madras University ', '', 'B.sc physics with ca', '2020', 80.00, '', 1, '2025-03-26 05:09:11', 0, NULL, 0, NULL, 1),
(31929, 24573, '3', 'Indian institute of planning management ', '', 'Bba', '2014', 70.00, '', 1, '2025-03-26 05:26:54', 0, NULL, 0, NULL, 1),
(31930, 24574, '3', 'Justice Basher Ahmed Sayed College for women', '', 'ba Economic ', '2023', 85.00, '', 1, '2025-03-26 05:55:06', 0, NULL, 0, NULL, 1),
(31931, 24575, '2', 'DMS', '', '5year', '2020', 60.00, '', 1, '2025-03-26 08:08:49', 0, NULL, 0, NULL, 1),
(31932, 24577, '3', 'Visvesvaraya technological University ', '', 'B.E', '2023', 65.00, '', 1, '2025-03-27 06:01:00', 0, NULL, 0, NULL, 1),
(31933, 24579, '3', 'madras university', '', 'bsc computer science', '2023', 72.00, '', 1, '2025-03-27 06:03:24', 0, NULL, 0, NULL, 1),
(31934, 24578, '3', 'Anna University ', '', 'BE', '2020', 80.00, '', 1, '2025-03-27 06:03:48', 0, NULL, 0, NULL, 1),
(31935, 24581, '3', 'Anna university ', '', 'Bachelor of engineering ', '2016', 66.60, '', 1, '2025-03-27 06:55:06', 0, NULL, 0, NULL, 1),
(31936, 24582, '3', 'Madras University ', '', 'B.a economics ', '2020', 65.00, '', 1, '2025-03-28 09:20:13', 0, NULL, 0, NULL, 1),
(31937, 24584, '3', 'Anna University', '', 'B.E/Computer science and Engineering', '2023', 71.00, '', 1, '2025-03-28 01:14:22', 0, NULL, 0, NULL, 1),
(31938, 24585, '4', 'Amity University ', '', 'MBA HR', '2022', 8.77, '', 1, '2025-03-28 01:18:44', 0, NULL, 0, NULL, 1),
(31939, 24585, '3', 'Bishop heber college ', '', 'Bsc actuarial science', '2019', 8.93, '', 1, '2025-03-28 01:19:22', 0, NULL, 0, NULL, 1),
(31940, 24586, '3', 'Madras University ', '', 'B.A economics ', '2023', 80.00, '', 1, '2025-03-29 05:12:13', 0, NULL, 0, NULL, 1),
(31941, 24587, '3', 'Madras University ', '', 'B.com', '2024', 60.00, '', 1, '2025-03-29 05:54:00', 0, NULL, 0, NULL, 1),
(31942, 24588, '3', 'University ', '', 'BE', '2023', 73.00, '', 1, '2025-03-29 06:46:55', 0, NULL, 0, NULL, 1),
(31943, 24589, '5', 'brilliant iti', '', 'automobile engineering', '2021', 80.00, '', 1, '2025-03-29 07:08:20', 0, NULL, 0, NULL, 1),
(31944, 24590, '2', 'State board', '', '', '2022', 78.00, '', 1, '2025-03-29 07:10:35', 0, NULL, 0, NULL, 1),
(31945, 24591, '4', 'AAM b\'school ', '', 'MBA marketing ', '2024', 72.00, '', 1, '2025-03-29 07:52:44', 0, NULL, 0, NULL, 1),
(31946, 24592, '3', 'Periyar University ', '', 'B Sc Psychology ', '2024', 73.50, '', 1, '2025-03-29 07:54:24', 1, '2025-03-29 07:56:16', 0, NULL, 1),
(31947, 24592, '1', 'State board ', '', '', '2019', 83.00, '', 1, '2025-03-29 07:57:07', 0, NULL, 0, NULL, 1),
(31948, 24592, '2', 'State board ', '', '', '2021', 89.50, '', 1, '2025-03-29 07:57:40', 0, NULL, 0, NULL, 1),
(31949, 24593, '5', 'Vsvn', '', 'Plastic technology ', '2021', 60.00, '', 1, '2025-03-29 09:47:25', 0, NULL, 0, NULL, 1),
(31950, 24594, '4', 'St Joseph college of engineering ', '', '', '2023', 7.40, '', 1, '2025-03-29 01:02:12', 0, NULL, 0, NULL, 1),
(31951, 24596, '3', 'parks  atrs and science college  autonomous ', '', 'b.com', '2020', 70.00, '', 1, '2025-03-31 04:39:03', 0, NULL, 0, NULL, 1),
(31952, 24595, '3', 'University', '', 'B. Sc plant biology & plant biotechnology', '2025', 75.00, '', 1, '2025-03-31 04:41:49', 0, NULL, 0, NULL, 1),
(31953, 24597, '3', 'Anna University ', '', 'B.E', '2025', 8.11, '', 1, '2025-03-31 04:55:25', 0, NULL, 0, NULL, 1),
(31954, 24598, '5', 'sri nallalaghu poltechnic college', '', 'dME', '2020', 64.00, '', 154, '2025-03-31 10:52:14', 0, NULL, 0, NULL, 1),
(31955, 24599, '4', 'University ', '', 'M.com CA', '2023', 69.00, '', 1, '2025-03-31 05:44:00', 0, NULL, 0, NULL, 1),
(31956, 24601, '3', 'Goverment college for women', '', 'B.sc maths', '2022', 90.00, '', 1, '2025-03-31 06:09:12', 0, NULL, 0, NULL, 1),
(31957, 24600, '4', 'The new college', '', 'BA. Sociology', '2022', 70.00, '', 1, '2025-03-31 06:12:03', 0, NULL, 0, NULL, 1),
(31958, 24600, '4', 'The new college', '', 'BA. Sociology', '2022', 70.00, '', 1, '2025-03-31 06:12:52', 1, '2025-03-31 06:12:57', 0, NULL, 0),
(31959, 24602, '3', 'Autonomous ', '', 'B.com( corporate secretary ship)', '2018', 69.50, '', 1, '2025-03-31 06:38:48', 0, NULL, 0, NULL, 1),
(31960, 24603, '3', 'Anna university ', '', 'B.tech', '2016', 75.00, '', 1, '2025-03-31 07:46:08', 0, NULL, 0, NULL, 1),
(31961, 24607, '3', 'Madras University ', '', 'B.com', '2024', 50.00, '', 1, '2025-04-01 04:51:25', 0, NULL, 0, NULL, 1),
(31962, 24609, '3', 'UNIVERSITY ', '', 'BA ECO', '2022', 60.00, '', 1, '2025-04-01 05:06:07', 0, NULL, 0, NULL, 1),
(31963, 24608, '3', 'University of medras ', '', 'B.com', '2019', 60.00, '', 1, '2025-04-01 05:09:20', 0, NULL, 0, NULL, 1),
(31964, 24610, '5', 'Gathi community college ', '', 'ADMLT', '2021', 80.00, '', 1, '2025-04-01 05:51:24', 0, NULL, 0, NULL, 1),
(31965, 24611, '1', 'State board', '', '', '2019', 67.00, '', 1, '2025-04-01 06:18:39', 0, NULL, 0, NULL, 1),
(31966, 24614, '3', 'Periyar University ', '', 'B.com', '2024', 70.00, '', 1, '2025-04-01 06:19:11', 0, NULL, 0, NULL, 1),
(31967, 24612, '3', 'Periyar university', '', 'B com', '2024', 69.00, '', 1, '2025-04-01 06:21:12', 0, NULL, 0, NULL, 1),
(31968, 24616, '3', 'periyar   university', '', 'b com', '2024', 69.00, '', 1, '2025-04-01 06:21:14', 0, NULL, 0, NULL, 1),
(31969, 24613, '3', 'Sri Vasavi college self finance wing', '', 'B.com ca', '2022', 70.00, '', 1, '2025-04-01 06:22:18', 0, NULL, 0, NULL, 1),
(31970, 24613, '2', 'Arulneri thiru pani mandram', '', '', '2020', 67.00, '', 1, '2025-04-01 06:23:07', 0, NULL, 0, NULL, 1),
(31971, 24613, '1', 'Sengunthar hr secondary school', '', '', '2019', 71.00, '', 1, '2025-04-01 06:24:14', 0, NULL, 0, NULL, 1),
(31972, 24615, '3', 'Periyar university ', '', '', '2024', 75.00, '', 1, '2025-04-01 06:24:22', 0, NULL, 0, NULL, 1),
(31973, 24619, '3', 'Periyar University ', '', 'B.Com', '2024', 65.00, '', 1, '2025-04-01 06:24:49', 0, NULL, 0, NULL, 1),
(31974, 24618, '3', 'Periyar University ', '', 'B.com', '2024', 69.00, '', 1, '2025-04-01 06:25:28', 0, NULL, 0, NULL, 1),
(31975, 24617, '3', 'periyar University ', '', 'B a tamil', '2024', 67.00, '', 1, '2025-04-01 06:33:25', 0, NULL, 0, NULL, 1),
(31976, 24620, '1', 'Maria Matriculation Higher Secondary School ', '', '', '2018', 65.00, '', 1, '2025-04-01 06:36:25', 0, NULL, 0, NULL, 1),
(31977, 24620, '2', 'Maria Matriculation Higher Secondary School ', '', '', '2020', 45.00, '', 1, '2025-04-01 06:37:12', 0, NULL, 0, NULL, 1),
(31978, 24620, '3', 'Dr.M.G.R Janaki Arts And Science College For Womens ', '', 'B.Sc Computer science ', '2023', 81.00, '', 1, '2025-04-01 06:37:56', 0, NULL, 0, NULL, 1),
(31979, 24621, '3', 'THIRUVALLUR UNIVERSITY ', '', 'BA HISTORY ', '2019', 68.00, '', 1, '2025-04-01 07:29:27', 0, NULL, 0, NULL, 1),
(31980, 24623, '3', 'University of Madras ', '', 'Bsc computer science ', '2022', 67.00, '', 1, '2025-04-02 04:02:55', 0, NULL, 0, NULL, 1),
(31981, 24624, '3', 'Thiruvalluvar University College of  arts and science', '', 'B.sc Mathematics', '2021', 7.75, '', 1, '2025-04-02 05:14:38', 0, NULL, 0, NULL, 1),
(31982, 24625, '1', 'board', '', '', '2023', 62.00, '', 1, '2025-04-02 05:22:28', 0, NULL, 0, NULL, 1),
(31983, 24626, '3', 'Bangalore University ', '', 'Bcom', '2024', 65.00, '', 1, '2025-04-02 06:23:12', 154, '2025-04-02 11:59:20', 0, NULL, 1),
(31984, 24627, '3', 'Madrasa university ', '', 'Bca', '2024', 70.00, '', 1, '2025-04-02 06:27:37', 1, '2025-04-02 06:29:18', 0, NULL, 0),
(31985, 24629, '3', 'Tmg college of arts and science ', '', 'Bca', '2024', 70.00, '', 1, '2025-04-02 06:29:16', 0, NULL, 0, NULL, 1),
(31986, 24627, '3', 'Madrasa university ', '', 'Bca', '2024', 60.00, '', 1, '2025-04-02 06:29:56', 0, NULL, 0, NULL, 1),
(31987, 24628, '3', 'Tmg college of arts and science ', '', 'Bca', '2024', 67.00, '', 1, '2025-04-02 06:32:24', 0, NULL, 0, NULL, 1),
(31988, 24604, '3', 'Madras university ', '', 'BA Tourism ', '2021', 75.00, '', 1, '2025-04-02 06:54:04', 1, '2025-04-02 06:54:29', 0, NULL, 1),
(31989, 24631, '4', 'Madras university', '', 'MBA', '2023', 75.00, '', 1, '2025-04-02 06:55:00', 0, NULL, 0, NULL, 1),
(31990, 24631, '3', 'Jbas college', '', 'B. Com', '2017', 64.00, '', 1, '2025-04-02 06:55:48', 0, NULL, 0, NULL, 1),
(31991, 24632, '3', 'Madras University ', '', 'Bcom corporate secretary ship', '2021', 75.00, '', 1, '2025-04-02 07:04:41', 0, NULL, 0, NULL, 1),
(31992, 24630, '3', 'Bharathidhasan ', '', 'B.com computer application ', '2024', 65.00, '', 1, '2025-04-02 07:14:32', 0, NULL, 0, NULL, 1),
(31993, 24633, '5', 'Directorate Of Technical  Education', '', 'Computer science', '2020', 87.42, '', 1, '2025-04-02 08:01:50', 0, NULL, 0, NULL, 1),
(31994, 24636, '3', 'PT LEE CHENGALVARAYA NAICKER COLLEGE OF ENGENEERINHHG', '', 'BCA', '2021', 7.59, '', 154, '2025-04-02 03:00:09', 0, NULL, 0, NULL, 1),
(31995, 19653, '3', 'Bharadhidasan university', '', 'BBA', '2019', 75.00, '', 1, '2025-04-02 09:38:06', 0, NULL, 0, NULL, 1),
(31996, 24635, '3', 'Madras university ', '', 'B.com (A/F)', '2021', 69.00, '', 1, '2025-04-02 09:47:17', 0, NULL, 0, NULL, 1),
(31997, 24637, '3', 'Sindhi college of arts and science', '', 'B com corporate ', '2020', 68.00, '', 1, '2025-04-02 01:03:41', 0, NULL, 0, NULL, 1),
(31998, 24637, '2', 'Valliammal matric higher school ', '', '', '2017', 51.00, '', 1, '2025-04-02 01:06:06', 0, NULL, 0, NULL, 1),
(31999, 24637, '1', 'Valliammal matric higher school ', '', '', '2015', 68.00, '', 1, '2025-04-02 01:06:34', 0, NULL, 0, NULL, 1),
(32000, 24640, '3', 'Bharathidasan university ', '', 'BCA (computer Application)', '2019', 73.00, '', 1, '2025-04-03 04:26:03', 0, NULL, 0, NULL, 1),
(32001, 24641, '3', 'Saveetha university ', '', 'B. E', '2023', 85.70, '', 1, '2025-04-03 04:38:43', 0, NULL, 0, NULL, 1),
(32002, 24642, '3', 'Bharathidhasan university', '', 'Bsc', '2022', 88.00, '', 1, '2025-04-03 05:13:32', 0, NULL, 0, NULL, 1),
(32003, 24638, '3', 'Madras university', '', 'Bca', '2016', 72.00, '', 1, '2025-04-03 06:11:34', 0, NULL, 0, NULL, 1),
(32004, 24643, '3', 'University ', '', 'B tech', '2025', 7.50, '', 1, '2025-04-03 06:15:36', 0, NULL, 0, NULL, 1),
(32005, 24646, '3', 'Sri sankara college of arts and science', '', 'B.sc Bio chemistry', '2018', 76.00, '', 1, '2025-04-03 09:21:31', 0, NULL, 0, NULL, 1),
(32006, 24647, '3', 'Madras university ', '', 'B.a.tourism and travel management ', '2018', 50.00, '', 1, '2025-04-03 09:21:46', 0, NULL, 0, NULL, 1),
(32007, 24645, '3', 'University of Madras ', '', 'B.A Economic ', '2025', 55.00, '', 1, '2025-04-03 09:22:18', 0, NULL, 0, NULL, 1),
(32008, 24639, '1', 'Chennai higher secondary school thiruvanmiyur ', '', '', '2021', 68.00, '', 1, '2025-04-03 09:25:08', 0, NULL, 0, NULL, 1),
(32009, 24648, '3', 'Am jain college', '', 'B. Com', '2018', 87.00, '', 1, '2025-04-03 11:31:30', 0, NULL, 0, NULL, 1),
(32010, 24649, '4', 'Gandhigram Rural Institute - Deemed to be University, Gandhigram ', '', 'MBA', '2024', 67.33, '', 1, '2025-04-03 02:00:47', 0, NULL, 0, NULL, 1),
(32011, 24644, '3', 'Bharathi arts and science college ', '', 'B. Com', '2021', 70.00, '', 1, '2025-04-03 05:09:32', 0, NULL, 0, NULL, 1),
(32012, 24650, '3', 'madras university', '', 'bca', '2022', 60.00, '', 1, '2025-04-04 05:53:47', 0, NULL, 0, NULL, 1),
(32013, 24651, '1', 'Tamilnadu state board', '', '', '2016', 88.00, '', 1, '2025-04-04 06:43:59', 0, NULL, 0, NULL, 1),
(32014, 24651, '2', 'Tamilnadu state board', '', '', '2018', 70.00, '', 1, '2025-04-04 06:44:18', 0, NULL, 0, NULL, 1),
(32015, 24651, '3', 'Bharathidasan university ', '', 'Physics', '2021', 88.00, '', 1, '2025-04-04 06:44:44', 0, NULL, 0, NULL, 1),
(32016, 24651, '4', 'Bharathidasan university ', '', 'M.sc physics', '2023', 83.00, '', 1, '2025-04-04 06:45:09', 0, NULL, 0, NULL, 1),
(32017, 24652, '3', 'Anna University ', '', '', '2019', 76.00, '', 1, '2025-04-04 09:10:03', 0, NULL, 0, NULL, 1),
(32018, 24652, '4', 'Anna University ', '', '', '2022', 70.00, '', 1, '2025-04-04 09:12:41', 0, NULL, 0, NULL, 1),
(32019, 24653, '3', 'university', '', 'b a sociology', '2024', 50.00, '', 1, '2025-04-04 09:55:33', 0, NULL, 0, NULL, 1),
(32020, 24654, '3', 'Ms University ', '', 'BCA', '2018', 48.00, '', 1, '2025-04-04 09:56:39', 0, NULL, 0, NULL, 1),
(32021, 24655, '3', 'The Madura Autonomous College ', '', 'Mathematics ', '2022', 80.00, '', 1, '2025-04-04 10:54:24', 0, NULL, 0, NULL, 1),
(32022, 24655, '2', 'Nirmala Girls Hr Sec School ', '', '', '2019', 70.00, '', 1, '2025-04-04 10:55:08', 0, NULL, 0, NULL, 1),
(32023, 24655, '1', 'Nirmala Girls Hr Sec School ', '', '', '2017', 88.00, '', 1, '2025-04-04 10:55:33', 0, NULL, 0, NULL, 1),
(32024, 24656, '3', 'Anna University ', '', 'B.E', '2023', 85.00, '', 1, '2025-04-04 11:08:38', 0, NULL, 0, NULL, 1),
(32025, 24657, '3', 'Anna University ', '', 'B.E', '2024', 8.70, '', 1, '2025-04-05 04:20:43', 0, NULL, 0, NULL, 1),
(32026, 24661, '3', 'Dema', '', 'BE computer science and engineering ', '2024', 8.30, '', 1, '2025-04-07 04:38:40', 0, NULL, 0, NULL, 1),
(32027, 24659, '4', 'Indian Maritime University ', '', 'B.Tech', '2020', 78.00, '', 1, '2025-04-07 05:28:08', 0, NULL, 0, NULL, 1),
(32028, 24663, '3', 'Government Arts and Science College For Women ', '', 'BSc Computer science ', '2024', 8.20, '', 1, '2025-04-07 05:33:44', 0, NULL, 0, NULL, 1),
(32029, 24663, '2', 'Dhava Amutham Matric Higher secondary school ', '', '', '2021', 86.00, '', 1, '2025-04-07 05:34:38', 0, NULL, 0, NULL, 1),
(32030, 24662, '1', 'State Board ', '', '', '2018', 83.40, '', 1, '2025-04-07 05:35:14', 0, NULL, 0, NULL, 1),
(32031, 24662, '2', 'State Board ', '', '', '2020', 65.00, '', 1, '2025-04-07 05:36:04', 0, NULL, 0, NULL, 1),
(32032, 24663, '1', 'Fathima girls higher secondary school ', '', '', '2019', 74.00, '', 1, '2025-04-07 05:36:04', 0, NULL, 0, NULL, 1),
(32033, 24662, '3', 'Madras University ', '', 'Bsc computer Science ', '2023', 86.00, '', 1, '2025-04-07 05:37:42', 0, NULL, 0, NULL, 1),
(32034, 24664, '2', 'Tamilnadu State Board ', '', '', '2018', 70.00, '', 1, '2025-04-07 05:38:48', 0, NULL, 0, NULL, 1),
(32035, 24664, '1', 'Tamilnadu State Board ', '', '', '2016', 75.00, '', 1, '2025-04-07 05:39:11', 0, NULL, 0, NULL, 1),
(32036, 24664, '3', 'Anna University ', '', 'Bachelors of Engineering ', '2022', 77.00, '', 1, '2025-04-07 05:39:48', 0, NULL, 0, NULL, 1),
(32037, 24665, '3', 'Madras University ', '', 'BBA', '2023', 70.00, '', 1, '2025-04-07 05:51:19', 0, NULL, 0, NULL, 1),
(32038, 24669, '5', 'Dote', '', 'Nil', '2019', 64.00, '', 1, '2025-04-07 06:13:43', 0, NULL, 0, NULL, 1),
(32039, 24670, '1', 'State board', '', '', '2019', 77.00, '', 1, '2025-04-07 06:45:26', 0, NULL, 0, NULL, 1),
(32040, 24672, '3', 'Periyar University dharmapuri ', '', 'Bsc Viscom ', '2023', 78.00, '', 1, '2025-04-07 08:52:25', 0, NULL, 0, NULL, 1),
(32041, 24673, '3', 'Anna university ', '', 'B.tech', '2025', 8.40, '', 1, '2025-04-07 08:57:04', 0, NULL, 0, NULL, 1),
(32042, 24674, '3', 'Anna university ', '', 'B.Tech', '2025', 8.40, '', 1, '2025-04-07 09:00:00', 0, NULL, 0, NULL, 1),
(32043, 24675, '3', 'Anna University ', '', 'B.Tech', '2025', 8.20, '', 1, '2025-04-07 09:01:36', 0, NULL, 0, NULL, 1),
(32044, 24671, '3', 'Board', '', 'B.E ECE', '2023', 72.00, '', 1, '2025-04-07 09:58:52', 0, NULL, 0, NULL, 1),
(32045, 24677, '1', 'Carmel convent High school ', '', '', '2023', 65.00, '', 1, '2025-04-07 10:05:58', 1, '2025-04-07 10:06:51', 0, NULL, 0),
(32046, 24677, '1', 'Carmel convent High school ', '', '', '2023', 65.00, '', 1, '2025-04-07 10:07:25', 0, NULL, 0, NULL, 1),
(32047, 24678, '3', 'University of madras ', '', 'Bsc maths', '2021', 65.00, '', 1, '2025-04-07 10:48:23', 0, NULL, 0, NULL, 1),
(32048, 24678, '2', 'State board', '', '', '2018', 80.00, '', 1, '2025-04-07 10:48:47', 0, NULL, 0, NULL, 1),
(32049, 24678, '1', 'State board ', '', '', '2016', 75.00, '', 1, '2025-04-07 10:49:06', 0, NULL, 0, NULL, 1),
(32050, 24679, '3', 'Anna University ', '', 'BE', '2021', 75.00, '', 1, '2025-04-07 12:12:53', 0, NULL, 0, NULL, 1),
(32051, 24622, '3', 'Prist university', '', 'BCA', '2024', 78.00, '', 1, '2025-04-08 06:21:27', 0, NULL, 0, NULL, 1),
(32052, 24682, '3', 'Bharathithasan', '', 'B. Com', '2021', 65.00, '', 1, '2025-04-08 06:32:07', 0, NULL, 0, NULL, 1),
(32053, 24683, '3', 'quaid e millath college for men', '', ' BCOM', '2024', 80.00, '', 154, '2025-04-08 12:04:15', 0, NULL, 0, NULL, 1),
(32054, 24684, '4', 'Periyar maniammai unversity ', '', 'MSC', '2023', 70.00, '', 1, '2025-04-08 07:20:18', 0, NULL, 0, NULL, 1),
(32055, 24685, '3', 'Bharathiyar University ', '', 'BCA (Bachelor of Computer Applications)', '2022', 60.00, '', 1, '2025-04-08 07:58:49', 0, NULL, 0, NULL, 1),
(32056, 24686, '3', 'Anna university ', '', 'BE ', '2025', 6.18, '', 1, '2025-04-08 09:14:52', 1, '2025-04-08 09:16:45', 0, NULL, 0),
(32057, 24686, '3', 'Anna university ', '', 'BE', '2018', 6.18, '', 1, '2025-04-08 09:23:00', 0, NULL, 0, NULL, 1),
(32058, 24687, '2', 'State board ', '', '', '2024', 61.00, '', 1, '2025-04-08 09:29:56', 0, NULL, 0, NULL, 1),
(32059, 24691, '3', 'bharathiar university ', '', 'B.A public administration ', '2022', 70.00, '', 1, '2025-04-09 05:11:46', 0, NULL, 0, NULL, 1),
(32060, 24694, '3', 'Anna  University', '', 'BE MECHANICAL', '2020', 60.00, '', 154, '2025-04-09 12:13:12', 0, NULL, 0, NULL, 1),
(32061, 24693, '3', 'University of madras ', '', 'B.com accounting and finance ', '2025', 70.00, '', 1, '2025-04-09 06:45:25', 0, NULL, 0, NULL, 1),
(32062, 24695, '4', 'Thiruvalluvar university ', '', 'MBA ., PGDLM', '2023', 70.00, '', 1, '2025-04-09 09:14:42', 0, NULL, 0, NULL, 1),
(32063, 24696, '5', 'Sri muthalamman polytechnic college ', '', '', '2017', 71.00, '', 1, '2025-04-09 09:48:35', 0, NULL, 0, NULL, 1),
(32064, 24699, '3', 'Davanagere university', '', 'B com', '2023', 63.63, '', 1, '2025-04-09 09:48:48', 0, NULL, 0, NULL, 1),
(32065, 24698, '3', 'Annamalai university ', '', 'B.sc(hons) Agriculture ', '2023', 8.05, '', 1, '2025-04-09 09:51:30', 0, NULL, 0, NULL, 1),
(32066, 24697, '3', 'Anna University ', '', 'B.E.COMPUTER SCIENCE ENGINEERING ', '2024', 73.00, '', 1, '2025-04-09 09:51:45', 0, NULL, 0, NULL, 1),
(32067, 24701, '3', 'Anna university ', '', 'BE.,', '2022', 7.91, '', 1, '2025-04-09 01:36:34', 0, NULL, 0, NULL, 1),
(32068, 24703, '3', 'University of madras', '', 'BA English ', '2023', 60.00, '', 1, '2025-04-10 04:57:14', 0, NULL, 0, NULL, 1),
(32069, 24702, '4', 'bharathidasan university', '', 'mba', '2024', 88.00, '', 1, '2025-04-10 04:58:25', 0, NULL, 0, NULL, 1),
(32070, 24704, '3', 'Madras University ', '', 'BBA', '2023', 75.00, '', 1, '2025-04-10 05:26:43', 0, NULL, 0, NULL, 1),
(32071, 24705, '3', 'University of madras', '', 'B.A.Political Science ', '2023', 70.00, '', 1, '2025-04-10 05:30:23', 0, NULL, 0, NULL, 1),
(32072, 24705, '2', 'State board ', '', '', '2020', 60.00, '', 1, '2025-04-10 05:30:51', 0, NULL, 0, NULL, 1),
(32073, 24706, '4', 'vTU', '', 'M C.A', '2022', 68.00, '', 1, '2025-04-10 08:35:58', 0, NULL, 0, NULL, 1),
(32074, 24706, '1', 'State board ', '', '', '2013', 63.50, '', 1, '2025-04-10 08:36:53', 0, NULL, 0, NULL, 1),
(32075, 24706, '2', 'Pre university board', '', '', '2015', 75.00, '', 1, '2025-04-10 08:37:20', 0, NULL, 0, NULL, 1),
(32076, 24706, '3', 'Bangalore University ', '', 'B.C.A', '2018', 75.00, '', 1, '2025-04-10 08:37:51', 0, NULL, 0, NULL, 1),
(32077, 24708, '3', 'Sri Manakula Vinayagar Engineering college ', '', 'B.tech', '2024', 8.02, '', 1, '2025-04-10 09:10:08', 0, NULL, 0, NULL, 1),
(32078, 24708, '2', 'State board ', '', '', '2020', 58.00, '', 1, '2025-04-10 09:10:32', 0, NULL, 0, NULL, 1),
(32079, 24708, '1', 'State board ', '', '', '2018', 73.00, '', 1, '2025-04-10 09:10:51', 0, NULL, 0, NULL, 1),
(32080, 24709, '3', 'anna university', '', 'Bachelor of co science ', '2025', 50.00, '', 1, '2025-04-10 10:51:34', 0, NULL, 0, NULL, 1),
(32081, 24709, '5', 'anna university', '', 'computer science', '2017', 76.00, '', 1, '2025-04-10 10:53:03', 0, NULL, 0, NULL, 1),
(32082, 24709, '1', 'Private ', '', '', '2014', 67.00, '', 1, '2025-04-10 10:54:00', 0, NULL, 0, NULL, 1),
(32083, 24710, '3', 'Sastra deemed to be a university ', '', 'Bcom', '2024', 6.03, '', 1, '2025-04-10 12:37:39', 0, NULL, 0, NULL, 1),
(32084, 24712, '5', 'bharathiyar university', '', 'bsc apparel and Fashion Designing ', '2024', 88.00, '', 1, '2025-04-10 02:18:05', 0, NULL, 0, NULL, 1),
(32085, 24713, '3', 'Justice Basheer Ahmed Sayeed College For Women', '', 'B.com General ', '2025', 75.00, '', 1, '2025-04-11 05:46:13', 0, NULL, 0, NULL, 1),
(32086, 24714, '3', 'Madras university', '', 'Ba', '2023', 78.00, '', 1, '2025-04-11 05:51:14', 0, NULL, 0, NULL, 1),
(32087, 24716, '3', 'Anna University ', '', 'BE', '2022', 7.80, '', 1, '2025-04-11 05:59:26', 0, NULL, 0, NULL, 1),
(32088, 24715, '5', 'Chennai Dote', '', 'Diploma computer engineering ', '2023', 83.00, '', 1, '2025-04-11 06:02:24', 0, NULL, 0, NULL, 1),
(32089, 24717, '4', 'Periyar University ', '', 'M.A.,B.ED', '2019', 83.00, '', 1, '2025-04-11 06:30:51', 0, NULL, 0, NULL, 1),
(32090, 24718, '3', 'Anna University ', '', 'BE', '2021', 7.45, '', 1, '2025-04-11 12:52:31', 0, NULL, 0, NULL, 1),
(32091, 24719, '3', 'Madras university', '', 'Bsc computer science', '2023', 69.00, '', 1, '2025-04-12 02:29:22', 0, NULL, 0, NULL, 1),
(32092, 24721, '4', 'Annamalai University ', '', 'MBA financial management ', '2022', 75.40, '', 1, '2025-04-12 05:50:10', 0, NULL, 0, NULL, 1),
(32093, 24720, '3', 'Madras University of Chennai ', '', 'B.com', '2022', 85.00, '', 1, '2025-04-12 05:54:06', 0, NULL, 0, NULL, 1),
(32094, 24723, '3', 'VTU', '', 'MCA', '2022', 68.00, '', 154, '2025-04-12 01:08:57', 0, NULL, 0, NULL, 1),
(32095, 24722, '3', 'Alagappa University ', '', 'BCA', '2022', 76.00, '', 1, '2025-04-12 07:39:53', 0, NULL, 0, NULL, 1),
(32096, 24722, '2', 'Naziya Matriculation Higher Secondary school ', '', '', '2019', 60.00, '', 1, '2025-04-12 07:40:40', 0, NULL, 0, NULL, 1),
(32097, 24722, '1', 'Naziya Matriculation Higher Secondary school ', '', '', '2017', 82.00, '', 1, '2025-04-12 07:41:17', 0, NULL, 0, NULL, 1),
(32098, 24725, '3', 'PACHIYAPPAS COLLEGE', '', ' B COM', '2018', 60.00, '', 154, '2025-04-12 03:10:03', 0, NULL, 0, NULL, 1),
(32099, 24727, '3', 'anna university', '', 'bba', '2023', 60.20, '', 1, '2025-04-15 05:15:06', 0, NULL, 0, NULL, 1),
(32100, 24728, '3', 'Madras University ', '', 'BA', '2016', 63.00, '', 1, '2025-04-15 06:02:54', 0, NULL, 0, NULL, 1),
(32101, 24729, '2', 'SSC ', '', '', '2015', 50.00, '', 1, '2025-04-15 06:50:04', 0, NULL, 0, NULL, 1),
(32102, 24729, '1', 'Pallavi progressive high school ', '', '', '2014', 60.00, '', 1, '2025-04-15 06:51:43', 0, NULL, 0, NULL, 1),
(32103, 24730, '3', 'anna University ', '', 'be', '2020', 6.90, '', 1, '2025-04-15 07:44:35', 0, NULL, 0, NULL, 1),
(32104, 24733, '3', 'Bharathidasan university ', '', 'B.com', '2023', 88.00, '', 1, '2025-04-16 04:42:41', 0, NULL, 0, NULL, 1),
(32105, 24732, '3', 'University of Madras ', '', 'BCA', '2020', 85.00, '', 1, '2025-04-16 04:46:11', 0, NULL, 0, NULL, 1),
(32106, 24732, '4', 'Tamilnadu teachers Education university ', '', 'B.ed', '2022', 96.00, '', 1, '2025-04-16 04:46:58', 0, NULL, 0, NULL, 1),
(32107, 24735, '4', 'Bharathidasan university ', '', 'MA', '2023', 75.00, '', 1, '2025-04-16 04:53:57', 0, NULL, 0, NULL, 1),
(32108, 24736, '3', 'University of Madras ', '', 'BBA', '2024', 78.00, '', 1, '2025-04-16 04:54:21', 0, NULL, 0, NULL, 1),
(32109, 24731, '3', 'University of Madras ', '', 'BBA ', '2024', 75.00, '', 1, '2025-04-16 05:05:47', 0, NULL, 0, NULL, 1),
(32110, 24734, '3', 'bharathidasan university', '', 'ba', '2020', 87.00, '', 1, '2025-04-16 05:08:39', 0, NULL, 0, NULL, 1),
(32111, 24738, '3', 'Kings Engineering college ', '', 'B tech Artificial intelligence and data science ', '2025', 7.20, '', 1, '2025-04-16 05:14:07', 0, NULL, 0, NULL, 1),
(32112, 24739, '3', 'SHREE CHANDRAPRABHU JAIN COLLEGE', '', 'BBA', '2024', 85.00, '', 154, '2025-04-16 10:53:37', 0, NULL, 0, NULL, 1),
(32113, 24740, '3', 'Bharathiyar university ', '', 'B.sc', '2024', 91.00, '', 1, '2025-04-16 08:04:37', 0, NULL, 0, NULL, 1),
(32114, 24741, '3', 'Anna University', '', 'B.E / CSE', '2024', 77.00, '', 1, '2025-04-16 08:46:05', 0, NULL, 0, NULL, 1),
(32115, 24741, '2', 'STATE BOARD', '', '', '2020', 52.30, '', 1, '2025-04-16 08:46:55', 1, '2025-04-16 08:48:09', 0, NULL, 0),
(32116, 24741, '1', 'State board', '', '', '2018', 60.60, '', 1, '2025-04-16 08:47:22', 0, NULL, 0, NULL, 1),
(32117, 24741, '2', 'State board', '', '', '2020', 52.30, '', 1, '2025-04-16 08:48:37', 0, NULL, 0, NULL, 1),
(32118, 24742, '3', 'Women\'s Christian college', '', 'B. Sc computer science & technology ', '2024', 68.00, '', 1, '2025-04-16 09:48:34', 1, '2025-04-16 09:48:40', 0, NULL, 0),
(32119, 24744, '3', 'University ', '', 'B.A.English', '2021', 90.00, '', 1, '2025-04-16 05:09:55', 0, NULL, 0, NULL, 1),
(32120, 24746, '2', 'MBN girls HR SEC SCHOOL', '', '', '2021', 65.00, '', 154, '2025-04-17 10:56:14', 0, NULL, 0, NULL, 1),
(32121, 24747, '2', 'State board', '', '', '2013', 61.00, '', 1, '2025-04-17 05:41:06', 0, NULL, 0, NULL, 1),
(32122, 24748, '3', 'University of Madras ', '', 'B.com corporate secretaryship ', '2024', 80.00, '', 1, '2025-04-17 06:13:03', 0, NULL, 0, NULL, 1),
(32123, 24749, '3', 'Madras university ', '', 'B.Com (general)', '2025', 55.00, '', 1, '2025-04-17 06:31:22', 0, NULL, 0, NULL, 1),
(32124, 24751, '3', 'SRI THEYAGARAYA COLLEGE', '', 'BBA', '2025', 77.50, '', 154, '2025-04-17 12:20:37', 0, NULL, 0, NULL, 1),
(32125, 24752, '2', 'Board', '', '', '2021', 85.00, '', 1, '2025-04-17 09:14:22', 0, NULL, 0, NULL, 1),
(32126, 24752, '3', 'University', '', 'B. Com general', '2024', 67.29, '', 1, '2025-04-17 09:15:27', 0, NULL, 0, NULL, 1),
(32127, 24753, '3', 'BBA', '', 'BHAKTAVATASALAM COLLEGE', '2020', 74.00, '', 154, '2025-04-17 04:56:08', 0, NULL, 0, NULL, 1),
(32128, 24754, '4', 'Surana College ', '', 'Master of Business Administration ', '2024', 76.00, '', 1, '2025-04-17 11:27:27', 0, NULL, 0, NULL, 1),
(32129, 24754, '3', 'Bangalore University ', '', 'Bachelor of Business Administration ', '2022', 82.00, '', 1, '2025-04-17 11:28:14', 0, NULL, 0, NULL, 1),
(32130, 24756, '3', 'University of Madras ', '', 'B com (computer application)', '2024', 70.00, '', 1, '2025-04-17 04:42:03', 0, NULL, 0, NULL, 1),
(32131, 24757, '1', 'State Board', '', '', '2018', 82.20, '', 1, '2025-04-18 04:57:53', 0, NULL, 0, NULL, 1),
(32132, 24757, '2', 'State Board', '', '', '2020', 69.33, '', 1, '2025-04-18 04:58:37', 0, NULL, 0, NULL, 1),
(32133, 24757, '3', 'Anna University', '', 'B.Tech', '2024', 72.20, '', 1, '2025-04-18 04:59:07', 0, NULL, 0, NULL, 1),
(32134, 24758, '3', 'madars universtiy ', '', 'ba economics', '2025', 70.00, '', 1, '2025-04-18 04:59:37', 0, NULL, 0, NULL, 1),
(32135, 24760, '3', 'anna university', '', 'b.e', '2025', 7.90, '', 1, '2025-04-18 05:00:43', 0, NULL, 0, NULL, 1),
(32136, 24759, '3', 'Madras university', '', 'BA ECONOMICS', '2025', 78.00, '', 1, '2025-04-18 05:02:48', 0, NULL, 0, NULL, 1),
(32137, 24755, '3', 'University ', '', 'B.com ', '2022', 70.00, '', 1, '2025-04-18 05:16:35', 0, NULL, 0, NULL, 1),
(32138, 24761, '4', 'Anna university ', '', 'MBA ', '2023', 75.00, '', 1, '2025-04-18 05:22:16', 0, NULL, 0, NULL, 1),
(32139, 24765, '4', 'BHARATHIDASAN UNIVERSITY ', '', 'M. Com', '2025', 72.00, '', 1, '2025-04-18 05:57:07', 0, NULL, 0, NULL, 1),
(32140, 24763, '4', 'Bharathidasan University ', '', 'M.com', '2025', 70.00, '', 1, '2025-04-18 06:04:49', 0, NULL, 0, NULL, 1),
(32141, 24764, '4', 'Bharathidasan University ', '', 'M.com', '2025', 69.00, '', 1, '2025-04-18 06:19:21', 0, NULL, 0, NULL, 1),
(32142, 24766, '3', 'Autonomous ', '', 'Bachelor of bank management', '2024', 75.00, '', 1, '2025-04-18 06:42:48', 0, NULL, 0, NULL, 1),
(32143, 24768, '2', 'State board ', '', '', '2022', 61.00, '', 1, '2025-04-18 09:24:53', 0, NULL, 0, NULL, 1),
(32144, 24768, '1', 'State board ', '', '', '2019', 57.00, '', 1, '2025-04-18 09:25:31', 0, NULL, 0, NULL, 1),
(32145, 24767, '2', 'National Institute of Open schooling', '', '', '2021', 68.00, '', 1, '2025-04-18 09:25:42', 0, NULL, 0, NULL, 1),
(32146, 24768, '5', 'SRI chakra Maritime college ', '', 'GP RATING ', '2024', 91.00, '', 1, '2025-04-18 09:27:03', 0, NULL, 0, NULL, 1),
(32147, 24771, '3', 'Madras University ', '', 'B.com', '2023', 64.00, '', 1, '2025-04-19 05:53:32', 0, NULL, 0, NULL, 1),
(32148, 24772, '3', 'University', '', 'BSC COMPUTER SCIENCE', '2024', 70.00, '', 1, '2025-04-19 05:55:40', 0, NULL, 0, NULL, 1),
(32149, 24775, '3', 'Anna university ', '', 'B.sc', '2023', 70.00, '', 1, '2025-04-19 05:59:07', 0, NULL, 0, NULL, 1),
(32150, 24774, '3', 'University of Madras', '', 'BBA', '2025', 62.00, '', 1, '2025-04-19 06:21:25', 0, NULL, 0, NULL, 1),
(32151, 24773, '3', 'Madras university', '', 'BBA', '2025', 74.80, '', 1, '2025-04-19 06:24:47', 0, NULL, 0, NULL, 1),
(32152, 24776, '3', 'Madras University ', '', 'BBA', '2025', 60.00, '', 1, '2025-04-19 06:35:50', 0, NULL, 0, NULL, 1),
(32153, 24778, '3', 'board', '', 'business administration', '2024', 73.00, '', 1, '2025-04-19 06:42:33', 0, NULL, 0, NULL, 1),
(32154, 24777, '3', 'Kamarajer university ', '', 'B.A.English literature ', '2021', 50.00, '', 1, '2025-04-19 06:46:35', 0, NULL, 0, NULL, 1),
(32155, 24779, '3', 'Board  ', '', 'BA (corporate economics )', '2020', 70.00, '', 1, '2025-04-19 06:48:15', 0, NULL, 0, NULL, 1),
(32156, 24781, '3', 'Board', '', 'BBA', '2024', 65.00, '', 1, '2025-04-19 06:48:49', 0, NULL, 0, NULL, 1),
(32157, 24782, '4', 'SRM UNIVERSITY ', '', 'MBA', '2025', 84.00, '', 1, '2025-04-19 07:12:16', 1, '2025-04-19 07:14:08', 0, NULL, 1),
(32158, 24782, '3', 'Bharathidasan university ', '', 'B.com ', '2023', 69.00, '', 1, '2025-04-19 07:14:43', 0, NULL, 0, NULL, 1),
(32159, 24780, '3', 'board', '', 'business administration', '2024', 60.00, '', 1, '2025-04-19 07:20:17', 0, NULL, 0, NULL, 1),
(32160, 24784, '3', 'Thiruvalluvar university ', '', 'Bachelor of commerce', '2019', 60.00, '', 1, '2025-04-19 09:02:14', 0, NULL, 0, NULL, 1),
(32161, 24786, '3', 'Medras University ', '', 'B.A.English', '2021', 90.00, '', 1, '2025-04-19 09:20:45', 0, NULL, 0, NULL, 1),
(32162, 24787, '3', 'Madras University ', '', 'B.sc electronic media ', '2024', 78.00, '', 1, '2025-04-20 03:45:06', 0, NULL, 0, NULL, 1),
(32163, 24788, '3', 'Queen Marys', '', 'Bsc', '2025', 70.00, '', 1, '2025-04-21 04:39:52', 0, NULL, 0, NULL, 1),
(32164, 24785, '3', 'University ', '', 'BCA', '2024', 93.00, '', 1, '2025-04-21 04:46:16', 0, NULL, 0, NULL, 1),
(32165, 24790, '3', 'University ', '', 'BCA', '2024', 80.00, '', 1, '2025-04-21 04:53:09', 0, NULL, 0, NULL, 1),
(32166, 24792, '4', 'Anna university ', '', 'MBA', '2025', 8.20, '', 1, '2025-04-21 05:34:05', 0, NULL, 0, NULL, 1),
(32167, 24793, '3', 'Periyar university ', '', 'B.A ENGLISH ', '2022', 85.00, '', 1, '2025-04-21 05:36:07', 0, NULL, 0, NULL, 1),
(32168, 24795, '3', 'Madras University ', '', 'B.com ', '2025', 70.00, '', 1, '2025-04-21 05:54:03', 0, NULL, 0, NULL, 1),
(32169, 24796, '3', 'Madras University ', '', 'B.com general', '2024', 82.00, '', 1, '2025-04-21 05:59:14', 0, NULL, 0, NULL, 1),
(32170, 24797, '5', 'Board ', '', '', '2022', 60.00, '', 1, '2025-04-21 06:09:48', 0, NULL, 0, NULL, 1),
(32171, 24794, '2', 'State board ', '', '', '2016', 63.00, '', 1, '2025-04-21 06:12:32', 0, NULL, 0, NULL, 1),
(32172, 24798, '5', 'aalim mohammed salegh polytechnic college ', '', 'diploma in computer science', '2018', 67.00, '', 1, '2025-04-21 06:48:39', 0, NULL, 0, NULL, 1),
(32173, 24800, '3', 'university', '', 'bsc computer science', '2023', 70.00, '', 1, '2025-04-21 07:03:34', 0, NULL, 0, NULL, 1),
(32174, 24801, '4', 'Anna University ', '', 'Mba', '2024', 87.00, '', 1, '2025-04-21 07:09:38', 0, NULL, 0, NULL, 1),
(32175, 24802, '2', 'sri sankara vishyashramam matriculation higher secondary school', '', '', '2021', 94.00, '', 1, '2025-04-21 07:35:46', 0, NULL, 0, NULL, 1),
(32176, 24802, '3', 'ethiraj college for women', '', 'b.com accounting and finance', '2024', 84.00, '', 1, '2025-04-21 07:36:33', 0, NULL, 0, NULL, 1),
(32177, 24802, '4', 'm.o.p vaishnav college', '', 'm. a human resource managemnet', '2026', 87.00, '', 1, '2025-04-21 07:37:38', 0, NULL, 0, NULL, 1),
(32178, 24803, '3', 'b com CA', '', '', '2025', 60.00, '', 154, '2025-04-21 02:48:07', 0, NULL, 0, NULL, 1),
(32179, 24783, '3', 'Anna University ', '', 'BE mechanical ', '2021', 84.00, '', 1, '2025-04-21 09:45:50', 0, NULL, 0, NULL, 1),
(32180, 24804, '3', 'State board ', '', 'B.com', '2024', 83.00, '', 1, '2025-04-21 10:29:17', 0, NULL, 0, NULL, 1),
(32181, 24805, '3', 'Thiruvalluvar university ', '', 'BBA', '2025', 77.00, '', 1, '2025-04-21 11:12:42', 0, NULL, 0, NULL, 1),
(32182, 24807, '1', 'State board', '', '', '2016', 80.00, '', 1, '2025-04-21 11:13:48', 0, NULL, 0, NULL, 1),
(32183, 24807, '5', 'State technical ', '', 'DCE', '2019', 70.00, '', 1, '2025-04-21 11:14:17', 0, NULL, 0, NULL, 1),
(32184, 24807, '3', 'S. A. Engineering college', '', 'B. E', '2022', 85.00, '', 1, '2025-04-21 11:14:52', 0, NULL, 0, NULL, 1),
(32185, 24806, '3', 'university', '', 'b.com', '2023', 80.00, '', 1, '2025-04-21 11:17:29', 0, NULL, 0, NULL, 1),
(32186, 24811, '4', 'Vels university ', '', 'Be marine', '2021', 75.00, '', 1, '2025-04-22 05:01:08', 0, NULL, 0, NULL, 1),
(32187, 24812, '5', 'RAMYA SATHIANATHAN POLYTECHNIC COLLEGE ', '', 'DME', '2024', 61.00, '', 1, '2025-04-22 05:12:10', 0, NULL, 0, NULL, 1),
(32188, 24814, '2', 'Government Hr sec school Rishivanthiyam ', '', '', '2018', 62.00, '', 1, '2025-04-22 05:26:48', 0, NULL, 0, NULL, 1),
(32189, 24813, '3', 'guru nanak college ', '', 'b.com bank management', '2021', 7.20, '', 1, '2025-04-22 05:30:24', 0, NULL, 0, NULL, 1),
(32190, 24813, '2', 'state board', '', '', '2018', 89.30, '', 1, '2025-04-22 05:34:54', 0, NULL, 0, NULL, 1),
(32191, 24813, '1', 'state board', '', '', '2016', 85.00, '', 1, '2025-04-22 05:35:56', 0, NULL, 0, NULL, 1),
(32192, 24815, '3', 'saveetha uni ', '', 'b.sc biomedical sciences', '2025', 75.00, '', 1, '2025-04-22 05:42:54', 0, NULL, 0, NULL, 1),
(32193, 24818, '4', 'University of madras ', '', 'M. B. A ( Finance) ', '2025', 60.00, '', 1, '2025-04-22 06:47:47', 0, NULL, 0, NULL, 1),
(32194, 24816, '3', 'Aalim muhammed salegh college of engineering ', '', 'B.E ', '2023', 8.20, '', 1, '2025-04-22 07:08:13', 0, NULL, 0, NULL, 1),
(32195, 24819, '5', 'Dote', '', '', '2021', 60.00, '', 1, '2025-04-22 07:16:19', 0, NULL, 0, NULL, 1),
(32196, 24809, '3', 'Bharathidasan ', '', 'BCA', '2021', 72.33, '', 1, '2025-04-22 07:44:08', 0, NULL, 0, NULL, 1),
(32197, 24810, '4', 'Anna University', '', 'BE CSE', '2019', 6.63, '', 1, '2025-04-22 09:51:26', 0, NULL, 0, NULL, 1),
(32198, 24823, '3', 'Anna university', '', 'BE computer science engineering', '2025', 7.50, '', 1, '2025-04-22 11:35:52', 0, NULL, 0, NULL, 1),
(32199, 24824, '5', 'Government Polytechnic College Trichy ', '', 'Diploma in Mechanical Engineering ', '2022', 89.00, '', 1, '2025-04-22 01:34:24', 0, NULL, 0, NULL, 1),
(32200, 24825, '4', 'Anna university', '', 'Mba', '2023', 7.81, '', 1, '2025-04-22 03:16:35', 0, NULL, 0, NULL, 1),
(32201, 24828, '3', 'Bharathidasan University ', '', 'BSc visual communication ', '2019', 76.00, '', 1, '2025-04-23 04:53:37', 0, NULL, 0, NULL, 1),
(32202, 24827, '3', 'Madras University ', '', 'BSC computer science ', '2020', 86.00, '', 1, '2025-04-23 05:00:17', 0, NULL, 0, NULL, 1),
(32203, 24829, '2', 'Board ', '', 'No', '2020', 60.00, '', 1, '2025-04-23 05:13:28', 0, NULL, 0, NULL, 1),
(32204, 24830, '3', 'Autonomous ', '', 'B.A', '2024', 60.00, '', 1, '2025-04-23 05:43:50', 0, NULL, 0, NULL, 1),
(32205, 24831, '3', 'Autonomous ', '', 'BBA', '2024', 50.00, '', 1, '2025-04-23 05:44:43', 0, NULL, 0, NULL, 1),
(32206, 24820, '3', 'Annai college of arts and science ', '', 'BACHELOR OF COMPUTER APPLICATION ', '2025', 80.00, '', 1, '2025-04-23 06:19:57', 0, NULL, 0, NULL, 1),
(32207, 24832, '3', 'Madurai Kamaraj University', '', 'B.Com Computer Application', '2023', 70.00, '', 1, '2025-04-23 06:43:50', 0, NULL, 0, NULL, 1),
(32208, 24833, '3', 'Anna university', '', 'Be', '2020', 60.00, '', 1, '2025-04-23 06:44:32', 0, NULL, 0, NULL, 1),
(32209, 24834, '3', 'Jerusalem College of Engineering ', '', 'B.E', '2024', 89.00, '', 1, '2025-04-23 07:10:42', 0, NULL, 0, NULL, 1),
(32210, 24834, '2', 'State Board ', '', '', '2020', 67.00, '', 1, '2025-04-23 07:12:15', 0, NULL, 0, NULL, 1),
(32211, 24834, '1', 'State Board ', '', '', '2018', 84.00, '', 1, '2025-04-23 07:12:34', 0, NULL, 0, NULL, 1),
(32212, 24835, '3', 'jerusalem college of engineering', '', 'b.e', '2024', 85.00, '', 1, '2025-04-23 07:14:24', 0, NULL, 0, NULL, 1),
(32213, 24835, '2', 'new prince matriculation hr secondary school', '', '', '2020', 75.00, '', 1, '2025-04-23 07:15:08', 0, NULL, 0, NULL, 1),
(32214, 24826, '3', 'Kamarajer univercity ', '', 'B.com it', '2023', 61.00, '', 1, '2025-04-23 07:29:35', 0, NULL, 0, NULL, 1),
(32215, 24837, '3', 'A.m jain College ', '', 'Bsc cs', '2023', 72.00, '', 1, '2025-04-23 07:40:37', 0, NULL, 0, NULL, 1),
(32216, 24836, '4', 'Madras University ', '', 'M sc computer science ', '2020', 70.00, '', 1, '2025-04-23 07:52:03', 0, NULL, 0, NULL, 1),
(32217, 24839, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 70.00, '', 1, '2025-04-23 09:10:21', 0, NULL, 0, NULL, 1),
(32218, 24838, '3', 'Madras University ', '', 'Bsc Computer Science ', '2023', 77.88, '', 1, '2025-04-23 09:11:17', 0, NULL, 0, NULL, 1),
(32219, 24791, '4', 'SBK collage, madurai Kamarajar university ', '', 'Bcom computer application', '2023', 80.00, '', 1, '2025-04-23 09:33:20', 0, NULL, 0, NULL, 1),
(32220, 24840, '5', 'Anna University ', '', 'EEE', '2019', 70.00, '', 1, '2025-04-23 09:38:31', 0, NULL, 0, NULL, 1),
(32221, 24842, '4', 'Bharadhidasan ', '', 'Msc', '2025', 73.00, '', 1, '2025-04-24 05:02:49', 0, NULL, 0, NULL, 1),
(32222, 24843, '3', 'Thiruvallur university ', '', 'BCA', '2016', 60.00, '', 1, '2025-04-24 05:28:06', 0, NULL, 0, NULL, 1),
(32223, 24841, '3', 'Anna university ', '', 'BE', '2024', 65.00, '', 1, '2025-04-24 05:28:13', 0, NULL, 0, NULL, 1),
(32224, 24845, '3', 'University of Madras ', '', 'B.Com Corporate SecrataryShip ', '2024', 68.00, '', 1, '2025-04-24 07:11:48', 0, NULL, 0, NULL, 1),
(32225, 24844, '3', 'Anna University ', '', 'BE(cse)', '2023', 7.50, '', 1, '2025-04-24 07:18:21', 0, NULL, 0, NULL, 1),
(32226, 24846, '3', 'bharathidasan univarsity', '', 'bsc cs', '2020', 70.00, '', 1, '2025-04-24 07:36:02', 0, NULL, 0, NULL, 1),
(32227, 24847, '4', 'Bharathidasan University', '', 'Msc', '2024', 70.00, '', 1, '2025-04-24 08:39:43', 0, NULL, 0, NULL, 1),
(32228, 24850, '3', 'Manglore university ', '', 'B.com', '2024', 80.00, '', 1, '2025-04-24 11:03:02', 0, NULL, 0, NULL, 1),
(32229, 24852, '4', 'Bharathidasan university ', '', 'B.com', '2024', 81.00, '', 1, '2025-04-25 05:04:12', 0, NULL, 0, NULL, 1),
(32230, 24853, '3', 'University', '', 'BCA', '2024', 80.00, '', 1, '2025-04-25 07:33:12', 0, NULL, 0, NULL, 1),
(32231, 24854, '3', 'SRM university', '', 'Bsc(cs) ', '2019', 63.00, '', 1, '2025-04-25 01:23:56', 0, NULL, 0, NULL, 1),
(32232, 24856, '3', 'Bharathidasan university, Thiruchirapalli', '', 'BCA', '2025', 84.00, '', 1, '2025-04-26 04:49:00', 0, NULL, 0, NULL, 1),
(32233, 24855, '3', 'University ', '', 'B.com', '2023', 75.00, '', 1, '2025-04-26 05:25:55', 0, NULL, 0, NULL, 1),
(32234, 24857, '3', 'university of madras', '', 'b.com accounting and finance', '2024', 7.00, '', 1, '2025-04-26 06:09:29', 0, NULL, 0, NULL, 1),
(32235, 24858, '4', 'Anna University ', '', 'MBA', '2025', 8.17, '', 1, '2025-04-26 06:24:19', 0, NULL, 0, NULL, 1),
(32236, 24858, '3', 'Madras University ', '', 'B.com general ', '2023', 80.00, '', 1, '2025-04-26 06:25:20', 0, NULL, 0, NULL, 1),
(32237, 24858, '2', 'State board ', '', '', '2020', 72.00, '', 1, '2025-04-26 06:25:51', 0, NULL, 0, NULL, 1),
(32238, 24858, '1', 'State board ', '', '', '2018', 70.00, '', 1, '2025-04-26 06:26:22', 0, NULL, 0, NULL, 1),
(32239, 24810, '3', 'Anna University', '', 'BE CSE', '2019', 6.63, '', 1, '2025-04-26 06:39:40', 0, NULL, 0, NULL, 1),
(32240, 24859, '3', 'University ', '', 'B.com bank management ', '2022', 79.00, '', 1, '2025-04-26 10:14:21', 0, NULL, 0, NULL, 1),
(32241, 24859, '1', 'Board ', '', '', '2017', 80.00, '', 1, '2025-04-26 10:14:55', 0, NULL, 0, NULL, 1),
(32242, 24859, '2', 'Board ', '', '', '2019', 65.00, '', 1, '2025-04-26 10:15:13', 0, NULL, 0, NULL, 1),
(32243, 24861, '4', 'Manonmaniam sundaranar university tirunelveli', '', 'Msc physics', '2023', 84.00, '', 1, '2025-04-26 10:46:06', 0, NULL, 0, NULL, 1),
(32244, 24862, '3', 'Deemed University ', '', 'B.Tech ', '2025', 80.00, '', 1, '2025-04-27 04:49:52', 0, NULL, 0, NULL, 1),
(32245, 24863, '3', 'AAA college of engineering and technology ', '', 'B.E', '2018', 72.40, '', 1, '2025-04-28 03:56:17', 0, NULL, 0, NULL, 1),
(32246, 24864, '3', 'Bharathiyar university ', '', 'BA Economic ', '2020', 65.00, '', 1, '2025-04-28 04:07:38', 0, NULL, 0, NULL, 1),
(32247, 24864, '2', 'Started board', '', '', '2017', 66.00, '', 1, '2025-04-28 04:08:56', 0, NULL, 0, NULL, 1),
(32248, 24864, '1', 'Started board ', '', '', '2015', 78.00, '', 1, '2025-04-28 04:09:17', 0, NULL, 0, NULL, 1),
(32249, 24849, '2', 'Govt High secondary school ', '', '', '2019', 70.00, '', 1, '2025-04-28 04:24:34', 0, NULL, 0, NULL, 1),
(32250, 24865, '4', 'Annamalai University ', '', 'MA.History', '2025', 75.00, '', 1, '2025-04-28 04:46:02', 0, NULL, 0, NULL, 1),
(32251, 24866, '1', 'Borad', '', '', '2024', 50.00, '', 1, '2025-04-28 05:02:35', 0, NULL, 0, NULL, 1),
(32252, 24866, '2', 'Bord', '', '', '2024', 50.00, '', 1, '2025-04-28 05:03:22', 0, NULL, 0, NULL, 1),
(32253, 24866, '3', 'University', '', 'Bca ', '2024', 50.00, '', 1, '2025-04-28 05:04:30', 0, NULL, 0, NULL, 1),
(32254, 24867, '3', 'Madurai Kamaraj University ', '', 'B.sc', '2023', 9.20, '', 1, '2025-04-28 05:43:39', 0, NULL, 0, NULL, 1),
(32255, 24868, '3', 'Madras University ', '', 'B.com A/f', '2025', 59.00, '', 1, '2025-04-28 06:02:49', 0, NULL, 0, NULL, 1),
(32256, 24869, '3', 'Anna University ', '', 'B.E', '2024', 67.90, '', 1, '2025-04-28 06:09:55', 0, NULL, 0, NULL, 1),
(32257, 24874, '3', 'Alagappa University ', '', 'BA.English', '2025', 62.00, '', 1, '2025-04-28 06:59:28', 0, NULL, 0, NULL, 1),
(32258, 24872, '3', 'Bharadhidasan ', '', 'Bcom', '2024', 86.00, '', 1, '2025-04-28 07:05:31', 0, NULL, 0, NULL, 1),
(32259, 24875, '4', 'Anna University ', '', 'MCA', '2023', 8.20, '', 1, '2025-04-28 09:48:38', 0, NULL, 0, NULL, 1),
(32260, 24876, '4', 'vtu', '', 'mba', '2023', 63.00, '', 1, '2025-04-28 11:05:13', 0, NULL, 0, NULL, 1),
(32261, 24879, '3', 'Star lion college of engineering and technology ', '', 'BE computer science', '2024', 60.00, '', 1, '2025-04-29 04:23:16', 1, '2025-04-29 04:23:37', 0, NULL, 1),
(32262, 24877, '4', 'Panimalar Engineering College', '', 'MBA', '2025', 85.90, '', 1, '2025-04-29 04:34:51', 0, NULL, 0, NULL, 1),
(32263, 24881, '5', 'The institution of engineers ', '', 'mechanical engineer ', '2023', 75.10, '', 1, '2025-04-29 05:06:38', 0, NULL, 0, NULL, 1),
(32264, 24880, '3', 'University ', '', 'BCA ', '2023', 90.00, '', 1, '2025-04-29 05:13:09', 0, NULL, 0, NULL, 1),
(32265, 24878, '3', 'Anna university ', '', 'BE', '2024', 68.00, '', 1, '2025-04-29 05:29:27', 0, NULL, 0, NULL, 1),
(32266, 24870, '3', 'University of madras', '', 'Bachelor in business administration ', '2021', 75.00, '', 1, '2025-04-29 05:43:29', 0, NULL, 0, NULL, 1),
(32267, 24882, '3', 'Anna University ', '', 'BE', '2023', 80.00, '', 1, '2025-04-29 05:46:10', 0, NULL, 0, NULL, 1),
(32268, 24870, '5', 'CSC', '', 'Diploma in computer applications', '2019', 95.00, '', 1, '2025-04-29 05:46:31', 0, NULL, 0, NULL, 1),
(32269, 24883, '3', 'Madras University ', '', 'BCA', '2021', 78.00, '', 1, '2025-04-29 07:03:10', 0, NULL, 0, NULL, 1),
(32270, 24883, '2', 'State board', '', '', '2016', 53.00, '', 1, '2025-04-29 07:04:21', 0, NULL, 0, NULL, 1),
(32271, 24884, '1', 'G. G. H. s. School', '', '', '2017', 88.80, '', 1, '2025-04-29 07:05:04', 0, NULL, 0, NULL, 1),
(32272, 24884, '2', 'G. g. H. S. School', '', '', '2019', 56.00, '', 1, '2025-04-29 07:05:39', 0, NULL, 0, NULL, 1),
(32273, 24884, '3', 'Mahendra Institute of technology', '', 'BE computer science', '2023', 8.10, '', 1, '2025-04-29 07:06:38', 0, NULL, 0, NULL, 1),
(32274, 24887, '3', 'Anna University ', '', 'B.E Computer Science Engineering', '2024', 7.20, '', 1, '2025-04-29 07:13:30', 0, NULL, 0, NULL, 1),
(32275, 24888, '3', 'Madras University', '', 'BBA', '2024', 75.00, '', 1, '2025-04-29 07:34:33', 0, NULL, 0, NULL, 1),
(32276, 24891, '3', 'Priyar maniammai institute of science and technology University ', '', 'B.A,B.Ed', '2024', 85.00, '', 1, '2025-04-29 09:30:23', 0, NULL, 0, NULL, 1),
(32277, 24889, '3', 'Bharthi womens college', '', 'Bsc', '2025', 70.00, '', 154, '2025-04-29 04:00:33', 0, NULL, 0, NULL, 1),
(32278, 24892, '3', 'Vels university ', '', 'B. Com (cA)', '2022', 60.00, '', 1, '2025-04-30 02:15:06', 0, NULL, 0, NULL, 1),
(32279, 24894, '4', 'bengalore north university ', '', 'mba', '2025', 71.41, '', 1, '2025-04-30 04:02:27', 0, NULL, 0, NULL, 1),
(32280, 24894, '3', 'gulbarga university ', '', 'b com', '2023', 71.44, '', 1, '2025-04-30 04:15:54', 0, NULL, 0, NULL, 1),
(32281, 24894, '1', 'Secondary examination board benglore ', '', '', '2017', 72.80, '', 1, '2025-04-30 04:17:28', 0, NULL, 0, NULL, 1),
(32282, 24895, '5', 'sri nallalaghu collage', '', 'mechanical engineering', '2021', 67.00, '', 1, '2025-04-30 05:42:16', 0, NULL, 0, NULL, 1),
(32283, 24895, '1', 'sslc', '', '', '2014', 70.00, '', 1, '2025-04-30 05:45:35', 0, NULL, 0, NULL, 1),
(32284, 24895, '2', 'radhna toturial', '', '', '2021', 60.00, '', 1, '2025-04-30 05:46:21', 0, NULL, 0, NULL, 1),
(32285, 24896, '3', 'University of madras', '', 'Bcom', '2024', 68.00, '', 1, '2025-04-30 06:08:23', 0, NULL, 0, NULL, 1),
(32286, 24897, '1', 'State', '', '', '2015', 85.00, '', 1, '2025-04-30 06:32:23', 0, NULL, 0, NULL, 1),
(32287, 24898, '5', 'Board', '', 'PGD HRM', '2025', 80.00, '', 1, '2025-04-30 06:35:12', 0, NULL, 0, NULL, 1),
(32288, 24899, '3', 'Anna University ', '', 'BE ', '2025', 7.80, '', 1, '2025-04-30 07:00:16', 0, NULL, 0, NULL, 1),
(32289, 24900, '3', 'Anna university ', '', 'BE', '2025', 73.00, '', 1, '2025-04-30 07:00:32', 0, NULL, 0, NULL, 1),
(32290, 24901, '3', 'Anna university ', '', 'Bachelor of engineering ', '2025', 7.82, '', 1, '2025-04-30 07:01:36', 0, NULL, 0, NULL, 1),
(32291, 24902, '3', 'Anna University ', '', 'BE', '2025', 70.00, '', 1, '2025-04-30 07:04:09', 0, NULL, 0, NULL, 1),
(32292, 24890, '3', 'Madras Universit', '', 'BSC', '2025', 60.00, '', 154, '2025-04-30 04:06:31', 0, NULL, 0, NULL, 1),
(32293, 24905, '4', 'Annamalai University ', '', 'M.Sc Computer Science ', '2025', 80.00, '', 1, '2025-04-30 12:25:43', 0, NULL, 0, NULL, 1),
(32294, 24905, '3', 'Thiruvalluvar University ', '', 'B.Sc Computer Science ', '2023', 84.00, '', 1, '2025-04-30 12:26:26', 0, NULL, 0, NULL, 1),
(32295, 24904, '3', 'Madras University ', '', 'B.A History and tourism', '2025', 65.00, '', 1, '2025-05-02 05:06:47', 0, NULL, 0, NULL, 1),
(32296, 24907, '3', 'Bharathidasan University ', '', 'BCA', '2024', 69.00, '', 1, '2025-05-02 05:08:06', 0, NULL, 0, NULL, 1),
(32297, 24908, '3', 'Barathithasan university', '', 'B. SC Physics', '2024', 78.00, '', 1, '2025-05-02 05:14:14', 0, NULL, 0, NULL, 1),
(32298, 24903, '4', 'Anna university ', '', 'MBA', '2020', 64.00, '', 1, '2025-05-02 05:29:54', 0, NULL, 0, NULL, 1),
(32299, 24909, '4', 'L.N.Government College', '', 'bsc', '2021', 60.00, '', 1, '2025-05-02 05:38:25', 0, NULL, 0, NULL, 1),
(32300, 24911, '3', 'Bharathiar University', '', 'BSC computer science ', '2024', 78.00, '', 1, '2025-05-02 05:54:27', 0, NULL, 0, NULL, 1),
(32301, 24910, '3', 'Bharathidasan university ', '', 'BCOM CA ', '2024', 7.30, '', 1, '2025-05-02 05:58:04', 0, NULL, 0, NULL, 1),
(32302, 24912, '4', 'syed ammal arts and science college', '', 'msc', '2023', 71.00, '', 1, '2025-05-02 06:00:04', 0, NULL, 0, NULL, 1),
(32303, 24910, '3', 'BHARATHIDHASAN UNIVERSITY', '', 'B COM CA', '2024', 7.30, '', 154, '2025-05-02 11:30:05', 0, NULL, 0, NULL, 1),
(32304, 24913, '3', 'Madras University', '', 'BCA', '2020', 85.00, '', 1, '2025-05-02 06:25:27', 0, NULL, 0, NULL, 1),
(32305, 24915, '3', 'manonmaniam suntharanar university', '', 'b.com', '2023', 75.00, '', 1, '2025-05-02 06:28:12', 0, NULL, 0, NULL, 1),
(32306, 24914, '3', 'Mohammed Sathak A J College of engineering ', '', 'B.E ECE', '2024', 8.15, '', 1, '2025-05-02 06:28:44', 0, NULL, 0, NULL, 1),
(32307, 24914, '2', 'State board', '', '', '2020', 76.00, '', 1, '2025-05-02 06:29:19', 0, NULL, 0, NULL, 1),
(32308, 24914, '1', 'State board', '', '', '2018', 95.00, '', 1, '2025-05-02 06:29:50', 0, NULL, 0, NULL, 1),
(32309, 24917, '1', 'cbse', '', '', '2019', 84.00, '', 1, '2025-05-02 06:51:17', 1, '2025-05-02 06:52:07', 0, NULL, 1),
(32310, 24917, '2', 'cbse', '', '', '2021', 77.20, '', 1, '2025-05-02 06:52:21', 0, NULL, 0, NULL, 1),
(32311, 24917, '3', 'srm university', '', 'b.com accounting and finance', '2024', 78.00, '', 1, '2025-05-02 06:53:01', 0, NULL, 0, NULL, 1),
(32312, 24916, '3', 'Autonomous ', '', 'BA English Literature ', '2022', 70.00, '', 1, '2025-05-02 07:21:23', 0, NULL, 0, NULL, 1),
(32313, 24918, '3', 'Bharadhidasan ', '', 'Bsc', '2025', 70.00, '', 1, '2025-05-02 07:47:31', 0, NULL, 0, NULL, 1),
(32314, 24919, '3', 'Madras university', '', 'BA ', '2025', 75.00, '', 1, '2025-05-02 08:23:07', 0, NULL, 0, NULL, 1),
(32315, 24920, '3', 'Madras university', '', 'B.com', '2024', 81.00, '', 1, '2025-05-02 11:38:19', 0, NULL, 0, NULL, 1),
(32316, 24921, '4', 'University of Madras ', '', 'MA English Literature ', '2022', 65.00, '', 1, '2025-05-03 06:20:47', 0, NULL, 0, NULL, 1),
(32317, 24922, '4', 'Eva stalin Business school Affiliated with alagappa university ', '', 'MBA', '2026', 83.00, '', 1, '2025-05-03 08:06:55', 0, NULL, 0, NULL, 1),
(32318, 24922, '3', 'St. Thomas College Of Arts And Science Affiliated with madras university ', '', 'BBA', '2024', 76.00, '', 1, '2025-05-03 08:08:14', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(32319, 24924, '3', 'Periyar University salem', '', 'BA English ', '2022', 70.00, '', 1, '2025-05-03 12:51:07', 0, NULL, 0, NULL, 1),
(32320, 24925, '3', 'University ', '', 'BCA', '2025', 82.00, '', 1, '2025-05-05 04:51:57', 0, NULL, 0, NULL, 1),
(32321, 24926, '4', 'University ', '', 'M.Phil', '2017', 85.00, '', 1, '2025-05-05 05:47:27', 0, NULL, 0, NULL, 1),
(32322, 24928, '3', 'st.peters college of engineering and technology ', '', 'BE', '2016', 58.00, '', 1, '2025-05-05 06:22:11', 0, NULL, 0, NULL, 1),
(32323, 24927, '3', 'university of madras', '', 'bcom computer application', '2025', 65.00, '', 1, '2025-05-05 07:31:49', 0, NULL, 0, NULL, 1),
(32324, 24929, '3', 'University of madras', '', 'B.com', '2025', 69.00, '', 1, '2025-05-05 07:43:01', 0, NULL, 0, NULL, 1),
(32325, 24931, '1', 'State ', '', '', '2020', 45.00, '', 1, '2025-05-05 09:50:19', 0, NULL, 0, NULL, 1),
(32326, 24930, '3', 'Madras University ', '', 'B.com ', '2025', 62.20, '', 1, '2025-05-06 04:22:17', 0, NULL, 0, NULL, 1),
(32327, 24934, '3', 'Anna University', '', 'Bachelor of engineering', '2019', 82.30, '', 1, '2025-05-06 04:34:18', 0, NULL, 0, NULL, 1),
(32328, 24935, '4', 'university of madras', '', 'mba', '2022', 90.00, '', 1, '2025-05-06 04:50:18', 0, NULL, 0, NULL, 1),
(32329, 24933, '3', 'Loyola College (Autonomous)', '', 'B.com general ', '2025', 6.80, '', 1, '2025-05-06 04:54:42', 0, NULL, 0, NULL, 1),
(32330, 24932, '3', 'Bharathidasan university', '', 'B.B.A', '2025', 65.00, '', 1, '2025-05-06 05:55:31', 0, NULL, 0, NULL, 1),
(32331, 24939, '3', 'bharathidasan university', '', 'b.com', '2024', 67.00, '', 1, '2025-05-06 06:18:53', 0, NULL, 0, NULL, 1),
(32332, 24940, '3', 'bharathidasan university', '', 'b.sc computer science', '2024', 65.00, '', 1, '2025-05-06 06:22:25', 0, NULL, 0, NULL, 1),
(32333, 24937, '3', 'Madras University ', '', 'BCA', '2020', 80.00, '', 1, '2025-05-06 06:39:49', 0, NULL, 0, NULL, 1),
(32334, 24936, '3', 'st.peters university', '', 'b.e ece', '2019', 55.40, '', 1, '2025-05-06 06:48:32', 0, NULL, 0, NULL, 1),
(32335, 24938, '3', 'Periyar University ', '', 'B.A,B.ed', '2021', 69.00, '', 1, '2025-05-06 06:52:18', 0, NULL, 0, NULL, 1),
(32336, 24942, '3', 'Ethiraj college for women ', '', 'B.com', '2021', 67.50, '', 1, '2025-05-06 07:06:49', 0, NULL, 0, NULL, 1),
(32337, 24941, '3', 'Thiruvalluvar University ', '', 'Bsc Computer science ', '2022', 80.00, '', 1, '2025-05-06 07:14:13', 0, NULL, 0, NULL, 1),
(32338, 24943, '4', 'Pondicherry University', '', 'MBA', '2024', 60.00, '', 1, '2025-05-06 07:33:17', 0, NULL, 0, NULL, 1),
(32339, 24943, '3', 'Thiruvalluvar University', '', 'Bsc', '2021', 80.00, '', 1, '2025-05-06 07:33:53', 0, NULL, 0, NULL, 1),
(32340, 24946, '3', 'Madras University ', '', 'B.com', '2025', 60.00, '', 1, '2025-05-06 10:17:23', 0, NULL, 0, NULL, 1),
(32341, 24945, '3', 'madras university ', '', 'b.com general ', '2025', 70.00, '', 1, '2025-05-06 10:19:27', 0, NULL, 0, NULL, 1),
(32342, 24947, '3', 'Anna university ', '', 'BE. CSE', '2025', 75.00, '', 1, '2025-05-06 02:03:16', 0, NULL, 0, NULL, 1),
(32343, 24948, '3', 'Medras university', '', 'B. Com', '2025', 67.00, '', 1, '2025-05-07 04:41:23', 0, NULL, 0, NULL, 1),
(32344, 24949, '4', 'University of Madras ', '', 'M.A. - Human Resources Management', '2026', 80.00, '', 1, '2025-05-07 06:03:33', 0, NULL, 0, NULL, 1),
(32345, 24949, '3', 'Srm university ', '', 'BBA', '2024', 8.27, '', 1, '2025-05-07 06:04:04', 0, NULL, 0, NULL, 1),
(32346, 24950, '3', 'Dr MGR UNIVERSITY MADURAVOYAL', '', 'BACHELOR OF COMMERCE ', '2023', 65.00, '', 1, '2025-05-07 07:46:06', 0, NULL, 0, NULL, 1),
(32347, 24951, '5', 'Cpt college ', '', 'Dipoloma', '2025', 84.00, '', 1, '2025-05-07 09:30:15', 0, NULL, 0, NULL, 1),
(32348, 24953, '3', 'Ramakrishna mission vivekananda college', '', 'Bba', '2025', 68.00, '', 1, '2025-05-07 12:43:42', 0, NULL, 0, NULL, 1),
(32349, 24955, '3', 'Madras University ', '', 'BBA', '2024', 68.00, '', 1, '2025-05-07 01:14:16', 0, NULL, 0, NULL, 1),
(32350, 24955, '2', 'Dr gurusamy mudaliar hr sec school', '', '', '2021', 66.00, '', 1, '2025-05-07 01:15:29', 0, NULL, 0, NULL, 1),
(32351, 24955, '1', 'PAK Palaniswamy boys hr sec school ', '', '', '2018', 51.00, '', 1, '2025-05-07 01:16:02', 0, NULL, 0, NULL, 1),
(32352, 24956, '4', 'Anna university ', '', 'Mba', '2023', 76.00, '', 1, '2025-05-07 01:35:35', 0, NULL, 0, NULL, 1),
(32353, 24944, '3', 'University ', '', 'B.A economics', '2024', 70.00, '', 1, '2025-05-08 04:05:50', 0, NULL, 0, NULL, 1),
(32354, 24957, '3', 'Thiruvallur university ', '', 'Bsc physics ', '2022', 70.00, '', 1, '2025-05-08 04:07:58', 0, NULL, 0, NULL, 1),
(32355, 24952, '3', 'Periyar maniammaai institute of science and technology ', '', 'Btech ', '2019', 78.00, '', 1, '2025-05-08 05:00:36', 0, NULL, 0, NULL, 1),
(32356, 24958, '4', 'Madras University ', '', 'MBA Finance ', '2020', 72.00, '', 1, '2025-05-08 05:13:50', 0, NULL, 0, NULL, 1),
(32357, 24958, '3', 'Ethiraj College for women ', '', 'BA Economics ', '2018', 64.00, '', 1, '2025-05-08 05:14:59', 0, NULL, 0, NULL, 1),
(32358, 24954, '3', 'Periyar college of science and technology', '', 'B. Com (Hons) ', '2020', 7.90, '', 1, '2025-05-08 05:22:40', 0, NULL, 0, NULL, 1),
(32359, 24954, '4', 'Bharath college of science and management', '', 'MBA(HR) ', '2024', 7.60, '', 1, '2025-05-08 05:25:25', 0, NULL, 0, NULL, 1),
(32360, 24959, '3', 'University ', '', 'B.A tourism and travel management ', '2025', 65.00, '', 1, '2025-05-08 05:55:58', 0, NULL, 0, NULL, 1),
(32361, 24961, '3', 'stella maris college affiliated to madras university ', '', 'bcom corp secretaryship', '2025', 71.00, '', 1, '2025-05-08 12:33:24', 0, NULL, 0, NULL, 1),
(32362, 24962, '3', 'Alagappa University ', '', 'B.sc Computer science ', '2024', 8.50, '', 1, '2025-05-09 04:07:12', 0, NULL, 0, NULL, 1),
(32363, 24963, '4', 'Bharathidhasan university ', '', 'Mba', '2025', 71.00, '', 1, '2025-05-09 04:16:47', 0, NULL, 0, NULL, 1),
(32364, 24966, '3', 'Anna University ', '', 'BE', '2024', 7.40, '', 1, '2025-05-09 05:06:15', 0, NULL, 0, NULL, 1),
(32365, 24965, '3', 'madras universit', '', 'bcom', '2025', 80.00, '', 154, '2025-05-09 10:40:30', 0, NULL, 0, NULL, 1),
(32366, 24964, '3', 'Madras University ', '', 'B.com (Accounting Finance)', '2025', 70.00, '', 1, '2025-05-09 05:23:23', 0, NULL, 0, NULL, 1),
(32367, 24967, '3', 'Madras University ', '', 'B.com', '2025', 59.00, '', 1, '2025-05-09 05:30:59', 0, NULL, 0, NULL, 1),
(32368, 24968, '3', 'Thiruvalluvar university ', '', 'Bsc physics ', '2022', 85.00, '', 1, '2025-05-09 06:09:05', 0, NULL, 0, NULL, 1),
(32369, 24969, '3', 'Ambedcar government college ', '', 'B. Com', '2021', 60.00, '', 1, '2025-05-09 06:14:19', 0, NULL, 0, NULL, 1),
(32370, 24970, '2', 'Kerala vidhyalayam higher secondary school ', '', '', '2019', 61.00, '', 1, '2025-05-09 06:23:13', 0, NULL, 0, NULL, 1),
(32371, 24971, '4', 'Annai veilankanni college for women', '', 'Bcom ', '2025', 70.00, '', 1, '2025-05-09 06:25:26', 0, NULL, 0, NULL, 1),
(32372, 24972, '5', 'Kumaran ITI', '', 'Ac mechanic', '2019', 55.00, '', 1, '2025-05-09 06:48:20', 0, NULL, 0, NULL, 1),
(32373, 24974, '1', 'State board ', '', 'BE CSE', '2017', 95.80, '', 1, '2025-05-09 07:42:58', 0, NULL, 0, NULL, 1),
(32374, 24974, '2', 'State board ', '', '', '2019', 76.70, '', 1, '2025-05-09 07:43:18', 0, NULL, 0, NULL, 1),
(32375, 24974, '3', 'Ramco Institute of Technology ', '', 'BE CSE', '2023', 7.80, '', 1, '2025-05-09 07:43:36', 0, NULL, 0, NULL, 1),
(32376, 24973, '3', 'bharathiyar university', '', 'b.com bps', '2025', 65.00, '', 1, '2025-05-09 07:46:30', 0, NULL, 0, NULL, 1),
(32377, 24975, '4', 'Periyar University ', '', 'MCA ', '2022', 80.00, '', 1, '2025-05-09 08:03:15', 0, NULL, 0, NULL, 1),
(32378, 24976, '4', 'University ', '', 'MBA', '2023', 80.00, '', 1, '2025-05-09 09:56:13', 0, NULL, 0, NULL, 1),
(32379, 24980, '3', 'Bharathithasan University ', '', 'B.sc physics ', '2022', 60.00, '', 1, '2025-05-10 04:51:52', 0, NULL, 0, NULL, 1),
(32380, 24981, '3', 'Madras University ', '', 'B.Com (gen)', '2022', 80.00, '', 1, '2025-05-10 05:12:04', 0, NULL, 0, NULL, 1),
(32381, 24981, '3', 'Madras University ', '', 'B.Com (gen)', '2022', 80.00, '', 1, '2025-05-10 05:12:04', 0, NULL, 0, NULL, 1),
(32382, 24981, '2', 'State board', '', '', '2019', 72.00, '', 1, '2025-05-10 05:13:03', 0, NULL, 0, NULL, 1),
(32383, 24984, '3', 'Anna university ', '', 'BE', '2024', 7.00, '', 1, '2025-05-10 05:19:05', 0, NULL, 0, NULL, 1),
(32384, 24982, '3', 'Medras', '', 'B.A', '2025', 69.00, '', 1, '2025-05-10 05:19:22', 0, NULL, 0, NULL, 1),
(32385, 23825, '3', 'ms University ', '', 'bsc computer Science ', '2023', 84.00, '', 1, '2025-05-10 05:24:24', 0, NULL, 0, NULL, 1),
(32386, 24985, '3', 'St.joseph college of Engineering and Technology Tanjore', '', 'BE', '2023', 7.50, '', 1, '2025-05-10 05:35:52', 0, NULL, 0, NULL, 1),
(32387, 24986, '3', 'Shree Chandra Prabhu jain College affiliated by Madras University ', '', 'Bsc plant biology and plant biotechnology ', '2025', 70.00, '', 1, '2025-05-10 05:40:05', 0, NULL, 0, NULL, 1),
(32388, 24987, '4', 'Bharathiyar University ', '', 'M.com', '2025', 73.00, '', 1, '2025-05-10 06:06:05', 0, NULL, 0, NULL, 1),
(32389, 24988, '4', 'Bharthi dasan university ', '', 'MBA finance ', '2023', 80.00, '', 1, '2025-05-10 06:19:36', 0, NULL, 0, NULL, 1),
(32390, 24989, '3', 'Periyar maniammai', '', 'Bsc.computer science ', '2025', 70.00, '', 1, '2025-05-10 06:31:16', 0, NULL, 0, NULL, 1),
(32391, 24990, '3', 'jaya college of arts and science', '', 'b.com', '2025', 63.00, '', 1, '2025-05-10 07:18:51', 0, NULL, 0, NULL, 1),
(32392, 24990, '2', 'st.Ann’s matric hr sec school', '', '', '2022', 70.00, '', 1, '2025-05-10 07:19:45', 0, NULL, 0, NULL, 1),
(32393, 24990, '1', 'government hr sec school', '', '', '2020', 65.00, '', 1, '2025-05-10 07:20:45', 0, NULL, 0, NULL, 1),
(32394, 24992, '4', 'rescent institute of technology', '', '', '2023', 7.10, '', 1, '2025-05-10 12:56:06', 0, NULL, 0, NULL, 1),
(32395, 24994, '3', 'DR. M.G.R UNIVERSITY RESEARCH AND INSTITUTE ', '', 'BCA', '2020', 60.00, '', 1, '2025-05-12 01:43:58', 0, NULL, 0, NULL, 1),
(32396, 24994, '2', 'ST.JOSEPH ANGLO INDIAN SCHOOL ', '', '', '2017', 56.00, '', 1, '2025-05-12 01:44:56', 0, NULL, 0, NULL, 1),
(32397, 24994, '1', 'Don Bosco matriculation school ', '', '', '2015', 50.00, '', 1, '2025-05-12 01:45:26', 0, NULL, 0, NULL, 1),
(32398, 24978, '4', 'Madras University ', '', 'MSW', '2022', 81.00, '', 1, '2025-05-12 04:23:10', 0, NULL, 0, NULL, 1),
(32399, 24978, '1', 'St John\'s sr sec school', '', '', '2015', 65.00, '', 1, '2025-05-12 04:23:51', 0, NULL, 0, NULL, 1),
(32400, 24978, '2', 'Sri venugopal vidhyalaya ', '', '', '2017', 90.00, '', 1, '2025-05-12 04:24:14', 0, NULL, 0, NULL, 1),
(32401, 24978, '3', 'Madras University ', '', 'B.com', '2020', 63.00, '', 1, '2025-05-12 04:24:46', 0, NULL, 0, NULL, 1),
(32402, 24996, '3', 'Bharathithasan', '', 'BCA', '2025', 80.00, '', 1, '2025-05-12 04:30:20', 0, NULL, 0, NULL, 1),
(32403, 24997, '4', 'Bharathidasan university ', '', 'MCA', '2025', 82.00, '', 1, '2025-05-12 04:46:39', 0, NULL, 0, NULL, 1),
(32404, 24998, '3', 'University of Madras ', '', 'B.com', '2022', 65.00, '', 1, '2025-05-12 05:03:34', 0, NULL, 0, NULL, 1),
(32405, 24998, '1', 'Tamil Nadu Board ', '', '', '2017', 79.00, '', 1, '2025-05-12 05:04:26', 0, NULL, 0, NULL, 1),
(32406, 24998, '2', 'Tamilnadu Board', '', '', '2019', 60.00, '', 1, '2025-05-12 05:04:54', 0, NULL, 0, NULL, 1),
(32407, 24999, '2', 'Boar', '', '', '2018', 62.90, '', 1, '2025-05-12 05:33:07', 0, NULL, 0, NULL, 1),
(32408, 24999, '1', 'Board', '', '', '2016', 80.60, '', 1, '2025-05-12 05:34:29', 0, NULL, 0, NULL, 1),
(32409, 24999, '3', 'University', '', 'B.tech', '2022', 72.00, '', 1, '2025-05-12 05:34:54', 0, NULL, 0, NULL, 1),
(32410, 25001, '3', 'Bengaluru Central University ', '', 'B.com', '2021', 68.00, '', 1, '2025-05-12 05:55:01', 0, NULL, 0, NULL, 1),
(32411, 25004, '3', 'University of madras ', '', 'B.sc botany', '2024', 60.00, '', 1, '2025-05-12 06:17:19', 0, NULL, 0, NULL, 1),
(32412, 25002, '3', 'Madras University ', '', 'B.Com (Corporate secretaryship)', '2025', 68.00, '', 1, '2025-05-12 06:17:41', 0, NULL, 0, NULL, 1),
(32413, 25000, '3', 'Madras university ', '', 'B.com (computer application )', '2025', 62.00, '', 1, '2025-05-12 06:17:47', 0, NULL, 0, NULL, 1),
(32414, 25005, '3', 'Justice Basheer Ahmed  Sayeed women\'s college', '', 'B.com', '2025', 70.00, '', 1, '2025-05-12 06:30:07', 0, NULL, 0, NULL, 1),
(32415, 25006, '3', 'Madras University ', '', 'Ba English ', '2025', 65.00, '', 1, '2025-05-12 07:27:04', 0, NULL, 0, NULL, 1),
(32416, 25008, '3', 'Autonomous ', '', 'BA Economics ', '2025', 75.00, '', 1, '2025-05-12 07:33:44', 0, NULL, 0, NULL, 1),
(32417, 25007, '3', 'University of Madras ', '', 'B.com (corporate secretaryship)', '2025', 80.00, '', 1, '2025-05-12 07:51:53', 0, NULL, 0, NULL, 1),
(32418, 25009, '3', 'University of madras ', '', 'B.com (General)', '2025', 60.00, '', 1, '2025-05-12 10:54:56', 0, NULL, 0, NULL, 1),
(32419, 24977, '3', 'University of madras', '', 'Bcom general ', '2024', 85.00, '', 1, '2025-05-12 11:57:56', 0, NULL, 0, NULL, 1),
(32420, 25012, '3', 'University of Madras', '', 'Bsc mathematics ', '2022', 85.00, '', 1, '2025-05-13 04:33:44', 0, NULL, 0, NULL, 1),
(32421, 25013, '3', 'madras universit', '', 'bca', '2022', 60.00, '', 1, '2025-05-13 05:35:27', 0, NULL, 0, NULL, 1),
(32422, 25014, '3', 'Anna University ', '', 'BE', '2022', 76.00, '', 1, '2025-05-13 05:57:52', 0, NULL, 0, NULL, 1),
(32423, 25015, '3', 'Anna University ', '', '', '2017', 65.00, '', 1, '2025-05-13 07:22:58', 0, NULL, 0, NULL, 1),
(32424, 25017, '3', 'University ', '', 'BE', '2021', 76.80, '', 1, '2025-05-13 07:26:59', 0, NULL, 0, NULL, 1),
(32425, 25018, '3', 'Bangalore University ', '', 'B A', '1999', 75.00, '', 1, '2025-05-13 07:51:44', 0, NULL, 0, NULL, 1),
(32426, 25016, '3', 'Tagore college of arts and science ', '', 'B com and f', '2023', 85.00, '', 1, '2025-05-13 07:57:27', 0, NULL, 0, NULL, 1),
(32427, 25019, '3', 'Tagore college of arts and science ', '', 'B.com', '2023', 75.00, '', 1, '2025-05-13 07:57:32', 0, NULL, 0, NULL, 1),
(32428, 25022, '3', 'Madras University ', '', 'b.com', '2025', 70.00, '', 1, '2025-05-13 09:32:43', 0, NULL, 0, NULL, 1),
(32429, 25020, '3', 'University of Madras ', '', 'B.com(marketing management)', '2025', 75.00, '', 1, '2025-05-13 09:32:44', 0, NULL, 0, NULL, 1),
(32430, 25025, '3', 'SRM Institute of Science and Technology ', '', 'B.Tech CSE', '2024', 82.00, '', 1, '2025-05-13 09:34:26', 0, NULL, 0, NULL, 1),
(32431, 25024, '3', 'Loyola college ', '', 'B.C.A', '2023', 76.00, '', 1, '2025-05-13 09:34:44', 0, NULL, 0, NULL, 1),
(32432, 25021, '3', 'Madrass university ', '', 'B.com', '2025', 71.00, '', 1, '2025-05-13 09:36:24', 0, NULL, 0, NULL, 1),
(32433, 25026, '3', 'Madras University ', '', 'Bba', '2025', 68.00, '', 1, '2025-05-13 09:58:59', 0, NULL, 0, NULL, 1),
(32434, 25010, '3', 'autonomous', '', 'ba economics', '2022', 75.00, '', 1, '2025-05-13 10:03:48', 0, NULL, 0, NULL, 1),
(32435, 25027, '3', 'Madras University ', '', 'Bba', '2025', 70.00, '', 1, '2025-05-13 10:08:01', 0, NULL, 0, NULL, 1),
(32436, 25023, '3', 'autonomous', '', 'ba economics', '2022', 64.00, '', 1, '2025-05-13 10:17:56', 0, NULL, 0, NULL, 1),
(32437, 25029, '4', 'bharathidhasan university', '', 'msc cs', '2024', 77.00, '', 1, '2025-05-14 05:08:59', 0, NULL, 0, NULL, 1),
(32438, 25030, '3', 'Madras University ', '', 'Bsc.Psychology', '2025', 60.00, '', 1, '2025-05-14 05:27:36', 0, NULL, 0, NULL, 1),
(32439, 25030, '4', 'madras universit', '', 'msc', '2025', 70.00, '', 154, '2025-05-14 10:59:17', 154, '2025-05-14 10:59:50', 0, NULL, 0),
(32440, 25031, '5', 'Nttf', '', '', '2025', 70.00, '', 1, '2025-05-14 06:02:12', 0, NULL, 0, NULL, 1),
(32441, 25032, '4', 'Bangalore University ', '', 'Mba', '2025', 76.00, '', 1, '2025-05-14 06:40:05', 0, NULL, 0, NULL, 1),
(32442, 25033, '3', 'Annamalai University ', '', 'BCA', '2021', 66.00, '', 1, '2025-05-14 06:48:09', 0, NULL, 0, NULL, 1),
(32443, 25034, '3', 'University Of Madras ', '', 'B.Com (G)', '2025', 63.00, '', 1, '2025-05-14 07:40:56', 0, NULL, 0, NULL, 1),
(32444, 25035, '4', 'Madras University ', '', 'M.A', '2025', 70.00, '', 1, '2025-05-15 05:37:02', 0, NULL, 0, NULL, 1),
(32445, 25036, '4', 'Dr. MGR university', '', 'MBA( HRM) ', '2025', 8.64, '', 1, '2025-05-15 07:20:04', 0, NULL, 0, NULL, 1),
(32446, 25037, '3', 'University of Madras ', '', 'BBA ', '2025', 73.00, '', 1, '2025-05-15 08:04:11', 0, NULL, 0, NULL, 1),
(32447, 25038, '3', 'University ', '', 'BBA', '2025', 71.00, '', 1, '2025-05-15 08:04:12', 0, NULL, 0, NULL, 1),
(32448, 25039, '3', 'University', '', 'BBA', '2025', 71.00, '', 1, '2025-05-15 08:05:29', 0, NULL, 0, NULL, 1),
(32449, 25042, '4', 'Annamalai university ', '', 'Msc ', '2024', 83.70, '', 1, '2025-05-15 12:25:30', 0, NULL, 0, NULL, 1),
(32450, 25045, '3', 'madras university', '', 'b.sc', '2018', 62.00, '', 1, '2025-05-16 04:37:51', 0, NULL, 0, NULL, 1),
(32451, 25044, '4', 'Kamaraj university ', '', 'MBA', '2024', 78.00, '', 1, '2025-05-16 04:39:36', 154, '2025-05-16 10:15:15', 0, NULL, 1),
(32452, 25046, '4', 'University of madras', '', 'Mcom', '2024', 70.00, '', 1, '2025-05-16 05:24:53', 0, NULL, 0, NULL, 1),
(32453, 25046, '4', 'University of madras ', '', 'Mcom', '2024', 70.00, '', 1, '2025-05-16 05:25:38', 0, NULL, 0, NULL, 1),
(32454, 25047, '3', 'AUTONOMOUS', '', 'bcom ', '2022', 80.00, '', 154, '2025-05-16 12:24:48', 0, NULL, 0, NULL, 1),
(32455, 25049, '3', 'Madras University ', '', 'B.com', '2025', 83.00, '', 1, '2025-05-16 07:06:43', 0, NULL, 0, NULL, 1),
(32456, 25050, '3', 'Madras University ', '', 'Bcom', '2025', 71.50, '', 1, '2025-05-16 07:25:16', 0, NULL, 0, NULL, 1),
(32457, 25051, '3', 'University of Madras ', '', 'B.A Economics ', '2025', 64.00, '', 1, '2025-05-16 07:37:48', 0, NULL, 0, NULL, 1),
(32458, 25048, '3', 'Madras University ', '', 'B.com corporate secrataryship ', '2022', 60.00, '', 1, '2025-05-16 08:10:29', 0, NULL, 0, NULL, 1),
(32459, 25053, '3', 'Madras university', '', 'B. Com (cs) ', '2022', 69.00, '', 1, '2025-05-16 03:32:47', 0, NULL, 0, NULL, 1),
(32460, 25054, '4', 'Anna University ', '', 'MCA', '2024', 85.00, '', 1, '2025-05-19 04:49:42', 0, NULL, 0, NULL, 1),
(32461, 25054, '3', 'Tiruvalluvar University ', '', 'BCA', '2022', 80.00, '', 1, '2025-05-19 04:50:07', 0, NULL, 0, NULL, 1),
(32462, 25055, '1', 'State board', '', '', '2021', 51.00, '', 1, '2025-05-19 05:22:33', 0, NULL, 0, NULL, 1),
(32463, 25056, '1', 'CBSE', '', '', '2019', 52.00, '', 1, '2025-05-19 06:26:06', 0, NULL, 0, NULL, 1),
(32464, 25056, '2', 'TAMIL NADU STATE BOARD', '', '', '2021', 69.00, '', 1, '2025-05-19 06:26:52', 0, NULL, 0, NULL, 1),
(32465, 25056, '3', 'VIT VELLORE ', '', 'BBA', '2024', 75.00, '', 1, '2025-05-19 06:27:42', 0, NULL, 0, NULL, 1),
(32466, 25056, '4', 'SRM UNIVERSITY ', '', 'MBA', '2026', 83.00, '', 1, '2025-05-19 06:28:37', 0, NULL, 0, NULL, 1),
(32467, 25057, '4', 'University of Madras ', '', 'MA HRM', '2025', 74.00, '', 1, '2025-05-19 07:16:29', 0, NULL, 0, NULL, 1),
(32468, 25059, '4', 'University of Madras ', '', 'M.A HRM', '2026', 7.30, '', 1, '2025-05-19 07:16:54', 0, NULL, 0, NULL, 1),
(32469, 25058, '4', 'madras univer ', '', 'ma human resource management', '2026', 71.20, '', 1, '2025-05-19 07:20:38', 0, NULL, 0, NULL, 1),
(32470, 25060, '3', 'Guru Nanak College, Chennai', '', 'BBA', '2025', 75.00, '', 1, '2025-05-19 08:03:20', 0, NULL, 0, NULL, 1),
(32471, 18195, '3', 'Srimad Andavar arts&science college ', '', 'B.sc viscom', '2021', 8.20, '', 1, '2025-05-19 09:21:16', 0, NULL, 0, NULL, 1),
(32472, 25061, '3', 'University of madras', '', 'B.com( corporate secretaryship)', '2025', 70.00, '', 1, '2025-05-19 11:42:07', 0, NULL, 0, NULL, 1),
(32473, 25062, '3', 'University of madras ', '', 'B.Com( corporate secretaryship)', '2025', 70.00, '', 1, '2025-05-19 11:46:36', 0, NULL, 0, NULL, 1),
(32474, 25063, '3', 'Anna University', '', 'BE (Mechanical) ', '2018', 61.90, '', 1, '2025-05-20 03:58:08', 0, NULL, 0, NULL, 1),
(32475, 25064, '4', 'Annamalai University', '', 'MCA', '2024', 76.60, '', 1, '2025-05-20 04:46:08', 0, NULL, 0, NULL, 1),
(32476, 25064, '3', 'Thiruvalluvar University', '', 'BCA', '2021', 67.60, '', 1, '2025-05-20 04:47:13', 0, NULL, 0, NULL, 1),
(32477, 25064, '2', 'Tamil Nadu board', '', '', '2018', 65.70, '', 1, '2025-05-20 04:48:09', 0, NULL, 0, NULL, 1),
(32478, 25064, '1', 'Tamil Nadu board', '', '', '2016', 77.60, '', 1, '2025-05-20 04:49:13', 0, NULL, 0, NULL, 1),
(32479, 25065, '3', 'Madras university', '', 'B. Com', '2024', 60.00, '', 1, '2025-05-20 07:01:13', 0, NULL, 0, NULL, 1),
(32480, 25066, '3', 'Mangalore University ', '', 'B com', '2021', 50.54, '', 1, '2025-05-20 07:12:40', 0, NULL, 0, NULL, 1),
(32481, 25067, '3', 'University of Madras ', '', 'B com', '2025', 70.00, '', 1, '2025-05-20 09:19:24', 0, NULL, 0, NULL, 1),
(32482, 25068, '3', 'University of madras', '', 'B.com', '2025', 70.00, '', 1, '2025-05-20 09:24:54', 0, NULL, 0, NULL, 1),
(32483, 25070, '5', 'Department of technical education ', '', '', '2021', 65.00, '', 1, '2025-05-20 12:46:51', 0, NULL, 0, NULL, 1),
(32484, 25073, '3', 'university', '', 'be', '2024', 67.00, '', 1, '2025-05-21 05:14:35', 1, '2025-05-21 05:16:52', 0, NULL, 1),
(32485, 25073, '2', 'state board', '', '', '2020', 63.00, '', 1, '2025-05-21 05:16:10', 0, NULL, 0, NULL, 1),
(32486, 25074, '1', 'State ', '', '', '2018', 83.60, '', 1, '2025-05-21 05:17:16', 1, '2025-05-21 05:18:25', 0, NULL, 1),
(32487, 25073, '1', 'state board', '', '', '2018', 82.00, '', 1, '2025-05-21 05:17:19', 0, NULL, 0, NULL, 1),
(32488, 25074, '2', 'State', '', '', '2020', 72.00, '', 1, '2025-05-21 05:19:06', 0, NULL, 0, NULL, 1),
(32489, 25074, '3', 'Anna University ', '', 'BE CSE', '2024', 76.00, '', 1, '2025-05-21 05:20:13', 0, NULL, 0, NULL, 1),
(32490, 25075, '3', 'Madras university ', '', 'BBA', '2025', 57.00, '', 1, '2025-05-21 05:42:38', 0, NULL, 0, NULL, 1),
(32491, 25041, '4', 'University ', '', 'B.com.cs', '2025', 71.00, '', 1, '2025-05-21 06:37:29', 0, NULL, 0, NULL, 1),
(32492, 25076, '3', 'University of madras', '', 'B.sc., computer science', '2025', 75.00, '', 1, '2025-05-21 06:43:45', 0, NULL, 0, NULL, 1),
(32493, 25076, '1', 'state Board of Tamilnadu', '', '', '2020', 95.50, '', 1, '2025-05-21 06:44:51', 1, '2025-05-21 06:45:29', 0, NULL, 1),
(32494, 25076, '2', 'State board of Tamilnadu', '', '', '2022', 73.00, '', 1, '2025-05-21 06:45:54', 0, NULL, 0, NULL, 1),
(32495, 25077, '3', 'veltech engineering college', '', 'bachelor of engineering', '2023', 7.80, '', 1, '2025-05-21 06:54:07', 0, NULL, 0, NULL, 1),
(32496, 25079, '3', 'Srm Institute of science and technology ', '', 'Bsc computer science ', '2024', 80.00, '', 1, '2025-05-21 09:09:59', 0, NULL, 0, NULL, 1),
(32497, 25080, '3', 'jain univesity', '', 'bba', '2025', 72.00, '', 1, '2025-05-21 09:19:53', 0, NULL, 0, NULL, 1),
(32498, 25071, '3', 'Madras University ', '', 'B.com ISM', '2025', 56.00, '', 1, '2025-05-21 09:28:29', 0, NULL, 0, NULL, 1),
(32499, 25081, '1', 'st james high school', '', '', '2016', 69.00, '', 1, '2025-05-21 09:59:38', 0, NULL, 0, NULL, 1),
(32500, 25078, '3', 'University of Madras ', '', 'Bachelor of computer application ', '2025', 57.00, '', 1, '2025-05-21 10:55:04', 0, NULL, 0, NULL, 1),
(32501, 25078, '1', 'State board ', '', '', '2020', 56.60, '', 1, '2025-05-21 10:56:10', 0, NULL, 0, NULL, 1),
(32502, 25078, '2', 'State board ', '', '', '2022', 63.33, '', 1, '2025-05-21 10:56:50', 0, NULL, 0, NULL, 1),
(32503, 25082, '3', 'University ', '', 'Bsc (computer science)', '2020', 90.00, '', 1, '2025-05-21 11:13:49', 0, NULL, 0, NULL, 1),
(32504, 25083, '3', 'Saranathan College of Engineering', '', 'B.Tech Information Technology', '2024', 77.20, '', 1, '2025-05-21 12:13:01', 0, NULL, 0, NULL, 1),
(32505, 24750, '3', 'University of madras ', '', 'BBA', '2025', 70.00, '', 1, '2025-05-22 05:07:55', 0, NULL, 0, NULL, 1),
(32506, 24750, '2', 'Andhra Pradesh board', '', '', '2022', 94.00, '', 1, '2025-05-22 05:08:37', 0, NULL, 0, NULL, 1),
(32507, 25085, '3', 'Guru nanak College', '', 'BBA', '2025', 70.00, '', 1, '2025-05-22 06:35:47', 0, NULL, 0, NULL, 1),
(32508, 25084, '3', 'University of madras', '', 'B. Com (c.A)', '2024', 68.00, '', 1, '2025-05-22 06:35:53', 0, NULL, 0, NULL, 1),
(32509, 25087, '4', 'medras university', '', 'bca', '2025', 82.00, '', 1, '2025-05-22 07:53:21', 0, NULL, 0, NULL, 1),
(32510, 25088, '4', 'madras university', '', 'ma economics', '2025', 65.00, '', 1, '2025-05-22 07:56:40', 0, NULL, 0, NULL, 1),
(32511, 25088, '4', 'madras university', '', 'ma economics', '2025', 65.00, '', 1, '2025-05-22 08:02:11', 1, '2025-05-22 08:02:31', 0, NULL, 0),
(32512, 25088, '3', 'madras university', '', 'ba', '2025', 70.00, '', 1, '2025-05-22 08:03:41', 0, NULL, 0, NULL, 1),
(32513, 25088, '2', 'state boar ', '', '', '2025', 75.00, '', 1, '2025-05-22 08:04:55', 0, NULL, 0, NULL, 1),
(32514, 25088, '1', 'state board', '', '', '2025', 66.00, '', 1, '2025-05-22 08:05:41', 0, NULL, 0, NULL, 1),
(32515, 25090, '5', 'Nil', '', 'Computer technology ', '2022', 50.00, '', 1, '2025-05-22 08:22:34', 0, NULL, 0, NULL, 1),
(32516, 25089, '3', 'S.I.V.E.T College ', '', 'BCA', '2024', 60.00, '', 1, '2025-05-22 08:24:47', 0, NULL, 0, NULL, 1),
(32517, 25089, '2', 'Joshua matriculation school ', '', '', '2018', 68.00, '', 1, '2025-05-22 08:26:13', 1, '2025-05-22 08:28:00', 0, NULL, 1),
(32518, 25089, '1', 'Jaigopal garodia national higher secondary school ', '', '', '2021', 77.00, '', 1, '2025-05-22 08:27:25', 0, NULL, 0, NULL, 1),
(32519, 25091, '3', 'Madras University ', '', 'BSc', '2025', 80.00, '', 1, '2025-05-22 09:16:39', 0, NULL, 0, NULL, 1),
(32520, 25092, '3', 'Autonomous ', '', 'B.sc', '2025', 60.00, '', 1, '2025-05-22 09:28:40', 1, '2025-05-22 09:31:52', 0, NULL, 0),
(32521, 25094, '3', 'Autonomous ', '', 'B.sc', '2025', 65.00, '', 1, '2025-05-22 09:33:57', 0, NULL, 0, NULL, 1),
(32522, 25093, '3', 'Autonomous ', '', 'B.sc Geography ', '2025', 61.00, '', 1, '2025-05-22 09:35:28', 0, NULL, 0, NULL, 1),
(32523, 25096, '3', 'Autonomous ', '', 'B.sc geography ', '2025', 60.00, '', 1, '2025-05-22 09:39:00', 0, NULL, 0, NULL, 1),
(32524, 25092, '3', 'Autonomous ', '', 'Bsc geography ', '2025', 60.00, '', 1, '2025-05-22 09:39:33', 0, NULL, 0, NULL, 1),
(32525, 25097, '3', 'SRM institute of science and technology ', '', 'B.com Accounting and finance ', '2025', 7.33, '', 1, '2025-05-22 01:07:41', 0, NULL, 0, NULL, 1),
(32526, 25098, '3', 'Banglore north university ', '', 'BBA ', '2024', 76.00, '', 1, '2025-05-22 03:13:38', 0, NULL, 0, NULL, 1),
(32527, 25101, '2', 'BGS public school and pu college ', '', '', '2021', 60.00, '', 1, '2025-05-22 03:27:14', 0, NULL, 0, NULL, 1),
(32528, 25100, '3', 'Banglore north university ', '', 'BBA ', '2024', 85.00, '', 1, '2025-05-22 03:57:57', 0, NULL, 0, NULL, 1),
(32529, 25102, '5', 'Board', '', '', '2018', 83.00, '', 1, '2025-05-22 07:07:50', 0, NULL, 0, NULL, 1),
(32530, 25102, '1', 'School ', '', '', '2014', 87.00, '', 1, '2025-05-22 07:08:23', 0, NULL, 0, NULL, 1),
(32531, 25086, '3', 'autonomous', '', 'be.cse', '2020', 7.10, '', 1, '2025-05-23 04:16:12', 0, NULL, 0, NULL, 1),
(32532, 25104, '3', 'Periyar University ', '', 'Bachelor\'s of  Science ', '2024', 72.00, '', 1, '2025-05-23 04:46:43', 0, NULL, 0, NULL, 1),
(32533, 25106, '3', 'St Peter\'s University ', '', 'BSC computer science ', '2018', 80.00, '', 1, '2025-05-23 05:13:13', 0, NULL, 0, NULL, 1),
(32534, 25103, '3', 'University ', '', 'Bcom.ca', '2025', 65.00, '', 1, '2025-05-23 05:13:39', 0, NULL, 0, NULL, 1),
(32535, 25107, '3', 'madras university', '', 'b.sc psychology', '2024', 6.38, '', 1, '2025-05-23 05:20:15', 0, NULL, 0, NULL, 1),
(32536, 25107, '2', 'tamil nadu state board', '', '', '2021', 86.00, '', 1, '2025-05-23 05:21:19', 0, NULL, 0, NULL, 1),
(32537, 25107, '1', 'tamil nadu state board', '', '', '2019', 84.00, '', 1, '2025-05-23 05:22:05', 0, NULL, 0, NULL, 1),
(32538, 25105, '5', 'Chendhuran Polytechnic College ', '', 'ECE', '2025', 75.00, '', 1, '2025-05-23 05:22:07', 0, NULL, 0, NULL, 1),
(32539, 25105, '1', 'Matriculation ', '', '', '2021', 70.00, '', 1, '2025-05-23 05:23:40', 0, NULL, 0, NULL, 1),
(32540, 25108, '3', 'Ethiraj College for women ', '', '', '2019', 74.00, '', 1, '2025-05-23 05:43:54', 0, NULL, 0, NULL, 1),
(32541, 25109, '3', 'Anna University ', '', 'B.E - Civil Engineering ', '2019', 68.00, '', 1, '2025-05-23 05:50:07', 0, NULL, 0, NULL, 1),
(32542, 25110, '4', 'University of Madras ', '', 'Master of Business Administration ', '2025', 70.00, '', 1, '2025-05-23 07:00:28', 0, NULL, 0, NULL, 1),
(32543, 25111, '3', 'Anna University ', '', 'BE, CSE', '2023', 70.00, '', 1, '2025-05-23 07:14:51', 0, NULL, 0, NULL, 1),
(32544, 25112, '1', 'Sri Vidya mandir higher secondary school ', '', '', '2016', 82.00, '', 1, '2025-05-23 07:30:50', 0, NULL, 0, NULL, 1),
(32545, 25112, '2', 'SSV Higher Secondary School ', '', '', '2018', 82.00, '', 1, '2025-05-23 07:31:16', 0, NULL, 0, NULL, 1),
(32546, 25112, '3', 'Panimalar Engineering College ', '', 'B.E Mechanical ', '2022', 82.00, '', 1, '2025-05-23 07:31:52', 0, NULL, 0, NULL, 1),
(32547, 25113, '3', 'Anna university', '', 'B.E mechanical engineering', '2020', 65.70, '', 1, '2025-05-23 09:15:30', 0, NULL, 0, NULL, 1),
(32548, 25114, '2', 'Tamilnadu state board ', '', '', '2020', 79.30, '', 1, '2025-05-23 01:04:54', 0, NULL, 0, NULL, 1),
(32549, 25115, '5', 'Department of technical education, banglore ', '', '', '2020', 74.00, '', 1, '2025-05-24 05:10:52', 0, NULL, 0, NULL, 1),
(32550, 25116, '1', 'Board', '', '', '2015', 76.00, '', 1, '2025-05-24 05:53:04', 0, NULL, 0, NULL, 1),
(32551, 25117, '3', 'Madras University ', '', 'Bsc', '2025', 58.00, '', 1, '2025-05-24 05:56:43', 0, NULL, 0, NULL, 1),
(32552, 25118, '5', 'Board', '', 'DECE', '2016', 87.00, '', 1, '2025-05-24 08:42:20', 0, NULL, 0, NULL, 1),
(32553, 25119, '3', 'Madras University ', '', 'BBA', '2020', 73.00, '', 1, '2025-05-24 09:45:19', 0, NULL, 0, NULL, 1),
(32554, 25120, '3', 'Madurai Kamarajar university ', '', 'B.com (CA)', '2022', 72.00, '', 1, '2025-05-24 11:11:03', 0, NULL, 0, NULL, 1),
(32555, 25120, '2', 'Mangayarkarasi HR sec school madurai ', '', '', '2019', 53.00, '', 1, '2025-05-24 11:11:56', 0, NULL, 0, NULL, 1),
(32556, 25122, '1', 'TN board ', '', '', '2017', 79.00, '', 1, '2025-05-26 04:24:47', 0, NULL, 0, NULL, 1),
(32557, 25122, '2', 'TN board ', '', '', '2019', 58.00, '', 1, '2025-05-26 04:25:12', 0, NULL, 0, NULL, 1),
(32558, 25122, '3', 'Periyar University ', '', 'Bsc(computer science)', '2022', 79.00, '', 1, '2025-05-26 04:26:29', 0, NULL, 0, NULL, 1),
(32559, 25122, '4', 'Anna University ', '', 'MCA', '2025', 76.00, '', 1, '2025-05-26 04:26:59', 0, NULL, 0, NULL, 1),
(32560, 25123, '3', 'Dr. M. G. R UNIVERSITY', '', 'BCA', '2025', 5.90, '', 1, '2025-05-26 04:42:17', 0, NULL, 0, NULL, 1),
(32561, 25124, '3', 'DR. M. G. R UNIVERSITY', '', 'BCA', '2025', 4.53, '', 1, '2025-05-26 05:00:46', 0, NULL, 0, NULL, 1),
(32562, 25125, '3', 'Madras University ', '', 'B.sc', '2024', 55.00, '', 1, '2025-05-26 05:15:37', 0, NULL, 0, NULL, 1),
(32563, 25126, '3', 'Madras University ', '', 'B.com', '2025', 65.00, '', 1, '2025-05-26 05:36:56', 0, NULL, 0, NULL, 1),
(32564, 25127, '3', 'Madres university ', '', 'B.Com', '2025', 68.00, '', 1, '2025-05-26 05:37:30', 0, NULL, 0, NULL, 1),
(32565, 25130, '3', 'University ', '', 'B.Tech', '2021', 7.68, '', 1, '2025-05-26 05:40:31', 0, NULL, 0, NULL, 1),
(32566, 25128, '3', 'Government ', '', 'B.sc bio chemistry ', '2022', 75.00, '', 1, '2025-05-26 05:41:12', 0, NULL, 0, NULL, 1),
(32567, 25129, '3', 'Govt college ', '', 'B.com', '2016', 60.00, '', 1, '2025-05-26 06:03:53', 0, NULL, 0, NULL, 1),
(32568, 25131, '3', 'Anna university', '', 'Bachelor of engineering', '2021', 7.20, '', 1, '2025-05-26 06:21:17', 0, NULL, 0, NULL, 1),
(32569, 25133, '1', 'Board', '', '', '2021', 70.00, '', 1, '2025-05-26 06:53:06', 0, NULL, 0, NULL, 1),
(32570, 25134, '2', 'State board ', '', '', '2021', 70.00, '', 1, '2025-05-26 07:04:12', 1, '2025-05-26 07:04:22', 0, NULL, 1),
(32571, 25135, '3', 'Karpagam college of engineering ', '', 'B.E.', '2023', 85.00, '', 1, '2025-05-26 08:39:40', 0, NULL, 0, NULL, 1),
(32572, 25136, '4', 'madurai kamaraj university', '', 'mca', '2025', 72.00, '', 1, '2025-05-26 10:08:04', 0, NULL, 0, NULL, 1),
(32573, 25137, '3', 'Bharathiar university ', '', 'Bachelor degree in business process and data analy', '2024', 78.00, '', 1, '2025-05-26 12:04:35', 0, NULL, 0, NULL, 1),
(32574, 25138, '4', 'Annamalai Universit', '', 'Msc', '2025', 89.00, '', 154, '2025-05-26 05:44:43', 0, NULL, 0, NULL, 1),
(32575, 25121, '3', 'bharathiyar university', '', 'b.com', '2024', 78.03, '', 1, '2025-05-27 04:30:10', 0, NULL, 0, NULL, 1),
(32576, 25139, '1', 'State board ', '', '', '2020', 54.40, '', 1, '2025-05-27 09:15:34', 0, NULL, 0, NULL, 1),
(32577, 25139, '2', 'State board ', '', '', '2022', 61.10, '', 1, '2025-05-27 09:16:25', 0, NULL, 0, NULL, 1),
(32578, 25140, '3', 'Anna university ', '', 'BE', '2016', 78.00, '', 1, '2025-05-27 09:19:45', 0, NULL, 0, NULL, 1),
(32579, 25140, '1', 'Anna university ', '', '', '2010', 92.00, '', 1, '2025-05-27 09:20:18', 0, NULL, 0, NULL, 1),
(32580, 25140, '2', 'Anna university ', '', '', '2012', 88.00, '', 1, '2025-05-27 09:20:39', 0, NULL, 0, NULL, 1),
(32581, 25139, '3', 'mADRAS UNIVERSITY', '', 'BBA', '2025', 72.80, '', 154, '2025-05-27 02:52:11', 0, NULL, 0, NULL, 1),
(32582, 25143, '3', 'atonomous', '', 'b.com', '2023', 69.00, '', 1, '2025-05-27 10:53:04', 0, NULL, 0, NULL, 1),
(32583, 25146, '3', 'andhra university ', '', 'b.com', '2013', 71.00, '', 1, '2025-05-28 06:10:05', 0, NULL, 0, NULL, 1),
(32584, 25143, '2', 'state board', '', 'b.com', '2019', 70.00, '', 1, '2025-05-28 06:18:04', 0, NULL, 0, NULL, 1),
(32585, 25148, '1', 'State board', '', '', '2017', 72.00, '', 1, '2025-05-28 06:23:07', 0, NULL, 0, NULL, 1),
(32586, 25147, '3', 'Madras University ', '', 'Bcom', '2023', 60.00, '', 1, '2025-05-28 06:24:24', 0, NULL, 0, NULL, 1),
(32587, 25145, '1', 'state board', '', '', '2019', 40.00, '', 1, '2025-05-28 06:40:40', 0, NULL, 0, NULL, 1),
(32588, 25149, '3', 'Madras University ', '', 'B A English ', '2021', 75.00, '', 1, '2025-05-28 06:49:33', 0, NULL, 0, NULL, 1),
(32589, 25144, '3', 'bangalore university', '', '', '2024', 9.40, '', 1, '2025-05-28 06:53:20', 0, NULL, 0, NULL, 1),
(32590, 25150, '3', 'Anna University ', '', 'B. Tech', '2021', 81.00, '', 1, '2025-05-28 06:55:24', 0, NULL, 0, NULL, 1),
(32591, 25151, '1', 'Karnataka board ', '', '', '2016', 60.00, '', 1, '2025-05-28 07:24:58', 0, NULL, 0, NULL, 1),
(32592, 25151, '5', 'Banglore board', '', 'Fire safety diploma', '2018', 72.00, '', 1, '2025-05-28 07:25:35', 0, NULL, 0, NULL, 1),
(32593, 25152, '3', 'Madras University ', '', 'Bba', '2025', 76.00, '', 1, '2025-05-28 07:34:39', 0, NULL, 0, NULL, 1),
(32594, 25154, '3', 'Madras University ', '', 'B.com general', '2024', 82.00, '', 1, '2025-05-28 09:43:16', 0, NULL, 0, NULL, 1),
(32595, 24993, '2', 'Tamilnadu State Board', '', '', '2018', 64.00, '', 1, '2025-05-28 06:03:50', 0, NULL, 0, NULL, 1),
(32596, 25158, '3', 'Annamalai University chithambaram', '', 'BA, English ', '2025', 68.00, '', 1, '2025-05-29 05:47:50', 0, NULL, 0, NULL, 1),
(32597, 25159, '1', 'CBSE', '', '', '2019', 49.90, '', 1, '2025-05-29 05:48:53', 0, NULL, 0, NULL, 1),
(32598, 25156, '3', 'Madras University ', '', 'B.com CS', '2025', 70.00, '', 1, '2025-05-29 06:06:56', 0, NULL, 0, NULL, 1),
(32599, 25157, '3', 'Madras University', '', 'B. Com cS', '2025', 80.00, '', 1, '2025-05-29 06:07:48', 0, NULL, 0, NULL, 1),
(32600, 25161, '3', 'University of Madras ', '', 'BBA', '2025', 76.00, '', 1, '2025-05-29 07:21:47', 0, NULL, 0, NULL, 1),
(32601, 25160, '3', 'University of Madras ', '', 'BBA', '2025', 78.00, '', 1, '2025-05-29 07:26:19', 0, NULL, 0, NULL, 1),
(32602, 25162, '3', 'University of Madras ', '', 'BBA', '2025', 74.00, '', 1, '2025-05-29 07:30:45', 0, NULL, 0, NULL, 1),
(32603, 25163, '5', 'vishweshwaraiah technological university', '', 'Diploma in automobile engineering ', '2013', 75.00, '', 1, '2025-05-29 07:32:30', 0, NULL, 0, NULL, 1),
(32604, 25155, '3', 'Madras university', '', 'B. Com', '2024', 77.00, '', 1, '2025-05-29 08:52:29', 0, NULL, 0, NULL, 1),
(32605, 25164, '3', 'Anna university ', '', 'B.e ECE', '2023', 79.00, '', 1, '2025-05-29 08:59:43', 0, NULL, 0, NULL, 1),
(32606, 25166, '4', 'bangalo university', '', 'mba', '2025', 6.80, '', 1, '2025-05-29 01:34:13', 0, NULL, 0, NULL, 1),
(32607, 25167, '3', 'Pondicherry University ', '', 'BSc biochemistry ', '2023', 83.00, '', 1, '2025-05-30 05:40:53', 0, NULL, 0, NULL, 1),
(32608, 25169, '3', 'Bharathidasan university ', '', 'Bachelor of computer applications ', '2021', 81.00, '', 1, '2025-05-30 05:44:02', 0, NULL, 0, NULL, 1),
(32609, 25170, '3', 'University of Madras ', '', 'BCA', '2015', 70.00, '', 1, '2025-05-30 05:44:05', 0, NULL, 0, NULL, 1),
(32610, 25170, '2', 'State board ', '', '', '2011', 57.00, '', 1, '2025-05-30 05:45:27', 0, NULL, 0, NULL, 1),
(32611, 25170, '1', 'State board ', '', '', '2009', 56.00, '', 1, '2025-05-30 05:46:11', 0, NULL, 0, NULL, 1),
(32612, 25171, '2', 'vijaya college university', '', '', '2021', 60.00, '', 1, '2025-05-30 02:03:18', 0, NULL, 0, NULL, 1),
(32613, 25173, '4', 'Govt Arts and Science college', '', 'MBA', '2026', 8.00, '', 1, '2025-05-31 05:16:41', 0, NULL, 0, NULL, 1),
(32614, 25172, '3', 'Madras University ', '', 'B.com cs', '2025', 71.00, '', 1, '2025-05-31 06:20:05', 0, NULL, 0, NULL, 1),
(32615, 25174, '3', 'Madras University', '', 'BSc Plant biology and Plant biotechnology', '2025', 88.00, '', 1, '2025-05-31 10:05:52', 0, NULL, 0, NULL, 1),
(32616, 25176, '4', 'University ', '', 'MBA', '2024', 84.00, '', 1, '2025-05-31 10:11:42', 0, NULL, 0, NULL, 1),
(32617, 25175, '3', 'Madras university', '', 'BSc (Clinical Nutrition and dietetics) ', '2025', 80.00, '', 1, '2025-05-31 10:17:29', 0, NULL, 0, NULL, 1),
(32618, 25179, '5', 'Don Bosco Polytechnic College', '', 'Electronic Communication engineering', '2025', 80.00, '', 1, '2025-05-31 02:34:30', 0, NULL, 0, NULL, 1),
(32619, 25178, '5', 'Dote', '', 'ECE ', '2025', 98.00, '', 1, '2025-06-01 03:15:00', 0, NULL, 0, NULL, 1),
(32620, 25180, '3', 'MADURAI KAMARAJAR UNIVERSITY ', '', 'BACHELOR OF ART', '2022', 71.00, '', 1, '2025-06-01 05:36:02', 1, '2025-06-02 06:07:55', 0, NULL, 0),
(32621, 25181, '5', 'V.ramakrishana polytechnic college ', '', 'D.e.e.e', '2021', 78.00, '', 1, '2025-06-02 04:57:45', 0, NULL, 0, NULL, 1),
(32622, 25184, '4', 'Pondicherry University ', '', 'MCA ', '2023', 79.00, '', 1, '2025-06-02 05:16:33', 0, NULL, 0, NULL, 1),
(32623, 25185, '3', 'Anna University ', '', 'Btech information technology ', '2021', 7.40, '', 1, '2025-06-02 05:56:14', 0, NULL, 0, NULL, 1),
(32624, 25187, '3', 'University of Madras ', '', 'BSC-CS', '2025', 73.00, '', 1, '2025-06-02 06:01:19', 0, NULL, 0, NULL, 1),
(32625, 25186, '3', 'University of Madras ', '', 'B.Sc Computer science ', '2025', 85.00, '', 1, '2025-06-02 06:02:25', 0, NULL, 0, NULL, 1),
(32626, 25188, '3', 'University of Madras ', '', 'BSC Computer science ', '2025', 70.00, '', 1, '2025-06-02 06:02:44', 0, NULL, 0, NULL, 1),
(32627, 25180, '3', 'MADURAI KAMARAJ UNIVERSITY ', '', 'BACHELOR\'S OF ARTS', '2022', 71.00, '', 1, '2025-06-02 06:09:06', 0, NULL, 0, NULL, 1),
(32628, 25189, '3', 'Madras university ', '', 'B.com', '2025', 66.00, '', 1, '2025-06-02 06:41:36', 0, NULL, 0, NULL, 1),
(32629, 25190, '3', 'Justice Basheer Ahmed sayeed women college autonamous ', '', 'B.com (ism)', '2025', 60.00, '', 1, '2025-06-02 06:52:06', 0, NULL, 0, NULL, 1),
(32630, 25191, '3', 'Madras university', '', 'B. Com cs ( corporate secretary ship) ', '2025', 70.00, '', 1, '2025-06-02 07:11:31', 0, NULL, 0, NULL, 1),
(32631, 25196, '3', 'Madras University ', '', 'BCA', '2025', 71.00, '', 1, '2025-06-02 07:13:37', 0, NULL, 0, NULL, 1),
(32632, 25192, '3', 'Madras University ', '', 'B.com CA', '2025', 70.00, '', 1, '2025-06-02 07:13:48', 0, NULL, 0, NULL, 1),
(32633, 25193, '3', 'Madras university ', '', 'Viscom', '2023', 80.00, '', 1, '2025-06-02 07:15:08', 0, NULL, 0, NULL, 1),
(32634, 25194, '3', 'Dmd university', '', 'B.A-defence', '2025', 60.00, '', 1, '2025-06-02 07:19:16', 0, NULL, 0, NULL, 1),
(32635, 25198, '3', 'Madras university ', '', 'Bba', '2023', 80.00, '', 1, '2025-06-02 07:24:31', 0, NULL, 0, NULL, 1),
(32636, 25195, '3', 'presidenc college', '', 'B.com', '2025', 72.00, '', 1, '2025-06-02 07:32:17', 154, '2025-06-02 01:06:21', 0, NULL, 1),
(32637, 25197, '3', 'Madras University ', '', 'B.com', '2025', 70.00, '', 1, '2025-06-02 07:44:35', 0, NULL, 0, NULL, 1),
(32638, 25201, '3', 'a.m jain college', '', 'b.com', '2020', 75.00, '', 1, '2025-06-02 07:51:33', 0, NULL, 0, NULL, 1),
(32639, 25199, '3', 'Madras University ', '', 'B.com.general', '2025', 68.00, '', 1, '2025-06-02 07:57:49', 0, NULL, 0, NULL, 1),
(32640, 25200, '3', 'Madras University ', '', 'Bcom general ', '2025', 75.00, '', 1, '2025-06-02 08:04:42', 0, NULL, 0, NULL, 1),
(32641, 25202, '4', 'Bharathidasan university ', '', 'M.sc.computer science ', '2025', 65.00, '', 1, '2025-06-02 08:49:47', 0, NULL, 0, NULL, 1),
(32642, 25203, '3', 'university of madras ', '', 'b.com', '2024', 82.00, '', 1, '2025-06-02 10:23:17', 0, NULL, 0, NULL, 1),
(32643, 25204, '3', 'St Thomas college of arts and science ', '', 'B com (bank management)', '2025', 75.00, '', 1, '2025-06-02 03:44:53', 0, NULL, 0, NULL, 1),
(32644, 25205, '3', 'periyar university salem', '', 'bca ', '2021', 70.00, '', 1, '2025-06-02 09:38:38', 0, NULL, 0, NULL, 1),
(32645, 25205, '2', 'sri vidya mandir sr sec school cbse', '', '', '2018', 75.00, '', 1, '2025-06-02 09:39:57', 0, NULL, 0, NULL, 1),
(32646, 25206, '3', 'University of Madras', '', 'BCA', '2025', 64.00, '', 1, '2025-06-03 04:18:32', 0, NULL, 0, NULL, 1),
(32647, 25208, '3', 'Vels University ', '', 'Bsc - Cyber Security ', '2025', 70.00, '', 1, '2025-06-03 05:35:25', 0, NULL, 0, NULL, 1),
(32648, 25209, '3', 'University ', '', 'BE', '2019', 70.00, '', 1, '2025-06-03 05:39:49', 0, NULL, 0, NULL, 1),
(32649, 25209, '1', 'Tamil mediuk', '', '', '2010', 90.00, '', 1, '2025-06-03 05:40:25', 0, NULL, 0, NULL, 1),
(32650, 25209, '2', 'Tamil medium', '', '', '2012', 90.00, '', 1, '2025-06-03 05:40:46', 0, NULL, 0, NULL, 1),
(32651, 25210, '5', 'University ', '', 'No', '2024', 66.00, '', 1, '2025-06-03 05:47:04', 0, NULL, 0, NULL, 1),
(32652, 25213, '4', 'Bharathidasan ', '', 'MBA ', '2025', 78.00, '', 1, '2025-06-03 05:59:09', 0, NULL, 0, NULL, 1),
(32653, 25212, '3', 'Thiruvalluvar university ', '', 'BBA- bachelor of business administration ', '2024', 75.00, '', 1, '2025-06-03 06:06:12', 0, NULL, 0, NULL, 1),
(32654, 25211, '3', 'Bharathidasan university ', '', 'Bsc hA', '2024', 75.00, '', 1, '2025-06-03 06:06:17', 0, NULL, 0, NULL, 1),
(32655, 25216, '3', 'Madars University ', '', 'B.A.Economics', '2025', 75.00, '', 1, '2025-06-03 06:08:04', 0, NULL, 0, NULL, 1),
(32656, 25215, '3', 'University of Madras ', '', 'Bcom', '2025', 74.50, '', 1, '2025-06-03 06:08:36', 0, NULL, 0, NULL, 1),
(32657, 25217, '3', 'alagappa university', '', 'bba airline and airport management', '2025', 50.00, '', 1, '2025-06-03 06:18:13', 0, NULL, 0, NULL, 1),
(32658, 25218, '3', 'Madras University ', '', 'BA Economics ', '2025', 75.00, '', 1, '2025-06-03 06:19:46', 0, NULL, 0, NULL, 1),
(32659, 25219, '3', 'Hindustan College of Arts and science ', '', 'BSC.COMPUTER SCIENCE ', '2025', 50.20, '', 1, '2025-06-03 06:23:09', 0, NULL, 0, NULL, 1),
(32660, 25214, '3', 'University of Madras ', '', 'B.com', '2025', 50.00, '', 1, '2025-06-03 06:36:50', 0, NULL, 0, NULL, 1),
(32661, 25221, '3', 'Anna Univercity', '', 'B.E(ECE)', '2021', 73.80, '', 1, '2025-06-03 06:56:33', 0, NULL, 0, NULL, 1),
(32662, 25207, '3', 'Sri Padmavathi Women’s Degree and Pg College', '', 'bca', '2025', 82.65, '', 154, '2025-06-03 04:46:07', 0, NULL, 0, NULL, 1),
(32663, 25222, '2', 'Board of intermediate education AP ', '', '', '2012', 55.00, '', 1, '2025-06-03 01:37:15', 0, NULL, 0, NULL, 1),
(32664, 25224, '4', 'SRM University ', '', 'MSC', '2025', 8.30, '', 1, '2025-06-03 06:28:19', 0, NULL, 0, NULL, 1),
(32665, 25225, '3', 'University of Madras', '', 'B com ', '2025', 69.00, '', 1, '2025-06-04 05:13:09', 0, NULL, 0, NULL, 1),
(32666, 25226, '4', 'srm university ', '', 'mba al ds ', '2026', 8.30, '', 1, '2025-06-04 06:02:57', 0, NULL, 0, NULL, 1),
(32667, 25227, '4', 'Anna university ', '', 'MBA', '2024', 56.00, '', 1, '2025-06-04 06:25:57', 0, NULL, 0, NULL, 1),
(32668, 25228, '3', 'Bharath University ', '', 'Bsc chemistry ', '2023', 70.00, '', 1, '2025-06-04 06:31:03', 0, NULL, 0, NULL, 1),
(32669, 25229, '4', 'SRM University, Chennai ', '', 'MBA in artificial intelligence and data science ', '2026', 6.90, '', 1, '2025-06-04 06:32:06', 0, NULL, 0, NULL, 1),
(32670, 25230, '3', 'Bannari Amman Institute Of Technology ', '', '', '2025', 77.00, '', 1, '2025-06-04 08:12:29', 0, NULL, 0, NULL, 1),
(32671, 25231, '5', 'Guru raagavindra polytechnic college ', '', 'DECE', '2022', 92.00, '', 1, '2025-06-04 11:02:44', 0, NULL, 0, NULL, 1),
(32672, 25232, '3', 'Anna University ', '', 'B.tech-Information technology ', '2024', 83.00, '', 1, '2025-06-04 11:13:10', 0, NULL, 0, NULL, 1),
(32673, 25233, '3', 'Thiruvallur university ', '', 'Ba english', '2022', 80.00, '', 1, '2025-06-04 11:51:33', 0, NULL, 0, NULL, 1),
(32674, 25237, '1', 'S. B. O. A. School and Junior College', '', '', '2017', 76.00, '', 1, '2025-06-05 05:30:58', 1, '2025-06-05 05:33:39', 0, NULL, 0),
(32675, 25234, '1', 'State board ', '', '', '2018', 70.40, '', 1, '2025-06-05 05:31:08', 0, NULL, 0, NULL, 1),
(32676, 25237, '2', 'Velammal Matric Hr.Sec.School', '', '', '2019', 54.80, '', 1, '2025-06-05 05:31:47', 0, NULL, 0, NULL, 1),
(32677, 25234, '2', 'State board ', '', '', '2020', 68.33, '', 1, '2025-06-05 05:32:04', 0, NULL, 0, NULL, 1),
(32678, 25237, '3', 'R.m.D. Engineering College', '', 'B.E', '2023', 83.40, '', 1, '2025-06-05 05:32:30', 0, NULL, 0, NULL, 1),
(32679, 25234, '3', 'University of Madras ', '', 'BCA(computer application)', '2023', 7.13, '', 1, '2025-06-05 05:32:58', 0, NULL, 0, NULL, 1),
(32680, 25235, '3', 'University of Madras ', '', 'BCA', '2023', 6.90, '', 1, '2025-06-05 05:34:09', 0, NULL, 0, NULL, 1),
(32681, 25237, '1', 'S. B. O. A.  School and Junior College', '', '', '2017', 76.00, '', 1, '2025-06-05 05:34:22', 0, NULL, 0, NULL, 1),
(32682, 25236, '3', 'University of Madras', '', '', '2024', 73.00, '', 1, '2025-06-05 05:34:54', 0, NULL, 0, NULL, 1),
(32683, 25238, '4', 'University of Madras ', '', 'Msc', '2025', 75.00, '', 1, '2025-06-05 06:00:17', 0, NULL, 0, NULL, 1),
(32684, 25239, '3', 'Stella Maris College ', '', '', '2025', 60.00, '', 1, '2025-06-05 06:05:41', 0, NULL, 0, NULL, 1),
(32685, 25243, '3', 'University college of engineering thirukkuvalai ', '', 'BE ', '2023', 7.98, '', 1, '2025-06-05 06:25:24', 0, NULL, 0, NULL, 1),
(32686, 25241, '3', 'Madras University ', '', 'B.sc plant biology and plant biotechnology ', '2025', 75.00, '', 1, '2025-06-05 06:41:19', 0, NULL, 0, NULL, 1),
(32687, 25240, '3', 'Madras university', '', 'B. Sc plant biology and plant biotechnology', '2025', 70.00, '', 1, '2025-06-05 06:41:29', 0, NULL, 0, NULL, 1),
(32688, 25244, '3', 'Banglore university', '', 'Bcom', '2020', 75.00, '', 1, '2025-06-05 07:12:33', 0, NULL, 0, NULL, 1),
(32689, 25242, '3', 'madras universit', '', 'bsc.cs', '2025', 85.00, '', 1, '2025-06-05 07:18:08', 0, NULL, 0, NULL, 1),
(32690, 25245, '3', 'Ranchi ', '', 'Bcom', '2007', 60.00, '', 1, '2025-06-05 07:18:46', 0, NULL, 0, NULL, 1),
(32691, 25247, '3', 'Madras University ', '', 'BCAL', '2022', 70.00, '', 1, '2025-06-05 08:46:27', 0, NULL, 0, NULL, 1),
(32692, 25246, '3', 'thiruvallur university', '', 'bcom ', '2023', 80.00, '', 1, '2025-06-05 09:16:57', 0, NULL, 0, NULL, 1),
(32693, 25248, '4', 'Srm university ', '', 'MBA', '2025', 89.10, '', 1, '2025-06-06 06:27:25', 0, NULL, 0, NULL, 1),
(32694, 25249, '4', 'SRM', '', 'MBA', '2026', 96.00, '', 1, '2025-06-06 06:28:24', 0, NULL, 0, NULL, 1),
(32695, 25249, '3', 'Madras ', '', 'B.com', '2024', 85.00, '', 1, '2025-06-06 06:28:54', 0, NULL, 0, NULL, 1),
(32696, 25249, '2', 'State', '', '', '2021', 94.00, '', 1, '2025-06-06 06:29:32', 0, NULL, 0, NULL, 1),
(32697, 25249, '1', 'State', '', '', '2019', 90.00, '', 1, '2025-06-06 06:29:54', 0, NULL, 0, NULL, 1),
(32698, 25248, '3', 'Madras University ', '', 'B.com general ', '2024', 74.90, '', 1, '2025-06-06 06:30:23', 0, NULL, 0, NULL, 1),
(32699, 25250, '3', 'Anna university ', '', 'B E', '2017', 60.00, '', 1, '2025-06-06 07:04:42', 0, NULL, 0, NULL, 1),
(32700, 25250, '1', 'State board', '', '', '2011', 83.00, '', 1, '2025-06-06 07:05:42', 0, NULL, 0, NULL, 1),
(32701, 25250, '2', 'State board ', '', '', '2013', 60.00, '', 1, '2025-06-06 07:06:04', 0, NULL, 0, NULL, 1),
(32702, 25251, '3', 'Periya university ', '', 'b.sc.computer science ', '2022', 85.00, '', 1, '2025-06-06 07:11:19', 0, NULL, 0, NULL, 1),
(32703, 25252, '3', 'Madras university', '', 'B. Com (general) ', '2025', 70.00, '', 1, '2025-06-06 07:25:00', 0, NULL, 0, NULL, 1),
(32704, 25254, '3', 'University of madras ', '', 'Bachelor of business administration ', '2025', 70.00, '', 1, '2025-06-06 10:45:57', 0, NULL, 0, NULL, 1),
(32705, 25253, '3', 'Madras university', '', 'Bcom', '2022', 65.00, '', 1, '2025-06-06 10:51:28', 0, NULL, 0, NULL, 1),
(32706, 25256, '3', 'University of madras ', '', 'Bachelor of arts ', '2022', 60.00, '', 1, '2025-06-06 10:56:39', 0, NULL, 0, NULL, 1),
(32707, 25255, '3', 'Madras University ', '', 'BBA', '2025', 60.00, '', 1, '2025-06-06 11:01:14', 0, NULL, 0, NULL, 1),
(32708, 25258, '3', 'Sri Venkateshwaraa college of technology ', '', 'B.tech artificial intelligence and data science ', '2025', 80.00, '', 1, '2025-06-07 04:52:46', 0, NULL, 0, NULL, 1),
(32709, 25258, '2', 'Chennai higher secondary school Velachery Chennai 42 ', '', '', '2021', 87.00, '', 1, '2025-06-07 04:53:08', 0, NULL, 0, NULL, 1),
(32710, 25258, '1', 'Chennai higher secondary school Velachery Chennai 42 ', '', '', '2018', 83.00, '', 1, '2025-06-07 04:53:26', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(32711, 25259, '3', 'St Peter\'s institute higher education and research and Avadi ', '', 'B com bank management ', '2023', 7.71, '', 1, '2025-06-07 06:04:00', 0, NULL, 0, NULL, 1),
(32712, 25260, '3', 'Manonmaniam sundaranar university ', '', 'BBA ', '2025', 70.00, '', 1, '2025-06-09 05:04:08', 0, NULL, 0, NULL, 1),
(32713, 25261, '3', ' Manonmaniam sundaranar university', '', 'BBA', '2025', 65.00, '', 1, '2025-06-09 05:20:13', 0, NULL, 0, NULL, 1),
(32714, 25262, '3', 'University of Madras', '', 'B.com ', '2021', 86.00, '', 1, '2025-06-09 05:36:55', 0, NULL, 0, NULL, 1),
(32715, 25263, '3', 'Madras University ', '', 'B.com corporate secretaryship ', '2025', 80.00, '', 1, '2025-06-09 05:37:31', 0, NULL, 0, NULL, 1),
(32716, 25264, '4', 'Anna University ', '', 'Mba ', '2025', 75.00, '', 1, '2025-06-09 05:53:02', 0, NULL, 0, NULL, 1),
(32717, 25264, '3', 'Madras University ', '', 'Mba ', '2023', 75.00, '', 1, '2025-06-09 05:53:28', 0, NULL, 0, NULL, 1),
(32718, 25264, '2', 'State board ', '', '', '2020', 73.00, '', 1, '2025-06-09 05:54:12', 0, NULL, 0, NULL, 1),
(32719, 25264, '1', 'State board ', '', '', '2018', 80.00, '', 1, '2025-06-09 05:54:29', 0, NULL, 0, NULL, 1),
(32720, 25265, '3', 'madras university ', '', 'b.com cs', '2025', 80.00, '', 1, '2025-06-09 06:05:19', 0, NULL, 0, NULL, 1),
(32721, 25267, '3', 'middlesex ', '', 'business ', '2024', 80.00, '', 1, '2025-06-09 07:33:55', 0, NULL, 0, NULL, 1),
(32722, 25268, '3', 'Madras University Chennai ', '', 'B.A english literature ', '2025', 55.00, '', 1, '2025-06-09 12:10:58', 0, NULL, 0, NULL, 1),
(32723, 25269, '4', 'University of Madras', '', 'M.A. Sociology ', '2022', 6.70, '', 1, '2025-06-09 01:02:39', 1, '2025-06-09 01:05:36', 0, NULL, 0),
(32724, 25269, '3', 'M.O.P.Vaishnav College for women ', '', 'B.A.Sociology', '2020', 7.50, '', 1, '2025-06-09 01:05:21', 1, '2025-06-09 01:05:40', 0, NULL, 0),
(32725, 25269, '1', 'J.G.H.V.Matriculation.Higher.Secondary.School', '', '', '2015', 91.00, '', 1, '2025-06-09 01:06:53', 0, NULL, 0, NULL, 1),
(32726, 25269, '2', 'J.G.H.V.Matriculation.Higher.Secondary.School', '', '', '2017', 86.00, '', 1, '2025-06-09 01:08:02', 0, NULL, 0, NULL, 1),
(32727, 25269, '3', 'M.O.P. Vaishnav.College for Women', '', 'Bachelor of Arts in Sociology', '2020', 76.00, '', 1, '2025-06-09 01:09:18', 0, NULL, 0, NULL, 1),
(32728, 25269, '4', 'University of Madras ', '', 'Master of Arts in Sociology', '2022', 67.00, '', 1, '2025-06-09 01:09:44', 0, NULL, 0, NULL, 1),
(32729, 25270, '3', 'Madras University ', '', 'Bcom bank management ', '2025', 76.30, '', 1, '2025-06-10 05:01:31', 0, NULL, 0, NULL, 1),
(32730, 25272, '3', 'Bharathidasan university ', '', 'BBA', '2023', 77.18, '', 1, '2025-06-10 05:42:58', 0, NULL, 0, NULL, 1),
(32731, 25271, '3', 'Bharathi Women\'s College', '', 'BA', '2020', 80.00, '', 1, '2025-06-10 05:43:30', 0, NULL, 0, NULL, 1),
(32732, 25274, '3', 'Madras University', '', 'B.com', '2025', 60.00, '', 1, '2025-06-10 05:45:32', 0, NULL, 0, NULL, 1),
(32733, 25273, '3', 'University of Madras ', '', 'B.com (CS)', '2025', 67.00, '', 1, '2025-06-10 05:49:18', 0, NULL, 0, NULL, 1),
(32734, 25275, '1', 'STATE BOARD ', '', '', '2019', 84.00, '', 1, '2025-06-10 05:49:45', 0, NULL, 0, NULL, 1),
(32735, 25275, '2', 'STATE BOARD ', '', '', '2021', 89.00, '', 1, '2025-06-10 05:50:02', 0, NULL, 0, NULL, 1),
(32736, 25273, '2', 'Tamil Nadu ', '', '', '2022', 80.00, '', 1, '2025-06-10 05:50:42', 1, '2025-06-10 05:51:24', 0, NULL, 1),
(32737, 25273, '1', 'Tamil Nadu ', '', '', '2020', 64.00, '', 1, '2025-06-10 05:51:47', 0, NULL, 0, NULL, 1),
(32738, 25276, '3', 'Madurai Kamaraj University ', '', 'B.Sc.Maths', '2025', 70.00, '', 1, '2025-06-10 05:54:07', 0, NULL, 0, NULL, 1),
(32739, 25277, '3', 'Madras University ', '', 'B.Sc Computer Science ', '2025', 71.00, '', 1, '2025-06-10 06:00:27', 0, NULL, 0, NULL, 1),
(32740, 25278, '3', 'Madras University ', '', 'Bachelor of Computer Application ', '2025', 70.00, '', 1, '2025-06-10 06:01:06', 0, NULL, 0, NULL, 1),
(32741, 25277, '2', 'State board', '', '', '2022', 69.00, '', 1, '2025-06-10 06:01:24', 1, '2025-06-10 06:02:05', 0, NULL, 1),
(32742, 25277, '1', 'State board', '', '', '2020', 56.00, '', 1, '2025-06-10 06:02:24', 0, NULL, 0, NULL, 1),
(32743, 25278, '2', 'State Board ', '', '', '2022', 81.00, '', 1, '2025-06-10 06:02:34', 0, NULL, 0, NULL, 1),
(32744, 25278, '1', 'State Board ', '', '', '2019', 80.00, '', 1, '2025-06-10 06:02:58', 0, NULL, 0, NULL, 1),
(32745, 25280, '3', 'SRM University ', '', 'BBA', '2026', 7.46, '', 1, '2025-06-10 06:45:03', 0, NULL, 0, NULL, 1),
(32746, 25281, '4', 'SRM University ', '', 'BBA ', '2026', 8.41, '', 1, '2025-06-10 06:45:29', 0, NULL, 0, NULL, 1),
(32747, 25279, '3', 'Madras University ', '', 'B.com', '2025', 79.05, '', 1, '2025-06-10 06:47:02', 0, NULL, 0, NULL, 1),
(32748, 25283, '3', ' madras  university', '', 'bsc cs', '2025', 67.00, '', 1, '2025-06-10 08:34:32', 0, NULL, 0, NULL, 1),
(32749, 25284, '3', 'Bharathiyar University ', '', 'B.Sc.Information Technology ', '2025', 88.50, '', 1, '2025-06-10 11:01:50', 0, NULL, 0, NULL, 1),
(32750, 25284, '1', 'State Board ', '', '', '2020', 93.60, '', 1, '2025-06-10 11:02:47', 0, NULL, 0, NULL, 1),
(32751, 25284, '2', 'State Board ', '', '', '2022', 83.30, '', 1, '2025-06-10 11:03:09', 0, NULL, 0, NULL, 1),
(32752, 25287, '3', 'Sri Ramachandra Institute of Higher Education and Research ', '', '', '2025', 83.00, '', 1, '2025-06-10 12:49:06', 0, NULL, 0, NULL, 1),
(32753, 25286, '3', 'anna university', '', 'mechanical engineering', '2022', 80.00, '', 1, '2025-06-10 12:54:17', 0, NULL, 0, NULL, 1),
(32754, 25288, '3', 'Loyola college chennai ', '', 'B.B.A ', '2025', 6.45, '', 1, '2025-06-10 12:57:46', 0, NULL, 0, NULL, 1),
(32755, 25289, '1', 'Tamil Nadu State Board ', '', '', '2019', 90.00, '', 1, '2025-06-11 05:07:46', 0, NULL, 0, NULL, 1),
(32756, 25289, '2', 'Tamil Nadu State Board ', '', '', '2021', 90.00, '', 1, '2025-06-11 05:08:22', 0, NULL, 0, NULL, 1),
(32757, 25289, '3', 'Sri Muthukumaran Arts and Science college ', '', 'BCA', '2025', 60.00, '', 1, '2025-06-11 05:09:10', 0, NULL, 0, NULL, 1),
(32758, 25285, '4', 'Madras University ', '', 'M.com', '2021', 70.00, '', 1, '2025-06-11 05:09:29', 0, NULL, 0, NULL, 1),
(32759, 25291, '3', 'Periyar University ', '', 'Incomplete ', '2019', 64.00, '', 1, '2025-06-11 06:02:05', 0, NULL, 0, NULL, 1),
(32760, 25293, '3', 'university of madras', '', 'b com', '2025', 69.00, '', 1, '2025-06-11 06:26:10', 0, NULL, 0, NULL, 1),
(32761, 25293, '2', 'state board', '', '', '2022', 66.00, '', 1, '2025-06-11 06:26:58', 0, NULL, 0, NULL, 1),
(32762, 25294, '3', 'Annan University ', '', 'BTech ', '2025', 82.00, '', 1, '2025-06-11 06:40:33', 0, NULL, 0, NULL, 1),
(32763, 25294, '1', 'State Board', '', '', '2019', 85.00, '', 1, '2025-06-11 06:41:01', 0, NULL, 0, NULL, 1),
(32764, 25294, '2', 'State Board ', '', '', '2021', 87.00, '', 1, '2025-06-11 06:41:44', 0, NULL, 0, NULL, 1),
(32765, 25295, '3', 'Anna University ', '', 'B.E. Computer Science and Engineering ', '2023', 78.00, '', 1, '2025-06-11 06:50:13', 0, NULL, 0, NULL, 1),
(32766, 25295, '2', 'State Board ', '', '', '2019', 71.00, '', 1, '2025-06-11 06:50:54', 0, NULL, 0, NULL, 1),
(32767, 25295, '1', 'State Board ', '', '', '2017', 84.00, '', 1, '2025-06-11 06:51:16', 0, NULL, 0, NULL, 1),
(32768, 25299, '3', 'Madras University ', '', 'B.com', '2021', 89.00, '', 1, '2025-06-11 07:05:18', 0, NULL, 0, NULL, 1),
(32769, 25301, '3', 'Kcg college of technology ', '', 'BE EEE', '2020', 7.34, '', 1, '2025-06-11 07:17:02', 0, NULL, 0, NULL, 1),
(32770, 25298, '3', 'Thiruvalluvar ', '', 'Bba', '2018', 60.00, '', 1, '2025-06-11 07:23:38', 0, NULL, 0, NULL, 1),
(32771, 25300, '3', 'anna university', '', 'b.tech', '2025', 78.00, '', 1, '2025-06-11 07:30:59', 0, NULL, 0, NULL, 1),
(32772, 25300, '2', 'state board of tamil nadu', '', '', '2021', 87.00, '', 1, '2025-06-11 07:32:15', 0, NULL, 0, NULL, 1),
(32773, 25300, '1', 'state board of tamil nadu', '', '', '2019', 91.00, '', 1, '2025-06-11 07:32:37', 0, NULL, 0, NULL, 1),
(32774, 25302, '3', 'Anna university ', '', 'BE ', '2025', 79.00, '', 1, '2025-06-11 07:51:35', 0, NULL, 0, NULL, 1),
(32775, 25303, '4', 'Madras university', '', 'MA', '2025', 79.00, '', 1, '2025-06-11 09:55:26', 0, NULL, 0, NULL, 1),
(32776, 25303, '3', 'Unuversity of Madras', '', 'BA', '2023', 71.00, '', 1, '2025-06-11 09:56:02', 0, NULL, 0, NULL, 1),
(32777, 25303, '2', 'State board of tamilnadu', '', '', '2021', 70.00, '', 1, '2025-06-11 09:56:56', 0, NULL, 0, NULL, 1),
(32778, 25304, '3', 'University of Madras', '', 'BA', '2024', 68.00, '', 1, '2025-06-11 10:00:12', 0, NULL, 0, NULL, 1),
(32779, 25304, '2', 'State board of tamilnadu', '', '', '2021', 75.00, '', 1, '2025-06-11 10:01:11', 0, NULL, 0, NULL, 1),
(32780, 25305, '3', 'annamalai universit', '', 'MSC', '2015', 70.00, '', 154, '2025-06-11 03:45:34', 0, NULL, 0, NULL, 1),
(32781, 25308, '1', 'state board', '', '', '2018', 93.60, '', 1, '2025-06-11 12:04:08', 0, NULL, 0, NULL, 1),
(32782, 25308, '2', 'state board', '', '', '2020', 83.50, '', 1, '2025-06-11 12:04:39', 0, NULL, 0, NULL, 1),
(32783, 25308, '3', 'anna university', '', 'bachelors', '2024', 76.00, '', 1, '2025-06-11 12:06:01', 0, NULL, 0, NULL, 1),
(32784, 25311, '3', 'Anna University', '', 'BE', '2025', 80.00, '', 1, '2025-06-11 01:09:30', 0, NULL, 0, NULL, 1),
(32785, 25310, '3', 'SRM University ', '', 'B.com  general ', '2021', 60.00, '', 1, '2025-06-11 01:10:06', 1, '2025-06-11 01:11:20', 0, NULL, 0),
(32786, 25310, '1', 'State board ', '', '', '2016', 50.00, '', 1, '2025-06-11 01:11:25', 0, NULL, 0, NULL, 1),
(32787, 25310, '2', 'State board ', '', '', '2018', 56.00, '', 1, '2025-06-11 01:12:06', 0, NULL, 0, NULL, 1),
(32788, 25310, '3', 'SRM University ', '', 'B.com', '2021', 60.00, '', 1, '2025-06-11 01:12:36', 0, NULL, 0, NULL, 1),
(32789, 25315, '3', 'Mardeas University', '', 'B.A Economics ', '2024', 6.00, '', 1, '2025-06-12 04:51:02', 0, NULL, 0, NULL, 1),
(32790, 25314, '5', 'University ', '', 'EEE', '2022', 79.00, '', 1, '2025-06-12 05:00:55', 0, NULL, 0, NULL, 1),
(32791, 25316, '3', 'University ', '', 'BSC.biochemistry ', '2022', 60.00, '', 1, '2025-06-12 05:42:40', 0, NULL, 0, NULL, 1),
(32792, 25317, '4', 'Madras University ', '', 'Ba economics ', '2023', 70.00, '', 1, '2025-06-12 06:08:16', 0, NULL, 0, NULL, 1),
(32793, 25318, '3', 'Bharathidasan university', '', 'BCA', '2023', 73.80, '', 1, '2025-06-12 06:34:07', 0, NULL, 0, NULL, 1),
(32794, 25318, '2', 'State Board of Tamil Nadu', '', '', '2020', 62.50, '', 1, '2025-06-12 06:34:55', 0, NULL, 0, NULL, 1),
(32795, 25318, '1', 'State Board of Tamil Nadu', '', '', '2018', 83.50, '', 1, '2025-06-12 06:35:34', 0, NULL, 0, NULL, 1),
(32796, 25319, '3', 'University of Madras ', '', 'Bca', '2025', 74.00, '', 1, '2025-06-12 06:52:59', 0, NULL, 0, NULL, 1),
(32797, 25313, '3', 'bangalore university ', '', 'ba ', '2021', 7.27, '', 1, '2025-06-12 06:54:35', 0, NULL, 0, NULL, 1),
(32798, 25313, '1', 'cbse', '', '', '2017', 7.60, '', 1, '2025-06-12 06:55:32', 0, NULL, 0, NULL, 1),
(32799, 25313, '2', 'mangalore ', '', '', '2019', 83.50, '', 1, '2025-06-12 06:56:06', 0, NULL, 0, NULL, 1),
(32800, 25320, '3', 'University ', '', 'BA', '2024', 70.00, '', 1, '2025-06-12 07:55:48', 0, NULL, 0, NULL, 1),
(32801, 25321, '3', 'Adhi college of engineering and technology', '', 'Mechanical Engineer', '2023', 8.10, '', 1, '2025-06-12 11:22:45', 0, NULL, 0, NULL, 1),
(32802, 25321, '2', 'Government boys\' higher secondary school ', '', '', '2019', 79.50, '', 1, '2025-06-12 11:24:03', 0, NULL, 0, NULL, 1),
(32803, 25321, '1', 'Government boys\' higher secondary school ', '', '', '2017', 90.00, '', 1, '2025-06-12 11:25:13', 0, NULL, 0, NULL, 1),
(32804, 25323, '1', 'State Board', '', '', '2019', 79.20, '', 1, '2025-06-12 12:28:37', 0, NULL, 0, NULL, 1),
(32805, 25323, '2', 'State Board ', '', '', '2021', 83.68, '', 1, '2025-06-12 12:29:20', 0, NULL, 0, NULL, 1),
(32806, 25323, '3', 'Anna University ', '', 'BE', '2025', 83.90, '', 1, '2025-06-12 12:29:55', 0, NULL, 0, NULL, 1),
(32807, 25325, '1', 'board', '', '', '2019', 73.00, '', 1, '2025-06-12 12:52:29', 0, NULL, 0, NULL, 1),
(32808, 25325, '2', 'board', '', '', '2021', 80.00, '', 1, '2025-06-12 12:52:54', 0, NULL, 0, NULL, 1),
(32809, 25325, '3', 'university', '', 'b tech it', '2025', 75.00, '', 1, '2025-06-12 12:53:28', 0, NULL, 0, NULL, 1),
(32810, 25326, '4', 'VTU university ', '', 'MCA', '2024', 8.90, '', 1, '2025-06-12 01:34:48', 0, NULL, 0, NULL, 1),
(32811, 25327, '3', 'Anna University ', '', 'B.Tech', '2025', 70.00, '', 1, '2025-06-12 02:57:33', 0, NULL, 0, NULL, 1),
(32812, 25324, '3', 'Anna university ', '', 'B TECH', '2025', 75.00, '', 1, '2025-06-12 04:40:39', 0, NULL, 0, NULL, 1),
(32813, 25329, '3', 'Dr. Ambedkar Government Arts College ', '', 'B. Com', '2025', 71.53, '', 1, '2025-06-13 05:14:35', 0, NULL, 0, NULL, 1),
(32814, 25331, '3', 'University of Madras ', '', 'Bsc computer science ', '2023', 68.00, '', 1, '2025-06-13 05:14:39', 0, NULL, 0, NULL, 1),
(32815, 25333, '4', 'Anna University ', '', 'MCA', '2025', 82.00, '', 1, '2025-06-13 05:14:47', 0, NULL, 0, NULL, 1),
(32816, 25330, '3', 'Thiruvallur University ', '', 'B.sc COMPUTER SCIENCE ', '2023', 8.20, '', 1, '2025-06-13 05:16:11', 0, NULL, 0, NULL, 1),
(32817, 25328, '1', 'State board of Tamil Nadu ', '', '', '2017', 93.40, '', 1, '2025-06-13 05:24:51', 0, NULL, 0, NULL, 1),
(32818, 25328, '2', 'State board of Tamil Nadu ', '', '', '2019', 74.50, '', 1, '2025-06-13 05:25:14', 0, NULL, 0, NULL, 1),
(32819, 25328, '3', 'University of Madras ', '', 'Bsc ', '2022', 77.70, '', 1, '2025-06-13 05:25:38', 0, NULL, 0, NULL, 1),
(32820, 25332, '3', 'University ', '', '', '2024', 60.00, '', 1, '2025-06-13 05:25:51', 0, NULL, 0, NULL, 1),
(32821, 25334, '3', 'bharath institution of higher education and research', '', 'bca', '2023', 70.00, '', 1, '2025-06-13 05:28:27', 1, '2025-06-13 05:30:09', 0, NULL, 1),
(32822, 25336, '3', 'Anna University ', '', 'BACHELORS OF ENGINEERING', '2025', 72.00, '', 1, '2025-06-13 05:32:33', 0, NULL, 0, NULL, 1),
(32823, 25337, '3', 'Thiruvalluvar university ', '', 'B. Com', '2020', 60.00, '', 1, '2025-06-13 05:33:51', 0, NULL, 0, NULL, 1),
(32824, 25336, '2', 'State board', '', '', '2021', 76.00, '', 1, '2025-06-13 05:34:19', 0, NULL, 0, NULL, 1),
(32825, 25336, '1', 'State Board', '', '', '2019', 69.80, '', 1, '2025-06-13 05:34:58', 0, NULL, 0, NULL, 1),
(32826, 25335, '3', 'Madras University ', '', 'BCA ', '2024', 6.80, '', 1, '2025-06-13 05:35:32', 0, NULL, 0, NULL, 1),
(32827, 25338, '3', 'madras university ', '', 'b.com', '2025', 50.00, '', 1, '2025-06-13 05:53:18', 0, NULL, 0, NULL, 1),
(32828, 25339, '3', 'Madras University ', '', '', '2022', 70.00, '', 1, '2025-06-13 06:02:12', 0, NULL, 0, NULL, 1),
(32829, 25322, '3', 'Meenakshi college of engineering ', '', 'BTech IT ', '2025', 79.00, '', 1, '2025-06-13 06:47:44', 0, NULL, 0, NULL, 1),
(32830, 25322, '2', 'Higher secondary model school sithal ', '', '', '2021', 87.00, '', 1, '2025-06-13 06:48:16', 0, NULL, 0, NULL, 1),
(32831, 25322, '1', 'Higher secondary model school sithal ', '', '', '2019', 87.00, '', 1, '2025-06-13 06:48:37', 0, NULL, 0, NULL, 1),
(32832, 25341, '3', 'ST.Thomas arts and science college ', '', 'B.com', '2025', 61.50, '', 1, '2025-06-13 07:02:57', 0, NULL, 0, NULL, 1),
(32833, 25342, '3', 'University of Madras ', '', 'Ba. Criminology and police administration ', '2025', 70.00, '', 1, '2025-06-13 07:08:53', 0, NULL, 0, NULL, 1),
(32834, 25344, '3', 'University ', '', 'Bcom', '2023', 60.00, '', 1, '2025-06-13 07:39:20', 0, NULL, 0, NULL, 1),
(32835, 25345, '2', 'bharathi dhasanar matric higher secondary school ', '', '', '2017', 85.00, '', 1, '2025-06-13 07:59:11', 0, NULL, 0, NULL, 1),
(32836, 25343, '4', 'Madras University ', '', 'M.sc IT', '2025', 82.00, '', 1, '2025-06-13 08:00:06', 0, NULL, 0, NULL, 1),
(32837, 25345, '1', 'bharathi dhasanar matric higher secondary school', '', '', '2019', 65.00, '', 1, '2025-06-13 08:00:16', 0, NULL, 0, NULL, 1),
(32838, 25345, '3', 'scsvmv university', '', 'b.sc csc', '2022', 9.03, '', 1, '2025-06-13 08:01:01', 0, NULL, 0, NULL, 1),
(32839, 25345, '4', 'srm university', '', 'mca', '2024', 8.54, '', 1, '2025-06-13 08:01:38', 0, NULL, 0, NULL, 1),
(32840, 25345, '4', 'srm university', '', 'mca', '2024', 8.54, '', 1, '2025-06-13 08:01:38', 0, NULL, 0, NULL, 1),
(32841, 25346, '3', 'Sastra deemed University ', '', 'Bsc cs', '2024', 60.00, '', 1, '2025-06-13 08:19:24', 0, NULL, 0, NULL, 1),
(32842, 25347, '3', 'Sastra Deemed University ', '', 'Bsc cs ', '2024', 65.00, '', 1, '2025-06-13 08:19:33', 0, NULL, 0, NULL, 1),
(32843, 25348, '3', 'Jowhalal Nehru technology antapur ', '', 'B.tech ', '2019', 73.00, '', 1, '2025-06-13 09:51:36', 0, NULL, 0, NULL, 1),
(32844, 25348, '4', 'Jawaharlal Nehru Technological University Anantapur', '', 'B tech ', '2019', 72.00, '', 1, '2025-06-13 09:52:41', 0, NULL, 0, NULL, 1),
(32845, 25349, '3', 'Periyar University ', '', 'BCA ', '2023', 82.00, '', 1, '2025-06-13 10:25:23', 0, NULL, 0, NULL, 1),
(32846, 25350, '3', 'anna university', '', 'bachelor of engineering', '2021', 80.00, '', 1, '2025-06-13 11:32:57', 0, NULL, 0, NULL, 1),
(32847, 25351, '3', 'University of Madras ', '', 'B.com', '2025', 67.00, '', 1, '2025-06-13 01:49:15', 0, NULL, 0, NULL, 1),
(32848, 25352, '3', 'Thiruvalluvar university ', '', 'B. A Tamil ', '2022', 72.80, '', 1, '2025-06-13 02:06:56', 0, NULL, 0, NULL, 1),
(32849, 25340, '3', 'Sadakathullah Appa College ', '', 'Bsc Information Technology ', '2025', 73.00, '', 1, '2025-06-13 03:50:25', 0, NULL, 0, NULL, 1),
(32850, 25357, '3', 'Gtn atrs college', '', 'Bsc computer science ', '2023', 70.00, '', 1, '2025-06-14 05:54:16', 0, NULL, 0, NULL, 1),
(32851, 25358, '4', 'Alagapa university ', '', 'MCA', '2024', 77.00, '', 1, '2025-06-14 06:07:58', 0, NULL, 0, NULL, 1),
(32852, 25364, '3', 'madras university ', '', 'b.com(cs)', '2025', 50.00, '', 1, '2025-06-16 04:39:17', 0, NULL, 0, NULL, 1),
(32853, 25362, '3', 'Bharath University ', '', 'B.com general ', '2024', 60.00, '', 1, '2025-06-16 04:42:03', 0, NULL, 0, NULL, 1),
(32854, 25309, '4', 'Thiruvalluvar university ', '', 'M.com', '2024', 69.00, '', 1, '2025-06-16 06:12:22', 0, NULL, 0, NULL, 1),
(32855, 25309, '3', 'Thiruvalluvar university ', '', 'Bba', '2022', 75.00, '', 1, '2025-06-16 06:13:11', 0, NULL, 0, NULL, 1),
(32856, 25309, '2', 'State board ', '', '', '2019', 69.00, '', 1, '2025-06-16 06:14:34', 0, NULL, 0, NULL, 1),
(32857, 25309, '1', 'State board ', '', '', '2017', 65.00, '', 1, '2025-06-16 06:15:22', 0, NULL, 0, NULL, 1),
(32858, 25367, '4', 'Annamalai university ', '', 'MBA', '2025', 79.00, '', 1, '2025-06-16 06:43:47', 0, NULL, 0, NULL, 1),
(32859, 25361, '3', 'thiruvalluvar university', '', 'B.sc.computer science ', '2021', 76.00, '', 1, '2025-06-16 06:47:24', 0, NULL, 0, NULL, 1),
(32860, 25368, '5', 'Anna university ', '', 'DECE', '2016', 69.00, '', 1, '2025-06-16 07:11:41', 0, NULL, 0, NULL, 1),
(32861, 25370, '3', 'Madras University ', '', 'B.com(A&F)', '2023', 70.00, '', 1, '2025-06-16 07:20:12', 0, NULL, 0, NULL, 1),
(32862, 25369, '5', 'Board of Technical education ', '', 'Electronics and communication ', '2021', 72.00, '', 1, '2025-06-16 07:21:09', 0, NULL, 0, NULL, 1),
(32863, 25370, '2', 'TN State board ', '', '', '2019', 63.00, '', 1, '2025-06-16 07:22:26', 0, NULL, 0, NULL, 1),
(32864, 25370, '1', 'CBSE', '', '', '2017', 61.00, '', 1, '2025-06-16 07:23:21', 0, NULL, 0, NULL, 1),
(32865, 25371, '3', 'Madras university', '', '', '2025', 70.00, '', 1, '2025-06-16 07:28:58', 0, NULL, 0, NULL, 1),
(32866, 25372, '3', 'Madras University ', '', 'B.sc - Nutrition and dietetics ', '2025', 74.00, '', 1, '2025-06-16 07:30:40', 0, NULL, 0, NULL, 1),
(32867, 25378, '3', 'anna uni ', '', 'Bachelor engineering', '2023', 7.60, '', 1, '2025-06-16 11:18:38', 0, NULL, 0, NULL, 1),
(32868, 25377, '3', ' Chennai Madras University ', '', 'Bba', '2024', 86.50, '', 1, '2025-06-16 12:24:48', 0, NULL, 0, NULL, 1),
(32869, 25374, '3', 'Madras University ', '', 'b.com ', '2023', 87.00, '', 1, '2025-06-17 05:26:07', 0, NULL, 0, NULL, 1),
(32870, 25380, '3', 'madras university', '', 'bca', '2024', 69.00, '', 1, '2025-06-17 05:54:29', 0, NULL, 0, NULL, 1),
(32871, 25379, '3', 'madras university', '', 'b.com', '2024', 68.00, '', 1, '2025-06-17 05:56:44', 0, NULL, 0, NULL, 1),
(32872, 25381, '3', 'annai violet arts and science college', '', 'bcom', '2025', 78.00, '', 154, '2025-06-17 11:44:40', 0, NULL, 0, NULL, 1),
(32873, 25383, '2', 'Chennai hr second school', '', '', '2018', 43.00, '', 1, '2025-06-17 06:22:06', 0, NULL, 0, NULL, 1),
(32874, 25384, '3', 'University of madras ', '', 'B.com ', '2025', 72.00, '', 1, '2025-06-17 06:23:32', 0, NULL, 0, NULL, 1),
(32875, 25385, '3', 'Krishnasamy college of science arts and management for women Cuddalore ', '', 'BCA ', '2025', 75.00, '', 1, '2025-06-17 06:43:48', 0, NULL, 0, NULL, 1),
(32876, 25386, '3', 'University ', '', 'Bba', '2025', 8.00, '', 1, '2025-06-17 07:25:02', 0, NULL, 0, NULL, 1),
(32877, 25382, '3', 'vels university', '', 'b.e', '2022', 83.00, '', 1, '2025-06-17 08:37:23', 0, NULL, 0, NULL, 1),
(32878, 25390, '3', 'SRM University', '', 'B.tech', '2022', 8.95, '', 1, '2025-06-17 12:32:25', 0, NULL, 0, NULL, 1),
(32879, 25392, '3', 'Dr.MGR university ', '', '', '2023', 75.00, '', 1, '2025-06-17 01:29:06', 0, NULL, 0, NULL, 1),
(32880, 25392, '2', 'Chellamal Matric hr sec school ', '', '', '2018', 85.00, '', 1, '2025-06-17 01:29:37', 0, NULL, 0, NULL, 1),
(32881, 25393, '3', 'sri shakthi institute of engineering and technology', '', 'bachelor of engineeing', '2023', 78.00, '', 1, '2025-06-17 01:46:32', 0, NULL, 0, NULL, 1),
(32882, 25394, '1', 'skn matric hr sec school', '', '', '2017', 92.60, '', 1, '2025-06-17 02:54:28', 0, NULL, 0, NULL, 1),
(32883, 25394, '2', 'skn matric hr sec school', '', '', '2019', 71.00, '', 1, '2025-06-17 02:56:18', 0, NULL, 0, NULL, 1),
(32884, 25394, '3', 'velalar college of engineering and technology', '', 'btech it', '2023', 84.70, '', 1, '2025-06-17 02:57:57', 1, '2025-06-17 02:58:45', 0, NULL, 1),
(32885, 25399, '4', 'Anna university ', '', 'B.E CSE', '2025', 75.00, '', 1, '2025-06-18 04:29:25', 0, NULL, 0, NULL, 1),
(32886, 25391, '3', 'Periyar University ', '', 'Computer science ', '2022', 85.00, '', 1, '2025-06-18 04:32:00', 0, NULL, 0, NULL, 1),
(32887, 25391, '1', 'State Board ', '', '', '2019', 65.00, '', 1, '2025-06-18 04:32:22', 0, NULL, 0, NULL, 1),
(32888, 25391, '2', 'State Board ', '', '', '2017', 65.00, '', 1, '2025-06-18 04:32:46', 0, NULL, 0, NULL, 1),
(32889, 25398, '4', 'Anna university', '', 'B.E CSE', '2025', 80.00, '', 1, '2025-06-18 04:39:46', 0, NULL, 0, NULL, 1),
(32890, 25401, '1', 'St.Antony girls hr sec school madurai', '', '', '2017', 90.00, '', 1, '2025-06-18 04:42:07', 0, NULL, 0, NULL, 1),
(32891, 25401, '2', 'St.Antony girl\'s hr sec school madurai ', '', '', '2019', 51.00, '', 1, '2025-06-18 04:42:43', 0, NULL, 0, NULL, 1),
(32892, 25401, '3', 'Mahendra institute of technology Namakkal', '', 'BE.Computer science and engineering ', '2023', 80.00, '', 1, '2025-06-18 04:43:27', 0, NULL, 0, NULL, 1),
(32893, 25402, '3', 'Madras university', '', 'B.com', '2025', 80.00, '', 1, '2025-06-18 05:04:28', 0, NULL, 0, NULL, 1),
(32894, 25403, '3', 'Madras University ', '', 'B.Com Bank Management', '2023', 60.00, '', 1, '2025-06-18 05:32:09', 0, NULL, 0, NULL, 1),
(32895, 25404, '3', 'Stella Maris college ', '', 'BA history and tourism ', '2021', 51.00, '', 1, '2025-06-18 05:56:32', 0, NULL, 0, NULL, 1),
(32896, 25406, '3', 'Sbk college ', '', 'Ba english ', '2023', 60.00, '', 1, '2025-06-18 06:18:49', 0, NULL, 0, NULL, 1),
(32897, 25405, '3', 'mgr university', '', 'bsc.anacisiya', '2022', 84.00, '', 1, '2025-06-18 06:24:34', 0, NULL, 0, NULL, 1),
(32898, 25407, '4', 'E.G.S.Pillay Engineering college ', '', 'MBA', '2022', 82.00, '', 1, '2025-06-18 06:29:23', 1, '2025-06-18 06:32:22', 0, NULL, 0),
(32899, 25407, '4', 'E.G.S.Pillay Engineering college ', '', 'MBA ', '2022', 82.00, '', 1, '2025-06-18 06:30:22', 0, NULL, 0, NULL, 1),
(32900, 25407, '3', 'A.D.M.College for women ', '', 'BCA', '2020', 75.00, '', 1, '2025-06-18 06:31:04', 0, NULL, 0, NULL, 1),
(32901, 25407, '2', 'Municipal Girl’s HR.Sec.School ', '', '', '2017', 62.00, '', 1, '2025-06-18 06:31:29', 1, '2025-06-18 06:32:45', 0, NULL, 1),
(32902, 25407, '1', 'Govt high school ', '', '', '2015', 83.00, '', 1, '2025-06-18 06:33:11', 0, NULL, 0, NULL, 1),
(32903, 25409, '1', 'CBSE', '', 'MBA', '2018', 57.80, '', 1, '2025-06-18 07:34:24', 1, '2025-06-18 07:36:28', 0, NULL, 0),
(32904, 25409, '2', 'CBSE', '', '', '2020', 67.00, '', 1, '2025-06-18 07:34:52', 0, NULL, 0, NULL, 1),
(32905, 25409, '3', 'Pondicherry Univer', '', 'B.Tech', '2024', 7.91, '', 1, '2025-06-18 07:35:45', 0, NULL, 0, NULL, 1),
(32906, 25409, '1', 'CBSE', '', '', '2018', 57.80, '', 1, '2025-06-18 07:36:53', 0, NULL, 0, NULL, 1),
(32907, 25410, '4', 'Bangalore ', '', 'MCA ', '2023', 71.96, '', 1, '2025-06-18 08:15:14', 0, NULL, 0, NULL, 1),
(32908, 25410, '3', 'Bangalore North ', '', 'BCA ', '2021', 81.00, '', 1, '2025-06-18 08:16:09', 0, NULL, 0, NULL, 1),
(32909, 25414, '3', 'Dr.MGR Educational and Research institute ', '', 'B-Tech IT', '2022', 78.00, '', 1, '2025-06-18 01:56:58', 0, NULL, 0, NULL, 1),
(32910, 25415, '3', 'Madras University Chennai ', '', 'B com cs', '2025', 72.00, '', 1, '2025-06-18 02:18:24', 0, NULL, 0, NULL, 1),
(32911, 25412, '3', 'RDM government arts and science college ', '', 'Bsc maths', '2024', 63.00, '', 1, '2025-06-18 04:36:29', 0, NULL, 0, NULL, 1),
(32912, 25418, '3', 'Madras University ', '', 'BBA ', '2025', 89.00, '', 1, '2025-06-19 05:04:41', 0, NULL, 0, NULL, 1),
(32913, 25396, '3', 'A. M. Jain College of Arts and Science', '', 'bcom', '2022', 85.00, '', 1, '2025-06-19 05:20:45', 0, NULL, 0, NULL, 1),
(32914, 25419, '3', 'ST.Thomas college of arts and science ', '', 'BA English ', '2025', 70.00, '', 1, '2025-06-19 06:13:47', 0, NULL, 0, NULL, 1),
(32915, 25421, '3', 'Manav bharthi university', '', 'B. Com', '2014', 68.00, '', 1, '2025-06-19 06:47:05', 0, NULL, 0, NULL, 1),
(32916, 25423, '3', 'Madras University ', '', 'B.com (cS)', '2020', 82.00, '', 1, '2025-06-19 07:47:40', 0, NULL, 0, NULL, 1),
(32917, 25426, '3', 'University of Madras ', '', 'b.com', '2024', 65.00, '', 1, '2025-06-19 08:35:23', 0, NULL, 0, NULL, 1),
(32918, 25426, '1', 'Presidency girls higher secondary school ', '', '', '2019', 52.00, '', 1, '2025-06-19 08:35:48', 0, NULL, 0, NULL, 1),
(32919, 25426, '2', 'Presidency girls higher secondary school ', '', '', '2021', 60.00, '', 1, '2025-06-19 08:36:19', 0, NULL, 0, NULL, 1),
(32920, 25424, '3', 'alagapa university', '', 'b.sc  computer science', '2025', 60.00, '', 1, '2025-06-19 09:28:14', 0, NULL, 0, NULL, 1),
(32921, 25422, '3', 'Mysore university', '', 'bcom', '2018', 60.00, '', 154, '2025-06-19 05:51:10', 0, NULL, 0, NULL, 1),
(32922, 25425, '3', 'Madras university', '', 'Bcom. CS', '2024', 65.00, '', 1, '2025-06-19 02:16:25', 0, NULL, 0, NULL, 1),
(32923, 25429, '3', 'Madras university', '', 'BA English Literature', '2022', 72.00, '', 1, '2025-06-20 05:05:25', 0, NULL, 0, NULL, 1),
(32924, 25432, '3', 'university of madras ', '', 'bba', '2023', 70.00, '', 1, '2025-06-20 05:10:41', 0, NULL, 0, NULL, 1),
(32925, 25431, '3', 'Anniversary ', '', 'B.e', '2024', 7.90, '', 1, '2025-06-20 05:10:42', 0, NULL, 0, NULL, 1),
(32926, 25430, '3', 'Anna university ', '', 'BE - CSE', '2024', 7.40, '', 1, '2025-06-20 05:11:46', 0, NULL, 0, NULL, 1),
(32927, 25433, '4', 'Bharathidasan University ', '', 'MBA', '2019', 73.00, '', 1, '2025-06-20 05:40:49', 0, NULL, 0, NULL, 1),
(32928, 25434, '3', 'Maha bharathi engineering college ', '', 'Be', '2024', 80.00, '', 1, '2025-06-20 05:47:19', 0, NULL, 0, NULL, 1),
(32929, 25436, '2', 'SRI RAMAKRISHNA MODAL HIGHER SECONDARY SCHOOL ', '', '', '2022', 70.00, '', 1, '2025-06-20 06:13:03', 0, NULL, 0, NULL, 1),
(32930, 25437, '3', 'Thiruthangal Nadar college ', '', 'BA Criminology', '2024', 85.00, '', 1, '2025-06-20 06:14:02', 0, NULL, 0, NULL, 1),
(32931, 25438, '3', 'Kings engineering college ', '', 'Ece', '2024', 65.00, '', 1, '2025-06-20 06:22:38', 0, NULL, 0, NULL, 1),
(32932, 25439, '2', 'SRI RAMAKRISHNA MODAL HIGHER SECONDARY SCHOOL ', '', '', '2022', 70.00, '', 1, '2025-06-20 06:22:48', 0, NULL, 0, NULL, 1),
(32933, 25440, '3', 'Madras University ', '', 'B.Com( computer application)', '2025', 72.00, '', 1, '2025-06-20 06:51:15', 0, NULL, 0, NULL, 1),
(32934, 25441, '3', 'Madras University ', '', 'BBA ', '2025', 70.00, '', 1, '2025-06-20 06:51:42', 0, NULL, 0, NULL, 1),
(32935, 25442, '3', 'Madras university ', '', 'BBA', '2025', 68.00, '', 1, '2025-06-20 07:11:01', 0, NULL, 0, NULL, 1),
(32936, 25443, '3', 'University of madras', '', 'B. Com (computer application) ', '2025', 53.00, '', 1, '2025-06-20 07:30:53', 0, NULL, 0, NULL, 1),
(32937, 25449, '3', 'Madras University', '', 'BCS Computer Science', '2025', 63.00, '', 1, '2025-06-20 07:51:44', 0, NULL, 0, NULL, 1),
(32938, 25446, '3', 'Madras University ', '', 'Bcom', '2025', 68.00, '', 1, '2025-06-20 07:51:47', 0, NULL, 0, NULL, 1),
(32939, 25448, '3', 'Madras University ', '', 'BSC computer science ', '2025', 65.00, '', 1, '2025-06-20 07:51:48', 0, NULL, 0, NULL, 1),
(32940, 25447, '3', 'Madras University ', '', 'Bcom ', '2025', 65.00, '', 1, '2025-06-20 07:51:50', 0, NULL, 0, NULL, 1),
(32941, 25450, '1', 'State board ', '', '', '2020', 79.00, '', 1, '2025-06-20 12:20:04', 0, NULL, 0, NULL, 1),
(32942, 25450, '2', 'State board ', '', '', '2022', 91.00, '', 1, '2025-06-20 12:20:20', 0, NULL, 0, NULL, 1),
(32943, 25450, '3', 'Madras University ', '', 'B com general ', '2025', 70.00, '', 1, '2025-06-20 12:20:44', 0, NULL, 0, NULL, 1),
(32944, 25451, '3', 'Madurai Kamaraj University ', '', 'Bachelor\'s of Commerce with Computer Applications ', '2023', 80.00, '', 1, '2025-06-21 04:38:16', 0, NULL, 0, NULL, 1),
(32945, 25453, '3', 'Madras University ', '', 'B.A history ', '2022', 50.00, '', 1, '2025-06-21 05:42:08', 0, NULL, 0, NULL, 1),
(32946, 25454, '3', 'University of Madras ', '', 'B.com', '2025', 70.00, '', 1, '2025-06-21 05:54:18', 0, NULL, 0, NULL, 1),
(32947, 25444, '3', 'Madras University ', '', 'BCA', '2025', 60.00, '', 1, '2025-06-21 06:28:21', 0, NULL, 0, NULL, 1),
(32948, 25455, '4', 'Pondicherry university', '', 'MBA', '2022', 7.90, '', 1, '2025-06-21 06:29:41', 0, NULL, 0, NULL, 1),
(32949, 25457, '4', 'Madras university ', '', 'Mba hr', '2024', 70.00, '', 1, '2025-06-21 12:18:00', 1, '2025-06-21 12:19:26', 0, NULL, 0),
(32950, 25457, '3', 'Bharathiar university ', '', 'Bcom', '2021', 50.00, '', 1, '2025-06-21 12:18:49', 0, NULL, 0, NULL, 1),
(32951, 25457, '4', 'Madras university ', '', 'Mba hr', '2024', 70.00, '', 1, '2025-06-21 12:19:15', 0, NULL, 0, NULL, 1),
(32952, 25456, '3', 'Anna University ', '', 'BE Computer science and engineering ', '2024', 80.00, '', 1, '2025-06-21 02:15:00', 0, NULL, 0, NULL, 1),
(32953, 25456, '1', 'Dhava amudham matric hr sec school ', '', '', '2018', 80.00, '', 1, '2025-06-21 02:16:18', 0, NULL, 0, NULL, 1),
(32954, 25456, '2', 'Dhava amudham matric hr sec school ', '', '', '2024', 80.00, '', 1, '2025-06-21 02:16:53', 0, NULL, 0, NULL, 1),
(32955, 25460, '3', 'Anna university ', '', 'B.E computer science ', '2024', 80.00, '', 1, '2025-06-23 05:22:30', 0, NULL, 0, NULL, 1),
(32956, 25459, '3', 'Madras university', '', 'B. Com', '2023', 72.50, '', 1, '2025-06-23 05:22:36', 0, NULL, 0, NULL, 1),
(32957, 25462, '3', 'Manonmaniam university ', '', 'B. Com', '2024', 7.50, '', 1, '2025-06-23 05:23:15', 0, NULL, 0, NULL, 1),
(32958, 25464, '4', 'Annamalai University ', '', 'M.cOM', '2022', 65.00, '', 1, '2025-06-23 06:20:37', 0, NULL, 0, NULL, 1),
(32959, 25463, '4', 'dr.MGR', '', 'MCA', '2024', 62.00, '', 1, '2025-06-23 06:34:07', 0, NULL, 0, NULL, 1),
(32960, 25463, '3', 'vel\'s university ', '', 'BCA', '2022', 67.00, '', 1, '2025-06-23 06:34:32', 0, NULL, 0, NULL, 1),
(32961, 25466, '3', 'Madras University ', '', 'B.com cs', '2023', 68.00, '', 1, '2025-06-23 06:49:03', 0, NULL, 0, NULL, 1),
(32962, 25465, '3', 'university of madras', '', ' b com', '2020', 78.00, '', 1, '2025-06-23 06:52:41', 0, NULL, 0, NULL, 1),
(32963, 25467, '3', 'Anna university ', '', 'BE (CSE)', '2023', 89.00, '', 1, '2025-06-23 07:05:55', 0, NULL, 0, NULL, 1),
(32964, 25469, '5', 'Anna University ', '', 'E C E', '2018', 70.00, '', 1, '2025-06-23 07:23:18', 0, NULL, 0, NULL, 1),
(32965, 25468, '2', 'No', '', '', '2022', 60.00, '', 1, '2025-06-23 07:23:47', 0, NULL, 0, NULL, 1),
(32966, 25470, '3', 'University of Madras ', '', 'B.Com(CA)', '2025', 75.00, '', 1, '2025-06-23 07:29:08', 0, NULL, 0, NULL, 1),
(32967, 25471, '5', 'Anna University ', '', 'E C e', '2018', 70.00, '', 1, '2025-06-23 07:39:51', 0, NULL, 0, NULL, 1),
(32968, 25473, '3', 'Madras University ', '', 'B.com', '2021', 78.00, '', 1, '2025-06-23 10:03:56', 0, NULL, 0, NULL, 1),
(32969, 25475, '4', 'Management Development Institute of Singapore', '', 'mba', '2006', 70.00, '', 1, '2025-06-23 01:20:21', 0, NULL, 0, NULL, 1),
(32970, 25476, '3', 'University ', '', 'B.sc Microbiology ', '2022', 80.00, '', 1, '2025-06-23 02:32:01', 0, NULL, 0, NULL, 1),
(32971, 25477, '3', 'University of Madras ', '', 'Bsc computer science ', '2021', 77.25, '', 1, '2025-06-23 02:49:28', 0, NULL, 0, NULL, 1),
(32972, 25472, '1', 'Rasi Matriculation Higher Secondary School ', '', '', '2011', 77.00, '', 1, '2025-06-23 04:42:45', 0, NULL, 0, NULL, 1),
(32973, 25472, '2', 'Vetri Vikaas Boys higher secondary school', '', '', '2013', 76.00, '', 1, '2025-06-23 04:44:28', 0, NULL, 0, NULL, 1),
(32974, 25472, '3', 'St.Peters institute of higher education and research', '', 'B.E EEE', '2021', 61.00, '', 1, '2025-06-23 04:46:14', 0, NULL, 0, NULL, 1),
(32975, 25482, '3', 'Bharathidhasan university ', '', 'BCA', '2024', 73.00, '', 1, '2025-06-24 05:16:35', 0, NULL, 0, NULL, 1),
(32976, 25483, '4', 'Bharathidasan University ', '', 'M.Sc', '2022', 7.80, '', 1, '2025-06-24 05:37:05', 0, NULL, 0, NULL, 1),
(32977, 25484, '3', 'madras university', '', 'ba economics', '2024', 62.00, '', 1, '2025-06-24 05:44:11', 0, NULL, 0, NULL, 1),
(32978, 25485, '3', 'Guru Nanak College ', '', 'BCA', '2022', 80.00, '', 1, '2025-06-24 05:52:40', 0, NULL, 0, NULL, 1),
(32979, 25486, '3', 'Dhanapal college arts and science ', '', 'BBA', '2023', 75.00, '', 1, '2025-06-24 06:00:39', 0, NULL, 0, NULL, 1),
(32980, 25488, '2', 'Madras University ', '', 'Bcom CA', '2025', 60.00, '', 1, '2025-06-24 07:17:25', 0, NULL, 0, NULL, 1),
(32981, 25487, '3', 'board', '', 'bachelor of commerce ', '2025', 60.00, '', 1, '2025-06-24 07:18:50', 0, NULL, 0, NULL, 1),
(32982, 25479, '3', 'University ', '', 'Bcom ca', '2025', 60.00, '', 1, '2025-06-24 07:21:51', 0, NULL, 0, NULL, 1),
(32983, 25489, '3', 'PSN COLLEGE OF ENGINEERING AND TECHNOLOGY ', '', 'BE', '2025', 77.00, '', 1, '2025-06-24 08:13:24', 1, '2025-06-24 08:13:59', 0, NULL, 1),
(32984, 25490, '3', 'Dr.Mgr university ', '', 'BBA', '2025', 81.00, '', 1, '2025-06-24 08:54:41', 0, NULL, 0, NULL, 1),
(32985, 25491, '3', 'Dr MGR educational and research institute ', '', 'BBA ', '2025', 86.00, '', 1, '2025-06-24 08:55:30', 0, NULL, 0, NULL, 1),
(32986, 25493, '3', 'University of Madras ', '', 'BCA', '2022', 83.00, '', 1, '2025-06-24 09:49:15', 0, NULL, 0, NULL, 1),
(32987, 25492, '3', 'Annamalai university', '', 'BSC chemistry', '2025', 75.00, '', 1, '2025-06-24 09:52:05', 0, NULL, 0, NULL, 1),
(32988, 25494, '3', 'Vels University ', '', 'B.com Commerce ', '2023', 80.00, '', 1, '2025-06-24 01:00:57', 0, NULL, 0, NULL, 1),
(32989, 25495, '3', 'Madras University ', '', 'B.com', '2023', 80.00, '', 1, '2025-06-24 01:09:53', 0, NULL, 0, NULL, 1),
(32990, 25497, '3', 'Madras University ', '', 'B.com', '2013', 75.00, '', 1, '2025-06-25 02:18:06', 0, NULL, 0, NULL, 1),
(32991, 25499, '4', 'Madras University', '', 'M.B.A', '2021', 68.00, '', 1, '2025-06-25 04:42:53', 0, NULL, 0, NULL, 1),
(32992, 25499, '3', 'madras university', '', 'B.C.A', '2018', 67.00, '', 1, '2025-06-25 04:43:27', 0, NULL, 0, NULL, 1),
(32993, 25498, '3', 'Vel Tech Rangarajan Dr.Sagunthala R&D institute of Science and Technology ', '', 'B.Tech CSE', '2023', 82.90, '', 1, '2025-06-25 04:44:31', 0, NULL, 0, NULL, 1),
(32994, 25498, '1', 'P.A.K Palanisamy Hr Sec School ', '', '', '2017', 88.90, '', 1, '2025-06-25 04:45:16', 0, NULL, 0, NULL, 1),
(32995, 25498, '2', 'P.A.K Palanisamy Hr Sec School ', '', '', '2019', 67.30, '', 1, '2025-06-25 04:45:42', 0, NULL, 0, NULL, 1),
(32996, 25500, '3', 'Thiruvallur university ', '', 'BSC computer science ', '2020', 60.00, '', 1, '2025-06-25 04:49:59', 0, NULL, 0, NULL, 1),
(32997, 25500, '2', 'State board ', '', '', '2017', 58.00, '', 1, '2025-06-25 04:51:02', 0, NULL, 0, NULL, 1),
(32998, 25500, '1', 'State board ', '', '', '2015', 74.00, '', 1, '2025-06-25 04:52:12', 0, NULL, 0, NULL, 1),
(32999, 25501, '3', 'University of adras', '', 'B.com', '2025', 74.00, '', 1, '2025-06-25 05:18:39', 0, NULL, 0, NULL, 1),
(33000, 25502, '3', 'SRM University ', '', 'B tech ', '2026', 74.10, '', 1, '2025-06-25 05:39:05', 0, NULL, 0, NULL, 1),
(33001, 25503, '2', 'Vintage pu college', '', '', '2021', 63.00, '', 1, '2025-06-25 05:49:31', 0, NULL, 0, NULL, 1),
(33002, 25504, '3', 'Madras University ', '', 'B.com', '2025', 80.00, '', 1, '2025-06-25 06:07:19', 0, NULL, 0, NULL, 1),
(33003, 25505, '3', 'Madras University ', '', 'B.COM [CORPORATE SECRETARYSHIP]', '2025', 70.00, '', 1, '2025-06-25 06:07:21', 0, NULL, 0, NULL, 1),
(33004, 25506, '3', 'University of Madras ', '', 'B. Com', '2025', 50.00, '', 1, '2025-06-25 06:20:00', 0, NULL, 0, NULL, 1),
(33005, 25508, '1', 'R c m school ', '', '', '2014', 54.40, '', 1, '2025-06-25 06:25:54', 0, NULL, 0, NULL, 1),
(33006, 25508, '2', 'Rcm school ', '', '', '2016', 56.00, '', 1, '2025-06-25 06:27:22', 0, NULL, 0, NULL, 1),
(33007, 25507, '4', 'Madras University ', '', 'B.com', '2025', 75.00, '', 1, '2025-06-25 06:27:58', 0, NULL, 0, NULL, 1),
(33008, 25508, '3', 'Madras University ', '', 'Bcom', '2019', 60.00, '', 1, '2025-06-25 06:28:12', 0, NULL, 0, NULL, 1),
(33009, 25508, '4', 'Madras University ', '', 'M a', '2021', 82.00, '', 1, '2025-06-25 06:28:34', 0, NULL, 0, NULL, 1),
(33010, 25507, '4', 'Madras University ', '', 'B.com', '2025', 75.00, '', 1, '2025-06-25 06:29:24', 1, '2025-06-25 06:29:35', 0, NULL, 0),
(33011, 25509, '4', 'Madras University ', '', 'B.com', '2025', 75.00, '', 1, '2025-06-25 06:33:31', 0, NULL, 0, NULL, 1),
(33012, 25511, '3', 'Madars university ', '', 'B .com', '2025', 85.00, '', 1, '2025-06-25 06:56:21', 0, NULL, 0, NULL, 1),
(33013, 25514, '3', 'University of madras', '', 'BBA', '2025', 77.00, '', 1, '2025-06-25 07:00:48', 0, NULL, 0, NULL, 1),
(33014, 25512, '3', 'Madras University ', '', 'Bba', '2025', 77.00, '', 1, '2025-06-25 07:11:41', 0, NULL, 0, NULL, 1),
(33015, 25513, '3', 'University of madras', '', 'BBA', '2025', 72.00, '', 1, '2025-06-25 07:14:43', 0, NULL, 0, NULL, 1),
(33016, 25515, '2', 'State board ', '', '', '2015', 90.00, '', 1, '2025-06-25 07:25:32', 0, NULL, 0, NULL, 1),
(33017, 25478, '3', 'alagappa university', '', 'bachelor of business administration', '2023', 70.00, '', 1, '2025-06-25 07:51:31', 0, NULL, 0, NULL, 1),
(33018, 25516, '3', 'University of Madras (am jain college)', '', 'BBA ', '2025', 60.00, '', 1, '2025-06-25 09:25:20', 0, NULL, 0, NULL, 1),
(33019, 25517, '3', 'University of Madras ', '', 'BCA ', '2022', 74.00, '', 1, '2025-06-25 09:38:46', 0, NULL, 0, NULL, 1),
(33020, 25518, '3', 'St.joseph\'s college of engineering ', '', 'B.E', '2016', 65.00, '', 1, '2025-06-25 09:50:31', 0, NULL, 0, NULL, 1),
(33021, 25519, '3', 'Sathyabama institute of science and technology ', '', 'BBA ', '2025', 74.00, '', 1, '2025-06-25 10:53:58', 0, NULL, 0, NULL, 1),
(33022, 25520, '4', 'anna university', '', 'mca', '2025', 64.60, '', 1, '2025-06-25 12:48:45', 0, NULL, 0, NULL, 1),
(33023, 25520, '3', 'bharathiar university', '', 'bca', '2023', 67.45, '', 1, '2025-06-25 12:49:55', 1, '2025-06-25 12:50:05', 0, NULL, 0),
(33024, 25520, '3', 'bharathiar university', '', 'bca', '2023', 67.45, '', 1, '2025-06-25 12:51:05', 0, NULL, 0, NULL, 1),
(33025, 25523, '3', 'Madras university ', '', 'BBA ', '2025', 70.00, '', 1, '2025-06-26 04:46:13', 0, NULL, 0, NULL, 1),
(33026, 25525, '3', 'Anna university ', '', 'Bachelor Engineering ', '2023', 7.50, '', 1, '2025-06-26 04:46:25', 0, NULL, 0, NULL, 1),
(33027, 25521, '3', 'University of Madras', '', 'Bachelor of Computer Application', '2024', 76.83, '', 1, '2025-06-26 05:25:39', 0, NULL, 0, NULL, 1),
(33028, 25521, '2', 'State Board', '', '', '2021', 85.00, '', 1, '2025-06-26 05:26:51', 0, NULL, 0, NULL, 1),
(33029, 25521, '1', 'State Board', '', '', '2019', 78.20, '', 1, '2025-06-26 05:27:34', 0, NULL, 0, NULL, 1),
(33030, 25526, '3', 'University ', '', 'Bca', '2021', 75.00, '', 1, '2025-06-26 05:42:10', 0, NULL, 0, NULL, 1),
(33031, 25527, '4', 'Sathyabama University', '', 'MBA', '2025', 7.04, '', 1, '2025-06-26 05:50:00', 0, NULL, 0, NULL, 1),
(33032, 25522, '3', 'Madras University ', '', 'B.com (cs)', '2025', 78.00, '', 1, '2025-06-26 05:57:32', 0, NULL, 0, NULL, 1),
(33033, 25528, '3', 'Periyar University', '', 'B.sc computer science ', '2019', 64.00, '', 1, '2025-06-26 07:04:50', 0, NULL, 0, NULL, 1),
(33034, 22656, '3', 'bharathidasan university', '', 'Bachelor of computer application ', '2023', 62.00, '', 1, '2025-06-26 08:04:21', 0, NULL, 0, NULL, 1),
(33035, 25532, '4', 'Anna university ', '', 'MBA ', '2025', 85.00, '', 1, '2025-06-26 08:57:39', 0, NULL, 0, NULL, 1),
(33036, 25533, '3', 'University of Madras ', '', 'Bsc', '2021', 60.00, '', 1, '2025-06-26 09:47:21', 0, NULL, 0, NULL, 1),
(33037, 25535, '1', 'Tamilnadu state Board ', '', '', '2018', 88.00, '', 1, '2025-06-26 11:02:21', 0, NULL, 0, NULL, 1),
(33038, 25535, '2', 'Tamilnadu State Board ', '', '', '2020', 76.00, '', 1, '2025-06-26 11:03:05', 0, NULL, 0, NULL, 1),
(33039, 25535, '3', 'Anna University ', '', 'B.Tech Information Technology ', '2024', 78.00, '', 1, '2025-06-26 11:03:32', 0, NULL, 0, NULL, 1),
(33040, 25530, '3', 'Board', '', 'B.Sc', '2024', 69.30, '', 1, '2025-06-26 11:13:23', 0, NULL, 0, NULL, 1),
(33041, 25537, '3', 'anna university', '', 'b.tech it', '2023', 82.00, '', 1, '2025-06-26 12:23:41', 0, NULL, 0, NULL, 1),
(33042, 25536, '3', 'Bharthidhasan university thiruchi ', '', 'Bsc computer science ', '2022', 83.00, '', 1, '2025-06-26 12:45:32', 0, NULL, 0, NULL, 1),
(33043, 25539, '3', 'The oxford college of arts and science ', '', 'BA', '2024', 7.12, '', 1, '2025-06-26 03:49:34', 0, NULL, 0, NULL, 1),
(33044, 25540, '3', 'bharathishasan University ', '', 'bcom', '2025', 64.00, '', 1, '2025-06-26 04:37:58', 0, NULL, 0, NULL, 1),
(33045, 25541, '3', 'University of Madras ', '', 'B.com (bank management)', '2025', 62.36, '', 1, '2025-06-27 04:58:09', 0, NULL, 0, NULL, 1),
(33046, 25543, '3', 'Madras University ', '', 'B.com cs', '2025', 69.00, '', 1, '2025-06-27 05:13:18', 0, NULL, 0, NULL, 1),
(33047, 25542, '3', 'University ', '', 'BBA', '2025', 70.00, '', 1, '2025-06-27 05:17:51', 0, NULL, 0, NULL, 1),
(33048, 25538, '3', 'Board ', '', 'B.com', '2025', 70.00, '', 1, '2025-06-27 05:25:46', 0, NULL, 0, NULL, 1),
(33049, 25546, '3', 'Anna university ', '', 'B. Sc', '2020', 80.00, '', 1, '2025-06-27 06:24:26', 0, NULL, 0, NULL, 1),
(33050, 25547, '4', 'Bharathi Women\'s College ', '', 'M.Sc. Chemistry ', '2025', 78.00, '', 1, '2025-06-27 06:24:47', 0, NULL, 0, NULL, 1),
(33051, 25547, '3', 'Chevalier T Thomas Elizabeth College for Women ', '', 'B.Sc. Chemistry ', '2023', 82.00, '', 1, '2025-06-27 06:25:35', 0, NULL, 0, NULL, 1),
(33052, 25547, '2', 'State Board ', '', '', '2020', 76.00, '', 1, '2025-06-27 06:26:56', 0, NULL, 0, NULL, 1),
(33053, 25547, '1', 'State Board ', '', '', '2018', 82.00, '', 1, '2025-06-27 06:27:45', 0, NULL, 0, NULL, 1),
(33054, 25548, '3', 'Anna University ', '', 'BE', '2024', 74.00, '', 1, '2025-06-27 06:32:11', 0, NULL, 0, NULL, 1),
(33055, 25548, '5', 'Dote', '', '', '2020', 71.00, '', 1, '2025-06-27 06:32:34', 0, NULL, 0, NULL, 1),
(33056, 25548, '1', 'State board ', '', '', '2017', 81.00, '', 1, '2025-06-27 06:32:50', 0, NULL, 0, NULL, 1),
(33057, 25549, '3', 'Madras University ', '', 'B A english literature ', '2025', 66.00, '', 1, '2025-06-27 06:39:24', 0, NULL, 0, NULL, 1),
(33058, 25534, '3', 'dr mgr university ', '', 'Bachelor of computer applications', '2020', 68.00, '', 1, '2025-06-27 06:40:49', 0, NULL, 0, NULL, 1),
(33059, 25550, '3', 'Anna University ', '', 'Bachelors of Engineering ', '2024', 73.00, '', 1, '2025-06-27 07:04:50', 0, NULL, 0, NULL, 1),
(33060, 25550, '1', 'State Board ', '', '', '2018', 91.60, '', 1, '2025-06-27 07:05:20', 0, NULL, 0, NULL, 1),
(33061, 25550, '2', 'State Board ', '', '', '2020', 78.00, '', 1, '2025-06-27 07:05:35', 0, NULL, 0, NULL, 1),
(33062, 25551, '3', 'Thiruthangal nadar college ', '', 'B.com (cS)', '2016', 70.00, '', 1, '2025-06-27 07:11:28', 0, NULL, 0, NULL, 1),
(33063, 25554, '3', 'University of madras', '', 'Bcom(cS)', '2016', 70.00, '', 1, '2025-06-27 07:27:45', 0, NULL, 0, NULL, 1),
(33064, 25552, '1', 'Padma Subramanyam Bala Bhavan mat hr sec school ', '', 'Bachelor of computer application ', '2019', 60.00, '', 1, '2025-06-27 07:28:09', 1, '2025-06-27 07:32:00', 0, NULL, 0),
(33065, 25552, '2', 'Padma Subramanyam Bala Bhavan mat hr sec school ', '', '', '2021', 75.00, '', 1, '2025-06-27 07:29:40', 0, NULL, 0, NULL, 1),
(33066, 25552, '1', 'Padma Subramanyam Bala Bhavan mat hr sec school ', '', '', '2019', 69.00, '', 1, '2025-06-27 07:32:42', 0, NULL, 0, NULL, 1),
(33067, 25552, '3', 'Thiruvalluvar university ', '', 'Bachelor of computer application ', '2024', 60.00, '', 1, '2025-06-27 07:34:05', 0, NULL, 0, NULL, 1),
(33068, 25553, '3', 'madras university', '', 'bcom marketing management', '2024', 80.00, '', 1, '2025-06-27 07:55:27', 0, NULL, 0, NULL, 1),
(33069, 25558, '3', 'The American college ', '', 'B.sc information technology ', '2024', 54.00, '', 1, '2025-06-27 08:00:30', 0, NULL, 0, NULL, 1),
(33070, 25555, '3', 'NPR College of engineering and technology ', '', 'BE', '2025', 75.00, '', 1, '2025-06-27 08:01:07', 0, NULL, 0, NULL, 1),
(33071, 25555, '2', 'Vevevaham matric higher secondary school ', '', '', '2021', 83.00, '', 1, '2025-06-27 08:01:56', 0, NULL, 0, NULL, 1),
(33072, 25557, '3', 'The American college ', '', 'B.sc information technology ', '2024', 60.00, '', 1, '2025-06-27 08:03:51', 0, NULL, 0, NULL, 1),
(33073, 25559, '3', 'K.l.n college of engineering ', '', 'BE - ECE', '2022', 83.90, '', 1, '2025-06-27 09:20:37', 0, NULL, 0, NULL, 1),
(33074, 25559, '2', 'State board', '', '', '2018', 79.40, '', 1, '2025-06-27 09:21:23', 0, NULL, 0, NULL, 1),
(33075, 25559, '1', 'Stateboard', '', '', '2016', 94.60, '', 1, '2025-06-27 09:21:47', 0, NULL, 0, NULL, 1),
(33076, 25560, '3', 'Madras university', '', 'B.A English language and literature', '2025', 65.00, '', 1, '2025-06-27 09:23:34', 0, NULL, 0, NULL, 1),
(33077, 25561, '2', 'State board ', '', '', '2019', 71.00, '', 1, '2025-06-27 10:25:20', 1, '2025-06-27 10:25:34', 0, NULL, 0),
(33078, 25561, '1', 'State board ', '', '', '2019', 71.00, '', 1, '2025-06-27 10:25:48', 0, NULL, 0, NULL, 1),
(33079, 25561, '2', 'State board ', '', '', '2021', 79.00, '', 1, '2025-06-27 10:26:19', 0, NULL, 0, NULL, 1),
(33080, 25561, '3', 'State board ', '', 'B.Sc Computer Science ', '2024', 71.40, '', 1, '2025-06-27 10:26:43', 0, NULL, 0, NULL, 1),
(33081, 25562, '3', 'S.A Engineering College ', '', 'B.E', '2024', 79.20, '', 1, '2025-06-27 10:28:45', 0, NULL, 0, NULL, 1),
(33082, 25563, '1', 'Tamilnadu board', '', '', '2018', 88.90, '', 1, '2025-06-27 10:48:16', 0, NULL, 0, NULL, 1),
(33083, 25563, '2', 'Tamilnadu board ', '', '', '2020', 79.80, '', 1, '2025-06-27 10:48:43', 0, NULL, 0, NULL, 1),
(33084, 25563, '3', 'Anna university ', '', 'BE CSE', '2024', 81.00, '', 1, '2025-06-27 10:49:10', 0, NULL, 0, NULL, 1),
(33085, 25564, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2023', 78.90, '', 1, '2025-06-27 11:14:32', 0, NULL, 0, NULL, 1),
(33086, 25565, '1', 'State Board', '', '', '2018', 86.00, '', 1, '2025-06-27 11:48:43', 0, NULL, 0, NULL, 1),
(33087, 25565, '2', 'State Board ', '', '', '2020', 76.50, '', 1, '2025-06-27 11:49:27', 0, NULL, 0, NULL, 1),
(33088, 25565, '3', 'Periyar University ', '', 'B.sc Maths', '2023', 69.00, '', 1, '2025-06-27 11:50:48', 0, NULL, 0, NULL, 1),
(33089, 25565, '4', 'Dhanalakshmi Srinivasan college, Mamallapuram', '', 'MCA', '2025', 83.00, '', 1, '2025-06-27 11:51:58', 0, NULL, 0, NULL, 1),
(33090, 25566, '3', 'Madras University ', '', 'Bsc physics ', '2025', 50.00, '', 1, '2025-06-27 12:50:50', 0, NULL, 0, NULL, 1),
(33091, 25567, '3', 'Madras university', '', 'B.com corprate Secretaryship', '2025', 65.00, '', 1, '2025-06-27 01:31:09', 0, NULL, 0, NULL, 1),
(33092, 25569, '3', 'Vivekanandha arts and science college for women ', '', 'B.Sc Chemistry ', '2019', 82.00, '', 1, '2025-06-28 04:39:47', 0, NULL, 0, NULL, 1),
(33093, 25570, '4', 'Periyar  University ', '', 'B. Sc computer science ', '2020', 62.00, '', 1, '2025-06-28 04:53:28', 0, NULL, 0, NULL, 1),
(33094, 25571, '4', 'Madras university', '', 'MA English literature', '2022', 98.00, '', 1, '2025-06-28 05:12:54', 0, NULL, 0, NULL, 1),
(33095, 25573, '5', 'Anna university ', '', 'Diploma in mechanical engineering ', '2020', 72.00, '', 1, '2025-06-28 05:19:25', 1, '2025-06-28 05:20:35', 0, NULL, 1),
(33096, 25574, '4', 'Anna University ', '', 'MCA', '2023', 50.00, '', 1, '2025-06-28 05:19:45', 0, NULL, 0, NULL, 1),
(33097, 19672, '3', 'Anna University ', '', 'B.E Mechatronics Engineering', '2023', 84.00, '', 1, '2025-06-28 05:23:03', 0, NULL, 0, NULL, 1),
(33098, 25575, '4', 'Anna University ', '', 'Master of Computer Application ', '2023', 78.00, '', 1, '2025-06-28 05:23:08', 0, NULL, 0, NULL, 1),
(33099, 25576, '3', 'srm  IST ', '', 'bsc physical education ', '2025', 80.00, '', 1, '2025-06-28 05:35:40', 0, NULL, 0, NULL, 1),
(33100, 25572, '3', 'Manonmanian sundarranar University ', '', 'Statistics ', '2021', 68.00, '', 1, '2025-06-28 05:41:15', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(33101, 25577, '3', 'madras university', '', 'bcom marketing management', '2025', 70.00, '', 1, '2025-06-28 05:54:56', 0, NULL, 0, NULL, 1),
(33102, 25578, '3', 'Anna University', '', 'BE', '2025', 84.00, '', 1, '2025-06-28 06:47:02', 0, NULL, 0, NULL, 1),
(33103, 25579, '3', 'Anna University ', '', 'BE(ECE)', '2021', 82.00, '', 1, '2025-06-28 06:57:15', 0, NULL, 0, NULL, 1),
(33104, 25581, '1', 'Cbse', '', '', '2018', 71.80, '', 1, '2025-06-28 07:21:44', 0, NULL, 0, NULL, 1),
(33105, 25581, '2', 'State board of tamil Nadu ', '', '', '2020', 70.50, '', 1, '2025-06-28 07:22:22', 0, NULL, 0, NULL, 1),
(33106, 25581, '3', 'University of Madras', '', 'B.Sc Computer Science ', '2023', 82.30, '', 1, '2025-06-28 07:22:50', 0, NULL, 0, NULL, 1),
(33107, 25581, '4', 'SRM University ', '', 'MCA ', '2025', 85.30, '', 1, '2025-06-28 07:23:08', 0, NULL, 0, NULL, 1),
(33108, 25582, '3', 'Anna university ', '', 'B.tech', '2024', 7.50, '', 1, '2025-06-28 07:23:21', 0, NULL, 0, NULL, 1),
(33109, 25580, '3', 'Anna university', '', 'B.Tech(IT)', '2024', 7.40, '', 1, '2025-06-28 07:24:05', 0, NULL, 0, NULL, 1),
(33110, 25584, '3', 'vels university', '', 'b.tech it', '2024', 7.06, '', 1, '2025-06-28 08:09:13', 0, NULL, 0, NULL, 1),
(33111, 25583, '3', 'The New College ', '', 'BCA', '2025', 7.93, '', 1, '2025-06-28 08:09:31', 0, NULL, 0, NULL, 1),
(33112, 0, '3', 'Madras university ', '', 'B.com', '2025', 82.00, '', 1, '2025-06-28 09:42:21', 1, '2025-06-28 01:11:38', 0, NULL, 0),
(33113, 25586, '3', 'Anna University ', '', 'B.E-EEE', '2022', 71.00, '', 1, '2025-06-28 11:33:59', 1, '2025-06-28 11:34:45', 0, NULL, 1),
(33114, 25586, '2', 'State board ', '', '', '2018', 72.00, '', 1, '2025-06-28 11:35:12', 0, NULL, 0, NULL, 1),
(33115, 25587, '1', 'State board ', '', '', '2017', 97.40, '', 1, '2025-06-28 11:36:24', 0, NULL, 0, NULL, 1),
(33116, 25587, '2', 'State board ', '', '', '2019', 84.00, '', 1, '2025-06-28 11:36:50', 0, NULL, 0, NULL, 1),
(33117, 25587, '3', 'University of Madras ', '', 'BCA ', '2023', 85.00, '', 1, '2025-06-28 11:37:08', 0, NULL, 0, NULL, 1),
(33118, 25587, '4', 'University of Madras ', '', 'MCA', '2025', 88.00, '', 1, '2025-06-28 11:37:42', 0, NULL, 0, NULL, 1),
(33119, 25589, '3', 'madras University ', '', 'bca', '2024', 80.00, '', 1, '2025-06-28 01:06:56', 0, NULL, 0, NULL, 1),
(33120, 25590, '4', 'Amma University ', '', 'M.a economics ', '2024', 78.00, '', 1, '2025-06-28 01:13:23', 0, NULL, 0, NULL, 1),
(33121, 25593, '4', 'Quaid e millath government college for women ', '', 'MA economics ', '2024', 80.00, '', 1, '2025-06-28 03:19:45', 0, NULL, 0, NULL, 1),
(33122, 25596, '1', 'State board of Tamil Nadu ', '', '', '2017', 82.00, '', 1, '2025-06-29 03:56:42', 0, NULL, 0, NULL, 1),
(33123, 25596, '5', 'DOTE', '', 'cSE', '2020', 81.52, '', 1, '2025-06-29 03:57:23', 1, '2025-06-29 03:58:54', 0, NULL, 1),
(33124, 25596, '3', 'Anna University', '', 'B.E', '2024', 81.00, '', 1, '2025-06-29 03:58:18', 0, NULL, 0, NULL, 1),
(33125, 25594, '3', 'Madras University ', '', 'B.com general ', '2023', 75.00, '', 1, '2025-06-29 12:57:41', 0, NULL, 0, NULL, 1),
(33126, 25597, '1', 'State board ', '', '', '2019', 81.42, '', 1, '2025-06-30 02:05:34', 1, '2025-06-30 02:06:09', 0, NULL, 1),
(33127, 25597, '2', 'State board ', '', '', '2021', 86.64, '', 1, '2025-06-30 02:06:57', 0, NULL, 0, NULL, 1),
(33128, 25597, '3', 'University ', '', 'Bsc Computer science ', '2024', 80.66, '', 1, '2025-06-30 02:07:33', 0, NULL, 0, NULL, 1),
(33129, 25598, '3', 'Sv university ', '', 'BSC ', '2025', 8.50, '', 1, '2025-06-30 05:31:07', 0, NULL, 0, NULL, 1),
(33130, 25599, '3', 'Madras University ', '', 'BBA ', '2024', 80.00, '', 1, '2025-06-30 05:33:52', 0, NULL, 0, NULL, 1),
(33131, 25601, '3', 'Anna university ', '', 'B.E', '2024', 75.00, '', 1, '2025-06-30 05:38:19', 0, NULL, 0, NULL, 1),
(33132, 25601, '1', 'Tamilnadu state board ', '', '', '2018', 73.00, '', 1, '2025-06-30 05:39:23', 0, NULL, 0, NULL, 1),
(33133, 25601, '5', 'Anna university ', '', 'DEEE', '2021', 70.00, '', 1, '2025-06-30 05:39:55', 0, NULL, 0, NULL, 1),
(33134, 25588, '3', 'university', '', 'bcom', '2025', 75.00, '', 1, '2025-06-30 05:43:32', 0, NULL, 0, NULL, 1),
(33135, 25600, '3', 'Madra university ', '', 'BBA', '2024', 79.00, '', 1, '2025-06-30 05:50:37', 0, NULL, 0, NULL, 1),
(33136, 25604, '4', 'SRM institute of science and technology ', '', 'MBA', '2025', 8.96, '', 1, '2025-06-30 05:58:29', 0, NULL, 0, NULL, 1),
(33137, 25604, '3', 'Bharathidasan university ', '', 'B. Com ', '2023', 67.00, '', 1, '2025-06-30 05:59:04', 0, NULL, 0, NULL, 1),
(33138, 25604, '2', 'De. Britto heigher secondary school ', '', '', '2020', 57.00, '', 1, '2025-06-30 05:59:39', 0, NULL, 0, NULL, 1),
(33139, 25604, '1', 'De. Britto higher secondary school ', '', '', '2018', 61.00, '', 1, '2025-06-30 06:00:04', 0, NULL, 0, NULL, 1),
(33140, 25556, '1', 'State Board of Tamil Nadu ', '', '', '2018', 78.00, '', 1, '2025-06-30 06:06:49', 0, NULL, 0, NULL, 1),
(33141, 25556, '2', 'State Board of Tamil Nadu ', '', '', '2020', 72.00, '', 1, '2025-06-30 06:07:15', 0, NULL, 0, NULL, 1),
(33142, 25556, '3', 'Anna University ', '', 'BE-ELECTRONIC AND COMMUNICATION ENGINEERING ', '2024', 80.00, '', 1, '2025-06-30 06:07:36', 0, NULL, 0, NULL, 1),
(33143, 25603, '4', 'University of Madras ', '', 'M.Sc (computer science)', '2023', 85.00, '', 1, '2025-06-30 06:10:39', 0, NULL, 0, NULL, 1),
(33144, 25603, '3', 'University of Madras ', '', 'B.Sc (computer science)', '2021', 80.00, '', 1, '2025-06-30 06:11:38', 0, NULL, 0, NULL, 1),
(33145, 25603, '2', 'State board ', '', '', '2018', 81.00, '', 1, '2025-06-30 06:12:13', 0, NULL, 0, NULL, 1),
(33146, 25603, '1', 'State board ', '', '', '2016', 82.00, '', 1, '2025-06-30 06:12:51', 0, NULL, 0, NULL, 1),
(33147, 25592, '3', 'Madras University ', '', ' (Bachelor of Commerce) in Corporate Secretaryship', '2025', 60.00, '', 1, '2025-06-30 06:13:54', 0, NULL, 0, NULL, 1),
(33148, 25591, '3', 'Madras University ', '', 'B.com (corporate secretaryship)', '2025', 63.00, '', 1, '2025-06-30 06:14:48', 0, NULL, 0, NULL, 1),
(33149, 25605, '3', 'Periyar university', '', 'B. B. A', '2023', 58.00, '', 1, '2025-06-30 06:26:46', 0, NULL, 0, NULL, 1),
(33150, 25607, '3', 'Mepco Schlenk engineering college ', '', 'B.e eCE', '2025', 6.50, '', 1, '2025-06-30 06:34:45', 0, NULL, 0, NULL, 1),
(33151, 25607, '1', 'Devangar higher secondary school ', '', '', '2019', 67.00, '', 1, '2025-06-30 06:35:30', 0, NULL, 0, NULL, 1),
(33152, 25607, '2', 'Devangar higher secondary school ', '', '', '2021', 81.00, '', 1, '2025-06-30 06:35:45', 0, NULL, 0, NULL, 1),
(33153, 25608, '3', 'Sri Krishnadevaraya university ', '', 'B.com', '2022', 7.90, '', 1, '2025-06-30 06:36:40', 0, NULL, 0, NULL, 1),
(33154, 25609, '4', 'Bharathidasan university ', '', 'M.Sc Visual communication ', '2024', 85.00, '', 1, '2025-06-30 06:37:45', 0, NULL, 0, NULL, 1),
(33155, 25606, '3', 'Sri krishna devaraya university ', '', 'BBA', '2022', 65.00, '', 1, '2025-06-30 06:42:22', 0, NULL, 0, NULL, 1),
(33156, 25602, '3', 'Madras University ', '', 'B.com (genral)', '2025', 70.00, '', 1, '2025-06-30 06:45:16', 0, NULL, 0, NULL, 1),
(33157, 25610, '5', 'Cpat- tvs', '', 'EEE', '2020', 80.00, '', 1, '2025-06-30 07:04:55', 0, NULL, 0, NULL, 1),
(33158, 25611, '3', 'Thiruvallur university ', '', 'B.sc computer science ', '2023', 75.00, '', 1, '2025-06-30 07:24:17', 0, NULL, 0, NULL, 1),
(33159, 25612, '3', 'bharathidhasan', '', 'bca', '2025', 70.00, '', 1, '2025-06-30 07:24:18', 0, NULL, 0, NULL, 1),
(33160, 25614, '3', 'Madras University ', '', 'Bcom ', '2025', 60.00, '', 1, '2025-06-30 07:46:01', 0, NULL, 0, NULL, 1),
(33161, 25613, '3', 'BHARATHIDASAN UNIVERSITY', '', 'BCS PHYSICS ', '2025', 60.00, '', 1, '2025-06-30 07:53:09', 0, NULL, 0, NULL, 1),
(33162, 25615, '3', 'Madras university ', '', 'B.sc computer science ', '2025', 60.00, '', 1, '2025-06-30 08:01:21', 0, NULL, 0, NULL, 1),
(33163, 25617, '4', 'Bangalore University ', '', 'B.com', '2009', 40.00, '', 1, '2025-06-30 09:01:08', 0, NULL, 0, NULL, 1),
(33164, 25618, '3', 'loyola college', '', 'b.voc', '2024', 6.59, '', 1, '2025-06-30 09:33:49', 0, NULL, 0, NULL, 1),
(33165, 25619, '3', 'Guru nanak college ', '', 'B.com (general)', '2025', 71.90, '', 1, '2025-06-30 11:03:41', 0, NULL, 0, NULL, 1),
(33166, 25595, '3', 'madurai kamaraj uni college', '', 'b.sc computer science ', '2024', 62.70, '', 1, '2025-06-30 01:14:54', 0, NULL, 0, NULL, 1),
(33167, 25595, '2', 'st britto higher secondary school', '', '', '2021', 80.66, '', 1, '2025-06-30 01:16:05', 0, NULL, 0, NULL, 1),
(33168, 25595, '1', 'st joseph high school', '', '', '2019', 76.20, '', 1, '2025-06-30 01:16:33', 0, NULL, 0, NULL, 1),
(33169, 25620, '3', 'Anna university ', '', 'BE', '2021', 70.00, '', 1, '2025-06-30 06:39:15', 0, NULL, 0, NULL, 1),
(33170, 25616, '3', 'BHARATHIDASAN UNIVERSITY ', '', 'BA (ECONOMICS)', '2017', 70.00, '', 1, '2025-07-01 03:57:58', 0, NULL, 0, NULL, 1),
(33171, 25616, '4', 'BHARATHIDASAN UNIVERSITY ', '', 'MBA (HUMAN RESOURCE)', '2019', 60.00, '', 1, '2025-07-01 03:58:56', 0, NULL, 0, NULL, 1),
(33172, 25621, '3', 'Madras university ', '', 'Bsc psychology ', '2025', 6.00, '', 1, '2025-07-01 04:35:05', 1, '2025-07-01 04:37:17', 0, NULL, 0),
(33173, 25621, '2', 'Bhsc', '', '', '2020', 68.00, '', 1, '2025-07-01 04:37:08', 0, NULL, 0, NULL, 1),
(33174, 25623, '4', 'SRM University ', '', 'Biochemistry ', '2025', 97.00, '', 1, '2025-07-01 04:56:41', 0, NULL, 0, NULL, 1),
(33175, 25622, '3', 'Sengamala thaayar education tust women\'s college (a)', '', 'Bsc-computer science ', '2025', 88.00, '', 1, '2025-07-01 05:01:01', 0, NULL, 0, NULL, 1),
(33176, 25624, '3', 'Periyar University ', '', 'BSC Computer science ', '2024', 75.00, '', 1, '2025-07-01 05:29:45', 0, NULL, 0, NULL, 1),
(33177, 25625, '3', 'Anna university ', '', 'B.E Computer science and engineering ', '2025', 67.50, '', 1, '2025-07-01 06:04:21', 0, NULL, 0, NULL, 1),
(33178, 25628, '3', 'University ', '', 'B.com accounting and finance ', '2021', 70.00, '', 1, '2025-07-01 06:04:26', 0, NULL, 0, NULL, 1),
(33179, 25628, '1', 'Broad ', '', '', '2016', 49.00, '', 1, '2025-07-01 06:04:56', 0, NULL, 0, NULL, 1),
(33180, 25628, '2', 'Broad ', '', '', '2018', 51.00, '', 1, '2025-07-01 06:05:22', 0, NULL, 0, NULL, 1),
(33181, 25627, '4', 'Anna University ', '', 'MCA', '2025', 86.00, '', 1, '2025-07-01 06:08:53', 0, NULL, 0, NULL, 1),
(33182, 25630, '3', 'Bharathiyar university ', '', 'BA English literature ', '2025', 67.00, '', 1, '2025-07-01 06:25:42', 0, NULL, 0, NULL, 1),
(33183, 25632, '3', 'Madras University ', '', 'BA CRIMINOLOGY ', '2025', 59.00, '', 1, '2025-07-01 07:14:22', 0, NULL, 0, NULL, 1),
(33184, 25631, '3', 'Madras University ', '', 'Bsc physics ', '2023', 79.00, '', 1, '2025-07-01 07:17:25', 0, NULL, 0, NULL, 1),
(33185, 25633, '2', 'state board', '', 'bcA', '2021', 75.00, '', 1, '2025-07-01 07:27:44', 0, NULL, 0, NULL, 1),
(33186, 25634, '3', 'Bharathiyar university', '', 'Bsc mathematics', '2019', 70.00, '', 1, '2025-07-01 07:35:53', 0, NULL, 0, NULL, 1),
(33187, 25635, '2', 'goverment ', '', '', '2021', 75.00, '', 1, '2025-07-01 07:37:17', 0, NULL, 0, NULL, 1),
(33188, 25638, '1', 'Board', '', '', '2019', 70.00, '', 1, '2025-07-01 09:43:33', 0, NULL, 0, NULL, 1),
(33189, 25638, '2', 'Board', '', '', '2021', 78.00, '', 1, '2025-07-01 09:43:51', 0, NULL, 0, NULL, 1),
(33190, 25637, '3', 'University', '', 'BSc plant biology and biotechnology', '2025', 60.00, '', 1, '2025-07-01 09:54:42', 0, NULL, 0, NULL, 1),
(33191, 25639, '3', 'Thiruvalluvar university ', '', 'Bsc Physics ', '2024', 65.00, '', 1, '2025-07-01 10:43:18', 0, NULL, 0, NULL, 1),
(33192, 25640, '3', 'Bharathiyar university ', '', 'Bsc Computer Technology ', '2025', 75.00, '', 1, '2025-07-01 10:51:09', 0, NULL, 0, NULL, 1),
(33193, 25640, '2', 'Bharathiyar university ', '', '', '2022', 74.80, '', 1, '2025-07-01 10:53:16', 0, NULL, 0, NULL, 1),
(33194, 25640, '1', 'Bharathiyar university ', '', '', '2020', 65.80, '', 1, '2025-07-01 10:53:51', 0, NULL, 0, NULL, 1),
(33195, 25641, '3', 'Anna University ', '', 'B.E', '2023', 82.00, '', 1, '2025-07-01 11:11:53', 0, NULL, 0, NULL, 1),
(33196, 25642, '1', 'Board', '', '', '2018', 92.00, '', 1, '2025-07-01 11:47:54', 0, NULL, 0, NULL, 1),
(33197, 25642, '3', 'University ', '', 'BE', '2024', 82.00, '', 1, '2025-07-01 11:48:33', 0, NULL, 0, NULL, 1),
(33198, 25645, '3', 'Anna University ', '', 'BE', '2024', 78.00, '', 1, '2025-07-01 11:53:19', 0, NULL, 0, NULL, 1),
(33199, 25645, '2', 'Grama committee higher secondary School ', '', '', '2020', 80.00, '', 1, '2025-07-01 11:53:49', 0, NULL, 0, NULL, 1),
(33200, 25645, '1', 'Grama committee higher secondary School ', '', '', '2018', 88.00, '', 1, '2025-07-01 11:54:37', 0, NULL, 0, NULL, 1),
(33201, 25646, '3', 'Bharathidasan university ', '', 'Bachelor of Commerce with Computer Application ', '2025', 81.00, '', 1, '2025-07-01 12:08:04', 0, NULL, 0, NULL, 1),
(33202, 25646, '2', 'Muvender Matriculation Higher Secondary School ', '', '', '2022', 89.00, '', 1, '2025-07-01 12:11:47', 0, NULL, 0, NULL, 1),
(33203, 25646, '1', 'A V Meiyappan Matriculation Higher Secondary School ', '', '', '2020', 56.00, '', 1, '2025-07-01 12:12:12', 0, NULL, 0, NULL, 1),
(33204, 25647, '3', 'SRM University ', '', 'Btech ', '2024', 81.00, '', 1, '2025-07-01 12:44:18', 0, NULL, 0, NULL, 1),
(33205, 25648, '3', 'University of Madras ', '', 'B com corporate secretaryship ', '2025', 70.00, '', 1, '2025-07-01 01:14:42', 1, '2025-07-01 01:15:44', 0, NULL, 1),
(33206, 25649, '3', 'Manomanium sundranar university', '', 'Bcom', '2017', 50.00, '', 1, '2025-07-01 01:31:48', 0, NULL, 0, NULL, 1),
(33207, 25653, '4', 'Dr MGR education and research institute ', '', 'MBA (General)', '2025', 75.00, '', 1, '2025-07-02 05:01:45', 154, '2025-07-02 10:42:10', 0, NULL, 1),
(33208, 25654, '4', 'Dr. M. G. R University', '', 'MBA(General) ', '2025', 80.00, '', 1, '2025-07-02 05:06:29', 0, NULL, 0, NULL, 1),
(33209, 25655, '4', 'Dr M.G.R University ', '', 'MBA(General)', '2025', 80.00, '', 1, '2025-07-02 05:13:08', 0, NULL, 0, NULL, 1),
(33210, 25657, '4', 'Anna university ', '', 'MCA', '2023', 8.00, '', 1, '2025-07-02 05:57:02', 0, NULL, 0, NULL, 1),
(33211, 25656, '3', 'Thiruvallur ', '', 'Bsc', '2023', 82.00, '', 1, '2025-07-02 05:57:54', 0, NULL, 0, NULL, 1),
(33212, 25658, '3', 'Periyar University ', '', 'B.Sc', '2024', 70.00, '', 1, '2025-07-02 05:59:24', 0, NULL, 0, NULL, 1),
(33213, 25659, '3', 'Madurai Kamarajar university ', '', 'B.sc computer science ', '2022', 79.00, '', 1, '2025-07-02 05:59:51', 0, NULL, 0, NULL, 1),
(33214, 0, '4', 'Anna University ', '', 'MCA', '2023', 80.00, '', 1, '2025-07-02 06:03:51', 1, '2025-07-03 06:38:15', 0, NULL, 0),
(33215, 25660, '3', 'C Kandaswami Naidu College for Men', '', 'BCA ', '2022', 60.00, '', 1, '2025-07-02 06:07:42', 0, NULL, 0, NULL, 1),
(33216, 25662, '4', 'Anna university ', '', 'MCA', '2023', 80.00, '', 1, '2025-07-02 06:15:02', 0, NULL, 0, NULL, 1),
(33217, 25661, '3', 'Autonomous ', '', 'B.Ed', '2025', 70.00, '', 1, '2025-07-02 06:16:26', 0, NULL, 0, NULL, 1),
(33218, 25545, '3', 'Am Jain College ', '', 'B.Com Cs', '2025', 73.00, '', 1, '2025-07-02 06:46:51', 0, NULL, 0, NULL, 1),
(33219, 25545, '2', 'Daniel Matriculation Higher secondary school ', '', '', '2022', 83.00, '', 1, '2025-07-02 06:47:32', 0, NULL, 0, NULL, 1),
(33220, 25663, '3', 'Madras University ', '', 'B.com bank management ', '2025', 65.00, '', 1, '2025-07-02 07:12:01', 0, NULL, 0, NULL, 1),
(33221, 25643, '5', 'Arena animation t nagar', '', 'Vfx prime', '2023', 85.00, '', 1, '2025-07-02 11:06:34', 0, NULL, 0, NULL, 1),
(33222, 25666, '3', 'Justice bashee ahdee seyed college for women ', '', 'B com (information systems management )', '2025', 69.00, '', 1, '2025-07-02 12:14:46', 0, NULL, 0, NULL, 1),
(33223, 25666, '1', 'NKT national girl\'s hr secondary school ', '', '', '2022', 62.00, '', 1, '2025-07-02 12:16:08', 0, NULL, 0, NULL, 1),
(33224, 25666, '2', 'NKT national girls hr secondary school ', '', '', '2020', 60.00, '', 1, '2025-07-02 12:16:43', 0, NULL, 0, NULL, 1),
(33225, 25665, '3', 'Kumararani Meena Muthiah college of Arts & Science, Chennai', '', 'Bsc visual communication ', '2025', 85.00, '', 1, '2025-07-02 12:19:08', 0, NULL, 0, NULL, 1),
(33226, 25667, '3', 'kcg college of technology', '', 'b.e computer science', '2024', 7.50, '', 1, '2025-07-02 01:01:22', 0, NULL, 0, NULL, 1),
(33227, 25644, '3', 'University of madras ', '', 'B.com general ', '2024', 65.00, '', 1, '2025-07-03 05:21:25', 0, NULL, 0, NULL, 1),
(33228, 25668, '3', 'Madras University ', '', 'BCA(bachelor of computer application)', '2025', 65.00, '', 1, '2025-07-03 05:21:56', 0, NULL, 0, NULL, 1),
(33229, 25669, '3', 'anna university ', '', 'b.e', '2023', 8.03, '', 1, '2025-07-03 05:22:46', 0, NULL, 0, NULL, 1),
(33230, 25670, '3', 'Alagappa University', '', 'B. Sc Maths', '2018', 84.00, '', 1, '2025-07-03 05:41:49', 0, NULL, 0, NULL, 1),
(33231, 25671, '1', 'Anna University ', '', '', '2021', 82.00, '', 1, '2025-07-03 06:02:16', 0, NULL, 0, NULL, 1),
(33232, 25672, '3', 'drbcc  hindu college', '', 'bcom', '2023', 82.00, '', 1, '2025-07-03 06:09:08', 0, NULL, 0, NULL, 1),
(33233, 25672, '4', 'madras University ', '', ' mba - hrm', '2025', 75.00, '', 1, '2025-07-03 06:10:48', 0, NULL, 0, NULL, 1),
(33234, 25673, '3', 'Madras university', '', 'B.com (corporate secretryship)', '2019', 65.00, '', 1, '2025-07-03 06:23:48', 0, NULL, 0, NULL, 1),
(33235, 25674, '3', 'Bharathidasan university ', '', 'BBA', '2023', 73.00, '', 1, '2025-07-03 06:39:32', 0, NULL, 0, NULL, 1),
(33236, 25677, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 89.00, '', 1, '2025-07-03 07:15:49', 0, NULL, 0, NULL, 1),
(33237, 25664, '1', 'State Board', '', '', '2018', 72.20, '', 1, '2025-07-03 07:54:24', 0, NULL, 0, NULL, 1),
(33238, 25664, '2', 'State Board', '', '', '2020', 45.60, '', 1, '2025-07-03 07:55:04', 0, NULL, 0, NULL, 1),
(33239, 25664, '3', 'Anna University', '', 'B.E EEE', '2024', 8.13, '', 1, '2025-07-03 07:55:46', 0, NULL, 0, NULL, 1),
(33240, 25636, '3', 'Bharathidasan university ', '', 'B.voc (BFSI)', '2025', 70.00, '', 1, '2025-07-03 09:24:01', 0, NULL, 0, NULL, 1),
(33241, 25680, '1', 'madras university', '', '', '2025', 65.00, '', 1, '2025-07-03 09:33:10', 1, '2025-07-03 09:40:22', 0, NULL, 0),
(33242, 25680, '2', 'st pauls', '', '', '2020', 65.00, '', 1, '2025-07-03 09:34:40', 1, '2025-07-03 09:40:48', 0, NULL, 0),
(33243, 25680, '3', 'mardras university', '', 'BBA (2022 - 2025) ', '2025', 65.00, '', 1, '2025-07-03 09:35:57', 0, NULL, 0, NULL, 1),
(33244, 25679, '1', 'Government school ', '', '', '2020', 55.00, '', 1, '2025-07-03 09:39:33', 0, NULL, 0, NULL, 1),
(33245, 25680, '1', 'st pauls', '', '', '2022', 60.00, '', 1, '2025-07-03 09:41:15', 0, NULL, 0, NULL, 1),
(33246, 25680, '2', 'st pauls ', '', '', '2020', 60.00, '', 1, '2025-07-03 09:41:49', 0, NULL, 0, NULL, 1),
(33247, 25679, '2', 'Government school ', '', '', '2022', 60.00, '', 1, '2025-07-03 09:42:39', 0, NULL, 0, NULL, 1),
(33248, 25679, '3', 'Madras university ', '', 'B.com', '2025', 60.00, '', 1, '2025-07-03 09:43:11', 0, NULL, 0, NULL, 1),
(33249, 25681, '3', 'anna university', '', 'bachelor of engineering', '2024', 76.00, '', 1, '2025-07-03 09:59:43', 0, NULL, 0, NULL, 1),
(33250, 25684, '3', 'SIED college ', '', 'B.com(information system management) ', '2025', 85.00, '', 1, '2025-07-03 02:57:55', 0, NULL, 0, NULL, 1),
(33251, 25685, '3', 'University of Madras ', '', 'BSC Computer science ', '2025', 59.00, '', 1, '2025-07-03 05:13:21', 0, NULL, 0, NULL, 1),
(33252, 25688, '3', 'Madras University ', '', 'Bcom', '2025', 69.00, '', 1, '2025-07-04 05:20:54', 0, NULL, 0, NULL, 1),
(33253, 25675, '3', 'Anna university', '', 'BE biomedical', '2025', 80.00, '', 1, '2025-07-04 05:21:03', 0, NULL, 0, NULL, 1),
(33254, 25686, '4', 'Anna University ', '', 'MCA', '2024', 7.20, '', 1, '2025-07-04 05:38:54', 0, NULL, 0, NULL, 1),
(33255, 25689, '3', 'Madras University ', '', 'BBA ', '2025', 67.00, '', 1, '2025-07-04 05:47:36', 0, NULL, 0, NULL, 1),
(33256, 25691, '3', 'justice basheer ahmed sayed college for women', '', 'b.com general', '2023', 70.00, '', 1, '2025-07-04 05:58:30', 0, NULL, 0, NULL, 1),
(33257, 25692, '1', 'Diploma mechanical engineering ', '', '', '2023', 80.00, '', 1, '2025-07-04 06:02:57', 0, NULL, 0, NULL, 1),
(33258, 25693, '3', 'Madras University ', '', 'Bsc', '2025', 78.00, '', 1, '2025-07-04 06:58:19', 0, NULL, 0, NULL, 1),
(33259, 25695, '3', 'University college of engineering panruti ', '', 'BE -COMPUTER SCIENCE AND ENGINEERING ', '2025', 80.00, '', 1, '2025-07-04 07:07:16', 0, NULL, 0, NULL, 1),
(33260, 25687, '3', 'Soka ikeda college ', '', 'B.com ', '2025', 74.00, '', 1, '2025-07-04 09:35:05', 0, NULL, 0, NULL, 1),
(33261, 25700, '3', 'Bharath University ', '', 'Btech Biotechnology ', '2025', 74.10, '', 1, '2025-07-04 10:32:42', 0, NULL, 0, NULL, 1),
(33262, 25700, '2', 'Jrk matric', '', '', '2021', 81.70, '', 1, '2025-07-04 10:33:01', 0, NULL, 0, NULL, 1),
(33263, 25700, '1', 'Jrk matric ', '', '', '2019', 70.00, '', 1, '2025-07-04 10:33:13', 0, NULL, 0, NULL, 1),
(33264, 25699, '3', 'Panimalar engineering college', '', 'B.tech information technology ', '2022', 83.00, '', 1, '2025-07-04 10:34:15', 0, NULL, 0, NULL, 1),
(33265, 25699, '2', 'Velammal', '', '', '2018', 87.50, '', 1, '2025-07-04 10:35:14', 0, NULL, 0, NULL, 1),
(33266, 25699, '1', 'Cbse velammal', '', '', '2016', 92.00, '', 1, '2025-07-04 10:35:56', 0, NULL, 0, NULL, 1),
(33267, 25683, '3', 'university ', '', 'b.comgenaral', '2025', 74.50, '', 1, '2025-07-04 01:13:16', 0, NULL, 0, NULL, 1),
(33268, 25703, '3', 'S.a college of arts and science ', '', 'BBA', '2025', 65.00, '', 1, '2025-07-04 01:57:11', 0, NULL, 0, NULL, 1),
(33269, 25702, '3', 'Anna University ', '', 'BE CSE', '2024', 80.00, '', 1, '2025-07-04 03:53:11', 0, NULL, 0, NULL, 1),
(33270, 25694, '3', 'UNIVERSITY OF MADRAS ', '', 'BACHELOR  OF COMMERCE ', '2025', 70.00, '', 1, '2025-07-05 04:55:31', 0, NULL, 0, NULL, 1),
(33271, 25708, '3', 'periyar university', '', 'bsc cs', '2023', 75.00, '', 1, '2025-07-05 06:08:51', 0, NULL, 0, NULL, 1),
(33272, 25707, '3', 'Madras', '', 'Bsc', '2023', 81.00, '', 1, '2025-07-05 06:10:35', 0, NULL, 0, NULL, 1),
(33273, 25710, '3', 'Deemed university ', '', 'BCA', '2024', 8.19, '', 1, '2025-07-05 06:14:43', 0, NULL, 0, NULL, 1),
(33274, 25711, '4', 'Anna University ', '', 'MBA ', '2023', 79.00, '', 1, '2025-07-05 06:16:46', 0, NULL, 0, NULL, 1),
(33275, 25711, '3', 'Vels university ', '', 'BBA ', '2021', 69.00, '', 1, '2025-07-05 06:17:23', 0, NULL, 0, NULL, 1),
(33276, 25712, '3', 'Bharathidasan university ', '', 'B.com', '2020', 75.00, '', 1, '2025-07-05 06:20:27', 0, NULL, 0, NULL, 1),
(33277, 25706, '3', 'Madras University ', '', 'B.com', '2025', 76.00, '', 1, '2025-07-05 06:20:38', 0, NULL, 0, NULL, 1),
(33278, 25709, '4', 'Bharathidasan university ', '', 'MBA', '2025', 7.60, '', 1, '2025-07-05 06:42:48', 0, NULL, 0, NULL, 1),
(33279, 25713, '3', 'Msu university ', '', 'Bsc', '2025', 70.00, '', 1, '2025-07-05 06:48:11', 0, NULL, 0, NULL, 1),
(33280, 25715, '4', 'Government arts and science college tandiapet ', '', 'B.A economics (EM)', '2025', 85.00, '', 1, '2025-07-05 08:59:44', 0, NULL, 0, NULL, 1),
(33281, 25714, '4', 'Quaid E Millath Govt college ', '', 'BA(Tamil)', '2025', 80.00, '', 1, '2025-07-05 09:23:44', 0, NULL, 0, NULL, 1),
(33282, 25716, '4', 'Bharath institute of higher education and research ', '', 'MBA ', '2025', 78.00, '', 1, '2025-07-05 11:45:03', 0, NULL, 0, NULL, 1),
(33283, 25716, '3', 'Fighter wings Aviation college ', '', 'B.sc Aviation ', '2023', 75.00, '', 1, '2025-07-05 11:46:23', 0, NULL, 0, NULL, 1),
(33284, 25717, '3', 'Madras University ', '', 'BCA ', '2022', 76.00, '', 1, '2025-07-05 11:55:22', 0, NULL, 0, NULL, 1),
(33285, 25718, '3', 'University ', '', 'B.com', '2022', 72.00, '', 1, '2025-07-05 12:02:13', 0, NULL, 0, NULL, 1),
(33286, 25720, '1', 'Board', '', '', '2019', 78.00, '', 1, '2025-07-06 12:54:10', 0, NULL, 0, NULL, 1),
(33287, 25720, '2', 'Board', '', '', '2021', 84.00, '', 1, '2025-07-06 12:54:40', 0, NULL, 0, NULL, 1),
(33288, 25720, '3', 'Anna University ', '', 'BE-Computer Science And Engineering ', '2025', 71.00, '', 1, '2025-07-06 12:55:13', 0, NULL, 0, NULL, 1),
(33289, 25721, '4', 'Bharath Institute of Higher Education and Research ', '', 'BBA.,MBA ', '2025', 80.00, '', 1, '2025-07-07 03:33:59', 0, NULL, 0, NULL, 1),
(33290, 25722, '1', 'metriculation', '', '', '2021', 60.00, '', 1, '2025-07-07 04:37:30', 1, '2025-07-07 04:39:48', 0, NULL, 0),
(33291, 25722, '3', 'madras university', '', 'bca ', '2024', 60.00, '', 1, '2025-07-07 04:38:55', 0, NULL, 0, NULL, 1),
(33292, 25723, '3', 'Bannari Amman Institute of Technology ', '', 'Bachelor of Engineering ', '2024', 73.40, '', 1, '2025-07-07 05:15:52', 0, NULL, 0, NULL, 1),
(33293, 25723, '2', 'State board of Tamil Nadu ', '', '', '2020', 74.50, '', 1, '2025-07-07 05:16:33', 0, NULL, 0, NULL, 1),
(33294, 25723, '1', 'State board of Tamil Nadu ', '', '', '2018', 90.20, '', 1, '2025-07-07 05:17:05', 0, NULL, 0, NULL, 1),
(33295, 25724, '3', 'jntu ananthapur', '', 'btech', '2023', 70.00, '', 1, '2025-07-07 05:30:24', 0, NULL, 0, NULL, 1),
(33296, 25725, '1', 'Government Boy\'s higher secondary school papanasam ', '', '', '2018', 52.00, '', 1, '2025-07-07 05:35:42', 0, NULL, 0, NULL, 1),
(33297, 25725, '2', 'Government Boy\'s higher secondary school Papanasam ', '', '', '2020', 58.00, '', 1, '2025-07-07 05:36:14', 0, NULL, 0, NULL, 1),
(33298, 25725, '3', 'Periyar Maniammai Institute of Science & Technology', '', 'BBA', '2023', 6.75, '', 1, '2025-07-07 05:37:50', 0, NULL, 0, NULL, 1),
(33299, 25725, '4', 'Gnanam school of Business (anna university) Thanjavur ', '', 'MBA', '2025', 6.23, '', 1, '2025-07-07 05:38:43', 0, NULL, 0, NULL, 1),
(33300, 25727, '3', 'Madras university', '', 'B.Sc', '2025', 90.00, '', 1, '2025-07-07 06:23:29', 0, NULL, 0, NULL, 1),
(33301, 25731, '3', 'Madras University ', '', 'B.com', '2025', 65.00, '', 1, '2025-07-07 06:42:24', 0, NULL, 0, NULL, 1),
(33302, 25728, '3', 'Anna University ', '', 'B.E', '2025', 79.00, '', 1, '2025-07-07 06:43:28', 0, NULL, 0, NULL, 1),
(33303, 25726, '3', 'Madras University ', '', 'B.B.A', '2024', 76.00, '', 1, '2025-07-07 06:47:32', 0, NULL, 0, NULL, 1),
(33304, 25729, '3', 'madras', '', 'b.com', '2025', 60.00, '', 1, '2025-07-07 06:53:22', 0, NULL, 0, NULL, 1),
(33305, 25730, '3', 'Madras University ', '', '', '2021', 68.00, '', 1, '2025-07-07 06:55:57', 0, NULL, 0, NULL, 1),
(33306, 25732, '1', 'State board', '', '', '2020', 54.40, '', 1, '2025-07-07 07:02:43', 0, NULL, 0, NULL, 1),
(33307, 25732, '2', 'state board', '', '', '2022', 51.00, '', 1, '2025-07-07 07:03:22', 0, NULL, 0, NULL, 1),
(33308, 25732, '3', 'Madras university ', '', 'B. Com (cs)', '2023', 71.00, '', 1, '2025-07-07 07:03:59', 0, NULL, 0, NULL, 1),
(33309, 25735, '3', 'Utkal University', '', 'B.com', '2019', 60.00, '', 1, '2025-07-07 12:18:30', 0, NULL, 0, NULL, 1),
(33310, 25738, '3', 'Madras University ', '', 'B.Com Bank Management ', '2025', 92.00, '', 1, '2025-07-08 02:44:33', 0, NULL, 0, NULL, 1),
(33311, 25739, '3', 'Anna University ', '', 'BE', '2025', 7.10, '', 1, '2025-07-08 04:40:40', 0, NULL, 0, NULL, 1),
(33312, 25740, '3', 'Anna University ', '', 'BE', '2025', 7.30, '', 1, '2025-07-08 04:41:19', 0, NULL, 0, NULL, 1),
(33313, 25736, '3', 'university of madras', '', 'bcom', '2025', 70.00, '', 1, '2025-07-08 05:50:53', 0, NULL, 0, NULL, 1),
(33314, 25743, '3', 'University of Madras ', '', 'B.com ', '2025', 70.00, '', 1, '2025-07-08 06:08:51', 0, NULL, 0, NULL, 1),
(33315, 25742, '3', 'University of madras', '', 'B. Com', '2025', 60.00, '', 1, '2025-07-08 06:11:39', 0, NULL, 0, NULL, 1),
(33316, 25741, '3', 'Madras University ', '', 'Bsc (Computer science)', '2020', 80.00, '', 1, '2025-07-08 06:18:47', 1, '2025-07-08 06:19:39', 0, NULL, 1),
(33317, 25682, '4', 'Patrician college of arts and sciences ', '', 'MA:HRM', '2023', 68.00, '', 1, '2025-07-08 06:28:16', 0, NULL, 0, NULL, 1),
(33318, 25744, '1', '12th', '', '', '2021', 51.00, '', 1, '2025-07-08 06:56:36', 0, NULL, 0, NULL, 1),
(33319, 25745, '3', 'Anna University ', '', 'B.E ECE', '2021', 65.00, '', 1, '2025-07-08 07:22:12', 0, NULL, 0, NULL, 1),
(33320, 25746, '3', 'Thiruvalluvar university ', '', 'BBA ', '2022', 90.00, '', 1, '2025-07-08 07:45:30', 0, NULL, 0, NULL, 1),
(33321, 25747, '3', 'Madras university', '', 'BBA', '2018', 78.00, '', 1, '2025-07-08 09:19:34', 1, '2025-07-08 09:20:05', 0, NULL, 1),
(33322, 25749, '3', 'Madras university ', '', 'B.com', '2025', 72.40, '', 1, '2025-07-08 11:44:13', 0, NULL, 0, NULL, 1),
(33323, 25751, '3', 'University of Madras ', '', 'BCA ', '2025', 7.60, '', 1, '2025-07-09 02:07:34', 0, NULL, 0, NULL, 1),
(33324, 25752, '3', 'Bhakthavakchalam college ', '', 'BBA', '2018', 78.00, '', 1, '2025-07-09 05:45:59', 0, NULL, 0, NULL, 1),
(33325, 25754, '3', 'Vels University ', '', 'BBA', '2025', 67.00, '', 1, '2025-07-09 06:22:44', 0, NULL, 0, NULL, 1),
(33326, 25755, '3', 'Government ART\'S College for autonomous ', '', 'B.A, Historical Studies ', '2025', 65.00, '', 1, '2025-07-09 07:02:06', 0, NULL, 0, NULL, 1),
(33327, 25756, '1', 'K c sangaralinga nadar higher secondary school ', '', '', '2016', 85.00, '', 1, '2025-07-09 07:29:09', 0, NULL, 0, NULL, 1),
(33328, 25760, '4', 'madras University ', '', 'MBA ', '2022', 75.00, '', 1, '2025-07-09 09:22:07', 0, NULL, 0, NULL, 1),
(33329, 25763, '3', 'Ethiraj college for women ', '', 'BA Tourism and travel management ', '2025', 66.00, '', 1, '2025-07-09 09:24:19', 0, NULL, 0, NULL, 1),
(33330, 25758, '3', 'Bharathidasan university ', '', 'Computer science ', '2024', 85.00, '', 1, '2025-07-09 09:39:08', 0, NULL, 0, NULL, 1),
(33331, 25762, '4', 'Baradhidasan', '', 'M.com', '2025', 83.00, '', 1, '2025-07-09 09:44:59', 0, NULL, 0, NULL, 1),
(33332, 25762, '4', 'Bharathidasan University ', '', 'commerce ', '2025', 83.00, '', 1, '2025-07-09 09:45:49', 0, NULL, 0, NULL, 1),
(33333, 25753, '3', 'Kamarajar university, Madurai ', '', 'Bsc', '2023', 78.00, '', 1, '2025-07-09 09:49:26', 0, NULL, 0, NULL, 1),
(33334, 25761, '4', 'Bharathidasan University ', '', 'Commerce ', '2025', 83.00, '', 1, '2025-07-09 10:01:09', 0, NULL, 0, NULL, 1),
(33335, 25764, '1', 'Tamil Nadu Board of Secondary Education ', '', '', '2016', 85.60, '', 1, '2025-07-09 10:58:39', 0, NULL, 0, NULL, 1),
(33336, 25764, '2', 'Tamil Nadu Board of Secondary Education ', '', '', '2018', 68.40, '', 1, '2025-07-09 10:59:04', 1, '2025-07-09 11:00:49', 0, NULL, 1),
(33337, 25764, '3', 'Saveetha University ', '', 'B.E.', '2022', 73.60, '', 1, '2025-07-09 10:59:38', 1, '2025-07-09 11:00:34', 0, NULL, 1),
(33338, 25764, '4', 'SRM University ', '', 'MBA', '2025', 86.70, '', 1, '2025-07-09 11:00:11', 0, NULL, 0, NULL, 1),
(33339, 25766, '3', 'Madras University ', '', 'B.com ', '2025', 56.00, '', 1, '2025-07-09 02:01:52', 0, NULL, 0, NULL, 1),
(33340, 25765, '3', 'University ', '', 'BA Economics ', '2023', 68.00, '', 1, '2025-07-09 04:25:55', 0, NULL, 0, NULL, 1),
(33341, 25767, '3', 'Valliammal College for Women', '', 'BBA', '2021', 66.00, '', 1, '2025-07-10 05:01:53', 1, '2025-07-10 05:03:58', 0, NULL, 1),
(33342, 25767, '2', 'Radiance Matriculation Higher Secondary School', '', '', '2018', 67.00, '', 1, '2025-07-10 05:03:08', 1, '2025-07-10 05:04:59', 0, NULL, 0),
(33343, 25768, '3', 'university of madras', '', 'bba', '2025', 77.00, '', 1, '2025-07-10 05:15:13', 0, NULL, 0, NULL, 1),
(33344, 25769, '3', 'university of madars', '', 'bba', '2025', 76.00, '', 1, '2025-07-10 05:15:14', 1, '2025-07-10 05:15:25', 0, NULL, 0),
(33345, 25769, '3', 'university of madars ', '', 'bba', '2025', 78.00, '', 1, '2025-07-10 05:16:00', 0, NULL, 0, NULL, 1),
(33346, 25771, '3', 'Thiruvallur University ', '', 'BA English ', '2023', 70.00, '', 1, '2025-07-10 06:06:02', 0, NULL, 0, NULL, 1),
(33347, 25770, '3', 'Anna university', '', 'BE/ECE', '2025', 74.00, '', 1, '2025-07-10 06:09:26', 0, NULL, 0, NULL, 1),
(33348, 25772, '3', 'Bharathidasan University ', '', 'B,Sc Mathematics ', '2024', 54.00, '', 1, '2025-07-10 07:15:12', 0, NULL, 0, NULL, 1),
(33349, 25773, '3', 'Anna University ', '', 'B.E computer science and engineering ', '2025', 8.50, '', 1, '2025-07-10 07:41:40', 1, '2025-07-10 07:41:51', 0, NULL, 0),
(33350, 25773, '3', 'Anna University ', '', 'B.E COMPUTER SCIENCE AND ENGINEERING ', '2025', 8.50, '', 1, '2025-07-10 07:46:56', 0, NULL, 0, NULL, 1),
(33351, 25773, '2', 'State board ', '', '', '2021', 82.00, '', 1, '2025-07-10 07:47:31', 0, NULL, 0, NULL, 1),
(33352, 25773, '1', 'STATE BOARD ', '', '', '2019', 72.00, '', 1, '2025-07-10 07:48:04', 0, NULL, 0, NULL, 1),
(33353, 25774, '3', 'University ', '', 'B.sc advanced zoology and biotechnology ', '2025', 3.00, '', 1, '2025-07-10 09:44:29', 1, '2025-07-10 09:45:14', 0, NULL, 0),
(33354, 25774, '3', 'University ', '', 'B.sc advanced zoology and biotechnology ', '2025', 70.00, '', 1, '2025-07-10 09:45:38', 0, NULL, 0, NULL, 1),
(33355, 25775, '3', 'Madras University ', '', 'B com General ', '2025', 74.00, '', 1, '2025-07-10 11:34:19', 0, NULL, 0, NULL, 1),
(33356, 25777, '3', 'Anna university', '', 'B. E', '2025', 7.50, '', 1, '2025-07-10 12:38:12', 0, NULL, 0, NULL, 1),
(33357, 25779, '3', 'Madras University ', '', 'B com corporate secretaryship ', '2025', 50.00, '', 1, '2025-07-10 01:06:28', 0, NULL, 0, NULL, 1),
(33358, 25778, '3', 'Periyar university', '', 'B.sc.Computer Science', '2025', 77.00, '', 1, '2025-07-10 01:21:57', 0, NULL, 0, NULL, 1),
(33359, 25781, '2', 'State board', '', '', '2016', 60.00, '', 1, '2025-07-10 04:02:27', 0, NULL, 0, NULL, 1),
(33360, 25781, '1', 'State board ', '', '', '2014', 64.00, '', 1, '2025-07-10 04:02:52', 0, NULL, 0, NULL, 1),
(33361, 25781, '5', 'Private', '', 'DMLT', '2025', 80.00, '', 1, '2025-07-10 04:03:18', 0, NULL, 0, NULL, 1),
(33362, 25782, '3', 'Periyar University ', '', 'Bsc computer science ', '2025', 68.00, '', 1, '2025-07-11 01:27:07', 0, NULL, 0, NULL, 1),
(33363, 25783, '3', 'University of Madras ', '', 'Bsc.home science ', '2025', 75.00, '', 1, '2025-07-11 04:20:52', 0, NULL, 0, NULL, 1),
(33364, 25784, '4', 'Banglore university ', '', 'MBA', '2026', 60.00, '', 1, '2025-07-11 04:44:19', 0, NULL, 0, NULL, 1),
(33365, 25785, '4', 'Bangalore University ', '', 'MBA', '2026', 60.00, '', 1, '2025-07-11 04:47:01', 0, NULL, 0, NULL, 1),
(33366, 25786, '3', 'University ', '', 'Bsc computer science ', '2025', 65.00, '', 1, '2025-07-11 05:01:50', 0, NULL, 0, NULL, 1),
(33367, 25789, '3', 'gurunanak college ', '', 'b.com information system management ', '2025', 70.00, '', 1, '2025-07-11 05:02:11', 0, NULL, 0, NULL, 1),
(33368, 25787, '3', 'University ', '', 'Bsc computer science ', '2025', 65.00, '', 1, '2025-07-11 05:04:45', 0, NULL, 0, NULL, 1),
(33369, 25788, '3', 'University ', '', 'Bsc ', '2025', 68.00, '', 1, '2025-07-11 05:06:49', 0, NULL, 0, NULL, 1),
(33370, 25790, '3', 'Madras University ', '', 'B.a business economics ', '2020', 70.00, '', 1, '2025-07-11 05:42:49', 0, NULL, 0, NULL, 1),
(33371, 25791, '3', 'University ', '', 'Bba', '2025', 75.00, '', 1, '2025-07-11 05:50:15', 0, NULL, 0, NULL, 1),
(33372, 25792, '3', 'University of madras ', '', 'B.Com CA', '2025', 73.00, '', 1, '2025-07-11 05:59:30', 0, NULL, 0, NULL, 1),
(33373, 25796, '4', 'Visvesvaraya technological University ', '', 'MCA', '2024', 8.32, '', 1, '2025-07-11 06:02:52', 0, NULL, 0, NULL, 1),
(33374, 25797, '4', 'Banglore university ', '', 'MBA', '2024', 6.98, '', 1, '2025-07-11 06:03:13', 0, NULL, 0, NULL, 1),
(33375, 25796, '3', 'Tumkur university ', '', 'BCA ', '2021', 6.70, '', 1, '2025-07-11 06:03:20', 0, NULL, 0, NULL, 1),
(33376, 25794, '3', 'the new college', '', 'bba', '2025', 65.00, '', 1, '2025-07-11 06:04:30', 0, NULL, 0, NULL, 1),
(33377, 25795, '3', 'THE NEW COLLEGE ', '', 'BCOM(ISM) ', '2025', 60.00, '', 1, '2025-07-11 06:04:38', 0, NULL, 0, NULL, 1),
(33378, 25793, '3', 'Board', '', 'Bba', '2025', 73.00, '', 1, '2025-07-11 06:12:07', 0, NULL, 0, NULL, 1),
(33379, 25799, '3', 'Anna university', '', 'Becholer of engineering', '2019', 73.00, '', 1, '2025-07-11 06:25:58', 0, NULL, 0, NULL, 1),
(33380, 25801, '3', 'New college', '', 'BA in arabic', '2020', 85.00, '', 1, '2025-07-11 07:12:29', 0, NULL, 0, NULL, 1),
(33381, 25803, '3', 'Madras University ', '', 'Bcom General', '2025', 70.00, '', 1, '2025-07-11 07:20:09', 0, NULL, 0, NULL, 1),
(33382, 25804, '3', 'Deemed university ', '', 'Bsc', '2025', 70.00, '', 1, '2025-07-11 07:20:25', 0, NULL, 0, NULL, 1),
(33383, 25798, '3', 'al-ameen engineering college', '', 'be', '2019', 6.80, '', 1, '2025-07-11 07:22:53', 0, NULL, 0, NULL, 1),
(33384, 25806, '3', 'Bangalore University ', '', '', '2020', 55.00, '', 1, '2025-07-11 07:42:54', 0, NULL, 0, NULL, 1),
(33385, 25808, '3', 'manonmanium university', '', 'b.com', '2024', 67.00, '', 1, '2025-07-11 07:59:29', 0, NULL, 0, NULL, 1),
(33386, 25809, '4', 'University', '', 'MBA', '2025', 75.00, '', 1, '2025-07-11 09:19:25', 0, NULL, 0, NULL, 1),
(33387, 25800, '3', 'madras university', '', 'ba', '2025', 61.00, '', 1, '2025-07-11 09:20:08', 0, NULL, 0, NULL, 1),
(33388, 25810, '3', 'University of Madras', '', 'B.Com', '2025', 58.00, '', 1, '2025-07-11 09:24:27', 0, NULL, 0, NULL, 1),
(33389, 25811, '4', 'Bangalore City University ', '', 'Bcom', '2025', 70.00, '', 1, '2025-07-11 01:19:23', 0, NULL, 0, NULL, 1),
(33390, 25812, '3', 'VTU', '', 'BE', '2025', 8.00, '', 1, '2025-07-12 05:29:01', 0, NULL, 0, NULL, 1),
(33391, 25813, '3', 'Bharathidasan University ', '', 'B.sc Mathematics ', '2021', 92.00, '', 1, '2025-07-12 05:38:52', 0, NULL, 0, NULL, 1),
(33392, 25814, '3', 'University of Madras ', '', 'B.com ', '2024', 78.00, '', 1, '2025-07-12 06:15:33', 0, NULL, 0, NULL, 1),
(33393, 25815, '3', 'Rajalakshmi engineering college ', '', 'BE degree ', '2025', 6.91, '', 1, '2025-07-12 06:46:05', 0, NULL, 0, NULL, 1),
(33394, 25816, '3', 'University of Madras ', '', 'B.com (Accounting and finance)', '2025', 73.00, '', 1, '2025-07-12 08:11:32', 0, NULL, 0, NULL, 1),
(33395, 25817, '4', 'Bharathidasan university ', '', 'B. Ed', '2024', 80.00, '', 1, '2025-07-12 09:53:17', 0, NULL, 0, NULL, 1),
(33396, 25820, '3', 'Madras University ', '', 'BA ENGLISH ', '2025', 75.00, '', 1, '2025-07-12 01:32:01', 1, '2025-07-12 01:35:20', 0, NULL, 1),
(33397, 25821, '3', 'University ', '', 'B.com computer Application ', '2025', 75.00, '', 1, '2025-07-12 01:36:03', 0, NULL, 0, NULL, 1),
(33398, 25818, '3', 'Vels institute of science technology and advanced studies ', '', 'BE CSE', '2025', 78.00, '', 1, '2025-07-12 01:51:13', 0, NULL, 0, NULL, 1),
(33399, 25818, '2', 'Bharani park', '', '', '2021', 89.00, '', 1, '2025-07-12 01:51:34', 0, NULL, 0, NULL, 1),
(33400, 25823, '3', 'Kings College of Engineering ', '', 'B.E CSE', '2025', 88.00, '', 1, '2025-07-12 02:46:34', 0, NULL, 0, NULL, 1),
(33401, 25825, '3', 'SRM Institute of science and technology ', '', 'Bsc (computer science)', '2024', 77.90, '', 1, '2025-07-13 08:49:06', 1, '2025-07-13 08:50:15', 0, NULL, 1),
(33402, 25805, '3', 'Madras university ', '', 'B.com (c .s)', '2025', 75.00, '', 1, '2025-07-14 01:21:05', 0, NULL, 0, NULL, 1),
(33403, 25826, '3', 'Arts college anantapur ', '', 'B.A', '2022', 76.00, '', 1, '2025-07-14 03:27:58', 0, NULL, 0, NULL, 1),
(33404, 25827, '4', 'Sri Ramakrishna College of Arts and Science', '', 'MSc Computer Science', '2025', 71.00, '', 1, '2025-07-14 04:48:37', 0, NULL, 0, NULL, 1),
(33405, 25828, '3', 'University ', '', 'BBA ', '2025', 60.00, '', 1, '2025-07-14 05:18:29', 0, NULL, 0, NULL, 1),
(33406, 25833, '3', 'SRM University ', '', 'Bsc in computer science', '2024', 7.21, '', 1, '2025-07-14 05:22:43', 0, NULL, 0, NULL, 1),
(33407, 25831, '3', 'Madras university ', '', 'Bcom', '2019', 80.00, '', 1, '2025-07-14 05:25:06', 0, NULL, 0, NULL, 1),
(33408, 25832, '3', 'Madras university ', '', 'BCA', '2024', 69.70, '', 1, '2025-07-14 05:28:14', 0, NULL, 0, NULL, 1),
(33409, 25829, '3', 'Madras university ', '', 'Ba', '2025', 90.00, '', 1, '2025-07-14 05:31:29', 0, NULL, 0, NULL, 1),
(33410, 25834, '3', 'Anna University ', '', 'BE CSE', '2025', 85.00, '', 1, '2025-07-14 05:31:52', 0, NULL, 0, NULL, 1),
(33411, 25830, '3', 'mADRAS UNIVERSITY ', '', 'B.A (HISTORICAL STUDIES)', '2025', 70.00, '', 1, '2025-07-14 05:32:25', 0, NULL, 0, NULL, 1),
(33412, 25834, '2', 'Icf higher secondary school ', '', '', '2021', 85.00, '', 1, '2025-07-14 05:32:26', 0, NULL, 0, NULL, 1),
(33413, 25834, '1', 'Our lady of velanganni .Mat.Hr.Sec School', '', '', '2019', 84.60, '', 1, '2025-07-14 05:33:18', 0, NULL, 0, NULL, 1),
(33414, 25836, '3', 'Anna university ', '', 'B.Tech', '2024', 8.50, '', 1, '2025-07-14 06:04:59', 0, NULL, 0, NULL, 1),
(33415, 25835, '3', 'Loyola institute of technology ', '', 'BE/EEE', '2025', 6.75, '', 1, '2025-07-14 06:17:20', 0, NULL, 0, NULL, 1),
(33416, 25837, '3', 'anna university', '', 'Bachelor of engineering', '2025', 76.00, '', 1, '2025-07-14 06:32:32', 0, NULL, 0, NULL, 1),
(33417, 25837, '1', 'state board', '', '', '2021', 86.00, '', 1, '2025-07-14 06:33:51', 0, NULL, 0, NULL, 1),
(33418, 25837, '2', 'state board', '', '', '2019', 79.60, '', 1, '2025-07-14 06:34:50', 0, NULL, 0, NULL, 1),
(33419, 25839, '3', 'University of Madras ', '', 'B.sc home science -nutrition food services managem', '2025', 70.00, '', 1, '2025-07-14 06:45:04', 0, NULL, 0, NULL, 1),
(33420, 25840, '3', 'University of madras', '', 'Bsc cs', '2025', 67.00, '', 1, '2025-07-14 07:02:39', 0, NULL, 0, NULL, 1),
(33421, 25842, '3', 'University of Madras ', '', 'B.com Computer Application ', '2025', 64.00, '', 1, '2025-07-14 07:03:17', 0, NULL, 0, NULL, 1),
(33422, 25841, '3', 'university of madras', '', 'b.com computer application', '2025', 69.00, '', 1, '2025-07-14 07:03:25', 0, NULL, 0, NULL, 1),
(33423, 25844, '3', 'University of Madras ', '', 'B.com Computer application ', '2025', 68.00, '', 1, '2025-07-14 07:03:27', 0, NULL, 0, NULL, 1),
(33424, 25838, '3', 'University of Madras ', '', 'B.A English ', '2024', 73.00, '', 1, '2025-07-14 07:05:27', 0, NULL, 0, NULL, 1),
(33425, 25843, '3', 'University of madras ', '', 'BSC Computer Science ', '2025', 63.00, '', 1, '2025-07-14 07:16:27', 0, NULL, 0, NULL, 1),
(33426, 25845, '3', 'University of Madras ', '', 'B. Com ( general ) ', '2025', 70.00, '', 1, '2025-07-14 07:19:37', 0, NULL, 0, NULL, 1),
(33427, 25845, '2', 'Board ', '', '', '2022', 54.00, '', 1, '2025-07-14 07:20:26', 0, NULL, 0, NULL, 1),
(33428, 25845, '1', 'Board ', '', '', '2020', 56.00, '', 1, '2025-07-14 07:20:53', 0, NULL, 0, NULL, 1),
(33429, 25846, '4', 'saveetha Engineering College ', '', 'be', '2025', 80.00, '', 1, '2025-07-14 07:43:14', 0, NULL, 0, NULL, 1),
(33430, 25848, '3', 'Anna University ', '', 'BE', '2025', 7.90, '', 1, '2025-07-14 08:27:37', 0, NULL, 0, NULL, 1),
(33431, 25849, '3', 'University ', '', 'B.E', '2025', 7.30, '', 1, '2025-07-14 08:28:21', 0, NULL, 0, NULL, 1),
(33432, 25850, '3', 'Periyar University ', '', 'Bachelor of Business Administration ', '2021', 81.00, '', 1, '2025-07-14 08:47:12', 0, NULL, 0, NULL, 1),
(33433, 25850, '4', 'Bharathiar University ', '', 'Master of Business Administration ', '2023', 73.00, '', 1, '2025-07-14 08:48:01', 0, NULL, 0, NULL, 1),
(33434, 25851, '3', 'Anna university ', '', 'B.E', '2020', 64.50, '', 1, '2025-07-14 09:51:26', 0, NULL, 0, NULL, 1),
(33435, 25852, '3', 'Pondicherry university ', '', 'Computer science engineering ', '2025', 8.00, '', 1, '2025-07-14 10:19:13', 0, NULL, 0, NULL, 1),
(33436, 25854, '2', 'state board of tamil nadu', '', '', '2021', 79.00, '', 1, '2025-07-14 11:42:28', 0, NULL, 0, NULL, 1),
(33437, 25854, '1', 'state board of tamil nadu', '', '', '2018', 70.00, '', 1, '2025-07-14 11:43:12', 1, '2025-07-14 11:43:22', 0, NULL, 0),
(33438, 25856, '3', 'Dr MGR Janaki college of arts and science for women (Madras University)', '', 'Bsc computer science ', '2025', 85.00, '', 1, '2025-07-14 01:05:29', 0, NULL, 0, NULL, 1),
(33439, 25859, '3', 'Jaya college of arts and science ', '', 'B.COM.CORPORATE SECRETARYSHIP ', '2025', 70.00, '', 1, '2025-07-15 04:15:06', 0, NULL, 0, NULL, 1),
(33440, 25858, '3', 'University ', '', 'BA', '2025', 55.00, '', 1, '2025-07-15 04:17:24', 0, NULL, 0, NULL, 1),
(33441, 25860, '3', 'Madras University ', '', 'B.com', '2025', 75.00, '', 1, '2025-07-15 04:22:09', 0, NULL, 0, NULL, 1),
(33442, 25861, '3', 'Thiruvalluvar university ', '', 'BCA', '2025', 87.00, '', 1, '2025-07-15 04:39:36', 0, NULL, 0, NULL, 1),
(33443, 25863, '3', 'Madras University ', '', 'BBA', '2025', 55.00, '', 1, '2025-07-15 05:18:03', 0, NULL, 0, NULL, 1),
(33444, 25862, '3', 'University of madras ', '', 'B.B.A', '2025', 60.00, '', 1, '2025-07-15 05:19:55', 0, NULL, 0, NULL, 1),
(33445, 25864, '3', 'The new  clg ', '', 'B.com', '2024', 60.00, '', 1, '2025-07-15 05:59:26', 0, NULL, 0, NULL, 1),
(33446, 25865, '3', 'The new college', '', 'B com', '2024', 65.00, '', 1, '2025-07-15 06:13:33', 0, NULL, 0, NULL, 1),
(33447, 25866, '3', 'Anna University ', '', 'BE', '2024', 73.00, '', 1, '2025-07-15 06:23:27', 0, NULL, 0, NULL, 1),
(33448, 25869, '2', 'Tamilnadu state board', '', '', '2022', 85.00, '', 1, '2025-07-15 06:37:28', 0, NULL, 0, NULL, 1),
(33449, 25867, '3', 'Anna University ', '', 'B.Tech Agricultural Engineering ', '2025', 77.00, '', 1, '2025-07-15 06:46:03', 0, NULL, 0, NULL, 1),
(33450, 25868, '3', 'Annamalai university ', '', 'BCA ', '2024', 73.00, '', 1, '2025-07-15 06:50:31', 0, NULL, 0, NULL, 1),
(33451, 25870, '3', 'v.s.b engineering college', '', 'be', '2025', 75.00, '', 1, '2025-07-15 07:08:10', 0, NULL, 0, NULL, 1),
(33452, 25871, '4', 'Alagappa university ', '', 'MSc (CS & IT)', '2025', 78.00, '', 1, '2025-07-15 07:42:29', 0, NULL, 0, NULL, 1),
(33453, 25873, '3', 'JAYARAM COLLEGE OF ENGINEERING AND TECHNOLOGY ', '', 'B.TECH', '2020', 6.80, '', 1, '2025-07-15 07:48:47', 0, NULL, 0, NULL, 1),
(33454, 25872, '3', 'Madurai kamaraj university ', '', 'Bsc information Technology ', '2023', 79.00, '', 1, '2025-07-15 07:56:23', 0, NULL, 0, NULL, 1),
(33455, 25874, '3', 'University of Madras ', '', 'B.com general ', '2023', 76.00, '', 1, '2025-07-15 09:05:32', 0, NULL, 0, NULL, 1),
(33456, 25874, '4', 'University of Madras ', '', 'MBA ', '2025', 0.00, '', 1, '2025-07-15 09:06:03', 0, NULL, 0, NULL, 1),
(33457, 25875, '3', 'B.S.Abdur Rahuman Crescent institute of science and technology ', '', 'B Tech ECE', '2025', 75.00, '', 1, '2025-07-15 10:39:41', 0, NULL, 0, NULL, 1),
(33458, 25876, '4', 'sathyaabama uni ', '', 'mba', '2025', 6.77, '', 1, '2025-07-15 10:54:29', 0, NULL, 0, NULL, 1),
(33459, 25880, '3', 'Sv university ', '', 'Bca', '2024', 80.00, '', 1, '2025-07-15 07:37:17', 0, NULL, 0, NULL, 1),
(33460, 25882, '3', 'Anna University ', '', 'BE mechanical engineering ', '2024', 7.03, '', 1, '2025-07-16 05:11:05', 0, NULL, 0, NULL, 1),
(33461, 25883, '3', 'Mamonmanium sundranar university ', '', 'Bsc computer science ', '2023', 70.00, '', 1, '2025-07-16 05:16:21', 0, NULL, 0, NULL, 1),
(33462, 25885, '4', 'Anna University', '', 'MBA', '2019', 73.00, '', 1, '2025-07-16 05:25:12', 0, NULL, 0, NULL, 1),
(33463, 25884, '3', 'Loyola ', '', 'B.com', '2025', 5.60, '', 1, '2025-07-16 05:26:10', 0, NULL, 0, NULL, 1),
(33464, 25887, '3', 'Madras university', '', 'B. COM', '2018', 65.00, '', 1, '2025-07-16 05:48:09', 0, NULL, 0, NULL, 1),
(33465, 25847, '3', 'Anna University ', '', '', '2021', 75.00, '', 1, '2025-07-16 05:50:20', 0, NULL, 0, NULL, 1),
(33466, 25888, '3', 'periyar university ', '', 'b.sc', '2022', 84.00, '', 1, '2025-07-16 06:21:45', 0, NULL, 0, NULL, 1),
(33467, 25888, '2', 'state board', '', '', '2019', 74.00, '', 1, '2025-07-16 06:22:33', 0, NULL, 0, NULL, 1),
(33468, 25888, '1', 'state board', '', '', '2017', 88.00, '', 1, '2025-07-16 06:23:12', 0, NULL, 0, NULL, 1),
(33469, 25890, '3', 'Alagappa university ', '', 'BCA', '2021', 75.00, '', 1, '2025-07-16 06:33:30', 0, NULL, 0, NULL, 1),
(33470, 25893, '3', 'Anna university ', '', 'BE(Aeronautical)', '2022', 77.00, '', 1, '2025-07-16 07:05:34', 0, NULL, 0, NULL, 1),
(33471, 25892, '3', 'KUD', '', 'B.COM', '2025', 75.00, '', 1, '2025-07-16 07:05:53', 0, NULL, 0, NULL, 1),
(33472, 25894, '3', 'Anna University ', '', 'B.tech/IT', '2024', 8.10, '', 1, '2025-07-16 07:08:21', 0, NULL, 0, NULL, 1),
(33473, 25896, '3', 'Sv univercity ', '', 'Bca', '2024', 6.90, '', 1, '2025-07-16 07:12:11', 0, NULL, 0, NULL, 1),
(33474, 25895, '3', 'Anna university ', '', 'BE', '2024', 65.00, '', 1, '2025-07-16 07:14:11', 0, NULL, 0, NULL, 1),
(33475, 25898, '3', 'aarupadi veedu intitute of technology ', '', 'be computer science', '2025', 7.90, '', 1, '2025-07-16 08:01:03', 0, NULL, 0, NULL, 1),
(33476, 25901, '3', 'Madras University ', '', 'B.com', '2020', 55.00, '', 1, '2025-07-16 08:07:36', 0, NULL, 0, NULL, 1),
(33477, 25902, '3', 'Psna College Of Engineering And Technology ', '', 'BE ', '2025', 75.00, '', 1, '2025-07-16 08:28:45', 0, NULL, 0, NULL, 1),
(33478, 25899, '1', 'The Salvation Army', '', '', '2019', 50.00, '', 1, '2025-07-16 09:43:25', 0, NULL, 0, NULL, 1),
(33479, 25903, '1', 'state board', '', '', '2019', 87.00, '', 1, '2025-07-16 10:04:45', 0, NULL, 0, NULL, 1),
(33480, 25903, '2', 'state board', '', '', '2021', 92.00, '', 1, '2025-07-16 10:05:07', 0, NULL, 0, NULL, 1),
(33481, 25903, '3', 'hindusthan institute of technology', '', 'btech information technology', '2025', 78.00, '', 1, '2025-07-16 10:05:57', 0, NULL, 0, NULL, 1),
(33482, 25904, '3', 'The new college', '', 'BA. Economic', '2022', 81.00, '', 1, '2025-07-16 10:17:15', 0, NULL, 0, NULL, 1),
(33483, 25905, '1', 'tamil nadu state board education', '', '', '2019', 85.00, '', 1, '2025-07-16 10:25:42', 0, NULL, 0, NULL, 1),
(33484, 25905, '2', 'tamil nadu state board education', '', '', '2021', 88.00, '', 1, '2025-07-16 10:26:06', 0, NULL, 0, NULL, 1),
(33485, 25905, '3', 'anna university', '', 'cse', '2025', 80.00, '', 1, '2025-07-16 10:26:38', 0, NULL, 0, NULL, 1),
(33486, 25907, '3', 'rajalakshmi Institute of Technology ', '', 'b. e - e c e ', '2025', 73.00, '', 1, '2025-07-16 04:05:54', 0, NULL, 0, NULL, 1),
(33487, 25909, '3', 'Anna University', '', 'B.tech-Information Technology', '2025', 80.00, '', 1, '2025-07-17 04:46:05', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(33488, 25909, '2', 'State board of Tamil Nadu', '', '', '2020', 90.00, '', 1, '2025-07-17 04:48:15', 0, NULL, 0, NULL, 1),
(33489, 25909, '1', 'State board of Tamil Nadu', '', '', '2019', 87.00, '', 1, '2025-07-17 04:48:37', 0, NULL, 0, NULL, 1),
(33490, 25910, '3', 'Madras University ', '', 'Bsc cs', '2025', 85.00, '', 1, '2025-07-17 05:08:10', 0, NULL, 0, NULL, 1),
(33491, 25910, '2', 'State board ', '', '', '2022', 83.00, '', 1, '2025-07-17 05:08:32', 0, NULL, 0, NULL, 1),
(33492, 25910, '1', 'State board ', '', '', '2020', 82.60, '', 1, '2025-07-17 05:09:10', 0, NULL, 0, NULL, 1),
(33493, 25900, '3', 'SDNB vaishnava College ', '', 'B.voc travel and Tourism ', '2025', 6.30, '', 1, '2025-07-17 05:28:42', 0, NULL, 0, NULL, 1),
(33494, 25911, '3', 'Government arts and science college tvt ', '', 'B com general ', '2025', 50.00, '', 1, '2025-07-17 05:41:18', 0, NULL, 0, NULL, 1),
(33495, 25912, '3', 'University', '', 'BA Corporate Economic', '2022', 72.00, '', 1, '2025-07-17 05:59:51', 0, NULL, 0, NULL, 1),
(33496, 25913, '3', 'MADRAS UNIVERSITY ', '', 'B.com ', '2025', 70.00, '', 1, '2025-07-17 06:05:40', 0, NULL, 0, NULL, 1),
(33497, 25914, '3', 'Madras University', '', 'B. Com', '2025', 58.00, '', 1, '2025-07-17 06:06:31', 0, NULL, 0, NULL, 1),
(33498, 25915, '3', 'Madras University ', '', 'BSC botany ', '2019', 65.00, '', 1, '2025-07-17 06:30:36', 0, NULL, 0, NULL, 1),
(33499, 25918, '3', 'Madras University ', '', 'B.com general ', '2025', 70.00, '', 1, '2025-07-17 07:38:49', 0, NULL, 0, NULL, 1),
(33500, 25908, '3', 'Madras University ', '', 'B.com general ', '2025', 67.00, '', 1, '2025-07-17 07:38:58', 0, NULL, 0, NULL, 1),
(33501, 25919, '3', 'University of Madras ', '', 'B.com cs corporate secretary ', '2025', 55.00, '', 1, '2025-07-17 07:43:51', 0, NULL, 0, NULL, 1),
(33502, 25916, '3', 'University of Madras ', '', 'Bsc chemistry ', '2025', 60.00, '', 1, '2025-07-17 09:06:12', 0, NULL, 0, NULL, 1),
(33503, 25920, '3', 'University of Madras ', '', 'Bsc chemistry ', '2025', 60.00, '', 1, '2025-07-17 09:24:58', 0, NULL, 0, NULL, 1),
(33504, 25921, '4', 'Jamal Mohamed College ( Bharathidasan University)', '', 'MCA', '2023', 81.00, '', 1, '2025-07-17 11:05:31', 0, NULL, 0, NULL, 1),
(33505, 25923, '3', 'Anna University ', '', 'B.E - Electronics and Communication Engineering ', '2025', 82.00, '', 1, '2025-07-17 11:46:54', 0, NULL, 0, NULL, 1),
(33506, 25923, '2', 'Tamilnadu State Board ', '', '', '2021', 90.00, '', 1, '2025-07-17 11:47:40', 0, NULL, 0, NULL, 1),
(33507, 25923, '1', 'Tamilnadu State Board ', '', '', '2019', 88.00, '', 1, '2025-07-17 11:47:58', 0, NULL, 0, NULL, 1),
(33508, 25922, '5', 'Ramakrishna polytechnic college ', '', '', '2019', 78.00, '', 1, '2025-07-17 03:31:40', 0, NULL, 0, NULL, 1),
(33509, 25924, '1', 'state board', '', '', '2019', 69.80, '', 1, '2025-07-18 02:47:51', 0, NULL, 0, NULL, 1),
(33510, 25924, '2', 'state board', '', '', '2021', 83.00, '', 1, '2025-07-18 02:48:14', 0, NULL, 0, NULL, 1),
(33511, 25924, '3', 'anna university', '', 'b.e', '2025', 82.00, '', 1, '2025-07-18 02:48:53', 0, NULL, 0, NULL, 1),
(33512, 25925, '3', 'Bangalore Central University ', '', 'B.A', '2022', 68.00, '', 1, '2025-07-18 06:21:42', 0, NULL, 0, NULL, 1),
(33513, 25929, '3', 'EGS pillay Engineering college ', '', 'CSE', '2023', 7.00, '', 1, '2025-07-18 12:14:28', 0, NULL, 0, NULL, 1),
(33514, 25928, '3', 'Anna university ', '', 'BE', '2025', 70.00, '', 1, '2025-07-18 01:08:37', 0, NULL, 0, NULL, 1),
(33515, 25931, '3', 'Madras University ', '', 'B.com(Accounting & Finance)', '2021', 68.00, '', 1, '2025-07-18 01:14:04', 0, NULL, 0, NULL, 1),
(33516, 25931, '2', 'Avichi higher secondary school ', '', '', '2018', 83.00, '', 1, '2025-07-18 01:15:35', 0, NULL, 0, NULL, 1),
(33517, 25931, '1', 'Government higher secondary school ', '', '', '2016', 87.00, '', 1, '2025-07-18 01:16:15', 0, NULL, 0, NULL, 1),
(33518, 25926, '3', 'University of Madras ', '', 'B.com', '2025', 77.00, '', 1, '2025-07-18 01:51:39', 0, NULL, 0, NULL, 1),
(33519, 25933, '3', 'University of Madras ', '', 'B.cOM', '2025', 73.00, '', 1, '2025-07-18 02:39:41', 0, NULL, 0, NULL, 1),
(33520, 25927, '3', 'Madras University', '', 'B. Com ', '2025', 75.00, '', 1, '2025-07-18 03:10:26', 0, NULL, 0, NULL, 1),
(33521, 25930, '4', 'sathyabama university', '', 'mba', '2025', 69.00, '', 1, '2025-07-18 03:34:37', 0, NULL, 0, NULL, 1),
(33522, 25934, '4', 'Alagappa university ', '', 'MBA', '2024', 59.00, '', 1, '2025-07-19 04:55:29', 0, NULL, 0, NULL, 1),
(33523, 25936, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2024', 81.60, '', 1, '2025-07-19 05:48:54', 0, NULL, 0, NULL, 1),
(33524, 25937, '3', 'Anna University ', '', 'BE', '2025', 76.00, '', 1, '2025-07-19 06:11:57', 0, NULL, 0, NULL, 1),
(33525, 25935, '3', 'Madras university', '', 'Bca', '2025', 74.00, '', 1, '2025-07-19 06:41:34', 0, NULL, 0, NULL, 1),
(33526, 25938, '3', 'University ', '', 'BCA', '2025', 73.00, '', 1, '2025-07-19 06:43:51', 0, NULL, 0, NULL, 1),
(33527, 25940, '3', 'Bharathi women\'s college ', '', 'Bsc', '2025', 64.00, '', 1, '2025-07-19 07:04:25', 0, NULL, 0, NULL, 1),
(33528, 23848, '4', 'Bharathidasan university ', '', 'MSc botany ', '2024', 83.00, '', 1, '2025-07-19 07:07:12', 0, NULL, 0, NULL, 1),
(33529, 25941, '3', 'SRM trp engineering college ', '', 'BE ECE', '2024', 77.00, '', 1, '2025-07-19 07:17:41', 0, NULL, 0, NULL, 1),
(33530, 25939, '3', 'Bharathi women\'s college ', '', 'B.sc  geography ', '2025', 50.00, '', 1, '2025-07-19 07:33:30', 0, NULL, 0, NULL, 1),
(33531, 25944, '3', 'State', '', 'Ba english', '2019', 60.00, '', 1, '2025-07-19 07:48:24', 0, NULL, 0, NULL, 1),
(33532, 25943, '3', 'RP Sarathy institute of technology ', '', 'B.tech information technology ', '2024', 77.00, '', 1, '2025-07-19 07:48:52', 0, NULL, 0, NULL, 1),
(33533, 25946, '3', 'University of Madras ', '', 'B.COM (Accounting and finance)', '2024', 77.00, '', 1, '2025-07-19 07:58:28', 0, NULL, 0, NULL, 1),
(33534, 25947, '3', 'Annamalaai univercity ', '', 'Bsc computer science ', '2024', 75.00, '', 1, '2025-07-19 09:16:14', 0, NULL, 0, NULL, 1),
(33535, 25950, '1', 'Mu askarur Rahman Arabic college ', '', '', '2022', 90.00, '', 1, '2025-07-19 11:29:20', 0, NULL, 0, NULL, 1),
(33536, 25951, '3', 'madras christian college', '', 'bca', '2025', 68.00, '', 1, '2025-07-19 12:11:33', 0, NULL, 0, NULL, 1),
(33537, 25945, '3', 'dr sivanthi aditanar college of engineering', '', 'Bachelor of Engineering', '2025', 7.60, '', 1, '2025-07-19 12:12:07', 0, NULL, 0, NULL, 1),
(33538, 25951, '1', 'state board', '', '', '2020', 84.00, '', 1, '2025-07-19 12:12:30', 0, NULL, 0, NULL, 1),
(33539, 25945, '1', 'state board', '', '', '2019', 67.20, '', 1, '2025-07-19 12:12:40', 0, NULL, 0, NULL, 1),
(33540, 25951, '2', 'state board', '', '', '2022', 80.00, '', 1, '2025-07-19 12:12:54', 0, NULL, 0, NULL, 1),
(33541, 25945, '2', 'state board', '', '', '2021', 76.16, '', 1, '2025-07-19 12:13:22', 0, NULL, 0, NULL, 1),
(33542, 25954, '3', 'Bangalore University ', '', 'B.com', '2022', 7.80, '', 1, '2025-07-19 01:28:04', 0, NULL, 0, NULL, 1),
(33543, 25952, '3', 'Madras university ', '', 'Bsc computer science ', '2024', 77.00, '', 1, '2025-07-20 02:44:30', 0, NULL, 0, NULL, 1),
(33544, 25956, '3', 'Ethiraj college for women', '', 'B. Com Bank Management', '2025', 62.00, '', 1, '2025-07-20 03:53:48', 0, NULL, 0, NULL, 1),
(33545, 25957, '3', 'Alagappa university ', '', 'BBA', '2022', 73.00, '', 1, '2025-07-21 04:59:53', 0, NULL, 0, NULL, 1),
(33546, 25955, '3', 'Justice Basheer Ahmed sayeed college for women', '', 'B.A Corporate Economics', '2024', 65.00, '', 1, '2025-07-21 05:12:22', 0, NULL, 0, NULL, 1),
(33547, 25958, '3', 'thiruvalluva', '', 'shanmuga', '2021', 65.00, '', 1, '2025-07-21 05:13:50', 0, NULL, 0, NULL, 1),
(33548, 25961, '3', 'tiruvalluver ', '', 'bba', '2024', 80.00, '', 1, '2025-07-21 05:35:01', 0, NULL, 0, NULL, 1),
(33549, 25960, '3', 'Anna University ', '', 'BE cse ', '2022', 8.16, '', 1, '2025-07-21 05:37:16', 0, NULL, 0, NULL, 1),
(33550, 25959, '3', 'Madras University ', '', 'BBA', '2025', 70.00, '', 1, '2025-07-21 05:49:40', 0, NULL, 0, NULL, 1),
(33551, 25963, '4', 'RVS College Of Engineering ', '', 'MCA', '2024', 83.90, '', 1, '2025-07-21 06:10:14', 0, NULL, 0, NULL, 1),
(33552, 25963, '3', 'Parvathy\'s Arts and Science College ', '', 'B.SC.IT', '2022', 77.76, '', 1, '2025-07-21 06:10:40', 0, NULL, 0, NULL, 1),
(33553, 25963, '2', 'MSP Solai Nadar Higher secondary school ', '', '', '2019', 67.40, '', 1, '2025-07-21 06:11:09', 0, NULL, 0, NULL, 1),
(33554, 25962, '4', 'Db Jain college ', '', 'MBA ', '2025', 66.00, '', 1, '2025-07-21 06:11:16', 0, NULL, 0, NULL, 1),
(33555, 25963, '1', 'TPKN Matriculation Higher secondary school ', '', '', '2017', 86.00, '', 1, '2025-07-21 06:11:31', 0, NULL, 0, NULL, 1),
(33556, 25964, '1', 'State board', '', '', '2017', 63.00, '', 1, '2025-07-21 06:17:14', 0, NULL, 0, NULL, 1),
(33557, 25964, '2', 'State board', '', '', '2019', 47.00, '', 1, '2025-07-21 06:17:52', 0, NULL, 0, NULL, 1),
(33558, 25964, '3', 'Thiruvallur university ', '', 'B.A English', '2022', 69.00, '', 1, '2025-07-21 06:18:30', 0, NULL, 0, NULL, 1),
(33559, 25964, '4', 'Madras University', '', 'm.A English', '2025', 68.00, '', 1, '2025-07-21 06:19:01', 0, NULL, 0, NULL, 1),
(33560, 25965, '3', 'Periyar University ', '', 'B.A.ENGLISH ', '2019', 85.00, '', 1, '2025-07-21 06:31:27', 0, NULL, 0, NULL, 1),
(33561, 25966, '3', 'Anna university', '', 'BE', '2025', 75.00, '', 1, '2025-07-21 06:53:40', 0, NULL, 0, NULL, 1),
(33562, 25949, '3', 'Anna university', '', 'BE', '2025', 80.00, '', 1, '2025-07-21 06:59:18', 0, NULL, 0, NULL, 1),
(33563, 25969, '1', 'Board', '', '', '2015', 87.00, '', 1, '2025-07-21 07:01:17', 0, NULL, 0, NULL, 1),
(33564, 25969, '5', 'Board', '', 'DME', '2018', 81.00, '', 1, '2025-07-21 07:01:40', 0, NULL, 0, NULL, 1),
(33565, 25969, '3', 'University ', '', 'BE', '2024', 81.00, '', 1, '2025-07-21 07:02:19', 0, NULL, 0, NULL, 1),
(33566, 25967, '3', 'Autonomous', '', 'BA economic', '2025', 70.00, '', 1, '2025-07-21 07:03:12', 0, NULL, 0, NULL, 1),
(33567, 25968, '3', 'Autonomous ', '', 'BA.Economic ', '2025', 68.00, '', 1, '2025-07-21 07:03:35', 0, NULL, 0, NULL, 1),
(33568, 25953, '3', 'Madras university ', '', 'BBA', '2025', 55.00, '', 1, '2025-07-21 07:14:39', 0, NULL, 0, NULL, 1),
(33569, 25971, '3', 'Anna university ', '', 'BE. Mechatronics ', '2022', 80.00, '', 1, '2025-07-21 07:34:00', 0, NULL, 0, NULL, 1),
(33570, 25972, '3', 'anna university', '', 'b tech', '2025', 66.00, '', 1, '2025-07-21 08:13:49', 0, NULL, 0, NULL, 1),
(33571, 25974, '3', 'Madras University ', '', 'B.com', '2020', 76.00, '', 1, '2025-07-21 10:05:26', 0, NULL, 0, NULL, 1),
(33572, 25975, '3', 'Dr MGR university', '', 'BA human resources management ', '2023', 66.00, '', 1, '2025-07-21 10:19:29', 0, NULL, 0, NULL, 1),
(33573, 25977, '3', 'St. Thomas college art and science', '', 'B. Com ', '2025', 69.50, '', 1, '2025-07-22 05:37:19', 0, NULL, 0, NULL, 1),
(33574, 25978, '3', 'Mepco Schlenk Engineering College ', '', 'B Tech', '2025', 64.00, '', 1, '2025-07-22 05:37:42', 1, '2025-07-22 05:37:57', 0, NULL, 0),
(33575, 25978, '1', 'CEOA Matriculation Higher Secondary School ', '', '', '2019', 83.30, '', 1, '2025-07-22 05:38:34', 0, NULL, 0, NULL, 1),
(33576, 25978, '2', 'CEOA Matriculation Higher Secondary school ', '', '', '2021', 89.90, '', 1, '2025-07-22 05:39:05', 0, NULL, 0, NULL, 1),
(33577, 25978, '3', 'Mepco Schlenk Engineering College ', '', 'B Tech ', '2025', 63.00, '', 1, '2025-07-22 05:39:27', 0, NULL, 0, NULL, 1),
(33578, 25981, '3', 'Annamalai University ', '', 'B.F.Sc', '2023', 78.00, '', 1, '2025-07-22 06:26:38', 0, NULL, 0, NULL, 1),
(33579, 25982, '3', 'Madras university ', '', 'B.com corporate secretaryship ', '2025', 60.00, '', 1, '2025-07-22 07:27:09', 0, NULL, 0, NULL, 1),
(33580, 25948, '3', 'Madras University ', '', 'BBA', '2022', 50.00, '', 1, '2025-07-22 08:08:48', 0, NULL, 0, NULL, 1),
(33581, 25984, '1', 'St.Vincent\'s.Matriculation.Higher.secondary.School', '', '', '2019', 60.00, '', 1, '2025-07-22 12:54:31', 0, NULL, 0, NULL, 1),
(33582, 25984, '2', 'St.Vincent\'s.Matriculation.Higher.Secondary.School', '', '', '2021', 73.00, '', 1, '2025-07-22 12:55:39', 0, NULL, 0, NULL, 1),
(33583, 25984, '3', 'J.N.N INSTITUTE OF ENGINEERING ', '', 'B.E Computer Science and Engineering ', '2025', 75.00, '', 1, '2025-07-22 12:56:38', 0, NULL, 0, NULL, 1),
(33584, 25987, '3', 'Government Degree College ', '', 'B.com', '2023', 70.00, '', 1, '2025-07-22 02:17:23', 0, NULL, 0, NULL, 1),
(33585, 25989, '3', 'University ', '', 'B.com general ', '2024', 75.00, '', 1, '2025-07-22 03:53:29', 0, NULL, 0, NULL, 1),
(33586, 25988, '3', 'University ', '', 'B com general ', '2024', 70.00, '', 1, '2025-07-22 04:04:45', 0, NULL, 0, NULL, 1),
(33587, 25983, '3', 'Madras University ', '', 'B.com (cS)', '2025', 58.00, '', 1, '2025-07-22 05:51:27', 0, NULL, 0, NULL, 1),
(33588, 25990, '3', 'Barathidhasan university tiruchirappalli', '', 'B.com(CA)', '2025', 79.00, '', 1, '2025-07-23 04:14:26', 0, NULL, 0, NULL, 1),
(33589, 25992, '1', 'St Mary\'s Matric boys higher secondary School ', '', '', '2020', 59.00, '', 1, '2025-07-23 04:53:04', 0, NULL, 0, NULL, 1),
(33590, 25992, '2', 'St Mary\'s Matric boys higher secondary School ', '', '', '2022', 77.00, '', 1, '2025-07-23 04:53:37', 0, NULL, 0, NULL, 1),
(33591, 25992, '3', 'VELTECH RANGA SANKU ARTS COLLEGE ', '', 'B COM (gr)', '2025', 6.10, '', 1, '2025-07-23 04:54:28', 0, NULL, 0, NULL, 1),
(33592, 25994, '3', 'Arulmigu Kapaleeswarar Arts and Science College', '', 'BCA', '2025', 70.00, '', 1, '2025-07-23 05:15:15', 0, NULL, 0, NULL, 1),
(33593, 25994, '2', 'Kongu matriculation higher secondary school ', '', '', '2022', 70.00, '', 1, '2025-07-23 05:16:02', 1, '2025-07-23 05:16:32', 0, NULL, 1),
(33594, 25994, '1', 'Kongu matriculation higher secondary School', '', '', '2020', 60.00, '', 1, '2025-07-23 05:16:51', 0, NULL, 0, NULL, 1),
(33595, 25996, '3', 'Anna University ', '', 'BR', '2024', 87.00, '', 1, '2025-07-23 05:21:59', 0, NULL, 0, NULL, 1),
(33596, 25997, '3', 'thiruvalluvar university ', '', 'Bsc computer science', '2024', 81.00, '', 1, '2025-07-23 05:26:58', 0, NULL, 0, NULL, 1),
(33597, 25995, '3', 'Presidency collage chennai', '', 'B.com', '2024', 64.00, '', 1, '2025-07-23 05:29:02', 0, NULL, 0, NULL, 1),
(33598, 26000, '3', 'Madras University ', '', 'B.sc.Biotechnology', '2024', 60.00, '', 1, '2025-07-23 05:34:08', 0, NULL, 0, NULL, 1),
(33599, 26001, '3', 'Madras University ', '', 'BCA', '2025', 70.00, '', 1, '2025-07-23 05:35:11', 0, NULL, 0, NULL, 1),
(33600, 25998, '3', 'Madras University ', '', 'B.com cs', '2025', 65.00, '', 1, '2025-07-23 05:37:05', 0, NULL, 0, NULL, 1),
(33601, 26002, '3', 'Madras University ', '', 'B.com General ', '2024', 60.00, '', 1, '2025-07-23 05:37:49', 0, NULL, 0, NULL, 1),
(33602, 25999, '3', 'University of madras', '', 'B com corporate secretaryship', '2025', 60.00, '', 1, '2025-07-23 05:39:42', 0, NULL, 0, NULL, 1),
(33603, 26003, '1', 'Panimalar polytechnic college ', '', '', '2017', 74.00, '', 1, '2025-07-23 05:49:32', 0, NULL, 0, NULL, 1),
(33604, 25993, '3', 'Madras University ', '', 'Bcom general ', '2024', 67.00, '', 1, '2025-07-23 05:55:57', 0, NULL, 0, NULL, 1),
(33605, 26005, '3', 'St. Peter\'s institute of higher education and research development ', '', 'Bca', '2024', 75.00, '', 1, '2025-07-23 05:58:12', 0, NULL, 0, NULL, 1),
(33606, 26006, '3', ' University of Madras ', '', 'BBA', '2023', 80.00, '', 1, '2025-07-23 05:58:14', 0, NULL, 0, NULL, 1),
(33607, 26008, '3', 'Periyar University ', '', 'Bachelor of science ', '2024', 80.00, '', 1, '2025-07-23 05:59:57', 0, NULL, 0, NULL, 1),
(33608, 26010, '3', 'Madras University ', '', 'B.com', '2024', 77.00, '', 1, '2025-07-23 06:08:33', 0, NULL, 0, NULL, 1),
(33609, 26014, '4', 'University of madras ', '', 'M.sc', '2024', 67.00, '', 1, '2025-07-23 06:12:55', 0, NULL, 0, NULL, 1),
(33610, 26013, '4', 'University of Madras ', '', 'MCA ', '2025', 75.00, '', 1, '2025-07-23 06:16:03', 0, NULL, 0, NULL, 1),
(33611, 26013, '1', 'State board ', '', '', '2018', 60.00, '', 1, '2025-07-23 06:16:54', 0, NULL, 0, NULL, 1),
(33612, 26015, '3', 'madras university', '', 'bca', '2024', 85.00, '', 1, '2025-07-23 06:17:03', 1, '2025-07-23 06:17:13', 0, NULL, 0),
(33613, 26013, '2', 'State board ', '', '', '2020', 65.00, '', 1, '2025-07-23 06:17:19', 0, NULL, 0, NULL, 1),
(33614, 26015, '3', 'madras university', '', 'bca', '2024', 85.00, '', 1, '2025-07-23 06:17:48', 0, NULL, 0, NULL, 1),
(33615, 26013, '3', 'Autonomous ', '', 'BES', '2023', 65.00, '', 1, '2025-07-23 06:19:01', 0, NULL, 0, NULL, 1),
(33616, 26012, '3', 'Madras University ', '', 'B.A.Economics', '2025', 80.00, '', 1, '2025-07-23 06:23:08', 0, NULL, 0, NULL, 1),
(33617, 26004, '3', 'Madras University ', '', 'B.com(general)', '2025', 60.00, '', 1, '2025-07-23 06:25:37', 0, NULL, 0, NULL, 1),
(33618, 26016, '3', 'Sri Sairam Engineering college ', '', 'B.Tech IT', '2023', 7.90, '', 1, '2025-07-23 06:28:41', 0, NULL, 0, NULL, 1),
(33619, 26011, '1', 'State board ', '', '', '2018', 60.00, '', 1, '2025-07-23 06:31:07', 0, NULL, 0, NULL, 1),
(33620, 26011, '2', 'State board ', '', '', '2020', 66.00, '', 1, '2025-07-23 06:32:13', 0, NULL, 0, NULL, 1),
(33621, 26011, '3', 'Madras University ', '', 'BCA', '2023', 66.00, '', 1, '2025-07-23 06:33:12', 0, NULL, 0, NULL, 1),
(33622, 26011, '4', 'Madras University ', '', 'MCA', '2025', 77.00, '', 1, '2025-07-23 06:33:40', 0, NULL, 0, NULL, 1),
(33623, 26009, '3', 'Madras University ', '', 'B.com ( Gen )', '2024', 65.46, '', 1, '2025-07-23 06:53:41', 0, NULL, 0, NULL, 1),
(33624, 25986, '3', 'mgr university', '', 'bba', '2025', 6.80, '', 1, '2025-07-23 06:58:53', 0, NULL, 0, NULL, 1),
(33625, 26017, '4', 'Madras University ', '', 'BA economics ', '2024', 80.00, '', 1, '2025-07-23 06:59:34', 0, NULL, 0, NULL, 1),
(33626, 26021, '4', 'unversity of madras', '', 'm a english literature', '2024', 65.00, '', 1, '2025-07-23 07:04:55', 0, NULL, 0, NULL, 1),
(33627, 26019, '3', 'University of medras ', '', 'B.sc ', '2025', 66.03, '', 1, '2025-07-23 07:26:02', 1, '2025-07-23 07:26:27', 0, NULL, 1),
(33628, 26018, '3', 'University ', '', 'Bsc Botany', '2025', 73.16, '', 1, '2025-07-23 07:29:16', 0, NULL, 0, NULL, 1),
(33629, 26022, '3', 'Madras university', '', 'BBA', '2025', 61.00, '', 1, '2025-07-23 07:33:25', 0, NULL, 0, NULL, 1),
(33630, 26024, '3', 'Madras University ', '', 'b.com ', '2025', 60.00, '', 1, '2025-07-23 07:34:17', 0, NULL, 0, NULL, 1),
(33631, 26023, '3', 'Madras University ', '', 'B.com ', '2025', 66.00, '', 1, '2025-07-23 07:35:21', 0, NULL, 0, NULL, 1),
(33632, 25976, '3', 'Madras University ', '', 'BSc Computer Science ', '2021', 7.69, '', 1, '2025-07-23 08:40:26', 0, NULL, 0, NULL, 1),
(33633, 26025, '3', 'Madras university ', '', 'BBA', '2025', 69.00, '', 1, '2025-07-23 08:46:25', 0, NULL, 0, NULL, 1),
(33634, 26026, '3', 'Madras University ', '', 'BBA', '2025', 65.00, '', 1, '2025-07-23 08:49:05', 0, NULL, 0, NULL, 1),
(33635, 26027, '3', 'Anna University', '', 'EEE', '2017', 60.00, '', 1, '2025-07-23 09:29:25', 0, NULL, 0, NULL, 1),
(33636, 26028, '3', 'Madras University ', '', 'B.com Accounting and finance ', '2025', 70.00, '', 1, '2025-07-23 09:56:40', 0, NULL, 0, NULL, 1),
(33637, 26029, '3', 'Madras University ', '', 'B.com ', '2025', 65.00, '', 1, '2025-07-23 09:57:49', 0, NULL, 0, NULL, 1),
(33638, 26033, '3', 'st.xaviers colle ', '', 'bsc.visual comm ', '2023', 76.00, '', 1, '2025-07-23 10:51:20', 0, NULL, 0, NULL, 1),
(33639, 26036, '5', 'directorate of technical education', '', 'diploma', '2022', 96.00, '', 1, '2025-07-23 01:17:25', 0, NULL, 0, NULL, 1),
(33640, 26036, '3', 'sri sivasubramaniya nadar college of engineering', '', 'b e', '2025', 71.00, '', 1, '2025-07-23 01:18:07', 0, NULL, 0, NULL, 1),
(33641, 26035, '2', 'Pre university Department karnataka', '', '', '2021', 45.00, '', 1, '2025-07-23 02:03:09', 0, NULL, 0, NULL, 1),
(33642, 26037, '3', 'Periyar University ', '', 'B.com ca', '2024', 55.00, '', 1, '2025-07-24 01:14:52', 0, NULL, 0, NULL, 1),
(33643, 26039, '3', 'Annamalai University ', '', 'B.com', '2025', 82.00, '', 1, '2025-07-24 05:00:56', 0, NULL, 0, NULL, 1),
(33644, 26040, '3', 'Medras university ', '', 'BCA', '2025', 70.00, '', 1, '2025-07-24 05:34:03', 0, NULL, 0, NULL, 1),
(33645, 26042, '3', 'sethu insti of technology ', '', 'be.eee', '2023', 7.83, '', 1, '2025-07-24 05:41:43', 0, NULL, 0, NULL, 1),
(33646, 26043, '3', 'University ', '', 'Bcom', '2023', 76.00, '', 1, '2025-07-24 05:43:10', 0, NULL, 0, NULL, 1),
(33647, 26032, '5', 'dote', '', 'Electronic communication engineer', '2021', 79.00, '', 1, '2025-07-24 05:44:36', 0, NULL, 0, NULL, 1),
(33648, 26044, '1', 'Apollo polytechnic ', '', '', '2014', 67.00, '', 1, '2025-07-24 05:44:50', 0, NULL, 0, NULL, 1),
(33649, 26045, '3', 'Madras University ', '', 'B.com( general)', '2024', 75.00, '', 1, '2025-07-24 05:53:52', 0, NULL, 0, NULL, 1),
(33650, 26041, '3', 'anna university', '', 'b.tech', '2023', 8.53, '', 1, '2025-07-24 05:59:05', 0, NULL, 0, NULL, 1),
(33651, 26046, '3', 'Madras university ', '', 'BBA ', '2025', 72.00, '', 1, '2025-07-24 06:06:15', 0, NULL, 0, NULL, 1),
(33652, 26047, '4', 'MS University ', '', 'M.sc computer science ', '2025', 75.00, '', 1, '2025-07-24 06:16:22', 0, NULL, 0, NULL, 1),
(33653, 26048, '3', 'STM UNIVERSITY ', '', 'B sc', '2024', 70.00, '', 1, '2025-07-24 06:27:19', 0, NULL, 0, NULL, 1),
(33654, 26050, '3', 'SRM TRP ENGINEERING COLLEGE ', '', 'BE ', '2023', 72.00, '', 1, '2025-07-24 06:50:14', 0, NULL, 0, NULL, 1),
(33655, 26038, '3', 'BMS College For women ', '', 'B com', '2024', 65.00, '', 1, '2025-07-24 07:01:57', 0, NULL, 0, NULL, 1),
(33656, 26049, '3', 'University of Madras', '', 'Bsc computer science', '2025', 50.00, '', 1, '2025-07-24 07:44:46', 0, NULL, 0, NULL, 1),
(33657, 26054, '3', 'Anna University ', '', 'B.E', '2025', 72.00, '', 1, '2025-07-24 10:20:32', 0, NULL, 0, NULL, 1),
(33658, 26056, '2', 'Board ', '', '', '2018', 70.00, '', 1, '2025-07-24 12:24:16', 0, NULL, 0, NULL, 1),
(33659, 26057, '3', 'University of Madras ', '', 'Bachelor of computer application ', '2025', 80.00, '', 1, '2025-07-24 12:33:30', 0, NULL, 0, NULL, 1),
(33660, 26057, '2', 'State board ', '', '', '2022', 67.00, '', 1, '2025-07-24 12:34:03', 1, '2025-07-24 12:36:56', 0, NULL, 0),
(33661, 26057, '2', 'State board ', '', '', '2020', 84.00, '', 1, '2025-07-24 12:34:48', 1, '2025-07-24 12:36:41', 0, NULL, 0),
(33662, 26057, '1', 'State board ', '', '', '2020', 84.00, '', 1, '2025-07-24 12:37:15', 0, NULL, 0, NULL, 1),
(33663, 26057, '2', 'State board ', '', '', '2022', 67.00, '', 1, '2025-07-24 12:37:38', 0, NULL, 0, NULL, 1),
(33664, 26058, '4', 'srm ', '', 'btech it', '2025', 7.43, '', 1, '2025-07-24 01:01:38', 0, NULL, 0, NULL, 1),
(33665, 26055, '1', 'Tamilnadu State board', '', '', '2019', 77.00, '', 1, '2025-07-24 01:52:26', 1, '2025-07-24 01:53:17', 0, NULL, 1),
(33666, 26055, '2', 'Tamilnadu state board', '', '', '2021', 82.00, '', 1, '2025-07-24 01:54:01', 0, NULL, 0, NULL, 1),
(33667, 26055, '3', 'Tamilnadu state board', '', 'Bsc physics', '2024', 75.00, '', 1, '2025-07-24 01:54:35', 0, NULL, 0, NULL, 1),
(33668, 26052, '3', 'University ', '', 'BBA', '2025', 7.40, '', 1, '2025-07-24 02:18:44', 0, NULL, 0, NULL, 1),
(33669, 18147, '1', 'Kamakoti oriental High school ', '', '', '2017', 80.00, '', 1, '2025-07-25 01:33:59', 0, NULL, 0, NULL, 1),
(33670, 18147, '2', 'Sri Jayanedhra Swasthi Matric High school ', '', '', '2019', 73.00, '', 1, '2025-07-25 01:34:29', 0, NULL, 0, NULL, 1),
(33671, 18147, '3', 'Joseph arts and Science College ', '', 'BBA ', '2022', 83.00, '', 1, '2025-07-25 01:34:55', 0, NULL, 0, NULL, 1),
(33672, 18147, '4', 'Mailam engineering College ', '', 'MBA ', '2024', 89.00, '', 1, '2025-07-25 01:35:13', 0, NULL, 0, NULL, 1),
(33673, 26060, '3', 'Annamalai University ', '', 'B,com', '2025', 88.00, '', 1, '2025-07-25 04:31:48', 0, NULL, 0, NULL, 1),
(33674, 26061, '4', 'madras university', '', 'msc computer science', '2025', 75.20, '', 1, '2025-07-25 04:51:17', 0, NULL, 0, NULL, 1),
(33675, 26062, '4', 'Madras University ', '', 'B.com', '2023', 79.00, '', 1, '2025-07-25 05:07:54', 0, NULL, 0, NULL, 1),
(33676, 26063, '4', ' kanchi Mamunivar govt. Institute for Postgraduate Studies  and Research', '', 'MSc (computer science)', '2023', 83.00, '', 1, '2025-07-25 05:47:42', 0, NULL, 0, NULL, 1),
(33677, 26063, '3', 'Perunthalaivar Kamarajar Arts College', '', 'Bachelor of Computer Applications', '2021', 79.00, '', 1, '2025-07-25 05:48:16', 0, NULL, 0, NULL, 1),
(33678, 26064, '1', 'Government Higher Secondary school ', '', 'B.E/CSE', '2016', 79.00, '', 1, '2025-07-25 06:00:59', 0, NULL, 0, NULL, 1),
(33679, 26064, '2', 'Government Higher Secondary school ', '', '', '2018', 72.00, '', 1, '2025-07-25 06:01:30', 0, NULL, 0, NULL, 1),
(33680, 26064, '3', 'Anna University ', '', 'BE/CSE', '2022', 82.00, '', 1, '2025-07-25 06:02:03', 0, NULL, 0, NULL, 1),
(33681, 26065, '3', 'Madras university ', '', 'BA English ', '2025', 60.80, '', 1, '2025-07-25 06:30:09', 0, NULL, 0, NULL, 1),
(33682, 26066, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 65.00, '', 1, '2025-07-25 06:40:38', 0, NULL, 0, NULL, 1),
(33683, 26068, '3', 'Madras university ', '', 'B.A', '2024', 57.00, '', 1, '2025-07-25 06:41:30', 0, NULL, 0, NULL, 1),
(33684, 26070, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 82.00, '', 1, '2025-07-25 06:42:28', 0, NULL, 0, NULL, 1),
(33685, 26069, '5', 'Board', '', 'Dialysis technology', '2019', 80.00, '', 1, '2025-07-25 06:46:59', 0, NULL, 0, NULL, 1),
(33686, 26067, '5', 'Board', '', 'Lab technician ', '2019', 80.00, '', 1, '2025-07-25 06:47:09', 0, NULL, 0, NULL, 1),
(33687, 26072, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 78.00, '', 1, '2025-07-25 06:48:51', 0, NULL, 0, NULL, 1),
(33688, 26051, '3', 'Madras University', '', 'Bca', '2025', 70.00, '', 1, '2025-07-25 07:01:42', 0, NULL, 0, NULL, 1),
(33689, 26073, '3', 'new prince shri bhavani art and science coll ', '', 'bca', '2025', 65.00, '', 1, '2025-07-25 07:08:03', 0, NULL, 0, NULL, 1),
(33690, 26076, '3', 'Anna university ', '', 'B.E civil engineering ', '2023', 75.00, '', 1, '2025-07-25 07:26:21', 0, NULL, 0, NULL, 1),
(33691, 26077, '3', 'anna university', '', 'bachelor of engineering', '2022', 75.00, '', 1, '2025-07-25 07:33:00', 0, NULL, 0, NULL, 1),
(33692, 26074, '3', 'Madras University ', '', 'B.com', '2025', 65.00, '', 1, '2025-07-25 07:43:07', 0, NULL, 0, NULL, 1),
(33693, 26059, '3', 'Banglore university ', '', '3rd year degree ', '2025', 70.00, '', 1, '2025-07-25 08:08:08', 0, NULL, 0, NULL, 1),
(33694, 26078, '3', 'anna university', '', 'b.e computer science and engineering', '2025', 76.00, '', 1, '2025-07-25 08:36:36', 0, NULL, 0, NULL, 1),
(33695, 26079, '3', 'Madras University ', '', 'B.com', '2024', 72.00, '', 1, '2025-07-25 09:04:28', 0, NULL, 0, NULL, 1),
(33696, 26080, '3', 'Periyar maniammai institute of science and technology ', '', 'BCA', '2025', 76.00, '', 1, '2025-07-25 09:21:22', 0, NULL, 0, NULL, 1),
(33697, 26080, '2', 'State board ', '', '', '2022', 67.00, '', 1, '2025-07-25 09:21:55', 0, NULL, 0, NULL, 1),
(33698, 26080, '1', 'State board ', '', '', '2020', 73.00, '', 1, '2025-07-25 09:22:22', 0, NULL, 0, NULL, 1),
(33699, 26082, '3', 'Anna university ', '', 'BE', '2022', 8.30, '', 1, '2025-07-25 09:49:49', 0, NULL, 0, NULL, 1),
(33700, 26083, '3', 'University of Madras ', '', 'Bcom general ', '2025', 80.00, '', 1, '2025-07-25 10:17:18', 0, NULL, 0, NULL, 1),
(33701, 24995, '3', 'University of Madras', '', 'Bsc', '2025', 74.00, '', 1, '2025-07-25 11:45:12', 0, NULL, 0, NULL, 1),
(33702, 24995, '1', 'State Board of Tamil Nadu', '', '', '2022', 89.00, '', 1, '2025-07-25 11:45:46', 1, '2025-07-25 11:46:38', 0, NULL, 1),
(33703, 24995, '2', 'State board of Tamil Nadu', '', '', '2022', 82.00, '', 1, '2025-07-25 11:47:14', 0, NULL, 0, NULL, 1),
(33704, 26081, '3', 'Anna university ', '', 'BE/CSE', '2025', 87.00, '', 1, '2025-07-25 12:15:27', 0, NULL, 0, NULL, 1),
(33705, 26085, '3', 'Bharathiyar university ', '', 'BCA Bachelor\'s of Computer application ', '2023', 70.00, '', 1, '2025-07-25 12:27:07', 0, NULL, 0, NULL, 1),
(33706, 26071, '4', 'ayya nadar janaki ammal college', '', 'mca', '2023', 8.30, '', 1, '2025-07-25 06:32:39', 0, NULL, 0, NULL, 1),
(33707, 26093, '3', 'Vels University ', '', 'B.com general', '2024', 70.00, '', 1, '2025-07-26 06:11:47', 0, NULL, 0, NULL, 1),
(33708, 26092, '3', 'University ', '', 'B.com Bank management ', '2025', 78.00, '', 1, '2025-07-26 06:16:32', 0, NULL, 0, NULL, 1),
(33709, 26090, '4', 'Madras University ', '', 'B.Com bank management ', '2025', 75.00, '', 1, '2025-07-26 06:23:09', 0, NULL, 0, NULL, 1),
(33710, 26091, '3', 'University ', '', 'B.com Bank management ', '2025', 70.00, '', 1, '2025-07-26 06:31:16', 0, NULL, 0, NULL, 1),
(33711, 26100, '4', 'Mangalore University ', '', 'MSW', '2024', 86.00, '', 1, '2025-07-28 01:58:14', 0, NULL, 0, NULL, 1),
(33712, 26095, '3', 'University ', '', 'BCA', '2023', 89.00, '', 1, '2025-07-28 04:03:33', 0, NULL, 0, NULL, 1),
(33713, 26101, '1', 'Kseeb', '', '', '2019', 69.76, '', 1, '2025-07-28 05:08:44', 0, NULL, 0, NULL, 1),
(33714, 26101, '3', 'Bms College For Women ', '', 'Bachelor of Commerce ', '2024', 70.00, '', 1, '2025-07-28 05:14:38', 0, NULL, 0, NULL, 1),
(33715, 26102, '3', 'Thiruvalluvar ', '', 'B.com ', '2023', 65.00, '', 1, '2025-07-28 05:18:27', 0, NULL, 0, NULL, 1),
(33716, 26103, '3', 'Annamalai University ', '', 'B.s.c computer science ', '2024', 75.00, '', 1, '2025-07-28 05:26:18', 0, NULL, 0, NULL, 1),
(33717, 26104, '3', 'Madurai kamaraj university ', '', 'BCA ', '2023', 81.00, '', 1, '2025-07-28 05:41:24', 0, NULL, 0, NULL, 1),
(33718, 26105, '3', 'Madras university ', '', 'B.com ', '2025', 74.00, '', 1, '2025-07-28 05:57:14', 0, NULL, 0, NULL, 1),
(33719, 26088, '3', 'Thiruvalluvar university ', '', 'B.com', '2027', 60.00, '', 1, '2025-07-28 06:05:35', 0, NULL, 0, NULL, 1),
(33720, 26099, '3', 'Thiruvalluvar university ', '', 'Bachelor of commerce ', '2023', 60.00, '', 1, '2025-07-28 06:05:37', 0, NULL, 0, NULL, 1),
(33721, 26098, '3', 'Madras University ', '', 'B.A', '2025', 46.00, '', 1, '2025-07-28 06:16:35', 0, NULL, 0, NULL, 1),
(33722, 26107, '1', 'State board ', '', '', '2020', 62.00, '', 1, '2025-07-28 06:19:10', 1, '2025-07-28 06:20:35', 0, NULL, 0),
(33723, 26107, '2', 'State board ', '', '', '2022', 57.00, '', 1, '2025-07-28 06:19:42', 1, '2025-07-28 06:20:30', 0, NULL, 0),
(33724, 26107, '3', 'Sri kanyaka parameswari arts and science college for women -chennai ', '', 'Bachelor of computer application ', '2025', 73.00, '', 1, '2025-07-28 06:20:15', 0, NULL, 0, NULL, 1),
(33725, 26097, '3', 'madras university', '', 'bba', '2025', 65.00, '', 1, '2025-07-28 06:21:38', 0, NULL, 0, NULL, 1),
(33726, 26107, '1', 'Auxilium matriculation school (State board)', '', '', '2020', 67.00, '', 1, '2025-07-28 06:21:59', 0, NULL, 0, NULL, 1),
(33727, 26107, '2', 'Vellayan chettiyar higher secondary school (State board)', '', '', '2022', 57.00, '', 1, '2025-07-28 06:22:38', 0, NULL, 0, NULL, 1),
(33728, 26108, '1', 'Dr MGR UNIVERSITY ', '', '', '2024', 70.00, '', 1, '2025-07-28 06:25:25', 0, NULL, 0, NULL, 1),
(33729, 26109, '3', 'medras university', '', 'bcom general ', '2023', 50.00, '', 1, '2025-07-28 07:48:59', 0, NULL, 0, NULL, 1),
(33730, 26110, '3', 'Tamilnadu teacher education University ', '', 'Bsc b ed physics ', '2024', 92.00, '', 1, '2025-07-28 07:56:53', 0, NULL, 0, NULL, 1),
(33731, 26111, '3', 'Bharathidsan university ', '', 'B.Com(CA)', '2021', 80.00, '', 1, '2025-07-28 09:01:43', 0, NULL, 0, NULL, 1),
(33732, 26112, '2', 'Tamilnadu State Board of Examinations', '', '', '2020', 52.00, '', 1, '2025-07-28 09:49:17', 0, NULL, 0, NULL, 1),
(33733, 26030, '4', 'Thiruvalluvar University ', '', 'Computer science ', '2022', 8.70, '', 1, '2025-07-28 10:07:12', 0, NULL, 0, NULL, 1),
(33734, 26114, '3', 'madras universit', '', 'BCA', '2026', 65.00, '', 154, '2025-07-28 03:42:12', 0, NULL, 0, NULL, 1),
(33735, 26115, '3', 'Madras Christian College ', '', 'BCA', '2025', 75.00, '', 1, '2025-07-28 11:18:09', 0, NULL, 0, NULL, 1),
(33736, 26118, '4', 'Sri venkateswara college ', '', 'Btech', '2022', 68.00, '', 1, '2025-07-28 12:01:01', 0, NULL, 0, NULL, 1),
(33737, 26120, '3', 'Bharathiar University ', '', 'Bachelor of commerce in Information Technology ', '2024', 6.90, '', 1, '2025-07-28 01:24:05', 0, NULL, 0, NULL, 1),
(33738, 26121, '3', 'Anna University', '', 'B.E - Biomedical Engineering', '2025', 72.00, '', 1, '2025-07-28 01:28:15', 0, NULL, 0, NULL, 1),
(33739, 26121, '2', 'Sate Board', '', '', '2021', 73.00, '', 1, '2025-07-28 01:29:24', 1, '2025-07-28 01:30:43', 0, NULL, 1),
(33740, 26121, '1', 'State Board', '', '', '2019', 67.00, '', 1, '2025-07-28 01:31:11', 0, NULL, 0, NULL, 1),
(33741, 26122, '3', 'Thiruvalluvar university ', '', 'Bachelor of science in physics ', '2024', 69.00, '', 1, '2025-07-28 02:30:47', 0, NULL, 0, NULL, 1),
(33742, 26122, '1', 'State board of Tamil Nadu ', '', '', '2019', 69.00, '', 1, '2025-07-28 02:31:22', 0, NULL, 0, NULL, 1),
(33743, 26122, '2', 'State board of Tamil Nadu ', '', '', '2021', 80.00, '', 1, '2025-07-28 02:31:49', 0, NULL, 0, NULL, 1),
(33744, 26123, '3', 'Thiruvalluvar University', '', 'B Sc Chemistry ', '2025', 65.00, '', 1, '2025-07-29 02:01:38', 0, NULL, 0, NULL, 1),
(33745, 26119, '3', 'Thiruvalluvar university ', '', 'Bsc mathematics ', '2025', 70.00, '', 1, '2025-07-29 05:45:33', 0, NULL, 0, NULL, 1),
(33746, 26126, '3', 'Annamalai University ', '', 'Bsc cs', '2015', 71.00, '', 1, '2025-07-29 06:09:19', 0, NULL, 0, NULL, 1),
(33747, 26126, '5', 'Govt polytechnic College ', '', 'DCE ', '2011', 77.00, '', 1, '2025-07-29 06:09:49', 0, NULL, 0, NULL, 1),
(33748, 26125, '3', 'Anna university ', '', 'B. E', '2025', 70.00, '', 1, '2025-07-29 06:09:54', 0, NULL, 0, NULL, 1),
(33749, 26125, '2', 'State board', '', '', '2021', 82.00, '', 1, '2025-07-29 06:10:56', 0, NULL, 0, NULL, 1),
(33750, 26125, '1', 'State board', '', '', '2019', 71.00, '', 1, '2025-07-29 06:11:17', 0, NULL, 0, NULL, 1),
(33751, 26128, '1', 'state board', '', '', '2017', 80.00, '', 1, '2025-07-29 06:46:34', 0, NULL, 0, NULL, 1),
(33752, 26128, '2', 'state board', '', '', '2019', 70.00, '', 1, '2025-07-29 06:46:51', 0, NULL, 0, NULL, 1),
(33753, 26128, '3', 'university of madras', '', 'bca', '2022', 83.00, '', 1, '2025-07-29 06:47:18', 0, NULL, 0, NULL, 1),
(33754, 26128, '4', 'univesity of madras', '', 'mca', '2024', 88.00, '', 1, '2025-07-29 06:47:45', 0, NULL, 0, NULL, 1),
(33755, 26129, '3', 'sree Abiraami Arts & Science College for women ', '', 'bca', '2020', 69.00, '', 1, '2025-07-29 07:18:51', 0, NULL, 0, NULL, 1),
(33756, 26132, '3', 'Alagappa university ', '', 'Bca', '2025', 77.00, '', 1, '2025-07-29 09:23:31', 0, NULL, 0, NULL, 1),
(33757, 26133, '3', 'srikamlabai ', '', 'bcom', '2020', 64.00, '', 1, '2025-07-29 09:58:15', 0, NULL, 0, NULL, 1),
(33758, 26134, '3', 'CS University Meerut', '', 'bsc', '2021', 65.00, '', 1, '2025-07-29 10:02:16', 0, NULL, 0, NULL, 1),
(33759, 26138, '1', 'Annamalai University ', '', '', '2024', 69.00, '', 1, '2025-07-29 04:30:09', 0, NULL, 0, NULL, 1),
(33760, 26140, '4', 'Bharathithasan ', '', 'M.CA', '2023', 72.00, '', 1, '2025-07-30 04:30:12', 0, NULL, 0, NULL, 1),
(33761, 26141, '3', 'Justice basheer ahmed sayeed college for women', '', 'B COM', '2025', 82.00, '', 1, '2025-07-30 05:07:16', 0, NULL, 0, NULL, 1),
(33762, 25651, '3', 'Justice basheer ahmed sayeed college for women', '', 'B.com ism', '2023', 75.00, '', 1, '2025-07-30 05:07:16', 0, NULL, 0, NULL, 1),
(33763, 26142, '3', 'University of Madras ', '', 'BBA', '2025', 60.00, '', 1, '2025-07-30 05:11:00', 0, NULL, 0, NULL, 1),
(33764, 26143, '3', 'Ifet college of engineering', '', 'B. E', '2024', 8.20, '', 1, '2025-07-30 05:18:55', 0, NULL, 0, NULL, 1),
(33765, 26127, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 73.17, '', 1, '2025-07-30 05:37:21', 0, NULL, 0, NULL, 1),
(33766, 26139, '3', 'University of Madras ', '', 'B.Com (Corporate Secretaryship)', '2025', 72.00, '', 1, '2025-07-30 05:45:18', 0, NULL, 0, NULL, 1),
(33767, 26136, '3', 'Madras university', '', 'B. Com (Corporate secretaryship) ', '2025', 65.00, '', 1, '2025-07-30 05:45:20', 0, NULL, 0, NULL, 1),
(33768, 26139, '2', 'State board ', '', '', '2022', 71.00, '', 1, '2025-07-30 05:45:59', 0, NULL, 0, NULL, 1),
(33769, 26139, '1', 'State board ', '', '', '2020', 57.00, '', 1, '2025-07-30 05:46:21', 0, NULL, 0, NULL, 1),
(33770, 26136, '2', 'State board ', '', '', '2022', 56.00, '', 1, '2025-07-30 05:46:41', 0, NULL, 0, NULL, 1),
(33771, 26136, '1', 'State board ', '', '', '2020', 44.00, '', 1, '2025-07-30 05:47:28', 0, NULL, 0, NULL, 1),
(33772, 26144, '4', 'Board', '', 'English literature', '2023', 70.00, '', 1, '2025-07-30 06:28:50', 0, NULL, 0, NULL, 1),
(33773, 26124, '3', 'Madras University ', '', 'BA', '2021', 60.00, '', 1, '2025-07-30 06:42:42', 0, NULL, 0, NULL, 1),
(33774, 26146, '1', 'Monahan girls higher secondary school', '', 'B. Com (computer Application )', '2020', 67.20, '', 1, '2025-07-30 10:07:01', 1, '2025-07-30 10:13:18', 0, NULL, 0),
(33775, 26146, '3', 'Women\'s Christian college ', '', 'B.com(Computer applications)', '2025', 70.00, '', 1, '2025-07-30 10:10:45', 1, '2025-07-30 10:14:10', 0, NULL, 0),
(33776, 26146, '2', 'Mohanan girls higher secondary schools ', '', '', '2022', 85.00, '', 1, '2025-07-30 10:11:24', 0, NULL, 0, NULL, 1),
(33777, 26146, '1', 'Monahan girls higher secondary schools ', '', '', '2020', 62.70, '', 1, '2025-07-30 10:13:54', 0, NULL, 0, NULL, 1),
(33778, 26146, '3', 'Women\'s Christian college ', '', 'B.com(computer Application)', '2025', 70.00, '', 1, '2025-07-30 10:15:01', 0, NULL, 0, NULL, 1),
(33779, 26147, '3', 'Justice basheer sayed Ahmed women\'s college ', '', 'Bcom ISM ', '2025', 70.00, '', 1, '2025-07-30 10:29:33', 0, NULL, 0, NULL, 1),
(33780, 26148, '3', 'Anna University ', '', 'B.E Computer Science Engineering ', '2022', 71.90, '', 1, '2025-07-30 10:51:20', 0, NULL, 0, NULL, 1),
(33781, 26150, '4', 'tiruvalluvar university', '', 'm.sc computer science', '2022', 84.00, '', 1, '2025-07-30 03:51:53', 0, NULL, 0, NULL, 1),
(33782, 26150, '3', 'tiruvalluvar university', '', 'b.sc computer science', '2020', 71.00, '', 1, '2025-07-30 03:52:20', 0, NULL, 0, NULL, 1),
(33783, 26150, '2', 'state board', '', '', '2017', 70.00, '', 1, '2025-07-30 03:53:04', 0, NULL, 0, NULL, 1),
(33784, 26150, '1', 'state board', '', '', '2015', 79.00, '', 1, '2025-07-30 03:53:19', 0, NULL, 0, NULL, 1),
(33785, 26117, '3', 'University ', '', 'BBA', '2025', 6.50, '', 1, '2025-07-31 01:27:06', 0, NULL, 0, NULL, 1),
(33786, 26153, '3', 'Madurai kamarajar University ', '', 'Bsc psychology ', '2025', 69.00, '', 1, '2025-07-31 04:29:32', 1, '2025-07-31 04:29:50', 0, NULL, 1),
(33787, 26154, '3', 'Bharathi arta women collhae', '', 'uG', '2025', 62.00, '', 1, '2025-07-31 04:49:06', 0, NULL, 0, NULL, 1),
(33788, 26156, '4', 'Vels University ', '', 'MCA', '2025', 7.90, '', 1, '2025-07-31 05:17:31', 0, NULL, 0, NULL, 1),
(33789, 26155, '2', 'Ug', '', '', '2025', 75.00, '', 1, '2025-07-31 05:36:33', 0, NULL, 0, NULL, 1),
(33790, 26157, '3', 'The new college ', '', 'Bba ', '2025', 60.00, '', 1, '2025-07-31 05:44:36', 0, NULL, 0, NULL, 1),
(33791, 26158, '3', 'University of madras', '', 'B.com corporate Secretaryship ', '2025', 70.00, '', 1, '2025-07-31 05:50:18', 0, NULL, 0, NULL, 1),
(33792, 26152, '3', 'University of Madras ', '', 'B.com (Corporate Secratary ship)', '2025', 70.00, '', 1, '2025-07-31 05:52:04', 0, NULL, 0, NULL, 1),
(33793, 26159, '3', 'Madras University ', '', 'B.com', '2021', 69.00, '', 1, '2025-07-31 06:01:33', 0, NULL, 0, NULL, 1),
(33794, 26160, '3', 'Anna University ', '', 'BE', '2025', 7.05, '', 1, '2025-07-31 06:08:30', 1, '2025-07-31 06:10:33', 0, NULL, 1),
(33795, 26160, '2', 'State board ', '', '', '2021', 86.37, '', 1, '2025-07-31 06:09:24', 0, NULL, 0, NULL, 1),
(33796, 26160, '1', 'State board ', '', '', '2019', 87.40, '', 1, '2025-07-31 06:09:52', 0, NULL, 0, NULL, 1),
(33797, 26161, '3', 'Anna university ', '', 'B.e', '2018', 74.00, '', 1, '2025-07-31 06:15:20', 0, NULL, 0, NULL, 1),
(33798, 25585, '3', 'Madras', '', 'B.com', '2025', 85.00, '', 1, '2025-07-31 06:49:37', 0, NULL, 0, NULL, 1),
(33799, 26162, '2', 'Bord', '', 'Diploma ', '2018', 60.00, '', 1, '2025-07-31 07:06:06', 0, NULL, 0, NULL, 1),
(33800, 26163, '3', 'Madras', '', 'Bcom ', '2017', 63.00, '', 1, '2025-07-31 07:11:30', 0, NULL, 0, NULL, 1),
(33801, 26163, '2', 'State board', '', '', '2014', 72.00, '', 1, '2025-07-31 07:12:11', 0, NULL, 0, NULL, 1),
(33802, 26163, '1', 'State board', '', '', '2012', 69.00, '', 1, '2025-07-31 07:12:36', 0, NULL, 0, NULL, 1),
(33803, 26164, '3', 'University of Madras ', '', 'B Sc ', '2024', 72.00, '', 1, '2025-07-31 07:21:49', 0, NULL, 0, NULL, 1),
(33804, 26164, '2', 'Tambaram higher secondary school ', '', '', '2021', 82.00, '', 1, '2025-07-31 07:22:34', 0, NULL, 0, NULL, 1),
(33805, 26164, '1', 'Danish mission high school ', '', '', '2019', 70.00, '', 1, '2025-07-31 07:23:00', 0, NULL, 0, NULL, 1),
(33806, 26165, '3', 'University of madras ', '', 'Business administration ', '2025', 67.00, '', 1, '2025-07-31 07:42:25', 0, NULL, 0, NULL, 1),
(33807, 26168, '3', 'Anjalai ammal mahalingam Engineering college ', '', 'Computer science and engineering ', '2025', 80.00, '', 1, '2025-07-31 09:14:07', 0, NULL, 0, NULL, 1),
(33808, 26166, '5', 'State borad', '', 'Diploma', '2020', 85.00, '', 1, '2025-07-31 09:21:29', 0, NULL, 0, NULL, 1),
(33809, 26170, '5', 'Atapc', '', 'machanical', '2024', 45.70, '', 1, '2025-07-31 09:52:53', 0, NULL, 0, NULL, 1),
(33810, 26169, '5', 'ATAPC', '', 'EEE', '2024', 49.00, '', 1, '2025-07-31 09:54:45', 0, NULL, 0, NULL, 1),
(33811, 26171, '3', 'Kamarajar university ', '', 'BA.ENGLISH LITERATURE ', '2024', 70.00, '', 1, '2025-07-31 11:56:41', 0, NULL, 0, NULL, 1),
(33812, 26172, '3', 'University of Madras ', '', 'BBA', '2025', 65.00, '', 1, '2025-07-31 12:00:21', 0, NULL, 0, NULL, 1),
(33813, 26175, '3', 'bangalore university ', '', 'bachelor in business administration ', '2024', 85.00, '', 1, '2025-07-31 06:06:34', 0, NULL, 0, NULL, 1),
(33814, 26177, '3', 'Bharathidasan University ', '', 'BBA', '2021', 70.00, '', 1, '2025-08-01 04:47:29', 0, NULL, 0, NULL, 1),
(33815, 26176, '3', 'University of madras ', '', 'BCA', '2024', 65.00, '', 1, '2025-08-01 05:14:03', 0, NULL, 0, NULL, 1),
(33816, 26181, '3', 'Madras University ', '', 'BBA', '2022', 63.20, '', 1, '2025-08-01 05:29:14', 0, NULL, 0, NULL, 1),
(33817, 26182, '3', 'Annamalai University ', '', 'BBA ', '2025', 64.00, '', 1, '2025-08-01 05:37:06', 0, NULL, 0, NULL, 1),
(33818, 26179, '3', 'Madras University ', '', 'Bcom CA ', '2025', 69.00, '', 1, '2025-08-01 05:37:40', 0, NULL, 0, NULL, 1),
(33819, 26180, '3', 'Madras university', '', 'B com ', '2025', 65.00, '', 1, '2025-08-01 05:38:47', 0, NULL, 0, NULL, 1),
(33820, 26185, '3', 'University of Madras ', '', 'BBA', '2025', 6.50, '', 1, '2025-08-01 06:11:02', 0, NULL, 0, NULL, 1),
(33821, 26183, '3', 'University of Madras ', '', 'BA. Economics ', '2025', 6.50, '', 1, '2025-08-01 06:11:17', 0, NULL, 0, NULL, 1),
(33822, 26167, '3', 'Anna university ', '', 'BE:CSE', '2024', 60.00, '', 1, '2025-08-01 06:14:46', 0, NULL, 0, NULL, 1),
(33823, 26167, '1', 'State board', '', '', '2017', 50.00, '', 1, '2025-08-01 06:15:32', 0, NULL, 0, NULL, 1),
(33824, 26167, '5', 'Dote', '', 'DME', '2020', 74.00, '', 1, '2025-08-01 06:16:27', 0, NULL, 0, NULL, 1),
(33825, 26186, '3', 'Madras University ', '', 'BBA', '2022', 90.00, '', 1, '2025-08-01 06:17:37', 0, NULL, 0, NULL, 1),
(33826, 26187, '3', 'Madara university ', '', 'BA Tamil', '2024', 60.00, '', 1, '2025-08-01 06:22:23', 0, NULL, 0, NULL, 1),
(33827, 26188, '3', 'Madras university ', '', 'BA', '2022', 70.00, '', 1, '2025-08-01 06:24:52', 0, NULL, 0, NULL, 1),
(33828, 26184, '3', ' university', '', 'BCA', '2024', 67.00, '', 1, '2025-08-01 06:28:33', 0, NULL, 0, NULL, 1),
(33829, 26189, '3', 'Madara university ', '', 'B.com CS', '2023', 65.00, '', 1, '2025-08-01 06:38:48', 0, NULL, 0, NULL, 1),
(33830, 26190, '5', 'University ', '', 'EEE', '2020', 73.00, '', 1, '2025-08-01 06:43:23', 0, NULL, 0, NULL, 1),
(33831, 26191, '3', 'bharathidasan university', '', 'Bachelor of computer application ', '2023', 85.40, '', 1, '2025-08-01 06:44:28', 0, NULL, 0, NULL, 1),
(33832, 26195, '3', 'Pondicherry University ', '', 'Bachelor of technology ', '2024', 84.00, '', 1, '2025-08-01 08:29:41', 0, NULL, 0, NULL, 1),
(33833, 26192, '3', 'anna university', '', 'BE', '2025', 72.00, '', 1, '2025-08-01 08:42:23', 0, NULL, 0, NULL, 1),
(33834, 26197, '3', 'University of Madras ', '', 'B.sc ', '2025', 70.00, '', 1, '2025-08-01 09:14:04', 0, NULL, 0, NULL, 1),
(33835, 26197, '2', 'Tamilnadu state Board ', '', '', '2022', 71.00, '', 1, '2025-08-01 09:15:28', 0, NULL, 0, NULL, 1),
(33836, 26197, '1', 'Tamilnadu state Board ', '', '', '2020', 92.00, '', 1, '2025-08-01 09:15:42', 0, NULL, 0, NULL, 1),
(33837, 26198, '3', 'University of Madras ', '', 'BA Economics ', '2025', 65.00, '', 1, '2025-08-01 10:01:47', 0, NULL, 0, NULL, 1),
(33838, 26203, '4', 'srm university', '', 'mba', '2025', 90.00, '', 1, '2025-08-01 02:07:32', 0, NULL, 0, NULL, 1),
(33839, 26201, '3', 'Hindustan Institute of Technology and science ', '', 'BCA ', '2023', 70.00, '', 1, '2025-08-02 05:10:44', 0, NULL, 0, NULL, 1),
(33840, 26205, '4', 'SASTRA DEEMED TO BE UNIVERSITY ', '', 'MBA ', '2025', 79.00, '', 1, '2025-08-02 05:13:00', 0, NULL, 0, NULL, 1),
(33841, 26205, '3', 'JAMAL MOHAMMED COLLEGE ', '', 'BBA', '2023', 85.00, '', 1, '2025-08-02 05:13:38', 0, NULL, 0, NULL, 1),
(33842, 26205, '2', 'Kalayan sundram higher secondary school ', '', '', '2020', 79.00, '', 1, '2025-08-02 05:13:58', 0, NULL, 0, NULL, 1),
(33843, 26205, '1', 'Kalayan sundram higher secondary school ', '', '', '2018', 72.00, '', 1, '2025-08-02 05:14:14', 0, NULL, 0, NULL, 1),
(33844, 26178, '3', 'Apollo arts and science ', '', 'B.com ', '2022', 61.00, '', 1, '2025-08-02 05:33:03', 0, NULL, 0, NULL, 1),
(33845, 26207, '3', 'University Of Madras ', '', 'Bsc.Computer Science ', '2025', 80.00, '', 1, '2025-08-02 06:01:20', 0, NULL, 0, NULL, 1),
(33846, 26208, '3', 'Madras University ', '', 'Bsc (computer science)', '2025', 82.00, '', 1, '2025-08-02 06:02:00', 0, NULL, 0, NULL, 1),
(33847, 26151, '5', 'St marys girls hr sec school', '', '12th', '2022', 90.00, '', 1, '2025-08-02 06:14:15', 0, NULL, 0, NULL, 1),
(33848, 26211, '3', 'anna university', '', 'engineering', '2019', 7.29, '', 1, '2025-08-02 10:54:23', 0, NULL, 0, NULL, 1),
(33849, 26215, '3', 'university of madras', '', 'bsc cs', '2025', 83.00, '', 1, '2025-08-02 01:04:05', 0, NULL, 0, NULL, 1),
(33850, 26217, '3', 'madras university', '', 'bca', '2025', 75.00, '', 1, '2025-08-02 01:06:25', 0, NULL, 0, NULL, 1),
(33851, 26216, '3', 'madras university', '', 'B.Sc. computer science', '2025', 80.00, '', 1, '2025-08-02 01:10:11', 0, NULL, 0, NULL, 1),
(33852, 26218, '4', 'Jain University ', '', 'MBA - Human resources management ', '2025', 91.00, '', 1, '2025-08-02 01:19:36', 0, NULL, 0, NULL, 1),
(33853, 26220, '3', 'Madras University ', '', 'BBA', '2025', 65.00, '', 1, '2025-08-04 05:29:28', 0, NULL, 0, NULL, 1),
(33854, 26221, '3', 'madras university', '', 'b com accounting finance', '2023', 76.00, '', 1, '2025-08-04 05:34:01', 0, NULL, 0, NULL, 1),
(33855, 26222, '1', 'State board', '', '', '2013', 74.00, '', 1, '2025-08-04 05:43:49', 0, NULL, 0, NULL, 1),
(33856, 26222, '3', 'Madras university', '', 'Bca', '2018', 60.00, '', 1, '2025-08-04 05:44:33', 0, NULL, 0, NULL, 1),
(33857, 26222, '4', 'Anna university', '', 'Mca', '2020', 72.00, '', 1, '2025-08-04 05:45:10', 0, NULL, 0, NULL, 1),
(33858, 26222, '2', 'State board', '', '', '2015', 55.00, '', 1, '2025-08-04 05:45:37', 0, NULL, 0, NULL, 1),
(33859, 26227, '3', 'Madras University ', '', 'B.com computer Application ', '2025', 75.00, '', 1, '2025-08-04 07:14:55', 0, NULL, 0, NULL, 1),
(33860, 26228, '3', 'Madras University ', '', 'B.com', '2025', 70.00, '', 1, '2025-08-04 07:14:55', 0, NULL, 0, NULL, 1),
(33861, 26212, '3', 'University ', '', 'Bcom', '2025', 70.00, '', 1, '2025-08-04 07:38:31', 0, NULL, 0, NULL, 1),
(33862, 26231, '3', 'KCG COLLEGE OF TECHNOLOGY ', '', 'B.E', '2025', 82.00, '', 1, '2025-08-04 09:29:09', 0, NULL, 0, NULL, 1),
(33863, 26231, '2', 'St.patricks Anglo Indian higher secondary school ', '', '', '2021', 92.00, '', 1, '2025-08-04 09:29:49', 0, NULL, 0, NULL, 1),
(33864, 26232, '5', 'Dote university ', '', 'Diploma computer engineering ', '2020', 71.00, '', 1, '2025-08-04 09:43:15', 0, NULL, 0, NULL, 1),
(33865, 26233, '4', 'Mohamed sathak college of arts and science ', '', 'MCA', '2025', 83.00, '', 1, '2025-08-04 10:44:04', 0, NULL, 0, NULL, 1),
(33866, 26233, '3', 'The New college ', '', 'Bsc cs', '2023', 80.00, '', 1, '2025-08-04 10:44:31', 0, NULL, 0, NULL, 1),
(33867, 26233, '2', 'H.N.U.C hr sec school', '', '', '2020', 60.00, '', 1, '2025-08-04 10:45:03', 0, NULL, 0, NULL, 1),
(33868, 26233, '1', 'H.N.U.C hr sec school ', '', '', '2018', 77.00, '', 1, '2025-08-04 10:45:32', 0, NULL, 0, NULL, 1),
(33869, 26204, '3', 'Kamaraj unviracity ', '', 'B.cOM', '2020', 60.00, '', 1, '2025-08-04 12:10:11', 0, NULL, 0, NULL, 1),
(33870, 26225, '3', 'AnnaUniversity ', '', 'BE', '2021', 8.31, '', 1, '2025-08-04 12:14:32', 0, NULL, 0, NULL, 1),
(33871, 26236, '3', 'thiruvalluvar university ', '', 'BCA', '2023', 69.00, '', 1, '2025-08-05 05:03:33', 0, NULL, 0, NULL, 1),
(33872, 26237, '3', 'Bharathidasan University ', '', 'Bca ', '2022', 78.00, '', 1, '2025-08-05 05:07:30', 0, NULL, 0, NULL, 1),
(33873, 26238, '3', ' Madras University ', '', 'Bsc computer science ', '2025', 76.00, '', 1, '2025-08-05 05:20:41', 0, NULL, 0, NULL, 1),
(33874, 26240, '3', 'Madas university', '', 'Bcom ', '2015', 70.00, '', 1, '2025-08-05 06:13:00', 0, NULL, 0, NULL, 1),
(33875, 26239, '3', 'Madras university ', '', 'B.sc computer science ', '2025', 70.00, '', 1, '2025-08-05 06:23:08', 0, NULL, 0, NULL, 1),
(33876, 26244, '3', 'University of Madras ', '', 'B.A English ', '2016', 80.00, '', 1, '2025-08-05 06:28:09', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(33877, 26246, '3', 'TNAU', '', 'Bsc horticulture', '2021', 82.00, '', 1, '2025-08-05 06:43:13', 0, NULL, 0, NULL, 1),
(33878, 26248, '3', 'BHARATHITHASAN UNIVERSITY ', '', 'Bsc mathematics ', '2020', 75.00, '', 1, '2025-08-05 06:45:51', 0, NULL, 0, NULL, 1),
(33879, 26245, '3', 'Anna University ', '', 'B.E', '2023', 84.00, '', 1, '2025-08-05 06:46:52', 0, NULL, 0, NULL, 1),
(33880, 26245, '2', 'Tamilnadu State Board ', '', '', '2019', 83.00, '', 1, '2025-08-05 06:47:28', 0, NULL, 0, NULL, 1),
(33881, 26245, '1', 'Tamilnadu State Board ', '', '', '2017', 98.20, '', 1, '2025-08-05 06:47:55', 0, NULL, 0, NULL, 1),
(33882, 26247, '3', 'MADRAS UNIVERSITY', '', 'Bcom', '2025', 65.00, '', 154, '2025-08-05 12:20:51', 0, NULL, 0, NULL, 1),
(33883, 26249, '3', 'Anna university ', '', 'B.E', '2024', 83.00, '', 1, '2025-08-05 06:51:09', 0, NULL, 0, NULL, 1),
(33884, 26250, '3', 'Thiruvalluvar university ', '', 'B.sc computer science ', '2022', 73.00, '', 1, '2025-08-05 07:10:57', 0, NULL, 0, NULL, 1),
(33885, 26252, '3', 'Anna University ', '', 'B.Tech IT', '2025', 88.80, '', 1, '2025-08-05 07:38:28', 0, NULL, 0, NULL, 1),
(33886, 26253, '3', 'madra university', '', 'b a english ', '2021', 80.00, '', 1, '2025-08-05 07:40:37', 0, NULL, 0, NULL, 1),
(33887, 26252, '2', 'Tamil Nadu State Board', '', '', '2021', 89.00, '', 1, '2025-08-05 07:42:44', 0, NULL, 0, NULL, 1),
(33888, 26252, '1', 'Tamil Nadu State Board', '', '', '2019', 86.00, '', 1, '2025-08-05 07:43:21', 0, NULL, 0, NULL, 1),
(33889, 26242, '1', 'State board', '', 'B.Tech CSE', '2016', 81.00, '', 1, '2025-08-05 08:55:49', 1, '2025-08-05 09:01:35', 0, NULL, 1),
(33890, 26242, '2', 'State board', '', '', '2018', 68.00, '', 1, '2025-08-05 08:57:38', 0, NULL, 0, NULL, 1),
(33891, 26242, '3', 'University ', '', 'B.Tech CSE', '2023', 7.00, '', 1, '2025-08-05 08:58:19', 0, NULL, 0, NULL, 1),
(33892, 26256, '3', 'anna university', '', 'b.tech - computer science and business systems', '2025', 72.00, '', 1, '2025-08-05 09:17:37', 0, NULL, 0, NULL, 1),
(33893, 26255, '3', 'Madras University ', '', 'BCA', '2025', 69.00, '', 1, '2025-08-05 09:24:15', 0, NULL, 0, NULL, 1),
(33894, 26254, '3', 'University ', '', 'BCA ', '2025', 60.00, '', 1, '2025-08-05 09:25:28', 0, NULL, 0, NULL, 1),
(33895, 26258, '1', 'State ', '', '', '2017', 89.00, '', 1, '2025-08-05 10:05:39', 0, NULL, 0, NULL, 1),
(33896, 26258, '2', 'State', '', '', '2019', 75.00, '', 1, '2025-08-05 10:07:15', 0, NULL, 0, NULL, 1),
(33897, 26258, '3', 'Bharathidasan university ', '', 'Bachelor of computer application ', '2022', 78.00, '', 1, '2025-08-05 10:08:23', 0, NULL, 0, NULL, 1),
(33898, 26259, '1', 'State', '', '', '2018', 70.00, '', 1, '2025-08-05 10:12:51', 0, NULL, 0, NULL, 1),
(33899, 26259, '2', 'State', '', '', '2020', 55.60, '', 1, '2025-08-05 10:13:10', 0, NULL, 0, NULL, 1),
(33900, 26259, '3', 'Bharathidasan university ', '', 'B.sc computer science ', '2023', 73.20, '', 1, '2025-08-05 10:13:54', 0, NULL, 0, NULL, 1),
(33901, 26260, '3', 'university', '', 'bcom', '2023', 65.00, '', 1, '2025-08-05 11:07:54', 0, NULL, 0, NULL, 1),
(33902, 26261, '4', 'VTU', '', 'MBA', '2020', 65.00, '', 1, '2025-08-05 12:11:13', 0, NULL, 0, NULL, 1),
(33903, 26262, '3', 's Seshadripuram, first grade Seshadripuram first Grade college Ylhnka', '', 'bcom', '2025', 85.00, '', 1, '2025-08-05 01:15:21', 1, '2025-08-05 01:15:40', 0, NULL, 0),
(33904, 26264, '2', 'anna university', '', 'ba history', '2017', 85.00, '', 1, '2025-08-05 06:55:34', 0, NULL, 0, NULL, 1),
(33905, 26266, '3', 'Board', '', 'BE', '2025', 70.00, '', 1, '2025-08-06 04:41:25', 0, NULL, 0, NULL, 1),
(33906, 26266, '1', 'Board ', '', '', '2019', 79.00, '', 1, '2025-08-06 04:41:53', 0, NULL, 0, NULL, 1),
(33907, 26266, '2', 'Board ', '', '', '2021', 83.00, '', 1, '2025-08-06 04:42:26', 0, NULL, 0, NULL, 1),
(33908, 26265, '3', 'University of madras', '', 'B.Com(Corporate Secretaryship)', '2024', 64.00, '', 1, '2025-08-06 04:45:52', 0, NULL, 0, NULL, 1),
(33909, 26267, '4', 'Bharathiar university ', '', 'MCA', '2025', 72.00, '', 1, '2025-08-06 04:57:07', 0, NULL, 0, NULL, 1),
(33910, 26267, '1', 'State board', '', '', '2017', 83.00, '', 1, '2025-08-06 05:03:09', 0, NULL, 0, NULL, 1),
(33911, 26267, '2', 'State board', '', '', '2019', 62.00, '', 1, '2025-08-06 05:03:28', 0, NULL, 0, NULL, 1),
(33912, 26267, '3', 'Bharathiar university ', '', 'Bsc electronics ', '2022', 72.00, '', 1, '2025-08-06 05:04:15', 0, NULL, 0, NULL, 1),
(33913, 26270, '3', 'Madras University ', '', 'BBA', '2022', 65.00, '', 1, '2025-08-06 05:50:08', 0, NULL, 0, NULL, 1),
(33914, 26271, '3', 'Madras University ', '', 'B.com ( corporate secretaryshi)', '2020', 75.00, '', 1, '2025-08-06 06:03:59', 1, '2025-08-06 06:04:14', 0, NULL, 0),
(33915, 26271, '3', 'Madras University ', '', 'B.com ( corporate secretaryship)', '2023', 75.00, '', 1, '2025-08-06 06:04:37', 0, NULL, 0, NULL, 1),
(33916, 26262, '1', ' benglore city university', '', '', '2020', 55.00, '', 1, '2025-08-06 06:13:18', 0, NULL, 0, NULL, 1),
(33917, 26262, '2', 'benglore city university', '', '', '2022', 66.00, '', 1, '2025-08-06 06:14:27', 0, NULL, 0, NULL, 1),
(33918, 26262, '3', 'Bangalore university', '', 'bcom ', '2025', 85.00, '', 1, '2025-08-06 06:16:01', 0, NULL, 0, NULL, 1),
(33919, 26272, '3', 'Alagappa university ', '', 'BCA', '2022', 56.00, '', 1, '2025-08-06 06:22:27', 0, NULL, 0, NULL, 1),
(33920, 26273, '3', 'Aalim Muhammed Salegh college of Engineering ', '', 'B.E ECE ', '2025', 8.60, '', 1, '2025-08-06 06:33:45', 1, '2025-08-06 06:35:43', 0, NULL, 1),
(33921, 26273, '2', 'Nazareth Matriculation higher secondary school ', '', '', '2021', 82.00, '', 1, '2025-08-06 06:35:03', 0, NULL, 0, NULL, 1),
(33922, 26273, '1', 'Nazareth Matriculation higher secondary school ', '', '', '2019', 77.00, '', 1, '2025-08-06 06:36:01', 0, NULL, 0, NULL, 1),
(33923, 26276, '3', 'Justice basheer syeed Ahmed college for womens', '', 'BA english ', '2024', 75.00, '', 1, '2025-08-06 08:25:30', 0, NULL, 0, NULL, 1),
(33924, 26278, '3', 'Justice basheer ahamed sayeed college for women', '', 'B.A English', '2024', 75.00, '', 1, '2025-08-06 09:50:59', 0, NULL, 0, NULL, 1),
(33925, 26277, '3', 'Jawaharlal Nehru Technological University ', '', 'Bachelor of Technology ', '2025', 80.00, '', 1, '2025-08-06 10:10:32', 0, NULL, 0, NULL, 1),
(33926, 26274, '5', 'Board', '', 'Pursuing ', '2023', 80.00, '', 1, '2025-08-06 10:11:56', 0, NULL, 0, NULL, 1),
(33927, 26275, '1', 'state board of tamilnadu', '', '', '2016', 78.00, '', 1, '2025-08-06 10:30:16', 0, NULL, 0, NULL, 1),
(33928, 26275, '2', 'state board of tamilnadu', '', '', '2018', 64.00, '', 1, '2025-08-06 10:30:54', 0, NULL, 0, NULL, 1),
(33929, 26275, '3', 'anna university', '', 'b.e computer science and engineering', '2022', 79.00, '', 1, '2025-08-06 10:32:00', 0, NULL, 0, NULL, 1),
(33930, 26279, '3', 'Bharathidasan University', '', 'Bsc computer Science', '2025', 55.00, '', 1, '2025-08-06 10:45:42', 0, NULL, 0, NULL, 1),
(33931, 26281, '3', 'Rani chennamma University ', '', 'Bsc', '2025', 92.30, '', 1, '2025-08-06 12:37:53', 0, NULL, 0, NULL, 1),
(33932, 26283, '3', 'Madras university', '', 'B. Com (General) ', '2025', 80.02, '', 1, '2025-08-06 02:33:00', 0, NULL, 0, NULL, 1),
(33933, 26268, '3', 'nmsssvn', '', 'bsc information technology', '2022', 77.00, '', 1, '2025-08-06 02:57:11', 0, NULL, 0, NULL, 1),
(33934, 26286, '3', 'Bangalore University ', '', 'Bca', '2022', 68.00, '', 1, '2025-08-07 03:58:04', 0, NULL, 0, NULL, 1),
(33935, 26089, '4', 'MDSU', '', 'Master of Arts ', '2015', 50.00, '', 1, '2025-08-07 04:52:14', 0, NULL, 0, NULL, 1),
(33936, 26280, '3', 'Madras ', '', 'Bsc chemistry ', '2023', 69.00, '', 1, '2025-08-07 05:00:35', 0, NULL, 0, NULL, 1),
(33937, 26289, '3', 'Bharathidasan University ', '', 'Bsc Computer science ', '2024', 75.60, '', 1, '2025-08-07 05:06:47', 0, NULL, 0, NULL, 1),
(33938, 26290, '3', 'University of Madras ', '', 'BSC(computer science)', '2025', 48.00, '', 1, '2025-08-07 05:26:29', 0, NULL, 0, NULL, 1),
(33939, 26288, '3', 'University of Madras ', '', 'B.A ENGLISH ', '2025', 59.00, '', 1, '2025-08-07 05:26:50', 0, NULL, 0, NULL, 1),
(33940, 26287, '1', 'Banglore north university ', '', '', '2023', 60.00, '', 1, '2025-08-07 05:36:07', 0, NULL, 0, NULL, 1),
(33941, 26287, '2', 'Board of intermediate education ', '', '', '2020', 45.00, '', 1, '2025-08-07 05:39:26', 0, NULL, 0, NULL, 1),
(33942, 26287, '3', 'Banglore north university ', '', 'B.com', '2023', 60.00, '', 1, '2025-08-07 05:40:05', 0, NULL, 0, NULL, 1),
(33943, 26291, '3', 'Bharathidasan', '', 'Bcom', '2021', 79.00, '', 1, '2025-08-07 06:09:56', 0, NULL, 0, NULL, 1),
(33944, 26294, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 80.00, '', 1, '2025-08-07 06:11:01', 0, NULL, 0, NULL, 1),
(33945, 26292, '3', 'st peter\'s college deemed university', '', 'B .com', '2025', 70.00, '', 1, '2025-08-07 06:14:21', 0, NULL, 0, NULL, 1),
(33946, 25973, '3', 'sri ramkrishna institute of technology', '', 'b.e computer science engineering', '2024', 73.00, '', 1, '2025-08-07 06:20:46', 0, NULL, 0, NULL, 1),
(33947, 26293, '4', 'Madras University ', '', 'MA English literature ', '2025', 70.00, '', 1, '2025-08-07 06:28:37', 0, NULL, 0, NULL, 1),
(33948, 26234, '3', 'dg vaishnav', '', 'bsc physics with compu application', '2025', 66.00, '', 1, '2025-08-07 06:37:26', 0, NULL, 0, NULL, 1),
(33949, 26295, '4', 'rdpr university gadag', '', 'msc', '2020', 78.00, '', 1, '2025-08-07 06:39:54', 0, NULL, 0, NULL, 1),
(33950, 26301, '3', 'Madras University ', '', 'BSC', '2024', 70.00, '', 1, '2025-08-07 07:22:32', 0, NULL, 0, NULL, 1),
(33951, 26298, '3', 'anna university', '', 'b.e', '2025', 78.00, '', 1, '2025-08-07 07:24:33', 0, NULL, 0, NULL, 1),
(33952, 26296, '1', 'State board', '', '', '2012', 6.60, '', 1, '2025-08-07 07:24:37', 0, NULL, 0, NULL, 1),
(33953, 26296, '5', 'Sairam polytechnic college ', '', 'Diploma in Mechanical engineering ', '2015', 72.00, '', 1, '2025-08-07 07:25:23', 0, NULL, 0, NULL, 1),
(33954, 26296, '3', 'Anna University ', '', 'BE ', '2019', 6.60, '', 1, '2025-08-07 07:25:59', 0, NULL, 0, NULL, 1),
(33955, 26297, '3', 'Anna university ', '', 'BE computer science ', '2025', 75.00, '', 1, '2025-08-07 07:27:58', 0, NULL, 0, NULL, 1),
(33956, 26303, '3', 'University of Madras ', '', '', '2025', 7.00, '', 1, '2025-08-07 12:18:21', 1, '2025-08-07 12:19:00', 0, NULL, 1),
(33957, 26304, '1', 'Kseeb', '', '', '2015', 58.24, '', 1, '2025-08-07 12:35:49', 0, NULL, 0, NULL, 1),
(33958, 26304, '5', 'Dte karnataka', '', 'DIPLOMA IN AUTOMOBILE ENGG', '2019', 69.00, '', 1, '2025-08-07 12:36:36', 0, NULL, 0, NULL, 1),
(33959, 26305, '3', 'Madras University ', '', 'B sc zoology ', '2025', 50.00, '', 1, '2025-08-08 04:40:28', 0, NULL, 0, NULL, 1),
(33960, 26306, '3', 'University of Madras ', '', 'Bca', '2025', 66.50, '', 1, '2025-08-08 05:29:40', 0, NULL, 0, NULL, 1),
(33961, 26308, '1', 'Kseeb', '', '', '2013', 69.00, '', 1, '2025-08-08 05:37:33', 0, NULL, 0, NULL, 1),
(33962, 26308, '5', 'Bangalore university', '', 'Ece', '2016', 72.00, '', 1, '2025-08-08 05:38:16', 0, NULL, 0, NULL, 1),
(33963, 26308, '3', 'Bangalore university', '', 'BE', '2019', 68.00, '', 1, '2025-08-08 05:40:05', 0, NULL, 0, NULL, 1),
(33964, 26308, '3', 'Bangalore university', '', 'BE', '2019', 68.00, '', 1, '2025-08-08 05:40:06', 1, '2025-08-08 05:40:19', 0, NULL, 0),
(33965, 26302, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 64.40, '', 1, '2025-08-08 05:54:08', 0, NULL, 0, NULL, 1),
(33966, 26309, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 68.40, '', 1, '2025-08-08 05:59:22', 0, NULL, 0, NULL, 1),
(33967, 26307, '3', 'Madras University ', '', 'Bcom.cs', '2024', 67.00, '', 1, '2025-08-08 06:00:17', 0, NULL, 0, NULL, 1),
(33968, 26310, '3', 'Madras university', '', 'Bca', '2020', 79.00, '', 1, '2025-08-08 06:10:58', 0, NULL, 0, NULL, 1),
(33969, 26084, '4', 'Annamalai University ', '', 'MA English ', '2025', 74.00, '', 1, '2025-08-08 06:20:28', 0, NULL, 0, NULL, 1),
(33970, 26312, '3', 'madras uni ', '', 'b.com', '2025', 73.00, '', 1, '2025-08-08 06:58:00', 0, NULL, 0, NULL, 1),
(33971, 26313, '3', 'Chennai institute of technology ', '', 'B.e', '2020', 70.00, '', 1, '2025-08-08 07:12:21', 0, NULL, 0, NULL, 1),
(33972, 26314, '3', 'Madras University ', '', 'B.com (cs)', '2025', 50.00, '', 1, '2025-08-08 07:31:58', 0, NULL, 0, NULL, 1),
(33973, 26314, '1', 'State board ', '', '', '2020', 46.00, '', 1, '2025-08-08 07:36:13', 0, NULL, 0, NULL, 1),
(33974, 26314, '2', 'Sate board ', '', '', '2022', 47.00, '', 1, '2025-08-08 07:36:47', 0, NULL, 0, NULL, 1),
(33975, 26315, '3', 'Anna University ', '', 'B Tech IT', '2025', 69.00, '', 1, '2025-08-08 07:42:41', 0, NULL, 0, NULL, 1),
(33976, 26316, '3', 'St.Joseph\'s Institute Of Technology ', '', 'B.Tech', '2025', 75.00, '', 1, '2025-08-08 09:25:12', 0, NULL, 0, NULL, 1),
(33977, 26317, '3', 'Vels  university', '', 'BCA', '2025', 7.50, '', 1, '2025-08-08 12:02:15', 1, '2025-08-08 12:03:39', 0, NULL, 0),
(33978, 26317, '2', 'State ', '', '', '2023', 90.00, '', 1, '2025-08-08 12:03:16', 1, '2025-08-08 12:03:40', 0, NULL, 0),
(33979, 26317, '1', 'State', '', '', '2020', 65.00, '', 1, '2025-08-08 12:06:13', 0, NULL, 0, NULL, 1),
(33980, 26317, '2', 'State', '', '', '2022', 90.00, '', 1, '2025-08-08 12:06:32', 0, NULL, 0, NULL, 1),
(33981, 26317, '3', 'Vels university', '', 'BCA(Data science) ', '2025', 7.50, '', 1, '2025-08-08 12:07:00', 0, NULL, 0, NULL, 1),
(33982, 26319, '3', 'Madras University ', '', 'Bsc', '2025', 62.00, '', 1, '2025-08-08 01:24:47', 0, NULL, 0, NULL, 1),
(33983, 26318, '3', 'university', '', 'bca', '2024', 75.00, '', 1, '2025-08-08 02:19:47', 0, NULL, 0, NULL, 1),
(33984, 26320, '3', 'Madras University ', '', 'BBA', '2025', 7.80, '', 1, '2025-08-09 12:41:19', 0, NULL, 0, NULL, 1),
(33985, 26322, '4', 'Madras University ', '', 'MBA(HR)', '2024', 85.00, '', 1, '2025-08-09 06:08:51', 0, NULL, 0, NULL, 1),
(33986, 26321, '3', 'Veltech university ', '', '', '2023', 8.00, '', 1, '2025-08-09 06:08:54', 0, NULL, 0, NULL, 1),
(33987, 26323, '3', 'Madurai Kamaraj University ', '', 'BCA', '2025', 70.00, '', 1, '2025-08-09 06:28:06', 0, NULL, 0, NULL, 1),
(33988, 26324, '4', 'Anna university ', '', 'MBA ', '2025', 85.00, '', 1, '2025-08-09 06:48:32', 0, NULL, 0, NULL, 1),
(33989, 26324, '3', 'Madras university ', '', 'B.com', '2023', 65.00, '', 1, '2025-08-09 06:49:06', 0, NULL, 0, NULL, 1),
(33990, 26324, '2', 'Board', '', '', '2020', 74.00, '', 1, '2025-08-09 06:50:10', 0, NULL, 0, NULL, 1),
(33991, 26324, '1', 'Board ', '', '', '2017', 71.00, '', 1, '2025-08-09 06:50:50', 0, NULL, 0, NULL, 1),
(33992, 26325, '3', 'Pridt', '', '', '2021', 62.00, '', 1, '2025-08-09 08:01:06', 0, NULL, 0, NULL, 1),
(33993, 26325, '1', 'Central board', '', '', '2012', 62.00, '', 1, '2025-08-09 08:01:36', 0, NULL, 0, NULL, 1),
(33994, 26325, '2', 'State', '', '', '2014', 63.00, '', 1, '2025-08-09 08:01:52', 0, NULL, 0, NULL, 1),
(33995, 26327, '3', 'Mekapati rajamohan Reddy institute of technology for engineering', '', 'b.tech', '2023', 79.57, '', 1, '2025-08-09 08:35:05', 0, NULL, 0, NULL, 1),
(33996, 26328, '3', 'srm university', '', 'b.sc', '2025', 60.00, '', 1, '2025-08-09 09:45:25', 0, NULL, 0, NULL, 1),
(33997, 26329, '3', 'THE NEW. COLLEGE', '', 'BCOM ISM', '2025', 65.00, '', 1, '2025-08-09 09:50:12', 0, NULL, 0, NULL, 1),
(33998, 25881, '3', 'University of Madras ', '', 'B. Com corporate secrataryship', '2025', 68.00, '', 1, '2025-08-09 09:52:19', 0, NULL, 0, NULL, 1),
(33999, 26331, '3', 'Madras University ', '', 'B. Com', '2025', 65.00, '', 1, '2025-08-09 11:29:14', 0, NULL, 0, NULL, 1),
(34000, 26332, '4', 'Bharathidasan University ', '', 'M.com CA', '2025', 67.00, '', 1, '2025-08-10 10:20:19', 0, NULL, 0, NULL, 1),
(34001, 26335, '3', 'Anna University ', '', 'BE CSE ', '2025', 72.30, '', 1, '2025-08-11 04:21:37', 0, NULL, 0, NULL, 1),
(34002, 26333, '3', 'Anna University ', '', 'BE', '2024', 70.00, '', 1, '2025-08-11 04:33:46', 0, NULL, 0, NULL, 1),
(34003, 26336, '1', 'state board of tamilnadu', '', '', '2019', 87.00, '', 1, '2025-08-11 05:34:54', 0, NULL, 0, NULL, 1),
(34004, 26336, '2', 'state board of tamilnadu', '', '', '2021', 88.00, '', 1, '2025-08-11 05:35:21', 0, NULL, 0, NULL, 1),
(34005, 26336, '3', 'anna university affiliated', '', 'b. e', '2025', 77.00, '', 1, '2025-08-11 05:36:33', 0, NULL, 0, NULL, 1),
(34006, 26338, '4', 'Thiruvalluvar university ', '', 'Bachelor of computer application ', '2024', 71.00, '', 1, '2025-08-11 06:07:16', 0, NULL, 0, NULL, 1),
(34007, 26337, '3', 'Thiruvalluvar university ', '', 'Bachelor of computer application ', '2024', 74.00, '', 1, '2025-08-11 06:10:07', 0, NULL, 0, NULL, 1),
(34008, 26340, '3', 'Mononmaniam Sundharanar University ', '', 'B. Com', '2024', 75.00, '', 1, '2025-08-11 06:43:32', 0, NULL, 0, NULL, 1),
(34009, 26339, '3', 'Madras University ', '', 'B.com', '2025', 75.00, '', 1, '2025-08-11 06:52:06', 0, NULL, 0, NULL, 1),
(34010, 26341, '3', 'Bharadhidasan University ', '', 'B.com', '2025', 69.00, '', 1, '2025-08-11 07:13:56', 0, NULL, 0, NULL, 1),
(34011, 26342, '3', 'Jain university bangalore ', '', 'B.com (corporate accounts)', '2024', 87.00, '', 1, '2025-08-11 09:14:56', 0, NULL, 0, NULL, 1),
(34012, 26346, '1', 'state board of tamilnadu', '', '', '2019', 80.00, '', 1, '2025-08-12 03:24:13', 0, NULL, 0, NULL, 1),
(34013, 26346, '2', 'state board of tamilnadu', '', '', '2021', 84.00, '', 1, '2025-08-12 03:24:54', 0, NULL, 0, NULL, 1),
(34014, 26346, '3', 'anna university chennai', '', 'b.e', '2025', 8.10, '', 1, '2025-08-12 03:25:43', 0, NULL, 0, NULL, 1),
(34015, 26348, '3', 'Gulbarga university', '', 'National degree college sindhanur', '2022', 67.00, '', 1, '2025-08-12 07:24:10', 0, NULL, 0, NULL, 1),
(34016, 26349, '3', 'University of Madras ', '', 'BCA', '2025', 7.20, '', 1, '2025-08-12 07:45:20', 0, NULL, 0, NULL, 1),
(34017, 26351, '3', 'Annamalai University ', '', 'Bcom', '2025', 70.00, '', 1, '2025-08-12 07:48:31', 0, NULL, 0, NULL, 1),
(34018, 26353, '3', 'madras universit ', '', 'b.com', '2019', 61.00, '', 1, '2025-08-12 09:53:37', 0, NULL, 0, NULL, 1),
(34019, 26354, '3', 'Sri Manakula Vinayagar Engineering College ', '', 'b.sc', '2025', 76.00, '', 1, '2025-08-13 05:27:06', 0, NULL, 0, NULL, 1),
(34020, 26355, '5', 'State Board of Tamilnadu educational department ', '', '', '2025', 68.00, '', 1, '2025-08-13 05:36:59', 0, NULL, 0, NULL, 1),
(34021, 26357, '3', 'Board ', '', 'Bsc computer science ', '2025', 65.00, '', 1, '2025-08-13 05:49:16', 0, NULL, 0, NULL, 1),
(34022, 26359, '3', 'sathyabama university', '', 'b.com general', '2024', 7.60, '', 1, '2025-08-13 06:06:29', 0, NULL, 0, NULL, 1),
(34023, 26356, '2', 'state board', '', '', '2019', 54.80, '', 1, '2025-08-13 06:06:57', 0, NULL, 0, NULL, 1),
(34024, 26356, '1', 'state board', '', '', '2021', 69.00, '', 1, '2025-08-13 06:07:22', 0, NULL, 0, NULL, 1),
(34025, 26356, '3', 'annamalai university', '', 'ba english', '2024', 6.00, '', 1, '2025-08-13 06:08:25', 0, NULL, 0, NULL, 1),
(34026, 26356, '4', 'bharathidasan university', '', 'ma ', '2026', 6.00, '', 1, '2025-08-13 06:09:01', 0, NULL, 0, NULL, 1),
(34027, 26360, '3', 'Kings Engineering College ', '', 'B.E', '2023', 7.48, '', 1, '2025-08-13 06:09:22', 0, NULL, 0, NULL, 1),
(34028, 26358, '3', 'JNN arts and science college ', '', 'B.com', '2025', 64.00, '', 1, '2025-08-13 06:18:32', 0, NULL, 0, NULL, 1),
(34029, 26364, '3', 'Manonmaniam sundaranar university of college ', '', 'B.sc computer science ', '2022', 8.50, '', 1, '2025-08-13 06:28:40', 0, NULL, 0, NULL, 1),
(34030, 26363, '3', 'ANNA UNIVERSITY ', '', 'B.E COMPUTER SCIENCE ', '2024', 7.62, '', 1, '2025-08-13 06:33:10', 0, NULL, 0, NULL, 1),
(34031, 26363, '5', 'BHARATHIDASAN UNIVERSITY ', '', 'DIPLOMA IN COMPUTER SCIENCE ', '2021', 8.32, '', 1, '2025-08-13 06:34:22', 0, NULL, 0, NULL, 1),
(34032, 26363, '2', 'STATE BOARD', '', '', '2019', 75.00, '', 1, '2025-08-13 06:34:57', 0, NULL, 0, NULL, 1),
(34033, 26361, '3', 'Anna university ', '', 'B.com', '2022', 75.00, '', 1, '2025-08-13 06:41:22', 0, NULL, 0, NULL, 1),
(34034, 26362, '3', 'Anna University ', '', 'BE-ECE', '2024', 8.50, '', 1, '2025-08-13 06:41:55', 0, NULL, 0, NULL, 1),
(34035, 26366, '4', 'University of madras', '', 'MCA', '2025', 71.00, '', 1, '2025-08-13 09:08:27', 0, NULL, 0, NULL, 1),
(34036, 26366, '3', 'University of madras', '', 'BCA', '2023', 69.00, '', 1, '2025-08-13 09:09:25', 0, NULL, 0, NULL, 1),
(34037, 26367, '3', 'b.com', '', 'general', '2020', 58.00, '', 1, '2025-08-13 09:41:27', 0, NULL, 0, NULL, 1),
(34038, 26368, '1', 'karnataka secondary education examination board', '', '', '2019', 75.00, '', 1, '2025-08-14 04:59:10', 0, NULL, 0, NULL, 1),
(34039, 26368, '3', 'bangalore ubiversity', '', 'bcom', '2024', 5.99, '', 1, '2025-08-14 05:02:27', 0, NULL, 0, NULL, 1),
(34040, 26368, '2', 'bangalore pre univesity', '', '', '2022', 68.66, '', 1, '2025-08-14 05:04:29', 0, NULL, 0, NULL, 1),
(34041, 26372, '3', 'Madras University ', '', 'B.com general ', '2024', 7.60, '', 1, '2025-08-14 05:29:08', 0, NULL, 0, NULL, 1),
(34042, 26369, '3', 'Anna university ', '', 'Be', '2025', 75.00, '', 1, '2025-08-14 05:32:01', 0, NULL, 0, NULL, 1),
(34043, 26373, '4', 'ANNA UNIVERSITY ', '', 'MBA', '2024', 7.00, '', 1, '2025-08-14 05:32:12', 0, NULL, 0, NULL, 1),
(34044, 26370, '3', 'Apollo arts and science college ', '', 'B.com', '2020', 75.00, '', 1, '2025-08-14 05:40:31', 0, NULL, 0, NULL, 1),
(34045, 26374, '3', 'University ', '', 'B. Sc computer science ', '2025', 81.00, '', 1, '2025-08-14 06:33:17', 0, NULL, 0, NULL, 1),
(34046, 26375, '3', 'University of madras ', '', 'BSC computer science ', '2025', 72.00, '', 1, '2025-08-14 06:40:12', 0, NULL, 0, NULL, 1),
(34047, 26376, '3', 'Medrass university ', '', 'B. Com', '2022', 75.00, '', 1, '2025-08-14 07:48:11', 0, NULL, 0, NULL, 1),
(34048, 26378, '3', 'Bharathi women college ', '', 'Bsc geography ', '2023', 87.00, '', 1, '2025-08-14 09:32:27', 0, NULL, 0, NULL, 1),
(34049, 26382, '2', 'Thiruvalluvar university ', '', '', '2025', 86.00, '', 1, '2025-08-14 03:05:35', 0, NULL, 0, NULL, 1),
(34050, 26382, '3', 'Thiruvalluvar university ', '', 'BCA computer application ', '2025', 86.00, '', 1, '2025-08-14 03:09:46', 0, NULL, 0, NULL, 1),
(34051, 26380, '3', 'University of Madras ', '', 'BBA', '2025', 70.00, '', 1, '2025-08-15 11:20:14', 0, NULL, 0, NULL, 1),
(34052, 26384, '3', 'Anna University ', '', 'BE-CSE', '2025', 85.00, '', 1, '2025-08-16 05:26:56', 0, NULL, 0, NULL, 1),
(34053, 26384, '1', 'State', '', '', '2019', 90.00, '', 1, '2025-08-16 05:27:34', 0, NULL, 0, NULL, 1),
(34054, 26384, '2', 'State', '', '', '2021', 90.60, '', 1, '2025-08-16 05:28:05', 0, NULL, 0, NULL, 1),
(34055, 15276, '3', 'Anna university ', '', 'BE ECE', '2023', 65.00, '', 1, '2025-08-16 05:57:08', 0, NULL, 0, NULL, 1),
(34056, 15276, '1', 'State board ', '', '', '2017', 81.00, '', 1, '2025-08-16 05:58:13', 0, NULL, 0, NULL, 1),
(34057, 26385, '1', 'Govt High school Reddipalayam ', '', 'MBA', '2016', 81.00, '', 1, '2025-08-16 05:58:46', 0, NULL, 0, NULL, 1),
(34058, 26386, '4', 'Bharathidhasan university ', '', 'MBA (FINANCE)', '2025', 84.00, '', 1, '2025-08-16 06:09:13', 0, NULL, 0, NULL, 1),
(34059, 26386, '3', 'Bharathidhasan university ', '', 'B.com (commerce)', '2023', 81.00, '', 1, '2025-08-16 06:10:01', 0, NULL, 0, NULL, 1),
(34060, 26388, '3', 'Madras University ', '', 'B.com (general)', '2025', 62.00, '', 1, '2025-08-16 06:22:53', 0, NULL, 0, NULL, 1),
(34061, 26392, '4', 'Bharathidhasan university ', '', 'MBA(finance)', '2023', 76.00, '', 1, '2025-08-16 07:33:41', 0, NULL, 0, NULL, 1),
(34062, 26391, '4', 'Bharathidhasan university ', '', 'MBA (HR)', '2023', 73.00, '', 1, '2025-08-16 07:47:02', 0, NULL, 0, NULL, 1),
(34063, 26390, '4', 'Bharadhidasan', '', 'MBA', '2023', 70.00, '', 1, '2025-08-16 07:47:53', 0, NULL, 0, NULL, 1),
(34064, 26398, '3', 'Thiruvalluvar University', '', 'BCA( Computer Application) ', '2025', 89.00, '', 1, '2025-08-17 03:56:53', 0, NULL, 0, NULL, 1),
(34065, 26397, '3', 'Thiruvallur University ', '', 'BCA', '2025', 68.00, '', 1, '2025-08-17 03:58:14', 0, NULL, 0, NULL, 1),
(34066, 26400, '3', 'University ', '', 'B.com', '2025', 60.00, '', 1, '2025-08-18 04:29:21', 0, NULL, 0, NULL, 1),
(34067, 26401, '3', 'Bharathi women\'s college (Autonomous)', '', 'B A History ', '2020', 64.50, '', 1, '2025-08-18 04:51:49', 0, NULL, 0, NULL, 1),
(34068, 26401, '2', 'State board ', '', '', '2017', 46.80, '', 1, '2025-08-18 04:56:27', 0, NULL, 0, NULL, 1),
(34069, 26401, '1', 'State board ', '', '', '2015', 67.40, '', 1, '2025-08-18 04:57:00', 0, NULL, 0, NULL, 1),
(34070, 26377, '1', 'm.e.s razeena', '', '', '2021', 60.00, '', 1, '2025-08-18 05:18:07', 1, '2025-08-18 05:21:12', 0, NULL, 1),
(34071, 26377, '3', 'mgr univers ', '', 'bachelor of computer application ', '2024', 60.00, '', 1, '2025-08-18 05:22:27', 0, NULL, 0, NULL, 1),
(34072, 26404, '3', 'Manonmaniam Sundaranar University', '', 'Bsc visual communication ', '2021', 70.00, '', 1, '2025-08-18 05:49:17', 0, NULL, 0, NULL, 1),
(34073, 26402, '3', 'Bharadhidasan ', '', 'Bcom', '2023', 75.00, '', 1, '2025-08-18 05:57:07', 0, NULL, 0, NULL, 1),
(34074, 26399, '3', 'Madras University ', '', 'B.com', '2024', 65.00, '', 1, '2025-08-18 06:14:56', 0, NULL, 0, NULL, 1),
(34075, 26408, '4', 'Madha institute of engineering and technology ', '', 'BE computer science and engineering ', '2024', 79.00, '', 1, '2025-08-18 06:15:39', 0, NULL, 0, NULL, 1),
(34076, 26399, '1', 'State board ', '', '', '2019', 46.00, '', 1, '2025-08-18 06:15:46', 0, NULL, 0, NULL, 1),
(34077, 26399, '2', 'State board ', '', '', '2021', 65.00, '', 1, '2025-08-18 06:16:20', 0, NULL, 0, NULL, 1),
(34078, 26407, '3', 'Anna University ', '', 'B Tech ', '2022', 70.00, '', 1, '2025-08-18 06:19:11', 1, '2025-08-18 06:21:24', 0, NULL, 1),
(34079, 26407, '1', 'ST ARULANANDAR HIGHER SECONDARY SCHOOL ', '', '', '2016', 73.00, '', 1, '2025-08-18 06:20:23', 0, NULL, 0, NULL, 1),
(34080, 26407, '2', 'Laurel Higher Secondary School ', '', '', '2018', 83.00, '', 1, '2025-08-18 06:20:47', 0, NULL, 0, NULL, 1),
(34081, 26408, '4', 'Madha institute of engineering and technology ', '', 'BE CSE', '2024', 79.00, '', 1, '2025-08-18 06:21:06', 0, NULL, 0, NULL, 1),
(34082, 26409, '3', 'Madha institute of engineering and technology ', '', 'BE CSE', '2024', 79.00, '', 1, '2025-08-18 06:31:51', 0, NULL, 0, NULL, 1),
(34083, 26411, '4', 'Bharadhidasan University ', '', 'MBA', '2025', 79.00, '', 1, '2025-08-18 06:35:23', 0, NULL, 0, NULL, 1),
(34084, 26410, '3', 'DR. M. G. R. EDUCATIONAL AND RESEARCH INSTITUTE', '', 'BCA', '2025', 76.00, '', 1, '2025-08-18 06:45:22', 0, NULL, 0, NULL, 1),
(34085, 26406, '3', 'Thiruvalluvar university ', '', 'B.com', '2025', 80.00, '', 1, '2025-08-18 07:24:50', 0, NULL, 0, NULL, 1),
(34086, 26412, '3', 'bharathidasan university', '', 'bcom', '2025', 59.00, '', 1, '2025-08-18 07:44:46', 0, NULL, 0, NULL, 1),
(34087, 26414, '3', 'Parks college of Art and science', '', 'B. Com', '2024', 50.00, '', 1, '2025-08-18 07:48:37', 0, NULL, 0, NULL, 1),
(34088, 26415, '3', 'Madras University ', '', 'B.com general', '2019', 68.00, '', 1, '2025-08-18 08:32:56', 0, NULL, 0, NULL, 1),
(34089, 26417, '3', 'Madras University ', '', 'Bsc-copmuter science ', '2025', 80.00, '', 1, '2025-08-18 09:51:23', 1, '2025-08-18 09:52:19', 0, NULL, 0),
(34090, 26416, '3', 'Mohmmad sathak college of arts and science ', '', 'B.com accounting and finance ', '2025', 80.00, '', 1, '2025-08-18 09:51:36', 0, NULL, 0, NULL, 1),
(34091, 26417, '1', 'State board ', '', '', '2020', 60.00, '', 1, '2025-08-18 09:53:37', 0, NULL, 0, NULL, 1),
(34092, 26417, '2', 'State board ', '', '', '2022', 78.00, '', 1, '2025-08-18 09:54:33', 0, NULL, 0, NULL, 1),
(34093, 26417, '3', 'Madras University ', '', 'BSC -computer science ', '2025', 80.00, '', 1, '2025-08-18 09:55:28', 0, NULL, 0, NULL, 1),
(34094, 26418, '1', 'State board', '', '', '2020', 79.90, '', 1, '2025-08-18 10:16:32', 0, NULL, 0, NULL, 1),
(34095, 26418, '2', 'State board ', '', '', '2022', 80.00, '', 1, '2025-08-18 10:17:11', 0, NULL, 0, NULL, 1),
(34096, 26418, '3', 'Madras University ', '', 'BCA', '2025', 75.00, '', 1, '2025-08-18 10:17:32', 0, NULL, 0, NULL, 1),
(34097, 26419, '3', 'Sri Shakthi institute of engineering and technology ', '', 'Bachelor of engineering in computer science', '2025', 69.00, '', 1, '2025-08-18 11:11:10', 0, NULL, 0, NULL, 1),
(34098, 26420, '1', 'state board', '', '', '2019', 84.00, '', 1, '2025-08-18 11:35:13', 0, NULL, 0, NULL, 1),
(34099, 26420, '2', 'state board', '', '', '2021', 87.00, '', 1, '2025-08-18 11:35:41', 0, NULL, 0, NULL, 1),
(34100, 26420, '3', 'sethu institute of technology', '', 'b.e', '2025', 80.00, '', 1, '2025-08-18 11:36:34', 0, NULL, 0, NULL, 1),
(34101, 26424, '3', 'Thiruvalluvar university ', '', 'BBA ', '2025', 69.00, '', 1, '2025-08-18 02:44:47', 0, NULL, 0, NULL, 1),
(34102, 26422, '3', 'Madras University ', '', 'B.sc physics ', '2025', 61.00, '', 1, '2025-08-18 04:52:07', 0, NULL, 0, NULL, 1),
(34103, 26428, '3', 'University of madras ', '', 'BCOM ', '2025', 70.00, '', 1, '2025-08-18 07:31:12', 0, NULL, 0, NULL, 1),
(34104, 26429, '3', 'DHANALAKSHMI SRINIVASAN ENGINEERING college ', '', 'B. Tech information technology ', '2021', 75.00, '', 1, '2025-08-19 04:55:30', 0, NULL, 0, NULL, 1),
(34105, 26431, '4', 'Ponnaiyah Ramajayam Institute of science and technology ', '', 'MBA HR ', '2025', 75.00, '', 1, '2025-08-19 05:33:18', 0, NULL, 0, NULL, 1),
(34106, 26427, '3', 'university ', '', 'bsc psychology', '2022', 62.00, '', 1, '2025-08-19 06:23:24', 0, NULL, 0, NULL, 1),
(34107, 26435, '1', 'TamilNadu State Board ', '', '', '2019', 73.00, '', 1, '2025-08-19 06:37:40', 0, NULL, 0, NULL, 1),
(34108, 26423, '4', 'Meenakshi college for women ', '', 'MCA ', '2022', 80.00, '', 1, '2025-08-19 06:40:17', 0, NULL, 0, NULL, 1),
(34109, 26423, '3', 'Dr MGR Janaki college of arts and science for women ', '', 'Bsc computer science ', '2020', 73.00, '', 1, '2025-08-19 06:40:52', 0, NULL, 0, NULL, 1),
(34110, 26436, '3', 'Madras University ', '', 'B.A (English)', '2024', 60.00, '', 1, '2025-08-19 06:45:24', 0, NULL, 0, NULL, 1),
(34111, 26433, '3', 'University of madras', '', 'b.com cs ', '2025', 65.00, '', 1, '2025-08-19 06:50:47', 0, NULL, 0, NULL, 1),
(34112, 26437, '3', 'Madras University ', '', 'B.com(cs )', '2024', 79.00, '', 1, '2025-08-19 06:50:51', 0, NULL, 0, NULL, 1),
(34113, 26438, '4', 'University of Madras ', '', 'MBA HRM', '2024', 82.00, '', 1, '2025-08-19 06:58:30', 0, NULL, 0, NULL, 1),
(34114, 26438, '3', 'University of Madras ', '', 'Bsc Mathematics ', '2022', 84.00, '', 1, '2025-08-19 06:59:33', 0, NULL, 0, NULL, 1),
(34115, 26434, '3', 'University of madras', '', 'b.com', '2025', 65.00, '', 1, '2025-08-19 07:03:13', 0, NULL, 0, NULL, 1),
(34116, 26405, '3', 'Bharadhidhasan university, trichy', '', 'B. SC (mathematics) ', '2025', 80.00, '', 1, '2025-08-19 07:17:07', 0, NULL, 0, NULL, 1),
(34117, 26439, '3', 'Madras university ', '', 'B. Com', '2020', 70.00, '', 1, '2025-08-19 07:22:36', 0, NULL, 0, NULL, 1),
(34118, 26440, '3', 'Azlagappa university ', '', 'Bsc .it ', '2023', 80.00, '', 1, '2025-08-19 07:26:45', 0, NULL, 0, NULL, 1),
(34119, 26381, '3', 'Qmc College', '', 'B. A Sociology', '2021', 86.00, '', 1, '2025-08-19 08:35:16', 0, NULL, 0, NULL, 1),
(34120, 26441, '3', 'Anna University ', '', 'B.E', '2025', 76.00, '', 1, '2025-08-19 09:15:16', 0, NULL, 0, NULL, 1),
(34121, 26442, '3', 'Madurai kamaraj University ', '', 'Bcom cA (computer application)', '2024', 5.80, '', 1, '2025-08-19 09:24:32', 0, NULL, 0, NULL, 1),
(34122, 26444, '1', 'Tamil Nadu board', '', '', '2021', 73.00, '', 1, '2025-08-19 10:07:34', 1, '2025-08-19 10:08:18', 0, NULL, 1),
(34123, 26444, '2', 'Tamil nadu board ', '', '', '2021', 77.00, '', 1, '2025-08-19 10:08:00', 0, NULL, 0, NULL, 1),
(34124, 26444, '3', 'University ', '', 'BTech ', '2025', 85.00, '', 1, '2025-08-19 10:08:38', 0, NULL, 0, NULL, 1),
(34125, 26445, '3', 'Madras University ', '', 'Bcom cs ', '2025', 77.00, '', 1, '2025-08-19 11:37:20', 0, NULL, 0, NULL, 1),
(34126, 26435, '2', 'tamilnadu state board ', '', '', '2021', 77.00, '', 1, '2025-08-19 11:47:10', 0, NULL, 0, NULL, 1),
(34127, 26435, '3', 'Anna University ', '', 'B. E', '2025', 76.00, '', 1, '2025-08-19 11:47:41', 0, NULL, 0, NULL, 1),
(34128, 26446, '3', 'Annamalai University ', '', 'Bachelor of Science ', '2025', 65.00, '', 1, '2025-08-19 12:15:22', 0, NULL, 0, NULL, 1),
(34129, 26450, '4', 'Pes university ', '', 'Btech ', '2024', 59.30, '', 1, '2025-08-19 01:49:47', 0, NULL, 0, NULL, 1),
(34130, 26451, '4', 'crescent university', '', 'mca', '2025', 6.90, '', 1, '2025-08-19 06:03:13', 0, NULL, 0, NULL, 1),
(34131, 26452, '3', 'Bharathidasan University', '', 'Bsc zoology ', '2025', 65.00, '', 1, '2025-08-20 04:23:37', 0, NULL, 0, NULL, 1),
(34132, 26453, '3', 'Bharathidasan University ', '', 'B.com', '2024', 76.00, '', 1, '2025-08-20 05:14:10', 0, NULL, 0, NULL, 1),
(34133, 26426, '3', 'Anna University ', '', 'BE( Computer science and engineering)', '2025', 80.00, '', 1, '2025-08-20 05:19:47', 0, NULL, 0, NULL, 1),
(34134, 26426, '2', 'State Board of Tamilnadu ', '', '', '2021', 81.00, '', 1, '2025-08-20 05:20:03', 0, NULL, 0, NULL, 1),
(34135, 26454, '3', 'Karunya university ', '', 'B tech ', '2024', 55.00, '', 1, '2025-08-20 06:39:34', 0, NULL, 0, NULL, 1),
(34136, 26455, '3', 'St Joseph college', '', 'BCA', '2024', 70.00, '', 1, '2025-08-20 08:12:04', 0, NULL, 0, NULL, 1),
(34137, 26459, '4', 'Belgaum ', '', 'BE', '2018', 55.00, '', 1, '2025-08-20 10:11:22', 0, NULL, 0, NULL, 1),
(34138, 26463, '3', 'University of Madras ', '', 'BCA', '2025', 55.00, '', 1, '2025-08-21 02:08:55', 0, NULL, 0, NULL, 1),
(34139, 26464, '3', 'Agurchand Manmull Jain College', '', 'B.com General ', '2023', 75.00, '', 1, '2025-08-21 05:14:33', 0, NULL, 0, NULL, 1),
(34140, 26464, '2', 'Madras University ', '', '', '2023', 65.00, '', 1, '2025-08-21 05:15:45', 0, NULL, 0, NULL, 1),
(34141, 26458, '3', 'University ', '', 'Bsc', '2021', 80.00, '', 1, '2025-08-21 05:22:58', 0, NULL, 0, NULL, 1),
(34142, 26465, '1', 'State board ', '', '', '2019', 88.80, '', 1, '2025-08-21 05:27:21', 0, NULL, 0, NULL, 1),
(34143, 26465, '2', 'State board ', '', '', '2021', 91.80, '', 1, '2025-08-21 05:27:40', 0, NULL, 0, NULL, 1),
(34144, 26465, '3', 'Anna university (Saveetha Engineering College)', '', 'B.E', '2025', 75.70, '', 1, '2025-08-21 05:28:46', 0, NULL, 0, NULL, 1),
(34145, 26466, '3', 'Anna University ', '', 'Bachelor of computer science engineering ', '2023', 60.00, '', 1, '2025-08-21 05:34:22', 0, NULL, 0, NULL, 1),
(34146, 26468, '3', 'Periyar maniyamai university science and technology ', '', 'Bsc computer science ', '2025', 7.87, '', 1, '2025-08-21 05:44:59', 0, NULL, 0, NULL, 1),
(34147, 26467, '3', 'Alagappa university ', '', 'BA.English Literature ', '2024', 73.00, '', 1, '2025-08-21 06:12:56', 0, NULL, 0, NULL, 1),
(34148, 26461, '3', 'Madras University ', '', 'BBA ', '2023', 72.00, '', 1, '2025-08-21 06:19:59', 0, NULL, 0, NULL, 1),
(34149, 26470, '3', 'Anna University ', '', 'B.tech information Technology ', '2025', 76.00, '', 1, '2025-08-21 06:29:15', 0, NULL, 0, NULL, 1),
(34150, 26470, '1', 'State board ', '', '', '2019', 72.00, '', 1, '2025-08-21 06:29:35', 0, NULL, 0, NULL, 1),
(34151, 26470, '2', 'State board ', '', '', '2021', 79.00, '', 1, '2025-08-21 06:29:50', 0, NULL, 0, NULL, 1),
(34152, 26471, '3', 'AMC engineering college ', '', 'Be', '2025', 6.50, '', 1, '2025-08-21 07:05:00', 0, NULL, 0, NULL, 1),
(34153, 26471, '1', 'Ennar school ', '', '', '2019', 69.00, '', 1, '2025-08-21 07:05:33', 0, NULL, 0, NULL, 1),
(34154, 26472, '2', 'University of Madras ', '', '', '2023', 70.00, '', 1, '2025-08-21 07:10:01', 0, NULL, 0, NULL, 1),
(34155, 26473, '3', 'Anna university', '', 'B. Tech', '2024', 80.00, '', 1, '2025-08-21 08:05:08', 0, NULL, 0, NULL, 1),
(34156, 26474, '1', 'ananthapuram', '', '', '2017', 85.00, '', 1, '2025-08-21 09:04:27', 0, NULL, 0, NULL, 1),
(34157, 26474, '2', 'andhra pradesh', '', '', '2019', 87.00, '', 1, '2025-08-21 09:05:11', 0, NULL, 0, NULL, 1),
(34158, 26474, '3', 'anantapur', '', 'bpharma', '2024', 78.50, '', 1, '2025-08-21 09:06:09', 0, NULL, 0, NULL, 1),
(34159, 26475, '3', 'Karnataka University Dharwad ', '', 'First grade college Bhatkal ', '2018', 71.00, '', 1, '2025-08-21 09:06:51', 0, NULL, 0, NULL, 1),
(34160, 26481, '4', 'Bharathidhasan university ', '', 'MBA', '2025', 62.00, '', 1, '2025-08-22 04:59:53', 0, NULL, 0, NULL, 1),
(34161, 26480, '3', 'Anna university ', '', 'B.E', '2025', 69.60, '', 1, '2025-08-22 05:16:22', 0, NULL, 0, NULL, 1),
(34162, 26482, '3', 'Arjun college of technology ', '', 'BE.Mechanical Engineering ', '2020', 65.00, '', 1, '2025-08-22 05:17:46', 0, NULL, 0, NULL, 1),
(34163, 26483, '3', 'anna university affiliated ', '', 'bachelor of computer science engineering', '2024', 84.00, '', 1, '2025-08-22 05:35:12', 0, NULL, 0, NULL, 1),
(34164, 26487, '3', 'madras university', '', 'b.com cs', '2022', 77.00, '', 1, '2025-08-22 05:47:18', 0, NULL, 0, NULL, 1),
(34165, 26486, '3', 'University of Madras ', '', 'BA tamil literature ', '2025', 69.00, '', 1, '2025-08-22 05:48:05', 0, NULL, 0, NULL, 1),
(34166, 26488, '3', 'madras university', '', 'b.com ', '2023', 85.00, '', 1, '2025-08-22 06:54:58', 0, NULL, 0, NULL, 1),
(34167, 26488, '4', 'madras university', '', 'm.com', '2025', 87.00, '', 1, '2025-08-22 06:55:35', 0, NULL, 0, NULL, 1),
(34168, 26488, '4', 'madras university', '', 'm.com', '2025', 87.00, '', 1, '2025-08-22 06:55:35', 0, NULL, 0, NULL, 1),
(34169, 26489, '3', 'madras university', '', 'b.com', '2021', 89.00, '', 1, '2025-08-22 07:19:07', 0, NULL, 0, NULL, 1),
(34170, 26490, '3', 'St Thomas College of Arts and science ', '', 'BCA', '2025', 80.00, '', 1, '2025-08-22 09:16:10', 0, NULL, 0, NULL, 1),
(34171, 26492, '3', 'University of Madras ', '', 'B.com corporate secretaryship', '2025', 62.00, '', 1, '2025-08-22 10:31:07', 0, NULL, 0, NULL, 1),
(34172, 26494, '3', 'Bangalore University ', '', 'B.com', '2023', 86.00, '', 1, '2025-08-22 12:28:09', 0, NULL, 0, NULL, 1),
(34173, 26497, '3', 'University of Madras ', '', 'B.A english ', '2025', 62.00, '', 1, '2025-08-22 04:41:59', 0, NULL, 0, NULL, 1),
(34174, 26493, '3', 'Madras University ', '', 'BSC PLANT BIOLOGY AND BIOTECHNOLOGY ', '2025', 50.00, '', 1, '2025-08-23 04:58:56', 0, NULL, 0, NULL, 1),
(34175, 26498, '3', 'Bharathidasan university ', '', 'B.com', '2024', 60.00, '', 1, '2025-08-23 05:05:36', 0, NULL, 0, NULL, 1),
(34176, 26499, '3', 'SRM University ', '', 'B.Sc', '2020', 7.50, '', 1, '2025-08-23 06:29:49', 0, NULL, 0, NULL, 1),
(34177, 26485, '5', 'bharathi university', '', 'iti', '2023', 60.00, '', 1, '2025-08-23 06:39:37', 0, NULL, 0, NULL, 1),
(34178, 26479, '3', 'Dr Ambedkar Govt Law University ', '', 'Bachelor of Legislative Law', '2025', 75.00, '', 1, '2025-08-23 07:16:28', 0, NULL, 0, NULL, 1),
(34179, 26500, '5', 'Karanataka board', '', 'Diploma in paramedical ', '2025', 73.00, '', 1, '2025-08-23 08:02:57', 0, NULL, 0, NULL, 1),
(34180, 26500, '1', 'Karnataka board ', '', '', '2025', 65.00, '', 1, '2025-08-23 08:03:17', 0, NULL, 0, NULL, 1),
(34181, 26503, '3', 'Hindustan college of arts and science Coimbatore ', '', 'BCA', '2024', 75.00, '', 1, '2025-08-23 10:57:06', 0, NULL, 0, NULL, 1),
(34182, 26501, '3', 'S.v. University , Thirupathi', '', 'B.com', '2017', 78.00, '', 1, '2025-08-23 11:58:34', 0, NULL, 0, NULL, 1),
(34183, 26504, '3', 'St Thomas College of Arts and science', '', 'Bachelor of computer Applications(BCA)', '2025', 80.00, '', 1, '2025-08-24 06:10:35', 0, NULL, 0, NULL, 1),
(34184, 26507, '3', 'Bengaluru North University ', '', 'BSC', '2022', 74.00, '', 1, '2025-08-25 04:34:06', 0, NULL, 0, NULL, 1),
(34185, 26507, '2', 'SBMJC KGF', '', 'BSC', '2018', 55.00, '', 1, '2025-08-25 04:37:30', 0, NULL, 0, NULL, 1),
(34186, 26507, '1', 'KSEEB', '', '', '2016', 75.00, '', 1, '2025-08-25 04:38:25', 0, NULL, 0, NULL, 1),
(34187, 26508, '3', 'Bharathidasan university ', '', 'BCA ', '2022', 84.00, '', 1, '2025-08-25 04:55:32', 0, NULL, 0, NULL, 1),
(34188, 26478, '3', 'Dharwad university ', '', 'Psychology ', '2018', 52.00, '', 1, '2025-08-25 05:20:39', 0, NULL, 0, NULL, 1),
(34189, 26509, '3', 'University ', '', 'BCA', '2023', 75.00, '', 1, '2025-08-25 05:21:16', 0, NULL, 0, NULL, 1),
(34190, 26510, '3', 'Madras University ', '', 'Bcom ', '2019', 48.00, '', 1, '2025-08-25 05:32:57', 0, NULL, 0, NULL, 1),
(34191, 26511, '3', 'Kathir college of engineering ', '', 'BE Electronics and communication engineering ', '2025', 70.00, '', 1, '2025-08-25 05:55:57', 0, NULL, 0, NULL, 1),
(34192, 26469, '1', 'chittor', '', '', '2015', 69.00, '', 162, '2025-08-25 03:19:42', 0, NULL, 0, NULL, 1),
(34193, 26469, '2', 'chittoor', '', '', '2018', 72.00, '', 162, '2025-08-25 03:20:09', 0, NULL, 0, NULL, 1),
(34194, 26514, '4', 'SRM Institute of Science and Technology ', '', 'MCA', '2022', 80.00, '', 1, '2025-08-25 09:50:20', 0, NULL, 0, NULL, 1),
(34195, 26469, '3', 'chittoor', '', 'bcom', '2021', 75.00, '', 162, '2025-08-25 03:20:38', 0, NULL, 0, NULL, 1),
(34196, 26514, '3', 'Dr MGR RESEARCH AND DEVELOPMENT ', '', 'BCA', '2020', 65.00, '', 1, '2025-08-25 09:51:12', 0, NULL, 0, NULL, 1),
(34197, 26506, '1', 'lakhangoan', '', '', '2018', 91.20, '', 162, '2025-08-25 03:31:18', 0, NULL, 0, NULL, 1),
(34198, 26506, '2', 'bidar', '', '', '2020', 82.00, '', 162, '2025-08-25 03:31:36', 0, NULL, 0, NULL, 1),
(34199, 26506, '3', 'vtu', '', 'be', '2024', 80.00, '', 162, '2025-08-25 03:32:03', 0, NULL, 0, NULL, 1),
(34200, 26516, '3', 'S.A.Engineering college', '', 'BE Computer science Engineering ', '2024', 8.03, '', 1, '2025-08-26 05:01:33', 0, NULL, 0, NULL, 1),
(34201, 26517, '3', 'Tiruvalluvar university ', '', 'BA Economics ', '2017', 63.00, '', 1, '2025-08-26 05:32:27', 0, NULL, 0, NULL, 1),
(34202, 26518, '2', 'state board', '', '', '2021', 60.00, '', 1, '2025-08-26 06:33:23', 0, NULL, 0, NULL, 1),
(34203, 26521, '3', 'alagappa university', '', 'BBA', '2025', 79.00, '', 1, '2025-08-26 07:19:08', 0, NULL, 0, NULL, 1),
(34204, 26495, '3', 'don bosco college dharmapuri', '', ' B.A Journalism and Mass Communication', '2025', 65.00, '', 1, '2025-08-26 10:06:49', 0, NULL, 0, NULL, 1),
(34205, 26524, '2', 'Tamilnadu state board ', '', '', '2018', 50.00, '', 1, '2025-08-26 10:33:28', 0, NULL, 0, NULL, 1),
(34206, 26524, '1', 'Tamilnadu state board ', '', '', '2016', 67.00, '', 1, '2025-08-26 10:35:16', 0, NULL, 0, NULL, 1),
(34207, 26525, '3', 'Madras University ', '', 'Bsc Visual communication ', '2025', 80.00, '', 1, '2025-08-26 10:52:53', 0, NULL, 0, NULL, 1),
(34208, 26528, '3', 'Anna university ', '', 'B.E', '2023', 72.00, '', 1, '2025-08-27 11:35:01', 0, NULL, 0, NULL, 1),
(34209, 26529, '3', 'University of Madras ', '', 'B.Com General ', '2025', 60.00, '', 1, '2025-08-28 02:46:57', 0, NULL, 0, NULL, 1),
(34210, 26532, '3', 'Madras University ', '', 'B.com', '2021', 65.00, '', 1, '2025-08-28 05:56:57', 0, NULL, 0, NULL, 1),
(34211, 26533, '3', 'State board ', '', 'BA', '2017', 68.00, '', 1, '2025-08-28 05:57:56', 0, NULL, 0, NULL, 1),
(34212, 26535, '3', 'Madras University ', '', '', '2025', 60.00, '', 1, '2025-08-28 07:06:42', 0, NULL, 0, NULL, 1),
(34213, 26537, '3', 'Prist university', '', 'BCA', '2023', 84.00, '', 1, '2025-08-29 05:10:25', 0, NULL, 0, NULL, 1),
(34214, 26538, '1', 'Board of secondary education ', '', '', '2015', 88.00, '', 1, '2025-08-29 05:13:24', 0, NULL, 0, NULL, 1),
(34215, 26538, '3', 'Visvesvaraya technologically university ', '', 'Bachelor of engineering ', '2022', 62.00, '', 1, '2025-08-29 05:14:33', 0, NULL, 0, NULL, 1),
(34216, 26520, '3', 'sri krishna arts and science', '', 'bsc it', '2023', 79.00, '', 1, '2025-08-29 05:23:13', 0, NULL, 0, NULL, 1),
(34217, 26539, '3', 'Thiruvalluvar university ', '', 'BCA', '2025', 80.00, '', 1, '2025-08-29 05:58:22', 0, NULL, 0, NULL, 1),
(34218, 26540, '3', 'Thiruvalluvar university ', '', 'BCA', '2024', 80.00, '', 1, '2025-08-29 05:58:51', 0, NULL, 0, NULL, 1),
(34219, 26542, '4', 'Kuvempu university shankaragatta ', '', 'Mcom', '2025', 66.00, '', 1, '2025-08-29 07:49:20', 0, NULL, 0, NULL, 1),
(34220, 26541, '4', 'Kuvempu university ', '', 'M.com', '2025', 6.69, '', 1, '2025-08-29 07:50:04', 0, NULL, 0, NULL, 1),
(34221, 26536, '4', 'Kuvempu university ', '', 'Mcom', '2025', 66.00, '', 1, '2025-08-29 07:50:51', 0, NULL, 0, NULL, 1),
(34222, 26543, '3', 'Mgr University', '', 'BCA', '2025', 60.00, '', 1, '2025-08-29 11:55:51', 0, NULL, 0, NULL, 1),
(34223, 26544, '3', 'Madras University ', '', 'B.Com( Computer Applications)', '2025', 67.00, '', 1, '2025-08-29 12:48:22', 0, NULL, 0, NULL, 1),
(34224, 26544, '1', 'State board', '', '', '2022', 83.00, '', 1, '2025-08-29 12:49:01', 0, NULL, 0, NULL, 1),
(34225, 26545, '3', 'Bharathidasan university ', '', 'B.com', '2023', 62.00, '', 1, '2025-08-29 03:45:55', 0, NULL, 0, NULL, 1),
(34226, 26545, '4', 'Madras university ', '', 'M.com', '2025', 60.00, '', 1, '2025-08-29 03:46:54', 0, NULL, 0, NULL, 1),
(34227, 26546, '3', 'annamalai university ', '', ' b sc agriculture ', '2023', 84.95, '', 1, '2025-08-30 05:13:24', 0, NULL, 0, NULL, 1),
(34228, 26547, '3', 'Bharathi dhasan university ', '', 'Bachlor computer of application ', '2024', 78.00, '', 1, '2025-08-30 05:21:27', 0, NULL, 0, NULL, 1),
(34229, 26549, '3', 'University', '', 'BCA', '2025', 63.00, '', 1, '2025-08-30 06:04:39', 0, NULL, 0, NULL, 1),
(34230, 26551, '4', 'Bharathidasan University ', '', 'Msc ', '2025', 8.30, '', 1, '2025-08-30 07:01:09', 0, NULL, 0, NULL, 1),
(34231, 26550, '3', 'Bharathi dasan university ', '', 'B.sc.computer science ', '2023', 75.00, '', 1, '2025-08-30 07:18:09', 0, NULL, 0, NULL, 1),
(34232, 26552, '3', 'Madras University ', '', 'BA Economics ', '2024', 81.03, '', 1, '2025-08-30 08:03:22', 0, NULL, 0, NULL, 1),
(34233, 26553, '3', 'University ', '', 'Bsc., computer science ', '2024', 77.00, '', 1, '2025-08-30 11:40:27', 0, NULL, 0, NULL, 1),
(34234, 26555, '5', 'Central polytechnic college (Autonomous) ', '', 'Diploma in ECE ', '2025', 74.00, '', 1, '2025-08-30 01:21:56', 0, NULL, 0, NULL, 1),
(34235, 26557, '3', 'University of madras ', '', 'Bachelors of computer application (BCA)', '2025', 65.00, '', 1, '2025-09-01 06:04:58', 0, NULL, 0, NULL, 1),
(34236, 26558, '3', 'University of Madras ', '', 'Bachelor of computer application (BCA)', '2025', 67.00, '', 1, '2025-09-01 06:05:06', 0, NULL, 0, NULL, 1),
(34237, 26559, '3', 'Madras university', '', 'B.sc computer science', '2023', 76.80, '', 1, '2025-09-01 06:09:02', 0, NULL, 0, NULL, 1),
(34238, 26562, '4', 'banglore university', '', 'mcom', '2024', 64.00, '', 1, '2025-09-01 06:46:16', 0, NULL, 0, NULL, 1),
(34239, 26563, '3', 'Bengaluru city University ', '', '', '2025', 78.00, '', 1, '2025-09-01 07:32:36', 0, NULL, 0, NULL, 1),
(34240, 26561, '3', 'Bharathidasan university ', '', 'B.com', '2019', 60.00, '', 1, '2025-09-01 07:52:53', 0, NULL, 0, NULL, 1),
(34241, 26564, '3', 'St.Johns College Palayamkottai Tirunelveli-627002 ', '', 'Bsc Computer science ', '2025', 80.00, '', 1, '2025-09-01 08:18:26', 0, NULL, 0, NULL, 1),
(34242, 26565, '3', 'Madras university ', '', 'Bcom', '2025', 64.60, '', 1, '2025-09-01 10:13:59', 0, NULL, 0, NULL, 1),
(34243, 26567, '3', 'Bharadidasan university ', '', 'BCA', '2025', 75.00, '', 1, '2025-09-01 10:29:25', 0, NULL, 0, NULL, 1),
(34244, 26567, '1', 'State board ', '', '', '2020', 70.00, '', 1, '2025-09-01 10:30:51', 0, NULL, 0, NULL, 1),
(34245, 26567, '2', 'State board ', '', '', '2022', 70.00, '', 1, '2025-09-01 10:31:46', 0, NULL, 0, NULL, 1),
(34246, 26570, '1', 'State board', '', '', '2019', 83.00, '', 1, '2025-09-01 12:53:20', 0, NULL, 0, NULL, 1),
(34247, 26570, '2', 'State board ', '', '', '2021', 84.00, '', 1, '2025-09-01 12:53:44', 0, NULL, 0, NULL, 1),
(34248, 26570, '3', 'Anna University ', '', 'B.E.CSE', '2025', 83.00, '', 1, '2025-09-01 12:54:23', 0, NULL, 0, NULL, 1),
(34249, 26572, '3', 'Bon secours college ', '', 'Bsc.IT', '2025', 83.00, '', 1, '2025-09-02 05:25:27', 0, NULL, 0, NULL, 1),
(34250, 26571, '3', 'Bon secours college for women ', '', 'B.com', '2025', 76.00, '', 1, '2025-09-02 05:29:50', 0, NULL, 0, NULL, 1),
(34251, 26569, '3', 'madras university', '', 'bba', '2024', 68.00, '', 1, '2025-09-02 05:56:27', 0, NULL, 0, NULL, 1),
(34252, 26575, '3', 'r.mgr university', '', 'b.com computer application', '2025', 70.00, '', 1, '2025-09-02 06:17:13', 0, NULL, 0, NULL, 1),
(34253, 26575, '2', 'valliammal hsc matric school', '', '', '2022', 58.00, '', 1, '2025-09-02 06:18:35', 0, NULL, 0, NULL, 1),
(34254, 26575, '1', 'rajeswari matric school', '', '', '2020', 56.00, '', 1, '2025-09-02 06:19:18', 0, NULL, 0, NULL, 1),
(34255, 25985, '3', 'madras universit', '', 'ba economics', '2025', 65.00, '', 159, '2025-09-02 12:15:59', 0, NULL, 0, NULL, 1),
(34256, 26576, '3', 'madras university', '', 'b.com general', '2023', 73.00, '', 1, '2025-09-02 07:01:09', 0, NULL, 0, NULL, 1),
(34257, 26576, '4', 'anna university', '', 'mba', '2025', 7.70, '', 1, '2025-09-02 07:01:37', 0, NULL, 0, NULL, 1),
(34258, 26577, '4', 'Bharathidasan university', '', 'Msc computer science', '2024', 80.00, '', 1, '2025-09-02 07:14:25', 0, NULL, 0, NULL, 1),
(34259, 26578, '3', 'University of Madras ', '', 'BSc.Computer Science', '2025', 82.30, '', 1, '2025-09-02 10:21:35', 0, NULL, 0, NULL, 1),
(34260, 26579, '3', 'Manonmaniam Sundaranar University ', '', 'Bsc', '2025', 74.00, '', 1, '2025-09-02 02:21:06', 0, NULL, 0, NULL, 1),
(34261, 26581, '4', 'Annamalai university', '', 'MCA', '2022', 70.00, '', 1, '2025-09-03 04:20:04', 0, NULL, 0, NULL, 1),
(34262, 26581, '1', 'State board', '', '', '2015', 83.00, '', 1, '2025-09-03 04:21:29', 0, NULL, 0, NULL, 1),
(34263, 26573, '3', 'madras university', '', 'bca', '2014', 80.00, '', 1, '2025-09-03 06:29:07', 0, NULL, 0, NULL, 1),
(34264, 26586, '3', 'madras universit', '', 'ba histor', '2025', 69.00, '', 159, '2025-09-03 12:10:32', 0, NULL, 0, NULL, 1),
(34265, 26585, '3', 'Madras University ', '', 'B.com compute application ', '2023', 75.00, '', 1, '2025-09-03 06:41:08', 0, NULL, 0, NULL, 1),
(34266, 26588, '3', 'Anna University ', '', 'B com', '2022', 67.00, '', 1, '2025-09-03 07:12:48', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(34267, 26566, '3', 'M.G.R university', '', 'B.sc nursing ', '2023', 88.50, '', 1, '2025-09-03 07:17:40', 0, NULL, 0, NULL, 1),
(34268, 26583, '1', 'bagalkot', '', '', '2005', 65.00, '', 1, '2025-09-03 10:33:42', 0, NULL, 0, NULL, 1),
(34269, 26583, '2', 'bagalkot', '', '', '2007', 50.00, '', 1, '2025-09-03 10:34:10', 0, NULL, 0, NULL, 1),
(34270, 26583, '3', 'gadag', '', 'btech', '2016', 54.00, '', 1, '2025-09-03 10:34:48', 0, NULL, 0, NULL, 1),
(34271, 26592, '5', 'Dote', '', 'Mechanical engineering', '2022', 72.00, '', 1, '2025-09-04 04:32:40', 0, NULL, 0, NULL, 1),
(34272, 26591, '3', 'Bharathidasan university ', '', 'B Sc', '2017', 60.00, '', 1, '2025-09-04 04:35:34', 0, NULL, 0, NULL, 1),
(34273, 26587, '3', 'Thiruvalluvar university ', '', 'BSC microbiology ', '2022', 80.00, '', 1, '2025-09-04 04:37:54', 0, NULL, 0, NULL, 1),
(34274, 26580, '3', 'Periyar University', '', 'BSC CS', '2015', 71.00, '', 1, '2025-09-04 04:44:28', 0, NULL, 0, NULL, 1),
(34275, 26590, '3', 'Queen Mary\'s College ', '', 'Bcom', '2024', 69.00, '', 1, '2025-09-04 06:27:19', 0, NULL, 0, NULL, 1),
(34276, 26596, '3', 'Anna university ', '', 'BE', '2024', 70.00, '', 1, '2025-09-04 06:34:23', 0, NULL, 0, NULL, 1),
(34277, 26596, '5', 'DOTE', '', 'DEEE ', '2021', 75.00, '', 1, '2025-09-04 06:35:31', 0, NULL, 0, NULL, 1),
(34278, 26595, '3', 'Anna University ', '', 'B.tech ', '2025', 50.00, '', 1, '2025-09-04 06:39:05', 0, NULL, 0, NULL, 1),
(34279, 26598, '4', 'university of madras', '', 'msc', '2022', 75.00, '', 1, '2025-09-04 07:25:26', 0, NULL, 0, NULL, 1),
(34280, 26599, '3', 'Periyar University ', '', 'B.A English ', '2018', 88.00, '', 1, '2025-09-04 10:04:09', 0, NULL, 0, NULL, 1),
(34281, 26599, '1', 'Mattrapalli', '', '', '2013', 71.00, '', 162, '2025-09-04 03:41:24', 0, NULL, 0, NULL, 1),
(34282, 26599, '2', 'tirupattur', '', '', '2015', 70.00, '', 162, '2025-09-04 03:41:48', 0, NULL, 0, NULL, 1),
(34283, 26602, '3', 'Madras University ', '', 'BA tamil literature ', '2023', 80.00, '', 1, '2025-09-04 12:07:09', 0, NULL, 0, NULL, 1),
(34284, 26602, '2', 'State Board of Tamilnadu ', '', '', '2019', 52.00, '', 1, '2025-09-04 12:10:22', 0, NULL, 0, NULL, 1),
(34285, 26602, '1', 'State Board of Tamilnadu ', '', '', '2017', 65.00, '', 1, '2025-09-04 12:10:46', 0, NULL, 0, NULL, 1),
(34286, 26603, '3', 'Madras University ', '', 'B.com A/F', '2024', 60.00, '', 1, '2025-09-04 02:41:40', 0, NULL, 0, NULL, 1),
(34287, 26604, '3', 'Bharath University', '', '', '2025', 65.00, '', 1, '2025-09-04 07:39:23', 0, NULL, 0, NULL, 1),
(34288, 26606, '4', 'barathithasan', '', 'mca', '2025', 88.00, '', 1, '2025-09-05 06:01:12', 0, NULL, 0, NULL, 1),
(34289, 26607, '3', 'vels university', '', 'b.e', '2021', 77.00, '', 1, '2025-09-05 06:03:06', 0, NULL, 0, NULL, 1),
(34290, 26608, '3', 'Madras university ', '', 'B.com bank management ', '2024', 67.00, '', 1, '2025-09-05 06:33:08', 0, NULL, 0, NULL, 1),
(34291, 26609, '3', 'University of Madras ', '', 'BBA', '2024', 65.00, '', 1, '2025-09-05 06:33:15', 0, NULL, 0, NULL, 1),
(34292, 26611, '4', 'University ', '', 'MBA', '2026', 90.00, '', 1, '2025-09-05 07:42:05', 0, NULL, 0, NULL, 1),
(34293, 26612, '4', 'Bharth university', '', 'MBA', '2026', 80.00, '', 1, '2025-09-05 07:43:49', 0, NULL, 0, NULL, 1),
(34294, 26613, '3', 'Anna university', '', 'BE-CSE', '2025', 8.27, '', 1, '2025-09-05 09:02:03', 0, NULL, 0, NULL, 1),
(34295, 26614, '3', 'Anna university', '', 'BE', '2025', 7.60, '', 1, '2025-09-05 09:11:45', 0, NULL, 0, NULL, 1),
(34296, 26615, '3', 'University ', '', 'Bcom CA', '2023', 75.00, '', 1, '2025-09-05 01:36:01', 1, '2025-09-05 01:36:43', 0, NULL, 1),
(34297, 26617, '4', 'Dr.g.u.pope college of enginerring', '', 'Computer science engineering', '2023', 71.80, '', 1, '2025-09-05 01:42:19', 0, NULL, 0, NULL, 1),
(34298, 26610, '3', 'Deemed University ', '', 'B.tech', '2025', 8.60, '', 1, '2025-09-06 04:08:20', 0, NULL, 0, NULL, 1),
(34299, 26619, '4', 'Meenakshi college for women ', '', 'B.A', '2022', 70.00, '', 1, '2025-09-06 06:17:13', 0, NULL, 0, NULL, 1),
(34300, 26620, '3', 'Anna University ', '', 'BE', '2024', 6.50, '', 1, '2025-09-06 06:37:10', 0, NULL, 0, NULL, 1),
(34301, 26621, '4', 'Annamalai University ', '', 'M.com', '2023', 83.00, '', 1, '2025-09-06 06:57:10', 0, NULL, 0, NULL, 1),
(34302, 26622, '2', 'Sarojini memorial higher secondary school ', '', '', '2020', 80.00, '', 1, '2025-09-06 06:57:28', 0, NULL, 0, NULL, 1),
(34303, 26624, '3', 'Vtu ', '', 'BE', '2025', 70.00, '', 1, '2025-09-06 07:36:39', 0, NULL, 0, NULL, 1),
(34304, 26624, '2', 'Karnataka Pre university board ', '', 'BE', '2025', 70.00, '', 1, '2025-09-06 07:38:01', 0, NULL, 0, NULL, 1),
(34305, 26623, '5', 'technical education of tamilnadu', '', 'Diploma in Mechanical Engineering', '2015', 89.00, '', 1, '2025-09-06 07:38:13', 0, NULL, 0, NULL, 1),
(34306, 26627, '3', 'Dr.mgr university ', '', 'Bsc computer science ', '2021', 70.00, '', 1, '2025-09-07 12:48:21', 0, NULL, 0, NULL, 1),
(34307, 26630, '3', 'Madras University', '', 'Bsc biotechnology ', '2022', 71.00, '', 1, '2025-09-08 04:42:53', 0, NULL, 0, NULL, 1),
(34308, 26632, '3', 'Bharathidesan university ', '', 'Commerce computer application', '2025', 76.00, '', 1, '2025-09-08 04:57:42', 0, NULL, 0, NULL, 1),
(34309, 26631, '3', 'Bharathidasan university ', '', 'Commerce b.com', '2025', 80.00, '', 1, '2025-09-08 04:58:51', 0, NULL, 0, NULL, 1),
(34310, 26633, '4', 'Sathyabama university', '', 'Mba ', '2026', 70.00, '', 1, '2025-09-08 05:08:24', 0, NULL, 0, NULL, 1),
(34311, 26634, '3', 'Bharathidasan ', '', 'BBA ', '2025', 75.00, '', 1, '2025-09-08 05:17:31', 0, NULL, 0, NULL, 1),
(34312, 26635, '3', 'Anna University ', '', 'B.E', '2023', 78.00, '', 1, '2025-09-08 05:20:13', 0, NULL, 0, NULL, 1),
(34313, 18243, '3', 'Thiruvalluvar university ', '', 'BA -English', '2023', 72.00, '', 1, '2025-09-08 05:26:57', 0, NULL, 0, NULL, 1),
(34314, 26636, '3', 'Madras University ', '', 'Bsc ', '2025', 72.00, '', 1, '2025-09-08 05:40:12', 0, NULL, 0, NULL, 1),
(34315, 26629, '3', 'srm university', '', 'bcom', '2024', 6.80, '', 1, '2025-09-08 05:42:32', 0, NULL, 0, NULL, 1),
(34316, 26638, '3', 'dr.mgr university', '', 'b.tech mechanical', '2020', 70.00, '', 1, '2025-09-08 06:06:13', 0, NULL, 0, NULL, 1),
(34317, 26639, '3', 'Bharthidasan', '', 'Bsc', '2023', 70.00, '', 1, '2025-09-08 06:16:20', 0, NULL, 0, NULL, 1),
(34318, 26628, '3', 'Stella maris', '', 'B.voc sustainable energy management ', '2025', 72.00, '', 1, '2025-09-08 06:48:46', 0, NULL, 0, NULL, 1),
(34319, 26641, '5', 'Central govt ', '', 'Deploma ', '2025', 80.00, '', 1, '2025-09-08 07:08:46', 0, NULL, 0, NULL, 1),
(34320, 26640, '3', 'periyar university', '', 'bcom', '2018', 60.00, '', 1, '2025-09-08 07:38:13', 0, NULL, 0, NULL, 1),
(34321, 26642, '3', 'Vel Tech Rangarajan Dr.Sagunthala R&D Institute of Science and Technology', '', 'B TECH', '2024', 7.60, '', 1, '2025-09-08 12:25:30', 0, NULL, 0, NULL, 1),
(34322, 26643, '4', 'Karnatak University Dharwad ', '', 'Master in social work ', '2020', 74.00, '', 1, '2025-09-08 01:02:32', 0, NULL, 0, NULL, 1),
(34323, 26644, '3', 'Banglore North University kolar', '', 'B com', '2021', 65.00, '', 1, '2025-09-08 01:05:31', 0, NULL, 0, NULL, 1),
(34324, 26646, '2', 'Holy Cresent Mat. Hr. Sec. School', '', '', '2018', 64.40, '', 1, '2025-09-08 08:23:19', 0, NULL, 0, NULL, 1),
(34325, 26626, '3', 'Madras university', '', 'Bsc. Geography', '2025', 65.00, '', 1, '2025-09-09 01:43:19', 0, NULL, 0, NULL, 1),
(34326, 26650, '4', 'Bharadhidasan university ', '', 'M.com', '2023', 71.00, '', 1, '2025-09-09 04:59:28', 0, NULL, 0, NULL, 1),
(34327, 26649, '4', 'Sastra deemed to be university, Kumbakonam ', '', 'MSc Mathematics ', '2024', 64.00, '', 1, '2025-09-09 05:04:30', 0, NULL, 0, NULL, 1),
(34328, 26649, '3', 'Sastra deemed to be university, Kumbakonam ', '', 'Bsc Mathematics and computer science ', '2022', 65.00, '', 1, '2025-09-09 05:05:32', 0, NULL, 0, NULL, 1),
(34329, 26648, '4', 'Dr. M.G.R University ', '', 'Mba Logistics and supply chain management ', '2025', 85.00, '', 1, '2025-09-09 05:13:38', 0, NULL, 0, NULL, 1),
(34330, 26651, '1', 'Karnataka state board ', '', '', '2016', 79.00, '', 1, '2025-09-09 05:21:32', 0, NULL, 0, NULL, 1),
(34331, 26651, '2', 'Karnataka pu board ', '', '', '2020', 61.00, '', 1, '2025-09-09 05:22:18', 0, NULL, 0, NULL, 1),
(34332, 26651, '3', 'Gulbarga ', '', 'BA English literature ', '2023', 80.00, '', 1, '2025-09-09 05:22:52', 0, NULL, 0, NULL, 1),
(34333, 26655, '3', 'ANNA UNIVERSITY ', '', 'BE- CSE', '2025', 82.50, '', 1, '2025-09-09 05:43:40', 0, NULL, 0, NULL, 1),
(34334, 26656, '3', 'Thiruvalluvar University ', '', 'BCA', '2024', 80.00, '', 1, '2025-09-09 05:44:46', 0, NULL, 0, NULL, 1),
(34335, 26656, '2', 'Government Higher secondary school ', '', '', '2021', 66.00, '', 1, '2025-09-09 05:45:12', 0, NULL, 0, NULL, 1),
(34336, 26661, '3', 'Alagappa university ', '', 'B.com CA', '2024', 78.00, '', 1, '2025-09-09 05:53:15', 0, NULL, 0, NULL, 1),
(34337, 26659, '3', 'Anna University ', '', 'B. E(ECE)', '2022', 8.89, '', 1, '2025-09-09 05:56:33', 0, NULL, 0, NULL, 1),
(34338, 26663, '4', 'Anna University ', '', 'MCA', '2025', 70.00, '', 1, '2025-09-09 05:56:50', 0, NULL, 0, NULL, 1),
(34339, 26666, '3', 'Anna University ', '', 'B.E', '2025', 85.00, '', 1, '2025-09-09 06:01:54', 0, NULL, 0, NULL, 1),
(34340, 26660, '4', 'Anna University ', '', 'MCA', '2025', 75.00, '', 1, '2025-09-09 06:02:34', 0, NULL, 0, NULL, 1),
(34341, 26660, '4', 'Anna University ', '', 'MCA ', '2025', 76.00, '', 1, '2025-09-09 06:03:15', 0, NULL, 0, NULL, 1),
(34342, 26668, '3', 'University ', '', 'BE', '2025', 82.00, '', 1, '2025-09-09 06:04:12', 0, NULL, 0, NULL, 1),
(34343, 26668, '1', 'Board', '', '', '2019', 87.00, '', 1, '2025-09-09 06:04:36', 0, NULL, 0, NULL, 1),
(34344, 26658, '3', 'Dhanalakshmi Srinivasan college of engineering and technology ', '', 'B.tech information Technology ', '2025', 76.00, '', 1, '2025-09-09 06:04:50', 0, NULL, 0, NULL, 1),
(34345, 26668, '2', 'Board', '', '', '2021', 91.00, '', 1, '2025-09-09 06:04:52', 0, NULL, 0, NULL, 1),
(34346, 26658, '2', 'ASM Higher secondry school', '', '', '2021', 83.00, '', 1, '2025-09-09 06:06:00', 0, NULL, 0, NULL, 1),
(34347, 26658, '1', 'J.M.J Higher secondary school ', '', '', '2019', 77.00, '', 1, '2025-09-09 06:06:29', 0, NULL, 0, NULL, 1),
(34348, 26669, '4', 'Annamalai University ', '', 'MBA', '2022', 71.00, '', 1, '2025-09-09 06:06:46', 0, NULL, 0, NULL, 1),
(34349, 26670, '3', 'Egs Pillay Engineering college,Anna university ', '', 'BE-CSE', '2025', 90.00, '', 1, '2025-09-09 06:16:59', 1, '2025-09-09 06:20:38', 0, NULL, 1),
(34350, 26670, '2', 'J.Jeya Matriculation.Hr.Sec.School', '', '', '2021', 89.00, '', 1, '2025-09-09 06:17:34', 0, NULL, 0, NULL, 1),
(34351, 26670, '1', 'National.Hr.Sec.School,Nagore', '', '', '2019', 84.00, '', 1, '2025-09-09 06:17:59', 0, NULL, 0, NULL, 1),
(34352, 26672, '3', 'Anna university ', '', 'BE', '2016', 67.00, '', 1, '2025-09-09 06:24:23', 0, NULL, 0, NULL, 1),
(34353, 26673, '1', 'Dr.V.Gengusamy Naidu Matric Higher Secondary School ', '', '', '2019', 70.00, '', 1, '2025-09-09 06:26:04', 0, NULL, 0, NULL, 1),
(34354, 26673, '2', 'Dr.V.Gengusamy Naidu Matric Higher Secondary School ', '', '', '2021', 83.00, '', 1, '2025-09-09 06:26:40', 0, NULL, 0, NULL, 1),
(34355, 26673, '3', 'SNS College of Engineering ', '', 'Electrical and Electronics Engineering ', '2025', 8.00, '', 1, '2025-09-09 06:27:18', 0, NULL, 0, NULL, 1),
(34356, 26675, '3', 'Anna University ', '', 'B.E', '2024', 83.00, '', 1, '2025-09-09 06:32:15', 0, NULL, 0, NULL, 1),
(34357, 26674, '3', 'Madras University', '', 'BCA', '2024', 74.00, '', 1, '2025-09-09 06:42:43', 0, NULL, 0, NULL, 1),
(34358, 26674, '2', 'State Board ', '', '', '2021', 82.33, '', 1, '2025-09-09 06:43:20', 0, NULL, 0, NULL, 1),
(34359, 26674, '1', 'State Board', '', '', '2019', 75.00, '', 1, '2025-09-09 06:43:42', 0, NULL, 0, NULL, 1),
(34360, 26662, '3', 'Alagappa university ', '', 'BE', '2024', 75.00, '', 1, '2025-09-09 06:46:28', 0, NULL, 0, NULL, 1),
(34361, 26662, '1', 'State', '', '', '2018', 90.00, '', 1, '2025-09-09 06:46:58', 0, NULL, 0, NULL, 1),
(34362, 26662, '2', 'State', '', '', '2020', 82.00, '', 1, '2025-09-09 06:47:21', 0, NULL, 0, NULL, 1),
(34363, 26678, '3', 'SA engineering college ', '', 'B.E ECE', '2025', 76.00, '', 1, '2025-09-09 06:50:05', 0, NULL, 0, NULL, 1),
(34364, 26677, '2', 'Pune', '', '', '2011', 50.00, '', 1, '2025-09-09 06:52:36', 0, NULL, 0, NULL, 1),
(34365, 26681, '3', 'S.A college of arts and science ', '', 'b.com corporate secretaryship ', '2025', 60.00, '', 1, '2025-09-09 07:12:54', 0, NULL, 0, NULL, 1),
(34366, 26679, '3', 'madras university', '', 'b.com g', '2021', 66.00, '', 1, '2025-09-09 07:12:55', 0, NULL, 0, NULL, 1),
(34367, 26680, '3', 'madras university', '', 'Visual comminication', '2022', 70.00, '', 1, '2025-09-09 07:14:58', 0, NULL, 0, NULL, 1),
(34368, 26682, '3', 'periyar university', '', 'b.sc', '2021', 68.00, '', 1, '2025-09-09 07:19:45', 0, NULL, 0, NULL, 1),
(34369, 26683, '4', 'Dr Mgr educational and research institute ', '', 'MCA', '2025', 85.00, '', 1, '2025-09-09 07:27:10', 0, NULL, 0, NULL, 1),
(34370, 26683, '3', 'Sindhi college of arts and science ', '', 'Bsc computer science ', '2023', 86.00, '', 1, '2025-09-09 07:27:47', 0, NULL, 0, NULL, 1),
(34371, 26688, '3', 'VIT Chennai', '', 'B.Tech in computer science engineering ', '2025', 81.00, '', 1, '2025-09-09 07:27:48', 0, NULL, 0, NULL, 1),
(34372, 26690, '3', 'University of Madras/St Thomas college of arts and science ', '', 'B.C.A', '2025', 65.00, '', 1, '2025-09-09 07:33:38', 0, NULL, 0, NULL, 1),
(34373, 26686, '3', 'Anna university ', '', 'B.E', '2024', 60.00, '', 1, '2025-09-09 07:34:30', 0, NULL, 0, NULL, 1),
(34374, 26690, '1', 'Tamilnadu stay board ', '', '', '2020', 64.00, '', 1, '2025-09-09 07:35:10', 1, '2025-09-09 07:35:29', 0, NULL, 1),
(34375, 26690, '2', 'Tamilnadu state board ', '', '', '2022', 71.00, '', 1, '2025-09-09 07:35:57', 0, NULL, 0, NULL, 1),
(34376, 26686, '1', 'State board of tamilnadu ', '', '', '2018', 81.00, '', 1, '2025-09-09 07:36:34', 0, NULL, 0, NULL, 1),
(34377, 26686, '2', 'State board of tamilnadu ', '', '', '2020', 57.00, '', 1, '2025-09-09 07:37:37', 0, NULL, 0, NULL, 1),
(34378, 26691, '4', 'Meenakshi college of engineering', '', 'Master of Computer Application', '2024', 84.65, '', 1, '2025-09-09 07:38:47', 0, NULL, 0, NULL, 1),
(34379, 26685, '3', 'University of Madras ', '', 'Bsc ', '2025', 80.16, '', 1, '2025-09-09 07:39:29', 0, NULL, 0, NULL, 1),
(34380, 26685, '2', 'Tamilnadu state board ', '', '', '2022', 60.00, '', 1, '2025-09-09 07:40:08', 0, NULL, 0, NULL, 1),
(34381, 26685, '1', 'Tamilnadu state board ', '', '', '2020', 77.00, '', 1, '2025-09-09 07:40:32', 0, NULL, 0, NULL, 1),
(34382, 26684, '3', 'university', '', 'b tech information technology ', '2025', 78.00, '', 1, '2025-09-09 07:41:07', 0, NULL, 0, NULL, 1),
(34383, 26684, '2', 'board', '', '', '2021', 79.00, '', 1, '2025-09-09 07:41:32', 1, '2025-09-09 07:42:33', 0, NULL, 0),
(34384, 26684, '1', 'board ', '', '', '2019', 73.00, '', 1, '2025-09-09 07:41:55', 1, '2025-09-09 07:42:42', 0, NULL, 0),
(34385, 26693, '3', 'Anna University ', '', 'BE ', '2023', 82.00, '', 1, '2025-09-09 07:42:31', 0, NULL, 0, NULL, 1),
(34386, 26684, '2', 'board', '', '', '2021', 79.00, '', 1, '2025-09-09 07:43:27', 0, NULL, 0, NULL, 1),
(34387, 26684, '1', 'board', '', '', '2019', 73.00, '', 1, '2025-09-09 07:45:24', 0, NULL, 0, NULL, 1),
(34388, 26694, '3', 'anna university ', '', 'bachelor of engineering', '2023', 81.40, '', 1, '2025-09-09 07:49:43', 0, NULL, 0, NULL, 1),
(34389, 26698, '3', 'anna university', '', 'b.e.', '2024', 80.00, '', 1, '2025-09-09 07:56:40', 0, NULL, 0, NULL, 1),
(34390, 26699, '3', 'Anna university', '', 'Information technology', '2025', 68.00, '', 1, '2025-09-09 07:58:41', 0, NULL, 0, NULL, 1),
(34391, 26699, '2', 'Tamilnadu state board', '', '', '2021', 76.00, '', 1, '2025-09-09 07:59:23', 0, NULL, 0, NULL, 1),
(34392, 26652, '3', 'Anna university', '', 'BE CSE', '2025', 86.00, '', 1, '2025-09-09 08:09:41', 0, NULL, 0, NULL, 1),
(34393, 26652, '2', 'State board ', '', '', '2021', 84.37, '', 1, '2025-09-09 08:10:09', 0, NULL, 0, NULL, 1),
(34394, 26652, '1', 'State board ', '', '', '2019', 80.60, '', 1, '2025-09-09 08:10:28', 0, NULL, 0, NULL, 1),
(34395, 26701, '3', 'Anna University ', '', 'B E', '2025', 7.90, '', 1, '2025-09-09 08:19:58', 0, NULL, 0, NULL, 1),
(34396, 26701, '2', 'State board ', '', '', '2021', 72.00, '', 1, '2025-09-09 08:22:06', 0, NULL, 0, NULL, 1),
(34397, 26705, '4', 'St.Joseph\'s college, Trichy ', '', 'M.sc computer science ', '2023', 84.00, '', 1, '2025-09-09 08:34:51', 0, NULL, 0, NULL, 1),
(34398, 26703, '4', 'Alagappa University ', '', 'MCA', '2025', 71.00, '', 1, '2025-09-09 08:40:22', 0, NULL, 0, NULL, 1),
(34399, 26703, '3', 'Madurai kamaraj University ', '', 'BCA', '2023', 65.00, '', 1, '2025-09-09 08:41:34', 0, NULL, 0, NULL, 1),
(34400, 26703, '2', 'S.Thangapazham hersec school ', '', '', '2020', 67.00, '', 1, '2025-09-09 08:42:36', 0, NULL, 0, NULL, 1),
(34401, 26703, '1', 'Dharani metriculation and higher secondary School ', '', '', '2018', 72.00, '', 1, '2025-09-09 08:43:08', 0, NULL, 0, NULL, 1),
(34402, 26707, '3', 'University', '', 'B. Tech Computer science Engineering', '2025', 70.00, '', 1, '2025-09-09 08:53:57', 0, NULL, 0, NULL, 1),
(34403, 26706, '3', 'Sri raaja raajan college of engineering and technology', '', 'BE- Computer science and engineering', '2025', 76.30, '', 1, '2025-09-09 08:58:45', 0, NULL, 0, NULL, 1),
(34404, 26710, '4', 'Anna University ', '', 'MCA', '2024', 84.00, '', 1, '2025-09-09 09:20:28', 0, NULL, 0, NULL, 1),
(34405, 26710, '3', 'Madurai Kamarajar University ', '', 'BCA', '2022', 71.00, '', 1, '2025-09-09 09:21:02', 0, NULL, 0, NULL, 1),
(34406, 26710, '2', 'State Board ', '', '', '2019', 61.00, '', 1, '2025-09-09 09:21:24', 0, NULL, 0, NULL, 1),
(34407, 26710, '1', 'State Board ', '', '', '2017', 87.00, '', 1, '2025-09-09 09:21:41', 0, NULL, 0, NULL, 1),
(34408, 26709, '1', 'State Board of Tamilnadu ', '', '', '2019', 76.00, '', 1, '2025-09-09 09:26:15', 0, NULL, 0, NULL, 1),
(34409, 26709, '2', 'State Board of Tamilnadu ', '', '', '2021', 83.00, '', 1, '2025-09-09 09:26:35', 0, NULL, 0, NULL, 1),
(34410, 26709, '3', 'Anna University ', '', 'BE - CSE', '2025', 76.00, '', 1, '2025-09-09 09:27:08', 0, NULL, 0, NULL, 1),
(34411, 26697, '3', 'University ', '', 'B.tech', '2025', 7.10, '', 1, '2025-09-09 09:38:40', 0, NULL, 0, NULL, 1),
(34412, 26712, '3', 'University college of engineering panruti ', '', 'BE', '2025', 7.50, '', 1, '2025-09-09 09:41:05', 0, NULL, 0, NULL, 1),
(34413, 26711, '1', 'State Board ', '', '', '2019', 86.00, '', 1, '2025-09-09 09:42:41', 0, NULL, 0, NULL, 1),
(34414, 26711, '2', 'State Board ', '', '', '2021', 87.00, '', 1, '2025-09-09 09:43:00', 0, NULL, 0, NULL, 1),
(34415, 26711, '3', 'University college of engineering Tindivanam ', '', 'Btech', '2025', 76.00, '', 1, '2025-09-09 09:43:21', 0, NULL, 0, NULL, 1),
(34416, 26713, '3', 'K S Rangasamy college of Technology ', '', 'BE', '2025', 80.00, '', 1, '2025-09-09 09:45:04', 0, NULL, 0, NULL, 1),
(34417, 26708, '3', 'srm valliammai enginnering college', '', 'b.e cyber security', '2025', 87.70, '', 1, '2025-09-09 09:54:48', 0, NULL, 0, NULL, 1),
(34418, 26708, '2', 'prince matriculation hr. sec. school', '', '', '2021', 90.20, '', 1, '2025-09-09 09:55:32', 0, NULL, 0, NULL, 1),
(34419, 26708, '1', 'zigma matriculation hr. sec. school', '', '', '2019', 87.80, '', 1, '2025-09-09 09:56:12', 0, NULL, 0, NULL, 1),
(34420, 26714, '3', 'anna university', '', 'b.e. computer science and engineering ', '2024', 8.71, '', 1, '2025-09-09 10:00:11', 0, NULL, 0, NULL, 1),
(34421, 26714, '2', 'state board', '', '', '2020', 66.00, '', 1, '2025-09-09 10:01:41', 1, '2025-09-09 10:03:16', 0, NULL, 1),
(34422, 26714, '1', 'state board', '', '', '2018', 87.40, '', 1, '2025-09-09 10:03:58', 0, NULL, 0, NULL, 1),
(34423, 26715, '3', 'madras university', '', 'bsc', '2025', 85.00, '', 1, '2025-09-09 10:09:32', 1, '2025-09-09 10:09:56', 0, NULL, 1),
(34424, 26716, '1', 'state board', '', '', '2016', 75.00, '', 1, '2025-09-09 10:21:48', 0, NULL, 0, NULL, 1),
(34425, 26716, '3', 'board', '', 'b.com', '2021', 70.00, '', 1, '2025-09-09 10:22:26', 0, NULL, 0, NULL, 1),
(34426, 26716, '4', 'university', '', 'mba', '2024', 68.00, '', 1, '2025-09-09 10:22:52', 0, NULL, 0, NULL, 1),
(34427, 26718, '3', 'Bharathiyar University ', '', 'BCA ', '2023', 72.00, '', 1, '2025-09-09 10:37:51', 0, NULL, 0, NULL, 1),
(34428, 26653, '3', 'Madras University ', '', 'Bachelor of Computer Applications', '2024', 78.00, '', 1, '2025-09-09 10:42:38', 0, NULL, 0, NULL, 1),
(34429, 26653, '2', 'State board ', '', '', '2021', 74.00, '', 1, '2025-09-09 10:44:02', 1, '2025-09-09 10:44:21', 0, NULL, 0),
(34430, 26720, '3', 'Sethu institute of technology ', '', 'Computer science engineering ', '2025', 82.00, '', 1, '2025-09-09 12:36:33', 0, NULL, 0, NULL, 1),
(34431, 26723, '1', 'State Board ', '', '', '2019', 65.00, '', 1, '2025-09-09 01:43:14', 0, NULL, 0, NULL, 1),
(34432, 26723, '2', 'State Board ', '', '', '2021', 77.00, '', 1, '2025-09-09 01:43:34', 0, NULL, 0, NULL, 1),
(34433, 26723, '3', 'Anna University ', '', 'BE', '2025', 81.00, '', 1, '2025-09-09 01:43:56', 0, NULL, 0, NULL, 1),
(34434, 26721, '1', 'State', '', '', '2019', 69.60, '', 1, '2025-09-09 01:54:58', 0, NULL, 0, NULL, 1),
(34435, 26721, '2', 'State', '', '', '2021', 81.40, '', 1, '2025-09-09 01:55:20', 0, NULL, 0, NULL, 1),
(34436, 26664, '3', 'Anna University', '', 'B.E ', '2025', 78.00, '', 1, '2025-09-09 02:09:16', 0, NULL, 0, NULL, 1),
(34437, 26725, '4', 'University of Madras', '', 'MCA', '2025', 9.03, '', 1, '2025-09-09 03:25:29', 0, NULL, 0, NULL, 1),
(34438, 26725, '3', 'Thiruvalluar University ', '', 'BCS', '2023', 8.55, '', 1, '2025-09-09 03:25:55', 0, NULL, 0, NULL, 1),
(34439, 26687, '4', 'Anna university', '', 'MCA', '2025', 9.00, '', 1, '2025-09-09 03:47:26', 0, NULL, 0, NULL, 1),
(34440, 26687, '3', 'Periyar university ', '', 'BCA', '2023', 8.10, '', 1, '2025-09-09 03:48:59', 0, NULL, 0, NULL, 1),
(34441, 26726, '3', 'anna university', '', 'b e aeronautical engineering', '2025', 7.72, '', 1, '2025-09-09 04:40:49', 0, NULL, 0, NULL, 1),
(34442, 26728, '3', 'government college of engineering tirunelveli', '', 'be', '2024', 76.00, '', 1, '2025-09-09 06:32:24', 0, NULL, 0, NULL, 1),
(34443, 26728, '2', 'stateboard', '', '', '2020', 76.60, '', 1, '2025-09-09 06:33:02', 0, NULL, 0, NULL, 1),
(34444, 26728, '1', 'stateboard', '', '', '2018', 71.30, '', 1, '2025-09-09 06:33:37', 0, NULL, 0, NULL, 1),
(34445, 26729, '3', 'LOYOLA COLLEGE', '', 'bba', '2025', 76.20, '', 1, '2025-09-09 08:16:23', 0, NULL, 0, NULL, 1),
(34446, 26730, '3', 'Anna university ', '', 'B.E. automobile', '2025', 60.00, '', 1, '2025-09-09 09:54:12', 0, NULL, 0, NULL, 1),
(34447, 26732, '4', 'Anna University ', '', 'MCA', '2025', 8.20, '', 1, '2025-09-10 01:35:31', 0, NULL, 0, NULL, 1),
(34448, 26734, '3', 'Mahendra Engineering college ', '', 'B.E', '2024', 85.00, '', 1, '2025-09-10 03:53:09', 0, NULL, 0, NULL, 1),
(34449, 26735, '3', 'Madras University ', '', 'Bcom cs', '2013', 69.00, '', 1, '2025-09-10 04:23:10', 0, NULL, 0, NULL, 1),
(34450, 26731, '3', 'Justice basheer ahmed sayeed college for women ', '', 'Bsc', '2025', 82.00, '', 1, '2025-09-10 05:07:06', 0, NULL, 0, NULL, 1),
(34451, 26700, '3', 'Justice Basheer ahmed syed ', '', 'Bsc computer science ', '2025', 70.00, '', 1, '2025-09-10 05:13:10', 0, NULL, 0, NULL, 1),
(34452, 26736, '3', 'Vel Tech High Tech Dr Rangarajan Dr Sakunthala Engineering College ', '', 'B.E Computer science Engineering ', '2025', 76.80, '', 1, '2025-09-10 05:18:01', 0, NULL, 0, NULL, 1),
(34453, 26736, '1', 'Sri krishnammal Matric Higher secondary school ', '', '', '2019', 70.80, '', 1, '2025-09-10 05:19:18', 1, '2025-09-10 05:20:50', 0, NULL, 1),
(34454, 26736, '2', 'Sri krishnammal Matric Higher secondary school ', '', '', '2021', 79.60, '', 1, '2025-09-10 05:21:23', 0, NULL, 0, NULL, 1),
(34455, 26737, '1', 'State board of Tamilnadu ', '', 'B.E', '2019', 71.00, '', 1, '2025-09-10 05:21:48', 1, '2025-09-10 05:22:17', 0, NULL, 0),
(34456, 26737, '2', 'State Board of Tamilnadu ', '', '', '2021', 82.00, '', 1, '2025-09-10 05:22:49', 0, NULL, 0, NULL, 1),
(34457, 26737, '3', 'MRK INSTITUTE OF TECHNOLOGY ', '', 'B.E', '2025', 81.00, '', 1, '2025-09-10 05:23:15', 0, NULL, 0, NULL, 1),
(34458, 26739, '3', 'Srm', '', 'B. Tech chemical', '2023', 7.10, '', 1, '2025-09-10 05:44:10', 0, NULL, 0, NULL, 1),
(34459, 26742, '4', 'srm university', '', 'mca', '2025', 82.00, '', 1, '2025-09-10 05:45:53', 0, NULL, 0, NULL, 1),
(34460, 26742, '3', 'bharathidasan university', '', 'bsc computer science', '2023', 80.00, '', 1, '2025-09-10 05:47:13', 0, NULL, 0, NULL, 1),
(34461, 26742, '2', 'the golden jubilee matrix higher secondary school', '', '', '2020', 61.50, '', 1, '2025-09-10 05:48:35', 0, NULL, 0, NULL, 1),
(34462, 26742, '1', 'time matrix higher secondary school', '', '', '2018', 78.40, '', 1, '2025-09-10 05:49:24', 0, NULL, 0, NULL, 1),
(34463, 26745, '3', 'Anna University ', '', 'B.E ', '2024', 70.00, '', 1, '2025-09-10 05:57:17', 0, NULL, 0, NULL, 1),
(34464, 26747, '3', 'Madras University ', '', 'B. Com (corporate secretaryship)', '2025', 80.00, '', 1, '2025-09-10 06:02:25', 0, NULL, 0, NULL, 1),
(34465, 26746, '3', 'Madras University ', '', 'BCA ', '2024', 75.00, '', 1, '2025-09-10 06:05:10', 0, NULL, 0, NULL, 1),
(34466, 26743, '1', 'tamilnadu', '', '', '1992', 66.00, '', 1, '2025-09-10 06:14:26', 0, NULL, 0, NULL, 1),
(34467, 26743, '3', 'madras university', '', 'business administration', '2002', 54.00, '', 1, '2025-09-10 06:15:22', 1, '2025-09-10 06:15:43', 0, NULL, 1),
(34468, 26741, '3', 'Madras University ', '', 'B. Com general', '2025', 80.00, '', 1, '2025-09-10 06:21:01', 0, NULL, 0, NULL, 1),
(34469, 26740, '3', 'Madras university', '', 'B.Com General', '2025', 80.00, '', 1, '2025-09-10 06:21:40', 0, NULL, 0, NULL, 1),
(34470, 26722, '1', 'Karnataka secondary education examination board ', '', '', '2018', 55.00, '', 1, '2025-09-10 06:31:11', 0, NULL, 0, NULL, 1),
(34471, 26743, '2', 'tamilnadu', '', '', '1998', 48.00, '', 1, '2025-09-10 06:39:04', 0, NULL, 0, NULL, 1),
(34472, 26752, '3', 'Anna University ', '', 'bE', '2018', 6.50, '', 1, '2025-09-10 06:55:15', 0, NULL, 0, NULL, 1),
(34473, 26753, '4', 'Kuvempu university ', '', 'BCA', '2022', 66.00, '', 1, '2025-09-10 07:00:31', 0, NULL, 0, NULL, 1),
(34474, 26753, '1', 'Karnataka state university board ', '', '', '2017', 55.00, '', 1, '2025-09-10 07:01:21', 0, NULL, 0, NULL, 1),
(34475, 26753, '2', 'Kuvempu university ', '', '', '2019', 60.00, '', 1, '2025-09-10 07:02:32', 0, NULL, 0, NULL, 1),
(34476, 26754, '3', 'Agurchand Manmull Jain College', '', 'BCA', '2025', 72.00, '', 1, '2025-09-10 08:00:17', 0, NULL, 0, NULL, 1),
(34477, 26755, '3', 'Thiruthangal Nadar college ', '', 'BCA', '2025', 82.00, '', 1, '2025-09-10 08:10:08', 0, NULL, 0, NULL, 1),
(34478, 26757, '4', 'Dr. M.G.R. Educational And Research Institute', '', 'MCA', '2025', 70.00, '', 1, '2025-09-10 09:54:27', 0, NULL, 0, NULL, 1),
(34479, 26757, '3', 'Patrician College of Arts and Science', '', 'BCA', '2022', 70.00, '', 1, '2025-09-10 09:55:37', 0, NULL, 0, NULL, 1),
(34480, 26758, '3', 'anna university', '', 'bachelor of information technology', '2025', 79.40, '', 1, '2025-09-10 10:49:04', 0, NULL, 0, NULL, 1),
(34481, 26758, '2', 'state board tamilnadu', '', '', '2021', 86.00, '', 1, '2025-09-10 10:49:40', 0, NULL, 0, NULL, 1),
(34482, 26758, '1', 'state board tamilnadu', '', '', '2019', 81.00, '', 1, '2025-09-10 10:50:19', 0, NULL, 0, NULL, 1),
(34483, 26759, '3', 'Ethiraj college for women ', '', 'Bsc botany ', '2024', 65.00, '', 1, '2025-09-10 11:33:40', 0, NULL, 0, NULL, 1),
(34484, 26760, '3', 'Alagappa University ', '', 'Bsc Psychology ', '2023', 7.30, '', 1, '2025-09-10 12:55:52', 0, NULL, 0, NULL, 1),
(34485, 26762, '4', 'Pondicherry University ', '', 'MBA FINANCE AND MARKETING ', '2025', 8.00, '', 1, '2025-09-10 06:29:12', 0, NULL, 0, NULL, 1),
(34486, 26762, '4', 'RAAK ARTS AND SCIENCE COLLEGE ', '', 'B.COM', '2023', 6.70, '', 1, '2025-09-10 06:30:10', 0, NULL, 0, NULL, 1),
(34487, 26763, '3', 'University ', '', 'B.com', '2025', 72.00, '', 1, '2025-09-11 01:25:43', 0, NULL, 0, NULL, 1),
(34488, 26761, '3', 'Bharadiyar university ', '', 'B. Com', '2024', 70.00, '', 1, '2025-09-11 05:23:14', 0, NULL, 0, NULL, 1),
(34489, 26764, '1', 'State board ', '', '', '2017', 75.60, '', 1, '2025-09-11 05:42:56', 0, NULL, 0, NULL, 1),
(34490, 26764, '2', 'State board ', '', '', '2019', 50.00, '', 1, '2025-09-11 05:43:31', 0, NULL, 0, NULL, 1),
(34491, 26764, '3', 'Madras University ', '', 'B.com', '2022', 46.50, '', 1, '2025-09-11 05:44:14', 0, NULL, 0, NULL, 1),
(34492, 26765, '3', 'Bharathiyar university ', '', 'B.com (computer application)', '2024', 80.00, '', 1, '2025-09-11 06:29:43', 0, NULL, 0, NULL, 1),
(34493, 26767, '3', 'UNIVERSITY ', '', 'BCA', '2024', 74.00, '', 1, '2025-09-11 06:30:46', 0, NULL, 0, NULL, 1),
(34494, 26766, '4', 'Alagappa university', '', 'MBa', '2025', 87.00, '', 1, '2025-09-11 06:35:05', 0, NULL, 0, NULL, 1),
(34495, 26768, '3', 'University of madras', '', 'B. Com', '2018', 60.00, '', 1, '2025-09-11 07:25:12', 0, NULL, 0, NULL, 1),
(34496, 26751, '1', 'state board of school examination', '', '', '2019', 85.00, '', 1, '2025-09-11 01:50:42', 1, '2025-09-11 01:54:26', 0, NULL, 1),
(34497, 26751, '2', 'state board of school examination', '', '', '2021', 89.90, '', 1, '2025-09-11 01:51:04', 1, '2025-09-11 01:54:10', 0, NULL, 1),
(34498, 26751, '3', 'anna university', '', 'Bachelor of Engineering', '2025', 77.10, '', 1, '2025-09-11 01:52:20', 0, NULL, 0, NULL, 1),
(34499, 26770, '1', 'Krishna Higher secondary school ', '', '', '2014', 80.80, '', 1, '2025-09-12 03:41:16', 0, NULL, 0, NULL, 1),
(34500, 26774, '4', 'madras university', '', 'mba', '2023', 74.00, '', 1, '2025-09-12 06:02:50', 0, NULL, 0, NULL, 1),
(34501, 26771, '5', 'thai moogambigai poltechnic College', '', 'Computer engineering', '2025', 55.00, '', 159, '2025-09-12 11:42:26', 0, NULL, 0, NULL, 1),
(34502, 26769, '3', 'Madras university ', '', 'B A English ', '2025', 72.00, '', 1, '2025-09-12 06:19:22', 0, NULL, 0, NULL, 1),
(34503, 26667, '3', 'Anna University', '', 'B e. C. S', '2025', 85.00, '', 1, '2025-09-12 06:19:37', 0, NULL, 0, NULL, 1),
(34504, 26776, '3', 'Annamalai University ', '', 'Bachelor of Computer Application ', '2024', 74.00, '', 1, '2025-09-12 06:20:10', 0, NULL, 0, NULL, 1),
(34505, 26667, '2', 'State board', '', '', '2021', 88.00, '', 1, '2025-09-12 06:24:45', 0, NULL, 0, NULL, 1),
(34506, 26667, '1', 'State board', '', '', '2019', 89.00, '', 1, '2025-09-12 06:25:16', 0, NULL, 0, NULL, 1),
(34507, 26778, '3', 'Autonomous institution ', '', 'Btech IT', '2023', 80.00, '', 1, '2025-09-12 06:26:46', 0, NULL, 0, NULL, 1),
(34508, 26784, '3', 'Anna University ', '', 'BTech ', '2024', 71.00, '', 1, '2025-09-12 06:29:00', 0, NULL, 0, NULL, 1),
(34509, 26779, '3', 'anna university', '', 'b.e', '2024', 83.00, '', 1, '2025-09-12 06:31:17', 0, NULL, 0, NULL, 1),
(34510, 26786, '3', 'anna university', '', 'b.tech/information technology', '2023', 7.91, '', 1, '2025-09-12 06:34:50', 0, NULL, 0, NULL, 1),
(34511, 26786, '2', 'state board', '', '', '2019', 52.80, '', 1, '2025-09-12 06:35:24', 1, '2025-09-12 06:37:03', 0, NULL, 0),
(34512, 26786, '1', 'state board', '', '', '2017', 88.40, '', 1, '2025-09-12 06:35:49', 1, '2025-09-12 06:37:12', 0, NULL, 0),
(34513, 26787, '3', 'bharathidasan', '', 'Bachelor of science in computer science', '2024', 70.00, '', 1, '2025-09-12 06:37:29', 0, NULL, 0, NULL, 1),
(34514, 26786, '1', 'state board', '', '', '2017', 88.40, '', 1, '2025-09-12 06:37:54', 1, '2025-09-12 06:38:04', 0, NULL, 0),
(34515, 26695, '3', 'Anna university', '', 'Bachelor of engineering', '2025', 87.00, '', 1, '2025-09-12 06:41:15', 0, NULL, 0, NULL, 1),
(34516, 26695, '2', 'State board of Tamilnadu', '', '', '2021', 87.00, '', 1, '2025-09-12 06:41:38', 0, NULL, 0, NULL, 1),
(34517, 26785, '3', 'Bishop Heber College ', '', 'B.C.A', '2024', 77.00, '', 1, '2025-09-12 06:43:05', 0, NULL, 0, NULL, 1),
(34518, 26783, '3', 'Madras un6', '', 'MA economics ', '2025', 72.00, '', 1, '2025-09-12 07:23:24', 0, NULL, 0, NULL, 1),
(34519, 26791, '1', 'state board of tamil nadu', '', '', '2018', 77.00, '', 1, '2025-09-12 07:24:14', 0, NULL, 0, NULL, 1),
(34520, 26791, '2', 'state board of tamil nadu', '', '', '2020', 67.00, '', 1, '2025-09-12 07:24:49', 0, NULL, 0, NULL, 1),
(34521, 26791, '3', 'anna university', '', 'b.e ', '2024', 83.05, '', 1, '2025-09-12 07:25:42', 0, NULL, 0, NULL, 1),
(34522, 26793, '4', 'medras universit', '', 'ma economics', '2025', 67.50, '', 154, '2025-09-12 12:58:58', 0, NULL, 0, NULL, 1),
(34523, 26793, '3', 'medras universit', '', 'ba economics', '2023', 64.55, '', 154, '2025-09-12 12:59:56', 0, NULL, 0, NULL, 1),
(34524, 26790, '3', 'Anna university ', '', 'BE CSE ', '2025', 83.00, '', 1, '2025-09-12 07:42:22', 0, NULL, 0, NULL, 1),
(34525, 26794, '1', 'Sri Meenakshi Sundareshwar Vidhyasala Higher secondary school ', '', '', '2019', 76.80, '', 1, '2025-09-12 07:43:50', 0, NULL, 0, NULL, 1),
(34526, 26794, '2', 'Sri Meenakshi Sundareshwar Vidhyasala Higher secondary school ', '', '', '2021', 78.80, '', 1, '2025-09-12 07:44:19', 0, NULL, 0, NULL, 1),
(34527, 26794, '3', 'Mount Zion college of engineering and technology ', '', 'Bachelor of engineering ', '2025', 70.70, '', 1, '2025-09-12 07:45:52', 0, NULL, 0, NULL, 1),
(34528, 26775, '3', 'mahatma gandhi institute of technology', '', 'b.tech', '2025', 86.50, '', 1, '2025-09-12 07:45:59', 0, NULL, 0, NULL, 1),
(34529, 26795, '3', 'Anna university ', '', 'BE', '2025', 86.00, '', 1, '2025-09-12 08:07:54', 0, NULL, 0, NULL, 1),
(34530, 26797, '3', 'Anna University ', '', 'B. E. Computer Science ', '2025', 6.80, '', 1, '2025-09-12 08:17:15', 1, '2025-09-12 08:18:17', 0, NULL, 1),
(34531, 26797, '2', 'State Board of Tamilnadu ', '', '', '2021', 88.00, '', 1, '2025-09-12 08:17:54', 0, NULL, 0, NULL, 1),
(34532, 26797, '1', 'State Board of Tamilnadu ', '', '', '2019', 83.00, '', 1, '2025-09-12 08:18:37', 0, NULL, 0, NULL, 1),
(34533, 26798, '3', 'anna university', '', 'b.e-cse', '2023', 8.00, '', 1, '2025-09-12 09:34:32', 0, NULL, 0, NULL, 1),
(34534, 26800, '3', 'Anna University ', '', 'B.Tech IT', '2024', 78.20, '', 1, '2025-09-12 09:38:46', 0, NULL, 0, NULL, 1),
(34535, 26727, '3', 'loyola college chennai', '', 'bachelor of economics', '2025', 6.20, '', 1, '2025-09-12 09:52:17', 0, NULL, 0, NULL, 1),
(34536, 26803, '3', 'Government arts and science college kumulur', '', 'Bsc computer science', '2024', 71.00, '', 1, '2025-09-12 10:03:25', 0, NULL, 0, NULL, 1),
(34537, 26805, '3', 'anna university', '', 'b.tech', '2024', 83.40, '', 1, '2025-09-12 11:23:09', 0, NULL, 0, NULL, 1),
(34538, 26806, '3', 'Anna University ', '', 'Bachelor of computer science and engineering ', '2025', 79.00, '', 1, '2025-09-12 11:59:53', 0, NULL, 0, NULL, 1),
(34539, 26806, '2', 'State board ', '', '', '2021', 85.00, '', 1, '2025-09-12 12:00:16', 1, '2025-09-12 12:00:36', 0, NULL, 1),
(34540, 26806, '1', 'State board ', '', '', '2019', 85.00, '', 1, '2025-09-12 12:00:50', 0, NULL, 0, NULL, 1),
(34541, 26777, '3', 'anna university', '', 'be -eee', '2024', 78.00, '', 1, '2025-09-12 12:12:24', 0, NULL, 0, NULL, 1),
(34542, 26807, '1', 'tamilnadu state board', '', '', '2019', 92.00, '', 1, '2025-09-12 01:22:26', 0, NULL, 0, NULL, 1),
(34543, 26807, '2', 'tamilnadu state board', '', '', '2021', 92.00, '', 1, '2025-09-12 01:22:53', 0, NULL, 0, NULL, 1),
(34544, 26807, '3', 'anna university', '', 'bachelor of engineering', '2025', 83.00, '', 1, '2025-09-12 01:23:22', 0, NULL, 0, NULL, 1),
(34545, 26808, '3', 'anna university', '', 'b.e. cpmputer science and engineering', '2025', 7.60, '', 1, '2025-09-12 02:16:49', 0, NULL, 0, NULL, 1),
(34546, 26780, '3', 'University ', '', 'BCA', '2024', 60.00, '', 1, '2025-09-12 04:53:49', 1, '2025-09-12 04:55:21', 0, NULL, 1),
(34547, 26780, '1', 'Board', '', '', '2019', 76.00, '', 1, '2025-09-12 04:57:05', 0, NULL, 0, NULL, 1),
(34548, 26780, '2', 'Board', '', '', '2021', 84.00, '', 1, '2025-09-12 04:57:23', 0, NULL, 0, NULL, 1),
(34549, 26796, '3', 'm.a.m school of engineering', '', 'b.e', '2025', 80.00, '', 1, '2025-09-13 03:25:32', 0, NULL, 0, NULL, 1),
(34550, 26796, '2', 's.n.v government model higher secondary school', '', '', '2021', 79.00, '', 1, '2025-09-13 03:26:22', 0, NULL, 0, NULL, 1),
(34551, 26796, '1', 's.n.v government model higher secondary school', '', '', '2019', 72.00, '', 1, '2025-09-13 03:26:57', 0, NULL, 0, NULL, 1),
(34552, 26812, '3', 'Anna University ', '', 'BE,CSE', '2024', 72.00, '', 1, '2025-09-13 04:35:31', 0, NULL, 0, NULL, 1),
(34553, 26788, '4', 'Bharathidasan University ', '', 'MCA', '2022', 7.90, '', 1, '2025-09-13 04:43:22', 0, NULL, 0, NULL, 1),
(34554, 26788, '3', 'Alagappa University ', '', 'B.Sc computer science ', '2020', 6.80, '', 1, '2025-09-13 04:45:21', 0, NULL, 0, NULL, 1),
(34555, 26816, '3', 'madras university', '', 'B.A ', '2023', 68.00, '', 1, '2025-09-13 05:04:49', 0, NULL, 0, NULL, 1),
(34556, 26817, '3', 'mS univercit  ', '', 'BA Tamil', '2025', 75.00, '', 154, '2025-09-13 11:05:41', 0, NULL, 0, NULL, 1),
(34557, 26817, '2', 'state board', '', '', '2022', 72.83, '', 154, '2025-09-13 11:06:28', 0, NULL, 0, NULL, 1),
(34558, 26702, '1', 'tamilnadu  stateboard', '', '', '2019', 62.00, '', 1, '2025-09-13 06:10:14', 0, NULL, 0, NULL, 1),
(34559, 26702, '2', 'tamilnadu state board', '', '', '2021', 72.00, '', 1, '2025-09-13 06:10:34', 0, NULL, 0, NULL, 1),
(34560, 26702, '3', 'anna university', '', 'b.e.cse', '2025', 7.81, '', 1, '2025-09-13 06:11:25', 0, NULL, 0, NULL, 1),
(34561, 26823, '2', 'Velammal Vidhshram CBSE ', '', '', '2020', 70.00, '', 1, '2025-09-13 07:25:54', 0, NULL, 0, NULL, 1),
(34562, 26819, '3', 'Anna university', '', 'B.E ', '2020', 6.40, '', 1, '2025-09-13 09:24:14', 0, NULL, 0, NULL, 1),
(34563, 26825, '4', 'sathyabama uni', '', 'mBA HR', '2026', 7.32, '', 154, '2025-09-13 04:07:06', 0, NULL, 0, NULL, 1),
(34564, 26825, '3', 'MADARS UNI ', '', 'BCOM', '2024', 69.00, '', 154, '2025-09-13 04:08:12', 0, NULL, 0, NULL, 1),
(34565, 26826, '4', 'sathyabama uni', '', 'MBA FINANCE  SYSTEM ', '2026', 7.80, '', 154, '2025-09-13 04:14:12', 0, NULL, 0, NULL, 1),
(34566, 26826, '3', 'MADARS UNI', '', 'BCA', '2024', 66.00, '', 154, '2025-09-13 04:14:42', 0, NULL, 0, NULL, 1),
(34567, 26827, '3', 'srm university', '', 'b-tech', '2024', 85.70, '', 1, '2025-09-13 12:00:11', 0, NULL, 0, NULL, 1),
(34568, 26829, '3', 'university', '', 'b.e cse', '2025', 8.30, '', 1, '2025-09-13 01:27:23', 0, NULL, 0, NULL, 1),
(34569, 26829, '1', 'stateboard', '', '', '2019', 76.00, '', 1, '2025-09-13 01:28:26', 0, NULL, 0, NULL, 1),
(34570, 26829, '2', 'stateboard', '', '', '2021', 84.00, '', 1, '2025-09-13 01:28:57', 0, NULL, 0, NULL, 1),
(34571, 26801, '1', 'stateboard', '', '', '2019', 82.70, '', 1, '2025-09-13 01:35:37', 0, NULL, 0, NULL, 1),
(34572, 26801, '2', 'stateboard', '', '', '2021', 87.20, '', 1, '2025-09-13 01:36:02', 0, NULL, 0, NULL, 1),
(34573, 26832, '3', 'anna university', '', 'computer science and engineering', '2025', 79.00, '', 1, '2025-09-13 01:37:30', 0, NULL, 0, NULL, 1),
(34574, 26801, '3', 'affiliated anna university', '', 'b.tech -i t', '2025', 83.00, '', 1, '2025-09-13 01:37:52', 0, NULL, 0, NULL, 1),
(34575, 26830, '3', 'Anna University ', '', 'B.E', '2025', 81.00, '', 1, '2025-09-13 01:43:05', 0, NULL, 0, NULL, 1),
(34576, 26831, '3', 'anna university', '', 'be cse', '2025', 83.00, '', 1, '2025-09-13 01:59:55', 0, NULL, 0, NULL, 1),
(34577, 26833, '3', 'Anna university ', '', 'BE cse', '2025', 70.00, '', 1, '2025-09-13 02:12:30', 0, NULL, 0, NULL, 1),
(34578, 26834, '3', 'Alagappa University ', '', 'Bsc ', '2023', 79.00, '', 1, '2025-09-13 03:14:38', 0, NULL, 0, NULL, 1),
(34579, 26835, '3', 'Anna university ', '', 'BE', '2025', 86.00, '', 1, '2025-09-13 03:17:20', 0, NULL, 0, NULL, 1),
(34580, 26835, '1', 'State board', '', '', '2019', 82.00, '', 1, '2025-09-13 03:18:13', 0, NULL, 0, NULL, 1),
(34581, 26835, '2', 'State board', '', '', '2021', 90.00, '', 1, '2025-09-13 03:18:44', 0, NULL, 0, NULL, 1),
(34582, 26809, '3', 'Madras University ', '', 'BCA', '2025', 71.00, '', 1, '2025-09-13 04:57:08', 0, NULL, 0, NULL, 1),
(34583, 26692, '3', 'Trichy Engineering College ', '', 'BE', '2025', 7.80, '', 1, '2025-09-14 04:29:12', 0, NULL, 0, NULL, 1),
(34584, 26836, '4', 'Vels University ', '', 'MCA', '2025', 7.10, '', 1, '2025-09-14 04:30:50', 0, NULL, 0, NULL, 1),
(34585, 26837, '3', 'Anna university ', '', 'Bachelor of Engineering', '2024', 81.00, '', 1, '2025-09-14 04:30:54', 0, NULL, 0, NULL, 1),
(34586, 26838, '1', 'State board ', '', '', '2018', 77.00, '', 1, '2025-09-14 04:32:52', 0, NULL, 0, NULL, 1),
(34587, 26838, '2', 'State Board ', '', '', '2020', 63.00, '', 1, '2025-09-14 04:33:17', 0, NULL, 0, NULL, 1),
(34588, 26838, '3', 'manonmaniam sundaranar university ', '', 'BCA', '2023', 82.00, '', 1, '2025-09-14 04:33:59', 0, NULL, 0, NULL, 1),
(34589, 26838, '4', 'Anna University ', '', 'MCA', '2025', 79.00, '', 1, '2025-09-14 04:34:17', 0, NULL, 0, NULL, 1),
(34590, 26839, '3', 'Anna university', '', 'B.E ECE', '2023', 76.00, '', 1, '2025-09-14 04:44:04', 0, NULL, 0, NULL, 1),
(34591, 26840, '3', 'university', '', 'bachelor of Engineering ', '2025', 77.00, '', 1, '2025-09-14 04:47:02', 0, NULL, 0, NULL, 1),
(34592, 26840, '2', 'board', '', '', '2021', 88.00, '', 1, '2025-09-14 04:47:32', 0, NULL, 0, NULL, 1),
(34593, 26840, '1', 'board', '', '', '2019', 85.00, '', 1, '2025-09-14 04:47:59', 0, NULL, 0, NULL, 1),
(34594, 26843, '3', 'Anna Universi', '', 'BE CS', '2024', 82.00, '', 154, '2025-09-14 11:34:01', 0, NULL, 0, NULL, 1),
(34595, 26844, '4', 'anna uni', '', 'BE CS', '2025', 88.70, '', 154, '2025-09-14 11:44:35', 0, NULL, 0, NULL, 1),
(34596, 26847, '3', 'Anna University ', '', 'BE ', '2025', 7.70, '', 1, '2025-09-14 10:02:30', 0, NULL, 0, NULL, 1),
(34597, 26851, '3', 'Anna university ', '', 'BE EEE', '2020', 71.00, '', 1, '2025-09-15 05:22:33', 0, NULL, 0, NULL, 1),
(34598, 26821, '3', 'St Peter\'s University ', '', 'Bca', '2023', 64.00, '', 1, '2025-09-15 05:48:01', 0, NULL, 0, NULL, 1),
(34599, 26852, '3', 'Madras University ', '', 'Bcom ', '2025', 79.00, '', 1, '2025-09-15 06:50:49', 0, NULL, 0, NULL, 1),
(34600, 26853, '3', 'University ', '', 'BE', '2024', 70.00, '', 1, '2025-09-15 07:34:00', 0, NULL, 0, NULL, 1),
(34601, 26856, '3', 'st Peter\'s University ', '', 'Bsc cs', '2021', 65.00, '', 1, '2025-09-15 09:14:00', 0, NULL, 0, NULL, 1),
(34602, 26855, '3', 'Periyar University ', '', 'BBACA', '2023', 72.00, '', 1, '2025-09-15 09:25:52', 0, NULL, 0, NULL, 1),
(34603, 26854, '4', 'Thiruvalluvar university ', '', 'M.sc chemistry ', '2025', 66.00, '', 1, '2025-09-15 09:32:30', 0, NULL, 0, NULL, 1),
(34604, 26858, '3', 'anna university', '', 'becse ', '2023', 70.00, '', 1, '2025-09-15 10:06:02', 0, NULL, 0, NULL, 1),
(34605, 26860, '3', 'sri vijay vidyalaya college of arts and science', '', 'b.sc physics', '2022', 8.90, '', 1, '2025-09-15 02:12:04', 1, '2025-09-15 02:12:55', 0, NULL, 1),
(34606, 26862, '2', 'sethu bhasakara matric her Secondary school', '', '', '2020', 60.00, '', 1, '2025-09-16 05:54:41', 0, NULL, 0, NULL, 1),
(34607, 26862, '1', 'st.johns higher secondary school ', '', '', '2018', 60.60, '', 1, '2025-09-16 05:56:54', 0, NULL, 0, NULL, 1),
(34608, 26862, '3', 'srm university', '', 'bsc visual communication', '2023', 60.00, '', 1, '2025-09-16 05:58:35', 1, '2025-09-16 05:59:04', 0, NULL, 0),
(34609, 26865, '3', 'Sivanthi Arts and science college for women ', '', 'BA English ', '2025', 70.00, '', 1, '2025-09-16 06:02:38', 0, NULL, 0, NULL, 1),
(34610, 26815, '3', 'Madras University ', '', 'BBA', '2024', 66.00, '', 1, '2025-09-16 06:02:43', 0, NULL, 0, NULL, 1),
(34611, 26863, '3', 'Sivanthi arts and science college for women ', '', 'BA English ', '2025', 73.00, '', 1, '2025-09-16 06:04:07', 0, NULL, 0, NULL, 1),
(34612, 26815, '1', 'DR.NMHSS', '', '', '2019', 78.00, '', 1, '2025-09-16 06:05:40', 0, NULL, 0, NULL, 1),
(34613, 26815, '2', 'DR.NMHSS', '', '', '2021', 85.00, '', 1, '2025-09-16 06:07:07', 0, NULL, 0, NULL, 1),
(34614, 26867, '3', 'Sivanthi arts and sciences College for women ', '', 'BA English ', '2025', 60.00, '', 1, '2025-09-16 06:15:43', 0, NULL, 0, NULL, 1),
(34615, 26868, '3', 'University of madras', '', 'BCA', '2022', 76.40, '', 1, '2025-09-16 06:40:57', 0, NULL, 0, NULL, 1),
(34616, 26861, '1', 'kseeb ', '', '', '2010', 64.32, '', 1, '2025-09-16 07:17:49', 0, NULL, 0, NULL, 1),
(34617, 26861, '2', 'tiptur', '', '', '2012', 63.83, '', 1, '2025-09-16 07:18:18', 0, NULL, 0, NULL, 1),
(34618, 26861, '3', 'vtu belgaum', '', 'b.e mechanical engineering ', '2016', 64.98, '', 1, '2025-09-16 07:19:11', 0, NULL, 0, NULL, 1),
(34619, 26870, '3', 'Tumkur university ', '', 'Bcom', '2024', 6.80, '', 1, '2025-09-16 01:09:45', 0, NULL, 0, NULL, 1),
(34620, 26871, '4', 'Gandhigram Rural University ', '', 'MBA', '2023', 59.83, '', 1, '2025-09-17 04:29:33', 0, NULL, 0, NULL, 1),
(34621, 26871, '3', 'Madurai Kamaraj University ', '', 'B com cA', '2019', 60.07, '', 1, '2025-09-17 04:30:25', 0, NULL, 0, NULL, 1),
(34622, 26866, '3', 'DR MGR UNIVERSITY ', '', 'B.com (general)', '2018', 60.00, '', 1, '2025-09-17 05:16:17', 0, NULL, 0, NULL, 1),
(34623, 26872, '3', 'University of Madras ', '', 'BBA ', '2025', 63.00, '', 1, '2025-09-17 05:19:08', 0, NULL, 0, NULL, 1),
(34624, 26848, '4', 'Annamalai University ', '', 'MBA', '2025', 76.00, '', 1, '2025-09-17 05:59:09', 0, NULL, 0, NULL, 1),
(34625, 26873, '4', 'Annamalaai University ', '', 'MBA', '2025', 75.00, '', 1, '2025-09-17 05:59:38', 0, NULL, 0, NULL, 1),
(34626, 26873, '4', 'Annamalai University ', '', 'MBA', '2025', 75.00, '', 1, '2025-09-17 06:00:10', 1, '2025-09-17 06:00:34', 0, NULL, 0),
(34627, 26874, '3', 'kamaraj university', '', 'b.sc nutrition  dietetics', '2025', 80.00, '', 1, '2025-09-17 06:15:15', 0, NULL, 0, NULL, 1),
(34628, 26875, '3', 'Dharwad university ', '', 'B. Com', '2025', 55.00, '', 1, '2025-09-17 06:42:25', 0, NULL, 0, NULL, 1),
(34629, 26876, '1', 'Bangalore University ', '', '', '2017', 69.00, '', 1, '2025-09-17 06:53:52', 0, NULL, 0, NULL, 1),
(34630, 26876, '2', 'Bangalore University ', '', '', '2019', 76.00, '', 1, '2025-09-17 06:54:10', 0, NULL, 0, NULL, 1),
(34631, 26876, '3', 'Gulbarga university ', '', 'Bcom', '2023', 62.00, '', 1, '2025-09-17 06:54:34', 0, NULL, 0, NULL, 1),
(34632, 26877, '3', 'tamilnadu', '', 'bcom', '2023', 80.00, '', 1, '2025-09-17 06:55:49', 0, NULL, 0, NULL, 1),
(34633, 26878, '3', 'Madras University ', '', 'BA', '2021', 77.00, '', 1, '2025-09-17 07:34:48', 0, NULL, 0, NULL, 1),
(34634, 26879, '2', 'Board ', '', '', '2023', 52.00, '', 1, '2025-09-17 09:08:48', 0, NULL, 0, NULL, 1),
(34635, 26880, '3', 'Bengaluru University ', '', 'B.com', '2021', 81.00, '', 1, '2025-09-17 09:41:40', 0, NULL, 0, NULL, 1),
(34636, 26881, '3', 'St Peter\'s College deemed University ', '', 'B com ', '2025', 60.00, '', 1, '2025-09-17 10:14:34', 0, NULL, 0, NULL, 1),
(34637, 26883, '3', 'Madras University ', '', 'B.com', '2022', 65.00, '', 1, '2025-09-17 01:12:18', 0, NULL, 0, NULL, 1),
(34638, 26885, '3', 'Yenepoya university ', '', 'BCA in cloud computing,cyber security and data ana', '2025', 67.00, '', 1, '2025-09-17 03:45:31', 0, NULL, 0, NULL, 1),
(34639, 26890, '3', 'Vijayam Arts and science degree college ', '', 'Bsc biotechnology ', '2024', 89.00, '', 1, '2025-09-18 06:49:04', 0, NULL, 0, NULL, 1),
(34640, 26890, '2', 'Vijayam junior college ', '', '', '2021', 78.00, '', 1, '2025-09-18 06:50:03', 0, NULL, 0, NULL, 1),
(34641, 26888, '5', 'Dote', '', 'Mechanical engineering', '2022', 65.00, '', 1, '2025-09-18 06:50:20', 0, NULL, 0, NULL, 1),
(34642, 26890, '1', 'Sri Chaitanya techno school ', '', '', '2019', 99.00, '', 1, '2025-09-18 06:50:33', 0, NULL, 0, NULL, 1),
(34643, 26889, '3', 'Thiruvallur', '', 'Bsc. Maths', '2022', 72.00, '', 1, '2025-09-18 07:23:14', 0, NULL, 0, NULL, 1),
(34644, 26891, '3', 'Periyar maniammai institute of science and technology ', '', 'B.Sc Computer Science ', '2023', 70.00, '', 1, '2025-09-18 08:53:42', 0, NULL, 0, NULL, 1),
(34645, 26891, '2', 'Little scholars matric hr sec school ', '', '', '2020', 66.00, '', 1, '2025-09-18 08:54:33', 0, NULL, 0, NULL, 1),
(34646, 26891, '1', 'Little scholars matric hr sec school ', '', '', '2018', 77.00, '', 1, '2025-09-18 08:55:06', 0, NULL, 0, NULL, 1),
(34647, 26894, '3', 'SRM University ', '', 'B TECH ', '2020', 65.00, '', 1, '2025-09-18 10:58:47', 0, NULL, 0, NULL, 1),
(34648, 26895, '3', 'Board', '', 'B. Com', '2023', 86.00, '', 1, '2025-09-18 11:33:23', 0, NULL, 0, NULL, 1),
(34649, 26897, '3', 'madras university', '', 'bba', '2024', 5.00, '', 1, '2025-09-18 12:08:44', 0, NULL, 0, NULL, 1),
(34650, 26899, '3', 'Anna University', '', 'B.E Computer Science', '2025', 65.00, '', 1, '2025-09-18 01:33:37', 0, NULL, 0, NULL, 1),
(34651, 26899, '1', 'State Board', '', '', '2019', 66.00, '', 1, '2025-09-18 01:34:26', 0, NULL, 0, NULL, 1),
(34652, 26899, '2', 'State Board', '', '', '2021', 76.00, '', 1, '2025-09-18 01:34:45', 0, NULL, 0, NULL, 1),
(34653, 26900, '1', 'Central board of secondary education', '', '', '2019', 88.00, '', 1, '2025-09-18 01:49:55', 0, NULL, 0, NULL, 1),
(34654, 26900, '2', 'Central board of secondary education', '', '', '2021', 92.00, '', 1, '2025-09-18 01:50:22', 0, NULL, 0, NULL, 1),
(34655, 26900, '3', 'S.A. Engineering College', '', 'B.E - Electronics and Communication Engineering', '2025', 80.00, '', 1, '2025-09-18 01:51:03', 1, '2025-09-18 01:51:49', 0, NULL, 1),
(34656, 26893, '3', 'Prist university ', '', 'Bcom general ', '2024', 80.50, '', 1, '2025-09-18 02:15:17', 0, NULL, 0, NULL, 1),
(34657, 26901, '3', 'Deemed University ', '', 'B com graduate ', '2025', 88.00, '', 1, '2025-09-18 02:18:02', 0, NULL, 0, NULL, 1),
(34658, 26902, '3', 'Anna University ', '', 'BE', '2025', 80.00, '', 1, '2025-09-18 02:32:26', 0, NULL, 0, NULL, 1),
(34659, 26902, '1', 'State Board ', '', '', '2019', 84.00, '', 1, '2025-09-18 02:34:15', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(34660, 26902, '2', 'State Board ', '', '', '2021', 88.00, '', 1, '2025-09-18 02:34:50', 0, NULL, 0, NULL, 1),
(34661, 26903, '3', 'anna university', '', 'be', '2020', 6.50, '', 1, '2025-09-19 02:30:31', 0, NULL, 0, NULL, 1),
(34662, 26884, '3', 'Bharathidasan University', '', 'B.com', '2024', 73.00, '', 1, '2025-09-19 04:04:18', 0, NULL, 0, NULL, 1),
(34663, 26905, '3', 'Anna university ', '', 'BE CSE', '2023', 68.00, '', 1, '2025-09-19 04:54:07', 0, NULL, 0, NULL, 1),
(34664, 26905, '1', 'STATE ', '', '', '2012', 75.00, '', 1, '2025-09-19 04:54:48', 0, NULL, 0, NULL, 1),
(34665, 26905, '2', 'STATE ', '', '', '2014', 69.00, '', 1, '2025-09-19 04:55:06', 0, NULL, 0, NULL, 1),
(34666, 26906, '3', 'University of madras', '', 'bca', '2024', 81.01, '', 1, '2025-09-19 05:12:29', 0, NULL, 0, NULL, 1),
(34667, 26904, '3', 'Madras university', '', 'B. Com ', '2023', 73.00, '', 1, '2025-09-19 05:15:13', 0, NULL, 0, NULL, 1),
(34668, 26907, '3', 'A M Jain College ', '', 'B Com', '2024', 77.10, '', 1, '2025-09-19 05:26:19', 0, NULL, 0, NULL, 1),
(34669, 26907, '2', 'New Price Matriculation Higher Secondary School ', '', '', '2021', 83.00, '', 1, '2025-09-19 05:26:54', 0, NULL, 0, NULL, 1),
(34670, 26907, '1', 'D A V School', '', '', '2019', 71.60, '', 1, '2025-09-19 05:27:18', 0, NULL, 0, NULL, 1),
(34671, 26909, '3', 'State board ', '', 'BCA', '2021', 70.00, '', 1, '2025-09-19 05:33:15', 0, NULL, 0, NULL, 1),
(34672, 26910, '4', 'Pondicherry University ', '', 'Mba', '2025', 76.00, '', 1, '2025-09-19 05:50:41', 0, NULL, 0, NULL, 1),
(34673, 26910, '3', 'Anna university ', '', 'B.E', '2019', 75.00, '', 1, '2025-09-19 05:51:08', 0, NULL, 0, NULL, 1),
(34674, 26910, '2', 'State board ', '', '', '2015', 88.00, '', 1, '2025-09-19 05:51:37', 0, NULL, 0, NULL, 1),
(34675, 26910, '1', 'State board ', '', '', '2013', 93.00, '', 1, '2025-09-19 05:51:50', 0, NULL, 0, NULL, 1),
(34676, 26912, '4', 'University of Madras', '', 'M.com', '2025', 71.00, '', 1, '2025-09-19 06:03:32', 0, NULL, 0, NULL, 1),
(34677, 26913, '4', 'University ', '', 'Master of bussiness administration ', '2021', 67.00, '', 1, '2025-09-19 06:05:25', 0, NULL, 0, NULL, 1),
(34678, 26911, '4', 'Madras University ', '', 'M.sc chemistry ', '2019', 70.00, '', 1, '2025-09-19 06:09:51', 0, NULL, 0, NULL, 1),
(34679, 26911, '3', 'University of Madras ', '', 'B.sc chemy', '2017', 70.00, '', 1, '2025-09-19 06:11:07', 0, NULL, 0, NULL, 1),
(34680, 26911, '2', 'State board', '', '', '2014', 67.00, '', 1, '2025-09-19 06:13:37', 0, NULL, 0, NULL, 1),
(34681, 26911, '1', 'State board ', '', '', '2012', 82.00, '', 1, '2025-09-19 06:13:58', 0, NULL, 0, NULL, 1),
(34682, 26914, '4', 'University of madras ', '', 'Mba', '2023', 72.00, '', 1, '2025-09-19 06:57:43', 0, NULL, 0, NULL, 1),
(34683, 26914, '3', 'University of madras ', '', 'B.com', '2021', 68.00, '', 1, '2025-09-19 06:58:17', 0, NULL, 0, NULL, 1),
(34684, 26914, '2', 'State board ', '', '', '2018', 77.00, '', 1, '2025-09-19 06:59:02', 0, NULL, 0, NULL, 1),
(34685, 26914, '1', 'State board ', '', '', '2016', 68.00, '', 1, '2025-09-19 06:59:24', 0, NULL, 0, NULL, 1),
(34686, 26915, '3', 'madras university', '', 'ba', '2024', 73.00, '', 1, '2025-09-19 07:17:59', 0, NULL, 0, NULL, 1),
(34687, 26916, '3', 'madars university', '', 'bsc visual commuication', '2025', 80.00, '', 1, '2025-09-19 07:33:33', 0, NULL, 0, NULL, 1),
(34688, 26917, '3', 'SRM University ', '', 'BA', '2025', 7.82, '', 1, '2025-09-19 08:51:14', 1, '2025-09-19 08:53:28', 0, NULL, 0),
(34689, 26917, '3', 'SRM University ', '', 'BA.lLB', '2025', 7.82, '', 1, '2025-09-19 08:53:15', 1, '2025-09-19 08:53:48', 0, NULL, 1),
(34690, 26918, '2', 'chrompet board higher secondary', '', '', '2017', 76.00, '', 1, '2025-09-19 09:15:04', 0, NULL, 0, NULL, 1),
(34691, 26918, '5', 'anjuman Institution of technology  centre ', '', 'draughts man civil', '2019', 66.00, '', 1, '2025-09-19 09:17:49', 0, NULL, 0, NULL, 1),
(34692, 26919, '3', 'Anna University ', '', 'B.Tech IT', '2025', 86.00, '', 1, '2025-09-19 12:02:55', 0, NULL, 0, NULL, 1),
(34693, 26919, '2', 'TSB', '', '', '2021', 88.00, '', 1, '2025-09-19 12:04:45', 0, NULL, 0, NULL, 1),
(34694, 26919, '1', 'Tsb', '', '', '2019', 86.00, '', 1, '2025-09-19 12:05:05', 0, NULL, 0, NULL, 1),
(34695, 26921, '3', 'Anna university ', '', 'B.Tech Information Technology ', '2025', 83.00, '', 1, '2025-09-19 12:44:13', 0, NULL, 0, NULL, 1),
(34696, 26921, '2', 'Tamil Nadu State Board ', '', '', '2021', 87.00, '', 1, '2025-09-19 12:44:40', 0, NULL, 0, NULL, 1),
(34697, 26921, '1', 'Tamil Nadu State Board ', '', '', '2019', 81.00, '', 1, '2025-09-19 12:44:58', 0, NULL, 0, NULL, 1),
(34698, 26922, '3', 'Anna university ', '', 'BTech ', '2025', 81.00, '', 1, '2025-09-19 12:54:12', 0, NULL, 0, NULL, 1),
(34699, 26924, '3', 'The Madras of university ', '', 'Bsc computer science with data science ', '2025', 72.00, '', 1, '2025-09-19 01:04:37', 1, '2025-09-19 01:04:50', 0, NULL, 1),
(34700, 26927, '5', 'Anna University ', '', 'B tech IT', '2025', 85.00, '', 1, '2025-09-19 02:20:32', 0, NULL, 0, NULL, 1),
(34701, 26920, '3', 'anna university', '', 'b.tech it', '2025', 75.00, '', 1, '2025-09-19 02:25:32', 0, NULL, 0, NULL, 1),
(34702, 26896, '3', 'St peters', '', 'B.sc computer science ', '2023', 75.30, '', 1, '2025-09-19 03:04:47', 0, NULL, 0, NULL, 1),
(34703, 26929, '3', 'Vallal P.T Lee Chengalvaraya Naicker Arts & Science College ', '', 'bBA', '2025', 75.00, '', 1, '2025-09-19 07:13:06', 0, NULL, 0, NULL, 1),
(34704, 26930, '3', 'Valla ptlee chengalvaraya naicker arts and science college ', '', 'BBA', '2025', 70.00, '', 1, '2025-09-20 04:40:31', 0, NULL, 0, NULL, 1),
(34705, 26932, '3', 'Guru nanak college ', '', 'Bsc. Visual communication ', '2023', 75.00, '', 1, '2025-09-20 06:15:00', 0, NULL, 0, NULL, 1),
(34706, 26933, '3', 'Madras University ', '', 'BBA', '2024', 75.80, '', 1, '2025-09-20 06:31:51', 0, NULL, 0, NULL, 1),
(34707, 26935, '3', 'Madras university ', '', 'Bachelor of commerce ', '2024', 62.00, '', 1, '2025-09-20 06:53:05', 0, NULL, 0, NULL, 1),
(34708, 26934, '3', 'Bhaktavatsalam Memorial College for Women ', '', 'B.sc computer science ', '2023', 76.81, '', 1, '2025-09-20 06:55:07', 0, NULL, 0, NULL, 1),
(34709, 26936, '3', 'Board', '', 'BSc statistics ', '2025', 60.00, '', 1, '2025-09-20 07:49:05', 0, NULL, 0, NULL, 1),
(34710, 26937, '3', 'State board ', '', 'Bsc computer science with data science ', '2025', 76.00, '', 1, '2025-09-20 08:33:35', 0, NULL, 0, NULL, 1),
(34711, 26941, '3', 'bharathidasan university ', '', 'Bsc Mathematics ', '2022', 75.50, '', 1, '2025-09-20 09:41:49', 0, NULL, 0, NULL, 1),
(34712, 26940, '3', 'Autonomous', '', 'B. Sc', '2025', 55.00, '', 1, '2025-09-20 09:44:01', 0, NULL, 0, NULL, 1),
(34713, 26942, '3', 'Mohamed sathak', '', 'BE mechanical ', '2019', 40.00, '', 1, '2025-09-20 09:51:41', 0, NULL, 0, NULL, 1),
(34714, 26943, '3', 'ANNA university ', '', 'BE', '2025', 83.00, '', 1, '2025-09-20 10:04:09', 0, NULL, 0, NULL, 1),
(34715, 26944, '4', 'karpagam academy of higher education', '', 'bcom ca', '2020', 6.50, '', 1, '2025-09-20 11:26:53', 0, NULL, 0, NULL, 1),
(34716, 26946, '3', 'Anna university ', '', 'B.Tech IT', '2025', 86.00, '', 1, '2025-09-20 12:40:06', 0, NULL, 0, NULL, 1),
(34717, 26946, '2', 'TNSBE', '', '', '2021', 88.00, '', 1, '2025-09-20 12:41:13', 0, NULL, 0, NULL, 1),
(34718, 26946, '1', 'TNSBE', '', '', '2019', 88.00, '', 1, '2025-09-20 12:41:27', 0, NULL, 0, NULL, 1),
(34719, 26951, '3', 'Anna university ', '', 'BE', '2023', 78.00, '', 1, '2025-09-22 03:59:37', 0, NULL, 0, NULL, 1),
(34720, 26886, '3', 'Arinar anna arts and since college ', '', 'B.com', '2025', 66.00, '', 1, '2025-09-22 05:38:03', 0, NULL, 0, NULL, 1),
(34721, 26886, '2', 'State board ', '', '', '2022', 71.00, '', 1, '2025-09-22 05:38:54', 1, '2025-09-22 05:39:39', 0, NULL, 1),
(34722, 26886, '1', 'State board ', '', '', '2020', 58.00, '', 1, '2025-09-22 05:39:24', 0, NULL, 0, NULL, 1),
(34723, 26952, '3', 'Madurai Kamarajar University ', '', 'BBA', '2025', 60.00, '', 1, '2025-09-22 05:51:46', 0, NULL, 0, NULL, 1),
(34724, 26953, '3', 'Thiruvallur university ', '', 'B.com', '2022', 65.00, '', 1, '2025-09-22 05:57:23', 0, NULL, 0, NULL, 1),
(34725, 26954, '1', 'DOTE', '', '', '2022', 70.00, '', 1, '2025-09-22 05:58:44', 0, NULL, 0, NULL, 1),
(34726, 26954, '5', 'DOTE ', '', 'Diploma mechanical engineering ', '2022', 70.00, '', 1, '2025-09-22 05:59:29', 0, NULL, 0, NULL, 1),
(34727, 26955, '3', 'Madras university ', '', 'B.com', '2015', 70.00, '', 1, '2025-09-22 06:34:30', 0, NULL, 0, NULL, 1),
(34728, 26956, '3', 'Annamalai University faculty of Engineering and Technology ', '', 'BE CSE', '2024', 7.28, '', 1, '2025-09-22 06:41:06', 0, NULL, 0, NULL, 1),
(34729, 26957, '5', 'tjs polytechnic college', '', '', '2015', 60.00, '', 1, '2025-09-22 06:52:00', 0, NULL, 0, NULL, 1),
(34730, 26945, '3', 'anna university', '', 'be', '2022', 75.00, '', 1, '2025-09-22 07:17:44', 0, NULL, 0, NULL, 1),
(34731, 26958, '3', 'madras university', '', 'B.A English ', '2015', 60.00, '', 1, '2025-09-22 07:35:29', 0, NULL, 0, NULL, 1),
(34732, 26958, '1', 'government girl high sec school', '', '', '2010', 51.00, '', 1, '2025-09-22 07:38:05', 0, NULL, 0, NULL, 1),
(34733, 26958, '2', 'government girl high sec school', '', '', '2012', 70.00, '', 1, '2025-09-22 07:39:16', 0, NULL, 0, NULL, 1),
(34734, 26959, '3', 'Mailam engineering college ', '', 'BE', '2024', 80.00, '', 1, '2025-09-22 07:39:17', 0, NULL, 0, NULL, 1),
(34735, 26959, '2', 'Sathya saai matric hr sec school ', '', '', '2020', 69.00, '', 1, '2025-09-22 07:41:07', 0, NULL, 0, NULL, 1),
(34736, 26960, '3', 'madras university', '', 'b.c.a', '2019', 78.00, '', 1, '2025-09-22 09:26:03', 0, NULL, 0, NULL, 1),
(34737, 26849, '1', 'Mahatma Montessori Matriculation Higher secondary School ', '', '', '2019', 91.60, '', 1, '2025-09-22 09:41:11', 0, NULL, 0, NULL, 1),
(34738, 26849, '2', 'CEOA Matriculation Higher Secondary School ', '', '', '2021', 87.60, '', 1, '2025-09-22 09:41:30', 0, NULL, 0, NULL, 1),
(34739, 26849, '3', 'Vels Institute of Science Technology and Advanced Studies ', '', 'B.E Computer Science ', '2025', 71.00, '', 1, '2025-09-22 09:41:53', 0, NULL, 0, NULL, 1),
(34740, 26961, '3', 'Skp engineering college', '', 'BE EEE', '2021', 8.00, '', 1, '2025-09-22 10:49:34', 0, NULL, 0, NULL, 1),
(34741, 26963, '3', 'University of madras', '', 'BBA ', '2025', 67.60, '', 1, '2025-09-22 12:07:02', 0, NULL, 0, NULL, 1),
(34742, 26964, '4', 'SRM INSTITUTE OF SCIENCE COLLEGE KATTAKULATHUR ', '', 'MBA', '2025', 72.00, '', 1, '2025-09-22 01:04:08', 0, NULL, 0, NULL, 1),
(34743, 26962, '3', 'University of Madras ', '', 'Bsc chemistry ', '2023', 75.00, '', 1, '2025-09-22 04:03:11', 1, '2025-09-22 04:03:41', 0, NULL, 1),
(34744, 26966, '4', 'Madras University ', '', 'MBA', '2024', 73.00, '', 1, '2025-09-23 02:04:48', 0, NULL, 0, NULL, 1),
(34745, 26966, '3', 'Madras University ', '', 'BBM ', '2022', 73.00, '', 1, '2025-09-23 02:11:43', 0, NULL, 0, NULL, 1),
(34746, 26967, '3', 'University of madras ', '', 'BCA', '2025', 65.00, '', 1, '2025-09-23 02:13:53', 0, NULL, 0, NULL, 1),
(34747, 26967, '2', 'State Board of School Examinations (Sec.) & Board of Higher Secondary Examination', '', '', '2022', 74.00, '', 1, '2025-09-23 02:15:30', 0, NULL, 0, NULL, 1),
(34748, 26967, '1', 'Directorate of Government Examination', '', '', '2020', 60.00, '', 1, '2025-09-23 02:16:12', 0, NULL, 0, NULL, 1),
(34749, 26965, '3', 'Anna University ', '', 'B.E', '2023', 72.00, '', 1, '2025-09-23 05:20:15', 0, NULL, 0, NULL, 1),
(34750, 26968, '3', 'Bharathidasan university ', '', 'Bsc-Computer Science ', '2022', 81.00, '', 1, '2025-09-23 05:28:47', 0, NULL, 0, NULL, 1),
(34751, 26969, '3', 'Autonomous ', '', 'B A ARABIC ', '2017', 75.00, '', 1, '2025-09-23 06:02:03', 0, NULL, 0, NULL, 1),
(34752, 26970, '3', 'Bangalore University ', '', 'Bcom', '2023', 91.00, '', 1, '2025-09-23 06:38:22', 0, NULL, 0, NULL, 1),
(34753, 26970, '4', 'Abbs school of management ', '', 'PGDM', '2025', 85.00, '', 1, '2025-09-23 06:39:09', 0, NULL, 0, NULL, 1),
(34754, 26970, '2', 'DEPARTMENT OF PRE UNIVERSITY EDUCATION ', '', '', '2018', 95.00, '', 1, '2025-09-23 06:39:56', 1, '2025-09-23 06:41:09', 0, NULL, 0),
(34755, 26970, '1', 'Karnataka school examination and assessment board', '', '', '2018', 86.00, '', 1, '2025-09-23 06:40:51', 1, '2025-09-23 06:41:27', 0, NULL, 1),
(34756, 26970, '2', 'DEPARTMENT OF PRE UNIVERSITY EDUCATION ', '', '', '2020', 95.00, '', 1, '2025-09-23 06:42:09', 0, NULL, 0, NULL, 1),
(34757, 26972, '3', 'Bhrath university', '', 'B com', '2025', 65.00, '', 1, '2025-09-23 10:44:54', 0, NULL, 0, NULL, 1),
(34758, 26974, '3', 'Bharathiar university', '', 'b.sc computer technology', '2023', 65.00, '', 1, '2025-09-23 04:12:49', 0, NULL, 0, NULL, 1),
(34759, 26975, '3', 'Jawaharlal Nehru technological ', '', 'B.Tech', '2022', 6.00, '', 1, '2025-09-24 04:45:28', 0, NULL, 0, NULL, 1),
(34760, 26977, '3', 'Mgr university ', '', 'BBA', '2025', 68.00, '', 1, '2025-09-24 05:24:20', 0, NULL, 0, NULL, 1),
(34761, 26979, '4', 'Manonmaniyam Sundranar University ', '', 'M com', '2024', 83.00, '', 1, '2025-09-24 05:52:30', 0, NULL, 0, NULL, 1),
(34762, 26978, '3', 'Bharathidasan', '', 'BCA', '2025', 70.20, '', 1, '2025-09-24 05:54:59', 0, NULL, 0, NULL, 1),
(34763, 26978, '2', 'Tamilnadu state bored', '', '', '2021', 82.50, '', 1, '2025-09-24 05:55:29', 0, NULL, 0, NULL, 1),
(34764, 26978, '1', 'Tamilnadu state bored', '', '', '2019', 76.50, '', 1, '2025-09-24 05:55:48', 0, NULL, 0, NULL, 1),
(34765, 26980, '4', 'University ', '', 'Master of Business Administration', '2025', 8.50, '', 1, '2025-09-24 06:03:43', 0, NULL, 0, NULL, 1),
(34766, 26981, '4', 'Anna University', '', 'Master of Business Administration', '2025', 86.00, '', 1, '2025-09-24 06:07:42', 0, NULL, 0, NULL, 1),
(34767, 26983, '3', 'University ', '', 'B.com computer applications ', '2025', 62.20, '', 1, '2025-09-24 06:35:13', 0, NULL, 0, NULL, 1),
(34768, 26984, '3', 'Kamarajar University ', '', 'Bsc It', '2022', 80.00, '', 1, '2025-09-24 06:57:37', 0, NULL, 0, NULL, 1),
(34769, 26985, '3', 'university of madras', '', 'b.com', '2024', 80.00, '', 1, '2025-09-24 07:17:14', 0, NULL, 0, NULL, 1),
(34770, 26985, '1', 'state board', '', '', '2019', 65.00, '', 1, '2025-09-24 07:17:55', 1, '2025-09-24 07:19:01', 0, NULL, 1),
(34771, 26985, '2', 'srate board', '', '', '2021', 80.00, '', 1, '2025-09-24 07:18:45', 0, NULL, 0, NULL, 1),
(34772, 26982, '4', 'madras University', '', 'ma hrm', '2023', 79.00, '', 1, '2025-09-24 07:25:24', 0, NULL, 0, NULL, 1),
(34773, 26982, '3', 'madras university', '', 'bcom colputer app', '2019', 65.00, '', 1, '2025-09-24 07:26:10', 0, NULL, 0, NULL, 1),
(34774, 26986, '3', 'Madras University ', '', 'Bachalor business administration ', '2025', 60.00, '', 1, '2025-09-24 09:25:27', 0, NULL, 0, NULL, 1),
(34775, 26987, '4', 'Quaid-e-Millath Government College for Women ', '', 'Master of Science ', '2021', 84.00, '', 1, '2025-09-24 10:54:16', 1, '2025-09-24 10:55:46', 0, NULL, 0),
(34776, 26987, '3', 'Ethiraj college for Women ', '', 'Bachelor of Science ', '2018', 70.00, '', 1, '2025-09-24 10:56:29', 0, NULL, 0, NULL, 1),
(34777, 26988, '3', 'Madras University ', '', 'Bsc statistics ', '2024', 65.00, '', 1, '2025-09-24 12:35:41', 0, NULL, 0, NULL, 1),
(34778, 26989, '3', 'anna university', '', 'be', '2026', 7.20, '', 1, '2025-09-24 01:06:02', 0, NULL, 0, NULL, 1),
(34779, 26990, '3', 'Affiliated with anna university ', '', 'B.E', '2027', 80.00, '', 1, '2025-09-24 04:08:03', 0, NULL, 0, NULL, 1),
(34780, 26991, '3', 'Affiliated with anna university ', '', 'B.E', '2027', 70.00, '', 1, '2025-09-24 04:14:28', 0, NULL, 0, NULL, 1),
(34781, 26993, '1', 'Board', '', '', '2020', 65.00, '', 1, '2025-09-25 07:04:11', 0, NULL, 0, NULL, 1),
(34782, 26993, '2', 'Board', '', '', '2022', 60.00, '', 1, '2025-09-25 07:04:32', 0, NULL, 0, NULL, 1),
(34783, 26993, '3', 'University of madras', '', 'B. Com', '2025', 75.00, '', 1, '2025-09-25 07:05:24', 0, NULL, 0, NULL, 1),
(34784, 26994, '3', 'Sir theagaraya college ', '', 'B.com (general)', '2025', 60.00, '', 1, '2025-09-25 07:32:52', 0, NULL, 0, NULL, 1),
(34785, 26995, '3', 'Sir theagaraya college ', '', 'B.com /general)', '2025', 50.00, '', 1, '2025-09-25 08:42:23', 0, NULL, 0, NULL, 1),
(34786, 26997, '3', 'Anna University ', '', 'B.E. Electronics and Instrumentation ', '2021', 77.00, '', 1, '2025-09-25 09:25:45', 0, NULL, 0, NULL, 1),
(34787, 26996, '3', 'Madras University ', '', 'B.com', '2024', 72.00, '', 1, '2025-09-25 09:38:21', 0, NULL, 0, NULL, 1),
(34788, 26998, '3', 'Anna University ', '', 'B.tech information technology ', '2025', 7.69, '', 1, '2025-09-25 10:10:00', 0, NULL, 0, NULL, 1),
(34789, 27000, '3', 'University ', '', 'Bsc Botany ', '2021', 85.00, '', 1, '2025-09-25 12:04:17', 0, NULL, 0, NULL, 1),
(34790, 26999, '3', 'bharathidisan university', '', 'bba', '2017', 60.00, '', 1, '2025-09-25 08:12:36', 0, NULL, 0, NULL, 1),
(34791, 27003, '3', 'University of Madras ', '', 'BCA ', '2025', 67.00, '', 1, '2025-09-26 01:51:29', 0, NULL, 0, NULL, 1),
(34792, 27002, '3', 'university  of kerala', '', 'Bsc mathematics ', '2025', 75.00, '', 1, '2025-09-26 04:44:52', 0, NULL, 0, NULL, 1),
(34793, 27004, '3', 'Anna University ', '', 'B.E', '2020', 6.40, '', 1, '2025-09-26 04:48:34', 0, NULL, 0, NULL, 1),
(34794, 27005, '3', 'Madras University ', '', 'Bachelor of computer application ', '2022', 72.00, '', 1, '2025-09-26 05:04:16', 0, NULL, 0, NULL, 1),
(34795, 27005, '2', 'Tnsc', '', '', '2019', 60.00, '', 1, '2025-09-26 05:05:03', 0, NULL, 0, NULL, 1),
(34796, 27005, '1', 'Tnsc', '', '', '2017', 86.00, '', 1, '2025-09-26 05:05:30', 0, NULL, 0, NULL, 1),
(34797, 27007, '3', 'Anna University ', '', 'B.E ', '2024', 80.00, '', 1, '2025-09-26 05:10:45', 0, NULL, 0, NULL, 1),
(34798, 27006, '3', 'Anna university ', '', 'BE', '2022', 83.80, '', 1, '2025-09-26 05:14:02', 0, NULL, 0, NULL, 1),
(34799, 27008, '3', 'Chendhuran college of engineering and technology ', '', 'B.E', '2020', 6.10, '', 1, '2025-09-26 05:19:16', 0, NULL, 0, NULL, 1),
(34800, 27009, '3', 'Madras University ', '', 'Bsc advance zoology and biotechnology ', '2025', 68.00, '', 1, '2025-09-26 05:25:18', 0, NULL, 0, NULL, 1),
(34801, 27012, '3', 'KARNATAKA UNIVERSITY  DHARWAD ', '', 'B COM', '2021', 68.16, '', 1, '2025-09-26 08:06:49', 0, NULL, 0, NULL, 1),
(34802, 27012, '1', 'KARNATAKA SECONDARY EDUCATION EXAMINATION BOARD ', '', '', '2018', 60.16, '', 1, '2025-09-26 08:09:44', 0, NULL, 0, NULL, 1),
(34803, 27012, '2', 'DEPARTMENT OF PRE UNIVERSITY EDUCATION ', '', '', '2018', 61.83, '', 1, '2025-09-26 08:11:21', 0, NULL, 0, NULL, 1),
(34804, 27013, '3', 'Pondicherry Technological University ', '', 'Bachelor of Technology ', '2025', 6.60, '', 1, '2025-09-26 08:18:10', 0, NULL, 0, NULL, 1),
(34805, 27015, '3', 'University of Madras ', '', 'Bcom ', '2025', 60.00, '', 1, '2025-09-26 08:38:38', 0, NULL, 0, NULL, 1),
(34806, 27016, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2025', 82.00, '', 1, '2025-09-26 09:19:51', 0, NULL, 0, NULL, 1),
(34807, 27014, '3', 'Anna University ', '', '', '2024', 7.50, '', 1, '2025-09-26 10:03:10', 0, NULL, 0, NULL, 1),
(34808, 27010, '4', 'Srm universit', '', 'MBA', '2025', 9.30, '', 159, '2025-09-26 03:33:43', 0, NULL, 0, NULL, 1),
(34809, 27018, '3', 'Deemed university ', '', 'B.com(Honours)', '2022', 81.00, '', 1, '2025-09-26 11:30:22', 0, NULL, 0, NULL, 1),
(34810, 27021, '3', 'Madras University ', '', 'Bba', '2025', 80.00, '', 1, '2025-09-27 04:58:19', 0, NULL, 0, NULL, 1),
(34811, 27022, '3', 'Madras University ', '', '', '2025', 70.00, '', 1, '2025-09-27 06:09:04', 0, NULL, 0, NULL, 1),
(34812, 27023, '4', 'Anna university ', '', 'MBA ', '2026', 7.30, '', 1, '2025-09-27 07:01:26', 0, NULL, 0, NULL, 1),
(34813, 27024, '3', 'University ', '', 'BSC (pmcs)', '2021', 63.42, '', 1, '2025-09-27 07:29:22', 0, NULL, 0, NULL, 1),
(34814, 27024, '1', 'Board', '', '', '2016', 75.52, '', 1, '2025-09-27 07:30:20', 0, NULL, 0, NULL, 1),
(34815, 27024, '2', 'Board ', '', '', '2018', 63.52, '', 1, '2025-09-27 07:30:50', 0, NULL, 0, NULL, 1),
(34816, 27025, '1', 'Madras University ', '', '', '2025', 70.00, '', 1, '2025-09-27 09:50:54', 0, NULL, 0, NULL, 1),
(34817, 27029, '2', 'State board', '', '', '2021', 67.00, '', 1, '2025-09-28 10:33:56', 0, NULL, 0, NULL, 1),
(34818, 27030, '3', 'Bharathidasan university ', '', 'Bcom', '2015', 80.00, '', 1, '2025-09-28 04:09:33', 0, NULL, 0, NULL, 1),
(34819, 27033, '1', 'AEM matriculation school ', '', '', '2019', 78.40, '', 1, '2025-09-29 04:28:39', 0, NULL, 0, NULL, 1),
(34820, 27031, '1', 'State board', '', '', '2017', 92.60, '', 1, '2025-09-29 04:28:47', 0, NULL, 0, NULL, 1),
(34821, 27033, '2', 'Daniel Matriculation Higher secondary school ', '', '', '2021', 81.00, '', 1, '2025-09-29 04:29:08', 0, NULL, 0, NULL, 1),
(34822, 27031, '2', 'State board ', '', '', '2019', 65.33, '', 1, '2025-09-29 04:29:11', 0, NULL, 0, NULL, 1),
(34823, 27033, '3', 'Agni college of technology ', '', 'BE computer science and Engineering ', '2025', 81.00, '', 1, '2025-09-29 04:29:38', 0, NULL, 0, NULL, 1),
(34824, 27031, '3', 'Anna University ', '', 'BE - Electrical and Electronics Engineering ', '2023', 79.00, '', 1, '2025-09-29 04:30:31', 0, NULL, 0, NULL, 1),
(34825, 27032, '3', 'Bharathiar university coimbatore ', '', 'Bsc computer science ', '2024', 6.60, '', 1, '2025-09-29 04:36:36', 0, NULL, 0, NULL, 1),
(34826, 27035, '4', 'Kalasalingam University', '', 'MCA', '2025', 81.00, '', 1, '2025-09-29 04:47:44', 0, NULL, 0, NULL, 1),
(34827, 27034, '3', 'Bharathiar University ', '', 'BSc Computer science ', '2024', 67.00, '', 1, '2025-09-29 04:51:41', 0, NULL, 0, NULL, 1),
(34828, 27037, '3', 'Annamalai University, Chidambaram.', '', 'BCA(Bachelor of Computer Applications)', '2025', 7.50, '', 1, '2025-09-29 05:12:02', 0, NULL, 0, NULL, 1),
(34829, 27038, '3', 'Jeppiaar Engineering College ', '', '', '2025', 75.00, '', 1, '2025-09-29 05:12:27', 0, NULL, 0, NULL, 1),
(34830, 27036, '4', 'Periyar University', '', 'M. sc Data science', '2023', 86.00, '', 1, '2025-09-29 05:14:40', 0, NULL, 0, NULL, 1),
(34831, 27039, '2', 'Mysore University ', '', '', '2013', 50.00, '', 1, '2025-09-29 06:30:47', 0, NULL, 0, NULL, 1),
(34832, 27040, '3', 'Madras University ', '', 'B.B.A', '2023', 70.00, '', 1, '2025-09-29 06:47:31', 0, NULL, 0, NULL, 1),
(34833, 27041, '1', 'Karnataka education board', '', '', '2002', 39.00, '', 1, '2025-09-29 06:52:20', 0, NULL, 0, NULL, 1),
(34834, 27041, '3', 'Kuvempu university ', '', 'Bcom ', '2015', 50.00, '', 1, '2025-09-29 06:53:08', 0, NULL, 0, NULL, 1),
(34835, 27042, '3', 'Madras ', '', 'B.com', '2025', 65.00, '', 1, '2025-09-29 07:17:39', 0, NULL, 0, NULL, 1),
(34836, 27044, '1', 'karnataka secondary education board ', '', '', '2016', 60.00, '', 1, '2025-09-29 07:19:36', 1, '2025-09-29 07:20:49', 0, NULL, 1),
(34837, 27044, '3', 'Gulbarga university ', '', 'Bsc', '2023', 7.60, '', 1, '2025-09-29 07:21:21', 0, NULL, 0, NULL, 1),
(34838, 27044, '2', 'Karnataka secondary education board ', '', '', '2019', 55.00, '', 1, '2025-09-29 07:21:57', 0, NULL, 0, NULL, 1),
(34839, 27043, '3', 'Madras University ', '', 'B com ', '2025', 70.00, '', 1, '2025-09-29 07:41:38', 0, NULL, 0, NULL, 1),
(34840, 27045, '3', 'Stella maris ', '', 'BA HISTORY AND TOURISM ', '2024', 50.00, '', 1, '2025-09-29 08:47:51', 0, NULL, 0, NULL, 1),
(34841, 27049, '3', 'SRM University ', '', 'B tech civil engineering ', '2018', 65.00, '', 1, '2025-09-29 12:25:45', 0, NULL, 0, NULL, 1),
(34842, 27048, '5', 'Institute of chemical technology ', '', 'Diploma in chemical engineer ', '2016', 70.00, '', 1, '2025-09-29 12:27:16', 0, NULL, 0, NULL, 1),
(34843, 27051, '3', 'Bangalore University ', '', 'BA', '2019', 59.00, '', 1, '2025-09-30 06:08:19', 0, NULL, 0, NULL, 1),
(34844, 27051, '1', 'Bangalore ', '', '', '2012', 60.00, '', 1, '2025-09-30 06:08:50', 0, NULL, 0, NULL, 1),
(34845, 27051, '2', 'Bangalore ', '', '', '2016', 55.00, '', 1, '2025-09-30 06:09:12', 0, NULL, 0, NULL, 1),
(34846, 27050, '3', 'Bharathidasan university ', '', 'Business administration ', '2024', 80.00, '', 1, '2025-09-30 07:20:39', 0, NULL, 0, NULL, 1),
(34847, 27052, '5', 'Dote ', '', 'Diploma ', '2023', 87.30, '', 1, '2025-09-30 09:24:30', 0, NULL, 0, NULL, 1),
(34848, 27053, '3', 'bharthidasan university', '', 'bsc.computerscience', '2023', 68.00, '', 1, '2025-10-02 01:50:33', 0, NULL, 0, NULL, 1),
(34849, 27054, '3', 'Anna university ', '', 'B.E mechanical engineering ', '2020', 67.89, '', 1, '2025-10-02 04:17:49', 0, NULL, 0, NULL, 1),
(34850, 27055, '3', 'andra university', '', 'bsc computer Science', '2024', 70.00, '', 1, '2025-10-03 02:40:25', 0, NULL, 0, NULL, 1),
(34851, 27057, '3', 'The kavery engineering college', '', 'BE', '2024', 8.00, '', 1, '2025-10-03 07:35:54', 0, NULL, 0, NULL, 1),
(34852, 27058, '2', 'Intermediate board of education ', '', '', '2014', 90.10, '', 1, '2025-10-03 07:51:53', 0, NULL, 0, NULL, 1),
(34853, 27059, '4', 'rani channamma University', '', 'bca', '2020', 59.00, '', 1, '2025-10-03 10:26:26', 0, NULL, 0, NULL, 1),
(34854, 27060, '3', 'D.B.Jain College,Thoraipakkam', '', 'B.Com ( general)', '2021', 60.00, '', 1, '2025-10-03 11:03:23', 0, NULL, 0, NULL, 1),
(34855, 27060, '2', 'P.A.K.Palanisamy Hr.Sec.School', '', '', '2018', 66.00, '', 1, '2025-10-03 11:04:12', 0, NULL, 0, NULL, 1),
(34856, 27064, '3', 'Srm arts and Science college ', '', 'BCA', '2020', 78.00, '', 1, '2025-10-04 05:33:43', 0, NULL, 0, NULL, 1),
(34857, 27064, '2', 'Shri Natesan vidhyasala MatHSC', '', '', '2016', 80.00, '', 1, '2025-10-04 05:34:59', 0, NULL, 0, NULL, 1),
(34858, 27064, '1', 'Shalom MatHSS', '', '', '2014', 88.00, '', 1, '2025-10-04 05:35:36', 0, NULL, 0, NULL, 1),
(34859, 27065, '3', 'osmania college ', '', 'bsc mpc', '2022', 85.00, '', 1, '2025-10-04 06:13:13', 0, NULL, 0, NULL, 1),
(34860, 27066, '4', 'Alagappa University, Karaikudi', '', 'MBA (LM)', '2024', 71.00, '', 1, '2025-10-04 08:30:09', 0, NULL, 0, NULL, 1),
(34861, 27069, '1', 'Bengaluru ', '', '', '2022', 67.00, '', 1, '2025-10-04 04:42:15', 0, NULL, 0, NULL, 1),
(34862, 27067, '3', 'University of Madras ', '', 'B.com', '2021', 76.00, '', 1, '2025-10-04 07:37:10', 0, NULL, 0, NULL, 1),
(34863, 27062, '3', 'VTU', '', 'BE', '2024', 67.00, '', 1, '2025-10-05 06:11:32', 1, '2025-10-05 06:12:44', 0, NULL, 0),
(34864, 27062, '1', 'Karnataka board ', '', '', '2016', 82.00, '', 1, '2025-10-05 06:13:27', 1, '2025-10-05 06:14:08', 0, NULL, 0),
(34865, 27062, '3', 'VTU', '', 'BE', '2024', 67.00, '', 1, '2025-10-05 06:13:59', 0, NULL, 0, NULL, 1),
(34866, 27063, '3', 'v t u university', '', 'be', '2024', 79.00, '', 1, '2025-10-05 01:37:12', 0, NULL, 0, NULL, 1),
(34867, 27072, '3', 'Anna University ', '', 'B.E', '2021', 69.00, '', 1, '2025-10-06 05:08:55', 0, NULL, 0, NULL, 1),
(34868, 27074, '4', 'Madras University ', '', 'MBA', '2024', 70.00, '', 1, '2025-10-06 05:17:02', 0, NULL, 0, NULL, 1),
(34869, 27073, '3', 'Madras university', '', 'BA Tourism and Travel Management', '2024', 70.00, '', 1, '2025-10-06 05:20:15', 0, NULL, 0, NULL, 1),
(34870, 27076, '3', 'Dhanalakshmi Srinivasan Engineering College, Perambalur ', '', 'BE CSE', '2025', 7.20, '', 1, '2025-10-06 05:39:37', 0, NULL, 0, NULL, 1),
(34871, 27075, '3', 'Madras university', '', 'BA Tourism and Travel Management', '2024', 72.00, '', 1, '2025-10-06 05:40:34', 0, NULL, 0, NULL, 1),
(34872, 27019, '3', 'Bharathiyar university ', '', 'B.COM ', '2025', 69.00, '', 1, '2025-10-06 05:43:14', 0, NULL, 0, NULL, 1),
(34873, 27077, '3', 'Bharathiyar University ', '', 'BBA Retail Management ', '2022', 86.00, '', 1, '2025-10-06 05:48:34', 0, NULL, 0, NULL, 1),
(34874, 27068, '3', 'sree sastha arts and science college', '', 'bsc visu Communication', '2025', 80.00, '', 1, '2025-10-06 05:51:55', 0, NULL, 0, NULL, 1),
(34875, 27068, '1', 'pon vidyashram cbse school', '', '', '2020', 70.40, '', 1, '2025-10-06 05:53:07', 0, NULL, 0, NULL, 1),
(34876, 27068, '2', 'pon vidyashram cbse school', '', '', '2022', 68.60, '', 1, '2025-10-06 05:53:33', 0, NULL, 0, NULL, 1),
(34877, 27078, '4', 'Anna University', '', 'MBA', '2025', 73.00, '', 1, '2025-10-06 05:54:33', 0, NULL, 0, NULL, 1),
(34878, 27061, '3', 'Anna University ', '', 'BE', '2025', 7.28, '', 1, '2025-10-06 05:57:52', 0, NULL, 0, NULL, 1),
(34879, 27080, '3', 'SRM University ', '', 'BBA ', '2026', 8.41, '', 1, '2025-10-06 06:00:06', 0, NULL, 0, NULL, 1),
(34880, 27079, '3', 'Anna University ', '', 'B E', '2025', 77.00, '', 1, '2025-10-06 06:03:35', 0, NULL, 0, NULL, 1),
(34881, 27081, '4', 'Bharathidasan university in Trichy ', '', 'MCA ', '2025', 85.00, '', 1, '2025-10-06 08:16:00', 0, NULL, 0, NULL, 1),
(34882, 27084, '1', 'state board of tamilnadu', '', '', '2016', 94.20, '', 1, '2025-10-06 01:10:19', 0, NULL, 0, NULL, 1),
(34883, 27084, '2', 'state board of tamilnadu', '', '', '2018', 85.10, '', 1, '2025-10-06 01:11:06', 0, NULL, 0, NULL, 1),
(34884, 27084, '3', 'manonmanium sundaranar university', '', 'bcomca', '2021', 80.00, '', 1, '2025-10-06 01:12:04', 0, NULL, 0, NULL, 1),
(34885, 27084, '4', 'bharathiyar university', '', 'mca', '2025', 79.00, '', 1, '2025-10-06 01:12:43', 0, NULL, 0, NULL, 1),
(34886, 27086, '4', 'mysore university', '', 'bba', '2023', 68.00, '', 1, '2025-10-07 04:36:05', 0, NULL, 0, NULL, 1),
(34887, 27087, '5', 'Anna University ', '', 'Diploma in mechanical engineering ', '2017', 75.00, '', 1, '2025-10-07 04:58:53', 0, NULL, 0, NULL, 1),
(34888, 27088, '3', 'Madras University ', '', 'BBA', '2020', 70.00, '', 1, '2025-10-07 05:23:34', 1, '2025-10-07 05:24:25', 0, NULL, 0),
(34889, 27088, '4', 'Madras University ', '', 'MBA', '2024', 72.00, '', 1, '2025-10-07 05:24:48', 0, NULL, 0, NULL, 1),
(34890, 27089, '3', 'Sri devi art\'s senice collage', '', 'BBA ', '2021', 75.00, '', 1, '2025-10-07 06:37:56', 0, NULL, 0, NULL, 1),
(34891, 27071, '3', 'alagappa university', '', 'bachelor of computer application', '2025', 86.00, '', 1, '2025-10-07 06:39:14', 0, NULL, 0, NULL, 1),
(34892, 27090, '3', 'Anna University ', '', 'Bachelor of engineering ', '2019', 80.00, '', 1, '2025-10-07 06:46:01', 0, NULL, 0, NULL, 1),
(34893, 27090, '1', 'Govt girls hr secondary school ', '', '', '2013', 91.00, '', 1, '2025-10-07 06:47:43', 0, NULL, 0, NULL, 1),
(34894, 27090, '2', 'Govt girls hr secondary school ', '', '', '2015', 70.00, '', 1, '2025-10-07 06:48:26', 0, NULL, 0, NULL, 1),
(34895, 27092, '3', 'Periyar University ', '', 'B. A English ', '2017', 63.00, '', 1, '2025-10-07 06:58:17', 0, NULL, 0, NULL, 1),
(34896, 27094, '4', 'unive of madras', '', 'msc cs', '2023', 86.00, '', 1, '2025-10-07 11:09:12', 0, NULL, 0, NULL, 1),
(34897, 27098, '3', 'National college', '', 'B.Com CA', '2025', 75.00, '', 1, '2025-10-08 05:37:58', 0, NULL, 0, NULL, 1),
(34898, 27099, '1', 'open schooling', '', '', '2017', 74.00, '', 1, '2025-10-08 05:52:05', 0, NULL, 0, NULL, 1),
(34899, 27102, '1', 'Anna university ', '', 'BE', '2015', 65.00, '', 1, '2025-10-08 07:40:37', 0, NULL, 0, NULL, 1),
(34900, 27102, '2', 'State board', '', '', '2011', 72.00, '', 1, '2025-10-08 07:41:18', 0, NULL, 0, NULL, 1),
(34901, 27102, '3', 'Anna university ', '', 'BE', '2015', 62.00, '', 1, '2025-10-08 07:41:52', 0, NULL, 0, NULL, 1),
(34902, 27100, '1', 'karnataka', '', '', '2016', 65.00, '', 1, '2025-10-08 07:45:14', 0, NULL, 0, NULL, 1),
(34903, 27100, '2', 'krupanidhi', '', '', '2018', 60.00, '', 1, '2025-10-08 07:45:36', 0, NULL, 0, NULL, 1),
(34904, 27100, '3', 'bangalore university', '', 'bcom ', '2022', 65.00, '', 1, '2025-10-08 07:46:32', 0, NULL, 0, NULL, 1),
(34905, 27103, '3', 'Bharathidasan university ', '', 'Bsc IT ', '2025', 75.00, '', 1, '2025-10-08 07:51:12', 0, NULL, 0, NULL, 1),
(34906, 27104, '3', 'Anna University ', '', 'BE', '2020', 70.00, '', 1, '2025-10-08 08:05:28', 0, NULL, 0, NULL, 1),
(34907, 27106, '3', 'Sri Shakthi Institute of Engineering and technology ', '', 'BE', '2025', 7.22, '', 1, '2025-10-08 08:53:23', 0, NULL, 0, NULL, 1),
(34908, 27107, '3', 'Madras University ', '', 'B.sc computer science', '2025', 77.00, '', 1, '2025-10-08 08:57:34', 0, NULL, 0, NULL, 1),
(34909, 27105, '4', 'Deemed  university', '', 'Mba hrm', '2025', 75.00, '', 1, '2025-10-08 09:00:30', 0, NULL, 0, NULL, 1),
(34910, 27101, '3', 'Anna Unversity', '', 'Bachelor of Mechanical Engineering', '2024', 85.00, '', 1, '2025-10-08 09:23:39', 0, NULL, 0, NULL, 1),
(34911, 27110, '4', 'MS University ', '', 'Master of commerce ', '2024', 83.00, '', 1, '2025-10-08 09:38:08', 0, NULL, 0, NULL, 1),
(34912, 27108, '3', 'Madras university', '', 'BA literature', '2024', 60.00, '', 1, '2025-10-08 10:06:46', 0, NULL, 0, NULL, 1),
(34913, 27109, '3', 'Madras University ', '', '', '2024', 66.00, '', 1, '2025-10-08 10:09:09', 0, NULL, 0, NULL, 1),
(34914, 27111, '3', 'Karunya University ', '', 'B.tech computer science and engineering ', '2025', 60.00, '', 1, '2025-10-08 10:17:55', 0, NULL, 0, NULL, 1),
(34915, 27113, '1', 'Madras University of Chennai ', '', '', '2022', 74.00, '', 1, '2025-10-08 05:22:32', 0, NULL, 0, NULL, 1),
(34916, 27114, '3', 'univer of madras ', '', 'ba english ', '2021', 75.00, '', 1, '2025-10-09 05:32:27', 0, NULL, 0, NULL, 1),
(34917, 27116, '5', 'm ei polyte ', '', '', '2019', 74.00, '', 1, '2025-10-09 08:46:30', 0, NULL, 0, NULL, 1),
(34918, 27117, '4', 'anna  university', '', 'be cse', '2025', 77.00, '', 1, '2025-10-09 09:23:46', 0, NULL, 0, NULL, 1),
(34919, 27118, '4', 'University of Madras ', '', 'M.A English literature ', '2025', 70.00, '', 1, '2025-10-09 09:30:53', 0, NULL, 0, NULL, 1),
(34920, 25568, '3', 'University of Madras ', '', 'B.a English literature ', '2023', 62.00, '', 1, '2025-10-09 09:38:17', 0, NULL, 0, NULL, 1),
(34921, 27119, '3', 'Meenakshi college of engineering ', '', 'B tech information technology ', '2025', 7.40, '', 1, '2025-10-09 09:38:30', 0, NULL, 0, NULL, 1),
(34922, 27121, '4', 'University of Madras ', '', 'M.Sc Maths', '2021', 78.00, '', 1, '2025-10-09 01:26:02', 0, NULL, 0, NULL, 1),
(34923, 27122, '3', 'anna university', '', 'b.e', '2025', 75.00, '', 1, '2025-10-10 01:04:13', 0, NULL, 0, NULL, 1),
(34924, 27123, '3', 'Anna University ', '', 'BE-CSE ', '2025', 81.00, '', 1, '2025-10-10 04:13:29', 0, NULL, 0, NULL, 1),
(34925, 27124, '3', 'Anna University ', '', 'BE computer science ', '2020', 75.00, '', 1, '2025-10-10 06:59:28', 0, NULL, 0, NULL, 1),
(34926, 27125, '1', 'zphs', '', '', '2015', 67.00, '', 1, '2025-10-10 07:18:22', 0, NULL, 0, NULL, 1),
(34927, 27125, '2', 'sathya sai', '', '', '2017', 73.00, '', 1, '2025-10-10 07:18:46', 0, NULL, 0, NULL, 1),
(34928, 27125, '3', 'jntu', '', ' btech', '2021', 63.00, '', 1, '2025-10-10 07:19:13', 0, NULL, 0, NULL, 1),
(34929, 27128, '3', 'Anna university ', '', 'BTECH /ECE', '2021', 7.65, '', 1, '2025-10-10 09:08:25', 0, NULL, 0, NULL, 1),
(34930, 27130, '3', 'veltech university', '', 'b.com', '2025', 7.10, '', 1, '2025-10-10 10:53:00', 0, NULL, 0, NULL, 1),
(34931, 27133, '3', 'Umayal Ramanathan College For Women ', '', 'Bsc computer science ', '2020', 70.00, '', 1, '2025-10-11 05:24:04', 0, NULL, 0, NULL, 1),
(34932, 27134, '1', 'cbse', '', 'b.e', '2019', 62.00, '', 1, '2025-10-11 05:33:57', 0, NULL, 0, NULL, 1),
(34933, 27134, '2', 'cbse', '', '', '2021', 74.00, '', 1, '2025-10-11 05:35:42', 0, NULL, 0, NULL, 1),
(34934, 27134, '3', 'vel tech multitech', '', 'b.e', '2025', 65.00, '', 1, '2025-10-11 05:36:14', 0, NULL, 0, NULL, 1),
(34935, 27132, '3', 'universal ', '', 'bcom (cA)', '2025', 70.00, '', 1, '2025-10-11 05:46:25', 0, NULL, 0, NULL, 1),
(34936, 27136, '1', 'Medrass University ', '', '', '2020', 60.00, '', 1, '2025-10-11 06:37:12', 0, NULL, 0, NULL, 1),
(34937, 27136, '2', 'Medrass University ', '', '', '2022', 56.00, '', 1, '2025-10-11 06:37:35', 0, NULL, 0, NULL, 1),
(34938, 27136, '3', 'Medrass University ', '', 'B.COM (ACCOUNTING AND FINANCE)', '2025', 64.00, '', 1, '2025-10-11 06:38:07', 0, NULL, 0, NULL, 1),
(34939, 27137, '1', 'Board', '', 'B.com(A/F)', '2020', 50.00, '', 1, '2025-10-11 06:41:56', 0, NULL, 0, NULL, 1),
(34940, 27135, '3', 'Madras university', '', 'B.sc', '2011', 89.00, '', 1, '2025-10-11 06:42:05', 0, NULL, 0, NULL, 1),
(34941, 27137, '2', 'Board', '', '', '2022', 65.00, '', 1, '2025-10-11 06:42:36', 0, NULL, 0, NULL, 1),
(34942, 27137, '3', 'University of Madras ', '', 'B.com (A/F)', '2025', 67.00, '', 1, '2025-10-11 06:43:31', 0, NULL, 0, NULL, 1),
(34943, 27139, '4', 'Madras University ', '', 'MA English ', '2025', 71.00, '', 1, '2025-10-11 07:27:07', 0, NULL, 0, NULL, 1),
(34944, 27140, '4', 'Madras University ', '', 'MA English ', '2025', 73.14, '', 1, '2025-10-11 07:47:32', 0, NULL, 0, NULL, 1),
(34945, 27140, '4', 'Madras University ', '', 'MA English ', '2025', 73.14, '', 1, '2025-10-11 07:48:10', 0, NULL, 0, NULL, 1),
(34946, 27141, '3', 'Government arts and science college Ariyalur', '', 'BA ENGLISH ', '2018', 85.00, '', 1, '2025-10-11 09:21:00', 0, NULL, 0, NULL, 1),
(34947, 27142, '3', 'Anna university ', '', 'B.E computer science ', '2021', 70.00, '', 1, '2025-10-11 09:23:24', 0, NULL, 0, NULL, 1),
(34948, 27146, '3', 'Madras university ', '', 'Bsc psychology ', '2025', 70.00, '', 1, '2025-10-11 10:19:52', 0, NULL, 0, NULL, 1),
(34949, 27150, '5', 'anna university', '', 'mechanical engineering', '2020', 71.00, '', 1, '2025-10-11 01:26:13', 0, NULL, 0, NULL, 1),
(34950, 27151, '3', 'Madras university ', '', 'BCA', '2025', 72.00, '', 1, '2025-10-11 01:57:27', 0, NULL, 0, NULL, 1),
(34951, 27152, '3', 'Madras University ', '', 'Bcom A&F', '2025', 73.00, '', 1, '2025-10-13 04:41:15', 0, NULL, 0, NULL, 1),
(34952, 27153, '3', 'Periyar University ', '', 'B.com', '2017', 55.00, '', 1, '2025-10-13 04:42:05', 0, NULL, 0, NULL, 1),
(34953, 27154, '5', 'Central polytechnic college ', '', 'Computer technology ', '2024', 67.00, '', 1, '2025-10-13 05:18:50', 0, NULL, 0, NULL, 1),
(34954, 27155, '3', 'Bharathiyar University ', '', 'Bsc.computer science ', '2022', 84.00, '', 1, '2025-10-13 05:49:04', 0, NULL, 0, NULL, 1),
(34955, 27157, '4', 'SASTRA demand to be university', '', 'Msc computer science', '2025', 6.30, '', 1, '2025-10-13 06:14:32', 0, NULL, 0, NULL, 1),
(34956, 27156, '4', 'Madurai Kamaraj University ', '', 'BCA, MBA', '2022', 72.00, '', 1, '2025-10-13 06:19:52', 0, NULL, 0, NULL, 1),
(34957, 27156, '3', 'Maharani Lakshmi Ammani college', '', 'BCA', '2018', 68.00, '', 1, '2025-10-13 06:20:52', 0, NULL, 0, NULL, 1),
(34958, 27149, '3', 'Thiruvalluver university ', '', 'B.sc.botany', '2021', 65.00, '', 1, '2025-10-13 06:24:25', 0, NULL, 0, NULL, 1),
(34959, 27158, '3', 'womens christian college', '', 'bba', '2025', 7.80, '', 1, '2025-10-13 07:10:41', 0, NULL, 0, NULL, 1),
(34960, 27160, '4', 'madras university', '', 'b.com general', '2023', 79.00, '', 1, '2025-10-13 07:37:16', 0, NULL, 0, NULL, 1),
(34961, 27160, '1', 'emmanuel matric hr sec school', '', '', '2018', 80.00, '', 1, '2025-10-13 07:38:18', 0, NULL, 0, NULL, 1),
(34962, 27160, '2', 'st marys matric he sec school', '', '', '2020', 80.00, '', 1, '2025-10-13 07:39:32', 0, NULL, 0, NULL, 1),
(34963, 27161, '3', 'Mononmaniam Sundharanar University', '', 'B. Com', '2024', 75.00, '', 1, '2025-10-13 08:24:58', 0, NULL, 0, NULL, 1),
(34964, 27162, '3', 'Madras university', '', 'B sc computer science', '2025', 65.00, '', 1, '2025-10-13 08:47:01', 0, NULL, 0, NULL, 1),
(34965, 27163, '3', 'University of Madras ', '', 'BA economics', '2021', 74.00, '', 1, '2025-10-13 09:05:57', 0, NULL, 0, NULL, 1),
(34966, 27164, '3', 'Madras University ', '', 'Bsc', '2025', 71.00, '', 1, '2025-10-13 09:21:29', 0, NULL, 0, NULL, 1),
(34967, 27165, '3', 'Madras University ', '', 'BBA', '2024', 72.00, '', 1, '2025-10-13 09:42:37', 0, NULL, 0, NULL, 1),
(34968, 27166, '2', 'Jgg hr sec school ', '', '', '2018', 65.00, '', 1, '2025-10-13 09:47:21', 0, NULL, 0, NULL, 1),
(34969, 27159, '3', 'Patrician college of arts and science ', '', 'B com', '2025', 65.65, '', 1, '2025-10-13 10:13:14', 1, '2025-10-13 10:14:24', 0, NULL, 0),
(34970, 27159, '1', 'State Board ', '', '', '2020', 64.20, '', 1, '2025-10-13 10:14:01', 1, '2025-10-13 10:14:38', 0, NULL, 0),
(34971, 27159, '2', 'State Board ', '', '', '2022', 77.00, '', 1, '2025-10-13 10:14:53', 1, '2025-10-13 10:14:59', 0, NULL, 0),
(34972, 27159, '1', 'State Board ', '', '', '2020', 64.20, '', 1, '2025-10-13 10:15:12', 0, NULL, 0, NULL, 1),
(34973, 27159, '2', 'State Board ', '', '', '2022', 77.00, '', 1, '2025-10-13 10:15:25', 0, NULL, 0, NULL, 1),
(34974, 27159, '3', 'Patrician college of arts and science ', '', 'B. Com', '2025', 65.65, '', 1, '2025-10-13 10:15:52', 0, NULL, 0, NULL, 1),
(34975, 27168, '1', 'zilla parishath high school', '', '', '2018', 8.30, '', 1, '2025-10-13 11:13:24', 0, NULL, 0, NULL, 1),
(34976, 27168, '2', 'swamy vivekananda junior college', '', '', '2020', 8.32, '', 1, '2025-10-13 11:14:33', 0, NULL, 0, NULL, 1),
(34977, 27168, '3', 'sri venkateshwara institute of technology', '', 'btech', '2024', 7.88, '', 1, '2025-10-13 11:15:17', 0, NULL, 0, NULL, 1),
(34978, 27167, '1', 'apms', '', '', '2018', 7.70, '', 1, '2025-10-13 11:18:47', 0, NULL, 0, NULL, 1),
(34979, 27167, '2', 'sln junior college', '', '', '2020', 81.30, '', 1, '2025-10-13 11:19:19', 0, NULL, 0, NULL, 1),
(34980, 27167, '3', 'jntua', '', 'btech', '2024', 7.48, '', 1, '2025-10-13 11:20:02', 0, NULL, 0, NULL, 1),
(34981, 27169, '3', 'University of madras', '', 'Bsc computer science', '2025', 80.00, '', 1, '2025-10-13 12:59:55', 0, NULL, 0, NULL, 1),
(34982, 27172, '3', 'Anna University ', '', 'BE CSE', '2017', 71.00, '', 1, '2025-10-14 04:54:07', 0, NULL, 0, NULL, 1),
(34983, 27173, '3', 'University of Madras ', '', 'b.com', '2025', 68.00, '', 1, '2025-10-14 05:30:42', 0, NULL, 0, NULL, 1),
(34984, 27174, '3', 'Metras university ', '', 'B.com(cs)', '2025', 53.00, '', 1, '2025-10-14 05:35:31', 0, NULL, 0, NULL, 1),
(34985, 27175, '3', 'Autonomous ', '', 'B.A corporate economic ', '2025', 75.00, '', 1, '2025-10-14 05:36:23', 0, NULL, 0, NULL, 1),
(34986, 27177, '3', 'Ethiraj college for women ', '', 'B.com(Accounting and Finance)', '2025', 71.00, '', 1, '2025-10-14 05:43:25', 0, NULL, 0, NULL, 1),
(34987, 27178, '3', 'Karnataka University ', '', 'Bsc', '2023', 76.00, '', 1, '2025-10-14 05:54:07', 0, NULL, 0, NULL, 1),
(34988, 27179, '2', 'Cpm', '', '', '2021', 70.00, '', 1, '2025-10-14 05:56:50', 0, NULL, 0, NULL, 1),
(34989, 27180, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 84.00, '', 1, '2025-10-14 07:31:53', 0, NULL, 0, NULL, 1),
(34990, 27181, '3', 'Anna university ', '', 'BE computer science and engineering ', '2025', 70.00, '', 1, '2025-10-14 11:37:29', 0, NULL, 0, NULL, 1),
(34991, 27182, '3', 'Anna university ', '', 'B tech information technology ', '2024', 60.00, '', 1, '2025-10-14 12:31:23', 0, NULL, 0, NULL, 1),
(34992, 27184, '5', 'vels university', '', 'diploma in viscom', '2022', 65.00, '', 1, '2025-10-14 01:06:56', 0, NULL, 0, NULL, 1),
(34993, 27183, '4', 'Crescent University ', '', 'MCA', '2025', 7.80, '', 1, '2025-10-14 09:29:34', 0, NULL, 0, NULL, 1),
(34994, 27183, '3', 'Crescent University ', '', 'BCA', '2023', 8.00, '', 1, '2025-10-14 09:30:06', 0, NULL, 0, NULL, 1),
(34995, 27186, '3', 'Rajeshwari vedhachalan arts and science college ', '', 'BCA', '2022', 76.00, '', 1, '2025-10-15 05:37:53', 0, NULL, 0, NULL, 1),
(34996, 27187, '3', 'Anna University ', '', 'B.E. CSE', '2016', 61.00, '', 1, '2025-10-15 05:52:29', 0, NULL, 0, NULL, 1),
(34997, 27187, '2', 'SR Government Girls Higher Secondary school', '', '', '2012', 70.00, '', 1, '2025-10-15 05:56:24', 0, NULL, 0, NULL, 1),
(34998, 27187, '1', 'SR government girls higher secondary school ', '', '', '2010', 74.00, '', 1, '2025-10-15 05:56:55', 0, NULL, 0, NULL, 1),
(34999, 27190, '3', 'Madras University', '', 'BA business economic', '2019', 65.00, '', 1, '2025-10-15 01:30:57', 0, NULL, 0, NULL, 1),
(35000, 27190, '2', 'State governmentState government', '', '', '2016', 50.00, '', 1, '2025-10-15 01:33:37', 0, NULL, 0, NULL, 1),
(35001, 27189, '3', 'anna university', '', 'electronics and communication engineering', '2025', 77.00, '', 1, '2025-10-15 02:10:38', 0, NULL, 0, NULL, 1),
(35002, 27191, '4', 'alagappa University ', '', 'masters in business administration', '2025', 69.00, '', 1, '2025-10-15 02:11:33', 0, NULL, 0, NULL, 1),
(35003, 27189, '2', 'board', '', '', '2021', 82.00, '', 1, '2025-10-15 02:12:23', 1, '2025-10-15 02:13:15', 0, NULL, 0),
(35004, 27194, '1', 'state board', '', '', '2017', 96.00, '', 1, '2025-10-15 05:49:21', 0, NULL, 0, NULL, 1),
(35005, 27194, '2', 'state board', '', '', '2019', 72.00, '', 1, '2025-10-15 05:49:46', 0, NULL, 0, NULL, 1),
(35006, 27194, '3', 'bharath university', '', 'bsc computer science', '2022', 79.00, '', 1, '2025-10-15 05:50:27', 0, NULL, 0, NULL, 1),
(35007, 27196, '3', 'Anna University ', '', 'B.E-C.S.E', '2023', 7.80, '', 1, '2025-10-16 05:11:56', 0, NULL, 0, NULL, 1),
(35008, 27197, '3', 'Madras ', '', 'BCA', '2025', 65.00, '', 1, '2025-10-16 05:25:15', 0, NULL, 0, NULL, 1),
(35009, 27198, '3', 'Madras University', '', 'B com ', '2025', 70.00, '', 1, '2025-10-16 05:30:25', 0, NULL, 0, NULL, 1),
(35010, 27188, '3', 'Madras University ', '', 'B.com Genral', '2019', 65.00, '', 1, '2025-10-16 05:35:40', 0, NULL, 0, NULL, 1),
(35011, 27199, '3', 'Anna University ', '', 'B.tech ', '2025', 79.00, '', 1, '2025-10-16 06:05:39', 0, NULL, 0, NULL, 1),
(35012, 27200, '3', 'Anna University ', '', 'B.tech', '2025', 80.00, '', 1, '2025-10-16 06:05:48', 0, NULL, 0, NULL, 1),
(35013, 27199, '1', 'state board  of tamilnadu ', '', '', '2019', 74.00, '', 1, '2025-10-16 06:06:29', 0, NULL, 0, NULL, 1),
(35014, 27200, '2', ' State board of tamil nadu', '', '', '2021', 82.00, '', 1, '2025-10-16 06:06:31', 0, NULL, 0, NULL, 1),
(35015, 27199, '2', 'State board of tamilnadu ', '', '', '2021', 80.00, '', 1, '2025-10-16 06:06:47', 0, NULL, 0, NULL, 1),
(35016, 27200, '1', 'State board of tamil nadu', '', '', '2019', 77.00, '', 1, '2025-10-16 06:06:53', 0, NULL, 0, NULL, 1),
(35017, 27195, '3', 'University of Madras ', '', 'Bcom', '2025', 62.00, '', 1, '2025-10-16 06:23:00', 0, NULL, 0, NULL, 1),
(35018, 27201, '3', 'University of madras ', '', 'B.A english ', '2020', 50.00, '', 1, '2025-10-16 06:44:00', 0, NULL, 0, NULL, 1),
(35019, 27201, '1', 'Tamilnadu', '', '', '2014', 60.00, '', 1, '2025-10-16 06:45:17', 0, NULL, 0, NULL, 1),
(35020, 27201, '2', 'Tamil nadu', '', '', '2016', 60.00, '', 1, '2025-10-16 06:45:43', 0, NULL, 0, NULL, 1),
(35021, 27185, '3', 'Bharathidasan ', '', 'B.sc physics ', '2025', 57.00, '', 1, '2025-10-16 07:29:01', 0, NULL, 0, NULL, 1),
(35022, 27202, '3', 'anna university', '', 'be.ece', '2024', 79.00, '', 1, '2025-10-16 07:55:38', 0, NULL, 0, NULL, 1),
(35023, 27204, '4', 'north University ', '', 'mba', '2024', 70.00, '', 1, '2025-10-16 08:54:31', 0, NULL, 0, NULL, 1),
(35024, 27206, '3', 'State board ', '', 'B.com', '2025', 62.00, '', 1, '2025-10-16 10:59:38', 0, NULL, 0, NULL, 1),
(35025, 27208, '3', 'Madras University ', '', 'BA', '2023', 70.00, '', 1, '2025-10-16 12:56:26', 0, NULL, 0, NULL, 1),
(35026, 27209, '3', 'autonomous ', '', 'bachelors  of engineering ', '2024', 7.03, '', 1, '2025-10-16 01:34:17', 0, NULL, 0, NULL, 1),
(35027, 27209, '5', 'dote', '', 'diploma', '2021', 79.00, '', 1, '2025-10-16 01:34:57', 0, NULL, 0, NULL, 1),
(35028, 27209, '1', 'state board ', '', '', '2018', 78.00, '', 1, '2025-10-16 01:35:18', 0, NULL, 0, NULL, 1),
(35029, 27210, '3', 'vels university', '', 'be cse', '2025', 6.92, '', 1, '2025-10-16 01:38:57', 1, '2025-10-16 01:39:36', 0, NULL, 0),
(35030, 27210, '3', 'vels university', '', 'be cse', '2025', 6.92, '', 1, '2025-10-16 01:40:22', 0, NULL, 0, NULL, 1),
(35031, 27210, '2', 'state board', '', '', '2021', 74.00, '', 1, '2025-10-16 01:40:51', 0, NULL, 0, NULL, 1),
(35032, 27210, '1', 'state board', '', '', '2019', 63.00, '', 1, '2025-10-16 01:41:26', 1, '2025-10-16 01:45:01', 0, NULL, 0),
(35033, 27211, '3', 'Vels University ', '', 'BE.CSE', '2025', 70.00, '', 1, '2025-10-16 04:23:34', 0, NULL, 0, NULL, 1),
(35034, 27212, '3', 'Guru nanak college', '', 'Bsc', '2022', 83.00, '', 1, '2025-10-17 06:09:30', 0, NULL, 0, NULL, 1),
(35035, 27213, '2', 'STATE', '', '', '2022', 60.00, '', 1, '2025-10-17 06:20:07', 0, NULL, 0, NULL, 1),
(35036, 27214, '2', 'State board of Tamil Nadu', '', '', '2020', 69.00, '', 1, '2025-10-17 06:41:22', 0, NULL, 0, NULL, 1),
(35037, 27214, '1', 'State board of Tamil Nadu ', '', '', '2022', 71.00, '', 1, '2025-10-17 06:41:44', 0, NULL, 0, NULL, 1),
(35038, 27214, '3', 'SRM UNIVERSITY RAMAPURAM ', '', 'BCA - BACHELOR OF COMPUTER APPLICATIONS ', '2025', 81.00, '', 1, '2025-10-17 06:42:21', 1, '2025-10-17 06:44:07', 0, NULL, 1),
(35039, 27216, '3', 'Bharathidasan University ', '', 'BSc Computer science ', '2023', 74.00, '', 1, '2025-10-17 06:56:30', 0, NULL, 0, NULL, 1),
(35040, 27216, '2', 'State Board ', '', '', '2020', 67.00, '', 1, '2025-10-17 06:57:02', 0, NULL, 0, NULL, 1),
(35041, 27216, '1', 'State Board ', '', '', '2018', 87.60, '', 1, '2025-10-17 06:57:32', 0, NULL, 0, NULL, 1),
(35042, 27215, '3', 'University ', '', ' bca  computer application', '2025', 74.20, '', 1, '2025-10-17 06:57:36', 0, NULL, 0, NULL, 1),
(35043, 27205, '3', 'State board ', '', 'Bachelor of computer application ', '2025', 64.00, '', 1, '2025-10-17 07:08:03', 0, NULL, 0, NULL, 1),
(35044, 27217, '3', 'Madras University ', '', 'B.com (Information Systems Management )', '2025', 78.20, '', 1, '2025-10-17 07:14:28', 0, NULL, 0, NULL, 1),
(35045, 27219, '3', 'Madras University ', '', 'BA criminology ', '2025', 72.00, '', 1, '2025-10-17 08:15:58', 0, NULL, 0, NULL, 1),
(35046, 27221, '4', 'vels university', '', 'mba', '2025', 65.00, '', 1, '2025-10-17 10:09:07', 0, NULL, 0, NULL, 1),
(35047, 27221, '3', 'guru nanak', '', 'bcom', '2023', 60.00, '', 1, '2025-10-17 10:09:43', 1, '2025-10-17 10:09:57', 0, NULL, 1),
(35048, 27220, '3', 'Mumbai university ', '', 'BA.commerce', '2019', 7.20, '', 1, '2025-10-17 10:24:39', 0, NULL, 0, NULL, 1),
(35049, 27223, '3', 'JNTUK', '', 'B.Tech', '2024', 80.00, '', 1, '2025-10-17 02:40:30', 0, NULL, 0, NULL, 1),
(35050, 27224, '1', 'stateboard of tamilnadu', '', '', '2016', 88.00, '', 1, '2025-10-17 06:35:55', 1, '2025-10-17 06:37:24', 0, NULL, 1),
(35051, 27224, '2', 'stateboard of tamilnadu', '', '', '2018', 66.00, '', 1, '2025-10-17 06:36:24', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(35052, 27224, '3', 'anna university', '', 'b.e - omputer science and engineering', '2018', 77.00, '', 1, '2025-10-17 06:37:11', 0, NULL, 0, NULL, 1),
(35053, 26814, '3', 'Anna University ', '', 'B.Tech Information technology ', '2024', 70.00, '', 1, '2025-10-17 07:42:47', 0, NULL, 0, NULL, 1),
(35054, 26814, '2', 'State board ', '', '', '2020', 70.00, '', 1, '2025-10-17 07:43:10', 0, NULL, 0, NULL, 1),
(35055, 26814, '1', 'State board ', '', '', '2018', 84.00, '', 1, '2025-10-17 07:43:21', 0, NULL, 0, NULL, 1),
(35056, 27225, '1', 'StateBoard', '', '', '2017', 89.00, '', 1, '2025-10-18 03:04:17', 0, NULL, 0, NULL, 1),
(35057, 27225, '2', 'StateBoard', '', '', '2019', 61.00, '', 1, '2025-10-18 03:04:33', 0, NULL, 0, NULL, 1),
(35058, 27225, '3', 'Anna University', '', 'BE EEE', '2023', 79.00, '', 1, '2025-10-18 03:04:58', 0, NULL, 0, NULL, 1),
(35059, 27226, '3', 'University ', '', 'BA English ', '2020', 70.00, '', 1, '2025-10-18 04:05:48', 0, NULL, 0, NULL, 1),
(35060, 27227, '3', 'Bharathidasan university ', '', 'Bsc computer science ', '2025', 73.00, '', 1, '2025-10-18 05:48:44', 0, NULL, 0, NULL, 1),
(35061, 27218, '3', 'am jain college', '', 'b.com Corporate secarataryship', '2025', 60.00, '', 1, '2025-10-20 02:39:27', 0, NULL, 0, NULL, 1),
(35062, 27230, '3', 'univer of madras', '', 'bca', '2024', 67.00, '', 1, '2025-10-20 04:19:09', 0, NULL, 0, NULL, 1),
(35063, 27231, '3', 'Anna University ', '', 'Bachelor of technology ', '2025', 89.00, '', 1, '2025-10-21 03:51:42', 0, NULL, 0, NULL, 1),
(35064, 27231, '2', 'Tamil nadu', '', '', '2021', 86.70, '', 1, '2025-10-21 03:52:26', 0, NULL, 0, NULL, 1),
(35065, 27231, '1', 'Tamil nadu', '', '', '2019', 83.70, '', 1, '2025-10-21 03:52:48', 0, NULL, 0, NULL, 1),
(35066, 27233, '3', 'Bharathidasan university ', '', 'BSC maths and Java full stack ', '2023', 65.00, '', 1, '2025-10-21 09:22:15', 0, NULL, 0, NULL, 1),
(35067, 27233, '2', 'Tamil Nadu state board ', '', '', '2020', 51.00, '', 1, '2025-10-21 09:23:00', 0, NULL, 0, NULL, 1),
(35068, 27233, '1', 'State board Tamil Nadu ', '', '', '2018', 71.00, '', 1, '2025-10-21 09:24:01', 0, NULL, 0, NULL, 1),
(35069, 27236, '3', 'Anna university ', '', 'BE CSE ', '2023', 79.00, '', 1, '2025-10-21 10:25:56', 0, NULL, 0, NULL, 1),
(35070, 27236, '1', 'State board', '', '', '2017', 89.00, '', 1, '2025-10-21 10:26:46', 0, NULL, 0, NULL, 1),
(35071, 27232, '3', 'Periyar university ', '', 'Bsc', '2023', 80.00, '', 1, '2025-10-21 11:24:23', 0, NULL, 0, NULL, 1),
(35072, 27237, '3', 'Anna university ', '', 'BE CSE ', '2025', 7.40, '', 1, '2025-10-21 11:47:13', 0, NULL, 0, NULL, 1),
(35073, 27238, '4', 'Anna university affiliated', '', 'CSE', '2025', 79.70, '', 1, '2025-10-22 06:04:45', 0, NULL, 0, NULL, 1),
(35074, 27238, '3', 'Anna university', '', 'ECE', '2023', 80.10, '', 1, '2025-10-22 06:05:17', 0, NULL, 0, NULL, 1),
(35075, 27238, '2', 'State board', '', '', '2019', 65.50, '', 1, '2025-10-22 06:08:49', 1, '2025-10-22 06:10:02', 0, NULL, 1),
(35076, 27238, '1', 'State board', '', '', '2017', 88.80, '', 1, '2025-10-22 06:10:37', 0, NULL, 0, NULL, 1),
(35077, 27239, '3', 'Madras university ', '', 'B.COM', '2018', 75.00, '', 1, '2025-10-22 06:54:59', 0, NULL, 0, NULL, 1),
(35078, 27240, '3', 'university college of engineering anna university', '', 'computer science and engineering', '2024', 78.00, '', 1, '2025-10-22 09:30:43', 1, '2025-10-22 09:33:23', 0, NULL, 0),
(35079, 27240, '3', 'university college of engineeering anna university', '', 'computer science and engineering', '2024', 78.00, '', 1, '2025-10-22 09:34:33', 0, NULL, 0, NULL, 1),
(35080, 27241, '3', 'Periyar University ', '', 'B.Com(Accounting & Finance)', '2024', 76.00, '', 1, '2025-10-22 10:36:10', 0, NULL, 0, NULL, 1),
(35081, 27235, '2', 'University college of Engineering Arni', '', '', '2022', 70.00, '', 1, '2025-10-22 01:26:32', 0, NULL, 0, NULL, 1),
(35082, 27242, '4', 'Anna ', '', 'ME', '2023', 83.00, '', 1, '2025-10-22 01:49:25', 0, NULL, 0, NULL, 1),
(35083, 27244, '3', 'University of madras', '', 'BBA financial management', '2025', 82.50, '', 1, '2025-10-23 04:21:56', 0, NULL, 0, NULL, 1),
(35084, 27246, '3', 'Madras University ', '', 'B.sc', '2025', 75.00, '', 1, '2025-10-23 05:33:06', 0, NULL, 0, NULL, 1),
(35085, 27247, '3', 'Bangalore North University ', '', 'Bachelor of Arts', '2022', 86.00, '', 1, '2025-10-23 07:04:40', 0, NULL, 0, NULL, 1),
(35086, 27248, '3', 'university of madras', '', '', '2024', 59.00, '', 1, '2025-10-23 07:29:08', 0, NULL, 0, NULL, 1),
(35087, 27250, '4', 'Dr MGR university educational and research institute ', '', 'MBA ', '2026', 7.34, '', 1, '2025-10-23 09:09:42', 0, NULL, 0, NULL, 1),
(35088, 27249, '3', 'Erode sengunthar engineering college ', '', 'B.tech', '2024', 78.00, '', 1, '2025-10-23 09:11:16', 0, NULL, 0, NULL, 1),
(35089, 27249, '1', 'Mangalam higher secondary school ', '', '', '2018', 66.00, '', 1, '2025-10-23 09:11:50', 0, NULL, 0, NULL, 1),
(35090, 27251, '4', 'Bharathiyar university ', '', 'MSc computer science ', '2021', 75.00, '', 1, '2025-10-23 09:14:07', 0, NULL, 0, NULL, 1),
(35091, 27251, '3', 'Bharathidhasan univercity ', '', 'BSc computer science ', '2019', 65.00, '', 1, '2025-10-23 09:15:17', 1, '2025-10-23 09:15:38', 0, NULL, 1),
(35092, 27245, '3', 'madurai kamarajar university', '', 'ba.english', '2025', 50.00, '', 1, '2025-10-23 09:57:32', 0, NULL, 0, NULL, 1),
(35093, 27245, '2', 'state board', '', '', '2022', 75.00, '', 1, '2025-10-23 09:58:00', 0, NULL, 0, NULL, 1),
(35094, 27245, '1', 'state board', '', '', '2020', 60.00, '', 1, '2025-10-23 09:58:29', 0, NULL, 0, NULL, 1),
(35095, 27254, '3', 'University of Madras ', '', 'BCA', '2024', 6.50, '', 1, '2025-10-23 11:40:57', 0, NULL, 0, NULL, 1),
(35096, 27257, '1', 'State Board', '', '', '2019', 85.00, '', 1, '2025-10-23 01:11:22', 0, NULL, 0, NULL, 1),
(35097, 27257, '2', 'State Board ', '', '', '2021', 86.00, '', 1, '2025-10-23 01:11:45', 0, NULL, 0, NULL, 1),
(35098, 27257, '3', 'Anna University ', '', 'B.Tech Computer Science and Business System ', '2025', 74.00, '', 1, '2025-10-23 01:12:08', 0, NULL, 0, NULL, 1),
(35099, 27258, '3', 'Autonomous ', '', 'Bsc computer science ', '2025', 60.00, '', 1, '2025-10-23 01:36:14', 0, NULL, 0, NULL, 1),
(35100, 27259, '3', 'kamarajar university', '', 'b a.  economics', '2023', 78.00, '', 1, '2025-10-23 02:02:26', 0, NULL, 0, NULL, 1),
(35101, 27255, '3', 'anna university', '', 'agriculture engineering', '2023', 81.60, '', 1, '2025-10-24 04:44:59', 0, NULL, 0, NULL, 1),
(35102, 27260, '3', 'University of madras ', '', 'Bsc.computer science ', '2025', 70.00, '', 1, '2025-10-24 05:00:21', 0, NULL, 0, NULL, 1),
(35103, 27261, '3', 'Anna University ', '', 'B.Tech - Information Technology ', '2025', 75.00, '', 1, '2025-10-24 05:44:43', 0, NULL, 0, NULL, 1),
(35104, 27261, '2', 'State Board ', '', '', '2021', 84.00, '', 1, '2025-10-24 05:45:18', 0, NULL, 0, NULL, 1),
(35105, 27261, '1', 'State Board ', '', '', '2019', 73.00, '', 1, '2025-10-24 05:45:31', 0, NULL, 0, NULL, 1),
(35106, 27253, '3', 'Bharathiar university ', '', 'Bsc', '2022', 64.00, '', 1, '2025-10-24 05:52:05', 0, NULL, 0, NULL, 1),
(35107, 27262, '4', 'Valliammal college for women ', '', 'Biochemistry ', '2025', 75.00, '', 1, '2025-10-24 06:05:47', 0, NULL, 0, NULL, 1),
(35108, 27262, '3', 'Valliammal college for women ', '', 'Biochemistry ', '2023', 79.00, '', 1, '2025-10-24 06:06:13', 0, NULL, 0, NULL, 1),
(35109, 27262, '2', 'Avichi Higher secondary school ', '', '', '2020', 60.00, '', 1, '2025-10-24 06:06:44', 0, NULL, 0, NULL, 1),
(35110, 27262, '1', 'Avichi Higher secondary school ', '', '', '2018', 80.00, '', 1, '2025-10-24 06:07:23', 0, NULL, 0, NULL, 1),
(35111, 27263, '5', 'Anna university ', '', 'DEEE', '2019', 75.00, '', 1, '2025-10-24 06:21:31', 0, NULL, 0, NULL, 1),
(35112, 27265, '1', 'state board of tamilnadu', '', '', '2018', 83.00, '', 1, '2025-10-24 07:06:38', 0, NULL, 0, NULL, 1),
(35113, 27265, '2', 'state board of tamilnadu ', '', '', '2020', 73.00, '', 1, '2025-10-24 07:07:12', 0, NULL, 0, NULL, 1),
(35114, 27265, '3', 'deemed univertsity', '', 'b.tech', '2024', 81.00, '', 1, '2025-10-24 07:07:59', 0, NULL, 0, NULL, 1),
(35115, 27267, '3', 'anna university', '', 'Bachelor of Engineering - BE', '2020', 60.30, '', 1, '2025-10-24 11:07:45', 0, NULL, 0, NULL, 1),
(35116, 27268, '4', 'anna University ', '', 'mca', '2024', 70.00, '', 1, '2025-10-24 12:23:24', 1, '2025-10-24 12:25:28', 0, NULL, 1),
(35117, 27268, '3', 'madurai kamaraj University', '', 'b.com with computer application', '2021', 68.00, '', 1, '2025-10-24 12:24:28', 1, '2025-10-24 12:25:12', 0, NULL, 1),
(35118, 27269, '3', 'university of madras', '', 'bca', '2023', 73.00, '', 1, '2025-10-24 01:22:55', 0, NULL, 0, NULL, 1),
(35119, 27269, '2', 'state board', '', '', '2020', 75.00, '', 1, '2025-10-24 01:23:24', 0, NULL, 0, NULL, 1),
(35120, 27269, '1', 'state board', '', '', '2018', 88.00, '', 1, '2025-10-24 01:23:46', 0, NULL, 0, NULL, 1),
(35121, 27270, '1', 'cbse', '', 'b.com', '2019', 61.00, '', 1, '2025-10-25 04:21:35', 1, '2025-10-25 04:21:56', 0, NULL, 0),
(35122, 27270, '1', 'cbse', '', '', '2019', 61.00, '', 1, '2025-10-25 04:22:22', 0, NULL, 0, NULL, 1),
(35123, 27270, '2', 'state board', '', '', '2021', 78.00, '', 1, '2025-10-25 04:22:38', 0, NULL, 0, NULL, 1),
(35124, 27270, '3', 'guru nanak college', '', 'b.com', '2024', 70.00, '', 1, '2025-10-25 04:23:05', 0, NULL, 0, NULL, 1),
(35125, 27252, '3', 'Anna university ', '', 'BE', '2018', 6.34, '', 1, '2025-10-25 04:38:33', 0, NULL, 0, NULL, 1),
(35126, 27271, '3', 'Anna University ', '', 'B Tech information technology ', '2025', 76.00, '', 1, '2025-10-25 05:12:07', 0, NULL, 0, NULL, 1),
(35127, 27272, '3', 'Bharathidaasan university ', '', 'B. Sc mathematics ', '2019', 77.00, '', 1, '2025-10-25 05:30:18', 0, NULL, 0, NULL, 1),
(35128, 27274, '3', 'The American college ', '', 'B.sc', '2023', 71.00, '', 1, '2025-10-25 06:12:10', 0, NULL, 0, NULL, 1),
(35129, 27275, '1', 'C. S. I rajagopal he sec school', '', '', '2011', 57.00, '', 1, '2025-10-25 06:59:39', 0, NULL, 0, NULL, 1),
(35130, 27277, '3', 'Anna University ', '', 'B.E', '2022', 8.20, '', 1, '2025-10-25 10:27:46', 0, NULL, 0, NULL, 1),
(35131, 27279, '4', 'Annamalai university', '', 'Msc - information technology', '2023', 76.00, '', 1, '2025-10-25 11:43:19', 0, NULL, 0, NULL, 1),
(35132, 27278, '3', 'anna university', '', 'be', '2025', 83.00, '', 1, '2025-10-25 12:04:04', 0, NULL, 0, NULL, 1),
(35133, 27281, '4', 'Annamalai University ', '', 'Mba', '2020', 72.00, '', 1, '2025-10-25 12:58:31', 0, NULL, 0, NULL, 1),
(35134, 27281, '3', 'Avc Autonomous ', '', 'Bba', '2018', 61.00, '', 1, '2025-10-25 12:59:05', 0, NULL, 0, NULL, 1),
(35135, 27281, '2', 'State Board', '', '', '2015', 61.00, '', 1, '2025-10-25 12:59:28', 0, NULL, 0, NULL, 1),
(35136, 27281, '1', 'State Board ', '', '', '2013', 61.00, '', 1, '2025-10-25 01:00:17', 0, NULL, 0, NULL, 1),
(35137, 27282, '3', 'university of madras', '', 'bca', '2025', 84.00, '', 1, '2025-10-25 05:46:21', 0, NULL, 0, NULL, 1),
(35138, 27283, '3', 'Madras University ', '', 'BCA', '2025', 79.00, '', 1, '2025-10-25 05:47:00', 0, NULL, 0, NULL, 1),
(35139, 19546, '1', 'State board ', '', '', '2017', 89.00, '', 1, '2025-10-25 11:56:11', 1, '2025-10-25 11:58:03', 0, NULL, 1),
(35140, 19546, '2', 'Stateboard', '', '', '2019', 56.00, '', 1, '2025-10-25 11:56:31', 1, '2025-10-25 11:57:43', 0, NULL, 1),
(35141, 19546, '3', 'Anna University', '', 'B. Tech-Information Technology', '2023', 78.00, '', 1, '2025-10-25 11:57:22', 0, NULL, 0, NULL, 1),
(35142, 27285, '4', 'vels university', '', 'mca', '2024', 70.00, '', 1, '2025-10-27 01:02:23', 0, NULL, 0, NULL, 1),
(35143, 27264, '3', 'Periyar University ', '', 'Bsc chemistry ', '2024', 69.00, '', 1, '2025-10-27 04:41:06', 0, NULL, 0, NULL, 1),
(35144, 27284, '3', 'Madrasa university ', '', 'Bsc', '2023', 70.00, '', 1, '2025-10-27 05:47:59', 0, NULL, 0, NULL, 1),
(35145, 27287, '3', 'University ', '', 'B.Tech IT', '2025', 7.94, '', 1, '2025-10-27 05:59:28', 0, NULL, 0, NULL, 1),
(35146, 27287, '2', 'Board', '', '', '2021', 82.90, '', 1, '2025-10-27 06:00:27', 0, NULL, 0, NULL, 1),
(35147, 27286, '1', 'Andhrapradesh ', '', '', '2015', 67.00, '', 1, '2025-10-27 06:06:10', 0, NULL, 0, NULL, 1),
(35148, 27286, '2', 'Andhra Pradesh ', '', '', '2018', 82.00, '', 1, '2025-10-27 06:08:25', 1, '2025-10-27 06:10:34', 0, NULL, 1),
(35149, 27286, '3', 'Anna university ', '', 'B tech INFORMATION TECHNOLOGY ', '2023', 69.00, '', 1, '2025-10-27 06:09:02', 0, NULL, 0, NULL, 1),
(35150, 27289, '3', 'Bharathiyar ', '', 'B.sc.IT', '2024', 6.70, '', 1, '2025-10-27 06:49:59', 0, NULL, 0, NULL, 1),
(35151, 27288, '3', 'Jeppiaar Institute Of Technology ', '', 'B.TEch Information Technology ', '2025', 7.60, '', 1, '2025-10-27 07:02:17', 0, NULL, 0, NULL, 1),
(35152, 27290, '3', 'Anna university', '', 'B. Com general', '2023', 69.00, '', 1, '2025-10-27 07:02:33', 0, NULL, 0, NULL, 1),
(35153, 27288, '2', 'Revoor Padmanabha Chetty’s Matric Higher Secondary School', '', '', '2021', 78.32, '', 1, '2025-10-27 07:03:41', 0, NULL, 0, NULL, 1),
(35154, 27291, '3', 'Karpagam academy of higher education ', '', 'B com', '2025', 6.66, '', 1, '2025-10-27 07:19:16', 0, NULL, 0, NULL, 1),
(35155, 27293, '3', 'dr. mgr. educational and Research Institute ', '', 'b.tech cse', '2022', 6.36, '', 1, '2025-10-27 09:26:11', 0, NULL, 0, NULL, 1),
(35156, 27292, '3', 'Justice basheer ahmed sayeed college for women ', '', 'B.com', '2025', 71.00, '', 1, '2025-10-27 09:28:00', 0, NULL, 0, NULL, 1),
(35157, 27292, '2', 'Government girls\' higher secondary school Ashok Nagar ', '', '', '2022', 74.00, '', 1, '2025-10-27 09:28:33', 0, NULL, 0, NULL, 1),
(35158, 27292, '1', 'Government girls\' higher secondary school Ashok Nagar ', '', '', '2020', 58.00, '', 1, '2025-10-27 09:28:52', 0, NULL, 0, NULL, 1),
(35159, 27294, '1', 'State board', '', '', '2017', 68.00, '', 1, '2025-10-27 02:24:58', 1, '2025-10-27 02:25:48', 0, NULL, 1),
(35160, 27294, '2', 'State Board ', '', '', '2019', 61.00, '', 1, '2025-10-27 02:26:05', 0, NULL, 0, NULL, 1),
(35161, 27294, '3', 'Anna university ', '', 'B.E Computer science ', '2023', 82.00, '', 1, '2025-10-27 02:26:32', 0, NULL, 0, NULL, 1),
(35162, 27295, '3', 'Madras University ', '', 'BSC(computer science)', '2022', 70.00, '', 1, '2025-10-28 04:54:27', 154, '2025-10-28 10:50:22', 0, NULL, 1),
(35163, 27297, '3', 'The new college ', '', 'BCA', '2024', 70.00, '', 1, '2025-10-28 05:43:29', 0, NULL, 0, NULL, 1),
(35164, 27296, '3', 'Anna university', '', 'BE', '2024', 80.00, '', 1, '2025-10-28 05:46:43', 0, NULL, 0, NULL, 1),
(35165, 27298, '1', 'AP state board ', '', '', '2017', 8.00, '', 1, '2025-10-28 05:53:28', 0, NULL, 0, NULL, 1),
(35166, 27300, '4', 'bharathidasan university', '', 'mca', '2025', 70.30, '', 1, '2025-10-28 05:53:37', 0, NULL, 0, NULL, 1),
(35167, 27298, '2', 'AP board', '', '', '2019', 7.80, '', 1, '2025-10-28 05:54:05', 0, NULL, 0, NULL, 1),
(35168, 27298, '3', 'YVU', '', 'Bcom', '2022', 8.00, '', 1, '2025-10-28 05:54:31', 0, NULL, 0, NULL, 1),
(35169, 27298, '4', 'ANNAMACHARYA INSTITUTE OF TECHNOLOGY AND SCIENCE ', '', 'MBA (HR Finance)', '2025', 8.90, '', 1, '2025-10-28 05:55:22', 0, NULL, 0, NULL, 1),
(35170, 27299, '4', 'Annamacharya institute of technology and science,rajampet ', '', '', '2025', 8.40, '', 1, '2025-10-28 05:57:27', 0, NULL, 0, NULL, 1),
(35171, 27301, '3', 'Bharathiyar university ', '', 'BSC. Computer science ', '2024', 70.10, '', 1, '2025-10-28 05:58:07', 0, NULL, 0, NULL, 1),
(35172, 27299, '3', 'Yogi vemana university ', '', 'Palakondraya degree college ', '2023', 7.50, '', 1, '2025-10-28 05:59:29', 0, NULL, 0, NULL, 1),
(35173, 27299, '2', 'Ap board of Intermediate college ', '', '', '2020', 6.20, '', 1, '2025-10-28 06:01:55', 0, NULL, 0, NULL, 1),
(35174, 27299, '1', 'ZPHS High School ', '', '', '2018', 9.00, '', 1, '2025-10-28 06:02:14', 0, NULL, 0, NULL, 1),
(35175, 27304, '3', 'MADURAI Kamaraj University ', '', 'BA english ', '2017', 52.00, '', 1, '2025-10-28 06:21:00', 0, NULL, 0, NULL, 1),
(35176, 27304, '2', 'State board ', '', '', '2014', 83.00, '', 1, '2025-10-28 06:21:20', 0, NULL, 0, NULL, 1),
(35177, 27304, '1', 'State Board ', '', '', '2012', 76.00, '', 1, '2025-10-28 06:21:37', 0, NULL, 0, NULL, 1),
(35178, 27305, '3', 'Anna University ', '', 'BE', '2025', 78.00, '', 1, '2025-10-28 06:34:35', 0, NULL, 0, NULL, 1),
(35179, 27306, '3', 'GFGC sirsi', '', 'B.Com', '2022', 70.00, '', 1, '2025-10-28 06:43:54', 0, NULL, 0, NULL, 1),
(35180, 27309, '3', 'Madras University ', '', 'B.com ism', '2019', 73.00, '', 1, '2025-10-28 09:42:52', 0, NULL, 0, NULL, 1),
(35181, 27313, '3', 'Rajalakshmi Institute of technology ', '', 'BE', '2024', 78.20, '', 1, '2025-10-28 12:52:44', 0, NULL, 0, NULL, 1),
(35182, 27313, '1', 'Kaligi Ranganathan Monford Matric Higher secondary school ', '', '', '2018', 77.40, '', 1, '2025-10-28 12:53:37', 0, NULL, 0, NULL, 1),
(35183, 27313, '2', 'Kaligi Ranganathan Monford Matric Higher secondary school ', '', '', '2020', 64.50, '', 1, '2025-10-28 12:53:54', 0, NULL, 0, NULL, 1),
(35184, 27314, '4', 'University of Madras ', '', 'Bsc computer science ', '2025', 65.00, '', 1, '2025-10-28 04:56:56', 0, NULL, 0, NULL, 1),
(35185, 27311, '3', 'k ramakrishnan college of technology - anna university', '', 'b.tech - artificial intelligence and data science', '2025', 71.25, '', 1, '2025-10-28 05:20:27', 1, '2025-10-28 05:23:46', 0, NULL, 1),
(35186, 27311, '2', 'Dr. G.S.K Matric Hr Sec School, Mayiladuthurai', '', '', '2021', 87.00, '', 1, '2025-10-28 05:21:29', 1, '2025-10-28 05:24:07', 0, NULL, 1),
(35187, 27311, '1', 'Amalorpavam Hr Secondary School, Puducherry', '', '', '2019', 84.00, '', 1, '2025-10-28 05:23:04', 1, '2025-10-28 05:24:36', 0, NULL, 1),
(35188, 27303, '1', 'Starboard ', '', '', '2019', 70.00, '', 1, '2025-10-29 04:48:02', 0, NULL, 0, NULL, 1),
(35189, 27303, '2', 'Starboard ', '', '', '2021', 77.00, '', 1, '2025-10-29 04:48:19', 0, NULL, 0, NULL, 1),
(35190, 27303, '3', 'Anna University ', '', 'B.E', '2025', 7.89, '', 1, '2025-10-29 04:48:39', 0, NULL, 0, NULL, 1),
(35191, 27317, '3', 'Anna university', '', 'BE CSE', '2025', 77.00, '', 1, '2025-10-29 04:55:06', 0, NULL, 0, NULL, 1),
(35192, 27317, '2', 'State board', '', '', '2021', 73.00, '', 1, '2025-10-29 04:55:46', 0, NULL, 0, NULL, 1),
(35193, 27316, '4', 'University of madras ', '', 'B.com', '2024', 57.00, '', 1, '2025-10-29 04:58:33', 0, NULL, 0, NULL, 1),
(35194, 27316, '4', 'University of madras ', '', 'B.com', '2024', 57.00, '', 1, '2025-10-29 04:59:35', 1, '2025-10-29 05:02:27', 0, NULL, 0),
(35195, 27318, '3', 'Apollo Arts And Science College', '', 'BCA', '2023', 76.00, '', 1, '2025-10-29 05:20:14', 0, NULL, 0, NULL, 1),
(35196, 27266, '3', 'Anna university', '', 'B. E', '2024', 85.00, '', 1, '2025-10-29 05:33:49', 0, NULL, 0, NULL, 1),
(35197, 27320, '3', 'Madras University ', '', 'B. A(History)', '2025', 70.00, '', 1, '2025-10-29 05:46:39', 0, NULL, 0, NULL, 1),
(35198, 27321, '3', 'Anna University ', '', 'B.E', '2025', 84.00, '', 1, '2025-10-29 05:49:22', 0, NULL, 0, NULL, 1),
(35199, 27315, '3', 'Anna University ', '', 'B tech', '2024', 75.00, '', 1, '2025-10-29 05:56:40', 0, NULL, 0, NULL, 1),
(35200, 27315, '1', 'State board', '', '', '2018', 82.00, '', 1, '2025-10-29 05:57:12', 0, NULL, 0, NULL, 1),
(35201, 27315, '2', 'State board ', '', '', '2020', 62.00, '', 1, '2025-10-29 05:57:35', 0, NULL, 0, NULL, 1),
(35202, 27322, '3', 'Rajalakshmi Institute of Technology ', '', 'BTech Artificial intelligence and Data science ', '2025', 7.45, '', 1, '2025-10-29 06:10:50', 0, NULL, 0, NULL, 1),
(35203, 27323, '3', 'Anna University ', '', 'B.E', '2025', 77.00, '', 1, '2025-10-29 07:38:30', 0, NULL, 0, NULL, 1),
(35204, 27324, '5', 'anna university', '', 'computer engineering', '2021', 93.00, '', 1, '2025-10-29 08:27:46', 0, NULL, 0, NULL, 1),
(35205, 27326, '1', 'State board ', '', '', '2019', 80.00, '', 1, '2025-10-29 09:27:36', 0, NULL, 0, NULL, 1),
(35206, 27326, '2', 'State board', '', '', '2021', 86.00, '', 1, '2025-10-29 09:27:57', 0, NULL, 0, NULL, 1),
(35207, 27327, '3', 'Madras University ', '', 'BBA', '2024', 63.90, '', 1, '2025-10-29 09:56:00', 0, NULL, 0, NULL, 1),
(35208, 27325, '3', 'deemed university', '', 'B.Tech Computer  Science and Engineering', '2023', 74.00, '', 1, '2025-10-29 10:19:58', 0, NULL, 0, NULL, 1),
(35209, 27325, '1', 'state board', '', '', '2017', 87.00, '', 1, '2025-10-29 10:23:21', 0, NULL, 0, NULL, 1),
(35210, 27325, '2', 'state board', '', '', '2019', 67.00, '', 1, '2025-10-29 10:23:41', 0, NULL, 0, NULL, 1),
(35211, 27302, '5', 'P.T.lee chengalvaraya naicker polytechnic college ', '', 'Diploma in computer engineering ', '2024', 54.00, '', 1, '2025-10-29 02:28:45', 0, NULL, 0, NULL, 1),
(35212, 27329, '3', 'St.peters college ', '', 'BCA ', '2023', 71.00, '', 1, '2025-10-30 06:12:55', 0, NULL, 0, NULL, 1),
(35213, 27332, '3', 'Periyar University ', '', 'B.C.A', '2025', 69.40, '', 1, '2025-10-30 01:37:23', 0, NULL, 0, NULL, 1),
(35214, 27328, '3', 'Anna University ', '', 'B.E/ Mechanical engineering ', '2025', 7.80, '', 1, '2025-10-30 01:51:23', 0, NULL, 0, NULL, 1),
(35215, 27334, '3', 'Anna University ', '', 'BE CSE', '2024', 70.02, '', 1, '2025-10-31 05:36:49', 0, NULL, 0, NULL, 1),
(35216, 27334, '1', 'Tamil State board ', '', '', '2018', 70.00, '', 1, '2025-10-31 05:37:39', 0, NULL, 0, NULL, 1),
(35217, 27334, '2', 'Tamil Nadu State board ', '', '', '2020', 65.00, '', 1, '2025-10-31 05:38:10', 0, NULL, 0, NULL, 1),
(35218, 27335, '5', 'GPT', '', 'NOT APPLICABLE ', '2024', 60.00, '', 1, '2025-10-31 05:46:49', 0, NULL, 0, NULL, 1),
(35219, 27335, '1', 'KARNATAKA STATE BOARD ', '', '', '2020', 76.00, '', 1, '2025-10-31 05:47:25', 0, NULL, 0, NULL, 1),
(35220, 27336, '1', 'Government higher secondary school ', '', 'Msc', '2015', 75.00, '', 1, '2025-10-31 06:13:13', 1, '2025-10-31 06:14:08', 0, NULL, 0),
(35221, 27336, '2', 'Government higher secondary school ', '', '', '2017', 67.00, '', 1, '2025-10-31 06:13:37', 0, NULL, 0, NULL, 1),
(35222, 27336, '1', 'Government higher secondary school ', '', '', '2015', 75.00, '', 1, '2025-10-31 06:14:45', 0, NULL, 0, NULL, 1),
(35223, 27336, '3', 'Bharathidasan university ', '', 'Bsc', '2020', 75.00, '', 1, '2025-10-31 06:15:08', 0, NULL, 0, NULL, 1),
(35224, 27336, '4', 'Bharathidasan university ', '', 'Msc', '2022', 89.00, '', 1, '2025-10-31 06:15:33', 0, NULL, 0, NULL, 1),
(35225, 27338, '1', 'Board of secondary education ', '', '', '2018', 8.20, '', 1, '2025-10-31 08:42:19', 0, NULL, 0, NULL, 1),
(35226, 27337, '3', 'Thiruvalluvar University ', '', 'Computer Science ', '2021', 78.84, '', 1, '2025-10-31 08:45:02', 0, NULL, 0, NULL, 1),
(35227, 27339, '3', 'University of Madras ', '', 'Bcom', '2024', 71.00, '', 1, '2025-10-31 11:04:00', 0, NULL, 0, NULL, 1),
(35228, 27340, '3', 'Bharathi arts and science women college', '', 'B sc geography', '2023', 80.00, '', 1, '2025-10-31 12:15:30', 0, NULL, 0, NULL, 1),
(35229, 27341, '1', 'Bethel matric higher secondary school ', '', '', '2018', 72.20, '', 1, '2025-10-31 01:20:23', 1, '2025-10-31 01:24:03', 0, NULL, 1),
(35230, 27341, '2', 'Bethel matric higher secondary school ', '', '', '2020', 60.00, '', 1, '2025-10-31 01:21:29', 1, '2025-10-31 01:23:46', 0, NULL, 1),
(35231, 27341, '3', 'D.G.Vaishnav college ', '', 'B.Sc.Computer Science ', '2023', 62.00, '', 1, '2025-10-31 01:22:59', 0, NULL, 0, NULL, 1),
(35232, 27341, '4', 'University of Madras ', '', 'M.C.A', '2025', 70.00, '', 1, '2025-10-31 01:24:58', 0, NULL, 0, NULL, 1),
(35233, 27343, '3', 'Anna university ', '', 'BE Computer Science and Engineering ', '2025', 7.40, '', 1, '2025-10-31 05:00:48', 0, NULL, 0, NULL, 1),
(35234, 27342, '4', 'MGR University ', '', 'MCA', '2025', 7.50, '', 1, '2025-11-01 04:32:47', 0, NULL, 0, NULL, 1),
(35235, 27330, '3', 'Anna University ', '', 'B.E CSE', '2025', 75.00, '', 1, '2025-11-01 05:39:36', 0, NULL, 0, NULL, 1),
(35236, 27144, '4', 'anna university', '', 'mba', '2025', 65.00, '', 1, '2025-11-01 06:55:05', 0, NULL, 0, NULL, 1),
(35237, 27333, '3', 'anna university', '', 'b.e', '2025', 8.30, '', 1, '2025-11-01 08:06:51', 0, NULL, 0, NULL, 1),
(35238, 27344, '3', 'madras university', '', 'bachelor of commerce', '2024', 56.00, '', 1, '2025-11-01 12:04:27', 0, NULL, 0, NULL, 1),
(35239, 27345, '3', 'Bharathidasan university ', '', 'Bachelor of Computer Application ', '2024', 77.00, '', 1, '2025-11-01 12:04:54', 0, NULL, 0, NULL, 1),
(35240, 27347, '3', 'NMS sVN college ', '', 'B. Sc information technology ', '2023', 68.80, '', 1, '2025-11-01 01:18:08', 0, NULL, 0, NULL, 1),
(35241, 27349, '3', 'Sethu Institute of Technology', '', 'B. E - Electronics and Communication Engineering', '2025', 80.00, '', 1, '2025-11-01 01:29:32', 0, NULL, 0, NULL, 1),
(35242, 27349, '2', 'Syed ammal matric hr sec school', '', '', '2021', 85.00, '', 1, '2025-11-01 01:30:56', 0, NULL, 0, NULL, 1),
(35243, 27349, '1', 'Infant Jesus matric hr sec school', '', '', '2019', 75.00, '', 1, '2025-11-01 01:32:05', 0, NULL, 0, NULL, 1),
(35244, 27350, '3', 'Bharathidhasan university ', '', 'BCA', '2024', 7.20, '', 1, '2025-11-02 09:43:07', 0, NULL, 0, NULL, 1),
(35245, 27351, '2', 'Government ', '', '', '2022', 79.90, '', 1, '2025-11-03 05:22:20', 1, '2025-11-03 05:23:33', 0, NULL, 1),
(35246, 27351, '1', 'Government ', '', '', '2020', 58.00, '', 1, '2025-11-03 05:23:23', 0, NULL, 0, NULL, 1),
(35247, 27348, '1', 'State Board of Tamil Nadu ', '', '', '2017', 88.20, '', 1, '2025-11-03 05:33:14', 1, '2025-11-03 05:34:09', 0, NULL, 1),
(35248, 27348, '2', 'State board of tamil nadu ', '', '', '2019', 76.30, '', 1, '2025-11-03 05:34:39', 0, NULL, 0, NULL, 1),
(35249, 27348, '3', 'Anna University ', '', 'Bachelor of technology ', '2023', 77.90, '', 1, '2025-11-03 05:35:15', 0, NULL, 0, NULL, 1),
(35250, 27352, '3', 'University of Madras', '', 'B. Com Bank Management ', '2023', 67.00, '', 1, '2025-11-03 05:59:58', 0, NULL, 0, NULL, 1),
(35251, 27353, '3', 'Ifet college of engineering ', '', 'BE CSE', '2017', 60.00, '', 1, '2025-11-03 06:49:05', 0, NULL, 0, NULL, 1),
(35252, 27355, '3', 'Anna Adrash college for women ', '', 'B.com General ', '2025', 62.12, '', 1, '2025-11-04 05:15:42', 0, NULL, 0, NULL, 1),
(35253, 27356, '3', 'Kongunadu College of Engineering and Technology', '', 'B. Tech Information Technology', '2023', 7.85, '', 1, '2025-11-04 06:16:42', 0, NULL, 0, NULL, 1),
(35254, 27354, '4', 'Anna University ', '', 'BE.Computer Science ', '2025', 7.80, '', 1, '2025-11-04 07:14:06', 0, NULL, 0, NULL, 1),
(35255, 27357, '4', 'Anna University ', '', 'BE. CSE', '2025', 7.60, '', 1, '2025-11-04 07:16:11', 0, NULL, 0, NULL, 1),
(35256, 27358, '4', 'Anna University ', '', 'Be. Cse', '2025', 7.80, '', 1, '2025-11-04 07:25:39', 0, NULL, 0, NULL, 1),
(35257, 27360, '3', 'University of madras ', '', 'B.com', '2021', 70.00, '', 1, '2025-11-04 10:58:39', 0, NULL, 0, NULL, 1),
(35258, 27363, '3', 'Anna university ', '', 'BE.Mechanical', '2023', 7.20, '', 1, '2025-11-04 01:17:29', 0, NULL, 0, NULL, 1),
(35259, 27359, '4', 'Alagappa university ', '', 'MBA', '2025', 62.00, '', 1, '2025-11-04 01:55:55', 0, NULL, 0, NULL, 1),
(35260, 27361, '3', 'Unubersity of madras', '', 'B.com', '2019', 65.00, '', 1, '2025-11-05 05:07:46', 0, NULL, 0, NULL, 1),
(35261, 27366, '3', 'Medras university ', '', 'Bsc.computer science ', '2023', 76.00, '', 1, '2025-11-05 05:47:23', 0, NULL, 0, NULL, 1),
(35262, 27365, '3', 'Tagore college of arts and science ', '', 'BSC cs', '2023', 75.00, '', 1, '2025-11-05 05:48:04', 0, NULL, 0, NULL, 1),
(35263, 27367, '3', 'Madras ', '', 'BSC computer science ', '2025', 71.00, '', 1, '2025-11-05 06:11:34', 0, NULL, 0, NULL, 1),
(35264, 27070, '3', 'madras University ', '', 'b.com bank management', '2025', 70.00, '', 1, '2025-11-05 07:06:47', 0, NULL, 0, NULL, 1),
(35265, 27368, '3', 'Madras University ', '', 'B.com (Bank management ', '2025', 67.48, '', 1, '2025-11-05 07:09:45', 0, NULL, 0, NULL, 1),
(35266, 27370, '1', 'Nazareth Matriculation School Annexe', '', '', '2019', 73.40, '', 1, '2025-11-05 08:16:21', 0, NULL, 0, NULL, 1),
(35267, 27370, '2', 'Nazareth Matriculation Higher Secondary School', '', '', '2021', 80.00, '', 1, '2025-11-05 08:17:08', 0, NULL, 0, NULL, 1),
(35268, 27370, '3', 'Vel Tech Multi Tech Dr.Rangarajan Dr.Sakunthala Engineering College', '', 'b e', '2025', 7.00, '', 1, '2025-11-05 08:18:02', 0, NULL, 0, NULL, 1),
(35269, 27371, '3', 'Anna University ', '', 'B.E Computer science and Engineering ', '2025', 79.50, '', 1, '2025-11-05 09:01:57', 0, NULL, 0, NULL, 1),
(35270, 27371, '2', 'State board of Tamilnadu ', '', '', '2021', 94.50, '', 1, '2025-11-05 09:02:36', 0, NULL, 0, NULL, 1),
(35271, 27371, '1', 'State board of Tamilnadu ', '', '', '2019', 94.60, '', 1, '2025-11-05 09:03:12', 0, NULL, 0, NULL, 1),
(35272, 27373, '1', 'STATE BOARD OF SECONDARY EDUCATION ', '', '', '2019', 91.40, '', 1, '2025-11-05 09:03:23', 0, NULL, 0, NULL, 1),
(35273, 27372, '3', 'Anna university ', '', 'Bachelor of engineering ', '2025', 69.00, '', 1, '2025-11-05 09:03:34', 1, '2025-11-05 09:04:25', 0, NULL, 1),
(35274, 27373, '2', 'STATE BOARD OF SECONDARY EDUCATION ', '', '', '2021', 88.00, '', 1, '2025-11-05 09:04:17', 0, NULL, 0, NULL, 1),
(35275, 27373, '3', 'ANNA UNIVERSITY ', '', 'Computer science and engineering ', '2025', 71.10, '', 1, '2025-11-05 09:04:58', 0, NULL, 0, NULL, 1),
(35276, 27372, '2', 'State board of Tamil Nadu ', '', '', '2021', 89.00, '', 1, '2025-11-05 09:07:10', 0, NULL, 0, NULL, 1),
(35277, 27372, '1', 'State board of Tamil Nadu ', '', '', '2019', 83.00, '', 1, '2025-11-05 09:07:51', 0, NULL, 0, NULL, 1),
(35278, 27374, '3', 'Mailam engineering college ', '', 'B.Tech/IT', '2023', 86.00, '', 1, '2025-11-05 09:48:06', 0, NULL, 0, NULL, 1),
(35279, 27374, '2', 'St Michael\'s higher secondary school ', '', '', '2019', 76.00, '', 1, '2025-11-05 09:48:46', 0, NULL, 0, NULL, 1),
(35280, 27374, '1', 'St Michael\'s higher secondary school ', '', '', '2015', 72.00, '', 1, '2025-11-05 09:49:09', 0, NULL, 0, NULL, 1),
(35281, 27375, '1', 'Tamilnadu state board', '', '', '2019', 82.00, '', 1, '2025-11-05 10:50:07', 0, NULL, 0, NULL, 1),
(35282, 27375, '2', 'Tamilnadu state board', '', '', '2021', 82.00, '', 1, '2025-11-05 10:50:36', 0, NULL, 0, NULL, 1),
(35283, 27375, '3', 'Anna university', '', 'B. E', '2025', 8.03, '', 1, '2025-11-05 10:51:02', 0, NULL, 0, NULL, 1),
(35284, 27376, '3', 'Bengaluru City University ', '', 'B.com', '2025', 89.00, '', 1, '2025-11-05 04:48:46', 0, NULL, 0, NULL, 1),
(35285, 27377, '3', 'Periyar University ', '', 'Bachelor of commerce ', '2025', 75.00, '', 1, '2025-11-05 04:52:08', 0, NULL, 0, NULL, 1),
(35286, 27369, '1', 'state board', '', '', '2019', 78.60, '', 1, '2025-11-06 02:56:38', 0, NULL, 0, NULL, 1),
(35287, 27369, '2', 'state board', '', '', '2021', 81.00, '', 1, '2025-11-06 02:57:22', 0, NULL, 0, NULL, 1),
(35288, 27369, '3', 'annamalai university', '', 'b. sc computer science', '2024', 73.20, '', 1, '2025-11-06 02:58:06', 0, NULL, 0, NULL, 1),
(35289, 27378, '3', 'Anna University ', '', 'BTECH IT ', '2025', 80.00, '', 1, '2025-11-06 04:42:49', 0, NULL, 0, NULL, 1),
(35290, 27378, '1', 'State Board ', '', '', '2019', 78.00, '', 1, '2025-11-06 04:43:21', 0, NULL, 0, NULL, 1),
(35291, 27378, '2', 'State Board ', '', '', '2021', 86.00, '', 1, '2025-11-06 04:43:42', 0, NULL, 0, NULL, 1),
(35292, 27379, '3', 'Dr. M.G.R UNIVERSITY ', '', 'BBA', '2023', 61.00, '', 1, '2025-11-06 07:18:45', 0, NULL, 0, NULL, 1),
(35293, 27380, '1', 'University ', '', '', '2017', 69.92, '', 1, '2025-11-06 07:57:19', 0, NULL, 0, NULL, 1),
(35294, 27380, '2', 'University ', '', '', '2020', 65.00, '', 1, '2025-11-06 08:01:19', 0, NULL, 0, NULL, 1),
(35295, 27381, '3', 'thiruvalluvar university', '', 'bachelor of science', '2023', 68.00, '', 1, '2025-11-06 08:26:11', 0, NULL, 0, NULL, 1),
(35296, 27382, '3', 'Madras university', '', 'Bsc', '2025', 78.00, '', 1, '2025-11-06 01:45:04', 0, NULL, 0, NULL, 1),
(35297, 27384, '3', 'Periyar Maniammai University ', '', 'Bsc Computer science ', '2024', 81.00, '', 1, '2025-11-06 02:02:23', 0, NULL, 0, NULL, 1),
(35298, 27383, '3', 'Bharathidasan', '', 'Bba', '2025', 70.00, '', 1, '2025-11-06 02:26:11', 1, '2025-11-06 02:27:06', 0, NULL, 0),
(35299, 27383, '3', 'Bharathidasan university ', '', 'Bba', '2025', 72.00, '', 1, '2025-11-06 02:27:22', 0, NULL, 0, NULL, 1),
(35300, 27383, '2', ' State board', '', '', '2022', 68.00, '', 1, '2025-11-06 02:29:55', 0, NULL, 0, NULL, 1),
(35301, 27385, '3', 'Anna University ', '', '', '2019', 76.00, '', 1, '2025-11-06 02:45:28', 0, NULL, 0, NULL, 1),
(35302, 27385, '2', 'State board', '', '', '2014', 75.00, '', 1, '2025-11-06 02:45:58', 0, NULL, 0, NULL, 1),
(35303, 27386, '3', 'Visvesvaraya technological University ', '', 'Bachelor of Engineering ', '2024', 77.00, '', 1, '2025-11-07 05:09:24', 0, NULL, 0, NULL, 1),
(35304, 27390, '4', 'Bharathiyar university ', '', 'MCA', '2021', 73.00, '', 1, '2025-11-10 04:55:51', 0, NULL, 0, NULL, 1),
(35305, 27391, '4', 'Anna university ', '', 'MCA', '2018', 8.20, '', 1, '2025-11-10 05:51:36', 0, NULL, 0, NULL, 1),
(35306, 27394, '3', 'Anna University ', '', 'B.Tech information Technology ', '2025', 7.85, '', 1, '2025-11-10 06:15:18', 0, NULL, 0, NULL, 1),
(35307, 27392, '3', 'Bharathidasan university ', '', 'BA.Economics', '2025', 80.00, '', 1, '2025-11-10 06:22:24', 0, NULL, 0, NULL, 1),
(35308, 27393, '3', 'Annamalai University ', '', 'B.com', '2025', 80.00, '', 1, '2025-11-10 06:41:41', 0, NULL, 0, NULL, 1),
(35309, 27388, '4', 'measi institute of management', '', 'mba in marketing', '2022', 75.00, '', 1, '2025-11-10 08:56:06', 0, NULL, 0, NULL, 1),
(35310, 27396, '3', 'Karpaga Vinayaga College of Engineering and Technology', '', 'B. E- CSE', '2025', 71.10, '', 1, '2025-11-10 01:32:53', 0, NULL, 0, NULL, 1),
(35311, 27398, '3', 'Madras University ', '', 'B.com ', '2022', 70.00, '', 1, '2025-11-11 04:29:19', 0, NULL, 0, NULL, 1),
(35312, 27399, '3', 'bharathidasan university', '', 'bsc computer science', '2023', 88.80, '', 1, '2025-11-11 05:16:21', 0, NULL, 0, NULL, 1),
(35313, 27400, '3', 'Madras University ', '', 'B. Com general ', '2025', 75.00, '', 1, '2025-11-11 05:48:13', 0, NULL, 0, NULL, 1),
(35314, 27401, '3', 'bharathidasan university', '', 'B.com CA', '2024', 88.00, '', 1, '2025-11-11 06:05:21', 1, '2025-11-11 06:07:06', 0, NULL, 1),
(35315, 27403, '3', 'Madras University ', '', 'BA English ', '2021', 47.00, '', 1, '2025-11-11 07:37:41', 0, NULL, 0, NULL, 1),
(35316, 27404, '3', 'Bharathi Womens College , Madras University', '', 'B.A Economics ', '2025', 61.00, '', 1, '2025-11-12 02:20:05', 0, NULL, 0, NULL, 1),
(35317, 27405, '3', 'Periyar Maniammai University ', '', 'B.Sc Computer Science ', '2025', 7.54, '', 1, '2025-11-12 04:41:31', 0, NULL, 0, NULL, 1),
(35318, 27406, '3', 'saveetha university', '', 'be', '2023', 7.20, '', 1, '2025-11-12 05:12:59', 0, NULL, 0, NULL, 1),
(35319, 27407, '3', 'Mar gregarious college ', '', 'Ba english literature ', '2024', 70.00, '', 1, '2025-11-12 07:29:10', 0, NULL, 0, NULL, 1),
(35320, 27408, '3', 'The New College ', '', 'Bsc.,Computer Science ', '2021', 80.00, '', 1, '2025-11-12 09:11:05', 0, NULL, 0, NULL, 1),
(35321, 27409, '3', 'Manonmaniam sundaranar university tirunelveli ', '', 'Bsc', '2020', 66.00, '', 1, '2025-11-13 04:35:06', 0, NULL, 0, NULL, 1),
(35322, 27410, '3', 'University of Madras ', '', 'B.com(information system management)', '2021', 80.00, '', 1, '2025-11-13 05:13:31', 0, NULL, 0, NULL, 1),
(35323, 27411, '3', 'university of madras', '', 'bba', '2024', 72.00, '', 1, '2025-11-13 06:16:18', 0, NULL, 0, NULL, 1),
(35324, 27412, '3', 'Tumkur ', '', 'Bcom', '2020', 60.00, '', 1, '2025-11-13 06:26:04', 0, NULL, 0, NULL, 1),
(35325, 27413, '4', 'Anna University ', '', 'MBA', '2019', 65.00, '', 1, '2025-11-13 06:43:50', 0, NULL, 0, NULL, 1),
(35326, 27417, '3', 'Madras University ', '', 'B.Sc Computer science ', '2021', 85.00, '', 1, '2025-11-13 01:27:29', 0, NULL, 0, NULL, 1),
(35327, 27414, '3', 'Bharathithasan univrsity', '', 'B.com', '2024', 87.00, '', 1, '2025-11-14 04:57:00', 0, NULL, 0, NULL, 1),
(35328, 27422, '3', 'RCU university ', '', 'BA', '2019', 59.00, '', 1, '2025-11-14 05:22:16', 0, NULL, 0, NULL, 1),
(35329, 27424, '3', 'Anna university ', '', 'B.E', '2025', 8.39, '', 1, '2025-11-14 05:47:07', 0, NULL, 0, NULL, 1),
(35330, 27424, '1', 'State board ', '', '', '2019', 79.00, '', 1, '2025-11-14 05:48:03', 0, NULL, 0, NULL, 1),
(35331, 27424, '2', 'State board ', '', '', '2021', 86.00, '', 1, '2025-11-14 05:48:30', 0, NULL, 0, NULL, 1),
(35332, 27423, '2', 'Homba gowda per university', '', '', '2019', 56.00, '', 1, '2025-11-14 05:49:08', 0, NULL, 0, NULL, 1),
(35333, 27425, '3', 'dr mgr university', '', 'btech', '2025', 78.00, '', 1, '2025-11-14 05:56:20', 0, NULL, 0, NULL, 1),
(35334, 27426, '3', 'Dr. m.G.R Educational and research institute ', '', 'BTech CSE', '2025', 85.00, '', 1, '2025-11-14 05:57:03', 0, NULL, 0, NULL, 1),
(35335, 27427, '3', 'Periyar University ', '', 'B.com', '2020', 80.00, '', 1, '2025-11-14 06:39:32', 0, NULL, 0, NULL, 1),
(35336, 27429, '4', 'Bharathidasan university ', '', 'MBA ', '2023', 78.00, '', 1, '2025-11-14 09:18:17', 0, NULL, 0, NULL, 1),
(35337, 27430, '3', 'Bharathidasan University ', '', 'Bsc. computer science ', '2025', 86.00, '', 1, '2025-11-14 10:03:32', 0, NULL, 0, NULL, 1),
(35338, 27433, '1', 'State board of Tamil Nadu ', '', '', '2019', 69.60, '', 1, '2025-11-14 12:24:34', 0, NULL, 0, NULL, 1),
(35339, 27433, '2', 'State board of Tamil Nadu ', '', '', '2021', 79.00, '', 1, '2025-11-14 12:24:55', 0, NULL, 0, NULL, 1),
(35340, 27433, '3', 'Anna University ', '', 'BE', '2025', 71.00, '', 1, '2025-11-14 12:25:29', 0, NULL, 0, NULL, 1),
(35341, 27428, '3', 'Madras ', '', 'Bca', '2023', 60.00, '', 1, '2025-11-15 04:30:45', 0, NULL, 0, NULL, 1),
(35342, 27435, '3', 'Kalasalingam university', '', 'Bsc computer science', '2025', 70.00, '', 1, '2025-11-15 04:50:04', 0, NULL, 0, NULL, 1),
(35343, 27432, '3', 'SRM University Ramapuram campus ', '', 'BCA', '2025', 75.00, '', 1, '2025-11-15 05:02:07', 0, NULL, 0, NULL, 1),
(35344, 27436, '3', 'MGKVP ', '', 'B.Com', '2019', 55.00, '', 1, '2025-11-15 05:28:10', 0, NULL, 0, NULL, 1),
(35345, 27438, '3', 'Periyar University ', '', 'Bcom computer application ', '2020', 61.00, '', 1, '2025-11-15 05:44:48', 0, NULL, 0, NULL, 1),
(35346, 27438, '2', 'RV Govt boys higher secondary school', '', '', '2017', 81.00, '', 1, '2025-11-15 05:45:12', 0, NULL, 0, NULL, 1),
(35347, 27438, '1', 'State', '', '', '2015', 72.00, '', 1, '2025-11-15 05:45:38', 0, NULL, 0, NULL, 1),
(35348, 27437, '1', 'KARNATAKA BOARD EXAMINATION AUTHORITY ', '', '', '2012', 50.00, '', 1, '2025-11-15 06:06:47', 0, NULL, 0, NULL, 1),
(35349, 27437, '2', 'DEPARTMENT OF PRE UNIVERSITY BOARD ', '', '', '2014', 73.83, '', 1, '2025-11-15 06:13:12', 0, NULL, 0, NULL, 1),
(35350, 27437, '3', 'MYSORE UNIVERSITY ', '', 'BBM', '2017', 57.87, '', 1, '2025-11-15 06:14:00', 0, NULL, 0, NULL, 1),
(35351, 27437, '4', 'MYSORE UNIVERSITY ', '', 'MCOM', '2020', 73.90, '', 1, '2025-11-15 06:14:42', 0, NULL, 0, NULL, 1),
(35352, 27439, '3', 'NMSSVN College ', '', 'Bachelor of business administration ', '2023', 71.00, '', 1, '2025-11-15 06:48:43', 0, NULL, 0, NULL, 1),
(35353, 27440, '3', 'University ', '', 'Bsc cs', '2025', 78.00, '', 1, '2025-11-15 11:08:25', 0, NULL, 0, NULL, 1),
(35354, 27443, '3', 'Raja\'s arts and science college thivaiyaru', '', 'B.lit tamil', '2022', 75.00, '', 1, '2025-11-17 04:33:49', 0, NULL, 0, NULL, 1),
(35355, 27444, '3', 'Anna university ', '', 'Bachelor of Technology ', '2023', 78.00, '', 1, '2025-11-17 05:04:07', 0, NULL, 0, NULL, 1),
(35356, 27444, '2', 'Government Higher secondary school ', '', '', '2019', 58.00, '', 1, '2025-11-17 05:04:39', 0, NULL, 0, NULL, 1),
(35357, 27444, '1', 'Government High school ', '', '', '2017', 82.00, '', 1, '2025-11-17 05:05:00', 0, NULL, 0, NULL, 1),
(35358, 27446, '3', 'SRM UNIVERSITY ', '', 'B.sc visual communication ', '2025', 8.01, '', 1, '2025-11-17 05:33:03', 0, NULL, 0, NULL, 1),
(35359, 27447, '3', 'University college of Engineering Nagercoil ', '', 'Bachelor of Engineering ', '2024', 77.70, '', 1, '2025-11-17 05:43:22', 0, NULL, 0, NULL, 1),
(35360, 27447, '1', 'Central board of secondary education ', '', '', '2018', 72.40, '', 1, '2025-11-17 05:44:10', 0, NULL, 0, NULL, 1),
(35361, 27447, '2', 'Central board of secondary Education ', '', '', '2020', 70.20, '', 1, '2025-11-17 05:44:33', 0, NULL, 0, NULL, 1),
(35362, 27445, '4', 'Madras university', '', 'Msc - Homescience', '2016', 70.00, '', 1, '2025-11-17 05:50:04', 0, NULL, 0, NULL, 1),
(35363, 27449, '3', 'Madras University ', '', 'B.com ', '2023', 80.00, '', 1, '2025-11-17 08:13:16', 0, NULL, 0, NULL, 1),
(35364, 27448, '3', 'Madras University ', '', 'BBA', '2021', 75.00, '', 1, '2025-11-17 08:24:33', 0, NULL, 0, NULL, 1),
(35365, 27441, '3', 'Anna university ', '', 'Bachelor of Engineering ', '2020', 6.80, '', 1, '2025-11-17 09:20:04', 0, NULL, 0, NULL, 1),
(35366, 27450, '4', 'Manon manium sundaranar university ', '', 'Msc B.Ed', '2025', 90.00, '', 1, '2025-11-17 11:26:15', 0, NULL, 0, NULL, 1),
(35367, 27451, '3', 'Madurai Kamaraj University ', '', 'Bsc.Chemistry', '2024', 68.00, '', 1, '2025-11-17 02:21:56', 0, NULL, 0, NULL, 1),
(35368, 27453, '3', 'Dr Ambedkar Govt Arts College', '', 'Bsc computer science', '2025', 84.00, '', 1, '2025-11-17 03:15:42', 0, NULL, 0, NULL, 1),
(35369, 26421, '3', 'Rani channama university ', '', 'Bachelor of commerce', '2022', 80.00, '', 1, '2025-11-18 03:03:27', 0, NULL, 0, NULL, 1),
(35370, 27454, '3', 'Bharathi thasaan university ', '', 'B. Lit', '2022', 82.00, '', 1, '2025-11-18 05:05:07', 0, NULL, 0, NULL, 1),
(35371, 27455, '4', 'vels university pallavaram chennai', '', 'mba', '2026', 61.00, '', 1, '2025-11-18 06:29:14', 1, '2025-11-18 06:31:05', 0, NULL, 1),
(35372, 27455, '3', 'dbjaincollege thoraipakkam omr', '', 'bcom', '2024', 64.00, '', 1, '2025-11-18 06:30:37', 1, '2025-11-18 06:31:32', 0, NULL, 0),
(35373, 27456, '3', 'Rani Chennamma university Belagavi ', '', 'B S C', '2023', 65.00, '', 1, '2025-11-18 07:46:01', 0, NULL, 0, NULL, 1),
(35374, 27457, '3', 'Mangalore University ', '', 'B.com', '2022', 58.00, '', 1, '2025-11-18 07:47:13', 0, NULL, 0, NULL, 1),
(35375, 27458, '3', 'Anna university ', '', 'B.E', '2025', 76.00, '', 1, '2025-11-18 03:12:56', 0, NULL, 0, NULL, 1),
(35376, 27459, '3', 'Anna University ', '', 'Mechanical engineering ', '2021', 7.23, '', 1, '2025-11-19 04:02:58', 0, NULL, 0, NULL, 1),
(35377, 27460, '3', 'Anna University ', '', 'BE', '2024', 75.00, '', 1, '2025-11-19 04:51:23', 0, NULL, 0, NULL, 1),
(35378, 27461, '3', 'University of Madras', '', 'psychology ', '2024', 75.00, '', 1, '2025-11-19 05:18:34', 1, '2025-11-19 05:20:16', 0, NULL, 1),
(35379, 27461, '4', 'University of Madras ', '', 'M.sc hrd psychology ', '2026', 75.00, '', 1, '2025-11-19 05:19:19', 1, '2025-11-19 05:20:52', 0, NULL, 1),
(35380, 27462, '3', 'Anna University ', '', 'B.E, Civil Engineering ', '2021', 77.00, '', 1, '2025-11-19 05:42:22', 0, NULL, 0, NULL, 1),
(35381, 27463, '3', 'Gulbarga university ', '', 'B.com', '2022', 74.00, '', 1, '2025-11-19 06:11:15', 0, NULL, 0, NULL, 1),
(35382, 27465, '1', 'Karnataka secondary education examination board ', '', '', '2015', 57.00, '', 1, '2025-11-20 05:28:13', 0, NULL, 0, NULL, 1),
(35383, 27465, '2', 'Department of pre-university education ', '', 'Puc', '2018', 50.00, '', 1, '2025-11-20 05:31:31', 0, NULL, 0, NULL, 1),
(35384, 27464, '3', 'Manonmaniam sundaranar university ', '', 'Bsc biochemistry ', '2020', 7.68, '', 1, '2025-11-20 05:33:51', 0, NULL, 0, NULL, 1),
(35385, 27466, '3', 'UNIVERSITY ', '', 'B.Com', '2024', 54.60, '', 1, '2025-11-20 05:38:12', 0, NULL, 0, NULL, 1),
(35386, 27468, '3', 'Anna university ', '', 'b.tech information technology ', '2025', 65.00, '', 1, '2025-11-20 05:42:33', 0, NULL, 0, NULL, 1),
(35387, 27467, '3', 'UNIVERSITY ', '', 'BA ECONOMICS ', '2024', 60.20, '', 1, '2025-11-20 05:48:26', 0, NULL, 0, NULL, 1),
(35388, 27469, '3', 'University ', '', 'Bsc', '2021', 60.00, '', 1, '2025-11-20 09:13:59', 0, NULL, 0, NULL, 1),
(35389, 27470, '4', 'Pmist ', '', '', '2025', 75.00, '', 1, '2025-11-21 02:22:46', 0, NULL, 0, NULL, 1),
(35390, 27470, '4', 'Periyar maniyamai university ', '', 'Mba ', '2025', 75.80, '', 1, '2025-11-21 02:30:48', 0, NULL, 0, NULL, 1),
(35391, 27471, '4', 'Kamarajar university in madurai', '', 'Master of computer Application ', '2025', 81.00, '', 1, '2025-11-21 04:55:16', 0, NULL, 0, NULL, 1),
(35392, 27471, '2', 'State board in tamil Nadu', '', '', '2020', 67.00, '', 1, '2025-11-21 04:57:31', 0, NULL, 0, NULL, 1),
(35393, 27471, '3', 'Kamarajar university in madurai', '', 'Bsc. Computer science ', '2023', 79.00, '', 1, '2025-11-21 04:58:35', 0, NULL, 0, NULL, 1),
(35394, 27472, '3', 'University of Madras ', '', 'B.Sc.Physics', '2024', 84.00, '', 1, '2025-11-21 06:28:03', 0, NULL, 0, NULL, 1),
(35395, 27473, '1', 'Stateboard', '', '', '2017', 83.00, '', 1, '2025-11-21 06:31:09', 0, NULL, 0, NULL, 1),
(35396, 27473, '2', 'State board', '', '', '2019', 69.00, '', 1, '2025-11-21 06:31:28', 0, NULL, 0, NULL, 1),
(35397, 27473, '5', 'Tamilnadu agriculture University ', '', 'Diploma in agriculture ', '2022', 81.00, '', 1, '2025-11-21 06:32:09', 0, NULL, 0, NULL, 1),
(35398, 27473, '3', 'Madurai Kamaraj University ', '', 'Bachelor of computer application ', '2025', 79.00, '', 1, '2025-11-21 06:32:46', 0, NULL, 0, NULL, 1),
(35399, 27475, '5', 'Departure of technical education ', '', '', '2017', 70.00, '', 1, '2025-11-21 10:17:57', 0, NULL, 0, NULL, 1),
(35400, 27420, '3', 'Rani chennamma University Belagavi ', '', 'B.C.A', '2024', 63.00, '', 1, '2025-11-21 01:06:56', 0, NULL, 0, NULL, 1),
(35401, 26365, '3', 'Vels University ', '', 'Bca honors', '2021', 79.00, '', 1, '2025-11-22 04:30:43', 0, NULL, 0, NULL, 1),
(35402, 27474, '3', 'New prince shri Bhavani arts and science college ', '', 'BCA', '2025', 61.00, '', 1, '2025-11-22 06:09:36', 0, NULL, 0, NULL, 1),
(35403, 27474, '2', 'STATE BOARD OF SCHOOL EXAMINATIONS ', '', '', '2022', 72.00, '', 1, '2025-11-22 06:10:10', 0, NULL, 0, NULL, 1),
(35404, 27478, '3', 'Anna University ', '', 'BE', '2021', 75.00, '', 1, '2025-11-22 06:20:47', 0, NULL, 0, NULL, 1),
(35405, 27478, '2', 'Regular', '', '', '2017', 60.00, '', 1, '2025-11-22 06:21:26', 0, NULL, 0, NULL, 1),
(35406, 27478, '1', 'Regular ', '', '', '2015', 86.00, '', 1, '2025-11-22 06:21:45', 0, NULL, 0, NULL, 1),
(35407, 27364, '1', 'tamil nadu state board', '', '', '2021', 86.00, '', 1, '2025-11-24 04:26:58', 1, '2025-11-24 04:27:12', 0, NULL, 1),
(35408, 27364, '2', 'tamil nadu state board', '', '', '2021', 89.00, '', 1, '2025-11-24 04:27:37', 0, NULL, 0, NULL, 1),
(35409, 27364, '3', 'mepco schlenk engineering college', '', 'bachelor of engineering', '2025', 68.00, '', 1, '2025-11-24 04:28:13', 0, NULL, 0, NULL, 1),
(35410, 27452, '3', 'tumk uni ', '', 'bcom', '2024', 57.00, '', 1, '2025-11-24 04:29:06', 0, NULL, 0, NULL, 1),
(35411, 27479, '3', 'Anna University ', '', 'Bachelor of Computer science and Engineering ', '2025', 80.00, '', 1, '2025-11-24 05:42:48', 0, NULL, 0, NULL, 1),
(35412, 27480, '3', 'Anna University', '', 'B.E ', '2025', 7.80, '', 1, '2025-11-24 05:43:08', 0, NULL, 0, NULL, 1),
(35413, 27480, '2', 'State board', '', '', '2021', 84.00, '', 1, '2025-11-24 05:43:45', 0, NULL, 0, NULL, 1),
(35414, 27479, '2', 'State Board ', '', '', '2021', 85.00, '', 1, '2025-11-24 05:43:49', 0, NULL, 0, NULL, 1),
(35415, 27480, '1', 'State board', '', '', '2019', 78.00, '', 1, '2025-11-24 05:44:22', 0, NULL, 0, NULL, 1),
(35416, 27479, '1', 'State Board ', '', '', '2019', 85.00, '', 1, '2025-11-24 05:44:31', 0, NULL, 0, NULL, 1),
(35417, 27481, '4', 'Vels University ', '', 'MCA', '2025', 7.10, '', 1, '2025-11-24 05:52:02', 0, NULL, 0, NULL, 1),
(35418, 27482, '3', 'Madras University ', '', 'Bcom cs ', '2025', 60.00, '', 1, '2025-11-24 06:16:04', 0, NULL, 0, NULL, 1),
(35419, 27483, '3', 'Periyar University ', '', 'B.Sc Computer Science ', '2025', 78.00, '', 1, '2025-11-24 06:56:33', 0, NULL, 0, NULL, 1),
(35420, 27485, '3', 'aarupadai veedu institute of technology', '', 'be - computer science', '2025', 8.20, '', 1, '2025-11-24 07:02:18', 0, NULL, 0, NULL, 1),
(35421, 27484, '4', 'Bharathidasan university ', '', 'Electronics communication ', '2023', 79.00, '', 1, '2025-11-24 07:04:33', 0, NULL, 0, NULL, 1),
(35422, 27486, '3', 'Anna University', '', 'B.tech Information Technology', '2025', 7.10, '', 1, '2025-11-24 07:23:47', 0, NULL, 0, NULL, 1),
(35423, 27477, '5', 'Ramakrishna Polytechnic College ', '', 'DECE', '2017', 78.00, '', 1, '2025-11-24 07:58:08', 0, NULL, 0, NULL, 1),
(35424, 27488, '4', 'Anna ', '', 'MBA ', '2025', 84.00, '', 1, '2025-11-24 09:05:57', 0, NULL, 0, NULL, 1),
(35425, 27489, '4', 'Anna university ', '', 'MBA', '2025', 8.43, '', 1, '2025-11-24 09:12:13', 0, NULL, 0, NULL, 1),
(35426, 27490, '2', 'state board', '', '', '2021', 70.00, '', 1, '2025-11-24 09:52:16', 0, NULL, 0, NULL, 1),
(35427, 27491, '3', 'Anna university ', '', 'B.E', '2022', 63.00, '', 1, '2025-11-24 04:42:07', 0, NULL, 0, NULL, 1),
(35428, 27492, '3', 'Vels University ', '', 'Be Marine ', '2021', 75.00, '', 1, '2025-11-25 05:13:34', 0, NULL, 0, NULL, 1),
(35429, 27493, '4', 'Sri Muthukumaran institute of technology ', '', 'MBA', '2024', 75.00, '', 1, '2025-11-25 05:44:45', 0, NULL, 0, NULL, 1),
(35430, 27494, '3', 'Thiruvalluvar university ', '', 'B.sc computer science ', '2025', 80.00, '', 1, '2025-11-25 06:21:43', 0, NULL, 0, NULL, 1),
(35431, 27487, '3', 'BHARATHIDASAN UNIVERSITY ', '', 'B A Economics ', '2024', 75.00, '', 1, '2025-11-25 06:24:04', 0, NULL, 0, NULL, 1),
(35432, 27487, '1', 'STATE BOARD ', '', '', '2019', 72.00, '', 1, '2025-11-25 06:25:14', 0, NULL, 0, NULL, 1),
(35433, 27487, '2', 'STATE BOARD ', '', '', '2021', 73.00, '', 1, '2025-11-25 06:25:40', 0, NULL, 0, NULL, 1),
(35434, 27495, '3', 'Thiruvalluvar university ', '', 'B com', '2021', 70.00, '', 1, '2025-11-25 07:07:16', 0, NULL, 0, NULL, 1),
(35435, 27496, '4', 'University of Madras ', '', 'MCOM INTERNATIONAL BUSINESS & FINANCE', '2026', 75.90, '', 1, '2025-11-25 07:36:52', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(35436, 27497, '4', 'University of Madras ', '', 'M. com ', '2026', 65.00, '', 1, '2025-11-25 09:14:38', 0, NULL, 0, NULL, 1),
(35437, 27498, '3', 'Dhanalakshmi Srinivasan- Autonomous ', '', 'B.E', '2022', 7.59, '', 1, '2025-11-25 12:59:03', 0, NULL, 0, NULL, 1),
(35438, 27498, '1', 'State board ', '', '', '2016', 77.20, '', 1, '2025-11-25 12:59:45', 0, NULL, 0, NULL, 1),
(35439, 27498, '2', 'State board ', '', '', '2018', 56.20, '', 1, '2025-11-25 01:00:07', 0, NULL, 0, NULL, 1),
(35440, 27500, '3', 'autonomus', '', 'ba sociology', '2024', 55.00, '', 1, '2025-11-26 07:14:50', 0, NULL, 0, NULL, 1),
(35441, 27501, '3', 'university', '', 'ba tamil literature', '2024', 65.00, '', 1, '2025-11-26 07:16:34', 0, NULL, 0, NULL, 1),
(35442, 27502, '3', 'SRM Arts and science college ', '', 'Bca', '2022', 78.00, '', 1, '2025-11-26 12:07:32', 0, NULL, 0, NULL, 1),
(35443, 27505, '3', 'Government College of Engineering, Thanjavur ', '', 'B.E', '2025', 8.25, '', 1, '2025-11-27 04:34:07', 0, NULL, 0, NULL, 1),
(35444, 27506, '3', 'Anna University ', '', 'BE', '2025', 80.00, '', 1, '2025-11-27 05:51:12', 0, NULL, 0, NULL, 1),
(35445, 27507, '3', 'University of Madras ', '', 'Bsc visual communication ', '2024', 70.00, '', 1, '2025-11-27 06:04:43', 0, NULL, 0, NULL, 1),
(35446, 17703, '3', 'St.john\'s College ', '', 'Electronics ', '2022', 80.00, '', 1, '2025-11-27 06:19:16', 0, NULL, 0, NULL, 1),
(35447, 27509, '3', 'Anna university', '', 'Be', '2023', 80.00, '', 1, '2025-11-27 09:58:54', 0, NULL, 0, NULL, 1),
(35448, 27510, '3', 'Annamalai university ', '', 'Bca', '2025', 70.00, '', 1, '2025-11-27 11:52:29', 0, NULL, 0, NULL, 1),
(35449, 27508, '3', 'Anna University ', '', 'Bachelor of Technology', '2024', 76.00, '', 1, '2025-11-27 01:22:50', 0, NULL, 0, NULL, 1),
(35450, 27504, '3', 'University of Madras ', '', 'BCA', '2025', 65.00, '', 1, '2025-11-28 04:29:50', 0, NULL, 0, NULL, 1),
(35451, 27512, '3', 'Anna University ', '', 'BE', '2020', 67.00, '', 1, '2025-11-28 05:02:22', 0, NULL, 0, NULL, 1),
(35452, 27513, '3', 'University of Madras ', '', 'B.B.A', '2024', 63.00, '', 1, '2025-11-28 05:39:34', 0, NULL, 0, NULL, 1),
(35453, 27517, '3', 'Anna University ', '', 'B Tech -IT ', '2025', 75.00, '', 1, '2025-11-29 05:43:32', 0, NULL, 0, NULL, 1),
(35454, 27519, '3', 'Anna University ', '', 'B Tech -IT ', '2025', 75.00, '', 1, '2025-11-29 05:50:27', 0, NULL, 0, NULL, 1),
(35455, 27520, '3', 'Anna University ', '', 'B Tech IT ', '2025', 80.00, '', 1, '2025-11-29 06:11:55', 0, NULL, 0, NULL, 1),
(35456, 27524, '2', 'sbmjc collage ', '', '', '2019', 45.00, '', 1, '2025-11-29 08:14:36', 1, '2025-11-29 08:14:59', 0, NULL, 0),
(35457, 27524, '1', 'edens High School kgf', '', '', '2017', 68.00, '', 1, '2025-11-29 08:15:38', 0, NULL, 0, NULL, 1),
(35458, 27524, '2', 'sbmjc collage kgf ', '', '', '2019', 45.00, '', 1, '2025-11-29 08:16:33', 0, NULL, 0, NULL, 1),
(35459, 27527, '3', 'Anna University ', '', 'BE.CSE', '2025', 7.30, '', 1, '2025-12-01 05:28:17', 0, NULL, 0, NULL, 1),
(35460, 27528, '1', 'Bangalore ', '', '', '2018', 64.00, '', 1, '2025-12-01 05:40:51', 0, NULL, 0, NULL, 1),
(35461, 27529, '1', 'Bangalore ', '', '', '2016', 70.00, '', 1, '2025-12-01 06:00:44', 0, NULL, 0, NULL, 1),
(35462, 27522, '3', 'Bharathiyar university ', '', 'B.Com IT ', '2025', 79.00, '', 1, '2025-12-01 07:09:53', 0, NULL, 0, NULL, 1),
(35463, 27530, '4', 'S.A. Engineering ', '', 'MBA ', '2026', 7.56, '', 1, '2025-12-01 07:11:16', 0, NULL, 0, NULL, 1),
(35464, 27531, '4', 'Anna university', '', 'Mba', '2026', 7.96, '', 1, '2025-12-01 07:11:59', 0, NULL, 0, NULL, 1),
(35465, 27531, '3', 'Madras university', '', 'Bsc Psychology', '2024', 70.00, '', 1, '2025-12-01 07:12:43', 0, NULL, 0, NULL, 1),
(35466, 27530, '3', 'Srm University Ramapuram ', '', 'B com', '2024', 7.67, '', 1, '2025-12-01 07:13:03', 0, NULL, 0, NULL, 1),
(35467, 27532, '3', 'Madras University ', '', 'B com', '2022', 79.00, '', 1, '2025-12-01 08:15:59', 0, NULL, 0, NULL, 1),
(35468, 27534, '3', 'Alagappa University ', '', 'Bachelor\'s in commerce ', '2023', 70.00, '', 1, '2025-12-01 01:02:16', 0, NULL, 0, NULL, 1),
(35469, 27535, '3', 'Madras University ', '', 'B.com (General)', '2023', 87.00, '', 1, '2025-12-01 01:06:33', 0, NULL, 0, NULL, 1),
(35470, 27537, '3', 'University of madras ', '', 'B.com', '2025', 7.25, '', 1, '2025-12-01 01:06:49', 0, NULL, 0, NULL, 1),
(35471, 27535, '1', 'State board', '', '', '2020', 82.00, '', 1, '2025-12-01 01:07:02', 0, NULL, 0, NULL, 1),
(35472, 27535, '2', 'State board ', '', '', '2018', 79.00, '', 1, '2025-12-01 01:07:17', 0, NULL, 0, NULL, 1),
(35473, 27539, '4', 'Anna University ', '', 'MBA', '2025', 8.10, '', 1, '2025-12-01 03:33:15', 0, NULL, 0, NULL, 1),
(35474, 27540, '3', 'Akka Mahadevi university ', '', 'Bcom ', '2022', 72.00, '', 1, '2025-12-02 05:35:09', 0, NULL, 0, NULL, 1),
(35475, 27540, '1', 'St Lawrence school ', '', '', '2016', 74.00, '', 1, '2025-12-02 05:36:40', 0, NULL, 0, NULL, 1),
(35476, 27543, '3', 'Bangalore University ', '', 'BCA', '2025', 8.64, '', 1, '2025-12-02 06:03:32', 0, NULL, 0, NULL, 1),
(35477, 27544, '3', 'Bangalore University ', '', 'B com', '2025', 5.90, '', 1, '2025-12-02 06:03:41', 0, NULL, 0, NULL, 1),
(35478, 27541, '3', 'andhra university', '', 'b.com voctaional', '2019', 60.00, '', 1, '2025-12-02 06:09:06', 0, NULL, 0, NULL, 1),
(35479, 27542, '4', 'University of madras (Valliammal College for women) ', '', 'Master of Business Administration', '2026', 80.00, '', 1, '2025-12-02 06:19:16', 0, NULL, 0, NULL, 1),
(35480, 27542, '3', 'Don Bosco arts and Science College', '', 'B. Com', '2024', 81.00, '', 1, '2025-12-02 06:19:54', 0, NULL, 0, NULL, 1),
(35481, 27538, '3', 'University of Madras', '', 'B.com ( General )', '2025', 61.00, '', 1, '2025-12-02 06:33:09', 0, NULL, 0, NULL, 1),
(35482, 27545, '3', 'Anna university ', '', 'BE-ECE', '2023', 81.00, '', 1, '2025-12-02 06:59:25', 0, NULL, 0, NULL, 1),
(35483, 27546, '3', 'Madras university ', '', 'BA-ENG', '2023', 79.00, '', 1, '2025-12-02 07:07:40', 0, NULL, 0, NULL, 1),
(35484, 27547, '3', 'Madara university ', '', 'B.A History and tourism ', '2025', 61.00, '', 1, '2025-12-02 09:24:29', 0, NULL, 0, NULL, 1),
(35485, 27551, '3', 'madras university', '', 'accounting ', '2024', 69.00, '', 1, '2025-12-02 01:33:18', 0, NULL, 0, NULL, 1),
(35486, 27554, '3', 'Bharathidhasan university thirchy', '', 'Bcom Computer Application ', '2024', 79.00, '', 1, '2025-12-03 04:46:16', 0, NULL, 0, NULL, 1),
(35487, 27555, '3', 'Bharathidasan university ', '', 'BCA ', '2025', 85.00, '', 1, '2025-12-03 04:50:43', 0, NULL, 0, NULL, 1),
(35488, 27556, '1', 'State board', '', '', '2018', 73.00, '', 1, '2025-12-03 05:14:34', 0, NULL, 0, NULL, 1),
(35489, 27556, '2', 'State board', '', '', '2020', 53.00, '', 1, '2025-12-03 05:14:50', 0, NULL, 0, NULL, 1),
(35490, 27556, '3', 'Manonmaniam sundaranar university', '', 'Bsc computer science', '2025', 70.00, '', 1, '2025-12-03 05:15:38', 0, NULL, 0, NULL, 1),
(35491, 27557, '4', 'Madras University ', '', '', '2023', 62.00, '', 1, '2025-12-03 05:17:42', 0, NULL, 0, NULL, 1),
(35492, 27558, '3', 'Bengaluru University ', '', 'BCA', '2023', 7.60, '', 1, '2025-12-03 05:38:18', 0, NULL, 0, NULL, 1),
(35493, 27560, '5', 'Vsvn polytechnic College ', '', '', '2018', 79.40, '', 1, '2025-12-03 05:46:04', 0, NULL, 0, NULL, 1),
(35494, 27559, '5', 'Thangammuthupolytechniccollege', '', '', '2016', 80.00, '', 1, '2025-12-03 05:46:32', 0, NULL, 0, NULL, 1),
(35495, 27561, '3', 'Karnataka university dharwad', '', 'Bsc', '2020', 57.89, '', 1, '2025-12-03 05:50:14', 0, NULL, 0, NULL, 1),
(35496, 27562, '3', 'Anna university ', '', 'Bachelor of engineering ', '2023', 7.20, '', 1, '2025-12-03 05:56:19', 0, NULL, 0, NULL, 1),
(35497, 27563, '3', 'Mgr University, Maduravoyal', '', 'B.sc Visual and Communication ', '2024', 8.04, '', 1, '2025-12-03 06:09:38', 0, NULL, 0, NULL, 1),
(35498, 27564, '3', 'Madras University ', '', 'B.sc', '2022', 65.00, '', 1, '2025-12-03 06:10:36', 0, NULL, 0, NULL, 1),
(35499, 27550, '3', 'The new college ', '', 'B.com general ', '2025', 6.20, '', 1, '2025-12-03 06:18:08', 0, NULL, 0, NULL, 1),
(35500, 27536, '3', 'new collage', '', 'ba', '2019', 80.00, '', 1, '2025-12-03 06:53:01', 0, NULL, 0, NULL, 1),
(35501, 27565, '3', 'Annamalai University ', '', 'Bachelor of commerce (b.com)', '2025', 69.00, '', 1, '2025-12-03 07:32:33', 0, NULL, 0, NULL, 1),
(35502, 27549, '3', 'Annamalai University ', '', 'B. Con', '2025', 81.00, '', 1, '2025-12-03 07:33:26', 0, NULL, 0, NULL, 1),
(35503, 27566, '2', 'State board karnataka', '', '', '2024', 87.00, '', 1, '2025-12-03 08:49:59', 0, NULL, 0, NULL, 1),
(35504, 27567, '4', 'Vellore Institute of Technology ', '', 'MCA', '2025', 87.00, '', 1, '2025-12-03 11:18:36', 0, NULL, 0, NULL, 1),
(35505, 27567, '3', 'Vellore Institute of Technology ', '', 'BCA', '2023', 78.00, '', 1, '2025-12-03 11:18:52', 0, NULL, 0, NULL, 1),
(35506, 27568, '3', 'Anna university ', '', 'BE ECE', '2017', 70.00, '', 1, '2025-12-03 11:35:57', 0, NULL, 0, NULL, 1),
(35507, 27570, '5', 'dote', '', 'Computer science of diploma', '2015', 51.00, '', 1, '2025-12-03 12:50:20', 0, NULL, 0, NULL, 1),
(35508, 27573, '3', 'University of Madras', '', 'B. Com', '2024', 56.30, '', 1, '2025-12-03 01:55:32', 0, NULL, 0, NULL, 1),
(35509, 27576, '3', 'Madras University ', '', 'Bsc Mathematics ', '2025', 75.00, '', 1, '2025-12-03 02:24:06', 0, NULL, 0, NULL, 1),
(35510, 27574, '3', 'University of Madras ', '', 'B.com Corporate Secretaryship ', '2025', 63.00, '', 1, '2025-12-03 02:32:58', 0, NULL, 0, NULL, 1),
(35511, 27574, '2', 'State board of Tamilnadu', '', '', '2022', 59.00, '', 1, '2025-12-03 02:34:21', 0, NULL, 0, NULL, 1),
(35512, 27574, '1', 'State board of Tamilnadu ', '', '', '2020', 62.80, '', 1, '2025-12-03 02:35:36', 0, NULL, 0, NULL, 1),
(35513, 27579, '5', 'dote', '', 'computer engineering of diploma', '2015', 52.00, '', 1, '2025-12-04 04:53:57', 0, NULL, 0, NULL, 1),
(35514, 27580, '3', 'Bharathidasan University ', '', 'BCA', '2022', 57.00, '', 1, '2025-12-04 04:59:16', 0, NULL, 0, NULL, 1),
(35515, 27583, '3', 'Bharathidasan university ', '', 'Bsc. Mathematics ', '2018', 70.00, '', 1, '2025-12-04 05:17:54', 0, NULL, 0, NULL, 1),
(35516, 27581, '4', 'University of Madras ', '', 'Master in Business administration ', '2024', 70.00, '', 1, '2025-12-04 05:26:47', 0, NULL, 0, NULL, 1),
(35517, 27584, '3', 'Pachayappa\'s college ', '', 'B sc physics', '2019', 60.00, '', 1, '2025-12-04 05:32:02', 0, NULL, 0, NULL, 1),
(35518, 27585, '3', 'Thiruvalluvar university ', '', 'B.com ( Bank management)', '2023', 73.00, '', 1, '2025-12-04 06:15:31', 0, NULL, 0, NULL, 1),
(35519, 27575, '3', 'Madras University ', '', 'B. Com', '2019', 80.00, '', 1, '2025-12-04 06:19:13', 0, NULL, 0, NULL, 1),
(35520, 27586, '3', 'Thiruvalluvar university', '', 'B. Com ( Bank management) ', '2023', 70.00, '', 1, '2025-12-04 06:20:50', 0, NULL, 0, NULL, 1),
(35521, 27587, '3', 'madras christian college', '', 'bsc computer scince', '2025', 83.00, '', 1, '2025-12-04 06:38:04', 0, NULL, 0, NULL, 1),
(35522, 27589, '3', 'Madras university', '', 'Bsc Mathematics', '2021', 63.00, '', 1, '2025-12-04 07:11:43', 0, NULL, 0, NULL, 1),
(35523, 27588, '3', 'Anna university', '', 'B. E', '2025', 70.00, '', 1, '2025-12-04 09:50:59', 0, NULL, 0, NULL, 1),
(35524, 27588, '5', 'Government polytechnic college tirunelveli', '', 'Diploma', '2021', 71.00, '', 1, '2025-12-04 09:51:36', 0, NULL, 0, NULL, 1),
(35525, 27591, '3', 'Bharathidasan university ', '', 'Geology ', '2025', 75.00, '', 1, '2025-12-04 12:55:37', 0, NULL, 0, NULL, 1),
(35526, 27592, '3', 'Bharathi women\'s college ', '', 'B.sc zoology ', '2019', 60.00, '', 1, '2025-12-04 01:12:17', 0, NULL, 0, NULL, 1),
(35527, 27593, '3', 'Bharathi women\'s college ', '', 'B.sc zoology ', '2019', 60.00, '', 1, '2025-12-04 01:23:02', 0, NULL, 0, NULL, 1),
(35528, 27594, '4', 'Annamalai university ', '', 'M.com', '2024', 79.00, '', 1, '2025-12-04 01:40:41', 0, NULL, 0, NULL, 1),
(35529, 27595, '3', 'Periyar University ', '', 'BCA ', '2025', 68.00, '', 1, '2025-12-05 05:05:36', 0, NULL, 0, NULL, 1),
(35530, 27597, '4', 'JNTUA ', '', 'MBA ', '2017', 70.00, '', 1, '2025-12-05 05:38:37', 0, NULL, 0, NULL, 1),
(35531, 27597, '3', 'SV university ', '', 'B.com ', '2014', 65.00, '', 1, '2025-12-05 05:39:31', 0, NULL, 0, NULL, 1),
(35532, 27597, '2', 'Govt Higher secondary school ', '', '', '2011', 51.00, '', 1, '2025-12-05 05:40:11', 0, NULL, 0, NULL, 1),
(35533, 27597, '1', 'Govt High school ', '', '', '2009', 50.00, '', 1, '2025-12-05 05:40:37', 0, NULL, 0, NULL, 1),
(35534, 27598, '3', 'Acharya Nagarjuna University ', '', 'Bsc', '2022', 79.00, '', 1, '2025-12-05 05:43:06', 0, NULL, 0, NULL, 1),
(35535, 27596, '3', 'Kongu engineering college ', '', 'B.Tech', '2018', 7.34, '', 1, '2025-12-05 05:55:54', 0, NULL, 0, NULL, 1),
(35536, 27600, '4', 'The new college ', '', 'Ma arabic ', '2025', 86.00, '', 1, '2025-12-05 07:26:35', 0, NULL, 0, NULL, 1),
(35537, 27602, '4', 'Dr.MGR educational and research institute ', '', 'MBA', '2022', 75.00, '', 1, '2025-12-05 02:04:06', 0, NULL, 0, NULL, 1),
(35538, 27603, '3', 'Anna University ', '', 'BE - Electrical and electronic Engineering ', '2016', 61.00, '', 1, '2025-12-06 04:27:06', 0, NULL, 0, NULL, 1),
(35539, 27604, '3', 'Annamalai University ', '', 'B.com', '2025', 70.00, '', 1, '2025-12-06 04:30:31', 0, NULL, 0, NULL, 1),
(35540, 27606, '4', 'Anna University ', '', 'MBA (HR & Business Analytics)', '2026', 68.00, '', 1, '2025-12-06 04:45:09', 0, NULL, 0, NULL, 1),
(35541, 27607, '4', 'Anna University ', '', 'MBA-HR, Business analytics ', '2026', 65.00, '', 1, '2025-12-06 04:48:25', 0, NULL, 0, NULL, 1),
(35542, 27609, '4', 'Madurai kamaraj University ', '', 'M.ckm', '2025', 61.70, '', 1, '2025-12-06 05:12:30', 0, NULL, 0, NULL, 1),
(35543, 27610, '3', 'Thiruvalluvar ', '', 'Bcom F&A', '2023', 65.00, '', 1, '2025-12-06 01:12:24', 0, NULL, 0, NULL, 1),
(35544, 27615, '4', 'BHARATHIDASAN UNIVERSITY ', '', 'MCA', '2023', 79.00, '', 1, '2025-12-08 04:08:59', 0, NULL, 0, NULL, 1),
(35545, 27615, '3', 'BHARATHIDASAN UNIVERSITY ', '', 'B.sc Computer Science ', '2021', 81.00, '', 1, '2025-12-08 04:09:33', 0, NULL, 0, NULL, 1),
(35546, 27615, '2', 'TAMILNADU STATE BOARD ', '', '', '2018', 57.00, '', 1, '2025-12-08 04:10:20', 0, NULL, 0, NULL, 1),
(35547, 27615, '1', 'TAMIL NADU STATE BOARD ', '', '', '2016', 89.00, '', 1, '2025-12-08 04:10:40', 0, NULL, 0, NULL, 1),
(35548, 27616, '3', 'Manonmaniam sundaranar university ', '', 'Bachelor of computer application', '2022', 52.00, '', 1, '2025-12-08 05:12:09', 0, NULL, 0, NULL, 1),
(35549, 27617, '3', 'Diploma', '', 'DCE', '2025', 64.00, '', 1, '2025-12-08 05:20:04', 0, NULL, 0, NULL, 1),
(35550, 27619, '3', 'Madras university ', '', 'Bsc cs', '2025', 58.00, '', 1, '2025-12-08 05:23:44', 0, NULL, 0, NULL, 1),
(35551, 27618, '4', 'Madras University ', '', 'MBA', '2021', 75.00, '', 1, '2025-12-08 05:27:11', 0, NULL, 0, NULL, 1),
(35552, 27621, '5', 'CIPET', '', 'Diploma in plastic mould technology ', '2019', 67.00, '', 1, '2025-12-08 06:07:50', 0, NULL, 0, NULL, 1),
(35553, 27622, '3', 'Madras University ', '', 'B.com', '2016', 61.00, '', 1, '2025-12-08 06:39:09', 0, NULL, 0, NULL, 1),
(35554, 27625, '3', 'Madras University ', '', 'B com', '2021', 70.00, '', 1, '2025-12-08 06:45:44', 0, NULL, 0, NULL, 1),
(35555, 27624, '3', 'Dr. M.G.R. Educational and Research Institute', '', 'B.com accounting and finance ', '2025', 70.00, '', 1, '2025-12-08 06:53:39', 0, NULL, 0, NULL, 1),
(35556, 27623, '3', 'Anna university ', '', 'BE-Mechanical', '2025', 7.90, '', 1, '2025-12-08 07:12:21', 0, NULL, 0, NULL, 1),
(35557, 27623, '2', 'State board', '', '', '2021', 77.66, '', 1, '2025-12-08 07:14:58', 0, NULL, 0, NULL, 1),
(35558, 27623, '1', 'State board ', '', '', '2019', 71.40, '', 1, '2025-12-08 07:16:12', 0, NULL, 0, NULL, 1),
(35559, 27627, '3', 'St Francis college ', '', 'Bcom ', '2025', 65.00, '', 1, '2025-12-08 08:39:41', 0, NULL, 0, NULL, 1),
(35560, 27626, '1', 'State board ', '', 'B.com', '2020', 50.00, '', 1, '2025-12-08 08:43:38', 0, NULL, 0, NULL, 1),
(35561, 27626, '3', 'State board', '', 'B.com', '2025', 70.00, '', 1, '2025-12-08 08:44:27', 0, NULL, 0, NULL, 1),
(35562, 27629, '3', 'university of medras', '', 'b com general', '2022', 76.00, '', 1, '2025-12-08 11:13:46', 0, NULL, 0, NULL, 1),
(35563, 27630, '3', 'Madras university', '', 'B.com cs', '2019', 80.00, '', 1, '2025-12-08 03:49:21', 0, NULL, 0, NULL, 1),
(35564, 27633, '3', 'Madras University ', '', 'B.com general ', '2023', 77.00, '', 1, '2025-12-09 05:07:49', 0, NULL, 0, NULL, 1),
(35565, 27632, '4', 'Anna University ', '', 'Master of Business Administration ', '2026', 88.00, '', 1, '2025-12-09 05:07:53', 1, '2025-12-09 05:08:16', 0, NULL, 1),
(35566, 27633, '1', 'State board ', '', '', '2018', 67.00, '', 1, '2025-12-09 05:08:20', 0, NULL, 0, NULL, 1),
(35567, 27633, '2', 'State board ', '', '', '2020', 62.00, '', 1, '2025-12-09 05:08:42', 0, NULL, 0, NULL, 1),
(35568, 27634, '1', 'Banglore university ', '', '', '2017', 50.28, '', 1, '2025-12-09 05:37:26', 0, NULL, 0, NULL, 1),
(35569, 27635, '1', 'Mysore ', '', '', '1996', 50.00, '', 1, '2025-12-09 05:38:15', 0, NULL, 0, NULL, 1),
(35570, 27636, '1', 'Gulbarga ', '', '', '2011', 41.30, '', 1, '2025-12-09 05:56:41', 0, NULL, 0, NULL, 1),
(35571, 27637, '3', 'University ', '', 'B.com', '2025', 60.00, '', 1, '2025-12-09 06:04:45', 0, NULL, 0, NULL, 1),
(35572, 27631, '5', 'Vel tech politechnic ', '', '', '2017', 70.00, '', 1, '2025-12-09 06:06:33', 0, NULL, 0, NULL, 1),
(35573, 27639, '3', 'University ', '', 'Bca', '2025', 85.00, '', 1, '2025-12-09 06:11:49', 0, NULL, 0, NULL, 1),
(35574, 27638, '3', 'Anna University ', '', 'Bachelor of Engineering ', '2025', 80.00, '', 1, '2025-12-09 06:11:54', 0, NULL, 0, NULL, 1),
(35575, 27638, '2', 'Tamil Nadu State board ', '', '', '2021', 79.00, '', 1, '2025-12-09 06:12:55', 0, NULL, 0, NULL, 1),
(35576, 27638, '1', 'Tamil Nadu State board ', '', '', '2019', 71.00, '', 1, '2025-12-09 06:13:54', 0, NULL, 0, NULL, 1),
(35577, 27640, '3', 'Anna University ', '', 'BE', '2024', 84.00, '', 1, '2025-12-09 06:56:28', 0, NULL, 0, NULL, 1),
(35578, 27641, '3', 'Rani channamma university Belagavi ', '', 'BA', '2016', 64.00, '', 1, '2025-12-09 06:59:24', 0, NULL, 0, NULL, 1),
(35579, 27642, '3', 'The New college ', '', 'B.Com', '2023', 7.50, '', 1, '2025-12-09 11:24:32', 1, '2025-12-09 11:27:01', 0, NULL, 0),
(35580, 27642, '3', 'The New college ', '', 'B.Com (General)', '2023', 7.50, '', 1, '2025-12-09 11:28:07', 0, NULL, 0, NULL, 1),
(35581, 27643, '3', 'University ', '', 'BA tamil literature ', '2025', 60.00, '', 1, '2025-12-09 11:51:20', 0, NULL, 0, NULL, 1),
(35582, 27644, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 53.00, '', 1, '2025-12-10 05:02:22', 0, NULL, 0, NULL, 1),
(35583, 27645, '3', 'Madras University ', '', 'B.sc Mathematics with computer application ', '2025', 56.00, '', 1, '2025-12-10 05:19:45', 0, NULL, 0, NULL, 1),
(35584, 27646, '4', 'Bharathidasan University ', '', 'M.Sc IT', '2024', 81.00, '', 1, '2025-12-10 05:32:14', 0, NULL, 0, NULL, 1),
(35585, 27649, '3', 'university', '', 'bba', '2023', 76.00, '', 1, '2025-12-10 06:11:39', 0, NULL, 0, NULL, 1),
(35586, 27650, '3', 'University of madras ', '', 'B.com', '2025', 7.25, '', 1, '2025-12-10 06:12:12', 0, NULL, 0, NULL, 1),
(35587, 27649, '2', 'university', '', '', '2020', 73.00, '', 1, '2025-12-10 06:12:14', 0, NULL, 0, NULL, 1),
(35588, 27650, '2', 'Mcc hr sec school ', '', '', '2022', 70.00, '', 1, '2025-12-10 06:12:44', 0, NULL, 0, NULL, 1),
(35589, 27647, '4', 'anna University ', '', 'mba hr with Operations’s ', '2026', 75.00, '', 1, '2025-12-10 06:56:16', 0, NULL, 0, NULL, 1),
(35590, 27652, '3', 'Bharathidasan University', '', 'B.com', '2025', 75.00, '', 1, '2025-12-10 07:03:26', 0, NULL, 0, NULL, 1),
(35591, 27652, '2', 'state board of tamilnadu', '', '', '2020', 77.00, '', 1, '2025-12-10 07:04:51', 1, '2025-12-10 07:05:36', 0, NULL, 1),
(35592, 27652, '1', 'state board of tamilnadu', '', '', '2018', 87.00, '', 1, '2025-12-10 07:05:19', 0, NULL, 0, NULL, 1),
(35593, 27654, '3', 'The chennai national arts and science colleage ', '', 'Bba', '2020', 50.00, '', 1, '2025-12-10 07:13:24', 0, NULL, 0, NULL, 1),
(35594, 27655, '5', 'Flower beauty academy ', '', 'No', '2019', 50.00, '', 1, '2025-12-10 07:59:54', 0, NULL, 0, NULL, 1),
(35595, 27656, '3', 'Anna University ', '', 'B.E.MECHANICAL ENGINEERING ', '2021', 75.00, '', 1, '2025-12-10 08:05:55', 0, NULL, 0, NULL, 1),
(35596, 27656, '2', 'State board ', '', '', '2017', 69.00, '', 1, '2025-12-10 08:07:28', 0, NULL, 0, NULL, 1),
(35597, 27658, '4', 'Anna University ', '', 'B.E computer science engineering ', '2022', 7.52, '', 1, '2025-12-10 10:47:31', 0, NULL, 0, NULL, 1),
(35598, 27657, '4', 'SRM', '', 'MBA HR ', '2025', 74.40, '', 1, '2025-12-10 10:57:02', 0, NULL, 0, NULL, 1),
(35599, 27659, '1', 'State Board of tamilNadu', '', '', '2019', 78.00, '', 1, '2025-12-10 12:43:08', 0, NULL, 0, NULL, 1),
(35600, 27659, '2', 'State board of tamilNadu', '', '', '2021', 77.00, '', 1, '2025-12-10 12:43:36', 0, NULL, 0, NULL, 1),
(35601, 27659, '3', 'Anna university ', '', 'Bachelor\'s in Computer Science Engineering', '2021', 78.00, '', 1, '2025-12-10 12:43:54', 0, NULL, 0, NULL, 1),
(35602, 27661, '4', 'Autonomous ', '', 'M. COM( GENERAL)', '2025', 79.00, '', 1, '2025-12-11 04:22:10', 0, NULL, 0, NULL, 1),
(35603, 27662, '4', 'S.A Engineering College Autonomous ', '', 'MBA', '2026', 76.00, '', 1, '2025-12-11 04:47:06', 1, '2025-12-11 04:47:35', 0, NULL, 1),
(35604, 27664, '3', 'Madras University ', '', 'B.com in banking management ', '2023', 7.12, '', 1, '2025-12-11 05:02:57', 0, NULL, 0, NULL, 1),
(35605, 27663, '3', 'Autonomous ', '', 'B.com accounting and finance ', '2025', 77.00, '', 1, '2025-12-11 05:04:20', 0, NULL, 0, NULL, 1),
(35606, 27665, '3', 'Bharathidasan university orathanadu ', '', 'B. Com', '2014', 77.00, '', 1, '2025-12-11 05:20:56', 0, NULL, 0, NULL, 1),
(35607, 27666, '3', 'Madras University ', '', 'BCA', '2023', 80.00, '', 1, '2025-12-11 05:56:45', 0, NULL, 0, NULL, 1),
(35608, 27667, '3', 'Sree muthukumara swamy ', '', 'B.com', '2023', 69.00, '', 1, '2025-12-11 05:59:49', 0, NULL, 0, NULL, 1),
(35609, 27666, '1', 'State board', '', 'BCA', '2018', 65.00, '', 1, '2025-12-11 05:59:49', 1, '2025-12-11 06:01:39', 0, NULL, 1),
(35610, 27666, '2', 'State board ', '', '', '2020', 65.00, '', 1, '2025-12-11 06:00:15', 0, NULL, 0, NULL, 1),
(35611, 27668, '4', 'st thoma arts and since', '', 'b com cs', '2023', 60.00, '', 1, '2025-12-11 06:02:57', 0, NULL, 0, NULL, 1),
(35612, 27669, '3', 'Bharat University ', '', 'Bsc computer science ', '2019', 60.00, '', 1, '2025-12-11 06:27:41', 0, NULL, 0, NULL, 1),
(35613, 27670, '3', 'university', '', '', '2022', 70.00, '', 1, '2025-12-11 06:58:02', 0, NULL, 0, NULL, 1),
(35614, 27671, '1', 'bangalore university', '', '', '2006', 60.00, '', 1, '2025-12-11 07:05:42', 0, NULL, 0, NULL, 1),
(35615, 27671, '2', 'bangalore university', '', '', '2008', 68.00, '', 1, '2025-12-11 07:06:08', 0, NULL, 0, NULL, 1),
(35616, 27672, '3', 'JJ College of arts and science ', '', 'Computer Application ', '2025', 7.20, '', 1, '2025-12-11 07:32:43', 0, NULL, 0, NULL, 1),
(35617, 27674, '3', 'Madras University ', '', 'B Sc computer science ', '2025', 63.30, '', 1, '2025-12-11 09:17:38', 0, NULL, 0, NULL, 1),
(35618, 27675, '1', 'Bharathidasan university', '', '', '2024', 70.00, '', 1, '2025-12-11 09:33:59', 0, NULL, 0, NULL, 1),
(35619, 27676, '3', 'Bharathidasan university ', '', 'B.com ', '2024', 69.00, '', 1, '2025-12-11 09:38:33', 0, NULL, 0, NULL, 1),
(35620, 27678, '3', 'Anna University ', '', 'B.E', '2025', 85.00, '', 1, '2025-12-11 09:46:48', 0, NULL, 0, NULL, 1),
(35621, 27677, '4', 'Bharathidhasan university', '', 'MCA', '2025', 86.00, '', 1, '2025-12-11 10:05:04', 0, NULL, 0, NULL, 1),
(35622, 27680, '2', 'Vijaya Bifurcated pu college ', '', '', '2022', 70.00, '', 1, '2025-12-11 10:16:58', 0, NULL, 0, NULL, 1),
(35623, 27682, '3', 'Madurai kamarajar university', '', 'Bachelor of commerce', '2025', 60.00, '', 1, '2025-12-11 01:32:12', 0, NULL, 0, NULL, 1),
(35624, 27683, '4', 'madras university', '', 'mba', '2022', 63.00, '', 1, '2025-12-11 02:33:59', 0, NULL, 0, NULL, 1),
(35625, 27686, '4', 'Jj college of engineering and technology -trichy', '', 'MBA ', '2024', 69.00, '', 1, '2025-12-12 05:19:01', 0, NULL, 0, NULL, 1),
(35626, 27688, '3', 'Dhandraj Baid Jain college', '', 'Bachelor of Commerce', '2023', 79.00, '', 1, '2025-12-12 05:24:18', 0, NULL, 0, NULL, 1),
(35627, 27689, '3', 'DMI college of engineering ', '', 'B.E', '2024', 75.00, '', 1, '2025-12-12 05:31:39', 0, NULL, 0, NULL, 1),
(35628, 27690, '4', 'Anna university ', '', 'MBA', '2025', 7.63, '', 1, '2025-12-12 05:53:49', 0, NULL, 0, NULL, 1),
(35629, 27692, '3', 'Madras university ', '', 'B.Com Computer Application ', '2025', 65.00, '', 1, '2025-12-12 06:15:33', 0, NULL, 0, NULL, 1),
(35630, 27691, '5', 'thai moogambigai polytechnic college ', '', 'electrical and electronics engineering ', '2015', 63.00, '', 1, '2025-12-12 06:17:45', 0, NULL, 0, NULL, 1),
(35631, 27693, '4', 'Karpagam University ', '', 'MBA ', '2024', 80.00, '', 1, '2025-12-12 06:25:28', 0, NULL, 0, NULL, 1),
(35632, 27695, '2', 'University ', '', '', '2021', 67.00, '', 1, '2025-12-12 08:26:58', 0, NULL, 0, NULL, 1),
(35633, 27696, '4', 'Alagappa university ', '', 'Msc IT', '2023', 85.00, '', 1, '2025-12-12 08:35:23', 0, NULL, 0, NULL, 1),
(35634, 27698, '3', 'Apollo art\'s and science college ', '', 'Bca', '2024', 77.35, '', 1, '2025-12-12 09:48:21', 0, NULL, 0, NULL, 1),
(35635, 27701, '3', 'Madras University ', '', 'B.Com', '2025', 60.00, '', 1, '2025-12-12 10:08:20', 0, NULL, 0, NULL, 1),
(35636, 27704, '3', 'Madaras university', '', '', '2023', 75.00, '', 1, '2025-12-12 10:35:21', 0, NULL, 0, NULL, 1),
(35637, 27702, '3', 'University of Madras ', '', 'BBA ', '2024', 64.00, '', 1, '2025-12-12 10:37:02', 0, NULL, 0, NULL, 1),
(35638, 27705, '3', 'madras University ', '', 'b.com', '2024', 60.00, '', 1, '2025-12-12 12:07:05', 0, NULL, 0, NULL, 1),
(35639, 27706, '4', 'Madras University ', '', 'BSC computer science ', '2022', 68.00, '', 1, '2025-12-12 12:47:22', 0, NULL, 0, NULL, 1),
(35640, 27707, '4', 'Madurai Kamaraj University ', '', '', '2025', 85.00, '', 1, '2025-12-12 01:11:28', 1, '2025-12-12 01:14:10', 0, NULL, 0),
(35641, 27707, '4', 'Madurai Kamaraj University ', '', 'M.Com (CA)', '2025', 85.00, '', 1, '2025-12-12 01:12:31', 0, NULL, 0, NULL, 1),
(35642, 27707, '1', 'Board', '', '', '2021', 75.00, '', 1, '2025-12-12 01:13:00', 0, NULL, 0, NULL, 1),
(35643, 27708, '4', 'PSGR KRISHNAMMAL COLLEGE FOR WOMEN ', '', 'Chemistry ', '2024', 81.00, '', 1, '2025-12-12 01:13:16', 0, NULL, 0, NULL, 1),
(35644, 27707, '3', 'Madurai Kamaraj University ', '', 'B.Com (CA)', '2023', 80.00, '', 1, '2025-12-12 01:13:29', 0, NULL, 0, NULL, 1),
(35645, 27708, '3', 'Holy cross College ', '', 'Chemistry ', '2022', 85.00, '', 1, '2025-12-12 01:13:48', 0, NULL, 0, NULL, 1),
(35646, 27707, '2', 'Board', '', '', '2019', 72.00, '', 1, '2025-12-12 01:13:52', 0, NULL, 0, NULL, 1),
(35647, 27709, '3', 'Madurai kamaraj university ', '', 'B.com (general)', '2024', 62.00, '', 1, '2025-12-12 01:14:48', 0, NULL, 0, NULL, 1),
(35648, 27711, '3', 'Ramakrishna mission Vivekananda College ', '', 'B.Com (Bank management)', '2024', 61.00, '', 1, '2025-12-12 01:24:41', 0, NULL, 0, NULL, 1),
(35649, 27710, '3', 'Annai violet college of arts and science ', '', 'BBA ', '2024', 78.00, '', 1, '2025-12-12 01:24:59', 0, NULL, 0, NULL, 1),
(35650, 27713, '3', 'Guru nanak college ', '', 'B.com corporate securityship ', '2025', 60.00, '', 1, '2025-12-12 02:17:30', 0, NULL, 0, NULL, 1),
(35651, 27703, '3', 'guru nanak College ', '', 'b.com bm', '2025', 56.00, '', 1, '2025-12-12 02:29:32', 0, NULL, 0, NULL, 1),
(35652, 27715, '3', 'Madras University ', '', 'B.com', '2025', 70.00, '', 1, '2025-12-12 06:21:50', 0, NULL, 0, NULL, 1),
(35653, 27716, '5', 'Panimalar', '', '', '2010', 80.00, '', 1, '2025-12-13 05:03:13', 0, NULL, 0, NULL, 1),
(35654, 27717, '3', 'Anna university ', '', 'BE', '2024', 8.00, '', 1, '2025-12-13 05:18:02', 0, NULL, 0, NULL, 1),
(35655, 27718, '3', 'Raani channamma University Belagavi ', '', 'B.com', '2023', 68.00, '', 1, '2025-12-13 05:47:35', 0, NULL, 0, NULL, 1),
(35656, 27718, '1', 'karnataka Bord', '', '', '2018', 75.00, '', 1, '2025-12-13 05:48:43', 0, NULL, 0, NULL, 1),
(35657, 27718, '2', 'Karnataka Bord ', '', '', '2020', 61.00, '', 1, '2025-12-13 05:49:04', 0, NULL, 0, NULL, 1),
(35658, 27719, '3', 'university of madras ', '', 'b a english', '2022', 68.00, '', 1, '2025-12-13 06:41:23', 0, NULL, 0, NULL, 1),
(35659, 27720, '4', 'Anna university ', '', 'ME ', '2013', 75.00, '', 1, '2025-12-13 09:44:21', 0, NULL, 0, NULL, 1),
(35660, 27720, '3', 'Anna university ', '', 'BE', '2011', 74.00, '', 1, '2025-12-13 09:44:53', 0, NULL, 0, NULL, 1),
(35661, 27720, '2', 'State board ', '', '', '2007', 83.08, '', 1, '2025-12-13 09:45:17', 0, NULL, 0, NULL, 1),
(35662, 27720, '1', 'State board ', '', '', '2005', 81.40, '', 1, '2025-12-13 09:45:36', 0, NULL, 0, NULL, 1),
(35663, 27721, '3', 'Madras University ', '', 'B com', '2023', 78.00, '', 1, '2025-12-13 10:04:05', 0, NULL, 0, NULL, 1),
(35664, 27721, '1', 'CBSE ', '', '', '2018', 60.00, '', 1, '2025-12-13 10:05:19', 0, NULL, 0, NULL, 1),
(35665, 27721, '2', 'Matriculation ', '', '', '2020', 80.00, '', 1, '2025-12-13 10:05:48', 0, NULL, 0, NULL, 1),
(35666, 27723, '3', 'madras university', '', 'bsc psychology', '2023', 80.00, '', 1, '2025-12-15 02:49:19', 0, NULL, 0, NULL, 1),
(35667, 27687, '3', 'madras university ', '', 'bca ', '2025', 7.50, '', 1, '2025-12-15 05:30:40', 0, NULL, 0, NULL, 1),
(35668, 27687, '1', 'tamilnadu board ', '', '', '2020', 58.00, '', 1, '2025-12-15 05:37:36', 0, NULL, 0, NULL, 1),
(35669, 27687, '2', 'tamil nadu board ', '', '', '2022', 52.00, '', 1, '2025-12-15 05:41:06', 0, NULL, 0, NULL, 1),
(35670, 27727, '3', 'Tiruvallur university ', '', 'B.com', '2023', 78.00, '', 1, '2025-12-15 06:14:51', 0, NULL, 0, NULL, 1),
(35671, 27726, '3', 'Anna University ', '', 'Diploma/EEE', '2022', 89.00, '', 1, '2025-12-15 06:16:20', 1, '2025-12-15 06:17:46', 0, NULL, 0),
(35672, 27726, '5', 'Dote ', '', '', '2022', 89.00, '', 1, '2025-12-15 06:17:04', 0, NULL, 0, NULL, 1),
(35673, 27726, '3', 'Anna University ', '', 'BE /EEE', '2025', 7.50, '', 1, '2025-12-15 06:19:01', 0, NULL, 0, NULL, 1),
(35674, 27724, '3', 'Manonmaniam university ', '', 'B.com', '2023', 70.00, '', 1, '2025-12-15 06:33:32', 0, NULL, 0, NULL, 1),
(35675, 27729, '3', 'University of madras', '', 'b.com', '2024', 75.00, '', 1, '2025-12-15 06:34:52', 0, NULL, 0, NULL, 1),
(35676, 27728, '4', 'Anna university ', '', 'MCA', '2025', 82.00, '', 1, '2025-12-15 06:36:42', 0, NULL, 0, NULL, 1),
(35677, 27725, '5', 'Bangalore south uni ', '', 'b.com', '2024', 70.00, '', 1, '2025-12-15 06:48:16', 0, NULL, 0, NULL, 1),
(35678, 27725, '2', 'pre university', '', '', '2020', 68.00, '', 1, '2025-12-15 06:50:49', 1, '2025-12-15 06:52:35', 0, NULL, 1),
(35679, 27725, '1', 'karnataka secondary educatio examination board', '', '', '2017', 65.00, '', 1, '2025-12-15 06:55:16', 0, NULL, 0, NULL, 1),
(35680, 27730, '3', 'Bijapur university ', '', 'Bcom', '2013', 69.00, '', 1, '2025-12-15 07:00:38', 0, NULL, 0, NULL, 1),
(35681, 27731, '3', 'SRM Institute Of Science And Technology ', '', 'Bachelor Of Commerce ', '2025', 74.00, '', 1, '2025-12-15 07:05:09', 0, NULL, 0, NULL, 1),
(35682, 27732, '4', 'Anna university ', '', 'MBA', '2025', 80.00, '', 1, '2025-12-15 08:11:07', 0, NULL, 0, NULL, 1),
(35683, 27732, '3', 'Madras University ', '', 'B.com', '2022', 80.00, '', 1, '2025-12-15 08:11:56', 0, NULL, 0, NULL, 1),
(35684, 27734, '3', 'Anna university ', '', 'B.Tech-information technology ', '2026', 7.90, '', 1, '2025-12-15 11:51:09', 0, NULL, 0, NULL, 1),
(35685, 27735, '3', 'Madars university ', '', 'Bcom', '2024', 80.00, '', 1, '2025-12-15 12:20:25', 0, NULL, 0, NULL, 1),
(35686, 27736, '5', 'Government Polytechnic college ', '', 'Computer Engineering ', '2022', 75.00, '', 1, '2025-12-15 01:10:09', 0, NULL, 0, NULL, 1),
(35687, 27737, '3', 'University of Madras ', '', 'B.com( general)', '2025', 78.00, '', 1, '2025-12-16 04:47:43', 0, NULL, 0, NULL, 1),
(35688, 27738, '3', 'Madras University ', '', 'B com', '2023', 75.00, '', 1, '2025-12-16 05:20:35', 0, NULL, 0, NULL, 1),
(35689, 27739, '3', 'Periyar University ', '', 'BSC Computer Science ', '2022', 65.00, '', 1, '2025-12-16 06:17:46', 0, NULL, 0, NULL, 1),
(35690, 27744, '3', 'mku university', '', 'bba', '2025', 68.00, '', 1, '2025-12-16 07:04:29', 0, NULL, 0, NULL, 1),
(35691, 27744, '5', 'mku', '', 'dca', '2024', 70.00, '', 1, '2025-12-16 07:05:08', 0, NULL, 0, NULL, 1),
(35692, 27743, '3', 'Kongu college arts science ', '', 'Bcom', '2022', 80.00, '', 1, '2025-12-16 07:22:25', 0, NULL, 0, NULL, 1),
(35693, 27746, '3', 'vels University pallavaram', '', 'b.a english', '2025', 65.00, '', 1, '2025-12-16 07:45:02', 0, NULL, 0, NULL, 1),
(35694, 27747, '3', 'University of Madras ', '', 'Bachelor of computer application ', '2022', 65.00, '', 1, '2025-12-16 08:34:56', 0, NULL, 0, NULL, 1),
(35695, 27749, '3', 'Dr mgr university', '', 'B. Com general', '2021', 80.00, '', 1, '2025-12-16 09:27:21', 0, NULL, 0, NULL, 1),
(35696, 27750, '3', 'madras ', '', 'bca', '2024', 82.00, '', 1, '2025-12-16 12:04:43', 0, NULL, 0, NULL, 1),
(35697, 27751, '3', 'Thiruvalluvar university ', '', 'Bca', '2024', 75.00, '', 1, '2025-12-16 12:39:10', 0, NULL, 0, NULL, 1),
(35698, 27752, '3', 'University of madras', '', 'B.com', '2025', 75.00, '', 1, '2025-12-16 01:03:31', 0, NULL, 0, NULL, 1),
(35699, 27753, '3', 'Dwaraka Doss Goverdhan Doss Vaishnav College ', '', 'B.com general ', '2021', 67.00, '', 1, '2025-12-16 03:31:36', 0, NULL, 0, NULL, 1),
(35700, 27742, '3', 'Valluvar Collage of Science and Management', '', 'bsc', '2022', 70.00, '', 1, '2025-12-17 04:08:21', 0, NULL, 0, NULL, 1),
(35701, 27754, '3', 'Jamal mohamed college ', '', 'BBA', '2022', 79.00, '', 1, '2025-12-17 05:25:30', 0, NULL, 0, NULL, 1),
(35702, 27756, '3', 'Chennai national art and science college ', '', 'Bba ', '2017', 60.00, '', 1, '2025-12-17 05:46:23', 0, NULL, 0, NULL, 1),
(35703, 27758, '4', 'Dr.mgr university ', '', 'Mca', '2022', 73.00, '', 1, '2025-12-17 05:50:18', 0, NULL, 0, NULL, 1),
(35704, 27755, '3', 'The new colleges', '', 'B.com CS', '2024', 80.00, '', 1, '2025-12-17 05:51:20', 0, NULL, 0, NULL, 1),
(35705, 27758, '3', ' Thiruvallur university ', '', 'Bsc computer science', '2020', 63.00, '', 1, '2025-12-17 05:51:26', 0, NULL, 0, NULL, 1),
(35706, 27757, '3', 'Bharathidasan university ', '', 'Bsc mathematics ', '2022', 81.00, '', 1, '2025-12-17 05:53:09', 0, NULL, 0, NULL, 1),
(35707, 27741, '3', 'Agurchand Manmull Jain College ', '', 'BSC computer science ', '2024', 55.00, '', 1, '2025-12-17 05:54:51', 0, NULL, 0, NULL, 1),
(35708, 27741, '1', 'Santhome higher secondary school ', '', '', '2021', 52.00, '', 1, '2025-12-17 05:56:11', 0, NULL, 0, NULL, 1),
(35709, 27759, '3', 'Anna University ', '', 'B.Tech   IT ', '2025', 80.00, '', 1, '2025-12-17 06:33:53', 0, NULL, 0, NULL, 1),
(35710, 27759, '2', 'Infant Jesus Higher Secondary school ', '', '', '2021', 85.00, '', 1, '2025-12-17 06:36:05', 0, NULL, 0, NULL, 1),
(35711, 27759, '1', 'Holy Cross Girls Higher Secondary school ', '', '', '2019', 82.00, '', 1, '2025-12-17 06:36:32', 0, NULL, 0, NULL, 1),
(35712, 27760, '3', 'Anna Adarsh College for women ', '', 'B.com corporate secretaryship ', '2025', 60.00, '', 1, '2025-12-17 08:41:54', 0, NULL, 0, NULL, 1),
(35713, 27761, '4', 'Anna University', '', 'MBA', '2026', 8.09, '', 1, '2025-12-17 10:31:46', 0, NULL, 0, NULL, 1),
(35714, 27763, '4', 'bharath University ', '', 'msc in Computer science', '2024', 80.00, '', 1, '2025-12-17 10:42:32', 0, NULL, 0, NULL, 1),
(35715, 27764, '4', 'mathurai kamaraj univercity mathurai', '', 'bca', '2025', 75.00, '', 1, '2025-12-17 11:47:57', 0, NULL, 0, NULL, 1),
(35716, 27766, '3', 'Madras University ', '', 'B.com general ', '2022', 76.00, '', 1, '2025-12-17 12:53:51', 0, NULL, 0, NULL, 1),
(35717, 27771, '4', 'Bhrathidhasan university', '', 'MBA FINANCE', '2025', 72.00, '', 1, '2025-12-18 12:13:24', 0, NULL, 0, NULL, 1),
(35718, 27771, '3', 'Periyar university', '', 'B. Sc maths', '2023', 76.00, '', 1, '2025-12-18 12:14:25', 0, NULL, 0, NULL, 1),
(35719, 27772, '3', 'Bharathidasan university ', '', 'BCA', '2024', 70.00, '', 1, '2025-12-18 05:29:32', 0, NULL, 0, NULL, 1),
(35720, 27773, '4', 'Bharathidasan university ', '', 'Master of Computer application ', '2025', 70.00, '', 1, '2025-12-18 05:34:07', 0, NULL, 0, NULL, 1),
(35721, 27774, '4', 'Madras University ', '', 'MBA', '2025', 75.00, '', 1, '2025-12-18 05:41:20', 0, NULL, 0, NULL, 1),
(35722, 27774, '3', 'Chevalier T.thomas elizabeth college for women', '', 'B.com A&F', '2022', 75.00, '', 1, '2025-12-18 05:42:08', 0, NULL, 0, NULL, 1),
(35723, 27774, '2', 'Manilal M.metha girls higher secondary school ', '', '', '2019', 75.00, '', 1, '2025-12-18 05:42:35', 0, NULL, 0, NULL, 1),
(35724, 27776, '3', 'BCU', '', 'Bcom ', '2022', 72.00, '', 1, '2025-12-18 06:05:02', 0, NULL, 0, NULL, 1),
(35725, 27776, '2', 'State University ', '', '', '2019', 65.00, '', 1, '2025-12-18 06:05:53', 0, NULL, 0, NULL, 1),
(35726, 27776, '1', 'Karnataka State University ', '', '', '2017', 60.00, '', 1, '2025-12-18 06:06:50', 0, NULL, 0, NULL, 1),
(35727, 27778, '3', 'University of Madras ', '', 'B.com ', '2024', 80.00, '', 1, '2025-12-18 07:28:11', 0, NULL, 0, NULL, 1),
(35728, 27779, '3', 'Madras university', '', 'BA. Criminology and police administration', '2021', 77.00, '', 1, '2025-12-18 08:26:50', 0, NULL, 0, NULL, 1),
(35729, 27782, '3', 'Medras unniversity', '', 'B.com', '2024', 95.00, '', 1, '2025-12-18 02:11:22', 0, NULL, 0, NULL, 1),
(35730, 27783, '3', 'madras', '', 'ba', '2021', 76.00, '', 1, '2025-12-18 03:20:49', 0, NULL, 0, NULL, 1),
(35731, 27780, '3', 'Anna University ', '', 'BE', '2025', 70.00, '', 1, '2025-12-18 04:29:52', 0, NULL, 0, NULL, 1),
(35732, 27781, '4', 'Periyar university ', '', 'MBA', '2023', 7.60, '', 1, '2025-12-19 04:15:10', 0, NULL, 0, NULL, 1),
(35733, 27786, '3', 'Dr. MGR Janaki college of arts and science. ', '', 'b.com cs', '2025', 70.00, '', 1, '2025-12-19 04:31:59', 0, NULL, 0, NULL, 1),
(35734, 27789, '3', 'Anna university ', '', 'BE Computer science engineering ', '2025', 7.90, '', 1, '2025-12-19 05:27:20', 0, NULL, 0, NULL, 1),
(35735, 27789, '5', 'DOTE', '', 'Mechanical engineering ', '2022', 90.00, '', 1, '2025-12-19 05:28:40', 0, NULL, 0, NULL, 1),
(35736, 27793, '3', 'Vellore institute of technology ', '', 'B.sc Computer science ', '2024', 86.40, '', 1, '2025-12-19 05:29:31', 0, NULL, 0, NULL, 1),
(35737, 27789, '1', 'Board', '', '', '2018', 75.00, '', 1, '2025-12-19 05:30:04', 0, NULL, 0, NULL, 1),
(35738, 27793, '2', 'TAMILNADU STATEBOARD OF EXAMINATION ', '', '', '2021', 78.80, '', 1, '2025-12-19 05:30:21', 0, NULL, 0, NULL, 1),
(35739, 27793, '1', 'TAMILNADU STATEBOARD OF EXAMINATION ', '', '', '2019', 68.40, '', 1, '2025-12-19 05:31:22', 0, NULL, 0, NULL, 1),
(35740, 27795, '5', 'Dote', '', 'Computer engineering ', '2025', 71.00, '', 1, '2025-12-19 05:33:49', 1, '2025-12-19 05:36:20', 0, NULL, 1),
(35741, 27790, '4', 'Kalasalingam university ', '', 'MBA', '2023', 80.00, '', 1, '2025-12-19 05:34:02', 0, NULL, 0, NULL, 1),
(35742, 27797, '3', 'Bharathidasan University ', '', 'B.sc maths ', '2025', 68.70, '', 1, '2025-12-19 05:34:23', 0, NULL, 0, NULL, 1),
(35743, 27790, '3', 'Kalasalingam university ', '', 'B.COM C.A', '2021', 79.00, '', 1, '2025-12-19 05:34:32', 0, NULL, 0, NULL, 1),
(35744, 27790, '2', 'State Board ', '', '', '2018', 70.00, '', 1, '2025-12-19 05:35:00', 0, NULL, 0, NULL, 1),
(35745, 27798, '3', 'Anna university ', '', 'BE EEE', '2023', 7.98, '', 1, '2025-12-19 05:35:13', 0, NULL, 0, NULL, 1),
(35746, 27797, '2', 'State board ', '', '', '2022', 66.99, '', 1, '2025-12-19 05:35:16', 0, NULL, 0, NULL, 1),
(35747, 27790, '1', 'State Board ', '', '', '2016', 79.00, '', 1, '2025-12-19 05:35:19', 0, NULL, 0, NULL, 1),
(35748, 27797, '1', 'State board ', '', '', '2020', 66.90, '', 1, '2025-12-19 05:35:35', 0, NULL, 0, NULL, 1),
(35749, 27798, '2', 'State board ', '', '', '2019', 57.33, '', 1, '2025-12-19 05:35:55', 0, NULL, 0, NULL, 1),
(35750, 27800, '3', 'Madras University ', '', 'B.sc computer science ', '2025', 80.00, '', 1, '2025-12-19 05:35:58', 0, NULL, 0, NULL, 1),
(35751, 27798, '1', 'State board ', '', '', '2017', 86.00, '', 1, '2025-12-19 05:36:28', 0, NULL, 0, NULL, 1),
(35752, 27791, '3', 'Madras university ', '', 'B. Com', '2025', 77.10, '', 1, '2025-12-19 05:36:45', 0, NULL, 0, NULL, 1),
(35753, 27788, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 78.00, '', 1, '2025-12-19 05:36:49', 0, NULL, 0, NULL, 1),
(35754, 27799, '3', 'Bharat University ', '', 'B.sc.Statistics', '2025', 75.00, '', 1, '2025-12-19 05:37:22', 0, NULL, 0, NULL, 1),
(35755, 27791, '2', 'Government girl higher secondary school ', '', '', '2021', 66.60, '', 1, '2025-12-19 05:37:35', 0, NULL, 0, NULL, 1),
(35756, 27788, '2', 'Board', '', '', '2022', 55.00, '', 1, '2025-12-19 05:38:08', 0, NULL, 0, NULL, 1),
(35757, 27767, '3', 'Madras University ', '', 'Bcom Gen ', '2024', 70.00, '', 1, '2025-12-19 05:38:37', 0, NULL, 0, NULL, 1),
(35758, 27800, '2', 'State board ', '', '', '2022', 64.00, '', 1, '2025-12-19 05:39:35', 0, NULL, 0, NULL, 1),
(35759, 27795, '1', 'Board', '', '', '2020', 41.00, '', 1, '2025-12-19 05:39:40', 0, NULL, 0, NULL, 1),
(35760, 27788, '1', 'Board', '', '', '2020', 60.00, '', 1, '2025-12-19 05:39:42', 0, NULL, 0, NULL, 1),
(35761, 27791, '1', 'Government girl higher secondary school ', '', '', '2019', 66.60, '', 1, '2025-12-19 05:39:53', 0, NULL, 0, NULL, 1),
(35762, 27799, '2', 'State board ', '', 'B.sc.Statistics', '2022', 78.60, '', 1, '2025-12-19 05:40:22', 0, NULL, 0, NULL, 1),
(35763, 27799, '1', 'State board ', '', '', '2020', 72.80, '', 1, '2025-12-19 05:40:41', 0, NULL, 0, NULL, 1),
(35764, 27792, '1', 'Tamil Nadu ', '', '', '2019', 65.00, '', 1, '2025-12-19 05:41:49', 0, NULL, 0, NULL, 1),
(35765, 27792, '2', 'Tamil Nadu ', '', '', '2021', 76.00, '', 1, '2025-12-19 05:43:31', 0, NULL, 0, NULL, 1),
(35766, 27792, '3', 'Madras University ', '', 'B.COM ', '2024', 64.00, '', 1, '2025-12-19 05:44:13', 0, NULL, 0, NULL, 1),
(35767, 27802, '3', 'Madras university', '', 'Bsc computer science', '2025', 65.00, '', 1, '2025-12-19 05:45:01', 1, '2025-12-19 05:45:38', 0, NULL, 1),
(35768, 27796, '3', 'Madras University ', '', 'BBA', '2025', 66.00, '', 1, '2025-12-19 05:45:21', 0, NULL, 0, NULL, 1),
(35769, 27802, '2', 'Board', '', '', '2022', 57.00, '', 1, '2025-12-19 05:46:21', 0, NULL, 0, NULL, 1),
(35770, 27796, '2', 'Board ', '', 'BBA', '2022', 45.00, '', 1, '2025-12-19 05:47:12', 0, NULL, 0, NULL, 1),
(35771, 27801, '3', 'Madras University ', '', 'Bsc Computer Science ', '2025', 67.12, '', 1, '2025-12-19 05:47:27', 0, NULL, 0, NULL, 1),
(35772, 27803, '3', 'Bharathidasan university ', '', 'BCA', '2025', 70.00, '', 1, '2025-12-19 05:47:32', 0, NULL, 0, NULL, 1),
(35773, 27801, '2', 'State board ', '', '', '2021', 57.50, '', 1, '2025-12-19 05:50:23', 0, NULL, 0, NULL, 1),
(35774, 27785, '3', 'the new College ', '', 'b.sc com Science ', '2022', 7.56, '', 1, '2025-12-19 05:59:01', 0, NULL, 0, NULL, 1),
(35775, 27804, '4', 'PAAVAI COLLEGE OF ENGINEERING ', '', 'MCA', '2024', 78.00, '', 1, '2025-12-19 06:00:00', 1, '2025-12-19 06:01:19', 0, NULL, 1),
(35776, 27804, '3', 'GOVERNMENT ARTS AND SCIENCE COLLEGE ', '', 'B.Sc - Computer Science ', '2022', 79.00, '', 1, '2025-12-19 06:01:06', 0, NULL, 0, NULL, 1),
(35777, 27804, '2', 'SKVP HIGHER SECONDARY SCHOOL ', '', '', '2019', 70.00, '', 1, '2025-12-19 06:04:08', 0, NULL, 0, NULL, 1),
(35778, 27804, '1', 'SHRI GURU BRAMMA VIDHYALAYA MATRIC HIGHER SECONDARY SCHOOL ', '', '', '2017', 93.20, '', 1, '2025-12-19 06:05:07', 0, NULL, 0, NULL, 1),
(35779, 27784, '4', 'Easwari srm engineering college ', '', 'MBA', '2026', 80.00, '', 1, '2025-12-19 06:11:15', 0, NULL, 0, NULL, 1),
(35780, 27784, '3', 'Hindustan college of arts and science ', '', 'B.com general ', '2024', 75.00, '', 1, '2025-12-19 06:11:54', 0, NULL, 0, NULL, 1),
(35781, 27794, '5', 'Dote ', '', 'Computer engineering ', '2025', 71.00, '', 1, '2025-12-19 06:26:11', 0, NULL, 0, NULL, 1),
(35782, 27805, '4', 'Bharathidasan university', '', 'Msc, it', '2023', 80.00, '', 1, '2025-12-19 06:50:27', 0, NULL, 0, NULL, 1),
(35783, 27806, '3', 'madras University ', '', 'b.sc comp sci', '2012', 85.00, '', 1, '2025-12-19 07:52:01', 0, NULL, 0, NULL, 1),
(35784, 27808, '3', 'Madras University ', '', 'Bsc plant biology and plant biotechnology ', '2024', 70.00, '', 1, '2025-12-19 09:13:44', 0, NULL, 0, NULL, 1),
(35785, 27809, '3', 'University of madras', '', 'B. Sc', '2021', 68.00, '', 1, '2025-12-19 09:51:39', 0, NULL, 0, NULL, 1),
(35786, 27811, '3', 'Anna University ', '', 'B.Tech', '2021', 71.00, '', 1, '2025-12-19 10:05:17', 0, NULL, 0, NULL, 1),
(35787, 27811, '2', 'Matriculation ', '', '', '2017', 81.00, '', 1, '2025-12-19 10:05:49', 0, NULL, 0, NULL, 1),
(35788, 27811, '1', 'ICSE', '', '', '2015', 76.33, '', 1, '2025-12-19 10:06:16', 0, NULL, 0, NULL, 1),
(35789, 27812, '3', 'JNN INSTITUTE OF ENGINEERING ', '', 'B.E', '2024', 6.90, '', 1, '2025-12-19 11:08:01', 0, NULL, 0, NULL, 1),
(35790, 25183, '5', 'V ramakrishna polytechnic college thiruvetriyur', '', 'DEEE', '2021', 77.00, '', 1, '2025-12-19 12:48:25', 0, NULL, 0, NULL, 1),
(35791, 27813, '2', 'Board', '', '', '2021', 86.00, '', 1, '2025-12-19 01:04:51', 1, '2025-12-19 01:06:23', 0, NULL, 0),
(35792, 27813, '1', 'Board', '', '', '2019', 81.00, '', 1, '2025-12-19 01:06:38', 0, NULL, 0, NULL, 1),
(35793, 27813, '2', 'Board', '', '', '2021', 86.00, '', 1, '2025-12-19 01:07:20', 0, NULL, 0, NULL, 1),
(35794, 27814, '3', 'saveetha university', '', 'btech it', '2022', 7.60, '', 1, '2025-12-20 04:49:31', 0, NULL, 0, NULL, 1),
(35795, 27816, '3', 'Anna University ', '', 'B.Tech(Information Technology)', '2025', 80.00, '', 1, '2025-12-20 05:23:47', 0, NULL, 0, NULL, 1),
(35796, 27816, '1', 'State Board ', '', '', '2018', 75.00, '', 1, '2025-12-20 05:24:44', 0, NULL, 0, NULL, 1),
(35797, 27816, '2', 'State Board ', '', '', '2020', 70.00, '', 1, '2025-12-20 05:25:55', 0, NULL, 0, NULL, 1),
(35798, 27817, '3', 'university of madras', '', 'bsc compu science ', '2023', 88.00, '', 1, '2025-12-20 05:30:47', 0, NULL, 0, NULL, 1),
(35799, 27815, '1', 'State board ', '', '', '2019', 62.00, '', 1, '2025-12-20 05:31:05', 0, NULL, 0, NULL, 1),
(35800, 27815, '2', 'State board ', '', '', '2021', 72.00, '', 1, '2025-12-20 05:31:34', 0, NULL, 0, NULL, 1),
(35801, 27815, '3', 'Madras University ', '', 'Bachelor of business administration ', '2024', 60.00, '', 1, '2025-12-20 05:32:43', 0, NULL, 0, NULL, 1),
(35802, 27818, '3', 'Madras university ', '', 'B.sc. physics ', '2023', 77.80, '', 1, '2025-12-20 05:37:46', 0, NULL, 0, NULL, 1),
(35803, 27819, '3', 'SRM university ', '', 'Bsc computer science ', '2025', 6.80, '', 1, '2025-12-20 06:36:44', 0, NULL, 0, NULL, 1),
(35804, 27820, '3', 'Thiruvalluvar university', '', 'B.sc physics', '2023', 80.00, '', 1, '2025-12-20 06:46:51', 0, NULL, 0, NULL, 1),
(35805, 27820, '4', 'Thiruvalluvar ', '', 'BSC', '2023', 80.00, '', 1, '2025-12-20 06:53:50', 1, '2025-12-20 06:54:01', 0, NULL, 0),
(35806, 27807, '3', 'Madras university ', '', 'BCA', '2025', 75.00, '', 1, '2025-12-20 08:48:15', 0, NULL, 0, NULL, 1),
(35807, 27823, '3', 'Madras University ', '', 'Bcom', '2022', 75.00, '', 1, '2025-12-20 10:09:10', 0, NULL, 0, NULL, 1),
(35808, 27824, '3', 'University of madras ', '', 'b.com', '2022', 6.80, '', 1, '2025-12-20 02:10:37', 1, '2025-12-20 02:10:59', 0, NULL, 1),
(35809, 27825, '4', 'Anna university ', '', 'MBA', '2024', 8.60, '', 1, '2025-12-20 02:33:04', 0, NULL, 0, NULL, 1),
(35810, 27828, '3', 'Thiruvallur ', '', 'B.com', '2025', 70.00, '', 1, '2025-12-22 06:02:03', 0, NULL, 0, NULL, 1),
(35811, 27830, '3', 'Dr Mgr university ', '', 'Bca', '2023', 70.00, '', 1, '2025-12-22 06:06:05', 0, NULL, 0, NULL, 1),
(35812, 27831, '3', 'University of Madras ', '', 'B com general ', '2024', 72.00, '', 1, '2025-12-22 06:16:12', 0, NULL, 0, NULL, 1),
(35813, 27832, '3', 'Gulbarga University ', '', 'Bsc Computer science ', '2023', 8.80, '', 1, '2025-12-22 06:31:34', 0, NULL, 0, NULL, 1),
(35814, 27833, '3', 'Madras University ', '', 'B com ', '2025', 65.00, '', 1, '2025-12-22 06:33:46', 0, NULL, 0, NULL, 1),
(35815, 27834, '3', 'university', '', 'bsc biochemistry', '2023', 75.00, '', 1, '2025-12-22 06:37:53', 0, NULL, 0, NULL, 1),
(35816, 27839, '3', 'srm ramapuram', '', 'b.com ism', '2022', 80.00, '', 1, '2025-12-22 07:30:35', 0, NULL, 0, NULL, 1),
(35817, 27822, '3', 'Madras University ', '', 'Bcom cs', '2017', 50.00, '', 1, '2025-12-22 07:38:38', 0, NULL, 0, NULL, 1),
(35818, 27827, '3', 'vels unive ', '', 'bca mca', '2025', 70.00, '', 1, '2025-12-22 08:31:08', 0, NULL, 0, NULL, 1),
(35819, 27838, '2', 'Saviour Jesus Matriculation School Cuddalore', '', '', '2018', 53.00, '', 1, '2025-12-22 10:25:43', 0, NULL, 0, NULL, 1),
(35820, 27842, '3', 'Sri Sai Ram institute of technology ', '', 'B.E', '2018', 69.00, '', 1, '2025-12-22 11:42:29', 0, NULL, 0, NULL, 1),
(35821, 27841, '4', 'Bharathidasan University', '', 'MBA', '2024', 80.00, '', 1, '2025-12-22 11:57:22', 0, NULL, 0, NULL, 1),
(35822, 27844, '3', 'University of Madras ', '', 'Bsc computer science with data science ', '2025', 76.00, '', 1, '2025-12-22 12:39:05', 0, NULL, 0, NULL, 1),
(35823, 21729, '3', 'Madras University ', '', 'Bba', '2023', 79.00, '', 1, '2025-12-23 04:56:27', 0, NULL, 0, NULL, 1),
(35824, 27848, '3', 'Kamaraj university ', '', 'B.com', '2024', 63.00, '', 1, '2025-12-23 05:54:07', 0, NULL, 0, NULL, 1),
(35825, 27847, '3', 'madras university', '', 'b.a  english literature', '2025', 75.00, '', 1, '2025-12-23 06:04:18', 0, NULL, 0, NULL, 1),
(35826, 27849, '4', 'University of Madras', '', 'MSc. Mathematics', '2019', 57.36, '', 1, '2025-12-23 06:50:45', 0, NULL, 0, NULL, 1),
(35827, 27850, '3', 'Anna University Chennai ', '', 'B tech It ', '2025', 7.82, '', 1, '2025-12-23 07:00:14', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(35828, 27851, '3', 'Anna University ', '', 'B.tech It ', '2025', 7.60, '', 1, '2025-12-23 07:00:46', 0, NULL, 0, NULL, 1),
(35829, 27852, '3', 'Mgr university ', '', 'BBA', '2020', 6.80, '', 1, '2025-12-23 07:40:09', 0, NULL, 0, NULL, 1),
(35830, 27853, '3', 'Anna University ', '', 'BTech Information Technology ', '2024', 79.00, '', 1, '2025-12-23 08:25:54', 0, NULL, 0, NULL, 1),
(35831, 27854, '3', 'Bharathi Dhasan  University', '', 'B. A english', '2016', 58.00, '', 1, '2025-12-23 09:14:05', 0, NULL, 0, NULL, 1),
(35832, 27855, '4', 'Anna University ', '', 'MCA', '2025', 88.00, '', 1, '2025-12-23 10:02:49', 0, NULL, 0, NULL, 1),
(35833, 27856, '3', 'manonmaniam sundaranar university', '', '', '2022', 73.00, '', 1, '2025-12-23 10:10:11', 0, NULL, 0, NULL, 1),
(35834, 27857, '3', 'anna university', '', 'b. tech', '2025', 75.00, '', 1, '2025-12-23 11:32:32', 0, NULL, 0, NULL, 1),
(35835, 27857, '2', 'tamilnadu state board', '', '', '2021', 89.00, '', 1, '2025-12-23 11:32:56', 1, '2025-12-23 11:33:55', 0, NULL, 1),
(35836, 27857, '1', 'tamilnadu state board', '', '', '2019', 87.00, '', 1, '2025-12-23 11:33:17', 0, NULL, 0, NULL, 1),
(35837, 27859, '3', 'University of madras', '', 'B. Com(General)', '2025', 65.00, '', 1, '2025-12-23 12:42:43', 1, '2025-12-23 12:43:04', 0, NULL, 1),
(35838, 27860, '4', 'Anna University ', '', 'MCA ', '2020', 7.88, '', 1, '2025-12-23 01:59:35', 0, NULL, 0, NULL, 1),
(35839, 27845, '3', 'Anna University ', '', 'BE', '2025', 8.90, '', 1, '2025-12-24 05:34:51', 0, NULL, 0, NULL, 1),
(35840, 27861, '2', 'Board', '', '', '2021', 7.00, '', 1, '2025-12-24 05:35:15', 0, NULL, 0, NULL, 1),
(35841, 27862, '4', 'Madras University ', '', 'B com general ', '2022', 72.00, '', 1, '2025-12-24 05:51:39', 0, NULL, 0, NULL, 1),
(35842, 27864, '4', 'MS university ', '', 'M.sc', '2023', 87.00, '', 1, '2025-12-24 12:26:35', 0, NULL, 0, NULL, 1),
(35843, 27865, '4', 'Madras University ', '', 'Msc computer science ', '2018', 75.00, '', 1, '2025-12-25 07:03:28', 0, NULL, 0, NULL, 1),
(35844, 27866, '3', 'University of Madras ', '', 'BSc Computer Science ', '2023', 79.00, '', 1, '2025-12-25 10:37:57', 0, NULL, 0, NULL, 1),
(35845, 27868, '3', 'Thiruvalluvar University Vellore ', '', 'B.Com', '2022', 78.00, '', 1, '2025-12-25 11:51:44', 0, NULL, 0, NULL, 1),
(35846, 27868, '1', 'State Board Of tamil nadu ', '', '', '2017', 70.00, '', 1, '2025-12-25 11:52:25', 0, NULL, 0, NULL, 1),
(35847, 27868, '2', 'State Board Of tamil nadu ', '', '', '2019', 65.00, '', 1, '2025-12-25 11:52:47', 0, NULL, 0, NULL, 1),
(35848, 27870, '1', 'Madras University ', '', '', '2024', 56.07, '', 1, '2025-12-25 01:30:14', 1, '2025-12-25 01:31:05', 0, NULL, 1),
(35849, 27872, '3', 'Sathyabama Institute of Science and Technology ', '', 'B.com in financial Accounting ', '2024', 6.81, '', 1, '2025-12-25 03:17:37', 0, NULL, 0, NULL, 1),
(35850, 27872, '5', 'Loyola Institute of Business Administration ', '', 'Ms in Global Finance ', '2025', 9.00, '', 1, '2025-12-25 03:18:16', 0, NULL, 0, NULL, 1),
(35851, 27873, '3', 'bharathiyar ', '', 'bsc cs', '2003', 86.00, '', 1, '2025-12-26 05:14:38', 0, NULL, 0, NULL, 1),
(35852, 27863, '3', 'sakathullah appa college', '', 'bca', '2025', 78.00, '', 1, '2025-12-26 05:30:56', 0, NULL, 0, NULL, 1),
(35853, 27871, '4', 'Anna University ', '', 'MCA ', '2025', 87.00, '', 1, '2025-12-26 05:34:15', 0, NULL, 0, NULL, 1),
(35854, 27876, '4', 'Anna University ', '', 'MCA', '2025', 83.00, '', 1, '2025-12-26 05:42:15', 0, NULL, 0, NULL, 1),
(35855, 27875, '4', 'Anna University', '', 'Master of computer application ', '2025', 84.00, '', 1, '2025-12-26 05:42:19', 0, NULL, 0, NULL, 1),
(35856, 27878, '3', 'University of Madras ', '', 'Bcom ( general)', '2024', 81.00, '', 1, '2025-12-26 05:49:44', 0, NULL, 0, NULL, 1),
(35857, 27879, '3', 'University of madras ', '', 'B com', '2025', 70.00, '', 1, '2025-12-26 05:53:48', 0, NULL, 0, NULL, 1),
(35858, 27874, '5', 'Bhaktavatsalam Polytechnic College ', '', 'Computer Engineering ', '2019', 65.00, '', 1, '2025-12-26 06:00:51', 0, NULL, 0, NULL, 1),
(35859, 27882, '4', 'Madras University ', '', 'English ', '2024', 68.00, '', 1, '2025-12-26 06:51:44', 0, NULL, 0, NULL, 1),
(35860, 27882, '3', 'JBAS college for women ', '', 'English literature ', '2022', 71.00, '', 1, '2025-12-26 06:52:36', 0, NULL, 0, NULL, 1),
(35861, 27883, '3', 'Anna University ', '', 'B.E Computer Science Engineering ', '2024', 82.10, '', 1, '2025-12-26 07:20:57', 0, NULL, 0, NULL, 1),
(35862, 27884, '3', 'anna university', '', 'be cse', '2025', 60.00, '', 1, '2025-12-26 09:31:35', 1, '2025-12-26 09:32:22', 0, NULL, 0),
(35863, 27884, '3', 'anna university ', '', 'be cse ', '2025', 60.00, '', 1, '2025-12-26 09:32:46', 0, NULL, 0, NULL, 1),
(35864, 27885, '3', 'Anna University ', '', 'BE - Mechanical Engineering ', '2021', 7.80, '', 1, '2025-12-26 10:02:19', 0, NULL, 0, NULL, 1),
(35865, 27886, '3', 'Dhanraj baid jain college', '', 'B.sc computer science', '2023', 80.00, '', 1, '2025-12-26 11:39:45', 0, NULL, 0, NULL, 1),
(35866, 27889, '2', 'Department of pre university education ', '', '', '2015', 52.00, '', 1, '2025-12-26 12:32:19', 0, NULL, 0, NULL, 1),
(35867, 27891, '3', 'university of madras', '', 'b.com banking management', '2024', 70.00, '', 1, '2025-12-26 02:15:21', 0, NULL, 0, NULL, 1),
(35868, 27892, '3', 'Kuvempu university ', '', 'Bcom', '2023', 60.00, '', 1, '2025-12-27 04:21:33', 0, NULL, 0, NULL, 1),
(35869, 27888, '3', 'Dharwad University ', '', 'B.com', '2025', 61.00, '', 1, '2025-12-27 04:22:16', 0, NULL, 0, NULL, 1),
(35870, 27893, '3', 'Alagappa university ', '', 'B.sc chemistry ', '2021', 7.40, '', 1, '2025-12-27 05:37:57', 0, NULL, 0, NULL, 1),
(35871, 27894, '3', 'madras university', '', 'bba', '2023', 70.00, '', 1, '2025-12-27 06:13:55', 0, NULL, 0, NULL, 1),
(35872, 27895, '3', 'Annamalai University ', '', 'BCA', '2024', 67.00, '', 1, '2025-12-27 06:40:55', 0, NULL, 0, NULL, 1),
(35873, 27897, '3', 'Dr.MGR UNIVERSITY ', '', 'B.Sc Animation & Viscom', '2022', 62.00, '', 1, '2025-12-27 06:44:01', 0, NULL, 0, NULL, 1),
(35874, 27896, '3', 'Madras University ', '', 'B.A.Econamics', '2025', 85.00, '', 1, '2025-12-27 06:45:43', 0, NULL, 0, NULL, 1),
(35875, 27898, '3', 'Bengaluru City University ', '', 'B.com', '2025', 8.78, '', 1, '2025-12-27 07:37:05', 0, NULL, 0, NULL, 1),
(35876, 27900, '1', 'Government Higher secondary school ', '', '', '2018', 84.00, '', 1, '2025-12-27 10:03:54', 0, NULL, 0, NULL, 1),
(35877, 27900, '2', 'Government Higher secondary school ', '', '', '2020', 66.00, '', 1, '2025-12-27 10:04:34', 0, NULL, 0, NULL, 1),
(35878, 27900, '3', 'Hindusthan college of engineering and technology,Anna university ', '', 'B.E - ECE', '2024', 80.00, '', 1, '2025-12-27 10:07:19', 0, NULL, 0, NULL, 1),
(35879, 27901, '3', 'Anna university ', '', 'BE computer Science and Engineering ', '2025', 75.00, '', 1, '2025-12-27 11:49:30', 0, NULL, 0, NULL, 1),
(35880, 27903, '1', 'a.g.m higher secondary school', '', '', '2019', 88.60, '', 1, '2025-12-27 12:42:55', 0, NULL, 0, NULL, 1),
(35881, 27903, '2', 'a.g.m higher secondary school	', '', '', '2021', 86.00, '', 1, '2025-12-27 12:43:12', 0, NULL, 0, NULL, 1),
(35882, 27903, '3', 'karpagam college of engineering', '', 'Bachelor of Engineering', '2025', 71.00, '', 1, '2025-12-27 12:44:44', 0, NULL, 0, NULL, 1),
(35883, 27904, '1', 'State Board', '', '', '2019', 90.40, '', 1, '2025-12-27 01:12:17', 0, NULL, 0, NULL, 1),
(35884, 27904, '2', 'State Board', '', '', '2021', 87.00, '', 1, '2025-12-27 01:12:39', 0, NULL, 0, NULL, 1),
(35885, 27904, '3', 'Annamalai University', '', 'BCA', '2025', 76.00, '', 1, '2025-12-27 01:13:03', 0, NULL, 0, NULL, 1),
(35886, 27905, '3', 'university ', '', 'bba ca ', '2025', 70.00, '', 1, '2025-12-27 01:41:03', 0, NULL, 0, NULL, 1),
(35887, 27907, '3', 'Anna University ', '', 'B.E', '2024', 79.60, '', 1, '2025-12-28 03:16:01', 0, NULL, 0, NULL, 1),
(35888, 27908, '1', 'STATE BOARD ', '', '', '2018', 86.60, '', 1, '2025-12-29 02:19:13', 0, NULL, 0, NULL, 1),
(35889, 27908, '2', 'STATE BOARD ', '', '', '2020', 67.33, '', 1, '2025-12-29 02:19:45', 0, NULL, 0, NULL, 1),
(35890, 27907, '2', 'State Board ', '', '', '2020', 55.00, '', 1, '2025-12-29 02:20:03', 0, NULL, 0, NULL, 1),
(35891, 27908, '3', 'ANNA UNIVERSITY ', '', 'B.E', '2024', 83.40, '', 1, '2025-12-29 02:20:22', 0, NULL, 0, NULL, 1),
(35892, 27907, '1', 'State Board ', '', '', '2018', 73.00, '', 1, '2025-12-29 02:20:34', 0, NULL, 0, NULL, 1),
(35893, 27909, '3', 'Anna university ', '', 'BE CSE', '2024', 78.00, '', 1, '2025-12-29 04:37:50', 0, NULL, 0, NULL, 1),
(35894, 27910, '3', 'Madras University ', '', 'B.com (cs)', '2024', 50.00, '', 1, '2025-12-29 04:52:06', 1, '2025-12-29 04:55:02', 0, NULL, 0),
(35895, 27911, '3', 'Periyar University ', '', 'Bsc ', '2014', 76.50, '', 1, '2025-12-29 05:29:31', 0, NULL, 0, NULL, 1),
(35896, 27910, '3', 'Madras University ', '', 'B.com(cs)', '2024', 50.00, '', 1, '2025-12-29 05:44:11', 0, NULL, 0, NULL, 1),
(35897, 27913, '1', 'High School ', '', '', '2027', 63.00, '', 1, '2025-12-29 05:44:47', 0, NULL, 0, NULL, 1),
(35898, 27913, '2', 'High score ', '', '', '2019', 68.00, '', 1, '2025-12-29 05:45:22', 0, NULL, 0, NULL, 1),
(35899, 27913, '3', 'Madras University ', '', 'B sc cs ', '2022', 65.00, '', 1, '2025-12-29 05:46:13', 0, NULL, 0, NULL, 1),
(35900, 27914, '3', 'University of Madras ', '', 'Bba', '2023', 72.00, '', 1, '2025-12-29 06:04:47', 0, NULL, 0, NULL, 1),
(35901, 27906, '3', 'univer ', '', 'bba ca', '2025', 70.00, '', 1, '2025-12-29 06:14:05', 0, NULL, 0, NULL, 1),
(35902, 27915, '3', 'university of madras', '', 'b.com', '2025', 69.00, '', 1, '2025-12-29 07:51:50', 0, NULL, 0, NULL, 1),
(35903, 27917, '3', 'Madras University ', '', 'Bsc computer science ', '2024', 65.00, '', 1, '2025-12-29 08:38:58', 0, NULL, 0, NULL, 1),
(35904, 27918, '3', 'Thiruvallur university ', '', 'B.com', '2023', 70.00, '', 1, '2025-12-29 09:08:00', 0, NULL, 0, NULL, 1),
(35905, 27920, '3', 'The new college ', '', 'B com ', '2025', 67.00, '', 1, '2025-12-29 12:35:08', 0, NULL, 0, NULL, 1),
(35906, 27923, '3', 'University college of engineering villupuram ', '', 'Bachelor of Engineering in Computer science and en', '2023', 7.28, '', 1, '2025-12-29 01:54:19', 0, NULL, 0, NULL, 1),
(35907, 27922, '3', 'Madras University ', '', 'B.com(Accounting and finance)', '2024', 70.00, '', 1, '2025-12-29 02:00:38', 0, NULL, 0, NULL, 1),
(35908, 27924, '2', 'Govt pu college nilekani', '', '', '2023', 62.00, '', 1, '2025-12-30 02:20:00', 0, NULL, 0, NULL, 1),
(35909, 27880, '3', 'Madras university ', '', 'B.Com', '2025', 85.00, '', 1, '2025-12-30 05:44:17', 0, NULL, 0, NULL, 1),
(35910, 27926, '3', 'ann university', '', 'b.e', '2025', 67.00, '', 1, '2025-12-30 06:06:43', 0, NULL, 0, NULL, 1),
(35911, 27927, '3', 'Madras University ', '', 'B.com(General)', '2023', 59.00, '', 1, '2025-12-30 06:09:42', 0, NULL, 0, NULL, 1),
(35912, 27928, '1', 'Krupanidhi ', '', '', '2020', 58.00, '', 1, '2025-12-30 06:21:07', 0, NULL, 0, NULL, 1),
(35913, 27929, '3', 'University of Madras ', '', 'B.com ca (computer application)', '2025', 70.58, '', 1, '2025-12-30 06:27:17', 0, NULL, 0, NULL, 1),
(35914, 27921, '3', 'tiruvalluvar university', '', 'bba', '2020', 62.00, '', 1, '2025-12-30 07:31:16', 0, NULL, 0, NULL, 1),
(35915, 27930, '3', 'university of madras', '', 'b.com', '2025', 67.00, '', 1, '2025-12-30 07:58:19', 0, NULL, 0, NULL, 1),
(35916, 27931, '3', 'Saveetha University ', '', 'B.E', '2025', 8.40, '', 1, '2025-12-30 09:34:38', 0, NULL, 0, NULL, 1),
(35917, 27932, '3', 'S A engineering college ', '', 'B E', '2020', 73.00, '', 1, '2025-12-30 10:04:26', 0, NULL, 0, NULL, 1),
(35918, 27933, '4', 'Madras University ', '', 'M.com', '2023', 70.00, '', 1, '2025-12-30 10:36:41', 0, NULL, 0, NULL, 1),
(35919, 27934, '4', 'Autonomous ', '', 'Msc computer science ', '2025', 73.00, '', 1, '2025-12-30 11:27:59', 0, NULL, 0, NULL, 1),
(35920, 27936, '4', 'Madras', '', 'Msc mathematics ', '2023', 64.00, '', 1, '2025-12-30 02:25:37', 0, NULL, 0, NULL, 1),
(35921, 27937, '3', 'Srm', '', 'B.com', '2022', 80.00, '', 1, '2025-12-30 07:25:25', 0, NULL, 0, NULL, 1),
(35922, 27938, '3', 'Dhanalakshmi srinivasan engineering college ', '', 'B. E', '2025', 7.90, '', 1, '2025-12-31 05:20:06', 0, NULL, 0, NULL, 1),
(35923, 27939, '3', 'Mannar Thirumalai Naicker College ', '', 'Bachelor of Commerce ', '2023', 79.69, '', 1, '2025-12-31 05:39:50', 0, NULL, 0, NULL, 1),
(35924, 27940, '4', 'DR MGR University ', '', '', '2025', 70.00, '', 1, '2025-12-31 06:28:05', 0, NULL, 0, NULL, 1),
(35925, 27943, '4', 'University', '', 'Mcom', '2023', 87.00, '', 1, '2025-12-31 06:55:20', 0, NULL, 0, NULL, 1),
(35926, 27942, '3', 'University ', '', 'B.Com', '2025', 78.00, '', 1, '2025-12-31 06:55:40', 0, NULL, 0, NULL, 1),
(35927, 27945, '3', 'Sastra University ', '', 'B.com ', '2022', 6.20, '', 1, '2025-12-31 07:00:34', 0, NULL, 0, NULL, 1),
(35928, 27941, '1', 'govt high school', '', '', '2011', 49.00, '', 1, '2025-12-31 07:03:35', 0, NULL, 0, NULL, 1),
(35929, 27941, '2', 'govt pu college', '', '', '2014', 50.00, '', 1, '2025-12-31 07:04:08', 0, NULL, 0, NULL, 1),
(35930, 27941, '3', 'govt college', '', 'bcom', '2020', 7.00, '', 1, '2025-12-31 07:04:46', 0, NULL, 0, NULL, 1),
(35931, 27946, '3', 'Madras University ', '', 'Bcom (computer application)', '2022', 68.00, '', 1, '2025-12-31 07:39:09', 0, NULL, 0, NULL, 1),
(35932, 27947, '3', 'Alagappa university ', '', 'B. Sc Mathematics ', '2020', 71.00, '', 1, '2025-12-31 08:58:58', 0, NULL, 0, NULL, 1),
(35933, 27950, '3', 'University of Madras ', '', 'B.sc computer science ', '2025', 73.00, '', 1, '2026-01-01 05:30:56', 0, NULL, 0, NULL, 1),
(35934, 27953, '3', 'JNTUK', '', 'B.Tech', '2026', 7.40, '', 1, '2026-01-02 04:50:18', 0, NULL, 0, NULL, 1),
(35935, 27954, '3', 'JNTUK', '', 'BTech', '2026', 85.00, '', 1, '2026-01-02 04:51:39', 0, NULL, 0, NULL, 1),
(35936, 27957, '1', 'J.Jeya Matriculation higher secondary school ', '', '', '2018', 94.00, '', 1, '2026-01-02 06:26:50', 0, NULL, 0, NULL, 1),
(35937, 27957, '2', 'J.Jeya Matriculation higher secondary school ', '', '', '2020', 77.00, '', 1, '2026-01-02 06:27:07', 0, NULL, 0, NULL, 1),
(35938, 27957, '3', 'A.V.C. College (Autonomous)', '', 'B.Sc.Mathematics', '2023', 94.00, '', 1, '2026-01-02 06:32:47', 0, NULL, 0, NULL, 1),
(35939, 27957, '4', 'University of Madras ', '', 'M.Sc.Statistics', '2025', 84.00, '', 1, '2026-01-02 06:33:05', 0, NULL, 0, NULL, 1),
(35940, 27958, '3', 'K. C. S. Kasi nadar college of arts & science', '', 'B. B. A', '2022', 79.00, '', 1, '2026-01-02 06:42:28', 0, NULL, 0, NULL, 1),
(35941, 27956, '3', 'alagappa University ', '', 'bsc comp science ', '2024', 87.00, '', 1, '2026-01-02 06:45:45', 0, NULL, 0, NULL, 1),
(35942, 27959, '3', 'Madras University ', '', 'B.com information systems management ', '2025', 60.00, '', 1, '2026-01-02 07:32:00', 0, NULL, 0, NULL, 1),
(35943, 27961, '3', 'University of Calicut ', '', 'B com', '2023', 75.00, '', 1, '2026-01-02 08:17:59', 0, NULL, 0, NULL, 1),
(35944, 27960, '3', 'Anna university', '', 'B.E', '2024', 7.68, '', 1, '2026-01-02 09:16:42', 0, NULL, 0, NULL, 1),
(35945, 27963, '3', 'Madras university', '', 'BBA (business Administration)', '2025', 72.00, '', 1, '2026-01-02 11:14:13', 0, NULL, 0, NULL, 1),
(35946, 27964, '3', 'Madras University ', '', 'B.com - General ', '2024', 73.00, '', 1, '2026-01-02 12:31:34', 0, NULL, 0, NULL, 1),
(35947, 27969, '3', 'Sourashtra College', '', 'BCA', '2025', 68.00, '', 1, '2026-01-02 04:44:09', 0, NULL, 0, NULL, 1),
(35948, 27970, '4', 'S.A engineering college ', '', 'MBS', '2026', 69.00, '', 1, '2026-01-02 05:29:50', 0, NULL, 0, NULL, 1),
(35949, 27970, '3', 'The New College ', '', 'B.CON', '2024', 6.80, '', 1, '2026-01-02 05:30:21', 0, NULL, 0, NULL, 1),
(35950, 27971, '3', 'madras university', '', 'information system managem ', '2021', 80.00, '', 1, '2026-01-03 12:39:21', 0, NULL, 0, NULL, 1),
(35951, 27973, '4', 'DG vaishnav college ', '', 'Msc computer science ', '2024', 88.00, '', 1, '2026-01-03 03:53:07', 0, NULL, 0, NULL, 1),
(35952, 27972, '4', 'Vel Tech University ', '', 'M.Sc. Data Analytics ', '2024', 7.11, '', 1, '2026-01-03 03:57:24', 0, NULL, 0, NULL, 1),
(35953, 27972, '3', 'manonmaniam sundaranar university ', '', 'B.Sc. Information Technology ', '2022', 8.00, '', 1, '2026-01-03 03:59:02', 0, NULL, 0, NULL, 1),
(35954, 27976, '3', 'Thiruvallur university ', '', 'BCA ', '2024', 75.00, '', 1, '2026-01-03 04:49:37', 0, NULL, 0, NULL, 1),
(35955, 27977, '3', 'Bharathiyar University ', '', 'B.sc.', '2019', 70.00, '', 1, '2026-01-03 05:10:06', 0, NULL, 0, NULL, 1),
(35956, 27978, '4', 'S.A.Engineering College ', '', 'MBA', '2026', 75.00, '', 1, '2026-01-03 05:33:30', 0, NULL, 0, NULL, 1),
(35957, 27978, '3', 'A.m.Jain College ', '', 'Bcom - Corporate Securityship ', '2024', 75.00, '', 1, '2026-01-03 05:35:07', 0, NULL, 0, NULL, 1),
(35958, 27978, '2', 'Sri Sankara vidyalaya mat Hrs school ', '', '', '2021', 66.00, '', 1, '2026-01-03 05:37:49', 0, NULL, 0, NULL, 1),
(35959, 27978, '1', 'Sri Sankara vidyalaya mat Hrs school ', '', '', '2019', 58.00, '', 1, '2026-01-03 05:38:19', 0, NULL, 0, NULL, 1),
(35960, 27944, '3', 'st.peters ', '', 'Bcom', '2025', 75.00, '', 1, '2026-01-03 05:51:39', 0, NULL, 0, NULL, 1),
(35961, 27944, '4', 'Madras University ', '', 'Mba', '2028', 75.00, '', 1, '2026-01-03 05:54:19', 0, NULL, 0, NULL, 1),
(35962, 27979, '5', 'v ramakrishna polytechnic college', '', 'Diploma in csc', '2024', 60.00, '', 1, '2026-01-03 05:55:28', 0, NULL, 0, NULL, 1),
(35963, 27981, '3', 'Anna university ', '', 'BE', '2019', 76.00, '', 1, '2026-01-03 07:34:56', 0, NULL, 0, NULL, 1),
(35964, 27982, '3', 'Madras university', '', 'B. Com accounts', '2025', 68.00, '', 1, '2026-01-03 07:45:13', 0, NULL, 0, NULL, 1),
(35965, 27983, '3', 'anna university', '', 'electronic and commuincation engineering', '2025', 6.97, '', 1, '2026-01-03 08:08:13', 0, NULL, 0, NULL, 1),
(35966, 27984, '3', 'Madurai Kamarajar university ', '', 'BBA', '2022', 80.00, '', 1, '2026-01-03 09:19:01', 0, NULL, 0, NULL, 1),
(35967, 27985, '3', 'Madurai Kamarajar University ', '', 'BSC.Computer Science ', '2025', 85.00, '', 1, '2026-01-03 09:20:52', 0, NULL, 0, NULL, 1),
(35968, 27988, '4', 'Anna university ', '', 'MBA', '2026', 77.00, '', 1, '2026-01-04 05:13:13', 0, NULL, 0, NULL, 1),
(35969, 27988, '3', 'SRM University ', '', 'B.com', '2024', 82.00, '', 1, '2026-01-04 05:13:44', 0, NULL, 0, NULL, 1),
(35970, 27989, '4', 'mop vaishnav college for women ', '', 'mba', '2026', 8.15, '', 1, '2026-01-05 04:49:09', 0, NULL, 0, NULL, 1),
(35971, 27989, '3', 'university of madras', '', 'bcom general', '2023', 76.60, '', 1, '2026-01-05 04:50:14', 0, NULL, 0, NULL, 1),
(35972, 27990, '3', 'Dr.MGR University ', '', 'BSC ', '2023', 61.00, '', 1, '2026-01-05 06:27:10', 0, NULL, 0, NULL, 1),
(35973, 27993, '3', 'mohamedsathak college of arts and science', '', 'bba', '2023', 80.00, '', 1, '2026-01-05 07:17:58', 0, NULL, 0, NULL, 1),
(35974, 27994, '3', 'Madras University ', '', 'B.com (A&F)', '2021', 95.00, '', 1, '2026-01-05 08:52:28', 0, NULL, 0, NULL, 1),
(35975, 27997, '4', 'Bharadhidasan university ', '', 'MBA ', '2022', 82.00, '', 1, '2026-01-05 10:09:35', 0, NULL, 0, NULL, 1),
(35976, 27998, '3', 'Madras', '', 'Bsc', '2021', 72.00, '', 1, '2026-01-05 10:15:59', 0, NULL, 0, NULL, 1),
(35977, 27999, '3', 'manonmaniam sundaranar university', '', 'B.com ', '2022', 73.00, '', 1, '2026-01-05 10:58:28', 0, NULL, 0, NULL, 1),
(35978, 28001, '5', 'Elumalai polytechnic college', '', 'Computer engineering', '2025', 60.00, '', 1, '2026-01-05 11:58:44', 1, '2026-01-05 11:59:20', 0, NULL, 1),
(35979, 28003, '3', 'Government College of Engineering Srirangam ', '', 'Bachelors of Engineering ', '2025', 7.80, '', 1, '2026-01-06 04:18:04', 0, NULL, 0, NULL, 1),
(35980, 28003, '2', 'Government Higher Secondary School Neruppur ', '', '', '2021', 88.00, '', 1, '2026-01-06 04:18:53', 0, NULL, 0, NULL, 1),
(35981, 28003, '1', 'Government Higher Secondary School Neruppur ', '', '', '2019', 89.00, '', 1, '2026-01-06 04:19:11', 0, NULL, 0, NULL, 1),
(35982, 28004, '5', 'anna university', '', 'no', '2020', 72.00, '', 1, '2026-01-06 05:04:40', 0, NULL, 0, NULL, 1),
(35983, 28007, '4', 'Anna University ', '', 'MBA', '2024', 80.00, '', 1, '2026-01-06 05:16:10', 0, NULL, 0, NULL, 1),
(35984, 28007, '3', 'Madras University ', '', 'Bcom (gen)', '2022', 76.00, '', 1, '2026-01-06 05:17:03', 0, NULL, 0, NULL, 1),
(35985, 28005, '1', 'Banglore university ', '', '', '2018', 72.00, '', 1, '2026-01-06 05:19:25', 0, NULL, 0, NULL, 1),
(35986, 28005, '2', 'Banglore university ', '', '', '2020', 50.00, '', 1, '2026-01-06 05:20:52', 0, NULL, 0, NULL, 1),
(35987, 28005, '3', 'Banglore university ', '', 'BA', '2023', 69.00, '', 1, '2026-01-06 05:23:20', 0, NULL, 0, NULL, 1),
(35988, 28006, '3', 'University of Madras ', '', 'B.Com', '2022', 90.00, '', 1, '2026-01-06 05:24:24', 0, NULL, 0, NULL, 1),
(35989, 28006, '4', 'University of Madras ', '', 'MBA', '2025', 87.00, '', 1, '2026-01-06 05:24:55', 0, NULL, 0, NULL, 1),
(35990, 28009, '3', 'University ', '', 'B.E CSE', '2025', 84.60, '', 1, '2026-01-06 05:27:36', 0, NULL, 0, NULL, 1),
(35991, 28002, '3', 'Madurai kamaraj University ', '', 'B.com', '2020', 63.00, '', 1, '2026-01-06 05:29:21', 0, NULL, 0, NULL, 1),
(35992, 28010, '3', 'University College of engineering tindivanam ', '', 'BE-CSE ', '2025', 82.00, '', 1, '2026-01-06 05:43:58', 0, NULL, 0, NULL, 1),
(35993, 28011, '3', 'University of madras', '', 'Bcom Bank Management ', '2025', 78.00, '', 1, '2026-01-06 05:54:07', 0, NULL, 0, NULL, 1),
(35994, 28014, '4', 'bharath university', '', 'msc compu scien ', '2024', 80.00, '', 1, '2026-01-06 05:57:51', 0, NULL, 0, NULL, 1),
(35995, 28015, '3', 'Rajalakshmi institute of technology ', '', 'B.E ECE ', '2025', 7.50, '', 1, '2026-01-06 05:59:34', 0, NULL, 0, NULL, 1),
(35996, 28013, '3', 'University of Madras ', '', 'B.com', '2024', 75.36, '', 1, '2026-01-06 06:00:23', 0, NULL, 0, NULL, 1),
(35997, 28008, '3', 'anna University', '', 'BECSE', '2025', 81.00, '', 154, '2026-01-06 11:45:14', 0, NULL, 0, NULL, 1),
(35998, 28016, '3', 'Annamalai university', '', 'B com', '2019', 52.00, '', 1, '2026-01-06 06:16:31', 0, NULL, 0, NULL, 1),
(35999, 28012, '3', 'Madras ', '', 'B.B.A', '2020', 75.00, '', 1, '2026-01-06 06:17:06', 0, NULL, 0, NULL, 1),
(36000, 28017, '3', 'madras university', '', 'b.com', '2024', 76.00, '', 1, '2026-01-06 06:41:39', 1, '2026-01-06 06:42:44', 0, NULL, 1),
(36001, 28019, '3', 'Thiruvalluvar university ', '', 'BBA', '2021', 75.00, '', 1, '2026-01-06 06:53:39', 0, NULL, 0, NULL, 1),
(36002, 27996, '4', 'Sathyabama University ', '', 'mBA', '2026', 7.30, '', 1, '2026-01-06 06:59:09', 0, NULL, 0, NULL, 1),
(36003, 28020, '3', ' anna university', '', 'bachelor of engineering', '2025', 7.02, '', 1, '2026-01-06 08:04:41', 0, NULL, 0, NULL, 1),
(36004, 28020, '1', 'state board', '', '', '2019', 69.20, '', 1, '2026-01-06 08:08:05', 0, NULL, 0, NULL, 1),
(36005, 28020, '2', 'state board', '', '', '2021', 76.66, '', 1, '2026-01-06 08:09:13', 0, NULL, 0, NULL, 1),
(36006, 28023, '4', 'srm valliammai engineering ', '', 'mba', '2022', 8.10, '', 1, '2026-01-06 09:12:36', 0, NULL, 0, NULL, 1),
(36007, 28024, '3', 'The New college', '', 'Chemistry', '2023', 78.00, '', 1, '2026-01-06 09:25:05', 0, NULL, 0, NULL, 1),
(36008, 28021, '1', 'State board', '', '', '2016', 79.00, '', 1, '2026-01-06 09:55:02', 0, NULL, 0, NULL, 1),
(36009, 28026, '3', 'Anna University ', '', 'BE', '2021', 73.00, '', 1, '2026-01-06 10:40:19', 0, NULL, 0, NULL, 1),
(36010, 28018, '3', 'Autonomous ', '', '', '2024', 7.00, '', 1, '2026-01-06 10:47:57', 0, NULL, 0, NULL, 1),
(36011, 28027, '3', 'Madras University ', '', 'B.com', '2023', 80.00, '', 1, '2026-01-06 11:53:03', 0, NULL, 0, NULL, 1),
(36012, 28028, '4', 'University of Madras ', '', 'MBA', '2024', 54.00, '', 1, '2026-01-06 12:35:43', 0, NULL, 0, NULL, 1),
(36013, 28029, '1', 'CBSE', '', '', '2015', 91.00, '', 1, '2026-01-06 12:51:25', 1, '2026-01-06 12:52:19', 0, NULL, 1),
(36014, 28029, '2', 'NIOS', '', '', '2019', 60.00, '', 1, '2026-01-06 12:52:39', 0, NULL, 0, NULL, 1),
(36015, 28029, '3', 'University of Madras ', '', 'Bsc', '2026', 8.00, '', 1, '2026-01-06 12:53:08', 0, NULL, 0, NULL, 1),
(36016, 28030, '3', 'Madras University ', '', 'Bsc computer science ', '2023', 83.00, '', 1, '2026-01-06 02:03:04', 0, NULL, 0, NULL, 1),
(36017, 28031, '5', 'E.G.S PILLAY COLLEGE ', '', 'DIPLOMA IN MECHANICAL ', '2019', 78.00, '', 1, '2026-01-06 02:09:16', 0, NULL, 0, NULL, 1),
(36018, 27986, '4', 'Manonmaniam sundaranar University Tirunelveli ', '', 'MCA', '2024', 75.00, '', 1, '2026-01-06 03:55:13', 0, NULL, 0, NULL, 1),
(36019, 27986, '3', 'Sadakathulla appa college Tirunelveli ', '', 'Bsc cs', '2022', 81.00, '', 1, '2026-01-06 03:55:45', 0, NULL, 0, NULL, 1),
(36020, 28033, '3', 'University of madras', '', 'B. Com (Accounting and Finance) ', '2022', 72.00, '', 1, '2026-01-07 05:09:34', 0, NULL, 0, NULL, 1),
(36021, 28032, '3', 'University of madras', '', 'Biotechnology ', '2025', 80.00, '', 1, '2026-01-07 05:10:23', 0, NULL, 0, NULL, 1),
(36022, 28035, '5', 'rastogi college ', '', 'copa', '2017', 65.00, '', 1, '2026-01-07 05:33:43', 0, NULL, 0, NULL, 1),
(36023, 27995, '3', 'Madras University ', '', 'B.Com Bank Management ', '2025', 72.00, '', 1, '2026-01-07 06:49:20', 0, NULL, 0, NULL, 1),
(36024, 28036, '4', 'madurai kamaraj university', '', 'mca', '2022', 75.00, '', 1, '2026-01-07 07:38:48', 0, NULL, 0, NULL, 1),
(36025, 28039, '3', 'Madras University ', '', 'B.b.a', '2022', 76.00, '', 1, '2026-01-07 07:49:46', 0, NULL, 0, NULL, 1),
(36026, 28042, '3', 'Madurai Kamaraj University ', '', 'B.Sc', '2021', 70.00, '', 1, '2026-01-07 08:13:10', 0, NULL, 0, NULL, 1),
(36027, 28034, '2', 'Government of tamilnadu', '', '', '2015', 85.00, '', 1, '2026-01-07 08:27:59', 0, NULL, 0, NULL, 1),
(36028, 28043, '4', 'MOP vaishnav college for women', '', 'MBA', '2026', 7.60, '', 1, '2026-01-07 11:02:25', 0, NULL, 0, NULL, 1),
(36029, 28044, '3', 'Bharathiar University Bharathiar University', '', 'B com it', '2024', 76.00, '', 1, '2026-01-07 11:11:58', 0, NULL, 0, NULL, 1),
(36030, 28045, '3', 'Madras University Chennai ', '', 'Bachelor of computer application ', '2026', 7.10, '', 1, '2026-01-07 11:31:54', 0, NULL, 0, NULL, 1),
(36031, 28047, '3', 'University ', '', 'Bsc mathematics ', '2025', 70.40, '', 1, '2026-01-07 12:53:13', 0, NULL, 0, NULL, 1),
(36032, 28048, '1', 'State Board ', '', '', '2016', 82.00, '', 1, '2026-01-08 02:41:12', 0, NULL, 0, NULL, 1),
(36033, 28048, '2', 'State Board ', '', '', '2018', 70.00, '', 1, '2026-01-08 02:41:51', 0, NULL, 0, NULL, 1),
(36034, 28048, '3', 'University of Madras', '', 'B.voc Food Processing & Quality Control ', '2021', 75.00, '', 1, '2026-01-08 02:42:46', 0, NULL, 0, NULL, 1),
(36035, 28048, '4', 'Anna University ', '', 'MBA (Human Resources Management)', '2024', 65.00, '', 1, '2026-01-08 02:43:28', 0, NULL, 0, NULL, 1),
(36036, 28050, '3', 'Bharathidasan ', '', 'BBA ', '2024', 75.00, '', 1, '2026-01-08 04:32:49', 0, NULL, 0, NULL, 1),
(36037, 28050, '1', 'Rc fathima matric higher wchool', '', '', '2020', 68.00, '', 1, '2026-01-08 04:33:46', 0, NULL, 0, NULL, 1),
(36038, 28050, '2', 'Kendriya vidyalaya ', '', '', '2018', 49.00, '', 1, '2026-01-08 04:34:13', 0, NULL, 0, NULL, 1),
(36039, 28051, '3', 'University of Madras ', '', 'B.com (corporate secretaryships)', '2024', 70.00, '', 1, '2026-01-08 04:52:20', 0, NULL, 0, NULL, 1),
(36040, 28040, '3', 'Autonomous ', '', 'B.A corporate economics ', '2025', 58.00, '', 1, '2026-01-08 05:08:19', 0, NULL, 0, NULL, 1),
(36041, 28041, '3', 'Autonomous ', '', 'BCA ', '2025', 60.00, '', 1, '2026-01-08 05:15:06', 0, NULL, 0, NULL, 1),
(36042, 28052, '3', 'St. Joseph college of engineering ', '', 'B.E', '2021', 7.32, '', 1, '2026-01-08 05:45:16', 0, NULL, 0, NULL, 1),
(36043, 28046, '3', 'S V University ', '', 'Bsc bcca', '2022', 87.00, '', 1, '2026-01-08 06:02:30', 0, NULL, 0, NULL, 1),
(36044, 28053, '4', 'madras University ', '', 'mba', '2026', 70.00, '', 1, '2026-01-08 06:06:15', 0, NULL, 0, NULL, 1),
(36045, 28054, '1', 'Bangalore University ', '', '', '2012', 45.00, '', 1, '2026-01-08 06:31:24', 0, NULL, 0, NULL, 1),
(36046, 28054, '2', 'Bangalore ', '', '', '2014', 48.00, '', 1, '2026-01-08 06:31:41', 0, NULL, 0, NULL, 1),
(36047, 28055, '1', 'Banglore university ', '', '', '2017', 54.00, '', 1, '2026-01-08 06:32:28', 0, NULL, 0, NULL, 1),
(36048, 28055, '2', 'Banglore university ', '', '', '2020', 65.00, '', 1, '2026-01-08 06:38:03', 0, NULL, 0, NULL, 1),
(36049, 28056, '3', 'Ballary university ', '', 'B A', '2024', 69.00, '', 1, '2026-01-08 08:07:24', 0, NULL, 0, NULL, 1),
(36050, 28056, '1', 'Karnatka ', '', '', '2026', 46.47, '', 1, '2026-01-08 08:07:57', 0, NULL, 0, NULL, 1),
(36051, 28056, '2', 'Bijapur university ', '', '', '2009', 53.00, '', 1, '2026-01-08 08:09:00', 0, NULL, 0, NULL, 1),
(36052, 28057, '4', 'hindustan Institution  of tectechnology and science', '', 'mba', '2024', 8.00, '', 1, '2026-01-08 08:37:54', 0, NULL, 0, NULL, 1),
(36053, 28057, '3', 'vels University', '', 'bsc', '2022', 7.50, '', 1, '2026-01-08 08:38:38', 0, NULL, 0, NULL, 1),
(36054, 28058, '3', 'University ', '', 'Bachelor\'s degree ', '2024', 70.00, '', 1, '2026-01-08 08:43:26', 0, NULL, 0, NULL, 1),
(36055, 28061, '3', 'Periyar University ', '', 'BCA', '2025', 83.00, '', 1, '2026-01-08 09:13:40', 0, NULL, 0, NULL, 1),
(36056, 28060, '3', 'periyar university ', '', 'bsc.cs', '2025', 73.00, '', 1, '2026-01-08 09:13:40', 0, NULL, 0, NULL, 1),
(36057, 28060, '1', 'board ', '', '', '2020', 64.00, '', 1, '2026-01-08 09:16:39', 0, NULL, 0, NULL, 1),
(36058, 28061, '2', 'State Board ', '', 'BCA', '2022', 60.00, '', 1, '2026-01-08 09:16:46', 0, NULL, 0, NULL, 1),
(36059, 28060, '2', 'board', '', '', '2022', 46.00, '', 1, '2026-01-08 09:17:31', 0, NULL, 0, NULL, 1),
(36060, 28062, '1', 'Spmghps', '', '', '2022', 70.00, '', 1, '2026-01-08 12:02:42', 0, NULL, 0, NULL, 1),
(36061, 28072, '4', 'Anna university ', '', 'Mca', '2025', 87.00, '', 1, '2026-01-09 05:25:11', 0, NULL, 0, NULL, 1),
(36062, 28071, '1', 'karnataka board', '', '', '2000', 66.00, '', 1, '2026-01-09 05:27:22', 0, NULL, 0, NULL, 1),
(36063, 28074, '4', 'Thiruvalluvar university ', '', 'Bsc computer science ', '2019', 69.00, '', 1, '2026-01-09 05:38:31', 0, NULL, 0, NULL, 1),
(36064, 28073, '1', 'CBSE', '', '', '2018', 63.00, '', 1, '2026-01-09 05:42:38', 0, NULL, 0, NULL, 1),
(36065, 28073, '2', 'STATE board ', '', '', '2020', 70.60, '', 1, '2026-01-09 05:43:36', 0, NULL, 0, NULL, 1),
(36066, 28073, '3', 'Karpagam college of engineering ', '', 'Bachelor of engineering ', '2024', 85.70, '', 1, '2026-01-09 05:44:25', 0, NULL, 0, NULL, 1),
(36067, 28075, '3', 'Thiruvallur university ', '', 'BCA', '2025', 60.00, '', 1, '2026-01-09 06:05:56', 0, NULL, 0, NULL, 1),
(36068, 28076, '3', 'Madras University ', '', 'BA - economics ', '2023', 60.00, '', 1, '2026-01-09 06:35:16', 0, NULL, 0, NULL, 1),
(36069, 28070, '4', 'Madras University ', '', 'Mba hr pursuing ', '2026', 70.00, '', 1, '2026-01-09 07:02:19', 0, NULL, 0, NULL, 1),
(36070, 28065, '5', 'HCL technologies pvt LTD ', '', 'ITES management ', '2018', 90.00, '', 1, '2026-01-09 08:38:30', 1, '2026-01-09 08:38:50', 0, NULL, 0),
(36071, 28077, '3', 'Madras university ', '', 'B. A English literature ', '2025', 61.00, '', 1, '2026-01-09 11:34:46', 0, NULL, 0, NULL, 1),
(36072, 28078, '4', 'University of Madras ', '', 'M.com accounting and finance ', '2025', 78.00, '', 1, '2026-01-09 11:54:21', 0, NULL, 0, NULL, 1),
(36073, 28079, '3', 'Bharathidasan university ', '', 'BCA ', '2022', 92.00, '', 1, '2026-01-10 04:26:36', 0, NULL, 0, NULL, 1),
(36074, 28066, '4', 'anna university', '', 'mba', '2024', 80.00, '', 1, '2026-01-10 04:28:23', 0, NULL, 0, NULL, 1),
(36075, 28081, '3', 'Madurai Kamaraj University ', '', 'B. Sc Forensic science ', '2024', 79.00, '', 1, '2026-01-10 05:48:09', 0, NULL, 0, NULL, 1),
(36076, 28068, '3', 'Iec university ', '', 'BBA', '2019', 70.00, '', 1, '2026-01-10 06:06:17', 0, NULL, 0, NULL, 1),
(36077, 28082, '4', 'ANNA UNIVERSITY ', '', 'MBA HR AND FINANCE ', '2024', 70.00, '', 1, '2026-01-10 06:15:10', 0, NULL, 0, NULL, 1),
(36078, 28083, '3', 'Thiruvallur university ', '', 'B.com', '2022', 70.00, '', 1, '2026-01-10 06:54:33', 0, NULL, 0, NULL, 1),
(36079, 28084, '3', 'Periyar University ', '', 'BCOM CA ', '2025', 78.40, '', 1, '2026-01-10 07:41:18', 0, NULL, 0, NULL, 1),
(36080, 28084, '2', 'State board ', '', '', '2022', 66.00, '', 1, '2026-01-10 07:42:32', 0, NULL, 0, NULL, 1),
(36081, 28065, '5', 'HCL foundation ', '', '', '2017', 85.00, '', 1, '2026-01-10 09:23:02', 0, NULL, 0, NULL, 1),
(36082, 28065, '2', 'CHSS AYANAVARAM ', '', '', '2017', 70.00, '', 1, '2026-01-10 09:24:26', 0, NULL, 0, NULL, 1),
(36083, 28089, '3', 'Karnataka University Dharwad ', '', 'Bachelor of Commerce', '2023', 61.02, '', 1, '2026-01-12 04:47:33', 0, NULL, 0, NULL, 1),
(36084, 28087, '3', 'Mgr university ', '', 'B.com ', '2022', 85.00, '', 1, '2026-01-12 05:27:00', 0, NULL, 0, NULL, 1),
(36085, 28086, '3', 'university', '', 'b.tech', '2016', 72.00, '', 1, '2026-01-12 05:38:02', 0, NULL, 0, NULL, 1),
(36086, 28064, '3', 'Madras University ', '', 'Bca', '2024', 6.20, '', 1, '2026-01-12 06:35:22', 0, NULL, 0, NULL, 1),
(36087, 28091, '3', 'Madras University ', '', 'B.com', '2023', 70.00, '', 1, '2026-01-12 07:27:32', 0, NULL, 0, NULL, 1),
(36088, 28092, '4', 'Madres university ', '', 'MBA', '2024', 75.00, '', 1, '2026-01-12 07:38:08', 1, '2026-01-12 07:38:57', 0, NULL, 0),
(36089, 28090, '3', 'Anna university', '', 'B.e Computer Science & Engineering', '2025', 6.50, '', 1, '2026-01-12 07:46:45', 0, NULL, 0, NULL, 1),
(36090, 28093, '3', 'Madras', '', 'BA', '2023', 74.00, '', 1, '2026-01-12 07:54:24', 0, NULL, 0, NULL, 1),
(36091, 28094, '2', 'T.B.S.E', '', 'B.P.E.S', '2022', 74.00, '', 1, '2026-01-12 08:33:20', 0, NULL, 0, NULL, 1),
(36092, 28094, '3', 'ICFAI UNIVERSITY TRIPURA', '', 'B.P.E.S', '2025', 60.00, '', 1, '2026-01-12 08:34:26', 0, NULL, 0, NULL, 1),
(36093, 28095, '3', 'Prince shri Venkateshwar arts and science ', '', 'B.com', '2025', 78.00, '', 1, '2026-01-12 08:35:07', 0, NULL, 0, NULL, 1),
(36094, 28098, '3', 'Anna University ', '', 'BE biomedical engineering ', '2024', 7.30, '', 1, '2026-01-12 10:25:46', 0, NULL, 0, NULL, 1),
(36095, 28099, '4', 'Anna University ', '', 'MBA HR and Marketing ', '2025', 8.40, '', 1, '2026-01-12 12:45:05', 0, NULL, 0, NULL, 1),
(36096, 28100, '4', 'Pondicherry University ', '', 'MBA', '2025', 9.00, '', 1, '2026-01-12 12:56:41', 0, NULL, 0, NULL, 1),
(36097, 28101, '3', 'Madras University ', '', 'B.com', '2023', 75.00, '', 1, '2026-01-12 01:37:55', 0, NULL, 0, NULL, 1),
(36098, 28102, '3', 'vtu', '', 'be', '2025', 7.34, '', 1, '2026-01-12 01:46:32', 0, NULL, 0, NULL, 1),
(36099, 28103, '1', 'State Board', '', 'Bsc', '2018', 50.00, '', 1, '2026-01-12 01:56:04', 0, NULL, 0, NULL, 1),
(36100, 28103, '2', 'State Board', '', '', '2022', 55.00, '', 1, '2026-01-12 01:56:30', 0, NULL, 0, NULL, 1),
(36101, 28103, '3', 'Madras University', '', 'Bsc', '2025', 65.00, '', 1, '2026-01-12 01:56:53', 0, NULL, 0, NULL, 1),
(36102, 28097, '3', 'Saveetha institute of technical and medical science ', '', 'BE', '2025', 7.50, '', 1, '2026-01-12 04:21:27', 0, NULL, 0, NULL, 1),
(36103, 28104, '3', 'Dr Ambedkar Art and Science College ', '', 'BSC Computer Science ', '2019', 71.00, '', 1, '2026-01-13 04:50:39', 0, NULL, 0, NULL, 1),
(36104, 28106, '3', 'andra university ', '', 'bsc.computer science ', '2023', 75.00, '', 1, '2026-01-13 05:12:14', 0, NULL, 0, NULL, 1),
(36105, 28105, '5', 'Appollo polytechnic college ', '', 'Cse', '2024', 60.00, '', 1, '2026-01-13 05:13:07', 0, NULL, 0, NULL, 1),
(36106, 28107, '3', 'Medras ', '', 'B.com', '2021', 85.00, '', 1, '2026-01-13 05:31:04', 0, NULL, 0, NULL, 1),
(36107, 28108, '5', 'Board', '', 'Diploma in dted', '2021', 77.00, '', 1, '2026-01-13 06:00:37', 0, NULL, 0, NULL, 1),
(36108, 28109, '4', 'madras un ', '', 'mba', '2023', 83.00, '', 1, '2026-01-13 06:18:54', 0, NULL, 0, NULL, 1),
(36109, 28111, '3', 'Dhanalakshmi Srinivasan engineering college ', '', 'BE', '2023', 81.00, '', 1, '2026-01-13 06:29:28', 0, NULL, 0, NULL, 1),
(36110, 28110, '3', 'madras university', '', 'b com', '2024', 65.00, '', 1, '2026-01-13 06:36:39', 0, NULL, 0, NULL, 1),
(36111, 28112, '3', 'St Ann\'s art and science college ', '', 'B.A English ', '2021', 75.00, '', 1, '2026-01-13 07:30:21', 0, NULL, 0, NULL, 1),
(36112, 28113, '3', 'Loyola University ', '', 'BA history ', '2020', 60.00, '', 1, '2026-01-13 08:58:41', 0, NULL, 0, NULL, 1),
(36113, 28085, '4', 'University of madras', '', 'Master of computer application ', '2023', 90.00, '', 1, '2026-01-13 12:36:47', 0, NULL, 0, NULL, 1),
(36114, 28116, '3', 'Madras university ', '', 'B.Com', '2022', 80.24, '', 1, '2026-01-14 04:42:16', 0, NULL, 0, NULL, 1),
(36115, 28117, '4', 'St. Peter\'s Institute of Higher Education and Technology ', '', 'MBA', '2022', 89.00, '', 1, '2026-01-14 05:13:07', 0, NULL, 0, NULL, 1),
(36116, 28117, '3', 'Mar Gregorios College of Arts and Science ', '', 'BCom', '2020', 78.00, '', 1, '2026-01-14 05:13:30', 0, NULL, 0, NULL, 1),
(36117, 28118, '3', 'Madras University ', '', 'B.com', '2020', 58.00, '', 1, '2026-01-14 06:46:44', 0, NULL, 0, NULL, 1),
(36118, 28118, '2', 'Aem high school', '', '', '2012', 77.00, '', 1, '2026-01-14 06:47:45', 0, NULL, 0, NULL, 1),
(36119, 28119, '2', 'Govt Pre university ', '', '', '2000', 50.00, '', 1, '2026-01-14 07:17:29', 0, NULL, 0, NULL, 1),
(36120, 28120, '3', 'anna university', '', 'be', '2023', 82.00, '', 1, '2026-01-14 07:24:33', 1, '2026-01-14 07:24:53', 0, NULL, 1),
(36121, 28121, '3', 'hindustan Institute of s and technology ', '', 'b.com ge ', '2024', 75.00, '', 1, '2026-01-14 07:47:37', 0, NULL, 0, NULL, 1),
(36122, 28123, '3', 'Vel Tech Ranga Sanku Arts College ', '', 'B.Com', '2021', 66.67, '', 1, '2026-01-14 11:27:13', 0, NULL, 0, NULL, 1),
(36123, 28124, '3', 'Madras university', '', 'B.com (bank management)', '2024', 68.00, '', 1, '2026-01-16 07:09:36', 0, NULL, 0, NULL, 1),
(36124, 28125, '3', 'Anna University ', '', 'BE/EEE', '2024', 70.00, '', 1, '2026-01-16 12:25:13', 0, NULL, 0, NULL, 1),
(36125, 28126, '4', 'sathyabama university', '', 'mba hr and finance', '2026', 71.00, '', 1, '2026-01-17 09:32:20', 0, NULL, 0, NULL, 1),
(36126, 28127, '4', 'a.v.v.m sri pushpam college ', '', 'MBA', '2023', 84.00, '', 1, '2026-01-17 09:57:37', 0, NULL, 0, NULL, 1),
(36127, 28127, '3', 'Anna university ', '', 'BE', '2021', 79.00, '', 1, '2026-01-17 09:57:55', 0, NULL, 0, NULL, 1),
(36128, 28128, '3', 'women\'s christian college', '', 'BA History', '2021', 62.00, '', 1, '2026-01-17 11:11:40', 0, NULL, 0, NULL, 1),
(36129, 28128, '1', 'daniel metriculation hr sec school ', '', '', '2015', 72.00, '', 1, '2026-01-17 11:14:35', 0, NULL, 0, NULL, 1),
(36130, 28129, '1', 'STATE BOARD ', '', 'B.TECH', '2019', 75.80, '', 1, '2026-01-18 05:15:08', 0, NULL, 0, NULL, 1),
(36131, 28129, '2', 'STATE BOARD ', '', '', '2021', 81.50, '', 1, '2026-01-18 05:15:59', 0, NULL, 0, NULL, 1),
(36132, 28129, '3', 'SYED AMMAL ENGINEERING COLLEGE ', '', 'B.TECH (ARTIFICIAL INTELLIGENCE AND DATA SCIENCE)', '2025', 75.50, '', 1, '2026-01-18 05:16:42', 0, NULL, 0, NULL, 1),
(36133, 28130, '4', 'University Of Madras ', '', 'MCA', '2020', 78.00, '', 1, '2026-01-19 04:35:33', 0, NULL, 0, NULL, 1),
(36134, 28136, '3', 'Madras University ', '', 'BBA', '2019', 58.00, '', 1, '2026-01-19 04:57:40', 0, NULL, 0, NULL, 1),
(36135, 28132, '3', 'Madras University ', '', 'B sc advanced zoology and biotechnology ', '2025', 65.20, '', 1, '2026-01-19 04:59:21', 0, NULL, 0, NULL, 1),
(36136, 28137, '3', 'Madras University ', '', 'BBA', '2020', 65.00, '', 1, '2026-01-19 05:09:04', 0, NULL, 0, NULL, 1),
(36137, 28134, '3', 'University of Madras', '', 'B.com', '2016', 68.00, '', 1, '2026-01-19 05:28:06', 0, NULL, 0, NULL, 1),
(36138, 28140, '3', 'University ', '', 'B.Tech', '2024', 7.10, '', 1, '2026-01-19 06:10:45', 0, NULL, 0, NULL, 1),
(36139, 28141, '4', 'Board', '', 'Ba economics ', '2019', 72.00, '', 1, '2026-01-19 06:30:54', 0, NULL, 0, NULL, 1),
(36140, 28142, '2', 'Board', '', '', '2022', 50.00, '', 1, '2026-01-19 07:21:02', 0, NULL, 0, NULL, 1),
(36141, 28144, '3', 'anna university', '', 'be ', '2025', 75.00, '', 1, '2026-01-19 07:43:07', 0, NULL, 0, NULL, 1),
(36142, 28143, '2', 'Board', '', '', '2024', 67.00, '', 1, '2026-01-19 07:49:24', 0, NULL, 0, NULL, 1),
(36143, 28133, '3', 'Manonmaniam', '', '', '2024', 73.00, '', 1, '2026-01-19 07:53:58', 0, NULL, 0, NULL, 1),
(36144, 28145, '3', 'srm university ', '', 'bsc computer science ', '2024', 6.75, '', 1, '2026-01-19 08:57:53', 0, NULL, 0, NULL, 1),
(36145, 28149, '3', 'Periyar University ', '', 'Bsc Microbiology ', '2023', 70.00, '', 1, '2026-01-19 12:30:49', 0, NULL, 0, NULL, 1),
(36146, 28150, '3', 'SRM UNIVERSITY ', '', 'B.sc cs', '2018', 60.00, '', 1, '2026-01-19 12:43:20', 0, NULL, 0, NULL, 1),
(36147, 28150, '1', 'Vidyodaya Girls higher secondary school ', '', '', '2013', 81.00, '', 1, '2026-01-19 12:44:52', 1, '2026-01-19 12:45:22', 0, NULL, 1),
(36148, 28150, '2', 'Venkata subha rao mat hr sec school', '', '', '2015', 53.00, '', 1, '2026-01-19 12:46:11', 0, NULL, 0, NULL, 1),
(36149, 28153, '3', 'Kerala University ', '', 'BA', '2021', 62.00, '', 1, '2026-01-20 04:51:22', 0, NULL, 0, NULL, 1),
(36150, 28153, '2', 'Kerala State board ', '', 'BA', '2018', 48.00, '', 1, '2026-01-20 04:53:11', 0, NULL, 0, NULL, 1),
(36151, 28153, '1', 'Kerala State board ', '', '', '2015', 58.00, '', 1, '2026-01-20 04:53:42', 0, NULL, 0, NULL, 1),
(36152, 28147, '3', 'Anna university ', '', 'BA', '2022', 70.00, '', 1, '2026-01-20 05:06:27', 0, NULL, 0, NULL, 1),
(36153, 28148, '3', 'Bharathidasan university ', '', 'BCA', '2025', 80.00, '', 1, '2026-01-20 05:08:05', 0, NULL, 0, NULL, 1),
(36154, 28154, '3', 'Madras University ', '', 'B.com (Accounting and Finance)', '2025', 85.00, '', 1, '2026-01-20 05:24:08', 0, NULL, 0, NULL, 1),
(36155, 28155, '3', 'King\'s College of engineering ', '', 'BE', '2023', 8.60, '', 1, '2026-01-20 05:58:11', 0, NULL, 0, NULL, 1),
(36156, 28157, '3', 'Madras University ', '', 'B.com', '2021', 65.00, '', 1, '2026-01-20 07:24:34', 0, NULL, 0, NULL, 1),
(36157, 28159, '3', 'Sathyabama University ', '', 'BE', '2016', 66.00, '', 1, '2026-01-20 09:14:29', 0, NULL, 0, NULL, 1),
(36158, 28160, '3', 'university of madras', '', 'bca', '2020', 72.00, '', 1, '2026-01-20 09:42:25', 0, NULL, 0, NULL, 1),
(36159, 28162, '3', 'Dg vaishnava college ', '', 'B.com general', '2014', 6.80, '', 1, '2026-01-20 10:02:43', 0, NULL, 0, NULL, 1),
(36160, 28162, '1', 'Metric', '', '', '2009', 6.60, '', 1, '2026-01-20 10:04:10', 0, NULL, 0, NULL, 1),
(36161, 28161, '4', 'University ', '', 'M. A', '2026', 80.00, '', 1, '2026-01-20 10:40:47', 0, NULL, 0, NULL, 1),
(36162, 28163, '3', 'Madras University ', '', 'B.voc (BFSI)', '2024', 68.00, '', 1, '2026-01-20 11:10:17', 0, NULL, 0, NULL, 1),
(36163, 28163, '1', 'State', '', '', '2019', 73.00, '', 1, '2026-01-20 11:10:45', 0, NULL, 0, NULL, 1),
(36164, 28163, '2', 'State', '', '', '2021', 83.00, '', 1, '2026-01-20 11:11:05', 0, NULL, 0, NULL, 1),
(36165, 28164, '3', 'DG vaishnav college ', '', 'B.com', '2025', 45.00, '', 1, '2026-01-20 11:34:50', 0, NULL, 0, NULL, 1),
(36166, 28165, '3', 'Thiruvalluvar University -Theivanai Ammal college for women', '', 'B. Com ( general) ', '2022', 80.00, '', 1, '2026-01-20 01:39:52', 1, '2026-01-20 01:47:10', 0, NULL, 1),
(36167, 28165, '2', 'Sri. P. Muthaiyar Higher secondary school, Panruti', '', '', '2019', 85.00, '', 1, '2026-01-20 01:42:11', 1, '2026-01-20 01:44:57', 0, NULL, 1),
(36168, 28165, '1', 'Government girls high school, Siruvanthadu', '', '', '2017', 95.00, '', 1, '2026-01-20 01:43:59', 0, NULL, 0, NULL, 1),
(36169, 28168, '3', 'Manonmaniam Sundaranar university ', '', 'B.Sc Mathematics ', '2025', 7.96, '', 1, '2026-01-21 05:14:24', 0, NULL, 0, NULL, 1),
(36170, 28167, '3', 'Stella Maris College (Autonomous)', '', 'Batchelor Of Social Work ', '2023', 50.00, '', 1, '2026-01-21 05:37:46', 0, NULL, 0, NULL, 1),
(36171, 28170, '3', 'Anna university ', '', 'B.E(CSE)', '2026', 86.00, '', 1, '2026-01-21 05:39:31', 0, NULL, 0, NULL, 1),
(36172, 28169, '3', 'Anna University ', '', 'B.E', '2026', 86.00, '', 1, '2026-01-21 05:39:38', 0, NULL, 0, NULL, 1),
(36173, 28169, '2', 'Tamil Nadu Board', '', '', '2022', 80.00, '', 1, '2026-01-21 05:41:11', 0, NULL, 0, NULL, 1),
(36174, 28170, '2', 'Tamil Nadu ', '', '', '2022', 73.00, '', 1, '2026-01-21 05:41:30', 0, NULL, 0, NULL, 1),
(36175, 28169, '1', 'CBSE', '', '', '2020', 81.00, '', 1, '2026-01-21 05:41:54', 0, NULL, 0, NULL, 1),
(36176, 28170, '1', 'Tamil Nadu ', '', '', '2020', 63.00, '', 1, '2026-01-21 05:42:04', 0, NULL, 0, NULL, 1),
(36177, 28171, '3', 'Anna University', '', 'B. E', '2026', 7.90, '', 1, '2026-01-21 05:42:56', 0, NULL, 0, NULL, 1),
(36178, 28172, '3', 'Anna University ', '', 'BE. CSE', '2026', 82.00, '', 1, '2026-01-21 05:43:08', 0, NULL, 0, NULL, 1),
(36179, 28172, '1', 'Tamilnadu State board', '', '', '2020', 63.00, '', 1, '2026-01-21 05:45:05', 0, NULL, 0, NULL, 1),
(36180, 28172, '2', 'Tamilnadu State board ', '', '', '2022', 61.00, '', 1, '2026-01-21 05:45:56', 0, NULL, 0, NULL, 1),
(36181, 28171, '1', 'State Board', '', '', '2021', 66.20, '', 1, '2026-01-21 05:46:01', 0, NULL, 0, NULL, 1),
(36182, 28158, '4', 'Bharathidasan University ', '', 'MCA', '2025', 80.00, '', 1, '2026-01-21 05:46:24', 0, NULL, 0, NULL, 1),
(36183, 28171, '2', 'State Board', '', '', '2022', 75.16, '', 1, '2026-01-21 05:48:18', 0, NULL, 0, NULL, 1),
(36184, 27578, '3', 'Madras University ', '', 'B.com', '2025', 75.00, '', 1, '2026-01-21 05:52:13', 0, NULL, 0, NULL, 1),
(36185, 28175, '3', 'University ', '', 'Bcom', '2018', 64.00, '', 1, '2026-01-21 05:55:06', 0, NULL, 0, NULL, 1),
(36186, 28173, '3', 'Anna University ', '', 'Be. CSE', '2026', 80.00, '', 1, '2026-01-21 06:06:23', 0, NULL, 0, NULL, 1),
(36187, 28173, '2', 'Tamilnadu State board ', '', '', '2022', 64.00, '', 1, '2026-01-21 06:06:51', 0, NULL, 0, NULL, 1),
(36188, 28173, '1', 'Tamilnadu State board ', '', '', '2020', 58.00, '', 1, '2026-01-21 06:07:18', 0, NULL, 0, NULL, 1),
(36189, 28174, '3', 'Anna university ', '', 'B.E(CSE)', '2026', 76.00, '', 1, '2026-01-21 06:19:14', 0, NULL, 0, NULL, 1),
(36190, 28174, '2', 'Tamil Nadu ', '', '', '2022', 69.00, '', 1, '2026-01-21 06:19:41', 0, NULL, 0, NULL, 1),
(36191, 28174, '1', 'Tamilnadu ', '', '', '2020', 66.00, '', 1, '2026-01-21 06:20:04', 0, NULL, 0, NULL, 1),
(36192, 28176, '3', 'Anna University Chennai ', '', 'B Tech information technology ', '2025', 7.50, '', 1, '2026-01-21 06:38:24', 0, NULL, 0, NULL, 1),
(36193, 28166, '3', 'Justice basheer ahmed Sayeed college ', '', 'Bcom(ism)', '2022', 67.00, '', 1, '2026-01-21 06:46:42', 0, NULL, 0, NULL, 1),
(36194, 28177, '3', 'Shri krishna swamy college for women ', '', 'Bsc.csc ', '2021', 65.00, '', 1, '2026-01-21 06:47:41', 0, NULL, 0, NULL, 1),
(36195, 28178, '3', 'Madras University ', '', 'Bsc microbiology ', '2024', 70.00, '', 1, '2026-01-21 07:36:21', 0, NULL, 0, NULL, 1),
(36196, 28179, '1', 'KARNATAKA BOARD', '', '', '2016', 40.00, '', 162, '2026-01-21 01:16:25', 0, NULL, 0, NULL, 1),
(36197, 28180, '5', 'Murugappa polytechnic', '', 'Robotics engineering ', '2026', 87.00, '', 1, '2026-01-21 08:17:15', 0, NULL, 0, NULL, 1),
(36198, 28151, '3', 'Anna university ', '', 'B. E (Mechanical engineering) ', '2019', 71.00, '', 1, '2026-01-21 10:24:38', 0, NULL, 0, NULL, 1),
(36199, 28181, '3', 'Bharath university ', '', '', '2023', 80.00, '', 1, '2026-01-21 12:41:06', 0, NULL, 0, NULL, 1),
(36200, 28183, '3', 'University of Madras ', '', 'B.com', '2017', 70.00, '', 1, '2026-01-21 01:14:36', 0, NULL, 0, NULL, 1),
(36201, 28185, '3', 'Bharathidasan university ', '', 'BBA', '2021', 81.00, '', 1, '2026-01-22 04:44:34', 0, NULL, 0, NULL, 1),
(36202, 28186, '4', 'Madurai Kamaraj University ', '', 'MCA', '2023', 80.00, '', 1, '2026-01-22 04:49:35', 0, NULL, 0, NULL, 1),
(36203, 28186, '3', 'Madurai Kamaraj University ', '', 'BSc Maths', '2021', 80.00, '', 1, '2026-01-22 04:50:23', 0, NULL, 0, NULL, 1),
(36204, 28188, '1', 'CBSE', '', '', '2019', 80.00, '', 1, '2026-01-22 05:25:46', 0, NULL, 0, NULL, 1),
(36205, 28188, '2', 'CBSE', '', '', '2021', 81.00, '', 1, '2026-01-22 05:26:28', 0, NULL, 0, NULL, 1),
(36206, 28188, '3', 'Vel Tech High Tech Engineering College ', '', 'B.Tech Artificial Intelligence and Data science ', '2025', 73.00, '', 1, '2026-01-22 05:27:14', 0, NULL, 0, NULL, 1),
(36207, 28190, '3', 'university', '', 'bba ', '2023', 60.00, '', 1, '2026-01-22 06:14:03', 0, NULL, 0, NULL, 1),
(36208, 28191, '4', 'Vels university ', '', 'BCA', '2025', 85.00, '', 1, '2026-01-22 06:16:24', 0, NULL, 0, NULL, 1),
(36209, 28189, '3', 'Madras of university ', '', 'Bcom general ', '2025', 60.00, '', 1, '2026-01-22 06:17:31', 0, NULL, 0, NULL, 1),
(36210, 28194, '4', 'Sathyabama institute of science and technology ', '', 'MCA', '2026', 75.00, '', 1, '2026-01-22 06:19:02', 0, NULL, 0, NULL, 1),
(36211, 28195, '3', 'St.Joseph college of engineering ', '', 'BE.Cse', '2021', 7.39, '', 1, '2026-01-22 06:20:46', 0, NULL, 0, NULL, 1),
(36212, 28193, '3', 'madras university', '', 'b.com computer application', '2025', 73.00, '', 1, '2026-01-22 06:21:21', 0, NULL, 0, NULL, 1),
(36213, 28184, '4', 'madras university', '', 'mba', '2026', 75.00, '', 1, '2026-01-22 06:41:15', 0, NULL, 0, NULL, 1),
(36214, 28197, '3', 'the new college', '', 'bachelor of computer applications', '2022', 72.00, '', 1, '2026-01-22 06:44:04', 0, NULL, 0, NULL, 1),
(36215, 28199, '1', 'St, John\'s Higher Secondary School ', '', '', '2018', 80.00, '', 1, '2026-01-22 12:02:11', 0, NULL, 0, NULL, 1),
(36216, 28199, '2', 'Bharathiyar government Higher Secondary School ', '', '', '2020', 72.00, '', 1, '2026-01-22 12:02:58', 0, NULL, 0, NULL, 1),
(36217, 28199, '5', 'Scad Polytechnic College ', '', 'Mechanical engineering ', '2022', 92.00, '', 1, '2026-01-22 12:03:17', 0, NULL, 0, NULL, 1),
(36218, 28200, '3', 'Anna University ', '', 'BE  mechanical', '2022', 70.00, '', 1, '2026-01-22 01:15:01', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(36219, 28201, '4', 'Anna university ', '', 'Master of Business Adminstration (human resources ', '2025', 90.00, '', 1, '2026-01-22 01:45:03', 0, NULL, 0, NULL, 1),
(36220, 28204, '3', 'University College of engineering, Ariyalur', '', 'B.E (ECE) ', '2025', 71.50, '', 1, '2026-01-23 05:15:54', 0, NULL, 0, NULL, 1),
(36221, 28203, '3', 'Sns college of technology ', '', 'BE', '2026', 8.30, '', 1, '2026-01-23 05:18:55', 0, NULL, 0, NULL, 1),
(36222, 28205, '3', 'Crescent university ', '', 'BA', '2023', 6.00, '', 1, '2026-01-23 05:26:51', 0, NULL, 0, NULL, 1),
(36223, 28207, '5', 'Sri nallalaghu nadar polythenic college ', '', 'Ece', '2021', 65.00, '', 1, '2026-01-23 05:35:55', 0, NULL, 0, NULL, 1),
(36224, 28206, '3', 'Madras University ', '', 'Bsc', '2022', 86.00, '', 1, '2026-01-23 05:38:33', 0, NULL, 0, NULL, 1),
(36225, 28206, '4', 'Pondicherry University ', '', 'mBA', '2026', 76.00, '', 1, '2026-01-23 05:39:00', 0, NULL, 0, NULL, 1),
(36226, 28208, '4', 'Madras ', '', 'B.com', '2022', 80.00, '', 1, '2026-01-23 06:31:20', 0, NULL, 0, NULL, 1),
(36227, 28208, '5', 'Css', '', 'PGDCA ', '2023', 85.00, '', 1, '2026-01-23 06:31:59', 0, NULL, 0, NULL, 1),
(36228, 28210, '3', 'Anna university ', '', 'BE ', '2025', 70.00, '', 1, '2026-01-23 06:36:38', 0, NULL, 0, NULL, 1),
(36229, 28209, '1', 'Zp high school ', '', '', '2021', 8.50, '', 1, '2026-01-23 06:57:49', 0, NULL, 0, NULL, 1),
(36230, 28198, '4', 'DB jain college Thuraippakkam ', '', 'MSC computer science ', '2025', 70.00, '', 1, '2026-01-23 07:23:58', 0, NULL, 0, NULL, 1),
(36231, 28211, '4', 'Periyar University ', '', 'Msc Applied Geology ', '2022', 82.00, '', 1, '2026-01-23 08:33:20', 0, NULL, 0, NULL, 1),
(36232, 28212, '4', 'Madras University ', '', 'MCA', '2024', 70.00, '', 1, '2026-01-23 12:08:37', 0, NULL, 0, NULL, 1),
(36233, 28212, '4', 'Madras University ', '', 'MCA', '2024', 70.00, '', 1, '2026-01-23 12:09:33', 1, '2026-01-23 12:09:59', 0, NULL, 0),
(36234, 28213, '3', 'madras university', '', 'bachelor of business administration', '2024', 70.00, '', 1, '2026-01-24 07:03:36', 0, NULL, 0, NULL, 1),
(36235, 28214, '3', 'Madras University ', '', 'Bsc', '2023', 85.00, '', 1, '2026-01-24 07:03:50', 0, NULL, 0, NULL, 1),
(36236, 28216, '3', 'University of madras', '', 'B.com ', '2025', 65.00, '', 1, '2026-01-24 08:00:35', 0, NULL, 0, NULL, 1),
(36237, 28217, '3', 'dr mgr education and research institute ', '', 'b.tech ', '2025', 79.00, '', 1, '2026-01-24 08:43:21', 1, '2026-01-24 08:45:32', 0, NULL, 1),
(36238, 28217, '5', 'panimalar polytechnic college ', '', 'computer science engineering', '2022', 86.00, '', 1, '2026-01-24 08:47:06', 0, NULL, 0, NULL, 1),
(36239, 28215, '3', 'Periyar University ', '', 'B.com', '2019', 70.00, '', 1, '2026-01-24 09:05:05', 0, NULL, 0, NULL, 1),
(36240, 28218, '4', 'Hindustan Institute of technology and science, Chennai', '', 'M.s, Artificial intelligence and data analytics', '2025', 92.00, '', 1, '2026-01-24 09:32:47', 0, NULL, 0, NULL, 1),
(36241, 28219, '3', 'Anna University', '', 'BE ', '2022', 8.48, '', 1, '2026-01-24 09:36:17', 0, NULL, 0, NULL, 1),
(36242, 28220, '3', 'university of madras', '', 'ba.sociology', '2024', 66.00, '', 1, '2026-01-24 10:06:27', 0, NULL, 0, NULL, 1),
(36243, 28221, '3', 'Tamilnadu Agricultural University ', '', 'B.sc( Hons ) Agriculture ', '2023', 80.00, '', 1, '2026-01-24 11:20:21', 0, NULL, 0, NULL, 1),
(36244, 28222, '5', 'Dote', '', 'Electronics Communication Engineering', '2024', 68.00, '', 1, '2026-01-24 11:31:48', 0, NULL, 0, NULL, 1),
(36245, 28224, '3', 'SRM institute of science and Technology', '', 'BCom', '2026', 85.00, '', 1, '2026-01-24 01:36:38', 0, NULL, 0, NULL, 1),
(36246, 28225, '3', 'Guru nanak arts and science college ', '', 'BA economics ', '2024', 66.00, '', 1, '2026-01-24 01:37:05', 0, NULL, 0, NULL, 1),
(36247, 28224, '2', 'Velammal vidyashram', '', '', '2023', 66.00, '', 1, '2026-01-24 01:37:29', 0, NULL, 0, NULL, 1),
(36248, 28226, '3', 'SRM institute of science and Technology ', '', 'BCom', '2026', 85.00, '', 1, '2026-01-27 03:47:58', 0, NULL, 0, NULL, 1),
(36249, 28229, '3', 'Government arts college Nandanam', '', 'BBA', '2025', 60.10, '', 1, '2026-01-27 04:26:11', 0, NULL, 0, NULL, 1),
(36250, 28229, '2', 'State Board', '', '', '2022', 65.33, '', 1, '2026-01-27 04:27:25', 0, NULL, 0, NULL, 1),
(36251, 28229, '1', 'State Board', '', '', '2020', 53.40, '', 1, '2026-01-27 04:29:12', 0, NULL, 0, NULL, 1),
(36252, 28230, '3', 'Shree renukamba training institute ', '', '10+2', '2012', 77.00, '', 1, '2026-01-27 04:32:37', 0, NULL, 0, NULL, 1),
(36253, 28231, '3', 'Anna university ', '', 'BE', '2025', 7.23, '', 1, '2026-01-27 04:50:09', 0, NULL, 0, NULL, 1),
(36254, 28232, '3', 'Manonmaniyam sundranar university ', '', 'Bsc Computer Science', '2021', 7.65, '', 1, '2026-01-27 04:55:24', 0, NULL, 0, NULL, 1),
(36255, 28233, '3', 'Thiruvallur university ', '', 'BBA', '2023', 85.00, '', 1, '2026-01-27 04:58:05', 0, NULL, 0, NULL, 1),
(36256, 28234, '3', 'RVS COLLEGE OF ARTS AND SCIENCE ', '', 'Bsc Computer science ', '2025', 76.00, '', 1, '2026-01-27 05:06:16', 0, NULL, 0, NULL, 1),
(36257, 28235, '2', 'State Board ', '', 'BBA ', '2019', 75.00, '', 1, '2026-01-27 05:06:46', 1, '2026-01-27 05:07:44', 0, NULL, 0),
(36258, 28235, '3', 'Bharadhidasan University ', '', 'BBA', '2025', 75.00, '', 1, '2026-01-27 05:08:17', 0, NULL, 0, NULL, 1),
(36259, 28236, '3', 'Loyola institute of technology ', '', 'B tech IT ', '2025', 79.00, '', 1, '2026-01-27 05:13:16', 0, NULL, 0, NULL, 1),
(36260, 28236, '1', 'Govt hr sec school ', '', '', '2019', 69.00, '', 1, '2026-01-27 05:13:52', 0, NULL, 0, NULL, 1),
(36261, 28236, '2', 'Chanakya matric hr sec school ', '', '', '2021', 82.00, '', 1, '2026-01-27 05:14:16', 0, NULL, 0, NULL, 1),
(36262, 28238, '3', 'Anna University ', '', 'B.E', '2025', 82.00, '', 1, '2026-01-27 05:42:14', 0, NULL, 0, NULL, 1),
(36263, 28238, '1', 'State board ', '', '', '2019', 69.00, '', 1, '2026-01-27 05:42:38', 0, NULL, 0, NULL, 1),
(36264, 28238, '2', 'State board ', '', '', '2021', 80.00, '', 1, '2026-01-27 05:42:57', 0, NULL, 0, NULL, 1),
(36265, 28227, '3', 'Madras university ', '', 'BA ', '2023', 70.00, '', 1, '2026-01-27 05:51:07', 0, NULL, 0, NULL, 1),
(36266, 28239, '3', 'Bharadhidasan university', '', 'Bsc', '2025', 85.00, '', 1, '2026-01-27 05:56:10', 0, NULL, 0, NULL, 1),
(36267, 28241, '3', 'Vels University ', '', 'B.com', '2025', 65.00, '', 1, '2026-01-27 05:57:11', 0, NULL, 0, NULL, 1),
(36268, 28237, '3', 'Bon secours college for women', '', 'Bsc. Information technology', '2025', 92.00, '', 1, '2026-01-27 05:58:21', 0, NULL, 0, NULL, 1),
(36269, 28240, '5', 'board', '', 'Diploma in mechanical engineering', '2020', 67.00, '', 1, '2026-01-27 06:10:50', 0, NULL, 0, NULL, 1),
(36270, 28243, '1', 'Aruna higher secondary school ', '', '', '2019', 68.00, '', 1, '2026-01-27 06:22:46', 0, NULL, 0, NULL, 1),
(36271, 28242, '3', 'University of Madras ', '', 'BCA', '2025', 60.00, '', 1, '2026-01-27 06:31:13', 0, NULL, 0, NULL, 1),
(36272, 28242, '1', 'State board ', '', '', '2022', 78.00, '', 1, '2026-01-27 06:32:32', 0, NULL, 0, NULL, 1),
(36273, 28242, '2', 'State board ', '', '', '2022', 73.00, '', 1, '2026-01-27 06:33:32', 0, NULL, 0, NULL, 1),
(36274, 28244, '3', 'C Abdul Hakeem art and science College ', '', 'BBBA', '2022', 72.00, '', 1, '2026-01-27 06:39:13', 0, NULL, 0, NULL, 1),
(36275, 28245, '1', 'Bangalore ', '', '', '2018', 58.00, '', 1, '2026-01-27 07:13:15', 0, NULL, 0, NULL, 1),
(36276, 28202, '3', 'arathiyar university', '', 'bsc cshm', '2023', 75.00, '', 1, '2026-01-27 08:10:05', 0, NULL, 0, NULL, 1),
(36277, 28246, '3', 'Anna university', '', 'bE', '2024', 75.00, '', 1, '2026-01-27 09:33:14', 0, NULL, 0, NULL, 1),
(36278, 28247, '3', 'sethu institute of technology', '', 'bachelors of engineering', '2025', 8.00, '', 1, '2026-01-27 10:28:54', 0, NULL, 0, NULL, 1),
(36279, 28247, '2', 'sbk.girls.higher.secondary.school', '', '', '2021', 83.00, '', 1, '2026-01-27 10:30:03', 0, NULL, 0, NULL, 1),
(36280, 28247, '1', 'government girls higher secondary school', '', '', '2019', 75.00, '', 1, '2026-01-27 10:30:44', 0, NULL, 0, NULL, 1),
(36281, 28251, '3', 'anna university', '', 'be', '2021', 7.89, '', 1, '2026-01-27 01:21:51', 0, NULL, 0, NULL, 1),
(36282, 28248, '3', 'Madurai kamaraj university', '', 'Bachelor of commerce with (Computer Application)', '2025', 60.00, '', 1, '2026-01-27 04:53:01', 0, NULL, 0, NULL, 1),
(36283, 28255, '4', 'Bharathisadan university', '', 'M.com', '2024', 69.00, '', 1, '2026-01-28 04:56:56', 1, '2026-01-28 04:57:32', 0, NULL, 0),
(36284, 28255, '1', 'MAXWELL MATRIC hr.sec school', '', '', '2017', 60.00, '', 1, '2026-01-28 04:58:20', 1, '2026-01-28 04:59:02', 0, NULL, 0),
(36285, 28255, '4', 'Bharathisadhan university', '', 'M.com', '2024', 69.00, '', 1, '2026-01-28 04:59:43', 0, NULL, 0, NULL, 1),
(36286, 28257, '3', 'Anna University ', '', 'B.E', '2025', 74.00, '', 1, '2026-01-28 05:40:21', 0, NULL, 0, NULL, 1),
(36287, 28257, '1', 'State Board ', '', '', '2019', 71.00, '', 1, '2026-01-28 05:41:17', 0, NULL, 0, NULL, 1),
(36288, 28257, '2', 'Don Bosco matriculation higher secondary school ', '', '', '2021', 81.00, '', 1, '2026-01-28 05:42:10', 0, NULL, 0, NULL, 1),
(36289, 28259, '1', 'Bangalore', '', '', '2013', 50.00, '', 1, '2026-01-28 06:03:50', 0, NULL, 0, NULL, 1),
(36290, 28253, '4', 'Periyar University ', '', 'MCA ', '2025', 83.00, '', 1, '2026-01-28 06:04:31', 0, NULL, 0, NULL, 1),
(36291, 28258, '4', 'Bharathiar ', '', 'Msc Mathematics with computer application ', '2025', 75.00, '', 1, '2026-01-28 06:06:47', 0, NULL, 0, NULL, 1),
(36292, 28260, '4', 'Bannari Amman Institute of technology ', '', 'Btech.IT', '2025', 6.50, '', 1, '2026-01-28 06:25:19', 0, NULL, 0, NULL, 1),
(36293, 28262, '3', 'Thiruvalluvar University ', '', 'BCA ', '2024', 70.00, '', 1, '2026-01-28 06:39:23', 0, NULL, 0, NULL, 1),
(36294, 28263, '4', 'Madurai kamaraj university', '', 'Msc', '2017', 70.00, '', 1, '2026-01-28 06:46:14', 0, NULL, 0, NULL, 1),
(36295, 28263, '3', 'Madurai kamaraj university', '', 'Bsc', '2014', 67.00, '', 1, '2026-01-28 06:46:46', 0, NULL, 0, NULL, 1),
(36296, 28266, '3', 'Madras University ', '', 'B.A English ', '2023', 80.00, '', 1, '2026-01-28 07:20:27', 0, NULL, 0, NULL, 1),
(36297, 28265, '4', 'University Of Madras ', '', 'MCA', '2025', 83.29, '', 1, '2026-01-28 07:23:09', 0, NULL, 0, NULL, 1),
(36298, 28265, '3', 'University of Madras ', '', 'Bachelor of computer Scy', '2023', 84.79, '', 1, '2026-01-28 07:24:00', 0, NULL, 0, NULL, 1),
(36299, 28265, '2', 'State Board ', '', '', '2020', 54.66, '', 1, '2026-01-28 07:25:02', 1, '2026-01-28 07:25:42', 0, NULL, 1),
(36300, 28265, '1', 'State Board', '', '', '2018', 76.80, '', 1, '2026-01-28 07:26:26', 0, NULL, 0, NULL, 1),
(36301, 28270, '3', 'Bharathidasan', '', 'BA', '2023', 58.00, '', 1, '2026-01-28 08:38:29', 0, NULL, 0, NULL, 1),
(36302, 28273, '2', 'Board', '', '', '2020', 45.00, '', 1, '2026-01-28 09:12:16', 0, NULL, 0, NULL, 1),
(36303, 28273, '3', 'manonmaniam sundaranar university', '', 'B. A. English ', '2023', 85.00, '', 1, '2026-01-28 09:13:25', 0, NULL, 0, NULL, 1),
(36304, 28273, '4', 'Anna University ', '', 'MBA', '2025', 75.00, '', 1, '2026-01-28 09:14:00', 0, NULL, 0, NULL, 1),
(36305, 28272, '4', 'Madrasa unversity', '', 'MA human resourse management', '2023', 76.00, '', 1, '2026-01-28 09:15:21', 0, NULL, 0, NULL, 1),
(36306, 28272, '4', 'Unversity', '', 'Master of administration', '2023', 76.00, '', 1, '2026-01-28 09:28:59', 0, NULL, 0, NULL, 1),
(36307, 28264, '3', 'Madras University ', '', 'B.com', '2024', 70.00, '', 1, '2026-01-28 10:13:00', 1, '2026-01-28 10:22:43', 0, NULL, 1),
(36308, 28274, '4', 'amrita', '', 'mba', '2025', 73.00, '', 1, '2026-01-28 01:18:32', 0, NULL, 0, NULL, 1),
(36309, 28274, '3', 'bharathiar university', '', 'bcom banking and insurance', '2022', 84.00, '', 1, '2026-01-28 01:20:07', 0, NULL, 0, NULL, 1),
(36310, 28274, '2', 'amrita vishwa vidyapeetham', '', '', '2019', 75.00, '', 1, '2026-01-28 01:20:41', 0, NULL, 0, NULL, 1),
(36311, 28274, '1', 'amrita vishwa vidyapeetham', '', '', '2017', 7.20, '', 1, '2026-01-28 01:21:18', 0, NULL, 0, NULL, 1),
(36312, 28276, '3', 'vivekanandha college of Engineering for womens ', '', 'b.e', '2025', 72.00, '', 1, '2026-01-28 01:50:54', 1, '2026-01-28 01:55:29', 0, NULL, 0),
(36313, 28276, '3', 'vivekanandha college of engineering for womens', '', 'b.e', '2025', 72.00, '', 1, '2026-01-28 01:56:49', 0, NULL, 0, NULL, 1),
(36314, 28277, '3', 'Anna university ', '', 'B tech -Information technology ', '2025', 7.60, '', 1, '2026-01-28 02:02:41', 1, '2026-01-28 02:02:55', 0, NULL, 1),
(36315, 28277, '1', 'Government girls higher secondary school ', '', '', '2019', 69.00, '', 1, '2026-01-28 02:03:21', 0, NULL, 0, NULL, 1),
(36316, 28277, '2', 'Government girls higher secondary school ', '', '', '2021', 78.00, '', 1, '2026-01-28 02:03:35', 0, NULL, 0, NULL, 1),
(36317, 28279, '3', 'Dwaraka Doss Goverdhan Doss Vaishnav College', '', 'Bachelor\'s of commerce', '2022', 68.00, '', 1, '2026-01-28 02:46:48', 0, NULL, 0, NULL, 1),
(36318, 28280, '1', 'Board', '', '', '2019', 73.80, '', 1, '2026-01-29 04:19:59', 0, NULL, 0, NULL, 1),
(36319, 28280, '2', 'Board', '', '', '2021', 82.50, '', 1, '2026-01-29 04:20:25', 0, NULL, 0, NULL, 1),
(36320, 28280, '3', 'University ', '', 'B.E(ECE)', '2025', 7.30, '', 1, '2026-01-29 04:21:02', 0, NULL, 0, NULL, 1),
(36321, 28282, '3', 'bharathiar university coimbatore', '', 'Bachelor of Business Administration in Computer Ap', '2025', 67.00, '', 1, '2026-01-29 04:39:05', 0, NULL, 0, NULL, 1),
(36322, 28283, '3', 'Sir Theagaraya college ', '', 'B.com', '2025', 70.00, '', 1, '2026-01-29 05:34:32', 0, NULL, 0, NULL, 1),
(36323, 28284, '3', 'Anna university ', '', 'BE. Mechanical engineering ', '2023', 75.00, '', 1, '2026-01-29 05:56:23', 0, NULL, 0, NULL, 1),
(36324, 28285, '3', 'Bharathidhasan university tiruchirapalli ', '', 'B.com', '2025', 81.00, '', 1, '2026-01-29 06:02:17', 0, NULL, 0, NULL, 1),
(36325, 28285, '2', 'State Board ', '', '', '2022', 78.00, '', 1, '2026-01-29 06:04:04', 0, NULL, 0, NULL, 1),
(36326, 28285, '1', 'State Board ', '', '', '2020', 80.00, '', 1, '2026-01-29 06:04:33', 0, NULL, 0, NULL, 1),
(36327, 28286, '3', 'Bharathi women\'s college ', '', 'B.A', '2020', 70.00, '', 1, '2026-01-29 06:07:43', 0, NULL, 0, NULL, 1),
(36328, 28287, '3', 'University of madras', '', ' b a', '2023', 85.00, '', 1, '2026-01-29 06:37:19', 1, '2026-01-29 06:42:03', 0, NULL, 1),
(36329, 28288, '4', 'University of Madras ', '', 'Msc computer science ', '2024', 70.00, '', 1, '2026-01-29 07:14:10', 0, NULL, 0, NULL, 1),
(36330, 28288, '3', 'Thiruthangal nadar college ', '', 'Bca', '2021', 69.00, '', 1, '2026-01-29 07:14:55', 0, NULL, 0, NULL, 1),
(36331, 28290, '5', 'Apollo college', '', 'DCSE', '2013', 75.00, '', 1, '2026-01-29 07:23:31', 0, NULL, 0, NULL, 1),
(36332, 28290, '3', 'Anna university ( TJ Institute of Technology) ', '', 'B. E. Computer Science', '2025', 7.50, '', 1, '2026-01-29 07:24:14', 0, NULL, 0, NULL, 1),
(36333, 28291, '3', 'Annamalai University ', '', 'B.A', '2024', 77.00, '', 1, '2026-01-29 08:22:17', 0, NULL, 0, NULL, 1),
(36334, 28292, '3', 'Annaimalai University ', '', 'Bca', '2025', 58.00, '', 1, '2026-01-29 10:50:30', 0, NULL, 0, NULL, 1),
(36335, 28281, '5', 'Kanniyappa community college', '', '', '2023', 66.67, '', 1, '2026-01-29 10:56:23', 0, NULL, 0, NULL, 1),
(36336, 28293, '3', 'Periyar University ', '', 'Biotechnology ', '2021', 63.00, '', 1, '2026-01-29 01:20:07', 0, NULL, 0, NULL, 1),
(36337, 28294, '1', 'cbse', '', '', '2017', 100.00, '', 1, '2026-01-29 05:37:14', 0, NULL, 0, NULL, 1),
(36338, 28294, '2', 'cbse', '', '', '2019', 73.00, '', 1, '2026-01-29 05:37:36', 0, NULL, 0, NULL, 1),
(36339, 28294, '3', 'anna University ', '', 'b.e', '2023', 83.00, '', 1, '2026-01-29 05:38:21', 0, NULL, 0, NULL, 1),
(36340, 28295, '3', 'Madras University ', '', 'Bsc Mathematics ', '2025', 76.00, '', 1, '2026-01-30 12:22:02', 0, NULL, 0, NULL, 1),
(36341, 28295, '2', 'State board', '', '', '2022', 78.00, '', 1, '2026-01-30 12:22:37', 1, '2026-01-30 12:24:55', 0, NULL, 1),
(36342, 28295, '1', 'Tamilnadu State board ', '', '', '2020', 80.00, '', 1, '2026-01-30 12:24:17', 1, '2026-01-30 12:25:05', 0, NULL, 1),
(36343, 28297, '3', 'Thanthai Periyar Government institute of technology ', '', 'Bachelor of Engineering- CSE', '2025', 7.80, '', 1, '2026-01-30 04:34:15', 0, NULL, 0, NULL, 1),
(36344, 28298, '3', 'Prathyusha Engineering college ', '', 'B.E', '2025', 76.00, '', 1, '2026-01-30 04:38:44', 0, NULL, 0, NULL, 1),
(36345, 28298, '2', 'Tamilnadu Secondary school Education ', '', '', '2021', 82.00, '', 1, '2026-01-30 04:39:19', 0, NULL, 0, NULL, 1),
(36346, 28298, '1', 'Tamilnadu Secondary school Education ', '', '', '2019', 74.00, '', 1, '2026-01-30 04:39:35', 0, NULL, 0, NULL, 1),
(36347, 28299, '4', 'Anna University ', '', 'MCA', '2024', 83.00, '', 1, '2026-01-30 05:05:19', 0, NULL, 0, NULL, 1),
(36348, 28289, '3', 'Anna university ', '', 'BE', '2021', 76.00, '', 1, '2026-01-30 05:18:54', 0, NULL, 0, NULL, 1),
(36349, 28300, '3', 'Bharathidasan University ', '', 'B.com', '2024', 80.00, '', 1, '2026-01-30 05:19:26', 0, NULL, 0, NULL, 1),
(36350, 28301, '4', 'barathidasan university', '', 'msc', '2022', 84.00, '', 1, '2026-01-30 05:20:39', 0, NULL, 0, NULL, 1),
(36351, 28302, '4', 'Sri manakula vinayagar engineering College ', '', 'MBA ', '2025', 7.81, '', 1, '2026-01-30 05:45:10', 0, NULL, 0, NULL, 1),
(36352, 28303, '3', 'madras university', '', 'bcom bank Managment ', '2025', 55.00, '', 1, '2026-01-30 05:57:24', 0, NULL, 0, NULL, 1),
(36353, 28304, '3', 'Thiruvalluvar University ', '', 'BCA', '2025', 70.00, '', 1, '2026-01-30 06:00:29', 0, NULL, 0, NULL, 1),
(36354, 28305, '1', 'bangalore', '', '', '2017', 50.00, '', 1, '2026-01-30 06:30:51', 0, NULL, 0, NULL, 1),
(36355, 28278, '3', 'Madras University ', '', 'B.sc microbiology ', '2020', 65.00, '', 1, '2026-01-30 06:40:04', 0, NULL, 0, NULL, 1),
(36356, 28306, '3', 'Madras University ', '', 'Bsc nutrition and dietician ', '2020', 70.00, '', 1, '2026-01-30 06:58:43', 0, NULL, 0, NULL, 1),
(36357, 28309, '3', 'Madras University ', '', 'B.com (cs)', '2024', 69.00, '', 1, '2026-01-30 07:02:14', 0, NULL, 0, NULL, 1),
(36358, 28310, '3', 'University of Madras ', '', 'Bsc; chemistry ', '2023', 60.00, '', 1, '2026-01-30 07:15:28', 0, NULL, 0, NULL, 1),
(36359, 28308, '3', 'Mahendra Engineering College Namakkal ', '', 'B.E Mechananical Engineering ', '2025', 7.69, '', 1, '2026-01-30 07:17:10', 0, NULL, 0, NULL, 1),
(36360, 28307, '3', 'Mahendra Engineering College Namakkal ', '', 'B.E Mechanical engineering ', '2025', 7.54, '', 1, '2026-01-30 07:17:25', 0, NULL, 0, NULL, 1),
(36361, 28312, '3', 'University ', '', 'Bsc.computer science ', '2025', 6.55, '', 1, '2026-01-30 07:21:58', 0, NULL, 0, NULL, 1),
(36362, 28311, '3', 'Anna University ', '', 'BE- Electronic and communication engineering ', '2025', 70.00, '', 1, '2026-01-30 07:23:51', 0, NULL, 0, NULL, 1),
(36363, 28314, '3', 'Ramakrishna mission Vivekanandan college ', '', 'B.com(gen)', '2017', 65.00, '', 1, '2026-01-30 09:12:25', 0, NULL, 0, NULL, 1),
(36364, 28313, '3', 'Anna university ', '', 'Be civil engineering ', '2017', 60.00, '', 1, '2026-01-30 09:18:41', 0, NULL, 0, NULL, 1),
(36365, 28316, '3', 'Anna University', '', 'B.E', '2024', 82.00, '', 1, '2026-01-31 03:53:29', 0, NULL, 0, NULL, 1),
(36366, 28316, '2', 'State Board of Tamil Nadu ', '', '', '2020', 91.00, '', 1, '2026-01-31 03:53:57', 0, NULL, 0, NULL, 1),
(36367, 28316, '1', 'State Board of Tamil Nadu ', '', '', '2018', 91.00, '', 1, '2026-01-31 03:54:28', 0, NULL, 0, NULL, 1),
(36368, 28319, '3', 'Mother Teresa university ', '', 'Bsc computer science ', '2025', 80.00, '', 1, '2026-01-31 05:01:11', 0, NULL, 0, NULL, 1),
(36369, 28321, '3', 'Pondycherry university ', '', 'BBA', '2025', 6.80, '', 1, '2026-01-31 05:07:49', 0, NULL, 0, NULL, 1),
(36370, 28318, '4', 'University ', '', 'M.con', '2023', 75.00, '', 1, '2026-01-31 05:11:20', 1, '2026-01-31 05:12:06', 0, NULL, 0),
(36371, 28318, '4', 'University ', '', 'M.com', '2023', 75.00, '', 1, '2026-01-31 05:11:53', 0, NULL, 0, NULL, 1),
(36372, 28322, '3', 'University of madras', '', 'B. Com (information system management) ', '2024', 75.00, '', 1, '2026-01-31 05:12:43', 0, NULL, 0, NULL, 1),
(36373, 28317, '4', 'Prist university', '', 'Master of computer application', '2024', 60.00, '', 1, '2026-01-31 05:15:46', 1, '2026-01-31 05:16:43', 0, NULL, 0),
(36374, 28317, '4', 'pRIST UNIVERSITY', '', 'MCA', '2024', 75.00, '', 1, '2026-01-31 05:16:37', 0, NULL, 0, NULL, 1),
(36375, 28323, '4', 'Alagappa university ', '', 'Master of administration ', '2026', 74.00, '', 1, '2026-01-31 05:51:17', 0, NULL, 0, NULL, 1),
(36376, 28324, '4', 'Pondicherry university', '', 'MCA', '2025', 6.00, '', 1, '2026-01-31 06:21:54', 0, NULL, 0, NULL, 1),
(36377, 28325, '3', 'madras university', '', 'b.c.a', '2024', 61.30, '', 1, '2026-01-31 07:24:23', 0, NULL, 0, NULL, 1),
(36378, 28326, '4', 'University of madras ', '', 'M A Economics ', '2025', 80.00, '', 1, '2026-01-31 07:30:32', 0, NULL, 0, NULL, 1),
(36379, 28328, '3', 'Anna university ', '', 'Btech it ', '2025', 70.00, '', 1, '2026-01-31 08:24:02', 0, NULL, 0, NULL, 1),
(36380, 28329, '4', 'Audisankara institute of technology ', '', 'B.tech', '2024', 80.00, '', 1, '2026-01-31 10:38:27', 0, NULL, 0, NULL, 1),
(36381, 28336, '3', 'Vijayanagara Sri Krishnadevaraya University Ballari', '', 'Bcom ', '2023', 67.63, '', 1, '2026-02-02 01:46:39', 0, NULL, 0, NULL, 1),
(36382, 28337, '3', 'madras university', '', 'psychology', '2023', 78.40, '', 1, '2026-02-02 04:20:34', 0, NULL, 0, NULL, 1),
(36383, 28339, '3', 'Anna University ', '', 'B.Tech (IT)', '2025', 80.00, '', 1, '2026-02-02 04:43:13', 0, NULL, 0, NULL, 1),
(36384, 28339, '2', 'Holy cross matriculation higher secondary school ', '', '', '2021', 82.00, '', 1, '2026-02-02 04:43:37', 0, NULL, 0, NULL, 1),
(36385, 28339, '1', 'Holy cross matriculation higher secondary school ', '', '', '2019', 74.00, '', 1, '2026-02-02 04:43:52', 0, NULL, 0, NULL, 1),
(36386, 28340, '3', 'Sastra', '', 'Bsc bed', '2021', 75.00, '', 1, '2026-02-02 05:12:35', 0, NULL, 0, NULL, 1),
(36387, 28341, '3', 'Bharathiyar university ', '', 'Bsc visual communication ', '2022', 60.00, '', 1, '2026-02-02 05:23:06', 0, NULL, 0, NULL, 1),
(36388, 28341, '2', 'Matric ', '', 'Bsc visual communication ', '2018', 60.00, '', 1, '2026-02-02 05:24:49', 0, NULL, 0, NULL, 1),
(36389, 28342, '3', 'Sri Sankara arts and science college ', '', 'Bsc biotechnology ', '2025', 62.00, '', 1, '2026-02-02 05:52:52', 0, NULL, 0, NULL, 1),
(36390, 28343, '3', 'Srm University ', '', 'Bca', '2016', 64.00, '', 1, '2026-02-02 06:01:51', 0, NULL, 0, NULL, 1),
(36391, 28343, '2', 'St peters', '', '', '2012', 74.00, '', 1, '2026-02-02 06:02:25', 0, NULL, 0, NULL, 1),
(36392, 28335, '3', 'University ', '', 'BA ECONOMIC ', '2023', 85.00, '', 1, '2026-02-02 06:15:37', 0, NULL, 0, NULL, 1),
(36393, 28345, '3', 'Madras University ', '', 'B.com', '2025', 70.00, '', 1, '2026-02-02 06:35:39', 0, NULL, 0, NULL, 1),
(36394, 28344, '3', 'bharathidasan university', '', 'ba history ', '2023', 80.00, '', 1, '2026-02-02 06:38:46', 0, NULL, 0, NULL, 1),
(36395, 28332, '3', 'madras university', '', 'bca', '2024', 6.00, '', 1, '2026-02-02 06:40:50', 0, NULL, 0, NULL, 1),
(36396, 28346, '3', 'Lalit Narayan Mithila University', '', 'Bachelor of science', '2021', 67.00, '', 1, '2026-02-02 07:06:05', 0, NULL, 0, NULL, 1),
(36397, 28347, '4', 'Manonmaniyam Sundaranar', '', 'MBA', '2017', 62.00, '', 1, '2026-02-02 07:50:28', 0, NULL, 0, NULL, 1),
(36398, 28347, '3', 'Manonmaniyam Sundaranar', '', 'B.Com', '2015', 60.00, '', 1, '2026-02-02 07:51:33', 0, NULL, 0, NULL, 1),
(36399, 28348, '4', 'Dr Mgr Educational and Research Institute ', '', 'MBA HR ', '2024', 86.00, '', 1, '2026-02-02 10:15:19', 0, NULL, 0, NULL, 1),
(36400, 28351, '3', 'demeed', '', 'b.com gnrl', '2022', 78.00, '', 1, '2026-02-02 11:07:51', 0, NULL, 0, NULL, 1),
(36401, 28353, '3', 'Madras University ', '', 'B.Com', '2025', 81.20, '', 1, '2026-02-02 12:42:09', 0, NULL, 0, NULL, 1),
(36402, 28352, '3', 'Gss Jain college for women ', '', 'B.com', '2022', 82.00, '', 1, '2026-02-02 01:45:03', 0, NULL, 0, NULL, 1),
(36403, 28352, '4', 'Valliammal college for women ', '', 'MBA ', '2024', 80.00, '', 1, '2026-02-02 01:45:54', 0, NULL, 0, NULL, 1),
(36404, 28350, '3', 'Bharathidasan University', '', 'bca', '2025', 70.00, '', 1, '2026-02-03 03:49:15', 0, NULL, 0, NULL, 1),
(36405, 28354, '3', 'University ', '', 'Ba english ', '2022', 75.00, '', 1, '2026-02-03 04:10:48', 0, NULL, 0, NULL, 1),
(36406, 28356, '3', 'Anna university', '', 'B. E. Computer Science And Engineering', '2023', 84.00, '', 1, '2026-02-03 04:24:57', 0, NULL, 0, NULL, 1),
(36407, 28355, '3', 'Anna University ', '', 'BE', '2021', 84.00, '', 1, '2026-02-03 04:26:11', 1, '2026-02-03 04:26:44', 0, NULL, 0),
(36408, 28355, '1', 'ICSE', '', '', '2015', 75.00, '', 1, '2026-02-03 04:27:08', 0, NULL, 0, NULL, 1),
(36409, 28355, '2', 'Tamil Nadu state Board', '', '', '2017', 84.00, '', 1, '2026-02-03 04:27:37', 0, NULL, 0, NULL, 1),
(36410, 28355, '3', 'Anna University ', '', 'BE', '2021', 84.00, '', 1, '2026-02-03 04:28:01', 0, NULL, 0, NULL, 1),
(36411, 28357, '3', 'thiruthangal Nadar college ', '', 'BCOM CA ', '2025', 81.00, '', 1, '2026-02-03 04:55:18', 0, NULL, 0, NULL, 1),
(36412, 28358, '3', 'Thiruvallur university ', '', 'BCA', '2025', 82.33, '', 1, '2026-02-03 05:05:00', 0, NULL, 0, NULL, 1),
(36413, 28359, '3', 'ANNA UNIVERSITY CHENNAI ', '', 'B.E', '2025', 6.50, '', 1, '2026-02-03 05:10:21', 0, NULL, 0, NULL, 1),
(36414, 28360, '1', 'State board of school examination tamilnadu', '', '', '2019', 53.00, '', 1, '2026-02-03 05:10:51', 0, NULL, 0, NULL, 1),
(36415, 28360, '2', 'State board of school examination tamilnadu', '', '', '2021', 63.00, '', 1, '2026-02-03 05:11:22', 0, NULL, 0, NULL, 1),
(36416, 28360, '3', 'Kings engineering college', '', 'B.E computer science', '2025', 75.00, '', 1, '2026-02-03 05:12:41', 0, NULL, 0, NULL, 1),
(36417, 28363, '3', 'Thiruvalluvar university ', '', 'BCA', '2025', 70.00, '', 1, '2026-02-03 05:21:52', 0, NULL, 0, NULL, 1),
(36418, 28361, '3', 'Anna University ', '', 'B.Tech Information Technology ', '2026', 76.70, '', 1, '2026-02-03 05:26:53', 1, '2026-02-03 05:27:50', 0, NULL, 0),
(36419, 28364, '3', 'Thiruvallur ', '', 'B.Sc Maths', '2025', 67.00, '', 1, '2026-02-03 05:27:13', 0, NULL, 0, NULL, 1),
(36420, 28362, '3', 'M.O.P Vaishnav College For Women ', '', 'BCA', '2025', 68.00, '', 1, '2026-02-03 05:27:14', 0, NULL, 0, NULL, 1),
(36421, 28361, '3', 'Anna University ', '', 'B.Tech Information Technology ', '2025', 76.70, '', 1, '2026-02-03 05:28:33', 0, NULL, 0, NULL, 1),
(36422, 28366, '4', 'University of Mysore ', '', 'M, com', '2022', 73.50, '', 1, '2026-02-03 06:16:59', 0, NULL, 0, NULL, 1),
(36423, 28369, '3', 'Anna University ', '', 'B E', '2025', 7.40, '', 1, '2026-02-03 06:36:51', 0, NULL, 0, NULL, 1),
(36424, 28365, '1', 'Tamil Nadu State board', '', '', '2019', 82.00, '', 1, '2026-02-03 06:36:55', 0, NULL, 0, NULL, 1),
(36425, 28365, '2', 'Tamilnadu State Board ', '', '', '2021', 84.00, '', 1, '2026-02-03 06:37:25', 0, NULL, 0, NULL, 1),
(36426, 28365, '3', 'Anna University ', '', 'B.Tech - Information Technology ', '2025', 86.00, '', 1, '2026-02-03 06:37:59', 0, NULL, 0, NULL, 1),
(36427, 28370, '3', 'Anna university ', '', 'B.Tech', '2026', 78.00, '', 1, '2026-02-03 06:40:34', 0, NULL, 0, NULL, 1),
(36428, 28368, '3', 'Board', '', 'B.com general', '2022', 75.00, '', 1, '2026-02-03 06:44:02', 0, NULL, 0, NULL, 1),
(36429, 28367, '1', 'Tamilnadu State Board ', '', '', '2019', 74.00, '', 1, '2026-02-03 06:46:27', 0, NULL, 0, NULL, 1),
(36430, 28367, '2', 'Tamilnadu State Board ', '', '', '2021', 77.00, '', 1, '2026-02-03 06:46:54', 0, NULL, 0, NULL, 1),
(36431, 28367, '3', 'Anna University ', '', 'B.Tech - Information Technology ', '2025', 82.00, '', 1, '2026-02-03 06:47:26', 0, NULL, 0, NULL, 1),
(36432, 28371, '3', 'Anna University ', '', 'B.Tech.Artificial Intelligence and Data Science ', '2026', 6.86, '', 1, '2026-02-03 06:48:56', 0, NULL, 0, NULL, 1),
(36433, 28371, '2', 'Board', '', '', '2022', 61.50, '', 1, '2026-02-03 06:53:12', 1, '2026-02-03 06:54:14', 0, NULL, 1),
(36434, 28371, '1', 'State board', '', '', '2020', 82.60, '', 1, '2026-02-03 06:53:55', 0, NULL, 0, NULL, 1),
(36435, 28327, '3', 'Madras University ', '', 'B.comCa', '2022', 64.00, '', 1, '2026-02-03 07:22:16', 0, NULL, 0, NULL, 1),
(36436, 28376, '5', 'Church park institute ', '', 'D.T.ED', '2020', 55.00, '', 1, '2026-02-03 12:37:48', 0, NULL, 0, NULL, 1),
(36437, 28377, '2', 'State board ', '', '', '2020', 60.00, '', 1, '2026-02-03 12:39:08', 0, NULL, 0, NULL, 1),
(36438, 28378, '3', 'Board ', '', 'BA English literature ', '2024', 70.00, '', 1, '2026-02-03 12:50:24', 0, NULL, 0, NULL, 1),
(36439, 28379, '3', 'University ', '', 'BA economics ', '2020', 60.00, '', 1, '2026-02-04 04:33:15', 0, NULL, 0, NULL, 1),
(36440, 28381, '4', 'Saveetha school of engineering ', '', 'Bachelor of engineering ', '2025', 7.80, '', 1, '2026-02-04 05:22:57', 0, NULL, 0, NULL, 1),
(36441, 28380, '3', 'Bharadhidasan university ', '', 'Bcom', '2025', 77.00, '', 1, '2026-02-04 05:27:00', 0, NULL, 0, NULL, 1),
(36442, 28382, '5', 'Govt polytechnic institute Bellary ', '', 'Electronics and communication ', '2021', 84.00, '', 1, '2026-02-04 05:30:58', 0, NULL, 0, NULL, 1),
(36443, 28382, '1', 'Karnataka secondary education examination of board ', '', '', '2016', 55.00, '', 1, '2026-02-04 05:32:46', 0, NULL, 0, NULL, 1),
(36444, 28382, '2', 'Department of industrial training institute ', '', '', '2018', 79.00, '', 1, '2026-02-04 05:33:43', 0, NULL, 0, NULL, 1),
(36445, 28383, '3', 'Thiruvalluvar university ', '', 'B.A history ', '2023', 55.00, '', 1, '2026-02-04 05:46:37', 0, NULL, 0, NULL, 1),
(36446, 28385, '3', 'Madras university', '', 'Bcom(c.s) ', '2021', 75.00, '', 1, '2026-02-04 06:11:56', 0, NULL, 0, NULL, 1),
(36447, 28386, '3', 'Bharathidasan university ', '', 'B.com', '2025', 70.00, '', 1, '2026-02-04 06:24:12', 0, NULL, 0, NULL, 1),
(36448, 28387, '3', 'Anna University ', '', 'B.E ', '2020', 50.00, '', 1, '2026-02-04 06:39:29', 0, NULL, 0, NULL, 1),
(36449, 28388, '3', 'Bharathidasan university ', '', 'B.com', '2025', 80.00, '', 1, '2026-02-04 06:46:41', 0, NULL, 0, NULL, 1),
(36450, 28390, '3', 'Anna university', '', 'Bachelor of engineering', '2025', 78.00, '', 1, '2026-02-04 06:54:44', 0, NULL, 0, NULL, 1),
(36451, 28391, '3', 'Madras University ', '', 'Bsc(computer science)', '2025', 80.00, '', 1, '2026-02-04 07:16:38', 0, NULL, 0, NULL, 1),
(36452, 28392, '3', 'Madras University ', '', 'BSC(computer science)', '2025', 60.00, '', 1, '2026-02-04 07:16:39', 0, NULL, 0, NULL, 1),
(36453, 28395, '3', 'SRSIAT', '', 'Bsc', '2020', 75.00, '', 1, '2026-02-04 08:23:11', 0, NULL, 0, NULL, 1),
(36454, 28396, '4', 'Saveetha engineering college ', '', 'MBA', '2026', 81.00, '', 1, '2026-02-04 09:32:28', 0, NULL, 0, NULL, 1),
(36455, 28396, '3', 'Thiruvallur university ', '', 'B.Com', '2024', 75.00, '', 1, '2026-02-04 09:33:01', 0, NULL, 0, NULL, 1),
(36456, 28397, '4', 'saveetha engineering college', '', 'mba', '2026', 82.00, '', 1, '2026-02-04 09:33:11', 0, NULL, 0, NULL, 1),
(36457, 28399, '3', 'bharathiyar ', '', 'bsc microbiology', '2024', 68.00, '', 1, '2026-02-04 10:14:33', 0, NULL, 0, NULL, 1),
(36458, 28400, '3', 'Madras University ', '', 'Bsc computer science ', '2017', 60.00, '', 1, '2026-02-04 11:12:49', 0, NULL, 0, NULL, 1),
(36459, 28401, '3', 'madras university', '', 'b.a ecomomics', '2025', 59.20, '', 1, '2026-02-04 11:40:45', 0, NULL, 0, NULL, 1),
(36460, 28403, '3', 'Chellmal women college in Guindy ', '', 'B com general ', '2023', 79.00, '', 1, '2026-02-04 12:33:38', 0, NULL, 0, NULL, 1),
(36461, 28405, '4', 'University of Madras ', '', 'MSc IT', '2022', 80.00, '', 1, '2026-02-05 04:52:12', 0, NULL, 0, NULL, 1),
(36462, 28405, '3', 'University of Madras ', '', 'BCA', '2020', 70.00, '', 1, '2026-02-05 04:52:35', 0, NULL, 0, NULL, 1),
(36463, 28394, '4', 'bharathidasan university', '', 'MSC computer science ', '2025', 80.00, '', 1, '2026-02-05 05:20:18', 0, NULL, 0, NULL, 1),
(36464, 28406, '4', 'Barathidasan university ', '', 'Msc (computer science)', '2025', 81.00, '', 1, '2026-02-05 05:22:17', 0, NULL, 0, NULL, 1),
(36465, 28407, '2', 'Ssmrv ', '', '', '2017', 60.00, '', 1, '2026-02-05 05:33:26', 0, NULL, 0, NULL, 1),
(36466, 28408, '4', 'Bangalore University ', '', 'M.Com', '2021', 68.00, '', 1, '2026-02-05 06:04:11', 0, NULL, 0, NULL, 1),
(36467, 28408, '3', 'Bangalore University ', '', '', '2019', 71.00, '', 1, '2026-02-05 06:05:04', 0, NULL, 0, NULL, 1),
(36468, 28411, '4', 'JNTUA university ', '', 'MCA', '2021', 80.00, '', 1, '2026-02-05 06:31:41', 0, NULL, 0, NULL, 1),
(36469, 28404, '1', 'Open university of malaysia ', '', '', '2025', 80.00, '', 1, '2026-02-05 06:38:41', 0, NULL, 0, NULL, 1),
(36470, 28412, '3', 'SBM College of Engineering and Technology ', '', 'B.E.Computer Science ', '2025', 90.00, '', 1, '2026-02-05 06:42:32', 0, NULL, 0, NULL, 1),
(36471, 28402, '3', 'Bharathidasan University', '', 'Bcom ca', '2024', 88.00, '', 159, '2026-02-05 12:45:02', 0, NULL, 0, NULL, 1),
(36472, 23623, '3', 'madras unversity ', '', 'bcom ism', '2022', 78.00, '', 1, '2026-02-05 07:54:18', 0, NULL, 0, NULL, 1),
(36473, 28414, '3', 'madras University ', '', 'b.com - cs', '2023', 68.00, '', 1, '2026-02-05 10:12:45', 0, NULL, 0, NULL, 1),
(36474, 28415, '3', 'Bijapur university ', '', 'Ba', '2024', 80.00, '', 1, '2026-02-05 12:35:43', 0, NULL, 0, NULL, 1),
(36475, 28418, '3', 'Anna university ', '', 'Bachelor of Engineering /Computer Science and Engi', '2023', 7.89, '', 1, '2026-02-06 02:08:14', 0, NULL, 0, NULL, 1),
(36476, 28419, '4', 'vels  university', '', 'mba', '2025', 65.00, '', 1, '2026-02-06 04:38:44', 0, NULL, 0, NULL, 1),
(36477, 28417, '3', 'Bangloee North university', '', 'Bcom', '2024', 85.00, '', 1, '2026-02-06 04:56:01', 0, NULL, 0, NULL, 1),
(36478, 28420, '3', 'bharathidasan university', '', 'bsc ', '2022', 84.00, '', 1, '2026-02-06 05:46:49', 0, NULL, 0, NULL, 1),
(36479, 28422, '3', 'University ', '', 'BBA ', '2025', 60.00, '', 1, '2026-02-06 06:03:34', 0, NULL, 0, NULL, 1),
(36480, 28416, '3', 'Madras University ', '', 'Bachelor\'s of business administration ', '2025', 60.00, '', 1, '2026-02-06 06:03:53', 0, NULL, 0, NULL, 1),
(36481, 28421, '3', 'Bharathithasan', '', 'B.A', '2011', 85.00, '', 1, '2026-02-06 06:05:46', 0, NULL, 0, NULL, 1),
(36482, 28424, '3', 'Anna University ', '', 'BTech IT ', '2025', 6.60, '', 1, '2026-02-06 08:14:13', 0, NULL, 0, NULL, 1),
(36483, 28423, '3', 'Anna University', '', 'BE - CSE', '2025', 7.85, '', 1, '2026-02-06 08:25:56', 0, NULL, 0, NULL, 1),
(36484, 28425, '3', 'University ', '', 'Bo(voc) IFT', '2024', 7.98, '', 1, '2026-02-06 05:36:35', 0, NULL, 0, NULL, 1),
(36485, 28428, '3', 'Thiruvallur university ', '', 'BCA', '2024', 65.00, '', 1, '2026-02-07 04:30:13', 0, NULL, 0, NULL, 1),
(36486, 28429, '4', 'thiruvalluvar university ', '', 'm.com', '2022', 67.00, '', 1, '2026-02-07 06:23:16', 0, NULL, 0, NULL, 1),
(36487, 28430, '3', 'University of Madras ', '', 'B.sc ', '2024', 69.00, '', 1, '2026-02-07 06:29:44', 0, NULL, 0, NULL, 1),
(36488, 28374, '3', 'Annamalai University ', '', '', '2025', 61.28, '', 1, '2026-02-07 06:34:45', 0, NULL, 0, NULL, 1),
(36489, 28431, '4', 'srm ats and science collage', '', 'mca ', '2025', 83.00, '', 1, '2026-02-07 06:38:16', 0, NULL, 0, NULL, 1),
(36490, 28431, '3', 'srm ats and science collage', '', 'bca', '2023', 78.00, '', 1, '2026-02-07 06:38:46', 0, NULL, 0, NULL, 1),
(36491, 28432, '3', 'Madras university ', '', 'BBA', '2022', 72.00, '', 1, '2026-02-07 06:52:42', 0, NULL, 0, NULL, 1),
(36492, 28433, '3', 'University ', '', 'M.Sc', '2025', 80.00, '', 1, '2026-02-07 07:52:18', 0, NULL, 0, NULL, 1),
(36493, 28434, '3', 'Dharwad ', '', 'B.com', '2025', 75.86, '', 1, '2026-02-07 09:26:38', 0, NULL, 0, NULL, 1),
(36494, 28410, '4', 'VSKUB BELLARY ', '', 'Msc Biotechnology ', '2024', 52.00, '', 1, '2026-02-07 09:37:48', 0, NULL, 0, NULL, 1),
(36495, 28437, '3', 'Madurai kamaraj university ', '', 'B.com(computer application)', '2021', 80.00, '', 1, '2026-02-07 09:46:33', 0, NULL, 0, NULL, 1),
(36496, 28438, '3', 'Madras University ', '', 'B.sc bio technology ', '2021', 60.00, '', 1, '2026-02-07 01:17:17', 0, NULL, 0, NULL, 1),
(36497, 28436, '4', 'Bharathidasan university ', '', 'M.sc computer science ', '2025', 79.00, '', 1, '2026-02-07 03:17:52', 0, NULL, 0, NULL, 1),
(36498, 28436, '3', 'Bharathidasan university ', '', 'B.sc computer science ', '2023', 75.00, '', 1, '2026-02-07 03:18:36', 0, NULL, 0, NULL, 1),
(36499, 28443, '4', 'Madras University ', '', 'MCA', '2024', 70.00, '', 1, '2026-02-09 04:41:03', 0, NULL, 0, NULL, 1),
(36500, 28441, '4', 'University', '', 'Mca', '2025', 80.00, '', 1, '2026-02-09 04:41:09', 0, NULL, 0, NULL, 1),
(36501, 28441, '3', 'University', '', 'Bsc computer science ', '2022', 80.00, '', 1, '2026-02-09 04:41:43', 0, NULL, 0, NULL, 1),
(36502, 28443, '3', 'Madras University ', '', 'Bsc(cs)', '2022', 78.00, '', 1, '2026-02-09 04:41:49', 0, NULL, 0, NULL, 1),
(36503, 28442, '3', 'Anna University ', '', 'B tech ', '2025', 80.00, '', 1, '2026-02-09 05:00:25', 0, NULL, 0, NULL, 1),
(36504, 28447, '3', 'Anna University ', '', 'B.E', '2025', 81.00, '', 1, '2026-02-09 05:19:19', 0, NULL, 0, NULL, 1),
(36505, 28447, '2', 'State Board of Tamilnadu', '', '', '2021', 79.00, '', 1, '2026-02-09 05:19:55', 0, NULL, 0, NULL, 1),
(36506, 28447, '1', 'State Board of Tamilnadu', '', '', '2019', 72.00, '', 1, '2026-02-09 05:20:18', 0, NULL, 0, NULL, 1),
(36507, 28448, '3', 'bharathiar university', '', 'bsc computer technology', '2025', 60.00, '', 1, '2026-02-09 05:32:44', 0, NULL, 0, NULL, 1),
(36508, 28449, '3', 'Bharathiyar university ', '', 'Bsc computer Technology ', '2025', 63.00, '', 1, '2026-02-09 05:33:37', 0, NULL, 0, NULL, 1),
(36509, 28450, '3', 'Tagore engineering college ', '', 'BE computer science ', '2023', 76.00, '', 1, '2026-02-09 05:42:24', 0, NULL, 0, NULL, 1),
(36510, 28451, '3', 'University ', '', 'BBA', '2020', 60.00, '', 1, '2026-02-09 05:55:45', 0, NULL, 0, NULL, 1),
(36511, 28445, '1', 'Govt Hr Sec School', '', '', '2020', 50.00, '', 1, '2026-02-09 05:57:34', 0, NULL, 0, NULL, 1),
(36512, 28445, '2', 'Govt Hr Sec School ', '', '', '2022', 60.00, '', 1, '2026-02-09 05:57:57', 0, NULL, 0, NULL, 1),
(36513, 28445, '3', 'Yadava College Madurai', '', 'BSC MICROBIOLOGY', '2025', 60.00, '', 1, '2026-02-09 05:58:25', 0, NULL, 0, NULL, 1),
(36514, 28446, '3', 'Patrician college of arts and science ', '', 'B.com cs', '2024', 50.00, '', 1, '2026-02-09 06:13:46', 0, NULL, 0, NULL, 1),
(36515, 28453, '3', 'University of madras ', '', 'BCA ', '2025', 76.00, '', 1, '2026-02-09 06:34:32', 0, NULL, 0, NULL, 1),
(36516, 28452, '3', 'Rani chennamma university Belagavi ', '', 'Bcom', '2024', 83.00, '', 1, '2026-02-09 07:02:48', 0, NULL, 0, NULL, 1),
(36517, 28456, '4', 'B S ABDURAHMAN CRESCENT UNIVERSITY ', '', ' MBA', '2022', 89.00, '', 1, '2026-02-09 09:24:46', 0, NULL, 0, NULL, 1),
(36518, 28456, '3', 'Panimalar engineering college ', '', 'BE', '2019', 60.00, '', 1, '2026-02-09 09:26:00', 0, NULL, 0, NULL, 1),
(36519, 28455, '3', 'Thiruvalluvar University ', '', 'B.com', '2025', 80.00, '', 1, '2026-02-09 10:27:45', 0, NULL, 0, NULL, 1),
(36520, 28458, '4', 'university', '', 'mba', '2023', 81.00, '', 1, '2026-02-09 10:31:26', 0, NULL, 0, NULL, 1),
(36521, 28458, '3', 'university', '', 'b.sc', '2017', 78.00, '', 1, '2026-02-09 10:32:23', 0, NULL, 0, NULL, 1),
(36522, 28458, '2', 'stateboard', '', '', '2017', 76.00, '', 1, '2026-02-09 10:34:45', 0, NULL, 0, NULL, 1),
(36523, 28458, '1', 'stateboard', '', '', '2015', 88.00, '', 1, '2026-02-09 10:35:05', 0, NULL, 0, NULL, 1),
(36524, 28459, '4', 'Srm university ', '', 'MBA( hr and operations management)', '2025', 80.00, '', 1, '2026-02-09 10:47:24', 0, NULL, 0, NULL, 1),
(36525, 28457, '4', 'spicer adcevtist university ', '', 'mba', '2025', 60.00, '', 1, '2026-02-09 11:17:41', 0, NULL, 0, NULL, 1),
(36526, 28457, '3', 'spicer adventist university', '', 'b.com', '2020', 70.00, '', 1, '2026-02-09 11:18:42', 0, NULL, 0, NULL, 1),
(36527, 28460, '3', 'Madras University ', '', 'B.Com CS', '2022', 80.00, '', 1, '2026-02-09 12:18:23', 0, NULL, 0, NULL, 1),
(36528, 28440, '4', 'University ', '', 'M.sc computer science ', '2025', 80.00, '', 1, '2026-02-09 02:39:27', 0, NULL, 0, NULL, 1),
(36529, 28461, '3', 'justice basheer ahamed sayeed college for womens', '', 'Bachelors of business administration', '2025', 68.00, '', 1, '2026-02-09 02:41:36', 0, NULL, 0, NULL, 1),
(36530, 28461, '4', 'university of madras ', '', 'mba in human resources management ', '2027', 60.00, '', 1, '2026-02-09 02:43:32', 1, '2026-02-09 02:43:47', 0, NULL, 0),
(36531, 28462, '3', 'Anna University ', '', 'B.Tech information technology ', '2025', 75.40, '', 1, '2026-02-10 04:51:30', 1, '2026-02-10 04:54:00', 0, NULL, 1),
(36532, 28462, '2', 'State board of tamilnadu ', '', '', '2021', 83.30, '', 1, '2026-02-10 04:52:15', 1, '2026-02-10 04:53:35', 0, NULL, 1),
(36533, 28462, '1', 'State board of tamilnadu ', '', '', '2019', 73.30, '', 1, '2026-02-10 04:53:04', 0, NULL, 0, NULL, 1),
(36534, 28464, '5', 'Ponnaiya ramajayam', '', '', '2020', 75.00, '', 1, '2026-02-10 05:11:49', 0, NULL, 0, NULL, 1),
(36535, 28463, '3', 'dr m g r edu and research institute ', '', '', '2024', 7.85, '', 1, '2026-02-10 05:17:23', 0, NULL, 0, NULL, 1),
(36536, 28465, '3', 'niv ', '', 'b.com', '2021', 78.00, '', 1, '2026-02-10 05:33:22', 0, NULL, 0, NULL, 1),
(36537, 28467, '3', 'University of Madras ', '', 'BCA', '2024', 80.00, '', 1, '2026-02-10 05:48:19', 0, NULL, 0, NULL, 1),
(36538, 28466, '3', 'Thiruvalluvar university ', '', 'BCA ', '2025', 80.00, '', 1, '2026-02-10 05:51:14', 0, NULL, 0, NULL, 1),
(36539, 28468, '3', 'madras university', '', 'b.com', '2016', 75.00, '', 1, '2026-02-10 07:03:29', 0, NULL, 0, NULL, 1),
(36540, 28468, '2', 'school', '', '', '2013', 83.00, '', 1, '2026-02-10 07:04:03', 0, NULL, 0, NULL, 1),
(36541, 28468, '1', 'school', '', '', '2011', 80.00, '', 1, '2026-02-10 07:04:22', 0, NULL, 0, NULL, 1),
(36542, 28469, '3', 'Madras University ', '', 'B.A economics ', '2023', 63.00, '', 1, '2026-02-10 07:05:12', 0, NULL, 0, NULL, 1),
(36543, 28470, '3', 'dr. mgr university', '', 'bca  dt', '2025', 7.68, '', 1, '2026-02-10 07:59:32', 0, NULL, 0, NULL, 1),
(36544, 28472, '3', 'DR MGR UNIVERSITY ', '', 'BCA DT', '2025', 6.30, '', 1, '2026-02-10 08:00:02', 0, NULL, 0, NULL, 1),
(36545, 28475, '3', 'Bharathidasan university ', '', 'B. a Tamil', '2026', 75.00, '', 1, '2026-02-10 08:11:08', 0, NULL, 0, NULL, 1),
(36546, 28475, '5', 'Tamilnadu Agricultural university ', '', 'Horticulture ', '2021', 84.50, '', 1, '2026-02-10 08:11:51', 0, NULL, 0, NULL, 1),
(36547, 28473, '3', 'Dr.mGR university ', '', 'B.tech', '2017', 75.00, '', 1, '2026-02-10 08:54:17', 0, NULL, 0, NULL, 1),
(36548, 28476, '3', 'Alagappa university ', '', 'Bsc nautical science ', '2020', 70.00, '', 1, '2026-02-10 09:21:49', 0, NULL, 0, NULL, 1),
(36549, 28478, '4', 'Thirivalluvar', '', 'M.com', '2020', 70.00, '', 1, '2026-02-10 09:21:51', 0, NULL, 0, NULL, 1),
(36550, 28477, '4', 'madras university', '', 'mca', '2023', 70.00, '', 1, '2026-02-10 09:27:13', 0, NULL, 0, NULL, 1),
(36551, 28480, '3', 'University ', '', 'BBA', '2023', 50.00, '', 1, '2026-02-10 12:43:00', 0, NULL, 0, NULL, 1),
(36552, 28483, '4', 'Bharthidasan', '', 'Mba', '2025', 80.00, '', 1, '2026-02-11 05:16:25', 0, NULL, 0, NULL, 1),
(36553, 28482, '3', 'Bharthidasan University', '', 'BSC(computer science)', '2023', 81.00, '', 1, '2026-02-11 05:22:22', 0, NULL, 0, NULL, 1),
(36554, 28481, '3', 'Bharathidhasan university ', '', 'B. SC (physics) ', '2024', 70.00, '', 1, '2026-02-11 05:25:14', 0, NULL, 0, NULL, 1),
(36555, 28485, '4', 'Anna University ', '', 'MBA', '2025', 85.00, '', 1, '2026-02-11 06:09:05', 0, NULL, 0, NULL, 1),
(36556, 28486, '4', 'Madras University ', '', 'MA HRM', '2025', 78.00, '', 1, '2026-02-11 06:12:06', 0, NULL, 0, NULL, 1),
(36557, 28487, '3', 'University of Madras ', '', 'B. Com', '2017', 60.00, '', 1, '2026-02-11 06:22:59', 0, NULL, 0, NULL, 1),
(36558, 28488, '3', 'University of madras ', '', 'B.com', '2023', 78.00, '', 1, '2026-02-11 06:46:21', 0, NULL, 0, NULL, 1),
(36559, 28490, '3', 'Sri Venkateswara College of engineering ', '', 'B.Tech', '2025', 6.54, '', 1, '2026-02-11 06:58:02', 0, NULL, 0, NULL, 1),
(36560, 28489, '4', 'SRM University', '', 'BSC ', '2019', 6.00, '', 1, '2026-02-11 07:17:31', 0, NULL, 0, NULL, 1),
(36561, 28491, '3', 'University ', '', 'Bcom', '2023', 70.00, '', 1, '2026-02-11 07:30:48', 0, NULL, 0, NULL, 1),
(36562, 28492, '3', 'university', '', 'bba', '2023', 87.00, '', 1, '2026-02-11 07:30:57', 0, NULL, 0, NULL, 1),
(36563, 28493, '3', 'Sourashtra Arts & Science College', '', 'B.Sc.Maths', '2024', 60.00, '', 1, '2026-02-11 07:55:05', 0, NULL, 0, NULL, 1),
(36564, 28495, '3', 'Ethiraj college for women', '', 'BA(Economics)', '2020', 85.00, '', 1, '2026-02-11 10:27:40', 0, NULL, 0, NULL, 1),
(36565, 28496, '3', 'Sri Manakula Vinayagar Engineering College ', '', 'B.Tech ', '2025', 74.00, '', 1, '2026-02-11 10:36:10', 1, '2026-02-11 10:37:46', 0, NULL, 1),
(36566, 28497, '4', 'Bharathidasan university ', '', 'M.A, B.ed', '2023', 78.00, '', 1, '2026-02-11 10:47:13', 0, NULL, 0, NULL, 1),
(36567, 28498, '3', 'madras university', '', 'b.com', '2022', 89.00, '', 1, '2026-02-11 10:47:57', 0, NULL, 0, NULL, 1),
(36568, 28498, '2', 'state board', '', '', '2017', 81.00, '', 1, '2026-02-11 10:48:24', 0, NULL, 0, NULL, 1),
(36569, 28498, '1', 'state board', '', '', '2015', 75.00, '', 1, '2026-02-11 10:48:44', 0, NULL, 0, NULL, 1),
(36570, 28499, '3', 'Madras University ', '', 'Bsc.botany', '2025', 60.00, '', 1, '2026-02-11 12:17:37', 0, NULL, 0, NULL, 1),
(36571, 28500, '4', 'dr. mgr University ', '', 'mba', '2024', 70.00, '', 1, '2026-02-11 01:22:12', 0, NULL, 0, NULL, 1),
(36572, 28501, '4', 'dr. mgr university', '', 'mba hrm', '2023', 68.00, '', 1, '2026-02-11 01:36:54', 0, NULL, 0, NULL, 1),
(36573, 28503, '4', 'Hindustan University ', '', 'MBA ', '2024', 87.00, '', 1, '2026-02-12 04:01:13', 0, NULL, 0, NULL, 1),
(36574, 28505, '1', 'Tamil Nadu State Board', '', '', '2025', 79.00, '', 1, '2026-02-12 05:20:14', 1, '2026-02-12 05:20:24', 0, NULL, 1),
(36575, 28505, '2', 'Higher Secondary Tamil Nadu Board', '', '', '2019', 83.30, '', 1, '2026-02-12 05:20:58', 1, '2026-02-12 05:21:07', 0, NULL, 1),
(36576, 28505, '3', 'Anna University', '', 'BE', '2025', 75.40, '', 1, '2026-02-12 05:21:56', 0, NULL, 0, NULL, 1),
(36577, 28474, '1', 'State board of tamil nadu ', '', '', '2018', 69.00, '', 1, '2026-02-12 05:25:40', 0, NULL, 0, NULL, 1),
(36578, 28474, '2', 'Higher secondary board of Tamilnadu', '', '', '2020', 49.00, '', 1, '2026-02-12 05:26:40', 0, NULL, 0, NULL, 1),
(36579, 28474, '5', 'DOAT', '', 'D-EEE', '2022', 84.00, '', 1, '2026-02-12 05:27:25', 0, NULL, 0, NULL, 1),
(36580, 28474, '3', 'Anna University ', '', 'BE-EEE', '2025', 72.00, '', 1, '2026-02-12 05:28:10', 0, NULL, 0, NULL, 1),
(36581, 28508, '3', 'Anna university ', '', 'B.E (cse)', '2025', 79.00, '', 1, '2026-02-12 06:32:13', 0, NULL, 0, NULL, 1),
(36582, 28509, '3', 'Bharadhidasan ', '', 'Bed', '2023', 78.00, '', 1, '2026-02-12 07:01:00', 0, NULL, 0, NULL, 1),
(36583, 28511, '4', 'Periyar Maniammai Institute of Science and Technology', '', 'MCA', '2025', 8.28, '', 1, '2026-02-12 07:27:08', 0, NULL, 0, NULL, 1),
(36584, 28513, '3', 'Madras university', '', 'B. Sc chemistrt', '2025', 76.00, '', 1, '2026-02-12 07:57:35', 0, NULL, 0, NULL, 1),
(36585, 28512, '3', 'Madras University ', '', 'Bsc', '2025', 73.00, '', 1, '2026-02-12 07:57:54', 0, NULL, 0, NULL, 1),
(36586, 28514, '3', 'Periyar University ', '', '', '2025', 74.00, '', 1, '2026-02-12 10:15:12', 0, NULL, 0, NULL, 1),
(36587, 28514, '2', 'Reliance matric higher secondary school ', '', '', '2022', 79.00, '', 1, '2026-02-12 10:16:48', 0, NULL, 0, NULL, 1),
(36588, 28514, '1', 'Reliance matric higher secondary school ', '', '', '2020', 56.00, '', 1, '2026-02-12 10:17:42', 0, NULL, 0, NULL, 1),
(36589, 28517, '3', 'srinivasan college of arts and science', '', 'Bachelor of Computer Applications (BCA)', '2025', 7.46, '', 1, '2026-02-12 11:45:05', 0, NULL, 0, NULL, 1),
(36590, 28518, '3', 'bharathidasan university ', '', 'b.com', '2025', 7.10, '', 1, '2026-02-12 11:50:20', 0, NULL, 0, NULL, 1),
(36591, 28519, '3', 'Thiruvalluvar University', '', 'B com Bank Management ', '2020', 50.00, '', 1, '2026-02-12 12:03:08', 0, NULL, 0, NULL, 1),
(36592, 28520, '3', 'university of madras', '', 'bsc electronics and communication science', '2025', 81.30, '', 1, '2026-02-12 12:13:25', 0, NULL, 0, NULL, 1),
(36593, 28521, '3', 'bharathidasan university', '', 'b.com', '2025', 7.00, '', 1, '2026-02-12 12:55:06', 0, NULL, 0, NULL, 1),
(36594, 28523, '4', 'Panimalar Engineering College ', '', 'MBA', '2021', 80.00, '', 1, '2026-02-12 01:08:27', 0, NULL, 0, NULL, 1),
(36595, 28523, '3', 'Chevalier T.Thomas Elizabeth College for women\'s ', '', 'BBA ', '2019', 60.00, '', 1, '2026-02-12 01:09:39', 0, NULL, 0, NULL, 1),
(36596, 28525, '3', 'Madras University ', '', 'B.com', '2021', 64.00, '', 1, '2026-02-12 01:34:45', 0, NULL, 0, NULL, 1),
(36597, 28526, '1', 'KSEEB', '', '', '2018', 82.72, '', 1, '2026-02-12 01:42:13', 0, NULL, 0, NULL, 1),
(36598, 28526, '2', 'Department Of Pre-University Education', '', '', '2020', 75.00, '', 1, '2026-02-12 01:42:55', 0, NULL, 0, NULL, 1),
(36599, 28526, '3', 'BMS College of Commerce and Management ', '', 'BBA', '2023', 79.14, '', 1, '2026-02-12 01:43:32', 0, NULL, 0, NULL, 1),
(36600, 28526, '4', 'Dayananda Sagar University ', '', 'MBA', '2026', 79.61, '', 1, '2026-02-12 01:43:52', 0, NULL, 0, NULL, 1),
(36601, 28515, '3', 'prist university', '', 'b tech ', '2024', 8.19, '', 1, '2026-02-12 02:18:33', 0, NULL, 0, NULL, 1),
(36602, 28522, '3', 'Thiruvalluvar university ', '', 'B.Com', '2023', 67.00, '', 1, '2026-02-12 02:19:58', 0, NULL, 0, NULL, 1),
(36603, 28528, '3', 'Anna university ', '', 'B E ECE', '2024', 80.00, '', 1, '2026-02-13 04:40:46', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(36604, 28528, '1', 'Tamilnadu ', '', '', '2018', 80.00, '', 1, '2026-02-13 04:41:23', 0, NULL, 0, NULL, 1),
(36605, 28529, '3', 'Queen College of arts and science and science ', '', 'B.com ca', '2025', 78.00, '', 1, '2026-02-13 04:54:19', 0, NULL, 0, NULL, 1),
(36606, 28530, '3', 'Madras University ', '', 'B sc statistics ', '2025', 59.00, '', 1, '2026-02-13 06:32:10', 0, NULL, 0, NULL, 1),
(36607, 28531, '5', 'P T Lee Chengalvaraya Naicker Polytechnic college ', '', 'Computer science engineering ', '2025', 60.00, '', 1, '2026-02-13 06:32:10', 0, NULL, 0, NULL, 1),
(36608, 28532, '1', 'Matriculation', '', '', '2008', 86.00, '', 1, '2026-02-13 07:36:04', 0, NULL, 0, NULL, 1),
(36609, 28532, '5', 'Polytechnic ', '', 'Information Technology ', '2013', 83.00, '', 1, '2026-02-13 07:36:30', 0, NULL, 0, NULL, 1),
(36610, 28532, '3', 'Autonomous', '', 'B.TECH IT', '2016', 81.00, '', 1, '2026-02-13 07:37:05', 0, NULL, 0, NULL, 1),
(36611, 28533, '4', 'university of madras', '', 'masters in business administration', '2021', 87.00, '', 1, '2026-02-13 10:04:06', 0, NULL, 0, NULL, 1),
(36612, 28534, '3', 'anna univ ', '', 'b.tech', '2025', 67.00, '', 1, '2026-02-13 11:54:32', 0, NULL, 0, NULL, 1),
(36613, 28536, '3', 'Meenakshi college for women ', '', 'Bsc physics ', '2024', 68.50, '', 1, '2026-02-13 01:08:19', 0, NULL, 0, NULL, 1),
(36614, 28510, '4', 'Vels University ', '', 'B.com', '2022', 6.73, '', 1, '2026-02-13 03:05:42', 0, NULL, 0, NULL, 1),
(36615, 28541, '4', 'sns college of technology', '', 'mba', '2025', 7.60, '', 1, '2026-02-14 04:16:43', 0, NULL, 0, NULL, 1),
(36616, 28541, '3', 'kg college of technology', '', 'bba ca', '2023', 7.80, '', 1, '2026-02-14 04:17:39', 0, NULL, 0, NULL, 1),
(36617, 28542, '3', 'Anna university ', '', '', '2025', 80.30, '', 1, '2026-02-14 05:03:50', 0, NULL, 0, NULL, 1),
(36618, 28543, '3', 'Loyola college ', '', 'B.A Economics ', '2015', 60.00, '', 1, '2026-02-14 05:40:35', 0, NULL, 0, NULL, 1),
(36619, 28544, '3', 'Muslim arts college Thiruvithancode', '', 'BCA', '2002', 68.00, '', 1, '2026-02-14 05:51:08', 0, NULL, 0, NULL, 1),
(36620, 28545, '3', 'dr.mgr.educational and Research institue', '', 'b.sc', '2026', 60.00, '', 1, '2026-02-14 05:53:25', 0, NULL, 0, NULL, 1),
(36621, 28546, '4', 'Anna University ', '', 'MBA in Human Resources and Operations Management', '2023', 8.38, '', 1, '2026-02-14 05:53:37', 0, NULL, 0, NULL, 1),
(36622, 28547, '3', 'Guru Nanak Autonomous ', '', 'BSc Computer Science', '2024', 82.00, '', 1, '2026-02-14 06:48:35', 0, NULL, 0, NULL, 1),
(36623, 28549, '3', 'University College of engineering Nagercoil ', '', 'Btech IT', '2023', 75.00, '', 1, '2026-02-14 08:58:47', 0, NULL, 0, NULL, 1),
(36624, 28552, '3', 'Anna university', '', 'B.E', '2023', 72.49, '', 1, '2026-02-14 09:23:49', 0, NULL, 0, NULL, 1),
(36625, 28552, '2', 'Tamilnadu state board', '', '', '2019', 74.00, '', 1, '2026-02-14 09:24:23', 0, NULL, 0, NULL, 1),
(36626, 28552, '1', 'Tamilnadu state board', '', '', '2017', 94.60, '', 1, '2026-02-14 09:25:06', 0, NULL, 0, NULL, 1),
(36627, 28553, '3', 'Madras University ', '', 'BCA', '2021', 71.00, '', 1, '2026-02-14 11:34:08', 0, NULL, 0, NULL, 1),
(36628, 28554, '3', 'Madras University ', '', 'Bsc Maths ', '2024', 75.00, '', 1, '2026-02-14 12:31:55', 0, NULL, 0, NULL, 1),
(36629, 28555, '3', 'University of Madras ', '', 'B.A.English.Literature', '2025', 54.00, '', 1, '2026-02-14 12:44:58', 0, NULL, 0, NULL, 1),
(36630, 28556, '3', 'Bharath University ', '', 'BTech (CSE)', '2025', 75.00, '', 1, '2026-02-14 01:13:09', 0, NULL, 0, NULL, 1),
(36631, 28558, '4', 'University of madras ', '', 'MBA financial management ', '2025', 71.00, '', 1, '2026-02-14 01:24:10', 0, NULL, 0, NULL, 1),
(36632, 28558, '3', 'Madras University ', '', 'B.com ', '2022', 78.00, '', 1, '2026-02-14 01:24:59', 0, NULL, 0, NULL, 1),
(36633, 28559, '3', 'Anna University ', '', 'B.E', '2021', 81.00, '', 1, '2026-02-14 01:27:11', 0, NULL, 0, NULL, 1),
(36634, 28560, '3', 'University of madras ', '', 'Bachelor of Arts', '2025', 82.00, '', 1, '2026-02-15 11:36:29', 0, NULL, 0, NULL, 1),
(36635, 28557, '3', 'mADRAS UNIVERSITY', '', 'BCOM cA', '2025', 79.00, '', 159, '2026-02-16 10:32:59', 0, NULL, 0, NULL, 1),
(36636, 28564, '4', 'ANNA UNIVERSITY ', '', 'MBA', '2025', 85.00, '', 1, '2026-02-16 05:07:35', 0, NULL, 0, NULL, 1),
(36637, 28565, '3', 'anna university', '', 'b.tech', '2025', 6.70, '', 1, '2026-02-16 05:17:41', 0, NULL, 0, NULL, 1),
(36638, 28563, '1', 'Government school ', '', '', '2012', 50.00, '', 1, '2026-02-16 05:25:10', 1, '2026-02-16 05:26:20', 0, NULL, 1),
(36639, 28563, '2', 'Government school ', '', '', '2014', 55.00, '', 1, '2026-02-16 05:26:38', 0, NULL, 0, NULL, 1),
(36640, 28563, '3', 'Madras University ', '', '', '2018', 60.00, '', 1, '2026-02-16 05:27:02', 0, NULL, 0, NULL, 1),
(36641, 28562, '3', 'Anna University ', '', 'B.E Mechanical', '2019', 64.00, '', 1, '2026-02-16 05:38:52', 0, NULL, 0, NULL, 1),
(36642, 28566, '3', 'bharathidasan university ', '', 'bsc computer science', '2022', 80.00, '', 1, '2026-02-16 06:07:22', 0, NULL, 0, NULL, 1),
(36643, 28567, '4', 'university', '', 'mca', '2023', 7.68, '', 1, '2026-02-16 07:09:30', 0, NULL, 0, NULL, 1),
(36644, 28567, '3', 'university', '', 'bca', '2021', 7.68, '', 1, '2026-02-16 07:10:18', 0, NULL, 0, NULL, 1),
(36645, 28568, '3', 'Annamalai University ', '', 'Bsc Computer science ', '2025', 67.00, '', 1, '2026-02-16 07:12:14', 0, NULL, 0, NULL, 1),
(36646, 28569, '3', 'Alagappa university ', '', 'BBA ', '2025', 81.10, '', 1, '2026-02-16 08:28:23', 0, NULL, 0, NULL, 1),
(36647, 28572, '5', 'state board', '', 'deee', '2017', 86.00, '', 1, '2026-02-16 12:48:16', 0, NULL, 0, NULL, 1),
(36648, 28573, '4', 'SRM B School', '', 'MBA', '2011', 86.00, '', 1, '2026-02-16 01:33:22', 1, '2026-02-16 01:34:16', 0, NULL, 1),
(36649, 28573, '3', 'Anna University', '', 'BE', '2009', 72.00, '', 1, '2026-02-16 01:33:42', 0, NULL, 0, NULL, 1),
(36650, 28573, '2', 'State Board', '', '', '2005', 87.00, '', 1, '2026-02-16 01:34:55', 0, NULL, 0, NULL, 1),
(36651, 28573, '1', 'State Board', '', '', '2003', 93.00, '', 1, '2026-02-16 01:35:10', 0, NULL, 0, NULL, 1),
(36652, 28574, '3', 'KIT- Kalaignar Karunanidhi Institute of Technology', '', 'BE', '2020', 75.00, '', 1, '2026-02-16 02:15:41', 0, NULL, 0, NULL, 1),
(36653, 28575, '3', 'Anna university', '', 'BE cse', '2024', 78.00, '', 1, '2026-02-16 08:31:28', 0, NULL, 0, NULL, 1),
(36654, 28502, '3', 'Madras University ', '', 'BBA ', '2025', 75.00, '', 1, '2026-02-17 03:30:26', 0, NULL, 0, NULL, 1),
(36655, 28576, '1', 'Tamil Nadu State board', '', 'BSC computer Science', '2020', 70.60, '', 1, '2026-02-17 04:34:38', 0, NULL, 0, NULL, 1),
(36656, 28576, '2', 'Tamil Nadu State board', '', '', '2022', 72.00, '', 1, '2026-02-17 04:35:07', 0, NULL, 0, NULL, 1),
(36657, 28576, '3', 'Thiruvallur University', '', 'BSC computer Science', '2025', 70.00, '', 1, '2026-02-17 04:35:32', 0, NULL, 0, NULL, 1),
(36658, 28577, '4', 'Anna University ', '', 'Mca', '2024', 81.00, '', 1, '2026-02-17 05:00:13', 0, NULL, 0, NULL, 1),
(36659, 28578, '5', 'Dote', '', 'Diploma mechanical engineer ', '2022', 85.00, '', 1, '2026-02-17 05:08:45', 0, NULL, 0, NULL, 1),
(36660, 28580, '3', 'Amrita college of Engineering and technolog nagercoil.y ', '', 'B.E Computer Science and Engineering ', '2025', 81.00, '', 1, '2026-02-17 05:53:29', 0, NULL, 0, NULL, 1),
(36661, 28580, '2', 'N.V.K.S Higher secondary school  Attor', '', '', '2021', 83.00, '', 1, '2026-02-17 05:54:35', 0, NULL, 0, NULL, 1),
(36662, 28580, '1', 'N.V.K.S Higher Secondary school Attoor.', '', '', '2019', 71.00, '', 1, '2026-02-17 05:55:28', 0, NULL, 0, NULL, 1),
(36663, 28579, '4', 'Dr. NGP institute of technology ', '', 'MBA', '2024', 83.00, '', 1, '2026-02-17 06:21:00', 0, NULL, 0, NULL, 1),
(36664, 28581, '4', 'Madras University ', '', 'MA HRM ', '2024', 75.60, '', 1, '2026-02-17 06:50:16', 0, NULL, 0, NULL, 1),
(36665, 28582, '3', 'University of Madras ', '', 'B.sc . Biotechnology ', '2025', 80.00, '', 1, '2026-02-17 07:04:18', 1, '2026-02-17 07:11:31', 0, NULL, 0),
(36666, 28583, '5', 'Board ', '', 'Modern office practice ', '2019', 85.00, '', 1, '2026-02-17 07:11:29', 0, NULL, 0, NULL, 1),
(36667, 28582, '3', 'University of Madras ', '', 'B.sc.Biotechnology', '2025', 75.00, '', 1, '2026-02-17 07:12:31', 0, NULL, 0, NULL, 1),
(36668, 28584, '3', 'Madras University ', '', 'B com commerce ', '2023', 67.90, '', 1, '2026-02-17 09:47:46', 0, NULL, 0, NULL, 1),
(36669, 28571, '3', 'prist university', '', 'b.tech', '2024', 7.50, '', 1, '2026-02-17 10:16:15', 0, NULL, 0, NULL, 1),
(36670, 28585, '3', 'madras university', '', 'b.sc maths', '2018', 56.00, '', 1, '2026-02-17 10:17:40', 0, NULL, 0, NULL, 1),
(36671, 28586, '3', 'Anna University ', '', 'Computer science engineering ', '2022', 7.81, '', 1, '2026-02-17 12:13:18', 0, NULL, 0, NULL, 1),
(36672, 28587, '3', 'Madras University ', '', 'Bsc computer science ', '2024', 85.00, '', 1, '2026-02-17 01:08:59', 0, NULL, 0, NULL, 1),
(36673, 28589, '5', 'Board', '', 'Degree', '2025', 75.00, '', 1, '2026-02-18 05:04:53', 0, NULL, 0, NULL, 1),
(36674, 28590, '3', 'University ', '', 'Bsc(cs)', '2025', 74.00, '', 1, '2026-02-18 05:20:52', 0, NULL, 0, NULL, 1),
(36675, 28592, '3', 'University Of Madras ', '', 'BSc Computer Science ', '2025', 86.08, '', 1, '2026-02-18 05:45:44', 0, NULL, 0, NULL, 1),
(36676, 28593, '3', 'Mohamed sathak engineering college ', '', 'B.E computer science ', '2025', 81.00, '', 1, '2026-02-18 06:20:24', 0, NULL, 0, NULL, 1),
(36677, 28593, '2', 'State board ', '', '', '2021', 82.00, '', 1, '2026-02-18 06:21:11', 0, NULL, 0, NULL, 1),
(36678, 28593, '1', 'State board ', '', '', '2019', 74.00, '', 1, '2026-02-18 06:21:42', 0, NULL, 0, NULL, 1),
(36679, 28594, '3', 'board', '', 'bcom general', '2025', 75.00, '', 154, '2026-02-18 11:54:13', 0, NULL, 0, NULL, 1),
(36680, 28595, '3', 'Velammal engineering college ', '', 'BE', '2025', 7.00, '', 1, '2026-02-18 06:43:21', 0, NULL, 0, NULL, 1),
(36681, 28596, '3', 'Anniversary ', '', 'BE - CSE', '2022', 80.00, '', 1, '2026-02-18 07:34:43', 0, NULL, 0, NULL, 1),
(36682, 28600, '3', 'state board ', '', 'bsc ', '2023', 75.00, '', 1, '2026-02-18 09:23:23', 0, NULL, 0, NULL, 1),
(36683, 28599, '1', 'kseeb', '', '', '2017', 71.36, '', 1, '2026-02-18 09:32:16', 0, NULL, 0, NULL, 1),
(36684, 28599, '2', 'pre university education ', '', '', '2019', 77.16, '', 1, '2026-02-18 09:32:46', 0, NULL, 0, NULL, 1),
(36685, 28599, '3', 'KARNATAKA BOARD', '', 'bcom', '2022', 67.00, '', 1, '2026-02-18 09:33:10', 0, NULL, 0, NULL, 1),
(36686, 28598, '1', 'kseeb', '', '', '2020', 56.15, '', 1, '2026-02-18 09:41:08', 0, NULL, 0, NULL, 1),
(36687, 28598, '2', 'pre university board', '', '', '2022', 57.33, '', 1, '2026-02-18 09:41:50', 0, NULL, 0, NULL, 1),
(36688, 28601, '4', 'Anna university ', '', 'MBA', '2026', 83.00, '', 1, '2026-02-18 11:37:10', 0, NULL, 0, NULL, 1),
(36689, 28602, '4', 'Anna university ', '', 'Mba hr', '2022', 7.70, '', 1, '2026-02-18 11:41:21', 0, NULL, 0, NULL, 1),
(36690, 28607, '1', 'State board ', '', '', '2012', 70.00, '', 1, '2026-02-19 03:19:03', 0, NULL, 0, NULL, 1),
(36691, 28607, '2', 'State board ', '', '', '2014', 65.00, '', 1, '2026-02-19 03:19:28', 0, NULL, 0, NULL, 1),
(36692, 28607, '3', 'University of Madras ', '', 'B sc computer science ', '2017', 70.00, '', 1, '2026-02-19 03:20:03', 0, NULL, 0, NULL, 1),
(36693, 28610, '3', 'Anna University ', '', 'B.Tech information technology ', '2025', 8.50, '', 1, '2026-02-19 04:56:37', 1, '2026-02-19 04:56:59', 0, NULL, 1),
(36694, 28610, '2', 'Tamilnadu state Board', '', '', '2021', 83.00, '', 1, '2026-02-19 04:57:38', 0, NULL, 0, NULL, 1),
(36695, 28609, '3', 'Madras university ', '', 'Bsc computer science ', '2025', 70.00, '', 1, '2026-02-19 05:01:19', 0, NULL, 0, NULL, 1),
(36696, 28611, '3', 'Alagappa university ', '', 'Bsc cs', '2025', 75.00, '', 1, '2026-02-19 05:09:07', 0, NULL, 0, NULL, 1),
(36697, 28613, '3', 'davanagere University ', '', 'b.com', '2017', 51.38, '', 1, '2026-02-19 05:18:13', 0, NULL, 0, NULL, 1),
(36698, 28612, '1', 'kSEEB', '', '', '2016', 57.60, '', 1, '2026-02-19 05:20:28', 0, NULL, 0, NULL, 1),
(36699, 28613, '1', 'karnataka secondary school board', '', '', '2010', 55.02, '', 1, '2026-02-19 05:21:50', 1, '2026-02-19 05:26:02', 0, NULL, 1),
(36700, 28612, '2', 'Pre university board ', '', '', '2018', 70.66, '', 1, '2026-02-19 05:22:17', 0, NULL, 0, NULL, 1),
(36701, 28612, '3', 'Mysore University ', '', 'BBA', '2021', 6.53, '', 1, '2026-02-19 05:22:43', 0, NULL, 0, NULL, 1),
(36702, 28613, '2', 'karnataka pu board', '', '', '2012', 51.38, '', 1, '2026-02-19 05:24:53', 1, '2026-02-19 05:25:50', 0, NULL, 1),
(36703, 28603, '4', 'Dhanalakshmi srinivasan university', '', 'MBA( HR, Finance) ', '2025', 75.00, '', 1, '2026-02-19 05:41:46', 0, NULL, 0, NULL, 1),
(36704, 28603, '3', 'Srinivasan college of arts and science', '', 'Mathematics', '2023', 86.00, '', 1, '2026-02-19 05:42:18', 0, NULL, 0, NULL, 1),
(36705, 28603, '2', 'Stateboard', '', '', '2020', 71.00, '', 1, '2026-02-19 05:43:19', 0, NULL, 0, NULL, 1),
(36706, 28603, '1', 'Stateboard', '', '', '2018', 94.00, '', 1, '2026-02-19 05:43:44', 0, NULL, 0, NULL, 1),
(36707, 28615, '3', 'Sri Sankara Arts and Science college', '', 'Bcom', '2018', 56.00, '', 1, '2026-02-19 06:03:06', 0, NULL, 0, NULL, 1),
(36708, 28617, '4', 'University of madras ', '', '', '2024', 76.00, '', 1, '2026-02-19 06:17:39', 0, NULL, 0, NULL, 1),
(36709, 28617, '4', 'University of madras', '', 'Msc computer science ', '2024', 76.00, '', 1, '2026-02-19 06:18:08', 0, NULL, 0, NULL, 1),
(36710, 28616, '3', 'University of Madras ', '', 'Bsc computer science ', '2024', 67.00, '', 1, '2026-02-19 06:19:13', 0, NULL, 0, NULL, 1),
(36711, 28608, '3', 'ANNAMALAI UNIVERSITY', '', 'B. E (CSE) ', '2025', 83.00, '', 1, '2026-02-19 07:04:22', 0, NULL, 0, NULL, 1),
(36712, 28608, '1', 'TAGORE MATRIC. HR. SEC. SCHOOL', '', '', '2019', 87.00, '', 1, '2026-02-19 07:05:30', 0, NULL, 0, NULL, 1),
(36713, 28608, '2', 'TAGORE MATRIC. HR.SEC.SCHOOL', '', '', '2021', 88.00, '', 1, '2026-02-19 07:06:08', 0, NULL, 0, NULL, 1),
(36714, 28619, '3', 'SKU university ', '', 'B.com ', '2014', 68.00, '', 1, '2026-02-19 07:12:53', 0, NULL, 0, NULL, 1),
(36715, 28623, '4', 'anna university', '', 'be', '2021', 7.50, '', 1, '2026-02-19 10:45:04', 0, NULL, 0, NULL, 1),
(36716, 28621, '4', 'bharathiyar university', '', 'MSc', '2024', 83.00, '', 1, '2026-02-19 10:50:27', 0, NULL, 0, NULL, 1),
(36717, 28621, '3', 'periyar university', '', 'bSc', '2022', 85.00, '', 1, '2026-02-19 10:51:03', 0, NULL, 0, NULL, 1),
(36718, 28622, '3', 'The New College ', '', 'B.com Genral ', '2025', 75.00, '', 1, '2026-02-19 11:02:22', 1, '2026-02-19 11:02:52', 0, NULL, 1),
(36719, 28628, '3', 'Bharathidasan university ', '', 'Bsc., Computer science ', '2022', 80.00, '', 1, '2026-02-19 01:46:13', 0, NULL, 0, NULL, 1),
(36720, 28618, '4', 'Madras University ', '', 'MBA Finance ', '2022', 65.00, '', 1, '2026-02-19 04:01:16', 0, NULL, 0, NULL, 1),
(36721, 28626, '1', 'State board ', '', '', '2016', 65.00, '', 1, '2026-02-19 04:17:51', 0, NULL, 0, NULL, 1),
(36722, 28626, '2', 'State board ', '', '', '2017', 66.00, '', 1, '2026-02-19 04:19:09', 0, NULL, 0, NULL, 1),
(36723, 28626, '3', 'University ', '', 'BBA ', '2020', 70.00, '', 1, '2026-02-19 04:19:36', 0, NULL, 0, NULL, 1),
(36724, 28626, '4', 'University ', '', 'MBA finance ', '2024', 80.00, '', 1, '2026-02-19 04:20:41', 0, NULL, 0, NULL, 1),
(36725, 28630, '1', 'KSEEB', '', '', '2012', 58.00, '', 1, '2026-02-20 05:43:46', 0, NULL, 0, NULL, 1),
(36726, 28630, '2', 'Bidrambika pu college ', '', '', '2014', 69.00, '', 1, '2026-02-20 05:44:16', 0, NULL, 0, NULL, 1),
(36727, 28630, '3', 'Choudhary charan singh university ', '', 'BA', '2017', 72.00, '', 1, '2026-02-20 05:45:29', 0, NULL, 0, NULL, 1),
(36728, 28631, '3', 'anna University ', '', 'be', '2019', 7.80, '', 1, '2026-02-20 05:50:20', 0, NULL, 0, NULL, 1),
(36729, 28624, '3', 'kamarajar', '', 'bsc computer science', '2024', 60.00, '', 1, '2026-02-20 05:54:03', 0, NULL, 0, NULL, 1),
(36730, 28632, '3', 'Vel Tech Multi Tech Dr.Rangarajan Dr.Sakunthala Engineering college ', '', 'BE. ECE ', '2021', 78.20, '', 1, '2026-02-20 06:15:04', 0, NULL, 0, NULL, 1),
(36731, 28633, '3', 'University of Madras ', '', 'B.com General ', '2022', 71.00, '', 1, '2026-02-20 06:53:21', 0, NULL, 0, NULL, 1),
(36732, 28634, '3', 'University ', '', 'B.com', '2023', 72.00, '', 1, '2026-02-20 06:58:47', 0, NULL, 0, NULL, 1),
(36733, 28635, '3', 'University ', '', 'BcomCA', '2022', 80.00, '', 1, '2026-02-20 06:59:01', 0, NULL, 0, NULL, 1),
(36734, 28636, '3', 'Madras University ', '', 'bsc is com ', '2019', 7.10, '', 1, '2026-02-20 07:17:06', 0, NULL, 0, NULL, 1),
(36735, 28637, '3', 'anna university ', '', 'be computer science and engineering', '2021', 75.00, '', 1, '2026-02-20 07:26:47', 0, NULL, 0, NULL, 1),
(36736, 0, '3', 'upboard of intermidiate', '', 'bsc hotel managent', '2024', 8.50, '', 1, '2026-02-20 09:20:12', 1, '2026-02-21 11:33:28', 0, NULL, 0),
(36737, 0, '3', 'vels univirsity', '', 'iplo ', '2020', 7.50, '', 1, '2026-02-20 09:22:21', 1, '2026-02-21 11:33:32', 0, NULL, 0),
(36738, 28638, '3', 'vels university', '', 'd.hcm', '2022', 7.90, '', 1, '2026-02-20 09:39:46', 0, NULL, 0, NULL, 1),
(36739, 28641, '3', 'University ', '', 'Ba economics', '2023', 73.00, '', 1, '2026-02-20 12:01:55', 0, NULL, 0, NULL, 1),
(36740, 28643, '3', 'Pondicherry University ', '', 'B.sc(IT)', '2024', 62.00, '', 1, '2026-02-21 04:46:07', 0, NULL, 0, NULL, 1),
(36741, 28644, '3', 'Madras University ', '', 'Ba english ', '2024', 7.00, '', 1, '2026-02-21 05:02:35', 0, NULL, 0, NULL, 1),
(36742, 28644, '3', 'universitY', '', 'bsc IT', '2024', 62.00, '', 159, '2026-02-21 10:33:25', 159, '2026-02-21 10:33:33', 0, NULL, 0),
(36743, 28646, '3', 'University of Madras ', '', 'B.com Honours ', '2025', 82.80, '', 1, '2026-02-21 05:25:40', 0, NULL, 0, NULL, 1),
(36744, 28646, '2', 'Grace park convert higher secondary matriculation school of ', '', '', '2022', 80.00, '', 1, '2026-02-21 05:26:14', 0, NULL, 0, NULL, 1),
(36745, 28646, '1', 'Grace park convert higher secondary matriculation school ', '', '', '2020', 65.60, '', 1, '2026-02-21 05:26:45', 0, NULL, 0, NULL, 1),
(36746, 28645, '1', 'State Board ', '', '', '2003', 88.60, '', 1, '2026-02-21 05:35:02', 0, NULL, 0, NULL, 1),
(36747, 28645, '2', 'State Board', '', '', '2005', 86.83, '', 1, '2026-02-21 05:35:36', 0, NULL, 0, NULL, 1),
(36748, 28645, '3', 'Anna University ', '', 'B.Tech IT', '2009', 74.75, '', 1, '2026-02-21 05:36:15', 0, NULL, 0, NULL, 1),
(36749, 27526, '3', 'Madras university ', '', 'B.com', '2025', 90.00, '', 1, '2026-02-21 05:40:40', 0, NULL, 0, NULL, 1),
(36750, 28649, '3', 'Anna university ', '', 'B.com', '2022', 75.00, '', 1, '2026-02-21 09:24:37', 0, NULL, 0, NULL, 1),
(36751, 28652, '3', 'Anna Univsrsity', '', 'BE EEE', '2023', 84.10, '', 1, '2026-02-21 10:00:40', 0, NULL, 0, NULL, 1),
(36752, 28653, '4', 'Madurai Kamaraj University ', '', 'MA', '2021', 60.00, '', 1, '2026-02-21 10:05:03', 0, NULL, 0, NULL, 1),
(36753, 28653, '3', 'Madurai Kamaraj University ', '', 'BA', '2017', 58.00, '', 1, '2026-02-21 10:05:21', 0, NULL, 0, NULL, 1),
(36754, 28654, '3', 'mangalore university', '', 'b.com', '2023', 6.09, '', 1, '2026-02-21 11:34:07', 0, NULL, 0, NULL, 1),
(36755, 28657, '3', 'Loganatha Narayanaswamy Govt College ', '', 'Bachelor of arts ', '2021', 78.00, '', 1, '2026-02-21 01:30:09', 0, NULL, 0, NULL, 1),
(36756, 28659, '3', 'Anna University ', '', 'B.E Mechatronics ', '2025', 73.00, '', 1, '2026-02-22 05:12:56', 0, NULL, 0, NULL, 1),
(36757, 28660, '3', 'dhanalakshmi srinivasan engineering college', '', 'b.e.computer science and engineering', '2025', 86.00, '', 1, '2026-02-22 05:18:28', 0, NULL, 0, NULL, 1),
(36758, 28661, '3', 'Anna University ', '', 'B.E Mechatronics ', '2025', 73.00, '', 1, '2026-02-22 05:22:54', 0, NULL, 0, NULL, 1),
(36759, 28662, '4', 'srm university', '', 'm.sc', '2024', 75.00, '', 1, '2026-02-22 12:10:29', 0, NULL, 0, NULL, 1),
(36760, 28662, '3', 'madras university', '', 'b.sc', '2021', 75.00, '', 1, '2026-02-22 12:10:57', 0, NULL, 0, NULL, 1),
(36761, 28663, '3', 'kalaignar karunanidhi arts college for women', '', '', '2025', 89.90, '', 1, '2026-02-22 04:19:45', 0, NULL, 0, NULL, 1),
(36762, 28665, '3', 'University of Madras ', '', 'Msc Applied Psychology ', '2024', 69.60, '', 1, '2026-02-23 04:44:15', 1, '2026-02-23 04:45:51', 0, NULL, 0),
(36763, 28664, '3', 'Anna University ', '', 'BE', '2026', 8.70, '', 1, '2026-02-23 04:45:11', 0, NULL, 0, NULL, 1),
(36764, 28665, '4', 'Patrician College of Arts and Science ', '', 'Msc Applied Psychology ', '2024', 69.60, '', 1, '2026-02-23 04:45:40', 0, NULL, 0, NULL, 1),
(36765, 28667, '3', 'Madras university', '', 'BA, B. Ed', '2023', 70.00, '', 1, '2026-02-23 04:57:09', 0, NULL, 0, NULL, 1),
(36766, 28666, '1', 'state board', '', '', '2017', 69.00, '', 1, '2026-02-23 05:01:46', 0, NULL, 0, NULL, 1),
(36767, 28666, '2', 'state board', '', '', '2019', 58.00, '', 1, '2026-02-23 05:02:12', 0, NULL, 0, NULL, 1),
(36768, 28666, '3', 'autonamous', '', 'be. cse', '2023', 8.25, '', 1, '2026-02-23 05:03:39', 0, NULL, 0, NULL, 1),
(36769, 28668, '3', 'Dr. Mgr university ', '', 'B sc anesthesia technologist ', '2022', 70.00, '', 1, '2026-02-23 05:15:15', 0, NULL, 0, NULL, 1),
(36770, 28669, '3', 'Anna university ', '', 'B.tech artificial intelligence and data science ', '2024', 7.50, '', 1, '2026-02-23 05:29:00', 0, NULL, 0, NULL, 1),
(36771, 28671, '1', 'Tamilnadu board ', '', '', '2020', 97.00, '', 1, '2026-02-23 05:42:28', 0, NULL, 0, NULL, 1),
(36772, 28671, '2', 'Tamilnadu board ', '', '', '2022', 87.00, '', 1, '2026-02-23 05:42:44', 0, NULL, 0, NULL, 1),
(36773, 28671, '3', 'Anna University ', '', 'BE', '2026', 86.00, '', 1, '2026-02-23 05:43:14', 0, NULL, 0, NULL, 1),
(36774, 28670, '3', 'Anna university ', '', 'B.E(computer science engineering)', '2026', 89.00, '', 1, '2026-02-23 05:45:55', 0, NULL, 0, NULL, 1),
(36775, 28672, '5', 'P .t. Lee chengalvarayan polytechnic College ', '', 'Diploma ECE ', '2025', 79.00, '', 1, '2026-02-23 05:56:36', 0, NULL, 0, NULL, 1),
(36776, 28674, '3', 'Anna University Chennai ', '', 'BE cse', '2026', 82.00, '', 1, '2026-02-23 05:59:41', 0, NULL, 0, NULL, 1),
(36777, 28647, '3', 'madras university ', '', 'ba tamil literature ', '2023', 85.00, '', 1, '2026-02-23 06:01:10', 0, NULL, 0, NULL, 1),
(36778, 28675, '3', 'anna university', '', 'b. com ', '2021', 66.00, '', 1, '2026-02-23 06:01:28', 0, NULL, 0, NULL, 1),
(36779, 28677, '1', 'Stated Board', '', 'M. Sc., computer science ', '2015', 85.00, '', 1, '2026-02-23 06:03:55', 0, NULL, 0, NULL, 1),
(36780, 28677, '2', 'State board ', '', '', '2017', 76.00, '', 1, '2026-02-23 06:04:16', 0, NULL, 0, NULL, 1),
(36781, 28677, '3', 'Bharathidhasan university ', '', 'B. Sc., computer science ', '2020', 82.00, '', 1, '2026-02-23 06:04:52', 0, NULL, 0, NULL, 1),
(36782, 28673, '3', 'Anna university ', '', 'B.E', '2026', 7.90, '', 1, '2026-02-23 06:05:38', 0, NULL, 0, NULL, 1),
(36783, 28678, '4', 'Anna university ', '', 'MBA', '2023', 7.50, '', 1, '2026-02-23 06:10:08', 0, NULL, 0, NULL, 1),
(36784, 28620, '3', 'Pondicherry university ', '', 'B.sc computer science ', '2024', 5.87, '', 1, '2026-02-23 06:18:44', 0, NULL, 0, NULL, 1),
(36785, 28658, '3', 'Annamalai University ', '', 'Bsc computer science ', '2025', 77.00, '', 1, '2026-02-23 06:34:14', 0, NULL, 0, NULL, 1),
(36786, 28681, '3', 'Annamalai University ', '', 'BE', '2022', 82.00, '', 1, '2026-02-23 06:45:28', 0, NULL, 0, NULL, 1),
(36787, 28680, '3', 'ni of mad ', '', 'b.com', '2024', 80.00, '', 1, '2026-02-23 06:45:51', 0, NULL, 0, NULL, 1),
(36788, 28679, '4', 'University of Madras ', '', 'MBA', '2026', 75.00, '', 1, '2026-02-23 06:52:54', 0, NULL, 0, NULL, 1),
(36789, 28684, '3', 'Madras University ', '', 'BA English Literature ', '2020', 60.00, '', 1, '2026-02-23 07:17:02', 0, NULL, 0, NULL, 1),
(36790, 28683, '3', 'Bharathi thasan', '', 'Bachelor of Computer Science', '2020', 85.00, '', 1, '2026-02-23 07:30:16', 0, NULL, 0, NULL, 1),
(36791, 28685, '3', 'Bharathi university ', '', 'Bba ca', '2023', 50.00, '', 1, '2026-02-23 07:38:47', 0, NULL, 0, NULL, 1),
(36792, 28686, '3', 'Sastra Deemed university', '', 'B.Com(CA)', '2025', 7.00, '', 1, '2026-02-23 07:50:45', 0, NULL, 0, NULL, 1),
(36793, 28687, '3', 'Thiruvallur university ', '', 'BCA', '2025', 70.00, '', 1, '2026-02-23 10:43:12', 0, NULL, 0, NULL, 1),
(36794, 28690, '4', 'Madras university ', '', 'MBA', '2026', 70.00, '', 1, '2026-02-23 01:38:59', 0, NULL, 0, NULL, 1),
(36795, 28689, '3', 'Puducherry Technology University ', '', 'Btech', '2025', 7.89, '', 1, '2026-02-23 01:39:15', 0, NULL, 0, NULL, 1),
(36796, 28694, '4', 'Barathidasan university ', '', 'M. Com', '2023', 76.00, '', 1, '2026-02-23 04:41:05', 0, NULL, 0, NULL, 1),
(36797, 28695, '3', 'Madras University ', '', 'Bsc.computer science ', '2025', 72.00, '', 1, '2026-02-23 06:40:31', 0, NULL, 0, NULL, 1),
(36798, 28697, '3', 'anna university', '', 'b. e cse ', '2025', 7.78, '', 1, '2026-02-24 04:40:00', 0, NULL, 0, NULL, 1),
(36799, 28699, '3', 'Madras University ', '', 'BBA ', '2024', 75.00, '', 1, '2026-02-24 05:07:06', 0, NULL, 0, NULL, 1),
(36800, 28698, '3', 'Kalasalingam university ', '', 'BCA', '2024', 8.03, '', 1, '2026-02-24 05:17:41', 0, NULL, 0, NULL, 1),
(36801, 28702, '4', 'Anna University ', '', 'MBA', '2025', 91.00, '', 1, '2026-02-24 06:15:04', 0, NULL, 0, NULL, 1),
(36802, 28702, '3', 'Annamalai university ', '', 'B. Com', '2023', 68.00, '', 1, '2026-02-24 06:15:34', 0, NULL, 0, NULL, 1),
(36803, 28702, '2', 'State board', '', '', '2018', 93.00, '', 1, '2026-02-24 06:16:04', 0, NULL, 0, NULL, 1),
(36804, 28702, '1', 'State board', '', '', '2016', 94.00, '', 1, '2026-02-24 06:16:42', 0, NULL, 0, NULL, 1),
(36805, 28701, '3', 'madras university', '', 'bcom', '2021', 79.00, '', 1, '2026-02-24 06:19:02', 0, NULL, 0, NULL, 1),
(36806, 28704, '3', 'Mgr University ', '', 'Btech', '2025', 90.00, '', 1, '2026-02-24 07:18:40', 0, NULL, 0, NULL, 1),
(36807, 28704, '1', 'Keshavareddy public school ', '', '', '2019', 98.00, '', 1, '2026-02-24 07:20:19', 0, NULL, 0, NULL, 1),
(36808, 28650, '3', 'Sree vidyanikethan engineering college', '', 'BTech ', '2023', 75.00, '', 1, '2026-02-24 08:03:42', 0, NULL, 0, NULL, 1),
(36809, 28688, '3', 'Bharathidasan University ', '', 'BBA', '2023', 71.00, '', 1, '2026-02-24 08:24:11', 0, NULL, 0, NULL, 1),
(36810, 28688, '2', 'Fathima matriculation higher secondary school kovilur', '', '', '2020', 70.00, '', 1, '2026-02-24 08:26:23', 0, NULL, 0, NULL, 1),
(36811, 28688, '1', 'Fathima matriculation higher secondary school kovilur ', '', '', '2018', 78.00, '', 1, '2026-02-24 08:26:49', 0, NULL, 0, NULL, 1),
(36812, 28707, '3', 'Anna University ', '', 'B.E ECE', '2020', 80.00, '', 1, '2026-02-24 09:02:08', 0, NULL, 0, NULL, 1),
(36813, 28708, '3', 'thiruvalluar University', '', 'bca', '2025', 75.00, '', 1, '2026-02-24 09:47:49', 0, NULL, 0, NULL, 1),
(36814, 28710, '3', 'Anna University ', '', 'BE - Computer Science and Engineering ', '2025', 72.00, '', 1, '2026-02-24 09:50:07', 0, NULL, 0, NULL, 1),
(36815, 28710, '2', 'State board', '', '', '2021', 70.00, '', 1, '2026-02-24 09:51:03', 1, '2026-02-24 09:51:41', 0, NULL, 0),
(36816, 28710, '1', 'State board ', '', '', '2019', 59.00, '', 1, '2026-02-24 09:51:29', 1, '2026-02-24 09:51:38', 0, NULL, 0),
(36817, 28717, '3', 'sona college of technology', '', 'bacherlor of technology', '2025', 6.54, '', 1, '2026-02-25 01:21:46', 0, NULL, 0, NULL, 1),
(36818, 28718, '3', 'Madurai kamaraJ university ', '', 'BSc Chemistry ', '2002', 79.00, '', 1, '2026-02-25 02:49:28', 0, NULL, 0, NULL, 1),
(36819, 28721, '3', 'Gurunanak college ', '', 'B.com ', '2023', 67.00, '', 1, '2026-02-25 04:23:30', 0, NULL, 0, NULL, 1),
(36820, 28721, '1', 'Karnataka sangha hr sec school ', '', '', '2018', 63.00, '', 1, '2026-02-25 04:24:03', 0, NULL, 0, NULL, 1),
(36821, 28721, '2', 'Karnataka sangha hr sec school ', '', '', '2020', 66.00, '', 1, '2026-02-25 04:24:44', 0, NULL, 0, NULL, 1),
(36822, 28722, '3', 'The American college ', '', 'BSc (Computer science )', '2024', 76.70, '', 1, '2026-02-25 04:26:37', 0, NULL, 0, NULL, 1),
(36823, 28722, '2', 'Thiagarajar model higher secondary school ', '', '', '2021', 91.80, '', 1, '2026-02-25 04:27:20', 0, NULL, 0, NULL, 1),
(36824, 28722, '1', 'Thiagarajar model higher secondary school ', '', '', '2019', 91.60, '', 1, '2026-02-25 04:27:58', 0, NULL, 0, NULL, 1),
(36825, 28724, '4', 'Anna university ', '', 'M.tech', '2023', 85.00, '', 1, '2026-02-25 05:06:42', 0, NULL, 0, NULL, 1),
(36826, 28540, '3', 'Madras University ', '', 'Bca', '2025', 78.00, '', 1, '2026-02-25 05:30:01', 0, NULL, 0, NULL, 1),
(36827, 28720, '3', 'Madras university ', '', 'BBA', '2024', 79.00, '', 1, '2026-02-25 05:58:05', 0, NULL, 0, NULL, 1),
(36828, 28716, '3', 'Visweshwarayya technological university', '', '', '2025', 65.00, '', 1, '2026-02-25 06:50:40', 0, NULL, 0, NULL, 1),
(36829, 28711, '3', 'University college of Engineering Tindivanam ', '', 'B.E', '2025', 78.00, '', 1, '2026-02-25 06:54:01', 0, NULL, 0, NULL, 1),
(36830, 28725, '4', 'vels University ', '', 'm.sc', '2023', 73.19, '', 1, '2026-02-25 07:03:38', 0, NULL, 0, NULL, 1),
(36831, 28726, '3', 'Bharathidasan university ', '', 'BCA', '2025', 60.00, '', 1, '2026-02-25 07:25:30', 0, NULL, 0, NULL, 1),
(36832, 28729, '3', 'Madurai Kamarajar University College ', '', 'BCA ', '2025', 6.17, '', 1, '2026-02-25 07:52:55', 0, NULL, 0, NULL, 1),
(36833, 28730, '3', 'Periyar University ', '', 'Bachelors of computer science ', '2023', 78.00, '', 1, '2026-02-25 07:54:17', 0, NULL, 0, NULL, 1),
(36834, 28728, '3', 'Madurai kamaraj university college', '', 'Bachelor of computer application (BCA)', '2025', 65.00, '', 1, '2026-02-25 07:57:16', 0, NULL, 0, NULL, 1),
(36835, 28732, '3', 'Pondicherry University ', '', '', '2024', 7.73, '', 1, '2026-02-25 08:03:13', 0, NULL, 0, NULL, 1),
(36836, 28733, '3', 'Affiliated to anna University ', '', 'B.Tech CSBS', '2024', 83.00, '', 1, '2026-02-25 09:20:17', 0, NULL, 0, NULL, 1),
(36837, 28734, '3', 'Queen Mary\'s College ', '', 'BA Economics ', '2025', 73.38, '', 1, '2026-02-25 10:36:06', 0, NULL, 0, NULL, 1),
(36838, 28735, '4', 'Madras University ', '', 'MBA', '2022', 70.00, '', 1, '2026-02-25 11:00:12', 0, NULL, 0, NULL, 1),
(36839, 28736, '3', 'Anna University ', '', 'BE CSE', '2025', 81.00, '', 1, '2026-02-25 11:08:38', 0, NULL, 0, NULL, 1),
(36840, 28739, '1', 'board', '', '', '2019', 82.40, '', 1, '2026-02-25 12:48:40', 0, NULL, 0, NULL, 1),
(36841, 28739, '2', 'board', '', '', '2021', 85.60, '', 1, '2026-02-25 12:49:15', 0, NULL, 0, NULL, 1),
(36842, 28739, '3', 'university', '', 'b tech ece', '2025', 85.40, '', 1, '2026-02-25 12:50:00', 0, NULL, 0, NULL, 1),
(36843, 28742, '3', 'University of Madras ', '', 'Bsc', '2024', 67.00, '', 1, '2026-02-25 01:17:09', 0, NULL, 0, NULL, 1),
(36844, 28743, '3', 'University of Madras ', '', '', '2024', 67.00, '', 1, '2026-02-25 01:24:06', 0, NULL, 0, NULL, 1),
(36845, 28744, '3', 'University of madras ', '', 'BCA', '2025', 73.00, '', 1, '2026-02-25 01:49:41', 0, NULL, 0, NULL, 1),
(36846, 28747, '3', 'Loyola college ', '', 'B.com', '2025', 6.29, '', 1, '2026-02-25 04:29:14', 0, NULL, 0, NULL, 1),
(36847, 28748, '4', 'anna university', '', 'mca', '2024', 81.00, '', 1, '2026-02-25 04:52:56', 0, NULL, 0, NULL, 1),
(36848, 28750, '3', 'SRM University ', '', 'B tech computer science and engineering ', '2025', 78.00, '', 1, '2026-02-26 04:38:23', 0, NULL, 0, NULL, 1),
(36849, 28751, '3', 'St. Joseph\'s College of engineering ', '', 'BE CSE', '2026', 69.00, '', 1, '2026-02-26 04:39:55', 0, NULL, 0, NULL, 1),
(36850, 28751, '1', 'CBSE', '', '', '2020', 75.20, '', 1, '2026-02-26 04:40:52', 0, NULL, 0, NULL, 1),
(36851, 28750, '1', 'State board ', '', '', '2019', 81.00, '', 1, '2026-02-26 04:41:10', 0, NULL, 0, NULL, 1),
(36852, 28751, '2', 'CBSE', '', '', '2022', 69.00, '', 1, '2026-02-26 04:41:24', 0, NULL, 0, NULL, 1),
(36853, 28750, '2', 'State board ', '', '', '2021', 83.00, '', 1, '2026-02-26 04:41:49', 0, NULL, 0, NULL, 1),
(36854, 28752, '3', 'Bharadhidasan ', '', 'Bsc', '2021', 83.00, '', 1, '2026-02-26 05:06:34', 0, NULL, 0, NULL, 1),
(36855, 28753, '4', 'madras university', '', 'm s w  hr', '2023', 73.00, '', 1, '2026-02-26 05:18:51', 0, NULL, 0, NULL, 1),
(36856, 28753, '3', 'madras unversity', '', 'bsc', '2020', 72.00, '', 1, '2026-02-26 05:19:39', 0, NULL, 0, NULL, 1),
(36857, 28715, '3', 'Anna University ', '', 'BR', '2026', 71.00, '', 1, '2026-02-26 05:22:50', 0, NULL, 0, NULL, 1),
(36858, 28719, '3', 'Bharathidasan university ', '', 'B.COM & COMPUTER APPLICATION ', '2025', 65.00, '', 1, '2026-02-26 05:25:44', 0, NULL, 0, NULL, 1),
(36859, 28754, '4', 'Annamalai University ', '', 'Msc mathematics ', '2020', 91.00, '', 1, '2026-02-26 05:36:17', 0, NULL, 0, NULL, 1),
(36860, 28755, '3', 'Madras University ', '', 'B.com', '2016', 60.00, '', 1, '2026-02-26 05:48:04', 0, NULL, 0, NULL, 1),
(36861, 28749, '3', 'manonmaniam sundaranar university ', '', 'B.com', '2024', 70.00, '', 1, '2026-02-26 05:49:23', 0, NULL, 0, NULL, 1),
(36862, 28757, '3', 'periyar maniammai Institute of Science and Technology ', '', 'b.tech ', '2025', 63.00, '', 1, '2026-02-26 06:05:16', 0, NULL, 0, NULL, 1),
(36863, 28758, '5', 'periyar centenary polytechnic college', '', 'diploma', '2017', 72.00, '', 1, '2026-02-26 06:16:19', 0, NULL, 0, NULL, 1),
(36864, 28760, '3', 'Madras university ', '', 'B. Com', '2023', 60.00, '', 1, '2026-02-26 06:29:48', 0, NULL, 0, NULL, 1),
(36865, 28761, '3', 'anna university', '', 'b. e', '2019', 68.00, '', 1, '2026-02-26 06:47:47', 0, NULL, 0, NULL, 1),
(36866, 28655, '3', 'Madurai Kamarajar University ', '', 'BSc Information Technology ', '2025', 82.00, '', 1, '2026-02-26 07:09:22', 0, NULL, 0, NULL, 1),
(36867, 28741, '3', 'Barathithasan ', '', 'B.com( computer application)', '2025', 63.00, '', 1, '2026-02-26 07:15:14', 0, NULL, 0, NULL, 1),
(36868, 28738, '3', 'Veltech university ', '', 'B.E', '2025', 6.54, '', 1, '2026-02-26 07:17:26', 0, NULL, 0, NULL, 1),
(36869, 28763, '3', 'Mysore University ', '', 'BCA', '2025', 7.90, '', 1, '2026-02-26 07:21:51', 0, NULL, 0, NULL, 1),
(36870, 28764, '4', 'Madras University ', '', 'MBA ', '2025', 80.00, '', 1, '2026-02-26 07:33:47', 0, NULL, 0, NULL, 1),
(36871, 28764, '4', 'Madras University ', '', 'MBA ', '2025', 80.00, '', 1, '2026-02-26 07:34:19', 0, NULL, 0, NULL, 1),
(36872, 28765, '4', 'University of kerala ', '', 'MBA', '2024', 60.00, '', 1, '2026-02-26 07:48:20', 0, NULL, 0, NULL, 1),
(36873, 28765, '3', 'University of kerala ', '', 'B.com computer application ', '2021', 66.00, '', 1, '2026-02-26 07:49:16', 0, NULL, 0, NULL, 1),
(36874, 28766, '3', 'University of madras', '', 'Bsc computer science ', '2025', 60.00, '', 1, '2026-02-26 10:04:57', 0, NULL, 0, NULL, 1),
(36875, 28770, '4', 'madras university ', '', 'm. a hrm', '2024', 89.00, '', 1, '2026-02-26 12:49:35', 0, NULL, 0, NULL, 1),
(36876, 28772, '3', 'Annamalai University ', '', 'BCA', '2025', 84.00, '', 1, '2026-02-26 01:34:45', 0, NULL, 0, NULL, 1),
(36877, 28774, '3', 'University of Madras ', '', 'B.com corporate sectaryship', '2025', 50.00, '', 1, '2026-02-26 04:42:38', 0, NULL, 0, NULL, 1),
(36878, 28775, '3', 'adras univer ', '', 'b.com', '2023', 86.00, '', 1, '2026-02-26 06:13:57', 0, NULL, 0, NULL, 1),
(36879, 28778, '3', 'Anna University Chennai ', '', 'BE', '2025', 79.00, '', 1, '2026-02-27 04:42:34', 0, NULL, 0, NULL, 1),
(36880, 28778, '1', 'State Board ', '', '', '2019', 93.00, '', 1, '2026-02-27 04:42:53', 0, NULL, 0, NULL, 1),
(36881, 28777, '3', 'Anna University ', '', 'BE', '2025', 74.00, '', 1, '2026-02-27 04:43:02', 0, NULL, 0, NULL, 1),
(36882, 28778, '2', 'STATE BOARD ', '', '', '2021', 95.00, '', 1, '2026-02-27 04:43:11', 0, NULL, 0, NULL, 1),
(36883, 28777, '1', 'Banu Matric Hr Secondary school ', '', '', '2019', 82.00, '', 1, '2026-02-27 04:43:57', 0, NULL, 0, NULL, 1),
(36884, 28777, '2', 'Banu Matric Hr Secondary school ', '', '', '2021', 84.00, '', 1, '2026-02-27 04:44:24', 0, NULL, 0, NULL, 1),
(36885, 28776, '3', 'Visvesvaraya technological University ', '', 'B.E', '2020', 65.00, '', 1, '2026-02-27 04:46:10', 0, NULL, 0, NULL, 1),
(36886, 28776, '1', 'Karnataka secondary school education ', '', '', '2013', 85.00, '', 1, '2026-02-27 04:47:02', 0, NULL, 0, NULL, 1),
(36887, 28771, '3', 'salem college of engineering and technology', '', 'b.tech information technology', '2026', 8.23, '', 1, '2026-02-27 04:48:49', 1, '2026-02-27 04:50:18', 0, NULL, 1),
(36888, 28771, '2', 'government girls higher secondary school', '', '', '2022', 72.67, '', 1, '2026-02-27 04:51:04', 0, NULL, 0, NULL, 1),
(36889, 28771, '1', 'srv girls higher secondary school', '', '', '2020', 68.20, '', 1, '2026-02-27 04:52:09', 0, NULL, 0, NULL, 1),
(36890, 28769, '4', 'Anna University ', '', 'MBA', '2023', 6.70, '', 1, '2026-02-27 04:55:07', 0, NULL, 0, NULL, 1),
(36891, 28737, '3', 'Madress university ', '', 'Bcom general ', '2020', 60.00, '', 1, '2026-02-27 05:11:19', 0, NULL, 0, NULL, 1),
(36892, 28780, '4', 'Dr.MGR Educational research institute ', '', 'MBA (Hr)', '2025', 87.00, '', 1, '2026-02-27 05:19:26', 0, NULL, 0, NULL, 1),
(36893, 28781, '3', 'Dr.MGR educational and research institute ', '', 'B.tech', '2021', 79.80, '', 1, '2026-02-27 05:23:27', 0, NULL, 0, NULL, 1),
(36894, 28781, '5', 'P.T.lee.chengalvaraya naicker polytechnic college', '', 'DME', '2014', 89.80, '', 1, '2026-02-27 05:24:27', 0, NULL, 0, NULL, 1),
(36895, 28781, '1', 'State board ', '', '', '2011', 94.40, '', 1, '2026-02-27 05:24:48', 0, NULL, 0, NULL, 1),
(36896, 28782, '4', 'Sri Sankara Arts and science college ', '', 'M.a. english ', '2024', 65.00, '', 1, '2026-02-27 05:32:13', 0, NULL, 0, NULL, 1),
(36897, 28784, '3', 'Db jain college ', '', 'Bsc computer science ', '2021', 60.00, '', 1, '2026-02-27 05:49:57', 0, NULL, 0, NULL, 1),
(36898, 28783, '3', 'madras University ', '', 'b.com', '2021', 74.00, '', 1, '2026-02-27 05:51:59', 0, NULL, 0, NULL, 1),
(36899, 28783, '1', 'st Joseph high school chathiyath ernakulam', '', '', '2016', 74.00, '', 1, '2026-02-27 05:53:27', 0, NULL, 0, NULL, 1),
(36900, 28783, '2', 'st ebbas higher Secondary School chennai ', '', '', '2018', 63.00, '', 1, '2026-02-27 05:54:48', 0, NULL, 0, NULL, 1),
(36901, 28785, '3', 'Madras University ', '', 'Bcom account fiance ', '2022', 75.00, '', 1, '2026-02-27 06:38:48', 0, NULL, 0, NULL, 1),
(36902, 28786, '4', 'Mother Teresa women university ', '', 'MBA', '2024', 75.00, '', 1, '2026-02-27 07:00:34', 0, NULL, 0, NULL, 1),
(36903, 28787, '3', 'State board ', '', 'BCA', '2024', 80.00, '', 1, '2026-02-27 07:15:46', 0, NULL, 0, NULL, 1),
(36904, 28789, '3', 'Ethiraj College For Women ', '', 'B.Sc.Computer Science ', '2025', 77.80, '', 1, '2026-02-27 09:15:00', 0, NULL, 0, NULL, 1),
(36905, 28767, '3', 'Bharathiyar university', '', 'B com (CA)', '2018', 79.00, '', 1, '2026-02-27 09:50:46', 0, NULL, 0, NULL, 1),
(36906, 28792, '3', 'Annapoorana Engineering College ', '', 'B.E-ECE', '2025', 7.30, '', 1, '2026-02-27 10:35:03', 0, NULL, 0, NULL, 1),
(36907, 28773, '3', 'Bharathidasan ', '', 'BBA', '2024', 68.00, '', 1, '2026-02-27 10:42:46', 0, NULL, 0, NULL, 1),
(36908, 28788, '3', 'Annamalai University ', '', 'BCA  - Computer Application ', '2024', 87.00, '', 1, '2026-02-27 10:42:48', 0, NULL, 0, NULL, 1),
(36909, 28793, '3', 's.a.engineering college ', '', 'b.tech it', '2025', 8.03, '', 1, '2026-02-27 10:45:47', 0, NULL, 0, NULL, 1),
(36910, 28791, '4', 'Mangalore University ', '', 'Master\'s degree in economics ', '2021', 6.50, '', 1, '2026-02-27 11:48:17', 0, NULL, 0, NULL, 1),
(36911, 28791, '3', 'Mysore ', '', 'BA', '2018', 61.00, '', 1, '2026-02-27 11:49:03', 0, NULL, 0, NULL, 1),
(36912, 28795, '3', 'university of madars', '', 'bca', '2025', 8.10, '', 1, '2026-02-27 12:51:00', 0, NULL, 0, NULL, 1),
(36913, 28798, '3', 'madras university', '', 'bca', '2024', 80.00, '', 1, '2026-02-27 04:48:04', 0, NULL, 0, NULL, 1),
(36914, 28790, '3', 'MADRAS UNIVERSITY', '', 'B.A LM', '2026', 70.00, '', 1, '2026-02-27 04:50:58', 0, NULL, 0, NULL, 1),
(36915, 28796, '4', 'mgr university', '', 'mba', '2020', 89.00, '', 1, '2026-02-28 04:17:15', 0, NULL, 0, NULL, 1),
(36916, 28796, '4', 'mgr university-private', '', 'mba', '2020', 89.00, '', 1, '2026-02-28 04:18:08', 1, '2026-02-28 04:18:15', 0, NULL, 0),
(36917, 28796, '3', 'srm university', '', 'bcom general', '2017', 85.00, '', 1, '2026-02-28 04:18:51', 0, NULL, 0, NULL, 1),
(36918, 28796, '2', 'state board', '', '', '2014', 88.00, '', 1, '2026-02-28 04:19:07', 0, NULL, 0, NULL, 1),
(36919, 28796, '1', 'state board', '', '', '2012', 85.00, '', 1, '2026-02-28 04:19:25', 0, NULL, 0, NULL, 1),
(36920, 28800, '3', 'Pondicherry University ', '', 'BTech ', '2025', 83.00, '', 1, '2026-02-28 04:31:17', 0, NULL, 0, NULL, 1),
(36921, 28800, '2', 'Kerala State Board of Education ', '', '', '2021', 97.00, '', 1, '2026-02-28 04:32:00', 0, NULL, 0, NULL, 1),
(36922, 28800, '1', 'kerala State Board of Education ', '', '', '2019', 96.00, '', 1, '2026-02-28 04:32:20', 0, NULL, 0, NULL, 1),
(36923, 28799, '3', 'Anna University ', '', 'Bachelor of Technology ', '2025', 80.00, '', 1, '2026-02-28 04:34:09', 0, NULL, 0, NULL, 1),
(36924, 28799, '2', 'State Board ', '', '', '2021', 86.00, '', 1, '2026-02-28 04:38:06', 0, NULL, 0, NULL, 1),
(36925, 28799, '1', 'State Board ', '', '', '2019', 85.00, '', 1, '2026-02-28 04:38:47', 0, NULL, 0, NULL, 1),
(36926, 28801, '3', 'Prathyusha engineering college ', '', 'Btech IT ', '2025', 78.00, '', 1, '2026-02-28 04:41:36', 0, NULL, 0, NULL, 1),
(36927, 28803, '3', 'Madras University', '', 'B.Com accounting & Finance', '2020', 81.00, '', 1, '2026-02-28 04:58:25', 0, NULL, 0, NULL, 1),
(36928, 28805, '3', 'anna university', '', 'BE', '2020', 65.00, '', 1, '2026-02-28 06:14:11', 0, NULL, 0, NULL, 1),
(36929, 28804, '3', 'anna university', '', 'b.e', '2025', 86.50, '', 1, '2026-02-28 06:15:38', 0, NULL, 0, NULL, 1),
(36930, 28797, '3', 'ramakrishna mission vivekananda college', '', 'b.com bank management', '2024', 5.58, '', 1, '2026-02-28 06:28:59', 0, NULL, 0, NULL, 1),
(36931, 28806, '3', 'Anna University ', '', 'B.Tech information technology ', '2025', 7.98, '', 1, '2026-02-28 06:32:37', 0, NULL, 0, NULL, 1),
(36932, 28807, '3', 'bharathidhasan university', '', 'bca', '2025', 80.00, '', 1, '2026-02-28 07:06:14', 0, NULL, 0, NULL, 1),
(36933, 28807, '1', 'state board', '', '', '2019', 70.00, '', 1, '2026-02-28 07:07:05', 0, NULL, 0, NULL, 1),
(36934, 28807, '2', 'state board', '', '', '2022', 64.00, '', 1, '2026-02-28 07:07:37', 0, NULL, 0, NULL, 1),
(36935, 28808, '3', 'Knowledge Institute of Technology', '', 'B.Tech - Information Technology', '2025', 85.00, '', 1, '2026-02-28 07:21:02', 0, NULL, 0, NULL, 1),
(36936, 28808, '2', 'Srv hi-tech matric hr.sec.school', '', '', '2021', 90.00, '', 1, '2026-02-28 07:21:57', 0, NULL, 0, NULL, 1),
(36937, 28808, '1', 'Jayarani matric hr sec school', '', '', '2019', 89.00, '', 1, '2026-02-28 07:22:20', 0, NULL, 0, NULL, 1),
(36938, 28802, '3', 'State board ', '', 'b.sc.mathematics', '2023', 85.00, '', 1, '2026-02-28 08:32:01', 0, NULL, 0, NULL, 1),
(36939, 28816, '4', 'anna university', '', 'mba', '2026', 66.00, '', 1, '2026-03-01 01:46:12', 0, NULL, 0, NULL, 1),
(36940, 28811, '3', 'Thiruvalluvar university ', '', 'BCA ', '2025', 76.00, '', 1, '2026-03-01 04:05:41', 0, NULL, 0, NULL, 1),
(36941, 28779, '3', 'university of madras ', '', 'bsc ', '2023', 58.00, '', 1, '2026-03-02 03:43:26', 0, NULL, 0, NULL, 1),
(36942, 28756, '3', 'Board', '', 'B tech IT ', '2025', 75.00, '', 1, '2026-03-02 03:48:13', 0, NULL, 0, NULL, 1),
(36943, 28821, '3', 'University of Madras ', '', 'B.com cs', '2025', 66.00, '', 1, '2026-03-02 04:49:12', 0, NULL, 0, NULL, 1),
(36944, 28819, '3', 'Bharathidasan University, Trichy', '', 'Bsc physics ', '2024', 73.91, '', 1, '2026-03-02 04:51:52', 0, NULL, 0, NULL, 1),
(36945, 28820, '3', 'Bharathidhasan University , Trichy ', '', 'Bca', '2025', 64.00, '', 1, '2026-03-02 04:56:04', 0, NULL, 0, NULL, 1),
(36946, 28822, '2', 'tamilnadu state board', '', '', '2019', 91.00, '', 1, '2026-03-02 05:26:37', 0, NULL, 0, NULL, 1),
(36947, 28822, '1', 'tamilnadu state board', '', '', '2021', 91.00, '', 1, '2026-03-02 05:27:01', 0, NULL, 0, NULL, 1),
(36948, 28822, '3', 'anna university', '', 'b.e', '2025', 87.00, '', 1, '2026-03-02 05:27:56', 0, NULL, 0, NULL, 1),
(36949, 28824, '4', 'alagappa university', '', 'mba', '2025', 80.00, '', 1, '2026-03-02 05:52:41', 0, NULL, 0, NULL, 1),
(36950, 28824, '4', 'alagappa university', '', 'mba', '2025', 80.00, '', 1, '2026-03-02 05:53:30', 1, '2026-03-02 05:53:37', 0, NULL, 0),
(36951, 28825, '3', 'Dr.mgr janaki college of arts and science for women ', '', 'B.com (cs)', '2023', 80.00, '', 1, '2026-03-02 06:05:34', 0, NULL, 0, NULL, 1),
(36952, 28826, '3', 'Adhiparasakthi college of Arts and science college ', '', 'BCA ', '2025', 74.00, '', 1, '2026-03-02 06:17:07', 0, NULL, 0, NULL, 1),
(36953, 28828, '2', 'goverment', '', '', '2019', 56.00, '', 1, '2026-03-02 06:53:54', 0, NULL, 0, NULL, 1),
(36954, 28828, '1', 'goverment', '', '', '2016', 49.00, '', 1, '2026-03-02 06:54:16', 0, NULL, 0, NULL, 1),
(36955, 28827, '3', 'Madras university', '', 'BCA', '2025', 71.00, '', 1, '2026-03-02 06:57:56', 0, NULL, 0, NULL, 1),
(36956, 28829, '3', 'anna University ', '', 'b.e', '2025', 7.00, '', 1, '2026-03-02 07:03:57', 0, NULL, 0, NULL, 1),
(36957, 28832, '3', 'Periyar University', '', 'Bachalor of commerce', '2024', 75.00, '', 1, '2026-03-02 09:26:35', 0, NULL, 0, NULL, 1),
(36958, 28833, '3', 'Bangalore University ', '', 'Bachelor of business administration ', '2023', 77.27, '', 1, '2026-03-02 09:28:56', 0, NULL, 0, NULL, 1),
(36959, 28830, '4', 'Annamalai University ', '', 'M.sc Geology ', '2023', 7.10, '', 1, '2026-03-02 09:29:11', 0, NULL, 0, NULL, 1),
(36960, 28831, '3', 'Madras university', '', 'B. Com bank management', '2020', 55.00, '', 1, '2026-03-02 09:35:53', 0, NULL, 0, NULL, 1),
(36961, 28794, '4', 'Ultra arts and science college ', '', 'Msc forensic science and criminology ', '2023', 85.00, '', 1, '2026-03-02 09:36:03', 0, NULL, 0, NULL, 1),
(36962, 28794, '3', 'Kalasalingam academy of research and education ', '', 'BCA', '2019', 66.00, '', 1, '2026-03-02 09:36:25', 0, NULL, 0, NULL, 1),
(36963, 28794, '2', 'State board ', '', '', '2016', 66.00, '', 1, '2026-03-02 09:36:42', 0, NULL, 0, NULL, 1),
(36964, 28794, '1', 'State board ', '', '', '2014', 82.00, '', 1, '2026-03-02 09:36:56', 0, NULL, 0, NULL, 1),
(36965, 28814, '3', 'Sethu institute of technology', '', 'B.E. ( Biomedical )', '2025', 81.00, '', 1, '2026-03-02 12:38:37', 0, NULL, 0, NULL, 1),
(36966, 28839, '3', 'EGS Pillay Arts And Science College ', '', 'BCA', '2025', 79.00, '', 1, '2026-03-02 01:45:35', 0, NULL, 0, NULL, 1),
(36967, 28840, '3', 'MK University ', '', 'B. Sc Physics ', '2020', 65.00, '', 1, '2026-03-03 03:47:01', 0, NULL, 0, NULL, 1),
(36968, 28841, '3', 'Madras university', '', 'B. Com (General) ', '2025', 85.00, '', 1, '2026-03-03 04:32:33', 0, NULL, 0, NULL, 1),
(36969, 28837, '3', 'Madras University ', '', 'B com Computer Application ', '2025', 60.00, '', 1, '2026-03-03 04:51:43', 0, NULL, 0, NULL, 1),
(36970, 28843, '3', 'Madras University ', '', 'BCA', '2023', 65.00, '', 1, '2026-03-03 05:08:54', 0, NULL, 0, NULL, 1),
(36971, 28842, '4', 'Dr. M.G.R. Educational and Research Institute ', '', 'MBA - HRM', '2025', 76.18, '', 1, '2026-03-03 05:13:47', 0, NULL, 0, NULL, 1),
(36972, 28844, '3', 'University of madras', '', 'Bsc computer science ', '2025', 61.00, '', 1, '2026-03-03 05:14:58', 0, NULL, 0, NULL, 1),
(36973, 28842, '3', 'ANNAI VIOLET ART\'S AND SCIENCE COLLEGE ', '', 'B.Com ISM', '2023', 73.00, '', 1, '2026-03-03 05:15:20', 0, NULL, 0, NULL, 1),
(36974, 28845, '3', 'Anna university ', '', 'BE', '2023', 7.44, '', 1, '2026-03-03 05:22:54', 0, NULL, 0, NULL, 1),
(36975, 28846, '4', 'Anna university ', '', 'MBA', '2022', 85.00, '', 1, '2026-03-03 05:33:04', 0, NULL, 0, NULL, 1),
(36976, 28847, '4', 'Tiruvalluvar University ', '', 'MCA', '2024', 85.00, '', 1, '2026-03-03 05:50:10', 1, '2026-03-03 05:52:06', 0, NULL, 0),
(36977, 28848, '4', 'University of Madras ', '', 'MCA', '2024', 70.00, '', 1, '2026-03-03 05:51:44', 0, NULL, 0, NULL, 1),
(36978, 28848, '3', 'Thiruvallur University ', '', 'BCA', '2022', 84.00, '', 1, '2026-03-03 05:52:35', 0, NULL, 0, NULL, 1),
(36979, 28847, '4', 'Anna University ', '', 'MCA', '2024', 85.00, '', 1, '2026-03-03 05:52:46', 0, NULL, 0, NULL, 1),
(36980, 28848, '2', 'State Board', '', '', '2019', 56.00, '', 1, '2026-03-03 05:53:11', 0, NULL, 0, NULL, 1),
(36981, 28847, '3', 'Tiruvalluvar university ', '', 'BCA', '2022', 85.00, '', 1, '2026-03-03 05:53:16', 0, NULL, 0, NULL, 1),
(36982, 28848, '1', 'State Board ', '', '', '2017', 75.00, '', 1, '2026-03-03 05:53:31', 0, NULL, 0, NULL, 1),
(36983, 28847, '2', 'State Board ', '', '', '2019', 58.00, '', 1, '2026-03-03 05:53:43', 0, NULL, 0, NULL, 1),
(36984, 28847, '1', 'State Board ', '', '', '2017', 82.00, '', 1, '2026-03-03 05:54:16', 0, NULL, 0, NULL, 1),
(36985, 28850, '4', 'sv university ', '', 'bcom', '2016', 87.00, '', 1, '2026-03-03 06:05:30', 0, NULL, 0, NULL, 1),
(36986, 28851, '3', 'sathyabama university', '', 'b. tech it', '2025', 78.00, '', 1, '2026-03-03 06:21:43', 0, NULL, 0, NULL, 1),
(36987, 28851, '2', 'cbse', '', '', '2021', 70.80, '', 1, '2026-03-03 06:22:10', 0, NULL, 0, NULL, 1),
(36988, 28851, '1', 'cbse', '', '', '2019', 59.20, '', 1, '2026-03-03 06:22:26', 1, '2026-03-03 06:22:45', 0, NULL, 0),
(36989, 28853, '1', 'Tamilnadu education board ', '', '', '2018', 75.00, '', 1, '2026-03-03 06:38:24', 0, NULL, 0, NULL, 1),
(36990, 28853, '2', 'Tamilnadu education board ', '', '', '2020', 60.00, '', 1, '2026-03-03 06:39:00', 0, NULL, 0, NULL, 1),
(36991, 28853, '3', 'Thiruvalluvar university ', '', 'B.sc Computer science ', '2023', 75.00, '', 1, '2026-03-03 06:39:51', 0, NULL, 0, NULL, 1),
(36992, 28854, '3', 'Iietm', '', 'B.tech', '2018', 75.00, '', 1, '2026-03-03 06:48:47', 0, NULL, 0, NULL, 1),
(36993, 28856, '3', 'Unversity of madras', '', 'BBA', '2022', 50.00, '', 1, '2026-03-03 07:16:57', 1, '2026-03-03 07:18:13', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(36994, 28857, '3', 'S A ENGINEERING COLLEGE ', '', 'B.E', '2023', 82.60, '', 1, '2026-03-03 07:37:24', 1, '2026-03-03 07:38:18', 0, NULL, 1),
(36995, 28861, '3', 'Anna University ', '', 'Engineering ', '2021', 82.00, '', 1, '2026-03-03 08:07:47', 0, NULL, 0, NULL, 1),
(36996, 28863, '4', 'Annamalai University ', '', 'M. Com', '2022', 87.00, '', 1, '2026-03-03 08:09:13', 0, NULL, 0, NULL, 1),
(36997, 28860, '3', 'Thiruvalluvar university ', '', 'B.sc computer science ', '2022', 70.00, '', 1, '2026-03-03 08:10:15', 0, NULL, 0, NULL, 1),
(36998, 28863, '4', 'Annamalai University ', '', 'M. Com', '2022', 87.00, '', 1, '2026-03-03 08:11:18', 0, NULL, 0, NULL, 1),
(36999, 28858, '4', 'Drbccc hindu college ', '', 'B.com. corporate sectary ship ', '2025', 75.00, '', 1, '2026-03-03 09:19:05', 0, NULL, 0, NULL, 1),
(37000, 28867, '3', 'anna university', '', 'b.tech', '2024', 75.00, '', 1, '2026-03-03 10:24:18', 0, NULL, 0, NULL, 1),
(37001, 28869, '3', 'BIMS', '', 'BCA', '2026', 65.00, '', 1, '2026-03-03 10:54:05', 0, NULL, 0, NULL, 1),
(37002, 28870, '4', 'Alagappa ', '', 'M. Sc', '2023', 70.00, '', 1, '2026-03-03 11:53:02', 0, NULL, 0, NULL, 1),
(37003, 28815, '3', 'SETHU INSTITUTE OF TECHNOLOGY ', '', 'B.E biomedical engineering ', '2025', 70.00, '', 1, '2026-03-03 02:38:49', 0, NULL, 0, NULL, 1),
(37004, 28815, '1', 'PNU APT Dorairaj Higher secondary school ', '', '', '2019', 62.40, '', 1, '2026-03-03 02:40:44', 0, NULL, 0, NULL, 1),
(37005, 28815, '2', 'PNU APT Dorairaj Higher secondary school ', '', '', '2021', 73.00, '', 1, '2026-03-03 02:41:33', 0, NULL, 0, NULL, 1),
(37006, 28865, '3', 'anna university', '', 'b.e', '2024', 87.00, '', 1, '2026-03-03 04:52:43', 0, NULL, 0, NULL, 1),
(37007, 28871, '3', 'The Kavery Engineering College ', '', 'B Tech - Information Technology ', '2025', 7.12, '', 1, '2026-03-03 06:23:04', 0, NULL, 0, NULL, 1),
(37008, 28874, '3', 'Anna University ', '', 'B.tech Information Technology ', '2024', 78.00, '', 1, '2026-03-04 01:25:33', 0, NULL, 0, NULL, 1),
(37009, 28874, '2', 'State board', '', '', '2020', 65.00, '', 1, '2026-03-04 01:25:52', 0, NULL, 0, NULL, 1),
(37010, 28874, '1', 'State board ', '', '', '2018', 80.00, '', 1, '2026-03-04 01:26:22', 0, NULL, 0, NULL, 1),
(37011, 28875, '3', 'Mohamed Sathak A.J. College of Engineering ', '', 'B.Tech', '2025', 8.20, '', 1, '2026-03-04 03:50:44', 0, NULL, 0, NULL, 1),
(37012, 28878, '4', 'Vels University ', '', 'MBA ', '2025', 7.50, '', 1, '2026-03-04 05:54:03', 0, NULL, 0, NULL, 1),
(37013, 28879, '3', 'Madras University ', '', 'Bsc.visual communication ', '2025', 6.98, '', 1, '2026-03-04 05:58:58', 0, NULL, 0, NULL, 1),
(37014, 28881, '3', 'Saveetha University ', '', 'BE Agriculture ', '2023', 7.70, '', 1, '2026-03-04 06:01:57', 0, NULL, 0, NULL, 1),
(37015, 28880, '3', 'Bharathidasan university ', '', 'Bsc', '2019', 78.00, '', 1, '2026-03-04 06:02:18', 0, NULL, 0, NULL, 1),
(37016, 28882, '4', 'Thiruvalluvar University', '', 'M.Sc Computer Science', '2025', 76.00, '', 1, '2026-03-04 06:03:45', 0, NULL, 0, NULL, 1),
(37017, 28884, '3', 'Autonomous ', '', 'BA Economics ', '2024', 67.00, '', 1, '2026-03-04 06:06:30', 0, NULL, 0, NULL, 1),
(37018, 28882, '3', 'Thiruvalluvar university', '', 'B.Sc Computer Science', '2023', 73.00, '', 1, '2026-03-04 06:08:22', 0, NULL, 0, NULL, 1),
(37019, 28885, '3', 'Anna University ', '', 'BE', '2025', 7.33, '', 1, '2026-03-04 06:12:32', 0, NULL, 0, NULL, 1),
(37020, 28887, '3', 'Anna university ', '', 'BE-Electronics And Communication ', '2026', 7.50, '', 1, '2026-03-04 06:23:11', 0, NULL, 0, NULL, 1),
(37021, 28883, '3', 'PSR Engineering college ', '', '', '2023', 75.00, '', 1, '2026-03-04 06:27:17', 1, '2026-03-04 06:27:49', 0, NULL, 1),
(37022, 28886, '3', 'Anna University ', '', 'B.E. , CSE', '2025', 73.70, '', 1, '2026-03-04 06:28:22', 0, NULL, 0, NULL, 1),
(37023, 28886, '2', 'Stateboard', '', '', '2021', 84.67, '', 1, '2026-03-04 06:29:23', 0, NULL, 0, NULL, 1),
(37024, 28886, '1', 'State board ', '', '', '2019', 81.40, '', 1, '2026-03-04 06:29:58', 0, NULL, 0, NULL, 1),
(37025, 28866, '3', 'QUAID-E-COLLEGE MILLATH COLLEGE FOR WOMEN', '', 'B. Com general', '2024', 65.00, '', 1, '2026-03-04 06:33:48', 0, NULL, 0, NULL, 1),
(37026, 28888, '3', 'madrasuniversity', '', 'bsc cs', '2022', 70.00, '', 1, '2026-03-04 06:42:37', 0, NULL, 0, NULL, 1),
(37027, 28889, '3', 'srm universitry ', '', 'btech mech', '2019', 69.00, '', 1, '2026-03-04 06:51:03', 0, NULL, 0, NULL, 1),
(37028, 28890, '3', 'Dr.M.G.R university', '', '', '2023', 70.00, '', 1, '2026-03-04 07:25:17', 0, NULL, 0, NULL, 1),
(37029, 28891, '3', 'Madras University ', '', 'BA', '2025', 61.00, '', 1, '2026-03-04 08:13:04', 0, NULL, 0, NULL, 1),
(37030, 28893, '4', 'Pondicherry University', '', 'MBA', '2025', 7.50, '', 1, '2026-03-04 08:59:53', 0, NULL, 0, NULL, 1),
(37031, 28896, '3', 'anna university', '', 'be', '2025', 82.00, '', 1, '2026-03-04 01:23:45', 0, NULL, 0, NULL, 1),
(37032, 28723, '3', 'anna university', '', 'b.tech', '2025', 62.00, '', 1, '2026-03-04 01:26:59', 0, NULL, 0, NULL, 1),
(37033, 28897, '3', 'anna university', '', 'be', '2025', 83.00, '', 1, '2026-03-04 01:35:08', 0, NULL, 0, NULL, 1),
(37034, 28873, '4', 'university of madrs', '', 'mca', '2019', 77.00, '', 1, '2026-03-05 04:27:33', 1, '2026-03-05 04:30:06', 0, NULL, 0),
(37035, 28873, '2', 'state board', '', '', '2013', 80.30, '', 1, '2026-03-05 04:28:05', 1, '2026-03-05 04:29:08', 0, NULL, 0),
(37036, 28873, '4', 'university of madras', '', 'mca', '2019', 77.00, '', 1, '2026-03-05 04:30:57', 0, NULL, 0, NULL, 1),
(37037, 28873, '3', 'queen mary s college', '', 'bca', '2016', 80.00, '', 1, '2026-03-05 04:31:58', 0, NULL, 0, NULL, 1),
(37038, 28873, '2', 'stateboard', '', '', '2013', 80.30, '', 1, '2026-03-05 04:32:41', 1, '2026-03-05 04:34:30', 0, NULL, 0),
(37039, 28873, '1', 'state board', '', '', '2011', 93.30, '', 1, '2026-03-05 04:33:21', 1, '2026-03-05 04:34:37', 0, NULL, 0),
(37040, 28873, '2', 'state board', '', '', '2013', 80.30, '', 1, '2026-03-05 04:35:01', 0, NULL, 0, NULL, 1),
(37041, 28873, '1', 'state board', '', '', '2011', 93.30, '', 1, '2026-03-05 04:35:37', 0, NULL, 0, NULL, 1),
(37042, 28900, '3', 'Anna University ', '', 'B.Tech', '2025', 79.00, '', 1, '2026-03-05 04:55:43', 0, NULL, 0, NULL, 1),
(37043, 28900, '1', 'TN State Board', '', '', '2019', 92.60, '', 1, '2026-03-05 04:57:00', 0, NULL, 0, NULL, 1),
(37044, 28900, '2', 'TN State Board ', '', '', '2021', 91.53, '', 1, '2026-03-05 04:57:19', 0, NULL, 0, NULL, 1),
(37045, 28849, '4', 'University of Madras.', '', 'MCA ', '2025', 80.00, '', 1, '2026-03-05 04:59:19', 0, NULL, 0, NULL, 1),
(37046, 28849, '3', 'Shanmuga Industries Arts & Science College', '', 'B.sc computer science ', '2022', 81.00, '', 1, '2026-03-05 05:00:35', 0, NULL, 0, NULL, 1),
(37047, 28849, '2', 'Government school ', '', '', '2019', 59.00, '', 1, '2026-03-05 05:01:30', 0, NULL, 0, NULL, 1),
(37048, 28849, '1', 'Government school ', '', '', '2018', 58.00, '', 1, '2026-03-05 05:02:06', 1, '2026-03-05 05:02:30', 0, NULL, 0),
(37049, 28902, '3', 'Madras University ', '', 'B.com', '2022', 79.00, '', 1, '2026-03-05 05:35:10', 0, NULL, 0, NULL, 1),
(37050, 28901, '3', 'anna university', '', 'bachelor of engineering', '2025', 79.00, '', 1, '2026-03-05 05:35:33', 0, NULL, 0, NULL, 1),
(37051, 28903, '4', 'Annamalai', '', 'M. Com', '2023', 85.00, '', 1, '2026-03-05 05:44:32', 0, NULL, 0, NULL, 1),
(37052, 28904, '4', 'Hindustan University ', '', 'MBA', '2026', 8.50, '', 1, '2026-03-05 06:41:44', 0, NULL, 0, NULL, 1),
(37053, 28905, '3', 'Anna University ', '', 'BE', '2020', 6.90, '', 1, '2026-03-05 07:11:05', 0, NULL, 0, NULL, 1),
(37054, 28906, '3', 'Anna university ', '', 'B.E', '2025', 81.00, '', 1, '2026-03-05 08:23:37', 0, NULL, 0, NULL, 1),
(37055, 28906, '2', 'State board of tamil nadu', '', '', '2021', 94.00, '', 1, '2026-03-05 08:24:05', 0, NULL, 0, NULL, 1),
(37056, 28906, '1', 'State board of tamil nadu', '', '', '2019', 93.80, '', 1, '2026-03-05 08:24:28', 0, NULL, 0, NULL, 1),
(37057, 28907, '3', 'Anna University ', '', 'BE', '2009', 62.00, '', 1, '2026-03-05 09:15:49', 0, NULL, 0, NULL, 1),
(37058, 28908, '1', 'not complete', '', '', '2026', 62.00, '', 1, '2026-03-05 09:25:03', 0, NULL, 0, NULL, 1),
(37059, 28909, '3', 'Mari university', '', 'B. A business Economic', '2025', 49.00, '', 1, '2026-03-05 09:42:20', 0, NULL, 0, NULL, 1),
(37060, 28910, '3', 'saveetha engineering college', '', 'be ece', '2025', 79.00, '', 1, '2026-03-05 09:46:55', 0, NULL, 0, NULL, 1),
(37061, 28912, '3', 'Anna university ', '', 'B.tech', '2024', 6.50, '', 1, '2026-03-05 12:56:49', 0, NULL, 0, NULL, 1),
(37062, 28915, '3', 'Anna University ', '', 'Btech It', '2022', 80.00, '', 1, '2026-03-05 03:54:36', 0, NULL, 0, NULL, 1),
(37063, 28915, '2', 'Matriculation ', '', '', '2018', 77.00, '', 1, '2026-03-05 03:55:27', 0, NULL, 0, NULL, 1),
(37064, 28916, '3', 'Anna University ', '', 'BE CSE', '2026', 84.70, '', 1, '2026-03-05 04:20:50', 0, NULL, 0, NULL, 1),
(37065, 28918, '3', 'Rathinam college of arts and science ', '', 'BSC', '2025', 70.00, '', 1, '2026-03-05 04:48:18', 0, NULL, 0, NULL, 1),
(37066, 28918, '2', 'State board ', '', '', '2021', 89.40, '', 1, '2026-03-05 04:48:40', 0, NULL, 0, NULL, 1),
(37067, 28919, '3', 'periyar university', '', 'ba.english literature', '2022', 69.00, '', 1, '2026-03-05 05:04:22', 0, NULL, 0, NULL, 1),
(37068, 28922, '3', 'Manonmaniam Sundaranar University ', '', 'B.Sc Computer Science ', '2025', 6.17, '', 1, '2026-03-06 03:14:18', 0, NULL, 0, NULL, 1),
(37069, 28923, '3', 'Mount Zion college of engineering and Technology', '', 'BE', '2025', 77.00, '', 1, '2026-03-06 04:42:12', 0, NULL, 0, NULL, 1),
(37070, 28923, '2', 'De Britto higher secondary school', '', '', '2021', 80.00, '', 1, '2026-03-06 04:43:23', 0, NULL, 0, NULL, 1),
(37071, 28921, '4', 'Bharathidasan unniversity ', '', 'M.sc(computer science)', '2025', 71.00, '', 1, '2026-03-06 04:45:22', 0, NULL, 0, NULL, 1),
(37072, 28920, '3', 'Gnanamani college of technology ', '', 'Beacher of technology ', '2025', 70.00, '', 1, '2026-03-06 05:32:30', 1, '2026-03-06 05:33:11', 0, NULL, 1),
(37073, 28920, '1', 'Tagore Metrics higher Secondary school ', '', '', '2019', 69.00, '', 1, '2026-03-06 05:34:32', 0, NULL, 0, NULL, 1),
(37074, 28920, '2', 'Government boys\' High secondary school ', '', '', '2021', 69.00, '', 1, '2026-03-06 05:35:23', 0, NULL, 0, NULL, 1),
(37075, 28925, '3', 'Bharathidasan university ', '', 'BSc computer science', '2024', 81.00, '', 1, '2026-03-06 05:38:40', 0, NULL, 0, NULL, 1),
(37076, 28926, '4', 'Anna University ', '', 'MBA', '2023', 71.20, '', 1, '2026-03-06 06:01:53', 0, NULL, 0, NULL, 1),
(37077, 28927, '3', 'Thiruvallur university ', '', 'BA political science ', '2022', 65.00, '', 1, '2026-03-06 06:15:20', 0, NULL, 0, NULL, 1),
(37078, 28928, '3', 'Thiruvalluvar University ', '', 'BCA ', '2022', 76.00, '', 1, '2026-03-06 06:16:50', 0, NULL, 0, NULL, 1),
(37079, 28759, '3', 'Meenakshi College for Women', '', 'Bcom Corporate Secretaryship', '2025', 7.80, '', 1, '2026-03-06 06:29:41', 0, NULL, 0, NULL, 1),
(37080, 28872, '3', 'Pondicherry University ', '', 'B.tech(CSE)', '2025', 78.00, '', 1, '2026-03-06 07:30:23', 0, NULL, 0, NULL, 1),
(37081, 28872, '2', 'Tamil nadu state board', '', '', '2021', 90.00, '', 1, '2026-03-06 07:30:57', 0, NULL, 0, NULL, 1),
(37082, 28872, '1', 'Tamilnadu state board ', '', '', '2019', 84.00, '', 1, '2026-03-06 07:31:20', 0, NULL, 0, NULL, 1),
(37083, 28929, '3', 'Tagore college art\' science ', '', 'Bcom ', '2023', 90.00, '', 1, '2026-03-06 07:45:44', 0, NULL, 0, NULL, 1),
(37084, 28931, '3', 'University ', '', 'BE', '2025', 7.90, '', 1, '2026-03-06 11:51:06', 0, NULL, 0, NULL, 1),
(37085, 28932, '3', 'Sri Sai Ram institute of technology ', '', 'B.tech', '2025', 77.00, '', 1, '2026-03-06 04:07:08', 0, NULL, 0, NULL, 1),
(37086, 28933, '3', 'Anna University ', '', 'B.E CSE', '2026', 85.00, '', 1, '2026-03-07 12:59:46', 0, NULL, 0, NULL, 1),
(37087, 28934, '3', 'SRM UNIVERSITY ', '', 'B.com ', '2024', 92.00, '', 1, '2026-03-07 02:31:30', 0, NULL, 0, NULL, 1),
(37088, 28936, '1', 'Board', '', '', '2011', 40.00, '', 1, '2026-03-07 05:11:24', 0, NULL, 0, NULL, 1),
(37089, 28937, '3', 'University of Madras ', '', 'Bca', '2022', 83.00, '', 1, '2026-03-07 05:33:45', 0, NULL, 0, NULL, 1),
(37090, 26447, '3', 'bangalore universit', '', 'bcom', '2011', 90.00, '', 162, '2026-03-07 11:36:38', 0, NULL, 0, NULL, 1),
(37091, 28941, '3', 'anna university', '', 'b.tech', '2025', 67.00, '', 1, '2026-03-08 11:23:31', 0, NULL, 0, NULL, 1),
(37092, 28943, '4', 'periyar university salem', '', 'mca', '2025', 8.10, '', 1, '2026-03-08 01:59:26', 0, NULL, 0, NULL, 1),
(37093, 28943, '3', 'thiruvalluvar university ', '', 'bsc', '2023', 8.80, '', 1, '2026-03-08 02:00:13', 0, NULL, 0, NULL, 1),
(37094, 28943, '2', 'state board', '', '', '2020', 6.00, '', 1, '2026-03-08 02:00:44', 0, NULL, 0, NULL, 1),
(37095, 28943, '1', 'state board', '', '', '2018', 8.40, '', 1, '2026-03-08 02:01:28', 0, NULL, 0, NULL, 1),
(37096, 28946, '3', 'Anna University ', '', 'BE CSE ', '2025', 80.00, '', 1, '2026-03-09 05:09:00', 0, NULL, 0, NULL, 1),
(37097, 28945, '3', 'K. C. S kasi nadar of arts and science ', '', 'BCA ', '2025', 66.00, '', 1, '2026-03-09 05:19:15', 0, NULL, 0, NULL, 1),
(37098, 28944, '3', 'Anna University ', '', 'B.tech', '2023', 8.50, '', 1, '2026-03-09 06:14:52', 0, NULL, 0, NULL, 1),
(37099, 28944, '1', 'Saradha Vidhyavaan Matric hr sec school ', '', '', '2017', 89.00, '', 1, '2026-03-09 06:18:26', 0, NULL, 0, NULL, 1),
(37100, 28944, '2', 'Sahayarani girls hr sec school ', '', '', '2019', 64.00, '', 1, '2026-03-09 06:18:57', 0, NULL, 0, NULL, 1),
(37101, 28947, '3', 'Anna university', '', 'B. E', '2025', 7.60, '', 1, '2026-03-09 06:25:10', 0, NULL, 0, NULL, 1),
(37102, 28947, '2', 'Tamil nadu state board', '', '', '2021', 86.40, '', 1, '2026-03-09 06:25:39', 0, NULL, 0, NULL, 1),
(37103, 28948, '3', 'anna university', '', 'b e', '2025', 7.60, '', 1, '2026-03-09 06:26:10', 0, NULL, 0, NULL, 1),
(37104, 28935, '4', 'Jamal mohammed college ', '', 'Msc computer science ', '2023', 83.00, '', 1, '2026-03-09 06:33:24', 0, NULL, 0, NULL, 1),
(37105, 28935, '3', 'Jamal mohammed college ', '', 'BSc computer science ', '2021', 84.00, '', 1, '2026-03-09 06:33:59', 0, NULL, 0, NULL, 1),
(37106, 28949, '3', 'St.peters', '', 'B.com', '2022', 95.00, '', 1, '2026-03-09 08:43:26', 0, NULL, 0, NULL, 1),
(37107, 28950, '5', 'Medical education ', '', 'Pharmacy ', '2022', 47.00, '', 1, '2026-03-09 10:18:00', 0, NULL, 0, NULL, 1),
(37108, 28951, '3', 'Madaras university ', '', 'B.com ism', '2023', 54.00, '', 1, '2026-03-09 10:43:12', 0, NULL, 0, NULL, 1),
(37109, 28942, '3', 'saveetha engineering college', '', 'be ece', '2025', 79.00, '', 1, '2026-03-09 12:22:46', 0, NULL, 0, NULL, 1),
(37110, 28957, '1', 'State Board', '', '', '2018', 81.00, '', 1, '2026-03-09 01:08:52', 0, NULL, 0, NULL, 1),
(37111, 28957, '2', 'State Board', '', '', '2020', 75.00, '', 1, '2026-03-09 01:09:41', 0, NULL, 0, NULL, 1),
(37112, 28957, '3', 'University of Madras', '', 'b.a.defence', '2023', 8.10, '', 1, '2026-03-09 01:10:42', 0, NULL, 0, NULL, 1),
(37113, 28958, '3', 'Aastra university ', '', 'B.com', '2020', 6.90, '', 1, '2026-03-09 01:14:23', 0, NULL, 0, NULL, 1),
(37114, 28953, '4', 'sathyabama university', '', 'mba', '2024', 9.20, '', 1, '2026-03-09 01:40:53', 0, NULL, 0, NULL, 1),
(37115, 28960, '3', 'arunai engineering college', '', 'be-cse', '2025', 84.00, '', 1, '2026-03-09 02:43:07', 0, NULL, 0, NULL, 1),
(37116, 28961, '4', 'Alagappa University', '', 'Master of Business Administration', '2024', 82.70, '', 1, '2026-03-09 03:37:00', 0, NULL, 0, NULL, 1),
(37117, 28961, '3', 'Periyar Maniammai Univey', '', 'Bachelor of Commerce', '2022', 82.00, '', 1, '2026-03-09 03:37:32', 0, NULL, 0, NULL, 1),
(37118, 28954, '3', 'kalasalingam university', '', 'b.ca', '2025', 72.00, '', 1, '2026-03-10 04:41:41', 0, NULL, 0, NULL, 1),
(37119, 28961, '4', 'Alagappa University', '', 'Master of Businees Administration in (Logistics &S', '2024', 69.60, '', 1, '2026-03-10 05:05:46', 0, NULL, 0, NULL, 1),
(37120, 28964, '1', 'Govt High secondary school ', '', '', '2005', 70.00, '', 1, '2026-03-10 05:12:51', 0, NULL, 0, NULL, 1),
(37121, 28965, '3', 'madras university', '', 'b.com', '2019', 70.00, '', 1, '2026-03-10 05:30:32', 0, NULL, 0, NULL, 1),
(37122, 28967, '3', 'Madras University ', '', 'BCA', '2022', 75.00, '', 1, '2026-03-10 06:36:58', 0, NULL, 0, NULL, 1),
(37123, 28969, '3', 'Thiruvalluvar university ', '', 'B.Sc mathematics ', '2024', 69.00, '', 1, '2026-03-10 06:52:27', 0, NULL, 0, NULL, 1),
(37124, 28971, '3', 'SASTRA ', '', 'BCOM (CA)', '2022', 7.50, '', 1, '2026-03-10 07:22:56', 0, NULL, 0, NULL, 1),
(37125, 28970, '3', 'annamalai university', '', 'b.com.computer application', '2025', 75.00, '', 1, '2026-03-10 07:29:31', 0, NULL, 0, NULL, 1),
(37126, 28972, '1', 'state board', '', '', '2014', 80.20, '', 1, '2026-03-10 07:36:48', 0, NULL, 0, NULL, 1),
(37127, 28972, '2', 'state board', '', '', '2016', 69.00, '', 1, '2026-03-10 07:38:10', 0, NULL, 0, NULL, 1),
(37128, 28972, '3', 'madras university', '', 'b.sc', '2019', 70.00, '', 1, '2026-03-10 07:39:31', 0, NULL, 0, NULL, 1),
(37129, 28974, '4', 'gandhigram rural university', '', 'ma development administration', '2026', 75.00, '', 1, '2026-03-10 08:15:44', 0, NULL, 0, NULL, 1),
(37130, 28976, '5', 'University ', '', 'ECE', '2022', 63.00, '', 1, '2026-03-10 09:27:55', 0, NULL, 0, NULL, 1),
(37131, 28975, '3', 'Noorul islam Centre For Higher Education ', '', 'B.Tech - Information Technology', '2024', 7.67, '', 1, '2026-03-10 09:31:25', 0, NULL, 0, NULL, 1),
(37132, 28975, '2', 'St.Joseph\'s Matric Higher Secondary School ', '', '', '2019', 75.00, '', 1, '2026-03-10 09:32:13', 0, NULL, 0, NULL, 1),
(37133, 28975, '1', 'Everest Matric Higher Secondary School ', '', '', '2017', 76.00, '', 1, '2026-03-10 09:33:04', 0, NULL, 0, NULL, 1),
(37134, 28977, '3', 'Madras University ', '', 'BBA', '2024', 68.00, '', 1, '2026-03-10 10:21:34', 0, NULL, 0, NULL, 1),
(37135, 28978, '4', 'kKC institute of pg studies ', '', 'Seshachala digree college ', '2018', 65.00, '', 1, '2026-03-10 10:23:01', 0, NULL, 0, NULL, 1),
(37136, 28962, '3', 'Bharathidasan ', '', 'B.com', '2004', 60.00, '', 1, '2026-03-10 10:27:01', 0, NULL, 0, NULL, 1),
(37137, 28962, '4', 'Annamalai University ', '', 'M.F.S', '2006', 72.00, '', 1, '2026-03-10 10:27:38', 0, NULL, 0, NULL, 1),
(37138, 28981, '3', 'Madras university', '', 'B.com (CS)', '2019', 75.00, '', 1, '2026-03-10 11:21:00', 0, NULL, 0, NULL, 1),
(37139, 28982, '2', 'State Board', '', '', '2019', 65.00, '', 1, '2026-03-10 12:24:31', 0, NULL, 0, NULL, 1),
(37140, 16810, '3', 'Madras University ', '', 'BCA', '2022', 89.00, '', 1, '2026-03-10 04:02:12', 0, NULL, 0, NULL, 1),
(37141, 28984, '3', 'madurai kamaraj University ', '', 'BSC IT', '2025', 70.00, '', 1, '2026-03-10 04:29:07', 0, NULL, 0, NULL, 1),
(37142, 28986, '3', 'Anna University ', '', 'B. Tech', '2025', 81.00, '', 1, '2026-03-10 07:01:20', 0, NULL, 0, NULL, 1),
(37143, 28987, '3', 'Anna University', '', '', '2024', 80.00, '', 1, '2026-03-11 01:40:49', 0, NULL, 0, NULL, 1),
(37144, 28988, '3', 'anna University ', '', 'be', '2015', 65.00, '', 1, '2026-03-11 04:36:05', 0, NULL, 0, NULL, 1),
(37145, 28988, '2', 'metriculation', '', '', '2011', 68.00, '', 1, '2026-03-11 04:36:48', 0, NULL, 0, NULL, 1),
(37146, 28988, '1', 'metriculation', '', '', '2009', 67.00, '', 1, '2026-03-11 04:37:40', 0, NULL, 0, NULL, 1),
(37147, 28991, '3', 'Bharathi Dhasan university ', '', 'Bsc, chemistry ', '2024', 87.00, '', 1, '2026-03-11 05:49:03', 0, NULL, 0, NULL, 1),
(37148, 28993, '4', 'University of Madras ', '', 'B A', '2023', 60.00, '', 1, '2026-03-11 06:08:43', 0, NULL, 0, NULL, 1),
(37149, 28992, '3', 'madras university', '', 'b.com', '2022', 80.00, '', 1, '2026-03-11 06:10:58', 0, NULL, 0, NULL, 1),
(37150, 28995, '3', 'University of Madras ', '', 'Bcom', '2022', 70.00, '', 1, '2026-03-11 06:17:02', 0, NULL, 0, NULL, 1),
(37151, 28996, '5', 'Anna university ', '', '', '2017', 75.00, '', 1, '2026-03-11 06:35:14', 0, NULL, 0, NULL, 1),
(37152, 28994, '1', 'Madras university ', '', '', '2024', 80.00, '', 1, '2026-03-11 06:39:34', 1, '2026-03-11 06:40:51', 0, NULL, 0),
(37153, 28994, '3', 'Madras university ', '', 'B.com', '2024', 80.00, '', 1, '2026-03-11 06:40:36', 0, NULL, 0, NULL, 1),
(37154, 28998, '3', 'Barasathithasan university ', '', 'BBA ', '2025', 68.00, '', 1, '2026-03-11 07:15:08', 0, NULL, 0, NULL, 1),
(37155, 29001, '4', 'Alagappa university ', '', 'MBA ', '2019', 73.00, '', 1, '2026-03-11 07:21:01', 0, NULL, 0, NULL, 1),
(37156, 29000, '3', 'Bharathidasan University ', '', 'BBA', '2025', 75.00, '', 1, '2026-03-11 07:22:33', 0, NULL, 0, NULL, 1),
(37157, 28999, '3', 'Bharathidasan university ', '', 'Bsc', '2023', 75.00, '', 1, '2026-03-11 07:23:18', 0, NULL, 0, NULL, 1),
(37158, 29005, '3', 'madras school of social work', '', 'bsc psychology', '2022', 70.00, '', 1, '2026-03-11 10:34:46', 0, NULL, 0, NULL, 1),
(37159, 29005, '4', 'university of madras', '', 'msc human resource development psychology', '2024', 70.00, '', 1, '2026-03-11 10:35:40', 0, NULL, 0, NULL, 1),
(37160, 29008, '3', 'Anna University ', '', 'BE CSE', '2024', 73.50, '', 1, '2026-03-11 01:09:15', 0, NULL, 0, NULL, 1),
(37161, 29012, '3', 'Anna University ', '', 'B Tech IT', '2025', 81.50, '', 1, '2026-03-11 03:33:26', 0, NULL, 0, NULL, 1),
(37162, 29012, '2', 'David Matriculation Higher secondary school ', '', '', '2021', 91.18, '', 1, '2026-03-11 03:33:50', 0, NULL, 0, NULL, 1),
(37163, 29012, '1', 'St Francis Savio Matriculation Higher Secondary School ', '', '', '2019', 88.40, '', 1, '2026-03-11 03:34:24', 0, NULL, 0, NULL, 1),
(37164, 29016, '3', 'Annamalai University ', '', 'Electronic and communication engineering ', '2025', 85.00, '', 1, '2026-03-12 02:56:55', 0, NULL, 0, NULL, 1),
(37165, 29017, '4', 'annamalai university', '', 'be', '2025', 7.08, '', 1, '2026-03-12 03:04:26', 0, NULL, 0, NULL, 1),
(37166, 29018, '3', 'Karpagam College of Engineering ', '', 'B.E.-(Electronic and Telecommunications Engineerin', '2023', 83.00, '', 1, '2026-03-12 04:21:31', 1, '2026-03-12 04:23:40', 0, NULL, 0),
(37167, 29018, '2', 'Meenakshi Sundaranar Sengunthar Higher Secondary School ', '', '', '2019', 66.00, '', 1, '2026-03-12 04:23:20', 1, '2026-03-12 04:23:37', 0, NULL, 0),
(37168, 29018, '1', 'Meenakshi Sundaranar Sengunthar Higher Secondary School ', '', '', '2017', 80.00, '', 1, '2026-03-12 04:24:01', 0, NULL, 0, NULL, 1),
(37169, 29018, '2', 'Meenakshi Sundaranar Sengunthar Higher Secondary School ', '', '', '2019', 66.00, '', 1, '2026-03-12 04:24:20', 0, NULL, 0, NULL, 1),
(37170, 29018, '3', 'Karpagam College of Engineering ', '', 'B.E.-(Electronic and Telecommunications Engineerin', '2023', 83.00, '', 1, '2026-03-12 04:25:05', 0, NULL, 0, NULL, 1),
(37171, 29019, '3', 'Madras University ', '', 'B.com', '2025', 61.00, '', 1, '2026-03-12 05:03:08', 0, NULL, 0, NULL, 1),
(37172, 29002, '3', 'University ', '', 'B. Com', '2025', 75.00, '', 1, '2026-03-12 05:25:21', 0, NULL, 0, NULL, 1),
(37173, 29020, '3', 'Mailam Engineering College ', '', 'B.E', '2025', 86.30, '', 1, '2026-03-12 05:34:20', 1, '2026-03-12 05:35:50', 0, NULL, 1),
(37174, 29020, '2', 'National Higher secondary school ', '', '', '2021', 88.50, '', 1, '2026-03-12 05:34:55', 0, NULL, 0, NULL, 1),
(37175, 29020, '1', 'Government High school ', '', '', '2019', 79.80, '', 1, '2026-03-12 05:35:25', 0, NULL, 0, NULL, 1),
(37176, 29021, '3', 'dr. mgr university', '', 'b.com', '2023', 62.00, '', 1, '2026-03-12 05:52:12', 0, NULL, 0, NULL, 1),
(37177, 29021, '1', 'vivekananda vidyalaya ', '', '', '2018', 67.00, '', 1, '2026-03-12 05:53:08', 0, NULL, 0, NULL, 1),
(37178, 29022, '3', 'Bharathiyar university ', '', 'BBA ', '2023', 83.00, '', 1, '2026-03-12 05:53:16', 0, NULL, 0, NULL, 1),
(37179, 29022, '2', 'Bharathi dhasanar matric hr sec school ', '', '', '2020', 70.00, '', 1, '2026-03-12 05:53:48', 0, NULL, 0, NULL, 1),
(37180, 29021, '2', 'bharathidhasanar matric higher secondary ', '', '', '2020', 65.00, '', 1, '2026-03-12 05:53:58', 0, NULL, 0, NULL, 1),
(37181, 29022, '1', 'Bharathi dhasanar matric hr sec school ', '', '', '2018', 64.00, '', 1, '2026-03-12 05:54:03', 0, NULL, 0, NULL, 1),
(37182, 29024, '4', 'Alagappa university ', '', 'MCA', '2026', 78.00, '', 1, '2026-03-12 06:54:50', 0, NULL, 0, NULL, 1),
(37183, 29023, '3', 'SRM University', '', 'BSC.Renal Dialysis Technologist', '2020', 63.00, '', 1, '2026-03-12 06:57:47', 0, NULL, 0, NULL, 1),
(37184, 29027, '1', 'Govt hr sec school ', '', '', '2017', 89.00, '', 1, '2026-03-12 08:45:25', 0, NULL, 0, NULL, 1),
(37185, 29027, '2', 'Jkkn hr sec school ', '', '', '2019', 59.00, '', 1, '2026-03-12 08:45:47', 0, NULL, 0, NULL, 1),
(37186, 29027, '3', 'Ksr iet', '', 'Be cse', '2023', 7.89, '', 1, '2026-03-12 08:46:12', 0, NULL, 0, NULL, 1),
(37187, 29026, '4', 'sathyabama University ', '', 'MBA', '2026', 74.00, '', 1, '2026-03-12 08:50:39', 0, NULL, 0, NULL, 1),
(37188, 29026, '3', 'Madras University ', '', 'B.com ISM ', '2024', 72.00, '', 1, '2026-03-12 08:51:26', 0, NULL, 0, NULL, 1),
(37189, 29028, '3', 'board', '', 'b.com', '2019', 70.00, '', 1, '2026-03-12 09:30:55', 0, NULL, 0, NULL, 1),
(37190, 29029, '3', 'medras univer ', '', 'b com', '2019', 70.00, '', 1, '2026-03-12 09:44:33', 0, NULL, 0, NULL, 1),
(37191, 29031, '4', 'saveetha university', '', 'mba', '2026', 72.00, '', 1, '2026-03-12 11:42:36', 0, NULL, 0, NULL, 1),
(37192, 29031, '3', 'vels university', '', 'bca', '2024', 69.00, '', 1, '2026-03-12 11:43:08', 0, NULL, 0, NULL, 1),
(37193, 29032, '3', 'don bosco art and science madras university', '', 'bsc visual communication', '2026', 70.00, '', 1, '2026-03-12 12:13:12', 0, NULL, 0, NULL, 1),
(37194, 29033, '3', 'University of Madras Arts and science college ', '', 'B.com', '2015', 72.00, '', 1, '2026-03-12 12:35:57', 1, '2026-03-12 12:41:27', 0, NULL, 1),
(37195, 29033, '1', 'Tamilnadu High secondary school Chennai ', '', '', '2013', 68.00, '', 1, '2026-03-12 12:40:40', 0, NULL, 0, NULL, 1),
(37196, 29015, '3', 'Agni college of technology ', '', 'B.E. Mechanical and automation Engineering ', '2024', 83.00, '', 1, '2026-03-12 01:13:36', 0, NULL, 0, NULL, 1),
(37197, 29015, '2', 'Ramakrishna matric higher secondary school ', '', '', '2020', 70.00, '', 1, '2026-03-12 01:14:12', 0, NULL, 0, NULL, 1),
(37198, 29015, '1', 'Ramakrishna matric higher secondary school ', '', '', '2018', 92.00, '', 1, '2026-03-12 01:14:42', 0, NULL, 0, NULL, 1),
(37199, 29035, '3', 'Madras', '', 'Bsc computer science ', '2017', 75.00, '', 1, '2026-03-12 04:47:10', 0, NULL, 0, NULL, 1),
(37200, 29035, '2', 'Board', '', '', '2014', 72.00, '', 1, '2026-03-12 04:47:46', 1, '2026-03-12 04:48:10', 0, NULL, 1),
(37201, 29035, '1', 'Board', '', '', '2012', 82.00, '', 1, '2026-03-12 04:50:21', 0, NULL, 0, NULL, 1),
(37202, 29013, '3', 'ssm institute of engineering and technology', '', 'b.e/electrical and electronics engineering', '2025', 78.00, '', 1, '2026-03-12 06:23:56', 0, NULL, 0, NULL, 1),
(37203, 29037, '1', 'State Board', '', '', '2015', 65.00, '', 1, '2026-03-13 05:50:33', 0, NULL, 0, NULL, 1),
(37204, 29037, '2', 'University', '', '', '2018', 75.00, '', 1, '2026-03-13 05:56:01', 0, NULL, 0, NULL, 1),
(37205, 29038, '3', 'University of madras', '', 'B.com (general)', '2024', 75.00, '', 1, '2026-03-13 06:28:36', 0, NULL, 0, NULL, 1),
(37206, 29039, '3', 'University of Madras', '', 'B.com (General)', '2024', 69.00, '', 1, '2026-03-13 06:29:37', 0, NULL, 0, NULL, 1),
(37207, 29040, '2', 'Pre university education ', '', '', '2014', 56.00, '', 1, '2026-03-13 06:42:57', 0, NULL, 0, NULL, 1),
(37208, 29041, '3', 'ST.JOSEPH COLLEGE OF ENGINEERING ', '', 'B.E', '2024', 6.20, '', 1, '2026-03-13 06:48:51', 0, NULL, 0, NULL, 1),
(37209, 29042, '3', 'Madras University ', '', 'UG', '2018', 80.00, '', 1, '2026-03-13 08:11:47', 0, NULL, 0, NULL, 1),
(37210, 29036, '2', 'English medium ', '', '', '2019', 82.00, '', 1, '2026-03-13 10:52:06', 0, NULL, 0, NULL, 1),
(37211, 29044, '4', 'Bharathidasan university ', '', 'Master of business administration ', '2025', 72.51, '', 1, '2026-03-13 03:29:15', 0, NULL, 0, NULL, 1),
(37212, 29025, '1', 'board', '', 'MBA HR and finance ', '2018', 73.80, '', 1, '2026-03-13 05:06:33', 1, '2026-03-13 05:07:29', 0, NULL, 0),
(37213, 29025, '1', 'board', '', '', '2018', 73.80, '', 1, '2026-03-13 05:08:00', 0, NULL, 0, NULL, 1),
(37214, 29025, '2', 'board ', '', '', '2020', 61.00, '', 1, '2026-03-13 05:08:32', 0, NULL, 0, NULL, 1),
(37215, 29025, '3', 'vels University ', '', 'b.com accounts and finance ', '2023', 67.00, '', 1, '2026-03-13 05:09:19', 0, NULL, 0, NULL, 1),
(37216, 29025, '4', 'Anna university ', '', 'MBA HR and finance ', '2025', 80.00, '', 1, '2026-03-13 05:09:49', 0, NULL, 0, NULL, 1),
(37217, 29046, '3', 'PRIST UNIVERSITY ', '', 'B Tech Computer science and engineering ', '2024', 7.80, '', 1, '2026-03-14 05:04:36', 0, NULL, 0, NULL, 1),
(37218, 29046, '2', 'HSC', '', '', '2019', 56.70, '', 1, '2026-03-14 05:05:22', 0, NULL, 0, NULL, 1),
(37219, 29046, '1', 'SSLC', '', '', '2018', 79.60, '', 1, '2026-03-14 05:05:39', 0, NULL, 0, NULL, 1),
(37220, 29047, '3', 'Alvas institute of engineering and technology ', '', '', '2025', 77.00, '', 1, '2026-03-14 05:15:02', 0, NULL, 0, NULL, 1),
(37221, 29048, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 78.00, '', 1, '2026-03-14 05:35:29', 0, NULL, 0, NULL, 1),
(37222, 29051, '4', 'Gandhigram rural deemed University ', '', 'MA development administration ', '2025', 60.00, '', 1, '2026-03-14 05:43:20', 0, NULL, 0, NULL, 1),
(37223, 29050, '3', 'Madras university', '', 'BBA', '2025', 75.00, '', 1, '2026-03-14 05:43:25', 0, NULL, 0, NULL, 1),
(37224, 29053, '3', 'Anna University ', '', 'B.E Computer Science ', '2024', 79.00, '', 1, '2026-03-14 01:57:27', 0, NULL, 0, NULL, 1),
(37225, 29056, '3', 'chennai institute of technology', '', 'b.tech', '2026', 8.00, '', 1, '2026-03-14 06:51:55', 0, NULL, 0, NULL, 1),
(37226, 29057, '3', 'saveetha engineering college', '', 'be', '2025', 66.50, '', 1, '2026-03-15 06:51:22', 0, NULL, 0, NULL, 1),
(37227, 29060, '3', 'madaras university ', '', 'B.Com', '2015', 6.50, '', 1, '2026-03-16 05:34:31', 0, NULL, 0, NULL, 1),
(37228, 29061, '3', 'Manonmaniam Sundaranar University ', '', 'BA History Tamil Medium ', '2022', 65.00, '', 1, '2026-03-16 05:51:55', 0, NULL, 0, NULL, 1),
(37229, 29063, '3', 'Jawaharlal Nehru technological University kakinada ', '', 'B. Tech ', '2025', 69.50, '', 1, '2026-03-16 06:09:22', 0, NULL, 0, NULL, 1),
(37230, 29062, '3', 'Jawaharlal Nehru technological University', '', 'Btech', '2025', 7.33, '', 1, '2026-03-16 06:12:33', 0, NULL, 0, NULL, 1),
(37231, 29064, '3', 'Jawaharlal Nehru University', '', 'Bachelors of Technology', '2025', 70.00, '', 1, '2026-03-16 06:17:30', 0, NULL, 0, NULL, 1),
(37232, 29065, '3', 'tiruvalluvar University ', '', 'bsc cs ', '2020', 80.00, '', 1, '2026-03-16 06:23:47', 0, NULL, 0, NULL, 1),
(37233, 29066, '3', 'ANNA UNIVERSITY ', '', 'BE(CSE)', '2026', 84.20, '', 1, '2026-03-16 07:26:30', 0, NULL, 0, NULL, 1),
(37234, 29067, '3', 'Anna universoty', '', 'BE', '2026', 8.02, '', 1, '2026-03-16 07:33:33', 0, NULL, 0, NULL, 1),
(37235, 29068, '3', 'Madras University ', '', 'B.com(General)', '2020', 72.00, '', 1, '2026-03-16 09:15:39', 0, NULL, 0, NULL, 1),
(37236, 29069, '3', 'Madras University ', '', 'B com (CS)', '2017', 58.18, '', 1, '2026-03-16 09:21:02', 0, NULL, 0, NULL, 1),
(37237, 29071, '4', 'Bharathidasan ', '', 'MBA', '2024', 75.00, '', 1, '2026-03-16 10:10:08', 0, NULL, 0, NULL, 1),
(37238, 29071, '3', 'Bharathidasan university ', '', 'B.com', '2022', 79.00, '', 1, '2026-03-16 10:10:53', 0, NULL, 0, NULL, 1),
(37239, 29080, '1', 'state board of education tamil Nadu ', '', '', '2019', 71.80, '', 1, '2026-03-16 01:12:46', 1, '2026-03-16 01:14:47', 0, NULL, 1),
(37240, 29080, '2', 'State board of education tamil nadu ', '', '', '2021', 77.83, '', 1, '2026-03-16 01:13:31', 0, NULL, 0, NULL, 1),
(37241, 29080, '3', 'IFET College of Engineering (Anna university)', '', 'Bachelor in Computer Science and Engineering ', '2025', 61.00, '', 1, '2026-03-16 01:15:50', 0, NULL, 0, NULL, 1),
(37242, 29076, '1', 'University of Madras ', '', '', '2024', 84.00, '', 1, '2026-03-17 03:30:48', 0, NULL, 0, NULL, 1),
(37243, 29074, '3', 'sri ramanujar engineering college', '', 'bachalor of computer science and engineering', '2025', 77.52, '', 1, '2026-03-17 04:14:57', 1, '2026-03-17 04:16:17', 0, NULL, 1),
(37244, 29083, '3', 'Madras University ', '', 'BA economics ', '2024', 72.00, '', 1, '2026-03-17 05:04:59', 0, NULL, 0, NULL, 1),
(37245, 29082, '3', 'Madras University ', '', 'Bca', '2025', 77.00, '', 1, '2026-03-17 05:19:53', 0, NULL, 0, NULL, 1),
(37246, 29073, '5', 'Government polytechnic College coimbatore ', '', 'Diploma in mechanical Engineering ', '2024', 68.00, '', 1, '2026-03-17 05:36:49', 0, NULL, 0, NULL, 1),
(37247, 28275, '4', 'Periyar Maniammai University ', '', 'M.sc., Computer science ', '2024', 7.56, '', 1, '2026-03-17 05:36:51', 0, NULL, 0, NULL, 1),
(37248, 29084, '1', 'State board ', '', '', '2017', 85.00, '', 1, '2026-03-17 05:47:42', 0, NULL, 0, NULL, 1),
(37249, 29084, '2', 'State board ', '', '', '2019', 58.00, '', 1, '2026-03-17 05:48:06', 0, NULL, 0, NULL, 1),
(37250, 29087, '4', 'Bharathidasan University trichitapalli ', '', 'M.sc., Computer Science ', '2023', 82.11, '', 1, '2026-03-17 06:53:59', 0, NULL, 0, NULL, 1),
(37251, 29086, '3', 'University ', '', 'BBA ', '2023', 65.00, '', 1, '2026-03-17 07:01:29', 0, NULL, 0, NULL, 1),
(37252, 29089, '3', 'periyar university', '', 'B.sc. Mathmatics ', '2018', 80.00, '', 1, '2026-03-17 07:58:38', 0, NULL, 0, NULL, 1),
(37253, 29092, '5', 'DOTE', '', 'IT', '2012', 60.00, '', 1, '2026-03-17 08:30:39', 0, NULL, 0, NULL, 1),
(37254, 29094, '4', 'hinduatan institute of technology and science', '', 'mba', '2026', 67.00, '', 1, '2026-03-17 09:43:07', 0, NULL, 0, NULL, 1),
(37255, 29094, '3', 'bishop heber college', '', 'bba', '2023', 65.00, '', 1, '2026-03-17 09:43:56', 0, NULL, 0, NULL, 1),
(37256, 29093, '3', 'Angappa College of Arts and Science ', '', 'B COM IT', '2021', 64.50, '', 1, '2026-03-17 10:26:16', 0, NULL, 0, NULL, 1),
(37257, 29095, '3', 'Ethiraj College Madras University ', '', 'BA English Literature And Communication ', '2024', 50.00, '', 1, '2026-03-17 10:26:38', 0, NULL, 0, NULL, 1),
(37258, 29096, '3', 'University of madras', '', 'Bba', '2024', 80.00, '', 1, '2026-03-17 11:17:28', 0, NULL, 0, NULL, 1),
(37259, 29096, '2', 'State board', '', '', '2021', 78.00, '', 1, '2026-03-17 11:18:13', 0, NULL, 0, NULL, 1),
(37260, 29097, '4', 'Bharathidasan university ', '', 'MCA ', '2025', 79.00, '', 1, '2026-03-17 11:57:38', 0, NULL, 0, NULL, 1),
(37261, 29099, '3', 'Madras University ', '', 'BCA(computer application)', '2025', 80.00, '', 1, '2026-03-17 12:29:41', 0, NULL, 0, NULL, 1),
(37262, 29102, '3', 'jaya college of engineering and technology anna university', '', 'bachelor\'s of engineering ', '2025', 75.00, '', 1, '2026-03-17 01:30:03', 0, NULL, 0, NULL, 1),
(37263, 29101, '3', 'Anna University ', '', 'B.E.,', '2025', 7.98, '', 1, '2026-03-17 02:05:22', 0, NULL, 0, NULL, 1),
(37264, 29098, '4', 'Periyar Maniammai Institute of Science and Technology ', '', 'Master Of Computer Application ', '2025', 80.00, '', 1, '2026-03-17 03:10:43', 1, '2026-03-17 03:14:17', 0, NULL, 1),
(37265, 29098, '3', 'Periyar Maniammai Institute of Science and Technology ', '', 'BCA', '2023', 70.00, '', 1, '2026-03-17 03:13:46', 0, NULL, 0, NULL, 1),
(37266, 29098, '2', 'Sri Srinivasa Rao Higher Secondary school ', '', '', '2020', 52.00, '', 1, '2026-03-17 03:15:40', 1, '2026-03-17 03:16:40', 0, NULL, 1),
(37267, 29098, '1', 'Sri Srinivasa Rao Higher Secondary school ', '', '', '2018', 62.00, '', 1, '2026-03-17 03:17:22', 0, NULL, 0, NULL, 1),
(37268, 29107, '3', 'karunya institute of technology and science', '', 'b.tech cse', '2025', 59.00, '', 1, '2026-03-18 04:34:36', 0, NULL, 0, NULL, 1),
(37269, 29105, '3', 'karunya university', '', 'b.tech', '2025', 54.00, '', 1, '2026-03-18 04:40:36', 0, NULL, 0, NULL, 1),
(37270, 29108, '3', 'North East Frontier Technical University ', '', 'BBA', '2021', 60.00, '', 1, '2026-03-18 05:07:04', 0, NULL, 0, NULL, 1),
(37271, 29110, '3', 'Anna university ', '', 'Bachelor of computer science and engineering ', '2023', 8.51, '', 1, '2026-03-18 05:16:56', 0, NULL, 0, NULL, 1),
(37272, 29109, '3', 'Manomaniam sundarnar university', '', '', '2022', 80.00, '', 1, '2026-03-18 05:17:20', 0, NULL, 0, NULL, 1),
(37273, 29109, '1', 'Government higher secondary school', '', '', '2017', 65.00, '', 1, '2026-03-18 05:18:16', 1, '2026-03-18 05:18:57', 0, NULL, 0),
(37274, 29109, '2', 'Government higher secondary school', '', '', '2019', 55.00, '', 1, '2026-03-18 05:18:47', 1, '2026-03-18 05:19:02', 0, NULL, 0),
(37275, 29113, '3', 'Anna University', '', 'B. E', '2025', 82.00, '', 1, '2026-03-18 05:24:44', 0, NULL, 0, NULL, 1),
(37276, 29114, '3', 'Anna University ', '', 'B.E', '2025', 81.00, '', 1, '2026-03-18 05:26:06', 0, NULL, 0, NULL, 1),
(37277, 29115, '3', 'Anna university ', '', 'B.E', '2025', 79.00, '', 1, '2026-03-18 05:26:06', 0, NULL, 0, NULL, 1),
(37278, 29112, '4', 'University of Madras ', '', '', '2026', 75.00, '', 1, '2026-03-18 05:27:27', 0, NULL, 0, NULL, 1),
(37279, 29111, '4', 'University of madras', '', 'M. Com', '2025', 79.00, '', 1, '2026-03-18 05:27:47', 0, NULL, 0, NULL, 1),
(37280, 29111, '3', 'University of madras', '', 'B. Com ( cs) ', '2023', 83.00, '', 1, '2026-03-18 05:28:21', 0, NULL, 0, NULL, 1),
(37281, 29111, '2', 'State Board', '', '', '2020', 64.00, '', 1, '2026-03-18 05:29:00', 0, NULL, 0, NULL, 1),
(37282, 29112, '3', 'University of Madras ', '', 'B.com(cs)', '2023', 89.00, '', 1, '2026-03-18 05:29:15', 0, NULL, 0, NULL, 1),
(37283, 29111, '1', 'State Board', '', '', '2018', 60.00, '', 1, '2026-03-18 05:29:32', 0, NULL, 0, NULL, 1),
(37284, 29112, '1', 'State board ', '', '', '2020', 72.00, '', 1, '2026-03-18 05:30:00', 0, NULL, 0, NULL, 1),
(37285, 29112, '2', 'State board ', '', '', '2018', 80.00, '', 1, '2026-03-18 05:30:25', 0, NULL, 0, NULL, 1),
(37286, 29116, '3', 'University of Madras', '', 'Bcom computer application', '2025', 78.00, '', 1, '2026-03-18 05:35:42', 0, NULL, 0, NULL, 1),
(37287, 29116, '1', 'State board ', '', '', '2020', 68.00, '', 1, '2026-03-18 05:36:15', 0, NULL, 0, NULL, 1),
(37288, 29116, '2', 'State board', '', '', '2022', 80.00, '', 1, '2026-03-18 05:36:27', 0, NULL, 0, NULL, 1),
(37289, 29118, '3', 'Madras University ', '', 'BCA', '2025', 60.00, '', 1, '2026-03-18 05:37:07', 0, NULL, 0, NULL, 1),
(37290, 29117, '3', 'Anna University ', '', 'B.Tech', '2025', 85.00, '', 1, '2026-03-18 05:38:22', 0, NULL, 0, NULL, 1),
(37291, 29122, '3', 'affilicated by anna university', '', 'be cse', '2025', 80.00, '', 1, '2026-03-18 05:49:09', 0, NULL, 0, NULL, 1),
(37292, 29121, '3', 'Affiliated by anna university ', '', 'BE CSE', '2025', 84.00, '', 1, '2026-03-18 05:49:16', 0, NULL, 0, NULL, 1),
(37293, 29119, '3', 'Anna University ', '', 'B Tech ', '2025', 7.96, '', 1, '2026-03-18 05:50:04', 0, NULL, 0, NULL, 1),
(37294, 29120, '4', 'Annamalai University ', '', 'MSc chemistry ', '2018', 62.00, '', 1, '2026-03-18 05:51:22', 0, NULL, 0, NULL, 1),
(37295, 29123, '3', 'University ', '', 'Bachelor of computer application ', '2025', 72.00, '', 1, '2026-03-18 06:10:35', 0, NULL, 0, NULL, 1),
(37296, 29124, '3', 'Vels University ', '', 'BBA ', '2015', 70.00, '', 1, '2026-03-18 06:11:30', 0, NULL, 0, NULL, 1),
(37297, 29126, '3', 'Anna University ', '', 'BE', '2024', 78.00, '', 1, '2026-03-18 06:47:36', 0, NULL, 0, NULL, 1),
(37298, 29125, '2', 'Government ', '', '', '2024', 57.00, '', 1, '2026-03-18 06:48:45', 0, NULL, 0, NULL, 1),
(37299, 29103, '1', 'tamil nadu state board', '', '', '2025', 72.00, '', 1, '2026-03-18 07:00:51', 0, NULL, 0, NULL, 1),
(37300, 29103, '5', 'dote', '', '', '2021', 84.00, '', 1, '2026-03-18 07:01:26', 0, NULL, 0, NULL, 1),
(37301, 29103, '3', 'anna university', '', 'be', '2025', 76.00, '', 1, '2026-03-18 07:09:12', 0, NULL, 0, NULL, 1),
(37302, 29127, '3', 'BHARATHITHASAN university ', '', 'B. Com', '2025', 68.00, '', 1, '2026-03-18 11:01:42', 0, NULL, 0, NULL, 1),
(37303, 29129, '3', 'Bharathidasan university ', '', 'B. Co.', '2025', 63.00, '', 1, '2026-03-18 11:54:58', 0, NULL, 0, NULL, 1),
(37304, 29070, '3', 'Kuvempu university ', '', 'Bsc', '2024', 73.00, '', 1, '2026-03-18 12:33:59', 0, NULL, 0, NULL, 1),
(37305, 29104, '3', 'madras  university', '', 'b.com cs ', '2025', 70.00, '', 1, '2026-03-18 02:04:09', 0, NULL, 0, NULL, 1),
(37306, 29130, '3', 'Thirumalai engineering college ', '', 'BE (ECE)', '2022', 7.40, '', 1, '2026-03-18 02:35:09', 0, NULL, 0, NULL, 1),
(37307, 29131, '3', 'University college of engineering, bit campus, trichy ', '', 'BE(ECE)', '2022', 78.20, '', 1, '2026-03-19 05:08:07', 0, NULL, 0, NULL, 1),
(37308, 29138, '3', 'Rajalakshmi Institute OF Technology ', '', 'Bachelor Of Technology _ Artificial Intelligence a', '2025', 79.00, '', 1, '2026-03-19 05:13:25', 0, NULL, 0, NULL, 1),
(37309, 29139, '3', 'Mookambigai College of Engineering', '', 'B.E(HONS) ', '2025', 76.00, '', 1, '2026-03-19 05:13:31', 0, NULL, 0, NULL, 1),
(37310, 29143, '3', 'Asan memorial college of arts and science ', '', 'BSC computer science ', '2023', 80.00, '', 1, '2026-03-19 05:15:15', 0, NULL, 0, NULL, 1),
(37311, 29132, '1', 'State board', '', '', '2018', 90.00, '', 1, '2026-03-19 05:16:11', 0, NULL, 0, NULL, 1),
(37312, 29134, '1', 'StateBoard ', '', '', '2018', 79.50, '', 1, '2026-03-19 05:16:15', 1, '2026-03-19 05:17:24', 0, NULL, 0),
(37313, 29133, '3', 'Anna University ', '', 'BE-VSE', '2024', 78.00, '', 1, '2026-03-19 05:16:47', 0, NULL, 0, NULL, 1),
(37314, 29132, '2', 'State board ', '', '', '2020', 80.00, '', 1, '2026-03-19 05:16:52', 0, NULL, 0, NULL, 1),
(37315, 29132, '3', 'University ', '', '', '2023', 79.00, '', 1, '2026-03-19 05:17:24', 0, NULL, 0, NULL, 1),
(37316, 29132, '4', 'University ', '', '', '2025', 81.00, '', 1, '2026-03-19 05:17:46', 0, NULL, 0, NULL, 1),
(37317, 29134, '3', 'Bharathiyar University ', '', 'BSC CS', '2023', 78.60, '', 1, '2026-03-19 05:18:46', 0, NULL, 0, NULL, 1),
(37318, 29134, '4', 'Bharathiyar University ', '', 'MSc Computer Science ', '2025', 79.00, '', 1, '2026-03-19 05:19:31', 0, NULL, 0, NULL, 1),
(37319, 29135, '3', 'University ', '', 'BSC computer science ', '2025', 54.00, '', 1, '2026-03-19 05:20:48', 0, NULL, 0, NULL, 1),
(37320, 29136, '3', 'University ', '', '', '2025', 70.00, '', 1, '2026-03-19 05:21:41', 0, NULL, 0, NULL, 1),
(37321, 29140, '1', 'State board ', '', '', '2016', 86.00, '', 1, '2026-03-19 05:22:49', 0, NULL, 0, NULL, 1),
(37322, 29140, '2', 'State board ', '', '', '2018', 85.00, '', 1, '2026-03-19 05:23:06', 0, NULL, 0, NULL, 1),
(37323, 29140, '3', 'Sri Ramakrishna institute of technology ', '', 'B.E-EEE', '2022', 76.00, '', 1, '2026-03-19 05:23:46', 0, NULL, 0, NULL, 1),
(37324, 29142, '3', 'Maha Barathi Engineering College ', '', 'BE-eCE', '2025', 81.00, '', 1, '2026-03-19 05:24:22', 0, NULL, 0, NULL, 1),
(37325, 29141, '4', 'Madrass university ', '', 'MA Economics ', '2025', 72.00, '', 1, '2026-03-19 05:25:49', 0, NULL, 0, NULL, 1),
(37326, 29144, '3', 'Madras university', '', 'B. Sc', '2015', 72.00, '', 1, '2026-03-19 05:28:34', 0, NULL, 0, NULL, 1),
(37327, 29145, '3', 'Vellore Institute of Technology', '', 'BTECH', '2025', 71.00, '', 1, '2026-03-19 05:35:21', 1, '2026-03-19 05:35:52', 0, NULL, 1),
(37328, 29137, '3', 'Anna university', '', 'BE(cse)', '2020', 65.00, '', 1, '2026-03-19 05:39:49', 0, NULL, 0, NULL, 1),
(37329, 29146, '3', 'anna University', '', 'bE', '2025', 70.00, '', 1, '2026-03-19 05:42:26', 0, NULL, 0, NULL, 1),
(37330, 29147, '1', 'State board', '', '', '2015', 70.00, '', 1, '2026-03-19 06:14:44', 0, NULL, 0, NULL, 1),
(37331, 29149, '3', 'Madras University ', '', 'BSC COMPUTER SCIENCE ', '2025', 7.00, '', 1, '2026-03-19 06:48:38', 0, NULL, 0, NULL, 1),
(37332, 29150, '3', 'Anna University ', '', 'BE', '2025', 70.00, '', 1, '2026-03-19 06:51:13', 0, NULL, 0, NULL, 1),
(37333, 29151, '3', 'Anna University ', '', 'BE ECE', '2025', 70.00, '', 1, '2026-03-19 06:51:29', 0, NULL, 0, NULL, 1),
(37334, 29150, '2', 'State board ', '', '', '2021', 79.00, '', 1, '2026-03-19 06:52:35', 1, '2026-03-19 06:53:35', 0, NULL, 1),
(37335, 29150, '1', 'State board ', '', '', '2019', 69.00, '', 1, '2026-03-19 06:54:01', 0, NULL, 0, NULL, 1),
(37336, 29151, '5', 'Chennai DOTE', '', 'DEEE', '2022', 80.00, '', 1, '2026-03-19 06:54:25', 0, NULL, 0, NULL, 1),
(37337, 29151, '1', 'State board ', '', '', '2019', 60.00, '', 1, '2026-03-19 06:55:48', 0, NULL, 0, NULL, 1),
(37338, 29148, '1', 'State board ', '', '', '2018', 60.00, '', 1, '2026-03-19 06:56:12', 0, NULL, 0, NULL, 1),
(37339, 29148, '2', 'State board ', '', '', '2020', 55.00, '', 1, '2026-03-19 06:56:40', 0, NULL, 0, NULL, 1),
(37340, 29148, '3', 'Alagappa university ', '', 'BSC it', '2023', 65.00, '', 1, '2026-03-19 06:57:19', 0, NULL, 0, NULL, 1),
(37341, 29148, '4', 'Alagappa university ', '', 'Msc CS&IT', '2025', 70.00, '', 1, '2026-03-19 06:58:07', 0, NULL, 0, NULL, 1),
(37342, 29154, '1', 'Nill', '', '', '2018', 80.00, '', 1, '2026-03-19 09:22:55', 0, NULL, 0, NULL, 1),
(37343, 29155, '3', 'Madras University ', '', 'Bcom', '2020', 83.00, '', 1, '2026-03-19 09:30:33', 0, NULL, 0, NULL, 1),
(37344, 29156, '3', 'Pondicherry ', '', 'Bba', '2024', 60.00, '', 1, '2026-03-19 12:31:38', 0, NULL, 0, NULL, 1),
(37345, 29158, '3', 'Madras University', '', 'BCA', '2024', 75.00, '', 1, '2026-03-19 02:00:04', 0, NULL, 0, NULL, 1),
(37346, 29158, '4', 'Madras University ', '', 'MCA', '2026', 70.00, '', 1, '2026-03-19 02:00:36', 0, NULL, 0, NULL, 1),
(37347, 29157, '4', 'Bharathidasan University', '', 'MBA ', '2024', 75.00, '', 1, '2026-03-19 02:24:03', 0, NULL, 0, NULL, 1),
(37348, 29159, '3', 'Madras University ', '', 'Bcom', '2017', 87.00, '', 1, '2026-03-19 08:40:54', 0, NULL, 0, NULL, 1),
(37349, 29161, '3', 'Bharathiar university coimbatore ', '', 'BBA', '2022', 62.00, '', 1, '2026-03-20 04:51:37', 0, NULL, 0, NULL, 1),
(37350, 29090, '3', 'periyar university salem', '', 'bca', '2021', 78.00, '', 1, '2026-03-20 05:11:56', 0, NULL, 0, NULL, 1),
(37351, 29162, '3', 'Bharathithasan university', '', 'BBA', '2025', 71.00, '', 1, '2026-03-20 05:24:59', 0, NULL, 0, NULL, 1),
(37352, 29163, '4', 'Yogi Vemana University kadapa', '', 'MSC', '2024', 69.00, '', 1, '2026-03-20 06:16:04', 0, NULL, 0, NULL, 1),
(37353, 29165, '4', 'Banglore university ', '', 'B com', '2022', 75.00, '', 1, '2026-03-20 08:14:25', 0, NULL, 0, NULL, 1),
(37354, 29167, '3', 'Anna university ', '', 'B.tech Information Technology ', '2025', 72.84, '', 1, '2026-03-20 10:56:19', 0, NULL, 0, NULL, 1),
(37355, 29166, '3', 'Anna University ', '', 'B.Tech ', '2025', 71.00, '', 1, '2026-03-20 11:02:10', 0, NULL, 0, NULL, 1),
(37356, 29168, '3', 'Anna University ', '', 'belE Mechanical engineering ', '2023', 72.00, '', 1, '2026-03-20 12:54:11', 0, NULL, 0, NULL, 1),
(37357, 29169, '3', 'Banglore university ', '', 'Bca', '2023', 7.80, '', 1, '2026-03-21 04:47:39', 0, NULL, 0, NULL, 1),
(37358, 29170, '3', 'ayya nadar janaki ammal college sivakasi', '', 'bsc computer science', '2024', 67.77, '', 1, '2026-03-21 05:11:26', 0, NULL, 0, NULL, 1),
(37359, 29170, '2', 's.h.n edward higher sec school sattur', '', '', '2021', 57.00, '', 1, '2026-03-21 05:12:13', 0, NULL, 0, NULL, 1),
(37360, 29171, '3', 'anna university ', '', 'be', '2019', 65.00, '', 1, '2026-03-21 05:24:50', 0, NULL, 0, NULL, 1),
(37361, 29172, '3', 'Mohammed sathak college of arts and science ', '', 'B.com', '2020', 70.00, '', 1, '2026-03-21 05:53:13', 0, NULL, 0, NULL, 1),
(37362, 29173, '3', 'Goverment', '', 'PU', '2018', 50.00, '', 162, '2026-03-21 02:28:08', 0, NULL, 0, NULL, 1),
(37363, 29173, '3', 'Goverment', '', 'PU', '2018', 50.00, '', 162, '2026-03-21 02:28:08', 162, '2026-03-21 02:28:12', 0, NULL, 0),
(37364, 29174, '4', 'Anna University ', '', 'B.Tech', '2023', 8.30, '', 1, '2026-03-21 09:15:15', 0, NULL, 0, NULL, 1),
(37365, 29174, '4', 'Anna University ', '', 'MBA', '2026', 8.30, '', 1, '2026-03-21 09:17:17', 0, NULL, 0, NULL, 1),
(37366, 29174, '3', 'Anna University ', '', 'B.TECH', '2023', 8.33, '', 1, '2026-03-21 09:17:54', 0, NULL, 0, NULL, 1),
(37367, 29174, '2', 'State board ', '', '', '2019', 76.00, '', 1, '2026-03-21 09:18:21', 0, NULL, 0, NULL, 1),
(37368, 29175, '3', 'vels university', '', 'bca', '2026', 8.21, '', 1, '2026-03-21 09:29:59', 0, NULL, 0, NULL, 1),
(37369, 29176, '3', 'Madras University ', '', 'Bsc biotechnology ', '2019', 55.00, '', 1, '2026-03-21 10:01:06', 0, NULL, 0, NULL, 1),
(37370, 29177, '3', 'University of Madras ', '', 'Bcom ( corporate secretaryship)', '2025', 85.00, '', 1, '2026-03-21 10:14:16', 0, NULL, 0, NULL, 1),
(37371, 29180, '4', 'SRM', '', 'MBA', '2025', 95.00, '', 1, '2026-03-21 01:26:17', 0, NULL, 0, NULL, 1),
(37372, 29184, '4', 'bharathidasan', '', 'mba', '2024', 80.00, '', 1, '2026-03-21 05:24:39', 0, NULL, 0, NULL, 1),
(37373, 29182, '3', 'Anna University ', '', 'B. E. Computer Science and Engineering ', '2025', 67.00, '', 1, '2026-03-22 04:03:28', 0, NULL, 0, NULL, 1),
(37374, 29185, '2', 'State board ', '', 'Bsc mathematics ', '2019', 74.60, '', 1, '2026-03-22 09:59:03', 1, '2026-03-22 10:00:04', 0, NULL, 1),
(37375, 29186, '3', 'Guru Nanak College ', '', 'B.Sc ', '2025', 73.50, '', 1, '2026-03-23 04:39:54', 0, NULL, 0, NULL, 1),
(37376, 29187, '3', 'Madras University ', '', 'B.sc', '2018', 55.00, '', 1, '2026-03-23 05:42:56', 0, NULL, 0, NULL, 1),
(37377, 29188, '1', 'state board', '', '', '2017', 62.00, '', 1, '2026-03-23 05:58:47', 0, NULL, 0, NULL, 1),
(37378, 29188, '2', 'state board', '', '', '2019', 42.00, '', 1, '2026-03-23 05:59:07', 0, NULL, 0, NULL, 1),
(37379, 29188, '3', 'Bharathidasan University', '', 'B.A', '2022', 87.00, '', 1, '2026-03-23 06:00:26', 0, NULL, 0, NULL, 1),
(37380, 29191, '3', 'Bharathidasan university ', '', 'BBA', '2025', 70.00, '', 1, '2026-03-23 06:07:12', 0, NULL, 0, NULL, 1),
(37381, 29193, '3', 'BCU', '', 'B com', '2024', 68.50, '', 1, '2026-03-23 06:08:17', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(37382, 29190, '3', 'Bharathidasan University ', '', 'BBA', '2024', 76.00, '', 1, '2026-03-23 06:09:13', 0, NULL, 0, NULL, 1),
(37383, 29189, '3', 'Bharathidasan University ', '', 'B.sc Physics ', '2024', 62.08, '', 1, '2026-03-23 06:12:40', 0, NULL, 0, NULL, 1),
(37384, 29194, '3', 'Bharathidasan University ', '', 'BCA', '2024', 69.00, '', 1, '2026-03-23 06:13:53', 0, NULL, 0, NULL, 1),
(37385, 29192, '3', 'Bharathidasan', '', 'BBA', '2026', 75.00, '', 1, '2026-03-23 06:20:25', 0, NULL, 0, NULL, 1),
(37386, 29195, '3', 'Anna University ', '', 'AI&DS', '2025', 75.00, '', 1, '2026-03-23 06:24:43', 0, NULL, 0, NULL, 1),
(37387, 29196, '4', 'Anna university', '', 'Mba', '2025', 83.20, '', 1, '2026-03-23 07:14:34', 0, NULL, 0, NULL, 1),
(37388, 29201, '3', 'Madras', '', 'B.sc psychology', '2025', 60.00, '', 1, '2026-03-23 10:13:27', 0, NULL, 0, NULL, 1),
(37389, 29202, '3', 'Anna university ', '', 'Bachelor of Engineering (B.E.)', '2026', 7.70, '', 1, '2026-03-23 12:12:51', 0, NULL, 0, NULL, 1),
(37390, 29205, '3', 'Anna University ', '', 'B.E computer science engineering ', '2024', 50.00, '', 1, '2026-03-24 03:09:57', 0, NULL, 0, NULL, 1),
(37391, 29208, '2', 'TN', '', '', '2022', 60.00, '', 1, '2026-03-24 05:15:11', 0, NULL, 0, NULL, 1),
(37392, 29208, '1', 'TN', '', '', '2020', 55.00, '', 1, '2026-03-24 05:15:56', 0, NULL, 0, NULL, 1),
(37393, 29209, '3', 'Queen Mary\'s college ', '', '', '2024', 50.00, '', 1, '2026-03-24 05:19:07', 0, NULL, 0, NULL, 1),
(37394, 29183, '4', 'Manonmaniam Sundaranar University', '', 'Physics', '2025', 82.00, '', 1, '2026-03-24 05:21:30', 0, NULL, 0, NULL, 1),
(37395, 29211, '3', 'University of Madras ', '', 'BCA', '2025', 72.00, '', 1, '2026-03-24 05:55:39', 1, '2026-03-24 05:57:17', 0, NULL, 1),
(37396, 29210, '3', 'Anna university ', '', 'BE', '2021', 7.50, '', 1, '2026-03-24 05:58:13', 0, NULL, 0, NULL, 1),
(37397, 29213, '3', 'University of Madras ', '', 'BCA ', '2025', 81.00, '', 1, '2026-03-24 05:58:14', 0, NULL, 0, NULL, 1),
(37398, 29215, '4', 'University of Hertfordshire ', '', 'Msc data science ', '2025', 92.00, '', 1, '2026-03-24 07:16:27', 0, NULL, 0, NULL, 1),
(37399, 29215, '3', 'University of Madras ', '', 'Bsc mathematics ', '2022', 79.00, '', 1, '2026-03-24 07:16:58', 0, NULL, 0, NULL, 1),
(37400, 29214, '3', 'Loyola College ', '', 'B.com(corporate Secretaryship)', '2025', 55.00, '', 1, '2026-03-24 10:12:18', 0, NULL, 0, NULL, 1),
(37401, 29214, '1', 'Morning star M.H.S.School', '', '', '2020', 58.00, '', 1, '2026-03-24 10:13:00', 0, NULL, 0, NULL, 1),
(37402, 29219, '3', 'Bharathidasan university ', '', 'BBA', '2019', 75.00, '', 1, '2026-03-25 04:49:13', 0, NULL, 0, NULL, 1),
(37403, 29219, '2', 'Govt girls hr sec school', '', '', '2016', 64.00, '', 1, '2026-03-25 04:49:52', 0, NULL, 0, NULL, 1),
(37404, 29219, '1', 'Sk balaiah hr sec school', '', '', '2014', 82.80, '', 1, '2026-03-25 04:50:18', 0, NULL, 0, NULL, 1),
(37405, 29218, '3', 'ksrm college of engineering ', '', 'b.tech', '2022', 75.00, '', 1, '2026-03-25 04:50:29', 0, NULL, 0, NULL, 1),
(37406, 29220, '3', 'Sri Narayana Junior College', '', '12th', '2022', 51.00, '', 1, '2026-03-25 05:07:17', 0, NULL, 0, NULL, 1),
(37407, 29085, '3', 'Bharathidasa university ', '', 'Bsc', '2021', 80.00, '', 1, '2026-03-25 05:30:54', 0, NULL, 0, NULL, 1),
(37408, 29222, '3', 'St. Joseph College of Engineering and Technology', '', 'B. E', '2025', 8.00, '', 1, '2026-03-25 06:01:41', 0, NULL, 0, NULL, 1),
(37409, 29221, '4', 'Anna university ', '', 'MBA ', '2025', 7.20, '', 1, '2026-03-25 06:14:49', 0, NULL, 0, NULL, 1),
(37410, 29207, '3', 'University of Madras ', '', 'Bachelor of Computer Application ', '2025', 8.40, '', 1, '2026-03-25 06:18:20', 0, NULL, 0, NULL, 1),
(37411, 29224, '4', 'vizag', '', 'b-tech', '2026', 78.00, '', 1, '2026-03-25 06:20:29', 0, NULL, 0, NULL, 1),
(37412, 29217, '4', 'Loyola institute of technology and science ', '', 'Master of business administration ', '2024', 70.00, '', 1, '2026-03-25 06:52:00', 0, NULL, 0, NULL, 1),
(37413, 29225, '3', 'National college Jayanagar ', '', 'B.Com', '2024', 60.00, '', 1, '2026-03-25 07:16:26', 0, NULL, 0, NULL, 1),
(37414, 29227, '3', 'Anna university ', '', 'BE.CSE', '2024', 78.00, '', 1, '2026-03-25 11:31:40', 0, NULL, 0, NULL, 1),
(37415, 29230, '3', 'srm university', '', '', '2022', 87.00, '', 1, '2026-03-25 01:32:17', 0, NULL, 0, NULL, 1),
(37416, 29230, '4', 'conestoga college', '', 'Web development', '2025', 85.00, '', 1, '2026-03-25 01:33:02', 0, NULL, 0, NULL, 1),
(37417, 29231, '3', 'SRM university of technology and science ', '', 'B.com', '2024', 7.00, '', 1, '2026-03-25 01:57:09', 0, NULL, 0, NULL, 1),
(37418, 29231, '1', 'The Holy Cross Matriculation Hr Sec School', '', '', '2019', 69.40, '', 1, '2026-03-25 01:58:38', 1, '2026-03-25 02:01:32', 0, NULL, 1),
(37419, 29231, '2', 'The Holy Cross Matriculation Hr Sec School', '', '', '2021', 73.40, '', 1, '2026-03-25 01:59:17', 0, NULL, 0, NULL, 1),
(37420, 29234, '3', 'Anna university ', '', 'BE-CSE', '2025', 69.00, '', 1, '2026-03-26 04:03:22', 0, NULL, 0, NULL, 1),
(37421, 29234, '2', 'Tamilnadu state board ', '', '', '2021', 72.00, '', 1, '2026-03-26 04:03:53', 0, NULL, 0, NULL, 1),
(37422, 29232, '3', 'Anna university ', '', 'BE', '2025', 80.00, '', 1, '2026-03-26 05:25:57', 0, NULL, 0, NULL, 1),
(37423, 29235, '4', 'bharath institute of higher education ', '', 'ma. ecomices', '2024', 100.00, '', 1, '2026-03-26 05:54:49', 0, NULL, 0, NULL, 1),
(37424, 29236, '5', 'Global Tech Delhi', '', 'Diploma ', '2018', 100.00, '', 1, '2026-03-26 06:19:23', 0, NULL, 0, NULL, 1),
(37425, 29237, '1', 'Karnataka Secondary examination board ', '', '', '2012', 56.00, '', 1, '2026-03-26 06:26:03', 0, NULL, 0, NULL, 1),
(37426, 29239, '3', 'University ', '', 'BCA', '2023', 80.00, '', 1, '2026-03-26 06:41:06', 0, NULL, 0, NULL, 1),
(37427, 29242, '4', 'kalasalingam university', '', 'mca', '2025', 71.00, '', 1, '2026-03-26 10:26:14', 0, NULL, 0, NULL, 1),
(37428, 29243, '4', 'Madurai Kamaraj University ', '', 'MCA ', '2025', 72.00, '', 1, '2026-03-26 10:52:14', 0, NULL, 0, NULL, 1),
(37429, 29243, '3', 'Madurai Kamaraj University ', '', 'B.Sc ', '2019', 70.00, '', 1, '2026-03-26 10:53:23', 0, NULL, 0, NULL, 1),
(37430, 29246, '3', 'Vels University ', '', 'BSC information technology ', '2025', 7.10, '', 1, '2026-03-26 11:26:02', 0, NULL, 0, NULL, 1),
(37431, 29247, '4', 'Krishnasamy college of Engineering and Technology at Cuddalore anna University ', '', 'MCA', '2025', 85.00, '', 1, '2026-03-26 11:47:31', 0, NULL, 0, NULL, 1),
(37432, 29248, '4', 'Krishnasamy college of Engineering and technology Cuddalore,Anna University', '', 'MCA', '2025', 83.00, '', 1, '2026-03-26 11:48:28', 0, NULL, 0, NULL, 1),
(37433, 29248, '3', 'Immaculate College for Women, Cuddalore.Thiruvalluvar University. ', '', 'BCA', '2023', 8.37, '', 1, '2026-03-26 11:49:32', 0, NULL, 0, NULL, 1),
(37434, 29247, '3', 'Krishnasamy college of arts ,sciences  and management at Cuddalore ', '', 'BCA ', '2023', 83.00, '', 1, '2026-03-26 11:49:55', 0, NULL, 0, NULL, 1),
(37435, 29248, '2', 'Sriram Matriculation Higher secondary school, Kurinijipadi. ', '', '', '2020', 62.00, '', 1, '2026-03-26 11:50:47', 0, NULL, 0, NULL, 1),
(37436, 29247, '2', 'Kamaraj matric higher secondary school ', '', '', '2020', 64.00, '', 1, '2026-03-26 11:50:53', 0, NULL, 0, NULL, 1),
(37437, 29247, '1', 'Bharathi matric higher secondary school at bhuvanagiri', '', '', '2018', 83.00, '', 1, '2026-03-26 11:51:47', 0, NULL, 0, NULL, 1),
(37438, 29248, '1', 'SKV Higher secondary school, Kurinijipadi ', '', '', '2018', 73.20, '', 1, '2026-03-26 11:52:13', 0, NULL, 0, NULL, 1),
(37439, 29249, '4', 'Krishnasamy College of Engineering and technology Cuddalore, Anna University ', '', 'MCA', '2025', 8.73, '', 1, '2026-03-26 12:08:59', 0, NULL, 0, NULL, 1),
(37440, 29249, '3', 'Immaculate College for Women,Cuddalore.', '', 'BCA', '2023', 8.46, '', 1, '2026-03-26 12:10:11', 0, NULL, 0, NULL, 1),
(37441, 29249, '2', 'SKV Higher secondary school, Kurinijipadi.', '', '', '2020', 62.00, '', 1, '2026-03-26 12:10:55', 0, NULL, 0, NULL, 1),
(37442, 29249, '1', 'SKV Higher secondary school,Kurinijipadi.', '', '', '2018', 75.00, '', 1, '2026-03-26 12:11:23', 0, NULL, 0, NULL, 1),
(37443, 29251, '4', 'Anna University ', '', 'Mba', '2025', 8.50, '', 1, '2026-03-26 12:45:55', 0, NULL, 0, NULL, 1),
(37444, 29251, '3', 'Periyar University ', '', 'BA English ', '2022', 7.30, '', 1, '2026-03-26 12:46:42', 0, NULL, 0, NULL, 1),
(37445, 29250, '3', 'Anna University', '', 'B.E', '2025', 83.60, '', 1, '2026-03-26 01:17:49', 0, NULL, 0, NULL, 1),
(37446, 29250, '2', 'Tamil Nadu State board ', '', '', '2021', 81.00, '', 1, '2026-03-26 01:18:38', 0, NULL, 0, NULL, 1),
(37447, 29250, '1', 'Tamil Nadu State Board ', '', '', '2019', 80.60, '', 1, '2026-03-26 01:19:01', 0, NULL, 0, NULL, 1),
(37448, 29253, '4', 'IZEE B-School ', '', 'MBA', '2025', 70.00, '', 1, '2026-03-26 03:16:27', 0, NULL, 0, NULL, 1),
(37449, 29253, '3', 'Dhana Lakshmi srinivas arts and sciences college ', '', 'B.com cs', '2022', 80.00, '', 1, '2026-03-26 03:17:30', 0, NULL, 0, NULL, 1),
(37450, 29254, '3', 'University of Madras ', '', 'BBA', '2017', 54.80, '', 1, '2026-03-27 03:18:16', 0, NULL, 0, NULL, 1),
(37451, 26976, '3', 'Dr.mG.R.janaki college of arts and science ', '', 'BBA', '2025', 75.00, '', 1, '2026-03-27 05:17:20', 0, NULL, 0, NULL, 1),
(37452, 29256, '3', 'Bharathidasan university ', '', 'Bsc.computer science ', '2024', 7.20, '', 1, '2026-03-27 05:27:56', 0, NULL, 0, NULL, 1),
(37453, 29258, '4', 'SRMIST RAMAPURAM ', '', 'M.SC Applied Data Science ', '2026', 8.62, '', 1, '2026-03-27 05:31:19', 0, NULL, 0, NULL, 1),
(37454, 29258, '3', 'Bharathidasan university ', '', 'B.SC Computer Science ', '2024', 6.83, '', 1, '2026-03-27 05:32:12', 0, NULL, 0, NULL, 1),
(37455, 29261, '3', 'Madras University ', '', 'Ba tamil literature ', '2022', 70.00, '', 1, '2026-03-27 06:14:04', 0, NULL, 0, NULL, 1),
(37456, 29259, '1', 'Chennai ', '', '', '2023', 60.00, '', 1, '2026-03-27 06:18:14', 0, NULL, 0, NULL, 1),
(37457, 29262, '4', 'Karpagam academy of higher education Coimbatore ', '', 'MCA', '2025', 91.00, '', 1, '2026-03-27 06:19:02', 0, NULL, 0, NULL, 1),
(37458, 29262, '4', 'Karpagam academy of higher education Coimbatore ', '', 'MCA', '2025', 91.00, '', 1, '2026-03-27 06:19:04', 0, NULL, 0, NULL, 1),
(37459, 29264, '3', 'Gitam University ', '', 'B. Tech', '2025', 60.00, '', 1, '2026-03-27 06:23:31', 0, NULL, 0, NULL, 1),
(37460, 29263, '3', 'Madras University ', '', 'BBA ', '2024', 80.00, '', 1, '2026-03-27 06:24:41', 0, NULL, 0, NULL, 1),
(37461, 29266, '3', 'GITAM', '', 'BCA', '2024', 65.00, '', 1, '2026-03-27 06:25:09', 0, NULL, 0, NULL, 1),
(37462, 29265, '5', 'shri shiridi sai Institute of science and technology', '', '', '2022', 76.00, '', 1, '2026-03-27 06:26:52', 0, NULL, 0, NULL, 1),
(37463, 29267, '1', 'amala matric higher secondary school', '', '', '2015', 80.00, '', 1, '2026-03-27 06:36:36', 0, NULL, 0, NULL, 1),
(37464, 29268, '3', 'University of Madras ', '', 'BBA', '2025', 67.00, '', 1, '2026-03-27 06:38:09', 1, '2026-03-27 06:39:32', 0, NULL, 1),
(37465, 29267, '2', 'amala matric higher secondary school', '', '', '2017', 75.00, '', 1, '2026-03-27 06:40:05', 0, NULL, 0, NULL, 1),
(37466, 29267, '3', 'anna university', '', 'bachelor of engineering', '2021', 74.56, '', 1, '2026-03-27 06:41:46', 0, NULL, 0, NULL, 1),
(37467, 29267, '4', 'anna university', '', 'master  of business administration', '2023', 77.07, '', 1, '2026-03-27 06:42:27', 0, NULL, 0, NULL, 1),
(37468, 29255, '3', 'Anna University ', '', 'B.tech Information Technology ', '2025', 70.00, '', 1, '2026-03-27 07:28:08', 0, NULL, 0, NULL, 1),
(37469, 29269, '4', 'Sathyabama University ', '', 'MBA ', '2026', 8.12, '', 1, '2026-03-27 07:35:13', 0, NULL, 0, NULL, 1),
(37470, 29269, '3', 'Pondicherry University ', '', 'B.com', '2024', 8.59, '', 1, '2026-03-27 07:35:59', 0, NULL, 0, NULL, 1),
(37471, 29270, '3', 'Bharathidasan university ', '', 'BBA Aviation and Ground handling ', '2021', 62.00, '', 1, '2026-03-27 07:37:11', 0, NULL, 0, NULL, 1),
(37472, 29271, '4', 'Anna University ', '', 'MBA', '2023', 85.00, '', 1, '2026-03-27 07:59:06', 0, NULL, 0, NULL, 1),
(37473, 29272, '4', 'Dr.m.g.r educational research institute ', '', 'MBA', '2025', 81.00, '', 1, '2026-03-27 08:05:22', 0, NULL, 0, NULL, 1),
(37474, 29273, '3', 'Sv university ', '', 'B.com computers ', '2025', 70.00, '', 1, '2026-03-27 09:04:13', 0, NULL, 0, NULL, 1),
(37475, 29274, '4', 'Madras university', '', 'MA', '2023', 72.00, '', 1, '2026-03-27 10:11:02', 0, NULL, 0, NULL, 1),
(37476, 29274, '3', 'Madras university', '', 'MA', '2023', 75.00, '', 1, '2026-03-27 10:11:29', 0, NULL, 0, NULL, 1),
(37477, 29275, '3', 'Bharathidasan university ', '', 'BBA', '2025', 75.00, '', 1, '2026-03-27 10:21:25', 0, NULL, 0, NULL, 1),
(37478, 29277, '1', 'State board ', '', '', '2019', 76.00, '', 1, '2026-03-27 11:23:52', 0, NULL, 0, NULL, 1),
(37479, 29277, '2', 'State Board ', '', '', '2021', 86.00, '', 1, '2026-03-27 11:24:40', 0, NULL, 0, NULL, 1),
(37480, 29277, '3', 'Bharathidasan University ', '', 'Bachelor of Business Administration ', '2024', 77.00, '', 1, '2026-03-27 11:27:39', 1, '2026-03-27 11:28:53', 0, NULL, 1),
(37481, 29277, '4', 'Anna University ', '', 'Master Of Business Administration ', '2026', 82.00, '', 1, '2026-03-27 11:29:38', 1, '2026-03-27 11:29:53', 0, NULL, 0),
(37482, 29277, '4', 'Anna University ', '', 'Masters Of Business Administration ', '2026', 82.00, '', 1, '2026-03-27 11:30:26', 0, NULL, 0, NULL, 1),
(37483, 29281, '3', 'Madaras university ', '', 'BA', '2019', 70.00, '', 1, '2026-03-28 05:17:23', 0, NULL, 0, NULL, 1),
(37484, 29280, '3', 'University of Madras ', '', 'BBA ', '2025', 60.00, '', 1, '2026-03-28 05:46:25', 0, NULL, 0, NULL, 1),
(37485, 29282, '3', 'bharathidasan university', '', 'bba', '2023', 75.00, '', 1, '2026-03-28 06:43:10', 0, NULL, 0, NULL, 1),
(37486, 29284, '3', 'Vels University ', '', 'Bachelor of pharmacy ', '2025', 7.64, '', 1, '2026-03-28 07:06:37', 0, NULL, 0, NULL, 1),
(37487, 29285, '3', 'national college jayanagar', '', 'B.com', '2024', 65.00, '', 1, '2026-03-28 07:21:36', 0, NULL, 0, NULL, 1),
(37488, 29286, '4', 'Anna university ', '', 'Mba', '2024', 86.00, '', 1, '2026-03-28 07:48:23', 0, NULL, 0, NULL, 1),
(37489, 29288, '3', 'The Oxford College of science ', '', 'Bsc', '2024', 72.00, '', 1, '2026-03-28 09:15:45', 0, NULL, 0, NULL, 1),
(37490, 29279, '3', 'The Gandhigram Rural Institute-Deemed to be University', '', 'Bsc computer science', '2025', 81.80, '', 1, '2026-03-28 02:36:00', 0, NULL, 0, NULL, 1),
(37491, 29290, '2', 'MADRAS UNIVERSITY ', '', '', '2024', 50.00, '', 1, '2026-03-30 05:23:18', 0, NULL, 0, NULL, 1),
(37492, 29291, '3', 'overment', '', 'bcom', '2022', 72.00, '', 1, '2026-03-30 05:24:25', 0, NULL, 0, NULL, 1),
(37493, 29292, '3', 'St. Joseph college of engineering and technology', '', 'B. E', '2025', 8.00, '', 1, '2026-03-30 05:30:29', 0, NULL, 0, NULL, 1),
(37494, 29293, '4', 'University of Madras ', '', 'MBA ', '2024', 80.00, '', 1, '2026-03-30 05:31:56', 0, NULL, 0, NULL, 1),
(37495, 29293, '3', 'University of Madras ', '', 'B.com', '2022', 75.00, '', 1, '2026-03-30 05:32:23', 0, NULL, 0, NULL, 1),
(37496, 29294, '3', 'BHARATHIYAR UNIVERSITY', '', 'BSC COMPUTER SCIENCE', '2023', 68.00, '', 1, '2026-03-30 05:44:37', 0, NULL, 0, NULL, 1),
(37497, 29295, '3', 'Madras University ', '', 'Bsc.botany', '2022', 60.00, '', 1, '2026-03-30 05:48:45', 0, NULL, 0, NULL, 1),
(37498, 29257, '3', 'Coimbatore institute of technology ', '', 'ARTIFICIAL INTELLIGENCE AND DATA SCIENCE ', '2025', 82.00, '', 1, '2026-03-30 06:16:24', 0, NULL, 0, NULL, 1),
(37499, 29296, '3', 'Anna university ', '', 'Bachelor of computer science and engineering ', '2024', 80.20, '', 1, '2026-03-30 06:22:26', 0, NULL, 0, NULL, 1),
(37500, 29298, '3', 'Madanapalle institute of Technology and science ', '', 'BTech', '2023', 84.00, '', 1, '2026-03-30 06:40:04', 0, NULL, 0, NULL, 1),
(37501, 29299, '3', 'University of madras', '', 'B.com', '2020', 70.00, '', 1, '2026-03-30 06:40:38', 0, NULL, 0, NULL, 1),
(37502, 29301, '4', 'Vels University ', '', 'MCA', '2023', 8.00, '', 1, '2026-03-30 09:23:32', 0, NULL, 0, NULL, 1),
(37503, 29300, '3', 'Thiruvalluvar university ', '', 'BCA', '2025', 73.00, '', 1, '2026-03-30 09:24:43', 0, NULL, 0, NULL, 1),
(37504, 29303, '4', 'Kamarajar Universit', '', 'MCA', '2024', 76.00, '', 159, '2026-03-30 03:08:39', 0, NULL, 0, NULL, 1),
(37505, 29302, '3', 'Anna University', '', 'Bsc Software Systems', '2024', 65.00, '', 1, '2026-03-30 09:38:52', 0, NULL, 0, NULL, 1),
(37506, 29303, '3', 'Kamarajar universit', '', 'BCA', '2022', 63.00, '', 159, '2026-03-30 03:09:56', 0, NULL, 0, NULL, 1),
(37507, 29305, '3', 'Bharathiar University ', '', 'B.com(Computer application)', '2025', 73.00, '', 1, '2026-03-30 12:48:54', 0, NULL, 0, NULL, 1),
(37508, 29289, '3', 'tiruvalluvar university', '', 'bachelor of computer application', '2024', 81.00, '', 1, '2026-03-31 03:26:04', 1, '2026-03-31 03:27:16', 0, NULL, 1),
(37509, 29289, '1', 'subramaniya sastriyar hr.sec.school', '', '', '2021', 81.00, '', 1, '2026-03-31 03:28:30', 0, NULL, 0, NULL, 1),
(37510, 29289, '2', 'govt.high schoool', '', '', '2019', 74.00, '', 1, '2026-03-31 03:29:09', 0, NULL, 0, NULL, 1),
(37511, 29306, '3', 'anna university', '', 'btech', '2025', 77.05, '', 1, '2026-03-31 04:39:06', 0, NULL, 0, NULL, 1),
(37512, 29283, '2', 'state board', '', '', '2017', 52.25, '', 1, '2026-03-31 04:45:43', 1, '2026-03-31 04:46:46', 0, NULL, 0),
(37513, 29283, '1', 'state board', '', '', '2015', 79.40, '', 1, '2026-03-31 04:47:16', 0, NULL, 0, NULL, 1),
(37514, 29304, '3', 'alagappa univer', '', 'b. sc. computer science', '2022', 64.00, '', 1, '2026-03-31 04:48:33', 0, NULL, 0, NULL, 1),
(37515, 29308, '3', 'Manonmanian sundaranar university ', '', 'B.sc.ELECTRONICS', '2021', 80.00, '', 1, '2026-03-31 05:16:09', 0, NULL, 0, NULL, 1),
(37516, 29309, '4', 'Egs pillay engineering college (anna University)', '', 'MCA', '2019', 80.00, '', 1, '2026-03-31 05:16:23', 0, NULL, 0, NULL, 1),
(37517, 29310, '3', 'ANNA UNIVERSITY ', '', 'B.E CSE', '2025', 80.00, '', 1, '2026-03-31 05:54:07', 0, NULL, 0, NULL, 1),
(37518, 29312, '1', 'DBM and RJS  high school', '', '', '2019', 70.00, '', 1, '2026-03-31 06:29:11', 0, NULL, 0, NULL, 1),
(37519, 29311, '3', 'Anna University ', '', 'B E', '2022', 78.40, '', 1, '2026-03-31 06:33:50', 0, NULL, 0, NULL, 1),
(37520, 29313, '3', 'Manonmaniam Sundaranar University ', '', 'B.Sc Computer Science ', '2025', 6.17, '', 1, '2026-03-31 06:34:16', 0, NULL, 0, NULL, 1),
(37521, 29314, '3', 'state ', '', 'bba', '2024', 86.00, '', 1, '2026-03-31 06:42:56', 0, NULL, 0, NULL, 1),
(37522, 29316, '3', 'Bharathidasan Universit', '', 'BCA', '2025', 63.10, '', 154, '2026-03-31 01:16:53', 154, '2026-03-31 01:17:54', 0, NULL, 1),
(37523, 29317, '3', 'Thiruvalur Universit', '', 'BBA', '2023', 87.00, '', 154, '2026-03-31 02:49:24', 0, NULL, 0, NULL, 1),
(37524, 29319, '3', 'Velalar College of Engineering and Technology ', '', ' BE ECE', '2026', 82.00, '', 1, '2026-03-31 01:16:03', 0, NULL, 0, NULL, 1),
(37525, 29320, '3', 'Anna University', '', 'BE', '2025', 7.81, '', 1, '2026-03-31 01:34:39', 0, NULL, 0, NULL, 1),
(37526, 29321, '4', 'Women\'s Christian college ', '', 'Ma.hrm', '2027', 65.00, '', 1, '2026-03-31 01:34:52', 0, NULL, 0, NULL, 1),
(37527, 29323, '4', 'Thiruvalluvar University ', '', 'MSc Computer science ', '2023', 7.50, '', 1, '2026-04-01 04:48:56', 0, NULL, 0, NULL, 1),
(37528, 29323, '3', 'Thiruvalluvar University ', '', 'BSc Computer science ', '2021', 7.40, '', 1, '2026-04-01 04:49:43', 0, NULL, 0, NULL, 1),
(37529, 29324, '4', 'University ', '', 'Mca', '2025', 80.00, '', 1, '2026-04-01 04:50:26', 0, NULL, 0, NULL, 1),
(37530, 29322, '4', 'Thiruvalluvar University ', '', 'MSc Computer science ', '2023', 7.40, '', 1, '2026-04-01 04:58:30', 0, NULL, 0, NULL, 1),
(37531, 29322, '3', 'Thiruvalluvar University ', '', 'BSc Computer science ', '2021', 7.80, '', 1, '2026-04-01 04:58:55', 0, NULL, 0, NULL, 1),
(37532, 29325, '3', 'Thiruvallur ', '', 'B.sc chemistry ', '2020', 83.00, '', 1, '2026-04-01 05:32:25', 1, '2026-04-01 05:33:47', 0, NULL, 1),
(37533, 29327, '3', 'Bharadhithasan university ', '', 'B. Sc., Computer Science ', '2022', 80.00, '', 1, '2026-04-01 05:44:46', 0, NULL, 0, NULL, 1),
(37534, 29326, '3', 'University of Madras (DRBCCC HINDU COLLEGE)', '', 'BCA ', '2025', 71.00, '', 1, '2026-04-01 05:45:19', 0, NULL, 0, NULL, 1),
(37535, 29327, '1', 'Government girls higher secondary school ', '', '', '2017', 84.00, '', 1, '2026-04-01 05:47:23', 0, NULL, 0, NULL, 1),
(37536, 29327, '2', 'Government girls higher secondary school ', '', '', '2019', 60.00, '', 1, '2026-04-01 05:47:50', 0, NULL, 0, NULL, 1),
(37537, 29329, '3', 'Madras University ', '', 'Bba ', '2021', 70.00, '', 1, '2026-04-01 06:11:22', 0, NULL, 0, NULL, 1),
(37538, 29332, '3', 'bharathiar universit', '', 'bcom ', '2023', 69.95, '', 154, '2026-04-01 11:43:20', 0, NULL, 0, NULL, 1),
(37539, 29332, '4', 'madras universit', '', 'MBA', '2026', 75.00, '', 154, '2026-04-01 11:43:46', 0, NULL, 0, NULL, 1),
(37540, 29333, '3', 'madras universit', '', 'bBA', '2024', 80.00, '', 154, '2026-04-01 11:54:52', 0, NULL, 0, NULL, 1),
(37541, 29333, '4', 'madras universit', '', 'MBA', '2026', 60.00, '', 154, '2026-04-01 11:55:24', 0, NULL, 0, NULL, 1),
(37542, 19394, '3', 'calicut unniversit', '', 'BA economics', '2018', 65.00, '', 154, '2026-04-01 11:58:00', 0, NULL, 0, NULL, 1),
(37543, 29331, '3', 'Avvm sri pushpam', '', 'Bcom', '2024', 85.00, '', 1, '2026-04-01 06:39:33', 0, NULL, 0, NULL, 1),
(37544, 29334, '4', 'JNTU university ', '', 'B.com', '2025', 70.00, '', 1, '2026-04-01 06:44:13', 0, NULL, 0, NULL, 1),
(37545, 29336, '3', 'Karnataka University ', '', 'B.com', '2019', 60.00, '', 1, '2026-04-01 07:12:53', 0, NULL, 0, NULL, 1),
(37546, 29337, '3', 'srm institute of science and technology', '', 'b.tech', '2024', 80.00, '', 1, '2026-04-01 07:27:57', 0, NULL, 0, NULL, 1),
(37547, 29338, '3', 'University of Madras', '', 'BSC Zoology', '2024', 70.00, '', 1, '2026-04-01 08:45:53', 0, NULL, 0, NULL, 1),
(37548, 29340, '3', 'avc college mayiladurai', '', 'b.sc computer science', '2025', 80.00, '', 1, '2026-04-01 09:24:54', 0, NULL, 0, NULL, 1),
(37549, 29341, '4', 'Bharathidasan University ', '', 'Master of Computer Application ', '2023', 72.00, '', 1, '2026-04-01 09:56:14', 0, NULL, 0, NULL, 1),
(37550, 29341, '3', 'Sastra Deemed University', '', 'Bachelor of Computer Application', '2021', 67.00, '', 1, '2026-04-01 09:56:45', 0, NULL, 0, NULL, 1),
(37551, 29342, '3', 'SASTRA UNIVERSITY ', '', 'BBA ', '2017', 52.00, '', 1, '2026-04-01 09:58:40', 0, NULL, 0, NULL, 1),
(37552, 29343, '4', 'Bharathidasan university ', '', 'M.Sc(computer science)', '2023', 77.00, '', 1, '2026-04-01 11:07:15', 0, NULL, 0, NULL, 1),
(37553, 29345, '2', 'Jaivabai girls higher secondary school ', '', '', '2022', 81.30, '', 1, '2026-04-01 11:10:15', 0, NULL, 0, NULL, 1),
(37554, 29345, '1', 'Nesavalar colony high school ', '', '', '2020', 83.00, '', 1, '2026-04-01 11:10:46', 0, NULL, 0, NULL, 1),
(37555, 29343, '3', 'Bharathidasan university ', '', 'BCA', '2021', 85.00, '', 1, '2026-04-01 11:11:03', 0, NULL, 0, NULL, 1),
(37556, 29345, '3', 'Mother Teresa women\'s University ', '', 'Bsc(CS)', '2025', 72.00, '', 1, '2026-04-01 11:11:52', 0, NULL, 0, NULL, 1),
(37557, 29349, '4', 'Madurai Kamaraj University ', '', 'Msc', '2025', 79.00, '', 1, '2026-04-01 12:50:41', 0, NULL, 0, NULL, 1),
(37558, 29353, '3', 'Anna university ', '', 'B.E ', '2025', 78.00, '', 1, '2026-04-01 01:17:29', 0, NULL, 0, NULL, 1),
(37559, 29351, '4', 'Anna University ', '', 'MCA', '2025', 75.00, '', 1, '2026-04-01 01:17:51', 0, NULL, 0, NULL, 1),
(37560, 29354, '3', 'ANNA UNIVERSITY ', '', 'BE CSE', '2024', 8.00, '', 1, '2026-04-01 01:21:24', 0, NULL, 0, NULL, 1),
(37561, 29350, '3', 'anna university', '', 'bachelor of engineering', '2023', 78.90, '', 1, '2026-04-01 01:49:41', 0, NULL, 0, NULL, 1),
(37562, 29350, '2', 'tamilnadu state board', '', '', '2019', 65.20, '', 1, '2026-04-01 01:50:30', 0, NULL, 0, NULL, 1),
(37563, 29350, '1', 'tamilnadu state board', '', '', '2017', 91.20, '', 1, '2026-04-01 01:50:55', 0, NULL, 0, NULL, 1),
(37564, 29355, '3', 'University of madras ', '', 'BCA', '2025', 68.82, '', 1, '2026-04-01 02:42:45', 0, NULL, 0, NULL, 1),
(37565, 29358, '3', 'Madras University ', '', 'B.com', '2019', 65.00, '', 1, '2026-04-01 06:16:40', 0, NULL, 0, NULL, 1),
(37566, 29359, '4', 'Bharathidasan university ', '', 'MBA', '2026', 72.00, '', 1, '2026-04-02 04:28:54', 0, NULL, 0, NULL, 1),
(37567, 29361, '4', 'Alagappa University ', '', 'MBA HR', '2025', 80.00, '', 1, '2026-04-02 05:19:03', 0, NULL, 0, NULL, 1),
(37568, 29360, '5', 'Madras University ', '', 'BBA ', '2018', 80.00, '', 1, '2026-04-02 05:21:35', 0, NULL, 0, NULL, 1),
(37569, 29352, '4', 'Anna university ', '', 'MCA', '2025', 71.00, '', 1, '2026-04-02 05:22:25', 0, NULL, 0, NULL, 1),
(37570, 29362, '4', 'Anna University ', '', 'MCA', '2025', 75.00, '', 1, '2026-04-02 05:23:10', 0, NULL, 0, NULL, 1),
(37571, 29364, '3', 'Anna University ', '', 'B.e ', '2020', 62.00, '', 1, '2026-04-02 05:28:59', 0, NULL, 0, NULL, 1),
(37572, 29348, '3', 'Madurai Kamarajar university', '', 'B. Sc computer science', '2023', 68.00, '', 1, '2026-04-02 05:35:55', 0, NULL, 0, NULL, 1),
(37573, 29365, '3', 'Queen Mary\'s college (autonomous)', '', 'BA sociology ', '2024', 60.00, '', 1, '2026-04-02 05:36:35', 0, NULL, 0, NULL, 1),
(37574, 29347, '1', 'Tamil Nadu State board', '', '', '2019', 92.00, '', 1, '2026-04-02 05:49:02', 0, NULL, 0, NULL, 1),
(37575, 29347, '2', 'Tamil Nadu State Board', '', '', '2021', 91.00, '', 1, '2026-04-02 05:49:32', 0, NULL, 0, NULL, 1),
(37576, 29347, '3', 'Anna university', '', 'B. E', '2025', 83.50, '', 1, '2026-04-02 05:49:58', 0, NULL, 0, NULL, 1),
(37577, 29367, '3', 'S. A engineering college', '', 'B. Tech. IT', '2026', 76.40, '', 1, '2026-04-02 06:22:19', 0, NULL, 0, NULL, 1),
(37578, 29366, '3', 'Rajalakshmi Engineering College ', '', 'B.Tech', '2025', 6.98, '', 1, '2026-04-02 06:22:47', 0, NULL, 0, NULL, 1),
(37579, 29366, '2', 'Sunbeam Matriculation Higher Secondary School ', '', '', '2021', 81.11, '', 1, '2026-04-02 06:23:28', 1, '2026-04-02 06:24:12', 0, NULL, 1),
(37580, 29366, '1', 'Sunbeam Matriculation Higher Secondary School ', '', '', '2019', 74.44, '', 1, '2026-04-02 06:24:35', 0, NULL, 0, NULL, 1),
(37581, 29368, '3', 'S.A.Engineering College ', '', 'B.Tech IT ', '2025', 7.13, '', 1, '2026-04-02 06:27:10', 0, NULL, 0, NULL, 1),
(37582, 29368, '2', 'Vetri Vikaas Boys Higher Secondary School ', '', '', '2021', 74.00, '', 1, '2026-04-02 06:27:49', 0, NULL, 0, NULL, 1),
(37583, 29357, '3', 'Anna university', '', 'B.e', '2025', 7.87, '', 1, '2026-04-02 06:31:42', 0, NULL, 0, NULL, 1),
(37584, 29369, '3', 'anna University', '', 'B.E. cse', '2026', 80.00, '', 1, '2026-04-02 07:33:53', 1, '2026-04-02 07:35:07', 0, NULL, 0),
(37585, 29369, '2', 'state board', '', '', '2022', 80.33, '', 1, '2026-04-02 07:34:51', 1, '2026-04-02 07:35:04', 0, NULL, 0),
(37586, 29369, '1', 'state Board', '', '', '2020', 81.40, '', 1, '2026-04-02 07:35:39', 0, NULL, 0, NULL, 1),
(37587, 29369, '2', 'state Board', '', '', '2022', 80.33, '', 1, '2026-04-02 07:36:13', 0, NULL, 0, NULL, 1),
(37588, 29369, '3', 'anna University', '', 'B.E. cse', '2026', 80.00, '', 1, '2026-04-02 07:36:39', 0, NULL, 0, NULL, 1),
(37589, 29370, '1', 'state board', '', '', '2020', 73.00, '', 1, '2026-04-02 07:44:25', 0, NULL, 0, NULL, 1),
(37590, 29370, '2', 'state board', '', '', '2022', 64.00, '', 1, '2026-04-02 07:44:43', 0, NULL, 0, NULL, 1),
(37591, 29370, '3', 'anna university', '', 'B.E', '2026', 80.00, '', 1, '2026-04-02 07:45:35', 0, NULL, 0, NULL, 1),
(37592, 29371, '3', 'anna university', '', 'b.e cse', '2026', 80.00, '', 1, '2026-04-02 07:54:00', 0, NULL, 0, NULL, 1),
(37593, 29371, '2', 'state', '', '', '2022', 74.00, '', 1, '2026-04-02 07:55:07', 0, NULL, 0, NULL, 1),
(37594, 29371, '1', 'state', '', '', '2020', 72.00, '', 1, '2026-04-02 07:55:43', 0, NULL, 0, NULL, 1),
(37595, 29372, '1', 'board', '', '', '2020', 56.00, '', 1, '2026-04-02 07:58:14', 1, '2026-04-02 07:59:09', 0, NULL, 1),
(37596, 29372, '2', 'board', '', '', '2021', 58.00, '', 1, '2026-04-02 07:59:29', 0, NULL, 0, NULL, 1),
(37597, 29372, '3', 'university', '', 'BE', '2026', 75.00, '', 1, '2026-04-02 07:59:57', 0, NULL, 0, NULL, 1),
(37598, 29375, '3', 'Periyar University ', '', 'BSC ', '2021', 74.00, '', 1, '2026-04-02 09:50:10', 0, NULL, 0, NULL, 1),
(37599, 29374, '3', 'Periya university Salem ', '', 'Bsc computer science ', '2021', 60.00, '', 1, '2026-04-02 09:53:31', 0, NULL, 0, NULL, 1),
(37600, 29376, '3', 'Norwich institute of technologies ', '', 'BA English ', '2024', 74.00, '', 1, '2026-04-02 04:38:19', 0, NULL, 0, NULL, 1),
(37601, 29377, '3', 'Sri kanyaka parmeshwari arts and science college for women ', '', 'B.com', '2021', 74.00, '', 1, '2026-04-03 04:55:02', 154, '2026-04-03 10:31:27', 0, NULL, 1),
(37602, 29380, '3', 'thiruvallur University ', '', 'b.com', '2022', 70.00, '', 1, '2026-04-03 06:27:09', 0, NULL, 0, NULL, 1),
(37603, 29382, '3', 'MS', '', 'B.com', '2025', 72.00, '', 1, '2026-04-03 08:36:14', 0, NULL, 0, NULL, 1),
(37604, 29383, '3', 'Bharathidasan University Trichy ', '', 'B.sc', '2023', 70.00, '', 1, '2026-04-03 10:58:54', 0, NULL, 0, NULL, 1),
(37605, 29384, '3', 'Madras University ', '', 'B.com', '2023', 60.00, '', 1, '2026-04-04 06:50:22', 1, '2026-04-04 06:50:58', 0, NULL, 0),
(37606, 29384, '3', 'Madras University ', '', 'B.com', '2023', 60.00, '', 1, '2026-04-04 06:51:25', 0, NULL, 0, NULL, 1),
(37607, 29385, '3', 'Vels University ', '', 'Be cse', '2025', 55.00, '', 1, '2026-04-04 06:53:20', 0, NULL, 0, NULL, 1),
(37608, 29386, '3', 'Madras University ', '', 'B.com ', '2023', 90.00, '', 1, '2026-04-06 03:41:24', 0, NULL, 0, NULL, 1),
(37609, 29387, '4', 'Anna university ', '', 'B.E (EEE)', '2020', 68.00, '', 1, '2026-04-06 05:43:05', 0, NULL, 0, NULL, 1),
(37610, 29318, '4', 'Bharathidasan University Centre for Distance education tiruchirapalli ', '', 'M Com', '2025', 67.00, '', 1, '2026-04-06 06:10:17', 0, NULL, 0, NULL, 1),
(37611, 29318, '3', 'Bharathidasan University tiruchirapalli ', '', 'B com ', '2023', 76.00, '', 1, '2026-04-06 06:10:56', 0, NULL, 0, NULL, 1),
(37612, 29390, '3', 'msms rural polytechnic', '', 'civil engineering', '2020', 65.00, '', 1, '2026-04-06 08:04:08', 0, NULL, 0, NULL, 1),
(37613, 29392, '3', 'Mgr university ', '', 'Bsc biotechnology ', '2021', 60.00, '', 1, '2026-04-06 01:40:04', 1, '2026-04-07 04:39:12', 0, NULL, 0),
(37614, 29392, '3', 'Dr.mgr university ', '', 'Bsc biotechnology ', '2021', 60.00, '', 1, '2026-04-07 04:39:27', 0, NULL, 0, NULL, 1),
(37615, 29393, '3', 'Bangalore City University ', '', '', '2023', 60.00, '', 1, '2026-04-07 04:46:54', 0, NULL, 0, NULL, 1),
(37616, 29394, '3', 'madras university', '', 'bsc computer science', '2025', 68.00, '', 1, '2026-04-07 05:08:20', 0, NULL, 0, NULL, 1),
(37617, 29395, '4', 'College of Engineering Guindy, Anna University ', '', 'M.sc Integrated IT ', '2024', 73.00, '', 1, '2026-04-07 05:20:34', 1, '2026-04-07 05:20:58', 0, NULL, 1),
(37618, 29395, '2', 'Rajavignesh Higher Secondary School ', '', '', '2019', 77.00, '', 1, '2026-04-07 05:21:50', 0, NULL, 0, NULL, 1),
(37619, 29395, '1', 'Government Higher Secondary School ', '', '', '2017', 92.00, '', 1, '2026-04-07 05:22:23', 0, NULL, 0, NULL, 1),
(37620, 29396, '4', 'Dr Mahalingam College of Engineering and Technology in Pollachi ', '', 'MCA ', '2026', 79.00, '', 1, '2026-04-07 05:48:23', 0, NULL, 0, NULL, 1),
(37621, 29397, '4', 'Jawaharlal Nehru institute of technology ', '', 'Bachelors of science ', '2019', 67.00, '', 1, '2026-04-07 06:37:32', 0, NULL, 0, NULL, 1),
(37622, 29398, '3', 'University of Madras ', '', 'Bcom general ', '2024', 72.00, '', 1, '2026-04-07 07:06:28', 0, NULL, 0, NULL, 1),
(37623, 29399, '3', 'mahendra engineering college', '', 'b.e', '2025', 84.00, '', 1, '2026-04-07 07:32:19', 0, NULL, 0, NULL, 1),
(37624, 29401, '3', 'Kuvempu University ', '', 'BCA ', '2024', 7.80, '', 1, '2026-04-07 11:28:20', 0, NULL, 0, NULL, 1),
(37625, 29402, '3', 'Justice basheer ahmed syeed college', '', 'B.com', '2020', 65.00, '', 1, '2026-04-07 12:43:17', 0, NULL, 0, NULL, 1),
(37626, 29403, '4', 'Jeppiaar institute of techonolgy ', '', 'MBA hr operation management ', '2025', 7.56, '', 1, '2026-04-07 12:59:02', 0, NULL, 0, NULL, 1),
(37627, 29400, '3', 'madras university', '', 'bsc plant biology and biotechnology', '2024', 70.00, '', 1, '2026-04-07 04:05:52', 0, NULL, 0, NULL, 1),
(37628, 29406, '3', 'anna univerit', '', 'BE ECE', '2025', 8.14, '', 154, '2026-04-08 11:59:29', 0, NULL, 0, NULL, 1),
(37629, 29410, '1', 'tamil nadu board ', '', '', '2019', 82.00, '', 1, '2026-04-08 07:50:14', 0, NULL, 0, NULL, 1),
(37630, 29410, '2', 'tamil nadu board ', '', '', '2021', 85.00, '', 1, '2026-04-08 07:50:46', 1, '2026-04-08 07:50:57', 0, NULL, 1),
(37631, 29410, '3', 'loyola icam college of engineering and technology', '', 'bachelors of engineering', '2025', 77.00, '', 1, '2026-04-08 07:51:47', 0, NULL, 0, NULL, 1),
(37632, 29411, '3', 'Pondicherry university ', '', 'Visual communication ', '2025', 7.10, '', 1, '2026-04-08 09:24:56', 0, NULL, 0, NULL, 1),
(37633, 29413, '3', 'IITM ', '', 'Commerce ', '2025', 75.00, '', 1, '2026-04-08 09:26:42', 0, NULL, 0, NULL, 1),
(37634, 29411, '1', 'State board', '', '', '2020', 85.40, '', 1, '2026-04-08 09:28:07', 0, NULL, 0, NULL, 1),
(37635, 29411, '2', 'State board ', '', '', '2022', 69.00, '', 1, '2026-04-08 09:28:43', 0, NULL, 0, NULL, 1),
(37636, 29412, '1', 'cbse', '', '', '2020', 68.00, '', 1, '2026-04-08 09:31:19', 0, NULL, 0, NULL, 1),
(37637, 29412, '2', 'cbse', '', '', '2022', 66.00, '', 1, '2026-04-08 09:31:41', 0, NULL, 0, NULL, 1),
(37638, 29412, '3', 'pondicherry university ', '', 'bsc', '2025', 75.00, '', 1, '2026-04-08 09:32:25', 0, NULL, 0, NULL, 1),
(37639, 29415, '2', 'Bagalkot university ', '', '', '2025', 65.00, '', 1, '2026-04-08 09:37:01', 0, NULL, 0, NULL, 1),
(37640, 29414, '2', 'State board of tamilnadu ', '', '', '2024', 83.00, '', 1, '2026-04-08 09:43:17', 0, NULL, 0, NULL, 1),
(37641, 29419, '3', 'DMI COLLEGE OF ENGINEERING ', '', 'B.tech', '2025', 75.00, '', 1, '2026-04-08 12:47:55', 0, NULL, 0, NULL, 1),
(37642, 29420, '3', 'SASTRA University ', '', 'B.com', '2019', 66.00, '', 1, '2026-04-08 12:48:19', 0, NULL, 0, NULL, 1),
(37643, 29421, '3', 'anna university', '', 'b.tech  ', '2026', 7.56, '', 1, '2026-04-09 03:09:10', 0, NULL, 0, NULL, 1),
(37644, 29423, '3', 'Avichi college of arts and science ', '', 'BCA ', '2023', 75.00, '', 1, '2026-04-09 05:29:46', 0, NULL, 0, NULL, 1),
(37645, 29417, '3', 'Anna University ', '', 'BE Computer Science ', '2024', 75.00, '', 1, '2026-04-09 05:38:55', 0, NULL, 0, NULL, 1),
(37646, 29427, '3', 'Madras University ', '', 'BSc computer science ', '2025', 81.00, '', 1, '2026-04-09 05:47:01', 0, NULL, 0, NULL, 1),
(37647, 29426, '3', 'Anna University ', '', 'B.E Computer science and En', '2025', 75.00, '', 1, '2026-04-09 05:47:14', 0, NULL, 0, NULL, 1),
(37648, 20769, '3', 'Sathyabama University ', '', 'B.E', '2024', 7.50, '', 1, '2026-04-09 06:10:49', 0, NULL, 0, NULL, 1),
(37649, 29429, '3', 'Sathyabama University ', '', 'B.E', '2024', 7.50, '', 1, '2026-04-09 06:21:00', 0, NULL, 0, NULL, 1),
(37650, 29430, '4', 'Bangalore University ', '', 'BBA ', '2022', 75.00, '', 1, '2026-04-09 06:35:56', 0, NULL, 0, NULL, 1),
(37651, 29430, '2', 'State board ', '', '', '2018', 60.00, '', 1, '2026-04-09 06:36:40', 0, NULL, 0, NULL, 1),
(37652, 29430, '1', 'State board ', '', '', '2016', 65.00, '', 1, '2026-04-09 06:37:06', 0, NULL, 0, NULL, 1),
(37653, 29432, '3', 'anna universit', '', 'bE ECE', '2022', 74.00, '', 154, '2026-04-09 12:55:09', 0, NULL, 0, NULL, 1),
(37654, 29433, '3', 'madras univerit', '', 'bcom', '2022', 74.00, '', 154, '2026-04-09 03:02:58', 0, NULL, 0, NULL, 1),
(37655, 29433, '3', 'madras univerit', '', 'bcom', '2022', 74.00, '', 154, '2026-04-09 03:03:00', 0, NULL, 0, NULL, 1),
(37656, 29434, '3', 'Sri KANYAKA Parameshwari arts and science college for women ', '', 'Bsc(cs)', '2024', 80.00, '', 1, '2026-04-09 10:09:46', 0, NULL, 0, NULL, 1),
(37657, 29435, '1', 'state', '', '', '2018', 80.00, '', 1, '2026-04-09 11:44:03', 0, NULL, 0, NULL, 1),
(37658, 29435, '2', 'state ', '', '', '2020', 60.00, '', 1, '2026-04-09 11:44:38', 0, NULL, 0, NULL, 1),
(37659, 29435, '3', 'Dr. M.G.R. Educational And Research Institute', '', 'BTech Computer Science engineering', '2024', 60.00, '', 1, '2026-04-09 11:46:10', 1, '2026-04-09 11:48:21', 0, NULL, 1),
(37660, 29436, '3', 'Ethiraj College for Women ', '', 'BSC Computer Science ', '2025', 73.00, '', 1, '2026-04-09 12:57:21', 0, NULL, 0, NULL, 1),
(37661, 29436, '2', 'Sri Sayee vivekananda vidyalaya matriculation higher secondary school ', '', '', '2022', 71.50, '', 1, '2026-04-09 12:58:27', 0, NULL, 0, NULL, 1),
(37662, 29436, '1', 'Sri Sayee vivekananda vidyalaya matriculation higher secondary school ', '', '', '2020', 70.00, '', 1, '2026-04-09 12:59:09', 0, NULL, 0, NULL, 1),
(37663, 29438, '4', 'natraj university', '', 'msc', '2022', 80.00, '', 1, '2026-04-09 02:00:12', 0, NULL, 0, NULL, 1),
(37664, 29422, '3', 'anna university', '', 'btech', '2025', 74.00, '', 1, '2026-04-09 03:24:14', 0, NULL, 0, NULL, 1),
(37665, 29422, '1', 'state board of tamilnadu', '', '', '2019', 71.00, '', 1, '2026-04-09 03:25:09', 0, NULL, 0, NULL, 1),
(37666, 29439, '3', 'Madras University ', '', 'B.sc Mathematics ', '2018', 75.00, '', 1, '2026-04-10 05:04:30', 0, NULL, 0, NULL, 1),
(37667, 29438, '3', 'madras universit', '', 'BCA', '2022', 84.00, '', 154, '2026-04-10 10:34:58', 0, NULL, 0, NULL, 1),
(37668, 29440, '2', 'State board', '', '', '2010', 72.50, '', 1, '2026-04-10 05:13:27', 0, NULL, 0, NULL, 1),
(37669, 29442, '4', 'University of Madras ', '', 'Master of Compute Application ', '2026', 1.00, '', 1, '2026-04-10 05:49:57', 0, NULL, 0, NULL, 1),
(37670, 29442, '3', 'University of Madras ', '', 'Bachelor of Commerce ', '2023', 72.00, '', 1, '2026-04-10 05:50:18', 0, NULL, 0, NULL, 1),
(37671, 29445, '3', 'queen mars', '', 'bsc mathematics', '2024', 79.00, '', 154, '2026-04-10 11:33:03', 0, NULL, 0, NULL, 1),
(37672, 29443, '3', 'Anna University ', '', 'BE CSE', '2025', 75.00, '', 1, '2026-04-10 06:06:53', 0, NULL, 0, NULL, 1),
(37673, 29444, '3', 'madars university', '', 'BBA', '2024', 65.00, '', 1, '2026-04-10 06:08:46', 0, NULL, 0, NULL, 1),
(37674, 29446, '3', 'anna university', '', 'information technology', '2024', 66.00, '', 1, '2026-04-10 07:12:41', 0, NULL, 0, NULL, 1),
(37675, 29447, '3', 'Anna University ', '', 'BE', '2025', 69.00, '', 1, '2026-04-10 07:26:21', 0, NULL, 0, NULL, 1),
(37676, 29448, '3', 'madras university', '', 'bsc clinical nutrition ', '2023', 73.00, '', 154, '2026-04-10 12:59:06', 0, NULL, 0, NULL, 1),
(37677, 29455, '3', 'madras university', '', 'bcom', '2023', 67.00, '', 154, '2026-04-10 02:53:47', 0, NULL, 0, NULL, 1),
(37678, 29454, '3', 'Pondicherry University ', '', 'B sc(IT)', '2024', 62.00, '', 1, '2026-04-10 09:31:22', 0, NULL, 0, NULL, 1),
(37679, 29456, '4', 'madras universit', '', 'MBA', '2024', 71.00, '', 154, '2026-04-10 03:03:36', 0, NULL, 0, NULL, 1),
(37680, 29458, '3', 'annamalai universit', '', 'bsc computer science', '2024', 85.00, '', 154, '2026-04-10 03:11:56', 0, NULL, 0, NULL, 1),
(37681, 29457, '3', 'Pondicherry University ', '', 'Bsc(IT)', '2024', 62.00, '', 1, '2026-04-10 09:43:16', 0, NULL, 0, NULL, 1),
(37682, 29459, '3', 'madras university', '', 'bcom computer application', '2021', 75.00, '', 154, '2026-04-10 03:21:31', 0, NULL, 0, NULL, 1),
(37683, 29462, '3', 'Kalasalingam academy of research and education ', '', 'BSC Computer science ', '2025', 83.00, '', 1, '2026-04-11 05:20:39', 0, NULL, 0, NULL, 1),
(37684, 29463, '3', 'Anna Adarsh College for women ', '', 'BCA', '2025', 7.90, '', 1, '2026-04-11 05:30:44', 0, NULL, 0, NULL, 1),
(37685, 29408, '3', 'Madurai kamaraj university ', '', 'B. Com(Computer Application)', '2022', 83.20, '', 1, '2026-04-11 05:35:04', 0, NULL, 0, NULL, 1),
(37686, 29464, '3', 'Kongunaadu Arts and Science College ', '', 'Bsc.Information Technology ', '2023', 72.00, '', 1, '2026-04-11 05:39:44', 0, NULL, 0, NULL, 1),
(37687, 29467, '3', 'thiruvallur universit', '', 'bsc computer science', '2025', 78.00, '', 154, '2026-04-11 11:24:40', 0, NULL, 0, NULL, 1),
(37688, 29466, '1', 'STATE BOARD', '', '', '2016', 77.60, '', 1, '2026-04-11 05:55:44', 0, NULL, 0, NULL, 1),
(37689, 29466, '2', 'State board', '', '', '2018', 75.75, '', 1, '2026-04-11 05:56:01', 0, NULL, 0, NULL, 1),
(37690, 29466, '3', 'Madras University ', '', 'BCA', '2021', 80.04, '', 1, '2026-04-11 05:56:27', 0, NULL, 0, NULL, 1),
(37691, 29468, '1', 'Government girls Higher secondary school melpallipattu ', '', '', '2019', 60.00, '', 1, '2026-04-11 06:13:10', 1, '2026-04-11 06:13:55', 0, NULL, 1),
(37692, 29468, '2', 'Government girls Higher secondary school melpallipattu ', '', '', '2021', 70.00, '', 1, '2026-04-11 06:13:39', 0, NULL, 0, NULL, 1),
(37693, 29468, '3', 'Adhiyaman Arts and science College for women ', '', 'B.sc Maths', '2024', 75.00, '', 1, '2026-04-11 06:14:35', 0, NULL, 0, NULL, 1),
(37694, 29470, '3', 'Mahendra Institute of Technology ', '', 'B.E CSE', '2023', 77.00, '', 1, '2026-04-11 08:40:06', 0, NULL, 0, NULL, 1),
(37695, 29471, '3', 'panimalar engineering college', '', ' b e', '2026', 71.00, '', 1, '2026-04-11 10:28:06', 0, NULL, 0, NULL, 1),
(37696, 29472, '4', 'measi institute of technolog', '', 'mca', '2024', 0.00, '', 154, '2026-04-11 04:05:48', 0, NULL, 0, NULL, 1),
(37697, 29474, '3', 'Anna University ', '', 'BE', '2023', 7.40, '', 1, '2026-04-13 04:21:25', 0, NULL, 0, NULL, 1),
(37698, 29449, '4', 'Alagappa university ', '', 'mBA', '2025', 86.00, '', 1, '2026-04-13 04:32:54', 0, NULL, 0, NULL, 1),
(37699, 29475, '2', 'Bangalore ', '', '', '2020', 63.00, '', 1, '2026-04-13 04:44:41', 0, NULL, 0, NULL, 1),
(37700, 29476, '3', 'Mku', '', 'BCA', '2024', 78.00, '', 1, '2026-04-13 05:00:03', 0, NULL, 0, NULL, 1),
(37701, 29476, '1', 'TAMILNADU SCHOOL OF EXAMINATION ', '', '', '2018', 63.00, '', 1, '2026-04-13 05:00:41', 1, '2026-04-13 05:01:08', 0, NULL, 1),
(37702, 29476, '2', 'TAMILNADU SCHOOL OF EXAMINATION ', '', '', '2021', 75.00, '', 1, '2026-04-13 05:01:23', 0, NULL, 0, NULL, 1),
(37703, 29477, '3', 'Madras University ', '', 'BCA', '2024', 61.00, '', 1, '2026-04-13 05:42:40', 0, NULL, 0, NULL, 1),
(37704, 29478, '3', 'Dr.M.G.R  university ', '', 'B.tech IT', '2025', 73.00, '', 1, '2026-04-13 05:44:22', 0, NULL, 0, NULL, 1),
(37705, 29479, '4', 'Davangere university ', '', 'Mcom', '2025', 80.00, '', 1, '2026-04-13 05:55:01', 0, NULL, 0, NULL, 1),
(37706, 29480, '3', 'Anna University ', '', 'B.E', '2026', 81.00, '', 1, '2026-04-13 05:55:49', 0, NULL, 0, NULL, 1),
(37707, 29481, '4', 'Madras university ', '', 'MBA(HRM)', '2026', 92.00, '', 1, '2026-04-13 06:16:40', 0, NULL, 0, NULL, 1),
(37708, 29486, '2', 'State board ', '', '', '2021', 53.00, '', 1, '2026-04-13 06:22:06', 0, NULL, 0, NULL, 1),
(37709, 29485, '3', 'Madras University ', '', 'B.com Accounting and finance ', '2025', 80.00, '', 1, '2026-04-13 06:24:43', 0, NULL, 0, NULL, 1),
(37710, 29487, '4', 'Bharathidasan University', '', 'mba', '2023', 80.00, '', 1, '2026-04-13 06:25:05', 0, NULL, 0, NULL, 1),
(37711, 29487, '4', 'bharathidasan University', '', 'mba', '2023', 80.00, '', 1, '2026-04-13 06:26:08', 1, '2026-04-13 06:26:16', 0, NULL, 0),
(37712, 29484, '3', 'Anna University ', '', 'BE', '2025', 85.00, '', 1, '2026-04-13 06:37:58', 0, NULL, 0, NULL, 1),
(37713, 29484, '2', 'Intermediate Board of secondary education ', '', '', '2021', 91.00, '', 1, '2026-04-13 06:38:23', 0, NULL, 0, NULL, 1),
(37714, 29483, '4', 'Madurai Kamarajar University ', '', 'Msc Statistics ', '2025', 67.00, '', 1, '2026-04-13 06:40:43', 0, NULL, 0, NULL, 1),
(37715, 29489, '3', 'Tagore arts and science college Puducherry ', '', 'B sc computer science ', '2024', 5.50, '', 1, '2026-04-13 06:45:49', 0, NULL, 0, NULL, 1),
(37716, 29482, '3', 'Anna University ', '', 'B.E.', '2025', 65.00, '', 1, '2026-04-13 06:47:07', 0, NULL, 0, NULL, 1),
(37717, 29493, '3', 'alagappa universit', '', 'ba english', '2023', 46.00, '', 154, '2026-04-13 12:19:26', 0, NULL, 0, NULL, 1),
(37718, 29492, '3', 'Anna University ', '', 'BE. Computer Science ', '2024', 80.00, '', 1, '2026-04-13 06:51:47', 0, NULL, 0, NULL, 1),
(37719, 29492, '1', 'State Board of Tamil Nadu ', '', '', '2018', 79.00, '', 1, '2026-04-13 06:52:47', 0, NULL, 0, NULL, 1),
(37720, 29492, '2', 'State Board of Tamil Nadu ', '', '', '2020', 60.00, '', 1, '2026-04-13 06:53:33', 0, NULL, 0, NULL, 1),
(37721, 29490, '3', 'anna universit', '', 'BE', '2025', 65.00, '', 154, '2026-04-13 12:31:59', 0, NULL, 0, NULL, 1),
(37722, 29494, '3', 'Thiruvalluvar university ', '', 'BA English ', '2021', 80.00, '', 1, '2026-04-13 07:03:30', 0, NULL, 0, NULL, 1),
(37723, 29495, '3', 'Anna University ', '', 'B.Tech in Information technology ', '2025', 7.81, '', 1, '2026-04-13 07:37:23', 0, NULL, 0, NULL, 1),
(37724, 29498, '3', 'Madras University ', '', 'B.sc', '2018', 89.00, '', 1, '2026-04-13 03:36:16', 0, NULL, 0, NULL, 1),
(37725, 29500, '4', 'Bangalore University ', '', 'B.com', '2015', 39.00, '', 1, '2026-04-14 06:20:13', 0, NULL, 0, NULL, 1),
(37726, 29501, '3', 'Yogi vemana university ', '', 'Bachelor of engineering ', '2024', 75.00, '', 1, '2026-04-14 09:02:01', 0, NULL, 0, NULL, 1),
(37727, 29501, '2', 'State Board technical education and training board ', '', '', '2021', 68.00, '', 1, '2026-04-14 09:02:38', 0, NULL, 0, NULL, 1),
(37728, 29502, '3', 'Bharathidasan university ', '', 'Bsc', '2025', 78.00, '', 1, '2026-04-15 04:04:21', 0, NULL, 0, NULL, 1),
(37729, 29503, '4', 'Alagappa university ', '', 'MBA- HR', '2026', 77.00, '', 1, '2026-04-15 04:46:40', 0, NULL, 0, NULL, 1),
(37730, 29503, '3', 'Anna university ', '', 'BE Electronics and communication engineering ', '2024', 80.00, '', 1, '2026-04-15 04:47:14', 0, NULL, 0, NULL, 1),
(37731, 29505, '3', 'Alagappa university ', '', 'Bsc.computer science', '2025', 70.00, '', 1, '2026-04-15 05:10:17', 0, NULL, 0, NULL, 1),
(37732, 29507, '3', 'Thiruvalluvar University ', '', 'Bsc physics ', '2024', 60.00, '', 1, '2026-04-15 05:45:47', 0, NULL, 0, NULL, 1),
(37733, 29497, '3', 'Anna University ', '', 'B.E', '2025', 77.00, '', 1, '2026-04-15 05:46:09', 0, NULL, 0, NULL, 1),
(37734, 29507, '2', 'State bord', '', '', '2021', 70.00, '', 1, '2026-04-15 05:46:51', 0, NULL, 0, NULL, 1),
(37735, 29506, '3', 'b.com', '', 'b.com', '2020', 60.00, '', 1, '2026-04-15 05:46:52', 0, NULL, 0, NULL, 1),
(37736, 29508, '3', 'Bhardhidasan unviersity', '', 'Bca', '2023', 70.00, '', 1, '2026-04-15 05:50:38', 0, NULL, 0, NULL, 1),
(37737, 29509, '1', 'Government High School', '', '', '2020', 76.00, '', 1, '2026-04-15 06:00:17', 1, '2026-04-15 06:00:38', 0, NULL, 1),
(37738, 29510, '3', 'Bharathidasan ', '', 'Bsc micro biology ', '2024', 70.00, '', 1, '2026-04-15 06:01:22', 0, NULL, 0, NULL, 1),
(37739, 29509, '2', 'Government Girls Higher Secondary School', '', '', '2022', 71.00, '', 1, '2026-04-15 06:01:38', 0, NULL, 0, NULL, 1),
(37740, 29509, '3', 'Gobi Arts & Science College', '', 'B. Sc', '2025', 73.00, '', 1, '2026-04-15 06:02:29', 0, NULL, 0, NULL, 1),
(37741, 29511, '3', 'Visveswarya Technological University, Belgaum', '', 'BE', '2026', 90.00, '', 1, '2026-04-15 06:31:59', 0, NULL, 0, NULL, 1),
(37742, 29512, '3', 'University Of Madras ', '', 'B.SC', '2024', 72.00, '', 1, '2026-04-15 06:34:37', 0, NULL, 0, NULL, 1),
(37743, 29514, '3', 'meenakshi sundararajan engineering college', '', 'bachelor of engineering', '2025', 73.00, '', 1, '2026-04-15 06:47:32', 0, NULL, 0, NULL, 1),
(37744, 14842, '4', 'Madras university', '', 'Hrm ', '2027', 67.00, '', 1, '2026-04-15 06:50:22', 0, NULL, 0, NULL, 1),
(37745, 14842, '1', 'State board', '', '', '2017', 69.00, '', 1, '2026-04-15 06:51:06', 0, NULL, 0, NULL, 1),
(37746, 14842, '2', 'State board', '', '', '2019', 59.00, '', 1, '2026-04-15 06:51:44', 0, NULL, 0, NULL, 1),
(37747, 14842, '3', 'Madras university', '', 'BA economic', '2022', 69.94, '', 1, '2026-04-15 06:52:42', 0, NULL, 0, NULL, 1),
(37748, 29516, '4', 'madras university', '', 'mcom', '2021', 80.00, '', 154, '2026-04-15 12:38:59', 0, NULL, 0, NULL, 1),
(37749, 29516, '3', 'madras university', '', 'bcom', '2019', 90.00, '', 154, '2026-04-15 12:39:19', 0, NULL, 0, NULL, 1),
(37750, 29518, '3', 'Madras University ', '', 'Biotechnology ', '2014', 70.00, '', 1, '2026-04-15 07:42:30', 0, NULL, 0, NULL, 1),
(37751, 29522, '3', 'Madras University ', '', 'Batchelor of computer science ', '2020', 6.90, '', 1, '2026-04-15 09:28:44', 0, NULL, 0, NULL, 1),
(37752, 29524, '3', 'madras University', '', 'bca', '2023', 75.00, '', 1, '2026-04-15 11:48:08', 0, NULL, 0, NULL, 1),
(37753, 29526, '3', 'Madras', '', 'Nutrition and dietetics', '2026', 75.00, '', 1, '2026-04-15 11:48:57', 0, NULL, 0, NULL, 1),
(37754, 29525, '3', 'Srimad andavan art\'s and science college ', '', 'BBA', '2022', 82.00, '', 1, '2026-04-15 12:04:00', 0, NULL, 0, NULL, 1),
(37755, 29527, '5', 'DoAt', '', 'Printing technology ', '2024', 80.00, '', 1, '2026-04-15 12:16:00', 0, NULL, 0, NULL, 1),
(37756, 29529, '1', 'tamilnadu board', '', '', '2020', 98.60, '', 1, '2026-04-15 02:08:51', 0, NULL, 0, NULL, 1),
(37757, 29529, '2', 'tamilnadu board', '', '', '2022', 86.67, '', 1, '2026-04-15 02:09:18', 0, NULL, 0, NULL, 1),
(37758, 29529, '3', 'anna university', '', 'b.e electronics and communication engineering', '2026', 77.00, '', 1, '2026-04-15 02:11:02', 0, NULL, 0, NULL, 1),
(37759, 29530, '3', 'Anna university ', '', 'Be/cse', '2025', 8.00, '', 1, '2026-04-15 02:20:34', 0, NULL, 0, NULL, 1),
(37760, 29523, '3', 'University', '', 'B.tech', '2025', 79.00, '', 1, '2026-04-15 03:15:58', 0, NULL, 0, NULL, 1),
(37761, 29531, '3', 'SA Engineering college chennai ', '', 'B.E electronics and Communication engineering ', '2025', 8.57, '', 1, '2026-04-16 04:44:45', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(37762, 29532, '3', 'Karpagam Institute of technology ', '', 'B.E /ECE', '2025', 7.09, '', 1, '2026-04-16 04:53:20', 0, NULL, 0, NULL, 1),
(37763, 29528, '4', 'Anna University Chennai ', '', 'MBA ', '2024', 68.00, '', 1, '2026-04-16 04:56:45', 0, NULL, 0, NULL, 1),
(37764, 29535, '1', 'State Board of Tamil Nadu ', '', '', '2017', 88.00, '', 1, '2026-04-16 05:21:03', 0, NULL, 0, NULL, 1),
(37765, 29534, '1', 'State board of TamilNadu', '', '', '2018', 96.00, '', 1, '2026-04-16 05:21:30', 0, NULL, 0, NULL, 1),
(37766, 29535, '2', 'State Board of Tamil Nadu ', '', '', '2019', 77.00, '', 1, '2026-04-16 05:21:37', 0, NULL, 0, NULL, 1),
(37767, 29534, '2', 'State board of TamilNadu ', '', '', '2021', 76.00, '', 1, '2026-04-16 05:21:47', 0, NULL, 0, NULL, 1),
(37768, 29535, '3', 'Thiruvalluvar University ', '', 'Bsc Computer Science ', '2022', 65.00, '', 1, '2026-04-16 05:22:05', 0, NULL, 0, NULL, 1),
(37769, 29535, '4', 'University of Madras ', '', 'Msc computer science ', '2025', 75.00, '', 1, '2026-04-16 05:22:32', 0, NULL, 0, NULL, 1),
(37770, 29537, '3', 'Bharathidasan university ', '', '', '2025', 80.00, '', 1, '2026-04-16 05:27:19', 0, NULL, 0, NULL, 1),
(37771, 29536, '3', 'Bharathidasan university ', '', 'B.com', '2024', 62.00, '', 1, '2026-04-16 05:29:13', 0, NULL, 0, NULL, 1),
(37772, 29504, '3', 'Madras University ', '', 'Bachelor of Computer Application', '2018', 66.00, '', 1, '2026-04-16 05:53:48', 0, NULL, 0, NULL, 1),
(37773, 29538, '3', 'MK UNIVERSITY ', '', 'BA ENGLISH ', '2024', 65.00, '', 1, '2026-04-16 06:10:44', 0, NULL, 0, NULL, 1),
(37774, 29539, '3', 'Anna university ', '', 'BE', '2026', 8.50, '', 1, '2026-04-16 06:44:18', 0, NULL, 0, NULL, 1),
(37775, 29540, '1', 'Tamil Nadu state board', '', 'B.E COMPUTER SCIENCE AND ENGINEERING ', '2019', 73.00, '', 1, '2026-04-16 07:02:21', 0, NULL, 0, NULL, 1),
(37776, 29540, '2', 'Tamil Nadu state board', '', '', '2021', 78.00, '', 1, '2026-04-16 07:02:50', 0, NULL, 0, NULL, 1),
(37777, 29540, '3', 'Anna University ', '', 'B.E COMPUTER SCIENCE AND ENGINEERING ', '2025', 78.00, '', 1, '2026-04-16 07:03:35', 0, NULL, 0, NULL, 1),
(37778, 29543, '3', 'Anna university', '', 'BE-CSE', '2025', 75.10, '', 1, '2026-04-16 07:45:06', 0, NULL, 0, NULL, 1),
(37779, 29541, '3', 'Anna University ', '', '', '2025', 7.37, '', 1, '2026-04-16 07:48:44', 0, NULL, 0, NULL, 1),
(37780, 29542, '3', 'University of Madras ', '', 'B.sc home science nutrition and dietetics ', '2024', 75.00, '', 1, '2026-04-16 08:01:25', 0, NULL, 0, NULL, 1),
(37781, 29545, '3', 'University ', '', 'B VOC BFSI ', '2026', 65.00, '', 1, '2026-04-16 09:29:11', 0, NULL, 0, NULL, 1),
(37782, 29544, '3', 'University ', '', 'B. Voc BFSI', '2026', 59.00, '', 1, '2026-04-16 09:31:56', 0, NULL, 0, NULL, 1),
(37783, 29546, '3', 'University ', '', 'B.voc(BFSI)', '2026', 60.00, '', 1, '2026-04-16 09:32:03', 0, NULL, 0, NULL, 1),
(37784, 29547, '3', 'Anna University ', '', 'Bachelor of engineering ', '2024', 75.00, '', 1, '2026-04-16 09:37:24', 0, NULL, 0, NULL, 1),
(37785, 29549, '1', 'State board ', '', '', '2019', 77.00, '', 1, '2026-04-16 11:14:52', 0, NULL, 0, NULL, 1),
(37786, 29549, '2', 'State board ', '', '', '2021', 84.03, '', 1, '2026-04-16 11:15:14', 0, NULL, 0, NULL, 1),
(37787, 29549, '3', 'Anna university ', '', 'B.Tech', '2025', 80.50, '', 1, '2026-04-16 11:15:45', 0, NULL, 0, NULL, 1),
(37788, 29550, '3', 'anna university', '', 'cse', '2025', 7.36, '', 1, '2026-04-16 11:15:48', 1, '2026-04-16 11:16:08', 0, NULL, 1),
(37789, 29550, '4', 'srm', '', 'data engineering', '2027', 8.26, '', 1, '2026-04-16 11:16:35', 0, NULL, 0, NULL, 1),
(37790, 29553, '3', 'Ramakrishna Mission Vivekananda College ', '', 'BSC CS', '2025', 8.20, '', 1, '2026-04-16 01:19:38', 0, NULL, 0, NULL, 1),
(37791, 29554, '3', 'Sk university ', '', 'B tech ', '2024', 7.80, '', 1, '2026-04-16 01:27:44', 0, NULL, 0, NULL, 1),
(37792, 29555, '4', 'dr.mgr uni ', '', 'mca', '2025', 8.00, '', 1, '2026-04-17 03:45:17', 0, NULL, 0, NULL, 1),
(37793, 29556, '3', 'Bharathidasan University', '', 'B.sc chemistry ', '2022', 78.00, '', 1, '2026-04-17 04:38:06', 0, NULL, 0, NULL, 1),
(37794, 29533, '3', 'Dr.M.G.R Eductional and Research Institute ', '', 'BBA', '2026', 72.00, '', 1, '2026-04-17 04:42:07', 0, NULL, 0, NULL, 1),
(37795, 29558, '4', 'Anna University ', '', 'MCA', '2020', 74.00, '', 1, '2026-04-17 04:44:26', 0, NULL, 0, NULL, 1),
(37796, 29560, '3', 'Madha institute of engineering and technology ', '', 'B.E computer science and engineering ', '2023', 82.00, '', 1, '2026-04-17 04:48:17', 0, NULL, 0, NULL, 1),
(37797, 29557, '3', 'Bharathidasan', '', 'Bsc', '2025', 74.00, '', 1, '2026-04-17 04:56:37', 0, NULL, 0, NULL, 1),
(37798, 29564, '3', 'University of Madras ', '', 'BCA', '2025', 62.89, '', 1, '2026-04-17 05:21:57', 0, NULL, 0, NULL, 1),
(37799, 29564, '2', 'Government Higher secondary school ', '', '', '2022', 67.10, '', 1, '2026-04-17 05:22:26', 0, NULL, 0, NULL, 1),
(37800, 29564, '1', 'Government Higher secondary school ', '', '', '2020', 73.20, '', 1, '2026-04-17 05:22:53', 0, NULL, 0, NULL, 1),
(37801, 29565, '3', 'madras university', '', 'ba political science', '2021', 65.00, '', 154, '2026-04-17 10:53:08', 0, NULL, 0, NULL, 1),
(37802, 29563, '3', 'andhra uni ', '', 'b.com', '2019', 70.00, '', 1, '2026-04-17 05:26:41', 0, NULL, 0, NULL, 1),
(37803, 29566, '3', 'Madras university ', '', 'Bcom bank management ', '2018', 75.00, '', 1, '2026-04-17 05:52:23', 0, NULL, 0, NULL, 1),
(37804, 29568, '3', 'Madras University ', '', 'B.Sc', '2025', 70.44, '', 1, '2026-04-17 06:15:14', 0, NULL, 0, NULL, 1),
(37805, 29569, '3', 'Madras University ', '', 'Bsc Visual Communication', '2026', 72.00, '', 1, '2026-04-17 06:27:34', 0, NULL, 0, NULL, 1),
(37806, 29571, '3', 'Anna University ', '', 'Be', '2025', 71.00, '', 1, '2026-04-17 06:46:07', 0, NULL, 0, NULL, 1),
(37807, 29572, '4', 'dg vaishnav college', '', 'msc Information technology', '2023', 7.80, '', 1, '2026-04-17 06:55:20', 1, '2026-04-17 06:57:00', 0, NULL, 0),
(37808, 29572, '3', 'am jain college', '', 'bsc software application ', '2021', 7.80, '', 1, '2026-04-17 06:57:01', 0, NULL, 0, NULL, 1),
(37809, 29572, '4', 'dg vaishnav college', '', 'msc information technology', '2023', 8.50, '', 1, '2026-04-17 06:57:58', 0, NULL, 0, NULL, 1),
(37810, 29570, '3', 'Vivekanandha college of engineering for women ', '', 'B.E - CSE', '2024', 87.00, '', 1, '2026-04-17 07:06:56', 0, NULL, 0, NULL, 1),
(37811, 29573, '3', 'sethu Institute of techology', '', 'be cse', '2025', 76.00, '', 1, '2026-04-17 07:16:56', 0, NULL, 0, NULL, 1),
(37812, 29575, '3', 'sa engineering college', '', 'be cse', '2025', 70.00, '', 1, '2026-04-17 07:33:39', 0, NULL, 0, NULL, 1),
(37813, 29567, '3', 'University of Madras ', '', 'B S W', '2026', 81.00, '', 1, '2026-04-17 07:34:46', 0, NULL, 0, NULL, 1),
(37814, 29576, '3', 'P B College of Engineering ', '', 'BE Computer Science and Engineering ', '2025', 71.00, '', 1, '2026-04-17 07:34:53', 0, NULL, 0, NULL, 1),
(37815, 29576, '2', 'Dharmamurthi Rao Bahadur Calavala Cunnan Chetty\'s Higher Secondary School', '', '', '2021', 71.00, '', 1, '2026-04-17 07:36:37', 0, NULL, 0, NULL, 1),
(37816, 29574, '3', 'dhaanish ahmed colleg of enginering', '', 'be ', '2025', 87.00, '', 1, '2026-04-17 07:41:55', 0, NULL, 0, NULL, 1),
(37817, 29579, '4', 'madras university', '', 'mba', '2026', 74.00, '', 154, '2026-04-17 01:19:33', 0, NULL, 0, NULL, 1),
(37818, 29580, '3', 'Arunai engineering college', '', 'B.tech', '2025', 71.00, '', 1, '2026-04-17 07:55:56', 0, NULL, 0, NULL, 1),
(37819, 29581, '3', 'Anna university ', '', 'BE', '2025', 8.40, '', 1, '2026-04-17 07:57:27', 0, NULL, 0, NULL, 1),
(37820, 29580, '2', 'Sishya matriculation higher secondary school ', '', '', '2021', 86.00, '', 1, '2026-04-17 07:58:11', 0, NULL, 0, NULL, 1),
(37821, 29581, '2', 'State Board of tamilnadu', '', '', '2021', 90.60, '', 1, '2026-04-17 07:59:09', 0, NULL, 0, NULL, 1),
(37822, 29581, '1', 'State board of tamil nadu ', '', '', '2019', 89.20, '', 1, '2026-04-17 07:59:44', 0, NULL, 0, NULL, 1),
(37823, 29578, '3', 'Anna University ', '', 'B. A. Business Economics ', '2018', 75.00, '', 1, '2026-04-17 08:11:28', 0, NULL, 0, NULL, 1),
(37824, 29578, '1', 'State board', '', '', '2013', 70.00, '', 1, '2026-04-17 08:12:17', 0, NULL, 0, NULL, 1),
(37825, 29578, '2', 'State board', '', '', '2015', 70.00, '', 1, '2026-04-17 08:13:08', 0, NULL, 0, NULL, 1),
(37826, 29582, '1', 'state board of school Examinations tamilnadu', '', '', '2020', 75.80, '', 1, '2026-04-17 08:32:38', 0, NULL, 0, NULL, 1),
(37827, 29582, '2', 'state board of examination tamilnadu', '', '', '2022', 69.10, '', 1, '2026-04-17 08:33:18', 0, NULL, 0, NULL, 1),
(37828, 29582, '3', 'anna university tamilnadu', '', 'b e computer science and engineering', '2026', 77.40, '', 1, '2026-04-17 08:34:40', 0, NULL, 0, NULL, 1),
(37829, 29583, '3', 'SRM University ', '', 'BBA ', '2027', 70.00, '', 1, '2026-04-17 09:15:12', 0, NULL, 0, NULL, 1),
(37830, 29584, '3', 'srm university', '', 'bba', '2027', 7.50, '', 1, '2026-04-17 09:15:14', 0, NULL, 0, NULL, 1),
(37831, 29589, '3', 'St. Joseph college of engineering Chennai', '', 'B. Tech ', '2025', 74.00, '', 1, '2026-04-17 05:25:39', 0, NULL, 0, NULL, 1),
(37832, 29590, '3', 'sir issac newton college of engineering and technology', '', 'be.cse', '2026', 83.00, '', 1, '2026-04-18 01:23:23', 0, NULL, 0, NULL, 1),
(37833, 29593, '4', 'Bharathidasan University ', '', 'MCA ', '2025', 8.42, '', 1, '2026-04-18 04:04:58', 0, NULL, 0, NULL, 1),
(37834, 29593, '3', 'Bharathidasan University ', '', 'BCA', '2023', 8.74, '', 1, '2026-04-18 04:05:48', 0, NULL, 0, NULL, 1),
(37835, 29593, '2', 'State Board ', '', '', '2020', 63.00, '', 1, '2026-04-18 04:06:10', 0, NULL, 0, NULL, 1),
(37836, 29593, '1', 'State Board ', '', '', '2019', 78.00, '', 1, '2026-04-18 04:06:43', 0, NULL, 0, NULL, 1),
(37837, 29592, '1', 'State board ', '', '', '2019', 74.00, '', 1, '2026-04-18 04:07:38', 0, NULL, 0, NULL, 1),
(37838, 29592, '2', 'State board ', '', '', '2020', 58.00, '', 1, '2026-04-18 04:08:13', 0, NULL, 0, NULL, 1),
(37839, 29592, '3', 'Bharathidasan university ', '', 'BCA ', '2023', 8.38, '', 1, '2026-04-18 04:08:47', 0, NULL, 0, NULL, 1),
(37840, 29592, '4', 'Bharathidasan university ', '', 'MCA ', '2025', 8.21, '', 1, '2026-04-18 04:09:45', 0, NULL, 0, NULL, 1),
(37841, 29591, '3', 'madras university', '', 'b.a', '2022', 85.00, '', 1, '2026-04-18 04:13:07', 0, NULL, 0, NULL, 1),
(37842, 29594, '3', 'manonmaniam sundharanar universit', '', 'bcom', '2024', 94.00, '', 154, '2026-04-18 10:10:59', 0, NULL, 0, NULL, 1),
(37843, 29595, '3', 'Bishop Heber college ', '', 'BSC Computer Science ', '2023', 8.00, '', 1, '2026-04-18 04:50:21', 0, NULL, 0, NULL, 1),
(37844, 29596, '1', 'Government higher secondary school ', '', '', '2010', 88.00, '', 1, '2026-04-18 04:57:37', 0, NULL, 0, NULL, 1),
(37845, 29597, '3', 'Madras University ', '', 'B.com', '2025', 70.00, '', 1, '2026-04-18 04:58:18', 0, NULL, 0, NULL, 1),
(37846, 29588, '3', 'Madras University ', '', 'BSC.Computer Science ', '2025', 68.00, '', 1, '2026-04-18 05:01:59', 0, NULL, 0, NULL, 1),
(37847, 29599, '3', 'madra univ ', '', 'b com', '2025', 70.00, '', 1, '2026-04-18 05:02:40', 0, NULL, 0, NULL, 1),
(37848, 29601, '3', 'Thiruvalluvar ', '', 'BCA', '2020', 64.00, '', 1, '2026-04-18 06:28:57', 0, NULL, 0, NULL, 1),
(37849, 29603, '3', 'AMC Institute ', '', 'BCOM', '2020', 69.50, '', 172, '2026-04-18 12:05:53', 0, NULL, 0, NULL, 1),
(37850, 29604, '3', 'Madras University ', '', 'Bsc social work', '2018', 52.60, '', 1, '2026-04-18 06:47:13', 0, NULL, 0, NULL, 1),
(37851, 29607, '3', 'madras university', '', 'bsc', '2019', 75.00, '', 154, '2026-04-18 12:22:30', 0, NULL, 0, NULL, 1),
(37852, 29605, '2', 'banglore', '', '', '2016', 45.00, '', 1, '2026-04-18 07:00:42', 0, NULL, 0, NULL, 1),
(37853, 29608, '3', 'Thiruvalluvar university ', '', 'BCA ', '2024', 80.00, '', 1, '2026-04-18 07:06:08', 0, NULL, 0, NULL, 1),
(37854, 29610, '3', 'Vijaa junior PU College', '', 'NEP', '2025', 49.00, '', 172, '2026-04-18 12:39:55', 0, NULL, 0, NULL, 1),
(37855, 29611, '3', 'anna universit', '', 'be civil', '2020', 64.00, '', 154, '2026-04-18 12:51:35', 0, NULL, 0, NULL, 1),
(37856, 29606, '3', 'RJS PU College', '', 'BCOM', '2023', 76.00, '', 172, '2026-04-18 01:02:49', 0, NULL, 0, NULL, 1),
(37857, 29612, '3', 'Sv university ', '', 'Bcom commerce', '2011', 70.00, '', 1, '2026-04-18 10:03:30', 0, NULL, 0, NULL, 1),
(37858, 29613, '3', 'Madhuri kammaraj university ', '', 'B.com', '2024', 70.00, '', 1, '2026-04-18 10:43:34', 0, NULL, 0, NULL, 1),
(37859, 29616, '4', 'Madras University ', '', 'M.B.A', '2027', 83.00, '', 1, '2026-04-18 01:02:17', 0, NULL, 0, NULL, 1),
(37860, 29616, '3', 'Madras University ', '', 'BBA', '2025', 83.00, '', 1, '2026-04-18 01:02:48', 0, NULL, 0, NULL, 1),
(37861, 29616, '2', 'CBSE ', '', '', '2022', 82.00, '', 1, '2026-04-18 01:03:59', 0, NULL, 0, NULL, 1),
(37862, 29622, '3', 'SRM University ', '', 'CSE ', '2024', 8.00, '', 1, '2026-04-20 04:57:35', 0, NULL, 0, NULL, 1),
(37863, 29517, '3', 'madras university', '', 'bsc', '2022', 70.00, '', 1, '2026-04-20 05:35:31', 0, NULL, 0, NULL, 1),
(37864, 29621, '4', 'University of Madras ', '', 'HR', '2024', 80.00, '', 1, '2026-04-20 05:46:07', 0, NULL, 0, NULL, 1),
(37865, 29623, '3', 'Bharathiyar university ', '', 'B.sc Electronics and communications systems ', '2018', 70.00, '', 1, '2026-04-20 05:56:26', 0, NULL, 0, NULL, 1),
(37866, 29629, '3', 'University ', '', 'B Tech', '2025', 7.00, '', 1, '2026-04-20 06:16:33', 0, NULL, 0, NULL, 1),
(37867, 29629, '1', 'Board', '', '', '2019', 70.00, '', 1, '2026-04-20 06:16:56', 0, NULL, 0, NULL, 1),
(37868, 29629, '2', 'Board', '', '', '2021', 76.00, '', 1, '2026-04-20 06:17:15', 0, NULL, 0, NULL, 1),
(37869, 29624, '3', 'Anna University ', '', '', '2025', 74.30, '', 1, '2026-04-20 06:22:30', 0, NULL, 0, NULL, 1),
(37870, 29626, '3', 'Anna University ', '', '', '2025', 8.20, '', 1, '2026-04-20 06:29:44', 0, NULL, 0, NULL, 1),
(37871, 29620, '3', 'VALLIAMMAL COLLEGE FOR WOMEN ', '', 'B.com(INFORMATION SYSTEM MANAGEMENT)', '2023', 75.00, '', 1, '2026-04-20 06:30:24', 0, NULL, 0, NULL, 1),
(37872, 29625, '3', 'Anna University', '', '', '2025', 72.00, '', 1, '2026-04-20 06:34:23', 0, NULL, 0, NULL, 1),
(37873, 29630, '3', 'hindusthan instit of tech ', '', 'Artificial intelligence and data science', '2025', 75.60, '', 1, '2026-04-20 06:57:52', 0, NULL, 0, NULL, 1),
(37874, 29631, '3', ' Dr. M.G.R. Educational And Research Institute', '', 'bca', '2025', 80.20, '', 1, '2026-04-20 07:04:13', 0, NULL, 0, NULL, 1),
(37875, 29632, '1', 'govt higher secondar school', '', '', '2018', 58.00, '', 154, '2026-04-20 12:44:36', 0, NULL, 0, NULL, 1),
(37876, 29634, '3', 'Anna University ', '', 'BE', '2022', 7.67, '', 1, '2026-04-20 11:46:23', 0, NULL, 0, NULL, 1),
(37877, 29634, '2', 'Beschi higher secondary school ', '', '', '2018', 77.00, '', 1, '2026-04-20 11:47:16', 0, NULL, 0, NULL, 1),
(37878, 29634, '1', 'Goverment higher secondary school ', '', '', '2016', 88.00, '', 1, '2026-04-20 11:47:52', 0, NULL, 0, NULL, 1),
(37879, 29636, '4', 'MADRAS UNIVERSITY ', '', 'M.B.A', '2027', 8.48, '', 1, '2026-04-20 12:08:27', 0, NULL, 0, NULL, 1),
(37880, 29638, '4', 'M.O.P. Vaishnav College For Women ', '', 'MBA ', '2027', 82.00, '', 1, '2026-04-20 12:49:04', 0, NULL, 0, NULL, 1),
(37881, 29638, '3', 'Valliammal College For Women ', '', 'B.COM (GENERAL)', '2025', 82.00, '', 1, '2026-04-20 12:50:35', 0, NULL, 0, NULL, 1),
(37882, 29638, '2', 'Kaligi Ranganathan Montfort Matriculation Higher secondary school ', '', '', '2022', 97.00, '', 1, '2026-04-20 12:51:02', 0, NULL, 0, NULL, 1),
(37883, 29638, '1', 'Kaligi Ranganathan Montfort Matriculation Higher secondary school ', '', '', '2020', 79.00, '', 1, '2026-04-20 12:51:52', 0, NULL, 0, NULL, 1),
(37884, 29640, '1', 'State board', '', 'M.B.A.', '2020', 80.40, '', 1, '2026-04-20 04:28:23', 1, '2026-04-20 04:34:29', 0, NULL, 1),
(37885, 29640, '2', 'State board ', '', '', '2022', 96.00, '', 1, '2026-04-20 04:29:05', 1, '2026-04-20 04:31:10', 0, NULL, 0),
(37886, 29640, '3', 'Madras University ', '', 'M.B.A.', '2025', 75.45, '', 1, '2026-04-20 04:29:39', 1, '2026-04-20 04:31:18', 0, NULL, 0),
(37887, 29640, '4', 'Madras University ', '', 'M.b.a.', '2027', 78.37, '', 1, '2026-04-20 04:30:44', 1, '2026-04-20 04:31:13', 0, NULL, 0),
(37888, 29640, '2', 'State board ', '', '', '2022', 96.00, '', 1, '2026-04-20 04:32:18', 0, NULL, 0, NULL, 1),
(37889, 29640, '3', 'Madras University ', '', 'B.com(Hons.)', '2025', 75.45, '', 1, '2026-04-20 04:33:02', 0, NULL, 0, NULL, 1),
(37890, 29640, '4', 'Madras University ', '', 'M.b.a.', '2027', 78.37, '', 1, '2026-04-20 04:33:35', 0, NULL, 0, NULL, 1),
(37891, 29642, '3', ' kmg college of arts and science', '', 'bca', '2024', 7.30, '', 1, '2026-04-21 04:27:47', 0, NULL, 0, NULL, 1),
(37892, 29644, '3', 'Anna University ', '', 'BE', '2026', 7.80, '', 1, '2026-04-21 04:33:23', 0, NULL, 0, NULL, 1),
(37893, 29643, '4', 'Sri Krishnadevaraya University ', '', 'Bsc', '2021', 78.00, '', 1, '2026-04-21 04:44:57', 0, NULL, 0, NULL, 1),
(37894, 29645, '3', 'Dr MGR EDUCATIONAL AND RESEARCH INSTITUTE ', '', 'B TECH ', '2025', 77.00, '', 1, '2026-04-21 04:52:03', 0, NULL, 0, NULL, 1),
(37895, 29646, '4', 'Madurai Kamaraj University ', '', 'MCA', '2025', 78.00, '', 1, '2026-04-21 04:56:39', 0, NULL, 0, NULL, 1),
(37896, 29647, '3', 'Bharathidasan', '', 'BSc', '2025', 84.00, '', 1, '2026-04-21 05:08:20', 0, NULL, 0, NULL, 1),
(37897, 29648, '3', 'Vijaynagar college ', '', 'BCA ', '2022', 68.00, '', 1, '2026-04-21 05:09:57', 0, NULL, 0, NULL, 1),
(37898, 29615, '4', 'M.O.P. Vaishnav College ', '', 'MBA', '2027', 7.69, '', 1, '2026-04-21 05:19:45', 0, NULL, 0, NULL, 1),
(37899, 29650, '1', 'St. Francis xavier higher secondary school', '', '', '2020', 67.60, '', 1, '2026-04-21 05:29:10', 1, '2026-04-21 05:34:20', 0, NULL, 1),
(37900, 29650, '2', 'St. Francis xavier higher secondary school ', '', 'M. B. A', '2022', 7.77, '', 1, '2026-04-21 05:29:39', 1, '2026-04-21 05:37:57', 0, NULL, 1),
(37901, 29650, '3', 'Srm university', '', 'B. Com', '2025', 8.10, '', 1, '2026-04-21 05:36:18', 0, NULL, 0, NULL, 1),
(37902, 29650, '4', 'Madras university ', '', 'M. B. A', '2027', 7.77, '', 1, '2026-04-21 05:36:51', 0, NULL, 0, NULL, 1),
(37903, 29651, '3', 'anna university', '', 'be', '2024', 75.00, '', 1, '2026-04-21 05:39:45', 0, NULL, 0, NULL, 1),
(37904, 29652, '3', 'SRM University ', '', 'CSE engineering ', '2024', 8.13, '', 1, '2026-04-21 05:39:47', 0, NULL, 0, NULL, 1),
(37905, 29641, '4', 'Madras University ', '', 'M.B.A ', '2027', 63.80, '', 1, '2026-04-21 05:49:40', 0, NULL, 0, NULL, 1),
(37906, 29649, '1', 'ST. Thomas Matriculation Hr secondary school ', '', '', '2020', 65.00, '', 1, '2026-04-21 05:50:04', 0, NULL, 0, NULL, 1),
(37907, 29649, '2', 'St. Thomas Matriculation Higher secondary school', '', '', '2022', 79.00, '', 1, '2026-04-21 05:50:38', 0, NULL, 0, NULL, 1),
(37908, 29649, '3', 'Madras university ', '', 'B. Com bank management', '2025', 65.00, '', 1, '2026-04-21 05:51:18', 0, NULL, 0, NULL, 1),
(37909, 29649, '4', 'Madras university ', '', 'M. B. A', '2027', 70.00, '', 1, '2026-04-21 05:52:18', 0, NULL, 0, NULL, 1),
(37910, 29655, '3', 'Allagappa University ', '', 'BSC ', '2016', 80.00, '', 1, '2026-04-21 06:00:14', 0, NULL, 0, NULL, 1),
(37911, 29656, '3', 'Anna University ', '', 'B.tech IT ', '2025', 7.73, '', 1, '2026-04-21 06:20:39', 0, NULL, 0, NULL, 1),
(37912, 29657, '3', 'Thiruvallur University ', '', 'BCA ', '2025', 70.00, '', 1, '2026-04-21 06:22:28', 0, NULL, 0, NULL, 1),
(37913, 29659, '3', 'Anna university ', '', 'B.Tech', '2025', 78.90, '', 1, '2026-04-21 06:31:41', 0, NULL, 0, NULL, 1),
(37914, 29658, '3', 'Anna University ', '', 'B.tech IT ', '2025', 76.00, '', 1, '2026-04-21 06:49:35', 0, NULL, 0, NULL, 1),
(37915, 29660, '2', 'Stracey memorial college ', '', '', '2023', 55.00, '', 1, '2026-04-21 07:09:47', 0, NULL, 0, NULL, 1),
(37916, 29661, '1', 'thiruvalluvar university', '', '', '2024', 80.00, '', 1, '2026-04-21 08:02:42', 0, NULL, 0, NULL, 1),
(37917, 29665, '3', 'Anna university ', '', 'B.tech', '2025', 89.00, '', 1, '2026-04-21 09:38:11', 0, NULL, 0, NULL, 1),
(37918, 29665, '2', 'State Board ', '', '', '2021', 79.00, '', 1, '2026-04-21 09:38:59', 0, NULL, 0, NULL, 1),
(37919, 29664, '3', 'university', '', 'bca', '2021', 70.00, '', 1, '2026-04-21 09:41:46', 0, NULL, 0, NULL, 1),
(37920, 29665, '1', 'State Board ', '', '', '2018', 69.00, '', 1, '2026-04-21 09:42:01', 0, NULL, 0, NULL, 1),
(37921, 29664, '2', 'state board', '', '', '2017', 92.00, '', 1, '2026-04-21 09:42:18', 0, NULL, 0, NULL, 1),
(37922, 29666, '3', 'Madras ', '', 'B.c.a', '2025', 69.00, '', 1, '2026-04-21 09:56:44', 0, NULL, 0, NULL, 1),
(37923, 29667, '3', 'Thiruvallur ', '', 'Bca', '2023', 80.00, '', 1, '2026-04-21 10:10:40', 0, NULL, 0, NULL, 1),
(37924, 29669, '3', 'Thiruvallur ', '', 'Bca', '2023', 80.00, '', 1, '2026-04-21 10:18:28', 0, NULL, 0, NULL, 1),
(37925, 29670, '3', 'Saveetha University ', '', 'BE COMPUTER science ', '2025', 87.00, '', 1, '2026-04-21 06:41:25', 0, NULL, 0, NULL, 1),
(37926, 29663, '3', 'Meenakshi college of engineering ', '', 'B E', '2021', 74.00, '', 1, '2026-04-22 02:28:18', 0, NULL, 0, NULL, 1),
(37927, 29671, '4', 'University of Madras ', '', 'Msc ', '2026', 80.00, '', 1, '2026-04-22 04:41:14', 0, NULL, 0, NULL, 1),
(37928, 29672, '3', 'University of Madras ', '', 'BCA', '2026', 76.00, '', 1, '2026-04-22 04:53:13', 0, NULL, 0, NULL, 1),
(37929, 29674, '3', 'madras university', '', 'bsc phsics', '2025', 6.80, '', 154, '2026-04-22 10:44:35', 0, NULL, 0, NULL, 1),
(37930, 29675, '3', 'Anna university ', '', 'B.E mechanical ', '2025', 70.00, '', 1, '2026-04-22 05:30:54', 0, NULL, 0, NULL, 1),
(37931, 29677, '3', 'madras university', '', 'b.com corporate secratoryship', '2023', 64.00, '', 1, '2026-04-22 06:37:34', 0, NULL, 0, NULL, 1),
(37932, 29680, '3', 'madras university', '', 'bca', '2024', 60.00, '', 154, '2026-04-22 12:13:26', 0, NULL, 0, NULL, 1),
(37933, 29679, '3', 'Alagappa Chettiar Government college of Engineering and Technology', '', 'Bachelor of Engineering', '2025', 87.00, '', 1, '2026-04-22 06:45:40', 0, NULL, 0, NULL, 1),
(37934, 29678, '3', 'MS university ', '', 'BBA', '2024', 70.00, '', 1, '2026-04-22 06:46:52', 0, NULL, 0, NULL, 1),
(37935, 29681, '3', 'Anna University ', '', 'Bachelor of technology ', '2026', 72.00, '', 1, '2026-04-22 07:06:38', 0, NULL, 0, NULL, 1),
(37936, 29681, '1', 'TAMILNADU ', '', '', '2020', 65.00, '', 1, '2026-04-22 07:08:07', 0, NULL, 0, NULL, 1),
(37937, 29681, '2', 'Tamilnadu ', '', '', '2022', 73.50, '', 1, '2026-04-22 07:08:20', 0, NULL, 0, NULL, 1),
(37938, 29682, '4', 'University of Madras', '', 'Msc cyber forensic and information security ', '2021', 78.00, '', 1, '2026-04-22 07:13:11', 0, NULL, 0, NULL, 1),
(37939, 29682, '3', 'University of Madras ', '', 'Bsc computer science ', '2018', 65.00, '', 1, '2026-04-22 07:14:08', 0, NULL, 0, NULL, 1),
(37940, 29682, '2', 'State board ', '', '', '2015', 60.00, '', 1, '2026-04-22 07:14:43', 0, NULL, 0, NULL, 1),
(37941, 29682, '1', 'State board ', '', '', '2013', 73.00, '', 1, '2026-04-22 07:15:04', 0, NULL, 0, NULL, 1),
(37942, 29684, '3', 'sri eshwar college of engineering', '', 'be cse', '2026', 8.50, '', 1, '2026-04-22 10:27:23', 0, NULL, 0, NULL, 1),
(37943, 29686, '3', 'Madras University ', '', 'B.com CorprateSecretaryship', '2026', 63.00, '', 1, '2026-04-22 12:28:25', 0, NULL, 0, NULL, 1),
(37944, 29687, '3', 'A.V.V.M SRI PUSHPAM cOLLEGE  POONDI ', '', 'BCA', '2025', 82.00, '', 1, '2026-04-24 04:17:41', 0, NULL, 0, NULL, 1),
(37945, 29688, '3', 'Dr.M.G.R educational and research institute ', '', 'BTech -IT ', '2025', 7.30, '', 1, '2026-04-24 05:08:10', 0, NULL, 0, NULL, 1),
(37946, 29690, '3', 'Madha Institute of engineering and technology', '', 'BE. CSE', '2025', 7.67, '', 1, '2026-04-24 05:12:38', 0, NULL, 0, NULL, 1),
(37947, 29694, '3', 'mononmanian sundharanar', '', 'bcom', '2025', 70.00, '', 154, '2026-04-24 11:13:23', 0, NULL, 0, NULL, 1),
(37948, 29694, '3', 'mononmanian sundharanar', '', 'bcom', '2025', 70.00, '', 154, '2026-04-24 11:13:23', 0, NULL, 0, NULL, 1),
(37949, 29695, '4', 'madras university', '', 'MA english', '2023', 75.00, '', 154, '2026-04-24 11:17:51', 0, NULL, 0, NULL, 1),
(37950, 29697, '2', 'Government school ', '', '', '2018', 60.00, '', 1, '2026-04-24 07:06:05', 0, NULL, 0, NULL, 1),
(37951, 29696, '2', 'State Board', '', '', '2019', 60.00, '', 1, '2026-04-24 07:08:28', 0, NULL, 0, NULL, 1),
(37952, 29698, '3', 'Anna University ', '', 'B.E CSE', '2019', 74.00, '', 1, '2026-04-24 07:26:27', 0, NULL, 0, NULL, 1),
(37953, 29700, '3', 'Annai university', '', 'BE', '2024', 8.39, '', 1, '2026-04-24 09:33:25', 0, NULL, 0, NULL, 1),
(37954, 29699, '3', 'Anna university ', '', 'BE', '2024', 8.29, '', 1, '2026-04-24 09:35:08', 0, NULL, 0, NULL, 1),
(37955, 29701, '4', 'university of madras', '', 'mca', '2023', 83.00, '', 1, '2026-04-24 10:05:31', 0, NULL, 0, NULL, 1),
(37956, 29701, '3', 'university of madras', '', 'bsc computer science', '2020', 80.00, '', 1, '2026-04-24 10:06:24', 0, NULL, 0, NULL, 1),
(37957, 29701, '2', 'state board', '', '', '2017', 76.00, '', 1, '2026-04-24 10:07:14', 0, NULL, 0, NULL, 1),
(37958, 29701, '1', 'state board', '', '', '2015', 90.00, '', 1, '2026-04-24 10:07:39', 0, NULL, 0, NULL, 1),
(37959, 29703, '3', 'Anna University ', '', 'B.Tech - Artificial Intelligence And Data Science ', '2026', 86.00, '', 1, '2026-04-25 03:49:18', 0, NULL, 0, NULL, 1),
(37960, 29702, '4', 'Bharathidasan university ', '', 'Msc (cs)', '2024', 78.00, '', 1, '2026-04-25 04:35:45', 0, NULL, 0, NULL, 1),
(37961, 29704, '3', 'Dr.M.G.R Educational and Research Institute ', '', 'Bachelor\'s in Technology Computer Science Engineer', '2026', 79.50, '', 1, '2026-04-25 04:38:45', 0, NULL, 0, NULL, 1),
(37962, 29704, '1', 'Govt. Hr Secondary School ', '', '', '2022', 70.00, '', 1, '2026-04-25 04:39:19', 0, NULL, 0, NULL, 1),
(37963, 29704, '2', 'KRM public school', '', '', '2020', 83.40, '', 1, '2026-04-25 04:39:38', 0, NULL, 0, NULL, 1),
(37964, 29705, '3', 'Anna University ', '', 'B.E', '2026', 82.00, '', 1, '2026-04-25 04:46:53', 0, NULL, 0, NULL, 1),
(37965, 29707, '4', 'sa engineering college ', '', 'b.tech computer science and business system ', '2026', 72.00, '', 1, '2026-04-25 05:04:41', 0, NULL, 0, NULL, 1),
(37966, 29708, '3', 'Anna university ', '', 'BE', '2023', 82.00, '', 1, '2026-04-25 05:16:41', 0, NULL, 0, NULL, 1),
(37967, 29709, '3', 'Anna university ', '', 'B.e', '2025', 7.90, '', 1, '2026-04-25 05:19:25', 0, NULL, 0, NULL, 1),
(37968, 29710, '3', 'Madurai Kamarajar university ', '', 'Bsc., Information Technology ', '2016', 77.00, '', 1, '2026-04-25 05:20:32', 0, NULL, 0, NULL, 1),
(37969, 29712, '3', 'anna universit', '', 'btech', '2025', 82.00, '', 154, '2026-04-25 10:51:19', 0, NULL, 0, NULL, 1),
(37970, 29713, '3', 'barathidasan ', '', 'bsc phsics', '2024', 78.00, '', 154, '2026-04-25 10:58:47', 0, NULL, 0, NULL, 1),
(37971, 29714, '3', 'Ethiraj college for women ', '', 'Bsc ', '2025', 66.40, '', 1, '2026-04-25 05:58:09', 0, NULL, 0, NULL, 1),
(37972, 29715, '4', 'University of Madras ', '', 'M.A.English', '2025', 64.55, '', 1, '2026-04-25 06:16:48', 0, NULL, 0, NULL, 1),
(37973, 29716, '3', 'manonmanium sundaranar university', '', 'b.sc chemistry', '2025', 85.00, '', 1, '2026-04-25 06:24:31', 0, NULL, 0, NULL, 1),
(37974, 29717, '2', 'Madras University ', '', '', '2026', 80.00, '', 1, '2026-04-25 07:02:07', 0, NULL, 0, NULL, 1),
(37975, 29720, '2', 'mbn govt girls higher secondar school', '', '', '2017', 52.00, '', 154, '2026-04-25 01:29:14', 0, NULL, 0, NULL, 1),
(37976, 29721, '3', 'Thiruvallur University ', '', 'BCA', '2025', 6.00, '', 1, '2026-04-25 10:36:23', 0, NULL, 0, NULL, 1),
(37977, 29723, '3', 'Bharathidasan university ', '', 'BCA', '2025', 70.00, '', 1, '2026-04-26 02:23:40', 0, NULL, 0, NULL, 1),
(37978, 29725, '4', 'Madurai Kamaraj University ', '', 'MCA', '2025', 80.00, '', 1, '2026-04-27 02:22:25', 0, NULL, 0, NULL, 1),
(37979, 29726, '3', 'kumararani meena muthaih college of arts and science', '', 'b.com', '2014', 55.00, '', 1, '2026-04-27 03:31:53', 1, '2026-04-27 03:35:26', 0, NULL, 1),
(37980, 29726, '2', 'model Matriculation hr sec school', '', '', '2011', 58.00, '', 1, '2026-04-27 03:36:34', 0, NULL, 0, NULL, 1),
(37981, 29726, '1', 'kalaimagal viddyalaya matric hr sec school', '', '', '2009', 57.00, '', 1, '2026-04-27 03:38:27', 0, NULL, 0, NULL, 1),
(37982, 29727, '4', 'Anna university ', '', 'MCA', '2025', 89.00, '', 1, '2026-04-27 04:40:59', 0, NULL, 0, NULL, 1),
(37983, 29730, '4', 'Anna university ', '', 'Mba', '2025', 56.70, '', 1, '2026-04-27 06:02:40', 0, NULL, 0, NULL, 1),
(37984, 29598, '3', 'Anna university ', '', 'BE- Bio medical engineering ', '2020', 5.97, '', 1, '2026-04-27 06:20:33', 0, NULL, 0, NULL, 1),
(37985, 29731, '3', 'Madras University ', '', 'BBA ', '2020', 77.40, '', 1, '2026-04-27 06:43:04', 0, NULL, 0, NULL, 1),
(37986, 29731, '5', 'Direct technical education ', '', 'ECE ', '2015', 62.14, '', 1, '2026-04-27 06:43:42', 0, NULL, 0, NULL, 1),
(37987, 29732, '3', 'Madras University ', '', 'BA', '2019', 70.00, '', 1, '2026-04-27 06:54:24', 0, NULL, 0, NULL, 1),
(37988, 29733, '3', 'thiruvalluvar universit', '', 'BCA', '2024', 70.00, '', 154, '2026-04-27 12:43:54', 0, NULL, 0, NULL, 1),
(37989, 29735, '3', 'bharathidasan university', '', 'bsc chemistry', '2025', 70.00, '', 1, '2026-04-27 07:24:51', 0, NULL, 0, NULL, 1),
(37990, 29734, '4', 'University of Madras ', '', 'Ma Archeology ', '2026', 60.00, '', 1, '2026-04-27 07:26:25', 0, NULL, 0, NULL, 1),
(37991, 29736, '3', 'madras university', '', 'bsc chemistry', '2025', 60.00, '', 1, '2026-04-27 07:32:34', 0, NULL, 0, NULL, 1),
(37992, 27319, '3', 'Madras University ', '', 'B.COM', '2019', 85.00, '', 1, '2026-04-27 08:19:51', 0, NULL, 0, NULL, 1),
(37993, 29737, '3', 'Anna University ', '', 'BE Agriculture Engineering ', '2022', 89.00, '', 1, '2026-04-27 09:01:13', 0, NULL, 0, NULL, 1),
(37994, 29742, '3', 'jnn institute of engineering', '', 'b.e', '2024', 7.80, '', 1, '2026-04-27 01:07:22', 1, '2026-04-27 01:07:45', 0, NULL, 1),
(37995, 29724, '1', 'state board of school examination tamilnadu', '', '', '2020', 83.20, '', 1, '2026-04-28 02:00:18', 0, NULL, 0, NULL, 1),
(37996, 29724, '2', 'state board of school examination tamilnadu', '', '', '2020', 70.60, '', 1, '2026-04-28 02:00:59', 0, NULL, 0, NULL, 1),
(37997, 29724, '3', 'thiruvalluvar university', '', 'b.com general', '2023', 70.00, '', 1, '2026-04-28 02:01:44', 0, NULL, 0, NULL, 1),
(37998, 29744, '3', 'Anna University ', '', 'BE Computer science ', '2025', 80.00, '', 1, '2026-04-28 04:52:00', 0, NULL, 0, NULL, 1),
(37999, 29746, '4', 'University of Madras ', '', 'MSc', '2025', 82.00, '', 1, '2026-04-28 05:05:31', 0, NULL, 0, NULL, 1),
(38000, 29745, '3', 'S.v university', '', 'Vigana sudha', '2025', 50.00, '', 1, '2026-04-28 05:11:18', 1, '2026-04-28 05:13:22', 0, NULL, 1),
(38001, 29749, '3', 'anna universit', '', 'BE CSE', '2018', 64.00, '', 154, '2026-04-28 10:50:53', 0, NULL, 0, NULL, 1),
(38002, 29752, '4', 'deemed universit', '', 'mSC computer science', '2025', 84.00, '', 154, '2026-04-28 11:07:22', 0, NULL, 0, NULL, 1),
(38003, 29753, '3', 'Anna university', '', 'B.E CSE', '2025', 70.00, '', 1, '2026-04-28 06:01:40', 0, NULL, 0, NULL, 1),
(38004, 29718, '3', 'Bharathidasan university ', '', 'B. Com', '2026', 79.00, '', 1, '2026-04-28 06:43:22', 0, NULL, 0, NULL, 1),
(38005, 29754, '3', 'anna universit', '', 'btech biotechnolog', '2026', 87.00, '', 154, '2026-04-28 12:13:26', 0, NULL, 0, NULL, 1),
(38006, 29740, '4', 'bharath university ', '', 'mca', '2024', 80.00, '', 1, '2026-04-28 07:03:02', 0, NULL, 0, NULL, 1),
(38007, 29751, '3', 'Thiruvalluvar ', '', 'BBA', '2024', 60.00, '', 1, '2026-04-28 07:50:27', 0, NULL, 0, NULL, 1),
(38008, 29756, '1', 'State board', '', 'BCA', '2019', 58.00, '', 1, '2026-04-28 09:25:53', 0, NULL, 0, NULL, 1),
(38009, 29756, '2', 'State board ', '', '', '2021', 72.00, '', 1, '2026-04-28 09:26:20', 0, NULL, 0, NULL, 1),
(38010, 29756, '3', 'Madras University ', '', 'BCA', '2024', 60.00, '', 1, '2026-04-28 09:26:52', 0, NULL, 0, NULL, 1),
(38011, 29757, '3', 'State board ', '', 'B. Com ', '2023', 70.00, '', 1, '2026-04-28 12:10:28', 1, '2026-04-28 12:10:49', 0, NULL, 0),
(38012, 29757, '1', 'State board ', '', '', '2015', 60.00, '', 1, '2026-04-28 12:14:36', 0, NULL, 0, NULL, 1),
(38013, 29757, '2', 'State board ', '', '', '2018', 75.00, '', 1, '2026-04-28 12:15:34', 0, NULL, 0, NULL, 1),
(38014, 29757, '3', 'Medars university ', '', 'B. Com', '2023', 70.00, '', 1, '2026-04-28 12:16:14', 0, NULL, 0, NULL, 1),
(38015, 29758, '3', 'Thiruvallur university', '', 'Bsc computer science ', '2022', 60.00, '', 1, '2026-04-29 04:41:52', 0, NULL, 0, NULL, 1),
(38016, 29758, '2', 'GGHSS', '', 'Bsc computer science ', '2019', 55.00, '', 1, '2026-04-29 04:43:05', 0, NULL, 0, NULL, 1),
(38017, 29759, '4', 'madras university', '', 'mca', '2026', 89.00, '', 1, '2026-04-29 04:45:20', 0, NULL, 0, NULL, 1),
(38018, 29759, '3', 'thiruvalluvar university', '', 'bsc mathematics', '2021', 89.00, '', 1, '2026-04-29 04:46:07', 0, NULL, 0, NULL, 1),
(38019, 29759, '2', 'isha vidhya school', '', '', '2018', 69.00, '', 1, '2026-04-29 04:46:48', 0, NULL, 0, NULL, 1),
(38020, 29759, '1', 'isha vidhya school', '', '', '2016', 96.00, '', 1, '2026-04-29 04:47:32', 0, NULL, 0, NULL, 1),
(38021, 29760, '4', 'annamalai universit', '', 'MA english', '2025', 70.00, '', 154, '2026-04-29 10:20:22', 0, NULL, 0, NULL, 1),
(38022, 29760, '3', 'bharathidasan universit', '', 'BA English', '2023', 75.00, '', 154, '2026-04-29 10:20:54', 0, NULL, 0, NULL, 1),
(38023, 29761, '1', 'Velammal matric hr sec school ', '', '', '2018', 92.20, '', 1, '2026-04-29 06:19:44', 0, NULL, 0, NULL, 1),
(38024, 29761, '2', 'Velammal matric hr sec school ', '', '', '2020', 73.00, '', 1, '2026-04-29 06:20:10', 0, NULL, 0, NULL, 1),
(38025, 29761, '3', 'R.M.D Engineering College ', '', 'B.E', '2024', 90.30, '', 1, '2026-04-29 06:20:54', 0, NULL, 0, NULL, 1),
(38026, 29762, '3', 'Srikrishna devaraya university Ballari ', '', 'B. COM', '2020', 70.00, '', 1, '2026-04-29 06:33:47', 0, NULL, 0, NULL, 1),
(38027, 29763, '3', 'Loyola institute of technology ', '', 'B.e', '2018', 5.93, '', 1, '2026-04-29 07:55:05', 0, NULL, 0, NULL, 1),
(38028, 29768, '4', 'University ', '', 'M.sc', '2023', 7.25, '', 1, '2026-04-29 09:15:11', 0, NULL, 0, NULL, 1),
(38029, 29769, '3', 'KTVR KPET ANNA UNIVERSITY ', '', 'BE CSE', '2014', 62.00, '', 1, '2026-04-29 09:25:27', 0, NULL, 0, NULL, 1),
(38030, 29770, '4', 'anna universit', '', 'MCA', '2025', 79.00, '', 154, '2026-04-29 03:03:06', 0, NULL, 0, NULL, 1),
(38031, 29770, '3', 'madras university', '', 'BCA', '2023', 80.00, '', 154, '2026-04-29 03:03:29', 0, NULL, 0, NULL, 1),
(38032, 29772, '3', 'anna university affiliated', '', 'be.cse', '2025', 79.00, '', 1, '2026-04-30 03:51:54', 0, NULL, 0, NULL, 1),
(38033, 29773, '4', 'anna university ', '', 'be civil ', '2022', 85.00, '', 1, '2026-04-30 04:02:05', 0, NULL, 0, NULL, 1),
(38034, 29773, '4', 'bharathidhasan university', '', 'mba', '2026', 80.00, '', 1, '2026-04-30 04:03:01', 0, NULL, 0, NULL, 1),
(38035, 29774, '1', ' University  of Madras ', '', '', '2025', 65.00, '', 1, '2026-04-30 04:48:17', 0, NULL, 0, NULL, 1),
(38036, 29775, '3', 'State board of Tamilnadu', '', 'Bsc computer Science', '2025', 73.00, '', 1, '2026-04-30 05:36:05', 0, NULL, 0, NULL, 1),
(38037, 29776, '3', 'Madras University ', '', 'B.SC.Computer Science', '2024', 79.00, '', 1, '2026-04-30 05:36:39', 0, NULL, 0, NULL, 1),
(38038, 29777, '3', 'Alagappa University ', '', 'Bsc computer science ', '2025', 65.00, '', 1, '2026-04-30 05:46:23', 0, NULL, 0, NULL, 1),
(38039, 29771, '4', 'Anna university', '', 'MBA', '2024', 75.00, '', 1, '2026-04-30 05:56:37', 0, NULL, 0, NULL, 1),
(38040, 29778, '3', 'Anna University ', '', 'BE-CSE', '2024', 6.00, '', 1, '2026-04-30 06:46:41', 0, NULL, 0, NULL, 1),
(38041, 29779, '3', 'Sri Krishna engineering college ', '', 'B Tech ', '2026', 8.20, '', 1, '2026-04-30 07:33:22', 0, NULL, 0, NULL, 1),
(38042, 29781, '3', 'Presidency college chennai ', '', 'Ba english literature ', '2024', 70.00, '', 1, '2026-04-30 09:54:47', 0, NULL, 0, NULL, 1),
(38043, 29780, '3', 'bharadhidasan universit', '', 'bsc', '2025', 87.92, '', 154, '2026-04-30 03:31:04', 0, NULL, 0, NULL, 1),
(38044, 29780, '2', 'state board', '', '', '2022', 88.00, '', 154, '2026-04-30 03:31:43', 0, NULL, 0, NULL, 1),
(38045, 29780, '1', 'state board', '', '', '2020', 87.00, '', 154, '2026-04-30 03:32:24', 0, NULL, 0, NULL, 1),
(38046, 29782, '3', 'Periyar University ', '', 'Bachelor of computer science ', '2025', 7.00, '', 1, '2026-04-30 05:10:45', 0, NULL, 0, NULL, 1),
(38047, 29783, '3', 'Madras University ', '', 'BCA', '2025', 63.00, '', 1, '2026-05-02 04:21:20', 0, NULL, 0, NULL, 1),
(38048, 29784, '3', 'Anna University ', '', 'B.E Computer Science Engineering', '2021', 70.00, '', 1, '2026-05-02 04:36:16', 0, NULL, 0, NULL, 1),
(38049, 29785, '2', 'state board', '', 'b.tech it', '2023', 6.20, '', 1, '2026-05-02 04:55:46', 0, NULL, 0, NULL, 1),
(38050, 29786, '3', 'Anna university ', '', 'B tech it', '2024', 70.00, '', 1, '2026-05-02 05:21:09', 0, NULL, 0, NULL, 1),
(38051, 29787, '3', 'Anna University ', '', 'BE mechanical engineering ', '2025', 71.50, '', 1, '2026-05-02 05:24:43', 0, NULL, 0, NULL, 1),
(38052, 29789, '3', 'anna uni ', '', 'bachelor of engineering', '2025', 75.00, '', 1, '2026-05-02 05:40:36', 0, NULL, 0, NULL, 1),
(38053, 29790, '3', 'Madras university ', '', 'BSc maths', '2021', 70.00, '', 1, '2026-05-02 06:03:23', 0, NULL, 0, NULL, 1),
(38054, 29791, '4', 'Sastra universit', '', 'MCA', '2023', 78.00, '', 154, '2026-05-02 11:34:23', 0, NULL, 0, NULL, 1),
(38055, 29791, '3', 'Bharadhidhasa', '', 'BCA', '2021', 70.00, '', 154, '2026-05-02 11:36:07', 0, NULL, 0, NULL, 1),
(38056, 29792, '5', 'Dote', '', '', '2020', 71.00, '', 1, '2026-05-02 06:37:24', 0, NULL, 0, NULL, 1),
(38057, 29793, '3', 'anna university', '', 'b.tech', '2026', 7.00, '', 1, '2026-05-02 07:59:46', 0, NULL, 0, NULL, 1),
(38058, 29795, '3', 'Anna University ', '', 'B.Tech ', '2026', 75.00, '', 1, '2026-05-02 08:00:58', 0, NULL, 0, NULL, 1),
(38059, 29794, '3', 'anna universitu', '', 'b.tech', '2026', 6.20, '', 1, '2026-05-02 08:02:27', 0, NULL, 0, NULL, 1),
(38060, 29796, '3', 'Madras University ', '', 'Bsc', '2026', 67.00, '', 1, '2026-05-02 08:05:30', 0, NULL, 0, NULL, 1),
(38061, 29799, '4', 'Anna universit ', '', 'MSC ', '2026', 70.00, '', 154, '2026-05-02 03:46:03', 0, NULL, 0, NULL, 1),
(38062, 29798, '3', 'Madras university', '', 'BCA', '2026', 8.00, '', 1, '2026-05-02 10:16:51', 0, NULL, 0, NULL, 1),
(38063, 29801, '3', 'University of Madras ', '', 'B.Sc', '2025', 72.00, '', 1, '2026-05-04 04:35:36', 0, NULL, 0, NULL, 1),
(38064, 29803, '3', 'Madras University ', '', 'BBA', '2026', 54.00, '', 1, '2026-05-04 05:06:43', 0, NULL, 0, NULL, 1),
(38065, 29806, '3', 'University of Madras', '', 'Bcom', '2026', 75.00, '', 1, '2026-05-04 05:17:15', 0, NULL, 0, NULL, 1),
(38066, 29802, '3', 'Anna University ', '', 'BE-Electronics and Communication Engineering', '2021', 71.00, '', 1, '2026-05-04 05:22:42', 0, NULL, 0, NULL, 1),
(38067, 29804, '3', 'Madras University ', '', 'B.sc Visual Communication', '2026', 65.00, '', 1, '2026-05-04 05:24:10', 0, NULL, 0, NULL, 1),
(38068, 29409, '3', 'ANNA UNIVERSITY', '', 'BCA', '2025', 78.00, '', 154, '2026-05-04 11:01:17', 0, NULL, 0, NULL, 1),
(38069, 29807, '3', 'Madras university ', '', 'Bachelor of Science ', '2025', 7.00, '', 1, '2026-05-04 05:43:48', 0, NULL, 0, NULL, 1),
(38070, 29810, '3', 'KLE Lingaraj College Belagavi', '', 'BA', '2019', 59.00, '', 172, '2026-05-04 11:21:42', 0, NULL, 0, NULL, 1),
(38071, 29812, '1', 'State board ', '', '', '2017', 82.00, '', 1, '2026-05-04 05:56:00', 0, NULL, 0, NULL, 1),
(38072, 29812, '2', 'State board ', '', '', '2019', 48.00, '', 1, '2026-05-04 05:56:29', 0, NULL, 0, NULL, 1),
(38073, 29812, '3', 'Bharathidasan university ', '', 'B sc mathematics ', '2022', 81.00, '', 1, '2026-05-04 05:56:53', 0, NULL, 0, NULL, 1),
(38074, 29812, '4', 'Bharathidasan university ', '', 'MCA', '2025', 79.00, '', 1, '2026-05-04 05:57:10', 0, NULL, 0, NULL, 1),
(38075, 29813, '3', 'University of madras', '', 'BA Economics', '2026', 75.00, '', 1, '2026-05-04 06:07:32', 0, NULL, 0, NULL, 1),
(38076, 29814, '5', 'Paramedical ', '', 'Dmlt', '2018', 85.00, '', 1, '2026-05-04 06:16:06', 0, NULL, 0, NULL, 1),
(38077, 29809, '3', 'University of madras', '', 'BA Economics', '2026', 75.00, '', 1, '2026-05-04 06:19:07', 0, NULL, 0, NULL, 1),
(38078, 29816, '5', 'ANNA UNIVERSITY ', '', 'ELECTRONIC AND COMMUNICATION ENGINEERING ', '2018', 63.00, '', 1, '2026-05-04 06:59:02', 0, NULL, 0, NULL, 1),
(38079, 29817, '3', 'Madras University ', '', 'B.com', '2023', 80.00, '', 1, '2026-05-04 07:06:37', 0, NULL, 0, NULL, 1),
(38080, 29819, '3', 'Madras University ', '', 'Bcom Accounting and Finance ', '2026', 68.00, '', 1, '2026-05-04 07:26:25', 0, NULL, 0, NULL, 1),
(38081, 29818, '3', 'mahendira university', '', 'b.e', '2024', 70.00, '', 1, '2026-05-04 07:30:39', 0, NULL, 0, NULL, 1),
(38082, 29822, '3', 'University of Madras', '', 'B. Com (ISM) ', '2026', 59.00, '', 1, '2026-05-04 08:34:18', 0, NULL, 0, NULL, 1),
(38083, 29824, '3', 'V ishwesharaa Technological UniversitY', '', 'BE', '2014', 53.00, '', 172, '2026-05-04 02:11:23', 0, NULL, 0, NULL, 1),
(38084, 29826, '3', 'V.S.B engineering college ', '', 'BE', '2025', 7.40, '', 1, '2026-05-04 09:26:23', 0, NULL, 0, NULL, 1),
(38085, 29829, '4', 'Annamalai University ', '', 'M.com', '2024', 89.00, '', 1, '2026-05-05 04:26:36', 0, NULL, 0, NULL, 1),
(38086, 29831, '4', 'Anna University ', '', 'MCA', '2023', 70.00, '', 1, '2026-05-05 04:39:41', 0, NULL, 0, NULL, 1),
(38087, 29830, '3', 'Madras University ', '', 'B.com', '2026', 62.00, '', 1, '2026-05-05 04:44:42', 0, NULL, 0, NULL, 1),
(38088, 29832, '3', 'p.A college of engineering and technology ', '', 'B.E (ECE)', '2024', 86.00, '', 1, '2026-05-05 04:58:41', 0, NULL, 0, NULL, 1),
(38089, 29834, '3', 'MADRAS UNIVERSITY ', '', 'B.Com c.s', '2026', 63.00, '', 1, '2026-05-05 05:16:59', 0, NULL, 0, NULL, 1),
(38090, 29833, '3', 'Madras University ', '', 'B.com  (Corporate secretaryship)', '2026', 65.00, '', 1, '2026-05-05 05:17:04', 0, NULL, 0, NULL, 1),
(38091, 29835, '3', 'The new college ', '', 'B com', '2026', 75.00, '', 1, '2026-05-05 05:38:46', 0, NULL, 0, NULL, 1),
(38092, 29836, '3', 'madras universit', '', 'BBA', '2018', 62.00, '', 154, '2026-05-05 11:30:07', 0, NULL, 0, NULL, 1),
(38093, 29837, '2', 'Vidha Jothi College', '', '', '2022', 78.00, '', 172, '2026-05-05 11:56:41', 0, NULL, 0, NULL, 1),
(38094, 29838, '3', 'University of Madras ', '', 'Bcom ', '2025', 67.00, '', 1, '2026-05-05 06:30:50', 0, NULL, 0, NULL, 1),
(38095, 29839, '3', 'Madras University ', '', 'BCA ', '2020', 6.50, '', 1, '2026-05-05 06:43:16', 0, NULL, 0, NULL, 1),
(38096, 29840, '3', 'Mailam Engineering College', '', 'B.tech / Computer Science and Business Systems', '2026', 84.00, '', 1, '2026-05-05 06:45:31', 0, NULL, 0, NULL, 1),
(38097, 29840, '1', 'State Board of Tamilnadu', '', '', '2020', 65.00, '', 1, '2026-05-05 06:46:15', 0, NULL, 0, NULL, 1),
(38098, 29843, '1', 'Board', '', '', '2020', 42.00, '', 1, '2026-05-05 06:46:22', 0, NULL, 0, NULL, 1),
(38099, 29840, '2', 'State Board of Tamilnadu', '', '', '2022', 67.00, '', 1, '2026-05-05 06:46:39', 0, NULL, 0, NULL, 1),
(38100, 29843, '5', 'Board', '', 'Electrical and electronics engineering ', '2023', 77.00, '', 1, '2026-05-05 06:47:01', 1, '2026-05-05 06:48:57', 0, NULL, 1),
(38101, 29843, '3', 'University ', '', 'BTech Computer science and business systems ', '2026', 8.26, '', 1, '2026-05-05 06:48:25', 0, NULL, 0, NULL, 1),
(38102, 29844, '3', 'University of Madras ', '', 'B. B. A', '2026', 64.00, '', 1, '2026-05-05 06:55:57', 0, NULL, 0, NULL, 1),
(38103, 29845, '3', 'University of madras ', '', 'B.COM GEN', '2026', 70.00, '', 1, '2026-05-05 07:04:51', 0, NULL, 0, NULL, 1),
(38104, 29841, '1', 'state board of tamilnadu', '', '', '2018', 83.00, '', 1, '2026-05-05 07:14:00', 0, NULL, 0, NULL, 1),
(38105, 29841, '2', 'state board of tamilnadu', '', '', '2020', 56.00, '', 1, '2026-05-05 07:14:33', 0, NULL, 0, NULL, 1),
(38106, 29851, '4', 'University Of Madras', '', 'Master in Computer Applications ', '2026', 82.30, '', 1, '2026-05-05 07:14:56', 0, NULL, 0, NULL, 1),
(38107, 29841, '3', 'sri mankula vinayagar engineering colleg', '', 'b.tech', '2024', 79.00, '', 1, '2026-05-05 07:15:50', 0, NULL, 0, NULL, 1),
(38108, 29853, '4', 'University of Madras ', '', 'MCA ', '2026', 81.00, '', 1, '2026-05-05 07:16:41', 0, NULL, 0, NULL, 1),
(38109, 29853, '3', 'Thiruvallur university ', '', 'Bsc computer science ', '2024', 76.00, '', 1, '2026-05-05 07:17:24', 0, NULL, 0, NULL, 1),
(38110, 29850, '3', 'bharathiyar university', '', 'bsc Animation ', '2025', 75.00, '', 1, '2026-05-05 07:17:25', 0, NULL, 0, NULL, 1),
(38111, 29852, '4', 'Madras University ', '', 'MCA', '2026', 91.00, '', 1, '2026-05-05 07:18:52', 0, NULL, 0, NULL, 1),
(38112, 29854, '3', 'University of Madras ', '', 'B.com', '2026', 75.00, '', 1, '2026-05-05 07:19:03', 0, NULL, 0, NULL, 1),
(38113, 29855, '3', 'MADRAS UNIVERSITY ', '', 'BCOM ', '2026', 70.00, '', 1, '2026-05-05 07:20:15', 0, NULL, 0, NULL, 1),
(38114, 29842, '1', 'state boardof tamilnadu', '', '', '2020', 55.00, '', 1, '2026-05-05 07:24:07', 0, NULL, 0, NULL, 1),
(38115, 29842, '2', 'state boardof tamilnadu', '', '', '2022', 45.00, '', 1, '2026-05-05 07:24:37', 0, NULL, 0, NULL, 1),
(38116, 29846, '1', 'Madras university', '', '', '2023', 90.00, '', 1, '2026-05-05 07:34:02', 0, NULL, 0, NULL, 1),
(38117, 29857, '3', 'Board', '', 'B.com Ism', '2025', 56.00, '', 1, '2026-05-05 07:49:19', 0, NULL, 0, NULL, 1),
(38118, 29858, '4', 'Madras University ', '', 'MA. ECONOMICS ', '2026', 70.00, '', 1, '2026-05-05 09:08:50', 0, NULL, 0, NULL, 1),
(38119, 29858, '3', 'Madras University ', '', 'B A. ECONOMICS ', '2024', 67.00, '', 1, '2026-05-05 09:09:35', 1, '2026-05-05 09:11:46', 0, NULL, 0),
(38120, 29750, '3', 'Anna University ', '', 'Btech IT', '2021', 75.00, '', 1, '2026-05-05 09:14:45', 0, NULL, 0, NULL, 1),
(38121, 29859, '4', 'Madras University ', '', 'MBA HRM ', '2026', 75.00, '', 1, '2026-05-05 09:24:37', 0, NULL, 0, NULL, 1),
(38122, 29859, '3', 'Jbas', '', 'Ba CORPORATE ECONOMICS ', '2023', 70.00, '', 1, '2026-05-05 09:24:57', 0, NULL, 0, NULL, 1),
(38123, 29859, '1', 'Govt hobart higher secondary school ', '', '', '2020', 65.00, '', 1, '2026-05-05 09:25:24', 0, NULL, 0, NULL, 1),
(38124, 29859, '2', 'Govt hobart ', '', '', '2020', 65.00, '', 1, '2026-05-05 09:25:40', 0, NULL, 0, NULL, 1),
(38125, 29860, '3', 'Madha engineering college ', '', 'B.E CSE', '2024', 7.75, '', 1, '2026-05-05 09:44:34', 0, NULL, 0, NULL, 1),
(38126, 29862, '1', 'Manonmaniam Sundaranar University ', '', '', '2022', 77.00, '', 1, '2026-05-05 11:44:20', 1, '2026-05-05 11:47:23', 0, NULL, 0),
(38127, 29862, '3', 'Manonmaniam Sundaranar University ', '', 'BA', '2020', 56.00, '', 1, '2026-05-05 11:48:23', 0, NULL, 0, NULL, 1),
(38128, 29862, '4', 'Manonmaniam Sundaranar University ', '', 'MA Tamil ', '2022', 77.00, '', 1, '2026-05-05 11:48:57', 0, NULL, 0, NULL, 1),
(38129, 29856, '3', 'Madras university ', '', 'BBA', '2019', 59.20, '', 1, '2026-05-05 03:55:37', 0, NULL, 0, NULL, 1),
(38130, 29867, '3', 'Ramco Institute of Technology ', '', 'BE ECE', '2025', 63.00, '', 1, '2026-05-06 04:01:49', 0, NULL, 0, NULL, 1),
(38131, 29867, '2', 'CBSE', '', '', '2021', 75.00, '', 1, '2026-05-06 04:02:55', 0, NULL, 0, NULL, 1),
(38132, 29867, '1', 'CBSE', '', '', '2019', 80.00, '', 1, '2026-05-06 04:03:17', 0, NULL, 0, NULL, 1),
(38133, 29868, '3', 'University of Madras ', '', 'B.Sc Mathematics ', '2024', 58.00, '', 1, '2026-05-06 04:08:41', 1, '2026-05-06 04:11:41', 0, NULL, 1),
(38134, 29869, '3', 'pondycherry universiti', '', 'btech cse', '2025', 75.00, '', 1, '2026-05-06 04:20:43', 0, NULL, 0, NULL, 1),
(38135, 29870, '4', 'University of salford ', '', 'Msc procurement logistics and supply chain managem', '2023', 80.00, '', 1, '2026-05-06 04:57:36', 0, NULL, 0, NULL, 1),
(38136, 29870, '3', 'Madras University ', '', 'Bachelors of business administration ', '2017', 76.00, '', 1, '2026-05-06 04:59:03', 0, NULL, 0, NULL, 1),
(38137, 29866, '3', 'Dr.M.G.R. University educational research and institute ', '', 'B.com', '2022', 69.00, '', 1, '2026-05-06 05:00:06', 0, NULL, 0, NULL, 1),
(38138, 29871, '3', 'KSR Institute for Engineering and Technology ', '', 'B.E', '2021', 78.00, '', 1, '2026-05-06 05:02:39', 0, NULL, 0, NULL, 1),
(38139, 29871, '2', 'R.C Sacred Heart HSS', '', '', '2016', 83.00, '', 1, '2026-05-06 05:03:00', 0, NULL, 0, NULL, 1),
(38140, 29820, '3', 'Bharadhidhasan universit', '', 'Bcom computer application', '2020', 65.00, '', 154, '2026-05-06 11:10:25', 0, NULL, 0, NULL, 1),
(38141, 29874, '4', 'bharathidasan university', '', 'msc cs', '2025', 7.00, '', 1, '2026-05-06 06:32:34', 0, NULL, 0, NULL, 1),
(38142, 29872, '3', 'Madras universit', '', 'BCA', '2026', 76.00, '', 154, '2026-05-06 12:09:01', 0, NULL, 0, NULL, 1),
(38143, 29875, '3', 'Anna University ', '', 'BE.EEE', '2022', 73.00, '', 1, '2026-05-06 06:40:38', 0, NULL, 0, NULL, 1),
(38144, 29876, '3', 'Anna University ', '', 'B.E', '2023', 7.90, '', 1, '2026-05-06 08:03:26', 0, NULL, 0, NULL, 1),
(38145, 29876, '1', 'Stant Board Tamil Nadu ', '', '', '2016', 75.00, '', 1, '2026-05-06 08:04:09', 1, '2026-05-06 08:05:28', 0, NULL, 0),
(38146, 29877, '3', 'Bharathiyar University ', '', 'B.sc cs with cyber security ', '2025', 70.00, '', 1, '2026-05-06 09:33:20', 0, NULL, 0, NULL, 1),
(38147, 29880, '3', 'Madras University ', '', 'BCA', '2025', 83.00, '', 1, '2026-05-06 10:10:55', 0, NULL, 0, NULL, 1),
(38148, 29879, '4', 'Medras', '', 'M. Com Accounting and finance', '2026', 78.00, '', 1, '2026-05-06 11:04:30', 0, NULL, 0, NULL, 1),
(38149, 29881, '4', 'Madras University ', '', 'M.cOM ACCOUNTING & FINANCE ', '2026', 81.00, '', 1, '2026-05-06 11:21:21', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_educational_qualification` (`prime_candidate_tracker_educational_qualification_id`, `prime_candidate_tracker_id`, `standard`, `board_university`, `std_medium`, `degree`, `year_of_passing`, `percentage`, `work_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(38150, 29883, '3', 'Madras University ', '', 'Bcom ', '2026', 70.00, '', 1, '2026-05-07 03:47:37', 0, NULL, 0, NULL, 1),
(38151, 29865, '3', 'Anna University ', '', 'Artificial intelligence and data science ', '2024', 84.90, '', 1, '2026-05-07 03:56:09', 0, NULL, 0, NULL, 1),
(38152, 29865, '2', 'State board of Tamil Nadu ', '', '', '2020', 55.00, '', 1, '2026-05-07 03:56:43', 0, NULL, 0, NULL, 1),
(38153, 29865, '1', 'State board of Tamil Nadu ', '', '', '2018', 71.00, '', 1, '2026-05-07 03:57:06', 0, NULL, 0, NULL, 1),
(38154, 29884, '1', 'Board ', '', '', '2014', 87.40, '', 1, '2026-05-07 03:59:56', 0, NULL, 0, NULL, 1),
(38155, 29884, '5', 'Board', '', 'Diploma in Mechanical Engineering ', '2017', 72.00, '', 1, '2026-05-07 04:00:35', 0, NULL, 0, NULL, 1),
(38156, 29884, '3', 'University ', '', 'B.com', '2025', 78.00, '', 1, '2026-05-07 04:01:05', 0, NULL, 0, NULL, 1),
(38157, 29886, '3', 'Sacs mavmm engineering college ', '', 'B.e CSE', '2025', 71.25, '', 1, '2026-05-07 04:27:50', 0, NULL, 0, NULL, 1),
(38158, 28959, '3', 'Anna University ', '', 'BE', '2025', 8.61, '', 1, '2026-05-07 04:33:18', 0, NULL, 0, NULL, 1),
(38159, 28959, '2', 'State board', '', '', '2021', 89.00, '', 1, '2026-05-07 04:34:19', 0, NULL, 0, NULL, 1),
(38160, 28959, '1', 'State board ', '', '', '2019', 84.00, '', 1, '2026-05-07 04:34:40', 0, NULL, 0, NULL, 1),
(38161, 29885, '3', 'Madras University ', '', 'B.com', '2026', 70.00, '', 1, '2026-05-07 04:45:54', 0, NULL, 0, NULL, 1),
(38162, 29887, '3', 'Tamilnadu agricultural University ', '', 'Bsc Hons agriculture ', '2022', 72.00, '', 1, '2026-05-07 05:04:21', 0, NULL, 0, NULL, 1),
(38163, 29889, '1', 'State Board of Tamilnadu ', '', '', '2019', 74.00, '', 1, '2026-05-07 05:06:47', 0, NULL, 0, NULL, 1),
(38164, 29889, '2', 'State Board of Tamilnadu ', '', '', '2021', 85.00, '', 1, '2026-05-07 05:07:27', 0, NULL, 0, NULL, 1),
(38165, 29889, '3', 'Anna University ', '', 'B.E', '2025', 80.00, '', 1, '2026-05-07 05:07:51', 0, NULL, 0, NULL, 1),
(38166, 29888, '4', 'Madras University ', '', 'M COM Accounting and Finance ', '2026', 81.00, '', 1, '2026-05-07 05:09:54', 0, NULL, 0, NULL, 1),
(38167, 29891, '3', 'Thiruvalluvar ', '', 'Bsc computer science', '2024', 67.00, '', 1, '2026-05-07 05:26:25', 0, NULL, 0, NULL, 1),
(38168, 29892, '3', 'B. S. Abdur Rahman Crescent Institute Of Science And Technology', '', 'B.tech', '2024', 6.70, '', 1, '2026-05-07 05:38:58', 0, NULL, 0, NULL, 1),
(38169, 29894, '5', 'Ramakrishna polytechnic ', '', '', '2021', 67.00, '', 1, '2026-05-07 05:39:55', 0, NULL, 0, NULL, 1),
(38170, 29895, '3', 'university of Madras', '', 'BCA', '2026', 72.00, '', 1, '2026-05-07 05:48:17', 0, NULL, 0, NULL, 1),
(38171, 29895, '2', ' State Board of Tamil Nadu ', '', '', '2023', 89.00, '', 1, '2026-05-07 05:49:39', 0, NULL, 0, NULL, 1),
(38172, 29893, '3', 'Madras University ', '', 'B.com', '2023', 68.00, '', 1, '2026-05-07 05:50:41', 0, NULL, 0, NULL, 1),
(38173, 29895, '1', 'State Board of Tamil Nadu ', '', '', '2021', 66.63, '', 1, '2026-05-07 05:51:06', 0, NULL, 0, NULL, 1),
(38174, 29897, '3', 'St.thomas college of arts and science ', '', 'B.com ', '2026', 60.00, '', 1, '2026-05-07 06:24:06', 0, NULL, 0, NULL, 1),
(38175, 29898, '3', 'madras University ', '', 'b.com cs', '2026', 60.00, '', 1, '2026-05-07 06:25:41', 0, NULL, 0, NULL, 1),
(38176, 29896, '4', 'Anna university ', '', 'MCA', '2025', 78.50, '', 1, '2026-05-07 06:30:30', 0, NULL, 0, NULL, 1),
(38177, 29896, '3', 'University of Madras ', '', 'BCA', '2023', 66.60, '', 1, '2026-05-07 06:31:13', 0, NULL, 0, NULL, 1),
(38178, 29900, '3', 'Autonoms ', '', 'B sc geography', '2021', 52.00, '', 1, '2026-05-07 06:54:23', 0, NULL, 0, NULL, 1),
(38179, 29902, '3', 'anna university', '', 'ba Businesse  economics ', '2025', 65.00, '', 1, '2026-05-07 07:08:18', 0, NULL, 0, NULL, 1),
(38180, 29903, '3', 'niver of mad ', '', ' ba business economics ', '2025', 63.00, '', 1, '2026-05-07 07:08:25', 0, NULL, 0, NULL, 1),
(38181, 29637, '3', 'Madras University ', '', 'Bcom ', '2025', 50.00, '', 1, '2026-05-07 07:11:02', 0, NULL, 0, NULL, 1),
(38182, 29899, '3', 'Autonoms ', '', 'Bsc advanced zoology ', '2025', 50.00, '', 1, '2026-05-07 07:13:30', 0, NULL, 0, NULL, 1),
(38183, 29905, '3', 'Anna university', '', 'Bachelor of technology', '2025', 78.00, '', 1, '2026-05-07 07:40:20', 0, NULL, 0, NULL, 1),
(38184, 29906, '3', 'Bharathidasan University ', '', 'Physics', '2026', 84.00, '', 1, '2026-05-07 08:01:00', 0, NULL, 0, NULL, 1),
(38185, 29890, '3', 'Madras University ', '', 'Bsc computer science ', '2025', 78.00, '', 1, '2026-05-07 08:13:33', 0, NULL, 0, NULL, 1),
(38186, 29907, '3', 'Madras University ', '', 'B.com', '2026', 74.00, '', 1, '2026-05-07 09:34:55', 0, NULL, 0, NULL, 1),
(38187, 29908, '3', 'Madras University ', '', 'B.com', '2026', 70.00, '', 1, '2026-05-07 09:43:00', 1, '2026-05-07 09:43:11', 0, NULL, 1),
(38188, 29909, '3', 'SRM', '', 'B.tech', '2026', 80.00, '', 1, '2026-05-07 09:47:40', 0, NULL, 0, NULL, 1),
(38189, 29911, '3', 'University of madras ', '', 'B.com general ', '2026', 70.00, '', 1, '2026-05-07 12:32:44', 0, NULL, 0, NULL, 1),
(38190, 29912, '1', 'Anna University', '', '', '2020', 95.00, '', 1, '2026-05-08 04:54:34', 0, NULL, 0, NULL, 1),
(38191, 29916, '3', 'University of Madras ', '', 'Bsc computer science ', '2025', 71.00, '', 1, '2026-05-08 05:33:57', 0, NULL, 0, NULL, 1),
(38192, 29917, '3', 'Shree raghavendra arts and science college ', '', 'BCA', '2016', 88.00, '', 1, '2026-05-08 05:36:48', 0, NULL, 0, NULL, 1),
(38193, 29918, '3', 'Madras university', '', 'Bachelor of computer application', '2023', 52.00, '', 1, '2026-05-08 05:39:18', 0, NULL, 0, NULL, 1),
(38194, 7745, '3', 'Madras University ', '', 'B. Com', '2020', 60.00, '', 1, '2026-05-08 06:12:28', 0, NULL, 0, NULL, 1),
(38195, 29920, '3', 'ANNA UNIVERSITY', '', 'BE ECE', '2025', 75.00, '', 154, '2026-05-08 11:42:35', 0, NULL, 0, NULL, 1),
(38196, 29914, '3', 'Madras University ', '', 'Bcom', '2026', 60.00, '', 1, '2026-05-08 06:20:09', 0, NULL, 0, NULL, 1),
(38197, 29919, '3', 'Anna University ', '', 'B.e computer science and engineering ', '2023', 7.71, '', 1, '2026-05-08 06:23:16', 0, NULL, 0, NULL, 1),
(38198, 29878, '3', 'Madras University ', '', 'Bcom', '2026', 60.00, '', 1, '2026-05-08 06:27:19', 0, NULL, 0, NULL, 1),
(38199, 29922, '3', 'Thiruthangal nadar college', '', 'B com general', '2026', 73.00, '', 1, '2026-05-08 06:37:49', 0, NULL, 0, NULL, 1),
(38200, 29923, '3', 'Madras University ', '', 'Bcom general ', '2026', 70.33, '', 1, '2026-05-08 06:38:50', 0, NULL, 0, NULL, 1),
(38201, 29915, '3', 'Madras University ', '', 'Bcom', '2026', 60.00, '', 1, '2026-05-08 06:42:21', 0, NULL, 0, NULL, 1),
(38202, 29924, '4', 'Sri Sairam Engineering College ', '', 'Mtech Integrated ', '2026', 7.54, '', 1, '2026-05-08 06:48:04', 0, NULL, 0, NULL, 1),
(38203, 29927, '3', 'Thiruvalluvar university ', '', 'BCA ', '2025', 80.00, '', 1, '2026-05-08 07:19:36', 0, NULL, 0, NULL, 1),
(38204, 29913, '3', 'Thiruvallur ', '', 'B. Com', '2023', 76.00, '', 1, '2026-05-08 07:21:19', 0, NULL, 0, NULL, 1),
(38205, 29929, '3', 'Anna university ', '', 'B. Tech IT ', '2025', 8.20, '', 1, '2026-05-08 07:33:18', 0, NULL, 0, NULL, 1),
(38206, 29921, '3', 'madras University ', '', 'bcom general', '2026', 66.00, '', 1, '2026-05-08 07:40:54', 0, NULL, 0, NULL, 1),
(38207, 29926, '3', 'Madras University ', '', 'B.com general ', '2026', 52.00, '', 1, '2026-05-08 07:49:39', 0, NULL, 0, NULL, 1),
(38208, 29928, '3', 'Vivekananda College ', '', 'BCA ', '2021', 70.00, '', 1, '2026-05-08 07:58:53', 0, NULL, 0, NULL, 1),
(38209, 29929, '5', 'Dote', '', 'DME', '2022', 83.00, '', 1, '2026-05-08 11:29:22', 0, NULL, 0, NULL, 1),
(38210, 29929, '1', 'state board ', '', '', '2019', 49.00, '', 1, '2026-05-08 11:31:35', 0, NULL, 0, NULL, 1),
(38211, 29936, '3', 'Bharathiyar ', '', 'BSC Computer Science ', '2025', 8.08, '', 1, '2026-05-09 04:24:44', 0, NULL, 0, NULL, 1),
(38212, 29937, '3', 'Thiruvalluvar University', '', 'B.sc Computer science', '2017', 50.00, '', 1, '2026-05-09 05:18:17', 0, NULL, 0, NULL, 1),
(38213, 29938, '3', 'Vikrama simhapuri university ', '', 'BCA', '2025', 72.00, '', 1, '2026-05-09 06:09:25', 0, NULL, 0, NULL, 1),
(38214, 29939, '4', 'Kamarajar University ', '', 'Master of computer Applications ', '2025', 75.00, '', 1, '2026-05-09 06:09:44', 0, NULL, 0, NULL, 1),
(38215, 29939, '3', 'Bharathidasan University ', '', 'Bachelor of computer Applications ', '2023', 79.00, '', 1, '2026-05-09 06:10:28', 0, NULL, 0, NULL, 1),
(38216, 29939, '2', 'State Board ', '', '', '2020', 69.00, '', 1, '2026-05-09 06:11:16', 0, NULL, 0, NULL, 1),
(38217, 29939, '1', 'State Board ', '', '', '2018', 60.00, '', 1, '2026-05-09 06:11:47', 0, NULL, 0, NULL, 1),
(38218, 29940, '3', 'THE NEW COLLEGE', '', 'BA', '2026', 55.00, '', 1, '2026-05-09 06:35:56', 0, NULL, 0, NULL, 1),
(38219, 29941, '3', 'Dr ambedkar government arts college ', '', 'BA English ', '2026', 70.00, '', 1, '2026-05-09 06:56:10', 0, NULL, 0, NULL, 1),
(38220, 29943, '3', 'Srm ist ', '', 'Bcom.general', '2025', 75.00, '', 1, '2026-05-09 07:00:55', 0, NULL, 0, NULL, 1),
(38221, 29945, '3', 'Madras university ', '', 'BCA', '2026', 7.80, '', 1, '2026-05-09 07:01:29', 0, NULL, 0, NULL, 1),
(38222, 29942, '1', 'Lurdu Girls hr sec school', '', '', '2021', 90.00, '', 1, '2026-05-09 07:07:06', 0, NULL, 0, NULL, 1),
(38223, 29944, '3', 'Madras university ', '', 'B. Com', '2026', 77.00, '', 1, '2026-05-09 07:27:36', 0, NULL, 0, NULL, 1),
(38224, 29946, '4', 'Sri Sairam Engineering College ', '', 'Mtech Integrated CSE ', '2026', 7.54, '', 1, '2026-05-09 09:33:52', 0, NULL, 0, NULL, 1),
(38225, 29947, '5', 'State Board of technical Education And Training ', '', 'Mechanical Engineering ', '2014', 80.00, '', 1, '2026-05-09 11:45:10', 1, '2026-05-09 12:13:19', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_candidate_tracker_log`
--

CREATE TABLE `cw_candidate_tracker_log` (
  `prime_candidate_tracker_log_id` int NOT NULL,
  `candidate_tracker_id` int NOT NULL,
  `role` varchar(100) DEFAULT '0',
  `employee_code` varchar(100) DEFAULT '',
  `emp_name` varchar(100) DEFAULT '',
  `department` varchar(100) DEFAULT '0',
  `designation` varchar(100) DEFAULT '0',
  `gender` varchar(100) DEFAULT '0',
  `date_of_birth` date DEFAULT NULL,
  `emp_age` int DEFAULT '0',
  `user_right` varchar(100) DEFAULT '3',
  `consultancy` varchar(100) DEFAULT '0',
  `emp_code` varchar(50) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_candidate_tracker_working_experience`
--

CREATE TABLE `cw_candidate_tracker_working_experience` (
  `prime_candidate_tracker_working_experience_id` int NOT NULL,
  `prime_candidate_tracker_id` int DEFAULT '0',
  `organization_name` varchar(50) DEFAULT '',
  `current_designation` varchar(50) DEFAULT '',
  `joined_date` date DEFAULT NULL,
  `salary_start` decimal(15,2) DEFAULT '0.00',
  `relived_date` date DEFAULT NULL,
  `salary_left` decimal(15,2) DEFAULT '0.00',
  `work_location` varchar(50) DEFAULT '',
  `resigned` varchar(100) DEFAULT '0',
  `duration` varchar(50) DEFAULT '0',
  `reasone_for_relieving` text,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_candidate_tracker_working_experience`
--

INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 11, 'cafs', 'mis', '2016-09-03', 10000.00, '2020-05-01', 20000.00, 't nagar', '1', '3 years 7 months', NULL, 1, '2020-09-03 11:03:51', 0, NULL, 0, NULL, 1),
(2, 4, 'Lakson technology private limited company', 'Data entry', '2019-11-15', 12000.00, '2020-07-31', 13000.00, 'MRC nagar', '1', '0 years 8 months', NULL, 1, '2020-09-03 11:06:12', 1, '2020-09-03 11:11:41', 0, NULL, 1),
(3, 1, 'Computer age management services', 'Spoc', '2019-07-01', 11900.00, '2020-08-13', 11900.00, 'Rayala tower', '1', '1 years 1 months', NULL, 1, '2020-09-03 11:07:50', 0, NULL, 0, NULL, 1),
(4, 2, 'Lakson', 'data entry', '2019-12-01', 12000.00, '2020-07-31', 12000.00, 'mRC Nagar', '1', '0 years 8 months', NULL, 1, '2020-09-03 11:11:08', 0, NULL, 0, NULL, 1),
(5, 1, 'RB Traders', 'Sales manager', '2018-05-01', 7000.00, '2019-05-03', 10000.00, 'Perambur', '1', '1 years 0 months', NULL, 1, '2020-09-03 11:11:29', 0, NULL, 0, NULL, 1),
(6, 5, 'Marketsoft1 services Pvt. Ltd.', 'Customer service', '2018-10-03', 13000.00, '2020-04-14', 15000.00, 'Saidapet', '1', '1 years 6 months', NULL, 1, '2020-09-03 11:23:15', 0, NULL, 0, NULL, 1),
(7, 18, 'Accenture', 'Process associate', '2016-06-22', 12500.00, '2017-06-23', 12500.00, 'Sollinganallur', '1', '1 years 0 months', NULL, 1, '2020-09-03 11:39:36', 0, NULL, 0, NULL, 1),
(8, 14, 'Rapid care', 'Telcall', '2020-03-11', 8000.00, '2020-08-11', 8000.00, 'Saidpet', '1', '0 years 5 months', NULL, 1, '2020-09-03 11:41:23', 0, NULL, 0, NULL, 1),
(9, 15, 'Lakson technology private limited company', 'Data entry', '2019-12-01', 12000.00, '2020-07-31', 12000.00, 'MRC nagar', '1', '0 years 8 months', NULL, 1, '2020-09-03 11:42:42', 0, NULL, 0, NULL, 1),
(10, 17, 'Conneqt business solutions ltd', 'Cce', '2018-11-10', 10500.00, '2020-03-06', 9800.00, 'Guindy', '1', '1 years 3 months', NULL, 1, '2020-09-03 11:44:24', 0, NULL, 0, NULL, 1),
(11, 13, 'IFB industries limited ', 'CRm coordinater and Telecalling ', '2018-01-28', 13045.00, '2020-03-20', 13045.00, 'Maduravayol', '1', '2 years 1 months', NULL, 1, '2020-09-03 11:44:24', 0, NULL, 0, NULL, 1),
(12, 19, 'Prestige group of companies ', 'Business Manager ', '2018-03-04', 16000.00, '2020-08-28', 26000.00, 'Velacherry ', '1', '2 years 5 months', NULL, 1, '2020-09-03 11:49:26', 0, NULL, 0, NULL, 1),
(13, 6, 'M1 marketing', 'Customer support', '2018-10-01', 12000.00, '2019-05-29', 14000.00, 'Saidapet', '1', '0 years 0 months', NULL, 1, '2020-09-03 11:51:22', 0, NULL, 0, NULL, 1),
(14, 23, 'Data entry', 'Chennai', '2019-08-01', 9600.00, '2020-09-03', 12000.00, 'Chennai', '2', '1 years 1 months', NULL, 1, '2020-09-03 11:51:48', 0, NULL, 0, NULL, 1),
(15, 20, 'Funds india', 'Kyc executive', '2017-12-11', 10000.00, '2020-01-04', 18000.00, 'Chennai', '1', '2 years 0 months', NULL, 1, '2020-09-03 11:53:48', 0, NULL, 0, NULL, 1),
(16, 22, 'Credit Mantri', 'Mis executive', '2018-09-04', 23000.00, '2019-07-26', 23000.00, 'T.nagar', '1', '0 years 10 months', NULL, 1, '2020-09-03 11:57:23', 0, NULL, 0, NULL, 1),
(17, 2, 'zealous service', 'customer supporter', '2018-05-11', 13000.00, '2019-09-03', 13000.00, 'gemini bridge', '1', '1 years 3 months', NULL, 1, '2020-09-03 11:58:27', 0, NULL, 0, NULL, 1),
(18, 27, 'L&T construction', 'Sr.Design Engineet', '2018-11-01', 57000.00, '2020-09-01', 57000.00, 'Chennai', '1', '1 years 10 months', ' Personal', 1, '2020-09-03 12:13:46', 0, NULL, 0, NULL, 1),
(19, 27, 'L&T B&F iC', 'Sr.Design engineet', '2018-11-01', 57000.00, '2020-08-31', 57000.00, 'Chennai', '1', '1 years 9 months', 'Family Circumstances', 1, '2020-09-03 12:18:10', 0, NULL, 0, NULL, 1),
(20, 33, 'BigFday.com', 'Relations', '2018-11-22', 25000.00, '2020-09-03', 27000.00, 'Chennai', '2', '1 years 9 months', ' The company is temporarily shutdown due to covid', 1, '2020-09-03 02:15:52', 0, NULL, 0, NULL, 1),
(21, 32, 'Sunlight sports private limited', 'Avahalli ', '2018-03-01', 15000.00, '2020-05-31', 25000.00, 'Bangalore', '1', '2 years 3 months', ' Long distance', 1, '2020-09-03 02:28:12', 0, NULL, 0, NULL, 1),
(22, 46, 'Tagtes technology', 'Php developer', '2020-06-15', 3.50, '2020-09-01', 2.60, 'Chennai', '1', '0 years 2 months', ' Salary issue', 1, '2020-09-04 11:14:48', 0, NULL, 0, NULL, 1),
(23, 48, 'tech mahindra , vcare , hado', 'sales executive', '2018-08-20', 10.00, '2018-08-20', 13.00, 'ambattur anna nagar', '1', '2 years 0 months', ' ', 1, '2020-09-04 11:15:09', 0, NULL, 0, NULL, 1),
(24, 50, 'Chennai mettex lab', 'Report preparation and marketing', '2016-05-09', 13.00, '2020-02-15', 15000.00, 'Chennai', '1', '3 years 9 months', 'Timing issue', 1, '2020-09-04 11:19:02', 0, NULL, 0, NULL, 1),
(25, 53, 'Bajaj Allianz general insurance ', 'Sales executives ', '2019-03-09', 10000.00, '2020-03-09', 10500.00, 'Arubakkam', '1', '1 years 0 months', ' Expected salary', 1, '2020-09-04 11:35:27', 0, NULL, 0, NULL, 1),
(26, 57, 'Spi global technologies Pvt Ltd', 'Executive Paginator', '2018-05-02', 15000.00, '2019-06-29', 15000.00, 'Chennai', '1', '1 years 1 months', ' Medical problems', 1, '2020-09-04 11:35:58', 0, NULL, 0, NULL, 1),
(27, 57, 'Glocom e-commerce Pvt Ltd', 'Jr. Merchandiser', '2015-10-14', 13000.00, '2017-12-30', 16000.00, 'Chennai', '1', '2 years 2 months', 'Office closed due to some loss in business', 1, '2020-09-04 11:37:43', 0, NULL, 0, NULL, 1),
(28, 58, 'CAMS', 'Processing Officer ', '2018-02-26', 13000.00, '2019-08-11', 15000.00, 'mount Road', '1', '1 years 5 months', ' For Better Opportunity ', 1, '2020-09-04 11:45:04', 0, NULL, 0, NULL, 1),
(29, 59, 'zealous', 'CSE', '2018-03-15', 10000.00, '2020-02-10', 18000.00, 'Nungambakkam', '1', '2 years 5 months', ' Company closed', 1, '2020-09-04 11:49:06', 0, NULL, 0, NULL, 1),
(30, 61, 'Angel Broking', 'Rm', '2018-08-13', 18000.00, '2020-08-14', 20000.00, 'Thousand light', '1', '2 years 0 months', ' Want to gain more experience', 1, '2020-09-04 12:05:29', 0, NULL, 0, NULL, 1),
(31, 62, 'Vizza insurance broking', 'Telecalling', '2019-09-21', 14000.00, '2020-07-04', 14000.00, 'Power house', '1', '0 years 9 months', ' ', 1, '2020-09-04 12:17:48', 0, NULL, 0, NULL, 1),
(32, 64, 'Sulekha. Com', 'Tele marketing executive', '2019-05-10', 21000.00, '2019-12-31', 21000.00, 'Chennai', '1', '0 years 7 months', ' Family function', 1, '2020-09-04 12:48:57', 0, NULL, 0, NULL, 1),
(33, 65, 'Teleperformance India', 'Fraud Prevention Analytics', '2017-07-21', 18000.00, '2020-04-21', 20000.00, 'Jaipur', '1', '2 years 9 months', ' During To The Pandamic Process Get Ramp Down.... ', 1, '2020-09-04 01:07:52', 0, NULL, 0, NULL, 1),
(34, 66, 'Sharp Gaze tech service ', 'HR recruiter ', '2019-10-29', 12500.00, '2020-05-31', 12500.00, 'Chennai ', '1', '0 years 7 months', ' Covid issues clients are not working that why relieved the job ', 1, '2020-09-04 01:23:54', 0, NULL, 0, NULL, 1),
(35, 67, 'Sharpgaze', 'Hr recruiter', '2019-10-28', 12500.00, '2020-06-01', 12500.00, 'Alwarpet', '1', '0 years 7 months', 'Covid issue, client are not working, that is company will be closed..', 1, '2020-09-04 01:33:02', 0, NULL, 0, NULL, 1),
(36, 71, 'IDFC first Bank Ltd', 'Senior officer', '2020-01-27', 32000.00, '2020-05-05', 32000.00, 'Chennai', '1', '0 years 3 months', 'Delaying promotion', 1, '2020-09-04 01:59:56', 0, NULL, 0, NULL, 1),
(37, 75, 'Finwego', 'Customer support representative', '2019-07-08', 14000.00, '2020-08-08', 14000.00, 'Chennai', '1', '1 years 1 months', ' Lay off', 1, '2020-09-04 03:43:52', 0, NULL, 0, NULL, 1),
(38, 77, 'Edelweiss tokio', 'Mcbm', '2018-11-27', 40000.00, '2020-09-03', 45000.00, ' Tambaram', '1', '1 years 9 months', ' Looking better options .', 1, '2020-09-04 05:26:42', 0, NULL, 0, NULL, 1),
(39, 90, 'Exp', 'Mngr', '2017-09-05', 10000.00, '1970-01-01', 20000.00, 'Ch', '2', '3 years 0 months', ' Reason', 1, '2020-09-05 12:10:58', 0, NULL, 0, NULL, 1),
(40, 29, 'cafs', 'chennai', '2020-07-01', 3000.00, '1970-01-01', 40000.00, 'chennai', '2', '0 years 2 months', ' Nil', 1, '2020-09-05 01:26:44', 0, NULL, 0, NULL, 1),
(41, 100, 'vortex company', 'engineer', '2019-03-01', 10000.00, '2020-07-10', 10000.00, 'chennai', '1', '1 years 4 months', ' salary  not sufficient', 1, '2020-09-05 06:32:09', 0, NULL, 0, NULL, 1),
(42, 107, 'Comodo cybersecurity solution', 'Product associate', '2019-06-17', 15000.00, '2020-06-22', 15000.00, 'Porur ', '1', '1 years 0 months', ' Process got shutdown due to covid -19', 1, '2020-09-06 07:50:51', 0, NULL, 0, NULL, 1),
(43, 110, 'sharekhan', 'sales', '2019-01-01', 15000.00, '2020-06-02', 15000.00, 'killpack', '1', '1 years 5 months', 'family problem', 1, '2020-09-07 10:53:22', 0, NULL, 0, NULL, 1),
(44, 112, 'Paladin software solutions', 'Junior Software developer', '2019-09-07', 15000.00, '2020-10-09', 15000.00, 'Anna nagar', '1', '0 years 1 months', 'Salary not paid ', 1, '2020-09-07 10:59:11', 26, '2020-09-07 12:05:17', 0, NULL, 1),
(45, 111, 'Reliance Nippon life insurance ', 'Executive Relationship manager', '2020-01-17', 24000.00, '2020-08-07', 24000.00, 'Chennai', '1', '0 years 6 months', ' Layoff due to COVID 19', 1, '2020-09-07 11:14:55', 0, NULL, 0, NULL, 1),
(46, 108, 'HDB Financial Services ', 'Field Sales Executive ', '2020-01-22', 15000.00, '1970-01-01', 15000.00, 'Nungambakkam', '2', '0 years 7 months', ' My Family Situation and Financial Problem ', 1, '2020-09-07 11:15:58', 0, NULL, 0, NULL, 1),
(47, 113, 'hdfc securities ltd', 'relationship manager', '2019-11-14', 15000.00, '2020-06-30', 15000.00, 'chennai', '1', '0 years 7 months', ' Personal reason.', 1, '2020-09-07 11:17:27', 0, NULL, 0, NULL, 1),
(48, 111, 'SKD Allied health insurance', 'Insurance investigation', '2016-04-03', 20000.00, '2019-07-16', 20000.00, 'Chennai', '1', '3 years 3 months', 'Due to personal reasons ', 1, '2020-09-07 11:17:36', 0, NULL, 0, NULL, 1),
(49, 116, 'Integrated enterprise private limited chennai ', 'Sales', '2019-01-03', 8000.00, '2020-01-02', 12500.00, 'Porur', '1', '0 years 11 months', ' Covid 19 ', 1, '2020-09-07 11:36:50', 0, NULL, 0, NULL, 1),
(50, 115, 'Allset business solutions', 'Tele caller .in collection team', '2018-07-09', 11000.00, '2020-01-29', 15000.00, 'Nungambakkam', '1', '1 years 6 months', ' I left my job for college exam and for project prepareing propose.', 1, '2020-09-07 11:50:03', 0, NULL, 0, NULL, 1),
(51, 114, 'Zealous Services', 'Customer Support Executive', '2018-04-14', 12000.00, '2020-03-03', 16500.00, 'Nungambakkam', '1', '1 years 10 months', ' Reduce Manpower', 1, '2020-09-07 11:50:38', 0, NULL, 0, NULL, 1),
(52, 118, 'Sakthi pelican insurance broking Pvt Ltd', 'Customer Relationship Manager', '2020-02-14', 26000.00, '1970-01-01', 26000.00, 'T. Nagar Chennai ', '2', '0 years 6 months', ' Customer base not available . It is fully direct business. ', 1, '2020-09-07 11:51:27', 0, NULL, 0, NULL, 1),
(53, 117, 'Zealous service', 'Costumer support executive', '2018-01-10', 10000.00, '2020-03-03', 15000.00, 'Nungambakkam', '1', '2 years 1 months', 'Reduce man power', 1, '2020-09-07 11:59:48', 0, NULL, 0, NULL, 1),
(54, 120, 'Xpressbess', 'Senior Supervioser onRoll', '2019-08-07', 15000.00, '2020-09-07', 18000.00, 'Adyar ', '1', '1 years 1 months', ' Hike on salary to achieve the Next level', 1, '2020-09-07 01:27:53', 0, NULL, 0, NULL, 1),
(55, 123, 'Exide life insurance ', 'Agency Manager ', '2019-06-03', 40000.00, '2020-05-02', 40000.00, 'Chennai', '1', '0 years 10 months', ' Carreer Growth ', 1, '2020-09-07 01:33:36', 0, NULL, 0, NULL, 1),
(56, 121, 'TEAM LEAS PVT LTD', 'SALES OFFICER', '2019-06-19', 15000.00, '1970-01-01', 17000.00, 'MOUNT ROAD', '2', '1 years 2 months', ' GET HIGH SALARY', 1, '2020-09-07 01:44:24', 0, NULL, 0, NULL, 1),
(57, 122, 'Hinduj leyland finance', 'Collection excecutive', '2019-12-16', 16000.00, '1970-01-01', 16000.00, 'Parrys', '2', '0 years 8 months', 'Imporment in sales', 1, '2020-09-07 01:50:21', 0, NULL, 0, NULL, 1),
(58, 124, 'godrej Boyce manufacturinger company', 'back office executive', '2020-02-22', 15000.00, '2020-04-30', 10000.00, 'ambathur', '1', '0 years 2 months', ' corona period low man power', 1, '2020-09-07 01:57:58', 0, NULL, 0, NULL, 1),
(59, 82, 'bob', 'credit card sales', '2019-07-01', 15000.00, '2019-12-30', 15000.00, 'purasaivakkam', '1', '0 years 5 months', ' Timing issues.', 1, '2020-09-07 02:12:48', 0, NULL, 0, NULL, 1),
(60, 127, 'IMA Sewing Solutions', 'Sales manager', '2018-10-20', 12000.00, '2020-07-23', 15000.00, 'Arumbakkam', '1', '1 years 9 months', ' Over time salary issue', 1, '2020-09-07 03:42:48', 1, '2020-09-07 03:43:57', 0, NULL, 1),
(61, 131, 'Royal Bank of Scotland ', 'Operation Analyst ', '2015-09-09', 13000.00, '2018-01-02', 19000.00, 'Chennai', '1', '2 years 3 months', ' Career opportunity in Dubai', 1, '2020-09-07 03:48:17', 0, NULL, 0, NULL, 1),
(62, 131, 'Etisalat telecommunications ', 'Sales and customer service ', '2018-04-03', 80000.00, '2020-04-30', 80000.00, 'Dubai', '1', '2 years 0 months', 'Returned back to Chennai with family ', 1, '2020-09-07 03:50:01', 0, NULL, 0, NULL, 1),
(63, 131, 'Sutherland global solution ', 'Customer service executive ', '2015-05-05', 9000.00, '2015-08-28', 9000.00, 'Chennai', '1', '0 years 3 months', 'Career development. ', 1, '2020-09-07 03:52:00', 0, NULL, 0, NULL, 1),
(64, 135, 'Barclays shared services', 'Process adviser', '2017-10-24', 10000.00, '2020-08-20', 15000.00, 'Chennai', '1', '2 years 9 months', ' Process completed', 1, '2020-09-07 04:50:27', 0, NULL, 0, NULL, 1),
(65, 138, 'Cholamandalam investment and finance company', 'Deputy Officer', '2019-06-17', 15300.00, '1970-01-01', 15300.00, 'Chennai', '2', '1 years 2 months', ' I have Done NISM 2B certification so i wish to get back mutual fund domain. ', 1, '2020-09-07 05:06:22', 0, NULL, 0, NULL, 1),
(66, 136, 'Sharekhan pvt ltd', 'Customer support executive(sales)', '2019-02-10', 15500.00, '2019-12-10', 18000.00, 'Bangalore', '1', '0 years 10 months', 'For my health issue', 1, '2020-09-07 05:08:45', 0, NULL, 0, NULL, 1),
(67, 138, 'CAMS', 'APO', '2017-02-02', 9800.00, '2019-06-21', 12400.00, 'Chennai', '1', '2 years 4 months', 'Due to family situation I wanted to change ', 1, '2020-09-07 05:10:38', 0, NULL, 0, NULL, 1),
(68, 138, 'Gvkemri', 'ERO', '2014-12-16', 9787.00, '2016-01-21', 9787.00, 'Chennai', '1', '1 years 1 months', 'Ear pain because of Earphones usage', 1, '2020-09-07 05:11:52', 0, NULL, 0, NULL, 1),
(69, 140, 'Lacara Intercorp Solutions pvt Ltd ', 'Junior Android DeveloperAndroid ', '2018-09-13', 12000.00, '2019-10-31', 15000.00, 'Royapettah ', '1', '1 years 1 months', ' ', 1, '2020-09-07 05:30:27', 0, NULL, 0, NULL, 1),
(70, 141, 'Shriram city union finance ltd', 'Assistant sales manager', '2015-12-30', 30.00, '2020-07-31', 16000.00, 'Chennai', '1', '4 years 7 months', ' Salary issue', 1, '2020-09-07 05:38:24', 0, NULL, 0, NULL, 1),
(71, 144, 'Market Xcel Data Matrix Pvt Ltd', 'Relationship Manager', '2017-04-08', 10000.00, '2019-08-08', 16000.00, 'Chennai', '1', '2 years 4 months', 'Not interested to continue', 1, '2020-09-07 06:46:07', 0, NULL, 0, NULL, 1),
(72, 144, 'Empire Management', 'Business Associate', '2020-06-12', 15000.00, '2020-08-14', 16000.00, 'Chennai', '1', '0 years 2 months', 'Not interested to continue', 1, '2020-09-07 06:47:52', 0, NULL, 0, NULL, 1),
(73, 146, 'Indusind bank limited', 'Customer service', '2016-12-26', 12000.00, '2019-01-08', 13000.00, 'Karapakkam', '1', '2 years 0 months', ' Long distance', 1, '2020-09-07 06:48:02', 0, NULL, 0, NULL, 1),
(74, 145, 'Jana bank ', 'Senior executive ', '2015-07-15', 13000.00, '2019-09-03', 15000.00, 'Urapakkam ', '1', '4 years 1 months', ' Salary hike ', 1, '2020-09-07 06:48:07', 0, NULL, 0, NULL, 1),
(75, 146, 'Shriram life insurance', 'Digital Marketing executive', '2019-03-11', 18500.00, '2019-09-18', 18500.00, 'Alwarpet', '1', '0 years 6 months', 'Personal issues ', 1, '2020-09-07 06:50:40', 0, NULL, 0, NULL, 1),
(76, 148, 'Icici Lombard General Insurance company', 'Tele sales officer', '2016-11-01', 8000.00, '2020-03-21', 11000.00, 'Chennai', '1', '3 years 4 months', ' Personal reasons', 1, '2020-09-07 07:21:29', 0, NULL, 0, NULL, 1),
(77, 150, 'Js construction', 'Site supervisor', '2018-10-03', 11000.00, '2020-03-20', 13000.00, 'Navalur', '1', '1 years 5 months', ' ', 1, '2020-09-08 09:35:26', 0, NULL, 0, NULL, 1),
(78, 158, 'IIFL', 'Customer Care Executive', '2014-07-07', 12500.00, '2016-02-17', 14500.00, 'Chennai ', '1', '1 years 7 months', ' Growth', 1, '2020-09-08 12:29:27', 0, NULL, 0, NULL, 1),
(79, 158, 'Sulekha.com', 'Senior Customer Associate', '2016-02-18', 17000.00, '2017-06-09', 17000.00, 'Chennai', '1', '1 years 3 months', 'Father Health Issue', 1, '2020-09-08 12:34:08', 0, NULL, 0, NULL, 1),
(80, 160, 'Gvk EMRI', 'Ero', '2020-05-06', 11000.00, '2020-08-10', 0.00, 'Teynampet', '1', '0 years 3 months', ' ', 1, '2020-09-08 03:01:45', 0, NULL, 0, NULL, 1),
(81, 101, 'Bankbazaar', 'Senior cR', '2018-07-11', 22000.00, '2020-10-26', 22000.00, 'Ambattur - one India land -', '1', '2 years 3 months', ' ', 1, '2020-09-08 03:09:06', 0, NULL, 0, NULL, 1),
(82, 161, 'Ashvika health care', 'Sales', '2019-10-18', 15000.00, '2020-07-18', 17500.00, 'Chennai', '1', '0 years 9 months', ' Due to safety', 1, '2020-09-08 03:09:08', 0, NULL, 0, NULL, 1),
(83, 101, 'Bankbazaar', 'SCRO', '2018-07-11', 22000.00, '2020-10-26', 22000.00, 'Ambattur - one India land -', '1', '2 years 1 months', ' Simply', 1, '2020-09-08 03:18:22', 0, NULL, 0, NULL, 1),
(84, 162, 'hatsun agro products pvt ltd', 'administration executive', '2019-10-25', 20000.00, '2020-08-15', 20000.00, 'chennai', '1', '0 years 9 months', ' Covid-19 ', 1, '2020-09-08 03:33:44', 0, NULL, 0, NULL, 1),
(85, 163, 'Chola Ms', 'CSE', '2019-04-10', 12000.00, '2019-10-16', 12000.00, 'Chennai', '1', '0 years 6 months', ' Health issue', 1, '2020-09-08 04:15:50', 0, NULL, 0, NULL, 1),
(86, 80, 'tvs', 'opt', '2020-09-09', 2300.00, '2020-09-16', 2700.00, 'padi', '1', '0 years 0 months', ' traning', 1, '2020-09-08 04:48:24', 0, NULL, 0, NULL, 1),
(87, 165, 'Six Cube Media', 'Customer Service Associate', '2019-06-08', 10000.00, '2020-08-31', 10000.00, 'Chennai', '1', '1 years 2 months', ' Due to pandamic company is going to wind up', 1, '2020-09-08 05:48:44', 0, NULL, 0, NULL, 1),
(88, 167, 'Max bupa health insurance company ltd', 'Relationship associate', '2019-11-01', 20000.00, '2020-07-01', 20000.00, 'Chennai', '1', '0 years 7 months', ' For carrier growth and financial situation ', 1, '2020-09-08 06:07:38', 0, NULL, 0, NULL, 1),
(89, 169, 'KPG solutions private limited', 'Valitator ', '2019-05-27', 12000.00, '2020-03-23', 13500.00, 'Egmore ', '1', '0 years 9 months', ' Due to Corona period they reduced salary of the staff', 1, '2020-09-08 06:17:59', 0, NULL, 0, NULL, 1),
(90, 166, 'kpg solutions pvt ltd', 'non voice', '2019-05-27', 12000.00, '2020-03-23', 30000.00, 'egmore', '1', '0 years 9 months', 'during this covid-19 period they reduced  the salary to   staff members that is why i relived.', 1, '2020-09-08 07:16:48', 0, NULL, 0, NULL, 1),
(91, 173, 'Kpg solutions pvt ltd. ', 'Data processing ', '2018-04-27', 10000.00, '2020-09-08', 13000.00, 'Kilpauk', '2', '2 years 4 months', ' Low salary ', 1, '2020-09-08 10:51:36', 0, NULL, 0, NULL, 1),
(92, 175, 'Google pay', 'GL', '2019-08-01', 20000.00, '2020-09-07', 18000.00, 'T.nagar', '1', '1 years 1 months', ' Salary Issue.', 1, '2020-09-09 10:26:24', 0, NULL, 0, NULL, 1),
(93, 178, 'Ashvika health care', 'Sale\'s excuter', '2019-08-10', 12000.00, '2020-09-09', 12000.00, 'Vellivakkam ', '1', '1 years 0 months', ' ', 1, '2020-09-09 10:59:13', 0, NULL, 0, NULL, 1),
(94, 182, 'Zealous', 'Semi voice process', '2019-08-16', 9000.00, '2020-07-08', 10000.00, 'Chennai', '1', '0 years 10 months', ' ', 1, '2020-09-09 11:02:39', 0, NULL, 0, NULL, 1),
(95, 179, 'Kores pvt Ltd. ', 'Data entry', '2019-02-22', 8500.00, '2019-12-25', 10500.00, 'Gemini', '1', '0 years 10 months', 'Salary issues on this company. Salary date was 10 but he will provide the salary 20 Or 25 . So this is reason for the relieving. ', 1, '2020-09-09 11:09:23', 0, NULL, 0, NULL, 1),
(96, 181, 'Bharath matrimony', 'Good', '2019-09-16', 10000.00, '2020-06-16', 10000.00, 'Guindy', '1', '0 years 9 months', ' Some family issue', 1, '2020-09-09 11:09:42', 0, NULL, 0, NULL, 1),
(97, 187, 'MERIDIO TRADING CORPORATION ', 'BACK OFFICE ', '2019-01-18', 15000.00, '2020-03-01', 15000.00, 'NUNGAMBAKKAM', '1', '1 years 1 months', ' Because off covid -19 transfer to coimbatore', 1, '2020-09-09 11:17:40', 0, NULL, 0, NULL, 1),
(98, 188, 'Bharat matrimony', 'Payment assistance executive', '2019-12-25', 13000.00, '2020-06-26', 13000.00, 'Guindy', '1', '0 years 6 months', ' Covid ', 1, '2020-09-09 12:12:15', 0, NULL, 0, NULL, 1),
(99, 192, 'Sub-k I transaction', 'Sales manager ', '2017-07-11', 11000.00, '2019-01-31', 18000.00, 'Chennai ', '1', '1 years 6 months', ' Contract is Over ', 1, '2020-09-09 12:36:34', 0, NULL, 0, NULL, 1),
(100, 192, 'Sky Pharma ', 'Sales and admin Manager ', '2019-02-01', 18000.00, '2020-02-15', 18000.00, 'Chennai ', '1', '1 years 0 months', 'Partners break of the business ', 1, '2020-09-09 12:38:36', 0, NULL, 0, NULL, 1),
(101, 193, 'spynest solution', 'quality analyst', '2019-07-08', 8000.00, '1970-01-01', 9600.00, 'chennai', '2', '1 years 2 months', ' ', 1, '2020-09-09 01:05:10', 0, NULL, 0, NULL, 1),
(102, 193, 'i maruqe solution', 'customer support executive', '2015-12-11', 4000.00, '2018-03-11', 7000.00, 'chennai', '1', '2 years 3 months', 'Due to Studies i left the job', 1, '2020-09-09 01:09:33', 0, NULL, 0, NULL, 1),
(103, 195, 'HDFC life', 'Assistant sales manager', '2019-05-20', 320000.00, '1970-01-01', 360000.00, 'Chennai', '2', '1 years 3 months', ' Salary issue', 1, '2020-09-09 02:15:09', 0, NULL, 0, NULL, 1),
(104, 195, 'Itech e-commerce company', 'Sr account manager', '2017-08-10', 240000.00, '2019-04-24', 280000.00, 'Chennai', '1', '1 years 8 months', 'Industry down', 1, '2020-09-09 02:18:57', 0, NULL, 0, NULL, 1),
(105, 196, 'Omega health care', 'Ar caller', '2019-03-15', 15000.00, '2020-03-02', 15000.00, 'Tharamani', '1', '0 years 11 months', ' ', 1, '2020-09-09 02:21:10', 0, NULL, 0, NULL, 1),
(106, 195, 'Alibaba.com India e-commerce Pvt Ltd ', 'Account manager', '2014-03-03', 200000.00, '2015-07-15', 200000.00, 'Chennai', '1', '1 years 4 months', 'Company migrated', 1, '2020-09-09 02:21:45', 0, NULL, 0, NULL, 1),
(107, 195, 'Justdial ltd', 'BDE', '2012-10-08', 180000.00, '2014-02-24', 180000.00, 'Chennai', '1', '1 years 4 months', 'Timing issues', 1, '2020-09-09 02:23:37', 0, NULL, 0, NULL, 1),
(108, 195, 'Icici lombard', 'Tele sales officer', '2010-06-02', 120000.00, '2012-09-10', 120000.00, 'Chennai', '1', '2 years 3 months', 'Growth ', 1, '2020-09-09 02:25:53', 0, NULL, 0, NULL, 1),
(109, 200, 'Nokia solutions pvt. Ltd. ', 'Repair operator', '2018-07-16', 10000.00, '2019-03-18', 11000.00, 'Oragadam', '1', '0 years 8 months', ' The contract was over', 1, '2020-09-09 04:37:45', 1, '2020-09-09 04:38:18', 0, NULL, 1),
(110, 200, 'Technosoft global services pvt. Ltd. ', 'AR CALLER', '2019-06-08', 15000.00, '2019-08-29', 15000.00, 'Chennai', '1', '1 years 3 months', 'Cab was not provided for the change of location from dlf to shriram gateways', 1, '2020-09-09 04:42:52', 0, NULL, 0, NULL, 1),
(111, 200, 'Agshealth', 'AR CALLER', '2019-08-31', 18000.00, '2019-11-21', 18000.00, 'Tidel park', '1', '0 years 2 months', 'Because of health issues it was doctors advice not to continue night shift ', 1, '2020-09-09 04:47:07', 0, NULL, 0, NULL, 1),
(112, 208, 'Zealous services', 'Subject matter expert', '2016-11-07', 8500.00, '2020-02-28', 16600.00, 'Chennai', '1', '3 years 3 months', ' To learn new technology', 1, '2020-09-09 06:11:29', 0, NULL, 0, NULL, 1),
(113, 164, 'Bigbasket', 'Business development executive', '2019-12-16', 23800.00, '1970-01-01', 23800.00, 'Porur', '2', '0 years 8 months', ' ', 1, '2020-09-09 06:33:05', 0, NULL, 0, NULL, 1),
(114, 212, 'Jw Marriott marquis ', 'Guest service agent', '2015-06-12', 25000.00, '2017-08-18', 40000.00, 'Dubai uae', '1', '2 years 2 months', ' Wanted to settle down in india', 1, '2020-09-09 07:15:39', 0, NULL, 0, NULL, 1),
(115, 212, 'Eventzindiya', 'Customer relations manager', '2017-11-01', 30000.00, '2020-06-10', 35000.00, 'Coimbatore ', '1', '2 years 7 months', 'Looking for new challenges n roles to learn', 1, '2020-09-09 07:18:09', 0, NULL, 0, NULL, 1),
(116, 199, 'Justdial limited', 'Customer support executive ', '2017-09-18', 1102018.00, '2020-03-12', 25000.00, 'Saidapet ', '1', '2 years 11 months', ' Personal issues', 1, '2020-09-09 07:43:38', 0, NULL, 0, NULL, 1),
(117, 220, 'gmjfg', 'dmjtd', '2016-09-10', 10000.00, '2017-09-11', 30000.00, 'gdmjfgmtj', '1', '1 years 0 months', ' nill', 1, '2020-09-10 10:09:10', 0, NULL, 0, NULL, 1),
(118, 220, 'org', 'dmjtd', '2017-09-12', 65468.00, '1970-01-01', 568856.00, 'chennai', '2', '2 years 11 months', 'nill', 1, '2020-09-10 10:15:48', 0, NULL, 0, NULL, 1),
(119, 221, 'Qube cinemas technology', 'Processing officer', '2019-04-15', 180000.00, '2020-06-20', 200000.00, 'Chennai', '1', '1 years 2 months', ' Due to covid19 issues', 1, '2020-09-10 10:36:36', 0, NULL, 0, NULL, 1),
(120, 222, 'HTC global services', 'Data conversation operator', '2019-02-11', 7000.00, '2019-11-10', 10000.00, 'Vandalur', '1', '0 years 8 months', 'Due to examination ', 1, '2020-09-10 10:49:26', 0, NULL, 0, NULL, 1),
(121, 226, 'Sutherland global Services', 'Customer Support', '2019-03-20', 12000.00, '2019-11-11', 12000.00, 'Velachery', '1', '0 years 7 months', ' Process Closing', 1, '2020-09-10 10:59:47', 0, NULL, 0, NULL, 1),
(122, 224, 'CMS Aavin', 'DEO-ERP', '2019-10-01', 16000.00, '2020-06-30', 17000.00, 'Nandanam', '1', '0 years 8 months', ' Salary not credited on time', 1, '2020-09-10 11:08:18', 0, NULL, 0, NULL, 1),
(123, 223, 'CMS Computers Ltd', 'Implementation Executive', '2019-11-11', 16000.00, '2020-06-30', 17000.00, 'Nandanam ', '1', '0 years 7 months', ' Salary not credited on time', 1, '2020-09-10 11:08:23', 0, NULL, 0, NULL, 1),
(124, 236, 'wipro', 'Senior Phone Banking Representative', '2018-09-01', 19000.00, '2020-04-04', 22000.00, 'chennai', '1', '1 years 7 months', ' ', 1, '2020-09-10 01:07:14', 0, NULL, 0, NULL, 1),
(125, 243, 'Comnet Business Solutions', 'Team Leader', '2018-05-03', 21000.00, '2020-04-01', 21000.00, 'Chennai', '1', '1 years 10 months', ' Process closed due to covid19', 1, '2020-09-10 03:58:35', 0, NULL, 0, NULL, 1),
(126, 248, 'Cascade technology', 'Marketing executive', '2016-12-05', 18000.00, '2017-11-30', 20000.00, 'Poonthamallee, chennai', '1', '0 years 11 months', ' Company was shifted to Bangalore. ', 1, '2020-09-10 03:59:07', 0, NULL, 0, NULL, 1),
(127, 243, 'Comnet Business Solutions', 'Team Leader', '2018-05-03', 21000.00, '2020-05-01', 21000.00, 'Chennai', '1', '1 years 11 months', ' Process closed due to covid19', 1, '2020-09-10 04:01:00', 0, NULL, 0, NULL, 1),
(128, 249, 'GSP POWER PROJECTS PVT LTD', 'NOC EXECUTIVE', '2018-12-05', 13000.00, '2019-10-01', 15000.00, 'Velachery', '1', '0 years 9 months', ' Due to personal reasons.', 1, '2020-09-10 04:02:47', 0, NULL, 0, NULL, 1),
(129, 248, 'Indusind bank', 'Marketing and collection executive', '2018-01-05', 21500.00, '2018-08-31', 21500.00, 'Guindy, Chennai', '1', '0 years 7 months', 'That time I have received amex opertuinty. ', 1, '2020-09-10 04:03:33', 0, NULL, 0, NULL, 1),
(130, 248, 'American Express', 'Business development executive', '2018-09-14', 24000.00, '2020-05-14', 26500.00, 'Mylapore, Chennai', '1', '1 years 8 months', 'Covid -19', 1, '2020-09-10 04:06:27', 0, NULL, 0, NULL, 1),
(131, 252, 'Yennes infotec pvt ltd', 'Accounts trainee', '2018-10-10', 12000.00, '2019-12-13', 12000.00, 'Chennai adyar', '1', '1 years 2 months', ' Personal issue', 1, '2020-09-10 07:28:19', 0, NULL, 0, NULL, 1),
(132, 251, 'McKinsey &company', 'Customer support executive', '2015-09-15', 9000.00, '2019-11-11', 12500.00, 'Taramani', '1', '4 years 1 months', ' ', 1, '2020-09-10 07:59:02', 0, NULL, 0, NULL, 1),
(133, 177, 'kpg private limited', 'non voice', '2019-05-27', 15000.00, '2020-06-09', 15000.00, 'egmore', '1', '1 years 0 months', ' due to covid-19 no production', 1, '2020-09-10 09:24:03', 0, NULL, 0, NULL, 1),
(134, 258, 'Axis Bank Ltd', 'Sales Officer', '2016-08-12', 14000.00, '2019-03-04', 17000.00, 'Adyar', '1', '2 years 6 months', ' Family commitment', 1, '2020-09-11 09:58:30', 0, NULL, 0, NULL, 1),
(135, 247, 'JJS EARTH MOVERS', 'Supervisor', '2019-03-01', 14000.00, '2020-03-15', 15000.00, 'Villivakam, high court colony main road', '1', '1 years 0 months', ' Corona issue', 1, '2020-09-11 09:59:27', 0, NULL, 0, NULL, 1),
(136, 259, 'Tryee', 'Ops', '2019-11-04', 14000.00, '2020-06-10', 15000.00, 'Santhome', '1', '0 years 7 months', ' Salary incentive issues', 1, '2020-09-11 10:34:10', 0, NULL, 0, NULL, 1),
(137, 260, 'E-cosmos indian Pvt Ltd', 'Health care executive', '2019-07-15', 15000.00, '2020-09-23', 15000.00, 'Chennai', '1', '1 years 2 months', ' I\'m looking for day shift and I wants to improve my skills.', 1, '2020-09-11 10:47:28', 0, NULL, 0, NULL, 1),
(138, 262, 'Magus', 'Sales', '2019-05-31', 10.00, '2020-01-06', 10.00, 'Alwarpet', '1', '0 years 7 months', ' Family issue', 1, '2020-09-11 11:22:43', 0, NULL, 0, NULL, 1),
(139, 241, 'HDB FINANCIAL SERVICES', 'Telecaller', '2019-01-02', 10000.00, '2020-07-03', 12500.00, 'Chennai', '1', '1 years 6 months', ' Layoff', 1, '2020-09-11 11:36:21', 0, NULL, 0, NULL, 1),
(140, 264, 'Exide battery service.ltd', 'No', '2019-03-06', 12000.00, '1970-01-01', 12000.00, 'Pallavaram Chennai', '2', '1 years 6 months', ' Salary problem', 1, '2020-09-11 12:02:25', 0, NULL, 0, NULL, 1),
(141, 264, 'Exide battery', 'No', '2019-03-06', 12000.00, '1970-01-01', 12000.00, 'Pallavaram Chennai', '2', '1 years 6 months', 'Salary problem', 1, '2020-09-11 12:03:38', 0, NULL, 0, NULL, 1),
(142, 265, 'Sutherland global services', 'Amazon consultant', '2017-08-30', 12987.00, '2020-09-02', 18599.00, 'Perungalathur', '1', '3 years 0 months', ' Rotational shift', 1, '2020-09-11 12:28:35', 0, NULL, 0, NULL, 1),
(143, 266, 'Matrimony.com', 'Process associate', '2018-01-09', 12000.00, '2019-12-31', 14000.00, 'Chennai', '1', '1 years 11 months', ' Not provide allowance', 1, '2020-09-11 12:48:03', 0, NULL, 0, NULL, 1),
(144, 269, 'Precision engineering Pvt Ltd', 'Technician', '2019-09-15', 13500.00, '2020-03-25', 13500.00, 'Ambattur', '1', '0 years 6 months', ' Covid 19', 1, '2020-09-11 01:20:52', 0, NULL, 0, NULL, 1),
(145, 253, 'Idfc mutual fund ', 'Sales coordinate ', '2016-11-11', 16000.00, '2018-03-31', 16500.00, 'Chetpet ', '1', '3 years 10 months', ' Pregnancy ', 1, '2020-09-11 02:31:29', 0, NULL, 0, NULL, 1),
(146, 271, 'nobel soft pvt ltd ', 'junior software developer', '2013-06-01', 9000.00, '2014-01-31', 9000.00, 'chennai', '1', '0 years 7 months', 'Salary problem ', 1, '2020-09-11 02:40:32', 0, NULL, 0, NULL, 1),
(147, 271, 'radiant integrity techno solutions pvt ltd', 'software developer', '2014-02-01', 12000.00, '2016-09-30', 30000.00, 'chennai', '1', '6 years 7 months', 'update to new technology', 1, '2020-09-11 02:42:39', 0, NULL, 0, NULL, 1),
(148, 271, 'blind matrix', 'senior software developer', '2016-10-13', 37000.00, '2019-02-28', 42000.00, 'chennai', '1', '2 years 4 months', 'timing not suitable for me', 1, '2020-09-11 02:44:29', 0, NULL, 0, NULL, 1),
(149, 271, 'tag and trace solutions', 'senior software developer', '2019-03-02', 53200.00, '1970-01-01', 60000.00, 'chennai', '2', '1 years 6 months', 'business down due to corona and distance', 1, '2020-09-11 02:46:36', 0, NULL, 0, NULL, 1),
(150, 275, 'Vibatel solution Pvt ltd ', 'Field sales officer ', '2018-11-22', 12000.00, '2020-02-12', 12000.00, 'Mylapore', '1', '1 years 2 months', 'House shifting', 1, '2020-09-12 10:35:57', 0, NULL, 0, NULL, 1),
(151, 285, 'test', 'team leader', '2015-02-04', 10000.00, '2020-06-02', 20000.00, 'chennai', '1', '5 years 3 months', ' test', 1, '2020-09-12 11:46:52', 0, NULL, 0, NULL, 1),
(152, 289, 'Gautam cement works', 'Sales administrator ', '2018-06-06', 15000.00, '2019-10-23', 25000.00, 'Chennai', '1', '1 years 4 months', ' Internal disputes in firm', 1, '2020-09-12 01:17:15', 0, NULL, 0, NULL, 1),
(153, 289, 'Bankbazaar.com ', 'Customer representative officer ', '2018-11-22', 22500.00, '2020-06-06', 22500.00, 'Ambattur,  chennai', '1', '1 years 6 months', 'Due to covid-19 they were unable to provide systems to work from home', 1, '2020-09-12 01:20:25', 0, NULL, 0, NULL, 1),
(154, 289, 'Bhagwan contractors', 'Managing head', '2017-07-11', 15000.00, '2018-04-25', 15000.00, 'Chennai', '1', '0 years 9 months', 'I was my father\'s business which I was looking over, later due to demonetization there was difficulty in getting orders.', 1, '2020-09-12 01:26:03', 0, NULL, 0, NULL, 1),
(155, 290, 'Mpr foods pvt ltd ', 'Senior sales executive', '2020-01-10', 18000.00, '2020-07-27', 18000.00, 'T nagar', '1', '0 years 6 months', ' Because of covid19 they temporarliy shutdown. So releived from there . ', 1, '2020-09-12 02:34:30', 0, NULL, 0, NULL, 1),
(156, 293, 'Roentgen surgical Pvt Ltd', 'Account executive', '2020-07-13', 17000.00, '1970-01-01', 17000.00, 'Nandanam', '2', '0 years 1 months', ' Need a career growth', 1, '2020-09-12 03:33:53', 0, NULL, 0, NULL, 1),
(157, 296, 'Goomo Orbit Corporate & Leisure Travels', 'executive', '2020-01-06', 23500.00, '2020-08-14', 23500.00, 'chennai', '1', '0 years 7 months', ' ', 1, '2020-09-12 05:23:05', 0, NULL, 0, NULL, 1),
(158, 296, 'IGT Solutions PvT Ltd.', 'process executive', '2018-09-04', 15000.00, '2020-01-04', 15000.00, 'chennai', '1', '1 years 4 months', 'wants to know learn different things', 1, '2020-09-12 05:25:50', 0, NULL, 0, NULL, 1),
(159, 304, 'Altruist', 'advisor', '2019-12-20', 10500.00, '1970-01-01', 11000.00, 'chennai', '2', '0 years 8 months', ' Salary issue', 1, '2020-09-13 02:41:02', 0, NULL, 0, NULL, 1),
(160, 307, 'transact global', 'telecaller', '2018-05-01', 17000.00, '2019-03-01', 17000.00, 'yeshwanthpur', '1', '0 years 9 months', ' Personal \nProblem', 1, '2020-09-13 08:36:02', 0, NULL, 0, NULL, 1),
(161, 308, 'Bank of baroda ', 'Yes', '2019-08-31', 2.00, '2020-08-03', 3.00, 'Koramangala', '1', '0 years 11 months', 'Company sifted to domlur\n', 1, '2020-09-13 10:09:40', 0, NULL, 0, NULL, 1),
(162, 310, 'North town estate', 'Civil Engineer', '2015-09-16', 10000.00, '2020-03-19', 18000.00, 'CHENNAI', '1', '4 years 6 months', ' Got job offer from another company and later joined. but due to COVID situation there leyoff me.', 1, '2020-09-14 10:22:04', 0, NULL, 0, NULL, 1),
(163, 312, 'Sundaram finance ', 'Junior associate ', '2018-03-16', 9000.00, '2020-07-31', 12000.00, 'Chennai ', '1', '2 years 4 months', ' Salary packages', 1, '2020-09-14 10:32:43', 0, NULL, 0, NULL, 1),
(164, 317, 'Matrix', 'Csa', '2019-07-08', 12500.00, '2020-03-24', 12500.00, 'Chennai international airport ', '1', '0 years 8 months', ' Corona', 1, '2020-09-14 11:16:10', 0, NULL, 0, NULL, 1),
(165, 276, 'Imerge', 'Sales manager', '2019-11-01', 25000.00, '2020-09-04', 25000.00, 'Chennai', '1', '0 years 10 months', ' Company closed due to corona', 1, '2020-09-14 11:26:47', 0, NULL, 0, NULL, 1),
(166, 316, 'mphasi', 'cr', '2018-02-01', 14000.00, '2019-01-09', 14000.00, 'tin factory', '1', '0 years 11 months', ' ', 1, '2020-09-14 11:30:35', 0, NULL, 0, NULL, 1),
(167, 318, 'Zodiac ', 'Csa', '2019-06-05', 15000.00, '2020-03-23', 15000.00, 'Chennai domestic airport ', '1', '0 years 9 months', ' Corona ', 1, '2020-09-14 11:30:58', 0, NULL, 0, NULL, 1),
(168, 323, 'SHIKSHA FINANCE', 'Opration ', '2019-07-29', 15000.00, '2020-03-31', 15000.00, 'Anna nagar', '1', '0 years 8 months', ' Personal reason', 1, '2020-09-14 11:52:05', 0, NULL, 0, NULL, 1),
(169, 283, 'Bharat Matrimony', 'Tellecaller', '2018-08-08', 9200.00, '2020-08-04', 10500.00, 'Guindy', '1', '1 years 11 months', ' Health issues', 1, '2020-09-14 11:52:26', 0, NULL, 0, NULL, 1),
(170, 322, 'Hfg entertainment put ltd', 'Artist', '2019-02-14', 16000.00, '2020-09-07', 16000.00, 'Chennai ', '1', '1 years 6 months', 'layoff due to corona', 1, '2020-09-14 11:53:22', 0, NULL, 0, NULL, 1),
(171, 327, 'vspl', 'field work', '2019-01-02', 15000.00, '2020-07-01', 18000.00, 'kodihalli hebbal', '1', '1 years 5 months', ' Due to lock down company got shutdown', 1, '2020-09-14 12:05:59', 0, NULL, 0, NULL, 1),
(172, 286, 'Tvs credit service', 'Back-end', '2019-04-01', 10000.00, '2020-03-19', 10000.00, 'Guindy', '1', '0 years 11 months', ' Personal issues', 1, '2020-09-14 12:09:24', 0, NULL, 0, NULL, 1),
(173, 328, 'Icici bank ', 'Assistant manager', '2019-10-03', 340000.00, '2020-02-12', 340000.00, 'Chennai', '1', '0 years 4 months', ' Health issue', 1, '2020-09-14 12:22:26', 0, NULL, 0, NULL, 1),
(174, 334, 'Computer Aged Management service Public Limited ', 'Assistant processing officer', '2017-04-12', 8500.00, '2020-10-10', 10700.00, 'Anna salai Mount Road', '1', '3 years 5 months', ' For Career Growth ', 1, '2020-09-14 02:11:03', 0, NULL, 0, NULL, 1),
(175, 333, 'CAMS', 'Apo', '2020-09-14', 9.10, '2020-10-10', 10000.00, 'Chennai', '1', '0 years 0 months', ' Career growth', 1, '2020-09-14 02:16:42', 0, NULL, 0, NULL, 1),
(176, 334, 'Computer Aged Management service Public Limited ', 'Assistant processing officer ', '2017-04-12', 8500.00, '2020-10-10', 10700.00, 'Anna salai', '1', '3 years 5 months', ' For career Growth', 1, '2020-09-14 02:19:34', 0, NULL, 0, NULL, 1),
(177, 332, 'IDBI federal', 'FRM', '2020-02-19', 362000.00, '1970-01-01', 25000.00, 'Chennai', '2', '0 years 6 months', ' ', 1, '2020-09-14 02:20:19', 0, NULL, 0, NULL, 1),
(178, 333, 'CAMS', 'APO', '2020-09-14', 9.10, '2020-10-10', 10000.00, 'Chennai', '1', '0 years 0 months', ' Career growth', 1, '2020-09-14 02:22:40', 0, NULL, 0, NULL, 1),
(179, 333, 'Cams', 'Apo', '2020-09-14', 9.10, '2020-10-10', 10.00, 'Chennai', '1', '0 years 0 months', ' Career growth', 1, '2020-09-14 02:26:01', 0, NULL, 0, NULL, 1),
(180, 335, 'Cams', 'Processing officer', '2019-08-05', 13500.00, '2020-10-11', 13500.00, 'Mount road', '1', '1 years 2 months', ' Career growth ', 1, '2020-09-14 02:29:04', 0, NULL, 0, NULL, 1),
(181, 339, 'test', 'engineer', '2013-03-01', 5000.00, '2020-01-01', 20000.00, 'chennai', '1', '6 years 10 months', ' test', 1, '2020-09-14 04:06:52', 0, NULL, 0, NULL, 1),
(182, 340, 'Kotak mahindra bank', 'Deputy manager-Business bankinh', '2020-02-03', 30000.00, '1970-01-01', 30000.00, 'Chennai', '2', '0 years 7 months', ' Location issue', 1, '2020-09-14 06:04:52', 0, NULL, 0, NULL, 1),
(183, 346, 'reliance nippon life insurance', 'senior relatiionship manager', '2019-12-20', 19500.00, '2020-06-25', 19500.00, 'chennai', '1', '0 years 6 months', ' family commitment', 1, '2020-09-15 11:31:11', 0, NULL, 0, NULL, 1),
(184, 343, 'just dial', 'telemarketting', '2018-04-25', 14000.00, '2019-07-25', 16000.00, 'little mount', '1', '1 years 3 months', ' some medical issue for my mother', 1, '2020-09-15 11:45:50', 0, NULL, 0, NULL, 1),
(185, 354, 'Ikya solution', 'Sales executive', '2018-12-03', 8000.00, '2019-08-30', 12000.00, 'Chennai', '1', '1 years 9 months', ' I got a higher studies mba so i releive my job', 1, '2020-09-15 02:39:39', 0, NULL, 0, NULL, 1),
(186, 353, 'MAX LIFE INSURANCE', 'Deputy manager', '2020-01-20', 29400.00, '1970-01-01', 29400.00, 'chennai', '2', '0 years 7 months', ' My carrier growth', 1, '2020-09-15 02:41:07', 0, NULL, 0, NULL, 1),
(187, 363, 'test', 'engineer', '2015-02-03', 10000.00, '2020-05-01', 15000.00, 'chennai', '1', '5 years 2 months', ' test', 1, '2020-09-15 07:21:05', 0, NULL, 0, NULL, 1),
(188, 365, 'hqmt', 'front office', '2015-03-13', 9000.00, '2016-06-15', 9000.00, 'vijayanagr', '1', '1 years 3 months', ' Because of health issue', 1, '2020-09-15 08:00:07', 0, NULL, 0, NULL, 1),
(189, 368, 'Inorex space private Limited  AKA 90bar2', 'Software developer ', '2019-12-24', 190000.00, '2020-08-06', 190000.00, 'Ashok Nagar chennai ', '1', '0 years 7 months', ' Layoff due to corona', 1, '2020-09-16 10:19:20', 0, NULL, 0, NULL, 1),
(190, 368, 'Webprogr.com ', 'Software developer ', '2019-01-02', 190000.00, '2019-12-21', 190000.00, 'Ashok Nagar', '1', '0 years 11 months', 'NAN', 1, '2020-09-16 10:20:58', 0, NULL, 0, NULL, 1),
(191, 369, 'Tamil matrimoni', 'Customer relationship', '2020-01-21', 12500.00, '2020-04-07', 12500.00, 'Guindy', '1', '0 years 2 months', ' ', 1, '2020-09-16 11:06:03', 0, NULL, 0, NULL, 1),
(192, 366, 'Pristine facility', 'Telecaller', '2019-02-27', 15000.00, '2020-06-16', 18000.00, 'Shivajinagar', '1', '1 years 6 months', ' Covid ', 1, '2020-09-16 11:19:58', 0, NULL, 0, NULL, 1),
(193, 374, 'relaince jio', 'assistant manager', '2019-11-04', 35000.00, '2020-09-08', 35000.00, 'nungambakkam', '1', '0 years 10 months', ' better opportunities', 1, '2020-09-16 11:46:59', 0, NULL, 0, NULL, 1),
(194, 374, 'team lease', 'relationship manager', '2018-09-19', 35000.00, '2019-10-05', 35000.00, 'kilpauk', '1', '1 years 0 months', 'Better growth', 1, '2020-09-16 11:48:28', 0, NULL, 0, NULL, 1),
(195, 374, 'hdfc life ', 'business development manager', '2018-02-19', 23000.00, '2018-08-31', 23000.00, 'tambram', '1', '0 years 6 months', 'better growth', 1, '2020-09-16 11:50:22', 1, '2020-09-16 11:51:54', 0, NULL, 1),
(196, 374, 'vodafone (forte)', 'relationship manager', '2014-07-24', 25000.00, '2018-02-17', 25000.00, 'guindy', '1', '3 years 6 months', 'better opportunities', 1, '2020-09-16 11:51:36', 0, NULL, 0, NULL, 1),
(197, 371, 'Ruloans distribution service pvt Ltd ', 'Tellecaller', '2019-09-01', 13000.00, '2020-09-16', 13000.00, 'Kodambakkam ', '1', '1 years 0 months', ' Delay salary ', 1, '2020-09-16 11:54:08', 0, NULL, 0, NULL, 1),
(198, 380, 'Matrimony', 'Tellecaller', '2019-09-16', 10000.00, '2020-06-05', 10000.00, 'Guindy', '1', '0 years 8 months', ' ', 1, '2020-09-16 12:17:32', 0, NULL, 0, NULL, 1),
(199, 383, 'Om innovation', 'Telecaller', '2020-03-03', 1.00, '1970-01-01', 11500.00, 'chetpet', '2', '0 years 6 months', ' Salary issues', 1, '2020-09-16 12:31:39', 0, NULL, 0, NULL, 1),
(200, 311, 'tamil matrimony', 'customer reletionship', '2020-01-21', 11500.00, '2020-08-07', 11500.00, 'guindy', '1', '0 years 6 months', 'covid 19 issue', 1, '2020-09-16 12:32:26', 0, NULL, 0, NULL, 1),
(201, 375, 'Fruit shop on dreams road', 'Cashier', '2019-06-01', 15000.00, '2020-02-12', 15000.00, 'Chennai', '1', '0 years 8 months', ' Timing', 1, '2020-09-16 12:36:09', 0, NULL, 0, NULL, 1),
(202, 365, 'High quality medical transcription institute', 'Front office', '2015-07-26', 9.00, '2017-09-16', 9.00, 'Vijaynagar bangalore', '1', '2 years 1 months', ' Due to my health issue', 1, '2020-09-16 12:39:05', 0, NULL, 0, NULL, 1),
(203, 382, 'Vertex customer management private limited', 'Telecallerl', '2018-07-13', 10000.00, '2019-04-19', 10000.00, 'Mountroad', '1', '0 years 9 months', ' Process closed', 1, '2020-09-16 01:08:09', 0, NULL, 0, NULL, 1),
(204, 386, 'Inscribe Graphics ', 'Graphic Designer', '2018-08-28', 12500.00, '1970-01-01', 14000.00, 'Perungudi', '2', '2 years 0 months', 'We didn\'t get enough orders to work', 1, '2020-09-16 01:31:33', 0, NULL, 0, NULL, 1),
(205, 381, 'Shi kana abroad education', 'telecalling', '2018-03-16', 11000.00, '1970-01-01', 12000.00, 't-nagar', '2', '2 years 6 months', ' Salary issues', 1, '2020-09-16 01:42:18', 0, NULL, 0, NULL, 1),
(206, 388, 'Saviva technologies', 'Web developer', '2017-03-08', 8000.00, '2017-09-11', 18000.00, 'Chennai', '1', '0 years 6 months', ' Contract based work', 1, '2020-09-16 01:55:38', 0, NULL, 0, NULL, 1),
(207, 389, 'test', 'test', '2016-09-16', 10000.00, '1970-01-01', 20000.00, 'chennai', '2', '4 years 0 months', 'nill', 1, '2020-09-16 01:57:53', 0, NULL, 0, NULL, 1),
(208, 388, 'True tracking', 'Web developer ', '2018-01-10', 12000.00, '2019-03-04', 14000.00, 'Perungudi', '1', '1 years 1 months', 'Contract based work', 1, '2020-09-16 02:00:34', 0, NULL, 0, NULL, 1),
(209, 388, 'Sutherland', 'Customer support executive', '2019-04-08', 12000.00, '2020-01-09', 15000.00, 'Perungalathur', '1', '0 years 9 months', 'Need a job change', 1, '2020-09-16 02:03:13', 0, NULL, 0, NULL, 1),
(210, 388, 'Fuel Digital Marketing', 'Web developer', '2020-02-24', 18000.00, '2020-04-15', 18000.00, 'Adayar', '1', '0 years 1 months', 'Due to COVID-19', 1, '2020-09-16 02:04:24', 0, NULL, 0, NULL, 1),
(211, 394, 'Mpn capital services private limited', 'Customer care executive', '2017-05-09', 12000.00, '2018-12-20', 12000.00, 'Chennai', '1', '1 years 7 months', ' Due to Company shutdown', 1, '2020-09-16 04:49:43', 0, NULL, 0, NULL, 1),
(212, 394, 'NextGen technologies', 'Process associate', '2019-01-24', 14000.00, '2019-10-17', 14000.00, 'Chennai ', '1', '0 years 8 months', 'Salary delayed', 1, '2020-09-16 05:00:27', 0, NULL, 0, NULL, 1),
(213, 394, 'Marketsof 1', 'Customer experience support executive', '2019-10-24', 15112.00, '2020-05-01', 15112.00, 'Chennai ', '1', '0 years 6 months', 'Due to covid 19 company has relieved employees ', 1, '2020-09-16 05:07:58', 0, NULL, 0, NULL, 1),
(214, 393, 'ibc tamil Bharat mattimony ,hdfc bank,', 'Voice', '2020-09-17', 7000.00, '2020-09-30', 21000.00, 'Chennai', '1', '0 years 0 months', ' Corono situation', 1, '2020-09-16 05:17:21', 0, NULL, 0, NULL, 1),
(215, 397, 'Global best hr management consultant', 'Hr excutive', '2019-07-22', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '1 years 1 months', ' Due to covid huge loss in business', 1, '2020-09-16 05:23:58', 0, NULL, 0, NULL, 1),
(216, 397, 'Inesh management consultant', 'Hr recruitment', '2017-07-22', 12000.00, '2019-04-10', 12000.00, 'Chennai', '1', '3 years 1 months', 'Due to father passed', 1, '2020-09-16 05:27:07', 0, NULL, 0, NULL, 1),
(217, 398, 'Smart training resource ', 'Trainer', '2016-01-04', 14000.00, '2017-01-30', 14000.00, 'Nungambakkam', '1', '1 years 0 months', ' Timing and outdoor work', 1, '2020-09-16 05:28:04', 1, '2020-09-16 05:32:00', 0, NULL, 0),
(218, 399, 'Future group', 'Senior Executive', '2018-09-10', 22000.00, '2020-04-03', 22000.00, 'Chennai', '1', '2 years 0 months', ' I am looking better opportunity in sales and marketing ', 1, '2020-09-16 05:41:35', 0, NULL, 0, NULL, 1),
(219, 401, 'Aph solution', 'Back office executive', '2017-10-04', 10000.00, '2020-03-05', 15000.00, 'Mount Road chennai', '1', '2 years 5 months', ' Only one reason our world suffering corona virus so our company cannot going to next level so I can\'t continue my work', 1, '2020-09-16 06:29:08', 0, NULL, 0, NULL, 1),
(220, 201, 'Club mahindra resorts private limited', 'telemarketing executive', '2018-06-14', 16200.00, '2019-11-09', 16200.00, 'chennai', '1', '1 years 4 months', ' I\'m a single parent children. My uncle only taking care of me since my childhood. He had a plan of starting new Business. inorder to support Him, i had left mahindra and joined with him. But due to civil reasons we had faced huge loss and decided to shutdown it completely. That\'s the reason im looking job again and i will be grateful if im selected in your Organisation  ', 1, '2020-09-16 11:03:54', 0, NULL, 0, NULL, 1),
(221, 405, 'Deal money ', 'Senior telecaller ', '2019-04-14', 11000.00, '2020-02-16', 11000.00, 'Mylapore ', '1', '0 years 10 months', ' ', 1, '2020-09-17 10:25:46', 0, NULL, 0, NULL, 1),
(222, 405, 'Bajaj allianz ', 'Life associate officer', '2020-08-10', 15000.00, '1970-01-01', 15000.00, 'Arumbakkam ', '2', '0 years 1 months', 'Not interested in full and full sales... And some miscomittement ', 1, '2020-09-17 10:28:20', 0, NULL, 0, NULL, 1),
(223, 413, 'NTT Data', 'MIS Executive', '2017-02-14', 13000.00, '2020-03-03', 15000.00, 'Dlf, chennai', '1', '3 years 0 months', ' Project closed', 1, '2020-09-17 11:20:28', 0, NULL, 0, NULL, 1),
(224, 415, 'Santhosh ', 'Field executives ', '2020-09-28', 16000.00, '2022-03-30', 16000.00, 'Anna nagar', '1', '1 years 6 months', 'Salary ', 1, '2020-09-17 11:33:39', 0, NULL, 0, NULL, 1),
(225, 415, 'Santhosh ', 'Field executives ', '2020-09-28', 16000.00, '2022-03-30', 16000.00, 'Anna nagar', '1', '1 years 6 months', 'Salary problems ', 1, '2020-09-17 11:35:45', 0, NULL, 0, NULL, 1),
(226, 412, 'Faras Academy for Excellence', 'HR trainer', '2017-11-13', 8500.00, '2020-03-17', 17000.00, 'Pondy', '1', '2 years 4 months', ' Migrated to chennai', 1, '2020-09-17 11:37:40', 0, NULL, 0, NULL, 1),
(227, 411, 'BLUECHIP CORPORATE INVESTMENTS CENTRE LTD', 'BRANCH MANAGER', '2012-11-12', 10000.00, '2020-09-12', 25000.00, 'CHENNAIL', '1', '7 years 10 months', ' Some personal issue', 1, '2020-09-17 11:40:46', 0, NULL, 0, NULL, 1),
(228, 415, 'Marketing ', 'Field executives ', '2019-09-17', 16000.00, '2020-08-01', 16000.00, 'Anna nagar', '1', '0 years 10 months', 'Salary issue ', 1, '2020-09-17 11:45:22', 0, NULL, 0, NULL, 1),
(229, 417, 'Expries it', 'Mis', '2018-02-22', 10000.00, '2020-06-30', 15000.00, 'Ambattur', '1', '2 years 6 months', ' ', 1, '2020-09-17 11:50:44', 0, NULL, 0, NULL, 1),
(230, 426, 'finance buddha', 'sales executive', '2019-08-01', 18000.00, '2020-03-07', 18000.00, 'jeevan bhimanagar', '1', '0 years 7 months', ' ', 1, '2020-09-17 01:27:05', 0, NULL, 0, NULL, 1),
(231, 427, 'SBI General Insurance Company Ltd', 'HR Assistant', '2019-08-26', 2.16, '2020-06-30', 2.16, 'Chennai', '1', '0 years 10 months', ' Due to pandemic I was stuck in my native and unable to return immediately, I resigned.', 1, '2020-09-17 01:33:51', 0, NULL, 0, NULL, 1),
(232, 434, 'Viveks ', 'Sales man', '2014-01-01', 13000.00, '2015-01-27', 13000.00, 'Chennai thiruvanmiyur', '1', '1 years 0 months', ' Im going to clg ', 1, '2020-09-17 02:11:21', 0, NULL, 0, NULL, 1),
(233, 434, 'Reliance', 'Sales Staff', '2015-03-02', 13000.00, '2016-04-13', 13000.00, 'Chennai Thiruvanmiyur ', '1', '1 years 1 months', 'Im going to clg', 1, '2020-09-17 02:14:20', 0, NULL, 0, NULL, 1),
(234, 438, 'Zealous services', 'CSE', '2018-02-24', 10500.00, '2020-02-28', 14500.00, 'kodambakam', '1', '2 years 0 months', ' Because of process rampdown', 1, '2020-09-17 02:14:36', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(235, 434, 'Ison', 'Customer care ex', '2016-05-10', 14000.00, '2016-12-29', 14000.00, 'Kandhanchavadi', '1', '0 years 7 months', 'My family broplam ', 1, '2020-09-17 02:16:37', 0, NULL, 0, NULL, 1),
(236, 434, 'Agni college of technology', 'Staff in administration', '2017-01-10', 14000.00, '2017-08-13', 14000.00, 'Allwarper', '1', '0 years 7 months', 'Porasec Over ', 1, '2020-09-17 02:20:00', 0, NULL, 0, NULL, 1),
(237, 434, 'Oyo', 'Property manager', '2018-03-01', 15000.00, '2018-09-10', 15000.00, 'Chennai', '1', '0 years 6 months', 'Prosece Over close the oyo', 1, '2020-09-17 02:22:20', 0, NULL, 0, NULL, 1),
(238, 445, 'aa', 'crm', '2020-03-03', 10000.00, '2020-07-02', 11000.00, 'chenani', '1', '0 years 6 months', ' ssss', 1, '2020-09-17 02:50:25', 0, NULL, 0, NULL, 1),
(239, 440, 'Quantum multipoint Services', 'Financial Executive', '2019-02-04', 10000.00, '2020-08-03', 10000.00, 'Chennai', '1', '1 years 5 months', ' In That  pandemic situation I can\'t work from home I  had Some personal reasons ', 1, '2020-09-17 02:55:02', 0, NULL, 0, NULL, 1),
(240, 447, 'xxxxx', 'team leader', '2015-01-21', 8000.00, '1970-01-01', 18000.00, 'kodambakkam', '2', '5 years 7 months', ' salary problem', 1, '2020-09-17 02:59:01', 0, NULL, 0, NULL, 1),
(241, 436, 'access health care', 'client partner', '2019-01-08', 10500.00, '2020-04-03', 10500.00, 'Porur', '1', '0', 'Covid', 8, '2020-09-17 03:04:46', 8, '2020-09-17 03:04:54', 0, NULL, 0),
(242, 436, 'access health care', 'client partner', '2019-01-08', 10500.00, '2020-04-03', 10500.00, 'Porur', '1', '0', 'Covid', 8, '2020-09-17 03:04:46', 0, NULL, 0, NULL, 1),
(243, 448, 'infosis', 'app developer', '2015-07-24', 15000.00, '1970-01-01', 25000.00, 'sp kovil', '2', '5 years 1 months', ' salarey is not enough for my talent ', 1, '2020-09-17 03:07:56', 0, NULL, 0, NULL, 1),
(244, 422, 'Clar aqua private limited', 'Accountant', '2014-05-09', 10000.00, '2015-08-13', 11500.00, 'Ashok pillar', '1', '1 years 3 months', ' Maternity', 1, '2020-09-17 03:18:12', 0, NULL, 0, NULL, 1),
(245, 456, 'Sri Velavan Motors', 'Customer Relationship Manager', '2017-01-28', 15000.00, '2018-02-25', 15000.00, 'Alwarthirunagar', '1', '1 years 0 months', ' ', 1, '2020-09-17 04:25:01', 0, NULL, 0, NULL, 1),
(246, 457, 'behtar super market', 'store manager', '2019-11-08', 15000.00, '2020-08-17', 15000.00, 'benson town', '1', '0 years 9 months', ' Due carrier growth', 1, '2020-09-17 05:20:11', 0, NULL, 0, NULL, 1),
(247, 459, 'ISEO SYSTEMS PVT LTD', 'Talent Acquisition Executive', '2019-03-08', 10000.00, '2020-03-31', 10000.00, 'Chennai ', '1', '1 years 0 months', ' Change of Location ', 1, '2020-09-17 06:17:37', 0, NULL, 0, NULL, 1),
(248, 461, 'gyso ecom services pvt ltd', 'php developer', '2019-11-01', 200000.00, '1970-01-01', 200000.00, 'anna nagar', '2', '0 years 10 months', ' salary not giving and also not in proper date', 1, '2020-09-17 06:43:16', 0, NULL, 0, NULL, 1),
(249, 424, 'Mahindra and Mahindra', 'Telemarketing', '0202-09-18', 12000.00, '2020-05-28', 12500.00, 'Mountroad', '1', '1817 years 8 months', 'I\'m going to my own house in thiruvannamalai for reason Corona situation', 1, '2020-09-18 08:36:49', 0, NULL, 0, NULL, 1),
(250, 424, 'Mahindra and Mahindra', 'Telecaller', '2019-09-10', 12000.00, '2020-05-28', 12500.00, 'Mount road', '1', '0 years 8 months', ' I\'m going to my own house in thiruvannamalai for reason Corona situation', 1, '2020-09-18 08:41:15', 0, NULL, 0, NULL, 1),
(251, 465, 'Kotak mahindra bank ltd ', 'Manager', '2013-11-20', 190000.00, '2017-12-31', 300000.00, 'Chennai', '1', '4 years 1 months', 'Started to run my father business', 1, '2020-09-18 10:33:54', 0, NULL, 0, NULL, 1),
(252, 465, 'Amicorp management india pvt limited', 'Associate operation analyst', '2012-12-04', 192000.00, '2013-08-31', 192000.00, 'Bangalore', '1', '0 years 8 months', 'Better offer', 1, '2020-09-18 10:36:19', 0, NULL, 0, NULL, 1),
(253, 465, 'Scope international pvt ltd', 'Process associate', '2009-08-05', 96000.00, '2012-12-31', 160000.00, 'Chennai', '1', '3 years 4 months', 'Better offer', 1, '2020-09-18 10:38:21', 0, NULL, 0, NULL, 1),
(254, 464, 'All India radio', 'Data Entry operator', '2017-07-15', 11000.00, '2018-07-20', 11000.00, 'Guindy', '1', '1 years 0 months', ' Suffering fever', 1, '2020-09-18 10:55:19', 0, NULL, 0, NULL, 1),
(255, 470, 'Advicesync Consulting Private Limited', 'Software Developer', '2018-05-30', 10000.00, '1970-01-01', 20000.00, 'Valluvar kootam', '2', '2 years 3 months', ' Lack of projects and salary issues', 1, '2020-09-18 11:32:53', 0, NULL, 0, NULL, 1),
(256, 466, 'pegasus industries pvt ltd', 'software developer', '2019-11-08', 10000.00, '1970-01-01', 20000.00, 'thivuwanmiyur', '2', '0 years 10 months', ' they are issuing to give salary', 1, '2020-09-18 11:36:43', 0, NULL, 0, NULL, 1),
(257, 471, 'TCI EXPRESS', 'TSO', '2019-04-15', 24.30, '2020-07-31', 24300.00, 'Karnataka', '1', '1 years 3 months', ' Due to cover issue.', 1, '2020-09-18 11:42:16', 0, NULL, 0, NULL, 1),
(258, 462, 'cadd centre training services', 'business coordinator', '2018-02-19', 11000.00, '2019-04-01', 110000.00, 'chennai', '1', '1 years 1 months', ' growth', 1, '2020-09-18 12:02:11', 0, NULL, 0, NULL, 1),
(259, 462, 'people prime worldwide pvt ltd', 'associate analyst', '2019-05-02', 13000.00, '2020-09-07', 13000.00, 'chennai', '1', '1 years 4 months', 'growth', 1, '2020-09-18 12:03:26', 0, NULL, 0, NULL, 1),
(260, 469, 'karvy data managment ', 'customer representative', '2018-01-17', 15000.00, '2020-03-07', 15000.00, 'ttmc bus stop vijaynagar bagalore ', '1', '2 years 1 months', ' father Health issue', 1, '2020-09-18 12:42:27', 0, NULL, 0, NULL, 1),
(261, 476, 'softeon', 'hr', '2015-09-01', 11000.00, '2017-10-03', 12000.00, 'chennai', '1', '2 years 1 months', ' Personal', 1, '2020-09-18 12:51:54', 0, NULL, 0, NULL, 1),
(262, 476, 'jwallet', 'hr', '2017-10-04', 20000.00, '2018-04-04', 20000.00, 'chennai', '1', '0 years 6 months', 'Personal', 1, '2020-09-18 12:53:53', 0, NULL, 0, NULL, 1),
(263, 476, 'orion corporate alliance', 'hr', '2018-05-05', 22000.00, '2019-08-21', 22000.00, 'chennai', '1', '1 years 3 months', 'Personal ', 1, '2020-09-18 12:55:26', 0, NULL, 0, NULL, 1),
(264, 476, 'quikr india pvt ltd', 'hr', '2019-11-18', 26400.00, '2020-05-15', 26400.00, 'chennai', '1', '0 years 5 months', 'Lay-off ', 1, '2020-09-18 12:56:59', 0, NULL, 0, NULL, 1),
(265, 477, 'HigherMatrix Services Pvt Ltd', 'Web Developer', '2017-09-18', 21000.00, '2019-02-28', 21000.00, 'Bhubaneswar', '1', '1 years 5 months', ' Due to marriage', 1, '2020-09-18 01:07:00', 0, NULL, 0, NULL, 1),
(266, 477, 'VoipTech Solutions', 'Software Developer', '2017-07-01', 20000.00, '2017-09-01', 20000.00, 'Bhubaneswar', '1', '0 years 2 months', 'The IT department of this company was closed', 1, '2020-09-18 01:11:40', 0, NULL, 0, NULL, 1),
(267, 477, 'Oditek Solutions Pvt Ltd', 'Software Engineer', '2013-12-10', 15000.00, '2016-08-31', 20000.00, 'Bhubaneswar', '1', '2 years 8 months', 'Due to MCA exam', 1, '2020-09-18 01:14:40', 0, NULL, 0, NULL, 1),
(268, 477, 'Maastrix Solutions Pvt Ltd', 'Web Developer', '2012-11-21', 10000.00, '2013-08-12', 10000.00, 'Bhubaneswar', '1', '0 years 8 months', 'For Better Scope & Opportunity', 1, '2020-09-18 01:17:51', 0, NULL, 0, NULL, 1),
(269, 477, 'P9V Web Solutions Pvt Ltd', 'Web Developer', '2011-07-13', 10000.00, '2012-11-20', 10000.00, 'Bhubaneswar', '1', '1 years 4 months', 'For Better Scope and Opportunity', 1, '2020-09-18 01:20:02', 0, NULL, 0, NULL, 1),
(270, 481, 'Club mahindra holidays ', 'Telemarketing executive ', '2019-09-10', 13000.00, '2020-07-23', 13000.00, 'Tvs Mahindra towers', '1', '0 years 10 months', ' Health issue ', 1, '2020-09-18 01:48:35', 0, NULL, 0, NULL, 1),
(271, 480, 'Finance Buddha', 'CMR', '2020-01-08', 15000.00, '1970-01-01', 12000.00, 'Indra nagar', '2', '0 years 8 months', 'Process Shutdone', 1, '2020-09-18 01:57:58', 0, NULL, 0, NULL, 1),
(272, 488, 'AL SALAM INTERNATIONAL HOSPITAL, KUWAIT', 'INSURANCE ASSISTANT', '2017-04-10', 100000.00, '2020-09-18', 100000.00, 'KUWAIT', '2', '3 years 5 months', 'Due to Pandemic I\'m unable to go back now. And as we all know many Indians are losing jobs in abroad. So it\'s better to make a move with resignation.', 1, '2020-09-18 03:03:07', 0, NULL, 0, NULL, 1),
(273, 488, 'COGNIZANT', 'SENIOR PROCESS EXECUTIVE', '2014-10-01', 18000.00, '2016-09-30', 22000.00, 'CHENNAI', '1', '1 years 11 months', 'Got offer from Kuwait with better salary and Post. It was better to run the family.', 1, '2020-09-18 03:07:15', 0, NULL, 0, NULL, 1),
(274, 488, 'HEALTH CARE DUNAMICS', 'STORE KEEPER', '2016-11-01', 50000.00, '2017-04-01', 50000.00, 'KUWAIT', '1', '0 years 5 months', 'I thought That was not my role to play effectively', 1, '2020-09-18 03:12:35', 0, NULL, 0, NULL, 1),
(275, 485, 'Indusind bank backend work', 'Documents verification', '2018-07-20', 11000.00, '2020-07-06', 12000.00, 'Chennai', '1', '1 years 11 months', ' Lock down', 1, '2020-09-18 03:32:58', 0, NULL, 0, NULL, 1),
(276, 493, 'Teamware solutions ', 'Talent acquisition ', '2019-07-01', 12600.00, '2019-12-16', 12600.00, 'Chennai', '1', '0 years 5 months', ' Due to personal reasons and health issues', 1, '2020-09-18 05:20:38', 0, NULL, 0, NULL, 1),
(277, 493, 'Fourth dimension technologies ', 'Recruitment executive ', '2020-02-06', 14000.00, '2020-04-30', 14000.00, 'Chennai ', '1', '0 years 2 months', 'Due to covid-19', 1, '2020-09-18 05:22:27', 0, NULL, 0, NULL, 1),
(278, 453, 'elumina elearning services pvt ltd', 'senior hr recruiter', '2020-03-02', 34.00, '2020-05-31', 34.00, 'chennai', '1', '0 years 2 months', ' Due to covid 19 ', 1, '2020-09-18 05:29:07', 0, NULL, 0, NULL, 1),
(279, 494, 'Quess crop ', 'HR consultant ', '2020-01-17', 2.55, '2020-08-17', 2.55, 'Bangalore ', '1', '0 years 7 months', ' Due to covid-19', 1, '2020-09-18 05:49:19', 0, NULL, 0, NULL, 1),
(280, 498, 'HDFC Bank', 'Sales officer', '2016-08-12', 13000.00, '2019-04-12', 13000.00, 'Chennai', '1', '2 years 8 months', ' I got a new job in ICICI BANK', 1, '2020-09-19 10:52:42', 0, NULL, 0, NULL, 1),
(281, 498, 'ICICI Bank', 'Home loan executive', '2019-04-24', 29000.00, '2019-09-13', 32000.00, 'Chennai', '1', '0 years 4 months', 'I relieved my for personal reasons', 1, '2020-09-19 10:56:42', 0, NULL, 0, NULL, 1),
(282, 501, 'TARUS BPO service Pvt LTD', 'Personal loan agent', '2017-07-20', 11500.00, '2020-01-25', 13500.00, 'Kodampakkam', '1', '2 years 6 months', ' ', 1, '2020-09-19 11:12:06', 0, NULL, 0, NULL, 1),
(283, 491, 'Integrated enterprise India Pvt ltd', 'Sales executive and marketing', '2018-01-01', 12.00, '2020-07-01', 15.00, 'T Nagar', '1', '2 years 5 months', 'Salary issue', 1, '2020-09-19 11:17:51', 0, NULL, 0, NULL, 1),
(284, 453, 'chaitra placement pvt ltd', 'hr executive', '2010-09-19', 10.00, '2012-08-31', 10.00, 'chennai', '1', '1 years 11 months', ' career growth', 1, '2020-09-19 11:33:45', 0, NULL, 0, NULL, 1),
(285, 453, 'jayde technology pvt ltd', 'hr recruitment executive', '2012-10-01', 15.00, '2014-07-31', 15.00, 'chennai', '1', '1 years 10 months', 'my Dad operation ', 1, '2020-09-19 11:36:43', 0, NULL, 0, NULL, 1),
(286, 484, 'Life star pharmacy ', 'billing ', '2016-04-12', 11000.00, '2017-09-19', 11000.00, 'madhavaram', '1', '1 years 5 months', ' Personel', 1, '2020-09-19 11:39:39', 8, '2020-09-19 12:34:37', 0, NULL, 1),
(287, 484, 'Rajalakshimi cars pvt lts', 'sales executive', '2017-02-22', 14000.00, '2019-08-25', 14000.00, 'chennai', '1', '2 years 6 months', 'Personel\n\n', 1, '2020-09-19 11:40:53', 8, '2020-09-19 12:34:51', 0, NULL, 1),
(288, 453, 'contactx resource management pvt ltd', 'senior recruitment consultant', '2015-08-03', 15.00, '2016-12-30', 15.00, 'chennai', '1', '1 years 4 months', 'career growth', 1, '2020-09-19 11:42:09', 0, NULL, 0, NULL, 1),
(289, 499, 'rs interiors', 'business development manager', '2016-08-08', 9000.00, '2019-07-10', 20000.00, 'Chennai', '1', '2 years 11 months', ' i had an accident had to undergo some medical rest', 1, '2020-09-19 11:42:44', 0, NULL, 0, NULL, 1),
(290, 453, 'astriya solutions pvt ltd', 'senior consultant-recruitment', '2017-04-03', 25.00, '2019-05-04', 33.00, 'chennai', '1', '2 years 1 months', 'career growth ', 1, '2020-09-19 11:44:56', 0, NULL, 0, NULL, 1),
(291, 453, 'aequor information technology ', 'senior it recruitment ', '2019-09-04', 30.00, '2020-02-28', 30.00, 'chennai', '1', '0 years 5 months', 'career growth', 1, '2020-09-19 11:48:44', 0, NULL, 0, NULL, 1),
(292, 484, 'New star city ram prompters', 'Admin', '2019-09-19', 20000.00, '2020-09-15', 20000.00, 'Red hills', '1', '0 years 11 months', 'official issues', 8, '2020-09-19 12:36:27', 0, NULL, 0, NULL, 1),
(293, 483, 'nagarajan s', 'non-voice process', '2019-09-19', 10.00, '2020-04-03', 10000.00, 'vandaloor', '1', '0 years 6 months', 'project is finished.then company one month salary is credited after some many people layoff in this office', 1, '2020-09-19 12:40:55', 1, '2020-09-19 12:44:28', 0, NULL, 1),
(294, 483, 'nagarajan s', 'voice process', '2019-02-08', 10.00, '2019-08-10', 9500.00, 'perungudi', '1', '0 years 6 months', 'company shifted  to another place.so  some many peoples are quit in the  office', 1, '2020-09-19 12:46:57', 1, '2020-09-19 12:48:13', 0, NULL, 1),
(295, 507, 'Karvy digikonnect limitet ', 'Customer Support Executive ', '2019-09-05', 10.80, '2020-04-30', 10.80, 'VELACHERRY ', '1', '0 years 7 months', ' Salary low', 1, '2020-09-19 12:55:39', 0, NULL, 0, NULL, 1),
(296, 508, 'vfort management', 'hr', '2017-12-11', 8000.00, '2020-08-29', 10000.00, 'Madurai', '1', '2 years 9 months', ' Carrier growth', 1, '2020-09-19 01:15:25', 0, NULL, 0, NULL, 1),
(297, 510, 'pegasus industries', 'software trainee', '2019-11-04', 12000.00, '2020-09-15', 12000.00, 'chennai', '1', '0 years 10 months', ' i have 5~6 months experience.due to covid 19,they layout me on sept-2020', 1, '2020-09-19 01:34:32', 0, NULL, 0, NULL, 1),
(298, 510, 'motherson automotive technology and engineering', 'technician-data entry', '2014-10-02', 7500.00, '2019-09-27', 12000.00, 'chennai', '1', '4 years 11 months', 'i completed php course for change IT Department ', 1, '2020-09-19 01:38:21', 0, NULL, 0, NULL, 1),
(299, 512, 'vizda software solutions pvt.ltd', 'hr manager', '2019-05-27', 20000.00, '1970-01-01', 25000.00, 'chennai', '2', '1 years 3 months', ' No salary income ', 1, '2020-09-19 01:46:03', 0, NULL, 0, NULL, 1),
(300, 515, 'Kun Hyundai car service center ', 'Hostess ', '2019-08-10', 12000.00, '2020-03-15', 12000.00, 'Ambattur estate ', '1', '0 years 7 months', ' Family issue ', 1, '2020-09-19 03:32:45', 0, NULL, 0, NULL, 1),
(301, 520, 'Merit software Pvt Ltd', 'Research analyst', '2018-03-23', 14000.00, '1970-01-01', 16000.00, 'Ambattur', '2', '2 years 5 months', ' Financially I am not satisfied with my current organization', 1, '2020-09-19 04:22:30', 0, NULL, 0, NULL, 1),
(302, 511, 'Fsandhs Technologies ', 'Lead / Sr. IT recruiter ', '2019-06-15', 300000.00, '2020-09-18', 300000.00, 'Chennai ', '1', '1 years 3 months', 'Looking for better growth .', 1, '2020-09-19 04:31:17', 0, NULL, 0, NULL, 1),
(303, 524, 'Live connections', 'HR Recruiter', '2018-02-05', 8000.00, '2020-08-25', 13.70, 'Chennai', '1', '2 years 6 months', ' Due this covid', 1, '2020-09-19 05:40:07', 0, NULL, 0, NULL, 1),
(304, 526, 'iseo systems pvt ltd', 'hr  executive', '2017-02-01', 8000.00, '2018-05-02', 12000.00, 'chennai', '1', '1 years 3 months', ' growth &knowledge', 1, '2020-09-19 07:37:44', 0, NULL, 0, NULL, 1),
(305, 526, 'cts', 'hr executive', '2018-05-03', 240000.00, '2019-10-04', 25600.00, 'chennai', '1', '1 years 5 months', 'growth & exposure , knowledge', 1, '2020-09-19 07:39:40', 0, NULL, 0, NULL, 1),
(306, 526, 'ranstad india', 'lead', '2019-10-14', 31700.00, '2020-06-17', 31700.00, 'chennai', '1', '0 years 8 months', 'location & growth', 1, '2020-09-19 07:41:14', 0, NULL, 0, NULL, 1),
(307, 519, 'Siet college ', 'Purchase dept head', '2019-10-02', 16000.00, '2020-12-31', 18000.00, 'Teynampet', '1', '1 years 2 months', ' Father in law died', 1, '2020-09-19 08:01:04', 0, NULL, 0, NULL, 1),
(308, 529, 'tct', 'snr.hr executive', '2018-05-29', 26000.00, '2020-09-20', 30000.00, 'chepauk', '2', '2 years 3 months', ' currently no requirements', 1, '2020-09-20 03:34:57', 0, NULL, 0, NULL, 1),
(309, 529, 'teamware solutions', 'hr trainee', '2017-08-14', 20000.00, '2018-03-09', 20000.00, 't.nagar', '1', '0 years 6 months', 'process ram down', 1, '2020-09-20 03:39:29', 0, NULL, 0, NULL, 1),
(310, 529, 'standard chattered bank', 'snr. client care', '2015-07-14', 12000.00, '2017-07-31', 15000.00, 'vadapalani', '1', '2 years 0 months', 'passionate about hr professional', 1, '2020-09-20 03:44:18', 0, NULL, 0, NULL, 1),
(311, 533, 'web vision', 'web designer', '2017-09-10', 12000.00, '1970-01-01', 17000.00, 'egmore', '2', '3 years 0 months', 'take home salary was not enough for me', 1, '2020-09-21 10:18:04', 0, NULL, 0, NULL, 1),
(312, 536, 'Exide life insurance, amanjakarai branch', 'Advisor', '2019-08-21', 15000.00, '1970-01-01', 12000.00, 'Chennai', '2', '1 years 1 months', ' ', 1, '2020-09-21 10:54:10', 0, NULL, 0, NULL, 1),
(313, 535, 'seventhsense technologies pvt ltd', 'hr executive', '2019-06-03', 17000.00, '2019-06-28', 21000.00, 'taramani chennai', '1', '0 years 0 months', ' layoff', 1, '2020-09-21 10:55:35', 0, NULL, 0, NULL, 1),
(314, 538, 'Spiro system', 'HR assistant', '2019-12-06', 16000.00, '2020-07-31', 16000.00, 'Kodambakkam', '1', '0 years 7 months', ' Lock down', 1, '2020-09-21 11:35:34', 0, NULL, 0, NULL, 1),
(315, 538, 'SG pneumatics', 'HR trainee', '2018-09-15', 15000.00, '2019-11-30', 15000.00, 'Vadapalani', '1', '1 years 2 months', 'Better opportunity', 1, '2020-09-21 11:36:44', 0, NULL, 0, NULL, 1),
(316, 539, 'gv graphics desinging and offset printing', 'business development manager', '2019-05-14', 26000.00, '2020-09-18', 28000.00, 'ashok nagar', '1', '1 years 4 months', ' ', 1, '2020-09-21 11:56:12', 0, NULL, 0, NULL, 1),
(317, 534, 'ipalpap software', 'regional customer manager', '2019-09-23', 33000.00, '2020-08-28', 33000.00, 'chennai', '1', '0 years 11 months', ' due to salary issues', 1, '2020-09-21 11:56:15', 0, NULL, 0, NULL, 1),
(318, 540, 'aegon life', 'relationshipmanager', '2020-01-11', 24804.00, '2020-08-25', 24804.00, 'bangalore', '1', '0 years 7 months', ' ', 1, '2020-09-21 12:01:02', 0, NULL, 0, NULL, 1),
(319, 513, 'Teamware solutions', 'Talent acquisition executive', '2018-08-13', 16000.00, '2019-05-29', 18000.00, 'T Nagar', '1', '0 years 9 months', ' Carrier growth', 1, '2020-09-21 12:02:25', 0, NULL, 0, NULL, 1),
(320, 540, 'info edge india ltd', 'excutive', '2018-10-02', 18000.00, '2019-05-30', 18000.00, 'hyderabad', '1', '0 years 7 months', 'growthing', 1, '2020-09-21 12:03:09', 0, NULL, 0, NULL, 1),
(321, 540, 'finopayments bank', 'executive', '2017-05-03', 14000.00, '2018-09-28', 16000.00, 'hyderabad', '1', '1 years 4 months', 'better opertinite', 1, '2020-09-21 12:04:56', 0, NULL, 0, NULL, 1),
(322, 540, 'karvy computershare', 'iro', '2015-01-19', 12000.00, '2017-02-27', 12000.00, 'hyderabad', '1', '2 years 1 months', 'health problem because of night shift', 1, '2020-09-21 12:06:52', 0, NULL, 0, NULL, 1),
(323, 543, 'Bankbazaar.com', 'Team lead', '2014-04-21', 19000.00, '2019-10-29', 33000.00, 'Chennai', '1', '5 years 6 months', 'My mother was hospitalized', 1, '2020-09-21 12:27:23', 0, NULL, 0, NULL, 1),
(324, 547, 'marketsof1 ', 'telemarketing executive', '2019-12-02', 18000.00, '2020-09-30', 18000.00, 'little mount ', '1', '0 years 9 months', ' covid-19 ', 1, '2020-09-21 01:21:14', 0, NULL, 0, NULL, 1),
(325, 550, 'SBI card', 'Credit card sales ', '2019-01-13', 10000.00, '2020-08-31', 13.50, 'Kodambakkam and coiyambedu', '1', '1 years 7 months', ' Salary growth', 1, '2020-09-21 01:49:07', 0, NULL, 0, NULL, 1),
(326, 551, 'Omega health care', 'Ar caller', '2019-01-03', 12500.00, '2020-03-25', 12500.00, 'Kandhanchavadi', '1', '1 years 2 months', ' Family problems', 1, '2020-09-21 04:05:48', 0, NULL, 0, NULL, 1),
(327, 561, 'Hindustan Field Service', 'promotor', '2020-02-01', 11000.00, '2020-07-31', 11000.00, 'chennai', '1', '0 years 5 months', ' Lockdown', 1, '2020-09-21 08:30:08', 0, NULL, 0, NULL, 1),
(328, 563, 'Applepro IT solutions Pvt Ltd', 'Hr generalist', '2019-08-05', 15000.00, '2020-09-05', 15000.00, 'Virugambakkam', '1', '1 years 1 months', ' Covid lay-off', 1, '2020-09-22 12:44:11', 0, NULL, 0, NULL, 1),
(329, 563, 'Hcl', 'Customer support executive', '2017-07-28', 14500.00, '2018-06-29', 14500.00, 'Shozinganallur', '1', '0 years 11 months', 'Health issues', 1, '2020-09-22 12:45:11', 0, NULL, 0, NULL, 1),
(330, 565, 'Aagna corporate service Pvt LTD', 'Senior process consulats', '2014-09-29', 19600.00, '2019-09-24', 19600.00, 'CHENNAI', '1', '5 years 11 months', 'Salary issue', 1, '2020-09-22 10:18:07', 0, NULL, 0, NULL, 1),
(331, 565, 'IDFC FIRST BANK ', 'Sales officer', '2020-03-02', 29867.00, '2020-08-10', 29867.00, 'Chennai', '1', '0 years 5 months', 'Personal issue', 1, '2020-09-22 10:20:07', 0, NULL, 0, NULL, 1),
(332, 567, 'vizza enterprises ', 'Telecaller', '2019-08-18', 12000.00, '2020-06-30', 13000.00, 'T nagar', '1', '0 years 10 months', ' salary problem ', 1, '2020-09-22 10:27:07', 0, NULL, 0, NULL, 1),
(333, 566, 'Pyramid Continental Hotel', 'Front office Supervisor', '2019-10-27', 55000.00, '2020-09-22', 55000.00, 'South Sudan Juba', '1', '0 years 10 months', ' ', 1, '2020-09-22 10:28:55', 0, NULL, 0, NULL, 1),
(334, 568, 'Roverco Pvt ltd', 'Marketing  assistant', '2010-01-10', 6000.00, '2015-09-11', 25000.00, 'Alwarpet', '1', '5 years 8 months', ' Due to salary and Carrier growth', 1, '2020-09-22 10:48:23', 0, NULL, 0, NULL, 1),
(335, 569, 'Baabuji Venturess Private Limited', 'Territory sales officer', '2019-11-13', 18000.00, '1970-01-01', 18000.00, 'Chennai', '2', '0 years 10 months', ' ', 1, '2020-09-22 11:03:09', 0, NULL, 0, NULL, 1),
(336, 569, 'Caterpillar India Pvt ltd', 'Junior Engineer', '2016-12-02', 18000.00, '2017-12-07', 18000.00, 'Thiruvallur', '1', '1 years 0 months', 'Looking For a job with better career growth opportunities.', 1, '2020-09-22 11:11:25', 0, NULL, 0, NULL, 1),
(337, 570, 'Jana financial services prt Ltd', 'Collection head', '2017-07-05', 12000.00, '2018-05-28', 12000.00, 'Guindy', '1', '0 years 10 months', 'I resigned from that job because I went to higher education', 1, '2020-09-22 11:42:57', 0, NULL, 0, NULL, 1),
(338, 556, 'Hindustan Field Service', 'promoter', '2020-02-03', 11000.00, '2020-07-31', 11000.00, 'chennai', '1', '0 years 5 months', ' Corona lockdown', 1, '2020-09-22 12:07:22', 0, NULL, 0, NULL, 1),
(339, 557, 'Hindustan. Field', 'Promotee', '2020-02-25', 11000.00, '2020-07-31', 18000.00, 'Chennai ', '1', '0 years 5 months', ' C.', 1, '2020-09-22 12:13:59', 0, NULL, 0, NULL, 1),
(340, 549, 'Hindustan', 'Promoter ', '2020-02-25', 11000.00, '2020-07-31', 18000.00, 'Chennai ', '1', '0 years 5 months', ' ', 1, '2020-09-22 12:16:17', 0, NULL, 0, NULL, 1),
(341, 572, 'SUNDARAM BNP PARIBAS FUND SERVICES LIMITED', 'Senior Process executive', '2017-09-13', 10000.00, '2019-10-31', 12500.00, 'Chennai', '1', '2 years 1 months', ' Migrated to Kfin technologies from november 2019 onwards.', 1, '2020-09-22 12:27:38', 0, NULL, 0, NULL, 1),
(342, 572, 'Kfin Technologies', 'Investor relation officer', '2019-11-01', 12500.00, '2020-05-31', 14000.00, 'Chennai', '1', '0 years 6 months', 'Better career growth', 1, '2020-09-22 12:29:52', 0, NULL, 0, NULL, 1),
(343, 574, 'Indiamart Intermesh Ltd ', 'Sales Associate ', '2018-06-18', 18000.00, '2020-04-01', 21000.00, 'Chennai', '1', '1 years 9 months', ' Better opportunity', 1, '2020-09-22 12:43:14', 0, NULL, 0, NULL, 1),
(344, 530, 'Amzan', 'Sales head', '2018-03-22', 22000.00, '2020-03-14', 23000.00, 'CHENNAI', '1', '1 years 11 months', ' Corona pendamic', 1, '2020-09-22 03:01:45', 0, NULL, 0, NULL, 1),
(345, 578, 'Hdb financial services', 'Senior telly caller', '2019-06-06', 13.00, '2020-01-09', 13.00, 'Chennai', '1', '0 years 7 months', ' Extend to work hours', 1, '2020-09-22 03:41:21', 0, NULL, 0, NULL, 1),
(346, 584, 'chosen care groups', 'finance admin', '2019-05-05', 20000.00, '2020-06-30', 20000.00, 'chennai', '1', '1 years 1 months', 'Behalf covid salary has not yet pay', 1, '2020-09-23 10:26:00', 0, NULL, 0, NULL, 1),
(347, 572, 'SUNDARAM BNP PARIBAS FUND SERVICES LIMITED', 'Senior process executive', '2017-09-13', 10000.00, '2019-10-31', 11500.00, 'Chennai', '1', '2 years 1 months', 'Sundaram BNP paribas migrated to kfin technologies', 1, '2020-09-23 11:10:00', 0, NULL, 0, NULL, 1),
(348, 572, 'Kfin Technologies', 'Investor Relation officer', '2019-11-01', 12500.00, '2020-05-31', 140000.00, 'Chennai', '1', '0 years 6 months', 'Better career growth', 1, '2020-09-23 11:11:43', 0, NULL, 0, NULL, 1),
(349, 582, 'Bounce ', 'RM', '2019-09-11', 23000.00, '2020-07-02', 23000.00, 'Jp nagar ', '1', '0 years 9 months', ' Due to covid ', 1, '2020-09-23 12:09:44', 0, NULL, 0, NULL, 1),
(350, 589, '24/7', 'Sales executive', '2018-12-20', 17000.00, '2020-04-01', 20000.00, 'Marathalli', '1', '1 years 3 months', ' Due to covid 19', 1, '2020-09-23 12:20:15', 0, NULL, 0, NULL, 1),
(351, 591, 'ashok leyland', 'engineer', '2018-01-04', 35000.00, '2019-10-04', 35000.00, 'chennai', '1', '1 years 9 months', ' project over', 1, '2020-09-23 12:54:45', 0, NULL, 0, NULL, 1),
(352, 591, 'besttech engineering', 'engineer', '2011-05-03', 10000.00, '2015-06-04', 22000.00, 'chennai', '1', '4 years 1 months', 'for higher studies', 1, '2020-09-23 12:56:56', 0, NULL, 0, NULL, 1),
(353, 592, 'Finance Buddha', 'Sales executive', '2019-10-11', 12000.00, '2020-09-14', 12000.00, 'Jeevan bheema nagar', '1', '0 years 11 months', ' Process got shut down', 1, '2020-09-23 01:18:07', 0, NULL, 0, NULL, 1),
(354, 594, 'Accenture', 'Customer support representative', '2018-06-29', 16000.00, '2019-10-24', 16000.00, 'Bangalore', '1', '1 years 3 months', ' Personal issues', 1, '2020-09-23 01:28:15', 0, NULL, 0, NULL, 1),
(355, 596, 'Finance buddha', 'Sales executive', '2020-01-27', 15000.00, '2020-09-07', 15000.00, 'Jeevan bheema nagar', '1', '0 years 7 months', ' Process shut down', 1, '2020-09-23 02:13:42', 0, NULL, 0, NULL, 1),
(356, 604, 'Aruna match cottage,sattur', 'Account maintanance', '2017-09-24', 7000.00, '2018-02-24', 7000.00, 'Sattur', '1', '0 years 5 months', ' Update My carrier', 1, '2020-09-24 11:01:01', 0, NULL, 0, NULL, 1),
(357, 604, 'Axis Bank limited saidapet', 'Corporate sales officer', '2018-06-27', 14000.00, '2020-03-15', 18000.00, 'Saidapet', '1', '1 years 8 months', 'Long traveling every day', 1, '2020-09-24 11:05:24', 0, NULL, 0, NULL, 1),
(358, 605, 'Datasigns technologies pvt ltd', 'Regional business head', '2017-11-17', 105000.00, '2020-04-02', 105112.00, 'Chennai', '1', '2 years 4 months', ' Company closed operations due to covid 19', 1, '2020-09-24 11:07:19', 0, NULL, 0, NULL, 1),
(359, 610, 'Inspirysys Solutions pvt Ltd', 'HR Recruiter', '2018-07-02', 14500.00, '2020-08-31', 25000.00, 'Chennai', '1', '2 years 1 months', ' Due to covid', 1, '2020-09-24 12:13:30', 0, NULL, 0, NULL, 1),
(360, 610, 'ThinkPad Infotech', 'IT Recruiter', '2014-12-02', 9000.00, '2018-06-30', 15000.00, 'Chennai', '1', '3 years 6 months', 'Career Growth', 1, '2020-09-24 12:15:09', 0, NULL, 0, NULL, 1),
(361, 608, 'Matrimony', 'Sales executive', '2020-02-20', 12000.00, '2020-09-02', 10000.00, 'Guindy', '1', '0 years 6 months', ' More salary ', 1, '2020-09-24 12:26:00', 0, NULL, 0, NULL, 1),
(362, 613, 'Cognizant technology solution', 'hr recruiter and coordinator', '2019-10-04', 24000.00, '2020-05-30', 25000.00, 'Dlf ', '1', '0 years 7 months', ' Project closed due to pandamic', 1, '2020-09-24 12:31:17', 0, NULL, 0, NULL, 1),
(363, 612, 'Innov', 'Sr bre', '2019-09-12', 18000.00, '1970-01-01', 18000.00, 'Kilpauk', '2', '1 years 0 months', ' Some personal problems\n', 1, '2020-09-24 01:05:52', 0, NULL, 0, NULL, 1),
(364, 612, 'Innov', 'Sr bre', '2019-09-12', 18000.00, '1970-01-01', 18000.00, 'Kilpauk', '2', '1 years 0 months', ' ', 1, '2020-09-24 01:09:17', 0, NULL, 0, NULL, 1),
(365, 614, 'magus', 'telecaller', '2019-11-01', 15000.00, '2020-04-13', 15000.00, 'alwarpet', '1', '0 years 5 months', 'Company shut down Because of that corona issue', 1, '2020-09-24 01:24:09', 0, NULL, 0, NULL, 1),
(366, 615, 'Sanlex', 'Tellecaller excute', '2020-02-02', 19000.00, '2020-09-24', 23000.00, 'Mugallivakkam', '1', '0 years 7 months', ' Because of low salary', 1, '2020-09-24 01:26:36', 0, NULL, 0, NULL, 1),
(367, 616, 'Girnar retail Pvt LTD', 'Car consultant', '2019-11-26', 31.00, '2020-08-21', 13749.00, 'Sholinganallur', '1', '0 years 8 months', ' Corona pandamic suituation', 1, '2020-09-24 01:31:27', 0, NULL, 0, NULL, 1),
(368, 612, 'Innov', 'Sr bre', '2019-09-12', 18000.00, '1970-01-01', 18000.00, 'Kilpauk', '2', '1 years 0 months', ' Some personal problems', 1, '2020-09-24 01:42:07', 0, NULL, 0, NULL, 1),
(369, 612, 'Inno', 'Sr bre', '2019-09-24', 18000.00, '1970-01-01', 18000.00, 'Kilpauk', '2', '1 years 0 months', ' Some family problem', 1, '2020-09-24 01:44:59', 0, NULL, 0, NULL, 1),
(370, 612, 'Innov', 'Sr bre', '2019-09-12', 18000.00, '1970-01-01', 18000.00, 'Kilpauk', '2', '1 years 0 months', ' Some family prbllem', 1, '2020-09-24 01:48:20', 0, NULL, 0, NULL, 1),
(371, 617, 'Bct counsulting', 'Hr Recruiter', '2019-04-04', 12000.00, '2020-09-24', 12000.00, 'Chennai Omr Road', '1', '1 years 5 months', ' Career growth', 1, '2020-09-24 05:33:34', 0, NULL, 0, NULL, 1),
(372, 619, 'riddhi corporate service', 'crm', '2020-07-07', 9000.00, '1970-01-01', 7000.00, 'Chennai', '2', '0 years 2 months', ' not satisfied with shift and payout', 1, '2020-09-24 07:06:40', 0, NULL, 0, NULL, 1),
(373, 621, 'pvr cinemas', 'customer care executive', '2013-11-17', 11000.00, '2015-06-13', 13000.00, 'kochi', '1', '1 years 6 months', ' carrier growth', 1, '2020-09-25 10:50:43', 0, NULL, 0, NULL, 1),
(374, 621, 'biba apparels pvt ltd', 'asistant store incharge', '2016-01-27', 13500.00, '2017-12-22', 15000.00, 'kochi', '1', '1 years 10 months', 'carrier growth', 1, '2020-09-25 10:52:49', 0, NULL, 0, NULL, 1),
(375, 621, 'colgate palmolive pvt ltd', 'visual merchandiser and sales coordinator', '2018-02-17', 17500.00, '2019-09-29', 21000.00, 'kochi', '1', '1 years 7 months', 'medical', 1, '2020-09-25 10:55:13', 0, NULL, 0, NULL, 1),
(376, 625, 'murugappa group', 'logistics officer', '2014-06-10', 14000.00, '2020-01-01', 22000.00, 'chennai', '1', '5 years 6 months', ' ', 1, '2020-09-25 10:58:12', 0, NULL, 0, NULL, 1),
(377, 625, 'biomiicron pharma pvt ltd', 'warehouse incharge', '2020-01-06', 28500.00, '2020-06-15', 28500.00, 'chennai', '1', '0 years 5 months', 'because of COVID-19 ', 1, '2020-09-25 10:59:39', 0, NULL, 0, NULL, 1),
(378, 623, 'Chear india ltd', 'MIS', '2018-11-01', 17000.00, '2020-03-31', 17000.00, 'Oragadam', '1', '1 years 4 months', ' Annual increment not came', 1, '2020-09-25 11:43:29', 0, NULL, 0, NULL, 1),
(379, 626, 'E2E supply chain solutions', 'Accountant', '2018-08-22', 8500.00, '2019-08-09', 13000.00, 'T', '1', '0 years 11 months', ' Family problem', 1, '2020-09-25 11:50:23', 0, NULL, 0, NULL, 1),
(380, 627, 'Poorvika mobile Pvt limited', 'Sales and service executive', '2014-08-02', 11500.00, '2015-12-30', 12500.00, 'West Mambalam,chennai', '1', '1 years 4 months', ' Personal issues', 1, '2020-09-25 12:12:11', 0, NULL, 0, NULL, 1),
(381, 627, 'Sarvaloka service on call Pvt limited', 'Operation executive', '2016-03-02', 14500.00, '2018-01-30', 17500.00, 'Nandhanam,chennai', '1', '1 years 10 months', 'Personal issues', 1, '2020-09-25 12:15:04', 0, NULL, 0, NULL, 1),
(382, 627, 'Msv promoters Pvt limited', 'Administration manager', '2018-03-10', 15000.00, '2019-03-30', 18000.00, 'Coimbatore', '1', '1 years 0 months', 'Issues with Md', 1, '2020-09-25 12:18:13', 0, NULL, 0, NULL, 1),
(383, 627, 'Royal Enfield', 'Team leader', '2019-04-04', 17000.00, '2020-02-29', 18000.00, 'Krishnagiri', '1', '0 years 10 months', 'Irregular salary ', 1, '2020-09-25 12:20:19', 0, NULL, 0, NULL, 1),
(384, 627, 'Oppo mobile Pvt limited', 'Team leader', '2020-03-17', 17000.00, '2020-06-17', 17000.00, 'Krishnagiri', '1', '0 years 6 months', 'Covid 19 issues', 1, '2020-09-25 12:21:55', 0, NULL, 0, NULL, 1),
(385, 628, 'Aurus networking', 'Data entry content writer', '2016-01-01', 15000.00, '2016-09-01', 15000.00, 'Tin factory', '1', '0 years 8 months', 'Job pressure not willing for promotion ', 1, '2020-09-25 12:53:10', 0, NULL, 0, NULL, 1),
(386, 632, 'Great design and decors ', 'Business development associate ', '2018-11-26', 26000.00, '2020-08-14', 28500.00, 'Chennai ', '1', '1 years 8 months', ' Firm has temporarily closed. ', 1, '2020-09-25 01:01:36', 0, NULL, 0, NULL, 1),
(387, 632, 'Ezhilarasu', 'Business development associate ', '2018-11-23', 26000.00, '2020-08-14', 28500.00, 'Chennai ', '1', '1 years 8 months', ' Company has temporarily closed ', 1, '2020-09-25 01:19:42', 0, NULL, 0, NULL, 1),
(388, 640, 'Eat good technology Pvt Ltd', 'Site manager', '2018-07-11', 18000.00, '1970-01-01', 15000.00, 'DLF', '2', '2 years 2 months', ' ', 1, '2020-09-25 02:58:18', 0, NULL, 0, NULL, 1),
(389, 638, 'polmann india limited', 'trainee marketing', '2018-03-19', 15000.00, '2019-09-17', 15000.00, 'chennai', '1', '1 years 5 months', 'to get better job opportunity', 1, '2020-09-25 03:02:23', 0, NULL, 0, NULL, 1),
(390, 638, 'jumbo bag ltd', 'get - probation', '2019-12-02', 16300.00, '2020-03-23', 16300.00, 'tiruvallore', '1', '0 years 3 months', 'due to covid-19 i left the job', 1, '2020-09-25 03:07:21', 0, NULL, 0, NULL, 1),
(391, 641, 'ulavi technologies', 'customer validation analyst', '2019-11-05', 12000.00, '2020-05-30', 12000.00, 'CHENNAI', '1', '0 years 6 months', ' due to covid-19', 1, '2020-09-25 03:19:17', 0, NULL, 0, NULL, 1),
(392, 650, 'serco', 'telecaller', '2011-05-11', 6500.00, '2013-08-31', 8000.00, 'ambathur', '1', '2 years 3 months', ' No increment for past one year', 1, '2020-09-26 10:28:12', 0, NULL, 0, NULL, 1),
(393, 653, 'Morepen Laboratories', 'Area Manager', '2020-03-12', 45300.00, '2020-08-31', 45300.00, 'Chennai', '1', '0 years 5 months', ' Due to Covid 19 they stopped operations in Chennai', 1, '2020-09-26 11:24:04', 0, NULL, 0, NULL, 1),
(394, 654, 'CAMS', 'Audit Executive', '2017-12-22', 8500.00, '2019-10-03', 8500.00, 'Chennai', '1', '1 years 9 months', ' Contract get closed.', 1, '2020-09-26 11:46:24', 0, NULL, 0, NULL, 1),
(395, 653, 'Morepen Laboratories', 'Area Manager', '2020-03-12', 45300.00, '2020-08-31', 45300.00, 'Chennai', '1', '0 years 5 months', ' Due to Covid 19 my organization closed operations in chennai', 1, '2020-09-26 12:15:50', 0, NULL, 0, NULL, 1),
(396, 665, 'Gdi Techno  solutions  private  limited', 'Data  Processing  executive', '2011-10-30', 6000.00, '2012-11-30', 7000.00, 'Chennai', '1', '1 years 1 months', ' Got  better  opportunity', 1, '2020-09-28 11:32:13', 0, NULL, 0, NULL, 1),
(397, 670, 'Indigo', 'Executive', '2014-09-25', 12000.00, '2020-03-10', 15000.00, 'Chennai', '1', '5 years 5 months', ' No', 1, '2020-09-28 11:35:39', 0, NULL, 0, NULL, 1),
(398, 667, 'HDB finance', 'Telecoller', '2019-09-28', 14000.00, '2020-01-30', 14000.00, 'Aarumbakam', '1', '0 years 4 months', 'Better roll and better salary', 1, '2020-09-28 11:40:50', 1, '2020-09-28 11:48:05', 0, NULL, 1),
(399, 669, 'KOTAK MADHINDRA BANK ', 'Tellecaller ', '2018-06-11', 12000.00, '2019-08-31', 12000.00, 'Chennai ', '1', '1 years 2 months', ' Better Salary', 1, '2020-09-28 11:43:46', 1, '2020-09-28 11:45:03', 0, NULL, 1),
(400, 667, 'CTS', 'MIS executive', '2018-11-28', 9137.00, '2019-07-01', 9137.00, 'Sholinganallur', '1', '0 years 7 months', 'Contact based job ', 1, '2020-09-28 11:45:02', 0, NULL, 0, NULL, 1),
(401, 669, 'hdb financial services ', 'Telecaller', '2019-10-05', 14000.00, '1970-01-01', 14000.00, 'Chennai', '2', '0 years 11 months', 'Better salary and Salary', 1, '2020-09-28 11:48:22', 0, NULL, 0, NULL, 1),
(402, 666, 'Sulekha. Com newmedia ltd', 'Deputy manager', '2016-03-07', 23000.00, '1970-01-01', 35000.00, 'Egmore', '2', '4 years 6 months', 'Due to corona company is not yet opened and they going to shutdown', 1, '2020-09-28 12:01:43', 0, NULL, 0, NULL, 1),
(403, 672, 'Wheels india pvt Ltd', 'Qulatity engineer trainee', '2018-08-01', 13500.00, '2019-07-31', 13500.00, 'Padi, chennai', '1', '0 years 11 months', ' Training period Completed', 1, '2020-09-28 12:15:44', 0, NULL, 0, NULL, 1),
(404, 673, 'Tractors and farm equipment', 'Logistics', '2019-06-10', 14000.00, '2020-09-10', 14000.00, 'Sembium , chennai', '1', '1 years 3 months', 'Training period completed', 1, '2020-09-28 12:16:24', 0, NULL, 0, NULL, 1),
(405, 674, 'Sathish', 'Customer service executive', '2018-06-15', 16000.00, '1970-01-01', 16000.00, 'Nungambakkam', '2', '2 years 3 months', 'Want to move on my life to next level', 1, '2020-09-28 12:27:13', 0, NULL, 0, NULL, 1),
(406, 683, 'Green Project', 'Design Engineer', '2018-08-27', 10000.00, '2019-05-31', 12000.00, 'Velachery', '1', '0 years 9 months', ' Due to late salary', 1, '2020-09-28 12:33:42', 0, NULL, 0, NULL, 1),
(407, 683, 'Own Builder', 'Site supervisor', '2019-06-10', 12000.00, '2020-02-29', 12000.00, 'Keelkatalai', '1', '0 years 8 months', 'Didn\'t give salary increment.', 1, '2020-09-28 12:37:10', 0, NULL, 0, NULL, 1),
(408, 684, 'Jio', 'Gigafibre Associate', '2019-09-07', 12500.00, '2020-04-30', 12500.00, 'Velachery', '1', '0 years 7 months', ' Due to Low salary', 1, '2020-09-28 12:37:17', 0, NULL, 0, NULL, 1),
(409, 675, 'Vijay Kumar p.s', 'Cit', '2019-07-07', 14000.00, '2020-02-28', 14000.00, 'Thenapet', '1', '0 years 7 months', 'Want to move on my life to next level', 1, '2020-09-28 12:44:18', 0, NULL, 0, NULL, 1),
(410, 684, 'Trichrome technologies', 'Network Trainee', '2018-05-12', 10500.00, '2019-09-28', 10500.00, 'Kanthanchavadi', '1', '1 years 4 months', ' ', 1, '2020-09-28 12:54:51', 0, NULL, 0, NULL, 1),
(411, 678, 'Mohammed Meeran', 'Finace', '2020-10-05', 20000.00, '1970-01-01', 20000.00, 'Perambur', '2', '0 years 0 months', ' ', 1, '2020-09-28 01:26:30', 0, NULL, 0, NULL, 1),
(412, 691, 'next generation', 'sales executive', '2019-09-02', 12000.00, '1970-01-01', 12000.00, 'madurai', '2', '1 years 0 months', 'lock down', 1, '2020-09-28 01:50:31', 0, NULL, 0, NULL, 1),
(413, 690, 'PRISI SMART SERVICE Pvt limited', 'Voice process', '2019-04-09', 13500.00, '2019-12-28', 13500.00, 'Madurai', '1', '0 years 8 months', ' Low wages and night shift that\'s way I came to Chennai to be growup..', 1, '2020-09-28 01:56:17', 0, NULL, 0, NULL, 1),
(414, 696, 'Finecons Pvt Ltd', 'HR Trainee', '2020-02-10', 9000.00, '2020-08-31', 9000.00, 'Alwarpet', '1', '0 years 6 months', ' I lost my job because of lockdown', 1, '2020-09-28 02:45:34', 0, NULL, 0, NULL, 1),
(415, 693, 'Teleperformance', 'Sr.customer services', '2018-06-06', 16000.00, '2020-03-17', 14500.00, 'Ambuttur', '1', '1 years 9 months', ' Process shut down', 1, '2020-09-28 02:46:53', 0, NULL, 0, NULL, 1),
(416, 698, 'Appasamy associates Pvt Ltd', 'Admin executive (export section)', '2018-07-20', 8000.00, '2020-05-31', 13000.00, 'Arumbakkam', '1', '1 years 10 months', ' Due to process run down they reduced the man power. So I can\'t able to work with their anymore. ', 1, '2020-09-28 03:29:03', 0, NULL, 0, NULL, 1),
(417, 699, 'Aagana global solution Pvt Ltd', 'Process associate', '2018-09-28', 12000.00, '2019-12-16', 13000.00, 'Bangalore', '1', '2 years 0 months', ' Due to covid I camed to my home town. So I can\'t able to continue with that again.', 1, '2020-09-28 04:27:08', 0, NULL, 0, NULL, 1),
(418, 700, 'Enrich commodities', 'Relationship manager', '2019-02-04', 13000.00, '2020-04-10', 13000.00, 'Chenai', '1', '1 years 2 months', 'Unsatisfied salary', 1, '2020-09-29 11:03:26', 0, NULL, 0, NULL, 1),
(419, 704, 'Star health insurance', 'Claim relationship officer ', '2019-06-06', 12500.00, '2020-02-01', 13800.00, 'Chennai', '1', '0 years 7 months', 'For higher education (post graduate) ', 1, '2020-09-29 11:16:41', 0, NULL, 0, NULL, 1),
(420, 704, 'Just dial', 'Information Retrieval officer ', '2020-02-10', 13800.00, '2020-09-01', 13800.00, 'Chennai', '1', '0 years 6 months', 'Due to covid', 1, '2020-09-29 11:18:04', 0, NULL, 0, NULL, 1),
(421, 703, 'Star health insurance', 'Claim relationship officer', '2019-07-06', 12500.00, '2020-03-03', 16000.00, 'Royapettah', '1', '0 years 7 months', ' For higher education (post graduation)', 1, '2020-09-29 11:18:06', 0, NULL, 0, NULL, 1),
(422, 0, 'Scientific publishing services', 'Technical editor', '2017-05-17', 12000.00, '2019-10-01', 15000.00, 'Tnagar', '1', '2 years 4 months', ' My mother in laws work cpndition s serios...so i left my job for lo9k after her', 1, '2020-09-29 11:20:36', 1, '2020-09-30 04:11:36', 0, NULL, 0),
(423, 659, 'Matrimony', 'Tele caller', '2020-03-10', 12500.00, '1970-01-01', 10000.00, 'Guindy', '2', '0 years 6 months', ' Long distance', 1, '2020-09-29 12:02:33', 0, NULL, 0, NULL, 1),
(424, 702, 'Scientific publishing services pvt ltd', 'Technical editor', '2017-05-17', 12000.00, '2019-10-01', 15000.00, 'Tnagar', '1', '2 years 4 months', ' My mother in law illness', 1, '2020-09-29 12:09:42', 0, NULL, 0, NULL, 1),
(425, 708, 'Technorate', 'Event producer', '2017-02-09', 13500.00, '2020-02-26', 13500.00, 'Arumbakkam', '1', '3 years 0 months', ' Location changed', 1, '2020-09-29 12:11:55', 0, NULL, 0, NULL, 1),
(426, 701, 'zealous and solution', 'customer support', '2014-09-12', 9500.00, '2015-09-30', 9500.00, 'nungambakkam', '1', '1 years 0 months', ' looking for a dayshift ', 1, '2020-09-29 12:14:59', 0, NULL, 0, NULL, 1),
(427, 701, 'zealous and solution', 'customer support', '2014-09-12', 9500.00, '2015-09-30', 9500.00, 'nungambakkam', '1', '1 years 0 months', ' looking for a dayshift ', 1, '2020-09-29 12:14:59', 1, '2020-09-29 12:15:19', 0, NULL, 0),
(428, 701, 'bharath matrimony', 'relationship manager', '2015-09-30', 12000.00, '2018-10-15', 12000.00, 'adyar', '1', '3 years 0 months', 'process switch over to online', 1, '2020-09-29 12:20:48', 0, NULL, 0, NULL, 1),
(429, 701, 'career overseas', 'visa counsultant', '2018-10-16', 19500.00, '2020-09-20', 19000.00, 'nungambakkam', '1', '1 years 11 months', 'operation not opend', 1, '2020-09-29 12:22:35', 0, NULL, 0, NULL, 1),
(430, 719, 'HDB financial services', 'SSO', '2019-03-01', 8500.00, '2020-02-01', 12900.00, 'Adampakkam', '1', '0 years 11 months', ' Medical issues', 1, '2020-09-29 01:49:38', 0, NULL, 0, NULL, 1),
(431, 721, 'Zealous service company', 'Customer Support Executiver', '2018-05-21', 8500.00, '2019-06-09', 11000.00, 'Nungabakkam', '1', '1 years 0 months', 'Participate of TNPL Cricket so  am relieving for this company. ', 1, '2020-09-29 02:06:18', 0, NULL, 0, NULL, 1),
(432, 724, 'Melstar information technologies Ltd', 'Senior HR Recruiter', '2019-04-08', 28000.00, '2020-03-31', 26000.00, 'Chennai', '1', '0 years 11 months', ' Company got shut down due to COVID', 1, '2020-09-29 03:52:51', 0, NULL, 0, NULL, 1),
(433, 724, 'Stratosphere IT Services Pvt LTD', 'HR Recruiter', '2018-09-01', 23000.00, '2019-03-31', 23000.00, 'Chennai', '1', '0 years 6 months', ' Company got closed', 1, '2020-09-29 04:01:29', 0, NULL, 0, NULL, 1),
(434, 724, 'Troi Management Consultant Pvt Ltd', 'Recruitment Consultant', '2017-03-01', 18000.00, '2018-03-31', 18000.00, 'Chennai', '1', '1 years 1 months', 'Salary was not paid on time. Salary delay', 1, '2020-09-29 04:04:38', 0, NULL, 0, NULL, 1),
(435, 724, 'Dr. Mgr Janaki college ', 'Assistant Professor', '2013-07-10', 16000.00, '2016-12-02', 17000.00, 'Chennai', '1', '3 years 4 months', 'Wanted to shift to HR domain back because when I was searching for a job in HR ,it was a recession period that is why I chose lecturer job to support my family financially', 1, '2020-09-29 04:08:52', 0, NULL, 0, NULL, 1),
(436, 724, 'CEM Business solutions Pvt ltd', 'HR Executive', '2010-12-20', 10000.00, '2012-06-21', 18000.00, 'Chennai', '1', '1 years 6 months', 'Salary delay', 1, '2020-09-29 04:11:17', 0, NULL, 0, NULL, 1),
(437, 724, 'Esquire Systems', 'IT Recruiter', '2010-04-26', 10000.00, '2010-09-07', 10000.00, 'Chennai', '1', '0 years 4 months', 'Company got closed', 1, '2020-09-29 04:13:10', 0, NULL, 0, NULL, 1),
(438, 722, 'flexzo hr services', 'hr executive', '2019-09-09', 1.20, '1970-01-01', 1.40, 'chennai', '2', '1 years 0 months', ' Career growth', 1, '2020-09-29 04:14:29', 0, NULL, 0, NULL, 1),
(439, 724, 'Genie consultants Pvt LTD', 'HR Recruiter', '2009-09-07', 5000.00, '2010-04-17', 5000.00, 'Chennai', '1', '0 years 7 months', 'Salary was very low. Looking out for a better opportunity', 1, '2020-09-29 04:15:24', 0, NULL, 0, NULL, 1),
(440, 728, 'PixStone Images Pvt Ltd', 'Senior HR Generalist', '2020-03-17', 317000.00, '2020-04-30', 317000.00, 'Chennai', '1', '0 years 1 months', ' I joined in PixStone Images Pvt Ltd on March 17 as senior HR Generalist then covid lockdown happened and worked from home for one month then due to business disruption 200+ employees laid off including 3 hR\'s which was unexpected.\nBefore this i worked for Omega Healthcare as a HRBP for 3.5 years.', 1, '2020-09-29 04:24:40', 0, NULL, 0, NULL, 1),
(441, 730, 'Hi tech civil engineering service pvt ltd ', 'Site Engineer ', '2020-01-06', 8000.00, '2020-08-10', 8000.00, 'Vadapalani ', '1', '0 years 7 months', ' ', 1, '2020-09-29 05:21:47', 0, NULL, 0, NULL, 1),
(442, 731, ' Cameo Corporate Services Limited', 'acting TL', '2018-11-12', 11000.00, '2019-08-30', 12000.00, 'chennai mountroad', '1', '0 years 9 months', ' Office timing 10hr duty', 1, '2020-09-29 05:23:21', 0, NULL, 0, NULL, 1),
(443, 734, 'campus interaction', 'product consultant', '2016-02-05', 5022016.00, '2017-03-30', 250000.00, 'st.thomas mount', '1', '1 years 1 months', ' company was dissolved by our managing director', 1, '2020-09-29 05:57:36', 1, '2020-09-29 05:58:23', 0, NULL, 1),
(444, 739, 'IDC Technologies', 'Technical Recruiter', '2019-11-04', 22000.00, '2020-08-14', 264000.00, 'Chennai', '1', '0 years 9 months', ' Layoff due to covid19', 1, '2020-09-29 07:10:58', 0, NULL, 0, NULL, 1),
(445, 742, 'india yamaha motor private limited', 'finance executive', '2015-01-12', 20000.00, '2020-07-31', 35000.00, 'chennai', '1', '5 years 6 months', ' ', 1, '2020-09-29 10:03:44', 0, NULL, 0, NULL, 1),
(446, 739, 'Reveille Technologies', 'US IT Recruiter', '2019-02-11', 14750.00, '2019-10-01', 14750.00, 'Chennai', '1', '0 years 7 months', ' For career growth', 1, '2020-09-29 10:45:36', 0, NULL, 0, NULL, 1),
(447, 739, 'The Innovators Group', 'HR Manager', '2014-01-28', 8000.00, '2018-10-09', 13500.00, 'Chennai', '1', '4 years 8 months', 'Frustrated in handling the team', 1, '2020-09-29 10:49:03', 0, NULL, 0, NULL, 1),
(448, 739, 'Rajapalayam Mills Ltd', 'Site supervisor', '2007-08-02', 1950.00, '2014-01-25', 8000.00, 'Rajapalayam', '1', '6 years 5 months', 'For personal growth', 1, '2020-09-29 10:52:50', 0, NULL, 0, NULL, 1),
(449, 747, 'microsoft ', 'sr hr advisor ', '2019-09-09', 750000.00, '2020-08-31', 750000.00, 'chennai', '1', '0 years 11 months', ' End of contra ', 1, '2020-09-30 11:37:19', 0, NULL, 0, NULL, 1),
(450, 721, 'Zealous service company', 'Customer Support Executiver', '2018-05-21', 8500.00, '2019-06-09', 11000.00, 'Nungabakkam', '1', '1 years 0 months', ' Participate of TNPL Cricket academy. ', 1, '2020-09-30 11:49:03', 0, NULL, 0, NULL, 1),
(451, 721, 'Zealous service company', 'Customer Support Executiver', '2018-05-21', 8500.00, '2019-06-09', 11000.00, 'Nungabakkam Chennai', '1', '1 years 0 months', ' Participate of TNPL Cricket academy. ', 1, '2020-09-30 11:53:23', 0, NULL, 0, NULL, 1),
(452, 748, 'HDB financial serives pvt ltd', 'Telesales executive', '2018-04-20', 11500.00, '2019-12-20', 15200.00, 'Numgambakkam', '1', '1 years 8 months', ' Due to looking for a change and high salary', 1, '2020-09-30 12:00:25', 0, NULL, 0, NULL, 1),
(453, 749, 'HDB financial services', 'Telesales executive', '2018-07-20', 13000.00, '2020-02-08', 15100.00, 'Numgambakkam', '1', '1 years 6 months', ' Want to upgrade my life for new challenging  enviroment', 1, '2020-09-30 12:32:41', 0, NULL, 0, NULL, 1),
(454, 756, 'Centre for excellence in organisation', 'Jr.Executive -Technical resourcing', '2020-02-10', 14300.00, '1970-01-01', 14300.00, 'Porur', '2', '0 years 7 months', ' Travelling distance is too far from my home', 1, '2020-09-30 12:36:48', 0, NULL, 0, NULL, 1),
(455, 757, 'Rmkv silks pvt LTD', 'Asst manager Hr', '2019-03-01', 25000.00, '2020-08-25', 25000.00, 'Chennai', '1', '1 years 5 months', ' Company down side employees due to covid ', 1, '2020-09-30 01:08:45', 0, NULL, 0, NULL, 1),
(456, 757, 'Av career vision overseas Pvt Ltd', 'Senior visa coordinator', '2009-05-09', 16000.00, '2018-10-20', 35000.00, 'Chennai', '1', '9 years 5 months', 'Due to financial crises company closed', 1, '2020-09-30 01:12:27', 0, NULL, 0, NULL, 1),
(457, 757, 'Newgen imaging systems Pvt Ltd', 'Hr executive', '2007-05-01', 9000.00, '2009-04-30', 12000.00, 'Chennai', '1', '1 years 11 months', 'Better opportunity', 1, '2020-09-30 01:14:48', 0, NULL, 0, NULL, 1),
(458, 764, 'cease fire', 'sales executive', '2005-03-01', 10000.00, '2006-09-30', 10000.00, 'triplicane', '1', '1 years 7 months', ' ', 1, '2020-09-30 02:02:56', 0, NULL, 0, NULL, 1),
(459, 764, 'e4e', 'tech support engineer', '2007-01-01', 8000.00, '2007-08-01', 8000.00, 'kottivakkam', '1', '0 years 7 months', 'graduation', 1, '2020-09-30 02:05:06', 0, NULL, 0, NULL, 1),
(460, 758, 'HDB financail services', 'Telesales executive', '2018-04-20', 13000.00, '2020-02-10', 15100.00, 'Numgambakkam', '1', '1 years 9 months', ' Due to looking for an new environment and high salary', 1, '2020-09-30 02:47:39', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(461, 770, 'Uniprotech solutions private limited', 'Sales executive and collection', '2020-06-03', 10000.00, '1970-01-01', 10000.00, 'Nugampakam', '2', '0 years 3 months', ' My area of interest is HR recruiter', 1, '2020-09-30 04:09:10', 0, NULL, 0, NULL, 1),
(462, 765, ' ciel h r services', 'assistant consultant', '2017-06-12', 17500.00, '2019-01-18', 19522.00, 'chennai', '1', '1 years 7 months', 'To explore new opportunities and climb up in my professional ladder.', 1, '2020-09-30 04:20:07', 0, NULL, 0, NULL, 1),
(463, 765, 'flendzz technologies (p) ltd', 'peoples officer', '2019-01-19', 22131.00, '1970-01-01', 26808.00, 'chennai', '2', '1 years 8 months', 'To upgrade my professional skills and specialize. ', 1, '2020-09-30 04:25:31', 0, NULL, 0, NULL, 1),
(464, 772, 'J& M group inc', 'Senior technical Recruiter', '2019-03-01', 30600.00, '2020-04-01', 30600.00, 'Guindy ,Chennai', '1', '1 years 1 months', ' Corona pandameic office shutdown', 1, '2020-09-30 05:18:40', 0, NULL, 0, NULL, 1),
(465, 776, 'sensiple software solutions', 'it recruiter', '2018-05-23', 19000.00, '2020-08-14', 24000.00, 'chennai', '1', '2 years 2 months', 'Facing night shifts', 1, '2020-09-30 06:59:53', 0, NULL, 0, NULL, 1),
(466, 785, 'SrinSoft Technologies', 'Junior Hr Executive', '2018-11-22', 1.00, '2019-12-23', 233000.00, 'Chennai', '1', '1 years 1 months', ' ', 1, '2020-10-01 12:25:25', 0, NULL, 0, NULL, 1),
(467, 786, 'Yazaki India Pvt Ltd', 'Data entry operator', '2018-06-19', 10500.00, '2020-05-26', 17000.00, 'Maraimalai nagar', '1', '1 years 11 months', ' Covid pandemic', 1, '2020-10-01 09:10:31', 0, NULL, 0, NULL, 1),
(468, 788, 'Aminfotech', 'Deviation manager', '2018-06-01', 18000.00, '2020-02-08', 23000.00, 'selaiyur', '1', '1 years 8 months', ' Unfortunately not able to continue Because of personal reason', 1, '2020-10-01 10:35:13', 0, NULL, 0, NULL, 1),
(469, 777, 'tnq', 'hr executive', '2018-12-24', 220000.00, '2019-07-20', 220000.00, 'chennai', '1', '0 years 6 months', ' Personal', 1, '2020-10-01 10:46:11', 0, NULL, 0, NULL, 1),
(470, 801, 'Salespear business solutions', 'Process associate', '2018-09-24', 10000.00, '1970-01-01', 15000.00, 'Anna Salai', '2', '2 years 0 months', ' Office windup', 1, '2020-10-01 11:10:17', 0, NULL, 0, NULL, 1),
(471, 800, 'gembrill technologies', 'sr. recruiter', '2019-08-28', 31.00, '1970-01-01', 31.00, 'chennai', '2', '1 years 1 months', ' For my career growth', 1, '2020-10-01 11:17:09', 0, NULL, 0, NULL, 1),
(472, 801, 'Salespear business solutions', 'Process associate', '2018-09-24', 10000.00, '2020-09-30', 15000.00, 'Anna Salai', '1', '2 years 0 months', ' Office windup....', 1, '2020-10-01 11:18:19', 0, NULL, 0, NULL, 1),
(473, 800, 'sbi card', 'sr.consultant', '2018-03-05', 29.00, '2019-08-23', 30.00, 'kandanchavadi- chennai', '1', '1 years 5 months', ' Not interested to go and work in Gurgaon location', 1, '2020-10-01 11:23:36', 0, NULL, 0, NULL, 1),
(474, 800, 'sutherland global ', 'hr-recruiter', '2016-04-11', 19.00, '2018-03-01', 21.00, 'perungudi', '1', '1 years 10 months', 'For my career growth', 1, '2020-10-01 11:31:14', 0, NULL, 0, NULL, 1),
(475, 800, 'valde tech india pvt ltd', 'hr lead', '2013-11-07', 7.00, '2016-01-19', 19.00, 'velach ', '1', '2 years 2 months', 'To work in mnc company', 1, '2020-10-01 11:35:07', 0, NULL, 0, NULL, 1),
(476, 773, 'Teleperformance', 'senior customer support excecutive', '2018-09-28', 15000.00, '2020-06-25', 16900.00, 'Ambattur', '1', '1 years 8 months', ' Process ram Down', 1, '2020-10-01 11:46:55', 0, NULL, 0, NULL, 1),
(477, 810, 'Finance house', 'Sales officer ', '2019-01-29', 70000.00, '2020-06-02', 70000.00, 'Abu Dhabi', '1', '1 years 4 months', ' Due to Corona company about to close .', 1, '2020-10-01 01:36:07', 0, NULL, 0, NULL, 1),
(478, 816, 'Merit software services ', 'Web research analyst ', '2019-04-12', 16000.00, '2020-04-24', 16000.00, 'Ambattur ', '1', '1 years 0 months', ' I would like to work in a better environment ', 1, '2020-10-01 02:03:05', 0, NULL, 0, NULL, 1),
(479, 808, 'Money plant research', 'Asst.manager hr', '2019-01-21', 18000.00, '2020-03-23', 22000.00, 'Indore', '1', '1 years 2 months', ' ', 1, '2020-10-01 02:24:55', 0, NULL, 0, NULL, 1),
(480, 808, 'Dezire Research', 'Sr.hr recruiter', '2018-04-04', 12000.00, '2019-01-05', 15000.00, 'Indore', '1', '0 years 9 months', ' ', 1, '2020-10-01 02:27:10', 0, NULL, 0, NULL, 1),
(481, 820, 'L&T finances service ', 'Assistant manager ', '2019-04-12', 17000.00, '2019-11-18', 17000.00, 'Orathanadu ', '1', '0 years 7 months', ' Personal problem ', 1, '2020-10-01 02:49:24', 0, NULL, 0, NULL, 1),
(482, 821, 'City union bank', 'Senior associate', '2014-10-27', 12000.00, '2016-10-31', 19000.00, 'Kumbakonam', '1', '2 years 0 months', ' Maternity\n\n', 1, '2020-10-01 03:15:34', 0, NULL, 0, NULL, 1),
(483, 821, 'Flexi career creators(AVTAR GROUP)', 'Associate consultant-Talent Acquisition', '2018-10-29', 15000.00, '2020-07-31', 16600.00, 'Chennai', '1', '1 years 9 months', 'Company laid off due to pandemic', 1, '2020-10-01 03:19:44', 0, NULL, 0, NULL, 1),
(484, 822, 'master construction solutions', 'operational manager', '2017-11-05', 28000.00, '2020-02-07', 36000.00, 'chennai-pondicherry-belgaloure', '1', '2 years 3 months', 'Field down because of Corona pandemics ', 1, '2020-10-01 03:37:11', 0, NULL, 0, NULL, 1),
(485, 785, 'SrinSoft Technologies', 'Junior Hr Executive', '2018-11-22', 233000.00, '2019-12-23', 233000.00, 'Chennai', '1', '1 years 1 months', ' ', 1, '2020-10-01 08:39:06', 0, NULL, 0, NULL, 1),
(486, 827, 'Cognizant Technology Solution ', 'HR Recruiter ', '2020-01-08', 20000.00, '2020-05-31', 20000.00, 'Chennai ', '1', '0 years 4 months', ' Due to covid 19 situation  laid off all recruiters .', 1, '2020-10-02 09:21:02', 0, NULL, 0, NULL, 1),
(487, 827, 'Career Launcher ', 'Executive ', '2019-05-02', 20000.00, '2020-01-05', 20000.00, 'Chennai ', '1', '0 years 8 months', 'Got  a opportunity in HR field ', 1, '2020-10-02 09:23:04', 0, NULL, 0, NULL, 1),
(488, 828, 'Axis bank Ltd', 'Sales Officer', '2019-08-08', 18000.00, '2020-01-01', 18000.00, 'Chrompet', '1', '0 years 4 months', 'Marriage purpose', 1, '2020-10-02 12:32:39', 0, NULL, 0, NULL, 1),
(489, 829, 'Swift prosys pvt Ltd ', 'Web developer ', '2020-01-12', 10000.00, '2020-09-28', 9000.00, 'Chennai', '1', '0 years 8 months', ' Pandemic ', 1, '2020-10-02 01:30:28', 0, NULL, 0, NULL, 1),
(490, 831, 'Jana small finance bank ltd', 'Executive', '2019-07-15', 30000.00, '1970-01-01', 30000.00, 'chennai', '2', '1 years 2 months', ' Career growth', 1, '2020-10-02 01:50:59', 0, NULL, 0, NULL, 1),
(491, 833, 'miracle cables pvt ltd', 'Executive', '2020-01-01', 25000.00, '1970-01-01', 25000.00, 'maduravoyal', '2', '0 years 9 months', ' Career growth', 1, '2020-10-02 02:14:38', 0, NULL, 0, NULL, 1),
(492, 842, 'Novalnet', 'Software developer', '2017-07-03', 2.30, '2020-09-07', 2.30, '2.5', '1', '3 years 2 months', ' Covid19 pandemic', 1, '2020-10-03 07:15:10', 0, NULL, 0, NULL, 1),
(493, 845, 'Rupeek fintech solution ', 'Sales manager', '2020-10-05', 30000.00, '1970-01-01', 30000.00, 'T. Nagar', '2', '0 years 0 months', ' Career growth', 1, '2020-10-03 11:01:16', 0, NULL, 0, NULL, 1),
(494, 844, 'star health', 'telicalar', '2019-06-02', 10000.00, '2020-07-02', 12500.00, 'kodambakkam', '1', '1 years 1 months', ' ', 1, '2020-10-03 11:15:11', 0, NULL, 0, NULL, 1),
(495, 847, 'Vertex solutions', 'Tellecaller', '2015-05-20', 13000.00, '2016-05-25', 13000.00, 'Anna salai', '1', '1 years 0 months', ' Better opportunity', 1, '2020-10-03 11:17:29', 0, NULL, 0, NULL, 1),
(496, 847, 'ABT MARUTI', 'Spares and sales', '2016-06-20', 15000.00, '1970-01-01', 20000.00, 'Adayar', '2', '4 years 3 months', 'Carreer growth', 1, '2020-10-03 11:19:45', 0, NULL, 0, NULL, 1),
(497, 843, 'itc sales supervisor', 'supervisor', '2017-06-02', 15000.00, '2019-07-26', 18000.00, 'chennai', '1', '3 years 4 months', ' not a on roll posting', 1, '2020-10-03 11:30:29', 0, NULL, 0, NULL, 1),
(498, 851, 'Hermes I Ticket pvt ltd', 'Operation manager', '2015-06-03', 50000.00, '2018-02-03', 67000.00, 'Chennai', '1', '2 years 8 months', ' Medical reason', 1, '2020-10-03 11:43:50', 0, NULL, 0, NULL, 1),
(499, 851, 'Bcd Travel', 'Assistant operation manager', '2010-09-20', 30000.00, '2013-12-31', 45000.00, 'Bangalore , chennai', '1', '3 years 3 months', 'Better opportunity ', 1, '2020-10-03 11:46:12', 0, NULL, 0, NULL, 1),
(500, 851, 'Kriya travel logistics', 'Operation manager', '2019-02-09', 50000.00, '2020-01-20', 50000.00, 'Chennai', '1', '0 years 11 months', 'Covid', 1, '2020-10-03 11:48:23', 0, NULL, 0, NULL, 1),
(501, 851, 'People tours and travel', 'Branch head', '2018-02-19', 55000.00, '2019-02-03', 55000.00, 'Chennai', '1', '0 years 11 months', 'Better oppotunity', 1, '2020-10-03 11:50:15', 0, NULL, 0, NULL, 1),
(502, 851, 'Uniglobe Air Travel Bureau', 'Key account management', '2014-01-22', 45000.00, '2015-06-09', 45000.00, 'Chennai', '1', '1 years 4 months', 'Better opertunity', 1, '2020-10-03 11:52:19', 0, NULL, 0, NULL, 1),
(503, 851, 'Amadeus India', 'Help desk - Executive', '2007-01-03', 11000.00, '2010-03-20', 16000.00, 'Chennai', '1', '3 years 2 months', 'Better opportunity', 1, '2020-10-03 11:54:03', 0, NULL, 0, NULL, 1),
(504, 851, 'Carlson wagonlit Travels', 'Sr. Travel Counselor', '2010-03-22', 25000.00, '2010-08-31', 25000.00, 'Chennai', '1', '0 years 5 months', ' Unsatisfaction', 1, '2020-10-03 12:03:07', 0, NULL, 0, NULL, 1),
(505, 844, 'vizza', 'telecaller', '2019-06-09', 11000.00, '2020-07-03', 12500.00, 'kodambakkam', '1', '1 years 0 months', ' salary problem', 1, '2020-10-03 12:03:15', 0, NULL, 0, NULL, 1),
(506, 852, 'Sevika pvt ltd', 'international voice process', '2020-02-05', 15000.00, '2020-09-25', 15000.00, 'Chennai', '1', '0 years 7 months', ' The process stopped due to corona....', 1, '2020-10-03 12:08:51', 0, NULL, 0, NULL, 1),
(507, 853, 'Omega health care', 'Ar caller', '2013-11-03', 20000.00, '2014-10-14', 20000.00, 'Taramani', '1', '0 years 11 months', ' Marriage', 1, '2020-10-03 12:27:18', 0, NULL, 0, NULL, 1),
(508, 840, 'Matrimony ', 'Telecallinh', '2019-08-12', 16000.00, '2020-02-03', 16000.00, 'Little mount', '1', '0 years 5 months', ' Timing .. Ofter  9 logout time... Heavy  pressure  ', 1, '2020-10-03 01:26:23', 0, NULL, 0, NULL, 1),
(509, 859, 'Gangboard', 'Coordinator', '2019-06-15', 10000.00, '2020-05-21', 12000.00, 'Pallikaranai', '1', '0 years 11 months', ' Salary issue', 1, '2020-10-03 01:31:15', 0, NULL, 0, NULL, 1),
(510, 840, 'Matrimony ', 'Telecaller', '2019-08-12', 16000.00, '2020-02-03', 16000.00, 'Little mount ', '1', '0 years 5 months', ' Timing  issue and  Heavy  work pressure ....ofter  9 daily  logout time ', 1, '2020-10-03 01:31:22', 0, NULL, 0, NULL, 1),
(511, 859, 'Gang board', 'Coordinator', '2019-06-15', 10000.00, '2020-05-01', 12000.00, 'Pallikaranai', '1', '0 years 10 months', ' Salary issue', 1, '2020-10-03 01:37:16', 0, NULL, 0, NULL, 1),
(512, 860, 'Bharat matrimony', 'Executive', '2019-12-19', 10500.00, '2020-06-30', 10500.00, 'Guindy', '1', '0 years 6 months', 'Work from home so rural area network problem ', 1, '2020-10-03 01:49:05', 0, NULL, 0, NULL, 1),
(513, 864, 'Anna university ', 'Professional Assistant-1 ', '2019-08-26', 23000.00, '1970-01-01', 23000.00, 'Guindy ', '2', '1 years 1 months', ' Daily wages pay', 1, '2020-10-03 01:57:56', 0, NULL, 0, NULL, 1),
(514, 863, 'Bharathmatrimony.com', 'Telecaller ', '2019-02-03', 9500.00, '2020-06-06', 10500.00, 'Guindy ', '1', '1 years 4 months', ' Corona issue', 1, '2020-10-03 02:02:36', 0, NULL, 0, NULL, 1),
(515, 660, 'Sri Durga Associated', 'Telecaler', '2019-07-10', 12000.00, '2020-03-07', 13500.00, 'T.nagar', '1', '0 years 7 months', ' ', 1, '2020-10-03 02:45:40', 0, NULL, 0, NULL, 1),
(516, 858, 'Sri Durga Associate', 'Telecaler', '2019-07-10', 12000.00, '2020-09-03', 13500.00, 'T.NAGAR', '1', '1 years 1 months', ' ', 1, '2020-10-03 02:48:42', 0, NULL, 0, NULL, 1),
(517, 854, 'mmc infotech pvt ltd', 'teleservice executive', '2018-01-19', 12500.00, '2019-04-30', 14000.00, 'chennai', '1', '1 years 3 months', ' medical reason', 1, '2020-10-04 12:06:48', 0, NULL, 0, NULL, 1),
(518, 874, 'Bharat matrimony', 'Telecaller', '2020-02-27', 10500.00, '2020-07-31', 10500.00, 'Guindy', '1', '0 years 5 months', ' Rural area network problem', 1, '2020-10-05 12:58:09', 0, NULL, 0, NULL, 1),
(519, 878, 'Phonepe', 'FOS', '2019-07-10', 1.00, '2020-09-28', 15500.00, 'Chennai', '1', '1 years 2 months', 'Business Requirements', 1, '2020-10-05 09:47:00', 1, '2020-10-05 11:37:26', 0, NULL, 1),
(520, 881, 'Ujjivan small finance bank ', 'Customers relationship officer ', '2017-03-27', 12000.00, '2019-09-22', 16000.00, 'Ooty', '1', '2 years 5 months', ' Bike accident ', 1, '2020-10-05 10:07:28', 0, NULL, 0, NULL, 1),
(521, 727, 'Intelenet global services ', 'Senior customer service executive ', '2016-07-11', 8000.00, '2018-07-11', 13500.00, 'Chennai ', '1', '2 years 0 months', ' Personal reason', 1, '2020-10-05 10:54:56', 0, NULL, 0, NULL, 1),
(522, 883, 'AGEIS', 'Customer Support Executive', '2014-04-12', 8500.00, '2014-12-22', 8500.00, 'parrys corner', '1', '0 years 8 months', 'better prospects', 1, '2020-10-05 10:55:21', 0, NULL, 0, NULL, 1),
(523, 883, 'chola  ms general insurance', 'officer executive', '2015-01-06', 11000.00, '2018-05-26', 14600.00, 'parrys corner', '1', '3 years 4 months', 'better prospects', 1, '2020-10-05 10:59:40', 1, '2020-10-05 11:05:55', 0, NULL, 1),
(524, 883, 'magus customer dialog', 'team lead', '2018-10-04', 16343.00, '2018-12-12', 16343.00, 'alwarpet', '1', '0 years 2 months', 'father started the own Business , so he ask to support for the business . so left the job', 1, '2020-10-05 11:05:13', 0, NULL, 0, NULL, 1),
(525, 889, 'Standard chartered bank ', 'Senior customer care executive ', '2016-01-25', 17500.00, '2019-02-21', 150000.00, 'Chennai', '1', '3 years 0 months', ' Automation ', 1, '2020-10-05 11:51:31', 0, NULL, 0, NULL, 1),
(526, 894, 'Arcadia consulting service', 'Ar caller', '2014-08-12', 11.00, '2015-10-17', 11.00, 'Anna nagar', '1', '1 years 2 months', ' To join college', 1, '2020-10-05 12:22:53', 0, NULL, 0, NULL, 1),
(527, 772, 'J&M group', 'Senior technical consultant', '2019-03-01', 30600.00, '2020-03-31', 30600.00, 'Chennai', '1', '1 years 1 months', ' Covid pandaemic', 1, '2020-10-05 12:43:10', 0, NULL, 0, NULL, 1),
(528, 896, 'Iopex technologies ', 'Media Analyst ', '2018-06-25', 1.50, '2019-03-03', 1.50, 'Chennai', '1', '0 years 8 months', 'Suddenly got married', 1, '2020-10-05 12:45:15', 0, NULL, 0, NULL, 1),
(529, 772, 'J&M group', 'Senior technical consultant', '2019-02-28', 30600.00, '2020-03-31', 30600.00, 'Chennai', '1', '1 years 1 months', ' Corona pandemic office shutdown', 1, '2020-10-05 12:55:31', 0, NULL, 0, NULL, 1),
(530, 772, 'J&M group', 'Senior technical consultant', '2019-03-01', 30600.00, '2020-03-31', 30600.00, 'Chennai ', '1', '1 years 1 months', ' Office shutdown due to corona pandaemic', 1, '2020-10-05 01:03:30', 0, NULL, 0, NULL, 1),
(531, 893, 'Kotak mahindra', 'Tele caller', '2019-09-04', 13000.00, '2019-12-04', 12000.00, 'Perambur', '1', '0 years 3 months', ' Work presser', 1, '2020-10-05 01:16:59', 0, NULL, 0, NULL, 1),
(532, 892, 'Just Dial Ltd', 'senior process associate', '2014-02-13', 16000.00, '1970-01-01', 20000.00, 'Chennai', '2', '6 years 7 months', 'No Improvement my Designation ', 1, '2020-10-05 01:23:33', 0, NULL, 0, NULL, 1),
(533, 900, 'Aegon Life', 'Relationship Manager', '2020-01-01', 26000.00, '2020-08-05', 26000.00, 'Banglore', '1', '0 years 7 months', ' Personal emergency', 1, '2020-10-05 01:25:50', 0, NULL, 0, NULL, 1),
(534, 900, 'Veremax Technology', 'HR', '2018-06-13', 25000.00, '2019-08-15', 25000.00, 'Banglore', '1', '1 years 2 months', 'HR department shifted to chennai', 1, '2020-10-05 01:28:40', 0, NULL, 0, NULL, 1),
(535, 895, 'Cameo', 'Tele calling', '2019-11-09', 10000.00, '1970-01-01', 10000.00, 'Mount road', '2', '0 years 10 months', ' Work presser', 1, '2020-10-05 01:36:41', 0, NULL, 0, NULL, 1),
(536, 898, 'IQ back office', 'Process associate', '2020-10-05', 13000.00, '1970-01-01', 15000.00, 'Ambattur estate', '2', '0 years 0 months', ' Due to covid pandamic', 1, '2020-10-05 01:39:48', 0, NULL, 0, NULL, 1),
(537, 895, 'Cameo', 'Tele caller', '2019-09-05', 12000.00, '2020-02-05', 12000.00, 'Mount road', '1', '0 years 5 months', ' Target  presser', 1, '2020-10-05 01:47:43', 0, NULL, 0, NULL, 1),
(538, 901, 'Indiaproperty.com', 'Executive', '2014-09-24', 17000.00, '2016-04-13', 18500.00, 'Chennai', '1', '1 years 6 months', ' For better opportunity', 1, '2020-10-05 01:49:40', 1, '2020-10-05 01:52:06', 0, NULL, 1),
(539, 901, 'Sulekh.com', 'Sr.executive', '2016-05-18', 20000.00, '2017-03-15', 22000.00, 'Chennai', '1', '0 years 9 months', 'Better opportunity', 1, '2020-10-05 01:51:40', 0, NULL, 0, NULL, 1),
(540, 901, 'Reliance jio', 'Relationship manager', '2017-04-24', 27000.00, '2019-12-13', 28000.00, 'Chennai', '1', '2 years 7 months', 'Better opportunity', 1, '2020-10-05 01:53:58', 0, NULL, 0, NULL, 1),
(541, 901, 'Let\'s track', 'Centre manager', '2019-12-14', 30000.00, '2020-06-12', 30000.00, 'Chennai and  pondicharry', '1', '0 years 5 months', 'Due to covid19 situation layoff', 1, '2020-10-05 01:55:58', 0, NULL, 0, NULL, 1),
(542, 892, 'Just Dial', 'senior process associate', '2018-02-13', 16000.00, '1970-01-01', 20000.00, 'Chennai', '2', '2 years 7 months', ' No growth in my career', 1, '2020-10-05 02:13:33', 0, NULL, 0, NULL, 1),
(543, 895, 'Cameo', 'Tele caller', '2019-10-05', 13000.00, '2020-10-05', 13000.00, 'Mount road', '1', '1 years 0 months', ' ', 1, '2020-10-05 02:16:56', 0, NULL, 0, NULL, 1),
(544, 895, 'Cameo', 'Tele caller', '2018-09-11', 13000.00, '2020-06-19', 13000.00, 'Mount road', '1', '1 years 9 months', 'Target and presser', 1, '2020-10-05 02:19:04', 0, NULL, 0, NULL, 1),
(545, 863, 'Bharathmatrimony.com', 'Telecaller', '2019-02-03', 9500.00, '2020-06-06', 10500.00, 'Guindy ', '1', '1 years 4 months', ' Corona issue ', 1, '2020-10-05 02:21:59', 0, NULL, 0, NULL, 1),
(546, 903, 'Accenture', 'Enrollment Executive', '2016-12-19', 13000.00, '2018-08-15', 14500.00, 'Karapakam chennai', '1', '1 years 7 months', ' Due to marriage', 1, '2020-10-05 04:12:55', 0, NULL, 0, NULL, 1),
(547, 896, 'Headhunters Consultancy private Limited ', 'Hr recruiter', '2019-05-07', 1.50, '1970-01-01', 1.50, 'Chennai', '2', '1 years 4 months', 'Due to financial commitments ', 1, '2020-10-05 08:34:42', 1, '2020-10-05 08:36:03', 0, NULL, 1),
(548, 907, 'Tamil matrimony', 'Sales', '2018-07-16', 10000.00, '2020-03-31', 15000.00, 'Guindy', '1', '1 years 8 months', ' Personal problem', 1, '2020-10-06 01:26:09', 0, NULL, 0, NULL, 1),
(549, 909, 'LGS Enterprises ', 'Area sales', '2018-02-05', 18000.00, '2020-10-20', 23000.00, 'Chennai', '1', '2 years 8 months', 'Salery low', 1, '2020-10-06 10:15:32', 0, NULL, 0, NULL, 1),
(550, 912, 'Girnar soft pvt', 'Salse ', '2019-09-06', 18000.00, '2020-10-06', 18000.00, 'Jaipur ', '1', '1 years 1 months', ' Covid breakdown ', 1, '2020-10-06 10:45:08', 0, NULL, 0, NULL, 1),
(551, 916, 'oppo mobiles Pvt ltd', 'Sales Trainer', '2015-02-03', 8000.00, '2018-03-15', 15000.00, 'Coimbatore', '1', '3 years 1 months', 'Personal problem', 1, '2020-10-06 11:20:06', 0, NULL, 0, NULL, 1),
(552, 916, 'Aegon Life insurance', 'Relationship manager', '2018-05-17', 20000.00, '2019-10-26', 20000.00, 'Bangalore', '1', '1 years 5 months', 'Moved to Tamilnadu', 1, '2020-10-06 11:21:37', 0, NULL, 0, NULL, 1),
(553, 916, 'Jana small Finance Bank', 'Business development Executive', '2020-03-20', 22000.00, '2020-09-08', 22000.00, 'Salem', '1', '0 years 5 months', 'Moved to Bangalore', 1, '2020-10-06 11:24:29', 0, NULL, 0, NULL, 1),
(554, 921, 'Phonepe Pvt Ltd', 'bde', '2018-08-01', 18300.00, '2020-01-10', 20000.00, 'btm', '1', '1 years 5 months', ' Due to personal reason', 1, '2020-10-06 11:54:59', 0, NULL, 0, NULL, 1),
(555, 920, 'Fleet guard filter Pvt ltd', 'Mechanical Sale representatives', '2018-02-08', 21000.00, '2020-01-09', 21000.00, 'Chennai', '1', '1 years 11 months', ' 1, Off role \n2,no increment \n3,no promotion ', 1, '2020-10-06 11:57:15', 0, NULL, 0, NULL, 1),
(556, 876, 'Bharatmatrimony', 'Agent', '2019-10-15', 12000.00, '2020-09-01', 13000.00, 'Chennai', '1', '0 years 10 months', 'Work from home period Not support for me lot of issues face that moment so i got drop the paper....', 1, '2020-10-06 12:05:48', 0, NULL, 0, NULL, 1),
(557, 924, 'capital first', 'senior relatioship officer', '2018-06-01', 15000.00, '2020-07-31', 20000.00, 'teynampet', '1', '2 years 1 months', ' ', 1, '2020-10-06 12:53:38', 0, NULL, 0, NULL, 1),
(558, 924, 'aegis', 'nodal officer', '2016-04-23', 16000.00, '2018-04-30', 17500.00, 'parrys', '1', '2 years 0 months', 'quit', 1, '2020-10-06 12:55:50', 0, NULL, 0, NULL, 1),
(559, 924, 'hp', 'senior associate', '2011-08-17', 13500.00, '2015-06-30', 20000.00, 'guindy', '1', '3 years 10 months', 'company seperated', 1, '2020-10-06 12:58:16', 0, NULL, 0, NULL, 1),
(560, 924, 'iprocess', 'telecaller', '2009-03-05', 6000.00, '2011-06-01', 7500.00, 'ambattur', '1', '2 years 2 months', 'company change', 1, '2020-10-06 01:00:15', 0, NULL, 0, NULL, 1),
(561, 925, 'HDB Financial services', 'Credit card Executive', '2019-09-19', 13650.00, '2020-09-30', 13000.00, 'Hdfc Bank,perambur branch', '1', '1 years 0 months', 'Reason for covid issues.', 1, '2020-10-06 01:15:35', 0, NULL, 0, NULL, 1),
(562, 930, 'parama technologies', 'front end developer', '2019-09-09', 6000.00, '1970-01-01', 6000.00, 'salem', '2', '1 years 0 months', 'To gain more knowledge and to work with team members', 1, '2020-10-06 03:04:56', 0, NULL, 0, NULL, 1),
(563, 932, 'Lapiz digital services', 'Junior technical associate', '2013-07-23', 8000.00, '2016-02-18', 13000.00, 'Guindy', '1', '2 years 6 months', ' Got married after that pragnent so doctor suggest me in under ful bed rest because of my health condition so i resigned my job', 1, '2020-10-06 03:43:35', 1, '2020-10-06 03:52:41', 0, NULL, 1),
(564, 939, 'lenskart.com ', 'store manager ', '2018-06-01', 26000.00, '2020-10-06', 26000.00, 'alwarpet ', '2', '2 years 4 months', ' ', 1, '2020-10-06 04:44:11', 0, NULL, 0, NULL, 1),
(565, 939, 'lenskart.com optical stores ', 'store manager ', '2018-06-01', 26000.00, '2020-10-06', 26000.00, 'alwarpet', '2', '2 years 4 months', ' Franchised store closed ', 1, '2020-10-06 05:14:01', 0, NULL, 0, NULL, 1),
(566, 943, 'Hdb financial services', 'Senior Telly caller', '2019-06-05', 13000.00, '2020-01-09', 13000.00, 'Thousands lights', '1', '0 years 7 months', ' Extend to work hours. 8:30am to 7 .00 pm Clk', 1, '2020-10-06 05:20:18', 0, NULL, 0, NULL, 1),
(567, 945, 'gccoe infotech pvt ltd', 'software engineer', '2016-11-02', 3000.00, '1970-01-01', 40000.00, 'tambaram', '2', '3 years 11 months', ' Move on next level and I will improve my Carrier', 1, '2020-10-06 05:43:30', 0, NULL, 0, NULL, 1),
(568, 941, 'ubitech solutions pvt ltd', 'full stack web developer', '2019-11-14', 7000.00, '2020-04-17', 7000.00, 'gwalior', '1', '0 years 5 months', ' ', 1, '2020-10-06 07:07:14', 0, NULL, 0, NULL, 1),
(569, 923, 'First source solution', 'Senior customer service executive', '2013-07-22', 10000.00, '2019-02-25', 25000.00, 'Navallur', '1', '5 years 7 months', ' Marrige', 1, '2020-10-07 10:12:51', 0, NULL, 0, NULL, 1),
(570, 923, 'Firstsource solution', 'Senior customer Service Executive', '2013-07-22', 10000.00, '2019-04-22', 25000.00, 'Navallur', '1', '5 years 9 months', ' Marriage', 1, '2020-10-07 10:30:27', 0, NULL, 0, NULL, 1),
(571, 957, 'Shenbagavalli m', 'Telecaller', '2019-01-03', 12000.00, '2020-10-07', 12000.00, 'Nungapakkam', '1', '1 years 9 months', ' Salary problem', 1, '2020-10-07 11:27:10', 0, NULL, 0, NULL, 1),
(572, 950, 'Reach candidates', 'Customer relationship management', '2019-09-01', 13000.00, '2020-01-02', 13500.00, 'Porue', '1', '0 years 4 months', ' For corona so i am relieving', 1, '2020-10-07 11:32:14', 0, NULL, 0, NULL, 1),
(573, 951, 'Prabhas vcare Pvr ltd ', 'B. Com general ', '2019-10-01', 12000.00, '2020-03-28', 13000.00, 'Ambattur ', '1', '0 years 5 months', ' For corona', 1, '2020-10-07 11:35:49', 0, NULL, 0, NULL, 1),
(574, 954, 'Riddhi corporate Pvt Ltd', 'Data entry', '2020-07-06', 10000.00, '2020-09-30', 10000.00, 'Thousands light', '1', '0 years 2 months', ' Salary issue\'s', 1, '2020-10-07 11:41:05', 0, NULL, 0, NULL, 1),
(575, 963, 'aurolab', 'promotion Executive', '2018-03-01', 8500.00, '2019-08-12', 12000.00, 'madurai', '1', '1 years 5 months', 'personal problem', 1, '2020-10-07 11:45:24', 0, NULL, 0, NULL, 1),
(576, 963, 'melstar information technologies', 'video editor', '2019-08-26', 23000.00, '2020-03-02', 23000.00, 'banglore', '1', '0 years 6 months', 'project over', 1, '2020-10-07 11:48:25', 0, NULL, 0, NULL, 1),
(577, 963, 'coswain technologies ltd', 'video editor', '2020-03-03', 23000.00, '2020-09-05', 23000.00, 'banglore', '1', '0 years 6 months', 'project over', 1, '2020-10-07 11:49:49', 0, NULL, 0, NULL, 1),
(578, 931, 'Saranya', 'Telecaller', '2019-10-15', 10000.00, '2020-01-03', 10000.00, 'Teynambet signal opposite', '1', '0 years 2 months', 'Personal issues', 1, '2020-10-07 11:52:59', 0, NULL, 0, NULL, 1),
(579, 948, 'Riddhi coperate service ', 'Telecaller', '2019-06-05', 12000.00, '2020-12-15', 13000.00, 'Ten thousand lights', '1', '1 years 6 months', 'Distance too fare Thats Y am Relieving ', 1, '2020-10-07 11:57:37', 0, NULL, 0, NULL, 1),
(580, 929, 'Tamil matrimony ', 'Telecalling ', '2018-07-12', 12000.00, '2020-04-13', 15000.00, 'Guindy', '1', '1 years 9 months', ' Personal problem ', 1, '2020-10-07 12:07:09', 0, NULL, 0, NULL, 1),
(581, 927, 'Lic', 'telecaller', '2020-04-05', 8000.00, '1970-01-01', 8000.00, 'ayappakkam', '2', '0 years 6 months', ' No incentive and not increase The salary', 1, '2020-10-07 12:16:32', 0, NULL, 0, NULL, 1),
(582, 944, 'All set business solutions', 'Tele caller', '2019-10-15', 10000.00, '2020-12-25', 10000.00, 'Thenambet', '1', '1 years 2 months', ' Personal issues', 1, '2020-10-07 12:16:55', 0, NULL, 0, NULL, 1),
(583, 965, 'Lic', 'telecaller', '2020-01-12', 8000.00, '1970-01-01', 9000.00, 'ayappakkam', '2', '0 years 8 months', 'High level target', 1, '2020-10-07 12:29:32', 0, NULL, 0, NULL, 1),
(584, 947, 'synergy system', 'sales executive', '2018-09-22', 10000.00, '2020-01-27', 12500.00, 'nungambakkam', '1', '1 years 4 months', ' im not well i ask 10 days leave they said to leave this company ', 1, '2020-10-07 12:30:50', 0, NULL, 0, NULL, 1),
(585, 969, 'Best Energy Solutions', 'Business Development Executive', '2018-03-01', 9000.00, '2020-04-01', 15000.00, 'Chennai', '1', '2 years 1 months', ' Personal Reasons', 1, '2020-10-07 12:50:41', 0, NULL, 0, NULL, 1),
(586, 967, 'quess crop lmt', 'relationship executive', '2019-10-01', 16500.00, '2020-06-16', 16500.00, 'e.city', '1', '0 years 8 months', ' covid 19', 1, '2020-10-07 12:54:10', 0, NULL, 0, NULL, 1),
(587, 936, 'Ninjakart', 'Aps management customer suppourt', '2019-05-02', 18000.00, '2019-10-30', 18000.00, 'Chennai', '1', '0 years 5 months', ' Salary issue.. ', 1, '2020-10-07 04:21:10', 0, NULL, 0, NULL, 1),
(588, 936, 'Ninkakart', 'Aps management customer support', '2019-05-02', 18000.00, '2019-10-30', 18000.00, 'Chennai', '1', '0 years 5 months', ' Salary issue... ', 1, '2020-10-07 04:26:41', 0, NULL, 0, NULL, 1),
(589, 956, 'Gujarat machine tools ', 'customer service Relationship', '2017-11-25', 7500.00, '1970-01-01', 15000.00, 'Ampa sky walk Games n more', '2', '2 years 10 months', ' I Want To improve my skill and career Growth.', 1, '2020-10-08 12:33:19', 0, NULL, 0, NULL, 1),
(590, 987, 'Hitachi', 'Senior executive', '2018-03-10', 18000.00, '1970-01-01', 18000.00, 'Chennai', '2', '2 years 6 months', ' For growth', 1, '2020-10-08 11:16:31', 0, NULL, 0, NULL, 1),
(591, 989, 'Exide life insurance company ltd', 'Agency development manager ', '2020-03-10', 27000.00, '2020-06-30', 27000.00, 'Tambaram', '1', '0 years 3 months', ' Due to covid 19', 1, '2020-10-08 11:40:44', 0, NULL, 0, NULL, 1),
(592, 988, 'Matrimony', 'Associate (BPO)', '2019-08-02', 14000.00, '1970-01-01', 17000.00, 'Guindy', '2', '1 years 2 months', ' Salary is very less', 1, '2020-10-08 11:40:55', 0, NULL, 0, NULL, 1),
(593, 986, 'MMC INFOTECH', 'Tele calling', '2015-02-23', 10000.00, '2016-03-07', 10000.00, 'Triplicane, Chennai', '1', '1 years 0 months', ' ', 1, '2020-10-08 11:48:12', 1, '2020-10-08 12:14:22', 0, NULL, 0),
(594, 984, 'Ninjacart', ' Operation Executive', '2018-11-08', 15000.00, '2020-10-08', 23000.00, 'kormangala', '2', '1 years 11 months', ' long time of work ', 1, '2020-10-08 12:12:02', 0, NULL, 0, NULL, 1),
(595, 986, 'MMC infotech', 'Tele caller', '2015-02-23', 8000.00, '2016-03-07', 10000.00, 'Triplicane, chennai', '1', '1 years 0 months', ' Desire to gain a new skill or grow a current skill.', 1, '2020-10-08 12:13:55', 0, NULL, 0, NULL, 1),
(596, 995, 'Cedar business solution', 'Tele caller voice process', '2019-11-05', 13000.00, '2020-04-28', 13000.00, 'Senoy nager', '1', '0 years 5 months', 'Due to corona deduce the staff', 1, '2020-10-08 12:38:19', 0, NULL, 0, NULL, 1),
(597, 986, 'MMC Infotech', 'Telecaller', '2015-02-23', 8000.00, '2016-03-07', 10000.00, 'Triplicane,  chennai', '1', '1 years 0 months', ' Desire to gain a new skill or grow a current skill.', 1, '2020-10-08 01:14:14', 0, NULL, 0, NULL, 1),
(598, 971, 'DTDC EXPRESS Ltd', 'Retail Executive', '2019-10-05', 14000.00, '2020-05-26', 14000.00, 'Chennai', '1', '0 years 7 months', 'To do a better a job then this', 1, '2020-10-08 02:03:37', 0, NULL, 0, NULL, 1),
(599, 1001, 'Auditics pvt ltd', 'Team leader', '2020-03-04', 50000.00, '2020-08-31', 25000.00, 'Chennai', '1', '0 years 5 months', ' Personal', 1, '2020-10-08 02:15:17', 0, NULL, 0, NULL, 1),
(600, 1004, 'cdg cerification india pvt ltd', 'marketing executive', '2019-07-03', 23000.00, '1970-01-01', 23000.00, 'chennai', '2', '1 years 3 months', ' due to corona', 1, '2020-10-08 03:40:22', 0, NULL, 0, NULL, 1),
(601, 1004, 'siragugal drones india ltd', 'events cum marketing', '2018-01-23', 16000.00, '2019-05-07', 16000.00, 'chennai', '1', '1 years 3 months', ' ', 1, '2020-10-08 03:46:31', 0, NULL, 0, NULL, 1),
(602, 979, 'Sundaram finance holdings ', 'Senior associate', '2019-05-31', 15000.00, '2020-06-06', 15000.00, 'Chennai', '1', '1 years 0 months', ' Process closed', 1, '2020-10-08 09:02:24', 0, NULL, 0, NULL, 1),
(603, 1015, 'Cams Pvt Ltd', 'Apo', '2017-09-13', 8500.00, '1970-01-01', 13000.00, 'Chennai', '2', '3 years 0 months', ' ', 1, '2020-10-09 10:46:28', 0, NULL, 0, NULL, 1),
(604, 1012, 'CAMS Pvt ltd', 'Apo', '2017-11-23', 10000.00, '2019-05-27', 12000.00, 'Chennai ', '1', '1 years 6 months', ' Family issues ', 1, '2020-10-09 10:51:14', 0, NULL, 0, NULL, 1),
(605, 1017, 'Orange retail finance', 'Credit analyst (management trainee)', '2019-07-15', 17000.00, '2020-02-14', 17000.00, 'Adayar', '1', '0 years 6 months', ' Career growth', 1, '2020-10-09 10:51:46', 0, NULL, 0, NULL, 1),
(606, 1018, 'Pride technologies consulting India pvt', 'Accounts Executive', '2015-05-01', 21000.00, '2019-11-01', 21000.00, 'Chennai', '1', '5 years 5 months', ' Location change', 1, '2020-10-09 11:08:33', 0, NULL, 0, NULL, 1),
(607, 1020, 'India property.com', 'Customer relationship manager', '2015-04-09', 10000.00, '2016-12-31', 11500.00, 'Guindy', '1', '1 years 8 months', 'Wants to work in finance sector ..wants to learn more about finance ', 1, '2020-10-09 11:21:59', 0, NULL, 0, NULL, 1),
(608, 1016, 'Ht media ltd', 'Mis Executive ', '2016-12-16', 17000.00, '2020-07-17', 22000.00, 'Chennai ', '1', '3 years 7 months', ' Layed off', 1, '2020-10-09 11:22:36', 0, NULL, 0, NULL, 1),
(609, 1020, 'Computer age management service private limited', 'Processing officer', '2017-09-09', 14500.00, '1970-01-01', 17000.00, 'Mount road', '2', '3 years 1 months', 'Wants to increase my package', 1, '2020-10-09 11:23:38', 0, NULL, 0, NULL, 1),
(610, 1020, 'Sulekha', 'Customer relationship manager', '2016-02-02', 15000.00, '2016-07-02', 15000.00, 'Egmore', '1', '0 years 5 months', 'Wantsbto change my profile', 1, '2020-10-09 11:26:06', 0, NULL, 0, NULL, 1),
(611, 1006, 'Geetha', 'Assistant sales manager', '2019-08-11', 10000.00, '2020-05-07', 13000.00, 'Palikkaranai', '1', '0 years 8 months', ' Salary package', 1, '2020-10-09 12:17:40', 0, NULL, 0, NULL, 1),
(612, 1006, 'Geetha.e', 'Consultant', '2019-08-11', 12000.00, '2020-05-07', 13000.00, 'Palikkaranai', '1', '0 years 8 months', 'Salary packages', 1, '2020-10-09 12:22:51', 0, NULL, 0, NULL, 1),
(613, 1032, 'VserveEbusi ness Solutions Ltd', 'Process Executive', '2015-08-01', 9.00, '2017-07-30', 12.50, 'chennai', '1', '5 years 2 months', 'Professional and financial growth', 1, '2020-10-09 01:57:13', 1, '2020-10-09 01:57:59', 0, NULL, 1),
(614, 1034, 'idhayam g finance and investment services pvt ltd', 'finance executive', '2016-05-09', 15000.00, '2019-01-31', 15000.00, 'virudhunagar', '1', '2 years 8 months', ' For my carrier development', 1, '2020-10-09 02:39:39', 0, NULL, 0, NULL, 1),
(615, 1034, 'vectone india mobiles pvt ltd', 'finance executive', '2019-02-04', 30000.00, '2019-12-31', 30000.00, 'chennai', '1', '0 years 10 months', 'Lack of fund They shift my team into Home country.', 1, '2020-10-09 02:48:23', 0, NULL, 0, NULL, 1),
(616, 1024, 'mebpro solution ', 'id department ', '2017-08-07', 12000.00, '2020-08-05', 18000.00, 'virugambakkam', '1', '3 years 2 months', 'health issues and same time cov19  Problems not Cumming for the profit  ', 1, '2020-10-09 03:30:53', 0, NULL, 0, NULL, 1),
(617, 1038, 'Ntc logistics Private Limited ', 'Junior Executive', '2017-03-08', 11500.00, '2019-05-01', 15000.00, 'Kuthambakkam', '1', '2 years 1 months', ' Transfer to other state on Gujarati and then my personal reason for My mother health condition .', 1, '2020-10-09 07:57:39', 0, NULL, 0, NULL, 1),
(618, 1040, 'Ntc Logistics Logistics Private Limited ', 'Junior Executive ', '2017-02-01', 11500.00, '2019-08-01', 15000.00, 'Kuthambakkam', '1', '2 years 6 months', 'Transfer to other state of Gujarati ', 1, '2020-10-09 08:21:01', 0, NULL, 0, NULL, 1),
(619, 1044, 'Gnamani educational institution', 'Admission co ordinator', '2015-05-01', 12000.00, '2020-08-01', 20000.00, 'Namakkal', '1', '5 years 3 months', ' Salary delay for 4month', 1, '2020-10-10 11:24:55', 0, NULL, 0, NULL, 1),
(620, 1047, 'Cholamandalam investment and finance company', 'Deputy Officer', '2019-06-24', 17000.00, '1970-01-01', 18000.00, 'Chennai', '2', '1 years 3 months', ' ', 1, '2020-10-10 11:36:39', 0, NULL, 0, NULL, 1),
(621, 1047, 'Cams', 'APO', '2017-02-02', 9800.00, '2019-06-21', 12400.00, 'Chennai', '1', '2 years 4 months', 'Career growth', 1, '2020-10-10 11:38:03', 0, NULL, 0, NULL, 1),
(622, 1047, 'Gvkemri', 'ERO', '2014-12-16', 9787.00, '2016-01-21', 9787.00, 'Chennai', '1', '1 years 1 months', 'Ear pain', 1, '2020-10-10 11:39:02', 0, NULL, 0, NULL, 1),
(623, 1051, 'Hermes I ticket ', 'Cse and Ticketing Executive ', '2018-01-30', 1.00, '2020-02-10', 1.00, 'Tharamani', '1', '2 years 0 months', ' ', 1, '2020-10-10 12:13:44', 0, NULL, 0, NULL, 1),
(624, 1050, 'fol automobiles pvt ltd', 'mis executive', '2020-02-22', 20000.00, '2020-10-10', 20000.00, 'wavin chennai', '2', '0 years 7 months', ' ', 1, '2020-10-10 12:34:06', 0, NULL, 0, NULL, 1),
(625, 1053, 'Axis securities', 'Relationship officer', '2017-11-15', 19000.00, '2020-03-05', 19000.00, 'Chennai', '1', '2 years 3 months', ' To get a better idea to educate my knowledge', 1, '2020-10-10 12:45:35', 0, NULL, 0, NULL, 1),
(626, 1057, 'Rajesh', 'Sales executive ', '2020-02-28', 12000.00, '1970-01-01', 12000.00, 'Ambattur', '2', '0 years 7 months', ' Salary package ', 1, '2020-10-10 01:58:50', 0, NULL, 0, NULL, 1),
(627, 1052, 'CLRI chennai', 'Excutive assistant', '2013-05-10', 9000.00, '2020-06-01', 22000.00, 'Adyar', '1', '7 years 0 months', ' No funds ', 1, '2020-10-10 03:02:45', 0, NULL, 0, NULL, 1),
(628, 1067, 'finance buddha', 'relationship manager', '2019-08-29', 13000.00, '2019-11-21', 13000.00, 'jeevanbhimanagar', '1', '0 years 2 months', 'health issue', 1, '2020-10-11 06:22:48', 0, NULL, 0, NULL, 1),
(629, 1068, 'Pacecom Technologies Pvt. Ltd ', 'testing', '2019-12-01', 16000.00, '2020-03-10', 16000.00, 'banshankari', '1', '0 years 3 months', ' Due to lockdown', 1, '2020-10-11 06:31:13', 0, NULL, 0, NULL, 1),
(630, 1073, 'every day banking solution,celebration events', 'customer relationship officer', '2019-03-08', 12500.00, '1970-01-01', 12500.00, 'valasaravakkam', '2', '1 years 7 months', 'delay for salary in every each month and leg issues\n\n', 1, '2020-10-12 10:32:54', 0, NULL, 0, NULL, 1),
(631, 1078, 'justdail', 'telemarketing executive', '2019-10-29', 16000.00, '2020-07-18', 16000.00, 'sivajinagar', '1', '0 years 8 months', ' Due to salary issue ', 1, '2020-10-12 10:43:30', 0, NULL, 0, NULL, 1),
(632, 1079, 'Imarque solution', 'Pondy bazar', '2016-12-26', 8000.00, '2017-08-16', 8000.00, 'Tnagar', '1', '0 years 7 months', 'I started my college', 1, '2020-10-12 11:22:57', 0, NULL, 0, NULL, 1),
(633, 1041, 'Sundaram bnp paribas ', 'Legal operation ', '2019-02-09', 18000.00, '2019-04-30', 18000.00, 'Kanchipuram ', '1', '0 years 2 months', ' Family problems ', 1, '2020-10-12 11:37:49', 0, NULL, 0, NULL, 1),
(634, 1083, 'A2b Subhamangala wedding planner', 'Sales proctored', '2019-07-17', 11500.00, '2020-03-10', 11500.00, 'Pondybazzar', '1', '0 years 7 months', ' Corona period \n', 1, '2020-10-12 12:01:08', 0, NULL, 0, NULL, 1),
(635, 1082, 'Multicare man power Service ', 'Tell calling ', '2019-11-01', 8000.00, '2020-03-05', 8000.00, 'CHENNAI', '1', '0 years 11 months', ' Corana  period ', 1, '2020-10-12 12:08:27', 0, NULL, 0, NULL, 1),
(636, 1092, 'H.p.enterprices ', 'Telecaller', '2018-02-05', 15000.00, '2019-05-30', 18640.00, 'Bharathi nagar', '1', '1 years 3 months', ' Office location changed ', 1, '2020-10-12 12:15:05', 0, NULL, 0, NULL, 1),
(637, 1088, 'total solution ', 'telecaller ', '2014-08-24', 12000.00, '1970-01-01', 15000.00, 'jeevan bemanagar', '2', '6 years 1 months', ' ', 1, '2020-10-12 12:17:59', 0, NULL, 0, NULL, 1),
(638, 1099, 'Computer Age Management Services Ltd', 'Processing Officer', '2017-05-02', 14000.00, '1970-01-01', 16000.00, 'Chennai', '2', '3 years 5 months', ' Shift time not Comfortable due to family situation', 1, '2020-10-12 12:44:41', 0, NULL, 0, NULL, 1),
(639, 1100, 'Appro Technologies ', 'Php developer ', '2020-01-01', 6000.00, '2020-06-30', 6000.00, 'Chennai ', '1', '0 years 5 months', ' ', 1, '2020-10-12 01:05:12', 0, NULL, 0, NULL, 1),
(640, 1107, 'Cognizant', 'Programmer', '2018-01-28', 214000.00, '1970-01-01', 240000.00, 'Chennai', '2', '2 years 8 months', ' Looking for new change', 1, '2020-10-12 03:35:32', 0, NULL, 0, NULL, 1),
(641, 1112, 'IMARQ SOLUTIONS PVT LTD', 'TELE MARKETING EXECUTIVE ', '2018-05-12', 9000.00, '2019-11-18', 12000.00, 'T nAGAR', '1', '2 years 5 months', ' Iam not computable new process. So i relreving.', 1, '2020-10-12 07:46:19', 0, NULL, 0, NULL, 1),
(642, 1117, 'Learnnovators', 'Senior HR Executive', '2018-08-31', 30000.00, '2020-08-31', 39000.00, 'Chennai', '1', '2 years 0 months', ' Due to Covid19 layoff', 1, '2020-10-13 10:36:40', 0, NULL, 0, NULL, 1),
(643, 1121, 'vishnu', 'developer', '2018-06-28', 15000.00, '2020-10-13', 15000.00, 't nager', '2', '2 years 3 months', ' No more project that only looking for another job ', 1, '2020-10-13 11:22:13', 0, NULL, 0, NULL, 1),
(644, 1122, 'Access health care', 'Medical billing executive', '2014-08-31', 12500.00, '2017-08-21', 16000.00, 'Ambattur', '1', '2 years 11 months', ' Marriage', 1, '2020-10-13 11:45:44', 0, NULL, 0, NULL, 1),
(645, 1123, 'IIFL', 'Telle caller', '2018-07-24', 12000.00, '2019-02-19', 14000.00, 'Kandhachavadi', '1', '0 years 6 months', 'IIFL OFFICE CLOSED', 1, '2020-10-13 12:15:08', 0, NULL, 0, NULL, 1),
(646, 1132, 'People prime world wide Pvt ltd', 'HR Recruiter', '2019-05-29', 11250.00, '2020-07-07', 11250.00, 'Valasaravakkam', '1', '1 years 1 months', ' Due to the covid-19 pandemic ', 1, '2020-10-13 12:17:38', 0, NULL, 0, NULL, 1),
(647, 1131, 'Creative hands hr consultant', 'Hr recruiter', '2019-10-01', 10.00, '2020-03-01', 15000.00, 'Nungabakkam', '1', '1 years 0 months', ' Due to Corona issues I can\'t able to continue my job . currently searching for job .', 1, '2020-10-13 12:29:52', 0, NULL, 0, NULL, 1),
(648, 1133, 'Sixsigma softsolutions ', 'Hr co-ordinator ', '2020-01-20', 10500.00, '2020-05-10', 10500.00, 'Nungambakkam ', '1', '0 years 3 months', ' Due to COVID ', 1, '2020-10-13 12:42:43', 0, NULL, 0, NULL, 1),
(649, 1135, 'Doli systems Pvt ltd', 'Junior recruiter', '2012-06-27', 8000.00, '2013-05-31', 8000.00, 'Chennai', '1', '0 years 11 months', ' Company shutdown', 1, '2020-10-13 12:47:22', 0, NULL, 0, NULL, 1),
(650, 1135, 'Placenet consultants', 'Senior Recruiter', '2013-11-27', 10500.00, '2016-01-30', 17000.00, 'Chennai', '1', '2 years 2 months', 'Career growth', 1, '2020-10-13 12:49:02', 0, NULL, 0, NULL, 1),
(651, 1135, 'Tekskills India Pvt ltd', 'Senior Recruiter', '2017-10-23', 17000.00, '2018-01-31', 17000.00, 'Chennai', '1', '0 years 3 months', 'Mother health issues', 1, '2020-10-13 12:50:31', 0, NULL, 0, NULL, 1),
(652, 1140, 'SCCPL', 'HR Executive', '2018-11-01', 18500.00, '2020-09-11', 20000.00, 'Chennai', '1', '1 years 10 months', ' Due to personal reasons', 1, '2020-10-13 12:53:16', 0, NULL, 0, NULL, 1),
(653, 1140, 'Vernalsoft', 'HR recruiter', '2017-05-18', 16000.00, '2018-10-10', 16000.00, 'Chennai', '1', '1 years 4 months', 'For good opportunities', 1, '2020-10-13 12:55:16', 0, NULL, 0, NULL, 1),
(654, 1120, 'sai creation', 'emp', '2019-06-05', 12.00, '2020-07-09', 15000.00, 'cit  nagar', '1', '1 years 1 months', 'higher education', 1, '2020-10-13 01:19:38', 0, NULL, 0, NULL, 1),
(655, 1154, 'Customer broadcast', 'Calling ', '2018-04-10', 13000.00, '2019-02-28', 17000.00, 'Guindy', '1', '0 years 10 months', ' Salary issues', 1, '2020-10-13 03:28:05', 0, NULL, 0, NULL, 1),
(656, 1152, 'Trance home india pvt limit', 'Talecaller', '2019-11-11', 10000.00, '2020-10-10', 13000.00, 'Gundy', '1', '0 years 10 months', ' Pressure', 1, '2020-10-13 03:31:26', 0, NULL, 0, NULL, 1),
(657, 1150, 'Tranz home india pvt ltd', 'Telecaller', '2019-10-11', 10000.00, '2020-10-10', 13000.00, 'Guindy', '1', '0 years 11 months', ' pressure', 1, '2020-10-13 03:31:55', 0, NULL, 0, NULL, 1),
(658, 1151, 'BENITA.V', ' Telecaller', '2019-11-13', 10000.00, '2020-10-10', 13000.00, 'Gindy', '1', '0 years 10 months', 'Fresher', 1, '2020-10-13 03:36:19', 0, NULL, 0, NULL, 1),
(659, 1153, 'Tranz home india pvt ltd', 'Telecaller', '2019-10-11', 10000.00, '2020-10-10', 13000.00, 'Guindy', '1', '0 years 11 months', ' Pressure', 1, '2020-10-13 03:42:05', 0, NULL, 0, NULL, 1),
(660, 1156, 'Sri kumaran Telecalling', 'CSE', '2018-08-07', 12000.00, '2020-04-04', 12000.00, 'Trichy', '1', '1 years 7 months', ' Career growth', 1, '2020-10-13 05:11:53', 0, NULL, 0, NULL, 1),
(661, 1170, 'Accenture', 'Analyst', '2006-06-29', 160000.00, '2020-08-04', 650000.00, 'Chennai, sholinganallur', '1', '14 years 1 months', ' In search of better prospects', 1, '2020-10-14 10:42:48', 0, NULL, 0, NULL, 1),
(662, 1157, 'Jain jubilant nissan', 'Sales consultant', '2016-06-26', 12000.00, '2018-02-05', 12000.00, 'Nandhanam', '1', '1 years 7 months', ' Office closed', 1, '2020-10-14 11:08:47', 0, NULL, 0, NULL, 1),
(663, 1174, 'Five Fallf resort', 'Purchase executive ', '2016-01-05', 10000.00, '2019-01-07', 13000.00, 'Kuttralam', '1', '3 years 0 months', ' Layoff', 1, '2020-10-14 11:15:56', 0, NULL, 0, NULL, 1),
(664, 1148, 'sis prosegur holding pvt ltd', 'mis reporting', '2018-11-10', 10500.00, '1970-01-01', 13773.00, 'chetpet', '2', '1 years 11 months', ' reporting transfer to mumbai', 1, '2020-10-14 11:52:01', 0, NULL, 0, NULL, 1),
(665, 1158, 'Hindhuja global solutions ', 'CSE', '2018-12-13', 8000.00, '2019-12-30', 12000.00, 'Nandambakkam', '1', '1 years 0 months', ' Process ramp down', 1, '2020-10-14 01:07:40', 0, NULL, 0, NULL, 1),
(666, 1179, 'Oyo prvt limited Alcott', 'CRE', '2019-05-17', 15000.00, '2020-09-11', 15000.00, 'Gopalapuram', '1', '1 years 3 months', ' Covid 19', 1, '2020-10-14 01:34:42', 0, NULL, 0, NULL, 1),
(667, 1182, 'VIBGYOR Fincorp', 'Verification Department', '2017-05-02', 8000.00, '2018-05-30', 10000.00, 'Anna salai', '1', '1 years 0 months', ' Shifted to office', 1, '2020-10-14 01:38:46', 0, NULL, 0, NULL, 1),
(668, 1182, 'Md India helath insurance TPA Pvt ltd ', 'Executive', '2018-06-01', 12000.00, '2019-07-31', 14000.00, 'Anna salai ', '1', '1 years 1 months', 'After that i\'m completed MBA - HR ... So I\'m choosing hr field', 1, '2020-10-14 01:42:12', 0, NULL, 0, NULL, 1),
(669, 1182, 'Nexgen Design', 'Hr executive', '2019-08-01', 15000.00, '2020-03-10', 15000.00, 'Porur', '1', '0 years 7 months', 'This job is contract based..', 1, '2020-10-14 01:43:33', 0, NULL, 0, NULL, 1),
(670, 1182, 'Ecentric solution Pvt ltd', 'Hr recruiter', '2020-03-17', 17000.00, '2020-08-30', 17000.00, 'Guindy', '1', '0 years 5 months', 'Pandemic situation,, So office is permanently closed...', 1, '2020-10-14 01:47:33', 0, NULL, 0, NULL, 1),
(671, 1183, 'Connect business solutions', 'CSE', '2018-11-05', 12000.00, '2019-12-05', 15000.00, 'Chennai', '1', '0 years 11 months', ' Covid 19', 1, '2020-10-14 01:53:49', 0, NULL, 0, NULL, 1),
(672, 1186, 'Asquare Consultant', 'Hr Recruiter', '2016-10-24', 15.00, '1970-01-01', 18.00, 'Chemmai', '2', '3 years 11 months', ' Better opportunity', 1, '2020-10-14 02:21:12', 0, NULL, 0, NULL, 1),
(673, 1189, 'Daffodil hr services', 'Hr Recruiter', '2019-11-15', 10000.00, '2020-08-31', 10000.00, 'Chennai', '1', '0 years 9 months', ' Due to covid issue I lost my job', 1, '2020-10-14 03:05:30', 0, NULL, 0, NULL, 1),
(674, 1193, 'HDFC(HDBFS)', 'Jr.Officer HR', '2018-11-22', 150000.00, '2020-01-22', 170000.00, 'Chennai', '1', '1 years 2 months', 'I had health issues and had a surgery', 1, '2020-10-14 03:45:13', 0, NULL, 0, NULL, 1),
(675, 1195, 'Matrix Corporate Management Services', 'HR Talent Acquisition RPO', '2018-06-25', 26000.00, '2019-07-26', 26000.00, 'Chennai', '1', '1 years 1 months', ' Went Abroad', 1, '2020-10-14 03:54:11', 0, NULL, 0, NULL, 1),
(676, 1195, 'Precede Workforce Management', 'Talent Acquisition', '2016-12-09', 15000.00, '2018-04-30', 21000.00, 'Chennai', '1', '1 years 4 months', 'Career Growth', 1, '2020-10-14 03:55:39', 0, NULL, 0, NULL, 1),
(677, 1195, 'Platlal Solution', 'HR Recruiter', '2014-12-01', 10000.00, '2016-12-07', 12000.00, 'Chennai', '1', '2 years 0 months', ' ', 1, '2020-10-14 03:59:52', 0, NULL, 0, NULL, 1),
(678, 1196, 'Abovhr Pvt Ltd ', 'Hr recruiter ', '2019-01-18', 12000.00, '1970-01-01', 15000.00, 'Ashok nagar ', '2', '1 years 8 months', ' ', 1, '2020-10-14 04:16:41', 0, NULL, 0, NULL, 1),
(679, 1199, 'Iopex', 'Media analyst ', '2018-06-26', 1.50, '2019-03-01', 1.50, 'Chennai', '1', '0 years 8 months', ' Suddenly got married ', 1, '2020-10-14 05:22:07', 0, NULL, 0, NULL, 1),
(680, 1205, 'jk plastics', 'hr Trainee', '2018-06-01', 15000.00, '2020-03-21', 15000.00, 'Chennai ', '1', '1 years 9 months', 'Due to the pandemic,  lost the job ', 1, '2020-10-15 08:26:12', 0, NULL, 0, NULL, 1),
(681, 1212, 'Feather lite tech', 'Area manager', '2018-02-10', 30000.00, '2019-02-20', 30000.00, 'Vadapalani', '1', '1 years 0 months', 'Health issue ', 1, '2020-10-15 10:37:40', 0, NULL, 0, NULL, 1),
(682, 1215, 'm+r logistics ', 'telesales executive', '2018-07-15', 11000.00, '2020-09-25', 14000.00, 'parrys', '1', '2 years 2 months', ' Due to cost cutting ', 1, '2020-10-15 11:35:09', 0, NULL, 0, NULL, 1),
(683, 1215, 'go gas agencies', 'business development executive', '2018-07-15', 10000.00, '2020-09-25', 10000.00, 'thiruvottiyur', '1', '2 years 2 months', 'Company closed ', 1, '2020-10-15 11:40:41', 1, '2020-10-15 11:54:09', 0, NULL, 0),
(684, 1217, 'Prayanaa innovation india private t', 'Product development trainee', '2016-08-08', 7000.00, '2017-07-08', 11000.00, 'Coimbatore', '1', '0 years 11 months', ' Contract is over ', 1, '2020-10-15 11:42:46', 0, NULL, 0, NULL, 1),
(685, 1218, 'sutherland', 'hr recruiter', '2016-06-10', 10000.00, '2020-03-02', 18000.00, 'perungalathur', '1', '3 years 8 months', ' Career growth ', 1, '2020-10-15 11:49:45', 1, '2020-10-15 11:52:52', 0, NULL, 1),
(686, 1218, 'novigo integrated service pvt ltd', 'hr recruiter', '2018-04-10', 23000.00, '2019-11-09', 26500.00, 'ekkatuthangal ', '1', '1 years 6 months', 'Health issue', 1, '2020-10-15 11:52:05', 1, '2020-10-15 11:53:35', 0, NULL, 1),
(687, 1198, 'HinduStan unilever', 'Triplicane', '2017-05-03', 15000.00, '2017-12-31', 16000.00, 'Triplicane', '1', '0 years 7 months', ' Branch will be closed ', 1, '2020-10-15 11:53:25', 0, NULL, 0, NULL, 1),
(688, 1218, 'vcan software solution ', 'senior hr recruiter', '2020-03-02', 26000.00, '2020-09-09', 26000.00, 'guindy', '1', '0 years 6 months', 'Due to covid no revenue layoff', 1, '2020-10-15 11:55:30', 0, NULL, 0, NULL, 1),
(689, 1221, 'Hdfc', 'Sales executive ', '2015-08-02', 1.80, '2016-05-24', 1.80, 'Bangalore ', '1', '0 years 9 months', ' Offrole', 1, '2020-10-15 11:58:24', 0, NULL, 0, NULL, 1),
(690, 1221, 'Icici bank', 'Junior officer ', '2017-06-14', 2.50, '2018-07-14', 2.50, 'Bangalore ', '1', '1 years 1 months', 'During some professional course ', 1, '2020-10-15 12:01:08', 0, NULL, 0, NULL, 1),
(691, 1221, 'Sbi life insurance ', 'Associate ', '2018-03-05', 3.10, '2019-02-22', 3.10, 'Bangalore ', '1', '0 years 11 months', 'Career growth ', 1, '2020-10-15 12:05:12', 0, NULL, 0, NULL, 1),
(692, 1221, 'Jana small finance bank ', 'BDM', '2019-03-05', 3.40, '2019-08-30', 3.40, 'Banglore', '1', '0 years 5 months', 'Career part', 1, '2020-10-15 12:08:43', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(693, 1213, 'hans ford', 'mis', '2017-05-05', 10000.00, '2018-10-17', 18500.00, 'iyappanthangal', '1', '1 years 5 months', 'back office is Coordinate to main branch.  ', 1, '2020-10-15 12:22:08', 0, NULL, 0, NULL, 1),
(694, 1230, 'Workfreaks corporate services Pvt Ltd', 'HR Executive', '2019-03-04', 12000.00, '1970-01-01', 15000.00, 'Nungambakkam', '2', '1 years 7 months', ' Here target based on salary.if am achived 10times target then he will provide salary.if am not done my salary is hold.', 1, '2020-10-15 01:11:12', 0, NULL, 0, NULL, 1),
(695, 1227, 'Gromax solution Pvt. Ltd', 'Document collection and telecaller ', '2018-06-12', 12000.00, '2019-05-01', 16000.00, 'T. Nagar', '1', '0 years 10 months', ' ', 1, '2020-10-15 01:42:00', 0, NULL, 0, NULL, 1),
(696, 1239, 'Nellai Softwares', 'Talent Acquisition Specialist', '2019-08-05', 251520.00, '2020-07-31', 251520.00, 'Tirunelveli', '1', '0 years 11 months', ' Personal', 1, '2020-10-15 02:41:27', 0, NULL, 0, NULL, 1),
(697, 1239, 'Access Healthcare', 'Client Partner', '2016-12-16', 300000.00, '2017-06-28', 306000.00, 'Chennai', '1', '0 years 6 months', 'Higher Education', 1, '2020-10-15 02:45:49', 0, NULL, 0, NULL, 1),
(698, 1239, 'Harvest Futures', 'Human Resource Executive', '2014-07-01', 180000.00, '2016-10-21', 216000.00, 'Chennai', '1', '2 years 3 months', 'Company Rampdown', 1, '2020-10-15 02:50:07', 0, NULL, 0, NULL, 1),
(699, 1155, 'Techskills Educare and HR private limited', 'HR recruiter', '2019-06-05', 156000.00, '1970-01-01', 180000.00, 'Chennai Anna nagar', '2', '1 years 4 months', ' To explore and learn new skills and technologies under new environment.', 1, '2020-10-15 02:53:36', 0, NULL, 0, NULL, 1),
(700, 1242, 'Sri Enterprise', 'Sales rep', '2019-10-08', 10000.00, '2020-03-25', 10000.00, 'Guindy', '1', '1 years 0 months', ' Due to corona', 1, '2020-10-15 03:31:53', 0, NULL, 0, NULL, 1),
(701, 1245, 'Hyundai company', 'Spare incharge', '2015-07-09', 12000.00, '2020-03-27', 15000.00, 'Alandur', '1', '4 years 8 months', ' Covid', 1, '2020-10-15 04:32:06', 0, NULL, 0, NULL, 1),
(702, 1244, 'dev systems and it services pvt.ltd', 'hr generalist', '2019-12-02', 20000.00, '2020-05-31', 20000.00, 'west mambalam', '1', '0 years 5 months', ' due to corona pandamic', 1, '2020-10-15 04:35:05', 0, NULL, 0, NULL, 1),
(703, 1244, 'prime india healthcare solutions pvt.ltd', 'hr executive', '2017-08-21', 15000.00, '2019-11-30', 16500.00, 'west mogapair', '1', '2 years 3 months', 'office location is shifted to ecr which is far. so resigned', 1, '2020-10-15 04:37:53', 0, NULL, 0, NULL, 1),
(704, 1244, 'idbi federal life insurance pvt.ltd ', 'agency leader', '2016-06-15', 3000.00, '2019-07-31', 3000.00, 'erode', '1', '3 years 1 months', 'wanted to work in hr domain ', 1, '2020-10-15 04:40:30', 0, NULL, 0, NULL, 1),
(705, 1246, 'Naveen alarm system ', 'Android developer', '2017-06-08', 20000.00, '2020-01-10', 24000.00, 'Ekkatuthangal', '1', '2 years 7 months', ' Carrier growth', 1, '2020-10-15 05:10:57', 1, '2020-10-15 05:12:50', 0, NULL, 1),
(706, 1246, 'K cube consultancy services', 'Andriod developer ', '2020-03-15', 19052020.00, '2020-05-19', 25000.00, 'Chennai', '1', '0 years 2 months', 'Coid', 1, '2020-10-15 05:12:07', 0, NULL, 0, NULL, 1),
(707, 1248, 'Accenture Solutions ', 'Process associate ', '2017-11-11', 12000.00, '2019-06-21', 15300.00, 'Chennai', '1', '1 years 7 months', ' Covid', 1, '2020-10-15 05:49:48', 0, NULL, 0, NULL, 1),
(708, 1256, 'Byjus', 'BDM', '2019-11-02', 52000.00, '2020-01-02', 52000.00, 'Chennai', '1', '0 years 2 months', ' Met with an accident and due to corona', 1, '2020-10-16 11:31:11', 0, NULL, 0, NULL, 1),
(709, 1263, 'India infoline pvt. Ltd', 'Senior Tellecaller', '2017-07-11', 8000.00, '2019-08-13', 13000.00, 'Gundy', '1', '2 years 1 months', 'Family problems., So, Suddenly  I relieving that job. ', 1, '2020-10-16 02:56:32', 1, '2020-10-16 02:59:46', 0, NULL, 1),
(710, 1263, 'BankZone', 'Senior Tellercaller', '2019-08-21', 13000.00, '2020-02-10', 13000.00, 'Nungampkkam', '1', '0 years 5 months', 'I Have Lots Of Personal Issues...So, I Decided To Going Abroad(Singapore), This Reason For It.', 1, '2020-10-16 03:10:13', 0, NULL, 0, NULL, 1),
(711, 1267, 'Imarque solutions pvt ltd', 'Customer support Executive', '2012-10-29', 7000.00, '2014-06-13', 8000.00, 'T.Nagar,Chennai.', '1', '1 years 7 months', ' Better growth', 1, '2020-10-16 04:16:47', 0, NULL, 0, NULL, 1),
(712, 1268, 'Bizdom pvt ltd solutions ', 'React developer', '2018-08-28', 17000.00, '1970-01-01', 20000.00, 'Santhoshapuram', '2', '2 years 1 months', ' Career growth', 1, '2020-10-16 04:26:16', 0, NULL, 0, NULL, 1),
(713, 1267, 'Matrix Business Services India  pvt ltd', 'Executive - Gr. I', '2014-12-10', 10000.00, '2020-02-20', 15963.00, 'T.Nagar, Chennai.', '1', '5 years 2 months', 'Better prospects', 1, '2020-10-16 04:27:01', 0, NULL, 0, NULL, 1),
(714, 1269, 'Av software solution', 'Php developer ', '2020-01-06', 10000.00, '1970-01-01', 10000.00, 'Gudvancherry', '2', '0 years 9 months', ' Low salary', 1, '2020-10-16 04:48:40', 0, NULL, 0, NULL, 1),
(715, 1270, 'HCL', 'Customer support executive ', '2019-01-14', 13500.00, '2020-06-04', 14000.00, 'Ambattur', '1', '1 years 4 months', ' Interested in IT', 1, '2020-10-16 05:13:09', 0, NULL, 0, NULL, 1),
(716, 1280, 'Ace insurance brokers company', 'Exclusive assistant', '2019-10-10', 20000.00, '2020-09-10', 20000.00, 'Koyambedu', '1', '0 years 11 months', ' Dut corana so they closed project in uber', 1, '2020-10-17 12:45:39', 0, NULL, 0, NULL, 1),
(717, 1288, 'BMW kun exclusive ', 'CRM', '2019-08-08', 18000.00, '2020-03-22', 18000.00, 'Royapet', '1', '0 years 7 months', ' Pandemic situation, I have left the  job', 1, '2020-10-17 02:29:56', 0, NULL, 0, NULL, 1),
(718, 1303, 'Batl technologies pvt ltd', 'Software Application developer', '2017-05-06', 16000.00, '2018-02-28', 20000.00, 'Chennai', '1', '0 years 9 months', ' Better offer I have got that time', 1, '2020-10-19 11:39:55', 0, NULL, 0, NULL, 1),
(719, 1303, 'Alterego communications pvt ltd', 'App developer', '2018-03-01', 25000.00, '2020-03-31', 28000.00, 'Chennai', '1', '2 years 1 months', 'Moved to better one', 1, '2020-10-19 11:41:24', 0, NULL, 0, NULL, 1),
(720, 1303, 'Best advertising agency pvt ltd', 'Senior app developer', '2020-04-01', 34000.00, '2020-09-01', 34000.00, 'Chennai', '1', '0 years 5 months', 'Due to pandemic they are asked me to leave', 1, '2020-10-19 11:43:44', 0, NULL, 0, NULL, 1),
(721, 1305, 'Axis Bank ', 'Assistant manager ', '2019-09-10', 1.00, '1970-01-01', 25000.00, 'Purasawalkam Chennai ', '2', '1 years 1 months', 'Improve growth ', 1, '2020-10-19 12:18:59', 0, NULL, 0, NULL, 1),
(722, 1316, 'Brownie heavan ', 'Sales', '2018-06-20', 15000.00, '1970-01-01', 17000.00, 'Nungambakkam', '2', '2 years 3 months', ' I need growth and high salary.', 1, '2020-10-19 05:10:41', 0, NULL, 0, NULL, 1),
(723, 1321, 'nsight soutions pvt ltd', 'human resource executive', '2017-04-10', 15000.00, '2020-03-30', 18000.00, 'chennai', '1', '2 years 11 months', ' Carrier Growth', 1, '2020-10-19 07:17:36', 0, NULL, 0, NULL, 1),
(724, 1326, 'Vertical solutions', 'Hr recruiter', '2019-09-04', 14000.00, '2020-03-23', 14000.00, 'Guindy', '1', '0 years 6 months', 'Covid', 1, '2020-10-19 08:45:13', 0, NULL, 0, NULL, 1),
(725, 1336, 'Eos', 'Customer service Representative ', '2019-09-18', 10500.00, '2020-06-15', 10500.00, 'Perungudi', '1', '0 years 8 months', ' Lay off', 1, '2020-10-20 11:30:18', 0, NULL, 0, NULL, 1),
(726, 1331, 'datamatics global services pvt ltd', 'supervisor', '2018-03-16', 12000.00, '2019-11-17', 12000.00, 'pondicherry', '1', '1 years 8 months', ' ', 1, '2020-10-20 11:41:13', 0, NULL, 0, NULL, 1),
(727, 1335, 'Axis bank', 'Telecallar ', '2018-05-02', 13.50, '2019-10-02', 14.50, 'T. Nagar', '1', '1 years 5 months', ' ', 1, '2020-10-20 11:42:54', 0, NULL, 0, NULL, 1),
(728, 1331, 'ucal polymer & ucal fuel system pvt ltd', 'employee', '2014-04-16', 8000.00, '2015-06-15', 9000.00, 'pondicherry', '1', '1 years 1 months', 'No Permanet jobs', 1, '2020-10-20 11:43:42', 0, NULL, 0, NULL, 1),
(729, 1335, 'Matrimony ', 'Telecallar ', '2020-07-02', 14.50, '2020-09-04', 14.50, 'Thambaram', '1', '0 years 2 months', 'Health issue', 1, '2020-10-20 11:44:17', 0, NULL, 0, NULL, 1),
(730, 1331, 'intelenet global services pvt ltd', 'team leader', '2015-06-20', 8000.00, '2018-03-10', 9000.00, 'pondicherry', '1', '2 years 8 months', 'shutdown', 1, '2020-10-20 11:45:21', 0, NULL, 0, NULL, 1),
(731, 1335, 'Axis bank ', 'Telecaling ', '2018-05-04', 13.50, '2019-09-02', 14.50, 'T. Nagar', '1', '1 years 3 months', ' Health issue ', 1, '2020-10-20 11:58:02', 0, NULL, 0, NULL, 1),
(732, 1314, 'accenture', 'process associate', '2018-06-20', 12500.00, '2020-01-17', 18000.00, 'sholinganallur', '1', '1 years 6 months', ' We far to travel for work ', 1, '2020-10-20 12:46:46', 0, NULL, 0, NULL, 1),
(733, 1343, 'Logas Technologies', 'Software Developer', '2018-05-10', 15000.00, '2020-09-30', 21000.00, 'Chennai', '1', '2 years 4 months', ' More exposure, learn new technologies', 1, '2020-10-20 01:06:11', 0, NULL, 0, NULL, 1),
(734, 1343, 'Habiliter technologies', 'Software developer', '2017-10-02', 15000.00, '2018-01-02', 18000.00, 'Chennai', '1', '3 years 0 months', 'Company closed', 1, '2020-10-20 01:08:46', 0, NULL, 0, NULL, 1),
(735, 1344, 'Sutherland Global Service p Ltd', 'Professional ', '2014-12-01', 18000.00, '2020-07-24', 36000.00, 'Chennai ', '1', '5 years 7 months', ' Covid', 1, '2020-10-20 01:24:54', 0, NULL, 0, NULL, 1),
(736, 1348, 'Kube wealt', 'Experience customer executive', '2018-12-24', 14000.00, '2019-11-05', 17500.00, 'Ashok nagar', '1', '0 years 10 months', 'It\'s not credited incentives', 1, '2020-10-20 01:37:58', 0, NULL, 0, NULL, 1),
(737, 1348, 'M1 marketsof1', 'Experience customer executive', '2019-11-07', 17500.00, '2020-05-31', 17500.00, 'Little mount', '1', '0 years 6 months', 'Personal issues', 1, '2020-10-20 01:39:58', 0, NULL, 0, NULL, 1),
(738, 1349, 'Bharat matrimony ', 'Sales executive ', '2019-03-16', 10000.00, '2020-06-21', 12000.00, 'Guindy', '1', '1 years 3 months', ' Lay off', 1, '2020-10-20 01:42:33', 0, NULL, 0, NULL, 1),
(739, 1351, 'Mobivantage techonlogies', 'Php developer', '2019-08-01', 8000.00, '1970-01-01', 12000.00, 'Ambattur estate ', '2', '1 years 2 months', ' Salary issue & career growth', 1, '2020-10-20 02:10:12', 0, NULL, 0, NULL, 1),
(740, 1352, 'Aim solution', 'Telesales', '2016-07-01', 10000.00, '2017-10-20', 10000.00, 'Saidapet', '1', '1 years 3 months', ' Career growth', 1, '2020-10-20 02:43:14', 0, NULL, 0, NULL, 1),
(741, 1358, 'Zealous services', 'Customer support executive', '2016-07-01', 8500.00, '2020-02-28', 14700.00, 'Nungabakkam', '1', '3 years 7 months', ' Due to corona,  management pushed seniors put paper and then I got relieved', 1, '2020-10-20 05:41:17', 0, NULL, 0, NULL, 1),
(742, 1363, 'finpro', 'relationship manager', '2018-09-10', 8000.00, '2020-07-21', 14000.00, 'chennai', '1', '1 years 10 months', ' Due ri covid pandemic period', 1, '2020-10-20 06:40:59', 0, NULL, 0, NULL, 1),
(743, 1332, 'Le Passage to India ', 'Senior Customer Representative ', '2016-09-01', 11000.00, '2020-02-28', 19500.00, 'Chennai ', '1', '3 years 5 months', ' Better offer', 1, '2020-10-20 11:03:43', 0, NULL, 0, NULL, 1),
(744, 1367, 'Fast track pvt limited ', 'Call centre executive ', '2017-02-11', 7500.00, '1970-01-01', 9500.00, 'Kodambakkam', '2', '3 years 8 months', ' Learning new skill', 1, '2020-10-21 09:57:42', 0, NULL, 0, NULL, 1),
(745, 1380, 'Sri thangamyil multi constantly', 'Admin', '2016-03-05', 10000.00, '2017-06-15', 15000.00, 'Nandanam', '1', '1 years 3 months', ' Office changed to Chennai to trichy', 1, '2020-10-21 10:49:11', 0, NULL, 0, NULL, 1),
(746, 1380, 'Hathaway broadband Pvt ltd', 'Team leader', '2017-07-20', 15000.00, '2018-10-12', 15000.00, 'Nungambakkam', '1', '1 years 2 months', 'I am consive so doctor advice don\'t go job so I relived the job ', 1, '2020-10-21 10:53:35', 0, NULL, 0, NULL, 1),
(747, 1342, 'Folksco technology private limited', 'Operation executive', '2017-06-07', 15000.00, '2020-03-28', 17000.00, 'Chennai', '1', '2 years 9 months', ' Covid 19', 1, '2020-10-21 11:16:00', 0, NULL, 0, NULL, 1),
(748, 1383, 'Quikr India Pvt Ltd', 'Mis Executive', '2015-04-20', 20000.00, '2018-03-05', 24600.00, 'Mount road', '1', '2 years 10 months', ' Due to pregnancy and company also downsized', 1, '2020-10-21 11:18:45', 0, NULL, 0, NULL, 1),
(749, 1376, 'letzconnect technologies', 'associate executive', '2019-04-15', 18000.00, '2020-05-15', 18000.00, 'alwarpet', '1', '1 years 1 months', ' ', 1, '2020-10-21 11:20:44', 0, NULL, 0, NULL, 1),
(750, 1384, 'accenture ', 'process associated', '2014-06-02', 12500.00, '2015-06-12', 12500.00, 'sholinganallur', '1', '1 years 0 months', ' ', 1, '2020-10-21 11:27:33', 0, NULL, 0, NULL, 1),
(751, 1384, 'srm medical college hospital and research centre', 'computer operator', '2015-09-03', 8000.00, '2018-01-02', 10000.00, 'potheri', '1', '2 years 3 months', 'there si very low salary and also i have applied m.sc in madras university so i quit my job', 1, '2020-10-21 11:29:54', 0, NULL, 0, NULL, 1),
(752, 1384, 'veremax technology services', 'mis coordinator', '2019-07-11', 16000.00, '2020-10-31', 18500.00, 'guindy', '1', '1 years 3 months', 'Due to lockdown ', 1, '2020-10-21 11:51:51', 0, NULL, 0, NULL, 1),
(753, 1389, 'eximio services and solutions', 'process associate', '2019-06-06', 12.50, '2020-02-25', 12.50, 'ambattur', '1', '0 years 8 months', ' they didnt provide the salary on date.', 1, '2020-10-21 11:51:52', 1, '2020-10-21 11:52:22', 0, NULL, 1),
(754, 1388, 'riskspan india pvt ltd', 'associate trainee', '2016-10-03', 12000.00, '2017-10-02', 12000.00, 'chennai', '1', '0 years 11 months', ' contract based company', 1, '2020-10-21 11:58:38', 0, NULL, 0, NULL, 1),
(755, 1388, 'hdb financial services', 'junior executive', '2019-02-02', 17600.00, '2020-09-02', 17600.00, 'chennai', '1', '1 years 7 months', 'no growth in this company', 1, '2020-10-21 12:00:33', 0, NULL, 0, NULL, 1),
(756, 1392, 'Firstman management service private Ltd ', 'Back office coordinator MIS ', '2019-09-25', 15000.00, '2020-04-30', 15000.00, 'Ekkatuthangal ', '1', '0 years 7 months', ' Due to Corona pandemic.... I don\'t have a system for work from home... They said we can\'t pay for free... that time i had money issues also can\'t buy system.... ', 1, '2020-10-21 12:06:06', 0, NULL, 0, NULL, 1),
(757, 1354, 'Skylark HR Solutions ', 'Hi Recruiter ', '2018-10-06', 12000.00, '2019-10-26', 15000.00, 'chennai', '1', '1 years 0 months', ' personal commitment', 1, '2020-10-21 12:14:42', 0, NULL, 0, NULL, 1),
(758, 1362, 'American Express', 'Business development executive', '2019-08-17', 21196.00, '2020-06-17', 21196.00, 'Mylapore', '1', '0 years 10 months', ' My father has passed away on 18th June. So I couldn\'t continue my job at the time', 1, '2020-10-21 12:14:57', 0, NULL, 0, NULL, 1),
(759, 1354, 'Skylark Hr solutions ', 'HR recruiter', '2018-10-06', 12000.00, '2019-10-26', 15000.00, 'chennai', '1', '1 years 0 months', ' personal commitment', 1, '2020-10-21 12:16:42', 0, NULL, 0, NULL, 1),
(760, 1393, 'aristocrat it solutions pvt ltd', 'hr', '2019-08-05', 21000.00, '2020-03-13', 21000.00, 'thoraipakkam', '1', '0 years 7 months', ' pandemic issue', 1, '2020-10-21 12:17:48', 0, NULL, 0, NULL, 1),
(761, 1390, 'bactrak pvt ltd', 'consultant', '2018-07-16', 14000.00, '2019-08-12', 14000.00, 'chennai', '1', '1 years 0 months', 'cash handling issue. better opportunity. ', 1, '2020-10-21 12:50:56', 0, NULL, 0, NULL, 1),
(762, 1390, 'matrix business services pvt ltd', 'executive', '2015-12-09', 7500.00, '2018-07-11', 12000.00, 'chennai', '1', '2 years 7 months', 'salary issued. better opportunity', 1, '2020-10-21 12:53:28', 0, NULL, 0, NULL, 1),
(763, 1397, 'HT Media ltd', 'Mis executive ', '2016-12-15', 15000.00, '2020-07-17', 22000.00, 'Chennai ', '1', '3 years 7 months', ' Layoff', 1, '2020-10-21 01:08:30', 0, NULL, 0, NULL, 1),
(764, 1399, 'Barclay\'s shared service pvt ltd', 'Process advisor', '2019-10-23', 15000.00, '1970-01-01', 15000.00, 'DLF porur', '2', '0 years 11 months', ' Process over ', 1, '2020-10-21 01:22:10', 0, NULL, 0, NULL, 1),
(765, 1398, 'Softcell Technologies Global Pvt Ltd ', 'Admin Executive ', '2014-06-10', 9000.00, '2020-03-20', 16000.00, 'Chennai Guindy.', '1', '5 years 9 months', ' Looking for a change in my carrier ', 1, '2020-10-21 01:22:28', 0, NULL, 0, NULL, 1),
(766, 1402, 'Barclay\'s shared service', 'Process advisor', '2019-10-23', 10000.00, '1970-01-01', 10000.00, 'Chennai', '2', '0 years 11 months', ' Contract job ', 1, '2020-10-21 02:37:39', 0, NULL, 0, NULL, 1),
(767, 1403, 'Om innovation call service pvt.ltd.', 'Cce&sme', '2010-01-23', 9000.00, '2020-08-14', 11000.00, 'Chennai', '1', '10 years 6 months', ' Salary  hike', 1, '2020-10-21 02:42:25', 0, NULL, 0, NULL, 1),
(768, 1405, 'Barclays shared services', 'Process advisor', '2019-10-23', 10000.00, '1970-01-01', 10000.00, 'Chennai', '2', '0 years 11 months', ' Contract end', 1, '2020-10-21 02:51:16', 0, NULL, 0, NULL, 1),
(769, 1405, 'Airtel cellular network limited', 'Customer care executive', '2018-03-23', 14000.00, '2019-01-05', 10000.00, 'Perambur', '1', '0 years 9 months', 'Health issue', 1, '2020-10-21 02:59:06', 0, NULL, 0, NULL, 1),
(770, 1405, 'Gallore network private limited', 'Technical executive', '2017-03-09', 8500.00, '2017-08-16', 10000.00, 'Guindy', '1', '0 years 5 months', 'Apprentice', 1, '2020-10-21 03:03:16', 0, NULL, 0, NULL, 1),
(771, 1410, 'TAFE', 'Junior executive ', '2019-02-04', 8000.00, '2020-03-31', 10000.00, 'Pearambur ', '1', '1 years 1 months', ' I worked for 1 year contract. So my Contract is over. That\'s why I resigned my job', 1, '2020-10-21 04:40:06', 0, NULL, 0, NULL, 1),
(772, 1413, 'Zealous service', 'CSE', '2018-11-10', 8000.00, '1970-01-01', 12000.00, 'Kodambakkam', '2', '1 years 11 months', ' Nil', 1, '2020-10-21 05:44:00', 0, NULL, 0, NULL, 1),
(773, 1414, 'Cognizant technology solution(contractor) ', 'Process executive', '2019-09-25', 10000.00, '2020-07-02', 10000.00, 'Tambaram', '1', '0 years 9 months', ' Contract period gets over', 1, '2020-10-21 05:55:02', 0, NULL, 0, NULL, 1),
(774, 1415, 'Gloworld Travel Pte Ltd', 'Reservation Head', '2019-03-18', 25000.00, '2020-05-31', 30000.00, 'Chennai', '1', '1 years 2 months', ' Covid - 19 ', 1, '2020-10-21 06:17:34', 0, NULL, 0, NULL, 1),
(775, 1415, 'Flylinks Travel Pte Ltd', 'Reservation Executive ', '2018-03-01', 10000.00, '2019-03-16', 20000.00, 'Chennai', '1', '1 years 0 months', 'Company Closed', 1, '2020-10-21 06:19:35', 0, NULL, 0, NULL, 1),
(776, 1416, 'Axis securities ltd', 'Cpa', '2015-04-18', 30.00, '2019-08-09', 16000.00, 'Chennai', '1', '4 years 3 months', ' Better opportunity', 1, '2020-10-21 06:26:24', 0, NULL, 0, NULL, 1),
(777, 1416, 'Hdb financial services', 'Branch operations executive', '2019-08-14', 30.00, '2020-01-02', 20000.00, 'Chennai', '1', '0 years 4 months', 'Food poison', 1, '2020-10-21 06:28:47', 0, NULL, 0, NULL, 1),
(778, 1426, 'SBI credit cards payment and service', 'Associate', '2019-03-21', 297000.00, '2020-09-01', 297000.00, 'Chennai', '1', '1 years 5 months', ' Due to this pandemic time they did not provide me two month salary', 1, '2020-10-22 10:37:50', 0, NULL, 0, NULL, 1),
(779, 1427, 'Arihant retail private limited', 'Administration', '2017-07-15', 12000.00, '1970-01-01', 17500.00, 'Old washermenpet', '2', '3 years 3 months', ' I want grow up my knowledge.and working with different fields', 1, '2020-10-22 10:54:42', 0, NULL, 0, NULL, 1),
(780, 1428, 'Axis bank', 'Business development executive', '2018-10-27', 15000.00, '2019-09-05', 15000.00, 'Ambattur', '1', '0 years 10 months', ' Due to personal reasons', 1, '2020-10-22 10:55:47', 0, NULL, 0, NULL, 1),
(781, 1427, 'Arihant retail private limited', 'Administration', '2017-07-15', 12000.00, '1970-01-01', 17500.00, 'Old washermenpet', '2', '3 years 3 months', ' I want to grow up myself and work with various fields', 1, '2020-10-22 10:58:36', 0, NULL, 0, NULL, 1),
(782, 1427, 'Arihant retail private limited', 'Administration', '2017-07-15', 12000.00, '1970-01-01', 17500.00, 'Old washermenpet', '2', '3 years 3 months', ' I want to grow up myself and work with various sectors', 1, '2020-10-22 11:03:52', 0, NULL, 0, NULL, 1),
(783, 1432, 'precision galaxy pvt. ltd.', 'associate software engineer', '2018-06-01', 10500.00, '1970-01-01', 18500.00, 'chennai', '2', '2 years 4 months', 'career growth and learning new technologies', 1, '2020-10-22 11:37:35', 0, NULL, 0, NULL, 1),
(784, 1429, 'Waves financial solutions', 'Tele caller', '2019-02-23', 13000.00, '1970-01-01', 13000.00, 'Saidapet', '2', '1 years 7 months', ' ', 1, '2020-10-22 11:38:56', 0, NULL, 0, NULL, 1),
(785, 1429, 'Waves financial solutions', 'Tele caller', '2019-03-23', 13000.00, '1970-01-01', 13000.00, 'Saidapett', '2', '1 years 6 months', 'No incentive', 1, '2020-10-22 11:40:24', 0, NULL, 0, NULL, 1),
(786, 1407, 'Computer  age Management services public ltd', 'Assistant process officer', '2017-09-13', 10000.00, '1970-01-01', 12000.00, 'LIC', '2', '3 years 1 months', 'Salary low, so will change bro my job', 1, '2020-10-22 11:55:59', 0, NULL, 0, NULL, 1),
(787, 1361, 'Phlb services', 'Telecaller', '2019-08-04', 12.00, '1970-01-01', 15.00, 'T.nagar', '2', '1 years 2 months', ' Before Corona I got fixed salary now I got incentive only ,I want a fixed salary', 1, '2020-10-22 12:03:42', 0, NULL, 0, NULL, 1),
(788, 1434, 'Computer Age management services Pvt ltd', 'Apo', '2017-10-22', 5.00, '2019-10-22', 11000.00, 'Mount road', '1', '2 years 0 months', ' ', 1, '2020-10-22 12:22:06', 0, NULL, 0, NULL, 1),
(789, 904, 'bankedge', 'admin cum telesales counselor', '2020-02-12', 14000.00, '2020-05-21', 10500.00, 'chennai- annanagar', '1', '0 years 8 months', ' company profit is affected due to covid-19 so they asked some staffs to get relieve as willingly so got resigned', 1, '2020-10-22 01:42:34', 0, NULL, 0, NULL, 1),
(790, 1440, 'Taurus BPO', 'Sales executive services', '2019-07-30', 14.00, '1970-01-01', 15.00, 'Kodambakam', '2', '1 years 2 months', 'Lay off  issue', 1, '2020-10-22 02:09:33', 0, NULL, 0, NULL, 1),
(791, 1443, 'Trigo quality production', 'Site manager', '2019-08-26', 55000.00, '2020-02-23', 700000.00, 'Chennai', '1', '0 years 5 months', ' Project completed', 1, '2020-10-22 03:32:15', 0, NULL, 0, NULL, 1),
(792, 1446, 'Indusind marketing and financial services', 'Back office support', '2015-08-03', 11000.00, '2019-12-22', 19000.00, 'Karapakkam chennai', '1', '4 years 4 months', ' ', 1, '2020-10-22 04:13:55', 0, NULL, 0, NULL, 1),
(793, 1451, 'colgate palmolive pvt ltd', 'mis executive', '2020-01-07', 23000.00, '2020-07-15', 23000.00, ' sterling road - chennai', '1', '0 years 6 months', ' Office relocated', 1, '2020-10-22 09:55:32', 0, NULL, 0, NULL, 1),
(794, 1451, 'nestle india pvt ltd', 'mis executive', '2019-04-01', 21000.00, '2020-01-05', 21000.00, 'chetpet -  chennai', '1', '0 years 9 months', 'career improvement', 1, '2020-10-22 09:59:13', 0, NULL, 0, NULL, 1),
(795, 1451, 'kalcables pvt ltd (cherrinet isp)', 'mis', '2015-02-19', 18000.00, '2019-03-31', 18000.00, 'mylapoore chennai', '1', '4 years 1 months', 'career improvement', 1, '2020-10-22 10:04:26', 0, NULL, 0, NULL, 1),
(796, 1453, 'DTDC EXPRESS LTD', 'Customer support executive', '2019-06-01', 12000.00, '2020-07-17', 12000.00, 'Guindy', '1', '1 years 1 months', ' Brother marriage', 1, '2020-10-23 10:06:18', 0, NULL, 0, NULL, 1),
(797, 1457, 'Kone elevators', 'Technical support engineer', '2017-05-17', 12000.00, '2020-10-23', 20000.00, 'Chennai', '1', '3 years 5 months', ' ', 1, '2020-10-23 11:30:37', 0, NULL, 0, NULL, 1),
(798, 1330, 'Valens Software services', 'Ui developer', '2019-07-16', 5000.00, '2020-10-07', 12000.00, 'Chennai', '1', '1 years 2 months', ' Career growth & lay off', 1, '2020-10-23 12:10:29', 0, NULL, 0, NULL, 1),
(799, 1461, 'Iris techonologies', 'Hr executive ', '2018-02-08', 7500.00, '2019-12-14', 8500.00, 'Vadapalani', '1', '1 years 10 months', ' Its a part time job', 1, '2020-10-23 01:08:23', 0, NULL, 0, NULL, 1),
(800, 1462, 'icici prudential life insurance company', 'customer service excutive', '2019-01-28', 13000.00, '2019-10-04', 13000.00, 'royapettah - chennai', '1', '0 years 8 months', ' that was too far away thats why.', 1, '2020-10-23 01:34:36', 0, NULL, 0, NULL, 1),
(801, 1465, 'Accenture Pvt ltd', 'PMO Associate', '2017-12-27', 12000.00, '2019-12-27', 17000.00, 'Perungulathur', '1', '2 years 0 months', ' Worked as a contractor role in Accenture.', 1, '2020-10-23 01:50:11', 0, NULL, 0, NULL, 1),
(802, 1465, 'Unimoni global solution Pvt ltd', 'PMO & RMG Analyst', '2020-01-02', 27000.00, '1970-01-01', 27000.00, 'Chennai', '2', '0 years 9 months', 'Due to financial crisis my company was not able to pay salary from may onwards.', 1, '2020-10-23 01:53:10', 0, NULL, 0, NULL, 1),
(803, 1466, 'Accenture solutions Pvt ltd', 'PMO Associate', '2017-12-27', 12000.00, '2019-12-27', 17000.00, 'Chennai', '1', '2 years 0 months', 'Worked as a contractor role for 2 years.', 1, '2020-10-23 02:51:51', 0, NULL, 0, NULL, 1),
(804, 1466, 'Unimoni global solutions Pvt ltd', 'Pmo & RMG Analyst', '2020-01-02', 27000.00, '1970-01-01', 27000.00, 'Chennai', '2', '0 years 9 months', 'Due to financial crisis salary not paid from may onwards', 1, '2020-10-23 02:53:36', 0, NULL, 0, NULL, 1),
(805, 1467, 'Hindustan Unilever ltd', 'Tower resources', '2020-01-23', 24500.00, '2020-08-31', 24500.00, 'Nungambakkam', '1', '0 years 7 months', ' Due to corona so i lost my job', 1, '2020-10-23 03:24:23', 0, NULL, 0, NULL, 1),
(806, 1468, 'Casperon Technology', 'Software engineer', '2016-08-01', 6500.00, '2018-02-28', 6500.00, 'chennai', '1', '1 years 6 months', 'Salary not statisified', 1, '2020-10-23 04:33:27', 0, NULL, 0, NULL, 1),
(807, 1468, 'Digient technology', 'Software engineer', '2018-03-01', 15000.00, '1970-01-01', 26600.00, 'chennai', '2', '2 years 7 months', 'I want to learn new technology', 1, '2020-10-23 04:42:57', 0, NULL, 0, NULL, 1),
(808, 1475, 'EUREKA OUTSOURCING SOLUTIONS', 'CUSTOMER SERVICE REPRESENTATIVE', '2019-03-11', 12000.00, '2020-01-08', 12000.00, 'PERUNGUDI', '1', '0 years 9 months', ' Carrier Growth ', 1, '2020-10-23 05:39:57', 0, NULL, 0, NULL, 1),
(809, 1470, 'Update private limited', 'Executive', '2015-09-24', 14650.00, '2020-08-28', 14650.00, 'Chennai', '1', '4 years 11 months', ' Corona issue 5 Employees Stopped by company ', 1, '2020-10-23 05:43:02', 0, NULL, 0, NULL, 1),
(810, 1471, 'RR Donnelley', 'Document Specialist', '2015-08-12', 13500.00, '2018-08-09', 14800.00, 'Teynambet', '1', '2 years 11 months', ' At that time my father health is too bad. And already i took a month leave. And after that my leave gone on LOP so i decide to quit', 1, '2020-10-23 07:14:13', 0, NULL, 0, NULL, 1),
(811, 1480, 'rolet fire safety and equipment pvt ltd', 'sales executive', '2016-10-03', 18000.00, '2019-10-31', 18000.00, 'chennai', '1', '3 years 0 months', 'health issues', 1, '2020-10-24 10:56:22', 0, NULL, 0, NULL, 1),
(812, 1489, 'Just dial Pvt Ltd', 'Telemarketing executive', '2019-07-18', 14000.00, '2020-04-08', 14000.00, 'Saidapet', '1', '0 years 8 months', ' Due to corona issues  I left from job', 1, '2020-10-24 11:42:52', 0, NULL, 0, NULL, 1),
(813, 1489, 'Just dial Pvt Ltd', 'Telemarketing executive', '2019-07-18', 14000.00, '2020-04-04', 14000.00, 'Saidapet', '1', '0 years 8 months', ' Due to corona issue', 1, '2020-10-24 11:51:21', 0, NULL, 0, NULL, 1),
(814, 1497, 'Agriculture insurance India limited', 'Data entry operator', '2019-10-17', 10000.00, '2020-08-17', 10000.00, 'Party corner', '1', '0 years 10 months', 'Lay off due to covid', 1, '2020-10-24 07:53:00', 0, NULL, 0, NULL, 1),
(815, 1505, 'SIS  PROSEGUR HOLDINGS Pvt Ltd', 'Sr billing executive', '2016-07-03', 16000.00, '2018-07-31', 19000.00, 'Chennai', '1', '2 years 0 months', ' Due to shifting other state Mumbai', 1, '2020-10-26 11:27:40', 0, NULL, 0, NULL, 1),
(816, 1506, 'accenture', 'senior associate', '2015-03-08', 10200.00, '2020-03-13', 24355.00, 'chennai omr', '1', '5 years 0 months', ' looking for new domain', 1, '2020-10-26 11:28:08', 0, NULL, 0, NULL, 1),
(817, 1505, 'FIS payment solutions ', 'Associate ', '2016-09-06', 19000.00, '2020-06-25', 19700.00, 'Chennai', '1', '3 years 9 months', 'Due to pandamic and project shifted', 1, '2020-10-26 11:37:52', 0, NULL, 0, NULL, 1),
(818, 1501, 'on innovation ', 'personal loan officer', '2019-10-03', 13000.00, '2020-09-03', 13500.00, 'cheatpat', '1', '0 years 11 months', ' personal issue', 1, '2020-10-26 12:37:07', 0, NULL, 0, NULL, 1),
(819, 1518, 'AIQM BUSINESS SOLUTION PVT LMT', 'Product consultant', '2018-05-14', 14000.00, '2019-05-30', 14000.00, 'Guindy', '1', '1 years 0 months', ' Company has closed Temporary. ', 1, '2020-10-26 03:46:53', 0, NULL, 0, NULL, 1),
(820, 1530, 'Bwda finance ', 'Deputy manager', '2017-12-13', 13122017.00, '2019-02-28', 12000.00, 'Chennai', '1', '1 years 2 months', ' Low salary', 1, '2020-10-26 08:56:39', 0, NULL, 0, NULL, 1),
(821, 1516, 'CAMS', 'APO', '2018-07-31', 8000.00, '2020-11-27', 12000.00, 'Mount road', '1', '2 years 3 months', 'Salary is not enough for my current situvation', 1, '2020-10-27 11:41:19', 0, NULL, 0, NULL, 1),
(822, 1543, 'greenocean research labs private limited', 'software developer', '2013-01-09', 8000.00, '1970-01-01', 30000.00, 'chennai', '2', '7 years 9 months', ' for my carrier growth and learning new technologies', 1, '2020-10-27 12:05:25', 0, NULL, 0, NULL, 1),
(823, 1546, 'Hdb', 'Relationship officer', '2019-01-22', 10000.00, '2019-09-01', 15000.00, 'Nelson manickkam road chennai', '1', '0 years 7 months', ' Relieved ', 1, '2020-10-27 01:19:55', 0, NULL, 0, NULL, 1),
(824, 1547, 'Hdfc', 'Ro', '2019-01-03', 13000.00, '2020-02-01', 15000.00, 'Nmroad', '1', '1 years 0 months', ' Relieved', 1, '2020-10-27 01:30:05', 0, NULL, 0, NULL, 1),
(825, 1548, 'Hdb Financial services', 'Sales Officer', '2018-09-01', 9000.00, '2020-10-10', 9500.00, 'Chrompet', '1', '2 years 1 months', ' Family situation', 1, '2020-10-27 01:33:27', 0, NULL, 0, NULL, 1),
(826, 1559, 'Meritrac services Ltd', 'Technical Customer support', '2020-03-01', 15000.00, '2020-09-30', 15000.00, 'Mylapore', '1', '0 years 7 months', ' Did not pay salary ', 1, '2020-10-27 06:06:02', 0, NULL, 0, NULL, 1),
(827, 1560, 'ISON BPO', 'Customer care', '2017-10-20', 9500.00, '2019-05-15', 9500.00, 'Perungudi', '1', '1 years 6 months', ' The company has changed to Ambattur location so I didn\'t travel \nIt\'s more than 30 km', 1, '2020-10-27 06:58:33', 0, NULL, 0, NULL, 1),
(828, 1564, 'Eat fit', 'CDP', '2019-10-27', 30000.00, '2020-04-30', 30000.00, 'Chennai', '1', '1 years 0 months', ' ', 1, '2020-10-27 08:45:43', 0, NULL, 0, NULL, 1),
(829, 1577, 'Reliance Nippon Life Insurance ', 'Key relationship manager ', '2019-10-10', 18000.00, '2020-04-15', 16000.00, 'Nanganallur ', '1', '0 years 6 months', ' Salary ', 1, '2020-10-28 11:33:37', 0, NULL, 0, NULL, 1),
(830, 1577, 'Reliance Nippon Life Insurance ', 'Key relationship manager ', '2019-10-10', 16000.00, '2020-04-15', 16000.00, 'Chennai ', '1', '0 years 6 months', 'Long distance ', 1, '2020-10-28 01:01:16', 0, NULL, 0, NULL, 1),
(831, 1577, 'Reliance Nippon Life Insurance ', 'Key relationship manager ', '2019-10-10', 16500.00, '2020-04-15', 18000.00, 'Nanganallur ', '1', '0 years 6 months', ' Salary ', 1, '2020-10-28 01:05:36', 0, NULL, 0, NULL, 1),
(832, 1577, 'Reliance Nippon Life Insurance ', 'Key relationship manager ', '2019-10-10', 16000.00, '2020-04-15', 16000.00, 'Chennai ', '1', '0 years 6 months', ' Salary ', 1, '2020-10-28 01:10:09', 0, NULL, 0, NULL, 1),
(833, 1591, 'Vindhya e info media', 'Team leader', '2019-11-13', 25000.00, '2020-06-10', 25000.00, 'Chennai yes bank', '1', '0 years 6 months', ' Process ramp down', 1, '2020-10-28 05:03:19', 0, NULL, 0, NULL, 1),
(834, 1592, 'Fyndus India Pvt Ltd', 'Senior customer support executive ', '2018-03-03', 12000.00, '2020-03-28', 17000.00, 'Taramani', '1', '2 years 7 months', ' Covid pandamic', 1, '2020-10-28 06:23:17', 0, NULL, 0, NULL, 1),
(835, 1593, 'Omnex india pvt ltd', 'business development executive', '2016-05-04', 16500.00, '2017-07-31', 19500.00, 'CHENNAI', '1', '1 years 2 months', ' Got better opportunity', 1, '2020-10-28 07:24:47', 0, NULL, 0, NULL, 1),
(836, 1593, 'THE PRINT SHOP(corporate gifting company)', 'Sales and operations Manager', '2017-10-02', 25000.00, '1970-01-01', 33000.00, 'Chennai', '2', '3 years 0 months', 'Looking for career growth & opportunity ', 1, '2020-10-28 07:28:52', 0, NULL, 0, NULL, 1),
(837, 1595, 'Jbk controls india pvt ltd', 'Assistant executive', '2019-07-23', 18000.00, '2020-07-29', 18000.00, 'Chennai', '1', '1 years 0 months', ' ', 1, '2020-10-29 11:13:13', 0, NULL, 0, NULL, 1),
(838, 1600, 'exide life insurance', 'relationship officer', '2018-01-03', 300000.00, '2018-12-05', 300000.00, 'mount road', '1', '0 years 11 months', ' due to not enough my salary', 1, '2020-10-29 01:48:19', 0, NULL, 0, NULL, 1),
(839, 1600, 'fynsea lines and logistics', 'marketing executive', '2019-01-30', 300000.00, '2020-02-05', 300000.00, 'egmore', '1', '1 years 0 months', 'due to covid-19', 1, '2020-10-29 01:50:31', 0, NULL, 0, NULL, 1),
(840, 1615, 'Pleasantrip travels pvt lmt', 'Customer Support ', '2018-05-21', 10500.00, '2020-06-15', 13500.00, 'Chennai', '1', '2 years 0 months', ' salary issues', 1, '2020-10-29 07:47:09', 0, NULL, 0, NULL, 1),
(841, 1596, 'Avmh pvt ltf', 'Client Service Executive', '2019-07-01', 18000.00, '1970-01-01', 22000.00, 'Chennai', '2', '1 years 3 months', 'No work  Business dull', 1, '2020-10-30 10:46:10', 0, NULL, 0, NULL, 1),
(842, 1596, 'Ceebros', 'Executive', '2016-12-01', 20000.00, '2019-06-30', 30000.00, 'Chennai', '1', '2 years 6 months', ' Project Over', 1, '2020-10-30 10:56:12', 0, NULL, 0, NULL, 1),
(843, 1623, 'AVMH pvt ltd', 'Executive Client Service', '2019-07-01', 18000.00, '1970-01-01', 22000.00, 'Chennai', '2', '1 years 3 months', ' Business dull', 1, '2020-10-30 12:16:16', 0, NULL, 0, NULL, 1),
(844, 1583, 'Bajaj finance', 'Document collection', '2020-02-01', 14000.00, '2020-09-24', 14000.00, 'LIC', '1', '0 years 7 months', 'Corana issues ', 1, '2020-10-30 12:24:45', 0, NULL, 0, NULL, 1),
(845, 1622, 'Bharath matrimony', 'Telecalling', '2019-11-04', 11000.00, '2020-04-04', 11000.00, 'Guindy', '1', '0 years 5 months', ' Corona issue', 1, '2020-10-30 12:51:45', 0, NULL, 0, NULL, 1),
(846, 1620, 'Bharath matrimony', 'Telecalling', '2019-10-04', 10000.00, '2020-04-04', 10000.00, 'Guindy', '1', '0 years 6 months', 'Corona issue  ', 1, '2020-10-30 12:55:01', 0, NULL, 0, NULL, 1),
(847, 1590, 'mt educare coaching institute', 'centre admin', '2019-03-13', 11500.00, '2020-07-04', 11500.00, 'chennai', '1', '1 years 3 months', 'corna issue ', 1, '2020-10-30 01:19:30', 0, NULL, 0, NULL, 1),
(848, 1590, 'mt educare coaching institute', 'centre admin', '2019-03-13', 11500.00, '2020-07-04', 11500.00, 'chennai', '1', '1 years 3 months', 'corna issue ', 1, '2020-10-30 01:19:30', 0, NULL, 0, NULL, 1),
(849, 1621, 'bajaj finance', 'documentation', '2020-02-03', 14000.00, '2020-07-31', 14000.00, 'lic', '1', '0 years 5 months', 'corona issue ', 1, '2020-10-30 01:32:38', 0, NULL, 0, NULL, 1),
(850, 1639, 'Legality simplified', 'sales executive', '2020-02-23', 22.00, '2020-07-18', 22.00, 'greams roads', '1', '0 years 4 months', ' lockdown sales was not happening', 1, '2020-10-30 10:53:54', 0, NULL, 0, NULL, 1),
(851, 1640, 'TSMT Technology India Pvt Ltd', 'HR Ass', '2018-06-06', 10000.00, '2018-12-21', 10000.00, 'Chennai', '1', '0 years 6 months', ' long travel', 1, '2020-10-31 06:10:38', 0, NULL, 0, NULL, 1),
(852, 1640, 'Enlist Consultancy', 'HR Rec', '2019-02-04', 12000.00, '2020-01-20', 12000.00, 'Chennai', '1', '0 years 11 months', 'salary issue', 1, '2020-10-31 06:12:00', 0, NULL, 0, NULL, 1),
(853, 1637, 'Hectadata', 'HR Recruiter', '2019-03-14', 17000.00, '1970-01-01', 18000.00, 'Chennai', '2', '1 years 7 months', ' Career growth', 1, '2020-10-31 11:28:00', 0, NULL, 0, NULL, 1),
(854, 1642, 'Hectadata ', 'Senior recruitment ', '2019-03-14', 16000.00, '2020-10-31', 16.50, 'Chennai ', '2', '1 years 7 months', ' Career growth ', 1, '2020-10-31 11:35:29', 0, NULL, 0, NULL, 1),
(855, 1641, 'Carrwing Tech', 'HR Recruiter', '2020-07-16', 8000.00, '1970-01-01', 8000.00, 'Beach station', '2', '0 years 3 months', ' Salary issues', 1, '2020-10-31 11:46:14', 0, NULL, 0, NULL, 1),
(856, 1631, 'Bull IT services', 'IT recruiter ', '2018-11-19', 7000.00, '2020-03-04', 10000.00, 'Sattur,Viruthunagar', '1', '1 years 3 months', ' ', 1, '2020-10-31 11:54:33', 0, NULL, 0, NULL, 1),
(857, 1631, 'Bull it', 'iT recruitment ', '2018-11-19', 6000.00, '2020-03-04', 10000.00, 'Sattur ', '1', '1 years 3 months', 'Carrying growth ', 1, '2020-10-31 11:56:28', 0, NULL, 0, NULL, 1),
(858, 1646, 'CreditMantri Finserv Pvt Ltd', 'Product Engineer', '2018-07-16', 225000.00, '2020-03-31', 285000.00, 'Chennai', '1', '1 years 8 months', ' Career Growth', 1, '2020-10-31 12:34:18', 0, NULL, 0, NULL, 1),
(859, 1648, 'Muthoot finance', 'Po', '2019-02-16', 14900.00, '2020-02-04', 14900.00, 'B. Kotha kota', '1', '0 years 11 months', ' Family problems', 1, '2020-10-31 01:03:06', 0, NULL, 0, NULL, 1),
(860, 1655, 'Thomas cook india ltd ', 'Hr recuriter ', '2019-01-19', 18000.00, '2020-05-10', 18000.00, 'Chennai ', '1', '1 years 3 months', ' Due to covid I had left the job', 1, '2020-10-31 06:20:36', 0, NULL, 0, NULL, 1),
(861, 1669, 'Sindu Enterprises ', 'System administrator ', '2020-02-27', 8000.00, '2020-09-20', 18000.00, 'Chennai', '1', '0 years 6 months', ' For Covid19 lockdown ', 1, '2020-11-02 10:37:15', 0, NULL, 0, NULL, 1),
(862, 1671, 'Aagna global solutions', 'Customer relationship executive', '2015-05-11', 80000.00, '2016-06-13', 16000.00, 'Nandhambakkam', '1', '1 years 1 months', ' No growth', 1, '2020-11-02 11:21:32', 0, NULL, 0, NULL, 1),
(863, 1666, 'Eat good technology Pvt Ltd', 'Site manager', '2018-07-10', 17500.00, '2020-01-05', 17500.00, 'DLF', '1', '1 years 5 months', ' Due to Health issue.', 1, '2020-11-02 11:45:04', 0, NULL, 0, NULL, 1),
(864, 1676, 'Eat good technology Pvt Ltd', 'Site manager', '2018-07-10', 18500.00, '2020-11-02', 18000.00, 'Dlf', '2', '2 years 3 months', ' ', 1, '2020-11-02 11:52:31', 0, NULL, 0, NULL, 1),
(865, 1673, 'Hcl tss', 'Associate executive ', '2017-12-15', 10000.00, '2019-12-30', 12000.00, 'Ambattur ', '1', '2 years 0 months', ' change of company location', 1, '2020-11-02 12:04:21', 0, NULL, 0, NULL, 1),
(866, 1638, 'Live digital ', 'Team leader ', '2018-03-15', 14000.00, '1970-01-01', 14000.00, 'Mumbai ', '2', '2 years 7 months', ' My family transfer in Tamil nadu some family issues ', 1, '2020-11-02 01:03:07', 0, NULL, 0, NULL, 1),
(867, 1677, 'Ranjan&co (book press) ', 'Typiest', '2019-09-01', 10000.00, '1970-01-01', 10000.00, 'Paries', '2', '1 years 2 months', '  For Family issues ', 1, '2020-11-02 01:14:24', 0, NULL, 0, NULL, 1),
(868, 1658, 'pkb exports', 'it execute', '2014-01-16', 8000.00, '2015-09-23', 8000.00, 'madurai', '1', '1 years 8 months', ' salary issue', 1, '2020-11-02 01:28:20', 0, NULL, 0, NULL, 1),
(869, 1658, 'innovativeinteriorspvtltd', 'system admin', '2015-12-23', 13000.00, '1970-01-01', 25000.00, 'chennai', '2', '4 years 10 months', 'enhance my knowledge', 1, '2020-11-02 01:29:57', 0, NULL, 0, NULL, 1),
(870, 1683, 'Madras Networking Company', 'Network technical support', '2019-08-03', 10000.00, '2020-08-30', 10000.00, 'Chennai', '1', '1 years 0 months', ' Due to personal issue', 1, '2020-11-02 03:06:13', 0, NULL, 0, NULL, 1),
(871, 1689, 'Axis Bank ', 'Relationship Officer ', '2020-02-11', 11500.00, '2020-09-15', 11500.00, 'Pallavaram ', '1', '0 years 7 months', '  Long distance and salary is not satisfyed ', 1, '2020-11-02 07:27:45', 0, NULL, 0, NULL, 1),
(872, 1697, 'Ap', 'System administrator', '2018-08-15', 10000.00, '2020-12-01', 15000.00, 'Ambattur', '1', '2 years 2 months', 'No better salary', 1, '2020-11-03 12:10:37', 0, NULL, 0, NULL, 1),
(873, 1694, 'Spigel technology', 'Php developer ', '2019-06-24', 8000.00, '2020-06-24', 8000.00, 'Madurai ', '1', '1 years 0 months', ' Salary Issue ', 1, '2020-11-03 12:32:32', 1, '2020-11-03 12:37:17', 0, NULL, 1),
(874, 1687, 'Rupeek Fintech pvt ltd', 'senior relationship manager', '2020-01-19', 24000.00, '2020-10-17', 24000.00, 'jp nagar', '1', '0 years 8 months', ' Shift timing ', 1, '2020-11-03 12:35:14', 0, NULL, 0, NULL, 1),
(875, 1699, 'test', 'talent acquisition', '2019-07-01', 10000.00, '2020-10-29', 13000.00, 'chennai', '1', '1 years 3 months', ' ', 1, '2020-11-03 03:15:23', 0, NULL, 0, NULL, 1),
(876, 1700, 'Posnic innovation tech pvt ltd', 'Full stack developer', '2015-09-18', 6000.00, '2018-12-18', 4.80, 'Nagapattinam', '1', '3 years 3 months', ' Willing to relocate chennai', 1, '2020-11-03 03:20:17', 0, NULL, 0, NULL, 1),
(877, 1700, 'Tecdata education pvt ltd', 'Senior php developer', '2019-01-28', 300000.00, '2020-04-15', 300000.00, 'Chennai', '1', '1 years 2 months', 'Willing to work on new technology', 1, '2020-11-03 03:23:46', 0, NULL, 0, NULL, 1),
(878, 1700, 'Hss technologies', 'Senior php developer', '2020-06-03', 480000.00, '2020-09-10', 480000.00, 'Chennai', '1', '0 years 3 months', 'Due to family issue', 1, '2020-11-03 03:25:45', 0, NULL, 0, NULL, 1),
(879, 1708, 'Axis bank', 'Credit card ', '2020-01-24', 14000.00, '2020-09-02', 14000.00, 'Pallavaram branch ', '1', '0 years 7 months', ' Covid19 situation ', 1, '2020-11-03 07:15:12', 0, NULL, 0, NULL, 1),
(880, 1709, 'Vivek Pvt Ltd', 'Tele marketing associate', '2019-10-19', 15000.00, '2020-04-19', 15000.00, 'Mylapore', '1', '0 years 6 months', ' Took employees due to covid', 1, '2020-11-03 08:45:43', 0, NULL, 0, NULL, 1),
(881, 1714, 'Star Health insurance company', 'Senior Telecaller', '2017-11-06', 9700.00, '1970-01-01', 15000.00, 'Kodambakkam', '2', '2 years 11 months', ' Due to my personal problem I have left the job ', 1, '2020-11-04 12:01:22', 0, NULL, 0, NULL, 1),
(882, 1714, 'Religare Health insurance company', 'Relationship Manager', '2018-12-11', 13000.00, '2020-04-08', 13000.00, 'Amijikarai', '1', '1 years 3 months', 'Company have been closed', 1, '2020-11-04 12:05:12', 0, NULL, 0, NULL, 1),
(883, 1714, 'Vizza Insurance Broking Company', 'Team Leader', '2020-08-03', 15000.00, '1970-01-01', 15000.00, 'Kodambakkam', '2', '0 years 3 months', 'Due to Official reason', 1, '2020-11-04 12:07:29', 0, NULL, 0, NULL, 1),
(884, 1716, 'Tharunesh enterprises ', 'Relationship manager', '2013-05-01', 15000.00, '2015-04-30', 15000.00, ' Chennai ', '1', '1 years 11 months', ' Higher studies ', 1, '2020-11-04 12:29:53', 0, NULL, 0, NULL, 1),
(885, 1716, 'Katalix solutions private limited ', 'Client relationship manager ', '2019-08-01', 20000.00, '2020-09-30', 20000.00, 'Madanapalle, andhrapradesh', '1', '1 years 1 months', 'location change', 1, '2020-11-04 12:32:19', 0, NULL, 0, NULL, 1),
(886, 1713, 'Hdb financial services', 'Senior telecalling officer', '2018-12-21', 31.00, '1970-01-01', 10000.00, 'GP Road, Royapettah', '2', '1 years 10 months', ' Salary issue', 1, '2020-11-04 12:54:34', 0, NULL, 0, NULL, 1),
(887, 1675, 'Sara infratech', 'Manager', '2017-02-04', 31.00, '2020-07-10', 33000.00, 'Chennai', '1', '3 years 5 months', ' Due to Corona lay off.', 1, '2020-11-04 01:22:16', 0, NULL, 0, NULL, 1),
(888, 1675, 'Just dial ltd', 'Relationship manager', '2016-07-19', 7.00, '2016-12-14', 26000.00, 'Chennai', '1', '4 years 3 months', 'Personal issue', 1, '2020-11-04 01:24:29', 0, NULL, 0, NULL, 1),
(889, 1675, 'Redington proconnect', 'Back end office', '2016-02-04', 31.00, '2016-07-22', 15000.00, 'Chennai', '1', '0 years 5 months', 'Contract period', 1, '2020-11-04 01:27:03', 0, NULL, 0, NULL, 1),
(890, 1675, 'Nayaki dairy farm', 'Manager', '2012-02-10', 7.00, '2015-11-21', 15000.00, 'DINDIGUL', '1', '3 years 9 months', 'Mnc and salary hike', 1, '2020-11-04 01:30:24', 0, NULL, 0, NULL, 1),
(891, 1729, 'Sutherland Global services', 'Associate Cs phone', '2016-12-24', 9000.00, '2018-08-30', 12000.00, 'Velachery', '1', '1 years 8 months', ' To have career growth', 1, '2020-11-04 06:31:28', 0, NULL, 0, NULL, 1),
(892, 1731, 'Margadarsi chit fund', 'Office assistant', '2019-10-21', 13300.00, '1970-01-01', 13300.00, 'Chennai', '2', '1 years 0 months', ' I don\'t find Any growth in my career with margadarsi chit fund', 1, '2020-11-04 07:29:28', 0, NULL, 0, NULL, 1),
(893, 1731, 'Greentree immigration', 'Processing executive', '2019-05-01', 11000.00, '2019-09-30', 13300.00, 'Chennai', '1', '0 years 4 months', 'They changed my shift timings', 1, '2020-11-04 07:31:31', 0, NULL, 0, NULL, 1),
(894, 1728, 'The Royal Bank of Scotland', 'Associate', '2006-06-28', 10000.00, '2009-06-19', 15000.00, 'Chennai', '1', '2 years 11 months', ' Personal', 1, '2020-11-04 08:24:34', 0, NULL, 0, NULL, 1),
(895, 1728, 'Capgemini', 'Sr associate', '2010-06-07', 230000.00, '2012-06-28', 240000.00, 'Chennai', '1', '2 years 0 months', 'Personal', 1, '2020-11-04 08:25:49', 0, NULL, 0, NULL, 1),
(896, 1728, 'Tata consultancy services', 'Sr associate', '2015-02-18', 410000.00, '2018-03-16', 490000.00, 'Chennai', '1', '3 years 0 months', 'Personal', 1, '2020-11-04 08:27:08', 0, NULL, 0, NULL, 1),
(897, 1734, 'Teleperformance ', 'Senior customer service executive ', '2017-06-17', 180000.00, '2018-09-30', 190000.00, 'Chennai ', '1', '1 years 3 months', ' Process ramp down', 1, '2020-11-04 11:52:44', 0, NULL, 0, NULL, 1),
(898, 1734, 'Golden opportunities pvt Ltd ', 'HR recruiter ', '2018-03-03', 250000.00, '2019-07-31', 250000.00, 'Chen ', '1', '1 years 4 months', 'Due to covid', 1, '2020-11-04 11:54:17', 0, NULL, 0, NULL, 1),
(899, 1739, 'Axis bank limited', 'assistant manager sales', '2020-05-22', 26000.00, '1970-01-01', 300000.00, 'Chennai', '2', '0 years 5 months', ' Looking for insurance field', 1, '2020-11-05 11:12:59', 0, NULL, 0, NULL, 1),
(900, 1742, 'PowerIT service pvt ltd ', 'HR Recruitment consultant ', '2020-01-02', 14175.00, '2020-10-30', 14175.00, 'Kodamabakkam', '1', '0 years 9 months', ' Am not ok with Timing in previous compAny', 1, '2020-11-05 12:26:43', 0, NULL, 0, NULL, 1),
(901, 1744, 'Goms integrated facility management', 'Technician', '2019-09-05', 10500.00, '2020-03-07', 12000.00, 'Perambur, Chennai', '1', '0 years 6 months', ' Corona issue', 1, '2020-11-05 12:42:08', 0, NULL, 0, NULL, 1),
(902, 1749, 'Aarupadai institute of research and foundation', 'Hr executive', '2019-02-15', 15000.00, '2019-09-15', 15000.00, 'Tiruporur', '1', '0 years 7 months', ' Due to mom illness', 1, '2020-11-05 02:40:28', 0, NULL, 0, NULL, 1),
(903, 1751, 'fazo software ', 'recruiter', '2019-08-01', 8000.00, '2020-03-20', 12000.00, 'puzhuthivakkam', '1', '0 years 7 months', ' Company was closed due to corona', 1, '2020-11-05 03:42:04', 0, NULL, 0, NULL, 1),
(904, 1752, 'Covenant Consultants ', 'Senior executive ', '2015-05-05', 10000.00, '2017-03-28', 16700.00, 'Chennai', '1', '1 years 10 months', ' Marriage ', 1, '2020-11-05 04:51:08', 0, NULL, 0, NULL, 1),
(905, 1755, 'kriti digitech ', 'territory  manager', '2018-07-01', 23000.00, '2019-03-01', 23000.00, 'Chennai', '1', '0 years 7 months', ' Company has been Shout down ', 1, '2020-11-06 12:14:08', 0, NULL, 0, NULL, 1),
(906, 1755, 'synergy ace solutions', 'sales officer', '2019-03-01', 22000.00, '2020-10-15', 22000.00, 'Chennai', '1', '1 years 7 months', 'Company has decided to close off Role employees.', 1, '2020-11-06 12:15:53', 0, NULL, 0, NULL, 1),
(907, 1756, 'Medilife oh clinics India Pvt ltd', 'HR assistant manager', '2018-11-02', 16000.00, '2020-02-29', 20000.00, 'Chennai', '1', '1 years 3 months', ' ', 1, '2020-11-06 12:48:02', 0, NULL, 0, NULL, 1),
(908, 1757, 'placenet consultant ', 'SENIOR HR RECRUITER', '2019-09-04', 180000.00, '2020-07-17', 2160000.00, 'chennai', '1', '0 years 10 months', ' covid lost my job', 1, '2020-11-06 09:08:23', 0, NULL, 0, NULL, 1),
(909, 1761, 'SISCO', 'Assistant Manager HR', '2015-03-02', 22000.00, '1970-01-01', 45000.00, 'Chetpet', '2', '5 years 8 months', 'Corporate Office was shifted to Delhi', 1, '2020-11-06 11:00:36', 1, '2020-11-06 11:03:01', 0, NULL, 0),
(910, 1761, 'SISCO', 'Assistant Manager HR', '2015-03-02', 22000.00, '1970-01-01', 45000.00, 'Chetpet', '2', '5 years 8 months', ' Corporate office was shifted to Delhi', 1, '2020-11-06 11:02:52', 0, NULL, 0, NULL, 1),
(911, 1762, 'kun automotive private limited', 'sr.  hr executive', '2014-12-06', 12000.00, '2019-03-19', 22000.00, 'ambattur', '1', '4 years 3 months', ' ', 1, '2020-11-06 11:16:46', 0, NULL, 0, NULL, 1),
(912, 1763, 'PRICOL GOURMET', 'HR-Executive', '2019-07-04', 23200.00, '2020-09-28', 23200.00, 'Teynampet', '1', '1 years 2 months', ' Due to pandemic I was In laid off.', 1, '2020-11-06 11:39:42', 0, NULL, 0, NULL, 1),
(913, 1764, 'Aagana global solutions private limited', 'Senior process associate', '2015-01-05', 8.00, '2017-02-24', 12.00, 'Porur', '1', '2 years 1 months', ' Process closed', 1, '2020-11-06 11:43:17', 0, NULL, 0, NULL, 1),
(914, 1764, 'SLS gems stones jewellery and handicrafts', 'Domestic chat process', '2017-03-13', 12.00, '2020-07-20', 14.00, 'Pondicherry', '1', '3 years 4 months', 'Process closed due to Corona issue and low income of the office', 1, '2020-11-06 11:45:20', 0, NULL, 0, NULL, 1),
(915, 1758, 'MIOT International ', 'Admin coordinator ', '2018-03-28', 17000.00, '1970-01-01', 19700.00, 'Chennai ', '2', '2 years 7 months', ' For growth and better Opportunity to explore my skill and for learning ', 1, '2020-11-06 11:58:03', 0, NULL, 0, NULL, 1),
(916, 1768, 'CADD CENTRE', 'HR Executive ', '2017-06-28', 19000.00, '2020-05-11', 23000.00, 'Chennai', '1', '2 years 10 months', ' Company Shutdown', 1, '2020-11-06 12:15:11', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(917, 1758, 'Pradot Technologies ', 'Sr.  Reimbursement specialist ', '2016-05-22', 26000.00, '2017-10-30', 3200.00, 'Chennai ', '1', '4 years 5 months', ' ', 1, '2020-11-06 12:29:59', 0, NULL, 0, NULL, 1),
(918, 1758, 'Medusind solutions ', 'Sr.  AR Caller', '2015-11-01', 22000.00, '2016-05-31', 22000.00, 'Chennai ', '1', '0 years 6 months', 'Process shutdown ', 1, '2020-11-06 12:32:38', 0, NULL, 0, NULL, 1),
(919, 1758, 'Exotic metal', 'Procurement assistant ', '2013-09-04', 17000.00, '2015-08-31', 20000.00, 'Chennai ', '1', '1 years 11 months', ' For growth ', 1, '2020-11-06 12:35:47', 0, NULL, 0, NULL, 1),
(920, 1772, 'benz park', 'hr executive', '2019-03-25', 22000.00, '1970-01-01', 25000.00, 'chennai', '2', '1 years 7 months', ' not yet relieved Because of Quaratine and Renovation Work', 1, '2020-11-06 12:49:02', 0, NULL, 0, NULL, 1),
(921, 1770, 'Mswipe technology Pvt ltd', 'Relationship executive', '2019-05-23', 14000.00, '2020-11-09', 17000.00, 'Chennai', '1', '1 years 5 months', 'Company reduce manpower and Salary problem', 1, '2020-11-06 12:53:45', 0, NULL, 0, NULL, 1),
(922, 1772, 'getrobiz holding limted', 'senior executive', '2018-05-01', 22000.00, '2019-02-28', 22000.00, 'guindy', '1', '0 years 9 months', ' payment delay and also looked for male hr', 1, '2020-11-06 12:55:39', 0, NULL, 0, NULL, 1),
(923, 1772, 'pride hotel', 'hr executive', '2016-08-01', 18000.00, '2018-03-31', 20000.00, 'chennai', '1', '1 years 7 months', 'personal problem', 1, '2020-11-06 12:57:39', 0, NULL, 0, NULL, 1),
(924, 1778, 'NayaJobs Consulting', 'HR Specialist', '2018-10-01', 25000.00, '1970-01-01', 25000.00, 'Chennai', '2', '2 years 1 months', ' Unable to pay salary due to Covid19', 1, '2020-11-06 01:23:22', 0, NULL, 0, NULL, 1),
(925, 1786, 'dr v balaji seshiah hospital', 'hr manager', '2020-03-02', 35000.00, '2020-10-31', 35000.00, 'chennai', '1', '0 years 7 months', ' Lay off', 1, '2020-11-06 03:31:00', 0, NULL, 0, NULL, 1),
(926, 1786, 'kauvery hospital', 'admin coordinator', '2016-09-08', 21000.00, '2019-10-31', 30000.00, 'chennai', '1', '3 years 1 months', 'personal', 1, '2020-11-06 03:32:29', 0, NULL, 0, NULL, 1),
(927, 1786, 'apollo hospital', 'personal assistant', '2010-05-10', 18000.00, '2016-06-30', 25000.00, 'chennai', '1', '6 years 1 months', 'Personal', 1, '2020-11-06 03:34:54', 0, NULL, 0, NULL, 1),
(928, 1788, 'Sundaram Finance', 'Mutual fund-Customer Support', '2019-07-15', 12000.00, '2019-11-30', 12000.00, 'Royapettah', '1', '0 years 4 months', ' Personal Issues', 1, '2020-11-06 04:03:19', 0, NULL, 0, NULL, 1),
(929, 1792, 'Cortex Consulting', 'Technical Recruiter', '2019-06-10', 18000.00, '2020-08-08', 18000.00, 'Ashok Nagar, Chennai', '1', '1 years 1 months', ' LayOff', 1, '2020-11-06 07:31:29', 0, NULL, 0, NULL, 1),
(930, 1795, 'Ergon physiotherapy hospital ', 'Admin', '2013-05-05', 12000.00, '2017-07-07', 15000.00, 'Thiruvanmiyur ', '1', '4 years 2 months', ' They want some more degree, already I finished 2 degree. I thought is this enough ', 1, '2020-11-07 09:17:35', 0, NULL, 0, NULL, 1),
(931, 1795, 'Assetz Premier wealth mutual fund Pvt lmt', 'Customer support', '2017-08-08', 19500.00, '2018-02-22', 21000.00, 'Besant nagar', '1', '0 years 6 months', 'Company going bad so I relieved ', 1, '2020-11-07 09:20:01', 0, NULL, 0, NULL, 1),
(932, 1795, 'Policy bazzar.com', 'Customer support ', '2018-03-01', 24000.00, '2018-06-30', 26700.00, 'Gurgaon', '1', '0 years 4 months', 'On that place food is not good. So more health issue Problems.', 1, '2020-11-07 09:21:48', 0, NULL, 0, NULL, 1),
(933, 1795, 'Venus home appliances Pvt lmt', 'Financial analyst ', '2018-08-01', 23000.00, '2019-05-01', 23000.00, 'Perungudi ', '1', '0 years 8 months', 'They said do another degree', 1, '2020-11-07 09:23:49', 0, NULL, 0, NULL, 1),
(934, 1795, '4M business Consultancy ', 'Process Project executive ', '2018-10-01', 26000.00, '2020-07-23', 26500.00, 'Thiruvanmiyur ', '1', '1 years 9 months', 'Company was closed ', 1, '2020-11-07 09:25:42', 0, NULL, 0, NULL, 1),
(935, 1783, 'Global IT Search', 'HR Executive', '2020-02-12', 10000.00, '1970-01-01', 10000.00, 'Chennai', '2', '0 years 8 months', ' Better Package', 1, '2020-11-07 11:38:33', 0, NULL, 0, NULL, 1),
(936, 1767, 'aequor information technologies', 'team lead', '2019-12-18', 30000.00, '2020-08-30', 30000.00, 'nungambakkam', '1', '0 years 8 months', ' laid off due to covid', 1, '2020-11-07 12:32:36', 0, NULL, 0, NULL, 1),
(937, 1759, 'css corp', 'bphr', '2019-06-06', 350000.00, '1970-01-01', 2020.00, 'ambat ', '2', '1 years 5 months', ' Salary hike', 1, '2020-11-07 01:56:07', 0, NULL, 0, NULL, 1),
(938, 1781, 'Sampoorna Computer people', 'Recruitment Executive', '2019-07-17', 10000.00, '1970-01-01', 12500.00, 'Nungambakkam', '2', '1 years 3 months', 'carrier Growth and salary constrain', 1, '2020-11-07 02:20:12', 0, NULL, 0, NULL, 1),
(939, 1811, 'Vizzaa broking insurance', 'Teleycalling', '2020-08-21', 9000.00, '2020-11-09', 10000.00, 'Kodambakkam', '1', '0 years 2 months', ' They are couldn\'t give my insensitive.but I achieved my targets.then salary not satisfied.', 1, '2020-11-09 10:40:12', 0, NULL, 0, NULL, 1),
(940, 1812, 'Teleperformance', 'Telecaller', '2019-03-22', 10000.00, '2020-03-22', 10000.00, 'Ambattur', '1', '1 years 0 months', ' ', 1, '2020-11-09 11:28:46', 0, NULL, 0, NULL, 1),
(941, 1816, 'Netambit', 'Hr recruiter', '2020-02-07', 20000.00, '2020-10-09', 20000.00, 'Chennai', '1', '0 years 8 months', ' Lockdown', 1, '2020-11-09 12:20:35', 0, NULL, 0, NULL, 1),
(942, 1816, 'Akas Medical', 'HR recruiter', '2016-06-18', 15000.00, '2020-03-09', 20000.00, 'Chennai', '1', '3 years 8 months', ' Corona lockdown', 1, '2020-11-09 12:51:18', 0, NULL, 0, NULL, 1),
(943, 1818, 'Juzlyktat', 'Software developer', '2018-07-02', 13000.00, '2020-08-31', 20000.00, 'Triplicane', '1', '2 years 1 months', ' Covid19 situation', 1, '2020-11-09 01:08:27', 1, '2020-11-09 01:09:49', 0, NULL, 1),
(944, 1819, 'HDB financial services', 'Executive validator', '2016-03-15', 8000.00, '2019-08-31', 10000.00, 'Chennai', '1', '3 years 5 months', 'Incentive hold because of Internal problem', 1, '2020-11-09 01:42:01', 0, NULL, 0, NULL, 1),
(945, 1819, 'Quess corp limited', 'Relationship officer', '2019-09-01', 10500.00, '2020-07-06', 10500.00, 'Chennai', '1', '0 years 10 months', 'Due to covid 19 lock down i might struck in my native', 1, '2020-11-09 01:43:49', 0, NULL, 0, NULL, 1),
(946, 1820, 'Pushkara public school', 'Physical trainer', '2018-06-02', 17000.00, '2020-03-02', 20000.00, 'thiruverkadu', '1', '1 years 9 months', ' Personal', 1, '2020-11-09 01:44:10', 0, NULL, 0, NULL, 1),
(947, 1806, 'easton media pvt ltd', 'it administrator', '2018-11-09', 18000.00, '2020-01-20', 18000.00, 'chennai', '1', '1 years 2 months', ' ', 1, '2020-11-09 03:31:42', 0, NULL, 0, NULL, 1),
(948, 1806, 'sunmix network pvt ltd', 'desktop support', '2017-01-02', 16500.00, '2018-02-07', 16500.00, 'chennai', '1', '1 years 1 months', 'company handover another person', 1, '2020-11-09 03:33:41', 0, NULL, 0, NULL, 1),
(949, 1806, 'chennai team lines', 'system admin', '2014-03-03', 9000.00, '2015-12-10', 13000.00, 'chennai', '1', '1 years 9 months', 'nil', 1, '2020-11-09 03:35:10', 0, NULL, 0, NULL, 1),
(950, 1825, 'Exide life insurance Pvt ltd', 'Relationship manager', '2017-12-07', 325000.00, '2019-07-15', 400000.00, 'Chennai', '1', '1 years 7 months', ' Career growth', 1, '2020-11-10 10:39:57', 0, NULL, 0, NULL, 1),
(951, 1825, 'Exide life insurance Pvt Ltd', 'Relationship manager', '2017-12-07', 325000.00, '2019-07-15', 400000.00, 'Chennai', '1', '1 years 7 months', 'Career growth ', 1, '2020-11-10 10:43:56', 1, '2020-11-10 10:44:06', 0, NULL, 0),
(952, 1829, 'Maappillai Studio', 'Web Developer', '2018-08-02', 8000.00, '2019-12-31', 16000.00, 'Chennai', '1', '1 years 4 months', ' ', 1, '2020-11-10 11:48:38', 0, NULL, 0, NULL, 1),
(953, 1829, 'Wefourtech', 'Web Developer', '2020-01-05', 16000.00, '2020-07-20', 20000.00, 'Chennai', '1', '0 years 6 months', 'Covid 19 problem, not come new Projects, so hold the company employees', 1, '2020-11-10 11:52:50', 0, NULL, 0, NULL, 1),
(954, 1829, 'Seekiram intellectual service', 'Web Developer', '2020-08-17', 25000.00, '2020-10-30', 25000.00, 'Chennai', '1', '0 years 2 months', 'Salary not properly release', 1, '2020-11-10 11:55:29', 0, NULL, 0, NULL, 1),
(955, 1830, 'IDFC first Bharat limited', 'GRO', '2019-07-01', 13500.00, '2020-06-30', 15000.00, 'Chidambaram', '1', '0 years 11 months', ' Family problem', 1, '2020-11-10 11:55:42', 0, NULL, 0, NULL, 1),
(956, 1832, 'Melrose padmini export', 'Computer operator', '2018-06-10', 14000.00, '2020-02-25', 15000.00, 'Chennai', '1', '1 years 8 months', ' Due to covid problem business was down', 1, '2020-11-10 12:07:32', 0, NULL, 0, NULL, 1),
(957, 1831, 'Vasudevan', '16', '2020-11-04', 1500.00, '2026-11-10', 15000.00, 'T.nagar', '1', '6 years 0 months', ' Out of state', 1, '2020-11-10 12:09:34', 0, NULL, 0, NULL, 1),
(958, 1835, 'Balaji Medical Center ', 'Data entry operator ', '2018-11-17', 15000.00, '2019-11-07', 15000.00, 'T Nagar ', '1', '1 years 11 months', ' ', 1, '2020-11-10 03:03:30', 0, NULL, 0, NULL, 1),
(959, 1835, 'Balaji Medical Center ', 'Data entry operator ', '2018-11-17', 15000.00, '2019-11-07', 15000.00, 'T Nagar ', '1', '0 years 11 months', 'Health issues ', 1, '2020-11-10 03:06:50', 0, NULL, 0, NULL, 1),
(960, 1835, 'Balaji Medical Center ', 'Data entry operator ', '2018-11-17', 15000.00, '2019-12-18', 15000.00, 'T Nagar ', '1', '1 years 1 months', 'Health issues ', 1, '2020-11-10 03:08:22', 0, NULL, 0, NULL, 1),
(961, 1837, 'Karya technologies ', 'Sharepoint developer ', '2019-05-06', 10000.00, '1970-01-01', 13000.00, 'Guindy ', '2', '1 years 6 months', ' For improving skills in both front as well as back end. And working in new technology. ', 1, '2020-11-10 04:06:00', 0, NULL, 0, NULL, 1),
(962, 1838, 'vasanth and co', 'promoter', '2015-08-08', 15000.00, '2017-10-09', 16000.00, 't nagar', '1', '2 years 2 months', ' ', 1, '2020-11-10 04:24:26', 0, NULL, 0, NULL, 1),
(963, 1838, 'cepar business soutions', 'sales executive', '2018-05-18', 13500.00, '2019-03-03', 16500.00, 'aminjakarai', '1', '0 years 9 months', 'Accident', 1, '2020-11-10 04:25:53', 0, NULL, 0, NULL, 1),
(964, 1843, 'India tech services', 'Junior desktop engineer', '2014-08-05', 10000.00, '2016-07-20', 22000.00, 'Chennai', '1', '1 years 11 months', 'To Improve my knowledge ', 1, '2020-11-11 10:41:55', 0, NULL, 0, NULL, 1),
(965, 1844, 'Mohan Mutha Exports pvt ltd.', 'Web developer', '2019-05-12', 18000.00, '1970-01-01', 18000.00, 'Puraisauwakkam', '2', '1 years 5 months', ' I want to improve my self and learn more. ', 1, '2020-11-11 11:00:03', 0, NULL, 0, NULL, 1),
(966, 1845, 'infiniti software solution private limited', 'senior software developer', '2017-09-04', 6000.00, '1970-01-01', 34000.00, 'greams road - chennai', '2', '3 years 2 months', 'I learn new technologies, framework, work environment', 1, '2020-11-11 11:13:49', 0, NULL, 0, NULL, 1),
(967, 1839, 'Thulir Software technologies', 'Php web developer', '2019-12-02', 8000.00, '1970-01-01', 12000.00, 'Alandur', '2', '0 years 11 months', ' Because of Salary related issues', 1, '2020-11-11 11:27:50', 0, NULL, 0, NULL, 1),
(968, 1851, 'webmutant tech llp ', 'customer support executive', '2017-01-02', 15000.00, '2020-08-31', 18000.00, 'mount road', '1', '3 years 7 months', ' Layoff', 1, '2020-11-11 12:20:47', 0, NULL, 0, NULL, 1),
(969, 1853, 'Zealous services ', 'Customer Support Executive ', '2018-07-10', 10500.00, '2020-09-10', 14000.00, 'Nungambakkam ', '1', '2 years 2 months', 'Reduce manpower due to corona ', 1, '2020-11-11 12:43:52', 0, NULL, 0, NULL, 1),
(970, 1859, 'Highway 905 Technologies private limited', 'Enterprise application developer', '2019-05-06', 325000.00, '2020-10-09', 325000.00, 'Perungudi, Chennai', '1', '1 years 5 months', 'No apraisal\nNo opportunity to know new technologies', 1, '2020-11-11 06:26:02', 0, NULL, 0, NULL, 1),
(971, 1859, 'Kadamba technologies', 'Software engineer', '2020-10-27', 350000.00, '1970-01-01', 350000.00, 'Mylapore, chennai', '2', '0 years 0 months', 'Given Salary not satisfied', 1, '2020-11-11 06:28:27', 0, NULL, 0, NULL, 1),
(972, 1862, 'Teamlease service pvt LTD', 'Sales executive', '2017-09-13', 18000.00, '2020-02-20', 18000.00, 'Chennai', '1', '2 years 5 months', ' Company closed', 1, '2020-11-12 03:30:40', 0, NULL, 0, NULL, 1),
(973, 1858, 'Teamlease service pvt Ltd ', 'Sales executive', '2019-01-10', 18000.00, '2020-02-20', 18000.00, 'Chennai', '1', '1 years 1 months', ' Company winded up', 1, '2020-11-12 03:32:42', 0, NULL, 0, NULL, 1),
(974, 1873, 'Kiml', 'Quality control', '2019-03-23', 16000.00, '2019-09-11', 16000.00, 'chennai', '1', '0 years 5 months', 'Personal reason', 1, '2020-11-12 06:18:45', 0, NULL, 0, NULL, 1),
(975, 1159, 'Lotus', 'Accounts  assistant ', '2019-04-01', 12000.00, '2020-12-03', 12000.00, 'Parrys', '1', '1 years 7 months', ' Salary is very low...so i leave That office', 1, '2020-11-12 08:20:46', 0, NULL, 0, NULL, 1),
(976, 1856, 'ceder', 'Assistant tl', '2019-05-06', 10000.00, '2020-04-23', 16500.00, 'shanoy nagar', '1', '0 years 11 months', ' covid', 1, '2020-11-13 11:14:57', 0, NULL, 0, NULL, 1),
(977, 1869, 'Casagrand Builders pvt Ltd', 'Senior Executive', '2019-01-14', 21350.00, '2020-07-17', 21350.00, 'Tiruvanmiyur', '1', '1 years 9 months', ' Father\'s health concern', 1, '2020-11-13 11:16:30', 0, NULL, 0, NULL, 1),
(978, 1869, 'Casagrand Builders Pvt Ltd', 'Senior executive', '2019-01-14', 21350.00, '2020-07-17', 21350.00, 'Tiruvanmiyur', '1', '1 years 6 months', ' Father health concern', 1, '2020-11-13 11:22:04', 0, NULL, 0, NULL, 1),
(979, 1861, 'Rj impex international', 'Hr ( recruiter)', '2019-05-23', 12000.00, '2020-12-02', 12000.00, 'Teynampet', '1', '1 years 6 months', 'Health issues ', 1, '2020-11-13 11:24:31', 0, NULL, 0, NULL, 1),
(980, 1877, 'Angel broking ', 'Digital acquisition executive', '2019-11-12', 20000.00, '1970-01-01', 20000.00, 'Greams road', '2', '1 years 0 months', 'Looking for Carrier growth and can\'t work from home due to covid', 1, '2020-11-13 11:25:44', 0, NULL, 0, NULL, 1),
(981, 1875, 'hcl', 'Specialist', '2018-04-01', 35000.00, '1970-01-01', 35000.00, 'chennai', '2', '2 years 7 months', ' ', 1, '2020-11-13 11:26:49', 0, NULL, 0, NULL, 1),
(982, 1877, 'Parveen travels', 'Customer support', '2018-08-15', 15000.00, '2019-09-30', 15000.00, 'Purswalkam', '1', '1 years 1 months', 'Night shift and health issue', 1, '2020-11-13 11:28:23', 0, NULL, 0, NULL, 1),
(983, 1877, 'Gulf oasis insurance', 'Tele sales executive', '2016-08-17', 12500.00, '2018-07-31', 12500.00, 'Besant nagar', '1', '1 years 11 months', 'Shifted office to uae', 1, '2020-11-13 11:30:45', 0, NULL, 0, NULL, 1),
(984, 1880, 'Developer', 'C# and Angular ', '2019-06-07', 10.00, '1970-01-01', 19.00, 'Chennai', '2', '1 years 5 months', ' ', 1, '2020-11-13 12:12:34', 0, NULL, 0, NULL, 1),
(985, 1882, 'Sundaram finance ltd', 'Sale executive ', '2018-04-01', 11530.00, '1970-01-01', 13500.00, 'Parrys', '2', '2 years 7 months', ' Corona ', 1, '2020-11-13 12:36:15', 0, NULL, 0, NULL, 1),
(986, 1885, 'Castrol Distribution office ', 'Distributior Sales Executive ', '2019-08-09', 12500.00, '2020-06-13', 15000.00, 'Chennai', '1', '0 years 10 months', ' Due to corona ', 1, '2020-11-13 01:47:06', 0, NULL, 0, NULL, 1),
(987, 1863, 'Victory internationals', 'Sales executive', '2019-08-08', 10.00, '2020-08-13', 17.00, 'Chennai', '1', '1 years 0 months', 'Due to corona the entire airline field is dropped down so there is no business for the company.', 1, '2020-11-13 02:09:45', 0, NULL, 0, NULL, 1),
(988, 1888, 'Nokia', 'Line leader', '2010-09-16', 15000.00, '2014-04-14', 15000.00, 'Sriperumbuthur', '1', '3 years 6 months', ' Vrs\n', 1, '2020-11-13 05:15:42', 0, NULL, 0, NULL, 1),
(989, 1890, 'Zamorra group of company ', 'Admin coordinator ', '2018-11-14', 10000.00, '2020-11-04', 15000.00, 'Kolathur', '1', '1 years 11 months', ' Low salary ', 1, '2020-11-14 12:03:17', 0, NULL, 0, NULL, 1),
(990, 1892, 'A&A DUKAAN FINANCIAL SERVICES PVT LTD', 'SENIOR CRO', '2018-09-10', 18000.00, '2019-12-09', 2.00, 'CHENNAI', '1', '1 years 2 months', ' I\'m interested in software field that\'s why resign the job .', 1, '2020-11-15 07:17:43', 0, NULL, 0, NULL, 1),
(991, 1889, 'flex technological pvt ltd', 'junior engineer', '2019-11-18', 300000.00, '2020-10-01', 300000.00, 'Chennai.', '1', '0 years 10 months', ' Looking for suitable / better opportunities', 1, '2020-11-15 11:31:53', 0, NULL, 0, NULL, 1),
(992, 1894, 'Walinns Innovation ', 'php developer ', '2019-02-19', 223000.00, '1970-01-01', 300000.00, 'Coimbatore ', '2', '1 years 8 months', ' No Reason', 1, '2020-11-15 08:48:27', 0, NULL, 0, NULL, 1),
(993, 1894, 'Ability software ', 'Php developer ', '2018-02-21', 200000.00, '2019-02-19', 300000.00, 'Salem', '1', '0 years 11 months', 'For gain new technology ', 1, '2020-11-15 08:50:40', 0, NULL, 0, NULL, 1),
(994, 1895, 'Indomer Coastal Hydraylics Pvt.Ltd.', 'System Administrator', '2016-04-14', 12000.00, '1970-01-01', 32500.00, 'Chennai', '2', '4 years 7 months', 'Reason for  Develop my Career and my Knowledge.', 1, '2020-11-15 10:07:24', 0, NULL, 0, NULL, 1),
(995, 1876, '6i infotech', 'Web application developer', '2019-08-20', 8000.00, '1970-01-01', 8000.00, 'Guindy', '2', '0 years 0 months', ' Not relieved', 1, '2020-11-16 10:31:08', 0, NULL, 0, NULL, 1),
(996, 1898, 'Ifb', 'Sales promoter', '2019-03-04', 25000.00, '2020-03-31', 25000.00, 'North Chennai', '1', '1 years 0 months', ' Personal issues', 1, '2020-11-16 12:10:56', 0, NULL, 0, NULL, 1),
(997, 1855, 'Hapag lloyd', 'Sri.coordinator', '2015-10-30', 11500.00, '2019-10-03', 17000.00, 'Pergundi ', '1', '3 years 11 months', ' Personal reason', 1, '2020-11-16 12:11:05', 0, NULL, 0, NULL, 1),
(998, 1897, 'Simplesolve technologies', 'Software developer', '2020-02-10', 12300.00, '2020-09-15', 12300.00, 'Ambattur', '1', '0 years 7 months', 'corana issue  , so company said releave the Company. ', 1, '2020-11-16 12:13:58', 0, NULL, 0, NULL, 1),
(999, 1905, 'Eventus software pvt ltd', 'Software developer', '2019-09-16', 400000.00, '1970-01-01', 400000.00, 'Chennai', '2', '1 years 2 months', ' Salary issues', 1, '2020-11-16 01:37:39', 0, NULL, 0, NULL, 1),
(1000, 1905, 'Iopex technologies', 'Software engineee', '2017-08-09', 300000.00, '2019-08-14', 350000.00, 'Chennai', '1', '2 years 0 months', 'Career opportunities', 1, '2020-11-16 01:40:05', 0, NULL, 0, NULL, 1),
(1001, 1904, ' ajith', 'bre', '2019-05-09', 18000.00, '2020-04-16', 18000.00, 'kilpauk', '1', '0 years 11 months', ' ', 1, '2020-11-16 02:41:30', 0, NULL, 0, NULL, 1),
(1002, 1906, 'Jana small finance bank', 'Collection executive', '2019-07-16', 10000.00, '1970-01-01', 9500.00, 'Porir', '2', '1 years 4 months', ' Not comparable to the company', 1, '2020-11-16 03:16:38', 0, NULL, 0, NULL, 1),
(1003, 1913, 'Aditya birla sun Life insurance', 'Credit relationship manager ', '2020-01-06', 25000.00, '1970-01-01', 25000.00, 'Adyar', '2', '0 years 10 months', ' To find a better opportunity ', 1, '2020-11-16 07:26:06', 0, NULL, 0, NULL, 1),
(1004, 1914, 'lakshmi comminucations', 'full stack developer', '2019-11-16', 10000.00, '1970-01-01', 15000.00, 'coimbatore', '2', '1 years 0 months', 'didn\'t got expected salary', 1, '2020-11-16 08:08:04', 0, NULL, 0, NULL, 1),
(1005, 1918, 'ninestars information technology', 'software engineer', '2016-12-26', 10800.00, '1970-01-01', 41600.00, 'bangalore', '2', '3 years 10 months', 'Looking for the new Opportunities\' and project knowledge with technologies.', 1, '2020-11-17 10:57:41', 0, NULL, 0, NULL, 1),
(1006, 1912, 'paytm', 'fse', '2018-03-15', 16000.00, '2019-03-20', 16500.00, 'chennai', '1', '1 years 0 months', ' personal problems', 1, '2020-11-17 11:46:30', 0, NULL, 0, NULL, 1),
(1007, 1912, 'relience', 'so', '2019-04-04', 18000.00, '2019-12-27', 18000.00, 'chennai', '1', '0 years 8 months', 'family problems', 1, '2020-11-17 11:51:12', 0, NULL, 0, NULL, 1),
(1008, 1912, 'udaan', 'bde', '2020-01-06', 23000.00, '2020-03-31', 23000.00, 'chennai', '1', '0 years 2 months', 'covid19 ', 1, '2020-11-17 11:55:15', 0, NULL, 0, NULL, 1),
(1009, 1923, 'Omega Healthcare', 'AR caller', '2016-07-01', 13000.00, '2017-07-01', 17000.00, 'chennai', '1', '1 years 0 months', ' Health issues ', 1, '2020-11-17 12:31:18', 0, NULL, 0, NULL, 1),
(1010, 1923, 'Teleperformance', 'Mortgage Underwriter', '2019-08-14', 16000.00, '2020-02-14', 17000.00, 'chennai', '1', '0 years 6 months', 'No work pressure & personal issues', 1, '2020-11-17 12:32:55', 0, NULL, 0, NULL, 1),
(1011, 1922, 'bytestreet software solutions', 'php developer', '2016-10-13', 180000.00, '2020-10-13', 240000.00, 'coimbatore', '1', '4 years 0 months', ' ', 1, '2020-11-17 12:33:16', 0, NULL, 0, NULL, 1),
(1012, 1925, 'wibits web solution private limited', 'php developer', '2016-02-02', 15000.00, '2016-10-01', 20000.00, 'nagercoil', '1', '0 years 7 months', ' ', 1, '2020-11-17 01:07:47', 1, '2020-11-19 12:17:46', 0, NULL, 1),
(1013, 1925, 'wibits web solution private limited nagercoil', 'php developer', '2016-02-02', 15000.00, '2017-02-08', 20000.00, 'nagercoil', '1', '1 years 0 months', 'baby boom', 1, '2020-11-17 01:14:46', 0, NULL, 0, NULL, 1),
(1014, 1926, 'advan banking collection', 'excutive', '2020-05-07', 25000.00, '2020-11-10', 25000.00, 't.nagar', '1', '0 years 6 months', ' family problems', 1, '2020-11-17 01:35:26', 0, NULL, 0, NULL, 1),
(1015, 1929, 'Reliance Nippon Life Insurance', 'Sr.Advisor recruitment and Development Manager', '2020-03-09', 25000.00, '2020-10-08', 25000.00, 'Chennai', '1', '0 years 6 months', ' ', 1, '2020-11-17 02:43:29', 0, NULL, 0, NULL, 1),
(1016, 1932, 'Loginfotech', 'PHP developer', '2016-07-01', 5000.00, '1970-01-01', 20000.00, 'Krishnagiri', '2', '4 years 4 months', ' I need career growth and learn New technology', 1, '2020-11-17 03:05:23', 0, NULL, 0, NULL, 1),
(1017, 1933, 'Virran Tech solutions ', 'Php developer ', '2019-01-01', 15000.00, '2020-10-30', 21000.00, 'Chennai ', '1', '1 years 9 months', ' Lack of projects ', 1, '2020-11-17 03:38:44', 0, NULL, 0, NULL, 1),
(1018, 1864, 'malika-e-jamal enterprises', 'area sales manager', '2017-12-25', 18000.00, '2020-04-10', 18000.00, 'kadapa', '1', '2 years 3 months', ' I want improve my skils ', 1, '2020-11-17 05:49:47', 0, NULL, 0, NULL, 1),
(1019, 1936, 'eureka forbes ltd', 'group leader', '1989-10-16', 700.00, '1996-02-07', 2000.00, 'kerala', '1', '6 years 3 months', ' better Prospect', 1, '2020-11-17 07:08:53', 0, NULL, 0, NULL, 1),
(1020, 1911, 'icici bank', 'deputy manager', '2019-07-01', 4.12, '2019-12-18', 4.12, 'yeshwanthpur', '1', '1 years 4 months', 'due to work pressure', 1, '2020-11-18 11:26:29', 0, NULL, 0, NULL, 1),
(1021, 1911, 'asian paints', 'colour pro associate', '2020-01-13', 4.12, '1970-01-01', 4.12, 'north east region', '2', '0 years 10 months', 'lay off due to pandemic', 1, '2020-11-18 11:28:56', 0, NULL, 0, NULL, 1),
(1022, 1944, 'fullerton india credit company', 'cental co-ordinator', '2007-08-01', 10000.00, '2011-06-30', 15000.00, 'chennai', '1', '3 years 10 months', ' got the better opportunity', 1, '2020-11-18 11:32:12', 0, NULL, 0, NULL, 1),
(1023, 1944, 'jones lang lasalle', 'exceutive cum co-ordinator', '2011-07-01', 17000.00, '2012-01-30', 17000.00, 'chennai', '1', '0 years 6 months', 'due to contract period got over', 1, '2020-11-18 11:34:29', 0, NULL, 0, NULL, 1),
(1024, 1944, 'renault nissan automotive india pvt ltd.,', 'executive-finance', '2013-01-22', 18000.00, '2018-08-07', 30000.00, 'oragadam', '1', '5 years 6 months', 'due to personal reason', 1, '2020-11-18 11:37:13', 0, NULL, 0, NULL, 1),
(1025, 1915, 'racious express', 'software', '2018-03-01', 365000.00, '2019-04-30', 365000.00, 'chennai', '1', '1 years 2 months', ' na', 1, '2020-11-18 11:56:59', 0, NULL, 0, NULL, 1),
(1026, 1946, 'webindia', 'web Developer', '2020-02-03', 25000.00, '2020-05-10', 25000.00, 'arumbakkam', '1', '0 years 3 months', ' covid-19 issues no project that company, so manager ask to me relive the company ', 1, '2020-11-18 12:52:15', 0, NULL, 0, NULL, 1),
(1027, 1946, 'iberis', 'web Developer', '2019-06-01', 20000.00, '2020-01-09', 20000.00, 'chennai/Coimbatore', '1', '0 years 7 months', 'location change Coimbatore to chennai', 1, '2020-11-18 12:54:39', 0, NULL, 0, NULL, 1),
(1028, 1946, 'clickplus', 'php Developer', '2018-08-01', 10000.00, '2019-05-31', 12000.00, 'chennai', '1', '0 years 9 months', 'only working wordpress project only', 1, '2020-11-18 12:56:50', 0, NULL, 0, NULL, 1),
(1029, 1946, 'nobel soft', 'web developer', '2017-10-02', 5000.00, '2018-07-31', 7000.00, 'chennai', '1', '0 years 9 months', 'company will  be closed', 1, '2020-11-18 12:59:14', 0, NULL, 0, NULL, 1),
(1030, 1949, 'CAFS', 'Voice process ', '2020-11-18', 10000.00, '1970-01-01', 10000.00, 'Chennai ', '2', '0 years 0 months', ' I have interested in the voice process ', 1, '2020-11-18 01:46:15', 0, NULL, 0, NULL, 1),
(1031, 1920, 'Paytm', 'Field sales ', '2019-08-01', 19000.00, '2020-08-01', 19000.00, 'Chennai', '1', '1 years 0 months', ' Corona pandemic lockdown', 1, '2020-11-18 02:29:21', 0, NULL, 0, NULL, 1),
(1032, 1950, 'Poorvika mobiles private limited', 'PHP developer', '2019-07-10', 10000.00, '2020-09-04', 10000.00, 'Chennai', '1', '1 years 1 months', 'Low salary ', 1, '2020-11-18 02:53:50', 0, NULL, 0, NULL, 1),
(1033, 1945, 'H D B Financial Services', 'SENIOR SALES OFFICER', '2019-08-14', 13135.00, '2020-07-01', 15000.00, 'Chennai', '1', '0 years 10 months', ' Personal', 1, '2020-11-18 03:34:55', 0, NULL, 0, NULL, 1),
(1034, 1952, 'bankbazaar', 'customer relationship executive', '2015-03-12', 16800.00, '2020-12-31', 24800.00, 'ambattur', '1', '5 years 9 months', ' no career growth', 1, '2020-11-18 04:59:36', 0, NULL, 0, NULL, 1),
(1035, 1940, 'cholamandalam  ms general insurance', 'relationship manager', '2019-09-09', 3.20, '2020-04-15', 23000.00, 'CHENNAI', '1', '0 years 7 months', 'covid 19 ', 1, '2020-11-18 05:41:34', 0, NULL, 0, NULL, 1),
(1036, 1940, 'global healthcare billing partners pvt ltd', 'ar analyst', '2016-12-05', 18.00, '2018-12-07', 18.00, 'CHENNAI', '1', '2 years 0 months', 'better offer', 1, '2020-11-18 05:42:58', 0, NULL, 0, NULL, 1),
(1037, 1940, 'access healthcare india pvt ltd', 'senior billing executive', '2014-12-05', 14.00, '2016-11-30', 14.00, 'CHENNAI', '1', '1 years 11 months', 'better offer', 1, '2020-11-18 05:44:11', 0, NULL, 0, NULL, 1),
(1038, 1960, 'ciarpro tech pvt ltd', 'software engineer', '2015-04-29', 5000.00, '2018-05-02', 22000.00, 'chennai', '1', '3 years 0 months', 'Carrier growth ', 1, '2020-11-19 08:58:14', 0, NULL, 0, NULL, 1),
(1039, 1960, 'matrimnony.com', 'software engineer', '2018-05-03', 32000.00, '2019-08-22', 32000.00, 'chennai', '1', '1 years 3 months', 'Got best Opportunity to imprve my skills and position. ', 1, '2020-11-19 09:02:32', 0, NULL, 0, NULL, 1),
(1040, 1960, 'eorchids techslutions pvt ltd', 'senior software engineer', '2019-10-03', 42000.00, '2020-08-31', 42000.00, 'chennai', '1', '0 years 10 months', 'Nil', 1, '2020-11-19 09:06:25', 0, NULL, 0, NULL, 1),
(1041, 1961, 'ICICI PRUDENTIAL ', 'ASSO.FIN.SERVICE MGR-PR', '2019-09-27', 300000.00, '2020-10-01', 300000.00, 'Nungambakkam ', '1', '1 years 0 months', ' Internal issue ', 1, '2020-11-19 12:04:45', 0, NULL, 0, NULL, 1),
(1042, 1964, ' Sharekhan, winworth,Bharti AXA Life', 'Demand account opening, marketing executive, ARM', '2018-06-14', 15000.00, '2020-10-05', 26800.00, 'Chennai', '1', '2 years 5 months', ' Covid issue so some people are termination', 1, '2020-11-19 12:16:40', 0, NULL, 0, NULL, 1),
(1043, 1937, 'Max Life Insurance Company Pvt Ltd', 'Associate Sales Manager', '2020-01-06', 6.00, '2020-08-31', 300000.00, 'Chennai', '1', '0 years 7 months', 'Channel was Shut Down in Chennai .', 1, '2020-11-19 12:28:08', 1, '2020-11-19 12:45:06', 0, NULL, 0),
(1044, 1937, 'Aditya Birla Sun Life Insurance', 'Branch Relationship Officer', '2018-03-26', 26.00, '2019-08-30', 275000.00, 'Chennai ', '1', '1 years 5 months', 'Better job Opportunity', 1, '2020-11-19 12:30:20', 0, NULL, 0, NULL, 1),
(1045, 1937, 'Max Life Insurance Company Pvt Ltd', 'Associate Sales Manager', '2020-01-06', 21.00, '2020-09-30', 300000.00, 'Chennai', '1', '0 years 8 months', ' Channel Was Shutdown in Chennai', 1, '2020-11-19 12:44:48', 0, NULL, 0, NULL, 1),
(1046, 1965, 'Cedar bussines solutions', 'Employer', '2019-01-07', 10000.00, '2020-03-10', 13000.00, 'Amjikarai', '1', '1 years 2 months', ' Due Corona and work from home is not comfortable for me ', 1, '2020-11-19 01:08:27', 0, NULL, 0, NULL, 1),
(1047, 1967, 'Empire management', 'Marketing', '2019-12-22', 13000.00, '2020-05-15', 18000.00, 'Arumbakkam', '1', '0 years 4 months', ' Due To Covid 19 issue', 1, '2020-11-19 02:45:33', 0, NULL, 0, NULL, 1),
(1048, 1969, 'Bread World pvt Ltd.', 'HR Executive', '2014-05-12', 15000.00, '2016-01-08', 15000.00, 'Kochi', '1', '1 years 7 months', ' ', 1, '2020-11-19 04:55:11', 0, NULL, 0, NULL, 1),
(1049, 1953, 'wekancode/wekan company', 'backend developer', '2019-02-01', 1020000.00, '1970-01-01', 1020000.00, 'chennai', '2', '1 years 9 months', 'job insecurity due to corona ', 1, '2020-11-19 08:38:41', 0, NULL, 0, NULL, 1),
(1050, 1969, ' snc lavalin international', 'project administrator', '2016-03-15', 43000.00, '2020-05-15', 150000.00, 'saudi arabia', '1', '4 years 2 months', ' ', 1, '2020-11-20 10:00:26', 0, NULL, 0, NULL, 1),
(1051, 1947, 'Webkites interactive Media', 'Php developer', '2019-01-02', 6000.00, '2020-09-18', 13000.00, 'Chennai', '1', '1 years 8 months', ' ', 1, '2020-11-20 01:13:55', 0, NULL, 0, NULL, 1),
(1052, 1981, 'Igenuine soft solution', 'Web developer ', '2019-02-20', 6000.00, '2020-01-12', 10000.00, 'chennai', '1', '0 years 10 months', 'Salary problem ', 1, '2020-11-20 04:16:52', 0, NULL, 0, NULL, 1),
(1053, 1983, 'Livewire', 'Software development trainner', '2019-12-07', 10000.00, '1970-01-01', 10000.00, 'Porur', '2', '0 years 11 months', ' Increase my knowledge', 1, '2020-11-20 05:04:43', 0, NULL, 0, NULL, 1),
(1054, 1979, 'aditya birla sun life insurance company ltd', 'associate branch relationship officer', '2018-04-08', 2.80, '2019-04-19', 2.80, 'bangalore', '1', '2 years 7 months', ' ', 1, '2020-11-20 05:24:15', 0, NULL, 0, NULL, 1),
(1055, 1982, 'Cheers Technology Pvt Ltd', 'Web Developer', '2017-05-01', 20000.00, '2020-10-15', 25000.00, 'Chennai', '1', '3 years 5 months', ' Company  closed', 1, '2020-11-20 05:31:46', 0, NULL, 0, NULL, 1),
(1056, 1985, 't2s software solutions', 'senior analyst', '2018-10-03', 22000.00, '1970-01-01', 26000.00, 'chennai', '2', '2 years 1 months', 'looking for growth and better Opportunity. ', 1, '2020-11-21 03:33:25', 0, NULL, 0, NULL, 1),
(1057, 1985, 'tech mahindra', 'associate tech support', '2018-05-30', 23000.00, '2018-07-05', 23000.00, 'chennai', '1', '0 years 1 months', 'continues changes of shift on weekly basis', 1, '2020-11-21 03:38:20', 0, NULL, 0, NULL, 1),
(1058, 1985, 'zacxo', 'customer executive', '2016-10-12', 15000.00, '2018-01-12', 16500.00, 'chennai', '1', '1 years 3 months', 'process shutdown', 1, '2020-11-21 03:42:11', 0, NULL, 0, NULL, 1),
(1059, 1987, 'TEAMLESE SERVICES LIMITED (SBI CARD)', 'Teamleader', '2018-12-03', 23500.00, '2019-10-03', 23500.00, 'Chennai', '1', '0 years 10 months', 'Family issues', 1, '2020-11-21 09:40:34', 0, NULL, 0, NULL, 1),
(1060, 1987, 'EVERYDAY BANKING SOLUTIONS', 'Senior sales executive', '2015-03-12', 17000.00, '2019-11-11', 17000.00, 'Chennai', '1', '4 years 7 months', 'Next better job offering', 1, '2020-11-21 09:42:19', 0, NULL, 0, NULL, 1),
(1061, 1988, 'Axis securities ltd', 'Relationship executive', '2018-12-06', 12500.00, '2020-02-25', 12500.00, 'Tambaram', '1', '1 years 2 months', ' Personal', 1, '2020-11-21 10:48:44', 0, NULL, 0, NULL, 1),
(1062, 1988, 'Fedbank financial services', 'Relationship manager', '2020-03-18', 16700.00, '2020-08-04', 16700.00, 'Porur', '1', '0 years 4 months', 'Covid 19', 1, '2020-11-21 10:49:53', 0, NULL, 0, NULL, 1),
(1063, 1989, 'Almeer', 'Technical Assistant', '2018-12-04', 28000.00, '1970-01-01', 5000.00, 'Kuwait', '2', '1 years 11 months', ' Shutdown job.', 1, '2020-11-21 11:17:09', 0, NULL, 0, NULL, 1),
(1064, 1995, 'amazon pay', 'sales executive', '2019-06-01', 22000.00, '2020-10-01', 22000.00, 'chena ', '1', '1 years 3 months', ' No salary hike', 1, '2020-11-21 12:36:06', 0, NULL, 0, NULL, 1),
(1065, 1998, 'Vividinfotech software solution', 'Web developer', '2019-05-27', 15000.00, '1970-01-01', 15000.00, 'Ashok Nagar', '2', '1 years 5 months', ' Salary issues', 1, '2020-11-21 12:50:34', 0, NULL, 0, NULL, 1),
(1066, 1994, 'hdfc life', 'bdm', '2019-02-25', 19000.00, '1970-01-01', 21000.00, 'chennai', '2', '1 years 8 months', ' looking  for good oppurtunity for my carrier.', 1, '2020-11-21 12:54:06', 0, NULL, 0, NULL, 1),
(1067, 1996, 'malar vizali', 'php developer', '2018-05-02', 5000.00, '1970-01-01', 12000.00, 'chennai parys', '2', '2 years 6 months', ' long distance and low salary ', 1, '2020-11-21 01:00:23', 0, NULL, 0, NULL, 1),
(1068, 1976, 'swan private limited', 'dada assosiate', '2019-07-14', 15000.00, '1970-01-01', 15000.00, 'kottivakkam chennai', '2', '1 years 4 months', ' due to some parsnol reason', 1, '2020-11-21 01:36:55', 0, NULL, 0, NULL, 1),
(1069, 2000, 'Novatium Solutions private limited ', 'Android developer ', '2019-06-12', 200000.00, '1970-01-01', 300000.00, 'Chennai', '2', '1 years 5 months', ' I cant improve myself  for company redue developing the project', 1, '2020-11-21 02:06:57', 0, NULL, 0, NULL, 1),
(1070, 1980, 'pisces e-service pvt.ltd', 'executive', '2018-10-07', 17000.00, '2019-04-30', 17000.00, 'muragesh palya', '1', '0 years 6 months', 'company will Shutdown the  process ', 1, '2020-11-21 02:13:52', 0, NULL, 0, NULL, 1),
(1071, 2001, 'Novatium Solutions private limited ', 'Android developer ', '2019-06-12', 200000.00, '1970-01-01', 300000.00, 'Chennai', '2', '1 years 5 months', ' Reduce development ', 1, '2020-11-21 02:14:30', 0, NULL, 0, NULL, 1),
(1072, 2005, 'Equitas small finanace', 'Sales Executives ', '2010-06-14', 201000.00, '2019-12-31', 201000.00, 'Chennai', '1', '9 years 6 months', ' Salary hike', 1, '2020-11-21 07:09:53', 0, NULL, 0, NULL, 1),
(1073, 2006, 'jdnet technology', 'developer', '2017-10-17', 10000.00, '1970-01-01', 15000.00, 'cuddalore', '2', '3 years 1 months', ' ', 1, '2020-11-21 07:12:46', 0, NULL, 0, NULL, 1),
(1074, 2015, 'Gemicates Technology Pvt ltd', 'Software trainee', '2019-08-01', 8000.00, '2020-10-20', 12000.00, 'Ashok Nagar, Chennai.', '1', '1 years 2 months', ' Corona Pandemic suitation', 1, '2020-11-23 10:59:35', 0, NULL, 0, NULL, 1),
(1075, 2004, 'hdfc ergo', 'sales', '2016-02-07', 16.00, '1970-01-01', 16.00, 'teynampet', '2', '4 years 9 months', ' not relieving', 1, '2020-11-23 12:02:57', 0, NULL, 0, NULL, 1),
(1076, 2007, 'teleperformance', 'relationship Executive ', '2019-08-12', 25000.00, '2020-11-02', 25000.00, 'whitefield', '1', '1 years 2 months', ' i am dealing at present hyderabad location portfolio recently we expand our branches in hyderabad  as wee  i have to shift that location  i am not ready to shift from bangalore to hyderabad  that is the reson', 1, '2020-11-23 12:03:33', 0, NULL, 0, NULL, 1),
(1077, 1927, 'ninja cart', 'relationship manager', '2018-11-16', 20000.00, '1970-01-01', 25000.00, 'chennai', '2', '2 years 0 months', ' ', 1, '2020-11-23 01:22:37', 0, NULL, 0, NULL, 1),
(1078, 2026, 'Reliance retail ', 'Cashier, customer executive and back office ', '2018-08-01', 8500.00, '2020-11-05', 16500.00, 'Iyyappanthangal ', '1', '2 years 3 months', 'Not comfortable ', 1, '2020-11-23 07:39:28', 0, NULL, 0, NULL, 1),
(1079, 2050, 'Inthree access private limited ', 'Php developer ', '2018-11-01', 30000.00, '2020-06-25', 30000.00, 'Chennai ', '1', '1 years 7 months', ' Salary issues ', 1, '2020-11-24 09:41:36', 0, NULL, 0, NULL, 1),
(1080, 2052, 'Zion global private limited', 'Web developer', '2017-09-13', 15000.00, '2020-09-15', 20000.00, 'Chennai', '1', '3 years 0 months', 'I couldn\'t manage family within this salary package due to family financial commitments', 1, '2020-11-24 10:50:46', 0, NULL, 0, NULL, 1),
(1081, 2052, 'Ford Motor Company', 'Company apprentice', '2014-07-15', 8000.00, '2015-07-30', 20000.00, 'M. m nagar', '1', '1 years 0 months', 'It\'s temporary job only', 1, '2020-11-24 10:52:44', 0, NULL, 0, NULL, 1),
(1082, 2059, 'Computer Age Management Service', 'SQL programmer', '2019-06-10', 250000.00, '1970-01-01', 250000.00, 'Chennai', '2', '1 years 5 months', ' Willing To work in Some other development platform', 1, '2020-11-24 08:24:07', 0, NULL, 0, NULL, 1),
(1083, 2061, 'Smartpro softTech private limited', 'Android developer', '2019-05-13', 8000.00, '1970-01-01', 264000.00, 'Chennai', '2', '1 years 6 months', ' To Explore new dimensions in my field and future development of my skills enhance. ', 1, '2020-11-24 09:33:36', 0, NULL, 0, NULL, 1),
(1084, 2066, 'LabourNet skill development center ', 'Automobile trainer ', '2018-06-18', 18.00, '1970-01-01', 19600.00, 'Chennai ', '2', '2 years 5 months', ' ', 1, '2020-11-26 11:49:33', 0, NULL, 0, NULL, 1),
(1085, 1313, 'Icici bank', 'Releanship manager', '2019-11-04', 23000.00, '2020-09-03', 23000.00, 'Chennai', '1', '0 years 9 months', ' Corona', 1, '2020-11-27 09:38:04', 0, NULL, 0, NULL, 1),
(1086, 2070, 'Trimastir solution', 'Executive', '2020-01-02', 10000.00, '2020-10-20', 12500.00, 'Adyar Chennai', '1', '0 years 9 months', 'Burden of work & daily night shift', 1, '2020-11-27 11:31:42', 0, NULL, 0, NULL, 1),
(1087, 2073, 'sundaram finance', 'investment officer', '2016-07-01', 10000.00, '2019-01-30', 13000.00, 'chennai', '1', '4 years 4 months', ' career growth', 1, '2020-11-27 12:22:44', 0, NULL, 0, NULL, 1),
(1088, 2073, 'bajaj capital', 'relationship executive', '2019-02-01', 27000.00, '1970-01-01', 31000.00, 'chennai', '2', '1 years 9 months', 'personal reason', 1, '2020-11-27 12:25:19', 0, NULL, 0, NULL, 1),
(1089, 2076, 'navia markets ltd', 'relationship manager', '2018-01-22', 10000.00, '2020-11-21', 20000.00, 'nungambakkam', '1', '2 years 9 months', ' Left for breaching  code of conduct', 1, '2020-11-27 12:52:27', 0, NULL, 0, NULL, 1),
(1090, 2079, 'Mirror Media', 'Sr. Operation Manager ', '2015-09-01', 20000.00, '2020-03-31', 30000.00, 'Valasaravakam', '1', '4 years 6 months', ' Due to Covid 19 ', 1, '2020-11-27 04:37:39', 0, NULL, 0, NULL, 1),
(1091, 2065, 'Clarisys technology', 'Php developer ', '2018-08-21', 15000.00, '1970-01-01', 20000.00, 'Chennai', '2', '2 years 3 months', ' Exploring new opportunities ', 1, '2020-11-28 10:17:16', 0, NULL, 0, NULL, 1),
(1092, 2086, 'Roamsoft technologies pvt ltd', 'Php developer', '2019-12-10', 8000.00, '2020-03-19', 10000.00, 'Chennai', '1', '0 years 3 months', ' Corona issue', 1, '2020-11-28 11:41:49', 0, NULL, 0, NULL, 1),
(1093, 2100, 'Access health care ', 'Senior client partner ', '2018-01-08', 12000.00, '1970-01-01', 15000.00, 'Ambattur ', '2', '2 years 10 months', ' Want to learn more and more and gain knowledge want to achieve some goals and position ', 1, '2020-11-28 09:56:40', 0, NULL, 0, NULL, 1),
(1094, 2112, 'Wipro', 'System Administrator', '2018-10-29', 14000.00, '2020-11-30', 14000.00, 'Chennai ', '1', '2 years 1 months', ' Career Growth', 1, '2020-11-29 12:14:37', 0, NULL, 0, NULL, 1),
(1095, 2113, 'Satvat infosol pvt Ltd', 'Technical support', '2019-02-06', 10000.00, '2020-09-15', 10000.00, 'Chennai', '1', '0 years 7 months', ' ', 1, '2020-11-29 01:31:49', 1, '2020-11-29 01:32:36', 0, NULL, 1),
(1096, 2113, '360 degree info Pvt Ltd', 'System administrator', '2020-09-17', 12000.00, '1970-01-01', 12000.00, 'Kodambakkam, chennai', '2', '0 years 2 months', 'Family issue', 1, '2020-11-29 01:34:06', 0, NULL, 0, NULL, 1),
(1097, 2102, 'dbi', 'operational executive', '2019-06-10', 17000.00, '1970-01-01', 17000.00, 'perungudi', '2', '1 years 5 months', ' after release lockdown still didn\'t open the office thats why i relieved ', 1, '2020-11-29 02:15:51', 0, NULL, 0, NULL, 1),
(1098, 2102, 'one point one', 'customer relationship executive', '2020-06-29', 10000.00, '2020-09-01', 10000.00, 'kovilambakkam', '1', '0 years 2 months', 'fake commitments.   the commit for 12k as take home. after one month they said 8k only for 6 months.', 1, '2020-11-29 02:19:13', 1, '2020-11-29 02:27:56', 0, NULL, 1),
(1099, 2131, 'Team lease service pvt ltd', 'Business development executive', '2019-03-18', 20000.00, '2020-08-03', 20000.00, 'Chennai', '1', '1 years 4 months', ' Due to family issues', 1, '2020-11-30 09:09:38', 0, NULL, 0, NULL, 1),
(1100, 2007, 'Teleperformance', 'Relationship exiquative ', '2019-08-13', 22229.00, '2020-11-02', 22229.00, 'Whitefield', '1', '1 years 2 months', ' My companey expand their branches in metrocitys for that I have to move from Bangalore to Hyderabad I am.not ready for that so I left organization', 1, '2020-11-30 10:45:08', 0, NULL, 0, NULL, 1),
(1101, 2133, 'LOGANATHAN D', 'Tl', '2019-09-28', 18500.00, '2020-06-26', 20000.00, 'Teynampet', '1', '0 years 8 months', 'Learning more to financial sector I would like interested person', 1, '2020-11-30 11:05:41', 0, NULL, 0, NULL, 1),
(1102, 2077, 'ICL fincorp', 'Sales executive', '2019-06-03', 10.00, '2020-07-15', 10.00, 'Thrissur', '1', '1 years 1 months', ' Location changed into banglore', 1, '2020-11-30 11:44:42', 0, NULL, 0, NULL, 1),
(1103, 2135, 'sree krishna Agencies ', 'coordinator ', '2019-12-03', 18000.00, '1970-01-01', 18000.00, 'nungambakkam', '2', '0 years 11 months', ' Better offer ', 1, '2020-11-30 12:09:10', 0, NULL, 0, NULL, 1),
(1104, 2136, 'jesus calls', 'deo', '2011-10-20', 7500.00, '2014-03-09', 9000.00, 'parrys', '1', '2 years 4 months', ' ', 1, '2020-11-30 12:53:33', 0, NULL, 0, NULL, 1),
(1105, 2136, 'ajuba solutions', 'junior process executive', '2014-03-07', 8700.00, '2016-03-07', 1100.00, 'thoraipakkam', '1', '2 years 0 months', 'health issue', 1, '2020-11-30 12:55:58', 0, NULL, 0, NULL, 1),
(1106, 2136, 'apollo hospitals ', 'apollo health check facilitator', '2018-07-07', 13200.00, '2018-10-31', 13000.00, 'greams road', '1', '0 years 3 months', 'i did not like job', 1, '2020-11-30 12:58:07', 0, NULL, 0, NULL, 1),
(1107, 2143, 'DK Intelectual Services ', 'Software consultant ', '2020-07-15', 18000.00, '1970-01-01', 18000.00, 'Chennai', '2', '0 years 4 months', ' Salary issue', 1, '2020-11-30 01:28:09', 0, NULL, 0, NULL, 1),
(1108, 2148, 'Maxzee technologies', 'Business development manager', '2020-11-30', 1.00, '2020-12-03', 27000.00, 'Chennai', '1', '0 years 0 months', ' Company is in proprietary issues .', 1, '2020-11-30 02:07:13', 0, NULL, 0, NULL, 1),
(1109, 2161, 'wuerth india pvt ltd', 'telecaller', '2017-06-01', 14000.00, '1970-01-01', 17000.00, 'ayanavaram', '2', '3 years 5 months', ' ', 1, '2020-11-30 05:01:16', 0, NULL, 0, NULL, 1),
(1110, 2051, 'Pragathi Enterprises ', 'Senior Sales Executives ', '2013-01-05', 18000.00, '2020-04-25', 51000.00, 'Bangalore ', '1', '7 years 3 months', ' On Personal Reasons I left my Previous Job.', 1, '2020-11-30 05:26:24', 0, NULL, 0, NULL, 1),
(1111, 2051, 'Pragathi Enterprises ', 'Senior Sales Executive', '2013-01-05', 18000.00, '2020-04-25', 51000.00, 'Bangalore ', '1', '7 years 3 months', ' On Personal reasons I left my previous job.', 1, '2020-11-30 05:29:23', 0, NULL, 0, NULL, 1),
(1112, 2163, 'Xmedia', 'UI Developer', '2018-01-06', 4000.00, '2018-12-18', 8000.00, 'Ambattur', '1', '0 years 11 months', ' To start my own business', 1, '2020-11-30 05:41:38', 0, NULL, 0, NULL, 1),
(1113, 2164, 'Nittany pvt ltd', 'Network Engineer', '2017-12-13', 9600.00, '2018-08-24', 9600.00, 'Chennai', '1', '0 years 8 months', ' Salary very low', 1, '2020-11-30 05:59:17', 0, NULL, 0, NULL, 1),
(1114, 2164, 'Annexmed pvt ltd ', 'System Administrator ', '2018-08-28', 15500.00, '2020-05-31', 17000.00, 'Chennai', '1', '1 years 9 months', 'Covid 19', 1, '2020-11-30 06:01:03', 0, NULL, 0, NULL, 1),
(1115, 2166, 'Bharath Matrimony.com', 'Telesales executive', '2018-04-16', 9540.00, '2019-07-14', 12500.00, 'Adugodi', '1', '1 years 2 months', 'Health issue', 1, '2020-11-30 08:08:46', 0, NULL, 0, NULL, 1),
(1116, 2166, 'Bharath Matrimony.com', 'Telesales executive', '2018-04-16', 9540.00, '2019-07-14', 12500.00, 'Audugodi', '1', '1 years 2 months', 'Health issues', 1, '2020-11-30 08:10:31', 0, NULL, 0, NULL, 1),
(1117, 2169, 'Design solutions India pvt ltd', 'Ui developer', '2016-09-01', 26100.00, '2020-10-05', 26100.00, 'Chennai', '1', '4 years 1 months', ' ', 1, '2020-12-01 10:49:47', 0, NULL, 0, NULL, 1),
(1118, 2127, '63ideas Infolbs Pvt Ltd', 'Sales', '2018-12-03', 31.00, '2019-06-28', 23000.00, 'Porur', '1', '1 years 11 months', ' Health issue', 1, '2020-12-01 12:01:20', 0, NULL, 0, NULL, 1),
(1119, 2176, 'Agnoshin technologies Pvt limited', 'Front end developer', '2019-07-08', 10000.00, '1970-01-01', 15000.00, 'Vellachery', '2', '1 years 4 months', ' ', 1, '2020-12-01 12:09:37', 0, NULL, 0, NULL, 1),
(1120, 2176, 'Agnoshin technologies Pvt Ltd', 'Front end developer', '2019-07-08', 10000.00, '1970-01-01', 15000.00, 'Vellachery', '2', '1 years 4 months', ' ', 1, '2020-12-01 12:16:37', 0, NULL, 0, NULL, 1),
(1121, 2181, 'Axis bank ', 'Relationship officer ', '2019-05-08', 11000.00, '2020-03-09', 13000.00, 'Kodambakkam ', '1', '0 years 10 months', ' Due to Personal issues ', 1, '2020-12-01 12:45:36', 0, NULL, 0, NULL, 1),
(1122, 2186, 'Maruthi Suzuki rajalakshmi cars', 'Sales', '2019-05-05', 15000.00, '2020-08-25', 16000.00, 'Erukkancherry', '1', '1 years 3 months', ' Production prblm & lockdown covid19 Issues.', 1, '2020-12-01 02:17:44', 0, NULL, 0, NULL, 1),
(1123, 2188, 'RND solutions', 'Junior software developer', '2019-08-05', 10000.00, '2020-03-22', 10000.00, 'Trichy', '1', '0 years 7 months', ' covid-19 pandemic situation', 1, '2020-12-01 03:44:48', 0, NULL, 0, NULL, 1),
(1124, 2191, 'Aegon life insurance', 'Bdm', '2017-08-09', 17.00, '1970-01-01', 43000.00, 'Bangalore', '2', '3 years 3 months', ' For better prospects', 1, '2020-12-01 03:54:52', 0, NULL, 0, NULL, 1),
(1125, 2153, 'amzon pay', 'group leader and field associate', '2019-06-10', 22000.00, '2020-02-06', 22000.00, 'kilpauk', '1', '1 years 5 months', 'met with an acident', 1, '2020-12-01 04:15:36', 0, NULL, 0, NULL, 1),
(1126, 2153, 'paytm', 'field associate', '2018-01-10', 18000.00, '2018-12-23', 20000.00, 't.nagar', '1', '0 years 11 months', 'process changed', 1, '2020-12-01 04:20:43', 0, NULL, 0, NULL, 1),
(1127, 2153, 'club mahindra holidays', 'Out Post Consultant', '2017-01-01', 8000.00, '2017-11-01', 9000.00, 'royapettah', '1', '0 years 10 months', 'for better salary', 1, '2020-12-01 04:25:05', 0, NULL, 0, NULL, 1),
(1128, 2153, 'vertex solutions', ' Customer Care Executive', '2015-11-20', 7500.00, '2016-07-15', 8000.00, 'royapetth', '1', '0 years 7 months', 'health issue', 1, '2020-12-01 04:29:09', 0, NULL, 0, NULL, 1),
(1129, 2178, 'qbitgen', 'ui developer', '2019-08-01', 10000.00, '2020-08-10', 15000.00, 'annanagar', '1', '1 years 0 months', ' due to insufficient of project.', 1, '2020-12-01 06:20:28', 0, NULL, 0, NULL, 1),
(1130, 2195, 'Omeon solutions Pvt Ltd', 'Android Developer', '2018-10-01', 12000.00, '1970-01-01', 13800.00, 'Chennai', '2', '2 years 2 months', ' Now they have changed my domain.\nI want to learn more and stay strong in android. ', 1, '2020-12-01 08:43:45', 0, NULL, 0, NULL, 1),
(1131, 2196, 'Hill breeze', 'Food &beverage manager', '2020-08-04', 17000.00, '2020-11-18', 17000.00, 'Yelagiri', '1', '0 years 3 months', ' Due to my marriage I resigned job .my native in chennai', 1, '2020-12-01 09:14:32', 0, NULL, 0, NULL, 1),
(1132, 2197, 'Bank bazaar', 'Senior customer relationship officer', '2015-05-11', 23000.00, '1970-01-01', 23000.00, 'Chennai', '2', '5 years 6 months', ' Carrier growth', 1, '2020-12-01 10:40:13', 0, NULL, 0, NULL, 1),
(1133, 2198, 'Kauvery Hospital', 'telecaller Exsicutive', '2019-08-02', 12000.00, '2020-04-17', 12000.00, 'chennai', '1', '0 years 8 months', ' Covid 19', 1, '2020-12-02 08:38:38', 0, NULL, 0, NULL, 1),
(1134, 2199, 'teleperformance 3rd party of barclays', 'senior customer executive', '2018-12-02', 16800.00, '2020-09-18', 18000.00, 'ambattur', '1', '1 years 9 months', ' process ram down, client contract closed', 1, '2020-12-02 10:59:43', 0, NULL, 0, NULL, 1),
(1135, 2206, 'FFI JEANS KNITS PVT LTD', 'Barcode designer', '2019-11-11', 14000.00, '2020-03-18', 14000.00, 'Sriperumbudur', '1', '0 years 4 months', ' Corona issues', 1, '2020-12-02 11:27:21', 0, NULL, 0, NULL, 1),
(1136, 2079, 'Mirror Media', 'Sr. Operation Manager', '2015-09-01', 20000.00, '2020-03-31', 300000.00, 'Valasaravakam', '1', '4 years 6 months', ' ', 1, '2020-12-02 11:48:27', 0, NULL, 0, NULL, 1),
(1137, 2209, 'Intech systems Pvt ltd', 'PHP Developer', '2018-02-04', 12000.00, '2020-11-14', 20000.00, 'Guindy', '1', '2 years 9 months', ' Going to learn advanced level', 1, '2020-12-02 11:53:33', 1, '2020-12-02 11:57:15', 0, NULL, 1),
(1138, 2209, 'Why global services', 'PHP web developer', '2017-08-01', 8000.00, '2018-01-17', 8000.00, 'Perambur', '1', '0 years 5 months', 'Salary issues', 1, '2020-12-02 11:56:29', 1, '2020-12-02 11:57:53', 0, NULL, 1),
(1139, 2211, 'Larsen toubro', 'Manager', '2015-08-17', 35000.00, '2020-09-04', 70000.00, 'Chennai', '1', '5 years 0 months', ' Personal & Family reasons', 1, '2020-12-02 12:10:37', 0, NULL, 0, NULL, 1),
(1140, 2211, 'Fichtner india', 'Engineer', '2011-07-22', 22000.00, '2015-06-01', 35000.00, 'Chennai', '1', '3 years 10 months', 'Career development', 1, '2020-12-02 12:12:51', 0, NULL, 0, NULL, 1),
(1141, 2211, 'Proconconsultant', 'Engineer ', '2010-11-22', 20000.00, '2011-06-22', 20000.00, 'Mumbai', '1', '0 years 7 months', 'Career development', 1, '2020-12-02 12:15:09', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1142, 2147, 'dk intellectual services', 'software developer', '2020-07-15', 15.00, '2020-12-01', 4.50, 'chennai', '1', '0 years 4 months', ' carrier grouth', 1, '2020-12-02 12:45:13', 0, NULL, 0, NULL, 1),
(1143, 2216, 'Axis bank ltd', 'Officer sales', '2020-05-22', 15000.00, '2020-10-25', 15000.00, 'Kundra', '1', '0 years 5 months', 'Family issue', 1, '2020-12-02 02:03:35', 0, NULL, 0, NULL, 1),
(1144, 2224, 'Micromen software solutions Pvt Ltd', 'PHP Developer', '2018-06-26', 10000.00, '1970-01-01', 15000.00, 'Chennai', '2', '2 years 5 months', ' Career growth', 1, '2020-12-02 06:47:42', 0, NULL, 0, NULL, 1),
(1145, 2223, 'Vamosys private limited', 'Android developer', '2019-10-01', 10000.00, '2020-10-15', 10000.00, 'Chennai', '1', '1 years 0 months', ' Fever taking leave ', 1, '2020-12-02 06:47:58', 0, NULL, 0, NULL, 1),
(1146, 2225, 'Scripters Zone', 'UI Designer', '2018-02-06', 25.00, '2020-09-13', 30.00, 'Coimbatore', '1', '2 years 7 months', ' Location', 1, '2020-12-02 08:37:55', 0, NULL, 0, NULL, 1),
(1147, 2228, 'CAFS', 'RELATIONSHIP MANAGER', '2020-01-10', 22000.00, '1970-01-01', 22000.00, 'Chennai', '2', '0 years 10 months', 'I would like to join in IT support professionals to enhance my skillset and Develop my career growth', 1, '2020-12-03 10:57:19', 0, NULL, 0, NULL, 1),
(1148, 2196, 'Hill breeze hotel', 'Supervisor', '2019-06-06', 15000.00, '2020-12-03', 17000.00, 'chennai', '1', '1 years 5 months', 'Due to my mother health problem I am resigned', 1, '2020-12-03 12:47:59', 0, NULL, 0, NULL, 1),
(1149, 2204, 'cdonalds', 'hift manager', '2016-10-01', 17000.00, '2019-02-01', 17500.00, 'ilpauk', '1', '2 years 4 months', ' ', 1, '2020-12-03 01:46:27', 0, NULL, 0, NULL, 1),
(1150, 2204, 'cdonalds', 'hift manager', '2016-06-01', 17000.00, '2019-02-01', 17500.00, 'ilpauk', '1', '2 years 8 months', 'No salary hike', 1, '2020-12-03 01:48:19', 0, NULL, 0, NULL, 1),
(1151, 2233, 'Gem solutions (RR Donnelly)', 'Business analyst', '2015-09-23', 8000.00, '2017-01-01', 16000.00, 'RA puram', '1', '1 years 3 months', ' Ramp down of process', 1, '2020-12-03 02:53:59', 0, NULL, 0, NULL, 1),
(1152, 2233, 'HCL  technologies', 'Customer service executive', '2017-01-15', 17000.00, '2018-07-18', 25000.00, 'Ambattur', '1', '1 years 6 months', 'Marriage', 1, '2020-12-03 02:56:14', 0, NULL, 0, NULL, 1),
(1153, 2239, 'Phonepe ', 'Field sales executive', '2019-01-03', 15000.00, '2020-02-01', 16000.00, 'Ullal Upanagara bangalore ', '1', '1 years 0 months', ' Agency completing', 1, '2020-12-03 03:22:07', 0, NULL, 0, NULL, 1),
(1154, 2236, 'roamsoft technology', 'php developer', '2019-10-26', 8000.00, '2020-03-15', 10000.00, 'arumbakkam', '1', '0 years 4 months', ' no facitity available to come again for company during pandemic situation', 1, '2020-12-03 07:59:01', 0, NULL, 0, NULL, 1),
(1155, 2250, 'logicorp technologies', 'android developer', '2019-05-29', 15000.00, '1970-01-01', 15000.00, 'kochi ', '2', '1 years 6 months', 'Desire to gain a new skill or grow a current skill', 1, '2020-12-04 11:08:29', 0, NULL, 0, NULL, 1),
(1156, 2245, 'Hiranya associates Pvt ltd', 'Sales officer', '2017-09-03', 10000.00, '2020-02-05', 15000.00, 'Vadapalani', '1', '2 years 5 months', ' Salary issues', 1, '2020-12-04 11:23:34', 0, NULL, 0, NULL, 1),
(1157, 2255, 'Zhahz Technologies pvt Ltd ', 'Software developer', '2020-10-21', 60000.00, '1970-01-01', 60000.00, 'Chennai', '2', '0 years 1 months', ' Didn\'t have project', 1, '2020-12-04 11:37:13', 0, NULL, 0, NULL, 1),
(1158, 2251, 'evershine tech solutions', 'software developer', '2020-12-04', 3000.00, '2020-12-31', 16000.00, 'chennai', '1', '0 years 0 months', ' financial crisis and looking for latest technology and opportunity', 1, '2020-12-04 11:38:34', 0, NULL, 0, NULL, 1),
(1159, 2256, 'Hathaway broadband', 'Telesales', '2020-02-10', 1.00, '2020-11-20', 15000.00, 'Nungambakkam', '1', '0 years 9 months', ' Salary issue', 1, '2020-12-04 11:54:41', 0, NULL, 0, NULL, 1),
(1160, 2253, 'rv narayanan & Associates', 'ca article ship', '2016-01-30', 3000.00, '2017-08-07', 3000.00, 'chennai', '1', '1 years 6 months', ' after completing my intenship', 1, '2020-12-04 12:16:08', 0, NULL, 0, NULL, 1),
(1161, 2258, 'Excel power switch gear ', 'Sales ', '2009-06-03', 7000.00, '2018-06-27', 20000.00, 'Chennai ', '1', '9 years 0 months', 'Family personal ', 1, '2020-12-04 12:27:35', 0, NULL, 0, NULL, 1),
(1162, 2258, 'Airtel ', 'Sales Telecaling ', '2018-11-15', 15000.00, '2020-06-16', 15000.00, 'Chennai ', '1', '1 years 7 months', 'No job', 1, '2020-12-04 12:32:22', 0, NULL, 0, NULL, 1),
(1163, 2259, 'Radar technologies', 'Fullstack developer', '2020-04-08', 15000.00, '1970-01-01', 15000.00, 'Velacheri', '2', '0 years 7 months', 'For career growth.', 1, '2020-12-04 12:35:31', 0, NULL, 0, NULL, 1),
(1164, 2260, 'Mission sports', 'Regional sales manager', '2020-03-05', 3.00, '2020-12-05', 25000.00, 'Chennai', '1', '0 years 9 months', ' Layoff', 1, '2020-12-04 12:41:21', 0, NULL, 0, NULL, 1),
(1165, 2276, 'Nthrive', 'AR caller', '2018-04-20', 17500.00, '2020-11-16', 19500.00, 'Chennai', '1', '2 years 6 months', ' ', 1, '2020-12-04 08:14:04', 0, NULL, 0, NULL, 1),
(1166, 2283, 'Home credit india finance Pvt.ltd', 'Operator as a tele collection', '2018-08-20', 13.00, '2020-09-05', 16.00, 'Bangalore', '1', '2 years 0 months', 'Due to father health issue..', 1, '2020-12-05 11:59:13', 0, NULL, 0, NULL, 1),
(1167, 2283, 'Homecredit finance Pvt.ltd', 'Operator as tele collection', '2018-08-20', 15400.00, '2020-09-20', 16.00, 'Bangalore', '1', '2 years 1 months', ' Due to father health issue ', 1, '2020-12-05 12:15:41', 0, NULL, 0, NULL, 1),
(1168, 2285, 'MRF tyres', 'Junior engineer', '2014-08-20', 18000.00, '2020-08-30', 30000.00, 'Pondicherry', '1', '6 years 0 months', 'To Give moral Support to family, moved to Chennai', 1, '2020-12-05 12:28:05', 0, NULL, 0, NULL, 1),
(1169, 2281, 'jineshwar gift @novalty', 'customer service', '2020-12-05', 12000.00, '1970-01-01', 12000.00, 'chennai', '2', '0 years 1 months', ' ', 1, '2020-12-05 12:57:20', 0, NULL, 0, NULL, 1),
(1170, 2281, 'jineshwar gift @novalty', 'customer service', '2020-12-05', 12000.00, '1970-01-01', 12000.00, 'chennai', '2', '0 years 1 months', ' ', 1, '2020-12-05 12:57:20', 0, NULL, 0, NULL, 1),
(1171, 2287, 'Shriram life insurance company', 'Relationship manager', '2019-10-09', 31.00, '2020-06-01', 20000.00, 'Teynampet', '1', '0 years 7 months', 'Because of covid company closes relationship manager role in chennai region', 1, '2020-12-05 01:11:58', 0, NULL, 0, NULL, 1),
(1172, 2284, 'hdb financial service', 'tele caller', '2019-05-03', 10000.00, '2020-11-17', 11000.00, 'gp road chennai', '1', '1 years 6 months', ' ', 1, '2020-12-05 01:20:27', 0, NULL, 0, NULL, 1),
(1173, 2288, 'Srisaakthi services pvt ltd', 'Client Relationship manager ', '2018-07-02', 22000.00, '2020-09-30', 28000.00, 'Chennai ', '1', '2 years 2 months', ' To Change my career line (field) ', 1, '2020-12-05 02:03:09', 0, NULL, 0, NULL, 1),
(1174, 2288, 'Srisaakthi services pvt ltd', 'Client Relationship manager ', '2018-07-02', 22000.00, '2020-09-30', 28000.00, 'Chennai ', '1', '2 years 2 months', ' To Change my career line (field) ', 1, '2020-12-05 02:03:09', 1, '2020-12-05 02:03:37', 0, NULL, 0),
(1175, 2288, 'Srisaakthi services pvt ltd', 'Client Relationship manager ', '2018-07-02', 22000.00, '2020-09-30', 28000.00, 'Chennai ', '1', '2 years 2 months', ' To Change my career line (field) ', 1, '2020-12-05 02:03:09', 1, '2020-12-05 02:03:32', 0, NULL, 0),
(1176, 2288, 'Srisaakthi services pvt ltd', 'Client Relationship manager ', '2018-07-02', 22000.00, '2020-09-30', 28000.00, 'Chennai ', '1', '2 years 2 months', ' To Change my career line (field) ', 1, '2020-12-05 02:03:10', 1, '2020-12-05 02:03:28', 0, NULL, 0),
(1177, 2290, 'Pathfinder global fzco', 'Management trainee', '2019-09-25', 15750.00, '1970-01-01', 15750.00, 'Chennai', '2', '1 years 2 months', ' ', 1, '2020-12-05 03:48:21', 0, NULL, 0, NULL, 1),
(1178, 2291, 'teleperformance', 'senior customer support executive', '2017-08-07', 13500.00, '2020-09-19', 18000.00, 'ambattur', '1', '3 years 1 months', ' Process Ramp Down', 1, '2020-12-05 04:47:24', 0, NULL, 0, NULL, 1),
(1179, 2291, 'cameo corporate', 'junior executive', '2015-04-20', 6500.00, '2017-08-01', 7500.00, 'mount road', '1', '2 years 3 months', 'Vendor of hdfc bank. hence closed', 1, '2020-12-05 04:49:33', 0, NULL, 0, NULL, 1),
(1180, 2305, 'Passion Gaming private limited', 'Senior customer service representative', '2019-04-14', 15.00, '2020-05-06', 19.00, 'Hariyana', '1', '1 years 0 months', ' ', 1, '2020-12-06 06:49:27', 0, NULL, 0, NULL, 1),
(1181, 2248, 'corent technology', 'front end developer', '2019-03-01', 18000.00, '2020-04-01', 18000.00, 'chennai', '1', '1 years 1 months', ' salesforce study', 1, '2020-12-06 07:26:57', 0, NULL, 0, NULL, 1),
(1182, 2312, 'Shriram transport finance company ltd', 'Collection manager', '2017-07-27', 30.00, '1970-01-01', 21500.00, 'Kolathur', '2', '3 years 4 months', ' Salary purpose', 1, '2020-12-07 11:38:57', 0, NULL, 0, NULL, 1),
(1183, 2314, 'Bharatmatrimony', 'Telecaller', '2018-12-21', 11000.00, '2020-10-06', 12500.00, 'Guindy', '1', '1 years 9 months', 'Covid time so Only reason', 1, '2020-12-07 12:03:39', 0, NULL, 0, NULL, 1),
(1184, 2313, 'Hathaway fibernet', 'Telecaller', '2020-02-25', 16000.00, '2020-11-07', 16000.00, 'Chennai Nungampakkam', '1', '0 years 8 months', 'Father some health issues', 1, '2020-12-07 12:21:13', 0, NULL, 0, NULL, 1),
(1185, 2315, 'Community matrimony', 'Telecaller', '2019-12-09', 11000.00, '2020-10-01', 12500.00, 'Chennai guindy', '1', '0 years 9 months', ' Covid 19 issues', 1, '2020-12-07 12:54:16', 0, NULL, 0, NULL, 1),
(1186, 2305, 'Passion Gaming', 'Senior customer service representative', '2019-04-03', 19.00, '2020-08-15', 15000.00, 'Hariyana', '1', '1 years 4 months', ' ', 1, '2020-12-07 01:37:42', 0, NULL, 0, NULL, 1),
(1187, 2287, 'Aircel limited', 'Senior officer', '2013-11-20', 31.00, '2018-05-31', 20000.00, 'Anna salai', '1', '4 years 6 months', ' Company closed', 1, '2020-12-07 02:55:33', 0, NULL, 0, NULL, 1),
(1188, 2287, 'Welforce corporate services', 'Field officer', '2018-08-24', 10.00, '2019-05-31', 20000.00, 'Iyyapanthangal', '1', '0 years 9 months', 'Salary delay', 1, '2020-12-07 02:56:42', 0, NULL, 0, NULL, 1),
(1189, 2323, 'Tnq Books and journlas', 'Senior graphics associates', '2012-05-02', 5500.00, '2018-04-17', 17000.00, 'Tiruvanmiyur', '1', '5 years 11 months', ' For changing my field software ', 1, '2020-12-07 03:05:42', 0, NULL, 0, NULL, 1),
(1190, 2323, 'Anna nagar', 'Senior technical support engineer', '2018-04-18', 14000.00, '2020-03-31', 16000.00, 'Anna nagar', '1', '1 years 11 months', 'For salary ', 1, '2020-12-07 03:08:53', 0, NULL, 0, NULL, 1),
(1191, 2323, 'Anna university', 'Junior application developer', '2019-06-01', 18000.00, '1970-01-01', 20000.00, 'Guindy', '2', '1 years 6 months', 'Contract based and salary ', 1, '2020-12-07 03:10:58', 0, NULL, 0, NULL, 1),
(1192, 2329, 'Avasoft', 'UX/UI Developer', '2017-04-17', 7000.00, '2020-03-19', 25012.00, 'Navalur chennai', '1', '2 years 11 months', ' Due to covid-19', 1, '2020-12-07 05:49:16', 0, NULL, 0, NULL, 1),
(1193, 2331, 'springbord', 'customer support executive', '2019-11-11', 10000.00, '1970-01-01', 11000.00, 'teynapet', '2', '1 years 0 months', 'i need more income', 1, '2020-12-07 05:58:16', 0, NULL, 0, NULL, 1),
(1194, 2335, 'Aegonlife insurance', 'Relationship Manager', '2020-01-02', 27100.00, '2020-12-03', 27083.00, 'Bangalore', '1', '0 years 11 months', ' Looking for Direct selling', 1, '2020-12-08 08:07:36', 0, NULL, 0, NULL, 1),
(1195, 2337, 'Dk intellectual services', 'Php development', '2020-07-15', 18000.00, '2020-12-01', 18000.00, 'Chennai', '1', '0 years 4 months', 'Salary issue', 1, '2020-12-08 10:11:48', 0, NULL, 0, NULL, 1),
(1196, 2340, 'Diva associated', 'Talecaller', '2019-11-12', 10500.00, '2020-03-10', 10500.00, 'Madipakkam', '1', '0 years 3 months', ' Personal issue', 1, '2020-12-08 11:16:31', 0, NULL, 0, NULL, 1),
(1197, 2334, 'ICICI BANK ', 'sales executive', '2018-08-08', 15000.00, '2019-11-18', 15000.00, 'chennai ', '1', '1 years 3 months', ' ', 1, '2020-12-08 11:32:46', 0, NULL, 0, NULL, 1),
(1198, 2347, 'BAJAJ FINSERV', 'Sales officer', '2018-08-26', 12000.00, '2020-11-01', 13500.00, 'Chennai ', '1', '2 years 2 months', ' ', 1, '2020-12-08 11:50:12', 0, NULL, 0, NULL, 1),
(1199, 2346, 'CMO axis outsourcing company ', 'Sales promoter ', '2018-09-08', 12000.00, '2020-06-30', 16000.00, 'Velachary ', '1', '1 years 9 months', ' because of corona ', 1, '2020-12-08 11:56:17', 0, NULL, 0, NULL, 1),
(1200, 2341, 'karvy data management', 'cse', '2018-08-07', 14000.00, '2019-07-18', 19000.00, 'chennai', '1', '0 years 11 months', 'covid ', 1, '2020-12-08 11:57:23', 0, NULL, 0, NULL, 1),
(1201, 2341, 'bank bazar', 'cse', '2019-07-05', 19500.00, '2020-10-01', 19000.00, 'guindy', '1', '1 years 2 months', 'covid', 1, '2020-12-08 11:59:31', 0, NULL, 0, NULL, 1),
(1202, 2345, 'Vizza insurance', 'Telecaller', '2020-12-05', 10000.00, '2020-12-08', 10000.00, 'Chennai', '1', '0 years 0 months', ' INSENSITIVE PROBLEM', 1, '2020-12-08 12:40:28', 0, NULL, 0, NULL, 1),
(1203, 2349, 'VIZZA INSURANCE', 'Team Leader', '2020-08-17', 15000.00, '2020-12-01', 15000.00, 'Chennai kodambakkam', '1', '0 years 3 months', ' Insensitive prblm', 1, '2020-12-08 12:51:27', 0, NULL, 0, NULL, 1),
(1204, 2344, 'Sasha Enterprises ', 'Telecaller', '2020-10-01', 10000.00, '2020-12-04', 10000.00, 'Chennai', '1', '0 years 2 months', ' Insentive problem ', 1, '2020-12-08 12:55:28', 0, NULL, 0, NULL, 1),
(1205, 2319, 'Bharat matrimony', 'Telecaller', '2018-11-28', 12000.00, '2020-10-01', 12000.00, 'Guindy', '1', '2 years 0 months', ' No salary hike', 1, '2020-12-08 12:59:49', 0, NULL, 0, NULL, 1),
(1206, 2319, 'Bharath', 'Telecaller', '2019-02-28', 12000.00, '2020-10-01', 12000.00, 'Guindy', '1', '1 years 7 months', 'No salary hike', 1, '2020-12-08 01:01:23', 0, NULL, 0, NULL, 1),
(1207, 2351, 'Sai systems ', 'Ar caller ', '2019-12-08', 14500.00, '2020-07-04', 14500.00, 'T. Nagar', '1', '0 years 6 months', ' ', 1, '2020-12-08 01:17:22', 0, NULL, 0, NULL, 1),
(1208, 2355, 'Webprogr. Com', 'Front end developer ', '2019-12-10', 180000.00, '1970-01-01', 180000.00, 'T nagar', '2', '0 years 11 months', ' Looking for a new job ', 1, '2020-12-08 01:39:24', 0, NULL, 0, NULL, 1),
(1209, 2360, 'New Devi pvt limited', 'Sales & team mgmt', '2019-09-09', 250000.00, '2020-12-08', 250000.00, 'Chennai', '2', '1 years 2 months', ' As due to pandemic situation, Senior Management decided to shift the company to Coimbatore. ', 1, '2020-12-08 03:15:32', 0, NULL, 0, NULL, 1),
(1210, 2357, 'hdfcbank', 'chennai', '2019-05-15', 19001.00, '2020-10-02', 50000.00, 'chennai', '1', '1 years 4 months', ' due to personal reason', 1, '2020-12-08 03:28:54', 0, NULL, 0, NULL, 1),
(1211, 2366, 'Bajaj Finance ltd', 'Manager', '2019-12-02', 35000.00, '1970-01-01', 35000.00, 'chennai', '2', '1 years 0 months', ' Personal reason', 1, '2020-12-08 06:21:25', 0, NULL, 0, NULL, 1),
(1212, 2368, 'Nestaway technology Pvt Ltd', 'Executive', '2019-11-25', 18500.00, '2020-05-25', 18500.00, 'Chennai', '1', '0 years 6 months', ' Covid-19', 1, '2020-12-08 06:43:06', 0, NULL, 0, NULL, 1),
(1213, 2369, 'Good Time Marketing', 'Marketing Executive', '2020-08-09', 8500.00, '2020-11-09', 9000.00, 'Virugambakkam', '1', '0 years 3 months', ' I am not satisfied with work', 1, '2020-12-09 11:10:30', 0, NULL, 0, NULL, 1),
(1214, 2369, 'Good Time Marketing', 'Marketing Executive', '2020-08-09', 8500.00, '2020-11-09', 9000.00, 'Virugambakkam', '1', '0 years 3 months', ' I am not satisfied with work', 1, '2020-12-09 11:10:30', 0, NULL, 0, NULL, 1),
(1215, 2372, 'Hcl Technologies', 'Customer service representative', '2019-05-06', 11800.00, '2020-05-31', 14000.00, 'Chennai', '1', '1 years 0 months', ' Salary hyke', 1, '2020-12-09 11:45:28', 0, NULL, 0, NULL, 1),
(1216, 2374, 'Vista systemz', 'Junior HR', '2019-04-10', 10.00, '2020-07-12', 12000.00, 'Ambattur', '1', '1 years 3 months', ' Company were closed due to covid .', 1, '2020-12-09 12:21:03', 0, NULL, 0, NULL, 1),
(1217, 2326, 'Barclays', 'Process Advisor', '2019-05-24', 10000.00, '2020-09-30', 10000.00, 'Dlf it park , Ramapuram, chennai', '1', '1 years 4 months', ' Contract closed and also process closed', 1, '2020-12-09 12:24:36', 0, NULL, 0, NULL, 1),
(1218, 2380, 'Clayman solutions', 'Software Engineer', '2017-03-02', 8000.00, '1970-01-01', 25000.00, 'Udumalpet', '2', '3 years 9 months', ' Relocate\n', 1, '2020-12-09 12:55:37', 0, NULL, 0, NULL, 1),
(1219, 2381, 'Reliance jio', 'Premium relationship manager ', '2017-04-10', 27000.00, '2019-03-26', 32000.00, 'Ambattur ', '1', '1 years 11 months', ' Medical issue \n', 1, '2020-12-09 01:15:24', 0, NULL, 0, NULL, 1),
(1220, 2384, 'Unifac management service', 'Office staff', '2016-02-03', 9000.00, '2019-08-10', 16000.00, 'Nungambhakkam', '1', '3 years 6 months', 'No increment in Salary ', 1, '2020-12-09 01:28:55', 0, NULL, 0, NULL, 1),
(1221, 2389, 'Bharat matrimony. Com Ltd', 'telecaller', '2018-03-02', 10500.00, '2020-06-02', 14000.00, 'Chennai', '1', '2 years 3 months', ' Short period service', 1, '2020-12-09 04:02:20', 0, NULL, 0, NULL, 1),
(1222, 2395, 'SA EON SOFTTECH', 'SEO ANALYST', '2019-09-16', 20000.00, '1970-01-01', 20000.00, 'CHENNAI', '2', '1 years 2 months', ' Due to covid 19', 1, '2020-12-09 04:42:11', 0, NULL, 0, NULL, 1),
(1223, 2398, 'Comodo', 'Malware Research', '2018-10-01', 18000.00, '2019-01-10', 18000.00, 'Chennai', '1', '0 years 3 months', ' Lay off', 1, '2020-12-09 06:51:45', 0, NULL, 0, NULL, 1),
(1224, 2398, 'Reddx Technology', 'Full stack developer', '2019-06-01', 22000.00, '1970-01-01', 22000.00, 'Chennai', '2', '1 years 6 months', 'Career Growth', 1, '2020-12-09 06:53:19', 0, NULL, 0, NULL, 1),
(1225, 2399, 'Star health and allied insurance company limited', 'Tele caller', '2019-06-06', 10000.00, '1970-01-01', 12000.00, 'Kodampakkam', '2', '1 years 6 months', ' ', 1, '2020-12-09 11:03:51', 0, NULL, 0, NULL, 1),
(1226, 2404, 'Kotak Mahindra Bank (IVANGEL SALES AND SERVICES)', 'Sales executive', '2019-06-14', 16500.00, '1970-01-01', 16500.00, 'Chennai', '2', '1 years 5 months', ' Not salary increment then this is Offroll job', 1, '2020-12-10 12:23:48', 0, NULL, 0, NULL, 1),
(1227, 2408, 'KSR INSTITUTE FOR ENGINEERING AND TECHNOLOGY ', 'Assistant professor ', '2016-06-01', 18.60, '1970-01-01', 18.60, 'TIRUCHENGODE ', '2', '4 years 6 months', ' Willing to work in Industry/company related administration and HR job.', 1, '2020-12-10 12:46:38', 0, NULL, 0, NULL, 1),
(1228, 2405, 'Unique agancy', 'Telemarketing', '2017-06-22', 13.00, '2020-09-10', 15000.00, 'Old washarmenpet', '1', '3 years 2 months', 'Long distance', 1, '2020-12-10 12:48:26', 0, NULL, 0, NULL, 1),
(1229, 2407, 'ICICI PRUDENTIAL LIFE INSURANCE', 'FCS', '2020-09-08', 17680.00, '1970-01-01', 17680.00, 'Chennai', '2', '0 years 3 months', ' I am interested in computer field ,sales Job is also good ,but my intrest to sit on front of the computer', 1, '2020-12-10 01:22:05', 0, NULL, 0, NULL, 1),
(1230, 2409, 'Ksr Institute for Engineering and Technology ', 'Assistant professor', '2016-06-01', 18.60, '1970-01-01', 18.60, 'Tiruchengode', '2', '4 years 6 months', ' Willing to work in industry/company administration and HR related job', 1, '2020-12-10 01:27:51', 0, NULL, 0, NULL, 1),
(1231, 2429, 'Technoarete R & D Association', 'Digital marketing executive', '2019-06-21', 16000.00, '2020-11-30', 18000.00, 'Anna Nagar', '1', '1 years 5 months', ' Looking for carrier growth ', 1, '2020-12-11 11:52:26', 0, NULL, 0, NULL, 1),
(1232, 2317, 'home furnishings', 'co founder', '2016-05-01', 20000.00, '2017-12-30', 20000.00, 'noida ', '1', '1 years 7 months', ' It was a startup founded by myself with 2 other batchmates. we shut down the business when we left college.', 1, '2020-12-11 12:56:20', 0, NULL, 0, NULL, 1),
(1233, 2317, 'demeter food pvt ltd ', 'head of operations ', '2018-12-01', 15000.00, '1970-01-01', 25000.00, 'bangalore ', '2', '2 years 0 months', 'covid-19', 1, '2020-12-11 12:57:29', 0, NULL, 0, NULL, 1),
(1234, 2318, 'avail finance', 'operation associat', '2019-07-10', 30000.00, '2020-03-05', 30000.00, 'koramangala', '1', '0 years 7 months', ' covid situation', 1, '2020-12-11 01:00:08', 0, NULL, 0, NULL, 1),
(1235, 2318, 'avail finance', 'operation associate', '2019-07-10', 30000.00, '2020-03-10', 30000.00, 'Koramangala', '1', '0 years 8 months', 'covid situation', 1, '2020-12-11 01:01:48', 58, '2020-12-11 01:02:55', 0, NULL, 0),
(1236, 2336, 'Aegonlife insurance', 'Relationship manager', '2019-06-06', 30000.00, '2020-12-04', 25000.00, 'Mg road banglore', '1', '1 years 5 months', ' ', 1, '2020-12-11 01:31:42', 0, NULL, 0, NULL, 1),
(1237, 2432, 'Team computers pvt ltd', 'Desktop support Engineer', '2019-12-17', 10000.00, '1970-01-01', 10000.00, 'Chennai', '2', '0 years 11 months', 'Client site closed to coming jan', 1, '2020-12-11 01:45:55', 0, NULL, 0, NULL, 1),
(1238, 2437, 'Calibher business support Pvt Ltd.', 'Pesudo supervisor', '2020-03-09', 17000.00, '2020-09-20', 17000.00, 'Mylapore', '1', '0 years 6 months', ' Personal reasons', 1, '2020-12-11 01:56:10', 0, NULL, 0, NULL, 1),
(1239, 2435, 'one way drop taxi', 'digital marketing executive ', '2017-09-01', 12000.00, '2019-12-30', 20000.00, 'chennai', '1', '2 years 3 months', ' My previous company shift our home branch to madurai. so i don\'t want to work in madurai location.', 1, '2020-12-11 02:10:52', 0, NULL, 0, NULL, 1),
(1240, 2435, 'right pitch digital private limited', 'digital marketing executive ', '2020-01-20', 20000.00, '2020-08-31', 20000.00, 'chennai', '1', '0 years 7 months', 'after corona my management can\'t pay salary on time. then my management say to try another company so i resign my job.', 1, '2020-12-11 02:14:00', 0, NULL, 0, NULL, 1),
(1241, 2438, 'lava mobiles', 'd g m', '2011-01-10', 1100000.00, '2012-03-11', 1124000.00, 'chennai', '1', '1 years 2 months', 'organisation restructure', 1, '2020-12-11 03:13:39', 0, NULL, 0, NULL, 1),
(1242, 2438, 'univercell mobiles', 'senior manager', '2012-08-06', 850000.00, '2015-02-04', 986000.00, 'chennai', '1', '2 years 5 months', 'Better prospects', 1, '2020-12-11 03:16:06', 0, NULL, 0, NULL, 1),
(1243, 2438, 'bhartiaxa life insurance', 'branch head', '2015-02-05', 1090000.00, '2020-08-17', 1200000.00, 'chennai', '1', '5 years 6 months', 'better prospects', 1, '2020-12-11 03:18:31', 0, NULL, 0, NULL, 1),
(1244, 2433, 'thinkcomm', 'scm', '2020-02-01', 15000.00, '2020-08-31', 0.00, 'aminjikarai', '1', '0 years 6 months', 'layoff', 7, '2020-12-11 05:06:34', 0, NULL, 0, NULL, 1),
(1245, 2448, 'suresh engineering company', 'digital marketing  Executive', '2018-05-02', 25000.00, '2020-08-01', 25000.00, 'chennai', '1', '2 years 2 months', ' started  a small  business  and it was not successfull as i wished.', 1, '2020-12-11 06:54:36', 0, NULL, 0, NULL, 1),
(1246, 2453, 'CAMS Ltd.', 'Customer Service Associate', '2019-08-13', 12000.00, '2020-11-23', 15000.00, 'Chennai', '1', '1 years 3 months', ' Looking for organisation  which has Growth.', 1, '2020-12-11 08:12:26', 0, NULL, 0, NULL, 1),
(1247, 2382, 'Pepsico', 'Psr', '2019-05-01', 15000.00, '1970-01-01', 20000.00, 'Chennai,otteri', '2', '1 years 7 months', ' Off role ', 1, '2020-12-11 09:25:46', 0, NULL, 0, NULL, 1),
(1248, 2456, 'Bristol healthcare service', 'Digital marketing analyst', '2019-07-17', 25762.00, '2020-03-17', 25762.00, 'Chennai', '1', '0 years 8 months', ' Got an offer from another company..', 1, '2020-12-12 10:20:59', 0, NULL, 0, NULL, 1),
(1249, 2456, 'Vanan online service', 'SEO analyst', '2016-08-17', 10000.00, '2019-04-30', 13000.00, 'Chennai', '1', '2 years 8 months', 'Got offer in another company', 1, '2020-12-12 10:24:27', 0, NULL, 0, NULL, 1),
(1250, 2458, 'Nexus Innovative solutions private limited', 'Purchase executive', '2015-06-01', 8500.00, '2017-10-07', 12500.00, 'Mylapore', '1', '2 years 4 months', ' Chicken fox and change of designation', 1, '2020-12-12 10:52:01', 0, NULL, 0, NULL, 1),
(1251, 2458, 'Dev system and IT solutions Pvt ltd', 'Purchase cum Sales', '2018-05-01', 15000.00, '2018-09-11', 15000.00, 'West mambalam', '1', '0 years 4 months', 'Personal reasons', 1, '2020-12-12 10:55:28', 0, NULL, 0, NULL, 1),
(1252, 2458, 'Supreme computers india Pvt Ltd', 'Customer relationship executive', '2019-03-27', 16000.00, '1970-01-01', 16000.00, 'Egmore', '2', '1 years 8 months', 'Next step of career', 1, '2020-12-12 10:56:40', 0, NULL, 0, NULL, 1),
(1253, 2461, 'coueze ', 'bde', '2019-06-01', 20000.00, '1970-01-01', 20000.00, 'chennai', '2', '1 years 6 months', ' ', 1, '2020-12-12 11:18:13', 0, NULL, 0, NULL, 1),
(1254, 2459, 'zeft', 'digital marketing', '2020-09-01', 13500.00, '1970-01-01', 13500.00, 'pallikaranai', '2', '0 years 3 months', ' no', 1, '2020-12-12 12:00:59', 0, NULL, 0, NULL, 1),
(1255, 2466, 'Bajaji finances', 'Tele caller', '2020-12-12', 13.00, '1970-01-01', 15.00, 'Velachery', '2', '0 years 0 months', ' Long distance', 1, '2020-12-12 12:23:53', 0, NULL, 0, NULL, 1),
(1256, 2480, 'Bharat matrimony. Com', 'Telecalling Executive', '2018-12-31', 12000.00, '1970-01-01', 12000.00, 'Guindy', '2', '1 years 11 months', ' I\'m searching for good knowledgeable company ', 1, '2020-12-12 04:01:10', 0, NULL, 0, NULL, 1),
(1257, 2480, 'Just dial LTD', 'telecalling Executive', '2019-06-05', 14000.00, '2020-12-10', 15000.00, 'Little mount  saidapet', '1', '1 years 6 months', 'Salary issue', 1, '2020-12-12 04:02:59', 0, NULL, 0, NULL, 1),
(1258, 2479, 'Customer Relation officer ', 'Loan Collections', '2019-07-19', 12000.00, '2020-12-05', 12800.00, 'AKR Tech Park ', '1', '1 years 4 months', 'Facing salary issues & no growth of employee ', 1, '2020-12-12 04:12:04', 0, NULL, 0, NULL, 1),
(1259, 2481, 'pubblisher', 'digital accountmanager', '2019-05-05', 35000.00, '2020-02-29', 35000.00, 'chennai', '1', '0 years 9 months', ' Number of projects declined so i quit.', 1, '2020-12-12 05:22:21', 0, NULL, 0, NULL, 1),
(1260, 2452, 'CSEG', 'Research Analyst', '2016-03-01', 12000.00, '1970-01-01', 35000.00, 'Chennai', '2', '4 years 9 months', ' Current organisation is facing financial difficulty. I\'m not getting salary consistently', 1, '2020-12-14 09:18:34', 0, NULL, 0, NULL, 1),
(1261, 2485, 'Emishper Raj ', 'System administrator ', '2020-02-10', 20000.00, '2020-07-31', 20000.00, 'Chennai', '1', '0 years 5 months', 'Reason for Corona virus ', 1, '2020-12-14 11:22:02', 0, NULL, 0, NULL, 1),
(1262, 2487, 'Vatika business centre', 'Desktop support engineer L2', '2020-06-01', 24000.00, '2020-08-31', 24000.00, 'Chennai', '1', '0 years 6 months', ' Covid 19', 1, '2020-12-14 11:29:11', 0, NULL, 0, NULL, 1),
(1263, 2491, 'Thinksynq solutions ', 'Quality analyst ', '2017-05-05', 10500.00, '2020-08-08', 18000.00, 'Royapettah', '1', '3 years 3 months', 'To build a career ', 1, '2020-12-14 12:20:26', 0, NULL, 0, NULL, 1),
(1264, 2484, 'Matrimony.com ', 'Senior digital marketing analyst', '2020-02-27', 29400.00, '2020-12-02', 29400.00, 'Mandaveli', '1', '0 years 9 months', ' Due to Corona issue', 1, '2020-12-14 12:33:32', 0, NULL, 0, NULL, 1),
(1265, 2484, 'Amarprakash developer Pvt Ltd', 'Senior digital marketing executive', '2019-04-12', 23000.00, '2020-02-26', 23000.00, 'Chromepet', '1', '0 years 10 months', 'Salary issues', 1, '2020-12-14 12:37:48', 0, NULL, 0, NULL, 1),
(1266, 2484, 'Clorida Infotech ', 'Senior SEO analyst', '2017-05-06', 5000.00, '2019-03-30', 12000.00, 'Kodambakkam', '1', '1 years 10 months', 'Project close', 1, '2020-12-14 12:40:15', 0, NULL, 0, NULL, 1),
(1267, 2493, 'Manappuram finance limited ', 'Junior staff', '2020-12-14', 12500.00, '1970-01-01', 10.00, 'Vadapalani ', '2', '0 years 0 months', ' ', 1, '2020-12-14 12:57:24', 0, NULL, 0, NULL, 1),
(1268, 2494, 'Kpr real value private limited ', 'Tellecaller', '2019-01-07', 12000.00, '2020-05-20', 12000.00, 'Valasaravakkam ', '1', '1 years 4 months', ' Long distance ', 1, '2020-12-14 01:17:22', 0, NULL, 0, NULL, 1),
(1269, 2501, 'iec abroad saudi arabia', 'digital marketing project management ', '2019-04-24', 24042019.00, '2020-08-01', 40000.00, 'chennai', '1', '1 years 3 months', ' Stay for studyabroad students in saudi arabia', 1, '2020-12-14 04:34:58', 0, NULL, 0, NULL, 1),
(1270, 2511, 'Spynest', 'Quality analyst', '2019-03-16', 12800.00, '1970-01-01', 16000.00, 'Amijikarai', '2', '1 years 8 months', ' Am inconvenient with the nightshift due to health problem ', 1, '2020-12-15 11:05:12', 0, NULL, 0, NULL, 1),
(1271, 2511, 'Spynest solution', 'Quality analyst', '2019-03-16', 12800.00, '1970-01-01', 16000.00, 'Ambjikkarai', '2', '1 years 8 months', 'Am inconvenient with the night shift \nDue to my health problem ', 1, '2020-12-15 11:07:24', 0, NULL, 0, NULL, 1),
(1272, 2513, 'h g s', 'technical support executive ', '2018-03-29', 11000.00, '2018-11-01', 11000.00, 'bangalore ', '1', '0 years 7 months', ' process was shutdown.', 1, '2020-12-15 11:50:28', 0, NULL, 0, NULL, 1),
(1273, 2513, 'indianmoney.com', 'relationship manager', '2019-06-29', 18000.00, '2020-08-25', 18000.00, 'bangalore ', '1', '1 years 1 months', 'some family issues', 1, '2020-12-15 11:56:15', 0, NULL, 0, NULL, 1),
(1274, 2514, 'Indianmoney.Com', 'Relationship manager', '2019-07-15', 16000.00, '2020-09-24', 16000.00, 'Shantinagara', '1', '1 years 2 months', 'Family health issue ', 1, '2020-12-15 12:16:54', 0, NULL, 0, NULL, 1),
(1275, 2516, 'Mobivantage technology', 'Php developer', '2019-06-01', 1.00, '2020-12-31', 1.00, 'Chennai', '1', '1 years 6 months', ' Salary problem', 1, '2020-12-15 12:23:16', 0, NULL, 0, NULL, 1),
(1276, 2520, 'Finfort infotech lLP', 'Customer support representative', '2020-12-15', 13000.00, '2020-12-31', 17000.00, 'Koramangala', '1', '0 years 0 months', 'Work environment', 1, '2020-12-15 02:00:27', 0, NULL, 0, NULL, 1),
(1277, 2522, 'first source pvt ltd', 'customer service associte', '2015-12-28', 10000.00, '2017-03-21', 10000.00, 'chennai', '1', '1 years 2 months', ' ', 1, '2020-12-15 03:55:28', 0, NULL, 0, NULL, 1),
(1278, 2522, 'hapag lloyd ', 'customer service', '2017-08-09', 15000.00, '2019-02-04', 15000.00, 'chennai', '1', '1 years 5 months', 'My mom got sick. Immediate surgery. I had to take care of her. ', 1, '2020-12-15 03:59:01', 0, NULL, 0, NULL, 1),
(1279, 2522, 'uniqwebtech', 'seo executive', '2019-07-21', 10000.00, '1970-01-01', 12000.00, 'chennai', '2', '1 years 4 months', 'Would like to work all The digital m fields. Here they have Divided the works to Do respective people. ', 1, '2020-12-15 04:02:32', 0, NULL, 0, NULL, 1),
(1280, 2519, 'Claritaz techlabs Pvt ltd', 'Senior software engineer', '2016-12-27', 10000.00, '2020-09-10', 445000.00, 'Chennai', '1', '3 years 8 months', ' No work in my project', 1, '2020-12-15 05:17:22', 0, NULL, 0, NULL, 1),
(1281, 2535, 'Paragon digital services', 'Process executive', '2017-09-09', 18000.00, '2020-04-03', 23500.00, 'Chennai', '1', '2 years 6 months', ' Night shift', 1, '2020-12-16 10:33:22', 0, NULL, 0, NULL, 1),
(1282, 2490, 'dhyan info solutions', 'seo anaylst', '2018-03-12', 15000.00, '1970-01-01', 30000.00, 'nunampakkamg', '2', '2 years 9 months', ' ', 1, '2020-12-16 11:54:18', 0, NULL, 0, NULL, 1),
(1283, 2539, 'Hdfc ergo general insurance ', 'Customer support executive', '2017-12-11', 14000.00, '1970-01-01', 17000.00, 'Guindy', '2', '3 years 0 months', ' They are not providing a proper salary. That is the main reason I decided to move on. ', 1, '2020-12-16 11:57:06', 0, NULL, 0, NULL, 1),
(1284, 2539, 'Lapiz', 'Customer support', '2016-08-19', 10000.00, '2017-12-10', 10000.00, 'Guindy', '1', '1 years 3 months', 'There was not having any type of  carrier growth. ', 1, '2020-12-16 11:59:56', 0, NULL, 0, NULL, 1),
(1285, 2518, 'Allnet business solutions', 'Telecaller', '2018-05-18', 9000.00, '2018-12-27', 10000.00, 'Teynempet', '1', '0 years 7 months', ' Not sufficient ', 1, '2020-12-16 12:06:03', 0, NULL, 0, NULL, 1),
(1286, 2540, 'Make my trip ', 'Sales Executive ', '2014-06-01', 10000.00, '2018-11-15', 21000.00, 'Chennai ', '1', '4 years 5 months', ' Accident ', 1, '2020-12-16 12:08:38', 0, NULL, 0, NULL, 1),
(1287, 2518, 'Allnet business solutions', 'Telecaller', '2018-05-18', 9000.00, '2018-12-27', 10000.00, 'Teynempet', '1', '0 years 7 months', 'Not sufficient', 1, '2020-12-16 12:09:03', 0, NULL, 0, NULL, 1),
(1288, 2542, 'Saveetha Engineering College ', 'Digital marketing', '2020-05-19', 22000.00, '2020-11-25', 22000.00, 'Chennaj', '1', '0 years 6 months', ' I started as a support to admission and since admissions are over, I am shifting!', 1, '2020-12-16 12:21:18', 0, NULL, 0, NULL, 1),
(1289, 2538, 'p.pradeep', 'machine operater', '2020-09-05', 12000.00, '1970-01-01', 12500.00, 'chennai', '2', '0 years 3 months', ' ', 1, '2020-12-16 12:25:49', 0, NULL, 0, NULL, 1),
(1290, 2543, 'Paytm', 'Field sales executive', '2019-11-13', 20000.00, '2020-10-13', 20000.00, 'Electronic city ', '1', '0 years 11 months', ' Due to corona crisis left the job ', 1, '2020-12-16 12:34:50', 0, NULL, 0, NULL, 1),
(1291, 2552, 'e search advisors', 'digital marketing specialist', '2020-01-06', 400000.00, '1970-01-01', 400000.00, 'chennai', '2', '0 years 11 months', ' Looking for a better opportunity', 1, '2020-12-16 05:28:09', 0, NULL, 0, NULL, 1),
(1292, 2552, 'smartclass educational services pvt. ltd.', 'sr. executive training manager', '2017-06-05', 375000.00, '2018-09-30', 385000.00, 'chennai', '1', '1 years 3 months', 'Maternity ', 1, '2020-12-16 05:31:11', 0, NULL, 0, NULL, 1),
(1293, 2552, 'infosys bpo limited', 'sr. process executive', '2016-06-05', 320000.00, '2016-11-15', 320000.00, 'chennai', '1', '0 years 5 months', 'night shift', 1, '2020-12-16 05:37:56', 0, NULL, 0, NULL, 1),
(1294, 2557, 'Armsoftech ', 'Telecaller', '2020-09-15', 13000.00, '2020-12-05', 11500.00, 'Perungudi ', '1', '0 years 2 months', ' Salary issue ', 1, '2020-12-16 06:19:07', 0, NULL, 0, NULL, 1),
(1295, 2558, 'HDFC ERGO', 'Customer specialist desk', '2017-12-11', 13000.00, '1970-01-01', 13000.00, 'Guindy', '2', '3 years 0 months', ' ', 1, '2020-12-16 07:46:26', 0, NULL, 0, NULL, 1),
(1296, 2558, 'Hdfc Ergo', 'Customer specialist desk', '2017-12-11', 13000.00, '1970-01-01', 13000.00, 'Guindy', '2', '3 years 0 months', 'Less salary', 1, '2020-12-16 07:47:47', 0, NULL, 0, NULL, 1),
(1297, 2560, 'Muthoot fincorp', 'Joint costodian', '2015-09-17', 10000.00, '2016-12-08', 13000.00, 'Tnagar', '1', '1 years 2 months', ' Health  issues', 1, '2020-12-17 11:18:26', 0, NULL, 0, NULL, 1),
(1298, 2572, 'Webrivers Pvt Ltd', 'We developer', '2020-09-07', 25000.00, '2020-12-15', 25000.00, 'Chennai', '1', '0 years 3 months', 'Salary delay', 1, '2020-12-17 05:14:53', 0, NULL, 0, NULL, 1),
(1299, 2559, 'bajaj housing loan', 'psf', '2020-01-15', 145.00, '2020-09-10', 14500.00, 'chennai', '1', '0 years 7 months', ' Personal issue', 1, '2020-12-17 11:33:44', 0, NULL, 0, NULL, 1),
(1300, 2582, 'Vizza insurance ', 'Sale\'s ', '2020-08-26', 10000.00, '2020-12-07', 10000.00, 'Kodambakkam ', '1', '0 years 3 months', ' No Insendive ', 1, '2020-12-18 11:24:56', 0, NULL, 0, NULL, 1),
(1301, 2580, 'Muthoot fincorp ltd', 'Customer service executive ', '2015-10-30', 10000.00, '2017-05-24', 12000.00, 'Chennai', '1', '1 years 6 months', 'Low salary', 1, '2020-12-18 11:50:46', 0, NULL, 0, NULL, 1),
(1302, 2580, 'Icici bank ltd', 'Sales officer ', '2017-06-06', 15000.00, '2018-08-15', 15000.00, 'Chennai', '1', '1 years 2 months', 'Field work', 1, '2020-12-18 11:53:03', 0, NULL, 0, NULL, 1),
(1303, 2564, 'Fretus folks India ', 'HR recruiter', '2019-10-07', 15000.00, '1970-01-01', 15000.00, 'ashok Nagar', '2', '1 years 2 months', 'Covid - 19 Pandamic', 1, '2020-12-18 11:54:25', 0, NULL, 0, NULL, 1),
(1304, 2580, 'I process service india pvt ltd', 'Senior Sales officer', '2018-11-13', 18000.00, '2020-09-16', 20000.00, 'Chennai', '1', '1 years 10 months', 'Field work', 1, '2020-12-18 11:56:59', 0, NULL, 0, NULL, 1),
(1305, 2564, 'Fretus folks India ', 'HR RECRUITER', '2019-10-07', 15000.00, '2020-10-18', 15000.00, 'ashok nagar', '1', '1 years 0 months', 'Personal problem ', 1, '2020-12-18 11:58:19', 0, NULL, 0, NULL, 1),
(1306, 2585, 'Amazon Pay (Prione business services) ', 'Team Leader', '2019-07-23', 30000.00, '2020-07-23', 30000.00, 'Nungambakkam ', '1', '1 years 0 months', ' For covid pandemic they are reduced most of employees ', 1, '2020-12-18 12:00:46', 0, NULL, 0, NULL, 1),
(1307, 2584, 'Daily ninja', 'TL', '2018-11-19', 24000.00, '2020-10-02', 32000.00, 'Gundy', '1', '1 years 10 months', ' Fire for Covid 19', 1, '2020-12-18 12:11:07', 0, NULL, 0, NULL, 1),
(1308, 2571, 'jarulss technology solutions', 'junior php developer', '2018-08-20', 10990.00, '1970-01-01', 15500.00, 'arumbakam', '2', '2 years 3 months', 'salary appraisal and \nlearn new technology.', 1, '2020-12-18 12:30:11', 0, NULL, 0, NULL, 1),
(1309, 2592, 'Department of posts', 'Sorting assistant', '2015-03-15', 30000.00, '1970-01-01', 40000.00, 'Chennai', '2', '5 years 9 months', ' Freelancing', 1, '2020-12-18 03:32:02', 0, NULL, 0, NULL, 1),
(1310, 2595, 'Chettinad Logistics Pvt ltd', 'Software developer', '2019-08-01', 32000.00, '2020-07-31', 32000.00, 'Chennai', '1', '0 years 11 months', ' This Covid there is no out source Project. And cost effective.', 1, '2020-12-18 05:26:57', 0, NULL, 0, NULL, 1),
(1311, 2597, 'web india infotech', 'digital marketing analyst', '2020-01-03', 14000.00, '2020-05-31', 2000.00, 'arumbakkam', '2', '0 years 11 months', 'searching  office job', 1, '2020-12-18 06:17:19', 0, NULL, 0, NULL, 1),
(1312, 2597, 'jayam web Solutions', 'seo analyst', '2017-02-09', 8000.00, '2019-12-31', 14000.00, 'tambaram', '1', '2 years 10 months', 'for office timing not support', 1, '2020-12-18 06:18:42', 0, NULL, 0, NULL, 1),
(1313, 2599, 'bigziel technology', 'senior digital markekter', '2018-06-12', 8000.00, '1970-01-01', 20000.00, 'chennai', '2', '2 years 6 months', ' looking for career boasting', 1, '2020-12-18 06:45:55', 0, NULL, 0, NULL, 1),
(1314, 2600, 'Netaxis IT solutions P LTD', 'Digital marketing Executive', '2019-08-19', 144000.00, '2020-03-19', 144000.00, 'Anna nagar, Chennai', '1', '0 years 7 months', ' Project Drop due to lack of man power(Covid- 19) ', 1, '2020-12-18 06:56:13', 0, NULL, 0, NULL, 1),
(1315, 2598, 'india ahead news', 'business development executive', '2019-02-21', 600000.00, '2019-07-24', 600000.00, 'chennai', '1', '0 years 5 months', 'Got a job opportunity in the desired role as a digital  marketer', 1, '2020-12-19 12:23:07', 0, NULL, 0, NULL, 1),
(1316, 2598, 'smart creations', 'digital marketing executive', '2019-08-08', 300000.00, '1970-01-01', 300000.00, 'chennai', '2', '1 years 4 months', 'Looking for better opportunities ', 1, '2020-12-19 12:25:11', 0, NULL, 0, NULL, 1),
(1317, 2607, 'Exide', 'Advisor', '2017-07-05', 15000.00, '2018-12-19', 20000.00, 'Adyar', '1', '1 years 5 months', ' For onrole job', 1, '2020-12-19 03:01:58', 0, NULL, 0, NULL, 1),
(1318, 2607, 'Exide', 'Chennai', '2017-07-05', 15000.00, '2019-03-22', 20000.00, 'Adyar', '1', '1 years 8 months', 'For onrole job', 1, '2020-12-19 03:08:25', 0, NULL, 0, NULL, 1),
(1319, 2609, 'Mohan\'s Magic Academy', 'Proprator', '2017-12-11', 20.00, '2020-01-19', 20000.00, 'Triplicane', '1', '2 years 1 months', 'Need a better salary', 1, '2020-12-19 03:46:12', 0, NULL, 0, NULL, 1),
(1320, 2617, 'Efficient Management consultancy', 'Office Executive', '2012-09-17', 10000.00, '2013-09-30', 13000.00, 'Saidapet', '1', '1 years 0 months', 'Carrier growth - to seeking next level of the work', 1, '2020-12-19 08:32:18', 0, NULL, 0, NULL, 1),
(1321, 2617, 'Aarai solutions', 'Search engine analyst', '2013-10-14', 7000.00, '2016-05-08', 9500.00, 'Avadi', '1', '2 years 6 months', 'Very Lowest salary without benifits Even in night shifts', 1, '2020-12-19 08:41:06', 0, NULL, 0, NULL, 1),
(1322, 2617, 'RAA Hardwares & Automation Pvt. Ltd.,', 'Ecommerce-cum-SEO Analyst', '2017-04-01', 18000.00, '1970-01-01', 24000.00, 'Teynampet', '2', '3 years 8 months', 'Carrier growth', 1, '2020-12-19 08:43:51', 0, NULL, 0, NULL, 1),
(1323, 2618, 'Ezone Training', 'Digital marketing Executive ', '2020-01-01', 18000.00, '1970-01-01', 25000.00, 'Chennai', '2', '0 years 11 months', ' Aiming for higher growth', 1, '2020-12-20 08:29:26', 0, NULL, 0, NULL, 1),
(1324, 2614, 'xtreme solutions', 'teamleader', '2018-02-17', 15000.00, '2020-05-21', 24600.00, 'chennai', '1', '2 years 3 months', 'Salary not given ', 1, '2020-12-21 08:35:15', 0, NULL, 0, NULL, 1),
(1325, 2622, 'indusind bank', 'client account officer', '2019-07-22', 16500.00, '2020-10-21', 16500.00, 'omr', '1', '1 years 2 months', ' Better package', 1, '2020-12-21 10:19:50', 0, NULL, 0, NULL, 1),
(1326, 2606, 'samasta micro finance ltd', 'cro', '2019-07-08', 10000.00, '2020-01-09', 13000.00, 'tambaram', '1', '0 years 6 months', ' loacation was too long', 1, '2020-12-21 10:55:42', 0, NULL, 0, NULL, 1),
(1327, 2577, 'sphinax info systems', 'php developer', '2019-10-30', 25000.00, '1970-01-01', 25000.00, 'chennai', '2', '1 years 1 months', ' ', 1, '2020-12-21 11:06:39', 0, NULL, 0, NULL, 1),
(1328, 2619, 'bajaj electricals', 'management trainee', '2019-05-06', 450000.00, '2020-10-02', 450000.00, 'delhi', '1', '1 years 4 months', ' Was required to report at Delhi during COVID as i had health issues i had to resign', 1, '2020-12-21 11:07:31', 1, '2020-12-21 11:08:03', 0, NULL, 1),
(1329, 2625, 'dk intellectual services', 'php consultant', '2020-07-15', 250000.00, '2020-12-01', 250000.00, 'perungudi', '1', '0 years 4 months', ' didn\'t give salary', 1, '2020-12-21 11:29:20', 0, NULL, 0, NULL, 1),
(1330, 2627, 'Siet college', 'Purchase head', '2019-08-19', 16000.00, '2020-12-21', 16000.00, 'Chennai', '1', '1 years 4 months', ' No growth', 1, '2020-12-21 11:43:06', 0, NULL, 0, NULL, 1),
(1331, 2515, 'shriram transport finance company', 'junior relutiveationship exec', '2019-07-28', 13000.00, '2020-05-20', 13000.00, 'vandalur', '1', '0 years 9 months', ' covid19', 1, '2020-12-21 11:58:33', 0, NULL, 0, NULL, 1),
(1332, 2628, 'Borneo Kinmewah ', 'Purchase Executive', '2007-12-03', 15000.00, '2010-07-25', 50000.00, 'Malaysia', '1', '2 years 7 months', ' Due to marriage', 1, '2020-12-21 12:24:45', 0, NULL, 0, NULL, 1),
(1333, 2628, 'Syed Groub of company', 'Account assistant', '2011-07-11', 18000.00, '2014-06-15', 50000.00, 'India', '1', '2 years 11 months', 'Due to earning more purpose', 1, '2020-12-21 12:26:34', 0, NULL, 0, NULL, 1),
(1334, 2628, 'Popley Jewellery LLC', 'Sales executive ', '2015-05-17', 45000.00, '2017-10-17', 50000.00, 'Dubai', '1', '2 years 5 months', 'Due to no commission ', 1, '2020-12-21 12:28:07', 0, NULL, 0, NULL, 1),
(1335, 2628, 'Globe marine company', 'Documentation supervisor', '2017-12-13', 50000.00, '2019-07-13', 50000.00, 'Saudi arabia', '1', '1 years 7 months', 'Due to settled india', 1, '2020-12-21 12:30:28', 0, NULL, 0, NULL, 1),
(1336, 2630, 'Teamlease services ', 'Business relationship executive', '2019-03-18', 20000.00, '2020-11-10', 20000.00, 'Chennai', '1', '1 years 7 months', ' No growth', 1, '2020-12-21 12:51:05', 0, NULL, 0, NULL, 1),
(1337, 2633, 'AGS Healthcare ', 'Junior Process Associate ', '2016-12-10', 12000.00, '2020-10-03', 20000.00, 'Chennai', '1', '3 years 9 months', ' Personal reason ', 1, '2020-12-21 01:05:13', 0, NULL, 0, NULL, 1),
(1338, 2631, 'CFirst Background Checks LLP ', 'Executive-Client Services ', '2019-06-03', 12100.00, '2020-01-31', 12100.00, 'Bangalore ', '1', '0 years 7 months', 'Personal Issues ', 1, '2020-12-21 01:07:45', 0, NULL, 0, NULL, 1),
(1339, 2634, 'kcr consultants', 'it manager', '2014-04-14', 20000.00, '2020-09-30', 40000.00, 'chennai', '1', '6 years 5 months', ' ', 1, '2020-12-21 02:09:07', 0, NULL, 0, NULL, 1),
(1340, 2652, 'Secutech system and solutions', 'Digital marketing executive', '2019-11-01', 24000.00, '2020-07-31', 24000.00, 'Chennai', '1', '0 years 8 months', ' For covid19 issues', 1, '2020-12-21 10:53:47', 0, NULL, 0, NULL, 1),
(1341, 2654, 'Prodigy apex', 'SEO Executive', '2012-12-14', 8000.00, '2014-02-06', 10000.00, 'Chennai', '1', '1 years 1 months', ' Change of office location', 1, '2020-12-22 10:50:09', 0, NULL, 0, NULL, 1),
(1342, 2656, 'Mahindra & Mahindra', 'Sales Executive', '2020-01-06', 3.25, '2020-09-30', 3.25, 'Chennai', '1', '0 years 8 months', ' Due to COVID-19', 1, '2020-12-22 10:50:51', 0, NULL, 0, NULL, 1),
(1343, 2654, 'Shareway securities Pvt ltd', 'SEO Analyst', '2014-02-09', 14000.00, '2014-07-31', 14000.00, 'Chennai', '1', '0 years 5 months', 'Contract over', 1, '2020-12-22 10:53:09', 0, NULL, 0, NULL, 1),
(1344, 2656, 'Ashok Leyland', 'Sales Executive', '2017-06-01', 1.50, '2020-12-31', 2.10, 'Chennai', '1', '3 years 6 months', 'Got another opportunity', 1, '2020-12-22 10:53:24', 0, NULL, 0, NULL, 1),
(1345, 2654, 'Folksco technology group', 'SEO manager', '2014-08-11', 15500.00, '2015-09-30', 20500.00, 'Chennai', '1', '1 years 1 months', 'Career growth', 1, '2020-12-22 10:55:26', 0, NULL, 0, NULL, 1),
(1346, 2654, 'Openwave computing llc', 'Senior SEO Analyst', '2016-01-21', 20000.00, '2018-05-31', 24500.00, 'Chennai', '1', '2 years 4 months', 'Maternity', 1, '2020-12-22 10:57:12', 0, NULL, 0, NULL, 1),
(1347, 2654, 'Inksplore - Freelance', 'Digital Marketing', '2018-12-03', 30000.00, '2020-11-30', 30000.00, 'Chennai', '1', '1 years 11 months', 'Looking for full-time opportunity', 1, '2020-12-22 10:59:57', 0, NULL, 0, NULL, 1),
(1348, 2662, 'aagna  global solutions', 'process associate', '2018-04-10', 15.00, '2019-12-11', 13000.00, 'medavakkam', '1', '1 years 8 months', ' ', 1, '2020-12-22 12:45:18', 0, NULL, 0, NULL, 1),
(1349, 2667, 'computer age management services', 'apo', '2018-10-22', 160000.00, '2020-12-04', 165000.00, 'chennai', '1', '2 years 1 months', ' Personal issue and Continuously working 8 month night shift without any leave . No one care About my health  so Im relieving. ', 1, '2020-12-22 04:08:06', 0, NULL, 0, NULL, 1),
(1350, 2673, 'Sharptronics', 'Auditing & cashier', '2018-11-01', 14500.00, '2019-11-22', 17500.00, 'Porur', '1', '2 years 1 months', ' Timing not comfortable', 1, '2020-12-22 05:28:52', 0, NULL, 0, NULL, 1),
(1351, 2673, 'Axis bank', 'Sales executive', '2019-12-27', 17500.00, '1970-01-01', 17500.00, 'Kodambakkam', '2', '0 years 11 months', 'Salary not comfortable', 1, '2020-12-22 05:30:49', 0, NULL, 0, NULL, 1),
(1352, 2675, 'Axis bank', 'Sales executive', '2020-03-20', 17500.00, '1970-01-01', 17500.00, 'Chennai', '2', '0 years 9 months', ' Salary not comfortable', 1, '2020-12-22 05:58:10', 0, NULL, 0, NULL, 1),
(1353, 2674, 'Axis bank ', 'Sales executive', '2020-01-07', 17500.00, '1970-01-01', 17500.00, 'Chennai', '2', '0 years 11 months', ' Salary not comfortable', 1, '2020-12-22 06:11:21', 0, NULL, 0, NULL, 1),
(1354, 2680, 'invicara/ livia spaces', 'business development', '2019-01-03', 23000.00, '1970-01-01', 23000.00, 'chennai', '2', '1 years 11 months', ' Career growth', 1, '2020-12-22 07:12:57', 0, NULL, 0, NULL, 1),
(1355, 2681, 'Pulsus Healthtech ', 'Program Coordinator ', '2019-06-21', 250000.00, '1970-01-01', 300000.00, 'Chennai', '2', '1 years 6 months', ' Contract over', 1, '2020-12-22 07:19:04', 0, NULL, 0, NULL, 1),
(1356, 2682, 'Benfy consultant service', 'Digital Marketing analyst', '2018-02-02', 10000.00, '2018-12-18', 10000.00, 'Nungambakkam', '1', '0 years 10 months', 'For not giving opportunity in social media marketing', 1, '2020-12-22 09:29:05', 0, NULL, 0, NULL, 1),
(1357, 2683, 'Six cube Media', 'Digital marketing executive', '2019-07-10', 15000.00, '1970-01-01', 18000.00, 'Villivakkam', '2', '1 years 5 months', ' Want to grou up with my future', 1, '2020-12-22 11:48:49', 0, NULL, 0, NULL, 1),
(1358, 2686, 'first souce solutions ', 'crm', '2013-02-05', 10000.00, '2013-10-31', 11000.00, 'ambattur', '1', '0 years 8 months', ' salary issue', 1, '2020-12-23 10:33:31', 0, NULL, 0, NULL, 1),
(1359, 2691, 'canara hsbc obc life insurance co ltd', 'sales officer', '2019-07-12', 22000.00, '2020-07-03', 22000.00, 'chennai', '1', '0 years 11 months', 'cant able to travel in three branches for lockdown', 1, '2020-12-23 01:43:08', 0, NULL, 0, NULL, 1),
(1360, 2694, 'Prakhar Software Solutions Pvt Ltd', 'DEO / training Coordinator', '2018-12-27', 23000.00, '2019-12-11', 23000.00, 'Chennai', '1', '0 years 11 months', ' ', 1, '2020-12-23 02:38:05', 0, NULL, 0, NULL, 1),
(1361, 2694, 'CML Media Software Pvt Ltd', 'Content Specialist', '2016-09-12', 15000.00, '2017-06-07', 15000.00, 'Chennai', '1', '0 years 8 months', 'Project Over\n', 1, '2020-12-23 02:39:24', 0, NULL, 0, NULL, 1),
(1362, 2644, 'Reliance industries', 'Customer service representative', '2009-12-23', 25000.00, '2012-12-23', 20000.00, 'Chennai', '1', '3 years 0 months', ' Process rampdown', 1, '2020-12-23 02:40:09', 0, NULL, 0, NULL, 1),
(1363, 2693, 'lycatel', 'sme', '2016-03-03', 23000.00, '2020-02-21', 25000.00, 'chennai', '1', '3 years 11 months', ' personal reasonn', 1, '2020-12-23 02:47:09', 0, NULL, 0, NULL, 1),
(1364, 2698, 'CMA CGM shared service center ', 'Documentation Executive ', '2017-08-31', 12000.00, '2019-04-08', 18000.00, 'Ambatur', '1', '1 years 7 months', ' Expecting Rotational Shift ', 1, '2020-12-23 04:17:18', 0, NULL, 0, NULL, 1),
(1365, 2696, 'religare health insurance', 'srm', '2015-12-23', 15000.00, '2017-12-23', 15000.00, 'chennai', '1', '2 years 0 months', 'Enrolled by Priyanka ', 1, '2020-12-23 04:46:15', 0, NULL, 0, NULL, 1),
(1366, 2702, '2 years 0 months', 'Relationship manager', '2018-12-10', 15000.00, '2020-12-10', 19.00, 'Chennai', '1', '2 years 0 months', ' Corona', 1, '2020-12-24 11:12:32', 0, NULL, 0, NULL, 1),
(1367, 2702, 'Sales', 'Relationship manager', '2018-07-23', 13.00, '2020-02-05', 19000.00, 'Chennai ', '1', '1 years 6 months', 'Covit 19 ', 1, '2020-12-24 11:16:55', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1368, 2714, 'cbsl ', 'feild engineer ', '2020-12-24', 13000.00, '1970-01-01', 18000.00, 'chennai ', '2', '0 years 0 months', ' Salery not increase \nPersonal growth none', 1, '2020-12-24 04:37:48', 0, NULL, 0, NULL, 1),
(1369, 2715, 'amnet systems', 'supply chain executive', '2019-04-15', 1.00, '1970-01-01', 12000.00, 'ekkattuthangal', '2', '1 years 8 months', ' ', 1, '2020-12-24 05:53:57', 0, NULL, 0, NULL, 1),
(1370, 2610, 'Sundaram Finance  Holdings Ltd', 'Associate', '2019-09-25', 13500.00, '1970-01-01', 15000.00, 'Chennai', '2', '1 years 3 months', ' ', 1, '2020-12-25 11:23:44', 0, NULL, 0, NULL, 1),
(1371, 2660, 'Asl', 'Sales excuitive ', '2018-10-11', 8700.00, '2020-12-25', 12.50, 'Vajarahalli kpr main road ', '1', '2 years 2 months', ' For covid -19 i will be go to my native place for 4  months. So they remove my job in that asl.this is the reason.', 1, '2020-12-25 01:33:55', 0, NULL, 0, NULL, 1),
(1372, 2728, 'nibav it solution', 'seo Analyst', '2020-08-07', 20000.00, '2020-12-26', 20000.00, 'chennai', '2', '0 years 4 months', 'With my career growth', 1, '2020-12-26 10:12:08', 0, NULL, 0, NULL, 1),
(1373, 2729, 'Beads_n_bling ', 'Human resource Assistant ', '2018-09-12', 10000.00, '2020-05-29', 150000.00, 'Pursaiwalkkam ', '1', '1 years 8 months', ' Salary was not sufficient ', 1, '2020-12-26 11:14:39', 0, NULL, 0, NULL, 1),
(1374, 2716, 'HDB Finance services ', 'Dept recovery agent ', '2019-04-22', 9500.00, '2019-12-31', 9500.00, 'Thousand lights ', '1', '0 years 8 months', 'I loss my satisfaction of job. ', 1, '2020-12-26 11:38:24', 0, NULL, 0, NULL, 1),
(1375, 2735, 'tcs ans syntel', 'associate', '2014-11-24', 180000.00, '2018-05-18', 240000.00, 'siruseri', '1', '3 years 5 months', ' in pragnancy period as per doctor adviced am resiged my job.', 1, '2020-12-26 12:08:55', 0, NULL, 0, NULL, 1),
(1376, 2737, 'Ageon life insurance', 'Relationship manager', '2021-01-02', 23000.00, '1970-01-01', 25000.00, 'Thynampet', '2', '0 years 0 months', ' ', 1, '2020-12-26 12:17:11', 0, NULL, 0, NULL, 1),
(1377, 2737, 'Aegon Life insurance', 'Relationship manager', '2016-07-11', 27000.00, '2019-12-31', 27000.00, 'Tyenampet', '1', '4 years 5 months', 'Office direct closed', 1, '2020-12-26 12:21:27', 0, NULL, 0, NULL, 1),
(1378, 2738, 'japan external trade organization', 'research officer', '2010-05-10', 331000.00, '2017-07-08', 640690.00, 'mumbai', '1', '7 years 1 months', ' I wanted to do business. ', 1, '2020-12-26 12:48:47', 0, NULL, 0, NULL, 1),
(1379, 2741, 'hdfc', 'mis', '2018-07-02', 11000.00, '2020-03-03', 12500.00, 'nungambakkam', '1', '1 years 8 months', 'exp high salary ', 1, '2020-12-26 02:27:56', 0, NULL, 0, NULL, 1),
(1380, 2741, 'asian paints`', 'ec color associate - sales', '2020-07-10', 15000.00, '1970-01-01', 15000.00, 'poonamalee', '2', '0 years 5 months', 'not interested with full field sales', 1, '2020-12-26 02:29:22', 0, NULL, 0, NULL, 1),
(1381, 2744, 'Mswipe technology private limited', 'Sales and service', '2019-06-10', 14000.00, '1970-01-01', 14000.00, 'T.Nagar', '2', '1 years 6 months', ' Payment issue', 1, '2020-12-26 06:39:27', 0, NULL, 0, NULL, 1),
(1382, 2746, 'srm university', 'programmer', '2012-07-09', 10000.00, '2014-05-31', 10000.00, 'chennai', '1', '1 years 10 months', ' to improve my career', 1, '2020-12-26 07:12:23', 0, NULL, 0, NULL, 1),
(1383, 2746, 'kaaspro enterprise', 'seo/smo analyst', '2015-04-01', 15000.00, '2020-01-31', 15500.00, 'chennai', '1', '4 years 9 months', 'to improve my career to next level', 1, '2020-12-26 07:16:53', 0, NULL, 0, NULL, 1),
(1384, 2752, 'tap to do', 'marketing executive', '2017-03-03', 15000.00, '2017-08-25', 15000.00, 'chennai', '1', '0 years 5 months', ' Organisation Closed for financial issues', 1, '2020-12-28 11:58:54', 0, NULL, 0, NULL, 1),
(1385, 2752, 'first focus business solution pvt. ltd', 'team member', '2018-01-05', 12000.00, '2018-08-16', 12000.00, 'chennai', '1', '0 years 7 months', 'unable managing night shift', 1, '2020-12-28 12:01:06', 0, NULL, 0, NULL, 1),
(1386, 2752, 'vk technosoft', 'content writer', '2018-12-04', 12000.00, '2019-07-15', 12000.00, 'chennai', '1', '0 years 7 months', 'organisation closed due to financial issues', 1, '2020-12-28 12:02:43', 0, NULL, 0, NULL, 1),
(1387, 2752, 'seo pixlr', 'seo analyst', '2019-08-02', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '1 years 4 months', 'still working', 1, '2020-12-28 12:03:59', 0, NULL, 0, NULL, 1),
(1388, 2739, 'bankbazaar.com', 'senior customer relationship officer', '2015-06-22', 19000.00, '2019-12-22', 28000.00, 'chennai', '1', '4 years 6 months', ' ', 1, '2020-12-28 12:22:10', 0, NULL, 0, NULL, 1),
(1389, 2762, 'Winchart ', 'Software developer and Testing', '2019-11-12', 8000.00, '1970-01-01', 10000.00, 'Namakkal', '2', '1 years 1 months', ' I had worked in startup Company..quit from company when project got down Month by month..', 1, '2020-12-28 06:00:49', 0, NULL, 0, NULL, 1),
(1390, 2770, 'Mapol business solutions', 'Junior web developer', '2018-11-26', 6000.00, '2020-09-30', 120000.00, 'Trichy', '1', '2 years 1 months', ' No projects due to covid', 1, '2020-12-29 10:28:02', 0, NULL, 0, NULL, 1),
(1391, 2775, 'zenter pvt. ltd', 'jr.android Developer ', '2018-01-12', 10000.00, '2018-11-30', 15000.00, 'Bengaluru', '1', '0 years 10 months', ' nill', 1, '2020-12-29 12:05:48', 0, NULL, 0, NULL, 1),
(1392, 2775, 'Merudan IT Consulting Pvt Ltd', 'Technical Associate', '2018-10-01', 25000.00, '2019-09-30', 31677.00, 'Bangalore', '1', '0 years 11 months', 'nill', 1, '2020-12-29 12:10:41', 0, NULL, 0, NULL, 1),
(1393, 2775, ' Denali Management Services', 'Technical Associate', '2018-10-01', 31666.00, '2020-02-29', 31666.00, 'Bangalore', '1', '1 years 4 months', 'nill', 1, '2020-12-29 12:12:27', 0, NULL, 0, NULL, 1),
(1394, 2775, 'Helix Sense Technologies Pvt Ltd', 'android developer ', '2020-03-01', 31666.00, '2020-12-29', 31666.00, ' New Delhi', '1', '0 years 9 months', 'nill', 1, '2020-12-29 12:14:11', 0, NULL, 0, NULL, 1),
(1395, 2777, 'Icici prudential Life insurance co Ltd', 'Business trainee', '2020-09-08', 400000.00, '1970-01-01', 400000.00, 'Egmore ', '2', '0 years 3 months', ' Insurance ', 1, '2020-12-29 12:26:21', 0, NULL, 0, NULL, 1),
(1396, 2779, 'ifive technology pvt lmt', 'android developer', '2019-03-08', 180000.00, '1970-01-01', 420000.00, 'chennai', '2', '1 years 9 months', ' carrier growth and learning and working with new technologies', 1, '2020-12-29 01:02:14', 0, NULL, 0, NULL, 1),
(1397, 2760, 'digielevation', 'digital marketing executive', '2020-03-02', 15000.00, '2020-10-01', 15000.00, 'bangalore', '1', '0 years 6 months', ' covid layoff', 1, '2020-12-29 01:09:37', 0, NULL, 0, NULL, 1),
(1398, 2783, 'altruist customer mana pvt ltd', 'team leader', '2019-09-12', 17400.00, '1970-01-01', 18000.00, 'perungudi', '2', '1 years 3 months', ' Personal ', 1, '2020-12-29 02:54:52', 0, NULL, 0, NULL, 1),
(1399, 2783, 'dennave india pvt ltd', 'team leader ', '2018-05-08', 21000.00, '2019-08-31', 21000.00, 'chennai', '1', '1 years 3 months', 'Process Closed', 1, '2020-12-29 03:08:12', 0, NULL, 0, NULL, 1),
(1400, 2785, 'EGB Systems and solutions', 'Software developer', '2018-03-05', 8000.00, '1970-01-01', 11000.00, 'Anna nagar Chennai', '2', '2 years 9 months', ' Like to explore new technologies and work in more challenging environment. ', 1, '2020-12-29 03:12:32', 0, NULL, 0, NULL, 1),
(1401, 2784, 'anlyz360 technologies', 'ui/ux developer', '2019-07-17', 10000.00, '2020-07-19', 10000.00, 'chennai', '1', '1 years 0 months', ' Salary issues', 1, '2020-12-29 03:15:38', 0, NULL, 0, NULL, 1),
(1402, 2786, 'aspirant labs technologies', 'android developer', '2019-06-03', 25000.00, '1970-01-01', 30000.00, 'chennai', '2', '1 years 6 months', ' ', 1, '2020-12-29 03:17:22', 0, NULL, 0, NULL, 1),
(1403, 2782, 'Hewlett Packard Enterprises', 'Software developer ', '2015-08-28', 340000.00, '2017-07-14', 377000.00, 'Bangalore ', '1', '1 years 10 months', ' For marriage ', 1, '2020-12-29 03:18:10', 0, NULL, 0, NULL, 1),
(1404, 2784, 'six sigma', 'web developer', '2020-12-13', 22000.00, '1970-01-01', 22000.00, 'chennai', '2', '0 years 0 months', 'project completed', 1, '2020-12-29 03:19:01', 0, NULL, 0, NULL, 1),
(1405, 2788, 'Contus', 'Application developer', '2018-01-23', 200000.00, '1970-01-01', 400000.00, 'Chennai', '2', '2 years 11 months', ' Salary', 1, '2020-12-29 03:54:01', 0, NULL, 0, NULL, 1),
(1406, 2789, 'top10newgames', 'game develoer', '2018-08-01', 15000.00, '1970-01-01', 20000.00, 'chennai', '2', '2 years 4 months', ' ', 1, '2020-12-29 04:27:52', 0, NULL, 0, NULL, 1),
(1407, 2787, 'Furtim technologies', 'Software Engineer', '2018-02-19', 8000.00, '2020-12-23', 20000.00, 'Chennai', '1', '2 years 10 months', ' Salary issues', 1, '2020-12-29 05:07:55', 0, NULL, 0, NULL, 1),
(1408, 2793, 'tata consultansy services ', 'process associate ', '2014-08-01', 16000.00, '2015-08-01', 16000.00, 'chennai', '1', '1 years 0 months', 'I want enhance my knowledge ', 1, '2020-12-29 05:17:58', 0, NULL, 0, NULL, 1),
(1409, 2783, 'vertex customer care management soloutions ', 'asst team leader', '2015-05-22', 10500.00, '2016-12-25', 10500.00, 'chennai', '1', '1 years 7 months', 'Process Closed ', 1, '2020-12-29 07:37:48', 0, NULL, 0, NULL, 1),
(1410, 2796, 'sbi credit card', 'sales', '2018-09-01', 15000.00, '2020-05-20', 16500.00, 'anna nagar', '1', '1 years 8 months', ' marriage fixed', 1, '2020-12-30 09:26:00', 0, NULL, 0, NULL, 1),
(1411, 2799, 'apollo hospital', 'system admin', '2017-08-01', 17000.00, '2018-08-30', 17000.00, 'greams road', '1', '1 years 0 months', ' ', 1, '2020-12-30 03:03:03', 0, NULL, 0, NULL, 1),
(1412, 2799, 'idfc first bank', 'sales officer', '2018-09-07', 11000.00, '2019-11-10', 11000.00, 'purasaiwakkam', '1', '1 years 2 months', 'salary issue', 1, '2020-12-30 03:04:36', 0, NULL, 0, NULL, 1),
(1413, 2799, 'whirlpool of india ltd', 'billing coordinator', '2020-07-03', 12000.00, '1970-01-01', 12000.00, 'alamathi', '2', '0 years 5 months', 'long distance', 1, '2020-12-30 03:06:43', 0, NULL, 0, NULL, 1),
(1414, 2802, 'Parazelsus India pvt ltd', 'Sales executive ', '2014-07-09', 252000.00, '2018-06-30', 252000.00, 'Chennai', '1', '3 years 11 months', ' Career Growth ', 1, '2020-12-30 04:03:02', 0, NULL, 0, NULL, 1),
(1415, 2802, 'Behest serums and vaccines limited ', 'Area sales executive ', '2018-07-11', 280000.00, '2019-03-11', 280000.00, 'Chennai', '1', '0 years 8 months', 'minor accident', 1, '2020-12-30 04:04:54', 0, NULL, 0, NULL, 1),
(1416, 2804, 'Fixnix', 'Web designer', '2019-03-08', 5000.00, '2020-07-31', 15000.00, 'Chennai', '1', '1 years 4 months', ' Salary issues', 1, '2020-12-30 06:55:24', 0, NULL, 0, NULL, 1),
(1417, 2807, 'Xascom info solutions', 'Tele caller', '2019-11-13', 10000.00, '2020-11-23', 11000.00, 'Kodambakkam', '1', '1 years 1 months', ' Salary issues', 1, '2020-12-31 11:11:03', 0, NULL, 0, NULL, 1),
(1418, 2800, 'Daimler ', 'Team leader ', '2019-01-10', 20500.00, '2020-06-15', 20500.00, 'Oragadam', '1', '1 years 11 months', ' Contract close ', 1, '2020-12-31 11:24:17', 0, NULL, 0, NULL, 1),
(1419, 2811, 'Equitas small finance bank', 'Customer service executive', '2019-12-02', 12000.00, '2020-11-30', 12000.00, 'Mount road', '1', '0 years 11 months', ' Process ramdown.', 1, '2020-12-31 12:05:19', 0, NULL, 0, NULL, 1),
(1420, 2808, 'Xascom info solution', 'Telecaller', '2019-06-06', 11000.00, '2020-12-15', 11000.00, 'Kodambakkam', '1', '1 years 6 months', ' Salary issues', 1, '2020-12-31 01:18:08', 0, NULL, 0, NULL, 1),
(1421, 2814, 'xascom', 'systemadmin ', '2019-02-28', 13000.00, '2019-04-26', 13000.00, 'kodambaggam ', '1', '0 years 1 months', ' Salary issue ', 1, '2020-12-31 01:34:17', 0, NULL, 0, NULL, 1),
(1422, 2815, 'shriram city union finance ltd', 'sales executive', '2017-02-27', 10708.00, '2018-09-30', 10708.00, 'chennai', '1', '1 years 7 months', 'father\'s health issues ', 1, '2020-12-31 04:11:59', 0, NULL, 0, NULL, 1),
(1423, 2815, 'international flavors and fragrance india pvt.ltd', 'sampling and production executive', '2019-03-03', 13575.00, '2020-12-11', 14014.00, 'chennai', '1', '1 years 9 months', 'contract closed', 1, '2020-12-31 04:14:23', 0, NULL, 0, NULL, 1),
(1424, 2823, 'zeronesoftware', 'web designer', '2019-04-03', 3500.00, '2020-12-05', 8500.00, 'madurai', '1', '1 years 8 months', ' ', 1, '2021-01-02 10:18:01', 0, NULL, 0, NULL, 1),
(1425, 2823, 'multiads', 'web developer', '2019-12-10', 10000.00, '2020-03-23', 10000.00, 'coimbatore', '1', '0 years 3 months', 'no projects available our company and corana started', 1, '2021-01-02 10:20:20', 0, NULL, 0, NULL, 1),
(1426, 2823, 'mindvalley technologies', 'fullstack developer', '2020-04-07', 15000.00, '1970-01-01', 15000.00, 'kodambakkam', '2', '0 years 8 months', 'go for new technologies', 1, '2021-01-02 10:22:11', 0, NULL, 0, NULL, 1),
(1427, 2827, 'Virkoz pvt ltd', 'Front End Web developer ', '2019-01-18', 10000.00, '2020-01-31', 12000.00, 'Perambur', '1', '1 years 0 months', ' Career Growth', 1, '2021-01-02 12:33:05', 0, NULL, 0, NULL, 1),
(1428, 2826, 'Thaagam Tech', 'chennai', '2020-06-09', 15000.00, '1970-01-01', 15000.00, 'pallikarani', '2', '0 years 6 months', ' not safety for working', 1, '2021-01-02 12:44:58', 0, NULL, 0, NULL, 1),
(1429, 2826, 'G2pay appzHR solutions Pvt Ltd', 'php', '2019-06-06', 8000.00, '2020-08-11', 8000.00, 'chennai', '1', '1 years 2 months', 'they have not giving the experience certificate', 1, '2021-01-02 12:47:07', 0, NULL, 0, NULL, 1),
(1430, 2828, 'Axis Bank', 'Tele sales executive', '2016-06-01', 10000.00, '2016-12-30', 12000.00, ' Anna Nagar', '1', '4 years 7 months', 'Personal reasons', 1, '2021-01-02 03:16:53', 0, NULL, 0, NULL, 1),
(1431, 2835, 'Oclock software private limited', 'Web developer', '2018-09-07', 10000.00, '1970-01-01', 15000.00, 'Chennai', '2', '2 years 3 months', ' Willing to learn different technologies ', 1, '2021-01-02 11:12:34', 0, NULL, 0, NULL, 1),
(1432, 2837, 'Minifysys', 'Ui developer', '2020-01-03', 6000.00, '2020-10-02', 10000.00, 'Visakhapatnam', '1', '0 years 8 months', ' Not paid salary for 2 months', 1, '2021-01-03 07:06:26', 0, NULL, 0, NULL, 1),
(1433, 2838, 'ativityz', 'graphic designer', '2014-03-11', 12.00, '2016-04-30', 1.00, 'anna nagar', '1', '2 years 1 months', 'department was closed by the company', 1, '2021-01-03 11:35:52', 0, NULL, 0, NULL, 1),
(1434, 2838, 'freelancer', 'designer', '2019-01-01', 20.00, '1970-01-01', 20.00, 'chennai', '2', '2 years 0 months', 'want to work in office  premises & for career growth', 1, '2021-01-03 11:40:15', 0, NULL, 0, NULL, 1),
(1435, 2840, 'TCT', 'Ui/ux designer', '2018-09-12', 15000.00, '2020-03-03', 18000.00, 'Anna nagar', '1', '1 years 5 months', 'My company was currently closed', 1, '2021-01-04 11:17:53', 0, NULL, 0, NULL, 1),
(1436, 2803, 'equitas bank', 'telecaller', '2020-10-01', 12000.00, '2020-11-30', 15000.00, 'spencers', '1', '0 years 3 months', ' Process closed', 1, '2021-01-04 11:49:29', 0, NULL, 0, NULL, 1),
(1437, 2847, 'Meru Info. Solution', 'Customer care executive ', '2019-11-21', 20000.00, '1970-01-01', 20000.00, 'Dairy Circle', '2', '1 years 1 months', 'The previous company had lost its tender with the Labour department and having no other vacancies in that company we left the job there and trying for new opportunities.', 1, '2021-01-04 11:54:44', 0, NULL, 0, NULL, 1),
(1438, 2848, 'Xyz innovations private limited', 'Software engineer', '2018-08-01', 200000.00, '2020-07-31', 300000.00, 'Hyderabad', '1', '1 years 11 months', ' Location change to chennai \nMore learning', 1, '2021-01-04 12:03:11', 0, NULL, 0, NULL, 1),
(1439, 2843, 'Integrated enterprises', 'Relationship manager', '2020-10-05', 10000.00, '2020-12-31', 10000.00, 'Chennai', '1', '0 years 2 months', ' Personal reson', 1, '2021-01-04 12:04:00', 0, NULL, 0, NULL, 1),
(1440, 2848, 'IKomet technology private limited', 'Web developer', '2020-08-10', 300000.00, '2021-01-31', 300000.00, 'Chennai', '1', '0 years 5 months', 'Need to work in more projecta', 1, '2021-01-04 12:04:37', 0, NULL, 0, NULL, 1),
(1441, 2795, 'equitas small finance bank', 'tele calling', '2019-10-31', 12000.00, '2020-11-30', 12000.00, 'spencers', '1', '1 years 0 months', ' Process closed', 1, '2021-01-04 12:24:30', 0, NULL, 0, NULL, 1),
(1442, 2851, 'National informatics center', 'Pho developer', '2020-03-03', 1.00, '1970-01-01', 300000.00, 'Chennai', '2', '0 years 10 months', ' Contract finish', 1, '2021-01-04 04:09:08', 0, NULL, 0, NULL, 1),
(1443, 2855, 'adecco india private limited', 'software engineer', '2019-06-01', 600000.00, '2019-11-17', 600000.00, 'chennai', '1', '0 years 5 months', ' contract finished', 1, '2021-01-05 10:58:39', 0, NULL, 0, NULL, 1),
(1444, 2846, 'Aagna creative solutions', 'Telesale', '2018-08-24', 8500.00, '2019-04-10', 8500.00, 'Kovilampakkam', '1', '0 years 7 months', 'Physically sick', 1, '2021-01-05 11:38:25', 0, NULL, 0, NULL, 1),
(1445, 2860, 'Evershine Banking Solutions ', 'Team manager ', '2019-01-01', 7500.00, '2020-12-31', 18000.00, 'Parrys', '1', '1 years 11 months', 'Delay in salary ', 1, '2021-01-05 12:09:10', 0, NULL, 0, NULL, 1),
(1446, 2861, 'Cafs', 'Star health insurance', '2020-10-01', 4000.00, '2021-01-05', 5000.00, 'Tnagar', '1', '0 years 3 months', ' ', 1, '2021-01-05 12:21:50', 0, NULL, 0, NULL, 1),
(1447, 2861, 'Cafs', 'Star health insurance', '2020-10-01', 4000.00, '2020-10-22', 5000.00, 'Tnagar', '1', '0 years 0 months', 'Family death  situation personal ', 1, '2021-01-05 12:23:30', 0, NULL, 0, NULL, 1),
(1448, 2861, 'Cafs', 'Star health insurance', '2020-09-01', 4000.00, '2020-10-22', 5000.00, 'Tnagar', '1', '0 years 1 months', 'Family death situation personal', 1, '2021-01-05 12:25:05', 0, NULL, 0, NULL, 1),
(1449, 2844, 'paytm payment bank', 'realtionship officer', '2019-05-05', 360000.00, '2019-11-25', 360000.00, 'Chennai ', '1', '0 years 6 months', ' My dad got major accident ', 1, '2021-01-05 12:29:37', 0, NULL, 0, NULL, 1),
(1450, 2865, 'Metro inn', 'Team leader', '2018-11-06', 18000.00, '2020-10-01', 22000.00, 'Chennai', '1', '1 years 10 months', ' Covid-19 fully closed', 1, '2021-01-05 01:45:12', 0, NULL, 0, NULL, 1),
(1451, 2865, 'Narayana group of school', 'Pro / TL', '2015-11-15', 15000.00, '2017-11-25', 17000.00, 'Chennai', '1', '2 years 0 months', 'They have stopped marketing', 1, '2021-01-05 01:49:52', 0, NULL, 0, NULL, 1),
(1452, 2866, 'Subash technology', 'Web designer', '2014-04-01', 10000.00, '2017-04-28', 18000.00, 'Nagercoil', '1', '3 years 0 months', ' ', 1, '2021-01-05 03:32:04', 0, NULL, 0, NULL, 1),
(1453, 2866, 'Turqbiladi security solutions', 'Software Engineer', '2017-06-01', 80000.00, '2018-10-31', 80000.00, 'Jeddha, KSA', '1', '1 years 4 months', 'Project completed', 1, '2021-01-05 03:34:14', 0, NULL, 0, NULL, 1),
(1454, 2866, 'Pentabay software inc', 'Web designer', '2019-05-13', 24000.00, '2020-09-30', 32700.00, 'Chennai', '1', '1 years 4 months', 'Corona issue', 1, '2021-01-05 03:38:43', 0, NULL, 0, NULL, 1),
(1455, 2870, 'ICICI BANK LTD', 'EXECUTIVE', '2019-06-21', 18000.00, '1970-01-01', 25000.00, 'Chennai', '2', '1 years 6 months', ' I WANT a JOB WITH bETTER CAREER GROWTH OPPORTUNITIES.', 1, '2021-01-05 04:51:25', 0, NULL, 0, NULL, 1),
(1456, 2872, 'BAJAJ FINANCE LTD', 'DMA', '2019-09-03', 15000.00, '1970-01-01', 18000.00, 'Chennai', '2', '1 years 4 months', ' I FOUND A BETTER OPPORTUNITIES.', 1, '2021-01-05 04:57:44', 0, NULL, 0, NULL, 1),
(1457, 2864, 'jana small finance bank', 'senior officer', '2017-07-08', 10000.00, '2018-09-09', 11000.00, 'perambur', '1', '1 years 2 months', ' Due to salary', 1, '2021-01-05 05:09:15', 0, NULL, 0, NULL, 1),
(1458, 2864, 'punjab national bank', 'customer relationship executive', '2018-10-12', 13000.00, '2019-04-15', 13500.00, 'chennai', '1', '0 years 6 months', 'Carrier Growth', 1, '2021-01-05 05:10:55', 0, NULL, 0, NULL, 1),
(1459, 2874, 'english tavera', 'office admin', '2017-12-16', 14000.00, '2018-12-22', 15000.00, 'chennai', '1', '1 years 0 months', ' carreer growth', 1, '2021-01-05 05:18:16', 0, NULL, 0, NULL, 1),
(1460, 2858, 'Eagle Smartech ', ' ui ux designer', '2016-06-29', 33000.00, '2021-01-07', 38000.00, 'Chennai', '1', '4 years 6 months', ' Covid 19', 1, '2021-01-05 09:33:41', 0, NULL, 0, NULL, 1),
(1461, 2836, 'Quess Corp ', 'Relationship executive ', '2020-02-10', 24000.00, '2020-09-10', 24000.00, 'Chennai', '1', '0 years 7 months', ' ', 1, '2021-01-06 10:58:46', 0, NULL, 0, NULL, 1),
(1462, 2879, 'absolute bpo', 'relationship manager', '2017-08-16', 14000.00, '2020-12-31', 15000.00, 'triplicane', '1', '3 years 4 months', ' ', 1, '2021-01-06 11:21:46', 0, NULL, 0, NULL, 1),
(1463, 2881, 'Thirdware', 'Admin', '2019-11-11', 18000.00, '2020-03-10', 18000.00, 'Dlf', '1', '1 years 1 months', ' ', 1, '2021-01-06 12:55:07', 0, NULL, 0, NULL, 1),
(1464, 2886, 'Reliance securities pvt ltd ', 'Relationship manager ', '2020-06-02', 25000.00, '2020-11-16', 25000.00, 'Chennai', '1', '0 years 5 months', ' Personal growth ', 1, '2021-01-06 01:00:03', 0, NULL, 0, NULL, 1),
(1465, 2885, 'Axis securities', 'Senior Equity Dealer', '2018-04-01', 300000.00, '2019-04-01', 300000.00, 'T Nagar', '1', '1 years 0 months', ' Personal Growth', 1, '2021-01-06 01:00:06', 0, NULL, 0, NULL, 1),
(1466, 2883, 'CAFS', 'Telle caller', '2016-01-25', 11500.00, '2016-09-15', 11500.00, 'Royapeta', '1', '0 years 7 months', ' Marrage', 1, '2021-01-06 01:06:43', 0, NULL, 0, NULL, 1),
(1467, 2883, 'CAFS', 'Telle caller', '2016-01-25', 11500.00, '2016-09-15', 11500.00, 'Royapeta', '1', '0 years 7 months', ' Marrage', 1, '2021-01-06 01:06:45', 0, NULL, 0, NULL, 1),
(1468, 2892, 'wary tech', 'web designer', '2012-06-11', 8500.00, '2014-03-10', 102000.00, 'chennai', '1', '1 years 8 months', ' career growth', 1, '2021-01-06 05:01:16', 0, NULL, 0, NULL, 1),
(1469, 2892, 'team mango media pvt ltd', 'web designer', '2014-03-19', 10000.00, '2019-01-31', 280000.00, 'chennai', '1', '4 years 10 months', 'personal work', 1, '2021-01-06 05:02:48', 0, NULL, 0, NULL, 1),
(1470, 2895, 'Dart innovations technologies Pvt Ltd', 'Junior developer', '2019-03-11', 10000.00, '1970-01-01', 13000.00, 'Villivakkam, Chennai', '2', '1 years 9 months', 'Frankly Salary is the main Reason.\nAlso I need to work in an well Structured Organisation to learn more in this field', 1, '2021-01-06 06:48:45', 0, NULL, 0, NULL, 1),
(1471, 2899, 'Reliance Nippon life insurance', 'Senior relationship manager', '2020-01-18', 18000.00, '2020-07-30', 20000.00, 'Nanganallur', '1', '0 years 6 months', ' Salary was not issued properly so I resigned from the previous Company.', 1, '2021-01-07 11:25:46', 0, NULL, 0, NULL, 1),
(1472, 2898, 'Hdfc insurance life', 'Team leader', '2019-06-10', 14.00, '2020-12-10', 14000.00, 'T nagar', '1', '1 years 6 months', 'Salary issue', 1, '2021-01-07 11:36:41', 0, NULL, 0, NULL, 1),
(1473, 2905, 'Updater services', 'Executive ', '2016-08-18', 10000.00, '2019-03-07', 15000.00, 'Thoraipakkam', '1', '2 years 6 months', ' Due to corona', 1, '2021-01-07 12:16:16', 0, NULL, 0, NULL, 1),
(1474, 2907, 'Axis Bank', 'Relationship officer', '2020-02-14', 16500.00, '2020-11-05', 17000.00, 'Kodambakkam', '1', '0 years 10 months', ' Marriage', 1, '2021-01-07 12:41:28', 0, NULL, 0, NULL, 1),
(1475, 1887, 'irend infotech pvt ltd chennai', 'Php developer', '2016-11-30', 7000.00, '2019-01-04', 14000.00, 'Thousand lights', '1', '2 years 1 months', ' For career growth', 1, '2021-01-07 01:29:24', 0, NULL, 0, NULL, 1),
(1476, 2909, 'Srei equipment finance ltd', 'Senior sales officer', '2017-05-05', 16000.00, '2019-01-30', 23600.00, 'Chennai', '1', '1 years 8 months', ' ', 1, '2021-01-07 01:37:16', 0, NULL, 0, NULL, 1),
(1477, 2906, 'sbi', 'relationship officer', '2020-06-07', 17000.00, '2021-01-02', 17000.00, 'chethpet', '1', '0 years 6 months', ' personal issues', 1, '2021-01-07 01:38:27', 0, NULL, 0, NULL, 1),
(1478, 2909, 'Kotak mahindra bank ltd', 'Asst manager', '2019-02-04', 23000.00, '2019-08-30', 23600.00, 'Chennai', '1', '0 years 6 months', 'Personal reasons', 1, '2021-01-07 01:39:22', 0, NULL, 0, NULL, 1),
(1479, 2909, 'True blue asset services pvt ltd', 'Senior sales officer', '2019-10-14', 23600.00, '2020-07-30', 23600.00, 'Chennai', '1', '0 years 9 months', 'Health issue', 1, '2021-01-07 01:41:55', 0, NULL, 0, NULL, 1),
(1480, 2601, 'Dcdr infra pvt ltd', 'Programmer', '2017-12-01', 240000.00, '2019-12-01', 25000.00, 'Chennai', '1', '2 years 0 months', ' Suffered with dengue fever an some other health reasons', 1, '2021-01-07 04:39:08', 0, NULL, 0, NULL, 1),
(1481, 2912, 'Mcamdios tech solutions', 'android developer', '2018-05-02', 22000.00, '2019-09-25', 22000.00, 'Tambaram', '1', '1 years 4 months', ' Layoff', 1, '2021-01-07 06:17:52', 0, NULL, 0, NULL, 1),
(1482, 2912, 'Blue ware software solutions', 'Junior android developer', '2017-04-20', 3000.00, '2018-04-30', 15000.00, 'Nugambakkam', '1', '1 years 0 months', 'For the career update to my profile', 1, '2021-01-07 06:24:11', 0, NULL, 0, NULL, 1),
(1483, 2913, 'pykara technology ', 'software developer ', '2017-06-09', 7000.00, '2020-05-30', 21000.00, 'anna nagar', '1', '2 years 11 months', ' Company shutdown ', 1, '2021-01-07 06:38:11', 0, NULL, 0, NULL, 1),
(1484, 2914, '6univers', 'web developer', '2018-04-11', 11500.00, '2020-02-14', 15000.00, 'chennai', '1', '1 years 10 months', ' Company moved Real-estate based ', 1, '2021-01-07 11:50:42', 0, NULL, 0, NULL, 1),
(1485, 2914, 'poorvika mobiles pvt ltd', 'junior programmer', '2020-02-17', 16600.00, '2020-09-26', 16600.00, 'chennai', '1', '0 years 7 months', 'Covid issue', 1, '2021-01-07 11:53:17', 0, NULL, 0, NULL, 1),
(1486, 2914, 'fusion innovative pvt ltd', 'web developer', '2020-09-29', 25000.00, '1970-01-01', 25000.00, 'chennai', '2', '0 years 3 months', 'i\'m Looking for new technology &  big environment', 1, '2021-01-07 11:55:15', 0, NULL, 0, NULL, 1),
(1487, 2918, 'micro card india pvt ltd', 'team lead', '2019-12-12', 20000.00, '2021-01-06', 38000.00, 'bangalore', '1', '1 years 0 months', ' due to company shutdown', 1, '2021-01-08 11:53:09', 0, NULL, 0, NULL, 1),
(1488, 2919, 'Wheels india ltd', 'Warehouse incharge', '2015-07-01', 11000.00, '2016-07-01', 12000.00, 'Chennai', '1', '1 years 0 months', ' ', 1, '2021-01-08 12:58:37', 0, NULL, 0, NULL, 1),
(1489, 2919, 'Avancer software solutions and service', 'Software developer', '2019-06-26', 15000.00, '1970-01-01', 18000.00, 'Chennai', '2', '1 years 6 months', 'Improve my self. ', 1, '2021-01-08 01:05:33', 0, NULL, 0, NULL, 1),
(1490, 2922, 'Surakshaa car care ', 'Sales executive', '2018-11-15', 13500.00, '2020-12-10', 15000.00, 'Bangalore', '1', '2 years 0 months', 'Some personal reasons', 1, '2021-01-08 02:12:42', 0, NULL, 0, NULL, 1),
(1491, 2924, 'Accenture ', 'Cashier ', '2015-09-15', 13000.00, '2017-07-03', 14000.00, 'Ambattur ot', '1', '1 years 9 months', ' Timing Issus', 1, '2021-01-08 02:36:38', 0, NULL, 0, NULL, 1),
(1492, 2925, 'Spellbee international private limited', 'Junior executive', '2019-08-05', 10000.00, '2020-08-04', 10000.00, 'Mogapair west', '1', '0 years 11 months', ' Low salary', 1, '2021-01-08 02:40:20', 0, NULL, 0, NULL, 1),
(1493, 2890, 'Amvionlabs pvt ltd', 'Web developer', '2018-12-03', 168000.00, '2020-09-30', 216000.00, 'Chennai', '1', '1 years 9 months', ' Need high salary ', 1, '2021-01-08 02:48:24', 0, NULL, 0, NULL, 1),
(1494, 2928, 'Sye cried management ', 'Team leader ', '2019-05-10', 21000.00, '1970-01-01', 25000.00, 'City senter ', '2', '1 years 7 months', ' Salary issues  ', 1, '2021-01-08 04:00:31', 0, NULL, 0, NULL, 1),
(1495, 2857, 'source hov india pvt ltd', 'processor', '2019-10-22', 11000.00, '1970-01-01', 11000.00, 'chennai', '2', '1 years 2 months', ' salary low till no increment', 1, '2021-01-08 09:29:02', 0, NULL, 0, NULL, 1),
(1496, 2862, 'webnexs', 'frontend developer', '2018-12-05', 14.00, '1970-01-01', 22.00, 'chennai', '2', '2 years 1 months', ' looking for better career prospects, professional growth and work opportunities', 1, '2021-01-09 09:11:32', 0, NULL, 0, NULL, 1),
(1497, 2929, 'psl distributor', 'telecaller', '2012-12-20', 10000.00, '2017-08-24', 12000.00, 'dindigul', '1', '4 years 8 months', ' Marriage', 1, '2021-01-09 12:07:03', 0, NULL, 0, NULL, 1),
(1498, 2869, 'icici bank', 'sale exceutive', '2018-03-13', 16000.00, '2020-03-24', 16000.00, 'chennai', '1', '2 years 9 months', 'Salary hike', 1, '2021-01-10 09:35:40', 0, NULL, 0, NULL, 1),
(1499, 2933, 'centizen', 'sales executive', '2017-11-15', 20000.00, '2020-02-20', 20000.00, 'chennai', '1', '2 years 3 months', ' night shift', 1, '2021-01-10 09:50:40', 0, NULL, 0, NULL, 1),
(1500, 2936, 'Trading ', 'Client aquestion executive ', '2019-12-31', 15000.00, '1970-01-01', 20000.00, 'Chennai', '2', '1 years 0 months', ' ', 1, '2021-01-10 06:48:52', 0, NULL, 0, NULL, 1),
(1501, 2935, 'muthalagu finance', 'branch incharge', '2019-06-10', 14500.00, '2020-09-22', 14500.00, 'chennai', '1', '1 years 3 months', ' Salary Hike', 1, '2021-01-10 08:10:34', 0, NULL, 0, NULL, 1),
(1502, 2936, 'Sharekhan by Bnp Paribas ', 'Client aquestion Executive ', '2018-05-05', 15000.00, '1970-01-01', 14000.00, 'Chennai', '2', '2 years 8 months', ' My mother health issue', 1, '2021-01-10 09:03:49', 0, NULL, 0, NULL, 1),
(1503, 2937, 'Bajaj finserv', 'Sales executive', '2017-12-05', 11000.00, '2021-01-13', 11000.00, 'Avadi', '1', '3 years 1 months', ' ', 1, '2021-01-10 09:40:04', 0, NULL, 0, NULL, 1),
(1504, 2944, 'shine market solutions', 'marketing executive', '2017-08-28', 10000.00, '2019-12-08', 15000.00, 'ekkatuthangal', '1', '2 years 3 months', ' Company closed ', 1, '2021-01-11 12:02:29', 0, NULL, 0, NULL, 1),
(1505, 2943, 'Pfizer', 'Pso', '2016-10-05', 22000.00, '2018-12-29', 25000.00, 'Trichy', '1', '2 years 2 months', ' Career growth', 1, '2021-01-11 12:16:52', 0, NULL, 0, NULL, 1),
(1506, 2945, 'Think and learn Pvt ltd', 'Business development associate', '2019-08-05', 57000.00, '2020-03-01', 57000.00, 'Chennai', '1', '0 years 6 months', ' Unethical practices', 1, '2021-01-11 12:41:43', 0, NULL, 0, NULL, 1),
(1507, 2946, 'Touch2Success', 'Client consultant', '2019-12-02', 23000.00, '2020-12-18', 23000.00, 'Dlf', '1', '1 years 0 months', ' Process taken over', 1, '2021-01-11 01:17:50', 0, NULL, 0, NULL, 1),
(1508, 2946, 'Sutherland', 'Sales consultant', '2014-03-05', 20000.00, '2017-06-05', 22000.00, 'Chennai', '1', '3 years 3 months', 'Moved to higher position', 1, '2021-01-11 01:20:12', 0, NULL, 0, NULL, 1),
(1509, 2946, 'Medrona billing services', 'Client consultant', '2017-08-01', 22000.00, '1970-01-01', 22000.00, 'Chennai', '2', '3 years 5 months', 'Process shut down', 1, '2021-01-11 01:22:00', 0, NULL, 0, NULL, 1),
(1510, 2950, 't d k preistege', 'accountant', '2014-02-20', 22000.00, '2020-06-24', 22000.00, 'chennai', '1', '6 years 4 months', ' salary hike', 1, '2021-01-11 05:49:49', 0, NULL, 0, NULL, 1),
(1511, 2951, 'trayee business solutions', 'back office executive', '2019-10-18', 12000.00, '2020-04-23', 12500.00, 'chennai', '1', '0 years 6 months', ' layoff', 1, '2021-01-11 06:45:13', 0, NULL, 0, NULL, 1),
(1512, 2952, 'microsoft pvt ltd', 'sales executive', '2016-01-09', 10000.00, '2019-08-03', 15000.00, 'chennai', '1', '3 years 6 months', ' Career Growth', 1, '2021-01-11 06:54:12', 0, NULL, 0, NULL, 1),
(1513, 2773, 'icici bank', 'marketing executive', '2018-09-18', 23000.00, '2020-02-20', 23000.00, 'chennai', '1', '1 years 5 months', ' Salary hike', 1, '2021-01-11 09:25:35', 0, NULL, 0, NULL, 1),
(1514, 2954, 'Skylark capital markets', 'Telecalling sales', '2020-07-07', 12000.00, '2020-12-25', 12000.00, 'Coimbatore', '1', '0 years 6 months', ' Covid', 1, '2021-01-12 10:01:17', 0, NULL, 0, NULL, 1),
(1515, 2955, 'dechen', 'technical lead', '2019-08-26', 450000.00, '1970-01-01', 500000.00, 'chennai', '2', '1 years 4 months', ' better opportunity', 1, '2021-01-12 10:39:31', 0, NULL, 0, NULL, 1),
(1516, 2955, 'tek systems', 'technical lead', '2017-04-24', 400000.00, '2019-08-23', 400000.00, 'chennai', '1', '2 years 3 months', 'Better opportunity', 1, '2021-01-12 10:41:29', 0, NULL, 0, NULL, 1),
(1517, 2957, 'kotak', 'sales executive', '2020-02-12', 20000.00, '2021-01-12', 20000.00, 'chennai', '2', '0 years 11 months', ' Salary Hike', 1, '2021-01-12 11:28:08', 0, NULL, 0, NULL, 1),
(1518, 2960, 'ruloans', 'Voice ', '2020-02-01', 10000.00, '2020-06-30', 10000.00, 'tnagar', '1', '0 years 4 months', 'Low salary ', 1, '2021-01-12 02:11:47', 0, NULL, 0, NULL, 1),
(1519, 2961, 'ethna attributes soft technologies', 'data analyst/web developer', '2019-09-24', 15000.00, '2020-05-27', 15000.00, 'Chennai', '1', '0 years 8 months', ' Covid-19 affected the business model of the company', 1, '2021-01-12 03:27:22', 0, NULL, 0, NULL, 1),
(1520, 2961, 'Shenzhen MicroMultiCopter Aero Technology', 'technical engineer', '2017-06-01', 21500.00, '2018-06-29', 21500.00, 'Chennai', '1', '1 years 0 months', 'Limited role in r&D  ', 1, '2021-01-12 03:34:47', 0, NULL, 0, NULL, 1),
(1521, 2964, 'fusion tech', 'manager', '2018-05-15', 35000.00, '2020-04-15', 35000.00, 'chennai', '1', '1 years 11 months', ' for hike', 1, '2021-01-12 04:14:43', 0, NULL, 0, NULL, 1),
(1522, 2966, 'cafe coffee day', 'area manager', '2017-04-17', 12000.00, '2017-11-15', 13000.00, 'chennai', '1', '0 years 6 months', ' ', 1, '2021-01-13 09:02:02', 0, NULL, 0, NULL, 1),
(1523, 2966, 'teleperformance', 'customer executive', '2017-12-18', 15000.00, '2019-01-20', 18000.00, 'chennai', '1', '1 years 1 months', 'process ramp', 1, '2021-01-13 09:03:16', 0, NULL, 0, NULL, 1),
(1524, 2967, 'zealous', 'customer support executive', '2017-11-19', 12000.00, '2019-06-07', 14000.00, 'chennai', '1', '1 years 6 months', ' higher growth', 1, '2021-01-13 09:21:00', 0, NULL, 0, NULL, 1),
(1525, 2947, 'Fitsys India private limited', 'Software developer', '2017-10-03', 96000.00, '1970-01-01', 280000.00, 'Chennai', '2', '3 years 3 months', ' Career growth', 1, '2021-01-13 11:15:52', 0, NULL, 0, NULL, 1),
(1526, 2971, 'Primed Serv tech Pvt LTD', 'Team leader', '2020-06-22', 23000.00, '2020-12-25', 23000.00, 'Egmore', '1', '0 years 6 months', ' Salary issue and fake company', 1, '2021-01-13 01:52:55', 0, NULL, 0, NULL, 1),
(1527, 2973, 'Ernst and young GDS', 'Tax Analyst', '2020-02-03', 27500.00, '2020-08-18', 27500.00, 'Chennai', '1', '0 years 6 months', ' Met with an accident and health issues', 1, '2021-01-13 02:00:10', 0, NULL, 0, NULL, 1),
(1528, 2974, 'Nalam hcit solutions', 'Software developer', '2018-02-01', 12000.00, '1970-01-01', 23000.00, 'Chennai', '2', '2 years 11 months', ' Career growth', 1, '2021-01-13 03:56:25', 0, NULL, 0, NULL, 1),
(1529, 2974, 'Technobees', 'Software developer', '2016-07-27', 8000.00, '2018-01-31', 12000.00, 'Chennai', '1', '1 years 6 months', 'Sisters concern of Nalam hcit solutions started new branch in tamilnadu', 1, '2021-01-13 03:58:41', 0, NULL, 0, NULL, 1),
(1530, 2978, 'r  b l bank', 'deputy manager', '2020-02-25', 38000.00, '2021-01-13', 38000.00, 'chennai', '2', '0 years 10 months', ' ', 1, '2021-01-13 09:12:24', 0, NULL, 0, NULL, 1),
(1531, 2980, 'merit group', 'trainee software engineer', '2020-04-27', 25000.00, '2020-11-30', 25000.00, 'chennai', '1', '0 years 7 months', 'pandemic situation of covid 19  - loss  job ', 1, '2021-01-15 10:45:31', 0, NULL, 0, NULL, 1),
(1532, 2980, 'scope e-knowledge center', 'web scraper', '2018-12-12', 9000.00, '2020-04-20', 9000.00, 'chennai', '1', '1 years 4 months', 'for better Career ', 1, '2021-01-15 10:48:41', 0, NULL, 0, NULL, 1),
(1533, 2985, 'HDB FINANCIAL SERVICE', 'Sales executive', '2019-08-08', 13500.00, '1970-01-01', 15000.00, 'Chennai', '2', '1 years 5 months', ' I want to grow up my next level & learn new things.', 1, '2021-01-16 07:34:39', 0, NULL, 0, NULL, 1),
(1534, 2986, 'ramoji group of company', 'sr. executive', '2018-09-07', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '2 years 4 months', ' Salary hike', 1, '2021-01-17 01:31:50', 0, NULL, 0, NULL, 1),
(1535, 2988, 'Freelancer', 'Full stack Developer', '2019-11-20', 17000.00, '2021-01-02', 24000.00, 'Chennai ', '1', '1 years 1 months', ' Willing to work for a outdoor Exposure', 1, '2021-01-18 09:53:02', 0, NULL, 0, NULL, 1),
(1536, 2989, 'Merit', 'Senior software engineers ', '2020-01-04', 50000.00, '2020-08-31', 50000.00, 'Chennai', '1', '0 years 7 months', ' Feel insecure in job', 1, '2021-01-18 10:55:42', 0, NULL, 0, NULL, 1),
(1537, 2991, 'Ninestars information technology', 'Operator', '2017-01-28', 9000.00, '1970-01-01', 13000.00, 'Thousand light', '2', '3 years 11 months', ' Salary issue', 1, '2021-01-18 12:52:38', 0, NULL, 0, NULL, 1),
(1538, 2996, 'Bundl Technologies Private Limited', 'Account Manager', '2017-09-04', 31.00, '2019-07-01', 350000.00, 'Chennai', '1', '1 years 9 months', ' ', 1, '2021-01-18 07:59:21', 0, NULL, 0, NULL, 1),
(1539, 2994, 'oclock software', 'team lead', '2010-08-11', 5000.00, '2019-03-29', 50000.00, 'chennai', '1', '8 years 7 months', ' personal reason', 1, '2021-01-20 11:43:17', 0, NULL, 0, NULL, 1),
(1540, 3011, 'Makolet private limited company', 'Business development manager ', '2020-11-07', 35000.00, '2021-01-15', 35000.00, 'Chetpet chennai', '1', '0 years 2 months', ' Personal reason', 1, '2021-01-20 03:17:52', 0, NULL, 0, NULL, 1),
(1541, 3012, 'Makolet private limited company', 'Business development executive ', '2020-08-16', 30000.00, '2020-12-31', 30000.00, 'Chetpet chennai', '1', '0 years 4 months', 'Personel ', 1, '2021-01-20 03:32:14', 0, NULL, 0, NULL, 1),
(1542, 3017, 'Pyramidion solutions', 'Backend developer', '2019-07-15', 12000.00, '1970-01-01', 18000.00, 'Teynampet', '2', '1 years 6 months', ' Better learnimg', 1, '2021-01-21 09:24:37', 0, NULL, 0, NULL, 1),
(1543, 3019, 'Gyankar technologies', 'Bde', '2020-12-12', 21.00, '1970-01-01', 30000.00, 'Bangalore', '2', '0 years 1 months', ' Looking for good growth Company, ', 1, '2021-01-21 11:36:38', 0, NULL, 0, NULL, 1),
(1544, 3020, 'Eximio', 'Associate processer', '2019-12-26', 13500.00, '2020-07-15', 12000.00, 'Ambattur', '1', '0 years 6 months', ' Reason for night shift', 1, '2021-01-21 12:37:10', 0, NULL, 0, NULL, 1),
(1545, 3021, 'Hathway broadband', 'Field work', '2019-05-03', 15000.00, '2019-10-06', 15000.00, 'Mandaveli', '1', '0 years 5 months', ' Long Distance', 1, '2021-01-21 12:45:11', 0, NULL, 0, NULL, 1),
(1546, 3025, 'Ios developer', 'Developer', '2020-01-01', 15000.00, '1970-01-01', 15000.00, 'Bangalore', '2', '1 years 0 months', ' There is no developer .', 1, '2021-01-21 04:17:57', 0, NULL, 0, NULL, 1),
(1547, 3024, 'rwaycab services privated limited', 'web developer', '2018-02-01', 180000.00, '2020-11-30', 458000.00, 'Ramanathapuram', '1', '2 years 9 months', 'move to city', 1, '2021-01-21 04:47:36', 0, NULL, 0, NULL, 1),
(1548, 3026, 'Saint Agnes High School, Dornakal', 'SupporAng Staff', '2015-06-02', 7000.00, '2016-03-31', 7000.00, 'warangal', '1', '0 years 9 months', ' For Higher studies', 1, '2021-01-22 11:11:38', 0, NULL, 0, NULL, 1),
(1549, 3023, 'pixel panda solution', 'php', '2019-05-26', 8000.00, '2020-06-22', 10000.00, 'chennai', '1', '1 years 0 months', ' project exit', 1, '2021-01-22 11:13:25', 1, '2021-01-22 11:14:03', 0, NULL, 1),
(1550, 3026, 'great logics', 'ios developer', '2018-04-10', 10000.00, '2019-12-02', 18000.00, 'hyderabad', '1', '1 years 7 months', 'for Carrear growth', 1, '2021-01-22 11:15:03', 0, NULL, 0, NULL, 1),
(1551, 3026, 'volive solutions', 'ios developer', '2019-12-09', 25000.00, '2020-12-23', 25000.00, 'hyderabad', '1', '1 years 0 months', 'Carrear growth and location change', 1, '2021-01-22 11:18:30', 0, NULL, 0, NULL, 1),
(1552, 3029, 'matrimony pvt ltd', 'Software Engineer ', '2018-05-17', 370000.00, '1970-01-01', 430000.00, 'chennai', '2', '2 years 8 months', ' Want to get more salary and carrier growth my self', 1, '2021-01-22 01:12:17', 0, NULL, 0, NULL, 1),
(1553, 3030, 'Lobbynote', 'Senior web developer', '2020-07-29', 35000.00, '1970-01-01', 35000.00, 'Chennai', '2', '0 years 5 months', ' Payslips not provide', 1, '2021-01-22 03:58:08', 0, NULL, 0, NULL, 1),
(1554, 3030, 'Anand techverce', 'Senior web developer', '2019-12-10', 32000.00, '2020-04-10', 32000.00, 'Chennai', '1', '0 years 4 months', 'Lockdown work from home issue', 1, '2021-01-22 03:59:55', 0, NULL, 0, NULL, 1),
(1555, 3032, 'forete', 'sales officer', '2019-08-14', 16000.00, '2021-02-02', 16000.00, 'chennai', '1', '1 years 5 months', ' Salary Hike', 1, '2021-01-22 08:09:16', 0, NULL, 0, NULL, 1),
(1556, 3031, 'Connective links technology', 'Php developer', '2019-09-19', 5000.00, '2021-01-22', 15000.00, 'Valasaravakam', '2', '1 years 4 months', 'Salary issue', 1, '2021-01-22 08:37:19', 0, NULL, 0, NULL, 1),
(1557, 3033, 'Globus store pvt ltd', 'supply chain', '2017-01-01', 11500.00, '2019-08-24', 13000.00, 'Velachery', '1', '2 years 7 months', ' I got married', 1, '2021-01-23 10:30:13', 0, NULL, 0, NULL, 1),
(1558, 3033, 'Globus store pvt ldt', 'supply chain', '2017-01-01', 11500.00, '1970-01-01', 13000.00, 'velachery', '2', '4 years 0 months', 'I got married', 1, '2021-01-23 10:33:31', 0, NULL, 0, NULL, 1),
(1559, 3034, 'Talentpepz', 'IT Specialist', '2018-07-01', 11000.00, '1970-01-01', 20000.00, 'Chennai', '2', '2 years 6 months', ' Wanted to develop myself by working in different projects.', 1, '2021-01-23 12:01:34', 0, NULL, 0, NULL, 1),
(1560, 3036, 'Capgemini ', 'Senior software engineer ', '2019-06-27', 250000.00, '1970-01-01', 400000.00, 'Chennai ', '2', '1 years 6 months', ' Location constraint', 1, '2021-01-23 04:36:24', 0, NULL, 0, NULL, 1),
(1561, 3038, 'genius cerebrum', 'developer', '2020-06-01', 20000.00, '2021-01-24', 20000.00, 'chennai', '2', '0 years 7 months', 'i am looking to implement my skill based work priorly', 1, '2021-01-24 11:26:22', 0, NULL, 0, NULL, 1),
(1562, 3041, 'cms', 'cashier', '2019-10-15', 17000.00, '2020-11-28', 17000.00, 't nagar', '1', '1 years 1 months', 'for some personal reason', 1, '2021-01-25 12:40:11', 0, NULL, 0, NULL, 1),
(1563, 472, 'Vodafone', 'Tellcalling', '2019-08-19', 15000.00, '2020-06-10', 12000.00, 'Uthramerur', '1', '0 years 9 months', ' ', 1, '2021-01-25 12:48:17', 0, NULL, 0, NULL, 1),
(1564, 3045, 'zoho corp', 'incubation trainee', '2018-08-01', 30000.00, '2019-11-06', 30000.00, 'chennai', '1', '1 years 3 months', ' To improve Knowledge ', 1, '2021-01-26 01:05:20', 1, '2021-01-26 01:07:38', 0, NULL, 1),
(1565, 3045, 'rishany infotech', 'full stack developer', '2019-01-30', 10000.00, '2020-09-30', 15000.00, 'chennai', '1', '1 years 8 months', 'Salary hike', 1, '2021-01-26 01:07:04', 0, NULL, 0, NULL, 1),
(1566, 3045, 'lendsmart', 'react developer', '2020-10-02', 30000.00, '1970-01-01', 33000.00, 'chennai', '2', '0 years 3 months', 'Salary hike', 1, '2021-01-26 01:08:58', 0, NULL, 0, NULL, 1),
(1567, 3046, 'CBTC', 'Software developer', '2020-01-22', 1.44, '2021-01-22', 1.44, 'Chennai', '1', '1 years 0 months', ' To work in a challenging environment where I could learn more and help my team better', 1, '2021-01-26 02:11:45', 0, NULL, 0, NULL, 1),
(1568, 3049, 'Kpmg', 'Travel Consultant', '2016-02-03', 22000.00, '2020-08-02', 24000.00, 'Chennai', '1', '4 years 5 months', ' Covid-19', 1, '2021-01-27 11:16:27', 0, NULL, 0, NULL, 1),
(1569, 3050, 'I marque', 'Tellecalling', '2018-10-08', 9000.00, '2020-01-30', 15000.00, 'Thiyagaraya nagar', '1', '2 years 3 months', 'College exam', 1, '2021-01-27 11:42:19', 0, NULL, 0, NULL, 1),
(1570, 3052, 'HTC global services', 'Crs', '2012-09-23', 6000.00, '2018-01-20', 13000.00, 'Vandalur', '1', '5 years 3 months', ' ', 1, '2021-01-27 01:43:45', 0, NULL, 0, NULL, 1),
(1571, 3052, 'HTC global services', 'Crs', '2012-09-23', 6000.00, '2018-01-20', 13000.00, 'Vandalur', '1', '5 years 3 months', 'Go to native', 1, '2021-01-27 01:45:01', 0, NULL, 0, NULL, 1),
(1572, 3056, 'codeglo ', 'mean stack developer', '2019-03-01', 300000.00, '2021-02-28', 300000.00, 'uthandi', '1', '1 years 11 months', ' Salary ', 1, '2021-01-27 03:23:15', 0, NULL, 0, NULL, 1),
(1573, 3058, 'Avail finace', 'Associate operations', '2018-10-03', 20.00, '2019-06-14', 20.00, 'Koramangala', '1', '0 years 8 months', ' Parsonal reasone', 1, '2021-01-27 05:21:25', 0, NULL, 0, NULL, 1),
(1574, 3063, 'manapuram finance', 'sales manager', '2019-06-21', 23000.00, '2020-12-23', 23000.00, 'chennai', '1', '1 years 6 months', ' salary hike', 1, '2021-01-27 06:32:01', 0, NULL, 0, NULL, 1),
(1575, 3064, 'Boodskap private Limited', 'Software Engineer ', '2019-09-15', 144000.00, '1970-01-01', 290000.00, 'Chennai ', '2', '1 years 4 months', ' I want learn something new and I want to change my office environment ', 1, '2021-01-27 06:38:59', 0, NULL, 0, NULL, 1),
(1576, 3065, 'developer', 'mean stack developer', '2020-09-07', 10000.00, '1970-01-01', 10000.00, 'chennai', '2', '0 years 4 months', ' least salary', 1, '2021-01-27 08:07:48', 0, NULL, 0, NULL, 1),
(1577, 3053, 'Cognizant technology solutions', 'Senior process executive', '2017-04-21', 12500.00, '2021-01-27', 20000.00, 'Rajiv Gandhi salai', '1', '3 years 9 months', ' Projects going to be close', 1, '2021-01-27 08:26:50', 0, NULL, 0, NULL, 1),
(1578, 3053, 'Cognizant technology solutions', 'Senior process executive', '2017-04-21', 150000.00, '2021-02-24', 240000.00, 'Ramanujan IT park Rajiv Gandhi salai', '1', '3 years 10 months', 'Project going To close', 1, '2021-01-27 08:29:50', 0, NULL, 0, NULL, 1),
(1579, 3042, 'zoryboard', 'full stack developer', '2019-02-04', 12000.00, '1970-01-01', 200000.00, 'chennai', '2', '1 years 11 months', ' ', 1, '2021-01-27 11:30:12', 0, NULL, 0, NULL, 1),
(1580, 3071, 'Teleperformance ', 'Business Development Executive', '2018-08-15', 21000.00, '2020-05-14', 24000.00, 'Chennai', '1', '1 years 8 months', ' Company has been layed off', 1, '2021-01-28 10:51:32', 0, NULL, 0, NULL, 1),
(1581, 3072, 'Silaris', 'BDE', '2018-08-25', 29000.00, '2020-06-15', 32000.00, 'Mylapore', '1', '1 years 9 months', 'Company has been layed off', 1, '2021-01-28 12:08:30', 0, NULL, 0, NULL, 1),
(1582, 3061, 'Tata communications', 'Java developer', '2018-09-20', 13000.00, '2021-02-28', 13500.00, 'Mount road', '1', '2 years 5 months', 'Developing my career growth', 1, '2021-01-28 12:34:50', 0, NULL, 0, NULL, 1),
(1583, 3079, 'Unwind labs', 'Developer', '2018-09-15', 12000.00, '1970-01-01', 30000.00, 'Guindy', '2', '2 years 4 months', 'Technology change over', 1, '2021-01-28 01:21:10', 0, NULL, 0, NULL, 1),
(1584, 3076, 'virrantech sloution private limited', 'software developer', '2019-01-02', 10000.00, '2020-09-30', 13000.00, 'chennai', '1', '1 years 8 months', ' same project', 1, '2021-01-28 02:55:49', 0, NULL, 0, NULL, 1),
(1585, 3081, 'Alltechz Solutions', 'Java developer', '2018-10-08', 15000.00, '2021-01-28', 25000.00, 'Chennai', '2', '2 years 3 months', ' Carrier growth', 1, '2021-01-28 06:10:09', 0, NULL, 0, NULL, 1),
(1586, 3084, 'axis bank limited', 'junior executive', '2019-08-06', 12500.00, '1970-01-01', 12500.00, 'tambaram', '2', '1 years 5 months', ' ', 1, '2021-01-29 12:11:50', 0, NULL, 0, NULL, 1),
(1587, 3084, 'axis bank limited', 'junior executive', '2019-08-06', 12500.00, '1970-01-01', 12000.00, 'tambaram', '2', '1 years 5 months', 'grow up next level', 1, '2021-01-29 12:13:37', 0, NULL, 0, NULL, 1),
(1588, 3087, 'Tech Mahindra BPO LTD', 'Customer care executive', '2018-12-07', 10500.00, '2019-08-14', 15000.00, 'Ambattur ', '1', '0 years 8 months', ' I am trying to learn lot', 1, '2021-01-29 02:08:00', 0, NULL, 0, NULL, 1),
(1589, 3089, 'Vuedata', 'Software engineer', '2019-06-03', 2.80, '1970-01-01', 4.20, 'Chennai', '2', '1 years 7 months', ' Looking for new opportunities', 1, '2021-01-29 03:54:40', 0, NULL, 0, NULL, 1),
(1590, 3090, 'Muthoot finance ltd', 'Juniour relationship excutive', '2019-03-15', 18600.00, '1970-01-01', 18600.00, 'Vadapalani', '2', '1 years 10 months', 'Get next step', 1, '2021-01-29 04:14:26', 0, NULL, 0, NULL, 1),
(1591, 3091, 'kripya solution pvt ltd', 'software developer', '2019-09-19', 250000.00, '1970-01-01', 300000.00, 'chennai', '2', '1 years 4 months', ' I’m looking for a new opportunity that doesn’t exist at my current company where I can develop and expand my account management skills.', 1, '2021-01-29 05:04:16', 0, NULL, 0, NULL, 1),
(1592, 3093, 'Pranion Technology Ventures Private limited', 'Software Engineer', '2019-12-26', 16666.00, '1970-01-01', 16666.00, 'Thiruvanmiyur', '2', '1 years 1 months', 'Diminishing of projects in the company.', 1, '2021-01-29 06:52:52', 1, '2021-01-29 06:53:38', 0, NULL, 1),
(1593, 3094, 'touch2success software solutions', 'web designer', '2019-04-01', 220000.00, '2020-11-04', 251000.00, 'dlf it park - porur', '1', '1 years 7 months', ' I learnt Full Stack Development and i planned to move as a full stack developer', 1, '2021-01-29 08:13:26', 0, NULL, 0, NULL, 1),
(1594, 3086, 'Netaxis IT Solutions Pvt Ltd', 'Web developer', '2018-01-20', 120000.00, '2020-03-16', 250000.00, 'Chennai', '1', '2 years 1 months', ' Salary low and bonding', 1, '2021-01-29 08:55:25', 0, NULL, 0, NULL, 1),
(1595, 3086, 'Squares information technology Pvt Ltd', 'Software Engineer', '2020-06-24', 250000.00, '1970-01-01', 250000.00, 'Chennai', '2', '0 years 7 months', 'Salary low', 1, '2021-01-29 08:56:55', 0, NULL, 0, NULL, 1),
(1596, 3095, 't2s software solutions', 'sales officer', '2019-09-09', 410000.00, '2020-11-02', 410000.00, 'chennai', '1', '1 years 1 months', ' Family', 1, '2021-01-30 10:37:03', 0, NULL, 0, NULL, 1),
(1597, 3095, 'ziff davis sale build', 'research analyst', '2019-01-07', 380000.00, '2019-08-26', 380000.00, 'pune', '1', '0 years 7 months', 'Relocation', 1, '2021-01-30 10:39:11', 0, NULL, 0, NULL, 1),
(1598, 3095, 'sutherland global', 'consultant', '2018-02-01', 350000.00, '2018-11-30', 350000.00, 'chennai', '1', '0 years 9 months', 'Better opporTunities', 1, '2021-01-30 10:40:41', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1599, 3096, 'Southern kota Pvt Ltd', 'Business associate', '2018-01-30', 5.00, '2021-01-13', 18000.00, 'Chitlapakam', '1', '2 years 11 months', ' Better opportunity', 1, '2021-01-30 11:14:00', 0, NULL, 0, NULL, 1),
(1600, 3098, 'ThinkBig software Solutions', 'Application Developer', '2018-08-26', 12000.00, '1970-01-01', 20000.00, 'Chennai', '2', '2 years 5 months', ' New collegus to meet. New change and surrivel to learn', 1, '2021-01-30 11:28:35', 0, NULL, 0, NULL, 1),
(1601, 3100, 'Randstad India Pvt Ltd', 'Relationship officer', '2020-07-27', 16000.00, '2021-01-06', 16000.00, 'Chennai', '1', '0 years 6 months', 'Team collapsed', 1, '2021-01-30 05:03:12', 0, NULL, 0, NULL, 1),
(1602, 3100, 'Randstad India Pvt Ltd', 'Relationship officer', '2020-07-27', 16000.00, '2021-01-06', 16000.00, 'Chennai', '1', '0 years 5 months', 'Team collapsed', 1, '2021-01-30 05:04:24', 1, '2021-01-30 05:04:54', 0, NULL, 0),
(1603, 3100, 'Bankzone', 'Tele caller and Team leader', '2018-04-05', 12000.00, '2019-09-11', 15000.00, 'Nungambakkam', '1', '2 years 9 months', 'Personal issue', 1, '2021-01-30 05:10:39', 0, NULL, 0, NULL, 1),
(1604, 3102, 'Tata aia', 'Sm', '2016-02-02', 33000.00, '2018-09-03', 33000.00, 'Cochin', '1', '2 years 7 months', ' Experience in another fiel', 1, '2021-01-31 11:41:08', 0, NULL, 0, NULL, 1),
(1605, 3104, 'ind dus ank', 'sales officer', '2019-11-20', 15500.00, '2020-12-29', 15500.00, 'chennai', '1', '1 years 1 months', 'salary hike', 1, '2021-01-31 07:39:59', 0, NULL, 0, NULL, 1),
(1606, 3106, 'team lease', 'sales officer', '2019-06-11', 15000.00, '2020-12-22', 15000.00, 'chennai', '1', '1 years 6 months', ' salary hike', 1, '2021-01-31 10:01:15', 0, NULL, 0, NULL, 1),
(1607, 3107, 'Karvy digikonect', 'Customer excutive officer', '2019-11-28', 13500.00, '1970-01-01', 13500.00, 'Madipakkam', '2', '1 years 2 months', ' Salary issues', 1, '2021-02-01 09:31:47', 0, NULL, 0, NULL, 1),
(1608, 3108, 'Ninja cart', 'Sales executive ', '2020-05-13', 15500.00, '2021-01-31', 15500.00, 'Mkb nagar', '1', '0 years 8 months', ' Personal issue', 1, '2021-02-01 10:31:08', 0, NULL, 0, NULL, 1),
(1609, 3112, 'Delta controls', 'Technical assistance', '2016-09-05', 1.00, '2018-10-05', 1.00, 'Bengaluru', '1', '2 years 1 months', ' Actually it is my brother own workshop \nAt the year of 2018 economic was critical to the production so I left .,', 1, '2021-02-01 11:21:48', 0, NULL, 0, NULL, 1),
(1610, 3113, 'Wheelseye technology india private limited', 'Sales executive', '2019-11-06', 18000.00, '2020-10-10', 18000.00, 'Chennai super', '1', '0 years 11 months', ' Because of corona ii lost the job', 1, '2021-02-01 12:08:08', 0, NULL, 0, NULL, 1),
(1611, 3114, 'Capgemini ', 'Senior software engineer', '2019-06-27', 250000.00, '1970-01-01', 400000.00, 'Chennai ', '2', '1 years 7 months', 'In current company demand me for another lct location. But I Need Chennai location.', 1, '2021-02-01 12:22:22', 0, NULL, 0, NULL, 1),
(1612, 3115, 'Roppen Transport pvt ltd', 'Sales executive', '2020-12-02', 17000.00, '2021-01-13', 18000.00, 'Guindy', '1', '0 years 1 months', ' Contract base ', 1, '2021-02-01 01:07:12', 0, NULL, 0, NULL, 1),
(1613, 3111, 'hdfc sales pvt ltd', 'junior loan officer', '2019-12-26', 13500.00, '2020-10-31', 14000.00, 'vadapalani', '1', '0 years 10 months', ' marriage', 1, '2021-02-01 01:41:00', 0, NULL, 0, NULL, 1),
(1614, 3118, 'vThink Global Technologies Pvt ltd', 'Senior Application Developer', '2016-02-29', 12000.00, '1970-01-01', 42000.00, 'Chennai', '2', '4 years 11 months', ' ', 1, '2021-02-01 04:44:47', 0, NULL, 0, NULL, 1),
(1615, 3124, 'Bajaj finance Ltd', 'Sales&documents Excutive', '2017-03-08', 10000.00, '2018-04-10', 15000.00, 'TIRUPUR', '1', '1 years 1 months', ' Started own company at TIRUPUR', 1, '2021-02-02 11:00:18', 0, NULL, 0, NULL, 1),
(1616, 3126, 'Iopex Technologies', 'Solution Engineer', '2019-04-01', 12500.00, '2021-02-25', 12500.00, 'Chennai', '1', '1 years 10 months', 'Rotational shift, Income is not enough to handle my needs.', 1, '2021-02-02 11:16:54', 0, NULL, 0, NULL, 1),
(1617, 3128, 'Softlogic sysyems', 'System admin', '2019-01-02', 18.00, '2020-09-30', 22000.00, 'K.k.nagar', '1', '1 years 8 months', ' ', 1, '2021-02-02 12:25:03', 0, NULL, 0, NULL, 1),
(1618, 3131, 'bankbazaar', 'associate software developer', '2018-03-20', 250000.00, '1970-01-01', 400000.00, 'chennai', '2', '2 years 10 months', ' Better career Opurtunity', 1, '2021-02-02 03:45:47', 0, NULL, 0, NULL, 1),
(1619, 3134, 'talent pro india pvt ltd', 'sales executive', '2011-04-11', 14000.00, '2020-12-20', 15000.00, 'chennai', '1', '9 years 8 months', ' salary hike', 1, '2021-02-02 11:33:31', 0, NULL, 0, NULL, 1),
(1620, 3140, 'Altruist customer management', 'Customer support', '2019-03-05', 16000.00, '2020-02-05', 16000.00, 'Perungudi', '1', '0 years 11 months', ' Long distance', 1, '2021-02-03 10:39:55', 0, NULL, 0, NULL, 1),
(1621, 3146, 'Lifeline solution Pvt Ltd', 'Senior sales executive', '2018-05-24', 18500.00, '2020-07-30', 18500.00, 'Bangalore', '1', '2 years 2 months', ' Due to covid-19 ', 1, '2021-02-03 03:51:28', 0, NULL, 0, NULL, 1),
(1622, 3152, 'Gavs Technologies', 'Front end developer', '2020-03-09', 27000.00, '1970-01-01', 27000.00, 'Chennai', '2', '0 years 10 months', ' ', 1, '2021-02-03 05:38:58', 0, NULL, 0, NULL, 1),
(1623, 3155, 'tech Mahindra', 'cbo', '2019-02-02', 9000.00, '2021-02-28', 9000.00, 'chennai', '2', '2 years 0 months', ' low salary', 1, '2021-02-03 08:03:42', 0, NULL, 0, NULL, 1),
(1624, 3160, 'CNK Associate', 'DATA ANALYST TRAINEE', '2018-10-22', 120000.00, '2019-02-28', 120000.00, 'chennai', '1', '2 years 3 months', ' Working in project Basis, project was completed', 1, '2021-02-04 11:28:58', 0, NULL, 0, NULL, 1),
(1625, 3160, 'HDFC life insurance pvt ltd', 'Sales development manager', '2019-03-18', 220000.00, '2020-04-02', 260000.00, 'chennai', '1', '1 years 0 months', 'Personal reason', 1, '2021-02-04 11:31:20', 0, NULL, 0, NULL, 1),
(1626, 3160, 'Canara hsbc obc life insurance pvt ltd', 'Senior Relationship Officer', '2020-07-13', 350000.00, '2021-02-20', 350000.00, 'chennai', '1', '0 years 6 months', 'Personal reason', 1, '2021-02-04 11:33:34', 0, NULL, 0, NULL, 1),
(1627, 3163, 'Royal Sundaram', 'Back end process', '2019-01-03', 17000.00, '2019-12-30', 17000.00, 'OMR karapakam', '1', '0 years 11 months', ' Personal reason', 1, '2021-02-04 12:14:48', 0, NULL, 0, NULL, 1),
(1628, 3172, 'Innovative Infoziant Tech Labs Privated Limited ', 'Software Developer', '2018-04-05', 7000.00, '2019-03-31', 7000.00, 'Chennai', '1', '0 years 11 months', ' Skills less ', 1, '2021-02-04 03:15:42', 0, NULL, 0, NULL, 1),
(1629, 3172, 'Three Cube IT Lab Private Limited', 'Software Developer', '2019-06-04', 10000.00, '2020-08-10', 10000.00, 'Chennai', '1', '1 years 2 months', 'No projects there because of pandemic period', 1, '2021-02-04 03:17:12', 0, NULL, 0, NULL, 1),
(1630, 3172, 'Techybox Infosys Private Limited', 'Software Developer', '2020-09-13', 17000.00, '1970-01-01', 17000.00, 'Chennai', '2', '0 years 4 months', 'No projects to work ', 1, '2021-02-04 03:18:09', 0, NULL, 0, NULL, 1),
(1631, 3176, 'Version technology', 'Senior developer', '2018-05-16', 7000.00, '1970-01-01', 28000.00, 'Perungudi', '2', '2 years 8 months', ' ', 1, '2021-02-04 08:59:06', 0, NULL, 0, NULL, 1),
(1632, 3177, 'Bpm links', 'Software engineer', '2018-10-03', 180000.00, '1970-01-01', 375000.00, 'Chennai', '2', '2 years 4 months', ' I want to learn something new with new organization', 1, '2021-02-04 09:05:38', 0, NULL, 0, NULL, 1),
(1633, 3178, 'Cognizant', 'Junior Developer', '2019-07-11', 3.40, '1970-01-01', 4.80, 'Chennai', '2', '1 years 6 months', ' ', 1, '2021-02-04 11:20:22', 0, NULL, 0, NULL, 1),
(1634, 3181, 'Axis Bank Ltd', 'Relationship Officer', '2017-08-03', 14500.00, '2019-12-07', 17000.00, 'Bangalore', '1', '2 years 4 months', ' Better opportunity', 1, '2021-02-05 12:20:36', 0, NULL, 0, NULL, 1),
(1635, 3182, 'Flinto learning solution Pvt Ltd', 'Business development executive', '2019-09-04', 30000.00, '2019-12-16', 30000.00, 'Chennai', '1', '0 years 3 months', ' Company was A startup  started facing issue with the investor. Organization closed sales campaign completely', 1, '2021-02-05 12:35:42', 0, NULL, 0, NULL, 1),
(1636, 3182, 'American express', 'BDE', '2018-05-04', 22500.00, '2019-02-04', 22500.00, 'Chennai', '1', '0 years 9 months', 'Company closed outsourced ', 1, '2021-02-05 12:37:56', 0, NULL, 0, NULL, 1),
(1637, 3182, 'Bankbazaar', 'Customer relationship officer', '2017-09-04', 18000.00, '2018-04-17', 18000.00, 'Chennai', '1', '0 years 7 months', 'Bankbazaar was the first company I joined and  was more interested in sales rather than customer support', 1, '2021-02-05 12:40:48', 0, NULL, 0, NULL, 1),
(1638, 3183, 'itps techinfo pvt ltd', 'software developer', '2019-01-01', 30000.00, '1970-01-01', 30000.00, 'chennai', '2', '2 years 1 months', ' ', 1, '2021-02-05 01:46:45', 0, NULL, 0, NULL, 1),
(1639, 3183, 'nevastech pvt ltd', 'software developer', '2017-09-01', 20000.00, '2019-10-31', 25000.00, 'chennai', '1', '2 years 1 months', 'project completed', 1, '2021-02-05 01:48:01', 1, '2021-02-05 01:50:04', 0, NULL, 1),
(1640, 3183, 'habile technologies', 'jr software developer', '2013-12-11', 5000.00, '2017-08-31', 18000.00, 'chennai', '1', '3 years 8 months', 'got new opportunity ', 1, '2021-02-05 01:49:25', 0, NULL, 0, NULL, 1),
(1641, 3184, 'binfac technologies', 'mongo db adminstrator', '2018-10-01', 5000.00, '2019-10-05', 60000.00, 'chennai', '1', '1 years 0 months', ' 1 year Intership compeleted', 1, '2021-02-05 05:02:08', 0, NULL, 0, NULL, 1),
(1642, 3185, 'innova solutions', 'big data engineer', '2019-06-03', 360000.00, '1970-01-01', 360000.00, 'chennai', '2', '1 years 8 months', ' ', 1, '2021-02-05 05:13:01', 0, NULL, 0, NULL, 1),
(1643, 3184, 'seaknots it solutions', 'software tester', '2019-10-11', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '1 years 3 months', 'Due to covid situation no salary ', 1, '2021-02-05 05:30:10', 0, NULL, 0, NULL, 1),
(1644, 3188, 'hartpe pvt ltd', 'sale officer', '2019-07-18', 15000.00, '2021-01-27', 15000.00, 'chennai', '1', '1 years 6 months', ' salary hike', 1, '2021-02-05 09:08:55', 0, NULL, 0, NULL, 1),
(1645, 3189, 'india property online pvt ltd', 'sales executive', '2020-06-16', 14000.00, '1970-01-01', 14000.00, 'chennai', '2', '0 years 7 months', ' salary hike', 1, '2021-02-05 09:21:53', 0, NULL, 0, NULL, 1),
(1646, 3190, '10decoders', 'android developer', '2019-01-08', 8000.00, '1970-01-01', 22000.00, 'chennai porur', '2', '2 years 0 months', ' i like to work new environment and also for my financial growth', 1, '2021-02-06 09:51:28', 0, NULL, 0, NULL, 1),
(1647, 3191, 'Sutherland global services', 'System administrator', '2016-05-04', 6800.00, '2017-10-05', 6800.00, 'Chennai', '1', '1 years 5 months', ' ', 1, '2021-02-06 10:41:45', 0, NULL, 0, NULL, 1),
(1648, 3191, 'Onwards eService Pvt Ltd ', 'Network Engineer', '2018-05-09', 13000.00, '2019-03-31', 13000.00, 'Chennai', '1', '0 years 10 months', 'Career growth', 1, '2021-02-06 10:46:15', 0, NULL, 0, NULL, 1),
(1649, 3191, 'Madras Engineering Industries', 'System administrator', '2019-04-01', 25000.00, '1970-01-01', 25000.00, 'Chennai', '2', '1 years 10 months', 'I am looking for an opportunity in the line of .....React js for developer.\n', 1, '2021-02-06 10:51:43', 0, NULL, 0, NULL, 1),
(1650, 3192, 'home india', 'fundraiser', '2019-12-01', 18800.00, '2020-09-05', 18800.00, 'bangalore', '1', '1 years 2 months', ' company shutdown', 1, '2021-02-06 11:01:31', 0, NULL, 0, NULL, 1),
(1651, 3192, 'home india', 'fundraiser', '2019-12-01', 18800.00, '2020-09-05', 18800.00, 'bangalore', '1', '1 years 2 months', ' company shutdown', 1, '2021-02-06 11:01:31', 0, NULL, 0, NULL, 1),
(1652, 3192, 'aegis', 'executive', '2018-12-13', 16000.00, '2019-10-04', 16000.00, 'bangalore', '1', '0 years 9 months', 'illness', 1, '2021-02-06 11:02:47', 0, NULL, 0, NULL, 1),
(1653, 3194, 'Varun beverages ltd', 'Copc', '2019-05-05', 20.00, '2021-02-20', 25000.00, 'Malleshwaram ', '1', '1 years 9 months', ' ', 1, '2021-02-06 11:02:52', 0, NULL, 0, NULL, 1),
(1654, 3195, 'Connect india e-commerce service pvt ltd', 'Network sales executive', '2019-04-10', 2.77, '2019-12-01', 2.77, 'Odisha', '1', '0 years 7 months', ' Company was decided to Wind up', 1, '2021-02-06 11:22:27', 0, NULL, 0, NULL, 1),
(1655, 3195, 'Reliance jio infocomm ltd', 'Retail Relationship officer', '2016-09-15', 1.44, '2019-03-31', 2.16, 'Odisha', '1', '2 years 6 months', 'Having new opportuniti', 1, '2021-02-06 11:25:58', 0, NULL, 0, NULL, 1),
(1656, 3196, 'Jain metals ', 'Executive ', '2020-08-12', 20000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '0 years 5 months', ' Currently working ', 1, '2021-02-06 12:47:35', 0, NULL, 0, NULL, 1),
(1657, 3199, 'Hapag-Lloyd.', 'customer co-ordination', '2019-05-30', 15000.00, '2019-07-13', 15000.00, 'perungudi', '1', '0 years 1 months', ' undergone a minor operation ', 1, '2021-02-06 01:26:36', 0, NULL, 0, NULL, 1),
(1658, 3199, 'Hapag-Lloyd ', 'customer  coordination ', '2018-05-30', 15000.00, '2019-07-13', 15000.00, 'perungudi', '1', '1 years 1 months', 'undergone a minor operation in leg', 1, '2021-02-06 01:28:25', 0, NULL, 0, NULL, 1),
(1659, 3201, 'Fortune trading of corporation', 'Customer support executive', '2019-04-12', 12.00, '2020-12-31', 12.00, 'Chennai', '1', '1 years 8 months', ' No hike', 1, '2021-02-06 03:34:01', 0, NULL, 0, NULL, 1),
(1660, 3202, 'Rapadchakara ventures LLP', 'Junior Developer', '2020-08-12', 300000.00, '2021-03-01', 300000.00, 'Chennaj', '1', '0 years 6 months', ' ', 1, '2021-02-06 05:36:29', 0, NULL, 0, NULL, 1),
(1661, 3204, 'star health insurance', 'sales officer', '2017-04-14', 14000.00, '2018-05-14', 14000.00, 'chennai', '1', '1 years 1 months', ' salary', 1, '2021-02-06 08:17:52', 0, NULL, 0, NULL, 1),
(1662, 3205, 'ashirvad microfinance', 'sales officer', '2017-06-06', 15000.00, '2020-06-09', 15000.00, 'chennai', '1', '3 years 0 months', ' salary', 1, '2021-02-06 08:35:50', 0, NULL, 0, NULL, 1),
(1663, 3203, 'jarulss software solutions pvt,lim', 'software developer', '2019-10-14', 9500.00, '1970-01-01', 15000.00, 'chennai', '2', '1 years 3 months', ' ', 1, '2021-02-07 09:23:15', 0, NULL, 0, NULL, 1),
(1664, 3179, 'Shriram transport finance company ltd', 'Relationship excuitive', '2019-04-22', 12000.00, '2021-03-01', 14000.00, 'Mylapore', '1', '1 years 10 months', 'I feel undervalued for current role in That company it is reason for reasone for relieving', 1, '2021-02-08 11:22:18', 0, NULL, 0, NULL, 1),
(1665, 3187, 'Eat good technologies Pvt ltd', 'Site Manager', '2018-10-01', 15000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '2 years 4 months', ' Company has no business and can\'t provide full salary, Also I have to explore More so I\'m planning to Leave the company', 1, '2021-02-08 11:25:33', 0, NULL, 0, NULL, 1),
(1666, 3210, 'one data software solutions', 'front end developer', '2019-12-03', 8000.00, '2020-12-12', 12000.00, 'coimbatore', '1', '1 years 0 months', ' because of salary issue', 1, '2021-02-08 12:49:29', 0, NULL, 0, NULL, 1),
(1667, 3215, 'Pronevus technology pvt LTD', 'Customer service executive', '2020-01-10', 16.50, '2021-01-20', 16.50, 'Domlur', '1', '1 years 0 months', ' Company not growth running down and shifted another location that Why i will resugned', 1, '2021-02-08 01:24:43', 0, NULL, 0, NULL, 1),
(1668, 3216, 'Google pay ', 'Business Development Executive', '2020-01-04', 18000.00, '2020-11-25', 18000.00, 'Chennai', '1', '1 years 1 months', ' Commission based salary ', 1, '2021-02-08 01:53:12', 0, NULL, 0, NULL, 1),
(1669, 3219, 'Zealous Services ', 'Customer Support Executive ', '2018-07-03', 11000.00, '2020-03-11', 13000.00, 'Chennai ', '1', '1 years 8 months', ' Shifted to my native so I got relieved ', 1, '2021-02-08 02:46:09', 0, NULL, 0, NULL, 1),
(1670, 3223, '10decoders', 'software developer', '2019-12-03', 8000.00, '2021-03-08', 2.40, 'chennai', '1', '1 years 3 months', ' for my financial growth', 1, '2021-02-09 09:28:43', 0, NULL, 0, NULL, 1),
(1671, 3226, 'sixsix technos', 'frontend developer', '2019-05-02', 13000.00, '2020-11-27', 20000.00, 'vadapalani', '1', '1 years 6 months', ' working environment', 1, '2021-02-09 11:09:54', 0, NULL, 0, NULL, 1),
(1672, 3229, 'menthee technologies', 'full stack web developer', '2019-06-01', 7500.00, '1970-01-01', 13000.00, 'chennai', '2', '1 years 8 months', ' Low salary', 1, '2021-02-09 01:03:21', 0, NULL, 0, NULL, 1),
(1673, 3222, 'Abhishaar techonolgy', 'Business Development Executive', '2015-07-01', 10.00, '2017-12-30', 20000.00, 'Noida', '1', '2 years 5 months', ' Process completed', 1, '2021-02-09 01:23:32', 0, NULL, 0, NULL, 1),
(1674, 3230, 'RAPPORTYK TECHNOLOGIES PVT LTD', 'full stack developer', '2020-09-07', 10000.00, '2021-02-09', 10000.00, 'chennai', '1', '0 years 5 months', ' low package', 1, '2021-02-09 02:35:18', 0, NULL, 0, NULL, 1),
(1675, 3231, 'genuine technology', 'branch sales manager', '2014-01-05', 40000.00, '1970-01-01', 40000.00, 'chennai', '2', '7 years 1 months', ' salary hike', 1, '2021-02-09 03:10:20', 0, NULL, 0, NULL, 1),
(1676, 3232, 'hindhuja finance', 'sales manager', '2018-02-13', 15000.00, '2019-01-08', 20000.00, 'chennai', '1', '0 years 10 months', ' salary hike', 1, '2021-02-09 03:20:13', 0, NULL, 0, NULL, 1),
(1677, 3238, 'firstsource solution pvt ltd', 'support Engineer', '2019-06-03', 15000.00, '2020-12-03', 15000.00, 'navallur', '1', '1 years 6 months', 'i am  Searching For Software Developer Role. ', 1, '2021-02-09 06:13:32', 0, NULL, 0, NULL, 1),
(1678, 3240, 'park avenue', 'marketing executive', '2019-02-05', 18000.00, '2020-01-29', 18000.00, 'chennai', '1', '0 years 11 months', ' Salary', 1, '2021-02-09 08:56:05', 0, NULL, 0, NULL, 1),
(1679, 3241, 'hdfc life', 'crm', '2019-11-19', 13000.00, '2020-06-16', 14000.00, 'chennai', '1', '0 years 6 months', ' salary', 1, '2021-02-09 09:04:42', 0, NULL, 0, NULL, 1),
(1680, 3243, 'max bhupa life', 'agency manager', '2019-12-16', 30000.00, '2020-09-15', 35000.00, 'chennai', '1', '0 years 8 months', ' Salary', 1, '2021-02-10 09:39:09', 0, NULL, 0, NULL, 1),
(1681, 3237, 'Zealous Organization', 'Customer Support Executive ', '2019-03-13', 8500.00, '2019-11-11', 8500.00, 'Kukatpally', '1', '0 years 7 months', ' It\'s only 6 months Contract that\'s why I will chane my Job ', 1, '2021-02-10 10:41:32', 0, NULL, 0, NULL, 1),
(1682, 3246, 'RCK constructions ', 'Supervisor', '2019-08-20', 15000.00, '2020-11-25', 15000.00, 'Chennai', '1', '1 years 3 months', 'Salary issues and job environment was not good', 1, '2021-02-10 11:15:56', 0, NULL, 0, NULL, 1),
(1683, 3248, 'Indianer group of company', 'Sales and marketing ', '2019-08-01', 14000.00, '2020-02-01', 14000.00, 'Annangar ', '1', '0 years 6 months', 'Due to this Corona situation they have shutdown the office ', 1, '2021-02-10 12:24:27', 0, NULL, 0, NULL, 1),
(1684, 3253, 'RR DONNALLY India outsource Pvt Ltd', 'Financial associate', '2019-12-05', 15000.00, '2020-05-28', 15000.00, 'Chennai, Mylapore', '1', '0 years 5 months', ' Covid 19.. dropped night swift', 1, '2021-02-10 01:13:33', 0, NULL, 0, NULL, 1),
(1685, 3255, 'Medusind ', 'Client service Executive ', '2019-07-14', 16500.00, '2020-10-22', 16500.00, 'Chennai', '1', '1 years 3 months', ' ', 1, '2021-02-10 01:48:08', 0, NULL, 0, NULL, 1),
(1686, 3119, 'Magellanix Technologies solutions', 'Web developer', '2017-07-03', 1.00, '1970-01-01', 400000.00, 'Neelangarai', '2', '3 years 7 months', ' Change of environment', 1, '2021-02-10 01:58:11', 0, NULL, 0, NULL, 1),
(1687, 3254, 'Good will wealth  management ', 'Dealing ', '2019-05-10', 12000.00, '2020-05-14', 12000.00, 'Chennai ', '1', '1 years 0 months', ' ', 1, '2021-02-10 02:45:17', 0, NULL, 0, NULL, 1),
(1688, 1750, 'tikono infinity', 'sr. sales executive', '2018-06-05', 30000.00, '2020-05-25', 30000.00, 'chennai', '1', '1 years 11 months', ' Salary', 1, '2021-02-11 09:32:26', 0, NULL, 0, NULL, 1),
(1689, 3258, 'Axis Bank', 'Relationship executive', '2018-01-08', 10000.00, '2019-01-10', 10000.00, 'COIMBATORE', '1', '1 years 0 months', ' Expecting more Salary', 1, '2021-02-11 10:27:06', 0, NULL, 0, NULL, 1),
(1690, 3258, 'Prime yarns', 'Relationship executive', '2019-01-22', 11000.00, '2020-03-10', 14000.00, 'Coimbatore', '1', '1 years 1 months', 'Expecting more Salary', 1, '2021-02-11 10:30:24', 0, NULL, 0, NULL, 1),
(1691, 3261, 'Genpact India Pvt ltd', 'Process associate', '2019-06-30', 31.00, '2020-08-24', 13900.00, 'Noida 135', '1', '1 years 1 months', ' Interpersonal growth and salary hike.', 1, '2021-02-11 12:25:10', 0, NULL, 0, NULL, 1),
(1692, 3259, 'Scio management solutions', 'Medical billing ', '2018-11-27', 18000.00, '2020-04-30', 23000.00, 'Tharamani ', '1', '1 years 5 months', ' Due to night shift', 1, '2021-02-11 12:31:11', 0, NULL, 0, NULL, 1),
(1693, 3027, 'Rapidcare transcription pvt ltf', 'Developer', '2018-09-03', 135000.00, '2020-08-10', 19000.00, 'Little mount', '1', '1 years 11 months', ' Career growth', 1, '2021-02-11 01:21:00', 0, NULL, 0, NULL, 1),
(1694, 3264, 'Hdb Financial Services Ltd', 'Branch operation manager', '2016-10-17', 15000.00, '1970-01-01', 22000.00, 'Nungambakkam', '2', '4 years 3 months', 'Role change', 1, '2021-02-11 02:20:50', 0, NULL, 0, NULL, 1),
(1695, 3268, 'Spritle Software ', 'Software developer ', '2019-09-05', 2.40, '2020-11-30', 2.40, 'Chennai ', '1', '1 years 5 months', ' Need to go with some interesting projects', 1, '2021-02-11 06:07:35', 0, NULL, 0, NULL, 1),
(1696, 3266, 'vertex,plada infotech,bankbazzer', 'team leader', '2017-01-05', 10000.00, '2020-11-17', 17500.00, 'chennai', '1', '3 years 10 months', ' layoff', 1, '2021-02-11 06:47:55', 0, NULL, 0, NULL, 1),
(1697, 3269, 'hathway cable', 'team leader', '2020-11-20', 28000.00, '2021-03-04', 28000.00, 'Chennai', '1', '0 years 3 months', ' ', 1, '2021-02-11 06:55:59', 0, NULL, 0, NULL, 1),
(1698, 3270, 'Jana bank', 'BDE', '2020-12-11', 28000.00, '1970-01-01', 28000.00, 'Chennai', '2', '0 years 2 months', ' Better position', 1, '2021-02-11 09:08:58', 0, NULL, 0, NULL, 1),
(1699, 3272, 'GIGAME INFO TECH SOLUTIONS', 'Front End Developer', '2019-06-03', 12000.00, '1970-01-01', 20000.00, 'Chennai', '2', '1 years 8 months', 'i want to become a full stack', 1, '2021-02-11 11:29:30', 0, NULL, 0, NULL, 1),
(1700, 3271, 'wintlt technologies', 'software developer', '2019-06-07', 15000.00, '2020-03-23', 15000.00, 'chennai', '1', '0 years 9 months', 'went to native in lockdown to  take care of family', 1, '2021-02-12 11:33:23', 1, '2021-02-12 11:34:46', 0, NULL, 1),
(1701, 3275, 'SBI cards', 'Sales associate', '2016-11-14', 18.00, '2018-10-16', 42500.00, 'Chennai', '1', '1 years 11 months', ' No growth', 1, '2021-02-12 11:54:40', 0, NULL, 0, NULL, 1),
(1702, 3276, 'Accenture', 'HR co-Ordinater', '2015-03-10', 12000.00, '2018-10-31', 13500.00, 'Sholinganallur', '1', '3 years 7 months', ' Contract over', 1, '2021-02-12 12:01:01', 0, NULL, 0, NULL, 1),
(1703, 3273, 'Sky home enterprises ', 'Sales manager and telecaling ', '2019-02-11', 16000.00, '2021-02-12', 16000.00, 'Guindy', '2', '2 years 0 months', 'Real-estate businesses is very low but the same time salary issues  ', 1, '2021-02-12 12:18:10', 0, NULL, 0, NULL, 1),
(1704, 3277, 'Idea cellular Private limited ', 'MI\'s executive ', '2018-07-16', 14000.00, '2020-02-02', 15000.00, 'Perugudi ', '1', '1 years 6 months', ' Process  ramdown', 1, '2021-02-12 12:18:35', 0, NULL, 0, NULL, 1),
(1705, 3279, 'Exide life insuranxe', 'Sr Agency developement Manager', '2019-12-10', 31.00, '2020-07-13', 52333.00, 'Bangalore', '1', '0 years 7 months', ' Branch closed', 1, '2021-02-12 01:00:36', 0, NULL, 0, NULL, 1),
(1706, 3281, 'tata aia life', 'relationship manager', '2019-12-01', 250000.00, '1970-01-01', 270000.00, 'bangalore', '2', '1 years 2 months', ' Was planning for a change', 1, '2021-02-12 01:58:24', 0, NULL, 0, NULL, 1),
(1707, 3289, 'oic', 'junior full stack developer', '2019-05-01', 22000.00, '2020-05-05', 22000.00, 'Chennai', '1', '1 years 0 months', 'No funding so they closed the company', 1, '2021-02-12 07:30:48', 0, NULL, 0, NULL, 1),
(1708, 3289, 'ezeehousing', 'full stack developer', '2020-05-07', 40000.00, '2021-03-07', 40000.00, 'Chennai', '1', '0 years 10 months', 'Salary issues', 1, '2021-02-12 07:32:24', 0, NULL, 0, NULL, 1),
(1709, 3296, 'Wow Momo foods Pvt LTD', 'mIS', '2019-04-10', 10000.00, '2020-09-05', 10000.00, 'Alandur', '1', '1 years 4 months', ' For better opportunity', 1, '2021-02-13 11:11:29', 0, NULL, 0, NULL, 1),
(1710, 3297, 'New Shakra Enterprises', 'Administration Executive', '2017-08-10', 10000.00, '2020-03-31', 13000.00, 'T.nagar', '1', '2 years 7 months', ' Corona issues job was quit ', 1, '2021-02-13 11:54:48', 0, NULL, 0, NULL, 1),
(1711, 3298, 'Intelent Global Servies Pvt .Ltd', 'Mis Executive ', '2016-07-09', 18000.00, '2018-02-13', 18000.00, '2yrs', '1', '1 years 7 months', ' ', 1, '2021-02-13 12:00:02', 0, NULL, 0, NULL, 1),
(1712, 3300, 'ags health', 'workforce managment', '2019-01-07', 15000.00, '2020-10-12', 17125.00, 'chennai', '1', '1 years 9 months', ' career Growth', 1, '2021-02-13 01:44:52', 0, NULL, 0, NULL, 1),
(1713, 3300, 'allsec technologies', 'customer support executive', '2017-03-17', 10000.00, '2019-01-02', 12500.00, 'chennai', '1', '1 years 9 months', 'better opportunity', 1, '2021-02-13 01:46:33', 0, NULL, 0, NULL, 1),
(1714, 3303, 'Netism soft private limited ', 'React Native Developer ', '2020-01-01', 8000.00, '1970-01-01', 10000.00, 'Chrompet', '2', '1 years 1 months', ' Due to corona issue lack of projects', 1, '2021-02-13 04:14:32', 0, NULL, 0, NULL, 1),
(1715, 3304, 'cargo flash infotech pvt ltd', 'research analyst', '2019-11-01', 18500.00, '2020-12-14', 22500.00, 'gurgoan', '1', '1 years 1 months', ' Dad\'s death, since i am  only son, i cannot leave my mom alone in chennai and continue my work in gurgoan. ', 1, '2021-02-13 04:33:17', 0, NULL, 0, NULL, 1),
(1716, 3301, 'Cognizant', 'PAT', '2019-11-15', 338000.00, '2020-05-05', 338000.00, 'Chennai ', '1', '0 years 5 months', ' Location and project got in North side so couldnt join so resigned ', 1, '2021-02-13 09:51:44', 0, NULL, 0, NULL, 1),
(1717, 3306, 'clear pack container', 'marketing execitive', '2019-12-09', 18000.00, '2020-08-07', 18000.00, 'chennai', '1', '1 years 2 months', 'salary Hike ', 1, '2021-02-14 11:19:51', 0, NULL, 0, NULL, 1),
(1718, 3307, 'bajaj finance', 'ass manager', '2018-07-19', 15000.00, '2020-11-26', 15000.00, 'chennai', '1', '2 years 4 months', ' salary', 1, '2021-02-14 01:18:09', 0, NULL, 0, NULL, 1),
(1719, 3307, 'bajaj finance', 'ass manager', '2018-07-19', 15000.00, '2020-11-26', 15000.00, 'chennai', '1', '2 years 4 months', ' salary', 1, '2021-02-14 01:18:09', 1, '2021-02-14 01:18:21', 0, NULL, 0),
(1720, 3308, 's b i cr. cards', 'team leader', '2019-06-10', 18000.00, '2020-10-20', 18000.00, 'chennai', '1', '1 years 4 months', ' Salary', 1, '2021-02-14 01:30:36', 0, NULL, 0, NULL, 1),
(1721, 3309, 'jana small finance', 'sales officer', '2020-10-06', 20000.00, '2021-03-10', 20000.00, 'chennai', '1', '0 years 5 months', ' salary', 1, '2021-02-14 08:59:47', 0, NULL, 0, NULL, 1),
(1722, 3311, 'IMARQUE GLOBAL SOLUTIONS LTD', 'B.COM', '2016-08-01', 7000.00, '2016-11-08', 7000.00, 'THENAMPET', '1', '0 years 3 months', ' Not cofortable', 1, '2021-02-15 10:34:20', 1, '2021-02-15 10:40:52', 0, NULL, 0),
(1723, 3311, 'IMARQUE GLOBAL SOLUTIONS LTD', 'TELE SALES EXECUTIVE(SBI CARD)', '2016-08-01', 70000.00, '2016-11-08', 7000.00, 'WHOLE CHENNAI', '1', '0 years 3 months', 'Salary not comfortable', 1, '2021-02-15 10:42:57', 1, '2021-02-15 10:54:26', 0, NULL, 0),
(1724, 3311, 'DENAVE INDIA LTD', 'ACTIVATION EXECUTIVE', '2017-01-02', 18000.00, '2017-02-07', 18000.00, 'CHENNAI', '1', '0 years 1 months', '(FREERCHARGE) PROCESS CLOSED', 1, '2021-02-15 10:48:42', 1, '2021-02-15 10:54:20', 0, NULL, 0),
(1725, 3311, 'MANPOWER GROUP', 'ONBOARDING EXECUTIVE(AIRTEL PAYMENTS BANK)', '2018-07-06', 15000.00, '2019-08-02', 15000.00, 'CHENNAI', '1', '1 years 0 months', 'Team moving on gpay', 1, '2021-02-15 11:05:15', 0, NULL, 0, NULL, 1),
(1726, 3311, 'Team lease', 'Group leader', '2018-08-06', 17000.00, '2020-04-07', 17000.00, 'CHENNAI  Central/south', '1', '1 years 8 months', 'Corona issue', 1, '2021-02-15 11:08:24', 0, NULL, 0, NULL, 1),
(1727, 3312, 'bank bazaar insurance', 'customer Relationship Manager', '2017-11-03', 18000.00, '2019-01-12', 18000.00, 'chennai', '1', '3 years 3 months', ' process closure', 1, '2021-02-15 11:41:20', 0, NULL, 0, NULL, 1),
(1728, 3312, 'bajaj allianz life insurance', 'relationship manager', '2019-02-18', 23000.00, '2019-09-21', 23000.00, 'chennai', '1', '0 years 7 months', 'channel transfer', 1, '2021-02-15 11:42:41', 0, NULL, 0, NULL, 1),
(1729, 3312, 'edelweiss tokio life insurance', 'senior financial executive', '2019-10-03', 28000.00, '2020-12-03', 25000.00, 'chennai', '1', '1 years 2 months', 'personal', 1, '2021-02-15 11:44:07', 0, NULL, 0, NULL, 1),
(1730, 3318, 'Hdfc sales pvt ', 'Financial services associate', '2018-04-02', 16000.00, '2020-08-30', 18000.00, 'Chennai', '1', '2 years 4 months', ' Personal issues', 1, '2021-02-15 01:29:32', 0, NULL, 0, NULL, 1),
(1731, 3319, 'icube bs', 'junior software developer', '2018-06-01', 7500.00, '2019-07-31', 12000.00, 'chennai', '1', '1 years 1 months', ' salary not sufficient', 1, '2021-02-15 04:59:00', 0, NULL, 0, NULL, 1),
(1732, 3319, 'aggrandize venture', 'senior software developer', '2019-08-01', 15500.00, '1970-01-01', 27500.00, 'chennai', '2', '1 years 6 months', 'need an carrier growth', 1, '2021-02-15 05:02:01', 0, NULL, 0, NULL, 1),
(1733, 3321, 'Rlabs Enterprise Services  LTD', 'ui developer', '2016-08-16', 18000.00, '2019-01-25', 18000.00, 'bangalore', '1', '2 years 5 months', ' To Explore new Technologies in UI Development', 1, '2021-02-15 05:15:43', 0, NULL, 0, NULL, 1),
(1734, 3321, 'Teknuance Info Solutions Private Limited', 'Front End Developer', '2019-02-01', 22000.00, '2019-03-15', 22000.00, 'chennai', '1', '0 years 1 months', 'Health Issue', 1, '2021-02-15 05:17:12', 1, '2021-02-15 05:24:03', 0, NULL, 0),
(1735, 3321, 'Prabha’s Vcare Health Clinic Private Limited', 'Web Developer', '2019-03-28', 25000.00, '1970-01-01', 30000.00, 'chennai', '2', '1 years 10 months', 'Looking for a new challenge\n\nI am currently looking for a position better matched to my skills and long-term career goals', 1, '2021-02-15 05:23:13', 0, NULL, 0, NULL, 1),
(1736, 3323, 'Star health insurance', 'Tso', '2019-07-17', 12500.00, '2020-07-09', 12000.00, 'Kodambakkam', '1', '0 years 11 months', ' Salary and incentives issue ', 1, '2021-02-15 05:50:36', 0, NULL, 0, NULL, 1),
(1737, 3325, 'Qruize technology ', 'Senior executive', '2019-05-05', 35.00, '2020-05-15', 38.00, 'Ashok nagar', '1', '1 years 0 months', ' Process ram down', 1, '2021-02-15 06:09:48', 0, NULL, 0, NULL, 1),
(1738, 3326, 'Times of India', 'Telle caller', '2020-03-16', 12000.00, '2020-05-31', 12000.00, 'T.nagar', '1', '0 years 2 months', ' ', 1, '2021-02-15 06:51:51', 0, NULL, 0, NULL, 1),
(1739, 3326, 'Start health insurance', 'Telle caller', '2019-06-17', 12000.00, '2020-01-17', 120000.00, 'Nandhanam', '1', '0 years 7 months', 'Salary not properly given', 1, '2021-02-15 06:53:39', 0, NULL, 0, NULL, 1),
(1740, 3327, 'Rifluxyss software private limited', 'Php developer', '2019-10-23', 15000.00, '2021-02-17', 15000.00, 'Velachery check post', '1', '1 years 3 months', ' Not proper timing in out time.', 1, '2021-02-15 07:03:12', 0, NULL, 0, NULL, 1),
(1741, 3324, 'Netaxies private limited', 'Web designer', '2020-11-06', 10000.00, '2021-02-15', 15000.00, 'Anna nagar', '1', '0 years 3 months', 'This is internship', 1, '2021-02-15 07:59:04', 0, NULL, 0, NULL, 1),
(1742, 3324, 'Masskpro', 'Web designer', '2019-10-01', 15000.00, '2020-03-31', 15000.00, 'Triplicane', '1', '0 years 6 months', 'This is startup Company.  Due to covid situation the company closed. So that I was Relive from the company.', 1, '2021-02-15 08:07:33', 0, NULL, 0, NULL, 1),
(1743, 3332, 'INDIA INFOLINE LTD', 'Sales Executive', '2009-04-07', 4000.00, '2009-11-05', 5000.00, 'Erode', '1', '0 years 6 months', ' Getting Promotion', 1, '2021-02-16 10:41:42', 0, NULL, 0, NULL, 1),
(1744, 3332, 'INDIA INFOLINE LTD', 'Team Leader', '2009-11-07', 7500.00, '2010-04-05', 7500.00, 'Erode', '1', '0 years 4 months', 'Getting Promotion', 1, '2021-02-16 10:42:56', 0, NULL, 0, NULL, 1),
(1745, 3332, 'INDIA INFOLINE LTD', 'Asst Branch Manager', '2010-04-06', 12500.00, '2010-10-05', 12500.00, 'Erode', '1', '0 years 5 months', 'Getting Promotion', 1, '2021-02-16 10:44:07', 0, NULL, 0, NULL, 1),
(1746, 3332, 'India infoline ltd', 'Branch Manager', '2010-10-06', 15000.00, '2011-04-05', 15000.00, 'Erode', '1', '0 years 5 months', 'Getting Promotion', 1, '2021-02-16 10:45:12', 0, NULL, 0, NULL, 1),
(1747, 3332, 'India infoline ltd', 'Senior Branch Manager', '2011-04-06', 20000.00, '2012-03-31', 20000.00, 'Erode & Mettupalayam', '1', '0 years 11 months', 'Getting Promotion', 1, '2021-02-16 10:46:32', 0, NULL, 0, NULL, 1),
(1748, 3332, 'India infoline ltd', 'Asst Area Manager', '2012-04-05', 25000.00, '2013-03-31', 25000.00, 'Erode', '1', '0 years 11 months', 'Getting Promotion', 1, '2021-02-16 10:49:00', 0, NULL, 0, NULL, 1),
(1749, 3332, 'Secure Solution', 'Area Manager', '2013-04-06', 30000.00, '2016-04-05', 35000.00, 'Trichy', '1', '2 years 11 months', 'Family shifted ', 1, '2021-02-16 10:52:35', 0, NULL, 0, NULL, 1),
(1750, 3332, 'Genuine Admission', 'Business Development Manager', '2016-06-06', 30000.00, '2017-10-30', 35000.00, 'Chennai', '1', '1 years 4 months', 'Personal Situation', 1, '2021-02-16 10:54:57', 0, NULL, 0, NULL, 1),
(1751, 3333, 'Pro-lyte lighting solutions pvt ltd', 'Business development manager ', '2018-01-28', 20000.00, '2020-12-31', 25000.00, 'South tamilnadu', '1', '2 years 11 months', ' No hike in salary for past 2 yrs', 1, '2021-02-16 11:05:14', 0, NULL, 0, NULL, 1),
(1752, 3333, 'Motocare ', 'Service advisor', '2016-11-10', 10000.00, '2017-11-10', 12000.00, 'Karur', '1', '1 years 0 months', 'Needed a job change', 1, '2021-02-16 11:06:49', 0, NULL, 0, NULL, 1),
(1753, 3336, 'RR DONNELLY & SONS', 'Senior Research associate', '2019-05-02', 420000.00, '2020-10-06', 420000.00, 'Chennai', '1', '1 years 5 months', ' Marriage', 1, '2021-02-16 11:30:57', 0, NULL, 0, NULL, 1),
(1754, 3337, 'Justdail ', 'Telecaller', '2020-11-19', 12000.00, '1970-01-01', 12000.00, 'Guidy', '2', '0 years 2 months', ' Better job ', 1, '2021-02-16 11:37:29', 0, NULL, 0, NULL, 1),
(1755, 3334, 'infosys', 'systems engineer', '2019-05-20', 25000.00, '1970-01-01', 32615.00, 'trivandrum', '2', '1 years 8 months', ' Stagnation in knowledge exploration.', 1, '2021-02-16 11:39:35', 0, NULL, 0, NULL, 1),
(1756, 3320, 'Sales marketing', 'Sales', '2020-07-09', 20000.00, '2021-02-28', 20000.00, 'Chennai', '1', '0 years 7 months', 'Sarly not satisfaction', 1, '2021-02-16 11:47:59', 0, NULL, 0, NULL, 1),
(1757, 3340, 'Pnbmetlife', 'Assistant relationship manager', '2020-07-23', 9750.00, '2020-12-26', 2650000.00, 'Egmore', '1', '0 years 5 months', ' ', 1, '2021-02-16 11:57:32', 0, NULL, 0, NULL, 1),
(1758, 3338, 'Himalaya drug company', 'Sales promoter', '2018-09-06', 12500.00, '2020-09-04', 12500.00, 'Alwarpet', '1', '1 years 11 months', ' Due to this covid situation I was unable to continue this job .since my native is pudukkottai .so I was move to my hometown', 1, '2021-02-16 12:03:59', 0, NULL, 0, NULL, 1),
(1759, 3348, 'Fues technology solutions ', 'Full stack web developer ', '2019-08-01', 12000.00, '1970-01-01', 20000.00, 'Chennai (Porur) ', '2', '1 years 6 months', ' Looking for new challenges ', 1, '2021-02-16 06:05:42', 0, NULL, 0, NULL, 1),
(1760, 3350, 'Shahul Hameed Auditor office ', 'Audit assistant ', '2013-06-01', 8000.00, '2015-09-05', 15000.00, 'Royapettah ', '1', '2 years 3 months', ' Got A job in Auditor\'s  client office ', 1, '2021-02-16 06:34:51', 0, NULL, 0, NULL, 1),
(1761, 3350, 'Nission educational consultants ', 'Office Accountant', '2015-10-05', 18000.00, '2017-08-15', 22000.00, 'Nungambakkam ', '1', '1 years 10 months', 'Employer went into loss of business ', 1, '2021-02-16 06:36:50', 0, NULL, 0, NULL, 1),
(1762, 3350, 'IIT Madras ', 'Senior accountant ', '2017-09-04', 25000.00, '2019-04-30', 25000.00, 'Adyar ', '1', '1 years 7 months', 'Government stopped Funding to contract Employees', 1, '2021-02-16 06:38:50', 0, NULL, 0, NULL, 1),
(1763, 3350, 'Saveetha dental college hospital ', 'Assistant accounts officer ', '2019-11-04', 20750.00, '2021-02-12', 21050.00, 'Poonamalle ', '1', '1 years 3 months', 'No proper Growth for my career ', 1, '2021-02-16 06:43:03', 0, NULL, 0, NULL, 1),
(1764, 3349, 'lic of india', 'agent', '2014-06-16', 20000.00, '1970-01-01', 40000.00, 'chennai', '2', '6 years 8 months', ' still  continue to agency', 1, '2021-02-16 07:14:21', 0, NULL, 0, NULL, 1),
(1765, 3349, 'star health and allied insurance', 'agent', '2015-05-15', 2500.00, '1970-01-01', 10000.00, 'chennai', '2', '5 years 9 months', 'still continue to agency', 1, '2021-02-16 07:17:00', 0, NULL, 0, NULL, 1),
(1766, 3349, 'alice blue securities pvt ltd', 'own franchise', '2011-09-15', 10000.00, '2016-01-11', 50000.00, 'chennai', '1', '4 years 3 months', 'to concentrate on full time agnet', 1, '2021-02-16 07:27:09', 0, NULL, 0, NULL, 1),
(1767, 3353, 'Stradegi Solutions', 'Technical Analyst', '2019-05-01', 300000.00, '1970-01-01', 375000.00, 'Sholinganallur', '2', '1 years 9 months', ' Looking for environmental change', 1, '2021-02-16 10:52:06', 0, NULL, 0, NULL, 1),
(1768, 3352, 'Eagle to info tech Pvt ltd', 'UI developer', '2017-11-05', 18000.00, '2020-12-31', 28000.00, 'Pune', '1', '3 years 1 months', ' Job looking to tamilnadu', 1, '2021-02-17 01:07:22', 0, NULL, 0, NULL, 1),
(1769, 3354, 'Extramarks', 'Business development executive', '2019-12-01', 25000.00, '2020-03-31', 25000.00, 'Anna nagar, chennai', '1', '0 years 4 months', ' World collapsed', 1, '2021-02-17 09:51:42', 0, NULL, 0, NULL, 1),
(1770, 3356, 'Sutherland global services', 'Customer associate', '2017-08-02', 10500.00, '2018-01-10', 11000.00, 'Chennai', '1', '3 years 6 months', ' That was continuous night shift', 1, '2021-02-17 09:59:55', 0, NULL, 0, NULL, 1),
(1771, 3359, 'Zalaris ', 'Associate Process Administrator', '2019-02-20', 10000.00, '2021-01-11', 12000.00, 'Chennai', '1', '1 years 10 months', ' For career growth and Process Rampdown ', 1, '2021-02-17 11:11:52', 0, NULL, 0, NULL, 1),
(1772, 3360, 'Zalaris HR services', 'Process associate administrator', '2019-01-03', 10000.00, '2020-05-31', 12000.00, 'Chennai', '1', '1 years 4 months', ' Process Ramp down', 1, '2021-02-17 11:12:17', 0, NULL, 0, NULL, 1),
(1773, 3360, 'Hewlett Packard enterprise', 'Sales support coordinator', '2020-08-17', 14000.00, '2020-11-04', 14000.00, 'Chennai', '1', '0 years 6 months', 'Contract', 1, '2021-02-17 11:14:07', 0, NULL, 0, NULL, 1),
(1774, 3361, 'infinity retail ltd', 'customer service specialist', '2017-02-28', 160000.00, '2018-05-02', 180000.00, 'chennai', '1', '1 years 2 months', ' Higher studies', 1, '2021-02-17 11:37:45', 0, NULL, 0, NULL, 1),
(1775, 3361, 'ICICI prudential Life insurance Ltd', 'associate financial service manager', '2020-10-02', 260000.00, '1970-01-01', 260000.00, 'chennai', '2', '0 years 4 months', 'Better job', 1, '2021-02-17 11:38:50', 0, NULL, 0, NULL, 1),
(1776, 3362, 'HDFC Bank private Ltd', 'Sales & MIS coordinator', '2011-09-01', 6500.00, '2015-10-31', 12000.00, 'Chennai', '1', '4 years 1 months', ' due to my mother health issue cannot able to continue my career', 1, '2021-02-17 11:40:01', 0, NULL, 0, NULL, 1),
(1777, 3362, 'IDFC MUTUAL FUND', 'Association (Mis and back end process)', '2017-11-20', 18486.00, '2020-03-31', 20375.00, 'Chennai', '1', '2 years 4 months', 'Due to covid19 I lost my job', 1, '2021-02-17 11:45:48', 0, NULL, 0, NULL, 1),
(1778, 3364, 'Asirvad Microfinance', 'Assistant Manager application support and MIS', '2016-11-01', 180000.00, '2020-09-01', 250000.00, 'chennai', '1', '3 years 10 months', ' Covid', 1, '2021-02-17 11:59:35', 1, '2021-02-17 12:01:35', 0, NULL, 1),
(1779, 3365, 'Zealous service', 'Customer support executive', '2018-05-14', 8500.00, '2019-01-11', 9200.00, 'Nungapakkam', '1', '0 years 7 months', ' Misunderstanding with  manager', 1, '2021-02-17 12:10:04', 0, NULL, 0, NULL, 1),
(1780, 3365, 'Orient green power limited', 'SCADA engineer', '2019-03-18', 12500.00, '1970-01-01', 13650.00, 'T. Nagar', '2', '1 years 10 months', 'Career growth level low ', 1, '2021-02-17 12:11:59', 0, NULL, 0, NULL, 1),
(1781, 3368, 'Tata consultancy services', 'FRAUD ANALYST', '2017-01-23', 18000.00, '2020-04-29', 23000.00, 'Chennai', '1', '3 years 3 months', ' I get an experience . So i have to move on some other company that time covid situation so no one hiring. ', 1, '2021-02-17 01:13:03', 0, NULL, 0, NULL, 1),
(1782, 3346, 'Sulekha. Com', 'Customer support executive', '2019-09-13', 15700.00, '2021-02-02', 12700.00, 'Kandanchavadi', '1', '1 years 4 months', ' Salary issue', 1, '2021-02-17 01:17:12', 0, NULL, 0, NULL, 1),
(1783, 3373, 'Adroit', 'Mis executive', '2019-02-19', 18000.00, '1970-01-01', 22000.00, 'Alwarpet', '2', '1 years 11 months', ' Carrier growth', 1, '2021-02-17 03:08:43', 0, NULL, 0, NULL, 1),
(1784, 3371, 'icici bank', 'deputy manager', '2019-06-03', 4.50, '2020-09-22', 4.50, 'tambaram', '1', '1 years 3 months', ' ', 1, '2021-02-17 03:16:21', 0, NULL, 0, NULL, 1),
(1785, 3377, 'nuratech consultancy pvt ltd', 'ui develeper/ project engineer', '2017-05-02', 5.00, '1970-01-01', 31400.00, 'salem', '2', '3 years 9 months', ' Due to office shifted chennai to salem and salary issues', 1, '2021-02-17 04:42:52', 0, NULL, 0, NULL, 1),
(1786, 3347, 'Orbmix Technologies', 'software engineer', '2019-01-02', 12000.00, '1970-01-01', 18000.00, 'chennai', '2', '2 years 1 months', ' career growth', 1, '2021-02-17 09:21:57', 1, '2021-02-17 09:22:30', 0, NULL, 1),
(1787, 3380, 'Miramed ajuba', 'Chennai', '2009-03-23', 13000.00, '1970-01-01', 15000.00, 'Chennai', '2', '11 years 10 months', ' Career growth', 1, '2021-02-17 09:54:23', 0, NULL, 0, NULL, 1),
(1788, 3380, 'Miramed ajuba', 'Chennai ', '2019-03-23', 13000.00, '2021-05-01', 13000.00, 'Chennai', '1', '2 years 1 months', 'Career growth', 1, '2021-02-17 09:59:19', 0, NULL, 0, NULL, 1),
(1789, 3385, 'baja life insurance ', 'rm', '2019-08-18', 30000.00, '2019-11-30', 30000.00, 'tambaram', '1', '0 years 3 months', ' my father health issues', 1, '2021-02-18 11:06:39', 0, NULL, 0, NULL, 1),
(1790, 3386, 'LikeMinds Software India Private limited', 'Business development representative', '2018-11-01', 22000.00, '2020-10-31', 32000.00, 'Chennai', '1', '2 years 3 months', ' Looking for a Better career opportunity', 1, '2021-02-18 11:24:07', 0, NULL, 0, NULL, 1),
(1791, 3389, 'Accenture solutions pvt ltd', 'Analyst', '2015-08-31', 26000.00, '2020-12-31', 26000.00, 'Chennai', '1', '5 years 4 months', ' Resigned ', 1, '2021-02-18 11:57:11', 0, NULL, 0, NULL, 1),
(1792, 3390, 'Computer age management service pvt ltd ', 'Data entry operator with reporting', '2018-12-10', 7.00, '2020-05-31', 11000.00, 'Chennai', '1', '1 years 5 months', ' Due to covid-19 issue he releaving me', 1, '2021-02-18 12:40:22', 0, NULL, 0, NULL, 1),
(1793, 3391, 'The Institute of Cost Accountants of India', 'Computer Trainer', '2017-08-17', 9000.00, '2020-07-31', 16000.00, 'Chennai', '1', '2 years 11 months', ' Due to work is on Deputation Basis', 1, '2021-02-18 01:44:27', 0, NULL, 0, NULL, 1),
(1794, 3393, 'Shivapriya', 'business development', '2021-07-12', 23000.00, '1970-01-01', 23000.00, 'vettuvankeni', '2', '0 years 5 months', 'Health issues', 1, '2021-02-18 05:05:09', 0, NULL, 0, NULL, 1),
(1795, 3265, 'Poorvika Mobiles', 'Sale Executive', '2019-08-14', 12000.00, '1970-01-01', 18000.00, 'Chennai', '2', '1 years 6 months', ' Work Timing ', 1, '2021-02-18 07:07:03', 0, NULL, 0, NULL, 1),
(1796, 3397, 'Vertex customer solutions', 'Associate trainee', '2014-05-15', 6500.00, '2014-12-16', 7000.00, 'Chennai', '1', '0 years 7 months', ' Health issues', 1, '2021-02-19 10:51:14', 0, NULL, 0, NULL, 1),
(1797, 3397, 'Computer age management services Pvt Ltd', 'Assistant processing officer', '2016-03-31', 7500.00, '2019-06-10', 9500.00, 'CHENNAI', '1', '3 years 2 months', 'Project completed', 1, '2021-02-19 10:53:59', 0, NULL, 0, NULL, 1),
(1798, 3397, 'Teleperformance', 'Sr.customer executive', '2019-09-11', 12800.00, '2020-08-07', 12800.00, 'Chennai', '1', '0 years 10 months', ' Project completed', 1, '2021-02-19 11:00:02', 0, NULL, 0, NULL, 1),
(1799, 3399, 'Just dial limited', 'Justdial ambassador', '2015-07-14', 24000.00, '2016-10-31', 24000.00, 'Chennai', '1', '1 years 3 months', ' Better career growth', 1, '2021-02-19 11:13:51', 0, NULL, 0, NULL, 1),
(1800, 3399, 'IndiaMART intermesh limited', 'Assistant manager -client servicing', '2016-11-01', 25000.00, '2019-11-01', 29000.00, 'Chennai', '1', '3 years 0 months', 'Better career growth', 1, '2021-02-19 11:16:51', 0, NULL, 0, NULL, 1),
(1801, 3399, 'Reliance smsl limited', 'Assistant manager- Enterprises sales ', '2019-11-14', 36000.00, '2020-07-07', 36000.00, 'Chennai', '1', '0 years 7 months', 'Due to some personal Problem  am left to Chennai,', 1, '2021-02-19 11:20:10', 0, NULL, 0, NULL, 1),
(1802, 3401, 'relaince jio', 'sales manager', '2016-08-25', 18000.00, '2020-12-09', 20000.00, 'chennai', '1', '4 years 3 months', ' salary', 1, '2021-02-19 11:22:36', 0, NULL, 0, NULL, 1),
(1803, 3400, 'Evaluationary Algorithm Pvt lt', 'Technical Sales Engineer', '2019-01-13', 10000.00, '2020-02-29', 360000.00, 'Chennai', '1', '1 years 1 months', 'Job location changed to Odisha.', 1, '2021-02-19 11:27:31', 0, NULL, 0, NULL, 1),
(1804, 3400, 'Global services', 'Sales and service engineer', '2017-01-02', 8000.00, '2019-01-10', 24000.00, 'Redhills', '1', '2 years 0 months', 'Got new job', 1, '2021-02-19 11:31:25', 0, NULL, 0, NULL, 1),
(1805, 3400, 'Spark Interiors', 'Dealer (Self Employed)', '2020-07-06', 5000.00, '1970-01-01', 10000.00, 'Chennai', '2', '0 years 7 months', 'Profit is low ', 1, '2021-02-19 11:34:32', 0, NULL, 0, NULL, 1),
(1806, 3402, 'Accenture solutions Pvt Ltd', 'Transaction Processing Associate', '2018-10-05', 14400.00, '2021-02-13', 14400.00, 'Shollinganallur', '1', '2 years 4 months', ' Career change ', 1, '2021-02-19 11:46:44', 0, NULL, 0, NULL, 1),
(1807, 3405, 'kyepot technologies pvt ltd', 'senior sales executive', '2019-06-10', 16700.00, '2021-02-15', 21700.00, 'indranagar', '1', '1 years 8 months', ' Process Got shut down', 1, '2021-02-19 12:30:13', 0, NULL, 0, NULL, 1),
(1808, 3410, 'hdfc bank', 'sales officer', '2017-07-01', 23000.00, '2019-07-17', 24500.00, 'chennai', '1', '2 years 0 months', ' moving to other job', 1, '2021-02-19 01:31:07', 0, NULL, 0, NULL, 1),
(1809, 3410, 'max life insurance company ltd', 'Financial sales manager ', '2019-07-17', 29300.00, '2020-07-07', 29300.00, 'chennai', '1', '0 years 11 months', 'covid 19 issue', 1, '2021-02-19 01:33:18', 0, NULL, 0, NULL, 1),
(1810, 3408, 'home innovation', 'mis', '2018-02-19', 13000.00, '2020-03-02', 14000.00, 'chetpet', '1', '2 years 0 months', ' covid', 1, '2021-02-19 01:37:59', 0, NULL, 0, NULL, 1),
(1811, 3412, 'lapiz global service', 'medical billing', '2013-03-04', 10000.00, '2016-04-30', 12000.00, 'chennai', '1', '3 years 1 months', ' Salary hike', 1, '2021-02-19 01:52:07', 0, NULL, 0, NULL, 1),
(1812, 3412, 'pride india', 'medical billing', '2016-06-11', 13000.00, '2017-09-27', 14000.00, 'perungudi', '1', '1 years 3 months', 'Carrer growth', 1, '2021-02-19 01:53:38', 0, NULL, 0, NULL, 1),
(1813, 3412, 'mmc info tech', 'mis', '2017-11-05', 14500.00, '2019-08-18', 15000.00, 'chennai', '1', '1 years 9 months', 'growth', 1, '2021-02-19 01:55:19', 0, NULL, 0, NULL, 1),
(1814, 3414, 'think big soft', 'programmer', '2020-10-01', 5000.00, '1970-01-01', 5000.00, 'chennai', '2', '0 years 4 months', ' Better Opportunity', 1, '2021-02-19 04:00:26', 0, NULL, 0, NULL, 1),
(1815, 3414, 'xperdes', 'front end developer - react js ', '2019-12-02', 5000.00, '2020-04-30', 5000.00, 'vellore', '1', '0 years 4 months', 'better opportunity', 1, '2021-02-19 04:02:16', 0, NULL, 0, NULL, 1),
(1816, 3415, 'innive business solutions', 'data visualization enthusiast', '2018-12-03', 180000.00, '1970-01-01', 400000.00, 'chennai', '2', '2 years 2 months', ' Career Growth and development', 1, '2021-02-19 06:25:18', 0, NULL, 0, NULL, 1),
(1817, 3416, 'Barclays Bank ', 'Process advisor', '2020-01-20', 11500.00, '2020-10-08', 11500.00, 'DLF', '1', '0 years 8 months', ' Contract job project closed, so i have left my job', 1, '2021-02-19 06:32:42', 0, NULL, 0, NULL, 1),
(1818, 3419, 'ICICI Bank', 'Sales executive', '2016-06-15', 15000.00, '1970-01-01', 22000.00, 'Chennai', '2', '4 years 8 months', ' Salary issue', 1, '2021-02-19 07:06:27', 0, NULL, 0, NULL, 1),
(1819, 3421, 'NEGITS SOLUTIONS', 'Software Engineer', '2019-03-21', 300000.00, '1970-01-01', 300000.00, 'Chennai', '2', '1 years 10 months', ' Low salary\nNo Hike', 1, '2021-02-20 07:41:10', 0, NULL, 0, NULL, 1),
(1820, 3421, 'Webego', 'Associate Software Engineer', '2018-07-05', 216000.00, '2019-02-28', 216000.00, 'Chennai', '1', '0 years 7 months', 'It\'s just an advertisement agency.\nNo career growth for developer', 1, '2021-02-20 07:45:20', 0, NULL, 0, NULL, 1),
(1821, 3421, 'OX SOFTWARES', 'Associate Software Engineer', '2017-07-05', 60000.00, '2018-07-05', 180000.00, 'Chennai', '1', '1 years 0 months', 'Startup\nCareer growth\nNo projects', 1, '2021-02-20 07:47:49', 0, NULL, 0, NULL, 1),
(1822, 3422, 'maxupa', 'sales manager', '2018-12-17', 21000.00, '1970-01-01', 21000.00, 'chennai', '2', '2 years 2 months', ' Salary', 1, '2021-02-20 09:21:35', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1823, 3424, 'skc', 'mis ', '2018-04-18', 22800.00, '2019-10-11', 22800.00, 'triplicane', '1', '1 years 5 months', 'company to kumbakonam', 1, '2021-02-20 11:06:16', 0, NULL, 0, NULL, 1),
(1824, 3427, 'Aspirant labs', 'Business development executive ', '2019-08-01', 15000.00, '2020-09-10', 15000.00, 'Arumbakaam', '1', '1 years 1 months', ' Due to corona issue company couldn\'t able to  work regularly  and couldn\'t able to provide regular pay ', 1, '2021-02-20 11:32:33', 0, NULL, 0, NULL, 1),
(1825, 3426, 'buzzworks bussiness private limited', 'sr operation executive', '2019-06-18', 18062019.00, '1970-01-01', 17000.00, 'mount road', '2', '1 years 8 months', ' ', 1, '2021-02-20 11:44:12', 0, NULL, 0, NULL, 1),
(1826, 3428, 'Sutherland', 'Consultant', '2015-08-01', 11000.00, '2017-11-02', 20500.00, 'Chennai velachery', '1', '2 years 3 months', ' ', 1, '2021-02-20 11:53:49', 0, NULL, 0, NULL, 1),
(1827, 3428, 'Hdb finance', 'Junior sales officer', '2018-09-02', 16000.00, '2020-09-02', 20500.00, 'Chennai nungambakam', '1', '2 years 0 months', 'Carrer growth', 1, '2021-02-20 11:57:15', 0, NULL, 0, NULL, 1),
(1828, 3431, 'cv designer', 'bd', '2018-10-01', 25000.00, '2019-02-28', 25000.00, 'chennai', '1', '0 years 4 months', 'for a better work', 1, '2021-02-20 12:12:00', 0, NULL, 0, NULL, 1),
(1829, 3429, 'Spr ', 'Pre sales', '2019-11-12', 12000.00, '2020-12-21', 20000.00, 'Perambur ', '1', '1 years 1 months', ' Career growth', 1, '2021-02-20 12:12:17', 0, NULL, 0, NULL, 1),
(1830, 3431, 'cavin kare', 'cre', '2019-02-14', 30000.00, '2020-05-31', 30000.00, 'chennai', '1', '1 years 3 months', 'covid', 1, '2021-02-20 12:13:28', 0, NULL, 0, NULL, 1),
(1831, 3431, 'cavin kare', 'cre', '2019-02-14', 30000.00, '2020-05-31', 30000.00, 'chennai', '1', '1 years 3 months', 'covid', 1, '2021-02-20 12:13:28', 0, NULL, 0, NULL, 1),
(1832, 3431, 'cavin kare', 'cre', '2019-02-14', 30000.00, '2020-05-31', 30000.00, 'chennai', '1', '1 years 3 months', 'covid', 1, '2021-02-20 12:13:29', 0, NULL, 0, NULL, 1),
(1833, 3369, 'SBI credit card', 'Sales Executive', '2021-08-12', 25000.00, '1970-01-01', 25000.00, 'Ekkatuthangal', '2', '0 years 5 months', ' Salary is not sufficient', 1, '2021-02-20 12:23:36', 0, NULL, 0, NULL, 1),
(1834, 3433, 'Fast track', 'Booking', '2019-07-06', 5000.00, '2019-11-04', 15000.00, 'Kodambakkam', '1', '0 years 3 months', 'Morning Part time shift Closed', 1, '2021-02-20 01:15:45', 0, NULL, 0, NULL, 1),
(1835, 3435, 'Paytm ', 'Team leader', '2018-01-18', 27000.00, '2020-10-09', 27000.00, 'Chennai', '1', '2 years 8 months', ' Salery problem', 1, '2021-02-20 04:36:49', 0, NULL, 0, NULL, 1),
(1836, 3436, 'Ryde consulting ', 'Software developer ', '2019-06-01', 12000.00, '2020-11-30', 14000.00, 'Chennai ', '1', '1 years 5 months', 'In pandamic suitation I will go my native place.... My salary plays a major role in my family. Without salary I worked for that company in its trust. But I couldn\'t support my family. So I\'m seeking  job in decent salary in  your concern.', 1, '2021-02-20 05:06:49', 0, NULL, 0, NULL, 1),
(1837, 3438, 'indusind bank ltd', 'sales manager', '2019-06-17', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '1 years 8 months', ' salary', 1, '2021-02-21 07:10:22', 0, NULL, 0, NULL, 1),
(1838, 3440, 'jana small finance', 'customer relation executive', '2019-09-09', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '1 years 5 months', ' salary', 1, '2021-02-21 02:49:07', 0, NULL, 0, NULL, 1),
(1839, 3439, 'TATA AIG GENERAL INSURANCE COMPANY', 'Backend', '2019-10-29', 13.00, '1970-01-01', 13.00, 'Egmore', '2', '1 years 3 months', ' Nil', 1, '2021-02-21 03:30:50', 0, NULL, 0, NULL, 1),
(1840, 3442, 'aravind lifestyle brand', 'retail sales manager', '2018-09-18', 25000.00, '1970-01-01', 25000.00, 'chennai', '2', '2 years 5 months', ' salary', 1, '2021-02-21 04:30:50', 0, NULL, 0, NULL, 1),
(1841, 3443, 'global techno solution pvt ltd', 'python developer', '2019-10-10', 15000.00, '1970-01-01', 25000.00, 'chennai', '2', '1 years 4 months', ' ', 1, '2021-02-21 07:51:49', 0, NULL, 0, NULL, 1),
(1842, 3444, 'YesOrYes Private Limited', 'front end developer', '2019-06-24', 10000.00, '2020-06-15', 10000.00, 'thoraipakkam', '1', '0 years 11 months', 'my family affected by covid, so unable to support properly. ', 1, '2021-02-21 10:23:23', 0, NULL, 0, NULL, 1),
(1843, 3447, 'AXIS bank 1year', 'Relationship officer', '2019-12-17', 13000.00, '2021-01-13', 13000.00, 'Koddambakkam', '1', '1 years 0 months', ' Because issues in Salary hiking', 1, '2021-02-22 11:05:55', 0, NULL, 0, NULL, 1),
(1844, 3432, 'Ecosmos', 'Ar caller', '2021-02-05', 13000.00, '2021-02-22', 13000.00, 'Chetpet', '1', '0 years 0 months', ' ', 1, '2021-02-22 11:18:58', 0, NULL, 0, NULL, 1),
(1845, 3449, 'Toppr.com', 'Academic counselor', '2016-03-09', 3.50, '2017-06-07', 3.50, 'Chennai, tnagar', '1', '1 years 2 months', ' ', 1, '2021-02-22 12:26:20', 1, '2021-02-22 12:30:32', 0, NULL, 1),
(1846, 3449, 'Vedantu.com', 'Business development executive', '2018-07-04', 4.50, '2019-08-10', 4.50, 'Chennai', '1', '1 years 1 months', 'Want to build my profile', 1, '2021-02-22 12:28:22', 0, NULL, 0, NULL, 1),
(1847, 3449, 'Extramarks.com', 'Senior business development executive', '2020-09-08', 5.50, '1970-01-01', 43000.00, 'Chennai', '2', '0 years 5 months', 'Currently working', 1, '2021-02-22 12:32:04', 0, NULL, 0, NULL, 1),
(1848, 3448, 'Felizinfotech', 'Telecaller', '2018-02-03', 15000.00, '2019-01-11', 15000.00, 'Chennai', '1', '0 years 11 months', ' ', 1, '2021-02-22 12:34:03', 0, NULL, 0, NULL, 1),
(1849, 3448, 'Start health insurance ', 'Telecaller', '2019-02-04', 25000.00, '2020-09-03', 25000.00, 'Chennai', '1', '1 years 6 months', 'Want to grow in my life', 1, '2021-02-22 12:35:48', 0, NULL, 0, NULL, 1),
(1850, 3448, 'Vedantu. Com', 'Business Development executive ', '2020-09-17', 30000.00, '2021-02-22', 30000.00, 'Chennai', '1', '0 years 5 months', 'Currently working ', 1, '2021-02-22 12:38:07', 0, NULL, 0, NULL, 1),
(1851, 3450, 'Cams', 'Processing officer', '2017-03-10', 12000.00, '2021-02-05', 16000.00, 'Chennai ', '1', '3 years 10 months', ' It\'s third party role.iam looking for on role job', 1, '2021-02-22 01:29:52', 0, NULL, 0, NULL, 1),
(1852, 3454, 'vimkes technologies', 'software developer', '2020-10-13', 14000.00, '1970-01-01', 21000.00, 'chromepet', '2', '0 years 4 months', 'i want a job with better career growth opportunities.', 1, '2021-02-22 01:54:45', 0, NULL, 0, NULL, 1),
(1853, 3458, 'southern enterprice', 'business development executive', '2020-03-18', 20000.00, '2020-08-30', 20000.00, 'chennai', '1', '0 years 5 months', ' covid-19 no  sales', 1, '2021-02-22 07:43:40', 0, NULL, 0, NULL, 1),
(1854, 3462, 'Aachi masala food pvt ltd', 'MIS executive', '2020-09-01', 21000.00, '1970-01-01', 21000.00, 'Anna nagar', '2', '0 years 5 months', ' Salary hike', 1, '2021-02-22 10:00:13', 0, NULL, 0, NULL, 1),
(1855, 3464, 'vertex', 'cse', '2018-02-04', 10000.00, '2019-06-07', 12000.00, 'mount road', '1', '1 years 4 months', ' Process ramp', 1, '2021-02-22 11:13:45', 0, NULL, 0, NULL, 1),
(1856, 3466, 'oppo', 'sales officer', '2019-02-05', 13000.00, '2020-11-18', 13000.00, 'chennai', '1', '1 years 9 months', ' salary', 1, '2021-02-22 11:55:11', 0, NULL, 0, NULL, 1),
(1857, 3467, 'mahendira finance', 'sales officer', '2017-12-13', 18000.00, '2021-02-09', 18000.00, 'chennai', '1', '3 years 1 months', ' salary', 1, '2021-02-23 12:01:02', 0, NULL, 0, NULL, 1),
(1858, 3468, 'ajuba', 'crm', '2016-09-17', 10000.00, '2020-03-07', 14000.00, 'chennai', '1', '3 years 5 months', ' Hike', 1, '2021-02-23 08:58:28', 0, NULL, 0, NULL, 1),
(1859, 3469, 'vertex', 'cse', '2016-08-16', 11000.00, '2017-10-06', 13000.00, 'mount road', '1', '1 years 1 months', ' hike', 1, '2021-02-23 09:03:52', 0, NULL, 0, NULL, 1),
(1860, 3470, 'r k enterprises', 'accounts assitant', '2016-07-18', 10000.00, '2017-03-02', 11000.00, 'chennai', '1', '0 years 7 months', ' process ramp', 1, '2021-02-23 09:08:15', 0, NULL, 0, NULL, 1),
(1861, 3470, 'bharat matrimony', 'relationship executive', '2017-04-04', 12000.00, '2018-05-25', 14000.00, 'chennai', '1', '1 years 1 months', 'yes', 1, '2021-02-23 09:09:17', 0, NULL, 0, NULL, 1),
(1862, 3472, 'Greaves Cotton Limited', 'MIS & Sales Coordinator', '2019-04-19', 23000.00, '1970-01-01', 23000.00, 'Chennai', '2', '1 years 10 months', ' Not ready to move Bangalore', 1, '2021-02-23 11:10:04', 0, NULL, 0, NULL, 1),
(1863, 3472, 'TVS automobile Solutions p ltd', 'Franchisee Officer', '2016-07-15', 10000.00, '2019-04-18', 18000.00, 'Chennai', '1', '2 years 9 months', 'Moving for Backend work', 1, '2021-02-23 11:11:31', 0, NULL, 0, NULL, 1),
(1864, 3472, 'SACS Power Pvt ltd', 'Factory Engineer', '2014-01-02', 6000.00, '2016-07-14', 9000.00, 'Madurai', '1', '2 years 6 months', 'Moving to chennai', 1, '2021-02-23 11:12:27', 0, NULL, 0, NULL, 1),
(1865, 3473, 'Adams Technology Pvt Ltd', 'Front office cum Admin', '2011-03-09', 7000.00, '2020-02-23', 27000.00, 'Nungambakkam', '1', '8 years 11 months', ' Due to covid office shift to Bangalore', 1, '2021-02-23 11:33:34', 0, NULL, 0, NULL, 1),
(1866, 3475, 'CTSI Global ', 'MIS Executive', '2018-12-03', 45000.00, '2019-12-31', 50000.00, 'Chennai', '1', '1 years 0 months', ' Less Productivity', 1, '2021-02-23 12:12:50', 0, NULL, 0, NULL, 1),
(1867, 3463, 'Alp consulting', 'Hr mis', '2019-07-16', 360000.00, '2020-04-15', 360000.00, 'Chennai', '1', '1 years 7 months', ' Covid', 1, '2021-02-23 12:32:59', 0, NULL, 0, NULL, 1),
(1868, 3478, 'AMS Construction', 'Supervisor', '2018-06-01', 15000.00, '2019-05-31', 20000.00, 'Chennai', '1', '2 years 8 months', ' Got a better opportunity in Middle East.', 1, '2021-02-23 01:54:31', 0, NULL, 0, NULL, 1),
(1869, 3478, 'Abdel Hadi Abdullah Al Qahtani', 'Projects Coordinator', '2019-06-09', 55000.00, '2020-09-24', 60000.00, 'Dammam, Saudi Arabia', '1', '1 years 3 months', 'Pandemic', 1, '2021-02-23 01:55:58', 0, NULL, 0, NULL, 1),
(1870, 3482, 'Pulse telesystems Pvt ltd', 'Monitoring l2', '2016-07-18', 10000.00, '2021-01-30', 21300.00, 'Nungambakkam', '1', '4 years 6 months', ' Better opportunities', 1, '2021-02-23 04:35:58', 0, NULL, 0, NULL, 1),
(1871, 3484, 'Excel Prodigy', 'Executive Training Coordinator', '2019-02-15', 18000.00, '2020-11-30', 20000.00, 'Valasaravakkam', '1', '2 years 0 months', ' Due to covid impact in company.', 1, '2021-02-23 05:12:45', 0, NULL, 0, NULL, 1),
(1872, 3484, 'College', 'Assistant professor', '2010-10-01', 12000.00, '2012-07-31', 14000.00, 'Chennai', '1', '1 years 10 months', 'Family reasons', 1, '2021-02-23 05:15:19', 0, NULL, 0, NULL, 1),
(1873, 3487, 'HDB financial services Pvt ltd', 'Relationship manager', '2016-06-14', 15000.00, '2020-12-23', 30000.00, 'Nelson manickam road', '1', '4 years 6 months', 'Carrier growth', 1, '2021-02-23 06:00:41', 0, NULL, 0, NULL, 1),
(1874, 3489, 'Bray controls India private limited', 'Executive accounts /Costing', '2012-12-17', 22000.00, '2017-08-30', 22000.00, 'Chennai', '1', '4 years 8 months', ' Personal Reason', 1, '2021-02-23 08:33:44', 0, NULL, 0, NULL, 1),
(1875, 3490, 'Opteamize Cloud Solutions', 'Content Writer', '2016-05-16', 15000.00, '2017-08-12', 20000.00, 'Chennai', '1', '1 years 2 months', ' Persuing Post graduation.', 1, '2021-02-23 09:06:16', 0, NULL, 0, NULL, 1),
(1876, 3490, 'St Mark\'s Matric Higher Secondary School', 'English Teacher', '2019-05-11', 20000.00, '2020-04-11', 20000.00, 'Chennai', '1', '0 years 11 months', ' Pandameic', 1, '2021-02-23 09:14:20', 0, NULL, 0, NULL, 1),
(1877, 3477, 'St. Marks Matriculation Higher Secondary School ', 'English Teacher ', '2019-05-27', 18000.00, '2020-03-15', 18000.00, 'Chromepet ', '1', '0 years 9 months', ' Covid pandemic ', 1, '2021-02-23 09:27:23', 0, NULL, 0, NULL, 1),
(1878, 3486, 'CMA CGM SSC', 'Executive', '2017-03-10', 12000.00, '2019-05-27', 15000.00, 'Chennai', '1', '2 years 2 months', 'To develop my career', 1, '2021-02-23 10:43:58', 0, NULL, 0, NULL, 1),
(1879, 3491, 'pvr pvt ltd', 'sales officer', '2018-03-06', 18000.00, '2020-12-17', 18000.00, 'chennai', '1', '2 years 9 months', ' salary', 1, '2021-02-24 01:02:43', 0, NULL, 0, NULL, 1),
(1880, 3492, 'hdfc', 'sales officer', '2020-03-20', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '0 years 11 months', ' salary', 1, '2021-02-24 01:07:45', 0, NULL, 0, NULL, 1),
(1881, 3287, 'Inno Automation pvt ltd', 'Php developer', '2018-12-03', 12000.00, '1970-01-01', 16500.00, 'Chennai', '2', '2 years 2 months', ' Career growth ', 1, '2021-02-24 10:12:46', 0, NULL, 0, NULL, 1),
(1882, 3496, 'Melon Ventures Pvt Ltd', 'Content Writer', '2018-06-25', 15000.00, '1970-01-01', 23000.00, 'Valluvar Kottam, Chennai', '2', '2 years 7 months', ' Carrer Growth, Explore more in content writing', 1, '2021-02-24 10:33:55', 0, NULL, 0, NULL, 1),
(1883, 3497, 'inno automation  pvt ltd', 'php devedloper', '2018-12-03', 12000.00, '1970-01-01', 16500.00, 'chennai', '2', '2 years 2 months', ' ', 1, '2021-02-24 11:01:48', 0, NULL, 0, NULL, 1),
(1884, 3342, 'Amazon', 'Sales executive', '2020-03-25', 17000.00, '2020-12-10', 17000.00, 'Tambaram', '1', '0 years 8 months', ' Personal issues', 1, '2021-02-24 11:04:00', 0, NULL, 0, NULL, 1),
(1885, 3499, 'Oyo hotels and rooms', 'Guest relation executive', '2019-07-16', 11000.00, '2020-08-31', 14000.00, 'Shenoy Nagar', '1', '1 years 1 months', ' Due to covid19', 1, '2021-02-24 11:52:04', 0, NULL, 0, NULL, 1),
(1886, 3499, 'Gamma process hub', 'Customer support executive', '2018-07-02', 9700.00, '2019-05-23', 10500.00, 'Ambattur', '1', '0 years 10 months', 'Due to injury in leg', 1, '2021-02-24 11:54:17', 0, NULL, 0, NULL, 1),
(1887, 3501, 'vertex', 'cse', '2018-04-18', 10000.00, '2019-08-14', 12000.00, 'chennai', '1', '1 years 3 months', 'Growth', 1, '2021-02-24 12:52:57', 0, NULL, 0, NULL, 1),
(1888, 3501, 'conneqt business solutions', 'senior cse', '2019-09-09', 13500.00, '2020-10-04', 14500.00, 'guindy', '1', '1 years 0 months', 'Process Ramp down', 1, '2021-02-24 12:55:01', 0, NULL, 0, NULL, 1),
(1889, 3503, 'Teleperformance ', 'Customer support ', '2020-01-04', 12000.00, '2020-12-05', 12000.00, 'ICICI regional towers ', '1', '0 years 11 months', 'Personal  health issues ', 1, '2021-02-24 01:25:11', 0, NULL, 0, NULL, 1),
(1890, 3502, 'edelweiss tokio life', 'drm', '2018-07-05', 35000.00, '2021-02-22', 37000.00, 'bangalore', '1', '2 years 7 months', ' health ', 1, '2021-02-24 01:27:30', 0, NULL, 0, NULL, 1),
(1891, 3500, 'zealous', 'csr', '2019-03-20', 12500.00, '2020-10-16', 12500.00, 'nungambakkam', '1', '1 years 6 months', 'night shift', 1, '2021-02-24 03:07:45', 0, NULL, 0, NULL, 1),
(1892, 3515, 'Star health insurance', 'Mis executive', '2016-09-09', 12000.00, '2020-06-20', 19800.00, 'Mount road', '1', '3 years 9 months', ' Covid 19', 1, '2021-02-25 12:23:59', 0, NULL, 0, NULL, 1),
(1893, 3519, 'BAJAJ FINANCIAL SERVICES', 'SALES EXECUTIVE', '2019-02-11', 16500.00, '1970-01-01', 17000.00, 'MOGAPPAIR', '2', '2 years 0 months', ' ', 1, '2021-02-25 03:04:20', 0, NULL, 0, NULL, 1),
(1894, 3528, 'Lifecell international Pvt ltd', 'Sr. Executive', '2017-04-03', 22000.00, '2020-03-31', 25000.00, 'Tnagar', '1', '3 years 10 months', ' Corona shutdown', 1, '2021-02-25 07:32:39', 0, NULL, 0, NULL, 1),
(1895, 3528, 'Airtel', 'CRO', '2013-08-20', 15000.00, '2016-09-30', 18000.00, 'Samthome', '1', '3 years 1 months', 'Carrer growth', 1, '2021-02-25 07:34:53', 0, NULL, 0, NULL, 1),
(1896, 3529, 'Balaji Auto Enterprises', '3km', '2019-10-02', 10000.00, '2021-02-19', 12000.00, 'Chennai ', '1', '1 years 4 months', ' No hike', 1, '2021-02-25 07:51:41', 0, NULL, 0, NULL, 1),
(1897, 3530, 'Vakilsearch', 'Senior software engineer', '2020-03-18', 5.50, '1970-01-01', 5.50, 'Chennai', '2', '0 years 11 months', ' ', 1, '2021-02-26 08:29:08', 0, NULL, 0, NULL, 1),
(1898, 3531, 'hungary car pvt ltd', 'branch manager', '2018-03-06', 13000.00, '2021-02-10', 15000.00, 'chennai', '1', '2 years 11 months', ' Salary', 1, '2021-02-26 08:51:15', 0, NULL, 0, NULL, 1),
(1899, 3532, 'paytm', 'sales executive', '2020-09-14', 15000.00, '2021-02-21', 15000.00, 'chennai', '1', '0 years 5 months', ' salary', 1, '2021-02-26 09:11:09', 0, NULL, 0, NULL, 1),
(1900, 3538, 'hdb financial service', 'sales manager', '2018-07-17', 18000.00, '2019-11-30', 18000.00, 'chennai', '1', '1 years 4 months', ' Salary', 1, '2021-02-26 10:53:49', 0, NULL, 0, NULL, 1),
(1901, 3536, 'Radiant cash management services Pvt limited', 'Cash hanndling ,cash executive', '2018-06-25', 15000.00, '2020-03-01', 15500.00, 'Gunidy chennai', '1', '1 years 8 months', ' Will got a better job and salary', 1, '2021-02-26 10:58:45', 0, NULL, 0, NULL, 1),
(1902, 2469, 'Reliance retail ', 'Department manager', '2019-08-11', 150000.00, '2020-05-30', 150000.00, 'Trichy ', '1', '0 years 9 months', ' I am shift to Chennai so relieved the job ', 1, '2021-02-26 10:59:19', 0, NULL, 0, NULL, 1),
(1903, 3534, 'Marketing and sales', 'Branch Manager', '2020-08-28', 18000.00, '1970-01-01', 20000.00, 'Singapore ,& India ', '2', '0 years 5 months', ' I', 1, '2021-02-26 11:03:10', 0, NULL, 0, NULL, 1),
(1904, 3539, 'Hdb financial services Ltd', 'RM', '2018-08-10', 285000.00, '2020-11-13', 318000.00, 'CHENNAI', '1', '2 years 3 months', ' ', 1, '2021-02-26 11:19:40', 0, NULL, 0, NULL, 1),
(1905, 3537, 'litz tech india private limited', 'admin', '2019-03-03', 16000.00, '2020-05-01', 16000.00, 'coimbatore', '1', '1 years 1 months', ' my mother\'s health issue', 1, '2021-02-26 11:47:29', 0, NULL, 0, NULL, 1),
(1906, 3543, 'vr group company', 'assistant sales manager', '2017-11-27', 27000.00, '2020-03-31', 33000.00, 'semmancheri', '1', '2 years 4 months', ' need to quit the job due to father illness (kidney cancer)', 1, '2021-02-26 12:04:45', 0, NULL, 0, NULL, 1),
(1907, 3543, 'compvue india private ltd', 'bde', '2017-06-05', 27000.00, '2017-10-02', 27000.00, 'thoraipakkam', '1', '3 years 8 months', 'Persistent work in night shift leads to illness', 1, '2021-02-26 12:08:15', 0, NULL, 0, NULL, 1),
(1908, 3543, 'e merge tech global services', 'sr bde', '2016-05-02', 26000.00, '2017-02-03', 26000.00, 'st thomas mount', '1', '0 years 9 months', 'due to work timings (12 hrs)', 1, '2021-02-26 12:11:44', 0, NULL, 0, NULL, 1),
(1909, 3543, 'gembrill technologies', 'bde', '2013-02-04', 18000.00, '2016-04-29', 21000.00, 't nagar', '1', '8 years 0 months', 'need a change in profile. looking for new oppoetunity', 1, '2021-02-26 12:13:56', 0, NULL, 0, NULL, 1),
(1910, 2742, 'yaantra pvt ltd', 'field officer sales', '2018-04-18', 18000.00, '2021-01-13', 23000.00, 'sajjanrao circle ', '1', '2 years 8 months', ' Due to branch office change', 1, '2021-02-26 02:57:52', 0, NULL, 0, NULL, 1),
(1911, 3545, 'Sterling holidays', 'Executive sales', '2019-05-01', 3.50, '2019-10-31', 3.50, 'Chennai', '1', '0 years 6 months', ' Wanted to switch to another industry', 1, '2021-02-26 03:03:22', 0, NULL, 0, NULL, 1),
(1912, 3545, 'Funfinity learning solutions Pvt Ltd', 'Bussiness development executive', '2019-12-02', 405000.00, '2020-09-30', 405000.00, 'Chennai', '1', '1 years 2 months', 'Laid off', 1, '2021-02-26 03:05:27', 0, NULL, 0, NULL, 1),
(1913, 3546, 'ashokleyland private limited', 'system processing and networrking', '2015-08-10', 14000.00, '2018-08-03', 20000.00, 'CHENNAI', '1', '2 years 11 months', 'our team fully shifted to head Quarters ,so daily travelling  almost 2.5hr', 1, '2021-02-26 03:15:24', 0, NULL, 0, NULL, 1),
(1914, 3546, 'Kaleesuwari Refinery Private Limited', 'mis Executive ', '2018-08-10', 21000.00, '2019-04-27', 23000.00, 'chennai', '1', '2 years 6 months', 'Because our father went out of state for medical treatment', 1, '2021-02-26 03:20:01', 0, NULL, 0, NULL, 1),
(1915, 3546, 'Dream warriors pictures', 'assist manager of Theater support', '2019-05-10', 25000.00, '2021-02-28', 28000.00, 'CHENNAI', '1', '1 years 9 months', 'some Relevant profile finding and financial growth', 1, '2021-02-26 03:24:36', 0, NULL, 0, NULL, 1),
(1916, 3548, 'Modern business solutions', 'Sr MIS executive', '2016-12-05', 20000.00, '1970-01-01', 27120.00, 'Ambattur', '2', '4 years 2 months', ' ', 1, '2021-02-26 04:46:43', 0, NULL, 0, NULL, 1),
(1917, 3549, 'pinelabs private limited', 'senior lead mis executive', '2012-10-01', 8000.00, '2020-12-03', 31000.00, 'chennai', '1', '8 years 2 months', ' company had decided to remove all mis staffs and assign the same role to the assistant managers due to corona', 1, '2021-02-26 05:01:59', 0, NULL, 0, NULL, 1),
(1918, 3551, 'dhl global forwarding', 'senior process associate', '2019-08-08', 18700.00, '2020-11-23', 19300.00, 'chennai', '1', '1 years 3 months', ' night shift', 1, '2021-02-26 05:27:28', 0, NULL, 0, NULL, 1),
(1919, 3551, 'newage software & solutions', 'junior executive', '2016-11-17', 13700.00, '2017-11-27', 13700.00, 'chennai', '1', '1 years 0 months', 'Competitive Exam Preparation', 1, '2021-02-26 05:30:44', 0, NULL, 0, NULL, 1),
(1920, 3554, 'Quscient Technolgies', 'Voice process ', '2020-07-13', 15000.00, '1970-01-01', 16000.00, 'Perungudi', '2', '0 years 7 months', ' Nit shifts ', 1, '2021-02-26 06:59:58', 0, NULL, 0, NULL, 1),
(1921, 3555, 'AdPay', 'Product Analyst', '2017-12-20', 180000.00, '2019-01-10', 180000.00, 'Chennai', '1', '1 years 0 months', ' -', 1, '2021-02-26 07:33:18', 0, NULL, 0, NULL, 1),
(1922, 3555, 'HTC Global Services', 'MIS Executive', '2019-06-13', 300000.00, '2020-10-31', 300000.00, 'Chennai', '1', '1 years 4 months', '-', 1, '2021-02-26 07:35:43', 0, NULL, 0, NULL, 1),
(1923, 3555, 'Prozus', 'Data Analyst/Software Engineer', '2020-11-01', 336000.00, '1970-01-01', 336000.00, 'Chennai/Remote', '2', '0 years 3 months', 'Out of Project', 1, '2021-02-26 07:37:00', 0, NULL, 0, NULL, 1),
(1924, 3516, 'crayon digital', 'front end engineer', '2019-11-11', 200000.00, '2020-09-07', 200000.00, 't nagar', '1', '0 years 9 months', ' Career growth', 1, '2021-02-26 10:37:11', 1, '2021-02-26 10:41:35', 0, NULL, 1),
(1925, 3516, 'kaay labs', 'Software Engineer', '2020-09-10', 340000.00, '1970-01-01', 340000.00, 't nagar', '2', '0 years 5 months', 'Need more challenging job to learn new stuff', 1, '2021-02-26 10:43:40', 0, NULL, 0, NULL, 1),
(1926, 3557, 'hdfc pvt ltd', 'sales officer', '2019-09-04', 18000.00, '1970-01-01', 18000.00, 'chennai', '2', '1 years 5 months', ' salary', 1, '2021-02-27 11:20:10', 0, NULL, 0, NULL, 1),
(1927, 3558, 'Kishore marketings', 'Sales man', '2018-10-05', 20000.00, '2020-11-10', 17250.00, 'Villivakkam', '1', '2 years 1 months', ' My salary is very low but i will hard work not imprumont my salary ', 1, '2021-02-27 11:40:30', 0, NULL, 0, NULL, 1),
(1928, 3559, 'Royal Enfield', 'Tellecaller', '2018-04-01', 15000.00, '2020-03-20', 18000.00, 'T. Nagar', '1', '1 years 11 months', 'I want any Another job try it this job for I will impraced', 1, '2021-02-27 11:42:32', 0, NULL, 0, NULL, 1),
(1929, 3561, 'RR Donnelley Global Outsourcing pvt ltd', 'html developer - marketing research analyst', '2019-05-02', 20500.00, '2020-06-18', 20500.00, 'Chennai', '1', '1 years 1 months', ' clients projects closed, due to covid situation', 1, '2021-02-27 01:54:09', 0, NULL, 0, NULL, 1),
(1930, 3561, 't n q technologies', 'data conversion process - m i s', '2014-01-08', 7500.00, '2019-01-09', 13000.00, 'chennai', '1', '5 years 0 months', 'Carrier growth', 1, '2021-02-27 01:58:00', 0, NULL, 0, NULL, 1),
(1931, 3564, 'All set business solutions', 'Team leader', '2018-03-01', 13000.00, '2021-02-27', 16000.00, 'Mount road', '1', '2 years 11 months', ' My personal reason ', 1, '2021-02-27 02:48:13', 0, NULL, 0, NULL, 1),
(1932, 3565, 'Akshaya India Tours & Travels', 'Domestic Operation Executive', '2018-02-01', 10000.00, '2018-10-05', 12500.00, 'Chennai', '1', '0 years 8 months', ' Want a job change to upgrade a new career.', 1, '2021-02-27 03:45:51', 0, NULL, 0, NULL, 1),
(1933, 3574, 'Sical logistics limited ', 'Assistant manager- operation analyst ', '2019-08-16', 500000.00, '1970-01-01', 500000.00, 'Asansol ', '2', '1 years 6 months', ' Personal family issues and also company issues.', 1, '2021-02-27 11:29:19', 0, NULL, 0, NULL, 1),
(1934, 3575, 'hdb financial service', 'tele sales', '2019-03-07', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '1 years 11 months', ' salary', 1, '2021-02-28 10:37:18', 0, NULL, 0, NULL, 1),
(1935, 3576, 'just dail', 'bdm', '2018-02-13', 17000.00, '1970-01-01', 17000.00, 'chennai', '2', '3 years 0 months', ' salary', 1, '2021-02-28 10:48:06', 0, NULL, 0, NULL, 1),
(1936, 3577, 'shree krishna agency', 'bdm', '2020-06-01', 17000.00, '1970-01-01', 17000.00, 'chennai', '2', '0 years 8 months', ' salary', 1, '2021-02-28 11:01:36', 0, NULL, 0, NULL, 1),
(1937, 3578, 'sbi cards', 'sales executive', '2020-01-28', 18000.00, '1970-01-01', 18000.00, 'chennai', '2', '1 years 1 months', ' Salary', 1, '2021-02-28 11:14:35', 0, NULL, 0, NULL, 1),
(1938, 3579, 'hdb financial services', 'sales officer', '2019-07-10', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '1 years 7 months', ' ', 1, '2021-02-28 11:29:09', 0, NULL, 0, NULL, 1),
(1939, 3560, 'save the children (ngo)', 'mis', '2014-06-01', 15000.00, '2020-03-01', 25000.00, 'chennai', '1', '5 years 8 months', 'Due to covid ', 1, '2021-03-01 10:54:11', 0, NULL, 0, NULL, 1),
(1940, 3585, 'Garuda polyflex foods Pvt ltd', 'Sales representative', '2020-09-05', 15500.00, '2021-03-01', 15350.00, 'Chennai', '1', '0 years 5 months', 'Personal issue', 1, '2021-03-01 11:33:45', 0, NULL, 0, NULL, 1),
(1941, 3587, 'Think and learn private limited', 'Business development Trainee', '2021-01-19', 300000.00, '1970-01-01', 300000.00, 'Chennai', '2', '0 years 1 months', ' Tenture finished to achieve target', 1, '2021-03-01 11:50:48', 0, NULL, 0, NULL, 1),
(1942, 3590, 'ford motors pvt ltd', 'ford credit', '2020-04-15', 26000.00, '2020-09-28', 26000.00, 'chennai', '1', '0 years 5 months', ' ', 1, '2021-03-01 01:44:13', 0, NULL, 0, NULL, 1),
(1943, 3590, 'verifacts services pvt ltd', 'client coordinator', '2019-05-02', 15000.00, '2020-02-20', 15000.00, 'chennai', '1', '1 years 9 months', 'better oppurtunity', 1, '2021-03-01 01:46:07', 0, NULL, 0, NULL, 1),
(1944, 3590, 'verifacts services pvt ltd', 'client coordinator', '2016-08-02', 11450.00, '2018-08-07', 11450.00, 'chennai', '1', '4 years 6 months', 'better oppurtunity', 1, '2021-03-01 01:47:45', 0, NULL, 0, NULL, 1),
(1945, 3592, 'Red Bull', 'Student brand manager', '2016-06-01', 10000.00, '2017-07-30', 10000.00, 'Chennai', '1', '1 years 1 months', ' Graduated from college', 1, '2021-03-01 03:35:39', 0, NULL, 0, NULL, 1),
(1946, 3592, 'Twenty first century media ', 'Events and Marketing manager', '2017-07-01', 15000.00, '2018-07-31', 20000.00, 'Bangalore', '1', '1 years 1 months', 'Health issues ', 1, '2021-03-01 03:36:54', 0, NULL, 0, NULL, 1),
(1947, 3592, 'The Hindu', 'Social media Intern', '2018-10-01', 5000.00, '2019-02-27', 5000.00, 'Chennai', '1', '0 years 4 months', 'Got a full time job', 1, '2021-03-01 03:38:14', 1, '2021-03-01 03:41:27', 0, NULL, 1),
(1948, 3592, 'The Blend Express', 'Business development manager', '2019-03-01', 25000.00, '2020-02-29', 25000.00, 'Bangalore', '1', '1 years 0 months', 'Pandemic', 1, '2021-03-01 03:40:49', 0, NULL, 0, NULL, 1),
(1949, 3594, 'Exela Technologies', 'Coordinator ', '2010-01-28', 7500.00, '2019-12-04', 20000.00, 'Chennai ', '1', '9 years 10 months', ' No Career Growth And Also No Increment In salary', 1, '2021-03-01 04:32:14', 0, NULL, 0, NULL, 1),
(1950, 3596, 'Infosearch BPO', 'CSE', '2018-05-01', 11000.00, '2018-12-31', 17000.00, 'chennai', '1', '0 years 8 months', ' ', 1, '2021-03-01 06:06:24', 0, NULL, 0, NULL, 1),
(1951, 3596, 'Poorvika Mobile', 'Finance cum Admin', '2020-10-01', 17000.00, '2021-02-25', 17000.00, 'Chennai', '1', '0 years 4 months', 'Some family issues', 1, '2021-03-01 06:07:56', 0, NULL, 0, NULL, 1),
(1952, 3596, 'Aditya Birla money ltd', 'Back office executive', '2019-01-01', 13000.00, '2020-03-31', 17000.00, 'Chennai', '1', '1 years 2 months', 'To increase my knowledge in other fields', 1, '2021-03-01 06:09:24', 0, NULL, 0, NULL, 1),
(1953, 3595, 'Day Night Cabs & Travels', 'Mis executive', '2015-11-09', 15000.00, '1970-01-01', 18000.00, 'Chennau', '2', '5 years 3 months', ' Due to covid company was closed', 1, '2021-03-01 09:02:50', 0, NULL, 0, NULL, 1),
(1954, 3595, 'Daynight cabs and travels', 'Mis executive', '2015-11-09', 15000.00, '1970-01-01', 18000.00, 'Chennai ', '2', '5 years 3 months', 'Due to covid situation company was closed', 1, '2021-03-01 09:04:25', 0, NULL, 0, NULL, 1),
(1955, 3595, 'daynight cabs &traveks', 'mis exec ', '2015-11-09', 14000.00, '2020-07-31', 18000.00, 'chennaj', '1', '4 years 8 months', ' Closed due to covid', 1, '2021-03-01 09:17:21', 0, NULL, 0, NULL, 1),
(1956, 3595, 'daynight cabs & travels', 'mis executive', '2015-11-09', 14000.00, '2020-11-26', 18000.00, 'chennai', '1', '5 years 0 months', 'Closed due to covid', 1, '2021-03-01 09:19:47', 0, NULL, 0, NULL, 1),
(1957, 3598, 'day night cabs & travela', 'mis executive', '2015-11-09', 13500.00, '2020-11-25', 18000.00, 'chennai', '1', '5 years 0 months', 'Closed due to  COVID ', 1, '2021-03-01 09:28:04', 0, NULL, 0, NULL, 1),
(1958, 3600, 'Dodla Dairy PVt ld', 'Sales executive', '2019-10-01', 19000.00, '2020-06-01', 19000.00, 'Gandhi road', '1', '0 years 8 months', ' Corona', 1, '2021-03-02 10:14:00', 0, NULL, 0, NULL, 1),
(1959, 3602, 'admin', 'admin', '2015-07-03', 12000.00, '2017-12-16', 15000.00, 'chennai', '1', '2 years 5 months', ' Carrier Growth', 1, '2021-03-02 10:39:37', 0, NULL, 0, NULL, 1),
(1960, 3603, 'Urjanet Energy Solutions', 'Data Analyst', '2018-09-10', 2.00, '2020-12-31', 2.50, 'Chennai', '1', '2 years 3 months', ' Want to explore new technologies', 1, '2021-03-02 10:56:08', 0, NULL, 0, NULL, 1),
(1961, 3603, 'Tata Consultancy Services', 'MIS EXECUTIVE', '2017-08-01', 1.80, '2018-08-14', 1.80, 'Chennai', '1', '1 years 0 months', 'Contract', 1, '2021-03-02 10:57:54', 0, NULL, 0, NULL, 1),
(1962, 3605, 'smr automotive', 'planning exe', '2016-10-06', 16000.00, '2019-01-10', 19000.00, 'poonamalle', '1', '2 years 3 months', ' ', 1, '2021-03-02 12:00:35', 0, NULL, 0, NULL, 1),
(1963, 3605, 'crompton ', 'mis ', '2019-01-21', 20000.00, '2021-01-09', 22000.00, 'nungampakkam', '1', '1 years 11 months', 'off role', 1, '2021-03-02 12:03:12', 0, NULL, 0, NULL, 1),
(1964, 3607, 'Medall', 'Marketing Executive', '2015-09-21', 18000.00, '2020-12-10', 33000.00, 'Chennai', '1', '5 years 2 months', ' Personal', 1, '2021-03-02 12:03:58', 0, NULL, 0, NULL, 1),
(1965, 3608, 'Accenture Solutions Pvt Ltd', 'Transaction processing associate ', '2019-04-29', 300000.00, '2019-11-18', 300000.00, 'Chennai', '1', '0 years 6 months', ' Personal reasons ', 1, '2021-03-02 12:20:40', 1, '2021-03-02 12:25:14', 0, NULL, 1),
(1966, 3608, 'Aakash educational services limited', 'Counselor ', '2017-06-08', 216000.00, '2018-05-31', 228000.00, 'Madurai ', '1', '0 years 11 months', 'Personal reasons ', 1, '2021-03-02 12:22:27', 0, NULL, 0, NULL, 1),
(1967, 3608, 'Aptech aviation and hospitality academy ', 'Counselor and admin', '2015-12-18', 144000.00, '2017-02-15', 180000.00, 'Madurai ', '1', '1 years 1 months', 'Franchise closed', 1, '2021-03-02 12:24:02', 0, NULL, 0, NULL, 1),
(1968, 3609, 'TVS credit service limited ', 'Executive ', '2016-03-23', 10000.00, '2019-04-04', 22000.00, 'Chennai', '1', '3 years 0 months', ' Profile update ', 1, '2021-03-02 12:56:40', 0, NULL, 0, NULL, 1),
(1969, 3609, 'SPI technologies ', 'MIS executive ', '2019-09-09', 22392.00, '2020-02-25', 22392.00, 'Chennai adyar', '1', '0 years 5 months', 'Short service ', 1, '2021-03-02 01:00:54', 0, NULL, 0, NULL, 1),
(1970, 3611, 'Infiniti software solutions', 'software Engineer', '2018-07-16', 14000.00, '1970-01-01', 24000.00, 'chennai', '2', '2 years 7 months', ' Business Domain change', 1, '2021-03-02 02:47:30', 0, NULL, 0, NULL, 1),
(1971, 3612, 'Matrimony.com limited', 'Sales officer', '2019-08-05', 12000.00, '2020-10-28', 14000.00, 'Chennai ', '1', '1 years 2 months', ' ', 1, '2021-03-02 02:55:05', 1, '2021-03-02 02:55:37', 0, NULL, 1),
(1972, 3613, 'Sri.R.K.Enterprises', 'Store In Charge', '2016-11-02', 10000.00, '2017-11-10', 100000.00, 'Chennai', '1', '1 years 0 months', ' To study', 1, '2021-03-02 02:57:01', 0, NULL, 0, NULL, 1),
(1973, 3613, 'Fantain sports', 'Operation executive', '2018-12-10', 23000.00, '1970-01-01', 25000.00, 'Chennai', '2', '2 years 2 months', 'Company closed', 1, '2021-03-02 02:58:17', 0, NULL, 0, NULL, 1),
(1974, 3617, 'Hdb financial services', 'Sales executive', '2019-08-24', 12000.00, '1970-01-01', 15000.00, 'Vadapalani', '2', '1 years 6 months', ' To gain another experience', 1, '2021-03-02 04:31:35', 0, NULL, 0, NULL, 1),
(1975, 3618, 'Mahindra and Mahindra', 'MIS Coordinator', '2017-11-13', 15000.00, '1970-01-01', 24700.00, 'Bangalore', '2', '3 years 3 months', ' For Change', 1, '2021-03-02 04:56:35', 0, NULL, 0, NULL, 1),
(1976, 3620, 'MRF LIMITED', 'Territory Sales Supervisor', '2019-04-08', 38000.00, '2020-12-08', 38000.00, 'Palakkad', '1', '1 years 8 months', ' *Requested for Transfer to tamilnadu, declined by Management.', 1, '2021-03-02 08:10:01', 0, NULL, 0, NULL, 1),
(1977, 3553, 'Wealth financial service pvt Ltd Fundsindia. Com', 'Logistics coordinator cum Executive Operational', '2018-01-27', 3.50, '1970-01-01', 3.50, 'Chennai', '2', '3 years 1 months', ' Looking for better opportunity', 1, '2021-03-02 11:46:06', 0, NULL, 0, NULL, 1),
(1978, 3601, 'Practo.com', 'Sr product support specialist', '2014-03-03', 19000.00, '2016-08-03', 19000.00, 'Bangalore', '1', '2 years 5 months', ' Got better apportunity', 1, '2021-03-03 10:21:35', 0, NULL, 0, NULL, 1),
(1979, 3601, 'Indeed.com', 'Content support associate', '2016-09-12', 30000.00, '2020-05-20', 30000.00, 'Bangalore', '1', '3 years 8 months', 'Covid layof', 1, '2021-03-03 10:24:27', 0, NULL, 0, NULL, 1),
(1980, 3622, 'HDB financial services', 'Telesales', '2019-12-26', 11000.00, '2021-01-30', 14000.00, 'Chennai', '1', '1 years 1 months', ' Family issue', 1, '2021-03-03 12:17:06', 0, NULL, 0, NULL, 1),
(1981, 3623, 'American express', 'BDE', '2019-05-26', 20000.00, '2020-07-05', 21000.00, 'Chennai', '1', '1 years 1 months', 'My monther health issues', 1, '2021-03-03 12:32:03', 0, NULL, 0, NULL, 1),
(1982, 3624, 'Sun Tv Network ltd', 'Management trainee', '2019-09-19', 22500.00, '2020-06-17', 300000.00, 'Chennai', '1', '0 years 8 months', ' Due to the covid situation the organisation reduced man power and I was in probation period so around 250 employees fired.', 1, '2021-03-03 12:40:03', 0, NULL, 0, NULL, 1),
(1983, 3625, 'mahindra satyam', 'associate business analyst', '2007-07-11', 375000.00, '2011-07-07', 650000.00, 'chennai', '1', '3 years 11 months', ' family commitment', 1, '2021-03-03 01:27:29', 0, NULL, 0, NULL, 1),
(1984, 3628, 'Wipro Bpo', 'Senior Associate ', '2015-01-07', 18000.00, '2019-11-29', 30000.00, 'Chennai', '1', '4 years 10 months', ' Medical Reason', 1, '2021-03-03 02:01:22', 0, NULL, 0, NULL, 1),
(1985, 3627, 'Dbs bank ', 'Front end executive ', '2019-12-25', 28800.00, '2020-05-05', 23800.00, 'Chennai', '1', '0 years 4 months', ' Contract got over', 1, '2021-03-03 02:03:51', 0, NULL, 0, NULL, 1),
(1986, 3633, 'Magnetode', 'Web developer', '2019-03-07', 5000.00, '1970-01-01', 10000.00, 'Virudhunagar', '2', '1 years 11 months', ' ', 1, '2021-03-03 09:14:57', 0, NULL, 0, NULL, 1),
(1987, 3638, 'Aegon Life insurance', 'RM', '2019-11-11', 25000.00, '2020-12-03', 27000.00, 'Chennai', '1', '1 years 0 months', ' Company closed direct channel', 1, '2021-03-05 11:00:33', 0, NULL, 0, NULL, 1),
(1988, 3660, 'Allset business solutions', 'Bpo', '2019-10-12', 15000.00, '2021-02-03', 15000.00, 'Thousand light', '1', '1 years 3 months', ' Personal issues', 1, '2021-03-05 11:54:39', 0, NULL, 0, NULL, 1),
(1989, 3661, 'Hl tech', 'Bpo', '2020-07-26', 11500.00, '2021-01-12', 12000.00, 'Cit nagar', '1', '0 years 7 months', 'Father sick', 1, '2021-03-05 11:54:48', 0, NULL, 0, NULL, 1),
(1990, 3648, 'interglobe aviation limited', 'senior executive', '2014-02-24', 13000.00, '2020-06-04', 33500.00, 'chennai', '1', '6 years 3 months', ' laid off due to pandemic', 1, '2021-03-05 12:19:56', 0, NULL, 0, NULL, 1),
(1991, 3666, 'Aim fill airlines telecouncil ', 'Team leader ', '2019-05-07', 12000.00, '2020-02-17', 13500.00, 'Anna nagar ', '1', '1 years 9 months', ' Company shifted ', 1, '2021-03-05 12:27:45', 0, NULL, 0, NULL, 1),
(1992, 3668, 'Star health and allied insurance', 'staff', '2021-01-04', 11500.00, '2021-02-08', 11500.00, 'chennai', '1', '0 years 1 months', ' Month before last month I seek in accident that time he Opointed new staff so I\'ll relieve', 1, '2021-03-05 01:14:06', 0, NULL, 0, NULL, 1),
(1993, 3677, 'App Star', 'Web developer', '2019-11-18', 31.00, '2021-03-27', 37000.00, 'Chennai', '1', '1 years 3 months', ' For career growth', 1, '2021-03-06 03:54:14', 0, NULL, 0, NULL, 1),
(1994, 3678, 'south india innovations', 'mc branding ', '2014-08-04', 12000.00, '2015-04-24', 12000.00, 'Chennai', '1', '0 years 8 months', ' Office Closed Due To Some Partners Issue', 1, '2021-03-06 07:15:43', 1, '2021-03-06 07:16:47', 0, NULL, 1),
(1995, 3678, 'Siy Teachnologeies', 'associate', '2015-09-01', 15000.00, '2018-12-22', 20000.00, 'Chennai', '1', '3 years 3 months', 'planned to study m.b.a', 1, '2021-03-06 07:18:48', 0, NULL, 0, NULL, 1),
(1996, 3680, 'icici lombard general insurance', 'tso', '2017-04-10', 11000.00, '2019-04-20', 13000.00, 'mount road', '1', '2 years 0 months', ' office timing problem and team is not support ', 1, '2021-03-06 11:53:20', 0, NULL, 0, NULL, 1),
(1997, 3680, 'innovosource', 'tso', '2019-05-09', 15200.00, '2020-04-23', 16500.00, 'ekkaduthangal', '1', '0 years 11 months', 'family problem', 1, '2021-03-06 12:00:06', 0, NULL, 0, NULL, 1),
(1998, 3682, 'Aegon life', 'RM', '2019-10-17', 25.00, '2020-12-10', 78000.00, 'chennai', '1', '1 years 1 months', ' Channel closed ', 1, '2021-03-06 01:08:25', 0, NULL, 0, NULL, 1),
(1999, 3683, 'hyundai motor plaza', 'sales executive', '2015-04-05', 9500.00, '2016-03-05', 12500.00, 'ekkaduthangal', '1', '0 years 11 months', ' Career growth ', 1, '2021-03-06 01:09:55', 0, NULL, 0, NULL, 1),
(2000, 3683, 'kb mobiles', 'sales executive', '2016-04-05', 13000.00, '2018-06-05', 15000.00, 'kodambakkam', '1', '2 years 2 months', 'Business dropout', 1, '2021-03-06 01:11:44', 0, NULL, 0, NULL, 1),
(2001, 3683, 'teleperformance', 'senior customer service executive', '2018-07-30', 15000.00, '2019-08-28', 17500.00, 'ambattur', '1', '1 years 0 months', 'Medical issues', 1, '2021-03-06 01:14:24', 0, NULL, 0, NULL, 1),
(2002, 3684, 'randstad india private ltd', 'team leader', '2020-01-01', 30000.00, '2020-09-30', 30000.00, 'chennai', '1', '0 years 8 months', ' ', 1, '2021-03-06 02:51:03', 0, NULL, 0, NULL, 1),
(2003, 3689, 'Hdfc bank', 'Asst manager', '2019-08-26', 25000.00, '2020-08-11', 25000.00, 'Chennai', '1', '0 years 11 months', 'Distance', 1, '2021-03-08 10:27:31', 0, NULL, 0, NULL, 1),
(2004, 3691, 'Cholmandalam Investment and Finance Company limite', 'Business Operations', '2021-07-02', 14000.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 3 months', 'To upgrade my carrier', 1, '2021-03-08 11:14:50', 0, NULL, 0, NULL, 1),
(2005, 3688, 'Emerio technologies Pvt Ltd', 'Admin executive', '2014-06-10', 17000.00, '2015-08-28', 17000.00, 'Guindy', '1', '1 years 2 months', 'Was Pregnant and unable to continue', 1, '2021-03-08 11:42:59', 0, NULL, 0, NULL, 1),
(2006, 3692, 'Shriram life insurance company limited', 'Area manager', '2019-11-06', 30000.00, '2020-12-30', 30000.00, 'Chennai', '1', '1 years 1 months', ' Personal reasons', 1, '2021-03-08 11:59:25', 0, NULL, 0, NULL, 1),
(2007, 3694, 'Sabeha hr', 'Sales', '2021-03-09', 13000.00, '2021-04-01', 13000.00, 'T Nagar', '1', '0 years 0 months', ' Salary issues', 1, '2021-03-08 12:16:41', 0, NULL, 0, NULL, 1),
(2008, 3697, 'Vajro inc', 'Data mining ', '2019-11-08', 10000.00, '2021-03-02', 10000.00, 'Perungudi', '1', '1 years 3 months', ' Salary constraints ', 1, '2021-03-08 12:27:03', 0, NULL, 0, NULL, 1),
(2009, 3641, 'Hunger box  company ', 'Sales and Operation manager', '2017-12-10', 13000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '3 years 2 months', ' Expecting More Salary and more Risks to develop my skills ', 1, '2021-03-08 12:43:20', 0, NULL, 0, NULL, 1),
(2010, 3698, 'all sec technologies ', 'customer care executive', '2015-05-07', 10.00, '2016-04-23', 10.00, 'velachery ', '1', '0 years 11 months', ' salary issue ', 1, '2021-03-08 01:33:16', 0, NULL, 0, NULL, 1),
(2011, 3698, 'barclays uk', 'non voice process', '2019-09-09', 17.00, '2020-09-30', 17.00, 'dlf it park porur and navalur pacifica tech park ', '1', '1 years 0 months', 'company contract over ', 1, '2021-03-08 01:35:25', 0, NULL, 0, NULL, 1),
(2012, 3700, 'Alphasoftz solutions ', 'Php developer ', '2019-11-01', 13000.00, '1970-01-01', 13000.00, 'Trichy', '2', '1 years 4 months', ' No increment in salary', 1, '2021-03-08 01:41:23', 0, NULL, 0, NULL, 1),
(2013, 3702, 'Apex covantage india pvt ltd', 'Data analyst, supporting team lead', '2018-06-21', 10000.00, '2021-02-28', 23231.00, 'Guindy, chennai', '1', '2 years 8 months', ' Personal health issue', 1, '2021-03-08 01:50:09', 0, NULL, 0, NULL, 1),
(2014, 3704, 'MIB medias', 'Social media strategists', '2019-02-05', 20000.00, '2020-02-25', 20000.00, 'Tirunelveli', '1', '1 years 0 months', ' Pandemic', 1, '2021-03-08 03:18:26', 0, NULL, 0, NULL, 1),
(2015, 3704, 'Tata consultancy Services ', 'Process Associate ', '2016-04-04', 16000.00, '2018-12-07', 24000.00, 'Chennai', '1', '2 years 8 months', 'For better growth opportunities', 1, '2021-03-08 03:20:31', 0, NULL, 0, NULL, 1),
(2016, 3704, 'Saleem stores', 'Sales executive ', '2014-04-09', 8000.00, '2016-03-09', 10000.00, 'Chennai', '1', '1 years 11 months', 'For better growth opportunities', 1, '2021-03-08 03:23:25', 0, NULL, 0, NULL, 1),
(2017, 3709, 'HCL Technology', 'Junior executive', '2014-03-17', 10000.00, '2021-02-05', 21000.00, 'chennai', '1', '6 years 10 months', ' Desire to gain a new skill or grow a current skill.', 1, '2021-03-08 05:10:46', 0, NULL, 0, NULL, 1),
(2018, 3711, 'AAHAA stores Private Limited ', 'sr Logistics Executive ', '2018-10-10', 17000.00, '1970-01-01', 18000.00, 'Thiyaraya nagar', '2', '2 years 4 months', 'Moved to next job due to salary increments last 2 years', 1, '2021-03-08 06:08:02', 0, NULL, 0, NULL, 1),
(2019, 3712, 'wipro pvt limited', 'senior officer', '2017-05-17', 10500.00, '2019-10-19', 12500.00, 'chennai', '1', '2 years 5 months', ' career growth', 1, '2021-03-08 08:33:36', 0, NULL, 0, NULL, 1),
(2020, 3712, 'chennai public school', 'graphic designer', '2012-06-05', 7000.00, '2013-04-20', 9000.00, 'chennai', '1', '0 years 10 months', 'college studies', 1, '2021-03-08 08:35:31', 0, NULL, 0, NULL, 1),
(2021, 3687, 'hdb financial services ltd', 'branch operations executive', '2017-07-17', 20000.00, '2021-02-15', 23000.00, 'chennai', '1', '3 years 6 months', ' Need Job Change for better carrier growth', 1, '2021-03-09 12:21:37', 0, NULL, 0, NULL, 1),
(2022, 3716, 'ICICI bank and pulses import and export', 'Sales executive for personal Lone, billing and tet', '2021-03-09', 16000.00, '2021-03-11', 17000.00, 'Chennai', '1', '0 years 0 months', ' Corona issues ', 1, '2021-03-09 10:50:47', 0, NULL, 0, NULL, 1),
(2023, 3718, 'Bluechips', 'Field executive', '2021-03-04', 6500.00, '2021-03-09', 16500.00, 'Greenstoad', '1', '0 years 0 months', ' Personal reason', 1, '2021-03-09 11:34:19', 0, NULL, 0, NULL, 1),
(2024, 3723, 'Radiant insurance broking pvt ltd ', 'Corporate sales manager ', '2021-01-02', 30000.00, '1970-01-01', 30000.00, 'Chennai', '2', '0 years 2 months', ' Looking for a reputed company with good sales growth ', 1, '2021-03-09 11:42:33', 0, NULL, 0, NULL, 1),
(2025, 3717, 'rushacme consultancy', 'accountant', '2018-08-27', 11000.00, '2021-01-30', 13000.00, 'purasaiwalkam', '1', '2 years 5 months', ' Covid', 1, '2021-03-09 12:21:26', 0, NULL, 0, NULL, 1),
(2026, 3725, 'More Retail ltd', 'Rmp', '2020-11-24', 15000.00, '2021-01-30', 15000.00, 'Anna nagar', '1', '0 years 2 months', ' Health issues', 1, '2021-03-09 01:31:35', 0, NULL, 0, NULL, 1),
(2027, 3729, 'I marque', 'Tele caller', '2020-11-21', 12000.00, '2021-03-04', 12000.00, 'T nagar', '1', '0 years 3 months', ' Medical leave', 1, '2021-03-09 02:40:41', 0, NULL, 0, NULL, 1),
(2028, 3730, 'Xmedia Solution', 'Php developer', '2020-02-03', 1.20, '1970-01-01', 1.50, 'Ambattur', '2', '1 years 1 months', ' Change of domain', 1, '2021-03-09 03:16:07', 0, NULL, 0, NULL, 1),
(2029, 3735, 'POORVIKA MOBILES PRIVATE LIMITED', 'Php developer', '2019-07-15', 10000.00, '2020-08-12', 10000.00, 'Chennai', '1', '1 years 0 months', ' ', 1, '2021-03-10 09:33:14', 0, NULL, 0, NULL, 1),
(2030, 3736, 'Lakson technology ', 'Process associate', '2019-04-17', 12000.00, '2020-09-19', 13000.00, 'Nandhanam', '1', '1 years 5 months', ' I want change to better salary ', 1, '2021-03-10 10:36:56', 0, NULL, 0, NULL, 1),
(2031, 3732, 'CANARA HSBC OBC LIFE INSURANCE', 'Sales manager', '2019-07-18', 25000.00, '2020-08-05', 300000.00, 'CHENNAI', '1', '1 years 0 months', ' Need to change location', 1, '2021-03-10 10:47:56', 0, NULL, 0, NULL, 1),
(2032, 3737, 'Allset business solutions', 'Tellecaller', '2020-09-20', 15000.00, '2021-02-03', 13000.00, 'Chennai', '1', '0 years 4 months', ' Personal issue', 1, '2021-03-10 10:57:29', 0, NULL, 0, NULL, 1),
(2033, 3743, 'Tatasky service centre', 'Cco/supervisor', '2017-07-28', 16000.00, '2020-12-20', 22000.00, 'Chennai', '1', '3 years 4 months', ' Salary issue', 1, '2021-03-10 12:30:59', 0, NULL, 0, NULL, 1),
(2034, 3741, 'R.saravanan ', 'Outbound tatasky ', '2019-04-13', 9500.00, '2019-11-08', 13000.00, 'Guindy', '1', '0 years 6 months', ' After Corona I cannot to join', 1, '2021-03-10 12:32:12', 0, NULL, 0, NULL, 1),
(2035, 3745, 'Sun pharma ', 'Business executive', '2017-07-04', 180000.00, '2019-11-04', 330000.00, '2.3 years', '1', '2 years 4 months', ' Not intrested in pharma field ', 1, '2021-03-10 12:45:06', 0, NULL, 0, NULL, 1),
(2036, 3748, 'Wings brand activation india pvt ltd', 'Business development manager', '2021-03-10', 25000.00, '1970-01-01', 30000.00, 'Chennai', '2', '0 years 0 months', ' Chennai marketing is closed for last month', 1, '2021-03-10 01:58:06', 0, NULL, 0, NULL, 1),
(2037, 3748, 'Wings brand activation', 'Business development manager', '2019-08-01', 30000.00, '2021-02-28', 30000.00, 'Chennai', '1', '1 years 6 months', 'Last month closing for Chennai marketing', 1, '2021-03-10 02:00:10', 0, NULL, 0, NULL, 1),
(2038, 3749, 'Armsoftech', 'Voice', '2019-05-09', 18000.00, '2021-01-14', 18000.00, 'perungudi', '2', '1 years 10 months', ' Shift timing was not ok', 1, '2021-03-10 02:05:35', 0, NULL, 0, NULL, 1),
(2039, 3748, 'Wings', 'Business development manager', '2019-08-01', 30000.00, '2021-01-31', 30000.00, 'Chennai', '1', '1 years 5 months', 'Last month closing for Chennai marketing', 1, '2021-03-10 02:06:27', 0, NULL, 0, NULL, 1),
(2040, 3750, 'Arms of tech', 'Voice', '2020-02-05', 18000.00, '1970-01-01', 18000.00, 'Perungudi', '2', '1 years 1 months', ' Distance', 1, '2021-03-10 02:42:55', 0, NULL, 0, NULL, 1),
(2041, 3707, 'hexaware technologies', 'senior executive', '2019-08-05', 25000.00, '2020-06-16', 25000.00, 'omr', '1', '0 years 10 months', 'lockdown', 1, '2021-03-10 03:23:22', 0, NULL, 0, NULL, 1),
(2042, 3761, 'Deep Quantity Telesales', 'Data Enrichment Excutive', '2018-12-24', 10000.00, '2020-11-29', 11000.00, 'Little mount', '1', '1 years 11 months', ' Less salary', 1, '2021-03-11 11:10:26', 0, NULL, 0, NULL, 1),
(2043, 3762, 'Deep quantity', 'Data enrichment executive', '2018-12-24', 10000.00, '2020-11-29', 12000.00, 'Little mount', '1', '1 years 11 months', ' Less salary', 1, '2021-03-11 11:10:27', 0, NULL, 0, NULL, 1),
(2044, 3763, 'Solartis Pvt Ltd', 'Associate', '2019-02-11', 9000.00, '2021-02-04', 12400.00, 'Chennai', '1', '1 years 11 months', 'I re-evaluate my Career goal and Decided a change was need .', 1, '2021-03-11 11:12:57', 0, NULL, 0, NULL, 1),
(2045, 3765, 'modish learhers', 'quality checking', '2016-03-16', 9000.00, '2020-03-10', 12000.00, 'ambur', '1', '3 years 11 months', ' ', 1, '2021-03-11 11:57:25', 0, NULL, 0, NULL, 1),
(2046, 3765, 'telebuy skyshop', 'telecaller', '2013-10-16', 11000.00, '2014-04-05', 11000.00, 'chennai', '1', '0 years 5 months', 'for personal purpose', 1, '2021-03-11 11:59:16', 0, NULL, 0, NULL, 1),
(2047, 3767, 'Shriram transport finance company limited', 'Customer support executive', '2020-02-19', 10806.00, '2021-01-07', 10806.00, 'Trichy', '1', '0 years 10 months', ' ', 1, '2021-03-11 12:00:42', 0, NULL, 0, NULL, 1),
(2048, 3756, 'Iifl', 'Team leader', '2020-03-01', 13000.00, '2021-02-10', 15000.00, 'Ekkatuthagal', '1', '0 years 11 months', ' Office closed', 1, '2021-03-11 12:13:10', 0, NULL, 0, NULL, 1),
(2049, 3772, 'Chola ms', 'Agency manager', '2021-01-11', 31.00, '1970-01-01', 15.00, 'Chennai', '2', '0 years 2 months', 'I am growth my career', 1, '2021-03-11 12:46:01', 0, NULL, 0, NULL, 1),
(2050, 3764, 'arun excello', 'telecaller', '2015-02-02', 10000.00, '2021-01-04', 15000.00, 'royapettah', '1', '5 years 11 months', ' salary delay', 1, '2021-03-11 12:51:27', 0, NULL, 0, NULL, 1),
(2051, 3759, 'Shriram life insurance', 'Telecaller', '2019-04-15', 13000.00, '2020-04-01', 13000.00, 'Tnagar', '1', '0 years 11 months', ' Health problem', 1, '2021-03-11 12:53:51', 0, NULL, 0, NULL, 1),
(2052, 3771, 'vgm concultant', 'telecollection', '2020-01-11', 12000.00, '2021-01-01', 12000.00, 'chennai', '1', '0 years 11 months', 'given splited salary ', 1, '2021-03-11 01:12:46', 0, NULL, 0, NULL, 1),
(2053, 3773, 'Indian business trade', 'Csr', '2020-06-10', 11000.00, '2020-12-08', 11000.00, 'Adyar', '1', '0 years 5 months', ' Salary is low', 1, '2021-03-11 03:13:53', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2054, 3775, 'Manappuram finance limited', 'Asst Branch Head', '2017-08-27', 12000.00, '2019-01-31', 15000.00, '1.6', '1', '1 years 5 months', 'Accounts line', 1, '2021-03-11 04:29:13', 0, NULL, 0, NULL, 1),
(2055, 3778, 'RR Donnelley ', 'Document Specialist', '2015-09-02', 10000.00, '2017-03-15', 14000.00, 'Tenampet', '1', '1 years 6 months', ' Shifted to Another Location.', 1, '2021-03-11 08:03:26', 0, NULL, 0, NULL, 1),
(2056, 3780, 'Effixon Engineering Pvt Ltd (Flsmidth)', 'Lead Engineer', '2020-02-03', 25000.00, '2021-01-06', 27000.00, 'Chennai', '1', '0 years 11 months', 'I was working as contract employee, So I Quit.', 1, '2021-03-11 09:30:19', 0, NULL, 0, NULL, 1),
(2057, 3781, 'lemon park', 'mis executive', '2021-02-19', 18000.00, '1970-01-01', 18000.00, 'chenni', '2', '0 years 0 months', ' salary', 1, '2021-03-12 09:38:45', 0, NULL, 0, NULL, 1),
(2058, 3783, 'Thinksyq solution', 'Customer support executive', '2019-02-25', 10000.00, '2020-09-22', 12000.00, 'Royapeta', '1', '1 years 6 months', ' ', 1, '2021-03-12 12:01:01', 0, NULL, 0, NULL, 1),
(2059, 3784, 'Thinksynq solution private limited', 'Customer support executive', '2018-02-26', 10500.00, '2020-09-10', 12000.00, 'Royapettah', '1', '2 years 6 months', 'Office shifted to ekaduthangal \nDistance problem', 1, '2021-03-12 12:02:28', 0, NULL, 0, NULL, 1),
(2060, 3787, 'solartis technologies private limited', 'associate', '2017-06-20', 10000.00, '2019-04-06', 12000.00, 'madurai', '1', '1 years 9 months', ' Personal reason and job dissatisfaction\n(much interested in digital marketing)', 1, '2021-03-12 03:46:50', 0, NULL, 0, NULL, 1),
(2061, 3789, 'AIRTEL', 'CRO', '2019-07-16', 17500.00, '2021-03-06', 20500.00, 'Alwarpet chennai', '1', '1 years 7 months', ' Location change to trichy', 1, '2021-03-12 04:02:32', 0, NULL, 0, NULL, 1),
(2062, 3790, 'Lookman Electroplast industries private Ltd ', 'Software developer ', '2019-12-09', 200000.00, '1970-01-01', 260000.00, 'Chennai ', '2', '1 years 3 months', ' Salary issued delayed ', 1, '2021-03-12 04:39:10', 0, NULL, 0, NULL, 1),
(2063, 3791, 'Lookman electroplast industries ltd', 'Software Developer', '2019-12-04', 202000.00, '1970-01-01', 259600.00, 'Chennai', '2', '1 years 3 months', ' Salary issue', 1, '2021-03-12 04:51:30', 0, NULL, 0, NULL, 1),
(2064, 3792, 'Genpact ', 'Associate ', '2019-12-01', 290000.00, '2020-07-01', 290000.00, 'Hyderabad ', '1', '0 years 7 months', ' Covid 19 ', 1, '2021-03-12 05:23:49', 0, NULL, 0, NULL, 1),
(2065, 3794, 'aalan infotech', 'softw devel ', '2018-02-05', 150000.00, '2019-02-21', 150000.00, 'salem', '1', '1 years 0 months', ' Update my knowlege and learn New skills', 1, '2021-03-12 07:17:36', 0, NULL, 0, NULL, 1),
(2066, 3794, 'lookman electroplast industries pvt ltd', 'software developer', '2019-12-09', 240000.00, '2021-03-01', 270000.00, 'chennai', '1', '1 years 3 months', 'Update my self and salary not provided correct date very Delay ', 1, '2021-03-12 07:20:29', 0, NULL, 0, NULL, 1),
(2067, 3798, 'Access healthcare', 'AR associate', '2020-02-22', 20000.00, '2021-02-10', 20000.00, 'Chennai', '1', '0 years 11 months', ' ', 1, '2021-03-12 10:00:16', 0, NULL, 0, NULL, 1),
(2068, 3802, 'hexagonkomputers', 'web developer ', '2018-07-02', 7500.00, '1970-01-01', 15000.00, 'chennai', '2', '2 years 8 months', 'to develop my skills ,upgrade my knowledge,and i didn\'t word as a team..', 1, '2021-03-13 11:26:06', 0, NULL, 0, NULL, 1),
(2069, 3804, 'V. L promoters', 'Telecaller ', '2017-01-02', 16000.00, '2019-12-31', 18000.00, 'Coimbatore ', '1', '2 years 11 months', 'Coimbatore to chennai transfer for personal reason ', 1, '2021-03-13 11:41:37', 0, NULL, 0, NULL, 1),
(2070, 3808, 'Voyager Marine Service', 'ELECTRICIAN ', '2018-05-01', 10000.00, '2019-06-01', 15000.00, 'Kattupali chennaj', '1', '1 years 1 months', ' ', 1, '2021-03-13 12:05:33', 0, NULL, 0, NULL, 1),
(2071, 3811, 'fresher', 'fresher', '2018-03-01', 1.00, '2019-09-09', 1.00, 'fresher', '1', '1 years 6 months', ' dummy entry i am fresher', 1, '2021-03-13 01:13:21', 0, NULL, 0, NULL, 1),
(2072, 3814, 'RJR Hospital', 'Ennore', '2019-01-21', 13000.00, '2021-02-23', 14000.00, 'T. Nagar', '1', '2 years 1 months', 'Not Interested ', 1, '2021-03-13 03:38:14', 0, NULL, 0, NULL, 1),
(2073, 3817, 'RJR Hospital', 'Ennore', '2019-01-21', 13000.00, '2021-02-23', 14000.00, 'T. Nagar', '1', '2 years 1 months', ' Not Interested', 1, '2021-03-13 03:54:51', 0, NULL, 0, NULL, 1),
(2074, 3824, 'Reliabke business solution services private limite', 'Digital marketing', '2021-01-15', 12000.00, '1970-01-01', 12000.00, 'Sholinganallur', '2', '0 years 1 months', ' Salary is low', 1, '2021-03-14 11:32:53', 0, NULL, 0, NULL, 1),
(2075, 3827, 'Innov', 'Sales executive', '2019-03-15', 18000.00, '2020-02-28', 18000.00, 'Arumbakkam', '1', '2 years 0 months', 'Salaried issue', 1, '2021-03-15 11:44:54', 0, NULL, 0, NULL, 1),
(2076, 3827, 'Innov', 'Sales executive', '2019-03-21', 18000.00, '2020-07-16', 18000.00, 'Arumbakkam', '1', '1 years 3 months', 'Salary issued', 1, '2021-03-15 11:47:09', 0, NULL, 0, NULL, 1),
(2077, 3818, 'idp education ', 'counselor', '2016-06-08', 38000.00, '2017-06-14', 40000.00, 'chennai', '1', '1 years 0 months', ' ', 1, '2021-03-15 12:22:18', 0, NULL, 0, NULL, 1),
(2078, 3830, 'star gold', 'marketing manager', '2020-03-06', 18000.00, '2020-10-12', 19000.00, 'kolathur', '1', '0 years 7 months', 'personal reason', 1, '2021-03-15 12:41:42', 0, NULL, 0, NULL, 1),
(2079, 3825, 'Magic Bus India Foundation', 'Center Co-ordinator', '2019-08-12', 12000.00, '2021-03-15', 12000.00, 'Anna salai', '1', '1 years 7 months', ' Salary Issue\n', 1, '2021-03-15 01:17:46', 0, NULL, 0, NULL, 1),
(2080, 3825, 'Magic Bus India Foundation', 'Center Co-ordinator', '2019-08-12', 12000.00, '2021-01-25', 12000.00, 'Anna salai', '1', '1 years 5 months', 'Low Salary', 1, '2021-03-15 01:19:02', 0, NULL, 0, NULL, 1),
(2081, 3831, 'nuray chemicals private limited', 'Production Chemist', '2019-11-04', 11000.00, '2020-03-03', 13000.00, 'chennai', '1', '1 years 4 months', ' due to covid-19', 1, '2021-03-15 01:29:52', 0, NULL, 0, NULL, 1),
(2082, 3831, 'aqua power engineering', 'ro plant operator', '2018-08-07', 9000.00, '2019-11-30', 10000.00, 'chennai', '1', '1 years 3 months', 'contract closed', 1, '2021-03-15 01:33:10', 0, NULL, 0, NULL, 1),
(2083, 3833, 'Ujjivan small finance bank', 'Relationship officer', '2018-09-14', 14000.00, '1970-01-01', 14500.00, 'Tirunelveli', '2', '2 years 6 months', ' Carrier Growth', 1, '2021-03-15 02:49:23', 0, NULL, 0, NULL, 1),
(2084, 3839, 'telecaller', 'telecaller', '2018-03-16', 10000.00, '2020-11-18', 13000.00, 'chennai', '1', '2 years 8 months', ' Covid', 1, '2021-03-16 09:20:47', 0, NULL, 0, NULL, 1),
(2085, 3841, 'hdb financial services', 'seior tellecalling officer', '2015-07-06', 11000.00, '2016-11-11', 12000.00, 'chennai', '1', '1 years 4 months', ' salary hike', 1, '2021-03-16 09:40:53', 0, NULL, 0, NULL, 1),
(2086, 3841, 'pkg', 'senior tellcalling officer', '2017-02-02', 14000.00, '2018-08-08', 16000.00, 'chennai', '1', '1 years 6 months', 'posting', 1, '2021-03-16 09:42:24', 0, NULL, 0, NULL, 1),
(2087, 3841, 'pkg', 'mis executive', '2018-08-08', 16000.00, '1970-01-01', 16500.00, 'chennai', '2', '2 years 7 months', 'growth', 1, '2021-03-16 09:43:05', 0, NULL, 0, NULL, 1),
(2088, 3842, 'Sbi cards', 'Telle caller', '2021-01-04', 13.00, '2021-03-08', 11.00, 'Koyambed', '1', '0 years 2 months', ' ', 1, '2021-03-16 10:02:12', 0, NULL, 0, NULL, 1),
(2089, 3842, 'Sbi cards', 'Telle caller', '2021-01-04', 13.00, '2021-03-08', 11.00, 'Koyambed', '1', '0 years 2 months', 'Personal issues', 1, '2021-03-16 10:03:24', 0, NULL, 0, NULL, 1),
(2090, 3843, 'Brite Infomedia', 'Web developer', '2019-03-04', 10000.00, '2021-03-16', 12000.00, 'chennai', '2', '2 years 0 months', ' 1. I want to learn new technologies. here im creating only static website but i want to create dynamic Sites.\n2. salary', 1, '2021-03-16 10:20:32', 0, NULL, 0, NULL, 1),
(2091, 3844, 'sign associates', 'caller', '2017-06-18', 10000.00, '2020-03-04', 14000.00, 'chennai', '1', '2 years 8 months', ' hike', 1, '2021-03-16 10:32:36', 0, NULL, 0, NULL, 1),
(2092, 3846, 'Muthoot Mercantile', 'Clerk', '2019-05-22', 22500.00, '2020-06-02', 22500.00, 'Mumbai', '1', '1 years 0 months', ' Due to corona I left my job', 1, '2021-03-16 11:29:10', 0, NULL, 0, NULL, 1),
(2093, 3848, 'cornea it solutions', 'sales manager', '2016-03-16', 20000.00, '2019-03-16', 26000.00, 'kerala', '1', '3 years 0 months', ' company was in loss and the salary was not given properly.', 1, '2021-03-16 12:38:11', 0, NULL, 0, NULL, 1),
(2094, 3848, 'katrina engineering', 'sales manager', '2020-01-16', 27000.00, '2020-12-20', 27000.00, 'pune', '1', '0 years 11 months', 'due to corona pademic i couldnt fullfill my role because there was no work. so there wasnt any growth for me', 1, '2021-03-16 12:42:20', 0, NULL, 0, NULL, 1),
(2095, 3850, 'cognizant technologies solutions', 'programmer', '2019-03-02', 200000.00, '2020-08-17', 250000.00, 'chennai', '1', '1 years 5 months', ' move for Development .', 1, '2021-03-16 01:22:36', 0, NULL, 0, NULL, 1),
(2096, 3853, 'bylane logistics', 'sales', '2016-03-12', 10000.00, '2016-03-17', 12000.00, 'chennai', '1', '0 years 0 months', ' Hike', 1, '2021-03-16 05:36:36', 0, NULL, 0, NULL, 1),
(2097, 3854, 'sutherland global services', 'customer support executive ', '2018-04-15', 12000.00, '2019-04-17', 12500.00, 'chennai', '1', '1 years 0 months', ' yes', 1, '2021-03-16 05:54:00', 0, NULL, 0, NULL, 1),
(2098, 3854, 'altruist customer management', 'senior support executive', '2019-05-05', 13000.00, '2019-11-09', 13500.00, 'chennai', '1', '0 years 6 months', 'Carrier growth', 1, '2021-03-16 05:56:27', 0, NULL, 0, NULL, 1),
(2099, 3856, 'Nua Trans media', 'Full stack web developer', '2019-05-20', 10000.00, '2020-12-30', 15000.00, 'Kodambakkam', '1', '1 years 7 months', 'Due to covid there is no hike past 7months and also health issues.', 1, '2021-03-16 07:11:33', 0, NULL, 0, NULL, 1),
(2100, 3860, 'HDB FINANCIAL SERVICES LIMITED', 'Sales executive', '2018-08-01', 15000.00, '2021-02-05', 15000.00, 'Chennai', '1', '2 years 6 months', 'Marriage', 1, '2021-03-17 11:18:08', 0, NULL, 0, NULL, 1),
(2101, 3859, 'Reliance communication', 'Channel sales manager', '2011-01-02', 300000.00, '2012-01-10', 320000.00, 'Chennai', '1', '1 years 0 months', ' Change of location', 1, '2021-03-17 11:19:20', 0, NULL, 0, NULL, 1),
(2102, 3859, 'MTS', 'Channel sales manager', '2012-02-05', 450000.00, '2017-03-15', 570000.00, 'Chennai', '1', '5 years 1 months', 'Company shut down', 1, '2021-03-17 11:21:14', 0, NULL, 0, NULL, 1),
(2103, 3859, 'Sistema ', 'Lead', '2017-03-15', 570000.00, '2018-05-02', 600000.00, 'Chennai', '1', '1 years 1 months', 'Personal reason', 1, '2021-03-17 11:22:35', 0, NULL, 0, NULL, 1),
(2104, 3861, 'Teleperformance', 'Customer service Associate - voice', '2019-04-25', 10000.00, '2020-06-30', 10000.00, 'Ambathur ', '1', '1 years 2 months', ' Carrier improvement', 1, '2021-03-17 11:30:33', 0, NULL, 0, NULL, 1),
(2105, 3863, 'CHRISTIAN MEDICAL COLLEGE AND HOSPITAL', 'AUDIT ASSISTANT', '2013-02-01', 15500.00, '1970-01-01', 18000.00, 'VELLORE', '2', '8 years 1 months', ' PROJECT MODE', 1, '2021-03-17 11:56:21', 0, NULL, 0, NULL, 1),
(2106, 3862, 'A and a dukaan financial service pvt ltd', 'Customer relationship officer', '2019-05-27', 21000.00, '2020-04-23', 21000.00, 'Ambattur', '1', '0 years 10 months', ' Due to covid-19 management ask me to quit the job. ', 1, '2021-03-17 12:07:45', 0, NULL, 0, NULL, 1),
(2107, 3857, 'darts india pvt. ltd.', 'software engineer', '2018-07-02', 8000.00, '2021-01-12', 14500.00, 'chennai', '1', '2 years 6 months', ' For my career growth and have to work in a large environment.', 1, '2021-03-17 12:12:38', 0, NULL, 0, NULL, 1),
(2108, 3864, 'Organic india', 'Store manager', '2018-04-04', 32000.00, '2021-01-31', 32000.00, 'Chennai', '1', '2 years 9 months', ' Franchise closed', 1, '2021-03-17 12:13:52', 0, NULL, 0, NULL, 1),
(2109, 3862, 'Fullerton india credit company ', 'Sales officer', '2018-07-09', 14000.00, '2019-05-25', 14000.00, 'Maduravoyil', '1', '0 years 10 months', 'Process has been Gone to loss of income so management has fire the person who have recently joined in 1 years ', 1, '2021-03-17 12:15:00', 0, NULL, 0, NULL, 1),
(2110, 3867, ' Sky Way infotech', 'Customer sales executive', '2019-05-01', 11000.00, '2019-10-01', 11000.00, 'Adayar', '1', '0 years 5 months', ' Company was dropped out bcoz of the loss of the company ,,', 1, '2021-03-17 01:19:00', 0, NULL, 0, NULL, 1),
(2111, 3868, 'K7 computing pvt ltd', 'Senior mis executive', '2020-04-01', 35000.00, '2021-03-15', 35000.00, 'Chennai', '1', '0 years 11 months', ' Sale team is got closed hence relived', 1, '2021-03-17 01:45:07', 0, NULL, 0, NULL, 1),
(2112, 3872, 'asian paints', 'direct sales representative', '2020-06-16', 240000.00, '2021-02-28', 240000.00, 'chennai', '1', '0 years 8 months', ' Personal', 1, '2021-03-17 05:06:26', 0, NULL, 0, NULL, 1),
(2113, 3874, 'Athena health care Technology', 'Technical support', '2018-04-02', 14000.00, '2019-08-02', 15000.00, 'Taramani', '1', '1 years 4 months', ' Personal issues', 1, '2021-03-17 05:28:10', 0, NULL, 0, NULL, 1),
(2114, 3875, 'Kun Capital Motors Pvt.Ltd', 'Field Executive', '2019-06-04', 13500.00, '2020-12-18', 15000.00, 'Chennai', '1', '1 years 6 months', 'Layout', 1, '2021-03-17 05:57:36', 0, NULL, 0, NULL, 1),
(2115, 3882, 'John player ', 'Sales Executive ', '2015-01-01', 10000.00, '2018-01-01', 15000.00, 'Vellore ', '1', '3 years 0 months', ' Some Family Health Issue', 1, '2021-03-18 09:35:03', 0, NULL, 0, NULL, 1),
(2116, 3884, 'icici lombard', 'sales executive', '2019-02-02', 11000.00, '2021-01-13', 14000.00, 'chennai', '1', '1 years 11 months', ' Growth', 1, '2021-03-18 09:42:50', 0, NULL, 0, NULL, 1),
(2117, 3886, 'ata ', 'data entry', '2019-01-13', 10000.00, '2019-06-19', 12000.00, 'chennai', '1', '0 years 5 months', ' growth', 1, '2021-03-18 10:15:40', 0, NULL, 0, NULL, 1),
(2118, 3885, 'patterns furnishing', 'head of retail', '2019-07-10', 450000.00, '1970-01-01', 45000.00, 'chennai', '2', '1 years 8 months', ' Transfer to delhi ', 1, '2021-03-18 10:17:23', 0, NULL, 0, NULL, 1),
(2119, 3888, 'Credo Systemz', 'Software Trainee', '2019-07-01', 120000.00, '2019-09-30', 120000.00, 'Velachery', '1', '0 years 2 months', ' It\'s not a company. It\'s a training institute. There is no opportunity to grow up. No space to learn new things.', 1, '2021-03-18 10:51:44', 0, NULL, 0, NULL, 1),
(2120, 3888, 'CRB Innovative solutions', 'Junior PHP Developer', '2019-10-01', 108000.00, '2020-09-30', 180000.00, 'Anna Nagar', '1', '0 years 11 months', 'Irregular pay.', 1, '2021-03-18 10:54:06', 0, NULL, 0, NULL, 1),
(2121, 3888, 'Egrove Systems', 'Magento Developer', '2020-10-01', 240000.00, '2020-12-31', 240000.00, 'Annanagar', '1', '0 years 3 months', 'There is no proper response and facing some issues. ', 1, '2021-03-18 10:56:11', 0, NULL, 0, NULL, 1),
(2122, 3887, 'Victory resources management group', 'Asst manager ', '2016-01-01', 28000.00, '1970-01-01', 34000.00, 'Chennai ', '2', '5 years 2 months', ' Family situation ', 1, '2021-03-18 11:07:39', 0, NULL, 0, NULL, 1),
(2123, 3889, 'BHARTI AIRTEL', 'Distribution of sales', '2000-03-10', 25000.00, '2020-08-31', 40000.00, 'Poonamlli', '1', '20 years 5 months', ' Crush the market level', 1, '2021-03-18 11:12:56', 0, NULL, 0, NULL, 1),
(2124, 3892, 'Srinsoft Technologies Pvt ltd', 'Junior programmer analyst', '2019-11-12', 15000.00, '2021-03-15', 15000.00, 'Chennai', '1', '1 years 4 months', ' Want to explore more and To be frank This salary is not enough for me.', 1, '2021-03-18 11:32:39', 0, NULL, 0, NULL, 1),
(2125, 3890, ' first source pvt ltd', 'customer care exectiove', '2015-04-15', 10000.00, '2018-12-18', 14000.00, 'perugudi', '1', '3 years 8 months', ' family issue', 1, '2021-03-18 11:33:54', 0, NULL, 0, NULL, 1),
(2126, 3890, 'armsoft tech pvt ltd', 'collection exective', '2019-10-01', 14000.00, '2020-07-15', 14000.00, 'perugudi', '1', '0 years 9 months', 'due to corona', 1, '2021-03-18 11:36:14', 0, NULL, 0, NULL, 1),
(2127, 3890, 'cmo axis pvt ltd', 'tele marketing exective', '2019-02-12', 14000.00, '2019-10-09', 14000.00, 'velacherry', '1', '0 years 7 months', 'family issue', 1, '2021-03-18 11:39:01', 0, NULL, 0, NULL, 1),
(2128, 3891, 'max life insurance co. ltd', 'associate agency development manager', '2019-09-02', 25000.00, '2020-02-28', 25000.00, 'chennai', '1', '0 years 5 months', ' covid 19', 1, '2021-03-18 12:18:16', 0, NULL, 0, NULL, 1),
(2129, 3891, 'icici bank', 'relationship manager', '2012-06-06', 35000.00, '2017-12-14', 42000.00, 'chennai', '1', '5 years 6 months', 'personal reason', 1, '2021-03-18 12:19:43', 0, NULL, 0, NULL, 1),
(2130, 3891, 'orchid chemicals and pharmaceuticals', 'business manager', '2010-08-19', 25000.00, '2012-05-03', 30000.00, 'chennai', '1', '1 years 8 months', 'Better prospect', 1, '2021-03-18 12:21:33', 0, NULL, 0, NULL, 1),
(2131, 3891, 'cipla ltd', 'territory manager', '2003-10-29', 10000.00, '2009-12-23', 22000.00, 'chennai', '1', '6 years 1 months', 'better prospect', 1, '2021-03-18 12:23:24', 0, NULL, 0, NULL, 1),
(2132, 3894, 'justdial', 'telecaller', '2018-08-03', 13000.00, '2019-09-18', 13000.00, 'saidapet', '1', '1 years 1 months', ' personal', 1, '2021-03-18 12:42:39', 0, NULL, 0, NULL, 1),
(2133, 3897, 'Grab india', 'Sales', '2016-03-18', 10000.00, '2020-03-03', 15000.00, 'Porur', '1', '4 years 11 months', ' ', 1, '2021-03-18 01:59:49', 0, NULL, 0, NULL, 1),
(2134, 3893, 'amzon', 'product checking anlyesit', '2017-06-13', 13000.00, '2020-12-04', 13000.00, 't nagar', '1', '3 years 5 months', ' due to comapany  sifited to long near by periyapalayam', 1, '2021-03-18 02:21:44', 0, NULL, 0, NULL, 1),
(2135, 3899, 'Olx India Pvt Ltd', 'Operations manager', '2018-11-09', 50000.00, '1970-01-01', 570000.00, 'Chennai ', '2', '2 years 4 months', ' ', 1, '2021-03-18 03:08:39', 0, NULL, 0, NULL, 1),
(2136, 3901, 'Spize events', 'Event manager ', '2016-11-01', 12000.00, '2019-05-31', 18000.00, 'Chennai', '1', '2 years 6 months', ' Want grow up next level', 1, '2021-03-18 03:23:53', 0, NULL, 0, NULL, 1),
(2137, 3901, 'BYJUS', 'Business development associate', '2019-12-05', 53000.00, '2020-05-28', 53000.00, 'Salem', '1', '0 years 5 months', 'Performance period ', 1, '2021-03-18 03:28:20', 0, NULL, 0, NULL, 1),
(2138, 3905, 'Plada Infotech Services ', 'Field Executive ', '2019-01-01', 15000.00, '2021-03-18', 15500.00, 'Chennai', '1', '2 years 2 months', ' Process Have Been Closed ', 1, '2021-03-18 04:23:34', 0, NULL, 0, NULL, 1),
(2139, 3907, 'Accenture solutions pvt ltd', 'New associate ', '2015-06-29', 132000.00, '2017-03-30', 172000.00, 'Chennai', '1', '1 years 9 months', ' Better position ', 1, '2021-03-18 05:38:10', 0, NULL, 0, NULL, 1),
(2140, 3907, 'Capgemini solutions pvt ltd', 'Process associate ', '2017-03-31', 258000.00, '2020-12-30', 310000.00, 'Chennai', '1', '3 years 8 months', 'Better position', 1, '2021-03-18 05:39:36', 0, NULL, 0, NULL, 1),
(2141, 3909, 'nuratech consultancy private limited', 'project engineer', '2017-05-04', 1.00, '2019-01-07', 18000.00, 'chennai', '1', '1 years 8 months', ' career growth', 1, '2021-03-18 07:14:59', 1, '2021-03-18 07:17:03', 0, NULL, 1),
(2142, 3909, 'mindgate solutions', 'software developer', '2019-01-21', 7.00, '1970-01-01', 25666.00, 'chennai', '2', '2 years 1 months', 'currently working', 1, '2021-03-18 07:16:46', 0, NULL, 0, NULL, 1),
(2143, 3912, 'bharat matrimony', 'executive', '2018-05-02', 10000.00, '2021-03-19', 14000.00, 'chennai', '1', '2 years 10 months', ' growth', 1, '2021-03-19 10:20:30', 0, NULL, 0, NULL, 1),
(2144, 3914, 'Zolo', 'Property management', '2020-10-27', 15000.00, '2021-03-22', 24000.00, 'Omr', '1', '0 years 4 months', 'I want to improve my knowledge', 1, '2021-03-19 10:39:43', 0, NULL, 0, NULL, 1),
(2145, 3911, '2 year', 'comi', '2019-03-19', 16000.00, '2021-01-19', 18000.00, 'chennai', '1', '1 years 10 months', ' I don\'t like to work', 1, '2021-03-19 11:11:14', 0, NULL, 0, NULL, 1),
(2146, 3916, 'ags', 'ar caller', '2020-02-21', 13000.00, '2021-01-29', 16000.00, 'tidel park', '1', '0 years 11 months', ' heal issue', 1, '2021-03-19 11:15:10', 1, '2021-03-19 11:15:54', 0, NULL, 1),
(2147, 3921, 'Omega health care', 'AR caller', '2014-06-20', 162000.00, '2015-07-02', 162000.00, 'Chennai', '1', '1 years 0 months', ' Had to clear all the backlogs', 1, '2021-03-19 11:59:53', 0, NULL, 0, NULL, 1),
(2148, 3922, 'PCI PEST CONTROL INDIA PVT LTD', 'JOA and operations', '2016-07-11', 14000.00, '2018-08-14', 17000.00, 'Chennai', '1', '2 years 1 months', ' Incremental problem', 1, '2021-03-19 12:01:03', 0, NULL, 0, NULL, 1),
(2149, 3922, 'NBHC ', 'Officer Sales and operations', '2018-08-16', 22000.00, '2020-10-31', 25000.00, 'Chennai, Coimbatore and kerala', '1', '2 years 2 months', 'Salary problem and Covid issue ', 1, '2021-03-19 12:02:48', 0, NULL, 0, NULL, 1),
(2150, 3923, 'Taginfosolutions Pvt ltd Chennai', 'PHP developer', '2019-06-06', 8000.00, '2019-12-24', 10000.00, 'Kolathur', '1', '0 years 6 months', ' Salary issue', 1, '2021-03-19 12:35:56', 0, NULL, 0, NULL, 1),
(2151, 3923, 'Rajkishan communication', 'Telecaller', '2020-01-06', 11000.00, '2020-05-01', 13000.00, 'Kolathur', '1', '0 years 3 months', 'Covid-19', 1, '2021-03-19 12:38:18', 0, NULL, 0, NULL, 1),
(2152, 3927, 'Great ventures (commodity trading)', 'Customer relationship executive', '2018-10-24', 12000.00, '2019-11-30', 12000.00, 'Koyambedu', '1', '1 years 1 months', 'Salary very low. So I relieved that company', 1, '2021-03-19 02:32:54', 0, NULL, 0, NULL, 1),
(2153, 3917, 'delsey', 'sales', '2017-07-03', 14000.00, '2020-11-30', 15000.00, 'chennai', '1', '3 years 4 months', ' ', 1, '2021-03-19 04:20:51', 0, NULL, 0, NULL, 1),
(2154, 3928, 'syncfusion software private ltd', 'software developer', '2019-10-14', 21500.00, '2020-08-14', 258000.00, 'chennai', '1', '0 years 10 months', ' due some personal health issues and family problems', 1, '2021-03-19 04:41:10', 0, NULL, 0, NULL, 1),
(2155, 3878, 'SBSR kannam pvt ltd ', 'Full stack developer ', '2020-10-01', 12000.00, '1970-01-01', 15000.00, 'Karampakkam', '2', '0 years 5 months', 'Because I don\'t get my salary for past 2 Months on time ', 1, '2021-03-19 06:37:54', 0, NULL, 0, NULL, 1),
(2156, 3931, 'Agaram infotech', 'Dot net developer', '2020-02-19', 20000.00, '1970-01-01', 20000.00, 'Chennai', '2', '1 years 1 months', ' Working as a same module', 1, '2021-03-19 08:14:20', 0, NULL, 0, NULL, 1),
(2157, 3934, 'iCore software systems Pvt ltd', 'Digital Marketing', '2020-09-15', 8000.00, '1970-01-01', 8000.00, 'Porur', '2', '0 years 6 months', 'Distance is to long.', 1, '2021-03-20 10:18:45', 0, NULL, 0, NULL, 1),
(2158, 3936, 'Dhl', 'Process associate', '2018-07-25', 12000.00, '2019-12-19', 12000.00, 'Thoraipakkam', '1', '1 years 4 months', ' Minor accident in leg', 1, '2021-03-20 11:34:51', 0, NULL, 0, NULL, 1),
(2159, 3938, 'Tech Mahindra limited', 'Associate Team head', '2019-01-04', 10000.00, '2021-02-26', 10000.00, 'Villivakkam', '1', '2 years 1 months', 'Working at tech Mahindra\nFor experience sand to salary hike \nSalary Getting (10000/m ) ', 1, '2021-03-20 11:48:38', 0, NULL, 0, NULL, 1),
(2160, 3942, 'KOTAK MAHINDRA BANK', 'Sales executive', '2020-11-01', 11000.00, '2021-03-31', 16000.00, 'OMR', '1', '0 years 4 months', ' ', 1, '2021-03-20 01:47:44', 0, NULL, 0, NULL, 1),
(2161, 3943, 'Kliotech Private Limited', 'Junior PHP Developer', '2019-01-21', 25000.00, '2021-03-20', 38000.00, 'Amanjikarai', '2', '2 years 1 months', 'Night shift', 1, '2021-03-20 02:26:54', 0, NULL, 0, NULL, 1),
(2162, 3944, 'teknuance info solution pvt limited', 'ui ux designer intern and  full time', '2019-01-21', 11000.00, '2020-09-07', 18500.00, 'chennai', '1', '1 years 7 months', 'pandemic reason,only half salary credited for 6 months', 1, '2021-03-20 02:52:04', 0, NULL, 0, NULL, 1),
(2163, 3944, 'huge hroup', ' ux designerand developer', '2020-09-21', 25000.00, '1970-01-01', 25000.00, 'coimbatore', '2', '0 years 5 months', 'like to work in chennai', 1, '2021-03-20 02:53:51', 0, NULL, 0, NULL, 1),
(2164, 3945, 'serco bpo pvt ltd', 'csa', '2019-03-03', 11500.00, '1970-01-01', 11500.00, 'gurgaon', '2', '2 years 0 months', ' some personal problem', 1, '2021-03-20 03:05:45', 0, NULL, 0, NULL, 1),
(2165, 3955, 'Dr. Sidhan\'s Herbal Formulations Pvt Ltd Medimix d', 'National Head BD', '2018-10-05', 2100000.00, '1970-01-01', 2100000.00, 'Chennai', '2', '2 years 5 months', ' Winded up the operation', 1, '2021-03-22 10:43:36', 0, NULL, 0, NULL, 1),
(2166, 3947, 'Airwave communication ', 'Relationship officer', '2020-01-06', 13000.00, '2020-12-24', 10000.00, 'Chennai ', '1', '0 years 11 months', 'Shutdown ', 1, '2021-03-22 11:30:10', 0, NULL, 0, NULL, 1),
(2167, 3947, 'Talentpro', 'Officer', '2019-01-15', 10000.00, '2019-11-08', 10000.00, 'Chennai ', '1', '0 years 9 months', 'Prospets', 1, '2021-03-22 11:33:09', 0, NULL, 0, NULL, 1),
(2168, 3958, 'Perpetual cables Pvt limited', 'Account assistant', '2018-03-23', 13000.00, '1970-01-01', 15000.00, 'Maraimalai Nagar', '2', '2 years 11 months', ' ', 1, '2021-03-22 11:50:28', 0, NULL, 0, NULL, 1),
(2169, 3961, 'Allnet business solution', 'Co ordinator ', '2019-04-08', 12000.00, '2020-12-16', 15000.00, 'Greams road', '1', '1 years 8 months', ' Political issue and seniors torture', 1, '2021-03-22 11:51:34', 0, NULL, 0, NULL, 1),
(2170, 3963, 'Faziya fathima', 'Tele calar', '2018-01-29', 18000.00, '1970-01-01', 18000.00, 'T Nagar', '2', '3 years 1 months', ' ', 1, '2021-03-22 12:32:58', 0, NULL, 0, NULL, 1),
(2171, 3967, 'Nettyfish', 'Buisness development executive', '2020-12-11', 18000.00, '2021-03-19', 18000.00, 'Chennai', '1', '0 years 3 months', ' ', 1, '2021-03-22 04:39:46', 0, NULL, 0, NULL, 1),
(2172, 3971, 'Eurekaforbes', 'Sales executive', '2019-12-08', 12000.00, '2021-01-01', 40000.00, 'Porur', '1', '1 years 0 months', ' Family situation', 1, '2021-03-23 10:08:58', 0, NULL, 0, NULL, 1),
(2173, 3975, 'allsec', 'cse', '2020-09-12', 10000.00, '2021-03-16', 11500.00, 'greamsroad', '1', '0 years 6 months', ' Growth', 1, '2021-03-23 10:39:44', 0, NULL, 0, NULL, 1),
(2174, 3976, 'sbi credit', 'cse', '2020-08-16', 10000.00, '2021-02-21', 11000.00, 'chennai', '1', '0 years 6 months', ' Hike', 1, '2021-03-23 10:44:23', 0, NULL, 0, NULL, 1),
(2175, 3977, 'allnet business solutions', 'collection executive', '2018-12-16', 10000.00, '2021-01-15', 14000.00, 'chennai', '1', '2 years 0 months', ' Growth', 1, '2021-03-23 10:49:59', 0, NULL, 0, NULL, 1),
(2176, 3978, 'MBA RETAIL BUSINES SOLUTIONS', 'Project Manager', '2018-02-02', 13500.00, '2020-09-30', 17000.00, 'Chennai ', '1', '2 years 7 months', ' Agency changed ', 1, '2021-03-23 11:05:26', 0, NULL, 0, NULL, 1),
(2177, 3980, 'CAMS', 'Vendor', '2019-06-26', 8500.00, '1970-01-01', 10000.00, 'Chenni', '2', '1 years 8 months', ' Want to gain more knowledge and experience ', 1, '2021-03-23 11:21:19', 0, NULL, 0, NULL, 1),
(2178, 3981, 'REGALIA AIRPORT PRIVATE LIMITED', 'Sales executive', '2016-11-25', 16000.00, '2018-03-23', 18000.00, 'Chennai airport', '1', '1 years 3 months', ' Actually that\'s contract basis Company so I relieved ', 1, '2021-03-23 11:21:22', 0, NULL, 0, NULL, 1),
(2179, 3982, 'Tamil Nadu housing board', 'Junior accountant', '2016-11-01', 9000.00, '2019-07-31', 11000.00, 'Vhennai', '1', '2 years 8 months', ' Married', 1, '2021-03-23 12:05:44', 0, NULL, 0, NULL, 1),
(2180, 3983, 'intelnet glopal service', 'senior customer executive', '2019-02-25', 14500.00, '1970-01-01', 15000.00, 'ambattur', '2', '2 years 0 months', ' ', 1, '2021-03-23 01:46:14', 0, NULL, 0, NULL, 1),
(2181, 3984, 'Micromen software solutions Pvt Ltd', 'Php developer', '2018-06-26', 10000.00, '1970-01-01', 208000.00, 'Adayar', '2', '2 years 8 months', ' Career Growth', 1, '2021-03-23 02:17:57', 0, NULL, 0, NULL, 1),
(2182, 3985, 'Amazon', 'Facility executive', '2018-12-18', 16000.00, '1970-01-01', 19000.00, 'Perungudi', '2', '2 years 3 months', 'Getting the hike from the salary', 1, '2021-03-23 02:42:23', 0, NULL, 0, NULL, 1),
(2183, 3989, 'MOWLEE SOAP INDUSTRIES', 'ZONAL MANAGER', '2020-02-20', 28000.00, '2021-02-25', 28000.00, 'SALEM AND CHENNAI', '1', '1 years 0 months', 'Salary problem ', 1, '2021-03-23 03:25:34', 0, NULL, 0, NULL, 1),
(2184, 3992, 'Brand idea ', 'Coding checker', '2017-04-05', 12.00, '2020-08-07', 13000.00, 'Mylapore', '1', '3 years 4 months', ' ', 1, '2021-03-23 04:03:49', 0, NULL, 0, NULL, 1),
(2185, 3953, 'difa and jai sri kirshna silks', 'assnt sales manger', '2019-07-17', 12000.00, '2021-02-09', 15000.00, 't.nager', '1', '1 years 6 months', 'covid probz', 1, '2021-03-24 11:30:37', 0, NULL, 0, NULL, 1),
(2186, 4002, 'Teleperformance', 'Mis', '2019-11-11', 15000.00, '2021-01-30', 18000.00, 'Ambattur', '1', '1 years 2 months', ' Project close', 1, '2021-03-24 11:59:45', 0, NULL, 0, NULL, 1),
(2187, 4004, 'Nobrokerhood Technologies Pvt Ltd', 'Sr Territory manager', '2019-12-25', 54000.00, '2020-04-27', 54000.00, 'Chennai', '1', '0 years 4 months', ' Due to pandemic lost the job', 1, '2021-03-24 12:05:42', 0, NULL, 0, NULL, 1),
(2188, 4004, 'Think and Learn Pvt ltd', 'Business Development executive', '2018-01-08', 54000.00, '2019-07-31', 54000.00, 'Chennai', '1', '1 years 6 months', 'Got good opportunity in different organisations', 1, '2021-03-24 12:07:09', 0, NULL, 0, NULL, 1),
(2189, 4004, 'Capgemini Technologies Pvt Ltd', 'Sr Consultant', '2016-04-18', 18000.00, '2017-03-31', 18000.00, 'Chennai', '1', '0 years 11 months', 'Contract role', 1, '2021-03-24 12:08:19', 0, NULL, 0, NULL, 1),
(2190, 4004, 'Infosys BPO Ltd', 'Sr Process Executive', '2013-08-05', 10000.00, '2015-06-19', 10000.00, 'banaglore', '1', '1 years 10 months', 'Health issue.', 1, '2021-03-24 12:09:27', 0, NULL, 0, NULL, 1),
(2191, 3994, 'Axis Bank Ltd', 'Officers ', '2017-06-15', 14500.00, '1970-01-01', 17000.00, 'Mylapore', '2', '3 years 9 months', ' Salaried', 1, '2021-03-24 12:16:49', 0, NULL, 0, NULL, 1),
(2192, 4006, 'sbi cards', 'learning and development executive', '2020-07-29', 236000.00, '1970-01-01', 23600.00, 'chennai', '2', '0 years 7 months', 'Salary issue', 1, '2021-03-24 12:20:18', 0, NULL, 0, NULL, 1),
(2193, 3991, 'stats performances', 'data analysis', '2019-06-03', 13250.00, '2020-02-14', 20000.00, 'chennai', '1', '0 years 8 months', ' covid', 1, '2021-03-24 12:22:37', 0, NULL, 0, NULL, 1),
(2194, 4003, 'american express', 'bde', '2019-05-21', 25000.00, '2019-12-30', 25000.00, 'chennai', '1', '0 years 7 months', 'medical issue ', 1, '2021-03-24 12:46:03', 0, NULL, 0, NULL, 1),
(2195, 4011, 'SBI cards', 'Learning and development executive', '2020-11-02', 23000.00, '1970-01-01', 23000.00, 'Chennai', '2', '0 years 4 months', ' Salary Issues', 1, '2021-03-24 12:52:49', 0, NULL, 0, NULL, 1),
(2196, 4012, 'Hdfc bank pvt ltd', 'Data analyst', '2016-04-11', 9500.00, '2017-04-11', 9500.00, 'Adyar', '1', '1 years 0 months', ' For my higher studying', 1, '2021-03-24 01:26:07', 0, NULL, 0, NULL, 1),
(2197, 4013, 'Urjanet energy solution private limited', 'Data analyst', '2019-10-31', 16000.00, '2020-11-27', 16000.00, 'Taramani', '1', '1 years 0 months', ' Due to salary package issue and Delay of salary', 1, '2021-03-24 01:43:37', 0, NULL, 0, NULL, 1),
(2198, 4016, 'HDB fainacial ltd', 'Relationship Manager', '2017-02-20', 17500.00, '1970-01-01', 19500.00, 'Tirupati ', '2', '4 years 1 months', ' No Resone ', 1, '2021-03-24 03:13:51', 0, NULL, 0, NULL, 1),
(2199, 4017, 'Pro Dent and Dental HOSPITAL FAB DENT CAD/CAM & 3D', 'MANAGER', '2019-03-28', 14500.00, '2021-01-04', 15000.00, 'PALAVAKKAM', '1', '1 years 9 months', ' I wanted to experience the another kind of job\'s', 1, '2021-03-24 03:21:16', 0, NULL, 0, NULL, 1),
(2200, 4021, 'max', 'Sr  Cre', '2015-01-27', 8000.00, '2020-06-01', 15500.00, 'Tnagar', '1', '5 years 4 months', ' ', 1, '2021-03-24 03:41:06', 0, NULL, 0, NULL, 1),
(2201, 4020, 'jtn teleshopping', 'sales Executive', '2017-09-10', 13000.00, '2020-03-24', 17000.00, 'iyyanthangal', '1', '2 years 6 months', ' Covid 19', 1, '2021-03-24 05:11:19', 0, NULL, 0, NULL, 1),
(2202, 4034, 'JOYALUKKAS INDIA PVT LTD', 'SALES, MARKETING', '2018-03-09', 15000.00, '2021-01-16', 22000.00, 'T NAGAR', '1', '2 years 10 months', ' PERSONAL', 1, '2021-03-25 10:58:18', 0, NULL, 0, NULL, 1),
(2203, 4033, 'Annexmed', 'AR caller', '2020-01-01', 18000.00, '2021-01-01', 20000.00, 'Velachery', '1', '1 years 0 months', ' Some personal issues', 1, '2021-03-25 11:06:13', 0, NULL, 0, NULL, 1),
(2204, 4038, 'Amazon development centre', 'Digital Associate', '2019-09-16', 230000.00, '1970-01-01', 230000.00, 'Chennai', '2', '1 years 6 months', ' I wanted to utilise my skillsets in a techical stream related to the data stream since i find data is the near future in every aspects', 1, '2021-03-25 11:11:51', 0, NULL, 0, NULL, 1),
(2205, 4036, 'empire management', 'se', '2020-07-09', 12000.00, '2020-11-06', 12000.00, 'arumbakkam', '1', '0 years 3 months', ' salary issue', 1, '2021-03-25 11:24:39', 0, NULL, 0, NULL, 1),
(2206, 4039, 'diversy chemical', 'field officer', '2017-12-17', 15000.00, '2021-01-27', 18000.00, 'chennai', '1', '3 years 1 months', ' ', 1, '2021-03-25 11:58:53', 0, NULL, 0, NULL, 1),
(2207, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:23', 0, NULL, 0, NULL, 1),
(2208, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:23', 0, NULL, 0, NULL, 1),
(2209, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:25', 0, NULL, 0, NULL, 1),
(2210, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:26', 0, NULL, 0, NULL, 1),
(2211, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:26', 0, NULL, 0, NULL, 1),
(2212, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:27', 0, NULL, 0, NULL, 1),
(2213, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:27', 0, NULL, 0, NULL, 1),
(2214, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:28', 0, NULL, 0, NULL, 1),
(2215, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:29', 0, NULL, 0, NULL, 1),
(2216, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:31', 0, NULL, 0, NULL, 1),
(2217, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:33', 0, NULL, 0, NULL, 1),
(2218, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:34', 0, NULL, 0, NULL, 1),
(2219, 4037, 'mess', 'tellingcalling', '2020-01-16', 9000.00, '2020-03-10', 9500.00, 'powerhouse', '1', '0 years 1 months', ' porsenl', 1, '2021-03-25 01:23:35', 0, NULL, 0, NULL, 1),
(2220, 4037, 'Sastha enterprise', 'Tallicall', '2021-01-05', 9500.00, '2021-03-14', 10000.00, 'Ganga nagar', '1', '0 years 2 months', ' ', 1, '2021-03-25 01:39:04', 0, NULL, 0, NULL, 1),
(2221, 4042, 'NDE flaws technology', 'Marketing execute', '2017-08-04', 20000.00, '1970-01-01', 25000.00, 'Chennai', '2', '3 years 7 months', 'No further development in current field.', 1, '2021-03-25 01:41:25', 0, NULL, 0, NULL, 1),
(2222, 4043, 'Miracle brain academy', 'Advertisement', '2019-11-26', 9000.00, '2020-03-20', 9000.00, 'Anna nagar', '1', '0 years 3 months', ' Corana lock down  stop the business', 1, '2021-03-25 01:58:34', 0, NULL, 0, NULL, 1),
(2223, 4048, 'Skylark', 'Hr recruiter', '2021-03-10', 20000.00, '1970-01-01', 25000.00, 'Kk nagar', '2', '0 years 0 months', ' ', 1, '2021-03-25 09:38:50', 1, '2021-03-25 09:40:19', 0, NULL, 0),
(2224, 4048, 'Skylark ', 'Hr recruiter', '2020-09-10', 25000.00, '1970-01-01', 25000.00, 'Kk Nagar', '2', '0 years 6 months', 'For More exposure and good salary package. ', 1, '2021-03-25 09:40:09', 0, NULL, 0, NULL, 1),
(2225, 4050, 'Versatile cards technology', 'Data card operator', '2014-11-03', 9000.00, '2016-06-15', 12000.00, 'Chennai', '1', '1 years 7 months', ' Moved to another field', 1, '2021-03-26 10:21:08', 0, NULL, 0, NULL, 1),
(2226, 4050, 'Laptronics', 'Business development executive', '2017-08-01', 15000.00, '2018-06-15', 15000.00, 'Chennai', '1', '0 years 10 months', 'Not to growth my self', 1, '2021-03-26 10:23:33', 0, NULL, 0, NULL, 1),
(2227, 4050, 'Madras networking company', 'Business development manager', '2018-08-17', 16000.00, '2020-09-30', 28500.00, 'Chennai', '1', '2 years 1 months', 'Covid issue', 1, '2021-03-26 10:25:55', 0, NULL, 0, NULL, 1),
(2228, 4050, 'Dynamic computer services', 'Sr. Solution manager', '2020-10-15', 35000.00, '2021-02-26', 35000.00, 'Chennai', '1', '0 years 4 months', 'Covid issue ', 1, '2021-03-26 10:27:27', 0, NULL, 0, NULL, 1),
(2229, 4055, 'Mass media infotech Pvt ltd', 'HR', '2016-06-07', 4000.00, '2017-08-07', 8000.00, 'Kodambakkam', '1', '1 years 2 months', ' Some Medical issues so I am not perform that platforms', 1, '2021-03-26 11:34:08', 0, NULL, 0, NULL, 1),
(2230, 4055, 'Loocust incorp appearl exports Pvt LTD.', 'Quality controller', '2018-01-05', 8000.00, '2018-09-05', 10000.00, 'Ganapathipalayam,tiruppur', '1', '0 years 8 months', 'Some financial issue to the company so the founder closed that unit.....', 1, '2021-03-26 11:37:04', 0, NULL, 0, NULL, 1),
(2231, 4055, 'Ola fleeting technologies Pvt ltd', 'Driver', '2019-02-02', 12000.00, '2020-01-03', 15000.00, 'Chennai', '1', '0 years 11 months', 'Corona time I am resigning that job but now I don\'t willing to work driving because too much working hours I don\'t have a sleep time...', 1, '2021-03-26 11:40:29', 0, NULL, 0, NULL, 1),
(2232, 4062, 'Idfc first', 'Assistant manager ', '2019-09-15', 28000.00, '2020-11-17', 28000.00, 'Chennai', '1', '1 years 2 months', ' Father seek', 1, '2021-03-26 01:17:18', 0, NULL, 0, NULL, 1),
(2233, 4067, 'Compass pvt ltd', 'Event manager', '2019-04-04', 34000.00, '1970-01-01', 34000.00, 'Mepz', '2', '1 years 11 months', ' Opportunity is been closed die to covid -19', 1, '2021-03-26 03:06:16', 0, NULL, 0, NULL, 1),
(2234, 4069, 'Amen Enterprises ', 'Admin Head and Asst. HR Manager', '2019-03-11', 15000.00, '2020-10-31', 20000.00, 'Tambaram ', '1', '1 years 7 months', ' Office Shut Down due to Covid ', 1, '2021-03-26 03:21:51', 0, NULL, 0, NULL, 1),
(2235, 4072, 'United india insurance', 'Assistant manager', '2015-05-05', 8000.00, '2020-11-10', 22000.00, 'Guindy', '1', '5 years 6 months', ' Due to covid ', 1, '2021-03-27 10:54:49', 0, NULL, 0, NULL, 1),
(2236, 4072, 'United india insurance ', 'Assistant manager', '2015-05-05', 8000.00, '2020-11-10', 22000.00, 'Ambattur', '1', '5 years 6 months', 'Due to covid', 1, '2021-03-27 10:56:55', 0, NULL, 0, NULL, 1),
(2237, 4073, 'Fooddoo', 'Quality analyst', '2019-06-01', 15000.00, '2019-12-30', 15000.00, 'Anna Nagar', '1', '0 years 6 months', ' ', 1, '2021-03-27 11:06:22', 0, NULL, 0, NULL, 1),
(2238, 4076, 'Samsung Kerry indev logistics', 'Loading, unloading, picking, packing, dispatch. ', '2020-07-01', 11500.00, '2021-03-27', 14000.00, 'Numbal', '1', '0 years 8 months', 'Salary issue', 1, '2021-03-27 11:28:52', 0, NULL, 0, NULL, 1),
(2239, 4078, 'REC BOOK BANK ', 'Accounts ', '2019-04-03', 10000.00, '1970-01-01', 12000.00, 'CHENNAI ', '2', '1 years 11 months', ' Salary issue', 1, '2021-03-27 12:46:37', 0, NULL, 0, NULL, 1),
(2240, 4079, 'rubby finacl services', 'doucment collection', '2020-08-25', 16000.00, '2021-02-14', 16000.00, 'chennai', '1', '0 years 5 months', ' ', 1, '2021-03-27 01:31:30', 0, NULL, 0, NULL, 1),
(2241, 4081, '72dpi digital intelligence LLC', 'Web Designer', '2019-04-01', 15000.00, '2020-04-01', 20000.00, 'Chennai', '1', '1 years 0 months', ' Corona problem', 1, '2021-03-27 04:33:22', 0, NULL, 0, NULL, 1),
(2242, 4083, 'Urjanet Energy solution Pvt LTD', 'Senior data analyst', '2016-10-25', 1.00, '2020-09-04', 21000.00, 'Chennai', '1', '3 years 10 months', ' ', 1, '2021-03-27 05:06:27', 0, NULL, 0, NULL, 1),
(2243, 4083, 'Urjanet Energy solution Pvt LTD', 'Senior data analyst', '2016-10-25', 1.00, '2020-09-04', 21000.00, 'Chennai', '1', '3 years 10 months', 'Learn new opportunities and skills', 1, '2021-03-27 05:08:20', 0, NULL, 0, NULL, 1),
(2244, 4082, 'ramco system', 'intership-project trainee', '2020-01-06', 10000.00, '2020-06-30', 10000.00, 'taramani-chennai', '1', '0 years 5 months', ' period of Internship is over', 1, '2021-03-27 07:20:20', 0, NULL, 0, NULL, 1),
(2245, 4087, 'COGNIZANT TECHNOLOGY SOLUTION ', 'Process Executive ', '2020-05-29', 151000.00, '2021-03-19', 151000.00, 'Chennai', '1', '0 years 9 months', ' Health Issue(Night Shift) ', 1, '2021-03-28 11:32:19', 0, NULL, 0, NULL, 1),
(2246, 4091, 'jana small finance', 'sales manager', '2018-11-01', 18000.00, '1970-01-01', 22000.00, 'chennai', '2', '2 years 4 months', ' salary', 1, '2021-03-29 10:10:59', 0, NULL, 0, NULL, 1),
(2247, 4093, 'N Thrive global solutions pvt ltd', 'Sr. Executive', '2018-12-01', 1.00, '2020-09-09', 45000.00, 'chennai', '1', '1 years 9 months', ' Attrition due to Covid19', 1, '2021-03-29 10:56:10', 0, NULL, 0, NULL, 1),
(2248, 4093, 'Ingram Micro India pvt ltd', 'Sr. Associate', '2015-10-01', 1.00, '2018-11-30', 38000.00, 'chennai', '1', '3 years 1 months', 'Attrition due to Management change ', 1, '2021-03-29 10:58:06', 0, NULL, 0, NULL, 1),
(2249, 4092, 'vertex', 'telecaller', '2019-10-15', 14200.00, '2019-12-31', 14200.00, 'perugudi', '1', '0 years 2 months', ' health issues', 1, '2021-03-29 11:19:45', 0, NULL, 0, NULL, 1),
(2250, 4094, 'oyolife', 'cluster manager', '2019-10-07', 20000.00, '2021-03-29', 20000.00, 'chennai', '1', '1 years 5 months', ' salary get proper date', 1, '2021-03-29 12:03:30', 0, NULL, 0, NULL, 1),
(2251, 4102, 's.pe.w', 'vmcpt', '2021-03-14', 30000.00, '2006-09-07', 25000.00, 'padi', '1', '14 years 6 months', 'cloced', 1, '2021-03-29 12:34:15', 0, NULL, 0, NULL, 1),
(2252, 4102, 's.pe.w', 'vmcpt', '2021-03-14', 30000.00, '2006-09-07', 25000.00, 'padi', '1', '14 years 6 months', 'cloced', 1, '2021-03-29 12:34:16', 0, NULL, 0, NULL, 1),
(2253, 4099, 'International trade Links', 'Hr co-ordinator', '2019-03-15', 15000.00, '2021-02-23', 16000.00, 'Egmore', '1', '1 years 11 months', ' ', 1, '2021-03-29 12:54:41', 0, NULL, 0, NULL, 1),
(2254, 4099, 'International trade links', 'Hr coordinator', '2019-03-21', 15000.00, '2021-02-20', 16000.00, 'Egmore', '1', '1 years 10 months', 'Corona issues', 1, '2021-03-29 12:56:10', 0, NULL, 0, NULL, 1),
(2255, 4106, 'Scope e-knowledge Center Pvt Ltd', 'Sr. Web Analyst', '2017-09-01', 10000.00, '2021-03-08', 12000.00, 'Nandhambakkam', '1', '3 years 6 months', ' Mother\'s Health Illness', 1, '2021-03-29 01:04:50', 0, NULL, 0, NULL, 1),
(2256, 4105, 'poorvika mobiles pvt ltd', 'sales excuate', '2018-01-14', 20000.00, '2020-11-18', 23500.00, 'chenglpettu', '1', '2 years 10 months', ' covid 19', 1, '2021-03-29 01:16:35', 0, NULL, 0, NULL, 1),
(2257, 4105, 'poorvika mobiles pvt ltd', 'sales excuate', '2018-01-14', 20000.00, '2020-11-18', 23500.00, 'chenglpettu', '1', '2 years 10 months', ' covid 19', 1, '2021-03-29 01:16:35', 0, NULL, 0, NULL, 1),
(2258, 4107, 'OYO', 'SENIOR GUEST RELATIONS EXCUTIVE ', '2019-12-20', 10500.00, '2020-12-20', 11500.00, 'Nungabaakkam', '1', '1 years 0 months', ' For Higher studies', 1, '2021-03-29 01:32:52', 0, NULL, 0, NULL, 1),
(2259, 600, 'spew', 'v m c o p t', '2021-03-29', 230000.00, '2029-08-09', 40000.00, 'ambattur', '1', '8 years 4 months', '  problemsom', 1, '2021-03-29 02:53:30', 0, NULL, 0, NULL, 1),
(2260, 4118, 'Padmashri priya.A', 'Mutual fund', '2019-11-09', 8000.00, '1970-01-01', 11000.00, 'Spencer plaza', '2', '1 years 4 months', ' Low salary packing', 1, '2021-03-30 09:44:41', 0, NULL, 0, NULL, 1),
(2261, 4120, 'Inovera infotech', 'Pammal', '2019-07-20', 12000.00, '1970-01-01', 15000.00, 'Pallavaram', '2', '1 years 8 months', 'Not comfortable for traveling from home to office...etc..,', 1, '2021-03-30 11:00:19', 0, NULL, 0, NULL, 1),
(2262, 4126, 'natwest group', 'customer service and operations analyst', '2018-06-25', 18200.00, '2021-01-02', 23300.00, 'chennai', '1', '2 years 6 months', ' For better opportunities ', 1, '2021-03-30 11:34:17', 0, NULL, 0, NULL, 1),
(2263, 4122, 'Sangam Tube Corporation ', 'Colloction', '2017-07-01', 14000.00, '2021-02-28', 14000.00, 'Manali', '1', '3 years 7 months', ' Campany Shift To kerala', 1, '2021-03-30 11:35:28', 0, NULL, 0, NULL, 1),
(2264, 4128, 'Sulekha.com new Media private limited', 'SEO Analyst', '2018-11-19', 19000.00, '2020-07-01', 23000.00, 'Perungudi', '1', '1 years 7 months', ' Reduced salary', 1, '2021-03-30 11:49:33', 0, NULL, 0, NULL, 1),
(2265, 4130, 'Cars24 ', 'Retail associate ', '2020-03-30', 16000.00, '2021-01-23', 18000.00, 'Anna nagar ', '1', '0 years 9 months', ' I want better job', 1, '2021-03-30 12:09:37', 0, NULL, 0, NULL, 1),
(2266, 4113, 'Yamaha showroom - part time ', 'Admin', '2019-07-08', 4000.00, '2020-01-17', 4000.00, 'Sithalapakkam', '1', '0 years 6 months', ' Due to college timing ', 1, '2021-03-30 12:44:18', 0, NULL, 0, NULL, 1),
(2267, 4136, 'urbaser', 'iec', '2020-02-01', 17000.00, '2021-02-02', 17000.00, 'nugabakam', '1', '1 years 0 months', ' Dute  to clg time', 1, '2021-03-30 12:44:40', 0, NULL, 0, NULL, 1),
(2268, 4133, 'ford motor pvt ltd', 'team member ', '2016-04-25', 16000.00, '2019-05-10', 20000.00, 'chennai', '1', '3 years 0 months', ' father health issue ', 1, '2021-03-30 01:07:35', 0, NULL, 0, NULL, 1),
(2269, 4150, 'Equtias small finance bank', 'Executive', '2019-01-08', 8500.00, '2021-04-20', 9000.00, 'Monir road', '1', '2 years 3 months', ' Not satisfied salary so I relieving reason', 1, '2021-03-31 09:37:22', 0, NULL, 0, NULL, 1),
(2270, 4153, 'Udaan', 'Team Leader', '2000-01-02', 26.00, '2020-09-30', 36.00, 'Perambur', '1', '20 years 8 months', ' Corona ', 1, '2021-03-31 10:46:47', 0, NULL, 0, NULL, 1),
(2271, 4154, 'American Express services pvt ltd', 'Business development executive', '2018-12-22', 24000.00, '2020-06-15', 24000.00, 'Mylapore', '1', '1 years 5 months', ' Corona', 1, '2021-03-31 10:55:12', 0, NULL, 0, NULL, 1),
(2272, 4154, 'American Express services pvt ltd', 'Business development executive', '2018-12-22', 24000.00, '2020-06-15', 24000.00, 'Mylapore', '1', '1 years 5 months', 'Corona lockdown', 1, '2021-03-31 10:58:45', 0, NULL, 0, NULL, 1),
(2273, 4155, 'updater service pvt ltd', 'field officer', '2018-04-18', 15000.00, '1970-01-01', 18000.00, 'chennai', '2', '2 years 11 months', ' salary', 1, '2021-03-31 11:20:39', 0, NULL, 0, NULL, 1),
(2274, 4162, 'Icici bank ', 'Personal loan sales', '2019-12-09', 12000.00, '1970-01-01', 12000.00, 'Chennai ', '2', '1 years 3 months', ' Salary not good', 1, '2021-03-31 11:43:32', 0, NULL, 0, NULL, 1),
(2275, 4161, 'HDB FINANCIAL SERVICES', 'Processor', '2019-03-01', 11500.00, '2021-04-01', 11500.00, 'Chennai greems road', '1', '2 years 1 months', ' For  My growth', 1, '2021-03-31 11:46:20', 0, NULL, 0, NULL, 1),
(2276, 4156, 'relaiable ', 'customer support executive', '2019-08-05', 14000.00, '2020-03-11', 14000.00, 'sholinganaloor ', '1', '0 years 7 months', ' process got rammed down ', 1, '2021-03-31 12:14:35', 0, NULL, 0, NULL, 1),
(2277, 4166, 'Nova building system', 'marketing executive', '2019-12-05', 12000.00, '2021-03-31', 18000.00, 'maduravoyal', '1', '1 years 3 months', ' Not Interested', 1, '2021-03-31 12:21:19', 0, NULL, 0, NULL, 1),
(2278, 4165, 'Arul', 'Mfi', '2017-02-16', 15000.00, '2020-04-01', 15000.00, 'Vedaranyam', '1', '3 years 1 months', ' ', 1, '2021-03-31 12:47:13', 0, NULL, 0, NULL, 1),
(2279, 4167, 'CPG', 'Associate ', '2014-03-26', 10000.00, '2015-07-08', 20000.00, 'Chennai', '1', '1 years 3 months', ' ', 1, '2021-03-31 03:00:14', 0, NULL, 0, NULL, 1),
(2280, 4167, 'IGS', 'Sr customer service executive', '2016-07-25', 20000.00, '2019-01-03', 20000.00, 'Chennai', '1', '2 years 5 months', 'Business', 1, '2021-03-31 03:02:57', 0, NULL, 0, NULL, 1),
(2281, 4172, 'Efficienza', 'php developer', '2019-02-25', 20000.00, '1970-01-01', 20000.00, 'chennai', '2', '2 years 1 months', ' ', 1, '2021-03-31 04:36:55', 0, NULL, 0, NULL, 1),
(2282, 4145, 'Vishala designs and software solutions', 'Web designer', '2019-06-17', 12000.00, '2021-03-31', 15000.00, 'Chennai', '1', '1 years 9 months', ' They are planning to close', 1, '2021-03-31 10:56:08', 0, NULL, 0, NULL, 1),
(2283, 4178, 'bright staffing solution llp', 'data entry operator', '2020-11-18', 13000.00, '1970-01-01', 15000.00, 'chennai', '2', '0 years 4 months', ' this is an contractual position', 1, '2021-04-01 12:10:54', 0, NULL, 0, NULL, 1),
(2284, 4178, 'rajkumar sulochana matric higher secondary school', 'trained graduate teacher', '2018-05-21', 9000.00, '2019-04-30', 9000.00, 'chennai', '1', '0 years 11 months', 'better carrier opportunity', 1, '2021-04-01 12:12:14', 0, NULL, 0, NULL, 1),
(2285, 4184, 'Accenture', 'TPRA', '2017-07-31', 12000.00, '2019-02-18', 16000.00, 'Chennai', '1', '3 years 8 months', ' i need to pay attention to my parents health so I choosed to releive.', 1, '2021-04-01 02:10:06', 1, '2021-04-01 02:56:59', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2286, 4185, 'kloud works pvt ltd', 'react developer', '2020-10-27', 12500.00, '1970-01-01', 12500.00, 'chennai', '2', '0 years 5 months', 'some misunderstanding  with other team team.', 1, '2021-04-01 02:43:38', 0, NULL, 0, NULL, 1),
(2287, 4184, 'MDRF', 'Research operation', '2019-09-19', 2.00, '2020-08-01', 2.00, 'Chennai', '1', '0 years 10 months', 'Due to the pandemic i had paid salary of about 50 % and they asked me to come on lockdown period of covid started months. Once I heared that my organization is going to lay off if the project is completed and  i choosed to resign and started learning front end developing on my own.', 1, '2021-04-01 02:53:53', 0, NULL, 0, NULL, 1),
(2288, 4186, 'JAGAN R', 'PHP developer', '2016-05-27', 6000.00, '2017-08-25', 10000.00, 'Chennai', '1', '1 years 2 months', ' Improved my skills and next level....', 1, '2021-04-01 03:02:26', 0, NULL, 0, NULL, 1),
(2289, 4182, 'amazon', 'quality assurance associate', '2019-07-10', 230000.00, '2020-12-15', 250000.00, 'chennai', '1', '1 years 5 months', ' health issue', 1, '2021-04-01 04:30:37', 0, NULL, 0, NULL, 1),
(2290, 4192, 'Dk intellectual services', 'Php developer', '2020-03-15', 18000.00, '2021-03-25', 20000.00, 'Thuraipakkam chennai', '1', '1 years 0 months', ' ', 1, '2021-04-01 06:30:50', 0, NULL, 0, NULL, 1),
(2291, 4195, 'jana small finance', 'business development executive', '2019-12-18', 18000.00, '2021-01-12', 20000.00, 'chennai', '1', '1 years 0 months', ' ', 1, '2021-04-02 02:15:51', 0, NULL, 0, NULL, 1),
(2292, 4196, 'DILLIRAJ S', 'Sales executive', '2015-09-01', 12000.00, '1970-01-01', 14500.00, 'Chennai ', '2', '5 years 7 months', 'No salary hike, ', 1, '2021-04-03 11:28:47', 0, NULL, 0, NULL, 1),
(2293, 4191, 'buraq software solution pvt ltd', 'front end developer shopify', '2021-04-05', 16000.00, '1970-01-01', 25000.00, 'ilayangudi tamil nadu', '2', '0 years 0 months', ' i Am Living in chennai. So i am looking for job in chennai. Since my Current office is Relocated to ilayangudi so i am looking for job in chennai', 1, '2021-04-05 10:24:14', 0, NULL, 0, NULL, 1),
(2294, 4201, 'Byjus app', 'BDA', '2020-05-06', 25000.00, '1970-01-01', 43600.00, 'Chennai ', '2', '0 years 10 months', ' Career growth', 1, '2021-04-05 10:26:12', 0, NULL, 0, NULL, 1),
(2295, 4202, 'LogisAll ind Pvt LTD', 'Senior sales associate', '2018-11-05', 25000.00, '2021-02-05', 25000.00, 'Velappanchavadi', '1', '2 years 3 months', ' ', 1, '2021-04-05 10:32:26', 0, NULL, 0, NULL, 1),
(2296, 4200, 'Apex Covantage India Pvt Ltd', 'Data Analayst', '2018-05-14', 10000.00, '1970-01-01', 20000.00, 'Chennai', '2', '2 years 10 months', ' Salary Hike issue and no growth in future', 1, '2021-04-05 10:37:13', 0, NULL, 0, NULL, 1),
(2297, 4200, 'Infomes Digital  Automation ', 'Field Work And Sales', '2016-04-15', 12000.00, '2018-04-30', 15500.00, 'Chennai', '1', '2 years 0 months', 'Personal helath issue', 1, '2021-04-05 10:39:46', 0, NULL, 0, NULL, 1),
(2298, 4203, 'Interlog services Pvt limited', 'Junior auditor', '2018-08-31', 15000.00, '2021-02-26', 15900.00, 'Adyar', '1', '2 years 5 months', ' No promotion given', 1, '2021-04-05 10:48:32', 0, NULL, 0, NULL, 1),
(2299, 4204, 'Image infotainment limited', 'Fashion faculty ', '2018-02-12', 17500.00, '2021-02-25', 18500.00, 'Chennai ', '1', '3 years 0 months', ' ', 1, '2021-04-05 11:15:03', 0, NULL, 0, NULL, 1),
(2300, 4208, 'Einstro technical services', 'Data operator', '2019-06-03', 10000.00, '2021-03-31', 8500.00, 'Ptc thoripakkam', '1', '1 years 9 months', ' Because of location changed ', 1, '2021-04-05 11:53:39', 0, NULL, 0, NULL, 1),
(2301, 4207, 'Vizza health insurance', 'Senior telecaller ', '2020-07-07', 10000.00, '2021-04-10', 10000.00, 'Kodambakkam', '1', '0 years 9 months', ' Some personal issue ', 1, '2021-04-05 12:14:00', 0, NULL, 0, NULL, 1),
(2302, 4181, 'hdfc ergo general insurance', 'tele caller', '2016-05-10', 10000.00, '2017-11-05', 15000.00, 'chennai', '1', '1 years 5 months', ' career growth', 1, '2021-04-05 12:32:29', 0, NULL, 0, NULL, 1),
(2303, 4181, 'enrich commodity', 'relationship manager', '2019-01-10', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '2 years 2 months', 'career growth', 1, '2021-04-05 12:33:28', 0, NULL, 0, NULL, 1),
(2304, 4205, 'Computer Age management services limited', 'Assistant processing officer', '2017-07-06', 9000.00, '1970-01-01', 12000.00, 'Chennai', '2', '3 years 8 months', ' Career growth', 1, '2021-04-05 12:47:28', 0, NULL, 0, NULL, 1),
(2305, 4217, 'Aarunya associates ', 'Telle caller', '2021-01-20', 15000.00, '2021-04-05', 15000.00, 'Dashamprakash', '2', '0 years 2 months', ' Lots of partiallity\nNo motivation for hardworking', 1, '2021-04-05 01:08:47', 0, NULL, 0, NULL, 1),
(2306, 4215, 'UDAAN PRIVATE LIMITED', 'BUSINESS DEVELOPMENT EXECUTIVE', '2019-02-06', 22000.00, '2021-01-10', 26000.00, 'Chennai', '1', '1 years 11 months', ' ', 1, '2021-04-05 01:12:56', 0, NULL, 0, NULL, 1),
(2307, 4217, 'Gvs enterprises', 'Accountant and overall managing', '2020-06-17', 17500.00, '2021-01-14', 19000.00, 'Maduravoyal', '1', '0 years 6 months', 'Distance and timing issue', 1, '2021-04-05 01:13:14', 0, NULL, 0, NULL, 1),
(2308, 4212, 'UDAAN PVT', 'BDE', '2019-06-03', 22000.00, '2020-10-04', 26000.00, 'CHENNAI', '1', '1 years 4 months', '  ', 1, '2021-04-05 01:15:40', 0, NULL, 0, NULL, 1),
(2309, 4216, 'Arunya associate', 'Back end', '2020-07-15', 13000.00, '1970-01-01', 15000.00, 'Dashamprakash', '2', '0 years 8 months', ' Lots of face partiallity', 1, '2021-04-05 01:19:40', 0, NULL, 0, NULL, 1),
(2310, 3970, 'adeeb group ', 'customer care ', '2018-05-01', 70000.00, '2020-07-21', 70000.00, 'abu dhabi ', '1', '2 years 2 months', ' Corona issues ', 1, '2021-04-05 03:00:34', 0, NULL, 0, NULL, 1),
(2311, 4228, 'Allsec', 'Csr', '2018-09-24', 11000.00, '2019-07-17', 14000.00, 'Velachery', '1', '0 years 9 months', ' Night shift', 1, '2021-04-05 05:12:11', 0, NULL, 0, NULL, 1),
(2312, 4229, 'karviyl digiconnect', 'telecaller', '2019-07-18', 10000.00, '1970-01-01', 11000.00, 'bangalore', '2', '1 years 8 months', ' salary', 1, '2021-04-07 09:22:19', 0, NULL, 0, NULL, 1),
(2313, 4230, 'trigo quality production', 'trainee hr', '2020-07-27', 13000.00, '1970-01-01', 13000.00, 'padappai', '2', '0 years 8 months', ' nearly 28 kilometre from home', 1, '2021-04-07 10:49:18', 0, NULL, 0, NULL, 1),
(2314, 4235, 'Exide life insurance ', 'Agency development manager', '2020-02-11', 30780.00, '2020-08-18', 31680.00, 'Amjakari', '1', '0 years 6 months', 'My hand is broken ', 1, '2021-04-07 11:10:13', 1, '2021-04-07 11:11:14', 0, NULL, 1),
(2315, 4236, 'Computer Age Management services Ltd', 'Assistant Processing officer', '2017-03-16', 9000.00, '2020-11-07', 12150.00, 'Chennai', '1', '3 years 7 months', ' Regular night shift', 1, '2021-04-07 11:13:31', 1, '2021-04-07 11:14:05', 0, NULL, 0),
(2316, 4236, 'Computer Age Management services Ltd', 'Assistant Processing officer', '2017-03-16', 9000.00, '2020-11-07', 12150.00, 'Chennai', '1', '3 years 7 months', 'Regular night shift', 1, '2021-04-07 11:15:42', 0, NULL, 0, NULL, 1),
(2317, 4238, 'Airtel ', 'Team leader', '2010-01-01', 17500.00, '1970-01-01', 22000.00, 'Omr', '2', '11 years 3 months', ' ', 1, '2021-04-07 11:17:00', 0, NULL, 0, NULL, 1),
(2318, 4237, 'Jio', 'Sales executive officer', '2019-02-05', 22000.00, '2021-01-01', 28000.00, 'Chrompet', '1', '1 years 10 months', ' Too long for me', 1, '2021-04-07 11:24:52', 0, NULL, 0, NULL, 1),
(2319, 4240, 'Matrimony.com', 'Telemarketing executive', '2020-09-08', 12000.00, '2021-03-31', 12000.00, 'Chennai', '1', '0 years 6 months', 'Office time extended and there is no week off', 1, '2021-04-07 11:40:00', 0, NULL, 0, NULL, 1),
(2320, 4255, 'Iqlitz technology', 'Ui developer', '2017-09-01', 14000.00, '2019-10-01', 22000.00, 'Coimbatore', '1', '2 years 0 months', ' Health issues', 1, '2021-04-07 05:09:38', 0, NULL, 0, NULL, 1),
(2321, 4256, 'Mentories professional serivice', 'Processs Associate', '2019-09-13', 11000.00, '1970-01-01', 14000.00, 'Chennai', '2', '1 years 6 months', ' Carrier growth', 1, '2021-04-07 05:26:55', 0, NULL, 0, NULL, 1),
(2322, 4260, 'Byju\'s', 'Business development associate', '2020-09-29', 38000.00, '2021-04-07', 38000.00, 'Chennai', '2', '0 years 6 months', ' Carrier growth', 1, '2021-04-07 09:03:22', 0, NULL, 0, NULL, 1),
(2323, 4270, 'CDCE Institute of Automation & Robotics', 'Front office Admin', '2016-08-02', 15000.00, '2019-07-31', 18000.00, 'Avadi', '1', '2 years 11 months', ' Department moved to Kancheepuram. Long distance', 1, '2021-04-08 10:23:01', 0, NULL, 0, NULL, 1),
(2324, 4273, 'HDB FINANCIAL SERVICES', 'Jr. HR Generalist', '2019-08-01', 14333.00, '2020-01-11', 14333.00, 'Chennai', '1', '0 years 5 months', ' ', 1, '2021-04-08 10:42:45', 0, NULL, 0, NULL, 1),
(2325, 4274, 'CA rangan n kannan', 'Accounts assistant', '2018-05-03', 5500.00, '1970-01-01', 22500.00, 'Nungambakkam', '2', '2 years 11 months', ' To develop my career', 1, '2021-04-08 10:56:57', 0, NULL, 0, NULL, 1),
(2326, 4286, 'Finnew Solutions Pvt Ltd', 'Territory Sales Manager ', '2018-10-29', 75000.00, '2020-06-29', 75000.00, 'Chennai', '1', '1 years 8 months', ' Due to pandemic', 1, '2021-04-08 03:08:23', 0, NULL, 0, NULL, 1),
(2327, 4289, 'Hipl', 'Telecaller', '2020-06-05', 12000.00, '2020-12-06', 17000.00, 'Virugambakkam', '1', '0 years 6 months', '..', 1, '2021-04-08 03:34:48', 0, NULL, 0, NULL, 1),
(2328, 4287, 'nature mart', 'telecaller', '2020-08-01', 10000.00, '2020-12-10', 10000.00, 'royapetah', '1', '0 years 4 months', 'TRAVEL DISTANCE ', 1, '2021-04-08 03:35:03', 0, NULL, 0, NULL, 1),
(2329, 4295, 'Tech Mahindra', 'Associate customer support', '2019-02-04', 9736.00, '2019-05-31', 9736.00, 'Chennai', '1', '0 years 3 months', ' Due to personal reasons', 1, '2021-04-08 06:44:39', 0, NULL, 0, NULL, 1),
(2330, 4297, 'Trayee business solutions Pvt LTD', 'Process executive', '2018-09-28', 9910.00, '2020-08-31', 10500.00, 'pattinapakkam', '1', '1 years 11 months', ' Covid 19 and I have personal health issues', 1, '2021-04-08 07:46:42', 0, NULL, 0, NULL, 1),
(2331, 4301, 'IM Gear\'s  company', 'Quality checking', '2017-11-15', 12000.00, '2021-04-09', 12000.00, 'Vedanthangal', '1', '3 years 4 months', ' Search for another Job....\n', 1, '2021-04-09 11:17:28', 0, NULL, 0, NULL, 1),
(2332, 4302, 'vibetal solutions', 'field sales officer', '2020-09-01', 10000.00, '2021-02-28', 10000.00, 'mylapore', '1', '0 years 5 months', 'salary delay ', 1, '2021-04-09 11:26:12', 0, NULL, 0, NULL, 1),
(2333, 4306, 'allset private limited', 'quality checking', '2019-03-05', 12000.00, '2021-03-08', 15000.00, 'chennai', '1', '2 years 0 months', ' family issue ', 1, '2021-04-09 11:58:04', 0, NULL, 0, NULL, 1),
(2334, 4308, 'kalyanasundharam associates', 'audit executive', '2013-08-12', 8000.00, '2015-02-28', 8500.00, 'mylapore', '1', '1 years 6 months', ' got new job', 1, '2021-04-09 12:17:22', 0, NULL, 0, NULL, 1),
(2335, 4308, 'janaswamy associates', 'audit executive', '2016-01-06', 12000.00, '2018-07-31', 12000.00, 't.nagar', '1', '2 years 6 months', 'need a break', 1, '2021-04-09 12:19:26', 0, NULL, 0, NULL, 1),
(2336, 4305, 'Aditya Birla finance limited', 'Officer', '2017-03-06', 8500.00, '2021-03-31', 13500.00, 'Guindy', '1', '4 years 0 months', ' Not enough for Salary and working location to long', 1, '2021-04-09 12:26:28', 0, NULL, 0, NULL, 1),
(2337, 4298, 'Reliable business solutions and services', 'Customer support executive', '2020-07-21', 8500.00, '2021-01-10', 10000.00, 'Sholinganallur', '1', '0 years 5 months', ' Process Down', 1, '2021-04-09 12:33:06', 0, NULL, 0, NULL, 1),
(2338, 4311, 'star health', 'crm', '2019-03-01', 9.50, '2019-09-10', 16000.00, 'anna nagar', '1', '0 years 6 months', ' marriage', 1, '2021-04-09 02:44:34', 0, NULL, 0, NULL, 1),
(2339, 4311, 'sbi', 'crm', '2019-09-01', 16000.00, '2020-12-10', 16000.00, 'kk nagar', '1', '1 years 3 months', 'timing issues', 1, '2021-04-09 02:46:07', 0, NULL, 0, NULL, 1),
(2340, 4319, 'scode software solution', 'Junior php developer', '2020-03-16', 8000.00, '1970-01-01', 12000.00, 'cuddalore', '2', '1 years 0 months', ' ', 1, '2021-04-10 06:42:32', 0, NULL, 0, NULL, 1),
(2341, 4319, 'milkyway global service pvt ltd', 'data analyst', '2017-08-10', 8000.00, '2019-03-15', 10000.00, 'chidambaram', '1', '1 years 7 months', '\ndream job got', 1, '2021-04-10 06:44:44', 0, NULL, 0, NULL, 1),
(2342, 4320, 'HDB FINANCIAL SERVICE', 'SSO', '2018-10-02', 10000.00, '2020-12-10', 11500.00, 'PORUR SATHYA', '1', '2 years 2 months', ' SALARY ISSUE', 1, '2021-04-10 10:33:18', 0, NULL, 0, NULL, 1),
(2343, 4321, 'Karvy data management', 'Telecaller', '2019-02-20', 11500.00, '1970-01-01', 12800.00, 'Velachery', '2', '2 years 1 months', 'Procces closed', 1, '2021-04-10 10:33:44', 0, NULL, 0, NULL, 1),
(2344, 4321, 'Karvy data management', 'Telecaller', '2019-03-20', 11500.00, '1970-01-01', 12800.00, 'Velachery', '2', '2 years 0 months', 'Procces closed', 1, '2021-04-10 10:35:07', 0, NULL, 0, NULL, 1),
(2345, 4326, 'Hathway ', 'Tellecaller', '2020-02-20', 14000.00, '2020-06-03', 14000.00, 'Kodambakkam', '1', '0 years 3 months', ' Lockdown', 1, '2021-04-10 11:09:00', 0, NULL, 0, NULL, 1),
(2346, 4322, 'nalangam private limited', 'operation executive', '2018-09-05', 10000.00, '2019-10-05', 10000.00, 'virugambakkam', '1', '1 years 1 months', ' ', 1, '2021-04-10 11:09:30', 0, NULL, 0, NULL, 1),
(2347, 4322, 'stock market', 'trader', '2019-12-01', 15000.00, '2021-04-01', 15000.00, 'new perungalathur', '1', '1 years 4 months', 'nil', 1, '2021-04-10 11:11:59', 0, NULL, 0, NULL, 1),
(2348, 4327, 'Northerly automotive solution Pvt ltd', 'Operation executive tellecaller', '2019-09-11', 14000.00, '2020-12-16', 14000.00, 'Nungambakkam', '1', '1 years 3 months', 'Lockdown', 1, '2021-04-10 11:16:38', 0, NULL, 0, NULL, 1),
(2349, 4328, 'Maitra wealth management Pvt Ltd', 'Business development manager', '2018-07-02', 20000.00, '2021-03-02', 25000.00, 'Chennai', '1', '2 years 8 months', ' Dear sir/Madam \nI need to growth and improve my profile  ', 1, '2021-04-10 11:29:29', 0, NULL, 0, NULL, 1),
(2350, 4293, 'Ics private limited', 'Chrompet', '2020-07-20', 8500.00, '2021-02-16', 4000.00, 'Chennai', '1', '0 years 6 months', ' ', 1, '2021-04-10 11:32:13', 0, NULL, 0, NULL, 1),
(2351, 4329, 'Hindustan Unilever', 'Salespromoter', '2020-02-12', 10.00, '2020-06-30', 10.00, 'Chennai', '1', '0 years 4 months', ' Lockdown', 1, '2021-04-10 11:37:49', 0, NULL, 0, NULL, 1),
(2352, 4334, 'jana', 'bde', '2020-07-01', 25000.00, '2021-02-28', 28000.00, 'chennai', '1', '0 years 7 months', ' personal issue', 1, '2021-04-10 01:38:24', 0, NULL, 0, NULL, 1),
(2353, 4337, 'Infosys BPM', 'Senior process executive', '2018-09-17', 17334.00, '2021-02-05', 17334.00, 'Chennai', '1', '2 years 4 months', ' Looking for opportunities in investment field ', 1, '2021-04-10 03:02:44', 0, NULL, 0, NULL, 1),
(2354, 4336, ' Krg technology', 'Sr. Technical recuriter', '2019-12-16', 25000.00, '2020-09-05', 25000.00, 'Numgambakkam', '1', '0 years 8 months', ' Due to night shift', 1, '2021-04-10 03:11:39', 0, NULL, 0, NULL, 1),
(2355, 4340, 'Neuralnet Datascience Pvt Ltd', 'Reporting Analyst', '2018-03-15', 16000.00, '2020-03-31', 3000.00, 'Bangalore', '1', '2 years 0 months', ' ', 1, '2021-04-10 10:22:13', 0, NULL, 0, NULL, 1),
(2356, 4338, 'HCL Technologies', 'Associate', '2018-07-09', 12000.00, '2021-04-06', 15000.00, 'Ambattur', '1', '2 years 8 months', ' Salary hike', 1, '2021-04-11 03:23:57', 0, NULL, 0, NULL, 1),
(2357, 4348, 'Maitra commodities Pvt Ltd', 'Business development manager', '2018-07-02', 25.00, '2021-03-02', 25000.00, 'Chennai', '1', '2 years 8 months', ' I need growth and improve my skills and profile', 1, '2021-04-12 10:40:29', 0, NULL, 0, NULL, 1),
(2358, 4350, 'Everest global trade', 'Equity dealer', '2019-09-02', 10000.00, '2021-02-26', 15000.00, 'Madurai', '1', '1 years 5 months', 'I Couldn\'t see any personal improvement over there and also I wanted to take up tasks that challenges me and improve my skills.', 1, '2021-04-12 10:57:53', 0, NULL, 0, NULL, 1),
(2359, 4349, 'Fortune capital services pvt ltd', 'Dealer', '2019-04-01', 12000.00, '1970-01-01', 12000.00, 'Ambathur', '2', '2 years 0 months', ' No increment', 1, '2021-04-12 11:08:55', 0, NULL, 0, NULL, 1),
(2360, 4355, 'value bright consult pvt.ltd ', 'data entry operator ', '2014-01-02', 7000.00, '2018-02-01', 10000.00, 'chennai', '1', '4 years 0 months', ' salary not saticfied', 1, '2021-04-12 11:54:14', 0, NULL, 0, NULL, 1),
(2361, 4355, 'e2e chain supply solution limited', 'junior internal audit ', '2018-03-01', 10500.00, '2020-07-15', 12000.00, 'chennai ', '1', '2 years 4 months', 'corana issues company loss facing  man power lesses them so.. leaving the company ', 1, '2021-04-12 11:57:18', 0, NULL, 0, NULL, 1),
(2362, 4364, 'Sutherland', 'Consultant', '2015-09-22', 1.80, '2016-10-18', 1.80, 'Chennai', '1', '1 years 0 months', ' Health issue', 1, '2021-04-12 12:29:50', 0, NULL, 0, NULL, 1),
(2363, 4364, 'Maersk global services', 'Senior associate', '2017-05-06', 2.10, '2018-06-08', 2.10, 'Chennai', '1', '1 years 1 months', 'Father passed away went back to my native', 1, '2021-04-12 12:31:43', 0, NULL, 0, NULL, 1),
(2364, 4364, 'Atos', 'Senior associate', '2018-10-11', 2.40, '1970-01-01', 2.75, 'Chennai', '2', '2 years 6 months', 'Not yet releived', 1, '2021-04-12 12:32:46', 0, NULL, 0, NULL, 1),
(2365, 4363, 'Allset business solutions ', 'Customer support executive ', '2019-04-12', 13000.00, '2021-09-23', 13000.00, 'Thousand light', '1', '2 years 5 months', ' Personal ', 1, '2021-04-12 12:42:42', 0, NULL, 0, NULL, 1),
(2366, 4368, 'Neeyamo Enterprise Solutions Pvt Ltd', 'Associate Team Lead - Data Analysis/MIS', '2019-07-01', 300000.00, '2020-10-30', 300000.00, 'Madurai', '1', '1 years 3 months', ' Project taken off by the client', 1, '2021-04-12 01:26:08', 0, NULL, 0, NULL, 1),
(2367, 4365, 'Hathway', 'Sales', '2020-01-01', 15000.00, '2021-02-16', 15000.00, 'Valluvar kottam', '1', '1 years 1 months', ' ', 1, '2021-04-12 01:27:23', 0, NULL, 0, NULL, 1),
(2368, 4365, 'HDB', 'Collection', '2018-08-27', 9000.00, '2019-09-13', 15000.00, 'Thousand light', '1', '1 years 0 months', 'Some health problems', 1, '2021-04-12 01:31:03', 0, NULL, 0, NULL, 1),
(2369, 4367, 'Zebronics pvt lmt', 'Service ordinator', '2020-09-21', 15000.00, '2021-03-31', 15000.00, 'Vepery', '1', '0 years 6 months', ' ', 1, '2021-04-12 01:56:53', 0, NULL, 0, NULL, 1),
(2370, 4372, 'capstone ', 'risk analyst', '2017-05-01', 40.00, '2018-12-12', 40.00, 'pune', '1', '1 years 7 months', ' Looking for new job', 1, '2021-04-12 04:05:50', 0, NULL, 0, NULL, 1),
(2371, 4372, ' capatone', 'risk analyst', '2017-05-01', 25000.00, '2018-12-12', 40000.00, 'pune', '1', '1 years 7 months', 'Due to personal', 1, '2021-04-12 04:08:08', 0, NULL, 0, NULL, 1),
(2372, 4384, 'Angel broking ', 'Relationship officer cum dealer ', '2019-01-02', 15000.00, '2020-12-31', 18000.00, 'Madurai', '1', '1 years 11 months', ' Personal reasons.', 1, '2021-04-13 11:00:06', 0, NULL, 0, NULL, 1),
(2373, 4385, 'Haima projects private limited', 'Project coordinator', '2017-09-01', 12000.00, '2021-03-31', 2.50, 'Chennai', '1', '3 years 6 months', 'Planning to full time equity dealer', 1, '2021-04-13 11:09:23', 0, NULL, 0, NULL, 1),
(2374, 4386, 'Infosys', 'Senior engineering process executive', '2015-08-10', 13000.00, '2020-09-03', 21000.00, 'Mysore', '1', '5 years 0 months', ' Due to corana  period location changed', 1, '2021-04-13 11:32:04', 0, NULL, 0, NULL, 1),
(2375, 4388, 'rjr herbal hospital', 'telecaller', '2018-07-02', 12000.00, '2019-11-15', 12000.00, 't.nagar', '1', '1 years 4 months', ' health issues', 1, '2021-04-13 12:30:03', 1, '2021-04-13 12:33:10', 0, NULL, 1),
(2376, 4390, 'Hope IT solution ', 'Mis executive ', '2018-02-01', 14000.00, '2021-05-11', 15000.00, 'Chennai ', '1', '3 years 3 months', ' Low salary ', 1, '2021-04-13 12:31:43', 0, NULL, 0, NULL, 1),
(2377, 4391, 'Al Bayader Pack', 'QHSE Officer', '2019-12-10', 90000.00, '1970-01-01', 100000.00, 'Qatar -Doha', '2', '1 years 4 months', ' Carreer Improvement', 1, '2021-04-13 12:34:30', 0, NULL, 0, NULL, 1),
(2378, 4388, 'omega health care', 'ar caller', '2020-10-19', 16000.00, '2021-03-15', 16000.00, 'chennai', '1', '0 years 4 months', 'night shift', 1, '2021-04-13 12:35:59', 0, NULL, 0, NULL, 1),
(2379, 4389, 'accenture ', 'process associate', '2017-05-30', 10000.00, '2019-09-13', 16000.00, 'sollingnallur', '1', '2 years 3 months', ' To learn more things about the heath care ', 1, '2021-04-13 01:17:24', 0, NULL, 0, NULL, 1),
(2380, 4389, 'cognizant', 'senior process executive', '2020-07-03', 22000.00, '1970-01-01', 22000.00, 'tambaram meps', '2', '0 years 9 months', 'to improve different  things in different process', 1, '2021-04-13 01:20:15', 0, NULL, 0, NULL, 1),
(2381, 4393, 'drasis automation ', 'embedded trainee', '2018-03-13', 11000.00, '2019-04-30', 14000.00, 'chennai ', '1', '1 years 1 months', ' ', 1, '2021-04-13 01:50:14', 0, NULL, 0, NULL, 1),
(2382, 4394, 'Moiter workz - Gi retail', 'MIS executive', '2020-10-08', 22000.00, '1970-01-01', 22000.00, 'Chennai', '2', '0 years 6 months', 'For career growth and skill development', 1, '2021-04-13 01:54:52', 0, NULL, 0, NULL, 1),
(2383, 4394, 'Amazon', 'Quality assurance associate', '2018-06-11', 15600.00, '2020-03-18', 16700.00, 'Chennai', '1', '1 years 9 months', 'Promoting myself in  job Position ', 1, '2021-04-13 01:56:44', 0, NULL, 0, NULL, 1),
(2384, 4394, 'Free lance trainee', 'Freelance trainee', '2017-09-26', 10000.00, '2018-06-07', 10000.00, 'Chennai', '1', '0 years 8 months', 'End of contract', 1, '2021-04-13 01:58:08', 0, NULL, 0, NULL, 1),
(2385, 4381, 'Icicibank Ltd ', 'Business development officer', '2019-07-15', 14500.00, '1970-01-01', 16000.00, 'Chennai', '2', '1 years 8 months', ' In my career development &  I am interested to  new things learning that why choosing for this job.', 1, '2021-04-13 02:05:37', 0, NULL, 0, NULL, 1),
(2386, 4396, 'Capital zone', 'Equity dealer ', '2020-02-10', 16000.00, '1970-01-01', 16000.00, 'Tambaram ', '2', '1 years 2 months', 'Expecting more salary ', 1, '2021-04-13 03:21:29', 0, NULL, 0, NULL, 1),
(2387, 4397, 'Mak enterprises', 'Electrical maintenance', '2021-04-13', 12500.00, '1970-01-01', 17500.00, 'Gummidipoondi', '2', '0 years 0 months', ' Salary issues', 1, '2021-04-13 04:16:04', 0, NULL, 0, NULL, 1),
(2388, 4398, 'Wipro Limited ', 'Associate analyst ', '2020-02-12', 228000.00, '1970-01-01', 228000.00, 'Chennai ', '2', '1 years 2 months', ' For financial commitments ', 1, '2021-04-13 05:36:44', 0, NULL, 0, NULL, 1),
(2389, 4407, 'Nettyfish Networks Pvt Ltd', 'Admin head', '2019-05-12', 8500.00, '1970-01-01', 16500.00, 'Adyar', '2', '1 years 11 months', ' ', 1, '2021-04-15 10:16:53', 0, NULL, 0, NULL, 1),
(2390, 4411, 'surya informatics', 'hr/bde', '2020-09-01', 15000.00, '2021-03-30', 15000.00, 'chennai', '1', '0 years 6 months', ' Due to some infection i was in need to take long leave for 2weeks. Since the company cant give that much long leave and also i dont want the work delayed because of me.', 1, '2021-04-15 10:52:13', 0, NULL, 0, NULL, 1),
(2391, 4411, 'saas it services', 'sr.us it recruiter', '2020-03-02', 20000.00, '2020-07-15', 20000.00, 'remote', '1', '0 years 4 months', 'The company has Been closed due to covid', 1, '2021-04-15 10:54:29', 0, NULL, 0, NULL, 1),
(2392, 4412, 'Neogrowth Credit Pvt Ltd', 'Associate Manager Sales', '2018-05-02', 32000.00, '2019-05-31', 38000.00, 'Chennai', '1', '1 years 0 months', ' Went to abroad', 1, '2021-04-15 11:09:53', 0, NULL, 0, NULL, 1),
(2393, 4413, 'Distributed software solution Pvt ltd', 'Sales representative', '2017-06-19', 10000.00, '2017-12-04', 10000.00, 'Nandnam.chennai ', '1', '0 years 5 months', ' Pressure to meet reach the target and to meet the sales person personally ', 1, '2021-04-15 12:06:38', 0, NULL, 0, NULL, 1),
(2394, 4414, 'Tech Mahindra', 'Customer support associate', '2020-03-11', 11000.00, '2021-03-29', 11000.00, 'CHENNAI', '1', '1 years 0 months', 'I work in a process which is Going to be automated and Looking for better career Prospects and professional Growth .', 1, '2021-04-15 01:22:37', 0, NULL, 0, NULL, 1),
(2395, 4402, 'Thinksynq solutions private limited', 'Process associate', '2017-09-25', 12000.00, '2019-07-15', 15000.00, 'Royapettah', '1', '1 years 9 months', ' For maternity i relieved the company', 1, '2021-04-15 01:34:55', 0, NULL, 0, NULL, 1),
(2396, 4416, 'Firstsource Solutions ', 'Customer service representative ', '2016-04-30', 12000.00, '2017-07-31', 13500.00, 'Chennai ', '1', '1 years 3 months', 'Met with an accident and my right leg was fractured and I was under treatment for 6months.', 1, '2021-04-15 01:54:29', 0, NULL, 0, NULL, 1),
(2397, 4416, 'TATA CONSULTANCY SERVICES ', 'Business Analyst ', '2017-12-18', 15000.00, '2019-03-11', 18500.00, 'Chennai', '1', '1 years 2 months', 'Marriage', 1, '2021-04-15 01:55:43', 1, '2021-04-15 01:56:28', 0, NULL, 0),
(2398, 4416, 'Tata Consultancy services ', 'Business Analyst ', '2017-12-18', 15000.00, '2019-03-11', 18500.00, 'Chennai ', '1', '1 years 2 months', 'Marriage ', 1, '2021-04-15 01:57:22', 0, NULL, 0, NULL, 1),
(2399, 4417, 'Wipro', 'Senior associate', '2019-09-27', 13000.00, '2021-02-12', 14800.00, 'Shollinganallur', '1', '1 years 4 months', ' While working I met with an accident so i have dropped my paper for my wrist surgery. ', 1, '2021-04-15 02:08:35', 0, NULL, 0, NULL, 1),
(2400, 4418, 'Swathi associates', 'Tl', '2020-12-08', 13000.00, '2021-02-15', 16.50, 'Avadi', '1', '0 years 2 months', ' Corona', 1, '2021-04-15 02:47:29', 0, NULL, 0, NULL, 1),
(2401, 4421, 'Quikr india pvt ltd', 'Sales manager', '2020-09-21', 38000.00, '1970-01-01', 38000.00, 'Chennai', '2', '0 years 6 months', ' Career change', 1, '2021-04-15 03:21:42', 0, NULL, 0, NULL, 1),
(2402, 4421, 'Sulekha. Com new media pvt ltd', 'Deputy manager', '2015-01-08', 13000.00, '2020-10-17', 39000.00, 'Chennai', '1', '5 years 9 months', 'Due to pandemic', 1, '2021-04-15 03:24:01', 0, NULL, 0, NULL, 1),
(2403, 4399, 'Zoylo Heath', 'Sales executive', '2020-11-01', 15000.00, '1970-01-01', 17000.00, 'Chennai', '2', '0 years 5 months', ' Company going to shut down', 1, '2021-04-15 04:09:28', 0, NULL, 0, NULL, 1),
(2404, 4423, 'Trayee business solutions', 'Processing executive', '2019-05-18', 10000.00, '2021-04-10', 10000.00, 'Pattinapakam', '1', '1 years 10 months', ' ', 1, '2021-04-15 05:09:25', 0, NULL, 0, NULL, 1),
(2405, 4425, 'Quikr India pvt ltd', 'Key Account Manager', '2020-09-21', 35000.00, '2021-04-01', 35000.00, 'Chennai', '1', '0 years 6 months', ' ', 1, '2021-04-15 05:16:12', 0, NULL, 0, NULL, 1),
(2406, 4422, 'Teleperformance', 'Senior process Executive', '2019-02-25', 15000.00, '2020-02-07', 15000.00, 'Ambattur', '1', '0 years 11 months', ' To enhance my skills and knowledge and for personal and financial growth.', 1, '2021-04-15 05:24:30', 0, NULL, 0, NULL, 1),
(2407, 4426, 'Gates unitta Asia private limited', 'Trainee', '2020-01-08', 14000.00, '1970-01-01', 14000.00, 'Sriperumbudhur', '2', '1 years 3 months', 'Third party pay role no job security', 1, '2021-04-16 10:28:09', 0, NULL, 0, NULL, 1),
(2408, 4429, 'Ninjacart', 'Operations', '2018-07-26', 250000.00, '2019-06-30', 280000.00, 'Chennai', '1', '0 years 11 months', ' Personal reasons', 1, '2021-04-16 11:11:10', 0, NULL, 0, NULL, 1),
(2409, 4430, 'SBI cap securities', 'Dealer', '2020-08-07', 345000.00, '2021-03-23', 345000.00, 'Tnagar', '1', '0 years 8 months', ' Personal reason', 1, '2021-04-16 11:25:14', 0, NULL, 0, NULL, 1),
(2410, 4428, 'Akeaa vision time Finacial Soluation', 'Team leader ', '2019-03-22', 15000.00, '2020-09-30', 15000.00, 'Arumbakkam', '1', '1 years 6 months', ' Corona issued', 1, '2021-04-16 11:28:49', 0, NULL, 0, NULL, 1),
(2411, 4427, 'Akeaa vision time financial solutions', 'Telli caller', '2018-05-15', 9500.00, '2021-03-22', 11500.00, 'Arumbakkam', '1', '2 years 10 months', ' Corona issue', 1, '2021-04-16 11:29:04', 0, NULL, 0, NULL, 1),
(2412, 4431, 'Capstocks and securities I p ltd', 'Senior equity dealer', '2012-09-09', 10000.00, '2020-07-30', 25000.00, 'Chennai', '1', '7 years 10 months', ' Change in designation from dealer to relationship manager marketing', 1, '2021-04-16 11:43:22', 0, NULL, 0, NULL, 1),
(2413, 4432, 'Aditya Birla franchise ', 'Equity dealer ', '2018-12-12', 10000.00, '2020-03-20', 15000.00, 'Madurai ', '1', '1 years 3 months', ' Due to corona pandemic office has been closed', 1, '2021-04-16 11:57:10', 0, NULL, 0, NULL, 1),
(2414, 4434, 'New opportunitie', 'Relationship officer', '2021-01-03', 15774.00, '1970-01-01', 15774.00, 'Chennai Avadi', '2', '0 years 3 months', ' Location ', 1, '2021-04-16 12:04:10', 0, NULL, 0, NULL, 1),
(2415, 4436, 'Barclays company', 'Process advisor', '2019-10-18', 12200.00, '2020-09-30', 15000.00, 'Navalur', '1', '0 years 11 months', ' Process will be closed ', 1, '2021-04-16 01:04:07', 0, NULL, 0, NULL, 1),
(2416, 4440, 'regen infrastructure and services private limited', 'engineer', '2019-01-16', 12000.00, '1970-01-01', 15700.00, 'CHENNAI', '2', '2 years 3 months', 'for Improve my skills and Explore my Knowledge. ', 1, '2021-04-16 11:54:14', 1, '2021-04-16 11:55:15', 0, NULL, 1),
(2417, 4445, 'Data Entry', 'Data Entry', '2020-11-03', 12000.00, '2021-03-23', 12500.00, 'Chennai', '1', '0 years 4 months', ' Project closed.', 1, '2021-04-17 11:12:52', 0, NULL, 0, NULL, 1),
(2418, 4446, 'Nirmal bang securities private ltd', 'Relationship manager', '2019-07-03', 30000.00, '2021-01-04', 30000.00, 'Chennai', '1', '1 years 6 months', ' Personal', 1, '2021-04-17 11:19:48', 0, NULL, 0, NULL, 1),
(2419, 4446, 'Geojit financial services ', 'Assitant manager ', '2006-09-01', 23000.00, '2019-04-10', 23000.00, 'Chennao', '1', '14 years 7 months', 'Better one', 1, '2021-04-17 11:22:05', 0, NULL, 0, NULL, 1),
(2420, 4449, 'India ideas. Com', 'Quality administration', '2018-06-12', 12000.00, '1970-01-01', 12000.00, 'T. Nagar', '2', '2 years 10 months', ' ', 1, '2021-04-17 11:43:04', 0, NULL, 0, NULL, 1),
(2421, 4447, 'Trivam Web Solutions ', 'Web Designer ', '2019-04-01', 250000.00, '2020-04-01', 8000.00, 'Chennai ', '1', '1 years 0 months', ' There is no any new project.  We recreate a web design for our old projects. So I decided to change the organization and that time covid-19 also is serious, so in my home force me to come native, so I quit my job. ', 1, '2021-04-17 11:44:32', 0, NULL, 0, NULL, 1),
(2422, 4451, 'Indusind bank', 'Cards revenue ', '2019-04-27', 15000.00, '2020-05-10', 15000.00, 'Dms', '1', '1 years 0 months', ' Because of marriage ', 1, '2021-04-17 01:04:39', 0, NULL, 0, NULL, 1),
(2423, 4453, 'Global infotech', 'Telecalling ', '2021-04-19', 18000.00, '2021-04-20', 15000.00, 'Kodambakkam', '1', '0 years 0 months', ' Company was sudden ', 1, '2021-04-17 02:41:43', 0, NULL, 0, NULL, 1),
(2424, 4454, 'Goodwill commodities Pvt ltd', 'Senior corporate executive', '2017-10-10', 25000.00, '2018-10-18', 30000.00, 'Mylapore', '1', '1 years 0 months', ' ', 1, '2021-04-17 02:53:01', 0, NULL, 0, NULL, 1),
(2425, 4458, 'Hi-Lex India Pvt ltd', 'Associate', '2019-01-10', 14500.00, '2020-11-14', 16500.00, 'Chennai', '1', '1 years 10 months', ' ', 1, '2021-04-18 03:53:45', 0, NULL, 0, NULL, 1),
(2426, 4463, 'taurus', 'customer support executive', '2020-09-12', 12000.00, '2021-03-18', 12000.00, 'chennai', '1', '0 years 6 months', ' Hike', 1, '2021-04-19 09:58:07', 0, NULL, 0, NULL, 1),
(2427, 4467, 'HDB financial services', 'Collection staff', '2019-09-19', 12000.00, '2021-03-26', 19000.00, 'Aminjikarai', '1', '1 years 6 months', ' Mother health issue', 1, '2021-04-19 11:49:01', 0, NULL, 0, NULL, 1),
(2428, 4468, 'Prime College of Architecture and Planning', 'Assistant Professor', '2015-06-04', 20000.00, '2018-11-30', 21000.00, 'Nagapattinam', '1', '3 years 5 months', ' It\'s Admissions are very low And salary issue for same reason.', 1, '2021-04-19 11:52:44', 0, NULL, 0, NULL, 1),
(2429, 4471, 'Commercial Taxes Department', 'Computer Operator', '2013-05-11', 10000.00, '2017-06-02', 12000.00, 'Chennai', '1', '4 years 0 months', ' Salary very low', 1, '2021-04-19 11:58:26', 0, NULL, 0, NULL, 1),
(2430, 4470, 'Amilzdam organic shop,Elders newspaper', 'Sales executive manager,Site management,Gst Updati', '2018-03-01', 8000.00, '2018-12-14', 9500.00, 'Anna Nagar', '1', '0 years 9 months', ' For Higher studies', 1, '2021-04-19 12:01:09', 0, NULL, 0, NULL, 1),
(2431, 4471, 'Data Matrix Technologies Private Limited', 'Data Analyst', '2020-04-19', 18000.00, '2021-01-29', 18000.00, 'Chennai', '1', '0 years 9 months', ' Project Over', 1, '2021-04-19 12:02:00', 0, NULL, 0, NULL, 1),
(2432, 4474, 'Super auto forge', 'CNC operator', '2020-07-14', 15000.00, '2021-02-20', 15000.00, 'Tambaram', '1', '0 years 7 months', ' ', 1, '2021-04-19 12:30:17', 0, NULL, 0, NULL, 1),
(2433, 4476, 'New opportunity consultancy pvt ltd', 'Relationship officer', '2019-11-04', 11000.00, '2020-10-20', 14500.00, 'Chennai', '1', '0 years 11 months', ' Health issue', 1, '2021-04-19 12:38:44', 0, NULL, 0, NULL, 1),
(2434, 4478, 'Fresh digi hub', 'Email marketing', '2020-06-10', 10.00, '2020-12-30', 10.00, 'Perugudi', '1', '0 years 6 months', ' ', 1, '2021-04-19 12:50:46', 0, NULL, 0, NULL, 1),
(2435, 4473, 'Fazalu Rahaman', 'Slalle', '0218-07-16', 15000.00, '2021-04-19', 15000.00, 't.ngar and colour Polu pounderry', '1', '1802 years 9 months', ' Closed', 1, '2021-04-19 12:57:51', 0, NULL, 0, NULL, 1),
(2436, 4479, 'tech mahendira', 'sme', '2018-05-22', 12000.00, '2019-10-27', 14000.00, 'ambattur', '1', '1 years 5 months', ' growth', 1, '2021-04-19 01:04:55', 0, NULL, 0, NULL, 1),
(2437, 4481, 'tech mahendira', 'sme', '2018-05-26', 11000.00, '2019-10-22', 12000.00, 'chennai', '1', '1 years 4 months', ' growth', 1, '2021-04-19 01:09:13', 0, NULL, 0, NULL, 1),
(2438, 4484, 'Hdb financial service', 'Relationship manager', '2017-09-12', 25000.00, '2020-11-12', 25000.00, 'Nungabakam ', '1', '3 years 2 months', ' Recently get Marriage ', 1, '2021-04-19 02:53:04', 0, NULL, 0, NULL, 1),
(2439, 4475, 'I Marque Solution ', 'financial processor', '2018-05-14', 9500.00, '2021-02-15', 10.00, 'chennai', '1', '2 years 9 months', ' Contract is closing for December month In Irongate process for night shift', 1, '2021-04-19 03:04:13', 0, NULL, 0, NULL, 1),
(2440, 4490, 'HDFC Bank', 'Personal banker', '2019-06-17', 325000.00, '2020-06-17', 325000.00, 'Chennai', '1', '1 years 0 months', ' For career growth', 1, '2021-04-20 09:58:40', 0, NULL, 0, NULL, 1),
(2441, 4490, 'BNP Paribas', 'Associate', '2020-08-03', 350000.00, '2021-03-30', 350000.00, 'Chennai', '1', '0 years 7 months', 'Medical conditions I left my job', 1, '2021-04-20 10:00:35', 0, NULL, 0, NULL, 1),
(2442, 4497, 'Accenture solutions ', 'Process associate ', '2018-06-26', 163000.00, '2021-01-26', 193000.00, 'Sholinganallur ', '1', '2 years 7 months', ' Looked for job opportunities in overseas but unfortunately my application rejected ', 1, '2021-04-20 11:15:56', 0, NULL, 0, NULL, 1),
(2443, 468, 'Exprisit', 'Mis executive', '2019-02-27', 12000.00, '2021-08-04', 16000.00, 'Amabtur', '1', '2 years 5 months', ' ', 1, '2021-04-20 11:39:01', 0, NULL, 0, NULL, 1),
(2444, 4502, 'Accenture', 'Transaction representative process', '2019-11-22', 10000.00, '2020-08-28', 10000.00, 'Sholinganalur', '1', '0 years 9 months', ' Health issue', 1, '2021-04-20 11:40:20', 0, NULL, 0, NULL, 1),
(2445, 4503, 'Accenture', 'Transaction representative process', '2019-11-22', 10000.00, '2020-09-22', 10000.00, 'Sholinganalur', '1', '0 years 10 months', ' Leg injury', 1, '2021-04-20 12:05:18', 0, NULL, 0, NULL, 1),
(2446, 4505, 'Tcs', 'Process Associate', '2018-01-02', 17000.00, '2020-06-15', 21000.00, 'Siruseri ', '1', '2 years 5 months', ' Cab issue', 1, '2021-04-20 12:24:02', 0, NULL, 0, NULL, 1),
(2447, 4504, 'ion exchange india', 'shift enginner', '2006-08-04', 10000.00, '2010-12-30', 15000.00, 'chennai', '1', '4 years 4 months', ' better cagrowthreer ', 1, '2021-04-20 12:35:52', 0, NULL, 0, NULL, 1),
(2448, 4504, 'nalco water india', 'project enginner', '2011-01-03', 29000.00, '2012-11-02', 35000.00, 'chennai', '1', '1 years 9 months', 'better career growth', 1, '2021-04-20 12:38:09', 0, NULL, 0, NULL, 1),
(2449, 4504, 'microchem enterprises', 'sales engineer', '2014-01-06', 45000.00, '2017-03-06', 55000.00, 'chennai', '1', '3 years 2 months', 'interested to work in sharemarket', 1, '2021-04-20 12:40:46', 0, NULL, 0, NULL, 1),
(2450, 4504, 'angel broking', 'equity dealer', '2017-03-20', 20000.00, '1970-01-01', 35000.00, 'chennai', '2', '4 years 1 months', 'better career growth', 1, '2021-04-20 12:42:40', 0, NULL, 0, NULL, 1),
(2451, 4510, 'Curly Gravings restaurant ', 'Manager ', '2019-06-04', 20000.00, '2020-01-25', 20000.00, 'Chennai ', '1', '0 years 7 months', ' ', 1, '2021-04-20 01:07:35', 0, NULL, 0, NULL, 1),
(2452, 4513, 'British council, Chennai', 'business delivery executive', '2019-10-01', 18000.00, '2020-07-31', 18000.00, 'Chennai', '1', '0 years 10 months', ' Contract got over', 1, '2021-04-20 04:37:27', 0, NULL, 0, NULL, 1),
(2453, 4509, 'TechMahindra', 'Sr. MIS ', '2019-09-24', 22000.00, '1970-01-01', 22000.00, 'Ambattur', '2', '1 years 6 months', ' Moving for next level', 1, '2021-04-20 05:09:04', 0, NULL, 0, NULL, 1),
(2454, 4518, 'Indiaideas. Com', 'Operative executive ', '2018-09-13', 13000.00, '1970-01-01', 13000.00, 'T. Nagar', '2', '2 years 7 months', 'Now  Im working offrole Staff there is no esi and Pf for offrole so that\'s only im reliving that company', 1, '2021-04-20 06:21:15', 0, NULL, 0, NULL, 1),
(2455, 4521, 'HDBFS', 'SALES MANAGER', '2020-02-14', 20000.00, '1970-01-01', 28000.00, 'Avadi', '2', '1 years 2 months', ' FOR SOME GROWTH', 1, '2021-04-21 11:06:43', 0, NULL, 0, NULL, 1),
(2456, 4525, 'Tech mahindra', 'Customer support executive', '2019-12-06', 12000.00, '2020-01-27', 12000.00, 'Ambatur', '1', '0 years 1 months', ' Because of marraige reason... ', 1, '2021-04-21 12:56:46', 0, NULL, 0, NULL, 1),
(2457, 4528, 'Kandarp management pvt ltd/yes bank', 'Documentation process', '2017-09-05', 10000.00, '2018-06-10', 10000.00, 'Nandhanam', '1', '0 years 9 months', ' Due to salary problem araises with my manager i cant able to continue my wrk in kandarp management pvt ltd', 1, '2021-04-21 01:26:31', 0, NULL, 0, NULL, 1),
(2458, 4528, 'Jana bank', 'Relationship officer', '2018-09-05', 12000.00, '2020-10-05', 14000.00, 'Thiruvika nagar', '1', '2 years 1 months', 'Due to personal reason i left my job', 1, '2021-04-21 01:28:34', 0, NULL, 0, NULL, 1),
(2459, 4532, 'HDB financial services ltd', 'Sales officer', '2020-10-03', 12000.00, '2021-04-07', 12000.00, 'Chennai', '1', '0 years 6 months', ' Salary issue', 1, '2021-04-21 03:09:58', 0, NULL, 0, NULL, 1),
(2460, 4536, 'Ison', 'Telecaller', '2020-08-26', 12000.00, '2021-04-07', 12000.00, 'Perungudi', '1', '0 years 7 months', ' Salary issue', 1, '2021-04-21 04:00:48', 0, NULL, 0, NULL, 1),
(2461, 4537, 'Ison bpo', 'Telecaller', '2020-11-13', 13000.00, '2021-03-01', 13000.00, 'Perungudi', '1', '0 years 3 months', ' Salary issue', 1, '2021-04-21 04:08:36', 0, NULL, 0, NULL, 1),
(2462, 4540, 'HSBC', 'Implementation officer', '2017-07-16', 4.00, '2020-10-20', 5.75, 'Bangalore', '1', '3 years 3 months', 'The process I was working for moved to the United Kingdom', 1, '2021-04-21 04:18:58', 0, NULL, 0, NULL, 1),
(2463, 4539, 'Ascendance', 'Collections', '2020-07-20', 10000.00, '2021-03-19', 12000.00, 'Villivakkam', '1', '0 years 7 months', 'Timing and not expected salary', 1, '2021-04-21 04:21:02', 0, NULL, 0, NULL, 1),
(2464, 4550, 'Pamac finserve Pvt Ltd', 'Data mining', '2018-01-11', 12000.00, '2018-09-18', 12000.00, 'Chennai', '1', '0 years 8 months', ' Personal issues', 1, '2021-04-22 11:06:14', 0, NULL, 0, NULL, 1),
(2465, 4529, 'Yesbank', 'Officer', '2019-05-27', 15000.00, '2020-12-03', 17000.00, 'Ambattur', '1', '1 years 6 months', ' Long distance', 1, '2021-04-22 11:38:35', 0, NULL, 0, NULL, 1),
(2466, 4554, 'Barzan - Qatar Gas South', 'Maintenance Technician', '2019-02-09', 85000.00, '2020-12-07', 85000.00, 'Qatar', '1', '1 years 9 months', ' Contract Finished', 1, '2021-04-22 11:43:52', 0, NULL, 0, NULL, 1),
(2467, 4555, 'Scientific publishing services', 'Production administrator', '2019-09-30', 14000.00, '1970-01-01', 17000.00, 'Mount road', '2', '1 years 6 months', ' Insufficient salary', 1, '2021-04-22 12:00:29', 0, NULL, 0, NULL, 1),
(2468, 4558, 'Kpo', 'Data entry kpo', '2020-10-21', 15000.00, '2021-04-05', 15000.00, 'Chiruseri', '1', '0 years 5 months', ' I am night shift is working my body problems an relieving the company ', 1, '2021-04-22 01:04:25', 0, NULL, 0, NULL, 1),
(2469, 4520, 'RR Donnelley', 'Finally Associate', '2016-06-29', 14789.00, '2018-03-19', 15789.00, 'Mylapore', '1', '1 years 8 months', ' Taking care of father\'s Business.', 1, '2021-04-22 04:53:56', 0, NULL, 0, NULL, 1),
(2470, 4572, 'Northern iT service', 'Telecaller', '2020-02-25', 12000.00, '2020-09-01', 1500.00, 'Ambattur estate', '1', '0 years 6 months', ' Uncomfortable with team members.', 1, '2021-04-23 11:56:19', 0, NULL, 0, NULL, 1),
(2471, 4580, 'R.janani', 'Chennai', '2021-04-23', 20.00, '2027-04-22', 20.00, 'Chennai', '1', '5 years 11 months', ' Due to company stress', 1, '2021-04-23 12:08:23', 0, NULL, 0, NULL, 1),
(2472, 4583, 'Zealous services', 'Qa', '2019-03-04', 18000.00, '2021-04-23', 180000.00, 'Nungambakkam', '1', '2 years 1 months', ' Office closed', 1, '2021-04-23 01:13:43', 0, NULL, 0, NULL, 1),
(2473, 4585, 'DHL global forwarding', 'Process Associate', '2018-02-07', 180000.00, '2019-08-31', 225000.00, 'chennai', '1', '1 years 6 months', ' Better opportunity', 1, '2021-04-23 02:00:23', 0, NULL, 0, NULL, 1),
(2474, 4585, 'Kutsncrvs', 'senior Accountant', '2019-09-02', 300000.00, '2020-08-31', 300000.00, 'Vaniyambadi and chennai', '1', '0 years 11 months', 'Covid 19 layoff', 1, '2021-04-23 02:02:23', 0, NULL, 0, NULL, 1),
(2475, 4586, 'Flex', 'Analyst', '2018-04-30', 210000.00, '2020-09-04', 273000.00, 'chennai', '1', '2 years 4 months', ' Needed a job in day shift , because i was working over there in night shift.', 1, '2021-04-23 02:18:33', 0, NULL, 0, NULL, 1),
(2476, 4588, 'Accenture', 'Investment accounting ops New associate', '2019-10-25', 12000.00, '2021-04-30', 15000.00, 'Chennai', '1', '1 years 6 months', 'Salary is not enough to balance the financial situation. ', 1, '2021-04-24 11:04:12', 0, NULL, 0, NULL, 1),
(2477, 4577, 'Cms infosystem Pvt Ltd', 'Stores incharge', '2014-07-21', 8000.00, '2015-07-23', 9500.00, 'Chennai ', '1', '1 years 0 months', ' ', 1, '2021-04-24 11:10:52', 0, NULL, 0, NULL, 1),
(2478, 4596, 'Irend Technology', 'Web developer', '2012-12-12', 10000.00, '2017-01-20', 18000.00, 'Chennai', '1', '4 years 1 months', ' Maternity', 1, '2021-04-24 11:11:10', 1, '2021-04-24 11:15:02', 0, NULL, 0),
(2479, 4577, 'Impec filters Pvt Ltd', 'Material engineer', '2014-07-24', 12000.00, '2016-02-04', 12000.00, 'Ambattur', '1', '1 years 6 months', 'Got another jod', 1, '2021-04-24 11:12:57', 0, NULL, 0, NULL, 1),
(2480, 4596, 'Contempo technology', 'Web developer and seo analyst', '2011-09-24', 8000.00, '2012-09-20', 8000.00, 'Chennai', '1', '0 years 11 months', 'Maternity', 1, '2021-04-24 11:13:23', 0, NULL, 0, NULL, 1),
(2481, 4577, 'Net connect Pvt Ltd', 'Asset executive', '2014-07-23', 16000.00, '2017-01-03', 16000.00, 'Ennore', '1', '2 years 5 months', 'Maternity', 1, '2021-04-24 11:15:09', 0, NULL, 0, NULL, 1),
(2482, 4596, 'Irend infotech', 'Web developer and seo analyst', '2012-11-24', 10000.00, '2017-01-24', 18000.00, 'Chennai', '1', '4 years 2 months', ' Maternity', 1, '2021-04-24 11:17:06', 0, NULL, 0, NULL, 1),
(2483, 4599, 'Comodo security Pvt Ltd', 'Associate', '2016-04-10', 14000.00, '2018-10-31', 17000.00, 'Vadapalani', '1', '2 years 6 months', ' After marriage I am unable to continue in night shift', 1, '2021-04-24 11:36:19', 0, NULL, 0, NULL, 1),
(2484, 4602, 'Bajaj finserv', 'Sales officer', '2019-07-17', 15000.00, '2020-06-11', 15000.00, 'Mount road Chennai', '1', '0 years 10 months', ' Not gaving proper incentives', 1, '2021-04-24 12:30:45', 0, NULL, 0, NULL, 1),
(2485, 4609, 'Tcns clothing company limited', 'Store manager', '2019-02-04', 20000.00, '2020-10-12', 20000.00, 'Bangalore', '1', '1 years 8 months', ' Due to corona', 1, '2021-04-26 10:42:40', 0, NULL, 0, NULL, 1),
(2486, 4610, 'Independent Film production ', 'Production executive', '2015-12-05', 10000.00, '2017-03-03', 15000.00, 'Trivandrum', '1', '1 years 2 months', ' To pursue studies ', 1, '2021-04-26 11:02:39', 0, NULL, 0, NULL, 1),
(2487, 4611, 'Vortex Engineering Pvt ltd', 'ATM engineer', '2019-10-18', 1.00, '2021-04-13', 13000.00, 'chennai', '1', '1 years 5 months', ' it\'s is a field work ', 1, '2021-04-26 11:41:52', 0, NULL, 0, NULL, 1),
(2488, 4619, 'Just dial', 'Process associate', '2015-03-01', 15000.00, '2016-07-31', 18000.00, 'Chennai', '1', '1 years 5 months', ' Career improvement', 1, '2021-04-27 08:44:52', 0, NULL, 0, NULL, 1),
(2489, 4619, 'Sulekha.com new media pvt ltd', 'Senior executive', '2015-08-01', 21000.00, '1970-01-01', 28000.00, 'Chennai', '2', '5 years 8 months', 'Career improvement', 1, '2021-04-27 08:46:01', 0, NULL, 0, NULL, 1),
(2490, 4620, 'Cams', 'Processing officer', '2018-10-18', 17000.00, '2020-12-16', 20000.00, 'Chennai', '1', '2 years 1 months', ' ', 1, '2021-04-27 09:46:16', 0, NULL, 0, NULL, 1),
(2491, 4626, 'Vertex', 'Customer support executive', '2010-12-10', 6000.00, '2011-07-11', 9000.00, 'Ambattur', '1', '0 years 7 months', ' ', 1, '2021-04-27 12:29:48', 0, NULL, 0, NULL, 1),
(2492, 4626, 'Ninestars information technology', 'Scanning operator', '2019-03-13', 7500.00, '2021-04-20', 7000.00, 'Tiruvallur', '1', '2 years 1 months', 'Process gets over', 1, '2021-04-27 12:31:40', 0, NULL, 0, NULL, 1),
(2493, 4628, 'KGR Teleservices sub ( vodafone)', 'Teleservices and coustomer enquiry Support', '2017-04-05', 11000.00, '2018-06-14', 15000.00, 'Muduravoyal', '1', '1 years 2 months', ' I got a back bone injury..', 1, '2021-04-27 01:12:21', 0, NULL, 0, NULL, 1),
(2494, 4629, 'Zealous service', 'Semi voice Process', '2018-12-28', 10000.00, '2019-11-09', 12000.00, 'Nungambakkam', '1', '0 years 10 months', ' Family problems', 1, '2021-04-27 02:18:35', 0, NULL, 0, NULL, 1),
(2495, 4631, 'Le Royal Meridien', 'Admin', '2018-08-06', 11000.00, '2019-02-15', 11000.00, 'Chennai', '1', '0 years 6 months', ' Got another Job', 1, '2021-04-27 02:21:54', 0, NULL, 0, NULL, 1),
(2496, 4631, 'Tamil Nadu State Transport Corporation', 'Admin', '2019-02-25', 16000.00, '2020-02-28', 16000.00, 'Trichy', '1', '1 years 0 months', 'Got another Job', 1, '2021-04-27 02:23:06', 0, NULL, 0, NULL, 1),
(2497, 4631, 'Plus 91 Entertainment Company', 'Business development executive', '2021-01-04', 22000.00, '1970-01-01', 22000.00, 'Chennai', '2', '0 years 3 months', 'Currently working', 1, '2021-04-27 02:24:56', 0, NULL, 0, NULL, 1),
(2498, 4630, 'Odour club', 'Sales representative', '2016-02-20', 9000.00, '2016-10-18', 9000.00, 'Valasaravakkam', '1', '0 years 7 months', ' Company winded up', 1, '2021-04-27 02:26:26', 0, NULL, 0, NULL, 1),
(2499, 4633, 'Entrust software services Pvt Ltd', 'Process associate', '2019-08-08', 12000.00, '2021-04-11', 12000.00, 'Chennai', '1', '1 years 8 months', ' The pay i got for the work I have is low and still I didn\'t get any Appraisal over there.', 1, '2021-04-27 04:57:51', 0, NULL, 0, NULL, 1),
(2500, 4635, 'LETRIM INTELLIGENCE SERVICES PVT LTD', 'Research analyst', '2019-07-25', 15400.00, '2021-02-12', 15400.00, 'Ambattur', '1', '1 years 6 months', 'Career Growth', 1, '2021-04-27 05:30:28', 0, NULL, 0, NULL, 1),
(2501, 4634, 'amazon', 'Machine learning data Associate ', '2017-05-22', 2.40, '2020-02-21', 3.00, 'chennai', '1', '2 years 8 months', ' ', 1, '2021-04-27 05:33:31', 0, NULL, 0, NULL, 1),
(2502, 4638, 'imarque solutions', 'data entry operator', '2017-02-02', 10000.00, '2018-02-08', 10000.00, 't nagar', '1', '1 years 0 months', ' Growth', 1, '2021-04-28 09:57:55', 0, NULL, 0, NULL, 1),
(2503, 4638, 'weawings solutions', 'quality analyst', '2018-06-17', 12000.00, '2020-03-03', 13000.00, 'chennai', '1', '1 years 8 months', 'growth', 1, '2021-04-28 09:58:51', 0, NULL, 0, NULL, 1),
(2504, 4639, 'Tcs', 'Customer support', '2017-02-17', 23000.00, '2018-12-06', 28000.00, 'Ambattur', '1', '1 years 9 months', 'Personal reasons', 1, '2021-04-28 10:12:27', 0, NULL, 0, NULL, 1),
(2505, 4643, 'HCl technologies ', 'Associate ', '2019-02-10', 10300.00, '2021-04-30', 168000.00, 'Ambattur', '1', '2 years 2 months', ' Process was rampdown , fully automized by robotics , they are moved to bench so I left this company ', 1, '2021-04-28 11:09:08', 0, NULL, 0, NULL, 1),
(2506, 3566, 'Accenture', 'Transactions Process new Assoy', '2019-10-04', 12595.00, '2021-01-18', 12595.00, 'Chennai', '1', '1 years 3 months', ' Due to performance issues', 1, '2021-04-28 11:14:58', 0, NULL, 0, NULL, 1),
(2507, 4644, 'Ventura\'s security private limited', 'Telecalling representative', '2020-06-05', 12000.00, '2020-12-26', 13000.00, 'T nagar', '1', '0 years 6 months', ' Too long distance', 1, '2021-04-28 11:18:41', 0, NULL, 0, NULL, 1),
(2508, 4641, 'All the children trust', 'Tellecalling', '2019-04-20', 12000.00, '1970-01-01', 15000.00, 'Theynampet', '2', '2 years 0 months', 'Covid 19', 1, '2021-04-28 11:22:16', 0, NULL, 0, NULL, 1),
(2509, 4645, 'Teleperformance global service ', 'system admin ', '2019-05-20', 9300.00, '2021-02-01', 9300.00, 'ambatur estate ', '1', '1 years 8 months', 'for new beginning ', 1, '2021-04-28 11:50:51', 0, NULL, 0, NULL, 1),
(2510, 4649, 'Reliable business solutions private limited', 'Sales executive', '2021-04-28', 13000.00, '2022-08-24', 15000.00, 'Sholinganallur', '1', '1 years 3 months', ' Salary issues', 1, '2021-04-28 12:39:55', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2511, 4652, 'Just dial', 'Sales executive', '2019-11-11', 14000.00, '1970-01-01', 14000.00, 'Little mount', '2', '1 years 5 months', ' Helth issue', 1, '2021-04-28 12:44:17', 0, NULL, 0, NULL, 1),
(2512, 4650, 'India info management', 'Customer support associate', '2019-08-15', 9000.00, '2020-11-10', 15.00, 'Ambattur', '1', '1 years 2 months', ' Bad environment to working on India info management.. ', 1, '2021-04-28 01:00:54', 0, NULL, 0, NULL, 1),
(2513, 4653, 'gamma process', 'Customer care executive', '2020-02-03', 9000.00, '2021-04-04', 10500.00, 'Ambattur', '1', '1 years 2 months', ' Process totally done', 1, '2021-04-28 01:21:33', 0, NULL, 0, NULL, 1),
(2514, 4655, 'DT Ptv ltd', 'Operator', '2020-02-12', 12000.00, '2020-11-20', 10000.00, 'Thiruvallur', '1', '0 years 9 months', 'Complete my training and I will challenge to big role of the job', 1, '2021-04-28 01:34:07', 0, NULL, 0, NULL, 1),
(2515, 4654, 'NITS', 'Team leader', '2020-02-04', 13000.00, '2021-04-05', 13000.00, 'Ambattur', '1', '1 years 2 months', 'Process completed', 1, '2021-04-28 01:49:31', 0, NULL, 0, NULL, 1),
(2516, 4657, 'HDB Financial services', 'Relationship officer', '2020-12-11', 15500.00, '2021-04-28', 15500.00, 'Perambur', '1', '0 years 4 months', ' Salary is not convenient', 1, '2021-04-28 03:18:03', 0, NULL, 0, NULL, 1),
(2517, 4661, 'Quest Alliance ', 'Placement team -Intern', '2020-06-04', 15000.00, '2021-03-31', 15000.00, 'Chennai ', '1', '0 years 9 months', ' Career Related job  ', 1, '2021-04-28 04:49:23', 0, NULL, 0, NULL, 1),
(2518, 4661, 'Quest Alliance ', 'Placement  Team - Intern', '2020-06-04', 15000.00, '2021-03-28', 15000.00, 'Chennai ', '1', '0 years 9 months', 'Looking for Career Related job', 1, '2021-04-28 05:05:37', 0, NULL, 0, NULL, 1),
(2519, 4669, 'Letrim Intelligence services', 'Research Analyst', '2019-05-03', 20000.00, '2021-02-28', 22000.00, 'Chennai', '1', '1 years 9 months', ' I am looking for better career prospects, professional growth and work Opportunities. ', 1, '2021-04-29 11:36:53', 0, NULL, 0, NULL, 1),
(2520, 4669, 'Cognizant', 'Senior Process Executive- Data', '2016-08-17', 13000.00, '2018-08-16', 17000.00, 'Chennai', '1', '1 years 11 months', 'Health issues', 1, '2021-04-29 11:39:46', 0, NULL, 0, NULL, 1),
(2521, 4671, 'Minerva engineering company', 'Welding engineer ', '2015-06-19', 13000.00, '2021-05-10', 13000.00, 'Chennai', '1', '5 years 10 months', ' I didnt find any career growth there, i need to do an change of career because of family situation ', 1, '2021-04-29 11:42:24', 0, NULL, 0, NULL, 1),
(2522, 4673, 'Airtel power link', 'Splicer engg', '2020-02-15', 15000.00, '2021-04-10', 18000.00, 'Anna nager', '1', '1 years 1 months', ' Saldry issues', 1, '2021-04-29 11:54:28', 0, NULL, 0, NULL, 1),
(2523, 4675, 'Euro lables industries', 'SAP Operation', '2019-06-03', 8000.00, '2021-01-03', 13000.00, 'Ambattur', '1', '1 years 7 months', ' Meet an accident and can\'t continue the job', 1, '2021-04-29 12:03:26', 0, NULL, 0, NULL, 1),
(2524, 4664, 'Computer Age management Service Limited', 'Apo', '2019-05-09', 8500.00, '1970-01-01', 10000.00, 'Anna Salai', '2', '1 years 11 months', ' Salary is Not Up to The expect level. ', 1, '2021-04-29 12:29:32', 0, NULL, 0, NULL, 1),
(2525, 4679, 'Allsec', 'Tc', '2021-03-25', 13000.00, '2021-04-25', 13000.00, 'Gemini', '1', '0 years 1 months', ' Long distance, bus service issue', 1, '2021-04-29 03:13:39', 0, NULL, 0, NULL, 1),
(2526, 4676, 'free elective', 'operational analyst', '2020-01-03', 21000.00, '2021-01-05', 21000.00, 'chennai', '1', '1 years 0 months', ' career update layoff', 1, '2021-04-29 09:22:41', 0, NULL, 0, NULL, 1),
(2527, 4680, 'Magna Automotive Pvt', 'Quality inspector', '2017-04-20', 9000.00, '2018-07-26', 10000.00, 'Chennai', '1', '1 years 3 months', 'Training period over', 1, '2021-04-30 10:56:35', 0, NULL, 0, NULL, 1),
(2528, 4680, 'HCL Technologies', 'Senior customer representative', '2018-09-20', 12000.00, '2021-04-26', 15000.00, 'Chennai', '1', '2 years 7 months', 'Financial issues', 1, '2021-04-30 11:00:34', 0, NULL, 0, NULL, 1),
(2529, 643, 'TharakRaman', 'Voices process', '2021-05-04', 13000.00, '1970-01-01', 10000.00, 'Kovilambakkam', '2', '0 years 0 months', ' Personal problem', 1, '2021-04-30 11:17:06', 0, NULL, 0, NULL, 1),
(2530, 4687, 'microne industries', 'telecaller', '2017-05-17', 10000.00, '2019-10-23', 12000.00, 'mount road', '1', '2 years 5 months', ' growth', 1, '2021-04-30 11:20:00', 0, NULL, 0, NULL, 1),
(2531, 4688, 'jana small finance bank', 'customer relationship officer', '2018-08-07', 12000.00, '2020-09-19', 15000.00, 'chennai', '1', '2 years 1 months', ' growth', 1, '2021-04-30 11:36:54', 0, NULL, 0, NULL, 1),
(2532, 4682, 'Indusind bank', 'Tele relationship manager', '2019-06-10', 150000.00, '2021-02-11', 150000.00, 'Karrapakkam', '1', '1 years 8 months', ' Next carrier growth', 1, '2021-04-30 11:40:54', 0, NULL, 0, NULL, 1),
(2533, 4689, 'Datumlyze pvt ltd', 'Technical data analyst', '2021-04-30', 300000.00, '1970-01-01', 300000.00, 'Chennai', '2', '0 years 0 months', 'They relieved many employees due to covid.', 1, '2021-04-30 12:17:37', 0, NULL, 0, NULL, 1),
(2534, 4689, 'Datumlyze pvt ltd', 'Technical data analyst', '2019-04-15', 300000.00, '1970-01-01', 300000.00, 'Chennai', '2', '2 years 0 months', 'Due to covid.', 1, '2021-04-30 12:21:19', 0, NULL, 0, NULL, 1),
(2535, 4691, 'a2z technologies', 'ui developer', '2020-01-20', 15000.00, '2021-03-31', 20000.00, 'chennai', '1', '1 years 2 months', ' ', 1, '2021-04-30 05:04:33', 0, NULL, 0, NULL, 1),
(2536, 4691, 'gowebez', 'Web developer Trainee', '2019-04-14', 7000.00, '2019-10-31', 7000.00, 'chennai', '1', '0 years 6 months', 'here my designation was trainee only so that move to other company ', 1, '2021-04-30 05:07:58', 0, NULL, 0, NULL, 1),
(2537, 4695, 'mass business solution', 'business process associate', '2020-12-26', 10000.00, '2021-05-01', 11000.00, 'chennai', '1', '0 years 4 months', 'process ramp down ', 1, '2021-05-03 09:20:15', 0, NULL, 0, NULL, 1),
(2538, 4696, 'aegis pvt ltd', 'customer service executive', '2018-03-17', 9000.00, '2018-10-15', 9000.00, 'chennai', '1', '0 years 6 months', ' growth', 1, '2021-05-03 09:25:30', 0, NULL, 0, NULL, 1),
(2539, 4696, 'm1 marketing services', 'telesales executive', '2018-11-14', 12000.00, '2019-11-26', 14000.00, 'chennai', '1', '1 years 0 months', 'growth', 1, '2021-05-03 09:26:28', 0, NULL, 0, NULL, 1),
(2540, 4696, 'customer broadcast', 'customer service executive', '2021-01-17', 13000.00, '2021-03-27', 13500.00, 'chennai', '1', '0 years 2 months', 'process ramp down', 1, '2021-05-03 09:27:28', 0, NULL, 0, NULL, 1),
(2541, 4697, 'na', 'customer support executive', '2018-06-09', 10000.00, '2019-06-17', 12000.00, 'chennai', '1', '1 years 0 months', 'Growth ', 1, '2021-05-03 09:32:08', 0, NULL, 0, NULL, 1),
(2542, 4701, 'Cams mutual funds ', 'Assistant processing officer ', '2019-10-07', 10000.00, '1970-01-01', 12000.00, 'Cams mutual funds mount road', '2', '1 years 6 months', 'Lesser salary', 1, '2021-05-03 11:46:55', 0, NULL, 0, NULL, 1),
(2543, 4705, 'IGRASHI INDIA PRIVATE LIMITED', 'Admin', '2019-08-01', 10000.00, '2021-02-15', 12000.00, 'Tambaram', '1', '1 years 6 months', ' Man power reduced in my office.so I am relieved.', 1, '2021-05-03 12:42:09', 0, NULL, 0, NULL, 1),
(2544, 4707, 'Accenture solutions private limited', 'Application Development Associate', '2015-10-07', 315000.00, '2017-01-27', 334256.00, 'Bangalore', '1', '1 years 3 months', ' ', 1, '2021-05-03 04:33:04', 0, NULL, 0, NULL, 1),
(2545, 4711, 'relaiance trenz', 'sales executive', '2020-05-11', 9000.00, '2021-04-20', 9000.00, 'chennai', '1', '0 years 11 months', ' salary', 1, '2021-05-04 08:55:45', 0, NULL, 0, NULL, 1),
(2546, 4712, 'relaience', 'sale excetive', '2020-05-11', 10000.00, '1970-01-01', 13000.00, 'chennai', '2', '0 years 11 months', ' salary', 1, '2021-05-04 10:05:23', 0, NULL, 0, NULL, 1),
(2547, 4714, 'Matrimony', 'Telecaller and collection', '2018-05-02', 15000.00, '2019-08-06', 15000.00, 'Gyndi', '1', '1 years 3 months', ' Accedent ', 1, '2021-05-04 11:30:09', 0, NULL, 0, NULL, 1),
(2548, 4718, 'urjanet energy solutions', 'data analyst', '2016-10-13', 11500.00, '2021-04-09', 18000.00, 'chennai', '1', '4 years 5 months', ' Low Package considering my years of experience.', 1, '2021-05-04 08:23:07', 0, NULL, 0, NULL, 1),
(2549, 4722, 'polaris', 'customer support executive', '2014-06-17', 8000.00, '2015-09-23', 10000.00, 'ambattur', '1', '1 years 3 months', ' growth', 1, '2021-05-05 10:52:36', 0, NULL, 0, NULL, 1),
(2550, 4722, 'samsung', 'sales executive', '2015-10-15', 13000.00, '2020-11-20', 18000.00, 'chennai', '1', '5 years 1 months', 'growth', 1, '2021-05-05 10:59:25', 0, NULL, 0, NULL, 1),
(2551, 4725, 'Eximo services & solutions private limited', 'Process associate', '2021-03-26', 12000.00, '2021-04-01', 12000.00, 'Ambattur', '1', '0 years 0 months', ' Long distance', 1, '2021-05-05 12:49:46', 0, NULL, 0, NULL, 1),
(2552, 4726, 'Eximo services & solutions private Limited', 'Process Associate', '2021-03-25', 12000.00, '2021-05-01', 12000.00, 'Ambattur', '1', '0 years 1 months', ' Its too long for travelling', 1, '2021-05-05 12:50:14', 0, NULL, 0, NULL, 1),
(2553, 4727, 'eximo service private limited', 'process associate', '2021-03-26', 10000.00, '2021-06-05', 12000.00, 'ambathur', '1', '0 years 2 months', 'It’s too long distance', 1, '2021-05-05 12:51:22', 0, NULL, 0, NULL, 1),
(2554, 4730, 'Hdfc two Wheeler loan department', 'Sales executive', '2020-09-07', 14000.00, '2021-02-05', 14000.00, 'Chennai', '1', '0 years 4 months', ' ', 1, '2021-05-05 02:32:10', 0, NULL, 0, NULL, 1),
(2555, 4731, 'PPTS', 'Process Associate', '2019-08-16', 12.50, '2020-10-31', 12.50, 'Coimbatore', '1', '1 years 2 months', ' Because of my marriage i shifted in chennai', 1, '2021-05-05 02:46:09', 0, NULL, 0, NULL, 1),
(2556, 4732, 'Tube products of India', 'Data entry operator', '2013-05-29', 7000.00, '2020-03-05', 12000.00, 'Avadi', '1', '6 years 9 months', ' ', 1, '2021-05-05 02:58:02', 0, NULL, 0, NULL, 1),
(2557, 4735, 'Gobumpr', 'customer Care ', '2021-03-03', 15000.00, '1970-01-01', 15000.00, 'gunidy', '2', '0 years 2 months', ' Process closed', 1, '2021-05-05 03:15:44', 0, NULL, 0, NULL, 1),
(2558, 4736, 'Cams pvt ltd', 'Customer care Executive ', '2018-08-23', 11500.00, '2021-01-06', 12700.00, 'Mount road ', '1', '2 years 4 months', 'Salary less ', 1, '2021-05-05 03:16:49', 0, NULL, 0, NULL, 1),
(2559, 4734, 'gobumpr', 'senior executive', '2020-11-10', 17300.00, '1970-01-01', 17300.00, 'guindy', '2', '0 years 5 months', ' ', 1, '2021-05-05 03:29:11', 0, NULL, 0, NULL, 1),
(2560, 4740, 'Matrimony', 'Telecalling', '2019-12-09', 5000.00, '2020-04-30', 6000.00, 'Kovilpatti', '1', '0 years 4 months', ' Salary is Not satisfied', 1, '2021-05-05 04:11:32', 1, '2021-05-05 04:22:23', 0, NULL, 1),
(2561, 4740, 'Jockey Showroom', 'Sales excecutive', '2017-04-28', 5000.00, '2020-08-07', 6000.00, 'Kovilpatti', '1', '3 years 3 months', 'Salary is Not satisfied', 1, '2021-05-05 04:13:38', 0, NULL, 0, NULL, 1),
(2562, 4741, 'Just dial', 'TME', '2018-01-03', 12500.00, '2020-06-05', 16000.00, 'Coimbatore', '1', '2 years 5 months', ' As I  need to change my Location I relieved my job. And one more thing it\'s my first company and I hav worked here only 6 months. After I worked another company till one and half years. Pls note it ', 1, '2021-05-05 04:16:02', 0, NULL, 0, NULL, 1),
(2563, 4740, 'HH TECH', 'Kitting Computerized', '2020-04-15', 10500.00, '2021-04-06', 10500.00, 'Chennai', '1', '0 years 11 months', 'Hostel is Not suitable. Then i Will try some salary increasing ', 1, '2021-05-05 04:19:30', 0, NULL, 0, NULL, 1),
(2564, 4743, 'Icici bank', 'Phone banking officer', '2019-05-15', 21000.00, '2020-01-12', 22000.00, 'Hyderabad', '1', '0 years 7 months', ' Salary', 1, '2021-05-05 07:33:26', 0, NULL, 0, NULL, 1),
(2565, 4733, 'Sriram life insurance', 'Senior sales executive', '2020-10-01', 1.00, '2021-03-30', 2.50, 'Hyderabad', '1', '0 years 5 months', ' That process is shotdown', 1, '2021-05-06 10:17:11', 0, NULL, 0, NULL, 1),
(2566, 4748, 'Accenture', 'Application development analyst', '2017-09-01', 25000.00, '2020-08-10', 40000.00, 'Bangalore', '1', '2 years 11 months', ' To change career path', 1, '2021-05-06 12:47:35', 0, NULL, 0, NULL, 1),
(2567, 4750, 'Concentrix', 'Customer service executive', '2019-12-07', 15.00, '2020-07-08', 13.50, 'Tidel park taramani', '1', '0 years 7 months', 'Bike accident for..my head...so not continued in my job ..and always .. inform that my Team leader..I will profer releaved for my company...', 1, '2021-05-06 02:38:07', 0, NULL, 0, NULL, 1),
(2568, 4753, 'inlogic technologies', 'software developer and designer', '2018-06-04', 16.00, '2020-09-16', 16.00, 'chennai', '1', '2 years 3 months', ' ', 1, '2021-05-06 04:28:00', 0, NULL, 0, NULL, 1),
(2569, 4754, 'le radar private limited', 'Web designer ', '2020-11-27', 20000.00, '2021-05-11', 25000.00, 'anna nagar chennai', '1', '0 years 5 months', 'Stop Company in Covid-19 Problems', 1, '2021-05-06 04:48:03', 0, NULL, 0, NULL, 1),
(2570, 4755, 'aagna global solutions', 'profit associate', '2017-10-18', 10000.00, '2020-05-15', 12000.00, 'chennai', '1', '2 years 6 months', ' gowth', 1, '2021-05-06 06:27:29', 0, NULL, 0, NULL, 1),
(2571, 4755, 'vertex company', 'cse', '2020-08-27', 12000.00, '2021-04-04', 13000.00, 'chennai', '1', '0 years 7 months', 'process ramp down', 1, '2021-05-06 06:28:18', 0, NULL, 0, NULL, 1),
(2572, 4690, 'global trendz', 'front-end-developer', '2018-10-24', 10.00, '1970-01-01', 15000.00, 'chennai', '2', '2 years 6 months', ' carreer growth', 1, '2021-05-07 10:48:57', 0, NULL, 0, NULL, 1),
(2573, 4760, 'version', 'caller', '2018-06-06', 10000.00, '2019-07-24', 12000.00, 'guindy', '1', '1 years 1 months', ' no hike,family problem', 1, '2021-05-07 11:10:57', 0, NULL, 0, NULL, 1),
(2574, 4761, 'Dharshan agencies', 'Admin cum coordinator', '2016-06-21', 8000.00, '2017-07-21', 9000.00, 'Madurai', '1', '1 years 1 months', ' For the exposure', 1, '2021-05-07 11:24:05', 0, NULL, 0, NULL, 1),
(2575, 4761, 'Oasis centre for reproductive medicine', 'Data entry operator', '2017-08-21', 13300.00, '2019-05-31', 14800.00, 'Anna nager east', '1', '1 years 9 months', 'I got a opportunity to work as a mIS executive', 1, '2021-05-07 11:27:23', 0, NULL, 0, NULL, 1),
(2576, 4761, 'Jaywon minerals pvt ltd', 'MIS coordinator', '2019-06-03', 22000.00, '2020-02-26', 22000.00, 'Arumbakkam', '1', '0 years 8 months', 'Company was closed due to financial problem', 1, '2021-05-07 11:29:18', 0, NULL, 0, NULL, 1),
(2577, 4763, 'pms consulting', 'junior software developer', '2018-06-06', 6000.00, '2019-08-30', 10000.00, 'villupuram', '1', '1 years 2 months', ' ', 1, '2021-05-07 11:56:58', 0, NULL, 0, NULL, 1),
(2578, 4763, 'spi global', 'developer - support', '2019-09-04', 15000.00, '1970-01-01', 15000.00, 'pondicherry', '2', '1 years 8 months', 'they told me the job is developer and didnt tell me that the job is support. i asked for development. they said no job currently available now. so i came out of the company', 1, '2021-05-07 11:59:47', 0, NULL, 0, NULL, 1),
(2579, 4763, 'technovators', 'software developer', '2020-03-02', 20000.00, '2020-03-20', 20000.00, 'chennai', '1', '0 years 0 months', 'Due to covid i left the job.', 1, '2021-05-07 12:02:33', 0, NULL, 0, NULL, 1),
(2580, 4763, 'mlts digital', 'software developer', '2020-07-01', 17000.00, '2021-04-23', 20000.00, 'villupuram', '1', '0 years 9 months', 'due to covid no more projects came. so i relived.', 1, '2021-05-07 12:04:31', 0, NULL, 0, NULL, 1),
(2581, 4764, 'Wabco', 'Dispatch telecaller', '2020-02-17', 13500.00, '2021-02-17', 15000.00, 'Ambattur', '1', '1 years 0 months', ' My contract got expired', 1, '2021-05-07 12:27:28', 0, NULL, 0, NULL, 1),
(2582, 4766, 'fis global solution', 'data control associate', '2019-10-10', 13000.00, '2021-05-07', 13000.00, 'ambattur', '2', '1 years 6 months', ' Night shifts then there is no increasing salary', 1, '2021-05-07 12:37:54', 0, NULL, 0, NULL, 1),
(2583, 4765, 'TVS Emerald', 'BDM', '2019-11-11', 14000.00, '1970-01-01', 25000.00, 'Chennai', '2', '1 years 5 months', ' Covid reason ', 1, '2021-05-07 12:37:57', 0, NULL, 0, NULL, 1),
(2584, 4738, 'cnn ventures', 'marketing manager', '2020-08-15', 20000.00, '2021-03-31', 25000.00, 'hyderabad', '1', '0 years 7 months', ' project completed', 1, '2021-05-07 12:57:59', 0, NULL, 0, NULL, 1),
(2585, 4769, 'incnut lifestyle retail pvt ltd', 'ops exe and team leader', '2020-08-01', 23000.00, '2021-02-17', 25000.00, 'gandimaisamma', '1', '0 years 6 months', ' lay off', 1, '2021-05-07 02:37:17', 0, NULL, 0, NULL, 1),
(2586, 4770, 'Hindustan Unilever limited', 'Sales promoter', '2020-02-01', 13000.00, '2021-03-01', 15000.00, 'Hyderabad', '1', '1 years 0 months', ' Some stores are closed due to corona', 1, '2021-05-07 03:43:02', 0, NULL, 0, NULL, 1),
(2587, 4771, 'Sam technologies ', 'Frontoffice ', '2018-03-02', 14.00, '2020-02-25', 14.00, 'Ambattur ', '1', '1 years 11 months', ' Covid 19', 1, '2021-05-07 03:56:25', 0, NULL, 0, NULL, 1),
(2588, 4772, 'Spicejet airlines', 'customer service Executive ', '2019-09-17', 25.00, '2021-05-05', 25.00, 'hyderabad ', '1', '1 years 7 months', ' Airlines are Down due to covid ', 1, '2021-05-07 04:32:44', 0, NULL, 0, NULL, 1),
(2589, 4775, 'Aachi Masala Foods Pvt Ltd', 'MIS Cum Sales Coordinator', '2015-08-30', 16000.00, '2017-11-30', 17000.00, 'Chennai', '1', '2 years 3 months', ' After my second maternity, left the job to take care of my kids', 1, '2021-05-07 04:57:26', 0, NULL, 0, NULL, 1),
(2590, 4774, 'hdfc life', 'sdmcm', '2018-08-10', 17000.00, '2019-05-10', 17000.00, 'secundrabad', '1', '0 years 9 months', 'to complete MBA ', 1, '2021-05-07 04:58:19', 0, NULL, 0, NULL, 1),
(2591, 4775, 'Urjanet Energy Solutions Pvt Ltd', 'Data Analyst', '2013-03-04', 12000.00, '2015-07-07', 16000.00, 'Chennai', '1', '2 years 4 months', 'Project down', 1, '2021-05-07 04:59:35', 0, NULL, 0, NULL, 1),
(2592, 4775, 'Trivent Systems Pvt Ltd', 'Litigation Support associate', '2010-01-04', 7000.00, '2012-01-31', 10000.00, 'Chennai', '1', '2 years 0 months', 'After 1st Maternity, as per doctor\'s advice left the job due to physical discomforts.', 1, '2021-05-07 05:08:39', 0, NULL, 0, NULL, 1),
(2593, 4775, 'Hotcourses India Pvt Ltd', 'Data Analyst', '2008-03-05', 9000.00, '2009-09-30', 11000.00, 'Chennai', '1', '1 years 6 months', 'Project down', 1, '2021-05-07 05:11:24', 0, NULL, 0, NULL, 1),
(2594, 4777, 'Brand Concepts Ltd ', 'Customer care associate', '2018-06-10', 12000.00, '2019-07-11', 12000.00, 'Panjagutta', '1', '1 years 1 months', ' Not satisfied with salary and was looking to work for a better organisation', 1, '2021-05-07 05:21:09', 0, NULL, 0, NULL, 1),
(2595, 4779, 'amazon', 'supervisor', '2019-06-20', 18000.00, '2021-05-07', 18000.00, 'alwal', '2', '1 years 10 months', ' not interested with current job', 1, '2021-05-07 06:08:10', 0, NULL, 0, NULL, 1),
(2596, 4780, 'gbs systems and services pvt. ltd', 'seo analyst web designer', '2018-07-01', 10000.00, '1970-01-01', 120000.00, 'chennai', '2', '2 years 10 months', ' Salary is low. No work from option. ', 1, '2021-05-07 09:41:57', 0, NULL, 0, NULL, 1),
(2597, 4782, 'Buddi.ai', 'Data Analyst ', '2020-09-26', 17450.00, '1970-01-01', 17450.00, 'Chennai', '2', '0 years 7 months', ' To gain different domain knowledge ', 1, '2021-05-08 10:20:01', 0, NULL, 0, NULL, 1),
(2598, 4783, 'cams', 'cse', '2016-07-14', 10000.00, '2021-02-08', 11000.00, 'chennai', '1', '4 years 6 months', ' growth', 1, '2021-05-08 10:37:00', 0, NULL, 0, NULL, 1),
(2599, 4785, 'ICICI Lombard', 'tele sale\'s officers', '2017-11-09', 9500.00, '2018-11-09', 18500.00, 'Hyderabad', '1', '1 years 0 months', ' Personal reasons', 1, '2021-05-08 11:20:11', 0, NULL, 0, NULL, 1),
(2600, 4784, 'icici bank', 'sr.sales executive', '2019-06-27', 18000.00, '2021-05-08', 18000.00, 'bachupally', '1', '1 years 10 months', 'looking for job change', 1, '2021-05-08 11:23:37', 0, NULL, 0, NULL, 1),
(2601, 4786, 'Rapidcare Transcription', 'Data Analyst', '2018-06-25', 12000.00, '2021-02-12', 19000.00, 'Chennai', '1', '2 years 7 months', ' My Career growth', 1, '2021-05-08 11:31:41', 0, NULL, 0, NULL, 1),
(2602, 4790, 'e-merge tech global service pvt ltd', 'research associate', '2018-10-01', 9000.00, '2020-12-31', 14000.00, 'chennai', '1', '2 years 3 months', 'Distance ', 1, '2021-05-08 09:45:42', 0, NULL, 0, NULL, 1),
(2603, 4781, 'Amazon', 'MIS Executive', '2018-06-25', 20000.00, '1970-01-01', 25000.00, 'Chennai', '2', '2 years 10 months', ' Career growth', 1, '2021-05-09 09:01:20', 0, NULL, 0, NULL, 1),
(2604, 4791, 'Data tracks', 'Data Analyst', '2019-11-01', 275000.00, '2020-12-24', 325000.00, 'Chennai', '1', '1 years 1 months', ' Want to search for other opportunities', 1, '2021-05-10 09:44:40', 0, NULL, 0, NULL, 1),
(2605, 4793, 'global tex pvt ltd', 'designer', '2018-07-14', 13000.00, '2020-02-14', 18000.00, 'madhapur', '1', '1 years 7 months', ' family Situation', 1, '2021-05-10 12:42:49', 0, NULL, 0, NULL, 1),
(2606, 4796, 'smart entrerprises', 'sales manager', '2018-01-03', 15000.00, '2021-03-01', 25000.00, 'raidurg', '1', '3 years 1 months', ' company is closed', 1, '2021-05-10 02:47:37', 0, NULL, 0, NULL, 1),
(2607, 4797, 'praham technologies', 'sales associate', '2019-05-01', 19000.00, '2021-05-05', 24000.00, 'banjara hills', '1', '2 years 0 months', ' company closed', 1, '2021-05-10 02:55:06', 0, NULL, 0, NULL, 1),
(2608, 4798, 'Royal sundaram general insurance Pvt. Ltd', 'Associate ', '2019-07-03', 17000.00, '2021-03-01', 15000.00, 'Nungampakkam ', '1', '1 years 7 months', ' Personal issues ', 1, '2021-05-10 03:42:08', 0, NULL, 0, NULL, 1),
(2609, 4799, 'health and glow', 'product expert', '2018-07-30', 15000.00, '2019-07-30', 15200.00, 'chennai', '1', '1 years 0 months', ' ', 1, '2021-05-10 04:13:13', 0, NULL, 0, NULL, 1),
(2610, 4799, 'flinto learning solution', 'customer support', '2019-08-17', 17000.00, '2020-01-24', 17000.00, 'sholinganallur', '1', '0 years 5 months', 'company went in loss. hence they started cost cutting.', 1, '2021-05-10 04:17:15', 0, NULL, 0, NULL, 1),
(2611, 4800, 'HTC GLOBAL SERVICES PVT LTD', 'Data conversion specialist', '2014-03-14', 5700.00, '2016-02-26', 5700.00, 'Chennai', '1', '1 years 11 months', ' ', 1, '2021-05-10 04:26:39', 0, NULL, 0, NULL, 1),
(2612, 4800, 'SS GAS AGENCIES', 'Executive', '2019-01-07', 17500.00, '2019-11-08', 17500.00, 'Guduvanchery', '1', '0 years 10 months', 'Career growth', 1, '2021-05-10 04:29:15', 0, NULL, 0, NULL, 1),
(2613, 4800, 'JETMOBILITY PVT LTD', 'Operation supervisor', '2019-11-14', 19000.00, '2021-02-28', 19000.00, 'Chennai', '1', '1 years 3 months', 'Operation shutdown', 1, '2021-05-10 04:33:58', 0, NULL, 0, NULL, 1),
(2614, 4801, 'Tv Sundaram motors private limited', 'Stock auditing', '2019-01-22', 9500.00, '1970-01-01', 12400.00, 'Mound road, Anna Salai', '2', '2 years 3 months', 'Last 2 year\'s I have an same Dept,and last 1 year Not given hike', 1, '2021-05-10 05:02:24', 0, NULL, 0, NULL, 1),
(2615, 4802, 'ntl', 'customer service executive', '2015-05-15', 8500.00, '2016-02-05', 8500.00, 'st thomas mount', '1', '0 years 8 months', 'To improve my knowledge', 1, '2021-05-10 06:07:11', 0, NULL, 0, NULL, 1),
(2616, 4802, 'cams', 'assistant processing officer', '2016-08-29', 10000.00, '2019-03-04', 13000.00, 'nungambakkam', '1', '2 years 6 months', 'Tried for police exam', 1, '2021-05-10 06:09:46', 0, NULL, 0, NULL, 1),
(2617, 4802, 'teleperformance', 'senior customer service executive', '2019-12-04', 16000.00, '2020-10-15', 16000.00, 'alandur', '1', '0 years 10 months', 'Due to process ramp down', 1, '2021-05-10 06:12:51', 0, NULL, 0, NULL, 1),
(2618, 4794, 'Justsee', 'UI designer', '2019-04-05', 15000.00, '1970-01-01', 20000.00, 'Chennai', '2', '2 years 1 months', ' ', 1, '2021-05-10 07:14:23', 0, NULL, 0, NULL, 1),
(2619, 4804, 'FITSYS INDIA PVT LTD', 'PHP Developer', '2019-01-02', 8000.00, '1970-01-01', 18000.00, 'Chennai', '2', '2 years 4 months', ' ', 1, '2021-05-10 07:14:57', 0, NULL, 0, NULL, 1),
(2620, 4794, 'Drifting media pvt ltd', 'Webdesoigner', '2018-03-07', 10000.00, '2021-04-01', 12000.00, 'Chennai', '1', '3 years 0 months', 'Low Salary ', 1, '2021-05-10 07:17:24', 0, NULL, 0, NULL, 1),
(2621, 4805, 'CK Motors Private Limited', 'Software Developer', '2021-07-01', 10000.00, '1970-01-01', 12000.00, 'Chennai', '2', '0 years 1 months', ' Company is currently  going to the Loss,So I am Relieve from the company', 1, '2021-05-11 11:14:55', 0, NULL, 0, NULL, 1),
(2622, 4807, 'icicibank', 'sales office', '2019-04-26', 16000.00, '1970-01-01', 20000.00, 'mumbai', '2', '2 years 0 months', 'family shifted to hyd  ', 1, '2021-05-11 12:56:11', 0, NULL, 0, NULL, 1),
(2623, 4808, 'Matrimony. Com', 'Php developer', '2018-06-25', 21000.00, '2021-04-07', 24000.00, 'Adyar', '1', '2 years 9 months', ' Working On same Technology and low Salary ', 1, '2021-05-11 01:57:50', 0, NULL, 0, NULL, 1),
(2624, 4809, 'metro cash and carry', 'field sales executive', '2020-02-02', 19600.00, '1970-01-01', 19600.00, 'suchipra', '2', '1 years 3 months', ' company scope is down', 1, '2021-05-11 04:03:26', 0, NULL, 0, NULL, 1),
(2625, 4810, 'action aid', 'field sales execuitve', '2017-01-04', 15000.00, '2020-07-30', 18000.00, 'secundrabad', '1', '3 years 6 months', ' due to pandemic', 1, '2021-05-11 04:13:03', 0, NULL, 0, NULL, 1),
(2626, 3987, 'Aptara Learning private limited', 'Trainee Document Specialist', '2020-02-21', 12000.00, '2020-10-31', 12000.00, 'Pallavaram', '1', '0 years 8 months', ' Health reasons', 1, '2021-05-11 04:46:37', 0, NULL, 0, NULL, 1),
(2627, 4812, 'Poorvika Mobile', 'Finance cum admin', '2020-10-01', 1.00, '2021-02-25', 2.50, 'Chennai', '1', '0 years 4 months', ' Personal', 1, '2021-05-11 05:13:43', 0, NULL, 0, NULL, 1),
(2628, 4814, 'clix capital', 'relationship officer', '2018-10-12', 16465.00, '2021-04-30', 19700.00, 'uppal', '1', '2 years 6 months', ' company closed', 1, '2021-05-11 05:26:28', 0, NULL, 0, NULL, 1),
(2629, 4813, 'sun business solution pvt ltd', 'customer support executive', '2018-10-14', 12000.00, '2019-07-27', 12000.00, 'chennai', '1', '0 years 9 months', 'process shut down', 1, '2021-05-11 05:36:32', 0, NULL, 0, NULL, 1),
(2630, 4813, 'aparajitha  dynamic synergies pvt ltd', 'back office associate', '2019-10-19', 16000.00, '1970-01-01', 20000.00, 'chennai', '2', '1 years 6 months', 'to change my profession', 1, '2021-05-11 05:39:13', 0, NULL, 0, NULL, 1),
(2631, 4815, 'hpcl', 'site incharge', '2021-01-15', 18000.00, '2021-04-20', 18000.00, 'challapally', '1', '0 years 3 months', ' contract completed', 1, '2021-05-11 05:49:27', 0, NULL, 0, NULL, 1),
(2632, 4817, 'jayam solutions', 'front end developer', '2021-01-01', 15000.00, '2021-04-30', 15000.00, 'chennai', '1', '0 years 3 months', ' Internship', 1, '2021-05-12 09:43:55', 1, '2021-05-12 09:45:17', 0, NULL, 1),
(2633, 4817, 'vistaconvert', 'front end developer', '2020-03-10', 15000.00, '2020-12-25', 15000.00, 'chennai', '1', '0 years 9 months', 'Internship', 1, '2021-05-12 09:44:55', 0, NULL, 0, NULL, 1),
(2634, 4817, 'robotics trainer', 'teacher', '2018-06-04', 16000.00, '2020-11-30', 16000.00, 'chennai', '1', '2 years 5 months', 'Personnal', 1, '2021-05-12 09:46:36', 0, NULL, 0, NULL, 1),
(2635, 4821, 'Sugi infotech PVT Ltd', 'UI DEVELOPER', '2018-02-01', 10000.00, '2021-01-13', 2.16, 'Madurai', '1', '2 years 11 months', ' Personal reasons', 1, '2021-05-12 01:31:34', 0, NULL, 0, NULL, 1),
(2636, 4822, 'Chola mandalam Finance', 'Deputy officer ', '2018-11-20', 13300.00, '2021-05-19', 16400.00, 'Parrys corner, chennai', '1', '2 years 5 months', ' Career growth', 1, '2021-05-12 03:21:37', 0, NULL, 0, NULL, 1),
(2637, 4823, 'daily minja', 'bdm', '2019-05-10', 20000.00, '2019-12-02', 20000.00, 'hitech city', '1', '0 years 6 months', ' due to lockdown', 1, '2021-05-12 04:07:13', 0, NULL, 0, NULL, 1),
(2638, 4825, 'Bnymellon International Operations India Pvt Ltd', 'Senior data processor ', '2019-05-27', 1.00, '1970-01-01', 18000.00, 'Chennai', '2', '1 years 11 months', 'At first, I Must thank my previous company, they are giving me the opportunity to works with them. I have learnt many things like time management, team management, how to works under pressure, how to maintain punctuality.\n\nAs we know, that Change is the part of life. I wish myself growing both professionally and financially. So I need to change my job for learning new technology, new works place.\n\nI know that this will help me to learn new technology and gives me new job environment.\n\nI put hard work to fulfil companies work and try to give a role in the company success.', 1, '2021-05-12 04:50:54', 0, NULL, 0, NULL, 1),
(2639, 4824, 'Hexaware BPS Solutions', 'Senior Analyst', '2018-06-25', 270000.00, '2019-08-30', 270000.00, 'Thuraipakkam', '1', '1 years 2 months', ' Started business with partnership and quit for some problems', 1, '2021-05-12 04:52:22', 0, NULL, 0, NULL, 1),
(2640, 4826, 'SWELECT ENERGY SYSTEMS LTD', 'Executive', '2019-01-02', 20000.00, '2019-10-31', 20000.00, 'Chennai', '1', '0 years 9 months', ' HUSBAND JOB TRANSFER TO HYDERABAD', 1, '2021-05-12 05:20:17', 0, NULL, 0, NULL, 1),
(2641, 4826, 'CITY UNION BANK LTD', 'ASSOCIATE', '2016-03-21', 17000.00, '2018-07-12', 17000.00, 'Chennai', '1', '2 years 3 months', 'TO TAKE CARE OF BABY', 1, '2021-05-12 05:22:01', 0, NULL, 0, NULL, 1),
(2642, 4826, 'BANK BAZAAR', 'JUNIOR PROCESS ANALYST', '2015-03-11', 12000.00, '2015-10-30', 12000.00, 'Chennai', '1', '0 years 7 months', 'GOT JOB IN BANK', 1, '2021-05-12 05:23:42', 0, NULL, 0, NULL, 1),
(2643, 4827, 'kotak mahindra bank', 'service office', '2019-06-03', 13000.00, '2021-01-03', 13000.00, 'ashok nagar', '1', '1 years 7 months', 'got new offer so relieved,but could not join so looking for new job ', 1, '2021-05-12 06:08:20', 0, NULL, 0, NULL, 1),
(2644, 4830, 'Kite career', 'Front end Developer', '2020-10-18', 8000.00, '2021-05-13', 12000.00, 'Tenkasi', '1', '0 years 6 months', 'Upgrade a Higher Level position', 1, '2021-05-13 10:00:45', 0, NULL, 0, NULL, 1),
(2645, 4831, 'Ntrust Infotech Private Limited', 'Process Associate', '2017-03-01', 11000.00, '2019-01-22', 15000.00, 'Chennai', '1', '1 years 10 months', ' Abroad Studies ', 1, '2021-05-13 10:04:47', 0, NULL, 0, NULL, 1),
(2646, 4831, 'Naveen Shipping Agency Private Limited', 'Data Entry ', '2016-07-22', 6000.00, '2016-12-23', 6000.00, 'Chennai', '1', '0 years 5 months', 'Better Opportunity', 1, '2021-05-13 10:05:59', 0, NULL, 0, NULL, 1),
(2647, 4818, 'yes or yes', 'ui developer', '2018-11-15', 300000.00, '2019-10-31', 300000.00, 'chennai', '1', '0 years 11 months', ' marriage', 1, '2021-05-13 10:39:29', 0, NULL, 0, NULL, 1),
(2648, 4834, 'rayaz technology', 'web designer', '2020-02-17', 10000.00, '2021-05-10', 12000.00, 'madurai', '1', '1 years 2 months', ' due to salary delay', 1, '2021-05-13 11:27:28', 0, NULL, 0, NULL, 1),
(2649, 4835, 'Lakshmi Kuberar Marketing', 'Administrative Assistance', '2019-12-08', 11000.00, '2021-02-26', 12000.00, 'Dindigul', '1', '1 years 2 months', ' The location where I worked is in Dindigul, I wanted to work in Chennai because I wanted to work in a reputed Company, and the data Analysis field has value in Chennai that\'s why i resigned The job', 1, '2021-05-13 12:05:01', 0, NULL, 0, NULL, 1),
(2650, 4839, 'SYKASYS TECHNOLOGIES', 'ASSOCIATE DEVELOPER', '2020-08-24', 12000.00, '2021-04-07', 12000.00, 'Work From home', '1', '0 years 7 months', 'SALARY HIKE WAS NOT PROVIDED AS CONVEYED', 1, '2021-05-13 03:35:22', 0, NULL, 0, NULL, 1),
(2651, 4839, 'FREELANCING', 'DEVELOPER', '2019-09-01', 10000.00, '2020-08-01', 10000.00, 'Work From Home', '1', '0 years 11 months', 'Unable to acquire clients', 1, '2021-05-13 03:36:49', 0, NULL, 0, NULL, 1),
(2652, 4842, '9flights services', 'Sales executive', '2020-07-21', 14000.00, '2020-12-16', 18600.00, 'banjara hills', '1', '0 years 4 months', 'Own business,loss so looking for job ', 1, '2021-05-13 03:58:12', 0, NULL, 0, NULL, 1),
(2653, 4846, 'Bajaj finserv ', 'asst sales manager', '2019-11-04', 24700.00, '2020-12-12', 24700.00, 'hyderabad', '1', '1 years 1 months', ' bad culture in company', 1, '2021-05-13 05:59:26', 0, NULL, 0, NULL, 1),
(2654, 4847, 'techneat info solution', 'webdeveloper', '2021-01-04', 25000.00, '1970-01-01', 25000.00, 'nagercoil', '2', '0 years 4 months', ' ', 1, '2021-05-14 11:22:55', 0, NULL, 0, NULL, 1),
(2655, 4850, 'Reliance infocommunication', 'Network engineer', '2020-02-13', 17500.00, '2020-10-05', 17500.00, 'Chennai', '1', '0 years 7 months', ' Looking for career development jobs', 1, '2021-05-14 03:34:39', 0, NULL, 0, NULL, 1),
(2656, 4849, 'IOPEX Technologies ', 'Media analyst ', '2019-02-25', 12500.00, '2021-04-24', 18000.00, 'Chennai ', '1', '2 years 1 months', ' I Just didn\'t get any breakthrough in my position so for much better growth and exposure I chose to move on and work in new environment. ', 1, '2021-05-14 03:38:01', 0, NULL, 0, NULL, 1),
(2657, 4851, 'Autosense Pvt Ltd', 'Team Leader ', '2014-05-27', 11000.00, '2020-12-02', 24000.00, 'Guindy ', '1', '6 years 6 months', ' Personal Reasons ', 1, '2021-05-14 04:06:11', 0, NULL, 0, NULL, 1),
(2658, 4852, 'Miramed Ajuba', 'Account Executive', '2016-12-19', 13000.00, '2018-07-13', 13000.00, 'Chennai', '1', '1 years 6 months', ' Health issues working on night shifts', 1, '2021-05-14 04:30:27', 0, NULL, 0, NULL, 1),
(2659, 4853, 'srichakra', 'sales execuitve', '2014-08-14', 22000.00, '2017-09-01', 28000.00, 'ap', '1', '3 years 0 months', 'resume to hyderabad for studies', 1, '2021-05-14 04:31:42', 0, NULL, 0, NULL, 1),
(2660, 4852, 'Tractors And Farming Equipments', 'Field Officer ', '2019-07-16', 20700.00, '2021-03-31', 20700.00, 'Chennai', '1', '1 years 8 months', 'Worked on off roll basis, contract expired', 1, '2021-05-14 04:32:57', 0, NULL, 0, NULL, 1),
(2661, 4854, 'aadheeshwar', 'sales execuitve', '2018-07-01', 18000.00, '2020-01-18', 25000.00, 'mosampet', '1', '1 years 6 months', ' family issue', 1, '2021-05-14 04:48:49', 0, NULL, 0, NULL, 1),
(2662, 4855, 'icici bank', 'phone banking officer', '2019-10-15', 15500.00, '2020-04-20', 15500.00, 'gachibowli', '1', '0 years 6 months', ' covid limited staff so resigned', 1, '2021-05-14 04:55:28', 0, NULL, 0, NULL, 1),
(2663, 4857, 'ar infra flock pvt', 'business associate', '2019-04-01', 2.00, '2021-02-05', 2.75, 'chennai', '1', '1 years 10 months', ' Due to pandemic we were facing lack of projects and eventually I was in the situation of loss of pay, and company was also about to shutdown untill further notice.', 1, '2021-05-14 05:57:04', 0, NULL, 0, NULL, 1),
(2664, 4866, 'First source solutions', 'Work force management', '2021-05-15', 16000.00, '2021-05-17', 15000.00, 'Navalur Chennai', '1', '0 years 0 months', ' Applied for GMAT exam to pursue MBA.  Due to covid dropped the GMAT exam now im looking forward for better carrier and professional growth ', 1, '2021-05-15 12:17:30', 0, NULL, 0, NULL, 1),
(2665, 4867, 'urbanrise', 'senior executive', '2020-11-11', 23000.00, '1970-01-01', 23000.00, 'miapur', '2', '0 years 6 months', ' no proper management and incentives not released', 1, '2021-05-15 01:03:09', 0, NULL, 0, NULL, 1),
(2666, 4868, 'icon organisation', 'trainee manager', '2021-01-22', 10000.00, '2021-04-27', 10000.00, 'moosapet', '1', '0 years 3 months', ' payment issue and no growth in company', 1, '2021-05-15 01:10:09', 0, NULL, 0, NULL, 1),
(2667, 4869, 'Fedbank Financial Service Ltd', 'Operation Executive ', '2018-11-15', 15000.00, '2019-09-20', 15000.00, 'Chennai ', '1', '0 years 10 months', 'Bike accident ', 1, '2021-05-15 01:52:07', 0, NULL, 0, NULL, 1),
(2668, 4870, 'globiva', 'field execuitve', '2021-03-03', 14000.00, '2021-05-05', 14000.00, 'bownpally', '1', '0 years 2 months', ' wife is pregnant need more salary', 1, '2021-05-15 01:58:19', 0, NULL, 0, NULL, 1),
(2669, 4871, 'bigbasss', 'bde', '2020-11-15', 13000.00, '1970-01-01', 13000.00, 'bangalore', '2', '0 years 6 months', ' company is planning to be closed. so looking for a new job', 1, '2021-05-15 03:03:50', 0, NULL, 0, NULL, 1),
(2670, 4872, 'ssrc', 'marketing manager', '2017-02-03', 22500.00, '2021-05-15', 22500.00, 'himayath sagar', '2', '4 years 3 months', 'long Distance company Shifted also due to covid', 1, '2021-05-15 03:33:53', 0, NULL, 0, NULL, 1),
(2671, 4881, 'R&s infotech', 'Front-end developer', '2020-04-06', 7000.00, '1970-01-01', 15000.00, 'Ramanathapuram', '2', '1 years 1 months', ' Learn a new things and get a better experience', 1, '2021-05-17 10:57:32', 0, NULL, 0, NULL, 1),
(2672, 4882, 'hdfc bank ltd', 'trainee', '2019-10-02', 19000.00, '2020-11-30', 19500.00, 'chennai', '1', '1 years 1 months', ' family medical issue,(dad heart attack first)', 1, '2021-05-17 11:19:54', 0, NULL, 0, NULL, 1),
(2673, 4882, 'cognizant', 'process executive', '2016-07-01', 10500.00, '2017-09-20', 10500.00, 'chennai', '1', '1 years 2 months', 'higher studies', 1, '2021-05-17 11:21:54', 0, NULL, 0, NULL, 1),
(2674, 4884, 'Anna University', 'System analyst', '2016-04-04', 20000.00, '1970-01-01', 20000.00, 'Chennai', '2', '5 years 1 months', ' ', 1, '2021-05-17 12:26:02', 0, NULL, 0, NULL, 1),
(2675, 4887, 'raju group of companies', 'rm', '2019-09-14', 15000.00, '2020-12-05', 25000.00, 'warangal', '1', '1 years 2 months', ' company has decreased in sales not moving out from company', 1, '2021-05-17 02:49:56', 0, NULL, 0, NULL, 1),
(2676, 4888, 'barthi airtel', 'cro', '2017-11-10', 16000.00, '1970-01-01', 19000.00, 'dilshuk nagar', '2', '3 years 6 months', ' for best Salary and to Improve your skills', 1, '2021-05-17 02:57:04', 0, NULL, 0, NULL, 1),
(2677, 4889, 'cresent pharma', 'territory sales manager', '2020-03-15', 13000.00, '2021-01-31', 13000.00, 'panjakutta', '1', '0 years 10 months', ' Personnel issue and moved to home town', 1, '2021-05-17 03:12:06', 0, NULL, 0, NULL, 1),
(2678, 4890, 'reliance smsl', 'sales associate', '2020-02-27', 13500.00, '2021-03-02', 13500.00, 'banjara hills', '1', '1 years 0 months', 'salary hike and for growth', 1, '2021-05-17 03:27:17', 0, NULL, 0, NULL, 1),
(2679, 4891, 'nettyfish networks', 'bde', '2021-02-18', 15000.00, '2021-05-17', 15000.00, 'amirpet', '2', '0 years 2 months', ' very less salary ', 1, '2021-05-17 03:44:16', 0, NULL, 0, NULL, 1),
(2680, 4892, 'swathi builder', 'crm', '2017-03-14', 18000.00, '2021-01-06', 30000.00, 'miapur', '1', '3 years 9 months', ' lack of new tender', 1, '2021-05-17 03:55:49', 0, NULL, 0, NULL, 1),
(2681, 4894, 'MAERSK', 'business associate', '2018-01-17', 15000.00, '2021-04-30', 204000.00, 'perungudi', '1', '3 years 3 months', ' enhance my career  growth', 1, '2021-05-17 04:21:51', 0, NULL, 0, NULL, 1),
(2682, 4895, 'feat business solution', 'junior developer', '2020-03-16', 10000.00, '1970-01-01', 15000.00, 'chennai', '2', '1 years 2 months', 'Salary insufficient', 1, '2021-05-17 04:41:08', 0, NULL, 0, NULL, 1),
(2683, 4897, 'tata consultancy services', 'process associate', '2017-01-31', 19000.00, '2020-05-20', 22000.00, 'chennai', '1', '3 years 3 months', ' got offer and rejected due to covid', 1, '2021-05-17 04:51:08', 0, NULL, 0, NULL, 1),
(2684, 4898, 'GMG SOLUTIONS', 'JUNIOR ASSOCIATE', '2020-02-03', 6000.00, '2020-09-12', 10000.00, 'KALLAKURICHI', '1', '0 years 7 months', ' PERSONAL CAUSES..', 1, '2021-05-17 05:03:45', 0, NULL, 0, NULL, 1),
(2685, 4900, ' 2k Services Private Limited', 'php developer', '2019-06-14', 10000.00, '2020-06-30', 13000.00, 'chennai', '1', '1 years 0 months', ' office closed due to corona', 1, '2021-05-17 07:17:18', 0, NULL, 0, NULL, 1),
(2686, 4900, ' C2Btech Private Limited', 'laravel full stack developer', '2020-07-14', 18000.00, '1970-01-01', 18900.00, 'chennai', '2', '0 years 10 months', 'working', 1, '2021-05-17 07:18:35', 0, NULL, 0, NULL, 1),
(2687, 4901, 'Sysco info tech', 'Php developer', '2019-01-20', 15000.00, '2021-05-17', 18000.00, 'Chennai', '2', '2 years 3 months', 'Low salary ', 1, '2021-05-17 07:21:14', 0, NULL, 0, NULL, 1),
(2688, 4896, 'feat business solution', 'junior developer', '2019-11-01', 10000.00, '1970-01-01', 15000.00, 'chennai', '2', '1 years 6 months', 'i want to improve myself', 1, '2021-05-17 07:33:34', 0, NULL, 0, NULL, 1),
(2689, 4902, 'kasthuri & co', 'php software developer', '2020-10-16', 20000.00, '1970-01-01', 20000.00, 'navalur', '2', '0 years 7 months', 'need to work in core company', 1, '2021-05-17 08:46:38', 0, NULL, 0, NULL, 1),
(2690, 4902, 'ram technologies', 'software developer', '2019-08-23', 12000.00, '1970-01-01', 15000.00, 't.nagar', '2', '1 years 8 months', 'Due to corona issue, no project available', 1, '2021-05-17 08:50:00', 0, NULL, 0, NULL, 1),
(2691, 4902, 'c2b tech', 'software developer', '2019-04-01', 7000.00, '2019-08-18', 7000.00, 'anna nagar', '1', '2 years 1 months', 'they gave testing work', 1, '2021-05-17 08:54:57', 0, NULL, 0, NULL, 1),
(2692, 4903, 'zaigoinfotech', 'web developer', '2018-06-05', 8000.00, '2021-05-07', 25000.00, 'chennai', '1', '2 years 11 months', 'personal reason', 1, '2021-05-18 10:11:42', 0, NULL, 0, NULL, 1),
(2693, 4885, 'igenuine soft solution', 'php developer', '2019-05-15', 12000.00, '2019-10-18', 9000.00, 'st.thomas mount', '1', '0 years 5 months', ' due to health issues.', 1, '2021-05-18 12:14:52', 0, NULL, 0, NULL, 1),
(2694, 4908, 'sri anantha padmanaba traader', 'marketing manager', '2019-02-01', 8000.00, '2021-04-30', 18000.00, 'mosapet', '1', '2 years 2 months', 'looking for job in Hyderabad, need to change in new sector', 1, '2021-05-18 03:43:17', 0, NULL, 0, NULL, 1),
(2695, 4909, '63 ideas info lab', 'tbm', '2020-04-09', 16000.00, '2021-05-18', 22500.00, 'hyath nagar', '2', '1 years 1 months', ' looking for change in career no growth in the company', 1, '2021-05-18 03:49:49', 0, NULL, 0, NULL, 1),
(2696, 4911, 'vedamsa agro products', 'management trainee', '2020-08-27', 19000.00, '1970-01-01', 19000.00, 'medchand', '2', '0 years 8 months', ' no promotion company is in critical position', 1, '2021-05-18 04:43:56', 0, NULL, 0, NULL, 1),
(2697, 4912, 'HCL technologies Pvt Ltd', 'Associate', '2019-04-10', 12500.00, '2021-04-15', 14000.00, 'Navalur, Chennai', '1', '2 years 0 months', 'Due to some personal Economical Issue and Also I want  to settled in good position.', 1, '2021-05-18 04:52:24', 0, NULL, 0, NULL, 1),
(2698, 4914, 'jayal suzuki', 'telecaller and backend', '2020-11-15', 11000.00, '2021-03-25', 16000.00, 'kuketpally', '1', '0 years 4 months', ' too far, till 8 o clock work', 1, '2021-05-18 04:59:54', 0, NULL, 0, NULL, 1),
(2699, 4913, 'Zydus Wellness Products Ltd ', 'MIS', '2014-03-05', 12000.00, '1970-01-01', 26000.00, 'Alwapet Chennai ', '2', '7 years 2 months', ' Leaving My current job and taking on a new challenge. I believe that this MIS role is growing next level in my career. ', 1, '2021-05-18 05:32:25', 0, NULL, 0, NULL, 1),
(2700, 4920, 'Golden pay fintech private limited', 'Front end developer', '2018-10-01', 18000.00, '1970-01-01', 24000.00, 'Chennai', '2', '2 years 7 months', ' Searching for better opportunity', 1, '2021-05-19 10:57:35', 0, NULL, 0, NULL, 1),
(2701, 4925, 'vip industries pvt ltd', 'sr.sales executive', '2018-03-03', 15000.00, '2021-02-21', 21500.00, 'banjara hills', '1', '2 years 11 months', ' not interested in off role job, looking for on role job ', 1, '2021-05-19 02:38:54', 0, NULL, 0, NULL, 1),
(2702, 4926, 'r r donnelley', 'document specialist ', '2017-06-22', 120000.00, '2018-06-15', 120000.00, 'chennai', '1', '0 years 11 months', ' Its Is contract based job', 1, '2021-05-19 03:05:47', 0, NULL, 0, NULL, 1),
(2703, 4926, 'trayee business solutions p ltd', 'processing executive', '2019-02-25', 120000.00, '1970-01-01', 140000.00, 'chennai', '2', '2 years 2 months', 'iam having more than 3 years of experience and good knowledge to develop my skills in another organizations.', 1, '2021-05-19 03:14:03', 0, NULL, 0, NULL, 1),
(2704, 4932, 'club mahindra holidays and resorts', 'sr.telemarketing exec', '2019-11-26', 16000.00, '2020-12-15', 17000.00, 'begumpet', '1', '1 years 0 months', ' no growth in company we  need to move out from company', 1, '2021-05-19 05:41:16', 0, NULL, 0, NULL, 1),
(2705, 4933, 'Gs Infomatics', 'Web Developer', '2021-01-03', 4000.00, '1970-01-01', 6000.00, 'Villupuram', '2', '0 years 4 months', ' For good exposure', 1, '2021-05-19 05:59:50', 0, NULL, 0, NULL, 1),
(2706, 4936, 'the new indian express', 'asst sales officer', '2018-09-15', 15000.00, '2021-01-15', 20000.00, 'somajiguda', '1', '2 years 4 months', ' contract got over and terminated so looking for job change', 1, '2021-05-20 12:39:42', 0, NULL, 0, NULL, 1),
(2707, 4946, 'Omegahealth Private ltd', 'Process assiocate', '2018-10-24', 8000.00, '2019-10-31', 10000.00, 'Trichy', '1', '1 years 0 months', ' Mom Health issuse', 1, '2021-05-20 03:15:22', 0, NULL, 0, NULL, 1),
(2708, 4949, 'builders smart', 'sr sales exec', '2021-01-05', 18000.00, '2021-04-05', 18000.00, 'jubliee hills', '1', '0 years 3 months', 'pandamic situation project ramdown ', 1, '2021-05-20 04:22:20', 0, NULL, 0, NULL, 1),
(2709, 4950, 'STAR ADVERTISING AGENCY', 'Marketing Executive', '2018-02-05', 18000.00, '1970-01-01', 18000.00, 'hyderabad', '2', '3 years 3 months', ' job change', 1, '2021-05-20 05:02:05', 0, NULL, 0, NULL, 1),
(2710, 4956, 'SBI CARD', 'Associate', '2020-05-04', 16682.00, '2021-05-31', 16682.00, 'Chennai', '1', '1 years 0 months', ' Career development', 1, '2021-05-21 12:03:25', 0, NULL, 0, NULL, 1),
(2711, 4953, 'calibehr business support services pvt  ltd', 'dip executive', '2019-05-06', 10000.00, '2020-08-10', 10000.00, 'chennai', '1', '1 years 3 months', ' ', 1, '2021-05-21 12:07:27', 0, NULL, 0, NULL, 1),
(2712, 4955, 'doodleblue innovations', 'frontend engineer', '2020-05-11', 264000.00, '2021-03-31', 264000.00, 'chennai', '1', '0 years 10 months', ' Didn’t find The work that much interesting. Projects i was working didn’t help me in learning and developing', 1, '2021-05-21 12:08:30', 0, NULL, 0, NULL, 1),
(2713, 4953, 'tafe(tractor & farmer equipment )', 'mis executive', '2020-12-07', 15000.00, '2021-03-31', 15000.00, 'nungambakkam', '1', '0 years 3 months', 'project closed', 1, '2021-05-21 12:08:48', 0, NULL, 0, NULL, 1),
(2714, 4955, 'snippt media private ltd', 'app developer', '2019-11-11', 192000.00, '2020-03-31', 192000.00, 'chennai', '1', '0 years 4 months', 'I was fired with 5 other people as they shut down the service wing of that company to meet the financial needs.', 1, '2021-05-21 12:11:00', 0, NULL, 0, NULL, 1),
(2715, 4958, 'Cambridge technology enterprise ', 'IT SUPPORT ', '2017-07-21', 10000.00, '2018-10-30', 10000.00, 'Chennai ', '1', '1 years 3 months', ' Company shifted ', 1, '2021-05-21 01:17:20', 0, NULL, 0, NULL, 1),
(2716, 4958, 'Hexaware technology ', 'Senior executive ', '2018-11-01', 15000.00, '2019-08-01', 15000.00, 'Chennai ', '1', '0 years 9 months', 'Personal issues went to native to sort out some problems ', 1, '2021-05-21 01:19:14', 0, NULL, 0, NULL, 1),
(2717, 4958, 'Mmc Info tech ', 'Senior executive ', '2019-11-22', 15000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '1 years 5 months', 'Still working ', 1, '2021-05-21 01:20:42', 0, NULL, 0, NULL, 1),
(2718, 4959, 'Cams insurance repository services ', 'Call center officer', '2019-04-23', 12000.00, '2021-05-31', 13800.00, 'Mount road', '1', '2 years 1 months', 'I Want to improve myself in an different environment.', 1, '2021-05-21 01:35:31', 0, NULL, 0, NULL, 1),
(2719, 4961, 'CHOLAMANDALAM investment and finance', 'Deputy officer', '2019-09-10', 1.00, '1970-01-01', 240000.00, 'Chennai', '2', '1 years 8 months', ' Development and upgraded in my knowledge', 1, '2021-05-21 04:02:48', 0, NULL, 0, NULL, 1),
(2720, 4963, 'Mozhi solution', 'Front end developer', '2021-01-01', 7500.00, '2021-03-31', 10000.00, 'Chennai', '1', '0 years 2 months', ' The project currently stopped', 1, '2021-05-23 07:14:21', 0, NULL, 0, NULL, 1),
(2721, 4963, 'Vellore online system', 'System engineer', '2019-02-01', 6500.00, '2019-10-31', 8000.00, 'Vellore', '1', '0 years 8 months', 'Interested in Developing', 1, '2021-05-23 07:16:18', 0, NULL, 0, NULL, 1),
(2722, 4967, 'aparna enterprises', 'asst.sales  officer', '2020-02-18', 15000.00, '2020-11-20', 15000.00, 'jubilee hills', '1', '0 years 9 months', ' looking for new offer, and salaried job', 1, '2021-05-25 12:30:11', 0, NULL, 0, NULL, 1),
(2723, 4968, 'nalamore', 'field sales', '2020-02-20', 25000.00, '2020-04-13', 25000.00, 'jubilee hills', '1', '0 years 1 months', 'salary is not ok', 50, '2021-05-25 12:57:40', 0, NULL, 0, NULL, 1),
(2724, 4969, 'machine pools', 'tech sales engg', '2019-05-15', 18000.00, '1970-01-01', 25000.00, 'hyderabad', '2', '2 years 0 months', 'Due to covid Company not Releasing full salary ', 1, '2021-05-25 02:11:44', 0, NULL, 0, NULL, 1),
(2725, 4971, 'Netaccess India private limited', 'Asset Manager', '2018-12-24', 1.60, '2021-05-31', 1.60, 'Chennai', '1', '2 years 5 months', ' Not providing hike', 1, '2021-05-25 03:59:11', 0, NULL, 0, NULL, 1),
(2726, 4970, 'cholamandalam Investment and finance Company pvt l', 'executive', '2017-03-20', 10000.00, '1970-01-01', 23600.00, 'Chennai', '2', '4 years 2 months', ' Carrier Development ', 1, '2021-05-25 04:25:38', 0, NULL, 0, NULL, 1),
(2727, 4972, 'MMC Info tech ', 'Call Verification Executive', '2015-06-01', 8000.00, '2018-12-22', 16000.00, 'Chennai', '1', '3 years 6 months', ' For growth and Financial development', 1, '2021-05-25 04:41:25', 0, NULL, 0, NULL, 1),
(2728, 4973, 'Tech Mahindra', 'Senior customer support executive', '2020-07-21', 14500.00, '2021-03-27', 14500.00, 'Chennai', '1', '0 years 8 months', ' Process ramdown', 1, '2021-05-25 04:44:46', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2729, 4972, 'Teleperformance', 'Senior Customer Service Associate.Data', '2019-04-02', 25000.00, '2019-12-08', 26300.00, 'Ambattur', '1', '0 years 8 months', 'Personal Reasons', 1, '2021-05-25 04:45:18', 0, NULL, 0, NULL, 1),
(2730, 4973, 'Teleperformance', 'Customer support executive', '2018-12-18', 12000.00, '2020-06-30', 12000.00, 'Indore', '1', '1 years 6 months', 'Covid 19 situation', 1, '2021-05-25 04:46:45', 0, NULL, 0, NULL, 1),
(2731, 4973, 'Zealous service', 'Customer support executive', '2017-02-02', 9500.00, '2017-10-30', 9500.00, 'Chennai', '1', '0 years 8 months', 'Health issues', 1, '2021-05-25 04:50:25', 0, NULL, 0, NULL, 1),
(2732, 4964, 'Indra gandhi Center for atomic Research ', 'Programming assistant ', '2019-10-21', 10.00, '1970-01-01', 13000.00, 'Kalpakkam', '2', '1 years 7 months', 'End of the contract period ', 1, '2021-05-26 09:21:04', 0, NULL, 0, NULL, 1),
(2733, 4975, 'connect business solutions', 'cse', '2019-05-21', 12000.00, '2020-06-01', 14000.00, 'begumpet', '1', '1 years 0 months', 'pandamic reason ', 1, '2021-05-26 11:13:34', 0, NULL, 0, NULL, 1),
(2734, 4980, 'Information technology', 'UI developement', '2017-08-02', 9500.00, '1970-01-01', 26000.00, 'Chennai', '2', '3 years 9 months', 'Current ctc has been increasing, and loved to work in a different framework & environment', 1, '2021-05-26 06:08:06', 0, NULL, 0, NULL, 1),
(2735, 4983, 'Cube45 Ecommerce private limited', 'Web designing SME', '2016-08-17', 8000.00, '1970-01-01', 25000.00, 'Porur', '2', '4 years 9 months', ' Salary issues', 1, '2021-05-26 07:17:53', 0, NULL, 0, NULL, 1),
(2736, 4981, 'Caliberfocus business solutions', 'ui developer', '2019-11-11', 8.00, '1970-01-01', 26760.00, 'Chennai', '2', '1 years 6 months', ' For Career growth', 1, '2021-05-26 09:46:00', 0, NULL, 0, NULL, 1),
(2737, 4985, 'oasys cybernetics pvt ltd', 'ux/ui developer and designer', '2019-11-11', 2.60, '1970-01-01', 2.60, 'chennai', '2', '1 years 6 months', ' Salary Issues and No Hike', 1, '2021-05-27 09:48:51', 0, NULL, 0, NULL, 1),
(2738, 4985, 'spiot systems pvt ltd', 'web designer', '2019-06-03', 1.00, '2019-11-10', 1.00, 'chennai', '1', '0 years 5 months', 'Traineee', 1, '2021-05-27 09:50:51', 0, NULL, 0, NULL, 1),
(2739, 4986, 'irend infotech', 'web designer', '2018-07-02', 7500.00, '2019-11-11', 10500.00, 'chennai', '1', '1 years 4 months', ' Found A New Job ', 1, '2021-05-27 10:17:27', 0, NULL, 0, NULL, 1),
(2740, 4986, 'galore mnetworks', 'ui developer', '2019-11-18', 18000.00, '2021-05-31', 18000.00, 'chennai', '2', '1 years 6 months', 'learning new technology', 1, '2021-05-27 10:21:27', 0, NULL, 0, NULL, 1),
(2741, 4993, 'Synchrony International', 'Senior Specialist', '2020-05-27', 25000.00, '2021-04-06', 27000.00, 'hyderabad', '1', '0 years 10 months', 'job change ', 1, '2021-05-27 12:34:34', 0, NULL, 0, NULL, 1),
(2742, 4996, 'paytm', 'fse', '2020-11-20', 13800.00, '2021-04-01', 13800.00, 'gachibowli', '1', '0 years 4 months', 'pandameic and issue with paytm  ', 1, '2021-05-27 02:42:55', 0, NULL, 0, NULL, 1),
(2743, 4998, 'reliance smart', 'csa', '2018-08-04', 5000.00, '2019-09-05', 5000.00, 'gachibowli', '1', '1 years 1 months', ' to do higher studies ', 1, '2021-05-27 02:52:45', 0, NULL, 0, NULL, 1),
(2744, 4999, 'fimwiz', 'telcaller', '2021-05-06', 13000.00, '2021-05-27', 13000.00, 'shenoy nagar', '2', '0 years 0 months', 'not comfortable in the job ', 1, '2021-05-27 03:52:03', 0, NULL, 0, NULL, 1),
(2745, 5002, 'Imperium', 'Web /ui designer', '2020-04-02', 25000.00, '1970-01-01', 25000.00, 'Chennai', '2', '1 years 1 months', ' Better oppertunity', 1, '2021-05-27 05:44:05', 0, NULL, 0, NULL, 1),
(2746, 5010, 'ravi education', 'tc', '2020-11-15', 12000.00, '1970-01-01', 12000.00, 'mehandhipatnam', '2', '0 years 6 months', ' seeking a hike so changing to new job', 1, '2021-05-28 02:56:13', 0, NULL, 0, NULL, 1),
(2747, 5011, 'celebrada', 'field sales', '2021-02-10', 20000.00, '1970-01-01', 20000.00, 'kuketpally', '2', '0 years 3 months', 'need hike in salary ', 1, '2021-05-28 03:12:33', 0, NULL, 0, NULL, 1),
(2748, 5018, 'hindusthan cococola ', 'marketing execuitve', '2018-07-12', 15000.00, '2019-03-21', 15000.00, 'mowlali', '1', '0 years 8 months', 'Pandemic ', 1, '2021-05-29 12:02:14', 0, NULL, 0, NULL, 1),
(2749, 5019, 'Zoogle Technologies Pte Ltd', 'PHP Developer', '2019-12-16', 8500.00, '2020-12-19', 15000.00, 'Puducherry', '1', '1 years 0 months', ' Shifted to Chennai', 1, '2021-05-29 01:48:07', 0, NULL, 0, NULL, 1),
(2750, 5020, 'phonepe ', 'field sales executive', '2020-05-31', 20000.00, '2021-05-07', 20000.00, 'secundrabad', '1', '0 years 11 months', 'due to lockdown no salary hike ', 1, '2021-05-29 02:07:03', 0, NULL, 0, NULL, 1),
(2751, 5021, 'Birla precision technologies ltd ', 'Asst.Officer ', '2017-10-04', 20000.00, '2020-10-04', 20000.00, 'secundrabad', '1', '3 years 0 months', 'planned to study in uk visa got extended now looking for job ', 1, '2021-05-29 02:56:10', 0, NULL, 0, NULL, 1),
(2752, 5025, 'cresent tax filing', 'support analyst', '2018-11-12', 8000.00, '2020-03-21', 8000.00, 'tarnaka', '1', '1 years 4 months', 'looking for career growth ', 1, '2021-05-31 12:00:27', 0, NULL, 0, NULL, 1),
(2753, 5026, 'kammam municipal corporation', 'outsourcing ', '2019-12-14', 10000.00, '2021-02-28', 10000.00, 'kammam', '1', '1 years 2 months', 'contract over ', 1, '2021-05-31 12:09:11', 0, NULL, 0, NULL, 1),
(2754, 5027, 'saidarpet enterprises', 'telecaller', '2020-10-12', 15000.00, '2021-04-01', 15000.00, 'amirpet', '1', '0 years 5 months', 'no wfh and can go to office ', 1, '2021-05-31 01:12:59', 0, NULL, 0, NULL, 1),
(2755, 5037, 'santhila databot', 'junior web developer', '2020-01-24', 6000.00, '1970-01-01', 8000.00, 'erode', '2', '1 years 4 months', 'salary hike', 1, '2021-06-01 01:58:41', 1, '2021-06-01 01:59:10', 0, NULL, 1),
(2756, 5038, 'Cms computer limited', 'Project management', '2018-02-02', 25000.00, '2021-02-10', 25000.00, 'Chennai', '1', '3 years 0 months', ' Career growth', 1, '2021-06-01 02:30:16', 0, NULL, 0, NULL, 1),
(2757, 5039, 'V & Co Consultants and Service Private Limited', 'Sales Coordinator', '2014-11-01', 9000.00, '2015-11-30', 10000.00, 'Chennai', '1', '1 years 0 months', ' Career Growth', 1, '2021-06-01 03:38:51', 0, NULL, 0, NULL, 1),
(2758, 5039, 'Supreme Computers India Private Limited', 'MIS Executive', '2016-03-14', 13000.00, '1970-01-01', 20000.00, 'Chennai', '2', '5 years 2 months', 'Career growth', 1, '2021-06-01 03:41:44', 0, NULL, 0, NULL, 1),
(2759, 5040, 'Isys technologies ', 'Web developer ', '2020-11-04', 15000.00, '1970-01-01', 15000.00, 'Broadway ', '2', '0 years 6 months', ' Looking to work under challenging environment ', 1, '2021-06-01 03:49:53', 0, NULL, 0, NULL, 1),
(2760, 5041, 'BYJU\'S', 'MIS EXECUTIVE', '2019-02-07', 16000.00, '1970-01-01', 20000.00, 'Chennai', '2', '2 years 3 months', ' Better growth in perspective of more challenging work environment and better salary ', 1, '2021-06-01 05:35:31', 0, NULL, 0, NULL, 1),
(2761, 5043, 'Invent {iT} Solutions', 'Software engineer', '2018-11-01', 8500.00, '2020-10-31', 8500.00, 'Thiruvallur', '1', '1 years 11 months', ' No Projects due to Covid', 1, '2021-06-01 06:52:39', 0, NULL, 0, NULL, 1),
(2762, 5035, 'ford india pvt ltd', 'production trainee', '2014-06-04', 7900.00, '2015-06-03', 7900.00, 'chengalpattu  ', '1', '0 years 11 months', ' Training Completion', 1, '2021-06-01 09:07:21', 0, NULL, 0, NULL, 1),
(2763, 5035, 'infofort ', 'document controller', '2016-04-27', 30000.00, '2018-04-17', 30000.00, 'muscat', '1', '1 years 11 months', 'Contract Finished', 1, '2021-06-01 09:09:09', 0, NULL, 0, NULL, 1),
(2764, 5035, 'geedesk technologies', 'technical consultant', '2018-09-24', 12000.00, '2019-09-24', 15000.00, 'puducherry', '1', '1 years 0 months', 'Transferred to Development team ', 1, '2021-06-01 09:11:47', 1, '2021-06-01 09:14:53', 0, NULL, 1),
(2765, 5035, 'geedesk technologies', 'php developer', '2019-09-30', 18000.00, '1970-01-01', 22000.00, 'puducherry', '2', '1 years 8 months', 'nil', 1, '2021-06-01 09:13:13', 1, '2021-06-01 09:15:18', 0, NULL, 1),
(2766, 5047, 'bpo convergence', 'captain care centre', '2020-10-22', 12000.00, '2021-05-14', 12000.00, 'amirpet', '1', '0 years 6 months', 'due to pandamic and layoff from the company ', 1, '2021-06-02 02:38:36', 0, NULL, 0, NULL, 1),
(2767, 5050, 'globytex', 'backend developer', '2020-01-10', 8000.00, '1970-01-01', 18000.00, 'cuddalore', '2', '1 years 4 months', ' ', 1, '2021-06-03 12:45:32', 0, NULL, 0, NULL, 1),
(2768, 5051, 'stmontech', 'software developer', '2016-05-02', 6000.00, '2017-10-31', 15000.00, 'chennai', '1', '1 years 5 months', 'Looking for career growth', 1, '2021-06-03 02:29:20', 0, NULL, 0, NULL, 1),
(2769, 5051, 'genie edtech', 'web developer - php', '2017-07-12', 10000.00, '1970-01-01', 10000.00, 'chennai', '2', '3 years 10 months', 'Looking for career growth', 1, '2021-06-03 02:31:50', 0, NULL, 0, NULL, 1),
(2770, 5055, 'Altruist technologies', 'MIS Executive', '2018-11-13', 8000.00, '2019-12-30', 10700.00, 'Perungudi', '1', '1 years 1 months', ' Head injured', 1, '2021-06-04 02:10:49', 1, '2021-06-04 02:14:15', 0, NULL, 1),
(2771, 5055, 'Bilight solutions', 'Data analyst', '2021-02-10', 10700.00, '2021-05-29', 10700.00, 'Nungambakkam', '1', '0 years 3 months', 'Project canceled', 1, '2021-06-04 02:13:01', 0, NULL, 0, NULL, 1),
(2772, 5056, 'ashok leyland - layam contract', 'quality inspector', '2017-04-05', 10000.00, '2018-04-10', 10000.00, 'chennai', '1', '1 years 0 months', ' Contract completed', 1, '2021-06-04 02:46:56', 0, NULL, 0, NULL, 1),
(2773, 5056, 'ashok leyland - wwl contract', 'mis executive', '2018-04-12', 13000.00, '2019-10-20', 17000.00, 'chennai', '1', '1 years 6 months', 'Contract Completed', 1, '2021-06-04 02:48:29', 0, NULL, 0, NULL, 1),
(2774, 5056, 'big basket', 'mis executive', '2019-11-05', 17000.00, '2020-04-20', 17000.00, 'chennai', '1', '0 years 5 months', 'Lost my job due to Covid-19', 1, '2021-06-04 02:49:56', 0, NULL, 0, NULL, 1),
(2775, 5056, 'ponnusamy distributors', 'mis executive', '2020-05-02', 20000.00, '1970-01-01', 21500.00, 'chennai', '2', '1 years 1 months', 'it was my relative business, they cannot able to mange their business due to covid lockdown also i am looking for permanent and better position', 1, '2021-06-04 02:52:29', 0, NULL, 0, NULL, 1),
(2776, 5057, 'Yes Bank pvt Ltd', 'Pre CPV UNDERWRITER', '2019-09-03', 11000.00, '1970-01-01', 11000.00, 'Ambattur', '2', '1 years 9 months', ' ', 1, '2021-06-04 02:53:51', 0, NULL, 0, NULL, 1),
(2777, 5058, 'NTT data', 'Senior associate', '2017-09-04', 8000.00, '2019-05-20', 12000.00, 'Coimbatore', '1', '1 years 8 months', ' Personal', 1, '2021-06-04 03:00:02', 0, NULL, 0, NULL, 1),
(2778, 5058, 'Indusind bank', 'Cost analysis', '2020-03-09', 16000.00, '1970-01-01', 16000.00, 'Chennai', '2', '1 years 2 months', 'No', 1, '2021-06-04 03:01:29', 0, NULL, 0, NULL, 1),
(2779, 5059, 'Standard chartered Bank', 'Client Delivery Analyst', '2019-01-28', 17000.00, '1970-01-01', 21000.00, 'Chennai', '2', '2 years 4 months', ' To explore new opportunities and atmosphere to work', 1, '2021-06-04 05:19:34', 0, NULL, 0, NULL, 1),
(2780, 5065, 'saifai technology', 'team leader', '2017-05-07', 17000.00, '2019-07-09', 17000.00, 'vepery', '1', '2 years 2 months', 'company disclosed', 1, '2021-06-05 09:44:53', 0, NULL, 0, NULL, 1),
(2781, 5067, 'bosch', 'marketing execuitve', '2019-02-11', 20000.00, '2021-04-03', 23000.00, 'old city', '1', '2 years 1 months', 'marriage leave and looking for new job ', 1, '2021-06-05 10:44:16', 0, NULL, 0, NULL, 1),
(2782, 5069, 'uniersal enrterprises', 'sales executive', '2019-12-15', 14000.00, '2021-06-05', 18000.00, 'bownpally', '2', '1 years 5 months', 'for salary increment ', 1, '2021-06-05 02:16:16', 0, NULL, 0, NULL, 1),
(2783, 5070, 'mm reddy', 'sales manager', '2016-05-08', 18000.00, '2019-12-28', 26000.00, 'vikarabad', '1', '3 years 7 months', 'no growth and only one sales ', 1, '2021-06-05 03:25:36', 0, NULL, 0, NULL, 1),
(2784, 5071, 'karadecone international', 'sales and marketing team', '2019-02-25', 18000.00, '2021-01-10', 23000.00, 'ap', '1', '1 years 10 months', 'pandamic they are only involving core team so looking for new job ', 1, '2021-06-05 03:48:27', 0, NULL, 0, NULL, 1),
(2785, 5064, 'Cafs', 'Telecaller', '2021-06-05', 5.00, '1970-01-01', 12.00, 'Thiruvallur', '2', '0 years 0 months', ' Because  of Covid 19 lockdown', 1, '2021-06-05 06:52:50', 0, NULL, 0, NULL, 1),
(2786, 5064, 'Prodata ', 'Csa', '2019-11-11', 150000.00, '1970-01-01', 15000.00, 'Ambattur ', '2', '1 years 6 months', 'Because of covid 19 lockdown ', 1, '2021-06-05 06:55:49', 0, NULL, 0, NULL, 1),
(2787, 5073, 'netcon technologies', 'marketing coordinator', '2014-02-15', 8000.00, '2015-07-17', 12000.00, 'coimbatore', '1', '1 years 5 months', ' Got another better opportunity to learn', 1, '2021-06-07 12:58:55', 0, NULL, 0, NULL, 1),
(2788, 5074, 'Tata consultancy services', 'Process associate', '2018-01-02', 12000.00, '2019-04-12', 19500.00, 'DLF Chennai', '1', '1 years 3 months', ' Meet with an accident ', 1, '2021-06-07 01:06:25', 0, NULL, 0, NULL, 1),
(2789, 5073, 'happiest minds technologies', 'associate executive', '2015-08-03', 15000.00, '2017-01-30', 17000.00, 'bangalore', '1', '1 years 5 months', 'Got better opportunity', 1, '2021-06-07 01:08:52', 0, NULL, 0, NULL, 1),
(2790, 5073, 'torry harris business solutions', 'Executive-Sales  and Marketing', '2017-03-02', 28000.00, '2019-07-05', 42000.00, 'bangalore', '1', '2 years 4 months', 'Shifted to Chennai', 1, '2021-06-07 01:25:58', 0, NULL, 0, NULL, 1),
(2791, 5073, 'avaniko technologies', 'senior executive', '2019-07-16', 56000.00, '2020-01-31', 56000.00, 'chennai', '1', '0 years 6 months', 'Personal Reasons', 1, '2021-06-07 01:32:56', 0, NULL, 0, NULL, 1),
(2792, 5075, 'Hitachi payment services pvt ltd', 'Executive ', '2019-09-23', 12225.00, '1970-01-01', 13790.00, 'Chennai velachery', '2', '1 years 8 months', ' Process going to low down and moved to head office', 1, '2021-06-07 02:47:58', 0, NULL, 0, NULL, 1),
(2793, 5075, 'Reliable business solution and services pvt ltd', 'Customer service associate', '2018-06-07', 9000.00, '2019-08-28', 9000.00, 'Shollinganallur chennai ', '1', '1 years 2 months', 'Process closed', 1, '2021-06-07 02:50:07', 0, NULL, 0, NULL, 1),
(2794, 5077, 'Seven Hills Enterprises ', 'Computer Operator', '2015-09-02', 11000.00, '2021-06-07', 14000.00, 'Sathyavedu ', '1', '5 years 9 months', ' For career growth ', 1, '2021-06-07 03:33:09', 0, NULL, 0, NULL, 1),
(2795, 5077, 'NTT Data Information Processing Service Pvt Ltd.', 'F&A processing Senior Associative', '2017-12-15', 13900.00, '2020-09-27', 19100.00, 'DLF, Ramapuram', '1', '2 years 9 months', 'Project has been undertaken by Automation Team.\nand For Career growth \n', 1, '2021-06-07 03:37:17', 1, '2021-06-07 03:38:10', 0, NULL, 1),
(2796, 5076, 'Marketxcel Data Matrix Pvt Ltd', 'Field Supervisor Operations', '2019-11-19', 21000.00, '2021-05-23', 23000.00, 'Chennai', '1', '1 years 6 months', ' Salary Defermation frequently', 1, '2021-06-07 06:29:18', 0, NULL, 0, NULL, 1),
(2797, 5079, 'medlab', 'sales', '2016-07-20', 15000.00, '2018-08-20', 20000.00, 'gachbowli', '1', '2 years 1 months', 'completed pg now looking for a new job', 1, '2021-06-08 01:08:40', 0, NULL, 0, NULL, 1),
(2798, 5082, 'swamy & sons agencies pvt ltd', 'sales', '2017-02-10', 14500.00, '2021-06-09', 18000.00, 'maychal', '2', '4 years 3 months', 'looking for better opportunity ', 1, '2021-06-09 09:51:34', 0, NULL, 0, NULL, 1),
(2799, 5083, 'wipro', 'risk analyst', '2017-12-11', 18000.00, '2018-12-24', 18000.00, 'mtech', '1', '1 years 0 months', 'marriage fixed so resigned  From old job now looking for new job ', 1, '2021-06-09 10:12:26', 0, NULL, 0, NULL, 1),
(2800, 5084, 'mnr global infra', 'rm', '2020-02-10', 22000.00, '1970-01-01', 22000.00, 'madhapur', '2', '1 years 3 months', 'want to change company  due to salary issue', 1, '2021-06-09 11:01:29', 0, NULL, 0, NULL, 1),
(2801, 5085, 'i process', 'tl', '2019-06-22', 15800.00, '2021-06-09', 16000.00, 'khaidrabad', '2', '1 years 11 months', 'due to salary and new job ', 1, '2021-06-09 11:30:00', 0, NULL, 0, NULL, 1),
(2802, 5092, 'pozent corporation ', ' us it Recruiting ', '2020-01-22', 10000.00, '2020-06-12', 10000.00, 'chennai ', '1', '0 years 4 months', 'due to full lockdown  the company was closed ', 1, '2021-06-09 06:00:00', 0, NULL, 0, NULL, 1),
(2803, 5091, 'Oh Innovation', 'Telesales', '2017-10-07', 15.00, '1970-01-01', 22.00, 'Chetpet', '2', '3 years 8 months', ' Due to covid-19', 1, '2021-06-09 06:00:36', 0, NULL, 0, NULL, 1),
(2804, 5092, 'chennai corporation ', 'tele caller ', '2020-07-10', 13000.00, '2020-12-31', 13000.00, 'adyar', '1', '0 years 5 months', 'contract was finished ', 1, '2021-06-09 06:03:29', 0, NULL, 0, NULL, 1),
(2805, 5092, 'taurus bpo', 'customer support executive ', '2021-02-01', 12000.00, '2021-06-01', 12000.00, 'chennai  tnagar ', '1', '0 years 4 months', 'due to full lockdown process was closed ', 1, '2021-06-09 06:06:49', 0, NULL, 0, NULL, 1),
(2806, 5093, 'amazon pay', 'business sales ', '2020-01-20', 20000.00, '2021-04-02', 20000.00, 'hyderabad', '1', '1 years 2 months', 'looking foe better opportunity and salary hike ', 1, '2021-06-10 09:35:18', 0, NULL, 0, NULL, 1),
(2807, 5094, 'west pharma', 'bss', '2020-11-02', 25000.00, '2021-05-31', 25000.00, 'begum pet', '1', '0 years 6 months', 'contract over looking for new job ', 1, '2021-06-10 10:22:57', 0, NULL, 0, NULL, 1),
(2808, 5095, 'bajaj alliance', 'sales officer', '2017-11-20', 10000.00, '2019-12-10', 12000.00, 'panjakotta', '1', '2 years 0 months', 'started own business - Lock down so looking for Permanent job ', 1, '2021-06-10 10:28:29', 0, NULL, 0, NULL, 1),
(2809, 5096, 'fleetguard filters', 'sales executive', '2019-01-07', 21000.00, '2021-06-10', 21000.00, 'hyderabad', '2', '2 years 5 months', 'no growth and salary hike looking for Permanent job ', 1, '2021-06-10 12:16:07', 0, NULL, 0, NULL, 1),
(2810, 5099, 'PINKERTON', 'RESEARCH ASSOCIATE', '2020-11-02', 12000.00, '2021-05-08', 12000.00, 'Chennai', '1', '0 years 6 months', ' PERSONAL', 1, '2021-06-10 12:48:05', 0, NULL, 0, NULL, 1),
(2811, 5099, 'PINKERTON', 'Research Associate', '2019-12-04', 12000.00, '2020-06-03', 12000.00, 'chennai', '1', '0 years 5 months', 'CONTRACT CLOSED', 1, '2021-06-10 12:51:30', 0, NULL, 0, NULL, 1),
(2812, 5099, 'SECUR CREDENTIALS LIMITED', 'Associate', '2018-12-17', 10000.00, '2019-08-31', 10000.00, 'CHENNAI', '1', '0 years 8 months', 'COMPANY CLOSED', 1, '2021-06-10 12:54:51', 0, NULL, 0, NULL, 1),
(2813, 5098, 'Cholamandalam investment finance', 'Deputy Officer', '2016-06-01', 150000.00, '1970-01-01', 250000.00, 'Chennai', '2', '5 years 0 months', ' Career Growth', 1, '2021-06-10 12:57:29', 0, NULL, 0, NULL, 1),
(2814, 5097, 'Radiant Cash Management Services', 'Data Management Executive ', '2016-07-22', 13000.00, '2019-09-17', 15000.00, 'T nagar', '1', '3 years 1 months', ' Due to my husband\'s deputation in his office for 1 year to dubai.', 1, '2021-06-10 01:02:55', 0, NULL, 0, NULL, 1),
(2815, 5101, 'Accenture', 'Transaction associate', '2018-07-31', 12000.00, '1970-01-01', 19000.00, 'Chennai', '2', '2 years 10 months', ' Due to night shift', 1, '2021-06-10 01:58:02', 0, NULL, 0, NULL, 1),
(2816, 5102, 'Kotak mahindra genenaral insurance', 'Associate', '2021-01-15', 1.00, '1970-01-01', 15500.00, 'Chennai egmorw', '2', '0 years 4 months', ' Carrier growth', 1, '2021-06-11 12:05:07', 0, NULL, 0, NULL, 1),
(2817, 5104, 'sbi card', 'rm', '2019-11-01', 18000.00, '2021-01-05', 25000.00, 'begumpet', '1', '1 years 2 months', 'small Business , now looking for job change', 1, '2021-06-11 12:06:25', 0, NULL, 0, NULL, 1),
(2818, 5103, 'Rhythm Business enterprises', 'Telecaler', '2018-08-17', 8000.00, '2019-02-14', 8000.00, 'Chennai', '1', '0 years 5 months', ' Got Another Opportunity', 1, '2021-06-11 12:09:44', 0, NULL, 0, NULL, 1),
(2819, 5103, 'Infinity management services', 'Telecaller And Backend', '2019-02-15', 9000.00, '2019-10-18', 90000.00, 'Arumbakkam, Chennai', '1', '0 years 8 months', 'Medical Issues', 1, '2021-06-11 12:11:19', 0, NULL, 0, NULL, 1),
(2820, 5103, 'Teleperformance  Global services', 'Telecaller', '2020-08-30', 12000.00, '2020-12-15', 12000.00, 'Ambattur, Chennai', '1', '0 years 3 months', 'Got Another Opportunity', 1, '2021-06-11 12:13:04', 0, NULL, 0, NULL, 1),
(2821, 5103, 'Muthoot Finance', 'Lead followup executive', '2020-12-16', 15000.00, '2021-03-13', 15000.00, 'Valluvar kortam, Chennai', '1', '0 years 2 months', 'Fake commitments from the industry about job role ', 1, '2021-06-11 12:14:28', 0, NULL, 0, NULL, 1),
(2822, 5106, 'indus space ltd', 'sales', '2016-11-02', 20000.00, '2021-01-05', 25000.00, 'hyderabad', '1', '4 years 2 months', 'looking for new job due to Pandemic lost job ', 1, '2021-06-11 01:11:55', 50, '2021-06-11 01:20:41', 0, NULL, 0),
(2823, 5106, 'Diagio India Pvt Ltd', 'sales', '2019-10-01', 20000.00, '2020-02-01', 25000.00, 'hderabad', '1', '0 years 4 months', 'lost job due to pandemic', 50, '2021-06-11 01:21:35', 0, NULL, 0, NULL, 1),
(2824, 5108, 'jersy', 'psm', '2020-01-01', 20000.00, '2020-11-15', 20000.00, 'kuketpally', '1', '0 years 10 months', 'family issue looking for job ', 1, '2021-06-11 02:34:37', 0, NULL, 0, NULL, 1),
(2825, 5109, 'Auditcs pvt ltd', 'Audit assistant', '2016-09-20', 10000.00, '2019-05-05', 16500.00, 'Purasawalkam', '1', '2 years 7 months', 'Health problems', 1, '2021-06-11 03:35:05', 0, NULL, 0, NULL, 1),
(2826, 5110, 'Nityo infotech pvt ltd', 'finance executive', '2019-05-29', 31.00, '2020-02-25', 23000.00, 'kodmabakkam', '1', '0 years 8 months', ' Planned To Rejoin after marriage before that lockdown started', 1, '2021-06-11 04:31:52', 0, NULL, 0, NULL, 1),
(2827, 5111, 'reddys digital pvt ltd', 'marketing executive', '2019-07-31', 20000.00, '2021-05-31', 23000.00, 'mallapur', '1', '1 years 10 months', 'due to pandemic Receiving less income  ', 1, '2021-06-12 10:38:57', 0, NULL, 0, NULL, 1),
(2828, 5112, 'ensure innovation pvt ltd', 'sales support executive', '2019-07-13', 13500.00, '2021-05-30', 13500.00, 'hyderabad', '1', '1 years 10 months', 'low salary ', 1, '2021-06-12 11:21:03', 0, NULL, 0, NULL, 1),
(2829, 5113, 'fresher', 'fresher', '2021-06-12', 1.00, '1970-01-01', 0.00, 'fresher', '2', '0 years 0 months', 'fresher looking for job', 50, '2021-06-12 02:09:36', 0, NULL, 0, NULL, 1),
(2830, 5116, 'State Street HCL services', 'Senior analyst', '2017-07-07', 14000.00, '2019-10-09', 19500.00, 'Chennai', '1', '2 years 3 months', ' For marriage', 1, '2021-06-12 03:13:18', 0, NULL, 0, NULL, 1),
(2831, 5117, 'vellanki overseas pvt', 'sales executive', '2017-05-15', 12000.00, '2020-08-24', 20000.00, 'sangareddy', '1', '3 years 3 months', 'met with accident then Lock down so no salary , now looking for new job ', 1, '2021-06-12 03:48:58', 0, NULL, 0, NULL, 1),
(2832, 5124, 'bajaj finserv', 'rm', '2020-02-01', 15000.00, '2021-01-31', 16000.00, 'somajiguda', '1', '0 years 11 months', 'due to pandemic looking for job ', 1, '2021-06-14 02:40:06', 0, NULL, 0, NULL, 1),
(2833, 5129, 'funnl', 'marketing executive', '2020-03-02', 19000.00, '1970-01-01', 22000.00, 'hitech city', '2', '1 years 3 months', ' to earn more income ', 1, '2021-06-15 10:52:56', 0, NULL, 0, NULL, 1),
(2834, 5130, 'kotak mahindra bank', 'assistant manager', '2020-03-02', 16000.00, '2021-03-31', 16000.00, 'dilshuk nagar', '1', '1 years 0 months', 'no further improvement ', 1, '2021-06-15 01:50:08', 0, NULL, 0, NULL, 1),
(2835, 5134, 'Ms foundation ', 'Tellcallee', '2020-08-02', 10000.00, '2021-06-03', 11000.00, 'Kumunachavdi', '1', '0 years 10 months', ' ', 1, '2021-06-15 05:50:05', 0, NULL, 0, NULL, 1),
(2836, 5136, 'State Street HCL Services', 'Financial Analyst', '2019-08-30', 200000.00, '2020-12-04', 200000.00, 'Coimbatore', '1', '1 years 3 months', ' Married and shifted to Chennai', 1, '2021-06-16 10:03:55', 0, NULL, 0, NULL, 1),
(2837, 5139, 'karvy forces', 'sales', '2019-09-29', 16000.00, '2021-03-10', 18000.00, 'malkajgiri', '1', '1 years 5 months', 'due to covid got Relieved ', 1, '2021-06-16 11:05:12', 0, NULL, 0, NULL, 1),
(2838, 5140, 'udaan', 'sales', '2021-02-10', 16000.00, '1970-01-01', 16000.00, 'mehandhipatnam', '2', '0 years 4 months', 'for better opportunity ', 1, '2021-06-16 11:40:50', 0, NULL, 0, NULL, 1),
(2839, 5142, 'G7cr private limited', 'MIS', '2017-06-23', 15000.00, '2020-01-07', 150000.00, 'Bangalore', '1', '2 years 6 months', ' Due to COVID 19', 1, '2021-06-16 02:46:42', 0, NULL, 0, NULL, 1),
(2840, 5143, 'Altruist customer pvt ltd', 'Advisor', '2021-09-15', 15000.00, '1970-01-01', 14000.00, 'Sozhinganallur ', '2', '0 years 2 months', ' Long distance from avadi', 1, '2021-06-16 05:02:07', 0, NULL, 0, NULL, 1),
(2841, 5146, 'q connect', 'cce', '2021-04-29', 30000.00, '2021-06-06', 30000.00, 'begumpet', '1', '0 years 1 months', 'asked for wfh due to health condition so they removed few employees ', 1, '2021-06-17 11:10:22', 0, NULL, 0, NULL, 1),
(2842, 5153, 'Pro Technosolution', 'MIS', '2017-11-30', 14000.00, '2021-05-26', 19.80, 'Chennai', '1', '3 years 5 months', ' Due to corona pandemic company has been changed into another State and location, Thats only we relieving the job.', 1, '2021-06-17 04:55:41', 0, NULL, 0, NULL, 1),
(2843, 5152, 'hdfc bank', 'mis coordinator', '2018-03-15', 9000.00, '2019-05-30', 9000.00, 'madurai', '1', '1 years 2 months', ' end of Contract', 1, '2021-06-17 06:20:33', 0, NULL, 0, NULL, 1),
(2844, 5152, 'indusind bank ', 'mis coordinator', '2019-07-01', 16000.00, '2020-06-18', 16000.00, 'chennai', '1', '0 years 11 months', 'agreement got completed and cannot renew due to covid lockdown.', 1, '2021-06-17 06:43:17', 0, NULL, 0, NULL, 1),
(2845, 5173, 'Source Hov', 'Processor', '2019-05-09', 11000.00, '2020-05-09', 14500.00, 'Kizpakkam', '1', '1 years 0 months', ' Project close', 1, '2021-06-18 03:56:59', 0, NULL, 0, NULL, 1),
(2846, 5195, 'your needs pvt ltd', 'senior marketing executive', '2015-02-05', 15000.00, '2017-03-07', 25000.00, 'bangalore', '1', '2 years 1 months', ' ', 1, '2021-06-21 11:24:57', 0, NULL, 0, NULL, 1),
(2847, 5195, 'tantra luxuries pvt ltd', 'team leader', '2017-11-13', 30000.00, '2018-11-29', 35000.00, 'bangalore', '1', '1 years 0 months', 'company swapped to other owner', 1, '2021-06-21 11:28:54', 0, NULL, 0, NULL, 1),
(2848, 5195, 'gsr groups', 'territory manager', '2020-01-05', 40000.00, '2021-06-10', 450000.00, 'banglaore', '1', '1 years 5 months', 'working here for as a part time... ', 1, '2021-06-21 11:32:50', 0, NULL, 0, NULL, 1),
(2849, 5196, 'Paytm private limited company', 'Sales', '2021-01-04', 15000.00, '2021-05-04', 15000.00, 'Chennai', '1', '0 years 4 months', 'In corona time then told to sale', 1, '2021-06-21 03:18:44', 0, NULL, 0, NULL, 1),
(2850, 5199, 'Tele choice', 'Process executive', '2020-03-05', 10.00, '2021-01-20', 10000.00, 'Aalapakkam', '1', '0 years 10 months', 'Work timing extended without notifying', 1, '2021-06-21 04:46:36', 0, NULL, 0, NULL, 1),
(2851, 5200, 'bpo', 'cse', '2019-04-13', 11000.00, '2021-04-02', 12000.00, 'chennai', '1', '1 years 11 months', ' Career Growth', 1, '2021-06-21 06:05:32', 0, NULL, 0, NULL, 1),
(2852, 5201, 'lic', 'cse', '2020-11-28', 10000.00, '2021-06-09', 11000.00, 'chennai', '1', '0 years 6 months', ' Process Ramp', 1, '2021-06-21 06:17:14', 0, NULL, 0, NULL, 1),
(2853, 5202, 'source hov', 'cse', '2017-04-21', 10000.00, '2019-08-21', 12000.00, 'chennai', '1', '2 years 4 months', ' Career growth', 1, '2021-06-21 06:22:40', 0, NULL, 0, NULL, 1),
(2854, 5203, 'sparsh bpo', 'senior cse', '2010-11-17', 10000.00, '2012-11-19', 13000.00, 'chennai', '1', '2 years 0 months', ' growth', 1, '2021-06-21 06:28:26', 0, NULL, 0, NULL, 1),
(2855, 5210, 'Tata Consultancy Services', 'Process Associate', '2014-06-05', 17000.00, '2017-07-27', 24000.00, 'DLF', '1', '3 years 1 months', ' Due to my parents eye operation. I have to go to native and take care of them for few months.', 1, '2021-06-22 11:54:45', 0, NULL, 0, NULL, 1),
(2856, 5209, 'HDB financial services', 'Marketing coordinator', '2019-08-14', 15000.00, '2021-03-01', 19000.00, 'Chennai', '1', '1 years 6 months', ' Timing', 1, '2021-06-22 11:56:46', 0, NULL, 0, NULL, 1),
(2857, 5213, 'Blue star', 'Hvac Engineer', '2018-04-04', 16500.00, '2021-04-25', 20000.00, 'Taramani', '1', '3 years 0 months', 'Change of working Site and issue with manager', 1, '2021-06-22 02:27:32', 0, NULL, 0, NULL, 1),
(2858, 5217, 'atinfotech systems', 'customer support executive', '2016-12-01', 10000.00, '2018-08-04', 12000.00, 'chennai', '1', '1 years 8 months', ' growth', 1, '2021-06-22 04:20:56', 0, NULL, 0, NULL, 1),
(2859, 5217, 'teleperformance', 'cse', '2019-01-10', 13000.00, '2020-03-18', 14000.00, 'chennai', '1', '1 years 2 months', 'growth', 1, '2021-06-22 04:21:42', 0, NULL, 0, NULL, 1),
(2860, 5218, 'tech mahindra', 'cse', '2017-04-15', 10000.00, '2019-06-22', 13000.00, 'chennai', '1', '2 years 2 months', ' growth', 1, '2021-06-22 04:35:12', 0, NULL, 0, NULL, 1),
(2861, 5219, 'jsr', 'telecaller', '2018-02-13', 10000.00, '2020-09-02', 13000.00, 'chennai', '1', '2 years 6 months', ' growth', 1, '2021-06-22 04:41:49', 0, NULL, 0, NULL, 1),
(2862, 5220, 'hdb ', 'cse', '2015-01-17', 10000.00, '2016-02-13', 10000.00, 'chennai', '1', '1 years 0 months', ' process', 1, '2021-06-22 04:47:30', 0, NULL, 0, NULL, 1),
(2863, 5220, 'aegis', 'executive band', '2016-02-17', 10000.00, '2017-06-28', 12000.00, 'chennai', '1', '1 years 4 months', 'growth', 1, '2021-06-22 04:48:10', 0, NULL, 0, NULL, 1),
(2864, 5221, 'M capital ', 'Sales manager ', '2019-03-19', 32000.00, '2021-03-19', 32000.00, 'Anna nagar', '1', '2 years 0 months', ' Health issue', 1, '2021-06-22 06:09:46', 0, NULL, 0, NULL, 1),
(2865, 5223, 'CAMS', 'Processing officer', '2018-03-19', 13500.00, '1970-01-01', 18000.00, 'Chennai', '2', '3 years 3 months', ' Career growth', 1, '2021-06-22 06:30:55', 0, NULL, 0, NULL, 1),
(2866, 5226, 'Jouve India private limited ', 'Processor ', '2011-09-15', 10000.00, '2012-11-04', 11000.00, 'Thiruvanmiyur', '1', '1 years 1 months', 'Marriage', 1, '2021-06-23 10:20:25', 0, NULL, 0, NULL, 1),
(2867, 5226, 'Jouve India private limited ', 'Freelance proof reader', '2018-06-16', 11000.00, '2019-12-15', 11000.00, 'Thiruvanmiyur', '1', '1 years 5 months', 'I was looking for a full time job', 1, '2021-06-23 10:23:44', 0, NULL, 0, NULL, 1),
(2868, 5226, 'Datatracks India private limited ', 'Proof reader ', '2020-03-16', 14000.00, '2021-03-22', 14000.00, 'Ramanujam IT park', '1', '1 years 0 months', 'Health issue because of night shift ', 1, '2021-06-23 10:26:44', 0, NULL, 0, NULL, 1),
(2869, 5227, 'the deal india pvt ltd', 'researcher', '2020-11-02', 1500.00, '2021-05-31', 18500.00, 'chennai', '1', '0 years 6 months', ' For carrier Development ', 1, '2021-06-23 10:37:30', 0, NULL, 0, NULL, 1),
(2870, 5230, 'Android auto', 'Inspection officer', '2018-06-23', 13.00, '1970-01-01', 17000.00, 'T.nagar', '2', '3 years 0 months', ' Due to covid 19 lockdown my company will closed that\'s only a reason', 1, '2021-06-23 11:53:58', 0, NULL, 0, NULL, 1),
(2871, 5232, 'Wissend consultancy', 'Data analyst', '2018-05-08', 1062018.00, '1970-01-01', 14000.00, 'Nandhanam', '2', '3 years 1 months', ' Salary problem', 1, '2021-06-23 05:07:16', 0, NULL, 0, NULL, 1),
(2872, 5241, 'Tranzindia', 'Telecaller', '2021-03-07', 12.50, '1970-01-01', 5000.00, 'Nandambakkam', '2', '0 years 3 months', ' Sorry kindly its my health personal issue because I\'m relieving', 1, '2021-06-24 12:52:50', 0, NULL, 0, NULL, 1),
(2873, 5244, 'FIASCO Services PVT LTD', 'HR recruiter', '2018-05-21', 25000.00, '2021-03-21', 35000.00, 'Hyderabad', '1', '2 years 10 months', ' Covid', 1, '2021-06-24 02:18:33', 0, NULL, 0, NULL, 1),
(2874, 5248, 'Tme', 'Telecaller', '2018-02-03', 9000.00, '2018-06-02', 9000.00, 'Chennai', '1', '0 years 3 months', 'I was met with a Major Accident ', 1, '2021-06-24 05:24:55', 0, NULL, 0, NULL, 1),
(2875, 5255, 'THINKSYNQ SOLUTIONS PVT LTD', 'CUSTOMER SUPPORT EXECUTIVE ', '2019-01-07', 12500.00, '2021-05-31', 13500.00, 'ROYAPET ', '1', '2 years 4 months', ' COVID ', 1, '2021-06-25 11:16:34', 0, NULL, 0, NULL, 1),
(2876, 5253, 'velmark technologies', 'marketing exe', '2020-08-20', 25000.00, '2021-06-01', 25000.00, 'coimbatore', '1', '0 years 9 months', 'Company has been paused because of Pandemic', 1, '2021-06-25 12:07:18', 0, NULL, 0, NULL, 1),
(2877, 5253, 'heaventz', 'operation', '2018-09-01', 17000.00, '2020-05-30', 20000.00, 'chennai', '1', '1 years 8 months', 'Event industries are shut because of pandamic', 1, '2021-06-25 12:12:10', 0, NULL, 0, NULL, 1),
(2878, 5258, 'Axis bank ltd', 'Relationship officer', '2020-03-21', 11000.00, '1970-01-01', 135000.00, 'Chennai', '2', '1 years 3 months', ' Not hike giving', 1, '2021-06-25 01:07:12', 0, NULL, 0, NULL, 1),
(2879, 5264, 'INTELNET GLOBAL SERVICES CHENNAI', 'DOMESTIC VOICE PROCESS', '2018-06-18', 10000.00, '1970-01-01', 13000.00, 'Ambattur Chennai', '2', '3 years 0 months', ' FOR MY FATHER GET SURGERY', 1, '2021-06-25 04:42:15', 0, NULL, 0, NULL, 1),
(2880, 5265, 'sip shipping', 'date entry', '2013-08-18', 10000.00, '2015-04-07', 11000.00, 'chennai', '1', '1 years 7 months', ' growth', 1, '2021-06-25 08:17:10', 0, NULL, 0, NULL, 1),
(2881, 5265, 'source hov', 'processor', '2018-04-19', 12000.00, '2019-11-16', 13000.00, 'chennai', '1', '1 years 6 months', 'growth', 1, '2021-06-25 08:18:05', 0, NULL, 0, NULL, 1),
(2882, 5266, 'kvb banking', 'cse', '2020-03-25', 12000.00, '2020-09-30', 13000.00, 'tidel park', '1', '0 years 6 months', ' process ramp', 1, '2021-06-25 08:24:27', 0, NULL, 0, NULL, 1),
(2883, 5267, 'bajaj alliance', 'customer followup', '2019-07-22', 10000.00, '2021-01-07', 12000.00, 'chennai', '1', '1 years 5 months', 'growth ', 1, '2021-06-25 08:40:31', 0, NULL, 0, NULL, 1),
(2884, 5274, 'Bajaj finance', 'Telecaller', '2019-02-01', 10000.00, '2019-11-28', 12000.00, 'Vadapalani', '1', '0 years 9 months', 'Delivery so relieving', 1, '2021-06-26 03:00:34', 0, NULL, 0, NULL, 1),
(2885, 5276, 'Deal money private limited ', 'Telecaller ', '2019-08-16', 11000.00, '2020-07-01', 12000.00, 'Chennai ', '1', '0 years 10 months', ' Company shifted to tambaram and lockdown ', 1, '2021-06-26 03:01:03', 0, NULL, 0, NULL, 1),
(2886, 5272, 'ESKARTECH solution pvt ltd', 'Telecaller', '2019-05-30', 10000.00, '2020-06-30', 12500.00, 'Chennai', '1', '1 years 1 months', ' Corona', 1, '2021-06-26 03:07:43', 0, NULL, 0, NULL, 1),
(2887, 5278, 'Deal money private limited ', 'Telecaller', '2019-08-16', 11000.00, '2020-07-01', 12000.00, 'Chennai ', '1', '0 years 10 months', ' Company  has been shifted to tambaram ', 1, '2021-06-26 03:09:22', 0, NULL, 0, NULL, 1),
(2888, 5281, 'Zealous services', 'Customer support executive', '2017-10-02', 9000.00, '2018-12-16', 15000.00, 'Nungambakkam', '1', '1 years 2 months', 'Some medical issues', 1, '2021-06-26 04:37:10', 0, NULL, 0, NULL, 1),
(2889, 5285, 'INFOCOM NETWORK LIMITED ', 'ASST.MANAGER-BUSINENESS DEVELOPMENT ', '2018-08-01', 22000.00, '2021-04-16', 25000.00, 'CHENNAI ', '1', '2 years 8 months', ' Carrier growth ', 1, '2021-06-28 10:57:00', 0, NULL, 0, NULL, 1),
(2890, 5277, 'abglobal investment solutions', 'relationship manager', '2017-02-02', 21000.00, '2021-03-05', 30000.00, 'maruthi nagar btm first stage ', '1', '4 years 1 months', ' company closed due to lockdown', 1, '2021-06-28 11:20:36', 0, NULL, 0, NULL, 1),
(2891, 5286, 'karvy digikonnect ltd', 'customer support officer', '2019-09-18', 11000.00, '2020-07-07', 12000.00, 'chennai', '1', '0 years 9 months', ' process ramp', 1, '2021-06-28 11:22:35', 0, NULL, 0, NULL, 1),
(2892, 5288, 'MK Digital seva', 'Operator', '2017-06-12', 8000.00, '2020-11-13', 12000.00, 'Thiruvarur', '1', '3 years 5 months', ' Lockdown', 1, '2021-06-28 02:41:00', 0, NULL, 0, NULL, 1),
(2893, 5290, 'paytm197communication', 'sales execuitve', '2020-06-28', 18000.00, '2021-03-10', 27000.00, 'vanasthalipuram', '1', '0 years 8 months', 'covid affected  for fahter 1 month leave so they told Relieve also mother got serious with other health issue. ', 1, '2021-06-28 04:56:51', 0, NULL, 0, NULL, 1),
(2894, 5292, 'cognizant', 'senior process executive', '2014-10-12', 12000.00, '2016-10-27', 13000.00, 'chennai', '1', '2 years 0 months', ' growth', 1, '2021-06-28 08:03:54', 0, NULL, 0, NULL, 1),
(2895, 5292, 'healthcare dynamic company', 'store keeper', '2016-11-29', 17000.00, '2017-04-04', 17000.00, 'kuwait', '1', '0 years 4 months', 'carrier change', 1, '2021-06-28 08:05:15', 0, NULL, 0, NULL, 1),
(2896, 5292, 'al salam international ', 'insurance assitant', '2017-04-18', 25000.00, '2020-06-19', 25000.00, 'kuwait', '1', '3 years 2 months', 'growth', 1, '2021-06-28 08:07:20', 0, NULL, 0, NULL, 1),
(2897, 5293, 'amazon pay', 'account manager', '2020-05-28', 12000.00, '2021-02-18', 13000.00, 'chennai', '1', '0 years 8 months', ' growth', 1, '2021-06-28 08:14:14', 0, NULL, 0, NULL, 1),
(2898, 5294, 'balaji engineering works', 'site engineer', '2016-02-14', 10000.00, '2018-03-04', 12000.00, 'chennai', '1', '2 years 0 months', ' growth', 1, '2021-06-28 08:19:00', 0, NULL, 0, NULL, 1),
(2899, 5294, 'eureka outsourcing', 'csr', '2019-02-24', 14000.00, '2020-02-14', 15000.00, 'chennai ', '1', '0 years 11 months', 'growth', 1, '2021-06-28 08:20:32', 0, NULL, 0, NULL, 1),
(2900, 5294, 'shriram value', 'csr insurance sales', '2020-03-19', 14000.00, '2021-02-18', 14500.00, 'chennai', '1', '0 years 10 months', 'process ramp', 1, '2021-06-28 08:21:27', 0, NULL, 0, NULL, 1),
(2901, 5295, 'cams', 'voice process associate', '2020-10-11', 10000.00, '2021-04-14', 11000.00, 'chennai', '1', '0 years 6 months', ' process ramp', 1, '2021-06-28 08:27:55', 0, NULL, 0, NULL, 1),
(2902, 5297, 'Alliance infrastructure', 'Pre-sales exceutive', '2018-09-07', 18000.00, '2020-06-30', 22000.00, 'Kotturpuram', '1', '1 years 9 months', 'Incentives issue\'s and no salary Hike', 1, '2021-06-29 10:24:15', 0, NULL, 0, NULL, 1),
(2903, 5299, 'Iris kpo Resourcing India Pvt Ltd', 'Accounts Officer', '2017-11-08', 2.00, '2020-04-24', 2.90, 'Nungambakkam', '1', '2 years 5 months', ' I go for next level in my career and good position in future With develop my communication and more excel knowledge.', 1, '2021-06-29 01:24:29', 0, NULL, 0, NULL, 1),
(2904, 5301, 'Viamagus Technologies Pvt Ltd', 'Graphic and Web Designer', '2019-04-01', 15000.00, '2020-11-01', 18000.00, 'Bangalore', '1', '1 years 7 months', ' Due to covid ', 1, '2021-06-29 05:23:27', 0, NULL, 0, NULL, 1),
(2905, 5304, 'citiair travel', 'cse', '2018-08-19', 12000.00, '2021-04-22', 15000.00, 'chennai', '1', '2 years 8 months', ' Process ramp', 1, '2021-06-30 07:36:22', 0, NULL, 0, NULL, 1),
(2906, 5305, 'thinksynq solutions', 'sales executive', '2019-04-13', 18000.00, '2020-04-28', 20000.00, 'chennai', '1', '1 years 0 months', ' growth', 1, '2021-06-30 07:43:00', 0, NULL, 0, NULL, 1),
(2907, 5308, 'info bells technologies pvt ltd', 'front end design', '2018-07-18', 8000.00, '2021-06-23', 15000.00, 'villupuram', '1', '2 years 11 months', ' growth improvement', 1, '2021-06-30 11:19:27', 0, NULL, 0, NULL, 1),
(2908, 5312, 'Iscistech', 'Web designer', '2019-08-01', 25000.00, '2021-06-25', 30000.00, 'Chennai', '1', '1 years 10 months', ' Changing for career growth', 1, '2021-06-30 12:56:47', 0, NULL, 0, NULL, 1),
(2909, 5312, 'Iscistech', 'Web Designer', '2019-08-01', 25000.00, '2021-07-23', 30000.00, 'Chennai', '1', '1 years 11 months', ' For carreer growth and skills', 1, '2021-06-30 01:06:30', 1, '2021-06-30 01:06:38', 0, NULL, 0),
(2910, 5313, 'foxow', 'front end developer', '2019-05-15', 15000.00, '1970-01-01', 20000.00, 'chennai', '2', '2 years 1 months', 'nil', 1, '2021-06-30 01:54:12', 0, NULL, 0, NULL, 1),
(2911, 5315, 'ONEFIZ', 'Chennai Central', '2021-06-30', 16500.00, '2021-07-01', 16500.00, 'Chennai', '1', '0 years 0 months', ' Learning more knowledge reson', 1, '2021-06-30 02:10:28', 0, NULL, 0, NULL, 1),
(2912, 5315, 'ONEFIZ', 'Parmbur', '2019-12-27', 16500.00, '2021-05-22', 16500.00, 'Chennai', '1', '1 years 4 months', 'Learning More knowledge', 1, '2021-06-30 02:12:38', 0, NULL, 0, NULL, 1),
(2913, 5316, 'CIAR', 'Web designer', '2015-06-02', 9600.00, '2018-12-31', 22000.00, 'Chennai', '1', '3 years 6 months', ' ', 1, '2021-06-30 02:13:00', 0, NULL, 0, NULL, 1),
(2914, 5320, 'vamo system private limited', 'ui/ux designer and developer', '2019-10-01', 10000.00, '2020-10-15', 12000.00, 'chennai', '1', '1 years 0 months', ' ', 1, '2021-06-30 04:51:55', 0, NULL, 0, NULL, 1),
(2915, 5321, 'access healthcare', 'sr.client specialist', '2016-03-01', 13000.00, '2019-04-01', 17250.00, 'chennai', '1', '3 years 1 months', 'Self Got conceived and resigned for medical reasons.', 1, '2021-06-30 06:50:50', 0, NULL, 0, NULL, 1),
(2916, 5321, 'dell international', 'hc and insurance ops sr.rep', '2015-02-09', 11000.00, '2016-02-29', 13000.00, 'chennai', '1', '1 years 0 months', 'our process overtaken by Access healthcare pvt,ltd', 1, '2021-06-30 06:59:11', 0, NULL, 0, NULL, 1),
(2917, 5321, 'laurus edutech skill india', 'mis executive', '2014-07-04', 8000.00, '2014-12-25', 8000.00, 'chennai', '1', '0 years 5 months', 'got better Opportunity. ', 1, '2021-06-30 07:05:40', 0, NULL, 0, NULL, 1),
(2918, 5322, 'BANNARIAMMAN AUTOMOBILES P LTD', 'SALES EXECUTIVE ', '2018-04-23', 11000.00, '2021-07-03', 15000.00, 'TRICHY', '1', '3 years 2 months', 'I Want to Switch my carrier in to next level', 1, '2021-06-30 08:48:26', 0, NULL, 0, NULL, 1),
(2919, 5325, 'EZofis', 'Sofware trainee', '2021-01-04', 7000.00, '1970-01-01', 7000.00, 'Tirunelveli', '2', '0 years 5 months', ' Career growth', 1, '2021-07-01 01:13:30', 0, NULL, 0, NULL, 1),
(2920, 5327, 'Aegham Technologies', 'Software Engineer ', '2019-09-22', 15000.00, '2020-09-22', 15000.00, 'Chennai ', '1', '1 years 0 months', ' Due to pandemic ,my company was closed.', 1, '2021-07-01 04:18:05', 0, NULL, 0, NULL, 1),
(2921, 5327, 'Trioangle Technologies ', 'UI Developer ', '2019-10-01', 10000.00, '1970-01-01', 13000.00, 'Madurai', '2', '1 years 9 months', 'Currently working', 1, '2021-07-01 04:19:24', 0, NULL, 0, NULL, 1),
(2922, 5331, 'Doxa Infotech', 'PHP Developer', '2019-11-17', 7000.00, '2020-12-10', 15000.00, 'Tuticorin', '1', '1 years 0 months', ' Company Shutdown', 1, '2021-07-01 05:31:23', 0, NULL, 0, NULL, 1),
(2923, 5331, 'Mayura IT Solution', 'Full Stack Developer', '2021-02-24', 17000.00, '1970-01-01', 17000.00, 'Tuticorin', '2', '0 years 4 months', 'Company Using Automations Tools', 1, '2021-07-01 05:33:14', 0, NULL, 0, NULL, 1),
(2924, 5332, 'Vcorporation', 'Web Designer (UI) ', '2017-02-06', 8000.00, '2018-08-10', 13500.00, 'Chennai', '1', '1 years 6 months', ' To clear backlogs', 1, '2021-07-01 05:59:13', 0, NULL, 0, NULL, 1),
(2925, 5334, 'bpo', 'cse', '2018-03-21', 10000.00, '2020-07-15', 12000.00, 'chennai', '1', '2 years 3 months', ' growth', 1, '2021-07-02 10:50:50', 0, NULL, 0, NULL, 1),
(2926, 5333, 'bluekode solution', 'ui developer', '2020-09-16', 12000.00, '1970-01-01', 13500.00, 'coimbatore', '2', '0 years 9 months', ' ', 1, '2021-07-02 11:12:07', 0, NULL, 0, NULL, 1),
(2927, 5333, 'irend infotech pvt.ltd', 'web designer', '2018-10-08', 7000.00, '2020-04-30', 10000.00, 'chennai', '1', '1 years 6 months', 'i wanted  to enhance and explore my knowledge', 1, '2021-07-02 11:15:47', 0, NULL, 0, NULL, 1),
(2928, 5335, 'Just see Info Service Pvt Ltd', 'Web Designer', '2019-01-04', 10000.00, '2020-12-31', 12000.00, 'Chennai', '1', '1 years 11 months', ' ', 1, '2021-07-02 01:05:54', 0, NULL, 0, NULL, 1),
(2929, 5335, 'Technest Technologies', 'Web Designer and Developer', '2021-03-01', 16000.00, '2021-07-12', 16000.00, 'Chennai', '1', '0 years 4 months', 'To get new exposure, develop my skill set', 1, '2021-07-02 01:08:37', 0, NULL, 0, NULL, 1),
(2930, 5336, 'BIZDATA TECHNOLOGIES', 'Junior Analyst', '2019-08-02', 180000.00, '2021-02-28', 216000.00, 'Chennai', '1', '1 years 6 months', 'Less opportunity to build my career', 1, '2021-07-02 01:08:51', 0, NULL, 0, NULL, 1),
(2931, 5338, 'Bharati Airtel', 'Field Executive', '2018-12-14', 14500.00, '2021-02-28', 16000.00, 'Mylapore', '1', '2 years 2 months', ' Some my Health issue', 1, '2021-07-02 02:56:21', 0, NULL, 0, NULL, 1),
(2932, 5342, 'Urjanet Energy solutions', 'Data Analyst', '2018-11-28', 12000.00, '2021-04-02', 17000.00, 'Chennai', '1', '2 years 4 months', ' ', 1, '2021-07-03 12:00:54', 0, NULL, 0, NULL, 1),
(2933, 5344, 'Enoch learning solutions Pvt Ltd', 'Software developer', '2020-06-05', 25000.00, '2021-05-31', 25000.00, 'Bangalore', '1', '0 years 11 months', ' Looking for a change', 1, '2021-07-03 12:14:43', 0, NULL, 0, NULL, 1),
(2934, 5346, 'Frost & Sullivan Pvt Ltd', 'Web - Editor', '2019-08-05', 300000.00, '2020-07-01', 300000.00, 'Chennai', '1', '0 years 10 months', ' Covid 19 layoff', 1, '2021-07-03 01:28:00', 0, NULL, 0, NULL, 1),
(2935, 5349, 'Caddy Code solution', 'Junior Developerr', '2020-11-23', 15000.00, '2021-04-08', 15000.00, 'Chennai', '1', '0 years 4 months', ' They will Assign Work for Sunday, Then Time management not consider to every employees ', 1, '2021-07-03 04:57:05', 0, NULL, 0, NULL, 1),
(2936, 5350, 'springbord system pvt ltd', 'data analysis', '2019-02-18', 16000.00, '2021-06-24', 16000.00, 'chennai', '1', '2 years 4 months', ' Covid 19 PROJECT CLOSED', 1, '2021-07-03 05:54:24', 0, NULL, 0, NULL, 1),
(2937, 5352, 'BVC', 'Telecaller', '2021-01-04', 12000.00, '1970-01-01', 12000.00, 'Mount Road', '2', '0 years 6 months', ' Company Closed ', 1, '2021-07-05 11:17:16', 0, NULL, 0, NULL, 1),
(2938, 5352, 'BVC', 'Telecaller', '2021-01-04', 12000.00, '1970-01-01', 12000.00, 'Mount Road', '2', '0 years 6 months', ' Company Closed ', 1, '2021-07-05 11:17:19', 0, NULL, 0, NULL, 1),
(2939, 5354, 'Exide Life insurance', 'Sales manager', '2020-04-07', 31000.00, '2021-07-09', 30000.00, 'Chennai', '1', '1 years 3 months', ' Corona closing', 1, '2021-07-05 12:22:39', 0, NULL, 0, NULL, 1),
(2940, 5356, 'Cloud Calls', 'Web designer', '2019-03-20', 7000.00, '1970-01-01', 12000.00, 'Trichy', '2', '2 years 3 months', 'looking forward to learn new things and Experience.', 1, '2021-07-05 06:32:18', 0, NULL, 0, NULL, 1),
(2941, 5357, 'parama technologies', 'web developer', '2019-05-14', 8000.00, '1970-01-01', 20000.00, 'salem', '2', '2 years 1 months', ' need to learn more new technologies in web development', 1, '2021-07-05 06:36:38', 0, NULL, 0, NULL, 1),
(2942, 5360, 'HDB financial Services', 'Senior Sales Officer', '2020-10-12', 13500.00, '2021-03-02', 13500.00, 'Adambakkam', '1', '0 years 4 months', ' To Enhance my career growth. I have decided to learn digital marketing course. So I relieved from the company. ', 1, '2021-07-06 11:12:04', 0, NULL, 0, NULL, 1),
(2943, 5362, 'Globussoft Technologies', 'Wordpress developer', '2019-08-19', 10000.00, '2021-07-31', 21000.00, 'Bangalore', '1', '1 years 11 months', 'I want to do something more Creative and expecting full time role as UI/UX development. ', 1, '2021-07-06 11:49:42', 0, NULL, 0, NULL, 1),
(2944, 5362, 'Sutherland global services', 'Associate', '2017-09-11', 13000.00, '2019-06-30', 250000.00, 'Chennai', '1', '1 years 9 months', 'I wanted to work as front end developer. So I resigned that job.', 1, '2021-07-06 11:51:34', 0, NULL, 0, NULL, 1),
(2945, 5364, 'Integra Global solutions', 'Graphic designer', '2018-04-02', 8000.00, '2020-04-04', 12000.00, 'Coimbatore', '1', '3 years 3 months', ' Reson For first vivid wave ', 1, '2021-07-06 01:47:14', 0, NULL, 0, NULL, 1),
(2946, 5364, 'Designpluz', 'WordPress developer', '2020-07-20', 12000.00, '2021-07-22', 12000.00, 'Coimbatore', '1', '1 years 0 months', 'I have searching for UI developer opening', 1, '2021-07-06 01:49:43', 0, NULL, 0, NULL, 1),
(2947, 4488, 'Mapol businesses solutions private limited', 'Ui developer', '2016-09-16', 12000.00, '1970-01-01', 23000.00, 'Chennai', '2', '4 years 9 months', ' Salary hike', 1, '2021-07-06 03:30:05', 0, NULL, 0, NULL, 1),
(2948, 5368, 'bluechip', 'field executive', '2020-05-17', 11000.00, '2021-02-06', 13500.00, 'adyar', '1', '0 years 8 months', ' personal issue', 1, '2021-07-07 11:34:18', 0, NULL, 0, NULL, 1),
(2949, 5371, 'Infocom network limited (tradeindia.com)', 'Business development executive', '2019-11-20', 22900.00, '1970-01-01', 22900.00, 'Chennai', '2', '1 years 7 months', 'Moving further step', 1, '2021-07-07 12:16:22', 0, NULL, 0, NULL, 1),
(2950, 5372, 'tranxit', 'graphic and ui', '2019-10-11', 22000.00, '2020-12-15', 22000.00, 'greams road', '1', '1 years 2 months', ' carrier development', 1, '2021-07-07 12:41:41', 0, NULL, 0, NULL, 1),
(2951, 5373, 'Amaze Logics Pvt LTD', 'UI UX DESIGNER', '2017-02-10', 15000.00, '2017-09-30', 15500.00, 'Thodupuzha ', '1', '0 years 7 months', 'Environment is not Suitable for me', 1, '2021-07-07 01:09:50', 0, NULL, 0, NULL, 1),
(2952, 5373, 'TechTilt Technologies Pvt Ltd', 'UI UX DESIGNER', '2017-12-01', 18500.00, '2018-07-31', 18500.00, 'chennai', '1', '0 years 8 months', 'That time I\'m Looking for better job with good package', 1, '2021-07-07 01:11:55', 0, NULL, 0, NULL, 1),
(2953, 5373, 'Kri\'eitiv Designs', 'UI UX & PRODUCT DESIGNER', '2018-09-10', 25000.00, '2020-10-15', 25000.00, 'Chennai ', '1', '2 years 1 months', 'COVID-19 layoff', 1, '2021-07-07 01:13:49', 0, NULL, 0, NULL, 1),
(2954, 5373, 'ATIIAD Technologies Pvt Ltd', 'PRODUCT DESIGNER', '2020-11-04', 33300.00, '2021-06-30', 33300.00, 'Remotely ', '1', '0 years 7 months', 'Its Temporary position. My part of job is over ', 1, '2021-07-07 01:17:13', 0, NULL, 0, NULL, 1),
(2955, 5374, 'leom digital solutions pvt ltd', 'web developer ', '2020-09-01', 22000.00, '2021-06-30', 22000.00, 'chennai', '1', '0 years 9 months', ' no job security and salary issues', 1, '2021-07-07 01:36:30', 1, '2021-07-07 01:41:40', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2956, 5374, 'yobha solutions', 'web developer ', '2017-12-01', 15000.00, '2020-07-15', 18000.00, 'chennai', '1', '2 years 7 months', 'need to move for next stage of carrier', 1, '2021-07-07 01:39:08', 0, NULL, 0, NULL, 1),
(2957, 5374, 'vel computer education ', 'computer tutor', '2017-03-01', 12000.00, '2017-11-30', 12000.00, 'chennai', '1', '0 years 9 months', 'got new job', 1, '2021-07-07 01:40:36', 0, NULL, 0, NULL, 1),
(2958, 5377, 'Indian IAS academy', 'Web designer', '2018-03-01', 15000.00, '2019-05-10', 20000.00, 'Chennai', '1', '1 years 2 months', ' Due to salary issues', 1, '2021-07-07 03:31:33', 0, NULL, 0, NULL, 1),
(2959, 5377, 'Q-bit gent technologies', 'Web designer & developer', '2019-03-13', 17500.00, '2019-09-30', 20000.00, 'Chennai', '1', '0 years 6 months', 'Due to covid-19', 1, '2021-07-07 03:34:11', 0, NULL, 0, NULL, 1),
(2960, 5377, 'Ontwikkel Corp', 'Web designer & developer', '2020-09-24', 200000.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 9 months', 'Need changes', 1, '2021-07-07 03:36:12', 0, NULL, 0, NULL, 1),
(2961, 5376, 'Interbind technologies ', 'Web developer ', '2020-02-12', 27000.00, '2021-06-22', 30000.00, 'Chennai ', '1', '1 years 4 months', ' Covid 19 upcoming projects Delay ', 1, '2021-07-07 03:51:55', 0, NULL, 0, NULL, 1),
(2962, 5378, 'Testware informatics', 'UI developer', '2018-12-05', 15000.00, '2021-08-17', 20000.00, 'Chennai', '1', '2 years 8 months', ' Salary issue', 1, '2021-07-07 03:55:47', 0, NULL, 0, NULL, 1),
(2963, 5380, 'commutatus', 'chennai', '2017-05-09', 10000.00, '2018-04-09', 11000.00, 'chennai', '1', '0 years 11 months', ' Personal Reasons ', 1, '2021-07-08 09:42:03', 0, NULL, 0, NULL, 1),
(2964, 5380, 'athulya senior living ', 'front end developer', '2020-03-18', 15000.00, '2021-06-19', 19500.00, 'chennai', '1', '1 years 3 months', 'carrer growth', 1, '2021-07-08 09:43:29', 0, NULL, 0, NULL, 1),
(2965, 5382, 'Centizen', 'Ui Designer, wordpress designer', '2019-05-17', 15100.00, '2021-03-03', 300000.00, 'Tirunelveli', '1', '1 years 9 months', ' ', 1, '2021-07-08 10:35:43', 0, NULL, 0, NULL, 1),
(2966, 5382, 'Centizen', 'Ui Designer, wordpress dedigner', '2019-02-07', 15100.00, '2021-03-03', 300000.00, 'Tirunelveli', '1', '2 years 0 months', 'Agreement is over', 1, '2021-07-08 10:37:04', 0, NULL, 0, NULL, 1),
(2967, 5391, 'hdb financial service', 'csr', '2020-01-10', 11000.00, '2021-07-07', 10000.00, 'nungambakkam', '1', '1 years 5 months', ' long distance and timing issue', 1, '2021-07-08 04:34:31', 0, NULL, 0, NULL, 1),
(2968, 5398, 'Auto valuesystem Pvt', 'Front end Developer', '2020-08-01', 10000.00, '2021-07-09', 10000.00, 'Chennai', '1', '0 years 11 months', ' Payment issue', 1, '2021-07-09 12:04:14', 0, NULL, 0, NULL, 1),
(2969, 5395, 'Q brainstorm software', 'UI developer', '2019-06-12', 8000.00, '2021-05-14', 12000.00, 'Chennai', '1', '1 years 11 months', ' Salary Issue', 1, '2021-07-09 10:06:20', 0, NULL, 0, NULL, 1),
(2970, 5402, 'Dream Emphasis', 'Sales', '2020-10-09', 12000.00, '1970-01-01', 12000.00, 'Vadapalani', '2', '0 years 9 months', ' Better carrier', 1, '2021-07-10 09:26:44', 0, NULL, 0, NULL, 1),
(2971, 5405, 'Seoyon E Hwa Autolec Division', 'Customer Support Executive', '2019-01-05', 14500.00, '2021-01-07', 19000.00, 'Sriperumbudur', '1', '2 years 0 months', ' my Training Period validity Completed ', 1, '2021-07-10 11:46:16', 0, NULL, 0, NULL, 1),
(2972, 5408, 'Sbi cards', 'Relationship manager ', '2019-10-21', 28000.00, '2020-10-05', 28000.00, 'Ranipet ', '1', '0 years 11 months', ' Medical problems ', 1, '2021-07-12 10:04:14', 0, NULL, 0, NULL, 1),
(2973, 5409, 'Ather energy Pvt Ltd', 'Sales officer', '2019-11-27', 17175.00, '2021-02-16', 17175.00, 'Chennai Nungambakkam', '1', '1 years 2 months', 'for a career Growth and improve knowledge', 1, '2021-07-12 10:29:00', 0, NULL, 0, NULL, 1),
(2974, 5411, 'amazon', 'imaging associate', '2017-07-12', 21000.00, '2017-12-02', 21000.00, 'taramani', '1', '0 years 4 months', ' Contract', 1, '2021-07-12 11:04:11', 0, NULL, 0, NULL, 1),
(2975, 5411, 'poshmark', 'community associate', '2018-02-01', 25000.00, '2019-03-02', 25000.00, 'chetpet', '1', '1 years 1 months', 'Start of business', 1, '2021-07-12 11:05:40', 0, NULL, 0, NULL, 1),
(2976, 5411, 'citibank', 'phone officer', '2020-02-01', 31000.00, '2020-08-01', 31000.00, 'taramani', '1', '0 years 6 months', 'Layed off due to pandemic', 1, '2021-07-12 11:07:06', 0, NULL, 0, NULL, 1),
(2977, 5410, 'Paragon', 'Ad ops campaign set up video osp', '2019-09-16', 20000.00, '2021-07-10', 21000.00, 'Taramani', '1', '1 years 9 months', ' For night I couldn\'t continue my work...', 1, '2021-07-12 11:19:01', 0, NULL, 0, NULL, 1),
(2978, 5414, 'IMARQUE SOLUTIONS PRIVATE LIMITED ', 'Hsc', '2019-08-02', 10000.00, '2020-11-05', 10000.00, 'TNagar', '1', '1 years 3 months', 'I can\'t manage with ten thousand, So I will try to better salary ', 1, '2021-07-12 11:59:36', 0, NULL, 0, NULL, 1),
(2979, 1706, 'Priavte company', 'Crm', '2020-01-15', 13000.00, '2021-04-28', 13000.00, 'Adyar', '1', '1 years 3 months', ' Carrier development', 1, '2021-07-13 11:09:09', 0, NULL, 0, NULL, 1),
(2980, 5418, 'imarqu', 'crm', '2017-08-15', 11500.00, '2021-07-07', 11500.00, 'chennai', '1', '3 years 10 months', ' ', 1, '2021-07-13 12:15:43', 0, NULL, 0, NULL, 1),
(2981, 5423, 'thinksin solution', 'cse', '2020-10-12', 22000.00, '1970-01-01', 22000.00, 'royapetha', '2', '0 years 9 months', ' carrier growth', 1, '2021-07-13 01:46:54', 0, NULL, 0, NULL, 1),
(2982, 5425, 'Aryan Amusements', 'sale\'s executive', '2017-09-23', 7500.00, '1970-01-01', 20000.00, 'Ampa sky walk ', '2', '3 years 9 months', 'I want to improve my skills and career growth.\nSo i chose another field which will help for my career.', 1, '2021-07-13 03:21:00', 0, NULL, 0, NULL, 1),
(2983, 5426, 'Lifestyle international pvt limited', 'customer support executive', '2018-10-02', 9900.00, '2019-07-10', 13800.00, 'vadapalani', '1', '0 years 9 months', ' Due to university examination', 1, '2021-07-13 04:04:46', 0, NULL, 0, NULL, 1),
(2984, 5432, 'State bank of India ', 'Telecaller ', '2018-12-25', 12500.00, '2020-02-10', 12500.00, 'Koyembedu ', '1', '1 years 1 months', ' Because of covid- 19', 1, '2021-07-14 12:09:48', 0, NULL, 0, NULL, 1),
(2985, 5430, 'Randstad', 'Sales', '2020-03-10', 14000.00, '2020-12-20', 14000.00, 'Kanchipuram', '1', '0 years 9 months', ' My marriage ', 1, '2021-07-14 12:21:08', 0, NULL, 0, NULL, 1),
(2986, 5434, 'Randstad', 'BDE', '2019-10-30', 16200.00, '2020-12-31', 19200.00, 'Chennai', '1', '1 years 2 months', ' To increase the salary', 1, '2021-07-14 12:21:49', 0, NULL, 0, NULL, 1),
(2987, 5433, 'Axis bank', 'Sales executive ', '2019-12-02', 12500.00, '2020-07-30', 12500.00, 'Kodambakkam ', '1', '0 years 7 months', ' Covid', 1, '2021-07-14 12:41:03', 0, NULL, 0, NULL, 1),
(2988, 5437, 'BHARAT MATRIMONY ', 'TELECALL', '2020-08-28', 15000.00, '2021-05-07', 15000.00, 'CHENNAI ', '1', '0 years 10 months', ' ', 1, '2021-07-14 03:14:05', 0, NULL, 0, NULL, 1),
(2989, 5438, 'Star health insurance ', 'Telecaller', '2013-08-28', 6500.00, '2014-12-14', 8000.00, 'Kodambakkam', '1', '1 years 3 months', ' For studies ', 1, '2021-07-14 03:23:46', 0, NULL, 0, NULL, 1),
(2990, 5442, 'NASOTECH LLP', 'Software developer', '2020-06-05', 15000.00, '2021-06-15', 15000.00, 'Chennai', '1', '1 years 0 months', ' Coronavirus', 1, '2021-07-14 07:27:59', 0, NULL, 0, NULL, 1),
(2991, 5445, 'SBI credit card', 'Sales Executive', '2020-08-31', 16500.00, '2021-06-04', 16500.00, 'Nungambakkam', '1', '0 years 9 months', 'Not comfortable for field work ', 1, '2021-07-15 12:17:37', 0, NULL, 0, NULL, 1),
(2992, 5449, 'innappaz it solutions pvt ltd', 'full stack developer', '2020-02-10', 5000.00, '2021-07-23', 8000.00, 'adambakkam', '1', '1 years 5 months', ' ', 1, '2021-07-15 01:32:26', 0, NULL, 0, NULL, 1),
(2993, 5448, 'xuberant informatics pvt ltd', 'trainee software engineer', '2019-12-19', 10000.00, '1970-01-01', 10000.00, 'chennai', '2', '1 years 6 months', ' I am leaving because I want to make a career change from my current industry to a different one.', 1, '2021-07-15 01:57:29', 0, NULL, 0, NULL, 1),
(2994, 5454, 'onward eservice', 'project coordinator', '2017-06-07', 18000.00, '2019-10-22', 18000.00, 'perugudi', '1', '2 years 4 months', ' ', 1, '2021-07-15 05:26:59', 0, NULL, 0, NULL, 1),
(2995, 5454, 'express publications pvt ltd', 'assistant software  engineer', '2019-10-22', 18000.00, '2020-05-31', 18000.00, 'ambattur', '1', '0 years 7 months', 'personal reasons', 1, '2021-07-15 05:28:45', 0, NULL, 0, NULL, 1),
(2996, 5455, 'Vidai softlabs Pvt Ltd', 'Chennai', '2019-08-19', 11500.00, '1970-01-01', 11500.00, 'Chennai', '2', '1 years 10 months', 'Searching for a platform to learn and work', 1, '2021-07-16 11:13:24', 0, NULL, 0, NULL, 1),
(2997, 5458, 'Tejaautospa', 'Customer support ', '2005-07-16', 12000.00, '2015-09-10', 12000.00, 'Vadaplani', '1', '10 years 1 months', ' Due to my delivery', 1, '2021-07-16 12:24:06', 0, NULL, 0, NULL, 1),
(2998, 5458, 'HDB', 'Telecaller', '2021-03-03', 12000.00, '2021-07-07', 12000.00, 'Purasaiwalkam ', '1', '0 years 4 months', 'Personal issues', 1, '2021-07-16 12:25:56', 0, NULL, 0, NULL, 1),
(2999, 5466, 'THRINIAS TECHNOLOGIES ', 'Full stack developer ', '2020-09-02', 13000.00, '2021-03-15', 15200.00, 'Virudhunagar ', '1', '0 years 6 months', ' Lack of projects ', 1, '2021-07-16 02:59:59', 0, NULL, 0, NULL, 1),
(3000, 5478, 'tata consultancy services', 'Associate Traine', '2019-08-19', 13000.00, '2020-10-06', 16000.00, 'chennai', '1', '1 years 1 months', ' Career change', 1, '2021-07-17 03:22:36', 0, NULL, 0, NULL, 1),
(3001, 5491, 'Allsec', 'Technical support', '2020-10-03', 3.00, '2020-12-09', 12000.00, 'Guindy', '1', '0 years 2 months', ' Moving to bank process', 1, '2021-07-19 02:05:25', 0, NULL, 0, NULL, 1),
(3002, 5506, 'Tekteauruseducation', 'Digital marketing', '2021-02-01', 20000.00, '1970-01-01', 20000.00, 'Mountroad', '2', '0 years 5 months', ' Due to night shift', 1, '2021-07-20 02:49:18', 0, NULL, 0, NULL, 1),
(3003, 5507, 'GSE Technology', 'Software developer', '2020-08-03', 12000.00, '2021-05-31', 13000.00, 'Tenkasi', '1', '0 years 11 months', ' ', 1, '2021-07-20 05:07:00', 0, NULL, 0, NULL, 1),
(3004, 5509, 'ceo infotech', 'software developer', '2020-07-09', 186000.00, '2021-08-01', 186000.00, 'chennai', '1', '1 years 0 months', 'No Incremented in salary and growth in career', 1, '2021-07-21 09:51:45', 0, NULL, 0, NULL, 1),
(3005, 5510, 'Teemage precast Ind Pvt Ltd', 'Software developer', '2019-06-05', 10000.00, '1970-01-01', 25000.00, 'Tiruppur', '2', '2 years 1 months', ' Career growth', 1, '2021-07-21 10:05:14', 0, NULL, 0, NULL, 1),
(3006, 5511, 'tekafforde solution pvt ltd', 'software engineer', '2020-07-15', 5000.00, '1970-01-01', 10000.00, 'banglore', '2', '1 years 0 months', ' salary, and family issue', 1, '2021-07-21 10:40:26', 1, '2021-07-21 10:40:49', 0, NULL, 1),
(3007, 5513, 'Etv Bharat', 'Content Editor', '2017-06-05', 16000.00, '2017-11-19', 16000.00, 'Hyderabad', '1', '0 years 5 months', 'Due to Health condition', 1, '2021-07-21 11:34:47', 0, NULL, 0, NULL, 1),
(3008, 5515, 'Ageasfederal Life insurance', 'Senior Financial RM', '2020-12-26', 400000.00, '2021-07-26', 400000.00, 'Bangalore', '1', '0 years 7 months', ' ', 1, '2021-07-21 12:58:51', 0, NULL, 0, NULL, 1),
(3009, 5515, 'AegonLifeInsuranceCompany', 'Senior Relationship manager', '2018-06-08', 285000.00, '2020-12-03', 350000.00, 'Bangalore', '1', '2 years 5 months', 'Direct channel been closed ', 1, '2021-07-21 01:00:01', 0, NULL, 0, NULL, 1),
(3010, 5515, 'Intelenet global solutions', 'Customer Support', '2016-10-04', 200000.00, '2017-11-05', 225000.00, 'Bangalore', '1', '1 years 1 months', 'Better opportunity', 1, '2021-07-21 01:03:40', 0, NULL, 0, NULL, 1),
(3011, 5516, 'Justdial', 'Tele Marketing Executive - Sales', '2021-01-30', 12000.00, '2021-05-10', 12000.00, 'Little mount', '1', '0 years 3 months', ' ', 1, '2021-07-21 01:36:01', 1, '2021-07-21 01:38:47', 0, NULL, 0),
(3012, 5516, 'Justdial', 'Telemarketing Executive - Sales', '2021-01-30', 12000.00, '2021-05-10', 12000.00, 'Little mount', '1', '0 years 3 months', 'reduce the manpower in pandemic ', 1, '2021-07-21 01:38:39', 0, NULL, 0, NULL, 1),
(3013, 5517, 'cherrinet ', 'network engineer ', '2019-09-08', 15000.00, '2021-07-06', 15000.00, 'chennai', '1', '1 years 9 months', ' ', 1, '2021-07-21 01:54:20', 0, NULL, 0, NULL, 1),
(3014, 5527, 'Rico auto industries limited', 'HR trainee', '2021-03-03', 15000.00, '1970-01-01', 15000.00, 'Kanchipuram', '2', '0 years 4 months', ' To get better experience in human resource ', 1, '2021-07-22 12:00:51', 0, NULL, 0, NULL, 1),
(3015, 5526, 'Tata Business', 'Loan Collection executive ', '2016-02-10', 8000.00, '2017-01-05', 10000.00, 'Mumbai', '1', '0 years 10 months', ' Changed to native location', 1, '2021-07-22 12:06:30', 0, NULL, 0, NULL, 1),
(3016, 5526, 'Premier mill', 'Office staff', '2017-03-08', 10000.00, '2019-05-15', 10000.00, 'Hosur ', '1', '2 years 2 months', 'Personal reason', 1, '2021-07-22 12:08:47', 0, NULL, 0, NULL, 1),
(3017, 5534, 'Autosense', 'crm', '2020-10-01', 12000.00, '2021-04-30', 12000.00, 'guindy', '1', '0 years 6 months', ' Long distance', 1, '2021-07-22 03:15:31', 0, NULL, 0, NULL, 1),
(3018, 5522, 'Lepay ', 'Software trainee', '2019-03-05', 180000.00, '2019-12-27', 400000.00, 'Chennai ', '1', '0 years 9 months', ' ', 1, '2021-07-22 06:46:03', 0, NULL, 0, NULL, 1),
(3019, 5531, 'cenveo publishing private ltd', 'junior associate', '2016-03-10', 12000.00, '2017-07-15', 15000.00, 'chennai', '1', '1 years 4 months', ' MATERNITY', 1, '2021-07-22 08:42:02', 0, NULL, 0, NULL, 1),
(3020, 5531, ' yeds pvt ltd', 'junior developer', '2014-10-20', 10000.00, '2016-02-21', 10000.00, 'chennai', '1', '1 years 4 months', 'career growth', 1, '2021-07-22 08:44:14', 0, NULL, 0, NULL, 1),
(3021, 5546, 'FYMC', 'Hr recruiter', '2021-03-14', 14000.00, '2021-05-02', 15000.00, 'Anna nagar', '1', '0 years 1 months', ' Due to corona', 1, '2021-07-23 11:29:08', 0, NULL, 0, NULL, 1),
(3022, 5550, 'Kag tiles ', 'Crm executive ', '2019-03-21', 14500.00, '2021-04-12', 16000.00, 'Tambaram', '1', '2 years 0 months', ' Health issue ', 1, '2021-07-23 12:59:28', 0, NULL, 0, NULL, 1),
(3023, 5551, 'Atlas refinery Pvt Ltd', 'Back office executive &customer service', '2019-07-09', 11000.00, '2020-03-11', 12500.00, 'Sidco Thirumudivakkam', '1', '0 years 8 months', ' Some social issues', 1, '2021-07-23 01:11:30', 0, NULL, 0, NULL, 1),
(3024, 5552, 'Quess corp ltd', 'relationship officer', '2019-03-16', 13000.00, '2021-07-05', 13000.00, 'Chennai', '1', '2 years 3 months', 'I\'ll find better opportunity for carrier development ', 1, '2021-07-23 01:43:00', 0, NULL, 0, NULL, 1),
(3025, 5553, 'APA Engineering pvt ltd', 'Trainee programmer Analyst  (ASP.NET MVC)', '2019-11-18', 16000.00, '2020-06-12', 16000.00, 'Thambaram sanatorium,Chennai ', '1', '0 years 6 months', 'Health Issues ', 1, '2021-07-23 02:02:49', 0, NULL, 0, NULL, 1),
(3026, 5554, 'ISH INFORMATION SYSTEMS', 'Software Developer ', '2019-12-11', 12000.00, '2021-06-11', 14000.00, 'Nungambakkam ', '1', '1 years 6 months', ' Due to low salary package and lack of progress.', 1, '2021-07-23 02:54:24', 0, NULL, 0, NULL, 1),
(3027, 5560, 'Pathfinder Enterprises Solution Pvt. ltd', 'ui developer', '2019-10-21', 10000.00, '2020-12-30', 15000.00, 'chennai', '1', '1 years 2 months', ' I quit my job to pursue new opportunities and take a new step in my career.', 1, '2021-07-24 10:36:04', 0, NULL, 0, NULL, 1),
(3028, 5562, 'CBSL', 'Customer care executive', '2019-08-08', 9000.00, '2020-12-24', 10000.00, 'Guindy,chennai', '1', '1 years 4 months', ' Some problem of my rent room,so I releave my job.', 1, '2021-07-24 11:33:59', 0, NULL, 0, NULL, 1),
(3029, 5563, 'Vishwak solutions Pvt Ltd', 'software engineer', '2020-12-21', 13200.00, '2021-07-15', 13200.00, 'chennai', '1', '0 years 6 months', ' Project ramp down', 1, '2021-07-24 12:06:47', 0, NULL, 0, NULL, 1),
(3030, 5564, 'Mmc Infotech- 1 Year. Sulekha -6 Months. Home cred', 'Sales executive', '2014-08-01', 8000.00, '2019-08-18', 13500.00, 'Mount Road, egmore,Adayar,Nelson manikam Road', '1', '5 years 0 months', 'health issues ', 1, '2021-07-24 12:20:21', 0, NULL, 0, NULL, 1),
(3031, 5571, 'Kgnfurnitures', 'Sales', '2020-11-02', 11000.00, '2021-07-12', 11000.00, 'Adambakkam', '1', '0 years 8 months', ' For carrier growth', 1, '2021-07-24 03:49:44', 0, NULL, 0, NULL, 1),
(3032, 5576, 'all direction source', 'software developer', '2019-01-21', 84000.00, '2021-02-10', 144000.00, 'ambatthur', '1', '2 years 0 months', ' salary issue', 1, '2021-07-24 05:54:55', 0, NULL, 0, NULL, 1),
(3033, 5575, 'Ison Bpo', 'Collection executive', '2021-02-17', 14000.00, '2021-07-15', 14000.00, 'Bangalore', '1', '0 years 4 months', ' Family issues', 1, '2021-07-24 05:55:32', 0, NULL, 0, NULL, 1),
(3034, 5576, 'siam computting', 'mobile app associate', '2021-02-11', 300000.00, '2021-07-02', 300000.00, 'adaiyar', '1', '0 years 4 months', 'work from home issue', 1, '2021-07-24 05:57:22', 0, NULL, 0, NULL, 1),
(3035, 5584, 'amazon device', 'sales executive', '2021-07-26', 15000.00, '1970-01-01', 15000.00, 'dyar ', '2', '0 years 0 months', ' ', 1, '2021-07-26 10:47:07', 0, NULL, 0, NULL, 1),
(3036, 5595, 'dew webz technologies', 'software developer', '2020-07-01', 12000.00, '1970-01-01', 12000.00, 'kattupakkam', '2', '1 years 0 months', ' ', 1, '2021-07-27 09:59:54', 0, NULL, 0, NULL, 1),
(3037, 5601, 'Prompt Trade fair ', 'Business associate', '2021-07-01', 11000.00, '2021-07-22', 11000.00, 'Chennai thousand light', '1', '0 years 0 months', 'They said this month salary will be credit on August 31st. ', 1, '2021-07-27 10:26:19', 0, NULL, 0, NULL, 1),
(3038, 5606, 'Limax Enterprises Pvt Ltd', 'Assistant Engineer', '2018-06-04', 12000.00, '1970-01-01', 18000.00, 'Chennai', '2', '3 years 1 months', 'Career Growth and Improve myself learning and knowledge in Hr Domain', 1, '2021-07-27 11:04:51', 0, NULL, 0, NULL, 1),
(3039, 3960, 'Netism Software', 'React Native', '2020-06-10', 13500.00, '2021-06-10', 14000.00, 'Chrompet', '1', '1 years 0 months', 'Not get the salary properly in months', 1, '2021-07-27 11:57:17', 0, NULL, 0, NULL, 1),
(3040, 5614, 'Icom Soft solution', 'Dotnet-developer', '2021-01-21', 10000.00, '2021-06-08', 10000.00, 'Porur', '1', '0 years 4 months', ' They Didnot Give Proper Salary', 1, '2021-07-27 05:21:27', 0, NULL, 0, NULL, 1),
(3041, 5589, 'Sri vijay Vidyalaya groups', 'System administrator', '2021-07-28', 10000.00, '1970-01-01', 10000.00, 'Tirupattur', '2', '0 years 0 months', ' ', 1, '2021-07-28 12:01:46', 0, NULL, 0, NULL, 1),
(3042, 5621, 'visiit', 'travel consultant', '2017-06-21', 10000.00, '2019-12-31', 15000.00, 'chennai', '1', '2 years 6 months', 'Better Opportunity  ', 1, '2021-07-28 01:00:47', 0, NULL, 0, NULL, 1),
(3043, 5625, 'Toppan Merrill services ', 'Software developer', '2019-10-21', 22000.00, '1970-01-01', 23000.00, 'Chennai ', '2', '1 years 9 months', ' Better opportunity ', 1, '2021-07-28 03:06:28', 0, NULL, 0, NULL, 1),
(3044, 5626, 'Byjus', 'Buisness development executive', '2020-09-01', 26000.00, '2021-03-02', 26000.00, 'Chennai', '1', '0 years 6 months', ' Changed my domain', 1, '2021-07-28 03:13:27', 0, NULL, 0, NULL, 1),
(3045, 5627, 'Omnex Software Solutions Pvt ltd', 'Dotnet developer', '2018-07-22', 20000.00, '2019-07-31', 26000.00, 'Thoraipakkam', '1', '1 years 0 months', ' Sick', 1, '2021-07-28 03:42:04', 0, NULL, 0, NULL, 1),
(3046, 5628, 'capgemini', 'software engineer', '2015-09-07', 25000.00, '2016-04-26', 25000.00, 'chennai', '1', '0 years 7 months', ' maternity', 1, '2021-07-28 04:49:40', 0, NULL, 0, NULL, 1),
(3047, 5628, 'fleecha services', 'it associate', '2020-12-14', 23000.00, '2021-08-02', 23000.00, 'chennai', '1', '0 years 7 months', 'career growth', 1, '2021-07-28 04:50:45', 1, '2021-07-28 04:53:14', 0, NULL, 1),
(3048, 5630, 'Madras Management Association ', 'Management Trainee', '2020-06-01', 2000.00, '2020-08-01', 2000.00, 'Chennai ', '1', '0 years 2 months', ' End of internship ', 1, '2021-07-29 10:40:23', 0, NULL, 0, NULL, 1),
(3049, 5633, 'Wabco india limited', 'GAT ', '2020-11-23', 16000.00, '1970-01-01', 16000.00, 'Ambattur', '2', '0 years 8 months', ' Less salary', 1, '2021-07-29 12:19:56', 0, NULL, 0, NULL, 1),
(3050, 5642, 'Eipp solutions', 'Software developer', '2021-01-11', 18000.00, '1970-01-01', 18000.00, 'Chennai', '2', '0 years 6 months', ' Change in work', 1, '2021-07-31 08:56:01', 0, NULL, 0, NULL, 1),
(3051, 5648, 'Civil engineering', 'Engineering', '2020-05-06', 14.00, '2021-06-09', 14000.00, 'Tirunalveli', '1', '1 years 1 months', ' ', 1, '2021-07-31 11:12:58', 0, NULL, 0, NULL, 1),
(3052, 5648, 'Js builders', 'Civil engineering', '2020-06-06', 14000.00, '2021-07-07', 14000.00, 'Tirunalveli', '1', '1 years 1 months', 'For vivid issues', 1, '2021-07-31 11:14:57', 0, NULL, 0, NULL, 1),
(3053, 5648, 'Js builders', 'Civil engineering', '2020-06-06', 14000.00, '2021-07-07', 14000.00, 'Tirunalveli', '1', '1 years 1 months', 'For covid issue', 1, '2021-07-31 11:16:12', 0, NULL, 0, NULL, 1),
(3054, 5650, 'Autosoft india ', 'HR recruiter ', '2020-09-28', 13000.00, '1970-01-01', 16000.00, 'Chennai ', '2', '0 years 10 months', ' Its an international recruitment and right candidates are not recruited due to the pandemic, looking for a change ', 1, '2021-07-31 11:48:15', 0, NULL, 0, NULL, 1),
(3055, 5651, 'Roots', 'Event management', '2017-07-28', 15000.00, '2020-03-17', 21000.00, 'Vanagaram', '1', '4 years 0 months', 'Covid 19', 1, '2021-07-31 12:19:08', 0, NULL, 0, NULL, 1),
(3056, 5653, 'Reliance SMSL Ltd ', 'Home sales officer ', '2021-02-17', 18000.00, '2021-07-07', 21000.00, 'Velacheery ', '1', '0 years 4 months', ' Personal issues ', 1, '2021-07-31 12:46:23', 0, NULL, 0, NULL, 1),
(3057, 5655, 'Reliance SMSL Ltd ', 'Sales officer ', '2021-02-18', 19000.00, '2021-05-05', 19000.00, 'Chennai ', '1', '0 years 2 months', ' ', 1, '2021-07-31 01:04:02', 0, NULL, 0, NULL, 1),
(3058, 5660, 'Aliens liftsprivatelimited', 'Associate consultant', '2020-08-01', 12000.00, '2021-07-31', 15000.00, 'Chennai', '1', '0 years 11 months', ' This is a career move .that company only for production managements,I have learned a lot from my last job.i am looking for new challenges and then it infrastructures.', 1, '2021-08-01 10:02:12', 0, NULL, 0, NULL, 1),
(3059, 5667, 'Hinduja global solutions', 'Telecaller', '2020-04-02', 7000.00, '2020-06-30', 7000.00, 'Vadasery', '1', '0 years 2 months', ' Health issues', 1, '2021-08-02 11:47:20', 0, NULL, 0, NULL, 1),
(3060, 5666, 'Agna global', 'Telecalling', '2019-07-01', 10000.00, '2019-12-30', 10000.00, 'Nagercoil,vadacery', '1', '0 years 5 months', ' Health issue', 1, '2021-08-02 12:03:34', 0, NULL, 0, NULL, 1),
(3061, 5673, 'Insurance', 'Tellicalling', '2019-05-15', 9000.00, '3021-03-02', 13500.00, 'T.nager', '1', '1001 years 9 months', ' Corona issue is company close', 1, '2021-08-02 12:41:46', 0, NULL, 0, NULL, 1),
(3062, 5672, 'Medical billing ', 'process Associate', '2017-05-01', 12.50, '2020-01-24', 15000.00, 'Porur', '1', '2 years 8 months', ' ', 1, '2021-08-02 12:42:50', 0, NULL, 0, NULL, 1),
(3063, 5670, 'Om innovative', '2020', '2019-11-08', 8500.00, '1970-01-01', 10000.00, 'Chathipat', '2', '1 years 8 months', ' Long distance', 1, '2021-08-02 12:44:35', 0, NULL, 0, NULL, 1),
(3064, 5684, 'Jio reliance smsl', 'HSO HOME SALES OFFICER', '2021-02-15', 18500.00, '2021-07-05', 20500.00, 'Madipakkam', '1', '0 years 4 months', ' Personal\n issue.', 1, '2021-08-02 02:46:53', 0, NULL, 0, NULL, 1),
(3065, 5695, 'ninja cart', 'sales execuitve', '2021-01-03', 22000.00, '2021-05-31', 24000.00, 'akthapur', '1', '0 years 4 months', 'Due to lockdown ', 1, '2021-08-03 10:54:00', 0, NULL, 0, NULL, 1),
(3066, 5697, 'Tube products of India', 'New products development', '2018-10-05', 11000.00, '2021-08-04', 14000.00, 'Avadi, chennai', '1', '2 years 9 months', 'Very less salary. So that only I relieving', 1, '2021-08-03 11:13:41', 0, NULL, 0, NULL, 1),
(3067, 5699, 'jayaraj fortune Packaging pvt ltd', 'sales execuitve', '2018-06-22', 9000.00, '2021-04-30', 15000.00, 'guntur', '1', '2 years 10 months', 'no carrier growth in sales ', 1, '2021-08-03 11:15:26', 0, NULL, 0, NULL, 1),
(3068, 5698, 'Tata motors', 'Customer advisor ', '2019-02-28', 16000.00, '2019-03-05', 14000.00, 'Ambattur ', '1', '0 years 0 months', ' Company closed \nOwned by other dealership ', 1, '2021-08-03 11:20:47', 0, NULL, 0, NULL, 1),
(3069, 5703, 'Blu-Ray global solutions pvt ltd', 'DSA', '2019-02-11', 10000.00, '2019-07-10', 11000.00, 'Chennai', '1', '0 years 4 months', ' For health issues', 1, '2021-08-03 01:00:13', 0, NULL, 0, NULL, 1),
(3070, 5712, 'taskmo', 'sales filed execuitve', '2021-02-20', 20000.00, '2021-05-08', 20000.00, 'hyderabad', '1', '0 years 2 months', 'Due to Lock down  ', 1, '2021-08-03 04:49:07', 0, NULL, 0, NULL, 1),
(3071, 5713, 'chear india limited', 'operation engineer trainee', '2017-01-17', 15000.00, '2018-01-05', 15000.00, 'chennai', '1', '0 years 11 months', ' Health Issue', 1, '2021-08-03 05:01:15', 0, NULL, 0, NULL, 1),
(3072, 5713, 'origin technology associates', 'software developer', '2018-01-20', 11500.00, '1970-01-01', 17500.00, 'chennai', '2', '3 years 6 months', 'Expecting Some more Salary', 1, '2021-08-03 05:02:53', 1, '2021-08-03 05:03:18', 0, NULL, 1),
(3073, 5714, 'Marlboro cigarette brand', 'sales execuitve', '2021-08-03', 16000.00, '1970-01-01', 16000.00, 'hyderabad', '2', '0 years 0 months', 'looking for new job ', 1, '2021-08-03 05:11:29', 0, NULL, 0, NULL, 1),
(3074, 5715, 'RGS construction Pvt Ltd', 'C# developer', '2021-01-10', 12000.00, '2021-08-31', 12000.00, 'Kilpauk, chennai', '2', '0 years 7 months', ' Salary issue ', 1, '2021-08-03 06:21:23', 0, NULL, 0, NULL, 1),
(3075, 5711, 'Prompet carriage india pvt lit', '. Net develop', '2019-01-02', 13000.00, '2020-03-05', 14000.00, 'Gundy', '1', '1 years 2 months', ' Salary problam. ', 1, '2021-08-03 09:46:16', 0, NULL, 0, NULL, 1),
(3076, 5717, 'Jr banking solution', 'Telecaleer', '2018-04-21', 9000.00, '2021-04-07', 9000.00, 'Kodampakkam', '1', '2 years 11 months', ' Salary not satisfied ', 1, '2021-08-04 10:39:42', 0, NULL, 0, NULL, 1),
(3077, 5722, 'byjus', 'bda', '2019-12-19', 21000.00, '2020-03-14', 21000.00, 'banjara hills', '1', '0 years 2 months', 'due to lockdown ', 1, '2021-08-04 12:21:40', 0, NULL, 0, NULL, 1),
(3078, 5725, 'metro cash and carry', 'sales execuitve', '2018-07-18', 12000.00, '2021-08-04', 12000.00, 'gajanpat', '2', '3 years 0 months', 'salary is less ', 1, '2021-08-04 03:32:30', 0, NULL, 0, NULL, 1),
(3079, 5733, 'CSS Corp', 'Engineer', '2019-02-14', 250000.00, '1970-01-01', 336000.00, 'Chennai', '2', '2 years 5 months', 'Want to face more challenges and due to own commitments current salary is not sufficient', 1, '2021-08-04 05:26:29', 0, NULL, 0, NULL, 1),
(3080, 5743, 'Teleperformance', 'Customer service executive', '2019-06-24', 11500.00, '2021-02-09', 13500.00, 'Chennai', '1', '1 years 7 months', ' Project close ', 1, '2021-08-05 10:47:14', 0, NULL, 0, NULL, 1),
(3081, 5742, 'Bank Bazaar', 'Customer service executive', '2021-04-05', 15000.00, '2021-08-02', 15000.00, 'Ambattur Ambit it park ', '1', '0 years 3 months', ' Project Closed', 1, '2021-08-05 10:48:00', 0, NULL, 0, NULL, 1),
(3082, 5746, 'amrithavarshini hospitality', 'operation manager', '2019-08-05', 21500.00, '2021-03-01', 25000.00, 'bangalore', '1', '1 years 6 months', 'no salary increment ', 1, '2021-08-05 11:09:15', 0, NULL, 0, NULL, 1),
(3083, 5753, 'slns properties pbt ltd', 'sales manager', '2020-03-11', 18000.00, '2021-03-26', 18000.00, 'manikanda', '1', '1 years 0 months', 'due to locckdown ', 1, '2021-08-05 03:32:40', 0, NULL, 0, NULL, 1),
(3084, 5754, 'Jovetech private limited', 'PHP developer ', '2019-10-21', 8000.00, '1970-01-01', 17000.00, 'Chennai', '2', '1 years 9 months', ' Salary issue ', 1, '2021-08-05 03:59:00', 0, NULL, 0, NULL, 1),
(3085, 5755, 'nes exports pvt ltd', 'e content specialist', '2017-08-24', 18000.00, '2019-07-03', 22000.00, 'charulapalli', '1', '1 years 10 months', 'met with an accident ', 1, '2021-08-05 04:28:28', 0, NULL, 0, NULL, 1),
(3086, 5762, 'SRM UNIVERSITY', 'HR ASSISTANT', '2020-08-11', 18000.00, '2021-06-10', 20000.00, 'RAMAPURAM', '1', '0 years 9 months', ' ', 1, '2021-08-06 10:48:37', 0, NULL, 0, NULL, 1),
(3087, 5759, 'Allset business solution chennai', 'Voicess process', '2019-10-22', 12000.00, '2021-05-05', 120000.00, 'Mylapore', '1', '1 years 6 months', ' Covid time ', 1, '2021-08-06 10:53:00', 0, NULL, 0, NULL, 1),
(3088, 5771, 'Novalnet ', 'Software Developer ', '2021-02-22', 11000.00, '2021-07-22', 11000.00, 'Tambaram ', '1', '0 years 5 months', ' They wanted to me work more than 10 hours daily and also the distance from bus stop to office is nearly 1.4 Kms so I unable to walk ', 1, '2021-08-06 04:17:39', 0, NULL, 0, NULL, 1),
(3089, 5768, 'tvs sacl', 'quality Engineering ', '2020-12-01', 13500.00, '1970-01-01', 13500.00, 'Oragadam chennai', '2', '0 years 8 months', 'conora period they fired ', 1, '2021-08-06 04:41:26', 0, NULL, 0, NULL, 1),
(3090, 5774, 'Maatrum technology and legal vinchers private limi', 'Process associate', '2018-08-11', 10000.00, '2021-01-30', 16000.00, 'Egmore', '1', '2 years 5 months', ' Traveling issues and some personal issues', 1, '2021-08-06 05:29:45', 0, NULL, 0, NULL, 1),
(3091, 5776, 'String information services', 'Software Analyst', '2021-04-05', 18364.00, '1970-01-01', 18364.00, 'Chennai', '2', '0 years 4 months', ' Because of career growth.. Rest of the things will explain at interview.', 1, '2021-08-07 10:37:39', 0, NULL, 0, NULL, 1),
(3092, 3040, 'Cms', 'Casher', '2021-08-07', 15000.00, '1970-01-01', 18000.00, 'T Nagar', '2', '0 years 0 months', ' Corana', 1, '2021-08-07 11:34:43', 0, NULL, 0, NULL, 1),
(3093, 5779, 'darkhorhe', 'field officer', '2020-09-05', 21000.00, '2021-04-13', 21000.00, 'kuketpally', '1', '0 years 7 months', 'due to lockdown ', 1, '2021-08-07 12:18:56', 0, NULL, 0, NULL, 1),
(3094, 5709, 'prodapt solution pvt ltd', 'Ui Designer', '2018-08-20', 1.50, '2021-02-11', 20.00, 'chennai', '1', '2 years 5 months', 'carrier growth', 1, '2021-08-08 07:36:19', 0, NULL, 0, NULL, 1),
(3095, 5790, 'SRM showroom', 'Sale and telecalling', '2017-08-21', 10500.00, '2019-03-15', 15000.00, 'Perambalur', '1', '1 years 6 months', ' Not enough salary package', 1, '2021-08-09 11:17:40', 0, NULL, 0, NULL, 1),
(3096, 5787, 'Justsee Info Service', 'Web designer', '2016-12-06', 10000.00, '2018-08-10', 16000.00, 'Chennai', '1', '1 years 8 months', ' My father health condition, so I\'m Relieved the company', 1, '2021-08-09 11:25:05', 0, NULL, 0, NULL, 1),
(3097, 5793, 'carrier overseas', 'inside sales executive', '2018-11-27', 13000.00, '2019-12-02', 14000.00, 'jubilee hills', '1', '1 years 0 months', 'quality issue extend 3hr everyday or loss of pay ', 1, '2021-08-09 12:04:28', 0, NULL, 0, NULL, 1),
(3098, 5795, 'I MARQUE SOLUTIONS ', 'BPO  -collection team', '2020-12-20', 9000.00, '1970-01-01', 10000.00, 'T Nagar ', '2', '0 years 7 months', ' Low salary', 1, '2021-08-09 12:50:15', 0, NULL, 0, NULL, 1),
(3099, 5797, 'Imarque Solution', 'Bpo-collectiom team', '2020-08-18', 9000.00, '1970-01-01', 10000.00, 'T.nagar', '2', '0 years 11 months', ' Low salary', 1, '2021-08-09 12:50:52', 0, NULL, 0, NULL, 1),
(3100, 5770, 'thynkk', 'web developer', '2020-09-02', 10000.00, '2021-07-02', 10000.00, 'chennai', '1', '0 years 10 months', ' Salary issues', 1, '2021-08-09 03:13:59', 0, NULL, 0, NULL, 1),
(3101, 5806, 'authorselvi.pvt.ltd', 'mobile developer', '2019-04-01', 8000.00, '2020-08-01', 14000.00, 'vellore', '1', '1 years 4 months', ' due to higher studies', 1, '2021-08-09 06:52:36', 0, NULL, 0, NULL, 1),
(3102, 5809, 'Accenture', 'Process Executive', '2013-11-04', 10000.00, '2020-04-06', 24000.00, 'Chennai', '1', '6 years 5 months', ' ', 1, '2021-08-10 10:50:06', 0, NULL, 0, NULL, 1),
(3103, 5809, 'Accenture', 'Process Associate', '2013-11-04', 10000.00, '2020-04-06', 23000.00, 'Chennai', '1', '6 years 5 months', 'Project closed', 1, '2021-08-10 10:51:13', 0, NULL, 0, NULL, 1),
(3104, 5810, 'icici lamboard', 'sales officer', '2020-02-03', 18000.00, '2021-03-04', 18000.00, 'gachibowli', '1', '1 years 1 months', 'contract over ', 1, '2021-08-10 10:54:37', 0, NULL, 0, NULL, 1),
(3105, 5817, 'new horizon degree college', 'assist administrator', '2016-04-22', 15000.00, '2019-10-15', 20000.00, 'nampally', '1', '3 years 5 months', 'Organisation is closed ', 1, '2021-08-10 12:02:03', 0, NULL, 0, NULL, 1),
(3106, 5817, 'udaan', 'field sales', '2019-11-04', 22000.00, '1970-01-01', 22000.00, 'tolichowlki', '2', '1 years 9 months', 'salary hike', 1, '2021-08-10 12:02:49', 0, NULL, 0, NULL, 1),
(3107, 5819, 'Red act pvt ltd', 'Telle caller', '2020-01-01', 12000.00, '2021-05-10', 12000.00, 'Arumbakkam', '1', '1 years 4 months', ' Due to corona so that company closed so I left that job ', 1, '2021-08-10 12:26:17', 0, NULL, 0, NULL, 1),
(3108, 5819, 'Red act infotech Pvt Ltd', 'Telle caller', '2020-01-01', 12000.00, '2021-05-10', 12000.00, 'Arumbakkam', '1', '1 years 4 months', 'Corona so that company closed ', 1, '2021-08-10 12:28:16', 0, NULL, 0, NULL, 1),
(3109, 5819, 'Red act infotech Pvt Ltd', 'Telle caller', '2020-01-01', 12000.00, '2021-05-10', 12000.00, 'Arumbakkam Chennai', '1', '1 years 4 months', 'Due to corona s company closed ', 1, '2021-08-10 12:30:25', 0, NULL, 0, NULL, 1),
(3110, 5820, 'ravuru silks', 'store manager', '2019-04-01', 18000.00, '2021-07-10', 20000.00, 'kurnol', '1', '2 years 3 months', 'for new Opportunity shifted to hyderabad ', 1, '2021-08-10 12:32:02', 0, NULL, 0, NULL, 1),
(3111, 5821, 'india shoes pvt ltd', 'software developer', '2011-12-01', 7000.00, '2012-02-29', 7000.00, 'chennai', '1', '0 years 2 months', ' insufficient salary', 1, '2021-08-10 02:04:06', 0, NULL, 0, NULL, 1),
(3112, 5821, 'mohib shoes pvt ltd', 'hr representative', '2012-05-01', 8000.00, '2012-07-31', 8000.00, 'ambur', '1', '0 years 3 months', 'jumped to higher salary', 1, '2021-08-10 02:06:25', 0, NULL, 0, NULL, 1),
(3113, 5821, 'b. a. tanney', 'trainee', '2013-01-02', 9000.00, '2013-04-25', 9000.00, 'pernambut', '1', '0 years 3 months', 'jumped to higher salary', 1, '2021-08-10 02:08:24', 0, NULL, 0, NULL, 1),
(3114, 5821, 'farida shoes pvt ltd', 'software developer', '2013-09-02', 10000.00, '2014-01-28', 10000.00, 'ambur', '1', '0 years 4 months', 'jumped to higher salary', 1, '2021-08-10 02:09:59', 0, NULL, 0, NULL, 1),
(3115, 5833, 'VRT Logistics Solutions Pvt ltd', 'Shift incharge', '2008-10-01', 15000.00, '2020-03-11', 25000.00, 'Taramani', '1', '11 years 5 months', ' Company closed', 1, '2021-08-11 10:30:11', 0, NULL, 0, NULL, 1),
(3116, 5837, 'fi networks', 'chief engineer', '2019-09-27', 20000.00, '1970-01-01', 20000.00, 'hi tech city', '2', '1 years 10 months', 'no increase in salary ', 1, '2021-08-11 11:47:45', 0, NULL, 0, NULL, 1),
(3117, 5839, 'Bharathi Airtel pvt ltd', 'CRO', '2019-09-29', 15000.00, '2021-01-05', 15000.00, 'Ramanujar IT park', '1', '1 years 3 months', ' ', 1, '2021-08-11 12:14:44', 0, NULL, 0, NULL, 1),
(3118, 2352, 'Bharatmatrimony', 'Telesale', '2019-02-28', 9000.00, '2020-10-03', 10000.00, 'Guindy', '1', '1 years 7 months', ' Personal problem', 1, '2021-08-11 12:18:28', 0, NULL, 0, NULL, 1),
(3119, 5840, 'Bharat matrimony', 'Senior sales executive', '2019-03-19', 10000.00, '2021-06-26', 13000.00, 'Guindy', '1', '2 years 3 months', ' Health issue', 1, '2021-08-11 12:34:59', 0, NULL, 0, NULL, 1),
(3120, 5841, 'barrontech service', 'serivce engg', '2020-03-06', 12000.00, '2021-07-20', 14000.00, 'kumbakonam', '1', '1 years 4 months', 'no salary increment ', 1, '2021-08-11 12:55:52', 0, NULL, 0, NULL, 1),
(3121, 5842, 'HCL Technologies ', 'Business analyst ', '2015-06-13', 25000.00, '2017-06-15', 25000.00, 'Chennai ', '1', '2 years 0 months', ' Marriage ', 1, '2021-08-11 01:00:45', 0, NULL, 0, NULL, 1),
(3122, 5843, 'William lea tag', 'Digital designer', '2020-02-19', 3.20, '2021-02-17', 3.20, 'Chennai', '1', '0 years 11 months', ' I need to work full UX and UI designer that\'s what I quite my job', 1, '2021-08-11 05:25:52', 0, NULL, 0, NULL, 1),
(3123, 5846, 'global data research centre', 'associate analyst', '2020-01-10', 23500.00, '2021-06-30', 23500.00, 'kondapur', '1', '1 years 5 months', 'looking for new opportunity ', 1, '2021-08-12 11:04:16', 0, NULL, 0, NULL, 1),
(3124, 5853, 'amazon development centre', 'call associate', '2020-10-19', 8000.00, '2021-07-26', 212000.00, 'hi tech', '1', '0 years 9 months', 'due to education (MBA) ', 1, '2021-08-12 12:47:23', 0, NULL, 0, NULL, 1),
(3125, 5859, 'Colan infotech', 'Up developer ', '2020-01-27', 10000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '1 years 6 months', ' To study many language .', 1, '2021-08-12 04:49:10', 0, NULL, 0, NULL, 1),
(3126, 5867, 'indus group inc', 'us it bench sales recruiter', '2021-02-08', 7000.00, '2021-07-25', 12000.00, 'ecil', '1', '0 years 5 months', 'not interested in night shift and health issue ', 1, '2021-08-13 10:28:41', 0, NULL, 0, NULL, 1),
(3127, 5869, 'dr.roas international super Specialty hospital', 'Executive', '2020-12-28', 12000.00, '2021-08-13', 14000.00, 'kuketpally', '2', '0 years 7 months', 'want to explore in another profile ', 1, '2021-08-13 10:35:25', 0, NULL, 0, NULL, 1),
(3128, 5872, 'bajaj finance', 'sales officer', '2021-02-05', 16500.00, '2021-08-13', 16000.00, 'ibrahim patnam', '1', '0 years 6 months', 'manager are not supportive ', 1, '2021-08-13 10:40:22', 0, NULL, 0, NULL, 1),
(3129, 5880, 'Cerebral works', 'Ui/ux designer', '2016-07-02', 15000.00, '2018-09-29', 25000.00, 'Naganallur', '1', '2 years 2 months', ' ', 1, '2021-08-13 03:55:15', 0, NULL, 0, NULL, 1),
(3130, 5880, 'Touch2success', 'Ui/ux designer', '2018-10-03', 19000.00, '2021-08-29', 25000.00, 'Chennai', '1', '2 years 10 months', 'No hike was given last year and there is no project to work. ', 1, '2021-08-13 03:57:49', 0, NULL, 0, NULL, 1),
(3131, 5879, 'Teachsub', 'web designer', '2018-02-05', 10000.00, '2019-03-25', 12000.00, 'chennai', '1', '1 years 1 months', ' ', 1, '2021-08-13 04:59:48', 0, NULL, 0, NULL, 1),
(3132, 5879, 'IMPACTSMS', 'Ui Developer', '2019-09-02', 15000.00, '2020-06-29', 17500.00, 'chennai', '1', '0 years 9 months', 'company is closed due to covid', 1, '2021-08-13 05:04:29', 0, NULL, 0, NULL, 1),
(3133, 5887, 'Altruist customer management services', 'Customer service representative', '2020-03-16', 13800.00, '2021-02-15', 13800.00, 'Chennai', '1', '0 years 10 months', ' Relieved from the job due to exams', 1, '2021-08-14 11:29:23', 1, '2021-08-14 11:33:43', 0, NULL, 0),
(3134, 5887, 'Pantaloons fashion and retail limited', 'Sales representative', '2016-05-10', 10800.00, '2017-12-04', 11000.00, 'CHENNAI', '1', '1 years 6 months', 'Got a new job', 1, '2021-08-14 11:30:25', 1, '2021-08-14 11:33:56', 0, NULL, 1),
(3135, 5887, 'Altruist customer management services', 'Customer service representative', '2020-03-16', 13800.00, '2021-02-15', 13800.00, 'Chennai', '1', '0 years 10 months', ' Due to exams ', 1, '2021-08-14 11:33:25', 0, NULL, 0, NULL, 1),
(3136, 5895, 'Bundl technologies', 'Marketing executive', '2019-09-02', 10000.00, '1970-01-01', 12000.00, 'Egmore ', '2', '1 years 11 months', ' Due to covid Pandemic ', 1, '2021-08-16 11:18:41', 0, NULL, 0, NULL, 1),
(3137, 5897, 'airtel payments bank', 'sales promoter', '2020-07-15', 17000.00, '2021-01-25', 17000.00, 'begumpet', '1', '0 years 6 months', 'shifted office to warangal ', 1, '2021-08-16 11:48:45', 0, NULL, 0, NULL, 1),
(3138, 5902, 'Vinsinfo Pvt Ltd', 'Software developer', '2019-11-15', 2.00, '2021-07-28', 3.00, 'Teynampet', '1', '1 years 9 months', ' I am looking for better organization to growth my career and knowledge', 1, '2021-08-16 02:03:27', 0, NULL, 0, NULL, 1),
(3139, 5906, 'hawks infotech', 'data entry operator', '2018-07-18', 9500.00, '2019-08-14', 9500.00, 'vadapalani', '1', '1 years 0 months', 'no increase payout  & salary issue', 1, '2021-08-16 04:45:21', 0, NULL, 0, NULL, 1),
(3140, 5911, 'Allset business solution', 'Tellecaller', '2021-01-15', 13000.00, '1970-01-01', 16500.00, 'Chennai', '2', '0 years 7 months', ' ', 1, '2021-08-17 11:33:27', 0, NULL, 0, NULL, 1),
(3141, 5911, 'Krystal private limited', 'Supervisor', '2020-01-10', 12000.00, '2020-12-09', 13000.00, 'Chenni railway', '1', '0 years 10 months', 'Got better job then that', 1, '2021-08-17 11:35:02', 0, NULL, 0, NULL, 1),
(3142, 5917, 'Tnq technologies', 'Associate graphics', '2019-09-01', 15000.00, '2021-05-14', 15000.00, 'Chennai', '1', '1 years 8 months', ' Learn some new technology and carrier change. ', 1, '2021-08-17 01:51:33', 0, NULL, 0, NULL, 1),
(3143, 5892, 'digisailor', 'front end developer', '2019-12-01', 10000.00, '2020-07-31', 13000.00, 'tuticorin', '1', '0 years 8 months', ' Covid Pandemic Situation', 1, '2021-08-17 02:44:02', 0, NULL, 0, NULL, 1),
(3144, 5892, 'spike technologies', 'wed developer', '2020-08-01', 10000.00, '2021-03-20', 16000.00, 'tuticorin', '1', '0 years 7 months', 'Covid  Pandemic Situation', 1, '2021-08-17 02:46:21', 0, NULL, 0, NULL, 1),
(3145, 5892, 'voc port hospital', 'application support', '2021-04-01', 12000.00, '1970-01-01', 12000.00, 'tuticorin', '2', '0 years 4 months', 'Looking for Better Oppertunities', 1, '2021-08-17 02:48:12', 0, NULL, 0, NULL, 1),
(3146, 5926, 'Mindmade technology', 'Ux ui designer', '2020-07-14', 28000.00, '2021-08-03', 18000.00, 'Coimbatore', '1', '1 years 0 months', ' ', 1, '2021-08-17 04:37:37', 0, NULL, 0, NULL, 1),
(3147, 5931, 'M.pradeepa ', 'Accounting ', '2021-06-01', 7000.00, '2021-07-30', 7000.00, 'Annai college of arts and science Kumbakonam', '1', '0 years 1 months', ' Personal issue', 1, '2021-08-18 02:50:30', 0, NULL, 0, NULL, 1),
(3148, 5931, 'M.pradeepa ', 'Kumbakonam ', '2021-05-01', 7000.00, '2021-07-30', 12000.00, 'Annai college of arts and science  Kumbakonam ', '1', '0 years 2 months', 'Personal Issue ', 1, '2021-08-18 02:54:12', 0, NULL, 0, NULL, 1),
(3149, 5932, 'Gae projects Pvt lmt', 'Web design', '2021-09-01', 30000.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 0 months', ' Nothing ', 1, '2021-08-18 03:00:10', 0, NULL, 0, NULL, 1),
(3150, 5936, 'lg motors', 'relationship manager', '2020-12-11', 21000.00, '2021-01-31', 21000.00, 'bangalore', '1', '0 years 1 months', 'exam and only 3month opportunity then shifted to hyderabad ', 1, '2021-08-18 03:14:26', 0, NULL, 0, NULL, 1),
(3151, 5934, 'TNQ', 'Graphic artist', '2019-04-05', 10.00, '2021-03-01', 15.00, 'Thiruvanmiyur', '1', '1 years 10 months', ' Health issues', 1, '2021-08-18 04:09:06', 0, NULL, 0, NULL, 1),
(3152, 5938, 'Focus Research Labs', 'Front end developer ', '2019-08-01', 12000.00, '2021-02-28', 20000.00, 'Chennai', '1', '1 years 6 months', ' Health issues ', 1, '2021-08-18 04:20:14', 0, NULL, 0, NULL, 1),
(3153, 5938, 'Techtilt technology ', 'Web designer ', '2018-08-12', 12000.00, '2019-01-31', 12000.00, 'Chennai', '1', '0 years 5 months', 'Health issues ', 1, '2021-08-18 04:23:00', 1, '2021-08-18 04:23:26', 0, NULL, 1),
(3154, 5940, 'square yards', 'bda', '2021-01-29', 19000.00, '1970-01-01', 19000.00, 'hi tech city', '2', '0 years 6 months', 'past two months only half salary received and incentives also pending ', 1, '2021-08-18 04:29:01', 0, NULL, 0, NULL, 1),
(3155, 5937, 'Hyundai Motors Pvt Ltd', 'Production engineer', '2015-05-13', 11000.00, '2019-03-13', 13000.00, 'Sriperumbudur', '1', '3 years 10 months', ' Training ends', 1, '2021-08-18 04:34:59', 0, NULL, 0, NULL, 1),
(3156, 5937, 'IndiaEye Graphics', 'Graphic Artist Designer', '2020-03-02', 10000.00, '2021-08-21', 15000.00, 'Bangalore', '1', '1 years 5 months', 'Looking forward to Relocate in Chennai', 1, '2021-08-18 04:37:18', 0, NULL, 0, NULL, 1),
(3157, 5935, 'indus life sciences pvt ltd', 'graphic deisigner', '2016-01-04', 9000.00, '2020-10-09', 15000.00, 'chennai ', '1', '4 years 9 months', 'Due to covid, looking for more exposure in graphic espicially in UI/UX', 1, '2021-08-18 04:58:34', 0, NULL, 0, NULL, 1),
(3158, 5941, 'TechArdors global', 'Graphic Designer', '2019-06-01', 15000.00, '2021-07-15', 288000.00, 'Coimbatore', '1', '2 years 1 months', ' Company has been shut due to sudden demise of the Director.Hence looking for a job change', 1, '2021-08-18 05:22:59', 0, NULL, 0, NULL, 1),
(3159, 5943, 'bharathi airtel', 'wireman', '2020-07-28', 15000.00, '2021-07-30', 15000.00, 'santhome', '1', '1 years 0 months', 'twice met with accident ', 1, '2021-08-19 11:30:58', 0, NULL, 0, NULL, 1),
(3160, 5958, 'blockhash techology', 'frontend developer', '2020-11-23', 12500.00, '2021-08-11', 15000.00, 'perungudi', '1', '0 years 8 months', 'Looking for up skill like react js', 1, '2021-08-19 10:49:47', 0, NULL, 0, NULL, 1),
(3161, 5960, 'Thulir Night school', 'Asst co- ordinator', '2017-06-05', 5000.00, '2021-08-20', 7000.00, 'Adhambakkam', '1', '4 years 2 months', '  Covid and i completed my PG regular. ', 1, '2021-08-20 10:43:10', 0, NULL, 0, NULL, 1),
(3162, 5963, 'Azulo services ', 'Tellicaller ', '2020-10-20', 12000.00, '2021-06-13', 12000.00, 'Chennai ', '1', '0 years 7 months', ' Salary issue ', 1, '2021-08-20 11:02:03', 0, NULL, 0, NULL, 1),
(3163, 5965, 'Bharathi airtel', 'Wireman are installed ing', '2020-07-01', 1.00, '2021-07-30', 18000.00, 'Chennai', '1', '1 years 0 months', ' Some accident', 1, '2021-08-20 11:11:55', 0, NULL, 0, NULL, 1),
(3164, 5968, 'Yamaha showroom', 'Backoffice', '2014-07-16', 12000.00, '1970-01-01', 21000.00, 'Adyar', '2', '7 years 1 months', ' ', 1, '2021-08-20 12:05:19', 0, NULL, 0, NULL, 1),
(3165, 5968, 'Yamaha showroom', 'Backoffice,sales', '2014-07-16', 12000.00, '2018-12-19', 21000.00, 'Adyar', '1', '4 years 5 months', 'Small operation my Bodies', 1, '2021-08-20 12:09:05', 0, NULL, 0, NULL, 1),
(3166, 5970, 'Real estate ', 'Telicalling ', '2020-09-07', 10500.00, '2021-07-12', 12000.00, 'T Nagar ', '1', '0 years 10 months', 'My company squrefit price high budget amount. so now lockdown and corona situation so most of people don\'t buy a plot so I\'m resigning my job.', 1, '2021-08-21 11:15:15', 0, NULL, 0, NULL, 1),
(3167, 5970, 'Real estate ', 'Telicalling ', '2020-09-07', 10500.00, '2021-07-02', 10500.00, 'Tnagar ', '1', '0 years 9 months', ' My company name is Krish housing and properties  .squrefit price is very high budget only so now lockdown and corona situation so most of people don\'t buy a plot. And I\'m a salary based employee. now I\'m  business manager so only commission based  so I\'m resigning my job ', 1, '2021-08-21 11:56:53', 0, NULL, 0, NULL, 1),
(3168, 5973, 'sriram digital managerment pvt ltd', 'sales officer', '2019-08-30', 19000.00, '2020-09-30', 20000.00, 'chennai', '1', '1 years 1 months', ' Salary issues', 1, '2021-08-21 12:35:16', 0, NULL, 0, NULL, 1),
(3169, 5974, 'K v narasimhan accountant office', 'Accounting work', '2020-11-23', 5000.00, '1970-01-01', 18000.00, ' Egmore', '2', '0 years 8 months', ' ', 1, '2021-08-21 05:52:09', 0, NULL, 0, NULL, 1),
(3170, 5982, 'Nova', 'Cp', '2019-05-08', 20000.00, '2021-08-15', 20000.00, 'Kezhpakkam', '1', '2 years 3 months', ' Salary issue', 1, '2021-08-23 03:31:34', 0, NULL, 0, NULL, 1),
(3171, 5992, 'I Marque Solution pvt ltd', 'Voice (Telecallers)', '2018-05-14', 25.00, '2020-12-28', 15.00, 'chennai', '1', '2 years 7 months', ' Contract basis is closing not increase the salary! Full Night Shift', 1, '2021-08-24 01:05:21', 0, NULL, 0, NULL, 1),
(3172, 6005, 'reliance communication', 'sr.acc.manager', '2010-12-14', 8000.00, '2019-06-25', 18000.00, 'nungambakkam', '1', '10 years 8 months', ' family reason', 1, '2021-08-25 10:42:16', 0, NULL, 0, NULL, 1),
(3173, 6006, 'Smile Mobility ', 'Web developer', '2020-11-04', 5000.00, '2021-04-27', 8000.00, 'Aranthangi ', '1', '0 years 5 months', ' In covid sutition and i need to learn ', 1, '2021-08-25 10:48:18', 0, NULL, 0, NULL, 1),
(3174, 6006, 'TTD technology ', 'Php developer', '2021-05-01', 10000.00, '2021-07-31', 10000.00, 'Coimbatore ', '1', '0 years 3 months', 'I need to change new environment because i worked company is start up so need to change and learn for others', 1, '2021-08-25 10:50:59', 0, NULL, 0, NULL, 1),
(3175, 6009, 'Clar aqua', 'HR Manager', '2020-03-02', 25000.00, '1970-01-01', 25000.00, 'Chrompet', '2', '1 years 5 months', ' Career growth', 1, '2021-08-25 11:29:29', 0, NULL, 0, NULL, 1),
(3176, 6016, 'forte', 'telecaller', '2019-02-15', 10000.00, '2020-03-15', 10000.00, 'saidapet', '1', '1 years 1 months', ' health issue', 1, '2021-08-25 12:07:09', 0, NULL, 0, NULL, 1),
(3177, 6023, 'macro solutions', 'telesales executive', '2017-08-14', 10000.00, '2018-08-17', 12000.00, 'chennai', '1', '1 years 0 months', ' growth', 1, '2021-08-25 12:30:44', 0, NULL, 0, NULL, 1),
(3178, 6024, 'Anzinanayagi', '2020', '2020-08-10', 10000.00, '2021-07-15', 11000.00, 'Egmore', '1', '0 years 11 months', ' No increament in my salary', 1, '2021-08-25 12:44:07', 0, NULL, 0, NULL, 1),
(3179, 6027, 'Srihari', 'Mountroad', '2020-06-25', 10000.00, '2020-12-08', 11000.00, 'Lic backside', '1', '0 years 5 months', ' No increament salary', 1, '2021-08-25 01:00:12', 0, NULL, 0, NULL, 1),
(3180, 6040, 'Iyantras', 'Digital Marketing and Content Writing ', '2019-11-01', 10000.00, '2021-06-30', 15000.00, 'Chennai', '1', '1 years 7 months', ' I was suffering from Covid 19 ', 1, '2021-08-25 05:58:37', 0, NULL, 0, NULL, 1),
(3181, 6037, 'we shine academy', 'seo analyst', '2017-12-04', 8000.00, '2018-12-10', 12000.00, 'chennai', '1', '1 years 0 months', ' i got better chance to learn and improve myself', 1, '2021-08-25 06:17:49', 1, '2021-08-25 06:21:05', 0, NULL, 1),
(3182, 6037, 'e shakti.com pvt ltd', 'blogger outreach specialist', '2018-12-17', 15000.00, '2020-03-20', 15000.00, 'chennai', '1', '1 years 3 months', 'due to covid', 1, '2021-08-25 06:19:46', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3183, 6037, 'BTREE Systems', 'seo intern', '2020-09-21', 6000.00, '2021-03-13', 12000.00, 'chennai', '1', '0 years 5 months', 'completed my Internship and i got an offer in preludesys india pvt ltd', 1, '2021-08-25 06:23:40', 0, NULL, 0, NULL, 1),
(3184, 6037, 'preludesys india pvt ltd', 'trainee lead generation', '2021-03-15', 15000.00, '2021-09-06', 15000.00, 'chennai', '1', '0 years 5 months', 'relocated to chennai', 1, '2021-08-25 06:26:01', 0, NULL, 0, NULL, 1),
(3185, 6045, 'I skills solutions', 'Educational counsellor', '2020-06-15', 5.00, '2020-09-10', 12000.00, 'Chennai', '1', '0 years 2 months', ' Delayed salary', 1, '2021-08-26 10:23:47', 0, NULL, 0, NULL, 1),
(3186, 6049, 'Domino\'s Pizza', 'Gsr guest service Associate part timer', '2016-07-12', 7000.00, '2018-09-12', 7000.00, 'Medavakkam branch', '1', '2 years 2 months', '  For My studies', 1, '2021-08-26 11:39:16', 0, NULL, 0, NULL, 1),
(3187, 6050, 'ppg asian paint pvt ltd', 'sales execuitve', '2020-08-14', 18000.00, '2021-08-14', 18000.00, 'sriperambadur', '1', '1 years 0 months', 'it was an internship want to start a job ', 1, '2021-08-26 11:47:06', 0, NULL, 0, NULL, 1),
(3188, 6051, 'edu services', 'web designer', '2019-07-01', 10000.00, '2021-03-01', 10000.00, 'kumbakonam', '1', '1 years 7 months', 'corona  pandemic ', 1, '2021-08-26 01:28:02', 0, NULL, 0, NULL, 1),
(3189, 6054, 'medibox digital solution pvt ltd', 'sales associate', '2019-12-29', 20000.00, '2021-07-08', 20000.00, 'basavanagudi', '1', '1 years 6 months', ' Medibox digital solution company has closed.', 1, '2021-08-26 01:36:00', 0, NULL, 0, NULL, 1),
(3190, 6055, 'Ifelse technologies', 'Web developer', '2019-05-01', 15000.00, '2021-03-24', 10000.00, 'Chennai', '1', '1 years 10 months', ' I want to improve in my career', 1, '2021-08-26 02:50:19', 0, NULL, 0, NULL, 1),
(3191, 6074, 'Indusind bank', 'Tele Relationship Manager', '2019-06-24', 180000.00, '2021-08-11', 180000.00, 'Karapakkam', '1', '2 years 1 months', ' For my salary hike', 1, '2021-08-27 12:03:26', 0, NULL, 0, NULL, 1),
(3192, 6075, 'Accenture', 'Service Delivery Operation', '2020-10-23', 152000.00, '1970-01-01', 163000.00, 'Chennai', '2', '0 years 10 months', ' Looking for career Growth', 1, '2021-08-27 12:11:42', 0, NULL, 0, NULL, 1),
(3193, 6105, 'fa capital management', 'telecaller', '2019-12-23', 11500.00, '2021-07-04', 14000.00, 'royapaetah', '1', '1 years 6 months', 'marriage ', 1, '2021-08-30 11:01:09', 0, NULL, 0, NULL, 1),
(3194, 6109, 'Manappuram finance ltd', 'Jr officer', '2019-04-09', 10000.00, '2021-08-04', 18000.00, 'Taramani', '1', '2 years 3 months', ' Target pressure', 1, '2021-08-30 12:42:37', 0, NULL, 0, NULL, 1),
(3195, 6110, 'vac design eng pvt ltd', 'amc', '2019-08-13', 13000.00, '2021-03-15', 13000.00, 'defence colony', '1', '1 years 7 months', 'no salary hike due too covid ', 1, '2021-08-30 01:24:39', 0, NULL, 0, NULL, 1),
(3196, 6111, 'Alpha software solutions', 'Web developer', '2020-12-22', 12000.00, '1970-01-01', 12000.00, 'Thanjavur', '2', '0 years 8 months', ' ', 1, '2021-08-30 02:00:45', 0, NULL, 0, NULL, 1),
(3197, 6111, 'Alpha software solutions', 'Web developer', '2020-12-22', 12000.00, '2021-07-30', 12000.00, 'Thanjavur', '1', '0 years 7 months', 'Due to pandemic project not arrival', 1, '2021-08-30 02:04:04', 0, NULL, 0, NULL, 1),
(3198, 6112, 'everyday banking solutions', 'field sales', '2017-07-08', 13000.00, '2019-12-31', 15000.00, 'tnagar', '1', '2 years 5 months', 'field work and telecalling shift so change not accepted ', 1, '2021-08-30 02:36:18', 0, NULL, 0, NULL, 1),
(3199, 6114, 'Janani Pvt Ltd', 'Photoshop', '2016-05-02', 7000.00, '2021-06-30', 20000.00, 'Mylapore', '2', '5 years 1 months', 'Lowest salary', 1, '2021-08-30 04:31:45', 0, NULL, 0, NULL, 1),
(3200, 6118, 'DESIGNER BLOG', 'graphic designer', '2013-11-10', 8000.00, '2015-11-12', 8000.00, 'chennai', '1', '2 years 0 months', 'personal problem', 1, '2021-08-30 07:53:08', 0, NULL, 0, NULL, 1),
(3201, 6118, 'WEDTREE ESTORE PVT LTD', 'graphic designer', '2015-11-17', 12000.00, '2019-02-04', 15000.00, 'chennai', '1', '3 years 2 months', 'projected completed', 1, '2021-08-30 07:55:56', 0, NULL, 0, NULL, 1),
(3202, 6118, 'TRANSFORM', 'graphic designer', '2019-04-08', 15000.00, '2019-11-04', 15000.00, 'chennai', '1', '0 years 6 months', 'covid issue lay off company', 1, '2021-08-30 08:09:59', 0, NULL, 0, NULL, 1),
(3203, 6120, 'Aadhar housing finance limited', 'RELATIONSHIP OFFICER', '2020-10-23', 18500.00, '2020-12-31', 18500.00, 'Chennai', '1', '0 years 2 months', 'Personal issues', 1, '2021-08-31 10:54:50', 0, NULL, 0, NULL, 1),
(3204, 6125, 'andromada', 'telecaller', '2020-10-15', 12000.00, '2021-05-15', 15000.00, 'mountroad', '1', '0 years 7 months', ' personal issue', 1, '2021-08-31 12:33:05', 0, NULL, 0, NULL, 1),
(3205, 6126, 'Eximio solutions private limited', 'Semi Voice process', '2021-02-22', 10000.00, '2021-08-06', 10000.00, 'Chennai', '1', '0 years 6 months', ' Salary in convent', 1, '2021-08-31 12:49:20', 0, NULL, 0, NULL, 1),
(3206, 6128, 'basic first learning', 'bdo', '2021-06-29', 23000.00, '2021-08-25', 23000.00, 'wfh', '1', '0 years 1 months', 'Beginning told us they will open office in hyd ,  but they have not opened', 1, '2021-08-31 01:11:39', 0, NULL, 0, NULL, 1),
(3207, 6127, 'Zaealoex', 'Customer service executive', '2020-03-05', 120000.00, '2020-11-10', 8500.00, 'Nungambakkam', '1', '0 years 8 months', ' Lay of', 1, '2021-08-31 01:36:43', 0, NULL, 0, NULL, 1),
(3208, 6134, '2adpro', 'Graphic designer ', '2019-12-02', 16500.00, '2020-06-02', 16500.00, 'Chennai ', '1', '0 years 6 months', 'Fot the corona , ', 1, '2021-08-31 06:32:26', 0, NULL, 0, NULL, 1),
(3209, 6135, 'Vlead Design Services Pvt Ltd', 'Graphic Designer', '2018-07-09', 15000.00, '2021-03-01', 15000.00, 'Chennai', '1', '2 years 7 months', ' Covid 19 project not come to clients', 1, '2021-09-01 10:51:56', 0, NULL, 0, NULL, 1),
(3210, 6138, 'Zealous', 'Customer support executive', '2019-06-20', 15000.00, '2019-09-01', 150000.00, 'Nungambakkam', '1', '0 years 2 months', ' Strated doing my own buisness so I\'ve resigned my job ', 1, '2021-09-01 11:52:07', 0, NULL, 0, NULL, 1),
(3211, 6139, 'Volante Technologies', 'Software Engineer trainee', '2019-07-08', 14750.00, '2020-11-27', 14750.00, 'Velachery', '1', '1 years 4 months', ' Personal emergency', 1, '2021-09-01 11:56:30', 0, NULL, 0, NULL, 1),
(3212, 6140, 'Hdfc bank (dsa)', 'Bussiness associate ', '2018-07-15', 10000.00, '2020-03-15', 22000.00, 'Kodambakkam ', '1', '1 years 8 months', 'Due to salary', 1, '2021-09-01 01:08:31', 0, NULL, 0, NULL, 1),
(3213, 6142, 'EMC', 'Xl', '2021-04-03', 12000.00, '1970-01-01', 12000.00, 'Tnagar', '2', '0 years 4 months', ' ', 1, '2021-09-01 01:17:14', 0, NULL, 0, NULL, 1),
(3214, 6143, 'Matrimony', 'Telecalling', '2021-06-07', 12400.00, '1970-01-01', 12400.00, 'Guindy', '2', '0 years 2 months', ' ', 1, '2021-09-01 01:56:10', 0, NULL, 0, NULL, 1),
(3215, 6115, 'Vlead design service pvt ltd', 'process accosiate', '2018-07-11', 10000.00, '2020-12-31', 15000.00, 'tharamani', '1', '2 years 5 months', 'Covid-19 ', 1, '2021-09-01 02:51:16', 0, NULL, 0, NULL, 1),
(3216, 6146, 'Pace automation', 'Technical support', '2019-03-01', 8000.00, '2020-08-01', 8000.00, 'Egmore', '1', '1 years 5 months', ' I will use my skills and experience in A Different capacity. I want to turn my passion into the next step of my career', 1, '2021-09-01 03:22:04', 0, NULL, 0, NULL, 1),
(3217, 6150, 'Lavanya collection', 'Sales excutive and online promotor', '2019-04-04', 13000.00, '2021-03-25', 15000.00, 'Chennai', '1', '1 years 11 months', ' ', 1, '2021-09-01 04:28:29', 0, NULL, 0, NULL, 1),
(3218, 6162, 'RCT india', 'Tele caller', '2019-05-17', 12500.00, '2020-12-27', 14000.00, 'Anna Nagar', '1', '1 years 7 months', ' Salary problem', 1, '2021-09-02 11:17:59', 0, NULL, 0, NULL, 1),
(3219, 6163, 'Alpentrix', 'Tele caller', '2020-09-25', 15000.00, '2021-06-02', 16000.00, 'Vada Palani', '1', '0 years 8 months', ' Distance', 1, '2021-09-02 11:28:59', 0, NULL, 0, NULL, 1),
(3220, 6169, 'Imarque', 'Telecaller', '2019-12-23', 12000.00, '2021-01-25', 13000.00, 'T.Nagar', '1', '1 years 1 months', ' Carear growth', 1, '2021-09-02 12:12:03', 0, NULL, 0, NULL, 1),
(3221, 6174, 'uv creations', 'executive', '2020-06-14', 20000.00, '2021-03-19', 20000.00, 'jubilee hills', '1', '0 years 9 months', 'due to covid and health issue ', 1, '2021-09-02 03:43:34', 0, NULL, 0, NULL, 1),
(3222, 6176, 'Spanex global services', 'Imaging associate', '2019-10-08', 20000.00, '1970-01-01', 20000.00, 'Chennai', '2', '1 years 10 months', ' ', 1, '2021-09-02 06:13:12', 0, NULL, 0, NULL, 1),
(3223, 6185, 'Ispro', 'Student', '2021-06-23', 13000.00, '2021-07-28', 13000.00, 'Nungambakkam', '1', '0 years 1 months', ' Salary pending', 1, '2021-09-03 12:37:45', 0, NULL, 0, NULL, 1),
(3224, 6217, 'Hdfc bank', 'Sales officer', '2017-02-17', 9000.00, '2020-08-31', 16500.00, 'Chennai', '1', '3 years 6 months', ' Salary issue sir 4 months not salary issue', 1, '2021-09-06 12:20:37', 0, NULL, 0, NULL, 1),
(3225, 6217, 'My property foundation', 'Sr. Sales officer', '2014-06-15', 8500.00, '2016-10-16', 17000.00, 'Chennai', '1', '2 years 4 months', 'Real-estate dow not salary issue', 1, '2021-09-06 12:22:55', 0, NULL, 0, NULL, 1),
(3226, 6218, 'Citi bank NA', 'MR in export trade finance', '2019-02-14', 12000.00, '2020-08-07', 12000.00, 'Chennai', '2', '1 years 5 months', ' It\'s contract based job.the contract period Will be over so relieving a Job.', 1, '2021-09-06 12:49:55', 0, NULL, 0, NULL, 1),
(3227, 6221, 'cafs', 'Telecaller', '2018-12-04', 115000.00, '2019-12-06', 11500.00, 'pondy bazar', '1', '1 years 0 months', ' Due to personal reason', 1, '2021-09-06 03:25:20', 0, NULL, 0, NULL, 1),
(3228, 6232, 'CONNEQT BUS SOLUTION', 'CUSTOMER CARE EXECUTIVE', '2020-09-01', 1.00, '2021-07-31', 15500.00, 'MOUNT ROAD', '1', '0 years 10 months', ' Contract close', 1, '2021-09-07 10:11:51', 0, NULL, 0, NULL, 1),
(3229, 6236, 'Cameo corporate service limited', 'Junior assistant ', '2021-08-02', 10738.00, '2021-09-07', 8129.00, 'Tyenapati ', '2', '0 years 1 months', ' Tempy job vaccines ', 1, '2021-09-07 11:22:27', 0, NULL, 0, NULL, 1),
(3230, 6238, 'bmqr', 'admin', '2018-08-02', 10000.00, '2020-09-30', 13000.00, 'avadi', '1', '2 years 1 months', 'marriage ', 1, '2021-09-07 12:22:51', 0, NULL, 0, NULL, 1),
(3231, 6239, 'sevika tech pvt', 'process associate', '2021-02-22', 13000.00, '2021-06-04', 13000.00, 'nandambakkam', '1', '0 years 3 months', ' due to covid company closed', 1, '2021-09-07 12:53:25', 0, NULL, 0, NULL, 1),
(3232, 6243, 'Sevika tech private limited', 'Agent', '2021-03-01', 12000.00, '2021-06-01', 12000.00, 'Chennao', '1', '0 years 3 months', ' Due to this 2nd wave  am relieving from that company.', 1, '2021-09-07 03:51:39', 0, NULL, 0, NULL, 1),
(3233, 6252, 'BM TRAVELS', 'Ticket booking and inbound & outbound calls', '2019-11-10', 13000.00, '2020-12-16', 12000.00, 'Chennai', '1', '1 years 1 months', 'Location is not fexcible.', 1, '2021-09-08 11:18:08', 0, NULL, 0, NULL, 1),
(3234, 6253, 'matrimony', 'telesales', '2018-03-15', 10500.00, '2021-05-12', 10500.00, 'guindy', '1', '3 years 5 months', ' for career growth', 1, '2021-09-08 11:45:23', 0, NULL, 0, NULL, 1),
(3235, 6257, 'Computer age management services mutual fund', 'Process officer', '2019-05-07', 12000.00, '2021-08-31', 16000.00, 'Chennai', '1', '2 years 3 months', ' Personal issues', 1, '2021-09-08 12:54:25', 0, NULL, 0, NULL, 1),
(3236, 6261, 'CMS info systems', 'Software developer', '2019-02-07', 13000.00, '1970-01-01', 13500.00, 'Chennai', '2', '2 years 7 months', ' ', 1, '2021-09-08 06:28:40', 0, NULL, 0, NULL, 1),
(3237, 6261, 'CMS info systems', 'Software developer', '2019-02-07', 13000.00, '1970-01-01', 13500.00, 'Chennai', '2', '2 years 7 months', 'No hike given last two years', 1, '2021-09-08 06:30:24', 0, NULL, 0, NULL, 1),
(3238, 6263, 'Ison BPO', 'Customer care executive', '2020-12-29', 10500.00, '2021-05-15', 10500.00, 'Prugudai', '1', '0 years 4 months', ' Covid probelm and close tha insurance process', 1, '2021-09-09 11:32:25', 0, NULL, 0, NULL, 1),
(3239, 6269, 'Prime Serve Private Limited', 'Tele calling', '2019-08-09', 10000.00, '2020-03-10', 11000.00, 'Egmore', '1', '0 years 7 months', 'Due to covid', 1, '2021-09-09 01:46:11', 0, NULL, 0, NULL, 1),
(3240, 6271, 'Societe generale', 'Specialist software engineer', '2017-03-07', 1000000.00, '1970-01-01', 1650000.00, 'Bangalore', '2', '4 years 6 months', ' ', 1, '2021-09-09 03:53:16', 0, NULL, 0, NULL, 1),
(3241, 6271, 'iGate global solutions', 'Software Engineer', '2010-12-23', 270000.00, '2014-11-06', 480000.00, 'Bangalore', '1', '3 years 10 months', 'Career growth', 1, '2021-09-09 03:55:56', 0, NULL, 0, NULL, 1),
(3242, 6271, 'Infosys ltd', 'Technology analyst', '2014-11-10', 650000.00, '2016-12-31', 1000000.00, 'Bangalore', '1', '2 years 1 months', 'Return to native country due to family constraints', 1, '2021-09-09 03:59:22', 0, NULL, 0, NULL, 1),
(3243, 6273, 'ACP usa medical billing', 'Charge entry', '2019-02-02', 15000.00, '2019-12-31', 16500.00, 'Mathavaram', '1', '0 years 10 months', ' Due to corona', 1, '2021-09-09 09:22:18', 0, NULL, 0, NULL, 1),
(3244, 6276, 'CATLYST CORPORATION', 'SENIOR PROCESS ASSOCIATE', '2019-08-20', 17500.00, '2021-03-20', 17500.00, 'CHENNAI', '1', '1 years 7 months', ' ', 1, '2021-09-11 12:02:10', 0, NULL, 0, NULL, 1),
(3245, 6279, 'Tractor And Farm Equipment ltd', 'Technical illustrater', '2016-06-06', 9500.00, '2021-09-11', 23000.00, 'Chennai', '2', '5 years 3 months', ' ', 1, '2021-09-11 01:41:47', 0, NULL, 0, NULL, 1),
(3246, 6286, 'Strategic manpower solutions limited ', 'Sales executive ', '2015-03-01', 7000.00, '2016-03-30', 12000.00, 'West mambalam', '1', '1 years 1 months', ' Mother health issues ', 1, '2021-09-13 11:34:07', 0, NULL, 0, NULL, 1),
(3247, 6292, 'Lionbridge IT solutions,', 'Consultant', '2020-12-08', 18.00, '1970-01-01', 23.00, 'Chennai', '2', '0 years 9 months', ' I\'m working as a c#developer in that company, I signed contract of 9 months that contract is complete in September end. So I\'m looking forward my new opportunity, I learned something new in that, I\'m ready to learn new technologies, so I\'m looking for new Offer. Thanks and regards', 1, '2021-09-13 01:36:21', 0, NULL, 0, NULL, 1),
(3248, 6301, 'Abhisu technology  Pvt. Ltd', 'Software developer', '2016-01-06', 15000.00, '2018-07-23', 200000.00, 'Patna', '1', '2 years 6 months', 'very far distance', 1, '2021-09-14 07:21:26', 0, NULL, 0, NULL, 1),
(3249, 6308, 'tcs', 'process associate', '2014-07-02', 19000.00, '2015-07-15', 19000.00, 'chennai', '1', '1 years 0 months', 'higher study', 7, '2021-09-14 02:44:57', 0, NULL, 0, NULL, 1),
(3250, 6316, 'icici life insurance', 'relationship manager', '2020-02-04', 19000.00, '2021-07-18', 19000.00, 'hyderabad', '1', '1 years 5 months', 'for career growth ', 1, '2021-09-15 10:43:59', 0, NULL, 0, NULL, 1),
(3251, 6317, 'Cameo corporate services limited', 'Software programmer', '2020-09-01', 20000.00, '1970-01-01', 20000.00, 'Chennai', '2', '1 years 0 months', ' Technical growth', 1, '2021-09-15 12:03:31', 0, NULL, 0, NULL, 1),
(3252, 6318, 'Computer age management services', 'Data entry', '2020-03-21', 9500.00, '2021-09-15', 10000.00, 'MRC nagar', '1', '1 years 5 months', ' Covid shutdown ', 1, '2021-09-15 12:41:22', 0, NULL, 0, NULL, 1),
(3253, 6319, 'colors gifts', 'advertising designer', '2013-11-20', 30000.00, '2021-02-04', 66000.00, 'qatar', '1', '7 years 2 months', ' ', 1, '2021-09-15 04:34:52', 0, NULL, 0, NULL, 1),
(3254, 6331, 'city union bank limited', 'seninor associates', '2016-07-06', 15000.00, '2021-03-01', 30000.00, 'trichy', '1', '4 years 7 months', ' Family problem', 1, '2021-09-16 11:58:44', 0, NULL, 0, NULL, 1),
(3255, 6337, 'bannariamman auto mobiles', 'field sales consultant', '2018-08-16', 12000.00, '2021-09-25', 18000.00, 'trichy', '1', '3 years 1 months', ' ', 1, '2021-09-16 04:29:26', 0, NULL, 0, NULL, 1),
(3256, 6338, 'Yenmin Communications', 'Visual Designer', '2021-03-20', 12000.00, '2021-09-16', 12000.00, 'Chennai', '1', '0 years 5 months', 'No more project ', 1, '2021-09-16 05:00:25', 0, NULL, 0, NULL, 1),
(3257, 6338, 'iCore software systems', 'Ui designer', '2020-01-15', 5000.00, '2020-09-30', 5000.00, 'Chennai', '1', '0 years 8 months', 'Due to no project', 1, '2021-09-16 05:05:08', 0, NULL, 0, NULL, 1),
(3258, 6343, 'Hinduja global solutions', 'Medicare', '2019-10-17', 10000.00, '2021-05-10', 13000.00, 'Chennai', '1', '1 years 6 months', ' ', 1, '2021-09-17 12:23:21', 0, NULL, 0, NULL, 1),
(3259, 6355, 'bannariamman auto mobiles', 'sales exe', '2018-10-15', 12000.00, '1970-01-01', 16000.00, 'trichy', '2', '2 years 11 months', ' planning to do higher study', 1, '2021-09-17 05:59:18', 0, NULL, 0, NULL, 1),
(3260, 6356, 'Spider Pest Control Pvt Ltd ', 'Customer relationship Executive ', '2021-06-24', 18500.00, '2021-09-07', 18500.00, 'Chennai ', '1', '0 years 2 months', ' Salary was not properly credited', 1, '2021-09-17 06:41:56', 0, NULL, 0, NULL, 1),
(3261, 6123, 'NEW CHENNAI TOWNSHIP (MARG GROUP)', 'Senior Executive ', '2017-11-01', 15000.00, '2019-10-25', 23500.00, 'Chennai ', '1', '1 years 11 months', ' ', 1, '2021-09-18 11:57:39', 0, NULL, 0, NULL, 1),
(3262, 6123, 'Freelance ', 'Self employment ', '2020-01-01', 20000.00, '1970-01-01', 20000.00, 'Work from Home', '2', '1 years 8 months', 'Doing freelance works', 1, '2021-09-18 12:01:11', 0, NULL, 0, NULL, 1),
(3263, 6363, 'Hdfcergo general insurance company', 'Customer care executive', '2018-11-12', 17000.00, '2021-07-24', 18000.00, 'Gunidy', '1', '2 years 8 months', ' Due to long distance I have my Shitted home ', 1, '2021-09-18 12:53:37', 0, NULL, 0, NULL, 1),
(3264, 6366, 'Sudharsanam and associates', 'Data entry operator', '2016-06-01', 7500.00, '2019-03-31', 12500.00, 'Chennai', '1', '2 years 9 months', ' Process closed', 1, '2021-09-18 03:49:27', 0, NULL, 0, NULL, 1),
(3265, 6369, 'Bajaj finserv', 'Senior executive', '2018-04-01', 1.00, '2020-01-01', 15000.00, 'Tambaram', '1', '1 years 9 months', ' Illness', 1, '2021-09-18 06:36:28', 0, NULL, 0, NULL, 1),
(3266, 6378, 'aagna globel solution', 'process associate', '2017-01-07', 8500.00, '2018-01-25', 11000.00, 'nagercoil', '1', '1 years 0 months', 'basically it was BPO i have intersted  on developer position so i changed ', 1, '2021-09-20 03:16:12', 0, NULL, 0, NULL, 1),
(3267, 6378, 'essay infotech', 'web developer', '2018-02-02', 9000.00, '2018-08-10', 9000.00, 'nagercoil', '1', '0 years 6 months', 'due to low projects and cannot learn new technology', 1, '2021-09-20 03:21:03', 0, NULL, 0, NULL, 1),
(3268, 6378, 'higs software solution', 'ui developer', '2018-09-01', 13000.00, '2021-06-30', 20000.00, 'nagercoil', '1', '2 years 9 months', 'i am planning immigrate to chennai in future.', 1, '2021-09-20 03:27:29', 0, NULL, 0, NULL, 1),
(3269, 6401, 'Chola ms insurance ', 'Crm', '2014-06-20', 15000.00, '2016-03-10', 15000.00, 'Tambaram', '1', '1 years 8 months', ' For marriage', 1, '2021-09-21 10:21:16', 0, NULL, 0, NULL, 1),
(3270, 6407, 'Zealous service', 'Customer support executive', '2018-06-01', 10000.00, '2020-10-15', 12000.00, 'Nungambakkam', '1', '2 years 4 months', ' Man power reduce that\'s why our company lay off ', 1, '2021-09-21 12:08:09', 0, NULL, 0, NULL, 1),
(3271, 6406, 'i process', 'sales', '2020-12-15', 16000.00, '2021-07-13', 16900.00, 'chennai', '1', '0 years 6 months', 'salary low', 7, '2021-09-21 02:51:06', 0, NULL, 0, NULL, 1),
(3272, 6432, 'ICICI Bank', 'Tellcaller', '2019-02-04', 11500.00, '2019-10-15', 12000.00, 'Kanchepuram', '1', '0 years 8 months', ' My mother was sick', 1, '2021-09-23 11:14:52', 0, NULL, 0, NULL, 1),
(3273, 6449, 'ritz carlton', 'learning coach', '2014-01-15', 12500.00, '2021-08-31', 150000.00, 'cayman', '1', '7 years 7 months', ' due to  family issue', 1, '2021-09-24 11:04:16', 0, NULL, 0, NULL, 1),
(3274, 6454, 'Nithra Apps India Private limited', 'Content Developer', '2019-07-15', 10.00, '2021-01-31', 15.00, 'Namakkal', '1', '1 years 6 months', ' Getting married', 1, '2021-09-26 10:15:24', 0, NULL, 0, NULL, 1),
(3275, 6455, 'Forte Management Service', 'Telecaller', '2021-01-14', 13000.00, '2021-09-20', 6800.00, 'Saidapet', '1', '0 years 8 months', ' Salary date problem', 1, '2021-09-27 10:32:34', 0, NULL, 0, NULL, 1),
(3276, 6459, 'Koka Technology', 'Web designer', '2020-07-29', 17000.00, '2021-09-13', 17000.00, 'Mougaper west Chennai', '1', '1 years 1 months', ' Career growth', 1, '2021-09-27 06:57:26', 0, NULL, 0, NULL, 1),
(3277, 6458, 'Reliance Nippon Life insurance company', 'SBM', '2020-11-17', 62500.00, '1970-01-01', 62500.00, 'TNagar Chennai', '2', '0 years 10 months', ' Carrier Growth', 1, '2021-09-27 07:20:29', 0, NULL, 0, NULL, 1),
(3278, 6467, 'SBI CARDS', 'Telecaller', '2019-06-20', 16500.00, '2021-04-25', 16500.00, 'Koyambedu', '1', '1 years 10 months', 'Healthissue', 1, '2021-09-28 01:20:31', 0, NULL, 0, NULL, 1),
(3279, 6479, 'Bankbazaar', 'Customer relationship officer', '2020-12-05', 15000.00, '2021-08-31', 15000.00, 'Chennai', '1', '0 years 8 months', ' Low salary', 1, '2021-09-30 12:50:25', 0, NULL, 0, NULL, 1),
(3280, 5155, 'Thinksynq solutions', 'Customer Support Exceutive', '2021-10-08', 5.00, '1970-01-01', 10000.00, 'Royapettah', '2', '0 years 0 months', ' Low Salary', 1, '2021-09-30 12:56:30', 0, NULL, 0, NULL, 1),
(3281, 6482, 'GN solutions', 'Telecaller', '2021-01-03', 15000.00, '2021-08-12', 17000.00, 'Saidapet', '1', '0 years 7 months', ' Salary Delayed and Stopped', 1, '2021-10-04 10:32:25', 0, NULL, 0, NULL, 1),
(3282, 6498, 'Omega health care', 'AR associate', '2019-04-29', 13000.00, '2021-05-15', 13000.00, 'Chennai', '1', '2 years 0 months', ' Due to health issues', 1, '2021-10-05 12:20:35', 0, NULL, 0, NULL, 1),
(3283, 6497, 'Kct financial solution ', 'Crm', '2017-09-25', 12500.00, '2021-10-05', 13500.00, 'Arumbakkam ', '2', '4 years 0 months', ' Health issue', 1, '2021-10-05 12:22:45', 0, NULL, 0, NULL, 1),
(3284, 6500, 'IMARQUE SOLUTIONS', 'Customer SERVICE EXECUTIVE', '2019-01-21', 11000.00, '2021-07-31', 12000.00, 'CHENNAI', '1', '2 years 6 months', ' INSPITE OF COVID19 I HAD LEFT THE JOB', 1, '2021-10-05 12:43:59', 0, NULL, 0, NULL, 1),
(3285, 6259, 'Teleformance', 'Ambattur', '2020-04-06', 15000.00, '2021-09-01', 16000.00, 'Ambattur', '1', '1 years 4 months', ' Health issue', 1, '2021-10-06 11:19:05', 0, NULL, 0, NULL, 1),
(3286, 6509, 'Softlogic systems pvt ltd ', 'Placement consultant Trainee ', '2016-11-14', 8000.00, '2017-04-17', 9000.00, 'Kk nagar Chennai ', '1', '0 years 5 months', ' Business loss', 1, '2021-10-06 11:21:21', 0, NULL, 0, NULL, 1),
(3287, 6509, 'Teleperformance global services pvt ltd ', 'Customer Service Associate ', '2017-09-28', 10500.00, '2019-11-18', 10500.00, 'Koyambedu', '1', '2 years 1 months', 'Health issues and personal commitments', 1, '2021-10-06 11:24:27', 0, NULL, 0, NULL, 1),
(3288, 6510, 'Bank ', 'Telecaller', '2021-06-10', 8000.00, '2021-09-30', 9000.00, 'Thanajvur', '1', '0 years 3 months', ' Timing  mangement ', 1, '2021-10-06 12:05:32', 0, NULL, 0, NULL, 1),
(3289, 6518, 'parkav infotech', 'graphic designer', '2021-08-02', 2.00, '1970-01-01', 17312.00, 'dindigul', '2', '0 years 2 months', 'Poor Administration\n\n', 1, '2021-10-07 04:16:27', 1, '2021-10-07 04:21:02', 0, NULL, 1),
(3290, 6518, 'addmax flex printing', 'graphic designer', '2014-06-20', 6000.00, '2021-07-31', 18000.00, 'dindigul', '1', '7 years 1 months', 'For Better Growth', 1, '2021-10-07 04:18:00', 1, '2021-10-07 04:19:13', 0, NULL, 0),
(3291, 6518, 'addmax flex printing', 'graphic designer', '2014-06-20', 6000.00, '2021-07-31', 18000.00, 'dindigul', '1', '7 years 1 months', 'For Better Growth', 1, '2021-10-07 04:19:02', 0, NULL, 0, NULL, 1),
(3292, 6525, 'HDB finance', 'Crm', '2021-05-08', 10000.00, '2021-08-02', 10000.00, 'Thousand lights', '1', '0 years 2 months', ' Salary issues', 1, '2021-10-08 12:41:32', 0, NULL, 0, NULL, 1),
(3293, 6527, 'Cameo', 'Banking team leader', '2017-02-10', 7000.00, '2020-09-20', 20000.00, 'Mount road', '1', '3 years 7 months', ' Salary issue', 1, '2021-10-08 12:52:29', 0, NULL, 0, NULL, 1),
(3294, 6526, 'HDB Finance Limited', 'Loan collection', '2021-05-19', 10000.00, '2021-09-01', 10000.00, 'Thousand light', '1', '0 years 3 months', 'Salary issue', 1, '2021-10-08 12:52:32', 0, NULL, 0, NULL, 1),
(3295, 6527, 'Cameo corporate lit', 'Banking team leader', '2017-02-20', 8000.00, '2020-12-24', 11000.00, 'Mount road', '1', '3 years 10 months', 'Salary', 1, '2021-10-08 12:55:14', 0, NULL, 0, NULL, 1),
(3296, 6530, 'Jayam technology and consultancy services pvt lmt', 'Web developer', '2019-11-13', 8000.00, '2021-02-28', 8000.00, 'Chennai', '1', '1 years 3 months', ' ', 1, '2021-10-08 03:58:48', 0, NULL, 0, NULL, 1),
(3297, 6530, 'White House business solutions pvt lmt', 'Web developer', '2021-03-03', 15000.00, '2021-07-15', 15000.00, 'Chennai', '1', '0 years 4 months', 'I would preferred designer job', 1, '2021-10-08 04:00:39', 0, NULL, 0, NULL, 1),
(3298, 6536, 'Bharat Matrimony', 'Telemarketing executive', '2020-05-09', 10500.00, '2021-05-09', 10500.00, 'Guindy', '1', '1 years 0 months', 'Suffering health issues  ', 1, '2021-10-09 10:05:33', 0, NULL, 0, NULL, 1),
(3299, 6538, 'Vizza investment center', 'Tellecallar', '2021-01-03', 12000.00, '2021-10-07', 12000.00, 'kodampakkam', '1', '0 years 9 months', 'Salary perps', 1, '2021-10-09 01:26:19', 0, NULL, 0, NULL, 1),
(3300, 6542, 'Jubiliant insurance ', 'Account team', '2020-01-01', 12500.00, '2021-01-31', 12500.00, 'Chennai ', '1', '1 years 0 months', ' Health issue', 1, '2021-10-09 05:45:03', 0, NULL, 0, NULL, 1),
(3301, 6521, 'Apzzo Technologies Pvt Ltd', 'UI Designer', '2020-08-25', 10500.00, '2021-09-25', 10500.00, 'Chennai', '1', '1 years 1 months', ' Low salary', 1, '2021-10-11 12:14:45', 0, NULL, 0, NULL, 1),
(3302, 6553, 'Domino\'s Pizza', 'Silver team member', '2020-10-09', 10500.00, '1970-01-01', 10000.00, 'Chennai', '2', '1 years 0 months', ' health Issues,', 1, '2021-10-13 11:23:06', 0, NULL, 0, NULL, 1),
(3303, 6555, 'Head To Toe ', 'Telecaller, manager', '2021-07-09', 15000.00, '2021-09-30', 18000.00, 'Velacherry ', '1', '0 years 2 months', ' Long Distance ', 1, '2021-10-13 11:37:42', 0, NULL, 0, NULL, 1),
(3304, 6556, 'Reliance', 'Sales and telecalling ', '2021-04-28', 10500.00, '2021-10-13', 15000.00, 'Royapuraum', '1', '0 years 5 months', ' Problem', 1, '2021-10-13 12:00:41', 0, NULL, 0, NULL, 1),
(3305, 6563, 'Idfc mutual funds ', 'Operation ', '2017-04-14', 15000.00, '2019-01-18', 18000.00, 'Chennai', '1', '1 years 9 months', 'Shifted my hometown ', 1, '2021-10-14 10:16:33', 0, NULL, 0, NULL, 1),
(3306, 6565, 'Profit Mart', 'Equity dealer', '2020-11-02', 18000.00, '1970-01-01', 18000.00, 'Arakkonam', '2', '0 years 11 months', ' Seeking for new opportunities', 1, '2021-10-15 11:07:31', 0, NULL, 0, NULL, 1),
(3307, 6566, 'Steelman telecom pvt ltd', 'Field engineer', '2017-09-22', 22000.00, '2018-03-31', 22000.00, 'Gulbarga', '1', '0 years 6 months', ' Looking for Desk job ', 1, '2021-10-15 01:06:57', 0, NULL, 0, NULL, 1),
(3308, 6574, 'Annai Realtors ', 'Telecalling ', '2021-03-20', 10000.00, '1970-01-01', 10000.00, 'Alwarpet ', '2', '0 years 6 months', ' ', 1, '2021-10-16 01:20:06', 0, NULL, 0, NULL, 1),
(3309, 6579, 'Star health insurance & annai realtors', 'Telicaller', '2020-06-22', 10000.00, '2021-10-16', 15000.00, 'Azhwarpet', '1', '1 years 3 months', ' Salary issue ', 1, '2021-10-16 01:46:06', 0, NULL, 0, NULL, 1),
(3310, 6575, 'Vizza insurance broking senter', 'Telicaller', '2020-06-28', 10000.00, '2021-10-16', 10000.00, 'Kodambkam power house', '1', '1 years 3 months', ' Salary issue', 1, '2021-10-16 01:59:10', 0, NULL, 0, NULL, 1),
(3311, 6586, 'Quess corporation ltd', 'Telecaller', '2019-10-01', 15000.00, '2021-08-18', 15000.00, 'Koyambedu ', '1', '1 years 10 months', 'Family promble ', 1, '2021-10-18 11:02:48', 0, NULL, 0, NULL, 1),
(3312, 6592, 'Apollo group of colleges', 'Telecalling', '2021-01-25', 15000.00, '2021-09-26', 15000.00, 'Tnagar', '1', '0 years 8 months', 'Last job was not satisfies me\nDue to some issues i Relieved there', 1, '2021-10-18 12:11:26', 0, NULL, 0, NULL, 1),
(3313, 6591, 'Systems and services pvt ltd', 'Customer support and accounting', '2019-04-23', 15000.00, '2020-11-24', 15000.00, 'Perungudi', '1', '1 years 7 months', ' For long distance and due to pandemic', 1, '2021-10-18 12:21:05', 0, NULL, 0, NULL, 1),
(3314, 6593, 'L&T Finace', 'Sales', '2020-01-01', 13500.00, '2021-04-03', 13500.00, 'Arakkonam', '1', '1 years 3 months', ' Personal issue', 1, '2021-10-18 12:21:46', 0, NULL, 0, NULL, 1),
(3315, 6593, 'L&T Finace', 'Sales', '2020-01-01', 13500.00, '2021-04-03', 13500.00, 'Arakkonam', '1', '1 years 3 months', ' Personal issue', 1, '2021-10-18 12:22:22', 0, NULL, 0, NULL, 1),
(3316, 6593, 'L&T Finace', 'Sales', '2020-01-01', 13500.00, '2021-04-03', 13500.00, 'Arakkonam', '1', '1 years 3 months', ' Personal issue', 1, '2021-10-18 12:22:22', 0, NULL, 0, NULL, 1),
(3317, 6593, 'L&T Finace', 'Sales', '2020-01-01', 13500.00, '2021-04-03', 13500.00, 'Arakkonam', '1', '1 years 3 months', ' Personal issue', 1, '2021-10-18 12:22:23', 0, NULL, 0, NULL, 1),
(3318, 6593, 'L&T Finace', 'Sales', '2020-01-01', 13500.00, '2021-04-03', 13500.00, 'Arakkonam', '1', '1 years 3 months', ' Personal issue', 1, '2021-10-18 12:22:23', 0, NULL, 0, NULL, 1),
(3319, 6597, 'Skills HR', 'Hr recruiter ', '2017-04-24', 12000.00, '2018-10-30', 12000.00, 'Choolaimedu', '1', '1 years 6 months', ' Maternity break', 1, '2021-10-18 01:31:42', 0, NULL, 0, NULL, 1),
(3320, 6615, 'hdb financial services pvt ltd', 'executive validator', '2016-04-24', 10000.00, '2019-08-02', 13000.00, 'nungambakkam', '1', '3 years 3 months', ' personal reason', 1, '2021-10-20 11:11:14', 0, NULL, 0, NULL, 1),
(3321, 6622, 'Petrokens ', 'HR Executive', '2019-12-02', 14000.00, '2020-08-31', 14000.00, 'Chennai', '1', '0 years 8 months', ' I was doing my final year project and job simultaneously. I need more opportunities to explore in the areas of HR. Since i didnt get enough opportunities got relieved from that company.', 1, '2021-10-20 01:39:01', 1, '2021-10-20 01:39:17', 0, NULL, 1),
(3322, 6628, 'Ntt data ', 'Conifer', '2021-06-28', 21000.00, '1970-01-01', 21000.00, 'Porur', '2', '0 years 3 months', ' If i get a good job which suits my ampition And my  dreams i will leave mycurrent job ', 1, '2021-10-20 05:46:38', 0, NULL, 0, NULL, 1),
(3323, 6632, 'Sbi credit card ', 'Collation process ', '2021-03-04', 13700.00, '1970-01-01', 13700.00, 'Kovilambakkam', '2', '0 years 7 months', ' ', 1, '2021-10-21 12:05:11', 0, NULL, 0, NULL, 1),
(3324, 6633, 'Justdial Pvt ltd', 'Tellmarketing', '2019-04-15', 12000.00, '2019-10-20', 12000.00, 'Chennai', '1', '0 years 6 months', ' ', 1, '2021-10-21 12:09:32', 0, NULL, 0, NULL, 1),
(3325, 6635, 'Shriram life insurance', 'Senior executive', '2021-04-26', 240000.00, '2021-09-30', 240000.00, 'Chennai', '1', '0 years 5 months', ' Distance issue', 1, '2021-10-21 12:38:20', 0, NULL, 0, NULL, 1),
(3326, 6635, 'Hdb financial services limited', 'Junior officer', '2019-08-09', 175000.00, '2021-03-15', 175000.00, 'Chennai', '1', '1 years 7 months', 'Salary issue', 1, '2021-10-21 12:39:42', 0, NULL, 0, NULL, 1),
(3327, 6634, 'Hul', 'Merchandising ', '2017-06-06', 7500.00, '2018-04-30', 10000.00, 'Thiruvallur ', '1', '0 years 10 months', ' Pregence ', 1, '2021-10-21 12:40:23', 0, NULL, 0, NULL, 1),
(3328, 6625, 'Revone8 HR consultancy services', 'Talent acquisition executive', '2021-02-22', 120000.00, '2021-10-05', 120000.00, 'Chennai', '1', '0 years 7 months', 'I received an offer from one company, they suggest only immediate joiner ', 1, '2021-10-21 10:04:28', 0, NULL, 0, NULL, 1),
(3329, 6644, 'Ramky Group of Companies', 'HR Executive', '2021-04-22', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '0 years 6 months', ' To gain more exposure and learning for my career Growth.', 1, '2021-10-22 10:52:53', 0, NULL, 0, NULL, 1),
(3330, 6645, 'Bonton Software pvt ltd', 'Data entry  operator ', '2019-09-05', 12000.00, '1970-01-01', 14000.00, 'Ayanavaram', '2', '2 years 1 months', ' No salary increment', 1, '2021-10-22 11:02:30', 0, NULL, 0, NULL, 1),
(3331, 6650, 'extramark education pvt ltd', 'area sales manager ', '2018-09-04', 28000.00, '2019-10-31', 28000.00, 'nolamboor', '1', '1 years 1 months', 'Nothing ', 1, '2021-10-22 12:57:57', 0, NULL, 0, NULL, 1),
(3332, 6654, 'New opportunities', 'Realitionship officer', '2021-10-01', 15103.00, '1970-01-01', 15103.00, 'Chennai', '2', '0 years 0 months', ' Personal issues', 1, '2021-10-22 05:03:19', 0, NULL, 0, NULL, 1),
(3333, 6655, 'Barclays Global Service ', 'Process Advisor', '2020-02-10', 13500.00, '2021-06-30', 14500.00, 'Dlf it park Porur', '1', '1 years 4 months', ' Process ended', 1, '2021-10-23 06:28:00', 0, NULL, 0, NULL, 1),
(3334, 6655, 'I tech India Private limited', 'Rate auditor', '2021-09-04', 14500.00, '1970-01-01', 14500.00, 'Ambattur Industrial Estate', '2', '0 years 1 months', 'Choose another field', 1, '2021-10-23 06:31:25', 0, NULL, 0, NULL, 1),
(3335, 6666, 'jubilee hunt', 'telecaller', '2020-06-21', 8000.00, '2020-12-31', 10000.00, 'thriuvallur', '1', '0 years 6 months', 'csi bank offer', 50, '2021-10-26 11:01:45', 0, NULL, 0, NULL, 1),
(3336, 6667, 'jubilee hunt', 'telecaller', '2020-06-23', 8000.00, '2021-01-30', 10000.00, 'thiruvallur', '1', '0 years 7 months', ' due to covid ', 1, '2021-10-26 11:10:30', 0, NULL, 0, NULL, 1),
(3337, 6668, 'Hindustan Unilever limited ', 'Sales ', '2017-02-14', 12000.00, '2020-03-10', 15000.00, 'Chrompet', '1', '3 years 0 months', ' Covid problem and Working time, ', 1, '2021-10-26 11:29:47', 0, NULL, 0, NULL, 1),
(3338, 6675, 'AXIS BANK', 'Deputy Manager', '2020-01-18', 35000.00, '2021-10-25', 36000.00, 'Chennai', '1', '1 years 9 months', ' For carrier growth', 1, '2021-10-27 06:33:36', 0, NULL, 0, NULL, 1),
(3339, 6678, 'MINDARIKAPVTLIMITED', 'sales', '2018-10-27', 10000.00, '2020-10-27', 12000.00, 'chennai', '1', '2 years 0 months', 'job change and covid ', 1, '2021-10-27 01:19:01', 0, NULL, 0, NULL, 1),
(3340, 6680, 'Js agro foods pvt lmt', 'Area sales manager', '2020-11-02', 18000.00, '2021-08-27', 18000.00, 'Perambalur ', '1', '0 years 9 months', ' Company closed ', 1, '2021-10-27 01:43:50', 0, NULL, 0, NULL, 1),
(3341, 6684, 'Grt jewellars', 'Back office', '2019-08-09', 10000.00, '1970-01-01', 10000.00, 'T.nagar', '2', '2 years 2 months', ' Salary not convinent and timing is not comfortable', 1, '2021-10-28 12:58:07', 0, NULL, 0, NULL, 1),
(3342, 6687, 'Gloworld Travel Ptd Ltd', 'Reservation Head', '2019-03-18', 30000.00, '2020-03-01', 30000.00, 'Chennai', '1', '0 years 11 months', ' Due to pandamic issues company was shutdown', 1, '2021-10-28 01:24:02', 1, '2021-10-28 01:27:26', 0, NULL, 1),
(3343, 6687, 'Flylink Travel Pvt Ltd', 'Reservation Executive ', '2017-03-01', 15000.00, '2019-03-01', 20000.00, 'Chennai', '1', '2 years 0 months', 'Management facing financial issues & Salary Hold.', 1, '2021-10-28 01:26:14', 0, NULL, 0, NULL, 1),
(3344, 6687, 'Bluebell Business Management pvt Ltd', 'Business Development Manager ', '2020-06-01', 20000.00, '2021-06-30', 20000.00, 'Chennai', '1', '1 years 0 months', 'Due to pandamic & salary issue.', 1, '2021-10-28 01:30:42', 0, NULL, 0, NULL, 1),
(3345, 6688, 'Matrimony.com', 'Thiruvottiyur', '2021-07-08', 10500.00, '1970-01-01', 10500.00, 'Gundiy', '2', '0 years 3 months', ' Improving my career', 1, '2021-10-28 03:43:59', 0, NULL, 0, NULL, 1),
(3346, 6689, 'Episource india pvt ltd', 'Data entry', '2018-03-17', 10000.00, '2019-06-22', 10800.00, 'Taramani', '1', '1 years 3 months', ' Project closing', 1, '2021-10-29 10:46:02', 0, NULL, 0, NULL, 1),
(3347, 6690, 'Forte management service', 'Tellecalling', '2021-08-24', 14500.00, '2021-10-09', 14500.00, 'Saidapet', '1', '0 years 1 months', ' To long location so I resign that job', 1, '2021-10-29 12:21:33', 0, NULL, 0, NULL, 1),
(3348, 6682, 'Lycatel bpo', 'Email chat process ', '2019-09-22', 19000.00, '2020-12-31', 19000.00, 'Chennai', '1', '1 years 3 months', ' Night shift and health issue ', 1, '2021-10-29 12:30:23', 0, NULL, 0, NULL, 1),
(3349, 6691, 'antway fashions india pvt ltd ', 'hr assist', '2019-10-11', 10000.00, '2021-08-29', 15000.00, 'chennai', '1', '1 years 10 months', ' ', 1, '2021-10-29 03:59:19', 0, NULL, 0, NULL, 1),
(3350, 6693, 'logwiz ', 'web developer', '2021-07-29', 11000.00, '1970-01-01', 11000.00, 'pallavaram', '2', '0 years 3 months', 'Salary package too low to manage my financial issues', 1, '2021-10-29 04:20:19', 0, NULL, 0, NULL, 1),
(3351, 6694, 'Cameo corporate private limited', 'Airtel sim card activation', '2021-02-15', 8000.00, '2021-09-05', 10000.00, 'Mount road', '1', '0 years 6 months', ' Low salary', 1, '2021-10-30 12:21:30', 0, NULL, 0, NULL, 1),
(3352, 6697, 'JESCO Energy', 'Customer support', '2020-09-05', 15000.00, '2021-10-10', 17000.00, 'Coimbatore', '1', '1 years 1 months', ' Because I applied my pg study\'s in chennai', 1, '2021-10-30 12:56:09', 0, NULL, 0, NULL, 1),
(3353, 6696, 'Carzpedia', 'Telicaller', '2021-01-06', 15000.00, '2021-10-13', 15000.00, 'Ekkaduthangal', '1', '0 years 9 months', ' Health issues', 1, '2021-10-30 01:12:34', 0, NULL, 0, NULL, 1),
(3354, 6698, 'Impulze infotech', 'HR assistant', '2021-01-13', 13.00, '2021-08-19', 15000.00, 'Chennai', '1', '0 years 7 months', 'Pay was not paid properly', 1, '2021-10-30 01:20:53', 0, NULL, 0, NULL, 1),
(3355, 6701, 'Shree vartaman agency', 'Sale', '2020-11-01', 15000.00, '2021-11-01', 20000.00, 'Purasai', '1', '1 years 0 months', ' Personal', 1, '2021-11-01 12:36:20', 0, NULL, 0, NULL, 1),
(3356, 1682, 'Blue chip', 'Field excutive', '2007-09-13', 2300.00, '2017-03-13', 13000.00, 'Chennai', '1', '9 years 6 months', ' Some family problem', 1, '2021-11-01 01:58:41', 0, NULL, 0, NULL, 1),
(3357, 6708, 'Sri Krishna sweets', 'Hr recruiter', '2017-02-01', 11000.00, '2021-10-30', 18000.00, 'CHENNAI', '1', '4 years 8 months', 'No salary appraisal', 1, '2021-11-02 05:23:20', 0, NULL, 0, NULL, 1),
(3358, 6710, 'Voltech Engineers pvt ltd', 'Php Trainee', '2021-04-19', 10500.00, '1970-01-01', 10500.00, 'Iyyappanthangal', '2', '0 years 6 months', ' Due to Salary issue', 1, '2021-11-03 02:19:55', 0, NULL, 0, NULL, 1),
(3359, 6712, 'voltech enginners pvt ltd', 'erp developer', '2019-05-06', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '2 years 5 months', ' Salary issue', 1, '2021-11-03 04:58:04', 1, '2021-11-03 04:58:32', 0, NULL, 1),
(3360, 6714, 'schol of sports', 'relationship managaer', '2020-06-06', 25000.00, '2021-07-06', 25000.00, 'nandanam', '1', '1 years 1 months', ' Corona', 1, '2021-11-06 12:33:31', 0, NULL, 0, NULL, 1),
(3361, 6720, 'Capgemini', 'Process associate', '2019-09-23', 13500.00, '2020-11-23', 14000.00, 'Karapakkam', '1', '1 years 2 months', ' Health issues', 1, '2021-11-08 10:39:29', 0, NULL, 0, NULL, 1),
(3362, 6722, 'Mmc infotech services private limited', 'Call verification executive', '2015-05-20', 7500.00, '2021-04-30', 16000.00, 'Chennai', '1', '5 years 11 months', ' Personal issues', 1, '2021-11-08 10:52:23', 0, NULL, 0, NULL, 1),
(3363, 6726, 'Buzzworks ', 'Hr IT Recruiter ', '2021-08-02', 13000.00, '2021-10-29', 13000.00, 'Chennai', '1', '0 years 2 months', ' Timing inconvenient ', 1, '2021-11-08 11:37:28', 0, NULL, 0, NULL, 1),
(3364, 6724, 'Star health ', 'N', '2021-11-08', 15.00, '2021-11-10', 12.00, 'Vadaplaniy', '1', '0 years 0 months', ' Salary promble ', 1, '2021-11-08 11:41:23', 0, NULL, 0, NULL, 1),
(3365, 6730, 'Zealous service', 'Customer support executive', '2018-04-10', 8500.00, '2019-03-06', 8500.00, 'Chennai', '1', '0 years 10 months', ' Family issue', 1, '2021-11-08 12:16:54', 0, NULL, 0, NULL, 1),
(3366, 6730, 'Matrimony. Com', 'Telemarketing executive', '2019-06-17', 10000.00, '2020-03-31', 10000.00, 'Chennai', '1', '0 years 9 months', 'Family issue', 1, '2021-11-08 12:18:09', 0, NULL, 0, NULL, 1),
(3367, 6732, 'TAAPASI PROPERTIES PVT LTD ', 'Junior accountant ', '2018-11-09', 10000.00, '2019-12-10', 15000.00, 'Bengaluru ', '1', '1 years 1 months', ' To grow up with new skills', 1, '2021-11-08 03:03:20', 0, NULL, 0, NULL, 1),
(3368, 6732, 'Muthoot finance ', 'Junior relationship executive ', '2020-08-10', 18000.00, '1970-01-01', 23000.00, 'Punganur ', '2', '1 years 2 months', 'Looking for a change ', 1, '2021-11-08 03:04:44', 0, NULL, 0, NULL, 1),
(3369, 6737, 'Byjus', 'On field Marketing Agent', '2019-06-01', 30000.00, '2019-12-01', 30000.00, 'Chennai', '1', '0 years 5 months', ' Health reason i.e. surgery for stomach ulcer', 1, '2021-11-08 03:44:44', 0, NULL, 0, NULL, 1),
(3370, 6748, 'Vizza broking service', 'Tl', '2018-12-02', 15000.00, '2021-09-14', 15.00, 'Kodambakkam ', '1', '2 years 9 months', ' Personal issue', 1, '2021-11-10 02:50:10', 0, NULL, 0, NULL, 1),
(3371, 6754, 'HDB financial services', 'Branch operations executive', '2020-03-10', 31.00, '2021-10-25', 260000.00, 'Chennai', '1', '1 years 7 months', ' Career growth', 1, '2021-11-12 01:27:13', 0, NULL, 0, NULL, 1),
(3372, 6755, 'S.l tredings', 'Tell caller', '2021-06-06', 12000.00, '2021-07-01', 15000.00, 'Arumbakkam', '1', '0 years 0 months', ' 07.11.2021', 1, '2021-11-12 02:30:51', 0, NULL, 0, NULL, 1),
(3373, 6759, 'Nil', 'Nil', '2021-11-13', 18000.00, '2021-11-13', 22000.00, 'Nil', '1', '0 years 0 months', 'Salary Hike', 60, '2021-11-13 06:51:53', 0, NULL, 0, NULL, 1),
(3374, 6762, 'Delphi Tech Services pvt.ltd', 'Sales coordinator', '2018-08-01', 9500.00, '2020-03-23', 12000.00, 'Patinampakkam', '1', '1 years 7 months', ' Company closed COVID time', 1, '2021-11-14 12:25:09', 0, NULL, 0, NULL, 1),
(3375, 6769, 'Accenture', 'Transactive processing representative ', '2021-02-12', 13000.00, '1970-01-01', 13000.00, 'Work from home', '2', '0 years 9 months', ' Health issuse problem because Night shift', 1, '2021-11-14 03:32:49', 0, NULL, 0, NULL, 1),
(3376, 6769, 'Ravindra Foods', 'HR', '2021-06-09', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '0 years 5 months', ' Develop my career, Am interested in recruitment .', 1, '2021-11-14 03:37:09', 0, NULL, 0, NULL, 1),
(3377, 6771, 'Rohaan Construction', 'Web developer', '2020-01-02', 15000.00, '2020-10-30', 15000.00, 'Chennai', '1', '0 years 9 months', 'Due to pandemic company has closed', 1, '2021-11-14 04:52:55', 0, NULL, 0, NULL, 1),
(3378, 6771, 'Tnq technologies', 'Pagination', '2019-04-03', 12000.00, '2019-12-31', 12000.00, 'Chennai', '1', '0 years 8 months', 'Interested in developing role', 1, '2021-11-14 04:54:23', 0, NULL, 0, NULL, 1),
(3379, 6774, 'Indiabulls consumer finance ', 'CL', '2020-11-01', 31.00, '2021-07-31', 16500.00, 'Villupuram ', '1', '0 years 8 months', ' Covid ', 1, '2021-11-15 10:56:37', 0, NULL, 0, NULL, 1),
(3380, 6774, 'Indiabulls consumer finance ', 'Collection ', '2020-11-01', 31.00, '2021-07-31', 16500.00, 'Pondicherry ', '1', '0 years 8 months', 'Covid ', 1, '2021-11-15 10:57:44', 1, '2021-11-15 10:58:18', 0, NULL, 0),
(3381, 6775, 'Bajaj alliance ', 'sales exe', '2018-12-01', 12500.00, '2019-08-06', 12500.00, 'arumbakkam', '1', '0 years 8 months', ' Personal reason', 1, '2021-11-15 11:20:15', 0, NULL, 0, NULL, 1),
(3382, 6782, 'Lorven Technologies', 'IT Recruiter', '2021-08-16', 20100.00, '2021-10-12', 20100.00, 'Chennai', '1', '0 years 1 months', ' Health issues', 1, '2021-11-15 04:35:25', 0, NULL, 0, NULL, 1),
(3383, 6785, 'Indus viva Pvt limited', 'Marketing', '2017-06-16', 22000.00, '2021-10-13', 22000.00, 'Thoothukudi', '1', '4 years 3 months', 'No increment in salary ', 1, '2021-11-16 10:53:57', 0, NULL, 0, NULL, 1),
(3384, 6786, 'Ksn honda automobiles Pvt Ltd', 'Sale excutive', '2020-08-24', 10000.00, '2021-11-15', 13000.00, 'Valasaravakam', '1', '1 years 2 months', ' The emergence of a new opportunity to work in a different work environment earn better compensation or get a more challenging work process is another good reason for leaving job', 1, '2021-11-16 10:57:58', 0, NULL, 0, NULL, 1),
(3385, 6789, 'Allset bussiness solution ', 'Senior executive', '2021-02-01', 12.00, '2021-10-31', 12.00, 'Chennai', '1', '0 years 8 months', ' Personal issue', 1, '2021-11-16 11:17:22', 0, NULL, 0, NULL, 1),
(3386, 6788, 'Bpo', 'Caller', '2021-05-02', 12000.00, '1970-01-01', 12000.00, 'Mount road', '2', '0 years 6 months', ' Time ', 1, '2021-11-16 11:21:52', 0, NULL, 0, NULL, 1),
(3387, 6788, 'Bpo', 'Caller', '2021-05-02', 12000.00, '2021-10-23', 12000.00, 'Mount road', '1', '0 years 5 months', 'Time is not setting', 1, '2021-11-16 11:24:38', 0, NULL, 0, NULL, 1),
(3388, 6791, 'Sl Traders', 'Arumbakkam', '2021-02-01', 18000.00, '1970-01-01', 19500.00, 'Chennai', '2', '0 years 9 months', 'Office shifted Mahabalipuram', 1, '2021-11-16 12:23:24', 0, NULL, 0, NULL, 1),
(3389, 6780, 'JGR Transport india pvt ltd', 'HR Recruiter', '2021-09-04', 20000.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 2 months', ' ', 1, '2021-11-16 02:18:52', 0, NULL, 0, NULL, 1),
(3390, 6797, 'IFFCO TOKIO GIC LTD', 'Bancassurance Vertical Incharge', '2019-10-01', 5.23, '1970-01-01', 6.33, 'Warangal', '2', '2 years 1 months', 'Career Development', 1, '2021-11-16 02:51:57', 0, NULL, 0, NULL, 1),
(3391, 6797, 'ICICI LOMBARD GIC LTD ', 'Relationship Manager', '2016-07-13', 3.15, '2019-09-27', 4.20, 'Hyderabad', '1', '3 years 2 months', 'Career Development', 1, '2021-11-16 02:55:57', 0, NULL, 0, NULL, 1),
(3392, 6797, 'Jay Kay Hatcheries', 'Asst Admin Manager', '2015-08-20', 2.20, '2016-06-20', 2.20, 'SRIRAMPURAM, U KOTHAPALLI MANDAL', '1', '0 years 10 months', 'Career Development', 1, '2021-11-16 02:59:23', 0, NULL, 0, NULL, 1),
(3393, 6793, 'BEST INSURANCE BROKING SERVICES PVT LTD', 'RELATIONSHIP MANAGER', '2015-06-15', 15000.00, '2021-10-15', 26505.00, 'HYDERABAD', '1', '6 years 4 months', ' I am Looking for better career prospects, professional growth. Looking for new challenges at work. Current location Company\'s growth prospects are poor.', 1, '2021-11-16 03:26:56', 0, NULL, 0, NULL, 1),
(3394, 6801, 'valcal solutions', 'service engineer', '2017-05-10', 15000.00, '2021-08-31', 22000.00, 'hyderabad', '1', '4 years 6 months', ' due to covid ', 1, '2021-11-16 10:21:00', 0, NULL, 0, NULL, 1),
(3395, 6803, 'HDB financial services', 'Thousands lights', '2020-08-26', 10000.00, '2021-11-03', 10000.00, 'Greams road thousand lights', '1', '1 years 2 months', ' Salary package...and growth', 1, '2021-11-17 11:20:42', 0, NULL, 0, NULL, 1),
(3396, 6803, 'HDB financial services', 'Thousands lights', '2020-08-26', 10000.00, '2021-11-03', 10000.00, 'Greams road thousand lights', '1', '1 years 2 months', 'Salary package and Growth', 1, '2021-11-17 11:22:04', 0, NULL, 0, NULL, 1),
(3397, 6804, 'Elcombo electronic industry pvt Ltd ', 'Sales and account assistant ', '2018-04-09', 10000.00, '2019-04-10', 15000.00, 'Perungudi', '1', '1 years 0 months', ' Salary  issue', 1, '2021-11-17 12:57:57', 0, NULL, 0, NULL, 1),
(3398, 6805, 'Ozone technologies Pvt Ltd', 'Customer care', '2018-09-18', 12000.00, '2021-04-13', 15000.00, 'Nesapakkkam ', '1', '2 years 6 months', ' Lockdown problem', 1, '2021-11-17 12:57:57', 0, NULL, 0, NULL, 1),
(3399, 6811, 'Accsys electronics', 'Software Engineer ', '2020-10-01', 8500.00, '2021-09-30', 15000.00, 'Chennai ', '1', '0 years 11 months', 'Upgrade my self ', 1, '2021-11-18 01:27:38', 0, NULL, 0, NULL, 1),
(3400, 6816, 'Information  Technology ', 'Php de', '2021-12-01', 16000.00, '1970-01-01', 1000.00, 'Chennai', '2', '0 years 0 months', ' Nil personal issue', 1, '2021-11-18 01:53:11', 0, NULL, 0, NULL, 1),
(3401, 6819, 'HTL', 'HR', '2020-08-05', 20000.00, '2021-09-10', 210000.00, 'Chennai', '1', '1 years 1 months', ' Got covid ', 1, '2021-11-18 04:58:10', 0, NULL, 0, NULL, 1),
(3402, 6819, 'SourceHov', 'Process associate', '2018-09-01', 13000.00, '2020-03-11', 13000.00, 'Thanjavur', '1', '1 years 6 months', 'Career change', 1, '2021-11-18 04:59:52', 0, NULL, 0, NULL, 1),
(3403, 6822, 'Shriram fortune Solution Ltd', 'Assistant Manager', '2013-11-01', 8000.00, '1970-01-01', 16000.00, 'Chennai', '2', '8 years 0 months', ' ', 1, '2021-11-19 11:28:18', 0, NULL, 0, NULL, 1),
(3404, 6824, 'Tollplus plus india Pvt Ltd ', 'Customer support manager', '2019-12-16', 17000.00, '1970-01-01', 17000.00, 'Madhapur', '2', '1 years 11 months', ' Due to low salary', 1, '2021-11-19 02:43:30', 0, NULL, 0, NULL, 1),
(3405, 6829, 'ICICi prudential life insurance ', 'Business development manager ', '2021-08-02', 30000.00, '1970-01-01', 30000.00, 'Nungambakkam ', '2', '0 years 3 months', ' Carrier growth ', 1, '2021-11-19 06:02:01', 0, NULL, 0, NULL, 1),
(3406, 6835, 'Bluechip corporate investment center', 'Field executive', '2018-02-27', 14500.00, '2021-04-05', 18250.00, 'Peeungalathur', '1', '3 years 1 months', ' Lockdown ', 1, '2021-11-22 10:51:19', 0, NULL, 0, NULL, 1),
(3407, 6835, 'Bluechip corporate investment center', 'Field executive', '2018-02-27', 14500.00, '2021-04-05', 18250.00, 'Perungalathur', '1', '3 years 1 months', 'Lockdown ', 1, '2021-11-22 10:55:15', 0, NULL, 0, NULL, 1),
(3408, 6837, 'ICICI PRUDENTIAL LIFE INSURANCE', 'Tele sales', '2021-05-05', 21000.00, '2021-11-22', 21000.00, 'Hyderabad', '1', '0 years 6 months', ' Good career and good salary', 1, '2021-11-22 11:55:55', 0, NULL, 0, NULL, 1),
(3409, 6845, 'Exide Life Insurance', 'Sale\'s manager', '2019-11-17', 7.00, '2020-11-20', 20.00, 'Nalgonda', '1', '1 years 0 months', ' Due to corona', 1, '2021-11-23 02:52:47', 0, NULL, 0, NULL, 1),
(3410, 6847, 'apollo munich', 'agency development manager', '2017-07-03', 17000.00, '2017-11-29', 17000.00, 'nungambakkam', '1', '0 years 4 months', 'met with accident problem in right eye ', 1, '2021-11-23 03:07:18', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3411, 6846, 'Bluechip corporate investment center limited', 'Sales executive', '2018-07-01', 14000.00, '2020-08-01', 22000.00, 'Hyderabad', '1', '2 years 1 months', ' Family situation father expired', 1, '2021-11-23 04:30:06', 0, NULL, 0, NULL, 1),
(3412, 6849, 'icici lombard', 'sales analyst', '2020-01-22', 18.00, '2021-09-30', 18.00, 'hyderabad', '1', '1 years 8 months', ' Looking for good salary ', 1, '2021-11-23 04:40:13', 0, NULL, 0, NULL, 1),
(3413, 6850, 'gloss auto Detailing ', 'manager', '2020-09-10', 16000.00, '2021-06-28', 20000.00, 'Chennai ', '1', '0 years 9 months', ' COVID-19 ', 1, '2021-11-24 10:30:15', 0, NULL, 0, NULL, 1),
(3414, 6857, 'Akshara Chit Funds Pvt Ltd', 'Sales manager', '2017-12-12', 8000.00, '1970-01-01', 13500.00, 'Khammam', '2', '3 years 11 months', 'Relocating to Hyderabad', 1, '2021-11-24 01:15:27', 0, NULL, 0, NULL, 1),
(3415, 6859, 'Wingspan global solutions', 'Customer support representative ', '2021-01-24', 18000.00, '1970-01-01', 18000.00, 'Sr nagar', '2', '0 years 10 months', 'Due to pandemic Second lock down the process got shutdown on July 18th 2021\n ', 1, '2021-11-24 04:26:41', 0, NULL, 0, NULL, 1),
(3416, 6843, 'Star health insurance company ', 'Telesales ', '2021-02-15', 12000.00, '1970-01-01', 12000.00, 'Somajiguda', '2', '0 years 9 months', ' Choosing for better', 1, '2021-11-25 07:58:43', 0, NULL, 0, NULL, 1),
(3417, 4378, 'Hexaware technologies', 'HR coordinator', '2021-08-06', 145000.00, '1970-01-01', 145000.00, 'Chennai', '2', '0 years 3 months', ' Am working in contract base so wants to move another company for permanent and wants to increase my career growth. ', 1, '2021-11-25 12:50:45', 0, NULL, 0, NULL, 1),
(3418, 6873, 'Smartlogues', 'Junior web developer', '2021-05-16', 7500.00, '2021-11-01', 7500.00, 'Kerala', '1', '0 years 5 months', ' Want high Salary and should be sustained in job for more than 3 yrs old company is not registered company', 1, '2021-11-25 12:51:13', 0, NULL, 0, NULL, 1),
(3419, 6881, 'ICICI LOMBARD', 'Customer relationship exicutive', '2020-10-09', 9.00, '2021-10-29', 22000.00, 'Gachibowli', '1', '1 years 0 months', ' Due to COVID process rap down', 1, '2021-11-25 04:51:40', 0, NULL, 0, NULL, 1),
(3420, 6883, 'RG business solution ', 'Telecaller', '2021-09-01', 15000.00, '1970-01-01', 15000.00, 'North usman road ', '2', '0 years 2 months', ' Transport issues ', 1, '2021-11-25 08:08:22', 0, NULL, 0, NULL, 1),
(3421, 6889, 'RG business solutions', 'Telecaller', '2021-08-25', 15000.00, '2021-11-26', 18000.00, 'Kodambakkam', '2', '0 years 3 months', 'Home shifted', 1, '2021-11-26 11:53:02', 0, NULL, 0, NULL, 1),
(3422, 6890, 'RG Business solutions', 'Telecaller', '2021-08-24', 15000.00, '1970-01-01', 18000.00, 'Kodambakkam', '2', '0 years 3 months', ' Long distance', 1, '2021-11-26 12:01:15', 0, NULL, 0, NULL, 1),
(3423, 6882, 'Hdfc sales Pvt Ltd', 'Financial services asosiat ', '2020-05-05', 16000.00, '2021-06-30', 16000.00, 'Hyderabad', '1', '1 years 1 months', ' Incentives is not good very low so am left the job ', 1, '2021-11-26 12:01:27', 0, NULL, 0, NULL, 1),
(3424, 6891, 'Alagappa institute of technology', 'System admin', '2021-01-01', 14000.00, '2021-11-05', 16000.00, 'Chennai', '1', '0 years 10 months', ' Health issues', 1, '2021-11-26 12:03:49', 0, NULL, 0, NULL, 1),
(3425, 6888, 'RG Business solutions', 'Telecaller', '2021-08-23', 15000.00, '1970-01-01', 18000.00, 'Kodambakkam', '2', '0 years 3 months', ' Long distance', 1, '2021-11-26 12:09:15', 0, NULL, 0, NULL, 1),
(3426, 6884, 'alwin trdae tech', 'sales executive', '2017-06-15', 19000.00, '2018-04-16', 19000.00, 'chennai', '1', '0 years 10 months', ' carrier growth', 1, '2021-11-26 01:21:43', 0, NULL, 0, NULL, 1),
(3427, 6898, 'balaji retails', 'marketimg executive', '2017-11-26', 15000.00, '2021-11-08', 25000.00, 'koratur', '1', '3 years 11 months', ' carier growth', 1, '2021-11-26 01:30:07', 0, NULL, 0, NULL, 1),
(3428, 6900, 'Pama network ', 'Hr recruiter ', '2021-08-02', 13000.00, '1970-01-01', 13000.00, 'Chennai', '2', '0 years 3 months', 'Contract period ends', 1, '2021-11-26 05:05:52', 0, NULL, 0, NULL, 1),
(3429, 6902, 'hinduja ', 'team leader', '2017-09-19', 10000.00, '2019-10-20', 2.70, 'chennai', '1', '2 years 1 months', ' ', 1, '2021-11-27 09:52:35', 0, NULL, 0, NULL, 1),
(3430, 6904, 'Setile india', 'Tech support', '2019-04-08', 14000.00, '2020-08-15', 15000.00, 'Vadapalani', '1', '1 years 4 months', 'Family issues', 1, '2021-11-27 10:49:06', 0, NULL, 0, NULL, 1),
(3431, 6905, 'blue chip corporate investment centre ltd', 'field manager', '2019-05-17', 15000.00, '1970-01-01', 22000.00, 'secundrabad', '2', '2 years 6 months', ' salary issue with the company', 1, '2021-11-27 12:06:45', 0, NULL, 0, NULL, 1),
(3432, 6910, 'Rajalakshmi cars', 'Warranty incharge, service advisor', '2021-09-18', 15000.00, '2021-11-25', 15000.00, 'Madhavaram', '1', '0 years 2 months', ' Salary not comfortable', 1, '2021-11-28 12:23:17', 0, NULL, 0, NULL, 1),
(3433, 6913, 'Felix pilot training Institute', 'Technical Instructor', '2019-07-10', 18500.00, '2021-10-05', 18500.00, 'Chennai', '1', '2 years 2 months', ' In pandamic time they ask me resign ', 1, '2021-11-29 10:39:38', 0, NULL, 0, NULL, 1),
(3434, 6915, 'Pinelabs india pvt ltd', 'Team leader', '2020-07-27', 31.00, '1970-01-01', 18.50, 'Chennai', '2', '1 years 4 months', ' Salery hike', 1, '2021-11-29 11:18:11', 0, NULL, 0, NULL, 1),
(3435, 6918, 'Flex Pvt limited', 'Traiineee', '2018-08-27', 14000.00, '2020-03-10', 14500.00, 'Tada,Andhra Pradesh', '1', '1 years 6 months', ' Completion of training period', 1, '2021-11-29 01:08:24', 0, NULL, 0, NULL, 1),
(3436, 6918, 'Think and learn Pvt Ltd', 'Business development trainee', '2021-01-18', 20000.00, '2021-03-20', 20000.00, 'Chennai', '1', '0 years 2 months', 'Completion of training', 1, '2021-11-29 01:10:57', 0, NULL, 0, NULL, 1),
(3437, 6920, 'reliance jio', 'distributor', '2016-06-15', 10000.00, '2021-10-25', 15000.00, 'chennai', '1', '5 years 4 months', ' carrier devlopment', 1, '2021-11-29 03:10:35', 0, NULL, 0, NULL, 1),
(3438, 6921, 'matrimony', 'senior executive', '2018-04-29', 12000.00, '2021-11-03', 12000.00, 'guindy', '1', '3 years 6 months', ' carrier growth', 1, '2021-11-29 03:19:55', 0, NULL, 0, NULL, 1),
(3439, 6922, 'exite life', 'customer handling', '2016-06-15', 21000.00, '2018-06-19', 25000.00, 'guindy', '1', '2 years 0 months', ' carrier growth', 1, '2021-11-29 03:28:11', 0, NULL, 0, NULL, 1),
(3440, 6923, 'suprabha', 'asst manager', '2018-04-29', 15000.00, '1970-01-01', 20000.00, 'chennai', '2', '3 years 7 months', ' carrier development', 1, '2021-11-29 03:51:48', 0, NULL, 0, NULL, 1),
(3441, 6924, 'jana finance', 'senior collection', '2021-11-29', 11000.00, '1970-01-01', 14000.00, 'kodambakkam', '2', '0 years 0 months', ' carier growth', 1, '2021-11-29 04:22:01', 0, NULL, 0, NULL, 1),
(3442, 6932, 'Addison it solutions', 'Php developer', '2021-01-08', 29800.00, '2021-08-31', 29800.00, 'Hyderabad', '1', '0 years 7 months', ' Financial crisis', 1, '2021-11-30 11:43:07', 0, NULL, 0, NULL, 1),
(3443, 6933, 'Iifl  Pvt Ltd', 'Team leader', '2019-03-05', 22000.00, '2020-11-08', 19900.00, 'Kandhanchavadi ', '1', '1 years 8 months', ' Covid ', 1, '2021-11-30 12:45:48', 0, NULL, 0, NULL, 1),
(3444, 6935, 'Hathway broadband ', 'Customer Support team (telecaller)', '2019-11-12', 18000.00, '2020-05-20', 18000.00, 'Nungambakkam', '1', '0 years 6 months', ' Covid issues', 1, '2021-11-30 12:47:31', 0, NULL, 0, NULL, 1),
(3445, 6936, 'Taurus Bpo', 'Collection process', '2020-10-15', 15500.00, '2021-10-25', 15500.00, 'T nagr', '1', '1 years 0 months', ' Not comfortable in salary', 1, '2021-11-30 12:50:32', 0, NULL, 0, NULL, 1),
(3446, 6937, 'JNR Tyres', 'Marketing executive', '2018-06-18', 12000.00, '2021-07-31', 18000.00, 'Chennai', '1', '3 years 1 months', ' Is not good future just wholes shop ', 1, '2021-11-30 01:21:11', 0, NULL, 0, NULL, 1),
(3447, 1793, 'Loans Mantra', 'Team manager', '2020-09-10', 18000.00, '2021-11-05', 20000.00, 'Egmore', '1', '1 years 1 months', ' Some family issues', 1, '2021-11-30 02:24:44', 0, NULL, 0, NULL, 1),
(3448, 6942, 'A1events', 'Supervisor', '2019-08-30', 18000.00, '2021-01-31', 28000.00, 'Chetpet', '1', '1 years 5 months', ' Due to covid', 1, '2021-11-30 03:28:23', 0, NULL, 0, NULL, 1),
(3449, 6926, 'Eco Advanced polytech india pvt ltd', 'Production', '2017-04-07', 12000.00, '2018-04-12', 15000.00, 'Chennai', '1', '1 years 0 months', ' Personal problem', 1, '2021-11-30 03:37:08', 0, NULL, 0, NULL, 1),
(3450, 6950, 'Lights and shadow architecture', 'Maneger', '2021-12-01', 20000.00, '1970-01-01', 24000.00, 'Jayankondam', '2', '0 years 0 months', ' Studying MBA FINANCE in distence education ', 1, '2021-12-01 10:49:45', 0, NULL, 0, NULL, 1),
(3451, 6952, 'Reliance retail pvt LTD', 'Department manager', '2018-08-15', 18000.00, '2019-06-06', 18000.00, 'Velachery', '1', '0 years 9 months', 'Physically weak', 1, '2021-12-01 11:05:40', 0, NULL, 0, NULL, 1),
(3452, 6952, 'ICICI Bank Ltd', 'Phone banking officer', '2019-11-20', 19000.00, '2021-03-21', 19000.00, 'Ambathur', '1', '1 years 4 months', 'My parents are met with an accident for taking care of my parents and hospitalise am relieved my job ', 1, '2021-12-01 11:07:40', 0, NULL, 0, NULL, 1),
(3453, 6953, 'workfreaks corporate service pvt ltd', 'hr recruiter', '2021-03-22', 15000.00, '1970-01-01', 15000.00, 'thousand lights', '2', '0 years 8 months', 'company problem and not ok with salary  ', 1, '2021-12-01 12:24:26', 0, NULL, 0, NULL, 1),
(3454, 6938, 'hdb financial services', 'telesales executive', '2017-07-13', 10800.00, '2019-07-19', 12000.00, 'hyderabad', '1', '2 years 0 months', ' Health issues', 1, '2021-12-01 01:01:02', 0, NULL, 0, NULL, 1),
(3455, 6959, 'Andwill solution', 'Sales executive', '2019-12-09', 20000.00, '2020-11-11', 25000.00, 'Banjarahill', '1', '0 years 11 months', ' Company shifted to banglore', 1, '2021-12-01 03:37:04', 0, NULL, 0, NULL, 1),
(3456, 6959, 'Andwill solution', 'Sales executive', '2019-12-09', 20000.00, '2020-11-11', 25000.00, 'Banjarahill', '1', '0 years 11 months', 'Company shifted to Bangalore', 1, '2021-12-01 03:38:25', 0, NULL, 0, NULL, 1),
(3457, 6960, 'Bluechip corporate investment center', 'Branch assistant', '2018-06-10', 13500.00, '2021-01-01', 13500.00, 'Thiruvallur', '1', '2 years 6 months', ' Branch change to chennai', 1, '2021-12-01 04:23:16', 0, NULL, 0, NULL, 1),
(3458, 6961, 'hdb financial services', ' sales executive', '2021-03-15', 12815.00, '2021-10-31', 12815.00, 'hyderabad', '1', '0 years 7 months', ' Looking for on roll and salary hike', 1, '2021-12-01 05:01:31', 0, NULL, 0, NULL, 1),
(3459, 6951, 'iotrix digital business enterprise pvt ltd', 'hr', '2021-08-30', 15000.00, '1970-01-01', 15000.00, 'royapett', '2', '0 years 3 months', ' salary issue', 1, '2021-12-01 10:40:47', 0, NULL, 0, NULL, 1),
(3460, 6962, 'Iotrix Digital business enterprise private limited', 'HR', '2021-08-30', 15000.00, '1970-01-01', 15000.00, 'Royapett', '2', '0 years 3 months', ' Salary issue', 1, '2021-12-01 10:44:15', 0, NULL, 0, NULL, 1),
(3461, 6963, 'visalakshi marketing aff to cavinkare pvt', 'telecalling and billing', '2021-01-20', 10000.00, '2021-07-07', 12000.00, 'madurai', '1', '0 years 5 months', ' ', 1, '2021-12-02 10:59:57', 0, NULL, 0, NULL, 1),
(3462, 6963, 'dharani enterprises aff to vfit', 'telecalling and billing', '2020-06-01', 9000.00, '2020-12-20', 12000.00, 'madurai', '1', '0 years 6 months', 'health issue\n', 1, '2021-12-02 11:01:51', 0, NULL, 0, NULL, 1),
(3463, 6967, 'yes bank', 'officer', '2019-08-13', 17500.00, '1970-01-01', 17500.00, 'ambattur', '2', '2 years 3 months', ' carrier devlopment', 1, '2021-12-02 04:42:20', 0, NULL, 0, NULL, 1),
(3464, 6969, 'Alien space station', 'Tele sales executive', '2017-11-20', 14500.00, '2018-05-30', 14500.00, 'Lingampally,Hyderabad', '1', '0 years 6 months', ' Had to resign due to family emergency', 1, '2021-12-02 05:20:28', 0, NULL, 0, NULL, 1),
(3465, 6969, 'Postal department', 'Outsourcing employe', '2018-08-01', 20000.00, '2020-07-31', 20000.00, 'Nizamabad', '1', '1 years 11 months', 'Had to resign due to fathers health condition.', 1, '2021-12-02 05:22:39', 0, NULL, 0, NULL, 1),
(3466, 6970, 'icici Prudential life insurance com ltd ', 'Financial Service Consultant ', '2021-05-11', 245000.00, '1970-01-01', 245000.00, 'Hyderabad ', '2', '0 years 6 months', ' Traveling Problem ', 1, '2021-12-02 05:29:38', 0, NULL, 0, NULL, 1),
(3467, 6973, 'Shriram', 'Senior TME', '2020-02-03', 13000.00, '2021-12-02', 14200.00, 'Kodambakkam', '1', '1 years 9 months', ' No growth & no increment', 1, '2021-12-03 11:34:59', 0, NULL, 0, NULL, 1),
(3468, 6973, 'Shriram', 'Senior TME', '2020-02-03', 13000.00, '2021-12-02', 14200.00, 'Kodambakkam', '1', '1 years 9 months', ' No growth & no increment', 1, '2021-12-03 11:34:59', 0, NULL, 0, NULL, 1),
(3469, 6976, 'Allset solution', 'Tellecaller', '2019-11-22', 12000.00, '2021-06-30', 14000.00, 'Mount road', '1', '1 years 7 months', ' Family issues', 1, '2021-12-03 12:55:30', 0, NULL, 0, NULL, 1),
(3470, 6978, 'Chesa dental services', 'Business development manager', '2020-10-28', 23000.00, '2021-09-05', 25000.00, 'Anna nagar', '1', '1 years 1 months', ' Contract', 1, '2021-12-03 02:47:27', 0, NULL, 0, NULL, 1),
(3471, 6979, 'Canara HSBC OBC Life insurance company limited', 'Senior Sales Officer', '2020-05-04', 28800.00, '2020-10-31', 28800.00, 'Hyderabad', '1', '0 years 5 months', ' My Mother Severely Infected with Covid-19, at that time I went to my Home and stayed with my family.', 1, '2021-12-03 03:23:54', 0, NULL, 0, NULL, 1),
(3472, 6986, 'udaan pvt', 'sales executive', '2019-12-16', 21000.00, '2021-08-27', 22000.00, 'chennai', '1', '1 years 8 months', ' carrier development', 1, '2021-12-04 10:24:26', 0, NULL, 0, NULL, 1),
(3473, 6987, 'Ison xperiences', 'Telecaller', '2020-11-14', 14000.00, '2021-07-16', 14000.00, 'Perungudi', '1', '0 years 8 months', ' Process Ramdon', 1, '2021-12-04 11:00:35', 0, NULL, 0, NULL, 1),
(3474, 6995, 'Dynamic beneficial Accord marketing Pvt Ltd', 'Sales executive', '2019-08-23', 13500.00, '2020-03-31', 15000.00, 'Coimbatore', '1', '0 years 7 months', ' ', 1, '2021-12-06 11:48:20', 0, NULL, 0, NULL, 1),
(3475, 6995, 'Reliance sMSl Limited', 'Sales executive', '2021-09-06', 18500.00, '2021-11-16', 20000.00, 'Chennai', '1', '0 years 2 months', 'Over time', 1, '2021-12-06 11:50:33', 0, NULL, 0, NULL, 1),
(3476, 6997, 'Economos', 'Relationship officer', '2018-04-13', 12000.00, '2020-11-11', 12000.00, 'Perugudi', '1', '2 years 6 months', ' Office closed', 1, '2021-12-06 01:12:51', 0, NULL, 0, NULL, 1),
(3477, 6998, 'Ninjacart ', 'Senior sales excutive ', '2020-02-10', 21000.00, '2020-08-01', 25000.00, 'HYD ', '1', '0 years 5 months', 'Due covid company was not giving exact server that\'s what I was left', 1, '2021-12-06 03:17:27', 0, NULL, 0, NULL, 1),
(3478, 6998, 'Lakshmi motors ', 'Branch incharge ', '2015-02-03', 10000.00, '2019-01-31', 15000.00, 'Hyderabad ', '1', '3 years 11 months', 'Salary what I expected was not giving that\'s what I Left the job', 1, '2021-12-06 03:21:15', 0, NULL, 0, NULL, 1),
(3479, 7006, 'Molecraft life sciences pvt. Ltd ', 'Assistant sales manager', '2020-02-01', 10000.00, '2021-11-27', 15000.00, 'Hyderabad', '1', '1 years 9 months', ' ', 1, '2021-12-06 05:07:55', 0, NULL, 0, NULL, 1),
(3480, 7007, 'HDFC', 'So', '2021-02-12', 15000.00, '2021-11-09', 15000.00, 'Chennai', '1', '0 years 8 months', ' ', 1, '2021-12-06 06:22:37', 0, NULL, 0, NULL, 1),
(3481, 7008, 'Hdfc lfe', 'Corporate agency manager', '2021-05-02', 18000.00, '1970-01-01', 17000.00, 'Chennai', '2', '0 years 7 months', ' Don\'t have petrol allowes', 1, '2021-12-06 07:10:37', 0, NULL, 0, NULL, 1),
(3482, 7003, 'Examity', 'Executive', '2020-02-01', 18000.00, '2021-11-30', 20000.00, 'Hyderabad', '1', '1 years 9 months', ' Night shift', 1, '2021-12-07 10:31:32', 0, NULL, 0, NULL, 1),
(3483, 7011, 'One point one business solutions', 'Team Leader', '2019-02-21', 17500.00, '2021-09-18', 15000.00, 'Kovilambakkam,chennai', '1', '2 years 6 months', ' Process random', 1, '2021-12-07 11:12:18', 0, NULL, 0, NULL, 1),
(3484, 7015, 'bank  bazaar', 'cro', '2020-12-15', 15000.00, '1970-01-01', 25000.00, 'ambattur', '2', '0 years 11 months', ' due to salary', 1, '2021-12-07 12:07:12', 0, NULL, 0, NULL, 1),
(3485, 7016, 'Vguard Industries LTD', 'Warehouse Executive', '2020-09-07', 15000.00, '1970-01-01', 17000.00, 'Hyderabad', '2', '1 years 3 months', ' My career growth and better future', 1, '2021-12-07 12:29:44', 0, NULL, 0, NULL, 1),
(3486, 7016, 'Axis securities Ltd', 'Junior Relationship officer', '2019-11-14', 12000.00, '2020-06-01', 12000.00, 'Hyderabad', '1', '0 years 6 months', 'Salary issues', 1, '2021-12-07 12:31:09', 0, NULL, 0, NULL, 1),
(3487, 7017, 'krm', 'sales', '2021-09-06', 16000.00, '1970-01-01', 16700.00, 'alandhur', '2', '0 years 3 months', ' due to salary', 1, '2021-12-07 12:33:20', 0, NULL, 0, NULL, 1),
(3488, 7019, 'Bharat matrimony', 'Senior Relationship Executive', '2016-04-30', 12000.00, '2021-06-20', 24000.00, 'Begumpet', '1', '5 years 1 months', ' Father health condition was not good', 1, '2021-12-07 02:08:58', 0, NULL, 0, NULL, 1),
(3489, 7020, 'stock kings', 'telecaller', '2021-02-12', 8000.00, '2021-06-12', 8000.00, 'vellore', '1', '0 years 4 months', 'left ', 1, '2021-12-07 03:03:50', 0, NULL, 0, NULL, 1),
(3490, 7020, 'call enterprises', 'crr', '2021-06-14', 12000.00, '2021-10-25', 12000.00, 'velllore', '1', '0 years 4 months', 'semester exams and also relocate to bangalore', 1, '2021-12-07 03:05:27', 0, NULL, 0, NULL, 1),
(3491, 7022, 'maruthi suzuki', 'telecaller', '2021-07-23', 10000.00, '2021-11-10', 10000.00, 'katpadi', '1', '0 years 3 months', 'not okay with  job process and bangalore relocate', 1, '2021-12-07 03:12:05', 0, NULL, 0, NULL, 1),
(3492, 7022, 'maruthi suzuki', 'telecaller', '2021-07-23', 10000.00, '2021-11-10', 10000.00, 'katpadi', '1', '0 years 3 months', 'not okay with  job process and bangalore relocate', 1, '2021-12-07 03:12:06', 0, NULL, 0, NULL, 1),
(3493, 7022, 'maruthi suzuki', 'telecaller', '2021-07-23', 10000.00, '2021-11-10', 10000.00, 'katpadi', '1', '0 years 3 months', 'not okay with  job process and bangalore relocate', 1, '2021-12-07 03:12:06', 0, NULL, 0, NULL, 1),
(3494, 7021, 'HDFC life insurance', 'Telesales ', '2020-11-02', 13000.00, '2021-09-01', 13000.00, 'Teynampet', '1', '0 years 9 months', ' Salary issues', 1, '2021-12-07 03:15:36', 0, NULL, 0, NULL, 1),
(3495, 7023, 'bright international education ', 'counsellore', '2020-11-09', 13000.00, '2021-10-30', 15000.00, 'rt nagar', '1', '0 years 11 months', 'looking for better opportunity and package ', 1, '2021-12-07 03:21:46', 0, NULL, 0, NULL, 1),
(3496, 7025, 'Cure.fit ', 'Operative executive', '2019-09-08', 17000.00, '2021-02-10', 17000.00, 'Sarjapur', '1', '1 years 5 months', ' ', 1, '2021-12-07 03:39:43', 0, NULL, 0, NULL, 1),
(3497, 7026, 'IT WORLD', 'Store manager', '2019-12-07', 15000.00, '1970-01-01', 15000.00, 'HYDERABAD', '2', '2 years 0 months', ' DUE TO SOME PERSONAL REASONS WITH AREA SALES MANAGER', 1, '2021-12-07 04:45:56', 0, NULL, 0, NULL, 1),
(3498, 7029, 'Micro technologies', 'Quality inspector', '2020-01-21', 10000.00, '1970-01-01', 14500.00, 'Jeedimetla', '2', '1 years 10 months', ' I want to take new step in my Carreer.so ,i want to quit my job. I want to learn more where i can improve my knowledge and skills and work.', 1, '2021-12-08 10:59:49', 0, NULL, 0, NULL, 1),
(3499, 7031, 'Sales', 'Executive', '2021-03-02', 12000.00, '1970-01-01', 15000.00, 'thuraipakkam', '2', '0 years 9 months', 'Salary not comfort', 1, '2021-12-08 11:44:13', 0, NULL, 0, NULL, 1),
(3500, 7037, 'Reliance Retail ', 'Sales Officer ', '2019-04-08', 17000.00, '2020-11-08', 19000.00, 'T nagar', '1', '1 years 7 months', ' Location ', 1, '2021-12-08 02:16:39', 0, NULL, 0, NULL, 1),
(3501, 7041, 'Imarque solution pvt ltd ', 'Customer Support Executive ', '2019-12-02', 8500.00, '2021-12-08', 10000.00, 'T.Nagar', '2', '2 years 0 months', ' I Want to study for shirt term course that reason only Im Relieving my job ', 1, '2021-12-08 03:50:42', 0, NULL, 0, NULL, 1),
(3502, 7046, 'Reliance Nippon life insurance', 'Ageny manager', '2021-07-21', 2.40, '2021-11-15', 2.40, 'Siricilla ', '1', '0 years 4 months', ' My sister is suiside that why iam relived', 1, '2021-12-09 09:47:58', 0, NULL, 0, NULL, 1),
(3503, 7048, 'Insurance Dekho', 'Relationship manager', '2021-08-02', 25000.00, '2021-12-08', 25000.00, 'Anna nagar', '1', '0 years 4 months', ' Environmental is mot good', 1, '2021-12-09 10:42:08', 0, NULL, 0, NULL, 1),
(3504, 7052, 'Tvs motor company', 'HR trainee', '2018-05-21', 10000.00, '2019-05-20', 10000.00, 'Hosur', '1', '0 years 11 months', ' Completion of training period', 1, '2021-12-09 12:52:08', 0, NULL, 0, NULL, 1),
(3505, 7056, 'Innoviti payment solution Pvt Ltd', 'Field service Engineer', '2018-12-10', 18000.00, '2020-09-30', 18000.00, 'Chennai', '1', '1 years 9 months', ' Covid ', 1, '2021-12-09 03:16:01', 0, NULL, 0, NULL, 1),
(3506, 7057, 'cognizant', 'process executive', '2018-09-12', 18000.00, '2021-11-23', 25000.00, 'HYDERABAD', '1', '3 years 2 months', ' career growth', 1, '2021-12-09 05:20:57', 0, NULL, 0, NULL, 1),
(3507, 7063, 'bajaj allain gene insu ', 'Relationship Manager ', '2020-02-19', 350000.00, '2021-04-19', 350000.00, 'tirupathi', '1', '1 years 2 months', ' Career Growth ', 1, '2021-12-10 10:30:17', 0, NULL, 0, NULL, 1),
(3508, 7065, 'bharathi airtel', 'executive', '2019-07-08', 13000.00, '2021-08-10', 15000.00, 'tavrekere', '1', '2 years 1 months', ' ok', 1, '2021-12-10 10:53:20', 0, NULL, 0, NULL, 1),
(3509, 7066, 'ison bpo pvt ltd', 'csa', '2019-10-14', 13800.00, '2021-10-15', 13800.00, 'richman road', '1', '2 years 1 months', ' salary is less', 1, '2021-12-10 11:11:51', 0, NULL, 0, NULL, 1),
(3510, 7073, 'Church of Christ', 'Sub editor', '2020-01-20', 1.00, '2021-04-30', 15000.00, 'Villivakkam', '1', '1 years 3 months', ' Pastor unable to give salary', 1, '2021-12-10 11:48:51', 0, NULL, 0, NULL, 1),
(3511, 7077, 'Jio fiber', 'HSO', '2021-01-10', 21000.00, '2021-09-05', 21000.00, 'Adyar ', '1', '0 years 7 months', 'Personal and family issues ', 1, '2021-12-10 01:21:21', 0, NULL, 0, NULL, 1),
(3512, 7082, 'THINKWIDE Solutions put ltd', 'Sales', '2018-09-12', 13500.00, '1970-01-01', 20000.00, 'Kondapur', '2', '3 years 2 months', ' This is start up company ', 1, '2021-12-10 05:06:40', 0, NULL, 0, NULL, 1),
(3513, 7084, 'HDB financial services', 'Phone banking', '2019-04-01', 11800.00, '2021-12-09', 15000.00, 'Hyderabad', '1', '2 years 8 months', ' Na', 1, '2021-12-10 06:20:57', 0, NULL, 0, NULL, 1),
(3514, 7088, 'Angels Enterprises', 'Sales executive', '2020-07-06', 17000.00, '2021-11-29', 18000.00, 'Chennai ', '1', '1 years 4 months', ' Looking for a better job ', 1, '2021-12-11 10:48:56', 0, NULL, 0, NULL, 1),
(3515, 7089, 'Aradhaya gold', 'Telecaller', '2020-10-05', 15000.00, '2021-04-05', 15000.00, 'Chennai', '1', '0 years 6 months', ' Salary issues', 1, '2021-12-11 11:15:26', 0, NULL, 0, NULL, 1),
(3516, 7090, 'Tata 1mg', 'Gre', '2021-06-10', 20000.00, '2021-12-03', 20000.00, 'Koramangala', '1', '0 years 5 months', 'Contract got completed ', 1, '2021-12-11 11:21:59', 0, NULL, 0, NULL, 1),
(3517, 7062, 'iifl', 'telecaller', '2021-10-01', 10000.00, '2021-12-09', 13000.00, 'Secretariat hyd', '1', '0 years 2 months', ' for improvement', 1, '2021-12-12 02:29:37', 0, NULL, 0, NULL, 1),
(3518, 7079, 'greet tecnologies', 'pre sales specialist', '2020-12-15', 15.00, '2021-10-27', 360000.00, 'hsr layout bangalore', '1', '0 years 10 months', ' looking for a better career prospects ,professional growth and work opportunities', 1, '2021-12-13 02:45:18', 0, NULL, 0, NULL, 1),
(3519, 7103, 'Icici bank', 'Sinour executive', '2016-07-15', 15300.00, '2019-12-28', 19000.00, 'Hyderabad ', '1', '3 years 5 months', 'Some family issues', 1, '2021-12-13 05:20:52', 0, NULL, 0, NULL, 1),
(3520, 7105, 'TATA trent', 'Sales executive', '2020-11-01', 14000.00, '2021-11-01', 14000.00, 'Adayr', '1', '1 years 0 months', ' ', 1, '2021-12-14 10:56:24', 0, NULL, 0, NULL, 1),
(3521, 7107, 'H&S LOGISTICS SOLUTION', 'Supervisor', '2019-09-01', 15000.00, '2021-05-30', 18000.00, 'Periyapalayam', '1', '1 years 8 months', ' ', 1, '2021-12-14 11:20:47', 0, NULL, 0, NULL, 1),
(3522, 7111, 'Star health insurance', 'Telesales officer', '2020-12-23', 10000.00, '2021-06-30', 10000.00, 'Kodambakkam', '1', '0 years 6 months', ' Covid', 1, '2021-12-14 02:40:25', 0, NULL, 0, NULL, 1),
(3523, 7110, 'HDFC', 'Credi card sales', '2020-12-02', 15000.00, '2021-09-06', 15000.00, 'ARUMBAKKAM', '1', '0 years 9 months', ' Due to Covid,I can\'t able to continue the job', 1, '2021-12-14 02:41:47', 0, NULL, 0, NULL, 1),
(3524, 7114, 'Aditya Birla Capital', 'RO', '2021-07-12', 17000.00, '2021-12-29', 17000.00, 'Hyderabad ', '1', '0 years 5 months', ' Time issues ', 1, '2021-12-14 05:09:26', 0, NULL, 0, NULL, 1),
(3525, 7118, 'Chennai mobile', 'Sales', '2021-03-01', 12000.00, '2021-10-07', 12000.00, 'Old washermanpet', '1', '0 years 7 months', ' ', 1, '2021-12-15 10:44:30', 0, NULL, 0, NULL, 1),
(3526, 7120, 'finsiri  pvt ltd', 'tele caller ', '2021-09-01', 10000.00, '2021-12-04', 10000.00, 'gara palya', '1', '0 years 3 months', 'the salary was not given properly ', 1, '2021-12-15 12:09:25', 0, NULL, 0, NULL, 1),
(3527, 7128, 'Shara Infotech', 'Receptionist and Retail Trainee', '2016-10-18', 10000.00, '2018-05-09', 10000.00, 'Shivamogga', '1', '1 years 6 months', ' To join M.com', 1, '2021-12-15 12:54:23', 0, NULL, 0, NULL, 1),
(3528, 7129, 'Hcl', 'Process Associate', '2021-01-12', 12000.00, '1970-01-01', 12000.00, 'Chennai ', '2', '0 years 11 months', ' No hike\n', 1, '2021-12-15 01:24:15', 0, NULL, 0, NULL, 1),
(3529, 7135, 'Optum global solutions', 'claims associate', '2019-04-29', 15.00, '1970-01-01', 19.00, 'Hyderabad', '2', '2 years 7 months', ' ', 1, '2021-12-15 02:45:58', 0, NULL, 0, NULL, 1),
(3530, 7138, 'ecylabs', 'Associate Developer', '2021-10-15', 10000.00, '2021-12-30', 5000.00, 'Coimbatore', '1', '0 years 2 months', ' Low salary', 1, '2021-12-15 04:42:38', 0, NULL, 0, NULL, 1),
(3531, 7140, 'logistics', 'mis admin', '2019-06-16', 12000.00, '2021-10-14', 24000.00, 'chennai', '1', '2 years 3 months', ' covid', 1, '2021-12-15 05:12:05', 0, NULL, 0, NULL, 1),
(3532, 7141, 'Cube45 E-commerce Services Private Limited', 'SEO Analyst', '2021-10-01', 15800.00, '1970-01-01', 15800.00, 'Porur', '2', '0 years 2 months', ' Though the company has good opportunity to grow and learn, the work culture is not Amicable.', 1, '2021-12-15 05:58:46', 0, NULL, 0, NULL, 1),
(3533, 7146, 'Dhar fintech pvt ltd', 'Field executive', '2019-10-04', 12000.00, '2021-09-24', 12000.00, 'Vilivakam', '1', '1 years 11 months', ' Due to covid lockdown', 1, '2021-12-16 10:29:05', 0, NULL, 0, NULL, 1),
(3534, 7145, 'Chennai corporation', 'health department', '2020-08-05', 15000.00, '2021-08-31', 15000.00, 'MMDA Colony', '2', '1 years 0 months', ' Closed contrate', 1, '2021-12-16 10:40:28', 0, NULL, 0, NULL, 1),
(3535, 7147, 'Just dial pvt ltd', 'Business development executive', '2019-02-05', 18000.00, '2020-04-10', 18000.00, 'Little mount', '1', '1 years 2 months', 'Easy access location', 1, '2021-12-16 11:06:24', 1, '2021-12-16 11:08:17', 0, NULL, 1),
(3536, 7147, 'Big basket', 'Business development executive', '2020-10-05', 22000.00, '2021-02-10', 22000.00, 'Mahindra world city', '1', '0 years 4 months', 'Travel difficulties', 1, '2021-12-16 11:11:13', 0, NULL, 0, NULL, 1),
(3537, 7149, 'Asian Paints', 'Direct sales Representative', '2019-09-02', 17500.00, '2020-01-17', 23000.00, 'Kolkata', '1', '0 years 4 months', 'Issues with the same', 1, '2021-12-16 11:49:46', 0, NULL, 0, NULL, 1),
(3538, 7149, 'Exide Life Insurance Company Ltd', 'Financial Advisor', '2018-05-01', 1000.00, '2019-07-31', 10000.00, 'Kolkata', '1', '1 years 3 months', 'End of validated license code', 1, '2021-12-16 11:51:11', 0, NULL, 0, NULL, 1),
(3539, 7149, 'Reliance Telecommunication', 'Business Development Executive', '2015-07-01', 8320.00, '2015-12-31', 9000.00, 'Kolkata', '1', '0 years 6 months', 'End of training tenure', 1, '2021-12-16 11:52:32', 0, NULL, 0, NULL, 1),
(3540, 7149, 'Udaan B2B', 'Business Development Executive', '2020-09-10', 23000.00, '2020-10-10', 23000.00, 'Howrah', '1', '0 years 1 months', 'Management issues', 1, '2021-12-16 11:53:56', 0, NULL, 0, NULL, 1),
(3541, 7139, 'The leadsense ', 'Media specialist', '2021-04-01', 13.00, '2021-10-20', 13.00, 'Nugambakkam', '1', '0 years 6 months', ' Personal issues ', 1, '2021-12-16 12:15:00', 0, NULL, 0, NULL, 1),
(3542, 7151, 'Glenanadd India ', 'Godown incharge', '2015-06-01', 8000.00, '2016-03-15', 12000.00, 'Bangalore', '1', '0 years 9 months', ' No career improve', 1, '2021-12-16 12:35:20', 0, NULL, 0, NULL, 1),
(3543, 7151, 'HDFC ERGO GENERAL INSURANCE COMPANY LIMITED', 'Telecaller', '2016-03-16', 12500.00, '2018-05-31', 12500.00, 'Chennai', '1', '2 years 2 months', 'Department closed', 1, '2021-12-16 12:36:52', 0, NULL, 0, NULL, 1),
(3544, 7151, 'Happy emi', 'Sales officer', '2018-05-31', 13000.00, '2019-05-31', 13000.00, 'Chennai', '1', '1 years 0 months', 'Sales stopped and department closed', 1, '2021-12-16 12:38:30', 0, NULL, 0, NULL, 1),
(3545, 7151, 'HDFC ERGO GENERAL INSURANCE COMPANY LIMITED', 'Telecaller', '2019-06-01', 13000.00, '2021-11-30', 15000.00, 'Chennai', '1', '2 years 5 months', 'Moved to Bangalore', 1, '2021-12-16 12:42:20', 0, NULL, 0, NULL, 1),
(3546, 7162, 'ICIPL ', 'HR', '2020-10-12', 175000.00, '1970-01-01', 240000.00, 'Anna Nagar east ', '2', '1 years 2 months', ' Career growth, scope of work completely different.', 1, '2021-12-16 08:01:34', 0, NULL, 0, NULL, 1),
(3547, 7165, 'Relanchip manager', 'Own', '2022-01-03', 26000.00, '1970-01-01', 15000.00, 'Chennai', '2', '0 years 0 months', 'Officer latter after relieving\n ', 1, '2021-12-17 11:06:03', 0, NULL, 0, NULL, 1),
(3548, 7166, 'EPK groups', 'Hr executive', '2021-02-18', 12000.00, '2021-08-30', 12000.00, 'Chennai', '1', '0 years 6 months', ' Salary not paided properly', 1, '2021-12-17 01:46:07', 0, NULL, 0, NULL, 1),
(3549, 7169, 'Staar homes', 'Development manager', '2020-12-01', 27000.00, '2021-11-30', 27000.00, 'Chennai', '1', '0 years 11 months', ' Personal', 1, '2021-12-17 03:43:51', 0, NULL, 0, NULL, 1),
(3550, 7173, 'face', 'internal training co-Oriented', '2019-01-20', 10000.00, '2020-03-25', 15000.00, 'chennai', '1', '1 years 2 months', ' covid 19 coming so the chennai office temperavory closed. a company asked me to come coimbatore but i have an personal issues that\'s why i resigned the job ', 1, '2021-12-17 04:26:24', 0, NULL, 0, NULL, 1),
(3551, 7173, 'kotak Mahindra life insurance  pvt ltd', 'agent partner', '2020-03-27', 14000.00, '2021-01-27', 16000.00, 'villupuram', '1', '0 years 10 months', 'i met one accident in my face that why i resigned', 1, '2021-12-17 04:30:07', 0, NULL, 0, NULL, 1),
(3552, 7173, 'axis bank in quess crop', 'relationship officer', '2021-01-28', 15000.00, '2021-10-16', 17000.00, 'villupuram  pondicherry', '1', '0 years 8 months', 'I met another one accident in my leg ', 1, '2021-12-17 04:32:50', 0, NULL, 0, NULL, 1),
(3553, 7163, 'mobile zone', 'sales executive', '2014-07-01', 120000.00, '2018-08-17', 160000.00, 'dharmapuri', '1', '4 years 1 months', ' ', 1, '2021-12-17 06:33:08', 0, NULL, 0, NULL, 1),
(3554, 7182, 'hDFC Bank', 'Sales executive', '2020-06-08', 15000.00, '2021-10-20', 19500.00, 'Porur', '1', '1 years 4 months', ' My health condition is not good .. That\'s only I will resign my job', 1, '2021-12-18 10:00:34', 0, NULL, 0, NULL, 1),
(3555, 7183, 'Lakshon technology pvt ltd', 'Team leader', '2020-12-16', 20.00, '2021-06-11', 20000.00, 'Nandhanam', '1', '0 years 5 months', ' ', 1, '2021-12-18 10:59:23', 0, NULL, 0, NULL, 1),
(3556, 7183, 'M1 marketsof1', 'Team leader', '2018-01-10', 15000.00, '2020-12-05', 15000.00, 'Little Mount', '1', '2 years 10 months', 'Salary hike issue', 1, '2021-12-18 11:00:58', 0, NULL, 0, NULL, 1),
(3557, 7183, 'Zealous services', 'Tellecaller & team leader', '2016-09-16', 12000.00, '2018-11-30', 12000.00, 'Kodambakkam', '1', '2 years 2 months', 'Shutdown the process', 1, '2021-12-18 11:02:38', 0, NULL, 0, NULL, 1),
(3558, 7186, 'IDFC first Bharat', 'Vikramasingapuram branch', '2021-11-04', 13000.00, '1970-01-01', 23000.00, 'Vikramasingapuram branch', '2', '0 years 1 months', ' Major accedent to bike travaling on field work ,My right Side hand Operation so don\'t Drive the bike, that iam relieving', 1, '2021-12-18 01:54:37', 0, NULL, 0, NULL, 1),
(3559, 7190, 'Teamspace financial private limited', 'Relationship officer', '2018-12-17', 11200.00, '2022-01-15', 16200.00, 'Hyderabad', '1', '3 years 0 months', ' Future growth', 1, '2021-12-18 05:06:56', 0, NULL, 0, NULL, 1),
(3560, 7193, 'Cognizant ', 'Process executive ', '2020-02-03', 10000.00, '2021-08-05', 15000.00, 'Dlf', '1', '1 years 6 months', 'Process Ramp down.', 1, '2021-12-19 04:44:27', 1, '2021-12-19 04:45:56', 0, NULL, 1),
(3561, 7194, 'Banking ', 'Sales executive ', '2020-12-19', 15000.00, '2021-11-10', 15000.00, 'Aminjikarai ', '1', '0 years 10 months', ' I want to explore more for that I relieve the past job ', 1, '2021-12-19 09:25:57', 0, NULL, 0, NULL, 1),
(3562, 7195, 'Banking ', 'Sales executive ', '2020-12-19', 15000.00, '2021-11-10', 15000.00, 'Chennai ', '1', '0 years 10 months', 'I don\'t have correct travel facility to the job location soo for that I give my resignation  letter ', 1, '2021-12-19 09:58:40', 0, NULL, 0, NULL, 1),
(3563, 7200, 'Gold earth Properties ', 'Sales manager ', '2017-05-20', 27000.00, '2019-09-20', 27000.00, 'Kotturpuram ', '1', '2 years 4 months', 'Long distance/', 1, '2021-12-20 11:19:51', 0, NULL, 0, NULL, 1),
(3564, 7199, 'Deepak s', 'BDE', '2020-01-01', 19000.00, '2021-12-20', 23000.00, 'Chennai', '1', '1 years 11 months', ' ', 1, '2021-12-20 11:24:44', 0, NULL, 0, NULL, 1),
(3565, 7201, 'Smart solutions placement services', 'Assistant HR', '2020-03-08', 11000.00, '2021-12-17', 13000.00, 'Vadapalani', '1', '2 years 9 months', ' ', 1, '2021-12-20 11:53:28', 0, NULL, 0, NULL, 1),
(3566, 7201, 'Smart solutions', 'Assistant HR', '2020-03-08', 11000.00, '2021-12-18', 13000.00, 'Vadapalani', '1', '1 years 9 months', 'Salary issues', 1, '2021-12-20 11:54:31', 0, NULL, 0, NULL, 1),
(3567, 7202, 'Bharthi AXA Life insurance', 'Agency manager', '2018-09-05', 21000.00, '2019-09-08', 21000.00, 'Chennai', '1', '1 years 0 months', ' Accident ', 1, '2021-12-20 01:19:46', 0, NULL, 0, NULL, 1),
(3568, 7205, 'Syncfusion Software Pvt Ltd', 'HR recruiter', '2020-10-08', 21500.00, '2021-08-24', 21500.00, 'Anna nagar', '1', '0 years 10 months', ' No scope in my previous organisation', 1, '2021-12-20 01:53:03', 0, NULL, 0, NULL, 1),
(3569, 7206, 'Cams', 'PROCESSING OFFICER', '2016-06-27', 21.00, '1970-01-01', 15.00, 'Mount road', '2', '5 years 5 months', ' My father passed away.', 1, '2021-12-20 03:31:32', 0, NULL, 0, NULL, 1),
(3570, 7206, 'Vertex customer solutions Pvt ltd', 'Business associate', '2012-10-12', 21.00, '2012-10-14', 7.00, 'Chennai', '1', '0 years 0 months', 'Salary is low', 1, '2021-12-20 03:34:50', 0, NULL, 0, NULL, 1),
(3571, 7206, 'Hansa Direct cequity', 'CRE', '2015-11-02', 21.00, '2016-05-02', 11000.00, 'Royapettah', '1', '0 years 6 months', 'Process closed outlet', 1, '2021-12-20 03:40:50', 0, NULL, 0, NULL, 1),
(3572, 7204, 'Voltech HR Services Pvt Ltd', 'HR Recruiter', '2019-10-09', 11000.00, '2021-12-02', 12000.00, 'Iyyapanthangal', '1', '2 years 1 months', 'Better Prospects', 1, '2021-12-21 11:29:40', 0, NULL, 0, NULL, 1),
(3573, 7204, 'Voltech HR Services Pvt Ltd', 'HR Recruiter', '2019-10-09', 11000.00, '2021-12-02', 12000.00, 'Iyyapanthangal', '1', '2 years 1 months', 'Better Prospects', 1, '2021-12-21 11:31:23', 0, NULL, 0, NULL, 1),
(3574, 7212, 'Kotaku mahindra bank', 'Assistant manager', '2021-02-22', 19500.00, '1970-01-01', 19500.00, 'Anna ngr', '2', '0 years 9 months', ' ', 1, '2021-12-21 11:34:28', 0, NULL, 0, NULL, 1),
(3575, 7214, 'Bajaj finance ', 'Sales executive', '2020-02-12', 15000.00, '2021-12-10', 16000.00, 'Anna salai', '1', '1 years 9 months', ' Personal issue ', 1, '2021-12-21 12:49:32', 0, NULL, 0, NULL, 1),
(3576, 7216, 'Medicine zone ', 'Sales executive business developer ', '2018-07-02', 12000.00, '2021-12-16', 18000.00, 'Vadapalani ', '1', '3 years 5 months', ' Carrier growth ', 1, '2021-12-21 01:45:40', 0, NULL, 0, NULL, 1),
(3577, 7218, 'Alfalah medical group', 'Sales', '2020-02-04', 16000.00, '2021-04-14', 21000.00, 'Salem', '1', '1 years 2 months', ' Medical issue', 1, '2021-12-21 02:46:39', 0, NULL, 0, NULL, 1),
(3578, 7190, 'Teamspace financial private limited', 'Relationship officer', '2018-12-17', 10889.00, '2022-01-15', 16200.00, 'Hyderabad', '1', '3 years 0 months', ' Futur growth', 1, '2021-12-22 07:44:16', 0, NULL, 0, NULL, 1),
(3579, 7224, 'Ivangel sales & service pvt ltd', 'SALES ASSOCIATE', '2018-08-21', 12000.00, '2020-09-03', 16000.00, 'CHENNAI', '1', '2 years 0 months', ' For salary increment ', 1, '2021-12-22 10:59:33', 0, NULL, 0, NULL, 1),
(3580, 7225, 'Alekas solutions Pvt Ltd', 'Inside sales executive', '2019-10-16', 16000.00, '2020-12-31', 16000.00, 'Chennai', '1', '1 years 2 months', ' For better career growth and gain more experience in inside sales', 1, '2021-12-22 11:27:18', 0, NULL, 0, NULL, 1),
(3581, 7227, 'paulsons beauty and fashion ', 'club manager ', '2019-06-01', 15600.00, '2021-10-31', 20000.00, 'chennai', '1', '2 years 4 months', ' Seeking Career growth where i can perform well and gain Knowledge ', 1, '2021-12-22 11:54:09', 0, NULL, 0, NULL, 1),
(3582, 7226, 'Airtel', 'Sales executive ', '2018-02-15', 15000.00, '1970-01-01', 18000.00, 'Madurai', '2', '3 years 10 months', ' Corona issue ', 1, '2021-12-22 11:59:34', 0, NULL, 0, NULL, 1),
(3583, 7228, 'Ska global', 'Telecalling', '2020-06-10', 12000.00, '2021-07-15', 12000.00, 'Chennai Nungambakkam', '1', '1 years 1 months', ' Looking for change ', 1, '2021-12-22 12:19:17', 0, NULL, 0, NULL, 1),
(3584, 7230, 'Fa Capital management', 'Telecalling', '2019-02-05', 15000.00, '2020-07-10', 18000.00, 'Royapettah', '1', '1 years 5 months', ' Shifted to another place', 1, '2021-12-22 12:47:20', 0, NULL, 0, NULL, 1),
(3585, 7233, 'Muthoot finance', 'Trainee', '2021-04-02', 12000.00, '2021-09-30', 12000.00, 'Chennai', '1', '0 years 5 months', 'Only internship', 1, '2021-12-22 01:22:53', 0, NULL, 0, NULL, 1),
(3586, 7234, 'Athulya Assisted Living', 'Hr executive', '2021-08-02', 17000.00, '1970-01-01', 15000.00, 'Ashok Nagar', '2', '0 years 4 months', ' Want to go for other industry rather than healthcare', 1, '2021-12-22 03:03:46', 0, NULL, 0, NULL, 1),
(3587, 7235, 'Icici Bank', 'E relationship manager', '2019-11-04', 375000.00, '2021-07-23', 375000.00, 'Chennai', '1', '1 years 8 months', ' ', 1, '2021-12-22 03:52:28', 0, NULL, 0, NULL, 1),
(3588, 7236, 'Genpact ', 'Process Associate ', '2018-04-07', 15000.00, '2020-02-03', 18000.00, 'Habsiguda ', '1', '1 years 9 months', 'Personal issues ', 1, '2021-12-22 06:51:54', 0, NULL, 0, NULL, 1),
(3589, 7236, 'Randstand india pvt ltd', 'Audit confirmation team ', '2020-12-08', 25000.00, '2021-07-09', 25000.00, 'Hitech city', '1', '0 years 7 months', 'Contract got ended ', 1, '2021-12-22 06:55:34', 0, NULL, 0, NULL, 1),
(3590, 7237, 'Hathway Borand Band', 'Sales Executive', '2020-08-11', 19000.00, '1970-01-01', 22400.00, 'Roypettah', '2', '1 years 4 months', ' ', 1, '2021-12-23 10:54:36', 0, NULL, 0, NULL, 1),
(3591, 7239, 'Ibaco', 'Anna nager', '2020-12-23', 10500.00, '1970-01-01', 10500.00, 'Chennai', '2', '1 years 0 months', ' ', 1, '2021-12-23 11:31:27', 0, NULL, 0, NULL, 1),
(3592, 7243, 'First source ', 'CSR', '2017-02-20', 12000.00, '2018-03-15', 15900.00, 'Perungudi', '1', '1 years 0 months', ' I joined my highest course', 1, '2021-12-23 11:40:07', 0, NULL, 0, NULL, 1),
(3593, 7243, 'First source', 'Csr', '2017-02-23', 12000.00, '2018-03-20', 15900.00, 'Perungudi', '1', '1 years 0 months', 'Higher studies', 1, '2021-12-23 11:41:14', 0, NULL, 0, NULL, 1),
(3594, 7246, 'Bankbazaar. Com', 'Customer relationship expert', '2014-05-01', 20000.00, '2018-05-02', 28000.00, 'Ambattur', '1', '4 years 0 months', ' Maternity', 1, '2021-12-23 12:09:55', 0, NULL, 0, NULL, 1),
(3595, 7247, 'touch n chill- daikin', 'sales executive', '2020-05-05', 15000.00, '2021-08-31', 16000.00, 'r.a puram', '1', '1 years 3 months', ' Corona pandamic situation so sales very down showroom was closed so I\'m left job', 1, '2021-12-23 01:50:03', 0, NULL, 0, NULL, 1),
(3596, 7248, 'Hdfc life insurance', 'Financial consultant', '2020-02-05', 20000.00, '2021-06-30', 20000.00, 'Salem', '1', '1 years 4 months', ' Long distance', 1, '2021-12-23 03:09:17', 0, NULL, 0, NULL, 1),
(3597, 7210, 'chennai radha engineering works pvt ltd', 'hr executive', '2019-03-19', 12000.00, '1970-01-01', 14000.00, 'siruseri', '2', '2 years 9 months', ' career growth', 1, '2021-12-23 05:26:40', 0, NULL, 0, NULL, 1),
(3598, 7253, 'Stovekraft limited', 'Sales revenue officer', '2020-10-21', 16700.00, '2021-11-02', 16700.00, 'Harohalli Bangalore', '1', '1 years 0 months', ' Company is to far for me', 1, '2021-12-24 10:57:45', 0, NULL, 0, NULL, 1),
(3599, 7253, 'Meditech inc', 'Admin assistant', '2019-02-15', 9500.00, '2020-10-20', 10500.00, 'Rajajinagar Bangalore', '1', '1 years 8 months', 'Salary is very less so', 1, '2021-12-24 11:03:23', 0, NULL, 0, NULL, 1),
(3600, 7254, 'Direction Consultancy', 'HR Recruiter', '2020-09-28', 10000.00, '2021-12-17', 15000.00, 'Chennai', '1', '1 years 2 months', 'Getting exposure in corporate is not that much easy that\'s why, I Gained experience in consultancy and now I want to get into corporate.', 1, '2021-12-24 11:11:33', 0, NULL, 0, NULL, 1),
(3601, 7258, 'Fingrow Capital management Consulting PVT ltd', 'Customer relationship executive', '2021-07-01', 15.00, '2021-08-25', 15.00, 'T nagar', '1', '0 years 1 months', 'Timing issue', 1, '2021-12-24 11:28:23', 0, NULL, 0, NULL, 1),
(3602, 7258, 'Finolet', 'Customer relationship executive', '2021-05-01', 15.00, '2021-05-31', 15.00, 'T nagar', '1', '0 years 1 months', 'COVID ', 1, '2021-12-24 11:29:44', 0, NULL, 0, NULL, 1),
(3603, 7258, 'Finwego', 'Customer relationship executive', '2019-07-28', 13.00, '2020-08-31', 13.00, 'Alearpet', '1', '1 years 1 months', 'Covid', 1, '2021-12-24 11:31:19', 0, NULL, 0, NULL, 1),
(3604, 7257, 'Fingrow capital management pvt ltd', 'Tellcaller', '2021-07-01', 15000.00, '2021-10-30', 15000.00, 'Tnagar', '1', '0 years 3 months', ' Timeing issue', 1, '2021-12-24 11:32:14', 0, NULL, 0, NULL, 1),
(3605, 7258, 'Creative hands he consultancy', 'Hr recruiter ', '2017-03-08', 8.00, '2018-05-24', 11.00, 'Nungambakkam', '1', '1 years 2 months', 'Distance issue', 1, '2021-12-24 11:33:29', 0, NULL, 0, NULL, 1),
(3606, 7259, 'India insure risk management', 'Executive', '2019-06-03', 10000.00, '2021-03-05', 10000.00, 'Begumpet', '1', '1 years 9 months', 'Medical problem', 1, '2021-12-24 11:47:35', 0, NULL, 0, NULL, 1),
(3607, 7261, 'pavan motors pvt ltd', 'insurance in-charge', '2016-11-17', 15000.00, '1970-01-01', 45000.00, 'nalgonda', '2', '5 years 1 months', 'looking for new job change for improvement', 1, '2021-12-24 12:27:20', 0, NULL, 0, NULL, 1),
(3608, 7264, 'pemmi internati electromecanical engi llc', 'sales coordinator.purchasing manager ', '2019-01-01', 125000.00, '2021-06-10', 25000.00, 'dubai', '1', '2 years 5 months', ' Covid 19 ', 1, '2021-12-24 01:00:10', 0, NULL, 0, NULL, 1),
(3609, 7263, 'Nil', 'Nil', '2021-12-24', 1.00, '2021-12-24', 1.00, 'Nil', '1', '0 years 0 months', 'Personal', 60, '2021-12-24 05:20:45', 0, NULL, 0, NULL, 1),
(3610, 7265, 'Start Union Dai ichi Life insurance', 'Premier Unit Officer', '2021-02-18', 400000.00, '1970-01-01', 1.00, 'Hyderabad', '2', '0 years 10 months', ' Career Growth', 1, '2021-12-24 09:47:59', 0, NULL, 0, NULL, 1),
(3611, 7268, 'Butterfly gandhimati appliances limited', 'Management trainee', '2020-07-15', 17500.00, '2021-03-31', 17500.00, 'Hyderabad', '1', '0 years 8 months', ' Because of it\'s a field sales', 1, '2021-12-25 12:34:01', 0, NULL, 0, NULL, 1),
(3612, 7269, 'Adani Wilmar', 'Field sales executive', '2016-03-10', 11000.00, '2020-02-20', 22000.00, 'Hyderabad', '1', '3 years 11 months', ' Distrubutor gone into loss ', 1, '2021-12-25 02:17:39', 0, NULL, 0, NULL, 1),
(3613, 7267, 'Ghost kitchen concept (gkc foods )', 'Sales executive', '2021-06-13', 15000.00, '1970-01-01', 18000.00, 'Hyderabad banjara hills', '2', '0 years 6 months', ' There is no value for my work and it\'s a night duty i want to work in day shift', 1, '2021-12-26 02:31:32', 0, NULL, 0, NULL, 1),
(3614, 7275, 'Aronis marine service', 'Operation executive', '2018-09-01', 15000.00, '2021-11-30', 20000.00, 'Mannadi', '1', '3 years 2 months', 'Expecting high salary, and need a change', 1, '2021-12-27 11:15:18', 0, NULL, 0, NULL, 1),
(3615, 7275, 'Assalam engineering college', 'Managing director', '2016-12-01', 10000.00, '2018-11-14', 12000.00, 'Kumbakonam', '1', '1 years 11 months', 'Long distance', 1, '2021-12-27 11:18:05', 0, NULL, 0, NULL, 1),
(3616, 7276, 'Shriram transport finance company', 'Relationship executive', '2019-11-25', 13000.00, '2020-10-13', 13000.00, 'Poonamalle', '1', '0 years 10 months', 'Bike travelling per Day I\'ll  drive 40km and salary issue that so I resigned my Job.', 1, '2021-12-27 11:36:08', 0, NULL, 0, NULL, 1),
(3617, 7274, 'Cafs', 'Sales executive', '2021-03-24', 24000.00, '2022-01-02', 18000.00, 'T nager', '1', '0 years 9 months', ' Timeing ', 1, '2021-12-27 11:38:27', 0, NULL, 0, NULL, 1),
(3618, 7279, 'HDB FINANCE', 'Telecaller', '2021-09-27', 11000.00, '2021-11-30', 11000.00, 'Anna nagar', '1', '0 years 3 months', ' Timing is not comfortable', 1, '2021-12-27 12:19:03', 0, NULL, 0, NULL, 1),
(3619, 7280, 'HDB Finance', 'Telecaling', '2021-09-27', 11000.00, '2021-12-30', 11000.00, 'Anna nagar ', '1', '0 years 3 months', ' Timing issue', 1, '2021-12-27 12:20:03', 0, NULL, 0, NULL, 1),
(3620, 7282, 'Tagros chemical industry, Cuddalore', 'get', '2019-05-17', 11500.00, '2022-01-10', 15000.00, 'cuddalore', '1', '2 years 7 months', ' Changing the my career Position ', 1, '2021-12-27 12:31:00', 0, NULL, 0, NULL, 1),
(3621, 7283, 'Kalpanacoaters', 'Adm', '2021-12-01', 13000.00, '2021-12-27', 13500.00, 'Korathur', '1', '0 years 0 months', ' Salry', 1, '2021-12-27 12:55:48', 0, NULL, 0, NULL, 1),
(3622, 7287, 'Zealous solutions', 'Qa', '2019-03-04', 25000.00, '2020-03-30', 25000.00, 'Chennai', '1', '1 years 0 months', ' ', 1, '2021-12-27 03:41:56', 0, NULL, 0, NULL, 1),
(3623, 7295, 'Teleperformance', 'Customer support associate', '2017-08-10', 8000.00, '2019-11-21', 8000.00, 'Ambattur', '1', '2 years 3 months', ' Got abortion and treatment for laparoscopic ', 1, '2021-12-28 12:00:33', 0, NULL, 0, NULL, 1),
(3624, 7300, 'Altruist technology', 'Business associate', '2020-11-28', 14000.00, '2021-12-07', 14500.00, 'Chennai', '1', '1 years 0 months', ' I want to change my career to hr that\'s why I left', 1, '2021-12-28 12:26:21', 0, NULL, 0, NULL, 1),
(3625, 7299, 'Swiftprosys', 'Online marketing', '2019-08-10', 9000.00, '2020-04-21', 9000.00, 'Vadapalani', '1', '0 years 8 months', ' Lockdown', 1, '2021-12-28 12:28:45', 0, NULL, 0, NULL, 1),
(3626, 7303, 'cams ', 'call center exe', '2011-11-16', 12000.00, '2012-12-20', 11000.00, 'chennai', '1', '1 years 1 months', ' better carrier and salary', 1, '2021-12-28 12:50:09', 0, NULL, 0, NULL, 1),
(3627, 7304, 'slns projects', 'marketing executive', '2020-10-10', 16000.00, '2021-12-28', 25000.00, 'manikonda', '1', '1 years 2 months', 'Im looking for a Better Job,Carrer Growth', 1, '2021-12-28 01:13:10', 0, NULL, 0, NULL, 1),
(3628, 7306, 'Nanomyte Production India', 'System Administrator', '2021-06-16', 18000.00, '2021-12-10', 0.00, 'Chennai', '1', '0 years 5 months', ' Company closing', 1, '2021-12-28 01:21:54', 0, NULL, 0, NULL, 1),
(3629, 7308, 'Nanomyte', 'SMO', '2021-08-19', 15000.00, '2021-12-12', 15000.00, 'Mound road', '1', '0 years 3 months', ' salaries NEVER on time from Nanomyte. I can never think of a month where any employee got salary on month end already the salary is very less inspite of that it always gets delayed by 10 to 20th of next month and the management asking for excuse everytime for the delays without shame. And those who taken emi always pays with bounce charges due to these.', 1, '2021-12-28 01:59:31', 0, NULL, 0, NULL, 1),
(3630, 7307, 'Sutherland', 'Customer support executive', '2020-10-23', 18000.00, '2021-05-05', 18000.00, 'Perungalathur', '1', '0 years 6 months', 'Distance and weekly rotational shifts ', 1, '2021-12-28 02:54:51', 0, NULL, 0, NULL, 1),
(3631, 7288, 'hdfc life insurance', 'sales executive', '2020-09-01', 24000.00, '2021-02-28', 24000.00, 'hyderabad', '1', '0 years 5 months', ' better Opportunity', 1, '2021-12-28 03:23:39', 0, NULL, 0, NULL, 1),
(3632, 7312, 'kivihealth pvt ltd', 'bdm', '2019-09-03', 31.00, '2020-03-01', 25000.00, 'chennai', '1', '0 years 5 months', ' Due to COVID ', 1, '2021-12-28 03:24:40', 0, NULL, 0, NULL, 1),
(3633, 7313, 'vip store', 'sales executive', '2021-04-01', 14000.00, '2021-10-30', 14000.00, 'hyderabad', '1', '0 years 6 months', ' Better oppurtunity', 1, '2021-12-28 04:56:47', 0, NULL, 0, NULL, 1),
(3634, 7318, 'Agni business center', 'Relationship manager', '2020-11-05', 10000.00, '2021-10-31', 15000.00, 'Mylapore', '1', '0 years 11 months', 'I like to learn new Think so .In leave at the place ', 1, '2021-12-28 05:45:58', 0, NULL, 0, NULL, 1),
(3635, 7323, 'JM Financial homes loans limited', 'Credit processer', '2019-09-23', 13122.00, '2021-05-10', 13122.00, 'Hyderabad', '1', '1 years 7 months', ' Personal growth ', 1, '2021-12-29 11:21:17', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3636, 7324, 'Equitas Bank', 'business devalopment manager', '2020-09-04', 400000.00, '2021-11-15', 30000.00, 'kukkatpally', '1', '1 years 2 months', ' Chuse  better aparchunity ', 1, '2021-12-29 11:22:54', 0, NULL, 0, NULL, 1),
(3637, 7326, 'Hdfc life Insurance pvt ltd', 'BDE', '2020-06-03', 300000.00, '2021-12-30', 360000.00, 'Hyderabad', '1', '1 years 6 months', ' Looking for Career growth', 1, '2021-12-29 11:44:28', 0, NULL, 0, NULL, 1),
(3638, 7327, 'Rithinika.L', 'November', '2021-07-05', 13000.00, '1970-01-01', 12000.00, 'T.nagar', '2', '0 years 5 months', ' ', 1, '2021-12-29 12:18:10', 0, NULL, 0, NULL, 1),
(3639, 6993, 'relimer technologies', 'bde', '2017-02-13', 12000.00, '2019-07-30', 12000.00, 'hyderabad', '1', '2 years 5 months', ' ', 1, '2021-12-29 07:49:11', 0, NULL, 0, NULL, 1),
(3640, 6993, 'icicilombard', 'sales executive', '2019-08-30', 20000.00, '2021-12-22', 20000.00, 'gachibowli', '1', '2 years 3 months', 'process shifted to other branch', 1, '2021-12-29 07:52:27', 0, NULL, 0, NULL, 1),
(3641, 7342, 'damroof furniture', 'sales executive', '2021-04-05', 21000.00, '1970-01-01', 21000.00, 'ambattur', '2', '0 years 8 months', 'personal reason', 1, '2021-12-30 12:40:31', 0, NULL, 0, NULL, 1),
(3642, 7353, 'star Health insurance', 'telecaller', '2021-07-13', 13000.00, '1970-01-01', 13000.00, 'tnagar', '2', '0 years 5 months', ' Long distance', 1, '2021-12-31 12:23:58', 0, NULL, 0, NULL, 1),
(3643, 7358, 'Top minds IT solutions', 'Customer support associate', '2019-07-07', 16000.00, '2021-11-24', 22300.00, 'Hyderabad', '1', '2 years 4 months', ' Company closed', 1, '2021-12-31 02:09:16', 0, NULL, 0, NULL, 1),
(3644, 7363, 'Om innovation call centre private limited', 'customer sales executive', '2019-09-17', 8500.00, '2020-06-03', 8500.00, 'Chetpet ', '1', '0 years 8 months', ' Quarantine  issue cannot continue work from home so I ask notice of relieving letter & work 30 days from notice period', 1, '2022-01-03 10:22:27', 0, NULL, 0, NULL, 1),
(3645, 7363, 'Om innovation call centre pvt ltd', 'customer sales executive', '2019-09-17', 8500.00, '2020-06-03', 8500.00, 'chetpet', '1', '0 years 8 months', ' Quarantine Issue cannot continue wHF', 1, '2022-01-03 10:32:03', 0, NULL, 0, NULL, 1),
(3646, 7365, 'India filing private limited', 'Compliance advisor ', '2020-12-08', 15000.00, '2021-07-15', 20000.00, 'Chetpet', '1', '0 years 7 months', ' Salary issue ', 1, '2022-01-03 11:45:22', 0, NULL, 0, NULL, 1),
(3647, 7372, 'Amazon FC', 'Associate', '2021-01-03', 15000.00, '2021-12-30', 15000.00, 'Soukya road Bangalore', '1', '1 years 0 months', ' Growth Myself and improve my carrier', 1, '2022-01-03 06:50:11', 0, NULL, 0, NULL, 1),
(3648, 7379, 'Forte Management service', 'Telecalling', '2020-11-07', 10000.00, '2021-05-08', 12000.00, 'Ponneri', '1', '0 years 6 months', ' Salary package not comfortable', 1, '2022-01-04 11:01:17', 0, NULL, 0, NULL, 1),
(3649, 7380, 'EMERALD ASSOCIATION', 'Telecaller', '2021-04-25', 8000.00, '2021-12-31', 10000.00, 'Ponneri', '1', '0 years 8 months', ' Salary could not comfortable', 1, '2022-01-04 11:03:43', 0, NULL, 0, NULL, 1),
(3650, 7378, 'Forte Management solution', 'Telecaller', '2021-03-09', 10000.00, '2021-08-10', 10000.00, 'Ponneri', '1', '0 years 5 months', ' Salary could not credit properly ', 1, '2022-01-04 11:10:37', 0, NULL, 0, NULL, 1),
(3651, 7381, 'EMERALD ASSOCIATION', 'Telecaller', '2021-05-04', 12000.00, '2021-12-31', 12000.00, 'Ponneri', '1', '0 years 7 months', ' Salary could not credited', 1, '2022-01-04 11:22:03', 0, NULL, 0, NULL, 1),
(3652, 7384, 'Zentech pvt Ltd', 'Quality checking', '2021-09-06', 13000.00, '2022-01-03', 13000.00, 'Mount road', '1', '0 years 3 months', ' 3 month project ', 1, '2022-01-04 11:52:54', 0, NULL, 0, NULL, 1),
(3653, 7386, 'Abhi repair', 'Marketing manager', '2020-01-28', 25000.00, '2022-03-31', 25000.00, 'Coimbatore', '1', '2 years 2 months', ' ', 1, '2022-01-04 12:05:11', 0, NULL, 0, NULL, 1),
(3654, 7389, 'Star health allied insurance', 'Tele sale executive', '2021-08-05', 16000.00, '2021-11-03', 16000.00, 'Vadapalani', '1', '0 years 2 months', ' Late night ', 1, '2022-01-04 01:40:14', 0, NULL, 0, NULL, 1),
(3655, 7388, 'Star health Allied Insurence', 'Tele sale executive', '2021-08-05', 16000.00, '2021-11-03', 16000.00, 'Vadapalani', '1', '0 years 2 months', ' Late night', 1, '2022-01-04 01:40:37', 0, NULL, 0, NULL, 1),
(3656, 7394, 'Itech India Pvt LTD', 'Rate auditor', '2020-09-17', 12000.00, '2021-11-17', 12000.00, 'Ambattur', '1', '1 years 2 months', ' ', 1, '2022-01-05 10:24:43', 0, NULL, 0, NULL, 1),
(3657, 7393, 'Tech Mahindra', 'Customer support associate', '2019-04-20', 12000.00, '2021-04-27', 12000.00, 'Ambattur', '1', '2 years 0 months', 'Process got automated that\'s why I relived that company', 1, '2022-01-05 10:27:23', 0, NULL, 0, NULL, 1),
(3658, 7395, 'Tech Mahendra ', 'Customer Support associate ', '2019-02-15', 12000.00, '2020-10-28', 12000.00, 'Ambattur', '1', '1 years 8 months', ' Process automachine ', 1, '2022-01-05 10:37:09', 0, NULL, 0, NULL, 1),
(3659, 7397, 'One path housing and properties', 'Tellecaller', '2021-08-27', 8000.00, '2022-01-03', 8000.00, 'Dms', '1', '0 years 4 months', ' Salary issue', 1, '2022-01-05 12:13:58', 0, NULL, 0, NULL, 1),
(3660, 7396, 'One path housing and properties', 'Tellecaller', '2021-08-27', 8000.00, '2022-01-03', 8000.00, 'Dms', '1', '0 years 4 months', ' Salary issue', 1, '2022-01-05 12:35:42', 0, NULL, 0, NULL, 1),
(3661, 7402, 'Skybird infotech ', 'Hr recruiter ', '2021-06-01', 1.00, '2021-12-31', 12000.00, 'Tnagar ', '1', '0 years 6 months', ' There is no response for that job so I quit my job last month ', 1, '2022-01-05 04:01:07', 0, NULL, 0, NULL, 1),
(3662, 7404, 'All sets business solutions', 'Caller', '2021-04-02', 12000.00, '2022-01-06', 12000.00, 'Anna nagar', '1', '0 years 9 months', ' I am six months working So I will next job retry ', 1, '2022-01-06 10:40:44', 0, NULL, 0, NULL, 1),
(3663, 7405, 'Ss aqua technologies', 'Service', '2020-09-02', 10000.00, '2021-06-10', 12000.00, 'Thiruninravur', '1', '0 years 9 months', ' ', 1, '2022-01-06 11:29:32', 0, NULL, 0, NULL, 1),
(3664, 7407, 'Lemon peak', 'Sales executive', '2020-07-11', 17000.00, '2021-06-30', 17000.00, 'Nungambakkam', '1', '0 years 11 months', ' Process closed due to pandemic situation', 1, '2022-01-06 02:44:32', 0, NULL, 0, NULL, 1),
(3665, 7408, 'Sriram services private limited', 'system administrator ', '2020-01-27', 10000.00, '1970-01-01', 11000.00, 'Dharmapuri ', '2', '1 years 11 months', 'To grow up to the next level in my career with this working experience ', 1, '2022-01-07 10:16:44', 0, NULL, 0, NULL, 1),
(3666, 7409, 'CMO axis', 'Telecaller', '2019-05-01', 13000.00, '2021-11-30', 16000.00, 'Velachery ', '1', '2 years 6 months', ' Company got shutdown', 1, '2022-01-07 11:16:12', 0, NULL, 0, NULL, 1),
(3667, 7410, 'Teleperformance India private limited ', 'CCE', '2018-11-12', 19000.00, '2020-03-28', 20000.00, 'Indore', '1', '1 years 4 months', ' Covt19 lockdown ', 1, '2022-01-07 11:33:50', 0, NULL, 0, NULL, 1),
(3668, 7411, 'Stanley hospital', 'Insurance manager', '2019-02-11', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '2 years 10 months', ' Contract finished', 1, '2022-01-07 12:00:29', 0, NULL, 0, NULL, 1),
(3669, 7414, 'Reliance nippon life insurance ', 'Senior relationship manager ', '2019-10-05', 19000.00, '2021-06-30', 19000.00, 'Chennai ', '1', '1 years 8 months', ' Carrier growth ', 1, '2022-01-07 03:06:01', 1, '2022-01-07 03:15:03', 0, NULL, 1),
(3670, 7414, 'Lakshmi Vilas bank ', 'Senior sales Executive ', '2017-11-01', 15000.00, '2019-09-30', 16000.00, 'Chennai ', '1', '1 years 10 months', 'Currier growth ', 1, '2022-01-07 03:10:26', 1, '2022-01-07 03:14:09', 0, NULL, 0),
(3671, 7414, 'Idbi ', 'Senior sales executive ', '2016-10-01', 12500.00, '2017-08-31', 15500.00, 'Chennai ', '1', '0 years 11 months', 'Carrier growth ', 1, '2022-01-07 03:13:51', 0, NULL, 0, NULL, 1),
(3672, 7414, 'Lakshmi Vilas bank ', 'Senior sales executive ', '2017-11-01', 15000.00, '2019-09-30', 16000.00, 'Chennai ', '1', '1 years 10 months', 'Carrier growth ', 1, '2022-01-07 03:17:52', 0, NULL, 0, NULL, 1),
(3673, 7417, 'axis bank', 'sales', '2021-08-05', 9000.00, '2021-12-02', 9000.00, 'aavadi', '1', '0 years 3 months', ' due to travelling issue', 1, '2022-01-08 10:03:47', 0, NULL, 0, NULL, 1),
(3674, 7415, 'Lane consultancy', 'Telecaller', '2020-12-05', 8000.00, '2021-12-01', 16.00, 'Villivakkam', '1', '0 years 11 months', 'I am currently pursuing additional course. timing is not convenient for me. So I quit that job.', 1, '2022-01-08 11:36:57', 0, NULL, 0, NULL, 1),
(3675, 7421, 'scute soft solution', 'sales exective', '2021-09-16', 15000.00, '2021-11-16', 15000.00, 'hyderabad', '1', '0 years 2 months', ' due to travelling', 1, '2022-01-08 12:12:01', 0, NULL, 0, NULL, 1),
(3676, 7422, 'Loans mantra', 'Backend Officer', '2020-11-28', 12000.00, '2022-01-03', 12000.00, 'Egmore', '1', '1 years 1 months', ' ', 1, '2022-01-08 12:50:33', 0, NULL, 0, NULL, 1),
(3677, 7423, 'Skyline technology ', 'Telecaller', '2021-03-22', 13000.00, '2021-08-18', 13500.00, 'Perungalathur ', '1', '0 years 4 months', ' Salary less', 1, '2022-01-08 01:41:53', 0, NULL, 0, NULL, 1),
(3678, 7420, 'medico hr services', 'hr', '2021-07-10', 15000.00, '2021-12-10', 15000.00, 'guntur', '1', '0 years 5 months', 'i want to grow  my career and excel in sales.', 1, '2022-01-08 02:17:30', 0, NULL, 0, NULL, 1),
(3679, 7424, 'Medico hr services', 'Hr', '2021-06-10', 15000.00, '2021-12-10', 15000.00, 'Banglore', '1', '0 years 6 months', ' ', 1, '2022-01-08 04:28:18', 0, NULL, 0, NULL, 1),
(3680, 7425, 'SBI recovery ', 'Tele caller', '2021-05-20', 9000.00, '2021-12-02', 12000.00, 'Saidapet', '1', '0 years 6 months', ' ', 1, '2022-01-10 03:17:20', 1, '2022-01-10 08:45:13', 0, NULL, 0),
(3681, 7425, 'SBI recovery', 'Call center', '2021-05-20', 9000.00, '2021-12-02', 12000.00, 'Chennai', '1', '0 years 6 months', 'feel like I’ve developed as much as I can in my current role and am now seeking new opportunities for career growth.', 1, '2022-01-10 08:44:45', 0, NULL, 0, NULL, 1),
(3682, 7426, 'Tech Mahindra Ltd', 'customer Support Associate ', '2021-08-01', 13000.00, '2021-11-30', 15000.00, 'chennai', '1', '0 years 3 months', ' contract over', 1, '2022-01-10 10:39:54', 0, NULL, 0, NULL, 1),
(3683, 7431, 'Bosch ', 'Line worker', '2021-02-02', 16000.00, '2021-04-30', 16000.00, 'Kanjipuram', '1', '0 years 2 months', ' Lock down', 1, '2022-01-10 10:59:24', 0, NULL, 0, NULL, 1),
(3684, 7433, 'Sun business solutions  ', 'Telecaller ', '2020-12-18', 12500.00, '2021-01-05', 12500.00, 'Tharamani', '1', '0 years 0 months', ' Salary not increased ', 1, '2022-01-10 12:20:06', 0, NULL, 0, NULL, 1),
(3685, 7435, 'capital private', 'cre', '2021-01-05', 15000.00, '1970-01-01', 15000.00, 'banglore', '2', '1 years 0 months', ' carrier growth', 1, '2022-01-10 01:19:35', 0, NULL, 0, NULL, 1),
(3686, 7436, 'Shiv Skills Foundation ', 'HR ', '2021-04-01', 18000.00, '1970-01-01', 18000.00, 'Perungudi', '2', '0 years 9 months', ' Distance', 1, '2022-01-10 01:37:41', 0, NULL, 0, NULL, 1),
(3687, 7438, 'Bharti AXA Life insurance', 'Sr. Branch Head', '2012-06-27', 300000.00, '2021-09-09', 1180000.00, 'Hyderabad', '1', '9 years 2 months', ' Better prospects', 1, '2022-01-10 04:12:07', 0, NULL, 0, NULL, 1),
(3688, 7439, 'centre for unemployed youth development trust', 'quality team member', '2020-11-01', 10000.00, '2021-12-31', 10000.00, 'namakkal', '1', '1 years 1 months', ' ', 1, '2022-01-10 06:45:59', 0, NULL, 0, NULL, 1),
(3689, 7441, 'amazon', 'field sales executive', '2019-11-04', 18000.00, '2020-11-30', 25000.00, 'chennai', '1', '1 years 0 months', ' personal reason', 1, '2022-01-11 10:07:56', 0, NULL, 0, NULL, 1),
(3690, 7442, 'global service', 'Chennai', '2020-12-02', 13000.00, '2021-05-31', 13000.00, 'chennai', '1', '0 years 5 months', ' personal reason', 1, '2022-01-11 10:29:06', 0, NULL, 0, NULL, 1),
(3691, 7446, 'Flipkart warehouse', 'Senior Assistant', '2021-07-11', 14500.00, '2021-12-20', 14500.00, 'Poochiathipedu', '1', '0 years 5 months', ' Contact closed ', 1, '2022-01-11 12:44:43', 0, NULL, 0, NULL, 1),
(3692, 7451, 'finance bank', 'officer', '2020-11-02', 12000.00, '1970-01-01', 17000.00, 'theni', '2', '1 years 2 months', ' carrier growth', 1, '2022-01-11 01:30:23', 0, NULL, 0, NULL, 1),
(3693, 7455, 'Ebix cash', 'Customer service', '2021-02-22', 15000.00, '2021-12-09', 10000.00, 'Amajikari', '1', '0 years 9 months', ' My company has been shifted to another state.', 1, '2022-01-11 03:12:59', 0, NULL, 0, NULL, 1),
(3694, 7458, 'HDB Financial Service Limited', 'Recruitment Officer', '2020-12-08', 165964.00, '2022-01-07', 165964.00, 'Chennai', '1', '1 years 0 months', ' Due to Personal Reason and career growth', 1, '2022-01-11 06:01:05', 0, NULL, 0, NULL, 1),
(3695, 7459, 'Sutherland ', 'Customer executive', '2020-09-26', 15000.00, '2021-09-03', 15000.00, 'Perungalathur', '1', '0 years 11 months', ' I am not albe to work in night shifts ', 1, '2022-01-11 06:45:55', 0, NULL, 0, NULL, 1),
(3696, 7463, 'flipkart', 'Chennai', '2018-05-31', 10500.00, '2020-09-30', 17000.00, 'chennai', '1', '2 years 3 months', ' got married', 1, '2022-01-12 10:22:46', 0, NULL, 0, NULL, 1),
(3697, 7449, 'Care Health Insurance', 'Relationship Manager', '2020-03-17', 15400.00, '2021-12-31', 15400.00, 'Chennai', '1', '1 years 9 months', 'Personal ', 60, '2022-01-12 02:32:22', 0, NULL, 0, NULL, 1),
(3698, 7474, 'Allset business', 'Customer regional manager', '2021-01-10', 12000.00, '2022-09-10', 12000.00, 'Mount road', '1', '1 years 8 months', ' Distance office to home up to 60 km up and down I cont manage the expense', 1, '2022-01-13 11:50:53', 0, NULL, 0, NULL, 1),
(3699, 7476, 'Lanson toyota', 'Sales officer', '2018-05-16', 12000.00, '2018-11-08', 13000.00, 'Koyambedu', '1', '0 years 5 months', ' Health issue', 1, '2022-01-13 12:01:01', 0, NULL, 0, NULL, 1),
(3700, 7476, 'SEM ENTERPRISES', 'Billing cum supervisor', '2019-02-05', 13000.00, '2020-03-18', 14000.00, 'Mathur chennai', '1', '1 years 1 months', 'Corona issue ', 1, '2022-01-13 12:02:19', 0, NULL, 0, NULL, 1),
(3701, 7476, 'Popular vehicles and services limited', 'Customer acquisition', '2021-08-19', 13000.00, '2021-11-16', 13000.00, 'Anna nagar chennai', '1', '0 years 2 months', 'Salary issue', 1, '2022-01-13 12:03:37', 0, NULL, 0, NULL, 1),
(3702, 7478, 'Marketing ', 'Business development ', '2018-05-15', 20000.00, '2020-11-10', 35000.00, 'Pondicherry ', '1', '2 years 5 months', ' This own business ', 1, '2022-01-13 12:14:01', 0, NULL, 0, NULL, 1),
(3703, 7479, 'Gratitude india', 'Hr recruiter', '2019-12-01', 15000.00, '2020-05-30', 15000.00, 'Chennai', '1', '0 years 5 months', ' ', 1, '2022-01-13 12:16:09', 0, NULL, 0, NULL, 1),
(3704, 7479, 'Omega health care', 'Ar caller', '2021-01-20', 14500.00, '2021-07-31', 15000.00, 'Chennai', '1', '0 years 6 months', 'Salary issues', 1, '2022-01-13 12:18:19', 0, NULL, 0, NULL, 1),
(3705, 7479, 'Altruist technology', 'Advisor', '2021-08-07', 15000.00, '2021-12-23', 15000.00, 'Chennai', '1', '0 years 4 months', 'Distance', 1, '2022-01-13 12:19:42', 0, NULL, 0, NULL, 1),
(3706, 7480, 'Gratitude Philippines ', 'He recruiter ', '2019-12-02', 15000.00, '2020-05-30', 15000.00, 'NUNGABAKKAM ', '1', '0 years 5 months', ' Salary issue ', 1, '2022-01-13 12:21:35', 0, NULL, 0, NULL, 1),
(3707, 7481, 'Ramkumar & co', 'Junior accounting ', '2018-12-31', 10000.00, '2021-02-26', 13000.00, 'Chennai ', '1', '2 years 1 months', ' Personal issues ', 1, '2022-01-13 01:47:34', 0, NULL, 0, NULL, 1),
(3708, 7484, 'Cholamandalam Finance ', 'Junior Officer ', '2019-12-02', 9000.00, '1970-01-01', 14500.00, 'Chennai ', '2', '2 years 1 months', 'FOR MY CAREER GROWTH TO FINANCIAL. PROBLEM IN MY FAMILY ', 1, '2022-01-17 11:07:55', 0, NULL, 0, NULL, 1),
(3709, 7485, 'Cholamandalam Finance ', 'Junior Officer ', '2019-12-18', 9500.00, '1970-01-01', 14.50, 'Chennai ', '2', '2 years 0 months', ' ', 1, '2022-01-17 11:18:32', 0, NULL, 0, NULL, 1),
(3710, 7494, 'Just dail pvt ltd', 'Information retrival officer', '2017-12-04', 10000.00, '2019-01-07', 10000.00, 'Chennai', '1', '1 years 1 months', ' ', 1, '2022-01-18 12:21:13', 0, NULL, 0, NULL, 1),
(3711, 7494, 'Workfreaks pvt ltd', 'Hr recruiter ', '2019-02-07', 12000.00, '2019-09-22', 18000.00, 'Chennai ', '1', '0 years 7 months', 'Looking for a better opportunity ', 1, '2022-01-18 12:23:04', 0, NULL, 0, NULL, 1),
(3712, 7494, 'KUN Exclusive BMW ', 'Delivery coordinator ', '2019-09-23', 20000.00, '2021-12-31', 21600.00, 'Chennai ', '1', '2 years 3 months', 'Manpower issue ', 1, '2022-01-18 12:24:45', 0, NULL, 0, NULL, 1),
(3713, 7495, 'Ucal Fuel system Ltd ', 'Executive ', '2019-05-17', 10000.00, '2020-03-20', 12000.00, 'Chengalpattu ', '1', '0 years 10 months', ' Covid-19 ', 1, '2022-01-18 12:42:04', 0, NULL, 0, NULL, 1),
(3714, 7496, 'muthoot finance', 'gre', '2019-01-02', 13400.00, '2021-06-14', 15000.00, 'ossur', '1', '2 years 5 months', ' due  to personal issue', 1, '2022-01-18 02:34:51', 0, NULL, 0, NULL, 1),
(3715, 7505, 'Krishpar Technology', 'IT Recruiter', '2021-02-23', 12000.00, '2021-09-10', 16000.00, 'chennai', '1', '0 years 6 months', ' Due to Health Condition Relived from the company', 1, '2022-01-19 01:20:40', 0, NULL, 0, NULL, 1),
(3716, 7505, 'Tech Mahindra', 'Associate Customer Executive', '2020-06-01', 15000.00, '2020-11-10', 15000.00, 'Chennai', '1', '0 years 5 months', 'Contract is over ', 1, '2022-01-19 01:23:33', 0, NULL, 0, NULL, 1),
(3717, 7504, 'JPM Corporate Solution India Pvt Ltd', 'HR Recruiter', '2021-04-15', 12000.00, '2021-10-30', 12000.00, 'Chennai', '1', '0 years 6 months', ' I have same salary issue.i asked the reason but they won\'t give proper reason to me so I quit that job.', 1, '2022-01-19 01:27:33', 0, NULL, 0, NULL, 1),
(3718, 7507, 'Hathway', 'Telecaller', '2021-02-23', 14500.00, '2021-03-31', 14500.00, 'Nungambakkam', '1', '0 years 1 months', ' Small kid', 1, '2022-01-19 04:10:28', 0, NULL, 0, NULL, 1),
(3719, 7508, 'Infinitive tech & Solutions ', 'Iam four years Exp. in BPO sector.', '2017-01-02', 12000.00, '2021-08-06', 25000.00, 'Villupuram ', '1', '4 years 7 months', ' Ihave some family issues and the company has not run properly..', 1, '2022-01-19 05:16:58', 0, NULL, 0, NULL, 1),
(3720, 7518, 'Trance home india pvt ltd', 'Senior telecaller', '2021-09-01', 14500.00, '2021-12-02', 1450.00, 'Maduvangarai', '1', '0 years 3 months', 'Long distance', 1, '2022-01-20 11:13:43', 0, NULL, 0, NULL, 1),
(3721, 7520, 'Jio Dx mini', 'Sales associate', '2020-07-05', 12500.00, '2021-09-19', 13000.00, 'Ambattur', '1', '1 years 2 months', ' Sales pressure ', 1, '2022-01-20 11:26:11', 0, NULL, 0, NULL, 1),
(3722, 7519, 'Lakshmi Ford ', 'Delivery consultant & Reception', '2017-09-04', 6500.00, '2020-03-25', 9000.00, 'Thanjavur', '1', '2 years 6 months', ' Salary not satisfied', 1, '2022-01-20 11:28:20', 0, NULL, 0, NULL, 1),
(3723, 7512, 'Sri lakshmi automobile', 'Tellecaller', '2020-09-01', 9000.00, '2021-08-30', 10000.00, 'Padi', '1', '0 years 11 months', ' Salary issue', 1, '2022-01-20 11:57:40', 0, NULL, 0, NULL, 1),
(3724, 7525, 'Stats perform', 'Chennai', '2021-01-04', 13000.00, '2021-07-31', 18000.00, 'Chennai', '1', '0 years 6 months', ' Due to helath issue', 1, '2022-01-20 01:23:06', 0, NULL, 0, NULL, 1),
(3725, 7533, 'Info 7solution', 'Thirunindravuur', '2021-11-01', 8000.00, '2021-12-07', 8000.00, 'Ambattur', '1', '0 years 1 months', ' Low salary', 1, '2022-01-21 11:04:24', 0, NULL, 0, NULL, 1),
(3726, 7536, 'Athayi Group of educational institutions ', 'English & Arabic professor', '2021-01-02', 15000.00, '2021-10-18', 18000.00, 'Chennai ECR Highways And kilakarai', '1', '0 years 9 months', ' Not enough salary', 1, '2022-01-21 12:28:14', 0, NULL, 0, NULL, 1),
(3727, 7538, 'Skylark ', 'HR recruitment ', '2021-06-07', 12000.00, '1970-01-01', 12000.00, 'Chenn', '2', '0 years 7 months', ' ', 1, '2022-01-21 12:54:31', 0, NULL, 0, NULL, 1),
(3728, 7538, 'Adfc', 'HR recruitment ', '2012-04-01', 18000.00, '2015-08-01', 20000.00, 'Chennai ', '1', '3 years 4 months', 'Family reason', 1, '2022-01-21 12:57:20', 0, NULL, 0, NULL, 1),
(3729, 7537, 'HDFC BANK', 'CD team', '2020-12-01', 15000.00, '2021-12-15', 15000.00, 'Thanjavur', '1', '1 years 0 months', ' I was in crm team then they changed me in cd team that\'s why I Releived', 1, '2022-01-21 01:11:47', 0, NULL, 0, NULL, 1),
(3730, 7534, 'sixsigma soft solutions', 'hr recruiter', '2021-09-13', 15000.00, '1970-01-01', 11677.00, 'chennai', '2', '0 years 4 months', 'better prospects', 1, '2022-01-21 03:50:52', 1, '2022-01-21 03:51:13', 0, NULL, 1),
(3731, 7541, 'New born global Solution', 'Cuddalore', '2020-03-02', 8000.00, '2020-12-20', 10000.00, 'Neyveli', '1', '0 years 9 months', 'Due to personal issues', 1, '2022-01-21 03:59:48', 0, NULL, 0, NULL, 1),
(3732, 7544, 'tidel inovation', 'telecaller', '2017-08-02', 6000.00, '2020-03-31', 22000.00, 'chennai', '1', '2 years 7 months', ' due to covid', 1, '2022-01-21 06:13:33', 0, NULL, 0, NULL, 1),
(3733, 7550, 'Keffsoft Solution ', 'Tele Caller ', '2019-01-04', 12000.00, '2020-02-04', 12000.00, 'Jaffarkhanpet', '1', '1 years 1 months', ' ', 1, '2022-01-22 04:48:19', 0, NULL, 0, NULL, 1),
(3734, 7553, 'Sps pvt Ltd.', 'Copy editor', '2019-02-07', 9000.00, '2019-12-10', 21000.00, 'Alwarpet', '1', '0 years 10 months', ' Family', 1, '2022-01-22 05:12:14', 0, NULL, 0, NULL, 1),
(3735, 7556, 'Ramya. J', 'Telecu', '2022-01-24', 20000.00, '1970-01-01', 20000.00, 'T nagar', '2', '0 years 0 months', ' ', 1, '2022-01-24 10:56:13', 0, NULL, 0, NULL, 1),
(3736, 7566, 'Astragen private limited', 'Business Development Coordinator', '2021-08-16', 15300.00, '1970-01-01', 15300.00, 'Sholinganallur', '2', '0 years 5 months', 'Curriculum based company current situation right now is not been up to the mark', 1, '2022-01-24 10:02:28', 0, NULL, 0, NULL, 1),
(3737, 7566, 'Astragen private ltd', 'Business Development Coordinator', '2021-08-16', 15300.00, '1970-01-01', 15300.00, 'Sholinganallur', '2', '0 years 5 months', 'Curriculum based company due to pandemic situation they are planned to take off the job', 1, '2022-01-24 10:04:45', 1, '2022-02-04 06:40:06', 0, NULL, 0),
(3738, 7563, 'Astragen private Ltd', 'Business Development Coordinator', '2021-08-16', 15300.00, '1970-01-01', 15300.00, 'Sholinganallur', '2', '0 years 5 months', ' Curriculum based company due to pandemic situation they planned to close the company', 1, '2022-01-24 10:08:20', 0, NULL, 0, NULL, 1),
(3739, 7570, 'State bank of india', 'Relationship officer', '2021-10-11', 14500.00, '1970-01-01', 14500.00, 'Chennai', '2', '0 years 3 months', ' For carrier growth', 1, '2022-01-25 10:20:10', 0, NULL, 0, NULL, 1),
(3740, 7571, 'Sports development authority of tamilnafu', 'Computer operator in Admin dept.', '2020-12-01', 15000.00, '1970-01-01', 15000.00, 'Velacherry chennai', '2', '1 years 1 months', ' I need shine and growth in domain and career', 1, '2022-01-25 10:59:38', 0, NULL, 0, NULL, 1),
(3741, 7571, 'Maaruthi wood works ', 'Supervisor cum admin', '2018-07-01', 13000.00, '2020-11-30', 13000.00, 'Perungudi chennai', '1', '2 years 4 months', 'I got an new job in Sdat ', 1, '2022-01-25 11:02:25', 0, NULL, 0, NULL, 1),
(3742, 7572, 'Sbi ', 'TL', '2019-02-05', 18000.00, '2020-03-07', 20000.00, 'Thiruvanandhapuram kerala ', '1', '1 years 1 months', 'Mother  Health issue that\'s why I relieving  the job ', 1, '2022-01-25 11:37:57', 0, NULL, 0, NULL, 1),
(3743, 7575, 'SivaPreethi hospital', 'Accountant', '2020-09-15', 10000.00, '1970-01-01', 10000.00, 'Thanjavur', '2', '1 years 4 months', ' I\'ve learned a lot from my work experience. It\'s time to upgrading myself in another platform.', 1, '2022-01-25 11:52:34', 0, NULL, 0, NULL, 1),
(3744, 7578, 'Fusion', 'Telecalling', '2021-08-06', 15000.00, '2022-01-25', 15000.00, 'Ekkaduthangal', '1', '0 years 5 months', ' So long distance', 1, '2022-01-25 12:56:48', 0, NULL, 0, NULL, 1),
(3745, 7579, 'Fast info private limited ', 'Marketing sales', '2021-10-29', 15000.00, '2022-01-11', 10000.00, 'Chennai,thousand light', '1', '0 years 2 months', 'He not   giving  a incentive .so that wise I am relieved. ', 1, '2022-01-25 01:55:29', 0, NULL, 0, NULL, 1),
(3746, 7524, 'Atos Global IT Solutions', 'IT HR Recruiter', '2021-07-15', 15000.00, '2022-01-31', 15000.00, 'Serusari', '1', '0 years 6 months', ' Wanted to switch for another company', 1, '2022-01-25 02:24:01', 0, NULL, 0, NULL, 1),
(3747, 7581, 'Vizzaz insurance broking service', 'Renewal ', '2021-04-25', 13000.00, '2021-12-26', 13000.00, 'Tnagar', '1', '0 years 8 months', 'Not satisfying our team Members', 1, '2022-01-25 03:37:16', 0, NULL, 0, NULL, 1),
(3748, 7582, 'flexzo hr services pvt ltd', 'hr recruiter', '2021-10-08', 13000.00, '1970-01-01', 13000.00, 'chennai', '2', '0 years 3 months', ' low salary', 1, '2022-01-25 06:04:07', 0, NULL, 0, NULL, 1),
(3749, 7585, 'Amtex software solution ', 'Customer support executive (Tele caller)', '2017-11-02', 11000.00, '2019-03-06', 14000.00, 'Chennai', '1', '1 years 4 months', 'Looking for an better opportunity', 1, '2022-01-27 07:07:58', 0, NULL, 0, NULL, 1),
(3750, 7585, 'Muthoot finance pvt ltd', 'Junior relationship executive', '2019-03-15', 18500.00, '2020-10-31', 18500.00, 'Chennai', '1', '1 years 7 months', 'Because of covid period', 1, '2022-01-27 07:09:47', 0, NULL, 0, NULL, 1),
(3751, 7587, 'Star health  and allied insurance', 'Sales ma5', '2020-12-21', 11000.00, '2021-07-01', 12000.00, 'Parrys', '1', '0 years 6 months', 'Salary hike', 1, '2022-01-27 10:08:08', 0, NULL, 0, NULL, 1),
(3752, 7593, 'Cloud8 Solution India Pvt LTD', 'Assistant manager', '2018-03-01', 8500.00, '2021-01-31', 25000.00, 'Velachery', '1', '2 years 11 months', ' For marraige', 1, '2022-01-27 10:59:00', 0, NULL, 0, NULL, 1),
(3753, 7592, 'Maruthi plastics and package Pvt Ltd', 'Sales coordinator', '2020-03-10', 11000.00, '2021-01-25', 13000.00, 'Emgore', '1', '0 years 10 months', ' Due to my marriage', 1, '2022-01-27 10:59:37', 0, NULL, 0, NULL, 1),
(3754, 7597, 'ProGlobal Consultancy', 'Html developer', '2016-02-04', 13000.00, '2020-03-31', 30000.00, 'Adyar', '1', '4 years 1 months', ' Due to corona pandemic, owner shut down the company and went to Canada', 1, '2022-01-27 11:52:59', 0, NULL, 0, NULL, 1),
(3755, 7599, 'Alkharif Tourism (UAE)', 'Telesales Manager', '2021-01-27', 40000.00, '2021-08-27', 40000.00, 'United Arab Emirates', '1', '0 years 7 months', 'I\'m Suffered from Viral Fever, so I came back', 1, '2022-01-27 12:29:24', 0, NULL, 0, NULL, 1),
(3756, 7598, 'Star health and allied insurance company', 'TSO', '2021-03-20', 13500.00, '2021-10-31', 18000.00, 'Vadapalani', '1', '0 years 7 months', 'Salary issue', 1, '2022-01-27 12:31:02', 0, NULL, 0, NULL, 1),
(3757, 7600, 'Miramed Ajuba Solutions ', 'AR Caller', '2018-12-03', 12000.00, '2021-11-01', 25583.00, 'Thoraipakkam', '1', '2 years 10 months', ' Wanted to grow a good career in HR department ', 1, '2022-01-27 12:33:39', 0, NULL, 0, NULL, 1),
(3758, 7600, 'Infinity Quest ', 'Hr recruiter ', '2021-11-17', 29992.00, '1970-01-01', 29992.00, 'Guindy', '2', '0 years 2 months', 'Medical issues due to night shift', 1, '2022-01-27 12:35:36', 0, NULL, 0, NULL, 1),
(3759, 7601, 'Tcs', 'Process associate', '2014-06-30', 13000.00, '2017-04-30', 18000.00, 'Chennai one thuraipakkam', '1', '2 years 10 months', ' Personal ', 1, '2022-01-27 12:57:49', 0, NULL, 0, NULL, 1),
(3760, 7590, 'HDB financial services limited', 'Junior executive officer', '2020-01-03', 13500.00, '2021-07-26', 15000.00, 'Aminjikarai', '1', '1 years 6 months', 'Got married that\'s why releive my job', 1, '2022-01-27 02:12:05', 0, NULL, 0, NULL, 1),
(3761, 7606, 'Mearsk global', 'Account payable', '2018-04-13', 2.50, '2019-07-10', 2.50, 'Chennai', '1', '1 years 2 months', ' My meternity leave', 1, '2022-01-27 03:20:05', 0, NULL, 0, NULL, 1),
(3762, 7608, 'Darling digital world pvt Ltd', 'Cashier and cRM', '2020-10-23', 8500.00, '2021-11-13', 9500.00, 'Tiruttani', '1', '1 years 0 months', ' Timing and personal reasons', 1, '2022-01-28 10:49:42', 0, NULL, 0, NULL, 1),
(3763, 7611, 'Green gulf engineers', 'Executive field work', '2018-07-16', 15000.00, '2019-04-12', 15000.00, 'Theni', '1', '0 years 8 months', ' Corona issue', 1, '2022-01-28 12:21:14', 0, NULL, 0, NULL, 1),
(3764, 7612, 'Cedar business solutions', 'Senior caller', '2020-10-30', 12000.00, '2021-11-28', 12000.00, 'Chennai', '1', '1 years 0 months', ' Salary not enough', 1, '2022-01-28 12:27:20', 0, NULL, 0, NULL, 1),
(3765, 7613, 'Ezee housing ', 'Customer support executive ', '2021-05-10', 15000.00, '2022-01-20', 18000.00, 'Velachery ', '1', '0 years 8 months', ' Salary issue ', 1, '2022-01-28 01:12:59', 0, NULL, 0, NULL, 1),
(3766, 7613, 'Grace info tech ', 'Exicutive ', '2020-03-09', 12000.00, '2021-04-23', 15000.00, 'Vadalur', '1', '1 years 1 months', 'Moved for next level of salary ', 1, '2022-01-28 01:15:04', 0, NULL, 0, NULL, 1),
(3767, 7615, 'HDB financial service limited', 'Sales executive', '2021-01-08', 12500.00, '2022-02-05', 12500.00, 'Chennai', '1', '1 years 0 months', ' Covid', 1, '2022-01-28 04:19:12', 0, NULL, 0, NULL, 1),
(3768, 7617, 'CIEL HR services Pvt Ltd', 'HR Trainee', '2021-09-10', 15000.00, '1970-01-01', 15000.00, 'Anna nagar', '2', '0 years 4 months', ' ', 1, '2022-01-29 11:39:04', 0, NULL, 0, NULL, 1),
(3769, 7619, 'Flipkart', 'Delivery Executive', '2019-08-03', 15000.00, '2022-01-31', 17000.00, 'Chennai', '1', '2 years 5 months', 'Like to expend my knowledge and skills ', 1, '2022-01-29 02:51:52', 0, NULL, 0, NULL, 1),
(3770, 7624, 'Fullerton india credit company ltd', 'Sales', '2021-06-22', 30000.00, '2021-12-20', 30000.00, 'Madurai', '1', '0 years 5 months', ' Personal problem', 1, '2022-01-31 10:35:24', 0, NULL, 0, NULL, 1),
(3771, 7628, 'Kotak Mahindra Bank', 'Assistant manager', '2019-08-08', 20000.00, '2020-02-28', 20000.00, 'Parrys', '1', '0 years 6 months', ' Long distance', 1, '2022-01-31 11:17:41', 0, NULL, 0, NULL, 1),
(3772, 7626, 'Sairam infotech', 'Telecaller', '2019-06-13', 12500.00, '2021-01-05', 12500.00, 'T.nagar', '1', '1 years 6 months', ' For marriage', 1, '2022-01-31 11:26:39', 0, NULL, 0, NULL, 1),
(3773, 7631, 'HDB financial services Limited', 'processor', '2020-01-06', 10000.00, '2021-10-30', 12000.00, 'Greams Road 3', '1', '1 years 9 months', ' Salary Problem only', 1, '2022-01-31 12:52:40', 0, NULL, 0, NULL, 1),
(3774, 7632, 'Just dial', 'Telecalling', '2019-10-08', 14000.00, '2021-08-09', 16000.00, 'Saidhapet', '1', '1 years 10 months', ' Salary problem', 1, '2022-01-31 01:27:39', 0, NULL, 0, NULL, 1),
(3775, 7633, 'Axis bank Ltd', 'Team Leader', '2022-08-04', 21000.00, '1970-01-01', 21000.00, 'Kodambakkam', '2', '0 years 5 months', ' ', 1, '2022-01-31 01:30:22', 0, NULL, 0, NULL, 1),
(3776, 7637, 'Sriram City union finance', 'Sales executive', '2009-09-15', 9500.00, '2013-03-31', 13000.00, 'Ambattur', '1', '3 years 6 months', ' Incentive not given properly', 1, '2022-01-31 02:54:59', 0, NULL, 0, NULL, 1),
(3777, 7637, 'Rv motors', 'Sales executive', '2013-06-01', 14000.00, '2016-08-31', 16000.00, 'Padi', '1', '3 years 2 months', 'Interest to banking field sales executive', 1, '2022-01-31 02:57:42', 0, NULL, 0, NULL, 1),
(3778, 7636, 'TMS Consulting', 'Hr recruiter', '2011-02-03', 1.00, '2012-03-30', 15000.00, 'T nagar', '1', '1 years 1 months', ' Maternity period', 1, '2022-01-31 02:58:03', 0, NULL, 0, NULL, 1),
(3779, 7637, 'Hdfc Bank Ltd', 'Sales executive in finance', '2016-11-10', 17500.00, '2019-06-20', 19000.00, 'Nm road', '1', '2 years 7 months', 'Salary not credited properly', 1, '2022-01-31 02:59:54', 0, NULL, 0, NULL, 1),
(3780, 7637, 'Rv motors', 'Sales executive', '2019-09-25', 19500.00, '2021-11-03', 21000.00, 'Padi', '1', '2 years 1 months', 'Not in active construction going on', 1, '2022-01-31 03:03:15', 0, NULL, 0, NULL, 1),
(3781, 7639, 'Nifco South Indian manufacturing', 'Contract labour', '2021-03-01', 12000.00, '2022-02-04', 12000.00, 'Mannur', '1', '0 years 11 months', ' Personal reason', 1, '2022-01-31 07:08:23', 0, NULL, 0, NULL, 1),
(3782, 7641, 'hdfc life Insurance co ltd', 'branch manager', '2017-11-20', 850000.00, '2021-12-31', 1156000.00, 'chennai', '1', '4 years 1 months', ' Career growth', 1, '2022-01-31 10:30:29', 0, NULL, 0, NULL, 1),
(3783, 7642, 'axsi bank ', 'sales executive ', '2020-11-26', 11000.00, '2021-11-18', 14000.00, 'kodambakkam ', '1', '0 years 11 months', 'COVID issu ', 1, '2022-02-01 10:29:16', 0, NULL, 0, NULL, 1),
(3784, 7643, 'Hdfc bank loan department ', 'Sales Executive ', '2018-10-30', 15000.00, '2019-11-12', 16500.00, 'Vadapalani ', '1', '1 years 0 months', ' ', 1, '2022-02-01 11:14:24', 0, NULL, 0, NULL, 1),
(3785, 7644, 'Caratlane', 'Marketing executive', '2021-07-15', 18000.00, '2021-12-01', 18000.00, 'Nungambakkam', '1', '0 years 4 months', ' I quit my previous job because it\'s a commodity based services and I keen to work in finance and banking sector this is why I quit my previous job.', 1, '2022-02-01 12:07:47', 0, NULL, 0, NULL, 1),
(3786, 7651, 'SBI CARDS', 'Sales executive', '2020-08-05', 22000.00, '2021-11-03', 18000.00, 'ARUMBAKKAM', '1', '1 years 2 months', 'Delay in salary in previous company', 1, '2022-02-01 01:16:21', 0, NULL, 0, NULL, 1),
(3787, 7645, 'aarthi scans', 'telecaller', '2020-01-01', 10000.00, '2021-01-01', 11000.00, 'chennai', '1', '1 years 0 months', ' covid situation', 1, '2022-02-01 01:24:24', 0, NULL, 0, NULL, 1),
(3788, 7645, 'mep training & testing', 'telecaller', '2021-06-01', 9000.00, '2021-12-20', 9000.00, 'thanjavur', '1', '0 years 6 months', 'due to mother health issues', 1, '2022-02-01 01:25:33', 0, NULL, 0, NULL, 1),
(3789, 7654, 'Muthoot finance ltd', 'Assistant manager operations', '2013-07-16', 15000.00, '2021-04-13', 23000.00, 'Bangalore', '1', '7 years 8 months', 'Career growth', 1, '2022-02-01 02:10:00', 0, NULL, 0, NULL, 1),
(3790, 7658, 'Fly go first airlines', 'Business Devolpement Manager', '2019-08-28', 54166.00, '1970-01-01', 54166.00, 'Hyderabad', '2', '2 years 5 months', ' ', 1, '2022-02-01 05:22:03', 0, NULL, 0, NULL, 1),
(3791, 7658, 'SBI Life insurance ', 'Business Devolpement manager', '2018-07-05', 32647.00, '2019-08-22', 32647.00, 'Mahabubnagar', '1', '1 years 1 months', 'I want to change my profile from Insurance industry ', 1, '2022-02-01 05:37:09', 0, NULL, 0, NULL, 1),
(3792, 7658, 'Quality group', 'Manager', '2016-05-02', 31227.00, '2018-06-27', 31227.00, 'Hyderabad', '1', '2 years 1 months', 'Better job offer in SBI', 1, '2022-02-01 05:39:34', 0, NULL, 0, NULL, 1),
(3793, 7658, 'Axis bank ltd', 'Deputy manager', '2008-11-12', 18000.00, '2016-04-11', 33000.00, 'Karimnagar', '1', '7 years 4 months', 'Family problems ', 1, '2022-02-01 05:41:01', 0, NULL, 0, NULL, 1),
(3794, 7623, 'Sutherland', 'Voice process, customer service', '2020-09-23', 15000.00, '2022-09-30', 12000.00, 'Chennai', '1', '2 years 0 months', 'Change domain', 1, '2022-02-02 10:00:48', 0, NULL, 0, NULL, 1),
(3795, 7663, 'OSPI HEALTHCARE PRIVATE LIMITED', 'CUSTOMER SERVICE EXECUTIVE -SALES', '2021-02-23', 12000.00, '2021-09-05', 12000.00, 'THOUSANDS LIGHTS', '1', '0 years 6 months', ' HEALTH ISSUES', 1, '2022-02-02 11:37:17', 0, NULL, 0, NULL, 1),
(3796, 7670, 'Karvy ', 'Customer support', '2019-06-21', 13.50, '2020-06-23', 13.50, 'Velachery', '1', '1 years 0 months', ' ', 1, '2022-02-03 10:25:17', 0, NULL, 0, NULL, 1),
(3797, 7664, 'questaliance organisation', 'telecalling', '2021-02-08', 15000.00, '2021-11-30', 15000.00, 'arakonam', '1', '0 years 9 months', 'to pursue course', 58, '2022-02-03 10:34:21', 0, NULL, 0, NULL, 1),
(3798, 7655, 'Vibrant info pvt limited ', 'Customer service ', '2020-10-28', 16000.00, '2022-01-03', 14500.00, 'Kolkata ', '1', '1 years 2 months', ' Some salary issue ', 1, '2022-02-03 11:58:17', 0, NULL, 0, NULL, 1),
(3799, 7676, 'Pranitha Associates', 'Telecalling', '2019-01-10', 13000.00, '2022-01-10', 15000.00, 'Royepettah', '1', '3 years 0 months', ' Company Was Closed Due To Covid', 1, '2022-02-03 02:33:36', 0, NULL, 0, NULL, 1),
(3800, 7682, 'Radiant group of company', 'Mis executive', '2020-12-01', 15000.00, '2021-08-31', 15000.00, 'T nagar', '1', '0 years 9 months', ' Shifted to thuraipakkam', 1, '2022-02-04 02:21:57', 0, NULL, 0, NULL, 1),
(3801, 7681, 'Ipl & TAFE Ltd..', 'Quality inspection', '2020-08-26', 13000.00, '2021-08-26', 14000.00, 'Moolakadi', '1', '1 years 0 months', ' 1 year project trainee..', 1, '2022-02-04 02:27:05', 0, NULL, 0, NULL, 1),
(3802, 7566, 'Accenture', 'Process associate', '2017-06-29', 10000.00, '2020-07-30', 17000.00, 'Sholinganallur', '1', '3 years 1 months', ' Worked more than three years in night shift', 1, '2022-02-04 06:43:00', 0, NULL, 0, NULL, 1),
(3803, 7684, 'ISON BPO india pvt LTD', 'Customer care executive and iperations', '2020-09-23', 16.00, '2021-10-08', 16.00, 'Richmond road', '1', '1 years 0 months', ' Personal family issues', 1, '2022-02-05 10:39:16', 0, NULL, 0, NULL, 1),
(3804, 7685, 'Eximo service & solutions Pvt Ltd', 'Semi voice process', '2020-06-26', 9500.00, '1970-01-01', 10.00, 'Ambattur', '2', '1 years 7 months', ' Night so health problems', 1, '2022-02-05 11:09:07', 0, NULL, 0, NULL, 1),
(3805, 7688, 'Techtilt technologies', 'Hr recruiter', '2021-12-01', 12000.00, '1970-01-01', 12000.00, 'Chennai', '2', '0 years 2 months', 'Till now i didn\'t get my salary yet  so that i switch to move on and also build  my career growth ', 1, '2022-02-05 11:29:05', 0, NULL, 0, NULL, 1),
(3806, 7688, 'Techtilt technologies', 'Hr recruiter ', '2021-12-01', 12000.00, '1970-01-01', 12000.00, 'Chennai', '2', '0 years 2 months', ' Til now didn\'t get my salary yet so that\'s why i switched move on and also build my career growth. ', 1, '2022-02-05 11:33:46', 0, NULL, 0, NULL, 1),
(3807, 7690, 'Kone elevator India', 'Processing agent', '2019-06-04', 12000.00, '2022-02-05', 12000.00, 'Chennai', '1', '2 years 8 months', ' Contact Completed then I am relieved', 1, '2022-02-05 06:59:42', 0, NULL, 0, NULL, 1),
(3808, 7686, 'Bankzone', 'Telecaller', '2018-01-09', 10000.00, '2018-11-16', 12000.00, 'Nungambakkam', '1', '0 years 10 months', 'Some health issues', 1, '2022-02-05 10:53:21', 0, NULL, 0, NULL, 1),
(3809, 7692, 'Study abroad russian cultural center', 'Tellcalliing', '2021-03-04', 12500.00, '2022-01-08', 12500.00, 'Alwarpet', '1', '0 years 10 months', 'Due to COVID  ', 1, '2022-02-07 11:32:37', 0, NULL, 0, NULL, 1),
(3810, 7692, 'Study abroad russian cultural center', 'Tellcalliing', '2021-08-11', 12500.00, '2022-01-08', 12500.00, 'Alwarpet', '1', '0 years 4 months', 'Due to COVID issue', 1, '2022-02-07 11:34:22', 0, NULL, 0, NULL, 1),
(3811, 7692, 'Study abroad russian cultural center', 'Tellcalliing', '2021-08-12', 12500.00, '2022-01-08', 12500.00, 'Alwarpet', '1', '0 years 4 months', 'Due to COVID issue', 1, '2022-02-07 11:36:00', 0, NULL, 0, NULL, 1),
(3812, 7692, 'Study abroad russian cultural center', 'Tellcalliing', '2021-05-26', 12500.00, '2022-01-06', 12500.00, 'Alwarpet', '1', '0 years 7 months', ' Due to COVID issue', 1, '2022-02-07 11:44:57', 0, NULL, 0, NULL, 1),
(3813, 7694, 'Sharekhan private limited', 'Pachayappas college', '2021-05-12', 14500.00, '2021-11-20', 12000.00, 'Amjikarai', '1', '0 years 6 months', ' Covid lockdown ', 1, '2022-02-07 11:47:46', 0, NULL, 0, NULL, 1),
(3814, 7695, 'Sriram life insurance', 'Caller', '2021-08-07', 10000.00, '2022-01-10', 10000.00, 'Kodambakkam', '1', '0 years 5 months', ' Salary issue', 1, '2022-02-07 11:48:12', 0, NULL, 0, NULL, 1),
(3815, 7689, 'Sri murugan travels agency', 'Tellecaller', '2021-08-22', 10000.00, '2022-01-11', 10000.00, 'Vadapalani', '1', '0 years 4 months', ' Long distance', 1, '2022-02-07 12:21:31', 0, NULL, 0, NULL, 1),
(3816, 7691, 'housing & property', 'bm', '2021-12-01', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '0 years 2 months', ' due to income', 1, '2022-02-07 12:32:09', 0, NULL, 0, NULL, 1),
(3817, 7697, 'Grand holidays', 'Telecaller', '2019-05-10', 10000.00, '2020-01-15', 14000.00, 'Tenampet', '1', '0 years 8 months', 'Some health issues', 1, '2022-02-07 12:55:46', 0, NULL, 0, NULL, 1),
(3818, 7700, 'Lemon peak', 'Customer care representative', '2021-08-05', 24.00, '2022-02-05', 25000.00, 'Nungambakkam', '1', '0 years 6 months', ' Due to night shift', 1, '2022-02-07 02:39:18', 0, NULL, 0, NULL, 1),
(3819, 7696, 'oto', 'cao', '2021-08-04', 20000.00, '2022-01-05', 20000.00, 'chennai', '1', '0 years 5 months', 'work pressuer', 7, '2022-02-07 03:12:57', 0, NULL, 0, NULL, 1),
(3820, 7707, 'Muthoot finance', 'Junior relationship executive', '2019-03-11', 13000.00, '2020-06-30', 16000.00, 'Tiruttani', '1', '1 years 3 months', 'Due to covid-19 So I was relieving the job.. ', 1, '2022-02-08 10:53:58', 0, NULL, 0, NULL, 1),
(3821, 7707, 'Sri munipachaiyappan Textiles pvt ltd', 'HR Executive', '2020-10-03', 16000.00, '1970-01-01', 16000.00, 'Ranipet ', '2', '1 years 4 months', 'Currently working in notice period', 1, '2022-02-08 10:55:09', 0, NULL, 0, NULL, 1),
(3822, 7709, 'daimler', 'engine assembler', '2021-10-17', 14000.00, '2022-02-08', 14000.00, 'chennai', '2', '0 years 3 months', ' ', 1, '2022-02-08 11:23:50', 0, NULL, 0, NULL, 1),
(3823, 7712, 'ynot soursing', 'telesales', '2021-03-08', 15000.00, '2021-10-29', 15000.00, 'tirupur', '1', '0 years 7 months', ' due to location', 1, '2022-02-08 12:08:42', 0, NULL, 0, NULL, 1),
(3824, 7702, 'Ibrisk consultant ', 'Collection telecalling ', '2019-01-15', 11000.00, '2020-01-31', 15000.00, 'Kodambakkam', '1', '1 years 0 months', ' Family problem ', 1, '2022-02-08 12:26:15', 0, NULL, 0, NULL, 1),
(3825, 7713, 'Allset Buisness solutions pvt ltd', 'Telecaller service agent', '2021-09-12', 9000.00, '2022-01-18', 4671.00, 'Thousand lights', '1', '0 years 4 months', 'Salary is low ', 1, '2022-02-08 01:59:32', 0, NULL, 0, NULL, 1),
(3826, 7714, 'Team Lease Service Private Limited', 'Telecalling Sales Executive', '2020-09-23', 14000.00, '2021-12-10', 14000.00, 'CHENNAI', '1', '1 years 2 months', ' Due to COVID company was closed financially affected ', 1, '2022-02-08 02:38:02', 0, NULL, 0, NULL, 1),
(3827, 7718, 'farm product', 'sales', '2020-09-02', 80000.00, '2021-10-31', 15000.00, 'didunkak', '1', '1 years 1 months', ' due to salary', 1, '2022-02-08 04:48:34', 0, NULL, 0, NULL, 1),
(3828, 7719, 'Gobumpr myTvs ', 'Telesales executive', '2021-03-01', 16500.00, '2022-02-05', 16500.00, 'Chennai guindy', '1', '0 years 11 months', ' Bangalore process, so had Salary issue when lockdown getting implemented in bangalore ', 1, '2022-02-08 05:37:04', 0, NULL, 0, NULL, 1),
(3829, 7724, 'POLICYBAZAAR.COM', 'ASC', '2020-02-02', 18000.00, '1970-01-01', 18000.00, 'Gurugram ', '2', '2 years 0 months', ' Due to covid & family situation, so I\'m not able to travel  Haryana so that\'s y ', 1, '2022-02-09 10:16:10', 0, NULL, 0, NULL, 1),
(3830, 7711, 'flipkart', 'sales', '2021-06-02', 12000.00, '2021-08-30', 12000.00, 'chennai', '1', '0 years 2 months', 'due to wfh', 58, '2022-02-09 10:36:10', 0, NULL, 0, NULL, 1),
(3831, 7726, 'Reliance ', 'Sales marketing', '2016-03-07', 13500.00, '2018-01-04', 15000.00, 'Nungambakkam', '1', '1 years 9 months', 'Higher studies', 1, '2022-02-09 11:09:42', 0, NULL, 0, NULL, 1),
(3832, 7720, 'HDFC', 'Phone Banking', '2018-04-04', 14000.00, '2020-09-04', 20000.00, 'Chennai', '1', '2 years 5 months', ' Health Issue', 1, '2022-02-09 12:21:32', 0, NULL, 0, NULL, 1),
(3833, 7720, 'APC of Kotak Mahindra life Insurance', 'Telecaller', '2017-05-27', 9000.00, '2018-03-30', 10000.00, 'Chennai', '1', '0 years 10 months', 'Got selected in HDFC', 1, '2022-02-09 12:23:05', 0, NULL, 0, NULL, 1),
(3834, 7717, 'Sight spectrum technology pvt Ltd', 'IT recruiter', '2021-08-18', 12000.00, '2022-01-22', 12000.00, 'thanjavur', '1', '0 years 5 months', ' Shift not suit', 1, '2022-02-09 12:29:02', 0, NULL, 0, NULL, 1),
(3835, 7729, 'Annai anbalayaa trust', 'Hr , telecallers', '2017-06-09', 8.00, '1970-01-01', 15.00, 'Menjur', '2', '4 years 8 months', 'No salary Ingress , over Pressure\n', 1, '2022-02-09 12:30:16', 0, NULL, 0, NULL, 1),
(3836, 7722, 'Apollo pharmacy ', 'Pharmacy aide ', '2020-02-01', 9000.00, '2021-11-01', 12000.00, 'Nagercoil ', '1', '1 years 9 months', ' Time and health issues ', 1, '2022-02-09 05:47:39', 0, NULL, 0, NULL, 1),
(3837, 7735, 'Kapico motors', 'Sales coordinator', '2012-07-02', 10000.00, '2014-01-01', 15000.00, 'Chennai', '1', '1 years 5 months', ' Marriage ', 1, '2022-02-09 06:28:21', 0, NULL, 0, NULL, 1),
(3838, 7737, 'Bharath matrimony', 'Service off', '2021-08-12', 10500.00, '2022-01-05', 10500.00, 'Guindy', '1', '0 years 4 months', ' ', 1, '2022-02-10 10:30:05', 0, NULL, 0, NULL, 1),
(3839, 7738, 'Bharat matrimony', 'Service officer', '2021-08-12', 10500.00, '2022-01-05', 10500.00, 'Guindy', '1', '0 years 4 months', ' ', 1, '2022-02-10 10:45:49', 0, NULL, 0, NULL, 1),
(3840, 7740, 'Hdfc limited', 'Junior loan officer', '2021-07-22', 15000.00, '2021-12-15', 10000.00, 'Vadapalani', '1', '0 years 4 months', ' Health issues.', 1, '2022-02-10 12:19:09', 0, NULL, 0, NULL, 1),
(3841, 7741, 'Babjob.com', 'HR recruitment ', '2015-11-11', 180000.00, '2016-11-17', 18000.00, 'Bangalore ', '1', '1 years 0 months', ' Due to marriage ', 1, '2022-02-10 01:49:56', 0, NULL, 0, NULL, 1),
(3842, 7744, 'Ishwarya tvs', 'Customer care executive ', '2015-07-01', 5000.00, '2017-03-01', 8000.00, 'Rajapalayam ', '1', '1 years 7 months', ' Married Relocate to Chennai\n', 1, '2022-02-10 04:03:31', 0, NULL, 0, NULL, 1),
(3843, 7748, 'HSBC', 'BPO', '2021-06-01', 8.00, '2021-09-15', 13000.00, 'Chennai', '1', '0 years 3 months', ' Home Problem', 1, '2022-02-11 10:34:27', 0, NULL, 0, NULL, 1),
(3844, 7749, 'wedding butterflies llp', 'customer support ', '2021-03-01', 14000.00, '2021-11-30', 14000.00, 'vadapalani', '1', '0 years 9 months', ' company closed ', 1, '2022-02-11 12:16:06', 0, NULL, 0, NULL, 1),
(3845, 7752, 'HDB Financial services', 'Tellcaller', '2020-03-10', 10000.00, '2022-02-10', 13000.00, 'Aminjikarai', '1', '1 years 11 months', ' Time problem ', 1, '2022-02-11 12:29:18', 0, NULL, 0, NULL, 1),
(3846, 7751, 'HDB Financial services', 'Tellcaller', '2020-03-10', 10000.00, '2022-02-10', 13000.00, 'Aminjikari', '1', '1 years 11 months', ' Time problem...', 1, '2022-02-11 12:39:16', 0, NULL, 0, NULL, 1),
(3847, 7754, 'Justdial', 'Senior Telecalling executive', '2018-05-21', 12000.00, '2021-11-30', 17000.00, 'Chennaj', '1', '3 years 6 months', ' Health conditions', 1, '2022-02-11 02:57:19', 0, NULL, 0, NULL, 1),
(3848, 7759, 'Ess vee ente prises', 'Admin', '2021-06-01', 7.00, '1970-01-01', 18000.00, 'Perambur', '2', '0 years 8 months', ' ', 1, '2022-02-12 11:35:13', 0, NULL, 0, NULL, 1),
(3849, 1481, 'IMarque Solutions Pvt Ltd', 'Telesales', '2017-06-14', 15000.00, '2018-04-30', 17000.00, 'TNAGAR', '1', '0 years 10 months', 'process is over', 58, '2022-02-12 04:26:56', 0, NULL, 0, NULL, 1),
(3850, 7762, 'TAX CONSULTANT', 'bda', '2017-03-06', 15000.00, '2021-03-12', 23000.00, 'chennai', '1', '4 years 0 months', ' personal', 1, '2022-02-12 04:42:20', 0, NULL, 0, NULL, 1),
(3851, 7763, 'just dial', 'tele marketing executive', '2021-09-20', 25000.00, '1970-01-01', 25000.00, 'chennai', '2', '0 years 4 months', 'for carier growth', 1, '2022-02-12 05:06:17', 0, NULL, 0, NULL, 1),
(3852, 7766, 'Amazon seller service Pvt Ltd', 'Problem solver', '2020-07-08', 10000.00, '1970-01-01', 14000.00, 'Puduvoyul', '2', '1 years 7 months', ' Want to learn different kind Of Finance sectors like and that is more helpfull develop my skills ', 1, '2022-02-13 10:13:11', 0, NULL, 0, NULL, 1),
(3853, 7766, 'Amazon seller service Pvt Ltd', 'Problem solver', '2020-07-08', 10000.00, '1970-01-01', 14000.00, 'Puduvoyul', '2', '1 years 7 months', 'Want To Learn Different Kind Of Finance Sectors Like And That Is More Helpfull Develop My Skills', 1, '2022-02-13 10:15:20', 1, '2022-02-13 10:15:43', 0, NULL, 0),
(3854, 7768, 'sundaram finance', 'cre', '2020-08-03', 14000.00, '2021-11-30', 17000.00, 'chennai', '1', '1 years 3 months', '  persoanl reason', 1, '2022-02-14 09:47:29', 0, NULL, 0, NULL, 1),
(3855, 7770, 'Apollo hospital', 'Telecaller and admin ', '2019-11-01', 15000.00, '2021-07-27', 18000.00, 'Greams road ', '1', '1 years 8 months', 'Covid issue ', 1, '2022-02-14 11:06:32', 0, NULL, 0, NULL, 1),
(3856, 7772, 'Haoda payment solution', 'Game design & developer', '2021-09-06', 12000.00, '2021-12-26', 12000.00, 'Anna nagar (west)', '1', '0 years 3 months', ' Salary issue', 1, '2022-02-14 11:51:29', 0, NULL, 0, NULL, 1),
(3857, 7773, 'Star health  insurance ', 'Sales ', '2022-02-14', 12000.00, '1970-01-01', 16000.00, 'Chennai ', '2', '0 years 0 months', ' ', 1, '2022-02-14 12:03:47', 0, NULL, 0, NULL, 1),
(3858, 7773, 'Star health ', 'Sales ', '2021-01-04', 12000.00, '1970-01-01', 16000.00, 'Chennai ', '2', '1 years 1 months', 'Carrier growth', 1, '2022-02-14 12:06:47', 0, NULL, 0, NULL, 1),
(3859, 7771, 'accenture', 'new date processing representative', '2021-07-14', 150000.00, '2022-02-14', 15000.00, 'chennai', '2', '0 years 7 months', ' contract is going to end', 1, '2022-02-14 12:49:32', 0, NULL, 0, NULL, 1),
(3860, 7776, 'Excela technology', 'Processor cum HR', '2020-01-21', 11500.00, '1970-01-01', 15000.00, 'Kilpauk', '2', '2 years 0 months', ' Learn for some', 1, '2022-02-14 02:50:33', 0, NULL, 0, NULL, 1),
(3861, 7781, 'JJ infra India Pvt Ltd', 'Business development manager', '2021-12-01', 25000.00, '1970-01-01', 25000.00, 'Madhapur', '2', '0 years 2 months', ' Looking for better opportunity', 1, '2022-02-14 08:31:15', 0, NULL, 0, NULL, 1),
(3862, 7781, 'BBG', 'Relationship Advisor', '2019-10-04', 12000.00, '2021-11-30', 20000.00, 'LB nagar', '1', '2 years 1 months', 'Joined other company', 1, '2022-02-14 08:33:09', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3863, 7781, 'AR TRADERS', 'Sales incharge', '2016-08-10', 10000.00, '2019-08-01', 18000.00, 'Nizamabad', '1', '2 years 11 months', 'Shifted to Hyderabad', 1, '2022-02-14 08:35:29', 0, NULL, 0, NULL, 1),
(3864, 7781, 'Exide life insurance', 'Financial Advisor', '2014-04-03', 8000.00, '2016-07-04', 11000.00, 'Nizamabad', '1', '2 years 3 months', 'Got job at AR TRADERS', 1, '2022-02-14 08:37:43', 0, NULL, 0, NULL, 1),
(3865, 7783, 'HDB financial services', 'Marketing coordinator', '2020-02-20', 14.00, '2022-01-20', 14.00, 'Chennai', '1', '1 years 11 months', ' Growth', 1, '2022-02-15 11:48:10', 0, NULL, 0, NULL, 1),
(3866, 7785, 'Tata Motors Finance Limited', 'CRE', '2019-09-15', 13000.00, '2021-08-21', 15000.00, 'Anna nagar', '1', '1 years 11 months', ' salary low', 1, '2022-02-15 12:18:15', 0, NULL, 0, NULL, 1),
(3867, 7785, 'SHRIRAM TRANSPORT FINANCE COMPANY LIMITED', 'JRE', '2017-11-15', 10600.00, '2019-11-14', 13800.00, 'MARAIMALAI NAGAR', '1', '1 years 11 months', 'Promotion issue', 1, '2022-02-15 12:20:10', 0, NULL, 0, NULL, 1),
(3868, 7785, 'Matrimony .com', 'cRE', '2017-02-09', 8500.00, '2017-09-15', 9500.00, 'GUINDY', '1', '0 years 7 months', 'nil', 1, '2022-02-15 12:21:47', 0, NULL, 0, NULL, 1),
(3869, 7786, 'Kalyana kanavu matrimony', 'Asst manager', '2019-11-04', 13.00, '2020-09-30', 17500.00, 'Avadi', '1', '0 years 10 months', 'For my marriage', 1, '2022-02-15 12:53:11', 0, NULL, 0, NULL, 1),
(3870, 7787, 'Freightify', 'Marketing intern', '2021-09-16', 15000.00, '2022-01-20', 15000.00, 'Chennai', '1', '0 years 4 months', ' No Vacany Is Availability ', 1, '2022-02-15 01:33:28', 0, NULL, 0, NULL, 1),
(3871, 7788, 'Eureka outsourcing solutions ', 'Customer Support Executive ', '2021-01-01', 18000.00, '2021-06-07', 13500.00, 'Perungudi ', '1', '0 years 5 months', ' Father Passed away ', 1, '2022-02-15 02:57:21', 0, NULL, 0, NULL, 1),
(3872, 7789, 'Rane Madras Limited', 'MIS EXECUTIVE', '2019-02-04', 13500.00, '1970-01-01', 14600.00, 'Varanavasi kanchipuram', '2', '3 years 0 months', ' Need some Changes and salary hike', 1, '2022-02-16 10:58:59', 0, NULL, 0, NULL, 1),
(3873, 7791, 'Axis bank securities ', 'Relationship officer ', '2020-05-03', 12000.00, '2021-08-17', 13000.00, 'Tambaram ', '1', '1 years 3 months', ' Sick', 1, '2022-02-16 11:45:32', 0, NULL, 0, NULL, 1),
(3874, 7793, 'idfc', 'gro', '2019-08-05', 12000.00, '2021-09-30', 20000.00, 'Chennai ', '1', '2 years 1 months', 'met with accident', 1, '2022-02-16 12:08:16', 0, NULL, 0, NULL, 1),
(3875, 7796, 'Poonawala Finance', 'Relationship Manager', '2021-01-02', 21000.00, '2022-02-01', 21000.00, 'Mount Road', '1', '1 years 0 months', ' Company closed', 1, '2022-02-16 12:57:40', 0, NULL, 0, NULL, 1),
(3876, 7794, 'trust', 'caller', '2022-01-03', 9000.00, '2022-01-01', 9000.00, 'anakaptur', '1', '0 years 0 months', 'personal', 7, '2022-02-16 01:26:00', 0, NULL, 0, NULL, 1),
(3877, 7798, 'hdb  finance', 'sales', '2021-02-17', 12000.00, '2022-02-16', 15000.00, 'hyderabad', '1', '0 years 11 months', 'less salary', 1, '2022-02-16 06:29:38', 0, NULL, 0, NULL, 1),
(3878, 7799, 'Zealous ', 'Customer support executive ', '2017-11-22', 13000.00, '2020-02-01', 13000.00, 'Chennai ', '1', '2 years 2 months', ' Lay off company', 1, '2022-02-17 10:42:29', 0, NULL, 0, NULL, 1),
(3879, 7802, 'Gcc', 'Data entry', '2020-02-17', 15000.00, '2022-02-02', 15000.00, 'T.nagar', '1', '1 years 11 months', ' Contract ends', 1, '2022-02-17 11:21:40', 0, NULL, 0, NULL, 1),
(3880, 7807, 'Ms agencies ', 'Sales executive ', '2021-06-10', 3.20, '2021-09-30', 3.20, 'Hyderabad ', '1', '0 years 3 months', ' The company got wind up', 1, '2022-02-17 04:23:34', 0, NULL, 0, NULL, 1),
(3881, 7808, 'tindermin', 'team leader', '2018-03-06', 16000.00, '2022-02-02', 18000.00, 'solapur', '1', '3 years 10 months', ' its big opportunity , and to achieve the long term goals', 1, '2022-02-17 04:42:45', 0, NULL, 0, NULL, 1),
(3882, 7812, 'Webszilla Technologies ', 'Content writer ', '2013-11-01', 17000.00, '2014-10-31', 17000.00, 'Chennai ', '1', '0 years 11 months', ' ', 1, '2022-02-17 08:21:38', 0, NULL, 0, NULL, 1),
(3883, 7815, 'Bharath matrimony', 'Service officer ', '2021-08-12', 31.00, '2022-01-31', 11000.00, 'Guindy', '1', '0 years 5 months', ' Less salary high timing weekly Sundays work continuesly', 1, '2022-02-18 10:16:24', 0, NULL, 0, NULL, 1),
(3884, 7814, 'Flendzz technologies', 'Social media strategist', '2021-09-21', 200000.00, '1970-01-01', 200000.00, 'Kilpauk, chennai', '2', '0 years 4 months', ' Career development. I need to learn more', 1, '2022-02-18 11:05:56', 0, NULL, 0, NULL, 1),
(3885, 7816, 'sriram', 'mis', '2011-12-18', 5500.00, '1970-01-01', 17500.00, 'chennai', '2', '10 years 2 months', 'growth', 7, '2022-02-18 11:30:29', 0, NULL, 0, NULL, 1),
(3886, 7819, 'Au financial corporation', 'Office executive', '2020-10-16', 15000.00, '2022-01-01', 15000.00, 'Kodambakkam', '1', '1 years 2 months', ' Personal issues', 1, '2022-02-18 11:50:31', 0, NULL, 0, NULL, 1),
(3887, 7818, 'tata qconnect', 'sales executive', '2018-10-23', 13000.00, '2020-03-04', 13000.00, 'hyderabad', '1', '1 years 4 months', ' due to covid', 1, '2022-02-18 11:56:50', 0, NULL, 0, NULL, 1),
(3888, 7823, 'Digital Deepak Internship Program', 'Digital Marketing Intern ', '2020-10-01', 10000.00, '2021-03-01', 10000.00, 'Remote', '1', '0 years 4 months', ' This is the internship program of duration 4 months', 1, '2022-02-18 12:26:44', 0, NULL, 0, NULL, 1),
(3889, 7823, 'My little Moppet', 'Digital Marketing Intern', '2021-05-01', 10000.00, '2021-07-31', 10000.00, 'Madurai', '1', '0 years 3 months', 'Due to lockdown', 1, '2022-02-18 12:28:18', 0, NULL, 0, NULL, 1),
(3890, 7823, 'Textrahh Technology', 'Social Media Manager', '2021-10-31', 15000.00, '2022-01-31', 15000.00, 'Remote', '1', '0 years 3 months', 'Due to the communication problems', 1, '2022-02-18 12:31:49', 1, '2022-02-18 12:32:46', 0, NULL, 1),
(3891, 7822, 'kotak mahendra', 'sales', '2017-03-01', 15000.00, '2020-11-30', 25000.00, 'banglore', '1', '3 years 9 months', ' due to better salary', 1, '2022-02-18 12:43:42', 0, NULL, 0, NULL, 1),
(3892, 7822, 'kotak mahendra', 'sales', '2017-03-01', 15000.00, '2020-11-30', 25000.00, 'banglore', '1', '3 years 9 months', ' due to better salary', 1, '2022-02-18 12:43:42', 0, NULL, 0, NULL, 1),
(3893, 7822, 'kotak mahendra', 'sales', '2017-03-01', 15000.00, '2020-11-30', 25000.00, 'banglore', '1', '3 years 9 months', ' due to better salary', 1, '2022-02-18 12:43:42', 0, NULL, 0, NULL, 1),
(3894, 7824, 'teamlees', 'bre', '2019-08-01', 11000.00, '2021-12-27', 13500.00, 'hyderabad', '1', '2 years 4 months', 'due to carrier growth', 1, '2022-02-18 01:00:49', 0, NULL, 0, NULL, 1),
(3895, 7824, 'teamlees', 'bre', '2019-08-01', 11000.00, '2021-12-27', 13500.00, 'hyderabad', '1', '2 years 4 months', 'due to carrier growth', 1, '2022-02-18 01:00:49', 0, NULL, 0, NULL, 1),
(3896, 7825, 'Teamlease', 'Sales Exective', '2021-02-18', 30.00, '2021-08-08', 13443.00, 'Thiruvannamalai', '1', '0 years 5 months', ' Covid', 1, '2022-02-18 02:47:09', 0, NULL, 0, NULL, 1),
(3897, 7826, 'String information ', 'Process associate ', '2018-12-10', 11000.00, '2020-01-27', 11000.00, 'Dlf', '1', '1 years 1 months', 'Father\'s illness', 1, '2022-02-18 06:15:58', 0, NULL, 0, NULL, 1),
(3898, 7827, 'HDB financial services Ltd', 'Relationship officer', '2018-11-11', 170000.00, '2020-10-18', 170000.00, 'Hyderabad', '1', '1 years 11 months', ' ', 1, '2022-02-18 06:41:14', 0, NULL, 0, NULL, 1),
(3899, 7832, 'Waves solution', 'Telecaller', '2021-07-14', 12000.00, '2021-12-30', 12000.00, 'Saidapet', '1', '0 years 5 months', ' Sick\n', 1, '2022-02-19 11:07:21', 0, NULL, 0, NULL, 1),
(3900, 7837, 'Hightech blocks', 'React ja developer', '2021-01-19', 15000.00, '1970-01-01', 22000.00, 'Hyderabad', '2', '1 years 1 months', ' Work from home method', 1, '2022-02-19 06:06:27', 0, NULL, 0, NULL, 1),
(3901, 7839, 'Keechery Engineering Company', 'Planning officer', '2017-08-13', 13000.00, '2018-03-16', 13000.00, 'Anna Nagar, chennai', '1', '0 years 7 months', 'Relieved due to Higher studies', 1, '2022-02-20 01:28:12', 0, NULL, 0, NULL, 1),
(3902, 7840, 'Cube 45 ', 'Content Writer ', '2021-03-10', 25.00, '2022-02-04', 13000.00, 'Chennai ', '2', '0 years 11 months', ' - ', 1, '2022-02-21 08:24:00', 0, NULL, 0, NULL, 1),
(3903, 7830, 'Splash', 'Sales executive', '2017-12-08', 14000.00, '2018-10-10', 14000.00, 'Velacherry', '1', '0 years 10 months', 'Splash company itself closed', 1, '2022-02-21 09:49:20', 0, NULL, 0, NULL, 1),
(3904, 7859, 'amazon development centre pvt limited', 'digital associate', '2020-12-14', 250000.00, '2021-11-12', 250000.00, 'chennai', '1', '0 years 10 months', ' The role was a contractual one. hence left the job', 1, '2022-02-22 05:30:05', 0, NULL, 0, NULL, 1),
(3905, 7861, 'Srivi Sai IAS academy', 'Reasoning trainer', '2019-02-20', 10000.00, '2021-07-08', 12000.00, 'Srivilliputhur', '1', '2 years 4 months', 'Personal reasons', 1, '2022-02-22 06:10:29', 1, '2022-02-22 06:11:09', 0, NULL, 1),
(3906, 7861, 'Arms connect', 'Financial services executive', '2021-12-01', 12000.00, '1970-01-01', 12000.00, 'Chennai', '2', '0 years 2 months', 'Family issues', 1, '2022-02-22 06:12:41', 0, NULL, 0, NULL, 1),
(3907, 7858, 'Mmc Infotech Pvt Ltd', 'Customer service executive', '2019-12-17', 10000.00, '2021-12-10', 10000.00, 'Pattinampakkam', '1', '1 years 11 months', ' No increment ', 1, '2022-02-22 06:29:34', 0, NULL, 0, NULL, 1),
(3908, 7868, 'Tranxit technology', 'Seo analyst', '2021-10-13', 5000.00, '1970-01-01', 9000.00, 'Chennai', '2', '0 years 4 months', ' ', 1, '2022-02-23 10:03:06', 0, NULL, 0, NULL, 1),
(3909, 7871, 'teleperformance', 'csa', '2019-07-07', 8000.00, '2021-02-12', 11500.00, 'ambattur', '1', '1 years 7 months', ' due to process  shifted to other location', 1, '2022-02-23 10:36:27', 0, NULL, 0, NULL, 1),
(3910, 7876, 'UnicornAILabs', 'Front end developer', '2021-09-01', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '0 years 5 months', ' ', 1, '2022-02-23 11:28:23', 0, NULL, 0, NULL, 1),
(3911, 7872, 'HDB fs', 'Sales officer', '2021-02-15', 15000.00, '2022-02-19', 15000.00, 'Arumbakkam', '1', '1 years 0 months', ' Salary problem then \nMiss saleing', 1, '2022-02-23 11:37:01', 0, NULL, 0, NULL, 1),
(3912, 7879, 'Bharath matrimony ', 'Service officer ', '2021-08-12', 12.08, '2022-02-03', 11000.00, 'Guindy ', '1', '0 years 5 months', ' ', 1, '2022-02-23 11:47:57', 0, NULL, 0, NULL, 1),
(3913, 7867, 'teknuance info solutions', 'mern stack developer', '2021-07-15', 120000.00, '2022-02-15', 240000.00, 'chennai', '1', '0 years 7 months', ' The company struggled very much due to covid. they were on the verge of closing the company. They could not give us salary. only few people were working in the recent times. everyone started resigning. i resigned too. They said they are closing the company.', 1, '2022-02-23 12:50:16', 1, '2022-02-23 12:51:15', 0, NULL, 1),
(3914, 7863, 'Access bank limited', 'relationship officer', '2021-06-01', 12000.00, '1970-01-01', 12000.00, 'kodabakkam', '2', '0 years 8 months', 'travelling distance', 85, '2022-02-23 03:04:28', 0, NULL, 0, NULL, 1),
(3915, 7886, 'synergy ravo business private ltd', 'Team lead(bajaj &capital finance)', '2020-11-02', 15000.00, '2021-12-31', 16000.00, 'Chennai', '1', '1 years 1 months', 'Personal growth', 60, '2022-02-23 03:46:20', 0, NULL, 0, NULL, 1),
(3916, 7889, 'Fairdinkum Business Services private limited ', 'Digital marketing executive ', '2021-10-04', 18000.00, '2022-03-01', 18000.00, 'Bangalore ', '1', '0 years 4 months', ' Timing', 1, '2022-02-23 03:51:42', 0, NULL, 0, NULL, 1),
(3917, 7873, 'axis bank', 'junior retail officer', '2021-02-19', 12000.00, '2021-10-15', 12000.00, 'hyderabad', '1', '0 years 7 months', ' work timings', 1, '2022-02-23 04:07:41', 0, NULL, 0, NULL, 1),
(3918, 7894, 'team space financial private limited', 'relationship officer', '2018-02-14', 18000.00, '2021-02-24', 21000.00, 'hyderabad', '1', '3 years 0 months', ' working hours and contract', 1, '2022-02-23 04:17:12', 0, NULL, 0, NULL, 1),
(3919, 7891, 'State Bank of India credit card section', 'Branch relationship executive', '2021-03-21', 13.00, '2022-02-14', 14.00, 'Egmore', '1', '0 years 10 months', ' To much of travel time', 1, '2022-02-23 04:17:57', 0, NULL, 0, NULL, 1),
(3920, 7893, 'Sbi  credit card', 'Sales executive', '2021-11-02', 14000.00, '2022-02-15', 11000.00, 'Egmore', '1', '0 years 3 months', ' Not comfortable with the job', 1, '2022-02-23 04:25:58', 0, NULL, 0, NULL, 1),
(3921, 7892, 'SBI cards', 'Sales executive', '2021-10-02', 14000.00, '2022-01-25', 14000.00, 'Ambattur estate', '1', '0 years 3 months', 'Finding for better job', 1, '2022-02-23 04:29:00', 0, NULL, 0, NULL, 1),
(3922, 7895, 'Techmahindra', 'Associate customer support', '2020-03-11', 15000.00, '2021-10-31', 14500.00, 'Chennai, Ambattur', '1', '1 years 7 months', ' Pandemic situation family issues', 1, '2022-02-23 05:19:29', 0, NULL, 0, NULL, 1),
(3923, 7882, 'muthood finance', 'assistant manager', '2018-06-05', 20000.00, '2022-02-23', 20000.00, 'hyderabad', '2', '3 years 8 months', ' ', 1, '2022-02-23 07:02:40', 0, NULL, 0, NULL, 1),
(3924, 7898, 'Balaji skill ventures pvt ltd ', 'Telecaller, MIS Coordinator ', '2020-05-25', 10000.00, '1970-01-01', 13000.00, 'Thanjavur ', '2', '1 years 8 months', ' Covid issue company closed ', 1, '2022-02-23 09:56:58', 0, NULL, 0, NULL, 1),
(3925, 7904, 'Meenakshi mission hospital', 'Billing', '2019-04-12', 9000.00, '2021-02-22', 9000.00, 'Madurai', '1', '1 years 10 months', ' Due to location change', 1, '2022-02-24 11:13:28', 0, NULL, 0, NULL, 1),
(3926, 7902, 'TVS', 'DEO', '2021-11-10', 15000.00, '2022-01-22', 15000.00, 'Kuthambakkam', '1', '0 years 3 months', 'Long Travel , work depression', 1, '2022-02-24 11:25:34', 0, NULL, 0, NULL, 1),
(3927, 7906, 'Bannari Amman sugars', 'Mis executive', '2020-01-02', 15000.00, '2022-02-18', 20000.00, 'Kallakurichi', '1', '2 years 1 months', ' Finished the contract', 1, '2022-02-24 12:14:44', 0, NULL, 0, NULL, 1),
(3928, 7907, 'MEP training center, Thanjavur', 'HR staff', '2021-01-07', 7500.00, '2022-02-02', 10000.00, 'Thanjavur', '1', '1 years 0 months', 'Due to health issues', 1, '2022-02-24 12:25:19', 0, NULL, 0, NULL, 1),
(3929, 7910, 'Quickapps', 'Software support', '2022-01-01', 25000.00, '1970-01-01', 25000.00, 'bangalore', '2', '0 years 1 months', 'For better Opportunity', 84, '2022-02-24 01:14:10', 0, NULL, 0, NULL, 1),
(3930, 7901, 'Tag technology services ', 'Ui/up design / developer', '2021-06-28', 8000.00, '1970-01-01', 8000.00, 'Kulathur, Chennai ', '2', '0 years 7 months', ' ', 1, '2022-02-24 02:46:14', 0, NULL, 0, NULL, 1),
(3931, 7901, 'Tag technology services ', 'Ui/ux  design and developer ', '2021-06-28', 8000.00, '1970-01-01', 8000.00, 'Chennai ', '2', '0 years 7 months', 'Traveling and salary', 1, '2022-02-24 02:47:25', 0, NULL, 0, NULL, 1),
(3932, 7835, 'STAR HEALTH AND ALLIED INSURANCE ', 'TELECALLING', '2021-06-12', 12000.00, '2022-01-05', 15000.00, 'HYDERABAD', '1', '0 years 6 months', 'WORK TIMINGS', 87, '2022-02-24 03:53:19', 0, NULL, 0, NULL, 1),
(3933, 7903, 'Bankzone. Pvt. Ltd', 'Telecaller', '2018-05-12', 12000.00, '2020-11-11', 12000.00, 'Nungambakkam', '1', '2 years 5 months', ' ', 1, '2022-02-25 09:00:59', 0, NULL, 0, NULL, 1),
(3934, 7903, ' Ranstad india pvt ltd', 'Telecaller', '2020-08-20', 18000.00, '2022-02-02', 18000.00, 'Koyambedu', '1', '1 years 5 months', 'Timing and ever sunday in office', 1, '2022-02-25 09:03:47', 0, NULL, 0, NULL, 1),
(3935, 7919, 'reliance', 'sales officer', '2021-02-15', 3.00, '1970-01-01', 3.00, 'banglore', '2', '1 years 0 months', 'carriere, deveplopment', 1, '2022-02-25 10:45:31', 0, NULL, 0, NULL, 1),
(3936, 7920, 'Advan corp serve', 'Data analyst', '2019-07-17', 12000.00, '2021-07-03', 15000.00, 'Chennai', '1', '1 years 11 months', ' I want to growth my career and skills.i want to learn more new things.', 1, '2022-02-25 10:52:38', 0, NULL, 0, NULL, 1),
(3937, 7286, 'SBI ', 'ASSOSIATE', '2021-11-06', 15500.00, '2022-01-05', 15500.00, 'BANGLORE', '1', '0 years 1 months', 'MOTHER WAS AFFECTED BY COVID ', 87, '2022-02-25 10:54:25', 0, NULL, 0, NULL, 1),
(3938, 7923, 'Reliance retail', 'Customer service assistant', '2018-04-04', 10000.00, '2019-03-03', 12000.00, 'T.nagar', '1', '0 years 10 months', ' ', 1, '2022-02-25 12:02:50', 0, NULL, 0, NULL, 1),
(3939, 7925, 'Matrimony.com', 'Senior Relationship manager', '2021-06-07', 30000.00, '2022-01-31', 30000.00, 'Chennai', '1', '0 years 7 months', ' Personal Family Issues', 1, '2022-02-25 12:21:32', 0, NULL, 0, NULL, 1),
(3940, 7925, 'N2S Technologies', 'International Sales Executive', '2020-09-01', 30000.00, '2021-05-14', 30000.00, 'Chennai', '1', '0 years 8 months', 'Process Closed due to Covid-19', 1, '2022-02-25 12:22:53', 0, NULL, 0, NULL, 1),
(3941, 7925, 'Vakilsearch', 'Senior Business Development Executive', '2018-08-13', 25000.00, '2020-08-21', 28000.00, 'Chennai', '1', '2 years 0 months', 'Issues in salary due to covid-19', 1, '2022-02-25 12:24:23', 0, NULL, 0, NULL, 1),
(3942, 7925, 'Justdial Ltd', 'Tele Marketing Executive', '2017-08-01', 23000.00, '2018-08-03', 25000.00, 'Chennai', '1', '1 years 0 months', 'For carrier growth', 1, '2022-02-25 12:25:47', 0, NULL, 0, NULL, 1),
(3943, 7925, 'Omega Heath care', 'Senior AR caller', '2015-03-09', 18000.00, '2017-05-31', 23000.00, 'Chennai', '1', '2 years 2 months', 'Health issues due to night shift', 1, '2022-02-25 12:27:05', 0, NULL, 0, NULL, 1),
(3944, 7926, 'Bank zone pvt Ltd', 'Telecallee', '2018-08-23', 12000.00, '2020-02-20', 12000.00, 'Nungambakkam', '1', '1 years 5 months', ' ', 1, '2022-02-25 01:24:05', 0, NULL, 0, NULL, 1),
(3945, 7926, 'Ranstad india pvt ltd', 'Telecaller', '2020-08-27', 18000.00, '2022-02-02', 18000.00, 'Koyambedu', '1', '1 years 5 months', 'Timing and salad packages', 1, '2022-02-25 01:25:48', 0, NULL, 0, NULL, 1),
(3946, 7929, 'HDB FINANCIAL SERVICES', 'Senior telecaller', '2019-06-19', 13500.00, '2021-11-03', 13500.00, 'Thousands light', '1', '2 years 4 months', ' Salary issues ', 1, '2022-02-25 04:02:33', 0, NULL, 0, NULL, 1),
(3947, 7931, 'fresher', 'Fresher', '2022-02-26', 0.00, '2022-02-25', 0.00, 'Fresher', '1', '0 years 0 months', 'fresher', 87, '2022-02-25 05:18:18', 0, NULL, 0, NULL, 1),
(3948, 7935, 'Apollo Computer Education', 'technical trainer', '2010-07-01', 10000.00, '2013-06-30', 13000.00, 'dindigul', '1', '2 years 11 months', ' ', 1, '2022-02-25 07:10:53', 0, NULL, 0, NULL, 1),
(3949, 7935, 'Shine Computers', 'Software Programmer ', '2013-07-01', 15000.00, '2016-05-31', 18000.00, 'dindigul', '1', '2 years 11 months', 'go to next level in my life', 1, '2022-02-25 07:13:09', 0, NULL, 0, NULL, 1),
(3950, 7935, 'VisaganSoft', 'Software Developer', '2016-06-01', 18000.00, '2021-07-31', 25000.00, 'dindigul', '1', '5 years 1 months', 'company corona Lock down period man power Decreased and business down', 1, '2022-02-25 07:17:21', 0, NULL, 0, NULL, 1),
(3951, 7935, 'Teachsub Technologies pvt ltd', 'PHP Developer', '2021-08-01', 25000.00, '2021-12-31', 30000.00, 'chennai', '1', '0 years 4 months', 'project completed and next level improve my self laravel based project', 1, '2022-02-25 07:20:26', 0, NULL, 0, NULL, 1),
(3952, 7939, 'Computer age management service', 'Assistant processing officer', '2017-07-03', 8500.00, '1970-01-01', 11000.00, 'Anna salai', '2', '4 years 7 months', 'Carrier growth ', 1, '2022-02-26 09:58:07', 0, NULL, 0, NULL, 1),
(3953, 7884, 'Skypro technologies  PVT LTD ', 'Desktop Support Engineer ', '2020-05-01', 13000.00, '2021-12-31', 13000.00, 'Thanjavur ', '1', '1 years 8 months', 'I had a family Emergency  and my uncle passaway in accident ', 1, '2022-02-26 10:01:54', 0, NULL, 0, NULL, 1),
(3954, 7941, 'L&T Financial Services ', 'Front Line Officer ', '2019-07-01', 10500.00, '2021-03-14', 12000.00, 'Thanjavur ', '1', '1 years 8 months', 'Personal Health Issue', 1, '2022-02-26 10:59:57', 0, NULL, 0, NULL, 1),
(3955, 7941, 'ARISE Investment & Capital Ltd ', 'Field Officer', '2021-06-01', 12500.00, '2021-12-25', 12500.00, 'Kumbakonam ', '1', '0 years 6 months', 'My Sister Mariage', 1, '2022-02-26 11:01:57', 0, NULL, 0, NULL, 1),
(3956, 7942, 'india first life insurance ', 'phone manager', '2021-07-26', 21000.00, '2022-02-04', 21000.00, 'hyderabad', '2', '0 years 6 months', '6months  contract closed ', 1, '2022-02-26 12:36:48', 0, NULL, 0, NULL, 1),
(3957, 7942, 'maxlife linsurance', 'cce', '2021-12-15', 14000.00, '1970-01-01', 14000.00, 'hyderabad', '2', '0 years 2 months', 'met with an accident', 1, '2022-02-26 12:38:24', 0, NULL, 0, NULL, 1),
(3958, 7930, 'voice process', 'telecaller', '2021-11-01', 12000.00, '1970-01-01', 12000.00, 'chennai', '2', '0 years 3 months', 'timing ', 87, '2022-02-26 02:56:23', 0, NULL, 0, NULL, 1),
(3959, 7951, 'Equitas Small Finance Bank Ltd', 'Credit officer', '2019-10-10', 10000.00, '2021-12-18', 10900.00, 'Tirunelveli', '1', '2 years 2 months', ' I want learn more. I need to develop my career.', 1, '2022-02-28 07:20:36', 0, NULL, 0, NULL, 1),
(3960, 7953, 'Aravind Kumar ', 'T nagar', '2022-03-01', 15000.00, '1970-01-01', 10000.00, 'Chennai ', '2', '0 years 0 months', 'Due to health issues I couldn\'t continue my past work ', 1, '2022-02-28 10:18:03', 0, NULL, 0, NULL, 1),
(3961, 7937, 'Teleperformance ', 'Agent', '2019-12-26', 10500.00, '2021-10-01', 13500.00, 'Ambattur ', '1', '1 years 9 months', ' ', 1, '2022-02-28 11:32:13', 0, NULL, 0, NULL, 1),
(3962, 7347, 'FRESHER', 'FRESHER', '2022-02-28', 0.00, '2022-02-28', 0.00, 'CHENNAI', '1', '0 years 0 months', 'FRESHER', 87, '2022-02-28 11:51:23', 0, NULL, 0, NULL, 1),
(3963, 7960, 'HDB FINANCIAL SERVICE LTD', 'SALES executive', '2018-08-08', 11500.00, '2021-05-21', 15000.00, 'CHENNAI', '1', '2 years 9 months', ' Married', 1, '2022-02-28 12:45:48', 0, NULL, 0, NULL, 1),
(3964, 7959, 'POORVIKA MOBILES', 'SALES EXCUTIVE', '2018-10-11', 10500.00, '2020-07-15', 15000.00, 'CHENNAI', '1', '1 years 9 months', ' Marriage', 1, '2022-02-28 12:54:06', 0, NULL, 0, NULL, 1),
(3965, 7947, 'lucas tvs', 'sales', '2018-08-21', 15000.00, '2022-02-27', 18000.00, 'pondicherr', '1', '3 years 6 months', 'less salary', 87, '2022-02-28 06:55:47', 87, '2022-02-28 06:56:08', 0, NULL, 1),
(3966, 7968, 'Syncfusion software solutions', 'Software engineer', '2019-10-17', 2.50, '2022-03-20', 3.35, 'Chennai', '1', '2 years 5 months', ' Currently we are Switched maui platform. But I\'m interested to work flutter. So only I\'m looking for job in flutter', 1, '2022-03-01 10:16:42', 0, NULL, 0, NULL, 1),
(3967, 7961, 'Sutherland global solutions', 'Non voice process', '2020-10-07', 11000.00, '2021-03-08', 13000.00, 'Chennai', '1', '0 years 5 months', ' Due to health issue so i quit my job', 1, '2022-03-01 10:26:29', 0, NULL, 0, NULL, 1),
(3968, 4356, 'KNV Capital Services ', 'Jr. Market Research Analyst ', '2021-10-07', 15000.00, '1970-01-01', 15000.00, 'K.K Nagar ', '2', '0 years 4 months', 'Salary its not enough to fulfill my basic needs. ', 1, '2022-03-01 10:49:26', 0, NULL, 0, NULL, 1),
(3969, 7970, 'Optim connect marketing solutions pvt ltd', 'Telecaller', '2019-06-10', 10000.00, '2021-08-31', 13.50, 'Srp tool tharamani', '1', '2 years 2 months', ' They not provided pf and salary increment', 1, '2022-03-01 11:11:13', 0, NULL, 0, NULL, 1),
(3970, 7972, 'Syncfusion software private limited', 'Software developer', '2019-12-11', 21000.00, '1970-01-01', 29000.00, 'Chennai', '2', '2 years 2 months', ' For career growth', 1, '2022-03-01 12:11:42', 0, NULL, 0, NULL, 1),
(3971, 7964, ' UITOUX SOLUTIONS', 'Php Developer Trainee', '2021-01-21', 6000.00, '2022-03-01', 8000.00, 'coimbatore', '1', '1 years 1 months', 'Health issues', 84, '2022-03-01 12:12:47', 0, NULL, 0, NULL, 1),
(3972, 7971, 'GRT Jewellery ', 'Sales executive', '2020-02-05', 14000.00, '2022-02-02', 16000.00, 'Valasaravakkam', '1', '1 years 11 months', ' Family issues', 1, '2022-03-01 12:19:46', 0, NULL, 0, NULL, 1),
(3973, 7977, 'Agna', 'Televaller', '2021-12-01', 12000.00, '2022-01-13', 12000.00, 'Porur', '1', '0 years 1 months', ' Travel issue & long distance', 1, '2022-03-01 01:28:29', 0, NULL, 0, NULL, 1),
(3974, 7976, 'idfc credit management ', 'team leader', '2019-10-01', 12000.00, '2021-10-01', 15000.00, 'chennai ', '1', '2 years 0 months', ' Salary limit ', 1, '2022-03-01 02:02:03', 0, NULL, 0, NULL, 1),
(3975, 7985, 'Abu Hatim Co. LLC', 'MIS Executive & Document controller ', '2018-03-18', 55000.00, '2021-12-31', 55000.00, 'Muscat ', '1', '3 years 9 months', ' Twins baby Died ', 1, '2022-03-02 11:09:41', 1, '2022-03-02 11:10:16', 0, NULL, 1),
(3976, 7985, 'Phoenix International WLL ', 'Service Coordinator ', '2016-12-01', 67000.00, '2017-05-31', 67000.00, 'Qatar ', '1', '0 years 6 months', 'Shutdown Job', 1, '2022-03-02 11:13:32', 0, NULL, 0, NULL, 1),
(3977, 7985, 'Ajuba solutions India private limited- Tidel park', 'Charge Entry ', '2015-10-01', 10000.00, '2016-10-01', 10000.00, 'Chennai', '1', '1 years 0 months', 'Due to Got from abroad Job', 1, '2022-03-02 11:15:53', 0, NULL, 0, NULL, 1),
(3978, 7985, 'National Plastic Factory LLC ', 'Data Entry Operator ', '2013-06-01', 48000.00, '2015-08-15', 48000.00, 'Muscat', '1', '2 years 2 months', 'My father health condition very bad and under operation ', 1, '2022-03-02 11:18:49', 1, '2022-03-02 11:19:22', 0, NULL, 1),
(3979, 7985, 'String Real Estate information Service Private Lim', 'Senior Executive Service ', '2010-06-01', 15000.00, '2013-06-01', 15000.00, 'Chennai', '1', '3 years 0 months', 'Got from abroad Jobs', 1, '2022-03-02 11:21:44', 0, NULL, 0, NULL, 1),
(3980, 7987, 'Hdb financial services', 'Sales executive', '2021-02-04', 15000.00, '2021-09-07', 15000.00, 'Chennai', '1', '0 years 7 months', 'Carrer growth and better job', 1, '2022-03-02 11:39:18', 0, NULL, 0, NULL, 1),
(3981, 7988, 'CSB bank ', 'CSE', '2021-02-09', 7.00, '2022-03-02', 12500.00, 'Mysore', '2', '1 years 0 months', ' Personal issue and need more salary ', 1, '2022-03-02 01:08:28', 0, NULL, 0, NULL, 1),
(3982, 7989, 'Domex e data pvt ltd', 'Technical analyst', '2008-08-18', 7500.00, '2011-11-24', 20000.00, 'Chennai', '1', '3 years 3 months', ' Marraiage', 1, '2022-03-02 01:33:02', 0, NULL, 0, NULL, 1),
(3983, 7989, 'Chola ms general insurance company', 'Team leader', '2015-11-25', 14500.00, '2020-04-30', 27000.00, 'Chennai', '1', '4 years 5 months', 'Mother in law surgery', 1, '2022-03-02 01:34:19', 0, NULL, 0, NULL, 1),
(3984, 7989, 'Viveks', 'Customer care manager', '2020-11-09', 30000.00, '2021-08-31', 30000.00, 'Chennai', '1', '0 years 9 months', 'Kids health issues', 1, '2022-03-02 01:35:32', 0, NULL, 0, NULL, 1),
(3985, 7990, 'Icici bank ltd', 'Virtual relationship manager', '2019-07-08', 2.60, '2021-08-05', 2.80, 'Hyderabad', '1', '2 years 0 months', ' ', 1, '2022-03-02 06:02:47', 0, NULL, 0, NULL, 1),
(3986, 7990, 'Future focus pvt ltd', 'Business associate', '2018-06-10', 10000.00, '2019-05-31', 13000.00, 'Hyderabad', '1', '0 years 11 months', 'Got opportunity From icici bank ltd', 1, '2022-03-02 06:04:25', 0, NULL, 0, NULL, 1),
(3987, 7995, 'equitas small finance bank', 'business development executive', '2021-03-01', 12000.00, '2021-08-05', 12000.00, 'tirunelveli', '1', '0 years 5 months', 'health issued', 1, '2022-03-03 11:31:46', 0, NULL, 0, NULL, 1),
(3988, 7995, 'bhumi', 'content writer', '2021-12-01', 5000.00, '2022-03-01', 5000.00, 'chennai', '1', '0 years 2 months', 'completed my internship', 1, '2022-03-03 11:33:40', 0, NULL, 0, NULL, 1),
(3989, 7996, 'Ebm papst india private ltd', 'Purchase assistant', '2020-02-02', 18000.00, '2022-02-28', 20000.00, 'Chennai', '1', '2 years 0 months', ' Due to covid', 1, '2022-03-03 11:45:05', 0, NULL, 0, NULL, 1),
(3990, 7999, 'Bharti AXA Life insurance', 'ARM', '2021-02-05', 28500.00, '2021-11-01', 28500.00, 'Chennai', '1', '0 years 8 months', ' My wife health problems', 1, '2022-03-03 01:11:51', 0, NULL, 0, NULL, 1),
(3991, 8008, 'HDFC BANK', 'Senior phonebanking officer', '2015-09-09', 14.00, '2020-08-31', 285000.00, 'Vadapalani', '1', '4 years 11 months', ' Mother\'s health issue', 1, '2022-03-04 10:17:41', 0, NULL, 0, NULL, 1),
(3992, 8005, 'Star health insurance', 'Sales', '2014-11-03', 25000.00, '2020-10-01', 30000.00, 'Chennai', '1', '5 years 10 months', ' Covid cost cutting', 1, '2022-03-04 10:27:38', 0, NULL, 0, NULL, 1),
(3993, 8002, 'HOME credit India finance Pvt Ltd', 'District Sales manager', '2019-10-02', 35000.00, '1970-01-01', 350000.00, 'Chennai', '2', '2 years 5 months', ' Covid from then company side , pan India 1200 employed left', 1, '2022-03-04 10:32:13', 0, NULL, 0, NULL, 1),
(3994, 8013, 'capital builder', 'sr.relationship manager', '2017-10-04', 360000.00, '1970-01-01', 400000.00, 'mylapore', '2', '4 years 5 months', ' Better prospectous', 1, '2022-03-04 03:46:20', 0, NULL, 0, NULL, 1),
(3995, 8012, 'AXIS BANK', 'ASSOSCIATE', '2022-04-08', 14000.00, '2022-03-04', 15000.00, 'BANGLORE', '1', '0 years 1 months', 'TIMING IS NOT FLEXIABLE', 87, '2022-03-04 04:38:08', 0, NULL, 0, NULL, 1),
(3996, 8014, 'Sutherland ', 'Senior customer executive', '2020-08-18', 1.00, '2021-12-29', 18000.00, 'Chennai ', '1', '1 years 4 months', ' ', 1, '2022-03-04 05:34:13', 0, NULL, 0, NULL, 1),
(3997, 8016, 'YUVAAN TRADER\'S', 'Operation Admin', '2017-02-01', 15000.00, '2020-10-31', 20000.00, 'Chennai', '1', '3 years 8 months', ' Company closed due to covid 19', 1, '2022-03-04 10:38:51', 1, '2022-03-04 10:40:41', 0, NULL, 0),
(3998, 8016, 'YUVAAN TRADERS', 'Operation Admin', '2017-02-01', 12000.00, '2020-10-31', 20000.00, 'Chennai', '1', '3 years 8 months', 'Company closed due to covid 19', 1, '2022-03-04 10:40:26', 0, NULL, 0, NULL, 1),
(3999, 8021, 'Manipal Cigna Health insurance Pvt ltd', 'Unit Manager', '2021-01-10', 25000.00, '1970-01-01', 25000.00, 'Chennai', '2', '1 years 1 months', ' Move to Reason for salary Hike', 1, '2022-03-05 05:08:40', 0, NULL, 0, NULL, 1),
(4000, 8022, 'Vr palaniappan ', 'Valuation engineer ', '2019-06-02', 20.00, '2021-12-28', 25000.00, 'Chennai ', '1', '2 years 6 months', ' ', 1, '2022-03-05 05:51:18', 0, NULL, 0, NULL, 1),
(4001, 8029, 'Justdial', 'Telesales', '2019-12-01', 14000.00, '2022-03-24', 21000.00, 'chennai', '1', '2 years 3 months', 'career growth', 1, '2022-03-07 10:47:41', 0, NULL, 0, NULL, 1),
(4002, 8028, 'sbi', 'senior bdm', '2021-04-05', 28000.00, '1970-01-01', 28000.00, 'vellore', '2', '0 years 11 months', ' for carrier development', 1, '2022-03-07 11:02:46', 0, NULL, 0, NULL, 1),
(4003, 8025, 'ACTE Technologies', 'seo analyst', '2021-02-01', 12000.00, '1970-01-01', 15000.00, 'chennai', '2', '1 years 1 months', 'For better opportunity', 84, '2022-03-07 11:03:22', 0, NULL, 0, NULL, 1),
(4004, 8032, 'CRUD Operations', 'Trainee', '2021-01-10', 15000.00, '2022-03-07', 25000.00, 'Urappakam ', '1', '1 years 1 months', ' ', 1, '2022-03-07 11:38:48', 0, NULL, 0, NULL, 1),
(4005, 8034, 'Tata Aig General insurance ', 'Channel sales manager ', '2021-03-07', 7032021.00, '2021-07-13', 450000.00, 'Chennai', '1', '0 years 4 months', ' Personal ', 1, '2022-03-07 12:29:41', 0, NULL, 0, NULL, 1),
(4006, 8036, 'Hdb financial services ', 'Jounier officer', '2019-07-17', 15000.00, '2022-04-07', 20000.00, 'NM rode', '1', '2 years 8 months', ' Other learning experience ', 1, '2022-03-07 03:02:59', 0, NULL, 0, NULL, 1),
(4007, 8024, 'srm groups', 'manager ', '2018-04-05', 0.00, '2022-03-07', 40000.00, 'chennai', '2', '3 years 11 months', 'timing not suitable', 87, '2022-03-07 03:45:19', 0, NULL, 0, NULL, 1),
(4008, 8023, 'LIC AGENCY ', 'TELECALLER', '2022-03-07', 12000.00, '1970-01-01', 15000.00, 'PONDICHERRY', '2', '0 years 0 months', 'DISTANCE', 87, '2022-03-07 04:02:50', 0, NULL, 0, NULL, 1),
(4009, 8038, 'Blend labs', 'Senior process associate', '2019-05-29', 15000.00, '1970-01-01', 23000.00, 'Porur', '2', '2 years 9 months', ' Growth in carrier', 1, '2022-03-07 06:58:15', 0, NULL, 0, NULL, 1),
(4010, 7980, 'SRI SIVARAJ TEXTILES ', 'Sales executive ', '2018-12-03', 15600.00, '1970-01-01', 22500.00, 'Nellore ', '2', '3 years 3 months', ' I\'ve Been working for the company for a long time, now i need to take my skills to an other level And looking for an organisation to get to learn more and improve my skills which help me to contribute for the growth of the organisation.', 1, '2022-03-07 07:16:57', 0, NULL, 0, NULL, 1),
(4011, 8039, 'Bajaj Allianz general insurance company limited ', 'DSA(Direct selling Agent)', '2018-10-01', 15000.00, '2021-12-31', 17500.00, 'Chandigarh ', '1', '3 years 3 months', ' Shifting to another city', 1, '2022-03-07 08:14:46', 0, NULL, 0, NULL, 1),
(4012, 8041, 'HDFC bank ', 'Telse  sales executive', '2021-04-09', 14000.00, '1970-01-01', 14000.00, 'MG road Banglore', '2', '0 years 10 months', 'Looking for career Growth and better opportunity', 1, '2022-03-07 09:34:52', 0, NULL, 0, NULL, 1),
(4013, 8020, 'Indiafillings', 'Developer', '2019-08-01', 8500.00, '2021-12-15', 21000.00, 'Chengalpattu', '1', '2 years 4 months', ' Health Reason (1 month 15 day in hospital)', 1, '2022-03-08 10:31:49', 0, NULL, 0, NULL, 1),
(4014, 8042, 'Maxipay multi service pvt ltd', 'Territory sales manager', '2020-09-10', 340000.00, '2021-05-10', 27530.00, 'Chidambaram', '1', '0 years 8 months', ' Impure knowlege', 1, '2022-03-08 10:56:10', 0, NULL, 0, NULL, 1),
(4015, 8047, 'TAFE', 'Sales', '2021-01-04', 8000.00, '2022-03-02', 10000.00, 'Ramanathapuram ', '1', '1 years 1 months', ' ', 1, '2022-03-08 03:55:51', 0, NULL, 0, NULL, 1),
(4016, 8050, 'RR Donnelley', 'Document Specialist', '2019-10-16', 18000.00, '2021-12-22', 18000.00, 'Chennai', '1', '2 years 2 months', 'Fell sick very often because of rotational Shifts', 1, '2022-03-09 10:56:05', 0, NULL, 0, NULL, 1),
(4017, 8051, 'Amazon', 'Quality checker', '2020-02-08', 15000.00, '2022-01-05', 12000.00, 'Pudhuvoyal', '1', '1 years 10 months', 'Mind pressure physical work', 1, '2022-03-09 11:58:01', 0, NULL, 0, NULL, 1),
(4018, 8046, 'fresher', 'fresher', '2022-03-09', 0.00, '1970-01-01', 0.00, 'banglore', '2', '0 years 0 months', 'fresher', 87, '2022-03-09 11:58:03', 0, NULL, 0, NULL, 1),
(4019, 8054, 'Bright counsaltancy', 'Tellecaller', '2021-01-10', 13.00, '2021-12-23', 15.00, 'Ashok nagar', '1', '0 years 11 months', ' Salary issue', 1, '2022-03-09 12:20:18', 0, NULL, 0, NULL, 1),
(4020, 8052, 'dimodnd pick', 'it', '2019-11-10', 16000.00, '2020-11-09', 16000.00, 'chennai', '1', '0 years 11 months', 'none', 7, '2022-03-09 01:22:51', 0, NULL, 0, NULL, 1),
(4021, 8056, 'Cams,funds india,gleam global,teleminds', 'Sales support senior ,customer support', '2014-03-10', 13500.00, '2022-02-23', 20000.00, 'Chennai,kolkata', '1', '7 years 11 months', ' Grown', 1, '2022-03-09 03:07:06', 0, NULL, 0, NULL, 1),
(4022, 8061, 'Archies gifts and articles', 'Sales ', '2019-03-09', 10500.00, '2020-11-26', 16.00, 'Hyd', '1', '1 years 8 months', ' Company closed', 1, '2022-03-09 05:09:33', 0, NULL, 0, NULL, 1),
(4023, 8062, 'Capgemini India private limited', 'senior process associate', '2015-10-05', 23500.00, '2019-10-05', 27000.00, 'karapakkam', '1', '4 years 0 months', ' To take care my baby', 1, '2022-03-09 05:25:25', 0, NULL, 0, NULL, 1),
(4024, 8067, 'Yaantra', 'Sales team', '2019-06-01', 12500.00, '1970-01-01', 15000.00, '3', '2', '2 years 9 months', ' ', 1, '2022-03-10 10:45:46', 0, NULL, 0, NULL, 1),
(4025, 8073, 'Thomas Cook india ltd', 'Executive', '2018-07-09', 17000.00, '2020-06-06', 18000.00, 'Chennai', '1', '1 years 10 months', ' Due to covid', 1, '2022-03-10 12:19:28', 0, NULL, 0, NULL, 1),
(4026, 8074, 'Boovan tech private limited', 'Web developer', '2019-07-10', 8000.00, '2021-04-30', 15000.00, 'Chennai', '1', '1 years 9 months', ' Covid 19 pandemic situation', 1, '2022-03-10 01:01:59', 0, NULL, 0, NULL, 1),
(4027, 8077, 'Karmans international', 'Senior sales executive', '2016-05-12', 1.00, '2021-10-21', 24000.00, 'Chennai', '1', '5 years 5 months', ' Company closed', 1, '2022-03-10 02:49:03', 0, NULL, 0, NULL, 1),
(4028, 8085, 'Jones foundation ', 'Purchase executive ', '2021-04-21', 15000.00, '1970-01-01', 18000.00, 'Chennai', '2', '0 years 10 months', 'I would like to restart my career in my Interested domain ', 1, '2022-03-10 09:19:09', 0, NULL, 0, NULL, 1),
(4029, 8086, 'Central Apps', 'Flutter Developer', '2021-05-01', 5000.00, '1970-01-01', 12000.00, 'Chennai ', '2', '0 years 10 months', ' Current organization  growth is relatively small.', 1, '2022-03-11 11:23:51', 0, NULL, 0, NULL, 1),
(4030, 8084, 'Aditya Birla Finance Limited', 'CPA EXECUTIVE', '2021-07-21', 13000.00, '2022-03-11', 13000.00, 'Chennai', '2', '0 years 7 months', ' Nil', 1, '2022-03-11 12:02:17', 0, NULL, 0, NULL, 1),
(4031, 8087, 'Tata business support services', 'Customer support', '2017-01-10', 13000.00, '2018-01-10', 13000.00, 'Chennai ', '1', '1 years 0 months', 'Trying to next level that\'s why , and salary was very low.', 1, '2022-03-11 12:57:53', 0, NULL, 0, NULL, 1),
(4032, 8088, 'Amazon seller shop', 'Problem solver(MS Excel)', '2020-11-22', 14000.00, '2022-03-01', 13500.00, 'Puduvoyal', '1', '1 years 3 months', ' Production field working as standing avocation..because of back pain issue', 1, '2022-03-11 01:10:52', 0, NULL, 0, NULL, 1),
(4033, 8090, 'Customer broadcast ', 'Senior Call Agent', '2018-12-01', 9000.00, '2020-04-01', 12000.00, 'Guindy ', '1', '3 years 3 months', ' Due to covid our branch was permanently closed', 1, '2022-03-11 05:18:27', 0, NULL, 0, NULL, 1),
(4034, 8091, 'SBI card', 'Customer service associate', '2018-01-18', 10000.00, '2022-01-08', 14000.00, 'Kandanchavady', '1', '3 years 11 months', ' Low Salary nd Office Shifted', 1, '2022-03-11 05:24:06', 0, NULL, 0, NULL, 1),
(4035, 8092, 'SBI Cards', 'Customer support', '2018-01-17', 25.00, '2022-01-04', 18.00, 'Chennai', '1', '3 years 11 months', ' Get a better\'experience', 1, '2022-03-11 05:34:50', 0, NULL, 0, NULL, 1),
(4036, 8089, 'Care Health Insurance Company Limited', 'Acting Team Leader', '2019-10-24', 13000.00, '1970-01-01', 19500.00, 'Chennai', '2', '2 years 4 months', ' Growth ', 1, '2022-03-11 07:21:24', 0, NULL, 0, NULL, 1),
(4037, 8097, 'Imarque Solutions', 'Customer support executive', '2021-08-11', 11000.00, '2022-02-11', 14000.00, 'T.nagar', '1', '0 years 6 months', 'To improve my career further ', 1, '2022-03-11 07:34:38', 0, NULL, 0, NULL, 1),
(4038, 8103, 'Quatics ', 'Front end developer', '2021-10-06', 12000.00, '1970-01-01', 12000.00, 'Sriperambathor', '2', '0 years 5 months', ' Out of the city , Too much travelling time , no hike', 1, '2022-03-12 12:24:32', 0, NULL, 0, NULL, 1),
(4039, 8104, 'Planet edu', 'Operation executive', '2021-11-22', 17000.00, '2022-03-02', 17000.00, 'Chennai ', '1', '0 years 3 months', 'Work is to travel outstation but due to unavoidable reasons I couldn\'t travel so I have to resign', 1, '2022-03-12 12:38:14', 0, NULL, 0, NULL, 1),
(4040, 8100, 'Agni foundation ', 'Relationship manager', '2020-09-02', 12000.00, '2021-01-21', 15000.00, 'Alwarpet', '1', '0 years 4 months', 'Salary hike', 85, '2022-03-12 02:35:18', 0, NULL, 0, NULL, 1),
(4041, 8106, 'Riyadh Najed School', 'Administration Support Secretary', '2019-02-26', 45000.00, '2021-01-31', 45000.00, 'Riyadh - Saudi Arabia', '1', '1 years 11 months', ' Contract Completed', 1, '2022-03-12 05:05:48', 0, NULL, 0, NULL, 1),
(4042, 8109, 'Sbi General Insurance company Pvt Ltd ', 'Sales operations executive ', '2021-08-19', 18500.00, '2021-10-20', 16000.00, 'Chennai ', '1', '0 years 2 months', ' Personal issues ', 1, '2022-03-12 07:13:54', 0, NULL, 0, NULL, 1),
(4043, 8113, 'Bharat matrimony', 'Senior sales executive', '2017-12-10', 18000.00, '2021-11-30', 18000.00, 'Guindy', '1', '3 years 11 months', ' Due to shift timing ( started on 6.30 and 8.30 shift) ', 1, '2022-03-12 08:07:19', 0, NULL, 0, NULL, 1),
(4044, 8113, 'Bharat Matrimony', 'Senior sales executive', '2017-04-10', 18000.00, '2021-11-30', 18000.00, 'Guindy', '1', '4 years 7 months', ' Due to shift timing (shift started with 6.30 and 8.30) ', 1, '2022-03-12 08:12:54', 0, NULL, 0, NULL, 1),
(4045, 8118, 'AEGIS Customer Support Service for BSNL', 'Customer Support Executive', '2019-12-25', 10000.00, '2020-12-30', 10000.00, 'Chennai ', '1', '1 years 0 months', 'process closed', 58, '2022-03-14 10:35:45', 0, NULL, 0, NULL, 1),
(4046, 8118, 'Sri Ram City Union Finance Pvt Ltd', 'Verification Assistant Executive', '2020-08-24', 13000.00, '2022-02-21', 13000.00, 'Chennai ', '1', '1 years 5 months', 'due to salary', 58, '2022-03-14 10:37:33', 0, NULL, 0, NULL, 1),
(4047, 8119, 'Hinduja Global Solutions', 'Business Development Executive', '2018-09-20', 1.00, '2022-02-02', 1.00, 'Chennai', '1', '3 years 4 months', ' My Mother Passed Away So I\'m Suddenly Lefted The Company', 1, '2022-03-14 12:51:30', 0, NULL, 0, NULL, 1),
(4048, 8115, 'abi', 'qa', '2019-03-04', 15000.00, '2021-09-06', 15000.00, 'ranipet', '1', '2 years 6 months', ' dfrg', 1, '2022-03-14 01:51:56', 0, NULL, 0, NULL, 1),
(4049, 8120, 'Sbi Life Insurance.co.ltd', 'Senior Business Development Executive', '2021-01-04', 21000.00, '1970-01-01', 21000.00, 'Anantapur', '2', '1 years 2 months', ' To Grown Up My Career with Good Company Skill Development', 1, '2022-03-14 02:00:07', 0, NULL, 0, NULL, 1),
(4050, 8112, 'TCS, CAMS', 'Process associate', '2019-12-10', 17000.00, '2021-01-01', 17000.00, 'Chennai', '1', '1 years 0 months', ' Resignation', 1, '2022-03-14 04:02:56', 0, NULL, 0, NULL, 1),
(4051, 8126, 'Shriram life insurance company limited ', 'Senior Customer service executive ', '2017-09-21', 10500.00, '2021-12-04', 13500.00, 'Alwarpet', '1', '4 years 2 months', 'Personal growth & salary ', 1, '2022-03-14 08:32:32', 0, NULL, 0, NULL, 1),
(4052, 8126, 'Manappuram Insurance Brokers Limited ', 'Relationship Executive ', '2021-12-21', 18300.00, '1970-01-01', 18300.00, 'Ambattur ', '2', '0 years 2 months', 'Pressure on the job role & coordination missing in the environment ', 1, '2022-03-14 08:35:20', 0, NULL, 0, NULL, 1),
(4053, 8132, 'Abex excellence Pvt.ltd', 'HR executive', '2021-10-16', 15000.00, '2021-12-22', 15000.00, 'Mogappair', '1', '0 years 2 months', ' Due to personal issue', 1, '2022-03-15 03:43:22', 0, NULL, 0, NULL, 1),
(4054, 8133, 'True Tech Solutions', 'HR -IT Recruiter', '2021-09-15', 10000.00, '1970-01-01', 10000.00, 'Chennai', '2', '0 years 6 months', 'I am looking for a better salary expectation.', 1, '2022-03-15 04:39:01', 0, NULL, 0, NULL, 1),
(4055, 8135, 'Integrated enterprises India pvt ltd', 'Marketing executive', '2021-06-01', 12000.00, '2021-12-01', 12000.00, 'Tirunelveli', '1', '0 years 5 months', ' ', 1, '2022-03-15 05:00:32', 0, NULL, 0, NULL, 1),
(4056, 8136, 'Vanaaspire Pvt Ltd ', 'HR Recruiter ', '2021-10-01', 10000.00, '1970-01-01', 12500.00, 'Mogapair ', '2', '0 years 5 months', ' ', 1, '2022-03-15 05:54:25', 0, NULL, 0, NULL, 1),
(4057, 8137, 'Byjus Future School', 'Coding Educator', '2020-09-03', 25000.00, '1970-01-01', 30000.00, 'Remotr', '2', '1 years 6 months', ' Looking for permanent role', 1, '2022-03-16 11:38:18', 0, NULL, 0, NULL, 1),
(4058, 8139, 'triplem infotech solution', 'hr admin and coordinator', '2020-01-01', 12000.00, '2021-01-01', 12000.00, 'chennai', '1', '1 years 0 months', ' Due to they redused employee strength for covid situation so thats i applied for releving', 1, '2022-03-16 12:48:27', 0, NULL, 0, NULL, 1),
(4059, 8142, 'Vizza insurance investment center', 'Vpe', '2020-09-09', 9000.00, '2021-10-07', 12000.00, 'Kodambakkam', '1', '1 years 0 months', ' I have some personal issues', 1, '2022-03-16 01:14:20', 0, NULL, 0, NULL, 1),
(4060, 8143, 'Vizza Insurance Investment Center ', 'VPE', '2020-09-09', 9000.00, '2021-10-07', 12000.00, 'Kodambakkam', '1', '1 years 0 months', ' I have some health Issues. ', 1, '2022-03-16 01:17:42', 0, NULL, 0, NULL, 1),
(4061, 8145, 'thirumagalfinance', 'cashcollection', '2020-04-05', 13000.00, '2021-04-28', 13000.00, 'thuvarankurichi', '1', '1 years 0 months', ' Field work ', 1, '2022-03-16 02:42:07', 0, NULL, 0, NULL, 1),
(4062, 8145, 'thirumagal finance', 'cashcollection', '2020-04-05', 13000.00, '2021-04-21', 15000.00, 'thuvaranurichi', '1', '1 years 0 months', 'Due to field work', 1, '2022-03-16 02:45:17', 0, NULL, 0, NULL, 1),
(4063, 8146, 'Datamatics global services', 'Associate', '2015-11-01', 15000.00, '2016-07-15', 15000.00, 'Mumbai', '1', '0 years 8 months', ' Contact got over', 1, '2022-03-16 02:47:37', 0, NULL, 0, NULL, 1),
(4064, 8146, 'Vantage BPO &EPACIFIC services', 'Retention agent', '2015-08-03', 17000.00, '2018-10-31', 17500.00, 'Mumbai', '1', '3 years 2 months', 'Got better job', 1, '2022-03-16 02:49:53', 0, NULL, 0, NULL, 1),
(4065, 8146, 'Switched technology', 'Sales and marketing/home loan adviser', '2018-11-01', 25000.00, '2019-10-31', 25000.00, 'Mumbai', '1', '0 years 11 months', 'Change in process', 1, '2022-03-16 02:51:30', 0, NULL, 0, NULL, 1),
(4066, 8146, 'Tech Mahindra', 'Retention agent', '2019-11-01', 30000.00, '2021-01-30', 30000.00, 'Mumbai', '1', '1 years 2 months', 'Covid ', 1, '2022-03-16 02:52:54', 0, NULL, 0, NULL, 1),
(4067, 8146, 'Nibav lifts pvt ltd', 'Customer relationship manager', '2021-04-08', 35000.00, '2022-03-09', 35000.00, 'Chennai', '1', '0 years 11 months', 'Health issue/affected with covid and got into an accident', 1, '2022-03-16 02:54:09', 0, NULL, 0, NULL, 1),
(4068, 8147, 'Bluechip Corporate Investment Centre ', 'Client Associate- Mis Executive ', '2018-03-14', 10000.00, '2021-06-25', 15750.00, 'Chennai ', '1', '3 years 3 months', ' My Mom Health Issues (Operation)', 1, '2022-03-16 03:15:14', 0, NULL, 0, NULL, 1),
(4069, 8140, 'Idfc first bank', 'Senior officer ', '2020-02-04', 32000.00, '2020-07-18', 420000.00, 'Chennai ', '1', '0 years 5 months', ' For Pandamic problem ', 1, '2022-03-16 04:23:44', 0, NULL, 0, NULL, 1),
(4070, 8152, 'Bajaj Finserv', 'Training Associate', '2021-08-17', 14000.00, '2022-03-15', 12000.00, 'Thambaram', '1', '0 years 6 months', 'Distance take Maximum 1 hr to reach office \nSaidapet to thamabaram.', 1, '2022-03-17 10:42:57', 0, NULL, 0, NULL, 1),
(4071, 8151, 'Energo India private Limited', 'System Admin Data Entry Operator', '2019-03-17', 10000.00, '2021-05-19', 12500.00, 'Parangipettai Cuddalore', '1', '2 years 2 months', ' COVID suition', 1, '2022-03-17 10:49:10', 0, NULL, 0, NULL, 1),
(4072, 8150, 'Pathfinder consultancy', 'HR recruiter', '2021-10-15', 10000.00, '1970-01-01', 10000.00, 'Chennai', '2', '0 years 5 months', ' Not available to learn anything new ', 1, '2022-03-17 11:05:22', 0, NULL, 0, NULL, 1),
(4073, 8155, 'Informist data and analytics Pvt Ltd', 'Data analyst', '2019-08-06', 11000.00, '2021-10-28', 11000.00, 'West Mambalam', '1', '2 years 2 months', ' Company loss', 1, '2022-03-17 11:16:55', 0, NULL, 0, NULL, 1),
(4074, 8162, 'The Chennai silks', 'Php developer', '2021-02-24', 12000.00, '1970-01-01', 12000.00, 'Tiruppur', '2', '1 years 0 months', 'Salary problem', 1, '2022-03-17 10:51:29', 0, NULL, 0, NULL, 1),
(4075, 8161, 'The new India assurance co. Ltd., ', 'Assistant', '2021-02-25', 10000.00, '1970-01-01', 13000.00, 'Guindy', '2', '1 years 0 months', ' Low salary', 1, '2022-03-18 12:20:40', 0, NULL, 0, NULL, 1),
(4076, 8177, 'Optech software ', 'Software service engineer and office admin', '2017-07-26', 13000.00, '2022-10-05', 5000.00, 'Erode', '1', '5 years 2 months', ' Business down\n\n\n', 1, '2022-03-19 10:24:05', 0, NULL, 0, NULL, 1),
(4077, 8180, 'Zf wabco', 'HR trainee', '2021-06-17', 16200.00, '2022-01-25', 16200.00, 'Mahindra world city', '1', '0 years 7 months', ' For onrole job', 1, '2022-03-19 11:39:21', 0, NULL, 0, NULL, 1),
(4078, 8186, 'Relyon Facility Service Pvt lTD (Back off Indusind', 'Email Process', '2016-02-22', 8000.00, '2019-02-03', 12000.00, 'Karapakkam', '1', '2 years 11 months', ' Contract basis', 1, '2022-03-19 09:25:00', 0, NULL, 0, NULL, 1),
(4079, 8186, 'HDB Finance Ltd ( Back office HDFC BANK)', 'mIS Executive', '2019-10-18', 14000.00, '2021-05-11', 14000.00, 'Adyar ', '1', '1 years 6 months', 'best opportunity', 1, '2022-03-19 09:34:14', 0, NULL, 0, NULL, 1),
(4080, 8186, 'Adroit Urban Developer pvt Ltd', 'MIS Executive', '2021-06-24', 18000.00, '1970-01-01', 18000.00, 'Alwarpet', '2', '0 years 8 months', 'ESI PF benefits not available', 1, '2022-03-19 09:37:06', 0, NULL, 0, NULL, 1),
(4081, 8187, 'TELEPERFORMANCE ', 'Customer service executive', '2019-08-01', 10000.00, '2021-12-31', 12000.00, 'Ambattur ', '1', '2 years 4 months', ' ', 1, '2022-03-19 09:54:05', 0, NULL, 0, NULL, 1),
(4082, 8193, 'bluebase software services', 'senior seveloper', '2016-06-14', 6000.00, '1970-01-01', 17000.00, 'chennai', '2', '5 years 9 months', 'wants to work in current technologies,frameworks and not proper salary timings', 1, '2022-03-21 12:25:11', 0, NULL, 0, NULL, 1),
(4083, 8185, 'Accenture', 'transcation process associate', '2021-02-08', 13000.00, '1970-01-01', 13000.00, 'soliganallur', '2', '1 years 1 months', 'contract date completing', 85, '2022-03-21 03:20:38', 0, NULL, 0, NULL, 1),
(4084, 8165, 'ICICI Lombard General Insurance Co.ltd', 'Sales executive', '2016-07-05', 9500.00, '2017-08-25', 9500.00, 'Mountroad', '1', '1 years 1 months', 'Started my Study', 1, '2022-03-21 03:35:49', 0, NULL, 0, NULL, 1),
(4085, 8165, 'TI cycles of Indian private limited', 'Trainy', '2017-09-08', 10500.00, '2018-08-28', 10500.00, 'Ambathur, chennai', '1', '0 years 11 months', 'Contract closed', 1, '2022-03-21 03:38:42', 0, NULL, 0, NULL, 1),
(4086, 8165, 'Gamma process Hub India Ltd', 'Customer service', '2018-10-09', 10000.00, '2020-11-11', 11000.00, 'Ambathur, Chennai', '1', '2 years 1 months', 'Process closed', 1, '2022-03-21 03:42:06', 0, NULL, 0, NULL, 1),
(4087, 8165, 'Tech Mahindra', 'Customer support', '2020-11-16', 13000.00, '2022-03-21', 14000.00, 'Ambathur, Chennai', '2', '1 years 4 months', 'I not relieving.... I am searching another job', 1, '2022-03-21 03:45:55', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4088, 8198, 'Tele caller', 'Telecaller', '2021-07-12', 25.00, '1970-01-01', 16.00, 'Karapakkam', '2', '0 years 8 months', ' ', 1, '2022-03-21 03:46:02', 0, NULL, 0, NULL, 1),
(4089, 8201, 'zudioz', 'web developer', '2018-11-01', 7000.00, '1970-01-01', 20000.00, 'chennai', '2', '3 years 4 months', ' Need for economical update(Salary update) and need knowledge update', 1, '2022-03-21 06:23:22', 0, NULL, 0, NULL, 1),
(4090, 8182, 'manappuram finance limited', 'relationship executive', '2021-06-28', 18000.00, '1970-01-01', 18000.00, 'kallakurichi', '2', '0 years 8 months', ' NA', 1, '2022-03-21 08:19:38', 0, NULL, 0, NULL, 1),
(4091, 8131, 'Star health insurance', 'Sales executive', '2019-05-01', 16000.00, '2021-03-04', 11000.00, 'Nelsonmanickam road, chennai', '1', '1 years 10 months', ' Personal issues', 1, '2022-03-21 10:12:28', 0, NULL, 0, NULL, 1),
(4092, 8205, 'Altruist technologies', 'Business associate', '2020-01-29', 10000.00, '2021-10-21', 10000.00, 'Chennai', '1', '1 years 8 months', ' No appraisal', 1, '2022-03-22 11:22:34', 0, NULL, 0, NULL, 1),
(4093, 8205, 'Relyon facility services', 'Executive', '2016-06-06', 6000.00, '2019-05-04', 8000.00, 'Chennai', '1', '2 years 10 months', 'Contract closed', 1, '2022-03-22 11:26:10', 0, NULL, 0, NULL, 1),
(4094, 8170, 'hdfc', 'sales', '2022-03-22', 15000.00, '2022-03-22', 18000.00, 'chennai', '1', '0 years 0 months', 'work pressure', 87, '2022-03-22 11:55:18', 0, NULL, 0, NULL, 1),
(4095, 8128, 'fresher', 'fresher', '2022-03-22', 0.00, '1970-01-01', 0.00, 'chennai', '2', '0 years 0 months', 'fresher', 87, '2022-03-22 12:05:25', 0, NULL, 0, NULL, 1),
(4096, 8206, '1st step construction', 'Admin', '2021-03-22', 13500.00, '2022-01-15', 13500.00, 'Egmore', '1', '0 years 9 months', 'Salary issue', 1, '2022-03-22 12:12:17', 0, NULL, 0, NULL, 1),
(4097, 8207, 'Barclays global shared services Pvt Ltd', 'Process Advisor', '2019-04-15', 10200.00, '2020-11-30', 10200.00, 'DLF Park, Porur', '1', '1 years 7 months', ' Process was complete and they Releaving me', 1, '2022-03-22 12:46:20', 0, NULL, 0, NULL, 1),
(4098, 8207, 'Cognet hr solutions pvt ltd', 'Process trainee', '2021-05-17', 10000.00, '1970-01-01', 10000.00, 'Ambattur', '2', '0 years 10 months', 'I am expecting more but they given 10000 only. That\'s why i am searching another job', 1, '2022-03-22 12:48:40', 0, NULL, 0, NULL, 1),
(4099, 8096, 'riddhi corporate service ltd', 'center manager', '2019-02-07', 27000.00, '1970-01-01', 27000.00, 'chennai', '2', '3 years 1 months', ' ', 1, '2022-03-22 01:03:11', 0, NULL, 0, NULL, 1),
(4100, 8210, 'radiant cash management services', 'banking eecutive', '2018-07-14', 11000.00, '2021-03-17', 14000.00, 'chennai', '1', '2 years 8 months', ' carrier growth', 1, '2022-03-22 04:49:55', 0, NULL, 0, NULL, 1),
(4101, 784, 'debtcare enterprises', 'team leader', '2021-01-10', 12000.00, '2021-10-17', 13000.00, 't nagar', '1', '0 years 9 months', ' growth', 1, '2022-03-22 05:24:27', 0, NULL, 0, NULL, 1),
(4102, 8215, 'Mistubha Sical privet ltd', 'QC', '2021-08-18', 20.00, '2022-02-15', 13000.00, 'Gummidipoondi chennai', '1', '0 years 5 months', ' Personal Health issue', 1, '2022-03-22 07:42:31', 0, NULL, 0, NULL, 1),
(4103, 8216, 'sutherland global services', 'customer support executive', '2015-04-04', 10000.00, '2019-09-07', 13000.00, 'velacherry', '1', '4 years 5 months', 'growth ', 1, '2022-03-22 08:07:14', 0, NULL, 0, NULL, 1),
(4104, 8216, 'vectone mobile', 'sales executive', '2019-09-23', 14000.00, '2022-02-28', 15000.00, 'chennai', '1', '2 years 5 months', 'growth', 1, '2022-03-22 08:08:10', 0, NULL, 0, NULL, 1),
(4105, 8219, 'Partum softwares pvt Ltd', 'cre', '2020-07-08', 8000.00, '1970-01-01', 8000.00, 'Erode', '2', '1 years 8 months', ' due to salary', 1, '2022-03-23 10:21:48', 0, NULL, 0, NULL, 1),
(4106, 8218, 'Access Health Care ', 'Assistant Client Partner ', '2021-09-03', 20000.00, '2022-03-10', 20000.00, 'Ambattur', '1', '0 years 6 months', ' Due to health issues ', 1, '2022-03-23 10:30:00', 0, NULL, 0, NULL, 1),
(4107, 8220, 'Laufire technologies ', 'Junior developer ', '2021-05-03', 300000.00, '2022-04-04', 300000.00, 'Chennai', '1', '0 years 11 months', ' For career growth ', 1, '2022-03-23 11:08:56', 0, NULL, 0, NULL, 1),
(4108, 8064, 'Indusind bank', 'Virtual engagement manager', '2021-09-28', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '0 years 5 months', ' ', 1, '2022-03-23 12:00:40', 0, NULL, 0, NULL, 1),
(4109, 8222, 'Tradeindia', 'Relationship manager', '2022-01-02', 21100.00, '2022-02-02', 21100.00, 'Greams road', '1', '0 years 1 months', 'It was a telesales I\'m not comfortable with telesales I love to work in field that\'s why iam relieved ', 1, '2022-03-23 02:04:12', 0, NULL, 0, NULL, 1),
(4110, 8116, 'Pondy IT solutions', 'Junior technical writer', '2019-01-25', 18000.00, '2020-02-25', 23000.00, 'Pondy', '1', '1 years 1 months', ' ', 1, '2022-03-24 04:07:50', 0, NULL, 0, NULL, 1),
(4111, 8230, 'Css corp', 'Tech support', '2020-05-05', 400000.00, '1970-01-01', 40950.00, 'Trichy', '2', '1 years 10 months', 'Looking for exiting opportunity in sales. ', 1, '2022-03-24 04:36:23', 0, NULL, 0, NULL, 1),
(4112, 8230, 'Tech Mahindra', 'Tech support engineer', '2017-09-11', 250000.00, '2020-02-28', 22550.00, 'Chennai', '1', '2 years 5 months', 'Client moving service away from company', 1, '2022-03-24 04:37:46', 0, NULL, 0, NULL, 1),
(4113, 8238, 'Shriram finance ', 'Internal audit ', '2017-12-01', 10000.00, '2022-03-31', 11500.00, 'Adyar', '1', '4 years 4 months', ' Processing is closed ', 1, '2022-03-25 09:59:09', 0, NULL, 0, NULL, 1),
(4114, 8239, 'MR fusion tech', 'Administrative assistant', '2017-05-03', 12000.00, '2021-11-12', 18000.00, 'Anna nagar', '1', '4 years 6 months', ' Personal issue', 1, '2022-03-25 10:36:29', 0, NULL, 0, NULL, 1),
(4115, 8240, 'Dover environmental Engineering ', 'Site engineer ', '2015-06-01', 100000.00, '2020-01-20', 130000.00, 'Singapore ', '1', '4 years 7 months', ' Covid padamic', 1, '2022-03-25 10:37:32', 0, NULL, 0, NULL, 1),
(4116, 8239, 'MR fusion tech', 'Administrative assistant', '2017-05-03', 12000.00, '2021-11-12', 18000.00, 'Chennai', '1', '4 years 6 months', 'Had Exams to clear', 1, '2022-03-25 10:38:14', 1, '2022-03-25 10:38:24', 0, NULL, 0),
(4117, 8242, 'Tarablooms Private Limited', 'Customer Relationship Executive', '2019-06-20', 15000.00, '2020-09-30', 15000.00, 'Coimbatore', '1', '1 years 3 months', ' Higher studies', 1, '2022-03-25 11:14:22', 0, NULL, 0, NULL, 1),
(4118, 8243, 'Veremax management service ltd', 'Mis coordinator', '2017-03-13', 13000.00, '2021-11-30', 18000.00, 'Chennai', '1', '4 years 8 months', ' Family Issues\n\n\n', 1, '2022-03-25 11:41:54', 0, NULL, 0, NULL, 1),
(4119, 8245, 'Tara Blooms Private Limited', 'Customer Relations executive', '2019-06-20', 15000.00, '2020-03-14', 15000.00, 'Coimbatore', '1', '0 years 8 months', ' Corona outbreak ', 1, '2022-03-25 11:43:04', 0, NULL, 0, NULL, 1),
(4120, 8247, 'tenacitics india private limited', 'software engineer', '2020-07-01', 20500.00, '1970-01-01', 22500.00, 'chennai', '2', '1 years 8 months', ' career growth', 1, '2022-03-25 11:58:58', 0, NULL, 0, NULL, 1),
(4121, 8246, 'Breynee technologies', 'Php developer', '2021-11-01', 15000.00, '2022-03-14', 15000.00, 'Chennai', '1', '0 years 4 months', ' Company is now Shud downing', 1, '2022-03-25 04:01:45', 0, NULL, 0, NULL, 1),
(4122, 8254, 'HDB financial services Pvt.lmt', 'telecaller -junior officer ', '2020-03-13', 10000.00, '1970-01-01', 15000.00, 'Nungambakkam ', '2', '2 years 0 months', ' want career growth and income also learn new things ', 1, '2022-03-25 07:24:03', 0, NULL, 0, NULL, 1),
(4123, 8255, 'teckzy research and analytics it solutions', 'php developer', '2021-03-08', 10000.00, '1970-01-01', 10000.00, 'chennai', '2', '1 years 0 months', ' To upgrade my skill and better pay', 1, '2022-03-25 10:16:48', 0, NULL, 0, NULL, 1),
(4124, 8214, 'Fresher', 'Fresher', '2022-03-26', 1.00, '1970-01-01', 0.00, 'Fresher', '2', '0 years 0 months', 'Fresher', 84, '2022-03-26 10:17:24', 84, '2022-03-26 10:18:24', 0, NULL, 0),
(4125, 8214, 'Fresher', 'Fresher', '2022-01-04', 1.00, '1970-01-01', 1.00, 'Fresher', '2', '0 years 2 months', 'Fresher', 84, '2022-03-26 10:18:03', 0, NULL, 0, NULL, 1),
(4126, 8260, 'AmaOn', 'Team leader', '2016-08-18', 10000.00, '2021-01-24', 30000.00, 'Virungambakkam', '1', '4 years 5 months', ' Personal issue', 1, '2022-03-26 11:03:31', 0, NULL, 0, NULL, 1),
(4127, 8261, 'angel broking pvt ltd', 'relationship manager', '2021-12-01', 280000.00, '1970-01-01', 280000.00, 'chennai', '2', '0 years 3 months', 'to up', 1, '2022-03-26 11:12:14', 0, NULL, 0, NULL, 1),
(4128, 8261, 'ace insurance brokers pvt ltd', 'assistant ', '2019-06-20', 240000.00, '2020-09-01', 240000.00, 'chennai', '1', '1 years 2 months', 'due to covid situation', 1, '2022-03-26 11:13:52', 0, NULL, 0, NULL, 1),
(4129, 8261, 'coverfox insurance brokers pvt ltd', 'motor insurance executive', '2017-04-13', 145000.00, '2019-04-15', 180000.00, 'chennai', '1', '2 years 0 months', 'Project end', 1, '2022-03-26 11:16:10', 1, '2022-03-26 11:17:11', 0, NULL, 0),
(4130, 8262, 'Glifecare martering', 'RM', '2021-01-11', 18500.00, '1970-01-01', 18500.00, 'salem', '2', '1 years 2 months', 'Father dead ', 84, '2022-03-26 11:30:28', 84, '2022-03-26 11:38:28', 0, NULL, 1),
(4131, 8263, 'Cafs', 'Chennai ', '2014-08-11', 7500.00, '2016-05-30', 10000.00, 'Chennai ', '1', '1 years 9 months', ' Die to personal reason', 1, '2022-03-26 11:36:23', 0, NULL, 0, NULL, 1),
(4132, 8264, 'Sbi card payments & service pvt Ltd', 'SMR', '2018-05-18', 19000.00, '2022-04-08', 25000.00, 'Chennai', '1', '3 years 10 months', ' ', 1, '2022-03-26 11:55:24', 0, NULL, 0, NULL, 1),
(4133, 8265, 'dash home lLP', 'accounts', '2019-08-20', 10000.00, '2022-01-18', 15000.00, 'Bangalore', '1', '2 years 4 months', 'due to lockdown', 85, '2022-03-26 12:30:08', 0, NULL, 0, NULL, 1),
(4134, 8268, 'IDFC First Bharat', 'Group relationship officer', '2021-02-03', 13000.00, '2022-02-28', 18000.00, 'Gobichettipalayam', '1', '1 years 0 months', ' Family issues', 1, '2022-03-26 04:27:51', 1, '2022-03-26 04:28:16', 0, NULL, 1),
(4135, 8273, 'Asokan thanga maligai', 'Cashier', '2022-01-26', 7500.00, '2022-03-28', 10000.00, 'Thanjavur', '1', '0 years 2 months', ' Some college project work so I will not doing', 1, '2022-03-28 12:15:58', 0, NULL, 0, NULL, 1),
(4136, 8277, 'Reliance industries', 'Office administrator', '2020-01-05', 13000.00, '1970-01-01', 15000.00, 'Erode', '2', '2 years 2 months', ' I\'m the only in charge for office.. Not providing emergency leave', 1, '2022-03-28 01:45:53', 0, NULL, 0, NULL, 1),
(4137, 8275, 'IDBI Bank ', 'Relationship officer', '2019-07-03', 1.00, '2020-02-01', 16819.00, 'Chennai', '1', '0 years 6 months', 'To develop my sales skills', 1, '2022-03-28 01:49:33', 0, NULL, 0, NULL, 1),
(4138, 8275, 'Equitas small finance bank', 'Relationship officer', '2020-03-01', 1.00, '2022-02-02', 17500.00, 'Chennai', '1', '1 years 11 months', 'To develop my sales skills', 1, '2022-03-28 02:03:39', 0, NULL, 0, NULL, 1),
(4139, 8278, 'Reliance industries', 'Office administrator', '2020-01-05', 14000.00, '1970-01-01', 15000.00, 'Erode', '2', '2 years 2 months', 'I am the only person for the office in charge others or marketing steps they are not providing any emergency leave for me because the keys are with me so I cannot attend any function or funeral like that so I am relieving', 1, '2022-03-28 02:55:20', 0, NULL, 0, NULL, 1),
(4140, 8281, 'P.R Agency ', 'Collection Exicutive', '2021-02-06', 18000.00, '2022-02-10', 18000.00, 'Porur', '1', '1 years 0 months', '\n ', 1, '2022-03-29 10:22:19', 0, NULL, 0, NULL, 1),
(4141, 8284, 'Reliance Nippon Life Insurance Company Limited ', 'Relationship Manager ', '2021-05-17', 33000.00, '2021-11-02', 33000.00, 'T. Nagar', '1', '0 years 5 months', ' Channel closed', 1, '2022-03-29 11:56:53', 0, NULL, 0, NULL, 1),
(4142, 8288, 'SBI back End', 'Branch relationship executive', '2020-09-09', 13500.00, '2022-05-01', 13500.00, 'Chennai Ayanavaram', '1', '1 years 7 months', ' I would like to work based on system process..', 1, '2022-03-29 12:23:01', 0, NULL, 0, NULL, 1),
(4143, 8298, 'Infosearch bpo services ', 'Call center executive ', '2021-03-19', 14000.00, '2021-10-31', 14000.00, 'Gopalpuram', '1', '0 years 7 months', ' Dint have good connection with the colleagues', 1, '2022-03-30 10:11:48', 0, NULL, 0, NULL, 1),
(4144, 8295, 'Mclansys solution pvt ltd ', 'Software engineering ', '2021-01-05', 10000.00, '2022-04-10', 14000.00, 'Mayiladuthurai ', '1', '1 years 3 months', ' Salary is uncomfortable ', 1, '2022-03-30 11:35:12', 0, NULL, 0, NULL, 1),
(4145, 8295, 'Mclansys solution pvt ltd ', 'Software engineering ', '2021-01-05', 10000.00, '2022-04-10', 14000.00, 'Mayiladuthurai ', '1', '1 years 3 months', 'Salary is uncomfortable ', 1, '2022-03-30 11:36:52', 0, NULL, 0, NULL, 1),
(4146, 8299, 'Matrimony', '7 months', '2022-03-30', 10000.00, '1970-01-01', 11000.00, 'Guindy', '2', '0 years 0 months', ' Over time ', 1, '2022-03-30 11:57:04', 0, NULL, 0, NULL, 1),
(4147, 8267, 'FRESHER', 'FRESHER', '0002-03-30', 6.00, '1970-01-01', 0.00, 'FRESHER', '2', '2019 years 11 months', 'FRESHER', 87, '2022-03-30 01:10:12', 87, '2022-03-30 01:10:42', 0, NULL, 1),
(4148, 8304, 'Reliance Jio', 'Customer Support Associate', '2021-03-29', 15000.00, '1970-01-01', 15800.00, 'Remote', '2', '1 years 0 months', ' Pressure', 1, '2022-03-30 05:43:34', 0, NULL, 0, NULL, 1),
(4149, 8306, 'tcs', 'sw', '2022-02-01', 30000.00, '2022-03-29', 28000.00, 'chennai', '1', '0 years 1 months', ' jccgsskjasgas\nsjfj', 1, '2022-03-30 06:29:25', 0, NULL, 0, NULL, 1),
(4150, 8309, 'fresher', 'Fresher', '0202-03-31', 0.00, '1970-01-01', 0.00, 'Fresher', '2', '1819 years 11 months', 'Fresher', 87, '2022-03-31 10:16:03', 0, NULL, 0, NULL, 1),
(4151, 8310, 'Max life insurance', 'Relationship manager', '2020-02-12', 450000.00, '2022-03-04', 500000.00, 'Chennai', '1', '2 years 0 months', ' Career growth', 1, '2022-03-31 11:16:56', 0, NULL, 0, NULL, 1),
(4152, 8310, 'HDFC sales pvt ltd', 'Deputy manager', '2015-11-25', 280000.00, '2019-01-07', 320000.00, 'Chennai', '1', '3 years 1 months', 'Due to personal reason', 1, '2022-03-31 11:18:32', 0, NULL, 0, NULL, 1),
(4153, 8311, 'N Ranga Rao son\'s and Pvt Ltd', 'Sales Representative', '2017-04-06', 7500.00, '2021-01-21', 15000.00, 'Chennai', '1', '3 years 9 months', ' Personal issue ', 1, '2022-03-31 11:34:57', 0, NULL, 0, NULL, 1),
(4154, 8312, 'Ninjacart', ' Sales executive', '2019-08-15', 15000.00, '2021-12-25', 21000.00, 'Chennai', '1', '2 years 4 months', ' Health issues', 1, '2022-03-31 11:45:11', 0, NULL, 0, NULL, 1),
(4155, 8292, 'Paytm Services Pvt ltd ', 'Senior I store promotor', '2021-10-05', 27000.00, '2022-02-02', 26540.00, 'Chengalpattu ', '1', '0 years 3 months', ' Salary Issues ', 1, '2022-03-31 12:22:45', 0, NULL, 0, NULL, 1),
(4156, 8292, 'Vodafone customer care service ', 'Team Leader ', '2016-08-15', 13000.00, '2017-05-31', 14500.00, 'Uthiramerur ', '1', '0 years 9 months', 'Health Issues ', 1, '2022-03-31 12:24:20', 0, NULL, 0, NULL, 1),
(4157, 8292, 'Homecredit India Pvt Ltd ', 'Senior Sales Associate and team leader ', '2019-05-31', 14000.00, '2021-02-02', 16000.00, 'Kanchipuram ', '1', '1 years 8 months', 'Company closed due to panda mic situation ', 1, '2022-03-31 12:26:26', 0, NULL, 0, NULL, 1),
(4158, 8292, 'Bharathi airtel ', 'Account Manager ', '2022-02-04', 26540.00, '2022-03-30', 26540.00, 'Sriperumbudur ', '1', '0 years 1 months', 'Salary issues ', 1, '2022-03-31 12:28:18', 0, NULL, 0, NULL, 1),
(4159, 8318, 'HDB Financial services private limited', 'Collection executive', '2019-10-09', 15000.00, '2022-03-31', 17000.00, 'Nungambakkam', '2', '2 years 5 months', ' Health issues', 1, '2022-03-31 12:36:54', 0, NULL, 0, NULL, 1),
(4160, 8319, 'Apollo group of colleges', 'Admin executive and Telecaller', '2021-01-10', 15000.00, '1970-01-01', 17000.00, 'T.nagar', '2', '1 years 2 months', ' Admission closed', 1, '2022-03-31 12:44:04', 0, NULL, 0, NULL, 1),
(4161, 8314, 'Blue dart', 'Financial problem', '2021-08-10', 13000.00, '2022-03-18', 13000.00, 'Thousands light', '1', '0 years 7 months', ' Financial problem', 1, '2022-03-31 12:48:03', 0, NULL, 0, NULL, 1),
(4162, 8308, 'Cafs', 'Telecaller', '2020-08-23', 15000.00, '2022-02-20', 15000.00, 'T.nager', '1', '1 years 5 months', ' Mother health issues', 1, '2022-03-31 12:59:07', 0, NULL, 0, NULL, 1),
(4163, 8316, 'Credit marshal', 'Telecaller', '2020-03-20', 15000.00, '2022-02-02', 15000.00, 'IGP colony', '1', '1 years 10 months', 'Mother-in-law health issue', 1, '2022-03-31 01:19:21', 0, NULL, 0, NULL, 1),
(4164, 8326, 'Sterling holidays resorts ltd', 'Customer Engagement Exicutive', '2020-01-08', 23000.00, '2022-02-10', 23000.00, 'Chennai', '1', '2 years 1 months', ' Growth', 1, '2022-04-01 08:15:02', 0, NULL, 0, NULL, 1),
(4165, 8326, 'Vee Technology', 'AR caller', '2018-06-01', 18000.00, '2019-12-04', 18000.00, 'Chennai', '1', '1 years 6 months', 'Personal', 1, '2022-04-01 08:16:30', 0, NULL, 0, NULL, 1),
(4166, 8327, 'Armsoftech. Plt', 'Agent', '2021-08-14', 12000.00, '2022-03-29', 12000.00, 'Chennai ', '1', '0 years 7 months', ' Family issue', 1, '2022-04-01 10:23:48', 0, NULL, 0, NULL, 1),
(4167, 8328, 'Cafs', 'Arakkonam', '2022-04-01', 15.00, '1970-01-01', 15.00, 'T nagre', '2', '0 years 0 months', 'Fist time i got the jobs', 1, '2022-04-01 11:15:02', 0, NULL, 0, NULL, 1),
(4168, 8332, 'Tradeplus', 'Sales executive', '2019-05-31', 31.00, '2022-03-31', 24000.00, 'Chennai', '1', '2 years 10 months', ' There was no growth in the organisation', 1, '2022-04-01 11:56:25', 0, NULL, 0, NULL, 1),
(4169, 8337, 'radiant cash managements pvt ltd', 'indexing', '2019-08-02', 10000.00, '2022-02-28', 13000.00, 'chennai', '1', '2 years 6 months', 'salary is not comfortable', 1, '2022-04-01 01:21:42', 0, NULL, 0, NULL, 1),
(4170, 8336, 'Hgs', 'Caller', '2017-12-15', 7000.00, '2020-09-30', 14000.00, 'Chennai', '1', '2 years 9 months', ' ', 1, '2022-04-01 01:23:57', 0, NULL, 0, NULL, 1),
(4171, 8339, 'Mahendra Next wealth ', 'Non voice (Check out free process)', '2021-09-06', 10000.00, '2022-04-30', 10000.00, 'Mallasamutharam', '1', '0 years 7 months', 'No proper transport facility', 1, '2022-04-01 05:10:19', 0, NULL, 0, NULL, 1),
(4172, 8340, 'Bharath finance ', 'Tele caller and data entry ', '2021-01-04', 8500.00, '2022-01-31', 10000.00, 'Mettur', '1', '1 years 0 months', ' Health issue for my mom .hence I decided to take care of my mom. ', 1, '2022-04-04 11:25:39', 0, NULL, 0, NULL, 1),
(4173, 8344, 'FRCM fidilites ', 'Ar caller', '2021-05-03', 17000.00, '2021-11-10', 20000.00, 'Adambakkam', '1', '0 years 6 months', ' Bez it\'s an night shift work and located in adambakkam traveling by my own vehicle There is no cab facilities thats why am left the job ', 1, '2022-04-04 12:49:30', 0, NULL, 0, NULL, 1),
(4174, 8345, 'Visionary RCM', 'Non voice excituve', '2019-06-03', 10000.00, '2021-11-10', 13000.00, 'Ekkatuthangal', '1', '2 years 5 months', ' It\'s night shift\nThat\'s the main reason ', 1, '2022-04-04 12:56:42', 0, NULL, 0, NULL, 1),
(4175, 8346, 'Teamless services Ltd', 'Financial advisor', '2022-03-08', 16432.00, '2022-03-25', 20000.00, 'Koyambedu ', '1', '0 years 0 months', ' Health issues', 1, '2022-04-04 03:09:12', 0, NULL, 0, NULL, 1),
(4176, 8348, 'JSP AUTOMOTIVE', 'Backoffice', '2021-03-01', 1.00, '1970-01-01', 15000.00, 'Annanagar', '2', '1 years 1 months', 'I want to develop my knowledge and grow up my carrier in better way', 1, '2022-04-05 12:03:07', 0, NULL, 0, NULL, 1),
(4177, 8349, 'Club Mahindra Holidays', 'Tele sales executive', '2021-12-31', 16000.00, '2022-04-01', 15000.00, 'Royapetta', '1', '0 years 3 months', ' ', 1, '2022-04-05 12:17:31', 0, NULL, 0, NULL, 1),
(4178, 8353, 'Best finance', 'Assistant manager', '2019-08-13', 9000.00, '2022-04-05', 15000.00, 'Erode', '2', '2 years 7 months', ' ', 1, '2022-04-05 01:49:03', 0, NULL, 0, NULL, 1),
(4179, 8354, 'SPLC private limited', 'Admin', '2015-02-05', 16000.00, '2018-06-07', 19000.00, 'Banglore', '1', '3 years 4 months', ' Food  not habit..', 1, '2022-04-05 03:56:13', 0, NULL, 0, NULL, 1),
(4180, 8355, 'AVIT', 'No', '2022-04-03', 20000.00, '2022-04-08', 20000.00, 'Mahabalipuram', '1', '0 years 0 months', ' Not will be staff\n coordination', 1, '2022-04-05 04:32:55', 0, NULL, 0, NULL, 1),
(4181, 8363, 'Sbi credit card ', 'Branch relationship executive ', '2021-11-29', 13000.00, '2022-04-05', 13000.00, 'Chennai ', '1', '0 years 4 months', ' Salary issue ', 1, '2022-04-06 01:58:57', 0, NULL, 0, NULL, 1),
(4182, 8368, 'Hyundai transys lear', 'For experience ', '2021-05-05', 14000.00, '2022-01-21', 16000.00, 'Errungattu kottai', '1', '0 years 8 months', 'Work gathering for employe comes to worng and it came to manager argument to us', 1, '2022-04-06 07:31:25', 0, NULL, 0, NULL, 1),
(4183, 8370, 'amazon', 'data associate', '2019-07-07', 20000.00, '1970-01-01', 30000.00, 'chennai', '2', '2 years 9 months', ' ', 1, '2022-04-07 10:25:23', 0, NULL, 0, NULL, 1),
(4184, 8371, 'Firstsource solutions limited ', 'Senior customer support associate', '2019-03-18', 10500.00, '2021-10-01', 11500.00, 'Navalur', '1', '2 years 6 months', ' Need to improve to skills and also salary issues', 1, '2022-04-07 11:02:50', 0, NULL, 0, NULL, 1),
(4185, 8375, 'Achilles chit fund ', 'Telecaling ', '2021-07-20', 10000.00, '2022-01-12', 10000.00, 'Koyambedu ', '1', '0 years 5 months', ' Low salary for that heavy work \nand pressure ', 1, '2022-04-07 12:46:02', 0, NULL, 0, NULL, 1),
(4186, 8379, 'E-service Center', 'Customer service', '2021-12-02', 7000.00, '2022-03-30', 7500.00, 'Erode', '1', '0 years 3 months', ' I  was expecting Higher salary . So, I am quit that job', 1, '2022-04-07 04:39:06', 0, NULL, 0, NULL, 1),
(4187, 8387, 'Fed bank financial services', 'Relationship manager', '2021-05-06', 30000.00, '2022-03-31', 30000.00, 'Chennai', '1', '0 years 10 months', ' Trying for better opportunities and next level career growth', 1, '2022-04-08 12:06:28', 0, NULL, 0, NULL, 1),
(4188, 8388, 'JUST dial ltd', 'Senior marketing ', '2018-05-21', 17000.00, '1970-01-01', 25000.00, 'Chennai ', '2', '3 years 10 months', ' Due to no carrier growth', 1, '2022-04-08 12:56:19', 0, NULL, 0, NULL, 1),
(4189, 8392, 'Chennai SSSS Equipments pvt ltd', 'Sales coordinator ', '2018-09-03', 35000.00, '1970-01-01', 35000.00, 'Chennai ', '2', '3 years 7 months', ' Career growth ', 1, '2022-04-08 02:46:14', 0, NULL, 0, NULL, 1),
(4190, 8392, 'Sbi life insurance ', 'Senior Agency manager ', '2014-05-04', 27000.00, '2016-04-08', 27000.00, 'Vellore ', '1', '7 years 11 months', 'Career prospects', 1, '2022-04-08 02:49:19', 0, NULL, 0, NULL, 1),
(4191, 8394, 'E-seva center', 'Customer service', '2021-12-02', 7000.00, '2022-03-30', 7500.00, 'Erode', '1', '0 years 3 months', ' I was expected high salary....', 1, '2022-04-08 02:53:32', 0, NULL, 0, NULL, 1),
(4192, 8386, 'Episource', 'Data entry executive', '2021-08-27', 12000.00, '2022-03-31', 12000.00, 'Tharamani', '1', '0 years 7 months', ' I want to change the field', 1, '2022-04-08 04:24:20', 0, NULL, 0, NULL, 1),
(4193, 8398, 'Wipro', 'Associate', '2013-11-02', 12000.00, '2015-04-08', 12000.00, 'Chennai', '1', '1 years 5 months', ' Not interested to continue with night shift', 1, '2022-04-08 04:34:03', 0, NULL, 0, NULL, 1),
(4194, 8398, 'Bharati Axa Life Insurance co ltd', 'Relationship officer', '2015-05-14', 15000.00, '2018-02-02', 18000.00, 'Gopalapuram', '1', '2 years 8 months', 'Better opportunity ', 1, '2022-04-08 04:36:33', 0, NULL, 0, NULL, 1),
(4195, 8398, 'Aditya birla sun life Insurance co ltd', 'Client Relationship Manager ', '2018-02-05', 21000.00, '2019-06-18', 21000.00, 'Adyar', '1', '1 years 4 months', 'Personal ', 1, '2022-04-08 04:38:19', 0, NULL, 0, NULL, 1),
(4196, 8398, 'Reliance nippon life  Insurance co Ltd', 'Executive Relationship Manager ', '2020-03-09', 24000.00, '1970-01-01', 27000.00, 'Nanganallur ', '2', '2 years 0 months', ' Carrer Growth', 1, '2022-04-08 04:40:16', 0, NULL, 0, NULL, 1),
(4197, 8401, 'Episource India Pvt Ltd', 'Data entry executive', '2021-06-26', 12000.00, '1970-01-01', 12000.00, 'Chennai', '2', '0 years 9 months', ' ', 1, '2022-04-08 07:06:51', 0, NULL, 0, NULL, 1),
(4198, 8402, 'starhealth and allied insurance', 'mis', '2021-12-06', 15000.00, '1970-01-01', 15000.00, 'nmr', '2', '0 years 4 months', ' ', 1, '2022-04-08 07:23:01', 0, NULL, 0, NULL, 1),
(4199, 8395, 'Barclays Shared Services', 'Process Advisor', '2019-01-31', 15000.00, '1970-01-01', 15000.00, 'DLF Cybercity', '2', '3 years 2 months', ' Rampdown', 1, '2022-04-08 11:46:09', 0, NULL, 0, NULL, 1),
(4200, 8395, 'HDB financial services', 'Relationship officer', '2020-02-14', 15000.00, '2020-08-15', 15000.00, 'Rk salai', '1', '0 years 6 months', 'Met with accident', 1, '2022-04-08 11:48:31', 0, NULL, 0, NULL, 1),
(4201, 8395, 'Eureka Outsourcing Services', 'customer support executive', '2021-04-24', 15000.00, '1970-01-01', 15000.00, 'Ratha towers, Thoraipakkam', '2', '0 years 11 months', 'Salary not enough', 1, '2022-04-08 11:50:28', 0, NULL, 0, NULL, 1),
(4202, 8406, 'IndusInd Bank', 'Cashier', '2021-03-15', 17500.00, '2022-02-13', 17500.00, 'Tiruchengode', '1', '0 years 10 months', ' Personal issues', 1, '2022-04-09 10:12:24', 0, NULL, 0, NULL, 1),
(4203, 8406, 'Just dial', 'Telemarketing executive', '2019-07-01', 16000.00, '2020-12-07', 14000.00, 'Chennai', '1', '1 years 5 months', 'Due to relocate', 1, '2022-04-09 10:14:00', 0, NULL, 0, NULL, 1),
(4204, 8389, 'Computer age Management Services', 'Assistant Processing Officer', '2019-05-06', 18000.00, '2021-09-09', 13000.00, 'LIC', '1', '2 years 4 months', 'Office has been changed', 1, '2022-04-09 10:46:55', 0, NULL, 0, NULL, 1),
(4205, 8410, 'HDFC Bank', 'Sales officer', '2017-07-14', 11000.00, '2019-02-21', 12500.00, 'Amanjikarai', '1', '1 years 7 months', ' Some personal issues', 1, '2022-04-09 01:27:29', 0, NULL, 0, NULL, 1),
(4206, 8410, 'Rvks association', 'Account assistant', '2019-07-14', 12000.00, '2020-05-30', 12000.00, 'Tnagar', '1', '0 years 10 months', 'Corona way-1', 1, '2022-04-09 01:28:57', 0, NULL, 0, NULL, 1),
(4207, 8415, 'Concentrix Daksh Services Pvt Ltd ', 'Customer Relationship Management ', '2021-09-12', 14000.00, '1970-01-01', 14000.00, 'Thiruvanmiyur ', '2', '0 years 6 months', ' Health Issue Because of Night Shifts', 1, '2022-04-11 10:00:45', 0, NULL, 0, NULL, 1),
(4208, 8418, 'Q connect', 'Senior customer care executive', '2019-02-14', 1.00, '2021-11-02', 14000.00, 'Guindy', '1', '2 years 8 months', ' Switch over company', 1, '2022-04-11 12:31:47', 0, NULL, 0, NULL, 1),
(4209, 8424, 'Sundaram finance holdings', 'Associate', '2017-07-03', 12000.00, '2020-12-31', 14500.00, 'Chennai', '1', '3 years 5 months', ' Process and location changed', 1, '2022-04-11 05:04:42', 1, '2022-04-11 05:06:58', 0, NULL, 1),
(4210, 8424, 'Efs facilities services India Pvt Ltd', 'Help desk executive', '2015-04-27', 10000.00, '2017-03-31', 10600.00, 'Chennai', '1', '1 years 11 months', 'Location changed in Bangalore', 1, '2022-04-11 05:06:30', 0, NULL, 0, NULL, 1),
(4211, 8427, 'AUJ Corp', 'HR Recruiter', '2021-09-15', 20000.00, '1970-01-01', 20000.00, 'Teynampet', '2', '0 years 6 months', 'I felt like my skills and talents are not been utilised to the fullest ', 1, '2022-04-11 07:42:35', 0, NULL, 0, NULL, 1),
(4212, 8431, 'hr', 'hr', '2019-04-01', 200000.00, '1970-01-01', 250000.00, 'chennai', '2', '3 years 0 months', 'less salary', 1, '2022-04-12 10:28:56', 0, NULL, 0, NULL, 1),
(4213, 8430, 'careernet technologies', 'hr', '2020-08-01', 20000.00, '1970-01-01', 20000.00, 'chennai', '2', '1 years 8 months', 'less salary', 87, '2022-04-12 11:01:00', 0, NULL, 0, NULL, 1),
(4214, 8432, 'magus customer dialog pvt. ltd.', 'senior associate', '2017-05-10', 15500.00, '2019-03-04', 16300.00, 'mylapore', '1', '1 years 9 months', ' Long Distance.\nCompany movie other place.', 1, '2022-04-12 11:26:14', 0, NULL, 0, NULL, 1),
(4215, 8434, 'genuis consultancy', 'mis', '2022-04-12', 11000.00, '1970-01-01', 11500.00, 'chennai', '2', '0 years 0 months', 'less salary', 87, '2022-04-12 11:53:12', 0, NULL, 0, NULL, 1),
(4216, 8442, 'Sundaram finance limited ', 'Associate ', '2018-05-30', 10146.00, '2021-10-30', 11000.00, 'Chennai ', '1', '3 years 5 months', ' Personal issues ', 1, '2022-04-12 01:54:51', 0, NULL, 0, NULL, 1),
(4217, 8442, 'Hatsun agro products ltd ', 'Associate ', '2021-11-02', 15800.00, '1970-01-01', 15800.00, 'Karapakkam ', '2', '0 years 5 months', 'I need to learn more skills and experience ', 1, '2022-04-12 01:56:21', 0, NULL, 0, NULL, 1),
(4218, 8444, 'tech aromas india private limited', 'hr executive', '2012-06-01', 8000.00, '2013-04-07', 8000.00, 'coimbatore', '1', '0 years 10 months', ' marriage', 1, '2022-04-12 07:39:21', 0, NULL, 0, NULL, 1),
(4219, 8444, 'ak minerals and technologies', 'admin executive', '2016-08-11', 11500.00, '2018-01-31', 12000.00, 'chennai', '1', '1 years 5 months', '2 baby got miscarrage', 1, '2022-04-12 07:44:01', 0, NULL, 0, NULL, 1),
(4220, 8444, 'metro english medium school', 'admin executive', '2018-03-07', 12000.00, '2019-02-28', 12000.00, 'chennai', '1', '4 years 1 months', 'third baby born', 1, '2022-04-12 07:46:51', 0, NULL, 0, NULL, 1),
(4221, 8448, 'Neeyamo ', 'BGV- vertex', '2020-09-07', 31.09, '2022-03-31', 11389.00, 'Madurai ', '1', '1 years 6 months', 'Health issue (night shift)', 1, '2022-04-13 11:19:58', 0, NULL, 0, NULL, 1),
(4222, 8452, 'Access healthcare', 'Billing', '2021-10-01', 12000.00, '1970-01-01', 12000.00, 'Ambattur', '2', '0 years 6 months', ' ', 1, '2022-04-13 01:59:29', 0, NULL, 0, NULL, 1),
(4223, 8452, 'Access healthcare', 'Billing', '2021-10-01', 12000.00, '1970-01-01', 12000.00, 'Ambattur', '2', '0 years 6 months', 'Long distance', 1, '2022-04-13 02:00:22', 0, NULL, 0, NULL, 1),
(4224, 8453, 'Bajaj Finserve Ltd', 'Collection agency', '2021-02-13', 18000.00, '2022-03-03', 18000.00, 'Erode', '1', '1 years 0 months', ' For salery increments', 1, '2022-04-13 02:36:37', 0, NULL, 0, NULL, 1),
(4225, 8455, 'Vijaya Kumar Sarees ', 'Accountant', '2017-04-13', 7000.00, '2019-10-31', 9000.00, 'Salem', '1', '2 years 6 months', ' Corona ', 1, '2022-04-13 04:01:04', 0, NULL, 0, NULL, 1),
(4226, 8455, 'Prince Foods ', 'Accountant ', '2021-04-19', 10000.00, '2021-10-31', 10000.00, 'Salem', '1', '0 years 6 months', 'Distance And Timing ', 1, '2022-04-13 04:02:22', 0, NULL, 0, NULL, 1),
(4227, 8456, 'Sairam typeing institutions ', 'System executive ', '2018-05-01', 5000.00, '2019-06-08', 6000.00, 'Erode', '1', '1 years 1 months', 'Gaing the knowledge ', 1, '2022-04-13 04:05:29', 0, NULL, 0, NULL, 1),
(4228, 8456, 'Auditor office ', 'Account executive ', '2019-06-09', 7500.00, '2020-02-26', 8000.00, 'Erode', '1', '0 years 8 months', 'Time management ', 1, '2022-04-13 04:06:43', 0, NULL, 0, NULL, 1),
(4229, 8456, 'Rk association ', 'Society Accounts  head', '2020-03-02', 9000.00, '2021-10-30', 14500.00, 'Erode', '1', '1 years 7 months', 'Time management ', 1, '2022-04-13 04:08:12', 0, NULL, 0, NULL, 1),
(4230, 8461, 'Mahendra nextwealth ', 'Trainee executive ', '2020-01-29', 7000.00, '2021-10-22', 12000.00, 'Salem', '1', '1 years 8 months', ' Health issues ', 1, '2022-04-15 10:41:44', 0, NULL, 0, NULL, 1),
(4231, 8458, 'Axis bank', 'Credit branch channel', '2020-01-24', 30.00, '2020-07-08', 15000.00, 'Ambattur estate', '1', '0 years 5 months', ' Covid issue', 1, '2022-04-15 11:46:56', 0, NULL, 0, NULL, 1),
(4232, 8462, 'GRT JEWELLERY ', 'Counter incharge ', '2018-02-01', 18000.00, '2022-03-31', 28000.00, 'Tirunelveli ', '1', '4 years 2 months', ' My wife native chennai.. so I change my location ', 1, '2022-04-15 03:15:38', 0, NULL, 0, NULL, 1),
(4233, 8466, 'Silairs ', 'Tellecaller', '2018-09-09', 17000.00, '2020-09-03', 18000.00, 'Delhi', '1', '1 years 11 months', ' Lockdown time in company change location chennai ', 1, '2022-04-16 01:34:22', 0, NULL, 0, NULL, 1),
(4234, 8466, 'Silairs', 'Tellecaller', '2018-09-09', 18000.00, '2020-09-03', 18000.00, 'Delhi', '1', '1 years 11 months', 'Lockdown time company not wrking in changing for chennai ', 1, '2022-04-16 01:37:28', 1, '2022-04-16 01:37:38', 0, NULL, 0),
(4235, 8468, 'Industrial engineering Consortium', 'Sales coordinator', '2022-01-10', 12000.00, '1970-01-01', 12000.00, 'Erode', '2', '0 years 3 months', 'Salary', 1, '2022-04-16 03:29:02', 0, NULL, 0, NULL, 1),
(4236, 8469, 'M-Kube Infocon Pvt Ltd', 'Customer Relationship Executive ', '2020-10-02', 7000.00, '1970-01-01', 10000.00, 'Madurai ', '2', '1 years 6 months', ' For my career Growth, I want to learn new things and i want to explore more myself ', 1, '2022-04-17 02:16:33', 0, NULL, 0, NULL, 1),
(4237, 8465, 'Asirvad micro finance', 'FDO', '2020-03-11', 10500.00, '2021-03-21', 19000.00, 'Chennai', '1', '1 years 0 months', ' Personal reasons', 1, '2022-04-18 11:20:43', 0, NULL, 0, NULL, 1),
(4238, 8475, 'Medicals', 'Sales rep', '2020-02-01', 9000.00, '2022-01-01', 9000.00, 'Erode', '1', '1 years 11 months', ' Salary expectations', 1, '2022-04-18 11:24:49', 0, NULL, 0, NULL, 1),
(4239, 8465, 'Ivangel sales and service', 'Sales associate', '2021-12-01', 19000.00, '2022-03-20', 19000.00, 'Chennai', '1', '0 years 3 months', 'Contract job', 1, '2022-04-18 11:25:06', 0, NULL, 0, NULL, 1),
(4240, 8475, 'Medical', 'Sales rep', '2020-02-01', 9000.00, '2022-01-01', 9000.00, 'Erode', '1', '1 years 11 months', 'Salary expectations\nLearning for more\nGrowthing myself', 1, '2022-04-18 11:26:25', 0, NULL, 0, NULL, 1),
(4241, 8477, 'Fusion microfinance pvt Ltd ', 'Audit officer', '2022-02-16', 18000.00, '2022-03-18', 18000.00, 'Trichy', '1', '0 years 1 months', ' ', 1, '2022-04-18 12:20:55', 0, NULL, 0, NULL, 1),
(4242, 8477, 'Madura microfinance pvt Ltd ', 'Internal auditor', '2019-10-14', 12000.00, '2021-06-14', 12000.00, 'Trichy', '1', '1 years 8 months', 'Health issues', 1, '2022-04-18 12:22:15', 0, NULL, 0, NULL, 1),
(4243, 8478, 'altrust techonology', 'associate', '2020-06-11', 11000.00, '2022-04-13', 13000.00, 'chennai', '1', '1 years 10 months', ' growth', 1, '2022-04-18 12:34:47', 0, NULL, 0, NULL, 1),
(4244, 8480, 'Naban natural', 'Tellicaller,billing, sales.', '2021-04-25', 10000.00, '2022-03-18', 10000.00, 'Thanjavur', '1', '0 years 10 months', 'Over time working  ', 1, '2022-04-18 03:00:59', 0, NULL, 0, NULL, 1),
(4245, 8479, 'Nanban natural (organic shop)', 'Sale\'s, telling, billing', '2021-10-25', 10000.00, '2022-01-20', 10000.00, 'Thanjavur', '1', '0 years 2 months', ' Over time working pressure', 1, '2022-04-18 03:11:53', 0, NULL, 0, NULL, 1),
(4246, 8482, 'radiant cash management', 'banking executive', '2018-07-17', 12000.00, '2022-02-12', 13000.00, 'chennai', '1', '3 years 6 months', ' growth', 1, '2022-04-18 04:44:27', 0, NULL, 0, NULL, 1),
(4247, 8487, 'Bajaj Rbl bank ', 'Relationship Executive ', '2021-01-05', 15000.00, '2022-05-05', 35000.00, 'Banglore ', '1', '1 years 4 months', 'Personal issues  so iam changing my work location ', 1, '2022-04-19 01:02:44', 0, NULL, 0, NULL, 1),
(4248, 8490, 'Deyga organics', 'Logistics executive', '2019-11-26', 10000.00, '1970-01-01', 15000.00, 'Erode', '2', '2 years 4 months', ' I learn all the works in my previous job so I want to learn anything new.', 1, '2022-04-19 07:22:44', 0, NULL, 0, NULL, 1),
(4249, 8491, 'Quess corp', 'Telecaller', '2021-07-31', 12000.00, '2022-04-04', 12000.00, 'Madipakkam', '1', '0 years 8 months', ' Long distance', 1, '2022-04-19 09:07:38', 0, NULL, 0, NULL, 1),
(4250, 8497, 'Datazoic Machines pvt ltd', 'HR Associate', '2021-08-17', 180000.00, '2022-03-14', 240000.00, 'OMR', '1', '0 years 8 months', ' To get more Exposure and train myself in a better organization and improve my career growth', 1, '2022-04-20 12:57:45', 0, NULL, 0, NULL, 1),
(4251, 8503, 'Bajaj motorcycle (finance)', 'Finance Sales', '2021-01-05', 12000.00, '1970-01-01', 14000.00, 'Tiruppur', '2', '1 years 3 months', ' working', 1, '2022-04-20 09:58:01', 0, NULL, 0, NULL, 1),
(4252, 8501, 'Techmahindra', 'Custom support', '2021-09-15', 10000.00, '1970-01-01', 10000.00, 'Work for home', '2', '0 years 7 months', ' Office location too long', 1, '2022-04-21 07:24:06', 0, NULL, 0, NULL, 1),
(4253, 8505, 'Regal foundation', 'Admin &HR', '2019-06-03', 15000.00, '2020-12-31', 16000.00, 'Tambaram', '1', '1 years 6 months', ' Work nature changed and no salary increment done', 1, '2022-04-21 03:00:31', 0, NULL, 0, NULL, 1),
(4254, 8505, 'Premier housing and properties', 'HR', '2021-01-05', 18500.00, '1970-01-01', 20000.00, 'Tambaram', '2', '1 years 3 months', 'Seeing for some good offer ', 1, '2022-04-21 03:02:25', 0, NULL, 0, NULL, 1),
(4255, 8231, 'fresher', 'Fresher', '2022-04-21', 10000.00, '1970-01-01', 10000.00, 'erode', '2', '0 years 0 months', 'fresher', 87, '2022-04-21 04:47:47', 0, NULL, 0, NULL, 1),
(4256, 8507, 'Relaince smart', 'Sales & billing', '2018-07-18', 10000.00, '2021-11-08', 10000.00, 'Erode', '1', '3 years 3 months', ' Timing issue', 1, '2022-04-21 07:08:07', 0, NULL, 0, NULL, 1),
(4257, 8509, 'Dat solution ', 'Hr ', '2021-04-21', 14000.00, '2022-04-20', 14000.00, 'Bangalore', '1', '0 years 11 months', ' Health issues', 1, '2022-04-21 07:56:34', 0, NULL, 0, NULL, 1),
(4258, 8511, 'Mahendra Next Wealth IT Software and Private Limit', 'Jumio', '2021-02-16', 8000.00, '2022-04-30', 12000.00, 'Namakkal', '1', '1 years 2 months', ' N/a', 1, '2022-04-22 10:03:47', 0, NULL, 0, NULL, 1),
(4259, 8513, 'KPR  industry ', 'B.SC ', '2021-02-21', 13000.00, '2022-04-22', 15000.00, 'Coimbatore ', '1', '1 years 2 months', ' I am not ready to work long distance so I choose my native place works', 1, '2022-04-22 11:50:37', 0, NULL, 0, NULL, 1),
(4260, 8516, 'Lotus family ', 'Telecaller', '2020-10-02', 8000.00, '2021-03-22', 8000.00, 'vilar bypass', '1', '0 years 5 months', ' due to corona', 1, '2022-04-22 12:27:37', 0, NULL, 0, NULL, 1),
(4261, 8517, 'Data entry', 'Data entry', '2019-10-11', 9400.00, '1970-01-01', 10500.00, 'Triplicane pattulous road', '2', '2 years 6 months', 'I am working in sundaram finance company in 2.5 years but my salary is very down so I\'ll change my job', 1, '2022-04-22 01:46:26', 0, NULL, 0, NULL, 1),
(4262, 8518, 'assestone', 'hr', '2021-02-01', 15000.00, '2022-04-01', 18000.00, 'chennai', '1', '1 years 2 months', 'Looking for better opportunities', 87, '2022-04-23 11:41:56', 1, '2022-04-23 11:48:34', 0, NULL, 0),
(4263, 8518, 'Assetone', 'Assistant IT Recruiter ', '2021-02-01', 18000.00, '1970-01-01', 18000.00, 'remote', '2', '1 years 2 months', 'My role in the current organization is repetitive and also looking for a work from office role. ', 1, '2022-04-23 11:48:15', 0, NULL, 0, NULL, 1),
(4264, 8525, 'interns', 'chennai', '2020-08-18', 15000.00, '2021-04-26', 18000.00, 'chennai', '1', '0 years 8 months', 'growth ', 1, '2022-04-23 12:48:12', 0, NULL, 0, NULL, 1),
(4265, 8529, 'Isuzu motors indias pvt Ltd, sricity', 'Manufacturing ( logistics) ', '2022-06-14', 1.75, '2022-06-16', 1.75, 'Sricity', '1', '0 years 0 months', ' This job was not suitable for my related education, I will be working related to commerce field', 1, '2022-04-23 05:09:27', 0, NULL, 0, NULL, 1),
(4266, 8529, 'Isuzu motors indias pvt ltd', 'Manufacturing department', '2022-06-14', 1.75, '2022-06-16', 13500.00, 'Sicity, tada', '1', '0 years 0 months', 'This job was Not relavent to my studies', 1, '2022-04-23 05:18:39', 0, NULL, 0, NULL, 1),
(4267, 8530, 'Billdesk', 'Operation of executive', '2021-12-14', 9000.00, '1970-01-01', 9000.00, 'T Nagar', '2', '0 years 4 months', ' I want to grow up my self  ', 1, '2022-04-23 06:51:39', 0, NULL, 0, NULL, 1),
(4268, 8533, 'Altruist customer management private Ltd ', 'Business associate ', '2019-12-17', 10000.00, '2021-03-27', 11000.00, 'Karapakkam', '1', '1 years 3 months', ' Upgrade ', 1, '2022-04-23 07:25:06', 0, NULL, 0, NULL, 1),
(4269, 8526, 'NTC Logistics India Pvt Ltd ', 'Accounts executive ', '2020-12-09', 13000.00, '1970-01-01', 15000.00, 'Parrys ', '2', '1 years 4 months', ' did not provide adequate Pay & not make Confirmation', 1, '2022-04-23 07:29:24', 1, '2022-04-23 07:31:57', 0, NULL, 1),
(4270, 8534, 'Navo hosting', 'Telecaller sales ', '2020-02-02', 16000.00, '2022-03-05', 16000.00, 'Eorde near bus stand', '1', '2 years 1 months', 'Disrespectful behaviour ', 1, '2022-04-25 11:00:48', 0, NULL, 0, NULL, 1),
(4271, 8535, 'Samsung semiconductor', 'It assistant ', '2022-01-07', 15000.00, '2022-03-18', 15500.00, 'Bangalore ', '1', '0 years 2 months', ' Family problem and documents verification', 1, '2022-04-25 11:06:04', 0, NULL, 0, NULL, 1),
(4272, 8532, 'eureka outsourcing solution', 'mis', '2021-03-23', 12000.00, '2022-01-31', 18000.00, 'chennai', '1', '0 years 10 months', 'office closed', 87, '2022-04-25 12:29:11', 0, NULL, 0, NULL, 1),
(4273, 8537, 'telecaller voice process', 'telecaller', '2020-08-01', 15000.00, '2022-02-01', 18000.00, 'chennai', '1', '1 years 6 months', 'others', 87, '2022-04-25 01:02:04', 0, NULL, 0, NULL, 1),
(4274, 8538, 'Vizza insurance', 'Telecaller', '2021-11-07', 10000.00, '2022-03-11', 12000.00, 'Chennai', '1', '0 years 4 months', 'Due to some personal reasons', 1, '2022-04-25 01:33:41', 0, NULL, 0, NULL, 1),
(4275, 8539, 'Bankbazaar.com', 'Customer Relationship Officer', '2016-08-26', 21000.00, '2020-05-25', 27000.00, 'Ambattur Chennai', '1', '3 years 8 months', ' Personal Reasons', 1, '2022-04-25 02:35:10', 0, NULL, 0, NULL, 1),
(4276, 8502, 'Kapston facilities management', 'Hr recruiter', '2021-08-23', 12000.00, '1970-01-01', 12000.00, 'Gunidy', '2', '0 years 8 months', ' ', 1, '2022-04-25 03:37:12', 0, NULL, 0, NULL, 1),
(4277, 8502, 'Kapston facilities management', 'Hr recruiter', '2021-08-23', 12000.00, '1970-01-01', 12000.00, 'Chennai', '2', '0 years 8 months', 'This company shift to Hyderabad ', 1, '2022-04-25 03:39:08', 0, NULL, 0, NULL, 1),
(4278, 8542, 'Info Network Management', 'Admin cum Marketing', '2017-09-13', 13000.00, '2020-12-22', 13000.00, 'Trichy', '1', '3 years 3 months', ' Covid 19', 1, '2022-04-25 04:26:44', 0, NULL, 0, NULL, 1),
(4279, 8542, 'Randstad India Private Limited', 'Branch Relationship Executive', '2021-01-10', 16000.00, '1970-01-01', 16000.00, 'Thanjavur', '2', '1 years 3 months', 'No ', 1, '2022-04-25 04:28:22', 0, NULL, 0, NULL, 1),
(4280, 8543, 'Professional courier', 'System operator', '2019-03-25', 8000.00, '2021-06-28', 8000.00, 'Chengalpattu', '1', '2 years 3 months', 'Due to lack of salary ', 1, '2022-04-25 07:04:53', 0, NULL, 0, NULL, 1),
(4281, 8544, 'Accenture ', 'Process associate', '2020-06-16', 9800.00, '1970-01-01', 16000.00, 'Chennai ', '2', '1 years 10 months', ' ', 1, '2022-04-25 08:28:10', 0, NULL, 0, NULL, 1),
(4282, 8546, 'sbi', 'cse', '2019-06-17', 10000.00, '1970-01-01', 14000.00, 'chennai', '2', '2 years 10 months', ' growth', 1, '2022-04-26 10:28:08', 0, NULL, 0, NULL, 1),
(4283, 8547, 'Aakash neet coaching center ', 'Telecaller', '2020-07-06', 14000.00, '2021-01-30', 15000.00, 'Erode', '1', '0 years 6 months', ' ', 1, '2022-04-26 11:01:59', 0, NULL, 0, NULL, 1),
(4284, 8335, 'Rgracademyneet', 'Telecaller', '2013-04-26', 15.00, '2022-04-22', 15000.00, 'Mandaveli', '1', '8 years 11 months', ' Married', 1, '2022-04-26 01:21:22', 0, NULL, 0, NULL, 1),
(4285, 8553, 'Yellow umbrella', 'telecaller', '2022-01-26', 15.00, '2022-04-20', 15000.00, 'Padmanaba nagara', '1', '0 years 2 months', ' That yellow umbrella Company is note given properly salary', 1, '2022-04-26 04:58:52', 0, NULL, 0, NULL, 1),
(4286, 8555, 'Yellow umbrella', 'Telesales', '2022-01-01', 15.00, '2022-04-20', 15000.00, 'padmanabanagara', '1', '0 years 2 months', ' That company was not given proper salary and perfect date also not given the salary', 1, '2022-04-26 05:50:30', 0, NULL, 0, NULL, 1),
(4287, 8555, 'Tata sky', 'telecallee', '2018-05-20', 10.00, '2019-05-08', 13000.00, 'k r road', '1', '0 years 11 months', 'There was pressure on targets', 1, '2022-04-26 05:52:20', 0, NULL, 0, NULL, 1),
(4288, 8557, 'TATA AIA LIFE INSURANCE CO LTD', 'Relationship Manager', '2022-03-02', 20000.00, '2022-05-01', 20000.00, 'Begumpet Hyderabad', '1', '0 years 1 months', ' NA', 1, '2022-04-26 07:30:06', 0, NULL, 0, NULL, 1),
(4289, 8558, 'fresher', 'fresher', '2022-04-27', 0.00, '1970-01-01', 0.00, 'chennai', '2', '0 years 0 months', 'fresher', 87, '2022-04-27 10:18:00', 0, NULL, 0, NULL, 1),
(4290, 8558, 'Umamageshwari', 'Account', '2021-02-01', 15000.00, '2021-08-31', 15000.00, 'Chennai', '1', '0 years 6 months', ' ', 1, '2022-04-27 10:30:32', 0, NULL, 0, NULL, 1),
(4291, 8560, 'GKS Real Estate agency', 'Administration and marketing', '2021-09-08', 15000.00, '2022-03-31', 15000.00, 'Perambalur', '1', '0 years 6 months', ' Because of my health issues', 1, '2022-04-27 12:06:08', 0, NULL, 0, NULL, 1),
(4292, 8563, 'Areas federal life insurance Co ltd', 'Agency leader', '2020-09-27', 15000.00, '2022-04-27', 15000.00, 'Erode', '2', '1 years 7 months', ' Searching for new job\n\n', 1, '2022-04-27 12:14:33', 0, NULL, 0, NULL, 1),
(4293, 8564, 'Radiant Insurance Broking Pvt Ltd', 'Senior Sales Manager', '2021-08-10', 5.00, '1970-01-01', 37900.00, 'Royapettah', '2', '0 years 8 months', ' Personal', 1, '2022-04-27 12:19:27', 0, NULL, 0, NULL, 1),
(4294, 8567, 'Jobixoindia ', 'Hr recruiter ', '2021-12-28', 11000.00, '2022-01-27', 11000.00, 'Chennai', '1', '0 years 0 months', ' Due to long distance ', 1, '2022-04-27 12:48:19', 0, NULL, 0, NULL, 1),
(4295, 8570, '11 square info tech ', 'HR recruiter', '2021-05-08', 12000.00, '1970-01-01', 13500.00, 'Chennai', '2', '0 years 11 months', ' Salary issues ', 1, '2022-04-27 01:11:36', 0, NULL, 0, NULL, 1),
(4296, 8569, 'Shaya info Tech Pvt ltd', 'hr recruiter ', '2021-11-02', 12000.00, '1970-01-01', 12000.00, 'Chennai ', '2', '0 years 5 months', ' salary issue ', 1, '2022-04-27 01:14:59', 0, NULL, 0, NULL, 1),
(4297, 8574, 'cognizant', 'customer support executive', '2017-07-15', 13000.00, '2018-07-19', 15000.00, 'chennai', '1', '1 years 0 months', ' growth', 1, '2022-04-27 06:21:32', 0, NULL, 0, NULL, 1),
(4298, 8575, 'tangedgo', 'cse', '2016-07-27', 10000.00, '2019-04-29', 15000.00, 'chennai', '1', '2 years 9 months', ' growth', 1, '2022-04-27 06:32:37', 0, NULL, 0, NULL, 1),
(4299, 8577, 'kotak insurance', 'junior associate', '2020-02-19', 13000.00, '2020-08-16', 15000.00, 'chennai', '1', '0 years 5 months', ' ramp down', 1, '2022-04-27 06:48:59', 0, NULL, 0, NULL, 1),
(4300, 8583, 'imarque solutions', 'cse', '2017-02-13', 9000.00, '2018-06-27', 12000.00, 'chennai', '1', '1 years 4 months', ' growth', 1, '2022-04-28 08:25:46', 0, NULL, 0, NULL, 1),
(4301, 8584, 'qconneqt business solutions', 'cse', '2019-05-14', 10000.00, '2021-12-12', 12000.00, 'chennai', '1', '2 years 6 months', ' growth', 1, '2022-04-28 08:31:46', 0, NULL, 0, NULL, 1),
(4302, 8586, 'Pepper India resolution private limited', 'Recovery agent', '2020-04-01', 13500.00, '2021-02-01', 13500.00, 'Vellore', '1', '0 years 10 months', ' Personal problem', 1, '2022-04-28 11:31:17', 0, NULL, 0, NULL, 1),
(4303, 8587, 'SBI Life insurance', 'Telecaller', '2020-05-01', 15000.00, '2021-07-01', 17000.00, 'Karnataka singasandra', '1', '1 years 2 months', ' ', 1, '2022-04-28 12:53:25', 0, NULL, 0, NULL, 1),
(4304, 1733, 'Garuda Aerospace Pvt Ltd', 'HR executive', '2021-07-16', 13000.00, '2022-04-19', 18000.00, 'Chennai', '1', '0 years 9 months', 'Since salary is not credited on time', 1, '2022-04-28 02:04:20', 0, NULL, 0, NULL, 1),
(4305, 8588, 'GM Financial', 'Sales Avisor', '2022-04-28', 23000.00, '2022-04-06', 23000.00, 'Bangalore', '1', '0 years 0 months', 'Personal Growth', 60, '2022-04-28 02:53:14', 0, NULL, 0, NULL, 1),
(4306, 8590, 'INCA Hammock Mfg & Export (P) ltd', 'HR Assistant', '2021-08-16', 15000.00, '1970-01-01', 17000.00, 'Rathnamangalam', '2', '0 years 8 months', ' Need a job change ', 1, '2022-04-28 03:47:07', 0, NULL, 0, NULL, 1),
(4307, 8593, 'One Life Homehealth care', 'Invoice ', '2019-06-01', 15000.00, '2021-02-05', 18000.00, 'Guindy', '1', '1 years 8 months', 'Personal issue', 1, '2022-04-29 10:38:47', 0, NULL, 0, NULL, 1),
(4308, 8594, 'HDB Financial services', 'Credit relationship manager', '2018-04-29', 19000.00, '2019-12-20', 22000.00, 'Chennai', '1', '1 years 7 months', ' ', 1, '2022-04-29 11:50:29', 0, NULL, 0, NULL, 1),
(4309, 8599, 'Suryoday foundation', 'Tnagar', '2021-12-11', 15000.00, '2022-03-01', 15000.00, 'Tnagar ', '1', '0 years 2 months', ' I feel uncomfortable because , I am only one to work in female', 1, '2022-04-29 03:33:50', 0, NULL, 0, NULL, 1),
(4310, 8601, 'Hdfc bank', 'Sales executive', '2020-11-28', 15000.00, '2021-01-31', 15000.00, 'Thanjavur', '1', '0 years 2 months', ' Not interested in sales', 1, '2022-04-29 05:45:00', 0, NULL, 0, NULL, 1),
(4311, 8601, 'Reliance Nippon life insurance Pvt Ltd', 'Agency recruitment and development manager', '2021-01-01', 15000.00, '2021-05-31', 15000.00, 'Thanjavur', '1', '0 years 4 months', 'Pressured on sales ', 1, '2022-04-29 05:46:53', 0, NULL, 0, NULL, 1),
(4312, 8601, 'Chan migrate consultancy Pvt Ltd', 'Hr executive', '2021-06-01', 18000.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 10 months', 'Looking for good package', 1, '2022-04-29 05:47:51', 0, NULL, 0, NULL, 1),
(4313, 8608, 'System administrator ', 'System administrator ', '2021-08-26', 12000.00, '1970-01-01', 12000.00, 'Perundhurai ', '2', '0 years 8 months', ' Health issue..', 1, '2022-04-30 10:51:17', 0, NULL, 0, NULL, 1),
(4314, 8605, 'banglore', 'hr', '2022-04-30', 12000.00, '1970-01-01', 15000.00, 'banglore', '2', '0 years 0 months', 'location is not suitable', 87, '2022-04-30 01:12:43', 0, NULL, 0, NULL, 1),
(4315, 7708, 'Exela technologies ', 'Chetpet', '2019-04-19', 10500.00, '2021-02-05', 11500.00, 'Chennai ', '1', '1 years 9 months', ' ', 1, '2022-05-02 11:22:32', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4316, 8620, 'Cloud life technologies pvt Ltd ', 'Sales', '2022-05-02', 18.00, '1970-01-01', 18.00, 'Koramangala', '2', '0 years 0 months', ' They mentioned me as upscond.. ', 1, '2022-05-02 02:29:09', 0, NULL, 0, NULL, 1),
(4317, 8622, 'Cameo', 'Data entry ', '2021-09-02', 9000.00, '1970-01-01', 9000.00, 'Lic', '2', '0 years 8 months', ' Long distance ', 1, '2022-05-02 03:34:32', 0, NULL, 0, NULL, 1),
(4318, 8626, 'Radiant cash management service pvt. Lit', 'Billing executive ', '2020-02-10', 13000.00, '2021-03-27', 16000.00, 'Chennai ', '1', '1 years 1 months', ' Personal issue ', 1, '2022-05-02 05:04:49', 0, NULL, 0, NULL, 1),
(4319, 8626, 'Kotak Mahindra Bank pvt. Lim', 'Assistant acquisition manager', '2021-12-06', 16000.00, '2022-03-10', 16000.00, 'Koyambedu ', '1', '0 years 3 months', 'Personal issue ', 1, '2022-05-02 05:06:39', 0, NULL, 0, NULL, 1),
(4320, 8630, 'Culminant Outlook', 'IT Recruiter', '2021-08-02', 12000.00, '1970-01-01', 17695.00, 'Ashok Nagar', '2', '0 years 9 months', ' Career Growth', 1, '2022-05-03 10:05:11', 0, NULL, 0, NULL, 1),
(4321, 8637, '5k car care ', 'HR Recruiter ', '2022-02-14', 15000.00, '1970-01-01', 15000.00, 'Arumbakkam ', '2', '0 years 2 months', 'Need hike and career Growth ', 1, '2022-05-03 11:52:58', 0, NULL, 0, NULL, 1),
(4322, 8636, 'Ass broilers', 'Billing and collection', '2020-05-01', 10000.00, '2022-02-15', 12000.00, 'Tiruchengode', '1', '1 years 9 months', ' Salary problem', 1, '2022-05-03 12:11:15', 0, NULL, 0, NULL, 1),
(4323, 8641, 'Cognizant Technology Solutions', 'Process Executive', '2020-07-09', 180000.00, '2021-09-30', 180000.00, 'Chennai', '1', '1 years 2 months', ' I wanted to pursue a job in the hr Field and wanted to learn and explore new things. ', 1, '2022-05-03 11:39:36', 0, NULL, 0, NULL, 1),
(4324, 8645, 'Innovsource services pvt ltd ', 'Executive client service ', '2021-12-03', 17000.00, '2022-04-17', 17000.00, 'Chennai ', '1', '0 years 4 months', ' Contract period finished ', 1, '2022-05-04 10:55:06', 0, NULL, 0, NULL, 1),
(4325, 8647, 'Loan sales', 'Telecaller', '2022-05-04', 3.00, '1970-01-01', 12.50, 'Thanjavur', '2', '0 years 0 months', ' ', 1, '2022-05-04 11:25:30', 0, NULL, 0, NULL, 1),
(4326, 8648, 'Telecaller', 'Sales personal loan', '2018-02-03', 3.00, '1970-01-01', 13000.00, 'Thanjavur', '2', '4 years 3 months', ' ', 1, '2022-05-04 11:37:27', 0, NULL, 0, NULL, 1),
(4327, 8649, '23 solution ', 'Telecaller', '2021-08-26', 10000.00, '1970-01-01', 10000.00, 'T.nager', '2', '0 years 8 months', 'Salary not comfortable so that\'s why ', 1, '2022-05-04 12:02:26', 0, NULL, 0, NULL, 1),
(4328, 8650, 'Kongu institution', 'Junior Assistant in admin', '2014-05-24', 12000.00, '2022-03-10', 23000.00, 'Erode', '1', '7 years 9 months', 'Own business', 1, '2022-05-04 12:40:11', 0, NULL, 0, NULL, 1),
(4329, 8652, 'Nplus technologies ', 'Laravel developer ', '2021-07-02', 7.08, '2022-01-07', 10000.00, 'Coimbatore ', '1', '0 years 6 months', ' ', 1, '2022-05-04 04:53:17', 0, NULL, 0, NULL, 1),
(4330, 8654, 'Lotus agency ', 'Finance executive ', '2018-01-03', 8000.00, '2019-01-27', 13000.00, 'Erode ', '1', '1 years 0 months', 'Finance relocated ', 1, '2022-05-05 10:34:50', 1, '2022-05-05 10:36:54', 0, NULL, 1),
(4331, 8654, 'Tamil matrimony ', 'Payment and chat executive ', '2019-02-05', 12000.00, '2020-02-05', 12000.00, 'Chennai', '1', '1 years 0 months', 'Corona situation ', 1, '2022-05-05 10:39:02', 0, NULL, 0, NULL, 1),
(4332, 8654, 'India motor parts and accessories limited ', 'Accountant ', '2021-06-10', 13000.00, '2021-12-31', 13000.00, 'Erode ', '1', '0 years 6 months', 'Personal problems ', 1, '2022-05-05 10:41:59', 0, NULL, 0, NULL, 1),
(4333, 8654, 'Icons technology ', 'Process associate', '2021-08-18', 12000.00, '2022-04-10', 12000.00, 'Coimbatore', '1', '0 years 7 months', 'Long distance  home town to working place ', 1, '2022-05-05 10:43:44', 0, NULL, 0, NULL, 1),
(4334, 8657, 'hbl global pvt ltd. me-hin tech edge solutions', 'sr.sale executive', '2016-06-26', 15000.00, '2019-12-31', 20000.00, 'bangalore', '1', '3 years 6 months', 'change of job ', 1, '2022-05-05 11:50:06', 0, NULL, 0, NULL, 1),
(4335, 8646, 'tarnea technology pvt ltd', 'hR', '2021-01-01', 12000.00, '2022-05-05', 15000.00, 'madurai', '1', '1 years 4 months', 'less salary', 87, '2022-05-05 03:13:23', 0, NULL, 0, NULL, 1),
(4336, 8659, 'RR donnelley', 'Financial associate', '2020-10-08', 12500.00, '2021-10-08', 12500.00, 'Teynampe', '1', '1 years 0 months', 'I wanted to become a hr', 1, '2022-05-05 03:15:37', 0, NULL, 0, NULL, 1),
(4337, 8659, 'RR donnelley', 'Financial associate', '2020-10-08', 12500.00, '2021-10-08', 12500.00, 'Chennai', '1', '1 years 0 months', 'I was searching for hr job', 1, '2022-05-05 03:18:44', 0, NULL, 0, NULL, 1),
(4338, 8661, 'Indusland bank ', 'Inside sales associate ', '2020-10-05', 16000.00, '2021-08-13', 16000.00, 'Sholinganallur ', '1', '0 years 10 months', ' Family problem so quick the job', 1, '2022-05-05 05:22:56', 0, NULL, 0, NULL, 1),
(4339, 8662, 'Realaince email', 'Sales', '2020-10-06', 10000.00, '2022-02-06', 10000.00, 'Erode', '1', '1 years 4 months', ' Timing issue', 1, '2022-05-06 09:37:46', 0, NULL, 0, NULL, 1),
(4340, 8664, 'Sunray engineering and technology Pvt. Ltd', 'Accontant/Hr/Admin', '2012-05-02', 17000.00, '2012-08-08', 17000.00, 'Mount road', '1', '0 years 3 months', ' Marriage', 1, '2022-05-06 09:59:49', 0, NULL, 0, NULL, 1),
(4341, 8665, 'Capital fincorp', 'Telecaller', '2019-07-10', 6500.00, '2020-01-04', 6500.00, 'Erode', '1', '0 years 5 months', ' Timing issue', 1, '2022-05-06 10:44:14', 0, NULL, 0, NULL, 1),
(4342, 8665, 'K square automation ', 'Supervising and accounts', '2020-02-19', 10500.00, '2021-03-18', 10500.00, 'Erode', '1', '1 years 0 months', 'No salary increment', 1, '2022-05-06 10:47:43', 0, NULL, 0, NULL, 1),
(4343, 8673, 'Salcomp technology india pvt LTD', 'Quality line leader', '2021-06-28', 20000.00, '2021-09-01', 20000.00, 'Chennai', '1', '0 years 2 months', ' ', 1, '2022-05-06 12:01:26', 0, NULL, 0, NULL, 1),
(4344, 8675, 'Sbi Payment Service And Pvt', 'Telecalling executive', '2020-12-20', 31000.00, '2022-04-02', 31000.00, 'Mugalivakkam', '1', '1 years 3 months', ' The process which is moved  to vendors aswellas  the salery which is not adequate for me', 1, '2022-05-06 12:44:06', 0, NULL, 0, NULL, 1),
(4345, 8676, 'CAFS', 'Sales', '2022-05-06', 12000.00, '1970-01-01', 13000.00, 'TNagar', '2', '0 years 3 months', 'Salary lowest', 1, '2022-05-06 12:47:27', 0, NULL, 0, NULL, 1),
(4346, 8677, 'Taskmo pvt Ltd', 'Territory Sales Manager', '2022-03-10', 30000.00, '1970-01-01', 28400.00, 'Chennai', '2', '0 years 1 months', ' Commision based Work,', 1, '2022-05-06 02:42:10', 0, NULL, 0, NULL, 1),
(4347, 8680, 'SRI murugan agency ', 'Marketing ', '2017-08-16', 15000.00, '2021-05-20', 20000.00, 'Vanagaram', '1', '3 years 9 months', ' Campany is closed than should be reasone', 1, '2022-05-07 09:59:31', 0, NULL, 0, NULL, 1),
(4348, 8681, 'The Deal', 'Research Analyst', '2019-10-07', 18500.00, '2021-08-26', 18500.00, 'Chennai', '1', '1 years 10 months', ' Low exposure and illness', 1, '2022-05-07 10:50:36', 0, NULL, 0, NULL, 1),
(4349, 8689, 'HDFC bank', 'Telecaller', '2020-11-01', 13000.00, '1970-01-01', 15000.00, 'Chennai', '2', '1 years 6 months', ' ', 1, '2022-05-07 08:45:04', 0, NULL, 0, NULL, 1),
(4350, 8035, 'STARTEK', 'Customer support executive', '2019-06-14', 13000.00, '2021-06-16', 13000.00, 'Chennai', '1', '2 years 0 months', ' Process change', 1, '2022-05-08 09:00:50', 0, NULL, 0, NULL, 1),
(4351, 8691, 'Xascom info solution ', 'Telecalling and field executive ', '2021-07-08', 15000.00, '2022-05-09', 17000.00, 'Kodambakkam ', '1', '0 years 10 months', ' Over timing for field and salary not given properly including petrol allowance ', 1, '2022-05-09 11:02:56', 0, NULL, 0, NULL, 1),
(4352, 8696, 'Blue chip hr solution', 'Hr recruiter', '2022-03-07', 12000.00, '1970-01-01', 12000.00, 'Guindy', '2', '0 years 2 months', '   Not comfortable hostel and food', 1, '2022-05-09 04:13:29', 0, NULL, 0, NULL, 1),
(4353, 8700, 'Sathy Bajaj showroom ', 'Sales', '2021-11-22', 7000.00, '2022-04-30', 7000.00, 'Sathyamangalam ', '1', '0 years 5 months', ' Work in i am not ok', 1, '2022-05-10 10:46:42', 0, NULL, 0, NULL, 1),
(4354, 8701, '5 year ', 'Koulti Working ', '2021-11-09', 7000.00, '2022-05-10', 7000.00, 'Sakthi ', '1', '0 years 6 months', ' ', 1, '2022-05-10 11:16:30', 0, NULL, 0, NULL, 1),
(4355, 8701, 'Vimalraj ', 'Koulti Working ', '2021-11-09', 7000.00, '2022-04-27', 5000.00, 'Sakthi ', '1', '0 years 5 months', 'No', 1, '2022-05-10 11:20:34', 0, NULL, 0, NULL, 1),
(4356, 8704, 'Bandhan Bank ', 'Branch sales executive ', '2020-02-19', 14700.00, '2021-07-21', 14700.00, 'ERODE ', '1', '1 years 5 months', ' Move to next career ', 1, '2022-05-10 12:57:00', 0, NULL, 0, NULL, 1),
(4357, 8705, 'Wipro', 'Associate production specialist', '2021-10-04', 20000.00, '2022-04-07', 20000.00, 'Chennai Guindy', '1', '0 years 6 months', ' Because I worked as a Contractor role for 6 Months.and my contract period Is over.and i moved out of the organisation.', 1, '2022-05-10 03:10:33', 0, NULL, 0, NULL, 1),
(4358, 8715, 'Muthoot fin corp.ltd', 'Customer supportive executive', '2021-03-01', 13000.00, '2022-02-01', 14000.00, 'Chengalpattu', '1', '0 years 11 months', 'Corona timing target pressure', 1, '2022-05-11 01:07:26', 0, NULL, 0, NULL, 1),
(4359, 8718, 'Sundaram Home Finance', 'Management trainee', '2021-07-01', 450000.00, '1970-01-01', 450000.00, 'Chennai', '2', '0 years 10 months', ' For switching industry', 1, '2022-05-11 02:57:19', 0, NULL, 0, NULL, 1),
(4360, 8698, 'CIEL', 'HR', '2022-01-01', 10000.00, '1970-01-01', 12000.00, 'chennai', '2', '0 years 4 months', 'INTERNSHIP OVER', 87, '2022-05-11 03:50:32', 0, NULL, 0, NULL, 1),
(4361, 8721, 'ciel', 'hr', '2021-01-15', 11000.00, '2022-05-11', 15000.00, 'chennai', '1', '1 years 3 months', ' less salary', 1, '2022-05-11 03:58:22', 0, NULL, 0, NULL, 1),
(4362, 8722, 'ags health care', 'hr', '2022-10-01', 0.00, '1970-01-01', 15000.00, 'chennai', '2', '0 years 4 months', 'night shift', 87, '2022-05-11 04:08:20', 0, NULL, 0, NULL, 1),
(4363, 8717, 'vodafone', 'customer representive', '2016-12-25', 10000.00, '2020-04-10', 16000.00, 'tenali', '1', '3 years 3 months', ' that purpose relieving for lock down suddenly.', 1, '2022-05-11 08:46:06', 0, NULL, 0, NULL, 1),
(4364, 8726, 'PRINCE INFO PARK ', 'Telecaller and team leader ', '2020-03-07', 10.00, '2022-04-15', 15000.00, 'Ambattur ', '1', '2 years 1 months', ' Shifting the office to Guindy ', 1, '2022-05-12 10:46:15', 0, NULL, 0, NULL, 1),
(4365, 8727, 'SBI credit card ', 'Telecalling ', '2021-10-15', 15000.00, '2022-03-10', 15000.00, 'Koyambedu ', '1', '0 years 6 months', ' Some personal issues ', 1, '2022-05-12 11:00:55', 0, NULL, 0, NULL, 1),
(4366, 8728, 'TCS', 'Team associate', '2014-07-11', 20000.00, '2015-02-09', 22000.00, 'Ambattur', '1', '0 years 6 months', ' Started business', 1, '2022-05-12 11:27:22', 0, NULL, 0, NULL, 1),
(4367, 8728, 'Tcs', 'Team associate', '2014-07-11', 19000.00, '2015-02-09', 20000.00, 'Chennai', '1', '0 years 6 months', 'Started own business', 1, '2022-05-12 11:29:21', 0, NULL, 0, NULL, 1),
(4368, 8730, 'Jockey ', 'Marketing ', '2020-02-28', 16000.00, '2022-05-12', 16750.00, 'North chennai', '1', '2 years 2 months', ' Salary issue', 1, '2022-05-12 12:11:29', 0, NULL, 0, NULL, 1),
(4369, 8731, 'Peeyesyem hyundai', 'Senior sales executive', '2018-05-12', 13000.00, '2022-03-12', 20000.00, 'Mayalapur', '1', '3 years 10 months', ' Personal reason', 1, '2022-05-12 01:55:09', 0, NULL, 0, NULL, 1),
(4370, 8735, 'Sai rudhra communications ', 'Chief Technician ', '2020-11-03', 20000.00, '1970-01-01', 28000.00, 'Chennai', '2', '1 years 6 months', ' Looking for better opportunity', 1, '2022-05-12 03:58:32', 0, NULL, 0, NULL, 1),
(4371, 8738, 'hdb finiancial services', 'cse', '2020-04-11', 12000.00, '2021-04-19', 13000.00, 'chennai', '1', '1 years 0 months', ' growth', 1, '2022-05-13 10:10:19', 0, NULL, 0, NULL, 1),
(4372, 8739, 'Matrimony', 'Sales executive', '2019-08-12', 13000.00, '1970-01-01', 13000.00, 'Guindy', '2', '2 years 9 months', ' salary increment\n', 1, '2022-05-13 10:31:49', 0, NULL, 0, NULL, 1),
(4373, 8740, 'OTO Capital ', 'Presales', '2021-10-04', 27000.00, '2022-05-06', 27000.00, 'HSR layout ', '1', '0 years 7 months', ' ', 1, '2022-05-13 11:34:16', 0, NULL, 0, NULL, 1),
(4374, 8749, 'Xcmm India private limited', 'HR COORDINATOR', '2021-10-04', 17000.00, '1970-01-01', 17000.00, 'Kanchipuram', '2', '0 years 7 months', ' Iam searching for  onroll job', 1, '2022-05-13 05:04:19', 0, NULL, 0, NULL, 1),
(4375, 8748, 'Teemage builder pvt ltd', 'HR executive', '2021-04-10', 14000.00, '1970-01-01', 18000.00, 'Kanchipuram', '2', '1 years 1 months', 'No learning process.. then lot of politics', 1, '2022-05-13 05:06:31', 0, NULL, 0, NULL, 1),
(4376, 8750, 'Hathway cable datacom ', 'Tele caller ', '2021-10-04', 13500.00, '2022-06-15', 15000.00, 'Valluvar kottam', '1', '0 years 8 months', ' Need to move on my next career and Better job role', 1, '2022-05-13 11:19:40', 0, NULL, 0, NULL, 1),
(4377, 8751, 'The zigma technologies India Pvt Ltd ', 'Call co-ordinater ', '2021-01-02', 10000.00, '2022-04-30', 11500.00, 'Erode ', '1', '1 years 3 months', ' Salary issue ', 1, '2022-05-14 10:28:15', 0, NULL, 0, NULL, 1),
(4378, 8752, 'Britannia', 'Accounts officer', '2021-12-31', 18000.00, '1970-01-01', 18000.00, 'Whitefield, Bangalore', '2', '0 years 4 months', 'Sector change', 1, '2022-05-14 10:43:23', 0, NULL, 0, NULL, 1),
(4379, 8753, 'Hathway', 'Telesales executive', '2020-01-01', 15000.00, '2021-12-07', 15000.00, 'Chennai', '1', '1 years 11 months', '   Marriage', 1, '2022-05-14 11:22:54', 0, NULL, 0, NULL, 1),
(4380, 8754, 'RPP ', 'Accounts Executive', '2021-06-01', 12000.00, '2022-03-30', 12000.00, 'Erode', '1', '0 years 9 months', ' Long Distance', 1, '2022-05-14 11:39:47', 0, NULL, 0, NULL, 1),
(4381, 8759, 'Chempure Technologies pvt ltd', 'Admin officer & HR', '2016-03-10', 15000.00, '2022-02-28', 26000.00, 'Moulivakkam', '1', '5 years 11 months', 'The concern is Financially going to down so reducing the staff with three months notice period. Before that period i quite the job.', 1, '2022-05-16 08:51:56', 0, NULL, 0, NULL, 1),
(4382, 8760, 'Reliable business solutions', 'CCE', '2018-03-26', 12000.00, '2019-04-17', 13000.00, 'Chennai', '1', '1 years 0 months', ' Growth', 1, '2022-05-16 11:08:08', 0, NULL, 0, NULL, 1),
(4383, 8761, 'Reliance life insurance', 'CSE', '2012-02-13', 175000.00, '2014-06-13', 386000.00, 'Chennai', '1', '2 years 4 months', ' Carrier and salary growth', 1, '2022-05-16 11:41:48', 0, NULL, 0, NULL, 1),
(4384, 8762, '10decoders', 'Ui/ux designer', '2021-12-01', 12000.00, '1970-01-01', 15000.00, 'Chennai, porur', '2', '0 years 5 months', 'I was hired for a certain role, but over time that changed and I was no longer being given the opportunity to do the work I was interested in.', 1, '2022-05-16 12:08:33', 0, NULL, 0, NULL, 1),
(4385, 8763, 'government projects', 'graphic desing', '2021-04-16', 10000.00, '2022-05-16', 12000.00, 'ranipet', '1', '1 years 1 months', ' For leaning Better experience', 1, '2022-05-16 12:30:27', 0, NULL, 0, NULL, 1),
(4386, 8767, 'Athena bpo', 'Cce', '2017-02-15', 10000.00, '2022-05-17', 20000.00, 'Banashankari ', '1', '5 years 3 months', ' ', 1, '2022-05-17 11:30:26', 0, NULL, 0, NULL, 1),
(4387, 8765, 'DHFL ', 'CSA  ', '2020-01-24', 11500.00, '2022-05-17', 12000.00, 'Ambathure', '1', '2 years 3 months', 'Dute to salary issue', 1, '2022-05-17 11:30:37', 0, NULL, 0, NULL, 1),
(4388, 8767, 'Team lease', 'IT ASSISTANT ', '2020-02-15', 25300.00, '2021-02-15', 25300.00, 'Electronic city ', '1', '1 years 0 months', 'Due to COVID pandamic ', 1, '2022-05-17 11:33:23', 0, NULL, 0, NULL, 1),
(4389, 8767, 'Accenture Dtss', 'Inventory manager ', '2018-06-26', 15600.00, '2020-11-15', 15600.00, 'Banargatta ', '1', '2 years 4 months', 'Due to family issue ', 1, '2022-05-17 11:36:04', 0, NULL, 0, NULL, 1),
(4390, 8769, 'Northerly Automotive Solution Pvt Ltd ', 'Senior sales Executive ', '2021-02-19', 27000.00, '2022-04-30', 27000.00, 'Chennai', '1', '1 years 2 months', ' ', 1, '2022-05-17 12:43:19', 0, NULL, 0, NULL, 1),
(4391, 8769, 'Reliance SMSL Ltd', 'Senior Associate ', '2018-10-01', 22000.00, '2021-01-30', 22000.00, 'Chennai ', '1', '2 years 3 months', 'Health issue ', 1, '2022-05-17 12:47:49', 0, NULL, 0, NULL, 1),
(4392, 8769, 'Fangs Technology ', 'Senior sales Executive ', '2015-06-01', 16000.00, '2018-09-29', 20000.00, 'Chennai ', '1', '3 years 3 months', 'My father health is not good', 1, '2022-05-17 12:50:07', 0, NULL, 0, NULL, 1),
(4393, 8772, 'dr mohans', 'telecalling executive', '2019-01-23', 12000.00, '2022-02-11', 14000.00, 'chennai', '1', '3 years 0 months', ' growth', 1, '2022-05-17 08:52:20', 0, NULL, 0, NULL, 1),
(4394, 8774, 'shoreline fianancial services', 'cse', '2018-08-19', 11000.00, '2021-02-14', 13000.00, 'chennai', '1', '2 years 5 months', ' growth', 1, '2022-05-17 09:52:06', 0, NULL, 0, NULL, 1),
(4395, 8778, 'Zero Gravity Photography', 'Graphic designer', '2019-07-19', 15000.00, '2020-08-20', 20000.00, 'Chennai', '1', '1 years 1 months', ' Covid breakout', 1, '2022-05-18 11:50:24', 0, NULL, 0, NULL, 1),
(4396, 8777, 'just dial', 'executive', '2020-07-13', 12000.00, '2021-01-17', 13000.00, 'chennai', '1', '0 years 6 months', ' Career', 1, '2022-05-18 12:09:08', 0, NULL, 0, NULL, 1),
(4397, 8782, 'MODENIK LIFESTYLE PVT. LTD .', 'hr', '2022-01-01', 12000.00, '2022-05-18', 15000.00, 'nagerkovil', '1', '0 years 4 months', 'for better work experience ', 1, '2022-05-18 03:09:00', 0, NULL, 0, NULL, 1),
(4398, 8707, 'us it recruiter', 'HR', '2021-04-01', 18000.00, '2022-05-18', 20000.00, 'chennai', '1', '1 years 1 months', 'FOR BETTER WORK EXPERIENCE', 87, '2022-05-18 03:19:30', 0, NULL, 0, NULL, 1),
(4399, 8779, 'chola madalam ms general issurance', 'sales executive', '2015-04-17', 15000.00, '2017-06-08', 15000.00, 'ambattur', '1', '2 years 1 months', 'due to marriage', 85, '2022-05-18 05:19:43', 0, NULL, 0, NULL, 1),
(4400, 8773, 'ashok leyland', 'execuitve', '2017-06-20', 13000.00, '2020-06-29', 15000.00, 'chennai', '1', '3 years 0 months', ' Growth', 1, '2022-05-19 11:38:58', 0, NULL, 0, NULL, 1),
(4401, 8788, 'Cure Pharma ', 'Senior Sales executive ', '2019-05-19', 15000.00, '2021-12-02', 15000.00, 'Jp nagar 9th phase Avalahalli ', '1', '2 years 6 months', ' ', 1, '2022-05-19 11:59:11', 0, NULL, 0, NULL, 1),
(4402, 8788, 'Cure Pharma ', 'Sales executive ', '2020-06-30', 10000.00, '2021-12-05', 15000.00, 'JP nagar 9th phase Avalahalli ', '1', '1 years 5 months', 'because we shifted city ', 1, '2022-05-19 12:01:49', 0, NULL, 0, NULL, 1),
(4403, 8793, 'cedar business solution', 'chennai', '2022-02-20', 15000.00, '2022-05-01', 15000.00, 'nungapakkam', '1', '0 years 2 months', ' some health issues', 1, '2022-05-19 01:00:12', 0, NULL, 0, NULL, 1),
(4404, 8798, 'star Health insurance', 'voice process', '2022-05-19', 11000.00, '1970-01-01', 12000.00, 'chennai', '2', '0 years 0 months', 'want to start my carrier as HR Recruiter ', 87, '2022-05-19 06:26:48', 0, NULL, 0, NULL, 1),
(4405, 8792, 'Acl tvs', 'Rto section ', '2017-09-01', 7000.00, '2019-01-31', 8000.00, 'Perambalur ', '1', '1 years 4 months', ' Marriage ', 1, '2022-05-19 10:38:19', 0, NULL, 0, NULL, 1),
(4406, 8792, 'Equitas Small Finance Bank Ltd ', 'Customer support officer ', '2020-09-09', 10000.00, '2021-11-30', 11000.00, 'Trichy ', '1', '1 years 2 months', 'Health issue ', 1, '2022-05-19 10:40:59', 0, NULL, 0, NULL, 1),
(4407, 8800, 'Hexaware technologies', 'Executive', '2021-07-15', 16000.00, '1970-01-01', 17000.00, 'Pallikaranai', '2', '0 years 10 months', ' Due to rotational week off', 1, '2022-05-20 11:04:12', 0, NULL, 0, NULL, 1),
(4408, 8803, 'LIC', 'Telecaller', '2021-04-01', 10000.00, '2021-11-01', 10000.00, 'Thanjavur', '1', '0 years 7 months', ' Worked temporarily during lockdown', 1, '2022-05-20 11:35:01', 0, NULL, 0, NULL, 1),
(4409, 8804, 'Vasan&co', 'Sales', '2019-03-17', 15000.00, '2021-11-02', 15000.00, 'T nagar', '1', '2 years 7 months', ' My mom very seek nd admitted hospital after death my mom in hospital ????', 1, '2022-05-20 12:53:08', 0, NULL, 0, NULL, 1),
(4410, 8805, 'hdfc ', 'Credit card sales', '2021-12-02', 11000.00, '2022-05-20', 15500.00, 'chennai', '1', '0 years 5 months', ' for better work experience', 1, '2022-05-20 02:51:12', 0, NULL, 0, NULL, 1),
(4411, 8806, 'Teleflex medical pvt ltd', 'Junior officer ', '2013-08-23', 15000.00, '2021-09-29', 25000.00, 'Chennai', '1', '8 years 1 months', ' Relocation of office ', 1, '2022-05-20 02:53:35', 0, NULL, 0, NULL, 1),
(4412, 8805, 'Innovsource service pvt ltd', 'Relationship executive', '2022-02-01', 16000.00, '2022-03-10', 16000.00, 'Amchikarai', '1', '0 years 1 months', ' Some problems in my family ', 1, '2022-05-20 02:59:07', 0, NULL, 0, NULL, 1),
(4413, 8805, 'Innovsource service pvt ltd', 'Relationship executive', '2021-12-01', 16000.00, '2022-04-05', 16000.00, 'Chennai', '1', '0 years 4 months', 'Some problems in my family', 1, '2022-05-20 03:04:30', 0, NULL, 0, NULL, 1),
(4414, 8807, '5k car care', 'Assistant Sales manager ', '2019-06-10', 10000.00, '2021-12-01', 18000.00, 'Coimbatore Bangalore ', '1', '2 years 5 months', ' Job location ', 1, '2022-05-20 05:28:29', 0, NULL, 0, NULL, 1),
(4415, 8808, 'al noora', 'hr recruiter', '2020-08-13', 15000.00, '2021-02-26', 18000.00, 'chennai', '1', '0 years 6 months', 'Growth ', 1, '2022-05-21 09:30:38', 0, NULL, 0, NULL, 1),
(4416, 8811, 'Shriram life insurance company ', 'Mis', '2022-01-10', 15000.00, '1970-01-01', 15000.00, 'Kodambakkam ', '2', '0 years 4 months', ' I want to improving my career ', 1, '2022-05-21 11:23:49', 0, NULL, 0, NULL, 1),
(4417, 8810, 'gunasekar.s', 'execitive', '2022-02-14', 25000.00, '2022-04-09', 24000.00, 'kelambakkam', '1', '0 years 1 months', ' ', 1, '2022-05-21 11:27:32', 0, NULL, 0, NULL, 1),
(4418, 8809, '23 solutions', 'Tele sales officer', '2021-07-27', 10000.00, '2022-05-11', 10000.00, 'T.nagar', '1', '0 years 9 months', ' Timing and salary', 1, '2022-05-21 12:39:37', 0, NULL, 0, NULL, 1),
(4419, 8812, 'Axis Bank limited', 'Business development executive', '2022-01-06', 17000.00, '2022-06-25', 170000.00, 'T.nager', '1', '0 years 5 months', 'This job fully feild work so i not continue the job . ', 1, '2022-05-21 01:49:13', 0, NULL, 0, NULL, 1),
(4420, 8813, 'Swaathi Enterprices   ', 'Intonate Staff', '2021-03-20', 9000.00, '2022-02-22', 10000.00, 'Tripur', '1', '0 years 11 months', ' Merriage', 1, '2022-05-23 10:05:12', 0, NULL, 0, NULL, 1),
(4421, 8817, 'ETA services ', 'Hr Assistant ', '2022-05-23', 40000.00, '1970-01-01', 60000.00, 'Dubai', '2', '3 years 1 months', 'Covid issue', 1, '2022-05-23 10:51:01', 0, NULL, 0, NULL, 1),
(4422, 8818, 'Avalon technologies', 'PCB ', '2018-12-15', 12.00, '2019-12-16', 12.00, 'Tambaram', '1', '1 years 0 months', 'It\'s only one year Training', 1, '2022-05-23 11:05:47', 0, NULL, 0, NULL, 1),
(4423, 8818, 'Wealth house', 'Credit card', '2020-01-26', 14.00, '2021-07-05', 14.00, 'Saithapet', '1', '1 years 5 months', 'Corona time so i am not able to travel in my work location', 1, '2022-05-23 11:08:00', 0, NULL, 0, NULL, 1),
(4424, 8822, 'Byjus', 'Pre-sales', '2022-01-18', 27000.00, '2022-05-04', 27000.00, 'Kayani tech park', '1', '0 years 3 months', ' Health issues', 1, '2022-05-23 11:30:45', 0, NULL, 0, NULL, 1),
(4425, 8819, 'Nikon', 'Camera engineer', '2020-01-23', 13000.00, '2022-03-07', 13000.00, 'Chennai', '1', '2 years 1 months', ' Salary was low', 1, '2022-05-23 11:38:13', 0, NULL, 0, NULL, 1),
(4426, 8820, 'one plus', 'purchase executive', '2021-01-02', 20000.00, '1970-01-01', 20000.00, 'chennai', '2', '1 years 4 months', 'To Work in the HR', 87, '2022-05-23 11:50:19', 0, NULL, 0, NULL, 1),
(4427, 8828, 'Rupeek fintech pvt ltd', 'Senior sales manager', '2019-05-14', 35000.00, '2022-05-03', 40200.00, 'T.nagar', '1', '2 years 11 months', ' Career growth', 1, '2022-05-24 11:59:30', 0, NULL, 0, NULL, 1),
(4428, 8831, 'Visionet Systems pvt Ltd', 'Process Associate', '2021-02-01', 8000.00, '2022-04-11', 15000.00, 'Coimbatore', '1', '1 years 2 months', ' Salary Concern', 1, '2022-05-24 12:11:14', 0, NULL, 0, NULL, 1),
(4429, 8831, 'Information Evolution India Pvt Ltd ', 'Data  Analyst', '2020-03-02', 10000.00, '2020-10-31', 10000.00, 'Coimbatore ', '1', '0 years 7 months', 'Contract Job', 1, '2022-05-24 12:13:14', 0, NULL, 0, NULL, 1),
(4430, 8831, 'Rishi Hitech Lab ', 'Lab Technician ', '2018-06-01', 10000.00, '2019-07-31', 12000.00, 'Erode', '1', '1 years 1 months', 'Higher Studies', 1, '2022-05-24 12:14:23', 0, NULL, 0, NULL, 1),
(4431, 8836, 'Cogent e service Pvt ltd', 'Cro', '2019-09-01', 22500.00, '2021-05-31', 22500.00, 'Bangalore', '1', '1 years 8 months', 'Covid', 1, '2022-05-24 03:29:31', 0, NULL, 0, NULL, 1),
(4432, 8837, 'Teamlease', 'Telecalling executive', '2021-02-15', 12000.00, '2021-08-30', 12000.00, 'Koyambedu', '1', '0 years 6 months', ' Because of family issues I can\'t able to continue', 1, '2022-05-25 10:42:18', 0, NULL, 0, NULL, 1),
(4433, 8845, 'integrated technologies', 'software engineer', '2016-02-09', 15000.00, '2021-12-17', 18000.00, 'chennai', '1', '5 years 10 months', ' career', 1, '2022-05-26 10:50:15', 0, NULL, 0, NULL, 1),
(4434, 8846, 'orbit systems', 'desktop support engineer', '2017-08-26', 13000.00, '2019-09-17', 18000.00, 'chennai', '1', '2 years 0 months', 'growth ', 1, '2022-05-26 10:56:55', 0, NULL, 0, NULL, 1),
(4435, 8849, 'Ilayugam trust ', 'Program coordinator', '2021-01-20', 18000.00, '2022-02-10', 20000.00, 'Chennai', '1', '1 years 0 months', ' Due to some personal issues ', 1, '2022-05-27 11:38:28', 0, NULL, 0, NULL, 1),
(4436, 8850, 'Ocean Softwares', 'Uiux Designer', '2022-02-02', 18000.00, '2022-04-29', 18000.00, 'Chennai', '1', '0 years 2 months', 'Salary issues', 1, '2022-05-27 12:29:36', 0, NULL, 0, NULL, 1),
(4437, 8851, 'Redical minds technologies ', 'Jk cement employee ', '2019-07-20', 15000.00, '1970-01-01', 20000.00, 'Delhi Gurgaon ', '2', '2 years 10 months', ' ', 1, '2022-05-27 01:33:11', 0, NULL, 0, NULL, 1),
(4438, 8852, 'ICMR-NIRT', 'Data Entry operator', '2021-03-17', 18000.00, '2022-05-18', 180000.00, 'Chekpet', '1', '1 years 2 months', ' Contract based job', 1, '2022-05-27 02:22:22', 0, NULL, 0, NULL, 1),
(4439, 8853, 'Workfreaks', 'HR Recruiter', '2021-03-10', 16000.00, '1970-01-01', 18000.00, 'Chennai', '2', '1 years 2 months', ' Salary issue,not getting my salary properly', 1, '2022-05-27 03:03:38', 0, NULL, 0, NULL, 1),
(4440, 8854, 'Anna  Adarsh college for women ', 'Administration Assistant ', '2021-03-01', 19000.00, '1970-01-01', 24000.00, 'Anna nagar Chennai ', '2', '1 years 2 months', ' Intersted in finance side ', 1, '2022-05-27 03:56:06', 0, NULL, 0, NULL, 1),
(4441, 8858, 'Intelleno consultancy services', 'Talent Acquisition Executive', '2021-12-20', 12.00, '1970-01-01', 12.00, 'Anna salai', '2', '0 years 5 months', 'Further growth in my career. ', 1, '2022-05-28 12:09:56', 0, NULL, 0, NULL, 1),
(4442, 8860, 'Isro', 'Testing engineer', '2021-03-01', 36000.00, '1970-01-01', 36000.00, 'Marathalli', '2', '1 years 2 months', ' Contract has been overed', 1, '2022-05-28 01:07:07', 0, NULL, 0, NULL, 1),
(4443, 8861, 'Aon hewitt', 'Software tester', '2015-01-02', 15000.00, '2015-07-01', 15000.00, 'Guindy', '1', '0 years 5 months', ' Engaged in marriage', 1, '2022-05-28 05:21:28', 0, NULL, 0, NULL, 1),
(4444, 8864, 'AGS health ', 'AR caller ', '2021-10-18', 17000.00, '2022-04-30', 17000.00, 'Taramani ', '1', '0 years 6 months', ' Due to some health issues because that is night shift..also I have some salary issues ', 1, '2022-05-28 11:15:03', 0, NULL, 0, NULL, 1),
(4445, 8869, 'Star health insurance ', 'Executive for BM cell', '2021-01-26', 15000.00, '2021-05-24', 15000.00, 'Egmore ', '1', '0 years 3 months', ' I affected by Covid after that  my health condition become very Worst so I left my job. To takecare my health ', 1, '2022-05-30 02:02:00', 0, NULL, 0, NULL, 1),
(4446, 8874, 'Cider business solutions ', 'Telle caller ', '2021-01-05', 16000.00, '2022-01-20', 17000.00, 'aminjikarai', '1', '1 years 0 months', 'Personal issue ', 1, '2022-05-31 10:22:53', 0, NULL, 0, NULL, 1),
(4447, 8875, 'R.sahira banu', 'Jr.auditor', '2021-04-15', 8500.00, '2021-12-18', 10000.00, 'Erode', '1', '0 years 8 months', ' Higher education', 1, '2022-05-31 10:30:00', 0, NULL, 0, NULL, 1),
(4448, 8877, 'eximio services and solutions pvt ltd', 'process associate', '2019-04-14', 14000.00, '1970-01-01', 15000.00, 'chennai', '2', '3 years 1 months', ' Better growth', 1, '2022-05-31 10:45:18', 0, NULL, 0, NULL, 1),
(4449, 8880, 'Ola cabs ', 'Background verification executive ', '2017-11-19', 19000.00, '2022-03-10', 24000.00, 'Bangalore ', '1', '4 years 6 months', ' Personal issues', 1, '2022-05-31 11:19:27', 0, NULL, 0, NULL, 1),
(4450, 8881, 'Star Health insurance ', 'Tele caller', '2021-05-31', 11.50, '2022-05-31', 13.50, 'Domular ', '1', '1 years 0 months', 'Did not pay the salary ', 1, '2022-05-31 11:20:48', 1, '2022-05-31 11:21:53', 0, NULL, 1),
(4451, 8882, 'Maruti Suzuki car showroom', 'Customer care executive', '2014-05-31', 5000.00, '2019-08-12', 12000.00, 'Thanjavur', '1', '5 years 2 months', ' Higher study', 1, '2022-05-31 12:15:30', 0, NULL, 0, NULL, 1),
(4452, 8882, 'Vetri hyundai car showroom', 'Insurance incharge', '2020-12-01', 12000.00, '2021-09-12', 12000.00, 'Thanjavur', '1', '0 years 9 months', 'Working timing very high', 1, '2022-05-31 12:18:26', 0, NULL, 0, NULL, 1),
(4453, 8882, 'Aahash Nissan Automobiles Service', 'Customer care executive', '2013-01-04', 4500.00, '2013-08-05', 4500.00, 'Thanjavur', '1', '0 years 7 months', 'Long distance', 1, '2022-05-31 12:20:52', 0, NULL, 0, NULL, 1),
(4454, 8871, 'Bank of Baroda', 'Tele caller', '2019-07-23', 15000.00, '2021-09-30', 17500.00, 'Vadapalani', '1', '2 years 2 months', ' Covid issues', 1, '2022-05-31 12:36:43', 0, NULL, 0, NULL, 1),
(4455, 8883, 'fRESHER', 'FRESHER', '2022-05-31', 0.00, '2022-05-31', 0.00, 'FRESHER', '1', '0 years 0 months', 'FRESHER', 85, '2022-05-31 01:38:16', 0, NULL, 0, NULL, 1),
(4456, 8884, 'Ujjivan small finance bank', 'Phone banking officer', '2020-12-07', 21000.00, '2022-08-18', 21000.00, 'Bangalore', '1', '1 years 8 months', ' Personal and family issues. ', 1, '2022-05-31 02:07:01', 0, NULL, 0, NULL, 1),
(4457, 8886, 'MSR private Limited ', 'BDM', '2022-01-04', 21.00, '2022-05-13', 21.00, 'Bangalore ', '1', '0 years 4 months', ' Because we are sale farmland property and the location is to far to Bangalore and customer not happy with the property then I decided job change that\'s why I chose good company', 1, '2022-05-31 03:10:01', 0, NULL, 0, NULL, 1),
(4458, 8888, 'Justdial', 'Information retrieval officer', '2020-10-13', 16000.00, '2022-04-16', 198000.00, 'Little mount', '1', '1 years 6 months', 'I Loved working with Justdial because i gained lot of experience and lot of knowledge about customer handling  and now I think I Need to get into more challenging, enriching and I love to learn new things and also developing my career and That\'s the reason for relieving from Justdial', 1, '2022-05-31 04:15:42', 0, NULL, 0, NULL, 1),
(4459, 8862, 'hdfc', 'hr', '2019-12-01', 11000.00, '2022-05-01', 11500.00, 'chennai', '1', '2 years 5 months', ' ', 1, '2022-05-31 07:16:00', 0, NULL, 0, NULL, 1),
(4460, 8890, 'Growvel consultant', 'HR admin', '2020-02-15', 15000.00, '1970-01-01', 25000.00, 'Vadapalani', '2', '2 years 3 months', ' Carrier growth', 1, '2022-06-01 10:45:08', 0, NULL, 0, NULL, 1),
(4461, 8893, 'Digital banking India ', 'Operational excicutive ', '2018-05-08', 17250.00, '2020-03-10', 18000.00, 'Chennai', '1', '1 years 10 months', ' Salary issues ', 1, '2022-06-01 11:33:25', 0, NULL, 0, NULL, 1),
(4462, 8894, 'Bimal Nexq', 'Relationship Manager', '2017-10-26', 18000.00, '2022-06-15', 23000.00, 'Bangalore', '1', '4 years 7 months', ' Looking for change of field', 1, '2022-06-01 12:15:07', 0, NULL, 0, NULL, 1),
(4463, 8895, 'Cabt vendor ', 'Team leader', '2022-01-01', 18000.00, '2022-05-01', 19000.00, 'Kumaraswamy layout', '1', '0 years 3 months', ' ', 1, '2022-06-01 12:27:28', 0, NULL, 0, NULL, 1),
(4464, 8897, 'oasys cybernetics private ltd', 'hr executive', '2020-12-01', 12680.00, '1970-01-01', 13980.00, 'egmore', '2', '1 years 6 months', ' ', 1, '2022-06-02 12:05:29', 0, NULL, 0, NULL, 1),
(4465, 8898, 'Indianet', 'Chennai', '2021-01-02', 10000.00, '2022-02-07', 13000.00, 'Chennai', '1', '1 years 1 months', ' Long distance', 1, '2022-06-02 12:11:29', 0, NULL, 0, NULL, 1),
(4466, 8902, 'Icic bank credit card', 'Contactcentre executive', '2014-06-02', 8000.00, '2016-03-01', 8000.00, 'Chennai', '1', '1 years 8 months', ' Salary issue', 1, '2022-06-02 01:17:58', 0, NULL, 0, NULL, 1),
(4467, 8902, 'Hdb finanace service', 'Junior officer', '2016-07-04', 16000.00, '2019-08-01', 16000.00, 'Chennai', '1', '3 years 0 months', 'Improve my growth', 1, '2022-06-02 01:19:50', 0, NULL, 0, NULL, 1),
(4468, 8902, 'Sbi card ', 'Executive', '2019-10-01', 21000.00, '2021-10-12', 22000.00, 'Chennai', '1', '2 years 0 months', 'Personal reason', 1, '2022-06-02 01:21:03', 0, NULL, 0, NULL, 1),
(4469, 8903, 'Behtar technology pvt ltd', 'Telecom Executive', '2020-10-02', 18500.00, '2022-03-31', 18500.00, 'Chennai', '1', '1 years 5 months', 'Change to the Location Bangalore that a reason for my relieving', 1, '2022-06-02 01:27:12', 0, NULL, 0, NULL, 1),
(4470, 8889, 'Fresher', 'mis', '2022-06-02', 12000.00, '2020-01-01', 15000.00, 'chenna', '1', '2 years 5 months', 'for better Experience', 87, '2022-06-02 01:31:08', 0, NULL, 0, NULL, 1),
(4471, 8905, 'Puravankara limited ', 'Sr Executive  as  CSR', '2016-08-25', 24000.00, '2019-05-02', 27000.00, 'Bangkok ', '1', '2 years 8 months', ' Had to travel many times in a month to native place in tamil nadu for had a case in T.N court on property.', 1, '2022-06-02 03:21:54', 0, NULL, 0, NULL, 1),
(4472, 8905, 'I Process for ICICI BANK', 'Sr executive tell caller', '2021-11-25', 18000.00, '1970-01-01', 18000.00, 'Bangalore ', '2', '0 years 6 months', 'Company made change in incentives which i did like and more over i am in contact basis so looking better job to settle.', 1, '2022-06-02 03:27:41', 0, NULL, 0, NULL, 1),
(4473, 8906, 'Laksh Source Business Solution pvt ltd ', 'HR Assistant ', '2021-11-01', 10000.00, '1970-01-01', 10000.00, 'Puducherry ', '2', '0 years 7 months', ' To get professional growth ', 1, '2022-06-02 05:33:41', 0, NULL, 0, NULL, 1),
(4474, 8913, 'Telecalling', 'Father', '2022-03-01', 15000.00, '2022-05-25', 16000.00, 'Vadapalani', '1', '0 years 2 months', 'Staying rooms are not satisfies so i releaving in my company', 1, '2022-06-03 01:29:05', 0, NULL, 0, NULL, 1),
(4475, 8918, 'Growthlift investment advisory', 'Businesses development executive', '2021-10-09', 16000.00, '1970-01-01', 16000.00, 'Kudlugate ', '2', '0 years 7 months', ' I\'m looking for good growth  carrier . There is no growth in my role thtas why I left ', 1, '2022-06-04 12:03:29', 0, NULL, 0, NULL, 1),
(4476, 8919, 'technosoft', 'medical coder', '2020-02-10', 13000.00, '2020-11-01', 13000.00, 'chennai', '1', '0 years 8 months', ' job change', 1, '2022-06-04 01:23:54', 0, NULL, 0, NULL, 1),
(4477, 8919, 'infy job', 'hr intern', '2021-12-01', 3000.00, '2022-01-01', 3000.00, 'chennai', '1', '0 years 1 months', 'internship got over', 1, '2022-06-04 01:25:09', 0, NULL, 0, NULL, 1),
(4478, 8920, 'MONEXO FINTECH PVT LTD', 'MANAGEMENT ASSOCIATE INTERN', '2022-02-01', 10000.00, '2022-04-30', 10000.00, 'Chennai', '1', '0 years 2 months', ' Completed the Internship ', 1, '2022-06-04 02:53:09', 0, NULL, 0, NULL, 1),
(4479, 8922, 'M.k.electronics ', 'Accountant and stock management staff', '2021-04-03', 9000.00, '2021-11-06', 10000.00, 'Annamalai layout , opp arasan eye hospital, Near b', '1', '0 years 7 months', ' Personal problem', 1, '2022-06-04 06:29:05', 0, NULL, 0, NULL, 1),
(4480, 8922, 'Valli deivanai matrimony ', 'Telecaller ', '2021-11-10', 10000.00, '2022-02-15', 10000.00, 'Opposite to PSR silks,Near erode bus stand.', '1', '0 years 3 months', 'Health issues', 1, '2022-06-04 06:31:03', 0, NULL, 0, NULL, 1),
(4481, 8923, 'Sakure investments', 'Recruiter', '2021-10-05', 8500.00, '2022-02-28', 10500.00, 'Theni', '1', '0 years 4 months', 'Job timing is night shift i am comfortable,but my parents aren\'t happy with the timing. ', 1, '2022-06-06 10:34:11', 0, NULL, 0, NULL, 1),
(4482, 8925, 'Hathway Cable and Datacom Limited', 'Co Ordinator', '2020-06-22', 20000.00, '1970-01-01', 23000.00, 'Chennai', '2', '1 years 11 months', ' Career Growth', 1, '2022-06-06 11:22:45', 0, NULL, 0, NULL, 1),
(4483, 8930, 'VVT SOLUTIONS PVT LTD', 'IT RECRUITER', '2022-03-01', 25000.00, '1970-01-01', 24500.00, 'Adyar', '2', '0 years 3 months', ' They offer to author department so I am not ok for that then I relieved ', 1, '2022-06-06 12:54:56', 0, NULL, 0, NULL, 1),
(4484, 8931, 'htc global service', 'junior it recruiter', '2021-11-10', 300000.00, '2022-03-31', 300000.00, 'chennai', '1', '0 years 4 months', ' i resign my previous job for my Health issue.', 1, '2022-06-06 02:14:07', 0, NULL, 0, NULL, 1),
(4485, 8937, 'QUESS CORP Pvt Ltd ', 'Recruitment Consultant ', '2022-12-15', 240000.00, '1970-01-01', 240000.00, 'Chennai ', '2', '0 years 6 months', ' Contract ', 1, '2022-06-06 06:54:06', 0, NULL, 0, NULL, 1),
(4486, 8912, 'Star health insurance ', 'Telesales ', '2021-10-20', 7.00, '2022-05-31', 17500.00, 'Vadapalani ', '1', '0 years 7 months', 'My mother will icu catition', 1, '2022-06-07 12:14:10', 0, NULL, 0, NULL, 1),
(4487, 8912, 'Star health insurance ', 'Telesales ', '2021-10-20', 7.00, '2022-05-31', 17500.00, 'Vadapalani ', '1', '0 years 7 months', 'My mother will icu catition', 1, '2022-06-07 12:14:10', 0, NULL, 0, NULL, 1),
(4488, 8944, 'Prestige group of company', 'Telecaller', '2022-06-07', 10000.00, '1970-01-01', 15500.00, 'T.nagar', '2', '0 years 0 months', ' Husband past away', 1, '2022-06-07 12:43:57', 0, NULL, 0, NULL, 1),
(4489, 8946, 'Contact the service', 'Telecaller', '2021-06-08', 10000.00, '2021-12-13', 10000.00, 'Coimbatore', '1', '0 years 6 months', ' Salary low', 1, '2022-06-07 12:49:19', 0, NULL, 0, NULL, 1),
(4490, 8944, 'Prestige group of company', 'Telecaller', '2021-01-01', 10000.00, '2022-06-10', 15500.00, 'T nagar', '1', '1 years 5 months', 'Husband past away', 1, '2022-06-07 12:52:49', 0, NULL, 0, NULL, 1),
(4491, 8949, 'The optimal aid', 'Assistant manager', '2021-08-06', 12500.00, '2022-01-01', 12500.00, 'Kattupakkam', '1', '0 years 10 months', ' Due to health condition', 1, '2022-06-07 05:36:12', 0, NULL, 0, NULL, 1),
(4492, 8948, 'r.r donelly', 'document specialist', '2017-11-27', 10000.00, '2020-12-31', 15000.00, 'chennai', '1', '3 years 1 months', ' Personal reason', 1, '2022-06-07 07:22:03', 1, '2022-06-07 07:22:47', 0, NULL, 1),
(4493, 8951, 'Jana small finance bank', 'BDE', '2022-06-30', 15500.00, '1970-01-01', 17000.00, 'Chengalpattu', '2', '0 years 0 months', 'Salary problem', 1, '2022-06-08 11:51:43', 0, NULL, 0, NULL, 1),
(4494, 8952, 'HDFC Bank', 'Caller', '2020-10-08', 13000.00, '2022-04-18', 13000.00, 'Nelson manikkam road ', '1', '1 years 6 months', ' Health issues and some family issues ', 1, '2022-06-08 12:14:25', 0, NULL, 0, NULL, 1),
(4495, 8953, 'Tata motors', 'Customer advisor', '2020-03-01', 16000.00, '2021-05-30', 16000.00, 'Ambattur', '1', '1 years 3 months', ' ', 1, '2022-06-08 12:24:32', 0, NULL, 0, NULL, 1),
(4496, 8953, 'Tata motors', 'Customer advisor', '2020-03-01', 16000.00, '2021-05-30', 16000.00, 'Ambattur', '1', '1 years 3 months', 'Company closed', 1, '2022-06-08 12:27:21', 0, NULL, 0, NULL, 1),
(4497, 8957, 'Ankidyne ', 'Production engineer ', '2021-05-25', 17000.00, '2022-05-31', 25000.00, 'Chennai somangalam', '1', '1 years 0 months', ' My career growth ', 1, '2022-06-08 12:36:04', 0, NULL, 0, NULL, 1),
(4498, 8958, 'Sundram finance holdings Pvt ltd', 'Junior Associate', '2019-04-16', 110000.00, '2021-06-15', 133000.00, 'Royapetah', '1', '2 years 1 months', ' Not got upgrade in work and salary issues', 1, '2022-06-08 02:55:05', 0, NULL, 0, NULL, 1),
(4499, 8958, 'CAMS', 'Processing officer', '2021-07-15', 190800.00, '1970-01-01', 193000.00, 'Rayala towers ', '2', '0 years 10 months', 'Work atmosphere is good but the salary is the only issues for me.', 1, '2022-06-08 02:59:14', 0, NULL, 0, NULL, 1),
(4500, 8921, 'fresher', 'HR', '2021-01-22', 12000.00, '2022-06-08', 13000.00, 'chennai', '2', '0', 'for better Experience', 87, '2022-06-08 04:46:54', 0, NULL, 0, NULL, 1),
(4501, 8959, 'Consolidated analytics', 'Sr. Analyst', '2022-05-09', 30000.00, '2022-06-08', 30000.00, 'Chennai', '2', '0 years 0 months', 'Passion in HR. And it is a night shift job.', 1, '2022-06-08 05:41:57', 0, NULL, 0, NULL, 1),
(4502, 8963, 'Justdial', 'Telemarketing executive', '2021-11-23', 18000.00, '1970-01-01', 15000.00, 'Littlemount', '2', '0 years 6 months', ' No', 1, '2022-06-08 08:01:02', 0, NULL, 0, NULL, 1),
(4503, 8960, 'KGISL ', 'customer service executive', '2016-10-13', 9500.00, '2018-01-22', 9500.00, 'coimbatore', '1', '1 years 3 months', ' health issue', 1, '2022-06-09 12:55:28', 0, NULL, 0, NULL, 1),
(4504, 8964, 'Navin Electricals Pvt limited', 'MIS', '2020-11-01', 10000.00, '2022-04-13', 15000.00, 'Korattur', '1', '1 years 5 months', ' Not comfort to changing location and Family problem So relieved', 1, '2022-06-09 10:23:27', 0, NULL, 0, NULL, 1),
(4505, 8965, 'Sabeel technologies ', 'Human resources assistant ', '2021-03-01', 30.00, '2022-05-01', 16000.00, 'Chennai ', '1', '1 years 2 months', ' ', 1, '2022-06-09 11:05:42', 0, NULL, 0, NULL, 1),
(4506, 8965, 'Sabeel technologies ', 'Employee recruitment ', '2021-02-12', 12000.00, '2022-05-01', 16000.00, 'Chennai, saidapet', '1', '1 years 2 months', 'Because of my salary position issue ', 1, '2022-06-09 11:09:06', 0, NULL, 0, NULL, 1),
(4507, 8966, 'Innovative Solutions', 'back end process', '2020-02-05', 16000.00, '1970-01-01', 18000.00, 'chennai', '2', '2 years 4 months', ' ', 1, '2022-06-09 11:40:39', 0, NULL, 0, NULL, 1),
(4508, 8967, 'Kotak mahindra bank ', 'Associate ', '2020-12-14', 12000.00, '1970-01-01', 13500.00, 'Pondy bazaar', '2', '1 years 5 months', ' Covid issue', 1, '2022-06-09 12:17:43', 0, NULL, 0, NULL, 1),
(4509, 8969, 'ServeTek IT pvt ltd', 'Field engineer', '2012-06-14', 10000.00, '2022-05-01', 24150.00, 'Ashok nagar', '1', '9 years 10 months', ' ', 1, '2022-06-09 01:00:59', 0, NULL, 0, NULL, 1),
(4510, 8971, 'JMS Managements', 'HR ececutive', '2010-12-10', 10000.00, '2011-06-30', 25000.00, 'Chennai', '1', '0 years 6 months', ' Got job in IT field', 1, '2022-06-09 03:27:39', 0, NULL, 0, NULL, 1),
(4511, 8968, 'hyundai', 'traffic controller', '2019-08-15', 15000.00, '2022-01-09', 18000.00, 'chennai', '1', '2 years 4 months', ' Contract completed now interested to go in sales field', 1, '2022-06-10 09:47:55', 0, NULL, 0, NULL, 1),
(4512, 8977, 'HDB Financial Services', 'Telecaller', '2021-03-24', 12000.00, '1970-01-01', 15000.00, 'Chennai', '2', '1 years 2 months', ' ', 1, '2022-06-10 10:24:48', 0, NULL, 0, NULL, 1),
(4513, 8979, 'Lifestyle International Pvt Ltd', 'sales executive', '2021-03-22', 11000.00, '1970-01-01', 13500.00, 'chennai', '2', '1 years 2 months', ' Looking for salary hike And career growth', 1, '2022-06-10 10:35:44', 0, NULL, 0, NULL, 1),
(4514, 8973, 'MALINI SRI BAJAJ', 'sales executive', '2021-04-18', 10000.00, '2022-05-31', 10000.00, 'chennai', '1', '1 years 1 months', ' Looking for growth', 1, '2022-06-10 10:39:52', 0, NULL, 0, NULL, 1),
(4515, 8980, 'Myrank', 'Telecalling', '2021-05-07', 10000.00, '2021-12-31', 10000.00, 'Bhommanahalli', '1', '0 years 7 months', ' Personal problem', 1, '2022-06-10 11:02:59', 0, NULL, 0, NULL, 1),
(4516, 8983, 'Fusion bpo', 'Customer care executive', '2021-12-15', 15000.00, '2022-06-10', 15000.00, 'Ekkaduthangal', '2', '0 years 5 months', ' Rotational shift and rotational week off', 1, '2022-06-10 12:00:37', 0, NULL, 0, NULL, 1),
(4517, 8985, 'Excel', 'Stock incharge', '2015-06-10', 25000.00, '2022-02-09', 26000.00, 'Bangalore', '1', '6 years 7 months', ' Company closed', 1, '2022-06-10 12:15:40', 0, NULL, 0, NULL, 1),
(4518, 8988, 'Ms7 solutions', 'bajaj finance collections', '2021-01-11', 13000.00, '2022-02-19', 16000.00, 'thirumangalam', '1', '1 years 1 months', ' company was closed because it was associated company', 1, '2022-06-10 12:41:52', 0, NULL, 0, NULL, 1),
(4519, 8989, 'BFSL', 'Customer relationship executive', '2020-08-05', 17000.00, '2022-05-05', 17000.00, 'Anna nagar', '1', '1 years 9 months', ' Not having career growth', 1, '2022-06-10 12:42:44', 0, NULL, 0, NULL, 1),
(4520, 8990, 'Hdfc life insurance', 'Team leader', '2020-09-16', 12000.00, '1970-01-01', 14000.00, 'Saidapet', '2', '1 years 8 months', ' Looking for hike', 1, '2022-06-10 12:55:00', 0, NULL, 0, NULL, 1),
(4521, 8991, 'Kamms management consultant private limited ', 'Traniee HR ', '2022-02-07', 15000.00, '2022-06-03', 15000.00, 'T nagar ', '1', '0 years 3 months', ' Facing some personal issues ', 1, '2022-06-10 03:37:32', 0, NULL, 0, NULL, 1),
(4522, 8992, 'ivon experts', 'sales executive', '2016-02-17', 14000.00, '2019-04-12', 18000.00, 'chennai', '1', '3 years 1 months', 'growth ', 1, '2022-06-10 09:57:49', 0, NULL, 0, NULL, 1),
(4523, 8993, 'mswipe sales', 'sales officer', '2018-01-22', 15000.00, '2021-05-15', 20000.00, 'chennai', '1', '3 years 3 months', ' growth', 1, '2022-06-10 10:04:13', 0, NULL, 0, NULL, 1),
(4524, 8998, 'Dhfl', 'Relationship manager', '2016-11-07', 18000.00, '2022-04-08', 22870.00, 'Chennai', '1', '5 years 5 months', ' ', 1, '2022-06-11 01:29:51', 0, NULL, 0, NULL, 1),
(4525, 9000, 'Stellar plastics India Pvt ltd', 'HR Trainee', '2021-02-02', 15000.00, '1970-01-01', 15000.00, 'Oragadam', '2', '1 years 4 months', 'Carrier Growth', 1, '2022-06-11 03:44:59', 0, NULL, 0, NULL, 1),
(4526, 9003, 'iproat solution', 'operation executive', '2020-05-02', 15000.00, '2021-07-06', 17000.00, 'chennai ', '1', '1 years 2 months', 'growth ', 1, '2022-06-13 10:27:56', 0, NULL, 0, NULL, 1),
(4527, 9005, 'Reliance retail limited', 'Senior sales executive', '2019-05-10', 15000.00, '1970-01-01', 24000.00, 'Chrompet chennai', '2', '3 years 1 months', ' ', 1, '2022-06-13 11:09:53', 0, NULL, 0, NULL, 1),
(4528, 9004, 'Mobius Knowledge services ', 'Senior Process Associate (Data Research)', '2020-08-10', 11500.00, '1970-01-01', 15500.00, 'perungalathur', '2', '1 years 10 months', ' To develop career growth and to get better explore.', 1, '2022-06-13 11:13:15', 0, NULL, 0, NULL, 1),
(4529, 9006, 'Lifestyle international pvt Ltd', 'Cre', '2021-01-07', 13000.00, '1970-01-01', 15000.00, 'Ambuttur', '2', '1 years 5 months', ' ', 1, '2022-06-13 01:43:03', 0, NULL, 0, NULL, 1),
(4530, 9008, 'randstand pvt ltd', 'relationship executive', '2020-08-10', 12000.00, '2021-04-27', 14000.00, 'thanjavur', '1', '0 years 8 months', 'due to father health issue', 85, '2022-06-13 02:44:01', 0, NULL, 0, NULL, 1),
(4531, 9013, 'avtar consultancy', 'hr recruiter', '2021-03-03', 14000.00, '2022-05-31', 16000.00, 'chennai', '1', '1 years 2 months', ' Looking for hike', 1, '2022-06-14 10:07:16', 0, NULL, 0, NULL, 1),
(4532, 9022, 'aswin foundation', 'marketing and sales executive', '2021-02-14', 20000.00, '2022-05-19', 20000.00, 'chennai', '1', '1 years 3 months', ' Personal problem', 1, '2022-06-14 11:11:11', 0, NULL, 0, NULL, 1),
(4533, 9022, 'marketsof1', 'sales executive', '2019-02-14', 15000.00, '2021-05-01', 17000.00, 'guindy', '1', '2 years 2 months', 'I met an accodent ', 1, '2022-06-14 11:16:57', 0, NULL, 0, NULL, 1),
(4534, 9024, 'Indian Healthcare BPO ', 'HR Recruiter ', '2021-04-12', 10000.00, '2021-09-30', 10000.00, 'Chennai ', '1', '0 years 5 months', ' Career growth ', 1, '2022-06-14 11:28:15', 0, NULL, 0, NULL, 1),
(4535, 9024, 'Kinara Capital ', 'Trainee ', '2021-10-04', 10000.00, '2022-06-30', 12000.00, 'Tharamangalam Salem', '1', '0 years 8 months', 'Dissatisfied and Uncomfortable working department ', 1, '2022-06-14 11:31:11', 0, NULL, 0, NULL, 1),
(4536, 9023, 'indigo airlines', 'customer support', '2018-12-13', 23000.00, '2022-02-03', 23000.00, 'chennai', '1', '3 years 1 months', ' ', 1, '2022-06-14 11:47:39', 0, NULL, 0, NULL, 1),
(4537, 9026, 'AI enterprises ', 'Purchase executive ', '2019-04-08', 12000.00, '2022-02-21', 14000.00, 'Anna nagar ', '1', '2 years 10 months', ' Looking for HR Role ', 1, '2022-06-14 03:32:33', 0, NULL, 0, NULL, 1),
(4538, 9029, 'PNB MET LIFE', 'CRM', '2021-02-13', 450000.00, '2022-03-16', 450000.00, 'Chennai ', '1', '1 years 1 months', ' Career Growth ', 1, '2022-06-14 06:09:03', 0, NULL, 0, NULL, 1),
(4539, 9032, 'apollo tyres', 'machine operator', '2017-05-12', 12000.00, '2018-05-22', 14000.00, 'chennai', '1', '1 years 0 months', ' growth', 1, '2022-06-14 09:00:24', 0, NULL, 0, NULL, 1),
(4540, 9032, 'psk', 'site accountant', '2018-06-17', 16000.00, '2021-08-19', 17000.00, 'chennai', '1', '3 years 2 months', 'growth', 1, '2022-06-14 09:01:16', 0, NULL, 0, NULL, 1),
(4541, 9033, 'international flavours', 'sampling executive', '2014-06-23', 12000.00, '2020-12-31', 15000.00, 'chennai', '1', '6 years 6 months', ' growth', 1, '2022-06-14 09:07:08', 0, NULL, 0, NULL, 1),
(4542, 9034, 'paesetter business solutions', 'sales executive', '2018-07-16', 14000.00, '2019-08-28', 15000.00, 'chennai', '1', '1 years 1 months', 'growth ', 1, '2022-06-14 09:12:52', 0, NULL, 0, NULL, 1),
(4543, 9036, 'iccs bpo', 'caller', '2019-04-09', 12000.00, '2019-10-11', 13000.00, 'chennai', '1', '0 years 6 months', 'growth ', 1, '2022-06-14 09:18:06', 0, NULL, 0, NULL, 1),
(4544, 9037, 'zealous', 'telecaller', '2020-08-11', 10000.00, '2021-03-19', 10000.00, 'chennai', '1', '0 years 7 months', 'process ramp down ', 1, '2022-06-14 09:57:38', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4545, 9039, 'Karvy', 'Bpo telecalling', '2016-06-15', 14000.00, '2021-12-19', 14000.00, 'Chennai,mumbai', '1', '5 years 6 months', ' I have worked with bpo', 1, '2022-06-15 10:15:16', 0, NULL, 0, NULL, 1),
(4546, 9041, 'teamlease service pvt ltd', 're', '2019-10-05', 20000.00, '2021-11-25', 20000.00, 'kormangala', '1', '2 years 1 months', ' ', 1, '2022-06-15 01:26:44', 0, NULL, 0, NULL, 1),
(4547, 9046, 'Anniu pvt ltd', 'Collections ', '2017-01-22', 24000.00, '2022-05-02', 25500.00, 'Bangalore', '1', '5 years 3 months', ' Company got shutdown', 1, '2022-06-15 05:31:39', 0, NULL, 0, NULL, 1),
(4548, 9050, 'Hdfc bank Ltd', 'Sale executive', '2021-11-01', 12000.00, '1970-01-01', 22000.00, 'Nungapakkam', '2', '0 years 7 months', ' For my next level of career and salary requirements', 1, '2022-06-16 10:18:03', 0, NULL, 0, NULL, 1),
(4549, 9053, 'Sam Joyce realty Pvt Ltd', 'Consultant', '2020-06-22', 12000.00, '2021-07-30', 15000.00, 'Ekkaduthangal', '1', '1 years 1 months', 'Medical issues ', 1, '2022-06-16 11:09:46', 0, NULL, 0, NULL, 1),
(4550, 9047, 'HDFC -HDB Financial services', 'Telecaller', '2019-12-06', 15000.00, '2020-11-06', 15000.00, 'Nungambakkam', '1', '0 years 11 months', ' Due to pandamic', 1, '2022-06-16 11:14:58', 0, NULL, 0, NULL, 1),
(4551, 9061, 'Wedtree estore Private limited', 'Teynampet', '2019-05-05', 6500.00, '2022-04-01', 16250.00, 'T.nagar', '1', '2 years 10 months', ' Company shifted to Bangalore', 1, '2022-06-17 10:36:48', 0, NULL, 0, NULL, 1),
(4552, 9062, 'Global health care pvt limited ', 'Ar caller voice process ', '2019-01-08', 15000.00, '2021-05-20', 28000.00, 'Chennai ', '1', '2 years 4 months', ' Project romdown ', 1, '2022-06-17 11:04:25', 0, NULL, 0, NULL, 1),
(4553, 9062, 'AGS healthcare pvt limited ', 'Ar analysit', '2021-12-09', 26000.00, '2022-03-20', 26000.00, 'Chennai ', '1', '0 years 3 months', 'Health issue ', 1, '2022-06-17 11:06:29', 0, NULL, 0, NULL, 1),
(4554, 9064, 'sri vengateswara tvs showroom', 'sales ', '2016-03-03', 6000.00, '2018-04-10', 8000.00, 'rasipuram', '1', '2 years 1 months', ' ', 1, '2022-06-17 01:32:19', 0, NULL, 0, NULL, 1),
(4555, 9064, 'maruthi ambal car showroom', 'reseptionist', '2019-09-20', 8000.00, '2020-03-20', 8000.00, 'ats dippo rasipuram', '1', '0 years 6 months', 'corona period', 1, '2022-06-17 01:40:25', 0, NULL, 0, NULL, 1),
(4556, 9065, 'asg solutions pvt.ltd', 'html codeing developers', '2019-11-01', 12000.00, '2021-07-01', 12000.00, 'coimbatore', '1', '1 years 7 months', ' healthissues', 1, '2022-06-17 02:10:11', 0, NULL, 0, NULL, 1),
(4557, 9072, 'HDB financial services', 'Collection', '2021-09-15', 15000.00, '2022-06-18', 15000.00, 'Mount road g.p road', '1', '0 years 9 months', ' Shift time over', 1, '2022-06-18 11:55:54', 0, NULL, 0, NULL, 1),
(4558, 9076, 'HDFC Life insurance company', 'Business Development Manager', '2017-03-01', 16000.00, '2019-06-30', 25000.00, 'Chennai', '1', '2 years 4 months', ' Change of Channel ', 1, '2022-06-18 11:22:03', 0, NULL, 0, NULL, 1),
(4559, 9076, 'Maxlife insurance company', 'Associate Sales Manager', '2019-07-01', 25000.00, '2021-02-28', 25000.00, 'Chennai', '1', '1 years 7 months', 'Better Career Growth', 1, '2022-06-18 11:26:30', 1, '2022-06-18 11:31:09', 0, NULL, 1),
(4560, 9076, 'PNB MetLife insurance company', 'Chief Relationship Manager', '2021-03-01', 33000.00, '2021-09-30', 33000.00, 'Chennai', '1', '0 years 7 months', 'Better opportunity', 1, '2022-06-18 11:33:48', 0, NULL, 0, NULL, 1),
(4561, 9076, 'Star Union Dai-Ichi Life insurance company', 'Deputy Relationship Manager', '2021-10-01', 33000.00, '1970-01-01', 33000.00, 'Chennai', '2', '0 years 8 months', 'Better opportunity', 1, '2022-06-18 11:36:24', 0, NULL, 0, NULL, 1),
(4562, 9077, 'Customer service point ,state Bank of India ', 'Employee ', '2021-06-04', 10000.00, '2022-06-19', 10000.00, 'Coimbatore ', '1', '1 years 0 months', ' I need to learn more , and I live apart form my family so I releiving', 1, '2022-06-20 10:28:28', 0, NULL, 0, NULL, 1),
(4563, 9078, 'CAMS', 'Assistant processing officer', '2019-05-06', 9000.00, '2022-06-15', 12000.00, 'KH road', '1', '3 years 1 months', ' I want to grow my knowledge And Financially also\n', 1, '2022-06-20 11:22:39', 0, NULL, 0, NULL, 1),
(4564, 9081, 'Faber chimney and gas stove', 'Telecaller executive', '2016-10-15', 8000.00, '2017-11-20', 10000.00, 'Chennai', '1', '1 years 1 months', 'Married ', 1, '2022-06-20 12:11:36', 0, NULL, 0, NULL, 1),
(4565, 9083, 'Aarthi scans and labs', 'Tellacaller', '2021-05-10', 11000.00, '2021-08-31', 0.00, 'Vadaplani', '1', '0 years 3 months', ' ', 1, '2022-06-20 12:21:37', 0, NULL, 0, NULL, 1),
(4566, 9083, 'Aarthi scans and labs', 'Tellecaller', '2021-05-10', 13000.00, '2021-08-31', 13000.00, 'Vadaplani', '1', '0 years 3 months', 'Looking for better opportunity according to my career and relieved the job. ', 1, '2022-06-20 12:26:26', 0, NULL, 0, NULL, 1),
(4567, 9087, 'ICICI', 'Tele Credit Collections executive', '2019-02-13', 15000.00, '2020-10-31', 18000.00, 'Ambattur', '1', '1 years 8 months', ' Got Married', 1, '2022-06-20 05:53:09', 0, NULL, 0, NULL, 1),
(4568, 9092, 'Vizza investment service ', 'Caller', '2021-02-04', 10000.00, '1970-01-01', 12000.00, 'Saidapet', '2', '1 years 4 months', ' Not giving proper incentives and no increment ', 1, '2022-06-21 11:40:16', 0, NULL, 0, NULL, 1),
(4569, 9098, 'Advaith Hyundai company', 'Telecaller', '2020-08-09', 18000.00, '2021-06-22', 18000.00, 'Hulimavu', '1', '0 years 10 months', ' Father health issues', 1, '2022-06-22 10:12:52', 0, NULL, 0, NULL, 1),
(4570, 9099, 'Chendhur blue metal', 'Accountant', '2019-07-01', 15000.00, '1970-01-01', 20000.00, 'Pudukkottai', '2', '2 years 11 months', 'Work pressher and uncomfortable salary', 1, '2022-06-22 12:17:15', 0, NULL, 0, NULL, 1),
(4571, 9099, 'Chendhur blue metal', 'Accountant', '2019-07-01', 15000.00, '1970-01-01', 20000.00, 'Pudukkottai', '2', '2 years 11 months', 'Work Pressure and uncomfortable salary', 1, '2022-06-22 12:18:56', 0, NULL, 0, NULL, 1),
(4572, 9100, 'vcare', 'front office ', '2021-06-02', 13000.00, '2022-06-22', 13068.00, 'erode', '1', '1 years 0 months', 'salary issuse ', 1, '2022-06-22 12:27:02', 0, NULL, 0, NULL, 1),
(4573, 9095, 'Tech  Mahindra ', 'Customer service ', '2020-03-22', 13000.00, '2021-05-10', 14000.00, 'Ambathur ', '1', '1 years 1 months', ' ', 1, '2022-06-22 12:45:47', 0, NULL, 0, NULL, 1),
(4574, 9104, 'Teamlease', 'Hr recruiter', '2021-08-10', 30.00, '2022-03-11', 14500.00, 'Nungambakkam', '1', '0 years 7 months', ' Contract ended', 1, '2022-06-22 01:39:51', 0, NULL, 0, NULL, 1),
(4575, 9103, 'Teamlease', 'HR Recruiter', '2021-08-12', 14.50, '2022-03-11', 14500.00, 'Nungambakkam', '1', '0 years 6 months', ' Contract closed', 1, '2022-06-22 01:46:27', 0, NULL, 0, NULL, 1),
(4576, 9106, 'Tanla solutions Limited ', 'Campaign Executive', '2022-01-31', 27500.00, '1970-01-01', 27500.00, 'Chennai', '2', '0 years 4 months', ' Need to learn and explore on a digital marketing field ', 1, '2022-06-22 02:25:17', 0, NULL, 0, NULL, 1),
(4577, 9105, 'Dunzo private limites', 'Telecalling', '2021-12-03', 2.00, '2022-06-15', 18500.00, 'Banglore', '1', '0 years 6 months', ' I searching new job', 1, '2022-06-22 02:29:55', 0, NULL, 0, NULL, 1),
(4578, 9108, 'India post', 'Direct agent', '2020-12-12', 10000.00, '1970-01-01', 10000.00, 'Dharmapuri ', '2', '1 years 6 months', ' ', 1, '2022-06-22 03:05:38', 0, NULL, 0, NULL, 1),
(4579, 9112, 'JK SHAH CLASSES', 'Sales and Marketing head', '2021-04-05', 15000.00, '2022-05-31', 25000.00, 'Nungambakkam', '1', '1 years 1 months', ' Need To learn more things', 1, '2022-06-22 09:50:20', 0, NULL, 0, NULL, 1),
(4580, 9113, 'Armsoftech ', 'Credit card collection ', '2020-12-03', 10000.00, '2022-06-09', 10000.00, 'Perungudi ', '1', '1 years 6 months', ' Travelling is too long ', 1, '2022-06-23 11:27:59', 0, NULL, 0, NULL, 1),
(4581, 9114, 'Nissan Renault  financial Service  india pvt ltd a', 'Credit Assistance and admin Support ', '2017-05-29', 10000.00, '2020-08-28', 18000.00, 'chennai', '1', '3 years 2 months', ' personal  reason', 1, '2022-06-23 11:55:21', 0, NULL, 0, NULL, 1),
(4582, 9116, 'CSR and cogent', 'Csr for 24months, asst. Tl for 12month', '2018-06-23', 22000.00, '2022-06-20', 21300.00, 'Bangalore', '1', '3 years 11 months', ' ', 1, '2022-06-23 02:23:43', 0, NULL, 0, NULL, 1),
(4583, 9118, 'NLGIC PVD', 'oman document checking', '2021-04-03', 15000.00, '1970-01-01', 15000.00, 'nungabbakkam', '2', '1 years 2 months', ' nil', 1, '2022-06-24 10:02:35', 0, NULL, 0, NULL, 1),
(4584, 9119, 'hathyaway board brand SCB', 'Tecalling', '2021-12-05', 15000.00, '1970-01-01', 15000.00, 'Nungabbakkam', '2', '0 years 6 months', ' nil', 1, '2022-06-24 10:14:31', 0, NULL, 0, NULL, 1),
(4585, 9122, 'ICICI BANK', 'sales executive', '2019-06-07', 14000.00, '2020-12-11', 16000.00, 'madurai', '1', '1 years 6 months', ' Changed for hike', 1, '2022-06-24 11:20:02', 0, NULL, 0, NULL, 1),
(4586, 9122, 'AXIS BANK', 'business developement officer', '2021-04-20', 17500.00, '2021-08-23', 17500.00, 'madurai', '1', '0 years 4 months', 'Due to personal issue', 1, '2022-06-24 11:21:57', 0, NULL, 0, NULL, 1),
(4587, 9094, 'ICICI LOMBARD GENERAL INSURANCE CORPORATE LIMITED ', 'TELE SALES OFFICER ', '2019-05-19', 14800.00, '1970-01-01', 19600.00, 'MOUNT ROAD', '2', '3 years 1 months', ' ', 1, '2022-06-24 11:48:38', 0, NULL, 0, NULL, 1),
(4588, 9117, 'Icici lombard general insurance ', 'Relationship manager ', '2019-12-16', 13000.00, '1970-01-01', 17800.00, 'Thousand lights  ', '2', '2 years 6 months', ' ', 1, '2022-06-24 11:52:29', 0, NULL, 0, NULL, 1),
(4589, 9126, '23 solutions', 'Tele sales officer', '2021-10-12', 10000.00, '2022-06-10', 10000.00, 'T. Nagar', '1', '0 years 7 months', ' \nSalary and timing', 1, '2022-06-24 12:05:11', 0, NULL, 0, NULL, 1),
(4590, 9128, 'Tidc India', 'Ppc', '2021-01-18', 15000.00, '2022-05-05', 15000.00, 'Ambattur', '1', '1 years 3 months', ' Salary is not Statification  ', 1, '2022-06-24 01:24:57', 0, NULL, 0, NULL, 1),
(4591, 9134, 'Taurus', 'Senior customer support executive ', '2021-05-18', 12000.00, '2022-05-29', 12000.00, 'Chennai', '1', '1 years 0 months', ' Growth', 1, '2022-06-24 11:04:48', 0, NULL, 0, NULL, 1),
(4592, 9135, 'Taurus', 'Consumer service executive ', '2019-08-17', 12000.00, '2020-08-27', 13000.00, 'Chennai', '1', '1 years 0 months', ' Growth', 1, '2022-06-24 11:10:03', 0, NULL, 0, NULL, 1),
(4593, 9139, 'sureti insurance', 'telecaller', '2020-05-09', 18000.00, '2022-05-12', 20000.00, 'coimbatore', '1', '2 years 0 months', ' ', 1, '2022-06-25 10:51:55', 0, NULL, 0, NULL, 1),
(4594, 9142, 'Paramount shipping services pvt ltd', 'Important documentation', '2022-01-01', 15000.00, '2022-06-21', 15000.00, 'Parrys', '1', '0 years 5 months', ' Salary issue', 1, '2022-06-25 01:16:55', 1, '2022-06-25 01:19:50', 0, NULL, 1),
(4595, 9142, 'Rkpa shipping company ', 'Accounts and documentation', '2021-01-05', 10000.00, '2021-12-20', 10000.00, 'Parrys', '1', '0 years 11 months', 'They Banned the office', 1, '2022-06-25 01:19:31', 0, NULL, 0, NULL, 1),
(4596, 9147, 'tamil traders', 'admin', '2021-06-25', 8000.00, '1970-01-01', 9000.00, 'thanjavur', '2', '1 years 0 months', ' ', 1, '2022-06-27 11:23:47', 0, NULL, 0, NULL, 1),
(4597, 9152, ' Armsoftech', ' Tellecaller', '2019-06-27', 1.00, '2022-01-30', 12500.00, 'Chennai', '1', '2 years 7 months', ' ', 1, '2022-06-27 11:36:54', 0, NULL, 0, NULL, 1),
(4598, 9151, 'HDB Financial services ', 'Senior office', '2019-09-24', 12500.00, '2021-12-31', 12500.00, 'GP road', '1', '2 years 3 months', ' ', 1, '2022-06-27 11:39:53', 0, NULL, 0, NULL, 1),
(4599, 9157, 'First American', 'Process Assovative', '2020-10-28', 17.00, '2022-07-15', 20000.00, 'Salem', '1', '1 years 8 months', ' Wants to update my self. Need to relocate', 1, '2022-06-28 10:13:38', 0, NULL, 0, NULL, 1),
(4600, 9161, 'Bharathi airtel limited ', 'Customer relationship officer ', '2021-12-10', 23012022.00, '2022-06-28', 9500.00, 'Punganur ', '1', '0 years 6 months', 'Salary related ', 1, '2022-06-28 10:41:21', 0, NULL, 0, NULL, 1),
(4601, 9163, 'Maharaja Readymade ', 'Supervisor', '2013-07-01', 10000.00, '2013-12-25', 12000.00, 'Thanjavur ', '1', '0 years 5 months', ' Got a job from abroad', 1, '2022-06-28 11:15:47', 0, NULL, 0, NULL, 1),
(4602, 9163, 'Al-Zayani Money Exchange ', 'Banker ', '2014-01-02', 30000.00, '2014-08-25', 30000.00, 'Saudi Arabia', '1', '0 years 7 months', 'Company Closed ', 1, '2022-06-28 11:17:51', 0, NULL, 0, NULL, 1),
(4603, 9163, 'OTTO Clothing Pvt Ltd (Maharaja)', 'Store Incharge ', '2014-09-08', 18000.00, '2015-02-25', 18000.00, 'Thanjavur ', '1', '0 years 5 months', 'Salary Issue ', 1, '2022-06-28 11:20:45', 0, NULL, 0, NULL, 1),
(4604, 9163, 'OPPO India Pvt Ltd ', 'Sales promoter', '2015-03-02', 12000.00, '2017-01-01', 15000.00, 'Thanjavur ', '1', '1 years 9 months', 'Promotion to team leader', 1, '2022-06-28 11:23:10', 0, NULL, 0, NULL, 1),
(4605, 9163, 'OPPO INDIA PVT LTD ', 'Team Leader ', '2017-01-02', 16000.00, '2019-04-29', 17000.00, 'Thanjavur & pattukottai', '1', '2 years 3 months', 'Salary Issue ', 1, '2022-06-28 11:24:40', 0, NULL, 0, NULL, 1),
(4606, 9163, 'Ola Ani Technology Pvt Ltd ', 'Field executive', '2019-05-08', 22000.00, '2020-05-31', 22000.00, 'Trichy & Thanjavur ', '1', '1 years 0 months', 'COVID lockdown company  ask to resign The job', 1, '2022-06-28 11:28:48', 0, NULL, 0, NULL, 1),
(4607, 9163, 'Delibots ', 'Operation Head ', '2020-06-22', 25000.00, '2021-11-29', 28000.00, 'Tamil Nadu ', '1', '1 years 5 months', 'Personal issue', 1, '2022-06-28 11:30:45', 0, NULL, 0, NULL, 1),
(4608, 9169, 'Toys r us', 'Senior sales associate', '2019-07-15', 17000.00, '2020-03-13', 17000.00, 'Chennai', '1', '0 years 7 months', ' They shutdown the stores due to pandemic lockdown ', 1, '2022-06-28 12:43:36', 0, NULL, 0, NULL, 1),
(4609, 9169, 'CA Honda motors', 'Sales executive ', '2018-05-07', 12000.00, '2019-05-31', 12000.00, 'Thiruvarur ', '1', '1 years 0 months', 'Location shifting ', 1, '2022-06-28 12:45:59', 0, NULL, 0, NULL, 1),
(4610, 9171, 'ANNIU Pvt Ltd', 'Collections Agent', '2018-01-22', 14500.00, '2019-06-18', 18000.00, 'HSR Layout', '1', '1 years 4 months', ' Company got shutdown', 1, '2022-06-28 05:52:57', 0, NULL, 0, NULL, 1),
(4611, 9174, 'justdial', 'telesales', '2022-01-06', 18000.00, '2022-06-06', 18000.00, 'chennai', '1', '0 years 5 months', 'Family problem', 1, '2022-06-29 10:56:15', 0, NULL, 0, NULL, 1),
(4612, 9174, 'vanavil estate', 'field executive', '2021-08-10', 15000.00, '2022-01-05', 15000.00, 'chennai', '1', '0 years 4 months', 'Working hours too long', 1, '2022-06-29 10:59:52', 0, NULL, 0, NULL, 1),
(4613, 9176, 'Serco bpo', 'Tele calling executive', '2010-06-01', 5800.00, '2011-06-30', 5800.00, 'Chennai', '1', '1 years 0 months', ' Search for better oppurtunity', 1, '2022-06-29 11:30:49', 0, NULL, 0, NULL, 1),
(4614, 9176, 'Hitachi payment', 'Assistant manager', '2013-04-08', 10000.00, '2022-03-22', 23800.00, 'Chennai', '1', '8 years 11 months', 'Search for better oppurtunity', 1, '2022-06-29 11:32:17', 0, NULL, 0, NULL, 1),
(4615, 9175, 'Indus towers pvt ltd', 'Financ executive ', '2022-01-05', 16000.00, '2022-05-01', 16000.00, 'Gundy ', '1', '0 years 3 months', ' Job location changed to out of chennai', 1, '2022-06-29 11:37:06', 0, NULL, 0, NULL, 1),
(4616, 9177, 'Self made ecom private limited', 'Telecalling', '2019-09-29', 8500.00, '2021-12-17', 10000.00, 'Coimbatore', '1', '2 years 2 months', 'My final exam will be start then I have so much of college work that the reason I relieving work', 1, '2022-06-29 12:33:40', 0, NULL, 0, NULL, 1),
(4617, 9185, 'Pace setters ', 'SBI verification ', '2022-01-12', 15000.00, '2022-06-30', 15000.00, 'Nungambakkam ', '1', '0 years 5 months', ' Looking for good career ', 1, '2022-06-30 10:43:59', 0, NULL, 0, NULL, 1),
(4618, 9190, 'wow interios ', 'project manager', '2017-01-02', 15000.00, '2021-11-30', 28000.00, 'marathahalli', '1', '4 years 10 months', ' Personal issues', 1, '2022-06-30 12:15:46', 0, NULL, 0, NULL, 1),
(4619, 9191, 'Almighty business solutions ', 'Telecaller ', '2021-12-15', 15000.00, '2022-05-20', 15000.00, 'Chennai ', '1', '0 years 5 months', ' ', 1, '2022-06-30 01:05:24', 0, NULL, 0, NULL, 1),
(4620, 9191, 'Almighty business solutions ', 'Telecaller ', '2021-12-15', 15000.00, '2022-05-20', 15000.00, 'Chennai ', '1', '0 years 5 months', 'Some personal reason ', 1, '2022-06-30 01:08:32', 0, NULL, 0, NULL, 1),
(4621, 9144, 'Taurus bpo', 'Telecaller ', '2021-08-07', 13000.00, '2022-01-10', 13000.00, 'Kodambakkam ', '1', '0 years 5 months', ' ', 1, '2022-06-30 01:19:39', 0, NULL, 0, NULL, 1),
(4622, 9144, 'Shriram life insurance ', 'Telecaller ', '2022-03-24', 15000.00, '2022-05-31', 15000.00, 'Kodambakkam ', '1', '0 years 2 months', 'Semester ', 1, '2022-06-30 01:21:05', 0, NULL, 0, NULL, 1),
(4623, 9202, 'Fullerton India ', 'Branch collection officer ', '2021-03-03', 12000.00, '2022-07-06', 15000.00, 'Trichy', '1', '1 years 4 months', ' Finding next better opportunity', 1, '2022-07-01 10:44:45', 0, NULL, 0, NULL, 1),
(4624, 9204, 'Policy bazaar ', 'Sales associate ', '2021-10-14', 22900.00, '2022-05-23', 22900.00, 'Vasanth nagar', '1', '0 years 8 months', ' Was in hospital for 40 days', 1, '2022-07-01 10:47:18', 0, NULL, 0, NULL, 1),
(4625, 9207, 'Adboxers ', 'Digital marketing associate ', '2021-02-03', 12000.00, '2022-04-20', 15000.00, 'Chennai ', '1', '1 years 2 months', ' Due to health issues ', 1, '2022-07-01 11:06:16', 0, NULL, 0, NULL, 1),
(4626, 9208, 'Silicon media technology pvt Ltd ', 'Process executive ', '2022-03-08', 18500.00, '2022-07-01', 18500.00, 'Bangalore ', '1', '0 years 3 months', ' Have to shift to insurance side job', 1, '2022-07-01 11:40:37', 0, NULL, 0, NULL, 1),
(4627, 9209, 'Aircel office', 'Bpo', '2018-07-14', 10000.00, '2019-05-09', 12000.00, 'Arumbakkam', '1', '0 years 9 months', ' No proper salary ', 1, '2022-07-01 12:18:34', 0, NULL, 0, NULL, 1),
(4628, 9219, 'Sbi credit card and payment', 'Sales executive', '2020-10-07', 5.00, '2021-01-06', 16.00, 'Kilpuk', '1', '0 years 2 months', ' Time to travel and pressure', 1, '2022-07-02 11:34:53', 0, NULL, 0, NULL, 1),
(4629, 9222, 'Sales marketing', 'Customer service', '2019-12-21', 10000.00, '2022-02-19', 15000.00, 'Navalur', '1', '2 years 1 months', ' Salary issue', 1, '2022-07-02 11:55:53', 0, NULL, 0, NULL, 1),
(4630, 9223, 'Allset business solution', 'Tele callee', '2020-02-12', 1.00, '2021-08-02', 12500.00, 'Chennai', '1', '1 years 5 months', 'Medical issue ', 1, '2022-07-02 12:00:34', 0, NULL, 0, NULL, 1),
(4631, 9221, 'lakshmi chit funds', 'telecaller', '2022-01-06', 13000.00, '2022-03-16', 13000.00, 'ambattur', '1', '0 years 2 months', ' College started', 1, '2022-07-02 12:03:54', 0, NULL, 0, NULL, 1),
(4632, 9224, 'Teleperformance', 'Customer care associated', '2021-01-01', 14.00, '1970-01-01', 14.00, 'Ambattur', '2', '1 years 6 months', ' ', 1, '2022-07-02 12:59:53', 0, NULL, 0, NULL, 1),
(4633, 9229, 'Bajai bike company ', 'Sales ', '2020-03-03', 12000.00, '2022-04-07', 14000.00, 'Mannargudi ', '1', '2 years 1 months', 'I don\'t like that job', 1, '2022-07-04 09:57:01', 0, NULL, 0, NULL, 1),
(4634, 9232, 'Tata Capital Housing finance limited ', 'Sales Co ordinator ', '2022-04-04', 15000.00, '1970-01-01', 15000.00, 'Tambaram, chennai ', '2', '0 years 3 months', 'I worked Nearly more than 23 hours a day at month end from date 25th so i can\'t concentrate on my personal Issues and so times need to work on Sunday\'s.', 1, '2022-07-04 10:57:10', 0, NULL, 0, NULL, 1),
(4635, 9231, 'Ppms filed marketing pvt ltd', 'Accountant', '2018-05-15', 10.00, '1970-01-01', 17400.00, 'Arumbakkam', '2', '4 years 1 months', ' Need growth and salary hike ', 1, '2022-07-04 11:20:18', 0, NULL, 0, NULL, 1),
(4636, 9235, 'Axis bank ', 'Relationship officer ', '2021-09-20', 18000.00, '2022-04-20', 18000.00, 'Kodambakkam ', '1', '0 years 7 months', 'Emergency I went to native ', 1, '2022-07-04 11:34:36', 0, NULL, 0, NULL, 1),
(4637, 9235, 'Suba solution ', 'HR', '2019-08-22', 20000.00, '2020-04-30', 20000.00, 'Vandalur', '1', '0 years 8 months', 'Because of covid', 1, '2022-07-04 11:37:28', 0, NULL, 0, NULL, 1),
(4638, 8839, 'GHV advanced care pvt limited ', 'Business development manager ', '2022-02-19', 34000.00, '2022-05-31', 34000.00, 'Gurgram, haryana', '1', '0 years 3 months', ' I have final year university exams so I need one month,they can\'t provide that much leaves so I resigned that job. ', 1, '2022-07-04 01:22:21', 0, NULL, 0, NULL, 1),
(4639, 9248, 'airtel', 'telecaller', '2021-09-10', 15000.00, '2022-01-03', 15000.00, 'chennai', '1', '0 years 3 months', ' i didn\'t serve my notice period due to my health issue ', 1, '2022-07-04 01:32:08', 0, NULL, 0, NULL, 1),
(4640, 9254, 'Indusind bank ltd', 'Deputy manager', '2016-11-07', 2.60, '2019-11-07', 3.00, 'Mogappair ', '1', '3 years 0 months', 'Delivery', 1, '2022-07-05 10:50:13', 0, NULL, 0, NULL, 1),
(4641, 9255, 'trendia', 'quality analyst', '2021-04-22', 20000.00, '2022-03-31', 24000.00, 'hyderabad', '1', '0 years 11 months', ' Thought of settling in bangalore into insurance company', 1, '2022-07-05 11:18:11', 0, NULL, 0, NULL, 1),
(4642, 9258, 'Muthoot finance ', 'Personal loan ', '2018-07-28', 20000.00, '2020-07-05', 25000.00, 'Hsr layout', '1', '1 years 11 months', ' Accident', 1, '2022-07-05 11:34:10', 0, NULL, 0, NULL, 1),
(4643, 9260, 'Unique NHIR industries pvt ltd', 'Admin', '2018-08-25', 7000.00, '2019-07-05', 8.50, 'Puducherry', '1', '0 years 10 months', ' Health issues', 1, '2022-07-05 12:29:45', 0, NULL, 0, NULL, 1),
(4644, 9268, 'Private sector ', 'Finance Co-Ordinator ', '2020-11-05', 6000.00, '2022-07-05', 10000.00, 'Thanjavur ', '1', '1 years 8 months', 'Salary problem', 1, '2022-07-05 01:07:08', 0, NULL, 0, NULL, 1),
(4645, 9267, 'Private sector ', 'RTO', '2021-05-23', 6000.00, '2022-07-05', 10000.00, 'Thanjavur ', '1', '1 years 1 months', ' Salary problem ', 1, '2022-07-05 01:07:11', 0, NULL, 0, NULL, 1),
(4646, 9266, 'loans group financial services ', 'tellecaller, executive', '2021-04-03', 13000.00, '1970-01-01', 16000.00, 'tenampet', '2', '1 years 3 months', ' mother as deth April 2022 so relieving office ', 1, '2022-07-05 01:18:24', 0, NULL, 0, NULL, 1),
(4647, 9274, 'Aditya birla', 'Team leader', '2022-02-25', 5000.00, '1970-01-01', 8000.00, 'Adyar', '2', '0 years 4 months', 'No', 1, '2022-07-05 03:22:24', 0, NULL, 0, NULL, 1),
(4648, 9281, 'Flipkart', 'Support Engineer ', '2022-01-26', 23000.00, '2022-07-05', 23000.00, 'Naraspura', '1', '0 years 5 months', ' They told Me to relocated for another Branch but It\'s too long to me. I requested to company  I\'m not able to relocate but they not accepted.', 1, '2022-07-06 11:27:22', 0, NULL, 0, NULL, 1),
(4649, 9286, 'Tranxit technology private limited', 'Seo analysist', '2021-06-21', 15000.00, '1970-01-01', 15000.00, 'Nandanam', '2', '1 years 0 months', ' Over time', 1, '2022-07-06 02:28:54', 0, NULL, 0, NULL, 1),
(4650, 9289, 'sri sai insurance', 'advisor', '2020-01-19', 14000.00, '2022-01-28', 15000.00, 'chennai', '1', '2 years 0 months', 'It was a part time job. now looking for full time based', 1, '2022-07-06 08:25:36', 0, NULL, 0, NULL, 1),
(4651, 9295, 'Fresher', 'Telesales ', '2022-01-27', 18000.00, '2022-04-21', 16000.00, 'Chennai ', '1', '0 years 2 months', ' Im relocate to Chennai ', 1, '2022-07-07 11:45:26', 0, NULL, 0, NULL, 1),
(4652, 9298, 'MM associates', 'Administration executive and recruiter', '2020-06-04', 17000.00, '2021-10-31', 17000.00, 'Chennai', '1', '1 years 4 months', ' Shifted to another location', 1, '2022-07-07 02:33:20', 0, NULL, 0, NULL, 1),
(4653, 9298, 'Advansure tech consultant private limited', 'Recruiter', '2021-11-01', 20000.00, '2022-06-30', 20000.00, 'Chennai', '1', '0 years 7 months', '.. ', 1, '2022-07-07 02:34:22', 0, NULL, 0, NULL, 1),
(4654, 9307, 'pillai&sons maruti suzuki', 'telecaller', '2021-03-01', 8000.00, '1970-01-01', 8000.00, 'thanjavur', '2', '1 years 4 months', 'salary  problem', 1, '2022-07-08 10:45:16', 0, NULL, 0, NULL, 1),
(4655, 9305, 'Sutherland Global Services ', 'Associate ', '2021-04-22', 18000.00, '2022-04-02', 23000.00, 'Chennai', '1', '0 years 11 months', ' Medical issues', 1, '2022-07-08 11:29:15', 0, NULL, 0, NULL, 1),
(4656, 9326, 'Octopus Tech Solution pvt Ltd ', 'Customer support executive ', '2021-05-04', 15000.00, '2022-06-30', 15000.00, 'Kudlu gate', '1', '1 years 1 months', 'Process will be closed ', 1, '2022-07-09 03:27:22', 0, NULL, 0, NULL, 1),
(4657, 9324, 'Ajay poly private limited ', 'Junior engineer ', '2018-06-01', 12500.00, '2021-09-08', 17500.00, 'Sriperumbudur ', '1', '3 years 3 months', ' Personal problem ', 1, '2022-07-09 05:43:20', 0, NULL, 0, NULL, 1),
(4658, 9325, 'EXAMSDAILY ', 'CONTENT WRITER & YOUTUBER', '2019-06-01', 5000.00, '2019-12-31', 5000.00, 'MADURAI', '1', '0 years 6 months', ' HIGHER STUDIES', 1, '2022-07-10 11:58:41', 1, '2022-07-10 11:59:32', 0, NULL, 1),
(4659, 9339, 'Balu honda', 'sales team leader', '2018-03-31', 7000.00, '2021-07-30', 15000.00, 'thanjavur', '1', '3 years 3 months', ' Some health Issues and family Problems', 1, '2022-07-11 11:54:48', 0, NULL, 0, NULL, 1),
(4660, 9340, 'ADITYA BIRLA SUN LIFE INSURANCE ', 'EXICUTIVE UNIT SALES MANAGER ', '2021-06-18', 18500.00, '2022-02-15', 18500.00, 'ADYAR ', '1', '0 years 7 months', ' Feature Growth ', 1, '2022-07-11 12:05:18', 0, NULL, 0, NULL, 1),
(4661, 9346, 'Qconneqt', 'Collections Executive', '2021-09-10', 20000.00, '2022-05-17', 23700.00, 'Bangalore', '1', '0 years 8 months', ' Process Shutdown', 1, '2022-07-11 03:02:09', 0, NULL, 0, NULL, 1),
(4662, 9353, 'Imagnum Healthcare solution Private Limited', 'Process associate', '2022-01-21', 12000.00, '1970-01-01', 13500.00, 'Kodambakkam', '2', '0 years 5 months', 'Salary is not affordable for me and then i want to update My skill. That job is process oriented so we do the same work on regular basis. That\'s the main reason for relieving from that company. ', 1, '2022-07-11 07:04:12', 0, NULL, 0, NULL, 1),
(4663, 9351, 'j t d organization', 'front end developer', '2021-01-04', 10.00, '1970-01-01', 10.00, 'Bengaluru', '2', '1 years 6 months', ' that is one organization so salary is low', 1, '2022-07-11 08:06:25', 0, NULL, 0, NULL, 1),
(4664, 9356, 'foxconn', 'quality checker', '2021-11-10', 10000.00, '2022-05-11', 13000.00, 'chennai', '1', '0 years 6 months', ' ', 1, '2022-07-12 10:24:50', 0, NULL, 0, NULL, 1),
(4665, 9360, 'Auto replies Nissan', 'Customer Relationship  Manager ', '2021-06-01', 28000.00, '2022-07-04', 28000.00, 'Chennai ', '1', '1 years 1 months', ' Some of personal  reasons ', 1, '2022-07-12 12:31:33', 0, NULL, 0, NULL, 1),
(4666, 9360, 'Autorelli Nissan', 'CRM', '2021-06-01', 28000.00, '2022-07-04', 28000.00, 'Chennai', '1', '1 years 1 months', 'Some of personal reasons ', 1, '2022-07-12 12:33:14', 0, NULL, 0, NULL, 1),
(4667, 9367, 'Flipkart logistics', 'Data Entry operator', '2022-05-28', 12500.00, '1970-01-01', 14000.00, 'Orakkadu', '2', '0 years 1 months', 'Planning more night Shift,salary not credited in proper date', 1, '2022-07-12 07:52:19', 0, NULL, 0, NULL, 1),
(4668, 9373, 'Zealous services', 'Customer support executive', '2021-09-13', 8900.00, '2022-04-26', 8900.00, 'KODAMBAKKAM', '1', '0 years 7 months', ' Process shutdown', 1, '2022-07-13 10:49:31', 0, NULL, 0, NULL, 1),
(4669, 9378, 'Day n Day services ', 'Facility manager ', '2022-02-01', 25000.00, '1970-01-01', 25000.00, 'Tambaram', '2', '0 years 5 months', ' Salary  late issues ', 1, '2022-07-13 11:29:14', 0, NULL, 0, NULL, 1),
(4670, 9379, 'Flipkart Grocery', 'Data entry operator', '2021-05-09', 14000.00, '1970-01-01', 14000.00, 'Orakkadu chennai 67', '2', '1 years 2 months', ' Full Night shift and less salary', 1, '2022-07-13 12:05:53', 0, NULL, 0, NULL, 1),
(4671, 9381, 'Work india', 'Salea', '2021-12-16', 15000.00, '1970-01-01', 22000.00, 'HSR LAYOUT ', '2', '0 years 6 months', 'Process shutdown ', 1, '2022-07-13 12:19:34', 0, NULL, 0, NULL, 1),
(4672, 9382, 'ST Courier HO', 'Billing Excutive', '2018-05-20', 10000.00, '2019-06-06', 13000.00, 'Pallavaram', '1', '1 years 0 months', 'Low salary', 1, '2022-07-13 01:26:08', 0, NULL, 0, NULL, 1),
(4673, 9382, 'Wedtree Pvt lmt', 'Purchase officer', '2019-08-08', 15000.00, '2020-03-01', 15000.00, 'Pondy bazar', '1', '0 years 6 months', 'For my health issue', 1, '2022-07-13 01:28:29', 0, NULL, 0, NULL, 1),
(4674, 9383, 'Steel ambal jewelry shop', 'Sales', '2021-02-05', 150000.00, '2022-04-10', 17000.00, 'T.nager', '1', '1 years 2 months', 'Health issue', 1, '2022-07-13 01:44:35', 0, NULL, 0, NULL, 1),
(4675, 9406, 'Elangeshwaran', 'Association manager', '2022-07-14', 20000.00, '2022-07-15', 18000.00, 'Thouripakkam', '1', '0 years 0 months', ' ', 1, '2022-07-14 11:55:34', 0, NULL, 0, NULL, 1),
(4676, 9411, 'Scientific Publishing Services', 'Editorial Assistant', '2020-09-02', 12500.00, '2022-07-30', 17000.00, 'Chennai', '1', '1 years 10 months', 'Interested in career change', 1, '2022-07-15 10:40:35', 0, NULL, 0, NULL, 1),
(4677, 9413, 'Mmc infotech services pvt ltd', 'Tele caller executive ', '2018-05-02', 10500.00, '2022-07-02', 10500.00, 'Chennai', '1', '4 years 2 months', ' No hike in salary and no growth in company ', 1, '2022-07-15 10:49:10', 0, NULL, 0, NULL, 1),
(4678, 9414, 'Mmc infotech services pvt Ltd ', 'Teleservice executive ', '2017-01-06', 7000.00, '2022-07-02', 11000.00, 'Chennai', '1', '5 years 5 months', ' Dur to salary ', 1, '2022-07-15 10:55:39', 0, NULL, 0, NULL, 1),
(4679, 9416, 'NSM Finance Limited ', 'OnRoled ', '2021-01-07', 13500.00, '2022-07-01', 14000.00, 'Thanjavur ', '1', '1 years 5 months', ' Salary issue ', 1, '2022-07-15 11:31:28', 0, NULL, 0, NULL, 1),
(4680, 9422, 'Idea company', 'Telecalling ', '2017-05-02', 12000.00, '2019-04-05', 12000.00, 'Guindy ', '1', '1 years 11 months', ' Lock down ', 1, '2022-07-15 12:59:14', 0, NULL, 0, NULL, 1),
(4681, 9441, 'Capcom solution ', 'Sales executive ', '2019-01-01', 10000.00, '2022-06-30', 14500.00, 'Kodambakka.', '1', '3 years 5 months', ' Because of my own business ', 1, '2022-07-16 02:50:50', 0, NULL, 0, NULL, 1),
(4682, 9448, 'HUDSON AGILE PRIVATE LIMITED ', 'SOFTWARE DEVELOPER ', '2021-09-07', 25000.00, '2022-07-26', 25000.00, 'CHENNAI ', '1', '0 years 10 months', ' ', 1, '2022-07-18 10:22:08', 0, NULL, 0, NULL, 1),
(4683, 9451, 'V.V.V &SONS EDIBLE OILS LTD', 'Junior maintenance engineer', '2020-11-23', 12500.00, '2022-06-30', 17050.00, 'Virudhunagar', '1', '1 years 7 months', ' Knowledge growth', 1, '2022-07-18 11:40:53', 0, NULL, 0, NULL, 1),
(4684, 9453, 'OLA cabs', 'Document Verification Executive', '2019-08-01', 16000.00, '2020-08-01', 16000.00, 'Murugeshpalya', '1', '1 years 0 months', ' Layed Off', 1, '2022-07-18 11:54:07', 0, NULL, 0, NULL, 1),
(4685, 9454, 'ISBM', 'Marketing Executive', '2022-06-01', 22000.00, '1970-01-01', 22000.00, 'Nungambakkam', '2', '0 years 1 months', ' Searching for better organisation', 1, '2022-07-18 12:07:55', 0, NULL, 0, NULL, 1),
(4686, 9455, 'BAJAJ FINANCE ', 'Sales executive ', '2020-11-16', 20000.00, '1970-01-01', 20000.00, 'Nandhanam', '2', '1 years 8 months', ' Searching for better organization ', 1, '2022-07-18 12:11:04', 0, NULL, 0, NULL, 1),
(4687, 9459, 'Corporate insurance services ', 'Telecaller ', '2021-02-02', 15500.00, '2022-05-15', 17500.00, 'Porur Lakshmi nagar', '1', '1 years 3 months', 'I\'m worked 1 year that company but don\'t provide experience letter so I quit my job ', 1, '2022-07-18 06:41:04', 0, NULL, 0, NULL, 1),
(4688, 9473, 'BHARTI AIRTEL LIMITED', 'Customer relationship officer', '2016-11-20', 15000.00, '2017-12-23', 15000.00, 'Chennai', '1', '1 years 1 months', ' Don\'t have two wheeler for field work', 1, '2022-07-19 01:50:25', 0, NULL, 0, NULL, 1),
(4689, 9035, 'kotakmahindra lic ', 'team leader', '2010-03-11', 8000.00, '2015-11-02', 12000.00, 'erode', '1', '5 years 7 months', 'married ', 1, '2022-07-19 01:50:25', 0, NULL, 0, NULL, 1),
(4690, 9473, 'HDFC ', 'DOCUMENT ANALYST', '2018-01-20', 17000.00, '2019-03-07', 18000.00, 'Chennai arumbakkam', '1', '1 years 1 months', 'ROTATIONAL SHIFTS', 1, '2022-07-19 01:53:03', 0, NULL, 0, NULL, 1),
(4691, 9473, 'Vi limited ( vodafone idea ltd )', 'Customer relationship officer', '2019-06-08', 26000.00, '1970-01-01', 29000.00, 'Chennai ambattur', '2', '3 years 1 months', 'Bored with inside retail selling. ', 1, '2022-07-19 01:55:25', 0, NULL, 0, NULL, 1),
(4692, 9474, 'Bharath pay', 'Marketting', '2020-07-19', 10000.00, '1970-01-01', 20000.00, 'Dehli', '2', '2 years 0 months', ' No proper income', 1, '2022-07-19 02:28:36', 0, NULL, 0, NULL, 1),
(4693, 9478, 'Teamlease India pvt ltd ', 'Telecalling ', '2020-08-10', 12000.00, '2021-05-05', 13500.00, 'Koyambedu ', '1', '0 years 8 months', ' Shifting my home', 1, '2022-07-19 06:13:46', 0, NULL, 0, NULL, 1),
(4694, 9476, 'Wipro ', 'Associate ', '2021-02-05', 180000.00, '2022-03-20', 180000.00, 'Chennai ', '1', '1 years 1 months', ' Night shift, hectic schedule ', 1, '2022-07-19 06:45:12', 0, NULL, 0, NULL, 1),
(4695, 9491, 'Hdb financial services ', 'Phone banker ', '2021-08-01', 13500.00, '2021-12-30', 13500.00, 'Vadapalani ', '1', '0 years 4 months', 'Family important member passed away so I have out of station reson to heavy ', 1, '2022-07-20 12:50:40', 0, NULL, 0, NULL, 1),
(4696, 9492, 'Netizen Engineering pvt ltd ', 'Telecaller', '2021-08-23', 17200.00, '2022-07-20', 18560.00, 'Sidapet', '2', '0 years 10 months', ' Better try to next job for salary reason', 1, '2022-07-20 12:50:59', 0, NULL, 0, NULL, 1),
(4697, 9491, 'Relaince ARC', 'Telecaller', '2022-01-21', 15000.00, '2022-07-05', 15000.00, 'Chennai saidapet', '1', '0 years 5 months', 'Salary can\'t confromt and helath issues ', 1, '2022-07-20 12:52:09', 0, NULL, 0, NULL, 1),
(4698, 9499, 'ABYTZ Tech Solution', 'front end developer', '2022-03-07', 10000.00, '1970-01-01', 10000.00, 'bangalore', '2', '0 years 4 months', ' ', 1, '2022-07-21 09:55:37', 0, NULL, 0, NULL, 1),
(4699, 9505, 'Casperon technology', 'Android developer', '2022-02-14', 432000.00, '2022-05-21', 432000.00, 'Chennai', '1', '0 years 3 months', ' No project ', 1, '2022-07-21 11:34:43', 0, NULL, 0, NULL, 1),
(4700, 9503, 'HDB financial service pvt ltd', 'Jr. Officer marketing Coodinator', '2021-10-28', 15000.00, '2022-07-14', 15000.00, 'Bangalore', '1', '0 years 8 months', ' Traveling issues', 1, '2022-07-21 11:39:46', 0, NULL, 0, NULL, 1),
(4701, 9511, 'bluechip corporate investment centre private limit', 'field executive', '2018-12-12', 12750.00, '2022-06-17', 19250.00, 'thiruvanmiyur', '1', '3 years 6 months', ' Long distance and salary increament', 1, '2022-07-21 02:45:38', 0, NULL, 0, NULL, 1),
(4702, 9514, 'Subros limited ', 'Operation engineer ', '2021-02-27', 5.90, '2022-06-07', 6.50, 'Chennai', '1', '1 years 3 months', ' Dear sir/mam I got an opportunity in abroad but the consultant has been cheated I lossed the opportunity to go for an another industry ', 1, '2022-07-22 10:48:51', 0, NULL, 0, NULL, 1),
(4703, 9514, 'Chennai eco motors hero group ', 'Zonal sales head', '2020-01-28', 3.50, '2021-02-26', 4.50, 'Chennak', '1', '1 years 0 months', 'Got an preference from the current company to get some knowledge of air conditioning ', 1, '2022-07-22 10:51:38', 0, NULL, 0, NULL, 1),
(4704, 9514, 'Zamil air conditioner ', 'Production engineer ', '2015-07-29', 5.50, '2018-08-08', 5.50, 'Saudi Arabia ', '1', '3 years 0 months', 'Abroad job contract finished ', 1, '2022-07-22 10:53:23', 0, NULL, 0, NULL, 1),
(4705, 9514, 'Data Matrix market xcel', 'Senior regional manager operation', '2018-11-02', 3.50, '2020-11-02', 3.75, 'Chennak', '1', '2 years 0 months', 'Due to project less ', 1, '2022-07-22 10:55:28', 0, NULL, 0, NULL, 1),
(4706, 9530, 'Abytz Infotech Solutions', 'react js developer', '2022-01-05', 1.50, '2022-06-30', 1.50, 'bangalore', '1', '0 years 5 months', ' There is no proper salary what said in interview', 1, '2022-07-22 03:03:56', 0, NULL, 0, NULL, 1),
(4707, 2670, 'Artech info systems ', 'Retail ops spealist ', '2021-07-16', 232000.00, '2022-04-29', 232000.00, 'Chennai ', '1', '0 years 9 months', ' It\'s a contractual role.', 1, '2022-07-22 11:03:06', 0, NULL, 0, NULL, 1),
(4708, 9540, 'RND softech ', 'Quality reviewer', '2021-11-11', 15000.00, '1970-01-01', 18000.00, 'Coimbatore ', '2', '0 years 8 months', ' It\'s not a fixed pay ', 1, '2022-07-23 11:24:58', 0, NULL, 0, NULL, 1),
(4709, 9552, 'Gogosoon Private limited ', 'Junior Technoligist', '2021-12-13', 23000.00, '2022-09-10', 38000.00, 'Chennai ', '1', '0 years 8 months', ' Employee strength is reduced', 1, '2022-07-25 10:31:07', 0, NULL, 0, NULL, 1),
(4710, 9557, 'Ponpure chemical india private limited', 'Accounts', '2019-07-05', 10000.00, '2022-01-12', 15500.00, 'Erode', '1', '2 years 6 months', ' I want to get more explorer', 1, '2022-07-25 12:31:53', 0, NULL, 0, NULL, 1),
(4711, 9558, 'Access healthcare ', 'Client partner ', '2021-03-23', 12000.00, '2022-07-25', 16500.00, 'Coimbatore ', '2', '1 years 4 months', ' I want get more explorer', 1, '2022-07-25 12:37:22', 0, NULL, 0, NULL, 1),
(4712, 9561, 'Deepam association ', 'Telecalling ', '2021-03-03', 10000.00, '2022-12-22', 12000.00, 'Adambakkam ', '1', '1 years 9 months', ' Salary', 1, '2022-07-25 01:01:11', 0, NULL, 0, NULL, 1),
(4713, 9561, 'Deepam association ', 'Telecalling ', '2021-03-03', 10.00, '2022-12-25', 12.00, 'Adambakkam ', '1', '1 years 9 months', ' Salary ', 1, '2022-07-25 01:04:44', 0, NULL, 0, NULL, 1),
(4714, 9565, 'CAFS', 'Relationship Executive ', '2021-03-25', 10000.00, '2022-06-09', 13000.00, 'T nagar', '1', '1 years 2 months', ' Company loss', 1, '2022-07-25 01:14:57', 0, NULL, 0, NULL, 1),
(4715, 9565, 'Royal Enfield ', 'Cre', '2021-03-05', 10000.00, '2022-06-25', 13000.00, 'Red hills', '1', '1 years 3 months', 'company loss', 1, '2022-07-25 01:16:23', 0, NULL, 0, NULL, 1),
(4716, 9578, 'Shree consultancy ', 'Client acquisition ', '2021-08-05', 15000.00, '1970-01-01', 15000.00, 'Virugabakkam ', '2', '0 years 11 months', ' Career growth', 1, '2022-07-26 11:15:39', 0, NULL, 0, NULL, 1),
(4717, 9580, 'Vision nidhi ltd', 'Tellecaller', '2021-08-01', 15000.00, '2022-07-31', 15000.00, 'Nandanam', '1', '0 years 11 months', '  Salary till not coming properly', 1, '2022-07-26 11:34:23', 0, NULL, 0, NULL, 1),
(4718, 9607, 'Eximio', 'Tellicaller', '2021-07-28', 12000.00, '2022-02-16', 12000.00, 'Kanchipuram', '1', '0 years 6 months', ' Covid', 1, '2022-07-28 11:14:51', 0, NULL, 0, NULL, 1),
(4719, 9616, 'Indows soft solutions ', 'Junior software developer ', '2021-06-21', 15.00, '2022-07-31', 18.00, 'Ekattuthangal ', '1', '1 years 1 months', ' There is no opportunity for develope my knowledge ', 1, '2022-07-28 01:21:23', 0, NULL, 0, NULL, 1),
(4720, 9634, 'Exide industries pvt ltd', 'Sales and service co ordinator', '2015-07-08', 22000.00, '2020-03-31', 24000.00, 'Chennai', '1', '4 years 8 months', ' No recognization', 1, '2022-07-29 11:59:17', 0, NULL, 0, NULL, 1),
(4721, 9637, 'Hdb finance sevice ', 'Ro', '2020-03-03', 15000.00, '2020-11-30', 25000.00, 'Chennai adambakkam', '1', '0 years 8 months', ' Covid', 1, '2022-07-29 12:36:35', 0, NULL, 0, NULL, 1),
(4722, 9644, 'Wipro', 'Content reviewer ', '2021-05-28', 22000.00, '2022-01-14', 22000.00, 'Bangalore ', '1', '0 years 7 months', ' I\'m interested in insurance side so tried there', 1, '2022-07-30 11:27:36', 0, NULL, 0, NULL, 1),
(4723, 9652, 'Asish Kumar mishra', 'Paytem', '2021-02-09', 16000.00, '2022-05-25', 14000.00, 'Odisha', '1', '1 years 3 months', ' 1 year', 1, '2022-08-01 10:34:09', 0, NULL, 0, NULL, 1),
(4724, 9662, 'Ficusoft technology ', 'Admin', '2020-10-01', 12500.00, '2022-05-30', 13000.00, 'Saidapet', '1', '1 years 7 months', ' Due to organization closed', 1, '2022-08-01 12:52:29', 0, NULL, 0, NULL, 1),
(4725, 9675, 'A and A dukaan financial services', 'Senior customer relationship officer', '2017-12-04', 18700.00, '2022-03-02', 26000.00, 'Ambattur', '1', '4 years 2 months', 'Traveling distance was not comfortable and to experience new fields', 1, '2022-08-02 10:55:32', 0, NULL, 0, NULL, 1),
(4726, 9682, 'Oppili Solution Pvt Ltd ', 'Web Developer ', '2021-12-20', 15000.00, '2022-06-30', 15000.00, 'Kolathur ', '1', '0 years 6 months', ' Company closed ', 1, '2022-08-02 12:11:12', 0, NULL, 0, NULL, 1),
(4727, 9685, 'Ags transact technologies', 'Customer support executive ', '2021-05-10', 311000.00, '1970-01-01', 311000.00, 'Chennai', '2', '1 years 2 months', 'To have a change in career and looking other Options, to thrive and grow more', 1, '2022-08-02 02:42:43', 0, NULL, 0, NULL, 1),
(4728, 9686, ' Senbagam mobiles and electronics', 'Sales man', '2017-05-03', 7500.00, '2022-07-27', 12500.00, 'Tiruppur', '1', '5 years 2 months', ' They only taking part Times', 1, '2022-08-02 03:46:02', 0, NULL, 0, NULL, 1),
(4729, 9688, 'Ecom Enabler', 'Telle caller', '2022-02-10', 12500.00, '2022-07-31', 15000.00, 'Erode', '1', '0 years 5 months', 'Long distance ', 1, '2022-08-02 06:09:50', 0, NULL, 0, NULL, 1),
(4730, 9691, 'Otto clothing private limited ', 'Data entry Operator ', '2020-10-14', 10000.00, '2022-03-29', 12000.00, 'Chettipedu', '1', '1 years 5 months', ' The emergence of a new opportunity to work in a different work environment, earn better compensation or get a more challenging work process is another good reason for leaving jobs. It is reasonable for any employee to go for a new opportunity that offers better terms than their current work', 1, '2022-08-03 12:30:24', 0, NULL, 0, NULL, 1),
(4731, 9700, 'HDFC', 'Admin telecaller', '2020-02-02', 10000.00, '2020-08-03', 120000.00, 'Thanjavur', '1', '0 years 6 months', 'Marriage fixed', 1, '2022-08-03 03:00:07', 0, NULL, 0, NULL, 1),
(4732, 9701, 'Slam', 'Manager', '2020-10-02', 216000.00, '1970-01-01', 23000.00, 'Palavakkam', '2', '1 years 10 months', ' Work timing and salary', 1, '2022-08-03 04:55:15', 0, NULL, 0, NULL, 1),
(4733, 9703, 'COLLMAN SERVICES', 'MIS EXECUTIVE ', '2021-07-10', 11000.00, '2022-07-31', 11000.00, 'Chennai koyambedu ', '1', '1 years 0 months', 'I\'m quite happy with my previous organisation but I want to enhance my skills and abilities ', 1, '2022-08-04 10:46:05', 0, NULL, 0, NULL, 1),
(4734, 9704, 'IDFC bank', 'Iyyapathangal ', '2020-03-04', 15000.00, '2021-01-10', 15000.00, 'Paraniputhur ', '1', '0 years 10 months', ' For studies ', 1, '2022-08-04 12:12:24', 0, NULL, 0, NULL, 1),
(4735, 9705, 'Motilal Oswal financial services Pvt Ltd ', 'Senior relationship manager ', '2020-07-15', 26000.00, '2022-08-03', 26500.00, 'Chennai ', '1', '2 years 0 months', ' Need salary hike', 1, '2022-08-04 12:47:27', 0, NULL, 0, NULL, 1),
(4736, 9708, 'B2GT ENTERPRISES', 'Restaurant Manager', '2021-08-18', 7000.00, '2022-05-31', 7000.00, 'Gobichettipalayam', '1', '0 years 9 months', ' Search for another job', 1, '2022-08-04 04:39:02', 0, NULL, 0, NULL, 1),
(4737, 9710, 'Armsoft', 'Sales executive', '2021-02-11', 15000.00, '2022-07-18', 20000.00, 'Chennai', '1', '1 years 5 months', ' Process ramp', 1, '2022-08-05 11:07:18', 0, NULL, 0, NULL, 1),
(4738, 9721, '6parasise', 'Sales', '2019-04-01', 15.00, '2020-11-10', 15.00, 'Erode', '1', '1 years 7 months', ' ', 1, '2022-08-08 10:37:31', 0, NULL, 0, NULL, 1),
(4739, 9720, 'Css corp pvt limited ', 'Ambattur ', '2022-06-13', 21.00, '1970-01-01', 16000.00, 'Amit park ', '2', '0 years 1 months', 'There was no proper Allowance Provided.\nAnd also it was a night shift bases', 1, '2022-08-08 10:43:03', 0, NULL, 0, NULL, 1),
(4740, 9744, 'Med plus', 'Sales executive ', '2019-06-01', 13000.00, '2021-07-20', 15000.00, 'Ambattur', '1', '2 years 1 months', ' Its an contract based job', 1, '2022-08-08 06:12:16', 0, NULL, 0, NULL, 1),
(4741, 9746, 'Cognizant Technology Solution', 'Senior Process Executive', '2011-10-21', 7500.00, '2017-07-14', 19300.00, 'Chennai', '1', '5 years 8 months', ' Resigned', 1, '2022-08-09 06:27:44', 0, NULL, 0, NULL, 1),
(4742, 9746, 'Sarathy Agency', 'Accountant', '2018-03-01', 13500.00, '2020-06-30', 19500.00, 'Chennai', '1', '2 years 4 months', 'Resigned', 1, '2022-08-09 06:30:26', 0, NULL, 0, NULL, 1),
(4743, 9749, 'Kaashiv infotech software company', 'Frontend developer ', '2021-08-12', 8000.00, '1970-01-01', 10000.00, 'Anna nagar', '2', '0 years 11 months', ' ', 1, '2022-08-09 10:47:15', 0, NULL, 0, NULL, 1),
(4744, 9752, 'Image Creative', 'UI UX Designer Developer ', '2021-07-06', 12000.00, '2022-08-01', 18000.00, 'Madurai', '1', '1 years 0 months', ' ', 1, '2022-08-09 10:58:37', 0, NULL, 0, NULL, 1),
(4745, 9750, 'Tata sky', 'Telecaller', '2022-01-01', 13000.00, '2022-07-07', 13000.00, 'Salem', '1', '0 years 6 months', 'Family issue', 1, '2022-08-09 11:06:31', 0, NULL, 0, NULL, 1),
(4746, 9751, 'HDB Finance service & allset Business solution ', 'Tellcellr', '2020-12-15', 13000.00, '2022-08-28', 13000.00, 'Chennai ', '1', '1 years 8 months', ' Timing and long distance', 1, '2022-08-09 12:13:47', 0, NULL, 0, NULL, 1),
(4747, 9764, 'Bank Bazar. Com', 'CRO', '2019-07-19', 15000.00, '2020-11-20', 19000.00, 'Ambatur', '1', '1 years 4 months', ' Marriage fixed', 1, '2022-08-10 10:36:06', 0, NULL, 0, NULL, 1),
(4748, 9769, 'Uniglobe adyar travel bureau ', 'Sales and operations ', '2021-10-11', 12000.00, '2022-08-19', 15000.00, 'Adyar', '1', '0 years 10 months', ' Look for career Growth', 1, '2022-08-10 12:33:36', 0, NULL, 0, NULL, 1),
(4749, 9765, 'Om innovation ', 'Sales executive BPO', '2022-01-24', 12000.00, '2022-08-08', 12000.00, 'Chetpet', '1', '0 years 6 months', ' ', 1, '2022-08-10 12:34:27', 0, NULL, 0, NULL, 1),
(4750, 9770, 'Vizza investment centre ', 'Team leader ', '2018-10-01', 8000.00, '1970-01-01', 18000.00, 'Chennai - Kodambakkam ', '2', '3 years 10 months', 'Salary time not proper\n', 1, '2022-08-10 01:01:23', 0, NULL, 0, NULL, 1),
(4751, 9772, 'Casagrand Builder Private Limited ', 'Customer Relationship Management ', '2021-12-01', 16000.00, '2022-07-30', 16000.00, 'Chennai', '1', '0 years 8 months', ' I\'m looking for good opportunity ', 1, '2022-08-10 01:32:55', 0, NULL, 0, NULL, 1),
(4752, 9775, 'PARKAV INFOTECH', 'SALES EXECUTIVE', '2020-03-05', 15000.00, '2022-03-18', 15000.00, 'THANJAVUR', '1', '2 years 0 months', ' SALARY ISSUES', 1, '2022-08-11 10:59:47', 0, NULL, 0, NULL, 1),
(4753, 9776, 'Intellect system solution', 'Project associator', '2022-06-01', 5000.00, '1970-01-01', 5000.00, 'Pattukoottai', '2', '0 years 2 months', 'Count based salary...they dont increment  salary...', 1, '2022-08-11 11:48:58', 0, NULL, 0, NULL, 1),
(4754, 9783, 'VGM', 'Telecalling ', '2021-02-17', 14000.00, '1970-01-01', 18000.00, 'Koddambakkam', '2', '1 years 5 months', ' Salary issue ', 1, '2022-08-12 11:04:51', 0, NULL, 0, NULL, 1),
(4755, 9786, 'VGM', 'Telecalling', '2021-07-08', 13500.00, '1970-01-01', 17000.00, 'Koddambakkam', '2', '1 years 1 months', ' Salary issue ', 1, '2022-08-12 11:16:09', 0, NULL, 0, NULL, 1),
(4756, 9790, 'Amarraja Batteries Lmt', 'Machine operator ', '2019-08-09', 15000.00, '2022-08-01', 16500.00, 'Chittoor ', '1', '2 years 11 months', ' Wanna settle in Bangalore and interested in Financial related field', 1, '2022-08-12 12:16:27', 0, NULL, 0, NULL, 1),
(4757, 9791, 'Greetoo india pvt ltd', 'Customer supplychain management ', '2021-07-01', 12500.00, '2022-07-30', 12500.00, 'Chennai', '1', '1 years 0 months', ' Apprentice period over', 1, '2022-08-12 07:09:53', 0, NULL, 0, NULL, 1),
(4758, 9794, 'MOBILE SHOW ROOM & SKM & PATTU LEATHER ', 'ADMIN ACCOUNTS DEPT ', '2016-01-01', 18000.00, '2022-08-07', 18000.00, 'ERODE', '1', '6 years 7 months', ' SALARY DELAY\nSUNDAY WORKING DAY', 1, '2022-08-13 10:49:27', 0, NULL, 0, NULL, 1),
(4759, 9795, 'B&Y technologies', 'UI DEVELOPER ', '2021-10-04', 12000.00, '1970-01-01', 15000.00, 'Thousand lights', '2', '0 years 10 months', ' ', 1, '2022-08-13 11:06:46', 0, NULL, 0, NULL, 1),
(4760, 9795, 'B&Y Technologies ', 'UI developer ', '2021-10-04', 12000.00, '1970-01-01', 15000.00, 'Thousand lights ', '2', '0 years 10 months', ' I want to learn something new and change working environment.', 1, '2022-08-13 11:10:07', 0, NULL, 0, NULL, 1),
(4761, 9797, 'Med pro Healthcare', 'Junior Charge Entry', '2019-02-19', 12000.00, '2021-02-19', 14000.00, 'Chennai', '1', '2 years 0 months', ' Due to House shift', 1, '2022-08-13 12:24:49', 0, NULL, 0, NULL, 1),
(4762, 9799, 'Sp construction,  joy Garments,. Efs', 'Telecaller ', '2021-11-11', 12000.00, '2022-06-06', 13500.00, 'Erode', '1', '0 years 6 months', 'Personal issues ', 1, '2022-08-13 05:29:52', 0, NULL, 0, NULL, 1),
(4763, 9807, 'Mahendra Nextwealth India Pvt limited', 'Customer support', '2021-09-13', 13000.00, '2022-08-22', 13000.00, 'Mallasamuthiram', '1', '0 years 11 months', 'Salary issue so I will relieve for that job', 1, '2022-08-16 11:07:20', 0, NULL, 0, NULL, 1),
(4764, 9806, 'HDB Financial services ltd ', 'Processor ', '2021-02-22', 10719.00, '2022-08-02', 10719.00, 'Chennai ', '1', '1 years 5 months', ' Shift timing is not convenient.', 1, '2022-08-16 11:07:37', 0, NULL, 0, NULL, 1),
(4765, 9809, 'GM Infinite', 'Telecaller', '2022-01-05', 18000.00, '2022-07-28', 18000.00, 'Bangalore', '1', '0 years 6 months', ' Far away', 1, '2022-08-16 12:57:57', 0, NULL, 0, NULL, 1),
(4766, 9812, 'Textile', 'Manager', '2021-01-10', 14000.00, '2022-07-31', 14000.00, 'Pallipalaiyam', '1', '1 years 6 months', ' Time management', 1, '2022-08-16 04:23:40', 0, NULL, 0, NULL, 1),
(4767, 9821, 'Learn park academy ', 'Telecaller', '2021-07-12', 7500.00, '2022-08-13', 8000.00, 'Erode', '1', '1 years 1 months', ' Not proper date for salary ', 1, '2022-08-17 10:25:24', 0, NULL, 0, NULL, 1),
(4768, 9824, 'Kaira  agrotech', 'Customer representative officer', '2022-08-21', 12000.00, '1970-01-01', 15000.00, 'Gunidy ', '2', '0 years 0 months', ' Time issue', 1, '2022-08-17 10:33:17', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4769, 9823, 'Kaira agrotech', 'Customer representative officer', '2021-08-21', 12000.00, '1970-01-01', 15000.00, 'Guindy', '2', '0 years 11 months', ' Bcoz of time issue and financial issues', 1, '2022-08-17 10:33:19', 0, NULL, 0, NULL, 1),
(4770, 9827, 'Computer Age Management system', 'Assistant processing officer', '2022-01-01', 13000.00, '2022-07-31', 13000.00, 'Mount road', '1', '0 years 6 months', '3 to 4 month worked in day shift after some time they changed me to night shift face some health issues during night shift', 1, '2022-08-17 11:15:24', 0, NULL, 0, NULL, 1),
(4771, 9838, 'Bhawar sales corporation ', 'Mis Executive ', '2021-06-30', 1.00, '1970-01-01', 15000.00, 'Chennai ', '2', '1 years 1 months', '\nI feel changes are part of life, on such thoughts, it would be better to look for another opportunity.\n\nWhere I can grow myself financially and professionally', 1, '2022-08-17 04:02:12', 0, NULL, 0, NULL, 1),
(4772, 9839, 'Adithiya', 'Tellecaller', '2021-09-01', 7000.00, '2022-04-20', 8500.00, 'Erode', '1', '0 years 7 months', ' Salary low', 1, '2022-08-17 04:27:24', 0, NULL, 0, NULL, 1),
(4773, 9840, 'lassos and marquee design solution ', 'mis', '2019-08-12', 10000.00, '2021-02-10', 15000.00, 'arumbakkam', '1', '1 years 5 months', ' Due to covid organization has terminated ', 1, '2022-08-17 04:38:05', 0, NULL, 0, NULL, 1),
(4774, 9841, 'Hyperband Company', 'Telecaller', '2020-05-07', 10000.00, '2021-05-11', 12000.00, 'Erode', '1', '1 years 0 months', ' Stop that company .....Because corona issue.  ', 1, '2022-08-17 08:09:43', 0, NULL, 0, NULL, 1),
(4775, 9841, 'Real Estate', 'Telecaller', '2021-05-05', 12000.00, '1970-01-01', 12000.00, 'Erode', '2', '1 years 3 months', 'Health issue', 1, '2022-08-17 08:11:35', 0, NULL, 0, NULL, 1),
(4776, 9841, 'HDB Financial Services', 'Telecaller', '2022-01-12', 13000.00, '1970-01-01', 13000.00, 'Coimbatore', '2', '0 years 7 months', 'Long Travel', 1, '2022-08-17 08:12:43', 0, NULL, 0, NULL, 1),
(4777, 9841, 'Color Chemicals', 'Telecaller', '2022-06-11', 13000.00, '1970-01-01', 13000.00, 'Bhavani', '2', '0 years 2 months', 'Not comfortable for me', 1, '2022-08-17 08:13:58', 0, NULL, 0, NULL, 1),
(4778, 9853, 'Smart to learn tech', 'Process associate', '2021-01-15', 8000.00, '2021-12-05', 9000.00, 'Bhavani', '1', '0 years 10 months', ' Corona situation so company loss ,permently closed', 1, '2022-08-18 12:01:49', 0, NULL, 0, NULL, 1),
(4779, 9853, 'Smart to learn tech', 'Process associate', '2021-01-15', 8000.00, '2021-12-05', 9000.00, 'bhavani', '1', '0 years 10 months', 'Corona situation company loss so permently closed', 1, '2022-08-18 12:05:46', 0, NULL, 0, NULL, 1),
(4780, 9861, 'Geepee gas office ', 'Telicalling ', '2022-09-01', 10000.00, '1970-01-01', 9000.00, 'Papanasam ', '2', '0 years 0 months', 'Time is high ', 1, '2022-08-18 06:12:06', 0, NULL, 0, NULL, 1),
(4781, 9863, 'Ragavandra finance ', 'MIS ', '2021-01-13', 10000.00, '2022-05-11', 10000.00, 'Tirchy ', '1', '1 years 3 months', ' I got the job in HDFC Bank ', 1, '2022-08-18 10:08:00', 0, NULL, 0, NULL, 1),
(4782, 9863, 'Hdfc bank ', 'MIS ', '2022-06-13', 12000.00, '1970-01-01', 12000.00, 'Chennai ', '2', '0 years 2 months', 'Salary package is not sufficient ', 1, '2022-08-18 10:09:35', 0, NULL, 0, NULL, 1),
(4783, 9864, 'Gvk ghee company ', 'Tellecaller', '2020-06-05', 7000.00, '1970-01-01', 9000.00, 'Papanasam ', '2', '2 years 2 months', ' Timing is high', 1, '2022-08-19 09:55:22', 0, NULL, 0, NULL, 1),
(4784, 8078, 'Sunsmart Technologies ', 'Jr.SEO Analyst ', '2021-08-16', 15000.00, '2022-01-27', 15000.00, 'Chennai', '1', '0 years 5 months', ' For my marriage ', 1, '2022-08-19 10:52:58', 0, NULL, 0, NULL, 1),
(4785, 9874, 'Idfc first bank', 'Manager acquisition ', '2018-11-01', 27000.00, '2022-08-19', 41000.00, 'Mogappair ', '1', '3 years 9 months', ' ', 1, '2022-08-19 12:12:25', 0, NULL, 0, NULL, 1),
(4786, 9875, 'aegis', 'customer support', '2019-06-01', 12000.00, '2019-12-10', 12000.00, 'broadway', '1', '0 years 6 months', ' Low salary ', 1, '2022-08-19 12:19:24', 0, NULL, 0, NULL, 1),
(4787, 9883, 'Colan infotech', 'UI developer', '2021-07-23', 20000.00, '1970-01-01', 20000.00, 'Thousand lights', '2', '1 years 0 months', 'To expand my career as reactjs developer', 1, '2022-08-20 09:53:56', 1, '2022-08-20 09:54:31', 0, NULL, 1),
(4788, 9882, 'allset business solution', 'hR', '2021-02-08', 15000.00, '2022-02-28', 20000.00, 'chennai', '1', '1 years 0 months', 'personal issue', 92, '2022-08-20 09:56:05', 0, NULL, 0, NULL, 1),
(4789, 9881, 'Williams lea Tag', 'MIS', '2022-01-12', 18500.00, '1970-01-01', 18500.00, 'Chennai ', '2', '0 years 7 months', ' Projects volume decreased ', 1, '2022-08-20 10:21:50', 0, NULL, 0, NULL, 1),
(4790, 9884, 'Indusind Bank ', 'Mis executive', '2021-12-20', 13000.00, '2022-08-02', 15000.00, 'GN Chetty Road, t Nagar', '1', '0 years 7 months', 'I need some change', 1, '2022-08-20 10:31:03', 0, NULL, 0, NULL, 1),
(4791, 9884, 'Coll man services', 'Admin', '2018-11-10', 10000.00, '2019-06-24', 11000.00, 'Thirumangalam', '1', '0 years 7 months', 'need some change', 1, '2022-08-20 10:35:27', 0, NULL, 0, NULL, 1),
(4792, 9885, 'Smarteer', 'UI developer ', '2021-07-05', 10000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '1 years 1 months', 'Need to Learn more frameworks and Technologies', 1, '2022-08-20 10:35:55', 92, '2022-08-20 10:38:05', 0, NULL, 0),
(4793, 9885, 'smarteer', 'ui developer', '2021-08-11', 18000.00, '1970-01-01', 20000.00, 'chennai', '2', '1 years 0 months', ' Looking for react js work', 1, '2022-08-20 10:37:38', 0, NULL, 0, NULL, 1),
(4794, 9888, 'Justdial', 'Telemarketing', '2021-11-22', 15000.00, '2022-06-16', 15000.00, 'Saidapet', '1', '0 years 6 months', 'Well after my graduation to support me financially i joined just dail as customer service executive as u know customer service executive helps me only in my communication skills and to gain confidence over other people that job doesn\'t helps to ascend futher or to grow so now i\'m looking for a job which helps me to move on to nxt lvl and to gain knowledge', 1, '2022-08-20 11:43:06', 0, NULL, 0, NULL, 1),
(4795, 9888, 'Justdial', 'Telemarketing', '2021-11-22', 14500.00, '2022-06-16', 15000.00, 'Saidapet', '1', '0 years 6 months', 'Well after my graduation to support me financially i joined just dail as customer service executive as u know customer service executive helps me only in my communication skills and to gain confidence over other people that job doesn\'t helps to ascend futher or to grow so now i\'m looking for a job which helps me to move on to nxt lvl and to gain knowledge', 1, '2022-08-20 11:43:53', 1, '2022-08-20 11:44:14', 0, NULL, 0),
(4796, 9889, 'Dhilip kumar', 'Tamilnadu Theater Opp', '2020-04-26', 13000.00, '2022-07-31', 18000.00, 'Thirupur', '1', '2 years 3 months', 'Personal Issues', 1, '2022-08-20 11:49:56', 0, NULL, 0, NULL, 1),
(4797, 9889, 'Dhilip Kumar', 'Tamilnadu Theater Opp', '2020-04-26', 13000.00, '2022-07-31', 18000.00, 'Tirupur', '1', '2 years 3 months', 'Personal Issues', 1, '2022-08-20 11:51:17', 0, NULL, 0, NULL, 1),
(4798, 9890, 'Star health insurance ', 'Telesales ', '2021-08-09', 15.00, '1970-01-01', 15.00, 'Vadapalani ', '2', '1 years 0 months', ' ', 1, '2022-08-20 11:57:55', 0, NULL, 0, NULL, 1),
(4799, 9895, 'Ison bpo solutions ', 'Sr business development executive ', '2016-03-15', 31.00, '2022-08-16', 5.40, 'Hyderabad ', '1', '6 years 5 months', ' Shifted to chennai', 1, '2022-08-22 11:30:45', 0, NULL, 0, NULL, 1),
(4800, 9896, 'Citi bank', 'Executive kyc banker', '2022-02-16', 24000.00, '1970-01-01', 24000.00, 'Chennai', '2', '0 years 6 months', ' This job is agreement base so that\'s why I resigning. ', 1, '2022-08-22 11:48:43', 0, NULL, 0, NULL, 1),
(4801, 9898, 'IDFC FIRST BANK', 'DEPUTY MANAGER', '2021-12-06', 400000.00, '1970-01-01', 400000.00, 'Chennai', '2', '0 years 8 months', ' Career growth', 1, '2022-08-22 11:59:03', 0, NULL, 0, NULL, 1),
(4802, 9901, 'Best service solution ', 'Telecaller ', '2022-04-22', 10000.00, '2022-08-03', 10000.00, 'Nungabakkam ', '1', '0 years 3 months', ' Health issue', 1, '2022-08-22 02:23:15', 0, NULL, 0, NULL, 1),
(4803, 9904, 'Maestro shipping service ', 'Document executive ', '2021-02-17', 15000.00, '2022-07-31', 18000.00, 'Chennai ', '1', '1 years 5 months', 'No Growth and no increment ', 1, '2022-08-22 09:31:47', 1, '2022-08-22 09:32:24', 0, NULL, 1),
(4804, 9916, 'Sri foundation', 'Business Development Executive ', '2020-07-14', 14000.00, '2021-09-19', 15000.00, 'Chennai', '1', '1 years 2 months', ' Process ramp', 1, '2022-08-24 10:16:57', 0, NULL, 0, NULL, 1),
(4805, 9917, 'Lic', 'Insurance advisor', '2017-12-17', 12000.00, '2018-08-07', 13000.00, 'Salem', '1', '0 years 7 months', ' Growth', 1, '2022-08-24 10:22:59', 0, NULL, 0, NULL, 1),
(4806, 9927, 'Aakash hospital', 'Insurance executive ', '2014-11-02', 9000.00, '2020-01-20', 18000.00, 'Thiruvottiyur ', '1', '5 years 2 months', 'Due to Pregnancy Reasons ', 1, '2022-08-24 02:18:27', 0, NULL, 0, NULL, 1),
(4807, 9929, 'novac technology solutions', 'senior customer service executive', '2019-08-05', 181512.00, '2022-08-03', 215000.00, 'perungudi chennai', '1', '2 years 11 months', ' ', 1, '2022-08-24 04:09:10', 0, NULL, 0, NULL, 1),
(4808, 9933, 'Catalyst Corporate services ', 'Process associate ', '2019-08-06', 15000.00, '2021-06-18', 21000.00, 'Mount road ', '1', '1 years 10 months', ' The company asked me to work from office strictly at the time of covid!', 1, '2022-08-25 10:27:08', 1, '2022-08-25 10:30:24', 0, NULL, 1),
(4809, 9933, 'Ags Healthcare ', 'Process associate level 1 ', '2021-06-21', 27000.00, '2022-02-07', 35000.00, 'Tidel park', '1', '0 years 7 months', 'Health problems due to night shift ', 1, '2022-08-25 10:29:30', 0, NULL, 0, NULL, 1),
(4810, 9934, 'hathway', 'senior executive', '2020-11-01', 10000.00, '2021-03-31', 12000.00, 'chennai', '1', '0 years 4 months', ' Process ramp', 1, '2022-08-25 10:38:49', 0, NULL, 0, NULL, 1),
(4811, 9934, 'mdindia health insurance', 'senior executive', '2021-04-01', 14000.00, '1970-01-01', 14000.00, 'chennai', '2', '1 years 4 months', 'Growth', 1, '2022-08-25 10:39:38', 0, NULL, 0, NULL, 1),
(4812, 9931, 'Matrix businesses services India Pvt Ltd ', 'EBGC Executive ', '2021-07-21', 9300.00, '2022-04-04', 9300.00, 'Kodambakkam ', '1', '0 years 8 months', ' Career growth ', 1, '2022-08-25 12:07:34', 0, NULL, 0, NULL, 1),
(4813, 9939, 'for u kids retail pvt ltd', 'sales manager', '2020-09-11', 11000.00, '2021-03-29', 13000.00, 'chennai', '1', '0 years 6 months', ' growth', 1, '2022-08-25 06:31:26', 0, NULL, 0, NULL, 1),
(4814, 9940, 'infosearch bpm', 'telecaller executive', '2018-04-18', 10000.00, '2018-10-25', 11000.00, 'chennai', '1', '0 years 6 months', ' covid time', 1, '2022-08-25 06:40:19', 0, NULL, 0, NULL, 1),
(4815, 9946, 'star health insurance', 'customer care executive', '2022-02-10', 10000.00, '2022-08-05', 12000.00, 'chennai', '1', '0 years 5 months', ' process ', 1, '2022-08-26 10:17:28', 0, NULL, 0, NULL, 1),
(4816, 9946, 'siva e sevai maiyam', 'computer operator', '2020-01-29', 10000.00, '2022-01-02', 13000.00, 'chennai', '1', '1 years 11 months', 'growth', 1, '2022-08-26 10:18:27', 0, NULL, 0, NULL, 1),
(4817, 3962, 'tech mahindra', 'customer support', '2020-04-13', 13000.00, '2020-10-18', 16000.00, 'chennai', '1', '0 years 6 months', 'growth ', 1, '2022-08-26 10:26:02', 0, NULL, 0, NULL, 1),
(4818, 9985, 'aliens tattoos ', 'branch manager ', '0200-08-01', 30000.00, '2022-09-05', 30000.00, 'chennai', '1', '1822 years 1 months', ' Looking for perfect platform', 1, '2022-08-29 11:43:44', 0, NULL, 0, NULL, 1),
(4819, 9987, 'botvfx', 'hr', '2022-05-01', 10000.00, '2022-05-31', 12000.00, 'chennai', '1', '0 years 1 months', ' Internship', 1, '2022-08-29 12:18:58', 0, NULL, 0, NULL, 1),
(4820, 9990, 'Sankara nethlaya', 'Admin', '2014-10-24', 8000.00, '2016-12-16', 9000.00, 'Greems road', '1', '2 years 1 months', ' Changing other field', 1, '2022-08-29 02:34:40', 1, '2022-08-29 02:38:55', 0, NULL, 0),
(4821, 9990, 'Sankara nethralaya', 'Admin', '2014-10-16', 8000.00, '2017-01-19', 8000.00, 'Chennai', '1', '2 years 3 months', 'Applied for mba that reason', 1, '2022-08-29 02:38:45', 0, NULL, 0, NULL, 1),
(4822, 9990, 'Hdb financial services', 'Tele collection executive', '2017-10-05', 12000.00, '2021-07-12', 12000.00, 'Greems road', '1', '3 years 9 months', 'Salary expectation', 1, '2022-08-29 02:42:25', 0, NULL, 0, NULL, 1),
(4823, 9991, 'Shriram City union finance Ltd ', 'Junior executive ', '2021-08-11', 12000.00, '2022-08-12', 12600.00, 'Chennai ', '1', '1 years 0 months', ' Better prospect and Salary ', 1, '2022-08-29 05:16:55', 0, NULL, 0, NULL, 1),
(4824, 9991, 'ARC fertility and Research center ', 'Data Analyst ', '2022-08-24', 17000.00, '1970-01-01', 16000.00, 'Chennai ', '2', '0 years 0 months', 'Family issues.', 1, '2022-08-29 05:18:25', 0, NULL, 0, NULL, 1),
(4825, 10003, 'Vizza investment center ', 'Telecaller ', '2021-09-09', 11500.00, '2022-06-05', 13500.00, 'Kodambakkam', '1', '0 years 8 months', ' Family issues ', 1, '2022-08-30 11:53:57', 0, NULL, 0, NULL, 1),
(4826, 10007, 'Straive', 'CE', '2022-03-15', 9400.00, '2022-08-28', 10700.00, 'Trichy', '1', '0 years 5 months', ' Travel issue', 1, '2022-08-30 12:09:52', 0, NULL, 0, NULL, 1),
(4827, 10012, 'Freelancer ', 'Front end developer ', '2021-07-01', 15000.00, '1970-01-01', 18000.00, 'Home', '2', '1 years 1 months', ' ', 1, '2022-08-30 01:24:39', 0, NULL, 0, NULL, 1),
(4828, 10018, 'jio', 'sales executive', '2021-01-17', 14000.00, '2022-06-23', 15000.00, 'chennai', '1', '1 years 5 months', ' ramp', 1, '2022-08-31 10:11:39', 0, NULL, 0, NULL, 1),
(4829, 10022, 'leadtech', 'HR Executive', '2022-06-01', 15000.00, '2022-08-30', 15000.00, 'GuindY', '1', '0 years 2 months', 'due to not provide payslip ', 85, '2022-09-01 11:39:00', 0, NULL, 0, NULL, 1),
(4830, 10029, 'Sudarsanam & Associaties', 'Mis executive', '2020-01-02', 12000.00, '2022-08-06', 15000.00, 'Chennai', '1', '2 years 7 months', ' Personal', 1, '2022-09-01 12:54:40', 0, NULL, 0, NULL, 1),
(4831, 10028, 'Frost and Sullivan', 'Marketing Automation Specialist', '2019-12-02', 25000.00, '2021-07-01', 250000.00, 'Thousand lights, Greams road. ', '1', '1 years 6 months', 'Personal issues, due to COVID so Couldn\'t able to continue with the job. ', 1, '2022-09-01 01:00:17', 0, NULL, 0, NULL, 1),
(4832, 10031, 'Teleperformance global private limited ', 'Customer service associate ', '2018-11-20', 9500.00, '2022-06-02', 11000.00, 'Ambattur ', '1', '3 years 6 months', ' Better opportunity ', 1, '2022-09-01 10:21:19', 0, NULL, 0, NULL, 1),
(4833, 10038, 'Sitel India Ltd.', 'Live Chat Agent ', '2011-12-12', 15000.00, '2013-03-29', 16000.00, 'Chennai ', '1', '1 years 3 months', 'Nothing specific.', 1, '2022-09-02 04:09:23', 0, NULL, 0, NULL, 1),
(4834, 10040, 'City union bank', 'Operations', '2015-06-17', 13000.00, '2017-08-21', 14000.00, 'Bangalore ', '1', '2 years 2 months', ' Growfh', 1, '2022-09-03 10:30:11', 0, NULL, 0, NULL, 1),
(4835, 10040, 'Vinayaga cargo builders', 'Accounts and admin', '2018-01-13', 16000.00, '2022-07-18', 18000.00, 'Salem', '1', '4 years 6 months', 'Growth', 1, '2022-09-03 10:31:15', 0, NULL, 0, NULL, 1),
(4836, 10041, 'Wissend Pvt. Ltd. Company', 'Data analyst ', '2019-12-16', 11200.00, '2020-06-30', 12500.00, 'Nandanam', '1', '0 years 6 months', ' ', 1, '2022-09-03 10:39:57', 0, NULL, 0, NULL, 1),
(4837, 10041, 'Skystock Pvt. Ltd. Company', 'Backend Verification Process ', '2021-04-05', 12500.00, '2022-03-31', 12500.00, 'Choolaimedu', '1', '0 years 11 months', 'Some medical issues', 1, '2022-09-03 10:41:52', 0, NULL, 0, NULL, 1),
(4838, 10051, 'Shriram life insurance ', 'Telecaller ', '2022-02-02', 15000.00, '2022-08-20', 15000.00, 'Kodambakkam ', '1', '0 years 6 months', ' Changed me to other site and I can\'t go there for some personal issues ', 1, '2022-09-05 10:24:37', 0, NULL, 0, NULL, 1),
(4839, 10052, 'ukti', 'content writer', '2021-07-10', 20000.00, '2022-07-10', 20000.00, 'delhi', '1', '1 years 0 months', ' Looking for another job and health issues', 1, '2022-09-05 10:44:09', 0, NULL, 0, NULL, 1),
(4840, 10058, 'Byjus', 'Senior Business Development Associate', '2021-01-27', 400000.00, '1970-01-01', 470000.00, 'Chennai', '2', '1 years 7 months', ' Due to work life balance issues. I went to pressure situation & I handled it but I couldn\'t spend time with my family. ', 1, '2022-09-05 11:32:24', 0, NULL, 0, NULL, 1),
(4841, 10062, 'Designing', 'Designer', '2020-12-20', 13000.00, '1970-01-01', 15000.00, 'Nungambakkam', '2', '1 years 8 months', ' Body issues', 1, '2022-09-05 11:41:12', 0, NULL, 0, NULL, 1),
(4842, 10057, 'Trade plus navigation market', 'Admin', '2022-09-08', 25000.00, '1970-01-01', 19.00, 'Chennai ', '2', '0 years 0 months', ' Long distance ', 1, '2022-09-05 11:52:07', 0, NULL, 0, NULL, 1),
(4843, 10056, 'Hdb financial services ', 'Senior Telecaller officer', '2021-12-17', 14000.00, '2022-08-01', 14000.00, 'Thousands light ', '1', '0 years 7 months', ' Salary issue', 1, '2022-09-05 11:57:42', 0, NULL, 0, NULL, 1),
(4844, 10064, 'NRCS TOWERS ', 'Telesaller ', '2021-02-03', 12.50, '2022-03-10', 15000.00, 'Nungampakkam', '1', '1 years 1 months', ' Salery issue ', 1, '2022-09-05 12:01:22', 0, NULL, 0, NULL, 1),
(4845, 10068, 'Evo digital technology ', 'Back office executive ', '2021-08-05', 17500.00, '2022-05-10', 17500.00, 'Guindy', '1', '0 years 9 months', ' Night shift - health issues ', 1, '2022-09-05 01:12:33', 0, NULL, 0, NULL, 1),
(4846, 10069, 'Motors insurance', 'No', '2022-09-05', 10000.00, '2022-09-30', 11000.00, 'Karur', '1', '0 years 0 months', '2020or8', 1, '2022-09-05 04:30:21', 0, NULL, 0, NULL, 1),
(4847, 10073, 'mailing org', 'marketing manager', '2015-05-07', 12000.00, '2022-06-28', 14000.00, 'chennai', '1', '7 years 1 months', ' growth', 1, '2022-09-06 10:17:12', 0, NULL, 0, NULL, 1),
(4848, 10074, 'Transworld global services ', 'Trainee web developer ', '2021-06-16', 15000.00, '2022-09-15', 250000.00, 'Chennai ', '1', '1 years 2 months', 'Some extra learning purposes ', 1, '2022-09-06 10:50:21', 0, NULL, 0, NULL, 1),
(4849, 10074, 'Transworld global services ', 'Trainee web developer ', '2021-05-15', 150000.00, '2022-09-16', 18000.00, 'Chennai ', '1', '1 years 4 months', 'Some extra learning purposes ', 1, '2022-09-06 10:52:16', 0, NULL, 0, NULL, 1),
(4850, 10074, 'Transworld global services ', 'Trainee web developer ', '2022-09-06', 15000.00, '1970-01-01', 18000.00, 'Medavakkam ', '2', '0 years 0 months', ' Some extra learning purposes ', 1, '2022-09-06 11:02:08', 0, NULL, 0, NULL, 1),
(4851, 10079, 'Thinksync solutions', 'Customer service executive', '2021-05-18', 14000.00, '2022-05-18', 14.50, 'Eekatuthangal', '1', '1 years 0 months', ' Health issues\n\n', 1, '2022-09-06 11:47:58', 0, NULL, 0, NULL, 1),
(4852, 10082, 'Hindusthan power link', 'Assistant manger', '2022-01-02', 15000.00, '2022-07-22', 15000.00, 'Salam', '1', '0 years 6 months', ' Health issues', 1, '2022-09-06 12:04:22', 0, NULL, 0, NULL, 1),
(4853, 10083, 'ICICI bank', 'NRI Bro', '2021-01-18', 15000.00, '2021-11-18', 15000.00, 'valuthoor', '1', '0 years 10 months', 'Long travel.', 1, '2022-09-06 12:04:41', 0, NULL, 0, NULL, 1),
(4854, 10085, 'Smile outsourcing ', 'Nil', '2021-03-05', 12000.00, '2022-08-05', 15500.00, 'Nungambakkam', '1', '1 years 5 months', ' Salary was low ..', 1, '2022-09-06 12:31:14', 0, NULL, 0, NULL, 1),
(4855, 10084, 'City auto maruthi show room ', 'Tellecalling ', '2022-09-06', 9000.00, '1970-01-01', 10000.00, 'Erode ', '2', '0 years 0 months', ' Incentive problem s ', 1, '2022-09-06 12:44:24', 0, NULL, 0, NULL, 1),
(4856, 10091, 'Kajaria bathware private limited ', 'Marketing executive ', '2021-10-11', 21000.00, '1970-01-01', 23050.00, 'Chennai', '2', '0 years 10 months', ' Working process is hard ', 1, '2022-09-06 01:16:11', 0, NULL, 0, NULL, 1),
(4857, 10094, 'HDFC mutual fund', 'Customer service associate', '2021-03-26', 16000.00, '2021-10-21', 16000.00, 'Mount road chennai', '1', '0 years 6 months', ' Growth ', 1, '2022-09-06 03:04:13', 0, NULL, 0, NULL, 1),
(4858, 10094, 'Auosense pvt ltd', 'Customer service associate ', '2018-08-16', 12500.00, '2021-03-09', 12500.00, 'Guindy chennai', '1', '2 years 6 months', 'Covid pandemic', 1, '2022-09-06 03:07:25', 0, NULL, 0, NULL, 1),
(4859, 10097, 'Motilal Oswal financial services Pvt Ltd', 'Senior Relationship manager', '2019-10-01', 23000.00, '2022-08-31', 26500.00, 'Chennai', '1', '2 years 11 months', ' Location change', 1, '2022-09-07 10:54:00', 0, NULL, 0, NULL, 1),
(4860, 10071, 'Bank zone', 'Customer care sales executive ', '2021-05-05', 12000.00, '2022-05-25', 15000.00, 'Nungmpakkam ', '1', '1 years 0 months', ' For personal issues ', 1, '2022-09-07 11:47:44', 0, NULL, 0, NULL, 1),
(4861, 10032, 'Alturast ', '5', '2021-12-13', 9000.00, '2022-09-07', 9000.00, 'Karapakkam', '1', '0 years 8 months', ' Health issues ', 1, '2022-09-07 12:21:58', 0, NULL, 0, NULL, 1),
(4862, 10114, 'Earth more private limited', 'Customer Support executive', '2021-12-16', 19000.00, '2022-09-09', 19000.00, 'Ekaduthangal', '2', '0 years 8 months', ' To develop my skill and communication. ', 1, '2022-09-08 08:21:28', 0, NULL, 0, NULL, 1),
(4863, 10114, 'Reliance Telecom', 'Sales Associate', '2020-08-18', 17000.00, '2021-11-24', 17000.00, 'Padi', '1', '1 years 3 months', 'Due to health issues and to develop my knowledge, skills, ability and communication', 1, '2022-09-08 08:27:33', 0, NULL, 0, NULL, 1),
(4864, 10116, 'Telle sale', 'VPE', '2021-05-10', 12000.00, '1970-01-01', 15000.00, 'Saidapet', '2', '1 years 3 months', ' I\'m not getting proper incentives and increment', 1, '2022-09-08 10:31:07', 0, NULL, 0, NULL, 1),
(4865, 10117, 'Reliance telecom', 'Sales Associate', '2020-08-05', 17000.00, '2021-10-15', 17000.00, 'Chennai', '1', '1 years 2 months', ' To develop my skill and knowledge. I believe in continuous learning and development and since I have heard so much about your company’s policy to keep upskilling, I am very much interested in this role.', 1, '2022-09-08 10:36:12', 1, '2022-09-08 10:47:15', 0, NULL, 1),
(4866, 10117, 'Earth more private limited', 'Customer Support executive', '2021-12-15', 19000.00, '1970-01-01', 19000.00, 'Ekkaduthangal', '2', '0 years 8 months', ' I want to accept for my professional growth. It will help me in fulfilling my long-term goals and give me more opportunities and experiences.', 1, '2022-09-08 10:44:53', 0, NULL, 0, NULL, 1),
(4867, 10118, 'CAMS', 'Quality checking', '2021-09-23', 9500.00, '1970-01-01', 10200.00, 'Chennai', '2', '0 years 11 months', ' Salary Issues ', 1, '2022-09-08 10:56:29', 0, NULL, 0, NULL, 1),
(4868, 10124, 'Quess Corp Ltd ', 'Relationship officer ', '2022-02-02', 21700.00, '2022-09-02', 21700.00, 'Kodambakkam ', '1', '0 years 7 months', ' Family issues ', 1, '2022-09-08 11:43:59', 0, NULL, 0, NULL, 1),
(4869, 10124, 'Quess Corp Ltd ', 'Relationship officer ', '2022-02-02', 21700.00, '2022-09-02', 21700.00, 'Kodambakkam ', '1', '0 years 7 months', 'Family issues ', 1, '2022-09-08 11:45:19', 0, NULL, 0, NULL, 1),
(4870, 10133, 'Iifl', 'Telecaller', '2018-08-01', 13000.00, '2020-03-19', 13000.00, 'Chennai ', '1', '1 years 7 months', ' Covid and fathers death', 1, '2022-09-09 11:21:32', 0, NULL, 0, NULL, 1),
(4871, 10139, 'Solverminds solutions and technologies ', 'Full Stack developer ', '2022-01-19', 15000.00, '1970-01-01', 21000.00, 'Siruseri', '2', '0 years 7 months', 'Salary increment ', 1, '2022-09-09 01:00:06', 0, NULL, 0, NULL, 1),
(4872, 10142, 'Vizza insurance company ', 'Telecaller', '2019-05-13', 8500.00, '2022-06-18', 13500.00, 'Kodabakkam ', '1', '3 years 1 months', ' Personal issue', 1, '2022-09-09 02:23:37', 0, NULL, 0, NULL, 1),
(4873, 10157, 'Savvy soft solution ', 'Jr HR Recruiter ', '2022-04-04', 25000.00, '2022-09-25', 25000.00, 'T nagar ', '1', '0 years 5 months', 'Health issues ', 1, '2022-09-10 11:55:26', 0, NULL, 0, NULL, 1),
(4874, 10157, 'Cognizant technology solutions ', 'Senior process executive ', '2017-04-12', 8600.00, '1970-01-01', 22000.00, 'Mepz -TBM', '2', '5 years 4 months', 'Looking opportunity in HR filed', 1, '2022-09-10 11:57:23', 0, NULL, 0, NULL, 1),
(4875, 10159, 'CAMS (Computer age management services)', 'Insurance services caller', '2021-12-06', 11500.00, '2022-07-31', 13000.00, 'Mount road ', '1', '0 years 7 months', ' Hr changes me in on roll', 1, '2022-09-12 10:10:48', 0, NULL, 0, NULL, 1),
(4876, 10159, 'CAMS', 'Insurance service caller', '2021-12-06', 11500.00, '2022-07-31', 13000.00, 'Mount road ', '1', '0 years 7 months', 'Hr changes me in on roll ', 1, '2022-09-12 10:11:58', 0, NULL, 0, NULL, 1),
(4877, 10167, 'Kg tech', 'Telecaller', '2021-08-15', 17000.00, '2022-08-01', 18000.00, 'Coimbatore', '1', '0 years 11 months', ' Location changed', 1, '2022-09-12 11:02:32', 0, NULL, 0, NULL, 1),
(4878, 10168, 'genie consultant pvt ltd', 'hr recruiter', '2018-03-28', 11000.00, '2018-12-29', 9000.00, 't.nagar', '1', '0 years 9 months', ' because of marriage fixed', 1, '2022-09-12 11:28:22', 0, NULL, 0, NULL, 1),
(4879, 10170, 'Ajith kumar', 'Sales associate', '2019-07-10', 16000.00, '2022-04-05', 17500.00, 'Padi', '1', '2 years 8 months', ' Develop my skil and knowledge', 1, '2022-09-12 12:32:09', 0, NULL, 0, NULL, 1),
(4880, 10171, 'Arthi', 'CRE', '2021-09-14', 15000.00, '2022-07-28', 15000.00, 'Madippakkam', '1', '0 years 10 months', ' Because of baby', 1, '2022-09-12 01:49:22', 0, NULL, 0, NULL, 1),
(4881, 10174, 'Lapiz Digital Services ', 'Vyasarpadi ', '2022-01-10', 12500.00, '2022-07-31', 1.00, 'Guindy ', '2', '0 years 6 months', ' Because that is us shift so I am relieving', 1, '2022-09-12 10:40:50', 0, NULL, 0, NULL, 1),
(4882, 10178, 'Diamondpick ', 'Executive Recruiter ', '2021-07-14', 16000.00, '1970-01-01', 29000.00, 'Chennai', '2', '1 years 1 months', ' Company Layoff', 1, '2022-09-13 10:53:56', 0, NULL, 0, NULL, 1),
(4883, 10178, 'Teleperformance ', 'Customer service Executive ', '2019-10-14', 13000.00, '2021-03-31', 17000.00, 'Chennai', '1', '1 years 5 months', 'Process Rampdown', 1, '2022-09-13 10:55:01', 0, NULL, 0, NULL, 1),
(4884, 10177, 'Diamondpick ', 'Jr.Executive', '2021-12-15', 16000.00, '1970-01-01', 16000.00, 'Chennai', '2', '0 years 8 months', ' Layoff', 1, '2022-09-13 11:04:22', 0, NULL, 0, NULL, 1),
(4885, 10181, 'Lapiz Digital Services, Alhayy Infotech.', 'Technical Accociate ', '2016-09-20', 7000.00, '2022-05-22', 23000.00, 'Ranipet and Chennai', '1', '5 years 8 months', 'Personal Commitments', 1, '2022-09-13 11:18:59', 0, NULL, 0, NULL, 1),
(4886, 10180, 'Sales ', 'Team leader ', '2013-10-10', 20000.00, '2016-09-11', 25000.00, 'Mount road ', '1', '2 years 11 months', 'I worked with the writer  in the Monthly magazine of the month', 1, '2022-09-13 11:44:05', 1, '2022-09-13 11:53:55', 0, NULL, 0),
(4887, 10180, 'ICICI credit card ', 'Team leader ', '2015-10-10', 15000.00, '2017-08-11', 25000.00, 'Mount road ', '1', '1 years 10 months', 'I will join Alasal monthly magazine in Writer ', 1, '2022-09-13 11:47:15', 1, '2022-09-13 11:53:49', 0, NULL, 0),
(4888, 10180, 'Citi finincel ', 'Team leader ', '2015-10-10', 15000.00, '2017-08-08', 20000.00, 'Ambattur ', '1', '1 years 9 months', 'Citi finincal closed ', 1, '2022-09-13 11:55:51', 0, NULL, 0, NULL, 1),
(4889, 10182, 'Phone pe', 'Sales', '2021-12-13', 25000.00, '2022-03-29', 25000.00, 'Saligaramam', '1', '0 years 3 months', 'Due to personal issue', 1, '2022-09-13 12:19:57', 0, NULL, 0, NULL, 1),
(4890, 10185, 'Vodafone idea limited', 'Sales and service customer care executive', '2015-07-10', 30000.00, '1970-01-01', 21000.00, 'Mogappair', '2', '7 years 2 months', ' Betterment of job and Betterment of my career growth', 1, '2022-09-13 12:52:27', 0, NULL, 0, NULL, 1),
(4891, 10187, 'Bankbazaar', 'Customer service executive ', '2021-07-15', 18000.00, '2022-05-17', 18000.00, 'Ambattur ', '1', '0 years 10 months', ' Sales job', 1, '2022-09-13 03:48:40', 0, NULL, 0, NULL, 1),
(4892, 10187, 'Miramed Ajuba', 'Ar caller', '2019-06-12', 15000.00, '2020-06-01', 16000.00, 'Omr', '1', '0 years 11 months', 'Night shift ', 1, '2022-09-13 03:51:46', 0, NULL, 0, NULL, 1),
(4893, 10189, 'Justdial ltd', 'Telemarketing executive', '2022-03-12', 21000.00, '2022-09-07', 21000.00, 'Little mount', '1', '0 years 5 months', ' Due to some health issues I\'m taking some leaves...', 1, '2022-09-13 11:24:44', 0, NULL, 0, NULL, 1),
(4894, 10194, 'AGTRS idart private limited', 'Telesales', '2021-12-01', 18000.00, '2022-09-01', 23000.00, 'Meadavakkam ', '1', '0 years 9 months', ' For over timing', 1, '2022-09-14 11:33:47', 0, NULL, 0, NULL, 1),
(4895, 10201, 'Chosen by dermatology ', 'Sales executive ', '2021-03-01', 10000.00, '2022-08-07', 15000.00, 'Egmore', '1', '1 years 5 months', ' ', 1, '2022-09-14 05:01:27', 0, NULL, 0, NULL, 1),
(4896, 10204, 'Leather sector Skill council', 'Executive data management', '2016-06-16', 17000.00, '2022-09-15', 28000.00, 'Chennai', '2', '6 years 2 months', 'Learning new Things\n', 1, '2022-09-15 10:52:26', 0, NULL, 0, NULL, 1),
(4897, 10203, 'Altrust technology  and taurus bpo ', '1 hour', '2021-12-14', 13500.00, '2022-08-15', 13500.00, 'Mount road', '1', '0 years 8 months', ' Salary issues', 1, '2022-09-15 11:22:41', 0, NULL, 0, NULL, 1),
(4898, 10203, 'Altrust technology', '1 hr', '2021-12-14', 13500.00, '2022-08-15', 13500.00, 'Mount road', '1', '0 years 8 months', 'Salary issues', 1, '2022-09-15 11:23:58', 0, NULL, 0, NULL, 1),
(4899, 10207, 'Altrust tecnology', '1 hour', '2021-12-15', 13500.00, '2022-08-17', 13500.00, 'Mount road', '1', '0 years 8 months', ' Salary isues', 1, '2022-09-15 11:33:33', 0, NULL, 0, NULL, 1),
(4900, 10211, 'Star health insurance ', 'Sales executive ', '2020-06-10', 1.00, '2021-12-14', 15000.00, 'Kodampakkam', '1', '1 years 6 months', ' Small accident ', 1, '2022-09-15 12:30:07', 0, NULL, 0, NULL, 1),
(4901, 10202, 'Altruisti solution', 'Telecaller ', '2020-09-03', 10000.00, '2022-07-19', 13500.00, 'Mount road', '1', '1 years 10 months', ' Salary issue', 1, '2022-09-15 12:59:11', 0, NULL, 0, NULL, 1),
(4902, 10214, 'Vizza investment center ', 'Team leader ', '2022-05-02', 25000.00, '2022-09-12', 25000.00, 'Kodambakkam ', '1', '0 years 4 months', ' Not safe for girls', 1, '2022-09-15 03:42:12', 0, NULL, 0, NULL, 1),
(4903, 10219, 'Kotak Mahindra iife insurance ', 'System operator ', '2018-06-25', 20000.00, '2021-07-30', 22000.00, 'Velachery ', '1', '3 years 1 months', ' Because of marriage ', 1, '2022-09-16 12:26:04', 0, NULL, 0, NULL, 1),
(4904, 10221, 'Ads real-estate office ', 'Mudichur', '2022-07-05', 18000.00, '2022-08-22', 18000.00, 'Tambaram ', '1', '0 years 1 months', ' ', 1, '2022-09-16 01:06:34', 0, NULL, 0, NULL, 1),
(4905, 10226, 'Wissend consultant services Pvt Ltd ', 'Data analyst ', '2020-02-24', 11000.00, '2022-06-10', 16500.00, 'Nandhanam', '1', '2 years 3 months', ' Salary is low', 1, '2022-09-16 08:14:15', 0, NULL, 0, NULL, 1),
(4906, 10227, 'Hertz global compliance ', 'Team leader', '2021-11-21', 10000.00, '1970-01-01', 13000.00, 'CIT NAGAR', '2', '0 years 9 months', 'Due to salary Salary hike issues', 1, '2022-09-17 09:50:47', 1, '2022-09-17 09:53:10', 0, NULL, 0),
(4907, 10227, 'Hertz global compliance ', 'Team leader ', '2021-11-21', 10000.00, '1970-01-01', 13000.00, 'CIT NAGAR', '2', '0 years 9 months', 'Due to salary hike issues', 1, '2022-09-17 09:52:42', 0, NULL, 0, NULL, 1),
(4908, 10229, 'Aditya birla capital ', 'Assistant manager ', '2022-03-21', 31.00, '2022-09-24', 28.00, 'Chennai ', '1', '0 years 6 months', 'Looking for better opportunity ', 1, '2022-09-17 12:00:00', 1, '2022-09-17 12:02:34', 0, NULL, 0),
(4909, 10229, 'Aditya Birla capital ', 'Assistant manager ', '2022-03-21', 31.00, '2022-09-24', 28000.00, 'Chennai ', '1', '0 years 6 months', 'Looking for better opportunity ', 1, '2022-09-17 12:01:18', 1, '2022-09-17 12:02:39', 0, NULL, 0),
(4910, 10229, 'Aditya Birla capital ', 'Assistant manager ', '2022-03-21', 31.00, '2022-09-24', 28000.00, 'Chennai ', '1', '0 years 6 months', 'Looking for better opportunity ', 1, '2022-09-17 12:02:24', 0, NULL, 0, NULL, 1),
(4911, 10230, 'HDB FINANCE SERVICE', 'Sales executive', '2021-09-18', 15000.00, '2022-06-21', 11500.00, 'Arumbakkam', '1', '0 years 9 months', ' Salary issues.', 1, '2022-09-17 12:22:53', 0, NULL, 0, NULL, 1),
(4912, 10231, 'Propleaf private limited ', 'Business development executive ', '2022-01-04', 20000.00, '2022-08-31', 20000.00, 'Saidapet chennai', '1', '0 years 7 months', 'Career growth ', 1, '2022-09-17 03:12:17', 0, NULL, 0, NULL, 1),
(4913, 10237, 'Malarolicenter', 'Admi', '2021-06-09', 3500.00, '2022-04-06', 5000.00, 'Ukkadai', '1', '0 years 9 months', ' Location issue', 1, '2022-09-19 11:07:50', 0, NULL, 0, NULL, 1),
(4914, 10238, 'Tech Mantraminds ', 'IT Recruiter ', '2021-09-20', 12000.00, '2022-04-13', 15000.00, 'Vadapalani ', '1', '0 years 6 months', ' Travel to abroad ', 1, '2022-09-19 11:12:04', 0, NULL, 0, NULL, 1),
(4915, 10236, 'St marcina\'s metric higher secondary school ', 'Teacher', '2022-02-02', 7000.00, '2022-08-05', 5500.00, ' Ammapet ', '1', '0 years 6 months', ' Not interested in teaching work .because qualified oriented intrest I choose ', 1, '2022-09-19 11:14:24', 0, NULL, 0, NULL, 1),
(4916, 10242, 'Vizza investment centre ', 'Telcaller', '2018-08-28', 8000.00, '2021-02-09', 13000.00, 'Kodambakkam ', '1', '2 years 5 months', ' Family issues ', 1, '2022-09-20 11:22:19', 0, NULL, 0, NULL, 1),
(4917, 10245, 'ARCIS E SERVICES PRIVATE LIMITED ', 'Telecaller', '2022-07-21', 15000.00, '1970-01-01', 15000.00, 'Thousand Lights', '2', '0 years 1 months', ' ', 1, '2022-09-20 11:28:18', 0, NULL, 0, NULL, 1),
(4918, 10244, 'HDB', 'Telcaller', '2018-08-15', 12500.00, '1970-01-01', 17000.00, 'Anna nagar', '2', '4 years 1 months', 'Health problem  ', 1, '2022-09-20 11:29:25', 0, NULL, 0, NULL, 1),
(4919, 10247, 'HDB FINANCIAL SERVICES LTD', 'SENIOR SALES OFFICER', '2019-06-04', 10000.00, '2022-04-01', 16000.00, 'ERODE ', '1', '2 years 9 months', 'Personal issues ', 1, '2022-09-20 12:44:06', 0, NULL, 0, NULL, 1),
(4920, 10249, 'Lakshmi electrical private limited ', 'Staff training ', '2020-03-13', 12500.00, '2022-04-14', 12500.00, 'Coimbatore ', '1', '2 years 1 months', 'I suffer from jundice.so not continue on job', 1, '2022-09-21 10:10:48', 0, NULL, 0, NULL, 1),
(4921, 10255, 'PPMS ', 'Hr executive ', '2018-07-21', 11000.00, '1970-01-01', 23500.00, 'Kolathur', '2', '4 years 2 months', ' Searching for better opportunity ', 1, '2022-09-21 11:30:29', 0, NULL, 0, NULL, 1),
(4922, 10260, 'Berkmeer India pvt lmt ', 'Trainee process consultant ', '2021-10-13', 18000.00, '1970-01-01', 18000.00, 'Chennai ', '2', '0 years 11 months', 'For the growth of my career .', 1, '2022-09-22 11:03:23', 0, NULL, 0, NULL, 1),
(4923, 10264, 'Flexzo HR services pvt Ltd ', 'Business development executive ', '2022-03-05', 20000.00, '1970-01-01', 20000.00, 'Vadapalani ', '2', '0 years 6 months', ' Growth of my carreer ', 1, '2022-09-22 11:57:40', 0, NULL, 0, NULL, 1),
(4924, 10272, 'itech ind. pvd ltd', 'data administrator', '2017-08-02', 12000.00, '2018-01-18', 12000.00, 'chennai', '1', '0 years 5 months', ' for my carrier', 1, '2022-09-22 05:46:01', 0, NULL, 0, NULL, 1),
(4925, 10272, 'vaasan enginering works', 'Cad Designer', '2018-01-29', 14000.00, '2019-09-30', 16000.00, 'ambatur', '1', '1 years 8 months', 'low salary package', 1, '2022-09-22 05:50:08', 0, NULL, 0, NULL, 1),
(4926, 10272, 'cbse regional office', 'junior assistant', '2018-12-04', 20000.00, '1970-01-01', 25000.00, 'chennai', '2', '3 years 9 months', 'working in contractual basis', 1, '2022-09-22 05:52:34', 0, NULL, 0, NULL, 1),
(4927, 10270, 'Hatsun agro product limited ', 'Mis', '2021-09-19', 1.00, '2022-09-17', 27000.00, 'Sholinganallur ', '1', '0 years 11 months', 'Due to carrier growth and long distance ', 1, '2022-09-22 05:57:58', 0, NULL, 0, NULL, 1),
(4928, 10274, 'Bharath matrimony', 'Sales excutive', '2022-04-01', 14.50, '2022-09-05', 16000.00, 'Guindy', '1', '0 years 5 months', ' Some family problem ', 1, '2022-09-23 08:39:52', 0, NULL, 0, NULL, 1),
(4929, 10289, 'Vizza investment center ', 'Voice process Executive ', '2022-03-31', 10000.00, '2022-09-15', 10000.00, 'Saidapet ', '1', '0 years 5 months', 'Salery un satisfied ', 1, '2022-09-23 11:50:51', 0, NULL, 0, NULL, 1),
(4930, 10292, 'Vizza investment center ', 'Voice process Executive ', '2022-03-31', 10000.00, '2022-09-14', 10000.00, 'Saidapet ', '1', '0 years 5 months', ' Salary not satisfied', 1, '2022-09-23 12:01:26', 0, NULL, 0, NULL, 1),
(4931, 10294, 'Allset business solution', 'Senior telecaller', '2021-07-15', 15.00, '2022-09-15', 15000.00, 'Thousand light', '1', '1 years 2 months', ' ', 1, '2022-09-23 12:12:03', 0, NULL, 0, NULL, 1),
(4932, 10297, 'Adroit Urban Developers', 'Pre sales ', '2020-09-17', 23300.00, '2022-03-31', 23300.00, 'Chennai ', '1', '1 years 6 months', ' As there is no pF and ESI ', 1, '2022-09-23 05:43:02', 0, NULL, 0, NULL, 1),
(4933, 10298, 'ThinksynQ solutions private limited', 'Assistant Manager', '2020-03-01', 1.00, '1970-01-01', 22500.00, 'Ekkatuthangal', '2', '2 years 6 months', ' To explore more and face new challenges', 1, '2022-09-23 05:52:11', 0, NULL, 0, NULL, 1),
(4934, 10304, 'STARTEK ', 'Customer support executive ', '2019-06-16', 14000.00, '1970-01-01', 15550.00, 'Chennai ', '2', '3 years 3 months', ' Process change ', 1, '2022-09-23 07:10:29', 0, NULL, 0, NULL, 1),
(4935, 10311, 'mfine', 'Sr.Associate', '2021-10-01', 29500.00, '2022-04-11', 29500.00, 'Bangalore', '1', '0 years 6 months', ' Lay Off', 1, '2022-09-23 08:52:53', 0, NULL, 0, NULL, 1),
(4936, 10311, 'JKR Solutions', 'Sr.Associate', '2017-06-12', 275000.00, '2020-06-25', 27500.00, 'Vijayawada', '1', '3 years 0 months', 'Company Shutdown', 1, '2022-09-23 08:54:16', 0, NULL, 0, NULL, 1),
(4937, 10319, 'Avanze technologies ', 'Loan Analyst ', '2021-02-17', 23000.00, '2022-07-09', 26000.00, 'Indiranagar ', '1', '1 years 4 months', ' Process stopped ', 1, '2022-09-24 11:19:41', 0, NULL, 0, NULL, 1),
(4938, 10323, 'Iopex technologies', 'Tech Support', '2021-07-14', 33000.00, '1970-01-01', 35000.00, 'Ambattur', '2', '1 years 2 months', ' Less salary hike', 1, '2022-09-24 11:22:44', 0, NULL, 0, NULL, 1),
(4939, 10323, 'Sutherland', 'Associate', '2020-06-15', 27000.00, '2021-06-15', 29000.00, 'Perungalathur', '1', '1 years 0 months', 'Process down', 1, '2022-09-24 11:23:49', 0, NULL, 0, NULL, 1),
(4940, 10324, 'Tech Mahindra  and ICICI Lombard ', 'Customer  support and insurance sales ', '2021-04-02', 5.00, '2022-07-31', 15500.00, 'Ambattur  and sethakathi business center', '1', '1 years 3 months', ' Corrected ', 1, '2022-09-24 12:28:55', 0, NULL, 0, NULL, 1),
(4941, 10332, 'Knowledge splice Pvt Ltd ', 'process associate ', '2021-02-08', 18000.00, '2022-05-03', 21000.00, 'Bangalore ', '1', '1 years 2 months', ' I have experience in US mortgage the interest rate will be increased too high and projects was stopped that\'s why company told choose another opportunity ', 1, '2022-09-24 02:44:10', 0, NULL, 0, NULL, 1),
(4942, 10333, 'stellar innovations pvt ltd', 'process associate', '2020-07-28', 16000.00, '2022-09-14', 23000.00, 'bangalore', '1', '2 years 1 months', ' office is relocating to other place.', 1, '2022-09-24 02:48:08', 0, NULL, 0, NULL, 1),
(4943, 10334, 'Covenant Consultancy ', 'IT Recruiter ', '2022-05-04', 17000.00, '1970-01-01', 17000.00, 'Ambattur kosmo one ', '2', '0 years 4 months', 'Family Issues ', 1, '2022-09-24 02:58:41', 0, NULL, 0, NULL, 1),
(4944, 10330, 'Vasantham promoters', 'Sales', '2021-02-24', 16000.00, '2022-07-24', 16000.00, 'Arumbakkam ', '1', '1 years 5 months', ' Salary issue', 1, '2022-09-24 03:05:18', 0, NULL, 0, NULL, 1),
(4945, 10331, 'Vasatham promoters', 'Sales ', '2021-02-24', 16000.00, '2022-07-24', 16000.00, 'Arumbakkam ', '1', '1 years 5 months', ' Salary issue', 1, '2022-09-24 03:12:40', 0, NULL, 0, NULL, 1),
(4946, 10340, 'Paytm', 'Business development executive', '2020-01-24', 18000.00, '2020-09-14', 24000.00, 'Chennai', '1', '0 years 7 months', ' ', 1, '2022-09-24 07:04:15', 0, NULL, 0, NULL, 1),
(4947, 10341, 'Lynks logistics limited', 'Team leader', '2016-03-03', 14000.00, '2022-08-30', 34000.00, 'Mylapore', '1', '6 years 5 months', ' Fund issue in company so layoff', 1, '2022-09-24 10:46:22', 0, NULL, 0, NULL, 1),
(4948, 8510, 'First Source Solutions Private Limited', 'CSA', '2021-06-21', 13.50, '2022-04-21', 13.50, 'Chennai', '1', '0 years 10 months', ' Health Issues', 1, '2022-09-26 11:44:50', 0, NULL, 0, NULL, 1),
(4949, 10352, 'Bajaj finserv', 'Trainee', '2020-12-09', 168000.00, '2021-05-31', 168000.00, 'Trichy', '1', '0 years 5 months', ' ', 1, '2022-09-26 12:45:30', 0, NULL, 0, NULL, 1),
(4950, 10352, 'Extramarks education pvt ltd', 'Business development executive', '2022-01-10', 400000.00, '2022-10-31', 400000.00, 'Chennai', '1', '0 years 9 months', 'Not getting proper hile', 1, '2022-09-26 12:46:39', 0, NULL, 0, NULL, 1),
(4951, 10353, 'Bharath Matrimony', 'Sales excutive', '2022-04-01', 13.50, '2022-09-05', 15000.00, 'Guindy', '1', '0 years 5 months', ' Some family problem', 1, '2022-09-26 01:09:39', 0, NULL, 0, NULL, 1),
(4952, 10354, 'Arka Multitech', 'Area sales manager ', '2017-08-06', 25000.00, '2022-06-30', 25000.00, 'Chennai ', '1', '4 years 10 months', ' Medical emergency ', 1, '2022-09-26 01:29:46', 0, NULL, 0, NULL, 1),
(4953, 10358, 'Aargee staffing services Pvt Ltd', 'Business associate', '2021-03-09', 13000.00, '2022-08-31', 15000.00, 'Ambattur', '1', '1 years 5 months', ' .', 1, '2022-09-26 02:28:24', 0, NULL, 0, NULL, 1),
(4954, 10356, 'Whizzy logistics', 'Recruiter', '2022-01-17', 18000.00, '2022-09-04', 18000.00, 'Guindy', '1', '0 years 7 months', 'Because of health issues', 1, '2022-09-26 03:33:50', 0, NULL, 0, NULL, 1),
(4955, 10366, 'Datamark India bPO ', 'Process Associate', '2020-03-03', 10300.00, '2022-09-27', 10300.00, 'Ambattur', '2', '2 years 6 months', ' My shift time is night shift. So I am not feeling comfortable so I want to relieving', 1, '2022-09-27 07:30:32', 0, NULL, 0, NULL, 1),
(4956, 10342, 'Quality Austria central asia', 'Operations executive ', '2021-09-01', 23000.00, '1970-01-01', 243000.00, 'Chennai', '2', '1 years 0 months', ' To grow my career ', 1, '2022-09-27 10:10:15', 0, NULL, 0, NULL, 1),
(4957, 10373, 'avanze tech', 'sme', '2015-07-15', 14000.00, '2021-10-12', 20000.00, 'chennai', '1', '6 years 2 months', ' growth', 1, '2022-09-27 11:54:46', 0, NULL, 0, NULL, 1),
(4958, 10357, 'Cognizant ', 'Senior process executive ', '2020-11-06', 12000.00, '2022-09-27', 24000.00, 'Tharamani', '2', '1 years 10 months', ' Because of health issues ', 1, '2022-09-27 11:59:51', 0, NULL, 0, NULL, 1),
(4959, 10375, 'Jio mart', 'Sales executive ', '2021-03-22', 18000.00, '2022-08-18', 18000.00, 'Mogappair west', '1', '1 years 4 months', ' I developed my career and knowledge then better salary ', 1, '2022-09-27 12:25:00', 0, NULL, 0, NULL, 1),
(4960, 10370, 'ADMINSTARATION', 'ACCOUNTS', '2022-01-27', 10000.00, '1970-01-01', 10000.00, 'ERODE', '2', '0 years 8 months', 'SALARY ISSUE', 85, '2022-09-27 12:49:54', 0, NULL, 0, NULL, 1),
(4961, 10379, 'first source', 'senior analyst', '2022-01-04', 40000.00, '2022-03-30', 40000.00, 'bangalore', '1', '0 years 2 months', ' Father met with an accident', 1, '2022-09-27 01:48:44', 0, NULL, 0, NULL, 1),
(4962, 10380, 'Ninjacart', 'Source executive', '2019-08-12', 17000.00, '2021-02-09', 23000.00, 'Chennai', '1', '1 years 5 months', 'Career growth', 1, '2022-09-27 01:53:31', 0, NULL, 0, NULL, 1),
(4963, 10381, 'Thrivera staffing pvt ltd', 'Client relationship Executive ', '2021-09-22', 15000.00, '2022-08-01', 15000.00, 'WFH', '1', '0 years 10 months', ' It was Work from Home and seeking for WFO type jobs', 1, '2022-09-27 03:33:29', 0, NULL, 0, NULL, 1),
(4964, 10385, 'hdb financial service', 'junior officer', '2020-01-14', 13000.00, '1970-01-01', 15500.00, 'chennai', '2', '2 years 8 months', ' Currently im working\nI Will relive on feb month \nReason is to get hike salary with incentives and to develop my carrier ', 1, '2022-09-27 07:04:59', 0, NULL, 0, NULL, 1),
(4965, 10390, 'bpo', 'telecaller executive', '2016-04-14', 11000.00, '2021-09-15', 14000.00, 'chennai', '1', '5 years 5 months', ' growth', 1, '2022-09-28 10:28:04', 0, NULL, 0, NULL, 1),
(4966, 10382, 'Professional Builders and Promoters ', 'Sales Executive ', '2021-03-07', 10000.00, '2022-09-28', 10000.00, 'Urapakkam ', '1', '1 years 6 months', ' Expecting more opportunities', 1, '2022-09-28 10:43:20', 0, NULL, 0, NULL, 1),
(4967, 10395, 'armoraa', 'asst centre manager', '2021-06-01', 45000.00, '2022-07-30', 45000.00, 'chennai', '1', '1 years 1 months', ' Personal Issues ', 1, '2022-09-28 12:05:49', 0, NULL, 0, NULL, 1),
(4968, 10398, 'HDB financial service', 'Officer', '2011-05-04', 10.00, '2019-08-28', 22000.00, 'Chennai', '1', '8 years 3 months', ' Health issue in my pregnancy time', 1, '2022-09-28 12:14:18', 0, NULL, 0, NULL, 1),
(4969, 10397, 'Zolostays property', 'Associate customer ', '2019-09-05', 13000.00, '2022-09-28', 24000.00, 'Pourur', '2', '3 years 0 months', ' Better opportunity ', 1, '2022-09-28 12:21:05', 0, NULL, 0, NULL, 1),
(4970, 10399, 'Kotak Mahindra Bank Pvt Ltd ', 'M1- assistant manager ', '2018-05-10', 15000.00, '2018-11-30', 15000.00, 'Chennai ', '1', '0 years 6 months', ' Personal ', 1, '2022-09-28 01:11:31', 0, NULL, 0, NULL, 1),
(4971, 10401, 'Hiyamee ', 'HR RECRUITER ', '2022-01-24', 16500.00, '2022-09-01', 16500.00, 'Perungudi', '1', '0 years 7 months', ' Due To Cost Cutting, Company Are planning to close the Chennai Brach', 1, '2022-09-28 02:01:05', 0, NULL, 0, NULL, 1),
(4972, 10396, 'Dunzo digital', 'Sales', '2022-03-28', 22000.00, '1970-01-01', 22000.00, 'Guindy', '2', '0 years 6 months', ' Tranfering', 1, '2022-09-28 02:23:12', 0, NULL, 0, NULL, 1),
(4973, 10410, 'SLogix(OPC)private Limited', 'Software Devloper', '2020-12-03', 12800.00, '1970-01-01', 14800.00, 'Kodambakkam,Chennai ', '2', '1 years 9 months', ' I am experience in C++ Developer as a network Simulator my role..I have gained lot of knowledge,  Moved on my carrier growth so this is the reason for relieving this company.I want to change php Developer role..I know the web technologies like html, CSS, Javascript, Bootstrap, PhP, MYSQL ', 1, '2022-09-28 11:00:01', 0, NULL, 0, NULL, 1),
(4974, 10412, 'Cognizant ', 'Senior process executive', '2021-03-26', 20000.00, '1970-01-01', 23000.00, 'Chennai ', '2', '1 years 6 months', ' Knowledge ', 1, '2022-09-29 02:34:37', 0, NULL, 0, NULL, 1),
(4975, 10412, 'Hinduja global solutions ', 'Process executive ', '2019-11-04', 10000.00, '2021-02-27', 15000.00, 'Chennai ', '1', '1 years 3 months', 'Process knowledge ', 1, '2022-09-29 02:36:09', 0, NULL, 0, NULL, 1),
(4976, 10413, 'aagna global solutions', 'customer support execuitve', '2016-03-17', 12000.00, '2016-10-26', 12000.00, 'perungudi', '1', '0 years 7 months', 'office shifted to banglore', 1, '2022-09-29 09:47:37', 0, NULL, 0, NULL, 1),
(4977, 10415, 'chellamani and co', 'executive', '2016-11-12', 10000.00, '2017-12-18', 11000.00, 'chennai', '1', '1 years 1 months', ' growth', 1, '2022-09-29 10:12:35', 0, NULL, 0, NULL, 1),
(4978, 10415, 'sap bi tech', 'intern', '2018-01-16', 12000.00, '2018-12-26', 12500.00, 'chennai', '1', '0 years 11 months', 'contract', 1, '2022-09-29 10:13:35', 0, NULL, 0, NULL, 1),
(4979, 10415, 'cars 24', 'front office executive', '2019-01-19', 13000.00, '2019-06-29', 13500.00, 'chennai', '1', '0 years 5 months', 'process ramp', 1, '2022-09-29 10:14:38', 0, NULL, 0, NULL, 1),
(4980, 10415, 'nageshwara rao', 'admin', '2020-01-15', 14000.00, '2021-06-15', 14000.00, 'chennai', '1', '1 years 5 months', 'growth', 1, '2022-09-29 10:15:31', 0, NULL, 0, NULL, 1),
(4981, 10427, 'PJ infotech ', 'Employ', '2019-09-03', 10000.00, '2021-09-09', 13000.00, 'Pudukkottai ', '1', '2 years 0 months', ' I like Chennai so I staying Chennai', 1, '2022-09-29 11:42:26', 0, NULL, 0, NULL, 1),
(4982, 10428, 'IFive technology ', 'PHP developer ', '2022-03-02', 15000.00, '2022-09-26', 15000.00, 'Chennai ', '1', '0 years 6 months', ' Location very long ', 1, '2022-09-29 12:02:49', 0, NULL, 0, NULL, 1),
(4983, 10430, 'Ril', 'Software engineer trinee', '2021-12-23', 17.00, '2022-08-21', 17.00, 'Milapore', '1', '0 years 7 months', 'Could not learn more then a point', 1, '2022-09-29 12:54:46', 0, NULL, 0, NULL, 1),
(4984, 10431, 'Reliance nippon life insurance', 'Relationship manager', '2022-01-10', 1.00, '2022-03-28', 24000.00, 'Chennai', '1', '0 years 2 months', ' Personal reason', 1, '2022-09-29 03:34:51', 0, NULL, 0, NULL, 1),
(4985, 10440, 'Sutherland', 'Associate Customer Support agent', '2021-07-05', 15000.00, '2022-05-16', 15000.00, 'Perungalathur ', '1', '0 years 10 months', ' Studying course regarding Oracle Java\n So I can\'t able to manage the time for work and study. So only I left the job', 1, '2022-09-30 02:57:02', 0, NULL, 0, NULL, 1),
(4986, 10448, 'Sbicards', 'Senior customer service', '2022-03-21', 30.00, '2022-06-03', 30000.00, 'Chennai', '1', '0 years 2 months', ' Medical emergency for my father so i queit the job suddenly', 1, '2022-10-01 11:28:52', 0, NULL, 0, NULL, 1),
(4987, 10451, 'Hexaware Technologies', 'Senior Executive', '2021-05-03', 16000.00, '2022-08-02', 16000.00, 'Velachery', '1', '1 years 2 months', ' I resigned the company for development in career.', 1, '2022-10-01 03:12:03', 0, NULL, 0, NULL, 1),
(4988, 10365, 'Bharti Airtel ', 'Installation engineer ', '2022-08-10', 20000.00, '2022-10-01', 35197.00, 'Madippakkam', '1', '0 years 1 months', ' It is a Field based work and also the work was not expected by me actual ', 1, '2022-10-03 05:28:19', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4989, 10461, 'Sri sai housing and properties Pvt Ltd ', 'Admin executive ', '2022-01-20', 20000.00, '2022-09-20', 20000.00, 'Kovilambakkam ', '1', '0 years 8 months', 'Personal issues ', 1, '2022-10-04 01:18:47', 0, NULL, 0, NULL, 1),
(4990, 10461, 'Divya dipti construction ', 'Personal assistant ', '2019-09-16', 17000.00, '2021-11-30', 25000.00, 'Tambaram ', '1', '2 years 2 months', 'Project was closed ', 1, '2022-10-04 01:19:53', 0, NULL, 0, NULL, 1),
(4991, 10461, 'Vision India Pvt Ltd ', 'Data entry cum telecaller', '2018-10-10', 10000.00, '2019-05-10', 12000.00, 'T nagar ', '1', '0 years 7 months', 'Project was completed ', 1, '2022-10-04 01:21:06', 0, NULL, 0, NULL, 1),
(4992, 10469, 'Cars india', 'Customer care', '2021-07-07', 13000.00, '2022-07-15', 13000.00, 'Chennai', '1', '1 years 0 months', ' ', 1, '2022-10-05 06:32:53', 0, NULL, 0, NULL, 1),
(4993, 10470, 'Future Focus Infotech ', 'Internship Trainee', '2022-01-03', 13500.00, '2022-09-30', 1.50, 'Habibullah Road,Tnagar.', '1', '0 years 8 months', ' My internship period is finished.That\'s why I am looking for a job.', 1, '2022-10-06 09:35:51', 0, NULL, 0, NULL, 1),
(4994, 10476, 'Policy bazaar web aggregate ', 'Senior sales associate ', '2021-12-22', 31.00, '2022-08-25', 22000.00, 'Thiruvanmiyur ', '1', '0 years 8 months', ' Health issue ', 1, '2022-10-06 11:56:57', 0, NULL, 0, NULL, 1),
(4995, 10481, 'WBC Software Lab ', 'Software Engineer Trainee ', '2020-03-02', 7000.00, '2021-05-04', 7000.00, 'Karaikudi', '1', '1 years 2 months', ' Personal issues', 1, '2022-10-06 01:45:00', 0, NULL, 0, NULL, 1),
(4996, 10493, 'Reliance retail ', 'Assistant manager ', '2021-07-14', 23000.00, '2022-07-31', 28000.00, 'Coimbatore ', '1', '1 years 0 months', ' I\'m interested in HR filed ', 1, '2022-10-07 10:42:10', 0, NULL, 0, NULL, 1),
(4997, 10500, 'Sutherland Global services Pvt Ltd ', 'Senior associate ', '2016-06-27', 20000.00, '2022-06-30', 30000.00, 'Chennai ', '1', '6 years 0 months', 'I\'m looking for an opportunity with new and fresh challenges where I can leverage my skills and experience to progress my career further.', 1, '2022-10-07 12:10:09', 0, NULL, 0, NULL, 1),
(4998, 10504, 'Aditya birla', 'EGMORE ', '2022-07-07', 25000.00, '2022-09-27', 25000.00, 'Egmore', '1', '0 years 2 months', ' Not comfortable in incentive slap ', 1, '2022-10-07 01:38:46', 0, NULL, 0, NULL, 1),
(4999, 10508, 'Cogent services private limited ', 'Email support', '2021-08-26', 23000.00, '2022-09-29', 23000.00, 'Tavarekere', '1', '1 years 1 months', ' Contract based', 1, '2022-10-07 08:01:43', 0, NULL, 0, NULL, 1),
(5000, 10511, 'Cogent ', 'Customer support executive ', '2021-08-26', 23000.00, '2022-08-27', 23000.00, 'Koramangala ', '1', '1 years 0 months', 'Cogent was based on contract bàsed and was looking for better opportunity ', 1, '2022-10-07 08:20:12', 0, NULL, 0, NULL, 1),
(5001, 10519, 'Teleperformance global services Pvt Ltd ', 'Customer service associate ', '2021-07-26', 17000.00, '2022-08-02', 17000.00, 'Electronic city, Bangalore ', '1', '1 years 0 months', ' For growth ', 1, '2022-10-07 11:17:16', 0, NULL, 0, NULL, 1),
(5002, 10525, 'Bhash software labs', 'BDE', '2022-02-24', 25000.00, '2022-05-26', 25000.00, 'Bangalore', '1', '0 years 3 months', ' Work pressure, salary delay', 1, '2022-10-08 10:56:55', 0, NULL, 0, NULL, 1),
(5003, 10534, 'HiyaMee ', 'Talent acquisition executive and IT Recruiter ', '2022-03-01', 16750.00, '2022-10-04', 2.60, 'Bangalore ', '1', '0 years 7 months', ' Process shut down ', 1, '2022-10-08 12:13:51', 0, NULL, 0, NULL, 1),
(5004, 10537, 'Icici lombard', 'Tso', '2022-03-10', 13000.00, '2022-08-31', 13000.00, 'Thousandlight', '1', '0 years 5 months', ' Salary does not match for my commitments', 1, '2022-10-08 12:18:50', 0, NULL, 0, NULL, 1),
(5005, 10536, 'Hdb finance services ', 'Sales officer ', '2020-11-01', 12000.00, '2021-11-10', 12000.00, 'Villivakkam', '1', '1 years 0 months', ' Health issue', 1, '2022-10-08 12:19:02', 0, NULL, 0, NULL, 1),
(5006, 10532, 'Tata Consultancy servive', 'Senior Process Associate', '2016-10-26', 13000.00, '2022-08-23', 25000.00, 'Spencer Plaza', '1', '5 years 9 months', 'Previously worked as Backend Process for Citi Bank.fully moved to direct Citi Bank \nHence resigned my job..', 1, '2022-10-08 12:19:29', 0, NULL, 0, NULL, 1),
(5007, 10535, 'Stanza Living ', 'Resident Caption ', '2021-05-01', 22000.00, '1970-01-01', 22000.00, 'Chennai ', '2', '1 years 5 months', ' ', 1, '2022-10-08 12:19:52', 0, NULL, 0, NULL, 1),
(5008, 10545, 'HDB financial services', 'Mis & Admin', '2021-09-01', 1.00, '1970-01-01', 18000.00, 'Gream road', '2', '1 years 1 months', ' ', 1, '2022-10-08 10:27:54', 0, NULL, 0, NULL, 1),
(5009, 10546, 'Reshmee industries ', 'Sales Executive ', '2017-08-12', 12000.00, '2020-01-28', 21000.00, 'Kumbakonam ', '1', '2 years 5 months', ' For My Full time MBA in Marketing/HR', 1, '2022-10-09 06:16:00', 0, NULL, 0, NULL, 1),
(5010, 10549, '247.ai and F5 Technologies ', 'Executive ', '2020-09-01', 18000.00, '2022-09-30', 25000.00, 'Bangalore ', '1', '2 years 0 months', ' Process shutdown ', 1, '2022-10-10 09:52:16', 0, NULL, 0, NULL, 1),
(5011, 10554, 'Sevika ', 'International Voice Process ', '2022-04-04', 16000.00, '2022-09-30', 16000.00, 'Nandhambakkam ', '1', '0 years 5 months', ' ', 1, '2022-10-10 11:44:39', 0, NULL, 0, NULL, 1),
(5012, 10553, 'Cars24', 'PA procurement association ', '2022-01-02', 15000.00, '1970-01-01', 25000.00, 'Nungambakkam ', '2', '0 years 9 months', 'Long distance', 1, '2022-10-10 12:04:10', 0, NULL, 0, NULL, 1),
(5013, 10552, 'just dial', 'sales executive', '2022-04-12', 19000.00, '2022-09-12', 19000.00, 'chennai', '1', '0 years 5 months', ' health issues', 1, '2022-10-10 12:18:55', 0, NULL, 0, NULL, 1),
(5014, 10559, 'Hewlett Packard Enterprises ', 'Process associate', '2022-01-01', 25000.00, '1970-01-01', 25000.00, 'Anna Nagar ', '2', '0 years 9 months', ' ', 1, '2022-10-10 02:29:12', 0, NULL, 0, NULL, 1),
(5015, 10571, 'Concreate', 'Web Developer', '2022-03-01', 10000.00, '2022-08-31', 15000.00, 'Adyar', '1', '0 years 6 months', ' Wanted to work in a software company as my last working company was a design based company. \n\nWanted to create dynamic website / full stack applications', 1, '2022-10-11 10:04:07', 0, NULL, 0, NULL, 1),
(5016, 10573, 'Intellecto Global Service ', 'Software Engineer ', '2022-09-13', 220000.00, '2022-09-16', 250000.00, 'Meddavakkam', '1', '0 years 0 months', 'Night Shift ', 1, '2022-10-11 10:30:44', 0, NULL, 0, NULL, 1),
(5017, 10574, '1by2 foods Pvt ltd ', 'Business development executive ', '2021-12-29', 20000.00, '2022-06-16', 20000.00, 'Chennai ', '1', '0 years 5 months', 'Company and job role or ok continues field work so cannot continue job ', 1, '2022-10-11 10:52:05', 0, NULL, 0, NULL, 1),
(5018, 10575, 'Teckzy research analytics IT solutions ', 'Full stack developer ', '2021-06-05', 15000.00, '2022-09-22', 15000.00, 'Chennai', '1', '1 years 3 months', ' Salary Issues. ', 1, '2022-10-11 11:26:57', 0, NULL, 0, NULL, 1),
(5019, 10576, 'Sriram general insurance', 'Senior sales executive', '2018-10-11', 17000.00, '2020-11-27', 19000.00, 'Perungudi', '1', '2 years 1 months', ' Marriage                                                             \n\n\n\n\n', 1, '2022-10-11 11:53:59', 0, NULL, 0, NULL, 1),
(5020, 10577, 'Gobumpr ', 'Tele sales ', '2021-07-12', 18000.00, '2022-03-31', 18000.00, 'Guindy ', '1', '0 years 8 months', ' Marriage ', 1, '2022-10-11 11:57:41', 0, NULL, 0, NULL, 1),
(5021, 10578, 'atuosensw ', 'cre', '2021-09-24', 11000.00, '2022-10-03', 11000.00, 'chennai', '1', '1 years 0 months', ' ', 1, '2022-10-11 12:04:08', 0, NULL, 0, NULL, 1),
(5022, 10579, 'Livquik technology Indian pvt Ltd ', 'VKYC (Verifier )', '2022-02-24', 17500.00, '2022-07-31', 17500.00, 'Thousand lights ', '1', '0 years 5 months', ' Process ramp down ', 1, '2022-10-11 01:53:29', 1, '2022-10-11 01:58:00', 0, NULL, 1),
(5023, 10579, 'Bank bazaar ', 'Customer support executive ', '2021-05-06', 16000.00, '2021-12-31', 16000.00, 'Ambattur ', '1', '0 years 7 months', 'Family commitments ', 1, '2022-10-11 01:56:51', 0, NULL, 0, NULL, 1),
(5024, 10580, 'MS global logistics ', 'Customer support executive ', '2021-05-12', 12000.00, '2022-04-30', 16000.00, 'Mint', '1', '0 years 11 months', ' Change of location and no proper cab facilities ', 1, '2022-10-11 01:56:58', 0, NULL, 0, NULL, 1),
(5025, 10580, 'LivQuik Technology pvt ltd ', 'Vkyc Verifier ', '2022-05-16', 16000.00, '2022-07-31', 16000.00, 'Thousand lights ', '1', '0 years 2 months', 'Process ramp down ', 1, '2022-10-11 02:02:01', 0, NULL, 0, NULL, 1),
(5026, 10581, 'Xpressbees', 'Customer support', '2022-01-21', 17800.00, '2022-06-23', 17800.00, 'Hoskote begur', '1', '0 years 5 months', ' Personal issue went back to village', 1, '2022-10-11 04:19:13', 0, NULL, 0, NULL, 1),
(5027, 10583, 'The Chennai silks', 'Packing and delivery', '2020-03-01', 7500.00, '2020-05-15', 7500.00, 'Thiruvallur', '1', '0 years 2 months', ' Changing my designation', 1, '2022-10-11 07:17:33', 0, NULL, 0, NULL, 1),
(5028, 10583, 'The Chennai silks', 'Customer relationship management executive', '2020-05-15', 7500.00, '2020-09-10', 9000.00, 'Thiruvallur', '1', '0 years 3 months', 'Salary isn\'t comfortable', 1, '2022-10-11 07:20:12', 0, NULL, 0, NULL, 1),
(5029, 10583, 'Abirami comlex ', 'Packing executive', '2020-10-01', 9000.00, '2022-03-31', 12000.00, 'Tiruppur', '1', '1 years 6 months', 'Salary isn\'t increased by this corporate company', 1, '2022-10-11 07:22:56', 0, NULL, 0, NULL, 1),
(5030, 10584, 'Leadpro ', 'Team head', '2022-03-05', 9000.00, '2022-10-20', 11000.00, 'Chennai ', '1', '0 years 7 months', ' Sufficient salary ', 1, '2022-10-11 09:03:54', 1, '2022-10-11 09:04:19', 0, NULL, 1),
(5031, 10588, 'Chola mandalam investment and finance company ', 'Junior officer ', '2019-10-03', 10000.00, '1970-01-01', 15000.00, 'Thousand light ', '2', '3 years 0 months', ' Developed skill and salary hike', 1, '2022-10-12 10:38:36', 0, NULL, 0, NULL, 1),
(5032, 10597, 'Matrimony.com', 'Chennai ', '2018-01-22', 11000.00, '2022-02-01', 17500.00, 'Guindy ', '1', '4 years 0 months', ' ', 1, '2022-10-12 01:19:13', 0, NULL, 0, NULL, 1),
(5033, 10598, 'Allfin solution ', 'Sales Representative ', '2019-08-05', 10000.00, '1970-01-01', 15000.00, 'Nungambakkam ', '2', '3 years 2 months', ' Why did you leave for previous job?\n\nI\'ve worked at the Organisation for a long time For 3 Yrs and wanted to experience a different environment to help me to Grow', 1, '2022-10-12 04:04:38', 0, NULL, 0, NULL, 1),
(5034, 10599, 'Around the world travel and tours ', 'Executive ', '2017-01-17', 16500.00, '2021-01-31', 22000.00, 'Chennai ', '1', '4 years 0 months', ' NA', 1, '2022-10-12 04:25:47', 0, NULL, 0, NULL, 1),
(5035, 10599, 'Teems India towerlines', 'Executive ', '2021-02-01', 23500.00, '2022-04-04', 23500.00, 'Chennai ', '1', '1 years 2 months', 'NA', 1, '2022-10-12 04:26:57', 0, NULL, 0, NULL, 1),
(5036, 10599, 'Access healthcare ', 'Client partner ', '2022-04-05', 23125.00, '1970-01-01', 23125.00, 'Chennai ', '2', '0 years 6 months', 'Night shift ', 1, '2022-10-12 04:29:55', 0, NULL, 0, NULL, 1),
(5037, 10602, 'Paisabazaar ', 'Telecaller', '2022-08-16', 18750.00, '2022-10-04', 18750.00, 'Taramani', '1', '0 years 1 months', ' Not comfortable with timing and leave', 1, '2022-10-13 11:52:05', 0, NULL, 0, NULL, 1),
(5038, 10603, 'Indusind bank', 'Client accounting offer', '2021-08-02', 15000.00, '2022-06-22', 15000.00, 'Karappakam ', '1', '0 years 10 months', 'My contract over', 1, '2022-10-13 12:13:35', 0, NULL, 0, NULL, 1),
(5039, 10604, 'APOLLO HOSPITAL ', 'MRD', '2015-09-16', 6000.00, '2021-04-30', 12000.00, 'VANAGARAM', '1', '5 years 7 months', ' Salary issue', 1, '2022-10-13 03:11:29', 0, NULL, 0, NULL, 1),
(5040, 10604, 'HYCARE HOSPITAL ', 'Pharmacy/Stores', '2015-09-16', 15000.00, '2022-05-13', 16000.00, 'Arumbkkam', '1', '6 years 7 months', 'Fever', 1, '2022-10-13 03:12:50', 0, NULL, 0, NULL, 1),
(5041, 10606, 'JA solution ', 'Tellycalling executive ', '2022-01-05', 6000.00, '2022-05-13', 80000.00, 'Matha kottai Thanjavur ', '1', '0 years 4 months', ' Salary ', 1, '2022-10-14 11:16:17', 0, NULL, 0, NULL, 1),
(5042, 10606, 'Exela Technology ', 'Processor ', '2022-05-16', 10000.00, '2022-09-30', 10500.00, 'Thanjavur ', '1', '0 years 4 months', 'Changes of project And Working Shift is not suit for me.', 1, '2022-10-14 11:21:00', 0, NULL, 0, NULL, 1),
(5043, 10607, 'Cogent pvt ltd', 'Customer support Agent', '2017-05-15', 10000.00, '2018-04-05', 20000.00, 'Banglore', '1', '0 years 10 months', ' Got new job', 1, '2022-10-14 11:49:17', 0, NULL, 0, NULL, 1),
(5044, 10607, 'Aegis pvt ltd', 'Senior operations executive', '2018-05-15', 20000.00, '2019-06-05', 20000.00, 'Banglore', '1', '1 years 0 months', 'Married', 1, '2022-10-14 11:51:26', 0, NULL, 0, NULL, 1),
(5045, 10608, 'R santhosh', 'Sales', '2021-09-07', 18500.00, '2022-09-15', 18500.00, 'Avadi', '1', '1 years 0 months', ' HEALTH PROBLEM', 1, '2022-10-14 01:15:55', 0, NULL, 0, NULL, 1),
(5046, 10609, 'hdb financial service', 'senior tellecaller', '2020-12-17', 13500.00, '2022-07-01', 13500.00, 'thousandlight', '1', '1 years 6 months', ' low salary', 1, '2022-10-14 01:36:20', 0, NULL, 0, NULL, 1),
(5047, 10610, 'hdb financial service', 'senior tellecaller', '2020-12-17', 10000.00, '2022-07-01', 12000.00, 'thousand light', '1', '1 years 6 months', ' health issues', 1, '2022-10-14 01:41:47', 0, NULL, 0, NULL, 1),
(5048, 10615, 'Free Elective', 'Operational', '2020-01-01', 20000.00, '2021-01-08', 20000.00, 'Chennai', '1', '1 years 0 months', 'For better career opportunity', 1, '2022-10-15 10:48:04', 0, NULL, 0, NULL, 1),
(5049, 10614, 'Meye Management', 'Mysql & SQL developer', '2021-08-24', 10000.00, '1970-01-01', 15000.00, 'Ashok pillar', '2', '1 years 1 months', ' Software change. Using new software - Elixir software ', 1, '2022-10-15 10:52:52', 1, '2022-10-15 10:53:31', 0, NULL, 1),
(5050, 10611, 'HDB Financial Services ( HDFC) ', 'BDR sales executive', '2021-10-11', 16000.00, '1970-01-01', 160000.00, 'Arumbakkam', '2', '1 years 0 months', ' Job timing not suits looking for better one', 1, '2022-10-15 11:25:59', 0, NULL, 0, NULL, 1),
(5051, 10617, 'Reliance SMSL', 'Sales officer', '2021-03-15', 17000.00, '1970-01-01', 25000.00, 'Nungabakam', '2', '1 years 7 months', ' Career growth', 1, '2022-10-15 11:28:47', 0, NULL, 0, NULL, 1),
(5052, 10621, 'Ags transact technologies ltd', 'Executive ', '2017-10-01', 23000.00, '1970-01-01', 27500.00, 'Chennai ', '2', '5 years 0 months', 'Seeking for better option ', 1, '2022-10-17 11:45:54', 0, NULL, 0, NULL, 1),
(5053, 10621, 'Mgtechnopos it service llp', 'Operation head', '2016-10-01', 23000.00, '2017-09-30', 23000.00, 'Chennai ', '1', '0 years 11 months', 'Got another opportunity ', 1, '2022-10-17 11:47:14', 0, NULL, 0, NULL, 1),
(5054, 10625, 'ISA Global ', 'Sales and marketing executive ', '2022-09-01', 25000.00, '2022-10-15', 25000.00, 'Nungambakkam ', '1', '0 years 1 months', ' The job was field sales , i realised I wanted to try something else and not to waste my time anymore Thus i resigned . ', 1, '2022-10-17 01:42:58', 0, NULL, 0, NULL, 1),
(5055, 10625, 'Bigfish advertising and events', 'Event executive/ team supervisor ', '2020-10-02', 16000.00, '2021-05-04', 16000.00, 'Tnagar ', '1', '0 years 7 months', 'It was part time', 1, '2022-10-17 01:45:47', 0, NULL, 0, NULL, 1),
(5056, 10627, 'Portcullis pvt ltd', 'Trainee developer', '2022-03-14', 10000.00, '2022-10-07', 10000.00, 'chennai', '1', '0 years 6 months', 'salary issues and no projects, only i resolving the bugs i  code, thats the reason', 1, '2022-10-18 09:46:29', 0, NULL, 0, NULL, 1),
(5057, 10634, 'Wondersmind Infotech Solutions pvt Ltd', 'Key Accounts Manager', '2019-05-02', 25000.00, '1970-01-01', 35000.00, 'Bangalore', '2', '3 years 5 months', ' ', 1, '2022-10-18 11:09:12', 0, NULL, 0, NULL, 1),
(5058, 10634, 'Shankara building Products pvt Ltd', 'Finance officer', '2011-02-02', 6000.00, '2019-04-06', 22500.00, 'Chennai', '1', '8 years 2 months', 'Carrier growth,  family relocating', 1, '2022-10-18 11:11:01', 0, NULL, 0, NULL, 1),
(5059, 10633, 'Allset business solution ', 'Telecaller ', '2021-07-26', 15000.00, '2022-03-31', 15000.00, 'Chennai ', '1', '0 years 8 months', ' I didn\'t like to work from that Telecaller designation ', 1, '2022-10-18 11:16:37', 0, NULL, 0, NULL, 1),
(5060, 10637, 'Imarque solution private limited ', 'Telecalling ', '2020-03-06', 7000.00, '2021-04-08', 13000.00, 'Pondicherry ', '1', '1 years 1 months', ' Salary not comfortable  ', 1, '2022-10-19 10:25:54', 0, NULL, 0, NULL, 1),
(5061, 10641, 'Grv solutions ', 'Senior Telecaller ', '2019-07-23', 10000.00, '2022-08-30', 14000.00, 'Chennai rajkilpakkam ', '1', '3 years 1 months', ' Salary low', 1, '2022-10-19 12:03:11', 0, NULL, 0, NULL, 1),
(5062, 10642, 'Grv sollutions', 'Senior telecaller', '2020-10-15', 10000.00, '2022-08-30', 12000.00, 'Rajkilpakkam chennai', '1', '1 years 10 months', 'Salary low', 1, '2022-10-19 12:13:36', 0, NULL, 0, NULL, 1),
(5063, 10657, 'Himalaya ', 'Marketing executive ', '2017-03-02', 10000.00, '2017-11-22', 15000.00, 'Coimbatore ', '1', '0 years 8 months', ' Distribution change ', 1, '2022-10-20 12:43:30', 0, NULL, 0, NULL, 1),
(5064, 10661, 'Fumakilla india private limited ', 'sales officer ', '2019-07-01', 14600.00, '1970-01-01', 19000.00, 'chennai ', '2', '3 years 3 months', 'i met with a accident,due to that im unable to continue.', 1, '2022-10-21 11:26:02', 0, NULL, 0, NULL, 1),
(5065, 10666, 'Elshadai enterprises ', 'Collection department ', '2019-02-01', 14000.00, '2022-10-01', 15000.00, 'T nagar', '1', '3 years 7 months', ' ', 1, '2022-10-21 12:23:42', 0, NULL, 0, NULL, 1),
(5066, 10667, 'Amtec systems pvt lmtd', 'Customer support executive', '2021-12-27', 324000.00, '1970-01-01', 324000.00, 'Chennai', '2', '0 years 9 months', ' Distance', 1, '2022-10-21 12:24:30', 0, NULL, 0, NULL, 1),
(5067, 10667, 'Hcl', 'Process Associate', '2018-10-18', 12000.00, '2021-12-23', 12000.00, 'Chennao', '1', '3 years 2 months', 'Salary issue', 1, '2022-10-21 12:25:58', 0, NULL, 0, NULL, 1),
(5068, 10669, 'Rempar solutions private limited', 'Accountant ', '2015-08-12', 13000.00, '2021-04-10', 20000.00, 'Korattur', '1', '5 years 7 months', ' Company closed - Covid  ', 1, '2022-10-21 01:45:34', 0, NULL, 0, NULL, 1),
(5069, 10671, 'Red black tree', 'Developer', '2022-07-12', 20000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '0 years 3 months', 'My nature of job seems to be zero code platform. On the initial stage i need to learn from the scratch.', 1, '2022-10-22 11:36:36', 0, NULL, 0, NULL, 1),
(5070, 10675, 'Louis Philippe ', 'CCA', '2022-06-29', 22000.00, '2022-10-24', 22000.00, 'Velachery', '1', '0 years 3 months', 'Salary is not sufficient and time duration is around 12 hours per day', 1, '2022-10-25 11:18:32', 0, NULL, 0, NULL, 1),
(5071, 10676, 'INDIAN PISTONS LIMITED ', 'DEO & APPRENTICE TRAINEE', '2018-07-09', 12000.00, '2020-07-08', 13500.00, 'CHENNAI', '1', '1 years 11 months', ' Because of Insufficient salary ', 1, '2022-10-25 03:21:23', 0, NULL, 0, NULL, 1),
(5072, 10676, 'MUTHOOT FINANCE LIMITED ', 'JRE', '2020-08-10', 19600.00, '2022-09-24', 23900.00, 'CHENNAI', '1', '2 years 1 months', 'I want to further develop my skills And there is a lot of pressure both mentally and physically.That\'s why revoked it', 1, '2022-10-25 03:28:35', 0, NULL, 0, NULL, 1),
(5073, 10677, 'Cams', 'Customer executive ', '2020-12-28', 10500.00, '2022-02-11', 10500.00, 'Mount road', '1', '1 years 1 months', 'To meetup my financial crisis ', 1, '2022-10-26 11:00:35', 0, NULL, 0, NULL, 1),
(5074, 10677, 'Navia markets ', 'Customer care executive ', '2022-04-11', 15000.00, '2022-09-30', 15000.00, 'Nungambakkam ', '1', '0 years 5 months', 'Due to some health issue of my parents ', 1, '2022-10-26 11:02:03', 0, NULL, 0, NULL, 1),
(5075, 10679, 'Lemon peak marketing service', 'Mis', '2020-08-06', 20000.00, '2021-01-04', 18500.00, 'Nungambakkam ', '1', '0 years 4 months', ' ', 1, '2022-10-26 11:32:59', 0, NULL, 0, NULL, 1),
(5076, 10681, 'Nm hospital', 'Help desk', '2020-05-05', 10000.00, '2022-10-15', 10000.00, 'Thanjavur', '1', '2 years 5 months', ' ', 1, '2022-10-26 11:54:06', 0, NULL, 0, NULL, 1),
(5077, 10685, 'Star Health Insurance ', 'officer', '2021-07-19', 15000.00, '2022-08-24', 15000.00, 'T.Nagar', '1', '1 years 1 months', ' Family Problem', 1, '2022-10-26 03:16:38', 0, NULL, 0, NULL, 1),
(5078, 10686, 'Straive Pvt Ltd', 'Consultant MIS', '2022-05-20', 18000.00, '1970-01-01', 18000.00, 'Adyar', '2', '0 years 5 months', ' Project has completed.', 1, '2022-10-27 10:14:36', 1, '2022-10-27 10:15:31', 0, NULL, 1),
(5079, 10688, 'Vizza investment centre ', 'MIS executive ', '2021-09-17', 10000.00, '1970-01-01', 10000.00, 'CIT Nagar', '2', '1 years 1 months', ' My contract is getting to end soon..\nLow salary Package.\n ', 1, '2022-10-27 10:32:48', 0, NULL, 0, NULL, 1),
(5080, 10689, 'Innoviti payment solutions ', 'Software engineer ', '2020-09-09', 22000.00, '2022-10-03', 32000.00, 'Domlur ', '1', '2 years 0 months', ' Better package ', 1, '2022-10-27 11:06:24', 0, NULL, 0, NULL, 1),
(5081, 10690, 'Shuhari tech venture ', 'SME ', '2021-01-02', 30.00, '2022-06-30', 34000.00, 'Indira Nagar ', '1', '1 years 5 months', ' Company shifted to Whitefield ', 1, '2022-10-27 11:45:50', 0, NULL, 0, NULL, 1),
(5082, 10703, 'Caliber interconnect solutions', 'Quality Analyst', '2017-06-15', 180000.00, '2019-02-28', 240000.00, 'Coimbatore', '1', '1 years 8 months', ' Marriage and parenting', 1, '2022-10-27 06:16:35', 0, NULL, 0, NULL, 1),
(5083, 10706, 'Bigdeal', 'Sales', '2021-11-10', 17000.00, '2022-03-21', 17000.00, 'Chennai', '1', '0 years 4 months', ' Less salary ', 1, '2022-10-28 11:35:18', 0, NULL, 0, NULL, 1),
(5084, 10714, 'Igenuine soft solutions', 'Front end developer', '2021-06-01', 17000.00, '2022-07-31', 17000.00, 'Adambakkam', '1', '1 years 4 months', ' Personal issue', 1, '2022-10-28 12:07:41', 0, NULL, 0, NULL, 1),
(5085, 10715, 'Samudrika Marketing Wide Wings', 'Telemarketing ', '2016-01-16', 13000.00, '2022-07-20', 18000.00, 'Tiruvanmaiyur Guindy', '1', '6 years 6 months', ' Salary Issues', 1, '2022-10-28 12:38:03', 0, NULL, 0, NULL, 1),
(5086, 10716, 'maxlife insurance', 'deputy manager', '2021-12-01', 28000.00, '2022-03-15', 28000.00, 'chennai', '1', '0 years 3 months', 'Family problem  ', 1, '2022-10-28 12:56:43', 0, NULL, 0, NULL, 1),
(5087, 10716, 'creating advanced financial solutions ', 'senior relationship manager', '2020-12-01', 22000.00, '2021-10-05', 25000.00, 'chennai', '1', '0 years 10 months', 'Abroad oppurtunity ', 1, '2022-10-28 12:58:34', 0, NULL, 0, NULL, 1),
(5088, 10718, 'Smartlink Telecom Trading LLC ', 'Team Leader ', '2020-12-05', 70000.00, '2022-06-07', 90000.00, 'Dubai', '1', '1 years 6 months', ' Family reasons', 1, '2022-10-28 01:02:30', 0, NULL, 0, NULL, 1),
(5089, 10726, 'TeckZy Research Analytics IT solutions Pvt Ltd ', 'Web Developer & UI UX Designer ', '2021-07-12', 8000.00, '2022-08-31', 14500.00, 'Chennai ', '1', '1 years 1 months', ' Career Growth\n', 1, '2022-10-29 10:21:42', 0, NULL, 0, NULL, 1),
(5090, 10725, 'Cams', 'Vendor', '2021-11-16', 10000.00, '1970-01-01', 11000.00, 'Mounroad', '2', '0 years 11 months', ' Salary low', 1, '2022-10-29 11:56:03', 0, NULL, 0, NULL, 1),
(5091, 10732, 'Hindustani power link', 'Assistant manager', '2022-01-02', 15000.00, '1970-01-01', 15000.00, 'Salam', '2', '0 years 9 months', ' ', 1, '2022-10-29 01:00:38', 0, NULL, 0, NULL, 1),
(5092, 10735, 'Vajura farmers producer company ', 'Chief Executive Officer', '2019-08-01', 30.00, '2021-03-31', 15000.00, 'Narikudi , virudhunagar ', '1', '1 years 7 months', ' It\'s 3 years government. We will completed the project.', 1, '2022-10-29 05:08:37', 0, NULL, 0, NULL, 1),
(5093, 10735, 'Vaibhav Sri solution India private limited ', 'Sales Engineer ', '2021-09-08', 30.00, '2022-05-05', 24000.00, 'Trichy ', '1', '0 years 7 months', 'Unfortunately I got accident I\'m able to rejoin the work immediately. ', 1, '2022-10-29 05:10:23', 0, NULL, 0, NULL, 1),
(5094, 10733, 'Reliance smsl limited', 'sales officer', '2022-01-03', 25000.00, '2022-09-05', 22000.00, 'chennai', '1', '0 years 8 months', 'not responding and more pressure ', 1, '2022-10-31 10:34:17', 0, NULL, 0, NULL, 1),
(5095, 10742, 'amazon', 'sales officer', '2020-03-03', 20000.00, '2021-03-12', 20000.00, 'chennai', '1', '1 years 0 months', ' Not suitable', 1, '2022-10-31 10:52:00', 0, NULL, 0, NULL, 1),
(5096, 10744, 'Deepam Associates Pvt ltd', 'Customer Relationship executive', '2018-05-10', 12000.00, '2019-03-04', 12000.00, 'St.thomas mount', '1', '0 years 9 months', ' Pregnancy due date', 1, '2022-10-31 11:25:24', 1, '2022-10-31 11:29:54', 0, NULL, 0),
(5097, 10744, 'SRM University', 'Technical assistance', '2015-03-06', 8000.00, '2016-03-10', 8000.00, 'Kattangulathur', '1', '1 years 0 months', 'Marriage', 1, '2022-10-31 11:27:54', 0, NULL, 0, NULL, 1),
(5098, 10744, 'Deepam Associates Pvt Ltd', 'Customer Relationship executive', '2018-05-10', 12000.00, '2019-03-04', 12000.00, 'Chennai', '1', '0 years 9 months', 'Maternity', 1, '2022-10-31 11:31:56', 0, NULL, 0, NULL, 1),
(5099, 10752, 'HDFCERGO general insurance company ', 'Custom support Representative ', '2019-06-06', 15000.00, '2021-09-30', 16000.00, 'Guindy ', '1', '2 years 3 months', ' Upgraded my career ', 1, '2022-10-31 12:52:57', 0, NULL, 0, NULL, 1),
(5100, 10754, 'Reliance Nippon life insurance ', 'Sr agency recruitment development manager ', '2022-02-08', 25000.00, '2022-11-07', 25000.00, 'PARRYS ', '1', '0 years 8 months', 'Better opportunity to improve my grade ', 1, '2022-10-31 01:47:17', 0, NULL, 0, NULL, 1),
(5101, 10755, 'Zebronics pvt ltd', 'Operations Executive', '2020-09-01', 25000.00, '2022-07-31', 25000.00, 'Chennai ', '1', '1 years 10 months', ' Night shift Given regularly', 1, '2022-10-31 02:57:00', 0, NULL, 0, NULL, 1),
(5102, 10756, 'Tvs sundaram motors ', 'system admin', '2018-12-20', 2019.00, '2021-01-10', 20000.00, 'chennai', '1', '2 years 0 months', ' ', 1, '2022-10-31 03:26:42', 0, NULL, 0, NULL, 1),
(5103, 10756, 'cams', '  ', '2020-08-01', 2020.00, '2021-12-07', 15000.00, 'chennai', '1', '2 years 2 months', 'career growth', 1, '2022-10-31 03:29:02', 0, NULL, 0, NULL, 1),
(5104, 10734, 'Hcl technologies', 'Customer service rep', '2021-09-22', 15000.00, '2022-07-08', 15000.00, 'Chennai', '1', '0 years 9 months', 'Personal issues', 1, '2022-10-31 07:18:11', 0, NULL, 0, NULL, 1),
(5105, 10769, 'Asta CRS ', 'Us bench sales IT recruiter ', '2022-01-17', 20000.00, '2022-10-25', 20000.00, 'Adayar ', '1', '0 years 9 months', ' Company change the location to the bangalore', 1, '2022-10-31 09:15:10', 0, NULL, 0, NULL, 1),
(5106, 10772, 'star health insurance', 'executive', '2017-06-09', 10000.00, '2022-04-12', 530000.00, 'chennai', '1', '4 years 10 months', 'Got offered from royal sundaram insurance ', 1, '2022-11-01 10:41:15', 0, NULL, 0, NULL, 1),
(5107, 10772, 'royal sundaram general insurance ', 'executive', '2022-04-15', 530000.00, '1970-01-01', 530000.00, 'chennai', '2', '0 years 6 months', 'They gave a False hope Requirement ', 1, '2022-11-01 10:44:07', 0, NULL, 0, NULL, 1),
(5108, 10763, 'Shriram transport finance company limited ', 'Business associate', '2021-08-18', 15000.00, '2022-08-18', 17000.00, 'Bhavani', '1', '1 years 0 months', ' Roll changed', 1, '2022-11-01 11:36:35', 0, NULL, 0, NULL, 1),
(5109, 10763, 'Lantro vision India private limited', 'Site supervisor ', '2018-07-05', 20000.00, '2019-01-15', 20000.00, 'Bangalore', '1', '0 years 6 months', 'Health issues ', 1, '2022-11-01 11:38:39', 0, NULL, 0, NULL, 1),
(5110, 10774, 'Matrimony.com Ltd ', 'Senior Relationship Executive ', '2022-06-30', 15000.00, '2022-10-31', 15000.00, 'Avadi ', '1', '0 years 4 months', ' Traveling issues ', 1, '2022-11-01 02:47:55', 0, NULL, 0, NULL, 1),
(5111, 10777, 'Matrimony.Com', 'Service officer ', '2021-06-30', 11000.00, '2021-11-04', 11000.00, 'RR tower 3,Guindy', '1', '0 years 4 months', ' I Got married so I quit my job for family reasons.', 1, '2022-11-01 08:15:45', 0, NULL, 0, NULL, 1),
(5112, 10787, 'Mahaveer Finance India Limited ', 'Senior Mis Executive ', '2022-08-03', 22000.00, '2022-10-31', 22000.00, 'CHENNAI ', '1', '0 years 2 months', ' My father is passed Away, i take over my family, for my financial depends i resigned my job.', 1, '2022-11-02 12:06:02', 0, NULL, 0, NULL, 1),
(5113, 10787, 'Kotak Mahindra Prime limited ', 'Mis executive ', '2018-12-01', 17600.00, '2022-08-02', 17600.00, 'Chennai ', '1', '3 years 8 months', 'Moving to next level for my career growth ', 1, '2022-11-02 12:07:10', 0, NULL, 0, NULL, 1),
(5114, 10788, 'Mobile solution ', 'Telecaller ', '2021-01-02', 13000.00, '1970-01-01', 16000.00, 'Thirupur ', '2', '1 years 10 months', 'Salary problem ', 1, '2022-11-02 01:08:29', 0, NULL, 0, NULL, 1),
(5115, 10790, 'AL-TECH ENGINEERING AND CONSTRUCTION PRIVATE LIMIT', 'Office Administrator/HR ', '2022-04-01', 20000.00, '2022-10-29', 22000.00, 'Bangalore ', '1', '0 years 6 months', 'Looking forward to work With CAFS', 1, '2022-11-02 04:02:36', 0, NULL, 0, NULL, 1),
(5116, 10791, 'byjus', 'HR team', '2021-07-19', 25000.00, '2022-11-10', 29000.00, 'Nungambakkam ', '1', '1 years 3 months', ' In Byjus i am in off role ', 1, '2022-11-02 04:16:04', 0, NULL, 0, NULL, 1),
(5117, 10778, 'Armsoft tech private limited ', 'Process associate ', '2019-11-04', 14000.00, '1970-01-01', 18000.00, 'Perungudi', '2', '2 years 11 months', ' I need a career growth. So I want to change the profile ', 1, '2022-11-03 11:02:04', 0, NULL, 0, NULL, 1),
(5118, 10827, 'Kreditbee', 'Bde', '2018-12-03', 1.00, '2022-04-30', 25000.00, 'Chennai / banglore', '1', '3 years 4 months', ' Job Nature changed to collection not having growth', 1, '2022-11-03 11:02:07', 0, NULL, 0, NULL, 1),
(5119, 10800, 'GVK EmRI', 'Bpo', '2019-06-05', 10000.00, '2021-10-20', 15000.00, 'Chennai ', '1', '2 years 4 months', ' Salary issue ', 1, '2022-11-03 11:21:34', 0, NULL, 0, NULL, 1),
(5120, 10786, 'Amazon fulfillment center', 'Warehouse executive', '2020-09-19', 15000.00, '2022-01-19', 19500.00, 'Chennai', '1', '1 years 4 months', ' It contract roles', 1, '2022-11-03 11:25:45', 0, NULL, 0, NULL, 1),
(5121, 10786, 'Muthoot financial', 'JRE', '2022-03-10', 19599.00, '2022-08-23', 19500.00, 'Chennai', '1', '0 years 5 months', 'Illegal activity are in side the branch ', 1, '2022-11-03 11:27:32', 0, NULL, 0, NULL, 1),
(5122, 10831, 'PICO PRIDE MTS SOLUTION', 'Telecaller', '2021-11-03', 15000.00, '2022-11-15', 18000.00, 'Kanyakumari', '1', '1 years 0 months', ' Location changed', 1, '2022-11-03 01:38:22', 0, NULL, 0, NULL, 1),
(5123, 10841, 'Sri murugappa steels&hardware', 'Hr manager ', '2022-05-04', 16000.00, '1970-01-01', 16000.00, 'Erode', '2', '0 years 6 months', 'Long  Distance ,', 1, '2022-11-04 10:51:53', 0, NULL, 0, NULL, 1),
(5124, 10846, 'Plaza maintenance and services ltd', 'Hr executive ', '2010-11-02', 10000.00, '1970-01-01', 35000.00, 'Chennai', '2', '12 years 0 months', ' ', 1, '2022-11-04 12:04:35', 0, NULL, 0, NULL, 1),
(5125, 10848, 'Auditor office', 'No', '2021-10-01', 10000.00, '1970-01-01', 12000.00, 'Komarapalayam ', '2', '1 years 1 months', ' Salary is less', 1, '2022-11-04 05:44:05', 0, NULL, 0, NULL, 1),
(5126, 10850, 'Auditor office, phygicart app', 'No', '2022-11-10', 8000.00, '1970-01-01', 11500.00, 'Komarapalayam ', '2', '0 years 0 months', ' Salary less ', 1, '2022-11-04 05:50:12', 0, NULL, 0, NULL, 1),
(5127, 10852, 'Anirudh associates', 'document Collection', '2017-03-04', 15000.00, '2020-09-30', 15000.00, 'chennai', '1', '3 years 6 months', ' No claim ', 1, '2022-11-05 11:18:04', 0, NULL, 0, NULL, 1),
(5128, 10855, 'SBI card\'s', 'Relationship manag1', '2019-11-01', 35000.00, '1970-01-01', 40000.00, 'Chennai', '2', '3 years 0 months', ' Looking for better opportunity', 1, '2022-11-05 02:42:06', 0, NULL, 0, NULL, 1),
(5129, 10856, 'Chennai team lines ', 'customer Relationship Management', '2020-08-06', 15000.00, '2022-09-30', 15000.00, 'tNagar', '1', '2 years 1 months', 'salary issues', 99, '2022-11-05 05:06:06', 0, NULL, 0, NULL, 1),
(5130, 10860, 'Computer Age Management Services ', 'Customer support executive ', '2021-09-20', 11500.00, '1970-01-01', 13500.00, 'Chennai', '2', '1 years 1 months', ' Looking for broader experience ', 1, '2022-11-05 06:35:18', 0, NULL, 0, NULL, 1),
(5131, 10862, 'Mahendra Next Wealth', 'Data Entry operator', '2021-10-05', 9500.00, '2022-11-05', 11000.00, 'Mallasamuduram', '1', '1 years 1 months', ' ', 1, '2022-11-05 08:56:17', 0, NULL, 0, NULL, 1),
(5132, 10871, 'Icici', 'Telecaller', '2015-07-07', 14500.00, '2018-11-07', 14500.00, 'Ambathur', '1', '3 years 4 months', ' ', 1, '2022-11-07 11:44:11', 0, NULL, 0, NULL, 1),
(5133, 10858, 'Zealous services ', 'Customer support executive ', '2017-05-01', 9500.00, '2022-05-02', 15000.00, 'Kodambakkam ', '1', '5 years 0 months', ' Salary ', 1, '2022-11-07 01:15:21', 0, NULL, 0, NULL, 1),
(5134, 10859, 'Act plast paints ', 'Operator ', '2018-12-22', 22122018.00, '2019-06-18', 10000.00, 'Sriperumbudur ', '1', '0 years 5 months', ' ', 1, '2022-11-07 01:49:00', 0, NULL, 0, NULL, 1),
(5135, 10859, 'Sanmina IMS ', 'Production Executive ', '2019-07-04', 4072019.00, '2020-03-23', 15000.00, 'Orakadam ', '1', '0 years 8 months', 'Due lockdown I went home and I work Assistant to my father in real estate business ', 1, '2022-11-07 01:53:15', 0, NULL, 0, NULL, 1),
(5136, 10859, 'Sevika tech ', 'Process Associate ', '2022-02-22', 22022022.00, '2022-10-07', 18000.00, 'Nandhampakkam,chennai ', '1', '0 years 7 months', 'Due to my health issues ', 1, '2022-11-07 01:56:14', 0, NULL, 0, NULL, 1),
(5137, 10880, 'Salcomp manufacturing India Pvt LTD', 'Production line manager', '2021-08-23', 15000.00, '1970-01-01', 18000.00, 'Sriperumpudhur ', '2', '1 years 2 months', ' For Career growth', 1, '2022-11-07 04:04:26', 0, NULL, 0, NULL, 1),
(5138, 10891, 'servtek it pvt ltd', 'mis', '2011-08-01', 12000.00, '2022-03-31', 38000.00, 'chennai', '1', '10 years 7 months', 'Organization moved Far', 1, '2022-11-07 09:19:22', 0, NULL, 0, NULL, 1),
(5139, 10902, 'HDB Financial Services ', 'Tele calling sales executive', '2019-10-23', 10000.00, '2020-10-21', 10000.00, 'Nelson manickam road, near skywalk', '1', '0 years 11 months', ' Salary Issue', 1, '2022-11-07 09:37:01', 0, NULL, 0, NULL, 1),
(5140, 10907, 'Teleperformance ', 'Verifier ', '2020-12-03', 230000.00, '2022-11-02', 250000.00, 'Bangalore ', '1', '1 years 10 months', ' Family shifted to chennai', 1, '2022-11-08 10:05:34', 0, NULL, 0, NULL, 1),
(5141, 10913, 'Shaadi.com', 'Product advisor', '2022-01-11', 111012022.00, '2022-04-13', 18000.00, 'Work from home', '1', '0 years 3 months', ' Health', 1, '2022-11-08 11:31:03', 0, NULL, 0, NULL, 1),
(5142, 10914, 'MSE FINANCIAL SERVICES LTD ', 'Relationship Officer ', '2021-09-01', 12000.00, '2022-10-05', 18000.00, 'MADURAI ', '1', '1 years 1 months', ' This is Commision based Salary..', 1, '2022-11-08 12:17:50', 0, NULL, 0, NULL, 1),
(5143, 10915, 'Just dial ', 'Bpo', '2020-02-17', 15000.00, '2020-11-13', 18000.00, 'Chennai ', '1', '0 years 8 months', ' Personal issue ', 1, '2022-11-08 12:33:04', 0, NULL, 0, NULL, 1),
(5144, 10922, 'KG information systems technology pvt ltd ', 'Customer care executive ', '2021-07-10', 17000.00, '2022-10-10', 15000.00, 'Coimbatore ', '1', '1 years 3 months', ' I got an accident but they not allowed me to take medical leave .and I\'m unable to stand and walk, so I releaved from kgisl. And I would like to build my career in customer service ', 1, '2022-11-08 09:39:10', 0, NULL, 0, NULL, 1),
(5145, 10933, 'Ksn honda', 'Back office executive', '2021-08-09', 13000.00, '2022-09-30', 13000.00, 'Jafferkhanpet', '1', '1 years 1 months', ' Shifted home', 1, '2022-11-09 10:50:46', 0, NULL, 0, NULL, 1),
(5146, 10923, 'HDFC BANK', 'Branch sales officer', '2022-06-27', 18000.00, '2022-10-10', 18000.00, 'Coimbatore', '1', '0 years 3 months', ' ', 1, '2022-11-09 11:50:38', 0, NULL, 0, NULL, 1),
(5147, 10940, 'BSNL ', 'Customer care executive ', '2020-05-03', 20000.00, '2022-04-09', 23500.00, 'Royapuram ', '1', '1 years 11 months', ' Due to lockdown company has stoped their contarct ', 1, '2022-11-09 01:18:12', 0, NULL, 0, NULL, 1),
(5148, 10932, 'Prebo Automative Pvt ', 'Chennai ', '2022-02-02', 14000.00, '2022-11-09', 14000.00, 'Oragadm ', '1', '0 years 9 months', ' My shift time was changed 2 to 10 i cannot pic my last bus.', 1, '2022-11-09 02:40:15', 0, NULL, 0, NULL, 1),
(5149, 10943, 'wipro', 'Mail Room associate', '2022-01-01', 15000.00, '2022-08-31', 16000.00, 'shollinganalore ', '1', '0 years 7 months', ' Contract experie ', 1, '2022-11-09 06:57:45', 0, NULL, 0, NULL, 1),
(5150, 10945, 'Growbit Business Service Private limited ', 'Field service executive ', '2021-08-05', 10.00, '2022-11-01', 20000.00, 'Chennai ', '1', '1 years 2 months', ' There is no team coordination in my team. so i am not comfortable with my job. And my TL also not comfortable for me.', 1, '2022-11-10 10:28:36', 0, NULL, 0, NULL, 1),
(5151, 10963, 'Digiperform technology anna nagar chennai', 'SEO analyst', '2021-10-21', 15000.00, '2022-10-31', 20000.00, 'Chennai', '1', '1 years 0 months', ' ', 1, '2022-11-11 07:37:22', 0, NULL, 0, NULL, 1),
(5152, 10963, 'Digiperform technology anna nagar chennai', 'SEO analyst', '2021-10-11', 15000.00, '2022-09-26', 20000.00, 'Chennai', '1', '0 years 11 months', 'To develop my career and enhance more skills.', 1, '2022-11-11 07:39:20', 0, NULL, 0, NULL, 1),
(5153, 10958, 'Ss industries ', 'Production incharge ', '2020-03-12', 18500.00, '2022-07-12', 18500.00, 'Thirumuvayol ', '1', '2 years 4 months', ' Personal issue', 1, '2022-11-12 10:49:33', 0, NULL, 0, NULL, 1),
(5154, 10968, 'Devsys Embedded Technologies Pvt Ltd', 'Talent Acquisition Executive', '2021-10-10', 245000.00, '2022-11-05', 245000.00, 'Cubbon park, Bangalore', '1', '1 years 0 months', ' Financial Growth, carrier Growth', 1, '2022-11-12 11:01:19', 0, NULL, 0, NULL, 1),
(5155, 10973, 'Godrej', 'Customer care', '2021-01-12', 12000.00, '2021-12-07', 12000.00, 'OMR', '1', '0 years 10 months', ' Salary ', 1, '2022-11-12 01:59:37', 0, NULL, 0, NULL, 1),
(5156, 10771, 'Business ', 'Telecaller', '2022-01-24', 21.00, '1970-01-01', 18000.00, 'Mountroad ', '2', '0 years 9 months', ' I am not satisfied with that salary.... not suitable for my Family.But good company', 1, '2022-11-12 09:16:46', 0, NULL, 0, NULL, 1),
(5157, 10981, 'caddycode software solutions', 'software engineer', '2021-08-26', 1.00, '2022-09-30', 2.50, 'chennai', '1', '1 years 1 months', ' since they changed the techstack from javascript to wordpress which doesn\'t require coding knowledge', 1, '2022-11-13 05:47:34', 0, NULL, 0, NULL, 1),
(5158, 10988, 'Aptus finance', 'Senior customer care Executive', '2021-08-05', 21000.00, '1970-01-01', 26000.00, 'Chennai', '2', '1 years 3 months', ' I want to develop my career in finance concern more and more with respective hikes', 1, '2022-11-13 06:59:34', 0, NULL, 0, NULL, 1),
(5159, 11000, 'Schneider electric pvt ltd', 'AUTOCORE ASSEMBLY ', '2020-05-01', 12000.00, '2021-02-25', 14500.00, 'Poonamalle ', '1', '0 years 9 months', ' ', 1, '2022-11-13 07:36:03', 0, NULL, 0, NULL, 1),
(5160, 11000, 'HDB FINANCIAL SERVICES ', 'Sales executive ', '2021-10-16', 15000.00, '2022-05-26', 16000.00, 'Nungabakkam ', '1', '0 years 7 months', 'Work pressure and lot of travelling issues', 1, '2022-11-13 07:38:09', 0, NULL, 0, NULL, 1),
(5161, 11019, 'Blend labs india ', 'Process associate ', '2021-03-03', 300000.00, '2022-12-15', 300000.00, 'Chennai', '1', '1 years 9 months', ' ', 1, '2022-11-14 11:38:33', 1, '2022-11-14 11:40:27', 0, NULL, 0),
(5162, 11019, 'Blend labs india (Xome)', 'Process associate ', '2020-03-03', 300000.00, '2022-12-15', 300000.00, 'Chennai', '1', '2 years 9 months', 'To change the career path.', 1, '2022-11-14 11:40:21', 0, NULL, 0, NULL, 1),
(5163, 11041, 'Indusind bank ', 'Associate manager ', '2021-09-15', 309000.00, '1970-01-01', 324540.00, 'Chennai', '2', '1 years 1 months', ' Better opportunity ', 1, '2022-11-14 12:53:19', 0, NULL, 0, NULL, 1),
(5164, 11042, 'Milkbasket ', 'Senior administration supervisor ', '2021-10-16', 22000.00, '2022-09-30', 22000.00, 'Chitlapakkam', '1', '0 years 11 months', 'Change in HRM as im a third party labour  and there is no possibilities in making onrole staff ', 1, '2022-11-14 12:53:40', 0, NULL, 0, NULL, 1),
(5165, 11045, 'Namaste credit', 'Junior underwriter', '2022-03-02', 230000.00, '1970-01-01', 230000.00, 'Bangalore', '2', '0 years 8 months', ' ', 1, '2022-11-14 02:08:23', 0, NULL, 0, NULL, 1),
(5166, 11047, 'Valor paytech', 'Junior software developer', '2022-01-06', 245000.00, '2022-10-27', 245000.00, 'Gunde', '1', '0 years 9 months', 'Im doing a internship in reactjs at valor paytech', 1, '2022-11-14 04:26:32', 0, NULL, 0, NULL, 1),
(5167, 11048, 'ING VYSYA  BANK ', 'Senior business development executive ', '2013-01-01', 20000.00, '2015-06-10', 20000.00, 'Chennai ', '1', '2 years 5 months', ' Upgrade designation ', 1, '2022-11-14 04:48:59', 0, NULL, 0, NULL, 1),
(5168, 11048, 'HDFC BANK', 'Senior Branch sales officer', '2015-08-04', 28000.00, '2017-08-14', 28000.00, 'Chennai ', '1', '2 years 0 months', 'Shifted my native place ', 1, '2022-11-14 04:51:55', 1, '2022-11-14 04:52:18', 0, NULL, 1),
(5169, 11072, 'Spark systech ', 'Junior developer ', '2021-10-20', 12000.00, '2022-11-30', 10000.00, 'Kodambakkm Chennai ', '1', '1 years 1 months', ' Careers and my knowledge growth ', 1, '2022-11-15 10:40:28', 0, NULL, 0, NULL, 1),
(5170, 11069, 'Allsec technologies ', 'Hr', '2022-09-14', 20000.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 2 months', ' Have almost 2years experience but getting fresher salary', 1, '2022-11-15 10:57:05', 0, NULL, 0, NULL, 1),
(5171, 11080, 'Hcl Technology ', 'Analyst ', '2021-04-10', 12500.00, '2022-11-15', 18000.00, 'Ambatur ', '1', '1 years 7 months', ' Develop my career growth', 1, '2022-11-15 12:00:06', 0, NULL, 0, NULL, 1),
(5172, 11082, 'bewell pvt ltd', 'senior executive hr', '2018-04-01', 15000.00, '2022-04-30', 41000.00, 'chennai', '1', '4 years 0 months', ' Career growth', 1, '2022-11-15 12:51:33', 0, NULL, 0, NULL, 1),
(5173, 11092, 'ASIT solutions', 'Telecaller', '2021-05-05', 18000.00, '2022-04-01', 23000.00, 'Banglore', '1', '0 years 10 months', ' Family situation', 1, '2022-11-15 09:48:23', 0, NULL, 0, NULL, 1),
(5174, 11092, 'Vinayaga textiles', 'Manger with supervisor', '2022-05-05', 15000.00, '1970-01-01', 25000.00, 'Karur', '2', '0 years 6 months', 'It\'s like an contract based job... ', 1, '2022-11-15 09:51:49', 0, NULL, 0, NULL, 1),
(5175, 11093, 'ICICI Bank ', 'Officer ', '2013-07-23', 15000.00, '2016-01-22', 15000.00, 'Chennai ', '1', '2 years 5 months', ' Higher education ', 1, '2022-11-15 09:54:56', 0, NULL, 0, NULL, 1),
(5176, 11093, 'Medcal consulting private Ltd ', 'Trainee ', '2018-02-01', 15000.00, '2018-07-31', 15000.00, 'Coimbatore ', '1', '0 years 5 months', 'Heath issues ', 1, '2022-11-15 09:57:51', 0, NULL, 0, NULL, 1),
(5177, 11093, 'Renuka and Vishal square ', 'Accounts officer ', '2018-08-06', 10000.00, '2019-04-30', 10000.00, 'Coimbatore ', '1', '0 years 8 months', 'Salary package low ', 1, '2022-11-15 10:00:08', 0, NULL, 0, NULL, 1),
(5178, 11093, 'Empire footwear makers ', 'Supervisor ', '2022-02-01', 11000.00, '2022-05-13', 11000.00, 'Salem ', '1', '0 years 3 months', 'Distance problem ', 1, '2022-11-15 10:03:04', 0, NULL, 0, NULL, 1),
(5179, 11098, 'visionary rcm', 'caller ar', '2019-04-17', 13000.00, '2020-08-21', 16000.00, 'chennai', '1', '1 years 4 months', 'growth and due to night shift ', 1, '2022-11-16 12:16:26', 0, NULL, 0, NULL, 1),
(5180, 11100, 'ison', 'sales executive', '2020-08-13', 15000.00, '2022-10-12', 18000.00, 'chennai', '1', '2 years 1 months', 'growth ', 1, '2022-11-16 12:43:39', 0, NULL, 0, NULL, 1),
(5181, 11102, 'SMART AQUA TECHNOLOGIES', 'MANAGER MARKETING ', '2013-08-08', 8000.00, '2022-09-01', 19000.00, 'CHENNAI', '1', '9 years 0 months', ' Personal problem', 1, '2022-11-16 02:36:55', 0, NULL, 0, NULL, 1),
(5182, 11107, 'HDFC HDB FINANCIAL SERVICES LIMITED ', 'B.com', '2021-09-20', 18000.00, '2022-09-20', 18000.00, 'Bangalore', '1', '1 years 0 months', ' To improve my skills and knowledge ', 1, '2022-11-16 10:53:45', 0, NULL, 0, NULL, 1),
(5183, 11109, 'Aarvi encon pvt ltd', 'hr assistant', '2022-06-01', 15000.00, '2022-10-31', 15000.00, 'chennai', '1', '0 years 4 months', 'MBA final year exams', 1, '2022-11-17 10:32:18', 0, NULL, 0, NULL, 1),
(5184, 11112, 'Cafs', 'Relationship executive ', '2018-07-20', 9000.00, '2020-11-30', 16000.00, 'T Nagar', '1', '2 years 4 months', ' Family problem. ', 1, '2022-11-17 11:30:59', 0, NULL, 0, NULL, 1),
(5185, 11112, 'HDFC SALES', 'Sales officer', '2020-07-09', 16000.00, '2021-01-06', 16000.00, 'Perungudi', '1', '0 years 5 months', 'I met an accident ', 1, '2022-11-17 11:34:42', 0, NULL, 0, NULL, 1),
(5186, 11114, 'Tendigit ', 'Team leader ', '2020-11-17', 18000.00, '2022-11-17', 18000.00, 'Adyar ', '2', '2 years 0 months', ' Salary issues ', 1, '2022-11-17 11:35:30', 0, NULL, 0, NULL, 1),
(5187, 11112, '10 digit', 'Team leader ', '2022-10-01', 15000.00, '2022-11-16', 15000.00, 'Adayar', '1', '0 years 1 months', 'Salary issues, non profiles company ', 1, '2022-11-17 11:37:01', 0, NULL, 0, NULL, 1),
(5188, 11113, 'Tendigit', 'Telecaller', '2021-11-17', 15000.00, '1970-01-01', 17000.00, 'Adyar', '2', '1 years 0 months', ' Salary issues', 1, '2022-11-17 11:41:51', 0, NULL, 0, NULL, 1),
(5189, 11108, 'Micromen Software Solutions Private limited ', 'Report Developer ', '2022-02-14', 12000.00, '2022-11-25', 15000.00, 'Chennai ', '1', '0 years 9 months', ' My Current position is okay for me... But i want to explore  more skills by learning new things for my carrier goals, I decided the change was needed.', 1, '2022-11-17 08:27:00', 0, NULL, 0, NULL, 1),
(5190, 11129, 'CAMS', 'APO', '2019-05-02', 8700.00, '1970-01-01', 12000.00, 'Mount road', '2', '3 years 6 months', 'Improve my self and earn more ', 1, '2022-11-18 11:08:32', 0, NULL, 0, NULL, 1),
(5191, 11143, 'Bajaj finserv', 'Worked as sales executive', '2021-10-07', 13.00, '2022-03-03', 3.00, 'Anna salai', '1', '0 years 4 months', ' ', 1, '2022-11-19 10:29:07', 0, NULL, 0, NULL, 1),
(5192, 11150, 'CAMS', 'Assistant Processing Officer ', '2021-03-25', 10000.00, '2022-08-26', 15000.00, 'Chennai', '1', '1 years 5 months', ' Long Distance ', 1, '2022-11-20 11:55:23', 0, NULL, 0, NULL, 1),
(5193, 11130, 'Organization for Eelam Refugee Rehabilitation ', 'Assistant Accountant ', '2021-02-01', 9000.00, '2022-05-31', 13000.00, 'Egmore ', '1', '1 years 3 months', ' long distance ', 1, '2022-11-21 12:15:03', 0, NULL, 0, NULL, 1),
(5194, 11163, 'Edgar e file solutions private limited', 'Financial associate', '2021-02-01', 145000.00, '1970-01-01', 17000.00, 'Royapettah', '2', '1 years 9 months', ' To change careers\n\nWanting a new challenge\n\nFamily responsibility', 1, '2022-11-21 12:20:37', 0, NULL, 0, NULL, 1),
(5195, 6223, 'Club w holidays ', 'Tnagar', '2022-11-25', 16000.00, '2022-12-14', 15000.00, 'Kasiyar card ', '1', '0 years 0 months', ' ', 1, '2022-11-22 01:26:22', 0, NULL, 0, NULL, 1),
(5196, 9761, 'Bank Bazaar. com', 'Cro', '2019-11-11', 25000.00, '2020-11-19', 25000.00, 'Chennai', '1', '1 years 0 months', ' Married', 1, '2022-11-22 04:09:26', 0, NULL, 0, NULL, 1),
(5197, 11180, 'peeyesyem hyundai', 'sr. accountant', '2015-11-01', 10000.00, '1970-01-01', 27000.00, 'mylapore chennai', '2', '7 years 0 months', ' ', 1, '2022-11-23 10:34:19', 0, NULL, 0, NULL, 1),
(5198, 11182, 'sudhandira devi', 'ccm', '2022-11-10', 18000.00, '1970-01-01', 20000.00, ' years', '2', '0 years 0 months', ' career growth', 1, '2022-11-23 12:42:29', 0, NULL, 0, NULL, 1),
(5199, 11186, 'Cognizant technology solutions ', 'Programmer Analyst Trainee ', '2021-10-30', 26000.00, '2022-11-30', 28000.00, 'Chennai', '1', '1 years 1 months', ' No project work, refused to relieve me from project and project cost cutoff', 1, '2022-11-23 06:27:12', 0, NULL, 0, NULL, 1),
(5200, 11192, 'access health care', 'traniee', '2020-04-04', 14000.00, '2021-01-10', 16000.00, 'chennai', '1', '0 years 9 months', ' due to night shift and health problem', 1, '2022-11-24 10:19:16', 0, NULL, 0, NULL, 1),
(5201, 11190, 'National Polyplast India Pvt Ltd', 'Data management executive', '2021-08-09', 21500.00, '1970-01-01', 23785.00, 'Egmore', '2', '1 years 3 months', ' Financial Issues.', 1, '2022-11-24 10:23:25', 0, NULL, 0, NULL, 1),
(5202, 11196, 'VOLTECH HR services Pvt Ltd ', 'Hr recruiter ', '2022-04-05', 15000.00, '2022-10-15', 15000.00, 'Porur', '1', '0 years 6 months', 'Work Timing issue , fresherly worked in consultancy, and now i want to enter into the organisation that\'s it', 1, '2022-11-24 11:10:32', 0, NULL, 0, NULL, 1),
(5203, 11195, 'Nivea India private limited ', 'Salesman', '2019-07-19', 10000.00, '2021-10-30', 13000.00, 'Saidapet chennai', '1', '2 years 3 months', ' Physical condition in marketing sales was getting worst every month health condition went down so I quit my job', 1, '2022-11-24 11:12:02', 0, NULL, 0, NULL, 1),
(5204, 11198, 'building Blocks soft servi ', ' hr - recruiter', '2022-07-01', 25000.00, '2022-09-12', 25000.00, 'chennai', '1', '0 years 2 months', ' Career growth ', 1, '2022-11-24 11:31:38', 0, NULL, 0, NULL, 1),
(5205, 11201, 'Psrtek', 'Junior Talent acquisition', '2022-05-02', 13000.00, '2022-11-04', 13000.00, 'T. Nagar', '1', '0 years 6 months', ' No recruitment there that why I relieve the company', 1, '2022-11-24 11:45:08', 0, NULL, 0, NULL, 1),
(5206, 11203, 'Kovai palamudir nilayam', 'Junior accountant', '2021-11-24', 13000.00, '2022-11-24', 13000.00, 'Aminjikarai', '1', '1 years 0 months', ' I have seven months experience after I joined tally course', 1, '2022-11-24 02:19:52', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5207, 11208, 'neutral solar', 'chengalpattu', '2021-10-25', 15000.00, '2022-10-11', 15000.00, 'chennai', '1', '0 years 11 months', ' Not interest to work their field', 1, '2022-11-25 11:07:11', 0, NULL, 0, NULL, 1),
(5208, 11209, 'Quess crop limited ', 'Sales Executive ', '2021-11-01', 15000.00, '2022-09-15', 17000.00, 'Chennai ', '1', '0 years 10 months', ' ', 1, '2022-11-25 11:59:20', 0, NULL, 0, NULL, 1),
(5209, 11213, 'Foxconn Hon Hai Technology ', 'Employee Relation ', '2022-07-09', 16000.00, '2022-11-11', 16000.00, 'Sunguvarchathiram ', '1', '0 years 4 months', ' Health issue ', 1, '2022-11-25 12:29:05', 0, NULL, 0, NULL, 1),
(5210, 11211, 'Infoservice digital india pvt ltd', 'Senior mis', '2021-12-23', 1.00, '2022-12-10', 35000.00, 'Chennai ', '1', '0 years 11 months', ' Heath issues', 1, '2022-11-25 02:40:41', 0, NULL, 0, NULL, 1),
(5211, 11215, 'Home inovations', 'Sales Executive ', '2022-09-12', 12000.00, '2022-11-10', 12000.00, 'Chennai ', '1', '0 years 1 months', ' ', 1, '2022-11-25 02:47:49', 0, NULL, 0, NULL, 1),
(5212, 11214, 'Om innovation ', 'Sales', '2022-09-13', 10000.00, '2022-11-11', 12000.00, 'Chetpet', '1', '0 years 1 months', 'Salary issues', 1, '2022-11-25 02:57:14', 0, NULL, 0, NULL, 1),
(5213, 11224, 'Dugar finance and investments Ltd', 'Payment disbursal', '2021-01-11', 10000.00, '2022-11-01', 13000.00, 'Egmore', '1', '1 years 9 months', ' Personal reason', 1, '2022-11-28 10:59:27', 0, NULL, 0, NULL, 1),
(5214, 11231, 'First source solution limited Chennai ', 'Customer service associate ', '2021-09-23', 15000.00, '2022-07-20', 15000.00, 'Navallur Chennai ', '1', '0 years 9 months', ' ', 1, '2022-11-28 11:24:22', 0, NULL, 0, NULL, 1),
(5215, 11235, 'Vimbri media Pvt ltd', 'Sales executive ', '2021-01-17', 20000.00, '2021-04-17', 20000.00, 'Teynampet ', '1', '0 years 3 months', 'Transport facility not available  on my area', 1, '2022-11-28 11:40:03', 0, NULL, 0, NULL, 1),
(5216, 11236, 'Bakkiyaraj ', 'Aduit ', '2014-01-10', 20000.00, '2020-07-17', 20000.00, 'Chennai ', '1', '8 years 10 months', ' ', 1, '2022-11-28 11:42:59', 0, NULL, 0, NULL, 1),
(5217, 11238, '5year', 'Aduit ', '2014-01-10', 20000.00, '2020-07-17', 20000.00, 'Chennai ', '1', '6 years 6 months', ' COVID ', 1, '2022-11-28 12:01:11', 0, NULL, 0, NULL, 1),
(5218, 11242, 'Bro mobile trading private ltd', 'Mis executive ', '2021-11-22', 18000.00, '1970-01-01', 22500.00, 'Kandhanchavadi', '2', '1 years 0 months', 'Want to improve my Carrier in next Level also improve my knowledge in different sector', 1, '2022-11-28 01:07:57', 0, NULL, 0, NULL, 1),
(5219, 11241, 'Andro Mada', 'Telecaller ', '2022-08-01', 15000.00, '2022-11-25', 15000.00, 'Nuganbakkam', '1', '0 years 3 months', ' ', 1, '2022-11-28 01:15:06', 0, NULL, 0, NULL, 1),
(5220, 11245, 'Teleperformance', 'Technical support grade 1', '2021-10-01', 23000.00, '2022-11-01', 23000.00, 'Jaipur', '1', '1 years 1 months', ' Family issue ', 1, '2022-11-28 06:36:15', 0, NULL, 0, NULL, 1),
(5221, 11246, 'Adtiya birla Fashion retail (Pantaloons )', 'Sales executive ', '2021-01-01', 10000.00, '2021-07-30', 12000.00, 'Kanchipuram', '1', '0 years 6 months', ' ', 1, '2022-11-28 07:29:53', 0, NULL, 0, NULL, 1),
(5222, 11246, 'Joyalukkas Indian private limited ', 'Sales executive ', '2021-08-09', 18000.00, '2022-05-30', 20000.00, 'Kanchipuram', '1', '0 years 9 months', 'Company given field work like field officer role', 1, '2022-11-28 07:32:47', 0, NULL, 0, NULL, 1),
(5223, 11246, 'Bankbazaar', 'CRO Customer relationship officer ', '2022-06-06', 23000.00, '1970-01-01', 23000.00, 'Chennai (ambattur)', '2', '0 years 5 months', 'No growth ', 1, '2022-11-28 07:37:50', 0, NULL, 0, NULL, 1),
(5224, 11248, 'Synamen', 'Full stack Developer ', '2023-02-08', 10000.00, '1970-01-01', 120000.00, 'Chennai', '2', '0 years 2 months', ' Environmental problem and salary', 1, '2022-11-28 09:22:37', 0, NULL, 0, NULL, 1),
(5225, 11250, 'comodo security solutions', 'customer support', '2018-11-26', 14500.00, '2019-10-25', 14500.00, 'vadapalani', '1', '0 years 10 months', ' Process closed', 1, '2022-11-29 10:49:53', 0, NULL, 0, NULL, 1),
(5226, 11250, 'staffocux total solutions', 'telecaller', '2021-03-04', 18000.00, '2022-09-22', 18000.00, 'st thomas mount', '1', '1 years 6 months', 'Irregular payments ', 1, '2022-11-29 10:52:11', 0, NULL, 0, NULL, 1),
(5227, 11252, 'Innovsource service pvt LTD ', 'Sales tellecalling ', '2022-06-08', 14500.00, '2022-11-05', 14500.00, 'Koyembedu', '1', '0 years 4 months', ' Time management ', 1, '2022-11-29 10:56:11', 0, NULL, 0, NULL, 1),
(5228, 11254, 'Sedasollution', 'Collection ', '2020-03-29', 10000.00, '2021-11-29', 12000.00, 'Aminjikarai ', '1', '1 years 8 months', ' Salary issue', 1, '2022-11-29 11:27:34', 0, NULL, 0, NULL, 1),
(5229, 11257, 'Indiafilings Private limited ', 'HR Associate ', '2022-02-16', 15000.00, '2022-07-12', 15000.00, 'Guindy ', '1', '0 years 4 months', ' Career Growth ', 1, '2022-11-29 12:32:01', 0, NULL, 0, NULL, 1),
(5230, 11258, 'Accenture solutions', 'Process executive', '2018-04-23', 11000.00, '2019-10-09', 11000.00, 'Sozhinganallur', '1', '1 years 5 months', ' Night shift ', 1, '2022-11-29 12:43:03', 0, NULL, 0, NULL, 1),
(5231, 11258, 'HDFC Bank pvt ltd', 'Regional coordinator ', '2020-01-22', 15000.00, '2021-10-31', 12500.00, 'Arumbakkam', '1', '1 years 9 months', 'Reduce salary for covid', 1, '2022-11-29 12:53:26', 0, NULL, 0, NULL, 1),
(5232, 11269, 'fiesta car rentels and logistics pvt Limited', 'mis executive ', '2017-03-23', 10000.00, '2019-11-25', 14000.00, 'pallikaranai', '1', '2 years 8 months', ' ', 1, '2022-11-30 10:42:11', 0, NULL, 0, NULL, 1),
(5233, 11274, 'Team lease ', 'Telecalling executive', '2022-01-31', 15000.00, '2022-11-30', 15000.00, 'Cunnigham road shivajinagar', '2', '0 years 9 months', ' ', 1, '2022-11-30 11:53:49', 0, NULL, 0, NULL, 1),
(5234, 11277, 'HDB fiancial services', 'Telecaller', '2020-11-24', 2020.00, '2022-10-11', 1.00, 'Nukambakam', '1', '1 years 10 months', ' Next level  growth and  good performance', 1, '2022-11-30 12:44:06', 0, NULL, 0, NULL, 1),
(5235, 11281, 'Star Health Insurance ', 'Tele Sales officers ', '2020-10-11', 10000.00, '2021-03-30', 10000.00, 'Kodambakkam ', '1', '0 years 5 months', ' Higher education ', 1, '2022-11-30 03:01:45', 0, NULL, 0, NULL, 1),
(5236, 11280, 'Prasad', 'Billing', '2022-01-04', 10000.00, '2022-10-01', 14000.00, 'Annanagar ', '1', '0 years 8 months', ' Part time ', 1, '2022-11-30 03:03:09', 0, NULL, 0, NULL, 1),
(5237, 11282, 'Team lease service limited', 'Telle caller', '2022-06-25', 15000.00, '1970-01-01', 18000.00, 'Chennai', '2', '0 years 5 months', 'Health issues', 1, '2022-11-30 03:32:38', 0, NULL, 0, NULL, 1),
(5238, 11284, 'Absolute Tech & HR Solutions ', 'HR Recruiter ', '2022-01-03', 14000.00, '2022-11-30', 14000.00, 'Chennai ', '1', '0 years 10 months', ' Company voluntarily winded. ', 1, '2022-11-30 07:36:53', 0, NULL, 0, NULL, 1),
(5239, 11290, 'Axis securities Ltd ', 'Executive ', '2018-11-22', 15000.00, '2021-03-16', 15000.00, 'Kodambakam ', '1', '2 years 3 months', ' Not proper maintenance and salary hike', 1, '2022-12-01 10:41:50', 0, NULL, 0, NULL, 1),
(5240, 11290, 'Axis securities Ltd ', 'Executive ', '2018-11-22', 15000.00, '2021-03-16', 15000.00, 'Kodambakam ', '1', '2 years 3 months', 'Salary hike and not having proper maintenance ', 1, '2022-12-01 10:43:50', 0, NULL, 0, NULL, 1),
(5241, 11291, 'abt maruti', 'customer care executive', '2021-09-01', 16000.00, '2022-09-12', 16000.00, 'guindy', '1', '1 years 0 months', ' ', 1, '2022-12-01 11:08:13', 0, NULL, 0, NULL, 1),
(5242, 11297, 'India Post ', 'Postman ', '2019-06-01', 150000.00, '1970-01-01', 17000.00, 'Vadachennimalai Attur', '2', '3 years 5 months', ' It\'s a offrole job. So I search for the Onrole job', 1, '2022-12-01 01:07:27', 0, NULL, 0, NULL, 1),
(5243, 11298, 'Edgar Efile solutions private limited', 'Financial analyst', '2019-05-05', 20000.00, '1970-01-01', 3.00, 'Thousands lights', '2', '3 years 6 months', ' Long distance', 1, '2022-12-01 01:33:19', 0, NULL, 0, NULL, 1),
(5244, 11301, 'RPM VFX STUDIOS ', 'Content writer Business development executive ', '2020-10-01', 18000.00, '1970-01-01', 25000.00, 'Chennai', '2', '2 years 2 months', ' ', 1, '2022-12-01 04:30:50', 0, NULL, 0, NULL, 1),
(5245, 11303, 'vizza insurance service', 'team leader', '2021-01-18', 15000.00, '2022-11-26', 18000.00, 'chennai', '1', '1 years 10 months', 'growth ', 1, '2022-12-01 06:39:10', 0, NULL, 0, NULL, 1),
(5246, 11304, 'arc bikes', 'sales executive', '2021-08-13', 15000.00, '2022-10-28', 16000.00, 'chennai', '1', '1 years 2 months', 'growth ', 1, '2022-12-01 06:45:15', 0, NULL, 0, NULL, 1),
(5247, 11312, 'Rajagopal and Raghunath advocates ', 'Administrator ', '2021-09-27', 140000.00, '1970-01-01', 160000.00, 'Gopalapuram', '2', '1 years 2 months', ' Leaving for a career growth ', 1, '2022-12-02 11:05:52', 0, NULL, 0, NULL, 1),
(5248, 11313, 'hdb financial services', 'customer repayment pouch', '2019-11-01', 14200.00, '1970-01-01', 14200.00, 'chennai', '2', '3 years 1 months', ' ', 1, '2022-12-02 12:02:24', 0, NULL, 0, NULL, 1),
(5249, 11314, 'Ashoke Leyland ', 'Team leader', '2016-02-11', 20000.00, '2019-12-30', 25000.00, 'Coimbatore ', '1', '3 years 10 months', 'Abroad job', 1, '2022-12-02 12:08:04', 0, NULL, 0, NULL, 1),
(5250, 11316, 'manappuram finance limited ', 'cashier ', '2022-06-01', 15000.00, '1970-01-01', 15000.00, 'madipakkam', '2', '0 years 6 months', ' ', 1, '2022-12-02 12:15:35', 0, NULL, 0, NULL, 1),
(5251, 11317, 'hdb financial services', 'senior associate', '2022-03-11', 16500.00, '1970-01-01', 16500.00, 'chennai', '2', '0 years 8 months', ' ', 1, '2022-12-02 12:20:00', 0, NULL, 0, NULL, 1),
(5252, 11318, 'Sales', 'Counter sales', '2020-07-15', 15000.00, '2021-07-15', 25000.00, 'Saidapet', '1', '1 years 0 months', ' Mom health issues so I relieve the job', 1, '2022-12-02 12:54:15', 0, NULL, 0, NULL, 1),
(5253, 11318, 'Sales', 'Business development executive', '2022-08-26', 25000.00, '2022-11-05', 25000.00, 'Pallavakam', '1', '0 years 2 months', 'Personal issues', 1, '2022-12-02 12:56:50', 0, NULL, 0, NULL, 1),
(5254, 7916, 'Goldmine Infotech', 'UI developer ', '2022-04-20', 12000.00, '1970-01-01', 12000.00, 'T.Nagar Chennai ', '2', '0 years 7 months', ' Environmental problem and Salary ', 1, '2022-12-03 10:01:35', 0, NULL, 0, NULL, 1),
(5255, 11321, 'Cedar business solution ', 'Telecalling ', '2022-11-10', 15000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '0 years 0 months', ' I expect pvt ltd company, but wright now working in agency ', 1, '2022-12-03 10:52:31', 0, NULL, 0, NULL, 1),
(5256, 11322, 'Dewborn speciality chemicals pvt ltd ', 'Service engineer ', '2022-03-14', 15000.00, '2022-11-30', 15000.00, 'Chennai', '1', '0 years 8 months', ' Low salary ', 1, '2022-12-03 10:56:43', 0, NULL, 0, NULL, 1),
(5257, 11323, 'Logisall India pvt Ltd ', 'Manpower supervisor ', '2021-06-10', 18000.00, '2022-11-21', 18000.00, 'Ponnamallee ', '1', '1 years 5 months', ' Traveling issues ', 1, '2022-12-03 11:10:26', 0, NULL, 0, NULL, 1),
(5258, 11324, 'Itc', 'Sales', '2022-06-18', 18000.00, '1970-01-01', 18000.00, 'Arumbakkam', '2', '0 years 5 months', ' Personal reason ', 1, '2022-12-03 12:19:58', 0, NULL, 0, NULL, 1),
(5259, 11325, 'Just dial', 'Sales manager', '2021-11-03', 15000.00, '2022-06-03', 23000.00, 'Saidapet', '1', '0 years 7 months', ' Due to accident', 1, '2022-12-03 12:31:09', 0, NULL, 0, NULL, 1),
(5260, 11326, 'Freelancer ', 'Front end developer ', '2022-05-01', 8000.00, '1970-01-01', 10000.00, 'Chennai ', '2', '0 years 7 months', ' Not a fixed organization ', 1, '2022-12-03 01:41:28', 0, NULL, 0, NULL, 1),
(5261, 11329, 'FA software services', 'Fullstack developer ', '2022-05-09', 135000.00, '1970-01-01', 13500.00, 'Chennai', '2', '0 years 6 months', ' ReactJs project are not available', 1, '2022-12-03 03:36:26', 0, NULL, 0, NULL, 1),
(5262, 11341, 'Tvs Credit Service Ltd', 'Executive ', '2021-01-08', 1.55, '1970-01-01', 1.66, 'Ekkattuthangal', '2', '1 years 10 months', 'Lowest salary', 1, '2022-12-05 11:23:01', 0, NULL, 0, NULL, 1),
(5263, 11340, 'hdb financial services ', 'quality checking ', '2019-05-06', 10.80, '2022-08-24', 15000.00, 'chennai', '1', '3 years 3 months', ' ', 1, '2022-12-05 11:45:59', 0, NULL, 0, NULL, 1),
(5264, 11343, 'Mech honda', 'Accounted ', '2020-01-11', 1.00, '2021-04-03', 8000.00, 'Thanjavur', '1', '1 years 2 months', ' Govt job', 1, '2022-12-05 12:38:38', 0, NULL, 0, NULL, 1),
(5265, 11344, 'Thinksynq solutions Pvt Ltd ', 'Telecaller ', '2021-02-23', 11000.00, '2022-11-30', 15000.00, 'Chennai ', '1', '1 years 9 months', ' ', 1, '2022-12-05 12:56:35', 0, NULL, 0, NULL, 1),
(5266, 11350, 'Mohammed Azeezur Rahman ', 'Sale ', '2019-07-20', 15000.00, '2022-12-06', 18000.00, 'Tnagar', '1', '3 years 4 months', ' ', 1, '2022-12-06 10:19:12', 0, NULL, 0, NULL, 1),
(5267, 11351, 'Antway fashion ', 'HR ASSIST ', '2019-10-06', 12000.00, '1970-01-01', 17000.00, 'Egmore', '2', '3 years 2 months', ' Due to covid ', 1, '2022-12-06 11:01:11', 0, NULL, 0, NULL, 1),
(5268, 11352, 'HDB financial services ', 'Telecaller', '2021-02-03', 10500.00, '2022-03-01', 10500.00, 'Chennai ', '1', '1 years 0 months', 'Family issues ', 1, '2022-12-06 11:22:05', 0, NULL, 0, NULL, 1),
(5269, 11358, 'Sj Air conditioner ', 'Customer support ', '2017-03-10', 18000.00, '2022-10-18', 20000.00, 'Chennai ', '1', '5 years 7 months', ' ', 1, '2022-12-06 03:01:21', 0, NULL, 0, NULL, 1),
(5270, 11359, 'tech mahindra business services', 'customer support', '2021-06-03', 22000.00, '2022-01-06', 22000.00, 'shollinganallur', '1', '0 years 7 months', ' Process closed', 1, '2022-12-06 04:35:04', 0, NULL, 0, NULL, 1),
(5271, 11359, 'magus customer dialog', 'customer support', '2020-03-03', 10000.00, '2020-09-15', 10000.00, 'chennai', '1', '0 years 6 months', 'Process closed', 1, '2022-12-06 04:37:06', 0, NULL, 0, NULL, 1),
(5272, 11359, 'rajappa impex', 'admin', '2019-01-01', 12000.00, '2020-02-06', 12000.00, 'chennai', '1', '1 years 1 months', 'More expo ', 1, '2022-12-06 04:38:38', 0, NULL, 0, NULL, 1),
(5273, 11360, 'diamondpick', 'IT Recruiter', '2022-02-07', 18847.00, '2022-09-14', 18847.00, 'chennai', '1', '0 years 7 months', ' pushing To uS IT Recruiter as a night shift', 1, '2022-12-06 05:01:01', 0, NULL, 0, NULL, 1),
(5274, 11360, 'hdb financial services', 'risk analyst', '2021-03-02', 15733.00, '2022-02-05', 15733.00, 'chennai', '1', '0 years 11 months', 'applying for masters degree Mba hrm  so i want to change my field to hr', 1, '2022-12-06 05:03:55', 0, NULL, 0, NULL, 1),
(5275, 11361, 'Eximio', 'Non voice', '2022-02-07', 10000.00, '2022-12-07', 10000.00, 'Ambattur', '1', '0 years 10 months', ' Health issue', 1, '2022-12-07 10:25:52', 0, NULL, 0, NULL, 1),
(5276, 11363, 'Bajaj finance', 'Sales executive ', '2021-01-06', 20000.00, '2021-08-11', 20000.00, 'Chennai', '1', '0 years 7 months', ' ', 1, '2022-12-07 10:46:34', 0, NULL, 0, NULL, 1),
(5277, 11362, 'matrimony.com limited', 'backend of customer support', '2018-12-10', 9500.00, '2022-12-20', 15000.00, 'guindy Chennai ', '1', '4 years 0 months', 'I need to grow up the carrier and based on salary', 1, '2022-12-07 10:54:51', 0, NULL, 0, NULL, 1),
(5278, 11365, 'Xplore tech private limited ', 'Customer support ', '2021-11-25', 15000.00, '2022-11-01', 15000.00, 'Chennai ', '1', '0 years 11 months', ' Salary expectations ', 1, '2022-12-07 11:06:54', 0, NULL, 0, NULL, 1),
(5279, 11370, 'Diamond pick', 'HR executive ', '2021-02-07', 18000.00, '2021-09-14', 18000.00, 'Chennai ', '1', '0 years 7 months', ' Pushing upto night shift', 1, '2022-12-07 12:38:48', 1, '2022-12-07 12:42:19', 0, NULL, 0),
(5280, 11370, 'Diamondpick ', 'HR executive ', '2022-02-07', 18000.00, '2022-09-14', 18000.00, 'Chennai', '1', '0 years 7 months', 'Pushing upto nightshift ', 1, '2022-12-07 12:40:42', 1, '2022-12-07 12:42:11', 0, NULL, 0),
(5281, 11370, 'Diamondpick', 'HR executive ', '2022-02-07', 18000.00, '2022-09-14', 18000.00, 'Chennai ', '1', '0 years 7 months', 'Pushing up-to night shift ', 1, '2022-12-07 12:42:22', 0, NULL, 0, NULL, 1),
(5282, 11371, 'Threyes srinisons harness pvt Ltd ', 'Assistant accountant', '2022-08-01', 18000.00, '1970-01-01', 18000.00, 'sriperumbudur', '2', '0 years 4 months', ' Low salary ', 1, '2022-12-07 02:15:16', 0, NULL, 0, NULL, 1),
(5283, 11371, 'Sky power tek pvt Ltd ', 'Accounts and admin', '2020-12-15', 10000.00, '2022-07-31', 13500.00, 'Gunidy', '1', '1 years 7 months', 'Need a change ', 1, '2022-12-07 02:16:33', 0, NULL, 0, NULL, 1),
(5284, 11374, 'Hdfc bank ', 'Sales officer ', '2021-09-06', 15000.00, '2022-05-31', 15000.00, 'Selaiyur ', '1', '0 years 8 months', ' ', 1, '2022-12-08 11:21:19', 0, NULL, 0, NULL, 1),
(5285, 11375, 'Real tax services ', 'Accountant ', '2021-11-01', 8000.00, '2022-11-30', 12000.00, 'Thuraipakkam ', '1', '1 years 0 months', ' Salary expectation', 1, '2022-12-08 11:23:16', 0, NULL, 0, NULL, 1),
(5286, 11378, 'joyice info tech', 'digital formating associate', '2022-08-01', 12000.00, '1970-01-01', 12000.00, 'chennai', '2', '0 years 4 months', ' ', 1, '2022-12-08 12:00:12', 0, NULL, 0, NULL, 1),
(5287, 11381, 'Endoor sales and service ', 'Business development lead ', '2021-05-12', 20.00, '1970-01-01', 24000.00, 'Porur ', '2', '1 years 6 months', ' Travel ', 1, '2022-12-08 12:57:27', 0, NULL, 0, NULL, 1),
(5288, 11382, 'Hdb finance', 'BDR', '2020-12-08', 15500.00, '2022-03-01', 15000.00, 'Chennai', '1', '1 years 2 months', ' ', 1, '2022-12-08 04:58:08', 0, NULL, 0, NULL, 1),
(5289, 11398, 'Abservetech Private Limited', 'Php developer', '2021-04-16', 12000.00, '2021-08-31', 12000.00, 'Madurai', '1', '0 years 4 months', ' No project', 1, '2022-12-10 12:00:35', 0, NULL, 0, NULL, 1),
(5290, 11396, 'NTT Data Services ', 'HC and Insurance Senior Representative ', '2020-04-01', 13000.00, '2022-08-06', 15000.00, 'Coimbatore ', '1', '2 years 4 months', ' Financial and looking for career development ', 1, '2022-12-10 12:12:21', 0, NULL, 0, NULL, 1),
(5291, 11399, 'fiit formacion pvt ltd', 'trainee', '2021-07-01', 12000.00, '2022-03-31', 12000.00, 'chennai', '1', '0 years 9 months', ' ', 1, '2022-12-10 04:33:47', 0, NULL, 0, NULL, 1),
(5292, 11404, 'Genpact', 'Lead consultant', '2021-11-11', 40000.00, '2022-09-21', 1.00, 'Chennai', '1', '0 years 10 months', ' ', 1, '2022-12-10 08:01:05', 0, NULL, 0, NULL, 1),
(5293, 11412, 'DMart', 'Sales Associate ', '2020-10-01', 9500.00, '2022-06-01', 9500.00, 'Madurai ', '1', '1 years 8 months', 'Salary issue ', 1, '2022-12-12 11:32:58', 0, NULL, 0, NULL, 1),
(5294, 11413, 'Golden Enterprises ', 'Telecaller ', '2021-12-21', 19000.00, '2022-07-30', 20000.00, 'Chennai ', '1', '0 years 7 months', ' Health issues ', 1, '2022-12-12 11:46:25', 0, NULL, 0, NULL, 1),
(5295, 11421, 'Tata aia life insurance ', 'Relationship manager ', '2020-12-03', 22000.00, '2022-04-05', 25000.00, 'Siliguri, west Bengal ', '1', '1 years 4 months', ' Marriage in other state so i couldn\'t continue this job', 1, '2022-12-12 07:23:29', 0, NULL, 0, NULL, 1),
(5296, 11421, 'Tata Aia life insurance ', 'RM', '2020-12-03', 18000.00, '2022-04-05', 22000.00, 'Siliguri ', '1', '1 years 4 months', 'Suddenly marriage in other state.. i couldn\'t continue this job', 1, '2022-12-12 07:26:35', 0, NULL, 0, NULL, 1),
(5297, 11423, 'Altruist technology private ltd', 'Mis', '2021-12-13', 10500.00, '2022-04-12', 10500.00, 'Perungudi ', '1', '0 years 3 months', ' Shift timing issue ', 1, '2022-12-13 10:55:13', 0, NULL, 0, NULL, 1),
(5298, 11426, 'Appasamy Associate Private limited ', 'Data analyst ', '2019-08-01', 8000.00, '2022-12-13', 14000.00, 'Chennai ', '2', '3 years 4 months', ' Unsatisfied with My current Package ', 1, '2022-12-13 11:05:47', 0, NULL, 0, NULL, 1),
(5299, 11425, 'Appasamy associates pvt ltd ', 'Data analyst ', '2019-07-29', 8000.00, '1970-01-01', 14000.00, 'Chennai ', '2', '3 years 4 months', ' Unsatisfied salary', 1, '2022-12-13 11:06:01', 0, NULL, 0, NULL, 1),
(5300, 11428, 'Varanta race ', 'CRM', '2021-11-16', 26000.00, '2022-11-30', 26000.00, 'Chennai ', '1', '1 years 0 months', ' ', 1, '2022-12-13 11:38:24', 0, NULL, 0, NULL, 1),
(5301, 11405, 'Kun Hyundai ', 'Sme', '2022-07-04', 15000.00, '2022-12-12', 13000.00, 'Adyar ', '1', '0 years 5 months', ' Voice process my work so I am not comfortable voice so I am reliveving ', 1, '2022-12-13 12:12:47', 0, NULL, 0, NULL, 1),
(5302, 11430, 'Kun hyundai ', 'CRE ', '2022-04-06', 13000.00, '2022-11-08', 13000.00, 'Adyar ', '1', '0 years 7 months', 'Searching for non voice', 1, '2022-12-13 12:26:38', 0, NULL, 0, NULL, 1),
(5303, 11432, 'Diamondpick Pvt. Ltd', 'Junior Executive - Recruitment', '2021-10-25', 18800.00, '2022-09-15', 18800.00, 'Chennai', '1', '0 years 10 months', ' For better opportunity.', 1, '2022-12-13 06:49:08', 0, NULL, 0, NULL, 1),
(5304, 11434, 'BBS', 'AR Executive', '2021-08-16', 13000.00, '2022-11-30', 21000.00, 'Thanjavur', '1', '1 years 3 months', ' Health issues due to night shifts', 1, '2022-12-13 07:12:07', 0, NULL, 0, NULL, 1),
(5305, 11441, 'Raising star mobiLE INDIA PVT', 'Line leader', '2018-06-14', 10.00, '2019-05-16', 13000.00, 'Chennai', '1', '0 years 11 months', ' Health issue', 1, '2022-12-14 11:59:56', 0, NULL, 0, NULL, 1),
(5306, 11443, 'OTO Capital ', 'Pre - sale Executive ', '2021-08-27', 20000.00, '2022-07-29', 24000.00, 'Bangalore ', '1', '0 years 11 months', ' Looking better opportunity ', 1, '2022-12-14 12:08:07', 0, NULL, 0, NULL, 1),
(5307, 11446, 'Shriram city union finance limited', 'Products executive', '2021-04-04', 15000.00, '2022-09-08', 15000.00, 'Adyar', '1', '1 years 5 months', ' ', 1, '2022-12-14 04:56:19', 0, NULL, 0, NULL, 1),
(5308, 11447, 'lennox india technology center pvt ltd', 'trainee', '2021-02-15', 10000.00, '2022-01-07', 15000.00, 'chennai', '1', '0 years 10 months', ' ', 1, '2022-12-14 06:24:09', 0, NULL, 0, NULL, 1),
(5309, 11447, 'epowerx learning technologies pvt ltd', 'sales engineer', '2022-10-19', 6330.00, '2022-12-05', 28785.00, 'chennai', '1', '0 years 1 months', 'personal grounds', 1, '2022-12-14 06:25:34', 0, NULL, 0, NULL, 1),
(5310, 11456, 'Anai and Alaina trust', 'Telecaller', '2021-11-05', 8000.00, '2022-09-01', 8000.00, 'Ajax', '1', '0 years 9 months', ' Salary issue', 1, '2022-12-15 12:18:01', 0, NULL, 0, NULL, 1),
(5311, 11463, 'Stellar innovations ', 'Process Assitant', '2021-11-01', 13000.00, '2022-11-04', 14500.00, 'Sholinghur Ranipet Dt.', '1', '1 years 0 months', ' Due to low volume of orders and process was changed', 1, '2022-12-16 11:11:55', 0, NULL, 0, NULL, 1),
(5312, 11475, 'bitzkart enterprises', 'sales person', '2021-01-12', 20000.00, '2022-12-01', 20000.00, 'chennai', '1', '1 years 10 months', ' ', 1, '2022-12-16 05:08:23', 0, NULL, 0, NULL, 1),
(5313, 11473, 'infosys bpm', 'process executive', '2022-07-28', 20000.00, '2022-10-28', 20000.00, 'chennai', '1', '0 years 3 months', ' ', 1, '2022-12-17 11:42:31', 0, NULL, 0, NULL, 1),
(5314, 11461, 'Sk frontline ', 'HR executive ', '2022-09-20', 15000.00, '2022-12-17', 15000.00, 'Guindy', '1', '0 years 2 months', ' Salary issue ', 1, '2022-12-17 01:24:50', 0, NULL, 0, NULL, 1),
(5315, 11482, 'flinto learning solutions pvt ltd', 'senior customer associate', '2016-01-11', 216000.00, '2022-12-31', 484000.00, 'chennai', '1', '6 years 11 months', ' CURRENT PROCESS IS CLOSING', 1, '2022-12-17 04:09:05', 0, NULL, 0, NULL, 1),
(5316, 11483, 'Hitachi payment services ', 'Senior executive ', '2018-12-11', 12000.00, '2022-11-04', 14500.00, 'Chennai', '1', '3 years 10 months', 'Due to personal ', 1, '2022-12-17 04:10:31', 0, NULL, 0, NULL, 1),
(5317, 11486, 'DTDC courier ', 'Courier delivery ', '2021-10-01', 10000.00, '2022-04-14', 13000.00, 'Balaji nagar mc road thanjavur ', '1', '0 years 6 months', ' Some personal reasons ', 1, '2022-12-19 09:26:20', 0, NULL, 0, NULL, 1),
(5318, 11491, 'T.nagar cooperative Bank ', 'Clerk ', '2018-10-05', 9500.00, '2020-10-28', 10850.00, 'T nagar ', '1', '2 years 0 months', ' Marriage and shifted to Bangalore ', 1, '2022-12-19 10:50:12', 0, NULL, 0, NULL, 1),
(5319, 11493, 'audit office', 'gst filling', '2022-06-01', 12000.00, '2022-11-30', 12000.00, 'chennai', '1', '0 years 5 months', ' ', 1, '2022-12-19 11:44:06', 0, NULL, 0, NULL, 1),
(5320, 11495, 'HDB finances ', 'Customer support associate service ', '2022-01-06', 14000.00, '2022-06-30', 15000.00, 'Guindy ', '1', '0 years 5 months', ' Project Closed ', 1, '2022-12-19 11:53:19', 0, NULL, 0, NULL, 1),
(5321, 11497, 'teamspace finicial services', 'junior sales officer', '2018-01-01', 2.00, '2021-05-12', 18000.00, 'kottayam', '1', '3 years 4 months', ' family issues', 1, '2022-12-19 01:10:41', 0, NULL, 0, NULL, 1),
(5322, 11505, 'Bajaj capital pvt ltd ', 'Relationship manager ', '2018-10-10', 20000.00, '2019-12-19', 23000.00, 'Chennai ', '1', '1 years 2 months', ' I had wish to uplift my career next', 1, '2022-12-19 05:40:44', 0, NULL, 0, NULL, 1),
(5323, 11515, 'Casagrand builders private limited ', 'Sr, Executive', '2021-09-06', 21800.00, '2022-12-06', 21800.00, 'Thiruvanmyur', '1', '1 years 3 months', ' Looking for MIS Executive or sales but they are not ready to move from the telecalling ', 1, '2022-12-20 10:29:21', 0, NULL, 0, NULL, 1),
(5324, 11515, 'Teleperformance', 'Sr. Executive', '2020-09-09', 10500.00, '2021-06-09', 10500.00, 'Ambattur', '1', '0 years 9 months', 'Process was closed ', 1, '2022-12-20 10:30:40', 0, NULL, 0, NULL, 1),
(5325, 11518, 'bajaj finserv pvt ltd', 'sales executive', '2021-11-12', 14000.00, '2022-11-29', 14000.00, 'chennai', '1', '1 years 0 months', 'growth ', 1, '2022-12-20 10:46:55', 0, NULL, 0, NULL, 1),
(5326, 11517, 'HDFC BANK LTD', 'Corporate salary officer', '2019-07-12', 15000.00, '2021-12-08', 15000.00, 'Erode', '1', '2 years 4 months', '2 year working for erode 2 year complete change for city location house I am not going so relieving job ', 1, '2022-12-20 10:52:09', 0, NULL, 0, NULL, 1),
(5327, 11525, 'Global intelenet,Matrimony & Justdial', 'Sales Executive & Executive content Operations', '2022-05-25', 18600.00, '2022-12-12', 18600.00, 'Chennai', '1', '0 years 6 months', ' Salary hike', 1, '2022-12-20 11:43:56', 0, NULL, 0, NULL, 1),
(5328, 11507, 'Swiggy', 'customer support executive', '2018-04-23', 3.60, '2021-12-15', 28000.00, 'bangalore', '1', '3 years 7 months', ' ', 1, '2022-12-20 01:11:15', 0, NULL, 0, NULL, 1),
(5329, 11528, 'Acte technologies pvt ltd ', 'Business devlopment executive ', '2022-01-10', 20.00, '2023-01-10', 25.00, 'Chennai ', '1', '1 years 0 months', ' Looking for better opportunities to build my carrier growth for futher reference ', 1, '2022-12-21 12:04:02', 0, NULL, 0, NULL, 1),
(5330, 11547, 'Valuestream business solutions ', 'Customer support executive ', '2022-02-10', 14000.00, '2022-10-31', 14000.00, 'Thousand light ', '1', '0 years 8 months', ' Project close', 1, '2022-12-22 11:30:38', 0, NULL, 0, NULL, 1),
(5331, 11548, 'Valuestream stream business solutions pvt ltd ', 'Team leader ', '2021-12-21', 25000.00, '1970-01-01', 27500.00, 'Chennai ', '2', '1 years 0 months', ' Looking to learn new things and explore new process ', 1, '2022-12-22 11:40:17', 0, NULL, 0, NULL, 1),
(5332, 11548, 'Jana small finance bank', 'SME', '2018-07-16', 19500.00, '2021-12-10', 21500.00, 'Bangalore ', '1', '3 years 4 months', 'Got oppertunity to work in new location with previous company ', 1, '2022-12-22 11:42:49', 1, '2022-12-22 11:45:51', 0, NULL, 1),
(5333, 11548, 'Valuestream Buisness Solutions pvt ltd ', 'TL', '2016-09-20', 9000.00, '2018-06-09', 16000.00, 'Bangalore ', '1', '1 years 8 months', 'Got an opportunity to work with bank ', 1, '2022-12-22 11:44:47', 0, NULL, 0, NULL, 1),
(5334, 11550, 'Gigforce private limited ', 'Associate cluster manager', '2021-11-09', 28000.00, '2022-07-28', 28000.00, 'Chennai ', '1', '0 years 8 months', ' ', 1, '2022-12-22 01:29:43', 0, NULL, 0, NULL, 1),
(5335, 11556, 'spicejetlimited', 'security execuity', '2019-11-27', 20000.00, '2022-11-14', 25000.00, 'chennai interna airport ', '1', '2 years 11 months', ' ', 1, '2022-12-23 08:45:35', 0, NULL, 0, NULL, 1),
(5336, 11570, 'Tata consultancy services', 'Process associate', '2019-02-12', 180000.00, '2023-02-15', 285000.00, 'thuraipakkam', '1', '4 years 0 months', ' My current salary not up to the mark of current market CCT', 1, '2022-12-24 06:37:24', 0, NULL, 0, NULL, 1),
(5337, 11577, 'Livquik ', 'Vkyc auditor ', '2022-02-16', 17000.00, '1970-01-01', 17500.00, 'Alandhur', '2', '0 years 10 months', ' Long distance ', 1, '2022-12-26 01:23:18', 0, NULL, 0, NULL, 1),
(5338, 11585, 'TATA consultancy services ', 'Process associate band I -Investment operations ', '2019-07-16', 13000.00, '2022-12-09', 18500.00, 'Tektowers ', '1', '3 years 4 months', ' Need a change and career growth , distance to office and project ramp down', 1, '2022-12-26 09:07:00', 0, NULL, 0, NULL, 1),
(5339, 11586, 'kill lync', 'hennai ', '2022-06-04', 1.00, '2022-11-30', 56400.00, 'hennai ', '1', '0 years 5 months', ' My parents passed away due to covid ', 1, '2022-12-26 09:13:21', 0, NULL, 0, NULL, 1),
(5340, 11575, 'Magnatherm Alloys Private limited ', 'Account trainee', '2020-09-01', 11500.00, '2022-03-31', 13000.00, 'Gummidipoondi ', '1', '1 years 6 months', ' No promotion ', 1, '2022-12-28 12:33:02', 0, NULL, 0, NULL, 1),
(5341, 11575, 'JMB Yamaha Showroom ', 'Sales Executive ', '2022-11-14', 1250.00, '1970-01-01', 12500.00, 'TNagar', '2', '0 years 1 months', 'Salary is not comfortable ', 1, '2022-12-28 12:34:22', 0, NULL, 0, NULL, 1),
(5342, 11600, 'annanagar cycles', 'sales executive', '2021-03-01', 20000.00, '1970-01-01', 20000.00, 'chennai', '2', '1 years 9 months', ' Looking for a better job', 1, '2022-12-28 04:11:17', 0, NULL, 0, NULL, 1),
(5343, 11609, 'accenture solutions private limited', 'process associate', '2019-08-02', 10000.00, '2020-11-06', 10000.00, 'chennai', '1', '1 years 3 months', 'i was in contract,not moved to permanent Employment', 1, '2022-12-29 12:34:20', 0, NULL, 0, NULL, 1),
(5344, 11609, 'firstsource solutions limited', 'process associate', '2020-11-09', 20000.00, '2022-12-19', 25000.00, 'chennai', '1', '2 years 1 months', 'Need to switch my profile from non-it to iT', 1, '2022-12-29 12:36:37', 1, '2022-12-29 12:37:18', 0, NULL, 1),
(5345, 11613, 'Trayee Business Solutions Pvt Ltd', 'Backend process', '2022-04-04', 5000.00, '2022-09-16', 5000.00, 'Chennai', '1', '0 years 5 months', ' I have Work backend part-time only. So, I search in Software job.', 1, '2022-12-29 07:32:48', 0, NULL, 0, NULL, 1),
(5346, 11620, 'Coda technology', 'Software developer', '2021-10-01', 130000.00, '1970-01-01', 180000.00, 'Tambaram', '2', '1 years 2 months', ' I want to growth my knowledge and skills in various company. ', 1, '2022-12-29 11:58:46', 0, NULL, 0, NULL, 1),
(5347, 11623, 'Tyresoles indian pvt ltd', 'Sales officer', '2021-10-11', 24000.00, '2022-04-27', 24000.00, 'Haveri', '1', '0 years 6 months', 'Because of working location issues', 1, '2022-12-30 11:54:52', 0, NULL, 0, NULL, 1),
(5348, 11627, 'Getfarms', 'Team Leader ', '2022-06-01', 40000.00, '2022-12-30', 45000.00, 'T nagar', '2', '0 years 6 months', ' Contract period ', 1, '2022-12-30 02:13:57', 0, NULL, 0, NULL, 1),
(5349, 11629, 'Dignity enterprises ', 'Telecaller ', '2021-07-15', 10000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '1 years 5 months', 'Looking for a good position and challenging in professional front. ', 1, '2022-12-30 07:08:55', 0, NULL, 0, NULL, 1),
(5350, 11631, 'Jio', 'Jca', '2020-12-27', 15000.00, '2022-12-31', 18000.00, 'Banaganapalle ', '1', '2 years 0 months', ' Salary problem', 1, '2022-12-31 07:14:08', 0, NULL, 0, NULL, 1),
(5351, 11626, ' Kaleem jewellers ', 'Sales associate manager ', '2020-08-05', 12000.00, '2022-08-05', 17000.00, 'Poonamallee ', '1', '2 years 0 months', ' Move next better one to grow up future ', 1, '2022-12-31 10:37:28', 0, NULL, 0, NULL, 1),
(5352, 11632, 'Amazon ', 'Station supportive associate ', '2019-08-05', 15000.00, '1970-01-01', 15000.00, 'Guindy', '2', '3 years 4 months', ' I can\'t learn anything from that work...that\'s y I am reliaving ', 1, '2022-12-31 10:50:12', 0, NULL, 0, NULL, 1),
(5353, 11637, 'Bharthi airtel ', 'Sales executive ', '2021-04-05', 23000.00, '2022-12-30', 24000.00, 'Chennai ', '1', '1 years 8 months', ' To upgrade my job', 1, '2023-01-01 04:07:21', 0, NULL, 0, NULL, 1),
(5354, 11638, 'Thinksynq solution pvt LTD', 'Customer support executive', '2021-02-22', 8500.00, '2022-10-18', 9250.00, 'CHENNAI, Gunidy', '1', '1 years 7 months', ' Low salary and I don\'t want tele calling', 1, '2023-01-01 08:40:54', 0, NULL, 0, NULL, 1),
(5355, 11643, 'HRHnext Swiggy', 'Customer support ', '2022-05-25', 10000.00, '2022-12-13', 14000.00, 'Coimbatore ', '1', '0 years 6 months', ' Insufficient salary and not grown ', 1, '2023-01-02 01:00:43', 0, NULL, 0, NULL, 1),
(5356, 11650, 'GAVIKO pvt ltd', 'Customer support executive', '2021-02-08', 15000.00, '2022-07-16', 17000.00, 'Pozhichalur', '1', '1 years 5 months', ' I was Working in the state bank of india as a employee of gaviko pvt Ltd as a customer support executive but increasing of bank employees they decreasing contract employees and they not give the experience certificate. ', 1, '2023-01-03 12:38:18', 0, NULL, 0, NULL, 1),
(5357, 11651, 'Eximio service and solution Pld', 'Process Associate', '2021-10-04', 9500.00, '2022-06-13', 9500.00, 'Ambuthur Industrial ', '1', '0 years 8 months', ' Health Issues. ', 1, '2023-01-03 10:01:22', 0, NULL, 0, NULL, 1),
(5358, 11657, 'Skill Lync ', 'Quality Analyst ', '2022-08-10', 450000.00, '1970-01-01', 450000.00, 'Chennai ', '2', '0 years 4 months', 'Layoff period', 1, '2023-01-03 03:20:41', 0, NULL, 0, NULL, 1),
(5359, 11658, 'Skill Lync ', 'Quality Analyst ', '2022-08-10', 450000.00, '1970-01-01', 450000.00, 'Chennai ', '2', '0 years 4 months', 'Layoff period', 1, '2023-01-04 09:12:50', 0, NULL, 0, NULL, 1),
(5360, 11661, 'Psts infocom ', 'Junior php developer ', '2021-11-01', 22000.00, '2022-08-24', 22000.00, 'Rajabalayam ', '1', '0 years 9 months', ' ', 1, '2023-01-04 09:57:48', 0, NULL, 0, NULL, 1),
(5361, 11664, 'Constient Global Solutions ', 'Junior software Engineer ', '2022-05-16', 15000.00, '2022-12-09', 15000.00, 'Kolathur ', '1', '0 years 6 months', ' ', 1, '2023-01-04 12:41:58', 0, NULL, 0, NULL, 1),
(5362, 11665, 'Lapiz Digital Service', 'Customer care Service ', '2017-07-20', 9000.00, '2018-08-18', 90000.00, 'Guindy ', '1', '1 years 0 months', ' No carrier growth on that organization ', 1, '2023-01-04 12:48:36', 0, NULL, 0, NULL, 1),
(5363, 11665, 'Wire card India Pvt Ltd (Hermes I Ticket)', 'Customer Support Executive (Help Desk)', '2018-08-20', 12500.00, '2020-09-30', 15000.00, 'Taramani ', '1', '2 years 1 months', 'Process got Shutdown due to lock down ', 1, '2023-01-04 12:50:56', 0, NULL, 0, NULL, 1),
(5364, 11665, 'Chola MS General Insurance ', 'Senior Customer Support Executive ', '2021-06-17', 15000.00, '2022-12-30', 16800.00, 'Parrys Corner ', '1', '1 years 6 months', 'Looking for better opportunity ', 1, '2023-01-04 12:54:15', 0, NULL, 0, NULL, 1),
(5365, 11666, 'ICICI bank', 'Yes', '2022-07-12', 16000.00, '2022-11-08', 16000.00, 'Dlf', '1', '0 years 3 months', ' Health issues ', 1, '2023-01-04 12:55:22', 0, NULL, 0, NULL, 1),
(5366, 11668, 'Aakash institute', 'Telecaller', '2022-01-04', 10000.00, '2022-09-01', 10000.00, 'Thanjavur', '1', '0 years 7 months', ' It\'s  temporary work only, and i want to Learn more things ', 1, '2023-01-04 03:13:34', 0, NULL, 0, NULL, 1),
(5367, 11671, 'muthoot fincorp', 'rm', '2021-11-18', 18000.00, '1970-01-01', 19000.00, 'chennai', '2', '1 years 1 months', 'growth ', 1, '2023-01-05 10:59:37', 0, NULL, 0, NULL, 1),
(5368, 11674, 'SitusAmc ', 'Voice associate ', '2021-02-15', 18900.00, '2022-07-24', 22700.00, 'DLF it park', '1', '1 years 5 months', 'wanted day shift', 1, '2023-01-05 11:41:55', 0, NULL, 0, NULL, 1),
(5369, 11675, 'policy bazar', 'telcaller', '2018-06-15', 14000.00, '2021-11-19', 18000.00, 'chennai', '1', '3 years 5 months', ' growth', 1, '2023-01-05 11:48:04', 0, NULL, 0, NULL, 1),
(5370, 11688, 'Care health insurance company', 'Relationship manager', '2022-04-12', 16000.00, '2022-11-05', 16000.00, 'Nungambakkam', '1', '0 years 6 months', 'Timing reasone', 1, '2023-01-05 08:43:59', 0, NULL, 0, NULL, 1),
(5371, 11696, 'Hapag-lloyd Global service', 'Senior coordinator', '2018-09-17', 11500.00, '2022-12-15', 15000.00, 'Kandachavadi', '1', '4 years 2 months', ' Low salary', 1, '2023-01-06 11:29:12', 0, NULL, 0, NULL, 1),
(5372, 11698, 'Care health insurance company', 'Relationship manager ', '2022-05-12', 16000.00, '1970-01-01', 16000.00, 'Nungambakkam ', '2', '0 years 7 months', 'Not proper leads & timing ', 1, '2023-01-06 12:40:34', 0, NULL, 0, NULL, 1),
(5373, 11714, 'Insurance distribution', 'Sales officer', '2021-10-05', 15000.00, '2023-01-07', 17000.00, 'Egmore', '1', '1 years 3 months', ' Carrier growth', 1, '2023-01-07 12:48:04', 0, NULL, 0, NULL, 1),
(5374, 11712, 'Insurance distribution ', 'Sales officer ', '2021-08-11', 13500.00, '2022-07-16', 17000.00, 'Mount road ', '1', '0 years 11 months', ' Medical propose ', 1, '2023-01-07 12:48:07', 0, NULL, 0, NULL, 1),
(5375, 11715, 'Bluechip investment centre', 'Financial advisor', '2017-07-09', 240000.00, '2021-06-07', 295000.00, 'Velachery', '1', '3 years 10 months', ' Personal reason', 1, '2023-01-07 01:33:30', 0, NULL, 0, NULL, 1),
(5376, 11716, 'Nissan car service ', 'Customer relationship manager ', '2023-01-11', 30000.00, '1970-01-01', 20000.00, 'Pondicherry ', '2', '0 years 0 months', 'Timing hours externed ', 1, '2023-01-07 03:56:00', 0, NULL, 0, NULL, 1),
(5377, 11718, 'trayee business solutions', 'subject matter expert', '2021-01-07', 12000.00, '1970-01-01', 15000.00, 'chennai', '2', '2 years 0 months', ' Salary issues', 1, '2023-01-08 11:54:25', 0, NULL, 0, NULL, 1),
(5378, 11731, 'Teleperformance ', 'CSA', '2022-02-04', 17000.00, '2023-01-01', 17000.00, 'Ambattur ', '1', '0 years 10 months', 'personal issues ', 1, '2023-01-10 09:19:10', 0, NULL, 0, NULL, 1),
(5379, 11736, 'Magus Customer Dailog ', 'Telecaller', '2016-08-01', 8500.00, '2017-09-30', 16000.00, 'Chennai', '1', '1 years 1 months', ' FOR FAMILY SITUATION PROBLEM ', 1, '2023-01-10 10:34:36', 0, NULL, 0, NULL, 1),
(5380, 11736, 'Ibrisk Consultancy Services ', 'Telecaller ', '2021-02-01', 15000.00, '2022-06-30', 16000.00, 'Chennai', '1', '1 years 4 months', 'I Got Married and i got less salary ', 1, '2023-01-10 10:36:43', 0, NULL, 0, NULL, 1),
(5381, 11739, 'Matrimony. Com ', 'Service officer', '2022-05-05', 12000.00, '2022-10-31', 14000.00, 'Chennai', '1', '0 years 5 months', 'I want to work in my native. So that I relieved', 1, '2023-01-10 03:44:23', 0, NULL, 0, NULL, 1),
(5382, 11742, 'Skill-Lync', 'Sales Executive ', '2022-01-01', 350000.00, '2022-10-01', 350000.00, 'Chennai ', '1', '0 years 8 months', ' ', 1, '2023-01-11 11:11:12', 0, NULL, 0, NULL, 1),
(5383, 11748, 'Obo technology', 'Robotics engineer', '2021-02-15', 10000.00, '2022-11-04', 15000.00, 'Marthandam', '1', '1 years 8 months', ' There is one of startup company so I want growth', 1, '2023-01-11 01:34:18', 0, NULL, 0, NULL, 1),
(5384, 11758, 'Radiant cash management services Pvt Ltd ', 'MIS executive ', '2021-12-28', 15000.00, '2022-08-12', 15000.00, 'Thuraipakkam ', '1', '0 years 7 months', 'Distance Problem\n', 1, '2023-01-12 12:08:26', 0, NULL, 0, NULL, 1),
(5385, 11760, 'EVENZTER ', 'TELECALLER', '2022-11-18', 11000.00, '2023-01-11', 10500.00, 'Bangalore ', '1', '0 years 1 months', ' RESIGNED FOR LESS SALARY AND WORKING TIME 10 HOURS AND ONLY ONE DAY WEEK OFF', 1, '2023-01-12 01:34:52', 0, NULL, 0, NULL, 1),
(5386, 11764, 'ashok leyland', 'quality engineer ', '2020-02-12', 16000.00, '2022-07-22', 21000.00, 'chennai', '1', '2 years 5 months', ' Not gaining further Knowledge ', 1, '2023-01-13 11:13:02', 0, NULL, 0, NULL, 1),
(5387, 11766, 'inspirisys solution limited', 'desktop support . f. e ', '2022-07-08', 15000.00, '2023-02-05', 15000.00, 'chennai', '1', '0 years 6 months', 'Grinding more work than they pay , and backstabbing is happened. Demotivating often. cost the salary they pay me is returing 15%  as fuel going on for fuel even though they give convience fee for me . ', 1, '2023-01-13 08:21:22', 1, '2023-01-13 08:25:24', 0, NULL, 1),
(5388, 11766, 'c s t ', 'desktop support trainee', '2021-03-21', 11000.00, '2022-04-29', 15000.00, 'maduravayuol', '1', '1 years 1 months', 'Learned and maintained assets under the domain and leaned my training skills . for better growth and better knowledge i relieved and organzation is small too..', 1, '2023-01-13 08:36:24', 0, NULL, 0, NULL, 1),
(5389, 11771, 'Sundaram business services', 'Sales associate', '2015-06-11', 12500.00, '2015-09-16', 15000.00, 'Greams road', '1', '0 years 3 months', ' Due to my delivery', 1, '2023-01-16 01:05:48', 0, NULL, 0, NULL, 1),
(5390, 11773, 'orang retil finance pvt ltd', 'full stack developer', '2021-11-01', 1.00, '1970-01-01', 1.00, 'chennai', '2', '1 years 2 months', ' ado to curr tecnology', 1, '2023-01-17 10:51:22', 0, NULL, 0, NULL, 1),
(5391, 11777, 'Pace setter business solutions pvt ltd ', 'Tellecaller ', '2021-11-25', 9500.00, '2022-10-22', 13000.00, 'NUNGAMBAKKAM ', '1', '0 years 10 months', ' Interested in Sales Looking for career growth', 1, '2023-01-18 11:46:21', 0, NULL, 0, NULL, 1),
(5392, 11780, 'Finwizz financial services private limited ', 'Telecaller ', '2022-11-11', 18000.00, '2023-01-10', 15000.00, 'T.nagar', '1', '0 years 1 months', ' Reduced salary so I have relieved', 1, '2023-01-18 12:45:05', 0, NULL, 0, NULL, 1),
(5393, 11782, 'Samman', 'Field Animator ', '2018-07-04', 16000.00, '2020-02-26', 18000.00, 'Bhopal ', '1', '1 years 7 months', ' COVID ', 1, '2023-01-18 01:34:07', 0, NULL, 0, NULL, 1),
(5394, 11782, 'El Shaddai Charitable Trust ', 'Shelter incharge ', '2022-07-06', 18000.00, '2023-01-02', 18000.00, 'Goa', '1', '0 years 5 months', 'Family Issues ', 1, '2023-01-18 01:37:46', 0, NULL, 0, NULL, 1),
(5395, 11784, 'Fusion bpo ', 'Customer care executive ', '2021-05-18', 15000.00, '2022-11-08', 15000.00, 'Tenaymbet ', '1', '1 years 5 months', ' Marriage ', 1, '2023-01-19 11:26:03', 0, NULL, 0, NULL, 1),
(5396, 11798, 'VIKKA HOMES', 'SALES EXECUTIVE', '2022-06-23', 18000.00, '2022-12-24', 18000.00, 'VADAPLANI', '1', '1 years 6 months', 'full and full feild', 85, '2023-01-23 01:08:27', 85, '2023-01-23 01:09:55', 0, NULL, 1),
(5397, 11802, 'Air india', 'Customer service agent ', '2015-01-23', 11500.00, '2017-01-23', 37000.00, 'Trichy', '1', '2 years 0 months', ' Family issues ', 1, '2023-01-23 02:50:06', 0, NULL, 0, NULL, 1),
(5398, 11802, 'Ags group of companies ', 'Telecalling', '2018-01-23', 16500.00, '2019-10-23', 16700.00, 'Coimbatore ', '1', '1 years 9 months', 'Accident ', 1, '2023-01-23 02:52:07', 0, NULL, 0, NULL, 1),
(5399, 11806, 'Tech digital corporation ', 'IT recruiter ', '2022-01-17', 12000.00, '2022-07-25', 15000.00, 'West Mambalam', '1', '0 years 6 months', ' Lay off', 1, '2023-01-24 11:37:07', 0, NULL, 0, NULL, 1),
(5400, 10409, 'Kritilabs it', 'Customer executive ', '2021-09-15', 22000.00, '1970-01-01', 23000.00, 'Taramani', '2', '1 years 4 months', ' Career growth  not improve', 1, '2023-01-24 12:17:24', 0, NULL, 0, NULL, 1),
(5401, 11811, 'Byjus', 'Sales executive', '2022-01-08', 23000.00, '2023-01-10', 25000.00, 'Chennai', '1', '1 years 0 months', ' ', 1, '2023-01-25 07:51:14', 0, NULL, 0, NULL, 1),
(5402, 11815, 'Olympian tek', 'Document verification ', '2022-02-15', 13000.00, '1970-01-01', 13000.00, 'Velachery', '2', '0 years 11 months', ' Projects not available currently.', 1, '2023-01-25 02:18:34', 0, NULL, 0, NULL, 1),
(5403, 11808, 'kumaran watch company', 'sales manager ', '2021-06-15', 10000.00, '2022-12-25', 17000.00, 'erode', '1', '1 years 7 months', ' location change \n', 1, '2023-01-25 02:58:46', 0, NULL, 0, NULL, 1),
(5404, 11818, 'Star health and Allied insurance company', 'Customer care officer', '2021-07-05', 15000.00, '2022-12-16', 17000.00, 'Chennai', '1', '1 years 5 months', ' For better career growth and to upgrade the skills', 1, '2023-01-27 10:35:39', 0, NULL, 0, NULL, 1),
(5405, 11823, 'Exela Technologies ', 'Data entry operator ', '2019-04-24', 10000.00, '2022-08-22', 15000.00, 'Thanjavur ', '1', '3 years 3 months', ' Due to night shift ', 1, '2023-01-28 10:42:17', 0, NULL, 0, NULL, 1),
(5406, 11826, 'Allsec technologies ', 'Customer support executive ', '2022-08-17', 20000.00, '2023-02-13', 23000.00, 'Velachery ', '1', '0 years 5 months', ' Health issue for night shift ', 1, '2023-01-28 05:34:43', 0, NULL, 0, NULL, 1),
(5407, 11827, 'Bajaj finserz ', 'Sales executive ', '2022-05-11', 15000.00, '2023-01-20', 15000.00, 'Chennai ', '1', '0 years 8 months', 'Traveling issues ', 1, '2023-01-29 07:11:06', 0, NULL, 0, NULL, 1),
(5408, 11829, 'RBL BANK', 'Tell calling ', '2020-08-15', 13000.00, '2022-11-19', 12000.00, 'Shanaya nagar ', '1', '2 years 3 months', ' Timeing ', 1, '2023-01-30 01:09:29', 0, NULL, 0, NULL, 1),
(5409, 11830, 'ola electric', 'bussiness development manager ', '2019-11-20', 25000.00, '2022-12-12', 25000.00, 'chennai', '1', '3 years 0 months', ' Lay off', 1, '2023-01-30 02:55:18', 0, NULL, 0, NULL, 1),
(5410, 11833, 'Tech Mahindra ', 'Customer support executive ', '2021-11-01', 13000.00, '2022-07-04', 13000.00, 'Ethiraj salai', '1', '0 years 8 months', ' Went out of station ', 1, '2023-01-31 10:02:46', 0, NULL, 0, NULL, 1),
(5411, 11834, 'sundaram finance', 'associate', '2018-10-24', 18000.00, '2019-07-30', 18000.00, 'chennai', '1', '0 years 9 months', 'growth ', 1, '2023-01-31 11:03:51', 0, NULL, 0, NULL, 1),
(5412, 11834, 'bharath matrimony', 'tele marketing executive', '2015-09-18', 15000.00, '2017-08-04', 15000.00, 'adyar', '1', '1 years 10 months', 'growth', 1, '2023-01-31 11:04:40', 0, NULL, 0, NULL, 1),
(5413, 11840, 'Sbi cards', 'Branch executive ', '2021-09-09', 15000.00, '2023-01-15', 25000.00, 'Chennai', '1', '1 years 4 months', ' For better salary package and operations work\'s ', 1, '2023-02-01 08:06:50', 0, NULL, 0, NULL, 1),
(5414, 11835, 'Pennar industries Ltd ', 'Junior engineer ', '2021-10-01', 22000.00, '2023-01-10', 22000.00, 'Chennai ', '1', '1 years 3 months', 'Relocate to native place ', 1, '2023-02-01 09:29:42', 0, NULL, 0, NULL, 1),
(5415, 11835, 'Precision PRESSINGS ', 'Assistant engineer ', '2018-06-10', 15000.00, '2021-10-01', 20000.00, 'Chennai ', '1', '3 years 3 months', 'Carrier growth ', 1, '2023-02-01 09:34:52', 0, NULL, 0, NULL, 1),
(5416, 11841, 'Mmc Infotech ', 'Process Executive', '2019-04-20', 10000.00, '2022-03-23', 10000.00, 'Pattinapakkam', '1', '2 years 11 months', 'Problem with TL', 1, '2023-02-01 10:42:24', 0, NULL, 0, NULL, 1),
(5417, 11842, 'Springbord systems pvt ltd', 'Data analyst', '2019-11-01', 13500.00, '2022-04-27', 13500.00, 'Teynampet', '1', '2 years 5 months', ' Process completed', 1, '2023-02-01 10:59:57', 0, NULL, 0, NULL, 1),
(5418, 11843, 'Melon ventures pvt ltd ', 'Php developer', '2022-07-11', 8000.00, '2023-01-13', 6500.00, 'Valluvarkottam ', '1', '0 years 6 months', ' Health issues ', 1, '2023-02-01 11:27:42', 0, NULL, 0, NULL, 1),
(5419, 11831, 'Amtex enterprise Inc', 'IT recruiter', '2022-01-01', 17000.00, '2022-10-31', 17000.00, 'Chennai', '1', '0 years 9 months', ' ', 1, '2023-02-01 12:26:00', 0, NULL, 0, NULL, 1),
(5420, 11844, 'Oro gold loan', 'Telecalling ', '2022-04-08', 16.50, '2022-12-07', 16.50, 'Nungambakkam ', '1', '0 years 7 months', 'Low salary ', 1, '2023-02-01 12:34:22', 0, NULL, 0, NULL, 1),
(5421, 11845, 'Oro golden loan', 'Back and executive ', '2022-04-08', 16500.00, '2022-09-01', 16500.00, 'Nungabakkam', '1', '0 years 4 months', ' Distance', 1, '2023-02-01 12:57:51', 0, NULL, 0, NULL, 1),
(5422, 11836, 'Good will wealth management ', 'Telecalling sales executive ', '2021-12-01', 10000.00, '2022-11-15', 12000.00, 'Thanjavur ', '1', '0 years 11 months', ' Location ', 1, '2023-02-01 01:35:15', 0, NULL, 0, NULL, 1),
(5423, 11848, 'Forte Mangemet Services', 'Telecaller', '2020-08-19', 9000.00, '2023-02-01', 16000.00, 'Saidapet', '1', '2 years 5 months', ' Salary not increment and over pressure ', 1, '2023-02-01 02:30:44', 0, NULL, 0, NULL, 1),
(5424, 11847, 'forte management', 'telecaller', '2021-01-01', 14000.00, '2023-01-31', 14000.00, 'sowkerpet', '1', '2 years 0 months', ' for career growth', 1, '2023-02-01 02:48:07', 0, NULL, 0, NULL, 1),
(5425, 11852, 'Thanigai estates and construction pvt ltd', 'Tele sale', '2021-04-01', 17000.00, '2022-05-30', 17000.00, 'Chennai', '1', '1 years 1 months', ' Personal Reasons', 1, '2023-02-02 10:51:37', 0, NULL, 0, NULL, 1),
(5426, 11861, 'Life insurance', 'Assistant', '2019-06-15', 9.50, '2022-09-10', 9.50, 'Erode', '1', '3 years 2 months', ' Lic officer who I worked has passed away', 1, '2023-02-04 10:27:39', 0, NULL, 0, NULL, 1),
(5427, 11862, 'Aditya birla capital', 'Virtual relationship manager', '2022-03-31', 3.30, '1970-01-01', 3.30, 'Ambattur', '2', '0 years 10 months', ' Travelling distance', 1, '2023-02-04 10:28:06', 0, NULL, 0, NULL, 1),
(5428, 11862, 'Mmc infotech services pvt ltd', 'Telecalling Executive', '2019-11-07', 1.50, '2021-11-06', 1.50, 'Santh home', '1', '1 years 11 months', 'No growth', 1, '2023-02-04 10:29:55', 0, NULL, 0, NULL, 1),
(5429, 11839, 'bank bazar', 'customer relationship officer', '2021-12-10', 15000.00, '1970-01-01', 21000.00, 'ambathur estate', '2', '1 years 1 months', ' salary package', 1, '2023-02-04 11:05:45', 0, NULL, 0, NULL, 1),
(5430, 11863, 'Accenture ', 'Transaction process representative ', '2022-08-24', 12000.00, '2022-12-14', 12000.00, 'Chennai ', '1', '0 years 3 months', ' ', 1, '2023-02-04 11:32:38', 0, NULL, 0, NULL, 1),
(5431, 11865, 'Vizza investment broking services Pvt Ltd ', 'Telecaller ', '2021-10-23', 9000.00, '2023-01-10', 13000.00, 'Kodambakkam ', '1', '1 years 2 months', ' Yes ,, my career development and growth of experience ... ', 1, '2023-02-04 04:54:25', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5432, 11866, 'HCL Technologies (Bpo Services)', 'Customer Service Representative', '2021-02-15', 17500.00, '2022-07-08', 19000.00, 'Chennai', '1', '1 years 4 months', ' I have left job for a career change and the shift timings.', 1, '2023-02-05 11:09:47', 0, NULL, 0, NULL, 1),
(5433, 11868, 'Vizza investment center', 'Assistant team leader', '2021-01-28', 9000.00, '1970-01-01', 15000.00, 'Chennai', '2', '2 years 0 months', ' Uncomfortable salary', 1, '2023-02-06 09:58:18', 0, NULL, 0, NULL, 1),
(5434, 11869, 'insursed policy', 'field work', '2017-02-07', 13000.00, '2017-08-07', 15000.00, 'santhome', '1', '0 years 6 months', 'office closed', 85, '2023-02-07 11:08:10', 85, '2023-02-07 11:14:38', 0, NULL, 1),
(5435, 11874, 'cks consulting engineers pvt ltd', ' hr recruiter', '2022-11-07', 12000.00, '2023-02-06', 12000.00, 'chrompet', '1', '0 years 2 months', ' ', 1, '2023-02-07 11:49:13', 0, NULL, 0, NULL, 1),
(5436, 11873, 'Armsoftech.air', 'Senior process associate ', '2022-03-16', 16000.00, '2023-02-05', 16000.00, 'Ambattur ', '1', '0 years 10 months', 'Process get closed.\nAlso got good opportunity in HR role. ', 1, '2023-02-07 11:50:26', 0, NULL, 0, NULL, 1),
(5437, 11872, 'Armsoftech. Air', 'Senior process associate', '2022-03-18', 8.00, '2023-02-05', 17000.00, 'Ambattur', '1', '0 years 10 months', ' Process got closed, so looking for better opportunity', 1, '2023-02-07 11:53:34', 0, NULL, 0, NULL, 1),
(5438, 11875, 'Flipkart', 'Picker', '2021-07-21', 12000.00, '2022-06-30', 12000.00, 'Korattur ', '1', '0 years 11 months', 'Contract work for one year', 1, '2023-02-07 12:55:22', 0, NULL, 0, NULL, 1),
(5439, 11876, 'Vels solution ', 'Tele calling ', '2022-02-02', 15000.00, '2023-01-11', 15000.00, 'Chennai ', '1', '0 years 11 months', ' ', 1, '2023-02-07 12:55:24', 0, NULL, 0, NULL, 1),
(5440, 11878, 'Medical', 'Sales executive', '2022-02-08', 16.00, '2022-12-31', 18.00, 'Chennai', '1', '0 years 10 months', ' ', 1, '2023-02-08 11:14:26', 0, NULL, 0, NULL, 1),
(5441, 11870, 'Thangavelu spinning pvt ltd', 'Supervisor', '2020-05-05', 10000.00, '2021-07-07', 12000.00, 'Veppdai', '1', '1 years 2 months', ' Resigned for work with my father textile shop', 1, '2023-02-08 11:35:24', 0, NULL, 0, NULL, 1),
(5442, 11883, 'Skandha treading and vvrs chit funds ', 'Telacaller', '2022-08-17', 10000.00, '2023-02-05', 10000.00, 'Erode ', '1', '0 years 5 months', 'Timing', 1, '2023-02-09 11:38:21', 0, NULL, 0, NULL, 1),
(5443, 11885, 'ICICI BANK PVT LTD (I Process service pvt Ltd) ', 'Sales executive', '2022-07-10', 15000.00, '2023-02-01', 15000.00, 'M r c nagar', '1', '0 years 6 months', ' Small accident ', 1, '2023-02-09 12:00:54', 0, NULL, 0, NULL, 1),
(5444, 11886, 'Team lease service private limited ', 'Sales executive ', '2021-07-07', 14000.00, '2022-10-01', 20000.00, 'Chennai', '1', '1 years 2 months', ' Process left', 1, '2023-02-09 12:36:11', 0, NULL, 0, NULL, 1),
(5445, 11887, 'AGSHealth ', 'AR caller', '2022-07-01', 15000.00, '2022-12-31', 15000.00, 'Chennai ', '1', '0 years 6 months', ' Career growth ', 1, '2023-02-09 02:33:37', 0, NULL, 0, NULL, 1),
(5446, 11890, 'Airtel broadband company', 'Sales executive', '2021-10-03', 20000.00, '2022-09-10', 20000.00, 'Chennai', '1', '0 years 11 months', ' Family issue', 1, '2023-02-10 10:50:21', 0, NULL, 0, NULL, 1),
(5447, 11891, 'Cameo corporate services limited ', 'QC internal Audit Officer ', '2022-01-03', 16000.00, '2023-01-23', 16000.00, 'Mound road', '1', '1 years 0 months', ' Because of career grouth', 1, '2023-02-10 11:49:57', 0, NULL, 0, NULL, 1),
(5448, 11898, 'Prenetics Innovation lab ', 'Back end developer ', '2021-12-15', 2.00, '2022-07-01', 18.00, 'Chennai ', '1', '0 years 6 months', ' Family problems and health issues ', 1, '2023-02-10 01:21:55', 0, NULL, 0, NULL, 1),
(5449, 11899, 'L&T PVT LTD', 'FLO', '2021-04-19', 16000.00, '2021-12-17', 16000.00, 'RAMANATHAPURAM ', '1', '0 years 7 months', ' CARRIER GROWTH ', 1, '2023-02-10 02:42:24', 0, NULL, 0, NULL, 1),
(5450, 11902, 'cameo corporate pvt ltd', 'executive', '2017-07-18', 13000.00, '2019-09-27', 13000.00, 'chennai', '1', '2 years 2 months', ' growth', 1, '2023-02-11 11:12:45', 0, NULL, 0, NULL, 1),
(5451, 11906, 'Chennai Trucks ', 'Manager sales', '2019-02-02', 32000.00, '2023-02-13', 39000.00, 'Chennai', '1', '4 years 0 months', ' Carrier growth ', 1, '2023-02-15 10:30:03', 0, NULL, 0, NULL, 1),
(5452, 11905, 'Chennai trucks ', 'Team leader ', '2021-10-06', 27000.00, '2023-02-13', 31500.00, 'Palavakkam ', '1', '1 years 4 months', ' ', 1, '2023-02-15 10:35:28', 0, NULL, 0, NULL, 1),
(5453, 11907, 'GOLDEN ENTERPRISES ', 'TELE SALES OFFICER ', '2020-09-01', 12000.00, '2022-09-05', 17800.00, 'CHENNAI ', '1', '2 years 0 months', ' Person issue ', 1, '2023-02-15 11:02:58', 0, NULL, 0, NULL, 1),
(5454, 11260, 'HDB FINANCIAL MANAGEMENT', 'Repayment process', '2019-11-01', 10050.00, '2023-02-20', 12500.00, 'Greams road', '1', '3 years 3 months', ' Financial problems', 1, '2023-02-16 10:47:30', 0, NULL, 0, NULL, 1),
(5455, 11913, 'Marketxcel data matrix', 'Field executive', '2020-02-03', 18000.00, '2022-06-15', 25000.00, 'T nagar', '1', '2 years 4 months', ' Personal issue', 1, '2023-02-16 11:31:12', 0, NULL, 0, NULL, 1),
(5456, 11914, 'Career school hr solutions ', 'Hr recruiter ', '2022-08-12', 13000.00, '2022-10-14', 13000.00, 'Chennai', '1', '0 years 2 months', ' Distance ', 1, '2023-02-16 03:52:59', 0, NULL, 0, NULL, 1),
(5457, 11915, 'Hdb financial service', 'Telecaller', '2020-02-16', 15000.00, '2022-02-16', 16000.00, 'Greens road', '1', '2 years 0 months', ' Due to married', 1, '2023-02-16 05:37:18', 0, NULL, 0, NULL, 1),
(5458, 11917, 'Indiafilings', 'Mca filing', '2021-11-21', 12000.00, '2023-02-15', 15000.00, 'Chetpet ', '1', '1 years 2 months', ' ', 1, '2023-02-17 01:14:11', 0, NULL, 0, NULL, 1),
(5459, 11919, 'Altrosyn Technologies Pvt Ltd ', 'Junior software developer ', '2021-11-01', 16641.00, '2022-08-05', 16641.00, 'Nungapakkam, chennai ', '1', '0 years 9 months', ' Some personal issues', 1, '2023-02-17 05:15:41', 0, NULL, 0, NULL, 1),
(5460, 11921, 'Chennai Metro Railway limited', 'Ticket operator ', '2021-04-27', 17.00, '2023-05-12', 17.50, 'St Thomas Mount', '1', '2 years 0 months', ' Some health issue', 1, '2023-02-18 11:13:08', 0, NULL, 0, NULL, 1),
(5461, 11924, 'Bajaj finserv limited ', 'Branch telecaller', '2019-08-21', 13000.00, '2022-10-10', 15000.00, 'Egmore ', '1', '3 years 1 months', ' ', 1, '2023-02-18 01:22:09', 0, NULL, 0, NULL, 1),
(5462, 11918, 'Capital Honda ', 'MIS EXECUTIVE ', '2020-01-01', 14000.00, '2022-07-15', 16000.00, 'Chennai ', '1', '2 years 6 months', 'Data Analysis at Tableau developer to further develop \nmy skills. The institute I studied was called Greens \nTechnologies at Chennai. Driving business \nsolutions using Tableau Proficient knowledge in\npreparing Dashboards Projects on operations and\nAnalytics tools for effective analyses of data.', 1, '2023-02-19 09:33:37', 0, NULL, 0, NULL, 1),
(5463, 11929, 'gobumpr my tvs', 'sales executive', '2021-07-06', 19500.00, '2022-11-29', 195000.00, 'olymbia', '1', '1 years 4 months', ' due to personal issues', 1, '2023-02-20 12:11:09', 0, NULL, 0, NULL, 1),
(5464, 11930, 'Collan service', 'Telecaller ', '2022-08-02', 1500.00, '2022-12-05', 15000.00, 'Anna nagar', '1', '0 years 4 months', ' Career Growth ', 1, '2023-02-20 01:24:06', 0, NULL, 0, NULL, 1),
(5465, 11901, 'HDFCBANK', 'Banking officer ', '2019-02-27', 12500.00, '2022-05-02', 17000.00, 'Amanijikari ', '1', '3 years 2 months', 'Need some new experience ', 1, '2023-02-20 07:20:42', 0, NULL, 0, NULL, 1),
(5466, 11936, 'DDI global tech ', 'Customer support executive ', '2022-11-25', 8000.00, '2023-02-11', 9300.00, 'Spencer plaza ', '1', '0 years 2 months', ' They didn\'t give proper salary ', 1, '2023-02-20 09:22:56', 0, NULL, 0, NULL, 1),
(5467, 11940, 'All set Businesses solution ', 'Telecaller / customer  care executive ', '2023-02-22', 12000.00, '2023-10-25', 6000.00, 'Chennai  Mount Road thousand Light ', '1', '0 years 8 months', ' Because reason Is health  conditions  bike accidents  so I did not work This jobs doctor will tell minimum 3 months completed rest that all reason ', 1, '2023-02-21 12:09:31', 0, NULL, 0, NULL, 1),
(5468, 11942, 'ARMSOFTTECH.PVT.LTD ', 'Process associate', '2019-11-22', 15000.00, '2022-08-09', 17000.00, 'Perungudi', '1', '2 years 8 months', ' Mom\'s health issue ', 1, '2023-02-21 02:27:14', 0, NULL, 0, NULL, 1),
(5469, 11944, 'Iopex technologies', 'Analyst', '2020-11-26', 4.00, '2022-10-08', 5.90, 'Chennai', '1', '1 years 10 months', ' Project closed', 1, '2023-02-21 02:38:46', 0, NULL, 0, NULL, 1),
(5470, 11943, 'I energizer pvt ltd.', 'Customer Support executive ', '2021-12-07', 13000.00, '2023-01-12', 15000.00, 'Bangalore ', '1', '1 years 1 months', ' Personal Reason ', 1, '2023-02-21 02:47:47', 0, NULL, 0, NULL, 1),
(5471, 11946, ' Investment service', 'Tele caller', '2022-02-12', 90000.00, '2023-02-09', 13000.00, 'Saidapet', '1', '0 years 11 months', ' Salary and incentives not given properly', 1, '2023-02-22 11:00:36', 0, NULL, 0, NULL, 1),
(5472, 11948, 'Diamondpick ', 'Executive recruitment ', '2021-03-01', 17.60, '2022-12-16', 25500.00, 'Chennai', '1', '1 years 11 months', ' Move to night shift ', 1, '2023-02-22 11:35:34', 0, NULL, 0, NULL, 1),
(5473, 11949, 'apar innosys llp', 'service desk executive', '2018-02-07', 10000.00, '2023-02-01', 18000.00, 'chennai', '1', '4 years 11 months', ' There is no Growth for me from there.', 1, '2023-02-22 11:44:39', 0, NULL, 0, NULL, 1),
(5474, 11953, 'Vimbri media pvt lmt', 'Sales executive ', '2022-07-21', 26000.00, '2023-01-21', 22000.00, 'Tenampet ', '1', '0 years 6 months', ' Incentive is not getting properly ', 1, '2023-02-22 03:54:17', 0, NULL, 0, NULL, 1),
(5475, 11952, 'Redisolve software ', 'E-relationship executive ', '2022-02-26', 17500.00, '2023-01-31', 17500.00, 'Nandanam ', '1', '0 years 11 months', ' Personal issues ', 1, '2023-02-22 04:14:01', 0, NULL, 0, NULL, 1),
(5476, 11955, 'MONTFORT ACADEMY MAT HR SEC SCHOOL ', 'ADMIN ', '2014-06-01', 10000.00, '2022-08-31', 20000.00, 'SANTHOME ', '1', '8 years 2 months', ' MEDICAL ', 1, '2023-02-23 02:00:50', 0, NULL, 0, NULL, 1),
(5477, 11956, 'HDB Financial Services ', 'Telecalling ', '2021-07-06', 12000.00, '2022-07-15', 15000.00, 'Mond road ', '1', '1 years 0 months', ' Timeing problem ', 1, '2023-02-23 03:14:17', 0, NULL, 0, NULL, 1),
(5478, 11960, 'byjus', 'presale associate', '2021-08-24', 1.00, '2022-12-10', 3.25, 'bangalore', '1', '1 years 3 months', ' Due to health condition', 1, '2023-02-24 11:24:57', 0, NULL, 0, NULL, 1),
(5479, 11957, 'Arcis', 'Bpo', '2021-12-28', 12500.00, '1970-01-01', 12500.00, 'Chennai', '2', '1 years 1 months', 'To reach another level', 1, '2023-02-24 12:44:29', 0, NULL, 0, NULL, 1),
(5480, 11962, 'Taskmo', 'Operation Associate and team Lead ', '2020-05-03', 22000.00, '2021-06-29', 23500.00, 'Jp Nagar ', '1', '1 years 1 months', ' Project got closed and it was based on agreement ', 1, '2023-02-24 01:50:42', 0, NULL, 0, NULL, 1),
(5481, 11962, 'Rinteger', 'Business development manager ', '2021-08-01', 25000.00, '2022-07-31', 26000.00, 'Jp Nagar 5th phase', '1', '0 years 11 months', 'Due to an accident i had got admitted and hospitalized ', 1, '2023-02-24 01:53:19', 0, NULL, 0, NULL, 1),
(5482, 11962, '5 Squares Marketing ', 'Project Manager ', '2022-10-01', 28000.00, '2023-02-01', 28000.00, 'Wilson garden ', '1', '0 years 4 months', 'Company has got shut down due to financial issue ', 1, '2023-02-24 01:54:32', 0, NULL, 0, NULL, 1),
(5483, 11964, 'All direction source', 'Backend developer', '2019-01-05', 10000.00, '2020-01-09', 12000.00, 'Ambattur', '1', '1 years 0 months', ' Married', 1, '2023-02-25 10:37:54', 0, NULL, 0, NULL, 1),
(5484, 11968, 'Hariarjun motors eicher tractors', 'Sales executive officer', '2021-06-01', 15000.00, '2023-01-31', 18000.00, 'Ponneri', '1', '1 years 8 months', 'Reason for studying', 1, '2023-02-25 04:43:45', 0, NULL, 0, NULL, 1),
(5485, 11969, 'Star trace pvt Ltd ', 'Asst manager project ', '2010-06-21', 5500.00, '2023-02-15', 40000.00, 'Chennai ', '1', '12 years 7 months', ' Salary problem ', 1, '2023-02-25 04:50:49', 0, NULL, 0, NULL, 1),
(5486, 11976, 'Bestsource', 'Sales manager', '2022-02-02', 20000.00, '2023-03-15', 22000.00, 'Egmore', '1', '1 years 1 months', ' Salary issue', 1, '2023-02-27 11:10:20', 0, NULL, 0, NULL, 1),
(5487, 11973, 'Reliance retail limited ', 'Assistant manager', '2020-08-15', 19000.00, '1970-01-01', 26000.00, 'Mogapapair west', '2', '2 years 6 months', 'No growth in such posting ', 1, '2023-02-27 11:19:14', 0, NULL, 0, NULL, 1),
(5488, 11978, 'Reliance retail limited ', 'Assistant manager ', '2020-07-15', 19000.00, '1970-01-01', 26000.00, 'Ambattur ', '2', '2 years 7 months', ' No growth in such posting ', 1, '2023-02-27 11:32:41', 0, NULL, 0, NULL, 1),
(5489, 11977, 'cootez', 'web developer', '2022-07-27', 1100.00, '2022-12-27', 12000.00, 'adyar', '1', '0 years 5 months', ' some personal issue', 1, '2023-02-27 11:57:33', 0, NULL, 0, NULL, 1),
(5490, 11972, 'concentrix', 'customer service', '2018-09-04', 15000.00, '2019-12-03', 16000.00, 'visagapatinam', '1', '1 years 2 months', ' work location changed', 1, '2023-02-27 12:39:12', 0, NULL, 0, NULL, 1),
(5491, 11980, 'Helen', 'Thanjavur', '2021-02-27', 15000.00, '2023-01-20', 15000.00, 'Thanjavur', '1', '0 years 0 months', ' ', 1, '2023-02-27 01:13:16', 0, NULL, 0, NULL, 1),
(5492, 11980, 'Helen', 'Thanjavur', '2021-02-27', 15000.00, '2023-01-20', 15000.00, 'Thanjavur', '1', '0 years 0 months', ' Nothing ', 1, '2023-02-27 01:13:16', 0, NULL, 0, NULL, 1),
(5493, 11980, 'Helen', 'Thanjavur', '2021-02-27', 15000.00, '2023-01-20', 15000.00, 'Thanjavur', '1', '0 years 0 months', ' Nothing ', 1, '2023-02-27 01:13:16', 0, NULL, 0, NULL, 1),
(5494, 11979, 'Tnou', 'Chennai', '2022-06-01', 14000.00, '2023-01-15', 14000.00, 'Chennai-1', '1', '0 years 7 months', ' ', 1, '2023-02-27 02:57:20', 0, NULL, 0, NULL, 1),
(5495, 11983, 'Genesis Academy ', 'Student Counsellor ', '2022-06-01', 20000.00, '1970-01-01', 20000.00, 'Arumbakkam ', '2', '0 years 8 months', ' Salary Expectation ', 1, '2023-02-28 10:12:33', 0, NULL, 0, NULL, 1),
(5496, 11987, 'Spring bord', 'Trainee Customer support Executive', '2019-08-09', 9180.00, '2021-11-02', 20000.00, 'Teynampet', '1', '2 years 2 months', ' Low selary package', 1, '2023-02-28 11:43:34', 0, NULL, 0, NULL, 1),
(5497, 11987, 'All set business solution', 'Team leader ', '2022-02-21', 16000.00, '2022-12-23', 20000.00, 'Mount road', '1', '0 years 10 months', 'Low selary package', 1, '2023-02-28 11:48:47', 0, NULL, 0, NULL, 1),
(5498, 11989, 'Lrk Association', 'Team lead', '2022-12-01', 15999.00, '2023-02-27', 20000.00, 'Arumbakam', '1', '0 years 2 months', ' Salary package and timing issue', 1, '2023-02-28 11:57:54', 0, NULL, 0, NULL, 1),
(5499, 11992, 'Camino Corporate service ltd', 'MIS Team Leader ', '2021-10-01', 19.00, '2022-11-30', 19.00, 'Chennai ', '1', '1 years 1 months', 'Relocate to native ', 1, '2023-02-28 02:25:27', 0, NULL, 0, NULL, 1),
(5500, 11993, 'Computer age management services', 'CCO', '2017-01-28', 12000.00, '2019-10-28', 16000.00, 'Chennai', '1', '2 years 9 months', 'Was looking for career development and change in field ', 1, '2023-02-28 05:08:17', 0, NULL, 0, NULL, 1),
(5501, 11993, 'Professional courier network limited', 'Business Associate, Territory manager', '2022-01-22', 25000.00, '2023-02-09', 35000.00, 'Chennai, Chhattisgarh', '1', '1 years 0 months', 'As I was moved to a different state and my health didn\'t adapt to the environment as I was facing lots of health issues', 1, '2023-02-28 05:10:37', 0, NULL, 0, NULL, 1),
(5502, 11966, 'Cavinkare pvt ld', 'Marketing sales', '2019-03-01', 14500.00, '2023-02-09', 17525.00, 'Vadapani', '1', '3 years 11 months', 'Financial and personal growth ', 1, '2023-03-01 10:39:14', 0, NULL, 0, NULL, 1),
(5503, 11995, 'Royal Enfield ', 'Customer relationship executive ', '2019-05-27', 9500.00, '2020-03-31', 10000.00, 'Chennai ', '1', '0 years 10 months', ' Some health issues ', 1, '2023-03-01 11:30:28', 0, NULL, 0, NULL, 1),
(5504, 11996, 'Finstein Advisory ', 'Auditor\'s Assistant ', '2022-10-28', 5000.00, '2023-02-06', 10000.00, 'T Nagar ', '1', '0 years 3 months', ' Salary Issue For my House Lease Increase ', 1, '2023-03-01 12:46:06', 0, NULL, 0, NULL, 1),
(5505, 12002, 'Kotak Mahindra Bank ', 'Junior associate ', '2021-07-29', 15000.00, '2023-02-02', 15000.00, 'T nagar ', '1', '1 years 6 months', ' HEALTH ISSUES ', 1, '2023-03-02 01:29:16', 0, NULL, 0, NULL, 1),
(5506, 12008, 'Stellar innovations Pvt Ltd ', 'Process associate ', '2021-04-01', 9000.00, '2022-07-19', 15000.00, 'Sholingur ', '1', '1 years 3 months', ' Salary too less', 1, '2023-03-04 10:50:53', 0, NULL, 0, NULL, 1),
(5507, 12012, 'Infinity Quest', 'HR recruiter', '2022-10-03', 20000.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 5 months', ' For My career Growth', 1, '2023-03-06 10:34:47', 0, NULL, 0, NULL, 1),
(5508, 12013, 'pace sette business sollutions', 'agent telecaller', '2021-11-20', 13000.00, '2023-12-20', 15.00, 'nungambakam', '1', '2 years 1 months', ' Salary not comfortable', 1, '2023-03-06 12:34:11', 0, NULL, 0, NULL, 1),
(5509, 12018, 'HDB FINANCE SERVICES ', 'Senior telecalling ', '2021-07-21', 12000.00, '2022-09-01', 12000.00, 'Chennai ', '1', '1 years 1 months', ' Personal issue', 1, '2023-03-07 11:41:05', 0, NULL, 0, NULL, 1),
(5510, 12019, 'Magus', 'Customer support ', '2014-09-08', 8000.00, '2016-02-13', 11000.00, 'Chennai', '1', '1 years 5 months', ' got new job offer', 1, '2023-03-07 11:56:48', 0, NULL, 0, NULL, 1),
(5511, 12019, 'Sulekha', 'Customer support ', '2016-03-08', 13700.00, '2016-08-22', 13700.00, 'Chennai', '1', '0 years 5 months', 'Family situation ', 1, '2023-03-07 11:58:15', 0, NULL, 0, NULL, 1),
(5512, 12019, 'Shriram', 'Customer support ', '2017-12-04', 17000.00, '2018-06-22', 17000.00, 'Chennai', '1', '0 years 6 months', 'Process shutdown', 1, '2023-03-07 11:59:43', 0, NULL, 0, NULL, 1),
(5513, 12019, 'Persuaders', 'Customer support ', '2019-03-04', 13000.00, '2019-10-31', 13000.00, 'Chennai', '1', '0 years 7 months', 'Got new offer', 1, '2023-03-07 12:01:07', 0, NULL, 0, NULL, 1),
(5514, 12019, 'Nexus', 'Customer support', '2020-12-10', 13000.00, '2021-12-31', 14000.00, 'Chennai', '1', '1 years 0 months', 'Got new offer', 1, '2023-03-07 12:02:15', 0, NULL, 0, NULL, 1),
(5515, 12020, 'Web-3 technology', 'Front end developer', '2022-09-01', 20000.00, '2022-12-01', 20000.00, 'Kanthanchavadi', '1', '0 years 2 months', 'Due to ill health', 1, '2023-03-07 12:25:52', 0, NULL, 0, NULL, 1),
(5516, 12022, 'Bytize technologies Pvt Ltd ', 'Inside sales executive ', '2021-09-27', 12000.00, '2023-02-28', 22817.00, 'OMR', '1', '1 years 5 months', 'I have learnt many things over there and i wanted to explore,learn and build career in marketing field so I have choosen this content writing profession', 1, '2023-03-09 09:57:06', 0, NULL, 0, NULL, 1),
(5517, 12023, 'Trayee business solutions ', 'Processing executive ', '2019-04-01', 9000.00, '2021-01-30', 9800.00, 'Chennai ', '1', '1 years 9 months', ' Studies ', 1, '2023-03-09 02:10:46', 0, NULL, 0, NULL, 1),
(5518, 12023, 'Tamilnadu urban habitat development board ', 'Data entry operator ', '2021-03-01', 20000.00, '2021-12-31', 21000.00, 'Chennai ', '1', '0 years 10 months', 'Contract ', 1, '2023-03-09 02:15:06', 0, NULL, 0, NULL, 1),
(5519, 12024, 'Omega healthcare ', 'Ar caller', '2019-11-27', 14000.00, '2021-01-01', 14000.00, 'Tharamani', '1', '1 years 1 months', ' ', 1, '2023-03-09 02:16:13', 0, NULL, 0, NULL, 1),
(5520, 12024, 'Accesshelathcare', 'Senior ar caller', '2021-03-10', 24000.00, '1970-01-01', 24000.00, 'Ambattur ', '2', '1 years 11 months', 'Personal work', 1, '2023-03-09 02:18:28', 0, NULL, 0, NULL, 1),
(5521, 12030, 'Priceinfo', 'Php developer ', '2019-04-05', 6.00, '2023-02-15', 500000.00, 'Chennai', '1', '3 years 10 months', 'Company swiftted to Bangalore ', 1, '2023-03-10 12:43:17', 0, NULL, 0, NULL, 1),
(5522, 12028, 'Vasanth &co', 'Sales promoted', '2019-07-23', 15000.00, '2021-05-03', 18000.00, 'Thamparam', '1', '1 years 9 months', 'Personal problem', 1, '2023-03-10 01:03:04', 0, NULL, 0, NULL, 1),
(5523, 12031, 'Workfreaks', 'Associate HR manager', '2022-07-01', 12000.00, '2023-03-08', 12000.00, 'Chennai', '1', '0 years 8 months', ' Want to get in to a organization to get more exposure', 1, '2023-03-10 03:39:49', 0, NULL, 0, NULL, 1),
(5524, 12031, 'Workfreaks', 'Associate HR manager', '2022-07-01', 12000.00, '2023-03-08', 12000.00, 'Chennai', '1', '0 years 8 months', 'Want to get into an organization in order to gain more exposure', 1, '2023-03-10 03:40:54', 0, NULL, 0, NULL, 1),
(5525, 12038, 'MmC Infotec', 'Telecaller/call verifier ', '2007-07-20', 15000.00, '2023-11-20', 20.00, 'Lighthouse', '1', '16 years 4 months', ' Career growth', 1, '2023-03-13 12:28:12', 0, NULL, 0, NULL, 1),
(5526, 12040, 'learnnovators', 'qa manual testing', '2021-03-08', 150000.00, '2021-10-16', 150000.00, 'kilpauk', '1', '0 years 7 months', ' I resigned my job for doing higher studies.', 1, '2023-03-13 12:37:17', 0, NULL, 0, NULL, 1),
(5527, 12042, 'Dr mohans diabetes', 'Tele calling', '2019-01-23', 13000.00, '2022-02-28', 13000.00, 'Gopalapuram', '1', '3 years 1 months', ' To go for other senario', 1, '2023-03-13 02:53:46', 0, NULL, 0, NULL, 1),
(5528, 12043, 'Shriram life insurance', 'Senior sales executive', '2021-10-05', 18500.00, '2023-03-03', 18500.00, 'Chennai -Egmore', '1', '1 years 4 months', ' Salary is not comfortable, ', 1, '2023-03-14 10:35:26', 0, NULL, 0, NULL, 1),
(5529, 12045, 'Poorvika 1 year', 'Sales executive ', '2018-12-04', 14000.00, '1970-01-01', 17000.00, 'Chennai ', '2', '4 years 3 months', ' For study ', 1, '2023-03-14 11:08:22', 0, NULL, 0, NULL, 1),
(5530, 12047, 'Cameo', 'Tellecaller', '2018-03-15', 1000.00, '2019-06-13', 15000.00, 'Mountroad', '1', '1 years 2 months', ' Salary issue', 1, '2023-03-14 11:22:39', 0, NULL, 0, NULL, 1),
(5531, 12044, 'Cafs', 'Relationships manager ', '2018-12-01', 15000.00, '2020-03-31', 15000.00, 'T.nagar', '1', '1 years 4 months', ' ', 1, '2023-03-14 11:26:18', 0, NULL, 0, NULL, 1),
(5532, 12046, 'Om innovation call center', 'Chetpet ', '2022-10-12', 14000.00, '2023-02-20', 14000.00, 'Chetped', '1', '0 years 4 months', ' Salary issue', 1, '2023-03-14 11:31:47', 0, NULL, 0, NULL, 1),
(5533, 12048, 'Omm innovation call service center ', 'Customer Care excuted ', '2002-06-28', 12000.00, '2002-12-15', 10000.00, 'Chetpet', '1', '0 years 5 months', ' Salary issues ', 1, '2023-03-14 11:45:32', 0, NULL, 0, NULL, 1),
(5534, 12051, 'Poorvika mobiles ', 'Gadgets staff', '2020-12-07', 15000.00, '2023-03-13', 20600.00, 'Westmambalam', '1', '2 years 3 months', 'Time management will not keeping ', 1, '2023-03-14 12:14:34', 0, NULL, 0, NULL, 1),
(5535, 12057, 'Sales executive ', 'Senior executive ', '2022-08-23', 10000.00, '2022-10-18', 1000.00, 'Ison Velachery ', '1', '0 years 1 months', ' Salary low', 1, '2023-03-15 02:08:29', 0, NULL, 0, NULL, 1),
(5536, 12060, 'Wheel india pvt.limited ', 'Supervisor ', '2009-07-15', 12500.00, '2010-02-28', 48700.00, 'Chennai', '1', '0 years 7 months', ' ', 1, '2023-03-15 03:22:56', 0, NULL, 0, NULL, 1),
(5537, 12058, 'Every DayBank solutions ', 'Team leader ', '2022-03-10', 18000.00, '2023-03-04', 30000.00, 'Chennai', '1', '0 years 11 months', 'Salary issue ', 1, '2023-03-15 03:25:41', 0, NULL, 0, NULL, 1),
(5538, 12060, 'Renault Nissan automotive india pvt.limited ', 'Facilities Manager ', '2010-03-01', 15800.00, '2021-03-18', 48700.00, 'Oragadam ', '1', '11 years 0 months', 'Carrier changing ', 1, '2023-03-15 03:26:10', 0, NULL, 0, NULL, 1),
(5539, 12059, 'Calibar corporate services ', 'Area manager ', '2022-02-17', 30000.00, '2023-03-08', 30000.00, 'Kattankulathur', '1', '1 years 0 months', ' Travel Distance ', 1, '2023-03-15 03:28:01', 0, NULL, 0, NULL, 1),
(5540, 12060, 'Caliber corporate services ', 'Business development manager ', '2021-03-22', 49700.00, '2023-02-16', 48700.00, 'Sriperumbudur', '1', '1 years 10 months', 'It\'s moved andhra that\'s why', 1, '2023-03-15 03:28:27', 0, NULL, 0, NULL, 1),
(5541, 12062, 'ICICI Lombard general insurance company', 'Chennai', '2021-02-15', 10000.00, '2022-04-07', 10000.00, 'Sathikathi 3td floorCenter thousand lights', '1', '1 years 1 months', ' Low salary', 1, '2023-03-16 11:45:33', 0, NULL, 0, NULL, 1),
(5542, 12068, 'Novactech solution p ltd', 'Lead associate', '2016-02-15', 11000.00, '2023-03-17', 16000.00, 'Chennai', '1', '7 years 1 months', ' ', 1, '2023-03-17 01:07:45', 0, NULL, 0, NULL, 1),
(5543, 12068, 'Novactech solution pvt ltd', 'Lead associate', '2016-02-15', 11000.00, '2022-03-17', 16000.00, 'Chennai', '1', '7 years 1 months', 'Person reason', 1, '2023-03-17 01:10:01', 0, NULL, 0, NULL, 1),
(5544, 12071, 'Cameo corporate services ', 'HR recruiter', '2022-06-01', 22000.00, '1970-01-01', 22000.00, 'Club house road', '2', '0 years 9 months', 'Looking for a change ', 1, '2023-03-17 03:10:06', 0, NULL, 0, NULL, 1),
(5545, 12074, 'Izone Hr solutions pvt ltd', 'Customer care Executive ', '2021-06-21', 1313000.00, '2023-01-31', 15000.00, 'Anna salai', '1', '1 years 7 months', ' Searching for hr recruiter hob . So i resigned my job', 1, '2023-03-18 11:31:06', 0, NULL, 0, NULL, 1),
(5546, 12067, 'Prime capital', 'Inbound', '2022-03-03', 10000.00, '2022-11-11', 30000.00, 'New Bustand', '1', '0 years 8 months', ' Target based', 1, '2023-03-18 11:56:38', 0, NULL, 0, NULL, 1),
(5547, 12079, 'Éxéla technology ', 'Data entry operator', '2022-01-05', 10000.00, '2023-01-13', 10000.00, 'Kolathaí schóol oppo kr printers 3 floor', '1', '1 years 0 months', ' Because of night shift', 1, '2023-03-18 12:43:37', 0, NULL, 0, NULL, 1),
(5548, 12078, 'Exela technology ', 'Data entry ', '2021-07-03', 10000.00, '2023-01-29', 11000.00, 'Kolanthi school opposite ', '1', '1 years 6 months', ' Night shift ', 1, '2023-03-18 12:48:50', 0, NULL, 0, NULL, 1),
(5549, 12081, 'Ni consultanting service pvt ltd', 'Chennai ', '2022-10-17', 12000.00, '1970-01-01', 15000.00, 'Royapettah', '2', '0 years 5 months', ' ', 1, '2023-03-20 04:03:36', 0, NULL, 0, NULL, 1),
(5550, 12085, 'Cameo corp service pvt ltd', 'Telecom', '2022-07-10', 14500.00, '2023-02-15', 14500.00, 'Mount road', '1', '0 years 7 months', ' Relocate the process to adyar so i cant to go', 1, '2023-03-20 11:28:29', 0, NULL, 0, NULL, 1),
(5551, 12084, 'Sunil', 'Telecom ', '2022-11-17', 15000.00, '2023-03-09', 15000.00, 'Tylors road ', '1', '0 years 3 months', ' Personal issues ', 1, '2023-03-20 11:28:35', 0, NULL, 0, NULL, 1),
(5552, 12083, 'Lavanya ', 'Telecom ', '2022-12-16', 12000.00, '1970-01-01', 12000.00, 'Koyambet ', '2', '0 years 3 months', 'Long distance ', 1, '2023-03-20 11:37:28', 0, NULL, 0, NULL, 1),
(5553, 12086, 'Covenant consul ', 'hr execu ', '2022-06-21', 14000.00, '2023-03-07', 16500.00, 'ammabatur', '1', '0 years 8 months', ' Looking for a better opp for my carrier', 1, '2023-03-20 11:44:49', 0, NULL, 0, NULL, 1),
(5554, 12087, 'syncfusion software private limited ', 'hr recruitment coordinator ', '2021-11-01', 21500.00, '2023-02-14', 21500.00, 'chennai', '1', '1 years 3 months', ' To look for another job better than that ', 1, '2023-03-20 11:59:28', 0, NULL, 0, NULL, 1),
(5555, 12096, 'BIM CARD CENTRE ', 'ADMIN EXECUTIVE ', '2022-03-25', 10000.00, '1970-01-01', 10500.00, 'GEORGE TOWN', '2', '0 years 11 months', ' Income is not enough', 1, '2023-03-20 02:21:41', 0, NULL, 0, NULL, 1),
(5556, 12096, 'PEEYESYEM HYUNDAI ', 'SALES EXECUTIVE ', '2022-08-15', 15600.00, '1970-01-01', 15600.00, 'MYLAPORE ', '2', '0 years 7 months', 'Income is not enough ', 1, '2023-03-20 02:22:57', 0, NULL, 0, NULL, 1),
(5557, 12105, 'HDFC life', 'Associate ', '2021-03-29', 16000.00, '1970-01-01', 16968.00, 'T.nagar', '2', '1 years 11 months', ' Develop my skills and career next step', 1, '2023-03-21 11:30:34', 0, NULL, 0, NULL, 1),
(5558, 12106, 'acte technology', 'process associate', '2022-08-08', 23500.00, '1970-01-01', 23500.00, 'velachery', '2', '0 years 7 months', ' health issues', 1, '2023-03-21 12:04:22', 0, NULL, 0, NULL, 1),
(5559, 12117, 'Bharti Airtel ', 'Sales executive ', '2021-09-02', 15000.00, '2022-04-11', 15000.00, 'Karur ', '1', '0 years 7 months', ' Personal problem', 1, '2023-03-22 12:28:04', 0, NULL, 0, NULL, 1),
(5560, 12125, 'eximio software solutions ', 'telecom sales executive ', '2020-11-10', 15000.00, '2021-06-30', 15000.00, 'ambattur', '1', '0 years 7 months', ' ', 1, '2023-03-22 03:03:49', 0, NULL, 0, NULL, 1),
(5561, 12126, 'Byjus ', 'Bed', '2022-06-07', 21000.00, '2023-02-27', 21000.00, 'Egmore ', '1', '0 years 8 months', ' ', 1, '2023-03-22 03:04:01', 0, NULL, 0, NULL, 1),
(5562, 12127, 'SBI Credit card ', 'KYC verification ', '2017-05-30', 10500.00, '2018-04-30', 10500.00, 'Chennai ', '1', '0 years 11 months', ' Due to higher studies ', 1, '2023-03-22 04:57:06', 0, NULL, 0, NULL, 1),
(5563, 12127, 'Epaylater ', 'Customer Acquisition ', '2022-06-21', 21000.00, '2023-03-01', 21000.00, 'Chennai', '1', '0 years 8 months', 'Project was over here', 1, '2023-03-22 05:01:08', 0, NULL, 0, NULL, 1),
(5564, 12132, 'arm infotech', 'web designer  and devely', '2022-05-10', 7000.00, '2023-02-10', 12000.00, 'madurai', '1', '0 years 9 months', ' Agreement isses', 1, '2023-03-23 10:50:11', 1, '2023-03-23 10:50:33', 0, NULL, 1),
(5565, 11971, 'Arzooo Pvt Ltd ', 'HSR layout ', '2022-01-01', 21000.00, '2023-02-01', 21000.00, 'Bangalore ', '1', '1 years 1 months', ' Don\'t care about workers\'', 1, '2023-03-23 12:15:45', 0, NULL, 0, NULL, 1),
(5566, 12154, 'Nathan union office', 'Comp . Ass', '2022-08-25', 15000.00, '2023-02-25', 15000.00, 'Dindukal', '1', '0 years 6 months', ' Relocation', 1, '2023-03-25 11:41:14', 0, NULL, 0, NULL, 1),
(5567, 12157, 'RRMEL India Private Limited', 'HR', '2021-07-21', 15000.00, '2023-03-31', 26000.00, 'Cehnnai', '1', '1 years 8 months', ' Salary', 1, '2023-03-25 03:34:38', 0, NULL, 0, NULL, 1),
(5568, 12160, 'bajaj allianz life insurance co ltd', 'business sales manager ', '2020-11-07', 300000.00, '2023-03-24', 360000.00, 'chennai ', '1', '2 years 4 months', ' Career growth ', 1, '2023-03-27 08:50:50', 0, NULL, 0, NULL, 1),
(5569, 12160, 'aditya birla life insurance co ltd', 'executive relationship manager', '2018-09-01', 160000.00, '2020-11-30', 250000.00, 'chennai', '1', '2 years 2 months', 'Career growth ', 1, '2023-03-27 08:52:54', 0, NULL, 0, NULL, 1),
(5570, 12161, 'Inspirisys solution limited', 'Full stack developer ', '2021-10-22', 240000.00, '1970-01-01', 290000.00, 'Chennai', '2', '1 years 5 months', ' Not Relieved', 1, '2023-03-27 10:03:39', 0, NULL, 0, NULL, 1),
(5571, 12178, 'Sathya agencies pvt ltd', 'Administrative executive ', '2020-11-20', 14000.00, '2022-11-03', 15000.00, 'Gummidipoondi ', '1', '1 years 11 months', ' Personal problem ', 1, '2023-03-28 10:12:24', 0, NULL, 0, NULL, 1),
(5572, 12186, 'Vaya group', 'Data entry operator', '2019-02-07', 7000.00, '2022-12-31', 11000.00, 'Thanjavur', '1', '3 years 10 months', ' Project was finished', 1, '2023-03-28 10:51:43', 0, NULL, 0, NULL, 1),
(5573, 12196, 'Magnessa service pvt ltd', 'Direct customer support', '2022-09-05', 15000.00, '1970-01-01', 15000.00, 'Pallavaram, Chennai', '2', '0 years 6 months', ' Looking for a best role to build my career in the next level. ', 1, '2023-03-29 11:10:40', 0, NULL, 0, NULL, 1),
(5574, 12200, 'Novastrid IT Ventures Madurai ', 'Frontend Developer Internship ', '2021-12-16', 4300.00, '2022-04-08', 4300.00, 'Madurai ', '1', '0 years 3 months', 'Project Completed', 1, '2023-03-29 12:22:28', 0, NULL, 0, NULL, 1),
(5575, 12197, 'Skypro technologies', 'Computer hardware, software technician', '2022-06-09', 19000.00, '1970-01-01', 19000.00, 'T. Nagar', '2', '0 years 9 months', ' Travelling issue', 1, '2023-03-29 12:25:10', 0, NULL, 0, NULL, 1),
(5576, 12204, 'Silver dollar technology ', 'XML and html excecutive', '2022-07-11', 10000.00, '2023-01-31', 8000.00, 'Coimbatore ', '1', '0 years 6 months', ' Not comfortable ', 1, '2023-03-29 12:51:17', 0, NULL, 0, NULL, 1),
(5577, 12201, 'Everup Battery india pvt ltd', 'Production supervisor', '2019-03-09', 15800.00, '2022-05-31', 21500.00, 'Poodhamalle', '1', '3 years 2 months', ' Health issues', 1, '2023-03-29 01:01:51', 0, NULL, 0, NULL, 1),
(5578, 12206, 'It boundaries technology solution', 'Mis executive ', '2021-11-01', 18000.00, '2022-10-31', 18000.00, 'Cit nagar', '1', '0 years 11 months', 'No pf', 1, '2023-03-29 03:29:28', 0, NULL, 0, NULL, 1),
(5579, 12206, 'Cams pvt', 'Cso', '2016-08-09', 11400.00, '2017-12-14', 12450.00, 'Mount road', '1', '1 years 4 months', 'Doing business', 1, '2023-03-29 03:31:38', 0, NULL, 0, NULL, 1),
(5580, 12206, 'Transcend india pvt ltd', 'Work flow coordinator', '2014-09-05', 9500.00, '2016-03-09', 10500.00, 'Thiruvanmiur', '1', '1 years 6 months', 'Too far from my house', 1, '2023-03-29 03:35:00', 0, NULL, 0, NULL, 1),
(5581, 12207, 'HRMT finance services pvt limited ', 'No', '2021-01-20', 13000.00, '2022-03-07', 13000.00, 'Padi', '1', '1 years 1 months', ' For my personal issue', 1, '2023-03-29 05:52:13', 0, NULL, 0, NULL, 1),
(5582, 9060, 'Nexusi innovative solutions', 'Catalog analyst', '2022-12-07', 18000.00, '2023-04-01', 18000.00, 'Mylapore ', '1', '0 years 3 months', ' Salary issue', 1, '2023-03-29 08:05:20', 0, NULL, 0, NULL, 1),
(5583, 12211, 'Accenture ', 'Associate', '2016-10-28', 12500.00, '2017-12-13', 12500.00, 'Shollinganallur, Chennai ', '1', '1 years 1 months', ' Joined through consultancy for one year contract ', 1, '2023-03-30 10:43:42', 0, NULL, 0, NULL, 1),
(5584, 12211, 'ASA and associates ', 'Senior accounting and business support ', '2021-08-02', 16000.00, '2022-11-17', 16000.00, 'Thousand lights, Chennai ', '1', '1 years 3 months', 'Asa and associates work on client project. I was deployed in client place Apollo hospital. The project contract was not extended after one year.', 1, '2023-03-30 10:45:56', 0, NULL, 0, NULL, 1),
(5585, 12210, 'Sri Vigneshwara plastics ', 'Product management trainee ', '2021-12-01', 13000.00, '2023-01-03', 15000.00, 'Chennai ', '1', '1 years 1 months', ' Career switch ', 1, '2023-03-30 10:52:30', 0, NULL, 0, NULL, 1),
(5586, 12213, 'Credit mantri (workez)', 'Officers', '2022-10-05', 22000.00, '1970-01-01', 22000.00, 'Thousand light', '2', '0 years 5 months', ' Improve to our knowledge and increase income .', 1, '2023-03-30 11:13:20', 0, NULL, 0, NULL, 1),
(5587, 12219, 'Ntpl', 'Accountant', '2020-12-10', 13000.00, '2021-12-05', 15000.00, 'Tutricorin', '1', '0 years 11 months', ' ', 1, '2023-03-30 12:46:18', 0, NULL, 0, NULL, 1),
(5588, 12221, 'Factentry data solutions ', 'Research analyst', '2022-07-06', 15000.00, '2023-01-09', 15000.00, 'Vellore', '1', '0 years 6 months', ' Personal reasons ', 1, '2023-03-30 01:06:06', 0, NULL, 0, NULL, 1),
(5589, 12224, 'PSRTEK ', 'Talent Acquisition Specialist ', '2022-06-06', 156000.00, '1970-01-01', 156000.00, 'Chennai ', '2', '0 years 9 months', ' Better Opportunity ', 1, '2023-03-31 09:49:03', 0, NULL, 0, NULL, 1),
(5590, 12232, 'Infosearch bpo services ', 'Process Executive ', '2021-02-12', 10000.00, '2022-12-03', 13000.00, 'Chennai  ', '1', '1 years 9 months', ' Carrier growth ', 1, '2023-03-31 11:20:38', 0, NULL, 0, NULL, 1),
(5591, 12236, 'TNQ technology (Books and Journals publishing)', 'XML-Data Conversion Associate', '2019-11-04', 10300.00, '2021-10-18', 12000.00, 'SRP tools, tharamani', '1', '1 years 11 months', ' My project was Completed at the pandemic time that\'s why.', 1, '2023-03-31 01:14:48', 0, NULL, 0, NULL, 1),
(5592, 12245, 'Cognizant technology solutions ', 'Process executive ', '2021-11-18', 15000.00, '2022-11-22', 17000.00, 'Chennai ', '1', '1 years 0 months', ' Because of night shift, I\'m unable to continue in that organisation.', 1, '2023-04-01 02:25:56', 0, NULL, 0, NULL, 1),
(5593, 12249, 'Fldec Systems ', 'HR Recruiter ', '2022-11-25', 16000.00, '2023-02-10', 16000.00, 'Chennai Guindy ', '1', '0 years 2 months', ' Not comfortable with location and work timings ', 1, '2023-04-03 10:39:30', 0, NULL, 0, NULL, 1),
(5594, 12227, 'Capgemini ', 'Health care support associate ', '2022-06-01', 29000.00, '2022-12-01', 29000.00, 'Sholinganallur', '1', '0 years 5 months', 'The company project was closed So I have left the job', 1, '2023-04-03 10:47:09', 0, NULL, 0, NULL, 1),
(5595, 12227, 'Sutherland ', 'Customer support associate for Amazon ', '2020-06-03', 18500.00, '2022-06-08', 18500.00, 'Perungallathur', '1', '2 years 0 months', 'I have received best offer from Capgemini ', 1, '2023-04-03 10:50:20', 0, NULL, 0, NULL, 1),
(5596, 12247, 'Cognizant technology solutions ', 'Process Executive ', '2021-11-18', 15000.00, '2023-02-28', 16000.00, 'Okkiyam pattai, thoraipakam,Chennai ', '1', '1 years 3 months', ' I left for an apportunity to advance my Career. I need to change environment to me.', 1, '2023-04-03 11:55:13', 0, NULL, 0, NULL, 1),
(5597, 12247, 'Cognizant technology solutions ', 'Process Executive ', '2021-11-18', 15000.00, '2023-02-28', 16000.00, 'thoraipakam, chennai ', '1', '1 years 3 months', 'I left for an apportunity to advance my career.', 1, '2023-04-03 11:56:42', 0, NULL, 0, NULL, 1),
(5598, 12264, 'access healthcare', 'client partner', '2018-01-18', 13000.00, '2020-12-03', 14700.00, 'chennai', '1', '2 years 10 months', ' Night shift ', 1, '2023-04-03 06:57:29', 1, '2023-04-03 06:59:38', 0, NULL, 1),
(5599, 12264, 'ags healthcare', 'process associate level two', '2020-12-04', 17500.00, '2021-09-30', 18900.00, 'chennai', '1', '0 years 9 months', 'For higher studies', 1, '2023-04-03 06:59:14', 0, NULL, 0, NULL, 1),
(5600, 12264, 'focus edumatics', 'hr assistant', '2022-12-23', 18000.00, '2023-03-15', 18000.00, 'chennai', '1', '0 years 2 months', 'Due to season entire team laid off.', 1, '2023-04-03 07:01:43', 0, NULL, 0, NULL, 1),
(5601, 12269, 'Job seeks4u consultancy', 'Hr', '2021-04-05', 15000.00, '2022-10-21', 15000.00, 'Anna nagar', '1', '1 years 6 months', 'Salary issue', 1, '2023-04-04 11:47:43', 0, NULL, 0, NULL, 1),
(5602, 12289, 'SitusAMC India Private limited ', 'Process Associate ', '2021-01-07', 10800.00, '2023-02-13', 13500.00, 'Chennai', '1', '2 years 1 months', ' ', 1, '2023-04-05 01:34:31', 0, NULL, 0, NULL, 1),
(5603, 12290, 'SitusAMC India Private Limited ', 'Senior Process Associate ', '2019-04-29', 10000.00, '2023-02-16', 18000.00, 'Chennai', '1', '3 years 9 months', ' Company went into loss ', 1, '2023-04-05 01:36:42', 0, NULL, 0, NULL, 1),
(5604, 12295, 'Sterlite technologies ', 'Graduate engineer trainee ', '2023-01-02', 57000.00, '2023-03-24', 40000.00, 'Bangalore ', '1', '0 years 2 months', ' I got terminated ', 1, '2023-04-06 11:14:08', 0, NULL, 0, NULL, 1),
(5605, 12296, 'Tata consultancy services ', 'Programmer ', '2021-02-11', 192000.00, '2022-10-17', 252000.00, 'Chennai', '1', '1 years 8 months', 'For career transition ', 1, '2023-04-06 11:57:00', 0, NULL, 0, NULL, 1),
(5606, 12300, 'vizza insurance ', 'acting team leader', '2020-12-14', 10000.00, '2023-02-28', 13000.00, 'chennai ', '1', '2 years 2 months', ' Looking for hike and growth in car ', 1, '2023-04-06 02:39:42', 0, NULL, 0, NULL, 1),
(5607, 12302, 'Rajamahendri Institute of engineering and technolo', 'Head of placement', '2017-08-11', 29000.00, '2020-01-28', 29000.00, 'Rajahmundry', '1', '2 years 5 months', ' Growth', 1, '2023-04-06 02:44:43', 0, NULL, 0, NULL, 1),
(5608, 12301, 'Vizza insurance ', 'ATL ', '2020-09-18', 9000.00, '2023-02-28', 13000.00, 'Saidapet Chennai ', '1', '2 years 6 months', 'Next level designation', 1, '2023-04-06 02:59:19', 0, NULL, 0, NULL, 1),
(5609, 12307, 'Intelleno consultancy ', 'Talent Acquisition ', '2021-11-22', 12000.00, '2022-06-21', 12000.00, 'Chennai ', '1', '0 years 6 months', ' Location issue ', 1, '2023-04-06 05:38:47', 0, NULL, 0, NULL, 1),
(5610, 12307, 'Triumph IT solutions ', 'Talent Acquisition ', '2022-06-22', 16000.00, '2022-11-22', 16000.00, 'Chennai ', '1', '0 years 5 months', 'Due to clients have stopped giving requirements to them,they have asked us to take career break ,so we left the company ', 1, '2023-04-06 05:41:31', 0, NULL, 0, NULL, 1),
(5611, 12307, 'CIEL HR', 'Intern non IT', '2022-12-12', 17000.00, '1970-01-01', 17000.00, 'Chennai ', '2', '0 years 3 months', 'I finished my internship so I\'m reliving,also I\'m expert in IT recruitment i don\'t like non IT recruitment as a full time ', 1, '2023-04-06 05:43:22', 0, NULL, 0, NULL, 1),
(5612, 12309, 'Novac technology solution', 'Customer service executive', '2023-04-07', 14000.00, '2023-05-01', 14000.00, 'Chennai', '1', '0 years 0 months', 'Salary very low', 1, '2023-04-07 07:15:07', 0, NULL, 0, NULL, 1),
(5613, 12317, 'Innovsource Services Private limited ', 'Team leader ', '2020-11-12', 20000.00, '2023-03-31', 24000.00, 'Chennai ', '1', '2 years 4 months', ' Some personal issues ', 1, '2023-04-07 12:51:30', 0, NULL, 0, NULL, 1),
(5614, 12316, 'Chola Mandalam investment and finance pvt Ltd ', 'Junior Officer ', '2021-03-03', 15000.00, '2022-05-20', 28000.00, 'Chennai ', '1', '1 years 2 months', 'Health issues ', 1, '2023-04-07 01:24:04', 0, NULL, 0, NULL, 1),
(5615, 12323, 'Crown Solution pvt limited', 'java Developer ', '2022-02-04', 30000.00, '2023-01-05', 30000.00, 'chennai', '1', '0 years 11 months', ' I was not let to become and work in tcs as a permanent employee and thwre was a huge salary issue', 1, '2023-04-07 03:53:03', 0, NULL, 0, NULL, 1),
(5616, 12326, 'Lemon peak ', 'Senior sales associate ', '2022-04-09', 24000.00, '2023-01-13', 24000.00, 'Chennai ', '1', '0 years 9 months', ' Layoff', 1, '2023-04-08 12:35:59', 0, NULL, 0, NULL, 1),
(5617, 12327, 'Quess corp ', 'HR Recruiter ', '2022-06-06', 20793.00, '2023-02-14', 20793.00, 'Nandanam ', '1', '0 years 8 months', ' Client cordinate not improving next level difficult ', 1, '2023-04-08 03:02:46', 0, NULL, 0, NULL, 1),
(5618, 12328, 'Radiance solution', 'Sales Executive ', '2015-07-01', 15000.00, '2017-12-31', 15000.00, 'Chennai', '1', '2 years 6 months', 'Nothing some family issue', 1, '2023-04-08 03:25:28', 0, NULL, 0, NULL, 1),
(5619, 12329, 'Tata consultancy services TCS', 'Process associate', '2018-05-02', 1.56, '2019-08-30', 1.56, 'Spencer plaza ', '1', '1 years 3 months', 'I have health issues because of job is in rotational Shift', 1, '2023-04-10 07:54:40', 1, '2023-04-10 07:55:33', 0, NULL, 1),
(5620, 12329, 'Forsan Foods & Consumer Products India PVT ltd', 'Accountant ', '2022-09-12', 2.40, '2023-03-30', 2.40, 'Adambakkam', '1', '0 years 6 months', 'Office location is long distance ', 1, '2023-04-10 08:01:06', 0, NULL, 0, NULL, 1),
(5621, 12331, 'Allset business solutions ', 'Bpo ', '2019-06-13', 10000.00, '2023-03-10', 15000.00, 'Thousands light ', '1', '3 years 8 months', ' Process closed', 1, '2023-04-10 10:17:01', 0, NULL, 0, NULL, 1),
(5622, 12334, 'imayavarman ', 'Teller callings', '2022-06-04', 12000.00, '2023-03-10', 15000.00, 'Chennai ', '1', '0 years 9 months', ' ', 1, '2023-04-10 11:34:27', 0, NULL, 0, NULL, 1),
(5623, 12340, 'Computer age management services pvt.ltd ', 'APO', '2021-10-21', 10000.00, '2023-02-04', 12000.00, 'Nungambakkam ', '1', '1 years 3 months', 'There is no growth in that company Iam looking Forward to  new responsibilities that my current role doesn\'t offer. my current company doesn\'t use any of my skills and I would like to find something new challenging. ', 1, '2023-04-10 01:27:24', 0, NULL, 0, NULL, 1),
(5624, 12341, 'Rajalakshmi eduverse', 'Admission excutive ', '2022-08-17', 23000.00, '2023-02-25', 23000.00, 'Chennai ', '1', '0 years 6 months', ' Actually I have 2 years experience in business Development Executive and Associates I achieved consistent target  but I want to move on my carrier growth so want to move on better Company.', 1, '2023-04-10 02:20:34', 0, NULL, 0, NULL, 1),
(5625, 12343, 'Think and Learn private limited ', 'Business Development Executive ', '2021-10-01', 25000.00, '2022-09-29', 26000.00, 'Chennai ', '1', '0 years 11 months', ' I want to move on better Job and improve my skills ', 1, '2023-04-10 02:37:36', 0, NULL, 0, NULL, 1),
(5626, 12344, 'LIKEWIZE LLP ', 'QA Tester ', '2022-07-01', 300000.00, '2023-04-30', 300000.00, 'Chennai ', '1', '0 years 9 months', ' Exploring opportunities in developing field', 1, '2023-04-10 04:55:23', 0, NULL, 0, NULL, 1),
(5627, 12337, 'tcs', 'trainee', '2014-08-04', 13000.00, '2016-04-04', 13000.00, 'chennai', '1', '1 years 8 months', ' marriage', 1, '2023-04-10 05:41:27', 0, NULL, 0, NULL, 1),
(5628, 12337, 'equiniti india pvt ltd', 'process associate ', '2016-04-15', 20000.00, '2018-08-24', 20000.00, 'dlf', '1', '2 years 4 months', 'Maternity ', 1, '2023-04-10 05:44:43', 0, NULL, 0, NULL, 1),
(5629, 12337, 'wipro', 'processor', '2019-11-04', 25000.00, '2020-12-08', 25000.00, 'chennai', '1', '1 years 1 months', 'LOCKDOWN ', 1, '2023-04-10 05:48:36', 0, NULL, 0, NULL, 1),
(5630, 12337, 'hcl tech', 'analyst ', '2021-07-22', 26000.00, '2023-03-17', 28000.00, 'shozinganallur ', '1', '1 years 7 months', 'career growth', 1, '2023-04-10 05:50:06', 0, NULL, 0, NULL, 1),
(5631, 12349, 'advan crop serve ', 'tnagar ', '2023-04-10', 1.00, '2023-06-08', 1.00, 'tnagar ', '1', '0 years 1 months', ' Want high ', 1, '2023-04-10 07:33:20', 0, NULL, 0, NULL, 1),
(5632, 12335, 'Vizza investment center', 'MIS EXECUTIVE ', '2021-07-05', 12000.00, '2021-09-01', 12000.00, 'CIT nagar', '1', '0 years 1 months', ' Project closed', 1, '2023-04-11 10:46:12', 0, NULL, 0, NULL, 1),
(5633, 12335, 'Jubilant insurance broking service pvt ltd', 'Executive -operations', '2021-09-01', 16000.00, '2023-02-28', 16000.00, 'Chennai', '1', '1 years 5 months', 'Personal resons', 1, '2023-04-11 10:49:24', 0, NULL, 0, NULL, 1),
(5634, 12357, 'Phone pe', 'BDA', '2022-04-14', 23000.00, '2023-03-09', 23000.00, 'Porur ', '1', '0 years 10 months', ' Outdoor sales', 1, '2023-04-11 01:57:52', 0, NULL, 0, NULL, 1),
(5635, 12358, 'Eximio and solutions private limited ', 'Process associate ', '2020-12-23', 12000.00, '2023-01-12', 17000.00, 'Ambatur ', '1', '2 years 0 months', ' Health issue ', 1, '2023-04-11 03:05:55', 0, NULL, 0, NULL, 1),
(5636, 12362, 'Omega healthcare', 'Ar caller', '2022-07-05', 15000.00, '2023-01-28', 17000.00, 'Chennai', '1', '0 years 6 months', ' Project over', 1, '2023-04-11 05:33:29', 0, NULL, 0, NULL, 1),
(5637, 12363, 'flipcart(jeeves)', 'quality checking auditor', '2020-04-11', 200000.00, '2022-12-28', 240000.00, 'keelkatalai', '1', '2 years 8 months', ' project disclosed', 1, '2023-04-11 06:16:50', 0, NULL, 0, NULL, 1),
(5638, 12368, 'HDB Financial services ', 'Senior Telecaller ', '2021-07-24', 10000.00, '2023-04-01', 15000.00, 'Thousand Lights, Chennai ', '1', '1 years 8 months', ' I need to Develop my Career and Knowledge and to Learn new  things', 1, '2023-04-12 11:09:31', 0, NULL, 0, NULL, 1),
(5639, 12369, 'Aswini', 'B.com', '2020-11-08', 9500.00, '2023-02-28', 11000.00, 'Gemini bridge', '1', '2 years 3 months', ' Less Galary thats why I resigned the job', 1, '2023-04-12 11:13:36', 0, NULL, 0, NULL, 1),
(5640, 12367, 'PRECISION INFOMATIC', 'DESKTOP COMPUTER ', '2018-06-01', 11000.00, '2019-04-12', 12000.00, 'CHENNAI ', '1', '0 years 10 months', ' ALL INDIA PROJECT ', 1, '2023-04-12 11:21:36', 0, NULL, 0, NULL, 1),
(5641, 12367, 'ALLSEC TECHNOLOGIES ', 'CUSTOMER CARE EXECUTIVE ', '2019-03-01', 15000.00, '2020-12-31', 18000.00, 'VELACHERY ', '1', '1 years 10 months', 'HAND FRACTURE ', 1, '2023-04-12 11:23:36', 0, NULL, 0, NULL, 1),
(5642, 12348, 'AMTEX software ', 'Call officer ', '2022-01-20', 16000.00, '2023-04-10', 20000.00, 'Chengalpattu', '1', '1 years 2 months', ' Some learning ', 1, '2023-04-12 12:00:48', 0, NULL, 0, NULL, 1),
(5643, 12373, 'CAMS', 'Senior Customer Support Executive ', '2021-11-18', 15000.00, '2023-04-04', 16000.00, 'LIC mount road', '1', '1 years 4 months', ' Current salary is not manageable by me. While working there is no break end all. I have taken inbound, Outbound call , Email.', 1, '2023-04-12 01:25:26', 0, NULL, 0, NULL, 1),
(5644, 12374, 'Auto science', 'Telecalling ', '2022-04-06', 2.00, '2023-04-01', 15000.00, 'Guindy', '1', '0 years 11 months', ' Travell issue', 1, '2023-04-12 02:34:40', 0, NULL, 0, NULL, 1),
(5645, 12377, 'BVR PEOPLE CONSULTING ', 'Talent Acquisition ', '2022-08-01', 18000.00, '1970-01-01', 18000.00, 'Avadi', '2', '0 years 8 months', 'Currently working in consulting, Looking for change in organisation manner.', 1, '2023-04-12 10:55:49', 0, NULL, 0, NULL, 1),
(5646, 12385, 'Customer  support  executive ', 'Non voice process ', '2021-02-15', 17.00, '2023-04-15', 17.00, 'CHENNAI', '1', '2 years 1 months', ' Change new role', 1, '2023-04-13 12:37:45', 0, NULL, 0, NULL, 1),
(5647, 12388, 'hdfc limitd', 'relationship manager', '2022-08-08', 9.00, '1970-01-01', 22.00, 'perungudi', '2', '0 years 8 months', ' It’s very good to work in that offIce.I changing for my future growth ', 1, '2023-04-13 02:53:18', 0, NULL, 0, NULL, 1),
(5648, 12391, 'Allset business solution', 'HR recuiter', '2023-01-02', 18000.00, '2023-04-12', 18000.00, 'Thousands lights', '1', '0 years 3 months', ' I will be reach home at 9:30 ', 1, '2023-04-13 06:10:39', 0, NULL, 0, NULL, 1),
(5649, 12393, 'kfc restauant', 'supervisor', '2018-06-18', 13000.00, '2019-12-11', 15000.00, 't nagar', '1', '1 years 5 months', ' Health issues\n', 1, '2023-04-15 10:09:16', 0, NULL, 0, NULL, 1),
(5650, 12393, 'medianews4u', 'backend operations', '2020-01-26', 13000.00, '1970-01-01', 20000.00, 'kodambakkam', '2', '3 years 2 months', 'Growth', 1, '2023-04-15 10:10:33', 0, NULL, 0, NULL, 1),
(5651, 12393, 'cream stone ', 'store manager', '2022-06-11', 17000.00, '2022-12-31', 17000.00, 't nagar', '1', '0 years 6 months', 'night shift', 1, '2023-04-15 10:11:54', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5652, 12393, 'timac agro', 'social media marketing manager', '2022-01-09', 25000.00, '2022-04-23', 25000.00, 'nungambakkam', '1', '0 years 3 months', 'personal issues', 1, '2023-04-15 10:12:53', 0, NULL, 0, NULL, 1),
(5653, 12396, 'Amico software solutions ', 'Flutter Developer ', '2022-09-21', 350000.00, '1970-01-01', 350000.00, 'Chennai', '2', '0 years 6 months', ' Small Company, Insecure job', 1, '2023-04-15 10:21:09', 0, NULL, 0, NULL, 1),
(5654, 12397, 'Mobile application developer', ' Android Developer', '2022-01-16', 2.00, '2023-03-16', 3.00, 'Omr', '1', '1 years 2 months', ' Insecure job', 1, '2023-04-15 10:32:45', 0, NULL, 0, NULL, 1),
(5655, 12397, 'AEL Data', 'Photoshop editor', '2020-03-10', 170000.00, '2023-01-10', 170000.00, 'Porur', '1', '2 years 10 months', 'Salary ', 1, '2023-04-15 10:35:17', 0, NULL, 0, NULL, 1),
(5656, 12398, 'Hdfc home loans pvt Ltd ', 'Relationship officer ', '2022-11-07', 19000.00, '1970-01-01', 19000.00, 'PERUNGUDi ', '2', '0 years 5 months', ' Looking for short distance work ', 1, '2023-04-15 11:50:56', 0, NULL, 0, NULL, 1),
(5657, 12392, 'sutherland', 'customer service associate', '2021-09-11', 12000.00, '2022-12-23', 18000.00, 'perungalathur', '1', '1 years 3 months', ' ', 1, '2023-04-15 12:27:20', 0, NULL, 0, NULL, 1),
(5658, 12406, 'Tillvaxt HR solution ', 'Hr Recruiter ', '2022-12-14', 14500.00, '1970-01-01', 14500.00, 'Chennai ', '2', '0 years 4 months', ' Partnership firm,  no PF & ESI', 1, '2023-04-17 10:38:49', 0, NULL, 0, NULL, 1),
(5659, 12412, 'Sutherland ', 'Trainee', '2016-11-01', 18000.00, '2018-02-01', 18000.00, 'Chennai ', '1', '1 years 3 months', ' Project wind up', 1, '2023-04-17 11:09:19', 0, NULL, 0, NULL, 1),
(5660, 12412, 'AM Jain College ', 'Assistant Professor ', '2018-02-01', 20000.00, '2019-05-31', 20000.00, 'Meenambakkam', '1', '1 years 3 months', 'As per UGC norms not eligible ', 1, '2023-04-17 11:10:25', 0, NULL, 0, NULL, 1),
(5661, 12412, 'Srinsoft Technologies ', 'API Trainee ', '2019-11-13', 15000.00, '2021-02-01', 15000.00, 'Saidapet ', '1', '1 years 2 months', 'Due to Covid Pandamic', 1, '2023-04-17 11:11:44', 0, NULL, 0, NULL, 1),
(5662, 12412, 'mRS Construction ', 'Engineer ', '2021-02-02', 25000.00, '2022-05-25', 25000.00, 'Chennai ', '1', '1 years 3 months', 'Due to lack of project ', 1, '2023-04-17 11:13:00', 0, NULL, 0, NULL, 1),
(5663, 12412, 'Dhanish Matric Hr Sec School ', 'Campus Supervisor ', '2022-05-27', 20000.00, '1970-01-01', 22000.00, 'Kolathur ', '2', '0 years 10 months', 'No career growth ', 1, '2023-04-17 11:14:39', 0, NULL, 0, NULL, 1),
(5664, 12418, 'Frisa Private limited', 'Financial advisor', '2022-06-16', 8000.00, '2023-04-17', 12000.00, 'Amjikarai', '1', '0 years 10 months', ' Due To very low salary I was forced to stop', 1, '2023-04-17 12:13:21', 0, NULL, 0, NULL, 1),
(5665, 12417, 'Institute of mental health ', 'AO', '2021-02-17', 16500.00, '1970-01-01', 17000.00, 'Kilpak aynavaram ', '2', '2 years 2 months', ' Project finished ', 1, '2023-04-17 12:15:08', 0, NULL, 0, NULL, 1),
(5666, 12419, 'IDBI federal life insurance company ', 'Insurance agent ', '2019-01-22', 4500.00, '2021-09-30', 4500.00, 'Erode', '1', '2 years 8 months', ' Family issues ', 1, '2023-04-17 01:02:16', 0, NULL, 0, NULL, 1),
(5667, 12419, 'Vizza Investment Centre ', 'Telecalling executive ', '2022-08-26', 10000.00, '2023-02-08', 15000.00, 'Chennai ', '1', '0 years 5 months', 'Incentives issue ', 1, '2023-04-17 01:03:58', 0, NULL, 0, NULL, 1),
(5668, 12422, 'Motilal Oswal financial services ', 'Finance advisor ', '2022-10-04', 20000.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 6 months', ' For gaining better experience and career growth', 1, '2023-04-17 01:35:41', 0, NULL, 0, NULL, 1),
(5669, 12423, 'Aditya Birla Capitals ', 'Customer support executive ', '2022-03-24', 23000.00, '2023-03-31', 23000.00, 'T.nagar', '1', '1 years 0 months', ' Off role employee', 1, '2023-04-17 01:57:41', 0, NULL, 0, NULL, 1),
(5670, 12421, 'tata consultancy services', 'msi executive', '2019-08-20', 220000.00, '2021-10-29', 250000.00, 'chennai', '1', '2 years 2 months', ' For professional development', 1, '2023-04-17 03:31:17', 0, NULL, 0, NULL, 1),
(5671, 12425, 'Tata consultancy services ', 'Process Associate ', '2020-01-22', 245000.00, '2022-12-12', 300000.00, 'DLF Manapakkam ', '1', '2 years 10 months', ' Monther in law moved to California for her younger daughter in law maternity no one is here to take care of my son. So i relieved from TCS and now she is back to India.', 1, '2023-04-17 06:54:54', 0, NULL, 0, NULL, 1),
(5672, 12428, 'HDB financial services', 'Collection Executive ', '2022-05-18', 15000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '0 years 11 months', ' Family issues ', 1, '2023-04-18 10:47:55', 0, NULL, 0, NULL, 1),
(5673, 12431, 'star health insur ', 'Senior sale excutior ', '2021-02-09', 28000.00, '2023-01-11', 38000.00, 'hennai', '1', '1 years 11 months', ' Personal medi iss for my mo ', 1, '2023-04-18 10:55:29', 0, NULL, 0, NULL, 1),
(5674, 12432, 'Bharath matrimony', 'Relationship manager', '2022-08-05', 26.00, '2023-04-04', 3.60, 'Bangalore', '1', '0 years 7 months', ' Long location', 1, '2023-04-18 12:07:38', 0, NULL, 0, NULL, 1),
(5675, 12441, 'Algriya Hollidays ', 'Tellicaller ', '2023-01-17', 13000.00, '2023-03-15', 11400.00, 'Kodambakkam ', '1', '0 years 1 months', ' Company was closed ', 1, '2023-04-18 02:41:07', 0, NULL, 0, NULL, 1),
(5676, 12442, 'Manju groups realstate', 'Telecaller ', '2022-08-02', 15000.00, '2022-12-31', 13800.00, 'Vadaplani', '1', '0 years 4 months', ' My mother health issues ', 1, '2023-04-18 02:55:09', 0, NULL, 0, NULL, 1),
(5677, 12440, 'Algriya Hollidays ', 'Tellicaller ', '2023-01-26', 13000.00, '2023-03-13', 11000.00, 'Kodambakkam ', '1', '0 years 1 months', ' Company was closed ', 1, '2023-04-18 03:06:03', 0, NULL, 0, NULL, 1),
(5678, 12443, 'TNQ TECHNOLOGIES PVT LTD', 'QC', '2019-10-16', 11000.00, '2022-12-19', 17000.00, 'CHENNAI', '1', '3 years 2 months', ' Salary didn\'t increase, they didn\'t give higher position...', 1, '2023-04-19 12:28:27', 0, NULL, 0, NULL, 1),
(5679, 12450, 'Fueldigi Marketing pvt Ltd', 'Web developer ', '2021-11-01', 10000.00, '2023-04-01', 12000.00, 'Velachery', '1', '1 years 5 months', ' To work with a fresh environment and learn new things to gain my knowledge', 1, '2023-04-20 11:15:22', 0, NULL, 0, NULL, 1),
(5680, 12456, 'Jr Banking Solution ', 'Executive ', '2020-06-20', 18000.00, '2021-08-20', 18000.00, 'Chennai ', '1', '1 years 2 months', 'Career Development ', 1, '2023-04-20 01:05:37', 0, NULL, 0, NULL, 1),
(5681, 12463, 'Cube 45', 'Web designer ', '2022-04-19', 25000.00, '2023-04-18', 25000.00, 'Chennai ', '1', '0 years 11 months', ' For my career growth and salary was very delayed ', 1, '2023-04-21 09:49:14', 0, NULL, 0, NULL, 1),
(5682, 12464, 'Religare broking Ltd ', 'Equity Dealer ', '2021-06-14', 102000.00, '2022-11-30', 102000.00, 'Cuddalore ', '1', '1 years 5 months', ' Need to change location at Chennai. ', 1, '2023-04-21 11:01:24', 0, NULL, 0, NULL, 1),
(5683, 12464, 'Motilal oswal financial services Ltd ', 'Equity advisor ', '2023-01-09', 250000.00, '1970-01-01', 250000.00, 'Chennai ', '2', '0 years 3 months', 'Need to change my work field for my willingness.  My wishes is to go for HR.\nWorking under selling pressure. ', 1, '2023-04-21 11:03:04', 1, '2023-04-21 11:03:31', 0, NULL, 1),
(5684, 12471, 'I marque solutions ', 'Hr ', '2022-04-21', 12000.00, '2023-01-30', 12000.00, 'Chennai', '1', '0 years 9 months', ' ', 1, '2023-04-21 06:23:55', 0, NULL, 0, NULL, 1),
(5685, 12472, 'Rajalakshmi cars pvt ltd ', 'Relationship manager ', '2021-01-18', 24000.00, '2023-02-03', 24000.00, 'Chennai ', '1', '2 years 0 months', 'Want to learn new things ant other products ', 1, '2023-04-22 10:36:09', 0, NULL, 0, NULL, 1),
(5686, 12470, 'Afynd pvt ltd', 'HR Recruiter ', '2022-04-11', 12800.00, '2023-03-04', 18000.00, 'Alwarthirunagar ', '1', '0 years 10 months', ' I  had health issue (Dust allergy) because of that I was not able to continue it was mandatory for me to take atleast a month. Now perfectly recovered and ready to switch on the job.', 1, '2023-04-22 10:59:28', 0, NULL, 0, NULL, 1),
(5687, 12473, 'Casagrand pvt ltd', 'Telemarketing', '2021-12-06', 21000.00, '2023-02-15', 28000.00, 'Thuruvanmiyur', '1', '1 years 2 months', ' I am. Form mylapore... Now I am getting married . Now I am in aminjikarai. . That\'s y I am Relieving my job.... ', 1, '2023-04-22 11:46:53', 0, NULL, 0, NULL, 1),
(5688, 12481, 'SNN TECHNOLOGIES', 'Senior executive', '2019-10-09', 17000.00, '2022-10-19', 21000.00, 'Kormangla, banglore', '1', '3 years 0 months', ' Personal', 1, '2023-04-23 09:10:55', 0, NULL, 0, NULL, 1),
(5689, 12481, 'Finnovation technologies pvt. Ltd', 'Finance', '2023-01-02', 21000.00, '1970-01-01', 21000.00, 'Banglore', '2', '0 years 3 months', 'Need a hike from the salary', 1, '2023-04-23 09:12:30', 0, NULL, 0, NULL, 1),
(5690, 12486, 'Schawk india pvt Ltd', 'Senior quality control inspector', '2021-04-05', 67000.00, '1970-01-01', 86000.00, 'Perungudi', '2', '2 years 0 months', ' Improving my career', 1, '2023-04-24 12:08:33', 0, NULL, 0, NULL, 1),
(5691, 12488, 'Ffreedom.com', 'Associative sales manager ', '2022-11-14', 25000.00, '2023-04-06', 25000.00, 'Bengaluru', '1', '0 years 4 months', ' Family situation', 1, '2023-04-24 12:08:51', 0, NULL, 0, NULL, 1),
(5692, 12491, 'Rbl bank ', 'Credit card ', '2021-10-10', 9000.00, '2023-02-05', 15000.00, 'Central ', '1', '1 years 3 months', ' Office Shifting For Other Location ', 1, '2023-04-24 01:51:25', 0, NULL, 0, NULL, 1),
(5693, 12490, 'Bajaj finance ', 'Emi collection ', '2022-09-05', 12000.00, '2023-03-10', 13000.00, 'Egmore ', '1', '0 years 6 months', ' Timing issue ', 1, '2023-04-24 02:14:59', 0, NULL, 0, NULL, 1),
(5694, 12494, 'The Greater chennai corporation ', 'Sanitary Inspector ', '2020-08-26', 25000.00, '2023-04-08', 26500.00, 'Ambattur', '1', '2 years 7 months', ' This is the contract job, contract was closed ', 1, '2023-04-24 05:08:26', 0, NULL, 0, NULL, 1),
(5695, 12494, 'The Stanplus Pvt Ltd ', 'Hospital Relationship Manager ', '2022-11-01', 26500.00, '2023-04-08', 26500.00, 'Mylapore ', '1', '0 years 5 months', 'Tieup with hospital was closed', 1, '2023-04-24 05:10:08', 0, NULL, 0, NULL, 1),
(5696, 12498, 'Grandmagnum housing private limited ', 'Digital marketing intern', '2022-11-11', 10000.00, '2023-01-27', 12000.00, 'Chennai', '1', '0 years 2 months', ' 3month internship program ', 1, '2023-04-24 10:45:28', 0, NULL, 0, NULL, 1),
(5697, 12498, 'Freelance ', 'Digital marketing freelance ', '2022-07-08', 7000.00, '2022-08-12', 10000.00, 'Surandai/Tenkasi', '1', '0 years 1 months', 'Freelance', 1, '2023-04-24 10:46:41', 0, NULL, 0, NULL, 1),
(5698, 12498, 'Ekart logistics ', 'Senior assistant ', '2022-09-09', 13000.00, '2022-10-28', 13000.00, 'Chennai', '1', '0 years 1 months', 'I plan to Studying for digital marketing', 1, '2023-04-24 10:48:19', 0, NULL, 0, NULL, 1),
(5699, 12499, 'Vi cellular limited ', 'Mis executive ', '2022-06-02', 17000.00, '1970-01-01', 17000.00, 'Teynampet ', '2', '0 years 10 months', ' ', 1, '2023-04-25 10:01:48', 0, NULL, 0, NULL, 1),
(5700, 12499, 'Vi cellular limited ', 'Mis executive ', '2022-06-02', 17000.00, '1970-01-01', 17000.00, 'Teynampet ', '2', '0 years 10 months', 'Location change ', 1, '2023-04-25 10:03:01', 0, NULL, 0, NULL, 1),
(5701, 12499, 'Vi cellular limited ', 'Mis executive ', '2022-06-02', 17000.00, '1970-01-01', 17000.00, 'Teynampet ', '2', '0 years 10 months', 'Change location ', 1, '2023-04-25 10:06:20', 0, NULL, 0, NULL, 1),
(5702, 12504, 'the digital fomo', 'ui ux designer', '2022-01-17', 25000.00, '2023-04-21', 27000.00, 'chennai', '1', '1 years 3 months', ' To betterment for my knowledge', 1, '2023-04-25 11:38:14', 101, '2023-04-25 12:22:09', 0, NULL, 1),
(5703, 12501, 'Marlensoft pvt limited ', 'Product Engineer - trainee', '2022-06-01', 25000.00, '2023-05-08', 25000.00, 'chennai', '1', '0 years 11 months', ' Long distance ', 1, '2023-04-25 12:00:47', 0, NULL, 0, NULL, 1),
(5704, 12507, 'vizza inversment center', 'aidape ', '2022-10-27', 13000.00, '2023-04-07', 13000.00, 'saidape ', '1', '0 years 5 months', ' ', 1, '2023-04-25 01:02:45', 0, NULL, 0, NULL, 1),
(5705, 12507, 'vizza inversment  center ', 'saidapet', '2022-10-27', 13000.00, '2023-04-07', 13000.00, 'saidap ', '1', '0 years 5 months', 'Salary not enoge ', 1, '2023-04-25 01:05:27', 0, NULL, 0, NULL, 1),
(5706, 12487, 'Casagrand', 'Telemarketing ', '2022-02-21', 21000.00, '1970-01-01', 21000.00, 'Thiruvanmiur ', '2', '1 years 2 months', ' Carrier growth ', 1, '2023-04-25 03:15:14', 0, NULL, 0, NULL, 1),
(5707, 12511, 'Tata consultancy services ', 'Process analyst ', '2017-06-30', 17000.00, '2020-03-30', 25000.00, 'Chennai ', '1', '2 years 9 months', ' Government exam preparation ', 1, '2023-04-25 07:28:00', 0, NULL, 0, NULL, 1),
(5708, 12518, 'Aviva life insurance ', 'Senior relationship officer ', '2019-02-27', 250000.00, '2019-07-03', 250000.00, 'Chennai ', '1', '0 years 4 months', ' Tie up came to end ', 1, '2023-04-26 10:35:05', 0, NULL, 0, NULL, 1),
(5709, 12518, 'Sharekhan by bnp pariba', 'Sales executive ', '2017-09-06', 150000.00, '2018-12-27', 180000.00, 'Chennai', '1', '1 years 3 months', 'Onroll issue ', 1, '2023-04-26 10:37:37', 0, NULL, 0, NULL, 1),
(5710, 12516, 'Vcare', 'Ui ux design ', '2022-10-05', 41000.00, '2023-04-14', 41000.00, 'Chennai ', '1', '0 years 6 months', ' For salary issues and career growth ', 1, '2023-04-26 11:15:41', 0, NULL, 0, NULL, 1),
(5711, 11991, 'DDI global tech pvt ltd', 'Team Leader', '2022-11-01', 25000.00, '2023-03-31', 25000.00, 'chennai', '1', '0 years 4 months', ' Project Closed', 1, '2023-04-26 01:06:26', 0, NULL, 0, NULL, 1),
(5712, 12525, 'SunSmart technology', 'Software developer', '2022-11-03', 15000.00, '2023-02-15', 15000.00, 'Chennai', '1', '0 years 3 months', ' No projects in my previous company', 1, '2023-04-26 05:17:11', 0, NULL, 0, NULL, 1),
(5713, 12526, 'Isl', 'Admin', '2023-04-26', 22000.00, '2023-05-11', 22000.00, 'Kolathur', '1', '0 years 0 months', ' Salary delay issues ', 1, '2023-04-26 07:28:16', 0, NULL, 0, NULL, 1),
(5714, 12536, 'Allsec technologies ', 'Cso', '2021-09-05', 18000.00, '1970-01-01', 18000.00, 'Velachery ', '2', '1 years 7 months', 'Personal reasons ', 1, '2023-04-27 12:26:08', 0, NULL, 0, NULL, 1),
(5715, 12541, 'Skill lync ', 'Inside Sales specialist ', '2022-05-19', 27000.00, '2022-07-16', 27000.00, 'Chennai', '1', '0 years 1 months', ' Father Medical issue ', 1, '2023-04-27 05:50:14', 0, NULL, 0, NULL, 1),
(5716, 12541, 'Double Horse Production ', 'Management Associate ', '2022-08-02', 27000.00, '2023-02-01', 27000.00, 'Chennai', '1', '0 years 5 months', 'Project completed', 1, '2023-04-27 05:51:25', 0, NULL, 0, NULL, 1),
(5717, 12544, 'american express', 'senior sales executive', '2018-02-01', 17000.00, '2018-10-31', 20000.00, 'chennai', '1', '0 years 8 months', ' It’s an contract based job', 1, '2023-04-28 11:38:55', 1, '2023-04-28 11:49:11', 0, NULL, 0),
(5718, 12544, 'idbi bank', 'senior sales executive', '2018-11-01', 25000.00, '2019-12-18', 25000.00, 'tambaram', '1', '1 years 1 months', 'Personal reason', 1, '2023-04-28 11:41:46', 0, NULL, 0, NULL, 1),
(5719, 12544, 'akadi products', 'assistant sales manager', '2020-01-02', 23000.00, '2021-03-31', 27000.00, 'thirudivakkam', '1', '1 years 2 months', 'Got better opportunity', 1, '2023-04-28 11:44:05', 0, NULL, 0, NULL, 1),
(5720, 12544, 'fincare small finance bank', 'relationship manager', '2021-06-16', 25000.00, '2022-07-16', 27000.00, 'chennai madipakkam', '1', '1 years 1 months', 'Personal reason  father illness ', 1, '2023-04-28 11:47:48', 0, NULL, 0, NULL, 1),
(5721, 12544, 'american express', 'senior sales executive ', '2018-02-01', 17000.00, '2018-10-31', 18500.00, 'chennai', '1', '0 years 8 months', ' Contract based job', 1, '2023-04-28 11:51:52', 0, NULL, 0, NULL, 1),
(5722, 12551, 'Fabhost websolutions', 'Assistant human resource admin', '2021-08-18', 15.00, '1970-01-01', 20000.00, 'T.nagar', '2', '1 years 8 months', ' I need to learn more and also salary need to increase  ', 1, '2023-04-28 01:39:52', 0, NULL, 0, NULL, 1),
(5723, 12567, 'Edupristine', 'Counsellor sales', '2022-08-19', 17000.00, '2023-04-15', 22000.00, 'Nungambakkam ', '1', '0 years 7 months', ' Shutdown of the center', 1, '2023-04-29 11:10:02', 0, NULL, 0, NULL, 1),
(5724, 12573, 'Alturist technology pvt', 'Emi collection', '2022-03-24', 12000.00, '2023-04-08', 12000.00, 'Chennai', '1', '1 years 0 months', 'Better job', 1, '2023-04-29 11:52:08', 0, NULL, 0, NULL, 1),
(5725, 12572, 'Alturist technology Pvt ', 'Emi collction', '2022-03-24', 12000.00, '2023-04-08', 12000.00, 'Chennai ', '1', '1 years 0 months', ' Better job', 1, '2023-04-29 12:01:36', 0, NULL, 0, NULL, 1),
(5726, 12576, 'Front office executive ', 'Front office executive ', '2021-04-29', 20000.00, '2022-12-01', 20000.00, 'Chennai', '1', '1 years 7 months', ' During meternity ', 1, '2023-04-29 04:04:10', 0, NULL, 0, NULL, 1),
(5727, 12577, 'GG Construction ', 'Site engineer ', '2017-05-02', 15000.00, '2023-04-01', 15000.00, 'Sathyamangalam ', '1', '5 years 10 months', ' Project finished', 1, '2023-04-29 04:14:54', 0, NULL, 0, NULL, 1),
(5728, 12582, 'Allsec Technologies ', 'Customer service executive ', '2022-08-16', 17000.00, '2023-04-10', 17000.00, 'Chennai ', '1', '0 years 7 months', ' ', 1, '2023-05-02 12:13:12', 0, NULL, 0, NULL, 1),
(5729, 12597, 'allsec Technology ', 'Telecaller ', '2022-12-01', 17000.00, '2023-04-08', 17000.00, 'Velachery ', '1', '0 years 4 months', ' ……..', 1, '2023-05-02 12:13:35', 0, NULL, 0, NULL, 1),
(5730, 12600, 'HDFC life insurance', 'System association', '2021-10-01', 12500.00, '2022-09-30', 12500.00, 'T.Nagar', '1', '0 years 11 months', ' ', 1, '2023-05-02 01:02:30', 0, NULL, 0, NULL, 1),
(5731, 12600, 'Cams company', 'Processing officer', '2022-10-11', 16900.00, '1970-01-01', 16900.00, 'Mount road', '2', '0 years 6 months', 'Mother health issues that only .', 1, '2023-05-02 01:04:23', 0, NULL, 0, NULL, 1),
(5732, 12601, 'IndusInd Bank', 'VRM', '2022-05-13', 25062022.00, '2023-03-23', 27000.00, 'Karapakkam, Chennai', '1', '0 years 10 months', 'Personal', 1, '2023-05-02 01:16:02', 0, NULL, 0, NULL, 1),
(5733, 12601, 'Indusind Bank', 'VRM', '2022-05-13', 25062022.00, '2023-03-23', 27000.00, 'Chennai', '1', '0 years 10 months', 'Personal issues', 1, '2023-05-02 01:18:07', 0, NULL, 0, NULL, 1),
(5734, 12610, 'Hooke technology ', 'Flutter developer ', '2022-09-05', 18000.00, '1970-01-01', 18000.00, 'CHENNAI', '2', '0 years 7 months', ' They going to shutdown company ', 1, '2023-05-03 12:27:40', 0, NULL, 0, NULL, 1),
(5735, 12609, 'DXC technology pvt ltd', 'Professional 2', '2010-04-29', 290420100.00, '2022-12-09', 1350000.00, 'Chennai', '1', '12 years 7 months', ' No projects', 1, '2023-05-03 12:28:05', 0, NULL, 0, NULL, 1),
(5736, 12617, 'Altruist Technologies Pvt Ltd', 'MIS Executive', '2021-03-09', 15647.00, '1970-01-01', 15647.00, 'Chennai', '2', '2 years 1 months', ' ', 1, '2023-05-03 02:36:04', 0, NULL, 0, NULL, 1),
(5737, 12618, 'Sahiraahmed', 'Future TL', '2023-05-10', 2.00, '2023-05-13', 17000.00, 'Greams road', '1', '0 years 0 months', 'Salary package is to low so then iam left looking for another job ', 1, '2023-05-03 03:21:14', 0, NULL, 0, NULL, 1),
(5738, 12620, 'Dextra Technologies', 'software developer', '2021-10-18', 15000.00, '2023-05-10', 25000.00, 'chennai', '2', '1 years 6 months', ' Not getting new projects, working only on the 5 projects for a while which we have developed early', 1, '2023-05-03 05:22:45', 1, '2023-05-03 05:27:59', 0, NULL, 1),
(5739, 12620, 'Prognamik technologies', 'web developer', '2021-01-01', 8000.00, '2021-07-31', 8000.00, 'Tirunelveli', '1', '0 years 6 months', 'Lots of pressure on me where am a fresher on that time. So that, it was difficult to me to work under the pressure.', 1, '2023-05-03 05:26:39', 0, NULL, 0, NULL, 1),
(5740, 12635, 'Insurance department ', 'Tellecaller ', '2023-03-23', 15000.00, '2023-05-01', 20000.00, 'Egmore ', '1', '0 years 1 months', 'Worst brand ', 1, '2023-05-04 11:46:07', 0, NULL, 0, NULL, 1),
(5741, 12638, 'Cedar business Solutions ', 'Tele-calling executive', '2022-05-25', 11000.00, '2022-12-02', 11000.00, 'Shenoy nagar chennai', '1', '0 years 6 months', ' Salary is not sufficient ', 1, '2023-05-04 01:53:21', 0, NULL, 0, NULL, 1),
(5742, 12643, 'Kafqa ventures ltd ', 'Sales associate ', '2022-04-12', 320000.00, '2022-06-10', 320000.00, 'Bangalore ', '1', '0 years 1 months', ' Family emergency ', 1, '2023-05-04 08:03:22', 0, NULL, 0, NULL, 1),
(5743, 12645, 'Bajaj allianz insurance ', 'Senior relationship manager ', '2022-09-20', 260000.00, '2023-04-28', 260000.00, 'Vadapalani ', '1', '0 years 7 months', ' Mostly it is of field sales', 1, '2023-05-05 10:05:03', 0, NULL, 0, NULL, 1),
(5744, 12625, 'Lotus enterprises ', 'Telecaler ', '2021-08-30', 10000.00, '2023-05-15', 10000.00, 'Thousand light chennai ', '2', '1 years 8 months', 'Salary issue want hire salary ', 1, '2023-05-05 11:22:52', 0, NULL, 0, NULL, 1),
(5745, 12649, 'ADP india private limited company', 'Auditor', '2022-11-01', 17000.00, '2023-05-05', 17000.00, 'Guindy', '1', '0 years 6 months', ' Project over', 1, '2023-05-05 11:23:07', 0, NULL, 0, NULL, 1),
(5746, 12651, 'SBI Life Insurance company Ltd ', 'Insurance advisor ', '2013-05-03', 200000.00, '1970-01-01', 350000.00, 'Thanjavur ', '2', '10 years 0 months', ' Better Corporate Exposure', 1, '2023-05-05 12:03:59', 0, NULL, 0, NULL, 1),
(5747, 12653, 'Randstand', 'Relationship executive', '2021-01-01', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '2 years 4 months', ' Salary not much', 1, '2023-05-05 12:04:40', 0, NULL, 0, NULL, 1),
(5748, 12657, 'Anand Techverce', 'Seo Analyst ', '2017-11-24', 10000.00, '2019-12-05', 25000.00, 'Chennai ', '1', '2 years 0 months', ' Due to health issues ', 1, '2023-05-05 01:38:51', 0, NULL, 0, NULL, 1),
(5749, 12660, 'Computer age management services', 'Call centre  executive', '2018-07-02', 8000.00, '2023-04-06', 14000.00, 'Chennai', '1', '4 years 9 months', ' As per my Knowledge if we want to grow we have to learn more', 1, '2023-05-05 05:12:24', 0, NULL, 0, NULL, 1),
(5750, 12662, 'Just Dial', 'Business development executive ', '2020-01-06', 24000.00, '2021-07-30', 24000.00, 'Chennai', '1', '1 years 6 months', ' For my career growth ', 1, '2023-05-05 10:53:43', 0, NULL, 0, NULL, 1),
(5751, 12671, 'Star health allied & insurance Pvt ltd', 'Tellecaller', '2019-10-30', 15000.00, '2023-04-19', 24000.00, 'Chennai', '1', '3 years 5 months', ' Rotational night shift ', 1, '2023-05-06 11:01:47', 0, NULL, 0, NULL, 1),
(5752, 12671, 'CHOLAMANDALAM MS GENERAL INSURANCE', 'Sr executive', '2015-06-04', 17000.00, '2018-05-16', 20400.00, 'Chennai', '1', '2 years 11 months', 'Father expired', 1, '2023-05-06 11:04:38', 0, NULL, 0, NULL, 1),
(5753, 12668, 'cognizant technology solutions', 'process Executive ', '2022-03-23', 200000.00, '2023-04-20', 200000.00, 'tambaram chennai', '1', '1 years 0 months', ' Personal reasons ', 1, '2023-05-06 11:06:39', 0, NULL, 0, NULL, 1),
(5754, 12671, 'AASAN retail pvt ltd', 'Sales executive', '2012-03-05', 9500.00, '2015-02-27', 15000.00, 'Chennai', '1', '2 years 11 months', 'Process shut down', 1, '2023-05-06 11:07:26', 0, NULL, 0, NULL, 1),
(5755, 12642, 'Marketsof1', 'Senior Customer support executive', '2019-01-01', 19000.00, '2019-10-08', 19000.00, 'Little mountain', '1', '0 years 9 months', ' Health issue', 1, '2023-05-06 11:40:23', 0, NULL, 0, NULL, 1),
(5756, 12674, 'Shriram chits tamilnadu pvt ltd', 'Sakes', '2019-04-03', 13000.00, '2020-04-30', 13000.00, 'Kodambakkam ', '1', '1 years 0 months', ' Long distance ', 1, '2023-05-06 11:57:02', 0, NULL, 0, NULL, 1),
(5757, 12674, 'Parakram infotec pvt ltd', 'Sales and support', '2021-10-04', 15000.00, '2020-04-30', 17000.00, 'Ashok nagar', '1', '1 years 5 months', 'Salary issue', 1, '2023-05-06 11:59:09', 0, NULL, 0, NULL, 1),
(5758, 12675, 'Annular technologies ', 'Backend developer ', '2022-04-28', 11000.00, '2023-05-13', 11000.00, 'Perungudi  chennai ', '1', '1 years 0 months', ' Salary', 1, '2023-05-06 12:28:59', 0, NULL, 0, NULL, 1),
(5759, 12677, 'Fintech solutions ', 'Sales ', '2021-11-24', 12000.00, '2022-10-30', 15000.00, 'Ashok pillar ', '1', '0 years 11 months', ' Health issues ', 1, '2023-05-06 12:33:55', 0, NULL, 0, NULL, 1),
(5760, 12677, 'Parakram infotech pvt Ltd ', 'Sales and support ', '2022-11-06', 15000.00, '1970-01-01', 15000.00, 'Ashok pillar ', '2', '0 years 6 months', 'Low Salary ', 1, '2023-05-06 12:35:23', 0, NULL, 0, NULL, 1),
(5761, 12656, 'Star Health', 'Sr Executive', '2019-04-04', 15000.00, '2023-04-30', 27000.00, 'Chennai', '1', '4 years 0 months', 'Growth', 60, '2023-05-06 08:55:06', 0, NULL, 0, NULL, 1),
(5762, 12688, 'Rir certification pvt Ltd ', 'Business coordinator ', '2022-01-02', 25000.00, '1970-01-01', 25000.00, 'Chennai', '2', '1 years 4 months', ' No future in that company ', 1, '2023-05-08 10:21:41', 0, NULL, 0, NULL, 1),
(5763, 12687, 'Post office temporary', 'Temporary', '2019-06-05', 15.00, '2023-03-30', 15.00, 'Mount road', '1', '3 years 9 months', ' Vacant full', 1, '2023-05-08 10:22:34', 0, NULL, 0, NULL, 1),
(5764, 12680, 'MedPlus ', 'Sr.csa', '2021-08-19', 10000.00, '2023-04-20', 14000.00, 'Ambattur ', '1', '1 years 8 months', ' For better job\nTo improve my self and knowledge ', 1, '2023-05-08 11:19:44', 0, NULL, 0, NULL, 1),
(5765, 12693, 'CAVINKARE PVT LTD ', 'Salon Manager ', '2021-01-21', 250000.00, '2022-08-16', 25000.00, 'Kk nagar', '1', '1 years 6 months', ' FOR CONVENIENCE OF TRAVELS ', 1, '2023-05-08 12:07:52', 0, NULL, 0, NULL, 1),
(5766, 12693, 'Equitas Small finance bank', 'Asst manager ', '2013-01-28', 18000.00, '2018-08-10', 25000.00, 'Gummidipoondi ', '1', '5 years 6 months', ' To started A vegetable Business', 1, '2023-05-08 12:13:08', 0, NULL, 0, NULL, 1),
(5767, 12693, 'RAYMOND Park avene', 'Teamleader', '2009-01-21', 15000.00, '2012-11-25', 18000.00, 'Chennai', '1', '3 years 10 months', 'To upgrade my Carrier..', 1, '2023-05-08 12:15:07', 0, NULL, 0, NULL, 1),
(5768, 12691, 'Think and learn private limited ', 'Sales associate ', '2021-11-20', 23000.00, '2022-11-30', 23000.00, 'Chennai ', '1', '1 years 0 months', ' Resigned ', 1, '2023-05-08 12:51:17', 0, NULL, 0, NULL, 1),
(5769, 12698, 'Challadurai&co', 'Sale\'s Representative ', '2020-09-01', 10.00, '2020-11-01', 0.00, 'Chennai ', '1', '0 years 2 months', ' ', 1, '2023-05-08 01:34:58', 0, NULL, 0, NULL, 1),
(5770, 12699, 'Soft logic solutions ', 'Telecaller tL', '2021-08-05', 12.00, '2023-05-31', 18000.00, 'T nagar', '1', '1 years 9 months', 'Financial problem .. below salary ', 1, '2023-05-08 02:41:38', 0, NULL, 0, NULL, 1),
(5771, 12702, 'Kissht', 'Loan collection agent ', '2020-01-09', 30000.00, '2020-11-25', 23000.00, 'Chennai', '1', '0 years 10 months', ' Faced issue with manager......', 1, '2023-05-08 05:35:16', 0, NULL, 0, NULL, 1),
(5772, 12702, 'United Exhibition ', 'Team leader ', '2021-01-03', 18000.00, '2021-03-10', 25000.00, 'Chennai', '1', '0 years 2 months', 'Exhibition period is over in chennai ', 1, '2023-05-08 05:36:35', 0, NULL, 0, NULL, 1),
(5773, 12702, 'Byjus', 'Marketing executive (BTL)', '2021-04-07', 29000.00, '2021-09-23', 29000.00, 'Chennai', '1', '0 years 5 months', 'College was started ', 1, '2023-05-08 05:37:42', 0, NULL, 0, NULL, 1),
(5774, 12702, 'Casagrand ', 'Sales Executive ', '2023-01-02', 28000.00, '2023-03-30', 28000.00, 'Chennai ', '1', '0 years 2 months', 'All staffs and manager Are treating me as kid. I can\'t able to speak what I need to....i dumped in a way that I always i need to follow others suggestions.', 1, '2023-05-08 05:40:19', 0, NULL, 0, NULL, 1),
(5775, 12705, 'CITY UNION BANK', 'ASSOCIATE', '2017-07-21', 17000.00, '2021-04-07', 26000.00, 'PERIYAKULAM', '1', '3 years 8 months', ' Health issue', 1, '2023-05-08 06:01:57', 0, NULL, 0, NULL, 1),
(5776, 12704, 'Vertexstarsoft ', 'IT RECRUITER ', '2022-03-14', 15000.00, '2022-10-30', 15000.00, 'Work from home', '1', '0 years 7 months', 'I had my sister marriage .as my parents are aged I need to take care of my sister marriage.', 1, '2023-05-08 06:14:10', 0, NULL, 0, NULL, 1),
(5777, 12706, 'DAN AUTOMOBILES', ' family situation', '2017-05-10', 9000.00, '1970-01-01', 18000.00, '78 harris road Pudupet Chennai-2', '2', '5 years 11 months', 'MY RESIGN Family situation and retail shop AUTOMOBILES ', 1, '2023-05-08 06:23:18', 0, NULL, 0, NULL, 1),
(5778, 12681, 'HDFC bank  collection field office ', 'collection officer', '2018-06-04', 15000.00, '2023-04-25', 25000.00, 'vellore ', '1', '4 years 10 months', ' Hp valves India pvt Ltd Ambattur 1 year contact\nHDFc bank collection officer 3 years work\nSome health issue fied work so I resigned ', 1, '2023-05-09 11:34:14', 0, NULL, 0, NULL, 1),
(5779, 12681, 'Hp valaves fitting India pvt ltd/ HDFC bank ', 'Cnc quality/Collection officer', '2018-06-04', 15000.00, '2023-04-25', 25000.00, 'Chennai/vellore', '1', '4 years 10 months', 'Hp valves fitting India pvt ltd one year contract\nHDFC Bank collection officer field\nSome health issue so I relived', 1, '2023-05-09 11:37:22', 0, NULL, 0, NULL, 1),
(5780, 12717, 'Sutherland ', 'Customer service ', '2022-08-03', 13000.00, '2023-04-02', 14500.00, 'Chennai ', '1', '0 years 7 months', ' Distance of traveling ', 1, '2023-05-09 12:39:48', 0, NULL, 0, NULL, 1),
(5781, 12717, 'Sutherland ', 'Customer service ', '2022-08-03', 13000.00, '2023-04-02', 14500.00, 'Chennai ', '1', '0 years 7 months', 'Traveling distance ', 1, '2023-05-09 12:41:04', 0, NULL, 0, NULL, 1),
(5782, 12719, 'emergway academy', 'sales and marketing executive', '2020-06-15', 240000.00, '2021-05-15', 240000.00, 'chennai', '1', '0 years 11 months', 'Moved out for a higher package', 1, '2023-05-09 01:34:48', 1, '2023-05-09 01:37:50', 0, NULL, 1),
(5783, 12719, 'byjus', 'product marketing expert', '2021-06-15', 600000.00, '2021-09-15', 600000.00, 'bangalore', '1', '0 years 3 months', 'Health issues', 1, '2023-05-09 01:37:17', 1, '2023-05-09 01:43:58', 0, NULL, 1),
(5784, 12720, 'Omega Health Care Thuraipakam ', 'Process Executive -AR ', '2022-08-23', 24000.00, '2023-03-10', 19000.00, 'Thuraipakam ', '1', '0 years 6 months', ' Due to very long distance ', 1, '2023-05-09 01:39:29', 0, NULL, 0, NULL, 1),
(5785, 12719, 'mn engineering solutions', 'marketing executive', '2021-09-15', 360000.00, '2022-02-15', 360000.00, 'chennai', '1', '0 years 5 months', 'Received job offer from one of the client solutions with reccomendations from the same company', 1, '2023-05-09 01:39:59', 0, NULL, 0, NULL, 1),
(5786, 12719, 'ln groups', 'marketing associate', '2022-03-15', 480000.00, '1970-01-01', 480000.00, 'chennai', '2', '1 years 1 months', 'Expecting better growth in career', 1, '2023-05-09 01:41:08', 0, NULL, 0, NULL, 1),
(5787, 12723, 'Stats perform ', 'Data analysis ', '2022-11-14', 18000.00, '1970-01-01', 18000.00, 'Greams road', '2', '0 years 5 months', 'For shift issues ', 1, '2023-05-09 02:52:00', 0, NULL, 0, NULL, 1),
(5788, 12731, 'Solartis global technology ', 'Associate ', '2022-04-01', 13000.00, '2023-04-14', 13000.00, 'Madurai', '1', '1 years 0 months', 'For carrier growth ', 1, '2023-05-10 11:13:00', 0, NULL, 0, NULL, 1),
(5789, 12735, 'Rocking Ads', 'Web Developer', '2019-10-01', 24000.00, '2022-11-01', 24000.00, 'Chennai', '1', '3 years 1 months', ' Respected sir, I am mani muthu from pudukkottai.  I have 5 years of experience in Web development.', 1, '2023-05-10 11:24:38', 0, NULL, 0, NULL, 1),
(5790, 12737, 'Access health care', 'Ar caller ', '2022-11-21', 22360.00, '2023-04-10', 22360.00, 'DLF cybercity ', '1', '0 years 4 months', ' Due to my home situation ', 1, '2023-05-10 12:33:14', 0, NULL, 0, NULL, 1),
(5791, 12740, 'Star health insurance ', 'Telecaller', '2021-02-02', 10000.00, '2023-03-15', 20000.00, 'Nungambakkam ', '1', '2 years 1 months', 'Salary issue ', 1, '2023-05-10 02:14:23', 0, NULL, 0, NULL, 1),
(5792, 12743, 'AICL', 'Supervisor', '2022-11-01', 20000.00, '2023-04-30', 20000.00, 'Namakkal', '1', '0 years 5 months', ' ', 1, '2023-05-10 06:01:05', 0, NULL, 0, NULL, 1),
(5793, 12744, 'hells gate gym', 'fitness trainer', '2020-11-01', 10000.00, '2021-11-30', 10000.00, 'new washermenpet', '1', '1 years 0 months', 'corona issues.', 1, '2023-05-10 07:36:59', 0, NULL, 0, NULL, 1),
(5794, 12744, 'imarque solution private limited', 'customer support execuite', '2022-07-18', 13000.00, '2022-12-24', 13000.00, 'ag dms', '1', '0 years 5 months', 'process stopped.', 1, '2023-05-10 07:41:10', 0, NULL, 0, NULL, 1),
(5795, 12749, 'Icici bank', 'Sale manager', '2018-10-25', 22000.00, '2019-11-10', 22000.00, 'Ulla ', '1', '1 years 0 months', ' ', 1, '2023-05-11 10:14:50', 0, NULL, 0, NULL, 1),
(5796, 12754, 'Ase structural design.pvt lt', 'Lidar engineer', '2023-03-13', 25000.00, '2023-04-28', 25000.00, 'Chennai', '1', '0 years 1 months', 'Input  data unconvincing', 1, '2023-05-11 12:12:36', 0, NULL, 0, NULL, 1),
(5797, 12754, 'Edr continuous information. Pvt.lt', 'Lidar engineer', '2022-06-01', 17000.00, '2023-03-10', 17000.00, 'Chennai', '1', '0 years 9 months', 'Getting a new job with better salary and near location', 1, '2023-05-11 12:14:04', 0, NULL, 0, NULL, 1),
(5798, 12768, 'Radical minds', 'Customer support', '2020-08-12', 15000.00, '2021-09-23', 16000.00, 'Bangalore ', '1', '1 years 1 months', ' Because of covid we went  to our native', 1, '2023-05-12 08:30:25', 0, NULL, 0, NULL, 1),
(5799, 12774, 'Ken42 edtech ', 'Junior engineer ', '2022-01-15', 100000.00, '2023-01-20', 300000.00, 'Coimbatore ', '1', '1 years 0 months', ' ', 1, '2023-05-12 11:58:58', 1, '2023-05-12 12:01:19', 0, NULL, 0),
(5800, 12774, 'Ken42 edtech ', 'Junior engineer ', '2022-01-15', 100000.00, '2023-01-20', 300000.00, 'Coimbatore ', '1', '1 years 0 months', '1. There is no growth for me , and no peer learning \n2. I thought to update myself, so did a course after that ', 1, '2023-05-12 12:01:04', 0, NULL, 0, NULL, 1),
(5801, 12772, 'Star health insurance ', 'Websales associate', '2020-10-06', 14000.00, '1970-01-01', 18000.00, 'Aminjikara ', '2', '2 years 7 months', ' Career growth ', 1, '2023-05-12 12:13:22', 0, NULL, 0, NULL, 1),
(5802, 12781, 'EDR continuous Information Private Limited', 'lidar engineer', '2021-04-09', 10000.00, '2023-06-06', 16000.00, ' Guindy', '1', '2 years 1 months', ' Career growth ', 1, '2023-05-12 03:04:20', 0, NULL, 0, NULL, 1),
(5803, 12771, 'OLA PC', 'TECHNICAL SUPPORT', '2020-09-16', 15000.00, '2023-03-20', 15000.00, 'BANGALORE', '1', '2 years 6 months', 'Personal accident', 85, '2023-05-12 07:08:15', 0, NULL, 0, NULL, 1),
(5804, 12782, 'Matrimony.com ', 'Senior Relationship Manager ', '2019-11-21', 26000.00, '2023-04-30', 375000.00, 'Adayar', '1', '3 years 5 months', ' Carrier growth', 1, '2023-05-13 06:41:24', 0, NULL, 0, NULL, 1),
(5805, 12764, 'Innovsource service private limited ', 'Branch realtionship executive ', '2022-11-28', 13.00, '1970-01-01', 13.00, 'Arumbakkam', '2', '0 years 5 months', 'Better experience \n', 1, '2023-05-13 10:46:15', 0, NULL, 0, NULL, 1),
(5806, 12783, 'Elitaz ', 'Senior process executive ', '2020-10-28', 15000.00, '1970-01-01', 35000.00, 'Nungambaakkam ', '2', '2 years 6 months', ' To learn new technologies ', 1, '2023-05-13 11:01:33', 0, NULL, 0, NULL, 1),
(5807, 12784, 'I marque solution ', 'Queries ', '2022-11-17', 15000.00, '1970-01-01', 15000.00, 'Tyenampet ', '2', '0 years 5 months', ' Timing ', 1, '2023-05-13 12:02:22', 0, NULL, 0, NULL, 1),
(5808, 12785, 'Bajaj allianz general insurance ', 'Renewal department ', '2019-01-01', 12000.00, '2019-11-01', 2700.00, 'Arumbakkam ph road', '1', '0 years 10 months', ' Timing', 1, '2023-05-13 12:08:24', 0, NULL, 0, NULL, 1),
(5809, 12786, 'Bajaj Allianz general insurance company ', 'Sales ', '2022-11-10', 17000.00, '1970-01-01', 17000.00, 'Arumbakam ', '2', '0 years 6 months', ' Long distance, Field work ', 1, '2023-05-13 12:19:27', 0, NULL, 0, NULL, 1),
(5810, 12763, 'Bajaj Allianz general insurance ', 'Sales ', '2022-11-10', 17000.00, '1970-01-01', 17000.00, 'Arumbakkam ', '2', '0 years 6 months', ' Long distance\nField work ', 1, '2023-05-13 12:20:10', 0, NULL, 0, NULL, 1),
(5811, 12787, 'Hexaware ', 'Senior executive ', '2023-04-06', 27000.00, '2023-05-22', 27000.00, 'Ambattur ', '1', '0 years 1 months', ' It\'s night shift', 1, '2023-05-13 12:28:50', 0, NULL, 0, NULL, 1),
(5812, 12788, 'Kelly Services India Pvt Ltd, Bangalore', 'Executive ', '2019-12-01', 33000.00, '2020-06-30', 33000.00, 'banglore', '1', '0 years 6 months', ' Career Growth', 1, '2023-05-13 06:48:53', 0, NULL, 0, NULL, 1),
(5813, 12791, 'digitek ', 'trainer ', '2019-06-06', 14000.00, '2022-01-04', 18000.00, 'gb palya bangalore', '1', '2 years 6 months', ' ', 1, '2023-05-13 06:58:01', 0, NULL, 0, NULL, 1),
(5814, 12791, 'digitek ', 'trainer', '2020-06-06', 14000.00, '1970-01-01', 18000.00, 'gb palya bangalore', '2', '2 years 11 months', 'Company upsconded ', 1, '2023-05-13 07:00:09', 1, '2023-05-13 07:00:32', 0, NULL, 0),
(5815, 12793, 'Connect Finlife financial service private limited ', 'Tele sales manager ', '2022-02-09', 12500.00, '2023-03-31', 16.50, 'Madurai ', '1', '1 years 1 months', ' Due to my higher studies ', 1, '2023-05-14 11:25:52', 0, NULL, 0, NULL, 1),
(5816, 12793, 'Bajaj Finserv ', 'Tele sales manager ', '2021-08-10', 11000.00, '2022-01-18', 11000.00, 'Madurai ', '1', '0 years 5 months', 'Due to higher studies ', 1, '2023-05-14 11:27:12', 0, NULL, 0, NULL, 1),
(5817, 12793, 'Avail technology ', 'Data co ordinator ', '2020-10-06', 10000.00, '2021-03-31', 10000.00, 'Madurai ', '1', '0 years 5 months', 'Due to recollect the company ', 1, '2023-05-14 11:28:52', 0, NULL, 0, NULL, 1),
(5818, 12802, 'BGM BANKING SOLUTIONS ', 'Telesales executive ', '2020-09-01', 15000.00, '2023-04-25', 25000.00, 'Ayanavaram ', '1', '2 years 7 months', ' Due to my health issue I am Resigned a job it\'s outside sales now onwards starts that reason only leave a job ', 1, '2023-05-15 11:17:47', 0, NULL, 0, NULL, 1),
(5819, 12801, 'Pictuscode Pvt Ltd ', 'Jr.mobile app developer ', '2021-10-04', 17000.00, '2023-03-08', 21500.00, 'Walajapet, ranipet dt', '1', '1 years 5 months', ' contract ', 1, '2023-05-15 11:19:51', 0, NULL, 0, NULL, 1),
(5820, 12804, 'Idf first bank ', 'Sales officer ', '2022-09-05', 18000.00, '2023-05-03', 18000.00, 'Chennai ', '1', '0 years 7 months', ' It is growth my self', 1, '2023-05-15 11:38:14', 0, NULL, 0, NULL, 1),
(5821, 12805, 'Casagrand Builders ', 'Customer support executive ', '2022-11-25', 21000.00, '2023-05-01', 21000.00, 'Thiruvanmiyur ', '1', '0 years 5 months', ' ', 1, '2023-05-15 12:58:56', 0, NULL, 0, NULL, 1),
(5822, 12807, '8years spark aliys', 'Tele caller', '2000-05-10', 11000.00, '2008-06-10', 11000.00, 'Chennai', '1', '8 years 1 months', ' Salary was less no increment', 1, '2023-05-15 07:39:30', 0, NULL, 0, NULL, 1),
(5823, 12811, 'Prathysha global trade', 'Supervisor', '2020-12-31', 14000.00, '2023-01-31', 15000.00, 'Andra', '1', '2 years 1 months', ' Due to food issuie', 1, '2023-05-16 11:08:05', 0, NULL, 0, NULL, 1),
(5824, 12812, 'Cuelearn Pvt Ltd.', 'Associate Relationship Manager', '2020-06-18', 15000.00, '2023-01-17', 36000.00, 'Bangalore', '1', '2 years 6 months', ' Lay off', 1, '2023-05-16 11:38:33', 0, NULL, 0, NULL, 1),
(5825, 12810, 'Swiftsense Solutions ', 'Financial Analyst ', '2023-01-01', 25000.00, '1970-01-01', 415000.00, 'Bangalore ', '2', '0 years 4 months', ' Internship duration complete ', 1, '2023-05-16 11:51:08', 0, NULL, 0, NULL, 1),
(5826, 12816, 'Treebo ', 'Escalation department ', '2020-01-03', 28000.00, '2022-12-10', 30000.00, 'Kormangala ', '1', '2 years 11 months', ' ', 1, '2023-05-16 12:52:09', 0, NULL, 0, NULL, 1),
(5827, 12815, 'Zeneck infotech ', 'Senior onboarding manager ', '2023-01-06', 30000.00, '2023-05-06', 30000.00, 'Koramangala ', '1', '0 years 4 months', ' ', 1, '2023-05-16 12:55:37', 0, NULL, 0, NULL, 1),
(5828, 12817, 'isonic pvt ltd', 'sales executive', '2020-06-07', 20000.00, '2021-06-10', 36000.00, 'delhi', '1', '1 years 0 months', ' Upgraded to an international Process', 1, '2023-05-16 01:14:37', 0, NULL, 0, NULL, 1),
(5829, 12817, 'concentrix', 'sales executive', '2021-05-19', 20000.00, '2022-08-08', 36000.00, 'gurgaon', '1', '1 years 2 months', 'Relocation ', 1, '2023-05-16 01:17:25', 0, NULL, 0, NULL, 1),
(5830, 12817, 'wickedride adventure services - bounce ', 'senior sales consultant', '2022-08-26', 36000.00, '2023-01-06', 36000.00, 'jp nagar ', '1', '0 years 4 months', 'Process Ramped Down', 1, '2023-05-16 01:20:49', 0, NULL, 0, NULL, 1),
(5831, 12819, 'Paisabazaar marketting and consulting private limi', 'Senior consultant', '2021-11-29', 22000.00, '2023-02-01', 24000.00, 'Tidel park', '1', '1 years 2 months', ' To take a medical treatment', 1, '2023-05-16 03:33:12', 0, NULL, 0, NULL, 1),
(5832, 12822, 'Suvision holding private limited ', 'Team leader', '2022-09-01', 25000.00, '2023-04-01', 25000.00, 'Banasankari', '1', '0 years 7 months', 'Company  close ', 1, '2023-05-17 09:39:52', 0, NULL, 0, NULL, 1),
(5833, 12824, 'Aggra Technologies ', 'Front end developer ', '2023-02-01', 300000.00, '1970-01-01', 300000.00, 'Pondicherry ', '2', '0 years 3 months', ' Developing my skills and looking good opportunity ', 1, '2023-05-17 11:00:43', 0, NULL, 0, NULL, 1),
(5834, 12826, 'Hdbfs', 'Cse', '2013-11-02', 10000.00, '2019-10-04', 13000.00, 'Chennai', '1', '5 years 11 months', ' Personal prob', 1, '2023-05-17 11:19:36', 0, NULL, 0, NULL, 1),
(5835, 12827, 'Express Infrastructure ', 'Junior Executive ', '2018-11-17', 15000.00, '2019-08-20', 18000.00, 'Royapettah', '1', '0 years 9 months', ' Helath issues', 1, '2023-05-17 11:41:35', 0, NULL, 0, NULL, 1),
(5836, 12820, 'Hdfc', 'Assistant sales manager ', '2022-04-05', 450000.00, '1970-01-01', 450000.00, 'Tnagar ', '2', '1 years 1 months', 'Want to change the location ', 1, '2023-05-17 11:45:04', 0, NULL, 0, NULL, 1),
(5837, 12834, 'Deepa associate', 'Sale', '2022-01-18', 14000.00, '2023-04-15', 14000.00, 'Chennai', '1', '1 years 2 months', 'Long distance', 1, '2023-05-18 10:43:21', 0, NULL, 0, NULL, 1),
(5838, 12832, 'Vedantu', 'bde', '2021-12-01', 400000.00, '1970-01-01', 400000.00, 'banglore', '2', '1 years 5 months', ' ', 1, '2023-05-18 02:38:34', 0, NULL, 0, NULL, 1),
(5839, 12837, 'Weather business  solution ', 'Customer support  executive ', '2022-02-10', 13000.00, '2022-12-25', 13000.00, 'Mannady', '1', '0 years 10 months', ' Health issues ', 1, '2023-05-18 03:22:47', 0, NULL, 0, NULL, 1),
(5840, 12842, 'SourceHOV ', 'Operations processor Analyst ', '2021-11-15', 18000.00, '2022-12-31', 25000.00, 'Chennai ', '1', '1 years 1 months', ' ', 1, '2023-05-18 08:29:59', 0, NULL, 0, NULL, 1),
(5841, 12843, 'Airtel ', 'IN-STORE DEMONSTER ', '2022-07-28', 15000.00, '2023-04-08', 15000.00, 'Thanjavur ', '1', '0 years 8 months', ' Health issues ', 1, '2023-05-19 09:43:20', 0, NULL, 0, NULL, 1),
(5842, 12844, 'Crystal HR and security Solution private limited', 'Software developer Trainee', '2023-01-09', 15000.00, '2023-05-17', 15000.00, 'T. Nagar', '1', '0 years 4 months', ' I this company to work in 3 years bond lock period, When I join to working after 6 months lock period will be start', 1, '2023-05-19 10:32:17', 0, NULL, 0, NULL, 1),
(5843, 12847, 'Tata capital housing ', 'Sales officer ', '2022-03-22', 13200.00, '2023-05-09', 18500.00, 'NAMAKKAL ', '1', '1 years 1 months', 'Chennai trasfer tata capital last minutes not possible Chennai ', 1, '2023-05-19 11:27:41', 0, NULL, 0, NULL, 1),
(5844, 12849, 'Karthick cars', 'Sales executive ', '2020-07-01', 15000.00, '1970-01-01', 18000.00, '106 gowdiya mutt road royappettah Chennai ', '2', '2 years 10 months', ' To Achieve more targets than expected ', 1, '2023-05-19 04:28:54', 0, NULL, 0, NULL, 1),
(5845, 12852, 'Bharat matrimony', 'Relation ship manager', '2019-05-20', 0.00, '2022-10-04', 21500.00, 'Chennai', '1', '3 years 4 months', ' Mother  health  is not well', 1, '2023-05-20 11:24:27', 0, NULL, 0, NULL, 1),
(5846, 12855, 'Accountzontrack ', 'Accountant ', '2021-06-01', 9000.00, '2023-05-31', 16000.00, 'Chennai', '1', '1 years 11 months', ' I need a new work atmosphere\nSalary is low.', 1, '2023-05-20 02:49:11', 0, NULL, 0, NULL, 1),
(5847, 12856, 'Appsplug Software India Private Limited', 'bde', '2021-04-07', 15000.00, '1970-01-01', 20000.00, 'Chennai', '2', '2 years 1 months', ' ', 1, '2023-05-20 03:13:42', 0, NULL, 0, NULL, 1),
(5848, 12858, 'Rajmall Inventives Private limited ', 'Sales coordinator & Customer support ', '2022-04-27', 15000.00, '1970-01-01', 20000.00, 'Madipakkam ', '2', '1 years 0 months', ' Basically my work environment and the role I was assigned was Great there but some how i think I need some change to update myself as i never want to settle with what I got Instead explore More. So i just looking for an environment where i can take some valuable role and credit for my work.', 1, '2023-05-20 06:53:12', 0, NULL, 0, NULL, 1),
(5849, 12866, 'Koushik BR ', 'Senior executive ', '2021-01-01', 20000.00, '2023-05-31', 24000.00, 'Malur', '1', '2 years 4 months', ' I con\'t go to job From January removed the cabs from your route . Travel time 1:30 hours it\'s very late to reach .', 1, '2023-05-22 10:24:02', 0, NULL, 0, NULL, 1),
(5850, 12868, 'ramaiya ravichandar', 'process  executive', '2021-01-21', 12500.00, '2023-05-22', 15000.00, 'mlapore', '2', '2 years 4 months', 'to learn new experience', 85, '2023-05-22 11:02:02', 0, NULL, 0, NULL, 1),
(5851, 12869, 'one point one solution ', 'customer support executive ', '2022-11-01', 12000.00, '2023-02-28', 14000.00, 'kovilambakkam', '1', '0 years 3 months', ' my father is passed away in 2 months before so i need leave for one month but my organization doesn\'t provide leave so that\'s why i am withdrew the organization', 1, '2023-05-22 11:41:43', 0, NULL, 0, NULL, 1),
(5852, 12873, 'SBI credit card ', 'Telecelling executive ', '2022-09-01', 15000.00, '2023-05-01', 16000.00, 'Koyampadu ', '1', '0 years 7 months', 'Salary date late not proper reason ', 1, '2023-05-22 01:06:56', 0, NULL, 0, NULL, 1),
(5853, 12876, 'Gs associates ', 'MANAGER CUM PUBLIC RELATION OFFICER', '2021-12-23', 30000.00, '2023-03-31', 40000.00, 'Kanchipuram', '1', '1 years 3 months', ' Relocated in to Banglore', 1, '2023-05-22 01:14:29', 0, NULL, 0, NULL, 1),
(5854, 12880, 'Cams', 'APO ', '2023-01-23', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '0 years 4 months', ' Not comfortable to regular night shifts', 1, '2023-05-23 10:12:02', 0, NULL, 0, NULL, 1),
(5855, 12886, 'Team lease ', 'Senior executive ', '2021-08-01', 18000.00, '2023-04-27', 24000.00, 'Bangalore ', '1', '1 years 8 months', ' Travevals ', 1, '2023-05-23 10:13:19', 0, NULL, 0, NULL, 1),
(5856, 12894, 'Teleperformance', 'Customer service associate', '2019-09-23', 9700.00, '2022-07-01', 12000.00, 'Ambattur', '1', '2 years 9 months', ' Looking for better opportunity', 1, '2023-05-23 12:20:24', 0, NULL, 0, NULL, 1),
(5857, 12900, 'Byjus', 'Customer executive ', '2018-04-30', 26200.00, '2023-04-30', 26200.00, 'Broke field ', '1', '5 years 0 months', ' Due to lay off . Left the company ', 1, '2023-05-23 06:25:10', 0, NULL, 0, NULL, 1),
(5858, 12901, 'Straive Private limited', 'Editorial Executive', '2022-02-01', 18.00, '2023-05-26', 18.00, 'Taramani', '1', '1 years 3 months', ' ', 1, '2023-05-23 10:06:30', 0, NULL, 0, NULL, 1),
(5859, 12902, 'HDB Financial Service ', 'Senior Telecalling officer ', '2020-10-05', 16000.00, '2021-11-30', 16000.00, 'Chennai ', '1', '1 years 1 months', ' Rotational weekoff ', 1, '2023-05-23 10:22:10', 0, NULL, 0, NULL, 1),
(5860, 12903, 'Perfect Digital Media Resources Pvt Ltd', 'Software Developer ', '2021-03-22', 1.60, '2022-04-13', 2.60, 'Chennai', '1', '1 years 0 months', 'Due to father\'s health issue', 1, '2023-05-24 09:55:39', 0, NULL, 0, NULL, 1),
(5861, 12903, 'Aspire Systems India Pvt Ltd', 'Talent Acquisition ', '2022-04-18', 300000.00, '2023-05-12', 300000.00, 'Chennai', '1', '1 years 0 months', ' Carrier Change', 1, '2023-05-24 10:01:09', 0, NULL, 0, NULL, 1),
(5862, 12883, 'Ison Xperiences', 'Senior trainer', '2021-05-17', 25000.00, '2023-05-19', 26000.00, 'Perungudi', '1', '2 years 0 months', 'I need changes in my job profile ', 1, '2023-05-24 10:36:32', 0, NULL, 0, NULL, 1),
(5863, 12929, 'Aishwaryam chit fund', 'Telecalling', '2018-07-25', 70000.00, '2023-03-25', 11000.00, 'Kumbakonam ', '1', '4 years 8 months', ' Customer payment issue', 1, '2023-05-25 12:16:50', 0, NULL, 0, NULL, 1),
(5864, 12936, 'ifb industries pvt. ltd', 'crm coordinator', '2017-12-15', 11500.00, '2018-12-26', 11500.00, 'maduravoyal', '1', '1 years 0 months', ' too far from my home', 1, '2023-05-25 03:08:16', 0, NULL, 0, NULL, 1),
(5865, 12936, 'ost logistics pvt.ltd', 'billing clerk', '2018-12-30', 14000.00, '2019-11-30', 14000.00, 'choolaimedu', '1', '0 years 11 months', 'company called off', 1, '2023-05-25 03:15:56', 0, NULL, 0, NULL, 1),
(5866, 12936, 'svm enterprises', 'crm Coordinator ', '2021-11-01', 16000.00, '2022-10-31', 16000.00, 'mylapore', '1', '0 years 11 months', 'month end pressure', 1, '2023-05-25 03:21:04', 0, NULL, 0, NULL, 1),
(5867, 12936, 'madras computer academy', 'administration', '2022-11-10', 18000.00, '1970-01-01', 18000.00, 't.nagar', '2', '0 years 6 months', 'want to Upgrade my career', 1, '2023-05-25 03:23:45', 0, NULL, 0, NULL, 1),
(5868, 12940, 'Jayanthi motors Yamaha ', 'Customer relationship manager ', '2022-02-03', 8500.00, '2023-03-26', 12000.00, 'Thiruvarur ', '1', '1 years 1 months', ' Long distance ', 1, '2023-05-26 10:04:20', 0, NULL, 0, NULL, 1),
(5869, 12970, 'Rising corporation Pvt ', 'Team leader ', '2021-12-20', 18000.00, '2023-04-21', 18000.00, 'Pondicherry ', '1', '1 years 4 months', ' ', 1, '2023-05-29 10:38:43', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5870, 12985, 'Novac technology solutions', 'Associate web developer', '2021-09-28', 20000.00, '2023-03-11', 20000.00, 'Perungudi', '1', '1 years 5 months', ' Salary package', 1, '2023-05-29 12:31:01', 0, NULL, 0, NULL, 1),
(5871, 12990, 'nextplace ', 'web Developer', '2019-10-01', 35000.00, '2023-05-29', 35000.00, 'chennai ', '2', '3 years 7 months', 'Startup company looking for good one', 1, '2023-05-29 12:46:25', 0, NULL, 0, NULL, 1),
(5872, 12996, 'aparajitha corporate services', 'hr auditor', '2022-05-04', 12000.00, '2023-01-07', 12000.00, 'madurai', '1', '0 years 8 months', ' Marriage', 1, '2023-05-30 09:58:13', 0, NULL, 0, NULL, 1),
(5873, 12996, 'mind trust', 'finance officer', '2020-05-18', 10000.00, '2022-02-14', 14000.00, 'madurai', '1', '1 years 8 months', 'As wanted to gain more experience in my subject knowledge', 1, '2023-05-30 10:00:03', 0, NULL, 0, NULL, 1),
(5874, 12967, 'Allset bussiness solution ', 'Telesales ', '2022-05-30', 21000.00, '2023-04-01', 21000.00, 'Thousand lights', '1', '0 years 10 months', ' Salary not enough  ,and personal reason', 1, '2023-05-30 11:37:34', 0, NULL, 0, NULL, 1),
(5875, 13016, 'Men\'s factory ', 'Cashier ', '2022-08-30', 13000.00, '2023-04-30', 13000.00, 'Chidrabram', '1', '0 years 8 months', ' Salary issue', 1, '2023-05-30 03:52:06', 0, NULL, 0, NULL, 1),
(5876, 13014, 'Muthoot securities pvt lim', 'Relationship manager ', '2019-03-01', 15000.00, '2023-04-28', 32000.00, 'Bengaluru', '1', '4 years 1 months', ' Career growth ', 1, '2023-05-31 09:01:38', 0, NULL, 0, NULL, 1),
(5877, 13018, 'HDFC housing loan ', 'Loan officer ', '2022-08-03', 1.00, '2023-05-23', 16.00, 'Chennai ', '1', '0 years 9 months', 'I was not able to the right skills To do the Job to the best of my ability ', 1, '2023-05-31 10:23:08', 0, NULL, 0, NULL, 1),
(5878, 13013, 'just dial', 'b d e', '2023-01-01', 26000.00, '1970-01-01', 26000.00, 'saidapet', '2', '0 years 4 months', ' ', 1, '2023-05-31 12:58:40', 0, NULL, 0, NULL, 1),
(5879, 13043, 'BAJAJ finance lTD', 'TEAM LEADER ', '2021-11-01', 17500.00, '2023-01-01', 17500.00, 'Chennai ', '1', '1 years 2 months', ' Health issue  ', 1, '2023-06-01 11:53:46', 0, NULL, 0, NULL, 1),
(5880, 13052, 'Ivangel sales and service pvt ltd ', 'Associate assistant ', '2021-10-04', 20500.00, '1970-01-01', 20500.00, 'Chennai ', '2', '1 years 7 months', ' ', 1, '2023-06-02 10:08:47', 0, NULL, 0, NULL, 1),
(5881, 13052, 'Cholamadalam investment and finance company Ltd ', 'Collection executive ', '2020-01-21', 16500.00, '2021-09-30', 16000.00, 'Chennai ', '1', '1 years 8 months', 'Salary very low ', 1, '2023-06-02 10:10:44', 0, NULL, 0, NULL, 1),
(5882, 13054, 'advan imaging res inst ', 'managee', '2022-08-22', 23.00, '2023-05-27', 23.00, 'mylapore', '1', '0 years 9 months', ' Already so Many members in the organization. So they reducing man power. ', 1, '2023-06-02 10:57:12', 0, NULL, 0, NULL, 1),
(5883, 13066, 'Reliance infocom ', 'Home sales officer ', '2023-03-20', 25000.00, '1970-01-01', 25000.00, 'Iyyapanthangal ', '2', '0 years 2 months', 'I want to update career', 1, '2023-06-04 12:56:24', 0, NULL, 0, NULL, 1),
(5884, 13073, 'HFFC', 'Relationship executive ', '2023-03-13', 18000.00, '2023-04-13', 18000.00, 'Redhills ', '1', '0 years 1 months', ' Health issues ', 1, '2023-06-05 10:58:49', 0, NULL, 0, NULL, 1),
(5885, 13051, 'Teleone ', 'Teelecallers', '2022-05-10', 15000.00, '2023-06-01', 15000.00, 'Ambattur', '1', '1 years 0 months', ' Family problem', 1, '2023-06-05 11:15:18', 0, NULL, 0, NULL, 1),
(5886, 13074, 'RBL Bank Credit card ', 'Executive officer ', '2022-09-20', 20000.00, '1970-01-01', 20000.00, 'Sriperumbudur ', '2', '0 years 8 months', ' Native side better to Work\nSo I am choose to resign\n', 1, '2023-06-05 11:16:56', 0, NULL, 0, NULL, 1),
(5887, 13080, 'Vodafone Idea private limited ', 'Customer care executive ', '2021-07-19', 1.00, '2023-04-15', 18000.00, 'Pudukottai ', '1', '1 years 8 months', ' Looking for job to improve my knowledge and skills.', 1, '2023-06-05 11:44:07', 0, NULL, 0, NULL, 1),
(5888, 13076, 'Eximio ', 'Semi voice process', '2021-01-06', 10000.00, '2023-06-05', 10000.00, 'Amabatur', '1', '2 years 4 months', ' Salary issue ', 1, '2023-06-05 11:47:56', 0, NULL, 0, NULL, 1),
(5889, 13077, 'Eximio ', 'Semi voice process', '2022-02-05', 10000.00, '2023-03-08', 10000.00, 'Amabatur', '1', '1 years 1 months', ' Lower salary ', 1, '2023-06-05 11:51:47', 0, NULL, 0, NULL, 1),
(5890, 13079, 'Trayee business solution', 'Executive', '2022-03-01', 10000.00, '2023-04-01', 10000.00, 'Santhome', '1', '1 years 1 months', 'I push to next level In my career\n', 1, '2023-06-05 11:57:18', 0, NULL, 0, NULL, 1),
(5891, 13103, 'TAN unity private limited  wheels India warehouse ', 'Quality checker', '2021-05-13', 13000.00, '2022-04-10', 15000.00, 'Vadaperumpakkam', '1', '0 years 10 months', ' Not provide pay Slip  continue my pG Course\n', 1, '2023-06-06 10:42:43', 0, NULL, 0, NULL, 1),
(5892, 13116, 'ACT FIBER NET COMPANY', 'Senior executives', '2022-04-04', 24500.00, '2023-05-22', 24500.00, 'MRC NAGAR', '1', '1 years 1 months', ' Need banking or Finance', 1, '2023-06-06 11:43:18', 0, NULL, 0, NULL, 1),
(5893, 13119, 'NATIONAL HIGHWAYS AUTHORITY OF INDIA ', 'OPERATION DEPARTMENT ', '2016-01-07', 14000.00, '2020-12-25', 24000.00, 'SALEM', '1', '4 years 11 months', ' ', 1, '2023-06-06 12:59:59', 0, NULL, 0, NULL, 1),
(5894, 13120, 'Cams', 'Senior processing officer', '2016-05-23', 13500.00, '2023-01-12', 29000.00, 'Mount road', '1', '6 years 7 months', ' Marriage ', 1, '2023-06-06 03:43:38', 0, NULL, 0, NULL, 1),
(5895, 13127, 'Johnson controls Automotive Ltd', 'Store Incharge ', '2006-01-26', 4800.00, '2018-10-30', 37000.00, 'Chennai ', '1', '12 years 9 months', ' Business down. Company closed ', 1, '2023-06-07 11:02:06', 0, NULL, 0, NULL, 1),
(5896, 13127, 'Surin Automotive Pvt Ltf', 'Store Manager ', '2018-11-07', 38000.00, '2019-05-11', 38000.00, 'Chennai ', '1', '0 years 6 months', 'Due to Transfer ', 1, '2023-06-07 11:05:04', 0, NULL, 0, NULL, 1),
(5897, 13127, 'ILED lighting system ', 'Store Manager ', '2019-06-05', 27000.00, '2023-02-08', 29000.00, 'Perungudi ', '1', '3 years 8 months', 'Small scale industry. Less professional Growth.', 1, '2023-06-07 11:08:42', 0, NULL, 0, NULL, 1),
(5898, 13131, 'amazon', 'senior sales executive', '2021-09-08', 25000.00, '2023-03-01', 30000.00, 'chennai', '1', '1 years 5 months', ' ', 1, '2023-06-07 12:59:56', 0, NULL, 0, NULL, 1),
(5899, 13133, 'it', 'Software developer', '2022-09-01', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '0 years 9 months', ' I did not have Interest in working so i am going to resign ', 1, '2023-06-07 01:20:44', 1, '2023-06-07 01:22:06', 0, NULL, 1),
(5900, 13137, 'allsec', 'telecaller', '2023-06-08', 9500.00, '1970-01-01', 12000.00, 'thousand lights', '2', '0 years 0 months', ' ', 1, '2023-06-08 10:19:05', 0, NULL, 0, NULL, 1),
(5901, 13139, 'Sbi', 'Sales ', '2023-01-02', 18000.00, '1970-01-01', 6.00, 'Express avenue', '2', '0 years 5 months', ' ', 1, '2023-06-08 01:22:11', 0, NULL, 0, NULL, 1),
(5902, 13139, 'Sbi', 'Sales executive', '2023-01-02', 18000.00, '1970-01-01', 18000.00, 'Express avenue', '2', '0 years 5 months', 'Timming issue', 1, '2023-06-08 01:23:14', 0, NULL, 0, NULL, 1),
(5903, 13149, 'Customer support ', 'Employee', '2022-02-14', 12500.00, '1970-01-01', 14000.00, 'Thousand lights ', '2', '1 years 3 months', ' Timing issue', 1, '2023-06-09 12:03:55', 0, NULL, 0, NULL, 1),
(5904, 13149, 'BPO', 'Telecaller ', '2022-02-14', 12500.00, '1970-01-01', 14000.00, 'Thousand lights ', '2', '1 years 3 months', ' I\'m not comfortable in my office Timing 9.30 to 8.30 ', 1, '2023-06-09 12:13:20', 0, NULL, 0, NULL, 1),
(5905, 13150, 'Nuvama ', 'Rm', '2023-06-07', 300000.00, '1970-01-01', 300000.00, 'T nagar', '2', '0 years 0 months', ' ', 1, '2023-06-09 12:33:25', 0, NULL, 0, NULL, 1),
(5906, 13150, 'Nuvama', 'RM', '2022-06-07', 300000.00, '1970-01-01', 25000.00, 'T nagay', '2', '1 years 0 months', 'Looking for change ', 1, '2023-06-09 12:34:41', 0, NULL, 0, NULL, 1),
(5907, 13156, 'policybazaar.com', 'associate sales consultant', '2021-12-20', 300000.00, '2022-11-09', 304000.00, 'chennai', '1', '0 years 10 months', ' Growth', 1, '2023-06-09 06:41:18', 0, NULL, 0, NULL, 1),
(5908, 13159, 'Bharat Matrimony', 'Telemarketing', '2019-09-29', 13500.00, '2021-09-15', 13800.00, 'Adugodi', '1', '1 years 11 months', 'change office to bangalore to Mysore', 1, '2023-06-10 10:17:06', 0, NULL, 0, NULL, 1),
(5909, 13160, 'Reliance Asset Reconstruction', 'Telecalling Executive', '2021-01-07', 15000.00, '2022-10-09', 21000.00, 'Saidapet', '1', '1 years 9 months', ' Personal Reasons', 1, '2023-06-10 11:02:46', 0, NULL, 0, NULL, 1),
(5910, 13163, 'think & learn ', 'business development executive ', '2021-08-23', 19000.00, '2022-06-01', 23000.00, 'mount road', '1', '0 years 9 months', ' Need to improve for career development ', 1, '2023-06-10 11:44:50', 0, NULL, 0, NULL, 1),
(5911, 13164, 'Tevatel', 'PHP Developer', '2022-03-28', 12000.00, '2023-04-28', 15000.00, 'Ayanavaram', '1', '1 years 1 months', ' I completed one year.  I want to work with new technology with multiple project and Exploring new technology', 1, '2023-06-10 11:52:12', 0, NULL, 0, NULL, 1),
(5912, 13165, 'Teleperformance ', 'Telecaller ', '2019-12-27', 10000.00, '2022-12-01', 17500.00, 'Chennai ', '1', '2 years 11 months', ' There was no incentives and salary hikes.. I didn\'t develop my skills also... ', 1, '2023-06-10 11:55:47', 0, NULL, 0, NULL, 1),
(5913, 13153, 'Aspire conaultancy ', 'Telesales officer', '2022-05-07', 13000.00, '2023-06-06', 13000.00, 'Arumbakkam', '1', '1 years 0 months', ' Long distance and office changed in madavaram', 1, '2023-06-10 02:48:52', 0, NULL, 0, NULL, 1),
(5914, 13203, 'Prodapt solutions Pvt Ltd', 'Senior process executive', '2013-06-22', 1.50, '2023-02-10', 4.00, 'Chennai', '1', '9 years 7 months', ' Fixed night shift and health issues', 1, '2023-06-12 01:39:23', 0, NULL, 0, NULL, 1),
(5915, 13206, 'Star health ', 'Voice process ', '2021-03-03', 14000.00, '2021-07-31', 15000.00, 'Ekkatuthangal', '1', '0 years 4 months', ' Family problems ', 1, '2023-06-12 03:28:43', 0, NULL, 0, NULL, 1),
(5916, 13214, 'Vakilsearch', 'Digital marketing', '2022-04-05', 407400.00, '2023-05-15', 407400.00, 'Chennai', '1', '1 years 1 months', ' Want to learn & Explore new things', 1, '2023-06-13 10:57:16', 0, NULL, 0, NULL, 1),
(5917, 13219, 'Jio fiber ', 'Sales executive officer', '2022-12-05', 20000.00, '2023-06-12', 20000.00, 'Royapettah', '1', '0 years 6 months', ' Improve my self ', 1, '2023-06-13 12:13:08', 0, NULL, 0, NULL, 1),
(5918, 13225, 'Hathway BroadBand Internet cable pvt.ltd', 'Teamleader ', '2021-10-01', 30000.00, '2023-05-22', 30000.00, 'Nugambakkam ', '1', '1 years 7 months', ' Person issue', 1, '2023-06-13 12:55:10', 0, NULL, 0, NULL, 1),
(5919, 13226, '1by2 foods Corporate pvt Ltd ', 'Tele executive ', '2022-07-29', 15000.00, '1970-01-01', 15000.00, 'Guindy', '2', '0 years 10 months', ' They are quit the concept ', 1, '2023-06-13 01:02:07', 0, NULL, 0, NULL, 1),
(5920, 13234, 'CIAR Software Solution ', 'Full stack developer ', '2022-05-01', 10000.00, '2022-12-15', 15000.00, 'Nungabakam ', '1', '1 years 1 months', ' That company Lose of profit. Only kept experience person. New joiner are terminate', 1, '2023-06-13 02:51:37', 0, NULL, 0, NULL, 1),
(5921, 13238, 'sutherland  global service', 'technical support', '2022-04-01', 25000.00, '2022-08-31', 25000.00, 'chennai', '1', '0 years 4 months', 'health issues', 104, '2023-06-13 05:44:10', 0, NULL, 0, NULL, 1),
(5922, 13240, 'guardianlink', 'customer relantionship executive', '2022-05-10', 26000.00, '2023-05-25', 26000.00, 'chennai', '1', '1 years 0 months', ' I’ve been under utilized in my previous concern ', 1, '2023-06-13 10:30:49', 0, NULL, 0, NULL, 1),
(5923, 13246, 'HDB financial services', 'Relationship manager', '2022-04-13', 12500.00, '2023-02-03', 12500.00, 'Spencer plaza', '1', '0 years 9 months', ' Leave it late', 1, '2023-06-14 11:51:35', 0, NULL, 0, NULL, 1),
(5924, 13251, 'SKD Enterprises ', 'Junior Accountant ', '2023-01-09', 12000.00, '2023-04-30', 12000.00, 'Egmore ', '1', '0 years 3 months', ' Relieved because of old employee rejoined.', 1, '2023-06-14 12:10:36', 0, NULL, 0, NULL, 1),
(5925, 13252, 'Iniyavan', 'Reach', '2022-04-24', 19500.00, '2023-04-24', 25000.00, 'Chennai', '1', '1 years 0 months', ' Personal ', 1, '2023-06-14 12:30:59', 0, NULL, 0, NULL, 1),
(5926, 13257, 'Reliance SMSL Limited ', 'Customer service officer ', '2021-12-22', 21500.00, '2023-02-07', 21500.00, 'T. Nagar', '1', '1 years 1 months', ' Reliance jiomart partner business handover to third Parties. So that\'s only reason for reliving this industry.', 1, '2023-06-14 01:53:54', 0, NULL, 0, NULL, 1),
(5927, 13257, 'Reliance SMSL Limited ', 'Home sales officer ', '2023-02-20', 21500.00, '2023-06-07', 21500.00, 'Mylapore ', '1', '0 years 3 months', 'Team leader not supported ', 1, '2023-06-14 01:56:02', 0, NULL, 0, NULL, 1),
(5928, 13257, 'Big basket BB daily ', 'Businesses development executive ', '2018-12-01', 16000.00, '2019-08-30', 16000.00, 'Perungudi', '1', '0 years 8 months', 'My Sister marriage so I want go to my native ', 1, '2023-06-14 02:01:09', 0, NULL, 0, NULL, 1),
(5929, 13258, 'Jiomart', 'Customer service officer ', '2022-04-25', 24000.00, '2023-04-27', 24000.00, 'Choolaimedu ', '1', '1 years 0 months', ' Site closer', 1, '2023-06-14 02:22:16', 0, NULL, 0, NULL, 1),
(5930, 13258, 'Jiomart', 'Customer service officer ', '2022-04-25', 24000.00, '2023-04-27', 24000.00, 'Choolaimedu ', '1', '1 years 0 months', 'Site closer ', 1, '2023-06-14 02:24:10', 1, '2023-06-14 02:24:38', 0, NULL, 0),
(5931, 13260, 'Usekiwi infolabs pvt ltd ', 'Financial Counsellor ', '2023-01-12', 18000.00, '2023-06-29', 25000.00, 'Nungambakkam ', '1', '0 years 5 months', 'Peraonal problem ', 1, '2023-06-14 04:36:27', 0, NULL, 0, NULL, 1),
(5932, 13245, 'Home credit', 'Telecaller', '2022-08-22', 20000.00, '1970-01-01', 20000.00, 'Hosur', '2', '0 years 9 months', 'salary hike', 85, '2023-06-14 06:40:42', 0, NULL, 0, NULL, 1),
(5933, 13261, 'LIC ', 'Customer Support ', '2021-01-04', 5000.00, '2021-06-08', 8000.00, 'Ammapet', '1', '0 years 5 months', ' Personal reasons', 1, '2023-06-14 06:54:50', 0, NULL, 0, NULL, 1),
(5934, 13262, 'Li Ning Superstore ', 'Brigade millennium ', '2023-02-22', 18000.00, '2023-05-22', 18000.00, 'Jp nagar 7th Phase', '1', '0 years 3 months', ' ', 1, '2023-06-14 07:54:06', 0, NULL, 0, NULL, 1),
(5935, 13271, 'Vcare ', 'Digital Marketing specialist ', '2022-05-12', 35000.00, '2023-05-22', 35000.00, 'Chennai', '1', '1 years 0 months', ' ', 1, '2023-06-15 11:12:00', 0, NULL, 0, NULL, 1),
(5936, 13270, 'Ras media', 'CRE', '2023-03-05', 15000.00, '2023-06-14', 15000.00, 'Spencer plaza', '1', '0 years 3 months', ' Salary delay and  not responding for our problems', 1, '2023-06-15 11:23:00', 0, NULL, 0, NULL, 1),
(5937, 13286, 'Edison Raj. S', 'Telecaller', '2023-06-15', 16000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '0 years 0 months', ' ', 1, '2023-06-15 03:32:57', 0, NULL, 0, NULL, 1),
(5938, 13281, 'HATHWAY BROADBAND', 'GROUP LEADER', '2021-08-24', 11000.00, '2023-01-13', 14000.00, 'CHENNAI', '1', '1 years 4 months', 'Career growth', 101, '2023-06-15 08:08:26', 0, NULL, 0, NULL, 1),
(5939, 13296, 'Cedar business solutions', 'Team Leader', '2020-02-05', 20000.00, '2022-04-16', 20000.00, 'Amjikarai', '1', '2 years 2 months', ' Delay of salary', 1, '2023-06-17 02:56:38', 0, NULL, 0, NULL, 1),
(5940, 13296, 'Karma Resorts and International tours', 'admin desk and receptionist', '2022-05-05', 18000.00, '2022-12-30', 18000.00, 'kilpauk', '1', '0 years 7 months', 'Time issue, over time', 1, '2023-06-17 03:01:59', 0, NULL, 0, NULL, 1),
(5941, 13296, 'Mkb IT Solutions', 'International air voice process', '2023-01-10', 21000.00, '2023-05-30', 21000.00, 'Egmore', '1', '0 years 4 months', 'Salary issues', 1, '2023-06-17 03:03:59', 0, NULL, 0, NULL, 1),
(5942, 13300, 'vimbri media private limited', 'team leader tele sales ', '2022-07-04', 26000.00, '1970-01-01', 26000.00, 'chennau', '2', '0 years 11 months', ' ', 1, '2023-06-17 12:07:02', 0, NULL, 0, NULL, 1),
(5943, 13305, 'Bank of india', 'Telecalling', '2022-02-05', 14000.00, '2022-12-29', 15000.00, 'Parry corner', '1', '0 years 10 months', ' ', 1, '2023-06-17 01:46:35', 0, NULL, 0, NULL, 1),
(5944, 13305, 'Kotak mahindra bank', 'Tellecalling', '2023-01-05', 16000.00, '2023-06-17', 16000.00, 'Egmore', '1', '0 years 5 months', 'Salary issue', 1, '2023-06-17 01:48:32', 0, NULL, 0, NULL, 1),
(5945, 13307, 'All set business solutions ', 'Sales ', '2021-08-25', 12000.00, '2023-01-05', 15500.00, 'Thousand light ', '1', '1 years 4 months', ' Timing issues ', 1, '2023-06-17 03:19:57', 104, '2023-06-17 03:29:22', 0, NULL, 1),
(5946, 13308, 'all set business solution', 'telecaller', '2021-07-26', 110000.00, '2023-02-07', 13000.00, 'greens road', '1', '1 years 6 months', 'long distance, timing issue', 104, '2023-06-17 05:56:39', 0, NULL, 0, NULL, 1),
(5947, 13309, 'Domino\'s, omega healthcare ', 'Associate manager, Ar associate ', '2020-12-01', 5000.00, '2023-06-01', 20000.00, 'Chennai ', '1', '2 years 6 months', ' Recently completed my graduation so I decided to change the job for my career growth.', 1, '2023-06-19 11:01:51', 0, NULL, 0, NULL, 1),
(5948, 13313, 'Rds super market', 'Incharge ', '2018-05-01', 10000.00, '2021-06-20', 12000.00, 'Ambur', '1', '3 years 1 months', ' Move to best job', 1, '2023-06-19 11:15:33', 0, NULL, 0, NULL, 1),
(5949, 13313, 'HDB financial services', 'Sales executive', '2021-08-20', 15000.00, '2023-01-02', 17000.00, 'Chennai', '1', '1 years 4 months', 'Move to on role job', 1, '2023-06-19 11:19:15', 0, NULL, 0, NULL, 1),
(5950, 13329, 'achillies chif fund', 'team leader', '2022-08-19', 10000.00, '2023-05-06', 18000.00, 'arumbakkam', '1', '0 years 8 months', 'higher studies', 104, '2023-06-19 03:27:41', 0, NULL, 0, NULL, 1),
(5951, 13334, 'Aasan Software ', 'Engineer', '2021-10-01', 380000.00, '2022-09-02', 380000.00, 'Adyar, chennai ', '1', '0 years 11 months', ' Seeking New challenge', 1, '2023-06-20 11:27:08', 0, NULL, 0, NULL, 1),
(5952, 13334, 'Zilogic Systems', 'Engineer', '2022-09-05', 500000.00, '2023-03-31', 500000.00, 'Thiruvanmiyur, Chennai ', '1', '0 years 6 months', 'Seeking New Challenge', 1, '2023-06-20 11:29:01', 1, '2023-06-20 11:32:08', 0, NULL, 1),
(5953, 13334, 'Indian Institute of Technology', 'Project Officer ', '2023-04-01', 360000.00, '1970-01-01', 360000.00, 'Adyar, Chennai ', '2', '0 years 2 months', 'Want to work in a High Pace and Challenging Environment', 1, '2023-06-20 11:31:45', 0, NULL, 0, NULL, 1),
(5954, 13336, 'HDB financial and services Ltd ', 'Senior telecaller', '2020-12-23', 13000.00, '2023-04-08', 14000.00, 'Chennai ', '1', '2 years 3 months', ' Due to family issues I releaved from there ', 1, '2023-06-20 11:57:49', 0, NULL, 0, NULL, 1),
(5955, 13332, 'hdb', 'sales', '2022-09-16', 16000.00, '2023-01-10', 16000.00, 'thiruvarkadu', '1', '0 years 3 months', ' family issues', 1, '2023-06-20 12:15:44', 0, NULL, 0, NULL, 1),
(5956, 13351, 'TCS', 'Associate', '2021-02-12', 17000.00, '2023-06-20', 23000.00, 'Chennai', '2', '2 years 4 months', ' Carrier Growth.', 1, '2023-06-20 01:17:43', 0, NULL, 0, NULL, 1),
(5957, 13351, 'Techquest', 'Junior Developer', '2020-10-14', 7000.00, '2021-02-03', 7000.00, 'Salem', '1', '0 years 3 months', 'Company Ramp down', 1, '2023-06-20 01:19:03', 0, NULL, 0, NULL, 1),
(5958, 13356, 'Repco micro finance ', 'CRO', '2020-01-13', 10500.00, '2022-12-30', 16000.00, 'Ennore', '1', '2 years 11 months', ' Salary  issues ', 1, '2023-06-20 04:14:50', 0, NULL, 0, NULL, 1),
(5959, 10335, 'Team lease ', 'Telesales ', '2022-11-15', 13000.00, '2023-05-17', 14999.00, 'Koyambed', '1', '0 years 6 months', ' Time ing problem ', 1, '2023-06-21 04:38:52', 0, NULL, 0, NULL, 1),
(5960, 10335, 'Team lease ', 'Tellcaller ', '2022-11-14', 13000.00, '2023-05-17', 14999.00, 'Koyambed ', '1', '0 years 6 months', 'Time problem ', 1, '2023-06-21 04:41:35', 0, NULL, 0, NULL, 1),
(5961, 13368, 'be analytic solutions llp', 'marketing executive ', '2021-11-01', 230000.00, '2022-11-30', 230000.00, 'bangalore ', '1', '1 years 0 months', ' ', 1, '2023-06-21 09:41:54', 0, NULL, 0, NULL, 1),
(5962, 13372, 'shanthi Jewellery ', 'account and sales ', '2018-04-10', 11000.00, '2023-07-01', 20000.00, 'pallavaram ', '1', '5 years 2 months', 'Timing Issue ', 1, '2023-06-22 10:23:02', 0, NULL, 0, NULL, 1),
(5963, 13372, 'indigo Airlines ', 'cust service ', '2016-05-02', 10000.00, '2017-09-09', 15000.00, 'meenabakam ', '1', '1 years 4 months', 'Night shift problem ', 1, '2023-06-22 10:26:26', 0, NULL, 0, NULL, 1),
(5964, 13364, 'Kotak Mahindra Bank Limited ', 'Employee ', '2022-04-02', 13500.00, '2023-01-01', 13500.00, 'Pandi bazzar', '1', '0 years 8 months', 'Medical issues', 1, '2023-06-22 11:36:14', 0, NULL, 0, NULL, 1),
(5965, 13385, 'Allset business solutions ', 'Collection ', '2023-06-22', 16000.00, '1970-01-01', 16000.00, 'Thousand lights greems road', '2', '0 years 0 months', 'Salary not putting properly manager not handling team properly ', 1, '2023-06-22 02:42:51', 0, NULL, 0, NULL, 1),
(5966, 13387, 'Dhanam industry ', 'Clerk', '2018-08-14', 20000.00, '1970-01-01', 20000.00, 'Coimbatore', '2', '4 years 10 months', ' Relocation ', 1, '2023-06-22 02:46:41', 0, NULL, 0, NULL, 1),
(5967, 13390, 'TecnicoEPC global projects private limited ', 'Full stack developer ', '2023-03-10', 12000.00, '2023-06-10', 12000.00, 'Remote', '1', '0 years 3 months', 'My assigned task has been completed ', 1, '2023-06-23 11:22:12', 0, NULL, 0, NULL, 1),
(5968, 13422, 'Unitech systems pvt ltd', 'Telecaller sales ', '2023-02-02', 20000.00, '2023-05-02', 20000.00, 'Guindy', '1', '0 years 3 months', 'For some salary problem. And nit growth in that company', 1, '2023-06-24 02:27:47', 0, NULL, 0, NULL, 1),
(5969, 13423, 'Sales', 'Csa', '2018-03-09', 15000.00, '2023-06-01', 23000.00, 'Madurai & chennai ', '1', '5 years 2 months', ' ', 1, '2023-06-24 02:30:44', 0, NULL, 0, NULL, 1),
(5970, 13427, 'Muthoot finance ', 'Junior relationship executive ', '2022-11-21', 17000.00, '2023-06-30', 20000.00, 'Tiruppur ', '1', '0 years 7 months', 'Migration in Chennai ', 1, '2023-06-26 11:07:15', 0, NULL, 0, NULL, 1),
(5971, 13427, 'HDB financial limited ', 'Sales', '2021-10-01', 15000.00, '2022-10-01', 15000.00, 'Tiruppur ', '1', '1 years 0 months', 'Change my job ', 1, '2023-06-26 11:15:10', 0, NULL, 0, NULL, 1),
(5972, 13437, 'Unified voice communication ', 'BDE', '2022-02-08', 18000.00, '2023-06-04', 30000.00, 'Chennai ', '1', '1 years 3 months', ' I looking for new role and looking for new change ', 1, '2023-06-26 02:38:59', 0, NULL, 0, NULL, 1),
(5973, 13438, 'Airtel ', 'Sales executive ', '2022-07-22', 7.00, '2023-02-07', 19000.00, 'Chennai ', '1', '0 years 6 months', ' ', 1, '2023-06-26 03:03:12', 0, NULL, 0, NULL, 1),
(5974, 13440, 'js credit card', 'collection', '2019-10-01', 12000.00, '2020-10-31', 15000.00, 'bangalore', '1', '1 years 1 months', ' lockdown period', 1, '2023-06-26 03:36:41', 0, NULL, 0, NULL, 1),
(5975, 13443, 'Equitas small finace bank', 'Uam / Tpp', '2021-07-09', 18000.00, '2023-06-26', 15000.00, 'Chennai', '1', '1 years 11 months', ' ', 1, '2023-06-26 05:46:55', 0, NULL, 0, NULL, 1),
(5976, 13441, 'Farid gokul indane gas ', 'Customer service ', '2019-11-04', 16000.00, '2021-02-02', 18000.00, 'Vellore', '1', '1 years 2 months', ' Build my strength and knowledge ', 1, '2023-06-27 10:05:55', 0, NULL, 0, NULL, 1),
(5977, 13441, 'Rainbow city ', 'Telecalling real estate ', '2021-02-08', 17000.00, '2022-02-04', 17000.00, 'Alandur ', '2', '0 years 11 months', 'Still ongoing work for part time', 1, '2023-06-27 10:08:54', 0, NULL, 0, NULL, 1),
(5978, 13448, 'Sumit Pandey ', 'Customer Relationship Management ', '2021-06-02', 16000.00, '2023-01-03', 19000.00, 'Mumbai Maharashtra ', '1', '1 years 7 months', 'Because I want To Come Chennai For My Kid So That\'s Why I Quit From My Job ', 1, '2023-06-27 10:11:19', 0, NULL, 0, NULL, 1),
(5979, 13441, 'Examino', 'Ar calling ', '2023-03-24', 150000.00, '1970-01-01', 15000.00, 'Ambit it park', '2', '0 years 3 months', 'Salary issue ', 1, '2023-06-27 10:13:57', 0, NULL, 0, NULL, 1),
(5980, 13449, 'Bharat Matrimony ', 'Sale Executive ', '2022-08-17', 12000.00, '2023-06-15', 12000.00, 'Chennai ', '1', '0 years 10 months', ' Better opportunity to improve skills and Salary growth ', 1, '2023-06-27 10:52:44', 0, NULL, 0, NULL, 1),
(5981, 13454, 'Casa Grand Builders', 'TeleCaller', '2021-09-06', 23000.00, '2023-02-28', 23000.00, 'Thiruvanmiyur', '1', '1 years 5 months', ' Personal Health reasons', 1, '2023-06-27 01:00:08', 0, NULL, 0, NULL, 1),
(5982, 13446, 'Jain housing and construction ltd', 'Executive', '2023-06-26', 22000.00, '1970-01-01', 22000.00, 'Kodambakkam', '2', '0 years 0 months', ' Seeking an opportunity to improve myself ', 1, '2023-06-28 09:56:26', 0, NULL, 0, NULL, 1),
(5983, 13463, 'Cameo corporate limited and allset buisness soluti', 'Telecaller', '2022-01-20', 7.00, '2023-01-15', 15.00, 'Mount road', '1', '1 years 5 months', ' Salary issue', 1, '2023-06-28 02:56:59', 0, NULL, 0, NULL, 1),
(5984, 13463, 'Cameo corporate limited and allset buisness soluti', 'Telecaller', '2022-01-20', 7.00, '2023-01-15', 15.00, 'Mount road', '1', '1 years 5 months', ' Salary issue', 1, '2023-06-28 02:56:59', 0, NULL, 0, NULL, 1),
(5985, 13463, 'Cameo corporate limited and allset buisness soluti', 'Telecaller', '2022-01-20', 7.00, '2023-01-15', 15.00, 'Mount road', '1', '1 years 5 months', ' Salary issue', 1, '2023-06-28 02:57:00', 0, NULL, 0, NULL, 1),
(5986, 13464, 'Cameo corporate  and allset business  solutions ', 'Tele caller', '2022-02-08', 10000.00, '2023-04-05', 14000.00, 'LIC and thousand lights', '1', '1 years 1 months', ' Salary issue', 1, '2023-06-28 03:12:34', 0, NULL, 0, NULL, 1),
(5987, 13457, 'India filings pvt limited', 'Compliance advisor ', '2022-09-07', 16.00, '1970-01-01', 16.00, 'Chetput', '2', '0 years 9 months', ' Salary issues', 1, '2023-06-28 03:20:21', 0, NULL, 0, NULL, 1),
(5988, 13473, 'Kosmo one india ', 'Tellecaller ', '2022-11-01', 17000.00, '2023-02-28', 17000.00, 'Ambattur ', '1', '0 years 3 months', ' Medical issue ', 1, '2023-06-29 12:55:37', 0, NULL, 0, NULL, 1),
(5989, 13480, 'Medisales India pvt', 'Human Resource Executive', '2022-08-16', 15000.00, '1970-01-01', 15000.00, 'Kilpauk', '2', '0 years 10 months', ' Currently Working', 1, '2023-06-30 08:55:13', 0, NULL, 0, NULL, 1),
(5990, 13484, 'Venus solution', 'Customer support executive ', '2021-04-14', 14500.00, '2022-03-01', 14500.00, 'Annanagar', '1', '0 years 10 months', ' I have to arrears so in that time exam so studying the reason to releiving the company and now I got my degree', 1, '2023-06-30 10:23:31', 0, NULL, 0, NULL, 1),
(5991, 13485, 'Aran marketing ', 'Assistant branch manager ', '2022-03-10', 15000.00, '2023-06-06', 18000.00, 'Villivaakkam ', '1', '1 years 2 months', ' Salary issue', 1, '2023-06-30 10:43:29', 0, NULL, 0, NULL, 1),
(5992, 13500, 'At@at entertainment ', 'Supervisor ', '2021-11-05', 10000.00, '2022-12-29', 16500.00, 'Madipakkam', '1', '1 years 1 months', ' Family issue ', 1, '2023-07-03 10:49:21', 0, NULL, 0, NULL, 1),
(5993, 13506, 'Omega healthcare ', 'Medical billing & deniel code verification ', '2023-01-18', 18000.00, '1970-01-01', 18000.00, 'Trichy ', '2', '0 years 5 months', 'Low  Salary ', 1, '2023-07-03 11:52:10', 0, NULL, 0, NULL, 1),
(5994, 13490, 'hrh ', 'bpo', '2022-08-22', 17000.00, '2023-01-20', 17000.00, 'coimbatore', '1', '0 years 4 months', 'Medical issues ', 1, '2023-07-03 02:43:13', 0, NULL, 0, NULL, 1),
(5995, 13490, 'premchand& co', 'assistant accountant', '2020-08-21', 15000.00, '2022-07-13', 15000.00, 'cuddalore', '1', '1 years 10 months', 'Resource issues', 1, '2023-07-03 02:44:56', 0, NULL, 0, NULL, 1),
(5996, 13509, 'Clarivate Analyst ', 'Publishing coordinator data analyst ', '2021-01-28', 15000.00, '2022-07-07', 18000.00, 'Mylopore ', '1', '1 years 5 months', ' Not Convenient for Work from home jobs', 1, '2023-07-04 10:19:59', 0, NULL, 0, NULL, 1),
(5997, 13508, 'Hathway broadband', 'Sales', '2022-07-03', 5.00, '2023-01-04', 18000.00, 'Thousand lights', '1', '0 years 6 months', 'I got a job at Sats perform ', 1, '2023-07-04 10:20:30', 0, NULL, 0, NULL, 1),
(5998, 13510, 'Casagrand builders', 'Telecalling', '2022-04-25', 20000.00, '2023-07-01', 20000.00, 'Chennai', '1', '1 years 2 months', ' Due to family issue', 1, '2023-07-04 10:34:00', 0, NULL, 0, NULL, 1),
(5999, 13514, 'telesales ', 'Telesales ', '2023-07-04', 45000.00, '1970-01-01', 65000.00, 'pune', '2', '0 years 0 months', ' COVID reason ', 1, '2023-07-04 10:59:03', 0, NULL, 0, NULL, 1),
(6000, 13511, 'Jio fiber ', 'Sales executive ', '2023-07-04', 20000.00, '1970-01-01', 20000.00, 'Triplecan ', '2', '0 years 0 months', 'Salary issue ', 1, '2023-07-04 11:06:19', 108, '2023-07-04 11:12:43', 0, NULL, 0),
(6001, 13511, 'Jio fiber ', 'Sales executive ', '2022-06-20', 20000.00, '1970-01-01', 20000.00, 'Triplecan ', '2', '1 years 0 months', 'Salary issue ', 1, '2023-07-04 11:08:01', 108, '2023-07-04 11:13:02', 0, NULL, 0),
(6002, 13511, 'jio fiber', 'sales executive', '2022-06-20', 20000.00, '1970-01-01', 20000.00, 'triplicane', '2', '1 years 0 months', 'salary issue', 108, '2023-07-04 11:15:29', 0, NULL, 0, NULL, 1),
(6003, 13520, 'Innov Source Private Limited', 'Telecallar', '2023-02-02', 17000.00, '2023-06-05', 17000.00, 'Koyambedu', '1', '0 years 4 months', ' Working Location Changes', 1, '2023-07-04 01:44:56', 0, NULL, 0, NULL, 1),
(6004, 13520, 'India Pistons Private Limited', 'Manufacturing', '2022-04-01', 15000.00, '2023-01-10', 15000.00, 'Perambur', '1', '0 years 9 months', 'Contract Close', 1, '2023-07-04 01:47:10', 0, NULL, 0, NULL, 1),
(6005, 13520, 'KauveryHospital', 'Vaccinetion Duty', '2020-03-01', 12000.00, '2021-02-01', 12000.00, 'Mylapure', '1', '0 years 11 months', 'Vaccinetion Over ', 1, '2023-07-04 01:49:13', 0, NULL, 0, NULL, 1),
(6006, 13521, 'India Pistons Private Limited', 'Manufacturing', '2019-04-01', 15000.00, '2020-03-02', 15000.00, 'Perambur', '1', '0 years 11 months', ' Cantract Closed', 1, '2023-07-04 02:19:59', 0, NULL, 0, NULL, 1),
(6007, 13521, 'KauveryHospital', 'Vaccinetion Duty', '2020-03-10', 12000.00, '2021-06-30', 15000.00, 'Mylapure', '1', '1 years 3 months', 'Vaccinetion Close', 1, '2023-07-04 02:21:40', 0, NULL, 0, NULL, 1),
(6008, 13511, 'Jio fiber ', 'Sales executive ', '2022-06-20', 20000.00, '1970-01-01', 20000.00, 'Triplecan ', '2', '0 years 11 months', ' Salary issue ', 1, '2023-07-04 03:00:20', 1, '2023-07-04 03:16:23', 0, NULL, 0),
(6009, 13518, 'tvs insurance broaking ltd', 'insurance executive', '2022-11-15', 17200.00, '1970-01-01', 17200.00, 'guindY', '2', '0 years 7 months', 'closed life insurance', 108, '2023-07-04 03:24:22', 108, '2023-07-04 03:25:29', 0, NULL, 0),
(6010, 13518, 'tvs insurance broaking ltd', 'insurace executive', '2022-11-15', 17200.00, '2023-06-29', 17200.00, 'guindY', '1', '0 years 7 months', 'life insurance closed', 108, '2023-07-04 03:30:40', 0, NULL, 0, NULL, 1),
(6011, 13523, 'Amazon', 'Quality Services Associate', '2021-04-12', 23000.00, '2023-03-28', 25000.00, 'Chennai', '1', '1 years 11 months', ' Due tk personal reasons ', 1, '2023-07-04 06:50:38', 0, NULL, 0, NULL, 1),
(6012, 13525, 'Gayarthi hr', 'Appointment', '2023-07-04', 22.00, '2023-07-05', 20.00, 'Chennai', '1', '0 years 0 months', ' Family sivisition', 1, '2023-07-04 11:18:40', 0, NULL, 0, NULL, 1),
(6013, 13530, 'Dvara Kshetheriya gramin Financial ', 'Wealth manager direct team ', '2022-01-24', 9000.00, '1970-01-01', 10000.00, 'Arumbakkam ', '2', '1 years 5 months', ' Salary Issue ', 1, '2023-07-05 11:01:49', 108, '2023-07-05 11:03:35', 0, NULL, 1),
(6014, 13529, 'hdb financial service pvt ltd', 'risk and compliant', '2021-07-01', 14000.00, '2023-07-05', 22000.00, 'thiruvanmaiYur', '2', '2 years 0 months', 'career growth', 108, '2023-07-05 01:04:30', 0, NULL, 0, NULL, 1),
(6015, 13534, 'donate people charatable trust', 'telecaller', '2022-12-01', 12000.00, '2023-07-05', 15000.00, 'Purasaiwakkam', '1', '0 years 7 months', 'doneres cheating', 108, '2023-07-06 11:05:59', 0, NULL, 0, NULL, 1),
(6016, 13539, 'HDB financial services limited company ', 'Senior telecalling officers ', '2021-10-27', 11500.00, '2023-05-03', 11500.00, 'Chennai ', '1', '1 years 6 months', ' I have worded with HDB financial services limited company for 1 year and 6 month.now I need to push myself to next level  so that for the change was required ', 1, '2023-07-06 11:19:16', 0, NULL, 0, NULL, 1),
(6017, 13544, 'Quess corp', 'Customers support ', '2020-10-29', 1.00, '2022-11-30', 350000.00, 'Chennai ', '1', '2 years 1 months', ' looking for Prement job ', 1, '2023-07-06 12:38:31', 0, NULL, 0, NULL, 1),
(6018, 13545, 'Bajaj Allianz ', 'Ssm', '2022-11-29', 25000.00, '2023-05-30', 25000.00, 'Arumbakkam', '1', '0 years 6 months', ' ', 1, '2023-07-06 01:25:19', 0, NULL, 0, NULL, 1),
(6019, 13550, 'Suryoday Small Finance Bank ', 'Collection Officer ', '2021-07-06', 19314.00, '2022-10-31', 19314.00, 'Bijapur ', '1', '1 years 3 months', ' They relocated their branch after the relocation due to some traveling Issue i left there.', 1, '2023-07-07 11:23:49', 0, NULL, 0, NULL, 1),
(6020, 13555, 'Collar Jobskart pvt ltd', 'HR Recruiter', '2022-06-04', 5.00, '2023-06-06', 20000.00, 'Chennai', '1', '1 years 0 months', ' Due to health issues I couldn\'t able to travel that far from my home ', 1, '2023-07-07 12:14:46', 0, NULL, 0, NULL, 1),
(6021, 13556, 'Policy Bazaar ', 'Relationship Manager ', '2022-08-10', 400000.00, '2023-02-24', 400000.00, 'Chennai ', '1', '0 years 6 months', 'Work pressure...', 1, '2023-07-07 12:22:31', 0, NULL, 0, NULL, 1),
(6022, 13556, 'Ensuretech Business Solutions ', 'Sales Coordinator ', '2021-08-06', 25000.00, '2022-07-30', 25000.00, 'Chennai', '1', '0 years 11 months', 'Better Opportunity ', 1, '2023-07-07 12:27:53', 0, NULL, 0, NULL, 1),
(6023, 13556, 'Bharathi Cement Traders ', 'Assistant Manager in Administration ', '2018-09-20', 15000.00, '2020-11-30', 15000.00, 'Pattukkottai', '1', '2 years 2 months', 'Due to delivery ', 1, '2023-07-07 12:32:44', 0, NULL, 0, NULL, 1),
(6024, 13556, 'Royal Sundaram General Insurance company ', 'Customer Service Associate ', '2013-10-03', 300000.00, '2018-08-08', 350000.00, 'Chennai ', '1', '4 years 10 months', 'Family shiftedShifted to Hometown...', 1, '2023-07-07 12:36:43', 0, NULL, 0, NULL, 1),
(6025, 13556, 'Reliance Life Insurance ', 'Customer Service Executive ', '2006-09-06', 8000.00, '2011-12-30', 18000.00, 'Chennai ', '1', '5 years 3 months', 'Marriage', 1, '2023-07-07 12:39:02', 0, NULL, 0, NULL, 1),
(6026, 13556, 'ABT Maruti Pvt Ltd', 'Front Office Executive ', '2005-02-05', 2500.00, '2006-07-20', 3000.00, ' Chennai ', '1', '1 years 5 months', 'Better Opportunity ', 1, '2023-07-07 12:43:31', 0, NULL, 0, NULL, 1),
(6027, 13559, 'Casagrand builders', 'Pre sales executive ', '2021-08-18', 16700.00, '2022-05-21', 16700.00, 'Chennai', '1', '0 years 9 months', ' Due to health issue ', 1, '2023-07-07 03:03:32', 0, NULL, 0, NULL, 1),
(6028, 13559, 'Dra homes', 'Pre sales', '2023-01-21', 18500.00, '1970-01-01', 18500.00, 'Royapettah ', '2', '0 years 5 months', 'First the office is located at nanthanam now it is shifted to Royapettah due to distance resigned the job', 1, '2023-07-07 03:05:18', 0, NULL, 0, NULL, 1),
(6029, 13560, 'DRA homes', 'EXECUTIVE', '2023-04-13', 25200.00, '2023-07-07', 25200.00, 'Royapet', '2', '0 years 2 months', ' Location ', 1, '2023-07-07 03:17:26', 0, NULL, 0, NULL, 1),
(6030, 13561, 'Hdb financial service', 'Senior telecaller', '2022-03-09', 11000.00, '2023-07-03', 15000.00, 'Greems road, Thousand Lights', '1', '1 years 3 months', ' Health issue', 1, '2023-07-07 04:48:24', 1, '2023-07-07 08:33:51', 0, NULL, 0),
(6031, 13562, 'Sri Hema infotech', 'Digital marketer', '2023-07-07', 10000.00, '2023-07-30', 18000.00, 'Perambur', '1', '0 years 0 months', ' Start up Company, not Affotable hike salary', 1, '2023-07-07 06:59:37', 0, NULL, 0, NULL, 1),
(6032, 13561, 'HDB FINANCIAL SERVICES', 'Senior Telecaller', '2022-03-09', 11000.00, '2023-07-03', 15000.00, 'Thousand lights, Chennai', '1', '1 years 3 months', 'To develop Knowledge and learn something new', 1, '2023-07-07 08:33:53', 0, NULL, 0, NULL, 1),
(6033, 13566, 'EPK Group', 'Digital marketing ', '2020-11-05', 9000.00, '2021-02-06', 9000.00, 'Chennai ', '1', '0 years 3 months', 'Corona period ', 1, '2023-07-08 11:35:48', 0, NULL, 0, NULL, 1),
(6034, 13566, 'TEXTSPEED TECHNOLOGY PVT LTD', 'Business Development manager ', '2021-02-19', 12000.00, '2023-06-30', 18000.00, 'Chennai ', '1', '2 years 4 months', 'Develop my knowledge in other departments (or) other technology ', 1, '2023-07-08 11:38:29', 0, NULL, 0, NULL, 1),
(6035, 13571, 'Yes bank limited', 'Virtual relationship manager', '2023-04-05', 24000.00, '1970-01-01', 24000.00, 'Chennai', '2', '0 years 3 months', ' Not satisfied with the salary', 1, '2023-07-08 12:20:55', 0, NULL, 0, NULL, 1),
(6036, 13571, 'Bankbazaar.com', 'Customer relationship officer', '2021-05-31', 21000.00, '2022-07-27', 21000.00, 'Chennai', '1', '1 years 1 months', 'Contract time over', 1, '2023-07-08 12:22:43', 0, NULL, 0, NULL, 1),
(6037, 13576, 'Allset business solutions', 'Telecaller', '2021-06-30', 13000.00, '2023-04-15', 14000.00, 'Thousand lights', '1', '1 years 9 months', ' Low salary, log out time is very late', 1, '2023-07-08 01:08:52', 0, NULL, 0, NULL, 1),
(6038, 13575, 'Allset business solutions ', 'Telecaller ', '2019-06-01', 11500.00, '2023-07-03', 14000.00, 'Thousand lights ', '1', '4 years 1 months', ' ', 1, '2023-07-08 01:10:53', 0, NULL, 0, NULL, 1),
(6039, 13582, 'ja solution', 'telecalling', '2023-02-01', 11500.00, '2023-06-26', 11000.00, 'thanjavur', '1', '0 years 4 months', ' finan iss ', 1, '2023-07-10 11:34:44', 0, NULL, 0, NULL, 1),
(6040, 13588, 'Wheelseye Technology India Pvt Ltd ', 'Executive ', '2021-09-05', 19500.00, '2023-04-30', 24477.00, 'Berhampur, Odisha ', '1', '1 years 7 months', ' Higher salary', 1, '2023-07-10 04:56:30', 0, NULL, 0, NULL, 1),
(6041, 13594, 'Focus capital prt lit', 'Customer relationship manager', '2023-01-31', 18000.00, '2023-06-30', 18000.00, 'Kodambakkam ', '1', '0 years 4 months', ' Salary issue', 1, '2023-07-11 12:44:33', 0, NULL, 0, NULL, 1),
(6042, 13594, 'Muthoot finance ', 'JRE', '2022-01-05', 17000.00, '2023-01-31', 19700.00, 'Choolaimedu branch ', '1', '1 years 0 months', 'Health issue ', 1, '2023-07-11 12:47:25', 0, NULL, 0, NULL, 1),
(6043, 13600, 'Software pundits private limited', 'Content developer', '2022-03-23', 17000.00, '2022-09-23', 17000.00, 'Bangalore (WFM)', '1', '0 years 6 months', ' Contract finished', 1, '2023-07-11 11:32:07', 0, NULL, 0, NULL, 1),
(6044, 13589, 'Airtel ', 'Gis', '2021-03-18', 20000.00, '2023-04-07', 20000.00, 'Chennai ', '1', '2 years 0 months', ' Better opportunity ', 1, '2023-07-11 11:38:15', 0, NULL, 0, NULL, 1),
(6045, 13593, 'Matrimony. Com', 'Sales executive', '2022-09-29', 16000.00, '2023-03-31', 16000.00, 'Guindy', '1', '0 years 6 months', ' Higher studys', 1, '2023-07-11 11:38:22', 0, NULL, 0, NULL, 1),
(6046, 13602, 'teamware solutions', 'talent acquisition- us it', '2021-09-01', 350000.00, '2023-02-28', 350000.00, 'chennai', '1', '1 years 5 months', ' Better offer', 1, '2023-07-11 12:02:11', 1, '2023-07-11 12:03:16', 0, NULL, 0),
(6047, 13602, '  jana small finance bank', 'business development executive', '2019-11-01', 300000.00, '2021-07-31', 320000.00, 'chennai', '1', '1 years 8 months', 'Domain change', 1, '2023-07-11 12:05:18', 1, '2023-07-11 12:06:06', 0, NULL, 0),
(6048, 13602, ' mind master technologies', 'senior field operation executive', '2019-04-01', 300000.00, '2019-09-24', 300000.00, 'chennai', '1', '0 years 5 months', 'Company shutdown', 1, '2023-07-11 12:08:57', 0, NULL, 0, NULL, 1),
(6049, 13602, 'one97 communication', 'field sales executive', '2017-02-01', 200000.00, '2017-09-30', 250000.00, 'chennai', '1', '0 years 7 months', 'Met with accident', 1, '2023-07-11 12:10:40', 0, NULL, 0, NULL, 1),
(6050, 13605, 'Casagrand Builders', 'Senior Telemarketing Executive', '2020-08-02', 25000.00, '2022-08-02', 25000.00, 'Chennai', '1', '2 years 0 months', ' Settled at Thanjavur after Married', 1, '2023-07-11 12:44:13', 0, NULL, 0, NULL, 1),
(6051, 13605, 'Aakash Educational Services Ltd', 'Admission Officer', '2022-12-02', 32500.00, '2023-03-10', 32500.00, 'Thanjavur', '1', '0 years 3 months', 'Branch closed', 1, '2023-07-11 12:46:09', 0, NULL, 0, NULL, 1),
(6052, 13603, 'Magnessa enterprise private limited ', 'Accounts executive ', '2020-12-10', 10000.00, '2021-12-15', 10000.00, 'Pallavaram', '1', '1 years 0 months', ' For studies', 1, '2023-07-11 12:47:47', 0, NULL, 0, NULL, 1),
(6053, 13604, 'Genisys Information System Pvt Ltd ', 'Junior executive customer support ', '2021-09-27', 16000.00, '2022-09-30', 18000.00, 'Bangalore ', '1', '1 years 0 months', ' Study purpose ', 1, '2023-07-11 01:03:09', 0, NULL, 0, NULL, 1),
(6054, 13606, 'aagna global solutions', 'back end', '2017-06-10', 16000.00, '2018-07-30', 19500.00, 'kovilambakkam', '1', '1 years 1 months', ' Company closed ', 1, '2023-07-11 01:12:08', 0, NULL, 0, NULL, 1),
(6055, 13607, 'daimler ', 'internal superviser', '2018-02-11', 17000.00, '2023-03-10', 21000.00, 'oragadam', '1', '5 years 0 months', ' No salary increament ', 1, '2023-07-11 01:58:50', 0, NULL, 0, NULL, 1),
(6056, 13610, 'Rejola IT Services ', 'Software Engineer ', '2022-05-23', 16000.00, '1970-01-01', 23000.00, 'Chennai', '2', '1 years 1 months', ' No professional growth. ', 1, '2023-07-11 03:13:21', 0, NULL, 0, NULL, 1),
(6057, 13611, 'Accenture', 'Process Associate ', '2015-07-11', 13000.00, '2016-03-12', 20000.00, 'Shollunganallur', '1', '0 years 8 months', ' Project end', 1, '2023-07-11 04:51:22', 0, NULL, 0, NULL, 1),
(6058, 13611, 'Barclays', 'Process Associate ', '2016-05-09', 16000.00, '2017-02-02', 20000.00, 'Porur', '1', '0 years 8 months', 'Project Closed', 1, '2023-07-11 04:53:24', 0, NULL, 0, NULL, 1),
(6059, 13611, 'Altruist', 'Customer Support Officer', '2022-09-05', 20000.00, '2023-05-10', 20000.00, 'Velachery', '1', '0 years 8 months', 'Health issue', 1, '2023-07-11 04:55:33', 0, NULL, 0, NULL, 1),
(6060, 13613, 'shree boutique bridal studio', 'digital marketing manager and customer sales repre', '2022-01-05', 27000.00, '2023-04-28', 33000.00, 'sowcarpet', '1', '1 years 3 months', 'Wanted to work at place where i can explore myself more and see career growth', 1, '2023-07-12 01:32:11', 0, NULL, 0, NULL, 1),
(6061, 13617, 'Computer Age management services Pvt ltd', 'Executive alternative service', '2021-10-21', 12000.00, '2023-05-02', 13000.00, 'Rayala towers,Mount road,Chennai', '1', '1 years 6 months', 'Engagement purpose ', 1, '2023-07-12 10:23:02', 0, NULL, 0, NULL, 1),
(6062, 13598, 'Allset business solution ', 'Telecaller', '2022-10-16', 10000.00, '2023-06-30', 12000.00, 'Thousand light ', '1', '0 years 8 months', ' ', 1, '2023-07-12 10:28:16', 0, NULL, 0, NULL, 1),
(6063, 13618, 'sbi card hdfc sales', 'junior sale ', '2022-01-25', 14000.00, '1970-01-01', 14000.00, 'chennai vadapalani', '2', '1 years 5 months', ' ', 1, '2023-07-12 11:09:20', 0, NULL, 0, NULL, 1),
(6064, 13618, 'hdfc sales', 'tele calling', '2022-01-25', 14000.00, '1970-01-01', 14000.00, 'vadapalani', '2', '1 years 5 months', 'No', 1, '2023-07-12 11:11:09', 0, NULL, 0, NULL, 1),
(6065, 13621, 'Star Health Insurance ', 'Telle Sales Officer', '2022-08-08', 16000.00, '2023-05-05', 16000.00, 'Vadapalani ', '1', '0 years 8 months', ' Improve my Skill', 1, '2023-07-12 01:54:30', 0, NULL, 0, NULL, 1),
(6066, 13625, 'Ael data service', 'Ui developer', '2022-02-08', 15000.00, '2022-07-08', 15000.00, 'Porur', '1', '0 years 5 months', ' Trying in backend', 1, '2023-07-13 10:26:43', 0, NULL, 0, NULL, 1),
(6067, 13624, 'Hotel ramnath', 'Receipient', '2022-07-13', 15000.00, '2023-03-13', 15000.00, 'Thanjavur ', '1', '0 years 8 months', ' Operation ', 1, '2023-07-13 10:29:11', 0, NULL, 0, NULL, 1),
(6068, 13630, 'Ola electric scooter ', 'PDI executive ', '2022-09-12', 23000.00, '2023-06-09', 23000.00, 'Ambattur ', '1', '0 years 8 months', ' Long distance ', 1, '2023-07-13 11:54:52', 0, NULL, 0, NULL, 1),
(6069, 13631, 'Bajaj finance ', 'Sales executive ', '2022-06-06', 20.00, '2023-04-01', 20.00, 'Thirumulivoyall', '1', '0 years 9 months', ' 12 hours work ', 1, '2023-07-13 11:56:19', 0, NULL, 0, NULL, 1),
(6070, 13635, 'Gogosoon private limited ', 'Full stack developer ', '2022-04-01', 600000.00, '2023-04-01', 600000.00, 'Chennai', '1', '1 years 0 months', ' Changed to a client company where i asked to work as a tester and since it was a legacy project and i didn\'t get enough support so quit the job', 1, '2023-07-13 12:46:48', 0, NULL, 0, NULL, 1),
(6071, 13636, 'Sriramlife insurance', 'CRO', '2022-02-16', 22000.00, '2023-04-30', 22000.00, 'Egmore', '1', '1 years 2 months', ' ', 1, '2023-07-13 02:47:50', 0, NULL, 0, NULL, 1),
(6072, 13638, 'Cars 24 financial pvt ltd', 'Sales Associate', '2021-04-25', 29000.00, '2022-07-30', 29000.00, 'Chennai ', '1', '1 years 3 months', ' Bike accident ', 1, '2023-07-14 09:20:54', 0, NULL, 0, NULL, 1),
(6073, 13639, '360DigiTMG', 'Customer Support', '2022-06-08', 15000.00, '2023-05-14', 18000.00, 'Chennai', '1', '0 years 11 months', 'Salary Issue', 1, '2023-07-14 10:20:40', 0, NULL, 0, NULL, 1),
(6074, 13639, 'Datamatics Global Services Limited', 'Backend Executive', '2017-01-25', 10000.00, '2020-08-04', 14000.00, 'Chennai', '1', '3 years 6 months', 'Branch was closed in Chennai due to pandemic', 1, '2023-07-14 10:22:57', 0, NULL, 0, NULL, 1),
(6075, 13639, 'eBixie solutions ', 'SEO Analyst', '2010-12-03', 5000.00, '2016-10-30', 9000.00, 'Chennai ', '1', '5 years 10 months', 'Salary Issue', 1, '2023-07-14 10:25:54', 0, NULL, 0, NULL, 1),
(6076, 13642, 'webserve software', 'front end developer', '2022-04-01', 15000.00, '2023-03-31', 15000.00, 'perambur', '1', '0 years 11 months', 'less number of projects', 1, '2023-07-14 12:47:47', 0, NULL, 0, NULL, 1),
(6077, 13648, 'Sutherland ', 'Senior Associate ', '2014-10-10', 12000.00, '2022-10-29', 380000.00, 'Chennai ', '1', '8 years 0 months', ' Relocation to native ', 1, '2023-07-14 01:00:10', 0, NULL, 0, NULL, 1),
(6078, 13647, 'Gomechanic', 'Customer relationship manager ', '2022-05-12', 23000.00, '2023-01-19', 23000.00, 'Thousand light', '1', '0 years 8 months', 'Company due to loss by financial so didn\'t continue the work ', 1, '2023-07-14 01:02:31', 0, NULL, 0, NULL, 1),
(6079, 13649, 'Medusind solution ', 'Client service executive ', '2021-11-12', 10300.00, '2023-02-27', 14500.00, 'Chennai', '1', '1 years 3 months', ' Looking for a carrier growth ', 1, '2023-07-14 01:12:03', 0, NULL, 0, NULL, 1),
(6080, 13650, 'Nexcons solutions ', 'Junior trainee ', '2021-06-14', 144000.00, '2022-02-28', 144000.00, 'Coimbatore ', '1', '0 years 8 months', 'For my next level of Learning', 1, '2023-07-14 02:17:47', 0, NULL, 0, NULL, 1),
(6081, 13650, 'Osiz technologies Pvt Ltd ', 'Junior designer ', '2022-05-23', 156000.00, '2023-05-23', 192000.00, 'Madurai ', '1', '1 years 0 months', 'Health issues ', 1, '2023-07-14 02:21:03', 0, NULL, 0, NULL, 1),
(6082, 13652, 'Cencury cars', 'Sales management ', '2022-12-10', 22000.00, '1970-01-01', 23000.00, 'T nagar', '2', '0 years 7 months', ' insensitive issues ', 1, '2023-07-14 05:12:47', 0, NULL, 0, NULL, 1),
(6083, 13651, 'Taurus boo ', ' Senior Customer Sales Executive', '2022-07-11', 20000.00, '2023-05-17', 20000.00, 'Kodambakkam', '1', '0 years 10 months', ' Some health Issues ', 1, '2023-07-15 07:30:41', 0, NULL, 0, NULL, 1),
(6084, 13659, 'Aetram group of solution ', 'Sales executive ', '2022-08-22', 12000.00, '2023-04-01', 12000.00, 'Chennai,mount road ', '1', '0 years 7 months', ' ', 1, '2023-07-15 10:25:34', 0, NULL, 0, NULL, 1),
(6085, 13657, 'Aetram trading solutions ', 'Sales executive ', '2022-02-21', 12000.00, '2022-12-31', 12000.00, 'Mount road Chennai ', '1', '0 years 10 months', ' ', 1, '2023-07-15 10:26:15', 0, NULL, 0, NULL, 1),
(6086, 13659, 'Rising corporation ', 'Senior sales executive ', '2022-04-03', 14000.00, '1970-01-01', 14000.00, 'Chennai ,Spencer plazza ', '2', '1 years 3 months', 'Process is not yet started and environment , surrounding issues', 1, '2023-07-15 10:28:31', 0, NULL, 0, NULL, 1),
(6087, 13657, 'Rising corporation ', 'Sales executive ', '2023-04-10', 15000.00, '1970-01-01', 15000.00, 'Chennai spencer plazza', '2', '0 years 3 months', 'Process is not yet to start and environment issues ', 1, '2023-07-15 10:28:37', 0, NULL, 0, NULL, 1),
(6088, 13660, 'Tekclan Software Solutions', 'Ui ux designer', '2021-08-02', 336000.00, '2023-07-10', 380000.00, 'Chennai', '1', '1 years 11 months', 'Need to work in a new environment to improve myself to a next level, and want to collabrate with a new team.', 1, '2023-07-15 10:35:20', 0, NULL, 0, NULL, 1),
(6089, 13658, 'Aetram Group of solution ', 'Sales executive ', '2022-08-22', 12000.00, '2023-03-31', 12000.00, 'Chennai , Mount road ', '1', '0 years 7 months', ' ', 1, '2023-07-15 10:40:05', 0, NULL, 0, NULL, 1),
(6090, 13658, 'Rising corporation ', 'Senior sales executive ', '2023-04-03', 14000.00, '1970-01-01', 14000.00, 'Chennai, Spencer plazza ', '2', '0 years 3 months', 'Process was not yet started and having surrounding, environment issues ', 1, '2023-07-15 10:41:23', 0, NULL, 0, NULL, 1),
(6091, 13663, 'Bankbazaar', 'Senior customer relationship officer grade II', '2016-02-15', 20000.00, '1970-01-01', 360000.00, 'Ambatur I e', '2', '7 years 5 months', ' Career growth', 1, '2023-07-15 12:50:22', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6092, 13664, 'Computer age management system', 'Customer service officer', '2019-06-24', 16000.00, '2023-02-02', 18000.00, 'Lic', '1', '3 years 7 months', ' Looking for carrier growth and better salary', 1, '2023-07-15 12:58:45', 0, NULL, 0, NULL, 1),
(6093, 13665, 'Datamatics global service pvt ltd', 'Accounts executive', '2020-07-01', 10000.00, '2021-11-25', 10000.00, 'Pondicherry', '1', '1 years 4 months', 'Recently married', 1, '2023-07-15 02:22:15', 0, NULL, 0, NULL, 1),
(6094, 13667, 'Teleperformance ', 'Ambit  ', '2023-03-20', 12000.00, '2023-05-30', 12000.00, 'Ambattur', '1', '0 years 3 months', ' ', 1, '2023-07-16 11:07:37', 0, NULL, 0, NULL, 1),
(6095, 13672, 'Child trust', 'Moolakadai', '2020-11-04', 10000.00, '2022-08-16', 14000.00, 'Perambur', '1', '1 years 9 months', ' Health issues I', 1, '2023-07-17 11:57:02', 0, NULL, 0, NULL, 1),
(6096, 13673, 'Credit card ', 'Tellecaller ', '2021-02-20', 13500.00, '2022-01-01', 15000.00, 'Vadapalani ', '1', '0 years 10 months', ' ', 1, '2023-07-17 11:57:24', 0, NULL, 0, NULL, 1),
(6097, 13669, 'PROCHANT INDIA PVT LTD ', 'Senior process Associate ', '2022-10-21', 16000.00, '2023-05-06', 21000.00, 'DLF IT PARK CHENNAI ', '1', '0 years 6 months', ' Affected by Health condition due to complete Night shift.', 1, '2023-07-17 12:05:23', 0, NULL, 0, NULL, 1),
(6098, 13675, 'Bluechip corporate investment centre ltd', 'Field executive ', '2018-04-02', 12000.00, '2023-06-09', 15750.00, 'Chennai ', '1', '5 years 2 months', 'I want to go to the next level for my career..', 1, '2023-07-17 07:43:42', 0, NULL, 0, NULL, 1),
(6099, 13676, 'Miramed Ajuba solutions pvt Ltd', 'Junior Executive in Medical billing', '2022-01-31', 14500.00, '2023-05-04', 17000.00, 'Chennai', '1', '1 years 3 months', 'My mother had spinal surgery due to that i immediately relieved from my previous job.', 1, '2023-07-17 10:12:11', 0, NULL, 0, NULL, 1),
(6100, 13676, 'Bankzone solutions', 'Telecaller', '2020-10-12', 12000.00, '2021-11-12', 13000.00, 'Nungambakkam ', '1', '1 years 1 months', 'The company was running at a loss and closed down .They terminated all employees.', 1, '2023-07-17 10:17:21', 0, NULL, 0, NULL, 1),
(6101, 13679, 'jeeves customer service', 'team leader', '2023-02-26', 23000.00, '2023-08-01', 23000.00, 'chennai', '1', '0 years 5 months', ' ', 1, '2023-07-18 10:39:03', 0, NULL, 0, NULL, 1),
(6102, 13678, 'Poorvika head office', 'Junior executive accounts', '2022-04-04', 14000.00, '2023-01-02', 12000.00, 'Ekkatuthangal', '1', '0 years 8 months', ' Family issue', 1, '2023-07-18 10:47:15', 0, NULL, 0, NULL, 1),
(6103, 13684, 'Bijinis whole sale marketing', 'Sales marketing', '2022-12-16', 15000.00, '2023-07-18', 17000.00, 'Chennai', '1', '0 years 7 months', 'Better job ', 1, '2023-07-18 03:27:49', 0, NULL, 0, NULL, 1),
(6104, 13686, 'Imarque solution', 'Customer support executive', '2022-07-20', 15000.00, '2023-05-12', 15000.00, 'Chennai', '1', '0 years 9 months', ' Our project is a newly launched For support customer, but due to client side they forced to shut down the operation, moreover there is no other opening in other projects, ', 1, '2023-07-19 02:19:27', 0, NULL, 0, NULL, 1),
(6105, 13687, 'Ontwikkel advertising private limited ', 'Senior tele sales executive ', '2021-07-01', 16000.00, '2023-07-05', 23000.00, 'Poes garden teynampet ', '1', '2 years 0 months', ' Looking for a better place for my growth ', 1, '2023-07-19 08:19:29', 0, NULL, 0, NULL, 1),
(6106, 13706, 'godrej consumer products limited', 'maintenance technician', '2022-02-07', 12000.00, '2023-01-05', 15000.00, 'karaikal', '1', '0 years 10 months', ' career growth', 1, '2023-07-21 11:27:06', 0, NULL, 0, NULL, 1),
(6107, 13708, 'mational shine', 'sales', '2023-06-01', 18000.00, '1970-01-01', 18000.00, 'royapeta', '2', '0 years 1 months', ' sal growth', 1, '2023-07-21 04:09:39', 0, NULL, 0, NULL, 1),
(6108, 13713, 'FPL Automobile Private Limited ', 'Sales Consultant', '2022-09-14', 15000.00, '2023-01-31', 15000.00, 'Chennai ', '1', '0 years 4 months', 'Personal Reasons', 1, '2023-07-21 05:17:38', 0, NULL, 0, NULL, 1),
(6109, 13715, 'cedar business solutions', 'nugambakkam', '2022-03-28', 13000.00, '2023-03-05', 18500.00, 'one year six months', '1', '0 years 11 months', ' i have changed my residence so i have relieved', 1, '2023-07-22 10:16:31', 0, NULL, 0, NULL, 1),
(6110, 13715, 'ibrisk ', 'agent', '2023-04-01', 18500.00, '1970-01-01', 18500.00, 'kodabakkam', '2', '0 years 3 months', 'office branch going to shift so i have in notice period', 1, '2023-07-22 10:18:24', 0, NULL, 0, NULL, 1),
(6111, 13717, 'Justdial Ltd ', 'Telemarketing Executive ', '2022-03-05', 18000.00, '2023-01-07', 18000.00, 'Chennai ', '1', '0 years 10 months', 'Back to native ', 1, '2023-07-22 10:57:46', 0, NULL, 0, NULL, 1),
(6112, 13722, 'paragon digital services pvt ltd', 'social media marketing', '2020-11-12', 16000.00, '1970-01-01', 25200.00, 'chennai', '2', '2 years 8 months', ' Want to move my career into core digital marketing', 1, '2023-07-22 01:23:34', 0, NULL, 0, NULL, 1),
(6113, 13723, 'Bmb security system', 'Accountant ', '2022-12-05', 10000.00, '1970-01-01', 13000.00, 'Purshwalkkam', '2', '0 years 7 months', ' Want to gain new opprtunites ..get Knowledge about other things in business', 1, '2023-07-22 01:50:13', 0, NULL, 0, NULL, 1),
(6114, 13724, 'Naman road carrier', 'Acoountant', '2021-08-01', 15000.00, '1970-01-01', 20000.00, 'Sowcarpet ', '2', '1 years 11 months', ' Want to grab new opportunities ', 1, '2023-07-22 01:53:04', 0, NULL, 0, NULL, 1),
(6115, 13735, 'Seed2sapling Education ', 'Product Designer and developer', '2022-03-01', 40000.00, '1970-01-01', 50000.00, 'Bangalore ', '2', '1 years 4 months', ' Relocation to Chennai for family reasons ', 1, '2023-07-24 10:53:54', 0, NULL, 0, NULL, 1),
(6116, 13738, 'Shakthi stone house ', 'sales executive', '2021-12-01', 17000.00, '2022-12-24', 17000.00, 'Chennai ', '1', '1 years 0 months', 'Sunddenly accident for me so I will relieve in the company ', 1, '2023-07-24 11:10:58', 108, '2023-07-24 11:21:11', 0, NULL, 1),
(6117, 13736, 'Pace setters business pvt Ltd company ', 'Tellecaller ', '2022-06-07', 15000.00, '2023-07-21', 18000.00, 'Nunagambakkkam', '1', '1 years 1 months', 'Salary issue ', 1, '2023-07-24 11:12:43', 0, NULL, 0, NULL, 1),
(6118, 13725, 'Pace setters business pvt Ltd ', 'Tellecaller', '2022-04-19', 15000.00, '2023-07-21', 18000.00, 'Nungambakkam ', '1', '1 years 3 months', ' Salary issue', 1, '2023-07-24 11:13:39', 0, NULL, 0, NULL, 1),
(6119, 13744, 'SGS India private limited ', 'Process associate ', '2016-10-03', 19000.00, '2021-06-30', 20000.00, 'Chennai', '1', '4 years 8 months', ' COVID 19', 1, '2023-07-24 12:02:48', 0, NULL, 0, NULL, 1),
(6120, 13748, 'Iris KPO', 'Junior accounts officer', '2022-06-15', 3.50, '1970-01-01', 3.50, 'Nungambakkam', '2', '1 years 1 months', ' Career growth ', 1, '2023-07-24 12:25:05', 0, NULL, 0, NULL, 1),
(6121, 13733, 'TITO', 'Manager Admin', '2018-01-01', 240000.00, '2020-11-30', 240000.00, 'chennai', '1', '2 years 10 months', ' ', 1, '2023-07-24 12:33:34', 0, NULL, 0, NULL, 1),
(6122, 13749, 'ZF WABCO comercial vehicle control sys and sweet h', 'Quality Engineer and sales exquisite', '2020-09-01', 1.00, '2023-07-24', 18000.00, 'Chengalpattu ', '1', '2 years 10 months', ' Completed training ', 1, '2023-07-24 12:45:20', 0, NULL, 0, NULL, 1),
(6123, 13751, 'Tcs (payroll gcl )', 'Hr', '2021-12-08', 11000.00, '1970-01-01', 11000.00, 'Chennai ', '2', '1 years 7 months', 'My education background is BCA,due to some family Situation I moved to Non-Tech filed.Now everything is fine and I have knowledge in developing role.I completed python Course also.', 1, '2023-07-24 12:47:15', 0, NULL, 0, NULL, 1),
(6124, 13742, 'casa grand private limited', 'senior customer care executive', '2020-08-13', 25000.00, '2022-08-01', 25000.00, 'ambattur', '1', '1 years 11 months', ' ', 1, '2023-07-24 01:01:48', 0, NULL, 0, NULL, 1),
(6125, 13756, 'Stanza Living ', 'Property manager ', '2023-01-05', 18000.00, '1970-01-01', 18000.00, 'Chennai ', '2', '0 years 6 months', ' Update my career ', 1, '2023-07-24 01:27:04', 0, NULL, 0, NULL, 1),
(6126, 13761, 'global kids international school', 'admin assistant', '2017-07-12', 15000.00, '2019-04-27', 18000.00, 'washermenpet', '1', '1 years 9 months', ' ', 1, '2023-07-24 02:54:54', 0, NULL, 0, NULL, 1),
(6127, 13770, 'Sameera Land developers', 'Sales manager', '2023-04-17', 425000.00, '2023-06-30', 425000.00, 'Chennai', '1', '0 years 2 months', ' Organization closed one of their Branch ', 1, '2023-07-24 03:00:44', 0, NULL, 0, NULL, 1),
(6128, 13769, 'Sitel India Ltd ', 'Senior Process Associate ', '2007-05-29', 300000.00, '2012-05-28', 350000.00, 'Chennai', '1', '4 years 11 months', ' Got job in TCS ', 1, '2023-07-24 03:04:18', 0, NULL, 0, NULL, 1),
(6129, 13769, 'TCS ', 'Business Process Lead ', '2012-05-30', 350000.00, '2022-07-13', 650000.00, 'Chennai ', '1', '10 years 1 months', 'Job change', 1, '2023-07-24 03:05:36', 0, NULL, 0, NULL, 1),
(6130, 13770, 'Aviva life Insurance pvt Ltd ', 'Client account manager', '2022-10-13', 349000.00, '2023-03-21', 349000.00, 'Chennai', '1', '0 years 5 months', 'Changed for hike on salary', 1, '2023-07-24 03:05:50', 1, '2023-07-24 03:06:16', 0, NULL, 1),
(6131, 13773, 'BYJUS ( Think & learn)', 'Business development executive ', '2022-01-19', 25000.00, '2023-07-04', 21000.00, 'Chennai ', '1', '1 years 5 months', ' Because  The overall BYJUS BTL marketing project was shutdown. ', 1, '2023-07-24 03:06:52', 0, NULL, 0, NULL, 1),
(6132, 13770, 'Relex Healthcare pvt ltd', 'Buisness development executive', '2022-06-03', 330000.00, '2022-09-22', 330000.00, 'Chennai', '1', '0 years 3 months', 'Organization dropout their projects at chennai', 1, '2023-07-24 03:09:53', 0, NULL, 0, NULL, 1),
(6133, 13771, 'BLUE ROSE', 'BUSINESS DEVOLOPMENT', '2023-01-01', 15000.00, '2023-04-02', 27000.00, 'REMOTE', '1', '0 years 3 months', 'EXAMS FOR STUDIES', 104, '2023-07-24 03:10:39', 0, NULL, 0, NULL, 1),
(6134, 13770, 'New national pharmaceutical', 'Buisness development executive', '2018-03-01', 250000.00, '2021-04-21', 325000.00, 'Timdivanam', '1', '3 years 1 months', 'Career update ', 1, '2023-07-24 03:12:26', 0, NULL, 0, NULL, 1),
(6135, 13775, 'Mobius knowledge services ', 'Software developer ', '2022-03-09', 15000.00, '2022-12-22', 15000.00, 'Chennai ', '1', '0 years 9 months', ' Looking better opportunities ', 1, '2023-07-24 03:59:10', 0, NULL, 0, NULL, 1),
(6136, 13776, 'tvs solutions', 'inventory team lead', '2021-02-25', 13000.00, '2021-10-29', 13000.00, 'sriperambatur', '1', '0 years 8 months', ' ', 1, '2023-07-24 04:28:45', 0, NULL, 0, NULL, 1),
(6137, 13776, 'nifco south india', 'quality controller', '2022-01-12', 14000.00, '2023-04-22', 18000.00, 'thiruvallyur', '1', '1 years 3 months', 'health issue', 1, '2023-07-24 04:32:43', 0, NULL, 0, NULL, 1),
(6138, 13781, 'Exela Technologies', 'Programmer Analyst', '2021-12-17', 17000.00, '2023-05-10', 28000.00, 'Chennai', '1', '1 years 4 months', ' Project has been going to closed  so im intrested in developement i changed my organization', 1, '2023-07-25 11:37:03', 0, NULL, 0, NULL, 1),
(6139, 13783, 'Entrust software And services pvt limited ', 'Associate software engineer ', '2022-03-14', 15000.00, '1970-01-01', 29792.00, 'Chennai', '2', '1 years 4 months', ' Due to longgg distance', 1, '2023-07-25 11:56:58', 0, NULL, 0, NULL, 1),
(6140, 13782, 'Vs online service pvt ltd', 'Junior  Software  developer', '2022-11-28', 15000.00, '2023-05-31', 15000.00, 'Chennai', '1', '0 years 6 months', ' Project was shutdown', 1, '2023-07-25 12:25:58', 0, NULL, 0, NULL, 1),
(6141, 13791, 'Smart Way Solution ', 'Telecalling', '2022-05-25', 15.00, '2023-05-25', 15000.00, 'Arumbakam', '1', '1 years 0 months', ' Health issues', 1, '2023-07-25 02:44:20', 0, NULL, 0, NULL, 1),
(6142, 13795, 'Tlc DigiTech ', 'Sales Executive ', '2022-03-01', 26000.00, '1970-01-01', 30000.00, 'Nungambakkam ', '2', '1 years 4 months', ' Need a good organisation where I can set a benchmark and build my sales carrier ahead', 1, '2023-07-25 03:35:10', 0, NULL, 0, NULL, 1),
(6143, 13806, 'kestone integrated marking private limited', 'executive', '2022-12-01', 18000.00, '2023-05-21', 10.00, 'ganapathy coimbatore', '1', '0 years 5 months', 'This is right time to move on IT Because my ambition become web developer so may month i have complete my course that why am resiged my join and iam here for interview thanks for this opportunity', 1, '2023-07-26 10:44:28', 0, NULL, 0, NULL, 1),
(6144, 13821, 'All set business sollution', 'Telecalling ', '2023-05-23', 11000.00, '2023-07-25', 11000.00, 'Thousands light ', '1', '0 years 2 months', 'Low salary work pressure ', 1, '2023-07-26 11:17:18', 0, NULL, 0, NULL, 1),
(6145, 13830, 'Bumi HighIQ Software Solutions ', 'Software developer intern ', '2022-12-01', 20000.00, '2023-02-28', 20000.00, 'Hyderabad ', '1', '0 years 2 months', ' Training got over', 1, '2023-07-26 11:25:52', 1, '2023-07-26 11:28:21', 0, NULL, 1),
(6146, 13830, 'Inspire Management Company ', 'Web Developer ', '2022-06-01', 10000.00, '2022-11-30', 10000.00, 'Chennai ', '1', '0 years 5 months', 'Internship got over', 1, '2023-07-26 11:27:30', 0, NULL, 0, NULL, 1),
(6147, 13832, 'Zerame Infotech', 'Full stack developer', '2022-02-07', 10000.00, '2023-04-12', 20000.00, 'Coimbatore', '1', '1 years 2 months', ' Office in coimbatore so i can\'t able go ', 1, '2023-07-26 11:45:10', 0, NULL, 0, NULL, 1),
(6148, 13840, 'Spiresystems ', 'Tnagar ', '2022-05-05', 6.00, '1970-01-01', 336000.00, 'Chennai ', '2', '1 years 2 months', 'To gain more software knowledge.\nTo update my skills', 1, '2023-07-26 11:53:29', 0, NULL, 0, NULL, 1),
(6149, 13799, 'viswa technoligies', 'telemarketing', '2018-03-26', 16000.00, '2023-04-29', 25000.00, 'salem', '1', '5 years 1 months', ' location change', 1, '2023-07-26 12:11:14', 0, NULL, 0, NULL, 1),
(6150, 13808, 'vvp teack world', 'sales', '2020-01-20', 15000.00, '2023-07-25', 20000.00, 'kouther', '1', '3 years 6 months', ' Seeing for some good job', 1, '2023-07-26 12:31:19', 0, NULL, 0, NULL, 1),
(6151, 13849, 'Maersk', 'Associate ', '2012-05-01', 12500.00, '2017-11-06', 20000.00, 'Chennai', '1', '5 years 6 months', ' ', 1, '2023-07-26 12:41:25', 0, NULL, 0, NULL, 1),
(6152, 13864, 'Famebazaar', 'Koyembedu', '2022-07-23', 12000.00, '2023-07-07', 17000.00, 'Arrumbakkam', '1', '0 years 11 months', ' ', 1, '2023-07-27 10:36:16', 0, NULL, 0, NULL, 1),
(6153, 13877, 'Thiru malaise star newspaper company', 'Marketing executive ', '2022-05-08', 8000.00, '1970-01-01', 17000.00, 'Royapettah', '2', '1 years 2 months', ' For Gain more Experienced ', 1, '2023-07-27 12:09:46', 0, NULL, 0, NULL, 1),
(6154, 13875, 'Team Lease service pvt ltd', 'Process Advisor ', '2017-07-28', 15000.00, '2018-06-01', 15000.00, 'Dlf IT park Chennai', '1', '0 years 10 months', ' Contract', 1, '2023-07-27 12:14:47', 0, NULL, 0, NULL, 1),
(6155, 13875, 'Indusind Bank', 'Senior Credit Officer', '2018-09-07', 16500.00, '2022-04-30', 20500.00, 'Anna Nagar chennai', '1', '3 years 7 months', 'Career Growth', 1, '2023-07-27 12:16:25', 0, NULL, 0, NULL, 1),
(6156, 13875, 'Samunnati Agro Solution Pvt Ltd', 'Senior Executive', '2022-05-04', 27000.00, '2022-11-18', 27000.00, 'Chennai', '1', '0 years 6 months', 'For My mom Medical issue i took to take care of it..Now She Good...', 1, '2023-07-27 12:18:25', 0, NULL, 0, NULL, 1),
(6157, 13891, 'Ruralshores Business Services Pvt Ltd', 'Process Associate', '2016-12-20', 7000.00, '2019-09-01', 8500.00, 'Uthiramerur', '1', '2 years 8 months', ' Process Ramp Down', 1, '2023-07-27 08:57:29', 0, NULL, 0, NULL, 1),
(6158, 13891, 'Ruralshores Business Services Pvt Ltd ', 'Process Associate', '2020-04-01', 9500.00, '2022-11-30', 10500.00, 'Uthiramerur', '1', '2 years 7 months', 'Project Closed', 1, '2023-07-27 08:59:21', 0, NULL, 0, NULL, 1),
(6159, 13891, 'Uplus Technology India Pvt Ltd', 'Assembler', '2023-01-04', 14300.00, '2023-04-20', 14300.00, 'Mahendra World City', '1', '0 years 3 months', 'Health Issue', 1, '2023-07-27 09:03:08', 0, NULL, 0, NULL, 1),
(6160, 13892, 'ekam foundation', 'data analyst/mis officer', '2020-12-01', 200000.00, '2022-12-31', 29000.00, 'chennai', '1', '2 years 1 months', ' Project got over', 1, '2023-07-27 09:39:04', 0, NULL, 0, NULL, 1),
(6161, 13905, 'Sathya technosoft', 'AM', '2022-07-01', 6000.00, '2023-01-28', 14000.00, 'Tuticorin ', '1', '0 years 6 months', ' ', 1, '2023-07-28 11:15:21', 0, NULL, 0, NULL, 1),
(6162, 13911, 'Foxconn ', 'IT support Production ', '2021-08-09', 30.00, '2022-08-20', 14000.00, 'Chennai sunguvachatram ', '1', '1 years 0 months', ' Family problems ', 1, '2023-07-28 12:26:52', 0, NULL, 0, NULL, 1),
(6163, 13915, 'Trance home India services pvt ltd ', 'Telecaller', '2021-04-16', 12000.00, '2022-12-26', 16000.00, 'Padi', '1', '1 years 8 months', 'For college ', 1, '2023-07-28 12:46:40', 0, NULL, 0, NULL, 1),
(6164, 13919, 'maansarovar honda', 'insurance renewal executive', '2021-07-05', 12000.00, '2023-03-30', 12000.00, 'valasarvakkam', '1', '1 years 8 months', ' Studies ', 1, '2023-07-28 01:28:43', 0, NULL, 0, NULL, 1),
(6165, 13925, 'Renambl Technology\'s ', 'Full stack developer ', '2023-03-01', 8000.00, '1970-01-01', 18000.00, 'Thoraipakkam', '2', '0 years 5 months', ' To learn new technologies and for my career growth.', 1, '2023-07-29 11:16:31', 0, NULL, 0, NULL, 1),
(6166, 13922, 'Able aura technology and services ', 'Business development executive ', '2023-02-20', 17000.00, '1970-01-01', 17000.00, 'Chennai ', '2', '0 years 5 months', ' Career growth ', 1, '2023-07-29 12:19:00', 0, NULL, 0, NULL, 1),
(6167, 13930, 'Pulsus healthtech ', 'Host Manager/ Calling Executive ', '2022-04-11', 18000.00, '2023-05-31', 22000.00, 'Dlf Cyber city, Chennai ', '1', '1 years 1 months', ' Due my mother\'s illness and there was problems in funding and salary issues ', 1, '2023-07-29 05:59:03', 0, NULL, 0, NULL, 1),
(6168, 13945, 'Aachi masala and foods', 'QA-EXECUTIVE', '2019-07-21', 10.00, '2021-11-29', 16009.00, 'Redhills,ambatur', '1', '2 years 4 months', 'Want a change and salary hike', 1, '2023-07-31 10:52:21', 0, NULL, 0, NULL, 1),
(6169, 13945, 'Sitel India pvt ltd ', 'CSP-Tech support ', '2021-11-29', 31.00, '1970-01-01', 25000.00, 'Tharamani,chennai', '2', '1 years 8 months', 'Want a different experience ', 1, '2023-07-31 10:54:00', 0, NULL, 0, NULL, 1),
(6170, 13954, 'Human cloud soft ', 'Dot net developer ', '0202-07-20', 10000.00, '2023-07-23', 10000.00, 'Maduraivail ', '1', '1821 years 0 months', ' In order to enhance my skill set, I am looking for Better Opportunity ', 1, '2023-07-31 11:37:22', 0, NULL, 0, NULL, 1),
(6171, 13957, 'Croyez Immigration Services', 'Business Analyst', '2021-12-06', 15000.00, '2023-07-01', 23000.00, 'Chennai', '1', '1 years 6 months', ' To have a career growth in different domain. ', 1, '2023-07-31 11:40:48', 0, NULL, 0, NULL, 1),
(6172, 13967, 'Aagna global solutions ', 'Telecaller ', '2019-06-17', 18000.00, '2020-04-10', 18000.00, 'Porour ', '1', '0 years 9 months', ' Pandamic year', 1, '2023-08-01 10:17:50', 0, NULL, 0, NULL, 1),
(6173, 13971, 'Tech mahindra', 'Telercaller', '2021-09-06', 15000.00, '2022-12-20', 15000.00, 'Mount road', '1', '1 years 3 months', ' Business problem', 1, '2023-08-01 11:30:05', 0, NULL, 0, NULL, 1),
(6174, 13970, 'property bazzar', 'telecaller', '2022-06-06', 12000.00, '2023-03-30', 15000.00, 'tnagar', '1', '0 years 9 months', 'branch changed in tambaram', 108, '2023-08-01 11:51:21', 0, NULL, 0, NULL, 1),
(6175, 13972, 'WIPRO', 'LINUX SYSTEM ADMINISTRATOR ', '2021-10-01', 10000.00, '2023-03-03', 18000.00, 'Chennai', '1', '1 years 5 months', 'PASSIONATE ABOUT DEVELOPMENT ', 1, '2023-08-01 11:59:32', 0, NULL, 0, NULL, 1),
(6176, 13987, 'Casagrand builders', 'Sales executive ', '2023-01-01', 23000.00, '2023-08-02', 23000.00, 'Thiruvanmiyur', '1', '2 years 7 months', ' Personal issues ', 1, '2023-08-02 11:58:03', 0, NULL, 0, NULL, 1),
(6177, 13981, 'Russian culture centre ', 'Telecalling ', '2022-01-11', 16000.00, '2023-03-08', 16000.00, 'Chennai', '1', '1 years 1 months', ' Looking for to develop my knowledge ', 1, '2023-08-02 12:02:20', 0, NULL, 0, NULL, 1),
(6178, 13986, 'Bharat matrimony ', 'Tellecaller', '2019-12-16', 16000.00, '2020-07-15', 16000.00, 'Chennai ', '1', '1 years 7 months', ' Personal issues ', 1, '2023-08-02 12:09:33', 0, NULL, 0, NULL, 1),
(6179, 13986, 'Bharat matrimony ', 'Tellecaller ', '2019-12-16', 16000.00, '2020-07-15', 18000.00, 'Chennai', '1', '0 years 6 months', 'Personal issues ', 1, '2023-08-02 12:10:54', 0, NULL, 0, NULL, 1),
(6180, 13988, 'Sri Hari associates ', 'Telecalling,data entry ', '2022-05-15', 5000.00, '2023-06-28', 7000.00, 'Amanjikarai', '1', '1 years 1 months', 'It\'s not a full time job it\'s part time job. So. to get a better job and improve knowledge. ', 1, '2023-08-02 12:13:14', 0, NULL, 0, NULL, 1),
(6181, 13990, 'Aum insurance brokers pvt ltd ', 'Back office executive ', '2022-07-07', 7.00, '1970-01-01', 20000.00, 'Anna nagar ', '2', '1 years 0 months', ' To develop my skills in a very big organisation', 1, '2023-08-03 09:16:40', 0, NULL, 0, NULL, 1),
(6182, 13991, 'TVS sundaram motors Volkswagen dealership', 'customer relationship executive ', '2022-09-01', 16500.00, '2023-04-29', 16500.00, 'Whites road', '1', '0 years 7 months', 'Mother health issue', 1, '2023-08-03 11:15:49', 0, NULL, 0, NULL, 1),
(6183, 13992, 'HDFC Bank ', 'Arakkonam ', '2022-12-16', 14000.00, '2023-07-07', 24000.00, 'R k pet', '1', '0 years 6 months', ' Personal problems', 1, '2023-08-03 11:42:55', 0, NULL, 0, NULL, 1),
(6184, 13997, 'all set solution', 'telecalluing', '2022-07-20', 13000.00, '2023-02-15', 13000.00, 'thousand light', '1', '0 years 6 months', ' time issue', 1, '2023-08-03 12:49:31', 0, NULL, 0, NULL, 1),
(6185, 14000, 'all set solution', 'telecalling', '2022-10-20', 13000.00, '2023-02-20', 13000.00, 'thousand lights', '1', '0 years 4 months', ' ', 1, '2023-08-03 01:09:33', 0, NULL, 0, NULL, 1),
(6186, 14004, 'BSS computer centre ', 'Tele calling and teaching ', '2018-06-04', 12000.00, '2020-08-04', 13000.00, 'Maharani', '1', '2 years 2 months', ' Not comfortable salary', 1, '2023-08-04 11:21:54', 0, NULL, 0, NULL, 1),
(6187, 14005, 'HDB FINANCIAL services ', 'Tele calling ', '2021-04-04', 16000.00, '2022-10-06', 15000.00, 'Thousand Lights ', '1', '1 years 6 months', ' I need to push myself to the next level ', 1, '2023-08-04 11:22:11', 0, NULL, 0, NULL, 1),
(6188, 14006, 'Icici bank ', 'Credit card employee ', '2019-03-13', 12000.00, '2021-03-01', 13500.00, 'Ambattur', '1', '1 years 11 months', ' Maternity ', 1, '2023-08-04 11:24:14', 0, NULL, 0, NULL, 1),
(6189, 14009, 'Mmc infotech pvt. Ltd', 'Part-time tele caller', '2019-05-02', 10000.00, '2020-12-30', 11000.00, 'Pattinapakkam', '1', '1 years 7 months', ' For higher education', 1, '2023-08-04 03:50:46', 0, NULL, 0, NULL, 1),
(6190, 14010, 'tvs insurance broking limited', 'insurance excecutive', '2022-08-17', 12000.00, '1970-01-01', 15000.00, 'chennai', '2', '0 years 11 months', ' ', 1, '2023-08-04 05:00:57', 0, NULL, 0, NULL, 1),
(6191, 14013, 'Computer age management services ', 'Document verification', '2020-11-10', 10.00, '2022-02-14', 15.00, 'Chennai', '1', '1 years 3 months', ' Contract base one year so relive', 1, '2023-08-05 10:55:55', 0, NULL, 0, NULL, 1),
(6192, 14018, 'Medusind ', 'Ar client executive ', '2022-09-13', 17000.00, '2023-03-13', 17000.00, 'Vadapalani ', '1', '0 years 6 months', 'Family issue ', 1, '2023-08-05 11:41:27', 0, NULL, 0, NULL, 1),
(6193, 14012, 'Reliance Jio ', 'Sales ', '2022-05-23', 20000.00, '2023-08-02', 23000.00, 'Chennai', '1', '1 years 2 months', ' ', 1, '2023-08-05 12:04:03', 0, NULL, 0, NULL, 1),
(6194, 14020, 'Sathya Technosoft', 'Sales', '2022-09-04', 6000.00, '2023-04-03', 12000.00, 'Thoothukudi', '1', '0 years 11 months', ' Death of grandmother', 1, '2023-08-05 12:04:51', 0, NULL, 0, NULL, 1),
(6195, 14021, 'K R V AGENCY K R VENUGOPALAN K R V DAILY NEEDS', 'Manager cashier order man sales man', '2012-07-05', 8000.00, '1970-01-01', 23000.00, 'Purasaiwalkam', '2', '11 years 1 months', ' The concern is going to wined up.', 1, '2023-08-05 12:29:55', 0, NULL, 0, NULL, 1),
(6196, 14026, 'Cameo carpet services Ltd ', 'Lic ', '2022-10-12', 10000.00, '2023-06-30', 10000.00, 'Mount road', '1', '0 years 8 months', ' ', 1, '2023-08-05 04:04:21', 0, NULL, 0, NULL, 1),
(6197, 14030, 'Matrimony.com', 'Senior Relationship Executive ', '2023-02-09', 16000.00, '1970-01-01', 16000.00, 'MRC Nanagr', '2', '0 years 5 months', ' Salary', 1, '2023-08-07 10:12:42', 0, NULL, 0, NULL, 1),
(6198, 14025, 'Event and travel management ', 'Junior Executive in sales and operations ', '2022-04-06', 18000.00, '2022-11-10', 18000.00, 'Alwarpet', '1', '0 years 7 months', ' Take care of my family ', 1, '2023-08-07 10:46:27', 0, NULL, 0, NULL, 1),
(6199, 14025, 'Event and travel management ', 'Junior Executive in sales and operations ', '2022-04-06', 13000.00, '2022-11-11', 18000.00, 'Alwarpet ', '1', '0 years 7 months', 'To take care of my family ', 1, '2023-08-07 10:48:12', 0, NULL, 0, NULL, 1),
(6200, 14034, 'Cognizant Technology Solutions', 'Programmer Analyst Trainee ', '2022-02-15', 26000.00, '2023-04-13', 27000.00, 'Chennai ', '1', '1 years 1 months', ' Want to change my domain from testing to development.', 1, '2023-08-07 10:53:43', 0, NULL, 0, NULL, 1),
(6201, 14034, 'Agile cyber solutions', 'Front-End Web Developer', '2021-08-02', 8000.00, '2022-01-07', 8000.00, 'Nagercoil ', '1', '0 years 5 months', 'Got an offer from Cognizant Technology Solutions.', 1, '2023-08-07 10:55:05', 0, NULL, 0, NULL, 1),
(6202, 14034, 'PackBagBuddy', 'Web developer Intern ', '2020-11-15', 3000.00, '2021-02-15', 3000.00, 'Ahmedabad - Remote ', '1', '0 years 3 months', 'Completed the Internship.', 1, '2023-08-07 10:57:03', 0, NULL, 0, NULL, 1),
(6203, 14036, 'MMC Infotech ', 'Processing executive ', '2022-07-06', 11000.00, '2023-07-31', 14000.00, 'Pattinampakkam', '1', '1 years 0 months', ' Distance and travel ', 1, '2023-08-07 11:03:59', 0, NULL, 0, NULL, 1),
(6204, 14038, 'Cedar business solutions // pms associates ', 'Caller', '2019-07-13', 14000.00, '2021-10-03', 16000.00, 'Chennai ', '1', '2 years 2 months', ' For pregnancy ', 1, '2023-08-07 11:34:14', 0, NULL, 0, NULL, 1),
(6205, 14037, 'Cameo corporate services ', 'Fl retention ', '2022-10-07', 10000.00, '2023-06-26', 12000.00, 'Mount road, Chennai ', '1', '0 years 8 months', 'Personal issue', 1, '2023-08-07 11:34:24', 0, NULL, 0, NULL, 1),
(6206, 14040, 'Dynamic business services ', 'Telecaller ', '2021-07-01', 15000.00, '2023-08-01', 24000.00, 'Kodambakkam ', '1', '2 years 1 months', ' Job and timings not satisfied...than salary is very less ', 1, '2023-08-07 12:21:17', 0, NULL, 0, NULL, 1),
(6207, 14027, 'mahendra&mahendra financial services', 'sales officer', '2021-04-01', 15000.00, '2022-06-20', 15000.00, 'ambatur', '1', '1 years 2 months', 'health issues', 1, '2023-08-07 01:13:30', 0, NULL, 0, NULL, 1),
(6208, 14027, 'au small finance', 'senoir sales officer', '2022-06-23', 18600.00, '2022-11-17', 18600.00, 'mount road', '1', '0 years 4 months', 'salary issue', 1, '2023-08-07 01:15:03', 0, NULL, 0, NULL, 1),
(6209, 14045, 'Sundaram Finance Limited', 'Customer Service ', '2021-01-05', 30.00, '2023-07-31', 12500.00, 'Chennai', '1', '2 years 6 months', ' Salary is low', 1, '2023-08-07 04:25:12', 0, NULL, 0, NULL, 1),
(6210, 14046, 'City Union Bank ', 'Junior Process Executive ', '2022-03-07', 8000.00, '2023-04-15', 12000.00, 'Kumbakonam ', '1', '1 years 1 months', ' ', 1, '2023-08-07 05:14:50', 0, NULL, 0, NULL, 1),
(6211, 14047, 'CAMS', 'Senior Customer service Executive', '2022-04-04', 1.00, '1970-01-01', 17000.00, 'Chennai, Mouth Road', '2', '1 years 4 months', ' Looking for good opportunity, expland my career horizon next level and financial problem', 1, '2023-08-07 10:52:33', 0, NULL, 0, NULL, 1),
(6212, 14049, 'Dusters total solutions services pvt ltd ', 'Executive ', '2021-09-15', 21000.00, '2023-06-14', 28896.00, 'Chengalpattu.', '1', '1 years 8 months', ' Looking for career opportunities to grow up.', 1, '2023-08-08 10:16:48', 0, NULL, 0, NULL, 1),
(6213, 14049, 'Sodexo Facilities and management services pvt ltd ', 'Telephone operator ', '2014-09-12', 16000.00, '2021-09-07', 20000.00, 'Chengalpattu ', '1', '6 years 11 months', 'In reason of Moving for a better job role.', 1, '2023-08-08 10:19:54', 0, NULL, 0, NULL, 1),
(6214, 14049, 'Just dial limited ', 'Process associate ', '2012-12-24', 13000.00, '2014-07-14', 16000.00, 'Chennai ', '1', '1 years 6 months', 'In reason to learn new skills ', 1, '2023-08-08 10:21:48', 0, NULL, 0, NULL, 1),
(6215, 14056, 'Trayee business solutions pvt ltd ', 'Non voice', '2022-09-25', 12000.00, '2023-04-10', 12000.00, 'Santhome', '1', '0 years 6 months', ' Salary issue', 1, '2023-08-09 11:00:59', 0, NULL, 0, NULL, 1),
(6216, 14057, 'Weve  finance solution ', 'Caller', '2022-08-03', 12000.00, '2023-08-07', 15000.00, 'Saidapet', '1', '1 years 0 months', ' Not enough  salary ', 1, '2023-08-09 11:15:14', 0, NULL, 0, NULL, 1),
(6217, 14058, 'Eorchids Tech solutions private limited ', 'Python Developer trainee', '2022-07-04', 15000.00, '2022-12-31', 15000.00, 'Chennai ', '1', '0 years 5 months', 'Due to company financial problem, layoff the freshers ', 1, '2023-08-09 11:23:51', 0, NULL, 0, NULL, 1),
(6218, 14058, 'Netcon technologies Ltd ', 'Engineer trainee in data centre department ', '2020-12-07', 14000.00, '2022-06-30', 14000.00, 'Chennai ', '1', '1 years 6 months', 'I got an offer from eorchids. So I moved on to iT sector ', 1, '2023-08-09 11:27:04', 0, NULL, 0, NULL, 1),
(6219, 14065, 'Regami Solutions ', 'Software Engineer', '2022-06-09', 320000.00, '2023-01-06', 320000.00, 'Chennai', '1', '0 years 6 months', 'Personal issues', 1, '2023-08-09 12:05:19', 0, NULL, 0, NULL, 1),
(6220, 14065, 'Artifintel Priviate Limited ', 'Senior frontend developer ', '2021-10-01', 250000.00, '2022-06-08', 250000.00, 'Chennai', '1', '0 years 8 months', 'Project as completed', 1, '2023-08-09 12:08:11', 0, NULL, 0, NULL, 1),
(6221, 14072, 'GoDB Tech Private Limited ', 'Software Engineer ', '2021-12-13', 12500.00, '2023-02-17', 18000.00, 'OMR, Chennai ', '1', '1 years 2 months', ' Personal Issues ', 1, '2023-08-10 11:41:09', 0, NULL, 0, NULL, 1),
(6222, 14078, 'RSI private limited company ', 'Customer care officer ', '2022-08-08', 15000.00, '2023-07-15', 15000.00, 'Ambattur ', '1', '0 years 11 months', ' Project closed ', 1, '2023-08-10 02:27:03', 0, NULL, 0, NULL, 1),
(6223, 14077, 'Armsoftech private limited', 'Voice', '2023-07-12', 18000.00, '1970-01-01', 20000.00, 'Perungudi', '2', '0 years 0 months', ' Looking for better carrrer', 1, '2023-08-10 02:33:24', 0, NULL, 0, NULL, 1),
(6224, 14079, 'Itk education services Pvt Ltd. ', 'Software Developer ', '2023-01-10', 10000.00, '2023-07-02', 12000.00, 'Chennai ', '1', '0 years 5 months', 'No proper assistance in projects ', 1, '2023-08-10 03:09:30', 0, NULL, 0, NULL, 1),
(6225, 14080, 'Storesoft solutions Pvt Ltd ', 'Junior Software Engineer ', '2023-01-02', 15000.00, '1970-01-01', 25000.00, 'Chennai ', '2', '0 years 7 months', 'There is no proper Assistance in site project, no technological growth', 1, '2023-08-10 03:13:43', 0, NULL, 0, NULL, 1),
(6226, 14085, 'Prabas Vcare health and clinic ', 'Operation executive ', '2022-08-10', 16000.00, '2023-06-15', 16000.00, 'Ambattur ', '1', '0 years 10 months', ' I have some health issues. ', 1, '2023-08-11 10:41:27', 0, NULL, 0, NULL, 1),
(6227, 14095, 'Cams insurance repository and services ', 'Customer support executive ', '2021-11-01', 24143.00, '2022-08-11', 24143.00, 'Chennai', '1', '0 years 9 months', ' Personal reason', 1, '2023-08-11 02:45:40', 1, '2023-08-11 02:47:56', 0, NULL, 0),
(6228, 14095, 'Cams insurance repository and services ', 'Customer support executive ', '2019-04-01', 16000.00, '2021-07-30', 16000.00, 'Chennai', '1', '2 years 3 months', 'Personal reason ', 1, '2023-08-11 02:49:13', 0, NULL, 0, NULL, 1),
(6229, 14095, 'Matexnet private limited ', 'Operation executive ', '2021-11-01', 23143.00, '2022-08-31', 23143.00, 'Chennai ', '1', '0 years 9 months', 'Personal reason', 1, '2023-08-11 02:50:22', 0, NULL, 0, NULL, 1),
(6230, 14100, 'AISECT LTD', 'ASSOCIATE BUSINESS DEVELOPMENT EXECUTIVE', '2022-11-10', 16569.00, '2023-08-09', 16569.00, 'T nagar,Ponday Bazar', '1', '0 years 8 months', ' My previous company name is AISECT LTD  .they have Branches in all over States in tamil nadu.The main reason for relieving is some time i have work in others state branch also that\'s is the reason i left out that company.', 1, '2023-08-12 11:44:47', 0, NULL, 0, NULL, 1),
(6231, 14102, 'Jio ', 'D.', '2023-05-19', 18500.00, '1970-01-01', 19000.00, 'Alverpet', '2', '0 years 2 months', ' Salary issus', 1, '2023-08-12 12:12:08', 0, NULL, 0, NULL, 1),
(6232, 14116, 'Tata consultancy services ', 'Process associate', '2019-12-01', 13000.00, '2022-01-03', 19000.00, 'Chennai ambattur ', '1', '2 years 1 months', ' Career Growth\n', 1, '2023-08-16 08:58:38', 0, NULL, 0, NULL, 1),
(6233, 14116, 'Wipro limited ', 'Processor ', '2022-10-03', 22000.00, '2023-07-07', 22000.00, 'Guindy chennai', '1', '0 years 9 months', 'Health issue ', 1, '2023-08-16 09:02:41', 0, NULL, 0, NULL, 1),
(6234, 14119, 'Aaron\'s eatery ', 'Manager', '2022-07-14', 14000.00, '2023-07-15', 15000.00, 'T.nagar', '1', '1 years 0 months', ' ', 1, '2023-08-16 11:49:26', 0, NULL, 0, NULL, 1),
(6235, 14127, 'Rrd Donnelly ', 'Ds', '2022-08-16', 15.00, '2023-06-30', 17.00, 'Chennai ', '1', '0 years 10 months', ' ', 1, '2023-08-16 03:16:48', 0, NULL, 0, NULL, 1),
(6236, 14126, 'Tamil matrimony ', 'Telecaller ', '2023-06-16', 15000.00, '2023-07-16', 15000.00, 'Chennai ', '1', '0 years 1 months', ' Timing', 1, '2023-08-16 05:45:09', 0, NULL, 0, NULL, 1),
(6237, 14128, 'Just dial pvt limited ', 'Tele sales executive ', '2021-02-02', 16000.00, '2023-02-28', 18000.00, 'Chennai ', '1', '2 years 0 months', ' Mom dead so long leave \nTwo years experience in tele sales ', 1, '2023-08-16 06:06:01', 0, NULL, 0, NULL, 1),
(6238, 14134, 'T. S Mahalingam &son', 'Telesales executive ', '2022-05-02', 12000.00, '2023-07-20', 13000.00, 'Royapettha', '1', '1 years 2 months', ' Salary issue ', 1, '2023-08-17 10:03:21', 0, NULL, 0, NULL, 1),
(6239, 14142, 'STARTEK ', 'Customer support executive ', '2019-06-14', 14000.00, '2021-06-16', 17000.00, 'Parrys ', '1', '2 years 0 months', ' ', 1, '2023-08-17 11:52:54', 0, NULL, 0, NULL, 1),
(6240, 14144, 'TVS SFL pvt ltd Company ', 'Neem Traine', '2022-01-17', 15500.00, '2023-06-01', 18500.00, 'Chennai ', '1', '1 years 4 months', ' Working date end', 1, '2023-08-17 12:12:58', 0, NULL, 0, NULL, 1),
(6241, 14145, 'Arunachalam real estate ', 'Customer relationship management ', '2020-07-13', 16000.00, '2022-08-26', 18500.00, 'Ranipet ', '1', '2 years 1 months', ' ', 1, '2023-08-17 12:14:23', 0, NULL, 0, NULL, 1),
(6242, 14139, 'Teleperfomance', 'Telecalling ', '2022-01-01', 14000.00, '2023-06-13', 14000.00, 'Ambattur ', '1', '1 years 5 months', ' Some personal issues of my family \n', 1, '2023-08-17 12:17:24', 0, NULL, 0, NULL, 1),
(6243, 14147, 'sunshine ro system', 'team leader', '2020-06-17', 20000.00, '2023-04-03', 33500.00, 'chennai', '1', '2 years 9 months', ' For my carrer growth ', 1, '2023-08-17 12:39:41', 0, NULL, 0, NULL, 1),
(6244, 14151, 'trayee business solution', 'rocess executive', '2016-10-01', 9000.00, '2021-01-30', 21000.00, 'chennai', '1', '4 years 3 months', ' Contract ', 1, '2023-08-17 02:59:59', 0, NULL, 0, NULL, 1),
(6245, 14156, 'Kotak Mahindra Bank ', 'Branch relationship manager ', '2023-01-19', 400000.00, '2023-07-13', 45000.00, 'Chennai ', '1', '0 years 5 months', ' I am selected on campus placement on the position of operations team but  after the offer letter they assigned me on the position of relationship manager and they told me e to work on that position for a year I initially work on it but both field work and sales is not suited for me so I decided to quit.', 1, '2023-08-17 07:04:14', 0, NULL, 0, NULL, 1),
(6246, 14160, 'Kermind iscripted private limit ', 'Software developer ', '2022-04-25', 12000.00, '2023-02-04', 12000.00, 'Madhurvoyal ', '1', '0 years 9 months', ' Father healthy Issues\n6month experience ', 1, '2023-08-18 11:08:49', 0, NULL, 0, NULL, 1),
(6247, 14166, 'Two ark business solutions ', 'Font end developer ', '2021-06-07', 1072021.00, '2022-10-31', 25000.00, 'Avadi', '1', '1 years 4 months', ' Update my skills ', 1, '2023-08-18 12:26:12', 0, NULL, 0, NULL, 1),
(6248, 14167, 'Xeniaa Hospitality', 'Customer Support Associate ', '2021-12-27', 7.00, '2022-05-20', 15000.00, 'Ambattur', '1', '0 years 4 months', ' Last Year I Do One Major Surgery For Dental So Only Relieved That Job', 1, '2023-08-18 12:32:18', 0, NULL, 0, NULL, 1),
(6249, 14180, 'Nissan study services', 'Telecaller', '2021-05-15', 12000.00, '2022-06-15', 13500.00, 'Amjikarai', '1', '1 years 1 months', ' Salary', 1, '2023-08-19 12:28:43', 0, NULL, 0, NULL, 1),
(6250, 14180, 'Nissan study services', 'Telecaller', '2021-05-15', 12000.00, '2022-07-10', 13500.00, 'Amjikarai', '1', '1 years 1 months', ' Salary ', 1, '2023-08-19 12:30:23', 0, NULL, 0, NULL, 1),
(6251, 14180, 'Nissan study services', 'Telecaller', '2021-05-15', 12000.00, '2022-07-10', 13500.00, 'Amjikarai', '1', '1 years 1 months', 'Salary ', 1, '2023-08-19 12:31:51', 0, NULL, 0, NULL, 1),
(6252, 14180, 'Nissan study services', 'Telecaller', '2021-05-15', 12000.00, '2022-07-10', 13500.00, 'Amjikarai', '1', '1 years 1 months', 'Salary ', 1, '2023-08-19 12:33:26', 0, NULL, 0, NULL, 1),
(6253, 14181, 'Amma Transport ', 'Computer Operator ', '2010-05-13', 9000.00, '2012-10-29', 10500.00, 'Chennai', '1', '2 years 5 months', ' For better prospects ', 1, '2023-08-19 12:42:50', 0, NULL, 0, NULL, 1),
(6254, 14181, 'Hewlett Packard ', 'Process Associate ', '2012-10-29', 12500.00, '2017-06-30', 16000.00, 'Chennai', '1', '4 years 8 months', 'Project shifted to Wipro ', 1, '2023-08-19 12:44:54', 0, NULL, 0, NULL, 1),
(6255, 14181, 'Wipro technologies ', 'Senior Associate ', '2017-07-01', 30000.00, '2018-07-30', 30500.00, 'Chennai', '1', '1 years 0 months', ' Project shifted to Bangalore ', 1, '2023-08-19 12:49:22', 0, NULL, 0, NULL, 1),
(6256, 14181, 'Standard chartered Bank ', 'Officer ', '2022-06-22', 18000.00, '2023-03-28', 20000.00, 'Chennai', '1', '0 years 9 months', 'Contract got over ', 1, '2023-08-19 12:53:10', 0, NULL, 0, NULL, 1),
(6257, 14189, 'Autosence private limited', 'Tele caller', '2023-02-02', 15000.00, '2023-07-03', 15000.00, 'guindy', '1', '0 years 5 months', 'I worked for tamil voice process in contract. suddenly they closed the process and layoff us.', 1, '2023-08-19 02:56:08', 1, '2023-08-19 02:58:56', 0, NULL, 1),
(6258, 14196, 'Armsoftech Private limited ', 'Telecaller ', '2020-07-20', 11000.00, '2023-07-15', 20.00, 'Perungudi ', '1', '2 years 11 months', ' Family isue', 1, '2023-08-20 11:37:07', 0, NULL, 0, NULL, 1),
(6259, 14199, 'skill lync', 'inside sales', '2022-09-14', 28700.00, '2023-02-28', 30000.00, 'chennai', '1', '0 years 5 months', ' Due to illness', 1, '2023-08-20 10:14:19', 0, NULL, 0, NULL, 1),
(6260, 14207, 'Hcl Technology Pvt Ltd ', 'Daty entry operator ', '2018-08-09', 15000.00, '2022-05-31', 15000.00, 'Ambatur estate ', '1', '3 years 9 months', ' Team moved Nagupur ', 1, '2023-08-21 12:14:22', 0, NULL, 0, NULL, 1),
(6261, 14192, 'All set business solutions ', 'Telecaller', '2021-04-20', 10000.00, '2022-10-05', 17500.00, 'Thousand lights ', '1', '1 years 5 months', ' Family medical problems ', 1, '2023-08-21 12:50:40', 0, NULL, 0, NULL, 1),
(6262, 14191, 'Muthoot microfinance', 'Executive ', '2021-08-12', 15000.00, '2023-07-31', 16000.00, 'Uthiramerur', '1', '1 years 11 months', ' ', 1, '2023-08-21 03:37:42', 0, NULL, 0, NULL, 1),
(6263, 14212, 'Shreram life', 'Senior Telecaller ', '2021-06-04', 18000.00, '2023-08-21', 22000.00, 'Kothappakam', '1', '2 years 2 months', ' Personal issue', 1, '2023-08-21 04:29:07', 0, NULL, 0, NULL, 1),
(6264, 14131, 'Medpay', 'telecalling', '2020-01-01', 15000.00, '2020-09-30', 15000.00, 'bangalore', '1', '0 years 8 months', 'Health issue', 104, '2023-08-21 05:29:20', 104, '2023-08-21 05:29:40', 0, NULL, 1),
(6265, 14131, 'No broker hood', 'telecaller', '2021-01-01', 17000.00, '2021-07-31', 18000.00, 'bangalore', '1', '0 years 6 months', 'Long distance', 104, '2023-08-21 05:30:36', 0, NULL, 0, NULL, 1),
(6266, 14213, 'Pragmatic Solution Inc ', 'Full Stack Developer ', '2021-12-01', 12000.00, '2023-01-31', 15000.00, 'Coimbatore ', '1', '1 years 2 months', 'I\'m not interested in SEO process so relieve from that work. ', 1, '2023-08-21 05:31:14', 0, NULL, 0, NULL, 1),
(6267, 14214, 'JBN GROUPS', 'Claims & Insurance- Coordinator ', '2022-09-08', 12000.00, '1970-01-01', 12000.00, 'Purasaiwakkam', '2', '0 years 11 months', 'Countinues Incentive Pending and No Increment for staff\'s ', 1, '2023-08-21 08:45:21', 0, NULL, 0, NULL, 1),
(6268, 14218, 'skp title search pvt ltd', 'process associate', '2021-07-21', 8000.00, '2023-01-31', 16000.00, 'erode', '1', '1 years 6 months', ' There is no live project in that company and i didn\'t get my salary properly.', 1, '2023-08-21 09:53:14', 0, NULL, 0, NULL, 1),
(6269, 14209, 'Info7 solutions pvt Ltd ', 'Coustomer service associate ', '2023-02-23', 15000.00, '2023-07-10', 13000.00, 'Ambattur', '1', '0 years 4 months', ' Insufficient salary', 1, '2023-08-22 08:46:01', 0, NULL, 0, NULL, 1),
(6270, 14204, 'Fortune Inforch ', 'Tele caller ', '2017-03-12', 14500.00, '2018-04-12', 14500.00, 'Chennai ', '1', '1 years 1 months', ' Salary issue ', 1, '2023-08-22 11:00:58', 0, NULL, 0, NULL, 1),
(6271, 14222, 'The Zigma Technologies', 'Non voice', '2021-12-27', 18000.00, '2023-08-22', 18000.00, 'Mylapore', '2', '1 years 7 months', ' ', 1, '2023-08-22 11:22:00', 0, NULL, 0, NULL, 1),
(6272, 14220, 'Alice supermarket', 'Sales girl', '2019-09-02', 12000.00, '2022-01-31', 14000.00, 'Thiruvallur', '1', '2 years 4 months', ' Mom health issues', 1, '2023-08-22 11:39:26', 0, NULL, 0, NULL, 1),
(6273, 14228, 'Veranda race ', 'Student academic counselor ', '2021-07-20', 18000.00, '2022-06-20', 18000.00, 'Thousand lights', '1', '0 years 11 months', ' They have changed the location so I am not able to commute everyday ', 1, '2023-08-22 11:40:56', 0, NULL, 0, NULL, 1),
(6274, 14230, 'The times of India ', 'Customer relationship management ', '2019-05-17', 13500.00, '1970-01-01', 13500.00, 'Tnagar chennai', '2', '4 years 3 months', ' I want Learning More experience ', 1, '2023-08-22 12:08:17', 0, NULL, 0, NULL, 1),
(6275, 14229, 'Hexaware bps technology ', 'Customer support executive ', '2022-05-03', 17000.00, '2023-08-08', 17000.00, 'Chennai', '1', '1 years 3 months', ' Long distance and salary ', 1, '2023-08-22 01:05:28', 0, NULL, 0, NULL, 1),
(6276, 14215, 'jio fiber network', 'sales', '2022-07-06', 20000.00, '2023-02-06', 15000.00, 'madipakkam', '1', '0 years 7 months', ' ', 1, '2023-08-22 01:05:47', 0, NULL, 0, NULL, 1),
(6277, 14229, 'Ebix Cash private limited ', 'Customer support ', '2019-12-09', 9000.00, '2022-04-25', 9000.00, 'Nugambakkam', '1', '2 years 4 months', 'Salary ', 1, '2023-08-22 01:07:00', 0, NULL, 0, NULL, 1),
(6278, 14241, 'Kvn Traders ', 'Senior Telecaller ', '2022-04-28', 18000.00, '2022-12-31', 18000.00, 'Pammal ', '1', '0 years 8 months', ' Health issues ', 1, '2023-08-23 11:39:44', 0, NULL, 0, NULL, 1),
(6279, 14240, 'Foxconn Hon hai', 'Operator', '2022-07-27', 18000.00, '2023-05-20', 18000.00, 'S.v.chathiram', '1', '0 years 9 months', ' Mother health issue', 1, '2023-08-23 12:03:42', 0, NULL, 0, NULL, 1),
(6280, 14239, 'l-cube innovative pvt ltd', 'junior analyst', '2019-01-21', 14000.00, '2020-12-02', 14000.00, 'anna nagar', '1', '1 years 10 months', ' ', 1, '2023-08-23 12:07:29', 0, NULL, 0, NULL, 1),
(6281, 14246, 'Foxcorn Hon hai', 'Material operator', '2022-07-27', 18000.00, '2023-05-25', 18000.00, 'S.v.chathiram', '1', '0 years 9 months', 'My mother sicked that\'s why I\'m relieved. ', 1, '2023-08-23 12:24:05', 0, NULL, 0, NULL, 1),
(6282, 14249, 'Barclays Global Services', 'Mortgage Advisor', '2021-06-19', 25.00, '2022-08-10', 25000.00, 'Chennai', '1', '1 years 1 months', ' Job change', 1, '2023-08-23 01:10:21', 0, NULL, 0, NULL, 1),
(6283, 14259, ' TIKONA  INFINITY PRIVATE LIMITED ', 'sales executive', '2022-11-11', 27000.00, '2023-07-21', 27000.00, 'chennai', '1', '0 years 8 months', 'Accident', 104, '2023-08-24 01:20:24', 0, NULL, 0, NULL, 1),
(6284, 14263, 'Hudson agile ventures pvt ltd ', 'HR IT RECRUITER ', '2023-01-05', 15000.00, '2023-07-14', 17000.00, 'Chennai', '1', '0 years 6 months', ' Don\'t provide proper salary. That\'s why. ', 1, '2023-08-24 01:55:37', 0, NULL, 0, NULL, 1),
(6285, 14267, 'Accenture ', 'Associate Transaction ', '2019-10-24', 13000.00, '2021-06-05', 17000.00, 'Chennai ', '1', '1 years 7 months', ' Health issues ', 1, '2023-08-24 03:45:58', 0, NULL, 0, NULL, 1),
(6286, 14267, 'Omega Healthcare', 'Senior executive ', '2019-12-13', 17000.00, '2022-11-11', 17000.00, 'Chennai ', '1', '2 years 10 months', 'Salary issue ', 1, '2023-08-24 03:47:31', 0, NULL, 0, NULL, 1),
(6287, 14268, 'SHAREKHAN', 'SALES EXECUTIVE ', '2021-10-18', 18000.00, '2022-12-08', 18000.00, 'KILPAUK (CHENNAI)', '1', '1 years 1 months', ' I  HAD  ACCIDENT ', 1, '2023-08-25 10:24:40', 0, NULL, 0, NULL, 1),
(6288, 14275, 'Computer age management services', 'Senior customer support executive', '2021-02-12', 12000.00, '2023-08-25', 16000.00, 'Chennai', '2', '2 years 6 months', ' To gain different knowledge from different organization', 1, '2023-08-25 12:32:59', 0, NULL, 0, NULL, 1),
(6289, 14276, 'Computer age management services', 'Senior customer support executive', '2022-07-13', 14000.00, '2023-08-25', 16000.00, 'Chennai', '2', '1 years 1 months', ' For better organization', 1, '2023-08-25 12:36:36', 0, NULL, 0, NULL, 1),
(6290, 14172, 'Marketsoft ', 'Telesale', '2023-01-05', 15000.00, '1970-01-01', 15000.00, 'Little mount ', '2', '0 years 7 months', ' Some personal issue ', 1, '2023-08-26 11:42:21', 0, NULL, 0, NULL, 1),
(6291, 14294, 'HDB Financial services', 'Telecaller', '2022-02-07', 12000.00, '2022-11-05', 12000.00, 'GREEN ROAD', '1', '0 years 8 months', ' Father health issue So that I  quit the job ', 1, '2023-08-26 12:29:52', 0, NULL, 0, NULL, 1),
(6292, 14295, 'G SQUARE ', 'Pre sales Executive ', '2022-11-23', 23000.00, '2023-07-24', 23000.00, 'Alwarpet ', '1', '0 years 8 months', ' Carrier growth ', 1, '2023-08-26 12:44:53', 0, NULL, 0, NULL, 1),
(6293, 14299, 'Rhythm Business Enterprise & GVK EMRI 108 ', 'Tellecaller ', '2018-05-07', 9500.00, '2018-12-02', 10500.00, 'Anna nagar & DMS', '1', '0 years 6 months', ' Rotating the night shift so relieving ', 1, '2023-08-28 11:36:28', 0, NULL, 0, NULL, 1),
(6294, 14300, 'Vimbri media private limited ', 'Telecaller', '2023-05-10', 22000.00, '1970-01-01', 22000.00, 'Teynampet ', '2', '0 years 3 months', ' Career growth', 1, '2023-08-28 12:04:47', 0, NULL, 0, NULL, 1),
(6295, 14301, 'HDFC LIFE INSURANCE ', 'Sr. Corporate agency manager ', '2023-01-16', 450000.00, '1970-01-01', 450000.00, 'Chennai', '2', '0 years 7 months', ' Salary hike/personal reasons ', 1, '2023-08-28 01:34:16', 0, NULL, 0, NULL, 1),
(6296, 14301, 'HDFC SALES PRIVATE LIMITED ', 'Loan officer ', '2019-08-01', 250000.00, '2022-05-31', 350000.00, 'Chennai', '1', '2 years 9 months', 'Salary hike', 1, '2023-08-28 01:36:33', 0, NULL, 0, NULL, 1),
(6297, 14302, 'life cell international private limited', 'assitant manager', '2020-09-20', 280000.00, '2023-07-31', 4000000.00, 'tnagar', '1', '2 years 10 months', ' process changed', 1, '2023-08-28 02:51:35', 0, NULL, 0, NULL, 1),
(6298, 14304, 'Andromeda sales and distribution pvt ltd', 'Telecaller ', '2022-01-02', 12000.00, '2022-11-28', 12000.00, 'Trichy ', '1', '0 years 10 months', ' Study', 1, '2023-08-29 09:41:42', 0, NULL, 0, NULL, 1),
(6299, 14169, 'Skill-Lync', 'Sales operations specialist', '2022-09-14', 30000.00, '2023-07-26', 30000.00, 'Chennai', '1', '0 years 10 months', ' ', 1, '2023-08-29 09:56:55', 0, NULL, 0, NULL, 1),
(6300, 14308, 'Neuberg Diagnostics', 'Customer Care Executive', '2020-10-28', 12000.00, '1970-01-01', 20000.00, 'Chennnai', '2', '2 years 10 months', ' Learned quite enough in that field', 1, '2023-08-29 10:36:27', 0, NULL, 0, NULL, 1),
(6301, 14310, 'Royal sundaram general insurance ', 'Senior accociate ', '2019-11-12', 12.00, '2023-03-31', 2.57, 'Nugabakkam', '1', '3 years 4 months', ' Personal reasons ', 1, '2023-08-29 11:25:02', 0, NULL, 0, NULL, 1),
(6302, 14314, 'Citadel intelligent systems ', 'Store in charge', '2017-10-09', 12000.00, '2019-11-06', 13000.00, 'Bangalore ', '1', '2 years 0 months', ' ', 1, '2023-08-29 06:19:30', 0, NULL, 0, NULL, 1),
(6303, 14314, 'Pace setter business solutions ', 'Telecaller agent ', '2022-01-04', 15000.00, '2022-07-07', 16000.00, 'Chennai ', '1', '0 years 6 months', 'Another offer', 1, '2023-08-29 06:21:29', 0, NULL, 0, NULL, 1),
(6304, 14314, 'ifox media and advertising ', 'Sales Executive ', '2022-07-08', 18000.00, '2022-12-10', 20000.00, 'Bangalore ', '1', '0 years 5 months', 'Regional office closed ', 1, '2023-08-29 06:23:33', 0, NULL, 0, NULL, 1),
(6305, 14314, 'Aidem ventures pvt Ltd ', 'Sales Executive ', '2022-12-19', 30000.00, '2023-06-07', 30000.00, 'Chennai ', '1', '0 years 5 months', 'Another better offer', 1, '2023-08-29 06:25:10', 0, NULL, 0, NULL, 1),
(6306, 14314, 'Galatta Media Pvt Ltd ', 'Sales officer ', '2023-06-06', 35000.00, '2023-08-21', 35000.00, 'Chennai ', '1', '0 years 2 months', 'Personal reasons ', 1, '2023-08-29 06:26:17', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6307, 14278, 'ESP engineering components ', 'Process executive ', '2021-12-13', 22000.00, '2023-08-18', 24000.00, 'Perugu', '1', '1 years 8 months', ' Due to shifts can\'t able to continue ', 1, '2023-08-30 12:41:29', 0, NULL, 0, NULL, 1),
(6308, 14320, 'Bharathi Airtel', 'Soho ambassador', '2019-11-18', 24500.00, '2023-08-27', 24500.00, 'Bangalore', '1', '3 years 9 months', 'Previous company is third party and I would like to improve my career growth\n', 1, '2023-08-30 03:59:51', 0, NULL, 0, NULL, 1),
(6309, 14321, 'Edelweiss Tokio Life Insurance ', 'Relationship Manager ', '2022-03-24', 300000.00, '1970-01-01', 300000.00, 'Chennai', '2', '1 years 5 months', ' ', 1, '2023-08-30 07:43:26', 0, NULL, 0, NULL, 1),
(6310, 14321, 'Canara Hsbc Obc Life Insurance ', 'Relationship Officer', '2021-12-16', 225000.00, '2022-03-16', 225000.00, 'Coimbatore', '1', '0 years 3 months', 'Miscommunication from the company', 1, '2023-08-30 07:45:08', 0, NULL, 0, NULL, 1),
(6311, 14321, 'Max Life Insurance ', 'Relationship Associate', '2020-12-14', 190000.00, '2021-08-30', 193000.00, 'Coimbatore ', '1', '0 years 8 months', 'Family Issues', 1, '2023-08-30 07:46:35', 0, NULL, 0, NULL, 1),
(6312, 14325, 'Prodata management service private limited ', 'Executive ', '2022-07-08', 10000.00, '2023-08-08', 10000.00, 'Ambattur, Chennai ', '1', '1 years 1 months', ' For my career growth ', 1, '2023-08-31 12:10:32', 0, NULL, 0, NULL, 1),
(6313, 14328, 'Altruist Technologies Pvt Ltd ', 'Idfc EMI collection', '2022-01-13', 12.00, '2023-03-16', 18000.00, 'Chennai', '1', '1 years 2 months', ' Health issue', 1, '2023-08-31 12:39:56', 0, NULL, 0, NULL, 1),
(6314, 14332, 'Marketsoft1 Analytical marketing services Pvt Ltd ', 'Senior customer executive ', '2023-04-17', 18.50, '2023-07-31', 18.50, 'Little mount ', '1', '0 years 3 months', ' Company shifting to another location ', 1, '2023-09-01 12:09:07', 0, NULL, 0, NULL, 1),
(6315, 14333, 'DIALAB agencies', 'Personal sales representative', '2021-06-01', 15000.00, '2023-07-31', 18000.00, 'Tynampet chennai', '1', '2 years 1 months', ' Change working location', 1, '2023-09-01 02:35:47', 0, NULL, 0, NULL, 1),
(6316, 14334, 'All  Set Business solutions ', 'Telecalling ', '2022-04-26', 2.00, '2022-09-20', 13000.00, 'Thousand lights ', '1', '0 years 4 months', ' Salary issue ', 1, '2023-09-01 03:47:27', 0, NULL, 0, NULL, 1),
(6317, 14338, 'Pha india', 'Machine operator ', '2022-08-02', 13500.00, '2023-08-02', 13500.00, 'Chennai', '1', '1 years 0 months', ' Training period 1 year only ', 1, '2023-09-02 10:47:07', 0, NULL, 0, NULL, 1),
(6318, 14339, 'Transindia corporate network private limited', 'Ass Manager', '2020-07-17', 15000.00, '2022-12-15', 25000.00, 'Thanjavur ', '1', '2 years 4 months', ' ', 1, '2023-09-02 11:20:57', 0, NULL, 0, NULL, 1),
(6319, 14343, 'Golden enterprise ', 'MIS', '2022-09-01', 14000.00, '1970-01-01', 14000.00, 'NMR', '2', '1 years 0 months', 'For career growth ', 1, '2023-09-04 10:36:37', 0, NULL, 0, NULL, 1),
(6320, 14347, 'Cameo ', 'Voice Non voice', '2022-06-02', 5000.00, '2023-08-14', 12000.00, 'Mount road ', '1', '1 years 2 months', ' Salary issues', 1, '2023-09-04 12:14:17', 0, NULL, 0, NULL, 1),
(6321, 14346, 'Cameo co operative private limited company', 'Non Voice, voice', '2022-06-02', 5000.00, '2023-08-14', 12000.00, 'mount road ', '1', '1 years 2 months', ' Salary issue', 1, '2023-09-04 12:14:18', 0, NULL, 0, NULL, 1),
(6322, 14348, 'just dial ltd', 'telemarketing executive', '2022-06-28', 15000.00, '2023-09-01', 18000.00, 'siadapet', '1', '1 years 2 months', 'company closed', 108, '2023-09-04 12:46:01', 0, NULL, 0, NULL, 1),
(6323, 14331, 'Bankbazaar ', 'Customer relationship officer ', '2021-04-15', 15000.00, '2023-08-23', 22000.00, 'Ambattur ', '1', '2 years 4 months', ' Career growth going to learn new things', 1, '2023-09-04 03:20:26', 0, NULL, 0, NULL, 1),
(6324, 14351, 'Excel international', 'Business development executive', '2022-03-30', 15000.00, '2023-03-31', 15000.00, 'Chennai', '1', '1 years 0 months', 'I have some health issues. So I am taking break. ', 1, '2023-09-04 06:34:02', 0, NULL, 0, NULL, 1),
(6325, 14287, 'Shriram fortune  solution ', 'Sales ', '2022-06-01', 15000.00, '2023-06-30', 18000.00, 'Kilpak', '1', '1 years 0 months', '  No Salary increment ', 1, '2023-09-05 11:00:30', 0, NULL, 0, NULL, 1),
(6326, 14288, 'shiram life insurance', 'sales executive', '2022-04-25', 12000.00, '2023-06-15', 24000.00, 'kilpak', '1', '1 years 1 months', ' no increment , sunday office', 104, '2023-09-05 11:06:48', 0, NULL, 0, NULL, 1),
(6327, 14355, 'Shiram life insurance ', 'Telecalling ', '2022-06-24', 15000.00, '2023-05-30', 18000.00, 'Kilpauk', '1', '0 years 11 months', ' Every Sunday office so family problems', 1, '2023-09-05 11:27:26', 0, NULL, 0, NULL, 1),
(6328, 14356, 'News 7 Tamil ', 'Assignment input', '2020-08-10', 10000.00, '1970-01-01', 20000.00, 'Kodambakkam', '2', '3 years 0 months', ' ', 1, '2023-09-05 11:30:48', 0, NULL, 0, NULL, 1),
(6329, 14352, 'STAR HEALTH INSURANCE ', 'CUSTOMER CLAIM OFFICER', '2023-02-10', 27.00, '2023-08-22', 18000.00, 'CHENNAI', '1', '0 years 6 months', ' LOW PACKAGE', 1, '2023-09-05 11:51:51', 0, NULL, 0, NULL, 1),
(6330, 14358, 'Dollar business ', 'Sales Executive ', '2022-10-01', 18000.00, '2023-03-15', 18500.00, 'Theynapet ', '1', '0 years 5 months', ' Health issues ', 1, '2023-09-05 01:23:44', 0, NULL, 0, NULL, 1),
(6331, 14358, 'Crompton ', 'Enquiry ', '2023-03-28', 18400.00, '1970-01-01', 18600.00, 'Tnager ', '2', '0 years 5 months', 'For growth ', 1, '2023-09-05 01:26:24', 0, NULL, 0, NULL, 1),
(6332, 14353, 'Euclid Innovations', 'talent acquisition associaate', '2022-12-05', 320000.00, '2023-06-30', 320000.00, 'hyderabad', '1', '0 years 6 months', ' toxic environment ', 1, '2023-09-05 03:05:15', 0, NULL, 0, NULL, 1),
(6333, 14360, 'Bank bazaar ', 'Customer relationship officer ', '2022-12-07', 15000.00, '2023-07-13', 15000.00, 'Ambit', '1', '0 years 7 months', ' Personal issues ', 1, '2023-09-05 03:22:31', 0, NULL, 0, NULL, 1),
(6334, 14363, 'Udaan ', 'Telecaller and customer care ', '2022-12-07', 14750.00, '2023-08-31', 16500.00, 'Harlur main road ', '1', '0 years 8 months', ' Some personal issues work experience of 9 months ', 1, '2023-09-06 11:43:29', 0, NULL, 0, NULL, 1),
(6335, 14364, 'Sysco infotech', 'HR executive', '2022-06-29', 10000.00, '2023-06-29', 15000.00, 'Chromepet', '1', '1 years 0 months', ' For my career growth \n', 1, '2023-09-06 01:00:55', 0, NULL, 0, NULL, 1),
(6336, 14370, 'Paytm', 'Sr fse ', '2021-01-13', 1.00, '2022-09-08', 25000.00, 'Thiruvallur ', '1', '1 years 7 months', ' Another job ', 1, '2023-09-06 01:39:03', 0, NULL, 0, NULL, 1),
(6337, 14370, 'Jio', 'Jpam ', '2023-01-02', 25000.00, '2023-12-30', 25000.00, 'Veppampattu', '1', '0 years 11 months', 'Business', 1, '2023-09-06 01:40:27', 0, NULL, 0, NULL, 1),
(6338, 14377, 'Infosearch bpo service', 'Customer care executive', '2022-03-04', 261000.00, '2023-09-06', 290000.00, 'Chennai gopalapuram', '1', '1 years 6 months', 'For carrier growth', 1, '2023-09-07 10:00:53', 0, NULL, 0, NULL, 1),
(6339, 14376, 'Indusindbank ', 'Telecaller', '2022-05-23', 18000.00, '2023-09-17', 20000.00, 'Chennai ', '1', '1 years 3 months', ' Personal issue ', 1, '2023-09-07 10:05:10', 0, NULL, 0, NULL, 1),
(6340, 14379, 'Maruti Suzuki car showroom ', 'Sales executive ', '2021-07-15', 15700.00, '2023-08-01', 17500.00, 'Villupuram ', '1', '2 years 1 months', ' Over pressure, because 3 members are relieved so heavy pressure build and given a extra field places , so I relieve that company ', 1, '2023-09-07 11:03:55', 0, NULL, 0, NULL, 1),
(6341, 14382, 'Sbi card ', 'Branch relationship Excutive ', '2022-10-06', 18500.00, '2023-07-07', 19000.00, 'Thanjavur ', '1', '0 years 9 months', ' ', 1, '2023-09-07 12:19:21', 0, NULL, 0, NULL, 1),
(6342, 14382, 'Sbi card ', 'Branch relationship Excutive ', '2022-09-07', 18500.00, '2023-06-07', 19000.00, 'Thanjavur ', '1', '0 years 9 months', ' Carrier Growth ', 1, '2023-09-07 12:21:59', 0, NULL, 0, NULL, 1),
(6343, 14361, 'SBI cards', 'Branch relationship executive ', '2021-01-13', 15000.00, '2021-12-07', 15000.00, 'T.nagar', '1', '0 years 10 months', ' ', 1, '2023-09-07 01:19:33', 0, NULL, 0, NULL, 1),
(6344, 14361, 'Bob financial solutions ', 'Customer relationship executive ', '2022-01-15', 16000.00, '2022-06-13', 16000.00, 'Anna Nagar ', '1', '0 years 4 months', 'Personal problems ', 1, '2023-09-07 01:22:08', 0, NULL, 0, NULL, 1),
(6345, 14383, 'Rani a', 'Pre sales Executive ', '2023-04-26', 20000.00, '2023-09-05', 20000.00, 'Jaferakhanpet ', '1', '0 years 4 months', 'Every Sunday office', 1, '2023-09-07 01:28:33', 0, NULL, 0, NULL, 1),
(6346, 12618, 'All set business solutions', 'Tele calling', '2021-08-07', 20000.00, '2023-09-06', 20000.00, 'Chennai', '1', '2 years 0 months', 'Job change properly reliving', 1, '2023-09-07 04:54:56', 0, NULL, 0, NULL, 1),
(6347, 14390, 'Reliance jio', 'JDSS', '2022-07-07', 18000.00, '2023-09-04', 21000.00, 'Mugappair', '1', '1 years 2 months', ' Not interested', 1, '2023-09-08 11:17:16', 0, NULL, 0, NULL, 1),
(6348, 14392, 'orifincorp services', 'abm', '2023-03-06', 58400.00, '1970-01-01', 58400.00, 'tin factory', '2', '0 years 6 months', ' Due to company has been closing the insurance sector and focusing on lone.', 1, '2023-09-08 11:31:02', 0, NULL, 0, NULL, 1),
(6349, 14394, 'Apnnaghar ', 'Sales executive ', '2023-05-30', 25000.00, '2023-09-01', 25000.00, '100 feet ring road', '1', '0 years 3 months', ' Company was in loss', 1, '2023-09-08 11:32:17', 0, NULL, 0, NULL, 1),
(6350, 14391, 'Cedar business solution ', 'Customer care executive ', '2021-11-26', 15000.00, '2023-09-08', 18000.00, 'Chennai', '2', '1 years 9 months', ' Distance ', 1, '2023-09-08 11:47:33', 0, NULL, 0, NULL, 1),
(6351, 14397, 'Master mind ', 'Telecaller ', '2023-02-24', 13500.00, '2023-07-05', 13500.00, 'Egmore ', '1', '0 years 4 months', ' Unconfortable timing ', 1, '2023-09-08 12:09:22', 0, NULL, 0, NULL, 1),
(6352, 14398, 'Swiss RE', 'HR', '2013-04-10', 26000.00, '2015-05-06', 26000.00, 'Bangalore ', '1', '2 years 0 months', ' ', 1, '2023-09-08 12:40:05', 0, NULL, 0, NULL, 1),
(6353, 14398, 'Kupendra & co', 'Chartered accountant ', '2011-05-05', 29000.00, '2014-11-12', 29000.00, 'Bangalore ', '1', '3 years 6 months', 'Promoted ', 1, '2023-09-08 12:41:39', 0, NULL, 0, NULL, 1),
(6354, 14398, 'RAS media', 'CRM', '2023-05-09', 40000.00, '1970-01-01', 40000.00, 'Chennai', '2', '0 years 3 months', 'Not yet', 1, '2023-09-08 12:43:01', 0, NULL, 0, NULL, 1),
(6355, 14401, 'Ola electric fleet ', 'Brand champion ', '2021-10-04', 22000.00, '2022-10-04', 22000.00, 'Chennai ', '1', '1 years 0 months', ' 1 year contract so, after completing my contract I have relieved.', 1, '2023-09-09 08:36:08', 0, NULL, 0, NULL, 1),
(6356, 14400, 'Axis Bank ', 'Offer sales ', '2022-08-04', 19000.00, '2023-05-30', 19000.00, 'Chennai ', '1', '0 years 9 months', 'Higher education but not joined ', 1, '2023-09-09 09:15:43', 0, NULL, 0, NULL, 1),
(6357, 14402, 'Hdfc bank ', 'Telecaller ', '2022-03-01', 12200.00, '2023-09-20', 12200.00, 'Chennai ', '2', '1 years 6 months', 'Salary ', 1, '2023-09-09 10:05:28', 108, '2023-09-09 10:41:21', 0, NULL, 1),
(6358, 14406, 'Educon', 'Telecoller', '2021-02-22', 16000.00, '2022-04-06', 16000.00, 'Salem', '1', '1 years 1 months', 'Due to   some family Reason, I have Resigned jop.', 1, '2023-09-09 11:48:58', 0, NULL, 0, NULL, 1),
(6359, 14405, 'Sm cars private limited company', 'Telecaller', '2022-06-10', 15000.00, '2023-01-17', 14000.00, 'Salem', '1', '0 years 7 months', 'Family circumstances', 1, '2023-09-09 11:49:39', 0, NULL, 0, NULL, 1),
(6360, 14406, 'Educon', 'Telecoller', '2021-02-22', 15000.00, '2022-04-06', 15000.00, 'Salem', '1', '1 years 1 months', 'Family issue', 1, '2023-09-09 11:50:33', 0, NULL, 0, NULL, 1),
(6361, 14410, 'airtel', 'Customer relationship officer ', '2022-02-28', 19500.00, '2023-06-01', 19500.00, 'Ashok nagar', '1', '1 years 3 months', ' Relived for leg injury', 1, '2023-09-09 03:15:48', 0, NULL, 0, NULL, 1),
(6362, 14409, 'Bank bazaar ', 'Senior customer relationship officer ', '2022-03-02', 17204.00, '1970-01-01', 26290.00, 'Ambattur', '2', '1 years 6 months', ' didn\'t feel I had any more opportunity to grow or further my career in the role, so I decided to look for a change.', 1, '2023-09-09 06:40:03', 0, NULL, 0, NULL, 1),
(6363, 14403, 'Mojocare ', 'Order verification ', '2022-09-14', 23.00, '2023-07-22', 25.00, 'Hsr', '1', '0 years 10 months', ' Company layed off', 1, '2023-09-11 11:48:29', 0, NULL, 0, NULL, 1),
(6364, 14413, 'Altruist', 'Inbound', '2023-02-09', 12.00, '2023-08-09', 12.00, 'Mound road', '1', '0 years 6 months', ' ', 1, '2023-09-11 12:41:08', 0, NULL, 0, NULL, 1),
(6365, 14414, 'altruiast', 'telecaller', '2023-02-23', 10500.00, '2023-08-09', 11800.00, 'lic', '1', '0 years 5 months', ' ', 1, '2023-09-11 12:57:33', 0, NULL, 0, NULL, 1),
(6366, 14418, 'Auxilo Finserve pvt ltd ', 'Customer Experience Manager ', '2023-01-11', 31.00, '2023-08-31', 16000.00, 'Chennai ', '1', '0 years 7 months', ' Team support ', 1, '2023-09-12 10:19:01', 0, NULL, 0, NULL, 1),
(6367, 14421, 'Matrix business service India private limited ', 'Executive ', '2022-07-20', 9123.00, '2023-08-31', 10200.00, 'T nagar ', '1', '1 years 1 months', 'Career growth ', 1, '2023-09-12 12:08:41', 0, NULL, 0, NULL, 1),
(6368, 14423, 'Aditya birla sunlife insurance', 'Deputy client relationship manager', '2022-12-26', 2.50, '2023-08-14', 2.50, 'Vadapalani', '1', '0 years 7 months', 'We want to stand for the whole day and next week office will be shifted in porur so the location is too long ', 1, '2023-09-12 12:16:08', 0, NULL, 0, NULL, 1),
(6369, 14424, 'Aditya Birla Sun Life insurance', 'Deputy Clint relationship manager', '2022-12-26', 16599.00, '2023-07-31', 16599.00, 'Vadapalani', '1', '0 years 7 months', 'Office shifted to porur so too long in my home ', 1, '2023-09-12 12:17:27', 0, NULL, 0, NULL, 1),
(6370, 14426, 'Rane trw power steering systems ', 'Line Supervisor ', '2019-06-03', 14000.00, '2019-08-12', 14000.00, 'Chennai ', '1', '0 years 2 months', ' Layoff', 1, '2023-09-12 03:07:43', 0, NULL, 0, NULL, 1),
(6371, 14426, 'Syrma sgs technologies ', 'Machine operator ', '2019-11-08', 13000.00, '2022-07-15', 16000.00, 'Chennai ', '1', '2 years 8 months', 'Neem contract ', 1, '2023-09-12 03:09:01', 0, NULL, 0, NULL, 1),
(6372, 14428, 'Bankbazaar com', 'Customer relationship officer', '2022-07-01', 250000.00, '1970-01-01', 275000.00, 'Chennai ', '2', '1 years 2 months', ' Career growth family needs', 1, '2023-09-12 06:10:31', 0, NULL, 0, NULL, 1),
(6373, 14429, 'Matrix business services india pvt ltd ', 'Executive ', '2021-11-22', 12000.00, '2023-08-31', 14000.00, 'T nagar ', '1', '1 years 9 months', ' Career growth ', 1, '2023-09-13 10:57:36', 0, NULL, 0, NULL, 1),
(6374, 14430, 'Metro Politan Clab', 'Telecaling ', '2023-01-06', 15000.00, '1970-01-01', 15000.00, 'Nungapakam', '2', '0 years 8 months', ' Salary Issues ', 1, '2023-09-13 11:50:59', 0, NULL, 0, NULL, 1),
(6375, 14440, 'Eureka outsourcing solutions ', 'Customer care support ', '2022-11-11', 12000.00, '2023-08-29', 12000.00, 'Thuraipakkam ', '1', '0 years 9 months', ' ', 1, '2023-09-14 11:52:28', 0, NULL, 0, NULL, 1),
(6376, 14441, '2 years experience ', 'Telecalling ', '2023-03-07', 15000.00, '2023-04-10', 15000.00, 'Chennai ', '1', '0 years 1 months', ' Sundays work', 1, '2023-09-14 12:42:03', 0, NULL, 0, NULL, 1),
(6377, 14444, 'Vizza Insurance Broking service ', 'Tellecaller', '2021-09-04', 10000.00, '2023-09-07', 15000.00, 'Kodambakkam ', '1', '2 years 0 months', ' Lack of salary', 1, '2023-09-14 01:17:42', 0, NULL, 0, NULL, 1),
(6378, 14443, 'Paisabazaar marketing and consulting pvt ', 'Senior Associate Sales Consultant ', '2022-09-04', 17000.00, '2023-09-04', 20000.00, 'Tidel park ', '1', '1 years 0 months', ' In past organizations I felt there no growth considering that I switch my job ', 1, '2023-09-14 01:22:06', 0, NULL, 0, NULL, 1),
(6379, 14431, 'Bank zone ', 'Sale excutive ', '2023-03-01', 10000.00, '2023-07-30', 11000.00, 'Egmore ', '1', '0 years 5 months', ' ', 1, '2023-09-14 01:37:10', 0, NULL, 0, NULL, 1),
(6380, 14447, 'Bank bazaar, access health care ', 'CRO, CLIENT PATNER', '2021-10-01', 21000.00, '2023-07-08', 23500.00, 'CHENNAI', '1', '1 years 9 months', ' Personal issues', 1, '2023-09-14 10:12:16', 0, NULL, 0, NULL, 1),
(6381, 14448, 'Giri Trading Agency  ', 'Sales Executive ', '2021-06-04', 10000.00, '2023-09-15', 18000.00, 'Mylapore', '1', '2 years 3 months', ' My mother going to London ', 1, '2023-09-15 10:19:24', 0, NULL, 0, NULL, 1),
(6382, 14450, 'marine forte', 'sales manager', '2012-12-09', 25000.00, '2021-09-27', 35000.00, 'chennai', '1', '8 years 9 months', 'no salary hike', 1, '2023-09-15 11:00:41', 0, NULL, 0, NULL, 1),
(6383, 14454, 'Lens kart ', 'Sales Associate', '2023-06-02', 18000.00, '2023-07-31', 18000.00, 'Aminjikarai', '1', '0 years 3 months', ' For the application of higher studies.', 1, '2023-09-16 10:53:45', 0, NULL, 0, NULL, 1),
(6384, 14462, 'grt ', 'back office', '2022-07-06', 19000.00, '1970-01-01', 19000.00, 't nagar', '2', '1 years 2 months', 'work timings', 108, '2023-09-19 11:48:52', 0, NULL, 0, NULL, 1),
(6385, 14466, 'Mmc Infotech Services pvt Ltd', 'Processing executive', '0202-02-01', 9500.00, '2023-09-16', 15000.00, 'Pattinampakam', '1', '1821 years 7 months', 'Personal issues ', 1, '2023-09-19 09:13:29', 0, NULL, 0, NULL, 1),
(6386, 14467, 'Star health insurance ', 'Mis executive ', '2022-05-31', 275000.00, '2023-09-28', 275000.00, 'Thousand lights Chennai ', '1', '1 years 3 months', ' ', 1, '2023-09-20 09:48:24', 0, NULL, 0, NULL, 1),
(6387, 14467, 'Star health insurance ', 'MIS executive ', '2022-05-31', 275000.00, '2023-09-28', 275000.00, 'Thousand lights, Chennai ', '1', '1 years 3 months', ' For carrier growth ', 1, '2023-09-20 09:52:30', 0, NULL, 0, NULL, 1),
(6388, 14467, 'Pixel art india ', 'Website admin and customer chat support ', '2021-03-01', 120000.00, '2022-05-28', 120000.00, 'Bangalore ', '1', '1 years 2 months', 'Contract closed', 1, '2023-09-20 09:54:21', 0, NULL, 0, NULL, 1),
(6389, 14481, 'CVRDE Avadi', 'Assistant for IFO', '2023-07-07', 16000.00, '1970-01-01', 16000.00, 'Avadi', '2', '0 years 2 months', 'End of Contract', 1, '2023-09-20 12:09:29', 1, '2023-09-20 12:14:34', 0, NULL, 0),
(6390, 14481, 'Altruist Technology Pvt Ltd', 'Customer Support Associate', '2023-01-02', 16000.00, '1970-01-01', 16000.00, 'Sholinganallur', '2', '0 years 8 months', 'Health issue', 1, '2023-09-20 12:13:44', 1, '2023-09-20 12:15:17', 0, NULL, 1),
(6391, 14498, 'Hogist Technologies Pvt Ltd ', 'Angular Developer', '2022-02-09', 15000.00, '2022-11-15', 1.00, 'Nungambakkam', '1', '0 years 9 months', ' Due to pursuing Full time pg (MCA)', 1, '2023-09-21 11:01:10', 0, NULL, 0, NULL, 1),
(6392, 14499, 'Tamil matrimony ', 'Sales', '2023-01-05', 15000.00, '2023-09-21', 15000.00, 'Guindy', '1', '0 years 8 months', ' Health issue', 1, '2023-09-21 12:29:59', 0, NULL, 0, NULL, 1),
(6393, 14504, 'Olive Immigration Consultant ', 'Junior HR Executive ', '2022-11-04', 24000.00, '2023-05-04', 24000.00, 'Chennai ', '1', '0 years 6 months', ' Was not comfortable with the transportation ', 1, '2023-09-21 10:42:53', 0, NULL, 0, NULL, 1),
(6394, 14504, 'E2E infoware management services ', 'Non IT recruiter ', '2023-05-11', 15000.00, '2023-08-09', 15000.00, 'Chennai ', '1', '0 years 2 months', 'Due to financial loss they are about to close the branch so they did layoff ', 1, '2023-09-21 10:44:58', 0, NULL, 0, NULL, 1),
(6395, 14505, 'Aker Solutions ', 'QSA', '2022-04-01', 450000.00, '2023-01-11', 450000.00, 'Pune', '1', '0 years 9 months', ' ', 1, '2023-09-22 10:30:04', 0, NULL, 0, NULL, 1),
(6396, 14510, 'Vizza insurance private limited', 'Saidapet', '2022-08-24', 13000.00, '2023-09-07', 15000.00, 'CHENNAI', '1', '1 years 0 months', ' Long distance', 1, '2023-09-22 11:17:02', 0, NULL, 0, NULL, 1),
(6397, 14512, 'Sun shine management ', 'It recruiter ', '2023-02-01', 17000.00, '2023-08-31', 17000.00, 'Chennai ', '1', '0 years 6 months', ' Layoff', 1, '2023-09-22 11:25:59', 0, NULL, 0, NULL, 1),
(6398, 14502, 'Double dribble sport entertainment company ', 'Vinew manager ', '2023-03-12', 23000.00, '2023-09-07', 23000.00, 'Chennai', '1', '0 years 5 months', 'Night shift ', 1, '2023-09-22 12:04:00', 0, NULL, 0, NULL, 1),
(6399, 14506, 'concepts and devices', 'documataion ', '2023-02-02', 28000.00, '2023-09-22', 30000.00, 'chennai', '1', '0 years 7 months', ' No prop feedb ', 1, '2023-09-22 12:15:17', 0, NULL, 0, NULL, 1),
(6400, 14516, 'Bluechip investment corporate ', 'Field executive ', '2022-06-01', 14000.00, '2023-08-08', 14750.00, 'Chennai', '1', '1 years 2 months', ' Sales field is not worked for me ', 1, '2023-09-22 12:30:08', 0, NULL, 0, NULL, 1),
(6401, 14515, 'Star health insurance & allied co Ltd', 'RRO', '2022-05-23', 15000.00, '1970-01-01', 17600.00, 'TNagar', '2', '1 years 3 months', ' Grow my carrier ', 1, '2023-09-22 12:35:22', 0, NULL, 0, NULL, 1),
(6402, 14520, 'SUPREME COMPUTER ', 'CRE', '2022-03-10', 300000.00, '1970-01-01', 300000.00, 'Egmore ', '2', '1 years 6 months', ' ', 1, '2023-09-25 10:43:29', 0, NULL, 0, NULL, 1),
(6403, 14521, 'Tech mahindra ', 'Telecaller ', '2021-06-10', 10000.00, '2021-06-23', 10000.00, 'Chennai ', '1', '0 years 0 months', ' ', 1, '2023-09-25 11:22:35', 0, NULL, 0, NULL, 1),
(6404, 14500, 'Buzzworks', 'Tele recruiter', '2022-08-17', 15000.00, '2023-08-18', 15000.00, 'Chrompet ', '1', '1 years 0 months', ' Long distance ', 1, '2023-09-25 11:50:30', 0, NULL, 0, NULL, 1),
(6405, 14524, 'HdB financial services Pvt Ltd ', 'Senior caller', '2021-07-21', 15000.00, '2023-03-02', 18500.00, 'Chennai ', '1', '1 years 7 months', ' Health issues ', 1, '2023-09-25 06:34:31', 0, NULL, 0, NULL, 1),
(6406, 14527, 'Atos Global IT solutions and services ', 'Analyst ', '2019-10-01', 350000.00, '2021-05-20', 370000.00, 'Chennai', '1', '1 years 7 months', ' Business ', 1, '2023-09-26 09:50:10', 0, NULL, 0, NULL, 1),
(6407, 14531, 'Tech Deck IT PVT LTD  ', 'Full Stack Developer ', '2021-08-06', 20000.00, '2023-09-26', 20000.00, 'Chennai ', '1', '2 years 1 months', ' ', 1, '2023-09-26 11:58:14', 0, NULL, 0, NULL, 1),
(6408, 14533, 'Doves vacation ', 'Holiday advisor ', '2023-04-01', 26500.00, '2023-08-20', 28500.00, 'Chennai ', '1', '0 years 4 months', ' Health issues ', 1, '2023-09-26 02:12:43', 0, NULL, 0, NULL, 1),
(6409, 14534, 'bluechip corporate investment center and private l', 'branch asssitant', '2019-06-01', 12500.00, '2021-10-10', 14000.00, 'medavakkam ', '1', '4 years 3 months', ' health issues ', 1, '2023-09-26 02:46:10', 0, NULL, 0, NULL, 1),
(6410, 14539, 'Edgar e-file solutions Pvt Ltd ', 'Financial Associate ', '2021-07-19', 13500.00, '2023-06-12', 16000.00, 'Chennai ', '1', '1 years 10 months', ' Contract got ended', 1, '2023-09-27 10:40:12', 0, NULL, 0, NULL, 1),
(6411, 14540, 'Tagros Chemicals India Pvt Ltd ', 'Account Assistant ', '2012-01-18', 20000.00, '2023-06-30', 37500.00, 'Chennai ', '1', '11 years 5 months', ' Company layoff', 1, '2023-09-27 11:11:41', 0, NULL, 0, NULL, 1),
(6412, 14542, 'Ascent consulting services pvt ltd ', 'Junior Executive ', '2021-12-13', 18750.00, '2022-10-31', 18750.00, 'Kottivakkam', '1', '0 years 10 months', ' ', 1, '2023-09-27 11:30:25', 0, NULL, 0, NULL, 1),
(6413, 14544, 'Dr. Amin controllers private limited', 'Accounting coordinator', '2022-08-08', 15000.00, '2023-08-31', 15000.00, 'Thambi chetty street, mannadi', '1', '1 years 0 months', '  I believe I\'ve progressed as far as I can in my current role. I need a change of environment to motivate me. I want to develop a new skill that isn\'t required in my current job.', 1, '2023-09-27 11:35:04', 0, NULL, 0, NULL, 1),
(6414, 14547, 'Iris kpo resourcing pvt Ltd', 'Taxation executive ', '2022-07-01', 25000.00, '2023-09-26', 25000.00, 'Nungabakkam ', '1', '1 years 2 months', ' To grow in my career', 1, '2023-09-27 02:25:21', 0, NULL, 0, NULL, 1),
(6415, 14535, 'Alphentrix global private limited ', 'CSE/TSE/CRM', '2023-02-06', 30000.00, '2023-08-31', 30000.00, 'Chennai ', '1', '0 years 6 months', ' ', 1, '2023-09-27 02:44:48', 0, NULL, 0, NULL, 1),
(6416, 14548, 'Legacy med healthcare ', 'AR caller ', '2022-08-10', 15.00, '2023-03-28', 15.00, 'Vadapalani', '1', '0 years 7 months', 'Reason for my process i closed ', 1, '2023-09-27 05:07:25', 0, NULL, 0, NULL, 1),
(6417, 14549, 'Loans manthara ', 'Senior telecalller', '2022-03-21', 15000.00, '2023-09-27', 15000.00, 'Arumbakkam ', '1', '1 years 6 months', ' Company as closed ', 1, '2023-09-27 05:25:04', 0, NULL, 0, NULL, 1),
(6418, 14550, 'Vertex Customer management solutions', 'Business Association', '2017-02-07', 6500.00, '2018-05-31', 13500.00, 'Chennai', '1', '1 years 3 months', ' Process  closed', 1, '2023-09-28 10:22:10', 0, NULL, 0, NULL, 1),
(6419, 14550, 'Zaara Realty', 'TeleSales Executive', '2018-09-25', 15000.00, '2020-12-30', 20000.00, 'Chennai', '1', '2 years 3 months', 'Because of marriage and baby ', 1, '2023-09-28 10:23:28', 0, NULL, 0, NULL, 1),
(6420, 14551, 'Saram Enviro services ', 'Accountant admin ', '2022-07-15', 16000.00, '2023-08-31', 22000.00, 'Mylapore', '1', '1 years 1 months', ' Its a man Power agency, and I don\'t have a scope in learning the new things of accounting and finance, I need to learn for my career and Growth. To secure my career I need to stay stable in the role of accounting and finance ', 1, '2023-09-28 10:35:25', 0, NULL, 0, NULL, 1),
(6421, 14552, 'Avalon Technology Ltd', 'Apprenticeship Trainee', '2015-06-01', 6300.00, '2016-06-02', 6300.00, 'CHENNAI', '1', '1 years 0 months', ' ', 1, '2023-09-28 12:28:11', 0, NULL, 0, NULL, 1),
(6422, 14552, 'Calibehr Business SupportServicesPvt.Ltd ', 'DIP MANAGER', '2019-05-08', 216000.00, '1970-01-01', 336000.00, 'Chennai', '2', '4 years 4 months', 'For carrier Upgrade', 1, '2023-09-28 12:30:10', 0, NULL, 0, NULL, 1),
(6423, 14553, 'RB Technologies ', 'Sales Executive ', '2022-08-01', 15.00, '2023-04-03', 18.00, 'Medavakkam ', '1', '1 years 1 months', 'Try to attend government exam', 1, '2023-09-28 01:38:01', 0, NULL, 0, NULL, 1),
(6424, 14559, 'BTWO Solutions', 'Telesales Executive', '2022-11-08', 8.00, '2023-08-02', 18000.00, 'RT Square near silk board', '1', '0 years 8 months', ' Due to my sisters married', 1, '2023-09-29 09:27:23', 0, NULL, 0, NULL, 1),
(6425, 14562, 'Cognizant Technology Solutions ', 'Process executive Data', '2021-09-13', 11000.00, '2023-09-01', 18000.00, 'Siruseri', '1', '1 years 11 months', ' Career growth ', 1, '2023-09-29 10:43:36', 0, NULL, 0, NULL, 1),
(6426, 14564, 'Commercial Taxes ', 'Typist', '2013-05-10', 8500.00, '2016-12-25', 8500.00, 'Chennnai ', '1', '3 years 7 months', ' Too low salary ', 1, '2023-09-29 11:37:53', 0, NULL, 0, NULL, 1),
(6427, 14565, 'Perficient', 'AEM DEVELOPER', '2021-08-09', 3.00, '2023-01-12', 4.00, 'Chennai', '1', '1 years 5 months', ' Layoff', 1, '2023-09-29 11:38:35', 0, NULL, 0, NULL, 1),
(6428, 14564, 'Data Matrix Technologies', 'Data Mapping Analyst', '2017-01-15', 15000.00, '2019-12-04', 15000.00, 'Chennai', '1', '2 years 10 months', 'Mother\'s  Death', 1, '2023-09-29 11:39:57', 0, NULL, 0, NULL, 1),
(6429, 14567, 'Rr donnelley', 'Customer support associate', '2018-04-04', 20000.00, '2019-08-31', 24000.00, 'Chennai', '1', '1 years 4 months', ' Major accident and went through multiple surgery ', 1, '2023-09-29 12:44:03', 0, NULL, 0, NULL, 1),
(6430, 14569, 'lotus footwear enterprises', 'junior engineer', '2021-09-06', 10.00, '2023-09-16', 28000.00, 'kanchipuram', '1', '2 years 0 months', ' Develop the skill to my caree ', 1, '2023-09-29 12:55:24', 0, NULL, 0, NULL, 1),
(6431, 14568, 'Star health insurance', 'Senior MIS executive ', '2022-10-26', 30000.00, '2023-07-19', 31000.00, 'Royapettah', '1', '0 years 8 months', ' ', 1, '2023-09-29 01:02:35', 0, NULL, 0, NULL, 1),
(6432, 14570, 'Altruist technologies', 'Mis executive', '2018-12-26', 17000.00, '2023-08-31', 24000.00, 'Chennai', '1', '4 years 8 months', ' ', 1, '2023-09-29 01:33:41', 0, NULL, 0, NULL, 1),
(6433, 14570, 'Altruist', 'Mis executive', '2018-12-26', 17000.00, '2023-08-31', 24000.00, 'Chennai', '1', '4 years 8 months', 'Carrier growth', 1, '2023-09-29 01:35:54', 0, NULL, 0, NULL, 1),
(6434, 14571, 'caratlane trading pvt ltd', 'finance executive', '2022-06-27', 23500.00, '2023-01-20', 23500.00, 'chennai', '1', '0 years 6 months', ' Shift Timing Changed', 1, '2023-09-29 02:54:37', 0, NULL, 0, NULL, 1),
(6435, 14571, 'seashell marine services pvt ltd', 'finance executive', '2023-01-23', 25000.00, '1970-01-01', 25000.00, 'chennai', '2', '0 years 8 months', 'Expecting Core Finance and Betterment', 1, '2023-09-29 02:56:32', 0, NULL, 0, NULL, 1),
(6436, 14576, 'Ss associate', 'Assistant associate', '2020-08-20', 1.00, '2023-07-20', 2.00, 'Pour', '1', '2 years 11 months', 'For health issues  ', 1, '2023-09-30 11:38:47', 0, NULL, 0, NULL, 1),
(6437, 14573, 'MACSS INNOVATION', 'Application Support Engineer', '2023-04-01', 15000.00, '1970-01-01', 15000.00, 'Cheppauk', '2', '0 years 5 months', ' ....', 1, '2023-09-30 11:46:30', 0, NULL, 0, NULL, 1),
(6438, 14577, 'tvs credit service', 'sales', '2021-01-25', 11000.00, '2023-08-07', 14500.00, 'kodambakkam', '1', '2 years 6 months', ' office shifted to velachery', 1, '2023-09-30 12:05:34', 0, NULL, 0, NULL, 1),
(6439, 14579, 'Hemant enterprise ', 'Mis', '2022-09-08', 35000.00, '2023-03-08', 35000.00, 'Teymampet', '1', '0 years 6 months', ' Mother health issue ', 1, '2023-09-30 04:05:51', 0, NULL, 0, NULL, 1),
(6440, 14582, 'Alpha Heat Interchange India LLP, GPRSK Associcate', 'Accounts executive ', '2021-02-01', 24000.00, '2023-07-21', 28000.00, 'Mount road', '1', '2 years 5 months', ' Mother\'s health issue ', 1, '2023-09-30 10:19:51', 1, '2023-10-01 10:26:41', 0, NULL, 0),
(6441, 14582, 'GPRSK Associates ', 'Accounts executive ', '2019-12-01', 10000.00, '2020-08-04', 10000.00, 'T.Nagar', '1', '0 years 8 months', ' Career growth', 1, '2023-09-30 10:37:59', 1, '2023-10-01 10:26:45', 0, NULL, 0),
(6442, 14582, 'GPRSK & Associates ', 'Accounts Executive ', '2018-12-01', 10000.00, '2019-07-31', 10000.00, 'T.nagar', '1', '0 years 8 months', ' To improve my career growth ', 1, '2023-10-01 10:31:50', 0, NULL, 0, NULL, 1),
(6443, 14582, 'Twin City Fan India Pvt Ltd', 'Accounts executive ', '2019-08-05', 18000.00, '2021-01-31', 23500.00, 'Porur ', '1', '1 years 5 months', 'To change my financial position and grow up in carrer\nSwitch over for timing.', 1, '2023-10-01 10:35:03', 1, '2023-10-01 10:37:50', 0, NULL, 1),
(6444, 14582, 'Alpha Heat interchange India Pvt ltd', 'Senior accounts executive ', '2021-02-01', 24000.00, '2023-07-21', 28000.00, 'Mount road', '1', '2 years 5 months', 'Mother\'s medical issue, and office shifted to oMRv', 1, '2023-10-01 10:37:16', 0, NULL, 0, NULL, 1),
(6445, 14585, 'Indusind bank ', 'Customer relationship officer ', '2021-05-20', 14000.00, '2022-09-19', 20000.00, 'kodambakam high road Tnagar', '1', '1 years 3 months', ' I went to my native(Andhra Pradesh)why because my father health condition is not well.', 1, '2023-10-02 09:59:19', 0, NULL, 0, NULL, 1),
(6446, 14585, 'Sunil sethia & associates ', 'Audit assistant ', '2023-04-17', 10000.00, '2023-07-20', 10000.00, 'Kodambakkam mahalingapuram', '1', '0 years 3 months', 'Salary is less.', 1, '2023-10-02 10:01:27', 0, NULL, 0, NULL, 1),
(6447, 14583, 'Asort Co-Commerce Hub ', 'Business Consultant ', '2022-10-17', 20.00, '2023-10-03', 20000.00, 'Pune, Maharastra ', '1', '0 years 11 months', 'Low Salary ', 1, '2023-10-03 09:01:47', 0, NULL, 0, NULL, 1),
(6448, 14580, 'Vodafone idea ', 'Customer exctive', '2022-11-29', 19000.00, '2023-09-01', 19000.00, 'Velachery', '1', '0 years 9 months', 'Personal issue', 1, '2023-10-03 10:06:20', 0, NULL, 0, NULL, 1),
(6449, 14588, 'Doodleblue Innovations private limited ', 'Software Engineer Intern', '2022-11-01', 20000.00, '2023-01-20', 20000.00, 'Nungambakkam ', '1', '0 years 2 months', ' The Organization faces layoff', 1, '2023-10-03 11:02:43', 0, NULL, 0, NULL, 1),
(6450, 14588, 'Paladin software solutions private limited ', 'Junior software developer (Grade T1)', '2023-01-23', 15000.00, '2023-09-30', 15000.00, 'Annanagar ', '1', '0 years 8 months', 'Delay in salary for long period ', 1, '2023-10-03 11:05:46', 0, NULL, 0, NULL, 1),
(6451, 14589, 'HDFC BANK ', 'Sales ', '2019-01-10', 7.00, '2022-11-01', 19000.00, 'Chennai ', '1', '3 years 9 months', ' Medical issues ', 1, '2023-10-03 11:06:35', 0, NULL, 0, NULL, 1),
(6452, 14591, 'Bright services ', 'Handling coustomers from  United States and Qualif', '2023-06-05', 10000.00, '1970-01-01', 10000.00, 'Trichy ', '2', '0 years 3 months', 'To increase my salary ', 1, '2023-10-03 12:01:11', 0, NULL, 0, NULL, 1),
(6453, 14593, 'tandem accounting services', 'mis', '2022-07-21', 17000.00, '2023-09-09', 17000.00, 'nungabakkam', '1', '1 years 1 months', ' Personal Issue', 1, '2023-10-03 12:06:48', 0, NULL, 0, NULL, 1),
(6454, 14586, 'apar innosys', 'crm', '2021-11-22', 12000.00, '2023-02-01', 12000.00, 'mrc nagar', '1', '1 years 2 months', ' salary issue', 1, '2023-10-03 12:15:10', 0, NULL, 0, NULL, 1),
(6455, 14594, 'Winsar Infosoft Pvt Ltd ', 'Software Implementation Specialist ', '2021-03-05', 5.00, '2022-08-12', 16000.00, 'Chennai ', '1', '1 years 5 months', ' PG studies ', 1, '2023-10-03 12:15:53', 0, NULL, 0, NULL, 1),
(6456, 14595, 'pnbmetlife', 'rm ', '2022-10-03', 256000.00, '1970-01-01', 345000.00, 'chennai', '2', '1 years 0 months', ' ', 1, '2023-10-03 01:16:19', 0, NULL, 0, NULL, 1),
(6457, 14606, 'Red star plastick private limited ', 'Assistant Accountant ', '2023-07-06', 13000.00, '2023-10-03', 16000.00, 'Valasarawalkam chennai ', '2', '0 years 2 months', 'Personal issues ', 1, '2023-10-04 11:03:46', 0, NULL, 0, NULL, 1),
(6458, 14566, 'Techmahindra pvt ltd', 'Process associate', '2019-09-09', 120000.00, '1970-01-01', 140000.00, 'Ambuttur', '2', '4 years 0 months', ' Carrer growth', 1, '2023-10-04 11:45:57', 0, NULL, 0, NULL, 1),
(6459, 14613, 'Star health and allied insurance ', 'HRO EXECUTIVE AND ADMIN', '2022-10-31', 18000.00, '2023-09-28', 19400.00, 'Royapettah ', '1', '0 years 11 months', ' Even in Sunday\'s also there is no holiday we have to work there.', 1, '2023-10-04 12:15:17', 0, NULL, 0, NULL, 1),
(6460, 14620, 'Star health insurance ', 'CRO', '2021-03-07', 13000.00, '2023-04-17', 209646.00, 'Chennai', '1', '2 years 1 months', ' Looking for a career growth ', 1, '2023-10-05 11:12:24', 0, NULL, 0, NULL, 1),
(6461, 14620, 'Star health insurance ', 'CRO', '2020-03-03', 13000.00, '2023-04-17', 14500.00, 'Chennai', '1', '3 years 1 months', 'Reason for career growth.', 1, '2023-10-05 11:13:45', 0, NULL, 0, NULL, 1),
(6462, 14623, 'Cognizant technology solutions ', 'Process executive ', '2008-05-26', 9000.00, '2009-09-09', 9000.00, 'Chennai ', '1', '1 years 3 months', ' Project closed ', 1, '2023-10-05 11:22:40', 0, NULL, 0, NULL, 1),
(6463, 14623, 'Annai velankanni agency ', 'Accounts cum admin mis', '2014-08-25', 9000.00, '2022-11-28', 20000.00, 'Chennai ', '1', '8 years 3 months', 'Warehouse closed ', 1, '2023-10-05 11:24:38', 0, NULL, 0, NULL, 1),
(6464, 14624, 'Vvt solutions ', 'Sales executive ', '2023-10-10', 17000.00, '1970-01-01', 17000.00, 'Thousand Tights ', '2', '0 years 0 months', ' It\'s voice processing ', 1, '2023-10-05 11:33:14', 0, NULL, 0, NULL, 1),
(6465, 14624, 'Vvt solutions ', 'Sales executive ', '2023-10-10', 17000.00, '1970-01-01', 17000.00, 'Thousand Tights ', '2', '0 years 0 months', 'It\'s voice processing ', 1, '2023-10-05 11:34:07', 0, NULL, 0, NULL, 1),
(6466, 14625, 'HDFC BANK', 'Telecaller', '2019-11-27', 12000.00, '2022-12-03', 13500.00, 'Nugumpakkam', '1', '3 years 0 months', ' Health issue ', 1, '2023-10-05 12:05:50', 0, NULL, 0, NULL, 1),
(6467, 14627, 'Hcl Technologies', 'Analyst', '2019-03-01', 15000.00, '2022-06-30', 18000.00, 'Navallur', '1', '3 years 4 months', ' Relocation', 1, '2023-10-05 01:00:13', 0, NULL, 0, NULL, 1),
(6468, 14631, 'HDB financial services ', 'junior officer ', '2021-10-06', 13800.00, '2023-07-01', 13800.00, 'Chennai aminjikarai ', '1', '1 years 8 months', 'No increment ', 1, '2023-10-05 05:18:31', 0, NULL, 0, NULL, 1),
(6469, 14631, 'niva bupa health insurance ', 'relationship associate ', '2023-08-02', 20833.00, '1970-01-01', 20833.00, 'Chennai aminjikarai ', '2', '0 years 2 months', 'Some issues', 1, '2023-10-05 05:19:54', 0, NULL, 0, NULL, 1),
(6470, 14637, 'Helios Spectra ', 'Junior Data Analyst', '2021-08-02', 20000.00, '2022-10-21', 20000.00, 'Trichy', '1', '1 years 2 months', ' Due to health issues.', 1, '2023-10-06 11:39:53', 0, NULL, 0, NULL, 1),
(6471, 14645, 'EBS', 'Telecaller', '2023-06-08', 15000.00, '1970-01-01', 15000.00, 'Saidapet', '2', '0 years 3 months', ' ', 1, '2023-10-07 10:53:15', 0, NULL, 0, NULL, 1),
(6472, 14647, 'Rajalakshmi Eduverse', 'Admission executive', '2023-02-06', 16000.00, '1970-01-01', 16000.00, 'Mylapore, Chennai', '2', '0 years 8 months', ' To improve my career development', 1, '2023-10-07 12:41:30', 0, NULL, 0, NULL, 1),
(6473, 14647, 'Rajalakshmi Eduverse', 'Admission executive', '2023-02-06', 16000.00, '1970-01-01', 16000.00, 'Mylapore', '2', '0 years 8 months', 'To improve my skills', 1, '2023-10-07 12:42:18', 108, '2023-10-07 01:11:04', 0, NULL, 0),
(6474, 14647, 'Rajalakshmi Eduverse', 'Admission executive', '2023-02-06', 16000.00, '1970-01-01', 16000.00, 'Mylapore', '2', '0 years 8 months', 'To improve my skills', 1, '2023-10-07 12:43:33', 108, '2023-10-07 01:11:51', 0, NULL, 0),
(6475, 14648, 'Omega health care management services ', 'Mis executive ', '2022-05-04', 25000.00, '1970-01-01', 25000.00, 'Trichirappalli ', '2', '1 years 5 months', ' Enhancement changes', 1, '2023-10-07 12:55:27', 0, NULL, 0, NULL, 1),
(6476, 14651, 'Transenergy Private Limited', 'Hr Recruiter/ Placement officer', '2023-03-20', 18200.00, '2023-09-09', 18200.00, 'Chennai', '1', '0 years 5 months', '  Change in shift timing and health issues', 1, '2023-10-07 12:57:12', 0, NULL, 0, NULL, 1),
(6477, 14646, 'Aegis Pvt Ltd ', 'Customer Support Executive ', '2016-04-15', 15000.00, '2017-08-31', 15000.00, 'Broadway ', '1', '1 years 4 months', ' Career growth ', 1, '2023-10-07 01:24:55', 0, NULL, 0, NULL, 1),
(6478, 14646, 'Just dial Pvt Ltd ', 'Senior Telemarketing Executive ', '2017-09-18', 18000.00, '1970-01-01', 25000.00, 'Saidapet ', '2', '6 years 0 months', 'Till date working ', 1, '2023-10-07 01:27:50', 0, NULL, 0, NULL, 1),
(6479, 14653, 'Sea Rock Enterprises ', 'Engineer', '2021-03-07', 16000.00, '2022-12-23', 16000.00, 'Chennai ', '1', '1 years 9 months', 'Company change to another district ', 1, '2023-10-07 03:58:12', 0, NULL, 0, NULL, 1),
(6480, 14657, 'Ja solutions ', 'Non voice process ', '2023-02-09', 8000.00, '2023-08-05', 8000.00, 'Telecaller ', '1', '0 years 5 months', ' Night shift ', 1, '2023-10-09 10:33:33', 0, NULL, 0, NULL, 1),
(6481, 14121, 'Matrimony.com', 'Tele Marketing ', '2023-04-04', 14000.00, '2023-10-06', 16000.00, 'Chennai ', '1', '0 years 6 months', ' Salary issue ', 1, '2023-10-09 11:33:33', 0, NULL, 0, NULL, 1),
(6482, 14664, 'Parikshan fss private limited ', 'Accountant ', '2022-05-27', 18000.00, '2023-08-17', 25000.00, 'Guindy chennai', '1', '1 years 2 months', ' The work allocation is not proper for the given position and told to go for filed work and telecalling post', 1, '2023-10-09 12:11:58', 0, NULL, 0, NULL, 1),
(6483, 14662, 'paym tech solution ', 'mis', '2022-04-11', 18000.00, '2023-06-10', 18000.00, 'chepauk', '1', '1 years 1 months', ' Salary issues', 1, '2023-10-09 01:45:37', 0, NULL, 0, NULL, 1),
(6484, 14669, '247 Facility services Pvt Ltd ', 'Facility Executive ', '2023-03-03', 45000.00, '2023-09-30', 45000.00, 'Bangalore ', '1', '0 years 6 months', ' Man power reduction  had informed one  month .', 1, '2023-10-09 02:50:04', 0, NULL, 0, NULL, 1),
(6485, 14672, 'Access healthcare', 'Senior client partner ', '2021-12-10', 38000.00, '2023-01-10', 38000.00, 'Chennai', '1', '1 years 1 months', ' Carrier Growth', 1, '2023-10-09 04:18:35', 0, NULL, 0, NULL, 1),
(6486, 14675, 'Forte management services ', 'Tele caller ', '2022-11-21', 17000.00, '2023-09-30', 17000.00, 'Ponneri ', '1', '0 years 10 months', ' They changed me to other language team ', 1, '2023-10-09 06:55:37', 0, NULL, 0, NULL, 1),
(6487, 14678, 'armsoftec', 'sales executive', '2021-12-09', 18.00, '2023-01-19', 18.00, 'ambature', '1', '1 years 1 months', ' I Didn’t get my salary and insentive properly ', 1, '2023-10-10 10:40:19', 0, NULL, 0, NULL, 1),
(6488, 14682, 'Altriust technology ', 'Processes executive ', '2020-08-20', 1000.00, '2023-09-11', 14000.00, 'Chenab ', '1', '3 years 0 months', ' ', 1, '2023-10-10 12:17:11', 0, NULL, 0, NULL, 1),
(6489, 14682, 'Altruistic technology ', 'Processes executive ', '2020-08-20', 1000.00, '2023-09-11', 14000.00, 'Chennai', '1', '3 years 0 months', 'I want to improve my career ', 1, '2023-10-10 12:18:32', 0, NULL, 0, NULL, 1),
(6490, 14687, 'Kotak Mahindra Bank ', 'Life advisor ', '2023-05-24', 10000.00, '2023-09-20', 10000.00, 'Nandbakkam', '1', '0 years 3 months', ' ', 1, '2023-10-10 12:22:56', 0, NULL, 0, NULL, 1),
(6491, 14687, 'Life advisor ', 'Insurance agent ', '2023-05-24', 10000.00, '2023-09-20', 20000.00, 'Nandbakkam ', '1', '0 years 3 months', 'Nothing ', 1, '2023-10-10 12:25:28', 0, NULL, 0, NULL, 1),
(6492, 14695, 'Ticfiber ', 'Customer care executive ', '2022-11-15', 12000.00, '1970-01-01', 12000.00, 'Egmore ', '2', '0 years 10 months', ' I am not comfortable for current company salary', 1, '2023-10-10 06:53:28', 0, NULL, 0, NULL, 1),
(6493, 14697, 'Finnble technology pvt ltd', 'Asst manager', '2020-11-04', 18000.00, '2023-06-05', 23500.00, 'Kodambakkam', '1', '2 years 7 months', ' Health issues', 1, '2023-10-11 09:58:50', 0, NULL, 0, NULL, 1),
(6494, 14701, 'Sakthi Nursing Home ', 'System Executive ', '2021-03-01', 17500.00, '2023-01-31', 17500.00, 'NAGAPATTINAM ', '1', '1 years 11 months', ' Salary negotiation ', 1, '2023-10-11 11:16:11', 0, NULL, 0, NULL, 1),
(6495, 14701, 'Computer age management system ', 'Assistant processing officer', '2017-07-06', 8250.00, '2018-07-22', 17500.00, 'Chennai ', '1', '1 years 0 months', 'Salary negotiation ', 1, '2023-10-11 11:21:23', 0, NULL, 0, NULL, 1),
(6496, 14700, 'boxman logistics pvt ltd', 'inventory executive', '2020-03-02', 17000.00, '2023-09-12', 23500.00, 'kavaraipettai', '1', '0 years 0 months', ' ', 1, '2023-10-11 11:22:27', 0, NULL, 0, NULL, 1),
(6497, 14703, 'innovative solutions', 'data entrY', '2023-04-10', 15000.00, '2023-09-04', 15000.00, 'chennai', '1', '0 years 4 months', 'contract', 104, '2023-10-11 11:32:33', 0, NULL, 0, NULL, 1),
(6498, 14704, 'Courtyard by Marriott ', 'Supervisor ', '2022-12-05', 15500.00, '2023-04-14', 15500.00, 'Chennai ', '1', '0 years 4 months', 'Job location changed ', 1, '2023-10-11 11:33:15', 0, NULL, 0, NULL, 1),
(6499, 14703, 'aegis bpo', 'telecaller', '2020-01-01', 12000.00, '2020-12-30', 15000.00, 'chennai', '1', '0 years 11 months', 'company shifted', 104, '2023-10-11 11:35:20', 0, NULL, 0, NULL, 1),
(6500, 14702, 'Innov source pvt Ltd ', 'Sale executive ', '2023-08-07', 20000.00, '2023-10-02', 20000.00, 'Nungampakam ', '1', '0 years 1 months', ' ', 1, '2023-10-11 11:52:14', 1, '2023-10-11 11:53:49', 0, NULL, 1),
(6501, 14707, 'Shine Leather', 'Accountant', '2021-08-09', 12000.00, '1970-01-01', 15000.00, 'Chromepet', '2', '2 years 2 months', ' Career Growth & Domain Change', 1, '2023-10-11 03:00:57', 0, NULL, 0, NULL, 1),
(6502, 14708, 'Iifl & Rajan hospital ', 'Telecallers', '2016-10-11', 12000.00, '2023-07-01', 25000.00, 'Mylapore ,ekatuthangal', '1', '6 years 8 months', ' Going native', 1, '2023-10-11 03:30:14', 0, NULL, 0, NULL, 1),
(6503, 14709, 'Sri Ganapathi cars', 'Sales', '2022-11-01', 20000.00, '2023-10-01', 20000.00, 'Vellore ', '1', '0 years 10 months', 'Regarding increment', 1, '2023-10-11 03:40:36', 0, NULL, 0, NULL, 1),
(6504, 14713, 'Financial software and systems pvt Ltd ', 'Helpdesk executive ', '2020-08-01', 300000.00, '2022-04-30', 300000.00, 'Siruseri ', '1', '1 years 8 months', ' ', 1, '2023-10-11 04:32:56', 0, NULL, 0, NULL, 1),
(6505, 14712, 'Loans mantra ', 'Sales Telecaller ', '2021-07-01', 15000.00, '2023-10-08', 17000.00, 'Egmore ', '1', '2 years 3 months', ' ', 1, '2023-10-11 04:34:40', 0, NULL, 0, NULL, 1),
(6506, 14716, 'Phlb service ', 'Tele caller ', '2022-02-15', 15000.00, '2023-05-31', 17000.00, 'Nungambakkam ', '1', '1 years 3 months', ' Personal problem ', 1, '2023-10-11 05:24:08', 0, NULL, 0, NULL, 1),
(6507, 14718, 'allsec technologies', 'customer care executive', '2019-07-30', 10000.00, '2019-11-01', 10000.00, 'chennai', '1', '0 years 3 months', ' i had backlogs so i asked for permission they didnt grant me i applied for paper they didnt grant that too so i absconded', 1, '2023-10-11 09:46:21', 1, '2023-10-11 09:52:27', 0, NULL, 1),
(6508, 14718, 'bank bazzar', 'customer relationship officer', '2020-02-07', 15000.00, '2020-06-08', 15000.00, 'chennai', '1', '0 years 4 months', 'they have asked me to quit the job because of covid reasons as they couldnt pay us salary', 1, '2023-10-11 09:49:03', 1, '2023-10-11 09:52:55', 0, NULL, 1),
(6509, 14718, 'funds india', 'Customer Care Executive', '2020-07-21', 17000.00, '2020-11-20', 17000.00, 'chennai', '1', '0 years 3 months', 'they have asked us to quit the job because of covid reasons as they where not able to pay us salary', 1, '2023-10-11 09:51:43', 1, '2023-10-11 09:53:14', 0, NULL, 1),
(6510, 14718, 'tentx services pvt.ltd', 'administrative coordinator', '2021-02-02', 25000.00, '2023-01-28', 25000.00, 'chennai', '1', '1 years 11 months', 'the company was going under loss so they could not pay us salary', 1, '2023-10-11 09:56:47', 0, NULL, 0, NULL, 1),
(6511, 14725, 'Siddhans Intelligence pvt ltd ', 'Product Engineer ', '2022-08-02', 17000.00, '1970-01-01', 25000.00, 'Chennai ', '2', '1 years 2 months', ' ', 1, '2023-10-12 10:50:16', 0, NULL, 0, NULL, 1),
(6512, 14721, 'Reliance arc', 'Recovery agents ', '2019-07-08', 10000.00, '2020-02-20', 11000.00, 'Anna nagar', '1', '0 years 7 months', 'They didn\'t provide offer letter and reliving letter ', 1, '2023-10-12 11:06:02', 0, NULL, 0, NULL, 1),
(6513, 14721, 'Fly ahead', 'Insurance sales agent', '2020-02-13', 12000.00, '2021-01-04', 12500.00, 'Royapettah', '1', '0 years 10 months', 'Corona period loss of company', 1, '2023-10-12 11:09:06', 0, NULL, 0, NULL, 1),
(6514, 14721, 'Dqai', 'Customer service agent', '2021-09-01', 13000.00, '2022-03-31', 13000.00, 'Little mount', '1', '0 years 6 months', 'Personal issues ', 1, '2023-10-12 11:12:05', 0, NULL, 0, NULL, 1),
(6515, 14721, 'Vgm consultant ', 'Business associate ', '2022-09-01', 15000.00, '1970-01-01', 16000.00, 'Kodambakkam ', '2', '1 years 1 months', 'I didn\'t felt safe in that company', 1, '2023-10-12 11:14:09', 0, NULL, 0, NULL, 1),
(6516, 14720, 'Greaves Electric mobility private limited ', 'GET', '2021-10-12', 14000.00, '2023-03-08', 14000.00, 'Chennai', '1', '1 years 4 months', ' Contract base', 1, '2023-10-12 11:18:17', 0, NULL, 0, NULL, 1),
(6517, 14726, 'Shebha group of schools', 'Telecalr', '2023-10-12', 18000.00, '1970-01-01', 16000.00, 'Chennai ', '2', '0 years 0 months', 'Low salary ', 1, '2023-10-12 11:19:24', 0, NULL, 0, NULL, 1),
(6518, 14727, 'Victory Vision', 'Senior Web Programer', '2006-04-12', 5000.00, '2011-04-12', 15000.00, 'Chennai', '1', '5 years 0 months', ' Location changed', 1, '2023-10-12 11:24:42', 0, NULL, 0, NULL, 1),
(6519, 14727, 'Quiz Master PVT', 'Associate Developer', '2023-01-18', 1200000.00, '2023-10-07', 120000.00, 'Chennai', '1', '0 years 8 months', 'Improve my Communication skills', 1, '2023-10-12 11:26:47', 0, NULL, 0, NULL, 1),
(6520, 14727, 'Redflux solution', 'Senior Programmer', '2011-04-01', 15000.00, '2015-02-09', 20000.00, 'Chennai', '1', '3 years 10 months', 'Relocated to Madurai Native', 1, '2023-10-12 11:29:25', 0, NULL, 0, NULL, 1),
(6521, 14727, 'Igrandee info Solutions', 'Senior Programmer', '2015-05-01', 200000.00, '2015-09-01', 20000.00, 'Madurai', '1', '0 years 4 months', 'Company package Problem', 1, '2023-10-12 11:32:19', 0, NULL, 0, NULL, 1),
(6522, 14727, 'Sri Mookambiga Info Solutions', 'Software Engineer', '2015-09-17', 25000.00, '2017-04-09', 31000.00, 'Madurai', '1', '1 years 6 months', 'Improved my Exra Know ledge', 1, '2023-10-12 11:35:12', 0, NULL, 0, NULL, 1),
(6523, 14728, 'INDUSLND BANK', 'Tellecaller', '2023-02-08', 16000.00, '2023-08-14', 16000.00, 'Mylapore', '1', '0 years 6 months', ' Salary issues', 1, '2023-10-12 12:23:39', 0, NULL, 0, NULL, 1),
(6524, 14734, 'MAGNETIC FAAC INDIA PVT LTD ', 'Sap Data Analyst ', '2023-05-03', 50000.00, '1970-01-01', 50000.00, 'Thuraipakkam ', '2', '0 years 5 months', ' Looking for Better opportunity ', 1, '2023-10-12 12:31:44', 0, NULL, 0, NULL, 1),
(6525, 14734, 'Safe secure Safety Equipment ', 'Manager Administration ', '2021-05-03', 45000.00, '2022-11-30', 45000.00, 'Villivakkam Chennai ', '1', '1 years 6 months', 'No Growth ', 1, '2023-10-12 12:33:45', 0, NULL, 0, NULL, 1),
(6526, 14735, 'Elumina Elearning Service Pvt Ltd ', 'MIS', '2022-08-22', 37000.00, '2023-03-07', 37000.00, 'Chennai ', '1', '0 years 6 months', ' Project closed ', 1, '2023-10-12 12:34:30', 0, NULL, 0, NULL, 1),
(6527, 14734, 'Sarvam Safety Equipment Pvt Ltd ', 'Manager Approvals & MIS Reports ', '2014-01-01', 25000.00, '2021-04-27', 40000.00, 'Villivakkam ', '1', '7 years 3 months', 'No Proper Growth', 1, '2023-10-12 12:35:41', 0, NULL, 0, NULL, 1),
(6528, 14734, 'Usha Fire Safety Equipments Pvt Ltd ', 'Manager SAP Approvals ', '2006-03-15', 4500.00, '2013-12-31', 25000.00, 'Padi', '1', '7 years 9 months', 'New Company Started so Transferred to New Company (Sarvam Safety Equipment Pvt Ltd)', 1, '2023-10-12 12:38:24', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6529, 14739, 'Cedar business solutions ', 'Team leader ', '2020-09-11', 10000.00, '2023-06-10', 25000.00, 'Chennai ', '1', '2 years 8 months', ' Learn to grow and secure job', 1, '2023-10-12 06:50:03', 0, NULL, 0, NULL, 1),
(6530, 14741, 'Rajalakshmi Eduverse ', 'Admin Executive', '2023-07-03', 17000.00, '2023-10-07', 17000.00, 'Mylapore', '1', '0 years 3 months', ' Some personal issues', 1, '2023-10-12 07:11:48', 0, NULL, 0, NULL, 1),
(6531, 14740, 'Rajalakshmi eduverse', 'Admission executive', '2023-07-03', 17000.00, '2023-10-07', 17000.00, 'Mylapore', '1', '0 years 3 months', ' Personal issues', 1, '2023-10-12 07:18:09', 0, NULL, 0, NULL, 1),
(6532, 14742, 'Rajalakshmi Eduverse', 'Admission exicutive', '2023-07-01', 17000.00, '2023-10-08', 17000.00, 'Mylapore ', '1', '0 years 3 months', ' Timing not suitable for me', 1, '2023-10-12 09:46:57', 0, NULL, 0, NULL, 1),
(6533, 14746, 'Miot international pvt ltd ', 'Accounts Executive ', '2019-11-11', 12.00, '2022-04-25', 17680.00, 'Chennai ', '1', '2 years 5 months', ' Learning new think ', 1, '2023-10-13 12:36:26', 0, NULL, 0, NULL, 1),
(6534, 14749, 'Lalitha enterprises ', 'Electrical supervisor ', '2017-02-06', 10000.00, '2022-02-25', 15000.00, 'South india', '1', '5 years 0 months', ' Need standard place', 1, '2023-10-13 12:37:48', 0, NULL, 0, NULL, 1),
(6535, 14746, 'Coda Technology Solutions Pvt Ltd ', 'Accounts Executive ', '2023-02-01', 4.00, '2023-08-11', 20656.00, 'Chennai ', '1', '0 years 6 months', 'Career Growth and learning new think more gaining knowledge in Accounts.', 1, '2023-10-13 12:39:20', 0, NULL, 0, NULL, 1),
(6536, 14749, 'Nestaway Pvt Ltd ', 'Area manager ', '2022-03-02', 21000.00, '2022-08-31', 21000.00, 'Chennai', '1', '0 years 5 months', 'Chennai branch closed that time', 1, '2023-10-13 12:40:40', 0, NULL, 0, NULL, 1),
(6537, 14749, 'Matrimony.com', 'Relationship manager ', '2022-09-01', 23000.00, '2022-12-30', 23000.00, 'Chennai', '1', '0 years 3 months', 'Study additional course of AWS cloud computing ', 1, '2023-10-13 12:42:48', 0, NULL, 0, NULL, 1),
(6538, 14749, 'Prompt trade fair India Pvt Ltd ', 'Buisness devlopment manager ', '2023-07-20', 25000.00, '1970-01-01', 25000.00, 'Chennai ', '2', '0 years 2 months', 'Need to relocate to karur ', 1, '2023-10-13 12:44:28', 0, NULL, 0, NULL, 1),
(6539, 14745, 'Cams india pvt ltd', 'Lead Specialist', '2022-10-20', 22000.00, '2023-05-02', 22000.00, 'Chennai', '1', '0 years 6 months', ' Health issue', 1, '2023-10-13 01:05:51', 0, NULL, 0, NULL, 1),
(6540, 14760, 'Cognizant technology solutions', 'Senior process executive', '2021-06-03', 13000.00, '2023-09-18', 22000.00, 'Chennai', '1', '2 years 3 months', ' ', 1, '2023-10-13 04:19:11', 0, NULL, 0, NULL, 1),
(6541, 14765, 'Ibytecode technology ', 'Flutter developer ', '2021-11-22', 8000.00, '1970-01-01', 10283.00, 'Chennai mohapair east', '2', '1 years 10 months', ' Insufficient salary,i wanna upgrade myself..', 1, '2023-10-14 11:16:10', 0, NULL, 0, NULL, 1),
(6542, 14766, 'MPRS OMS', 'Web developer  marketing IT', '2022-08-01', 15000.00, '1970-01-01', 15000.00, 'Kanchipuram ', '2', '1 years 2 months', ' Salary.', 1, '2023-10-14 11:40:13', 0, NULL, 0, NULL, 1),
(6543, 14766, 'Olympian Tek', 'Data entry operator | QC operator ', '2021-01-01', 8000.00, '2022-05-01', 9000.00, 'Kanchipuram', '1', '1 years 3 months', 'Salary', 1, '2023-10-14 11:42:04', 0, NULL, 0, NULL, 1),
(6544, 14766, 'Excela Technologies ', 'Data entry operator | QC operator ', '2019-01-01', 10000.00, '2020-12-01', 13000.00, 'Kanchipuram', '1', '1 years 10 months', 'Salary', 1, '2023-10-14 11:45:11', 0, NULL, 0, NULL, 1),
(6545, 14768, 'TCP international inc ', 'PHP developer ', '2021-11-22', 12000.00, '2023-10-03', 21000.00, 'Avadi', '1', '1 years 10 months', ' ', 1, '2023-10-14 12:02:55', 0, NULL, 0, NULL, 1),
(6546, 14769, 'Magickwoods', 'Sr executive', '2022-02-18', 32000.00, '2023-12-14', 32000.00, 'Mm nagar', '1', '1 years 9 months', 'Shifting home from Mm nagar to arakkonam', 1, '2023-10-14 12:47:14', 0, NULL, 0, NULL, 1),
(6547, 14774, 'Ninjacart', 'Relationship manager ', '2022-03-15', 22000.00, '1970-01-01', 24000.00, 'Redhills', '2', '1 years 7 months', ' Company business going very low so they need to layoff the employees ', 1, '2023-10-16 07:56:08', 0, NULL, 0, NULL, 1),
(6548, 14792, 'Inodesys Technologies ', 'Flutter Developer ', '2022-11-04', 15000.00, '2023-02-14', 15000.00, 'Anna nagar, Chennai.', '1', '0 years 3 months', ' I need to with good Development team and Organised company.', 1, '2023-10-16 11:20:28', 0, NULL, 0, NULL, 1),
(6549, 14797, 'Zealous services', 'Customer support execitive', '2013-08-14', 90000.00, '2015-07-07', 10500.00, 'Kodambakkam', '1', '1 years 10 months', ' Layoff', 1, '2023-10-16 11:40:27', 0, NULL, 0, NULL, 1),
(6550, 14802, 'RBLFINSERVE ', 'Branch operation executive ', '2022-07-04', 18800.00, '2023-06-01', 19500.00, 'Tirunelveli ', '1', '0 years 10 months', ' Personal ', 1, '2023-10-16 12:02:38', 0, NULL, 0, NULL, 1),
(6551, 14803, 'Enter stellar software pvt ltd', 'Sr operations executive', '2021-06-07', 15500.00, '1970-01-01', 25000.00, 'Chennai', '2', '2 years 4 months', ' ', 1, '2023-10-16 12:09:06', 0, NULL, 0, NULL, 1),
(6552, 14804, 'WMWI foods', 'Assistant accountant ', '2018-08-09', 1.00, '1970-01-01', 1.00, 'Bangalore', '2', '5 years 2 months', '6 months internship over', 1, '2023-10-16 12:37:19', 0, NULL, 0, NULL, 1),
(6553, 14807, 'ieyal solution', 'flutter developer', '2021-08-13', 6000.00, '2023-09-30', 16000.00, 'thiruvarur', '1', '2 years 1 months', ' To improve knowledge and gain experience from the various work places and new circumstances.', 1, '2023-10-16 12:42:48', 0, NULL, 0, NULL, 1),
(6554, 14830, 'PLC Technologies ', 'Front end Developer ', '2022-07-06', 15000.00, '2023-10-20', 18000.00, 'Kknagar', '1', '1 years 3 months', 'Currently Project not coming and Office Distance too long for me.. ', 1, '2023-10-17 10:35:05', 0, NULL, 0, NULL, 1),
(6555, 14840, 'nsb bpo solutions ', 'advisor ', '2023-04-06', 13000.00, '2023-05-15', 13000.00, 'Nungambakkam ', '1', '0 years 1 months', ' nose surgery ', 1, '2023-10-17 11:50:08', 0, NULL, 0, NULL, 1),
(6556, 14820, 'SJ Profit Plus', 'Telesales ', '2023-02-15', 18000.00, '2023-07-15', 18000.00, 'Saidapet ', '1', '0 years 5 months', 'Heavy loss so office Closed. ', 1, '2023-10-17 12:02:22', 0, NULL, 0, NULL, 1),
(6557, 14843, 'Ison experiences ', 'Lead verifier ', '2021-10-11', 11000.00, '2023-04-10', 16500.00, 'Perungudi ', '1', '1 years 5 months', 'Process random totally ', 1, '2023-10-17 12:31:16', 0, NULL, 0, NULL, 1),
(6558, 14844, 'Sulekha new media India private limited ', 'Senior Business development executive ', '2022-10-03', 25000.00, '2023-08-02', 25000.00, 'Chennai ', '1', '0 years 9 months', ' Location change ', 1, '2023-10-17 05:17:50', 0, NULL, 0, NULL, 1),
(6559, 14845, 'ppms field markting pvt ltd', 'branch admistration', '2018-04-23', 13812.00, '1970-01-01', 27696.00, 'chennai', '2', '5 years 5 months', ' i Need Grownup to next level i need more different of experience that is much better in my career and salary ', 1, '2023-10-17 07:08:21', 0, NULL, 0, NULL, 1),
(6560, 14847, 'Lumina Datamatics ', 'Trainee ', '2022-05-05', 25000.00, '2022-11-26', 25000.00, 'Chennai ', '1', '0 years 6 months', ' Accident and medical issues ', 1, '2023-10-18 09:32:42', 0, NULL, 0, NULL, 1),
(6561, 14848, 'Bhawar Sales corperate', 'Asst.Auditing Executive', '2022-09-13', 10000.00, '1970-01-01', 10000.00, 'puthupet', '2', '1 years 1 months', ' No Incerement There.', 1, '2023-10-18 10:08:28', 0, NULL, 0, NULL, 1),
(6562, 14854, 'Cognizant Technology Solutions ', 'Procurement Executive ', '2023-01-06', 16390.00, '2023-06-02', 16390.00, 'Chennai', '1', '0 years 4 months', ' Site closed ', 1, '2023-10-18 10:30:33', 0, NULL, 0, NULL, 1),
(6563, 14856, '247 Digitize ', 'Data Entry Associate', '2022-11-10', 15000.00, '2023-07-03', 15000.00, 'Arumbakkam ', '1', '0 years 7 months', ' ', 1, '2023-10-18 10:40:31', 0, NULL, 0, NULL, 1),
(6564, 14856, 'AICL', 'Junior Assistant ', '2022-02-10', 14200.00, '2022-08-31', 14200.00, 'Broadway ', '1', '0 years 6 months', 'Contract closed', 1, '2023-10-18 10:44:48', 0, NULL, 0, NULL, 1),
(6565, 14864, 'Allsec technologies pvt ltd', 'Customer support executive ', '2015-04-15', 9500.00, '2016-06-15', 10000.00, 'Velachery ', '1', '1 years 2 months', ' Different process in same company ', 1, '2023-10-18 11:44:31', 0, NULL, 0, NULL, 1),
(6566, 14864, 'Allsec technologies Pvt Ltd ', 'Researcher', '2016-06-15', 10000.00, '2021-04-15', 12500.00, 'Velachery', '1', '4 years 10 months', 'Better opportunity ', 1, '2023-10-18 11:47:07', 0, NULL, 0, NULL, 1),
(6567, 14864, 'Thoughtfocus information technology pvt Ltd ', 'Searcher', '2021-05-15', 16000.00, '2022-08-18', 21000.00, 'MYSURU (WFH)', '1', '1 years 3 months', 'Better opportunity', 1, '2023-10-18 11:50:23', 0, NULL, 0, NULL, 1),
(6568, 14865, 'idfc first bank limited', 'sales', '2023-03-03', 15000.00, '2023-08-31', 15000.00, 'old washermenpet', '1', '0 years 5 months', ' ', 1, '2023-10-18 12:31:13', 0, NULL, 0, NULL, 1),
(6569, 14862, 'Star Health Insurance', 'Telecaller', '2022-01-19', 17000.00, '2023-07-14', 17000.00, 'Chennai', '1', '1 years 5 months', ' Cancer problem my father', 1, '2023-10-18 12:32:07', 0, NULL, 0, NULL, 1),
(6570, 14868, 'Ntt data services private limited ', 'Senior process associate ', '2018-10-05', 15000.00, '2020-10-30', 18000.00, 'Porur', '1', '2 years 0 months', ' Health issues ', 1, '2023-10-18 01:36:09', 0, NULL, 0, NULL, 1),
(6571, 14877, 'Star health insurance ', 'TSO', '2021-11-22', 16000.00, '2023-08-08', 17500.00, 'Vadapalani ', '1', '1 years 8 months', ' Health issue', 1, '2023-10-19 10:40:03', 0, NULL, 0, NULL, 1),
(6572, 14886, 'Loans Mantra ', 'Telecaller', '2022-08-01', 17000.00, '2023-09-30', 17000.00, 'Arumbakkam', '1', '1 years 1 months', ' Salary not enough ', 1, '2023-10-19 11:44:36', 0, NULL, 0, NULL, 1),
(6573, 14885, 'Plada Infotech private limited ', 'MIS', '2022-06-16', 16200.00, '1970-01-01', 16200.00, 'Chennai ', '2', '1 years 4 months', 'Hike not offerings', 1, '2023-10-19 12:02:52', 0, NULL, 0, NULL, 1),
(6574, 14891, 'Matrimony.com', 'Business development executive ', '2022-03-22', 32000.00, '2023-05-01', 32000.00, 'Chennai ', '1', '1 years 1 months', ' ', 1, '2023-10-19 01:14:32', 0, NULL, 0, NULL, 1),
(6575, 14901, 'NHAI National Highway Authority of India', 'Calling in helpline number', '2019-05-09', 20000.00, '2020-06-09', 23000.00, 'Delhi', '1', '1 years 1 months', ' Because I have a health issues and I come with my grandma from Tamilnadu\nDelhi to Tamilnadu', 1, '2023-10-19 08:07:41', 0, NULL, 0, NULL, 1),
(6576, 14896, 'Byjus', 'Business development Associate', '2021-10-18', 24000.00, '2022-08-10', 25000.00, 'Coimbatore', '1', '0 years 9 months', ' I think I wanna grow up  my  knowledge in IT sector .so that I switched.', 1, '2023-10-19 09:44:43', 0, NULL, 0, NULL, 1),
(6577, 14776, 'The professional couriers regional head office che', 'Customer care executive ', '2022-12-02', 13000.00, '1970-01-01', 15000.00, 'Nungampakkam', '2', '0 years 10 months', ' Improve my skills and experience ', 1, '2023-10-20 11:11:43', 0, NULL, 0, NULL, 1),
(6578, 14914, 'Tech Mahindra ', 'Customer support ', '2021-09-01', 20.00, '2023-06-09', 20.00, 'Egmore', '1', '1 years 9 months', ' ', 1, '2023-10-20 12:18:32', 0, NULL, 0, NULL, 1),
(6579, 14925, 'Mani associates ', 'Accountant', '2022-12-01', 6500.00, '1970-01-01', 6500.00, 'West Tambaram ', '2', '0 years 10 months', ' ', 1, '2023-10-21 05:23:28', 0, NULL, 0, NULL, 1),
(6580, 14928, 't v s industrial and logistics parks private limit', 'accounts executive', '2022-08-18', 16000.00, '1970-01-01', 19660.00, 'chennai', '2', '1 years 2 months', 'almost 4 hours Travelling hour day.\nneeded to spend time for higher studies  ', 1, '2023-10-22 05:14:13', 0, NULL, 0, NULL, 1),
(6581, 14931, 'MMC infotech services Pvt Ltd ', 'Telecaller', '2022-12-01', 13000.00, '2023-04-13', 13000.00, 'Pattinapakam ', '1', '0 years 4 months', ' They told me to increase my salary after 3months but they didn\'t increase ', 1, '2023-10-23 08:48:46', 0, NULL, 0, NULL, 1),
(6582, 14919, 'HDB financial services ', 'Senior tellecaller', '2019-09-24', 10000.00, '2023-09-01', 15000.00, 'Thousand lights', '1', '3 years 11 months', ' Lacs of salary', 1, '2023-10-24 11:05:20', 0, NULL, 0, NULL, 1),
(6583, 14934, 'HDB financial services ', 'Senior tellecaller ', '2021-09-21', 10800.00, '2023-09-01', 14000.00, 'Thousand lights ', '1', '1 years 11 months', ' Health issues', 1, '2023-10-24 11:16:53', 0, NULL, 0, NULL, 1),
(6584, 14936, 'xceed corporate Financial Services ', 'telecaller', '2022-11-01', 14000.00, '2023-05-01', 15000.00, 'valluvar kottam ', '1', '0 years 5 months', ' Salary issues ', 1, '2023-10-24 11:29:29', 0, NULL, 0, NULL, 1),
(6585, 14945, 'VBH publishers ', 'Accounts executive ', '2022-05-02', 15000.00, '1970-01-01', 18000.00, 'T nagar ', '2', '1 years 5 months', '  I need to learn more knowledge for accounts ', 1, '2023-10-24 07:55:46', 0, NULL, 0, NULL, 1),
(6586, 14948, 'Deccan IServices Pvt Ltd', 'Financial Processor ', '2015-11-30', 6000.00, '2022-10-31', 18000.00, 'Pallavaram Chennai ', '1', '6 years 11 months', ' Due to some family issues,\nI want to take care of them so resigned', 1, '2023-10-25 11:34:59', 0, NULL, 0, NULL, 1),
(6587, 14959, 'Allset Business solutions ', 'MIS Executive ', '2023-01-27', 15000.00, '2023-11-01', 18000.00, 'Chennai ', '1', '0 years 9 months', ' Project completed ', 1, '2023-10-25 07:09:46', 0, NULL, 0, NULL, 1),
(6588, 14958, 'Matrix business service india Pvt ltd', 'Executive', '2021-09-20', 8500.00, '2023-10-17', 13812.00, 'T.nagar', '1', '2 years 0 months', 'Looking for better opportunities', 1, '2023-10-25 07:11:49', 0, NULL, 0, NULL, 1),
(6589, 14956, 'Poorvika Mobiles Private limited ', 'Sales Executive ', '2021-01-24', 10000.00, '2021-11-13', 18000.00, 'Ekkatuthangal ', '1', '0 years 9 months', ' Want to upgrade my Life To New Challenging Environment.', 1, '2023-10-25 07:25:20', 1, '2023-10-25 07:31:57', 0, NULL, 1),
(6590, 14956, 'NSSO', 'Survey Enumerator ', '2021-02-25', 21000.00, '2021-06-30', 21000.00, 'Nungambakkam ', '1', '0 years 4 months', 'Due To Covid Outbreak It is an Field Job.', 1, '2023-10-25 07:27:11', 1, '2023-10-25 07:31:28', 0, NULL, 1),
(6591, 14956, 'Radiant Cash Management Services Limited ', 'MIS Executive ', '2021-09-27', 12500.00, '2023-07-06', 16500.00, 'Okkiyam Thoraipakkam ', '1', '1 years 9 months', 'Want to Upgrade My life to new Challenging Environment to Grow Professionally And Financially ', 1, '2023-10-25 07:29:24', 1, '2023-10-25 07:31:08', 0, NULL, 1),
(6592, 14965, 'Human Cloud Soft', 'Full stack Dotnet developer', '2022-09-05', 12000.00, '1970-01-01', 12000.00, 'Chennai', '2', '1 years 1 months', ' I\'m Recruited for 1 year 1 month As contract employee. And my contract period is getting over. So I\'m looking for New job.', 1, '2023-10-26 05:07:54', 0, NULL, 0, NULL, 1),
(6593, 14972, 'KLabs ', 'Web developer ', '2023-07-01', 5.00, '2023-10-05', 30000.00, 'Chennai ', '1', '0 years 3 months', ' No leads', 1, '2023-10-26 06:21:46', 0, NULL, 0, NULL, 1),
(6594, 14973, 'ags transact technologies limited', 'service engineer', '2023-06-08', 23600.00, '1970-01-01', 23600.00, 'moolakadi', '2', '0 years 4 months', ' Delay salary more then 30 days ', 1, '2023-10-26 06:39:44', 0, NULL, 0, NULL, 1),
(6595, 14994, 'Unicorn enterprises ', 'Admin executive ', '2015-05-01', 5.00, '2016-07-02', 13000.00, 'Mount road', '1', '1 years 2 months', ' Met with an accident ', 1, '2023-10-26 01:03:44', 0, NULL, 0, NULL, 1),
(6596, 14994, 'Mmc infotech services pvt Ltd', 'Telesales executive', '2017-09-06', 5.00, '2020-02-25', 25000.00, 'Pattinampakkam', '1', '2 years 5 months', 'For career growth ', 1, '2023-10-26 01:05:29', 0, NULL, 0, NULL, 1),
(6597, 14995, 'S P R and co', 'Audit executive ', '2022-11-21', 6000.00, '2023-10-25', 10000.00, 'Nungambakkam ', '1', '0 years 11 months', ' Looking out for better opportunities ', 1, '2023-10-26 01:05:35', 0, NULL, 0, NULL, 1),
(6598, 14994, 'TLC relationship management ', 'Sales associate', '2020-03-01', 10.00, '2022-05-01', 25000.00, 'Thousand lights ', '1', '2 years 2 months', 'Ask me to relocate to Hyderabad but due to my family background I was unable to continue join in Hyderabad.', 1, '2023-10-26 01:09:43', 108, '2023-10-26 06:48:23', 0, NULL, 0),
(6599, 14994, 'TLC relationship management ', 'Sales associate', '2020-03-01', 10.00, '2022-05-01', 25000.00, 'Thousand lights ', '1', '2 years 2 months', 'Ask me to relocate to Hyderabad but due to my family background I was unable to continue join in Hyderabad.', 1, '2023-10-26 01:09:50', 108, '2023-10-26 06:48:27', 0, NULL, 0),
(6600, 14994, 'TLC relationship management ', 'Sales associate', '2020-03-01', 10.00, '2022-05-01', 25000.00, 'Thousand lights ', '1', '2 years 2 months', 'Ask me to relocate to Hyderabad but due to my family background I was unable to continue join in Hyderabad.', 1, '2023-10-26 01:09:59', 0, NULL, 0, NULL, 1),
(6601, 14994, 'TLC relationship management ', 'Sales associate', '2020-03-01', 10.00, '2022-05-01', 25000.00, 'Thousand lights ', '1', '2 years 2 months', 'Ask me to relocate to Hyderabad but due to my family background I was unable to continue join in Hyderabad.', 1, '2023-10-26 01:10:08', 108, '2023-10-26 06:48:14', 0, NULL, 0),
(6602, 14994, 'TLC relationship management ', 'Sales associate', '2020-03-01', 10.00, '2022-05-01', 25000.00, 'Thousand lights ', '1', '2 years 2 months', 'Ask me to relocate to Hyderabad but due to my family background I was unable to continue join in Hyderabad.', 1, '2023-10-26 01:12:02', 108, '2023-10-26 06:48:05', 0, NULL, 0),
(6603, 14997, 'Buzzworks Business Services ', 'Accounts receivable executive ', '2022-08-01', 19000.00, '2023-10-26', 19000.00, 'Thousand lights', '1', '1 years 2 months', 'While I have had a positive experience at my current company, I am seeking a job change due to a shift in my long-term career goals. I have recently acquired new skills and certifications that make me better suited for a role like the one you are offering.', 1, '2023-10-26 01:58:03', 0, NULL, 0, NULL, 1),
(6604, 0, 'Cognizant technology solutions', 'Senior process executive', '2020-03-06', 24000.00, '2023-10-20', 24000.00, 'Chennai', '1', '3 years 7 months', ' As i seeking for better opportunity. I\'m ready to take a new challenge and grow my skills', 1, '2023-10-26 02:01:41', 1, '2023-11-03 04:55:29', 0, NULL, 0),
(6605, 14999, 'Cognizant technology solutions', 'Senior process executive', '2020-03-06', 15000.00, '2023-10-20', 24000.00, 'Chennai', '1', '3 years 7 months', ' As i seeking for better opportunity and grow my skills. ', 1, '2023-10-26 03:18:03', 0, NULL, 0, NULL, 1),
(6606, 15005, 'Na Jayaraman & Co', 'Accounts assistant ', '2020-07-13', 10000.00, '2023-08-20', 18000.00, 'Chennai', '1', '3 years 1 months', 'Relocation from chennai', 1, '2023-10-27 12:24:18', 0, NULL, 0, NULL, 1),
(6607, 15010, 'Jio', 'Sap mm', '2023-08-29', 18000.00, '2023-10-25', 20000.00, 'Chennai ', '1', '0 years 1 months', ' Personal problem ', 1, '2023-10-28 04:28:26', 0, NULL, 0, NULL, 1),
(6608, 15011, 'anamalais toyata ', 'telecalling', '2020-03-11', 16000.00, '2023-02-25', 20000.00, 'dhidundigal', '1', '2 years 11 months', 'relocate to chennai ', 1, '2023-10-28 05:17:46', 108, '2023-10-28 10:48:29', 0, NULL, 1),
(6609, 15007, 'Sun venture', 'Telesales', '2019-11-03', 2019.00, '2023-10-31', 19000.00, 'Periyamet', '1', '3 years 11 months', ' Salary packege is not comfortable. ', 1, '2023-10-28 06:26:14', 0, NULL, 0, NULL, 1),
(6610, 15019, 'Marlotechonology', 'Junior full stack developer', '2023-10-01', 450000.00, '2023-12-01', 450000.00, 'Chennai', '1', '0 years 2 months', ' ', 1, '2023-10-28 06:36:17', 0, NULL, 0, NULL, 1),
(6611, 15019, 'Marlotechonology', 'Junior full stack developer', '2023-10-01', 450000.00, '2023-12-01', 450000.00, 'Chennai omr', '1', '0 years 2 months', 'For my career growth', 1, '2023-10-28 06:37:32', 0, NULL, 0, NULL, 1),
(6612, 15022, 'Maruti Service Masters ', 'Executive ', '2021-01-01', 19000.00, '2022-11-11', 21000.00, 'Delhi', '1', '1 years 10 months', ' Because of shifting of company ', 1, '2023-10-28 06:44:20', 0, NULL, 0, NULL, 1),
(6613, 15024, 'RCS GROUP OF COMPANY ', 'Accountant ', '2020-09-25', 15000.00, '2023-11-15', 20000.00, 'Kanchipuram ', '1', '3 years 1 months', ' Growing my carrier ', 1, '2023-10-28 12:31:40', 0, NULL, 0, NULL, 1),
(6614, 15023, 'GVG & Associates', 'Accountant', '2023-04-13', 17000.00, '1970-01-01', 20000.00, 'Sowcarpet', '2', '0 years 6 months', ' We have No Allowance to Going in Tax office I have use my Money Spend And Salary also lately coming', 1, '2023-10-28 12:53:31', 0, NULL, 0, NULL, 1),
(6615, 15029, 'Neelesh industries Agency Pvt Ltd ', 'Assistant marketing Back office ', '2021-11-01', 224400.00, '2023-07-01', 260580.00, 'Purasaiwalkam ', '1', '1 years 8 months', ' As I Seeking For Better Opportunity. I\'m Ready To Take A New Challenge And Grow My Skills', 1, '2023-10-28 06:01:20', 0, NULL, 0, NULL, 1),
(6616, 15031, 'Nelito system ', 'Online offline support ', '2019-11-07', 11.00, '2021-02-11', 17000.00, 'Chennai', '1', '1 years 3 months', 'Untime shift and the main reason is upskilling from support to  developer ', 1, '2023-10-29 09:43:23', 0, NULL, 0, NULL, 1),
(6617, 15032, 'Aargee staffing and services', 'Sme and mis', '2021-08-10', 13000.00, '1970-01-01', 14000.00, 'Ambattur', '2', '2 years 2 months', ' Process going to windup. So, searching for job. ', 1, '2023-10-29 05:05:03', 0, NULL, 0, NULL, 1),
(6618, 15033, 'ebix cash private ltd', 'mis executive', '2021-04-02', 15000.00, '2023-10-21', 21000.00, 'nandanam', '1', '2 years 6 months', ' Resigned', 1, '2023-10-30 04:21:59', 0, NULL, 0, NULL, 1),
(6619, 15048, 'TEAMULTIMA SERVICES ', 'Non voice', '2023-02-09', 14000.00, '2023-07-03', 15000.00, 'Chethpet', '1', '0 years 4 months', ' ', 1, '2023-10-31 05:16:45', 0, NULL, 0, NULL, 1),
(6620, 15056, 'icic prudentticial', 'financial service manager', '2022-12-31', 285000.00, '2023-10-05', 320000.00, 'nungabakkam', '1', '0 years 9 months', ' father health issue', 1, '2023-10-31 07:17:03', 0, NULL, 0, NULL, 1),
(6621, 15062, 'Bluebase software service private limited ', 'Software developer ', '2023-06-26', 20000.00, '1970-01-01', 22000.00, 'Chennaj', '2', '0 years 4 months', ' Salary issues ', 1, '2023-10-31 09:43:39', 0, NULL, 0, NULL, 1),
(6622, 15063, 'Bluebase software service private limited ', 'Php developer ', '2023-06-26', 20000.00, '2023-11-10', 22000.00, 'Chennai ', '1', '0 years 4 months', ' Salary issue ', 1, '2023-10-31 09:46:40', 0, NULL, 0, NULL, 1),
(6623, 15075, 'Mahindra Rural housing finance limited ', 'Customer manager ', '2021-11-21', 10000.00, '2023-06-30', 13000.00, 'Kumbakonam', '1', '1 years 7 months', ' Personal issues ', 1, '2023-11-01 04:56:41', 0, NULL, 0, NULL, 1),
(6624, 15081, 'novigo integrated solutions', 'AR Caller ', '2019-11-16', 20000.00, '2023-10-30', 23000.00, 'guind', '1', '3 years 11 months', 'salary issues', 108, '2023-11-01 12:24:16', 0, NULL, 0, NULL, 1),
(6625, 15088, 'TVS', 'CRE', '2023-04-05', 17000.00, '2023-09-28', 17000.00, 'Chennai ', '1', '0 years 5 months', ' Incentive issue ', 1, '2023-11-01 07:21:38', 0, NULL, 0, NULL, 1),
(6626, 15089, 'computer age management services', 'executive- operations', '2021-06-02', 1.70, '2023-10-07', 2.00, 'chennai', '1', '2 years 4 months', ' Better Opportunity ', 1, '2023-11-01 05:41:53', 0, NULL, 0, NULL, 1),
(6627, 15101, 'Pikture associates ', 'Junior software developer ', '2023-03-01', 15000.00, '2023-11-01', 15000.00, 'Chennai ', '1', '0 years 8 months', 'Need an update in my career', 1, '2023-11-02 07:47:42', 0, NULL, 0, NULL, 1),
(6628, 15102, 'Selsons software solution ', 'Front end developer ', '2022-08-10', 15000.00, '2023-10-30', 15000.00, 'Chennai ', '1', '1 years 2 months', ' My currently work company not project so they told me to    move on another company', 1, '2023-11-02 07:48:58', 0, NULL, 0, NULL, 1),
(6629, 15101, 'Sunsmart technologies ', 'Junior software developer intern', '2022-12-01', 10000.00, '2023-02-28', 10000.00, 'Chennai ', '1', '0 years 11 months', 'Internship completed', 1, '2023-11-02 07:50:53', 0, NULL, 0, NULL, 1),
(6630, 15064, 'Care health insurance company', 'Senior relationship manager', '2019-10-25', 2.50, '2022-05-18', 420000.00, 'Chennai', '1', '2 years 6 months', 'Career growth', 1, '2023-11-02 08:44:37', 0, NULL, 0, NULL, 1),
(6631, 15064, 'Shri ram life insurance company', 'Assistant team leader', '2022-11-25', 420000.00, '2023-10-31', 420000.00, 'Chennai', '1', '0 years 11 months', 'Timing issues', 1, '2023-11-02 08:46:03', 0, NULL, 0, NULL, 1),
(6632, 15104, 'jayapriya chit funds', 'verification officer', '2023-04-20', 15000.00, '2023-08-02', 15000.00, 'salem', '1', '0 years 3 months', ' Location changed', 1, '2023-11-02 10:07:19', 0, NULL, 0, NULL, 1),
(6633, 15106, 'Precision Infomatics Private Limited', 'MIS Executive', '2022-03-02', 200000.00, '2023-06-20', 300000.00, 'Chennai', '1', '1 years 3 months', ' Better Prospects', 1, '2023-11-02 10:41:47', 0, NULL, 0, NULL, 1),
(6634, 15107, 'Matrix business services india private limited ', 'Executive ', '2022-05-06', 12000.00, '2023-10-31', 14000.00, 'Chennai', '1', '1 years 5 months', ' Career growth and salary ', 1, '2023-11-02 11:40:00', 0, NULL, 0, NULL, 1),
(6635, 15108, 'CMS Info System ', 'Vault MIS ', '2022-12-19', 16000.00, '1970-01-01', 16000.00, 'Chennai T. Nagar', '2', '0 years 10 months', ' They didn\'t provide week offs\nWorking environment is not good\nThere no Work wise  support from senior employees ', 1, '2023-11-02 12:26:50', 0, NULL, 0, NULL, 1),
(6636, 15097, 'Star health allied insurance', 'Deputy officer ', '2020-04-01', 13500.00, '2023-06-30', 16500.00, 'Egmore', '1', '3 years 2 months', ' Salary low', 1, '2023-11-03 02:30:13', 1, '2023-11-03 02:32:48', 0, NULL, 1),
(6637, 15097, 'Cholamandalam business service limited ', 'Deputy Executive ', '2023-07-01', 20000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '0 years 4 months', 'Time management is not comfortable in this company ', 1, '2023-11-03 02:34:24', 0, NULL, 0, NULL, 1),
(6638, 15112, 'Lupin limited', 'Executive', '2018-06-01', 14000.00, '2020-01-31', 19000.00, 'Chennai', '1', '1 years 7 months', ' No hike ', 1, '2023-11-03 04:59:27', 0, NULL, 0, NULL, 1),
(6639, 15112, 'Star health allied insurance', 'Officer', '2021-07-19', 15000.00, '2023-10-13', 19000.00, 'Chennai', '1', '2 years 2 months', 'Salary ', 1, '2023-11-03 05:00:59', 0, NULL, 0, NULL, 1),
(6640, 15114, 'Randstad india private limited', 'Dip executive', '2023-01-02', 16000.00, '2023-10-31', 16000.00, 'Chennai', '1', '0 years 9 months', 'I\'m looking for career growth. ', 1, '2023-11-03 05:33:14', 0, NULL, 0, NULL, 1),
(6641, 15116, 'Sundaram finance', 'Associate', '2022-07-18', 150000.00, '1970-01-01', 150000.00, 'Chennai', '2', '1 years 3 months', ' For Career devolpment', 1, '2023-11-03 06:13:10', 0, NULL, 0, NULL, 1),
(6642, 15120, 'TNQ software private limited ', 'Executive Operations ', '2019-11-18', 220000.00, '2023-03-25', 300000.00, 'chennai', '1', '3 years 4 months', 'I left the job because my skills and aspirations were not aligned with my position. The company is good but my position didn\'t offer me to fully utilise my skills and abilities. Salary package was also one of the reason.', 1, '2023-11-03 06:58:38', 0, NULL, 0, NULL, 1),
(6643, 15120, 'SINTEX BAPL', 'Production Engineer ', '2018-11-02', 200000.00, '2019-08-02', 200000.00, 'Chennai', '1', '0 years 9 months', 'The company was good but my position didn\'t offer to full utilise my skills and abilities.', 1, '2023-11-03 07:01:54', 0, NULL, 0, NULL, 1),
(6644, 15122, 'Jio fiber sales', 'Home sales officer ', '2022-09-26', 18500.00, '2023-05-05', 18500.00, 'Chennai ', '1', '0 years 7 months', ' I have had an bike accident that\'s y I relieving from this job', 1, '2023-11-03 09:06:10', 0, NULL, 0, NULL, 1),
(6645, 15105, 'Insoorya Express Cargo ', 'Hyundai Inplant Executive ', '2022-07-25', 20000.00, '2023-06-13', 20000.00, 'Chennai ', '1', '0 years 10 months', ' I Recently met with an accident ', 1, '2023-11-03 09:06:19', 0, NULL, 0, NULL, 1),
(6646, 15123, 'Freeze business solutions ', 'HR recruiter ', '2023-06-03', 15.00, '1970-01-01', 15.00, 'Vadapalani', '2', '0 years 5 months', 'In previous company I don\'t have ESI pF\nAnd I Want to work reputed company ', 1, '2023-11-03 09:32:47', 0, NULL, 0, NULL, 1),
(6647, 15127, 'The Sevvel Healthcare ', 'Caller ', '2022-10-17', 12000.00, '2023-10-30', 15000.00, 'Chennai ', '1', '1 years 0 months', ' No benefit and health issues and 12hrs working time', 1, '2023-11-03 01:41:25', 0, NULL, 0, NULL, 1),
(6648, 15126, 'TCS', 'Senior process associate ', '2019-07-19', 24000.00, '2023-12-15', 24000.00, 'Siruseri ', '1', '4 years 4 months', ' Project got ram down.', 1, '2023-11-03 03:08:40', 0, NULL, 0, NULL, 1),
(6649, 15143, 'MUTHOOT', 'junoir relationship manager', '2023-01-01', 19750.00, '2023-09-22', 19750.00, 'OLD WAharmenpet', '1', '', 'work pressure', 104, '2023-11-04 01:05:12', 0, NULL, 0, NULL, 1),
(6650, 15144, 'matrimony', 'telecalling', '2021-11-01', 15000.00, '2022-12-30', 15000.00, 'chennai', '1', '0', 'pregnancy', 104, '2023-11-04 01:08:35', 0, NULL, 0, NULL, 1),
(6651, 15141, 'Tibos', 'telecaller', '2020-12-01', 12000.00, '2022-02-28', 12000.00, 'vadapalani', '1', '0', 'Health issue', 104, '2023-11-04 01:21:45', 0, NULL, 0, NULL, 1),
(6652, 15147, 'jindal x', 'Customer Support', '2022-03-10', 15000.00, '2023-10-22', 18000.00, 'chennai', '1', '0', 'Process Shutdown', 85, '2023-11-04 06:10:22', 0, NULL, 0, NULL, 1),
(6653, 15145, 'Royal Sundaram General Insurance ', 'Back End Office Executive ', '2021-02-04', 18000.00, '2024-11-01', 18000.00, 'Karapakkam ', '1', '3 years 8 months', 'Less Salary ', 1, '2023-11-05 04:59:21', 0, NULL, 0, NULL, 1),
(6654, 15150, 'Divya ', 'Sale\'s excute ', '2022-10-17', 1.11, '2023-05-30', 23000.00, 'Chennai ', '1', '0 years 7 months', ' Family problems ', 1, '2023-11-05 05:30:18', 0, NULL, 0, NULL, 1),
(6655, 15150, 'Divya ', 'Sale\'s excute ', '2022-10-17', 17000.00, '2023-05-30', 23000.00, 'Chennai ', '1', '0 years 7 months', 'Family problems ', 1, '2023-11-05 05:31:45', 0, NULL, 0, NULL, 1),
(6656, 15151, 'Lootah ', 'Estimated ', '2022-01-26', 45000.00, '1970-01-01', 45000.00, 'Dubai Ajman', '2', '1 years 9 months', ' ', 1, '2023-11-05 07:25:00', 0, NULL, 0, NULL, 1),
(6657, 15154, 'Vidal health insurance', 'CRM EXECUTIVE', '2020-12-10', 20499.00, '2023-10-16', 246000.00, 'Chennai', '1', '2 years 10 months', ' Career growth', 1, '2023-11-06 05:30:55', 0, NULL, 0, NULL, 1),
(6658, 15153, 'HDB FINANCIAL SERVICES ', 'Tele caller ', '2021-08-24', 10500.00, '2023-08-31', 12000.00, 'Thousand Light ', '1', '2 years 0 months', 'I\'m going to getting married ', 1, '2023-11-06 05:46:18', 0, NULL, 0, NULL, 1),
(6659, 15161, 'Plada infotech service private limited', 'Phone Banking Officer', '2022-09-27', 18000.00, '2023-07-31', 22000.00, 'Ambattur', '1', '0 years 10 months', ' Health issues', 1, '2023-11-06 06:53:23', 0, NULL, 0, NULL, 1),
(6660, 15155, 'Target ', 'telesales ', '2020-12-01', 8000.00, '2023-11-06', 15000.00, 'T nagar ', '1', '2 years 11 months', ' I will want to stady so i will resind my job\n', 1, '2023-11-06 06:58:40', 0, NULL, 0, NULL, 1),
(6661, 15155, 'Target', 'T nagar ', '2020-12-01', 8000.00, '2022-11-30', 15000.00, 'T nagar ', '1', '1 years 11 months', 'I will want stady so will relived my jod', 1, '2023-11-06 07:02:54', 0, NULL, 0, NULL, 1),
(6662, 15155, 'Target ', 'Telesales', '2020-12-01', 10000.00, '2022-11-30', 15000.00, 'T nagar ', '1', '1 years 11 months', 'I will want to stady so will relived my job', 1, '2023-11-06 07:10:53', 0, NULL, 0, NULL, 1),
(6663, 15165, 'Home credit india Finance pvt ltd', 'Salae Executive ', '2021-08-01', 30000.00, '2023-11-01', 30090.00, 'Bommanahalli', '1', '2 years 3 months', ' Helth issue so left job sir', 1, '2023-11-06 07:15:34', 0, NULL, 0, NULL, 1),
(6664, 15163, 'Human Cloud soft', 'Dotnet developer ', '2022-10-05', 12000.00, '1970-01-01', 12000.00, 'Chennai ', '2', '1 years 1 months', ' Contract period is getting over.', 1, '2023-11-06 07:21:32', 0, NULL, 0, NULL, 1),
(6665, 15169, 'Gowebez', 'Web development ', '2023-02-01', 5000.00, '2023-07-08', 5000.00, 'Chennai ', '1', '0 years 7 months', ' Web development course training ', 1, '2023-11-06 08:17:55', 0, NULL, 0, NULL, 1),
(6666, 15169, 'Sdrop solution private limited ', 'Junior web developer ', '2018-03-07', 3000.00, '2018-09-04', 3000.00, 'Pondicherry ', '1', '0 years 5 months', 'Junior Web Developer ', 1, '2023-11-06 08:21:55', 0, NULL, 0, NULL, 1),
(6667, 15174, 'TANMIX COMPANY ', 'Accounts executive ', '2022-11-06', 12500.00, '2023-08-03', 14000.00, 'Dindigul', '1', '0 years 8 months', ' Career growth', 1, '2023-11-06 11:07:22', 0, NULL, 0, NULL, 1),
(6668, 15175, 'Club Oxygen holiday resorts ', 'Telecalling executive ', '2023-05-01', 15000.00, '2023-11-06', 15000.00, 'Mount road, Chennai.', '1', '0 years 6 months', ' I want to come back to my native place.', 1, '2023-11-06 02:09:33', 0, NULL, 0, NULL, 1),
(6669, 15180, 'L&T Pvt limited ', 'Relationship Manager ', '2020-04-01', 1.00, '2023-08-22', 32.00, 'Bangalore ', '1', '3 years 4 months', ' My complete process has been shifted to Hyderabad they said me to relocate so I have resigned my job ', 1, '2023-11-07 06:40:22', 0, NULL, 0, NULL, 1),
(6670, 15181, 'Plada info tech services Pvt Ltd ', 'Customer service executive ', '2022-05-16', 16000.00, '1970-01-01', 19000.00, 'Ambattur ', '2', '1 years 5 months', ' Due to health issues ', 1, '2023-11-07 07:07:03', 0, NULL, 0, NULL, 1),
(6671, 15111, 'byjus', 'business development executive', '2023-04-19', 18000.00, '2023-07-15', 18000.00, 'alwarpet', '1', '0 years 2 months', ' salary delay', 1, '2023-11-07 09:50:12', 0, NULL, 0, NULL, 1),
(6672, 15111, 'industrial rubber company', 'telemarketing', '2021-08-04', 12000.00, '2022-09-15', 15000.00, 'trichy', '1', '1 years 1 months', 'salary increment ', 1, '2023-11-07 09:52:41', 0, NULL, 0, NULL, 1),
(6673, 15185, 'Casagrand builder private limited', 'Telemarketing executive ', '2022-12-09', 22000.00, '1970-01-01', 22000.00, 'Chennai ', '2', '0 years 10 months', ' no career growth', 1, '2023-11-07 02:44:41', 0, NULL, 0, NULL, 1),
(6674, 15187, 'HDFC Bank ', 'Relationship manager ', '2023-04-19', 17333.00, '2023-10-20', 16000.00, 'South end circle ', '1', '0 years 6 months', 'Branch shifted from jaynagar to hebal ', 1, '2023-11-08 06:26:01', 0, NULL, 0, NULL, 1),
(6675, 15189, 'The Belstead Hotel ', 'Front Office ', '2023-07-20', 15000.00, '2023-10-03', 15000.00, 'Chennai ', '1', '0 years 2 months', ' Salary ', 1, '2023-11-08 06:45:10', 0, NULL, 0, NULL, 1),
(6676, 15191, 'Sulekha.com New media Private Limited', 'Business development executive ', '2023-05-11', 22000.00, '2023-10-03', 22000.00, 'Taramani', '1', '0 years 4 months', ' It was very far from my place. Have experience of 4.5yrs', 1, '2023-11-08 08:53:41', 0, NULL, 0, NULL, 1),
(6677, 15191, 'Peppery.com franchise studio', 'Store sales and Management ', '2022-08-01', 20000.00, '2023-02-01', 22000.00, 'Annanagar', '1', '0 years 6 months', 'I was having some medical issue so was unable to continue and was in break for 3months.', 1, '2023-11-08 08:56:15', 0, NULL, 0, NULL, 1),
(6678, 15193, 'Tech Mahindra ', 'Customer support associate ', '2018-12-05', 9500.00, '2019-09-03', 9500.00, 'Ambattur ', '1', '0 years 8 months', 'Due to automation process going to end and salary is not enough to support my family ', 1, '2023-11-08 01:19:57', 1, '2023-11-08 01:38:01', 0, NULL, 1),
(6679, 15193, 'CMA CGM ', 'Documentation officer ', '2020-01-04', 12500.00, '2022-04-12', 16235.00, 'Ambattur ', '1', '2 years 3 months', 'Due to personal family land issues went to native to resolve and protect our property from the Locals and built fence.', 1, '2023-11-08 01:28:09', 1, '2023-11-08 01:36:03', 0, NULL, 1),
(6680, 15193, 'Sutherland Global Services Pvt Ltd ', 'Customer support associate ', '2022-06-06', 27917.00, '2023-04-02', 28072.00, 'Perungalathur ', '1', '0 years 9 months', 'There is no job security.\n', 1, '2023-11-08 01:33:18', 0, NULL, 0, NULL, 1),
(6681, 15200, 'HDB Financial Services ', 'Senior tellecalling officer ', '2020-11-06', 30.00, '2023-03-10', 12000.00, 'Chennai', '1', '2 years 4 months', '  medical issues ', 1, '2023-11-09 07:31:22', 0, NULL, 0, NULL, 1),
(6682, 15201, 'Venba Tech', 'HR & Admin', '2023-09-01', 20000.00, '1970-01-01', 20000.00, 'Mylapore', '2', '0 years 2 months', ' Distance', 1, '2023-11-09 08:17:06', 0, NULL, 0, NULL, 1),
(6683, 15203, 'Hymark', 'Telecalling', '2023-07-27', 15000.00, '2023-11-08', 11000.00, 'Chennai ', '1', '0 years 3 months', ' Salary issue', 1, '2023-11-09 09:43:44', 0, NULL, 0, NULL, 1),
(6684, 15206, 'Synergyrevo', 'Customer representative service ', '2023-09-15', 13500.00, '2023-11-09', 13500.00, 'Velachery ', '1', '0 years 1 months', ' Not interested to work this company ', 1, '2023-11-10 04:21:29', 0, NULL, 0, NULL, 1),
(6685, 15207, 'Nobroker', 'Telesales executive', '2022-02-11', 25000.00, '2023-04-30', 27000.00, 'Kaikondrahalli', '1', '1 years 2 months', ' Land dispute in native and I had to be in native for a long time to sort it out', 1, '2023-11-10 05:27:36', 0, NULL, 0, NULL, 1),
(6686, 15210, 'Eximio services and solutions private limited ', 'Mis Lead', '2019-11-01', 13800.00, '2023-11-07', 28000.00, 'Chennai', '1', '4 years 0 months', ' Office closed situation and then salary Issue', 1, '2023-11-10 10:00:26', 0, NULL, 0, NULL, 1),
(6687, 15210, 'Aagna global solutions private limited ', 'MIS Executive ', '2014-10-01', 10000.00, '2019-10-31', 13800.00, 'Chennai', '1', '5 years 0 months', 'Office closed', 1, '2023-11-10 10:02:47', 0, NULL, 0, NULL, 1),
(6688, 15211, 'Lalithaa jewellery mart private limited kumbakonam', 'Tele operator ', '2018-08-01', 10000.00, '2023-10-01', 16500.00, 'Kumbakonam ', '1', '5 years 2 months', 'Knowing of skill and salary not enough', 1, '2023-11-10 11:48:27', 0, NULL, 0, NULL, 1),
(6689, 15212, 'Wheels India limited ', 'Mis executive ', '2022-07-04', 15000.00, '1970-01-01', 17000.00, 'Chennai ', '2', '1 years 4 months', ' For career growth and also for salary hike', 1, '2023-11-11 05:22:22', 1, '2023-11-11 05:22:55', 0, NULL, 1),
(6690, 15205, 'Olx autos', 'Relationship Manager ', '2022-07-04', 3.30, '1970-01-01', 3.30, 'Chennai ', '2', '1 years 4 months', ' Looking for better carrier growth', 1, '2023-11-11 06:06:58', 0, NULL, 0, NULL, 1),
(6691, 15213, 'Fhpl TPA ', 'Customer relationship management senior executive ', '2022-08-18', 21000.00, '1970-01-01', 23000.00, 'Chennai ', '2', '1 years 2 months', ' For growth ', 1, '2023-11-11 08:50:28', 0, NULL, 0, NULL, 1),
(6692, 15214, 'Buzzwork advance human capital ', 'Sales executive ', '2022-10-21', 21.00, '2023-09-03', 25000.00, 'Chennai ', '1', '0 years 10 months', ' ', 1, '2023-11-13 06:16:28', 0, NULL, 0, NULL, 1),
(6693, 15215, 'max textile', 'cre trainee', '2023-10-10', 11000.00, '1970-01-01', 11000.00, 'pallavaram', '2', '0 years 1 months', ' work pressure', 1, '2023-11-13 07:27:08', 0, NULL, 0, NULL, 1),
(6694, 15220, 'Cameo corporate service Ltd ', 'According excuvtive ', '2021-04-01', 20000.00, '1970-01-01', 23000.00, 'Chennai', '2', '2 years 7 months', ' Family Background ', 1, '2023-11-14 07:33:10', 0, NULL, 0, NULL, 1),
(6695, 15223, 'shopping zone india pvt.ltd', 'sales ex. complaint dt. verification', '2017-08-01', 13000.00, '2020-09-01', 15000.00, 'chennai', '1', '3 years 1 months', ' Personal Reasons', 1, '2023-11-14 01:21:53', 0, NULL, 0, NULL, 1),
(6696, 15224, 'Indiafilings private limited ', 'Accountant ', '2022-06-16', 15000.00, '2023-10-12', 26000.00, 'Chetpet', '1', '1 years 3 months', ' For career growth ', 1, '2023-11-14 01:25:24', 0, NULL, 0, NULL, 1),
(6697, 15225, 'Jai marketing ', 'Management ', '2020-06-10', 10000.00, '2023-10-30', 15000.00, 'Thanjavur ', '1', '3 years 4 months', ' Improve for myself ', 1, '2023-11-14 01:42:06', 0, NULL, 0, NULL, 1),
(6698, 15227, 'Ant solution ', 'Data entry ', '2020-07-17', 80000.00, '2021-04-01', 80000.00, 'Thanjavur ', '1', '0 years 8 months', ' ', 1, '2023-11-15 03:51:23', 0, NULL, 0, NULL, 1),
(6699, 15228, 'Shiksha financial services indian private limited ', 'Sales executive ', '2022-07-25', 17500.00, '2023-12-05', 19300.00, 'Thiruvottiyur chennai ', '1', '1 years 4 months', ' Our branch closed ', 1, '2023-11-15 04:51:49', 0, NULL, 0, NULL, 1),
(6700, 15229, 'Pradee queen holiday resorts Pvt Ltd ', 'Accounts assistant ', '2022-03-02', 25000.00, '2023-09-10', 25000.00, 'T.nagar - globus', '1', '1 years 6 months', ' For marriage ', 1, '2023-11-15 05:00:29', 0, NULL, 0, NULL, 1),
(6701, 15230, 'A check Global solution Pvt ltd', 'Executive ', '2022-10-03', 280000.00, '2023-09-29', 280000.00, 'Perungudi', '1', '0 years 11 months', ' Career Growth ', 1, '2023-11-15 05:39:58', 0, NULL, 0, NULL, 1),
(6702, 15230, 'Nagarajan construction company ', 'Supervisor ', '2021-09-03', 16500.00, '2022-06-05', 16500.00, 'Nerkundram', '1', '0 years 9 months', 'Health issues ', 1, '2023-11-15 05:42:56', 0, NULL, 0, NULL, 1),
(6703, 15230, 'Gnanamani Engineering works', 'Supervisor ', '2020-01-02', 15000.00, '2021-06-29', 15000.00, 'Cuddalore ', '1', '1 years 5 months', 'Contract closed ', 1, '2023-11-15 05:44:33', 0, NULL, 0, NULL, 1),
(6704, 15235, 'Star health insurance ', 'Domastic voice process ', '2023-03-04', 14000.00, '2023-05-26', 5000.00, 'Nandanam', '1', '0 years 2 months', ' Because my mom had an operation for kidney dialysis so I have to take care of her for atleast 6 months said by the doctors ', 1, '2023-11-15 07:10:00', 0, NULL, 0, NULL, 1),
(6705, 15234, 'Justdial Pvt Ltd ', 'Bpo Tamil ', '2022-05-28', 18000.00, '2022-10-31', 100.00, 'Little Mount', '1', '0 years 5 months', 'My daddy helth problem so I can\'t able to continue my job for the past 8 months', 1, '2023-11-15 07:13:15', 0, NULL, 0, NULL, 1),
(6706, 15236, '3point human Pvt Ltd. ', 'Sales ', '2023-02-01', 18000.00, '2023-10-01', 18000.00, 'Vridhachalam ', '1', '0 years 8 months', ' Family issue ', 1, '2023-11-15 07:59:07', 0, NULL, 0, NULL, 1),
(6707, 15237, 'Sriram life insurance', 'Sales executive', '2022-03-20', 16000.00, '2023-05-31', 16000.00, 'Kodambakkam', '1', '1 years 2 months', ' ', 1, '2023-11-15 08:13:32', 0, NULL, 0, NULL, 1),
(6708, 15247, 'Hdfc bank limited', 'Sale\'s officer ', '2023-02-15', 17000.00, '2023-07-10', 7000.00, 'Spencer plaza ', '1', '0 years 4 months', 'Office changing ', 1, '2023-11-16 12:40:40', 0, NULL, 0, NULL, 1),
(6709, 15251, 'No Broker', 'Relationship manager', '2023-02-01', 20000.00, '2023-08-31', 20000.00, 'banglore', '1', '0 years 6 months', ' Based on health reason', 1, '2023-11-17 04:57:49', 0, NULL, 0, NULL, 1),
(6710, 15254, 'Radiant cash management services ', 'Mis executive ', '2022-09-08', 13500.00, '2023-11-06', 13500.00, 'Thuraipakkam', '1', '1 years 1 months', ' For career growth ', 1, '2023-11-17 06:22:39', 0, NULL, 0, NULL, 1),
(6711, 15256, 'Yes bank plada infotech pvt ltd', 'Phone banking officer', '2023-01-18', 23700.00, '2023-06-30', 23700.00, 'Chennai', '1', '0 years 5 months', ' Rotation shift', 1, '2023-11-17 09:04:07', 0, NULL, 0, NULL, 1),
(6712, 15256, 'Fullerton India credit ltd', 'Customer relationship officer', '2021-07-30', 21000.00, '2022-11-11', 21000.00, 'Chennai', '1', '1 years 3 months', 'Salary was not enough', 1, '2023-11-17 09:06:22', 0, NULL, 0, NULL, 1),
(6713, 15256, 'Fullerton India credit ltd', 'Customer relationship officer', '2018-01-26', 17500.00, '2019-08-19', 17500.00, 'Chennai', '1', '1 years 6 months', 'Relocate to North native place', 1, '2023-11-17 09:09:06', 0, NULL, 0, NULL, 1),
(6714, 15256, 'Cams canara hsbc life insurance', 'Customer support ', '2015-05-05', 14300.00, '2019-01-05', 14300.00, 'Chennai', '1', '3 years 8 months', 'Office shifted to long distance', 1, '2023-11-17 09:11:13', 0, NULL, 0, NULL, 1),
(6715, 15256, 'Hi style retail ', 'Supervisor', '2012-02-09', 12700.00, '2015-04-09', 12700.00, 'Chennai', '1', '3 years 2 months', 'Transferred to Long distance branch ', 1, '2023-11-17 09:13:54', 0, NULL, 0, NULL, 1),
(6716, 15257, 'Byjus', 'Team leader ', '2021-06-13', 700000.00, '2023-11-14', 998000.00, 'Bhubaneswar ', '1', '2 years 5 months', ' Relocation repeatedly ', 1, '2023-11-17 09:42:30', 0, NULL, 0, NULL, 1),
(6717, 15260, 'Radiant cash management services', 'Chennai', '2022-09-12', 175000.00, '1970-01-01', 175000.00, 'Thoraipakkam', '2', '1 years 2 months', ' ', 1, '2023-11-18 05:38:31', 0, NULL, 0, NULL, 1),
(6718, 15261, 'Ampa orthodontics pvt ltd', 'Senior relationship manager ', '2021-09-16', 39500.00, '2023-10-13', 39500.00, 'Bangalore', '1', '2 years 0 months', ' Company operations moving to Mumbai location ', 1, '2023-11-18 05:51:42', 0, NULL, 0, NULL, 1),
(6719, 15264, 'Globiva pvt Ltd ', 'Field executive ', '2020-11-08', 15000.00, '2021-11-06', 180000.00, 'Chennai ', '1', '0 years 11 months', ' There is no career growth ', 1, '2023-11-18 06:43:11', 0, NULL, 0, NULL, 1),
(6720, 15263, 'Collman Services ', 'Tellecalling ', '2022-05-09', 16000.00, '2023-06-30', 20000.00, 'Annanagar ', '1', '1 years 1 months', ' Health issue ', 1, '2023-11-18 06:47:35', 0, NULL, 0, NULL, 1),
(6721, 15262, 'Collman ', 'Telecaller ', '2022-05-09', 16000.00, '2023-05-31', 20000.00, 'Anna Nagar ', '1', '1 years 0 months', ' Health issues ', 1, '2023-11-18 06:55:23', 0, NULL, 0, NULL, 1),
(6722, 15266, 'Reliable data Services ', 'Account opening ', '2022-11-24', 14000.00, '2023-10-16', 14000.00, 'Nandhanam ', '1', '0 years 10 months', ' ', 1, '2023-11-18 07:11:57', 0, NULL, 0, NULL, 1),
(6723, 15268, 'Reliable Data entry', 'Account opening process', '2023-01-26', 15000.00, '2023-11-15', 15000.00, 'Nandhanam', '1', '0 years 9 months', ' Salary issue', 1, '2023-11-18 07:18:52', 0, NULL, 0, NULL, 1),
(6724, 15269, 'Reliable data entry private limited ', 'Data entry', '2022-06-18', 14000.00, '2023-06-07', 14000.00, 'Chennaj', '1', '0 years 11 months', ' Family issues ', 1, '2023-11-18 07:20:56', 0, NULL, 0, NULL, 1),
(6725, 15272, 'Star health insurance ', 'Telecaller ', '2023-05-19', 16000.00, '2023-10-31', 16000.00, 'Vadapalani ', '1', '0 years 5 months', ' Family Problems ', 1, '2023-11-19 11:43:42', 0, NULL, 0, NULL, 1),
(6726, 15274, 'Hdfc bank ', 'Customer relationship officer ', '2023-03-08', 15000.00, '2023-07-07', 15000.00, 'Chennai ', '1', '0 years 3 months', ' For my career growth ', 1, '2023-11-20 04:06:39', 0, NULL, 0, NULL, 1),
(6727, 15277, 'IP Rings pvt Ltd', 'SAP Data Entry', '2020-06-09', 12000.00, '2023-07-15', 15000.00, 'Chennai ', '1', '3 years 1 months', 'I\'m completed my Contract,so I relieved', 1, '2023-11-20 05:32:28', 0, NULL, 0, NULL, 1),
(6728, 15278, 'Sethi automotive agencies ', 'Tally operator', '2023-04-04', 15000.00, '1970-01-01', 18000.00, 'G.p road , chennai', '2', '0 years 7 months', ' I want to explore more in financial department to gain my skills , learnings ,etc\nAnd also want to achieve financially\n\n', 1, '2023-11-20 05:46:03', 0, NULL, 0, NULL, 1),
(6729, 15279, 'FITA ACADEMY ', 'Tele consultant ', '2022-04-11', 14000.00, '1970-01-01', 18000.00, 'Pallikaranai', '2', '1 years 7 months', ' Looking for new work experience with good salary package ', 1, '2023-11-20 06:17:28', 0, NULL, 0, NULL, 1),
(6730, 15286, 'General engineering and service', 'Sales and service head', '2021-09-21', 10000.00, '2023-11-24', 18000.00, 'Chennai', '1', '2 years 2 months', ' ', 1, '2023-11-20 08:42:18', 0, NULL, 0, NULL, 1),
(6731, 15286, 'Folks co', 'Customer relationship manager', '2020-01-10', 12000.00, '2021-01-28', 15000.00, 'Chennai', '1', '1 years 0 months', 'Company closed', 1, '2023-11-20 08:44:50', 0, NULL, 0, NULL, 1),
(6732, 15288, 'Muthoot Finance ', 'Junior customer Relationship Executive', '2022-08-01', 16250.00, '2023-09-30', 16250.00, 'Musiri ', '1', '1 years 1 months', ' Bike Accident ', 1, '2023-11-20 09:18:59', 0, NULL, 0, NULL, 1),
(6733, 15288, 'Sakthi Knitting pvt limited ', 'Laboratory Supvisor ', '2019-11-01', 15000.00, '2022-07-30', 15000.00, 'Erode ', '1', '2 years 8 months', 'Native place ', 1, '2023-11-20 09:21:27', 0, NULL, 0, NULL, 1),
(6734, 15289, 'Kothari distributors', 'Sales', '2023-07-13', 20000.00, '2023-11-13', 20000.00, 'Gandhi nagar', '1', '0 years 4 months', ' Grandpa Expired', 1, '2023-11-20 09:38:39', 1, '2023-11-20 09:39:16', 0, NULL, 1),
(6735, 15291, 'Omega health care', 'Ar caller ', '2021-05-17', 22000.00, '2022-03-02', 22000.00, 'trichy', '1', '0 years 9 months', ' Night shift only', 1, '2023-11-20 01:20:39', 0, NULL, 0, NULL, 1),
(6736, 15298, 'credit mantri finsereve pvt ltd', 'credit Relationship officer', '2022-11-03', 22500.00, '2023-11-07', 22500.00, 'thousand lights', '1', '1 years 0 months', ' To improve my career opportunities', 1, '2023-11-21 05:42:08', 0, NULL, 0, NULL, 1),
(6737, 15294, 'credit mantri ', 'credit relationship officer', '2022-11-07', 21500.00, '2023-11-07', 21500.00, 'thousand light ', '1', '1 years 0 months', ' Too gain good skills and my career growth', 1, '2023-11-21 05:42:36', 0, NULL, 0, NULL, 1),
(6738, 15295, 'ajrt coporate pvt ltd', 'associate', '2023-06-26', 240000.00, '2023-11-02', 240000.00, 'tnagar', '1', '0 years 4 months', 'Not suit', 1, '2023-11-21 05:44:45', 0, NULL, 0, NULL, 1),
(6739, 15298, 'deu hui trading ', 'customer relationship officer', '2021-10-04', 35000.00, '1970-01-01', 35000.00, 'dubai', '2', '2 years 1 months', 'Back to chennai', 1, '2023-11-21 05:49:06', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6740, 15294, 'alphentrix golbal service ', 'customer support associate', '2022-05-02', 18000.00, '2023-10-06', 18000.00, 'kodambakkam', '1', '1 years 5 months', 'i joined as a six month trainee only', 1, '2023-11-21 05:50:01', 0, NULL, 0, NULL, 1),
(6741, 15299, 'Fin cover ', 'Telecalling ', '2023-02-22', 15000.00, '2023-11-18', 15000.00, 'Vadapalani ', '1', '0 years 8 months', ' Long distance ', 1, '2023-11-21 06:24:40', 0, NULL, 0, NULL, 1),
(6742, 15301, 'Telecaler', 'Telecaller ', '2023-02-01', 15000.00, '2023-11-01', 15000.00, 'Chennai ', '1', '0 years 9 months', ' Travel issue ', 1, '2023-11-21 06:31:53', 0, NULL, 0, NULL, 1),
(6743, 15302, 'Indian oil corporation limited', 'Junior accountant ', '2019-11-18', 15840.00, '2021-01-04', 15840.00, 'Chennai', '1', '1 years 1 months', ' Training over', 1, '2023-11-21 06:33:21', 0, NULL, 0, NULL, 1),
(6744, 15302, 'Indian oil corporation limited ', 'Junior accountant', '2021-09-01', 20000.00, '2021-12-31', 20000.00, 'Royapuram', '1', '0 years 3 months', 'Personal reason ', 1, '2023-11-21 06:34:28', 0, NULL, 0, NULL, 1),
(6745, 15303, 'Teleperformance', 'MIS Executive ', '2019-10-10', 210024.00, '2023-09-30', 221616.00, 'Ambattur', '1', '3 years 11 months', 'Less Salary', 1, '2023-11-21 06:42:13', 0, NULL, 0, NULL, 1),
(6746, 15296, 'Matrimony.com', 'Relationship manager ', '2022-10-06', 1.00, '2023-10-02', 22900.00, 'Adyar', '1', '0 years 11 months', ' ', 1, '2023-11-21 06:59:26', 0, NULL, 0, NULL, 1),
(6747, 15304, 'Matrix business pvt Ltd ', 'Executive ', '2022-04-06', 9500.00, '2023-09-15', 10500.00, 'T nagar', '1', '1 years 5 months', ' Career growth ', 1, '2023-11-21 09:35:21', 0, NULL, 0, NULL, 1),
(6748, 15305, 'Wells Fargo international solutions Pvt Ltd', 'Associate operations processor', '2021-03-01', 24000.00, '2022-05-30', 30000.00, 'Chennai', '1', '1 years 2 months', ' ', 1, '2023-11-21 12:39:58', 0, NULL, 0, NULL, 1),
(6749, 15306, 'Teleperformance Global Services Pvt Ltd ', 'Customer service Associate ', '2021-07-16', 11000.00, '2023-04-14', 12500.00, 'Ambattur, chennai ', '1', '1 years 8 months', ' Process shutdown ', 1, '2023-11-21 01:06:35', 0, NULL, 0, NULL, 1),
(6750, 15308, 'Data Tracks', 'Financial Analyst', '2023-11-06', 185000.00, '1970-01-01', 227000.00, 'Chennai', '2', '0 years 0 months', ' To Explore in Mutual fund related domain and to Improve my career in this field', 1, '2023-11-22 05:33:27', 0, NULL, 0, NULL, 1),
(6751, 15309, 'CAMS', 'Executive ', '2019-12-19', 9000.00, '1970-01-01', 200000.00, 'Chennai( Anna salai)', '2', '3 years 11 months', 'I have learned a lot in my current organisation. But, I want to switch jobs because I want to take up more challenges and responsibilities to enhance my skills and broaden my knowledge.', 1, '2023-11-22 05:52:01', 0, NULL, 0, NULL, 1),
(6752, 15310, ' Excel technologies ', 'Quality analyst ', '2022-05-05', 15000.00, '2023-08-30', 15000.00, 'Chennai', '1', '1 years 3 months', ' Doesn\'t wanted to be in a comfort zone & wanted to explore new opportunities ', 1, '2023-11-22 05:54:08', 0, NULL, 0, NULL, 1),
(6753, 15310, 'Arun excello ', 'Accountant ', '2021-01-04', 11500.00, '2022-03-31', 11000.00, 'Chennai', '1', '1 years 2 months', 'Had a need to move for another company ', 1, '2023-11-22 05:56:05', 0, NULL, 0, NULL, 1),
(6754, 15312, 'Cmots internet technologies pvt Ltd ', 'Data analysis and mis executive ', '2020-02-14', 5.00, '2023-07-17', 20000.00, 'Mylapore ', '1', '3 years 5 months', ' They didn\'t give proper hike ', 1, '2023-11-22 06:25:45', 0, NULL, 0, NULL, 1),
(6755, 15315, 'Hundai private limited ', 'Technician ', '2023-06-26', 18000.00, '2023-10-04', 18000.00, 'Ekkatutangal', '1', '0 years 3 months', ' Domain not interested ', 1, '2023-11-22 07:52:30', 0, NULL, 0, NULL, 1),
(6756, 15313, 'Hundai', 'Representative corordinater', '2022-08-05', 18000.00, '2023-10-01', 18000.00, 'Ikkaduthangal', '1', '1 years 1 months', ' Intrested to work in it', 1, '2023-11-22 07:55:11', 0, NULL, 0, NULL, 1),
(6757, 15316, 'Spencer retail ', 'Assistant manager ', '2022-05-17', 32500.00, '2023-10-04', 34600.00, 'Chennai ', '1', '1 years 4 months', ' Company shut down ', 1, '2023-11-22 07:58:19', 0, NULL, 0, NULL, 1),
(6758, 15319, 'Matrimony. Com ', 'Senior Retail Executive ', '2023-06-07', 18000.00, '2023-11-18', 18000.00, 'Chrompet ', '1', '0 years 5 months', ' ', 1, '2023-11-23 04:39:12', 0, NULL, 0, NULL, 1),
(6759, 15319, 'Market of 1', 'Telesales Executive ', '2022-12-21', 15000.00, '2024-05-31', 15000.00, 'Guindy ', '1', '1 years 5 months', 'Salary issue ', 1, '2023-11-23 04:41:47', 0, NULL, 0, NULL, 1),
(6760, 15319, 'Capital credit solutions ', 'Talecaller ', '2022-05-05', 12000.00, '2022-12-14', 12000.00, 'MMDA ', '1', '0 years 7 months', 'Salary issue ', 1, '2023-11-23 04:43:21', 0, NULL, 0, NULL, 1),
(6761, 15321, 'Success gyan india Llp ', 'Assistant Manager accounts ', '2015-09-02', 18500.00, '2023-07-31', 60000.00, 'Tnagar ', '1', '7 years 10 months', 'Personal carrier growth and improve my skills', 1, '2023-11-23 05:58:44', 0, NULL, 0, NULL, 1),
(6762, 15323, 'cams', 'executive', '2021-11-01', 15000.00, '1970-01-01', 19000.00, 'anna salai', '2', '2 years 0 months', ' career growth', 1, '2023-11-23 05:59:50', 0, NULL, 0, NULL, 1),
(6763, 15324, 'dignity enterprises pvt ltd', 'process associate', '2022-08-22', 9000.00, '2023-11-23', 11000.00, 'amjikarai', '2', '1 years 3 months', ' salary issue', 1, '2023-11-23 06:06:36', 0, NULL, 0, NULL, 1),
(6764, 15322, 'Infinity Doctors education council', 'Data analyst', '2022-06-08', 18000.00, '2023-11-10', 20000.00, 'Vadapalani', '1', '1 years 5 months', ' work is not there in Daily so i relieving this Work.', 1, '2023-11-23 06:10:37', 0, NULL, 0, NULL, 1),
(6765, 15325, 'Mobius365 Data services pvt ltd', 'Senior process associate', '2020-12-01', 10000.00, '2022-10-30', 16000.00, 'Coimbatore', '1', '1 years 10 months', ' Some family issues', 1, '2023-11-23 06:19:22', 0, NULL, 0, NULL, 1),
(6766, 15328, 'Riley Infra Solutions Pvt Ltd ', 'Admin ', '2023-08-01', 20000.00, '2023-10-31', 2000.00, 'Channai ', '1', '0 years 2 months', 'Travelling not interested ', 1, '2023-11-23 07:43:13', 0, NULL, 0, NULL, 1),
(6767, 15330, 'Big basket ', 'Team leader ', '2013-05-01', 15000.00, '2019-08-07', 25000.00, 'Chennai puzhal', '1', '6 years 3 months', ' Business dream', 1, '2023-11-23 08:04:15', 0, NULL, 0, NULL, 1),
(6768, 15329, 'farms.io', 'business analyst', '2022-04-04', 30000.00, '2023-08-09', 30000.00, 'chennai', '1', '1 years 4 months', ' career growth', 1, '2023-11-23 08:10:42', 0, NULL, 0, NULL, 1),
(6769, 13591, 'Royal sundaram general insurance company ', 'Telecaller ', '2022-07-18', 24000.00, '1970-01-01', 24000.00, 'Nungambakkam ', '2', '1 years 4 months', ' Carrier growth and income', 1, '2023-11-23 11:01:15', 0, NULL, 0, NULL, 1),
(6770, 15331, 'Ace Financial Solutions ', 'Accounts & Audit Assistant ', '2023-06-01', 12000.00, '1970-01-01', 14000.00, 'Triplicane, Chennai ', '2', '0 years 5 months', ' For experience in corporate ', 1, '2023-11-23 12:23:42', 0, NULL, 0, NULL, 1),
(6771, 15333, 'Allsec Technologies pvt ltd ', 'MIS executive ', '2021-02-01', 18000.00, '2023-09-30', 20000.00, 'Velachery ', '1', '2 years 7 months', ' Better opportunities ', 1, '2023-11-24 04:43:51', 0, NULL, 0, NULL, 1),
(6772, 15334, 'Rampup Techno solutions pvt Ltd ', 'Junior Data Analyst ', '2022-06-10', 25000.00, '2023-09-30', 25000.00, 'Porur ', '1', '1 years 3 months', ' ', 1, '2023-11-24 06:06:08', 0, NULL, 0, NULL, 1),
(6773, 15337, 'Olympus secure process India limited (HDFC Bank)', 'Mail room clerk ', '2019-07-11', 11000.00, '2020-02-08', 11500.00, 'Chennai ', '1', '0 years 6 months', 'To study pg degree ', 1, '2023-11-24 06:26:28', 0, NULL, 0, NULL, 1),
(6774, 15337, 'One Stop logistics solutions ', 'Accounts, customer service executive ', '2023-01-09', 15000.00, '2023-06-05', 15000.00, 'Ambattur, chennai', '1', '0 years 4 months', 'Office location is too long from to my house', 1, '2023-11-24 06:28:25', 0, NULL, 0, NULL, 1),
(6775, 15338, 'Teleperformance ', 'Relationship Manager ', '2023-05-03', 20000.00, '2023-11-06', 20000.00, 'Ambattur ', '1', '0 years 6 months', ' Working place is too far from my place and willing to learn more about Mutual funds ', 1, '2023-11-24 06:34:53', 0, NULL, 0, NULL, 1),
(6776, 15340, 'Sun business solutions ', 'Email support,Mis executive ', '2021-01-23', 8200.00, '2023-04-10', 12000.00, 'Kottivakkam', '1', '2 years 2 months', ' ', 1, '2023-11-24 09:25:50', 0, NULL, 0, NULL, 1),
(6777, 15349, 'Zenmed solutions pvt Ltd', 'Data Analyst', '2023-02-15', 22000.00, '1970-01-01', 22000.00, 'Chennai', '2', '0 years 9 months', ' My career Growth ', 1, '2023-11-25 05:21:45', 0, NULL, 0, NULL, 1),
(6778, 15348, 'Infosys Ltd ', 'Senior system associate ', '2020-12-21', 230000.00, '2023-12-19', 300000.00, 'Remote', '1', '2 years 11 months', ' Career change ', 1, '2023-11-25 05:37:29', 0, NULL, 0, NULL, 1),
(6779, 15350, 'Jayapriya chit funds pvt lmt ', 'Mis account executive ', '2021-02-01', 14500.00, '2023-02-28', 15500.00, 'Neyveli ', '1', '2 years 0 months', ' After spending two years with my last company, I’m ready to take on a new challenge and grow my skills. I’m excited to learn something new,', 1, '2023-11-25 05:44:42', 0, NULL, 0, NULL, 1),
(6780, 15351, 'Polyhose India private limited ', 'NPD  quality incharge ', '2023-11-25', 13500.00, '2023-12-05', 18000.00, 'Chennai ', '1', '0 years 0 months', ' ', 1, '2023-11-25 05:51:11', 0, NULL, 0, NULL, 1),
(6781, 15352, 'Just dial ', 'Telemarketing executive ', '2022-08-10', 15000.00, '2023-04-10', 21000.00, 'Saidapet', '1', '0 years 8 months', 'Timing', 1, '2023-11-25 06:22:31', 0, NULL, 0, NULL, 1),
(6782, 15355, 'Suriya Associate Auditor office', 'MIS Executive', '2020-09-01', 1.00, '2021-11-20', 1.00, 'Chennai', '1', '1 years 2 months', ' ', 1, '2023-11-25 06:49:12', 0, NULL, 0, NULL, 1),
(6783, 15356, 'Initiative Media pvt ltd ', 'Executive Data', '2023-04-10', 27000.00, '2023-12-08', 27000.00, 'Bangalore ', '1', '0 years 7 months', 'They ask to relocate the location that\'s the reason ', 1, '2023-11-25 06:50:49', 0, NULL, 0, NULL, 1),
(6784, 15355, 'Star Health Insurance', 'Verification Officer', '2022-02-16', 15000.00, '2023-02-23', 15000.00, 'Chennai', '1', '1 years 0 months', 'Career growth', 1, '2023-11-25 06:57:19', 1, '2023-11-25 07:01:51', 0, NULL, 1),
(6785, 15357, 'catbus infolabs pvt ltd', 'Operations Executive ', '2022-06-03', 24992.00, '2023-09-25', 24992.00, 'chennai', '1', '1 years 3 months', ' office closed due to Financial issue ', 1, '2023-11-25 07:00:58', 0, NULL, 0, NULL, 1),
(6786, 15359, 'Pk associates', 'Accounts assistant', '2019-12-22', 7000.00, '2023-09-12', 12000.00, 'Ashok nagar', '1', '3 years 8 months', ' ', 1, '2023-11-25 07:28:28', 0, NULL, 0, NULL, 1),
(6787, 15360, 'Skill worth technologies pvt ltd ', 'Operation executive', '2022-11-25', 23500.00, '2023-05-29', 23500.00, 'Chennai ', '1', '0 years 6 months', ' No growth in job', 1, '2023-11-25 07:40:37', 0, NULL, 0, NULL, 1),
(6788, 15360, 'TVS CREDIT service ltd ', 'Central operation executive ', '2020-02-25', 18000.00, '2022-04-25', 18000.00, 'Chennai ', '1', '2 years 2 months', 'Change in nature of job', 1, '2023-11-25 07:43:38', 0, NULL, 0, NULL, 1),
(6789, 15363, 'Hewlett Packard enterprise ', 'Junior process associate ', '2023-01-10', 16000.00, '2023-10-31', 16000.00, 'Chennai ', '1', '0 years 9 months', ' Contract date is to be end it', 1, '2023-11-25 09:20:58', 0, NULL, 0, NULL, 1),
(6790, 15366, 'Imarque Solutions ', 'Mis executive ', '2023-01-13', 20000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '0 years 10 months', ' Personal growth and learning ', 1, '2023-11-25 10:15:46', 0, NULL, 0, NULL, 1),
(6791, 15280, 'Hearing Solution ', 'Sales Executive', '2021-11-04', 28000.00, '2021-11-30', 28000.00, 'Bangalore', '1', '0 years 0 months', 'Career Growth', 60, '2023-11-25 06:07:06', 0, NULL, 0, NULL, 1),
(6792, 15367, 'Project Soft Global Pvt Ltd', 'Web Assisstant', '2019-03-04', 20000.00, '2023-11-25', 180000.00, 'Mylapore', '1', '4 years 8 months', ' Career Change to a New industry', 1, '2023-11-25 02:10:36', 0, NULL, 0, NULL, 1),
(6793, 15371, 'Ztech10r sys pvt ltd ', 'Junior Java Developer ', '2022-07-02', 1.80, '1970-01-01', 2.80, 'Guduvanchery ', '2', '1 years 4 months', ' Completion of projects.  ', 1, '2023-11-27 04:34:18', 0, NULL, 0, NULL, 1),
(6794, 15375, 'Tropical Breweries Pvt Ltd ', 'Accounts Executive ', '2023-07-15', 25000.00, '2023-11-30', 25000.00, 'Nungambakkam, Chennai ', '1', '0 years 4 months', ' ', 1, '2023-11-27 05:27:00', 0, NULL, 0, NULL, 1),
(6795, 15379, 'Sutherland global services ', 'CS internet ', '2018-12-10', 15000.00, '2019-11-01', 17000.00, 'Chennai ', '1', '0 years 10 months', ' Personal Reasons ', 1, '2023-11-27 05:48:22', 0, NULL, 0, NULL, 1),
(6796, 15377, 'altrust techolongie ', 'voice process ', '2023-03-11', 13000.00, '2023-10-12', 13000.00, 'mount road ', '1', '0 years 7 months', ' Distance ', 1, '2023-11-27 05:48:22', 0, NULL, 0, NULL, 1),
(6797, 15380, 'altrust', 'voice proceaa', '2023-04-01', 13000.00, '2023-10-05', 14000.00, 'mount road', '1', '0 years 6 months', ' Salary hike ', 1, '2023-11-27 05:57:03', 0, NULL, 0, NULL, 1),
(6798, 15383, 'Fita academy ', 'Career advisor ', '2022-08-19', 1.80, '2023-01-01', 1.80, 'Chennai', '1', '0 years 4 months', 'For Career growth ', 1, '2023-11-27 07:25:45', 0, NULL, 0, NULL, 1),
(6799, 15386, 'Fullerton ', 'Sr telecalling executive ', '2023-03-20', 28858.00, '2023-11-20', 28858.00, 'Chennai ', '1', '0 years 8 months', ' Because of timing issues', 1, '2023-11-27 11:52:22', 0, NULL, 0, NULL, 1),
(6800, 15391, 'Sri Krishna Tax Consultant Pvt Ltd ', 'Accounts executive ', '2019-01-15', 15000.00, '2023-10-31', 20000.00, 'Broadway ', '1', '4 years 9 months', ' ', 1, '2023-11-28 04:50:32', 0, NULL, 0, NULL, 1),
(6801, 15393, 'Hanatech solutions ', 'Software Engineer ', '2023-01-02', 29000.00, '2023-11-22', 29000.00, 'Banglore ', '1', '0 years 10 months', ' Shifted to Chennai for family situation ', 1, '2023-11-28 04:53:46', 0, NULL, 0, NULL, 1),
(6802, 14810, 'Logixhealth Solutions pvt Ltd', 'Junior Specialist ', '2021-08-23', 12218.00, '2023-02-24', 18000.00, 'Coimbatore', '1', '1 years 6 months', ' ', 1, '2023-11-28 06:13:55', 0, NULL, 0, NULL, 1),
(6803, 15401, 'Powerlink', 'Junior engineer ', '2022-07-01', 18000.00, '1970-01-01', 18000.00, 'Anna nagar', '2', '1 years 4 months', 'Career change ', 1, '2023-11-28 06:26:08', 0, NULL, 0, NULL, 1),
(6804, 15403, 'tekksol global ', 'assistant accounts manager', '2022-12-19', 2023.00, '2023-11-24', 37000.00, 'karapakkam', '1', '0 years 11 months', ' Company moving to another district', 1, '2023-11-28 07:54:31', 0, NULL, 0, NULL, 1),
(6805, 10547, 'Kotak Life Insurance ', 'CSM', '2021-04-29', 22000.00, '2023-12-08', 25000.00, 'Chennai ', '1', '2 years 7 months', 'Looking for better carrer prospects and compensation ', 1, '2023-11-28 08:18:52', 0, NULL, 0, NULL, 1),
(6806, 10547, 'Hicare service Private Limited ', 'Territory Sales Manager ', '2019-10-07', 30000.00, '2021-02-22', 32000.00, 'Chennai', '1', '1 years 4 months', 'Looking job in operations domain', 1, '2023-11-28 08:21:17', 0, NULL, 0, NULL, 1),
(6807, 15404, 'Pixstone Images pvt ltd ', 'Data co-ordinator ', '2022-10-17', 10000.00, '2023-11-25', 20000.00, 'Chennai ', '1', '1 years 1 months', ' In order to enhance my skills set.I am looking for better opportunity.', 1, '2023-11-28 08:57:12', 0, NULL, 0, NULL, 1),
(6808, 15405, 'Pixstone Image pvt ltd', 'MIS EXECUTIVE', '2022-04-18', 18500.00, '2023-11-25', 18500.00, 'Thoraipakkam', '1', '1 years 7 months', ' Career Growth , Interest to learn New things.', 1, '2023-11-28 09:15:57', 0, NULL, 0, NULL, 1),
(6809, 15407, 'altenerg pvt ltd', 'operations analyst', '2021-12-06', 1.00, '1970-01-01', 1.00, 'chennai', '2', '1 years 11 months', ' To upgarde myself', 1, '2023-11-28 09:58:48', 0, NULL, 0, NULL, 1),
(6810, 15406, 'Symrise private limited (sVKS audit firm)', 'Finance junior ', '2023-02-04', 12000.00, '1970-01-01', 15000.00, 'Seemanchary OMR', '2', '0 years 9 months', ' Better opportunity, growth.', 1, '2023-11-28 10:02:37', 0, NULL, 0, NULL, 1),
(6811, 15408, 'Auditor office ', 'Audit Assistant ', '2020-12-24', 10000.00, '2022-08-31', 15000.00, 'Kanchipuram ', '1', '1 years 8 months', ' ', 1, '2023-11-28 11:41:31', 0, NULL, 0, NULL, 1),
(6812, 15408, 'Integra Global Solutions ', 'Process Associate ', '2023-04-05', 21800.00, '2023-09-30', 21810.00, 'Teynampet, Chennai ', '1', '0 years 5 months', 'Our team is in H.O coimbatore so in Chennai branch am only there for UK accounting team, they didn\'t teach anything so that I relieved', 1, '2023-11-28 11:43:55', 0, NULL, 0, NULL, 1),
(6813, 15344, 'Pharmaspectra informatics pvt ltd', 'Data research specialist ', '2022-02-16', 180000.00, '2022-08-01', 180000.00, 'Chennai ', '1', '0 years 5 months', ' ', 1, '2023-11-29 05:20:43', 0, NULL, 0, NULL, 1),
(6814, 15344, 'IQVIA ', 'Medical data reviewer ', '2022-08-01', 200000.00, '1970-01-01', 200000.00, 'Chennai ', '2', '1 years 3 months', 'None', 1, '2023-11-29 05:21:34', 0, NULL, 0, NULL, 1),
(6815, 15423, 'SRI LAKSHMI AUTO AGENCIES INDIA PRIVATE LIMITED', 'Accountant', '2022-11-02', 16000.00, '2023-06-07', 16000.00, 'Chennai', '1', '0 years 7 months', ' For studies', 1, '2023-11-29 06:22:35', 0, NULL, 0, NULL, 1),
(6816, 15429, 'Fangs Technology pvt ltd ', 'MIS Executive ', '2023-02-01', 19000.00, '1970-01-01', 23000.00, 'Chetpet', '2', '0 years 9 months', ' Future Growth', 1, '2023-11-29 06:54:59', 0, NULL, 0, NULL, 1),
(6817, 15417, 'Mailam India private limited ', 'Sales management ', '2023-03-20', 15000.00, '2023-06-19', 20000.00, 'Pondicherry ', '1', '0 years 2 months', 'Low income', 1, '2023-11-29 07:13:38', 0, NULL, 0, NULL, 1),
(6818, 15431, 'blindmatrix', 'data migration analyst', '2022-01-05', 13000.00, '1970-01-01', 20000.00, 'chennai', '2', '1 years 10 months', 'I am trying to Next level', 1, '2023-11-29 07:16:08', 0, NULL, 0, NULL, 1),
(6819, 15434, 'Star health insurance ', 'Senior telecaller executive ', '2021-01-30', 15000.00, '2023-11-29', 17500.00, 'Nandhanam ', '2', '2 years 9 months', ' ', 1, '2023-11-29 09:28:31', 0, NULL, 0, NULL, 1),
(6820, 15435, 'Renault nissan', 'Executive ', '2022-05-04', 14000.00, '2023-05-31', 14000.00, 'Trichy', '1', '1 years 0 months', ' Salary ', 1, '2023-11-30 05:10:34', 0, NULL, 0, NULL, 1),
(6821, 15437, 'Venkateswara Electrical Industries pvt Ltd ', 'Account Executive ', '2023-04-03', 9200.00, '2023-12-01', 11500.00, 'Porur', '1', '0 years 7 months', ' Change of work location from porur to padapai', 1, '2023-11-30 05:30:32', 0, NULL, 0, NULL, 1),
(6822, 15438, 'Sarf communication private limited', 'Accounts executive', '2022-03-10', 13000.00, '2023-09-22', 15000.00, 'Chennai', '1', '1 years 6 months', ' Career development ', 1, '2023-11-30 05:49:32', 0, NULL, 0, NULL, 1),
(6823, 15445, 'Cams ', 'Assistant Processing Officer ', '2021-08-26', 10000.00, '2023-06-30', 13500.00, 'Mount Road ', '1', '1 years 10 months', 'For Career Growth. Skill development ', 1, '2023-11-30 07:27:41', 0, NULL, 0, NULL, 1),
(6824, 15446, 'CAMS', 'Senior processing officer', '2019-12-16', 10000.00, '2023-08-03', 14500.00, 'Chennai', '1', '3 years 7 months', 'Gaining new skill and knowledge ', 1, '2023-11-30 07:28:42', 0, NULL, 0, NULL, 1),
(6825, 15477, 'Bank bazaar ', 'Customer relationship officer ', '2021-10-29', 15000.00, '2022-11-30', 22000.00, 'Chennai', '1', '1 years 1 months', ' Looking for new opportunities ', 1, '2023-12-01 06:01:52', 0, NULL, 0, NULL, 1),
(6826, 15477, 'Anib Services India Pvt Ltd', 'Customer relationship officer ', '2023-01-03', 25000.00, '2023-10-06', 25000.00, 'Chennai', '1', '0 years 9 months', 'Medical condition ', 1, '2023-12-01 06:03:06', 0, NULL, 0, NULL, 1),
(6827, 15458, 'Star Health Insurance ', 'Customer care Executive ', '2021-04-26', 14000.00, '2023-07-27', 17000.00, 'Royapettah', '1', '2 years 3 months', ' I want to enhance myself in a reputed company.', 1, '2023-12-01 06:30:33', 0, NULL, 0, NULL, 1),
(6828, 15478, 'Codium solution and service llp', 'Web developer ', '2022-08-01', 20000.00, '1970-01-01', 20000.00, 'Chennai', '2', '1 years 4 months', ' Salary delay', 1, '2023-12-01 07:00:48', 0, NULL, 0, NULL, 1),
(6829, 15486, 'tcs', 'support analysts ', '2018-10-09', 190000.00, '1970-01-01', 330000.00, 'chennai ', '2', '5 years 1 months', ' i want to take more opportunities ', 1, '2023-12-01 08:58:14', 0, NULL, 0, NULL, 1),
(6830, 15489, 'Dhyan Networks and Technologies Pvt Ltd ', 'Software Engineer Trainee Intern ', '2023-01-09', 15000.00, '2023-10-31', 15000.00, 'Chennai ', '2', '0 years 9 months', ' Internship ', 1, '2023-12-01 09:37:42', 1, '2023-12-01 09:38:28', 0, NULL, 1),
(6831, 15491, 'Fourez media ventures pvt ltd', 'Software developer', '2021-08-17', 14000.00, '2023-07-27', 20000.00, 'Chennai', '1', '1 years 11 months', ' Because of my father sickness I left the job', 1, '2023-12-01 10:29:29', 0, NULL, 0, NULL, 1),
(6832, 15495, 'ippopay technology private limited', 'team leadee', '2021-11-11', 307020.00, '2023-09-30', 307020.00, 'guindy', '1', '1 years 10 months', ' Career and salary growth', 1, '2023-12-01 11:38:16', 0, NULL, 0, NULL, 1),
(6833, 15496, 'Ippopay technology private limited ', 'Document verification ', '2022-07-14', 20000.00, '2023-11-30', 20000.00, 'Guindy', '1', '1 years 4 months', ' Career growth ', 1, '2023-12-01 11:43:40', 0, NULL, 0, NULL, 1),
(6834, 15500, 'san media pvt ltd', 'executive client relation', '2022-06-28', 21050.00, '1970-01-01', 22550.00, 'chennai nadhanam', '2', '1 years 5 months', ' ', 1, '2023-12-01 04:00:46', 0, NULL, 0, NULL, 1),
(6835, 15506, 'Nettyfish solutions ', 'Operations support specialist', '2023-06-01', 1.00, '1970-01-01', 312000.00, 'Chennai ', '2', '0 years 6 months', ' Carrier growth ', 1, '2023-12-02 06:22:29', 0, NULL, 0, NULL, 1),
(6836, 15514, 'ING vyshya life insurance company ', 'Insurance advisor ', '2013-05-25', 10000.00, '2014-05-24', 14000.00, 'Lic', '1', '0 years 11 months', ' Till valid I was worked ', 1, '2023-12-02 10:17:23', 0, NULL, 0, NULL, 1),
(6837, 15515, 'Hdfc', 'Dm', '2021-12-02', 33000.00, '2023-09-27', 33000.00, 'Vadapalani ', '1', '1 years 9 months', ' Salary issue', 1, '2023-12-02 10:39:49', 0, NULL, 0, NULL, 1),
(6838, 15517, 'Club Mahindra Holidays ', 'Coustomer support ', '2021-01-29', 17.00, '2023-08-03', 20.00, 'Chennai', '1', '2 years 6 months', ' ', 1, '2023-12-02 01:31:28', 0, NULL, 0, NULL, 1),
(6839, 15520, 'Varma Medical', 'Sales', '2023-04-01', 15000.00, '2023-11-30', 15000.00, 'Thanjavur', '1', '0 years 7 months', ' terminator in our company\n', 1, '2023-12-02 01:45:28', 0, NULL, 0, NULL, 1),
(6840, 15516, 'Aagna Global Solution Pvt Ltd ', 'Sami voice ', '2017-04-01', 10000.00, '2017-10-31', 10000.00, 'Chennai ', '1', '0 years 6 months', ' No transport in night shift ', 1, '2023-12-02 01:45:47', 0, NULL, 0, NULL, 1),
(6841, 15516, 'Ntt data', 'General accounting ', '2019-07-01', 15000.00, '2021-01-31', 15000.00, 'Chennai ', '1', '1 years 6 months', 'No increments ', 1, '2023-12-02 01:47:36', 0, NULL, 0, NULL, 1),
(6842, 15516, 'Apolis (RJT compusolution pvt ltd ', 'Account receivable ', '2022-05-01', 20000.00, '2022-11-30', 20000.00, 'Chennai ', '1', '0 years 6 months', 'Project end ', 1, '2023-12-02 01:49:23', 0, NULL, 0, NULL, 1),
(6843, 15524, 'Matrimony. Com', 'Senior Relationship Manager', '2021-11-18', 28000.00, '2023-11-30', 28000.00, 'Adayar', '1', '2 years 0 months', ' No Appraisal and carrier growth', 1, '2023-12-07 04:33:18', 1, '2023-12-07 04:35:26', 0, NULL, 1),
(6844, 15524, 'First source solutions pvt ltd', 'Associate Pre purchase reviewer', '2020-08-31', 23000.00, '2021-10-01', 23000.00, 'Navalur', '1', '1 years 1 months', 'Accident', 1, '2023-12-07 04:35:01', 0, NULL, 0, NULL, 1),
(6845, 15524, 'Ezswype Business Solutions pvt ltd', 'Sales and service coordinator', '2019-09-01', 19000.00, '2020-08-30', 19000.00, 'Olympia Guindy', '1', '0 years 11 months', 'Covid ', 1, '2023-12-07 04:38:19', 0, NULL, 0, NULL, 1),
(6846, 15524, 'Consul neowatt power solutions pvt ltd', 'Sales and service coordinator', '2018-06-01', 16000.00, '2019-09-30', 16000.00, 'Perungudi', '1', '1 years 3 months', 'Company acquired by some other ', 1, '2023-12-07 04:39:38', 0, NULL, 0, NULL, 1),
(6847, 15525, 'Cashlink global system pvT Ltd ', 'Software engineer ', '2022-12-01', 16000.00, '2023-06-12', 17000.00, 'Egmore ', '1', '0 years 6 months', ' Personal issues ', 1, '2023-12-07 05:23:39', 0, NULL, 0, NULL, 1),
(6848, 15526, 'Convergys India Pvt ltd', 'Customer Service Executive ', '2011-06-15', 17000.00, '2013-12-07', 21000.00, 'Gurgaon', '1', '2 years 5 months', ' For betterment', 1, '2023-12-07 05:49:58', 0, NULL, 0, NULL, 1),
(6849, 15526, 'Secured system resources', 'Sr Technical sales executive', '2014-01-09', 25000.00, '2018-09-29', 35000.00, 'Delhi', '1', '4 years 8 months', 'Process ram down', 1, '2023-12-07 05:52:04', 0, NULL, 0, NULL, 1),
(6850, 15526, 'Reliable BPO Solutions', 'Team leader', '2018-10-12', 37000.00, '2021-05-31', 46000.00, 'New delhi', '1', '2 years 7 months', 'Had to relocate to chennai', 1, '2023-12-07 05:53:41', 0, NULL, 0, NULL, 1),
(6851, 15526, 'Star health insurance ', 'Telecaller', '2021-07-19', 18000.00, '2021-12-29', 18000.00, 'Arumbakkam', '1', '0 years 5 months', 'Got better opportunity ', 1, '2023-12-07 05:54:44', 0, NULL, 0, NULL, 1),
(6852, 15526, 'Kun capital finserv IMF Pvt ltd', 'Team leader', '2021-12-21', 25000.00, '2023-04-17', 35000.00, 'Perungudi', '1', '1 years 3 months', 'Distance and delay in incentives', 1, '2023-12-07 05:56:27', 0, NULL, 0, NULL, 1),
(6853, 15526, 'Shree mutual funds and services', 'Team leader', '2023-06-12', 38000.00, '1970-01-01', 38000.00, 'Guindy', '2', '0 years 5 months', 'Start up company and no good leads.', 1, '2023-12-07 05:57:29', 0, NULL, 0, NULL, 1),
(6854, 15528, 'computer age management service ', 'senior executive customer support', '2022-02-03', 13800.00, '2023-09-25', 16000.00, 'mount road anna salai', '1', '1 years 7 months', ' Due to my last semester examination and salary issue.', 1, '2023-12-07 06:11:32', 0, NULL, 0, NULL, 1),
(6855, 15529, 'Computer age management services', 'Senior executive customer support', '2022-09-15', 12000.00, '2023-09-15', 15000.00, 'Mount road Anna salai', '1', '1 years 0 months', ' Due to salary issue', 1, '2023-12-07 06:17:52', 0, NULL, 0, NULL, 1),
(6856, 15532, 'Wai insurance broking ', 'Executive ', '2022-12-12', 12.00, '2023-11-17', 20000.00, 'Nandanam', '1', '0 years 11 months', ' For career growth', 1, '2023-12-07 08:05:40', 0, NULL, 0, NULL, 1),
(6857, 15519, 'integrated service point pvt ltd', 'accounts executive', '2023-04-19', 13500.00, '2023-11-26', 16000.00, 'mount road', '1', '0 years 7 months', ' no benefits pf esi', 1, '2023-12-07 09:41:37', 0, NULL, 0, NULL, 1),
(6858, 15533, 'Bharat matrimony ', 'Executive ', '2022-03-04', 5.00, '2023-12-01', 17500.00, 'Chennai', '1', '1 years 9 months', ' For better growth ', 1, '2023-12-07 10:37:29', 0, NULL, 0, NULL, 1),
(6859, 15538, 'Aargee staffing solutions ', 'Senior associate ', '2021-04-28', 190000.00, '2023-11-15', 230000.00, 'Chennai', '1', '2 years 6 months', ' Project has been ramdown on coming April ', 1, '2023-12-08 04:40:39', 0, NULL, 0, NULL, 1),
(6860, 15541, 'Esaf small finance bank', 'Gold loan officer', '2022-11-20', 12.00, '1970-01-01', 22.00, 'Thanjavur', '2', '1 years 0 months', ' Personal issue', 1, '2023-12-08 05:31:16', 0, NULL, 0, NULL, 1),
(6861, 15544, 'hdb financial Services ', 'senior teller executive', '2022-08-01', 10000.00, '2023-04-01', 12000.00, 'thousand lights', '1', '0 years 8 months', 'Not Create Opportunities and Not set role', 1, '2023-12-08 06:05:48', 0, NULL, 0, NULL, 1),
(6862, 15546, 'Icici', 'Telecalling', '2021-12-05', 13500.00, '2023-11-25', 13500.00, 'Ayanavaram', '1', '2 years 0 months', ' No increment change to another company ', 1, '2023-12-08 08:29:00', 0, NULL, 0, NULL, 1),
(6863, 15547, 'Krish associates ', 'Accountant ', '2023-07-10', 240000.00, '2024-01-05', 240000.00, 'Kodambakkam', '1', '0 years 4 months', ' Long distance ', 1, '2023-12-08 11:30:20', 0, NULL, 0, NULL, 1),
(6864, 15549, 'Finnbud financial services ', 'Senior Associate ', '2022-06-15', 19500.00, '2023-08-15', 20000.00, 'CHENNAI', '1', '1 years 2 months', ' ', 1, '2023-12-08 11:32:29', 0, NULL, 0, NULL, 1),
(6865, 15548, 'Rubbion skill development pvt', 'Institutional business ', '2023-04-14', 8000.00, '2023-06-15', 8000.00, 'Work from home ', '1', '0 years 2 months', ' Contract', 1, '2023-12-09 04:48:26', 0, NULL, 0, NULL, 1),
(6866, 15551, 'Parihara Consultant', 'Telesales', '2016-11-20', 10000.00, '2018-07-31', 10000.00, 'Chikmangalur', '1', '1 years 8 months', 'It was part time', 104, '2023-12-09 10:42:18', 0, NULL, 0, NULL, 1),
(6867, 15551, 'Home credit', 'Sales specialist', '2019-01-21', 240000.00, '2020-06-09', 240000.00, 'Bangalore', '1', '1 years 4 months', 'Corona issues', 104, '2023-12-09 10:44:13', 0, NULL, 0, NULL, 1),
(6868, 15551, 'Shaddi.com', 'Senior Product Advisor', '2021-02-11', 19000.00, '2022-06-15', 19500.00, 'Bangalore', '1', '1 years 4 months', 'Management has changed', 104, '2023-12-09 10:46:07', 0, NULL, 0, NULL, 1),
(6869, 15551, 'Eternia digital sollutions', 'marketing team lead', '2023-02-14', 25000.00, '2023-11-09', 25000.00, 'cochi', '1', '0 years 8 months', 'Salary issues delaying', 104, '2023-12-09 10:47:35', 0, NULL, 0, NULL, 1),
(6870, 15557, 'Alturist technologies private limited ', 'Business associate ', '2020-02-21', 14000.00, '2023-06-27', 14000.00, 'Chennai ', '1', '3 years 4 months', ' Career growth', 1, '2023-12-09 08:00:04', 0, NULL, 0, NULL, 1),
(6871, 15558, 'Access Healthcare', 'Medical Billing Executive ', '2013-12-16', 9500.00, '2015-12-04', 11000.00, 'Ambattur', '1', '1 years 11 months', ' Night Shift.', 1, '2023-12-09 07:30:09', 0, NULL, 0, NULL, 1),
(6872, 15558, 'Saicle one solutions pvt ltd', 'AR Executive', '2016-05-02', 15000.00, '2017-09-08', 16000.00, 'Chennai', '1', '1 years 4 months', 'Process moved to night shift.', 1, '2023-12-09 07:32:52', 0, NULL, 0, NULL, 1),
(6873, 15559, 'Sai ram Associate ', 'Telecalling ', '2022-09-09', 15000.00, '1970-01-01', 18000.00, 'Anna nagar', '2', '1 years 3 months', ' Salary date issue ', 1, '2023-12-09 09:19:36', 0, NULL, 0, NULL, 1),
(6874, 15561, 'Autotronics services pvt Ltd ', 'Accountant ', '2022-12-11', 20000.00, '2023-05-13', 20000.00, 'Bangalore ', '1', '0 years 5 months', 'After marriage I shifted chennai so ', 1, '2023-12-10 12:51:20', 0, NULL, 0, NULL, 1),
(6875, 2269, 'CamsRep insurance repository service limited', 'Processing officer', '2021-08-09', 13.50, '1970-01-01', 19.50, 'Mount road', '2', '2 years 4 months', ' I\'m looking Carrier growth. ', 1, '2023-12-10 01:07:10', 0, NULL, 0, NULL, 1),
(6876, 15565, 'Just dial', 'Telemarketing ', '2021-12-11', 18000.00, '2022-12-11', 18000.00, 'Chennai ', '1', '1 years 0 months', ' Shift', 1, '2023-12-11 05:15:42', 0, NULL, 0, NULL, 1),
(6877, 15565, 'Vijay Raja group', 'Senior sales executive ', '2022-11-12', 22000.00, '2023-09-11', 22000.00, 'Chennai', '1', '0 years 9 months', 'Health', 1, '2023-12-11 05:17:01', 0, NULL, 0, NULL, 1),
(6878, 15570, 'policy bazaar insurance brokers pvt ltd ', 'financial advisor ', '2021-12-21', 380000.00, '2023-10-02', 480000.00, 'bangalore ', '1', '1 years 9 months', ' Growth ', 1, '2023-12-11 06:20:08', 0, NULL, 0, NULL, 1),
(6879, 15579, 'Izone Hr solutions ', 'Admin ', '2022-07-19', 14900.00, '2023-10-31', 14900.00, 'Anna salai', '1', '1 years 3 months', 'Contractor periods was over that why I leave My job', 1, '2023-12-11 06:31:32', 0, NULL, 0, NULL, 1),
(6880, 15582, 'Trdfin services support ', 'Process associate ', '2023-04-11', 16000.00, '2023-11-02', 16000.00, 'Mylapore ', '1', '0 years 6 months', ' ', 1, '2023-12-11 07:13:07', 0, NULL, 0, NULL, 1),
(6881, 15583, 'NielsenIq ', 'Data processing an Analyst ', '2021-08-11', 360000.00, '2023-07-28', 390000.00, 'chennai', '1', '1 years 11 months', ' Health issues ', 1, '2023-12-11 07:16:28', 0, NULL, 0, NULL, 1),
(6882, 15584, 'Avasoft PVT LTD ', 'Software Engineer ', '2021-12-21', 350000.00, '2023-05-04', 500000.00, 'Chennai', '1', '1 years 4 months', ' ', 1, '2023-12-11 07:17:05', 0, NULL, 0, NULL, 1),
(6883, 15585, 'medlern india pvt ltd', 'area sales manager', '2022-04-01', 61596.00, '1970-01-01', 61596.00, 'chennai', '2', '1 years 8 months', ' Not yet relieved', 1, '2023-12-11 07:34:51', 0, NULL, 0, NULL, 1),
(6884, 15585, 'idearx services pvt ltd', 'business Development manager', '2019-09-01', 46500.00, '2022-01-01', 50000.00, 'chennai', '1', '2 years 4 months', 'Not yet relieved', 1, '2023-12-11 07:40:05', 0, NULL, 0, NULL, 1),
(6885, 15588, 'Nobroker', 'Senior Sales Executive ', '2023-01-13', 25000.00, '2023-06-15', 25000.00, 'Sarjapur Road Bangalore ', '1', '0 years 5 months', ' Building New home in Native.... So to take care of other Personal problems', 1, '2023-12-11 07:41:02', 0, NULL, 0, NULL, 1),
(6886, 15587, 'No broker technology private limited ', 'Tele Sales executive ', '2022-06-15', 1.00, '2023-08-21', 25.00, 'Sarjapur ', '1', '1 years 2 months', ' Met with an accident ', 1, '2023-12-11 07:46:10', 0, NULL, 0, NULL, 1),
(6887, 15591, 'Icici lambord', 'Tele sales officer', '2022-06-11', 15000.00, '2023-05-26', 15000.00, 'Thousands light', '1', '0 years 11 months', ' Nil', 1, '2023-12-11 09:33:16', 0, NULL, 0, NULL, 1),
(6888, 15593, 'Teleperformance ', 'Operation ', '2022-06-02', 17000.00, '2023-04-06', 17000.00, 'Bangalore ', '1', '0 years 10 months', ' ', 1, '2023-12-11 01:44:51', 0, NULL, 0, NULL, 1),
(6889, 15596, 'Genpact', 'Process Associate', '2018-10-08', 1.00, '2020-01-30', 17500.00, 'Hyderabad', '1', '1 years 3 months', ' Relocation', 1, '2023-12-11 01:48:26', 0, NULL, 0, NULL, 1),
(6890, 15595, 'Star health insurance ', 'Claims officer ', '2019-06-15', 20000.00, '2020-12-25', 17500.00, '1000 light', '1', '1 years 6 months', ' Due to not getting transfer \n', 1, '2023-12-11 01:50:13', 0, NULL, 0, NULL, 1),
(6891, 15596, 'Wipro', 'Senior process associate', '2020-07-22', 1.00, '2022-12-15', 24500.00, 'Hyderabad', '1', '2 years 4 months', 'Married so not able to relocate to Hyderabad', 1, '2023-12-11 01:50:16', 0, NULL, 0, NULL, 1),
(6892, 15602, 'Zak decor mart', 'Sales', '2022-10-10', 12000.00, '2023-10-10', 15000.00, 'Choolai', '1', '1 years 0 months', ' Company shift to long distance ', 1, '2023-12-12 05:01:38', 0, NULL, 0, NULL, 1),
(6893, 13536, 'Justdial', 'Telemarketing ', '2022-05-27', 21000.00, '2023-10-24', 21000.00, 'Little mount ', '1', '1 years 4 months', ' I met with an accident,so I had to take long leave', 1, '2023-12-12 05:12:27', 0, NULL, 0, NULL, 1),
(6894, 15600, 'vns engineering pvt ltd', 'assit. accountant', '2023-06-05', 13000.00, '1970-01-01', 13000.00, 'ashok nagar', '2', '0 years 6 months', ' learn to more', 1, '2023-12-12 05:43:00', 0, NULL, 0, NULL, 1),
(6895, 15606, 'Zinka logistics (blackbuck)', 'Sr. Associate category support ', '2022-03-17', 23300.00, '2023-05-30', 23300.00, 'Bangalore ', '1', '1 years 2 months', ' Personal reasons ', 1, '2023-12-12 06:21:04', 0, NULL, 0, NULL, 1),
(6896, 15605, 'ohealer healtcare service private limited', 'health advisor ', '2023-04-24', 28000.00, '2023-11-06', 28000.00, 'bangalore ', '1', '0 years 6 months', ' ', 1, '2023-12-12 06:24:55', 0, NULL, 0, NULL, 1),
(6897, 15611, 'Cams', 'Senior associate ', '2023-12-18', 12.50, '2023-09-28', 16.50, 'Mound road ', '1', '0 years 2 months', ' ', 1, '2023-12-12 07:07:33', 0, NULL, 0, NULL, 1),
(6898, 15599, 'Hpe', 'Management co ordinator', '2023-02-01', 25000.00, '2023-10-30', 25000.00, 'chennsi', '1', '0 years 10 months', 'Personal issues', 104, '2023-12-12 12:39:55', 0, NULL, 0, NULL, 1),
(6899, 15610, 'Zencorp Techno Solutions Pvt Ltd ', 'Software Engineer Trainee ', '2023-02-20', 10000.00, '2023-08-25', 10000.00, 'Coimbatore ', '1', '0 years 6 months', ' Father Operation ', 1, '2023-12-12 07:19:00', 0, NULL, 0, NULL, 1),
(6900, 15616, 'Gogosoon Private Limited ', 'Junior Automation Tester', '2021-12-13', 4.00, '2022-08-15', 492000.00, 'Chennai', '1', '0 years 8 months', 'Company projects reduced', 1, '2023-12-12 09:07:43', 0, NULL, 0, NULL, 1),
(6901, 15616, 'Handbuiltapps', 'Frontend Developer', '2021-07-12', 3.00, '2021-11-30', 180000.00, 'Sivakasi', '1', '0 years 4 months', 'For career growth', 1, '2023-12-12 09:09:17', 0, NULL, 0, NULL, 1),
(6902, 15617, 'Rbl bank,Magic bus india foundation ', 'Placement support ', '2022-12-26', 19800.00, '2023-11-30', 19800.00, 'Chennai ', '1', '0 years 11 months', ' ', 1, '2023-12-12 09:52:15', 0, NULL, 0, NULL, 1),
(6903, 15618, 'Cedar business solutions ', 'Telle caller', '2023-05-15', 18000.00, '2023-12-09', 18000.00, 'Koyambedu ', '1', '0 years 6 months', ' 1year aggreement based aggreement date over that the reason for relive ', 1, '2023-12-12 12:28:40', 0, NULL, 0, NULL, 1),
(6904, 15623, 'Vishal computers', 'Junior Accountant ', '2023-08-01', 16000.00, '2023-11-30', 16000.00, 'Chennai ', '1', '0 years 3 months', ' Traveling issue ', 1, '2023-12-13 05:06:25', 0, NULL, 0, NULL, 1),
(6905, 15623, 'Goodwill wealth management ', 'Mutual fundans insurance ', '2022-10-01', 15000.00, '2023-06-01', 15000.00, 'Chennai ', '1', '0 years 8 months', 'Target pressure ', 1, '2023-12-13 05:08:06', 0, NULL, 0, NULL, 1),
(6906, 15624, 'HDFC Bank ', 'SLI DEPARTMENT ', '2022-02-05', 14000.00, '2023-02-07', 14000.00, 'Amaj Karai ,Nelson manikam road ', '1', '1 years 0 months', 'Family problems ', 1, '2023-12-13 05:18:22', 0, NULL, 0, NULL, 1),
(6907, 15630, 'Pace setters ', 'Plasma gorve ', '2022-11-30', 10000.00, '2023-10-31', 10000.00, 'Chennai ', '1', '0 years 11 months', ' Low salary and politics in office ', 1, '2023-12-13 06:15:08', 0, NULL, 0, NULL, 1),
(6908, 15634, 'Euroland', 'Onboarding lead', '2022-08-05', 45000.00, '2023-08-05', 600000.00, 'Chennai', '1', '1 years 0 months', ' Need a job change', 1, '2023-12-13 06:24:31', 0, NULL, 0, NULL, 1),
(6909, 15629, 'Payone investment', 'Assistant manager marketing', '2023-07-17', 25000.00, '2023-10-05', 25000.00, 'Greams road', '1', '0 years 2 months', ' It\'s an startup company, come has be shutdowned due to unsuccessful reason of finance.', 1, '2023-12-13 06:26:02', 0, NULL, 0, NULL, 1),
(6910, 15636, 'NIILE SOLUTION ', 'Admin and Executive ', '2017-08-01', 8000.00, '2018-11-15', 8000.00, 'Kundrathur', '1', '1 years 3 months', ' For Growth ', 1, '2023-12-13 06:41:00', 0, NULL, 0, NULL, 1),
(6911, 15636, 'Hitachi payment services pvt Ltd ', 'MIS Executive ', '2019-06-10', 10000.00, '2020-10-31', 10000.00, 'Velachery ', '1', '1 years 4 months', 'For Career growth ', 1, '2023-12-13 06:43:13', 0, NULL, 0, NULL, 1),
(6912, 15636, 'Catalyst Payment Services pvt ltd ', 'Process Associate ', '2020-11-23', 12000.00, '2022-03-30', 16000.00, 'TNagar', '1', '2 years 4 months', 'For Career growth ', 1, '2023-12-13 06:45:16', 1, '2023-12-13 06:51:10', 0, NULL, 0),
(6913, 15636, 'MBW', 'Senior Process Associate ', '2022-04-18', 20000.00, '2023-06-30', 21500.00, 'Thousand Lights ', '1', '1 years 2 months', 'For My mother\'s treatment i went native to take care of her ', 1, '2023-12-13 06:50:03', 0, NULL, 0, NULL, 1),
(6914, 15636, 'Catalyst Payments services pvt ltd ', 'Process Associate ', '2020-11-23', 12000.00, '2022-03-30', 16000.00, 'TNagar', '1', '1 years 4 months', 'For Career growth ', 1, '2023-12-13 06:52:40', 0, NULL, 0, NULL, 1),
(6915, 9579, 'Testware informatics', 'Flutter development ', '2022-07-05', 12000.00, '2022-12-10', 17000.00, 'Koyambedu', '1', '0 years 5 months', ' ', 1, '2023-12-13 07:32:11', 0, NULL, 0, NULL, 1),
(6916, 15621, 'iifl samasta ', 'cro ', '2022-01-10', 14500.00, '2023-06-01', 14500.00, 'chennai ', '1', '1 years 4 months', ' ', 1, '2023-12-13 08:15:46', 0, NULL, 0, NULL, 1),
(6917, 15642, '4 months ', 'Rm', '2023-08-05', 17000.00, '1970-01-01', 17000.00, 'Chennai ', '2', '0 years 4 months', ' Timing is not suitable ', 1, '2023-12-13 01:40:38', 0, NULL, 0, NULL, 1),
(6918, 15650, 'Reliance retail limited ', 'Commercial executive ', '2023-06-04', 22700.00, '1970-01-01', 22700.00, 'Chennai ', '2', '0 years 6 months', ' Due to change of field ', 1, '2023-12-14 05:14:43', 0, NULL, 0, NULL, 1),
(6919, 15650, 'Godrej storage solutions ', 'Logistics supervisor ', '2022-03-15', 20000.00, '2023-05-31', 20000.00, 'Chennai ', '1', '1 years 2 months', 'That was an off-role job', 1, '2023-12-14 05:15:48', 0, NULL, 0, NULL, 1),
(6920, 15650, 'vR commodities ', 'Inventory executive ', '2019-02-06', 15000.00, '2021-06-30', 15000.00, 'Karaikal ', '1', '2 years 4 months', 'COVID lockdown ', 1, '2023-12-14 05:18:57', 1, '2023-12-14 05:21:59', 0, NULL, 0),
(6921, 15650, 'Vishnu Cars pvt ltd ', 'Billing executive ', '2018-10-10', 8000.00, '2019-12-31', 8000.00, 'Cuddalore ', '1', '1 years 2 months', 'Career growth ', 1, '2023-12-14 05:21:04', 0, NULL, 0, NULL, 1),
(6922, 15650, 'VR commodities ', 'Inventory executive ', '2020-02-07', 15000.00, '2021-06-30', 15000.00, 'Karaikal ', '1', '1 years 4 months', 'COVID lockdown ', 1, '2023-12-14 05:23:21', 0, NULL, 0, NULL, 1),
(6923, 15651, 'Cortex media marketing pvt ltd', 'Jr. Front end developer', '2021-08-01', 10000.00, '2023-08-04', 300000.00, 'Thirumangalam (Chennai) ', '1', '2 years 0 months', 'Health issues', 1, '2023-12-14 05:45:10', 0, NULL, 0, NULL, 1),
(6924, 15657, 'Techmimds group pvt ltd', 'Junior software engineer', '2022-03-14', 15000.00, '2024-01-16', 15000.00, 'Taramani, chennai', '1', '1 years 10 months', 'Current salary doesn\'t meet my expectation', 1, '2023-12-14 06:21:56', 0, NULL, 0, NULL, 1),
(6925, 15647, 'Homeone ', 'Marketing executive ', '2022-09-27', 15000.00, '1970-01-01', 22000.00, 'T nagar', '2', '1 years 2 months', ' Personal reasons ', 1, '2023-12-14 06:58:33', 0, NULL, 0, NULL, 1),
(6926, 15659, 'Petho lab', 'Lab technician ', '2022-01-14', 10000.00, '2022-12-12', 10000.00, 'Nagarkoil', '1', '0 years 10 months', ' Long distance', 1, '2023-12-14 07:09:41', 0, NULL, 0, NULL, 1),
(6927, 15659, 'Ison', 'Crm', '2023-02-01', 14500.00, '2023-08-12', 14500.00, 'Telecalling', '1', '0 years 6 months', 'Family issue', 1, '2023-12-14 07:10:57', 0, NULL, 0, NULL, 1),
(6928, 15665, 'TAURUS BPO LIMITED', 'Customer  support Executive', '2022-07-10', 15000.00, '1970-01-01', 15000.00, 'BANGALORE', '2', '1 years 5 months', ' Process got Shutdown...', 1, '2023-12-14 12:22:50', 0, NULL, 0, NULL, 1),
(6929, 15669, 'HDFC (ADFC) ', 'Coordinator', '2021-09-13', 12400.00, '1970-01-01', 16540.00, 'Mount road Chennai ', '2', '2 years 3 months', ' I want a job with better career growth opportunities and low salary I am currently receiving', 1, '2023-12-14 02:34:55', 0, NULL, 0, NULL, 1),
(6930, 15671, 'Entropik technology ', 'Software developer intern', '2022-12-26', 15000.00, '2023-06-26', 15000.00, 'Chennai', '1', '0 years 6 months', ' As intern is completed ', 1, '2023-12-15 04:34:47', 0, NULL, 0, NULL, 1),
(6931, 15671, 'Digispoc technology ', 'Associate frontend developer ', '2022-07-01', 20000.00, '2022-09-30', 20000.00, 'Chennai', '1', '0 years 2 months', 'Had an health issues (backpain)', 1, '2023-12-15 04:37:13', 0, NULL, 0, NULL, 1),
(6932, 15673, 'Rk tax consultant ', 'Accounts ', '2023-06-01', 10000.00, '1970-01-01', 10000.00, 'Puthur andhra', '2', '0 years 6 months', ' Self growth ', 1, '2023-12-15 05:34:46', 0, NULL, 0, NULL, 1),
(6933, 15688, 'reliable data service', 'officer', '2022-05-10', 15000.00, '2023-06-26', 15000.00, 'chennai', '1', '1 years 1 months', ' To finish my Degree and joined in Trading cource and To learn New things ', 1, '2023-12-15 06:48:34', 0, NULL, 0, NULL, 1),
(6934, 15692, 'Gitaa Pvt ltd', 'Jr Web Developer and System Administrator', '2023-01-02', 29100.00, '2023-08-18', 396000.00, 'Taramani', '1', '0 years 7 months', ' ', 1, '2023-12-15 07:37:02', 0, NULL, 0, NULL, 1),
(6935, 15697, 'irend infotech', 'web developer', '2021-02-03', 12000.00, '1970-01-01', 20000.00, 'Chennai', '2', '2 years 10 months', ' self update', 1, '2023-12-15 10:39:14', 0, NULL, 0, NULL, 1),
(6936, 15700, 'Kaanra Technology Inc ', 'Quality control ', '2019-10-03', 12000.00, '2020-04-01', 12000.00, 'Chennai', '1', '0 years 5 months', ' Covid situation to relieve this company', 1, '2023-12-15 01:48:43', 0, NULL, 0, NULL, 1),
(6937, 15700, 'MSF', 'Airport Ground Staff', '2023-06-01', 20000.00, '2023-11-04', 20000.00, 'Bangalore', '1', '0 years 5 months', 'I don\'t like this job but try to airlines jobs not get  easily perfer aviation only', 1, '2023-12-15 01:53:05', 0, NULL, 0, NULL, 1),
(6938, 15701, 'Indoh group of companies ', 'Sales coordinator ', '2023-02-20', 18000.00, '2023-10-14', 9000.00, 'Chennai ', '1', '0 years 7 months', ' I received an information regarding, the company is going to select New employee. So, old employees to be filtered. That\'s why I quit my job. It\'s amoung company decision ', 1, '2023-12-15 02:01:28', 0, NULL, 0, NULL, 1),
(6939, 15702, 'Jobseeks4u consultancy ', 'Talent Acquisition Specialist ', '2022-07-14', 12000.00, '1970-01-01', 18000.00, 'Choolaimedu', '2', '1 years 5 months', 'Career growth ', 1, '2023-12-16 03:52:01', 0, NULL, 0, NULL, 1),
(6940, 15711, 'Tata consultancy ', 'Software engineer ', '2022-02-01', 17000.00, '1970-01-01', 25000.00, 'Chennai ', '2', '1 years 10 months', ' To get out from comfort zone ', 1, '2023-12-16 05:08:14', 0, NULL, 0, NULL, 1),
(6941, 15710, 'Excela technology ', 'Jr Processor ', '2020-12-23', 15000.00, '2023-08-10', 15000.00, 'Thanjavur ', '1', '2 years 7 months', ' Health issues ', 1, '2023-12-16 05:53:00', 0, NULL, 0, NULL, 1),
(6942, 15719, 'Sai housing properties', 'Telecalling', '2023-02-18', 15000.00, '2023-09-08', 15000.00, 'Alwarpet', '1', '0 years 6 months', ' ', 1, '2023-12-16 06:26:16', 0, NULL, 0, NULL, 1),
(6943, 15721, 'Chennai properties ', 'Senior marketing executive ', '2021-10-10', 25000.00, '2022-12-31', 25000.00, 'Chennai ', '1', '1 years 2 months', ' Maternity relieving ', 1, '2023-12-16 06:51:45', 0, NULL, 0, NULL, 1),
(6944, 15723, 'Royal sundaram general insurance company pvt Ltd ', 'Senior executive ', '2021-02-01', 1.20, '1970-01-01', 20000.00, 'Nungambakkam ', '2', '2 years 10 months', ' ', 1, '2023-12-16 06:53:03', 0, NULL, 0, NULL, 1),
(6945, 15724, 'Spritle', 'Software tester', '2021-06-12', 11000.00, '2023-06-09', 600000.00, 'Chennai', '1', '1 years 11 months', 'Domin switching software tester to full stack developer', 1, '2023-12-16 09:33:03', 0, NULL, 0, NULL, 1),
(6946, 15724, 'Vajro', 'Full stack developer', '2023-06-12', 20000.00, '2023-12-08', 600000.00, 'Chennai', '1', '0 years 5 months', 'Due to carrer growth', 1, '2023-12-16 09:34:42', 0, NULL, 0, NULL, 1),
(6947, 15726, 'purple drive technology', 'sr recruiter ', '2022-01-03', 25000.00, '2023-06-20', 300000.00, 'chennai', '1', '1 years 5 months', ' Layoff', 1, '2023-12-16 10:33:50', 0, NULL, 0, NULL, 1),
(6948, 15699, 'allsec technologies', 'customer support officer', '2020-11-11', 190000.00, '2021-11-24', 190000.00, 'chennai', '1', '1 years 0 months', ' Growth in career', 1, '2023-12-17 02:46:29', 0, NULL, 0, NULL, 1),
(6949, 15699, 'paisabazaar', 'sales consultant', '2022-03-17', 260000.00, '2023-10-12', 371000.00, 'chennai', '1', '1 years 6 months', 'Career growth', 1, '2023-12-17 02:48:00', 0, NULL, 0, NULL, 1),
(6950, 15709, 'Smart fusion corporate solutions pvt Ltd ', 'HR recruiter intern ', '2023-06-05', 2500.00, '1970-01-01', 2500.00, 'Online ', '2', '0 years 6 months', ' It\'s internship for 2months', 1, '2023-12-18 04:59:38', 0, NULL, 0, NULL, 1),
(6951, 15742, 'Sai fai pvt ltd ', 'Tellecalling ', '2017-05-22', 15000.00, '2019-12-09', 15000.00, 'Egmore', '1', '2 years 6 months', ' Married', 1, '2023-12-18 05:46:43', 0, NULL, 0, NULL, 1),
(6952, 15747, 'Marketsof1', 'Telesales excutive ', '2022-11-25', 16500.00, '2023-07-07', 21000.00, 'Littlemount', '1', '0 years 7 months', ' Personal issues', 1, '2023-12-18 06:03:14', 0, NULL, 0, NULL, 1),
(6953, 15753, 'Kamai Elevators Pvt Ltd ', 'Accounts finance ', '2020-03-09', 12000.00, '1970-01-01', 30000.00, 'Anna nagar ', '2', '3 years 9 months', ' Looking for better opportunity ', 1, '2023-12-18 06:31:26', 0, NULL, 0, NULL, 1),
(6954, 15755, 'Redblox Technologies ', 'Junior Software Engineer ', '2022-06-18', 10000.00, '2023-07-04', 10000.00, 'Pondicherry, Tamilnadu ', '1', '1 years 0 months', 'Salary issue and want to upgrade myself', 1, '2023-12-18 06:41:10', 0, NULL, 0, NULL, 1),
(6955, 15751, 'Tillvaxt hr solutions ', 'Hr Recruiter ', '2022-12-14', 14500.00, '2023-11-10', 17000.00, 'Thousand Lights ', '1', '0 years 10 months', ' Small range firm wanted to work in reputed organization ', 1, '2023-12-18 06:48:11', 0, NULL, 0, NULL, 1),
(6956, 15758, 'Teleprrformance', 'Customer Support associated ', '2017-08-11', 8000.00, '2019-11-20', 15000.00, 'Chennai', '1', '2 years 3 months', ' Surgery', 1, '2023-12-18 07:42:31', 0, NULL, 0, NULL, 1),
(6957, 15758, 'Krazybee', 'Senior operations executive ', '2023-06-20', 20000.00, '2023-11-16', 20000.00, 'Chennai', '1', '0 years 4 months', 'Office shifted', 1, '2023-12-18 07:44:08', 0, NULL, 0, NULL, 1),
(6958, 15759, 'access healthcare', 'client partner', '2021-11-16', 17000.00, '2022-12-14', 17000.00, 'chennai ', '1', '1 years 0 months', ' To skill up my knowledge and for my career Growth', 1, '2023-12-18 08:05:23', 0, NULL, 0, NULL, 1),
(6959, 15762, 'Medsmart Logistics pvt ltd', 'Hr executive  -  HR & Admin', '2023-02-01', 15000.00, '1970-01-01', 300000.00, 'Chennai', '2', '0 years 10 months', ' Career development ', 1, '2023-12-18 09:47:29', 0, NULL, 0, NULL, 1),
(6960, 15765, 'Astute Group ', 'Back Office Executive ', '2022-09-09', 13000.00, '2023-11-15', 13000.00, 'Chennai', '1', '1 years 2 months', ' Working on Contract Base ', 1, '2023-12-19 01:31:00', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6961, 15769, 'RRD ', 'MIS', '2022-11-20', 15.00, '2023-05-20', 15.00, 'Nanthanam', '1', '0 years 6 months', ' Working in 6 month contractual ', 1, '2023-12-19 05:15:43', 0, NULL, 0, NULL, 1),
(6962, 15770, 'Vsolv engineering India private limited', 'Front end developer', '2021-10-01', 10000.00, '2023-02-28', 20000.00, 'Chennai', '1', '1 years 4 months', ' For my growth', 1, '2023-12-19 05:20:17', 0, NULL, 0, NULL, 1),
(6963, 15771, 'Sitics logistics solution', 'DEO(Data entry Operator & MIS', '2023-02-20', 14000.00, '2023-09-30', 15600.00, 'Vanagaram', '1', '0 years 7 months', ' Salary and growth', 1, '2023-12-19 05:28:46', 0, NULL, 0, NULL, 1),
(6964, 15775, 'decision minds', 'intern', '2021-09-27', 15000.00, '2022-09-30', 15000.00, 'bengaluru', '1', '1 years 0 months', ' Internally changed to next organisation', 1, '2023-12-19 05:53:39', 0, NULL, 0, NULL, 1),
(6965, 15775, 'success4', 'software engineer', '2022-10-03', 28000.00, '2023-10-31', 28000.00, 'bengaluru', '1', '1 years 0 months', 'Completed my bond period', 1, '2023-12-19 05:55:44', 0, NULL, 0, NULL, 1),
(6966, 15779, 'DigiTech callsystem ', 'RTM ', '2021-01-08', 30.00, '2022-02-18', 28000.00, 'Bangalore', '1', '1 years 1 months', ' ', 1, '2023-12-19 06:05:58', 0, NULL, 0, NULL, 1),
(6967, 15778, 'finance buddha', 'insides sales', '2022-07-04', 30000.00, '2023-08-14', 30000.00, 'tippasandra', '1', '1 years 1 months', ' Health issue', 1, '2023-12-19 06:08:55', 0, NULL, 0, NULL, 1),
(6968, 15788, 'Star health insurance company', 'Officer', '2023-06-14', 14000.00, '2023-10-05', 14000.00, 'Thousand lights', '1', '0 years 3 months', 'Health issues', 1, '2023-12-19 07:13:53', 0, NULL, 0, NULL, 1),
(6969, 15791, 'Agrya consulting pvt Ltd ', 'Account executive', '2023-05-16', 25000.00, '2023-11-04', 25000.00, 'Teynampet chennai', '1', '0 years 5 months', ' Doing data Entry and copy paste work so i releave the job', 1, '2023-12-19 09:36:07', 0, NULL, 0, NULL, 1),
(6970, 15792, 'impetusON ', 'Recruitment Executive ', '2023-01-06', 16000.00, '1970-01-01', 20000.00, 'Guindy ', '2', '0 years 11 months', ' They couldn\'t able To provide salary and office rent. so they are asked to removed me. ', 1, '2023-12-19 09:47:56', 0, NULL, 0, NULL, 1),
(6971, 15793, 'LRS Technologies ', 'HR Recruiter ', '2022-10-10', 25000.00, '2023-12-12', 30000.00, 'Chennai ', '1', '1 years 2 months', 'Interested to work in more challenging environment where I can grow my self in HR', 1, '2023-12-19 09:50:41', 0, NULL, 0, NULL, 1),
(6972, 15794, 'Byjus ', 'Business Development executive ', '2023-03-17', 22000.00, '2023-10-24', 22000.00, 'Alwarpet,chennai ', '1', '0 years 7 months', ' Due to salary issue ', 1, '2023-12-19 10:25:48', 0, NULL, 0, NULL, 1),
(6973, 15797, 'monster nutrition depot', 'digital marketing manager', '2022-11-04', 25000.00, '2023-12-09', 25000.00, 'Chennai', '1', '1 years 1 months', ' ', 1, '2023-12-19 12:06:35', 0, NULL, 0, NULL, 1),
(6974, 15805, 'mercury connections', 'hr manager', '2023-11-25', 6000.00, '2023-12-10', 6000.00, 'bangalore', '1', '0 years 0 months', ' ', 1, '2023-12-20 05:36:52', 0, NULL, 0, NULL, 1),
(6975, 15807, 'Yehi consultancy ', 'QA', '2022-03-28', 300000.00, '2022-10-15', 300000.00, 'Chennai ', '1', '0 years 6 months', ' No project pipeline ', 1, '2023-12-20 05:38:17', 0, NULL, 0, NULL, 1),
(6976, 15808, 'Infocareer pvt ltd', 'HR RECRUITER ', '2022-04-20', 18000.00, '2023-12-01', 20000.00, 'Mandaveli ', '1', '1 years 7 months', ' Opportunity ', 1, '2023-12-20 05:43:11', 0, NULL, 0, NULL, 1),
(6977, 15808, 'Omkar staffing solutions ', 'HR RECRUITER ', '2021-01-01', 11000.00, '2022-03-31', 11000.00, 'Thiruvanmiyur ', '1', '1 years 2 months', 'Opportunity ', 1, '2023-12-20 05:44:24', 1, '2023-12-20 05:47:04', 0, NULL, 1),
(6978, 15812, 'sutherland global services', 'transaction processing', '2021-12-30', 240000.00, '2023-04-14', 20000.00, 'chennai', '1', '1 years 3 months', 'I want to change career paths and i wanted to Switch into Information Technology as a developer', 1, '2023-12-20 05:50:40', 0, NULL, 0, NULL, 1),
(6979, 15815, 'First Source pvt ltd', 'Associate Data analyst', '2011-05-09', 6000.00, '2011-11-30', 6000.00, 'Karapakkam', '1', '0 years 6 months', ' Higher studies ', 1, '2023-12-20 06:05:05', 0, NULL, 0, NULL, 1),
(6980, 15806, 'architecture red', 'accounts', '2023-08-02', 20000.00, '2023-10-28', 20000.00, 'besant nagar', '1', '0 years 2 months', ' personal issues', 1, '2023-12-20 06:06:03', 0, NULL, 0, NULL, 1),
(6981, 15815, 'Ecare India pvt ltd', 'HR Executive ', '2021-02-24', 18000.00, '2022-07-09', 27000.00, 'Anna salai', '1', '1 years 4 months', 'Career growth ', 1, '2023-12-20 06:07:18', 0, NULL, 0, NULL, 1),
(6982, 15815, 'I-Net Secure labs pvt ltd', 'Senior HR Recruiter ', '2022-08-01', 28000.00, '2023-03-31', 28000.00, 'Arumbakkam', '1', '0 years 7 months', 'Personal problems ', 1, '2023-12-20 06:08:52', 0, NULL, 0, NULL, 1),
(6983, 15815, 'FPL Vehicles pvt ltd', 'HR Executive ', '2023-11-14', 26000.00, '1970-01-01', 26000.00, 'Ambattur', '2', '0 years 1 months', 'Change in industry', 1, '2023-12-20 06:09:55', 0, NULL, 0, NULL, 1),
(6984, 15813, 'hdfc bank', 'virtual sales officer', '2023-07-13', 20000.00, '2023-10-04', 20000.00, 'spencer plaza', '1', '0 years 2 months', ' timing issue', 1, '2023-12-20 06:26:12', 0, NULL, 0, NULL, 1),
(6985, 15819, 'iSewis technologies ', 'Hr recruiter ', '2023-07-15', 20000.00, '2023-11-30', 20000.00, 'Kodambakkam', '1', '0 years 5 months', ' I want to grow in my career', 1, '2023-12-20 06:50:05', 0, NULL, 0, NULL, 1),
(6986, 15796, 'HDB Financial services', 'Sales officer', '2023-01-18', 13000.00, '1970-01-01', 18000.00, 'chennai', '2', '0 years 11 months', 'Personal issues', 104, '2023-12-20 12:20:18', 0, NULL, 0, NULL, 1),
(6987, 15820, 'ParkQwik ', 'MERN STACK DEVELOPER ', '2023-01-02', 150000.00, '2024-01-02', 10000.00, 'Perungudi ', '1', '1 years 0 months', ' Searching for better opportunity ', 1, '2023-12-20 06:59:14', 0, NULL, 0, NULL, 1),
(6988, 15822, 'Ihav', 'Project assistant ', '2022-09-19', 5000.00, '2022-12-01', 1.00, 'Chennai', '1', '0 years 2 months', ' Health issue', 1, '2023-12-20 07:08:33', 0, NULL, 0, NULL, 1),
(6989, 15814, 'Dream work management ', 'Account Administration ', '2023-02-20', 17000.00, '2023-11-24', 17000.00, 'Ashok piller ', '1', '0 years 9 months', ' Chicken box', 1, '2023-12-20 07:09:57', 0, NULL, 0, NULL, 1),
(6990, 15823, 'Hectadata India Pvt Ltd ', 'Associate Recruiter ', '2023-01-06', 16000.00, '2023-08-31', 60000.00, 'Chennai', '1', '0 years 7 months', ' Financial issues ', 1, '2023-12-20 08:05:02', 0, NULL, 0, NULL, 1),
(6991, 15823, 'Vista Systemz ', 'Junior Recruiter ', '2022-05-09', 13000.00, '2022-11-18', 13000.00, 'Chennai', '1', '0 years 6 months', 'Insufficient of Skills to Learn', 1, '2023-12-20 08:06:13', 0, NULL, 0, NULL, 1),
(6992, 15824, 'Veemak technologies', 'Product engineer', '2020-10-01', 10000.00, '2022-02-28', 10000.00, 'Bangalore ', '1', '1 years 4 months', ' Due to some health issues ', 1, '2023-12-20 08:31:11', 0, NULL, 0, NULL, 1),
(6993, 15828, 'Sunsmart technology ', 'Hr Recruiter ', '2023-06-22', 22000.00, '2023-08-22', 22000.00, 'Nandhanam', '1', '0 years 2 months', 'Personal reason ', 1, '2023-12-20 09:47:37', 0, NULL, 0, NULL, 1),
(6994, 15830, 'Idfc Frist bank ', 'Team leader', '2023-08-14', 19800.00, '2023-12-20', 19800.00, 'Thanjavur ', '2', '0 years 4 months', 'Low salary ', 1, '2023-12-20 02:08:59', 0, NULL, 0, NULL, 1),
(6995, 15830, 'Balu Autos', 'Team leader ', '2022-10-29', 10000.00, '2023-08-03', 13000.00, 'Thanjavur ', '1', '0 years 9 months', 'Low salary ', 1, '2023-12-20 02:11:06', 0, NULL, 0, NULL, 1),
(6996, 15830, 'Indian yamaha motors', 'Asst line leader', '2021-07-23', 20000.00, '2023-07-14', 20000.00, 'Chennai ', '1', '1 years 11 months', 'Training period finished', 1, '2023-12-20 02:15:26', 0, NULL, 0, NULL, 1),
(6997, 15829, 'Vedantu innovations private limited ', 'Support officer ', '2021-09-27', 1.00, '2023-02-28', 25000.00, 'Bangalore ', '1', '1 years 5 months', ' Due to lay off ', 1, '2023-12-21 05:30:19', 0, NULL, 0, NULL, 1),
(6998, 15846, 'siva gruop of company', 'admin', '2023-06-12', 14000.00, '2023-12-12', 15500.00, 'mutazmil nagar', '1', '0 years 6 months', ' ', 1, '2023-12-21 05:35:17', 0, NULL, 0, NULL, 1),
(6999, 15831, 'Siva Groups of Company', 'Admin', '2023-06-07', 14000.00, '2023-12-07', 15000.00, 'Muthamizh nagar', '1', '0 years 6 months', ' ', 1, '2023-12-21 05:35:54', 0, NULL, 0, NULL, 1),
(7000, 15844, 'iq back office', 'quality analyst', '2022-04-01', 1.20, '2023-12-15', 2.85, 'ambathur', '1', '1 years 8 months', ' Career growth', 1, '2023-12-21 05:43:12', 0, NULL, 0, NULL, 1),
(7001, 15855, 'Wingz technologies Pvt Ltd ', 'Flutter developer ', '2022-04-07', 10000.00, '2023-11-12', 16000.00, 'Chennai ', '1', '1 years 7 months', ' Career growth ', 1, '2023-12-21 06:31:31', 0, NULL, 0, NULL, 1),
(7002, 15860, 'Savvysoft Technologies ', 'US Recruiter ', '2022-09-15', 280000.00, '2022-12-22', 8000.00, 'Chennai', '1', '0 years 3 months', ' Night shifts job took a toll on my heath.', 1, '2023-12-21 10:38:19', 0, NULL, 0, NULL, 1),
(7003, 15860, 'Elite Elevators ', 'HR Executive ', '2023-01-20', 300000.00, '2023-11-01', 4000.00, 'Chennai', '1', '0 years 9 months', 'Layoff', 1, '2023-12-21 10:39:46', 0, NULL, 0, NULL, 1),
(7004, 15862, 'Aria jewellery ', 'CRE & Telecaller', '2023-01-25', 13500.00, '1970-01-01', 14200.00, 'Old bus stand, Thanjavur ', '2', '0 years 10 months', ' No', 1, '2023-12-22 04:12:50', 0, NULL, 0, NULL, 1),
(7005, 15864, 'Aria jewellers', 'customer care executive ', '2022-12-11', 13500.00, '2023-12-11', 14000.00, 'Thanjavur ', '1', '1 years 0 months', ' Salary issues and time', 1, '2023-12-22 05:29:22', 0, NULL, 0, NULL, 1),
(7006, 15864, 'Aria jewellers', 'customer care executive ', '2022-12-11', 13500.00, '2023-12-11', 14000.00, 'Thanjavur ', '1', '1 years 0 months', ' Salary issues and time', 1, '2023-12-22 05:29:26', 0, NULL, 0, NULL, 1),
(7007, 15668, 'exela techniologies', 'medical data analYst', '2023-06-20', 11000.00, '2023-09-29', 14000.00, 'thanjavur', '1', '0 years 3 months', 'ear issues ', 108, '2023-12-22 01:10:22', 0, NULL, 0, NULL, 1),
(7008, 15879, 'Care health insurance ', 'Financial services executive ', '2022-12-31', 6.00, '2025-01-01', 20000.00, 'Nugabakma ', '1', '2 years 0 months', 'Due to salary increment issue ', 1, '2023-12-22 02:34:11', 0, NULL, 0, NULL, 1),
(7009, 15882, 'Mounttown Technology ', 'Full stack developer ', '2023-05-24', 15000.00, '1970-01-01', 15000.00, 'Mettupalayam, Coimbatore ', '2', '0 years 6 months', 'I move to Chennai because some personal issues.', 1, '2023-12-23 04:47:39', 0, NULL, 0, NULL, 1),
(7010, 15887, 'Foxconn', 'Line leader', '2020-12-23', 15000.00, '2023-12-23', 18000.00, 'Chennai', '1', '3 years 0 months', ' Marriage ', 1, '2023-12-23 04:48:53', 0, NULL, 0, NULL, 1),
(7011, 15880, 'IDFc first Bank ', 'Sales officer ', '2023-05-25', 20000.00, '1970-01-01', 20000.00, 'Teynapet ', '2', '0 years 6 months', ' I\'m not convenient (office Timing 9am to 9pm)', 1, '2023-12-23 04:51:55', 0, NULL, 0, NULL, 1),
(7012, 15884, 'Tri-Bee software solutions ', 'Junior software Engineer ', '2022-09-05', 192000.00, '2024-01-31', 300000.00, 'Chennai ', '1', '1 years 4 months', ' Decided to explore for better opportunity, multiple technologies, career growth and different organisation scale ', 1, '2023-12-23 04:52:16', 0, NULL, 0, NULL, 1),
(7013, 15888, 'Workfreaks Business Services pvt ltd ', 'HR Recruiter ', '2023-04-12', 15000.00, '1970-01-01', 15000.00, 'Mount road', '2', '0 years 8 months', ' Looking for Better Salary and Career growth and probably looking for an Internal HR ', 1, '2023-12-23 04:59:07', 0, NULL, 0, NULL, 1),
(7014, 15891, 'CI global solutions', 'Flutter developer', '2022-04-18', 11000.00, '2024-01-12', 20000.00, 'Chennai', '1', '1 years 8 months', ' Family responsibility', 1, '2023-12-23 05:43:25', 0, NULL, 0, NULL, 1),
(7015, 15909, 'Smart Marketing  Solutions', 'Accountant', '2020-10-01', 25000.00, '1970-01-01', 32000.00, 'Sowcarpet', '2', '3 years 2 months', ' salary timely not received', 1, '2023-12-24 06:01:04', 0, NULL, 0, NULL, 1),
(7016, 15909, 'GDA Security Pvt.  Ltd.', 'Account Assistant', '2016-10-03', 12000.00, '2020-09-15', 23000.00, 'Mount Road', '1', '3 years 11 months', 'Lockdown Time', 1, '2023-12-24 06:04:03', 0, NULL, 0, NULL, 1),
(7017, 15917, 'Chemical industry ', 'Project technical assistant ', '2012-01-12', 25000.00, '2023-06-30', 37000.00, 'Chennai ', '1', '11 years 5 months', 'Company layoff', 1, '2023-12-25 05:21:36', 0, NULL, 0, NULL, 1),
(7018, 15925, 'wns global services', 'cash application', '2023-11-23', 18000.00, '2023-12-25', 18000.00, 'karapakkam', '2', '0 years 1 months', ' contract based', 1, '2023-12-25 07:24:20', 0, NULL, 0, NULL, 1),
(7019, 15927, 'Agira Technologies ', 'Node js developer', '2022-03-14', 18000.00, '2022-03-15', 33000.00, 'Parangimalai, chennai ', '1', '0 years 0 months', 'Projects are not available ', 1, '2023-12-26 04:49:04', 0, NULL, 0, NULL, 1),
(7020, 15931, 'Bprvo &co charated Accountants, thiru Associates', 'Audit excutive ', '2022-10-03', 15000.00, '2023-10-31', 15000.00, 'Chethupet, senthamasmount', '1', '1 years 0 months', ' Work related Travels in out side ares', 1, '2023-12-26 05:41:11', 1, '2023-12-26 05:45:00', 0, NULL, 1),
(7021, 15936, 'CAMS ', 'P.O', '2015-04-13', 7500.00, '2023-01-02', 18500.00, 'KH Road ', '1', '7 years 8 months', ' My mother two wheeler accident and health issue. So I take care of my mother. ', 1, '2023-12-26 06:02:57', 0, NULL, 0, NULL, 1),
(7022, 15934, 'bny mellon', 'accounts', '2022-07-02', 20600.00, '2022-12-02', 20600.00, 'pallavaram', '1', '0 years 5 months', ' night shift', 1, '2023-12-26 07:15:14', 0, NULL, 0, NULL, 1),
(7023, 15946, 'Sterling Holiday Resorts Ltd', 'Customer Engagement Executive', '2022-02-14', 15000.00, '2023-12-14', 17000.00, 'Chennai', '1', '1 years 10 months', ' Call Centre is closing for the Entire Division', 1, '2023-12-26 09:05:45', 0, NULL, 0, NULL, 1),
(7024, 15946, 'Matrimony.com', 'Customer Executive', '2019-09-09', 11000.00, '2021-08-14', 11000.00, 'Chennai', '1', '1 years 11 months', 'Career Growth', 1, '2023-12-26 09:07:34', 0, NULL, 0, NULL, 1),
(7025, 15946, 'RR Donnelley Outsourcing India Pvt Ltd', 'Quality Controller', '2015-12-07', 9500.00, '2017-08-14', 12000.00, 'Chennai', '1', '1 years 8 months', 'Health issue for my father has to be taken Care of', 1, '2023-12-26 09:09:52', 0, NULL, 0, NULL, 1),
(7026, 15949, 'Royal Smith and Zoon ', 'Hr assistant ', '2023-02-01', 216000.00, '2023-08-31', 216000.00, 'Chennai', '1', '0 years 6 months', ' Personal growth ', 1, '2023-12-26 10:01:25', 0, NULL, 0, NULL, 1),
(7027, 15951, 'a2s mobile batteries', 'sales manager', '2020-11-02', 20000.00, '2023-12-07', 20000.00, 'pondicherry', '1', '3 years 1 months', ' Because there is no career growth on this company. And its a 12 hrs job so i decided to quit the job.', 1, '2023-12-26 01:53:21', 0, NULL, 0, NULL, 1),
(7028, 15953, 'Sardonyx technologies ', 'Android developer ', '2021-07-12', 10.00, '2023-03-03', 18.00, 'Tanjore', '1', '1 years 7 months', ' Due to Marriage ', 1, '2023-12-27 04:28:59', 0, NULL, 0, NULL, 1),
(7029, 15961, 'Flextronics ', 'Analyst ', '2021-09-13', 22000.00, '2022-12-09', 23372.00, 'Chennai', '1', '1 years 2 months', ' Inconvenience of Night shift ', 1, '2023-12-27 05:21:33', 0, NULL, 0, NULL, 1),
(7030, 15961, 'Sepam Solutions India Pvt Ltd ', 'HR recruiter ', '2023-03-31', 23372.00, '2023-11-21', 23372.00, 'Chennai', '1', '0 years 7 months', 'Professional growth ', 1, '2023-12-27 05:22:25', 0, NULL, 0, NULL, 1),
(7031, 15960, 'Concentrix', 'Service adviser', '2023-06-12', 15000.00, '2024-01-06', 15000.00, 'Kovilambakkam', '1', '0 years 6 months', ' Home shift so i relieving the job', 1, '2023-12-27 05:26:50', 0, NULL, 0, NULL, 1),
(7032, 15963, 'Byjus ', 'Business development associate ', '2021-08-19', 7.00, '2022-09-15', 7.00, 'Coimbatore ', '1', '1 years 0 months', ' I can\'t continue working because I met with an accident and I was unable to work .', 1, '2023-12-27 05:34:52', 0, NULL, 0, NULL, 1),
(7033, 15970, 'Karthikeyan.p', 'Accounts Asst', '2022-10-05', 14700.00, '2024-01-30', 16000.00, 'Adambakkam', '1', '1 years 3 months', ' Salary ', 1, '2023-12-27 06:22:35', 0, NULL, 0, NULL, 1),
(7034, 15972, 'Zenith Chemical Industries', 'Billing and accounts Executive', '2020-06-01', 10000.00, '2023-07-16', 10000.00, 'Madhavaram Milk Colony', '1', '3 years 1 months', ' I have relieved due to improve my career and growth in my life. ', 1, '2023-12-27 07:09:04', 0, NULL, 0, NULL, 1),
(7035, 15973, 'VR della infotech', 'US IT RECRUITER ', '2023-01-23', 264000.00, '2023-09-29', 264000.00, 'Tiruchirapalli ', '1', '0 years 8 months', ' Health issues', 1, '2023-12-27 07:36:13', 0, NULL, 0, NULL, 1),
(7036, 15973, '247 hire', 'US IT RECRUITER ', '2021-12-05', 158000.00, '2022-09-15', 158000.00, 'Tiruchirapalli ', '1', '0 years 9 months', 'Personal issues', 1, '2023-12-27 07:41:04', 0, NULL, 0, NULL, 1),
(7037, 15978, 'VDart', 'uS IT Recruiter ', '2022-02-04', 14500.00, '2023-11-05', 18500.00, 'Trichy', '1', '1 years 9 months', ' For personal reason I relocated to Chennai', 1, '2023-12-27 09:28:57', 0, NULL, 0, NULL, 1),
(7038, 15976, 'SES satellites', 'Talent acquisition & Talent Management Intern', '2022-10-01', 80000.00, '2023-03-31', 80000.00, 'Luxembourg', '1', '0 years 5 months', ' End of contract', 1, '2023-12-27 09:30:04', 0, NULL, 0, NULL, 1),
(7039, 15980, 'Cethar Energy Limited', 'Hr& Admin ', '2018-12-14', 11000.00, '2022-05-14', 21000.00, 'Cheyyar', '1', '3 years 5 months', ' Contract of the private company completed', 1, '2023-12-27 09:30:53', 0, NULL, 0, NULL, 1),
(7040, 15977, 'Decision Making ', 'Account Payable ', '2023-08-04', 5000.00, '2023-12-01', 25000.00, 'Thousand lights ', '1', '0 years 3 months', ' ', 1, '2023-12-27 09:34:08', 0, NULL, 0, NULL, 1),
(7041, 15982, 'HOTEL SEA BREEZE ', 'ACCOUNTS EXECUTIVE ', '2023-06-05', 25000.00, '1970-01-01', 25000.00, 'MAHABALLIBURAM ', '2', '0 years 6 months', 'TO  DEVELOP MY ACCOUNTS KNOWLEDGE IN OTHER FIELD EXCEPT HOTEL FIELD ', 1, '2023-12-27 01:50:10', 0, NULL, 0, NULL, 1),
(7042, 15983, 'KLR GLOBAL LLP ', 'Sales executive ', '2021-01-06', 8000.00, '2022-03-31', 10000.00, 'Porur ', '1', '1 years 2 months', ' Low salary ', 1, '2023-12-27 02:32:44', 0, NULL, 0, NULL, 1),
(7043, 15983, 'Justdial ', 'BD ', '2022-04-01', 12000.00, '2023-05-31', 16000.00, 'Saidapet ', '1', '1 years 1 months', 'Low  salary ', 1, '2023-12-27 02:33:46', 0, NULL, 0, NULL, 1),
(7044, 15983, 'Govche India pvt ltd ', 'BDE ', '2023-05-25', 23000.00, '2023-11-30', 230000.00, 'Adambakkam ', '1', '0 years 6 months', 'Long distance ', 1, '2023-12-27 02:34:52', 0, NULL, 0, NULL, 1),
(7045, 15984, 'Kanakkupillai.com', 'BD', '2023-06-05', 18900.00, '2023-11-30', 18900.00, 'Adampakkam', '1', '0 years 5 months', ' To build my career & increase my salary ', 1, '2023-12-28 03:53:26', 0, NULL, 0, NULL, 1),
(7046, 15985, 'Hinduja Leyland finance', 'Customer support executive ', '2023-11-04', 4.00, '1970-01-01', 16500.00, 'Nandhanam, chennai ', '2', '0 years 1 months', 'I have completed data analysis course so I am aspiring to work under data related field', 1, '2023-12-28 05:40:28', 0, NULL, 0, NULL, 1),
(7047, 15987, 'Bumsa talent solution ', 'Recruitment consultant ', '2022-08-24', 20000.00, '2023-11-30', 240000.00, 'Chennai ', '1', '1 years 3 months', ' ', 1, '2023-12-28 05:49:19', 0, NULL, 0, NULL, 1),
(7048, 15473, 'Shriram life insurance pvt ltd', 'Senior executive ', '2022-12-08', 18.00, '2023-11-30', 20.00, 'Chennai', '1', '0 years 11 months', ' Health issues', 1, '2023-12-28 05:49:57', 0, NULL, 0, NULL, 1),
(7049, 15987, 'Bumsa talent solution ', 'Recruitment consultant ', '2022-08-24', 20000.00, '2023-11-30', 240000.00, 'Chennai ', '1', '1 years 3 months', 'Due health reason', 1, '2023-12-28 05:50:19', 1, '2023-12-28 05:50:27', 0, NULL, 0),
(7050, 15992, 'Lawrence and co', 'Accountant', '2018-10-15', 10000.00, '2021-10-15', 22000.00, 'Nungambakkam', '1', '3 years 0 months', ' Articleship it over', 1, '2023-12-28 07:24:21', 0, NULL, 0, NULL, 1),
(7051, 15994, 'NLC india limited', 'Data analyst', '2022-03-02', 20000.00, '2023-03-29', 20000.00, 'Neyveli', '1', '1 years 0 months', ' ', 1, '2023-12-28 12:53:49', 0, NULL, 0, NULL, 1),
(7052, 15998, 'blue lotus support & services', 'network engineer', '2017-09-18', 10.00, '2019-05-31', 1.80, 'chennai', '1', '1 years 8 months', ' Career growth ', 1, '2023-12-29 06:49:54', 0, NULL, 0, NULL, 1),
(7053, 15998, 'diamondpick', 'hr', '2021-10-04', 2.80, '2022-10-31', 3.10, 'chennai ', '1', '1 years 0 months', ' career growth', 1, '2023-12-29 06:54:40', 0, NULL, 0, NULL, 1),
(7054, 15998, 'cluster analytics', 'data analyst', '2022-12-01', 2.50, '1970-01-01', 2.80, 'chennai', '2', '1 years 0 months', 'No project ', 1, '2023-12-29 06:55:58', 0, NULL, 0, NULL, 1),
(7055, 16000, 'hi-tech pvt ltd', 'admin', '2022-05-12', 12000.00, '2023-10-25', 17000.00, 'guindy', '1', '1 years 5 months', ' Timing issue', 1, '2023-12-29 07:27:26', 0, NULL, 0, NULL, 1),
(7056, 16001, 'Professional courier ', 'Data analyst,data entry ', '2022-05-25', 1500.00, '2023-02-05', 18000.00, 'Alwarpet ', '1', '1 years 7 months', ' Health issues ', 1, '2023-12-29 07:29:05', 0, NULL, 0, NULL, 1),
(7057, 15999, 'wissend consultancy privite limited', 'data analyst', '2022-03-18', 12000.00, '2023-06-28', 15000.00, 'nandhanam', '1', '1 years 3 months', ' Medical Problems ', 1, '2023-12-29 07:34:45', 0, NULL, 0, NULL, 1),
(7058, 16009, 'Freelancer ', 'Angular Ts Developer ', '2023-02-20', 250000.00, '2024-12-27', 250000.00, 'Chennai ', '1', '1 years 10 months', ' There is closed of all Projects that is the small company ', 1, '2024-01-02 04:45:37', 0, NULL, 0, NULL, 1),
(7059, 16009, 'Objectways Technologies ', 'Data Analysis ', '2021-10-23', 250000.00, '2023-02-15', 250000.00, 'Karur', '1', '1 years 3 months', 'Salary Needs and Passion about Information Technology Field', 1, '2024-01-02 04:49:03', 1, '2024-01-02 04:50:17', 0, NULL, 1),
(7060, 16011, 'Trayee business solutions pvt ltd ', 'Senior process executive ', '2018-01-29', 10000.00, '2023-07-19', 17500.00, 'Chennai ', '1', '5 years 5 months', ' Change my carrier ', 1, '2024-01-02 06:20:27', 0, NULL, 0, NULL, 1),
(7061, 16014, 'Matrimony ', 'Customer service ', '2022-08-17', 15000.00, '2023-03-23', 15000.00, 'Guindy ', '1', '0 years 7 months', ' Some personal issues ', 1, '2024-01-02 06:55:10', 0, NULL, 0, NULL, 1),
(7062, 16013, 'Imarque', 'Customer service', '2023-08-20', 15000.00, '1970-01-01', 15000.00, 'Teynampet', '2', '0 years 4 months', ' Some personal reasons', 1, '2024-01-02 06:57:32', 0, NULL, 0, NULL, 1),
(7063, 16016, 'Amazon', 'Digital associate', '2021-11-08', 20000.00, '2023-08-30', 20000.00, 'Chennai', '1', '1 years 9 months', ' Contract role', 1, '2024-01-02 07:53:12', 0, NULL, 0, NULL, 1),
(7064, 16015, 'hemshan Technology ', 'desktop ', '2021-12-10', 13000.00, '2023-04-04', 158000.00, 'chennai ', '1', '1 years 3 months', ' ', 1, '2024-01-02 07:57:36', 0, NULL, 0, NULL, 1),
(7065, 16017, 'Cedra business solutions ', 'Telecaller ', '2023-09-04', 12000.00, '2023-11-10', 12000.00, 'Pachaiyappa\'s College near ', '1', '0 years 3 months', ' Salary issue  so that\'s ', 1, '2024-01-02 09:34:12', 0, NULL, 0, NULL, 1),
(7066, 16020, 'Computer age manegement service limited ', 'Senior executive ', '2017-04-17', 7800.00, '2023-11-28', 16900.00, 'Mount road ', '1', '6 years 7 months', ' Salary hike ', 1, '2024-01-03 04:47:43', 0, NULL, 0, NULL, 1),
(7067, 16033, 'bankbazaar', 'senior relationship officer', '2021-10-13', 15000.00, '2023-11-03', 23000.00, 'chennai', '1', '2 years 0 months', ' Carrier growth', 1, '2024-01-03 03:53:24', 0, NULL, 0, NULL, 1),
(7068, 16032, 'Rane', 'Machine operator ', '2019-01-04', 14000.00, '2023-12-30', 18500.00, 'Chennai ', '1', '4 years 11 months', ' Health issue ', 1, '2024-01-04 06:31:00', 0, NULL, 0, NULL, 1),
(7069, 16044, 'trade plus', 'admin', '2017-05-01', 10000.00, '2022-12-15', 15000.00, 'nungabakkam', '1', '5 years 7 months', ' health issue', 1, '2024-01-04 07:05:38', 0, NULL, 0, NULL, 1),
(7070, 16046, 'Bharathu matrimony ', 'Senior executive ', '2021-07-07', 18000.00, '2024-01-04', 20000.00, '16', '1', '2 years 5 months', ' ', 1, '2024-01-04 08:15:15', 0, NULL, 0, NULL, 1),
(7071, 16031, 'rr donnelly', 'documents specialist', '2020-08-01', 13000.00, '2022-09-30', 13000.00, 'chennai', '1', '2 years 1 months', 'aggrement', 104, '2024-01-04 02:47:28', 0, NULL, 0, NULL, 1),
(7072, 16031, 'matrix', 'aduiting', '2023-01-01', 17000.00, '2023-11-30', 17000.00, 'chennai', '1', '0 years 10 months', 'team changed', 104, '2024-01-04 02:48:33', 0, NULL, 0, NULL, 1),
(7073, 16048, 'Muthoot fincorp', 'Junior Finance manager ', '2023-02-14', 4.20, '1970-01-01', 4.20, 'Chennai ', '2', '0 years 10 months', ' Shifting the team ', 1, '2024-01-04 09:51:06', 0, NULL, 0, NULL, 1),
(7074, 16047, 'Infrasoft Technologies ', 'Associate Consultant ', '2015-06-15', 325000.00, '2018-06-15', 405000.00, 'Chennai', '1', '3 years 0 months', 'Pressure due to travel', 1, '2024-01-04 10:06:05', 0, NULL, 0, NULL, 1),
(7075, 16052, 'Dhanalakshmi Srinivasan college', 'Telecaller', '2023-11-03', 19000.00, '2024-01-01', 190000.00, 'Perambalur', '1', '0 years 1 months', ' No satisfaction in salary', 1, '2024-01-04 10:27:50', 0, NULL, 0, NULL, 1),
(7076, 16053, 'RDB college of arts and science', 'Telecaller', '2024-01-04', 20000.00, '2025-04-10', 19000.00, 'Papanasam', '1', '1 years 3 months', ' Shift pattern', 1, '2024-01-04 10:40:38', 0, NULL, 0, NULL, 1),
(7077, 16054, 'Rdb college', 'Tellecaller', '2022-01-02', 19000.00, '2024-01-02', 19000.00, 'Papanasam', '1', '2 years 0 months', ' Salary not expert', 1, '2024-01-04 10:54:43', 0, NULL, 0, NULL, 1),
(7078, 16059, 'bajaj finance ltd', 'sales', '2024-01-04', 17500.00, '1970-01-01', 17500.00, 'hennai', '2', '0 years 0 months', ' SALARY EXPECTATION', 1, '2024-01-04 03:43:48', 0, NULL, 0, NULL, 1),
(7079, 16064, 'baruch business administration', 'process associate-credentialing', '2022-08-08', 15000.00, '2022-12-02', 15000.00, 'thanjavur', '1', '0 years 3 months', ' Cannot work in night shift', 1, '2024-01-05 05:41:12', 0, NULL, 0, NULL, 1),
(7080, 16066, 'trance home pvt ltd', 'telesales', '2022-11-15', 10000.00, '2023-12-15', 12000.00, 'thanjavur', '1', '1 years 1 months', 'salary issue', 108, '2024-01-05 12:06:48', 0, NULL, 0, NULL, 1),
(7081, 11681, 'UI Developer ', 'UI Developer', '2022-09-01', 18000.00, '1970-01-01', 18000.00, 'Chennai ', '2', '1 years 4 months', ' My career growth  before work from home so', 1, '2024-01-05 06:57:13', 0, NULL, 0, NULL, 1),
(7082, 16068, 'rajalakshmi eduverse', 'admin', '2023-05-22', 20000.00, '2024-01-03', 20000.00, 'chennai', '1', '0 years 7 months', ' Layoff', 1, '2024-01-05 12:14:37', 0, NULL, 0, NULL, 1),
(7083, 16074, 'Aditya brila capital ', 'Senior client relationship manager', '2023-08-01', 35000.00, '1970-01-01', 35000.00, 'Adayar', '2', '0 years 5 months', 'Work Location was so distance and fluctuate ', 1, '2024-01-06 06:44:49', 0, NULL, 0, NULL, 1),
(7084, 16077, 'Policybazaar insurance brokers pvt Ltd ', 'Financial advisor ', '2022-02-01', 25000.00, '2023-12-16', 30000.00, 'Bangalore ', '1', '1 years 10 months', ' ', 1, '2024-01-06 07:18:07', 0, NULL, 0, NULL, 1),
(7085, 16077, 'Policybazaar insurance brokers pvt Ltd ', 'Associate sales consultant ', '2022-02-01', 30.00, '2023-12-16', 30000.00, 'Domlur ', '1', '1 years 10 months', 'For growth purpose', 1, '2024-01-06 07:23:00', 0, NULL, 0, NULL, 1),
(7086, 16078, 'Casagrand India Pvt Ltd', 'Telecaller', '2022-10-12', 22.00, '1970-01-01', 22.00, 'Thiruvanmiyur', '2', '1 years 2 months', ' Due to hike of my salary', 1, '2024-01-06 08:47:23', 0, NULL, 0, NULL, 1),
(7087, 16086, 'Reliance Digital Limited ', 'Customer relationship Executive ', '2022-01-26', 18000.00, '2024-01-02', 18000.00, 'Porur', '1', '1 years 11 months', ' I\'m working in 2 years but still I didn\'t get any increment... This is the only reason.', 1, '2024-01-08 04:49:59', 0, NULL, 0, NULL, 1),
(7088, 16043, 'Edumpus portal llp ', 'Associate developer ', '2023-02-06', 15000.00, '2023-11-30', 15000.00, 'Chennai ', '1', '0 years 9 months', ' In my previous role, I resigned after 9 months due to unfulfilled benefits. Despite promises in the offer letter regarding the provision of ESI and PF, these benefits were not provided, leading to my decision to leave. I am excited about the prospect of joining Micromen Software Solutions and contributing to the success of your projects. I look forward to the opportunity for an interview to discuss my application further.\n', 1, '2024-01-08 07:42:06', 0, NULL, 0, NULL, 1),
(7089, 16083, 'Code page technology ', 'Programmer ', '2023-01-18', 15000.00, '2023-08-25', 15000.00, 'Chennai ', '1', '0 years 7 months', ' Iam studied in government exam ', 1, '2024-01-08 07:48:13', 0, NULL, 0, NULL, 1),
(7090, 16094, 'Kalaza studio', 'Vadapalani ', '2023-07-04', 10.00, '2023-12-29', 12000.00, 'Vadapalani ', '1', '0 years 5 months', ' I don\'t need that job anymore as not interested work ther anymore ', 1, '2024-01-08 07:48:58', 0, NULL, 0, NULL, 1),
(7091, 16098, 'Edila Management consultancy ', 'Assistant accounting ', '2023-05-01', 10000.00, '2023-09-16', 10000.00, 'Adyar', '1', '0 years 4 months', ' I have health issues so i took a break', 1, '2024-01-08 11:02:34', 0, NULL, 0, NULL, 1),
(7092, 16099, 'Tekie pvt Ltd ', 'Business development associate ', '2021-01-01', 15000.00, '2021-07-31', 15000.00, 'Chennai ', '1', '0 years 6 months', ' This was my internship during college day\'s ', 1, '2024-01-09 04:05:21', 0, NULL, 0, NULL, 1),
(7093, 16099, 'Global Hospital ', 'Ward secretary ', '2022-01-01', 15000.00, '2023-01-01', 15000.00, 'Perumbakkam', '1', '1 years 0 months', 'Salary growth is not proper ', 1, '2024-01-09 04:07:16', 0, NULL, 0, NULL, 1),
(7094, 16099, 'Bank Bazaar ', 'Customer Relationship officer ', '2023-03-16', 20000.00, '2023-08-20', 20000.00, 'Ambattur ', '1', '0 years 5 months', 'I can\'t able to fullfill my career growth ', 1, '2024-01-09 04:08:37', 0, NULL, 0, NULL, 1),
(7095, 16100, 'Accsys Consultancy ', 'Accounts Executive ', '2021-07-28', 12000.00, '2022-04-20', 12000.00, 'Kodambakkam, Chennai ', '1', '0 years 8 months', ' Due to medical issues', 1, '2024-01-09 04:34:46', 0, NULL, 0, NULL, 1),
(7096, 16100, 'JobixoIndia', 'Recruitment Officer ', '2022-11-07', 12000.00, '2023-02-07', 12000.00, 'Chennai ', '1', '0 years 3 months', 'Lay Off', 1, '2024-01-09 04:36:39', 0, NULL, 0, NULL, 1),
(7097, 16100, 'Seltam Technologies Solutions Private Limited ', 'HR Recruiter - Intern', '2023-09-04', 5000.00, '2024-01-02', 10000.00, 'Chennai', '1', '0 years 3 months', 'Internship completed ', 1, '2024-01-09 04:38:01', 0, NULL, 0, NULL, 1),
(7098, 16101, 'seltam technology solution pvt ltd ', 'hr recruiter ', '2023-09-04', 10000.00, '2024-01-02', 10000.00, 'madipakkam ', '1', '0 years 3 months', ' It was my internship  And it got over. That’s the reason i got relieved.', 1, '2024-01-09 04:40:12', 0, NULL, 0, NULL, 1),
(7099, 16102, 'Bank Bazaar ', 'Senior customer relationship officer ', '2023-02-18', 15000.00, '2023-10-18', 20000.00, 'Chennai', '1', '0 years 8 months', ' Carrier growth ', 1, '2024-01-09 04:45:09', 0, NULL, 0, NULL, 1),
(7100, 16104, 'Club oxygen resorts', 'Customer support executive ', '2020-09-02', 16000.00, '2021-12-31', 18000.00, 'Chennai ', '1', '1 years 3 months', ' For delivery ', 1, '2024-01-09 06:53:33', 0, NULL, 0, NULL, 1),
(7101, 16104, 'Classic planners', 'Draftsman ', '2018-06-01', 8000.00, '2019-10-31', 12000.00, 'Chennai ', '1', '1 years 4 months', 'For better position', 1, '2024-01-09 06:54:58', 0, NULL, 0, NULL, 1),
(7102, 16104, 'Sathyanarayana architect ', 'Designer', '2019-12-02', 15000.00, '2020-05-29', 15000.00, 'Chennai ', '1', '0 years 5 months', 'COVID ', 1, '2024-01-09 06:59:06', 0, NULL, 0, NULL, 1),
(7103, 16104, 'Club tripti holidays', 'Tele marketing ', '2023-05-04', 18000.00, '2023-08-31', 18000.00, 'Chennai', '1', '0 years 3 months', 'Company closed ', 1, '2024-01-09 07:00:20', 0, NULL, 0, NULL, 1),
(7104, 16106, 'Sutherland Global', 'Customer service associate ', '2023-08-28', 16000.00, '1970-01-01', 18000.00, 'Perungalathur ', '2', '0 years 4 months', ' It was a contract baser job so I just looking for a better opportunity to challenge my skills and develop myself ', 1, '2024-01-09 07:01:40', 0, NULL, 0, NULL, 1),
(7105, 16108, 'Dhandhind utility Pvt Ltd ', 'MIS Executive ', '2021-09-01', 25000.00, '2023-01-31', 25000.00, 'Thought light', '1', '1 years 4 months', 'Business opportunity ', 1, '2024-01-09 09:42:43', 0, NULL, 0, NULL, 1),
(7106, 16115, 'egrove systems pvt ltd', 'talent acquisition executive', '2022-06-06', 15000.00, '2023-03-07', 15000.00, 'madurai', '1', '0 years 9 months', ' Our team there in madurai brach has been closed due to recession .', 1, '2024-01-10 05:06:17', 1, '2024-01-10 05:09:05', 0, NULL, 1),
(7107, 16115, 'solartis technologies', 'production associate', '2021-10-11', 13000.00, '2022-04-07', 15000.00, 'madurai', '1', '0 years 5 months', 'I got a opportunity in HR domain so i releived from that company', 1, '2024-01-10 05:08:03', 1, '2024-01-10 05:08:30', 0, NULL, 1),
(7108, 16116, 'Ciel hr services pvt lmt', 'Hr recruiter ', '2022-11-07', 7112022.00, '2023-11-30', 16500.00, 'Anna nagar', '1', '1 years 0 months', ' They didn\'t have requirements in that period in November in manufacturing industry , they didnt gave me a salary on time ... and also they didn\'t accept me to write an mba exams also , even I gave 150+ candidates in a month also they didnt have me any incentives .', 1, '2024-01-10 06:01:51', 0, NULL, 0, NULL, 1),
(7109, 16117, 'CIEL HR SERVICES ', 'HR Recruiter ', '2022-11-02', 16500.00, '2023-11-30', 16500.00, 'Anna nagar ', '1', '1 years 0 months', ' Time period has ended', 1, '2024-01-10 06:18:36', 0, NULL, 0, NULL, 1),
(7110, 16120, 'Oro money ', 'Calling partner ', '2023-08-01', 22000.00, '2023-12-30', 22000.00, 'Nungambakkam chennai ', '1', '0 years 4 months', 'Growth my carrier ', 1, '2024-01-10 06:48:40', 0, NULL, 0, NULL, 1),
(7111, 16120, 'Teleperformance ', 'Relationship manager ', '2023-01-03', 22000.00, '2023-04-05', 22000.00, 'Bangalore ', '1', '0 years 3 months', 'Growth my carrier ', 1, '2024-01-10 06:50:51', 0, NULL, 0, NULL, 1),
(7112, 16126, 'Fangs technology ', 'Vivo brand advisor ', '2022-01-10', 10000.00, '2023-01-10', 10500.00, 'Thanjavur ', '1', '1 years 0 months', 'Looking for better opportunity ', 1, '2024-01-10 04:06:49', 0, NULL, 0, NULL, 1),
(7113, 16126, 'Smart Credit Indian finance ltd ', 'Sales Officer ', '2023-03-02', 13576.00, '2023-12-01', 13576.00, 'Thanjavur ', '1', '0 years 8 months', 'Family reason ', 1, '2024-01-10 04:08:42', 0, NULL, 0, NULL, 1),
(7114, 16127, 'The Chennai Mobiles ', 'Vysarpadi ', '2023-06-05', 13000.00, '1970-01-01', 13000.00, 'Perambur ', '2', '0 years 7 months', ' Seeking for hike in my Career And  doing other certification.', 1, '2024-01-10 04:18:49', 0, NULL, 0, NULL, 1),
(7115, 16128, 'BAJAJ FINANCE ', 'Telecalling ', '2022-09-21', 13.00, '2023-10-13', 17.00, 'Thanjavur ', '1', '1 years 0 months', ' Medical issue ', 1, '2024-01-11 04:59:30', 0, NULL, 0, NULL, 1),
(7116, 16133, 'Bajaj finance ', 'Telecaller', '2023-01-10', 13.00, '2023-09-21', 15.00, 'Thanjavur ', '1', '0 years 8 months', ' Medical issue ', 1, '2024-01-11 05:32:12', 0, NULL, 0, NULL, 1),
(7117, 16136, 'Ranstand ', 'Field work ', '2023-11-04', 20000.00, '2023-12-31', 16000.00, 'Alandur', '1', '0 years 1 months', ' ', 1, '2024-01-11 06:22:56', 0, NULL, 0, NULL, 1),
(7118, 16137, 'India Pistons Limited ', 'Appreciate training ', '2022-06-06', 15000.00, '2023-08-05', 15000.00, 'Chennai', '1', '1 years 1 months', 'One year Contract period over ', 1, '2024-01-11 07:15:24', 0, NULL, 0, NULL, 1),
(7119, 16134, 'Kriya next wealth private limited', 'Process associate', '2022-05-12', 18.00, '2023-06-29', 12.00, 'Vellore', '1', '1 years 1 months', ' Health issues', 1, '2024-01-11 07:18:41', 0, NULL, 0, NULL, 1),
(7120, 16140, 'Cognizant ', 'Jr product specialist ', '2021-10-22', 4.20, '2023-01-27', 4.50, 'Chennai ', '1', '1 years 3 months', ' Medical Reasons ', 1, '2024-01-11 10:00:51', 0, NULL, 0, NULL, 1),
(7121, 16139, 'Devcare solutions', 'US IT RECRUITER', '2022-11-16', 25000.00, '2023-11-17', 25000.00, 'Chennai', '1', '1 years 0 months', ' ', 1, '2024-01-11 10:19:39', 0, NULL, 0, NULL, 1),
(7122, 16141, 'Kotak Mahindra Bank', 'Hr executive', '2022-08-18', 20000.00, '2023-09-01', 23000.00, 'Chennai', '1', '1 years 0 months', 'Due to change in location ', 1, '2024-01-11 10:39:40', 0, NULL, 0, NULL, 1),
(7123, 16142, 'Jayasankar & Co', 'Article assistant and paid assistant ', '2020-09-17', 10000.00, '2024-12-18', 250000.00, 'Kanchipuram ', '1', '4 years 3 months', 'For better exposure and enhance my skills ', 1, '2024-01-12 04:10:49', 0, NULL, 0, NULL, 1),
(7124, 16145, 'TCS', 'Associate ', '2022-01-03', 13000.00, '2023-07-06', 13000.00, 'Chennai ', '1', '1 years 6 months', 'Due to maternity reasons ', 1, '2024-01-12 05:26:05', 0, NULL, 0, NULL, 1),
(7125, 16147, 'Cholamandam investment and finance company limited', 'Assistant manager ', '2022-09-23', 35000.00, '2023-09-11', 35000.00, 'Anna Salai', '1', '0 years 11 months', ' Travelling', 1, '2024-01-12 05:31:44', 0, NULL, 0, NULL, 1),
(7126, 16148, 'Recbots', 'HR recruiter', '2023-04-18', 13000.00, '2023-10-21', 13000.00, 'Chennai', '1', '0 years 6 months', ' Company closed', 1, '2024-01-12 05:32:44', 0, NULL, 0, NULL, 1),
(7127, 16149, 'ObjectWays ', 'Data analyst ', '2023-06-05', 11000.00, '2023-12-15', 13000.00, 'Karur', '1', '0 years 6 months', ' ', 1, '2024-01-12 05:46:11', 0, NULL, 0, NULL, 1),
(7128, 16125, 'Omkar staffing solutions ', 'HR RECRUITER ', '2022-03-10', 100000.00, '2022-09-30', 12000.00, 'Thiruvanmiyur', '1', '0 years 6 months', ' Personal reasons ', 1, '2024-01-12 06:28:44', 0, NULL, 0, NULL, 1),
(7129, 16154, 'Alpha Management consultants ', 'Talent Acquisition Executive ', '2022-03-08', 17000.00, '2023-05-31', 17000.00, 'Chetpet', '1', '1 years 2 months', 'Faced with distance issues due to change of workspace ', 1, '2024-01-12 07:35:28', 0, NULL, 0, NULL, 1),
(7130, 16153, 'Bookaride', 'Support Specialist and HR', '2022-12-14', 240000.00, '2023-12-31', 240000.00, 'Canada', '1', '1 years 0 months', ' Organisation facing Financial issues. ', 1, '2024-01-12 07:53:39', 0, NULL, 0, NULL, 1),
(7131, 16157, 'Gofuel private limited', 'HR&Admin', '2024-02-01', 15000.00, '2024-02-07', 15000.00, 'little mount ', '1', '0 years 0 months', ' ', 1, '2024-01-12 09:57:37', 0, NULL, 0, NULL, 1),
(7132, 16159, 'Sparrc Institute ', 'Accounts executive ', '2022-03-01', 20000.00, '2023-01-31', 20000.00, 'Chennai ', '1', '0 years 10 months', ' In order to enhance my skills.', 1, '2024-01-13 04:34:06', 0, NULL, 0, NULL, 1),
(7133, 16159, 'Maleva India Pvt Ltd ', 'Accounts executive ', '2023-04-12', 22000.00, '2023-09-30', 27000.00, 'Chennai ', '1', '0 years 5 months', 'Domain changed.Shifted to sales department.', 1, '2024-01-13 04:35:19', 0, NULL, 0, NULL, 1),
(7134, 16161, 'Tirumala milk products Pvt Ltd ', 'Senior Accounts executive ', '2022-10-13', 26000.00, '1970-01-01', 26000.00, 'Chennai ', '2', '1 years 3 months', ' Need explore finance department ', 1, '2024-01-13 05:23:41', 0, NULL, 0, NULL, 1),
(7135, 16163, 'standard Chartered bank', 'inbound voice process for uae', '2023-10-03', 25000.00, '2024-01-04', 25000.00, 'nungambakam', '1', '0 years 3 months', ' ', 1, '2024-01-13 06:01:44', 0, NULL, 0, NULL, 1),
(7136, 16165, 'Vijayavikram ', 'Accountant ', '2023-05-01', 15000.00, '2023-12-30', 15000.00, 'Redhills ', '1', '0 years 7 months', ' Timing problem ', 1, '2024-01-13 07:39:12', 0, NULL, 0, NULL, 1),
(7137, 16165, 'Vijay Vikram ', 'Accountant ', '2023-05-01', 15000.00, '2023-12-30', 15000.00, 'Redhills ', '1', '0 years 7 months', 'Timing problem ', 1, '2024-01-13 07:40:21', 0, NULL, 0, NULL, 1),
(7138, 16167, 'E2INFOSYSTEMS ', 'Flutter developer ', '2021-01-04', 21000.00, '2023-11-30', 70000.00, 'Chennai ', '1', '2 years 10 months', ' Carrier switch ', 1, '2024-01-13 10:10:24', 104, '2024-01-13 04:05:28', 0, NULL, 1),
(7139, 16170, 'Neomax', 'Office Management ', '2022-01-11', 5000.00, '2022-12-31', 10000.00, 'Vellore ', '1', '0 years 11 months', 'To switch over to IT and learn new Technologies ', 1, '2024-01-17 04:32:03', 0, NULL, 0, NULL, 1),
(7140, 16174, 'insightek global consulting private limited', 'talent Acquisition specialist', '2023-06-01', 3.35, '2023-12-28', 3.35, 'chenn ', '1', '0 years 6 months', ' They dont have clients to work and they are in financial crisis To they decided to close office in chennai so i resigned from the organisation', 1, '2024-01-17 05:20:16', 0, NULL, 0, NULL, 1),
(7141, 16178, 'Cedar businesses solution', 'Tele Sales executive', '2023-06-05', 18000.00, '2024-01-07', 18000.00, 'Koyambedu ', '1', '0 years 7 months', ' Long distance', 1, '2024-01-17 06:11:38', 0, NULL, 0, NULL, 1),
(7142, 16191, 'Frontal designs', 'Backend developer ', '2023-08-01', 22500.00, '2023-12-21', 22500.00, 'Porur', '1', '0 years 4 months', ' ', 1, '2024-01-18 04:56:27', 0, NULL, 0, NULL, 1),
(7143, 16191, 'Staqi technology ', 'Software developer ', '2019-05-01', 6000.00, '2019-11-30', 6000.00, 'Perambur', '1', '0 years 6 months', 'Due to corona ', 1, '2024-01-18 04:58:04', 0, NULL, 0, NULL, 1),
(7144, 16191, 'Banyan group', 'Backend developer ', '2022-02-01', 17500.00, '2023-07-29', 17500.00, 'Anna nagar', '1', '1 years 5 months', 'For environmental change', 1, '2024-01-18 04:59:47', 0, NULL, 0, NULL, 1),
(7145, 16193, 'Jeyyam Global foods limited ', 'Senior Mis Executive ', '2022-06-13', 40000.00, '2023-12-27', 40000.00, 'Chennai ', '1', '1 years 6 months', ' Office shifting to Salem ', 1, '2024-01-18 05:06:45', 0, NULL, 0, NULL, 1),
(7146, 16187, 'Ktc plastic and chemical pvt ltd', 'CRM', '2023-03-20', 21000.00, '1970-01-01', 21000.00, 'Chennai ', '2', '0 years 9 months', ' Currently working ', 1, '2024-01-18 05:11:41', 0, NULL, 0, NULL, 1),
(7147, 16195, 'FinAGG technology pvt Ltd ', 'Programmer analyst ', '2023-01-16', 450000.00, '2023-11-30', 450000.00, 'Chennai', '1', '0 years 10 months', ' For better opportunity and wanted to work in larger groups ', 1, '2024-01-18 05:29:23', 0, NULL, 0, NULL, 1),
(7148, 16200, 'Sight spectrum technology LLC ', 'Senior IT recruiter ', '2021-09-28', 8000.00, '2023-10-16', 15000.00, 'Chennai ', '1', '2 years 0 months', ' career growth ', 1, '2024-01-18 08:49:06', 0, NULL, 0, NULL, 1),
(7149, 16212, 'Kal cables pvt ltd', 'Team leader in customer support', '2019-06-06', 14000.00, '1970-01-01', 22350.00, 'Mylapore , chennai ', '2', '4 years 7 months', ' Wants to get placed in a banking or finance dept job ', 1, '2024-01-19 05:04:37', 0, NULL, 0, NULL, 1),
(7150, 16214, 'Treeline business solutions ', 'Junior Developer ', '2021-12-13', 2.00, '1970-01-01', 2.80, 'Chennai', '2', '2 years 1 months', ' Looking for new career opportunity.', 1, '2024-01-19 05:40:29', 0, NULL, 0, NULL, 1),
(7151, 16215, 'PickYourTrail ', 'Finance Associate ', '2022-07-05', 270000.00, '2023-08-18', 327000.00, 'Chennai ', '1', '1 years 1 months', ' Looking for new opportunities ', 1, '2024-01-19 05:55:39', 0, NULL, 0, NULL, 1),
(7152, 16217, 'Stats perform Private Limited ', 'Data Collection Analyst ', '2022-06-22', 21000.00, '2023-09-11', 21000.00, 'Chennai', '1', '1 years 2 months', ' \nFor enhancing my carrier Growth.', 1, '2024-01-19 06:35:38', 0, NULL, 0, NULL, 1),
(7153, 16221, 'Muthoot Finance ', 'Assistant manager ', '2017-11-17', 16100.00, '2023-12-14', 32000.00, 'Chennai ', '1', '6 years 0 months', ' ', 1, '2024-01-19 06:52:49', 0, NULL, 0, NULL, 1),
(7154, 16220, 'SD Solutions PTV Ltd ', 'Customer relationship executive ', '2022-06-05', 20000.00, '2023-11-20', 25000.00, 'Kodambakkam ', '1', '1 years 5 months', ' Marriage ', 1, '2024-01-19 07:25:14', 0, NULL, 0, NULL, 1),
(7155, 8732, 'Kotak Mahindra life insurance', 'dpt manager', '2023-01-26', 28000.00, '2023-09-26', 28000.00, 'chennai', '1', '0 years 8 months', 'attend course', 110, '2024-01-19 01:03:17', 110, '2024-01-19 01:03:54', 0, NULL, 0),
(7156, 16224, 'Alpha college of arts and sciences ', 'Poonamalle', '2021-12-06', 30000.00, '2024-01-31', 30000.00, 'Porur', '1', '2 years 1 months', ' Long distance for traveling ', 1, '2024-01-19 08:23:34', 0, NULL, 0, NULL, 1),
(7157, 16225, 'vibrant management ', 'telesales executive', '2022-09-07', 2500.00, '2023-11-15', 3000.00, 'dubai ', '1', '1 years 2 months', ' Due to health issues ', 1, '2024-01-19 01:13:11', 0, NULL, 0, NULL, 1),
(7158, 16226, 'Justdial Ltd', 'Team leader ', '2019-04-22', 25000.00, '2023-04-10', 25000.00, 'Chennai', '1', '3 years 11 months', ' Career Growth ', 1, '2024-01-19 04:47:18', 0, NULL, 0, NULL, 1),
(7159, 16229, 'VCMV Association ', 'Account executive ', '2023-04-17', 16000.00, '2023-10-31', 16000.00, 'Nungambakkam ', '1', '0 years 6 months', ' ', 1, '2024-01-20 04:30:55', 0, NULL, 0, NULL, 1),
(7160, 16238, 'Ippopay technology pvt ltd ', 'Associate software Engineer ', '2023-01-31', 25000.00, '2023-12-12', 25000.00, 'Chennai', '1', '0 years 10 months', '  completion of project period', 1, '2024-01-20 05:10:41', 0, NULL, 0, NULL, 1),
(7161, 16236, 'Ippopay technologies Pvt ', 'Associate software Engineer ', '2023-03-29', 25000.00, '2023-11-29', 25000.00, 'Guindy, chennai ', '1', '0 years 8 months', ' Completion of projects period.', 1, '2024-01-20 05:13:07', 0, NULL, 0, NULL, 1),
(7162, 16249, 'Webexcel technologies ', 'Junior software developer ', '2022-09-01', 10000.00, '2023-12-31', 15000.00, 'Chennai', '1', '1 years 3 months', ' For improving my skills and knowledge ', 1, '2024-01-20 09:42:13', 0, NULL, 0, NULL, 1),
(7163, 16250, 'Syncfusion software private limited ', 'Software Engineer ', '2022-12-01', 215000.00, '2023-12-21', 215000.00, 'Chetpet', '1', '1 years 0 months', ' Wanted to explore more on backend technologies but couldn\'t had that much exposure in backend technologies ', 1, '2024-01-20 09:48:57', 0, NULL, 0, NULL, 1),
(7164, 16248, 'Learning Spiral pvt Ltd ', 'Php Developer ', '2022-09-01', 45000.00, '2023-09-30', 45000.00, 'Chennai ', '1', '1 years 0 months', ' Project and Contract completed ', 1, '2024-01-20 09:57:59', 0, NULL, 0, NULL, 1),
(7165, 16259, 'Shuttles And Needles', 'Client Relationship Executive', '2022-07-18', 22000.00, '2024-01-22', 22000.00, 'Adyar,chennai', '2', '1 years 6 months', ' Its a designer studio.I dont have any Other growth related to my position.', 1, '2024-01-22 04:45:26', 0, NULL, 0, NULL, 1),
(7166, 16258, 'MMC Infotech Pvt Ltd ', 'Tele Service Executive ', '2011-08-17', 9000.00, '2015-04-03', 13000.00, 'Mount Road ', '1', '3 years 7 months', ' Personal ', 1, '2024-01-22 04:47:42', 0, NULL, 0, NULL, 1),
(7167, 16258, 'Sri Palsani Jewels', 'Customer Relationship Manager', '2023-08-09', 21000.00, '1970-01-01', 21000.00, 'Mylapore ', '2', '0 years 5 months', 'Office is getting shifted ', 1, '2024-01-22 04:49:15', 0, NULL, 0, NULL, 1),
(7168, 16265, 'UST', 'HR associate ', '2023-08-25', 275000.00, '2024-01-10', 275000.00, 'Chennai ', '1', '0 years 4 months', 'Health issues ', 1, '2024-01-22 05:15:50', 0, NULL, 0, NULL, 1),
(7169, 16262, 'Vimbri Media Prvt Ltd ', 'Sales executive ', '2023-07-10', 20000.00, '1970-01-01', 20000.00, 'Teynampet ', '2', '0 years 6 months', ' Insufficient Salary and no growth ', 1, '2024-01-22 05:21:23', 0, NULL, 0, NULL, 1),
(7170, 16253, 'Hexaware technology pvt ltd limited.', 'MIS executive ', '2022-05-31', 16000.00, '2023-08-25', 16000.00, 'Chennai City Corporation', '1', '1 years 2 months', ' Career growth ', 1, '2024-01-22 05:42:16', 0, NULL, 0, NULL, 1),
(7171, 16273, 'Infosource Private Limited', 'Officer', '2013-11-01', 10000.00, '2015-11-30', 10000.00, 'Mumbai', '1', '2 years 0 months', '3rd Year Studies', 1, '2024-01-22 06:30:42', 0, NULL, 0, NULL, 1),
(7172, 16273, 'Atos Syntel', 'Financial Analyst', '2016-05-10', 11000.00, '2021-05-28', 20000.00, 'Mumbai', '1', '5 years 0 months', 'Migration to Tamilnadu.', 1, '2024-01-22 06:32:51', 0, NULL, 0, NULL, 1),
(7173, 16273, 'HDFC Life Insurance Company & Star Health Insuranc', 'Composite Financial Consultant ', '2022-08-11', 20000.00, '1970-01-01', 25000.00, 'TamilNadu', '2', '1 years 5 months', 'Nothing', 1, '2024-01-22 06:35:13', 0, NULL, 0, NULL, 1),
(7174, 16273, 'RMR Financial Solutions', 'Telecaller', '2022-11-10', 10000.00, '2023-06-30', 10000.00, 'Cuddalore', '1', '0 years 7 months', 'Improper Salary', 1, '2024-01-22 06:39:17', 0, NULL, 0, NULL, 1),
(7175, 16278, 'Byjus', 'Business development associate ', '2023-09-05', 20000.00, '2024-01-22', 20000.00, 'Chennai ', '1', '0 years 0 months', 'So many layoff and closed some branches due to loss. ', 1, '2024-01-22 07:17:23', 0, NULL, 0, NULL, 1),
(7176, 16285, 'Techxes', 'Flutter Developer ', '2022-05-24', 13000.00, '1970-01-01', 22000.00, 'Trichy', '2', '1 years 7 months', 'For Career Growth and want to collaborate with dynamic Team.', 1, '2024-01-22 08:44:00', 0, NULL, 0, NULL, 1),
(7177, 16282, 'Pace setter business solution', 'tellecaller', '2022-04-18', 16000.00, '2022-07-30', 16000.00, 'kodambakkam', '1', '0 years 3 months', 'Salary issue', 1, '2024-01-22 09:25:45', 0, NULL, 0, NULL, 1),
(7178, 16283, 'Pace setter solutions ', 'Telle caller', '2022-07-22', 16000.00, '2023-07-22', 16000.00, 'Kodambakkam ', '1', '1 years 0 months', ' Salary issus', 1, '2024-01-22 09:27:54', 0, NULL, 0, NULL, 1),
(7179, 16283, 'Alphentrix global service pvt', 'Teller caller ', '2023-09-02', 17000.00, '1970-01-01', 18000.00, 'Kodambakkam ', '2', '0 years 4 months', 'Process closed ', 1, '2024-01-22 09:30:42', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7180, 16288, 'Pace setter pvt Ltd ', 'Telecaller', '2021-03-07', 13000.00, '2023-05-30', 13500.00, 'Nungambakkam ', '1', '2 years 2 months', ' salary increment issue', 1, '2024-01-22 09:31:43', 0, NULL, 0, NULL, 1),
(7181, 16288, 'Cedar business solutions ', 'Service providers associate ', '2023-06-05', 18000.00, '2024-01-07', 18000.00, 'Aarumbakkam', '1', '0 years 7 months', 'branch change so not convienent for that ', 1, '2024-01-22 09:34:25', 0, NULL, 0, NULL, 1),
(7182, 16289, 'Sightspectrum ', 'Software developer ', '2023-05-05', 1.50, '2024-01-05', 1.50, 'Chennai ', '1', '0 years 8 months', ' To enhance my skills', 1, '2024-01-22 09:37:06', 0, NULL, 0, NULL, 1),
(7183, 16298, 'Bourgault Enterprise Solutions LLP', 'Talent Acquisition Executive', '2022-07-04', 45000.00, '2022-12-04', 45000.00, 'Alwarpet', '1', '0 years 5 months', ' Contract role and post 6 months relieved from company', 1, '2024-01-23 04:47:30', 0, NULL, 0, NULL, 1),
(7184, 16298, 'Tech Mahindra', 'Team Lead', '2017-02-01', 33000.00, '2022-06-17', 33000.00, 'Shollinganallur', '1', '5 years 4 months', 'Want to start my career in HR and got opportunity with Bourgault', 1, '2024-01-23 04:49:06', 0, NULL, 0, NULL, 1),
(7185, 16302, 'Yakobu business solutions ', 'Php developer ', '2022-10-23', 10000.00, '2023-11-13', 10000.00, 'Korattur ', '1', '1 years 0 months', 'Salary delay ', 1, '2024-01-23 05:41:15', 0, NULL, 0, NULL, 1),
(7186, 16301, 'Cloud Logic Technology ', 'Web Developer', '2018-07-10', 8.00, '2020-03-18', 8.00, 'Pondicherry', '1', '1 years 8 months', 'Salary Issues and also learn about different environment', 1, '2024-01-23 05:46:38', 0, NULL, 0, NULL, 1),
(7187, 16300, 'SRI RAM INDUSTRIES ', 'Customer Relationship management ', '2017-07-01', 10000.00, '1970-01-01', 33000.00, 'MARAIMALAINAGAR ', '2', '0 years 0 months', ' *Learn new skill development \n*I am interested in Relocate office\n', 1, '2024-01-23 05:47:45', 0, NULL, 0, NULL, 1),
(7188, 16300, 'Sri Kvs industries ', 'Production Planner ', '2016-03-02', 8000.00, '2017-04-07', 9000.00, 'Ambattur ', '1', '1 years 1 months', 'I got new job. So I change my previous job.', 1, '2024-01-23 05:51:06', 1, '2024-01-23 05:51:29', 0, NULL, 1),
(7189, 16305, 'Sightspectrum LLC ', 'US IT Recruiter ', '2022-03-01', 12000.00, '2023-12-04', 15000.00, 'Thanjavur ', '1', '1 years 9 months', ' Next level Grout in my career', 1, '2024-01-23 05:58:58', 0, NULL, 0, NULL, 1),
(7190, 16307, 'Airtel', 'Account Manager ', '2023-05-01', 450000.00, '2024-02-01', 450000.00, 'Chennai', '1', '0 years 9 months', ' Home location and company location is too far. Not able to travel more than 120kms daily', 1, '2024-01-23 06:17:16', 0, NULL, 0, NULL, 1),
(7191, 16307, 'Diamond stone international school', 'Asst team leader', '2018-11-29', 250000.00, '2020-12-01', 250000.00, 'Bangalore', '1', '2 years 0 months', 'Pandemic ', 1, '2024-01-23 06:18:31', 0, NULL, 0, NULL, 1),
(7192, 16309, 'Hdb financial service ved', 'Telcalling', '2022-06-27', 12000.00, '2023-06-15', 12000.00, 'Mount road', '1', '0 years 11 months', 'Health issue', 1, '2024-01-23 07:01:49', 0, NULL, 0, NULL, 1),
(7193, 16318, 'United techno info system ', 'HR Executive ', '2023-02-01', 31166.00, '2023-11-24', 31166.00, 'Thousand lights, Chennai', '1', '0 years 9 months', ' Personal reason', 1, '2024-01-23 09:16:59', 110, '2024-01-23 02:49:22', 0, NULL, 1),
(7194, 16317, 'Sight spectrum technology ', 'IT recruiter ', '2023-02-07', 10800.00, '2023-07-28', 10800.00, 'Mepz', '1', '0 years 5 months', ' Financial growth ', 1, '2024-01-23 09:39:46', 0, NULL, 0, NULL, 1),
(7195, 16315, 'Sony India pvt Ltd (recruited by UDS)', 'Regional customer support ', '2022-09-15', 17600.00, '2023-12-31', 22300.00, 'Kodambakam', '1', '1 years 3 months', ' Personal reasons ', 1, '2024-01-23 10:02:16', 0, NULL, 0, NULL, 1),
(7196, 16324, 'Kesar gift mart ', 'HR Executive', '2022-08-08', 17000.00, '2024-01-18', 17000.00, 'Chennai ', '1', '1 years 5 months', ' Salary issue ', 1, '2024-01-24 05:55:50', 0, NULL, 0, NULL, 1),
(7197, 16326, 'Ampstek LLC ', 'US IT Recruiter ', '2023-04-17', 22000.00, '2023-09-18', 23000.00, 'Chennai ', '1', '0 years 5 months', ' Looking for better opportunity ', 1, '2024-01-24 06:39:42', 0, NULL, 0, NULL, 1),
(7198, 16326, 'Diamondpick ', 'Us IT Recruiter ', '2022-01-17', 23000.00, '2022-09-29', 23000.00, 'Chennai ', '1', '0 years 8 months', 'Looking for Higher studies opportunity ', 1, '2024-01-24 06:41:58', 0, NULL, 0, NULL, 1),
(7199, 16327, 'Rainbow impex', 'Senior business development executive', '2022-10-10', 25000.00, '2023-10-01', 25000.00, 'Chennai ', '1', '0 years 11 months', ' Meet an accident so wanna Take rest', 1, '2024-01-24 06:54:36', 0, NULL, 0, NULL, 1),
(7200, 16327, 'Velli ventures', 'Business development executive ', '2021-10-11', 20000.00, '2022-09-30', 20000.00, 'Thoripakkam ', '1', '0 years 11 months', 'Management is shifted to a neww person ', 1, '2024-01-24 06:58:11', 0, NULL, 0, NULL, 1),
(7201, 16327, 'Falcon enterprise', 'Sales & marketing ', '2019-08-01', 12000.00, '2021-04-01', 12000.00, 'Chennai', '1', '1 years 8 months', 'And a new opportunities ', 1, '2024-01-24 07:00:52', 0, NULL, 0, NULL, 1),
(7202, 16329, 'Procure healthcare', 'Data entry analyzer ', '2022-11-20', 15000.00, '2023-05-30', 15000.00, 'Ashok nagar', '1', '0 years 6 months', ' Shift timing not comfortable ', 1, '2024-01-24 09:24:53', 0, NULL, 0, NULL, 1),
(7203, 16335, 'Oyotoune house', 'Property manager ', '2021-03-11', 18000.00, '2023-11-15', 25000.00, 'Chennai', '1', '2 years 8 months', ' ', 1, '2024-01-25 05:04:00', 0, NULL, 0, NULL, 1),
(7204, 16337, 'Shriram Life Insurance ', 'Senior sales executive ', '2023-01-02', 17300.00, '2024-01-13', 173000.00, 'Egmore ', '1', '1 years 0 months', ' Some personal/health issues', 1, '2024-01-25 05:27:08', 0, NULL, 0, NULL, 1),
(7205, 16339, 'HDFC Ergo', 'Assistant Manager ', '2023-12-19', 23000.00, '2024-01-31', 23000.00, 'Ashok Nagar', '1', '0 years 1 months', ' Hence it\'s a direct sales which I\'m not fit for. even though, I had health issues continuously I\'m actually interested and my part of career is about Human Resources ', 1, '2024-01-25 06:03:16', 0, NULL, 0, NULL, 1),
(7206, 16340, 'Cameo', 'Tellecaller', '2023-04-11', 20000.00, '2024-09-23', 22000.00, 'Mount road', '1', '1 years 5 months', ' Want to get more experience in other field', 1, '2024-01-25 06:10:59', 0, NULL, 0, NULL, 1),
(7207, 16342, 'buzzwork bussiness solution', 'collection executive', '2022-08-05', 25000.00, '2024-02-05', 25000.00, 'housand light', '1', '1 years 6 months', ' Because of Night shift and also switching my carrer to next level', 1, '2024-01-25 06:13:03', 0, NULL, 0, NULL, 1),
(7208, 16341, 'porter logistics', 'trainee business associate', '2022-07-12', 20000.00, '2023-12-30', 20000.00, 'chennai', '1', '1 years 5 months', ' Carrer gro and new learnings', 1, '2024-01-25 06:13:40', 0, NULL, 0, NULL, 1),
(7209, 16345, 'Smavy Academy ', 'Business development executive ', '2023-06-01', 21000.00, '2024-01-31', 21000.00, 'Teynampet ', '1', '0 years 7 months', ' ', 1, '2024-01-25 08:05:04', 0, NULL, 0, NULL, 1),
(7210, 16347, 'Hdb financial services Pvt Ltd ', 'Customer support cum MIS', '2021-07-14', 17500.00, '2024-01-15', 21500.00, 'Chennai', '1', '2 years 6 months', ' Career growth ', 1, '2024-01-25 09:16:04', 0, NULL, 0, NULL, 1),
(7211, 16344, 'Hotel grand palace ', 'Front office executive ', '2019-05-13', 5000.00, '2020-03-28', 5000.00, 'Chennai ', '1', '0 years 10 months', ' Exams', 1, '2024-01-25 09:26:18', 0, NULL, 0, NULL, 1),
(7212, 16344, 'House hunt', 'Admin cum receptionist ', '2020-04-27', 10000.00, '2021-03-20', 10000.00, 'Chennai ', '1', '0 years 10 months', 'After corona I got an international job opportunity. There my sister are working so I relieved ', 1, '2024-01-25 09:29:56', 0, NULL, 0, NULL, 1),
(7213, 16344, 'Lycatel bpo pvt ltd ', 'Customer care support ', '2021-03-26', 20000.00, '2022-09-30', 20000.00, 'Chennai', '1', '1 years 6 months', 'Because of pregnancy ', 1, '2024-01-25 09:32:18', 0, NULL, 0, NULL, 1),
(7214, 16344, 'Netmeds.com', 'Executive customer care ', '2022-10-06', 30000.00, '1970-01-01', 30000.00, 'Chennai ', '2', '1 years 3 months', 'I need to improve my talent and also I need to week. End week off became I need to spend time with my family ', 1, '2024-01-25 09:34:45', 0, NULL, 0, NULL, 1),
(7215, 16346, 'Eagle-Tech IT solutions ', 'HR Recruiter ', '2022-10-17', 13000.00, '2023-10-31', 15200.00, 'Tnagar, chennai ', '1', '1 years 0 months', ' If I had Achieved the target company will provide full cTC ,Not Achieve Target they had Revised the Salary Range', 1, '2024-01-25 10:00:33', 0, NULL, 0, NULL, 1),
(7216, 16351, 'Justdial.com', 'Telemarketing Executive ', '2018-11-20', 22000.00, '2024-02-10', 22000.00, 'Chennai ', '1', '2 years 4 months', ' Salary issue.', 1, '2024-01-27 05:13:44', 1, '2024-01-27 05:16:16', 0, NULL, 1),
(7217, 16352, 'Chemcrown ', 'CRM', '2022-01-27', 17000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '2 years 0 months', ' My owner is shifting company to us', 1, '2024-01-27 07:11:42', 0, NULL, 0, NULL, 1),
(7218, 16354, 'Porter logistics ', 'Trainee business associate ', '2022-12-20', 17000.00, '2024-01-13', 18000.00, 'Little mount ', '1', '1 years 0 months', ' Onboarding\nTicketing\nTelecalling ', 1, '2024-01-27 07:32:15', 0, NULL, 0, NULL, 1),
(7219, 16358, 'Exato.ai', 'Junior Software Engineer ', '2023-05-15', 20000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '0 years 8 months', ' Can\'t learn the things efficiently ', 1, '2024-01-27 08:52:07', 0, NULL, 0, NULL, 1),
(7220, 16357, 'All sec technology Pvt Ltd ', 'Sales ', '2022-12-24', 17000.00, '2023-12-22', 17000.00, 'Vellacherry', '1', '0 years 11 months', ' Process was closed ', 1, '2024-01-27 09:16:08', 0, NULL, 0, NULL, 1),
(7221, 16365, 'Nivetha software solutions and consultants ', 'HR Recruiter ', '2023-12-11', 10000.00, '2024-01-27', 10000.00, 'Chennai ', '1', '0 years 1 months', ' Less pay and more work pressure. Wasn\'t assigned a proper team and could never follow up with candidates', 1, '2024-01-29 04:58:03', 0, NULL, 0, NULL, 1),
(7222, 16370, 'Vcan informatic servittum pvt ltd ', 'HR Recruiter ', '2021-08-05', 15000.00, '2023-08-31', 20000.00, 'Chennai porur', '1', '2 years 0 months', ' Career growth ', 1, '2024-01-29 05:27:28', 0, NULL, 0, NULL, 1),
(7223, 16369, 'Bisleri international pvt.ltd', 'Human Resource Trainee', '2022-08-18', 198000.00, '2023-03-31', 198000.00, 'Chennai ', '1', '0 years 7 months', ' Planned to study master\'s ', 1, '2024-01-29 05:28:40', 0, NULL, 0, NULL, 1),
(7224, 16373, 'Lapiz digital services', 'Executive HR', '2022-04-01', 21000.00, '2023-09-08', 26000.00, 'Chennai ', '1', '1 years 5 months', ' Better opportunity', 1, '2024-01-29 06:21:57', 0, NULL, 0, NULL, 1),
(7225, 16375, 'Staunch info solutions', 'System analyst', '2022-12-12', 20000.00, '2023-05-31', 2.40, 'Chennai', '1', '0 years 5 months', ' Health issue', 1, '2024-01-29 06:41:40', 0, NULL, 0, NULL, 1),
(7226, 16376, 'Adtitude digital llc ', 'HR recruiter ', '2022-10-01', 12000.00, '2023-11-01', 15000.00, 'Chennai ', '1', '1 years 1 months', ' ', 1, '2024-01-29 06:50:24', 0, NULL, 0, NULL, 1),
(7227, 16380, 'Sip dhanasekaran and co', 'Accounts executive ', '2019-06-18', 15000.00, '2021-12-31', 22000.00, 'Parrys', '1', '2 years 6 months', ' Job for Reputation company ', 1, '2024-01-29 08:17:45', 0, NULL, 0, NULL, 1),
(7228, 16380, 'Fa premium insurance broking Pvt limited ', 'Junior finance and accounts executive ', '2022-01-17', 25000.00, '1970-01-01', 27000.00, 'Ekkatuthangal ', '2', '2 years 0 months', 'No need for finance, because accure other companies ', 1, '2024-01-29 08:20:48', 0, NULL, 0, NULL, 1),
(7229, 16381, 'Karvy  Digi Konnect limited ', 'Customer support officer ', '2019-11-16', 9000.00, '1970-01-01', 9000.00, 'Velachery ', '2', '4 years 2 months', ' No that company closed ', 1, '2024-01-29 09:51:03', 0, NULL, 0, NULL, 1),
(7230, 16382, 'Urbanrise , Alliance group of company ', 'Software developer ', '2023-01-02', 15000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '1 years 0 months', ' For my skill improvement and career growth ', 1, '2024-01-29 10:04:58', 0, NULL, 0, NULL, 1),
(7231, 16381, 'ARMSOFTECH private limited ', 'Sales executive ', '2020-10-13', 12278.00, '2022-03-04', 12278.00, 'Chennai ', '1', '1 years 4 months', 'Company closed ', 1, '2024-01-29 10:15:31', 0, NULL, 0, NULL, 1),
(7232, 16381, 'Oro private limited ', 'Calling team lead', '2022-03-09', 16500.00, '2022-10-31', 16500.00, 'Chennai ', '1', '0 years 7 months', 'Long distance ', 1, '2024-01-29 10:18:55', 0, NULL, 0, NULL, 1),
(7233, 16381, 'Sulekha.com new media private limited ', 'Business development executive ', '2022-11-01', 23006.00, '2023-08-31', 23006.00, 'Chennai ', '1', '0 years 9 months', 'Long distance ', 1, '2024-01-29 10:21:56', 0, NULL, 0, NULL, 1),
(7234, 16386, 'Shri Abhirami Construction ', 'Fire and Safety Officer ', '2022-12-01', 19000.00, '2023-12-31', 19000.00, 'Chennai ', '1', '1 years 0 months', ' Contract date is over ', 1, '2024-01-29 01:33:19', 0, NULL, 0, NULL, 1),
(7235, 9910, 'The dollar business', 'Sales_junior executive ', '2022-05-05', 17000.00, '2022-11-09', 18800.00, 'Teynampet ', '1', '0 years 6 months', ' Due to office reallocate to Hyderabad..', 1, '2024-01-30 04:49:10', 0, NULL, 0, NULL, 1),
(7236, 9910, 'Casagrand Builders ', 'Telemarketing executive ', '2022-11-09', 18800.00, '1970-01-01', 18800.00, 'Thiruvanmiyur ', '2', '1 years 2 months', 'Due to carrer growth', 1, '2024-01-30 04:50:11', 0, NULL, 0, NULL, 1),
(7237, 16392, 'Vooki promoter', 'Sales executive ', '2021-12-30', 12000.00, '2022-11-30', 12000.00, 'Thanjavur', '1', '0 years 11 months', ' Timing', 1, '2024-01-30 05:09:16', 0, NULL, 0, NULL, 1),
(7238, 16393, 'PMS ALPHA ', 'IT EXECUTIVE ', '2023-06-27', 20000.00, '1970-01-01', 22000.00, 'Mount road ', '2', '0 years 7 months', ' I believe I\'ve progressed as far as I can in my current role. I need a change of environment to motivate me. I want to develop a new skill that isn\'t required in my current Job', 1, '2024-01-30 05:11:42', 0, NULL, 0, NULL, 1),
(7239, 16389, 'Akshaya gold', 'Billing operator', '2021-03-14', 7000.00, '2022-04-06', 7000.00, 'Chennai', '1', '1 years 0 months', 'Company branch closed', 1, '2024-01-30 05:22:29', 0, NULL, 0, NULL, 1),
(7240, 16400, 'Novigo', 'Ar Caller', '2022-09-14', 15000.00, '2023-12-17', 15000.00, 'Chennai', '1', '1 years 3 months', ' Due to accident in right  leg can\'t Able to continue', 1, '2024-01-30 05:55:54', 0, NULL, 0, NULL, 1),
(7241, 16397, 'Hotfoot technology pvt Ltd ', 'Ui developer ', '2023-05-08', 22500.00, '2023-08-09', 22500.00, 'Chennai ', '1', '0 years 3 months', ' Carrer growth ', 1, '2024-01-30 06:12:10', 0, NULL, 0, NULL, 1),
(7242, 16403, 'Tcs', 'Hr Associate', '2021-04-19', 13000.00, '2023-10-31', 13000.00, 'Chennai', '1', '2 years 6 months', ' ', 1, '2024-01-30 06:14:58', 0, NULL, 0, NULL, 1),
(7243, 16404, 'Tcs', 'Hr associate', '2021-02-22', 18000.00, '2024-01-31', 18000.00, 'Chennai ', '1', '2 years 11 months', ' Contract ending', 1, '2024-01-30 06:15:19', 0, NULL, 0, NULL, 1),
(7244, 16408, 'Shriram life insurance ', 'Senior executive ', '2023-06-13', 17000.00, '1970-01-01', 17000.00, 'Chennai', '2', '0 years 7 months', ' My wife delivery ', 1, '2024-01-30 07:36:47', 0, NULL, 0, NULL, 1),
(7245, 16411, 'Tata Consultancy Services', 'Data Analyst', '2021-01-22', 18000.00, '2023-12-01', 300000.00, 'Chennai', '1', '2 years 10 months', ' To explore new challenges and opportunity. As well as enter into the IT field. ', 1, '2024-01-30 09:30:15', 0, NULL, 0, NULL, 1),
(7246, 16410, 'Ocean softwares', 'Jr. HR Executive', '2022-08-01', 18000.00, '2023-07-31', 18000.00, 'Chennai', '1', '0 years 11 months', ' Company facing financial issues', 1, '2024-01-30 09:34:10', 0, NULL, 0, NULL, 1),
(7247, 16412, 'Innovsource service private limited Chennai ', 'Hr recuriter ', '2023-10-25', 20000.00, '2023-12-25', 20000.00, 'Nungambakkam ', '1', '0 years 2 months', ' Health issues ', 1, '2024-01-30 09:47:02', 0, NULL, 0, NULL, 1),
(7248, 16414, 'Fulgid software solutions Pvt Ltd ', 'Mern Stack developer ', '2023-12-01', 10000.00, '2024-12-31', 20000.00, 'Kodambakkam ', '1', '1 years 0 months', ' Next step to career ', 1, '2024-01-30 09:48:04', 0, NULL, 0, NULL, 1),
(7249, 16413, 'Leorainfotech', 'Junior Developer', '2021-12-01', 15000.00, '2023-06-30', 25000.00, 'Gummidipoondi', '1', '1 years 6 months', ' Location ', 1, '2024-01-30 09:49:10', 0, NULL, 0, NULL, 1),
(7250, 16413, 'Digispoc technology ', 'Associate Developer', '2023-07-01', 30000.00, '2023-11-30', 30000.00, 'Thousands lights', '1', '0 years 4 months', 'Carrier growth', 1, '2024-01-30 09:52:08', 0, NULL, 0, NULL, 1),
(7251, 16428, 'Duruva Finance Private limited ', 'HR Executive ', '2023-07-01', 2.04, '2024-01-13', 2.16, 'Karur', '1', '0 years 6 months', ' Traveling issue', 1, '2024-01-31 05:45:52', 0, NULL, 0, NULL, 1),
(7252, 16426, 'SGS co', 'Production executive ', '2021-05-10', 20000.00, '2024-03-08', 28000.00, 'Taramani', '1', '2 years 9 months', 'I have need more creative and up skill myself', 1, '2024-01-31 05:51:49', 0, NULL, 0, NULL, 1),
(7253, 16426, 'Amnet systems', 'Trainee production executive ', '2019-07-01', 8000.00, '2021-05-07', 8000.00, 'Ekkatuthankal', '1', '1 years 10 months', 'For salary upadte', 1, '2024-01-31 05:53:26', 0, NULL, 0, NULL, 1),
(7254, 16427, 'Tradeindia.com', 'Relationship Manager ', '2023-08-17', 25000.00, '2023-11-04', 25000.00, 'Chennai ', '1', '0 years 2 months', ' i have been worked with that company to gain my knowledge and experience. now i need to push myself to the next level.', 1, '2024-01-31 06:24:09', 0, NULL, 0, NULL, 1),
(7255, 16427, 'Indiamart ', 'Senior sales Executive ', '2021-12-20', 21000.00, '2022-10-12', 23000.00, 'Chennai ', '1', '0 years 9 months', 'i looked for an opportunity to advance my career', 1, '2024-01-31 06:33:08', 0, NULL, 0, NULL, 1),
(7256, 16441, 'Access health care ', 'Ar caller ', '2023-08-06', 20000.00, '2024-01-20', 20000.00, 'Porur ', '1', '0 years 5 months', ' ', 1, '2024-01-31 06:47:31', 0, NULL, 0, NULL, 1),
(7257, 16445, 'msv import and export ', 'client management', '2022-11-10', 22500.00, '2023-09-09', 22500.00, 'chennai', '1', '0 years 9 months', ' ', 1, '2024-01-31 07:20:21', 0, NULL, 0, NULL, 1),
(7258, 16437, 'Oro cop technologies Pvt Ltd ', 'Calling partner ', '2021-03-15', 21000.00, '2023-09-28', 23000.00, 'thousand lights ', '1', '2 years 6 months', ' Met with accident ', 1, '2024-01-31 07:46:45', 0, NULL, 0, NULL, 1),
(7259, 16447, 'Lakson technology ', 'UI/UX designer & developer ', '2022-09-12', 27000.00, '2024-02-15', 27000.00, 'Chennai ', '1', '1 years 5 months', 'I want to experience the new technology and ambience to develop my career ', 1, '2024-01-31 08:42:03', 0, NULL, 0, NULL, 1),
(7260, 16448, 'shriram finance ltd', 'junior executive', '2021-09-20', 10000.00, '1970-01-01', 13500.00, 'santhome', '2', '2 years 4 months', 'For career development and to improve my skills ', 1, '2024-01-31 10:27:55', 0, NULL, 0, NULL, 1),
(7261, 16453, 'Senthamarai kannan', 'Accounts and audit assistant ', '2023-06-23', 20000.00, '2023-10-31', 20000.00, 'Anna nagar', '1', '0 years 4 months', 'Problem with employer', 1, '2024-01-31 02:49:51', 0, NULL, 0, NULL, 1),
(7262, 16454, 'Indusind Bank ', 'Executive ', '2022-07-06', 21000.00, '2023-08-05', 280000.00, 'Chennai ', '1', '1 years 0 months', ' Due to sister medical issues ', 1, '2024-02-01 02:36:09', 0, NULL, 0, NULL, 1),
(7263, 16462, 'Kyros technologies ', 'Flutter developer ', '2022-07-06', 16500.00, '2023-09-01', 16500.00, 'Adayar chenni', '1', '1 years 1 months', ' My company has no project', 1, '2024-02-01 05:39:05', 0, NULL, 0, NULL, 1),
(7264, 16465, 'Bassure ', 'Associate consultant ', '2023-04-11', 16000.00, '2024-02-01', 16000.00, 'Chennai ', '2', '0 years 9 months', '  My company is facing some financial issues so my organisation  desired to layoff the employee but iam  i am working as a intern in Bassure without salary ', 1, '2024-02-01 05:59:09', 0, NULL, 0, NULL, 1),
(7265, 16466, 'Bassure solutions ', 'Associate consultant ', '2023-04-11', 200000.00, '2024-02-01', 200000.00, 'Chennai ', '1', '0 years 9 months', ' Company situation ', 1, '2024-02-01 06:01:16', 0, NULL, 0, NULL, 1),
(7266, 16474, 'Beyond drops private limited Zuqo', 'Voip engineer ', '2023-07-16', 23000.00, '2023-10-16', 23000.00, 'Bengaluru ', '1', '0 years 3 months', ' Due to medical issue', 1, '2024-02-01 06:52:20', 0, NULL, 0, NULL, 1),
(7267, 16474, 'Greens Technology ', 'Software Tester Trainer', '2023-03-01', 18000.00, '2023-06-15', 18000.00, 'Chennai', '1', '0 years 3 months', 'Due to explore the real time work experience ', 1, '2024-02-01 06:54:05', 0, NULL, 0, NULL, 1),
(7268, 16478, 'Moving Walls India Pvt Ltd ', 'Associate  Human Resources ', '2023-04-10', 30000.00, '1970-01-01', 30000.00, 'Chennai ', '2', '0 years 9 months', ' Career Growth ', 1, '2024-02-01 10:07:55', 0, NULL, 0, NULL, 1),
(7269, 16478, 'Bahwan Cyber Tek consulting ', 'Executive Recruiter ', '2022-04-02', 15000.00, '2024-03-30', 15000.00, 'Chennai ', '1', '1 years 11 months', 'Career Growth ', 1, '2024-02-01 10:09:30', 0, NULL, 0, NULL, 1),
(7270, 16479, 'b2b', 'sales marketing', '2023-01-01', 19000.00, '2023-12-01', 19000.00, 'chennai', '1', '0 years 11 months', ' ', 1, '2024-02-01 11:09:27', 0, NULL, 0, NULL, 1),
(7271, 16481, 'Cameo corporate service limited', 'Assistant', '2023-06-22', 10000.00, '2024-01-22', 10000.00, 'Chennai', '1', '0 years 7 months', ' Salary issue ', 1, '2024-02-02 04:01:49', 0, NULL, 0, NULL, 1),
(7272, 16483, 'The Dollar Business', 'Team Leader ', '2021-11-15', 22000.00, '1970-01-01', 33800.00, 'Teynampet ', '2', '2 years 2 months', ' Looking for better career growth in sales...want to be explore new opportunities..', 1, '2024-02-02 04:50:53', 1, '2024-02-02 04:56:30', 0, NULL, 0),
(7273, 16484, 'Think and learn private limited', 'Business executive ', '2021-08-02', 25000.00, '2022-03-30', 25000.00, 'Chennai', '1', '0 years 7 months', ' Promotion ', 1, '2024-02-02 04:54:16', 0, NULL, 0, NULL, 1),
(7274, 16483, 'Deektech solutions', 'Customer relationship officer', '2019-02-01', 12000.00, '2020-02-28', 12000.00, 'Saidapet', '1', '1 years 0 months', ' Due to covid work from home option was not feasible so changed my job', 1, '2024-02-02 05:00:10', 0, NULL, 0, NULL, 1),
(7275, 16484, 'Think amd learn Private limited (Byju\'s)', 'Team lead', '2022-03-30', 27500.00, '2022-11-30', 30000.00, 'Chennai', '1', '0 years 8 months', 'Layoff', 1, '2024-02-02 05:00:45', 0, NULL, 0, NULL, 1),
(7276, 16483, 'Innovsource services Pvt Ltd ', 'Business relationship executive ', '2020-03-02', 16000.00, '2021-11-13', 19000.00, 'Aminjikarai ', '1', '1 years 8 months', 'Due to covid for a better growth shifted my job', 1, '2024-02-02 05:01:36', 0, NULL, 0, NULL, 1),
(7277, 16483, 'VIMBRI MEDIA PVT ltd ', 'Team Leader ', '2021-11-15', 22000.00, '1970-01-01', 33800.00, 'Teynampet ', '2', '2 years 2 months', 'Wanted a better career growth in sales..and also want to explore new opportunities ', 1, '2024-02-02 05:02:37', 0, NULL, 0, NULL, 1),
(7278, 16455, 'Stats Perform private limited ', 'DCA', '2022-12-01', 13500.00, '2023-07-31', 15900.00, 'Chennai ', '1', '0 years 7 months', ' I\'m faced  major accident so I can\'t able to work there .', 1, '2024-02-02 06:39:53', 0, NULL, 0, NULL, 1),
(7279, 16505, 'Power of N', 'Front end developer', '2015-06-01', 5000.00, '2015-12-01', 15000.00, 'Chennai', '1', '0 years 6 months', ' ', 1, '2024-02-02 09:37:57', 110, '2024-02-02 03:34:02', 0, NULL, 0),
(7280, 16507, 'Omega health care', 'Ar executive ', '2022-09-30', 18000.00, '1970-01-01', 18000.00, 'Omr ', '2', '1 years 4 months', ' ', 1, '2024-02-02 10:25:27', 0, NULL, 0, NULL, 1),
(7281, 16506, 'Bajaj Finance ', 'Chennai ', '2023-03-01', 31.00, '1970-01-01', 17500.00, 'Nungambakkam ', '2', '0 years 11 months', ' Familey Issue ', 1, '2024-02-02 10:28:29', 0, NULL, 0, NULL, 1),
(7282, 16509, 'Baliga lighting equipments private limited', 'Electrical Assambly ', '2023-08-05', 13000.00, '2024-01-05', 13000.00, 'Kovilambakkam', '1', '0 years 5 months', ' Salary issues ', 1, '2024-02-03 07:14:03', 0, NULL, 0, NULL, 1),
(7283, 16513, 'Ethical Intelligent Technologies ', 'UI ux Designer ', '2023-08-02', 250000.00, '1970-01-01', 250000.00, 'Chennai', '2', '0 years 6 months', ' Would like to gain more experience and develop my skill by upgrading my work', 1, '2024-02-03 07:14:24', 0, NULL, 0, NULL, 1),
(7284, 16515, 'Aptus Value Housing Private Limited', 'Officer', '2022-12-02', 20000.00, '2023-07-14', 20000.00, 'Chennai ', '1', '0 years 7 months', ' Due to switch role ', 1, '2024-02-03 09:21:42', 0, NULL, 0, NULL, 1),
(7285, 16518, 'A john moris @ co', 'Audit Assistant ', '2022-08-01', 13000.00, '2023-08-01', 13000.00, 'Royapettah ', '1', '1 years 0 months', ' To get more experience in big organisation and salary shortage ', 1, '2024-02-03 09:31:19', 0, NULL, 0, NULL, 1),
(7286, 16516, 'Ippopay technology', 'Tele slaes executive', '2023-03-29', 1.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 10 months', ' Process are going to winding up', 1, '2024-02-03 10:04:35', 0, NULL, 0, NULL, 1),
(7287, 16516, 'Monexo fintech', 'Customer support executive', '2022-05-14', 1.00, '2022-12-15', 16000.00, 'Chennai', '1', '0 years 7 months', 'It\'s short time process', 1, '2024-02-03 10:07:00', 0, NULL, 0, NULL, 1),
(7288, 16516, 'Plada infotech', 'Phone banking officer', '2021-03-17', 1.00, '2022-03-31', 13500.00, 'Chennai', '1', '1 years 0 months', 'Higher education', 1, '2024-02-03 10:09:36', 0, NULL, 0, NULL, 1),
(7289, 16524, 'Diamondpick ', 'HR Recruiter ', '2022-03-03', 25000.00, '2023-09-29', 25000.00, 'Chennai', '1', '1 years 6 months', ' Marriage', 1, '2024-02-05 04:45:28', 0, NULL, 0, NULL, 1),
(7290, 16524, 'Sutherland', 'BPO', '2021-09-01', 15000.00, '2022-03-04', 15000.00, 'Chennai', '1', '0 years 6 months', 'Its a 6 month contract', 1, '2024-02-05 04:47:12', 0, NULL, 0, NULL, 1),
(7291, 16526, 'vimbri media private limited', 'creative exim opportunities', '2024-03-18', 35000.00, '1970-01-01', 35000.00, 'chennai', '2', '0 years 1 months', ' Career growth', 1, '2024-02-05 05:06:21', 0, NULL, 0, NULL, 1),
(7292, 16527, 'Vimbri media pvt ltd', 'Creative exim opportunity  senior executive ', '2021-12-13', 25000.00, '1970-01-01', 25000.00, 'Chennai', '2', '2 years 1 months', ' Carrier growth', 1, '2024-02-05 05:12:28', 0, NULL, 0, NULL, 1),
(7293, 16540, 'Oasys cybernetics Pvt Ltd ', 'Software Engineer Trainee ', '2023-09-11', 20000.00, '2024-02-12', 20000.00, 'Chennai ', '1', '0 years 5 months', 'I am seeking new opportunities due to the downsizing of projects in my current industry.', 1, '2024-02-05 05:35:47', 0, NULL, 0, NULL, 1),
(7294, 16532, 'Zigma Technology india Pvt. ', 'System Admin ', '2021-09-01', 10000.00, '2022-04-01', 12000.00, 'Chennai', '1', '0 years 7 months', 'For Better position ', 1, '2024-02-05 05:38:59', 0, NULL, 0, NULL, 1),
(7295, 16532, 'Straive Scientific Publication ', 'Junior executive ', '2022-04-01', 14000.00, '2023-04-30', 14000.00, 'Chennai', '1', '1 years 0 months', 'For entering into the developing field ', 1, '2024-02-05 05:41:36', 0, NULL, 0, NULL, 1),
(7296, 16532, 'Nastaf Technologies ', 'Backend developer ', '2023-05-01', 20000.00, '1970-01-01', 27000.00, 'Chennai', '2', '0 years 9 months', 'I\'m looking for a new opportunity. ', 1, '2024-02-05 05:43:49', 0, NULL, 0, NULL, 1),
(7297, 16547, 'byjus think &learn private limited ', 'business Development Associate ', '2023-04-19', 35000.00, '2023-10-04', 25000.00, 'chennai ', '1', '0 years 9 months', ' Work timings was for 13 hours couldnt handle my sleep Schedule ', 1, '2024-02-05 06:04:30', 0, NULL, 0, NULL, 1),
(7298, 16572, 'Vivo Mobiles India', 'Brand Promoter', '2023-05-09', 17000.00, '2023-08-01', 17000.00, 'Tirunelveli ', '1', '0 years 2 months', ' Personal issues ', 1, '2024-02-05 06:32:08', 0, NULL, 0, NULL, 1),
(7299, 16576, 'Growth As A Service(GRAAS)', 'Associate Software Engineer ', '2021-05-12', 13000.00, '2023-10-25', 35000.00, 'Guindy', '1', '2 years 5 months', 'Due to some health issues.\nNow I am good and fine to restart my career with renewed energy to contribute to the success of cAFS infotech team.', 1, '2024-02-05 06:43:17', 0, NULL, 0, NULL, 1),
(7300, 16584, 'Vega intellisoft', 'IT recruiter', '2023-05-28', 300000.00, '2023-11-15', 300000.00, 'CHENNAI', '1', '0 years 5 months', 'Company business issue', 1, '2024-02-05 07:19:01', 0, NULL, 0, NULL, 1),
(7301, 16584, 'Bhawan cyber Tek', 'Executive Recruiter', '2022-01-03', 240000.00, '2023-05-26', 300000.00, 'CHENNAI', '1', '1 years 4 months', 'Career growth', 1, '2024-02-05 07:20:50', 0, NULL, 0, NULL, 1),
(7302, 16582, 'Kartoffel Technology ', 'Junior software engineer ', '2022-08-01', 125000.00, '2023-10-25', 300000.00, 'Chennai', '1', '1 years 2 months', ' ', 1, '2024-02-05 07:26:19', 0, NULL, 0, NULL, 1),
(7303, 16598, 'Able Aura', 'HR Associate ', '2023-03-01', 22000.00, '1970-01-01', 22000.00, 'Chennai', '2', '0 years 11 months', ' Medical Issues ', 1, '2024-02-05 10:19:52', 0, NULL, 0, NULL, 1),
(7304, 16623, 'Askeva', 'Junior nodeja developer', '2021-06-01', 8000.00, '2023-10-31', 18000.00, 'Madurai', '1', '2 years 8 months', ' ', 1, '2024-02-06 05:44:25', 0, NULL, 0, NULL, 1),
(7305, 16627, 'KST Infotech', 'Mobile application developer', '2019-06-06', 12000.00, '2020-08-06', 12000.00, 'Chennai', '1', '1 years 2 months', ' Career Growth', 1, '2024-02-06 05:49:35', 0, NULL, 0, NULL, 1),
(7306, 16636, 'Neolysi Technologies', 'UI Developer', '2023-05-15', 5000.00, '2024-02-06', 5000.00, 'Chennai', '2', '0 years 8 months', ' Salary not comfortable', 1, '2024-02-06 05:56:13', 0, NULL, 0, NULL, 1),
(7307, 16632, 'Novac technology and solutions ', 'Front-End developer', '2023-03-13', 12500.00, '2024-02-03', 14000.00, 'Perungudi', '1', '0 years 10 months', ' Looking for betterment opportunities', 1, '2024-02-06 05:56:45', 1, '2024-02-06 05:57:40', 0, NULL, 1),
(7308, 16630, 'It Co-ordinates ', 'Full stack role', '2023-02-12', 15000.00, '2024-01-30', 15000.00, 'Chennai', '1', '0 years 11 months', ' Career updates and growth knowledge as I moving this job', 1, '2024-02-06 05:58:31', 0, NULL, 0, NULL, 1),
(7309, 16690, 'Ags Health', 'Senior process associated ', '2023-05-19', 28000.00, '2024-01-31', 28000.00, 'Kanthanchavadi', '1', '0 years 8 months', ' Shift issues', 1, '2024-02-06 09:33:50', 0, NULL, 0, NULL, 1),
(7310, 16691, 'Edinorg', 'HR executive ', '2014-11-01', 15000.00, '2018-01-03', 15000.00, 'Raipur ', '1', '3 years 2 months', ' Family relocated ', 1, '2024-02-06 10:04:00', 0, NULL, 0, NULL, 1),
(7311, 16691, 'SPG Consulting ', 'IT HR Recruiter ', '2022-03-01', 5000.00, '2023-08-02', 15000.00, 'Vellore ', '1', '1 years 5 months', 'Health issues and difficult shifts ', 1, '2024-02-06 10:07:16', 0, NULL, 0, NULL, 1),
(7312, 16687, 'Digital Techworks', 'UI uX Designer ', '2023-02-03', 13000.00, '1970-01-01', 13000.00, 'Nungambakkam ', '2', '1 years 0 months', ' Not proper salary credited and no employee benefits..', 1, '2024-02-06 10:22:58', 0, NULL, 0, NULL, 1),
(7313, 16693, 'EOS global Pvt Ltd ', 'Customer care associate ', '2023-08-14', 12000.00, '2023-12-14', 12000.00, 'Thoraipakkam ', '1', '0 years 4 months', ' ', 1, '2024-02-06 12:23:35', 0, NULL, 0, NULL, 1),
(7314, 16443, 'Royal sundaram general insurance', 'Back office associate', '2023-01-02', 21000.00, '2023-12-20', 22000.00, 'Chennai', '1', '0 years 11 months', ' Planned to move on-roll ', 1, '2024-02-06 03:17:39', 0, NULL, 0, NULL, 1),
(7315, 16443, 'Tech mahindra ', 'Customer support executive', '2021-11-22', 18000.00, '2022-12-23', 22000.00, 'Chennai', '1', '1 years 1 months', 'Salary issues', 1, '2024-02-06 03:20:51', 0, NULL, 0, NULL, 1),
(7316, 16695, 'vamo systems private limited company', 'uiux designer', '2022-08-01', 180000.00, '1970-01-01', 240000.00, 'ekkatuthangal', '2', '1 years 6 months', ' ', 1, '2024-02-07 03:51:44', 0, NULL, 0, NULL, 1),
(7317, 16706, 'Winning Edge', 'Accounts Executive, HR Executive, Admin, Telecalle', '2021-01-09', 18000.00, '2024-01-31', 23000.00, 'Thousand Lights', '1', '3 years 0 months', ' ', 1, '2024-02-07 05:29:59', 0, NULL, 0, NULL, 1),
(7318, 16702, 'Qassure technology ', 'Software trainee ', '2022-09-01', 2.20, '2023-12-30', 18500.00, 'Chennai ', '1', '1 years 3 months', ' Reaction layoff', 1, '2024-02-07 05:41:34', 0, NULL, 0, NULL, 1),
(7319, 16712, 'INFINITY BANKING SOLUTIONS', 'AQUISITION MANAGER', '2023-06-14', 13000.00, '1970-01-01', 15000.00, 'PURASAIWALKAM', '2', '0 years 7 months', ' TO GO FOR NEXT STEP', 1, '2024-02-07 06:02:08', 0, NULL, 0, NULL, 1),
(7320, 16729, 'ISON EXPERIENCE ', 'CCE - LOGIN', '2023-01-23', 15000.00, '1970-01-01', 20000.00, 'KANDHANCHAVADI ', '2', '1 years 0 months', 'For a Better environment of working Space. ', 1, '2024-02-07 06:23:27', 0, NULL, 0, NULL, 1),
(7321, 16730, 'ison experiences', 'executive', '2023-01-29', 15000.00, '2023-09-10', 20000.00, 'kandhanchavadi', '1', '0 years 7 months', 'For a better working Environment space.', 1, '2024-02-07 06:25:12', 0, NULL, 0, NULL, 1),
(7322, 16745, 'Digital techworks', 'UI/UX Designer ', '2023-02-10', 10000.00, '1970-01-01', 18000.00, 'Nungambakkam, Chennai ', '2', '0 years 11 months', ' Not properly Salary credited and no for Senior Designer ', 1, '2024-02-07 07:15:05', 0, NULL, 0, NULL, 1),
(7323, 16752, 'Miramed ajuba', 'Payment posting ', '2018-12-25', 12000.00, '2022-07-22', 22000.00, 'Chennai ', '1', '3 years 6 months', ' I need move to developer domain ', 1, '2024-02-07 07:24:45', 0, NULL, 0, NULL, 1),
(7324, 16755, 'Xerago ', 'Associate Developer', '2022-01-10', 13500.00, '1970-01-01', 27000.00, 'Perugudi ', '2', '2 years 0 months', ' For better opportunity to build my carrier ', 1, '2024-02-07 09:16:56', 0, NULL, 0, NULL, 1),
(7325, 16756, 'Knowledge splice services pvt Ltd', 'Customer support', '2021-03-03', 20000.00, '2023-07-23', 26000.00, 'Chennai', '1', '2 years 4 months', 'Layoff', 1, '2024-02-07 09:26:16', 0, NULL, 0, NULL, 1),
(7326, 16759, 'Thinkapps solutions Pvt Ltd ', 'Senior Executive Talent Acquisition ', '2022-11-14', 293000.00, '2023-04-20', 293000.00, 'Chennai ', '1', '0 years 5 months', ' Can\'t able to relocate ', 1, '2024-02-07 10:15:31', 1, '2024-02-07 10:17:13', 0, NULL, 0),
(7327, 16759, 'Hiyamee pvt ltd ', 'HR recruiter ', '2022-12-20', 260000.00, '2023-10-20', 260000.00, 'Chennai', '1', '0 years 10 months', 'Closed company in chennai', 1, '2024-02-07 10:18:49', 0, NULL, 0, NULL, 1),
(7328, 16759, 'Thinkapps solutions Pvt Ltd ', 'Senior Executive Talent Acquisition ', '2023-11-14', 293000.00, '2024-04-20', 293000.00, 'Chennai', '1', '0 years 5 months', 'Office located at Mumbai so Can\'t able to relocate ', 1, '2024-02-07 10:19:53', 0, NULL, 0, NULL, 1),
(7329, 16772, 'Altascio Technology India Pvt Ltd ', 'UI/UX Designer ', '2023-01-23', 16600.00, '2024-01-31', 16600.00, 'Chennai ', '1', '1 years 0 months', ' Has my project is over there is no project for  my relating field.', 1, '2024-02-08 05:30:35', 0, NULL, 0, NULL, 1),
(7330, 16773, 'Justdial ', 'Tele Marketing Executive ', '2022-12-15', 20000.00, '2024-01-07', 20000.00, 'Coimbatore ', '1', '1 years 0 months', ' Salary issue ', 1, '2024-02-08 05:42:04', 0, NULL, 0, NULL, 1),
(7331, 16773, 'KGISL', 'Tele Marketing Executive ', '2021-03-17', 11000.00, '2022-11-07', 13000.00, 'Coimbatore, Saravanapatti ', '1', '1 years 7 months', 'Salary issue ', 1, '2024-02-08 05:44:55', 0, NULL, 0, NULL, 1),
(7332, 16782, 'shriram life Insurance ', 'senior sales excutive', '2023-03-03', 250000.00, '2024-02-29', 18000.00, 'egmore', '1', '0 years 11 months', ' Left my home', 1, '2024-02-08 05:53:30', 0, NULL, 0, NULL, 1),
(7333, 16785, 'Justdial ', 'TME', '2022-10-05', 12000.00, '2024-01-10', 20000.00, 'Coimbatore ', '1', '1 years 1 months', ' To Upgrad my carrier development ', 1, '2024-02-08 06:14:50', 0, NULL, 0, NULL, 1),
(7334, 16796, 'Sai system health ', 'Ar caller international voice process ', '2022-12-29', 16000.00, '2023-12-28', 1.00, 'Chennai ', '1', '0 years 11 months', ' One year bond', 1, '2024-02-08 06:22:07', 0, NULL, 0, NULL, 1),
(7335, 16791, 'Objectwats Technology', 'Quality Analyst', '2021-03-01', 12000.00, '2022-12-06', 18000.00, 'Karur', '1', '2 years 11 months', ' Domain changing', 1, '2024-02-08 06:35:43', 0, NULL, 0, NULL, 1),
(7336, 16836, 'Vguard service center ', 'Customer relationship manager ', '2021-08-12', 12000.00, '1970-01-01', 15000.00, 'Thanjavur', '2', '2 years 5 months', ' Career change to a new industry ', 1, '2024-02-09 04:43:36', 0, NULL, 0, NULL, 1),
(7337, 16838, 'Redback it solutions', 'HrAdmin', '2021-10-13', 13000.00, '2023-10-19', 13000.00, 'Vellore', '1', '2 years 0 months', ' Low salary', 1, '2024-02-09 04:43:57', 0, NULL, 0, NULL, 1),
(7338, 16853, 'Basis cloud solutions ', 'Software developer trainee ', '2023-03-15', 15000.00, '2023-08-25', 15000.00, 'Chennai ', '1', '0 years 5 months', ' Due to My health issues ', 1, '2024-02-09 05:35:13', 0, NULL, 0, NULL, 1),
(7339, 16861, 'Creditmantri finserve', 'Credit relationship officer', '2023-11-14', 14.00, '2024-02-07', 21000.00, 'Thousand lights', '1', '0 years 2 months', ' Due to my personal reason', 1, '2024-02-09 05:44:01', 0, NULL, 0, NULL, 1),
(7340, 16855, 'Poorvika mobile private limited', 'Software trainee', '2022-02-21', 15000.00, '2022-05-11', 15000.00, 'Chennai', '1', '0 years 2 months', ' Personal issue', 1, '2024-02-09 05:46:10', 0, NULL, 0, NULL, 1),
(7341, 16859, 'Swaas system pvt ltd ', 'Ui developer ', '2021-06-21', 300000.00, '2023-07-17', 375000.00, 'Chennai', '1', '2 years 0 months', ' Personal health issues', 1, '2024-02-09 05:47:09', 0, NULL, 0, NULL, 1),
(7342, 16855, 'Aroopa technology private limited', 'Intern', '2022-11-21', 10000.00, '2023-02-19', 10000.00, 'Chennai korattur', '1', '0 years 2 months', 'Intenship completed', 1, '2024-02-09 05:48:05', 0, NULL, 0, NULL, 1),
(7343, 16855, 'Aroopa technology privated limited', 'Associate developer', '2023-02-20', 20000.00, '2023-10-11', 20000.00, 'Chennai korattur', '1', '0 years 7 months', 'Health problem', 1, '2024-02-09 05:49:33', 0, NULL, 0, NULL, 1),
(7344, 16873, 'Ison experience ', 'CCE ', '2022-06-15', 14000.00, '2023-03-31', 19000.00, 'Perungudi ', '1', '0 years 9 months', ' Process getting ramdown ', 1, '2024-02-09 05:55:34', 0, NULL, 0, NULL, 1),
(7345, 16873, 'Paisabazaar ', 'CCE ', '2023-04-07', 17000.00, '2024-02-08', 20000.00, 'Tidel park', '1', '0 years 10 months', 'For getting a new experience of job environment', 1, '2024-02-09 06:00:07', 0, NULL, 0, NULL, 1),
(7346, 16894, 'Dailyworks pvt LTD ', 'Full Stack Developer ', '2023-01-01', 300000.00, '2023-07-01', 300000.00, 'Chennai ', '1', '0 years 6 months', ' Layoff', 1, '2024-02-09 06:20:08', 0, NULL, 0, NULL, 1),
(7347, 16907, 'Smartcreations ', 'Web developer ', '2018-08-15', 14700.00, '2020-07-31', 15000.00, 'Chennai ', '1', '1 years 11 months', ' Covid', 1, '2024-02-09 08:22:14', 0, NULL, 0, NULL, 1),
(7348, 16922, 'Midas Golden Distilleries private limited ', 'Accounts executive ', '2019-08-01', 15000.00, '1970-01-01', 25000.00, 'Padappai ', '2', '4 years 6 months', ' Career growth ', 1, '2024-02-09 11:49:28', 0, NULL, 0, NULL, 1),
(7349, 16928, 'Musigma ', 'Trainee Decision Scientist ', '2022-01-23', 25000.00, '2023-01-31', 25000.00, 'Bangalore ', '1', '1 years 0 months', 'Due to project due dates, they forcefully put paper and resigned me ', 1, '2024-02-10 04:52:05', 0, NULL, 0, NULL, 1),
(7350, 16925, 'BBB MANPOWER CONSULTANCY ', 'Hr Recruiter ', '2023-08-23', 15000.00, '1970-01-01', 15000.00, 'Arumbakkam ', '2', '0 years 5 months', ' Caree development ', 1, '2024-02-10 05:11:53', 0, NULL, 0, NULL, 1),
(7351, 16947, 'aroopa tech', 'software developer', '2022-07-11', 280000.00, '1970-01-01', 450000.00, 'chennai', '2', '1 years 6 months', ' Looking for new Opportunities to learn', 1, '2024-02-10 06:14:54', 0, NULL, 0, NULL, 1),
(7352, 16945, 'MDQ ', 'Flutter developer', '2024-02-01', 10.00, '1970-01-01', 10.00, 'Chennai', '2', '0 years 0 months', ' Technology growth', 1, '2024-02-10 06:19:23', 0, NULL, 0, NULL, 1),
(7353, 16955, 'Bizongo', 'Associate software engineer', '2022-01-10', 21000.00, '2022-11-07', 21000.00, 'bangalore', '1', '0 years 9 months', ' Family issues hence relieved ', 1, '2024-02-10 06:43:07', 1, '2024-02-10 06:43:32', 0, NULL, 1),
(7354, 16955, 'Hexaware', 'support executive', '2023-10-19', 15000.00, '1970-01-01', 15000.00, 'chennai', '2', '0 years 3 months', 'for career growth', 1, '2024-02-10 06:44:39', 0, NULL, 0, NULL, 1),
(7355, 16939, 'Capminds Technologies ', 'Full stack developer ', '2022-12-10', 12000.00, '2023-10-27', 12000.00, 'Chennai ', '1', '0 years 10 months', ' I have some health issues.', 1, '2024-02-10 08:21:39', 0, NULL, 0, NULL, 1),
(7356, 16962, 'Joy Technologies ', 'Digital Marketing Specialist', '2022-03-01', 17000.00, '1970-01-01', 26000.00, 'Chennai', '2', '1 years 11 months', ' Looking for better Opportunity ', 1, '2024-02-10 08:39:00', 1, '2024-02-10 08:40:37', 0, NULL, 1),
(7357, 16960, 'Technology enabling centre ', 'Project Assistant', '2022-10-06', 20000.00, '1970-01-01', 21000.00, 'Guindy ', '2', '1 years 4 months', ' Career change ', 1, '2024-02-10 08:48:22', 0, NULL, 0, NULL, 1),
(7358, 16960, 'E-YUVA centre ', 'Project Assistant', '2022-04-18', 15000.00, '2022-10-05', 15000.00, 'Taramani ', '1', '0 years 5 months', 'Salary ', 1, '2024-02-10 08:49:32', 0, NULL, 0, NULL, 1),
(7359, 16965, 'Shenll technology', 'Full stack developer', '2023-05-06', 10000.00, '2023-10-06', 10000.00, 'Chennai', '1', '0 years 5 months', ' I have planed to study react js', 1, '2024-02-10 09:24:21', 0, NULL, 0, NULL, 1),
(7360, 16972, 'Guvi geek', 'Sr Software Engineer ', '2020-01-20', 15000.00, '1970-01-01', 30000.00, 'Chennai ', '2', '4 years 0 months', ' Need change ', 1, '2024-02-10 09:58:41', 0, NULL, 0, NULL, 1),
(7361, 16973, 'jobserks4u consultancy ', 'crm client relationship manager ', '2020-12-02', 15000.00, '2024-02-17', 40000.00, 'choolaimedu', '1', '3 years 2 months', ' Looking for a different sector . ', 1, '2024-02-10 10:38:55', 0, NULL, 0, NULL, 1),
(7362, 16974, 'Trawex Technologies ', 'UI UX Designer ', '2023-06-26', 37000.00, '2023-12-19', 37000.00, 'Bangalore ', '1', '0 years 5 months', ' Career Growth ', 1, '2024-02-10 10:40:20', 0, NULL, 0, NULL, 1),
(7363, 16975, 'Jobseeks4u ', 'HR', '2022-12-15', 12000.00, '2024-02-22', 17000.00, 'Choolaimedu ', '1', '1 years 2 months', ' Looking for A different sector ', 1, '2024-02-10 11:21:25', 0, NULL, 0, NULL, 1),
(7364, 16983, 'Geons Logix ', 'JAVA DEVELOPER ', '2023-06-01', 140000.00, '2024-02-05', 140000.00, 'Madurai', '1', '0 years 8 months', 'Lack of projects and salary pending ', 1, '2024-02-12 05:17:08', 0, NULL, 0, NULL, 1),
(7365, 16989, 'Lenskart ', 'Sales associate ', '2023-09-20', 21000.00, '2024-02-05', 21000.00, 'Mount road ', '1', '0 years 4 months', ' Some family issues so I can\'t continue the work', 1, '2024-02-12 06:41:53', 0, NULL, 0, NULL, 1),
(7366, 16992, 'PK business solutions ', 'Assistant tL', '2019-01-02', 20000.00, '2023-06-12', 23000.00, 'Chepauk ', '1', '4 years 5 months', ' Incentive issue ', 1, '2024-02-12 07:23:09', 0, NULL, 0, NULL, 1),
(7367, 16994, 'Uniq Solutions ', 'Python Back-end ', '2022-01-12', 14200.00, '2024-02-28', 14200.00, 'Coimbatore ', '1', '3 years 1 months', ' Upgrade myself ', 1, '2024-02-12 09:43:03', 0, NULL, 0, NULL, 1),
(7368, 17000, 'Cams', 'Customer support executive ', '2021-01-11', 150000.00, '2021-05-05', 18000.00, 'Chennai ', '1', '0 years 3 months', ' Lnt mutual fund was merged with HSBC so I left a job ', 1, '2024-02-13 06:00:20', 0, NULL, 0, NULL, 1),
(7369, 17003, 'Kavi global tes', 'Quality control annalyst', '2023-11-26', 26000.00, '1970-01-01', 26000.00, 'Thousand lights ', '2', '0 years 2 months', ' Looking for good opportunity ', 1, '2024-02-13 07:12:57', 0, NULL, 0, NULL, 1),
(7370, 17004, 'Bank bazaar', 'Customer relationship officer ', '2023-08-14', 18000.00, '2023-11-14', 20000.00, 'Ambattur', '1', '0 years 3 months', ' ', 1, '2024-02-13 07:22:48', 0, NULL, 0, NULL, 1),
(7371, 17006, 'Policy bazaar', 'Associate sales consultant ', '2023-10-26', 25000.00, '2024-01-19', 25000.00, 'Taramani', '1', '0 years 2 months', ' ', 1, '2024-02-13 07:31:13', 0, NULL, 0, NULL, 1),
(7372, 17009, 'Krazybee service private limited', 'Recovery ', '2023-02-27', 23000.00, '2023-10-30', 230000.00, 'Mylapore', '1', '0 years 8 months', ' Personal issue', 1, '2024-02-13 10:55:23', 0, NULL, 0, NULL, 1),
(7373, 16878, 'MGM', 'Driver', '2012-02-01', 20000.00, '2024-02-15', 30000.00, 'Chennai', '1', '12 years 0 months', 'Career Growth', 60, '2024-02-13 05:19:27', 0, NULL, 0, NULL, 1),
(7374, 17010, 'Chendur Global logistics ', 'Technical analysts and Customer service ', '2022-06-09', 15000.00, '2023-08-30', 18000.00, 'Kolathur', '1', '1 years 2 months', ' Company went through some loss', 1, '2024-02-13 12:23:02', 0, NULL, 0, NULL, 1),
(7375, 17014, 'Bajaj , Tamil matrimony ', 'Senior relationship executive ', '2022-06-01', 18000.00, '2023-12-31', 18000.00, 'Chennai  ', '1', '1 years 6 months', 'Timing issue ', 1, '2024-02-14 05:15:38', 0, NULL, 0, NULL, 1),
(7376, 17014, 'Bajaj , Tamil matrimony ', 'Senior relationship executive ', '2022-06-22', 18000.00, '2023-12-31', 18000.00, 'Chennai ', '1', '1 years 6 months', 'Timing issue ', 1, '2024-02-14 05:17:12', 0, NULL, 0, NULL, 1),
(7377, 17022, 'Freelancer ', 'Product designer ', '2019-11-07', 23000.00, '2024-02-14', 23000.00, 'Chennai ', '2', '4 years 3 months', ' Need to full time job', 1, '2024-02-14 06:59:27', 0, NULL, 0, NULL, 1),
(7378, 17023, 'Home credit Finance ', 'Sales Associate', '2018-07-03', 7.00, '2019-01-10', 12000.00, 'Chennai', '1', '0 years 6 months', ' For My Growth ', 1, '2024-02-14 07:20:44', 0, NULL, 0, NULL, 1),
(7379, 17023, 'Hdb financial Services', 'Junior Officer', '2019-06-07', 31.00, '2022-11-09', 18000.00, 'Chennai', '1', '3 years 5 months', 'For My Growth ', 1, '2024-02-14 07:24:09', 0, NULL, 0, NULL, 1),
(7380, 17023, 'HDFC BANK LIMITED', 'Assistant Manager', '2022-11-25', 25.00, '2023-12-31', 25000.00, 'Chennai', '1', '1 years 1 months', 'For my Growth ', 1, '2024-02-14 07:25:30', 0, NULL, 0, NULL, 1),
(7381, 17025, 'Home credit india finance', 'Sales associate', '2019-07-04', 9000.00, '2021-03-30', 9000.00, 'Chennai', '1', '1 years 8 months', ' ', 1, '2024-02-15 03:58:21', 0, NULL, 0, NULL, 1),
(7382, 17025, 'Bharti airtel services limited', 'Xtreme fibe executive', '2021-10-26', 16000.00, '2023-11-30', 16000.00, 'Chennai', '1', '2 years 1 months', 'Low Salary ', 1, '2024-02-15 04:02:29', 0, NULL, 0, NULL, 1),
(7383, 17027, 'Kcc bank', 'Assistant ', '2022-02-15', 8500.00, '2024-01-15', 10000.00, 'Koradacherry ', '1', '1 years 11 months', ' Contract', 1, '2024-02-15 05:15:26', 0, NULL, 0, NULL, 1),
(7384, 17029, 'TVS emerald', 'Pre sales executive', '2023-03-22', 300000.00, '2024-01-22', 300000.00, 'Nungambakkam', '1', '0 years 10 months', ' For my career growth', 1, '2024-02-15 06:02:59', 0, NULL, 0, NULL, 1),
(7385, 17024, 'Datamark ', 'Process Associat', '2022-08-15', 12000.00, '2023-05-30', 14000.00, 'Ambattur ', '1', '1 years 6 months', ' Night shift ', 1, '2024-02-15 06:45:48', 0, NULL, 0, NULL, 1),
(7386, 17033, 'Lysaght Taperline Poles ', 'Sales Coordinator ', '2023-05-11', 20000.00, '2024-01-31', 20000.00, 'Anna nagar ', '1', '0 years 8 months', ' Health issues ', 1, '2024-02-15 06:47:47', 0, NULL, 0, NULL, 1),
(7387, 17039, 'Cx presicion mechanical India pvt Ltd ', 'Finance executive ', '0002-02-15', 25000.00, '2024-02-15', 25000.00, 'Tada', '1', '2022 years 0 months', ' ', 1, '2024-02-15 08:10:49', 0, NULL, 0, NULL, 1),
(7388, 17041, 'Veranda Race', 'Academic Counsellor ', '2023-07-25', 25.00, '2023-12-31', 18000.00, 'Saidapet ', '1', '0 years 6 months', ' Project Completed. That\'s the only reason for Reliving my previous job', 1, '2024-02-15 09:48:55', 0, NULL, 0, NULL, 1),
(7389, 17041, 'Veranda Race', 'Academic Counsellor ', '2023-07-25', 25.00, '2023-12-31', 18000.00, 'Saidapet ', '1', '0 years 6 months', ' Project Completed. That\'s the only reason for Reliving my previous job', 1, '2024-02-15 09:49:10', 0, NULL, 0, NULL, 1),
(7390, 17041, 'Veranda Race', 'Academic Counsellor ', '2023-07-25', 25.00, '2023-12-31', 18000.00, 'Saidapet ', '1', '0 years 6 months', ' Project Completed. That\'s the only reason for Reliving my previous job', 1, '2024-02-15 09:49:13', 0, NULL, 0, NULL, 1),
(7391, 17041, 'Veranda Race', 'Academic Counsellor ', '2023-07-25', 25.00, '2023-12-31', 18000.00, 'Saidapet ', '1', '0 years 6 months', ' Project Completed. That\'s the only reason for Reliving my previous job', 1, '2024-02-15 09:49:14', 0, NULL, 0, NULL, 1),
(7392, 17041, 'Veranda Race', 'Academic Counsellor ', '2023-07-25', 25.00, '2023-12-31', 18000.00, 'Saidapet ', '1', '0 years 6 months', ' Project Completed. That\'s the only reason for Reliving my previous job', 1, '2024-02-15 09:49:15', 0, NULL, 0, NULL, 1),
(7393, 17041, 'Veranda Race', 'Academic Counsellor ', '2023-07-25', 25.00, '2023-12-31', 18000.00, 'Saidapet ', '1', '0 years 6 months', ' Project Completed. That\'s the only reason for Reliving my previous job', 1, '2024-02-15 09:49:18', 0, NULL, 0, NULL, 1),
(7394, 17045, 'Aagree staffing services Pvt Ltd ', 'Business Associate ', '2021-07-29', 13000.00, '1970-01-01', 14000.00, 'Ambattur ', '2', '2 years 6 months', ' I Have Done The Best For Myself And For My Current Organization, I Strongly Felt That, It\'s High Time To Move To A New Place And Develop A Fresh Perspective With Competitive Role That You Are Offering. And I Have Been Working With The Company For 2 Years And I Need To Push Myself To The Next Level', 1, '2024-02-15 04:31:11', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7395, 17047, 'Skill lync', 'Inside sales specialist ', '2022-06-02', 350000.00, '2022-12-06', 350000.00, 'Velachery ', '1', '0 years 6 months', ' Opted for sabbatical leave organisation refused and asked to drop and rejoin ', 1, '2024-02-16 05:32:29', 0, NULL, 0, NULL, 1),
(7396, 17047, 'Skill lync ', 'Inside sales specialist ', '2023-05-10', 450000.00, '2023-12-29', 450000.00, 'Velachery ', '1', '0 years 7 months', 'Wanted to switch form edtech sales', 1, '2024-02-16 05:33:57', 0, NULL, 0, NULL, 1),
(7397, 17048, 'Altruist ', 'Business associate ', '2019-05-01', 10000.00, '2020-11-30', 10000.00, 'Perungudi ', '1', '1 years 6 months', ' Helth iesu ', 1, '2024-02-16 06:41:04', 0, NULL, 0, NULL, 1),
(7398, 17054, 'Policy Bazaar', 'Associate sales consultant', '2021-11-22', 25000.00, '2023-04-01', 25000.00, 'Chennai', '1', '2 years 2 months', ' Family health issue', 1, '2024-02-17 05:47:41', 0, NULL, 0, NULL, 1),
(7399, 17055, 'Access Healthcare ', 'Client Partner', '2022-01-03', 19142.00, '2023-05-05', 19142.00, 'Ambattur Industrial Estate', '1', '1 years 4 months', ' Mother\'s sickness', 1, '2024-02-17 05:56:06', 0, NULL, 0, NULL, 1),
(7400, 17058, 'Friend Loan Technology Pvt.lmt.company', 'Telecaller ', '2022-07-20', 20000.00, '2023-11-30', 20000.00, 'T.nagar', '1', '1 years 4 months', ' My previous organisation wend up my job role ', 1, '2024-02-17 07:07:26', 0, NULL, 0, NULL, 1),
(7401, 17059, 'HCL tech', 'Technical Support Executive ', '2021-10-14', 22000.00, '2023-05-05', 29000.00, 'Sholiganalur ', '1', '1 years 6 months', ' Pursuing courses for better career ', 1, '2024-02-17 07:35:40', 0, NULL, 0, NULL, 1),
(7402, 17060, 'FA capital', 'Customer relationship manager', '2019-09-16', 15000.00, '2020-09-20', 23800.00, 'Royapettai', '1', '1 years 0 months', ' Salary package only main reason reliving this job', 1, '2024-02-17 08:02:17', 0, NULL, 0, NULL, 1),
(7403, 17061, 'FA capital insurance broking Pvt Ltd ', 'Customer relationship manager ', '2022-07-14', 20000.00, '2023-03-25', 22000.00, 'Royapettai ', '1', '0 years 8 months', ' ', 1, '2024-02-17 09:09:07', 0, NULL, 0, NULL, 1),
(7404, 17038, 'Benze club international private limited ', 'Sales and collection department ', '2022-11-10', 10000.00, '2024-02-15', 12000.00, 'Mount Road ', '1', '1 years 3 months', ' My salary was too low . ', 1, '2024-02-17 09:22:40', 0, NULL, 0, NULL, 1),
(7405, 17063, 'Agaram foundation ', 'Program co ordinators ', '2020-05-20', 10000.00, '1970-01-01', 20000.00, 'Chennai', '2', '3 years 8 months', ' Parents health issues and Salary problems ', 1, '2024-02-19 05:16:32', 0, NULL, 0, NULL, 1),
(7406, 17066, 'ALLSET BUSSINESS SOLUTIONS ', 'Senior telecaller ', '2022-02-22', 14000.00, '1970-01-01', 17000.00, 'Thousand lights ', '2', '1 years 11 months', ' I want to improve my self ', 1, '2024-02-19 05:31:54', 0, NULL, 0, NULL, 1),
(7407, 17069, 'Tamilnadu tourism development Corporation', 'Ticketing executive', '2023-02-09', 18100.00, '2024-02-12', 18100.00, 'Triplicane', '1', '1 years 0 months', ' ', 1, '2024-02-19 06:12:50', 0, NULL, 0, NULL, 1),
(7408, 17070, 'Airtel', 'Customer relationship officer', '2023-06-16', 1.00, '2024-01-12', 23.70, 'Anna Nagar ', '1', '0 years 6 months', ' Health issues ', 1, '2024-02-19 06:23:24', 0, NULL, 0, NULL, 1),
(7409, 17071, 'Hdfc bank', 'Assistant manager', '2023-03-23', 20000.00, '2023-09-30', 20000.00, 'Chennai', '1', '0 years 6 months', ' Salary is not satisfied upto the level for the assigned task', 1, '2024-02-19 06:23:43', 0, NULL, 0, NULL, 1),
(7410, 17071, 'Axis Bank ', 'Sales officer ', '2021-09-09', 13000.00, '2022-10-30', 20000.00, 'Chennai ', '1', '1 years 1 months', 'Career upgradation ', 1, '2024-02-19 06:25:11', 0, NULL, 0, NULL, 1),
(7411, 17075, 'Accenture', 'Senior bus process delivery associate ', '2022-09-05', 9.00, '2023-10-03', 408000.00, 'Chennai', '1', '1 years 0 months', ' Due to rotational shift ', 1, '2024-02-19 07:20:29', 0, NULL, 0, NULL, 1),
(7412, 17077, 'Accenture ', 'buisness Associate ', '2022-01-25', 14000.00, '2022-11-30', 20000.00, 'CDC3 Techi park sholinganallur ', '1', '0 years 10 months', 'need of medication and Mental health ', 1, '2024-02-19 10:41:51', 0, NULL, 0, NULL, 1),
(7413, 17079, 'VMC Technologies ', 'Product support engineer ', '2023-05-01', 34000.00, '2023-10-31', 460000.00, 'Banglore ', '1', '0 years 5 months', ' Health issues', 1, '2024-02-19 12:18:45', 0, NULL, 0, NULL, 1),
(7414, 17080, 'ICICI BANK LTD', 'Phone banking officer', '2022-12-12', 18500.00, '2023-11-03', 20500.00, 'Ambattur', '1', '0 years 10 months', ' Career growth', 1, '2024-02-19 12:29:25', 0, NULL, 0, NULL, 1),
(7415, 17085, 'Teleperformance ', 'AML Analyst ', '2022-09-19', 22500.00, '2023-03-20', 22500.00, 'Ambattur ', '1', '0 years 6 months', ' Personal Commitments - Due to wedding ceremony.', 1, '2024-02-19 01:32:12', 0, NULL, 0, NULL, 1),
(7416, 17094, 'Computer age management services limited ', 'Senior executive ', '2017-04-17', 7000.00, '2023-12-28', 16900.00, 'Che', '1', '6 years 8 months', ' Salary hike ', 1, '2024-02-20 06:22:54', 0, NULL, 0, NULL, 1),
(7417, 17096, 'Policybazaar', 'Investment advisor ', '2023-04-03', 26000.00, '2024-02-19', 26000.00, 'Chennai ', '1', '0 years 10 months', 'Salary not properly received ', 1, '2024-02-20 06:47:21', 0, NULL, 0, NULL, 1),
(7418, 17097, 'minnagam customer care executive', 'customer care', '2024-02-22', 14000.00, '1970-01-01', 15000.00, 'mount road', '2', '0 years 0 months', ' Contract close', 1, '2024-02-20 06:55:21', 0, NULL, 0, NULL, 1),
(7419, 17099, 'Thinksynq solution', 'Customer support', '2022-01-19', 11000.00, '2023-08-30', 9000.00, 'Kalaimagal nagar', '1', '1 years 7 months', ' Low salary packages', 1, '2024-02-20 07:00:10', 0, NULL, 0, NULL, 1),
(7420, 17100, 'TCS', 'Senior process associate ', '2019-07-19', 17000.00, '2023-12-15', 24000.00, 'Siruseri', '1', '4 years 4 months', ' Process ram down ', 1, '2024-02-20 07:04:24', 0, NULL, 0, NULL, 1),
(7421, 17098, 'Cks consulting engineers into Workfinch Hr service', 'Talent acquisition ', '2022-11-17', 12.00, '2024-01-17', 12.00, 'Chennai ', '1', '1 years 2 months', ' Career growth ', 1, '2024-02-20 07:17:12', 0, NULL, 0, NULL, 1),
(7422, 17102, 'credit mantri', 'credit relationship officer', '2023-06-14', 21000.00, '2023-12-15', 21000.00, 'thousand lights', '1', '0 years 6 months', ' ', 1, '2024-02-20 08:02:31', 0, NULL, 0, NULL, 1),
(7423, 17104, 'guardian india', 'team member', '2022-09-14', 14092022.00, '2023-11-30', 17200.00, 'tidel park thiruvanmiyur', '1', '1 years 2 months', ' Company process bought by another company', 1, '2024-02-20 09:21:42', 0, NULL, 0, NULL, 1),
(7424, 17114, 'MV Associates ', 'Tax consultant ', '2021-08-10', 20000.00, '2022-06-30', 22000.00, 'Kaliyakkavilai ', '1', '0 years 10 months', ' Medical reasons ', 1, '2024-02-20 01:17:32', 0, NULL, 0, NULL, 1),
(7425, 17114, 'HDB financial services Ltd ', 'Senior customer service executive ', '2019-01-07', 17000.00, '2020-02-01', 17000.00, 'Thousand lights ', '1', '1 years 0 months', 'Sister\'s wedding ', 1, '2024-02-20 01:20:26', 0, NULL, 0, NULL, 1),
(7426, 17114, 'Om innovation call services pvt ltd ', 'Customer care executive ', '2018-01-17', 10000.00, '2018-09-01', 11500.00, 'Chetpet ', '1', '0 years 7 months', 'Better hike ', 1, '2024-02-20 01:22:16', 0, NULL, 0, NULL, 1),
(7427, 17115, 'Greenish Enterprises ', 'Sales coordinator ', '2021-05-10', 14000.00, '1970-01-01', 16500.00, 'Kolathur', '2', '2 years 9 months', 'Salary', 1, '2024-02-20 01:31:37', 0, NULL, 0, NULL, 1),
(7428, 17121, 'Concepts and devices ', 'Cctv enginner ', '2018-01-01', 6000.00, '2019-02-02', 6000.00, 'Chennai ', '1', '1 years 1 months', ' Got abroad job as cctv operator ', 1, '2024-02-21 03:40:44', 0, NULL, 0, NULL, 1),
(7429, 17120, 'TechMahindra ', 'Customer Support Executive ', '2023-08-25', 11750.00, '2024-01-15', 11750.00, 'Chennai ', '1', '0 years 4 months', ' This is contract based so relieved ', 1, '2024-02-21 03:41:55', 0, NULL, 0, NULL, 1),
(7430, 17121, 'Qurum business groups ', 'Cctv operator ', '2019-04-01', 45000.00, '2020-03-05', 45000.00, 'Muscat', '1', '0 years 11 months', 'Health issues.  ', 1, '2024-02-21 03:43:00', 0, NULL, 0, NULL, 1),
(7431, 17121, 'Vcare ', 'Telesales executive ', '2020-11-01', 18000.00, '2022-03-02', 18000.00, 'Chennai ', '1', '1 years 4 months', 'Not paying incentives properly.  ', 1, '2024-02-21 03:44:52', 0, NULL, 0, NULL, 1),
(7432, 17121, 'Haven solutions ', 'Cctv engineer ', '2022-07-01', 22000.00, '1970-01-01', 22000.00, 'Chennai ', '2', '1 years 7 months', 'Present working here ', 1, '2024-02-21 03:47:00', 0, NULL, 0, NULL, 1),
(7433, 17107, 'Bharti airtel', 'CRO', '2023-06-26', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '0 years 7 months', ' Package is not enough for me', 1, '2024-02-21 04:23:31', 0, NULL, 0, NULL, 1),
(7434, 17112, 'Bajaj finserve ', 'Health insurance ', '2023-03-11', 15000.00, '2023-08-31', 15000.00, 'Egmore ', '1', '2 years 9 months', ' Met with an accident ', 1, '2024-02-21 05:01:34', 0, NULL, 0, NULL, 1),
(7435, 17125, 'nextgen ventures private limited', 'relationship manager', '2023-08-28', 15.00, '2024-02-17', 17.00, 'ambattur', '1', '0 years 5 months', ' ', 1, '2024-02-21 05:13:09', 0, NULL, 0, NULL, 1),
(7436, 17130, 'Southern corp ', 'Sales executive ', '2022-01-03', 13000.00, '1970-01-01', 15500.00, 'Vellore ', '2', '2 years 1 months', ' ', 1, '2024-02-21 05:45:55', 0, NULL, 0, NULL, 1),
(7437, 17130, 'Southern corp ', 'Sales executive ', '2022-01-02', 13000.00, '1970-01-01', 15500.00, 'Vellore ', '2', '2 years 1 months', 'Salary not satisfying ', 1, '2024-02-21 05:46:53', 0, NULL, 0, NULL, 1),
(7438, 17134, 'Capitotal wealth advisory pvt Ltd ', 'Sales manager ', '2020-03-01', 10500.00, '2023-03-01', 18000.00, 'T nagar ', '1', '3 years 0 months', '  Because of health issues typhoid fever ', 1, '2024-02-21 06:22:49', 0, NULL, 0, NULL, 1),
(7439, 17136, 'Vim alloy private limited ', 'Data analyst ', '2024-08-04', 300000.00, '2024-12-05', 300000.00, 'Siruseri', '1', '0 years 4 months', ' Personal reason,', 1, '2024-02-21 06:49:44', 0, NULL, 0, NULL, 1),
(7440, 17137, 'Tech Mahindra ', 'Customer service executive ', '2022-12-23', 17000.00, '2024-02-29', 18277.00, 'Ethiraj salai', '1', '1 years 2 months', ' Henceforth look for upgrading my knowledge on different fleads ', 1, '2024-02-21 07:26:14', 0, NULL, 0, NULL, 1),
(7441, 17138, 'Quess crop', 'Ro', '2022-02-07', 31.00, '2023-11-01', 2.10, 'Coimbatore ', '1', '1 years 8 months', ' ', 1, '2024-02-21 07:43:19', 0, NULL, 0, NULL, 1),
(7442, 17138, 'Axis Bank ', 'Ro ', '2022-08-07', 31.00, '2023-11-01', 2.10, 'Coimbatore ', '1', '1 years 2 months', 'Better salary expectation ', 1, '2024-02-21 07:45:18', 0, NULL, 0, NULL, 1),
(7443, 17138, 'Axis bank ', 'Ro', '2022-08-07', 1.48, '2023-11-05', 2.10, 'Coimbatore ', '1', '1 years 2 months', 'Better salary expectation ', 1, '2024-02-21 07:46:50', 0, NULL, 0, NULL, 1),
(7444, 17140, 'CREDIIXA ', 'Team lead ', '2021-02-10', 17000.00, '2023-12-31', 20000.00, 'Ambattur industrial estate ', '1', '2 years 10 months', ' My home shifted to Nungambakkam ', 1, '2024-02-21 08:25:19', 0, NULL, 0, NULL, 1),
(7445, 17145, 'HDB financial services Ltd ', 'Senior tele calling officer ', '2019-06-08', 30.00, '2023-04-01', 10500.00, 'Chennai ', '1', '3 years 9 months', ' Career growth ', 1, '2024-02-21 01:02:16', 0, NULL, 0, NULL, 1),
(7446, 17145, 'Indusind bank Ltd (On role)', 'Business development manager ', '2023-05-22', 25.00, '2023-09-04', 14700.00, 'Chennai ', '1', '0 years 3 months', 'Health issue', 1, '2024-02-21 01:08:43', 0, NULL, 0, NULL, 1),
(7447, 17145, 'Global consulting services ', 'Team Leader ', '2023-10-04', 10.00, '1970-01-01', 20500.00, 'Chennai ', '2', '0 years 4 months', 'Career growth ', 1, '2024-02-21 01:10:18', 0, NULL, 0, NULL, 1),
(7448, 17151, 'Impiger Technologies ', 'Flutter Developer ', '2022-07-14', 350000.00, '2024-02-01', 350000.00, 'Chennai ', '1', '1 years 6 months', ' They want me to Switch base location from Chennai to coimbatore, but I have some personal reason to stay here , so that\'s why I resign the previous job', 1, '2024-02-22 05:11:23', 0, NULL, 0, NULL, 1),
(7449, 17152, 'Lorven technologies Pvt Ltd', 'Junior IT admin', '2016-02-10', 10000.00, '2018-05-31', 17000.00, 'Chennai', '1', '2 years 3 months', ' For higher studies and family business', 1, '2024-02-22 05:16:56', 0, NULL, 0, NULL, 1),
(7450, 17154, 'ATHIGARAM TECHONS', 'IT MANAGER', '2021-04-05', 12000.00, '2024-01-31', 20000.00, 'Nagercoil ', '1', '2 years 9 months', ' ', 1, '2024-02-22 05:28:34', 0, NULL, 0, NULL, 1),
(7451, 17155, 'Access insurance broking Pvt Ltd ', 'Sales executive ', '2023-06-10', 15000.00, '2024-02-29', 15000.00, 'Egmore ', '1', '0 years 8 months', ' Shifting company to shollinganallur ', 1, '2024-02-22 05:30:09', 0, NULL, 0, NULL, 1),
(7452, 11967, 'Hi focus', 'Sales coordinator', '2023-02-15', 7.00, '2024-02-29', 18000.00, '6', '1', '1 years 0 months', ' ', 1, '2024-02-22 05:57:02', 0, NULL, 0, NULL, 1),
(7453, 17161, 'Simpsons & co Ltd ', 'Tech support ', '2022-11-07', 1.00, '2024-02-09', 15000.00, 'Moolaikadai', '1', '1 years 3 months', 'Because of Night shift ', 1, '2024-02-22 06:32:41', 0, NULL, 0, NULL, 1),
(7454, 17162, 'HDFC Bank ', 'Virtual relationship manager ', '2020-06-10', 3.50, '2023-05-10', 4.50, 'Chennai ', '1', '2 years 11 months', ' Carrier growth ', 1, '2024-02-22 07:06:13', 0, NULL, 0, NULL, 1),
(7455, 17139, 'Federal Bank ', 'BDE', '2023-08-01', 19500.00, '2023-12-31', 19500.00, 'Saidapet ', '1', '0 years 4 months', ' ', 1, '2024-02-22 07:45:40', 0, NULL, 0, NULL, 1),
(7456, 17139, 'Federal Bank ', 'BDE', '2023-08-01', 19500.00, '2023-12-31', 19500.00, 'Saidapet ', '1', '0 years 4 months', 'Salary delay ', 1, '2024-02-22 07:46:45', 0, NULL, 0, NULL, 1),
(7457, 17165, 'Alarss technology Development ltc', 'Sales ', '2023-04-26', 15.00, '2024-02-07', 19.00, 'Chennai', '1', '0 years 9 months', ' ', 1, '2024-02-22 09:33:08', 0, NULL, 0, NULL, 1),
(7458, 17167, 'Tagore matriculation school ', 'Teacher ', '2023-07-22', 17500.00, '2024-01-22', 17500.00, 'Chennai ', '1', '0 years 6 months', ' Family issues ', 1, '2024-02-22 11:08:38', 0, NULL, 0, NULL, 1),
(7459, 17169, 'Calibehr business solutions ', 'Telecalling association', '2017-06-19', 11000.00, '2023-11-30', 18000.00, 'Koyambadu', '1', '6 years 5 months', ' ', 1, '2024-02-22 01:30:44', 0, NULL, 0, NULL, 1),
(7460, 17176, 'JRP NATURALS PVT LTD', 'Telecaller cum recruiter', '2021-03-11', 8000.00, '2022-04-26', 15000.00, 'Work from Home', '1', '1 years 1 months', 'I quit that job Because i went to Kanyakurami for my Husband\'s Treatment', 1, '2024-02-23 04:35:08', 0, NULL, 0, NULL, 1),
(7461, 17177, 'Markplace E-Service private limited', 'Flutter developer', '2022-12-23', 15000.00, '2024-02-03', 15000.00, 'Banglore', '1', '1 years 1 months', 'Though to explore new opportunities.', 1, '2024-02-23 04:40:49', 0, NULL, 0, NULL, 1),
(7462, 17178, 'KINARA CAPITAL PRIVATE LIMITED ', 'Sinor sales executive ', '2023-10-01', 17000.00, '2024-02-29', 23500.00, 'Poonamallee ', '1', '0 years 4 months', ' Increasing for better opportunities ', 1, '2024-02-23 04:46:48', 0, NULL, 0, NULL, 1),
(7463, 17175, 'GIVE A HAND FOUNDATION ', 'FUNDRAISER ', '2023-03-28', 20000.00, '1970-01-01', 23000.00, 'CHENNAI ', '2', '0 years 10 months', 'NO COMMENTS ', 1, '2024-02-23 05:20:03', 0, NULL, 0, NULL, 1),
(7464, 17179, 'Access insurance broking Pvt Ltd ', 'Sales executive ', '2023-05-17', 12000.00, '1970-01-01', 12000.00, 'Egmore ', '2', '0 years 9 months', ' The company will be closed due to some reasons ', 1, '2024-02-23 05:24:02', 0, NULL, 0, NULL, 1),
(7465, 17174, 'Feps private limited ', 'West Africa niger ', '2022-02-14', 50000.00, '2023-09-30', 60000.00, 'Airport niamey ', '1', '1 years 7 months', 'War starting camp closed ', 1, '2024-02-23 05:24:28', 0, NULL, 0, NULL, 1),
(7466, 17180, 'Byjus', 'Nungambakkam', '2023-07-11', 15000.00, '2023-11-08', 20000.00, 'Chennai', '1', '0 years 3 months', ' Having health issues ', 1, '2024-02-23 05:31:33', 0, NULL, 0, NULL, 1),
(7467, 17168, 'CCS banking service ', 'Employee ', '2020-01-05', 12000.00, '2023-04-05', 17000.00, 'Chennai', '1', '3 years 3 months', ' Marriage ', 1, '2024-02-23 06:26:49', 1, '2024-02-23 06:27:41', 0, NULL, 0),
(7468, 17168, 'CCS banking service', 'Employee ', '2020-01-06', 13000.00, '2023-04-20', 17000.00, 'Chennai', '1', '3 years 3 months', 'Marriage ', 1, '2024-02-23 06:29:02', 0, NULL, 0, NULL, 1),
(7469, 17184, 'Sudha Enterprises ', 'BDE', '2023-11-01', 1112023.00, '2024-02-29', 23000.00, 'Chennai ', '2', '0 years 3 months', ' Employee Requirement', 1, '2024-02-23 06:38:54', 0, NULL, 0, NULL, 1),
(7470, 17186, 'Utsavgiri computer electronics pvt ltd', 'Apprentice trainee', '2023-09-04', 15000.00, '1970-01-01', 0.00, 'Thiruvaanmiyur chennai', '2', '0 years 5 months', ' ', 1, '2024-02-23 06:42:36', 0, NULL, 0, NULL, 1),
(7471, 17188, 'Prop Leaf ', 'Team leader ', '2018-02-05', 18000.00, '2023-09-12', 26000.00, 'Chennai', '1', '5 years 7 months', ' Career Growth ', 1, '2024-02-23 07:28:20', 0, NULL, 0, NULL, 1),
(7472, 17189, 'lemon peak', 'customer support', '2023-12-13', 5.00, '2024-02-09', 21000.00, 'nungambakkam', '1', '0 years 1 months', ' Company is not in stable position.', 1, '2024-02-23 07:31:40', 0, NULL, 0, NULL, 1),
(7473, 17191, 'Bayasys infotech ', 'Flutter developer ', '2021-08-01', 180000.00, '2022-08-05', 180000.00, 'Ernakulam ', '1', '1 years 0 months', 'For completing arrears in engineering ', 1, '2024-02-23 08:24:47', 0, NULL, 0, NULL, 1),
(7474, 17196, 'Bytes to knowledge private limited ', 'Localisation QC & DTP operator ', '2019-11-01', 10000.00, '2020-09-30', 13000.00, 'Coimbatore ', '1', '0 years 10 months', ' Health issues ', 1, '2024-02-23 11:53:35', 0, NULL, 0, NULL, 1),
(7475, 17196, 'Esaf small finance bank ', 'Customer service executive ', '2021-07-01', 14000.00, '2022-11-01', 16000.00, 'Sivakasi ', '1', '1 years 4 months', 'Personal reasons ', 1, '2024-02-23 11:55:09', 0, NULL, 0, NULL, 1),
(7476, 17196, 'Tata capital financial services Ltd ', 'Officer ', '2022-11-07', 19800.00, '2023-04-01', 19800.00, 'Rajapalayam ', '1', '0 years 4 months', 'Health issues ', 1, '2024-02-23 11:56:11', 0, NULL, 0, NULL, 1),
(7477, 17196, 'Vizza Insurance Broking services Pvt Ltd ', 'Senior voice process executive ', '2023-10-16', 17000.00, '1970-01-01', 17000.00, 'Chennai', '2', '0 years 4 months', 'Health issues ', 1, '2024-02-23 11:57:31', 0, NULL, 0, NULL, 1),
(7478, 17197, 'Bnc', 'Relationship manager', '2024-01-10', 25000.00, '2024-02-22', 25000.00, 'Chennai', '1', '0 years 1 months', ' Personal', 1, '2024-02-23 01:34:14', 0, NULL, 0, NULL, 1),
(7479, 17198, 'Teamspace by yes bank', 'Cpa executive ', '2022-02-09', 13000.00, '1970-01-01', 15000.00, 'Ambattur ', '2', '2 years 0 months', 'Looking for career growth and need better job security ', 1, '2024-02-23 01:42:55', 0, NULL, 0, NULL, 1),
(7480, 17199, 'TNQ TECHNOLOGY', '3b2 Paginator', '2022-08-11', 13000.00, '2024-01-04', 15000.00, 'Chennai', '1', '1 years 4 months', ' Career Change', 1, '2024-02-23 05:49:50', 0, NULL, 0, NULL, 1),
(7481, 17200, 'Allset bussiness solution', 'Customer relationship manager ', '2024-02-24', 2.00, '2024-02-29', 20000.00, 'Thousand light greems road ', '1', '0 years 0 months', ' Looking for better career prospects and opportunities for career growth', 1, '2024-02-24 04:38:31', 0, NULL, 0, NULL, 1),
(7482, 17211, 'Hariharan ', 'Flutter developer ', '2022-04-14', 15000.00, '2024-03-11', 20100.00, 'Chennai ', '1', '1 years 10 months', ' For my career growth ', 1, '2024-02-24 05:52:34', 0, NULL, 0, NULL, 1),
(7483, 17208, 'Sri hema infotech ', 'Junior flutter developer ', '2022-12-15', 12000.00, '1970-01-01', 18000.00, 'Chennai', '2', '1 years 2 months', ' My career growth ', 1, '2024-02-24 05:53:06', 0, NULL, 0, NULL, 1),
(7484, 17206, 'airtel office', 'telecaller', '2023-06-05', 19000.00, '2023-12-24', 20000.00, 'mylapore ', '1', '0 years 6 months', ' Marriage ', 1, '2024-02-24 05:54:02', 108, '2024-02-24 12:06:20', 0, NULL, 1),
(7485, 17210, 'Zaigo infotech solutions Pvt Ltd ', 'Junior Flutter Developer ', '2023-05-01', 35000.00, '2024-02-16', 40000.00, 'Chennai ', '1', '0 years 9 months', ' Financial crises in company.', 1, '2024-02-24 05:54:56', 1, '2024-02-24 05:55:49', 0, NULL, 1),
(7486, 17212, 'Wahy lab solutions', 'Jr.flutter developer ', '2023-02-02', 10000.00, '2024-02-03', 12000.00, 'Vazhakkala , kakkanad , kochi', '1', '1 years 0 months', 'For finding better one', 1, '2024-02-24 05:55:31', 0, NULL, 0, NULL, 1),
(7487, 17207, 'edr continues information', 'data collection', '2021-06-07', 18500.00, '2024-12-13', 81500.00, 'chennai', '1', '3 years 6 months', 'Night shift duration closed thats Y im relieving', 1, '2024-02-24 06:01:42', 0, NULL, 0, NULL, 1),
(7488, 17205, 'Royal classic', 'Quality ', '2021-11-24', 10000.00, '2022-12-12', 10000.00, 'Coimbatore ', '1', '1 years 0 months', ' Health issues ', 1, '2024-02-24 06:25:36', 0, NULL, 0, NULL, 1),
(7489, 17214, 'Star health and Ailled insurance ', 'Verification officer ', '2023-04-20', 18000.00, '2023-11-30', 18000.00, 'Vadapazhani ', '1', '0 years 7 months', ' I want to be a change my company for my career growth for learning new things..', 1, '2024-02-24 07:06:47', 0, NULL, 0, NULL, 1),
(7490, 17194, 'Access insurance broking Pvt Ltd ', 'Team lead ', '2023-06-01', 33700.00, '2024-02-29', 33700.00, 'Egmore ', '1', '0 years 8 months', ' Company going to be shut down ', 1, '2024-02-24 07:24:49', 0, NULL, 0, NULL, 1),
(7491, 17220, 'Poorvika Mobiles pvt ltd ', 'Sales executive ', '2023-02-01', 15000.00, '2024-02-03', 15000.00, 'Old WASHERMENPET ', '1', '1 years 0 months', ' Continuous transfer and long distance from home ', 1, '2024-02-24 09:56:50', 0, NULL, 0, NULL, 1),
(7492, 17221, 'Starhealth', 'Tvc officer ', '2022-02-17', 31022022.00, '1970-01-01', 16000.00, 'Chennai', '2', '2 years 0 months', ' Working', 1, '2024-02-24 10:06:00', 0, NULL, 0, NULL, 1),
(7493, 17223, 'eximio service and soluti ', 'web research anal ', '2022-06-15', 1.50, '2023-09-26', 1.50, 'ambattur', '1', '1 years 3 months', ' Father passe away ', 1, '2024-02-24 10:37:37', 0, NULL, 0, NULL, 1),
(7494, 17222, 'Om innovation call service Pvt Ltd', 'Chennai', '2022-03-01', 15000.00, '2024-02-10', 25000.00, 'Chetpet', '1', '1 years 11 months', ' Family issues', 1, '2024-02-24 10:44:42', 0, NULL, 0, NULL, 1),
(7495, 17225, 'Teamlease Digital Private limited ', 'Associate career consultant ', '2021-12-09', 13000.00, '2023-07-27', 15000.00, 'Chennai ', '1', '1 years 7 months', ' Looking for a better opportunity ', 1, '2024-02-26 03:33:08', 0, NULL, 0, NULL, 1),
(7496, 17227, 'Brandingbeez ', 'Senior Graphic and UIUX Designer ', '2023-04-01', 18000.00, '1970-01-01', 20000.00, 'Coimbatore ', '2', '0 years 10 months', ' Looking to upskill myself and career growth ', 1, '2024-02-26 04:33:29', 0, NULL, 0, NULL, 1),
(7497, 17229, '8Queens software technology ', 'Flutter developer ', '2022-10-01', 10000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '1 years 4 months', ' ', 1, '2024-02-26 05:58:54', 0, NULL, 0, NULL, 1),
(7498, 17232, 'Star health insurance ', 'Telesales ', '2023-04-06', 24.00, '2024-03-10', 23.00, 'Chennai ', '1', '0 years 11 months', ' No imporment ', 1, '2024-02-26 06:56:56', 0, NULL, 0, NULL, 1),
(7499, 17233, 'Hotel savera', 'Sales executive ', '2023-02-04', 18000.00, '2023-12-11', 22000.00, 'Chennai', '1', '1 years 0 months', 'Rotational shift ', 1, '2024-02-26 07:10:29', 0, NULL, 0, NULL, 1),
(7500, 17237, 'Khazana corporate office ', 'Product management ', '2023-08-01', 22000.00, '2024-01-31', 22000.00, 'Chennai ', '1', '0 years 5 months', ' ', 1, '2024-02-26 07:12:19', 0, NULL, 0, NULL, 1),
(7501, 17231, ' Yamaha Showroom ', 'Billing ', '2022-07-09', 10000.00, '2023-07-10', 13000.00, 'Chennai ', '1', '1 years 0 months', ' ', 1, '2024-02-26 07:26:09', 0, NULL, 0, NULL, 1),
(7502, 17231, 'Access insurance broking prv ltd', 'Telecalling ', '2022-07-11', 13000.00, '1970-01-01', 13000.00, 'Chennai ', '2', '1 years 7 months', 'Company Shutdown ', 1, '2024-02-26 07:27:30', 0, NULL, 0, NULL, 1),
(7503, 17239, '2yrs', 'Tmt', '2024-02-26', 220000.00, '2024-02-27', 20000.00, 'Redhills ', '1', '0 years 0 months', ' ', 1, '2024-02-26 08:06:32', 0, NULL, 0, NULL, 1),
(7504, 17243, 'Guidehouse ', 'Junior associate ', '2023-01-04', 4.01, '2024-01-31', 25000.00, 'Taramani', '1', '1 years 0 months', ' Night shift', 1, '2024-02-26 08:33:43', 1, '2024-02-26 08:34:22', 0, NULL, 0),
(7505, 17243, 'Guidehouse ', 'Junior associate ', '2023-01-04', 25000.00, '2024-01-31', 25000.00, 'Taramani ', '1', '1 years 0 months', 'Night shift ', 1, '2024-02-26 08:34:15', 0, NULL, 0, NULL, 1),
(7506, 17244, 'Tech Mahindra', 'Customer service', '2022-01-11', 20500.00, '2023-06-30', 20500.00, 'Ambattur', '1', '1 years 5 months', ' Daddy Illness', 1, '2024-02-26 08:49:19', 0, NULL, 0, NULL, 1),
(7507, 17240, 'People Interactive', 'Customer service', '2022-09-11', 20800.00, '2023-09-30', 21000.00, 'Chennai ', '1', '1 years 0 months', ' Branch closed and asked to relocate', 1, '2024-02-26 08:58:18', 0, NULL, 0, NULL, 1),
(7508, 17224, 'Bajaj finserve', 'Tellecaller', '2022-09-05', 14000.00, '2023-12-03', 14000.00, 'Chennai', '1', '1 years 2 months', ' Personal issue', 1, '2024-02-26 10:45:48', 0, NULL, 0, NULL, 1),
(7509, 17247, 'Adiyogi promoters ', 'Marketing manager ', '2021-11-25', 20000.00, '2023-12-22', 23000.00, 'Thambaram ', '1', '2 years 0 months', 'Family issues ', 1, '2024-02-26 11:48:57', 0, NULL, 0, NULL, 1),
(7510, 17249, 'Dr.mohans diabetes specialities centre', 'Call centre executive', '2022-09-16', 20000.00, '1970-01-01', 20000.00, 'Chennai', '2', '1 years 5 months', 'I want to develop my skills and searching for new skills for development ', 1, '2024-02-26 01:47:43', 0, NULL, 0, NULL, 1),
(7511, 17256, 'Indusind bank ', 'VRM', '2023-09-04', 22000.00, '2023-12-27', 22000.00, 'Karapakkam ', '1', '0 years 3 months', 'My wedding so in quite the job', 1, '2024-02-27 05:26:22', 0, NULL, 0, NULL, 1),
(7512, 17256, 'HDFC Bank ', 'BSO', '2022-07-11', 18000.00, '2023-08-19', 22000.00, 'Arumbakkam ', '1', '1 years 1 months', 'Good offer ', 1, '2024-02-27 05:28:33', 0, NULL, 0, NULL, 1),
(7513, 17260, 'Hdb finance', 'Relationship officer', '2023-08-11', 15.00, '2024-02-21', 11100.00, 'Valasaravakkam', '1', '0 years 6 months', ' Field work', 1, '2024-02-27 07:06:50', 0, NULL, 0, NULL, 1),
(7514, 17264, 'Sutherland', 'Customer support associate', '2022-10-10', 23000.00, '2023-06-11', 23000.00, 'Chennai', '1', '0 years 8 months', ' ', 1, '2024-02-27 07:24:38', 0, NULL, 0, NULL, 1),
(7515, 17259, 'Yes infotech ', 'Vadapalani ', '2023-06-22', 15000.00, '2024-01-11', 15000.00, 'Saidapet ', '1', '0 years 6 months', ' Main focused on desktop works', 1, '2024-02-27 07:33:58', 0, NULL, 0, NULL, 1),
(7516, 17266, 'BAJAJ FINSERV ', 'OFFICER SALES ', '2021-12-03', 15000.00, '2023-08-23', 19000.00, 'CHENNAI', '1', '1 years 8 months', ' Personal issues', 1, '2024-02-27 08:17:56', 0, NULL, 0, NULL, 1),
(7517, 17269, 'Bajaj finserv', 'Tele executive ', '2023-07-01', 19000.00, '2024-01-27', 23000.00, 'Spencer plaza ', '1', '0 years 6 months', ' ', 1, '2024-02-27 09:48:12', 0, NULL, 0, NULL, 1),
(7518, 17272, 'Crio.Do', 'Inside sales specialist ', '2024-04-01', 420000.00, '2024-10-06', 420000.00, 'Chennai ', '1', '0 years 6 months', ' Long distance ', 1, '2024-02-27 10:25:22', 0, NULL, 0, NULL, 1),
(7519, 17272, 'Elixir business solutions ', 'Marketing Executive ', '2022-04-15', 240000.00, '2022-07-15', 240000.00, 'Chennai ', '1', '0 years 3 months', 'I joined the company for project purpose and so after i completed my project i relieved from the company ', 1, '2024-02-27 10:27:28', 0, NULL, 0, NULL, 1),
(7520, 17271, 'Hdfc ergo general insurance ', 'Senior executive ', '2023-08-17', 24000.00, '2024-02-13', 23093.00, 'Guindy ', '1', '0 years 5 months', 'They took me for cattle insurance but it has not been launched and vendors are not been allocated so there is no work for me', 1, '2024-02-27 10:29:49', 0, NULL, 0, NULL, 1),
(7521, 17276, 'Red realty ', 'Customer support ', '2022-02-23', 12000.00, '2023-12-31', 12000.00, 'T.nagar', '1', '1 years 10 months', ' They are not giving proper salary and incentives ', 1, '2024-02-27 11:26:13', 0, NULL, 0, NULL, 1),
(7522, 17284, 'Teleperformance ', 'Senior customer service Associate ', '2023-07-20', 25850.00, '2023-09-18', 25850.00, 'Ambattur', '1', '0 years 1 months', 'Accident ', 1, '2024-02-27 04:59:10', 0, NULL, 0, NULL, 1),
(7523, 17284, 'Teleperformance ', 'Senior customer service Associate ', '2023-07-20', 25850.00, '2023-09-18', 25850.00, 'Ambattur', '1', '0 years 1 months', 'Accident ', 1, '2024-02-27 04:59:11', 1, '2024-02-27 05:03:12', 0, NULL, 0),
(7524, 17285, 'I process India pvt Ltd ', 'Sales executive ', '2021-11-01', 15000.00, '1970-01-01', 22000.00, 'Chennai ', '2', '2 years 3 months', ' Family issues ', 1, '2024-02-28 04:51:11', 0, NULL, 0, NULL, 1),
(7525, 17286, 'hsbc bank', 'sales manager', '2022-01-20', 21000.00, '2024-01-24', 29000.00, 'bangalore', '1', '2 years 0 months', 'salary issue', 108, '2024-02-28 10:36:19', 0, NULL, 0, NULL, 1),
(7526, 17289, 'sepack', 'sales executive', '2021-06-08', 20000.00, '2022-05-18', 22000.00, 'chennai', '1', '0 years 11 months', ' Company shutdown', 1, '2024-02-28 05:35:23', 0, NULL, 0, NULL, 1),
(7527, 17289, 'lobb logistics', 'business development executive', '2022-06-08', 25000.00, '2022-08-17', 32000.00, ' chennai', '1', '0 years 2 months', 'Salary issue', 1, '2024-02-28 05:37:30', 0, NULL, 0, NULL, 1),
(7528, 17289, ' sulekha', 'us executive', '2023-08-07', 37000.00, '2023-11-01', 37000.00, 'chennai', '1', '0 years 2 months', 'Night shift', 1, '2024-02-28 05:39:09', 0, NULL, 0, NULL, 1),
(7529, 17281, 'Allset business solution', 'vocie process', '2023-07-17', 13000.00, '2024-01-31', 13000.00, 'chennai', '1', '0 years 6 months', ' low salary and i have interest in customer support', 1, '2024-02-28 05:44:25', 0, NULL, 0, NULL, 1),
(7530, 17293, 'Audit', 'Accountant ', '2021-02-02', 10000.00, '2022-02-16', 10000.00, 'Thanjavur ', '1', '1 years 0 months', ' ', 1, '2024-02-28 06:06:15', 0, NULL, 0, NULL, 1),
(7531, 17292, 'Glofin services private limited', 'Associate and operations ', '2023-01-06', 18000.00, '1970-01-01', 18000.00, 'Purasaiwakkam', '2', '1 years 1 months', ' Career growth', 1, '2024-02-28 06:39:05', 0, NULL, 0, NULL, 1),
(7532, 17296, 'Adroit urban developers ', 'Senior executive ', '2023-06-07', 30000.00, '2024-01-31', 25000.00, 'Talambur ', '1', '0 years 7 months', ' Long distance ', 1, '2024-02-28 06:42:44', 0, NULL, 0, NULL, 1),
(7533, 17300, 'Capgemini pvt ltd ', 'Senior associate ', '2023-05-25', 400000.00, '2023-12-29', 400000.00, 'Chennai ', '1', '0 years 7 months', ' My deal change to coimbatore location ', 1, '2024-02-28 07:03:28', 0, NULL, 0, NULL, 1),
(7534, 17300, 'Accenture Pvt Ltd ', 'Process associate ', '2020-05-11', 200000.00, '2023-05-11', 250000.00, 'Chennai ', '1', '3 years 0 months', '3 years work in 3 payroll name so I am releaving ', 1, '2024-02-28 07:06:44', 0, NULL, 0, NULL, 1),
(7535, 17288, 'Sbi', 'Chennai ', '2023-08-02', 20000.00, '1970-01-01', 20000.00, 'Koyembedu', '2', '0 years 6 months', 'Distance ', 1, '2024-02-28 07:48:35', 0, NULL, 0, NULL, 1),
(7536, 17301, 'Kappsoft systems pvt ltd', 'Flutter developer cum software tester', '2023-03-03', 30.00, '2024-01-11', 5.50, 'Chennai', '1', '0 years 10 months', ' Looking for challenges in job', 1, '2024-02-28 07:54:38', 0, NULL, 0, NULL, 1),
(7537, 17303, 'Prochant ', 'Fresher ', '2023-08-01', 15500.00, '2024-02-03', 15500.00, 'Dlf it park , porur ', '1', '0 years 6 months', ' I relieved because of night shift ', 1, '2024-02-28 08:26:37', 1, '2024-02-28 08:28:02', 0, NULL, 1),
(7538, 17303, 'Prochant ', 'Fresher ', '2023-08-25', 15500.00, '2024-02-03', 15500.00, 'Dlf it park , porur ', '1', '0 years 5 months', ' I relieved because of night shift ', 1, '2024-02-28 08:26:37', 1, '2024-02-28 08:26:48', 0, NULL, 0),
(7539, 17302, 'Zolve support private limited ', 'Field sales associate ', '2023-07-14', 18000.00, '1970-01-01', 21000.00, 'Nungambakkam ', '2', '0 years 7 months', ' For better package ', 1, '2024-02-28 08:32:59', 0, NULL, 0, NULL, 1),
(7540, 17310, 'V5 organic biotech,l&t shipbuilding tvs supply cha', 'Marketing executive,And office assistant ', '2020-02-01', 20000.00, '2022-12-10', 20000.00, 'Vadapalani,kattupalli Chennai ', '1', '2 years 10 months', ' Father death ', 1, '2024-02-28 11:08:41', 0, NULL, 0, NULL, 1),
(7541, 17311, 'Ola electric scooters', 'Test brand champion ', '2021-10-04', 23000.00, '2022-12-30', 21400.00, 'Chennai', '1', '1 years 2 months', ' For My Career growth', 1, '2024-02-29 04:38:23', 0, NULL, 0, NULL, 1),
(7542, 17313, 'Honey translation\'s services ', 'Project an', '2024-02-29', 10000.00, '1970-01-01', 10000.00, 'Vadapalani ', '2', '0 years 0 months', ' ', 1, '2024-02-29 05:51:20', 0, NULL, 0, NULL, 1),
(7543, 17314, 'Dozeal Private limited ', 'Flutter developer ', '2023-01-01', 15000.00, '2024-04-01', 30000.00, 'Nandanam, chennai', '1', '1 years 3 months', ' My is a startup company so, currently investers stop fund temporary so I reliving.', 1, '2024-02-29 06:06:37', 0, NULL, 0, NULL, 1),
(7544, 17315, 'CMS Marshall limited ', 'Help desk executive ', '2023-07-01', 15500.00, '2023-12-05', 15500.00, 'Chennai ', '1', '0 years 5 months', ' Meet an accident &my health is not well so I relieved ', 1, '2024-02-29 06:12:50', 0, NULL, 0, NULL, 1),
(7545, 17317, 'Vidhya', 'Sale', '2023-05-05', 25000.00, '2024-02-20', 25000.00, 'Cheanni', '1', '0 years 9 months', ' No ', 1, '2024-02-29 06:26:37', 0, NULL, 0, NULL, 1),
(7546, 17316, ' paramount tpa', 'Crm', '2022-09-01', 22000.00, '1970-01-01', 18000.00, 'Anna nagar', '2', '1 years 5 months', ' I\'m looking for better opportunities to develop my knowledge and experience\nDue to my financial situation I\'m moving from that company ', 1, '2024-02-29 06:26:49', 0, NULL, 0, NULL, 1),
(7547, 17320, 'risk management', 'ruskmamagement', '2023-10-10', 20000.00, '2024-02-10', 20000.00, 'chennai', '1', '0 years 4 months', ' ', 1, '2024-02-29 10:01:13', 0, NULL, 0, NULL, 1),
(7548, 17322, 'Plada Infotech services pvt ltd', 'Virtual Relationship Manager ', '2022-04-25', 25.00, '2023-02-18', 2.15, 'Ambattur', '1', '0 years 9 months', ' Family Health Issues', 1, '2024-03-02 05:02:37', 0, NULL, 0, NULL, 1),
(7549, 17327, 'Rafeeq Al Darb Trading and transportation Qatar ', 'Customer care Representative ', '2023-03-02', 60000.00, '2024-02-25', 60000.00, 'Qatar ', '1', '0 years 11 months', ' Family problems', 1, '2024-03-02 05:34:29', 0, NULL, 0, NULL, 1),
(7550, 17329, 'Wedding bazaar ', 'Senior accountant manager ', '2022-02-22', 22000.00, '2023-12-31', 22000.00, 'Adyar ', '1', '1 years 10 months', ' Salary issues', 1, '2024-03-02 05:42:33', 0, NULL, 0, NULL, 1),
(7551, 17333, 'Teleperformance ', 'Customer Support Associate ', '2022-10-10', 20000.00, '2023-11-20', 20000.00, 'Perungudi', '1', '1 years 1 months', ' I worked in Citibank client they moved out of India and converted to axis Bank ', 1, '2024-03-02 08:00:41', 0, NULL, 0, NULL, 1),
(7552, 17339, 'Access health care ', 'AR caller ', '2022-07-11', 13000.00, '2022-12-03', 19500.00, 'Ambattur ', '1', '0 years 4 months', ' Need to continue my pg studies', 1, '2024-03-03 04:33:03', 0, NULL, 0, NULL, 1),
(7553, 17342, 'novel exploration technologies', 'junior flutter developer', '2020-01-06', 8000.00, '1970-01-01', 12000.00, 'marthandam', '2', '4 years 1 months', ' I need to develop my skills in  flutter development,So Im looking for a great opportunity to work .Im planning to relocate in chennai.', 1, '2024-03-04 05:02:06', 0, NULL, 0, NULL, 1),
(7554, 17343, 'Aagre staffing service', 'Business associate ', '2022-10-03', 15000.00, '2023-11-10', 15000.00, 'Ambatur', '1', '1 years 1 months', 'No increment and no hike ', 1, '2024-03-04 05:04:36', 0, NULL, 0, NULL, 1),
(7555, 17344, 'codifi soft tech p ltd', 'software developer flutter', '2021-09-01', 10000.00, '2024-02-29', 2.40, 'thoraipakkam chennai', '1', '2 years 5 months', ' Learn new things , working on the same module for past 2.6 years so i quit the compang', 1, '2024-03-04 05:32:10', 0, NULL, 0, NULL, 1),
(7556, 17347, 'Equitas small finance Bank ', 'CSO ', '2023-01-02', 12000.00, '2024-05-11', 12000.00, 'Mylapore ', '1', '1 years 4 months', ' Time and salary ', 1, '2024-03-04 05:42:25', 0, NULL, 0, NULL, 1),
(7557, 17352, 'IDrive Capital ', 'Associate ', '2018-02-15', 15.00, '2023-01-31', 20.00, 'Work from home ', '1', '4 years 11 months', ' I was in investment banking company. I left the job as the market is very down.', 1, '2024-03-04 11:03:20', 0, NULL, 0, NULL, 1),
(7558, 17358, 'Aditya Birla sun life insurance ', 'Relationship officer ', '2022-11-14', 16000.00, '2023-08-05', 16000.00, 'Chennai ', '1', '0 years 8 months', 'For my eye vision problem ', 1, '2024-03-05 03:41:25', 0, NULL, 0, NULL, 1),
(7559, 17360, 'MANAPPURAM FIANCE in Bangalore ', 'Cashier ', '2022-01-05', 15000.00, '2022-12-31', 17000.00, 'Bangalore ', '1', '0 years 11 months', ' Some family problems ', 1, '2024-03-05 04:40:36', 0, NULL, 0, NULL, 1),
(7560, 17369, 'Datacapten Technologies pvt ltd', 'Sales representative ', '2022-06-01', 20000.00, '2023-07-31', 20000.00, 'Chennai ', '1', '1 years 1 months', ' Layoff ', 1, '2024-03-05 07:12:32', 0, NULL, 0, NULL, 1),
(7561, 17371, 'Mps Limited ', 'Subject matter expert ', '2022-12-20', 20000.00, '2023-12-25', 23000.00, 'Guindy ', '1', '1 years 0 months', ' Due to family emergency i had to take married life ', 1, '2024-03-05 09:16:58', 0, NULL, 0, NULL, 1),
(7562, 17374, 'Hies global visa pvt ltd ', 'Tellecaller excutive ', '2022-09-05', 15000.00, '2023-04-06', 16000.00, 'Vadapalani ', '1', '0 years 7 months', ' They suddenly close the company due to some issues ', 1, '2024-03-05 12:45:07', 0, NULL, 0, NULL, 1),
(7563, 17374, 'Meher alloy steel company ', 'Assistant accountant ', '2023-06-15', 14000.00, '2024-01-10', 14000.00, 'Ambattur ', '1', '0 years 6 months', 'They didn\'t give proper salary ', 1, '2024-03-05 12:47:34', 0, NULL, 0, NULL, 1),
(7564, 17377, 'primates development solution pvt ltd', 'flutter developer', '2022-11-15', 20000.00, '1970-01-01', 30000.00, 'chennai', '2', '1 years 3 months', ' ', 1, '2024-03-06 04:24:07', 0, NULL, 0, NULL, 1),
(7565, 17377, 'techeva solution pvt ltd', 'trainee ios developer', '2022-03-10', 17000.00, '2022-11-10', 20000.00, 'pondicherry', '1', '0 years 8 months', 'Project was completed ', 1, '2024-03-06 04:27:56', 0, NULL, 0, NULL, 1),
(7566, 17378, 'Tech  mahindra', 'Associate', '2023-09-04', 18000.00, '2024-03-01', 18000.00, 'Chennai ethiraj road egmore', '1', '0 years 5 months', 'They change my job location to ambattur ', 1, '2024-03-06 04:48:51', 0, NULL, 0, NULL, 1),
(7567, 17379, 'Just dial ', 'Telesales ', '2023-03-02', 12000.00, '2023-12-30', 15500.00, 'Chennai ', '1', '0 years 9 months', ' Long distance ', 1, '2024-03-06 05:11:30', 0, NULL, 0, NULL, 1),
(7568, 17380, 'Lanson Toyota ', 'Customer relation executive ', '2019-10-14', 144000.00, '2022-05-31', 180000.00, 'Koyambedu ', '1', '2 years 7 months', ' Maternity leave', 1, '2024-03-06 05:26:45', 0, NULL, 0, NULL, 1),
(7569, 17385, 'Bankloanz.in', 'Customer relationship manager', '2023-01-16', 22000.00, '2024-01-31', 22000.00, 'Nungambakkam', '1', '1 years 0 months', ' ', 1, '2024-03-06 06:11:36', 1, '2024-03-06 06:12:51', 0, NULL, 0),
(7570, 17385, 'Bankloanz.in', 'CRM', '2023-01-16', 22000.00, '2024-01-30', 22000.00, 'Nungambakkam', '1', '1 years 0 months', '1year agreement', 1, '2024-03-06 06:12:39', 0, NULL, 0, NULL, 1),
(7571, 17385, 'Shriram life Insurance', 'CRO', '2021-01-15', 22000.00, '2022-10-30', 23000.00, 'egmore', '1', '1 years 9 months', 'For carrier purpose', 1, '2024-03-06 06:15:18', 0, NULL, 0, NULL, 1),
(7572, 17385, 'Teleperfomance', 'customer support', '2019-06-05', 17000.00, '2020-12-30', 17000.00, 'ambattur', '1', '1 years 6 months', 'Corona company randomed', 1, '2024-03-06 06:16:40', 0, NULL, 0, NULL, 1),
(7573, 17390, 'Abservetech Pvt ltd ', 'Mobile App Developer ', '2022-02-21', 8000.00, '2023-06-23', 12000.00, 'Madurai ', '1', '1 years 4 months', ' ', 1, '2024-03-06 08:32:25', 0, NULL, 0, NULL, 1),
(7574, 17391, 'L&T Finance Company ', 'Sales Executive ', '2020-08-01', 12000.00, '2022-11-30', 20000.00, 'Trichy', '1', '2 years 3 months', 'Family Issues ', 1, '2024-03-06 08:42:50', 0, NULL, 0, NULL, 1),
(7575, 17394, 'Trinity Publishing Services Pvt Ltd ', 'Customer support executive ', '2020-08-03', 15000.00, '2024-01-09', 18000.00, 'Nungambakkam ', '1', '3 years 5 months', 'Met with an accident ', 1, '2024-03-07 05:15:34', 0, NULL, 0, NULL, 1),
(7576, 17393, 'Trade plus navia markets ', 'Backoffice executive Dp and Kyc ops', '2021-08-17', 15000.00, '2022-08-17', 17000.00, 'Chennai ', '1', '1 years 0 months', ' Night shift', 1, '2024-03-07 05:16:04', 0, NULL, 0, NULL, 1),
(7577, 17394, 'Global Leathers Pvt Ltd ', 'Accounts Assistant ', '2018-08-08', 12000.00, '2020-02-11', 12000.00, 'Pondicherry ', '1', '1 years 6 months', 'Company have been closed ', 1, '2024-03-07 05:18:11', 0, NULL, 0, NULL, 1),
(7578, 17401, 'bluebase Software Service', 'Jr software Developer', '2023-01-18', 8000.00, '2024-01-18', 15000.00, 'Guindy', '1', '1 years 0 months', 'To upgrade my knowledge and environment', 1, '2024-03-07 06:10:58', 0, NULL, 0, NULL, 1),
(7579, 17402, 'Safa Tech Private Limited Company', 'Flutter Front End Developer', '2023-01-06', 10000.00, '1970-01-01', 18000.00, 'Puducherry', '2', '1 years 2 months', ' I want to growth my career and also my experience', 1, '2024-03-07 06:21:56', 0, NULL, 0, NULL, 1),
(7580, 17403, 'Bluebase software services ', 'Front-end Designer ', '2023-07-10', 10000.00, '2023-12-21', 10000.00, 'Gunidy', '1', '0 years 5 months', ' To upgrade my knowledge ', 1, '2024-03-07 06:49:13', 0, NULL, 0, NULL, 1),
(7581, 17407, 'Prodapt Solutions ', 'Senior Executive ', '2023-10-03', 1.00, '2023-12-29', 280000.00, 'Omr', '1', '0 years 2 months', ' Lay off', 1, '2024-03-07 09:27:24', 0, NULL, 0, NULL, 1),
(7582, 17408, 'Star health insurance', 'Custom support Executive', '2023-02-04', 23500.00, '2024-02-29', 23500.00, 'Egmore', '1', '1 years 0 months', ' TO GROW UP MY LEVEL ', 1, '2024-03-07 01:44:30', 0, NULL, 0, NULL, 1),
(7583, 17410, 'HDFC ergo general insurance ', 'Associate ', '2022-03-08', 18000.00, '2023-07-30', 18000.00, 'Guiny', '1', '1 years 4 months', ' Cost of cut ', 1, '2024-03-08 03:46:17', 0, NULL, 0, NULL, 1),
(7584, 17420, 'Novac technology solutions ', 'Customer support  ( sales and collection)', '2022-10-09', 13000.00, '2023-10-15', 13000.00, 'Perungudi ', '1', '1 years 0 months', ' Family issues ', 1, '2024-03-08 05:31:26', 0, NULL, 0, NULL, 1),
(7585, 17423, 'HDB financial services ', 'Telecalling ', '2022-08-13', 13000.00, '2024-02-06', 13000.00, 'Chennai ', '1', '1 years 5 months', 'Prepare to goverment exam', 1, '2024-03-08 05:59:34', 0, NULL, 0, NULL, 1),
(7586, 17425, 'Hdb financial services', 'Phone banker', '2021-03-15', 1.00, '2023-11-01', 17.00, 'Chennai', '1', '2 years 7 months', ' For career growth', 1, '2024-03-08 06:54:26', 0, NULL, 0, NULL, 1),
(7587, 17427, 'BANK BAZAAR', 'Sr.Customer relationship officer', '2022-01-07', 15000.00, '2024-02-29', 2.75, 'chennai Ambattur', '1', '2 years 1 months', ' for my career growth', 1, '2024-03-08 07:08:00', 0, NULL, 0, NULL, 1),
(7588, 17429, 'Bank Bazar', 'Senior customer relationship manager', '2021-12-01', 15000.00, '2024-02-29', 2.75, 'Ambatur', '1', '2 years 2 months', 'Career growth', 112, '2024-03-08 01:06:26', 0, NULL, 0, NULL, 1),
(7589, 17429, 'Bank bazaar ', 'Sr.Customer relationship officer ', '2021-12-01', 15000.00, '2024-02-29', 2.75, 'chennai ambattur ', '1', '2 years 2 months', ' career growth ', 1, '2024-03-08 07:39:56', 0, NULL, 0, NULL, 1),
(7590, 17433, 'Contus Tech ', 'Sr.UX UI Designer G1', '2022-05-02', 45000.00, '2023-09-15', 52500.00, 'Guindy ', '1', '1 years 4 months', ' Company is down ,asked for taking bench due to lack of projects ', 1, '2024-03-08 11:28:40', 0, NULL, 0, NULL, 1),
(7591, 17435, 'Ison xperience', 'Customer care executive', '2023-03-24', 12000.00, '2023-12-09', 12000.00, 'Perungudi, Chennai', '1', '0 years 8 months', 'Process is ramp down', 1, '2024-03-08 12:39:11', 0, NULL, 0, NULL, 1),
(7592, 17436, 'Just Dial', 'Sales Executive', '2023-06-05', 13500.00, '2024-01-24', 15500.00, 'Little mount, ', '1', '0 years 7 months', ' My mother was sick last month i taken care of her, she was admitted over a month, that\'s the reason.', 1, '2024-03-08 01:49:03', 0, NULL, 0, NULL, 1),
(7593, 17443, 'GSMDATA TECH Pvt LTD', 'UI UX DESIGNER', '2023-03-01', 20000.00, '2024-03-01', 25000.00, 'Sholinganallur', '1', '1 years 0 months', 'There are no project in pervious office. So i lever the job. ', 1, '2024-03-09 04:34:21', 0, NULL, 0, NULL, 1),
(7594, 17447, 'Byjus', 'Business development associate ', '2023-09-04', 7.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 6 months', ' Accident ', 1, '2024-03-09 04:51:03', 0, NULL, 0, NULL, 1),
(7595, 17450, 'Scifax private limited', 'Program manager', '2023-03-02', 12.00, '2024-03-23', 12.00, 'Ulundurpet', '1', '1 years 0 months', ' Salary issues', 1, '2024-03-09 05:18:16', 0, NULL, 0, NULL, 1),
(7596, 17440, 'Trayee business solutions ', 'Quality control ', '2023-03-09', 15000.00, '2024-03-09', 15000.00, 'Santhome', '1', '1 years 0 months', ' Project done ', 1, '2024-03-09 06:39:10', 0, NULL, 0, NULL, 1),
(7597, 17456, 'Niva Bupa Health Insurance Company ', 'Unit Manager', '2023-10-05', 22500.00, '1970-01-01', 22500.00, 'Nugapakkam ', '2', '0 years 5 months', ' Better Work Environment and need more opportunity ', 1, '2024-03-09 09:22:01', 0, NULL, 0, NULL, 1),
(7598, 17460, 'Zealous service', 'Customer support executive', '2019-03-18', 12500.00, '2020-03-30', 14500.00, 'Valluvar kottam', '1', '1 years 0 months', ' Got married', 1, '2024-03-10 07:43:41', 0, NULL, 0, NULL, 1),
(7599, 17461, 'sbi cards', 'senior customer executive', '2021-06-01', 30.00, '2023-03-02', 30.00, 'porur', '1', '1 years 9 months', ' Distance ', 1, '2024-03-10 01:59:34', 0, NULL, 0, NULL, 1),
(7600, 17463, 'Star health and allied insurance ', 'Officer ', '2022-07-18', 15000.00, '2024-02-07', 17000.00, 'Chennai ', '1', '1 years 6 months', 'I want a job with better career growth opportunities.', 1, '2024-03-11 04:37:01', 0, NULL, 0, NULL, 1),
(7601, 17477, 'Sightspectrum Technology Solution pvt Ltd', 'Software Developer', '2022-03-14', 10000.00, '2023-12-08', 21000.00, 'Chennai - Tambaram', '1', '1 years 8 months', ' Career Growth Development', 1, '2024-03-11 05:12:03', 0, NULL, 0, NULL, 1),
(7602, 17478, 'Sutherland global services ', 'Transite assiociate', '2022-12-15', 12500.00, '2024-02-06', 18000.00, 'Peruagalathur', '1', '1 years 1 months', ' Project is closed in previous organisation ', 1, '2024-03-11 05:18:47', 0, NULL, 0, NULL, 1),
(7603, 17480, 'Sutherland global services ', 'Associate-Trans processing ', '2022-12-16', 12500.00, '2024-02-12', 18500.00, 'Perungathur ', '1', '1 years 1 months', 'Project is closed in previous company ', 1, '2024-03-11 05:20:56', 0, NULL, 0, NULL, 1),
(7604, 17468, 'HDB financial services and BNY mellon', 'Client processing ', '2019-07-15', 330000.00, '2024-01-31', 330000.00, 'Chennai', '1', '4 years 6 months', 'I preferred to change my job almost 2years I worked ', 1, '2024-03-11 05:49:43', 0, NULL, 0, NULL, 1),
(7605, 17468, 'HDB financial services and BNY mellon ', 'Client processing ', '2019-07-15', 330000.00, '2024-01-31', 330000.00, 'Chennai ', '1', '4 years 6 months', 'I preferred to change the company almost 2years I have completed ', 1, '2024-03-11 05:52:49', 0, NULL, 0, NULL, 1),
(7606, 17492, 'Iotrix digital business private limited ', 'Python developer ', '2021-07-22', 15000.00, '2023-11-29', 15000.00, 'Chennai ', '1', '2 years 4 months', ' Career growth ', 1, '2024-03-11 06:18:50', 0, NULL, 0, NULL, 1),
(7607, 17491, 'UEC ABROAD ', 'Process executive', '2023-05-01', 15000.00, '2023-12-31', 15000.00, 'Thousand light', '1', '0 years 7 months', 'Transferring uk', 1, '2024-03-11 06:20:15', 0, NULL, 0, NULL, 1),
(7608, 17495, 'Icici Bank ', ' Credit card department ', '2023-10-10', 12500.00, '2024-01-30', 12500.00, 'T nagar ', '1', '0 years 3 months', ' Long distance ', 1, '2024-03-11 06:37:01', 0, NULL, 0, NULL, 1),
(7609, 17494, 'Vebzon Technologies', 'Android developer', '2020-06-01', 120000.00, '2021-06-26', 120000.00, 'tiruchirappalli', '1', '1 years 0 months', ' ', 1, '2024-03-11 06:40:18', 0, NULL, 0, NULL, 1),
(7610, 17494, 'Leonido Technologies', 'UI UX Designer', '2021-07-20', 180000.00, '2023-03-20', 220000.00, 'tiruchirappalli', '1', '1 years 8 months', 'Salary Problem', 1, '2024-03-11 06:48:12', 0, NULL, 0, NULL, 1),
(7611, 17494, 'OASYS Cybernetics ', 'UI UX Designer', '2023-03-22', 300000.00, '2023-08-15', 300000.00, 'Tiruchirappalli', '1', '0 years 4 months', '45 km daily from home to office', 1, '2024-03-11 06:52:24', 0, NULL, 0, NULL, 1),
(7612, 17498, 'Allset business solutions ', 'Customer Relationship Executive ', '2022-06-06', 15000.00, '1970-01-01', 20000.00, 'Greams Road', '2', '1 years 9 months', 'Looking for an better opportunity', 1, '2024-03-11 07:31:38', 0, NULL, 0, NULL, 1),
(7613, 17502, 'JeyaQA Pvt Ltd', 'Web Developer', '2021-12-01', 10000.00, '2023-11-05', 30000.00, 'Thoothukudi', '1', '1 years 11 months', ' Looking for jobs other than native place and for gaining better Knowledge', 1, '2024-03-11 09:57:28', 0, NULL, 0, NULL, 1),
(7614, 17505, 'Qualitykiosk technologies Pvt Ltd ', 'Trainee test engineer ', '2022-06-14', 20000.00, '2023-06-30', 25000.00, 'Navi Mumbai ', '1', '1 years 0 months', ' Salary, working environment ', 1, '2024-03-11 10:42:23', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7615, 17506, 'Mckingstown manager', 'Manager', '2021-06-21', 28000.00, '2024-03-09', 18000.00, 'Kilpauk', '1', '2 years 8 months', ' Launguage problem ', 1, '2024-03-11 12:09:02', 0, NULL, 0, NULL, 1),
(7616, 17506, 'Mckingstown manager', 'Manager ', '2021-06-21', 18000.00, '2024-03-09', 28000.00, 'Kilpauk ', '1', '2 years 8 months', ' Launguage problem ', 1, '2024-03-11 12:11:23', 0, NULL, 0, NULL, 1),
(7617, 17503, 'Grass Roots BPO PVT LTD a', 'process executive', '2021-10-21', 18000.00, '2023-11-22', 18000.00, 'bangalore', '1', '2 years 1 months', ' Shutdown', 1, '2024-03-11 12:46:21', 0, NULL, 0, NULL, 1),
(7618, 17511, 'Eastwood ', 'Sales', '2023-03-05', 17000.00, '2024-02-29', 17000.00, 'Thoraipakkam ', '1', '0 years 11 months', ' Not satisfy salary.', 1, '2024-03-12 04:09:49', 0, NULL, 0, NULL, 1),
(7619, 17521, 'Trdfin', 'Hr', '2023-04-12', 1012023.00, '2024-01-01', 27000.00, 'Chennai', '1', '0 years 8 months', ' That is like night shift job', 1, '2024-03-12 05:33:06', 0, NULL, 0, NULL, 1),
(7620, 17520, 'Nxt wave technology ', 'Community building associate ', '2022-07-10', 210000.00, '2023-08-15', 300000.00, 'Chennai', '1', '1 years 1 months', ' I\'m not ok with work from home I want to learn more and improve my skills and experience ant want learn something new realted to my job and position ', 1, '2024-03-12 05:34:44', 0, NULL, 0, NULL, 1),
(7621, 17520, 'Nxt wave technology ', 'Community building associate ', '2022-07-10', 210000.00, '2023-08-15', 300000.00, 'Chennai', '1', '1 years 1 months', ' I\'m not ok with work from home I want to learn more and improve my skills and experience ant want learn something new realted to my job and position ', 1, '2024-03-12 05:34:44', 0, NULL, 0, NULL, 1),
(7622, 17512, 'Canarahsbc life insurance', 'Relationship manager', '2023-10-26', 24000.00, '2024-08-20', 24000.00, 'Chennai', '1', '0 years 9 months', ' Looking for senior role', 1, '2024-03-12 05:52:28', 0, NULL, 0, NULL, 1),
(7623, 17518, 'Nexbase Technology ', 'Project coordinator (sales& Marketing)', '2023-02-01', 12000.00, '1970-01-01', 15000.00, 'Ashok Nagar ', '2', '1 years 1 months', ' Learn Different skils , different location, carrier growth.', 1, '2024-03-12 05:54:51', 0, NULL, 0, NULL, 1),
(7624, 17525, 'Teleperformance', 'Customer Service Associate', '2021-12-09', 130000.00, '2024-03-01', 15000.00, 'Ambattur,Chennai', '1', '2 years 2 months', ' Enroll my Updated Career Knowledge with a leading company to develop a business', 1, '2024-03-12 06:17:05', 0, NULL, 0, NULL, 1),
(7625, 17527, 'Central Apps', 'Full stack developer ', '2022-01-12', 10000.00, '1970-01-01', 18000.00, 'Chennai ', '2', '2 years 2 months', ' Learning new skills', 1, '2024-03-12 06:34:45', 0, NULL, 0, NULL, 1),
(7626, 17529, 'Central apps ', 'Flutter Frontend Developer', '2022-01-10', 10000.00, '1970-01-01', 18000.00, 'Washermenpet', '2', '2 years 2 months', ' Learning new skills and atmosphere ', 1, '2024-03-12 06:42:20', 0, NULL, 0, NULL, 1),
(7627, 17526, 'Om innovation ', 'Tel caller ', '2023-03-08', 16000.00, '2024-03-08', 16000.00, 'Chetpet ', '1', '1 years 0 months', ' Delay salary ', 1, '2024-03-12 06:55:15', 0, NULL, 0, NULL, 1),
(7628, 17531, 'Allsec technologies limited ', 'Customer care executive ', '2021-10-12', 133200.00, '2022-11-11', 14000.00, 'Chennai ', '1', '1 years 0 months', ' Because of my mother is not feeling well. Tumer in utras my mother had a surgery. So I take care of him', 1, '2024-03-12 09:13:37', 0, NULL, 0, NULL, 1),
(7629, 0, 'mp developers', 'sr telecaller', '2023-01-02', 25000.00, '2024-01-12', 25000.00, 'chennai', '1', '1 years 0 months', 'Health issues', 1, '2024-03-12 10:46:33', 1, '2024-03-23 08:40:22', 0, NULL, 0),
(7630, 0, 'skyrams outdoor advertising ', 'telesales', '2019-03-10', 18000.00, '2023-12-15', 23000.00, 'chennai', '1', '4 years 9 months', 'Personal', 1, '2024-03-12 10:49:47', 1, '2024-03-23 08:40:27', 0, NULL, 0),
(7631, 0, 'mmm group of companies', 'telecaller', '2017-08-10', 15000.00, '1970-01-01', 20000.00, 'chennai ', '2', '6 years 7 months', 'Company shutdown', 1, '2024-03-12 10:51:49', 1, '2024-03-23 08:40:17', 0, NULL, 0),
(7632, 17540, 'Auto Sense Pvt Limited', 'Customer Executive ', '2021-05-01', 15000.00, '2022-05-18', 15000.00, 'Guindy', '1', '1 years 0 months', ' I Got job in Bank of America ', 1, '2024-03-12 12:06:11', 0, NULL, 0, NULL, 1),
(7633, 17542, 'MMC infotech services private limited', 'Processing Executive', '2021-08-26', 26.00, '2023-09-15', 14000.00, 'Chennai', '1', '2 years 0 months', ' I Am deeply commited to continuous growth and development, both Professionally and Personally.', 1, '2024-03-12 01:32:49', 0, NULL, 0, NULL, 1),
(7634, 17551, 'Success4 solutions Pvt Ltd ', 'Software Engineer ', '2022-10-03', 30000.00, '2023-07-31', 30000.00, 'Chennai ', '1', '0 years 9 months', ' Completed the project and relieving.', 1, '2024-03-13 05:35:52', 1, '2024-03-13 05:37:59', 0, NULL, 1),
(7635, 17551, 'Decision mind India Pvt Ltd ', 'Trainee ', '2021-09-27', 15000.00, '2022-10-02', 15000.00, 'Chennai ', '1', '1 years 0 months', 'Full time work in Success4', 1, '2024-03-13 05:37:39', 0, NULL, 0, NULL, 1),
(7636, 17550, 'teleperformance global ', 'senior medical coder', '2023-04-03', 16500.00, '2023-11-30', 16500.00, 'ambattur', '1', '0 years 7 months', ' Project Rampdown', 1, '2024-03-13 05:42:57', 0, NULL, 0, NULL, 1),
(7637, 17535, 'mmm group of companies ', 'telecaller', '2017-08-15', 15000.00, '2024-03-13', 18000.00, 'chennai', '2', '6 years 6 months', ' Company shutdown', 1, '2024-03-13 05:44:55', 1, '2024-03-13 05:46:03', 0, NULL, 1),
(7638, 17547, 'Byjus ', 'Business development associate ', '2023-04-01', 40000.00, '2024-09-21', 40000.00, 'Chennai', '1', '1 years 5 months', ' .', 1, '2024-03-13 05:48:02', 0, NULL, 0, NULL, 1),
(7639, 17535, 'skyram outdoor advertising company', 'telesales', '2019-05-10', 18000.00, '2023-10-10', 22000.00, 'chennai', '1', '4 years 5 months', 'Personal ', 1, '2024-03-13 05:48:11', 0, NULL, 0, NULL, 1),
(7640, 17535, 'mp developers', 'sr telecaller', '2023-01-03', 28000.00, '2024-01-10', 28000.00, 'chennai', '1', '1 years 0 months', 'Health issues', 1, '2024-03-13 05:49:45', 0, NULL, 0, NULL, 1),
(7641, 17557, 'Fincover financial services private limited ', 'Sales executive ', '2023-04-12', 14000.00, '2024-03-08', 14000.00, 'Vadapalani ', '1', '0 years 11 months', 'Personal issues ', 1, '2024-03-13 07:33:06', 0, NULL, 0, NULL, 1),
(7642, 17562, 'Bajaj ', 'Manager', '2021-01-01', 35000.00, '2024-01-05', 35000.00, 'Bijapur ', '1', '3 years 0 months', ' ', 1, '2024-03-13 09:22:21', 0, NULL, 0, NULL, 1),
(7643, 17564, 'TATA AIG GENERAL INSURANCE CO LTD', 'Sales manager ', '2023-05-08', 425000.00, '2024-02-14', 425000.00, 'CHENNAI', '1', '0 years 9 months', ' BETTER OPPORTUNITY ', 1, '2024-03-13 10:07:59', 0, NULL, 0, NULL, 1),
(7644, 17564, 'HDFC ERGO GENERAL INSURANCE CO LTD', 'JUNIOR ASSOCIATE ', '2022-01-20', 290000.00, '2023-05-04', 33000.00, 'CHENNAI ', '1', '1 years 3 months', 'CARRER GROWTH', 1, '2024-03-13 10:09:33', 0, NULL, 0, NULL, 1),
(7645, 17564, 'SPECTRUM TALENT MANAGEMENT PVT LTD', 'TELE CALLER ', '2020-01-02', 18000.00, '2022-01-19', 19500.00, 'CHENNAI ', '1', '2 years 0 months', 'MOVED FROM ON ROLL TO OFF ROLL', 1, '2024-03-13 10:11:06', 0, NULL, 0, NULL, 1),
(7646, 17564, 'PACIFIC ADVISORY PVT LTD', 'TEAM LEADER', '2018-02-21', 15000.00, '2019-08-05', 18000.00, 'CHENNAI ', '1', '1 years 5 months', 'Better offer', 1, '2024-03-13 10:12:26', 0, NULL, 0, NULL, 1),
(7647, 17565, 'Vizza', 'Team lead ', '2022-05-06', 25000.00, '2024-03-15', 28600.00, 'Chennai ', '1', '1 years 10 months', ' Salary issue ', 1, '2024-03-13 10:47:59', 0, NULL, 0, NULL, 1),
(7648, 17566, 'caspian management services', 'sales', '2023-02-07', 20000.00, '2024-02-05', 20000.00, 'chennai', '1', '0 years 11 months', ' Salary increase', 1, '2024-03-13 12:17:30', 0, NULL, 0, NULL, 1),
(7649, 17568, 'HDFC life insurance ', 'Agency development manager ', '2023-04-17', 570000.00, '2023-08-05', 570000.00, 'Chennai ', '1', '0 years 3 months', ' Due to family issues ', 1, '2024-03-13 06:02:36', 0, NULL, 0, NULL, 1),
(7650, 17569, 'Bonbloc Technologies ', 'Associate software Engineer ', '2023-04-03', 15000.00, '2024-01-12', 25000.00, 'Chennai ', '1', '0 years 9 months', ' Don\'t have suitable project', 1, '2024-03-14 05:08:08', 0, NULL, 0, NULL, 1),
(7651, 17571, 'Acheck global solution', 'senior executive', '2021-12-13', 15000.00, '2023-12-29', 20000.00, ' chennai', '1', '2 years 0 months', ' for my career growth', 1, '2024-03-14 05:31:29', 0, NULL, 0, NULL, 1),
(7652, 17571, 'thinksqnk solution', 'customer support executive', '2019-11-01', 11000.00, '2021-12-11', 13500.00, 'chennai', '1', '2 years 1 months', 'For my career growth', 1, '2024-03-14 05:33:17', 0, NULL, 0, NULL, 1),
(7653, 17571, 'zealous service ', 'customer care executive', '2017-11-01', 7500.00, '2019-11-01', 11500.00, 'chennai', '1', '2 years 0 months', 'for my career growth', 1, '2024-03-14 05:34:58', 0, NULL, 0, NULL, 1),
(7654, 16385, 'sutherland global service', 'operational support', '2021-08-20', 17500.00, '2023-08-30', 25000.00, 'perungalathur', '1', '2 years 0 months', ' Mothers health issues', 1, '2024-03-14 06:30:05', 0, NULL, 0, NULL, 1),
(7655, 17545, 'Paisabazaar', 'Sales associate', '2023-05-02', 16500.00, '2023-11-16', 16500.00, 'Chennai', '1', '0 years 6 months', ' Some medical issue...', 1, '2024-03-14 06:37:14', 0, NULL, 0, NULL, 1),
(7656, 17575, 'HTC GLOBAL SERVICE', 'Data Conversion Spacilist', '2012-12-03', 5000.00, '2013-10-21', 5000.00, 'Chennai', '1', '0 years 10 months', ' For better career growth', 1, '2024-03-14 07:30:37', 0, NULL, 0, NULL, 1),
(7657, 17575, 'Chola Ms General Insurance Company', 'Officer back office operations', '2014-01-20', 13000.00, '2021-12-07', 13000.00, 'Chennai', '1', '7 years 10 months', 'For better career growth', 1, '2024-03-14 07:34:14', 0, NULL, 0, NULL, 1),
(7658, 17575, 'Computer Age Management Services', 'Senior Executive', '2022-01-20', 19000.00, '2024-01-25', 19000.00, 'Chennai', '1', '2 years 0 months', 'Better career growth', 1, '2024-03-14 07:36:56', 0, NULL, 0, NULL, 1),
(7659, 17567, 'thinksnik solution pvt ltd', 'customer support executive', '2021-01-05', 15000.00, '2022-01-28', 17000.00, 'chennai', '1', '1 years 0 months', ' Salary issuses', 1, '2024-03-14 08:00:04', 0, NULL, 0, NULL, 1),
(7660, 17578, 'HDB financial services ', 'Collection ', '2023-07-14', 200000.00, '2024-02-02', 20000.00, 'Banswadi ', '1', '0 years 6 months', ' Helth issue ', 1, '2024-03-14 09:21:03', 0, NULL, 0, NULL, 1),
(7661, 17581, 'Indiafilings ', 'Business advisor ', '2023-07-14', 16000.00, '2024-01-13', 18000.00, 'Chennai ', '1', '0 years 5 months', ' I had my family issues so unable to continue ', 1, '2024-03-15 05:12:51', 0, NULL, 0, NULL, 1),
(7662, 17589, 'act fibernet', 'senior customer support', '2023-04-04', 360000.00, '2024-07-22', 380000.00, 'chennai mrc nagar', '1', '1 years 3 months', ' Carrer grow ', 1, '2024-03-15 06:01:59', 0, NULL, 0, NULL, 1),
(7663, 17594, 'Vr construction', 'Team lead', '2021-05-01', 5.00, '2024-01-31', 5.00, 'Semencherry', '1', '2 years 8 months', ' Long distance', 1, '2024-03-15 11:05:57', 0, NULL, 0, NULL, 1),
(7664, 17597, 'Hcl', 'Chat process', '2022-09-01', 14500.00, '1970-01-01', 18000.00, 'Navalur', '2', '1 years 6 months', ' Need to improve my growth', 1, '2024-03-15 12:47:22', 0, NULL, 0, NULL, 1),
(7665, 17602, 'Think and learn pvt ltd ', 'Business development Associate ', '2022-08-10', 38000.00, '2023-06-10', 34000.00, 'Chennai ', '1', '0 years 10 months', ' Timing issues ', 1, '2024-03-16 07:23:54', 0, NULL, 0, NULL, 1),
(7666, 17602, 'Policybazaar Insurance Broker Private Limited ', 'Customer relationship executive ', '2023-06-20', 34000.00, '2023-10-20', 34000.00, 'Adyar ', '1', '0 years 4 months', 'Health issues ', 1, '2024-03-16 07:25:44', 0, NULL, 0, NULL, 1),
(7667, 17603, 'Wipro ( under progressive)', 'Vendor', '2021-07-09', 18000.00, '2024-03-28', 18000.00, 'Spencer ', '1', '2 years 8 months', ' Personal ', 1, '2024-03-16 07:28:15', 0, NULL, 0, NULL, 1),
(7668, 17607, 'HDB financial services ', 'Tele caller ', '2022-11-04', 11000.00, '2024-01-04', 11000.00, 'G.p road', '1', '1 years 2 months', ' Health issues ', 1, '2024-03-18 04:53:34', 0, NULL, 0, NULL, 1),
(7669, 17608, 'Join Commerce Pvt Ltd ', 'Operation Executive ', '2023-07-11', 18500.00, '2023-12-30', 18500.00, 'Chennai ', '1', '0 years 5 months', ' Health issues ', 1, '2024-03-18 05:39:04', 0, NULL, 0, NULL, 1),
(7670, 17598, 'Kotak mahindra bank', 'Junior sales officer finance', '2023-03-01', 13000.00, '2023-11-30', 130000.00, 'Chennai', '1', '0 years 8 months', ' Health issue', 1, '2024-03-18 05:51:43', 0, NULL, 0, NULL, 1),
(7671, 17612, 'Hdfcsales pvt ltd', 'Customer relationship manager', '2024-01-11', 11.00, '1970-01-01', 23.00, 'Kanakapur', '2', '0 years 2 months', 'For good opportunities', 1, '2024-03-18 09:17:46', 0, NULL, 0, NULL, 1),
(7672, 15537, 'Aditya Birla Capital ', 'Assistant manager', '2022-08-11', 37000.00, '2023-12-25', 4.76, 'Chennai', '1', '1 years 4 months', ' Due to my father had undergone surgery. ', 1, '2024-03-19 04:05:59', 0, NULL, 0, NULL, 1),
(7673, 17615, 'Uniorbit technologies ', 'Senior sales executive ', '2022-09-13', 30000.00, '2023-10-03', 31000.00, 'Bellandur', '1', '1 years 0 months', ' Was married and shifted to chennai ', 1, '2024-03-19 06:24:13', 0, NULL, 0, NULL, 1),
(7674, 17613, 'KSN Honda Automobiles Pvt Ltd ', 'Customer Relationship Executive ', '2020-05-04', 6.00, '2021-04-26', 13000.00, 'Ekattuthangal ', '1', '0 years 11 months', 'For study', 1, '2024-03-19 06:41:59', 0, NULL, 0, NULL, 1),
(7675, 17616, 'Sarah groups', 'Tellcaller', '0023-04-26', 15000.00, '2024-03-03', 15000.00, 'Teynampet', '1', '2000 years 10 months', ' Company is shifting to Kanchipuram', 1, '2024-03-19 07:58:22', 0, NULL, 0, NULL, 1),
(7676, 17617, 'MMC INFOTECH SERVICES PVT LIMITED ', 'Tele calling executive ', '2022-05-16', 15000.00, '2024-03-09', 15000.00, 'Pattinampakkam ,Chennai -28', '1', '1 years 9 months', ' Reason of career growth ', 1, '2024-03-19 09:11:59', 0, NULL, 0, NULL, 1),
(7677, 17629, 'Shriram life insurance ', 'Relationship Manager ', '2021-11-17', 14.00, '2024-02-29', 18.00, 'Egmore', '1', '2 years 3 months', ' ', 1, '2024-03-20 05:39:04', 0, NULL, 0, NULL, 1),
(7678, 17629, 'Shriram life insurance ', 'Senior relationship Manager ', '2021-11-17', 18.00, '2024-02-29', 18.00, 'Egmore ', '1', '2 years 3 months', 'Change the job location  that\'s only I will relieved ', 1, '2024-03-20 05:40:45', 0, NULL, 0, NULL, 1),
(7679, 17632, 'VST motors private Limited ', 'Sales associate ', '2022-10-06', 14500.00, '1970-01-01', 14500.00, 'Chennai', '2', '1 years 5 months', ' I want to change my  professional carrier ', 1, '2024-03-20 06:01:34', 0, NULL, 0, NULL, 1),
(7680, 17634, 'Autointelli ', 'Junior Software Developer ', '2023-09-11', 140000.00, '2024-03-30', 140000.00, 'Chennai ', '1', '0 years 6 months', 'Suddenly leyoff', 1, '2024-03-20 06:14:17', 0, NULL, 0, NULL, 1),
(7681, 17641, 'IOCL', 'Trade Apprentice Accountant', '2023-03-13', 16500.00, '2023-12-27', 22000.00, 'Nungambakkam', '1', '0 years 9 months', 'Some misunderstanding between the management and myself which lead to resign from them before the contract period in spite of health issues i was going through on that period', 1, '2024-03-20 07:17:22', 0, NULL, 0, NULL, 1),
(7682, 17641, 'Sheenlac Paints', 'Sales Coordinator Executive', '2023-02-13', 20000.00, '2023-03-09', 20000.00, 'Ambattur Industrial Estate', '1', '0 years 0 months', 'As i got Offer letter from IOCL , i just decided to jump from sheenlac to IOCL.', 1, '2024-03-20 07:19:58', 0, NULL, 0, NULL, 1),
(7683, 17642, 'Imarque Solution ', 'Customer support ', '2023-05-20', 18000.00, '2023-07-20', 18000.00, 'Chennai', '1', '0 years 2 months', '\n\n Mother\'s health issue', 1, '2024-03-20 07:36:28', 0, NULL, 0, NULL, 1),
(7684, 17644, 'Bluechip corporate Private limited ', 'Branch Assistant ', '2023-07-14', 12750.00, '2024-02-03', 12750.00, 'Old washermanpet ', '1', '0 years 6 months', ' ', 1, '2024-03-20 07:45:43', 0, NULL, 0, NULL, 1),
(7685, 17648, 'Tamil Nadu forest department ', 'Website administrator ', '2020-04-01', 12000.00, '1970-01-01', 19500.00, 'Chennai', '2', '3 years 11 months', ' ', 1, '2024-03-20 09:37:22', 0, NULL, 0, NULL, 1),
(7686, 17650, 'Intelizign life cycle pvt', 'Data annotator', '2023-03-02', 18000.00, '2024-03-29', 18000.00, 'bangalore', '1', '1 years 0 months', ' contract based', 1, '2024-03-20 12:54:18', 0, NULL, 0, NULL, 1),
(7687, 17650, 'IFB', 'customer service center', '2022-08-15', 14600.00, '2023-12-15', 14600.00, 'bangalore', '1', '1 years 4 months', 'family issues', 1, '2024-03-20 12:56:44', 0, NULL, 0, NULL, 1),
(7688, 17650, 'syngenta agri Pvt.', 'sale executive', '2018-04-18', 15000.00, '2020-09-21', 15000.00, 'andrapradesh', '1', '2 years 5 months', 'contract base', 1, '2024-03-20 12:59:15', 0, NULL, 0, NULL, 1),
(7689, 17655, 'Allset Businesses solutions ', 'Tele caller ', '2023-11-15', 16000.00, '1970-01-01', 16000.00, 'Chennai ', '2', '0 years 4 months', ' I feel undervalued in my current role . Im looking for a new challenge. I want a job with better career growth opportunities. ', 1, '2024-03-21 04:10:01', 0, NULL, 0, NULL, 1),
(7690, 17664, 'Exela Technologies', 'Software Engineer', '2021-10-28', 21000.00, '2023-11-27', 27000.00, 'Chennai', '1', '2 years 0 months', ' Career change I have interested in web designing', 1, '2024-03-21 04:49:29', 0, NULL, 0, NULL, 1),
(7691, 17665, 'Star Health & Allied Insurance', 'Telecaller', '2021-09-07', 20000.00, '2023-12-31', 20000.00, 'Chennai', '1', '2 years 3 months', ' Family issue', 1, '2024-03-21 04:57:30', 0, NULL, 0, NULL, 1),
(7692, 17688, 'Pupa Clic Technology', 'Junior solutions engineer ', '2022-09-25', 25.00, '2023-04-05', 14000.00, 'Chennai', '1', '0 years 6 months', 'Medical issue ', 1, '2024-03-21 05:34:56', 0, NULL, 0, NULL, 1),
(7693, 17697, 'Capgemini ', 'Associate Software Engineer ', '2022-06-29', 27600.00, '2023-09-07', 27600.00, 'Bangalore ', '1', '1 years 2 months', ' Better job position ', 1, '2024-03-21 06:15:34', 0, NULL, 0, NULL, 1),
(7694, 17695, 'Cognizant ', 'Operating analysist ', '2020-01-02', 12000.00, '2023-08-04', 25000.00, 'Chennai ', '1', '3 years 7 months', 'Health issue', 1, '2024-03-21 06:28:31', 0, NULL, 0, NULL, 1),
(7695, 17707, 'Hotfoot technology solutions ', 'UI developer ', '2023-01-06', 3.00, '2024-03-15', 3.00, 'Chennai', '1', '1 years 2 months', ' Personal reason', 1, '2024-03-21 07:04:04', 0, NULL, 0, NULL, 1),
(7696, 17713, 'efundzz technical pivate limited', 'sr.relationship manager', '2022-12-10', 25000.00, '2023-09-09', 363000.00, 'chennai', '1', '0 years 8 months', 'Looking for my career growth ', 1, '2024-03-21 08:06:47', 0, NULL, 0, NULL, 1),
(7697, 17713, 'icici bank', 'csa', '2021-01-06', 18000.00, '2022-06-14', 298000.00, 'chennai', '1', '1 years 5 months', 'Mother health issue ', 1, '2024-03-21 08:09:25', 0, NULL, 0, NULL, 1),
(7698, 17725, 'value super market', 'billing executive ', '2020-05-12', 8000.00, '2021-06-25', 14000.00, 'chennai', '1', '1 years 1 months', ' ', 1, '2024-03-21 02:17:57', 0, NULL, 0, NULL, 1),
(7699, 17725, 'guild of service ', 'house warden', '2022-11-05', 12000.00, '2023-12-31', 14500.00, 'chennai', '1', '1 years 1 months', 'Looking for better opportunity', 1, '2024-03-21 02:20:13', 0, NULL, 0, NULL, 1),
(7700, 17719, 'ITC ARUVI AGENCY ', 'Tirunelveli ', '2023-09-05', 15000.00, '2024-02-14', 15000.00, 'Tirunelveli ', '1', '0 years 5 months', ' ', 1, '2024-03-21 02:30:52', 0, NULL, 0, NULL, 1),
(7701, 17733, 'Mphasis ', 'Dot net developer ', '2023-09-21', 16500.00, '2024-03-06', 21500.00, 'Hyderabad ', '1', '0 years 5 months', ' ', 1, '2024-03-22 04:38:51', 0, NULL, 0, NULL, 1),
(7702, 17744, 'Coderzbot innovations', 'Frontend web development', '2023-02-01', 15000.00, '2024-03-22', 15000.00, 'Vandalore', '1', '1 years 1 months', ' Salary issue', 1, '2024-03-22 05:20:09', 0, NULL, 0, NULL, 1),
(7703, 17746, 'Manpower', 'Sales marketing', '2023-03-22', 21000.00, '1970-01-01', 17000.00, 'Solenallu', '2', '1 years 0 months', ' Salary package delete', 1, '2024-03-22 05:42:28', 0, NULL, 0, NULL, 1),
(7704, 17770, 'Apptomate', 'Junior Software Engineer', '2023-07-01', 10000.00, '1970-01-01', 12000.00, 'Chennai', '2', '0 years 8 months', ' Salary Issue', 1, '2024-03-22 06:18:39', 0, NULL, 0, NULL, 1),
(7705, 17737, 'Alleanza', 'Sales executive ', '2021-03-21', 15000.00, '1970-01-01', 15000.00, 'Palakkad', '2', '3 years 0 months', ' ', 1, '2024-03-22 06:22:38', 0, NULL, 0, NULL, 1),
(7706, 17776, 'Forte Management Service ', 'Senior Telecaller', '2020-09-28', 10000.00, '2023-10-25', 16000.00, 'Ponneri ', '1', '3 years 0 months', ' ', 1, '2024-03-22 06:44:18', 0, NULL, 0, NULL, 1),
(7707, 17776, 'FMC INC', 'Relationship Manager ', '2023-12-28', 20000.00, '2024-03-15', 20000.00, 'Thousand lights ', '1', '0 years 2 months', 'Salary not properly credit ', 1, '2024-03-22 06:49:28', 0, NULL, 0, NULL, 1),
(7708, 17762, 'ecare pvt ltd', 'medical billing', '2018-05-19', 8000.00, '2019-02-21', 8000.00, 'chennai', '1', '0 years 9 months', ' ', 1, '2024-03-22 07:26:28', 0, NULL, 0, NULL, 1),
(7709, 17786, 'Loans mantra', 'Executive', '2022-10-02', 15000.00, '2023-11-25', 15000.00, 'Arubakkam', '1', '1 years 1 months', ' I have changed my location to another place. ', 1, '2024-03-22 08:10:10', 0, NULL, 0, NULL, 1),
(7710, 17788, 'Matrix business service ', 'Executive ', '2022-04-25', 11000.00, '2023-12-20', 13000.00, 'Nandnam', '1', '1 years 7 months', ' Health issues ', 1, '2024-03-22 09:16:49', 0, NULL, 0, NULL, 1),
(7711, 17790, 'Mbit Computraining pvt ltd', 'Software tester', '2022-05-10', 460000.00, '2023-05-10', 460000.00, 'Chennai', '1', '1 years 0 months', ' Medical issue ', 1, '2024-03-22 09:38:52', 0, NULL, 0, NULL, 1),
(7712, 17791, 'Icici Prudential Life insurance ', 'Financial services consultant ', '2022-07-19', 18000.00, '2023-10-05', 19524.00, 'Nugambakkam ', '1', '1 years 2 months', ' ', 1, '2024-03-22 10:14:22', 0, NULL, 0, NULL, 1),
(7713, 17792, 'Re hair transplantation ', 'Manager ', '2021-12-23', 3.50, '2023-10-12', 4.50, 'Cochin ', '1', '1 years 9 months', ' Job change ', 1, '2024-03-22 10:36:18', 0, NULL, 0, NULL, 1),
(7714, 17794, 'Altrust technologies ', 'Customer support executive ', '2023-01-02', 16500.00, '2024-02-10', 18000.00, 'Bangalore ', '1', '1 years 1 months', ' Family issue', 1, '2024-03-22 10:42:41', 0, NULL, 0, NULL, 1),
(7715, 17799, 'Nexevo technologies ', 'Fullstack Development ', '2023-06-01', 5.00, '2023-10-03', 15000.00, 'Bangalore ', '1', '0 years 4 months', 'First I worked Fullstack Development after 2 month they pushed to work on WordPress development for 1 year project . This role is not coding side so I relivied ', 1, '2024-03-22 11:48:32', 0, NULL, 0, NULL, 1),
(7716, 17806, 'CITY UNION BANK', 'Senior Customer Relationship manager ', '2022-12-07', 20000.00, '1970-01-01', 25000.00, 'Perambur', '2', '1 years 3 months', ' I want explore more new things ', 1, '2024-03-23 04:48:31', 0, NULL, 0, NULL, 1),
(7717, 17805, 'ALL IS WELL ', 'TELLECALLING ', '2023-07-05', 15000.00, '2024-03-01', 15000.00, 'CHENNAI ', '1', '0 years 7 months', ' Timing problem 6.00 clock  long distance ', 1, '2024-03-23 05:15:30', 0, NULL, 0, NULL, 1),
(7718, 17815, 'Pillai & Sons ', 'Computer staff', '2014-08-16', 5000.00, '2016-03-10', 6000.00, 'Thanjavur', '1', '1 years 6 months', 'Local job preferably ', 1, '2024-03-23 05:29:35', 0, NULL, 0, NULL, 1),
(7719, 17821, 'Fint solution', 'Tellecalling excutive ', '2023-07-19', 12000.00, '2024-02-20', 15000.00, 'Coimbatore ', '1', '0 years 7 months', ' Operation for mother', 1, '2024-03-23 05:35:09', 0, NULL, 0, NULL, 1),
(7720, 17822, 'Sri Sairam Advertising ', 'Full stack developer ', '2023-02-03', 10000.00, '1970-01-01', 10000.00, 'Valasaravakam ', '2', '1 years 1 months', ' Need to learn lot in Full stack and salary ', 1, '2024-03-23 05:44:17', 0, NULL, 0, NULL, 1),
(7721, 17835, 'Tata consultancy services ', 'Process associate ', '2019-09-20', 13.00, '2023-11-17', 243950.00, 'Chennai ', '1', '4 years 1 months', ' I wanted to experience in a new environment to my career growth', 1, '2024-03-23 07:37:22', 0, NULL, 0, NULL, 1),
(7722, 17836, 'cams', 'executive officer', '2021-03-04', 1000.00, '2024-03-07', 17000.00, 'chennai', '1', '3 years 0 months', 'Carrer growth', 1, '2024-03-23 07:37:49', 0, NULL, 0, NULL, 1),
(7723, 17841, 'Fujitsu consultancy India Pvt Ltd ', 'Apprentice trainee ', '2022-02-18', 20240.00, '2023-07-31', 21168.00, 'chennai ', '1', '1 years 5 months', ' layoffs ', 1, '2024-03-23 07:55:56', 0, NULL, 0, NULL, 1),
(7724, 17839, 'Tata Communication Transformation Services ', 'Junior Customer Service Executive ', '2020-12-01', 15000.00, '2022-09-21', 25000.00, 'Ambattur ', '1', '1 years 9 months', 'Need to take care of my father health', 1, '2024-03-23 07:56:00', 0, NULL, 0, NULL, 1),
(7725, 17847, 'Ad-Astra', 'HR Executive ', '2019-09-30', 18000.00, '2020-06-27', 18000.00, 'Silk board ', '1', '0 years 8 months', 'Due to Pendapic ', 1, '2024-03-23 08:44:57', 0, NULL, 0, NULL, 1),
(7726, 17847, 'Startek Private limited ', 'Operation Executive ', '2020-08-21', 22000.00, '2023-02-18', 25000.00, 'Kudlu gate', '1', '2 years 5 months', 'Higher education ', 1, '2024-03-23 08:46:48', 0, NULL, 0, NULL, 1),
(7727, 17847, 'Manipal hospitals', 'HR', '2023-08-07', 10000.00, '2023-10-07', 10000.00, 'Old Airport road ', '1', '0 years 2 months', 'Internship ', 1, '2024-03-23 08:49:01', 0, NULL, 0, NULL, 1),
(7728, 17855, 'IndusInd bank ', 'Virtual Relationship manager ', '2022-11-23', 250000.00, '2023-09-20', 370000.00, 'CHENNAI', '1', '0 years 9 months', ' Na', 1, '2024-03-24 07:03:31', 0, NULL, 0, NULL, 1),
(7729, 17862, 'Star health ', 'Officer', '2023-01-02', 16000.00, '1970-01-01', 16000.00, 'Thousand light ', '2', '1 years 2 months', ' Timing issue ', 1, '2024-03-25 04:49:16', 0, NULL, 0, NULL, 1),
(7730, 17879, 'Pace sitters business solutions ', 'Tele caller ', '2024-04-09', 2500.00, '2024-04-10', 15000.00, 'Chennai', '1', '0 years 0 months', ' I am updating myself ', 1, '2024-03-25 05:21:28', 0, NULL, 0, NULL, 1),
(7731, 17911, 'Tridots Tech', 'Software Engineer backend', '2023-07-03', 10000.00, '2024-01-31', 15000.00, 'Porur', '1', '0 years 6 months', ' Mothers health issues', 1, '2024-03-25 06:36:54', 0, NULL, 0, NULL, 1),
(7732, 17913, 'Just dial ', 'Tele marketing executive ', '2021-11-08', 18000.00, '2024-03-30', 21000.00, 'Chenna', '1', '2 years 4 months', ' Salary issue ', 1, '2024-03-25 06:48:52', 0, NULL, 0, NULL, 1),
(7733, 17913, 'Rjr herbal hospital ', 'Telecalling', '2019-04-10', 18000.00, '2021-09-15', 15000.00, 'Chennai', '1', '2 years 5 months', 'Salary issue', 1, '2024-03-25 06:53:30', 0, NULL, 0, NULL, 1),
(7734, 17853, 'Allsec technology pvt Ltd ', 'Customer care service ', '2022-04-18', 12000.00, '2024-03-09', 15000.00, 'Velachery ', '1', '1 years 10 months', ' Family reason', 1, '2024-03-25 07:21:00', 0, NULL, 0, NULL, 1),
(7735, 17927, 'lemon tree', 'sr.executive', '2017-08-05', 18000.00, '2019-11-02', 24000.00, 'chennai', '1', '2 years 2 months', ' ', 1, '2024-03-25 07:35:48', 0, NULL, 0, NULL, 1),
(7736, 17927, 'aegis global group', 'ar. analyst', '2019-11-04', 24000.00, '2021-06-11', 24000.00, 'banglore', '1', '1 years 7 months', 'Personal reasons', 1, '2024-03-25 07:40:35', 0, NULL, 0, NULL, 1),
(7737, 17930, 'Mansource hr pvt limited ', 'Hr recruiter ', '2019-10-21', 25000.00, '2024-01-15', 25000.00, 'Bangalore ', '1', '4 years 2 months', ' There is no salery increment ', 1, '2024-03-25 07:55:57', 0, NULL, 0, NULL, 1),
(7738, 17930, 'Mansource hr pvt ltd', 'Hr recureter', '2019-10-02', 15000.00, '2024-01-03', 25000.00, 'Bangalore ', '1', '4 years 3 months', 'No increments ', 1, '2024-03-25 07:57:23', 0, NULL, 0, NULL, 1),
(7739, 17939, 'Matrimony. Com', 'Senior Relationship manager ', '2023-10-02', 26000.00, '1970-01-01', 26000.00, 'Chennai', '2', '0 years 5 months', 'Not seeing any future for the company,', 1, '2024-03-25 09:23:24', 0, NULL, 0, NULL, 1),
(7740, 17958, 'Inscribe Graphics Pvt Ltd', 'Sales executive ', '2023-03-01', 14000.00, '2024-03-21', 25000.00, 'Thoraipakkam ', '1', '1 years 0 months', 'Due to Night shift ', 1, '2024-03-25 05:22:47', 0, NULL, 0, NULL, 1),
(7741, 17963, 'Access healthcare', 'AR callar', '2023-01-13', 17000.00, '2024-03-26', 17000.00, 'Chennai', '1', '1 years 2 months', ' Family health issues', 1, '2024-03-26 04:17:15', 0, NULL, 0, NULL, 1),
(7742, 17967, 'Decision minds India Pvt Ltd ', 'Trainee ', '2021-09-27', 15000.00, '2022-10-03', 15000.00, 'Chennai ', '1', '1 years 0 months', ' Full time work in Success4 Client.', 1, '2024-03-26 04:29:04', 0, NULL, 0, NULL, 1),
(7743, 17967, 'Success4 solutions Pvt Ltd ', 'Software Engineer ', '2022-10-03', 29166.00, '2023-07-31', 29166.00, 'Chennai ', '1', '0 years 9 months', 'Project was done.', 1, '2024-03-26 04:32:09', 0, NULL, 0, NULL, 1),
(7744, 17952, 'Yathra Finance India Pvt Ltd', 'Process Associate', '2023-11-01', 23000.00, '1970-01-01', 25000.00, 'Chennai', '2', '0 years 8 months', ' ', 1, '2024-03-26 04:47:28', 0, NULL, 0, NULL, 1),
(7745, 18013, 'CGI ', 'Associate software Engineer ', '2023-08-21', 392000.00, '2023-12-31', 392000.00, 'Bengaluru ', '1', '0 years 4 months', ' They given training for developer role and they assign me BPO project i rejected.So I am waiting for developing project then CGI have no project so they released 300 freshers.', 1, '2024-03-26 05:38:23', 0, NULL, 0, NULL, 1),
(7746, 17964, 'SBI credit card', 'Thanjavur', '2023-05-26', 16000.00, '2023-12-26', 15000.00, 'Chennai', '1', '0 years 7 months', ' Family issues', 1, '2024-03-26 05:50:33', 0, NULL, 0, NULL, 1),
(7747, 18020, 'Sun business solutions', 'CSE', '2018-01-12', 65000.00, '2019-12-30', 6500.00, 'Trichy', '1', '1 years 11 months', ' For salary hike', 1, '2024-03-26 05:55:59', 0, NULL, 0, NULL, 1),
(7748, 18020, 'Natural energe solutions', 'Sales and marketing', '2019-02-02', 15000.00, '2021-03-29', 15000.00, 'Trichy', '1', '2 years 1 months', 'Project winde up', 1, '2024-03-26 05:59:07', 0, NULL, 0, NULL, 1),
(7749, 17957, 'india fillings pvt ltd ', 'business advisor ', '2023-08-10', 218000.00, '2024-03-09', 218000.00, 'guindy ', '1', '0 years 6 months', ' No Professional growth', 1, '2024-03-26 06:07:56', 0, NULL, 0, NULL, 1),
(7750, 18040, 'Bigziel Technology ', 'Front-end developer intern', '2023-07-03', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '0 years 8 months', ' Looking for a stable job ', 1, '2024-03-26 06:11:15', 0, NULL, 0, NULL, 1),
(7751, 18056, 'Iwaan research and development ', 'Full stack developer ', '2023-03-12', 6000.00, '1970-01-01', 10000.00, 'Tirukovillur', '2', '1 years 0 months', ' Career development ', 1, '2024-03-26 06:21:57', 0, NULL, 0, NULL, 1),
(7752, 18056, 'Iwaan research and development ', 'Full stack developer ', '2023-03-12', 6000.00, '1970-01-01', 10000.00, 'Tirukovillur ', '2', '1 years 0 months', 'Career development ', 1, '2024-03-26 06:23:14', 0, NULL, 0, NULL, 1),
(7753, 18083, 'Multicoreware ', 'Data annotator ', '2019-01-17', 150000.00, '2023-07-20', 250000.00, 'Chennai ', '1', '4 years 6 months', ' ', 1, '2024-03-26 07:33:56', 0, NULL, 0, NULL, 1),
(7754, 18115, 'Oro gold loan', 'Tele caller ', '2023-04-05', 16.00, '1970-01-01', 16.00, 'Thousand lights ', '2', '0 years 11 months', ' Personal issues ', 1, '2024-03-26 12:59:21', 0, NULL, 0, NULL, 1),
(7755, 18117, 'wan hai lines ', 'supervisor', '2023-08-09', 2023.00, '2024-01-02', 28000.00, 'chennai', '1', '0 years 4 months', ' Proces ramped off', 1, '2024-03-26 01:13:56', 0, NULL, 0, NULL, 1),
(7756, 18119, 'Star health and alied insurance company', 'Officer', '2022-11-02', 13000.00, '2024-03-16', 15000.00, 'Royapettah', '1', '1 years 4 months', ' For salary purpose', 1, '2024-03-26 05:01:21', 0, NULL, 0, NULL, 1),
(7757, 18123, 'Bank Bazaar ', 'Senior Customer Relationship Officer ', '2022-07-02', 20000.00, '2024-01-20', 25000.00, 'Ambattur ', '1', '1 years 6 months', ' Personal reasons', 1, '2024-03-27 05:11:36', 0, NULL, 0, NULL, 1),
(7758, 18128, 'Cognizant', 'HR RECRUITER', '2022-07-05', 400000.00, '1970-01-01', 450000.00, 'Chennai', '2', '1 years 8 months', ' Switching to Information Technology', 1, '2024-03-27 05:32:58', 0, NULL, 0, NULL, 1),
(7759, 18125, 'Hinduja global solution', 'CCE', '2014-06-25', 8500.00, '2016-11-29', 1800.00, 'Nandambakkam', '1', '2 years 5 months', ' Health issue', 1, '2024-03-27 05:33:18', 0, NULL, 0, NULL, 1),
(7760, 18120, 'byjus ', 'bda', '2022-04-07', 5.00, '2022-10-20', 5.00, 'nungampakkam ', '1', '0 years 6 months', ' Not okay with it', 1, '2024-03-27 05:39:21', 0, NULL, 0, NULL, 1),
(7761, 18120, 'byjus ', 'bda ', '2022-04-07', 5.00, '2022-10-19', 5.00, 'nungampakkam ', '1', '0 years 6 months', ' Not oKay  with it ', 1, '2024-03-27 05:42:18', 0, NULL, 0, NULL, 1),
(7762, 18130, 'Sai finwin e trade ', 'Relationship manager and Trainer ', '2023-05-22', 20000.00, '2024-02-26', 30000.00, 'Nandanam', '1', '0 years 9 months', ' As I looking for better improvement in my career aspects and better work environment i decided to relieve from previous company I served.', 1, '2024-03-27 05:42:25', 0, NULL, 0, NULL, 1),
(7763, 18129, 'Jana Small Finance Bank', 'Customer Relationship Executive', '2022-07-18', 22500.00, '2024-03-04', 22500.00, 'Chennai', '1', '1 years 7 months', ' Medical issues', 1, '2024-03-27 05:47:13', 0, NULL, 0, NULL, 1),
(7764, 18136, 'Sulekha.com New Media Pvt Ltd ', 'Senior Executive -Business Development ', '2023-03-16', 25000.00, '2024-03-16', 25000.00, 'Taramani ', '1', '1 years 0 months', ' For better hike', 1, '2024-03-27 06:55:05', 0, NULL, 0, NULL, 1),
(7765, 18138, 'HDB financial services ', 'Ambuttur ', '2021-11-27', 14500.00, '1970-01-01', 14500.00, 'Arumbakkam ', '2', '2 years 4 months', 'Working location long in my designation ', 1, '2024-03-27 07:39:55', 0, NULL, 0, NULL, 1),
(7766, 18142, 'Bank Bazaar', 'Customer Relationship officer', '2022-05-09', 31.00, '2022-10-06', 19800.00, 'Ambattur Chennai', '1', '0 years 4 months', ' Better career growth', 1, '2024-03-27 11:15:40', 1, '2024-03-27 11:18:01', 0, NULL, 1),
(7767, 18142, 'GI TECHNOLOGY PRIVATE LIMITED', 'Operation executive in Kyc', '2019-12-09', 31.00, '2021-03-09', 12000.00, 'Guindy Chennai', '1', '1 years 3 months', 'Company loss', 1, '2024-03-27 11:20:00', 0, NULL, 0, NULL, 1),
(7768, 18142, 'Tech mahindra limited', 'Customer service Associate', '2021-08-23', 31.00, '2022-02-20', 15000.00, 'Egmore chennai', '1', '0 years 5 months', 'Better job', 1, '2024-03-27 11:23:57', 0, NULL, 0, NULL, 1),
(7769, 18148, 'Medical ', 'Sales marketing', '2022-12-12', 20000.00, '2023-09-16', 22000.00, 'Vadapalani', '1', '0 years 9 months', ' I Brocke my right hand in accident ', 1, '2024-03-28 05:05:59', 0, NULL, 0, NULL, 1),
(7770, 18149, 'CholaMs people and Marketing services ', 'Executive business manager ', '2023-07-19', 30000.00, '2024-03-20', 30000.00, 'Chennai', '1', '0 years 8 months', ' Bcz of marketing ', 1, '2024-03-28 05:12:38', 0, NULL, 0, NULL, 1),
(7771, 18151, 'Indiafiings.com', 'Inside sales team lead', '2015-04-11', 180000.00, '2023-07-27', 440000.00, '8.5 years ', '1', '8 years 3 months', 'development my career goals', 1, '2024-03-28 05:25:11', 0, NULL, 0, NULL, 1),
(7772, 18155, 'Five star business finance ltd ', 'HR Assistant ', '2022-09-12', 11500.00, '2023-08-11', 14500.00, 'Chennai', '1', '0 years 10 months', 'Personal issues ', 1, '2024-03-28 05:58:36', 0, NULL, 0, NULL, 1),
(7773, 18160, 'Access health care ', 'Assistant client partner ', '2022-04-06', 28000.00, '2022-08-31', 28000.00, 'Chennai ', '1', '0 years 4 months', ' ', 1, '2024-03-28 09:22:50', 0, NULL, 0, NULL, 1),
(7774, 18160, 'Hexaware technology ', 'Senior executive ', '2022-07-05', 15000.00, '2023-02-06', 15000.00, 'Chennai ', '1', '0 years 7 months', 'Health issues ', 1, '2024-03-28 09:24:25', 0, NULL, 0, NULL, 1),
(7775, 18160, 'Sutherland global services ', 'Executive ', '2019-07-05', 13000.00, '2020-02-29', 13000.00, 'Chennai', '1', '0 years 7 months', 'Lockdown ( Corona ', 1, '2024-03-28 09:27:23', 0, NULL, 0, NULL, 1),
(7776, 18158, 'Team lease', 'Telecalling ', '2021-01-25', 14500.00, '2023-03-01', 18500.00, 'Chennai ', '1', '2 years 1 months', ' Project ram down', 1, '2024-03-28 09:41:10', 0, NULL, 0, NULL, 1),
(7777, 18158, 'Loans Mantra ', 'Telecalling ', '2023-03-06', 17000.00, '2024-02-01', 18500.00, 'Chennai ', '1', '0 years 10 months', 'Office location changes', 1, '2024-03-28 09:43:15', 0, NULL, 0, NULL, 1),
(7778, 18162, 'Loans Mantra ', 'Telecalling ', '2021-03-28', 13000.00, '2023-02-13', 18000.00, 'Chennai ', '1', '1 years 10 months', ' Office changes', 1, '2024-03-28 10:00:11', 0, NULL, 0, NULL, 1),
(7779, 18163, 'V2s finance ', 'Telecalling ', '2023-03-28', 14000.00, '2023-09-28', 18000.00, 'Chennai ', '1', '0 years 6 months', 'Office location changes ', 1, '2024-03-28 10:23:47', 0, NULL, 0, NULL, 1),
(7780, 18165, 'Infosys BPM ', 'Senior process Executive ', '2022-06-09', 18000.00, '1970-01-01', 18500.00, 'Bangalore ', '2', '1 years 9 months', ' Career ', 1, '2024-03-28 10:43:38', 0, NULL, 0, NULL, 1),
(7781, 18168, 'Ebix cash global services Ltd ', 'AR Customer supporter', '2022-10-12', 15000.00, '2024-10-14', 17000.00, 'Chennai ', '1', '2 years 0 months', ' Process shut down ', 1, '2024-03-29 12:10:39', 0, NULL, 0, NULL, 1),
(7782, 17908, 'prio consulting', 'python developer intern', '2020-06-01', 10000.00, '2020-09-25', 10000.00, 'chennai', '1', '0 years 3 months', ' NA', 1, '2024-03-29 04:49:28', 0, NULL, 0, NULL, 1),
(7783, 17908, 'idp education', 'oracle sql developer', '2021-05-03', 25000.00, '2022-04-29', 25000.00, 'chennai', '1', '0 years 11 months', 'NA', 1, '2024-03-29 04:51:47', 0, NULL, 0, NULL, 1),
(7784, 17908, 'soft suave technologies', 'software engineer trainee - react js', '2022-05-09', 15000.00, '2022-08-12', 15000.00, 'chennai', '1', '0 years 3 months', 'NA', 1, '2024-03-29 04:53:52', 0, NULL, 0, NULL, 1),
(7785, 17908, 'instant host technologies', 'hybrid developer front end', '2023-03-20', 13000.00, '2023-08-30', 13000.00, 'chennai', '1', '0 years 5 months', 'NA', 1, '2024-03-29 04:56:26', 0, NULL, 0, NULL, 1),
(7786, 18174, 'Mahaveer finance India limited', 'Associate', '2017-12-01', 10000.00, '2023-01-14', 25000.00, 'Anna salai', '1', '5 years 1 months', ' Marriage ', 1, '2024-03-29 05:31:16', 0, NULL, 0, NULL, 1),
(7787, 18176, 'India filling pvt Ltd company ', 'Gst Registration ', '2020-10-05', 12000.00, '2021-02-03', 12000.00, 'Chepet ', '1', '0 years 3 months', ' Because of luckdown', 1, '2024-03-29 05:55:09', 0, NULL, 0, NULL, 1),
(7788, 18176, 'Ospi health care pvt Ltd ', 'Customer support ', '2021-02-16', 12000.00, '2022-06-01', 12000.00, 'Thousands lights', '1', '1 years 3 months', 'Office closed ', 1, '2024-03-29 05:58:02', 0, NULL, 0, NULL, 1),
(7789, 18176, 'Reliable data service pvt Ltd ', 'Business support ', '2022-06-20', 15000.00, '2024-03-13', 15000.00, 'Spencer plaza ', '1', '1 years 8 months', 'I want to learn something new organization', 1, '2024-03-29 06:00:18', 0, NULL, 0, NULL, 1),
(7790, 18178, 'Innov source pvt ltd', 'Tellecaller', '2021-10-26', 15.00, '2023-07-07', 18.00, 'Guindy', '1', '1 years 8 months', ' Due to family issue', 1, '2024-03-29 06:35:12', 0, NULL, 0, NULL, 1),
(7791, 18180, 'Tvs motors', 'Tally accountant ', '2022-01-15', 15000.00, '2024-01-10', 18000.00, 'Pudukkottai ', '1', '1 years 11 months', ' Moved from Pudukkottai to chennai with family ', 1, '2024-03-29 06:40:26', 0, NULL, 0, NULL, 1),
(7792, 18181, 'World star technical service', 'Foreman and supervisor ', '2020-02-06', 35000.00, '2022-03-10', 40000.00, 'Abu dhabi', '1', '2 years 1 months', ' Visa was taken for 2 years', 1, '2024-03-29 06:49:36', 0, NULL, 0, NULL, 1),
(7793, 18181, 'Sks micro finance', 'Field collection executive ', '2022-05-01', 20000.00, '2024-02-20', 25000.00, 'Pudukkottai ', '1', '1 years 9 months', 'Moved from Pudukkottai to chennai', 1, '2024-03-29 06:51:10', 0, NULL, 0, NULL, 1),
(7794, 18183, 'Bentinck higher secondary school ', 'Teacher', '2021-06-01', 16500.00, '2023-06-01', 18000.00, 'Purasaiwakam', '1', '2 years 0 months', ' Health issues ', 1, '2024-03-29 07:00:58', 0, NULL, 0, NULL, 1),
(7795, 18185, 'Taraus bpo', 'Pattinapakkam', '2022-08-05', 16.00, '2023-12-15', 16.00, 'Velachery', '1', '1 years 4 months', ' Processing with be close', 1, '2024-03-29 07:06:53', 0, NULL, 0, NULL, 1),
(7796, 18184, 'People finways', 'Mylapore ', '2023-06-05', 15000.00, '2024-03-29', 15000.00, 'Spencer plaza', '1', '0 years 9 months', ' Process with be close ', 1, '2024-03-29 07:09:52', 0, NULL, 0, NULL, 1),
(7797, 18187, 'Bajaj capital ', 'Relationship manager ', '2023-07-24', 275000.00, '1970-01-01', 400000.00, 'Chennai ', '2', '0 years 8 months', ' For carrier growth', 1, '2024-03-29 07:34:22', 0, NULL, 0, NULL, 1),
(7798, 18189, 'Star health insurance company ', 'Executive ', '2021-11-01', 25.00, '1970-01-01', 19000.00, 'Royapettah ', '2', '2 years 4 months', ' Looking for new job ', 1, '2024-03-29 07:39:47', 0, NULL, 0, NULL, 1),
(7799, 18190, 'Wealth india financial Service private limited', 'Investment coach - insurance', '2021-09-02', 15000.00, '2022-10-05', 18000.00, 'Thousand light', '1', '1 years 1 months', 'Marriage is the reason', 1, '2024-03-29 08:06:16', 0, NULL, 0, NULL, 1),
(7800, 18191, 'Episource India Pvt Ltd ', 'Process executive ', '2016-11-29', 10000.00, '2021-08-30', 22000.00, 'Kandanchavadi ', '1', '4 years 9 months', ' For my location shifted', 1, '2024-03-29 08:12:42', 0, NULL, 0, NULL, 1),
(7801, 18193, 'Thiran Technologies Pvt Ltd.', 'Mobile App Developer ', '2022-07-22', 15000.00, '2024-03-04', 30000.00, 'Chennai ', '1', '1 years 8 months', ' Looking for new opportunities ', 1, '2024-03-29 09:20:56', 0, NULL, 0, NULL, 1),
(7802, 18196, 'Usekiwi infolabs pvt ltd', 'Financial counselor ', '2023-01-12', 25000.00, '2024-03-02', 25000.00, 'Nungambakkam ', '1', '1 years 1 months', ' Location changed ', 1, '2024-03-29 10:46:24', 0, NULL, 0, NULL, 1),
(7803, 18200, 'MedLink Healthcare Pvt Ltd ', 'Area Sales manager ', '2022-09-01', 25000.00, '2023-12-31', 30000.00, 'Chennai', '1', '1 years 3 months', ' Company was going last 6 month and not provide to staff so that reason company ceo resigned all staff ', 1, '2024-03-30 05:40:25', 0, NULL, 0, NULL, 1),
(7804, 18203, 'Justdial, jio', 'Voice process ', '2022-12-12', 19000.00, '2023-08-09', 25000.00, 'Coimbatore ', '1', '0 years 7 months', 'I am Atack fever ', 1, '2024-03-30 06:05:35', 0, NULL, 0, NULL, 1),
(7805, 18209, 'quintessence business solution', 'medical billing', '2022-06-06', 9500.00, '1970-01-01', 12000.00, 'tharamani', '2', '1 years 9 months', ' Salary hike', 1, '2024-03-30 11:04:56', 0, NULL, 0, NULL, 1),
(7806, 18211, 'Sagous Software and Services Pvt Ltd', 'Flutter Developer', '2022-12-05', 504000.00, '2023-12-29', 528000.00, 'Chennai', '1', '1 years 0 months', ' Project Scarcity', 1, '2024-03-31 06:20:50', 0, NULL, 0, NULL, 1),
(7807, 18211, 'Agnostic Solutions Pvt Ltd ', 'Flutter Developer', '2021-12-06', 360000.00, '2022-09-30', 360000.00, 'Chennai', '1', '0 years 9 months', 'There was only 1 project for flutter and I was released when it ended', 1, '2024-03-31 06:22:44', 0, NULL, 0, NULL, 1),
(7808, 18211, 'Spidergems Softlabs Pvt Ltd ', 'Flutter Developer', '2021-03-01', 120000.00, '2021-10-01', 120000.00, 'Chennai', '1', '0 years 7 months', 'There was only E-Commerce domain in the organisation.', 1, '2024-03-31 06:24:41', 0, NULL, 0, NULL, 1),
(7809, 18211, 'Appytek Pvt Ltd ', 'Flutter Developer', '2020-08-03', 120000.00, '2021-02-26', 120000.00, 'Chennai', '1', '0 years 6 months', 'The company was shut down due to lack of funds.', 1, '2024-03-31 06:26:20', 0, NULL, 0, NULL, 1),
(7810, 18211, 'Brainium Information Technologies Pvt Ltd ', 'Flutter Developer', '2021-10-04', 300000.00, '2021-11-30', 300000.00, 'Chennai', '1', '0 years 1 months', 'Permanent Remote and they didn\'t provide systems', 1, '2024-03-31 06:27:55', 0, NULL, 0, NULL, 1),
(7811, 18211, 'Smartpoint Technologies Pvt Ltd ', 'Flutter Developer', '2022-10-03', 480000.00, '2022-12-02', 480000.00, 'Chennai', '1', '0 years 1 months', 'Permanent remote after 1 month.', 1, '2024-03-31 06:29:10', 0, NULL, 0, NULL, 1),
(7812, 18213, 'teckzy  research anatical it solutions', 'flutter developer', '2022-11-21', 10000.00, '2023-12-26', 18000.00, 'egmore', '1', '1 years 1 months', ' My Company is going to change location to coimbatore', 1, '2024-04-01 04:49:25', 0, NULL, 0, NULL, 1),
(7813, 18197, 'Aosta private limited company ', 'Analyst ', '2022-11-16', 20000.00, '2024-03-08', 20000.00, 'Thousand lights ', '1', '1 years 4 months', ' ', 1, '2024-04-01 04:53:44', 0, NULL, 0, NULL, 1),
(7814, 18216, 'Cholamandalam general insurance ', 'Underwriting officer ', '2021-10-25', 17000.00, '1970-01-01', 22000.00, 'Parrys corner ', '2', '2 years 5 months', ' Need to grow my knowledge and carrier ', 1, '2024-04-01 04:58:25', 0, NULL, 0, NULL, 1),
(7815, 18214, 'CAFS', 'Thanjavur ', '2024-04-01', 15000.00, '1970-01-01', 18000.00, 'Thanjavur ', '2', '0 years 0 months', ' ', 1, '2024-04-01 05:01:04', 0, NULL, 0, NULL, 1),
(7816, 18215, 'Indiafilings ', 'Business advisor ', '2022-02-02', 18.25, '2024-04-16', 15.00, 'Guindy ', '1', '2 years 2 months', 'There I worked about 2 years and I want to learning more and good organisation ', 1, '2024-04-01 05:38:36', 0, NULL, 0, NULL, 1),
(7817, 18218, 'Shristi interiors', 'Marketing executive', '2023-04-07', 24000.00, '2024-03-09', 24000.00, 'Banglore', '1', '0 years 11 months', ' ', 1, '2024-04-01 05:48:05', 0, NULL, 0, NULL, 1),
(7818, 18221, 'Lifestyle international private limited ', 'Senior customer service representative ', '2022-05-05', 16000.00, '1970-01-01', 17000.00, 'Chennai ', '2', '1 years 10 months', ' Salary not enough.so i will searching job for more salary.I will do my best.', 1, '2024-04-01 05:49:04', 0, NULL, 0, NULL, 1),
(7819, 18224, 'Aditya style gallery', 'Sales Manager', '2019-01-01', 1.00, '1970-01-01', 35000.00, 'Thoothukudi', '2', '5 years 3 months', ' Want to relocate chennai', 1, '2024-04-01 07:54:48', 0, NULL, 0, NULL, 1),
(7820, 18223, 'Future Generali India Life Insurance ', 'Relationship Manager ', '2023-11-07', 25000.00, '2024-03-27', 25000.00, 'T Nagar ', '1', '0 years 4 months', 'Personal Reason ', 1, '2024-04-01 07:56:54', 0, NULL, 0, NULL, 1),
(7821, 18228, 'Network Marketing ', 'Assistant director ', '2021-05-10', 5.00, '2022-11-05', 15000.00, 'Chennai ', '1', '1 years 5 months', 'Due to Network issue ', 1, '2024-04-01 12:27:39', 1, '2024-04-01 12:30:22', 0, NULL, 0),
(7822, 18228, 'Network Marketing ', 'Assistant director ', '2021-05-10', 15000.00, '2022-11-05', 15000.00, 'Chennai ', '1', '1 years 5 months', 'Due to Network issue ', 1, '2024-04-01 12:29:35', 0, NULL, 0, NULL, 1),
(7823, 18232, 'Miramed ajuba', 'Medical billing', '2020-02-02', 14000.00, '2021-02-05', 14500.00, 'Thoraipakkam', '1', '1 years 0 months', ' Person reason', 1, '2024-04-01 12:52:52', 0, NULL, 0, NULL, 1),
(7824, 18234, 'Computer Age Management Services Limited', 'Assistant Processing Officer', '2022-05-16', 13000.00, '2023-10-12', 1.00, 'Chennai', '1', '1 years 4 months', ' Carrier Growth', 1, '2024-04-01 01:35:03', 0, NULL, 0, NULL, 1),
(7825, 18222, 'GAVS Technologies Pvt Ltd', 'Software Engineer', '2021-09-06', 250000.00, '2023-10-12', 485000.00, 'Chennai', '1', '2 years 1 months', ' I\'m looking for greater responsibility, seeking a more challenging role, in need of better job security, and interested in new skill development to achieve career Growth. ', 1, '2024-04-02 04:01:06', 0, NULL, 0, NULL, 1),
(7826, 18244, 'Blinkit', 'Fleet operations Lead', '2024-05-10', 26500.00, '1970-01-01', 30000.00, 'Bengaluru', '2', '0 years 1 months', ' Better opportunity ', 1, '2024-04-02 05:23:08', 0, NULL, 0, NULL, 1),
(7827, 18246, 'Bencos Reserch solution ', 'Customers analysis ', '2023-01-02', 15000.00, '2024-02-13', 15000.00, 'Chennai ', '1', '1 years 1 months', ' Night shift, health issues ', 1, '2024-04-02 05:35:11', 0, NULL, 0, NULL, 1),
(7828, 18247, 'Synergy revo private limited, casagrand buliding p', 'Tele caller ', '2022-08-02', 20000.00, '2023-09-01', 20000.00, 'Thiruvanmiyur', '1', '1 years 0 months', ' For personal reasons ', 1, '2024-04-02 05:43:04', 0, NULL, 0, NULL, 1),
(7829, 18241, 'Shriram finance ', 'Business executive ', '2023-09-05', 17000.00, '1970-01-01', 17000.00, 'Chennai', '2', '0 years 6 months', ' ', 1, '2024-04-02 05:47:24', 0, NULL, 0, NULL, 1),
(7830, 18241, 'Gotek ', 'Customer relationship manager (CRM)', '2022-01-20', 15000.00, '2023-05-24', 17000.00, 'Chennai', '1', '1 years 4 months', 'MOVE TO NEXT LEVEL ', 1, '2024-04-02 05:50:50', 0, NULL, 0, NULL, 1),
(7831, 18249, 'Kota Bank ', 'Field ', '2023-11-01', 14000.00, '2024-04-02', 14000.00, 'Ennore ', '1', '0 years 5 months', ' Salary pathalam for job relieving ', 1, '2024-04-02 06:09:18', 0, NULL, 0, NULL, 1),
(7832, 18251, 'allsec technologies', 'dhl voi pr ', '2018-03-08', 12000.00, '2018-08-16', 12000.00, 'velachery', '1', '0 years 5 months', ' I got married', 1, '2024-04-02 06:24:54', 0, NULL, 0, NULL, 1),
(7833, 18254, 'g square ', 'senior executive ', '2022-09-07', 20000.00, '2024-03-31', 21300.00, 'chennai ', '1', '1 years 6 months', ' Need high and need to grow my career ', 1, '2024-04-02 06:35:58', 0, NULL, 0, NULL, 1),
(7834, 18252, 'ks smart solutions', 'mobile app developer', '2022-11-21', 21000.00, '2024-04-19', 27000.00, 'teynampet', '1', '1 years 4 months', ' Personal Reason', 1, '2024-04-02 06:37:03', 0, NULL, 0, NULL, 1),
(7835, 18256, 'Navitasys india pvt Ltd ', 'JAT', '2021-06-04', 17500.00, '2023-11-06', 17500.00, 'Bawal ', '1', '2 years 5 months', ' Marriage ', 1, '2024-04-02 06:46:16', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7836, 18258, 'Techmahindra', 'Customer support', '2022-08-03', 15000.00, '2023-09-22', 22000.00, 'Ambattur', '1', '1 years 1 months', ' Contract job ', 1, '2024-04-02 07:55:51', 0, NULL, 0, NULL, 1),
(7837, 18269, 'Accenture ', 'Data analysis ', '2021-07-01', 15000.00, '2022-08-15', 20000.00, 'CHENNAI', '1', '2 years 9 months', ' Health issue ', 1, '2024-04-03 04:50:57', 0, NULL, 0, NULL, 1),
(7838, 18271, 'Xascome Infotech Solution', 'Tele calling', '2023-04-03', 13000.00, '2023-12-12', 15000.00, 'Kodambakkam', '1', '0 years 8 months', 'I am Affect Chicken Pox So I am Relieving the Company', 1, '2024-04-03 05:02:18', 0, NULL, 0, NULL, 1),
(7839, 18271, 'Xascome Infotech Solution', 'Tele calling', '2023-04-03', 14000.00, '2023-12-02', 15000.00, 'Kodambakkam ', '1', '0 years 7 months', ' Entire Company Affected Chicken Pox So They Reason For Relieving Company', 1, '2024-04-03 05:14:00', 0, NULL, 0, NULL, 1),
(7840, 18273, 'Iprocess india pvt ltd', 'Sr.executive', '2023-03-29', 15000.00, '2024-04-05', 15000.00, 'Chennai', '1', '1 years 0 months', ' Better oppurtunity ', 1, '2024-04-03 05:38:18', 1, '2024-04-03 05:45:19', 0, NULL, 0),
(7841, 18273, 'Iprocess india pvt ltd', 'Sr.executive', '2023-03-29', 15000.00, '2024-04-05', 15000.00, 'Chennai', '1', '1 years 0 months', ' Searching better oppurtunity ', 1, '2024-04-03 05:45:08', 0, NULL, 0, NULL, 1),
(7842, 18272, 'Euruka outsourcing private limited ', 'data entry ', '2022-08-12', 15000.00, '1970-01-01', 15000.00, 'Thoripakkam ', '2', '1 years 7 months', ' Helath issue ', 1, '2024-04-03 05:50:59', 0, NULL, 0, NULL, 1),
(7843, 18274, 'municipal office', 'system work', '2017-10-04', 15000.00, '2019-09-18', 15000.00, 'villupuram', '1', '1 years 11 months', 'kids\n', 1, '2024-04-03 05:56:22', 0, NULL, 0, NULL, 1),
(7844, 18277, 'Matrimony. Com LTD', 'Senior customer executive', '2022-01-04', 26000.00, '2024-04-01', 26000.00, 'Chennai', '1', '2 years 2 months', ' Career growth', 1, '2024-04-03 06:19:55', 0, NULL, 0, NULL, 1),
(7845, 18279, 'Access health care', 'AR CALLER', '2022-03-04', 21500.00, '2023-03-31', 21500.00, 'Chennai', '1', '1 years 0 months', ' To continue post graduation', 1, '2024-04-03 06:28:25', 0, NULL, 0, NULL, 1),
(7846, 18281, 'Thanjavur district cooperative milk producers unio', 'Production in charge', '2020-03-13', 16000.00, '2023-04-01', 16000.00, 'Thanjavur', '1', '3 years 0 months', 'wish to Switch some other Domains', 1, '2024-04-03 06:45:48', 0, NULL, 0, NULL, 1),
(7847, 18281, 'SCYO Decision services pvt ltd', 'Project associate', '2020-04-09', 22000.00, '2024-04-30', 22000.00, 'Chennai', '1', '4 years 0 months', 'Some health issues', 1, '2024-04-03 06:49:25', 0, NULL, 0, NULL, 1),
(7848, 18283, 'Krazybee private limited ', 'Operation executive ', '2023-02-27', 20000.00, '2024-04-01', 20000.00, 'Chennai ', '1', '1 years 1 months', ' Due to career growth and No new learning skills ', 1, '2024-04-03 07:34:20', 0, NULL, 0, NULL, 1),
(7849, 18282, 'Plada infotech pvt ltd, tata aia', 'Relationshipmanager', '2021-07-01', 320000.00, '2022-10-31', 320000.00, 'Industrial estate , vadapalani', '1', '1 years 3 months', ' To learn many things newly ', 1, '2024-04-03 09:44:28', 0, NULL, 0, NULL, 1),
(7850, 18289, 'Finfortune Financial private limited ', 'Process analyst ', '2022-11-10', 12500.00, '1970-01-01', 16500.00, 'Chennai ', '2', '1 years 4 months', 'Need to move on', 1, '2024-04-03 01:09:01', 0, NULL, 0, NULL, 1),
(7851, 18292, 'Mckinsey ', 'Business presentation specialist ', '2023-07-03', 4.15, '1970-01-01', 4.15, 'Chennai', '2', '0 years 9 months', 'Exploring more options according to my satisfaction ', 1, '2024-04-04 05:17:06', 0, NULL, 0, NULL, 1),
(7852, 18293, 'Buzzworks business services pvt ltd ', 'Transaction processing representative ', '2022-07-27', 15000.00, '2023-12-29', 15000.00, 'Chennai', '1', '1 years 5 months', ' ', 1, '2024-04-04 05:33:36', 0, NULL, 0, NULL, 1),
(7853, 18302, 'ola financial services', 'senior customer support Executive', '2022-02-10', 1.00, '2024-03-07', 32000.00, 'bangalore', '1', '2 years 0 months', ' Contract ended', 1, '2024-04-04 06:53:00', 0, NULL, 0, NULL, 1),
(7854, 18303, 'Cosmosian Indian mask Pvt ltd.', 'Sales executive', '2022-09-01', 18000.00, '2023-12-13', 20000.00, 'Avadi', '1', '1 years 3 months', 'Personal issues', 1, '2024-04-04 07:12:41', 0, NULL, 0, NULL, 1),
(7855, 18305, 'Guidehouse', 'Ar caller / Ar analyst', '2022-09-26', 25000.00, '2023-12-08', 30000.00, 'Chennai', '1', '1 years 2 months', ' For job change and carrer growth', 1, '2024-04-04 07:18:22', 0, NULL, 0, NULL, 1),
(7856, 18286, 'Just dial Pvt ltd', 'Operation Executive', '2021-07-19', 23000.00, '2023-03-10', 23000.00, 'Indian Express', '1', '1 years 7 months', 'Own Business', 126, '2024-04-04 12:57:47', 0, NULL, 0, NULL, 1),
(7857, 18286, 'Capital connect', 'Tele Sales', '2024-01-22', 23000.00, '2024-04-02', 23000.00, 'Shantinagar', '1', '0 years 2 months', ' For learn new things', 1, '2024-04-04 07:48:00', 0, NULL, 0, NULL, 1),
(7858, 18307, 'sutherland', 'customer Support associate', '2023-05-02', 16000.00, '2024-04-04', 18000.00, 'perungalur', '2', '0 years 11 months', ' For salary hike and looking for morning shift job', 1, '2024-04-04 09:16:31', 0, NULL, 0, NULL, 1),
(7859, 18308, 'Teckzy Research and IT solution Pvt Ltd ', 'Flutter developer ', '2023-12-01', 10000.00, '2024-02-29', 10000.00, 'Chennai, Egmore ', '1', '0 years 2 months', ' ', 1, '2024-04-04 09:24:14', 0, NULL, 0, NULL, 1),
(7860, 18309, 'T.P. Textile private limited ', 'Supervisor ', '2023-08-18', 10000.00, '1970-01-01', 10000.00, 'Rajapalayam,R. Reddiyapatti ', '2', '0 years 7 months', ' Low salary, ', 1, '2024-04-04 09:59:55', 0, NULL, 0, NULL, 1),
(7861, 18313, 'Newcity medicals', 'Accountant ', '2022-02-01', 28000.00, '1970-01-01', 280000.00, 'Kerala, palakkad', '2', '2 years 2 months', 'New Opportunity and also for career growth', 1, '2024-04-04 11:57:22', 0, NULL, 0, NULL, 1),
(7862, 18323, 'Bajaj finance ', 'Psf', '2023-04-16', 17000.00, '2024-01-01', 20000.00, 'Egmore ', '1', '0 years 8 months', 'Medical issues ', 1, '2024-04-05 05:13:04', 0, NULL, 0, NULL, 1),
(7863, 18324, 'Altruist Technologies Pvt Ltd ', 'Customer Support Executive ', '2020-10-09', 11.00, '2021-11-26', 11000.00, 'Bangalore ', '1', '1 years 1 months', ' Health Issues ', 1, '2024-04-05 05:18:22', 0, NULL, 0, NULL, 1),
(7864, 18321, 'M R ELECTRICALS SERVICES ', 'SUPERVISOUR', '2022-08-01', 24000.00, '2024-02-29', 24000.00, 'CHENNAI ', '1', '1 years 6 months', ' CONTRACT COMPLETED ', 1, '2024-04-05 05:20:31', 0, NULL, 0, NULL, 1),
(7865, 18324, 'Conneqt Business Solutions Ltd ', 'Customer Support Executive ', '2021-12-08', 1.00, '2022-06-21', 15000.00, 'Bangalore ', '1', '0 years 6 months', 'Process Relocation ', 1, '2024-04-05 05:20:54', 0, NULL, 0, NULL, 1),
(7866, 18324, 'Nobroker Technologies Pvt Ltd ', 'FO Caller', '2022-06-07', 7.00, '2023-05-16', 27000.00, 'Bangalore ', '1', '0 years 11 months', 'Process Shutdown ', 1, '2024-04-05 05:23:01', 0, NULL, 0, NULL, 1),
(7867, 18315, 'Infosearch bpo service', 'Chat support executive', '2022-09-16', 14000.00, '2024-02-07', 12000.00, 'Royapetha, chennai', '1', '1 years 4 months', ' No proper increments', 1, '2024-04-05 05:29:51', 0, NULL, 0, NULL, 1),
(7868, 18320, 'Hdfc life', 'Associate area business manager', '2023-03-10', 24000.00, '2023-08-17', 24000.00, 'gobichettipalayam', '1', '0 years 5 months', ' Medical issues', 1, '2024-04-05 05:40:26', 0, NULL, 0, NULL, 1),
(7869, 18326, 'power cent pvt ltd', 'senior sales tellecaller', '2022-08-01', 31.00, '2024-02-15', 26000.00, 'nandanam', '1', '1 years 6 months', ' ', 1, '2024-04-05 05:45:49', 0, NULL, 0, NULL, 1),
(7870, 18327, 'Cholamandalam finance', 'Deputy Officer', '2017-01-10', 13000.00, '2021-01-11', 15000.00, 'Chennai', '1', '4 years 0 months', ' ', 1, '2024-04-05 06:24:17', 0, NULL, 0, NULL, 1),
(7871, 18327, '247Digitize', 'Associate', '2022-01-10', 16000.00, '2024-01-30', 18000.00, 'Chennai', '1', '2 years 0 months', 'Career growth', 1, '2024-04-05 06:25:30', 0, NULL, 0, NULL, 1),
(7872, 18328, 'Ison xperiences ', 'Customer care executive ', '2024-04-01', 20000.00, '2024-04-11', 15000.00, 'Kandanchavadi ', '1', '0 years 0 months', ' Salary is not hike. Due to long distance ', 1, '2024-04-05 06:33:42', 0, NULL, 0, NULL, 1),
(7873, 18331, 'get my property', 'sales officer', '2022-06-07', 240000.00, '2024-03-06', 240000.00, 'whitefield', '1', '1 years 8 months', ' Family problem', 1, '2024-04-05 06:51:39', 0, NULL, 0, NULL, 1),
(7874, 18333, 'Matrimony.com', 'Relationship manager', '2023-12-07', 22000.00, '2024-04-10', 22000.00, 'Chennai', '1', '0 years 4 months', 'Husband was transferring to madhavaram location ', 1, '2024-04-05 06:54:51', 0, NULL, 0, NULL, 1),
(7875, 18333, 'Matrimony.com', 'Relationship manager ', '2023-12-07', 22000.00, '2024-04-10', 22000.00, 'Adyar', '1', '0 years 4 months', 'Husband transferring to madhavaram', 1, '2024-04-05 06:58:00', 0, NULL, 0, NULL, 1),
(7876, 18335, 'T.S.Mahalingam', 'Telecaller ', '2023-05-15', 12000.00, '2024-02-13', 13000.00, 'Chennai ', '1', '0 years 8 months', ' Salary problem', 1, '2024-04-05 07:12:08', 0, NULL, 0, NULL, 1),
(7877, 18339, 'Paytm', 'Sr.FSC', '2024-01-02', 22000.00, '2024-03-30', 22000.00, 'Bangalore ', '1', '0 years 2 months', ' Nothing', 1, '2024-04-05 07:46:25', 0, NULL, 0, NULL, 1),
(7878, 18339, 'Paytm', 'Sr.FSC', '2023-12-01', 22000.00, '2024-03-30', 22000.00, 'Bengaluru', '1', '0 years 4 months', 'Nothing', 1, '2024-04-05 07:50:37', 0, NULL, 0, NULL, 1),
(7879, 18342, 'Air France ', 'Customer service executive and sales ', '2023-02-05', 22000.00, '1970-01-01', 22000.00, 'Chennai', '2', '1 years 2 months', ' Reducing of passanger ', 1, '2024-04-05 07:58:12', 0, NULL, 0, NULL, 1),
(7880, 18345, 'Paisabazaar Marketing and Consulting private limit', 'Senior sales consultant ', '2022-03-17', 280000.00, '2024-03-04', 300000.00, 'Thiruvanmiyur ', '1', '1 years 11 months', ' For my career growth ', 1, '2024-04-05 09:12:34', 0, NULL, 0, NULL, 1),
(7881, 18346, 'Om innovation ', 'Sales ', '2023-01-14', 14000.00, '2024-01-15', 12000.00, 'Chetpet ', '1', '1 years 0 months', ' Salary issues', 1, '2024-04-05 10:24:17', 0, NULL, 0, NULL, 1),
(7882, 18349, 'unicef', 'relationship manager', '2021-01-04', 7.00, '2023-10-31', 30.00, 'delhi', '1', '2 years 9 months', ' Better opportunity \nCarrier Growth', 1, '2024-04-05 10:39:41', 0, NULL, 0, NULL, 1),
(7883, 18355, 'sunderam finance', 'associate', '2019-09-19', 250000.00, '2021-03-15', 270000.00, 'chennai', '1', '1 years 5 months', ' personal', 1, '2024-04-05 12:39:45', 0, NULL, 0, NULL, 1),
(7884, 18355, 'hdfc ergo', 'telesales executive', '2021-03-23', 300000.00, '2022-01-04', 300000.00, 'chennai', '1', '0 years 9 months', 'personal', 1, '2024-04-05 12:41:11', 0, NULL, 0, NULL, 1),
(7885, 18355, 'nbhav home elevator', 'bde', '2022-01-12', 320000.00, '2023-07-31', 320000.00, 'chennai', '1', '1 years 6 months', 'personal', 1, '2024-04-05 12:42:36', 0, NULL, 0, NULL, 1),
(7886, 18355, 'zoket techologies', 'bde', '2023-08-07', 400000.00, '1970-01-01', 400000.00, 'chennai', '2', '0 years 7 months', 'na', 1, '2024-04-05 12:43:43', 0, NULL, 0, NULL, 1),
(7887, 18354, 'ICICI LOMBARD General insurance ', 'TSO - Telesales Executive Officer ', '2023-05-09', 15000.00, '2024-01-11', 17000.00, 'Thousand light', '1', '0 years 8 months', ' Looking for nearby location and developing my skills to improve my knowledge at various companies ', 1, '2024-04-05 01:02:39', 0, NULL, 0, NULL, 1),
(7888, 18356, 'Yuva global services ', 'Recruitment ', '2022-03-05', 12000.00, '2022-09-30', 0.00, 'Lucknow', '1', '0 years 6 months', 'Due to personal issue moved to Bangalore ', 1, '2024-04-05 01:39:32', 0, NULL, 0, NULL, 1),
(7889, 18359, 'Sathish', 'Sales executive', '2023-03-15', 24000.00, '1970-01-01', 20000.00, 'Coimbatore', '2', '1 years 0 months', ' ', 1, '2024-04-06 05:04:57', 0, NULL, 0, NULL, 1),
(7890, 18361, 'Yeshwanth.R', 'Flutter developer ', '2024-01-01', 20000.00, '2024-05-30', 15000.00, 'Bangalore ', '1', '0 years 4 months', 'Proper project is not there.', 1, '2024-04-06 05:43:32', 1, '2024-04-06 05:51:07', 0, NULL, 0),
(7891, 18361, 'Yeshwanth.R', 'Flutter developer ', '2024-01-01', 15000.00, '2024-04-30', 15000.00, 'Bangalore ', '1', '0 years 3 months', 'Proper project is not there.so that reason for Relieving company.', 1, '2024-04-06 05:50:58', 0, NULL, 0, NULL, 1),
(7892, 18363, 'Reliance jio ', 'Experienced', '2023-10-01', 23000.00, '2024-04-01', 23000.00, 'Perambur ', '1', '0 years 6 months', ' Medical issue salary hike ', 1, '2024-04-06 05:51:08', 0, NULL, 0, NULL, 1),
(7893, 18368, 'athavan motors', 'sales executive', '2022-02-22', 15000.00, '2022-09-22', 18000.00, 'thambaram', '1', '0 years 7 months', 'Long Distance', 1, '2024-04-06 08:09:06', 0, NULL, 0, NULL, 1),
(7894, 18369, 'Customer support ', 'Teli caller ', '2021-02-01', 11000.00, '2023-04-25', 16000.00, 'Kodambakkam ', '1', '2 years 2 months', ' Health issues ', 1, '2024-04-06 09:14:41', 0, NULL, 0, NULL, 1),
(7895, 18372, 'Imarque solution', 'Customer supportive ', '2023-05-10', 10.00, '2023-12-05', 13.00, 'Teynampet ', '1', '0 years 6 months', ' Without any week off Sunday compulsory.', 1, '2024-04-06 09:30:26', 0, NULL, 0, NULL, 1),
(7896, 18373, 'Niveshartha private limited ', 'Customer relationship manager ', '2023-08-01', 4.00, '1970-01-01', 4.00, 'Bangalore ', '2', '0 years 8 months', ' ', 1, '2024-04-06 09:46:35', 0, NULL, 0, NULL, 1),
(7897, 18260, 'allsec technologies', 'quality analyst', '2020-11-19', 19.00, '1970-01-01', 24.00, 'bangalore', '2', '1818 years 2 months', 'Travelling issue ', 1, '2024-04-06 01:17:51', 0, NULL, 0, NULL, 1),
(7898, 18376, 'Mahindra zualaikha motors ', 'Sales Executive ', '2023-01-05', 2.00, '2023-07-01', 18000.00, 'Ekkatuthangal ', '1', '0 years 5 months', ' My mother had health issues. So that I have resign the job .we have went to native place for medical treatment. ', 1, '2024-04-08 02:09:17', 0, NULL, 0, NULL, 1),
(7899, 18380, 'Volkswagen Pvt ltd ', 'CRE', '2019-04-02', 13500.00, '2021-07-03', 13500.00, 'BANGALORE', '1', '2 years 3 months', 'Due to marriage ', 1, '2024-04-08 06:13:43', 0, NULL, 0, NULL, 1),
(7900, 18381, 'Equiniti ', 'Customer experience executive ', '2023-05-15', 31000.00, '2024-02-23', 31000.00, 'Chennai ', '1', '0 years 9 months', 'Layoff', 1, '2024-04-08 06:27:30', 0, NULL, 0, NULL, 1),
(7901, 18384, 'Teleperfomance ', 'Customer support associate ', '2022-12-29', 31.00, '2024-03-02', 17000.00, 'Chennai ', '1', '1 years 2 months', ' It\'s an contract ', 1, '2024-04-08 06:34:37', 0, NULL, 0, NULL, 1),
(7902, 18382, 'FOREBLEND INFISCRIPTS', 'Customer service executive ', '2023-07-01', 15000.00, '2024-01-10', 15000.00, 'Bangalore ', '1', '0 years 6 months', 'Lack of salary pay.', 1, '2024-04-08 06:38:14', 0, NULL, 0, NULL, 1),
(7903, 18344, 'india mart', 'team leader', '2022-05-02', 33000.00, '2023-05-20', 33000.00, 'jayanagar ', '1', '1 years 0 months', ' Process shutdown', 1, '2024-04-08 06:44:54', 0, NULL, 0, NULL, 1),
(7904, 18383, 'Marketsof1', 'Telecaller', '2022-05-02', 5.00, '2023-08-05', 12500.00, 'Chennai ', '1', '1 years 3 months', ' Personal issues ', 1, '2024-04-08 06:44:59', 0, NULL, 0, NULL, 1),
(7905, 18385, 'Omega health care', 'Ar caller', '2019-05-24', 12400.00, '2020-06-10', 12400.00, 'Chennai ', '1', '1 years 0 months', ' -', 1, '2024-04-08 06:56:44', 0, NULL, 0, NULL, 1),
(7906, 18385, 'Css corp', 'Executive ', '2020-09-15', 18000.00, '2022-02-16', 18000.00, 'Chennai', '1', '1 years 5 months', '.', 1, '2024-04-08 06:58:21', 0, NULL, 0, NULL, 1),
(7907, 18385, 'Hexaware technologies Pvt Ltd ', 'Executive ', '2022-07-19', 21800.00, '2022-12-31', 21800.00, 'Chennai ', '1', '0 years 5 months', '.', 1, '2024-04-08 06:59:28', 0, NULL, 0, NULL, 1),
(7908, 18388, 'Datasigns technologies ', 'Operations ', '2022-06-01', 1.00, '2023-11-07', 23.00, 'Vasanthnagar Bangalore ', '1', '1 years 5 months', ' Layoff ', 1, '2024-04-08 08:21:34', 0, NULL, 0, NULL, 1),
(7909, 18389, 'Suvision holding pvt ltd ', 'Associate sale\'s manager ', '2022-11-14', 25000.00, '2024-04-06', 23000.00, 'Bengaluru ', '1', '1 years 4 months', ' ', 1, '2024-04-08 09:13:19', 0, NULL, 0, NULL, 1),
(7910, 18392, 'EOS global Pvt Ltd ', 'Customer care associate ', '2023-08-21', 12000.00, '2023-12-21', 12000.00, 'Thoraipakkam ', '1', '0 years 4 months', ' Process was closed ', 1, '2024-04-08 09:50:28', 0, NULL, 0, NULL, 1),
(7911, 18397, 'indusind bank', 'vem', '2022-11-28', 24000.00, '2023-06-03', 24000.00, 'chennai', '1', '0 years 6 months', ' Carrer growth', 1, '2024-04-08 11:18:31', 0, NULL, 0, NULL, 1),
(7912, 18399, 'GOLDEN ENTERPRISE', 'Claim relation cell', '2022-04-04', 13000.00, '2022-09-29', 13000.00, 'Royapettah', '1', '0 years 5 months', ' Health issues', 1, '2024-04-08 04:50:56', 0, NULL, 0, NULL, 1),
(7913, 18399, 'Access health care', 'Client partner', '2022-11-07', 21000.00, '2023-08-04', 21000.00, 'DLF porur', '1', '0 years 8 months', 'Night shift ', 1, '2024-04-08 04:52:51', 0, NULL, 0, NULL, 1),
(7914, 18404, 'periyarmaniyammai universiity', 'teaching ass', '2022-11-19', 12000.00, '2023-03-23', 12000.00, 'vallam thanjavur', '1', '0 years 4 months', ' ', 1, '2024-04-09 05:28:25', 0, NULL, 0, NULL, 1),
(7915, 18410, 'Hdfc bank ', 'Credit card Upgrade ', '2023-06-14', 12000.00, '1970-01-01', 12000.00, 'Thiruvanmiyur ', '2', '0 years 9 months', ' No enough salary ', 1, '2024-04-09 06:17:22', 0, NULL, 0, NULL, 1),
(7916, 18411, 'Croyez immigration ', 'Student counselor ', '2024-01-10', 2.00, '2024-02-15', 12000.00, 'Chennai ', '1', '0 years 1 months', ' To pursue my studies I couldn\'t able to continue the job .', 1, '2024-04-09 06:35:19', 0, NULL, 0, NULL, 1),
(7917, 18411, 'Edwise international ', 'Academic counselor ', '2023-01-09', 2.00, '2024-05-02', 18000.00, 'Chennai ', '1', '1 years 3 months', 'Health issues ', 1, '2024-04-09 06:36:26', 0, NULL, 0, NULL, 1),
(7918, 18409, 'SBI BANK', 'Telecalling', '2023-11-07', 15000.00, '2024-03-13', 20000.00, ' Nungambakkam', '1', '0 years 4 months', ' ', 1, '2024-04-09 06:44:13', 0, NULL, 0, NULL, 1),
(7919, 18413, 'Star Health Insurance Company ', 'Telle caller', '2023-12-22', 19500.00, '2024-03-31', 19500.00, 'Vadapazhani ', '1', '0 years 3 months', ' Medical issues ', 1, '2024-04-09 06:58:00', 0, NULL, 0, NULL, 1),
(7920, 18413, 'Star Health insurance company ', 'Telecaller', '2023-12-22', 19500.00, '2024-03-31', 19500.00, 'Vadapazhani ', '1', '0 years 3 months', 'Health issues ', 1, '2024-04-09 06:59:38', 0, NULL, 0, NULL, 1),
(7921, 18415, 'icici lombard General insurance company ', 'team Manger ', '2011-12-01', 20.00, '2023-01-30', 21.00, 'chennai', '1', '11 years 1 months', ' Better opportunity', 1, '2024-04-09 07:16:57', 0, NULL, 0, NULL, 1),
(7922, 18415, 'niva bupa health insurance company', 'center head', '2023-02-01', 1.00, '1970-01-01', 30.00, 'chennai ', '2', '1 years 2 months', 'Better opportunity with career Growth', 1, '2024-04-09 07:21:00', 0, NULL, 0, NULL, 1),
(7923, 18419, 'Coronis ajuba ', 'Client partner ', '2023-05-25', 28000.00, '2024-04-08', 30000.00, 'Work from home ', '1', '0 years 10 months', ' ', 1, '2024-04-09 09:16:28', 0, NULL, 0, NULL, 1),
(7924, 18420, 'Thinksynq solution ', 'Ekkathuthangal ', '2023-07-15', 14000.00, '2024-01-15', 14000.00, 'Ekkathuthangal ', '1', '0 years 6 months', ' ', 1, '2024-04-09 09:30:31', 0, NULL, 0, NULL, 1),
(7925, 18427, 'Manojkumar ', 'Tele sales ', '2022-07-13', 15500.00, '2023-10-02', 15500.00, 'Teypempt ', '1', '1 years 2 months', ' Office  close ', 1, '2024-04-09 10:37:37', 0, NULL, 0, NULL, 1),
(7926, 18428, 'Phonepe', 'Business development executive', '2023-11-08', 29.00, '2024-04-04', 19500.00, 'Chennai', '1', '0 years 4 months', ' Looking for better benefits and My job duties have changed significantly, and I didn\'t feel satisfied with that', 1, '2024-04-09 11:09:39', 0, NULL, 0, NULL, 1),
(7927, 18431, 'Malladi drugs', 'Lab chemist', '2021-06-01', 17500.00, '2024-01-03', 27580.00, 'Guindy', '1', '2 years 7 months', ' Am experinced in pahrmaceutical industry but my family probles so am quick that job', 1, '2024-04-09 01:10:27', 0, NULL, 0, NULL, 1),
(7928, 10115, 'Vizza insurance broking service ', 'Team leader', '2021-05-10', 10000.00, '1970-01-01', 20000.00, 'Kodambakkam ', '2', '2 years 10 months', ' I need my growth and Increment', 1, '2024-04-09 02:35:51', 0, NULL, 0, NULL, 1),
(7929, 18433, 'Byju\'s - Think and Learn Pvt Ltd ', 'Business Development Associate ', '2023-10-17', 400000.00, '2024-04-05', 400000.00, 'Chennai', '1', '0 years 5 months', ' I have not been recieved my salary for the past 2 months.', 1, '2024-04-09 02:57:08', 0, NULL, 0, NULL, 1),
(7930, 18443, 'Vizza insurance broking services private limited ', 'Team leader ', '2022-09-09', 13000.00, '2024-03-31', 18000.00, 'Tnagar', '1', '1 years 6 months', ' Career growth and salary increment ', 1, '2024-04-10 05:21:21', 0, NULL, 0, NULL, 1),
(7931, 18444, 'Mentor infocomm', 'Call centre agent', '2023-05-13', 12635.00, '1970-01-01', 12635.00, 'Chennai', '2', '0 years 10 months', ' Looking for career growth\nBetter opportunity\nCareer change', 1, '2024-04-10 05:26:54', 0, NULL, 0, NULL, 1),
(7932, 18447, 'bank bazaar', 'senior customer relationship officer', '2022-08-19', 15000.00, '2024-02-19', 20000.00, 'chennai', '1', '1 years 6 months', ' Career Growth and higher pay', 1, '2024-04-10 05:50:24', 0, NULL, 0, NULL, 1),
(7933, 18449, 'State Street ', 'Performance analyst ', '2022-09-14', 22000.00, '2023-09-15', 300000.00, 'Bangalore ', '1', '1 years 0 months', ' Working as a contract role.\n', 1, '2024-04-10 05:53:22', 0, NULL, 0, NULL, 1),
(7934, 18450, 'Visionary RCM infotech Pvt Ltd ', 'AR Caller', '2016-07-16', 13600.00, '2017-07-28', 13600.00, 'Chennai', '1', '1 years 0 months', ' Project shutdown', 1, '2024-04-10 05:55:06', 0, NULL, 0, NULL, 1),
(7935, 18450, 'Sysmedac Technologies ', 'Client Relationship Manager ', '2017-08-11', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '6 years 7 months', 'Moved on to next project ', 1, '2024-04-10 05:56:58', 0, NULL, 0, NULL, 1),
(7936, 18450, 'Buy Happy Marketing llp ', 'Client Relationship Manager ', '2019-04-15', 13000.00, '2019-09-28', 13000.00, 'Chennai', '1', '0 years 5 months', 'Resigned for personal work.', 1, '2024-04-10 05:59:10', 0, NULL, 0, NULL, 1),
(7937, 18253, 'Hewlett-Packard ', 'Software developer ', '2023-02-02', 300000.00, '2023-07-15', 300000.00, 'Bangalore ', '1', '0 years 5 months', 'Interested in mobile app development ', 1, '2024-04-10 05:59:44', 0, NULL, 0, NULL, 1),
(7938, 18450, 'Elite Matrimony ', 'Client Relationship Manager ', '2021-10-03', 24000.00, '2021-11-30', 24000.00, 'Bangalore ', '1', '0 years 1 months', 'Maternity', 1, '2024-04-10 06:00:21', 0, NULL, 0, NULL, 1),
(7939, 18452, 'HDB financial services ', 'Senior tele caller ', '2022-07-18', 11200.00, '1970-01-01', 18000.00, 'Thousands light ', '2', '1 years 8 months', ' I want to develop my self for my carrier growth ', 1, '2024-04-10 06:06:02', 0, NULL, 0, NULL, 1),
(7940, 18445, 'mallika furniture', 'telecaller', '2020-01-03', 10000.00, '2023-07-13', 14000.00, 'thanjavur', '1', '3 years 6 months', ' timing', 1, '2024-04-10 06:06:24', 0, NULL, 0, NULL, 1),
(7941, 18445, 'kuba women foundaation', 'sourcing officer', '2023-08-03', 13500.00, '2024-02-29', 14500.00, 'thanjavur', '1', '0 years 6 months', 'salary not comfortable', 1, '2024-04-10 06:08:53', 0, NULL, 0, NULL, 1),
(7942, 18451, 'Ison', 'Telecaller', '2023-11-27', 12500.00, '2024-04-08', 12500.00, 'Perungudi', '1', '0 years 4 months', ' For career growth', 1, '2024-04-10 06:09:31', 0, NULL, 0, NULL, 1),
(7943, 18438, 'MRV infotech india private limited ', 'Technical coordinator ', '2023-02-13', 23000.00, '2024-03-31', 25000.00, 'Arumbakkam ', '1', '1 years 1 months', 'Vendar closed ', 1, '2024-04-10 06:19:15', 0, NULL, 0, NULL, 1),
(7944, 18455, 'Exela Technology', 'Processor', '2023-03-01', 12000.00, '2023-12-31', 13000.00, 'Thanjavur', '1', '0 years 9 months', ' Time issue and salary issue', 1, '2024-04-10 06:24:06', 0, NULL, 0, NULL, 1),
(7945, 18458, 'Omega healthcare ', 'Process executive AR ', '2022-11-22', 19000.00, '2023-05-23', 20000.00, 'Thuaripakam', '1', '0 years 6 months', ' Night shift ', 1, '2024-04-10 06:44:14', 0, NULL, 0, NULL, 1),
(7946, 18457, 'Sri Venkateshwaara Medical College & Medcity ', 'Billing Associate ', '2022-02-08', 15000.00, '2023-08-31', 18000.00, 'Redhills ', '1', '1 years 6 months', ' ', 1, '2024-04-10 06:47:14', 0, NULL, 0, NULL, 1),
(7947, 18454, 'accenture', 'insurance claim department', '2023-02-20', 19000.00, '2023-12-10', 19000.00, 'chennai', '1', '0 years 9 months', ' Personal Problem.', 1, '2024-04-10 06:50:44', 0, NULL, 0, NULL, 1),
(7948, 18459, 'Just dial organization ', 'Telemarketing executive ', '2023-01-01', 18000.00, '2023-05-10', 18000.00, 'Little Mount ', '1', '0 years 4 months', ' Medical issues ', 1, '2024-04-10 06:54:00', 0, NULL, 0, NULL, 1),
(7949, 18456, 'pranathi software service pvt ltd ', 'Business Development Executive ', '2022-12-01', 26000.00, '2024-03-20', 26000.00, 'Guindy ', '1', '1 years 3 months', ' looking for career growth and better salary ', 1, '2024-04-10 07:16:09', 0, NULL, 0, NULL, 1),
(7950, 18462, 'Motorola', 'Promoter ', '2023-05-24', 16000.00, '2024-04-17', 18500.00, 'HSR layout ', '1', '0 years 10 months', ' Looking for good opportunity ', 1, '2024-04-10 08:01:25', 1, '2024-04-10 08:04:20', 0, NULL, 1),
(7951, 18462, 'Biba', 'Promoter', '2021-12-08', 16000.00, '2022-03-28', 16000.00, 'Minakshee mall', '1', '0 years 3 months', 'Health issue ', 1, '2024-04-10 08:08:48', 0, NULL, 0, NULL, 1),
(7952, 18467, 'MBR Food Products ', 'Marketing Executive ', '2019-12-09', 16000.00, '2024-01-05', 35000.00, 'Coimbatore ', '1', '4 years 0 months', 'To Due to my PG Examinations.', 1, '2024-04-10 09:22:44', 0, NULL, 0, NULL, 1),
(7953, 18471, 'Inoesis', 'Fullstack Developer', '2023-05-08', 15000.00, '2024-06-12', 28000.00, 'Little mount', '1', '1 years 1 months', ' Due to lack of projects', 1, '2024-04-10 10:38:30', 0, NULL, 0, NULL, 1),
(7954, 18461, 'my tvs car services', 'senior sales executive', '2022-06-15', 20000.00, '2024-03-31', 23000.00, 'chennai', '1', '1 years 9 months', 'career growth', 112, '2024-04-10 05:37:05', 0, NULL, 0, NULL, 1),
(7955, 18478, 'Byjus', 'Business development associate', '2023-08-31', 35000.00, '2024-11-05', 18500.00, 'Cheenai', '1', '1 years 2 months', ' ', 1, '2024-04-11 04:26:00', 0, NULL, 0, NULL, 1),
(7956, 18479, 'omega healthcare', 'ar executive', '2021-08-19', 30.00, '2024-02-08', 20000.00, 'tharamani', '1', '2 years 5 months', ' Too Far from my residence', 1, '2024-04-11 04:39:27', 0, NULL, 0, NULL, 1),
(7957, 18483, 'Unique logistics international Pvt Ltd ', 'CC officer', '2023-12-25', 36000.00, '2024-02-29', 36000.00, 'Chennai ', '1', '0 years 2 months', ' ', 1, '2024-04-11 07:45:51', 0, NULL, 0, NULL, 1),
(7958, 18486, 'Genisys Group Bangalore ', 'Customer executive ', '2023-03-17', 24.00, '2024-04-10', 24.00, 'Near Hopefarm ', '1', '1 years 0 months', ' Career growth better opportunities ', 1, '2024-04-11 07:55:15', 0, NULL, 0, NULL, 1),
(7959, 18487, 'Waste wise management pvt ltd ', 'Customers support executive ', '2022-10-01', 20200.00, '2023-04-30', 20200.00, 'Seegehalli ', '1', '0 years 6 months', ' Met with  unexpected  bike accident  taken 6 months of bed rest ', 1, '2024-04-11 09:54:04', 0, NULL, 0, NULL, 1),
(7960, 18488, 'eureka outsourcing solutions', 'apprentice customer care associate', '2023-06-16', 11000.00, '2023-12-21', 11000.00, 'chennai', '1', '0 years 6 months', ' health issuses', 1, '2024-04-11 11:48:13', 0, NULL, 0, NULL, 1),
(7961, 18493, 'Innovsource ', 'Tele sale executive ', '2023-06-15', 13000.00, '2024-03-15', 13000.00, 'Koyambedu, Chennai ', '1', '0 years 9 months', ' ', 1, '2024-04-11 01:23:26', 1, '2024-04-11 01:25:15', 0, NULL, 0),
(7962, 18493, 'Innovsource India pvt Ltd ', 'Tele sale executive ', '2023-06-15', 13000.00, '2024-03-15', 13000.00, 'Chennai, koyambedu ', '1', '0 years 9 months', 'Health issue', 1, '2024-04-11 01:24:53', 0, NULL, 0, NULL, 1),
(7963, 18499, 'Skill lync ', 'Inside sales specialist', '2020-05-13', 500000.00, '2024-04-04', 500000.00, 'CHENNAI', '1', '3 years 10 months', ' Growth', 1, '2024-04-12 05:38:19', 0, NULL, 0, NULL, 1),
(7964, 18501, 'Golden Enterprises', 'Telecaller', '2023-08-09', 20000.00, '2024-03-31', 20000.00, 'Vadapalani, Chennai ', '1', '0 years 7 months', 'Some personal Issues ', 1, '2024-04-12 05:59:42', 0, NULL, 0, NULL, 1),
(7965, 18511, 'Imarque global solution ', 'Customer support executive ', '2019-02-02', 12000.00, '2020-12-02', 12000.00, 'Tnagar', '1', '1 years 10 months', ' My project closed', 1, '2024-04-13 04:24:00', 0, NULL, 0, NULL, 1),
(7966, 18511, 'Act plast and paints pvt ltd ', 'SAP incharge in paint shop', '2021-01-01', 16000.00, '2022-01-01', 16000.00, 'Pillaipakkam ', '1', '1 years 0 months', 'Project closed ', 1, '2024-04-13 04:25:56', 0, NULL, 0, NULL, 1),
(7967, 18511, 'Symac consultant pvt ltd ', 'HR trainee ', '2022-04-01', 15000.00, '2022-07-01', 15000.00, 'Kodambakkam', '1', '0 years 3 months', 'Salary issue ', 1, '2024-04-13 04:27:00', 0, NULL, 0, NULL, 1),
(7968, 18511, 'Autosenses private limited ', 'Customer relationship excutive ', '2023-01-02', 20000.00, '2023-07-01', 2000.00, 'Guindy', '1', '0 years 5 months', 'Project closed ', 1, '2024-04-13 04:28:24', 0, NULL, 0, NULL, 1),
(7969, 18522, 'Forte management', 'Perungudi', '2022-01-04', 13000.00, '2022-12-20', 15000.00, 'Saidapet', '1', '0 years 11 months', ' Salary issue and pf not provide', 1, '2024-04-13 05:08:47', 0, NULL, 0, NULL, 1),
(7970, 18528, 'Honda', 'Sales executive ', '2020-02-10', 8000.00, '2022-04-20', 12000.00, 'Gandarvakottai ', '1', '2 years 2 months', ' Studies ', 1, '2024-04-13 05:49:05', 0, NULL, 0, NULL, 1),
(7971, 18528, 'Tatasky', 'Customer care', '2019-07-17', 7000.00, '2020-01-15', 7000.00, 'Bangalore ', '1', '0 years 5 months', 'Corona ', 1, '2024-04-13 05:50:23', 0, NULL, 0, NULL, 1),
(7972, 18529, 'Byjus', 'BDE', '2022-02-16', 20000.00, '2022-11-23', 20000.00, 'Chennai', '1', '0 years 9 months', ' Recession ', 1, '2024-04-13 06:01:02', 0, NULL, 0, NULL, 1),
(7973, 18529, 'Axis Bank Ltd ', 'BRO - AM', '2023-06-06', 27000.00, '2024-02-23', 27000.00, 'Chennai', '1', '0 years 8 months', 'Personal reasons. ', 1, '2024-04-13 06:03:50', 0, NULL, 0, NULL, 1),
(7974, 18532, 'muthoot finanace ltd', 'junior relationship executive', '2018-04-10', 18000.00, '2018-11-03', 18000.00, 't nagar', '1', '0 years 6 months', ' carrier upgrade', 1, '2024-04-13 07:37:39', 0, NULL, 0, NULL, 1),
(7975, 18532, 'kelly', 'process advisor', '2019-01-25', 13000.00, '2019-07-31', 15000.00, 'chennai', '1', '0 years 6 months', 'process closed', 1, '2024-04-13 07:46:42', 0, NULL, 0, NULL, 1),
(7976, 18532, 'alpha e services', 'proprietor', '2021-02-01', 15000.00, '1970-01-01', 30000.00, 'chennai', '2', '3 years 2 months', 'day to day more expenses to run a business', 1, '2024-04-13 07:48:06', 0, NULL, 0, NULL, 1),
(7977, 18492, 'ruloans distributions pvt ltd', 'telecaller', '2023-03-07', 20000.00, '1970-01-01', 30000.00, 'jaipur', '2', '1 years 1 months', 'Looking for growth  ', 1, '2024-04-15 04:22:33', 0, NULL, 0, NULL, 1),
(7978, 18544, 'Bajaj Allianz Life ', 'Relationship manager ', '2023-11-15', 300000.00, '2024-05-13', 300000.00, 'Bangalore ', '1', '0 years 5 months', ' For better opportunity ', 1, '2024-04-15 06:21:18', 0, NULL, 0, NULL, 1),
(7979, 18545, 'Bombay kulfi ', 'Accountant ', '2022-06-01', 15000.00, '2024-02-20', 15000.00, 'Nanganallur ', '1', '1 years 8 months', ' Cause of mother health issued nd she passed away', 1, '2024-04-15 06:21:44', 0, NULL, 0, NULL, 1),
(7980, 18548, 'RBL Bank', 'Collection work', '2023-02-15', 18000.00, '2023-08-01', 18500.00, 'Mayiladuthurai ', '1', '1 years 2 months', ' Accident problem ', 1, '2024-04-15 07:15:00', 0, NULL, 0, NULL, 1),
(7981, 18552, 'Lcube innovative solutions ', 'Software developer ', '2022-08-13', 300000.00, '2022-11-23', 300000.00, 'Anna Nagar ', '1', '0 years 3 months', ' ', 1, '2024-04-15 08:00:51', 0, NULL, 0, NULL, 1),
(7982, 18554, 'Sagility Health ', 'Senior Quality Consultant ', '2019-12-24', 16000.00, '2024-01-31', 24000.00, 'bhommanahalli ', '1', '4 years 1 months', ' Better prospects ', 1, '2024-04-15 08:38:32', 0, NULL, 0, NULL, 1),
(7983, 18555, 'Sutherland', 'Customer support', '2017-08-28', 25000.00, '2023-03-22', 24000.00, 'Chennai', '1', '5 years 6 months', 'Ear issue ', 1, '2024-04-15 09:19:05', 0, NULL, 0, NULL, 1),
(7984, 18556, 'Hp infotech', 'Planning engginer', '2020-04-15', 16000.00, '2023-11-01', 18000.00, 'Valasaravakkam', '1', '3 years 6 months', ' ', 1, '2024-04-15 09:22:12', 0, NULL, 0, NULL, 1),
(7985, 18559, 'Reliance retail ', 'Department manager ', '2022-07-12', 14.00, '2024-02-05', 18.50, 'Chennai', '1', '1 years 6 months', ' Better than  salary  get new experience ', 1, '2024-04-15 11:52:28', 0, NULL, 0, NULL, 1),
(7986, 18562, 'Matrimony.com', 'Senior Relationship Manager ', '2023-01-24', 32000.00, '2024-02-28', 35000.00, 'Chennai', '1', '1 years 1 months', ' ', 1, '2024-04-16 01:27:39', 0, NULL, 0, NULL, 1),
(7987, 18562, 'Zenecks Infotech ', 'Business Development Associate ', '2022-05-18', 30000.00, '2022-12-22', 30000.00, 'Bangalore ', '1', '0 years 7 months', 'Company Closed ', 1, '2024-04-16 01:29:04', 0, NULL, 0, NULL, 1),
(7988, 18562, 'Poorvika Mobiles Private Limited ', 'Sales Executive ', '2020-01-14', 12000.00, '2020-12-16', 14000.00, 'Ooty', '1', '0 years 11 months', 'Higher Studies ', 1, '2024-04-16 01:30:01', 0, NULL, 0, NULL, 1),
(7989, 18569, 'ANIB INDIA SOLUTIONS ', 'Customer Relationship Officer ', '2022-03-14', 25000.00, '2023-05-31', 28000.00, 'Teynampet,chennai', '1', '1 years 2 months', ' Process wind-up ', 1, '2024-04-16 05:26:23', 0, NULL, 0, NULL, 1),
(7990, 18573, 'Invensis technologies Pvt Ltd ', 'Customer care executive ', '2023-01-16', 17500.00, '2023-05-31', 17500.00, 'Bangalore ', '1', '0 years 4 months', ' Due to process shutdown ', 1, '2024-04-16 05:32:03', 0, NULL, 0, NULL, 1),
(7991, 18576, 'casagrande builders ', 'senior executive ', '2022-06-10', 32.00, '2024-03-30', 35.00, 'omr navalur', '1', '1 years 9 months', ' carrier growth ', 1, '2024-04-16 05:39:37', 0, NULL, 0, NULL, 1),
(7992, 18570, 'Imarque solution pvt ltd ', 'Customer support executive ', '2022-09-13', 1.00, '2024-01-13', 15000.00, 'Chennai ', '1', '1 years 4 months', ' ', 1, '2024-04-16 05:42:11', 0, NULL, 0, NULL, 1),
(7993, 18575, 'Concentrix private limited  company ', 'Customer care executive ', '2022-09-22', 23000.00, '2024-02-21', 23000.00, 'Brookfield ', '1', '1 years 4 months', ' Process got shutdown', 1, '2024-04-16 05:42:25', 0, NULL, 0, NULL, 1),
(7994, 18567, 'Abi abi college ', 'Office staff', '2015-05-11', 5000.00, '2017-04-16', 5000.00, 'Vayalur', '1', '1 years 11 months', ' Low salary ', 1, '2024-04-16 05:50:20', 0, NULL, 0, NULL, 1),
(7995, 18578, 'TeamSpace Financial service private limited ', 'Canvesser', '2023-03-27', 10130.00, '1970-01-01', 18289.00, 'Chennai', '2', '1 years 0 months', ' To develop my sales skills in other products', 1, '2024-04-16 06:07:01', 0, NULL, 0, NULL, 1),
(7996, 18580, 'Hdfc bank ltd', 'Sales Executive ', '2023-08-08', 18000.00, '2024-02-14', 18000.00, 'Besant nagar ', '1', '0 years 6 months', ' Career growth ', 1, '2024-04-16 06:19:42', 0, NULL, 0, NULL, 1),
(7997, 18582, 'One paper ', 'Relationship Manager ', '2023-08-21', 21082023.00, '2024-02-01', 20000.00, 'Bangalore ', '1', '0 years 5 months', ' Loss of company ', 1, '2024-04-16 06:28:35', 0, NULL, 0, NULL, 1),
(7998, 18579, 'Om innovation private ltd', 'Customer support Executive ', '2023-01-20', 12500.00, '2024-03-15', 16500.00, 'Chetpet', '1', '1 years 2 months', ' Carrear growth ', 1, '2024-04-16 06:34:03', 0, NULL, 0, NULL, 1),
(7999, 18586, 'Inbarasan s ', 'Sales executive ', '2023-10-15', 5.00, '2024-04-13', 15000.00, 'Thanjavur ', '1', '0 years 5 months', ' ', 1, '2024-04-16 07:10:53', 0, NULL, 0, NULL, 1),
(8000, 18587, 'Hgs', 'Claims analyst', '2018-09-20', 200000.00, '2021-10-25', 250000.00, 'Banglore', '1', '3 years 1 months', ' Personal issue', 1, '2024-04-16 07:20:08', 0, NULL, 0, NULL, 1),
(8001, 18546, 'Flatworld mortgage pvt ltd ', 'Sales associate ', '2022-04-16', 26000.00, '2024-02-29', 26000.00, 'Jp nagar', '1', '1 years 10 months', ' ', 1, '2024-04-16 07:44:20', 0, NULL, 0, NULL, 1),
(8002, 18590, '17', 'Pre_sales', '2024-07-25', 18.00, '2024-12-25', 18.00, 'Bellandur', '1', '0 years 5 months', ' ', 1, '2024-04-16 08:08:32', 0, NULL, 0, NULL, 1),
(8003, 18589, 'Aachi group of companies ', 'Senior Customer Care Executive ', '2017-08-07', 15000.00, '2019-12-20', 18000.00, 'Chennai', '1', '2 years 4 months', ' ', 1, '2024-04-16 08:09:07', 0, NULL, 0, NULL, 1),
(8004, 18591, 'cogent e services private limited', 'csa', '2023-01-09', 17000.00, '2024-03-15', 17000.00, 'banglore ', '1', '1 years 2 months', ' Looking for bet opprtunity', 1, '2024-04-16 08:17:18', 0, NULL, 0, NULL, 1),
(8005, 18596, 'Exela technologies ', 'Claims processor ', '2022-01-28', 10500.00, '2024-03-05', 14500.00, 'Kilpa', '1', '2 years 1 months', 'Health issues due to night shift and for a better salary package. ', 1, '2024-04-17 05:03:35', 0, NULL, 0, NULL, 1),
(8006, 18597, 'WSH Experts Pte Ltd ', 'Marketing executive ', '2024-07-08', 10000.00, '1970-01-01', 12000.00, 'Thanjavur ', '2', '0 years 2 months', ' For better opportunity ', 1, '2024-04-17 05:07:08', 0, NULL, 0, NULL, 1),
(8007, 18600, 'Vst groups', 'Executive ', '2023-06-23', 20000.00, '2024-04-22', 20000.00, 'Mount road ', '1', '0 years 9 months', ' Career Growth ', 1, '2024-04-17 05:57:01', 0, NULL, 0, NULL, 1),
(8008, 18601, 'Mediassist Tpa pvt ltd. ', 'Domiciliary process', '2022-07-20', 230000.00, '2024-03-15', 230000.00, 'Hyderabad', '1', '1 years 7 months', ' Financial career growth', 1, '2024-04-17 05:58:44', 0, NULL, 0, NULL, 1),
(8009, 18605, 'Hdb financial pvt ltd', 'Sales executive', '2022-04-04', 20000.00, '2023-08-08', 20000.00, 'Bangalore', '1', '1 years 4 months', ' Family problem', 1, '2024-04-17 06:17:44', 0, NULL, 0, NULL, 1),
(8010, 18603, 'Just dial. Pvt', 'Tele marketing executive', '2023-02-15', 16000.00, '2024-02-14', 18000.00, '1', '1', '0 years 11 months', ' ', 1, '2024-04-17 06:18:02', 0, NULL, 0, NULL, 1),
(8011, 18606, 'Prior health care ', 'AR ANALYST ', '2021-06-10', 2.70, '2022-12-29', 3.30, 'Banglore ', '1', '1 years 6 months', ' Had some personal issues to sort', 1, '2024-04-17 06:20:59', 0, NULL, 0, NULL, 1),
(8012, 18604, 'Indiqube', 'Banglore', '2023-05-28', 25000.00, '2023-09-18', 25000.00, 'Banglore ', '1', '0 years 3 months', ' Got an Intenship opportunity for hR, So releived from the previous company ', 1, '2024-04-17 07:39:32', 0, NULL, 0, NULL, 1),
(8013, 18608, '24/7.ai ', 'digital interaction advisor', '2022-07-13', 30.00, '2023-05-12', 20000.00, 'banglore', '1', '0 years 9 months', ' Process shut down ', 1, '2024-04-17 08:31:44', 0, NULL, 0, NULL, 1),
(8014, 18608, 'tsi', 'associate', '2022-12-14', 30.00, '2023-05-12', 20000.00, 'banglore', '1', '0 years 4 months', 'Contract', 1, '2024-04-17 08:33:20', 0, NULL, 0, NULL, 1),
(8015, 18609, 'Sriveda Sattva Pvt Ltd', 'Mis executive', '2023-11-23', 17500.00, '2024-04-17', 16500.00, 'Bangalore', '1', '0 years 4 months', ' ', 1, '2024-04-17 08:56:51', 0, NULL, 0, NULL, 1),
(8016, 18611, 'Cogent E service ', 'Customer support Associate ', '2024-02-10', 15500.00, '2024-07-11', 15500.00, 'Bangalore ', '1', '0 years 5 months', ' ', 1, '2024-04-17 09:10:04', 0, NULL, 0, NULL, 1),
(8017, 18611, 'Golden Enterprises', 'Telesales executive ', '2023-08-28', 20000.00, '1970-01-01', 20000.00, 'Bangalore ', '2', '0 years 7 months', 'Less Salary ', 1, '2024-04-17 09:12:03', 0, NULL, 0, NULL, 1),
(8018, 18613, 'bharti airtel', 'knock engineer', '2021-03-24', 20000.00, '2021-12-13', 25000.00, 'chennai', '1', '0 years 8 months', ' Health issuses', 1, '2024-04-17 10:23:54', 0, NULL, 0, NULL, 1),
(8019, 18616, 'Idfc first bank', 'sales officer ', '2022-09-11', 18000.00, '2024-03-11', 18000.00, 'Chennai', '1', '1 years 6 months', ' ', 1, '2024-04-17 11:35:43', 0, NULL, 0, NULL, 1),
(8020, 18625, 'Hdfc Bank ', 'Sales officer', '2021-05-19', 12000.00, '2021-11-05', 12000.00, 'Chennai', '1', '0 years 5 months', ' Health issues', 1, '2024-04-18 05:17:16', 0, NULL, 0, NULL, 1),
(8021, 18629, 'Shriram Life Insurance ', 'Senior caller', '2023-05-15', 13000.00, '1970-01-01', 13.50, 'Kodambakkam ', '2', '0 years 11 months', ' ', 1, '2024-04-18 06:18:18', 0, NULL, 0, NULL, 1),
(8022, 18631, 'Shriram life insurance ', 'Senior Caller ', '2024-02-01', 13500.00, '1970-01-01', 13500.00, 'Thousand lights', '2', '0 years 2 months', ' ', 1, '2024-04-18 06:22:21', 0, NULL, 0, NULL, 1),
(8023, 18574, 'ats', 'trainee', '2023-02-14', 5.00, '2024-02-13', 18.00, 'hal', '1', '0 years 11 months', ' completed ', 1, '2024-04-18 06:48:43', 0, NULL, 0, NULL, 1),
(8024, 18617, 'Propel Finways Insurance ', 'Telecaller ', '2024-01-03', 15.00, '2024-04-18', 15.00, 'Ekkattuthangal ', '2', '0 years 3 months', 'Salary date issue plus facilities not available ', 1, '2024-04-18 06:59:45', 0, NULL, 0, NULL, 1),
(8025, 18632, 'Bank bazaar, RSCT ', 'CRO ,  psychiatric counselor ', '2021-03-18', 25000.00, '2024-02-26', 25000.00, 'Chennai ', '1', '3 years 1 months', ' ', 1, '2024-04-18 07:06:28', 0, NULL, 0, NULL, 1),
(8026, 18632, 'Bank bazaar , RSCT ', 'CRO,  psychiatric counselor ', '2021-04-02', 25000.00, '2024-02-26', 25000.00, 'Chennai ', '1', '2 years 10 months', 'Shifted home ', 1, '2024-04-18 07:08:07', 0, NULL, 0, NULL, 1),
(8027, 18632, 'Bank bazaar , RSCT ', 'CRO, psychiatric counselor ', '2021-04-02', 25000.00, '2024-02-26', 25000.00, 'Chennai ', '1', '2 years 10 months', 'Shifted home ', 1, '2024-04-18 07:09:38', 0, NULL, 0, NULL, 1),
(8028, 18637, 'MPN Pvt ltd', 'tele caller', '2018-07-15', 18000.00, '2020-06-18', 17000.00, 'shantinagar', '1', '1 years 11 months', ' ', 1, '2024-04-18 10:08:49', 0, NULL, 0, NULL, 1),
(8029, 18633, 'Kesawarthani ', 'relationship sales executive', '2024-04-24', 18000.00, '1970-01-01', 16000.00, 'chennai', '2', '0 years 0 months', 'Marriage  ', 1, '2024-04-18 11:43:19', 0, NULL, 0, NULL, 1),
(8030, 18643, 'Unacademy learning platform ', 'BDE', '2023-06-08', 17500.00, '1970-01-01', 17500.00, 'Bangalore', '2', '0 years 10 months', 'Medical emergency ', 1, '2024-04-18 01:38:38', 0, NULL, 0, NULL, 1),
(8031, 18643, 'Virtue infra builder\'s pvt Ltd ', 'BDE', '2022-11-05', 20000.00, '2024-04-18', 17500.00, 'Bangalore', '1', '1 years 5 months', 'No growth ', 1, '2024-04-18 01:42:32', 0, NULL, 0, NULL, 1),
(8032, 18644, 'Bridge technologies pvt Ltd ', 'Desktop support engineer ', '2023-05-05', 15000.00, '1970-01-01', 15000.00, 'Kilpauk', '2', '0 years 11 months', ' Carrier growth ', 1, '2024-04-18 03:33:52', 0, NULL, 0, NULL, 1),
(8033, 18645, 'katomaran technologies pvt ltd', 'associate support engineer', '2022-12-15', 12000.00, '2023-12-31', 15000.00, 'coimbatore', '1', '1 years 0 months', ' ', 1, '2024-04-18 04:26:49', 0, NULL, 0, NULL, 1),
(8034, 18645, 'greenbotz platform pvt ltd', 'associate support engineer', '2024-01-01', 17000.00, '1970-01-01', 17000.00, 'coimbatore', '2', '0 years 3 months', 'for career update', 1, '2024-04-18 04:29:22', 0, NULL, 0, NULL, 1),
(8035, 18648, 'mini store incharge airtel', 'store incharge', '2023-06-22', 21394.00, '1970-01-01', 21394.00, 'chennai', '2', '0 years 9 months', ' Career growth', 1, '2024-04-20 04:52:58', 0, NULL, 0, NULL, 1),
(8036, 18652, 'Muthoot finance ', 'Junior relationship executive ', '2020-03-10', 14000.00, '2022-03-08', 14000.00, 'Kumbakonam ', '1', '1 years 11 months', ' Personal issues ', 1, '2024-04-20 05:57:56', 0, NULL, 0, NULL, 1),
(8037, 18652, 'Hdb finance service ', 'Senior Telle caller ', '2023-06-04', 12000.00, '2024-04-01', 12000.00, 'Coimbatore ', '1', '0 years 9 months', 'Personal issues ', 1, '2024-04-20 05:59:06', 0, NULL, 0, NULL, 1),
(8038, 18653, 'Harkin global solution Pvt LTD ', 'Customer service ', '2023-06-12', 24500.00, '1970-01-01', 24500.00, 'Chennai ', '2', '0 years 10 months', ' Due to personal ', 1, '2024-04-20 06:14:22', 0, NULL, 0, NULL, 1),
(8039, 18654, 'India First Life Insurance', 'Business Development Manager ', '2023-01-30', 30.00, '2024-05-16', 350000.00, 'Chennai', '1', '1 years 3 months', 'Career growth', 1, '2024-04-20 06:31:41', 0, NULL, 0, NULL, 1),
(8040, 18655, 'Exela Technologies', 'Processor', '2019-09-25', 15000.00, '2024-03-03', 15000.00, 'Guindy', '1', '4 years 5 months', ' For better carrier Growth Opportunity ', 1, '2024-04-20 07:00:56', 0, NULL, 0, NULL, 1),
(8041, 18656, 'Royal sundaram general insurance company ', 'Sr associates', '2023-01-16', 22000.00, '2024-05-15', 23000.00, 'Chennai', '1', '1 years 3 months', ' ', 1, '2024-04-20 07:15:17', 0, NULL, 0, NULL, 1),
(8042, 18496, 'Silaris information private limited ', 'Telecaller ', '2023-11-01', 24600.00, '2024-04-04', 24600.00, 'Marathalli banglore ', '1', '0 years 5 months', ' It\'s too far for me so', 1, '2024-04-20 07:28:00', 0, NULL, 0, NULL, 1),
(8043, 18496, 'Silaris information private limited ', 'Telecaller ', '2023-11-01', 24600.00, '2024-04-08', 24600.00, 'Marathalli ', '1', '0 years 5 months', ' It\'s too far for me so traffic I can\'t in time reached office timings so', 1, '2024-04-20 07:30:27', 0, NULL, 0, NULL, 1),
(8044, 18657, 'Hdfc Bank ', 'Business development representative ', '2023-05-15', 15000.00, '2024-01-10', 15000.00, 'Chennai ', '1', '0 years 11 months', ' Not interested for sales field\nI\'m looking for finance related jobs', 1, '2024-04-20 07:37:06', 0, NULL, 0, NULL, 1),
(8045, 18657, 'Sriyah insurance brokers Pvt Ltd ', 'Executive ', '2019-08-08', 12000.00, '2020-11-25', 13500.00, 'Vellore', '1', '1 years 3 months', 'Studying for higher studies ', 1, '2024-04-20 07:38:58', 0, NULL, 0, NULL, 1),
(8046, 18658, 'Calibehr buisness solutions', 'Customer support', '2021-09-25', 13500.00, '2022-10-25', 13500.00, 'T nagar', '1', '1 years 1 months', ' Health issue', 1, '2024-04-20 09:11:23', 0, NULL, 0, NULL, 1),
(8047, 18660, 'Brainbees solutions private limited ', 'CRO', '2022-04-06', 14200.00, '1970-01-01', 15000.00, 'Thiruvallur ', '2', '2 years 0 months', ' I haven\'t seen any growth from this company ', 1, '2024-04-21 09:06:20', 0, NULL, 0, NULL, 1),
(8048, 18662, 'Shriram life insurance ', 'Telesale', '2021-11-18', 16000.00, '2023-12-15', 23000.00, 'Chennai(Egmore)', '1', '2 years 0 months', ' ', 1, '2024-04-22 05:27:44', 0, NULL, 0, NULL, 1),
(8049, 18665, 'Teleperformance Global services Pvt Ltd ', 'Customer service executive ', '2019-03-04', 13000.00, '2021-08-19', 15000.00, 'Ambattur', '1', '2 years 5 months', 'To improve my career growth', 1, '2024-04-22 05:59:42', 0, NULL, 0, NULL, 1),
(8050, 18642, 'Byjus', 'IT Engineer', '2022-07-25', 22000.00, '2023-10-31', 22000.00, 'Chennai ', '1', '1 years 3 months', ' ', 1, '2024-04-22 07:00:30', 0, NULL, 0, NULL, 1),
(8051, 18642, 'Sysco infotech', 'Desktop support engineer ', '2021-12-07', 8000.00, '2022-06-30', 8000.00, 'Chennai ', '1', '0 years 6 months', 'Career growth', 1, '2024-04-22 07:02:43', 0, NULL, 0, NULL, 1),
(8052, 18668, 'straive', 'copy editor', '2021-12-06', 2022.00, '2023-02-07', 20000.00, 'pondicherry', '1', '1 years 2 months', ' Better career growth', 1, '2024-04-22 07:16:19', 0, NULL, 0, NULL, 1),
(8053, 18669, 'Ola financial services pvt Ltd ', 'Associate sales consultant ', '2021-05-24', 3.00, '2024-01-09', 3.00, 'Bangalore ', '1', '2 years 7 months', 'On roll issue ', 1, '2024-04-22 07:42:59', 0, NULL, 0, NULL, 1),
(8054, 18670, 'tata sky pri limited', 'tele sale executive', '2018-06-07', 2.40, '2021-12-31', 19000.00, 'banashankari', '1', '3 years 6 months', ' I left my previous company because I was seeking new challenges and opportunities for career growth.', 1, '2024-04-22 07:43:26', 0, NULL, 0, NULL, 1),
(8055, 18672, 'Xmedia solutions ', 'Linux administrator ', '2022-11-24', 10000.00, '2024-03-30', 15000.00, 'Chennai ', '1', '1 years 4 months', ' To learn more and with better environment ', 1, '2024-04-22 09:42:19', 0, NULL, 0, NULL, 1),
(8056, 18675, 'Nittany creative services ', 'Order process executive ', '2022-06-01', 15000.00, '2023-09-30', 18000.00, 'Perungudi ', '1', '1 years 3 months', ' We need improve our knowledge and need more experience for new job', 1, '2024-04-23 05:24:41', 0, NULL, 0, NULL, 1),
(8057, 18675, 'Kevin electricals private limited ', 'Junior documentation executive ', '2023-09-01', 18000.00, '2024-01-31', 18000.00, 'Adayar', '1', '0 years 4 months', 'We need improve our knowledge skills in new sector', 1, '2024-04-23 05:26:35', 0, NULL, 0, NULL, 1),
(8058, 18675, 'Kauvery hospital ', 'Junior executive ', '2024-02-01', 19000.00, '1970-01-01', 19000.00, 'Alwarpet', '2', '0 years 2 months', 'We need improve our knowledge ', 1, '2024-04-23 05:27:42', 0, NULL, 0, NULL, 1),
(8059, 18678, 'ampa orthodontics pvt ltd', 'inside sales', '2021-08-16', 25000.00, '2022-08-05', 25000.00, 'mumbai', '2', '0 years 11 months', ' Shifting to chennai', 1, '2024-04-23 06:12:01', 0, NULL, 0, NULL, 1),
(8060, 18686, 'Jio fiber ', 'Home sales officer ', '2022-09-17', 18500.00, '2023-05-05', 18500.00, 'Chennai', '1', '0 years 7 months', ' ', 1, '2024-04-23 06:49:33', 0, NULL, 0, NULL, 1),
(8061, 18687, 'Indiamart ', 'Account manager ', '2023-05-08', 20000.00, '2024-03-05', 20000.00, 'Greens road', '1', '0 years 9 months', ' Out of station ', 1, '2024-04-23 07:27:28', 0, NULL, 0, NULL, 1),
(8062, 18688, 'wibmo software pvt limited', 'process associate', '2017-12-13', 33000.00, '2023-09-10', 33000.00, 'bangalore', '1', '5 years 8 months', ' process got migrated to the other company', 1, '2024-04-23 09:34:15', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8063, 18694, 'My tvs', 'Customer support ', '2023-01-30', 19000.00, '2024-03-31', 19000.00, 'Ekkaduthangal ', '1', '1 years 2 months', ' career development and improving skills', 1, '2024-04-24 04:51:02', 0, NULL, 0, NULL, 1),
(8064, 18694, 'Hero motor corb', 'Frond line supervisor ', '2021-01-26', 15000.00, '2022-12-01', 15000.00, 'Devakottai ', '1', '1 years 10 months', 'For career growth ', 1, '2024-04-24 04:53:31', 0, NULL, 0, NULL, 1),
(8065, 18699, 'The Dollar Business', 'Tele Sales Executive', '2022-06-06', 25320.00, '2023-06-10', 25320.00, 'Teynampet', '1', '1 years 0 months', 'Family issues', 1, '2024-04-24 05:19:18', 0, NULL, 0, NULL, 1),
(8066, 18701, 'Everyday banking solution', 'Sales coordinator ', '2023-04-24', 15000.00, '2024-03-11', 15000.00, 'Parrys ', '1', '0 years 10 months', ' low salary ', 1, '2024-04-24 05:33:58', 0, NULL, 0, NULL, 1),
(8067, 18697, 'Cameo corporate services ', 'Telecaller', '2023-12-29', 15000.00, '2024-03-08', 15000.00, '1,club house road Chennai ', '1', '0 years 2 months', ' Some salary issue ', 1, '2024-04-24 05:37:23', 0, NULL, 0, NULL, 1),
(8068, 18702, 'Expoglow global consultancy pvt Ltd ', 'Telecaller ', '2023-08-02', 15000.00, '2023-12-31', 15000.00, 'Anna nagar ', '1', '0 years 4 months', ' Company problem ', 1, '2024-04-24 05:58:47', 0, NULL, 0, NULL, 1),
(8069, 18683, 'hdb', 'sales officer', '2023-02-01', 12500.00, '1970-01-01', 11000.00, 'chennai', '2', '1 years 2 months', ' salary issues', 1, '2024-04-24 06:19:08', 0, NULL, 0, NULL, 1),
(8070, 18706, 'Lycatel bpo pvt ltd ', 'Customer care specialist ', '2022-03-29', 20000.00, '1970-01-01', 20000.00, 'Chennai,porur', '2', '2 years 0 months', ' Process have closed ', 1, '2024-04-24 06:27:14', 0, NULL, 0, NULL, 1),
(8071, 18704, 'Teleperformance', 'Senior Customer Support Associate', '2023-09-18', 25000.00, '2024-04-26', 25000.00, 'Ambatur', '1', '0 years 7 months', ' Process ramp Down', 1, '2024-04-24 06:28:53', 0, NULL, 0, NULL, 1),
(8072, 18705, ' jaro education', 'sales officer', '2023-11-25', 40000.00, '2024-01-31', 40000.00, 'vadapalani', '1', '0 years 2 months', ' Meet with an accident hospitalized for 2 to 3 months ', 1, '2024-04-24 06:32:14', 0, NULL, 0, NULL, 1),
(8073, 18708, 'All set solution', 'Tellecaller', '2023-10-03', 12000.00, '2024-04-15', 12000.00, 'Thousand lights', '1', '0 years 6 months', ' Salary is not convenient ', 1, '2024-04-24 06:46:54', 0, NULL, 0, NULL, 1),
(8074, 18710, 'Goal cryst', 'Collection', '2023-09-03', 17000.00, '2024-04-06', 17000.00, 'Jayanaragar', '1', '0 years 7 months', 'Salary isssue', 1, '2024-04-24 07:08:43', 0, NULL, 0, NULL, 1),
(8075, 18712, 'Quests corp ltd', 'Relationship officer ', '2023-09-09', 19000.00, '2023-09-10', 25000.00, 'Kodambakkam ', '1', '0 years 0 months', 'Personal issues ', 1, '2024-04-24 08:56:35', 0, NULL, 0, NULL, 1),
(8076, 18707, 'VISHNU', 'Freshers', '2023-01-12', 16000.00, '2024-02-01', 16000.00, 'Chennai', '2', '1 years 0 months', ' Freshers', 1, '2024-04-24 09:42:52', 0, NULL, 0, NULL, 1),
(8077, 18713, 'Sutherland global service ', 'Customer support executive ', '2022-06-22', 19000.00, '2024-04-23', 22500.00, 'Perunghalatur ', '1', '1 years 10 months', ' Hike issue ', 1, '2024-04-24 10:17:47', 1, '2024-04-24 10:18:47', 0, NULL, 1),
(8078, 18714, 'altruist technologies pvt ltd', 'business associates', '2023-06-27', 17500.00, '2024-04-15', 17500.00, 'bangalore', '1', '0 years 9 months', ' Looking for better opportunities', 1, '2024-04-24 10:43:22', 0, NULL, 0, NULL, 1),
(8079, 18718, 'WHY Global services ', 'Full Stack Developer ', '2023-10-10', 15000.00, '2024-04-22', 15000.00, 'Chennai ', '1', '0 years 6 months', ' Internship ', 1, '2024-04-25 05:31:57', 0, NULL, 0, NULL, 1),
(8080, 18722, 'WHY Global Services ', 'Full Stack Developer ', '2023-10-01', 15000.00, '2024-04-29', 15000.00, 'Egmore ', '1', '0 years 6 months', ' ', 1, '2024-04-25 05:36:38', 0, NULL, 0, NULL, 1),
(8081, 18722, 'Pinus Software Solutions pvt', 'Software Engineer (RPA Developer)', '2021-05-20', 15000.00, '2023-08-31', 15000.00, 'Chennai', '1', '2 years 3 months', 'I want gain knowledge more for Full stack ', 1, '2024-04-25 05:38:36', 0, NULL, 0, NULL, 1),
(8082, 18719, 'Bajaj finance ', 'Sales officer ', '2023-09-04', 15000.00, '2024-04-05', 17500.00, 'Chennai ', '2', '0 years 7 months', ' Growth ', 1, '2024-04-25 05:44:50', 0, NULL, 0, NULL, 1),
(8083, 18729, 'WHY Global services ', 'Flutter Developer ', '2023-10-10', 15000.00, '2024-04-22', 15000.00, 'Chennai', '1', '0 years 6 months', ' Intership', 1, '2024-04-25 06:04:50', 0, NULL, 0, NULL, 1),
(8084, 18724, 'Reliance ', 'SRM', '2023-12-20', 20000.00, '2024-04-08', 16500.00, 'Guindy nanganallur', '1', '0 years 3 months', ' Bike is mandatory I don\'t have bike so I am relive', 1, '2024-04-25 06:35:39', 0, NULL, 0, NULL, 1),
(8085, 18731, 'Intulogic pvt Ltd ', 'Erp functional consultant ', '2023-03-18', 10000.00, '2024-01-30', 15000.00, 'Trichy ', '1', '0 years 10 months', ' Medical issue', 1, '2024-04-25 06:42:29', 0, NULL, 0, NULL, 1),
(8086, 18736, 'Human ranstad', 'Sales executive ', '2024-02-15', 5.00, '1970-01-01', 19000.00, 'Kudanahalli gate', '2', '0 years 2 months', ' ', 1, '2024-04-25 07:32:16', 0, NULL, 0, NULL, 1),
(8087, 18734, 'Vizza insurance broking services private limited', 'Team lead', '2022-08-02', 13000.00, '2024-04-25', 25000.00, 'CHENNAI', '1', '1 years 8 months', ' Carrier growth ', 1, '2024-04-25 07:34:35', 0, NULL, 0, NULL, 1),
(8088, 18736, 'Human ranstad', 'Sales exexcutive', '2024-02-15', 19000.00, '1970-01-01', 19000.00, 'KUDANAHALLI gate', '2', '0 years 2 months', 'Target pressure', 1, '2024-04-25 07:34:52', 0, NULL, 0, NULL, 1),
(8089, 18735, 'Airtel payment bank', 'Sales executive ', '2023-02-20', 20000.00, '2024-04-20', 20000.00, 'Dindigul', '1', '1 years 2 months', ' Carrier growth', 1, '2024-04-25 07:43:13', 0, NULL, 0, NULL, 1),
(8090, 18723, 'Anmor Overseas Venture Pvt ltd', 'Accountant', '2023-02-02', 12000.00, '1970-01-01', 14000.00, 'Chennai', '2', '1 years 2 months', ' Salary not expected', 1, '2024-04-25 07:49:56', 0, NULL, 0, NULL, 1),
(8091, 18737, 'Sbicard', 'Senior executive', '2019-01-28', 1.00, '2024-03-20', 32000.00, 'CHENNAI', '1', '5 years 1 months', ' Better carrier', 1, '2024-04-25 09:57:55', 0, NULL, 0, NULL, 1),
(8092, 18742, 'RELIANCE NIPPON LIFE INSURANCE COMPANY LTD ', 'Executive Relationship Manager ', '2022-11-02', 1.00, '1970-01-01', 360000.00, 'DHARMAPURI ', '2', '1 years 5 months', ' ', 1, '2024-04-26 05:09:27', 0, NULL, 0, NULL, 1),
(8093, 18740, 'iprocess service pvt ltd', 'senior executive', '2023-08-04', 12500.00, '2024-02-12', 12700.00, 'chennai', '1', '0 years 6 months', 'distance ', 1, '2024-04-26 06:15:23', 0, NULL, 0, NULL, 1),
(8094, 18744, 'Bankbazaar ', 'Customer Relationship Officer ', '2021-05-10', 15000.00, '2023-01-05', 21000.00, 'Ambattur ', '1', '1 years 7 months', ' Not  any promotion level and not available any incentive ', 1, '2024-04-26 06:39:17', 0, NULL, 0, NULL, 1),
(8095, 18750, 'Python programmer ', 'Programmer ', '2023-01-23', 12000.00, '1970-01-01', 18500.00, 'Nagercoil ', '2', '1 years 3 months', ' Salary issue ', 1, '2024-04-27 05:01:20', 0, NULL, 0, NULL, 1),
(8096, 18751, 'AppMomos', 'Test Engineer', '2021-03-15', 1.00, '2023-09-27', 1.08, 'Bangalore ', '1', '2 years 6 months', ' Carrer grwoth', 1, '2024-04-27 05:03:46', 0, NULL, 0, NULL, 1),
(8097, 18756, 'Vizza insurance brokage company ', 'Voice process executive', '2023-10-12', 16000.00, '1970-01-01', 16000.00, 'Vadapalani,Chennai', '2', '0 years 6 months', 'Shifting work location ', 1, '2024-04-27 06:23:40', 0, NULL, 0, NULL, 1),
(8098, 18759, 'Sumitra computers ', 'Sales executive ', '2023-06-08', 15000.00, '1970-01-01', 15.00, 'Basvanaguad ', '2', '0 years 10 months', 'Field work ', 1, '2024-04-27 06:24:29', 0, NULL, 0, NULL, 1),
(8099, 18756, 'Maxicut industrial solution ', 'Process Engineer', '2022-09-16', 16500.00, '2023-10-05', 20000.00, 'Kanchipuram', '1', '1 years 0 months', 'Health issues', 1, '2024-04-27 06:26:36', 0, NULL, 0, NULL, 1),
(8100, 18758, 'CPG BPM', 'Associate', '2023-05-22', 15000.00, '2024-02-01', 15000.00, 'Kudlu gate', '1', '0 years 8 months', ' Taking care of children\'s ', 1, '2024-04-27 06:28:43', 0, NULL, 0, NULL, 1),
(8101, 18756, 'TNSTC', 'Act AE', '2020-06-06', 5000.00, '2021-06-06', 5000.00, 'Trichy', '1', '1 years 0 months', 'Government apprenticeship they provide only one year ', 1, '2024-04-27 06:28:46', 0, NULL, 0, NULL, 1),
(8102, 18757, 'Team lease ', 'Voice process executive ', '2019-12-01', 13000.00, '2020-05-30', 14000.00, 'Koyambedu,chennai', '1', '0 years 5 months', ' Health issue ', 1, '2024-04-27 06:32:47', 0, NULL, 0, NULL, 1),
(8103, 18757, 'Thirupati Pharmacy ', 'Sales', '2021-08-20', 10000.00, '2023-09-09', 14000.00, 'Vysarpadi,Chennai ', '1', '2 years 0 months', 'Extra work timing ', 1, '2024-04-27 06:36:56', 1, '2024-04-27 06:39:50', 0, NULL, 1),
(8104, 18757, 'Vizza insurance broking Pvt.ltd', 'Voice process executive ', '2023-10-05', 15000.00, '1970-01-01', 15000.00, 'Vadapalani ,chennai', '2', '0 years 6 months', 'Shifting office location ', 1, '2024-04-27 06:38:27', 1, '2024-04-27 06:39:20', 0, NULL, 1),
(8105, 18767, 'kalpana sarees ', 'customer sales executive', '2019-12-19', 5.00, '2024-02-10', 1.00, 'Belgaum', '1', '4 years 1 months', ' Growth purpose', 1, '2024-04-27 11:26:25', 0, NULL, 0, NULL, 1),
(8106, 18763, 'Aequitas dept solution ', 'Tellcaller', '2022-02-07', 15000.00, '2023-03-08', 15000.00, 'Thousand light', '1', '1 years 1 months', ' Salary issuse ', 1, '2024-04-27 11:48:07', 0, NULL, 0, NULL, 1),
(8107, 18764, 'Aadi finance ', 'Tele caller ', '2023-04-05', 15000.00, '2024-04-15', 15000.00, 'Periamet ', '1', '1 years 0 months', ' Salary issue ', 1, '2024-04-27 11:54:31', 0, NULL, 0, NULL, 1),
(8108, 18765, 'Pandox hospital ', 'Nursing officer ', '2022-10-20', 23000.00, '2023-11-29', 28000.00, 'Nagarabhavi ', '1', '1 years 1 months', ' Long distance ', 1, '2024-04-29 03:07:55', 0, NULL, 0, NULL, 1),
(8109, 18771, 'Axis Bank ', 'Officer sales', '2022-09-20', 15000.00, '2023-08-29', 18000.00, 'Peravurani, Thanjavur (dts)', '1', '0 years 11 months', ' Family issues ', 1, '2024-04-29 05:15:23', 0, NULL, 0, NULL, 1),
(8110, 18773, 'Ienergizer pvt Ltd ', 'Agent ', '2023-03-14', 19600.00, '2024-01-11', 19600.00, 'Bangalore ', '1', '0 years 9 months', ' Process lay off', 1, '2024-04-29 05:38:59', 0, NULL, 0, NULL, 1),
(8111, 18715, 'Bank bazaar', 'Senior customer relationship officer', '2022-08-04', 15000.00, '2024-03-30', 19000.00, 'Chennai', '1', '1 years 7 months', ' For career growth and skill development', 1, '2024-04-29 05:40:57', 0, NULL, 0, NULL, 1),
(8112, 18775, 'Simply vyapar apps private limited ', 'Account manager ', '2023-10-06', 20000.00, '2024-04-24', 20000.00, 'Hsr bangalore ', '1', '0 years 6 months', ' They were not provided good leads ', 1, '2024-04-29 05:41:23', 0, NULL, 0, NULL, 1),
(8113, 18770, 'cams', 'executive officer', '2022-03-17', 15000.00, '2024-01-02', 20000.00, 'chennai', '1', '1 years 9 months', 'carrer growth ', 1, '2024-04-29 06:04:16', 0, NULL, 0, NULL, 1),
(8114, 18780, 'BYJUS THINK AND LEARN', 'BDM', '2023-04-27', 40000.00, '2024-04-27', 40000.00, 'Bangalore ', '1', '1 years 0 months', ' Receiving partial salary ', 1, '2024-04-29 07:08:52', 0, NULL, 0, NULL, 1),
(8115, 18748, 'Concentrix pvt ltd', 'Associate 1', '2022-12-01', 21000.00, '2023-12-16', 24000.00, 'Bangalore ', '1', '1 years 0 months', ' ', 1, '2024-04-29 07:18:11', 0, NULL, 0, NULL, 1),
(8116, 18781, 'BYJUS THINK AND LEARN ', 'BDM', '2023-04-07', 40000.00, '2024-04-27', 40000.00, 'Bangalore ', '1', '1 years 0 months', 'Receiving partial salary ', 1, '2024-04-29 07:24:21', 0, NULL, 0, NULL, 1),
(8117, 18786, 'shriram life Insurance ', 'rm', '2023-10-09', 29780.00, '2024-03-01', 29780.00, 'chennai', '1', '0 years 4 months', ' ', 1, '2024-04-29 08:01:13', 0, NULL, 0, NULL, 1),
(8118, 18784, 'IIFL gold loan', 'Business executive development ', '2022-09-23', 14000.00, '2024-11-23', 22000.00, 'Kolar', '1', '2 years 2 months', ' Marriage ', 1, '2024-04-29 08:08:10', 0, NULL, 0, NULL, 1),
(8119, 18785, 'connect4sure technologies pvt ltd', 'team leader', '2023-06-13', 20000.00, '1970-01-01', 25000.00, 'hsr layout', '2', '0 years 10 months', 'To look for better opportunity', 1, '2024-04-29 08:34:10', 0, NULL, 0, NULL, 1),
(8120, 18788, 'Hdfc bank ', 'Telesales', '2022-03-17', 10000.00, '2022-07-15', 10000.00, 'Anantapur ', '1', '0 years 3 months', ' Due to health issues ', 1, '2024-04-29 09:56:09', 0, NULL, 0, NULL, 1),
(8121, 18788, 'Suvision holding private limited ', 'Team leader ', '2022-08-17', 30000.00, '2023-07-15', 30000.00, 'Bangalore ', '1', '0 years 10 months', 'Due to my graduation exams', 1, '2024-04-29 09:57:54', 0, NULL, 0, NULL, 1),
(8122, 18790, 'sagility', 'sr associate', '2021-12-22', 1.85, '2024-01-12', 2.80, 'gb palya', '1', '2 years 0 months', ' Looking for better opportunities for future growth', 1, '2024-04-29 11:57:45', 0, NULL, 0, NULL, 1),
(8123, 18798, 'Novalnet e-solutions ', 'Software developer trainee ', '2023-06-26', 17000.00, '2024-01-31', 17000.00, 'Chennai', '1', '0 years 7 months', 'I am working on zencart eCommerce site in payment gateway integration,Due to lack of clients in project company will layoff me with given experience letter.', 1, '2024-04-30 05:19:47', 1, '2024-04-30 05:20:22', 0, NULL, 1),
(8124, 18804, 'Imerge Business solutions ', 'Tele caller ', '2023-04-11', 14000.00, '2024-04-11', 14000.00, 'Perungudi', '1', '1 years 0 months', 'Growth', 1, '2024-04-30 05:53:56', 0, NULL, 0, NULL, 1),
(8125, 18802, 'Axis Bank ', 'Relationship officer ', '2022-01-28', 20.00, '2024-01-31', 20.00, 'Kodambakkam ', '1', '2 years 0 months', ' Personal issues ', 1, '2024-04-30 05:59:22', 0, NULL, 0, NULL, 1),
(8126, 18803, 'Imerge business solutions ', 'Telesale ', '2024-01-01', 15000.00, '2024-04-10', 18000.00, 'Perungudi ', '1', '0 years 3 months', ' Process ramdown ', 1, '2024-04-30 05:59:37', 0, NULL, 0, NULL, 1),
(8127, 18801, 'Poorvika showroom ', 'Sales executive ', '2023-01-02', 15000.00, '2023-10-31', 20000.00, 'Mylapore ', '1', '0 years 9 months', 'Personal issues ', 1, '2024-04-30 06:18:08', 0, NULL, 0, NULL, 1),
(8128, 18816, 'Cogent &werize', 'Realtionship manger', '2022-10-27', 25000.00, '2024-04-15', 27000.00, 'HSR', '1', '1 years 5 months', 'Looking for better opportunity & because of family dead i have taken a break', 1, '2024-04-30 08:25:40', 0, NULL, 0, NULL, 1),
(8129, 18816, 'werize ', 'Hsr', '2022-10-27', 25000.00, '2024-04-15', 27000.00, 'Banglore', '1', '1 years 5 months', 'Looking for better opportunity for the future where I can utilise my skills ', 1, '2024-04-30 08:27:24', 0, NULL, 0, NULL, 1),
(8130, 18816, 'Werizse ', 'Hsr', '2022-10-27', 25000.00, '2024-04-15', 27000.00, 'Banglore', '1', '1 years 5 months', 'Looking for better opportunity to the upcoming future where I can utilise my skills in better platform', 1, '2024-04-30 08:28:36', 0, NULL, 0, NULL, 1),
(8131, 18816, 'Werisze', 'Relationship manager ', '2022-10-27', 25000.00, '2024-04-15', 30000.00, 'Banglore', '1', '1 years 5 months', 'Looking for better opportunity for the future where I can utilise my skills in better platform ', 1, '2024-04-30 08:30:00', 0, NULL, 0, NULL, 1),
(8132, 18821, 'indiafilings.com', 'business advisior ', '2022-08-17', 15000.00, '2024-03-30', 22000.00, 'guindy', '1', '1 years 7 months', ' Was plan to leave chennai for studied purpose ', 1, '2024-04-30 01:36:49', 0, NULL, 0, NULL, 1),
(8133, 18835, 'Ceridian ', 'Income Tax Validator ', '2023-11-23', 22749.00, '1970-01-01', 17000.00, 'BANGALORE', '2', '0 years 5 months', ' It was a contract basis work ', 1, '2024-05-02 05:15:42', 0, NULL, 0, NULL, 1),
(8134, 18841, 'sri ramachandra hospital', 'junior exective quality ', '2022-11-29', 18500.00, '1970-01-01', 25000.00, 'chennai', '2', '1 years 5 months', ' For more exploring ', 1, '2024-05-02 06:23:35', 0, NULL, 0, NULL, 1),
(8135, 18842, 'Casagrand Builders Pvt Ltd.', 'Senior Marketing Executive ', '2022-11-28', 20000.00, '2023-12-10', 22000.00, 'Chennai ', '1', '1 years 0 months', ' Family Emergency ', 1, '2024-05-02 06:41:40', 0, NULL, 0, NULL, 1),
(8136, 18842, 'Rose Villa (Self Business)', 'Partner (Family Business )', '2015-05-10', 50000.00, '2021-09-28', 60000.00, 'New Delhi , Gurgaon', '1', '6 years 4 months', 'Lockdown ', 1, '2024-05-02 06:43:45', 0, NULL, 0, NULL, 1),
(8137, 18850, 'cs aerotherm', 'web developer trainee', '2023-08-14', 20000.00, '2024-02-29', 22000.00, 'bengaluru', '1', '0 years 6 months', ' I canr able to manage the expenses in bengaluru so i relieved and looking for an oppurtunity in chennai ', 1, '2024-05-02 08:01:10', 0, NULL, 0, NULL, 1),
(8138, 18854, 'AXIS Bank', 'Sales officer', '2023-02-02', 17000.00, '2024-06-30', 17000.00, 'Chennai', '1', '1 years 4 months', ' Better salary and change of profile', 1, '2024-05-02 09:53:37', 1, '2024-05-02 09:53:57', 0, NULL, 1),
(8139, 18855, 'Royal Sundaram General insurance ', 'Back office Associate ', '2022-01-04', 21000.00, '2023-10-30', 23000.00, 'Cathedral garden road', '1', '1 years 9 months', ' ', 1, '2024-05-02 10:11:30', 1, '2024-05-02 10:13:26', 0, NULL, 1),
(8140, 18855, 'Star health and allied insurance ', 'Claim relationship officer ', '2020-02-17', 15000.00, '2021-12-30', 16500.00, 'Royapettah ', '1', '1 years 10 months', 'Better opportunity ', 1, '2024-05-02 10:15:33', 0, NULL, 0, NULL, 1),
(8141, 18857, 'Allsec technology', 'Technical support ', '2023-09-20', 12000.00, '1970-01-01', 14000.00, 'chennai ', '2', '0 years 7 months', ' Looking for a new atmosphere and then built a new career', 1, '2024-05-02 11:20:45', 0, NULL, 0, NULL, 1),
(8142, 18860, 'Twinbirds ', 'Dindigul ', '2023-06-12', 12000.00, '2024-03-15', 12000.00, 'Dindigul', '1', '0 years 9 months', ' Bcoz of work pressure for Target', 1, '2024-05-03 04:29:47', 0, NULL, 0, NULL, 1),
(8143, 18862, 'Transaction Process Officer ', 'Bsc', '2022-09-24', 1.00, '2024-01-18', 18500.00, 'Mahadevpura ', '1', '1 years 3 months', ' Family Problems ', 1, '2024-05-03 05:13:05', 0, NULL, 0, NULL, 1),
(8144, 18864, 'Freelancing ', 'Website development ', '2023-02-08', 18000.00, '2024-02-10', 18000.00, 'Remote', '1', '1 years 0 months', ' ', 1, '2024-05-03 06:26:23', 0, NULL, 0, NULL, 1),
(8145, 6086, 'Allsec technology ', 'Customer service executive ', '2023-07-17', 18000.00, '2024-04-24', 18000.00, 'Velachery ', '1', '0 years 9 months', ' Process closing', 1, '2024-05-03 07:05:48', 1, '2024-05-03 07:11:14', 0, NULL, 0),
(8146, 6086, 'Allsec technology ', 'Customer care executive ', '2023-07-17', 18000.00, '2024-04-24', 18000.00, 'Chennai', '1', '0 years 9 months', ' Process closing', 1, '2024-05-03 07:09:22', 0, NULL, 0, NULL, 1),
(8147, 18868, 'Sbi life insurance ', 'Insurance agent', '2021-05-03', 15000.00, '2022-11-03', 20000.00, 'Anathapuram', '1', '1 years 6 months', ' ', 1, '2024-05-03 07:19:41', 0, NULL, 0, NULL, 1),
(8148, 18868, 'Freedom app', 'Relationship manger and associate sales manager ', '2022-10-15', 25000.00, '2023-05-11', 25000.00, 'Benglore ', '1', '0 years 6 months', 'Some salary issues ', 1, '2024-05-03 07:24:28', 0, NULL, 0, NULL, 1),
(8149, 18868, 'Goal cryst pvt. Lmt', 'Legal advisor ', '2023-05-25', 18000.00, '2024-05-02', 18000.00, 'Benglore ', '1', '0 years 11 months', 'Career growth', 1, '2024-05-03 07:27:49', 0, NULL, 0, NULL, 1),
(8150, 18871, 'foxcon', 'scadar', '2022-03-02', 17000.00, '2023-03-25', 21000.00, 'sriperambathur', '1', '1 years 0 months', ' ', 1, '2024-05-03 11:10:38', 0, NULL, 0, NULL, 1),
(8151, 18873, 'Universal sompo general insurance company ', 'Management trainee ', '2023-06-27', 24630.00, '2024-03-30', 24630.00, 'Pondicherry ', '1', '0 years 9 months', ' For better opportunity ', 1, '2024-05-03 12:28:55', 0, NULL, 0, NULL, 1),
(8152, 18875, 'Best money gold', 'Executive', '2023-07-01', 10000.00, '2024-05-02', 10000.00, 'Thanjavur', '1', '0 years 10 months', ' Transfer to other district , same salary, so i cannot work this company ,thats my reason ', 1, '2024-05-03 01:10:27', 0, NULL, 0, NULL, 1),
(8153, 18877, 'Shanvi infotec ', 'IT co-ordinator ', '2023-08-16', 16000.00, '2024-04-25', 16000.00, 'Sri perambur ', '1', '0 years 8 months', ' Visiting  multiple site', 1, '2024-05-04 02:18:23', 0, NULL, 0, NULL, 1),
(8154, 18877, 'Dynacon ', 'Desktop support Engineer ', '2022-05-01', 10000.00, '2023-08-11', 12000.00, 'Chennai ', '1', '1 years 3 months', 'Field work ', 1, '2024-05-04 02:20:44', 0, NULL, 0, NULL, 1),
(8155, 18879, 'Bharat IT service limited ', 'Desktop support engineer ', '2023-09-22', 16500.00, '1970-01-01', 16500.00, 'Chennai', '2', '0 years 7 months', ' Nil', 1, '2024-05-04 04:08:22', 0, NULL, 0, NULL, 1),
(8156, 18880, 'IDFC FIRST BANK LTD ', 'USILAMPATTI', '2021-03-02', 16000.00, '2024-03-02', 20000.00, 'MADURAI', '1', '3 years 0 months', 'IT\'S OUR FAMILY ISSUE,SO I RESIGN MY JOB.', 1, '2024-05-04 04:41:01', 1, '2024-05-04 04:43:33', 0, NULL, 0),
(8157, 18880, 'HDFC BANK', 'USILAMPATTI', '2021-03-02', 10000.00, '2022-04-10', 12000.00, 'MADURAI', '1', '1 years 1 months', 'I HAVE IMPROVED,MY KNOWLEDGE,BUT I RESIGN.', 1, '2024-05-04 04:48:48', 0, NULL, 0, NULL, 1),
(8158, 18882, 'Ison', 'Customer care executive ', '2022-05-04', 15000.00, '2023-11-07', 15000.00, 'Kanthanchavadi', '1', '1 years 6 months', ' ', 1, '2024-05-04 05:30:36', 0, NULL, 0, NULL, 1),
(8159, 18856, 'Eos', 'Customer care service', '2023-10-04', 14.00, '2024-05-16', 14.00, 'Thuraipakam', '1', '0 years 7 months', ' Working hours high', 1, '2024-05-04 05:43:20', 0, NULL, 0, NULL, 1),
(8160, 18789, 'Imark Solutions Private Limited Company ', 'Customer care support executive ', '2023-08-03', 15.00, '2024-05-15', 15.00, 'Tynempat ', '1', '0 years 9 months', ' High Pleasure ', 1, '2024-05-04 06:00:22', 0, NULL, 0, NULL, 1),
(8161, 18887, 'IBM india pvt ltd', 'Process delivery specialist ', '2022-06-30', 33000.00, '2021-05-05', 33000.00, 'Bangalore', '1', '1 years 10 months', 'Transferred to anekal branch', 1, '2024-05-04 06:43:39', 0, NULL, 0, NULL, 1),
(8162, 18885, 'Inspace technologies pvt.ltd', 'Desktop support engineer ', '2023-02-13', 15000.00, '2024-02-26', 19600.00, 'Alwarpet', '1', '1 years 0 months', ' Health issue my mother ', 1, '2024-05-04 07:41:01', 0, NULL, 0, NULL, 1),
(8163, 18895, 'Asian Finance Service ', 'Tellecaller ', '2022-10-01', 5000.00, '2023-10-31', 7000.00, 'Chennai', '1', '1 years 0 months', 'Due to final year project', 1, '2024-05-04 09:30:19', 0, NULL, 0, NULL, 1),
(8164, 18896, 'faber and marketing', 'tele sales', '2020-11-02', 18000.00, '2024-03-27', 24000.00, 'chennai', '1', '3 years 4 months', ' location change', 1, '2024-05-04 10:15:18', 0, NULL, 0, NULL, 1),
(8165, 18897, 'hdfc life', 'sr associates', '2023-03-10', 10032023.00, '1970-01-01', 218000.00, 'hennai', '2', '1 years 1 months', ' Career grow and need to learn new things', 1, '2024-05-04 11:09:25', 0, NULL, 0, NULL, 1),
(8166, 18898, 'Navi Technology', 'Debt recovery manager ', '2022-11-16', 26000.00, '2024-03-03', 26000.00, 'Bellanduru', '1', '1 years 3 months', ' Need to get better growth ', 1, '2024-05-04 12:14:49', 0, NULL, 0, NULL, 1),
(8167, 18902, 'care health', 'senior agency manager', '2023-03-10', 30000.00, '2023-09-13', 30000.00, 'chennai', '1', '0 years 6 months', ' Personal ', 1, '2024-05-05 12:56:40', 0, NULL, 0, NULL, 1),
(8168, 18911, 'triton it solutions', 'product engineer', '2023-02-01', 10.00, '2024-03-30', 10000.00, 'chennai', '1', '1 years 1 months', ' Salary issue ', 1, '2024-05-06 05:27:02', 0, NULL, 0, NULL, 1),
(8169, 18915, 'Kaaylabs', 'Chennai', '2023-06-01', 6.00, '2024-05-06', 1.00, 'Chennai', '1', '0 years 11 months', ' Personal reason', 1, '2024-05-06 05:57:33', 0, NULL, 0, NULL, 1),
(8170, 18901, 'Adarsh matric higher secondary school ', 'Sales demonstrator, facilitator, office executive ', '2022-09-14', 13000.00, '1970-01-01', 18000.00, 'Tirupattur ', '2', '1 years 7 months', ' Salary issues ', 1, '2024-05-06 05:59:07', 0, NULL, 0, NULL, 1),
(8171, 18922, 'E square system ', 'Sales and service ', '2016-05-06', 30000.00, '2018-05-06', 20000.00, 'Chennai ', '1', '2 years 0 months', ' ', 1, '2024-05-06 06:07:31', 0, NULL, 0, NULL, 1),
(8172, 18905, 'Innov source Private Limited ', 'Executive ', '2023-01-19', 23000.00, '2024-01-27', 23000.00, 'Guindy ', '1', '1 years 0 months', ' Innove source Private Limited company closes soon due to that I resigned the company. And I needed 2 months of leave due to my engagement at Rajasthan. ', 1, '2024-05-06 07:13:24', 0, NULL, 0, NULL, 1),
(8173, 18930, 'Innovsource', 'Backend Executive', '2022-01-07', 10.00, '2024-02-06', 22000.00, 'Bengaluru', '1', '2 years 0 months', ' Company got shifted', 1, '2024-05-06 07:39:14', 0, NULL, 0, NULL, 1),
(8174, 18930, 'Innovsource', 'Backend executive', '2022-12-07', 22.00, '2024-02-07', 22.00, 'Bengaluru', '1', '1 years 2 months', 'Company got shifted', 1, '2024-05-06 07:40:09', 0, NULL, 0, NULL, 1),
(8175, 18928, 'Kun hyundai', 'Web sales', '2020-02-14', 30000.00, '2022-11-20', 30000.00, 'Anna Nagar', '1', '2 years 9 months', ' Due to salary', 1, '2024-05-06 07:43:25', 0, NULL, 0, NULL, 1),
(8176, 18931, 'Star health insurance ', 'Aminjakarai', '2023-06-01', 15000.00, '2024-05-04', 15000.00, 'Nelson manickam road ', '1', '0 years 11 months', ' Timing and no proper rest room facilities and food cabin.', 1, '2024-05-06 08:15:37', 0, NULL, 0, NULL, 1),
(8177, 18932, 'HDB finance', 'Salary issue', '2022-08-08', 14500.00, '1970-01-01', 19000.00, 'G.p road ', '2', '1 years 8 months', ' Salary issue', 1, '2024-05-06 08:57:05', 0, NULL, 0, NULL, 1),
(8178, 18933, 'HDB financial services ', 'Salary issue', '2022-09-07', 14500.00, '2024-03-05', 19000.00, 'Gp road ', '1', '1 years 5 months', ' Salary issue', 1, '2024-05-06 08:58:38', 0, NULL, 0, NULL, 1),
(8179, 18934, 'Thinksynq solution pvt.ltd ', 'Customer support and sales executive ', '2023-09-05', 15000.00, '2024-03-02', 15000.00, 'R.T.nagar', '1', '0 years 5 months', ' I want change my work environment, and take on more responsibilities. ', 1, '2024-05-06 09:13:03', 0, NULL, 0, NULL, 1),
(8180, 18938, 'go digit', 'sales excutive', '2022-03-01', 25000.00, '2024-04-30', 27000.00, 'koramangala', '1', '2 years 1 months', ' ', 1, '2024-05-06 10:00:21', 0, NULL, 0, NULL, 1),
(8181, 18941, 'Hdb financial services/hdfc bank ', 'Sales Executive ', '2022-09-21', 12000.00, '2023-12-15', 12000.00, 'Coimbatore ', '1', '1 years 2 months', ' Professional Growth ', 1, '2024-05-06 12:35:12', 0, NULL, 0, NULL, 1),
(8182, 18941, 'Byjus', 'Business Development Associate ', '2023-12-26', 33000.00, '1970-01-01', 33000.00, 'Chennai ', '2', '0 years 4 months', 'Professional Growth ', 1, '2024-05-06 12:36:08', 0, NULL, 0, NULL, 1),
(8183, 18953, 'Business insight review ', 'Marketing executive ', '2024-05-10', 18000.00, '1970-01-01', 18000.00, 'Bangalore madiwala', '2', '0 years 0 months', ' It is an start up company and in this company the salary was delaying 3 to 5 days so wa left company ', 1, '2024-05-07 05:24:28', 0, NULL, 0, NULL, 1),
(8184, 18957, 'Ovantica tellecalling', 'Customer support and telesales ', '2022-03-09', 15.50, '2022-12-07', 12.50, 'East Tambaram ', '1', '0 years 8 months', ' Salary dealy and family issues ', 1, '2024-05-07 05:24:38', 0, NULL, 0, NULL, 1),
(8185, 18954, 'Business insight reviews ', 'Marketing executive ', '2023-06-02', 15000.00, '2024-04-30', 17000.00, 'Domluru ', '1', '0 years 10 months', ' It is an Star up company and this company salary was not getting on proper time ', 1, '2024-05-07 05:30:06', 0, NULL, 0, NULL, 1),
(8186, 18970, 'icici bank', 'e-relationship manager', '2022-10-03', 21954.00, '1970-01-01', 26000.00, 'chennai', '2', '1 years 7 months', ' Looking for better Opportunity where i can show my knowledge and Skills what i Learned till now.', 1, '2024-05-07 06:37:53', 0, NULL, 0, NULL, 1),
(8187, 18977, 'Bank bazaar ', 'Customer relationship officer ', '2022-11-09', 15000.00, '2024-03-01', 20000.00, 'Ambattur ', '1', '1 years 3 months', ' Family financial problems ', 1, '2024-05-07 07:08:21', 0, NULL, 0, NULL, 1),
(8188, 18979, 'CREDTACCESS GRAMEEN LIMITED', 'SENIOR EXECUTIVE ', '2014-08-01', 5000.00, '1970-01-01', 24730.00, 'NANDANAM', '2', '9 years 9 months', ' Improve my sales products in other company', 1, '2024-05-07 07:17:00', 0, NULL, 0, NULL, 1),
(8189, 18978, 'Credit access grameen ltd', 'sales', '2018-08-01', 13500.00, '2023-09-30', 23600.00, 'thitvallur', '1', '5 years 1 months', 'growth', 108, '2024-05-07 01:29:28', 0, NULL, 0, NULL, 1),
(8190, 18986, 'Max Life Insurance ', 'Deputy Manager ', '2022-11-05', 35000.00, '2024-06-02', 35000.00, '1.5', '1', '1 years 6 months', ' Better opportunities and growth', 1, '2024-05-07 09:42:40', 0, NULL, 0, NULL, 1),
(8191, 18990, 'Simpliaxis pvt ltd ', 'Operating executive ', '2023-04-10', 25000.00, '2023-08-31', 25000.00, 'HSR layout ', '1', '0 years 4 months', ' Due to personal reasons ', 1, '2024-05-07 10:11:55', 0, NULL, 0, NULL, 1),
(8192, 18995, 'Royal Sundaram ', 'Backend process ', '2020-12-15', 15000.00, '2023-11-15', 18000.00, 'Nungambakkam ', '1', '2 years 11 months', ' Personal reasons ', 1, '2024-05-07 02:46:39', 0, NULL, 0, NULL, 1),
(8193, 19003, 'Human cloud soft', 'React developer intern', '2023-04-03', 12000.00, '2024-02-29', 12000.00, 'Chennai ', '1', '0 years 10 months', ' Contract finished ', 1, '2024-05-08 05:35:44', 0, NULL, 0, NULL, 1),
(8194, 19013, 'infosys', 'system engineer', '2021-05-17', 21300.00, '2022-09-14', 2.83, 'mysore', '1', '1 years 3 months', ' Some family issues', 1, '2024-05-08 06:10:11', 0, NULL, 0, NULL, 1),
(8195, 19018, 'magzter', 'test engineer', '2024-06-18', 50000.00, '2024-06-14', 50000.00, 'chennai', '1', '0 years 0 months', ' Moveing fullstack developer', 1, '2024-05-08 06:16:36', 0, NULL, 0, NULL, 1),
(8196, 19019, 'Nutz technovation ', 'Junior developer', '2023-05-01', 20000.00, '2024-05-01', 20000.00, 'Erode', '1', '1 years 0 months', ' Salary issue', 1, '2024-05-08 06:40:42', 0, NULL, 0, NULL, 1),
(8197, 19025, 'Reliance nipon insurance Ltd ', 'Senior Relationship manager ', '2023-11-08', 23333.00, '2024-05-31', 19000.00, 'M.g Road, Bangalore ', '1', '0 years 6 months', ' Less CTC ', 1, '2024-05-08 09:40:07', 0, NULL, 0, NULL, 1),
(8198, 19026, 'Ideal systems ', 'Executive Manager ', '2022-07-01', 15000.00, '2024-05-15', 25000.00, 'TRIVANDRUM', '1', '1 years 10 months', ' Personal ', 1, '2024-05-08 10:53:40', 0, NULL, 0, NULL, 1),
(8199, 19026, 'Star security & placement ', 'Field office Manager ', '2019-06-01', 13000.00, '2021-12-31', 17000.00, 'TRIVANDRUM', '1', '2 years 6 months', 'Went to Dubai', 1, '2024-05-08 10:55:46', 0, NULL, 0, NULL, 1),
(8200, 19026, 'Smc insurance brokers pvt Ltd', 'Customer Relationship Manager ', '2017-03-01', 12000.00, '2019-03-01', 13000.00, 'TRIVANDRUM', '1', '2 years 0 months', 'Due to Covid time', 1, '2024-05-08 10:57:09', 0, NULL, 0, NULL, 1),
(8201, 19029, 'Star health and allied insurance company ', 'Telecaller ', '2023-08-07', 15700.00, '2024-03-23', 15700.00, 'Bangalore ', '1', '0 years 7 months', ' Due to some health issue ', 1, '2024-05-08 01:24:34', 0, NULL, 0, NULL, 1),
(8202, 19063, 'Kgisl ', 'Business Development Associate ', '2023-04-12', 360000.00, '2024-04-15', 360000.00, 'Chennai ', '1', '1 years 0 months', 'I want to change my career ', 1, '2024-05-09 06:42:22', 0, NULL, 0, NULL, 1),
(8203, 18969, 'ICIC Prudential life insurance ', 'Unit manager', '2023-01-07', 35000.00, '2023-05-01', 25000.00, 'Bangalore ', '1', '0 years 3 months', ' Medical issue ', 1, '2024-05-09 09:39:55', 0, NULL, 0, NULL, 1),
(8204, 16168, 'aie cars', 'telle caller', '2020-01-07', 12000.00, '2021-12-31', 13000.00, 'anna nagar', '1', '1 years 11 months', ' ', 1, '2024-05-09 10:56:59', 0, NULL, 0, NULL, 1),
(8205, 19089, 'gemcaps ', 'ar caller ', '2023-01-03', 18000.00, '2024-03-05', 18000.00, 'madu ', '1', '1 years 2 months', ' ', 1, '2024-05-09 11:10:02', 0, NULL, 0, NULL, 1),
(8206, 19094, 'Hdb financial services', 'BDE ', '2021-05-07', 18000.00, '2023-04-14', 18000.00, 'Coimbatore ', '1', '1 years 11 months', ' I\'m not intrest in field work so I will relived this job ', 1, '2024-05-10 04:32:34', 0, NULL, 0, NULL, 1),
(8207, 19101, 'equitas small finance bank', 'relationship manager', '2020-02-14', 15000.00, '2023-05-02', 28000.00, 'gummidipoondi ', '1', '3 years 2 months', ' Higher study ', 1, '2024-05-10 05:15:44', 0, NULL, 0, NULL, 1),
(8208, 19131, 'Mphasis ', 'Dot net developer ', '2023-09-07', 16500.00, '2024-03-06', 21500.00, 'Hyderabad ', '1', '0 years 5 months', ' I have been assigned to a administration desktop support due to lack of projects so for my future I resigned my job to continue with the it role ', 1, '2024-05-10 07:30:21', 0, NULL, 0, NULL, 1),
(8209, 19137, 'HCLTECH', 'Graduate Engineer Trainee', '2022-09-15', 275000.00, '2024-02-29', 325000.00, 'Nagpur', '1', '1 years 5 months', 'My Mother is under medication. For that I had relieved from hcl. ', 1, '2024-05-10 09:41:17', 0, NULL, 0, NULL, 1),
(8210, 19138, 'Cogent E Service Prvt Limited ', 'CSA', '2022-05-02', 15500.00, '2023-06-08', 15500.00, 'Mangaluru', '1', '1 years 1 months', ' Better Opportunities ', 1, '2024-05-10 10:50:56', 1, '2024-05-10 10:51:50', 0, NULL, 1),
(8211, 19144, 'ktc plastic and chemicals', 'crm', '2023-03-20', 21000.00, '1970-01-01', 21000.00, 'chennai', '2', '1 years 1 months', ' carrer growth', 1, '2024-05-11 04:37:41', 0, NULL, 0, NULL, 1),
(8212, 19169, 'BlueBase Software services ', 'Junior Software Developer-PHP Developer ', '2024-05-11', 15000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '0 years 0 months', ' Career growth ', 1, '2024-05-11 05:55:34', 0, NULL, 0, NULL, 1),
(8213, 19173, 'Flipkart ', 'Team Leader ', '2023-11-01', 30000.00, '2024-04-17', 30000.00, 'Urappakam, Chennai ', '1', '0 years 5 months', ' Internship completed', 1, '2024-05-11 06:16:33', 0, NULL, 0, NULL, 1),
(8214, 19178, 'MyTVS', 'Executive', '2021-10-13', 12000.00, '2022-03-31', 12000.00, 'Chennai', '1', '0 years 5 months', ' Relieved to pursue post graduation. ', 1, '2024-05-11 06:37:20', 0, NULL, 0, NULL, 1),
(8215, 19182, 'Iswarya ', 'Web designing ', '2024-05-01', 15000.00, '2024-05-15', 20000.00, 'CHENNAI', '1', '0 years 0 months', ' ', 1, '2024-05-11 06:58:15', 0, NULL, 0, NULL, 1),
(8216, 19185, 'Taurus BPO ', 'Customer support executive ', '2022-09-11', 15000.00, '2024-02-29', 20000.00, 'Murugeshpalaya', '1', '1 years 8 months', ' Company close ', 1, '2024-05-11 07:14:48', 0, NULL, 0, NULL, 1),
(8217, 19197, 'HDB Financial Services ', 'Junior Officer Processing ', '2022-12-28', 14700.00, '1970-01-01', 14700.00, 'Commerzone IT Park, Porur', '2', '1 years 4 months', 'Currently my wife is pregnant, hence she Is unable to work right now and With my current salary we are unable to proceed further in life. Considering all this and our future I have decided to reliev the job.', 1, '2024-05-11 01:12:19', 0, NULL, 0, NULL, 1),
(8218, 19203, 'Enlist Management ', 'CRO', '2023-03-01', 13800.00, '2024-04-24', 18000.00, 'Bangalore ', '1', '1 years 1 months', ' No Hike In Salary And No Growth ', 1, '2024-05-13 05:24:09', 0, NULL, 0, NULL, 1),
(8219, 19208, 'Enlist Management ', 'CRO', '2022-12-12', 13500.00, '2024-04-24', 18000.00, 'Kudlugate ', '1', '1 years 4 months', ' Due to No Growth ', 1, '2024-05-13 06:32:50', 0, NULL, 0, NULL, 1),
(8220, 19209, 'First systems ', 'Inside sales representative ', '2024-01-01', 14000.00, '2024-05-17', 14000.00, 'Perungudi ', '1', '0 years 4 months', 'My previous company is start-up company so employees growth less then 10 employees below so that\'s a reason of relieving that job', 1, '2024-05-13 07:22:43', 0, NULL, 0, NULL, 1),
(8221, 19211, 'Vindhya E-infomedia pvt Ltd ', 'HR Executive ', '2022-05-21', 7.00, '2023-08-03', 24000.00, 'Chennai', '1', '1 years 2 months', ' ', 1, '2024-05-13 07:24:04', 0, NULL, 0, NULL, 1),
(8222, 19202, 'Byju\'s think and learn', 'Telecaller ', '2022-04-05', 1.00, '2022-10-13', 1.00, 'Bangalore ', '1', '0 years 6 months', ' Contract basis ', 1, '2024-05-13 08:23:56', 0, NULL, 0, NULL, 1),
(8223, 19213, 'travix ', 'customer support ', '2018-04-02', 17000.00, '2019-04-03', 27000.00, 'Bangalore', '1', '1 years 0 months', ' personal ', 1, '2024-05-13 08:27:00', 0, NULL, 0, NULL, 1),
(8224, 19214, 'Wiro', 'Quality Control ', '2022-06-14', 16000.00, '2023-12-20', 18500.00, 'Sriperumbudur ', '1', '1 years 6 months', '1 year complete ', 1, '2024-05-13 11:16:12', 0, NULL, 0, NULL, 1),
(8225, 19201, 'Just in time ', 'Tele sales agent ', '2022-05-04', 7.00, '2023-12-11', 33000.00, 'Rajajinagar ', '1', '1 years 7 months', ' Marriage ', 1, '2024-05-13 12:26:23', 0, NULL, 0, NULL, 1),
(8226, 19218, 'sarathy geotech and Engineering ser pvt ltd', 'jr. accountant', '2023-02-01', 15000.00, '2023-07-01', 15500.00, 'bangalore', '1', '0 years 5 months', 'Due to health issues  ', 1, '2024-05-14 04:59:06', 0, NULL, 0, NULL, 1),
(8227, 19219, 'Axis Bank ', 'Sales officer ', '2023-11-14', 21000.00, '2024-02-07', 21000.00, 'Kodambakkam ', '1', '0 years 2 months', ' Health issues ', 1, '2024-05-14 05:05:35', 0, NULL, 0, NULL, 1),
(8228, 19220, 'standard chartered', 'client care executive', '2022-11-21', 20700.00, '2024-05-16', 23000.00, 'nungabakkam', '1', '1 years 5 months', ' As im purusing mba i have classes on sunday my week off are in weekdays', 1, '2024-05-14 05:32:12', 0, NULL, 0, NULL, 1),
(8229, 19221, 'Altruist technology ', 'Relationship manager ', '2022-04-30', 20000.00, '2024-01-07', 25000.00, 'Gbplayaya', '1', '1 years 8 months', ' Better opportunity ', 1, '2024-05-14 06:28:57', 0, NULL, 0, NULL, 1),
(8230, 19231, 'Jv enterprise ', 'Manager', '2020-12-01', 10000.00, '2024-05-20', 13000.00, 'Vellore ', '2', '3 years 5 months', ' Experience and salary ', 1, '2024-05-14 01:34:28', 0, NULL, 0, NULL, 1),
(8231, 7928, 'Sfhl', 'Associate ', '2020-06-17', 2018.00, '2023-10-18', 16000.00, 'Chennai', '1', '3 years 4 months', ' Career update', 1, '2024-05-15 05:29:00', 0, NULL, 0, NULL, 1),
(8232, 19239, 'Cameo Corporate Services Limited', 'Telecaller ', '2024-01-01', 17645.00, '2024-04-30', 15680.00, 'Mount Road', '1', '0 years 3 months', 'Freelaser ', 1, '2024-05-15 05:36:51', 0, NULL, 0, NULL, 1),
(8233, 19238, 'star health insurance ', 'officers ', '2022-05-10', 20000.00, '2023-08-31', 22000.00, 'royepetta', '1', '1 years 3 months', ' mother health issue', 1, '2024-05-15 05:45:24', 0, NULL, 0, NULL, 1),
(8234, 19237, 'Teamlease service limited ', 'Telecaller ', '2023-09-13', 15000.00, '2023-10-21', 15000.00, 'Tambaram ', '1', '0 years 1 months', ' ', 1, '2024-05-15 06:08:47', 0, NULL, 0, NULL, 1),
(8235, 19244, 'Upgrade ', 'Process Associate ', '2021-06-02', 30.00, '2023-08-31', 23000.00, 'Avadi', '1', '2 years 2 months', ' MBA EXAMS STARTED ', 1, '2024-05-15 07:17:40', 0, NULL, 0, NULL, 1),
(8236, 19252, 'rubus digital pvt ltd', 'lead generation', '2022-06-01', 22000.00, '2023-10-09', 30000.00, 'hyderabad', '1', '1 years 4 months', 'every  Salary was delayed for 1-2 months', 1, '2024-05-16 05:29:42', 0, NULL, 0, NULL, 1),
(8237, 19251, 'Jubilant Food Works ', 'Assistant manager ', '2023-05-10', 18000.00, '1970-01-01', 22000.00, 'Chennai ', '2', '1 years 0 months', 'Health issues and necessary things not provided, Work life not balanced not possible ', 1, '2024-05-16 06:50:53', 0, NULL, 0, NULL, 1),
(8238, 19256, 'Star health insurance ', 'Telecaller', '2024-02-23', 14000.00, '2024-05-03', 14000.00, 'Ekkatutangal', '1', '0 years 2 months', ' Changing our aM', 1, '2024-05-16 10:45:12', 0, NULL, 0, NULL, 1),
(8239, 19257, 'Q connect', 'Costumer support', '2021-09-07', 18000.00, '2022-11-28', 21000.00, 'Banglore', '1', '1 years 2 months', ' Location ', 1, '2024-05-16 11:00:22', 1, '2024-05-16 11:00:57', 0, NULL, 1),
(8240, 19262, 'amazon', 'associate', '2020-06-16', 180000.00, '2020-12-31', 180000.00, 'kolkata', '1', '0 years 6 months', ' I got better offer', 1, '2024-05-16 06:23:20', 0, NULL, 0, NULL, 1),
(8241, 19262, 'vodafone uk', 'associate', '2021-01-04', 250000.00, '2022-03-31', 250000.00, 'ahmedabad', '1', '1 years 2 months', 'The employees were not friendly , the work culture was poor', 1, '2024-05-16 06:25:57', 0, NULL, 0, NULL, 1),
(8242, 19266, 'Trayee business solutions pvt ltd ', 'Processing executive ', '2022-11-15', 12300.00, '2023-12-08', 12300.00, 'Chennai', '1', '1 years 0 months', 'Trayee business solutions pvt ltd company was relocating to trichy ', 1, '2024-05-17 05:56:02', 0, NULL, 0, NULL, 1),
(8243, 19269, 'Sidharth housing ', 'BDE', '2023-02-09', 25000.00, '2024-03-16', 25000.00, 'Chennai', '1', '1 years 1 months', ' Career growth ', 1, '2024-05-17 06:50:50', 0, NULL, 0, NULL, 1),
(8244, 19269, 'Doshi housing ', 'BDE', '2021-09-16', 18000.00, '2023-02-08', 25000.00, 'Chennai', '1', '1 years 4 months', 'Internal transfer ', 1, '2024-05-17 06:53:46', 0, NULL, 0, NULL, 1),
(8245, 19269, 'Teamlease ', 'CRM', '2020-10-08', 18000.00, '2021-07-10', 25000.00, 'Chennai', '1', '0 years 9 months', 'Contact completed.', 1, '2024-05-17 06:59:37', 0, NULL, 0, NULL, 1),
(8246, 19269, 'Thinksynq solutions ', 'Quality analyst ', '2017-05-05', 8000.00, '2020-08-08', 25000.00, 'Chennai', '1', '3 years 3 months', 'Due to covid 19 ', 1, '2024-05-17 07:01:53', 0, NULL, 0, NULL, 1),
(8247, 19265, 'sandeep and associate', 'employee', '2022-08-08', 12000.00, '2024-02-29', 18000.00, 't nagar', '1', '1 years 6 months', ' carrer growth', 1, '2024-05-17 07:45:32', 0, NULL, 0, NULL, 1),
(8248, 19274, 'PNB MetLife India Insurance Company Limited', 'R m ', '2022-11-30', 20000.00, '1970-01-01', 30000.00, 'Delhi', '2', '1 years 5 months', 'personal reason', 1, '2024-05-17 10:04:03', 0, NULL, 0, NULL, 1),
(8249, 19278, 'new opportunity consultancy', 'ro', '2023-09-09', 15000.00, '2024-02-12', 15000.00, 'dharmapuri', '1', '0 years 5 months', ' carrer growth', 1, '2024-05-17 10:45:42', 0, NULL, 0, NULL, 1),
(8250, 19282, 'India cements capital ltd', 'Asm', '2023-03-01', 23000.00, '2024-04-23', 23000.00, 'Hyderabad ', '1', '1 years 1 months', ' ', 1, '2024-05-17 07:42:43', 0, NULL, 0, NULL, 1),
(8251, 19282, 'India cements capital ltd', 'Asm', '2023-03-01', 23000.00, '2024-04-23', 23000.00, 'Hyderabad ', '1', '1 years 1 months', 'Salary issu', 1, '2024-05-17 07:42:44', 0, NULL, 0, NULL, 1),
(8252, 19284, '2nd chance ', 'manager', '2023-12-23', 14000.00, '2024-05-15', 14000.00, 'karaikal', '1', '0 years 4 months', 'Looking for an career in sales ', 1, '2024-05-18 05:10:48', 0, NULL, 0, NULL, 1),
(8253, 19288, 'gala', 'merchandiser', '2023-11-07', 56750.00, '2024-04-25', 681000.00, 'ajman uae', '1', '0 years 5 months', 'Family issue', 1, '2024-05-18 05:42:59', 0, NULL, 0, NULL, 1),
(8254, 19290, 'Redmax pharma', 'Field work ', '2022-10-14', 15000.00, '2023-12-31', 15000.00, 'Pallavaram ', '1', '1 years 2 months', 'I\'m not interested in field work ', 1, '2024-05-18 06:10:28', 0, NULL, 0, NULL, 1),
(8255, 19291, 'Cardiotrack pvt ltd', 'Account manager', '2024-02-05', 68395.00, '2024-04-04', 68395.00, 'Vijayanagar', '1', '0 years 1 months', ' Company asked me to move to Ahmedabad which I was not ready ', 1, '2024-05-18 06:25:28', 0, NULL, 0, NULL, 1),
(8256, 19291, 'Cleartax', 'Leas generation associate ', '2022-03-02', 38695.00, '2023-06-30', 45622.00, 'Bommanhalli', '1', '1 years 3 months', 'Got laid off', 1, '2024-05-18 06:27:57', 0, NULL, 0, NULL, 1),
(8257, 19291, 'Docsapp', 'Inside sales executive', '2017-03-05', 33380.00, '2019-10-02', 35588.00, 'Domlur', '1', '2 years 6 months', 'Process merged with medibuddy', 1, '2024-05-18 06:33:30', 0, NULL, 0, NULL, 1),
(8258, 19291, 'Meril life science ', 'Relationship officer', '2013-11-01', 28000.00, '2017-03-04', 32650.00, 'Gujarat', '1', '3 years 4 months', 'Worked for 3 plus years, quit the job for better growth', 1, '2024-05-18 06:35:56', 0, NULL, 0, NULL, 1),
(8259, 19291, 'Microlabs', 'Sales officer', '2010-08-07', 23600.00, '2013-09-10', 27000.00, 'Trivandrum', '1', '3 years 1 months', 'When joined I was looking after trivandrum disctrict, latter on got promoted as Asm for 3 districts but company dropped theirs sales region', 1, '2024-05-18 06:38:24', 0, NULL, 0, NULL, 1),
(8260, 19289, 'access', 'quality analyst', '2022-11-15', 12500.00, '2023-11-02', 15000.00, 'ambatur', '1', '0 years 11 months', ' Salary issuses', 1, '2024-05-18 06:41:24', 0, NULL, 0, NULL, 1),
(8261, 19293, 'Attasserial ', 'Pathanamthitta ', '2022-04-01', 10.00, '2023-11-30', 20.00, 'Kerala ', '1', '1 years 7 months', ' Better Job', 1, '2024-05-19 04:44:14', 0, NULL, 0, NULL, 1),
(8262, 19292, 'Cholamandalam Investment and Finance pvt Ltd ', 'CRM and BRS', '2023-03-06', 15500.00, '2024-03-30', 15500.00, 'Chennai', '1', '1 years 2 months', ' No leave ', 1, '2024-05-20 05:00:10', 0, NULL, 0, NULL, 1),
(8263, 19296, 'Bankbazaar', 'Customer relationship officer', '2021-03-03', 15000.00, '2022-03-31', 18000.00, 'Ambattur', '1', '1 years 0 months', ' I have completed my graduation.', 1, '2024-05-20 05:12:01', 0, NULL, 0, NULL, 1),
(8264, 19296, 'Aditya Birla capital', 'Virtual relationship manager ', '2022-09-02', 18000.00, '2023-06-24', 18000.00, 'Ambattur ', '1', '0 years 9 months', 'Got a better offer', 1, '2024-05-20 05:14:10', 0, NULL, 0, NULL, 1),
(8265, 19296, 'Vakilsearch', 'Senior business advisor', '2023-05-31', 25500.00, '1970-01-01', 25500.00, 'Ambattur ', '2', '0 years 11 months', 'Relocating', 1, '2024-05-20 05:15:34', 0, NULL, 0, NULL, 1),
(8266, 19297, 'Haier', 'Salesperson ', '2024-01-01', 15000.00, '2024-03-31', 15000.00, 'Broadway ', '1', '0 years 2 months', ' ', 1, '2024-05-20 05:33:54', 0, NULL, 0, NULL, 1),
(8267, 19300, 'ICICI Bank ', 'Executive ', '2023-04-10', 18000.00, '2024-05-15', 18000.00, 'Koramangala ', '1', '1 years 1 months', ' Due to personal reason', 1, '2024-05-20 06:24:19', 0, NULL, 0, NULL, 1),
(8268, 19301, 'ICICI Bank', 'Sale excutive ', '2023-10-03', 15500.00, '2024-05-17', 15500.00, 'Chennai ', '1', '0 years 7 months', 'Long distance ', 1, '2024-05-20 06:40:11', 0, NULL, 0, NULL, 1),
(8269, 19306, 'Million I Technology Pvt Ltd', 'Trainee software engineer ', '2023-03-06', 15000.00, '2024-03-20', 15000.00, 'Chennai', '1', '1 years 0 months', ' Career growth ', 1, '2024-05-20 04:23:22', 0, NULL, 0, NULL, 1),
(8270, 19307, 'hcl tech', 'customer service representative ', '2022-09-30', 2.73, '2024-03-04', 3.00, 'chennai', '1', '1 years 5 months', ' For career growth ', 1, '2024-05-20 06:58:09', 0, NULL, 0, NULL, 1),
(8271, 19305, 'HCL TECHNOLOGIES', 'Senior Customer Service Representative ', '2022-09-19', 273000.00, '2024-03-01', 320000.00, 'Chennai', '1', '1 years 5 months', ' For Career Growth', 1, '2024-05-21 04:07:25', 0, NULL, 0, NULL, 1),
(8272, 19311, 'Cognizant technology ', 'Process executive ', '2022-10-14', 14000.00, '1970-01-01', 16500.00, 'Chennai ', '2', '1 years 7 months', ' Carrear growth ', 1, '2024-05-21 05:33:23', 0, NULL, 0, NULL, 1),
(8273, 19315, 'wellsfargo ', 'associate operation processer', '2023-05-15', 2.71, '2024-05-14', 3.50, 'chennai', '1', '0 years 11 months', ' night shift', 1, '2024-05-21 06:32:28', 0, NULL, 0, NULL, 1),
(8274, 19321, 'Bankbazaar', 'Senior cro', '2024-05-22', 15000.00, '2024-06-15', 24000.00, 'Chennai Ambattur ', '1', '0 years 0 months', ' I like to improve my skills in different fields ', 1, '2024-05-22 03:54:03', 1, '2024-05-22 03:54:24', 0, NULL, 1),
(8275, 19324, 'EUREKA FORBES PVT LTD ', 'Customer support engineer ', '2021-09-01', 12500.00, '2024-05-31', 15000.00, 'Coimbatore ', '1', '2 years 8 months', 'I like to learn new skill for my carrier path', 1, '2024-05-22 04:17:10', 0, NULL, 0, NULL, 1),
(8276, 19323, 'Freeup', 'Catalog executive ', '2023-10-01', 18.00, '2024-04-30', 18.00, 'Koramangala ', '1', '0 years 6 months', ' Company loss', 1, '2024-05-22 04:46:42', 0, NULL, 0, NULL, 1),
(8277, 19327, 'Reliance private limited ', 'Sales', '2022-01-10', 15000.00, '2023-01-10', 15000.00, 'Thanjavur', '1', '1 years 0 months', ' Health issue ', 1, '2024-05-22 05:51:00', 0, NULL, 0, NULL, 1),
(8278, 19280, 'chegg', 'us it recruiter', '2021-05-22', 25000.00, '2022-05-03', 31000.00, 'Bhopal', '1', '0 years 11 months', ' not getting finance exposure', 1, '2024-05-22 05:59:48', 0, NULL, 0, NULL, 1),
(8279, 19328, 'PCS Global ', 'HR EXECUTIVE ', '2023-09-25', 25000.00, '2024-05-25', 25000.00, 'Kormangla ', '2', '0 years 8 months', ' Contractual ', 1, '2024-05-22 06:34:10', 0, NULL, 0, NULL, 1),
(8280, 19328, 'G7 teleservices pvt Ltd ', 'HR generalist ', '2023-05-05', 22000.00, '2023-08-04', 25000.00, 'MG Road ', '1', '0 years 2 months', 'Laid off', 1, '2024-05-22 06:36:02', 0, NULL, 0, NULL, 1),
(8281, 19328, 'Vindhya e-info media ', 'Er', '2023-01-04', 20000.00, '2023-05-04', 25000.00, 'Rajaji nagar ', '1', '0 years 4 months', 'Health issues ', 1, '2024-05-22 06:37:22', 0, NULL, 0, NULL, 1),
(8282, 19328, 'Extra marks ', 'School Relation Officer ', '2022-01-03', 23000.00, '2022-07-09', 25000.00, 'Bhubaneswar ', '1', '0 years 6 months', 'Better opportunity ', 1, '2024-05-22 06:38:34', 0, NULL, 0, NULL, 1),
(8283, 19330, 'justdial', 'telesales', '2023-03-17', 15000.00, '2023-10-22', 18000.00, 'chennai', '1', '0 years 7 months', ' ', 1, '2024-05-22 06:56:12', 0, NULL, 0, NULL, 1),
(8284, 19333, 'BCI', 'Telecaller', '2022-05-10', 12.00, '2023-12-07', 18.00, 'Chennai ', '1', '1 years 6 months', ' Timing issue ', 1, '2024-05-22 06:57:39', 0, NULL, 0, NULL, 1),
(8285, 19332, 'Bci', 'Telecaller', '2022-05-15', 12000.00, '2023-12-20', 18000.00, 'Chennai', '1', '1 years 7 months', ' Timing issue', 1, '2024-05-22 07:13:58', 0, NULL, 0, NULL, 1),
(8286, 19334, 'S.s business ', 'Telecaller ', '2023-05-01', 15000.00, '2023-12-31', 18000.00, 'Nungambakkam', '1', '0 years 7 months', ' Timing issue ', 1, '2024-05-22 07:32:38', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8287, 19336, 'exela technology', 'processor', '2022-01-21', 12000.00, '2023-11-10', 14000.00, 'guindy', '1', '1 years 9 months', 'For carrier growth', 1, '2024-05-22 09:30:18', 0, NULL, 0, NULL, 1),
(8288, 19318, 'Stats perform ', 'Data collection analyst ', '2021-03-18', 12000.00, '2024-04-15', 20000.00, 'Chennai ', '1', '3 years 0 months', ' Night shift , Health Issues', 1, '2024-05-22 01:49:51', 0, NULL, 0, NULL, 1),
(8289, 19339, 'Chennai infotech system ', 'Desktop Support technician ', '2023-05-01', 15000.00, '2024-05-05', 18000.00, 'Thiruvaanmiyur chennai ', '1', '1 years 0 months', ' Career change ', 1, '2024-05-23 04:49:03', 0, NULL, 0, NULL, 1),
(8290, 19342, 'One point one solution ', 'Sr customer relationship executive ', '2022-05-22', 15500.00, '2024-03-11', 15500.00, 'Kudlu gate ', '1', '1 years 9 months', ' Looking for better opportunity ', 1, '2024-05-23 05:05:20', 0, NULL, 0, NULL, 1),
(8291, 19340, 'Khivraj motors pvt ', 'Telecaller ', '2023-01-09', 15000.00, '1970-01-01', 15000.00, 'Mount road ', '2', '1 years 4 months', ' Looking for career growth', 1, '2024-05-23 05:05:20', 0, NULL, 0, NULL, 1),
(8292, 19341, 'One point one solution ', 'Sr customer relationship executive ', '2022-05-22', 15.00, '2024-02-08', 15.50, 'Kudlugate ', '1', '1 years 8 months', ' Medical reasons ', 1, '2024-05-23 05:08:27', 0, NULL, 0, NULL, 1),
(8293, 19345, 'rabiyathali', 'deria', '2022-01-05', 40000.00, '2024-03-20', 55000.00, 'dubai', '1', '2 years 2 months', 'Company Visa problem ', 1, '2024-05-23 06:07:32', 0, NULL, 0, NULL, 1),
(8294, 19344, 'Poorvika ', 'Customer care', '2023-09-03', 13000.00, '2024-05-31', 15000.00, 'Ekkaduthangal', '1', '0 years 8 months', ' Transfer office to banglore', 1, '2024-05-23 06:10:51', 0, NULL, 0, NULL, 1),
(8295, 19347, 'Strong vision solutions ', 'Customer relationship officer ', '2018-05-23', 16000.00, '2020-11-17', 26000.00, 'Indranagar', '1', '2 years 5 months', 'Process shut down\n', 1, '2024-05-23 07:29:50', 0, NULL, 0, NULL, 1),
(8296, 19347, 'ACE agency', 'TL', '2020-12-03', 23000.00, '2022-03-21', 26000.00, 'Shivaji nagar', '1', '1 years 3 months', ' 1st Pregnancy ', 1, '2024-05-23 07:33:10', 0, NULL, 0, NULL, 1),
(8297, 19347, 'Passion people consultancy ', 'Quality analyst ', '2023-02-23', 24000.00, '2023-08-02', 26000.00, 'Gurgaon ', '1', '0 years 5 months', 'Husband\'s accident ', 1, '2024-05-23 07:35:37', 0, NULL, 0, NULL, 1),
(8298, 19349, 'Vakilsearch', 'Relationship manager', '2023-06-11', 19000.00, '1970-01-01', 19000.00, 'Chennai', '2', '0 years 11 months', ' Relocating ', 1, '2024-05-23 08:56:46', 0, NULL, 0, NULL, 1),
(8299, 19350, 'Justdial ', 'Telemarketing Executive ', '2022-03-28', 20000.00, '2022-11-16', 20000.00, 'Chennai ', '1', '0 years 7 months', ' Family issues ', 1, '2024-05-23 10:01:48', 0, NULL, 0, NULL, 1),
(8300, 19352, 'D mart', 'Traine Department Manager ', '2023-11-23', 30000.00, '1970-01-01', 30000.00, 'Bangalore ', '2', '0 years 6 months', ' ', 1, '2024-05-23 03:11:48', 0, NULL, 0, NULL, 1),
(8301, 19360, 'Vizza insurance broking services pvt ltd', 'Team leader', '2021-01-03', 11000.00, '1970-01-01', 23000.00, 'Kodambakkam', '2', '3 years 4 months', ' Office shifted to t nagar', 1, '2024-05-24 06:26:57', 0, NULL, 0, NULL, 1),
(8302, 19358, 'Fast track call taxi', 'Customer call Excutier', '2023-12-14', 15000.00, '2024-03-29', 15000.00, 'Chennai', '1', '0 years 3 months', 'Company not comfortable', 1, '2024-05-24 06:37:13', 0, NULL, 0, NULL, 1),
(8303, 19363, 'wns global pvt ltd ', 'sr. associate operations', '2022-08-09', 36000.00, '2024-05-25', 40000.00, 'chennai porur', '2', '1 years 9 months', 'Carrier growth ', 1, '2024-05-25 04:58:43', 0, NULL, 0, NULL, 1),
(8304, 19364, 'Hdfc bank', 'Assistant manager', '2022-12-23', 12000.00, '2024-04-03', 275000.00, 'Chennai', '1', '1 years 3 months', ' Salary issue', 1, '2024-05-25 05:07:41', 0, NULL, 0, NULL, 1),
(8305, 19368, 'rrd', 'document specialists', '2023-02-14', 15000.00, '2024-03-01', 15000.00, 'chennai', '1', '1 years 0 months', ' Contract period over', 1, '2024-05-25 06:03:40', 0, NULL, 0, NULL, 1),
(8306, 19373, 'TATA AIA LIFE INSURANCE ', 'Corporate  account  manager', '2023-06-19', 25000.00, '1970-01-01', 25000.00, 'Chennai', '2', '0 years 11 months', '  Salary issue ', 1, '2024-05-25 06:21:13', 0, NULL, 0, NULL, 1),
(8307, 19369, 'justdial', 'telemarketing', '2022-04-27', 11000.00, '2024-04-10', 18000.00, 'little mount ', '1', '1 years 11 months', ' Health Issue', 1, '2024-05-25 06:34:06', 0, NULL, 0, NULL, 1),
(8308, 19375, 'Accenture ', 'Transaction processing representative ', '2022-07-25', 12500.00, '2023-07-07', 12500.00, 'Chennai ', '1', '0 years 11 months', ' Medical issues ', 1, '2024-05-25 06:38:50', 0, NULL, 0, NULL, 1),
(8309, 19372, 'Truweight wellness pvt ltd', 'Relationship manager', '2022-09-15', 30000.00, '2024-05-28', 29000.00, 'Hsr', '1', '1 years 8 months', ' ', 1, '2024-05-25 07:02:22', 0, NULL, 0, NULL, 1),
(8310, 19379, 'Stats perform ', 'Data collection analytics ', '2023-11-22', 19000.00, '2024-04-30', 19000.00, 'Thousand lights ', '1', '0 years 5 months', ' ', 1, '2024-05-25 07:48:05', 0, NULL, 0, NULL, 1),
(8311, 19378, 'Stats performance', 'Data collection analysis', '2023-11-22', 19000.00, '2024-04-30', 19000.00, 'Thousand lights ', '1', '0 years 5 months', ' ', 1, '2024-05-25 07:48:20', 0, NULL, 0, NULL, 1),
(8312, 19376, 'Edelweiss ', 'Relationship manager ', '2022-02-22', 24000.00, '2022-07-07', 22000.00, 'Bhubaneswar ', '1', '0 years 4 months', ' Due to health issues not be continued the job', 1, '2024-05-25 08:29:38', 0, NULL, 0, NULL, 1),
(8313, 19387, 'Star health insurance/Finpact ', 'Telecaller', '2022-08-09', 10.00, '2024-02-10', 15000.00, 'T.nagar/ramapuram', '1', '1 years 6 months', ' I didn\'t get my salary on finpact company so I relieving my job star health insurance company 9 month experience while I relieving move to Carrer growth ', 1, '2024-05-27 05:52:50', 0, NULL, 0, NULL, 1),
(8314, 19389, 'Cts', 'Process executive ', '2017-08-21', 10000.00, '2018-03-23', 15000.00, 'Coimbatore ', '1', '0 years 7 months', ' Got job in bangalore so i shifted ', 1, '2024-05-27 06:02:57', 0, NULL, 0, NULL, 1),
(8315, 19392, 'Rising Pro trades LLP', 'Senior sales executive ', '2022-12-26', 16000.00, '1970-01-01', 23000.00, 'Chennai', '2', '1 years 5 months', ' Salary issue ', 1, '2024-05-27 06:05:54', 0, NULL, 0, NULL, 1),
(8316, 19390, 'Rising  Pro trades LLp', 'Senior sales executive ', '2023-01-24', 16000.00, '1970-01-01', 23000.00, 'CHENNAI', '2', '1 years 4 months', ' Salary issue ', 1, '2024-05-27 06:05:54', 0, NULL, 0, NULL, 1),
(8317, 19389, 'Aegis', 'Senior process executive ', '2019-06-19', 20000.00, '2020-02-03', 25000.00, 'Bangalore ', '1', '0 years 7 months', 'Got relationship manager role in teleperformance so i moved there', 1, '2024-05-27 06:06:53', 0, NULL, 0, NULL, 1),
(8318, 19393, 'Amman Autolinks private limited ', 'Sales manager', '2021-03-03', 30000.00, '2024-05-25', 33000.00, 'Harur', '1', '3 years 2 months', ' ', 1, '2024-05-27 06:10:50', 0, NULL, 0, NULL, 1),
(8319, 19396, 'Policy bazaar ', 'Relationship manager ', '2022-04-16', 350000.00, '2024-05-27', 350000.00, 'Domlur ', '1', '2 years 1 months', ' I thought there\'s no growth in the company ', 1, '2024-05-27 07:39:39', 0, NULL, 0, NULL, 1),
(8320, 19397, 'bankbazaar.com', 'customer relationship officer ', '2023-10-10', 15000.00, '2024-05-18', 17000.00, 'ambattur', '1', '0 years 7 months', 'due to my personal issues and for the commitments.', 1, '2024-05-27 02:14:29', 0, NULL, 0, NULL, 1),
(8321, 19404, 'IDFC First Bank Limited', 'sales officer', '2020-11-11', 13500.00, '2024-05-28', 13500.00, 'Chennai', '1', '3 years 6 months', 'For growth', 112, '2024-05-28 11:47:01', 0, NULL, 0, NULL, 1),
(8322, 19409, 'Xascom info solutions ', 'Senior Executive ', '2022-07-29', 15000.00, '1970-01-01', 2.00, 'Teynampet ', '2', '1 years 9 months', 'I\'ll take long  leave for health issue ', 1, '2024-05-28 11:08:22', 0, NULL, 0, NULL, 1),
(8323, 19412, 'Anantham retail pvt ltd', 'Crm', '2019-01-24', 9000.00, '2023-11-05', 15000.00, 'Thanjavur', '1', '4 years 9 months', ' ', 1, '2024-05-29 05:07:37', 0, NULL, 0, NULL, 1),
(8324, 19414, 'Rising corporation ', 'Sales', '2023-02-10', 5.00, '2024-06-20', 23000.00, 'Thousand light ', '1', '1 years 4 months', ' Salary issue', 1, '2024-05-29 06:06:24', 0, NULL, 0, NULL, 1),
(8325, 19413, 'matrix business services', 'executive', '2021-08-02', 12000.00, '2022-09-19', 12000.00, 'chennai', '1', '1 years 1 months', ' Father heal issue and financial issues so unable to continue the job', 1, '2024-05-29 06:07:24', 0, NULL, 0, NULL, 1),
(8326, 19413, 'novac technologies solutions', 'associate', '2023-02-16', 14500.00, '2023-09-01', 14500.00, 'chennai', '1', '0 years 6 months', 'Marriage fixed so goto my native few months ', 1, '2024-05-29 06:10:05', 0, NULL, 0, NULL, 1),
(8327, 19415, 'Rising pro trades llp ', 'Senior sales officer', '2022-12-01', 22000.00, '1970-01-01', 26000.00, 'Chennai', '2', '1 years 5 months', ' Salary issue', 1, '2024-05-29 06:10:19', 0, NULL, 0, NULL, 1),
(8328, 19413, 'eagle fleet services private linited', 'senior executive', '2023-12-11', 19500.00, '2024-05-01', 19500.00, 'chennai', '1', '0 years 4 months', 'contract period done ', 1, '2024-05-29 06:12:25', 0, NULL, 0, NULL, 1),
(8329, 19416, 'cams prvt ltd', 'senior executive officer', '2022-02-10', 15000.00, '2023-11-30', 20000.00, 'chennai', '1', '1 years 9 months', ' My personal issue ', 1, '2024-05-29 06:19:10', 0, NULL, 0, NULL, 1),
(8330, 19425, 'Blue Stream ', 'Purchase Administrator ', '2020-02-03', 3.00, '2022-12-30', 25000.00, 'Bhanshankri ', '1', '2 years 10 months', ' Location ', 1, '2024-05-29 01:09:45', 0, NULL, 0, NULL, 1),
(8331, 19429, 'Casagran', 'Customer relationship manager ', '2021-02-21', 30000.00, '2024-02-25', 32000.00, 'Chennai', '1', '3 years 0 months', ' Better prospects ', 1, '2024-05-30 05:33:08', 0, NULL, 0, NULL, 1),
(8332, 19337, 'Malappuram finance limited ', 'SR.ASST', '2021-07-09', 15000.00, '2023-09-09', 20000.00, 'Vellore ', '1', '2 years 2 months', ' Family health issues ', 1, '2024-05-30 05:43:30', 0, NULL, 0, NULL, 1),
(8333, 19432, 'Dexter Academy', 'Branch Admin', '2018-11-28', 10000.00, '2022-12-30', 14000.00, 'Thanjavur', '1', '4 years 1 months', ' Personal issues', 1, '2024-05-30 06:36:04', 0, NULL, 0, NULL, 1),
(8334, 19432, 'Airtel', 'CRE', '2022-07-01', 15000.00, '2024-01-13', 15000.00, 'Thanjavur ', '1', '1 years 6 months', 'Health issues', 1, '2024-05-30 06:37:27', 0, NULL, 0, NULL, 1),
(8335, 19431, 'HDFC bank ', 'Service engineer ', '2020-01-28', 10.00, '2023-05-15', 20000.00, 'Guindy ', '1', '3 years 3 months', ' Medical Emergency from father ', 1, '2024-05-30 06:38:41', 0, NULL, 0, NULL, 1),
(8336, 18776, 'Kent ro systems Ltd ', 'Team leader ', '2018-08-12', 27000.00, '2023-12-12', 32000.00, 'Chennai ', '1', '5 years 4 months', ' Fractured my leg', 1, '2024-05-30 06:46:29', 0, NULL, 0, NULL, 1),
(8337, 19430, 'source HOV india pvt ltd', 'Medical billing', '2015-08-15', 9000.00, '2017-04-04', 12000.00, 'tailors road', '1', '1 years 7 months', 'Marriage', 112, '2024-05-30 12:30:50', 0, NULL, 0, NULL, 1),
(8338, 19435, 'Colour Zone Paints ', 'Accountant ', '2023-01-10', 15000.00, '2024-02-15', 200000.00, 'Wayanad', '1', '1 years 1 months', 'Shifted to Bangalore ', 1, '2024-05-30 08:41:41', 0, NULL, 0, NULL, 1),
(8339, 19437, 'Star Health and Allied Insurance ', 'Medical Coder ', '2021-03-24', 16000.00, '2023-01-21', 18000.00, ' Chennai ', '1', '1 years 9 months', 'Explore more', 1, '2024-05-30 01:42:19', 0, NULL, 0, NULL, 1),
(8340, 19437, 'Private School', 'Administrative Executive ', '2023-02-01', 20000.00, '2024-05-20', 20000.00, 'Chennai', '1', '1 years 3 months', 'To Explore more ', 1, '2024-05-30 01:44:24', 0, NULL, 0, NULL, 1),
(8341, 19443, 'Axis Bank', 'Assistant manager Sales', '2023-07-24', 2.60, '2024-02-18', 2.60, 'Tiruttani', '1', '0 years 6 months', ' My Native is Tiruttani My Working Location Also Tiruttani But 2 Months Before My Father Got Transfer to Chennai I Ask My Supervisor to transfer me But He Said 2 Years Before No Transfer will Apply', 1, '2024-05-31 06:09:01', 0, NULL, 0, NULL, 1),
(8342, 19443, 'S K Browsing Point', 'Senior Sales Executive', '2021-07-01', 13.00, '2023-07-02', 16.00, 'Tiruttani', '1', '2 years 0 months', 'Salary Issue', 1, '2024-05-31 06:10:28', 0, NULL, 0, NULL, 1),
(8343, 19445, 'Fundsindia ', 'Health insurance advisor ', '2022-05-01', 18000.00, '2022-12-31', 18000.00, 'Thousand light ', '1', '0 years 7 months', ' Marriage ', 1, '2024-05-31 06:44:45', 0, NULL, 0, NULL, 1),
(8344, 19462, 'cams', 'mutal funds', '2024-06-03', 10000.00, '2024-12-15', 15000.00, 'mount road', '1', '0 years 6 months', 'sala issues\n', 1, '2024-06-03 05:16:25', 0, NULL, 0, NULL, 1),
(8345, 19470, 'Shriramlife insurance company', 'Senior executive', '2023-11-09', 17000.00, '1970-01-01', 17000.00, 'Chennai', '2', '0 years 6 months', ' ', 1, '2024-06-03 05:57:34', 0, NULL, 0, NULL, 1),
(8346, 19469, 'Shriram life insurance', 'Senior executive', '2023-08-14', 20000.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 9 months', ' Salary issue', 1, '2024-06-03 06:06:28', 0, NULL, 0, NULL, 1),
(8347, 19472, 'Tech mahindra', 'customer support', '2023-06-07', 17000.00, '2024-02-29', 17000.00, 'ethiraj salai', '1', '0 years 8 months', ' Due to marriage', 1, '2024-06-03 06:20:05', 0, NULL, 0, NULL, 1),
(8348, 19473, 'Shriram life insurance ', 'Senior executive ', '2023-05-02', 21000.00, '2024-05-17', 21000.00, 'Chennai', '1', '1 years 1 months', ' Family issue', 1, '2024-06-03 06:21:17', 0, NULL, 0, NULL, 1),
(8349, 19473, 'Shriram life insurance ', 'Chennai ', '2023-05-03', 21000.00, '2024-05-18', 21000.00, 'Chennai', '1', '1 years 0 months', 'Family issues ', 1, '2024-06-03 06:21:55', 0, NULL, 0, NULL, 1),
(8350, 19471, 'Savista Global Solutions Pvt Ltd ', 'Claim processing associate ', '2022-06-02', 10500.00, '2023-10-06', 11000.00, 'Chennai', '1', '1 years 4 months', 'Because of experience and salary increment ', 1, '2024-06-03 06:22:43', 0, NULL, 0, NULL, 1),
(8351, 19475, 'HDB FINANCIAL SERVICES', 'Senior Tele calling officer', '2022-09-06', 11000.00, '2024-07-02', 13500.00, 'Thousand lights', '1', '1 years 9 months', ' Salary issue', 1, '2024-06-03 06:54:37', 0, NULL, 0, NULL, 1),
(8352, 19474, 'HBD FINANCIAL SERVICES ', 'SENIOR TELECALLING AGENT', '2023-09-22', 13500.00, '1970-01-01', 13500.00, 'GREAMS ROAD ', '2', '0 years 8 months', 'Salary not enough ', 1, '2024-06-03 07:16:17', 0, NULL, 0, NULL, 1),
(8353, 19460, 'Finnovation tech solutions ', 'Tele caller ', '2022-05-06', 21000.00, '2023-05-31', 23000.00, 'Bangalore ', '1', '1 years 0 months', ' Family relocation ', 1, '2024-06-03 07:28:09', 0, NULL, 0, NULL, 1),
(8354, 19460, 'Finnovation tech solutions ', 'Tele sales ', '2022-05-06', 21000.00, '2023-05-31', 23000.00, 'Bangalore ', '1', '1 years 0 months', 'Family relocation ', 1, '2024-06-03 07:29:23', 0, NULL, 0, NULL, 1),
(8355, 19477, 'Kritilabs Technology ', 'IT customer support ', '2020-01-13', 10000.00, '2024-05-16', 18840.00, 'Tharamani', '1', '4 years 4 months', ' No Growth ', 1, '2024-06-03 09:21:50', 0, NULL, 0, NULL, 1),
(8356, 19478, 'travix', 'travel agent ', '2018-06-02', 17000.00, '2019-06-03', 20000.00, 'Bangalore', '1', '1 years 0 months', ' personal ', 1, '2024-06-03 11:35:06', 0, NULL, 0, NULL, 1),
(8357, 19478, 'travix', 'agent', '2018-06-02', 17000.00, '2019-06-03', 20000.00, 'Bangalore', '1', '1 years 0 months', 'personal ', 1, '2024-06-03 11:35:50', 0, NULL, 0, NULL, 1),
(8358, 19481, 'Ekal Vidyalaya Foundation of India ', 'Report Analysis ', '2019-04-05', 18000.00, '1970-01-01', 22000.00, 'Chennai ', '2', '5 years 1 months', ' ', 1, '2024-06-03 02:32:19', 0, NULL, 0, NULL, 1),
(8359, 19484, 'Macs It Com Private Limited ', 'Software Programmer ', '2020-04-01', 10000.00, '2022-03-31', 25000.00, 'Erode', '1', '1 years 11 months', ' Carrier growth ', 1, '2024-06-04 04:41:38', 0, NULL, 0, NULL, 1),
(8360, 19484, 'Core Solutions Inc', 'Senior Software Engineer ', '2022-04-04', 36000.00, '2024-03-31', 50000.00, 'Chennai ', '1', '1 years 11 months', 'New work Environment and new project development.', 1, '2024-06-04 04:43:22', 0, NULL, 0, NULL, 1),
(8361, 19496, 'Hinduja Global solutions Pvt Ltd ', 'Customer Relationship Officer', '2016-04-10', 10300.00, '2017-06-30', 20000.00, 'Banglore', '1', '8 years 2 months', ' ', 1, '2024-06-04 07:53:00', 1, '2024-06-04 07:57:57', 0, NULL, 0),
(8362, 19496, 'Hinduja Global Solutions ', 'Customer Relationship Officer', '2016-04-10', 10300.00, '2017-07-31', 20000.00, 'Banglolre ', '1', '1 years 3 months', 'For better opportunity ', 1, '2024-06-04 07:56:22', 0, NULL, 0, NULL, 1),
(8363, 19498, 'BYJUS', 'Business Development Associate', '2022-10-18', 500000.00, '2023-02-02', 500000.00, 'Bengalore', '1', '0 years 3 months', 'Medical Immergency', 1, '2024-06-04 08:41:18', 0, NULL, 0, NULL, 1),
(8364, 19501, 'Ison', 'cse', '2022-10-30', 13000.00, '2024-04-10', 13000.00, 'chennai', '1', '1 years 5 months', ' Career growth\nSalary demand', 1, '2024-06-04 10:40:24', 0, NULL, 0, NULL, 1),
(8365, 19500, 'VIZZA ', 'Sales', '2024-02-01', 15.00, '2024-05-10', 18000.00, 'Guindy ', '1', '0 years 3 months', ' ', 1, '2024-06-04 10:41:49', 0, NULL, 0, NULL, 1),
(8366, 19503, 'First source solution ', 'Medical encoding', '2019-06-11', 12000.00, '2020-02-03', 13000.00, 'Chennai ', '1', '0 years 7 months', 'Health issue', 1, '2024-06-05 05:57:08', 0, NULL, 0, NULL, 1),
(8367, 19508, 'connection point', 'telecaller', '2023-09-01', 15000.00, '2024-04-01', 15000.00, 'egmore', '1', '0 years 7 months', ' Location change', 1, '2024-06-05 06:14:23', 0, NULL, 0, NULL, 1),
(8368, 19517, 'Jai kisan fertilizer lit', 'Retail store manager ', '2022-09-01', 23333.00, '2023-12-30', 23333.00, 'H cross ', '1', '1 years 3 months', ' Health issue ', 1, '2024-06-05 06:35:45', 0, NULL, 0, NULL, 1),
(8369, 19518, 'Bharat Matrimony', 'Payment assistance', '2024-02-01', 18000.00, '2024-05-08', 18000.00, 'Guindy', '1', '0 years 3 months', 'Personal Issue', 1, '2024-06-05 06:45:48', 0, NULL, 0, NULL, 1),
(8370, 19522, 'Axis bank', 'Credit card sales', '2022-06-24', 12000.00, '2024-06-15', 14000.00, 'Chennai', '1', '1 years 11 months', ' Better salary ', 1, '2024-06-05 10:03:28', 0, NULL, 0, NULL, 1),
(8371, 19528, 'Integrated registry management services pvt ', 'Customer executive ', '2019-07-01', 12000.00, '1970-01-01', 20000.00, 'T.nagar', '2', '4 years 11 months', ' For career growth ', 1, '2024-06-06 05:34:29', 0, NULL, 0, NULL, 1),
(8372, 19529, 'Matrix Business services pvt ltd ', 'Executive ', '2023-07-10', 13000.00, '2024-05-04', 13000.00, 'Nandhanam ', '1', '0 years 9 months', 'Unfortunately my Previous company doesn\'t offer many opportunities for career advancement ', 1, '2024-06-06 05:37:13', 0, NULL, 0, NULL, 1),
(8373, 19532, 'United capital club', 'Recruiter ', '2020-03-06', 18.00, '2021-06-11', 18.00, 'T.nagar', '1', '1 years 3 months', ' For career growth  ', 1, '2024-06-06 05:51:17', 0, NULL, 0, NULL, 1),
(8374, 19526, 'CAMS', 'Customer service executive', '2021-08-01', 12500.00, '2022-01-31', 12500.00, 'Chennai Mount road ', '1', '0 years 5 months', ' Health issue', 1, '2024-06-06 06:29:54', 0, NULL, 0, NULL, 1),
(8375, 19526, 'Matrix business services India ltd', 'Executive ', '2023-03-03', 13000.00, '2024-04-05', 13000.00, 'Chennai ( Nandanam )', '1', '1 years 1 months', 'Looking to improve my career and better opportunity..', 1, '2024-06-06 06:31:46', 0, NULL, 0, NULL, 1),
(8376, 19540, 'Manoj Kumar ', 'Calling ', '2021-08-07', 25000.00, '2024-02-29', 20000.00, 'CHENNAI', '1', '2 years 6 months', ' Health hesu ', 1, '2024-06-06 06:54:19', 0, NULL, 0, NULL, 1),
(8377, 19542, 'My money mantra', 'Team lead', '2023-11-06', 21000.00, '2024-04-06', 21000.00, 'Amjikarai', '1', '0 years 5 months', ' Health issue ', 1, '2024-06-06 06:55:22', 0, NULL, 0, NULL, 1),
(8378, 19542, 'Chennai petroleum corporation limited ', 'Hr trainee(personnel) ', '2022-03-03', 12000.00, '2022-10-18', 12000.00, 'Manali', '1', '0 years 7 months', 'To take care mother ', 1, '2024-06-06 06:57:30', 0, NULL, 0, NULL, 1),
(8379, 19542, 'Institute of industrial design ', 'Inside executive ', '2021-08-08', 18000.00, '2022-02-26', 18000.00, 'Mylapore', '1', '0 years 6 months', 'Due to career growth ', 1, '2024-06-06 07:04:04', 0, NULL, 0, NULL, 1),
(8380, 19543, 'M naveen kumar ', 'Tele caller ', '2022-03-01', 13000.00, '2023-06-30', 18000.00, 'Chennai ', '1', '1 years 3 months', 'Selary issue', 1, '2024-06-06 07:26:04', 0, NULL, 0, NULL, 1),
(8381, 19550, 'Ola electric ', 'Customer support executive ', '2021-06-06', 25000.00, '2024-07-07', 25000.00, 'Kormangla ', '1', '3 years 1 months', ' Process shutdown ', 1, '2024-06-06 10:58:55', 0, NULL, 0, NULL, 1),
(8382, 19552, 'Ntt data', 'hC&INSURANCE OPERATION SENIOR REC', '2021-08-20', 16000.00, '1970-01-01', 25000.00, 'Dlf', '2', '2 years 9 months', ' ', 1, '2024-06-06 01:18:31', 0, NULL, 0, NULL, 1),
(8383, 19551, 'pink fitness', 'telesales and fitness instructor', '2022-10-30', 7000.00, '2023-11-30', 10000.00, 'chennai', '1', '1 years 1 months', ' I have worked here for part time so now i want to work for full time and i have to gain experience and more skills .', 1, '2024-06-07 04:27:17', 0, NULL, 0, NULL, 1),
(8384, 19569, 'kerala Ayurveda ltd', 'centre manager', '2023-01-10', 25000.00, '2024-06-28', 35000.00, 'hsr layiut ', '1', '1 years 5 months', ' Due to personal reason', 1, '2024-06-08 02:05:54', 0, NULL, 0, NULL, 1),
(8385, 19577, 'Shakti Horman pvt ltd ', 'Co-ordinator Customer sales', '2022-04-12', 5.00, '2024-06-05', 23000.00, 'Bangalore ', '1', '2 years 1 months', ' ', 1, '2024-06-08 05:29:35', 0, NULL, 0, NULL, 1),
(8386, 19578, 'Shakti Hormann Pvt Ltd ', 'Coordinate customer sales', '2022-04-12', 5.00, '2024-06-05', 23.00, 'Bangalore ', '1', '2 years 1 months', ' Company is going to close', 1, '2024-06-08 05:31:18', 0, NULL, 0, NULL, 1),
(8387, 19580, 'Hephzibha', 'Invensis', '2020-11-01', 15000.00, '2024-05-20', 25000.00, 'Maranahalli ', '1', '3 years 6 months', ' Because of relieving health issues so ', 1, '2024-06-08 05:52:38', 0, NULL, 0, NULL, 1),
(8388, 19582, 'Khivraj motors ', 'Customer support executive', '2023-10-16', 14000.00, '2024-04-22', 14000.00, 'Anna salai chennai', '1', '0 years 6 months', ' My mom health issues so i will go my native place', 1, '2024-06-08 06:59:04', 0, NULL, 0, NULL, 1),
(8389, 19587, 'Sriram general insurance ', 'Sales executive ', '2021-08-04', 10000.00, '1970-01-01', 14000.00, 'Chennai ', '2', '2 years 10 months', ' To develop my skillsets in some other field other sales ', 1, '2024-06-09 01:09:55', 0, NULL, 0, NULL, 1),
(8390, 19592, 'Ienergizer IT service Pvt Ltd', 'Customer executive', '2023-03-01', 18500.00, '2024-03-08', 18500.00, 'Kudlu gate', '1', '1 years 0 months', ' Health issue', 1, '2024-06-10 05:34:24', 0, NULL, 0, NULL, 1),
(8391, 19603, 'TCP INTERNATIONAL ', 'Semi voice ', '2018-06-07', 12500.00, '2020-07-08', 12500.00, 'Avadi ', '1', '2 years 1 months', 'Layoff ', 1, '2024-06-10 10:43:55', 0, NULL, 0, NULL, 1),
(8392, 19605, 'Cars24', 'Tele advisor ', '2023-11-01', 31.00, '2024-05-31', 25000.00, 'Singasandra Hosur road ', '1', '0 years 6 months', ' ', 1, '2024-06-10 10:59:29', 0, NULL, 0, NULL, 1),
(8393, 19601, 'Rapido captain care center', 'Telecaller', '2022-10-24', 17500.00, '2023-05-10', 17500.00, 'Silk board', '1', '0 years 6 months', ' Exams ', 1, '2024-06-10 11:00:27', 0, NULL, 0, NULL, 1),
(8394, 19606, 'concentrix', 'customer support rep', '2022-08-25', 25000.00, '1970-01-01', 2500.00, 'bangalore', '2', '1 years 9 months', ' i want to make my career in sales going ahead as it was my passion all along', 1, '2024-06-10 01:29:47', 0, NULL, 0, NULL, 1),
(8395, 19607, 'blackbuck zinkalogistics', 'sales excecutive', '2022-01-28', 1.00, '2023-04-17', 24500.00, 'kadubisanahalli', '1', '1 years 2 months', ' In 2023 was not shifted in bangalore yet.... was working from home could not locate at that time and my sister had an snake bite was seriouslly ill', 1, '2024-06-10 06:50:41', 0, NULL, 0, NULL, 1),
(8396, 19615, 'One point one solution', 'CRE', '2022-05-15', 16000.00, '2023-01-05', 8000.00, 'Kudlu gate', '1', '0 years 7 months', ' Further studies', 1, '2024-06-11 08:50:44', 0, NULL, 0, NULL, 1),
(8397, 19614, 'Hdfc sales', 'Loan officer', '2023-11-07', 1.00, '2024-05-05', 18.00, 'Vadapalani', '1', '0 years 5 months', ' To seek growth', 1, '2024-06-11 09:03:32', 0, NULL, 0, NULL, 1),
(8398, 19620, 'Ces', 'HRBP Associate', '2022-06-01', 350000.00, '2023-02-01', 550000.00, 'Padur', '1', '0 years 8 months', 'Family reasons', 1, '2024-06-11 08:55:51', 0, NULL, 0, NULL, 1),
(8399, 19626, 'Accenture ', 'Process associate ', '2018-07-15', 17000.00, '2019-08-30', 17000.00, 'Bagmane tech park', '1', '1 years 1 months', ' Contract ', 1, '2024-06-12 06:20:53', 0, NULL, 0, NULL, 1),
(8400, 19627, 'Casagrand builders private limited', 'Junior executive', '2021-12-15', 18000.00, '2024-03-15', 23000.00, 'Thiruvanmiyur', '1', '2 years 3 months', ' Mom\'s sickness', 1, '2024-06-12 07:57:21', 0, NULL, 0, NULL, 1),
(8401, 19637, 'Jana small Finance Bank ', 'Operation Assistant cum cashier ', '2023-01-18', 18000.00, '2024-04-25', 18000.00, 'Mandaveli ', '2', '1 years 3 months', '  Father is serious condition and admit for the hstpl... And Next level growth in Carrier ', 1, '2024-06-13 05:31:26', 0, NULL, 0, NULL, 1),
(8402, 19639, 'Revature', 'Python API Developer with AWS & Terraform', '2023-01-09', 7500.00, '2023-09-11', 7500.00, 'Chennai', '1', '0 years 8 months', ' They are relocate my location to North side that\'s why I\'m not willing to go North side.', 1, '2024-06-13 05:45:26', 0, NULL, 0, NULL, 1),
(8403, 19639, 'Infogem web solution', 'Erp Software', '2022-10-20', 21000.00, '1970-01-01', 21000.00, 'Chennai', '2', '1 years 7 months', 'NA', 1, '2024-06-13 05:46:25', 0, NULL, 0, NULL, 1),
(8404, 19640, 'Tata communication ', 'Junior customer executive ', '2022-02-03', 15000.00, '2023-01-02', 30000.00, 'Karuna conquest', '1', '0 years 10 months', ' Night shift ', 1, '2024-06-13 05:48:16', 0, NULL, 0, NULL, 1),
(8405, 19643, 'Connect business solutions ', 'Ce', '2024-01-08', 12000.00, '2024-06-01', 12000.00, 'Guindy', '1', '0 years 4 months', 'Salary issue and ..can\'t manage the shift timing ..', 1, '2024-06-13 05:59:48', 0, NULL, 0, NULL, 1),
(8406, 19644, 'Conneqt business solution', 'CE', '2024-04-01', 12000.00, '2024-06-02', 12000.00, 'Giunty', '1', '0 years 2 months', ' Salary issue', 1, '2024-06-13 06:02:24', 0, NULL, 0, NULL, 1),
(8407, 19641, 'Conneqt business solution', 'CE', '2024-01-08', 12000.00, '2024-06-01', 12000.00, 'Giunty', '1', '0 years 4 months', ' Salary &shift issue ', 1, '2024-06-13 06:07:03', 0, NULL, 0, NULL, 1),
(8408, 19648, 'Cameo corporate services limited ', 'Back office ', '2023-06-13', 7000.00, '1970-01-01', 10000.00, 'Mount road ', '2', '1 years 0 months', 'I see the job night and part time, finished my bachelor\'s I see the full time job ', 1, '2024-06-13 06:53:33', 0, NULL, 0, NULL, 1),
(8409, 19654, 'Redim information systems ', 'E-commerce Executive ', '2022-09-29', 21000.00, '2024-03-31', 23000.00, 'Guduvancherry, chennai ', '1', '1 years 6 months', ' ', 1, '2024-06-13 09:29:36', 0, NULL, 0, NULL, 1),
(8410, 19656, 'Nisarga family  homes pvt', 'Relationship Manager ', '2023-01-01', 16000.00, '2024-05-31', 16000.00, 'Raichur', '1', '1 years 4 months', ' company  FINANCIAL  Issue ', 1, '2024-06-14 03:37:57', 0, NULL, 0, NULL, 1),
(8411, 19642, 'Conneqt business soln', 'Customer care executive', '2024-01-03', 12000.00, '2024-06-01', 12000.00, 'chennai', '1', '0 years 4 months', 'Salary issues', 112, '2024-06-14 10:50:14', 0, NULL, 0, NULL, 1),
(8412, 19667, 'net ambit', 'business development excutive', '2021-02-01', 25000.00, '2024-06-14', 31000.00, 'bangalore', '1', '3 years 4 months', ' Process shut down', 1, '2024-06-14 05:30:11', 0, NULL, 0, NULL, 1),
(8413, 19669, 'HDB Financial Services', 'Senior telecaller executive', '2021-07-13', 20.00, '2024-01-05', 20.00, 'G. P Road', '1', '2 years 5 months', ' Marriage purposes', 1, '2024-06-14 05:37:41', 0, NULL, 0, NULL, 1),
(8414, 19674, 'Justdial ', 'Tele sales', '2023-04-13', 15000.00, '2024-05-04', 15000.00, 'Chennai ', '1', '1 years 0 months', ' ', 1, '2024-06-14 06:24:41', 0, NULL, 0, NULL, 1),
(8415, 19674, 'Justdial ', 'Telesales', '2023-04-13', 15000.00, '2024-05-04', 15000.00, 'Chennai', '1', '1 years 0 months', 'Salary issue ', 1, '2024-06-14 06:30:28', 0, NULL, 0, NULL, 1),
(8416, 19680, 'Icici prudential Life insurance limited ', 'Associate financial service manager ', '2022-10-11', 350000.00, '2024-06-05', 27000.00, 'Chennai,Anna nagar', '1', '1 years 7 months', ' For career growth and for upgrade my skill set ', 1, '2024-06-14 07:41:54', 0, NULL, 0, NULL, 1),
(8417, 19681, 'Star health and allied insurance company pvt Ltd ', 'Telesales officer ', '2023-11-10', 16000.00, '2024-04-30', 16000.00, 'Chennai ', '1', '0 years 5 months', ' Personal issue ', 1, '2024-06-14 08:05:46', 0, NULL, 0, NULL, 1),
(8418, 19683, 'it', 'telecaller', '2022-04-01', 17000.00, '2024-06-10', 17000.00, 'chennai', '1', '2 years 2 months', ' ', 1, '2024-06-14 10:02:28', 0, NULL, 0, NULL, 1),
(8419, 19688, 'State Bank of India ', 'Business Correspondent/ Facilitator ', '2022-01-03', 15000.00, '2023-01-03', 15000.00, 'Kerala ', '1', '1 years 0 months', ' Completed', 1, '2024-06-15 02:09:22', 0, NULL, 0, NULL, 1),
(8420, 19691, 'webberax', 'customer support analayst', '2022-04-20', 22000.00, '2023-09-07', 25000.00, 'ambattur', '1', '1 years 4 months', ' Layoff', 1, '2024-06-15 04:27:29', 0, NULL, 0, NULL, 1),
(8421, 19698, 'Complete ceiling interior products pvt ltd ', 'Sales executive ', '2023-10-20', 12000.00, '2024-06-01', 12000.00, 'Redhills ', '1', '0 years 7 months', ' Shift to another location ', 1, '2024-06-15 05:15:23', 0, NULL, 0, NULL, 1),
(8422, 19697, 'ICICI prudential life insurance co Ltd ', 'FSRM', '2023-01-10', 28000.00, '2024-06-01', 38964.00, 'Nungambakkam ', '1', '1 years 4 months', ' Career growth ', 1, '2024-06-15 05:33:51', 0, NULL, 0, NULL, 1),
(8423, 19708, 'Tech Mahindra ', 'Customer service ', '2018-03-09', 13.00, '2021-06-11', 15.00, 'Ambattur ', '1', '3 years 3 months', ' ', 1, '2024-06-15 05:54:58', 0, NULL, 0, NULL, 1),
(8424, 19709, 'Mmc infotech services', 'Document verification executive ', '2020-12-04', 11500.00, '2022-03-01', 16000.00, 'Chennai', '1', '1 years 2 months', ' Health issue', 1, '2024-06-15 06:24:45', 0, NULL, 0, NULL, 1),
(8425, 19714, 'Sky home enterprise ', 'sales executive ', '2018-02-06', 15500.00, '2019-07-10', 15500.00, 'Guindy ', '1', '1 years 5 months', ' for I\'m studys', 1, '2024-06-15 07:08:30', 0, NULL, 0, NULL, 1),
(8426, 19717, 'unacademy', 'telesales team leader', '2024-01-07', 28000.00, '2024-06-08', 28000.00, 'chennai', '1', '0 years 5 months', ' Career growth', 1, '2024-06-15 10:40:47', 0, NULL, 0, NULL, 1),
(8427, 19719, 'Aionion investments private limited ', 'Junior associate in MIS and operations ', '2023-06-08', 15000.00, '2024-06-30', 16490.00, 'Chennai ', '1', '1 years 0 months', ' I left my previous position to seek new challenges and opportunities for career growth.while i valued my time and experience at aionion investments private limited.', 1, '2024-06-15 11:38:14', 0, NULL, 0, NULL, 1),
(8428, 19722, 'Access health care ', 'AR CALLER', '2022-08-09', 17.50, '2023-07-10', 19000.00, 'Ambattur', '1', '0 years 11 months', 'Night shift because of health issues ', 1, '2024-06-17 05:17:18', 0, NULL, 0, NULL, 1),
(8429, 19734, 'Hitachi payment service company ', 'Pos reconciliation executive ', '2022-08-11', 15000.00, '2024-03-01', 17500.00, 'Velachery ', '1', '1 years 6 months', ' Salary not sufficient ', 1, '2024-06-17 09:50:42', 0, NULL, 0, NULL, 1),
(8430, 19737, 'Tech Mahindra', 'Associate customer support', '2023-12-27', 17000.00, '2024-04-16', 17000.00, 'Ambattur', '1', '0 years 3 months', ' Family issue', 1, '2024-06-18 05:43:11', 0, NULL, 0, NULL, 1),
(8431, 19743, 'kotak mahindra prime ', 'rm', '2024-01-04', 16200.00, '2024-04-30', 16200.00, 'henn ', '1', '0 years 3 months', ' To much travelling', 1, '2024-06-18 05:52:42', 0, NULL, 0, NULL, 1),
(8432, 19746, 'Royal enterprise PVC doors  & modular kitchen ', 'Admin and marketing ', '2023-01-10', 11000.00, '2024-03-10', 17000.00, 'Madipakkam ', '1', '1 years 2 months', ' No Words', 1, '2024-06-18 06:15:54', 0, NULL, 0, NULL, 1),
(8433, 19756, 'BSNL', 'Costumer support executive ', '2020-09-08', 12900.00, '2022-04-07', 20000.00, 'Chennai', '1', '1 years 6 months', ' For career growth ', 1, '2024-06-18 07:19:34', 1, '2024-06-18 07:23:30', 0, NULL, 1),
(8434, 19756, 'Aavin dairy farms', 'Area sales engineer ', '2022-05-01', 18000.00, '2023-03-29', 22000.00, 'Chennai', '1', '0 years 10 months', 'Career growth ', 1, '2024-06-18 07:21:51', 0, NULL, 0, NULL, 1),
(8435, 19756, 'Nestaway technology ', 'House aquisition manager ', '2023-04-10', 27000.00, '2023-06-01', 27000.00, 'Chennai', '1', '0 years 1 months', 'Company has stopped there operation in Chennai ', 1, '2024-06-18 07:25:15', 0, NULL, 0, NULL, 1),
(8436, 19756, 'Signify innovation India pvt Ltd ', 'LAS', '2023-09-13', 33000.00, '1970-01-01', 33000.00, 'Chennai', '2', '0 years 9 months', 'Career growth ', 1, '2024-06-18 07:26:20', 0, NULL, 0, NULL, 1),
(8437, 19764, 'Haleon ', 'Sales officer trainee', '2023-07-11', 35000.00, '1970-01-01', 35000.00, 'Gulbargha ', '2', '0 years 11 months', ' Carrier  building ', 1, '2024-06-19 06:03:09', 0, NULL, 0, NULL, 1),
(8438, 19786, 'Space company ', 'Telecalling ', '2024-05-10', 15000.00, '1970-01-01', 20000.00, 'Kodambakkam ', '2', '0 years 1 months', ' Personal reasons ', 1, '2024-06-19 07:11:17', 0, NULL, 0, NULL, 1),
(8439, 19787, 'Vizza insurance broking services centre ', 'Caller', '2023-09-25', 12600.00, '1970-01-01', 12600.00, 'Kodambakkam ', '2', '0 years 8 months', ' ', 1, '2024-06-19 07:15:14', 0, NULL, 0, NULL, 1),
(8440, 19781, 'Bscpl infrastructure', 'Presales executive', '2022-12-16', 15300.00, '2024-07-15', 16300.00, 'Chennai', '1', '1 years 6 months', 'For Career growth', 1, '2024-06-19 07:15:21', 0, NULL, 0, NULL, 1),
(8441, 19782, 'Aura bpo Service ', 'Medical Billing ', '2022-01-20', 10000.00, '2023-11-25', 13500.00, 'Teynampet', '1', '1 years 10 months', 'Project closed', 1, '2024-06-19 07:18:01', 0, NULL, 0, NULL, 1),
(8442, 19765, 'pradee queens holidays', 'teleceller', '2024-02-02', 25000.00, '2024-06-12', 25000.00, 'ashok piller', '1', '0 years 4 months', ' ', 1, '2024-06-19 09:27:43', 0, NULL, 0, NULL, 1),
(8443, 19789, 'HDB financial services', 'Senior officer in collection', '2023-02-20', 15000.00, '2024-06-02', 15000.00, 'greams road', '1', '1 years 3 months', ' I\'ve gained considerable expertise in a specific skill set within previous company, but I\'m eager to branch out and explore fresh challenges and career avenues, broadening my knowledge across different domains', 1, '2024-06-19 09:36:20', 0, NULL, 0, NULL, 1),
(8444, 19790, 'HDB financial services ', 'Senior tellycaller ', '2023-02-20', 15000.00, '2024-06-01', 15000.00, 'Greems road', '1', '1 years 3 months', ' I have different financial needs so I\'m searching for new job', 1, '2024-06-19 09:37:50', 0, NULL, 0, NULL, 1),
(8445, 19808, 'Idfc bank', 'Relationship Manager ', '2022-04-05', 18000.00, '2023-03-24', 20000.00, 'Mannargudi', '1', '0 years 11 months', ' Accidentally relieving ', 1, '2024-06-20 07:12:41', 0, NULL, 0, NULL, 1),
(8446, 19808, 'Modern lab interior', 'Sales co ordinate & purchase ', '2023-11-14', 18000.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 7 months', 'Timing miss match', 1, '2024-06-20 07:16:51', 0, NULL, 0, NULL, 1),
(8447, 19811, 'Toni&guy essensuals ', 'Outlet manager ', '2024-01-01', 7.00, '1970-01-01', 240000.00, 'Porur', '2', '0 years 5 months', ' Career change \n New challenge\n', 1, '2024-06-20 08:12:50', 0, NULL, 0, NULL, 1),
(8448, 19812, 'MRL LOGISTICS ', 'Chennai ', '2016-06-20', 8500.00, '2024-04-13', 16000.00, 'Parris ', '1', '7 years 9 months', ' ', 1, '2024-06-20 08:33:00', 0, NULL, 0, NULL, 1),
(8449, 19813, 'Technoarete research and development ', 'Research analyst ', '2022-07-01', 2022.00, '2024-01-01', 23000.00, 'Anna Nagar ', '1', '1 years 6 months', ' Career growth ', 1, '2024-06-20 10:14:44', 0, NULL, 0, NULL, 1),
(8450, 19829, 'Hdfc Bank ', 'Home loan department ', '2023-11-27', 17000.00, '2024-06-05', 17000.00, 'Virugambakkam ', '1', '0 years 6 months', ' Personal issue\'s ', 1, '2024-06-21 09:53:54', 0, NULL, 0, NULL, 1),
(8451, 19833, 'RR Associates ', 'Customer Service ', '2023-01-09', 22500.00, '2024-04-30', 22500.00, 'T nagar ', '1', '1 years 3 months', ' Personal issue ', 1, '2024-06-22 03:10:44', 0, NULL, 0, NULL, 1),
(8452, 19836, 'Wonderful group of comoanies', 'Human resource', '2022-05-03', 25000.00, '2024-02-14', 25000.00, 'Dubai', '1', '1 years 9 months', ' ', 1, '2024-06-22 05:46:22', 0, NULL, 0, NULL, 1),
(8453, 19837, 'St courier ', 'Booking and calling ', '2019-04-17', 16000.00, '2024-06-22', 11000.00, 'Mountroad', '2', '5 years 2 months', ' Part time work', 1, '2024-06-22 06:20:03', 0, NULL, 0, NULL, 1),
(8454, 19838, 'tech mahindra', 'customer suport ', '2023-10-02', 31.00, '1970-01-01', 13500.00, 'ambuthur', '2', '0 years 8 months', ' Shift timing and night shift', 1, '2024-06-22 06:24:52', 0, NULL, 0, NULL, 1),
(8455, 19840, 'connected digital system pvt ltd', 'software developer', '2023-08-21', 25000.00, '2024-07-07', 25000.00, 'Chennai', '1', '0 years 10 months', ' carrier growth and learn new technology and salary', 1, '2024-06-22 01:23:36', 1, '2024-06-22 01:26:32', 0, NULL, 1),
(8456, 19840, 'Others', 'software developer', '2021-06-20', 15000.00, '2023-08-21', 17000.00, 'Dindigul', '1', '2 years 2 months', 'carrier growth and learn new technology', 1, '2024-06-22 01:29:24', 0, NULL, 0, NULL, 1),
(8457, 19842, 'Spar Hypermarket ', 'CSA executive ', '2021-12-01', 13000.00, '2024-03-15', 13000.00, 'Vadapalani ', '1', '2 years 3 months', ' For education ', 1, '2024-06-22 03:25:23', 0, NULL, 0, NULL, 1),
(8458, 19846, 'Kaviyarasan ', 'Narasus coffee ', '2017-09-04', 17500.00, '2024-05-24', 17500.00, 'Salem', '1', '6 years 8 months', ' ', 1, '2024-06-24 04:41:13', 0, NULL, 0, NULL, 1),
(8459, 19858, 'Pepper Advantage pvt lmt', 'Resolution telecaller', '2023-10-05', 24000.00, '2024-07-12', 24000.00, 'Egmore', '1', '0 years 9 months', ' Office closed', 1, '2024-06-24 07:08:24', 0, NULL, 0, NULL, 1),
(8460, 19866, 'Tamil matrimony', 'Telecaller', '2023-03-10', 13000.00, '2023-11-22', 13000.00, 'Guindy', '1', '0 years 8 months', ' Timing', 1, '2024-06-25 05:31:25', 0, NULL, 0, NULL, 1),
(8461, 19872, 'Msys technologies Pvt ltd.llp', 'Software developer ', '2022-06-01', 30000.00, '2023-06-30', 30000.00, 'Chennai', '1', '1 years 0 months', ' Due to some personal issues', 1, '2024-06-25 06:35:19', 0, NULL, 0, NULL, 1),
(8462, 19871, 'Aishwarya Agencies ', 'Manager', '2015-06-25', 10000.00, '2024-05-01', 20000.00, 'Madurai ', '1', '8 years 10 months', ' Shifted in Chennai', 1, '2024-06-25 06:36:32', 0, NULL, 0, NULL, 1),
(8463, 19875, 'Kotak mahindra bank', 'Operation', '2019-10-01', 18000.00, '2024-03-12', 18000.00, 'Chennai', '1', '4 years 5 months', ' Career growth', 1, '2024-06-25 07:18:30', 0, NULL, 0, NULL, 1),
(8464, 19891, 'Allzone Management Solutions ', 'Trainee Process Associate ', '2021-01-05', 6000.00, '2021-10-30', 6000.00, 'Vellore ', '1', '0 years 9 months', ' ', 1, '2024-06-26 05:11:51', 0, NULL, 0, NULL, 1),
(8465, 19891, 'DXC TECHNOLOGY ', 'Senior Help desk technician ', '2021-11-05', 20000.00, '2022-06-25', 20000.00, 'Bangalore ', '1', '0 years 7 months', 'Health issues ', 1, '2024-06-26 05:14:05', 0, NULL, 0, NULL, 1),
(8466, 19896, 'Triplev air and sea service ', 'Documentation executive ', '0000-01-26', 12000.00, '2024-05-31', 12000.00, 'Parrys ', '1', '2024 years 4 months', ' Business loss', 1, '2024-06-26 05:47:10', 0, NULL, 0, NULL, 1),
(8467, 19906, 'ison xperiences', 'telecaller', '2022-02-15', 18000.00, '2024-06-07', 18000.00, 'chennai', '1', '2 years 3 months', ' Salary delay ', 1, '2024-06-26 06:49:22', 0, NULL, 0, NULL, 1),
(8468, 19905, 'ison xperiences', 'telecaller', '2023-12-14', 12000.00, '2024-05-12', 12000.00, 'chennai', '1', '0 years 4 months', ' salary issue', 1, '2024-06-26 06:51:32', 0, NULL, 0, NULL, 1),
(8469, 19882, 'Sri harsham promoters', 'Lead management', '2023-06-20', 18000.00, '1970-01-01', 18000.00, 'Chennai', '2', '1 years 0 months', 'Change the surrounding workplace\nAnd learning  new idealistic ', 1, '2024-06-27 06:40:02', 0, NULL, 0, NULL, 1),
(8470, 19924, 'Mareswaran ', 'Tele calling ', '2018-11-07', 15000.00, '2023-04-13', 20000.00, 'Sankarankovil ', '1', '4 years 5 months', ' Work pressure @ salary un expected ', 1, '2024-06-27 06:59:23', 0, NULL, 0, NULL, 1),
(8471, 19925, 'Autosense private limited ', 'Customer care ', '2023-01-23', 14000.00, '2024-04-30', 14000.00, 'Gunidy ', '1', '1 years 3 months', 'Hindi is Mandatory so I resigned the job ', 1, '2024-06-27 07:02:07', 0, NULL, 0, NULL, 1),
(8472, 19926, 'Golden enterprises private limited ', 'Telesales ', '2023-08-10', 16000.00, '2024-03-30', 16000.00, 'VadaPalani ', '1', '0 years 7 months', ' Health problems ', 1, '2024-06-27 07:03:56', 0, NULL, 0, NULL, 1),
(8473, 19932, 'Hdfc finance ', 'Sales executive ', '2022-09-15', 22000.00, '2024-04-13', 20000.00, 'Amjinichikari ', '1', '1 years 6 months', 'Im moving Carrier growth ', 1, '2024-06-27 09:47:16', 0, NULL, 0, NULL, 1),
(8474, 19931, 'Datalligence AI', 'Digital marketing ', '2023-03-20', 175000.00, '2023-11-15', 175000.00, 'Chennai', '1', '0 years 7 months', 'For salary hike\n', 1, '2024-06-27 09:50:24', 1, '2024-06-27 09:53:14', 0, NULL, 1),
(8475, 19931, 'Jss pro', 'Marketing analyst ', '2023-11-16', 275000.00, '2024-06-28', 275000.00, 'Remote', '1', '0 years 7 months', 'Organization restructuring ', 1, '2024-06-27 09:54:15', 0, NULL, 0, NULL, 1),
(8476, 19935, 'Capital float axio ', 'Sales manager', '2023-09-12', 21000.00, '2024-06-27', 21000.00, 'Chennai ', '2', '0 years 8 months', ' For my career growth', 1, '2024-06-27 10:08:04', 0, NULL, 0, NULL, 1),
(8477, 19937, 'Star health insurance ', 'Senior Advisor ', '2021-02-01', 22000.00, '1970-01-01', 34000.00, 'Chennai ', '2', '3 years 4 months', ' Career change and growth', 1, '2024-06-28 05:22:07', 0, NULL, 0, NULL, 1),
(8478, 19936, 'The dollar business ', 'Sales executive ', '2022-10-31', 20000.00, '2023-03-26', 23000.00, 'Teynampet ', '1', '0 years 4 months', 'Health issues ', 1, '2024-06-28 05:25:56', 0, NULL, 0, NULL, 1),
(8479, 19949, 'Akash institution', 'Tele calling', '2023-08-13', 13.00, '2024-02-28', 13.00, 'hassan', '1', '0 years 6 months', ' Because i working there was a parttime job ', 1, '2024-06-28 12:51:15', 0, NULL, 0, NULL, 1),
(8480, 19953, 'Tme', 'Tme', '2019-08-23', 24000.00, '2023-02-10', 24000.00, 'Anna salai', '1', '3 years 5 months', ' Bike accident', 1, '2024-06-29 06:42:46', 0, NULL, 0, NULL, 1),
(8481, 19960, 'Access healthcare ', 'Client specialist ', '2023-03-01', 22000.00, '2024-03-29', 27000.00, 'Chennai ', '1', '1 years 0 months', ' ', 1, '2024-06-30 10:20:59', 0, NULL, 0, NULL, 1),
(8482, 19961, 'Johoku ', 'Trinee', '2022-06-28', 16000.00, '2024-06-28', 18000.00, 'Vallam', '1', '2 years 0 months', ' Training complete ', 1, '2024-07-01 05:28:11', 0, NULL, 0, NULL, 1),
(8483, 19964, 'Peter England ', 'A', '2022-07-01', 16500.00, '2024-01-20', 18000.00, 'Adyar', '1', '1 years 6 months', ' Finding for best job', 1, '2024-07-01 05:33:08', 0, NULL, 0, NULL, 1),
(8484, 19967, 'Orocorp technology', 'Senior Customer support executive', '2022-06-07', 25000.00, '2023-11-27', 25000.00, 'Chennai', '1', '1 years 5 months', ' Maternity and child take care', 1, '2024-07-01 05:55:48', 0, NULL, 0, NULL, 1),
(8485, 19971, 'Trends ', 'Adyar ', '2022-05-02', 12500.00, '2024-06-01', 13000.00, 'Chennai', '1', '2 years 0 months', 'Work pressure ', 1, '2024-07-01 06:31:14', 0, NULL, 0, NULL, 1),
(8486, 19974, 'India filings', 'Business advisor ', '2023-11-13', 18000.00, '2024-06-10', 20000.00, 'Guindy ', '1', '0 years 6 months', ' Health issues ', 1, '2024-07-01 06:37:34', 0, NULL, 0, NULL, 1),
(8487, 19975, 'Nissan automobile ', 'Quality control ', '2021-09-10', 16000.00, '2022-09-10', 16000.00, '1', '1', '1 years 0 months', ' Health issues ', 1, '2024-07-01 06:37:45', 0, NULL, 0, NULL, 1),
(8488, 19965, 'HDB Finance service ', 'Telecallar ', '2022-02-07', 15000.00, '2022-12-05', 17000.00, 'Green road', '1', '2 years 4 months', ' ', 1, '2024-07-01 06:41:51', 0, NULL, 0, NULL, 1),
(8489, 19973, 'Rane MADARAS ', 'Customer support executive ', '2023-02-06', 16000.00, '2024-05-30', 16000.00, 'Chennai', '1', '1 years 3 months', ' ', 1, '2024-07-01 07:01:52', 0, NULL, 0, NULL, 1),
(8490, 19979, 'HDB Finance service', 'Caps', '2024-06-03', 17600.00, '2024-06-30', 17600.00, '1000 light', '1', '0 years 0 months', ' Job satisfied', 1, '2024-07-01 07:06:06', 0, NULL, 0, NULL, 1),
(8491, 19980, 'Egmore benefit saswatha nidhi limited ', 'Clerk asst', '2021-12-09', 10000.00, '2024-06-30', 13500.00, 'Flowers road', '1', '2 years 6 months', ' Salary issue', 1, '2024-07-01 07:26:20', 0, NULL, 0, NULL, 1),
(8492, 19992, 'SRS FIN-SERVICE ', 'Sales', '2021-02-01', 16000.00, '2023-05-07', 15000.00, 'Guindy', '1', '2 years 3 months', ' ', 1, '2024-07-02 06:03:54', 0, NULL, 0, NULL, 1),
(8493, 19993, 'Sri Sai ', 'Lic', '2022-04-03', 16000.00, '2024-04-07', 14000.00, 'Chennai', '1', '2 years 0 months', ' Personal work ', 1, '2024-07-02 06:07:31', 0, NULL, 0, NULL, 1),
(8494, 20002, 'Stats perform ', 'Data analyst ', '2023-11-08', 12.00, '2024-04-30', 16000.00, 'Chennai', '1', '0 years 5 months', ' Contact has been done ', 1, '2024-07-02 09:04:39', 0, NULL, 0, NULL, 1),
(8495, 20006, 'Mayoora food products ', 'Sales promoter(part time)', '2021-06-01', 6000.00, '2022-05-19', 60000.00, 'Veppabattu ', '1', '0 years 11 months', ' ', 1, '2024-07-03 04:52:26', 1, '2024-07-03 04:55:00', 0, NULL, 0),
(8496, 20006, 'Mayoora food products ', 'Sales promoter (part time)', '2021-08-02', 6000.00, '2022-08-11', 6000.00, 'Veppabattu ', '1', '1 years 0 months', 'Some health issues ', 1, '2024-07-03 04:57:02', 0, NULL, 0, NULL, 1),
(8497, 20006, 'Darling masala', 'Sales promoter (part time )', '2022-10-07', 8000.00, '2023-05-12', 8000.00, 'Thiruniradavur ', '1', '0 years 7 months', 'Delay salary ', 1, '2024-07-03 04:59:54', 0, NULL, 0, NULL, 1),
(8498, 20006, 'Manna food products ', 'Sales promoter (part time)', '2023-08-10', 8000.00, '2024-02-23', 8000.00, 'Avadi', '1', '0 years 6 months', 'Time issue ', 1, '2024-07-03 05:07:24', 1, '2024-07-03 05:07:41', 0, NULL, 0),
(8499, 20006, 'Manna food products ', 'Sales promoter (part time)', '2023-08-10', 8000.00, '2024-02-23', 8000.00, 'Avadi', '1', '0 years 6 months', 'Time issue ', 1, '2024-07-03 05:07:24', 0, NULL, 0, NULL, 1),
(8500, 20006, 'HDB FINANCIAL SERVICES ', 'Customer support in personal loan ', '2024-06-01', 15000.00, '1970-01-01', 15000.00, 'Thousand lights ', '2', '0 years 1 months', 'Time issue ', 1, '2024-07-03 05:10:01', 0, NULL, 0, NULL, 1),
(8501, 20010, 'HDB Finance', 'Teles sales executive ', '2018-11-16', 12330.00, '2019-04-28', 12330.00, 'Nungambakkam', '1', '0 years 5 months', ' I have some complicated my pregnancy.', 1, '2024-07-03 05:20:59', 0, NULL, 0, NULL, 1),
(8502, 20017, 'ICICI PRUDENTIAL LIFE INSURANCE ', 'Insurance advisor ', '2023-08-01', 1500.00, '1970-01-01', 1500.00, 'Work From Home ', '2', '0 years 11 months', 'Looking for full time job ', 1, '2024-07-03 02:09:57', 0, NULL, 0, NULL, 1),
(8503, 20020, 'Ashok Leyland ', 'Customer Support executive ', '2016-10-01', 13500.00, '2024-01-31', 250000.00, 'Madurai', '1', '7 years 3 months', ' Carrer growth ', 1, '2024-07-04 05:04:09', 0, NULL, 0, NULL, 1),
(8504, 20020, 'Ucs trading', 'Assistant sales manager ', '2024-02-01', 30000.00, '1970-01-01', 30000.00, 'Chennai', '2', '0 years 5 months', 'Carrer growth', 1, '2024-07-04 05:05:41', 0, NULL, 0, NULL, 1),
(8505, 20026, 'Jublfood, Dominos pizza', 'Assistant manager', '2023-06-12', 17500.00, '1970-01-01', 17500.00, 'Purasaiwalkam', '2', '1 years 0 months', ' ', 1, '2024-07-04 09:29:16', 0, NULL, 0, NULL, 1),
(8506, 20028, 'alice blue pvt lvd', 'call supporter', '2023-06-13', 15000.00, '2024-06-30', 20000.00, 'thiruvallur', '1', '1 years 0 months', ' No proper salary', 1, '2024-07-05 05:12:38', 0, NULL, 0, NULL, 1),
(8507, 20029, 'Alice blue pvt ltd', 'Call supporter', '2022-02-01', 15000.00, '2024-05-30', 22000.00, 'Thiruvallur', '1', '2 years 5 months', 'No proper timing', 1, '2024-07-05 05:19:59', 0, NULL, 0, NULL, 1),
(8508, 20030, 'Shriram life insurance ', 'Financial manager', '2023-07-05', 20000.00, '2024-06-30', 20000.00, 'Egmore', '1', '0 years 11 months', 'Career Growth', 1, '2024-07-05 05:46:27', 0, NULL, 0, NULL, 1),
(8509, 20039, 'Exela Technologies ', 'Claim Adjudicater ', '2020-09-24', 30092020.00, '2024-05-27', 16000.00, 'Chennai ', '1', '3 years 8 months', ' Low Income ', 1, '2024-07-05 06:13:07', 0, NULL, 0, NULL, 1),
(8510, 20035, 'Bharti Airtel limited ', 'Customer support ', '2024-01-06', 15000.00, '1970-01-01', 15000.00, 'Saidapet', '2', '0 years 5 months', ' Not well due to health condition .', 1, '2024-07-05 06:21:28', 0, NULL, 0, NULL, 1),
(8511, 20042, 'ndtccs ', 'ndt tech  ', '2011-07-10', 1650.00, '2024-05-22', 150000.00, 'saudi', '1', '12 years 10 months', ' Personal reason', 1, '2024-07-05 06:49:10', 0, NULL, 0, NULL, 1),
(8512, 20051, 'Cedar business solution', 'Hdfc credit card recover', '2022-12-11', 15000.00, '2023-12-31', 18000.00, 'Second floor Condition Floor, 7/3, Subbarayan St, ', '1', '1 years 0 months', ' Tl will leave the office because of they have another better office in their hometown', 1, '2024-07-05 07:56:57', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8513, 20053, 'ICICI LOMBARD ', 'Chennai', '2023-06-15', 13500.00, '2024-06-30', 15000.00, 'Thousand light', '1', '1 years 0 months', 'Timing issue ', 1, '2024-07-05 07:58:07', 0, NULL, 0, NULL, 1),
(8514, 20054, 'ICICI Lombard General insurance ', 'Chennai ', '2023-06-15', 13.50, '2024-07-01', 15.00, 'Thousands lights ', '1', '1 years 0 months', ' Timing ', 1, '2024-07-05 07:58:12', 0, NULL, 0, NULL, 1),
(8515, 20058, 'Sbi cards', 'Sales exicutive', '2023-02-05', 8.00, '2024-07-05', 30000.00, 'Chennai ', '1', '1 years 5 months', ' Better chances ', 1, '2024-07-05 10:06:43', 0, NULL, 0, NULL, 1),
(8516, 20057, 'The leprosy mission trust India F2F executive ', 'F2F executive ', '2024-02-08', 21500.00, '2024-09-01', 21500.00, 'Chennai ', '1', '0 years 6 months', ' Better salary', 1, '2024-07-05 10:28:47', 0, NULL, 0, NULL, 1),
(8517, 20063, 'Just dial ltd', 'Telemarketing executive ', '2022-03-04', 18000.00, '2023-01-07', 18000.00, 'CHENNAI', '1', '0 years 10 months', 'Asked to work on Sundays ', 1, '2024-07-06 05:43:40', 0, NULL, 0, NULL, 1),
(8518, 20061, 'Finzr Solution', 'Project Executive, Team Coordinator', '2022-11-01', 18000.00, '2024-03-02', 21000.00, 'Chennai', '1', '1 years 4 months', ' To Enhance my skillset. I am looking for my responsibility and beeter career growth opportunities', 1, '2024-07-06 05:45:29', 0, NULL, 0, NULL, 1),
(8519, 20064, 'Vinakaya mission law school ', 'Admission executive ', '2023-03-28', 21500.00, '2024-06-25', 21500.00, 'Chennai kilpuk ', '1', '1 years 2 months', ' Due to relocation I got releived current working location shifted to outer Chennai\n', 1, '2024-07-06 05:52:54', 0, NULL, 0, NULL, 1),
(8520, 20062, 'Capgemini salem', 'Process associate ', '2017-07-12', 6800.00, '2019-07-02', 10000.00, 'Salem', '1', '1 years 11 months', ' Personal reason ', 1, '2024-07-06 05:54:22', 0, NULL, 0, NULL, 1),
(8521, 20068, 'Axis bank ', 'Sales officer ', '2023-12-20', 17500.00, '2024-04-03', 17500.00, 'Chennai ', '1', '0 years 3 months', ' Health issues ', 1, '2024-07-06 07:14:16', 0, NULL, 0, NULL, 1),
(8522, 20088, 'Banking ', 'Relationship manager 1 ', '2023-06-01', 21000.00, '2024-02-10', 21000.00, 'Tiruppur ', '1', '0 years 8 months', ' Work location and food environment ', 1, '2024-07-08 05:30:37', 0, NULL, 0, NULL, 1),
(8523, 20097, 'Axis Bank', 'Assistant Sales manager', '2023-07-24', 18.00, '2024-02-15', 18.00, 'Chennai', '1', '0 years 6 months', ' I Met an Accident My Left hand as Broken I\'m in Rest Now I\'m Completely Alright', 1, '2024-07-08 06:26:42', 0, NULL, 0, NULL, 1),
(8524, 20097, 'S K Browsing Point', 'Assistant manager', '2021-07-01', 13.00, '2023-07-02', 16.00, 'Tiruttani', '1', '2 years 0 months', 'Salary Issue', 1, '2024-07-08 06:27:54', 0, NULL, 0, NULL, 1),
(8525, 20094, 'Sai vireukeshan information  management  services ', 'Ops inward', '2024-01-08', 11000.00, '2024-06-15', 11000.00, 'Parryas corner ', '1', '0 years 5 months', ' Salary base on', 1, '2024-07-08 06:28:10', 0, NULL, 0, NULL, 1),
(8526, 20078, 'vasavi medicare', 'purchase executive', '2021-09-06', 9000.00, '2024-04-22', 12600.00, 'madurai', '1', '2 years 7 months', ' for education upgrading', 1, '2024-07-08 06:30:13', 0, NULL, 0, NULL, 1),
(8527, 20101, 'Sunsmart technology ', 'Digital marketing executive ', '2024-01-03', 15000.00, '2024-06-06', 15000.00, 'Nandanam ', '1', '0 years 5 months', ' ', 1, '2024-07-08 09:22:42', 0, NULL, 0, NULL, 1),
(8528, 19567, 'Pozent corporation ', 'US IT Recruiter ', '2023-05-05', 18000.00, '2024-04-24', 21000.00, 'Ekkatuthagal ', '1', '0 years 11 months', ' Distance too far and also completely night shift I was struggling health issues due to night shift ', 1, '2024-07-09 06:01:57', 0, NULL, 0, NULL, 1),
(8529, 20108, 'zf wabco ', 'assembly operators ', '2022-11-17', 17500.00, '2024-05-31', 19500.00, 'ambattur ', '1', '1 years 6 months', 'time period over', 1, '2024-07-09 06:05:13', 0, NULL, 0, NULL, 1),
(8530, 20112, 'Altruist technologies private limited ', 'Tele sales', '2024-04-06', 14000.00, '2024-07-06', 14000.00, 'Lic opp,chennai', '1', '0 years 3 months', ' ', 1, '2024-07-09 06:20:41', 0, NULL, 0, NULL, 1),
(8531, 20109, 'Golden enterprises', 'Tele caller', '2023-07-14', 16000.00, '2023-12-30', 16000.00, 'Vadapalani,chennai', '1', '0 years 5 months', ' Due to some personal problems', 1, '2024-07-09 06:21:01', 0, NULL, 0, NULL, 1),
(8532, 20110, 'TIDC', 'Training', '2022-11-05', 15000.00, '2024-07-04', 18000.00, 'Ambattur', '1', '1 years 7 months', ' Yearly contract will be finish ', 1, '2024-07-09 06:23:38', 0, NULL, 0, NULL, 1),
(8533, 20114, 'Ceasefire industries pvt ltd', 'Management trainee', '2023-11-02', 30000.00, '2024-06-30', 30000.00, 'Chennai', '1', '0 years 7 months', ' Health issues', 1, '2024-07-09 06:36:23', 0, NULL, 0, NULL, 1),
(8534, 20111, 'CAFS', 'Billing section tally ', '2022-02-02', 10000.00, '2022-12-22', 17000.00, 'Spencer plaza ', '1', '0 years 10 months', ' Skills development ', 1, '2024-07-09 06:41:22', 0, NULL, 0, NULL, 1),
(8535, 20115, 'Boston Business solution ', 'CRM executive ', '2020-03-22', 11000.00, '2022-12-22', 18000.00, 'Chennai', '1', '2 years 9 months', ' Personal reasons', 1, '2024-07-09 07:14:33', 0, NULL, 0, NULL, 1),
(8536, 20115, 'Casagrand Builders Private Limited ', 'customer Support senior Executive ', '2022-12-26', 21000.00, '2023-12-29', 25000.00, 'Chennai', '1', '1 years 0 months', 'Health issues', 1, '2024-07-09 07:15:55', 0, NULL, 0, NULL, 1),
(8537, 20125, 'Matrimony ', 'Senior relationship Manager ', '2023-01-03', 30000.00, '2024-06-30', 30000.00, 'Chennai ', '1', '1 years 5 months', ' Better growth ', 1, '2024-07-10 06:12:31', 0, NULL, 0, NULL, 1),
(8538, 20125, 'Casagrand ', 'Senior executive ', '2020-11-03', 28000.00, '2022-12-15', 28000.00, 'Chennai ', '1', '2 years 1 months', 'Health issues ', 1, '2024-07-10 06:14:22', 0, NULL, 0, NULL, 1),
(8539, 20126, 'Ramco system ', 'Payroll executive', '2023-06-02', 18000.00, '2024-05-01', 20000.00, 'Taramani ', '1', '0 years 10 months', ' Family issues', 1, '2024-07-10 06:25:17', 0, NULL, 0, NULL, 1),
(8540, 20132, 'Bankbazaar', 'Customer relationship officer', '2022-05-15', 15500.00, '2023-02-28', 15500.00, 'Chennai', '1', '0 years 9 months', 'Family situation', 1, '2024-07-10 06:53:38', 0, NULL, 0, NULL, 1),
(8541, 20136, 'KAP Call center ', 'Sales executive ', '2023-02-14', 15000.00, '2023-11-04', 15000.00, 'Raggiguda ', '1', '0 years 8 months', ' Health is not good so I went to my home town ', 1, '2024-07-10 07:44:45', 0, NULL, 0, NULL, 1),
(8542, 20138, 'Vega Financial service ', 'Relationship manager ', '2023-09-01', 30.00, '2024-06-30', 35000.00, 'Banglore ', '1', '0 years 9 months', ' Looking for long term opportunities where i can learn new skills and grow in my career. ', 1, '2024-07-10 09:12:46', 0, NULL, 0, NULL, 1),
(8543, 20142, 'Gsquare ', 'Senior executive ', '2022-02-02', 29000.00, '2024-03-31', 29000.00, 'Chennai', '1', '2 years 1 months', ' Incentives issues', 1, '2024-07-10 09:22:44', 0, NULL, 0, NULL, 1),
(8544, 20141, 'Nxtwave technology ', 'BDA ', '2022-12-01', 22000.00, '2023-07-31', 25000.00, 'Hybrid ', '1', '0 years 7 months', ' Personal issue ', 1, '2024-07-10 09:22:59', 1, '2024-07-10 09:26:51', 0, NULL, 1),
(8545, 20141, 'Byjus', 'BDA ', '2022-03-01', 29000.00, '2022-11-30', 40000.00, 'Chennai ', '1', '0 years 8 months', 'Company loss', 1, '2024-07-10 09:24:28', 1, '2024-07-10 09:26:21', 0, NULL, 1),
(8546, 20140, 'byjus', 'bda', '2022-02-06', 49000.00, '2024-07-05', 49000.00, 'adyar', '1', '2 years 4 months', ' Salary pending ,company into loss ', 1, '2024-07-10 09:24:33', 1, '2024-07-10 09:27:40', 0, NULL, 1),
(8547, 20141, 'Rebirth foundation ', 'Admin counselor ', '2020-09-01', 15000.00, '2022-02-28', 18000.00, 'Chennai ', '1', '1 years 5 months', 'Personal issue ', 1, '2024-07-10 09:25:55', 0, NULL, 0, NULL, 1),
(8548, 20140, 'franke faber', 'team lead', '2021-01-03', 1.00, '2022-02-01', 22000.00, 'greams road', '1', '1 years 0 months', 'Medical problem ', 1, '2024-07-10 09:26:44', 0, NULL, 0, NULL, 1),
(8549, 20160, 'Star health insurance ', 'Customer support ', '2023-06-10', 15.00, '2023-06-15', 15.00, 'Vadapalani', '1', '0 years 0 months', ' Got personal commitment ', 1, '2024-07-11 06:42:34', 0, NULL, 0, NULL, 1),
(8550, 20168, 'Corporate credit service', 'Telesales', '2020-01-27', 150000.00, '2021-12-20', 200000.00, 'bangalore', '1', '4 years 5 months', 'Received better opportunity.', 1, '2024-07-11 10:21:49', 1, '2024-07-11 10:22:54', 0, NULL, 1),
(8551, 20168, 'WNS', 'Process associate', '2022-02-14', 300000.00, '2024-04-13', 354000.00, 'BANGALORE', '1', '2 years 1 months', 'Faced health issues due to night shift.', 1, '2024-07-11 10:25:18', 0, NULL, 0, NULL, 1),
(8552, 20173, 'Altruist technology ', 'relationship manager ', '2023-08-13', 3.00, '2024-07-06', 3.00, 'Bangalore ', '1', '0 years 10 months', 'Not a challenging role', 1, '2024-07-11 01:02:39', 0, NULL, 0, NULL, 1),
(8553, 20174, 'Bank of Baroda ', 'DEO', '2018-10-16', 18000.00, '2019-11-04', 18000.00, 'Gudiyattam, vellore, Ambur ', '1', '1 years 0 months', ' It is temporary  job', 1, '2024-07-12 01:00:38', 0, NULL, 0, NULL, 1),
(8554, 20178, 'First source solutions pvt ltd ', 'Senior analyst ', '2020-04-01', 22000.00, '2023-05-22', 322000.00, 'Navalur ', '1', '3 years 1 months', 'Personal reson', 1, '2024-07-12 05:29:40', 0, NULL, 0, NULL, 1),
(8555, 20182, 'Raaba Media', 'B.Tech It', '2024-07-22', 5.00, '1970-01-01', 15000.00, 'Chennai ', '2', '0 years 0 months', ' Has I was working Part time .. I\'m currently looking for Full time', 1, '2024-07-12 06:03:27', 0, NULL, 0, NULL, 1),
(8556, 20185, 'Fumigation services pvt limited', 'Backend', '2022-03-19', 13000.00, '2024-04-30', 14500.00, 'Parrys, Chennai', '1', '2 years 1 months', ' As I learned the experience over there , it didn\'t align with my long term career goal.', 1, '2024-07-12 06:21:14', 0, NULL, 0, NULL, 1),
(8557, 20184, 'Muthoot fincrop ', 'It supports and tech solution', '2023-04-15', 24000.00, '2024-03-04', 24000.00, 'Spencer ', '1', '0 years 10 months', ' To upgrade my skills and to get a better oppertunity ', 1, '2024-07-12 06:28:01', 0, NULL, 0, NULL, 1),
(8558, 20181, 'FHH', 'Quality', '2022-04-25', 18000.00, '2023-03-10', 18000.00, 'Sunguvarchatram', '1', '2 years 2 months', 'Exam ', 1, '2024-07-12 07:08:39', 0, NULL, 0, NULL, 1),
(8559, 20189, 'Banksathi', 'Sales executive ', '2023-01-10', 21.00, '2023-07-15', 23000.00, 'Indiranagar ', '1', '0 years 6 months', ' ', 1, '2024-07-12 08:31:13', 0, NULL, 0, NULL, 1),
(8560, 20201, 'reliance nippon', 'tellecaller', '2020-04-28', 15000.00, '2021-08-28', 15000.00, 'mountroad', '1', '1 years 4 months', 'Salaray hike', 104, '2024-07-13 11:55:58', 0, NULL, 0, NULL, 1),
(8561, 20201, 'fashion desiging shop', 'receptionist', '2019-06-03', 8000.00, '2020-01-15', 8000.00, 'retteri', '1', '0 years 7 months', 'salary package and career growth', 104, '2024-07-13 11:58:22', 0, NULL, 0, NULL, 1),
(8562, 20201, 'airtel', 'promotor ', '2022-11-01', 15000.00, '2023-03-10', 15000.00, 'manivakkam', '1', '0 years 4 months', 'maternity', 104, '2024-07-13 11:59:48', 0, NULL, 0, NULL, 1),
(8563, 20202, 'HDB Financial Services ', 'Customer Relationship Officer ', '2024-02-27', 18000.00, '1970-01-01', 12000.00, 'Avadi', '2', '0 years 4 months', ' I don\'t want Field Job', 1, '2024-07-13 06:39:43', 0, NULL, 0, NULL, 1),
(8564, 20202, 'HDB Financial Services ', 'Customer Relationship Officer ', '2024-02-27', 12000.00, '1970-01-01', 12000.00, 'Avadi', '2', '0 years 4 months', 'They approached me for field Job', 1, '2024-07-13 06:41:15', 0, NULL, 0, NULL, 1),
(8565, 20208, 'Creative hands Hr', 'Customer support/sales ', '2023-05-11', 15.00, '2024-05-12', 15.00, 'Mahindra world city ', '1', '1 years 0 months', ' Needed some carrer change and growth.  Have need to   new role and life style..', 1, '2024-07-13 09:18:06', 0, NULL, 0, NULL, 1),
(8566, 20211, 'Rudhra fin service', 'Tele calling ', '2020-01-10', 10.00, '2022-02-13', 15000.00, 'Chennai', '1', '2 years 1 months', ' ', 1, '2024-07-13 01:31:09', 0, NULL, 0, NULL, 1),
(8567, 20222, 'PLC Technologies', 'Web developer', '2023-04-24', 185000.00, '1970-01-01', 22000.00, 'Chennai', '2', '1 years 2 months', ' Salary', 1, '2024-07-15 05:27:00', 0, NULL, 0, NULL, 1),
(8568, 20228, 'NTT DATA ', 'Senior associate rep role', '2021-10-31', 14000.00, '2024-01-13', 18000.00, 'Pouru ', '1', '2 years 2 months', ' My growth next step to take for career best organisation work with together ', 1, '2024-07-15 06:01:51', 0, NULL, 0, NULL, 1),
(8569, 20229, 'Hdb financial services ', 'Voice process', '2019-11-11', 16000.00, '2022-03-20', 16000.00, 'Gp road', '1', '2 years 4 months', ' Health issue', 1, '2024-07-15 06:06:52', 0, NULL, 0, NULL, 1),
(8570, 20230, 'Apollo hospital pvt ltd ', 'D.E.O', '2023-07-15', 12000.00, '1970-01-01', 12000.00, 'Chennai ', '2', '0 years 4 months', 'Salary issue ', 1, '2024-07-15 06:33:29', 1, '2024-07-15 06:33:55', 0, NULL, 1),
(8571, 20234, 'Sulekha.com', 'Business development executive ', '2022-10-07', 20500.00, '2023-08-31', 23000.00, 'Perungudi ', '1', '0 years 10 months', ' Some personal issue ', 1, '2024-07-15 06:41:17', 0, NULL, 0, NULL, 1),
(8572, 20237, 'Propel Finways Insurance Marketing pvt ltd ', 'Telecaller ', '2024-01-10', 15000.00, '1970-01-01', 1.00, 'Ekkaduthangal', '2', '0 years 6 months', ' Delay salary and upgrade my career ', 1, '2024-07-15 07:12:23', 0, NULL, 0, NULL, 1),
(8573, 20242, 'A&A dukaan financial services pvt ltd ', 'Senior customer relationship officer ', '2022-10-22', 30.00, '2024-02-05', 19000.00, 'Ambattur Chennai ', '1', '1 years 3 months', ' For my career growth ', 1, '2024-07-15 07:40:18', 0, NULL, 0, NULL, 1),
(8574, 20244, '1point1', 'Telecaller ', '2023-04-15', 15000.00, '2024-09-30', 19500.00, 'Kudlu gate ', '1', '1 years 5 months', ' ', 1, '2024-07-15 08:12:01', 0, NULL, 0, NULL, 1),
(8575, 20244, 'Star health insurance company ', 'Telecaller ', '2024-02-15', 20000.00, '2024-09-07', 20000.00, 'Near Bannerghatta main road opposite to jayadeva h', '1', '0 years 6 months', 'Went to Village for 10days', 1, '2024-07-15 08:15:18', 0, NULL, 0, NULL, 1),
(8576, 20246, 'Just dial Limited ', 'Customer Relationship manager', '2022-06-22', 21000.00, '2023-09-13', 22000.00, 'Coimbatore ', '1', '1 years 2 months', ' Better prospects ', 1, '2024-07-15 09:04:38', 0, NULL, 0, NULL, 1),
(8577, 20247, 'Bankbazzer.com', 'Senior customer relationship officer ', '2021-10-11', 25000.00, '2024-03-13', 25000.00, 'Ambattur ', '1', '2 years 5 months', ' Increment ', 1, '2024-07-15 09:10:45', 0, NULL, 0, NULL, 1),
(8578, 20248, 'Hewlett packard enterprise', 'Process Associate', '2022-04-11', 17000.00, '2024-04-10', 17000.00, 'Chennai', '1', '1 years 11 months', ' Presonal issue', 1, '2024-07-15 09:38:49', 0, NULL, 0, NULL, 1),
(8579, 20248, 'hewlett', 'process assosiate', '2022-04-12', 20000.00, '2024-06-12', 20000.00, 'chennai', '1', '2 years 2 months', 'career growth', 104, '2024-07-15 03:15:18', 0, NULL, 0, NULL, 1),
(8580, 20249, 'Harsan business solutions ', 'CRE', '2022-10-03', 12000.00, '2023-04-04', 12000.00, 'Kodambakkam ', '1', '0 years 6 months', ' Salary not credited correctly ', 1, '2024-07-15 09:52:29', 0, NULL, 0, NULL, 1),
(8581, 20249, 'V2s fin assist ', 'cRE', '2023-05-01', 15000.00, '2024-04-30', 15000.00, 'Kodambakkam ', '1', '0 years 11 months', 'Company location change ', 1, '2024-07-15 09:58:07', 0, NULL, 0, NULL, 1),
(8582, 20215, 'Zeta', 'Customer support associate ', '2023-05-01', 29000.00, '2024-03-18', 30000.00, 'Bommanahalli', '1', '0 years 10 months', ' Health issues', 1, '2024-07-15 10:12:58', 0, NULL, 0, NULL, 1),
(8583, 20254, 'poorivika mobile ', 'sales ', '2024-01-04', 17500.00, '2024-05-29', 15000.00, 'kolathur', '1', '0 years 4 months', '12hrs Shifting ', 1, '2024-07-15 12:32:58', 0, NULL, 0, NULL, 1),
(8584, 20258, 'Stanfab Apparels Pvt Ltd ', 'HR- Assistant', '2022-06-20', 12500.00, '2024-06-30', 15100.00, 'Tiruppur ', '1', '2 years 0 months', ' I want to develop my skills in the HR relevant filed.', 1, '2024-07-16 05:41:40', 1, '2024-07-16 05:42:55', 0, NULL, 1),
(8585, 20279, 'Star health insurance ', 'Tele verification officer ', '2023-02-07', 250000.00, '2024-06-26', 25000.00, 'Chennai', '1', '1 years 4 months', ' ', 1, '2024-07-16 07:30:12', 0, NULL, 0, NULL, 1),
(8586, 20299, 'Golden forms and developers', 'CRM Executive ', '2023-09-18', 20000.00, '2024-06-05', 20000.00, 'Bangalore ', '1', '0 years 8 months', ' ', 1, '2024-07-17 06:01:22', 0, NULL, 0, NULL, 1),
(8587, 20309, 'Lending leadss', 'Telecalling', '2024-01-10', 23000.00, '1970-01-01', 23000.00, 'Work from home ', '2', '0 years 6 months', ' No', 1, '2024-07-17 07:16:52', 0, NULL, 0, NULL, 1),
(8588, 20308, 'Equitas small finace bank', 'Assistant manager', '2021-09-08', 4.30, '1970-01-01', 4.50, 'Chennai', '2', '2 years 10 months', ' Due to Carrier growth', 1, '2024-07-17 07:45:05', 0, NULL, 0, NULL, 1),
(8589, 20318, 'integeated enterprises india pvt ltd ', 'senior relationship manager ', '2016-06-01', 8000.00, '2023-08-20', 28000.00, 'chennai', '1', '8 years 1 months', 'family issues ', 1, '2024-07-17 09:34:02', 0, NULL, 0, NULL, 1),
(8590, 20321, 'Qconneqt business solutions ', 'Customer support representative ', '0202-07-30', 17379.00, '2022-10-08', 17379.00, 'Roopena agrahara ', '1', '1820 years 2 months', ' Family issues ', 1, '2024-07-17 05:13:45', 0, NULL, 0, NULL, 1),
(8591, 20328, 'Bank zone ', 'Telle caller ', '2023-08-08', 13000.00, '2024-06-27', 15000.00, 'Nungambakkam ', '1', '0 years 10 months', 'Not comfortable with timing ', 1, '2024-07-18 06:04:12', 0, NULL, 0, NULL, 1),
(8592, 20336, 'Restaurant ', 'Cashier and billing ', '2023-11-27', 20000.00, '2024-04-12', 20000.00, 'Mount road', '1', '0 years 4 months', ' ', 1, '2024-07-18 06:16:58', 0, NULL, 0, NULL, 1),
(8593, 20306, 'Cameo corporate service ', 'Team leader ', '2023-02-08', 25.00, '2024-07-15', 25.00, 'Chennai', '1', '1 years 5 months', ' ', 1, '2024-07-18 06:33:15', 0, NULL, 0, NULL, 1),
(8594, 20338, 'TVS CREDIT', 'Telecaller', '2023-02-15', 15000.00, '2024-06-18', 16000.00, 'Nungambakkam', '1', '1 years 4 months', 'Family Issue', 1, '2024-07-18 06:40:07', 0, NULL, 0, NULL, 1),
(8595, 20344, 'Arms connected ', 'Tellecaller ', '2024-02-24', 14000.00, '2024-07-12', 14000.00, 'nandanam', '1', '0 years 4 months', ' Timing & salary date', 1, '2024-07-18 09:14:22', 0, NULL, 0, NULL, 1),
(8596, 20343, 'Arms connected', 'Tellecaller', '2024-03-10', 14000.00, '2024-05-10', 14000.00, 'Nandham', '1', '0 years 2 months', ' Timing & salary', 1, '2024-07-18 09:20:31', 0, NULL, 0, NULL, 1),
(8597, 20342, 'Arms connect ', 'Tellecaller', '2024-01-12', 14000.00, '2024-06-12', 14000.00, 'Nandhanam', '1', '0 years 5 months', ' Timing & salary ', 1, '2024-07-18 09:22:38', 0, NULL, 0, NULL, 1),
(8598, 20360, 'Altruist technologies pvt.ltd..,', 'Relationship officer ', '2020-08-28', 13000.00, '2022-02-20', 3.50, 'Gv palya', '1', '1 years 5 months', ' ', 1, '2024-07-19 06:28:46', 0, NULL, 0, NULL, 1),
(8599, 20360, 'Concentrix ', 'Sr.executive', '2022-06-28', 3.50, '2023-11-07', 3.50, 'Bellendur ', '1', '1 years 4 months', 'Process got downsized', 1, '2024-07-19 06:31:32', 0, NULL, 0, NULL, 1),
(8600, 20359, 'Imarque solutions pvt ltd', 'Customer support executive ', '2023-01-18', 12000.00, '2023-08-23', 12000.00, 'Chennai ', '1', '0 years 7 months', ' Father health issue ', 1, '2024-07-19 06:33:01', 0, NULL, 0, NULL, 1),
(8601, 20360, 'Loadshare network works', 'Sr. Associate ', '2023-12-15', 3.50, '2024-06-30', 3.50, 'Korumangala ', '1', '0 years 6 months', 'Na', 1, '2024-07-19 06:33:13', 0, NULL, 0, NULL, 1),
(8602, 20362, 'Amazon development centre', 'ML data associate', '2022-08-22', 18000.00, '2023-10-17', 20000.00, 'Chennai', '1', '1 years 1 months', ' Health issue', 1, '2024-07-19 06:36:58', 0, NULL, 0, NULL, 1),
(8603, 20364, 'MedPlus health care services ', 'Sub level incharge ', '2024-07-20', 5000.00, '1970-01-01', 8000.00, 'Royapuram', '2', '0 years 0 months', ' To improve my skills in customer relationship ', 1, '2024-07-19 07:10:24', 0, NULL, 0, NULL, 1),
(8604, 20368, 'HDB finance ', 'HDB finance ', '2022-12-26', 26.00, '2024-07-09', 18000.00, 'Thousand lights ', '1', '1 years 6 months', ' Salary issue ', 1, '2024-07-19 07:41:29', 0, NULL, 0, NULL, 1),
(8605, 20371, 'Poorvika Pvt Ltd', 'CCTV surveillance', '2022-09-17', 13000.00, '2024-05-31', 15000.00, 'Ekkatuthangal', '1', '1 years 8 months', ' Health issues', 1, '2024-07-19 08:20:09', 0, NULL, 0, NULL, 1),
(8606, 20394, 'Surya', 'Editing style', '2022-06-01', 16.00, '2024-09-30', 16.00, 'Chennai ', '1', '2 years 3 months', ' Night shift presure and low salary ', 1, '2024-07-20 07:40:43', 0, NULL, 0, NULL, 1),
(8607, 20366, 'Bata pvt ltd', 'Sale field', '2021-08-01', 18000.00, '2024-03-31', 25000.00, 'Egmore', '1', '2 years 7 months', ' ', 1, '2024-07-20 10:08:46', 0, NULL, 0, NULL, 1),
(8608, 20397, 'Bajaj housing Finance limited', 'Psf', '2023-02-08', 5.00, '2024-07-21', 10.00, 'Bangalore', '1', '1 years 5 months', 'Career growth', 1, '2024-07-21 04:40:03', 0, NULL, 0, NULL, 1),
(8609, 20399, 'viveks private limited ', 'appointment scheduler ', '2023-10-03', 7.00, '2024-06-23', 21000.00, 'mylapore', '1', '0 years 8 months', ' I asked for a leave due to my grandfather death. So he approval for 1 day only, Actually my native is in Thirunelveli, Maximum it takes two days, After that 2 days will Receive a mail for termination', 1, '2024-07-22 05:32:56', 0, NULL, 0, NULL, 1),
(8610, 20399, 'viveks private limited ', 'appointment scheduler ', '2023-10-03', 7.00, '2024-06-23', 21000.00, 'mylapore ', '1', '0 years 8 months', 'I asked for a leave due to my grandfathers death, Actually my native in thirunelveli, so he will give a leave for one day. ', 1, '2024-07-22 05:35:18', 1, '2024-07-22 05:35:51', 0, NULL, 0),
(8611, 20401, 'Teamlease ', 'Tellcallers executive ', '2022-11-14', 140000.00, '2024-03-05', 170000.00, 'Cmbt', '1', '1 years 3 months', ' Health issues ', 1, '2024-07-22 05:56:24', 0, NULL, 0, NULL, 1),
(8612, 20403, 'Propel fineway private limited ', 'Sales executive ', '2023-06-05', 1.00, '2024-06-05', 14500.00, 'Ekkaduthangal', '1', '1 years 0 months', ' For my career growth and salary low ', 1, '2024-07-22 06:33:09', 0, NULL, 0, NULL, 1),
(8613, 20411, 'One point one solution ', 'Sr customer relationship executive ', '2022-11-14', 15000.00, '2024-05-22', 26000.00, 'Kudlugate ', '1', '1 years 6 months', ' Personal health issue and marriage ', 1, '2024-07-22 09:34:09', 0, NULL, 0, NULL, 1),
(8614, 20418, 'davan cop serv', 'tl and fe', '2024-04-05', 25000.00, '1970-01-01', 23000.00, ' t nagar', '2', '0 years 3 months', ' ', 1, '2024-07-23 05:07:40', 0, NULL, 0, NULL, 1),
(8615, 20420, 'Info search bpo service ', 'Customer support executive ', '2022-11-28', 13000.00, '2024-06-29', 15000.00, 'Chennai', '1', '1 years 7 months', ' For better opportunity ', 1, '2024-07-23 05:11:18', 0, NULL, 0, NULL, 1),
(8616, 20425, 'HDFC ERGO GENERAL INSURENCE ', 'SALES MANAGER ', '2023-02-02', 30000.00, '2024-06-14', 30000.00, 'PORUR', '1', '1 years 4 months', ' Health issue ', 1, '2024-07-23 06:33:27', 0, NULL, 0, NULL, 1),
(8617, 20432, 'Star health insurence ', 'Associate', '2023-07-20', 15000.00, '2024-05-20', 15000.00, 'Chennai', '1', '0 years 10 months', ' ', 1, '2024-07-23 09:46:56', 0, NULL, 0, NULL, 1),
(8618, 20439, 'think and learn ', 'process specialist', '2023-10-17', 6.48, '1970-01-01', 6.48, 'banglore', '2', '0 years 9 months', ' Location change ', 1, '2024-07-24 06:09:43', 0, NULL, 0, NULL, 1),
(8619, 20441, 'Star health insurance ', 'Telesales Officer ', '2022-09-05', 16000.00, '2024-03-01', 18000.00, 'Chennai ', '1', '1 years 5 months', 'There is no proper hike in the company ', 1, '2024-07-24 06:21:42', 0, NULL, 0, NULL, 1),
(8620, 20443, 'Om innovation ', 'Coustomer executive ', '2023-03-07', 10.00, '2024-03-07', 15000.00, 'Chetpet ', '1', '1 years 0 months', 'Salary not fixable on date ', 1, '2024-07-24 07:29:30', 0, NULL, 0, NULL, 1),
(8621, 20447, 'Sagility ', 'Claim adjudication ', '2019-12-12', 13000.00, '2023-12-28', 22000.00, 'Bangalore ', '1', '4 years 0 months', ' No growth ', 1, '2024-07-24 12:22:01', 0, NULL, 0, NULL, 1),
(8622, 20451, 'Sagility ', 'Claims specialist ', '2021-03-04', 105000.00, '2022-12-28', 250000.00, 'Banglore ', '1', '1 years 9 months', 'Because I am looking for a better career opportunity ', 1, '2024-07-25 02:31:58', 0, NULL, 0, NULL, 1),
(8623, 20466, 'Skylark HR Solutions ', 'HR Recruiter Cum Coordinator ', '2023-03-13', 10000.00, '2024-04-06', 15000.00, 'CHENNAI', '1', '1 years 0 months', ' Personal issue ', 1, '2024-07-26 04:34:13', 0, NULL, 0, NULL, 1),
(8624, 20473, 'Phonepe Private Limited', 'Sale\'s executive ', '2024-02-29', 1.00, '2024-03-31', 17000.00, 'Chennai', '1', '0 years 1 months', ' Because Feb 12 I got married so that\'s y only I\'ll searching one good job for long term ', 1, '2024-07-26 06:04:29', 0, NULL, 0, NULL, 1),
(8625, 20474, 'White coat consultancy ', 'Hr recruiter ', '2023-02-20', 15000.00, '2023-11-01', 15000.00, 'Ashok nagar ', '1', '0 years 8 months', ' Prepare for government exam ', 1, '2024-07-26 06:08:00', 0, NULL, 0, NULL, 1),
(8626, 20486, 'Aakash hospital ', 'Front office executive ', '2021-12-07', 14000.00, '2024-03-31', 17000.00, 'Thiruvottiyur ', '1', '2 years 3 months', ' Exam', 1, '2024-07-26 03:56:40', 0, NULL, 0, NULL, 1),
(8627, 20488, 'Kgisl information technology  chennai', 'Carrier councilor (BDA)', '2023-08-08', 7.00, '2024-05-07', 25000.00, 'Chennai anna nagar', '1', '0 years 8 months', ' Looking for better carrier ', 1, '2024-07-27 04:53:39', 0, NULL, 0, NULL, 1),
(8628, 20501, 'Select n source consultant Pvt Ltd Pondicherry ', 'HR recruiter ', '2024-04-10', 10000.00, '1970-01-01', 10000.00, 'Pondicherry ', '2', '0 years 3 months', ' Due to low salary. I\'m like to change my job', 1, '2024-07-27 07:08:49', 0, NULL, 0, NULL, 1),
(8629, 20505, 'Star health insurance company ', 'Telecaller ', '2023-06-15', 28000.00, '2024-06-15', 28000.00, 'Bangalore', '1', '1 years 0 months', ' Salary issue ', 1, '2024-07-27 08:48:16', 0, NULL, 0, NULL, 1),
(8630, 20494, 'One point one solution ', 'Costumer relationship ', '2023-05-06', 14000.00, '2024-05-09', 17000.00, 'Banglore ', '1', '1 years 0 months', 'Salary issue...', 1, '2024-07-27 11:16:39', 0, NULL, 0, NULL, 1),
(8631, 20517, 'Ebix cash ', 'Customer support ', '2023-12-01', 15000.00, '2024-06-20', 15000.00, 'Gb palya', '1', '0 years 6 months', ' Salary less ', 1, '2024-07-29 06:30:10', 0, NULL, 0, NULL, 1),
(8632, 20519, 'Dream work management', 'Telecaller', '2019-07-29', 10000.00, '2023-12-01', 132000.00, 'Chennai', '1', '4 years 4 months', ' Health issue', 1, '2024-07-29 07:12:23', 0, NULL, 0, NULL, 1),
(8633, 20522, 'Matrimony ', 'Payment assistance ', '2024-02-16', 20000.00, '2024-07-25', 20000.00, 'Chennai ', '1', '0 years 5 months', ' Timing issues', 1, '2024-07-29 08:37:16', 0, NULL, 0, NULL, 1),
(8634, 20521, 'Matrimony ', 'Payment assistant ', '2024-02-15', 17808.00, '2024-07-27', 17808.00, 'Guindy ', '1', '0 years 5 months', 'Shift timings and Travelling issue.', 1, '2024-07-29 08:38:15', 0, NULL, 0, NULL, 1),
(8635, 20527, 'HDFC ', 'Virtual relationship manager ', '2023-03-09', 18000.00, '2024-07-30', 18000.00, 'Chennai ', '1', '1 years 4 months', ' ', 1, '2024-07-29 04:03:38', 0, NULL, 0, NULL, 1),
(8636, 20530, 'Olx autos', 'Document analysis', '2021-11-21', 15000.00, '2024-01-01', 24000.00, 'Chennai', '1', '2 years 1 months', ' Company closed', 1, '2024-07-30 04:37:30', 0, NULL, 0, NULL, 1),
(8637, 20531, 'Cloudi5 technology ', 'MERN stack Developer ', '2024-04-11', 1.00, '2024-05-10', 23000.00, 'Coimbatore ', '1', '0 years 0 months', ' That is free launcher work', 1, '2024-07-30 04:45:29', 0, NULL, 0, NULL, 1),
(8638, 20533, 'Revoh innovation pvt ltd ', 'Hardware testing engineer ', '2024-05-01', 24500.00, '2024-06-30', 24500.00, 'Chennai IITMRP', '1', '0 years 1 months', ' Due to insufficient fund our company is closed ', 1, '2024-07-30 04:52:04', 0, NULL, 0, NULL, 1),
(8639, 20533, 'Adaptek automation technology ', 'Testing engineer ', '2023-05-01', 19000.00, '2024-04-30', 19000.00, 'Chennai', '1', '0 years 11 months', 'Job offer in research development ', 1, '2024-07-30 04:52:56', 0, NULL, 0, NULL, 1),
(8640, 20533, 'Srushty global solutions ', 'Production engineer ', '2022-05-01', 15000.00, '2023-04-30', 15000.00, 'Chennai', '1', '0 years 11 months', 'Company manufacturing unit is closed', 1, '2024-07-30 04:53:50', 0, NULL, 0, NULL, 1),
(8641, 20526, 'Shri Mishri Tvs ', 'Sales assistant manager ', '2023-07-20', 8.00, '2024-04-30', 22500.00, 'Choolaimedu ', '1', '0 years 9 months', ' I did my ug in correspondence so I Asked leave from my previous company for exam they don\'t gave.so i resigned my job and went for my exam.', 1, '2024-07-30 05:44:51', 0, NULL, 0, NULL, 1),
(8642, 20526, 'Madras engineering industry ', 'Operator engineer ', '2022-02-07', 3.00, '2023-01-30', 17000.00, 'Chengalpat', '1', '0 years 11 months', 'They are take only traine . ', 1, '2024-07-30 05:47:45', 0, NULL, 0, NULL, 1),
(8643, 20537, 'Deloitte ', 'Junior trafficker ', '2023-08-08', 21000.00, '2024-02-02', 19000.00, 'Chennai ', '1', '0 years 5 months', ' Shift time not flexible cause some health issues ', 1, '2024-07-30 06:12:02', 0, NULL, 0, NULL, 1),
(8644, 20538, '1point1', 'Sales and recovery ', '2023-10-01', 15.00, '2024-07-26', 2.30, 'Kovilambakkam', '1', '0 years 9 months', 'Salery date is 15th of the every month.', 1, '2024-07-30 06:16:35', 0, NULL, 0, NULL, 1),
(8645, 20539, 'India Mart ', 'I was being telecalling nd sales executive ', '2024-01-17', 22.50, '1970-01-01', 22.50, 'Anna nagar ', '2', '0 years 6 months', ' Because thy given me very much pressure soo', 1, '2024-07-30 06:19:16', 0, NULL, 0, NULL, 1),
(8646, 20540, 'Allset business solutions', 'Telecollection', '2024-04-23', 16000.00, '2024-07-01', 16000.00, 'Thousand light ', '1', '0 years 2 months', ' Did Not Give Emergency Leave and long distance and late night is logout time ', 1, '2024-07-30 06:36:55', 0, NULL, 0, NULL, 1),
(8647, 20528, 'ALLSEC technologies ', 'Customer care executive ', '2023-02-01', 18000.00, '2024-02-07', 297000.00, 'Shanthi Nagar ', '1', '1 years 0 months', ' For better opportunity ', 1, '2024-07-30 07:04:28', 0, NULL, 0, NULL, 1),
(8648, 20547, 'Medplus', 'Pharmacy aide', '2020-12-17', 14000.00, '2024-05-21', 20000.00, 'Vadapalani', '1', '3 years 5 months', ' Health issue', 1, '2024-07-30 07:46:23', 0, NULL, 0, NULL, 1),
(8649, 20554, 'bank bazaar', 'CRO', '2023-05-02', 15000.00, '2023-12-13', 18000.00, 'amabthur', '1', '0 years 7 months', 'Family issues', 104, '2024-07-31 10:38:01', 0, NULL, 0, NULL, 1),
(8650, 13359, 'ICICI Lombard ', 'Tele caller ', '2024-07-02', 17500.00, '2024-07-24', 17500.00, 'Thousands light ', '1', '0 years 0 months', 'Mother  health issues ', 1, '2024-07-31 05:34:02', 0, NULL, 0, NULL, 1),
(8651, 20555, 'aravind ceramica', 'supervisor', '2023-08-18', 13000.00, '2024-07-31', 1300.00, 'Thanjavur', '1', '0 years 11 months', ' salary', 1, '2024-07-31 05:43:27', 0, NULL, 0, NULL, 1),
(8652, 20557, 'Goalchrist', 'Process associate', '2023-07-17', 14600.00, '2024-06-10', 14600.00, 'Jayanagar 5th block', '1', '0 years 10 months', 'Entrance exam', 1, '2024-07-31 06:00:04', 0, NULL, 0, NULL, 1),
(8653, 20570, 'Easestay ', 'Voice process and mail chat ', '2024-01-10', 2000.00, '2024-07-20', 20000.00, 'Amjikarai ', '1', '0 years 6 months', ' ', 1, '2024-08-01 05:12:53', 0, NULL, 0, NULL, 1),
(8654, 20571, 'Allsec Technologies pvt.ltd ', 'Customer care executive ', '2022-09-09', 15000.00, '2024-05-07', 20000.00, 'MG road ', '1', '1 years 7 months', ' Health issues ', 1, '2024-08-01 05:49:54', 0, NULL, 0, NULL, 1),
(8655, 20575, 'Indusind bank ', 'Customer support executive ', '2022-09-14', 25.00, '2024-07-28', 15014.00, 'Karappakkam ', '1', '1 years 10 months', ' Sum financial issue ', 1, '2024-08-01 06:06:49', 0, NULL, 0, NULL, 1),
(8656, 20576, 'Byjus ', 'Business development associate ', '2023-09-12', 32000.00, '2024-03-16', 32000.00, 'Chennai', '1', '0 years 6 months', ' Salary not credited for 2months ', 1, '2024-08-01 06:12:20', 0, NULL, 0, NULL, 1),
(8657, 20579, 'Club Mahindra Holidays ', 'Senior relationship manager ', '2022-11-10', 24000.00, '2024-07-30', 28000.00, 'Mount road', '1', '1 years 8 months', ' Health issues ', 1, '2024-08-01 06:21:49', 0, NULL, 0, NULL, 1),
(8658, 20579, 'Marketsoft1 analytical marketing solutions', 'Inside telesales executive ', '2019-06-07', 15000.00, '2022-10-20', 20000.00, 'Little mount ', '1', '3 years 4 months', 'Career growth ', 1, '2024-08-01 06:23:12', 0, NULL, 0, NULL, 1),
(8659, 20578, 'Armsoftec.air private limited ', 'Executive ', '2020-12-01', 14000.00, '2022-08-01', 17000.00, 'Perungudi', '1', '1 years 8 months', ' Salary issue', 1, '2024-08-01 06:24:21', 0, NULL, 0, NULL, 1),
(8660, 20580, 'allsec technologies ltd', 'customer care executive ', '2022-09-20', 18000.00, '1970-01-01', 23600.00, 'mg road ', '2', '1 years 10 months', ' travelling ', 1, '2024-08-01 06:41:36', 0, NULL, 0, NULL, 1),
(8661, 20506, 'Prestine credit core Services', 'Collection department ', '2023-07-10', 22000.00, '2024-07-22', 22000.00, 'Bangalore ', '1', '1 years 0 months', ' ', 1, '2024-08-01 08:49:48', 0, NULL, 0, NULL, 1),
(8662, 20586, 'firstsource', 'crm', '2013-04-01', 120000.00, '2014-05-01', 150000.00, 'ambattur', '1', '1 years 1 months', ' Distance ', 1, '2024-08-01 11:14:57', 0, NULL, 0, NULL, 1),
(8663, 20589, 'bigwigs technology', 'team leader for sales ', '2022-05-11', 26000.00, '2023-04-25', 30499.00, 'trichy', '1', '0 years 11 months', 'Health Issues for my brother ', 1, '2024-08-02 03:54:05', 0, NULL, 0, NULL, 1),
(8664, 20590, 'Ntt data', 'Customer service representative ', '2022-02-04', 18000.00, '2023-09-21', 30000.00, 'Chennai', '1', '1 years 7 months', ' Personal issues ', 1, '2024-08-02 04:52:58', 0, NULL, 0, NULL, 1),
(8665, 20587, 'NBS associates', 'customer support', '2022-08-01', 10000.00, '2024-08-31', 12000.00, 'Kelpakam', '1', '2 years 0 months', 'low pay Salary', 104, '2024-08-02 10:58:47', 0, NULL, 0, NULL, 1),
(8666, 20596, 'Ashiq India pvt ltd', 'Quality engineer ', '2023-08-02', 2.00, '2024-03-02', 18500.00, 'Chennai ', '1', '0 years 7 months', ' Career growth ', 1, '2024-08-02 06:15:40', 0, NULL, 0, NULL, 1),
(8667, 20556, 'San global ', 'Sales ', '2022-05-22', 20000.00, '2024-07-31', 20000.00, 'Mount road ', '1', '2 years 2 months', ' Company shifted ', 1, '2024-08-02 06:40:44', 0, NULL, 0, NULL, 1),
(8668, 20598, 'casa grand buliders', 'Telesales', '2024-03-04', 23000.00, '2024-06-28', 23000.00, 'thiruvamiYur', '1', '0 years 3 months', 'timing issues, not given any incentives', 104, '2024-08-02 12:17:38', 0, NULL, 0, NULL, 1),
(8669, 20598, 'just dial', 'telecalling', '2023-07-12', 6000.00, '2023-12-27', 6000.00, 'little mount', '1', '0 years 5 months', 'salary issue', 104, '2024-08-02 12:20:05', 0, NULL, 0, NULL, 1),
(8670, 20601, 'San global', 'Salas', '2023-06-07', 13000.00, '2023-06-30', 15000.00, 'LIC ', '1', '0 years 0 months', ' Salary issues', 1, '2024-08-02 06:54:45', 0, NULL, 0, NULL, 1),
(8671, 20602, 'intronsoft', 'associate software engineer', '2023-02-02', 8000.00, '2024-03-31', 8000.00, 'madurai', '1', '1 years 1 months', ' Project rampdown', 1, '2024-08-02 07:24:27', 0, NULL, 0, NULL, 1),
(8672, 20600, 'altruist Technologies pvt ltd', 'emi collection', '2023-04-26', 12000.00, '2024-07-10', 12000.00, 'mount road', '1', '1 years 2 months', 'no salary increment and hike', 104, '2024-08-02 01:03:33', 104, '2024-08-02 01:03:45', 0, NULL, 1),
(8673, 20603, 'Infosys ', 'Assistant Manager ', '2022-04-08', 11.00, '2023-09-26', 11.00, 'Bangalore ', '1', '1 years 5 months', ' Lay off', 1, '2024-08-02 08:10:59', 0, NULL, 0, NULL, 1),
(8674, 12995, 'Altruist technologies private limited', 'Business associate', '2023-05-25', 12000.00, '2024-06-06', 12000.00, 'Chennai', '1', '1 years 0 months', ' Salary hike', 1, '2024-08-02 09:34:42', 0, NULL, 0, NULL, 1),
(8675, 20604, 'SBI life insurance ', 'Sales officer ', '2023-12-08', 24.00, '2024-04-25', 24.00, 'Indiranagar ', '1', '0 years 4 months', ' Health issues ', 1, '2024-08-02 09:51:27', 0, NULL, 0, NULL, 1),
(8676, 20608, 'Randstad India pvt ltd ', 'Sales ', '2023-07-01', 20.00, '2024-07-31', 20.00, 'Chennai ', '1', '1 years 0 months', 'Salary ', 1, '2024-08-03 05:02:04', 0, NULL, 0, NULL, 1),
(8677, 20613, 'Fr8', 'Coordinator ', '2021-12-27', 20.00, '2024-07-10', 20.00, 'Chennai ', '1', '2 years 6 months', ' Seeking Better opportunity ', 1, '2024-08-03 07:04:07', 0, NULL, 0, NULL, 1),
(8678, 20597, 'SHRIRAM FINANCE LIMITED', 'RELATIONSHIP EXECUTIVE', '2023-01-05', 19990.00, '2024-01-31', 23000.00, 'DHARMAPURI', '1', '1 years 0 months', 'Best Growth increase', 1, '2024-08-05 12:44:38', 0, NULL, 0, NULL, 1),
(8679, 20597, 'CHOLA BUSINESS SERVICE LIMITED', 'DEPUTY OFFICER ', '2024-02-05', 22450.00, '2024-07-01', 22450.00, 'DHARMAPURI', '1', '0 years 6 months', 'Family issues ', 1, '2024-08-05 12:47:15', 0, NULL, 0, NULL, 1),
(8680, 20623, 'Teleperformance ', 'Customer service associate ', '2022-08-22', 14300.00, '2023-10-05', 15200.00, 'Bangalore ', '1', '1 years 1 months', 'Family Medical Issue', 1, '2024-08-05 05:08:36', 0, NULL, 0, NULL, 1),
(8681, 20627, 'HDFC', 'Credit card sales ', '2024-04-06', 15000.00, '2024-08-01', 20000.00, 'Vadapalani ', '1', '0 years 3 months', ' Work pressure and Work time not satisfied ', 1, '2024-08-05 06:20:33', 0, NULL, 0, NULL, 1),
(8682, 20628, 'Polaris ', 'Telemarketing executive ', '2013-11-05', 10000.00, '2015-11-03', 10000.00, 'Chennai', '1', '1 years 11 months', ' ', 1, '2024-08-05 07:35:16', 0, NULL, 0, NULL, 1),
(8683, 20628, 'Bank bazaar ', 'Senior customer relationship manager ', '2017-11-11', 390000.00, '2023-06-11', 390000.00, 'Chennai', '1', '5 years 7 months', 'Looking for job change ', 1, '2024-08-05 07:37:00', 0, NULL, 0, NULL, 1),
(8684, 20634, 'Cognizant technology solutions Pvt Ltd ', 'Process Executive Voice ', '2022-11-09', 20000.00, '2023-12-14', 25000.00, 'Hyderabad ', '1', '1 years 1 months', 'Seeking a better position, higher pay, and more opportunities for growth.', 1, '2024-08-05 02:09:20', 0, NULL, 0, NULL, 1),
(8685, 20635, 'Hdb financial services ', 'Senior tellecaller', '2022-12-26', 31.00, '2024-07-09', 13000.00, 'Chennai', '1', '1 years 6 months', 'Need  Better salary', 1, '2024-08-05 02:22:20', 0, NULL, 0, NULL, 1),
(8686, 20637, 'KV Associates ', 'Accounts Assistant ', '2023-04-24', 11000.00, '2024-04-30', 11000.00, 'Nungambakkam ', '1', '1 years 0 months', ' Looking for great Opportunity to enhance my skills and knowledge ', 1, '2024-08-06 04:55:17', 0, NULL, 0, NULL, 1),
(8687, 20636, 'Government of Telangana ', 'Computer operator ', '2023-06-15', 19500.00, '2023-11-14', 19500.00, 'Hyderabad ', '1', '0 years 4 months', ' Change of Government ', 1, '2024-08-06 05:17:35', 0, NULL, 0, NULL, 1),
(8688, 20639, 'RGR Academy ', 'Tele sales', '2024-01-03', 15000.00, '2024-07-31', 25000.00, 'Ambattur ', '1', '0 years 6 months', ' ', 1, '2024-08-06 05:33:39', 0, NULL, 0, NULL, 1),
(8689, 20645, 'TVS MOTOR PVT LTD ', 'Apprentice trainee ', '2021-07-15', 14250.00, '2022-07-15', 17250.00, 'Hosur ', '1', '1 years 0 months', 'Completion of Contract ', 1, '2024-08-06 06:48:13', 0, NULL, 0, NULL, 1),
(8690, 20646, 'Paisa bazaar ', 'Sales executive ', '2024-04-25', 18500.00, '2024-09-30', 20000.00, 'Chennai ', '1', '0 years 5 months', 'Bike  Accident ', 1, '2024-08-06 07:12:25', 0, NULL, 0, NULL, 1),
(8691, 20646, 'Indian red cross society ', 'CDO', '2018-07-25', 12000.00, '2019-05-30', 12000.00, 'Chennai ', '1', '0 years 10 months', 'Search good job ', 1, '2024-08-06 07:14:00', 0, NULL, 0, NULL, 1),
(8692, 20650, 'Policy bazaar ', 'Financial Advisor ', '2023-11-02', 29000.00, '2024-06-11', 36000.00, 'Bengaluru ', '1', '0 years 7 months', ' Met with an accident ', 1, '2024-08-06 07:41:02', 0, NULL, 0, NULL, 1),
(8693, 20650, 'Kalyani motors pvt ltd ', 'Relationship manager ', '2018-08-08', 14000.00, '2020-04-10', 16000.00, 'Bengaluru ', '1', '1 years 8 months', 'Carrier growth ', 1, '2024-08-06 07:42:30', 0, NULL, 0, NULL, 1),
(8694, 20650, 'Value drive technology pvt ltd (Spinny)', 'Customer Relationship Manager ', '2021-04-09', 22000.00, '2022-03-10', 25000.00, 'Bengaluru ', '1', '0 years 11 months', 'Carrier growth ', 1, '2024-08-06 07:44:11', 0, NULL, 0, NULL, 1),
(8695, 20644, 'Hdb financial services ', 'Telecalling', '2022-06-10', 12000.00, '2022-12-01', 12000.00, 'Nungampakkam', '1', '0 years 5 months', ' Office location changed ', 1, '2024-08-06 07:48:08', 0, NULL, 0, NULL, 1),
(8696, 20652, 'Eximio pvt Ltd ', 'Process Associate ', '2023-05-21', 10000.00, '2024-06-30', 15000.00, 'Chennai Ambattur ', '1', '1 years 1 months', ' ', 1, '2024-08-06 09:43:51', 0, NULL, 0, NULL, 1),
(8697, 20653, 'Eximio private limited', 'Process associate ', '2023-02-13', 10000.00, '2024-06-30', 15000.00, 'Ambattur ', '1', '1 years 4 months', ' Explore new things and new people ', 1, '2024-08-06 09:44:21', 0, NULL, 0, NULL, 1),
(8698, 20655, '5k car care ', 'Customer support', '2023-03-01', 5.00, '2023-08-31', 15000.00, 'Chennai, maduravoyal', '1', '0 years 5 months', 'For my family situation ', 1, '2024-08-06 02:27:09', 0, NULL, 0, NULL, 1),
(8699, 20663, 'Star health insurance ', 'Sale\'s exctveive ', '2023-12-16', 23000.00, '2024-06-30', 23000.00, 'Bangalore ', '1', '0 years 6 months', ' Family problem', 1, '2024-08-07 05:55:00', 0, NULL, 0, NULL, 1),
(8700, 20631, 'Auntrist pvt ltd', 'Backend work', '2023-02-14', 10000.00, '2023-12-12', 10000.00, 'Chennai', '1', '0 years 9 months', ' Pressure', 1, '2024-08-07 06:13:00', 0, NULL, 0, NULL, 1),
(8701, 20649, 'Quess Corp ', 'Sales Officer ', '2022-07-18', 18500.00, '1970-01-01', 25000.00, 'Thiruvottiyur ', '2', '2 years 0 months', ' Career Growth', 1, '2024-08-08 04:37:19', 0, NULL, 0, NULL, 1),
(8702, 20681, 'hdfc bank', 'phonebanking', '2023-03-10', 14500.00, '2024-06-29', 14500.00, 'chennai', '1', '1 years 3 months', ' ', 1, '2024-08-08 06:27:22', 0, NULL, 0, NULL, 1),
(8703, 20683, 'Altruist private limited ', 'Escalation team', '2021-11-30', 10500.00, '2022-04-12', 15000.00, 'Karappakkam', '1', '0 years 4 months', ' For study purpose\n', 1, '2024-08-08 06:57:33', 0, NULL, 0, NULL, 1),
(8704, 20685, 'Star health insurance', 'Telecaller', '2020-08-10', 15000.00, '2024-06-07', 12000.00, 'Kodambakkam', '1', '3 years 9 months', ' Family issues', 1, '2024-08-08 08:23:28', 0, NULL, 0, NULL, 1),
(8705, 20688, 'Star health insurance company ', 'Telesales', '2024-01-21', 16000.00, '2024-08-02', 16000.00, 'Vadapalani', '1', '0 years 6 months', ' Salary is  low ', 1, '2024-08-09 05:09:17', 0, NULL, 0, NULL, 1),
(8706, 20688, 'tAURUS BPO', 'PERSONAL LOAN PROCESS', '2023-07-03', 16000.00, '2024-01-10', 16000.00, 'VELACHERI', '1', '0 years 6 months', 'COMPANY WAS CLOSED', 104, '2024-08-09 10:44:46', 0, NULL, 0, NULL, 1),
(8707, 20688, 'tAURUS BPO', 'PERSONAL LOAN PROCESS', '2023-07-03', 16000.00, '2024-01-10', 16000.00, 'VELACHERI', '1', '0 years 6 months', 'COMPANY WAS CLOSED', 104, '2024-08-09 10:44:47', 104, '2024-08-09 10:45:09', 0, NULL, 0),
(8708, 20693, 'Matrimony.com', 'Telesales officer ', '2022-09-02', 14000.00, '2023-10-15', 15000.00, 'Guindy industrial estate ', '1', '1 years 1 months', ' Salary exception ', 1, '2024-08-09 06:06:46', 0, NULL, 0, NULL, 1),
(8709, 20699, 'Cap call centre pvt ltd', 'Customer service ', '2023-01-04', 15000.00, '2024-07-20', 15500.00, 'Bangalore ', '1', '1 years 6 months', ' ', 1, '2024-08-09 06:39:35', 0, NULL, 0, NULL, 1),
(8710, 20701, 'GSR Brandmidass ', 'Senior customer service executive ', '2023-01-17', 26000.00, '2024-08-31', 26000.00, 'Chennai', '1', '0 years 0 months', ' Carrier growth ', 1, '2024-08-09 06:45:34', 0, NULL, 0, NULL, 1),
(8711, 20700, 'Give a hand Foundation', 'Telecaller', '2022-11-15', 12000.00, '2023-08-10', 15000.00, 'Chrompet', '1', '0 years 8 months', 'Not a expectation salary', 1, '2024-08-09 06:52:11', 0, NULL, 0, NULL, 1),
(8712, 20695, 'Suji ', 'Admin office in accounting ', '2022-09-30', 17000.00, '2023-12-13', 17000.00, 'Dubai ', '1', '1 years 2 months', ' ', 1, '2024-08-09 06:57:46', 0, NULL, 0, NULL, 1),
(8713, 20703, 'Reliance Digital pvt. ltd', 'Telesales', '2023-04-01', 10000.00, '2024-08-09', 15000.00, 'Attur', '2', '1 years 4 months', ' As my family is staying here in Tambaram, Chennai, I wanted to shift here. and also to improve my career. ', 1, '2024-08-09 08:47:34', 0, NULL, 0, NULL, 1),
(8714, 20706, 'Taal Tech india pvt ltd', 'Admin executive', '2023-01-16', 1.00, '2024-08-07', 27000.00, 'Bangalore', '1', '1 years 6 months', ' No benefits and growth', 1, '2024-08-09 11:51:50', 0, NULL, 0, NULL, 1),
(8715, 20716, 'Techgenzi private limited ', 'Customer support executive ', '2023-02-17', 15000.00, '2024-03-27', 16000.00, 'Coimbatore', '1', '1 years 1 months', ' Long distance to commute', 1, '2024-08-10 06:10:53', 0, NULL, 0, NULL, 1),
(8716, 20716, 'Carolina technology ', 'International voice process associate ', '2024-04-15', 22000.00, '2024-07-31', 22000.00, 'Coimbatore', '1', '0 years 3 months', 'Project closed ', 1, '2024-08-10 06:11:45', 0, NULL, 0, NULL, 1),
(8717, 20711, 'Shriram life insurance ', 'Senior executive ', '2022-09-15', 19000.00, '2024-08-10', 20000.00, 'Egmore ', '2', '1 years 10 months', ' Salary issue ', 1, '2024-08-10 06:34:19', 0, NULL, 0, NULL, 1),
(8718, 20721, 'Amtex software solutions pvt ltd ', 'Call taker officer ', '2024-05-01', 14000.00, '2024-08-10', 14000.00, 'Egmore ', '1', '0 years 3 months', ' ', 1, '2024-08-11 07:52:16', 0, NULL, 0, NULL, 1),
(8719, 20723, 'Exela Technologies', 'Junior processor', '2019-01-12', 13000.00, '2022-03-07', 15000.00, 'Thanjavur', '1', '3 years 1 months', 'My Father Health issue', 1, '2024-08-12 04:58:00', 0, NULL, 0, NULL, 1),
(8720, 20719, 'Stellar innovations private limited ', 'Process analyat', '2023-11-01', 9000.00, '2024-07-31', 11000.00, 'Sholingur ', '1', '0 years 8 months', ' Travelling expenses and time', 1, '2024-08-12 04:59:27', 0, NULL, 0, NULL, 1),
(8721, 20725, 'Hdfc bank ', 'Sales officer ', '2021-03-12', 2021.00, '2024-02-17', 18000.00, 'Chennai ', '1', '2 years 11 months', ' Personal problem ', 1, '2024-08-12 05:18:35', 0, NULL, 0, NULL, 1),
(8722, 20728, 'Mumuso genaral treading ', 'Data management ', '2021-09-21', 22000.00, '2024-07-11', 62000.00, 'Dubai', '1', '2 years 9 months', ' ', 1, '2024-08-12 05:19:37', 0, NULL, 0, NULL, 1),
(8723, 20726, 'hdfc bank', 'service officer ', '2017-06-27', 2017.00, '1970-01-01', 22000.00, 'chennai', '2', '7 years 1 months', ' Need change ', 1, '2024-08-12 05:20:34', 0, NULL, 0, NULL, 1),
(8724, 20727, 'Lenskart ', 'Sales management ', '2023-02-27', 18000.00, '2023-08-08', 18000.00, 'Chennai', '1', '0 years 5 months', ' Study ', 1, '2024-08-12 05:23:24', 0, NULL, 0, NULL, 1),
(8725, 20731, 'skylink fiber network', 'sales executive', '2022-07-20', 15000.00, '2022-11-09', 15000.00, 'coimbatore', '1', '0 years 3 months', ' ', 1, '2024-08-12 05:58:24', 0, NULL, 0, NULL, 1),
(8726, 20731, 'samsung ', 'sales promoter', '2023-06-08', 19000.00, '2024-01-03', 19000.00, 'coimbatore', '1', '0 years 6 months', 'Some personal reasons ', 1, '2024-08-12 06:00:08', 0, NULL, 0, NULL, 1),
(8727, 20735, 'Oppo mobiles ', 'Oec', '2019-01-29', 5.00, '2020-11-18', 20000.00, 'Porur', '1', '1 years 9 months', ' Marriage ', 1, '2024-08-12 07:13:55', 0, NULL, 0, NULL, 1),
(8728, 20735, 'Reliance fresh ', 'Cashier and admin', '2015-08-11', 4000.00, '2018-04-05', 8000.00, 'Porur', '1', '2 years 7 months', 'Health issues ', 1, '2024-08-12 07:16:20', 0, NULL, 0, NULL, 1),
(8729, 20739, 'Verifacts', 'KYC and BGV Analyst', '2024-04-23', 16000.00, '2024-07-12', 16000.00, 'Chennai', '1', '0 years 2 months', ' No Vacancy in KYC', 1, '2024-08-12 08:18:23', 1, '2024-08-12 08:20:33', 0, NULL, 1),
(8730, 20739, 'MMC Infotech', 'KYC ANALYST', '2022-07-18', 11000.00, '2024-04-20', 12000.00, 'Chennai', '1', '1 years 9 months', 'Salary', 1, '2024-08-12 08:20:08', 0, NULL, 0, NULL, 1),
(8731, 20739, 'Infosearch Bpo', 'Document Verification', '2021-12-23', 11000.00, '2022-02-23', 11000.00, 'Chennai', '1', '0 years 2 months', 'Medical issues', 1, '2024-08-12 08:22:03', 0, NULL, 0, NULL, 1),
(8732, 20739, 'Standard Chartered Bank', 'KYC ANALYST', '2019-07-17', 21000.00, '2020-01-06', 21000.00, 'Chennai', '1', '0 years 5 months', 'Medical issues', 1, '2024-08-12 08:23:43', 0, NULL, 0, NULL, 1),
(8733, 20694, 'Werize ', 'Senior relationship manager ', '2023-08-12', 1.00, '2023-11-30', 31000.00, 'HSR layout ', '1', '0 years 3 months', 'Family problems ', 1, '2024-08-12 09:30:53', 0, NULL, 0, NULL, 1),
(8734, 20741, 'VALMARK ', 'July 2024', '2022-08-01', 20000.00, '2024-08-13', 20000.00, 'Tenkasi. ', '1', '2 years 0 months', ' Office was closed in Tenaksi branch ', 1, '2024-08-13 04:59:48', 0, NULL, 0, NULL, 1),
(8735, 20740, 'Dinal.k', 'Sales executive ', '2024-08-13', 17000.00, '1970-01-01', 18000.00, 'Spenzer', '2', '0 years 0 months', '\n\n', 1, '2024-08-13 05:06:31', 1, '2024-08-13 05:06:59', 0, NULL, 0),
(8736, 20740, 'Dinal.k', 'Sale\'s executive ', '2024-08-13', 17000.00, '1970-01-01', 18000.00, 'Spenzer ', '2', '0 years 0 months', ' ', 1, '2024-08-13 05:13:43', 0, NULL, 0, NULL, 1),
(8737, 20743, 'Shakthi consultancy', 'Junior assistant', '2023-06-01', 12000.00, '2024-07-31', 15000.00, 'Gingee, villupuram district', '1', '1 years 1 months', ' Explore new job opportunity for my career growth', 1, '2024-08-13 05:16:33', 0, NULL, 0, NULL, 1),
(8738, 20748, 'Royal Sundaram general insurance ', 'Order Management Associate ', '2023-02-14', 1.00, '2024-06-30', 28000.00, 'Chennai ', '1', '1 years 4 months', ' Process closed move on vendor ', 1, '2024-08-13 06:27:35', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8739, 20747, 'Tech Mahindra pvt Ltd ', 'Customer associate ', '2023-03-15', 1.00, '2024-07-01', 25000.00, 'Chennai ', '1', '1 years 3 months', ' ', 1, '2024-08-13 06:31:39', 0, NULL, 0, NULL, 1),
(8740, 20751, 'Golden enterprise pvt Ltd ', 'Telesales excutive ', '2023-02-05', 26000.00, '2024-06-03', 27000.00, 'Numbakkam', '1', '1 years 3 months', 'No growth ', 1, '2024-08-13 07:47:57', 0, NULL, 0, NULL, 1),
(8741, 20754, 'TRG Engineering ', 'Accountant ', '2020-12-10', 18000.00, '2024-08-05', 25000.00, 'Vysarpadi ', '1', '3 years 7 months', ' Vysarpadi to Gummidipoondi re located. ', 1, '2024-08-13 09:15:15', 0, NULL, 0, NULL, 1),
(8742, 20763, 'Cameo corporate service ltd', 'Truecaller', '2023-05-04', 12000.00, '2024-08-26', 12000.00, 'Chennai', '1', '1 years 3 months', ' Career growth ', 1, '2024-08-16 05:11:00', 0, NULL, 0, NULL, 1),
(8743, 20764, 'Way 2 News private limited Nandhanam', 'Business development manager ', '2022-09-01', 31.00, '2023-09-01', 20000.00, 'Chennai', '1', '1 years 0 months', ' Business development manager coordinator to Team leader customer Coordination Net work Building ', 1, '2024-08-16 05:39:58', 0, NULL, 0, NULL, 1),
(8744, 20765, 'Officeframework solution chennai', 'Senior executive - Customer support ', '2022-02-28', 24000.00, '2024-09-16', 33000.00, 'Saidapet', '1', '2 years 6 months', ' Night shift ', 1, '2024-08-16 06:01:05', 0, NULL, 0, NULL, 1),
(8745, 20633, 'Paisabazaar', 'Sales Consultant', '2023-01-20', 20.00, '2024-05-01', 18000.00, 'Chennai', '1', '1 years 3 months', ' Distance', 1, '2024-08-16 06:45:52', 0, NULL, 0, NULL, 1),
(8746, 20766, 'Altruist technology pvt Ltd ', 'Quality Analyst ', '2021-03-25', 8000.00, '1970-01-01', 12000.00, 'Perugudi ', '2', '3 years 4 months', ' I want to experience in new field to growth of my career and change my life style ', 1, '2024-08-16 07:02:05', 0, NULL, 0, NULL, 1),
(8747, 20772, 'policybazaar.com', 'associate sales consultant', '2023-03-20', 20000.00, '2023-08-05', 30000.00, 'haryana.Gurgaon ', '1', '0 years 4 months', ' Moved to another city', 1, '2024-08-16 01:34:10', 0, NULL, 0, NULL, 1),
(8748, 20773, 'Bankbazaar ', 'Senior customer relationship officer ', '2023-07-14', 16500.00, '2024-07-14', 20700.00, 'Chennai ', '1', '1 years 0 months', ' I\'d work in this company as a off roll candidate only after 6 months of training they should be promote to onroll but they didn\'t even I have 24 percentage of productivity still they don\'t promote. As an off roll candidate, I won\'t get any benefit from the company like personal insurance , Health insurance, leave benifit..etc so that\'s why I left the company ', 1, '2024-08-16 02:32:22', 0, NULL, 0, NULL, 1),
(8749, 20778, 'Computer Aged Management Services Ltd ', 'Assistant process officer ', '2022-10-31', 12500.00, '1970-01-01', 17377.00, 'Chennai ', '2', '1 years 9 months', ' I\'m the only person working in my home and my mom is hospitalized for carrier growth and salary increment I\'m searching for new job opportunities ', 1, '2024-08-17 05:33:53', 0, NULL, 0, NULL, 1),
(8750, 20780, 'Greet technologies private limited', 'Customer executive', '2019-10-24', 15000.00, '2021-04-09', 15000.00, 'Banglore', '1', '1 years 5 months', ' sick', 1, '2024-08-17 05:59:20', 0, NULL, 0, NULL, 1),
(8751, 20779, 'C S B BANK', 'SALES', '2024-01-01', 18500.00, '2024-09-05', 18500.00, 'VILLUPURAM ', '1', '0 years 8 months', ' My carrier growth and Developing My skills ', 1, '2024-08-17 06:00:05', 0, NULL, 0, NULL, 1),
(8752, 20781, 'C Properties ', 'Chennai ', '2023-02-07', 35.00, '2024-04-10', 35.00, 'Chennai ', '1', '1 years 2 months', ' To gain new experience ', 1, '2024-08-17 06:53:47', 0, NULL, 0, NULL, 1),
(8753, 10374, 'Teleperformance Pvt Ltd', 'Customer Care Executive ', '2018-10-18', 16000.00, '2020-04-21', 18000.00, 'Mohali (Punjab) and Jaipur (Rajasthan)', '1', '1 years 6 months', ' Corona Situation ', 1, '2024-08-17 03:07:27', 0, NULL, 0, NULL, 1),
(8754, 10374, 'Cedar Business Solution', 'Voice Process (EMI Collection)', '2021-04-12', 20600.00, '2022-01-20', 21240.00, 'Aminjikarai', '1', '0 years 9 months', 'Regarding Of My Marriage', 1, '2024-08-17 03:10:25', 0, NULL, 0, NULL, 1),
(8755, 10374, 'Weblink.In Pvt Ltd', 'Voice Outbound Process (Membership Selling)', '2024-01-21', 21240.00, '2024-08-10', 25000.00, 'New Delhi', '1', '0 years 6 months', 'My Mom Health Issues', 1, '2024-08-17 03:13:32', 0, NULL, 0, NULL, 1),
(8756, 20795, 'Bajaj finance ', 'Sales', '2024-02-13', 17500.00, '2024-08-15', 17500.00, 'Chennai ', '1', '0 years 6 months', ' Field work ', 1, '2024-08-19 05:18:19', 0, NULL, 0, NULL, 1),
(8757, 20797, 'Nithyakalyani R', 'Chengalpattu', '2013-06-02', 8000.00, '2024-06-05', 22000.00, 'Kodambakkam', '1', '11 years 0 months', ' Shop Is Closed', 1, '2024-08-19 05:41:02', 1, '2024-08-19 05:41:56', 0, NULL, 1),
(8758, 20800, 'Klr global inc', 'Relieved ', '2020-02-01', 23000.00, '2021-08-01', 23000.00, 'Kodambakkam', '1', '1 years 6 months', ' Family situation ', 1, '2024-08-19 06:01:51', 0, NULL, 0, NULL, 1),
(8759, 20802, 'Lotus food wear enterprise ', '3 years ', '2021-09-06', 22000.00, '2024-05-08', 30000.00, 'Cheyyar ', '1', '2 years 8 months', ' Relocated to Chennai ', 1, '2024-08-19 06:14:01', 0, NULL, 0, NULL, 1),
(8760, 20806, 'Focusedumatics ', 'Online Tutor ', '2023-01-20', 18000.00, '2024-07-02', 18000.00, 'Chennai ', '1', '1 years 5 months', ' ', 1, '2024-08-19 06:55:04', 0, NULL, 0, NULL, 1),
(8761, 20808, 'Altrust technology private limited ', 'Collection Executive ', '2021-09-14', 9500.00, '2023-01-14', 9500.00, 'Karapakkam tecci park ', '1', '1 years 4 months', 'Long distance and health problem', 1, '2024-08-19 09:17:25', 0, NULL, 0, NULL, 1),
(8762, 20808, 'All set business solutions ', 'Team lead', '2023-01-23', 33840.00, '2024-03-30', 33840.00, 'Thousand light', '1', '1 years 2 months', 'Father contract loss & our own shop to loss ', 1, '2024-08-19 09:20:36', 0, NULL, 0, NULL, 1),
(8763, 20811, 'Time institute ', 'Tele caller ', '2019-08-01', 5.00, '2020-04-20', 16000.00, 'Trichy ', '1', '0 years 8 months', ' Part time job in college ', 1, '2024-08-19 12:37:38', 0, NULL, 0, NULL, 1),
(8764, 20813, 'Waxwings ', 'Sales executive  ', '2021-11-10', 15000.00, '2022-07-20', 15000.00, 'Cochin ', '1', '0 years 8 months', ' Joined in aviation industry ', 1, '2024-08-19 02:32:25', 0, NULL, 0, NULL, 1),
(8765, 20813, 'Indigo airlines ', 'Officer security ', '2022-12-01', 21000.00, '2023-03-15', 21000.00, 'Chennai international airport ', '1', '0 years 3 months', 'Personal issue ', 1, '2024-08-19 02:35:10', 0, NULL, 0, NULL, 1),
(8766, 20817, 'Axis Bank ', 'Voice process ', '2024-08-20', 20000.00, '2025-05-31', 12000.00, 'Chennai ', '1', '0 years 9 months', 'Family issue and salary ', 1, '2024-08-20 03:58:51', 0, NULL, 0, NULL, 1),
(8767, 20820, 'Teckzy Research Analysis IT Solutions pvt ltd ', 'Technical Support Engineer ', '2024-04-01', 12000.00, '2024-07-05', 12000.00, 'Chennai ', '1', '0 years 3 months', ' Total branch is cancelled ', 1, '2024-08-20 05:52:34', 0, NULL, 0, NULL, 1),
(8768, 20819, 'ICICI prudential ', 'Unit manager ', '2022-07-12', 20000.00, '2024-07-15', 27100.00, 'Chennai ', '1', '2 years 0 months', ' Career opportunities ', 1, '2024-08-20 05:56:24', 0, NULL, 0, NULL, 1),
(8769, 20822, 'Hdfc bank', 'Corporate salary service officer', '2024-04-23', 16000.00, '2024-07-01', 16000.00, 'Vadapalani', '1', '0 years 2 months', ' Long distance', 1, '2024-08-20 06:03:47', 0, NULL, 0, NULL, 1),
(8770, 20824, 'NextGen solution ', 'Senior HR', '2022-10-03', 23000.00, '2023-11-08', 23000.00, 'Cuddalore ', '1', '1 years 1 months', ' Highers ', 1, '2024-08-20 06:42:11', 0, NULL, 0, NULL, 1),
(8771, 20826, 'Bharathi Airtel limited ', 'CRO', '2016-11-08', 15000.00, '2017-08-08', 15000.00, 'Chennai', '1', '0 years 9 months', ' Health issues ', 1, '2024-08-20 06:43:14', 0, NULL, 0, NULL, 1),
(8772, 20826, 'Intelenet global services ', 'CRO', '2017-11-03', 15000.00, '2018-07-09', 15000.00, 'Hyderabad ', '1', '0 years 8 months', 'Personal reasons ', 1, '2024-08-20 06:44:42', 0, NULL, 0, NULL, 1),
(8773, 20826, 'BSA Abdur Rahman University ', 'Assistant Lab Technician ', '2018-09-10', 12000.00, '2021-03-12', 12000.00, 'Chennai ', '1', '2 years 6 months', 'Personal reasons ', 1, '2024-08-20 06:46:34', 0, NULL, 0, NULL, 1),
(8774, 20826, 'Softgel health care private limited ', 'Qa', '2021-04-15', 18000.00, '2024-01-19', 18000.00, 'Chennai ', '1', '2 years 9 months', 'Health issues ', 1, '2024-08-20 06:48:03', 0, NULL, 0, NULL, 1),
(8775, 20826, 'Don publications private limited ', 'Admin incharge ', '2024-02-06', 13000.00, '1970-01-01', 13000.00, 'Tirunelveli ', '2', '0 years 6 months', 'Low salary', 1, '2024-08-20 06:49:19', 0, NULL, 0, NULL, 1),
(8776, 20828, 'Lycatel BPO private limited ', 'Data Analyst ', '2022-07-27', 19500.00, '2023-11-30', 21000.00, 'Chennai ', '1', '1 years 4 months', ' Personal Reasons ', 1, '2024-08-20 07:13:04', 0, NULL, 0, NULL, 1),
(8777, 20830, 'bank bazaar', 'senior customer Relationships off ', '2023-03-10', 15000.00, '2024-06-10', 24900.00, 'Ambattur', '1', '1 years 3 months', 'Family issue', 1, '2024-08-20 07:57:13', 0, NULL, 0, NULL, 1),
(8778, 20789, 'Bank bazaar', 'Senior customer relationship officer ', '2023-03-07', 15000.00, '2024-06-07', 24567.00, 'Ambattur ', '1', '1 years 3 months', ' To develop my career growth and skill', 1, '2024-08-20 08:05:03', 0, NULL, 0, NULL, 1),
(8779, 20832, 'HDB financial services ', 'Senior sales officer ', '2023-01-10', 20.00, '2024-04-30', 18.00, 'MMDA colony Arumbakkam ', '1', '1 years 3 months', ' Looking for better job and more experience ', 1, '2024-08-20 08:28:11', 0, NULL, 0, NULL, 1),
(8780, 20832, 'HDB financial services ', 'Senior sales officer ', '2023-01-10', 16000.00, '2024-04-30', 18000.00, 'MMDA colony Arumbakkam ', '1', '1 years 3 months', 'Looking for better job and salary expectations ', 1, '2024-08-20 08:31:56', 0, NULL, 0, NULL, 1),
(8781, 20843, 'HTC Global services pvt services ', 'Technical support and error Testing ', '2018-11-08', 5.00, '2019-07-23', 17500.00, 'Vandalur', '1', '0 years 8 months', ' Project finished ', 1, '2024-08-21 05:02:14', 0, NULL, 0, NULL, 1),
(8782, 20840, 'Imarque solution private limited ', 'Sales and collection ', '2024-01-25', 5.00, '1970-01-01', 15000.00, 'Chennai ', '2', '0 years 6 months', 'Salary backage is low then no career growth ', 1, '2024-08-21 05:04:23', 0, NULL, 0, NULL, 1),
(8783, 20847, 'Paterson Securities Pvt Ltd', 'Tirupati ', '2024-07-15', 15000.00, '2024-08-20', 15000.00, 'MR Palli', '1', '0 years 1 months', ' There are not transportation facilities ', 1, '2024-08-21 06:00:09', 0, NULL, 0, NULL, 1),
(8784, 20850, 'Magna automatic private limited ', 'Production ', '2022-02-07', 13500.00, '2024-07-30', 16000.00, 'Mahendra city ', '1', '2 years 5 months', ' Medical leave issue', 1, '2024-08-21 06:29:09', 0, NULL, 0, NULL, 1),
(8785, 20852, 'Hdb financial services ', 'Customer executive support ', '2022-02-17', 14000.00, '2024-02-07', 18000.00, 'Chennai ', '1', '1 years 11 months', ' Iam preparing government exams banking exams again need my family situation ', 1, '2024-08-21 06:49:12', 0, NULL, 0, NULL, 1),
(8786, 20857, 'Cams', 'Senior Executive', '2023-04-20', 13000.00, '2024-02-05', 16000.00, 'Anna salai', '1', '0 years 9 months', ' Tirp ', 1, '2024-08-21 07:07:37', 0, NULL, 0, NULL, 1),
(8787, 20855, 'icic bank', 'senior executive credit card section', '2023-11-21', 12000.00, '2024-05-18', 12000.00, 'manargudi', '1', '0 years 5 months', '  due to Field work ', 1, '2024-08-21 07:20:33', 0, NULL, 0, NULL, 1),
(8788, 20859, 'Fidelis technology services pvt ltd ', 'Data centre administration ', '2023-09-01', 2.80, '2024-04-11', 2.80, 'Bangalore ', '1', '0 years 7 months', ' ', 1, '2024-08-21 07:31:03', 0, NULL, 0, NULL, 1),
(8789, 20863, 'Virendren law &co', 'Social media analayst', '2020-03-01', 16500.00, '2021-03-02', 22917.00, 'Chennai', '1', '1 years 0 months', ' Company shut down due to covid', 1, '2024-08-21 09:13:15', 0, NULL, 0, NULL, 1),
(8790, 20863, 'Stats perform', 'Process trainer', '2021-05-21', 14500.00, '2024-08-14', 22917.00, 'Chennai', '1', '3 years 2 months', 'Salary constraints', 1, '2024-08-21 09:14:45', 0, NULL, 0, NULL, 1),
(8791, 20861, 'dindigul thalappakatti', 'Production assistant manager ', '2023-06-07', 16000.00, '2024-07-01', 14000.00, 'St thomas mount  ', '1', '1 years 0 months', ' 1.less amount of salary', 1, '2024-08-21 09:41:22', 0, NULL, 0, NULL, 1),
(8792, 20871, 'Iccs', 'TL', '2021-03-01', 10000.00, '2023-09-10', 18000.00, 'Sholinganallur', '1', '2 years 6 months', ' For educational purpose', 1, '2024-08-22 03:20:04', 0, NULL, 0, NULL, 1),
(8793, 20874, 'WWD Technology', 'Customer care', '2023-10-10', 8000.00, '2024-07-15', 8000.00, 'Thanjavur', '1', '0 years 9 months', ' Timing issue ', 1, '2024-08-22 05:06:13', 0, NULL, 0, NULL, 1),
(8794, 20876, 'HCL Technologies Pvt Ltd ', 'Associate ', '2018-12-20', 10000.00, '2020-05-22', 12000.00, 'Chennai ', '1', '1 years 5 months', ' Health Issue', 1, '2024-08-22 05:26:02', 0, NULL, 0, NULL, 1),
(8795, 20876, '247Digitize Solutions Pvt Ltd ', 'Team Lead ', '2021-12-06', 18000.00, '2024-04-20', 25000.00, 'Chennai ', '1', '2 years 4 months', 'Pure Night shift', 1, '2024-08-22 05:27:24', 0, NULL, 0, NULL, 1),
(8796, 20879, 'Nittany creative solutions private limited ', 'Order entry process executive ', '2019-06-26', 7000.00, '2022-05-19', 13000.00, 'Kottivakkam', '1', '2 years 10 months', ' None', 1, '2024-08-22 06:55:29', 0, NULL, 0, NULL, 1),
(8797, 20872, 'Aegis Customer Service Pvt ltd', 'Customer support ', '2017-10-17', 9000.00, '2018-12-31', 9000.00, 'Broadway', '1', '1 years 2 months', ' Career growth ', 1, '2024-08-22 06:58:05', 0, NULL, 0, NULL, 1),
(8798, 20872, 'Justdial India Pvt ltd ', 'Telemarketing ', '2019-05-02', 12000.00, '2020-08-31', 12000.00, 'Chennai', '1', '1 years 3 months', 'I need to learn more ', 1, '2024-08-22 07:03:21', 0, NULL, 0, NULL, 1),
(8799, 20872, 'Randstad India Pvt Ltd ', 'Team leader ', '2020-09-17', 21000.00, '2023-07-31', 21000.00, 'Chennai', '1', '2 years 10 months', 'I didt get any promote for my work ', 1, '2024-08-22 07:05:26', 0, NULL, 0, NULL, 1),
(8800, 20872, 'Bharat Matrimony.com ', 'Senior Relationship Manager ', '2023-08-04', 370000.00, '2024-07-04', 370000.00, 'Chennai', '1', '0 years 11 months', 'I need to learn and growth my career  ', 1, '2024-08-22 07:10:29', 0, NULL, 0, NULL, 1),
(8801, 20880, 'Medical billing ', 'Ar analist ', '2021-12-17', 13800.00, '2023-12-08', 13000.00, 'Vepery', '1', '2 years 8 months', ' Health issues ', 1, '2024-08-22 07:21:25', 0, NULL, 0, NULL, 1),
(8802, 20882, 'spacelance office solutions', 'customer relationship Executive ', '2022-01-01', 16000.00, '2024-06-07', 25000.00, 'anna salai', '1', '2 years 5 months', ' Career growth', 1, '2024-08-22 07:34:03', 0, NULL, 0, NULL, 1),
(8803, 20884, 'Olivier entertainment Pvt Ltd ', 'Loan documentation processer ', '2023-03-15', 18000.00, '2024-08-22', 22000.00, 'Ekkaduthangal ', '1', '1 years 5 months', ' Searching for career growth and salary high ', 1, '2024-08-22 07:50:49', 0, NULL, 0, NULL, 1),
(8804, 20885, 'The Education company', 'Sales & Counseling ', '2021-04-09', 24000.00, '2024-04-01', 42000.00, 'Chennai ', '1', '2 years 11 months', ' Better opportunities ', 1, '2024-08-22 09:02:16', 0, NULL, 0, NULL, 1),
(8805, 20883, 'Gi staffing services ', 'Store incharge ', '2023-08-01', 24010.00, '2024-03-31', 24010.00, 'Hope farm, Whitefield ', '1', '1 years 0 months', ' There was no career growth ', 1, '2024-08-22 09:24:20', 0, NULL, 0, NULL, 1),
(8806, 20886, 'Standard chartered bank ', 'Client care executive ', '2023-01-23', 25000.00, '2024-07-25', 25000.00, 'Nungampakkam ', '1', '1 years 6 months', ' Bank is moving to taramni', 1, '2024-08-22 10:39:31', 0, NULL, 0, NULL, 1),
(8807, 20892, 'Adhura Real Estate ', 'Customer service representative ', '2023-03-15', 17000.00, '2023-10-10', 17000.00, 'Coimbatore ', '1', '0 years 6 months', ' Distance ', 1, '2024-08-22 03:38:50', 0, NULL, 0, NULL, 1),
(8808, 20897, 'Muthoot Fincorp Limited ', 'Customer service executive ', '2023-02-07', 10000.00, '2023-08-01', 10000.00, 'Gingee', '1', '0 years 5 months', ' ', 1, '2024-08-23 05:18:58', 0, NULL, 0, NULL, 1),
(8809, 20897, 'Manappuram finance limited ', 'JR.ASST ', '2023-11-02', 15250.00, '2024-07-30', 15250.00, 'Tambaram ', '1', '0 years 8 months', 'Transfer purpose ', 1, '2024-08-23 05:20:40', 0, NULL, 0, NULL, 1),
(8810, 20898, 'Techmahindra ', 'Customer support ', '2023-05-12', 17000.00, '2024-07-31', 17000.00, 'Egmore ', '1', '1 years 2 months', ' Actually previous company I\'m a team leader as I\'m going for interview as a team leader but there are told me to u worked after 3 months we are given to the opportunity after I year I didn\'t get a opportunity of tL so that why Im reliving from this job', 1, '2024-08-23 05:25:14', 0, NULL, 0, NULL, 1),
(8811, 20900, 'cameo ', 'help desk ', '2023-07-10', 15000.00, '2024-07-20', 14200.00, 'chennai ', '1', '1 years 0 months', ' ', 1, '2024-08-23 05:40:49', 0, NULL, 0, NULL, 1),
(8812, 20899, 'Axis Bank ', 'SRE', '2022-06-08', 16000.00, '2024-05-13', 20000.00, 'Kumbakonam ', '1', '1 years 11 months', ' Married', 1, '2024-08-23 05:56:31', 0, NULL, 0, NULL, 1),
(8813, 20895, 'Hdb and HDFC Bank', 'Sales officer ', '2021-03-01', 13000.00, '2024-01-04', 3.32, 'Chennai', '1', '2 years 10 months', ' I got married and Location  got changed so that I have Resigned.', 1, '2024-08-23 06:42:08', 0, NULL, 0, NULL, 1),
(8814, 20909, 'Kotak Mahindra Bank ', 'JUNIOR ASSOCIATE SALES EXECUTIVE ', '2023-06-07', 20000.00, '2024-04-10', 1.00, 'Velachery', '1', '0 years 10 months', ' ', 1, '2024-08-23 09:57:11', 0, NULL, 0, NULL, 1),
(8815, 20909, 'BAJAJ FINANCE ', 'sales executive ', '2024-04-20', 19500.00, '1970-01-01', 22000.00, 'AVADI ', '2', '0 years 4 months', 'Personal ', 1, '2024-08-23 10:01:50', 0, NULL, 0, NULL, 1),
(8816, 20909, 'HDB FINANCE SERVICES ', 'Sales executive ', '2021-02-17', 15500.00, '2022-06-16', 22000.00, 'CHENNAI ', '1', '1 years 3 months', 'TNPSC ', 1, '2024-08-23 10:07:39', 0, NULL, 0, NULL, 1),
(8817, 20901, 'arms connect', 'financial service excective', '2023-08-24', 14000.00, '2024-08-12', 16000.00, 'nandanam', '1', '0 years 11 months', 'try for a better job', 104, '2024-08-24 10:04:24', 0, NULL, 0, NULL, 1),
(8818, 20902, 'arms connect', 'financial service executive', '2023-08-23', 14000.00, '2024-08-14', 16000.00, 'nandanam', '1', '0 years 11 months', 'TRYING FOR BETTER JOB', 104, '2024-08-24 10:14:07', 0, NULL, 0, NULL, 1),
(8819, 20914, 'allzone', 'proce associate', '2022-09-12', 13000.00, '2024-03-31', 13000.00, 'vellore', '1', '1 years 6 months', 'Low salary ', 1, '2024-08-24 05:15:14', 0, NULL, 0, NULL, 1),
(8820, 20916, 'Sysmedac technology india pvt Ltd ', 'Assosiate', '2023-06-05', 10000.00, '2024-06-15', 20000.00, 'Chennai', '1', '1 years 0 months', ' ', 1, '2024-08-24 05:15:22', 0, NULL, 0, NULL, 1),
(8821, 20913, 'Reliance RETAIL PRIVATE LIMITED ', 'Data entry operator ', '2023-02-01', 16.00, '2024-05-02', 14.00, 'Chrompet ', '1', '1 years 3 months', ' Got another work ', 1, '2024-08-24 05:18:25', 0, NULL, 0, NULL, 1),
(8822, 20913, 'Metro cash and carry ', 'Supervisor ', '2024-06-04', 16000.00, '1970-01-01', 16.00, 'Pallavarm ', '2', '0 years 2 months', 'Trying to another work ', 1, '2024-08-24 05:19:24', 0, NULL, 0, NULL, 1),
(8823, 20917, 'Pentafore shipping service', 'Process associate ', '2022-11-01', 17000.00, '2024-05-17', 17000.00, 'Parry\'s Corner', '1', '1 years 6 months', ' To build my career to next level', 1, '2024-08-24 05:26:07', 0, NULL, 0, NULL, 1),
(8824, 20918, 'OLIVIER', '2 km', '2023-04-01', 25000.00, '2024-07-31', 30000.00, 'Chennai', '1', '1 years 3 months', ' Timing issues', 1, '2024-08-24 05:32:45', 0, NULL, 0, NULL, 1),
(8825, 20919, 'Thinksinq solution ', 'Customer support ', '2021-05-11', 15000.00, '2022-07-05', 17000.00, 'Chennai ', '1', '1 years 1 months', ' ', 1, '2024-08-24 05:35:44', 0, NULL, 0, NULL, 1),
(8826, 20919, 'Thinksinq solution ', 'Customer support ', '2021-05-11', 15000.00, '2022-07-05', 17000.00, 'Chennai ', '1', '1 years 1 months', ' ', 1, '2024-08-24 05:35:45', 0, NULL, 0, NULL, 1),
(8827, 20922, 'Policy bazaar', 'Financial advisor', '2023-06-19', 20500.00, '2024-12-16', 20500.00, 'Tidle park', '1', '1 years 5 months', ' Because of my marriage', 1, '2024-08-24 06:30:55', 0, NULL, 0, NULL, 1),
(8828, 20923, 'Sutherland global service', 'Process Associate', '2021-11-02', 16000.00, '2022-02-24', 16000.00, 'Perungalathur', '1', '0 years 3 months', ' Health issues', 1, '2024-08-24 06:56:48', 0, NULL, 0, NULL, 1),
(8829, 20924, 'Alok Infotech ', 'Admin Executive ', '2023-12-05', 20000.00, '2024-06-05', 20000.00, 'Chennai', '1', '0 years 6 months', 'Office is shifting to porur which is difficult for me to travel, It\'s taking 2 hours to reach office totally 4 hours travelling per day is very difficult.', 1, '2024-08-24 07:08:04', 0, NULL, 0, NULL, 1),
(8830, 20929, 'Acko', 'Escalation specialist ', '2023-12-20', 20.00, '2024-03-01', 45000.00, 'Hsr layout ', '1', '0 years 2 months', ' Personal health issue ', 1, '2024-08-24 10:43:09', 0, NULL, 0, NULL, 1),
(8831, 20937, 'Aagna global Solutions', 'Senior process Associate', '2018-08-23', 15000.00, '2019-05-31', 16000.00, 'Chennai', '1', '0 years 9 months', ' Family situation', 1, '2024-08-26 04:57:05', 0, NULL, 0, NULL, 1),
(8832, 20936, 'Allset business solution', 'Senior tellecaller', '2023-05-05', 18000.00, '1970-01-01', 18000.00, 'Thousand lights', '2', '1 years 3 months', 'I need ti grow higer ', 1, '2024-08-26 04:58:25', 0, NULL, 0, NULL, 1),
(8833, 20937, 'Neeyamo enterprise solution', 'Service delivery partner', '2019-06-26', 13000.00, '2022-09-30', 16000.00, 'Madurai ', '1', '3 years 3 months', 'Relocate to chennai', 1, '2024-08-26 04:58:59', 0, NULL, 0, NULL, 1),
(8834, 20939, 'Sun business solutions', 'Customer support engineer', '2022-11-09', 12500.00, '2024-04-01', 12500.00, 'Kottivakkam', '1', '1 years 4 months', ' Health issues', 1, '2024-08-26 05:35:25', 1, '2024-08-26 05:37:48', 0, NULL, 0),
(8835, 20939, 'Sun Business solutions', 'Customer support engineer', '2022-11-09', 12500.00, '2024-04-01', 12500.00, 'Kottivakkam', '1', '1 years 4 months', 'Health issues', 1, '2024-08-26 05:37:30', 0, NULL, 0, NULL, 1),
(8836, 20942, 'Krishna international school ', 'Teacher', '2023-05-29', 13000.00, '2024-04-28', 13000.00, 'Ramanathapuram ', '1', '0 years 10 months', ' I came to Chennai so I changed my job', 1, '2024-08-26 05:40:15', 0, NULL, 0, NULL, 1),
(8837, 20940, 'Sun business solution ', 'Customer support ', '2023-01-01', 12500.00, '2023-04-20', 12500.00, 'Kottivakam ', '1', '0 years 3 months', 'Distance from my home ', 1, '2024-08-26 05:41:08', 0, NULL, 0, NULL, 1),
(8838, 20940, 'Uniq technology ', 'Hr executive ', '2023-06-01', 15000.00, '2023-09-19', 15000.00, 'Kodambakam ', '1', '0 years 3 months', 'My grandmother  death ', 1, '2024-08-26 05:43:30', 0, NULL, 0, NULL, 1),
(8839, 20932, 'Hitachi Payment service pvt Ltd ', 'Senior pos executive officer ', '2014-06-08', 5000.00, '2016-08-22', 14000.00, 'Paris Chennai ', '1', '2 years 2 months', ' Due to family issues ', 1, '2024-08-26 05:44:51', 1, '2024-08-26 05:55:54', 0, NULL, 0),
(8840, 20940, 'Lojo enterprises ', 'Hr recruiter ', '2023-11-19', 18000.00, '2024-02-10', 18000.00, 'Royapetta ', '1', '0 years 2 months', 'The company was  shift to Kanyakumari ', 1, '2024-08-26 05:45:40', 0, NULL, 0, NULL, 1),
(8841, 20940, 'Live connection ', 'Partner sourcing ', '2024-03-01', 18000.00, '2024-05-31', 18000.00, 'T nagar ', '1', '0 years 2 months', 'Beacuse of typhoid  fever ', 1, '2024-08-26 05:47:14', 0, NULL, 0, NULL, 1),
(8842, 20932, 'Tech Mahindra business solution private limited ', 'BPS OPERATION TEAM LEADER ', '2021-12-16', 5000.00, '2024-08-22', 22000.00, 'Egmore Chennai ', '1', '2 years 8 months', 'Due to personal issues ', 1, '2024-08-26 05:48:21', 0, NULL, 0, NULL, 1),
(8843, 20943, 'Dealskard online Pvt Ltd ', 'Sales executive ', '2024-07-15', 20000.00, '1970-01-01', 20000.00, 'Velachery ', '2', '0 years 1 months', ' I expect Accounting related work that\'s major reason of relieving.', 1, '2024-08-26 05:50:46', 0, NULL, 0, NULL, 1),
(8844, 20943, 'Dealskard online Pvt Ltd ', 'Sales executive ', '2024-07-15', 20000.00, '1970-01-01', 20000.00, 'Velachery ', '2', '0 years 1 months', 'NA', 1, '2024-08-26 05:52:16', 0, NULL, 0, NULL, 1),
(8845, 20932, 'Vertex customer care services pvt Ltd ', 'Tele caller semi sales', '2012-06-12', 8000.00, '2014-11-12', 9000.00, 'Pattaya street mount road ', '1', '2 years 5 months', 'Due to process wind up', 1, '2024-08-26 06:00:57', 0, NULL, 0, NULL, 1),
(8846, 20932, 'Hitachi Payment pvt Ltd ', 'Senior pos executive officer ', '2011-05-25', 10000.00, '2013-11-27', 11000.00, 'Velachery Tambaram highway ', '1', '2 years 6 months', 'Due to health issues (viral fevar)', 1, '2024-08-26 06:04:55', 0, NULL, 0, NULL, 1),
(8847, 20932, 'Alsec technology pvt Ltd ', 'Customer care executive ', '2010-09-10', 5000.00, '2011-10-31', 6000.00, 'Velachery ', '1', '1 years 1 months', 'Process windup ', 1, '2024-08-26 06:08:36', 0, NULL, 0, NULL, 1),
(8848, 20946, 'Riemen solutions pvt ltd ', 'Customer support executive ', '2023-11-01', 8500.00, '2024-05-31', 9000.00, 'Thanjavur ', '1', '0 years 6 months', 'Not to be comfortable for shift timings.', 1, '2024-08-26 06:52:36', 0, NULL, 0, NULL, 1),
(8849, 20944, 'Speed credit services ', 'Caller', '2024-03-07', 13000.00, '2024-08-14', 13000.00, 'Chepauk ', '1', '0 years 5 months', '  salary delayed to credit ', 1, '2024-08-26 07:27:13', 0, NULL, 0, NULL, 1),
(8850, 20948, 'star health insurance', 'alandur', '2023-08-01', 10092023.00, '1970-01-01', 15000.00, 'kodambakkam', '2', '1 years 0 months', ' ', 1, '2024-08-26 07:29:54', 0, NULL, 0, NULL, 1),
(8851, 20949, 'Ujjivan small finance bank', 'AAM', '2023-12-01', 26000.00, '2024-09-23', 26000.00, 'Chennai', '1', '0 years 9 months', ' Career growth', 1, '2024-08-26 07:34:46', 0, NULL, 0, NULL, 1),
(8852, 20950, 'Uniqtechnologies ', 'Hr executive ', '2023-08-05', 20000.00, '2024-07-13', 20000.00, 'T nagar ', '1', '0 years 11 months', 'Company Location change ', 1, '2024-08-26 07:49:25', 0, NULL, 0, NULL, 1),
(8853, 20953, 'AXIS BANK', 'Sales', '2023-08-03', 17500.00, '2024-08-26', 17500.00, 'Maduravayal ', '1', '1 years 0 months', ' Salary ', 1, '2024-08-26 09:56:40', 0, NULL, 0, NULL, 1),
(8854, 20956, 'Sri hema infotech ', 'Sales and marketing coordinator ', '2022-06-07', 12000.00, '2024-09-20', 23000.00, 'Perambur ', '1', '2 years 3 months', ' For more future scope', 1, '2024-08-26 12:57:11', 0, NULL, 0, NULL, 1),
(8855, 20959, 'Axis Bank ', 'Office sale ', '2024-03-26', 17000.00, '2024-07-30', 17000.00, 'Tnagar', '1', '0 years 4 months', ' Medical issues ', 1, '2024-08-27 04:40:39', 0, NULL, 0, NULL, 1),
(8856, 20962, 'Allset business solutions ', 'Credit card collection ', '2023-08-23', 18000.00, '2024-08-30', 180000.00, 'Thousands light', '1', '1 years 0 months', 'Long distance ', 1, '2024-08-27 05:16:36', 0, NULL, 0, NULL, 1),
(8857, 20963, 'New Camp IAS Academy ', 'Administrative Officer ', '2023-10-11', 30000.00, '2024-07-20', 30000.00, 'Nungambakkam ', '1', '0 years 9 months', 'Due to miscommunication ', 1, '2024-08-27 05:17:34', 0, NULL, 0, NULL, 1),
(8858, 20961, 'Creative hands hR', 'Tellcaler ', '2023-08-13', 25000.00, '2024-03-05', 20000.00, 'Chennai', '1', '0 years 6 months', ' Health issues ', 1, '2024-08-27 05:37:40', 0, NULL, 0, NULL, 1),
(8859, 20967, 'Sagility ', 'Nandabakkam', '2023-08-27', 6000.00, '2024-03-20', 17000.00, 'Nandabakkam', '1', '0 years 6 months', 'I have health issue ', 1, '2024-08-27 06:10:08', 0, NULL, 0, NULL, 1),
(8860, 20968, 'Poonawalla fincorp ', 'Tele sales and marketing ', '2023-08-23', 18000.00, '2024-02-01', 18000.00, 'Kodambakkam ', '1', '1 years 0 months', ' ', 1, '2024-08-27 06:44:15', 0, NULL, 0, NULL, 1),
(8861, 20968, 'Reliance ', 'Sales and marketing ', '2020-11-18', 18000.00, '2021-10-14', 21000.00, 'Chennai ', '1', '0 years 10 months', 'Starting to business ', 1, '2024-08-27 06:47:32', 0, NULL, 0, NULL, 1),
(8862, 20970, 'TVS sundaram fastened limited', 'NEEM Trainee', '2018-05-20', 12000.00, '2019-06-22', 12000.00, 'Gumidipoondi ', '1', '1 years 1 months', ' ', 1, '2024-08-27 07:24:24', 0, NULL, 0, NULL, 1),
(8863, 20970, 'Montan Hydraulic private limited ', 'Supervisor ', '2021-03-10', 10000.00, '2022-07-21', 10000.00, 'Sholavaram', '1', '1 years 4 months', 'It\'s a contractual job after my contract over I relieved from the job', 1, '2024-08-27 07:26:57', 0, NULL, 0, NULL, 1),
(8864, 20971, 'Hdfc bank', 'Customer Support', '2024-08-27', 23916.00, '2024-08-31', 23916.00, 'Chennai', '1', '0 years 0 months', ' Carrier growth', 1, '2024-08-27 07:33:13', 0, NULL, 0, NULL, 1),
(8865, 20972, 'Basis cloud solutions pvt ltd', 'AUTOMATION TEST ENGINEER', '2023-02-05', 2.40, '2024-05-01', 2.40, 'Chennai', '1', '1 years 2 months', ' ', 1, '2024-08-27 08:06:30', 0, NULL, 0, NULL, 1),
(8866, 20974, 'Creditmantri.com', 'Collar ', '2019-08-27', 15.00, '1970-01-01', 25.00, 'Thought light ', '2', '5 years 0 months', ' Salary issue not fixed salary so I relieving the job ', 1, '2024-08-27 09:37:06', 0, NULL, 0, NULL, 1),
(8867, 20975, 'bajaj finserv', 'telecaller', '2023-12-10', 13000.00, '2024-06-01', 16000.00, 'perungudi ', '1', '0 years 5 months', 'Salary issuse ', 1, '2024-08-27 09:55:33', 0, NULL, 0, NULL, 1),
(8868, 20976, 'Vikaa Housing ', 'Marketing Executive ', '2023-09-05', 12000.00, '2024-08-15', 14000.00, 'Ashok nagar', '1', '0 years 11 months', ' ', 1, '2024-08-27 10:30:10', 0, NULL, 0, NULL, 1),
(8869, 20978, 'Thalappakatti hotels Pvt Ltd ', 'MIS executive ', '2021-09-25', 20000.00, '2024-03-04', 20800.00, 'Chennai ', '1', '2 years 5 months', 'Professional growth ', 1, '2024-08-27 12:31:09', 0, NULL, 0, NULL, 1),
(8870, 20984, 'Deccan I service pvt Ltd ', 'Financial processer ', '2021-11-23', 10000.00, '1970-01-01', 20000.00, 'Villupuram ', '2', '2 years 9 months', ' ', 1, '2024-08-28 05:04:50', 0, NULL, 0, NULL, 1),
(8871, 20986, 'Creditmantri Finserve private limited ', 'Credit Relationship Officer ', '2023-06-05', 24000.00, '2024-07-08', 27000.00, 'Chennai ', '1', '1 years 1 months', 'Late logout', 1, '2024-08-28 05:13:38', 0, NULL, 0, NULL, 1),
(8872, 20985, 'Krishnamoorthy ', 'SBI credit card ', '2023-06-28', 30000.00, '2024-09-05', 20000.00, 'Thousand light ', '2', '1 years 2 months', 'Salary not comfortable ', 1, '2024-08-28 05:27:39', 0, NULL, 0, NULL, 1),
(8873, 20981, 'Sutherland global service', 'Customer support executive ', '2022-08-24', 14500.00, '2023-04-12', 14500.00, 'Perungalatur ', '1', '0 years 7 months', ' Family situation ', 1, '2024-08-28 05:42:58', 0, NULL, 0, NULL, 1),
(8874, 20988, 'Hayathbasha ', 'SBI credit card ', '2024-06-01', 20000.00, '1970-01-01', 20000.00, 'Thousand light ', '2', '0 years 2 months', ' Salary not comfortable ', 1, '2024-08-28 05:43:32', 0, NULL, 0, NULL, 1),
(8875, 20988, 'Hayathbasha ', 'SBI credit card ', '2024-06-01', 20000.00, '1970-01-01', 20000.00, 'Thousand light ', '2', '0 years 2 months', ' Salary not comfortable ', 1, '2024-08-28 05:43:34', 0, NULL, 0, NULL, 1),
(8876, 20988, 'Hayathbasha ', 'SBI credit card ', '2024-06-01', 20000.00, '1970-01-01', 20000.00, 'Thousand light ', '2', '0 years 2 months', ' Salary not comfortable ', 1, '2024-08-28 05:43:35', 0, NULL, 0, NULL, 1),
(8877, 20988, 'Hayathbasha ', 'SBI credit card ', '2024-06-01', 20000.00, '1970-01-01', 20000.00, 'Thousand light ', '2', '0 years 2 months', ' Salary not comfortable ', 1, '2024-08-28 05:43:41', 0, NULL, 0, NULL, 1),
(8878, 20988, 'Hayathbasha ', 'SBI credit card ', '2024-06-01', 20000.00, '1970-01-01', 20000.00, 'Thousand light ', '2', '0 years 2 months', ' Salary not comfortable ', 1, '2024-08-28 05:45:03', 0, NULL, 0, NULL, 1),
(8879, 20988, 'Hayathbasha ', 'SBI credit card ', '2024-06-02', 20000.00, '2024-09-05', 20000.00, 'Thousand light ', '1', '0 years 3 months', ' Salary not comfortable ', 1, '2024-08-28 05:46:35', 0, NULL, 0, NULL, 1),
(8880, 20990, 'Justdial ', 'Telecalling executive ', '2023-07-01', 15000.00, '2024-07-31', 15000.00, 'Chennai ', '1', '1 years 0 months', ' ', 1, '2024-08-28 06:18:49', 0, NULL, 0, NULL, 1),
(8881, 20990, 'Justdial ', 'Telecalling executive ', '2023-07-01', 15000.00, '2024-07-31', 15000.00, 'Chennai ', '1', '1 years 0 months', 'Travelling ', 1, '2024-08-28 06:19:32', 0, NULL, 0, NULL, 1),
(8882, 20784, 'Sutherland global services ', 'Customer support executive ', '2022-08-24', 14500.00, '2023-02-20', 14500.00, 'Perungalathur ', '1', '0 years 5 months', ' Health issue', 1, '2024-08-28 06:30:11', 0, NULL, 0, NULL, 1),
(8883, 20989, 'Sutherland global services ', 'Customer support executive ', '2022-09-07', 14500.00, '2022-12-08', 14500.00, 'Perungalathur ', '1', '0 years 3 months', 'Health issue ', 1, '2024-08-28 06:32:07', 0, NULL, 0, NULL, 1),
(8884, 20991, 'Talenttribe consulting international private limit', 'Graduate Trainee in TA', '2023-01-02', 12300.00, '2024-06-15', 15300.00, 'Anna salai', '1', '1 years 5 months', ' Seeking new Opportunity to learn and ready to accept new challenges ', 1, '2024-08-28 06:46:29', 0, NULL, 0, NULL, 1),
(8885, 20993, 'Sriram finance ', 'Business executive ', '2024-01-01', 18000.00, '2024-07-25', 18000.00, 'Vridhachalam', '1', '0 years 6 months', ' Family problem ', 1, '2024-08-28 07:18:25', 0, NULL, 0, NULL, 1),
(8886, 20998, 'Kotak Mahindra Bank ', 'Manager ', '2018-01-10', 30000.00, '2023-03-15', 40000.00, 'Bengaluru ', '1', '5 years 2 months', ' ', 1, '2024-08-28 08:55:19', 0, NULL, 0, NULL, 1),
(8887, 21003, 'Bharath matrimony ', 'Service officer', '2022-01-06', 11000.00, '2022-11-24', 11000.00, 'Guindy', '1', '0 years 10 months', 'Due to salary ', 1, '2024-08-28 01:15:19', 0, NULL, 0, NULL, 1),
(8888, 21003, 'Imarque solutions pvt Ltd ', 'Ccustomer support executive', '2023-04-24', 12250.00, '2024-08-03', 12250.00, 'Egmore (DPI)', '1', '1 years 3 months', 'Trying for next level of posting like team leader or Quality Analyst', 1, '2024-08-28 01:18:32', 0, NULL, 0, NULL, 1),
(8889, 21005, 'Banking ', 'Rm', '2024-05-06', 20000.00, '1970-01-01', 20000.00, 'Tamilnadu ', '2', '0 years 3 months', ' Looking for career move', 1, '2024-08-28 01:59:12', 0, NULL, 0, NULL, 1),
(8890, 21008, 'Annai car accessories ', 'Tele caller ', '2023-05-20', 13000.00, '2024-08-10', 16000.00, 'Thanjavur ', '1', '1 years 2 months', 'Time issue ', 1, '2024-08-29 04:20:55', 0, NULL, 0, NULL, 1),
(8891, 21010, 'Dagliya &co', 'Auditing ', '2024-02-11', 14500.00, '2024-08-01', 15000.00, 'Dash prakash ', '1', '0 years 5 months', ' Personal reasons ', 1, '2024-08-29 04:37:13', 0, NULL, 0, NULL, 1),
(8892, 21013, 'hdb financial services ', 'jr officer', '2020-02-12', 13000.00, '2022-06-14', 19000.00, 'chennai', '1', '2 years 4 months', ' Medical problem', 1, '2024-08-29 05:07:51', 0, NULL, 0, NULL, 1),
(8893, 21013, 'aargee staffing services', 'business associate', '2023-03-08', 16000.00, '2024-03-11', 16000.00, 'chennai', '1', '1 years 0 months', 'Project over', 1, '2024-08-29 05:09:59', 0, NULL, 0, NULL, 1),
(8894, 21019, 'Imarque solution ', 'Customer support ', '2023-07-27', 7.00, '2024-07-13', 16000.00, 'Chennai ', '1', '0 years 11 months', ' Personal Problem ', 1, '2024-08-29 06:12:42', 1, '2024-08-29 06:14:14', 0, NULL, 0),
(8895, 21019, 'Imarque solution ', 'Customer support ', '2023-07-27', 16000.00, '2024-07-13', 16000.00, 'Chennai ', '1', '0 years 11 months', 'Personal Problem ', 1, '2024-08-29 06:14:00', 0, NULL, 0, NULL, 1),
(8896, 21023, 'Prochant ', 'Process associate ', '2023-08-17', 15000.00, '2024-08-05', 20000.00, 'Porur', '1', '0 years 11 months', ' I want to switch job', 1, '2024-08-29 06:22:08', 0, NULL, 0, NULL, 1),
(8897, 21022, 'Conneqt Businesses solutions ', 'Customer support associate ', '2022-08-18', 15000.00, '2023-07-01', 17000.00, 'Roopena agrahara ', '1', '0 years 10 months', ' Not comfortable to work on sundays', 1, '2024-08-29 06:22:41', 0, NULL, 0, NULL, 1),
(8898, 21022, 'HGS', 'Customer relationship officer', '2018-12-26', 14000.00, '2020-01-01', 20000.00, 'Kudlu Gate Bangalore ', '1', '1 years 0 months', 'Due to health issues', 1, '2024-08-29 06:26:11', 0, NULL, 0, NULL, 1),
(8899, 21022, 'Acepearl', 'Collection specialist', '2020-02-11', 15000.00, '1970-01-01', 30000.00, 'Kormangala Bangalore ', '2', '4 years 6 months', 'Company got shut  downed', 1, '2024-08-29 06:29:29', 0, NULL, 0, NULL, 1),
(8900, 21022, 'Skydotz', 'Seniour customer service Executive ', '2021-08-18', 12000.00, '1970-01-01', 15000.00, 'Kudlu Gate Bangalore ', '2', '3 years 0 months', 'Company got Shut downed ', 1, '2024-08-29 06:31:00', 0, NULL, 0, NULL, 1),
(8901, 21028, 'Tele performance and uncle delivery ', 'Driver quality ', '2022-08-22', 29000.00, '2024-06-29', 30000.00, 'Hsr layout', '1', '1 years 10 months', 'Contact end', 1, '2024-08-29 07:07:58', 0, NULL, 0, NULL, 1),
(8902, 21029, 'SBICAB SECURITIES limited ', 'Branch relationship executive ', '2023-10-16', 18000.00, '2024-07-23', 18000.00, 'Poonamallee Chennai ', '1', '0 years 9 months', ' Long distance ', 1, '2024-08-29 07:13:07', 0, NULL, 0, NULL, 1),
(8903, 21025, 'HDB Financial services Ltd ', 'Senior Sales officer ', '2020-09-19', 15000.00, '2021-03-23', 15000.00, 'George Town ', '1', '0 years 6 months', ' Health issue ', 1, '2024-08-29 07:15:05', 0, NULL, 0, NULL, 1),
(8904, 21025, 'Randstad India Pvt Ltd ', 'Branch Relationship Executive ', '2022-02-24', 18000.00, '2022-06-06', 18000.00, 'Parrys', '1', '0 years 3 months', 'Personal issues ', 1, '2024-08-29 07:17:40', 0, NULL, 0, NULL, 1),
(8905, 21025, 'E seal Store ', 'Junior Accountant ', '2022-11-10', 23000.00, '2023-08-07', 25000.00, 'Mannady', '1', '0 years 8 months', 'Personal Issues ', 1, '2024-08-29 07:21:58', 0, NULL, 0, NULL, 1),
(8906, 21025, 'Indusind Bank ', 'Business Development Manager ', '2024-03-11', 30000.00, '1970-01-01', 30000.00, 'Rajaji Salai ', '2', '0 years 5 months', 'More Field work not comfortable ', 1, '2024-08-29 07:26:37', 0, NULL, 0, NULL, 1),
(8907, 21031, 'Imarque solution Pvt Ltd ', 'Customer support executive ', '2023-07-27', 16000.00, '2024-07-10', 16000.00, 'Teynampet ', '1', '0 years 11 months', 'Personal issue', 1, '2024-08-29 07:29:05', 0, NULL, 0, NULL, 1),
(8908, 21027, 'I process services India Pvt Ltd ', 'Sales executive ', '2022-04-11', 12000.00, '2023-04-05', 12000.00, 'Anna nagar chennai ', '1', '0 years 11 months', ' Higher salary and growth ', 1, '2024-08-29 07:42:40', 0, NULL, 0, NULL, 1),
(8909, 21027, 'Indusind bank Ltd ', 'Business Development Manager ', '2023-07-31', 20000.00, '1970-01-01', 23000.00, 'Rajaji Salai chennai ', '2', '1 years 0 months', 'Field work not comfortable ', 1, '2024-08-29 07:44:27', 0, NULL, 0, NULL, 1),
(8910, 21033, 'Forever credit solution ', 'Telecaller ', '2023-11-16', 13000.00, '2024-04-20', 13000.00, 'Chennai ', '1', '0 years 5 months', ' Improve my knowledge and skills ', 1, '2024-08-29 08:39:50', 0, NULL, 0, NULL, 1),
(8911, 21045, 'Excela', 'Processor', '2019-12-17', 13000.00, '2021-08-27', 33000.00, 'Thanjavur', '1', '1 years 8 months', 'To enhance my carrier and salary', 1, '2024-08-30 06:04:23', 1, '2024-08-30 06:08:20', 0, NULL, 1),
(8912, 21045, 'Joyalukkas ', 'Developer executive', '2023-06-02', 25000.00, '2023-10-31', 33000.00, 'Chennai', '1', '0 years 4 months', 'Personal things', 1, '2024-08-30 06:07:47', 0, NULL, 0, NULL, 1),
(8913, 21047, 'Ison experience ', 'Perungudi', '2024-05-07', 125000.00, '2024-08-08', 1600000.00, 'Perungudi ', '1', '0 years 3 months', ' Salary problem ', 1, '2024-08-30 06:50:06', 0, NULL, 0, NULL, 1),
(8914, 21048, 'Orchids International school ', 'PRO-Public Relationship officer', '2024-03-01', 18000.00, '2024-08-30', 18000.00, 'Velachery ', '1', '0 years 5 months', ' ', 1, '2024-08-30 07:21:46', 0, NULL, 0, NULL, 1),
(8915, 21051, 'HDB Financial services Ltd ', 'Junior officer ', '2022-09-28', 13000.00, '2024-07-20', 13000.00, 'Chennai ', '1', '1 years 9 months', ' Wanted to try different field ', 1, '2024-08-30 08:06:03', 0, NULL, 0, NULL, 1),
(8916, 21056, 'Xpertii On–Air Tracking Solutions Pvt Ltd', 'Admin Executive', '2019-09-02', 16000.00, '2021-03-15', 14000.00, 'Chennai', '1', '1 years 6 months', 'Health issues ', 1, '2024-08-30 10:36:13', 0, NULL, 0, NULL, 1),
(8917, 21056, 'Pace setters private solution Pvt Ltd ', 'Tamil voice process ', '2024-05-06', 14000.00, '2024-08-26', 14000.00, 'Chennai ', '1', '0 years 3 months', 'Travel distance ', 1, '2024-08-30 10:38:02', 0, NULL, 0, NULL, 1),
(8918, 21058, 'Policybazzar', ' Financial Advisor ', '2023-09-01', 27000.00, '1970-01-01', 27000.00, 'Domlur ', '2', '0 years 11 months', 'FOR BETTER CAREER GROWTH ', 1, '2024-08-30 11:04:07', 1, '2024-08-30 11:05:17', 0, NULL, 1),
(8919, 15043, 'Bank bazaar', 'Customer relationship officer ', '2021-11-23', 1.00, '2022-05-30', 15000.00, 'Ambattur ', '1', '0 years 6 months', ' Health issue ', 1, '2024-08-30 12:58:12', 0, NULL, 0, NULL, 1),
(8920, 15043, 'Jarulss software solutions ', 'Communication specialist ', '2022-08-22', 1.00, '2023-09-01', 15000.00, 'Arumbakkam ', '1', '1 years 0 months', 'To take care of mom as she was sick ', 1, '2024-08-30 01:01:11', 0, NULL, 0, NULL, 1),
(8921, 15043, 'Chennais amirta ', 'Student support executive ', '2024-03-01', 1.00, '2024-06-01', 17000.00, 'Saidapet ', '1', '0 years 3 months', 'Asked to submit original docs after joining so left ', 1, '2024-08-30 01:05:36', 0, NULL, 0, NULL, 1),
(8922, 21063, 'Hexaware Technologies ', 'Customer Support Executive ', '2023-08-07', 12000.00, '2024-05-31', 12000.00, 'Pallikkaranai ', '1', '0 years 9 months', ' Rotational shift including night shift', 1, '2024-08-31 05:31:33', 0, NULL, 0, NULL, 1),
(8923, 21064, 'Steel strips wheels ltd', 'Graduate engineer trainee', '2018-01-22', 10000.00, '2019-07-25', 14000.00, 'Chennai', '1', '1 years 6 months', ' Process rampdown', 1, '2024-08-31 05:46:03', 0, NULL, 0, NULL, 1),
(8924, 21064, 'Aardee builders', 'Computer operator', '2019-10-02', 7500.00, '2021-09-25', 11000.00, 'Madurai', '1', '1 years 11 months', 'Less salary', 1, '2024-08-31 05:48:47', 0, NULL, 0, NULL, 1),
(8925, 21064, 'Sbi cap securities', 'Relationship officer', '2021-09-27', 12000.00, '2022-07-15', 12000.00, 'Madurai', '1', '0 years 9 months', 'No incentives', 1, '2024-08-31 05:50:06', 0, NULL, 0, NULL, 1),
(8926, 21064, 'Infosys bpm', 'Senior process executive', '2024-04-19', 30400.00, '2024-06-26', 30400.00, 'Bangalore', '1', '0 years 2 months', 'Process rampdown', 1, '2024-08-31 05:51:33', 0, NULL, 0, NULL, 1),
(8927, 21069, 'Learners ink ', 'Data entry ', '2023-11-09', 18000.00, '2024-05-29', 15000.00, 'Marathalli ', '1', '0 years 6 months', ' Due some health issues ', 1, '2024-08-31 07:16:04', 0, NULL, 0, NULL, 1),
(8928, 21071, 'tata consultancy services', 'system engineer', '2021-06-17', 30000.00, '2024-06-29', 45000.00, 'chennai', '1', '3 years 0 months', ' ', 1, '2024-09-01 06:54:02', 0, NULL, 0, NULL, 1),
(8929, 21072, 'HDB FINANCIAL SERVICES ', 'RPM ( credit card collection)', '2022-08-28', 15000.00, '2024-01-05', 17500.00, 'Chennai ', '1', '1 years 4 months', ' ', 1, '2024-09-01 05:34:18', 0, NULL, 0, NULL, 1),
(8930, 21073, 'KGS AGROFARM TECH', 'Sales Executive ', '2022-03-01', 17000.00, '1970-01-01', 20000.00, 'Tambaram ', '2', '2 years 6 months', ' I have experienced in sales and marketing so I  try next step to work', 1, '2024-09-02 04:29:38', 0, NULL, 0, NULL, 1),
(8931, 21075, 'pachaiyappan', 'Sale\'s ', '2024-09-02', 17000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '0 years 0 months', ' ', 1, '2024-09-02 04:47:30', 0, NULL, 0, NULL, 1),
(8932, 21074, 'Airtel ', 'Telesales executive ', '2019-11-04', 15000.00, '2021-11-30', 18000.00, 'Tiruppur ', '1', '2 years 0 months', ' target pressure', 1, '2024-09-02 04:49:58', 1, '2024-09-02 05:07:49', 0, NULL, 1),
(8933, 21074, 'Esha garments ', 'Marketing executive ', '2021-09-02', 24.00, '2024-07-30', 25.00, 'Tiruppur ', '1', '3 years 0 months', ' ', 1, '2024-09-02 05:00:53', 1, '2024-09-02 05:08:04', 0, NULL, 0),
(8934, 21074, 'esha garments', 'marketing executive', '2021-10-07', 18000.00, '2024-04-24', 25000.00, 'tirupur', '1', '2 years 6 months', ' no salary hike', 1, '2024-09-02 05:04:11', 0, NULL, 0, NULL, 1),
(8935, 21078, 'vpm investment', 'collection manager', '2021-01-10', 18000.00, '2023-01-15', 22000.00, 'royapuram', '1', '2 years 0 months', ' Health issues', 1, '2024-09-02 05:09:04', 0, NULL, 0, NULL, 1),
(8936, 21082, 'aidsy technologies private limited company ', 'account executive ', '2024-02-12', 25000.00, '2024-08-16', 25000.00, 'saligramam', '1', '0 years 6 months', 'Business was wound up.', 1, '2024-09-02 05:31:19', 0, NULL, 0, NULL, 1),
(8937, 21087, 'Ninestars information technology pvt Ltd ', 'Software engineer development ', '2022-07-04', 20000.00, '2024-05-04', 400008.00, 'Banglore ', '1', '1 years 10 months', ' ', 1, '2024-09-02 05:37:59', 0, NULL, 0, NULL, 1),
(8938, 21089, 'Vanavil estate ', 'Tambaram ', '2023-06-24', 15000.00, '2024-09-02', 20000.00, 'Chennai ', '1', '1 years 2 months', ' Long distance ', 1, '2024-09-02 06:29:26', 0, NULL, 0, NULL, 1),
(8939, 21097, 'Prozon traders', 'Business development management ', '2023-06-02', 20000.00, '2024-04-02', 20000.00, 'Valechery', '1', '0 years 10 months', 'Not for proper company', 1, '2024-09-02 07:45:17', 0, NULL, 0, NULL, 1),
(8940, 21105, 'Punita arokiya annai suntring works ', 'Sales executive ', '2023-12-02', 14000.00, '2024-06-16', 14000.00, 'Thiruvottiyur ', '1', '0 years 6 months', ' Trying For other job \n', 1, '2024-09-02 10:42:54', 0, NULL, 0, NULL, 1),
(8941, 21106, 'Intertek Testing service', 'Customer coordinator ', '2021-01-02', 20000.00, '2024-08-28', 27000.00, 'Tiruppur ', '1', '3 years 7 months', ' To relocate at Chennai for job', 1, '2024-09-02 10:47:07', 0, NULL, 0, NULL, 1),
(8942, 21108, 'century ply', 'management trainee', '2024-01-11', 27000.00, '2024-07-17', 27000.00, 'banglore', '1', '0 years 6 months', ' ', 1, '2024-09-02 01:29:51', 0, NULL, 0, NULL, 1),
(8943, 21109, 'Digit Insurance ', 'Consultant ', '2023-03-20', 24000.00, '2024-07-29', 24000.00, 'Koramangala ', '1', '1 years 4 months', ' Looking for other process', 1, '2024-09-03 05:37:14', 0, NULL, 0, NULL, 1),
(8944, 21118, 'mechserv engineering pvt ltd ', 'sale marketing executive ', '2022-03-02', 25.00, '2024-09-03', 25.00, 'chennai ', '1', '2 years 6 months', ' ', 1, '2024-09-03 05:42:31', 0, NULL, 0, NULL, 1),
(8945, 21119, 'Sindu enterprise ', 'Marketing ', '2023-05-16', 25000.00, '2024-05-31', 27000.00, 'Egmore ', '1', '1 years 0 months', ' For more salary ', 1, '2024-09-03 05:52:53', 0, NULL, 0, NULL, 1),
(8946, 21122, 'Laksh source business solution pvt lmt', 'Customer support', '2023-01-03', 18000.00, '2024-02-20', 18000.00, 'Pondicherry', '1', '1 years 1 months', ' I have my final Mba semester exam ', 1, '2024-09-03 06:09:23', 0, NULL, 0, NULL, 1),
(8947, 21120, 'Matrix business india private limited ', 'Executive ', '2023-02-03', 13000.00, '2024-06-10', 14765.00, 'Nandhanam', '1', '1 years 4 months', ' Salary low ', 1, '2024-09-03 06:15:10', 0, NULL, 0, NULL, 1),
(8948, 21121, 'Shiksha finance Service indian private limited', 'Credit', '2022-12-12', 13000.00, '2024-08-29', 15000.00, 'Arumbakkam', '1', '1 years 8 months', 'Low salary and training issue', 1, '2024-09-03 06:16:37', 0, NULL, 0, NULL, 1),
(8949, 21126, 'Zigma', 'DEO', '2023-11-01', 15000.00, '2024-03-31', 15000.00, 'Chennai ', '1', '0 years 4 months', ' Personal issue ', 1, '2024-09-03 06:46:49', 0, NULL, 0, NULL, 1),
(8950, 21128, 'IFDC FIRST BANK ', 'CD', '2024-02-21', 15000.00, '2024-08-13', 15000.00, 'PONDICHERRY', '1', '0 years 5 months', ' I WILL FOR WORK THA COMPANY BUT EXPECT SALARY ', 1, '2024-09-03 07:09:53', 0, NULL, 0, NULL, 1),
(8951, 21131, 'Mystockexperts ', 'BDE', '2023-06-13', 16000.00, '2023-09-01', 16000.00, 'Bangalore ', '1', '0 years 2 months', ' Medical reasons ', 1, '2024-09-03 07:52:27', 1, '2024-09-03 07:54:31', 0, NULL, 1),
(8952, 21131, 'Ebixcash ', 'Relationship manager ', '2023-09-10', 21000.00, '2024-03-07', 21000.00, 'Bangalore ', '1', '0 years 5 months', 'Medical reasons ', 1, '2024-09-03 07:54:08', 0, NULL, 0, NULL, 1),
(8953, 21132, 'Allianze BPO services ', 'Data entry Operator ', '2022-07-20', 8000.00, '2024-07-31', 7220.00, 'Kanchipuram ', '1', '2 years 0 months', ' ', 1, '2024-09-03 08:01:32', 0, NULL, 0, NULL, 1),
(8954, 21135, 'MMC Infotech services ', 'Team coordinator ', '2022-02-01', 14000.00, '2024-02-17', 16000.00, 'Pattinambakkam', '1', '2 years 0 months', ' For a job change ', 1, '2024-09-03 08:57:34', 0, NULL, 0, NULL, 1),
(8955, 21135, 'MMC Infotech services ', 'Team coordinator ', '2022-02-01', 14000.00, '2024-02-17', 16000.00, 'Pattinambakkam', '1', '2 years 0 months', ' For a job change ', 1, '2024-09-03 08:57:40', 0, NULL, 0, NULL, 1),
(8956, 21133, 'Equitas small finance bank ', 'Team Leader ', '2021-09-03', 20000.00, '2024-04-08', 26500.00, 'Chennai ', '1', '2 years 7 months', ' My father health issue\'s ', 1, '2024-09-03 09:03:44', 0, NULL, 0, NULL, 1),
(8957, 21139, 'HDB financial services pvt ltd ', 'Territory manager ', '2023-10-19', 34532.00, '2024-04-19', 34532.00, 'Tiruvannamalai ', '1', '0 years 6 months', ' Mother\'s health issue.. emergency surgery purpose ', 1, '2024-09-03 09:54:32', 0, NULL, 0, NULL, 1),
(8958, 21139, 'Bank bazaar', 'Senior customer relationship officer ', '2022-09-23', 26300.00, '2023-10-17', 29000.00, 'Ambattur chennai ', '1', '1 years 0 months', 'Better opportunity ', 1, '2024-09-03 09:55:59', 0, NULL, 0, NULL, 1),
(8959, 21139, 'Ujjivan small finance bank ', 'Loan officer ', '2018-11-13', 13000.00, '2022-05-05', 17300.00, 'Tiruvannamalai ', '1', '3 years 5 months', 'Others ', 1, '2024-09-03 09:56:59', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8960, 21151, 'Teleperformance ', 'Customer care executive ', '2018-09-28', 18000.00, '2022-12-10', 22000.00, 'Mohali ', '1', '4 years 2 months', ' Long distance ', 1, '2024-09-04 05:14:34', 0, NULL, 0, NULL, 1),
(8961, 21152, 'one point one solutions', 'technical support executive', '2022-07-10', 26000.00, '2024-08-22', 26000.00, 'bangalore', '1', '2 years 1 months', ' ', 1, '2024-09-04 05:35:17', 0, NULL, 0, NULL, 1),
(8962, 21155, 'Siplink communication private limited ', 'Business development executive ', '2024-02-19', 20000.00, '2024-08-10', 20000.00, 'T.nagar', '1', '0 years 5 months', ' Didn\'t give the offer letter or confirmation letter', 1, '2024-09-04 05:39:56', 0, NULL, 0, NULL, 1),
(8963, 21154, 'Airtel ', 'CRE', '2023-11-27', 20.00, '2024-07-25', 20.00, 'Purasaiwakkam', '1', '0 years 7 months', ' Infrastructure Issue ', 1, '2024-09-04 05:41:21', 0, NULL, 0, NULL, 1),
(8964, 21161, 'IDFC FIRST BHARAT', 'Sales executive', '2023-03-27', 12500.00, '2024-07-16', 14500.00, 'Thirunindravur branch', '1', '1 years 3 months', ' Health issues', 1, '2024-09-04 05:53:26', 0, NULL, 0, NULL, 1),
(8965, 21164, 'Siva Shakthi enterprise ', 'V house ', '2022-11-10', 15000.00, '1970-01-01', 20000.00, 'Tripalcane', '2', '1 years 9 months', ' ', 1, '2024-09-04 06:58:54', 0, NULL, 0, NULL, 1),
(8966, 21168, 'Max life insurance ', 'Associate agency development manager ', '2022-08-06', 23000.00, '2023-09-10', 2.75, 'Amijikkarai ', '1', '1 years 1 months', ' Accident ', 1, '2024-09-04 07:17:24', 1, '2024-09-04 07:20:21', 0, NULL, 1),
(8967, 21168, 'Guhan builders and promoters ', 'Development manager ', '2023-10-11', 25000.00, '2024-03-31', 25000.00, 'Kolathur ', '1', '0 years 5 months', 'Salary issues ', 1, '2024-09-04 07:19:35', 0, NULL, 0, NULL, 1),
(8968, 21168, 'VGN group of companies ', 'Sales executive ', '2024-04-01', 26000.00, '2024-06-08', 26000.00, 'Anna nagar ', '1', '0 years 2 months', 'Company shutdown ', 1, '2024-09-04 07:21:39', 0, NULL, 0, NULL, 1),
(8969, 21171, 'Florance Shoes Pvt Ltd', 'Purchase Executive', '2023-11-01', 18000.00, '2024-07-18', 18000.00, 'Ambur', '1', '0 years 8 months', ' LOOKING FOR BETTER OPPERTUNITY', 1, '2024-09-04 07:57:35', 0, NULL, 0, NULL, 1),
(8970, 21169, 'Ison xperiences bengaluru ', 'customer support executive ', '2023-12-04', 22000.00, '2024-07-27', 22000.00, 'HSR', '1', '0 years 7 months', ' High traveling expenses ', 1, '2024-09-04 07:58:40', 0, NULL, 0, NULL, 1),
(8971, 21170, 'ISON experience ', 'Customer care support executive ', '2023-12-04', 22000.00, '2024-06-27', 22000.00, 'HSR ', '1', '0 years 6 months', 'We have night shifts, in interview they told they provide cab but ,they didn\'t provide. ', 1, '2024-09-04 08:00:05', 0, NULL, 0, NULL, 1),
(8972, 21169, 'Anson Chits India Pvt Ltd ', 'Route development officer ', '2023-01-02', 16000.00, '2023-07-31', 16000.00, 'Kerala, idukki, Adimali ', '1', '0 years 6 months', 'To attend exams ', 1, '2024-09-04 08:00:38', 0, NULL, 0, NULL, 1),
(8973, 21169, 'BPCL REFINERY ', 'Mechanical supervisor ', '2021-11-01', 6000.00, '2022-12-30', 10000.00, 'Kerala, Kochi ', '1', '1 years 1 months', 'Less salary ', 1, '2024-09-04 08:04:18', 0, NULL, 0, NULL, 1),
(8974, 21170, 'Conneqt business solutions ', 'Customer support executive ', '2022-12-05', 17000.00, '2023-11-30', 17000.00, 'Bangalore roopena aghrahara', '1', '0 years 11 months', 'Health issues ', 1, '2024-09-04 08:05:01', 0, NULL, 0, NULL, 1),
(8975, 21172, 'Hdfc bank ', 'Maker role', '2023-10-17', 15000.00, '2024-05-16', 15000.00, 'Chennai', '1', '0 years 6 months', ' Migration ', 1, '2024-09-05 12:59:00', 0, NULL, 0, NULL, 1),
(8976, 21178, 'Wow carz', 'Business development executive ', '2024-08-01', 15500.00, '1970-01-01', 15500.00, 'Btm 2nd satge', '2', '0 years 1 months', ' Because of my financial issue.', 1, '2024-09-05 04:53:53', 0, NULL, 0, NULL, 1),
(8977, 21180, 'Posh for men ', 'Sales , billing', '2023-04-06', 14000.00, '2024-08-31', 18000.00, 'Perambur', '1', '1 years 4 months', ' To Move next level for my career growth ', 1, '2024-09-05 05:57:15', 0, NULL, 0, NULL, 1),
(8978, 11700, 'HDFC lIFE INSURANCE ', 'Branch operations senior associate ', '2023-02-06', 18000.00, '2024-06-28', 18000.00, 'Chennai ', '1', '1 years 4 months', ' Career growth ', 1, '2024-09-05 06:03:42', 0, NULL, 0, NULL, 1),
(8979, 20977, ' PS Stuffing Solutions ', 'Telecaller ', '2021-09-15', 12000.00, '2024-03-04', 20000.00, 'Greems Road,T Nagar ', '1', '2 years 11 months', ' Marriage ', 1, '2024-09-05 06:52:08', 0, NULL, 0, NULL, 1),
(8980, 21166, 'taurus bpo', 'hr', '2024-05-20', 14000.00, '2024-08-22', 14000.00, 'velacherry', '1', '0 years 3 months', ' ', 1, '2024-09-05 06:58:58', 0, NULL, 0, NULL, 1),
(8981, 21188, 'indusind bank ', 'ARM', '2024-02-05', 3.00, '2024-07-22', 450000.00, 'Bangalore ', '1', '0 years 5 months', ' better opportunity ', 1, '2024-09-05 08:23:40', 0, NULL, 0, NULL, 1),
(8982, 21190, 'gsquare', 'sales executive', '2021-09-06', 27000.00, '2022-12-06', 27000.00, 'alwarpet', '1', '1 years 3 months', ' I didnt Get proper recognition …', 1, '2024-09-05 09:34:52', 0, NULL, 0, NULL, 1),
(8983, 21196, 'Cameo Corporate services ', 'Backend officer ', '2023-08-03', 13000.00, '2024-04-11', 15000.00, 'Mount road ', '1', '0 years 8 months', 'Salary Issue not properly paid ', 1, '2024-09-05 12:54:27', 1, '2024-09-05 12:55:08', 0, NULL, 1),
(8984, 21196, 'HDB Financial services ', 'So', '2024-05-25', 15000.00, '2024-08-15', 15000.00, 'Thousand lights ', '1', '0 years 2 months', 'Relocated in villivakkam long distance reason ', 1, '2024-09-05 01:00:08', 1, '2024-09-05 01:00:32', 0, NULL, 1),
(8985, 21197, 'Bharat matrimony ', 'Senior service executive ', '2019-03-01', 15000.00, '2023-10-05', 25000.00, 'Guindy', '1', '4 years 7 months', ' Career growth ', 1, '2024-09-05 01:01:48', 0, NULL, 0, NULL, 1),
(8986, 21199, 'Allsec technology ', 'Customer support ', '2023-07-03', 1.00, '2024-07-10', 17000.00, 'Chennai ', '1', '1 years 0 months', ' Health issues ', 1, '2024-09-05 01:21:57', 0, NULL, 0, NULL, 1),
(8987, 21195, 'Sree Sethu Travels', 'Data Entry', '2023-06-07', 15000.00, '2024-04-27', 15000.00, 'Mylapore', '1', '0 years 10 months', 'Didn\'t giving salary increament ', 1, '2024-09-05 04:45:53', 0, NULL, 0, NULL, 1),
(8988, 21195, 'Derik TVS ', 'Telecalling and sales ', '2022-11-08', 9000.00, '2023-05-03', 15000.00, 'Nagercoil ', '1', '0 years 5 months', 'Salary not Enough ', 1, '2024-09-05 04:48:37', 0, NULL, 0, NULL, 1),
(8989, 21202, 'leadsense pvt ltd', 'academic counsellor', '2024-03-01', 5.00, '2024-08-23', 33000.00, 'nungambakkam', '1', '0 years 5 months', ' Have to migrate for higher position', 1, '2024-09-06 05:23:27', 0, NULL, 0, NULL, 1),
(8990, 21203, 'Svasti micro finance pvt ltd', 'Customer relationship manager', '2022-04-04', 15000.00, '2022-09-01', 16500.00, 'Ponneri', '1', '0 years 4 months', 'To continue  my PG MBA', 1, '2024-09-06 05:27:19', 0, NULL, 0, NULL, 1),
(8991, 21207, ' Renault ', 'Sales Consultant ', '2024-06-06', 15000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '0 years 3 months', ' For career Growth ', 1, '2024-09-06 06:01:30', 0, NULL, 0, NULL, 1),
(8992, 21211, 'Creditmantri Finserv pvt ltd ', 'Credit relationship officer ', '2023-06-12', 350000.00, '2024-08-07', 350000.00, 'Chennai', '1', '1 years 1 months', ' Family issues that\'s why I left the job ,right now every thing is fine so iam looking for a new opportunity and challenge showcase my skills and knowledge to improve organisation help too me ', 1, '2024-09-06 06:45:14', 0, NULL, 0, NULL, 1),
(8993, 21208, 'Manappuram finance limited', 'Branch Head', '2021-02-21', 8400.00, '2024-05-07', 26000.00, 'Chennai', '1', '3 years 2 months', ' Career growth', 1, '2024-09-06 06:45:44', 0, NULL, 0, NULL, 1),
(8994, 21212, 'Altruist', 'Rm', '2024-01-02', 20000.00, '2024-09-13', 23000.00, 'Kudlu gate', '1', '0 years 8 months', ' Personal reasons', 1, '2024-09-06 07:16:37', 0, NULL, 0, NULL, 1),
(8995, 21214, 'Guhan builders ', 'Telemarketing executive ', '2024-01-01', 16000.00, '2024-09-02', 16000.00, 'Anna nagar ', '1', '0 years 8 months', ' Branch is shifting to another location ', 1, '2024-09-06 07:37:52', 0, NULL, 0, NULL, 1),
(8996, 21214, 'Rone business solutions ', 'Telesales executive ', '2023-03-01', 15000.00, '2023-12-31', 15000.00, 'Thirumanagalam ', '1', '0 years 9 months', 'Start up office closed for some personal reasons ', 1, '2024-09-06 07:40:05', 0, NULL, 0, NULL, 1),
(8997, 21216, 'Intelenet Global services ', 'Customer services associate', '2016-05-13', 20000.00, '2017-03-02', 25000.00, 'Parrys', '1', '0 years 9 months', ' ', 1, '2024-09-06 08:41:56', 0, NULL, 0, NULL, 1),
(8998, 21216, 'Teamlease services limited ', 'Sales Executive ', '2020-08-06', 25000.00, '2023-05-08', 25000.00, 'Ambattur ', '1', '2 years 9 months', 'Personal reason', 1, '2024-09-06 08:45:51', 0, NULL, 0, NULL, 1),
(8999, 21217, 'Aarvi Encon Limited ', 'hr executive ', '2023-04-12', 27500.00, '2024-05-29', 27500.00, 'chennai', '1', '1 years 1 months', ' Career growth ', 1, '2024-09-06 09:26:00', 0, NULL, 0, NULL, 1),
(9000, 21104, 'Landmark insurance brokers Pvt Ltd ', 'Customer officer', '2024-06-03', 13.00, '1970-01-01', 13.00, 'Teynapettai ', '2', '0 years 3 months', ' There is no proper intimation of process and salary ', 1, '2024-09-06 10:32:40', 0, NULL, 0, NULL, 1),
(9001, 21232, 'Accenture ', 'Traction process associate ', '2022-07-07', 12000.00, '2024-01-24', 15000.00, 'Chennai ', '1', '1 years 6 months', ' Night shift ', 1, '2024-09-09 05:57:38', 0, NULL, 0, NULL, 1),
(9002, 21236, 'Suresh motilal and company ', 'Accountant', '2022-02-01', 6500.00, '2023-02-01', 7000.00, 'Chennai', '1', '1 years 0 months', ' Need more opportunities to explore my knowledge ', 1, '2024-09-09 06:13:17', 0, NULL, 0, NULL, 1),
(9003, 21239, 'CAMEO CORPORATE SERVICES ', 'HR EXECUTIVE ', '2023-02-15', 12500.00, '2024-08-15', 12500.00, 'MOUNTROAD ', '1', '1 years 6 months', ' Looking for better opportunities.', 1, '2024-09-09 06:15:44', 0, NULL, 0, NULL, 1),
(9004, 21234, 'FOREBLEND INFISCRIPTS PVT.LTD.', 'CUSTOMER RELATIONS OFFICER', '2023-03-15', 15000.00, '2024-05-20', 20000.00, 'Madiwala ', '1', '1 years 2 months', ' ', 1, '2024-09-09 06:33:48', 0, NULL, 0, NULL, 1),
(9005, 21234, 'FOREBLEND INFISCRIPTS PVT.LTD.', 'CUSTOMER RELATIONS OFFICER', '2023-03-15', 15000.00, '2024-05-20', 20000.00, 'Madiwala', '1', '1 years 2 months', 'Personal issue ', 1, '2024-09-09 06:37:16', 0, NULL, 0, NULL, 1),
(9006, 21244, 'Royal gold edible oil private limited ', 'Assistant stock supervisor and back office executi', '2023-08-01', 12000.00, '2024-08-15', 12000.00, 'Chengalpattu ', '1', '1 years 0 months', ' I\'m working under small scale business company and no salary increment and bonus this is the main reason for resigned', 1, '2024-09-09 08:09:52', 0, NULL, 0, NULL, 1),
(9007, 21246, 'Bairo Solutions Pvt. Ltd. ', 'Associate Developer', '2022-08-11', 18500.00, '2024-09-05', 29200.00, 'Chennai', '1', '2 years 0 months', ' Company is closing its operation in india', 1, '2024-09-09 08:12:55', 0, NULL, 0, NULL, 1),
(9008, 21249, 'Wipro ', 'Order management', '2022-08-03', 15000.00, '2023-01-01', 15000.00, 'Chennai', '1', '0 years 4 months', ' To improve my career', 1, '2024-09-09 10:33:34', 0, NULL, 0, NULL, 1),
(9009, 21259, 'NoQu Tech Solutions', 'Associate Telemarketing Executive ', '2023-11-01', 13500.00, '2024-09-10', 13500.00, 'Greams Road Thousand lights. Chennai', '1', '0 years 10 months', ' Some Health issues and Salary Package are Low', 1, '2024-09-10 04:52:31', 0, NULL, 0, NULL, 1),
(9010, 21266, 'Vizza insurance broking service ', 'Telecaller', '2024-01-18', 15000.00, '2024-09-10', 15000.00, 'Saidabad ', '2', '0 years 7 months', ' Salary issue ', 1, '2024-09-10 05:29:10', 0, NULL, 0, NULL, 1),
(9011, 21267, 'Axis Bank ', 'Relationship officer ', '2023-12-02', 20000.00, '2024-08-15', 20000.00, 'Chennai ', '1', '0 years 8 months', ' Medical issues ', 1, '2024-09-10 06:02:11', 0, NULL, 0, NULL, 1),
(9012, 21258, 'Kazo fashion private limited ', 'Store Manager ', '2022-12-15', 35000.00, '2024-06-27', 35000.00, 'Palladium mall chennai ', '1', '1 years 6 months', ' Health issues ', 1, '2024-09-10 06:30:20', 0, NULL, 0, NULL, 1),
(9013, 21271, 'Anarock property consultant ', 'Pre-sales ', '2024-05-21', 25000.00, '2024-09-02', 25000.00, 'Teynampet ', '1', '0 years 3 months', ' I want to Go Thiruporur site..Working location was Changed.', 1, '2024-09-10 06:34:21', 0, NULL, 0, NULL, 1),
(9014, 21279, 'Prime telesales ', 'Tele sales ', '2024-06-03', 14000.00, '2024-08-10', 14000.00, 'Nungambakkam ', '1', '0 years 2 months', ' Due to some safety issues ', 1, '2024-09-10 06:54:50', 0, NULL, 0, NULL, 1),
(9015, 21283, 'SBI credit card ', 'Credit card executive ', '2022-07-23', 14600.00, '2024-08-01', 18600.00, 'Royapuram ', '1', '2 years 0 months', ' Health issues ', 1, '2024-09-10 09:42:32', 0, NULL, 0, NULL, 1),
(9016, 21284, 'Finequs ', 'Tellecaling Executive ', '2023-05-02', 17000.00, '2024-05-31', 17000.00, 'Chennai t nagar ', '1', '1 years 0 months', ' Career growth ', 1, '2024-09-10 09:50:47', 0, NULL, 0, NULL, 1),
(9017, 21285, 'Vizza insurance broking services ', 'Team leader ', '2023-11-02', 18000.00, '2024-09-07', 18000.00, 'Tambaram ', '1', '0 years 10 months', ' ', 1, '2024-09-10 11:29:25', 0, NULL, 0, NULL, 1),
(9018, 21288, 'Allsec technologies ', 'Customer care executive ', '2023-06-19', 17000.00, '2023-12-28', 16000.00, 'Shantinagar ', '1', '0 years 6 months', ' Health issues ', 1, '2024-09-11 04:00:50', 0, NULL, 0, NULL, 1),
(9019, 21295, 'Allsec technology ', 'We', '2023-06-19', 7.00, '2024-08-12', 16000.00, 'Bangalore ', '1', '1 years 1 months', ' ', 1, '2024-09-11 05:28:32', 0, NULL, 0, NULL, 1),
(9020, 21286, 'IBrish consultancy', 'Relationship manager ', '2023-05-22', 19000.00, '2024-06-22', 20000.00, 'Srinivasa nagar', '1', '1 years 1 months', ' Carrier growth', 1, '2024-09-11 05:34:42', 0, NULL, 0, NULL, 1),
(9021, 21298, 'Eureka outsourcing solution', 'Digital relationship manager', '2023-02-25', 14500.00, '2023-07-10', 14500.00, 'Chennai', '1', '0 years 4 months', ' Family situation', 1, '2024-09-11 05:41:21', 0, NULL, 0, NULL, 1),
(9022, 21299, 'pace setters business solutions pvt ltd', 'customer support executive', '2023-08-10', 130000.00, '2024-05-01', 130000.00, 'nungabakkam', '1', '0 years 8 months', ' I am not getting good salary', 1, '2024-09-11 05:42:47', 0, NULL, 0, NULL, 1),
(9023, 21298, 'MRF TYRE', 'Data entry', '2021-01-09', 13000.00, '2022-01-12', 13000.00, 'Dharmapuri', '1', '1 years 0 months', 'Health issues', 1, '2024-09-11 05:45:03', 0, NULL, 0, NULL, 1),
(9024, 21299, 'the advansure india pvt ltd (edufin)', 'customer support executive', '2024-05-10', 17000.00, '2024-09-02', 17000.00, 'nungabakkam', '1', '0 years 3 months', 'They closed process', 1, '2024-09-11 05:45:52', 0, NULL, 0, NULL, 1),
(9025, 21302, 'Yesbee associate ', 'Sales executive ', '2023-06-08', 15000.00, '2023-12-21', 18000.00, 'Coimbatore ', '1', '0 years 6 months', 'Salary issue', 1, '2024-09-11 06:16:11', 0, NULL, 0, NULL, 1),
(9026, 21305, 'Friza Brokerage Private Limited', 'Telecaller', '2023-06-06', 12000.00, '2023-11-06', 12000.00, 'Chennai', '1', '0 years 5 months', ' New Job Opportunity', 1, '2024-09-11 06:18:22', 0, NULL, 0, NULL, 1),
(9027, 21305, 'Future Solutionz', 'Telecaller', '2023-11-15', 15000.00, '2024-08-10', 15000.00, 'Chennai', '1', '0 years 8 months', 'New Job Opportunity', 1, '2024-09-11 06:19:48', 0, NULL, 0, NULL, 1),
(9028, 21311, 'Khazana jewllery', 'Sales representative', '2020-10-14', 16000.00, '2022-08-31', 20000.00, 'Chennai, tnagar', '1', '1 years 10 months', ' I have a apendis surgery that time so i can\'t continue my work that time so i relive', 1, '2024-09-11 06:54:11', 0, NULL, 0, NULL, 1),
(9029, 21311, 'Rathimeena transport', 'Incharge cum supervisor', '2023-01-11', 20000.00, '1970-01-01', 20000.00, 'Chennai, mannady', '2', '1 years 8 months', 'I didn\'t relieve currently working', 1, '2024-09-11 06:55:57', 0, NULL, 0, NULL, 1),
(9030, 21312, 'Paisabazaar', 'Sales executive ', '2023-10-08', 18500.00, '2024-06-13', 18700.00, 'Chennai ', '1', '0 years 8 months', ' Improve my knowledge ', 1, '2024-09-11 06:57:55', 0, NULL, 0, NULL, 1),
(9031, 21315, 'Value stream business solutions ', 'Telecaller ', '2020-01-11', 15000.00, '1970-01-01', 15000.00, 'Kormangala ', '2', '4 years 8 months', 'Because of health issues ', 1, '2024-09-11 07:21:18', 0, NULL, 0, NULL, 1),
(9032, 21310, 'Paisabazzar ', 'Sales ', '2023-10-08', 18500.00, '2024-10-13', 18700.00, 'Chennai ', '1', '1 years 0 months', ' Improve  my work  knowledge ', 1, '2024-09-11 07:29:57', 0, NULL, 0, NULL, 1),
(9033, 21306, 'Empire Management ', 'Business Associate ', '2022-06-02', 10000.00, '2022-12-31', 12000.00, 'Chennai ', '1', '0 years 6 months', ' Low salary', 1, '2024-09-11 07:33:34', 0, NULL, 0, NULL, 1),
(9034, 21306, 'Eurekha outsourcing solutions ', 'Customer service Reprentative ', '2023-10-19', 12000.00, '2024-01-15', 12000.00, 'Chennai ', '1', '0 years 2 months', 'Ramp down', 1, '2024-09-11 07:36:10', 0, NULL, 0, NULL, 1),
(9035, 21304, 'Paisabazaar', 'Sales executive', '2023-10-08', 18500.00, '2024-07-13', 18700.00, 'Chennai', '1', '0 years 9 months', ' Improve my work knowledge', 1, '2024-09-11 07:40:52', 0, NULL, 0, NULL, 1),
(9036, 21287, 'One point one solution private limited ', 'Sr executive ', '2023-01-04', 14000.00, '2024-06-15', 18000.00, 'Kudlu gate Bengaluru Karnataka ', '1', '1 years 5 months', 'I resigned job for some personal reasons ', 1, '2024-09-11 07:43:44', 0, NULL, 0, NULL, 1),
(9037, 21318, 'Policy bazaar ', 'Policy bazaar ', '2024-06-25', 31.00, '2024-08-31', 31.00, 'Kandhanchavadi ', '1', '0 years 2 months', ' Long distance', 1, '2024-09-11 10:06:07', 0, NULL, 0, NULL, 1),
(9038, 21337, 'Bundi Technologies', 'Operation support executive', '2022-07-28', 25000.00, '2024-02-29', 27000.00, 'Bangalore', '1', '1 years 7 months', ' Contract was closed', 1, '2024-09-11 02:06:05', 0, NULL, 0, NULL, 1),
(9039, 21337, 'Allsec technologies', 'Technical support executive', '2019-09-18', 12000.00, '2020-11-12', 14000.00, 'Chennai, Tamil Nadu', '1', '1 years 1 months', 'Due to some personal issues', 1, '2024-09-11 02:07:52', 0, NULL, 0, NULL, 1),
(9040, 21354, 'HDFC credila financial services Limited ', 'Sales executive ', '2021-12-20', 15000.00, '2023-05-19', 20000.00, 'Chennai ', '1', '1 years 4 months', ' My father was died so I need to take care of family by with them. so i searching for job in my home town.', 1, '2024-09-12 05:01:53', 0, NULL, 0, NULL, 1),
(9041, 21357, 'Chola business services Limited', 'Deputy officer', '2022-02-14', 19975.00, '2024-05-20', 19975.00, 'Chennai', '1', '2 years 3 months', ' Career growth', 1, '2024-09-12 05:32:57', 0, NULL, 0, NULL, 1),
(9042, 21361, 'Jeeves customer service pvt ltd ', 'Mobile service engineer ', '2021-09-11', 17000.00, '2023-03-31', 19500.00, 'Chennai ', '1', '1 years 6 months', ' Next step ', 1, '2024-09-12 05:51:55', 0, NULL, 0, NULL, 1),
(9043, 21361, 'Aionion insurance marketing pvt ltd ', 'Insurance renewal junior associate ', '2023-07-26', 19500.00, '1970-01-01', 19500.00, 'Pouru Chennai ', '2', '1 years 1 months', 'Commitments ', 1, '2024-09-12 05:53:18', 0, NULL, 0, NULL, 1),
(9044, 21369, 'Policy bazaar', 'Sale executive', '2024-07-25', 17000.00, '2024-09-03', 17000.00, 'Perugundi', '1', '0 years 1 months', ' ', 1, '2024-09-12 07:01:13', 0, NULL, 0, NULL, 1),
(9045, 21377, 'Annai enterprise ', 'Business development manager ', '2022-07-07', 18000.00, '2023-12-31', 18000.00, 'Redhills ', '1', '1 years 5 months', ' Want to upgrade my skill ', 1, '2024-09-12 07:16:48', 0, NULL, 0, NULL, 1),
(9046, 21335, 'Associated Auto Solutions International Pvt Ltd ', 'Senior Associate Insurance Verification ', '2024-07-18', 420000.00, '2024-08-28', 420000.00, 'Kodambakkam ', '1', '0 years 1 months', ' Process was Ramp down ', 1, '2024-09-12 07:18:42', 0, NULL, 0, NULL, 1),
(9047, 21335, 'First Source Solution ', 'Senior customer support Associate ', '2022-08-11', 254000.00, '2024-07-19', 264000.00, 'Navalur, Chennai ', '1', '1 years 11 months', 'Process was Ramp down ', 1, '2024-09-12 07:20:08', 0, NULL, 0, NULL, 1),
(9048, 21362, 'asianic', 'calicut', '2023-06-26', 14000.00, '2024-07-30', 16000.00, 'kerala', '1', '1 years 1 months', ' ', 1, '2024-09-12 07:55:12', 0, NULL, 0, NULL, 1),
(9049, 21344, 'Randstad ', 'Sales executive ', '2023-05-06', 15000.00, '2024-09-12', 15000.00, 'Indiranagar ', '1', '1 years 4 months', ' ', 1, '2024-09-12 07:56:45', 0, NULL, 0, NULL, 1),
(9050, 9690, 'Bank baazar ', 'Senior customer relationship officer ', '2013-02-24', 15000.00, '2024-08-14', 24000.00, 'Prince info park Ambattur industrial estate ', '1', '11 years 5 months', ' Career growth ', 1, '2024-09-12 09:16:02', 0, NULL, 0, NULL, 1),
(9051, 21385, 'Bankbazaar ', 'Senior Customer relationship officer 2', '2023-02-28', 15000.00, '1970-01-01', 25000.00, 'Prince info park ambattur ', '2', '1 years 6 months', ' Career Growth ', 1, '2024-09-12 09:16:03', 0, NULL, 0, NULL, 1),
(9052, 21391, 'teamlease services Limited ', 'sales officer', '2022-12-15', 31.00, '2024-01-18', 20000.00, 'nungambakam', '1', '1 years 1 months', ' Timing ', 1, '2024-09-12 12:59:40', 0, NULL, 0, NULL, 1),
(9053, 21392, 'Homeserve india', 'Telemarketing associate', '2022-01-31', 7.00, '2023-03-22', 15000.00, 'Mylapore ', '1', '1 years 1 months', ' Career change', 1, '2024-09-12 01:24:00', 0, NULL, 0, NULL, 1),
(9054, 21392, 'Andromeda sales and Distribution Pvt ', 'Telecaller', '2023-04-01', 5.00, '2024-06-20', 15000.00, 'Nungambakkam ', '1', '1 years 2 months', 'Family issue ', 1, '2024-09-12 01:25:34', 0, NULL, 0, NULL, 1),
(9055, 21406, 'Merloam ', 'Telecaller ', '2024-06-01', 16000.00, '2024-09-11', 8000.00, 'Vadapalani ', '1', '0 years 3 months', 'Salary packaging less ', 1, '2024-09-13 06:31:08', 0, NULL, 0, NULL, 1),
(9056, 21410, 'IBS Loan zone', 'Customer relationship executive', '2018-07-13', 10000.00, '2019-04-30', 10000.00, 'Chennai', '1', '0 years 9 months', ' Better opportunity', 1, '2024-09-13 06:52:38', 0, NULL, 0, NULL, 1),
(9057, 21410, 'Infosearch', 'Process executive', '2019-05-05', 12000.00, '2019-09-30', 12000.00, 'Chennai', '1', '0 years 4 months', 'Personal reasons', 1, '2024-09-13 06:55:04', 0, NULL, 0, NULL, 1),
(9058, 21410, 'LVR auto distributors', 'Accounts assistant', '2021-03-01', 17000.00, '2022-04-30', 17700.00, 'Chennai', '1', '1 years 1 months', 'Better opportunity', 1, '2024-09-13 06:58:00', 0, NULL, 0, NULL, 1),
(9059, 21410, 'Corpgen services', 'Research associate', '2022-05-11', 18000.00, '2024-01-31', 18992.00, 'Chennai', '1', '1 years 8 months', 'Project rampdown', 1, '2024-09-13 07:02:08', 0, NULL, 0, NULL, 1),
(9060, 21412, 'paytm payment bank', 'sales executive', '2020-03-10', 15000.00, '1970-01-01', 18000.00, 'tnagar', '2', '4 years 6 months', ' Noo proper guidance', 1, '2024-09-13 07:05:15', 0, NULL, 0, NULL, 1),
(9061, 21411, 'Sri Saravana bhavan', 'Supervisior ', '2023-01-03', 15000.00, '2024-05-30', 15000.00, 'Tuticorin ', '1', '1 years 4 months', ' My husband met With an accident ', 1, '2024-09-13 07:27:52', 0, NULL, 0, NULL, 1),
(9062, 21414, 'Zinka logistics ', 'BPO Voice ', '2021-04-01', 1.00, '2021-10-31', 17200.00, 'Marathahalli ', '1', '0 years 6 months', ' Company Shutdown Or Process Shutdown ', 1, '2024-09-13 07:43:05', 0, NULL, 0, NULL, 1),
(9063, 21426, 'Hdb Financial services Ltd', 'Jr officer', '2022-04-21', 135000.00, '2024-04-30', 2000000.00, 'Chennai', '1', '2 years 0 months', ' My father health issues  problem so i did reliving the Job\n', 1, '2024-09-14 04:53:27', 0, NULL, 0, NULL, 1),
(9064, 21430, 'Connect bessuniss solution ', 'Voice process ', '2019-08-19', 9000.00, '2024-08-05', 20000.00, 'Guindy ', '1', '4 years 11 months', ' ', 1, '2024-09-14 05:17:21', 0, NULL, 0, NULL, 1),
(9065, 21430, 'Connect business solutions ', 'Voice process ', '2019-08-19', 9000.00, '2024-08-05', 20000.00, 'Guindy ', '1', '4 years 11 months', ' Low salary ', 1, '2024-09-14 05:24:11', 0, NULL, 0, NULL, 1),
(9066, 20785, 'KOTAK GENERAL INSURANCE CO LTD ', 'Assistant Manager ', '2021-12-24', 25000.00, '1970-01-01', 30000.00, 'Bangalore ', '2', '2 years 8 months', ' Looking for best in customer service ', 1, '2024-09-14 05:42:22', 0, NULL, 0, NULL, 1),
(9067, 21437, 'HDFC ergo motor renewed insurance', 'Junior associate ', '2022-03-15', 15000.00, '2023-05-31', 20000.00, 'Chennai ', '1', '1 years 2 months', ' Process closed ', 1, '2024-09-14 06:47:00', 0, NULL, 0, NULL, 1),
(9068, 21437, 'Dr. Mohan Diabetics multi speciality hospital ', 'Call centre executive ', '2020-06-20', 14000.00, '2021-02-28', 15000.00, 'Chennai ', '1', '0 years 8 months', 'Growth', 1, '2024-09-14 06:54:06', 0, NULL, 0, NULL, 1),
(9069, 21437, 'Spot-on logistics private limited ', 'Ground service executive ', '2018-09-10', 12000.00, '2020-02-25', 12000.00, 'Chennai ', '1', '1 years 5 months', 'Growth', 1, '2024-09-14 06:56:11', 0, NULL, 0, NULL, 1),
(9070, 21437, 'Mahendra and mehendra financial services limited ', 'Cashier and back office ', '2016-07-15', 10000.00, '2018-05-31', 12000.00, 'Chennai', '1', '1 years 10 months', 'Growth', 1, '2024-09-14 06:58:30', 0, NULL, 0, NULL, 1),
(9071, 21449, 'BYJUS', 'Business Development associate ', '2023-06-01', 330000.00, '2024-02-23', 33000.00, 'Chennai ', '1', '0 years 8 months', ' Salary issues', 1, '2024-09-14 11:13:33', 0, NULL, 0, NULL, 1),
(9072, 21449, 'Rajalakshimi eduverse ', 'Business Development Executive ', '2024-04-23', 26000.00, '2024-09-05', 26000.00, 'Chennai ', '1', '0 years 4 months', 'I need permanent Growth and also I am looking for  apart from edu tech ', 1, '2024-09-14 11:17:00', 0, NULL, 0, NULL, 1),
(9073, 21452, 'Angel one', 'Sales executive ', '2023-09-05', 22000.00, '1970-01-01', 32000.00, 'Work from home ', '2', '1 years 0 months', ' Not get much better opportunity, not able to use my experience ', 1, '2024-09-14 06:14:40', 0, NULL, 0, NULL, 1),
(9074, 21458, 'Test 2 Build PVT ltd ', 'Sampling cell Report manager ', '2024-04-16', 15000.00, '1970-01-01', 15000.00, 'Guindy', '2', '0 years 5 months', ' ', 1, '2024-09-16 04:48:47', 0, NULL, 0, NULL, 1),
(9075, 21468, 'Svbp ventures ', 'Telesales', '2023-11-23', 15.00, '2024-08-31', 20.00, 'Jayanagar 1 st block', '1', '0 years 9 months', 'After 5 months only worked in incentives based that\'s I\'m left job', 1, '2024-09-16 06:08:01', 0, NULL, 0, NULL, 1),
(9076, 21469, 'Dbs', 'Pb', '2022-10-01', 2.50, '2023-01-25', 3.50, 'Parrys', '1', '0 years 3 months', 'Ctc is very low', 1, '2024-09-16 06:13:21', 0, NULL, 0, NULL, 1),
(9077, 21473, 'Grh furnishings and interior design', 'Sales executive', '2021-07-02', 10000.00, '2022-06-10', 15000.00, 'CHENNAI', '1', '0 years 11 months', ' Salary issue', 1, '2024-09-16 06:23:09', 0, NULL, 0, NULL, 1),
(9078, 21472, 'Au small finance bank', 'Bank ofgicer', '2023-12-11', 3.50, '1970-01-01', 3.50, 'Parrys', '2', '0 years 9 months', ' Ctc very low ', 1, '2024-09-16 06:23:47', 0, NULL, 0, NULL, 1),
(9079, 21473, 'Premier motors', 'Sales executive', '2022-07-04', 12000.00, '2023-09-04', 15000.00, 'CHENNAI', '1', '1 years 2 months', 'Salary issue', 1, '2024-09-16 06:25:33', 0, NULL, 0, NULL, 1),
(9080, 21474, 'Sri Srinivasa matric Hr sec school ', 'Coordinator ', '2024-06-03', 15000.00, '2024-09-03', 15000.00, 'Orathanadu ', '1', '0 years 3 months', ' Due to distance & travel.', 1, '2024-09-16 06:28:45', 0, NULL, 0, NULL, 1),
(9081, 21473, 'Pace setters business solution', 'Customer support executive ', '2024-08-07', 15000.00, '2024-09-12', 15000.00, 'CHENNAI', '1', '0 years 1 months', 'Salary issue', 1, '2024-09-16 06:28:55', 0, NULL, 0, NULL, 1),
(9082, 21476, 'Forte management service ', 'Telly caller ', '2023-06-21', 10.00, '2024-05-10', 15000.00, 'Saidapet ', '1', '0 years 10 months', ' Salary issues ', 1, '2024-09-16 07:15:35', 0, NULL, 0, NULL, 1),
(9083, 21476, 'Forte management service ', 'Telly caller ', '2023-06-21', 10.00, '2024-06-10', 15.00, 'Saidapet ', '1', '0 years 11 months', 'Salary issues ', 1, '2024-09-16 07:17:33', 1, '2024-09-16 07:17:48', 0, NULL, 0),
(9084, 21482, 'Paisa bazaar ', 'Sales employee ', '2023-11-10', 18500.00, '2024-05-09', 18500.00, 'Chennai ', '1', '0 years 5 months', ' Personal issues ', 1, '2024-09-16 07:29:10', 0, NULL, 0, NULL, 1),
(9085, 21175, 'teleperformance', 'Senior customer care executive ', '2023-10-02', 18000.00, '2024-08-02', 18000.00, 'Ambattur, Chennai', '1', '0 years 10 months', ' Process ramp down ', 1, '2024-09-16 07:39:14', 0, NULL, 0, NULL, 1),
(9086, 21487, 'Bank bazaar', 'Customer relationship officer ', '2023-05-09', 15000.00, '2024-07-30', 23000.00, 'Ambattur ', '1', '1 years 2 months', 'Shifting our home', 1, '2024-09-16 10:01:31', 0, NULL, 0, NULL, 1),
(9087, 12378, 'Aditya birla capital ', 'VRM', '2022-09-12', 3.00, '1970-01-01', 3.00, 'chennai ', '2', '2 years 0 months', ' Carrier grow and Expense the new things   ', 1, '2024-09-17 04:48:20', 0, NULL, 0, NULL, 1),
(9088, 21501, 'Ace event ', 'Organizer ', '2023-12-01', 10000.00, '2025-04-01', 10000.00, 'Thanjavur ', '1', '1 years 4 months', ' Salary problem ', 1, '2024-09-17 05:36:09', 0, NULL, 0, NULL, 1),
(9089, 21525, 'Kingmakers ias academy ', 'Assistant Accountant ', '2024-06-16', 13000.00, '2024-09-09', 13000.00, 'Anna nagar east,  chennai ', '1', '0 years 2 months', ' Kingmakers ias academy financial problem \nThis organization removed for 15 employer I am one of the person ', 1, '2024-09-17 12:57:09', 0, NULL, 0, NULL, 1),
(9090, 21514, 'Marketsof1', 'Junior sales executive ', '2023-09-04', 19500.00, '2024-09-06', 19500.00, 'Littlemount', '1', '1 years 0 months', ' ', 1, '2024-09-18 04:57:58', 0, NULL, 0, NULL, 1),
(9091, 21532, 'Shadowax  company ', 'Bpo', '2023-08-18', 17000.00, '2024-07-15', 17000.00, 'Teynampet ', '1', '0 years 10 months', 'Target', 1, '2024-09-18 05:32:53', 0, NULL, 0, NULL, 1),
(9092, 21534, 'Shadowfax company ', 'Telecalling ', '2023-08-18', 17000.00, '2024-07-15', 17000.00, 'SIET', '1', '0 years 10 months', ' Target ', 1, '2024-09-18 05:32:56', 0, NULL, 0, NULL, 1),
(9093, 21543, 'justdial', 'sales', '2023-03-15', 25000.00, '2024-06-01', 25000.00, 'iittle mount', '1', '1 years 2 months', 'I have family issues  ', 1, '2024-09-18 06:05:51', 0, NULL, 0, NULL, 1),
(9094, 21546, 'Reliance brands Limited ', 'Sales executive ', '2021-11-10', 180000.00, '2024-09-30', 252000.00, 'Chennai', '1', '2 years 10 months', ' Career development ', 1, '2024-09-18 06:21:19', 0, NULL, 0, NULL, 1),
(9095, 21547, 'Liquiloans ', 'Relationship manager ', '2023-01-30', 30.00, '2024-09-27', 350000.00, 'Chennai ', '1', '1 years 7 months', ' I looking for better opportunity and expand my skills which allign with my career goals', 1, '2024-09-18 06:33:28', 0, NULL, 0, NULL, 1),
(9096, 21550, 'subiskham logsists ', 'admin', '2020-01-15', 15000.00, '2023-07-19', 16000.00, 'chennai', '1', '3 years 6 months', 'Distance ', 1, '2024-09-18 06:50:31', 0, NULL, 0, NULL, 1),
(9097, 21528, 'Altruist ', 'Telecaller', '2024-01-04', 14000.00, '2024-09-08', 14000.00, 'Mount road', '1', '0 years 8 months', ' Personal issue ', 1, '2024-09-18 06:53:38', 0, NULL, 0, NULL, 1),
(9098, 21551, 'Altruist private limited ', 'Idfc collection ', '2024-02-21', 14000.00, '1970-01-01', 3000.00, 'Mount road ', '2', '0 years 6 months', ' Unable to survive with the salary package ', 1, '2024-09-18 06:55:58', 0, NULL, 0, NULL, 1),
(9099, 21544, 'Altruist technologies pvt Ltd', 'Tellcaller', '2023-11-29', 14000.00, '2024-08-23', 14000.00, 'Mount road', '1', '0 years 8 months', ' ', 1, '2024-09-18 07:24:55', 0, NULL, 0, NULL, 1),
(9100, 21564, 'Praveen Enterprises Pvt Ltd ', 'Jr Account', '2008-02-12', 8000.00, '2013-01-11', 16000.00, 'Chennai ', '1', '4 years 10 months', ' Got job opportunities in Accenture Pvt Ltd ', 1, '2024-09-18 02:33:28', 0, NULL, 0, NULL, 1),
(9101, 21564, 'Accenture Pvt Ltd ', 'Process Associate ', '2013-06-17', 21000.00, '2018-07-17', 26800.00, 'Chennai', '1', '5 years 1 months', 'I have opportunity better organisations ', 1, '2024-09-18 02:36:13', 0, NULL, 0, NULL, 1),
(9102, 21580, 'ALLINS WEALTHPRO pvt Ltd ', 'Team leader - Direct Sales Team ', '2024-02-19', 13500.00, '2024-08-19', 13500.00, 'Anna nagar, CHENNAI ', '1', '0 years 6 months', 'Need to explore more and Reach out for further interest and new locations ', 1, '2024-09-19 06:00:18', 0, NULL, 0, NULL, 1),
(9103, 21578, 'HDFC', 'Sales executive ', '2023-08-01', 12000.00, '2024-03-10', 12000.00, 'Sowkarpet', '1', '0 years 7 months', ' Family issue ', 1, '2024-09-19 06:09:11', 0, NULL, 0, NULL, 1),
(9104, 21583, 'Flextronics ', 'Qc', '2019-06-10', 13000.00, '2020-06-12', 13000.00, ' Chennai ', '1', '1 years 0 months', 'After that I\'m joined software testing course.', 1, '2024-09-19 06:16:05', 0, NULL, 0, NULL, 1),
(9105, 21587, 'Bluechip corporate investment centre ', 'Branch assistant ', '2022-11-05', 13500.00, '2024-02-02', 14500.00, 'Thousand lights ', '1', '1 years 2 months', ' My mother health was not well ', 1, '2024-09-19 06:31:22', 0, NULL, 0, NULL, 1),
(9106, 21588, 'Kaps call center ', 'Tele call ', '2022-09-10', 19800.00, '2023-09-29', 19800.00, 'Ragi guda Bangalore ', '1', '1 years 0 months', ' Branch shifted ', 1, '2024-09-19 06:43:54', 0, NULL, 0, NULL, 1),
(9107, 21590, 'Grt pvt ', 'Sales man', '2022-12-27', 17500.00, '2024-01-25', 18000.00, 'Chennai', '1', '1 years 0 months', ' Actually I selected A back office procces in that company but they give a role sales man only .they said after the 3 months I change for you..but not changed so I relievaed ', 1, '2024-09-19 06:46:23', 0, NULL, 0, NULL, 1),
(9108, 21592, 'Ntrust software solutions', 'Lease annotator', '2022-02-01', 14000.00, '2024-07-24', 19000.00, 'Mount road, chennai', '1', '2 years 5 months', ' Better career growth', 1, '2024-09-19 06:59:06', 0, NULL, 0, NULL, 1),
(9109, 21604, 'Bajaj finserv ', 'Chennai ', '2020-11-20', 19000.00, '1970-01-01', 35000.00, '4Years', '2', '3 years 10 months', ' To develop career growth ', 1, '2024-09-20 03:39:48', 0, NULL, 0, NULL, 1),
(9110, 21623, 'Tranzindia ', 'Top leader ', '2023-07-28', 15.00, '2024-08-20', 20.00, 'West Mambalam ', '1', '1 years 0 months', ' For Personal Reasons ', 1, '2024-09-20 05:28:07', 0, NULL, 0, NULL, 1),
(9111, 21625, 'Banbazaar', 'Customer relationship officer', '2023-09-03', 15000.00, '2024-09-20', 15000.00, 'Ambattur', '1', '1 years 0 months', ' ', 1, '2024-09-20 05:45:33', 0, NULL, 0, NULL, 1),
(9112, 21632, 'Rkm technical works ', 'Senior civil Engineer ', '2022-06-08', 40000.00, '2024-07-11', 95000.00, 'Sharja', '1', '2 years 1 months', ' Contract closed', 1, '2024-09-20 06:35:08', 0, NULL, 0, NULL, 1),
(9113, 21617, 'ICICI Lombard general insurance company ', 'Telesales', '2024-04-01', 16.50, '2024-08-02', 16.50, 'Thousands lights,chennai', '1', '0 years 4 months', ' Last month I met minor accident ,I have injured back bone ,so I unable to go to the office,so I applied for leave 1 month ,the management not accepted my leave request for 1 month ,so I leave the organisation ', 1, '2024-09-20 06:46:43', 0, NULL, 0, NULL, 1),
(9114, 21567, 'Ninestars information technology ', 'Junior Associate ', '2023-09-13', 15000.00, '2024-09-20', 15000.00, 'Chennai ', '2', '1 years 0 months', ' ', 1, '2024-09-20 06:56:41', 0, NULL, 0, NULL, 1),
(9115, 21646, 'Neyveli Lignite Corporation ', 'Graduate apprenticeship trainee ', '2023-03-27', 15000.00, '2024-03-28', 15000.00, 'Neyveli ', '1', '1 years 0 months', ' One year contract ', 1, '2024-09-21 04:23:00', 0, NULL, 0, NULL, 1),
(9116, 21645, 'Smr automotive pvt', 'Hyundai customer support', '2020-04-22', 14000.00, '2024-06-15', 14000.00, 'Kanchipuram', '1', '4 years 1 months', ' ', 1, '2024-09-21 04:30:15', 0, NULL, 0, NULL, 1),
(9117, 21649, 'AU BANK', 'CASA BO', '2024-05-02', 21000.00, '1970-01-01', 21000.00, 'Ashok nagar', '2', '0 years 4 months', ' THE JOB IS NOT UPTO MY POTENTIAL ', 1, '2024-09-21 05:55:08', 0, NULL, 0, NULL, 1),
(9118, 21663, 'Plaza Maintenance and service ltd', 'Facilities and administration ', '2019-07-01', 15000.00, '2023-06-07', 20000.00, 'Spencer plaza', '1', '3 years 11 months', ' Due to maternity I was Supposed To take bed Rest And take care of my new born Baby.', 1, '2024-09-21 06:20:21', 0, NULL, 0, NULL, 1),
(9119, 21664, 'Bank bazaar ', 'Customer relationship officer', '2022-11-28', 15000.00, '2024-04-16', 15000.00, 'Ambattur ', '1', '1 years 4 months', ' ', 1, '2024-09-21 06:20:49', 0, NULL, 0, NULL, 1),
(9120, 21665, 'Aditya Birla capitals ', 'Sales manager', '2023-10-18', 390000.00, '2024-04-12', 390000.00, 'Porur ', '1', '0 years 5 months', ' Distance issue ', 1, '2024-09-21 06:27:24', 0, NULL, 0, NULL, 1),
(9121, 21669, 'Six phrase edu tech private limited ', 'Operations manager ', '2023-11-10', 180000.00, '2024-10-31', 180000.00, 'Chennai ', '1', '0 years 11 months', ' New opportunities experience new challenges ', 1, '2024-09-21 07:06:53', 0, NULL, 0, NULL, 1),
(9122, 21670, 'Telecaller ', 'SRA ', '2023-03-21', 15000.00, '1970-01-01', 20000.00, 'Nandanam ', '2', '1 years 6 months', ' Some Personal ', 1, '2024-09-21 07:18:07', 0, NULL, 0, NULL, 1),
(9123, 21674, 'Six phrase edu tech private limited ', 'Operations manager ', '2023-11-11', 180000.00, '2024-10-31', 180000.00, 'Chennai', '1', '0 years 11 months', 'Excited for new opportunities and grow & new challenges ', 1, '2024-09-21 07:27:13', 0, NULL, 0, NULL, 1),
(9124, 21675, 'Devi', 'Tele caller ', '2024-09-21', 23.00, '1970-01-01', 17.00, 'Thousand light', '2', '0 years 0 months', ' Long distance ', 1, '2024-09-21 07:55:14', 0, NULL, 0, NULL, 1),
(9125, 21673, 'Naveen ', 'Tela callers ', '2024-09-21', 20.00, '2024-07-01', 20.00, 'Thugu light ', '2', '0 years 0 months', ' Long distances ', 1, '2024-09-21 07:56:23', 0, NULL, 0, NULL, 1),
(9126, 21682, 'Rapid care transcriptions pvt ltd', 'Ar caller', '2020-02-13', 14680.00, '2022-04-23', 17000.00, 'Chennai', '1', '2 years 2 months', 'To Develop my career', 1, '2024-09-21 09:28:09', 0, NULL, 0, NULL, 1),
(9127, 21691, 'I Process service India private limited ', 'Tellecaller ', '2023-08-14', 1.00, '2024-02-19', 16000.00, 'Chennai ', '1', '0 years 6 months', ' Health issues ', 1, '2024-09-23 02:30:32', 0, NULL, 0, NULL, 1),
(9128, 21694, 'Sutherland ', 'Chennai', '2023-08-21', 15000.00, '2024-04-09', 20000.00, 'Chennai', '1', '0 years 7 months', ' Family issues', 1, '2024-09-23 05:04:19', 0, NULL, 0, NULL, 1),
(9129, 21699, 'F5 clouds ', 'Business development ', '2022-12-05', 20000.00, '1970-01-01', 25000.00, 'Coimbatore ', '2', '1 years 9 months', ' ', 1, '2024-09-23 05:13:52', 0, NULL, 0, NULL, 1),
(9130, 21716, 'star Health insurance ', 'TSO', '2024-05-01', 20000.00, '1970-01-01', 20000.00, 'Jayadev hospital opposite ', '2', '0 years 4 months', ' ', 1, '2024-09-23 06:19:30', 0, NULL, 0, NULL, 1),
(9131, 21685, 'Edufin ', 'Customer support executive ', '2024-02-29', 17000.00, '2024-08-10', 17000.00, 'Nungambakkama ', '1', '0 years 5 months', ' Health issues ', 1, '2024-09-23 06:31:09', 0, NULL, 0, NULL, 1),
(9132, 21685, 'Edufin ', 'Customer support executive ', '2024-02-29', 17500.00, '2024-08-10', 17500.00, 'Nungambakkama ', '1', '0 years 5 months', 'Health issues ', 1, '2024-09-23 06:32:27', 0, NULL, 0, NULL, 1),
(9133, 21685, 'Edufin ', 'Customer support executive ', '2024-02-29', 17500.00, '2024-08-10', 17500.00, 'Nungambakkama ', '1', '0 years 5 months', 'Health issues ', 1, '2024-09-23 06:33:27', 0, NULL, 0, NULL, 1),
(9134, 21689, 'Altruist technologies', 'Sales executive', '2023-07-13', 15000.00, '2024-05-21', 15000.00, 'Chennai', '1', '0 years 10 months', ' Medical issue and doctor said to take bed rest for 3months', 1, '2024-09-23 07:20:45', 0, NULL, 0, NULL, 1),
(9135, 21689, 'Tech mahindra', 'Custommer support', '2022-09-05', 15000.00, '2023-06-16', 15000.00, 'Chennai', '1', '0 years 9 months', 'Shift time not comfortable, i request for morning shift but they pull to evening shift so i cant comfort with that so i releave the job\n', 1, '2024-09-23 07:29:18', 0, NULL, 0, NULL, 1),
(9136, 21728, 'Eureka outsourcing solutions ', 'Jain college ', '2023-12-27', 15000.00, '2024-08-20', 15000.00, 'Mettukuppam ', '1', '0 years 7 months', ' My dad was in hospital..so I  asked for 4 days leave but they didn\'t approve it so I absconded...', 1, '2024-09-23 01:06:19', 0, NULL, 0, NULL, 1),
(9137, 21732, 'Thinksynq solutions ', 'Customer support executive ', '2023-11-01', 15000.00, '2024-06-14', 18000.00, 'Ekattuthangal ', '1', '0 years 7 months', 'Personal issues ', 1, '2024-09-24 03:34:01', 0, NULL, 0, NULL, 1),
(9138, 21739, 'HDFC Bank ', 'Sales officer ', '2022-10-07', 11500.00, '2024-07-03', 16500.00, 'Chennai', '1', '1 years 8 months', ' Field works', 1, '2024-09-24 05:08:17', 0, NULL, 0, NULL, 1),
(9139, 21741, 'HDB financial services ', 'Telecaller', '2022-04-25', 11000.00, '2024-09-10', 13000.00, 'Chennai ', '1', '2 years 4 months', 'Salary issue ', 1, '2024-09-24 06:00:11', 0, NULL, 0, NULL, 1),
(9140, 21690, 'Selfmade e.com ', 'Sales executive ', '2021-04-22', 12000.00, '2021-11-19', 15000.00, 'Erode', '1', '0 years 6 months', ' ', 1, '2024-09-24 06:02:22', 0, NULL, 0, NULL, 1),
(9141, 21742, 'Self made', 'Sales executive ', '2021-04-22', 13000.00, '2021-11-19', 15000.00, 'Erode', '1', '0 years 6 months', 'Personal reasons ', 1, '2024-09-24 06:08:26', 0, NULL, 0, NULL, 1),
(9142, 21743, 'Self made ', 'Sales executive ', '2021-04-22', 13000.00, '2021-11-19', 14000.00, 'Erode', '1', '0 years 6 months', ' ', 1, '2024-09-24 06:10:50', 0, NULL, 0, NULL, 1),
(9143, 21730, 'Star health insurance ', 'Telesales', '2024-01-01', 16000.00, '2024-07-01', 16000.00, 'Vadapalani ', '1', '0 years 6 months', 'Relocating for a new job opportunity is one of the most common reasons for resigning.', 1, '2024-09-24 06:23:19', 0, NULL, 0, NULL, 1),
(9144, 21760, 'Edullin private limited ', 'Support executive ', '2023-07-03', 20000.00, '2024-07-27', 20000.00, 'Chennai ', '1', '1 years 0 months', ' For a change of field for a career growth ', 1, '2024-09-24 09:15:38', 0, NULL, 0, NULL, 1),
(9145, 21765, 'Cams', 'Customer service executive ', '2023-08-23', 12800.00, '2024-06-01', 15000.00, 'Anna salai', '1', '0 years 9 months', ' Personal Issues ', 1, '2024-09-25 01:30:54', 0, NULL, 0, NULL, 1),
(9146, 21769, 'Agira technologies ', 'Junior developer ', '2022-03-16', 13000.00, '2023-03-30', 13000.00, 'Chennai ', '1', '1 years 0 months', ' ', 1, '2024-09-25 04:56:32', 0, NULL, 0, NULL, 1),
(9147, 21769, 'Sundar infographic analytics ', 'Software developer ', '2023-08-01', 15000.00, '2024-07-26', 15000.00, 'Chennai', '1', '0 years 11 months', 'Career growth ', 1, '2024-09-25 04:57:54', 0, NULL, 0, NULL, 1),
(9148, 14081, 'StoreSoft solution pvt Ltd ', 'Software Engineer ', '2023-01-02', 15000.00, '1970-01-01', 17500.00, 'Chennai ', '2', '1 years 8 months', 'I want to grow in my career and take on new challenges. While I\'ve learned a lot in my current role, I\'m eager to work with new technologies and be part of\na dynamic team where I can continue developing my skills and contribute to exciting projects. I believe your company offers the right environment for me to achieve these goals.', 1, '2024-09-25 05:33:50', 0, NULL, 0, NULL, 1),
(9149, 21724, 'Flipkart ', 'Deo', '2023-06-13', 16000.00, '2024-03-22', 18000.00, 'Chennai', '1', '0 years 9 months', ' Suppernation ', 1, '2024-09-25 05:51:57', 0, NULL, 0, NULL, 1),
(9150, 21789, 'INDIAMART', 'Seals team', '2023-10-16', 22000.00, '2024-09-17', 20000.00, 'Thousand lights ', '1', '0 years 11 months', ' Some issu', 1, '2024-09-25 07:45:32', 0, NULL, 0, NULL, 1),
(9151, 21796, 'hdb finance service', 'selas senior officer', '2022-12-06', 13000.00, '2024-09-18', 18660.00, 'chennai', '1', '1 years 9 months', ' Personal issue', 1, '2024-09-25 09:06:12', 0, NULL, 0, NULL, 1),
(9152, 21806, 'Veranda Race ', 'Academic counselor ', '2023-02-01', 15000.00, '2024-07-22', 15000.00, 't.nager ', '1', '1 years 5 months', ' Because of low salary ', 1, '2024-09-26 04:37:05', 0, NULL, 0, NULL, 1),
(9153, 21817, 'ICICI BANK LTD', 'Senior RM ', '2021-10-19', 15000.00, '2024-03-30', 20000.00, 'Arni', '1', '2 years 5 months', ' To upgrade my skill, Joined Edubridge Learning Pvt Ltd to get Investment Banking course to be completed.', 1, '2024-09-26 05:23:41', 0, NULL, 0, NULL, 1),
(9154, 21818, 'Wheelseye technology pvt LTD ', 'Telesales ', '2021-11-12', 20000.00, '2022-05-15', 22500.00, 'Gurgaon ', '1', '0 years 6 months', ' My father was illness ', 1, '2024-09-26 05:40:05', 0, NULL, 0, NULL, 1),
(9155, 21830, 'Teleperformence', 'Customer support executive ', '2023-06-18', 18000.00, '2024-04-12', 18000.00, 'Ambattur industrial estate, chennai', '1', '0 years 9 months', ' Due to personal reasons', 1, '2024-09-26 07:19:26', 0, NULL, 0, NULL, 1),
(9156, 21835, 'EDUFIN', 'Customer support executive ', '2023-04-11', 1.00, '2024-06-30', 20000.00, 'Nungambakkam ', '1', '1 years 2 months', ' As there is lack for man power in filed visit team they said me to shift over there 1month I did but travelling doesn\'t suits me so I informed and got relieved ', 1, '2024-09-26 09:53:22', 0, NULL, 0, NULL, 1),
(9157, 21844, 'Sterlo', 'Associate technical Analyst', '2022-07-01', 13500.00, '1970-01-01', 21000.00, 'Erode', '2', '2 years 2 months', ' Salary delay', 1, '2024-09-27 04:32:08', 0, NULL, 0, NULL, 1),
(9158, 21846, 'Manappuram finance Ltd ', 'Assistant Branch Head ', '2023-02-07', 12000.00, '2024-04-04', 15000.00, 'Chennai ', '1', '1 years 1 months', ' ', 1, '2024-09-27 04:55:04', 0, NULL, 0, NULL, 1),
(9159, 21841, 'COEPD', 'Guna complex', '2023-08-05', 18000.00, '2024-08-16', 18000.00, 'Teynampet', '1', '1 years 0 months', ' The Project has ended.', 1, '2024-09-27 04:59:18', 0, NULL, 0, NULL, 1),
(9160, 21838, 'Edufin', 'Customer support ', '2023-04-10', 1.00, '2024-05-01', 16000.00, 'Nungabakkam ', '1', '1 years 0 months', ' Health issue', 1, '2024-09-27 05:28:20', 0, NULL, 0, NULL, 1),
(9161, 21850, 'Iinvsys ', 'Software developer ', '2022-07-14', 300000.00, '2024-02-27', 350000.00, 'Pondicherry ', '1', '1 years 7 months', ' Location problem ', 1, '2024-09-27 05:36:08', 0, NULL, 0, NULL, 1),
(9162, 21855, 'Altruist', 'Customer executive', '2023-04-19', 11500.00, '2024-08-22', 11500.00, 'Mountroad', '1', '1 years 4 months', 'Financial problem ', 1, '2024-09-27 06:26:24', 0, NULL, 0, NULL, 1),
(9163, 21856, 'altruist', 'customer executive', '2023-10-10', 11500.00, '2024-03-29', 11500.00, 'mountrood', '1', '0 years 5 months', ' Salary issue', 1, '2024-09-27 06:35:11', 0, NULL, 0, NULL, 1),
(9164, 21857, 'Kodukku classified private limited ', 'Full stack developer ', '2023-12-18', 300000.00, '1970-01-01', 300000.00, 'Velachery ', '2', '0 years 9 months', ' Need to work with different technologies ', 1, '2024-09-27 06:41:53', 0, NULL, 0, NULL, 1),
(9165, 21860, 'Shanmuga Traders ', 'Typist ', '2023-12-01', 8.00, '2024-09-27', 10.00, 'Kumbakonam ', '1', '0 years 9 months', ' ', 1, '2024-09-27 06:51:47', 0, NULL, 0, NULL, 1),
(9166, 21858, 'Infra Market House ', 'Warehouse Management & Logistics ', '2024-05-06', 25807.00, '2024-07-31', 25807.00, 'Kalkare ', '1', '0 years 2 months', ' Due To Health Issue', 1, '2024-09-27 06:53:02', 0, NULL, 0, NULL, 1),
(9167, 21859, 'TOP4 CALL DRIVERS PVT LTD', 'TL', '2023-11-04', 16000.00, '2023-11-13', 17000.00, 'NUGAMPAKKAM', '1', '0 years 0 months', 'FATHER HEALTH ISSUE', 104, '2024-09-27 12:39:50', 0, NULL, 0, NULL, 1),
(9168, 21862, 'Venture associate ', '10 april 2024', '2023-05-28', 15000.00, '2024-09-27', 15000.00, 'M M industries ', '1', '1 years 3 months', ' If there\'s no sign of career progression, new responsibilities, or new skills to learn, it might be time to leave', 1, '2024-09-27 07:35:38', 0, NULL, 0, NULL, 1),
(9169, 21889, 'Manappuram finance limited ', 'Assistant branch head ', '2023-12-01', 14000.00, '2024-09-22', 20000.00, 'Chetput ', '1', '0 years 9 months', 'Family and financial problems ', 1, '2024-09-28 06:39:31', 0, NULL, 0, NULL, 1),
(9170, 21892, 'Lorven business services', 'Team leader ', '2023-08-14', 18000.00, '2024-08-28', 20000.00, 'Kodambakkam ', '1', '1 years 0 months', 'Salary issue', 1, '2024-09-28 06:57:31', 0, NULL, 0, NULL, 1),
(9171, 21891, 'Vizcaya broking service', 'Telecalling ', '2024-07-01', 12000.00, '2024-09-07', 12000.00, 'Saidapet', '1', '0 years 2 months', 'Saidapet office location change\n', 1, '2024-09-28 07:09:16', 0, NULL, 0, NULL, 1),
(9172, 21893, 'Creditmantri', 'Team leader', '2022-06-28', 23000.00, '2024-08-16', 25000.00, 'Near Spencer plaza, TNB atm back side', '1', '2 years 1 months', ' Now I know the entire process so I want face new challenges in my Life. ', 1, '2024-09-28 07:11:11', 0, NULL, 0, NULL, 1),
(9173, 21923, 'Apollo Spectra Hospital ', 'Tele calling ', '2023-11-13', 20000.00, '2024-06-01', 20000.00, 'Teynampet ', '1', '0 years 6 months', ' Health Issues ', 1, '2024-09-30 05:12:46', 0, NULL, 0, NULL, 1),
(9174, 21921, 'Shriram ', 'Telecalling', '2024-01-15', 15000.00, '2024-07-10', 15000.00, 'Kodambakkam ', '1', '0 years 5 months', ' ', 1, '2024-09-30 05:17:16', 0, NULL, 0, NULL, 1),
(9175, 21925, 'Ather Private limited', 'CRE', '2023-12-07', 5.00, '2024-03-05', 15000.00, 'Ambattur', '1', '0 years 2 months', ' Health issues', 1, '2024-09-30 05:19:16', 0, NULL, 0, NULL, 1),
(9176, 21929, 'Star health insurance ', 'Tele Calling voice ', '2023-04-14', 17000.00, '2024-09-11', 20000.00, 'Saidapet ', '1', '1 years 4 months', ' Work pressure ', 1, '2024-09-30 06:09:31', 0, NULL, 0, NULL, 1),
(9177, 21930, 'Newjaisa Technologies ', 'Sales and customer executive ', '2023-11-06', 18.00, '2024-10-15', 20.00, 'Arkere ', '1', '0 years 11 months', 'I want to learn some more new skills ', 1, '2024-09-30 06:12:16', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9178, 21940, 'Tvs credit service limited', 'Collection ', '2024-09-30', 10000.00, '1970-01-01', 14500.00, 'Guindy', '2', '0 years 0 months', ' ', 1, '2024-09-30 08:08:27', 0, NULL, 0, NULL, 1),
(9179, 21946, 'Kh exports India pvt limited ', 'Seargeant', '2017-12-20', 9000.00, '2024-08-01', 15000.00, 'Ranipet', '1', '6 years 7 months', ' Got married ', 1, '2024-09-30 09:33:47', 0, NULL, 0, NULL, 1),
(9180, 21961, 'hDFC BANK LIMITED', 'Virtual Relationship Manager', '2022-04-04', 17500.00, '2023-01-24', 18000.00, 'Vadapalani Chennai', '1', '0 years 9 months', 'For Studying Master Degree', 104, '2024-10-01 10:42:55', 0, NULL, 0, NULL, 1),
(9181, 21963, 'Karur vysya bank', 'BDE', '2023-07-21', 25000.00, '2024-01-19', 25000.00, 'Salem', '1', '0 years 5 months', ' Personal problem', 1, '2024-10-01 05:15:42', 0, NULL, 0, NULL, 1),
(9182, 21960, 'Justdial ', 'Tele calling ', '2022-12-20', 11000.00, '2024-09-11', 14000.00, 'Little Mount ', '1', '1 years 8 months', ' Salary growth ', 1, '2024-10-01 05:17:19', 0, NULL, 0, NULL, 1),
(9183, 21966, 'Marketsof1 ', 'Tellcalling ', '2022-07-15', 13000.00, '2024-08-31', 18000.00, 'Little mount', '1', '2 years 1 months', ' Personal problems ', 1, '2024-10-01 05:52:22', 0, NULL, 0, NULL, 1),
(9184, 21968, 'Lite store', 'CSA', '2023-05-09', 25000.00, '2024-04-30', 25000.00, 'Konanakunte cross', '1', '0 years 11 months', ' Company store relocated to far location ', 1, '2024-10-01 06:01:23', 0, NULL, 0, NULL, 1),
(9185, 21972, 'Lister metropolis ineia', 'Customer care executive ', '2021-01-29', 18000.00, '2024-09-01', 20000.00, 'Nungambakkam ', '1', '3 years 7 months', ' There is no growth in role and aswell salary', 1, '2024-10-01 06:03:45', 0, NULL, 0, NULL, 1),
(9186, 21970, 'Rapid care Group pvt ltd', 'Software Engineer ', '2024-03-06', 19792.00, '2024-09-10', 19792.00, 'Little mount,saidapet', '1', '0 years 6 months', ' asked to Relocate In Bangalore', 1, '2024-10-01 06:09:58', 1, '2024-10-01 06:13:06', 0, NULL, 1),
(9187, 21973, 'Marketsof 1 analytical marketing services pvt Ltd ', 'Executive ', '2024-03-18', 20000.00, '2024-07-30', 20000.00, 'Little mount ', '1', '0 years 4 months', ' Personal issues ', 1, '2024-10-01 06:33:34', 0, NULL, 0, NULL, 1),
(9188, 21973, 'Sri SRS FIN SERVICES ', 'Customer support executive ', '2022-09-01', 21000.00, '2023-09-01', 21000.00, 'Vizag Andhra Pradesh ', '1', '1 years 0 months', 'For army training ', 1, '2024-10-01 06:36:53', 0, NULL, 0, NULL, 1),
(9189, 21973, 'Hero motocorp pvt Ltd ', 'Lab technician ', '2021-10-07', 25000.00, '2022-08-25', 25000.00, 'Tada ( sri city )', '1', '0 years 10 months', 'Health issues ', 1, '2024-10-01 06:42:29', 0, NULL, 0, NULL, 1),
(9190, 21975, 'HDFC Bank ', 'Sales officer ', '2024-04-05', 20000.00, '2024-10-08', 20000.00, 'Dlf branch ', '1', '0 years 6 months', ' Long distance ', 1, '2024-10-01 06:47:54', 0, NULL, 0, NULL, 1),
(9191, 21977, 'ICICI BANK LTD', 'SO', '2022-12-05', 18000.00, '2024-06-21', 22000.00, 'Chennai ', '1', '1 years 6 months', ' Father health ', 1, '2024-10-01 06:48:39', 0, NULL, 0, NULL, 1),
(9192, 21973, 'Green tech industries pvt Ltd ', 'CNC machine operator ', '2020-09-05', 20000.00, '2024-09-30', 22000.00, 'Naidupeta ', '1', '4 years 0 months', 'I got job from hero motocorp as A lab technician,with good package,that\'s y I relieving that campany ', 1, '2024-10-01 06:49:09', 0, NULL, 0, NULL, 1),
(9193, 21978, 'Oxick technologies ', 'HR recruiter ', '2023-10-09', 9.00, '2024-05-03', 11000.00, 'Nagercoil ', '1', '0 years 6 months', 'Not ok with Shift timing ', 1, '2024-10-01 06:50:35', 0, NULL, 0, NULL, 1),
(9194, 21976, 'I process ', 'Excutive ', '2023-06-06', 12500.00, '2024-07-02', 12500.00, 'Chennai', '1', '1 years 0 months', ' health issues ', 1, '2024-10-01 06:53:02', 0, NULL, 0, NULL, 1),
(9195, 21980, 'Aims enterprises ', 'Sales executive ', '2024-06-10', 16000.00, '2024-10-10', 16000.00, 'Chennai', '1', '0 years 4 months', 'Not comfortable with that company ', 1, '2024-10-01 07:01:04', 0, NULL, 0, NULL, 1),
(9196, 21982, 'cAMS', 'Mutual Fund', '2020-02-13', 11000.00, '2022-11-30', 14000.00, 'Mount Road', '1', '2 years 9 months', 'Thought of doing a buisness', 104, '2024-10-01 12:59:10', 0, NULL, 0, NULL, 1),
(9197, 21986, 'Lss ', 'Accounts manager ', '2020-10-07', 20000.00, '2024-04-04', 25000.00, 'Chennai ', '1', '3 years 11 months', ' Career development ', 1, '2024-10-01 09:15:57', 0, NULL, 0, NULL, 1),
(9198, 21993, 'ternity publishing service', 'inbound outbound calls  ', '2024-02-15', 12000.00, '2024-09-13', 3000.00, 'pondicherry', '1', '0 years 6 months', ' Working more than 15 to 16 hours in the office', 1, '2024-10-03 12:42:09', 0, NULL, 0, NULL, 1),
(9199, 22002, 'ARCIS e service pvt LTD ', 'Team me', '2021-06-12', 17000.00, '2024-06-18', 17000.00, 'Chennai ', '1', '3 years 0 months', ' I want improve my skills and career growth ', 1, '2024-10-03 05:21:12', 0, NULL, 0, NULL, 1),
(9200, 22003, 'Mahesh value products put ltd', 'TSR', '2023-03-01', 15000.00, '2024-03-01', 20000.00, 'Thenambet', '1', '1 years 0 months', ' Retaking a new team', 1, '2024-10-03 05:37:53', 0, NULL, 0, NULL, 1),
(9201, 22003, 'Hanbao private ltd', 'Sales', '2022-02-02', 12000.00, '2022-03-10', 12000.00, 'Aynavaram', '1', '0 years 1 months', 'Salary is not good', 1, '2024-10-03 05:40:57', 0, NULL, 0, NULL, 1),
(9202, 22008, 'Sbi', 'Sales and recovery ', '2023-08-03', 16000.00, '2024-08-25', 16000.00, 'Bangalore ', '1', '1 years 0 months', ' ', 1, '2024-10-03 06:19:20', 0, NULL, 0, NULL, 1),
(9203, 22006, 'Sangeetha mobiles ', 'Sales executive ', '2022-02-10', 15000.00, '2023-04-06', 18000.00, 'Tawarakere', '1', '1 years 1 months', ' ', 1, '2024-10-03 06:21:03', 0, NULL, 0, NULL, 1),
(9204, 20003, 'Edufin', 'Customer service executive ', '2024-02-12', 1.00, '2024-07-31', 20000.00, 'Nungambakkam ', '1', '0 years 5 months', ' ', 1, '2024-10-03 07:03:24', 0, NULL, 0, NULL, 1),
(9205, 22009, 'Transform indian pvt ltd', 'Team leader', '2021-04-01', 5.00, '1970-01-01', 18500.00, 'Ponneri', '2', '3 years 6 months', ' To choose improve the knowledge', 1, '2024-10-03 07:37:26', 0, NULL, 0, NULL, 1),
(9206, 22010, 'Everest fleet pvt ltd ', 'Team Lead ', '2023-04-11', 16000.00, '2024-07-10', 23000.00, 'Chennai ', '1', '1 years 2 months', ' Team Layoff', 1, '2024-10-03 08:50:16', 0, NULL, 0, NULL, 1),
(9207, 22010, 'Just Dial', 'Field sales executive ', '2022-06-07', 20000.00, '2023-02-12', 20000.00, 'Chennai ', '1', '0 years 8 months', 'Health issues ', 1, '2024-10-03 08:53:19', 0, NULL, 0, NULL, 1),
(9208, 22010, 'Vintage Risk management ', 'Telecaller', '2022-01-02', 15000.00, '2022-05-15', 16000.00, 'Chennai ', '1', '0 years 4 months', 'Personal issue', 1, '2024-10-03 08:54:57', 0, NULL, 0, NULL, 1),
(9209, 22010, 'Amazon logistics ', 'Wearhouse excutive ', '2020-06-03', 15000.00, '2021-12-30', 15000.00, 'Chennai ', '1', '1 years 6 months', 'Contract expired ', 1, '2024-10-03 08:57:28', 0, NULL, 0, NULL, 1),
(9210, 22014, 'HCL Technologies Pvt Ltd, Chennai', 'Software Engineer ', '2018-12-28', 350000.00, '2020-09-25', 350000.00, 'Chennai ', '1', '1 years 8 months', ' Health issues', 1, '2024-10-04 05:39:20', 0, NULL, 0, NULL, 1),
(9211, 22017, 'ICICI Bank limited ', 'BRO', '2022-08-30', 30.00, '2023-11-11', 16000.00, 'Mannargudi ', '1', '1 years 2 months', ' For better experience ', 1, '2024-10-04 05:47:48', 0, NULL, 0, NULL, 1),
(9212, 22016, 'Ippopay ', 'Talesales executive ', '2023-07-17', 15000.00, '2024-08-12', 20000.00, 'Guindy ', '1', '1 years 2 months', 'Health and family issues ', 1, '2024-10-04 06:00:43', 104, '2024-10-04 11:41:05', 0, NULL, 1),
(9213, 22022, 'ICICI Bank Pvt Ltd ', 'Phone banking officer ', '2022-04-25', 25042022.00, '2023-10-11', 19000.00, 'Ambattur ', '1', '1 years 5 months', ' ', 1, '2024-10-04 06:47:50', 0, NULL, 0, NULL, 1),
(9214, 22022, 'Novac Technology Private limited ', 'Virtual Relationship officer ', '2023-11-01', 22000.00, '2024-04-13', 22000.00, 'Perungudi', '1', '0 years 5 months', 'Health issue', 1, '2024-10-04 06:49:23', 0, NULL, 0, NULL, 1),
(9215, 22021, 'kiruba karan', 'telecalling', '2021-10-11', 15000.00, '2024-08-05', 15000.00, 'chennai', '1', '2 years 9 months', ' Due to exam prepations', 1, '2024-10-04 07:02:25', 0, NULL, 0, NULL, 1),
(9216, 22023, 'Ruuraa holiday ', 'Tele caller ', '2023-07-02', 15000.00, '2024-08-07', 17000.00, 'Little Mount ', '1', '1 years 1 months', ' Accident ', 1, '2024-10-04 07:08:31', 0, NULL, 0, NULL, 1),
(9217, 22021, 'aaditri info tech solutions', 'telecalling', '2021-10-11', 80000.00, '2024-08-05', 15000.00, 'chennai', '1', '2 years 9 months', 'Due to sister marriage', 1, '2024-10-04 07:08:59', 0, NULL, 0, NULL, 1),
(9218, 22026, 'Altusit technology ', 'Business associate ', '2023-01-24', 12900.00, '2024-03-08', 12900.00, 'Chennai ', '1', '1 years 1 months', 'Growth ', 1, '2024-10-04 08:05:41', 0, NULL, 0, NULL, 1),
(9219, 22031, 'Teleperformance ', 'Senior Customer support ', '2022-10-17', 19000.00, '2024-07-01', 24500.00, 'Chennai', '1', '1 years 8 months', ' Process ramdown ', 1, '2024-10-04 11:10:14', 0, NULL, 0, NULL, 1),
(9220, 22035, 'Glob data Analytics ', 'Software Engineer ', '2023-10-10', 10000.00, '2024-04-10', 10000.00, 'Chennai ', '1', '0 years 6 months', ' Some personal issues ', 1, '2024-10-05 04:25:26', 0, NULL, 0, NULL, 1),
(9221, 22043, 'Nelly software solutions ', 'Software developer ', '2023-07-13', 150000.00, '2024-07-19', 150000.00, 'Chennai', '1', '1 years 0 months', ' During in my working days iam mostly work in support and issue fixing. In that I don\'t gain any new knowledge.', 1, '2024-10-05 04:31:53', 0, NULL, 0, NULL, 1),
(9222, 22044, 'Connected digital system ', 'Junior Software Engineer ', '2023-06-01', 300000.00, '1970-01-01', 300000.00, 'Chennai ', '2', '1 years 4 months', ' Minimum project are in company', 1, '2024-10-05 04:37:35', 0, NULL, 0, NULL, 1),
(9223, 22054, 'Royal Enfield service centre ', 'SME', '2022-07-02', 16000.00, '2024-10-01', 18000.00, 'Bommasandra ', '1', '2 years 2 months', ' ', 1, '2024-10-05 05:11:14', 0, NULL, 0, NULL, 1),
(9224, 22057, 'National family health survey ', 'Field investigator ', '2023-05-19', 6.00, '2024-02-10', 25000.00, 'Chennai ', '1', '0 years 8 months', ' It is a central government project..it\'s a duration level.', 1, '2024-10-05 05:23:37', 0, NULL, 0, NULL, 1),
(9225, 22071, 'itc infotech', 'frontend devoloper', '2022-10-01', 400000.00, '1970-01-01', 400000.00, 'banglore', '2', '2 years 0 months', 'Bench period over', 104, '2024-10-05 02:45:51', 0, NULL, 0, NULL, 1),
(9226, 22085, 'Vacsoftteck ', 'Technical supporter ', '2024-02-09', 144000.00, '1970-01-01', 180000.00, 'T Nagar ', '2', '0 years 7 months', ' I’ve gained valuable experience in technical support, but now I want to shift to development to contribute more directly to building solutions. I\'m eager to apply my technical knowledge in a more creative and hands-on way through coding and software development.\n', 1, '2024-10-05 09:42:35', 0, NULL, 0, NULL, 1),
(9227, 22092, 'Indium software ', 'Associate software engineer ', '2023-01-02', 2500.00, '2023-07-03', 25000.00, 'Chennai', '1', '0 years 6 months', ' Due to recession from the organisation side they forced me to resign ', 1, '2024-10-05 10:07:27', 0, NULL, 0, NULL, 1),
(9228, 22092, 'Squash apps', 'Trainee software engineer ', '2022-03-17', 10000.00, '2022-10-18', 10000.00, 'Coimbatore ', '1', '0 years 7 months', 'Because of small startup there is no project so I switched to indium software ', 1, '2024-10-05 10:09:03', 0, NULL, 0, NULL, 1),
(9229, 22094, 'Spinny ', 'Executive supply closure ', '2022-06-13', 380000.00, '2024-04-10', 406000.00, 'Gurgaon ', '1', '1 years 9 months', ' Family shifted banglore ', 1, '2024-10-07 01:04:14', 0, NULL, 0, NULL, 1),
(9230, 22094, 'Frankfinn Institute Of Air Hostess Traning ', 'Counsellor ', '2020-08-05', 350000.00, '2021-12-31', 25000.00, 'Gurgaon ', '1', '1 years 4 months', 'Get highest package ', 1, '2024-10-07 01:06:23', 1, '2024-10-07 01:09:46', 0, NULL, 0),
(9231, 22094, 'Silaries information pvt ltd ', 'Financial adviser ', '2019-01-01', 340000.00, '2020-07-07', 25000.00, 'New Delhi ', '1', '1 years 6 months', 'Process closed', 1, '2024-10-07 01:08:13', 0, NULL, 0, NULL, 1),
(9232, 22094, 'Frankfinn Institute Of Air Hostess Traning ', 'Counsellor ', '2020-08-05', 25000.00, '2021-11-10', 25000.00, 'Gurgaon ', '1', '1 years 3 months', 'Health issue', 1, '2024-10-07 01:11:55', 0, NULL, 0, NULL, 1),
(9233, 22111, 'K balaji ', 'Tell caller ', '2023-07-17', 17000.00, '2024-12-25', 17000.00, 'Velachery ', '1', '1 years 5 months', ' Process Closed ', 1, '2024-10-07 06:16:39', 0, NULL, 0, NULL, 1),
(9234, 22114, 'Tneb minnagam ', 'Bpo', '2024-04-10', 13000.00, '2024-08-09', 13000.00, 'Mount road ', '1', '0 years 3 months', ' Low salary and night shift work ', 1, '2024-10-07 06:38:35', 0, NULL, 0, NULL, 1),
(9235, 22112, 'Mastermind of company', ' Tele caller', '2023-01-01', 15000.00, '2024-05-03', 15000.00, 'Thousand light ', '1', '1 years 4 months', ' ', 1, '2024-10-07 06:43:32', 0, NULL, 0, NULL, 1),
(9236, 22117, 'Infosec felidae', 'Agent', '2021-02-02', 21000.00, '2024-09-05', 21000.00, 'Kudlugate', '1', '3 years 7 months', ' Incentives issues ', 1, '2024-10-07 06:54:48', 0, NULL, 0, NULL, 1),
(9237, 22118, 'E CALLER SERVICE ', 'CUSTOMER SUPPORT ', '2023-04-03', 10.00, '2024-09-01', 23000.00, 'Bommanahalli ', '1', '1 years 6 months', ' Branch closed ', 1, '2024-10-07 06:58:43', 0, NULL, 0, NULL, 1),
(9238, 22120, 'THILAGAVATHI P', 'Work', '2024-06-01', 15000.00, '1970-01-01', 15000.00, 'Thousand light ', '2', '0 years 4 months', ' ', 1, '2024-10-07 07:47:57', 0, NULL, 0, NULL, 1),
(9239, 22124, 'Tamil matrimony ', 'Senior service executive ', '2022-09-02', 15000.00, '2024-05-31', 15000.00, 'Guindy ', '1', '1 years 8 months', ' ', 1, '2024-10-07 08:26:09', 0, NULL, 0, NULL, 1),
(9240, 22130, 'Access healthcare', 'Client partner ', '2023-02-05', 25000.00, '2024-09-07', 25000.00, 'Chennai ', '1', '1 years 7 months', 'Contract ', 1, '2024-10-07 09:58:59', 0, NULL, 0, NULL, 1),
(9241, 22130, 'Veranda ias academy', 'Academic counsellor', '2023-02-05', 25.00, '2024-09-05', 25.00, 'Chennai ', '1', '1 years 7 months', ' Contrct', 1, '2024-10-07 10:03:56', 0, NULL, 0, NULL, 1),
(9242, 22125, 'Aathiya Infotech ', 'Customer support ', '2024-06-24', 14000.00, '2024-09-27', 14000.00, 'Madipakkam', '1', '0 years 3 months', ' Health issues ', 1, '2024-10-07 10:10:47', 0, NULL, 0, NULL, 1),
(9243, 22131, 'Peachcare clinic', 'Admin cum Hr', '2023-05-06', 10000.00, '2024-05-05', 18000.00, 'Kilpauk', '1', '0 years 11 months', ' Personal problem', 1, '2024-10-07 11:39:21', 0, NULL, 0, NULL, 1),
(9244, 22133, 'Brand 4 Brands', 'Tele sales associate', '2024-05-02', 10.00, '2024-09-29', 15000.00, 'Chennai', '1', '0 years 4 months', 'Startup company.. So there is an salary issue', 1, '2024-10-08 04:13:02', 0, NULL, 0, NULL, 1),
(9245, 22133, 'Manjrak marketing LLP', 'Sales officee', '2023-07-02', 15000.00, '2024-04-10', 15000.00, 'Chennai', '1', '0 years 9 months', 'Health issue', 1, '2024-10-08 04:16:26', 0, NULL, 0, NULL, 1),
(9246, 22135, 'Edufic Digital ', 'Business research analyst ', '2022-11-22', 180000.00, '2024-03-29', 240000.00, 'Perungudi Chennai ', '1', '1 years 4 months', ' Got another offer letter. ', 1, '2024-10-08 04:49:45', 0, NULL, 0, NULL, 1),
(9247, 22136, 'Medfox Healthcare pvt ltd.', 'Data Analyst ', '2023-08-16', 16000.00, '2024-08-10', 18000.00, 'Anna nagar', '1', '0 years 11 months', ' Joined as a intern for analysing Insurance datas and appointed as a junior Data analyst. Like to work in a big organization like yours and need a exposure and like to work with different talented people in your organization.', 1, '2024-10-08 04:59:54', 0, NULL, 0, NULL, 1),
(9248, 22137, 'propel finways insurance', 'tellcalling ', '2024-05-29', 14000.00, '2024-10-07', 16000.00, 'ekkattuthangal', '1', '0 years 4 months', ' Salary is low', 1, '2024-10-08 05:10:59', 0, NULL, 0, NULL, 1),
(9249, 22138, 'realtech vision pvt ltd', 'sales Excutive ', '2022-01-05', 15000.00, '2024-09-07', 20000.00, 'chennai', '1', '2 years 8 months', 'Some personal issue And health issue', 1, '2024-10-08 05:20:35', 0, NULL, 0, NULL, 1),
(9250, 22139, 'Tech mahindra', 'Customer support  associate ', '2021-11-09', 22000.00, '2023-09-08', 30000.00, 'Egmore', '1', '1 years 9 months', 'Care of baby ', 1, '2024-10-08 06:34:18', 0, NULL, 0, NULL, 1),
(9251, 22151, 'Vijay and associates ', 'Audit staff', '2023-07-05', 13000.00, '2024-07-24', 16000.00, 'Chennai', '1', '1 years 0 months', 'Because of marriage ', 1, '2024-10-08 07:13:42', 0, NULL, 0, NULL, 1),
(9252, 22159, 'Bank zone ', 'BDE and team leader ', '2023-03-13', 25000.00, '2024-06-24', 25000.00, 'Jp nagar ', '1', '1 years 3 months', 'Salary issue ', 1, '2024-10-08 09:30:28', 1, '2024-10-08 09:34:29', 0, NULL, 1),
(9253, 22158, 'Bank Zone ', 'Sales ', '2023-08-01', 25000.00, '2024-06-24', 30000.00, 'Jp nagar ', '1', '0 years 10 months', ' ', 1, '2024-10-08 09:31:08', 1, '2024-10-08 09:34:44', 0, NULL, 1),
(9254, 22159, 'Netambit solutions Pvt Ltd ', 'BDE ', '2024-07-01', 30000.00, '2024-10-07', 30000.00, 'Silk board ', '1', '0 years 3 months', 'Working hours ', 1, '2024-10-08 09:36:30', 0, NULL, 0, NULL, 1),
(9255, 22158, 'Netamibit solutions pvt ltd', 'BDE', '2024-07-01', 30000.00, '2024-10-07', 30000.00, 'Silk board ', '1', '0 years 3 months', 'Working hours ', 1, '2024-10-08 09:39:17', 0, NULL, 0, NULL, 1),
(9256, 22160, 'Para technology private limited ', 'Sales executive ', '2023-11-12', 19000.00, '2024-06-08', 19000.00, 'Indiranagar ', '1', '0 years 6 months', ' Salary issue ', 1, '2024-10-08 10:30:11', 0, NULL, 0, NULL, 1),
(9257, 22160, 'Net Ambit solutions private limited ', 'BDE', '2024-01-07', 23000.00, '2024-10-07', 23000.00, 'Silkboard ', '1', '0 years 9 months', ' Working hours ', 1, '2024-10-08 10:33:48', 0, NULL, 0, NULL, 1),
(9258, 22173, 'First\' advantage ', 'Operational analyst ', '2022-03-07', 20000.00, '2023-03-23', 22000.00, 'Whitefield ', '1', '1 years 0 months', ' ', 1, '2024-10-09 06:32:21', 0, NULL, 0, NULL, 1),
(9259, 22173, 'Policy bazaar ', 'Associate sales consultant ', '2024-06-27', 26500.00, '2024-08-14', 26500.00, 'Domlur ', '1', '0 years 1 months', 'Travelled to chennai ,for brothers operation,his spine got injured ', 1, '2024-10-09 06:34:09', 0, NULL, 0, NULL, 1),
(9260, 22176, 'Eximio ', 'Semi voice process ', '2021-07-02', 9000.00, '2021-12-31', 9000.00, 'Ambattur ', '1', '0 years 5 months', ' Us process night shift some health issues ', 1, '2024-10-09 07:27:12', 0, NULL, 0, NULL, 1),
(9261, 22176, 'Cafs ', 'Appointment fixing ', '2022-02-02', 15000.00, '2023-12-31', 15000.00, 'T nagar ', '1', '1 years 10 months', 'Family problem ', 1, '2024-10-09 07:30:06', 0, NULL, 0, NULL, 1),
(9262, 22176, 'BANKLOANZ ', 'Process associate ', '2024-03-01', 18000.00, '2024-10-07', 18000.00, 'Amajikarai ', '1', '0 years 7 months', 'Career growth ', 1, '2024-10-09 07:33:36', 0, NULL, 0, NULL, 1),
(9263, 22180, 'Lakson technology pvt ltd ', 'Process associate ', '2023-06-16', 13000.00, '1970-01-01', 1.00, 'Nandhanam ', '2', '1 years 3 months', ' Career development ', 1, '2024-10-09 07:47:18', 0, NULL, 0, NULL, 1),
(9264, 22184, 'CAMS', 'Senior Executive', '2023-01-23', 19000.00, '2024-09-06', 23000.00, 'Chennai', '1', '1 years 7 months', ' Due to career growth and financial hike.', 1, '2024-10-09 09:15:41', 0, NULL, 0, NULL, 1),
(9265, 22192, 'Asian paints ', 'ECA ', '2023-05-19', 18500.00, '2024-01-20', 23000.00, 'Vellore ', '1', '0 years 8 months', ' That role not available ', 1, '2024-10-10 05:05:40', 0, NULL, 0, NULL, 1),
(9266, 22195, 'Tcs', 'Trainee', '2019-01-11', 15000.00, '2020-01-10', 15000.00, 'Chennai', '1', '0 years 11 months', ' Married', 1, '2024-10-10 05:23:36', 0, NULL, 0, NULL, 1),
(9267, 22202, 'Abshrms private limited ', 'Team lead front-end developer ', '2023-01-04', 10000.00, '1970-01-01', 28400.00, 'Chennai ', '2', '1 years 9 months', ' Looking for new environment ', 1, '2024-10-10 05:54:10', 0, NULL, 0, NULL, 1),
(9268, 22198, 'Jai sai ram', 'tamil voice call', '2023-11-15', 16000.00, '2024-06-13', 17000.00, 'Nerkunram', '1', '0 years 6 months', ' location change the office so I realeave', 1, '2024-10-10 05:56:31', 0, NULL, 0, NULL, 1),
(9269, 22207, 'Finscope Touch Private limited ', 'Backend Verification ', '2024-01-17', 18000.00, '2024-07-10', 18000.00, 'JP nagar', '1', '0 years 5 months', ' ShutDown the Process', 1, '2024-10-10 06:23:18', 0, NULL, 0, NULL, 1),
(9270, 22212, 'School education department ', 'Call center excutive ', '2023-12-01', 15000.00, '2024-08-10', 15000.00, 'Chennai ', '1', '0 years 8 months', ' Personal issues ', 1, '2024-10-10 07:02:21', 0, NULL, 0, NULL, 1),
(9271, 22214, 'Ebix cash global services pvt Ltd', 'Customer service advisor', '2022-09-14', 15000.00, '2023-07-11', 15000.00, 'Nandanam', '1', '0 years 9 months', ' Process shifted to bangalore', 1, '2024-10-10 07:09:35', 0, NULL, 0, NULL, 1),
(9272, 22223, 'Monexo fintech pvt ltd ', 'Customer Support Exercutive ', '2022-07-01', 13000.00, '2024-08-30', 14900.00, 'Nungambaakkam ', '1', '2 years 3 months', ' Company shifing to there native place ', 1, '2024-10-12 04:50:42', 104, '2024-10-12 10:44:17', 0, NULL, 1),
(9273, 22226, 'Ayswarya priya.P', 'Telecalling', '2023-11-03', 9000.00, '2024-09-30', 9000.00, 'Thanjavur', '1', '0 years 10 months', 'Distance timing problem', 1, '2024-10-12 06:07:44', 0, NULL, 0, NULL, 1),
(9274, 22228, 'HDFC BANK LTD', 'Sales executive ', '0202-07-25', 5000.00, '2023-09-30', 15000.00, 'Thanjavur ', '1', '1821 years 2 months', ' Due to marriage ', 1, '2024-10-12 06:57:45', 0, NULL, 0, NULL, 1),
(9275, 22244, 'Rainbow kids ', 'Admin', '2013-01-01', 7500.00, '2015-06-01', 8000.00, 'Kotturpuram', '1', '2 years 5 months', ' Better opportunity', 1, '2024-10-14 05:52:27', 0, NULL, 0, NULL, 1),
(9276, 22244, 'Barclays', 'Process Advisor', '2015-09-01', 13500.00, '2017-03-01', 19800.00, 'Dlf chennai', '1', '1 years 6 months', ' Marriage', 1, '2024-10-14 05:58:30', 0, NULL, 0, NULL, 1),
(9277, 22244, 'Tech mahindra', ' Customer support Associate', '2022-05-01', 22000.00, '2023-03-01', 22000.00, 'LIC', '1', '0 years 10 months', 'Better opportunity', 1, '2024-10-14 06:00:44', 0, NULL, 0, NULL, 1),
(9278, 22256, 'Sindhu. B', 'Bsc', '2024-10-14', 15000.00, '1970-01-01', 15000.00, 'Thanjavur', '2', '0 years 0 months', ' ', 1, '2024-10-14 06:13:43', 0, NULL, 0, NULL, 1),
(9279, 22254, 'Prime enterprises', 'Full Stack web and app developer - freelancer', '2023-08-01', 240000.00, '1970-01-01', 240000.00, 'Remote', '2', '1 years 2 months', 'Want to explore new opportunities ', 1, '2024-10-14 06:26:32', 0, NULL, 0, NULL, 1),
(9280, 22271, 'TamilMatrimony.com', 'Service executive on telesales', '2022-03-08', 15000.00, '2024-02-28', 18000.00, 'Guindy ', '1', '1 years 11 months', ' Family problem', 1, '2024-10-14 07:41:04', 0, NULL, 0, NULL, 1),
(9281, 22269, 'JK ENTERPRISES ', 'Tele sales executive ', '2020-06-10', 10000.00, '2024-10-14', 19500.00, 'Tirunelveli ', '1', '4 years 4 months', ' Health issues ', 1, '2024-10-14 07:55:57', 0, NULL, 0, NULL, 1),
(9282, 22269, 'JK ENTERPRISES ', 'Tele sales executive ', '2020-06-10', 10000.00, '2024-10-14', 19500.00, 'Tirunelveli ', '1', '4 years 4 months', 'Health issues ', 1, '2024-10-14 07:57:25', 0, NULL, 0, NULL, 1),
(9283, 22269, 'JK enterprises ', 'Tale sales executive ', '2020-06-10', 10000.00, '2024-09-30', 19500.00, 'Tirunelveli ', '1', '4 years 3 months', 'Health issues ', 1, '2024-10-14 07:59:17', 0, NULL, 0, NULL, 1),
(9284, 22272, 'Access health care ', 'Billings ', '2021-12-21', 26750.00, '2023-10-23', 27850.00, 'Ambattur ', '1', '1 years 10 months', ' ', 1, '2024-10-14 08:04:58', 0, NULL, 0, NULL, 1),
(9285, 22274, 'Connect business solution', 'Telecaller', '2019-06-12', 20.00, '2024-09-28', 25.00, 'Guindy', '1', '5 years 3 months', ' ', 1, '2024-10-14 09:19:22', 0, NULL, 0, NULL, 1),
(9286, 22279, 'V prime innovation ', 'Sales Officer ', '2021-04-09', 11000.00, '2022-01-15', 20000.00, 'Chennai ', '1', '0 years 9 months', 'Corona Log down', 1, '2024-10-14 01:46:09', 0, NULL, 0, NULL, 1),
(9287, 22279, 'L&T Finance Pvt Ltd ', 'Front line officer ', '2022-03-08', 20000.00, '2023-09-13', 20000.00, 'Sankaranpanthal ', '1', '1 years 6 months', 'I have some Health issues ', 1, '2024-10-14 01:56:17', 0, NULL, 0, NULL, 1),
(9288, 22294, 'Sree udhaya krishna matrimony ', 'Telle caller ', '2023-06-08', 20000.00, '2024-09-30', 24000.00, 'Chennai, porur', '1', '1 years 3 months', ' For get better job', 1, '2024-10-16 10:18:31', 0, NULL, 0, NULL, 1),
(9289, 22299, 'Rajalakshmi Eduverse pvt ltd ', 'Sales', '2024-05-22', 26000.00, '2024-10-05', 26000.00, 'Mylapore', '1', '0 years 4 months', 'Delaying of  Salary ', 1, '2024-10-17 06:20:39', 0, NULL, 0, NULL, 1),
(9290, 22299, 'Ecom Express', 'Back end coordinator ', '2019-05-01', 15000.00, '2021-12-25', 18000.00, 'Anna nagar', '1', '2 years 7 months', 'No Salary hike', 1, '2024-10-17 06:24:06', 0, NULL, 0, NULL, 1),
(9291, 22299, 'Helinto pvt Ltd ', 'Sales manager ', '2022-02-02', 20000.00, '2024-03-20', 22000.00, 'Nungambakkam ', '1', '0 years 1 months', 'Business loss ', 1, '2024-10-17 06:28:29', 0, NULL, 0, NULL, 1),
(9292, 22301, 'Foxconn hon hai technology ', 'Data administration ', '2023-09-02', 21000.00, '2024-06-29', 21000.00, 'Kaanjipuram ', '1', '0 years 9 months', ' I had health issues that\'s why I am resigned ', 1, '2024-10-17 06:34:48', 0, NULL, 0, NULL, 1),
(9293, 22309, 'Esthell ', 'Front office', '2024-06-06', 20000.00, '2024-10-01', 18000.00, 'Adyar ', '1', '0 years 3 months', ' I\'m not satisfaction for work ', 1, '2024-10-17 09:13:18', 0, NULL, 0, NULL, 1),
(9294, 22310, 'Hexaware technology pvt ltd', 'Executive', '2022-05-31', 14000.00, '2024-03-16', 20000.00, 'Chenni One', '1', '1 years 9 months', ' ', 1, '2024-10-17 09:15:01', 0, NULL, 0, NULL, 1),
(9295, 22306, 'Visteon Electronics India private limited ', 'Assembly Team leader ', '2023-06-17', 16000.00, '2024-05-27', 16000.00, 'Chennai ', '1', '0 years 11 months', ' Some family situation ', 1, '2024-10-17 09:22:20', 0, NULL, 0, NULL, 1),
(9296, 22311, 'HDB financial services limited', 'Operations processor', '2022-10-26', 11500.00, '2024-03-14', 14000.00, 'Grams road', '1', '1 years 4 months', ' Self growth', 1, '2024-10-17 10:08:41', 0, NULL, 0, NULL, 1),
(9297, 22318, 'ey', 'tax senior', '2016-02-29', 300000.00, '2021-12-21', 1040000.00, 'bangalore', '1', '5 years 9 months', ' Personal', 1, '2024-10-17 11:38:35', 0, NULL, 0, NULL, 1),
(9298, 22318, 'deloitte', 'tax senior', '2022-05-23', 1140000.00, '2023-07-17', 1140000.00, 'bangalore', '1', '1 years 1 months', 'Personal', 1, '2024-10-17 11:39:49', 0, NULL, 0, NULL, 1),
(9299, 22320, 'reliable data service ltd', 'business development excutive', '2023-05-08', 16.50, '2024-11-01', 18000.00, 'chennai spencer plaza', '2', '1 years 5 months', ' I’m work from Contract so thats why im relieving ', 1, '2024-10-17 11:52:01', 1, '2024-10-17 11:54:57', 0, NULL, 1),
(9300, 22320, 'finfortune financial service ltd', 'customer relationship officer', '2022-04-20', 14.80, '2023-05-03', 15000.00, 'chennai vadapalani', '1', '1 years 0 months', 'Like Dsa and salary not hike ', 1, '2024-10-17 11:54:32', 0, NULL, 0, NULL, 1),
(9301, 22322, 'CAMEO CORPORATE SERVICE ', 'Tele caller', '2023-03-01', 10000.00, '2023-09-06', 10000.00, 'Chennai', '1', '0 years 6 months', '10  Working hours \nAnd  low salary ', 1, '2024-10-17 11:57:30', 1, '2024-10-17 12:01:02', 0, NULL, 1),
(9302, 22319, 'Reliable data service ltd', 'Business development ', '2024-03-07', 18000.00, '1970-01-01', 18000.00, 'Chennai ', '2', '0 years 7 months', ' I\'m working for contract so that why I\'m reliving ', 1, '2024-10-17 11:59:29', 0, NULL, 0, NULL, 1),
(9303, 22322, 'Reliable Data Service (Equitas small Finance Bank ', 'Business support Executive ', '2023-09-07', 17800.00, '1970-01-01', 20100.00, 'Chennai', '2', '1 years 1 months', 'Low salary \nHeavy work', 1, '2024-10-17 12:00:25', 0, NULL, 0, NULL, 1),
(9304, 22325, 'Justdial ', 'Telecalling ', '2022-10-20', 18000.00, '2024-10-09', 23000.00, 'Little Mount ', '1', '1 years 11 months', 'Career  growth\nImprovise for my knowledge', 1, '2024-10-17 02:17:47', 0, NULL, 0, NULL, 1),
(9305, 22328, 'Bank Bazaar ', ' senior Customer relationship officer ', '2022-09-14', 20.00, '2024-10-09', 29.00, 'Chennai ', '1', '2 years 0 months', ' No carrier Growth in the company ', 1, '2024-10-17 03:08:15', 0, NULL, 0, NULL, 1),
(9306, 22331, 'Citi bank', 'Assistant manager ', '2021-12-22', 28500.00, '2023-07-31', 28500.00, 'Perungudi ', '1', '1 years 7 months', 'Pregnancy and relieved during maternity leave period.', 1, '2024-10-17 06:49:30', 0, NULL, 0, NULL, 1),
(9307, 22333, 'paisa bazzer ', ' voice process', '2024-08-14', 18000.00, '2024-10-05', 18000.00, 'tidelpark', '1', '0 years 1 months', ' Travelling ', 1, '2024-10-18 04:56:20', 0, NULL, 0, NULL, 1),
(9308, 22329, 'Bank bazaar', 'Senior cro', '2022-03-07', 15000.00, '1970-01-01', 21000.00, 'Ambattur', '2', '2 years 7 months', '  In order to enhance the my skills set.i am looking for better opportunity.', 1, '2024-10-18 05:37:52', 0, NULL, 0, NULL, 1),
(9309, 22342, 'Altruist technology ', 'Business associates ', '2024-06-25', 15000.00, '2024-09-09', 15000.00, 'Mount road', '1', '0 years 2 months', 'In that company I face lots of weekoff issues ', 1, '2024-10-18 06:11:11', 0, NULL, 0, NULL, 1),
(9310, 22341, 'altruist technology', 'business Associates ', '2024-06-25', 15000.00, '2024-09-10', 15000.00, 'Chennai', '1', '0 years 2 months', ' Due to health issue i resigned', 1, '2024-10-18 06:17:01', 0, NULL, 0, NULL, 1),
(9311, 22349, 'Hcl tech', 'Associate ', '2023-03-20', 20000.00, '2023-07-10', 20000.00, 'Chennai', '1', '0 years 3 months', ' Night shift ', 1, '2024-10-18 06:47:32', 0, NULL, 0, NULL, 1),
(9312, 22351, 'PRODATA MANAGEMENT SERVICES Pvt Ltd ', 'Process Executive ', '2018-01-10', 12000.00, '2023-03-28', 16000.00, 'Chennai ', '1', '5 years 2 months', 'I got conceived so i take a break ', 1, '2024-10-18 08:00:39', 0, NULL, 0, NULL, 1),
(9313, 22354, 'Ks.Academy', 'Telemarketing ', '2023-05-15', 16000.00, '2024-08-31', 18000.00, 'West mambalam', '1', '1 years 3 months', ' ', 1, '2024-10-18 09:47:21', 0, NULL, 0, NULL, 1),
(9314, 22357, 'accenture', 'implementation associate', '2023-04-24', 15000.00, '2024-05-31', 15000.00, 'sholinganallur', '1', '1 years 1 months', 'Health issu ', 1, '2024-10-18 11:02:02', 0, NULL, 0, NULL, 1),
(9315, 22357, 'accenture', 'implementation associate ', '2023-04-24', 15000.00, '2024-05-31', 15000.00, 'sholinganallur', '1', '1 years 1 months', 'Health issues', 1, '2024-10-18 11:03:52', 0, NULL, 0, NULL, 1),
(9316, 22355, 'Vanavil real estate ', 'Telesales', '2024-04-08', 15000.00, '2024-09-20', 15000.00, 'Chennai tambaram ', '1', '0 years 5 months', ' Health issues ', 1, '2024-10-18 11:08:12', 0, NULL, 0, NULL, 1),
(9317, 22368, 'Imarque solution private limited ', 'Customer service executive ', '2023-06-12', 13000.00, '2024-03-06', 16000.00, 'Teynampte ', '1', '0 years 8 months', ' Some family issues and relocate to Tambaram ', 1, '2024-10-19 05:41:33', 0, NULL, 0, NULL, 1),
(9318, 22369, 'IMarque solution ', 'Customer executive ', '2023-12-01', 16000.00, '2024-10-05', 16000.00, 'Teynampet ', '1', '0 years 10 months', ' ', 1, '2024-10-19 05:48:05', 0, NULL, 0, NULL, 1),
(9319, 22376, 'DWM HDFC Life insurance', 'Tele Sales officer', '2019-08-14', 8000.00, '2023-02-17', 18000.00, 'Chennai', '1', '3 years 6 months', ' Covid issue. ', 1, '2024-10-19 08:12:56', 0, NULL, 0, NULL, 1),
(9320, 22387, 'Centizen Inc,', 'Node js developer ', '2023-02-01', 12000.00, '2023-08-01', 12000.00, 'Tirunelveli', '1', '0 years 6 months', '  Low salary ', 1, '2024-10-21 04:59:44', 0, NULL, 0, NULL, 1),
(9321, 22396, 'Ithots technology solutions pvt ltd ', 'UI Developer ', '2024-02-02', 20000.00, '2024-10-02', 20000.00, 'Anna nagar east ', '1', '0 years 8 months', ' My previous company is Startup, currently no projects, our management team is informed me', 1, '2024-10-21 05:29:00', 0, NULL, 0, NULL, 1),
(9322, 22397, 'Tele performance ', 'Assistant officer ', '2022-03-09', 15000.00, '2022-07-13', 15000.00, 'Ambattur estate ', '1', '0 years 4 months', ' Higher education ', 1, '2024-10-21 05:32:36', 0, NULL, 0, NULL, 1),
(9323, 22397, 'Reliance digital ', 'Customer relationship executive ', '2023-06-07', 170000.00, '2024-01-12', 17000.00, 'Avadi', '1', '0 years 7 months', 'Career growth ', 1, '2024-10-21 05:34:07', 0, NULL, 0, NULL, 1),
(9324, 22397, 'Dbs bank ', 'Assistant officer ', '2023-09-22', 25000.00, '2024-10-10', 25000.00, 'Avadi ', '1', '1 years 0 months', 'Career growth ', 1, '2024-10-21 05:36:01', 0, NULL, 0, NULL, 1),
(9325, 22398, 'Kyndryl ', 'Unified System Operation ', '2023-09-21', 500000.00, '1970-01-01', 500000.00, 'Chennai ', '2', '1 years 1 months', 'Want to move to technical role and advance my career.', 1, '2024-10-21 05:36:50', 0, NULL, 0, NULL, 1),
(9326, 22400, 'Perot systems', 'Telecaller', '2016-09-13', 10000.00, '2019-06-20', 15000.00, 'Ambattur', '1', '2 years 9 months', ' It\'s a contract', 1, '2024-10-21 05:49:06', 0, NULL, 0, NULL, 1),
(9327, 22400, 'Miot hospitals', 'Accounts', '2019-07-15', 12000.00, '2025-08-25', 15000.00, 'Ramapuram', '1', '6 years 1 months', 'Contract', 1, '2024-10-21 05:51:32', 0, NULL, 0, NULL, 1),
(9328, 22407, 'Seyasoft Technology Pvt Ltd ', 'Junior Web Developer ', '2022-07-25', 15000.00, '2023-05-31', 15000.00, 'Chennai', '1', '0 years 10 months', ' For career development ', 1, '2024-10-21 06:12:55', 0, NULL, 0, NULL, 1),
(9329, 22415, 'ascentya research and development solutions', 'software developer', '2023-02-03', 16000.00, '2024-07-31', 28950.00, 'chennai', '1', '1 years 5 months', ' Extended work time and all days of work for a day (16 hrs)', 1, '2024-10-21 07:26:16', 0, NULL, 0, NULL, 1),
(9330, 22416, 'Capgemini technology india services private limted', 'Process Associate ', '2017-02-25', 16000.00, '2024-08-12', 20000.00, 'Trichy', '1', '7 years 5 months', ' Personal  issue ', 1, '2024-10-21 07:48:37', 0, NULL, 0, NULL, 1),
(9331, 22424, 'Stucred', 'Customer care executive ', '2024-03-25', 25000.00, '2024-09-30', 25000.00, 'Thiruvanmiyur', '1', '0 years 6 months', ' Salary delayed issue', 1, '2024-10-21 10:41:35', 0, NULL, 0, NULL, 1),
(9332, 22426, 'HDFC ', 'Sales executive ', '2024-04-26', 15000.00, '1970-01-01', 15000.00, 'Puthur ', '2', '0 years 5 months', ' Salary not comfortable to me', 1, '2024-10-21 11:30:35', 0, NULL, 0, NULL, 1),
(9333, 22434, 'Jasmin Infotech ', 'Software developer ', '2022-08-03', 200000.00, '2024-10-22', 300000.00, 'Chennai ', '2', '2 years 2 months', ' I need to get more opportunities in development.', 1, '2024-10-22 05:27:12', 0, NULL, 0, NULL, 1),
(9334, 22444, 'Think and learn pvt Ltd ', 'Business development associate ', '2023-03-01', 15000.00, '2023-10-01', 45000.00, 'Avadi ', '1', '0 years 7 months', ' ', 1, '2024-10-22 06:02:56', 0, NULL, 0, NULL, 1),
(9335, 22445, 'Thinksyn solution pvt ltd', 'Customer support executive ', '2022-02-25', 14000.00, '2024-05-23', 16500.00, 'Ekkattuthangal', '1', '2 years 2 months', ' Salary issue', 1, '2024-10-22 06:03:45', 0, NULL, 0, NULL, 1),
(9336, 22446, 'Axis bank pvt ltd', 'Relationship executive', '2024-03-14', 12000.00, '2024-09-23', 12000.00, 'Power house', '1', '0 years 6 months', ' Salary issue', 1, '2024-10-22 06:24:35', 0, NULL, 0, NULL, 1),
(9337, 22401, 'Delight banking solutions ', 'Senior executive ', '2020-07-15', 10000.00, '2022-05-18', 12000.00, 'Chennai ', '1', '1 years 10 months', ' For my career growth ', 1, '2024-10-22 07:05:31', 0, NULL, 0, NULL, 1),
(9338, 22401, 'Sbi card payment and service ', 'Branch relationship executive ', '2022-06-22', 14000.00, '2023-08-15', 14000.00, 'Chennai ', '1', '1 years 1 months', ' For salary ', 1, '2024-10-22 07:13:17', 0, NULL, 0, NULL, 1),
(9339, 22401, 'Union Bank credit card ', 'Branch relationship executive ', '2023-09-14', 14000.00, '2024-02-19', 14000.00, 'Chennai ', '1', '0 years 5 months', 'For salary ', 1, '2024-10-22 07:16:13', 0, NULL, 0, NULL, 1),
(9340, 22451, 'Bankbazaar', 'Senior customer relationship officer', '2022-09-01', 15000.00, '2024-09-01', 25000.00, 'Chennai', '1', '2 years 0 months', ' For career growth and To Receive higher Compensation ', 1, '2024-10-22 07:41:10', 0, NULL, 0, NULL, 1),
(9341, 22447, 'ICICI bank', 'Relationship Manager ', '2023-03-09', 19000.00, '2024-03-11', 19000.00, 'Chennai', '1', '1 years 0 months', ' Personal reasons and health', 1, '2024-10-22 07:57:13', 0, NULL, 0, NULL, 1),
(9342, 22453, 'Wovv Technology', 'Technical support Executive', '2023-08-08', 15000.00, '2024-02-16', 17000.00, 'Vadapalani', '1', '1 years 2 months', 'Health issues', 1, '2024-10-22 08:23:31', 0, NULL, 0, NULL, 1),
(9343, 22461, 'Radicles consultancy ', 'Business development organisation ', '2023-01-23', 12000.00, '2024-09-13', 18000.00, 'Nagercoil ', '1', '1 years 7 months', 'Salary issuse', 1, '2024-10-22 09:15:43', 0, NULL, 0, NULL, 1),
(9344, 22461, 'Eos ', 'Costumer service executive ', '2020-10-10', 10000.00, '2021-04-30', 13000.00, 'Chennai ', '1', '0 years 6 months', 'Change another domain', 1, '2024-10-22 09:18:05', 0, NULL, 0, NULL, 1),
(9345, 22454, 'Retail sales 6 month and bpo service 4 month ', 'Loan process ', '2024-07-01', 12000.00, '2024-08-15', 6000.00, 'Anna nagar West ', '1', '0 years 1 months', ' ', 1, '2024-10-22 09:28:21', 0, NULL, 0, NULL, 1),
(9346, 22466, 'Royal Cyber', 'Trainee software engineer ', '2022-02-24', 20000.00, '2024-03-29', 25000.00, 'Chennai', '1', '2 years 1 months', ' ', 1, '2024-10-22 10:19:36', 0, NULL, 0, NULL, 1),
(9347, 22480, 'Teamspace private limited ', 'Customer Support executive ', '2023-02-11', 17000.00, '1970-01-01', 21000.00, 'Ambattur ', '2', '1 years 8 months', ' Career growth', 1, '2024-10-23 05:21:05', 0, NULL, 0, NULL, 1),
(9348, 22490, 'Mahendra Nextwealth IT India private Limited', 'Process Executive ', '2021-12-23', 13000.00, '2023-05-31', 18000.00, 'Salem', '1', '1 years 5 months', ' ', 1, '2024-10-23 06:04:46', 0, NULL, 0, NULL, 1),
(9349, 22489, 'Mahendra next welth it India private limited ', 'Trainee executive ', '2021-11-11', 15000.00, '2023-08-18', 17500.00, 'Salem ', '1', '1 years 9 months', ' Higher studys', 1, '2024-10-23 06:05:14', 0, NULL, 0, NULL, 1),
(9350, 22491, 'Ayush healthcare ', 'Tele caller ', '2024-06-01', 15000.00, '2024-10-18', 15000.00, 'Thambaram ', '1', '0 years 4 months', ' Searching for higher salary ', 1, '2024-10-23 06:07:01', 0, NULL, 0, NULL, 1),
(9351, 22503, 'Star health insurance ', 'Officer ', '2023-04-01', 20000.00, '2024-03-01', 20000.00, 'VadaPalani ', '1', '0 years 11 months', ' ', 1, '2024-10-23 09:58:24', 0, NULL, 0, NULL, 1),
(9352, 22504, 'CasaGrande ', 'Tellecaller ', '2024-02-02', 18000.00, '2024-10-13', 20000.00, 'Arumbakkam', '1', '0 years 8 months', ' Salary Delay ', 1, '2024-10-23 10:14:36', 0, NULL, 0, NULL, 1),
(9353, 22507, 'Profins insurance broking pvt', 'Greenroad', '2024-10-23', 13000.00, '1970-01-01', 15000.00, 'Thousan light ', '2', '0 years 0 months', ' ', 1, '2024-10-23 10:35:37', 0, NULL, 0, NULL, 1),
(9354, 22506, 'Om innovation ', 'Shoppers stop ', '2023-09-24', 14000.00, '1970-01-01', 15000.00, 'Sethupet ', '2', '1 years 0 months', ' ', 1, '2024-10-23 10:36:39', 0, NULL, 0, NULL, 1),
(9355, 22509, 'om innovation', 'shoppers shop', '2024-10-17', 13000.00, '1970-01-01', 15000.00, 'chetpet', '2', '0 years 0 months', ' ', 1, '2024-10-23 11:02:50', 0, NULL, 0, NULL, 1),
(9356, 22510, 'Gati', 'Customer care executive ', '2023-02-26', 15000.00, '2024-10-23', 15000.00, 'Madhavaram ', '2', '1 years 7 months', ' Salary is not convenient ', 1, '2024-10-23 02:04:58', 0, NULL, 0, NULL, 1),
(9357, 22471, 'Shriram finance limited ', 'Relationship Executive ', '2024-02-12', 318000.00, '2024-06-03', 318000.00, 'Maduravoyal ', '1', '0 years 3 months', ' ', 1, '2024-10-24 03:46:50', 0, NULL, 0, NULL, 1),
(9358, 22530, 'M4marry.com', 'Telecaller', '2022-06-01', 12000.00, '2024-10-01', 15000.00, 'Chennai ', '1', '2 years 4 months', ' For my growth ', 1, '2024-10-24 07:30:19', 0, NULL, 0, NULL, 1),
(9359, 22533, 'M4marry.com', 'Telecaller ', '2022-08-01', 12000.00, '2024-10-01', 16000.00, 'Chennai ', '1', '2 years 2 months', ' Salary issue', 1, '2024-10-24 07:47:40', 0, NULL, 0, NULL, 1),
(9360, 22534, 'daily thanthi', 'admin section', '2016-01-18', 10000.00, '2020-12-31', 26456.00, 'erode', '2', '4 years 11 months', 'Covid', 1, '2024-10-24 08:20:31', 1, '2024-10-24 08:22:11', 0, NULL, 0),
(9361, 22534, 'daily thanthi', 'admin section', '2016-01-18', 10000.00, '1970-01-01', 26231.00, 'erode', '2', '8 years 9 months', 'Need to chennai Location ', 1, '2024-10-24 08:24:32', 0, NULL, 0, NULL, 1),
(9362, 22539, 'HDB FINANCIAL SERVICE ', 'Sales executive ', '2023-07-07', 15000.00, '2024-04-30', 15000.00, 'Greams road ', '1', '0 years 9 months', 'Health issue', 1, '2024-10-24 10:01:10', 0, NULL, 0, NULL, 1),
(9363, 22545, 'Vee healthtek private limited ', 'Ar caller ', '2024-07-17', 18200.00, '1970-01-01', 18200.00, 'Chennai', '2', '0 years 3 months', 'It\'s a complete US shift ..Unable to manage night shifts', 1, '2024-10-24 08:27:17', 0, NULL, 0, NULL, 1),
(9364, 22557, 'mu sigma', 'data scientist', '2022-08-10', 21500.00, '2023-08-10', 21500.00, 'bangalore', '1', '1 years 0 months', ' I did not get projects to work.I was in bench for long Time', 1, '2024-10-25 05:16:00', 0, NULL, 0, NULL, 1),
(9365, 22570, 'TELEPERFORMANCE ', 'EMPLOYEE', '2021-03-16', 11500.00, '1970-01-01', 13000.00, 'AMBIT IT PARK AMBATTUR ', '2', '3 years 7 months', ' ', 1, '2024-10-25 06:38:50', 0, NULL, 0, NULL, 1),
(9366, 22570, 'Teleperformance ', 'Emp', '2021-03-16', 11500.00, '2023-06-13', 13500.00, 'Ambattur ', '1', '2 years 2 months', 'Contract close', 1, '2024-10-25 06:42:07', 0, NULL, 0, NULL, 1),
(9367, 22586, 'Matrimony. Com pvt limited', 'Sales executive ', '2024-03-18', 12000.00, '2024-10-09', 14000.00, 'Guindy', '1', '0 years 6 months', ' ', 1, '2024-10-25 10:40:37', 0, NULL, 0, NULL, 1),
(9368, 22596, 'Vesoftometic solution Pvt Ltd ', 'Fullstack developer', '2023-08-28', 120000.00, '1970-01-01', 120000.00, 'Saligramam', '2', '1 years 1 months', ' For my career growth ,as well as financial need', 1, '2024-10-26 04:49:12', 0, NULL, 0, NULL, 1),
(9369, 22603, 'tvs sundaram fastner ltd', 'marketing', '2023-01-01', 14500.00, '2023-11-24', 14500.00, 'paadi', '1', '0 years 10 months', 'company shifting', 104, '2024-10-26 12:00:36', 0, NULL, 0, NULL, 1),
(9370, 22603, 'subdaram', 'qualit department', '2022-10-14', 14500.00, '2023-01-01', 14500.00, 'paadi', '1', '0 years 2 months', 'department change', 104, '2024-10-26 12:01:49', 0, NULL, 0, NULL, 1),
(9371, 22604, 'Jetz erp', 'Back end developer (java)', '2023-01-17', 240000.00, '2023-09-27', 240000.00, 'Karaikudi', '1', '0 years 8 months', ' Lack of projects ', 1, '2024-10-26 06:45:24', 0, NULL, 0, NULL, 1),
(9372, 22606, 'Muthoot finance ', 'Jre', '2024-06-26', 12000.00, '2024-10-26', 150000.00, 'Thanjavur ', '1', '0 years 4 months', ' Target', 1, '2024-10-26 01:01:09', 0, NULL, 0, NULL, 1),
(9373, 22606, 'Siva. Chidambaram pillai jewellery ', 'Stock and net work incharge ', '2011-05-02', 10000.00, '2017-04-03', 15000.00, 'Thanjavur ', '1', '5 years 11 months', 'Marriage ', 1, '2024-10-26 01:03:44', 0, NULL, 0, NULL, 1),
(9374, 22611, 'B2C technology ', 'Process associate ', '2020-03-03', 10000.00, '2022-12-03', 10000.00, 'Nagercoil ', '1', '2 years 9 months', ' It\'s completely  night shift process  ', 1, '2024-10-28 05:00:03', 0, NULL, 0, NULL, 1),
(9375, 22611, 'BDM technologies ', 'Business ', '2023-12-01', 12000.00, '2024-05-15', 12000.00, 'Nagercoil ', '1', '0 years 5 months', ' Process has been closed ', 1, '2024-10-28 05:01:41', 0, NULL, 0, NULL, 1),
(9376, 22611, 'Elentrus infotech ', 'Data backup executives ', '2024-09-16', 18000.00, '2024-10-18', 18000.00, 'Chennai ', '1', '0 years 1 months', ' Heavy  work pressure ', 1, '2024-10-28 05:02:59', 0, NULL, 0, NULL, 1),
(9377, 22615, 'AccelTop Learning Pvt ltd K.K Nagar Chennai ', 'Team  Assessment ', '2019-11-18', 15000.00, '2023-06-22', 22000.00, 'Chennai ', '1', '3 years 7 months', ' Company as low project due to COVID time then Company will be Showdown ', 1, '2024-10-28 06:25:10', 0, NULL, 0, NULL, 1),
(9378, 22621, 'Dp world ', 'Royapuram', '2023-02-05', 20000.00, '2024-09-10', 24000.00, 'Chennai ', '1', '1 years 7 months', ' Not interested ', 1, '2024-10-28 07:40:04', 0, NULL, 0, NULL, 1),
(9379, 22628, 'Paizabazaar ', 'Senior executive ', '2023-12-11', 16800.00, '2024-10-21', 20000.00, 'Thiruvanmiyur ', '1', '0 years 10 months', ' Process changing ', 1, '2024-10-29 05:28:02', 0, NULL, 0, NULL, 1),
(9380, 22628, 'Paizabazaar ', 'Senior executive ', '2023-12-11', 16800.00, '2024-10-21', 20000.00, 'Thiruvanmiyur ', '1', '0 years 10 months', ' Process changing ', 1, '2024-10-29 05:30:40', 0, NULL, 0, NULL, 1),
(9381, 22628, 'Paizabazaar ', 'Senior executive ', '2023-12-11', 16800.00, '2024-10-21', 20000.00, 'Thiruvanmiyur ', '1', '0 years 10 months', ' Process changing ', 1, '2024-10-29 05:30:44', 0, NULL, 0, NULL, 1),
(9382, 22628, 'Paizabazaar ', 'Senior executive ', '2023-12-11', 16800.00, '2024-10-21', 20000.00, 'Thiruvanmiyur ', '1', '0 years 10 months', ' Process changing ', 1, '2024-10-29 05:30:56', 0, NULL, 0, NULL, 1),
(9383, 22628, 'Paizabazaar ', 'Senior executive ', '2023-12-11', 16800.00, '2024-10-21', 20000.00, 'Thiruvanmiyur ', '1', '0 years 10 months', ' Process changing ', 1, '2024-10-29 05:30:56', 0, NULL, 0, NULL, 1),
(9384, 22628, 'Paizabazaar ', 'Senior executive ', '2023-12-11', 20000.00, '2024-10-21', 20000.00, 'Thiruvanmiyur ', '1', '0 years 10 months', 'Process changing ', 1, '2024-10-29 05:32:12', 0, NULL, 0, NULL, 1),
(9385, 22633, 'Paizabazaar ', 'Senior executive ', '2023-12-11', 16800.00, '2024-07-23', 20000.00, 'Thiruvanmiyur ', '1', '0 years 7 months', ' ', 1, '2024-10-29 05:41:52', 0, NULL, 0, NULL, 1),
(9386, 22634, 'Vvjk builders private limited', 'Qs', '2024-05-13', 12000.00, '2024-10-23', 12000.00, 'Anna nagar', '1', '0 years 5 months', 'Salary issues', 1, '2024-10-29 06:35:40', 0, NULL, 0, NULL, 1),
(9387, 22638, 'policybazaar', 'process executive', '2022-10-10', 320000.00, '2024-10-15', 420000.00, 'bengulur ', '1', '2 years 0 months', 'Medical Reasons ', 1, '2024-10-29 06:36:57', 0, NULL, 0, NULL, 1),
(9388, 22642, 'FRIENDLOAN Technologies Pvt Ltd ', 'Telesales ', '2024-02-14', 18000.00, '2024-11-19', 18000.00, 'T Nagar', '1', '0 years 9 months', ' Long Distance ', 1, '2024-10-29 10:18:46', 0, NULL, 0, NULL, 1),
(9389, 22646, 'Techmahindra', 'Customer support associate ', '2023-08-23', 20000.00, '2024-12-01', 18000.00, 'Chennai', '1', '1 years 3 months', ' Looking for career development ', 1, '2024-11-01 06:04:55', 0, NULL, 0, NULL, 1),
(9390, 22655, 'State Bank of India ', 'Executive ', '2024-06-20', 15000.00, '2024-09-19', 14000.00, 'Madhavaram', '1', '0 years 4 months', ' ', 1, '2024-11-02 07:29:13', 0, NULL, 0, NULL, 1),
(9391, 22662, 'Pulesoft technologies ', 'Java developer ', '2023-09-04', 15000.00, '1970-01-01', 16000.00, 'Chennai ', '2', '1 years 2 months', ' Contract time period', 1, '2024-11-04 05:05:10', 0, NULL, 0, NULL, 1),
(9392, 22659, 'Hdb finance ', 'Telle calling ', '2024-06-06', 15000.00, '2024-11-06', 15000.00, 'Thousand lights ', '1', '0 years 4 months', ' ', 1, '2024-11-04 05:06:45', 0, NULL, 0, NULL, 1),
(9393, 22672, 'Aditya birla capital sun life insurance ', 'Agency manager ', '2024-07-04', 21000.00, '2024-10-25', 18000.00, 'Mylapore ', '1', '0 years 3 months', ' ', 1, '2024-11-04 07:12:30', 0, NULL, 0, NULL, 1),
(9394, 22675, 'Beula ', 'Telecaller', '2024-04-15', 25.00, '2024-10-31', 24000.00, 'Thought lights ', '1', '0 years 6 months', ' Salary increment problem ', 1, '2024-11-04 07:35:34', 0, NULL, 0, NULL, 1),
(9395, 22676, 'Darling Showroom Perambalur ', 'Accountant ', '2021-06-24', 15000.00, '2024-07-12', 18000.00, 'Perambalur ', '1', '3 years 0 months', ' Time is uncomfortable ', 1, '2024-11-04 07:56:12', 0, NULL, 0, NULL, 1),
(9396, 22683, 'Techvolt software ', 'Web Developer ', '2023-04-26', 8000.00, '2024-04-30', 15000.00, 'Coimbatore ', '1', '1 years 0 months', ' No project and unable to provide salary ', 1, '2024-11-05 04:14:22', 0, NULL, 0, NULL, 1),
(9397, 22707, 'Krish housing and properties Pvt ltd', 'Business manager ', '2019-06-05', 15000.00, '2021-09-08', 18000.00, 'Chennai', '1', '2 years 3 months', ' Pressure working full of field work', 1, '2024-11-05 07:00:30', 0, NULL, 0, NULL, 1),
(9398, 22714, 'Abirami Velmurugan', 'Product executive', '2021-11-15', 17700.00, '2024-08-31', 15500.00, 'Thittagudi', '1', '2 years 9 months', 'Health issue Reason', 1, '2024-11-05 12:40:18', 0, NULL, 0, NULL, 1),
(9399, 22725, 'Zenith Solution ', 'Data Entry Analyst ', '2024-06-10', 13500.00, '2024-10-22', 13.50, 'Thanjavur ', '1', '0 years 4 months', ' ', 1, '2024-11-06 06:20:51', 0, NULL, 0, NULL, 1),
(9400, 22727, 'HDFC BANK ', 'Customer Relationship Executive ', '2022-10-06', 12500.00, '2023-12-06', 12500.00, 'Vadapalani ', '1', '1 years 2 months', ' ', 1, '2024-11-06 06:50:13', 0, NULL, 0, NULL, 1),
(9401, 22727, 'TATACAPITAL ', 'Customer service Executive ', '2024-03-18', 16500.00, '2024-08-31', 16500.00, 'Perungudi ', '1', '0 years 5 months', 'Medical leave ', 1, '2024-11-06 06:54:03', 0, NULL, 0, NULL, 1),
(9402, 22736, 'TNQ TECHNOLOGY PRIVATE LIMITED ', 'Normal employee ', '2022-05-10', 13000.00, '2023-04-09', 13000.00, 'Thiruvanmuour', '1', '0 years 10 months', ' Personal issue', 1, '2024-11-06 09:22:51', 0, NULL, 0, NULL, 1),
(9403, 14197, 'Royal Sundaram General Insurance ', 'Telecaller', '2023-12-02', 2.00, '2024-11-04', 22000.00, 'Karapakkam', '1', '0 years 11 months', ' Family and salary issue', 1, '2024-11-06 01:41:29', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9404, 22740, 'Bajaj finance ltd ', 'Sales executive ', '2023-12-11', 18000.00, '2024-05-08', 18000.00, 'Velachery ', '1', '0 years 4 months', ' Health issue ', 1, '2024-11-06 06:16:52', 0, NULL, 0, NULL, 1),
(9405, 22746, 'Ibytecode and rajalakshmi eduverse ', 'Business development executive ', '2024-08-12', 25000.00, '2024-11-04', 25000.00, 'Chennai ', '1', '0 years 2 months', ' Not comfortable ', 1, '2024-11-07 04:06:25', 0, NULL, 0, NULL, 1),
(9406, 22759, 'Cedar business solution ', 'Voice process ', '2024-05-01', 12000.00, '1970-01-01', 13000.00, 'Chennai ', '2', '0 years 6 months', ' ', 1, '2024-11-07 05:28:11', 0, NULL, 0, NULL, 1),
(9407, 22760, 'B2C', 'International voice', '2022-05-01', 15000.00, '2022-11-02', 17000.00, 'nagercoil', '1', '0 years 6 months', ' ', 1, '2024-11-07 06:13:54', 0, NULL, 0, NULL, 1),
(9408, 22771, 'Marvel motors insurance ', 'Tele caller ', '2023-12-08', 15000.00, '2024-05-30', 18000.00, 'Royepettah ', '1', '0 years 5 months', ' Health issues ', 1, '2024-11-07 01:49:27', 0, NULL, 0, NULL, 1),
(9409, 22772, 'Tech mahindra', 'Customer service executive', '2023-08-02', 14000.00, '2024-11-30', 1.90, 'Chennai', '1', '1 years 3 months', ' ', 1, '2024-11-07 01:50:29', 0, NULL, 0, NULL, 1),
(9410, 22783, 'Star health insurance ', 'Tso', '2023-11-16', 25000.00, '2024-08-19', 25000.00, 'Jayanagar ', '1', '0 years 9 months', ' Mother hospital issue ', 1, '2024-11-08 09:17:13', 0, NULL, 0, NULL, 1),
(9411, 22786, 'Nalandaway NGO', 'Teaching assistant ', '2022-06-06', 17000.00, '2024-07-08', 20000.00, 'Annanagar', '1', '2 years 1 months', ' ', 1, '2024-11-09 06:17:08', 0, NULL, 0, NULL, 1),
(9412, 22800, 'Byjus', 'BDA', '2021-12-08', 40000.00, '2022-06-15', 40000.00, 'Coimbatore', '1', '0 years 6 months', 'Family isuess', 153, '2024-11-09 12:55:29', 0, NULL, 0, NULL, 1),
(9413, 22800, 'RM Jegan  bro Arts', 'Sales Exective', '2022-09-14', 25000.00, '2023-08-16', 25000.00, 'Dindigul', '1', '0 years 11 months', 'New environment', 153, '2024-11-09 12:58:03', 0, NULL, 0, NULL, 1),
(9414, 22800, 'NOQU TECH Solutions', 'sales exective', '2023-10-03', 25000.00, '2024-08-01', 25000.00, 'Thousandlights', '1', '0 years 9 months', 'for more salary', 153, '2024-11-09 01:00:00', 0, NULL, 0, NULL, 1),
(9415, 22801, 'noqu', 'sales', '2023-11-01', 1.00, '2024-08-20', 25000.00, 'chennai', '1', '0 years 9 months', ' Personal work at home', 1, '2024-11-09 09:24:53', 0, NULL, 0, NULL, 1),
(9416, 22804, 'Alo Infotech Pvt Ltd', 'Backend Developer ', '2022-03-15', 10000.00, '2024-06-01', 2.76, 'Parvathipuram', '1', '2 years 2 months', ' ', 1, '2024-11-11 04:45:59', 0, NULL, 0, NULL, 1),
(9417, 22807, 'Savic technology pvt ltd ', 'Python Executive', '2023-09-04', 250000.00, '1970-01-01', 250000.00, 'Rayagiri,Tenkasi.', '2', '1 years 2 months', 'No salary in past 3 Months\nIm not ok with my current company policy ', 1, '2024-11-11 05:27:00', 0, NULL, 0, NULL, 1),
(9418, 22809, 'Tidy life india pvt Ltd ', 'Mobile application developer (Flutter)', '2024-06-03', 50000.00, '2024-11-11', 50000.00, 'Medavakkam, Chennai ', '2', '0 years 5 months', ' I have worked in real time project in B2B, application in flutter, this is a educational institution so that I have learned flutter and also working in projects, so that I have leave.', 1, '2024-11-11 05:43:44', 0, NULL, 0, NULL, 1),
(9419, 22814, 'Direct dialogue initiative India ', 'Fundraiser ', '2023-11-20', 25000.00, '2024-03-01', 25000.00, 'Chennai ', '1', '0 years 3 months', 'Health issues caused due to field work', 1, '2024-11-11 06:15:42', 0, NULL, 0, NULL, 1),
(9420, 22814, 'Best polymer ', 'Operations manager cum supervisor ', '2021-10-01', 17000.00, '2023-10-02', 20000.00, 'Chennai ', '1', '2 years 0 months', 'Company closed', 1, '2024-11-11 06:16:54', 0, NULL, 0, NULL, 1),
(9421, 22813, 'Carbarundam universal limited ', 'Data entry operator ', '2021-06-10', 12000.00, '2024-11-11', 14000.00, 'Thiruvotriyur ', '1', '3 years 5 months', ' ', 1, '2024-11-11 07:01:13', 0, NULL, 0, NULL, 1),
(9422, 22816, 'Presentation convent ', 'Accountant ', '2022-10-01', 16500.00, '2024-10-03', 20500.00, 'Egmore ', '1', '2 years 0 months', ' Not interested in school field ', 1, '2024-11-11 08:52:40', 0, NULL, 0, NULL, 1),
(9423, 22822, 'Faber sindoor ', 'Desk Cordinator ', '2023-03-11', 15000.00, '2024-07-08', 16000.00, 'Gream road ', '1', '1 years 3 months', 'Contractor based ', 1, '2024-11-11 03:25:16', 0, NULL, 0, NULL, 1),
(9424, 22835, 'Cafs', 'Chennai ', '2024-11-13', 18000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '0 years 0 months', ' ', 1, '2024-11-13 04:24:47', 154, '2024-11-13 10:10:06', 0, NULL, 0),
(9425, 22835, 'Village Milk', 'Franchise Manager', '2024-07-14', 17000.00, '2024-10-20', 17000.00, 'Anna Nagar', '1', '0 years 3 months', 'Salary delay', 154, '2024-11-13 10:10:03', 0, NULL, 0, NULL, 1),
(9426, 22843, 'Hamly Business soluctions ', 'Process associate ', '2023-03-17', 11000.00, '2024-10-04', 15000.00, 'Thanjavur ', '1', '1 years 6 months', ' ', 1, '2024-11-13 06:45:35', 0, NULL, 0, NULL, 1),
(9427, 22843, 'Excela Technology ', 'Traine Associate', '2022-01-16', 10000.00, '2022-12-16', 10000.00, 'Thanjavur ', '1', '0 years 11 months', 'Nig shift not comfortable ', 1, '2024-11-13 06:49:07', 0, NULL, 0, NULL, 1),
(9428, 22844, 'vriksha info tech', 'react junior developer', '2024-04-28', 10000.00, '2024-11-09', 10000.00, 'ashok nagar', '1', '0 years 6 months', 'Past company yet to shutdown in  a couple months ', 1, '2024-11-13 07:07:59', 0, NULL, 0, NULL, 1),
(9429, 22846, 'Esp', 'Sa', '2024-06-01', 23000.00, '2024-11-01', 2000.00, 'VR Mall Chennai ', '1', '0 years 5 months', 'Pressure in heavily ', 1, '2024-11-13 07:40:49', 0, NULL, 0, NULL, 1),
(9430, 22848, 'Innovative Spring Product', 'Production', '2019-02-01', 12500.00, '2020-03-30', 18500.00, 'Chennai', '1', '1 years 1 months', ' Family Situation ', 1, '2024-11-13 08:48:18', 0, NULL, 0, NULL, 1),
(9431, 22848, 'L&T', 'Production', '2014-07-01', 12500.00, '2015-06-30', 14000.00, 'Coimbatore', '1', '0 years 11 months', 'For Higher Education', 1, '2024-11-13 08:53:03', 0, NULL, 0, NULL, 1),
(9432, 22850, 'HAPTECH SOLUTION', 'Telecaller', '2022-02-15', 22000.00, '2023-03-25', 25000.00, 'Perambur ', '1', '1 years 1 months', ' ', 1, '2024-11-13 09:57:57', 154, '2024-12-18 03:38:23', 0, NULL, 1),
(9433, 22860, 'Tech4lyf entrepreneurs ', 'MERN stack developer ', '2022-05-15', 12000.00, '2023-05-15', 12000.00, 'Chennai ', '1', '1 years 0 months', ' No project available ', 1, '2024-11-14 04:32:03', 0, NULL, 0, NULL, 1),
(9434, 22860, 'Kst infotech ', 'Software developer ', '2023-07-10', 18000.00, '1970-01-01', 22500.00, 'Chennai ', '2', '1 years 4 months', 'Low salary ', 1, '2024-11-14 04:33:19', 0, NULL, 0, NULL, 1),
(9435, 22855, 'Club oxygen Holliday restart ', 'Senior telemarketing executive ', '2021-08-18', 12000.00, '2024-11-06', 17000.00, 'Chennai Anna nagar ', '1', '3 years 2 months', ' Office closed ', 1, '2024-11-14 05:33:00', 0, NULL, 0, NULL, 1),
(9436, 22872, 'Yaari Global Infotech ', 'HR recruiter ', '2022-09-07', 20000.00, '2024-04-08', 25000.00, 'Mumbai ', '1', '1 years 7 months', ' I want to stay in Chennai ', 1, '2024-11-14 07:19:43', 0, NULL, 0, NULL, 1),
(9437, 22868, 'BIGWIG FINSTOCK ', 'Trade executor ', '2024-07-29', 15000.00, '2024-10-31', 15000.00, 'Egmore', '1', '0 years 3 months', 'To build knowledge ', 1, '2024-11-14 07:27:40', 0, NULL, 0, NULL, 1),
(9438, 22877, 'Star health insurance', 'Customer handling', '2023-12-22', 15000.00, '2024-02-13', 18000.00, 'Anna nagar nanthanam', '1', '0 years 1 months', ' Personal issues', 1, '2024-11-14 10:13:58', 0, NULL, 0, NULL, 1),
(9439, 22881, 'Service Fransis ', 'TL', '2024-01-02', 12000.00, '2024-10-31', 15000.00, 'Kolathur ', '1', '0 years 9 months', ' Bus issues', 1, '2024-11-14 12:38:51', 0, NULL, 0, NULL, 1),
(9440, 22882, 'Hfa financial associates', 'Telecaller ', '2018-05-10', 19980.00, '2019-06-17', 20000.00, 'T.Nagar', '1', '1 years 1 months', 'None', 1, '2024-11-14 01:01:55', 0, NULL, 0, NULL, 1),
(9441, 22902, 'VGR', 'Thelecaller', '2023-04-10', 11500.00, '2024-02-11', 12000.00, 'Thanjavur ', '1', '0 years 10 months', ' health issues ', 1, '2024-11-16 04:58:24', 0, NULL, 0, NULL, 1),
(9442, 22905, 'Tamilnadu Textbook Corporation ', 'Junior assistant ', '2024-11-16', 20000.00, '1970-01-01', 20000.00, 'College road', '2', '0 years 0 months', ' Contract', 1, '2024-11-16 05:12:10', 0, NULL, 0, NULL, 1),
(9443, 22906, 'Easeway courier ', 'Office  executive ', '2024-08-02', 18000.00, '2024-11-16', 18000.00, 'Porur ', '1', '0 years 3 months', ' Health problem ', 1, '2024-11-16 05:20:52', 0, NULL, 0, NULL, 1),
(9444, 22901, 'Naandi foundation ', 'Adjunct faculty ', '2023-10-01', 25000.00, '2024-04-30', 25000.00, 'Chennai ', '1', '0 years 6 months', ' It\'s a contract based job only for 6 months ', 1, '2024-11-16 05:30:46', 0, NULL, 0, NULL, 1),
(9445, 22907, 'Vertex ', 'Business Associate', '2016-01-07', 6000.00, '2017-02-07', 6000.00, 'Thousand lights', '1', '1 years 1 months', ' ', 1, '2024-11-16 05:38:26', 0, NULL, 0, NULL, 1),
(9446, 22908, 'concentrix ', 'customer support ', '2022-05-28', 18000.00, '2023-01-03', 19100.00, 'chennai', '1', '0 years 7 months', ' family emergency ', 1, '2024-11-16 05:38:50', 0, NULL, 0, NULL, 1),
(9447, 22907, 'Cameo', 'Data entry fixed line process Airtel', '2017-02-15', 8000.00, '2021-11-20', 8000.00, 'Mount road', '1', '4 years 9 months', 'Salary Issue', 1, '2024-11-16 05:40:13', 0, NULL, 0, NULL, 1),
(9448, 22907, 'Cameo', 'Banking', '2021-12-07', 9000.00, '2023-12-20', 9000.00, 'Mount road', '1', '2 years 0 months', 'Salary issue', 1, '2024-11-16 05:42:26', 0, NULL, 0, NULL, 1),
(9449, 22907, 'Medical billing Wholesalers', 'Demo and charge entry', '2023-02-10', 13000.00, '2024-02-20', 13000.00, 'Thousand lights', '1', '1 years 0 months', 'Time extend', 1, '2024-11-16 05:44:30', 0, NULL, 0, NULL, 1),
(9450, 22907, 'Cameo', 'Yes Bank cheque and Nach verification', '2024-03-20', 9000.00, '2024-10-25', 9000.00, 'Mount road', '1', '0 years 7 months', ' Salary issue', 1, '2024-11-16 05:48:26', 0, NULL, 0, NULL, 1),
(9451, 22910, 'Cedar ', 'Tellcalling', '2023-09-29', 18000.00, '2024-11-11', 18000.00, 'Nugabakam', '1', '1 years 1 months', ' Some personal problem ', 1, '2024-11-16 07:10:36', 0, NULL, 0, NULL, 1),
(9452, 22922, 'ICICI Lombard ', 'Relationship Excutive ', '2022-10-17', 12500.00, '2023-04-28', 13500.00, ' Thousand Lights, Chennai', '1', '0 years 6 months', ' ', 1, '2024-11-18 06:30:31', 0, NULL, 0, NULL, 1),
(9453, 22913, 'Sri Venkateswara matrimony ', 'Chennai ', '2024-03-14', 13000.00, '2024-08-15', 14500.00, 'Perambur ', '1', '0 years 5 months', ' That was fake that\'s why I have relived\n', 1, '2024-11-18 06:50:46', 0, NULL, 0, NULL, 1),
(9454, 22924, 'Pace setters business solutions pvt ltd ', 'Sales executive ', '2024-02-05', 16000.00, '2024-07-29', 16000.00, 'Nungambakkam ', '1', '0 years 5 months', ' Family problems ', 1, '2024-11-18 07:44:15', 0, NULL, 0, NULL, 1),
(9455, 22934, 'Yuva association ', 'Exicutive ', '2022-12-01', 15000.00, '2023-08-31', 16000.00, 'Vellore ', '1', '0 years 8 months', ' Current salary date not give my salary ', 1, '2024-11-19 05:43:15', 0, NULL, 0, NULL, 1),
(9456, 22925, 'uLektz Learning Solutions Pvt.Ltd', 'Business Engineer ', '2022-08-03', 25.00, '2024-02-25', 211000.00, 'Porur', '1', '1 years 6 months', ' I left the company for better opportunities and want to experience new skills and environment which helps me to grow ', 1, '2024-11-19 06:03:16', 0, NULL, 0, NULL, 1),
(9457, 22939, 'State bank of India ', 'Telesales ', '2023-08-22', 18000.00, '1970-01-01', 16500.00, 'Koyambedu ', '2', '1 years 0 months', ' Health issues  ', 1, '2024-11-19 07:06:03', 1, '2024-11-19 07:08:38', 0, NULL, 1),
(9458, 22938, 'Indian Mart ', 'Telle sales ', '2024-05-06', 21000.00, '2024-11-05', 21000.00, 'Thousands lights', '1', '0 years 5 months', ' Personal resoun ', 1, '2024-11-19 07:30:29', 0, NULL, 0, NULL, 1),
(9459, 22941, 'Didar motor ', 'Service billing and calling', '2021-06-10', 5.00, '2024-11-06', 15000.00, 'Thousand lights ', '1', '3 years 4 months', ' Timing problem ', 1, '2024-11-19 07:38:46', 0, NULL, 0, NULL, 1),
(9460, 22940, 'ISON ', 'Business loan ', '2024-03-02', 15000.00, '2024-11-30', 16000.00, 'Kandhanchavadi ', '1', '0 years 8 months', ' Salary issue\n', 1, '2024-11-19 07:52:31', 0, NULL, 0, NULL, 1),
(9461, 22944, 'samsung authorised ac service centre ', 'customer telecalling', '2024-03-01', 15000.00, '2024-07-15', 17000.00, 'coimbatore ', '1', '0 years 4 months', ' Its my friends uncle office so i helped them to develope the office now its running good so i relieved ', 1, '2024-11-19 08:30:44', 0, NULL, 0, NULL, 1),
(9462, 22943, 'Samsung Authorised Ac service center ', 'Office managing & customer telecalling', '2024-02-07', 15.00, '2024-07-10', 17000.00, 'Coimbatore ', '1', '0 years 5 months', ' That\'s my relative office so I go for help with him , Now that\'s office now running good and I relieve ', 1, '2024-11-19 08:31:39', 0, NULL, 0, NULL, 1),
(9463, 22946, 'Kreditbee ', 'CRO ', '2022-06-09', 20000.00, '2024-10-12', 23000.00, 'Bommanahalli ', '1', '2 years 4 months', ' Distance ', 1, '2024-11-19 10:43:26', 0, NULL, 0, NULL, 1),
(9464, 22951, 'HDB FINANCIAL SERVICES', 'FINANCE ', '2024-07-05', 15000.00, '1970-01-01', 15000.00, 'THO', '2', '0 years 4 months', ' TIMING ISSUE', 1, '2024-11-20 06:26:05', 0, NULL, 0, NULL, 1),
(9465, 22952, 'HDB FINANCIAL SERVICES', 'FINANCIES', '2024-06-23', 15000.00, '2024-09-06', 15000.00, 'THOUSAND LIGHTS', '1', '0 years 2 months', 'TIMING ISSUE', 1, '2024-11-20 06:36:06', 0, NULL, 0, NULL, 1),
(9466, 22954, 'KOTAK MAHINDRA PRIME LTD', 'SALES', '2024-02-01', 30.00, '2024-07-31', 20000.00, 'CHENNAI', '1', '0 years 5 months', ' Family issues', 1, '2024-11-20 06:39:27', 0, NULL, 0, NULL, 1),
(9467, 22956, 'Edelweiss ', 'Relationship executive ', '2023-02-27', 21000.00, '2023-04-23', 22000.00, 'T nagar', '1', '0 years 1 months', ' Meet with an accident unable to continue because of fatel injury ', 1, '2024-11-20 07:05:03', 0, NULL, 0, NULL, 1),
(9468, 22959, 'Decision Minds India Pvt Ltd Chennai ', 'Trainee', '2021-09-27', 15000.00, '2022-10-03', 15000.00, 'Chennai ', '1', '1 years 0 months', ' Full time employee of Decision Minds client success4 solutions Pvt Ltd.', 1, '2024-11-20 07:25:06', 1, '2024-11-20 07:27:01', 0, NULL, 1),
(9469, 22959, 'Success4 solutions Pvt Ltd Chennai ', 'Software Engineer ', '2022-10-03', 30000.00, '2023-07-31', 30000.00, 'Chennai ', '1', '0 years 9 months', 'Career growth move to other company.', 1, '2024-11-20 07:26:39', 0, NULL, 0, NULL, 1),
(9470, 22963, 'Pace setters  business solution ', 'Telecaller ', '2023-11-02', 11000.00, '2024-10-28', 11000.00, 'Numgambakam ', '1', '0 years 11 months', 'Process was closed ', 1, '2024-11-20 09:49:44', 0, NULL, 0, NULL, 1),
(9471, 22965, 'Quikwallet ', 'Customer support ', '2024-04-22', 16000.00, '2024-09-10', 16000.00, 'Alandur', '1', '0 years 4 months', ' Health issue', 1, '2024-11-20 01:46:24', 0, NULL, 0, NULL, 1),
(9472, 22967, 'Rajalakshmi Eduverse ', 'Business development executive ', '2022-06-17', 16000.00, '2024-02-20', 20000.00, 'Mylapore ', '1', '1 years 8 months', ' ', 1, '2024-11-20 03:46:46', 0, NULL, 0, NULL, 1),
(9473, 22967, 'Rajalakshmi Eduverse ', 'Business development executive ', '2022-06-17', 15000.00, '2024-02-20', 20000.00, 'Mylapore ', '1', '1 years 8 months', 'Marriage ', 1, '2024-11-20 03:48:53', 0, NULL, 0, NULL, 1),
(9474, 22969, 'Foundever ', 'Customer service representative ', '2022-08-23', 20000.00, '1970-01-01', 22000.00, 'Thiruvanmiyur, Chennai ', '2', '2 years 2 months', ' Rotational shift ', 1, '2024-11-20 05:35:35', 0, NULL, 0, NULL, 1),
(9475, 22371, 'MANAPPURAM FINANCE LTD ', 'STAFF', '2022-04-12', 12000.00, '2024-05-02', 10000.00, 'CHENNAI ', '1', '2 years 0 months', ' ', 1, '2024-11-21 06:32:29', 0, NULL, 0, NULL, 1),
(9476, 22974, 'TAS TVS', 'Telecaller', '2024-03-21', 9000.00, '1970-01-01', 12000.00, 'Thanjavur ', '2', '0 years 8 months', ' Timing problem ', 1, '2024-11-21 06:41:06', 0, NULL, 0, NULL, 1),
(9477, 22976, 'Cholamandalam investment and finance ', 'Assistant Relationship manager ', '2022-06-03', 10000.00, '2024-01-03', 15000.00, 'Thousand lights', '1', '1 years 7 months', ' My father  met accident and his both legs are booked so that I  quit job and take care him', 1, '2024-11-21 07:19:47', 0, NULL, 0, NULL, 1),
(9478, 22977, 'Karthika ', 'Telecalling ', '2024-07-11', 15000.00, '2024-11-14', 15000.00, 'Kodapakam ', '1', '0 years 4 months', 'Salary not provide ', 1, '2024-11-21 07:36:53', 0, NULL, 0, NULL, 1),
(9479, 22982, 'apollo hospitals', 'telecaller', '2014-05-22', 10.00, '2020-01-07', 25000.00, 'chennai', '1', '5 years 7 months', ' ', 1, '2024-11-22 04:33:20', 0, NULL, 0, NULL, 1),
(9480, 22980, 'DSA', 'Relationship Executive ', '2022-08-02', 10000.00, '2024-10-08', 20000.00, 'Sivakasi ', '1', '2 years 2 months', ' Families are shifting to Chennai so I had resigned the job', 1, '2024-11-22 05:58:58', 0, NULL, 0, NULL, 1),
(9481, 22994, 'Star health insurance company ', 'Telesales ', '2023-08-02', 16000.00, '1970-01-01', 18500.00, 'Chennai ', '2', '1 years 3 months', ' ', 1, '2024-11-22 06:42:38', 0, NULL, 0, NULL, 1),
(9482, 22999, 'Vizza insurance broking services pvt Ltd ', 'Team leader ', '2024-05-26', 21000.00, '2024-11-08', 22000.00, 'Saidapet ', '1', '0 years 5 months', ' Position changing', 1, '2024-11-22 07:40:36', 0, NULL, 0, NULL, 1),
(9483, 23000, 'Vizza insurance broking service private limited', 'Tellecalling ', '2024-08-20', 14000.00, '2024-11-08', 14000.00, 'Saidhapet ', '1', '0 years 2 months', ' The branch was changed in koyambedu.', 1, '2024-11-22 07:46:28', 0, NULL, 0, NULL, 1),
(9484, 23000, 'Vizza insurance Broking service private limited ', 'Tellecalling ', '2024-08-20', 14000.00, '2024-11-08', 14000.00, 'Saidhapet ', '1', '0 years 2 months', ' The branch was changed in koyambedu.', 1, '2024-11-22 07:50:24', 0, NULL, 0, NULL, 1),
(9485, 22999, 'Matrimony.com', 'Senior telesales executive ', '2022-11-04', 22000.00, '2023-11-01', 22000.00, 'Guindy ', '1', '0 years 11 months', 'Personal issue', 1, '2024-11-22 07:50:36', 0, NULL, 0, NULL, 1),
(9486, 22999, 'Connect business solution private limited ', 'Sales executive ', '2019-02-25', 13000.00, '2022-09-27', 15000.00, 'Guindy ', '1', '3 years 7 months', 'New experience ', 1, '2024-11-22 07:52:15', 0, NULL, 0, NULL, 1),
(9487, 23004, 'Marketsof1 Analytical marketing services pvt ltd ', 'Junior executive telesales ', '2023-09-04', 20000.00, '1970-01-01', 20000.00, 'Saidapet ', '2', '1 years 2 months', ' Health problems ', 1, '2024-11-22 09:39:15', 0, NULL, 0, NULL, 1),
(9488, 23008, 'Esm thirupur garments', 'Manager', '2022-08-20', 16000.00, '2024-11-11', 18000.00, 'Avadi', '1', '2 years 2 months', ' Late salary', 1, '2024-11-23 08:11:14', 0, NULL, 0, NULL, 1),
(9489, 23017, 'Eximo solutions', 'Customer support ', '2020-08-10', 9000.00, '2021-09-10', 9000.00, 'Ambattur', '1', '1 years 1 months', ' No career growth ', 1, '2024-11-25 05:06:01', 0, NULL, 0, NULL, 1),
(9490, 23017, 'Bank bazaar', 'Customer Relationship officer ', '2022-04-06', 15000.00, '2023-07-08', 17000.00, 'Ambattur ', '1', '1 years 3 months', 'Meet with an accident ', 1, '2024-11-25 05:07:05', 0, NULL, 0, NULL, 1),
(9491, 23017, 'Tech Mahindra ', 'Customer support Associate ', '2024-06-03', 18000.00, '2024-09-23', 18000.00, 'Egmore ', '1', '0 years 3 months', 'Shift issue ', 1, '2024-11-25 05:08:17', 0, NULL, 0, NULL, 1),
(9492, 23034, 'ippopay technologies pvt ltd', 'associate application developer', '2023-07-03', 300000.00, '1970-01-01', 450000.00, 'chennai', '2', '1 years 4 months', 'Products are developed completed. so looking challenging Opportunity', 1, '2024-11-25 03:03:52', 0, NULL, 0, NULL, 1),
(9493, 23035, 'Mahindra next wealth it pvt Ltd ', 'International customer service executive ', '2022-02-05', 16000.00, '2023-11-08', 16000.00, 'Salem', '1', '1 years 9 months', ' Health Issue ', 1, '2024-11-26 06:22:51', 0, NULL, 0, NULL, 1),
(9494, 23038, 'Imarque Solution pvt ltd', 'Collection recovery department', '2024-03-05', 12000.00, '2024-10-07', 12500.00, 'Teynampet', '1', '0 years 7 months', ' Health issues', 1, '2024-11-26 08:02:01', 1, '2024-11-26 08:02:35', 0, NULL, 1),
(9495, 23042, 'Yes bank ', 'Virtual relationship manager ', '2024-05-05', 16689.00, '2024-11-13', 20712.00, 'Mumbai ', '1', '0 years 6 months', 'Move to Hyderabad ', 1, '2024-11-26 01:02:52', 0, NULL, 0, NULL, 1),
(9496, 22717, 'Power health ', 'Telecalling and sales executive ', '2023-06-21', 16500.00, '2024-07-16', 18000.00, 'Tirunelveli ', '1', '1 years 0 months', 'Health issues ', 1, '2024-11-27 07:22:01', 0, NULL, 0, NULL, 1),
(9497, 23047, 'KSG', 'Tele caller ', '2023-08-09', 18000.00, '2024-02-02', 18000.00, 'Coimbatore ', '1', '0 years 5 months', ' Studying ', 1, '2024-11-27 07:22:57', 0, NULL, 0, NULL, 1),
(9498, 23048, 'MUTHOOT FINANCE LTD ', 'INTERN / JUNIOR RELATIONSHIP EXCUTIVE ', '2023-08-11', 10000.00, '2024-08-03', 17000.00, 'TIRUPUR ', '1', '0 years 11 months', ' Due To Long Distance Travelling And Timings ', 1, '2024-11-27 07:34:47', 1, '2024-11-27 07:36:57', 0, NULL, 1),
(9499, 23051, 'Teamlesas ', 'Brand promoter,sales officer ', '2023-08-01', 22500.00, '2024-11-05', 18000.00, 'Velachery, tnagar', '1', '1 years 3 months', 'First company will closed, second company field work petrol smell not set', 1, '2024-11-27 09:23:55', 0, NULL, 0, NULL, 1),
(9500, 23050, 'Aero event Teamlease ', 'Promoter,Customer relationship executive ', '2023-09-02', 18500.00, '2024-11-27', 18500.00, 'T Nagar ', '1', '1 years 2 months', ' First company will close second job field work petrol smell not set ', 1, '2024-11-27 09:37:20', 0, NULL, 0, NULL, 1),
(9501, 23056, 'Imarque solution ', 'Customer care executive ', '2020-11-09', 10000.00, '2022-03-15', 12000.00, 'Chennai t Nagar', '1', '1 years 4 months', ' Less salary ', 1, '2024-11-28 05:59:29', 0, NULL, 0, NULL, 1),
(9502, 23056, 'Cams', 'Customer support executive ', '2022-05-29', 13000.00, '2024-11-07', 18500.00, 'Chennai Mount road ', '1', '2 years 5 months', 'Carrier growth ', 1, '2024-11-28 06:01:05', 0, NULL, 0, NULL, 1),
(9503, 23064, 'CAMS ', 'Senior executive ', '2023-02-01', 20000.00, '2024-08-22', 23000.00, 'Lic ', '1', '1 years 6 months', ' ', 1, '2024-11-28 07:06:35', 0, NULL, 0, NULL, 1),
(9504, 23070, 'Alset business solution ', 'Customer relationship manager ', '2023-11-05', 15000.00, '2024-11-13', 15000.00, 'Thousand light ', '1', '1 years 0 months', ' Personal reason', 1, '2024-11-29 05:18:34', 0, NULL, 0, NULL, 1),
(9505, 23071, 'Teleperformance global services ', 'Customer service executive ', '2022-09-26', 17000.00, '2023-06-07', 17000.00, 'Ambattur ', '1', '0 years 8 months', ' Distance ', 1, '2024-11-29 05:33:00', 0, NULL, 0, NULL, 1),
(9506, 23074, 'Muthoot finance ', 'Chennai ', '2024-05-01', 20000.00, '1970-01-01', 20000.00, 'Kilpauk ', '2', '0 years 6 months', ' Personal issue \nDistance ', 1, '2024-11-29 06:37:02', 0, NULL, 0, NULL, 1),
(9507, 9242, 'bharat matrimony', 'senior service execuitve', '2022-08-25', 12500.00, '2024-10-30', 15000.00, 'chennai', '1', '2 years 2 months', 'health issue  leave rejection', 104, '2024-11-29 12:18:18', 0, NULL, 0, NULL, 1),
(9508, 23078, 'Sun financial services ', 'Tele caller ', '2024-12-03', 19000.00, '1970-01-01', 19000.00, 'Nungambakkam ', '2', '0 years 0 months', ' ', 1, '2024-11-29 08:08:59', 0, NULL, 0, NULL, 1),
(9509, 23078, 'Enlist management ', 'Tele caller ', '2016-11-01', 13000.00, '2024-08-31', 19000.00, 'K k nagar nesapakkam ', '1', '7 years 9 months', 'Marriage ', 1, '2024-11-29 08:19:12', 0, NULL, 0, NULL, 1),
(9510, 23079, 'CIEL PRIVATE LIMITED', 'SENIOR BACKOFFICE ASSOCIATE', '2023-03-01', 2023.00, '2023-11-30', 24000.00, 'CHENNAI', '1', '0 years 8 months', ' MY FATHER HAS BEEN PASSED AWAY', 1, '2024-11-29 10:48:13', 0, NULL, 0, NULL, 1),
(9511, 23080, 'Star health insurance ', 'Business development executive', '2024-07-26', 25000.00, '2024-12-02', 25000.00, 'Chennai ', '1', '0 years 4 months', ' ', 1, '2024-11-29 12:56:54', 0, NULL, 0, NULL, 1),
(9512, 23083, 'Elentrus Infotech Opc Pvt Ltd ', 'Data backup Process ', '2024-11-01', 30000.00, '1970-01-01', 30000.00, 'Chennai', '2', '0 years 1 months', 'personal reasons for leaving a job', 1, '2024-12-02 04:43:10', 0, NULL, 0, NULL, 1),
(9513, 23089, 'Hdfc bank Ltd ', 'Teller ', '2024-03-28', 28032024.00, '2024-11-30', 18500.00, 'Madurai', '1', '0 years 8 months', ' Pressure and so much product to sell and heavy targets', 1, '2024-12-02 06:05:57', 0, NULL, 0, NULL, 1),
(9514, 23091, 'Quantra Technologies Solutions Pvt Ltd ', 'Technical Consultant ', '2021-06-07', 15000.00, '2023-03-09', 20000.00, 'Chennai', '1', '1 years 9 months', ' Maternity Gap', 1, '2024-12-02 06:09:45', 0, NULL, 0, NULL, 1),
(9515, 23092, 'Paisabazaar consultant private limited ', 'Junior sales associate ', '2024-06-14', 15000.00, '2024-10-21', 21000.00, 'Taramani', '1', '0 years 4 months', ' Health issues 1 after I have chicken pox so only 10 leave company as reliving ', 1, '2024-12-02 06:16:36', 0, NULL, 0, NULL, 1),
(9516, 23097, 'Axis bank', 'Business development executive', '2024-03-13', 21000.00, '2024-11-18', 21000.00, 'Chennai', '1', '0 years 8 months', ' Relocate', 1, '2024-12-02 06:55:49', 0, NULL, 0, NULL, 1),
(9517, 23093, 'saidigiserve tech ', 'sales coardinator', '2023-05-15', 250000.00, '2024-11-30', 25000.00, 'kolathur', '1', '1 years 6 months', ' Need care change ', 1, '2024-12-02 07:17:24', 0, NULL, 0, NULL, 1),
(9518, 23093, 'saidigiserve tech ', 'sales coarcinat ', '2023-05-15', 25000.00, '2024-11-30', 25000.00, 'kolathur', '1', '1 years 6 months', 'Need caree change ', 1, '2024-12-02 07:19:11', 0, NULL, 0, NULL, 1),
(9519, 23099, 'NCC CANTEEN DEFENCE ', 'MTS', '2023-09-13', 13000.00, '2024-10-31', 15000.00, 'PONDICHERRY ', '1', '1 years 1 months', ' ', 1, '2024-12-02 07:38:19', 0, NULL, 0, NULL, 1),
(9520, 23100, 'Sri lakshmi home appliances ', 'Customer relationship', '2021-07-22', 11000.00, '2024-07-22', 22000.00, 'T.nagar', '1', '3 years 0 months', ' Timing ', 1, '2024-12-02 09:14:54', 0, NULL, 0, NULL, 1),
(9521, 23101, 'IMatrix Technologies Pvt ltd', 'Software developer', '2021-12-20', 12000.00, '2024-11-30', 17000.00, 'Chennai ', '1', '2 years 11 months', ' ', 1, '2024-12-02 10:09:58', 0, NULL, 0, NULL, 1),
(9522, 23110, 'matrimony.com', 'Sales executive ', '2023-09-10', 18000.00, '2024-04-16', 18000.00, 'Chennai ', '1', '0 years 7 months', 'Reason for marriage ', 1, '2024-12-03 05:50:31', 0, NULL, 0, NULL, 1),
(9523, 23112, 'Barkath Stores ', 'Pattukkottai ', '2024-01-01', 10000.00, '2024-10-01', 10000.00, 'Pattukkottai ', '1', '0 years 9 months', ' No Increment ', 1, '2024-12-03 06:03:54', 0, NULL, 0, NULL, 1),
(9524, 23114, 'Collman service', 'Credit card sales', '2024-12-03', 13000.00, '1970-01-01', 13000.00, 'Chennai', '2', '0 years 0 months', ' ', 1, '2024-12-03 06:41:55', 0, NULL, 0, NULL, 1),
(9525, 23119, 'Retailing ', 'Coustomer relationship ', '2020-07-16', 16000.00, '2023-04-13', 18500.00, 'Chennai ', '1', '2 years 8 months', ' ', 1, '2024-12-03 06:56:56', 0, NULL, 0, NULL, 1),
(9526, 23122, 'star health and allied insurance', 'claims relation officer', '2022-07-04', 15000.00, '2023-12-05', 18000.00, 'royapettah', '1', '1 years 5 months', ' Marriage', 1, '2024-12-03 07:30:42', 1, '2024-12-03 07:31:12', 0, NULL, 1),
(9527, 23123, 'RR Donnelly ', 'SME ', '2023-02-13', 43000.00, '2024-09-11', 46000.00, 'Chennai', '1', '1 years 6 months', ' Mother unwell ', 1, '2024-12-03 09:06:52', 0, NULL, 0, NULL, 1),
(9528, 23123, 'Bluedart express ltd ', 'Sr customer service executive ', '2013-03-11', 18000.00, '2023-02-10', 38500.00, 'Chennai', '1', '9 years 10 months', 'Better opportunity ', 1, '2024-12-03 09:07:57', 0, NULL, 0, NULL, 1),
(9529, 23124, 'Vybog ', 'PHP WordPress developer ', '2024-02-05', 10.00, '2024-12-10', 8000.00, 'Chennai ', '1', '0 years 10 months', ' Reason is paying intern pay only.', 1, '2024-12-03 10:56:08', 0, NULL, 0, NULL, 1),
(9530, 23076, 'Altruist Technology private limited ', 'Business Associate ', '2024-02-16', 14000.00, '2025-01-02', 14000.00, 'Mount Road Chennai ', '1', '0 years 10 months', 'Salary issue ', 1, '2024-12-04 04:43:51', 0, NULL, 0, NULL, 1),
(9531, 23126, 'Marketsof1 analytical marketing services private l', 'Customer care executive ', '2024-08-02', 15000.00, '2024-11-06', 18000.00, 'Little mount ', '1', '0 years 3 months', 'Some personal issues that\'s only im relieving ', 1, '2024-12-04 07:07:13', 0, NULL, 0, NULL, 1),
(9532, 23126, 'SRI SRS fIN services ', 'Customer care executive ', '2020-06-01', 15000.00, '2023-05-31', 18000.00, 'Work from home ', '1', '2 years 11 months', 'Growth issues that\'s only im relieving that office ', 1, '2024-12-04 07:13:40', 0, NULL, 0, NULL, 1),
(9533, 23128, 'Marketsof1 ', 'Customer service ', '2024-08-23', 13000.00, '2024-11-06', 13500.00, 'Little mount ', '1', '0 years 2 months', ' Timing issue ', 1, '2024-12-04 07:39:27', 0, NULL, 0, NULL, 1),
(9534, 23130, 'Paisabazaar ', 'Senior sales executive ', '2022-10-27', 20.00, '2023-11-02', 20.00, 'Thiruvanmayur , Chennai ', '1', '1 years 0 months', 'Family issue ', 1, '2024-12-04 01:46:49', 0, NULL, 0, NULL, 1),
(9535, 23137, 'Altruist ', 'Relationship Executive ', '2024-05-27', 19000.00, '2024-11-07', 19000.00, 'Perungudi', '1', '0 years 5 months', 'Far from my location where I\'m resending.', 1, '2024-12-05 05:32:39', 0, NULL, 0, NULL, 1),
(9536, 23144, 'Star health insurance ', 'Telecaller ', '2023-05-19', 14000.00, '2024-11-30', 14582.00, 'Chennai ', '1', '1 years 6 months', ' ', 1, '2024-12-05 06:49:58', 1, '2024-12-05 06:53:41', 0, NULL, 0),
(9537, 23144, 'Star health and allied insurance ', 'Telesales officer', '2023-05-19', 14000.00, '2024-11-30', 14500.00, 'Chennai ', '1', '1 years 6 months', ' For growth and increase new skills ', 1, '2024-12-05 06:53:28', 0, NULL, 0, NULL, 1),
(9538, 23146, 'TATA', 'SALES', '2023-09-10', 12000.00, '2024-10-14', 22000.00, 'Chennai ', '1', '1 years 1 months', '3 Times Change the work Location ', 1, '2024-12-05 07:12:19', 0, NULL, 0, NULL, 1),
(9539, 23149, 'Pace setters business solutions pvt ltd ', 'Customer relationship executive ', '2023-08-03', 10.00, '2024-08-31', 14.00, 'Nungabakkam', '1', '1 years 0 months', ' I\'m looking for better opportunities ', 1, '2024-12-05 10:03:32', 0, NULL, 0, NULL, 1),
(9540, 23153, 'SBI cards', 'Sales executive ', '2018-02-01', 15000.00, '2019-06-05', 18000.00, 'Chennai', '1', '1 years 4 months', ' My  father medical issue', 1, '2024-12-06 04:53:44', 0, NULL, 0, NULL, 1),
(9541, 23156, 'Imarque solutions private limited ', 'Customer support executive ', '2023-11-09', 13500.00, '2024-11-14', 13500.00, 'Mount road ', '1', '1 years 0 months', ' Medical issue ', 1, '2024-12-06 05:38:15', 0, NULL, 0, NULL, 1),
(9542, 23157, 'Hitachi payment service Ltd ', 'Help desk operation ', '2023-09-23', 13000.00, '2024-10-01', 15000.00, 'Velachery ', '1', '1 years 0 months', ' ', 1, '2024-12-06 05:50:52', 0, NULL, 0, NULL, 1),
(9543, 23158, 'Cofoge', 'Team member', '2024-04-08', 27000.00, '2024-07-31', 27000.00, 'Chennai', '1', '0 years 3 months', ' Family issues', 1, '2024-12-06 05:51:24', 0, NULL, 0, NULL, 1),
(9544, 23157, 'Hitachi payment service Ltd ', 'Help desk operation ', '2023-09-23', 11000.00, '2024-10-01', 15000.00, 'Velachery ', '1', '1 years 0 months', 'Salary issue ', 1, '2024-12-06 05:52:42', 0, NULL, 0, NULL, 1),
(9545, 23160, 'Imarque solutions ', 'Customer support executive ', '2023-06-10', 20000.00, '1970-01-01', 20000.00, 'Greems road ', '2', '1 years 5 months', ' It\'s a contract project ', 1, '2024-12-06 06:27:13', 0, NULL, 0, NULL, 1),
(9546, 23161, 'Jayam Associates ', 'Accounting officer ', '2022-08-02', 10000.00, '2024-03-31', 13600.00, 'Karambakkam', '1', '1 years 7 months', ' Timing issue', 1, '2024-12-06 07:22:58', 0, NULL, 0, NULL, 1),
(9547, 23164, 'Ison experience BPO pvt ltd ', 'Customer care executive ', '2021-12-01', 12000.00, '2024-11-07', 12000.00, 'Perungudi chennai ', '1', '2 years 11 months', ' Health issues ', 1, '2024-12-07 04:43:03', 0, NULL, 0, NULL, 1),
(9548, 23165, 'Orange retail finance ', 'Telecaller ', '2022-07-16', 10000.00, '2024-12-04', 14000.00, 'Madurai ', '1', '2 years 4 months', ' Not Accepted  Record Resignation letter\n4 Times,\n\n', 1, '2024-12-07 05:24:38', 0, NULL, 0, NULL, 1),
(9549, 23171, 'IndusInd bank', 'Vkyc', '2023-06-09', 25.00, '2024-05-31', 17000.00, 'Chennai', '1', '0 years 11 months', ' Contract base', 1, '2024-12-07 06:27:53', 0, NULL, 0, NULL, 1),
(9550, 23170, 'Riemen Solutions prvt limited ', 'Customer care support ', '2023-11-15', 10000.00, '2024-12-07', 10000.00, 'Thanjavur ', '1', '1 years 0 months', ' ', 1, '2024-12-07 06:46:48', 0, NULL, 0, NULL, 1),
(9551, 23167, 'Riemen Solution pvt Ltd Thanjavur ', 'Customer support Executive Voice process ', '2023-10-26', 8000.00, '1970-01-01', 15000.00, 'Thanjavur ', '2', '1 years 1 months', '  I\'m looking for an opportunity that allows a healthier balance between work and personal life.', 1, '2024-12-07 12:32:13', 0, NULL, 0, NULL, 1),
(9552, 23179, 'the mobile spot ', 'sales', '2022-06-01', 60000.00, '2023-01-15', 15000.00, 'anna nagar', '1', '0 years 7 months', 'they asked to work  more than 8 hours', 1, '2024-12-07 01:30:00', 0, NULL, 0, NULL, 1),
(9553, 23181, 'First source solution', 'Customer service associate', '2021-06-07', 12000.00, '2024-10-01', 20000.00, 'navalur', '1', '3 years 3 months', ' I’m Continues working Night shift so my health was total spoiled thats major reason.', 1, '2024-12-09 02:35:15', 0, NULL, 0, NULL, 1),
(9554, 23183, 'Poorvika', 'Customer support', '2023-10-03', 12900.00, '2024-10-03', 12900.00, 'Ekkaduthangal', '1', '1 years 0 months', ' Work growth', 1, '2024-12-09 04:56:37', 0, NULL, 0, NULL, 1),
(9555, 23185, 'TCS', 'Reviewer', '2018-08-21', 15000.00, '1970-01-01', 35000.00, 'Chennai', '2', '6 years 3 months', ' Looking in native', 1, '2024-12-09 05:20:45', 0, NULL, 0, NULL, 1),
(9556, 23188, 'MAXLIFE INSURANCE COMPANY LTD', 'RELATIONSHIP ASSOCIATE MANAGER', '2022-01-01', 22500.00, '2024-12-16', 25000.00, 'Coimbatore ', '1', '2 years 11 months', ' Carrier growth for sales ', 1, '2024-12-09 06:19:49', 0, NULL, 0, NULL, 1),
(9557, 23189, 'Hdfcbank ', 'Customer Support ', '2023-03-20', 20000.00, '2024-09-16', 20000.00, 'Chennai ', '1', '1 years 5 months', ' Distance', 1, '2024-12-09 06:23:04', 0, NULL, 0, NULL, 1),
(9558, 23191, 'Altruist technology pvt Ltd ', 'Customer care ', '2024-07-18', 15.00, '2024-12-07', 150000.00, 'Lic ', '1', '0 years 4 months', ' ', 1, '2024-12-09 06:48:16', 0, NULL, 0, NULL, 1),
(9559, 23195, 'Forte Management Services', 'Tell caller ', '2021-02-13', 13.00, '2024-01-10', 16.00, 'Saidapet', '1', '2 years 10 months', ' Salary issue and college exam\'s, notice period 3 months 90day ', 1, '2024-12-09 08:00:16', 0, NULL, 0, NULL, 1),
(9560, 23196, 'Cameo corporate services ', 'BBA', '2023-10-04', 13500.00, '2024-12-03', 13500.00, 'Chennai ', '1', '1 years 1 months', ' Financial problem ', 1, '2024-12-09 08:56:53', 0, NULL, 0, NULL, 1),
(9561, 23205, 'Intrnforte', 'Sales Executive', '2024-03-20', 15.00, '2024-09-17', 16.00, 'Bengaluru', '1', '0 years 5 months', ' Due to my father heath ', 1, '2024-12-10 05:44:41', 0, NULL, 0, NULL, 1),
(9562, 23204, 'Star health insurance ', 'Tso', '2022-12-10', 16000.00, '1970-01-01', 16000.00, 'VadaPalani ', '2', '2 years 0 months', ' Over timeing and over tragat ', 1, '2024-12-10 05:49:59', 0, NULL, 0, NULL, 1),
(9563, 23206, 'Max life insurance', 'Tele caller', '2020-06-18', 13000.00, '2023-11-08', 10.00, 'Chennai', '1', '3 years 4 months', ' Father issue', 1, '2024-12-10 06:43:26', 0, NULL, 0, NULL, 1),
(9564, 23214, 'Iccs', 'D2h voice process ', '2024-03-25', 15000.00, '2024-12-01', 15000.00, 'Karapakkam ', '1', '0 years 8 months', ' Family issue', 1, '2024-12-10 07:37:33', 0, NULL, 0, NULL, 1),
(9565, 23216, 'Marketsoft1', 'Telecaller', '2023-11-13', 15000.00, '2024-11-14', 19.00, 'Guindy', '1', '1 years 0 months', ' Career growth 1 year experience', 1, '2024-12-10 08:41:55', 0, NULL, 0, NULL, 1),
(9566, 23221, 'yes bank', 'tele caller', '2023-08-11', 21000.00, '2024-06-10', 210000.00, 'ambattur', '1', '0 years 9 months', ' ', 1, '2024-12-11 05:46:08', 0, NULL, 0, NULL, 1),
(9567, 23233, 'FS Broking services private limited ', 'Financial service Executive ', '2024-03-19', 14000.00, '2024-11-30', 20000.00, 'Nandanam 600035', '1', '0 years 8 months', ' Family Issues ', 1, '2024-12-12 06:19:09', 0, NULL, 0, NULL, 1),
(9568, 23234, 'Urbaser sumeet pvt ltd ', 'Supervisor ', '2020-11-06', 14500.00, '2024-06-28', 25000.00, 'Chennai ', '1', '3 years 7 months', ' I have moved on next level', 1, '2024-12-12 06:26:58', 0, NULL, 0, NULL, 1),
(9569, 23238, 'Ashok Leyland', 'Quality Assurance engineer', '2024-12-13', 300000.00, '2025-02-12', 300000.00, 'Chennai ', '1', '0 years 1 months', ' ', 1, '2024-12-12 09:38:41', 0, NULL, 0, NULL, 1),
(9570, 23239, 'EQUITAS SMALL FINANCE LIMITED ', 'SALES ', '2023-11-01', 16000.00, '2024-05-31', 13500.00, 'Thanjavur ', '1', '0 years 6 months', ' ', 1, '2024-12-13 05:38:51', 0, NULL, 0, NULL, 1),
(9571, 23172, 'Riemen solution ', 'Tele collor ', '2024-05-25', 10000.00, '2024-12-01', 10000.00, 'Chennai ', '1', '0 years 6 months', ' Improveing myself ', 1, '2024-12-13 06:12:10', 0, NULL, 0, NULL, 1),
(9572, 23247, 'TVS', 'Cashier', '2022-07-22', 6000.00, '1970-01-01', 10000.00, 'Medavakkam', '2', '2 years 4 months', ' No leave on Sundays \nLow salary \n', 1, '2024-12-14 04:49:35', 0, NULL, 0, NULL, 1),
(9573, 23255, 'Vikas proking insurance', 'VPA', '2024-05-14', 14000.00, '2024-09-10', 14000.00, 'Vadapalani', '1', '0 years 3 months', ' ', 1, '2024-12-14 07:13:52', 0, NULL, 0, NULL, 1),
(9574, 23253, 'Vizza insurance ', 'Voice process executive ', '2024-09-10', 180000.00, '2024-12-06', 18000.00, 'Ekattuthangal ', '1', '0 years 2 months', ' Not provided salary', 1, '2024-12-14 07:40:16', 0, NULL, 0, NULL, 1),
(9575, 23258, 'Modern Interior ', 'Purchase executive ', '2023-12-15', 15500.00, '2024-08-25', 16000.00, 'Madhanathapuram ', '1', '0 years 8 months', ' Health issue', 1, '2024-12-14 10:07:01', 0, NULL, 0, NULL, 1),
(9576, 23260, 'TNQ TECHNOLOGIES PRIVATE LIMITED ', 'Paginator', '2022-08-11', 11000.00, '2024-01-05', 12000.00, 'Tharamani', '1', '1 years 4 months', ' Contract ', 1, '2024-12-14 10:47:32', 0, NULL, 0, NULL, 1),
(9577, 23264, 'Allsec Technologies Pvt ltd', 'Customer care executive ', '2022-12-01', 14000.00, '2023-06-01', 14000.00, 'Velachey', '1', '0 years 6 months', 'Family reason ', 1, '2024-12-16 05:43:22', 0, NULL, 0, NULL, 1),
(9578, 23264, 'Softage information Technologies Pvt ltd', 'Back office executive ', '2024-05-01', 15000.00, '2024-10-01', 15000.00, 'Puzhal', '1', '0 years 5 months', 'Company shift to another place so it\'s too long for me', 1, '2024-12-16 05:44:43', 0, NULL, 0, NULL, 1),
(9579, 23267, 'cameo pvt ltd ', 'customer support exe ', '2023-07-10', 14200.00, '2024-07-20', 14200.00, 'chennai ', '1', '1 years 0 months', ' There is no scope ', 1, '2024-12-16 05:45:59', 0, NULL, 0, NULL, 1),
(9580, 23262, 'Falcon Telecom pvt ltd ', 'Sales executive ', '2022-05-22', 25000.00, '2023-07-05', 30000.00, 'Koramangala ', '1', '1 years 1 months', ' I travel to out of India ', 1, '2024-12-16 06:23:12', 0, NULL, 0, NULL, 1),
(9581, 23283, 'TECH MAHINDRA BUSINESS SERVICES LIMITED', 'Trainee Associate ', '2023-02-01', 11000.00, '2023-11-30', 11000.00, 'Ambattur ', '1', '0 years 9 months', ' Looking for better opportunity to develope my skills ', 1, '2024-12-16 08:38:47', 0, NULL, 0, NULL, 1),
(9582, 13369, 'Aionion group - zauvek trading private limited', 'Insurance telecalling executive', '2023-08-02', 180000.00, '2024-10-14', 180000.00, 'Chennai royapettah', '1', '1 years 2 months', ' Looking for a better new job opportunity', 1, '2024-12-17 06:30:40', 0, NULL, 0, NULL, 1),
(9583, 23299, 'Central cooperative bank', 'Paccs associative', '2024-04-15', 17000.00, '2024-12-17', 17000.00, 'Thanjavur', '1', '0 years 8 months', 'Wages is not provided correctly every month', 1, '2024-12-17 07:14:15', 0, NULL, 0, NULL, 1),
(9584, 23301, 'Central cooperative bank', 'Human Resource ', '2024-06-19', 15000.00, '2024-12-17', 15000.00, 'Thanjavur ', '1', '0 years 5 months', ' ', 1, '2024-12-17 07:16:01', 0, NULL, 0, NULL, 1),
(9585, 23301, 'Central cooperative bank', 'Human resources ', '2024-06-19', 15000.00, '2024-12-17', 15000.00, 'Thanjavur ', '1', '0 years 5 months', 'Project completed ', 1, '2024-12-17 07:17:18', 0, NULL, 0, NULL, 1),
(9586, 7874, 'Vidal health insurance ', 'Call executive ', '2022-03-31', 15000.00, '2025-01-08', 18000.00, 'Teynampet', '1', '2 years 9 months', ' ', 1, '2024-12-18 05:16:43', 0, NULL, 0, NULL, 1),
(9587, 23304, 'Altruist Technologies India Pvt. Ltd.', 'usto support', '2024-05-13', 7.06, '2024-09-10', 15000.00, 'mount road ', '1', '0 years 3 months', ' No salary hike ', 1, '2024-12-18 05:50:32', 0, NULL, 0, NULL, 1),
(9588, 23304, 'Altruist Technologies India Pvt. Ltd.', 'coustomer Support ', '2023-05-13', 15000.00, '2024-09-10', 15000.00, 'mount road', '1', '1 years 3 months', 'No salary hike ', 1, '2024-12-18 05:53:21', 0, NULL, 0, NULL, 1),
(9589, 23324, 'Cameo corporate services pvt Ltd ', 'Junior executive ', '2020-11-01', 7000.00, '2024-02-25', 15000.00, 'Chennai ', '1', '3 years 3 months', 'Salary issue ', 1, '2024-12-18 06:31:39', 0, NULL, 0, NULL, 1),
(9590, 23335, 'Ishwaryam Developers ', 'Telecalling ', '2023-12-19', 18900.00, '1970-01-01', 18900.00, 'Velachery ', '2', '1 years 0 months', ' Office shifted.. too long for me so..', 1, '2024-12-19 05:50:39', 0, NULL, 0, NULL, 1),
(9591, 23336, 'CAMS', 'Executive operation ', '2020-12-21', 15000.00, '2024-02-02', 16000.00, 'Chennai ', '1', '3 years 1 months', ' Marriage ', 1, '2024-12-19 06:02:23', 0, NULL, 0, NULL, 1),
(9592, 23352, 'Meenakshi honda ', 'Telecalling ', '2024-10-09', 16000.00, '1970-01-01', 16000.00, 'Tirunelveli ', '2', '0 years 2 months', ' ', 1, '2024-12-19 10:43:59', 0, NULL, 0, NULL, 1),
(9593, 23356, 'Scode Software solution ', 'Junior Flutter Developer ', '2024-08-12', 10000.00, '2024-12-12', 10000.00, 'Cuddalore ', '1', '0 years 4 months', 'Not have project.', 1, '2024-12-20 05:18:40', 0, NULL, 0, NULL, 1),
(9594, 19996, 'Digi Hotels ', 'Business development executive ', '2024-03-11', 10000.00, '1970-01-01', 10000.00, 'Thanjavur ', '2', '0 years 9 months', 'Salary problems ', 1, '2024-12-20 05:24:37', 0, NULL, 0, NULL, 1),
(9595, 23357, 'Digi hotels', 'Buisness devlopment executive ', '2024-03-01', 10000.00, '2024-11-10', 10000.00, 'Thanjavur ', '1', '0 years 8 months', 'salary delay issue', 1, '2024-12-20 05:25:10', 0, NULL, 0, NULL, 1),
(9596, 23358, 'Exella technology ', 'Junior operater ', '2024-05-28', 11500.00, '2024-11-19', 12000.00, 'Thanjavur', '1', '0 years 6 months', ' Timing issue ', 1, '2024-12-20 05:25:22', 0, NULL, 0, NULL, 1),
(9597, 23359, 'Exella technology ', 'Junior operater ', '2024-05-28', 11500.00, '2024-11-19', 12000.00, 'Thanjavur ', '1', '0 years 5 months', ' Timing issue', 1, '2024-12-20 05:30:09', 0, NULL, 0, NULL, 1),
(9598, 23361, 'COGNOUSA TECHNOLOGIES', 'Business Development Project Executive', '2023-01-10', 13000.00, '2024-01-01', 16000.00, 'Chennai ', '1', '1 years 11 months', ' Delay for salary ', 1, '2024-12-20 06:10:38', 0, NULL, 0, NULL, 1),
(9599, 23363, 'Chennais amritha', 'tele sales', '2024-01-03', 22000.00, '2024-11-28', 22000.00, 'chennai', '1', '0 years 10 months', ' family issue ', 1, '2024-12-20 07:59:46', 0, NULL, 0, NULL, 1),
(9600, 23365, 'Writer Information ', 'Operations team leader ', '2023-03-10', 20000.00, '2024-08-07', 20000.00, 'Vandalur ', '1', '1 years 4 months', ' ', 1, '2024-12-20 09:42:04', 0, NULL, 0, NULL, 1),
(9601, 23376, 'RU Loans', 'Customer support executive ', '2023-01-09', 13000.00, '2024-11-11', 16000.00, 'Arumbakkam, chennai', '1', '1 years 10 months', ' Not had better experience and recognition for my work. And to get better salary and better work.', 1, '2024-12-21 07:41:38', 0, NULL, 0, NULL, 1),
(9602, 23389, 'bajaj finance ', 'telesalesc customer relationship ', '2023-04-10', 17850.00, '2024-01-31', 17800.00, 'mbattur ', '1', '0 years 9 months', ' Medical issue major accident on my hand', 1, '2024-12-23 06:29:43', 0, NULL, 0, NULL, 1),
(9603, 23387, 'Tejas Network', 'Technician', '2024-07-15', 15.00, '2024-11-15', 18000.00, 'Electronic City', '1', '0 years 4 months', ' Due to Health issues I left', 1, '2024-12-23 06:32:43', 0, NULL, 0, NULL, 1),
(9604, 23388, 'VITTA ENTERPRISE (collection Recovery) ', 'Collection Recovery', '2024-07-05', 16500.00, '2024-12-01', 18000.00, 'Jaya nagar', '1', '0 years 4 months', ' Over pressure, and salary not giving correctly', 1, '2024-12-23 07:26:42', 0, NULL, 0, NULL, 1),
(9605, 23392, 'allset bussiness solutions', 'telecaller', '2024-06-10', 15000.00, '2024-11-07', 15000.00, 'thounsand lights', '1', '0 years 4 months', 'My father was passed away so i searching for above 15000 job', 1, '2024-12-23 09:00:23', 0, NULL, 0, NULL, 1),
(9606, 23396, 'icanio technology', 'software developer i', '2023-11-13', 18000.00, '2024-12-05', 20000.00, 'tirunelveli', '1', '1 years 0 months', 'Native is chennai ,so i want to relocate.', 1, '2024-12-23 09:46:03', 0, NULL, 0, NULL, 1),
(9607, 23397, 'Icanio technologies ', 'Software Development Engineer 1', '2022-07-01', 1.80, '2024-12-04', 3.00, 'Tirunelveli ', '1', '2 years 5 months', ' I need to change my location.', 1, '2024-12-23 09:47:41', 0, NULL, 0, NULL, 1),
(9608, 23400, 'FREELANCER ', 'Customer Support ', '2024-07-18', 100000.00, '2024-12-20', 100088.00, 'Remote', '1', '0 years 5 months', ' WANT TO GET HIGH REPUTED ORGANIZATION AND IMPROVE MY CAREER ', 1, '2024-12-23 11:52:21', 0, NULL, 0, NULL, 1),
(9609, 23399, 'FREELANCER ', 'Customer Support ', '2024-07-17', 100000.00, '2024-12-20', 100000.00, 'Remote ', '1', '0 years 5 months', ' WAND TO HIGHER MY CAREER', 1, '2024-12-23 11:52:42', 0, NULL, 0, NULL, 1),
(9610, 23401, 'Mmc infotech pvt ltd', 'Telecaller', '2017-06-12', 9000.00, '2019-06-19', 11000.00, 'Pattinampakkam', '1', '2 years 0 months', ' No increment not any growth in process', 1, '2024-12-23 03:57:36', 0, NULL, 0, NULL, 1),
(9611, 23401, 'Marketsof1', 'Telecaller', '2020-02-05', 15000.00, '2020-08-17', 15000.00, 'Little mount', '1', '0 years 6 months', 'Because of covid', 1, '2024-12-23 03:58:52', 0, NULL, 0, NULL, 1),
(9612, 23401, 'Poorvika pvt ltd', 'Telecaller', '2020-09-21', 14000.00, '2021-09-27', 15000.00, 'Ekkatuthangal', '1', '1 years 0 months', 'Because of marriage', 1, '2024-12-23 04:00:22', 0, NULL, 0, NULL, 1),
(9613, 23405, 'coal barbecues', 'commercial unit head', '2023-09-01', 15000.00, '2024-05-24', 15000.00, 't nagar', '1', '0 years 8 months', 'Wanted to pursue higher Studies.', 1, '2024-12-24 05:39:18', 0, NULL, 0, NULL, 1),
(9614, 23407, 'My money mantra ', 'Telecalling ', '2024-05-02', 20000.00, '2024-12-15', 20000.00, 'Nungambakkam ', '1', '0 years 7 months', ' It\'s not reputed company and then main problem salary did not give proper date', 1, '2024-12-24 05:42:32', 0, NULL, 0, NULL, 1),
(9615, 23406, 'Sutherland global services private limited ', 'CS associate ', '2022-10-10', 15000.00, '2024-02-05', 20000.00, 'Perugalathur ', '1', '1 years 3 months', 'Due to my mother health issue ', 1, '2024-12-24 05:46:42', 0, NULL, 0, NULL, 1),
(9616, 23408, 'Cedar business solution', 'Telecoller', '2021-08-16', 11.50, '2023-05-03', 12.00, 'Pachaipass college back side', '1', '1 years 8 months', ' Salary issue ', 1, '2024-12-24 07:05:28', 0, NULL, 0, NULL, 1),
(9617, 23411, 'Bank bazaae', 'Customer relationship officer ', '2024-12-14', 15000.00, '2024-12-24', 17500.00, 'Chennai ambattur', '1', '0 years 0 months', ' Personal issues and health issues ', 1, '2024-12-24 11:56:28', 0, NULL, 0, NULL, 1),
(9618, 23419, 'SBI Securities ', 'Relationship Manager ', '2024-03-11', 16000.00, '2024-08-07', 16000.00, 'ALANDUR, Chennai ', '1', '0 years 4 months', ' Personal health issue', 1, '2024-12-26 07:19:00', 0, NULL, 0, NULL, 1),
(9619, 23421, 'Encora Innovation Labs', 'Junior Technical Consultant', '2024-02-12', 16000.00, '2024-06-10', 16000.00, 'Chennai', '1', '0 years 3 months', ' My current role as been moved from Chennai to Hyderabad so I resigned', 1, '2024-12-26 09:16:28', 0, NULL, 0, NULL, 1),
(9620, 23428, 'FS Insurance Pvt Ltd ', 'Sr financial advisor ', '2024-06-17', 20.00, '2024-12-16', 20.00, 'Ambattur ', '1', '0 years 5 months', ' Some personal issues ', 1, '2024-12-27 07:15:07', 0, NULL, 0, NULL, 1),
(9621, 23428, 'Bajaj finance services ', 'Sales executive ', '2021-08-14', 17.00, '2024-04-15', 18.00, 'Amjikarai', '1', '2 years 8 months', 'I Suddenly Relocate to out of station ', 1, '2024-12-27 07:21:39', 0, NULL, 0, NULL, 1),
(9622, 23428, 'Gamma Hub Pvt Ltd ', 'Telecaler', '2020-07-07', 13.00, '2021-06-06', 13.00, 'Ambathur ', '1', '0 years 10 months', 'Salary purpose I am Relieving ', 1, '2024-12-27 07:28:18', 0, NULL, 0, NULL, 1),
(9623, 23430, 'Altruist Technologies PVT LTD ', 'Customer Support', '2023-11-08', 12900.00, '2024-12-16', 12900.00, 'Chennai', '1', '1 years 1 months', ' Because of salary issue', 1, '2024-12-27 07:32:33', 0, NULL, 0, NULL, 1),
(9624, 23429, 'Trident finserv ', 'Telecaller', '2023-11-01', 12000.00, '1970-01-01', 14.00, 'Chennai ', '2', '1 years 1 months', ' ', 1, '2024-12-27 08:03:13', 0, NULL, 0, NULL, 1),
(9625, 23437, 'TATA CONSULTANCY SERVICES', 'INFORMATION PROCESSING SPECIALIST', '2019-11-12', 2.70, '1970-01-01', 3.25, 'Chennai one', '2', '5 years 1 months', ' Domain change', 1, '2024-12-28 05:09:00', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9626, 23442, 'HDB FINANCIAL SERVICES LIMITED ', 'Data entry ', '2022-10-05', 15000.00, '2024-10-22', 15000.00, 'Thousand light ', '1', '2 years 0 months', ' Salary issue ', 1, '2024-12-28 06:24:06', 0, NULL, 0, NULL, 1),
(9627, 23441, 'Engineering construction ', 'Finance ', '2023-05-20', 13000.00, '2024-07-10', 14000.00, 'Chennai ', '1', '1 years 1 months', 'Salary issues', 1, '2024-12-28 06:30:28', 0, NULL, 0, NULL, 1),
(9628, 23445, 'HDFC Bank', 'Telecalling', '2022-02-12', 10000.00, '2024-09-30', 10000.00, 'Thanjavur ', '1', '2 years 7 months', ' Work from home and relieving and office work', 1, '2024-12-30 05:28:28', 0, NULL, 0, NULL, 1),
(9629, 23450, 'HDFC', 'Loan sale ', '2023-02-06', 15000.00, '2023-11-20', 17000.00, 'Pondicherry ', '1', '0 years 9 months', ' ', 1, '2024-12-30 06:07:35', 0, NULL, 0, NULL, 1),
(9630, 23449, 'Jsj groups', 'Telecaller ', '2024-10-02', 15000.00, '2024-12-27', 15000.00, 'Teynampet', '1', '0 years 2 months', ' ', 1, '2024-12-30 06:09:32', 0, NULL, 0, NULL, 1),
(9631, 23447, 'JsJ group ', 'Telecaller ', '2024-07-06', 17.00, '2024-11-23', 17500.00, 'Teynampet ', '1', '0 years 4 months', ' ', 1, '2024-12-30 06:11:51', 0, NULL, 0, NULL, 1),
(9632, 23448, 'JSJ groups ', 'Tellecaller', '2024-10-02', 15000.00, '2024-12-27', 15000.00, 'Teynampet', '1', '0 years 2 months', ' ', 1, '2024-12-30 06:13:37', 0, NULL, 0, NULL, 1),
(9633, 23455, 'Shriram transport finance ', 'Relationship executive ', '2019-11-28', 180000.00, '2022-01-01', 250000.00, 'Thuraiyur ', '1', '2 years 1 months', ' Future Growth ', 1, '2024-12-30 08:19:49', 0, NULL, 0, NULL, 1),
(9634, 23459, 'Sbi cridit card ', 'Salce executive ', '2024-02-20', 18000.00, '2024-07-31', 18000.00, 'Chennai ', '1', '0 years 5 months', ' Come native ', 1, '2024-12-31 04:56:53', 0, NULL, 0, NULL, 1),
(9635, 23461, 'Chris Merchant pvt ltd', 'Marketing Executive', '2023-06-21', 13000.00, '2024-07-08', 20000.00, 'ambattur', '1', '1 years 0 months', 'long distance', 154, '2024-12-31 11:06:17', 0, NULL, 0, NULL, 1),
(9636, 23461, 'Chris Merchant pvt ltd', 'Marketing Executive', '2023-06-21', 13000.00, '2024-07-08', 20000.00, 'ambattur', '1', '1 years 0 months', 'long distance', 154, '2024-12-31 11:06:17', 154, '2024-12-31 11:06:22', 0, NULL, 0),
(9637, 23461, 'Future generalic life insurance company', 'Relationship Manager', '2024-10-10', 25000.00, '1970-01-01', 25000.00, 't nagar', '2', '0 years 2 months', 'no growth', 154, '2024-12-31 11:08:56', 0, NULL, 0, NULL, 1),
(9638, 23462, 'Noqu tech solutions ', 'Team leader', '2023-10-03', 25000.00, '2024-12-31', 27800.00, 'Greems road', '1', '1 years 2 months', ' Personal issue ', 1, '2024-12-31 05:47:29', 0, NULL, 0, NULL, 1),
(9639, 23462, 'SBI cards and payments ', 'Team leader', '2021-01-28', 25000.00, '2023-11-30', 25000.00, 'Chetpet', '1', '2 years 10 months', 'Personal issue ', 1, '2024-12-31 05:49:16', 0, NULL, 0, NULL, 1),
(9640, 23463, 'Muthoot fincorp ', 'Customer services executive ', '2023-06-01', 13.00, '2024-08-20', 13.00, 'Virugambakkam ', '1', '1 years 2 months', 'Long distance ', 1, '2024-12-31 07:01:12', 0, NULL, 0, NULL, 1),
(9641, 23470, 'Bajaj', 'Sales', '2023-03-09', 12500.00, '2023-09-12', 20000.00, 'Namakkal', '1', '0 years 6 months', ' ', 1, '2024-12-31 10:37:10', 0, NULL, 0, NULL, 1),
(9642, 23470, 'Union bank of india', 'relationship Excutive ', '2023-09-09', 15000.00, '2024-08-05', 20000.00, 'Elurpatti ', '1', '0 years 10 months', 'Conttract closing', 1, '2024-12-31 10:39:09', 0, NULL, 0, NULL, 1),
(9643, 23470, 'HDB financial services ', 'Sales', '2023-03-30', 10000.00, '2023-10-20', 20000.00, 'Namakkal', '1', '0 years 6 months', 'Family issues ', 1, '2024-12-31 10:40:50', 0, NULL, 0, NULL, 1),
(9644, 23473, 'Chola finance', 'B. Com', '2023-01-10', 10000.00, '2024-02-15', 16000.00, 'External audit', '1', '1 years 1 months', 'I will go better opportunity', 1, '2025-01-02 04:59:01', 0, NULL, 0, NULL, 1),
(9645, 23476, 'Chola finance', 'External audit', '2023-01-10', 10000.00, '2024-02-15', 15000.00, 'Chennai', '1', '1 years 1 months', ' I will go better opportunity and project was \nClosed', 1, '2025-01-02 05:11:53', 0, NULL, 0, NULL, 1),
(9646, 23476, 'Ebix cash', 'Customer support executive', '2024-08-12', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '0 years 4 months', 'Project will closed', 1, '2025-01-02 05:13:36', 0, NULL, 0, NULL, 1),
(9647, 23478, 'ICICI prudential life insurance ', 'Cpa', '2022-01-05', 120000.00, '2024-12-30', 120000.00, 'Selaiyur', '1', '2 years 11 months', ' Get higher position ', 1, '2025-01-02 07:07:57', 0, NULL, 0, NULL, 1),
(9648, 23479, 'Andromeda sales distribution Pvt Ltd ', 'Telecaller', '2021-12-15', 10000.00, '2024-11-14', 170000.00, 'Porur', '1', '2 years 10 months', ' Salary process is very delay........', 1, '2025-01-02 07:58:50', 0, NULL, 0, NULL, 1),
(9649, 23480, 'Hathway ', 'Customer care support ', '2024-01-02', 17000.00, '2024-07-01', 17000.00, 'Thousand lights ', '1', '0 years 5 months', ' daddy wash accident so relieving the company', 1, '2025-01-02 11:55:49', 0, NULL, 0, NULL, 1),
(9650, 23486, 'chola mandalam', 'business manager', '2024-06-17', 35000.00, '2024-12-25', 37500.00, 'chetpet', '1', '0 years 6 months', ' ', 1, '2025-01-03 04:32:12', 1, '2025-01-03 04:34:43', 0, NULL, 0),
(9651, 23486, 'chola ', 'business manager', '2024-06-17', 37500.00, '2024-12-25', 35700.00, 'chetpet ', '1', '0 years 6 months', 'Too much of feild work', 1, '2025-01-03 04:34:33', 0, NULL, 0, NULL, 1),
(9652, 23481, 'Sornam Honda services center ', 'cRE', '2022-12-01', 14000.00, '2023-05-31', 16000.00, 'Dindigul', '1', '0 years 5 months', ' Health issues ', 1, '2025-01-03 05:02:22', 0, NULL, 0, NULL, 1),
(9653, 23492, 'HDFC Bank ', 'Data entry', '2015-04-15', 7000.00, '2024-11-10', 15000.00, 'Magadheera', '1', '9 years 6 months', ' Long distance', 1, '2025-01-03 06:46:51', 0, NULL, 0, NULL, 1),
(9654, 23482, 'Agarwal corporate', 'Documentary', '2023-01-25', 19000.00, '2023-10-30', 19000.00, 'Chennai', '1', '0 years 9 months', ' Some body personal reasons ', 1, '2025-01-03 07:14:37', 0, NULL, 0, NULL, 1),
(9655, 23498, 'Alembic pharmaceuticals ', 'Medical Representative ', '2024-09-18', 20000.00, '2024-10-31', 25000.00, 'Chennai', '1', '0 years 1 months', ' Carrier Growth  & Some Personal issues ', 1, '2025-01-03 10:11:10', 0, NULL, 0, NULL, 1),
(9656, 23498, 'Cedar Business Solutions ', 'Customer Support Executive ', '2022-06-15', 12000.00, '2023-04-14', 12000.00, 'Amjikarai', '1', '0 years 9 months', 'Health issue', 1, '2025-01-03 10:12:51', 0, NULL, 0, NULL, 1),
(9657, 23501, 'allsec technologies ltd', 'sales exicutive', '2023-06-19', 14500.00, '2023-11-12', 14500.00, 'bangalore', '1', '0 years 4 months', ' Personal reasons', 1, '2025-01-04 05:33:45', 0, NULL, 0, NULL, 1),
(9658, 23506, 'Shriram life insurance company ', 'Sales executive ', '2023-05-01', 25000.00, '2023-11-01', 25000.00, 'Egmore ', '1', '0 years 6 months', ' Mother health issues ', 1, '2025-01-04 07:41:02', 0, NULL, 0, NULL, 1),
(9659, 23509, 'amazon warehouse', 'customer support associate ', '2023-09-02', 16000.00, '2024-10-02', 18000.00, 'tambaram esat ', '1', '1 years 1 months', ' ', 1, '2025-01-04 01:46:58', 0, NULL, 0, NULL, 1),
(9660, 23510, 'Doyensys', 'Trainee Infrastructure Engineer', '2023-10-16', 15000.00, '2024-10-10', 15000.00, 'Trichy', '1', '0 years 11 months', ' ', 1, '2025-01-06 04:12:30', 0, NULL, 0, NULL, 1),
(9661, 23513, 'Sharekhan ', 'Client coordination', '2023-04-05', 2.00, '2024-12-05', 7000.00, 'Thanjavur ', '1', '1 years 8 months', ' Our Office Relocation To Coimbatore ', 1, '2025-01-06 04:43:16', 0, NULL, 0, NULL, 1),
(9662, 23511, 'Tneb head office', 'Telecalling', '2024-07-22', 12500.00, '2024-12-14', 12500.00, 'Lic, anna salai', '1', '0 years 4 months', ' Salary problem and not growth', 1, '2025-01-06 04:45:58', 0, NULL, 0, NULL, 1),
(9663, 23515, 'omega healthcare ', 'ar executive ', '2023-08-15', 18000.00, '2024-10-31', 23500.00, 'trichy ', '1', '1 years 2 months', ' Night shift ', 1, '2025-01-06 05:06:31', 0, NULL, 0, NULL, 1),
(9664, 23517, 'Aurora infinite', 'Telecaller ', '2024-06-02', 15000.00, '2024-09-26', 15000.00, 'Vadapalani ', '1', '0 years 3 months', ' Health issues ', 1, '2025-01-06 06:17:47', 1, '2025-01-06 06:18:30', 0, NULL, 0),
(9665, 23517, 'Aurora infinite ', 'Telecaller ', '2024-06-02', 15000.00, '2024-09-26', 15000.00, 'Vadapalani ', '1', '0 years 3 months', 'Health issues ', 1, '2025-01-06 06:19:52', 0, NULL, 0, NULL, 1),
(9666, 23518, 'Conneqt business solutions', 'Customer care support', '2024-05-29', 1.00, '2025-01-03', 15000.00, 'Velachery', '1', '0 years 7 months', ' Location far and less salary', 1, '2025-01-06 06:23:07', 0, NULL, 0, NULL, 1),
(9667, 23520, 'Conneqt business solutions ', 'Customer care support ', '2024-05-29', 1.00, '2025-01-01', 15000.00, 'Velachery ', '1', '0 years 7 months', ' Location long and low salary package ', 1, '2025-01-06 06:31:38', 0, NULL, 0, NULL, 1),
(9668, 23521, 'vfs global private limited', 'visa process', '2020-01-10', 20000.00, '2022-06-10', 20000.00, 'chennai', '1', '2 years 5 months', ' expecting hike', 1, '2025-01-06 07:02:31', 0, NULL, 0, NULL, 1),
(9669, 23525, 'Sevvel health care', 'Process associated ', '2023-11-05', 15500.00, '2024-12-06', 15500.00, 'Chennai ', '1', '1 years 1 months', ' ', 1, '2025-01-06 07:20:21', 0, NULL, 0, NULL, 1),
(9670, 23525, 'Rbl fin serve', 'Branch operation executive ', '2022-07-01', 21000.00, '2023-06-01', 23000.00, 'Tirunelveli ', '1', '2 years 6 months', 'Nil', 1, '2025-01-06 07:22:40', 0, NULL, 0, NULL, 1),
(9671, 23526, 'Chola fiance ', 'Disbursement offer', '2023-06-12', 16000.00, '2024-10-01', 16000.00, 'Thousands light ', '1', '1 years 3 months', 'Health Issues ', 1, '2025-01-06 10:04:53', 0, NULL, 0, NULL, 1),
(9672, 23536, 'TCS', 'BPO 1', '2023-04-07', 19500.00, '2024-10-11', 19500.00, 'DLF chennai', '1', '1 years 6 months', ' ', 1, '2025-01-07 05:44:34', 0, NULL, 0, NULL, 1),
(9673, 23533, 'Ospicare private ltd', 'Sales executive ', '2023-05-01', 18000.00, '2024-06-01', 18000.00, 'Chennai ', '1', '1 years 1 months', 'Not interested \nTraveling issues ', 1, '2025-01-07 05:59:35', 0, NULL, 0, NULL, 1),
(9674, 23535, 'Manappuram finance limited ', 'Abh (assistant branch head)', '2023-02-02', 15000.00, '2024-12-17', 18000.00, 'T.nagar', '1', '1 years 10 months', 'Not interested ', 1, '2025-01-07 06:03:03', 0, NULL, 0, NULL, 1),
(9675, 23534, 'Lyzoo technology ', 'Madipakkam ', '2024-01-08', 18000.00, '2024-12-01', 18000.00, 'Madipakkam ', '1', '0 years 10 months', 'Pressure.The salary is not good. Bcz I\'m Stayed pg', 1, '2025-01-07 06:05:08', 0, NULL, 0, NULL, 1),
(9676, 23529, 'Annexmed ', 'AR Caller', '2024-07-03', 7.00, '2025-01-03', 16000.00, 'Perungudi ', '1', '0 years 6 months', 'Health issues so I quit my previous job ', 1, '2025-01-07 06:57:09', 0, NULL, 0, NULL, 1),
(9677, 23539, 'Fa Softwares private limited ', 'Java developer ', '2022-04-15', 10000.00, '2024-12-31', 40138.00, 'Thousand lights ', '1', '2 years 8 months', ' My last organisation is closed because of they didn\'t have project and fund ,so that why I resigned the company and also I looking for develop my skills and my knowledge also with organisation,I need to learn more in my IT career ', 1, '2025-01-07 07:01:37', 0, NULL, 0, NULL, 1),
(9678, 23559, 'Icici LOMBAND BIKE insurance ', 'Insurance ', '2023-03-20', 15000.00, '2024-12-30', 16000.00, 'Meenabakkam ', '1', '1 years 9 months', ' Home changed so leaved that job ', 1, '2025-01-08 05:18:35', 0, NULL, 0, NULL, 1),
(9679, 23576, 'Hyundai (Vas tribology solutions pvt ltd )', 'Trainee supervisor ', '2023-09-25', 18000.00, '2024-10-25', 18000.00, 'Chengalpattu ', '1', '1 years 1 months', ' To improve my career and position ', 1, '2025-01-09 06:58:18', 0, NULL, 0, NULL, 1),
(9680, 23579, 'VFS global ', 'Operation officer ', '2024-01-16', 23000.00, '2024-10-16', 23000.00, 'Bangalore ', '1', '0 years 9 months', ' It\'s a contract ', 1, '2025-01-09 07:04:31', 0, NULL, 0, NULL, 1),
(9681, 23580, 'PORTLAND PRIVATE LIMITED', 'Project manager', '2023-06-21', 10000.00, '2024-07-09', 13500.00, 'TUTICORIN', '1', '1 years 0 months', 'Taking care of kid', 1, '2025-01-09 07:14:39', 0, NULL, 0, NULL, 1),
(9682, 23581, 'Haier', 'Salesperson ', '2024-01-01', 18000.00, '2025-06-30', 18000.00, 'Chennai', '1', '1 years 5 months', ' Health issue ', 1, '2025-01-09 07:31:41', 0, NULL, 0, NULL, 1),
(9683, 23589, 'Insuremile insurance web aggregator pvt ltd. ', 'Telecaller', '2024-07-31', 7500.00, '2025-01-07', 9000.00, 'Work from home', '1', '0 years 5 months', 'Heavy pressure to handle job and baby on the same time.... ', 1, '2025-01-09 04:53:16', 0, NULL, 0, NULL, 1),
(9684, 23592, 'Fs insurance ', 'Telecaller ', '2025-01-10', 13500.00, '1970-01-01', 14000.00, 'Chennai, Nandanam ', '2', '0 years 0 months', 'Cost of living is higher in Chennai,so iam back to my native ', 1, '2025-01-10 05:34:45', 0, NULL, 0, NULL, 1),
(9685, 23594, 'TNBF', 'Arekere ', '2024-05-06', 18000.00, '2025-01-08', 18000.00, 'Bangalore ', '1', '0 years 8 months', ' ', 1, '2025-01-10 05:35:22', 0, NULL, 0, NULL, 1),
(9686, 23584, 'X media solutions ', 'Seo analysis ', '2022-06-01', 15000.00, '2023-06-01', 18333.00, 'Ambattur ', '1', '1 years 0 months', ' Health issues ', 1, '2025-01-10 05:56:02', 0, NULL, 0, NULL, 1),
(9687, 23600, 'Medspark Global Solutions ', 'Customer support executive ', '2022-01-05', 21000.00, '2024-01-03', 23000.00, 'Bangalore ', '1', '1 years 11 months', ' Company shutdown ', 1, '2025-01-10 10:08:17', 0, NULL, 0, NULL, 1),
(9688, 23609, 'NLCIL ', 'Technical engineer ', '2023-03-05', 200000.00, '2024-08-10', 50000.00, 'Neyveli', '1', '1 years 5 months', ' Contract ends ', 1, '2025-01-11 06:54:12', 0, NULL, 0, NULL, 1),
(9689, 23611, 'Medsprk solution ', 'Tele caller ', '2021-02-10', 18000.00, '2023-05-10', 20000.00, 'JP nagar', '1', '2 years 3 months', ' Better growth', 1, '2025-01-11 07:34:00', 0, NULL, 0, NULL, 1),
(9690, 23613, 'Altruist technology pvt ltd ', 'Lic', '2024-05-20', 14.00, '1970-01-01', 14.00, 'Rayala tower,nearby Lic', '2', '0 years 7 months', ' Personal issues ', 1, '2025-01-11 09:50:33', 0, NULL, 0, NULL, 1),
(9691, 23614, 'Seven orses', 'Kodambakkam ', '2024-10-04', 12.00, '1970-01-01', 12.00, 'Kodambakkam ', '2', '0 years 3 months', ' Salary issues ', 1, '2025-01-11 10:00:08', 0, NULL, 0, NULL, 1),
(9692, 23618, 'sha Mobiles', 'Sales Exective', '2022-07-08', 20000.00, '2025-05-09', 20000.00, 'kudugavur', '1', '2 years 10 months', 'Because of Father Death', 153, '2025-01-13 11:04:12', 0, NULL, 0, NULL, 1),
(9693, 23619, 'fangs technology', 'sales Executive ', '2019-02-02', 15000.00, '2024-02-09', 18000.00, 'purasaiwalkam', '1', '5 years 0 months', ' Personal issue', 1, '2025-01-13 05:34:33', 0, NULL, 0, NULL, 1),
(9694, 23618, 'Futurz Staffing Sloution', 'Teel sales', '2024-08-08', 19000.00, '2024-12-31', 20000.00, 'Nukamapakkam', '1', '0 years 4 months', 'Personals issues', 153, '2025-01-13 11:06:07', 0, NULL, 0, NULL, 1),
(9695, 23620, 'ILYZLY ', 'Wearhouse Executive ', '2023-06-03', 12000.00, '2024-10-24', 17000.00, 'Chennai ', '1', '1 years 4 months', ' Timing issue ', 1, '2025-01-13 05:46:27', 0, NULL, 0, NULL, 1),
(9696, 23620, 'ILYZLY ', 'Werehouse  executive ', '2023-06-03', 12000.00, '2024-10-24', 17000.00, 'Chennai ', '1', '1 years 4 months', 'Timing issue ', 1, '2025-01-13 05:48:28', 0, NULL, 0, NULL, 1),
(9697, 23627, 'Phifer India private limited ', 'Admin executive ', '2025-06-03', 15000.00, '1970-01-01', 17000.00, 'Thuraipakkam', '2', '0 years 4 months', ' Very delay to monthly salary.', 1, '2025-01-15 11:24:26', 0, NULL, 0, NULL, 1),
(9698, 23628, 'Technibit solutions', 'Research analyst ', '2022-01-25', 14000.00, '2024-06-05', 25000.00, 'Cit nagar', '1', '2 years 4 months', ' ', 1, '2025-01-16 04:36:01', 0, NULL, 0, NULL, 1),
(9699, 23630, 'ICICI Lombard ', 'TSO', '2023-09-04', 14500.00, '2024-04-08', 14500.00, 'Thousand light ', '1', '0 years 7 months', ' ', 1, '2025-01-16 05:40:01', 0, NULL, 0, NULL, 1),
(9700, 23631, 'Allset business solutions ', 'Tele caller ', '2024-11-04', 14000.00, '2025-01-11', 14000.00, 'Thousand light ', '1', '0 years 2 months', ' ', 1, '2025-01-16 05:50:07', 0, NULL, 0, NULL, 1),
(9701, 23634, 'Lenskart', 'Sales associate ', '2024-03-13', 18000.00, '2024-12-31', 18000.00, 'BTM ', '1', '0 years 9 months', ' ', 1, '2025-01-16 06:56:53', 0, NULL, 0, NULL, 1),
(9702, 23635, 'Altruist technologies private limited ', 'Associate', '2022-11-28', 9300.00, '2024-12-09', 15000.00, 'Karapakkam ', '1', '2 years 0 months', ' I am looking for better opportunity in my career growth.', 1, '2025-01-16 07:53:49', 0, NULL, 0, NULL, 1),
(9703, 23636, 'Altruist technology private limited ', 'Associate ', '2023-05-06', 9300.00, '2024-08-24', 15000.00, 'Karapakkam ', '1', '1 years 3 months', ' I\'m looking for better opportunity in career growth.', 1, '2025-01-16 07:55:46', 0, NULL, 0, NULL, 1),
(9704, 23638, 'Reliance industries (RIL)', 'Customer support executive ', '2024-04-08', 15000.00, '2024-09-30', 15000.00, 'Coimbatore ', '1', '0 years 5 months', ' I left my job because I was looking for an opportunity to advance my career in a field that better aligns with my skills and interests. ', 1, '2025-01-16 10:37:40', 0, NULL, 0, NULL, 1),
(9705, 23638, 'Zomato ', 'Fraud desk ', '2023-10-01', 17000.00, '2025-01-01', 17000.00, 'Bhopal', '1', '1 years 3 months', 'Process had been ramp down from the client end ', 1, '2025-01-16 10:39:46', 0, NULL, 0, NULL, 1),
(9706, 23639, 'Jio reliance ', 'Costomer support executive ', '2024-04-01', 15000.00, '2024-09-30', 15000.00, 'Coimbatore ', '1', '0 years 5 months', ' I left my job because I was looking for an opportunity to advance my career in a field that better aligns with my skills and interests.', 1, '2025-01-16 10:51:15', 0, NULL, 0, NULL, 1),
(9707, 23640, 'HDB FINANCIAL SERVICES ', 'Senior Telecalling officers ', '2021-05-19', 10000.00, '2024-07-06', 12000.00, 'GP Road ', '1', '3 years 1 months', ' No promotion and  no salary hike ', 1, '2025-01-16 11:24:09', 0, NULL, 0, NULL, 1),
(9708, 23644, 'Carstores Pvt Ltd ', 'Team leader ', '2021-02-10', 13000.00, '2022-03-03', 15000.00, 'Anna nagar', '1', '1 years 0 months', ' Second baby pregnancy ', 1, '2025-01-17 04:40:04', 0, NULL, 0, NULL, 1),
(9709, 23646, 'Carstores Pvt Ltd ', 'Team leader ', '2021-02-10', 13000.00, '2023-03-22', 15000.00, 'Anna nagar ', '1', '2 years 1 months', ' Second baby pregnancy ', 1, '2025-01-17 04:46:20', 0, NULL, 0, NULL, 1),
(9710, 23648, 'Kotak mahindra bank Ltd ', 'Assistant manager', '2022-01-17', 325000.00, '2024-12-18', 369000.00, 'Perungudi', '1', '2 years 11 months', 'Around 4 hours traveling  up and down  working hours above 12 to 13  hours  ', 1, '2025-01-17 06:28:13', 0, NULL, 0, NULL, 1),
(9711, 23651, 'Sri balaji petrochem ', 'Customer support executive ', '2023-03-07', 28000.00, '2024-10-14', 25.00, 'Chittor', '1', '1 years 10 months', ' Far away from home Town ', 1, '2025-01-17 10:35:54', 0, NULL, 0, NULL, 1),
(9712, 23652, 'HDB FINANCIAL SERVICES PVT ', 'Finance executive ', '2023-02-02', 17000.00, '2024-02-29', 15000.00, 'Tiruvallur', '1', '1 years 0 months', ' Timing issue', 1, '2025-01-17 12:00:18', 0, NULL, 0, NULL, 1),
(9713, 23658, 'G.K. Suresh Associates ', 'CRE', '2021-06-01', 15000.00, '2024-12-31', 20000.00, 'Basavanagudi ', '1', '3 years 6 months', ' ', 1, '2025-01-18 06:29:33', 0, NULL, 0, NULL, 1),
(9714, 23654, 'credit mantri ', 'credit Relationship officer ', '2024-05-13', 17.00, '2025-01-07', 17.00, 'spenser plaza lower ground floor chennai ', '1', '0 years 7 months', ' Timing is the reason i have left ', 1, '2025-01-18 06:32:52', 0, NULL, 0, NULL, 1),
(9715, 23654, 'credit mantri ', 'credit Relationship officer ', '2024-05-13', 17.00, '2025-01-07', 17.00, 'spenser plaza lower ground floor chennai ', '1', '0 years 7 months', ' Timing is the reason i have left ', 1, '2025-01-18 06:32:53', 0, NULL, 0, NULL, 1),
(9716, 23657, 'Deloitte ', 'Junior trafficker ', '2023-08-07', 19000.00, '2024-03-01', 18000.00, 'Chennai', '1', '0 years 6 months', ' Shift timings not flexible ', 1, '2025-01-18 06:36:03', 0, NULL, 0, NULL, 1),
(9717, 23663, 'Insuremile insurance company ', 'Telecaller ', '2021-12-16', 12000.00, '2025-01-07', 17000.00, 'Chennai ', '1', '3 years 0 months', ' Growth ', 1, '2025-01-18 09:09:54', 0, NULL, 0, NULL, 1),
(9718, 23665, 'Tjs solutions ', 'Financial Advisor ', '2024-01-24', 18000.00, '2024-11-30', 18000.00, 'Kr puram ', '1', '0 years 10 months', ' For higher growth and higher salary ', 1, '2025-01-20 01:02:13', 0, NULL, 0, NULL, 1),
(9719, 23668, 'DPD ZERO ', 'Customer support executive ', '2024-06-03', 42000.00, '2024-11-23', 38500.00, 'Koramangala ', '1', '0 years 5 months', ' ', 1, '2025-01-20 04:42:54', 0, NULL, 0, NULL, 1),
(9720, 23670, 'Solartis technology services Pvt Ltd ', 'Process associate ', '2022-04-19', 10000.00, '2023-07-07', 10000.00, 'Madurai ', '1', '1 years 2 months', ' Career growth ', 1, '2025-01-20 04:59:25', 0, NULL, 0, NULL, 1),
(9721, 23670, 'Genpact India private limited ', 'Process associate ', '2023-07-10', 13000.00, '2024-11-28', 13000.00, 'Madurai ', '1', '1 years 4 months', 'Career growth ', 1, '2025-01-20 05:00:20', 0, NULL, 0, NULL, 1),
(9722, 23673, 'EBIX CASH ', 'Customer service ', '2022-05-21', 11000.00, '2023-01-05', 12000.00, 'Chennai ', '1', '0 years 7 months', 'Studies', 1, '2025-01-20 05:38:53', 0, NULL, 0, NULL, 1),
(9723, 23679, 'I zone technology minnagam', '10 month', '2021-06-20', 15000.00, '2022-04-30', 15000.00, 'Chennai', '1', '0 years 10 months', ' ', 1, '2025-01-20 06:26:24', 0, NULL, 0, NULL, 1),
(9724, 23683, 'Hdb financial Service limited ', 'Che', '2023-06-19', 31.00, '2025-10-10', 1.00, 'Chennai', '1', '2 years 3 months', ' Peraonal', 1, '2025-01-20 07:35:48', 0, NULL, 0, NULL, 1),
(9725, 23683, 'Hdb financial Service limited ', 'Manali', '2023-06-19', 31.00, '2025-10-10', 1.00, 'Chennai', '1', '2 years 3 months', 'Personal ', 1, '2025-01-20 07:37:50', 0, NULL, 0, NULL, 1),
(9726, 23682, 'HDBFS ', '9-113, Vellala St, United India Nagar, Gopal Pilla', '2024-02-02', 31.00, '2024-10-10', 3.00, 'Chennai', '1', '0 years 8 months', ' ', 1, '2025-01-20 07:42:46', 0, NULL, 0, NULL, 1),
(9727, 23664, 'Airtel ', 'Team lead in sales', '2023-06-10', 23.00, '2024-06-19', 23.00, 'Chennai ', '1', '1 years 0 months', ' Contract base', 1, '2025-01-20 07:53:52', 0, NULL, 0, NULL, 1),
(9728, 23685, 'HDB financial services', 'Tellecalling', '2024-05-06', 16.00, '2024-10-09', 18.00, 'Thousand lights', '1', '0 years 5 months', 'Because of low salary and process', 1, '2025-01-20 07:56:45', 0, NULL, 0, NULL, 1),
(9729, 23686, 'Sutherland ', 'Consultant ', '2016-05-27', 13000.00, '2017-05-06', 18000.00, 'Velachery', '1', '0 years 11 months', 'To join for PG course ', 1, '2025-01-20 09:35:21', 0, NULL, 0, NULL, 1),
(9730, 23696, 'All set business solutions ', 'Customer support executive ', '2024-09-21', 10000.00, '2024-12-28', 8000.00, 'Greems road ', '1', '0 years 3 months', ' Salary issue ', 1, '2025-01-21 05:58:43', 0, NULL, 0, NULL, 1),
(9731, 23695, 'All set business solutions', 'Customer support executive ', '2024-09-21', 10000.00, '2024-12-28', 8000.00, 'Greems road', '1', '0 years 3 months', ' Salary issue', 1, '2025-01-21 05:58:59', 0, NULL, 0, NULL, 1),
(9732, 23698, 'SM Technologies', 'Production Engineer', '2024-08-01', 10000.00, '1970-01-01', 20000.00, 'No: T209, Ganesan Street, Pari Nagar, West Jafferk', '2', '0 years 5 months', ' Nil', 1, '2025-01-21 06:13:09', 1, '2025-01-21 06:16:16', 0, NULL, 0),
(9733, 23698, 'SM Technologies', 'Production Engineer', '2024-08-01', 10000.00, '2025-01-21', 20000.00, 'No: T209, Ganesan Street, Pari Nagar, West Jafferk', '1', '0 years 5 months', 'Nil', 1, '2025-01-21 06:16:02', 0, NULL, 0, NULL, 1),
(9734, 23703, 'HDFC LIFE Insurance ', 'Life Planner ', '2024-01-01', 30000.00, '2024-12-31', 30000.00, 'Trichy ', '1', '0 years 11 months', ' It is commission based salary work ', 1, '2025-01-21 06:34:27', 0, NULL, 0, NULL, 1),
(9735, 23715, 'Semi voice process ', 'Customer advisor ', '2024-06-19', 15000.00, '2024-12-18', 15000.00, 'Chennai ', '1', '0 years 5 months', ' Health issues ', 1, '2025-01-21 02:09:24', 0, NULL, 0, NULL, 1),
(9736, 23717, 'Omega healthcare ', 'Process executive AR ', '2024-06-18', 23000.00, '2024-11-22', 23000.00, 'Chennai', '1', '0 years 5 months', ' Health issues caused by night shift ', 1, '2025-01-22 04:56:14', 0, NULL, 0, NULL, 1),
(9737, 23718, 'Office', 'Temporary ', '2023-11-22', 15000.00, '1970-01-01', 16000.00, 'Thiruvallur ', '2', '1 years 2 months', ' ', 1, '2025-01-22 04:57:15', 0, NULL, 0, NULL, 1),
(9738, 23719, 'Amaraja tower', 'Store keeper', '2024-06-22', 14500.00, '2024-11-22', 14500.00, 'Trichy', '1', '0 years 5 months', ' Food and accommodation ', 1, '2025-01-22 05:42:38', 0, NULL, 0, NULL, 1),
(9739, 23723, 'nandi toyota', 'backend excutive', '2024-01-19', 19012024.00, '2025-01-22', 18000.00, 'bhommanahalli', '1', '1 years 0 months', ' Health issuse', 1, '2025-01-22 06:02:10', 0, NULL, 0, NULL, 1),
(9740, 23723, 'nandi toyota', 'backend excutive', '2024-01-19', 19012024.00, '2025-10-31', 18000.00, 'bhommanahalli', '1', '1 years 9 months', 'Health issues', 1, '2025-01-22 06:03:35', 0, NULL, 0, NULL, 1),
(9741, 23728, 'Rishi sharan pvt ltd', 'Madhavaram', '2024-05-01', 15000.00, '2024-11-02', 15000.00, 'Chennai ', '1', '0 years 6 months', ' ', 1, '2025-01-22 07:21:14', 0, NULL, 0, NULL, 1),
(9742, 23733, 'HC Intellect', 'AR Caller', '2024-08-26', 15000.00, '2024-12-31', 15000.00, 'Chennai', '1', '0 years 4 months', ' ', 1, '2025-01-22 12:23:35', 0, NULL, 0, NULL, 1),
(9743, 23734, 'AXIS BANK', 'Sales officer', '2023-10-01', 15000.00, '2024-02-10', 15000.00, 'Kilpauk', '1', '0 years 4 months', ' Health issue and field work', 1, '2025-01-22 12:46:19', 0, NULL, 0, NULL, 1),
(9744, 23734, 'Credit Mantri', 'Credit relationship officer', '2024-03-12', 21000.00, '2025-01-17', 25000.00, 'Thousand lights', '1', '0 years 10 months', 'Family emergency ', 1, '2025-01-22 12:47:59', 0, NULL, 0, NULL, 1),
(9745, 23743, 'Accenture ', 'Business Associate ', '2023-01-23', 2023.00, '2024-09-06', 200000.00, 'Chennai', '1', '1 years 7 months', ' ', 1, '2025-01-23 06:13:12', 0, NULL, 0, NULL, 1),
(9746, 23747, 'KFin Technologies Private Limited', 'Associate', '2023-09-11', 11674.00, '2025-01-08', 11936.00, 'Chennai', '1', '1 years 3 months', ' Looking for an better Opportunity to develop my educational and internship skill.Interested in technical domain, MIS executive. ', 1, '2025-01-23 06:47:13', 0, NULL, 0, NULL, 1),
(9747, 23751, 'CYGNUS SOLUTION ', 'Loan Recovery Department ', '2024-08-16', 13000.00, '2025-01-06', 16000.00, 'Kudlugate ', '1', '0 years 4 months', ' Personal issues ', 1, '2025-01-23 09:40:10', 0, NULL, 0, NULL, 1),
(9748, 23751, 'CYGNUS SOLUTION ', 'LOAN RECOVERY DEPT ', '2022-03-22', 14500.00, '2025-01-06', 18000.00, 'Kudlu gate', '1', '2 years 9 months', ' Personal issue ', 1, '2025-01-23 09:50:50', 0, NULL, 0, NULL, 1),
(9749, 23755, 'HDB FINANCIAL SERVICES ', 'Sales officer ', '2023-10-04', 10500.00, '2024-07-07', 10500.00, 'Kallakurichi', '1', '0 years 9 months', ' ', 1, '2025-01-23 01:34:04', 0, NULL, 0, NULL, 1),
(9750, 23755, 'HDB FINANCIAL SERVICES ', 'Sales officer ', '2023-10-04', 10500.00, '2024-07-07', 10500.00, 'Kallakurichi', '1', '0 years 9 months', 'Because I am not interested in field work', 1, '2025-01-23 01:47:40', 0, NULL, 0, NULL, 1),
(9751, 23757, 'Noqu tech solution', 'Corporate sales executive ', '2024-03-01', 30000.00, '2025-08-20', 30000.00, 'Chennai', '1', '1 years 5 months', ' Looking for better growth in career wise', 1, '2025-01-24 04:47:55', 0, NULL, 0, NULL, 1),
(9752, 23757, 'Gsquare realtors ', 'Referral marketing executive ', '2021-12-05', 25000.00, '2023-03-03', 25000.00, 'Chennai', '1', '1 years 2 months', 'Family reasons. Can explain that in person ', 1, '2025-01-24 04:51:53', 0, NULL, 0, NULL, 1),
(9753, 23754, 'NCSCM Anna university', 'Multitasking staff ', '2020-06-02', 17000.00, '1970-01-01', 19500.00, 'Guindy ', '2', '4 years 7 months', ' Project time period over so i relieving that job \n', 1, '2025-01-24 05:02:42', 0, NULL, 0, NULL, 1),
(9754, 23756, 'IonTach Academy', 'Telecalling executive ', '2022-07-04', 13000.00, '2023-08-31', 15000.00, 'Spencer plaza', '1', '1 years 1 months', ' Office location Changed \nSome health issues ', 1, '2025-01-24 06:21:38', 0, NULL, 0, NULL, 1),
(9755, 23763, 'Dr Agarwal eye hospital ', 'Care executive ', '2024-05-01', 21000.00, '2025-01-01', 21000.00, 'Egmore ', '1', '0 years 8 months', ' Branch transfer it\'s too long my location ', 1, '2025-01-24 07:59:26', 0, NULL, 0, NULL, 1),
(9756, 23764, 'Spr &co', 'Analyst ', '2023-09-29', 13000.00, '2024-11-25', 14000.00, 'Nungambakkam ', '1', '1 years 1 months', 'Less Salary and No esi no pf ', 1, '2025-01-24 09:27:41', 0, NULL, 0, NULL, 1),
(9757, 23766, 'hdfc bank', 'sales executive', '2023-07-17', 22000.00, '2024-12-18', 22000.00, 'chennai', '1', '1 years 5 months', ' ', 1, '2025-01-24 11:31:23', 0, NULL, 0, NULL, 1),
(9758, 23770, 'hdb finance ', 'sales ', '2024-06-07', 14000.00, '2024-09-24', 15000.00, 'chennai', '1', '0 years 3 months', ' ', 1, '2025-01-25 05:20:18', 0, NULL, 0, NULL, 1),
(9759, 23768, 'Halo Info Tech Pvt Ltd ', 'Senior Executive ', '2020-06-10', 15000.00, '2023-06-30', 18000.00, 'Gudiyatham ', '1', '3 years 0 months', ' ', 1, '2025-01-25 05:41:51', 0, NULL, 0, NULL, 1),
(9760, 23768, 'Futurz Staffing Solutions Pvt Ltd ', 'Relationship Executive ', '2023-09-23', 20000.00, '2024-10-05', 20000.00, 'Chennai ', '1', '1 years 0 months', 'Contract company ', 1, '2025-01-25 05:45:14', 0, NULL, 0, NULL, 1),
(9761, 23775, 'Kathir ', 'Sales officer ', '2024-09-03', 11000.00, '2025-02-01', 12000.00, 'Pooraka street ', '1', '0 years 4 months', 'Delay to salary and low \nOuter sales to product ', 1, '2025-01-27 04:19:54', 0, NULL, 0, NULL, 1),
(9762, 23802, 'Beena E Office Solutions', 'Marketing and Tally', '2024-07-22', 20000.00, '1970-01-01', 20000.00, 'Triplicane', '2', '0 years 6 months', ' I\'m searching for a better package and also to learn more knowledge', 1, '2025-01-27 06:14:33', 0, NULL, 0, NULL, 1),
(9763, 23804, 'Creditmantri ', 'Credit relationship officer ', '2023-10-03', 2023.00, '2024-12-02', 19.00, 'Thousand Lights ', '1', '1 years 1 months', 'Some family issues nd learn new process ', 1, '2025-01-27 06:21:31', 0, NULL, 0, NULL, 1),
(9764, 23803, 'Trayee business solution ', 'Renewal executive', '2022-10-03', 22000.00, '2025-01-18', 15000.00, 'pattinapakam', '1', '2 years 3 months', ' For my career growth', 1, '2025-01-27 06:25:18', 0, NULL, 0, NULL, 1),
(9765, 23808, 'Beena E Office Solutions', 'Tally and marketing', '2024-07-22', 20000.00, '1970-01-01', 20000.00, 'Triplicane Chennai', '2', '0 years 6 months', ' I\'m looking for a better package. And to learn more knowledge. ', 1, '2025-01-27 06:37:44', 0, NULL, 0, NULL, 1),
(9766, 23835, 'Pantech E Learning ', 'Sales and Marketing Executive ', '2022-08-24', 12000.00, '2024-12-31', 16000.00, 'Semmencheri', '1', '2 years 4 months', ' I\'m not ok with the salary for my family situation.', 1, '2025-01-28 06:18:52', 0, NULL, 0, NULL, 1),
(9767, 23839, 'World education center', 'Telecaller', '2024-02-06', 15000.00, '2024-12-10', 19000.00, 'Jayanagar 9th block', '1', '0 years 10 months', 'Not getting salary at time', 1, '2025-01-28 07:06:15', 0, NULL, 0, NULL, 1),
(9768, 23841, 'SVFX Financial Investment ', 'Team lead ', '2023-08-01', 25000.00, '2024-10-31', 25000.00, 'Chenn', '1', '1 years 2 months', ' The process has been shutdown ', 1, '2025-01-28 07:11:31', 0, NULL, 0, NULL, 1),
(9769, 23844, 'Desicrew private limited', 'Banking insurance backend verification ', '2021-11-19', 9000.00, '2023-07-31', 10000.00, 'Kolumangudi', '1', '1 years 8 months', ' Growth', 1, '2025-01-28 08:50:06', 0, NULL, 0, NULL, 1),
(9770, 23844, 'HDFC Bank ', 'Sales', '2023-11-19', 16000.00, '2024-09-30', 16000.00, 'Mayiladuthurai', '1', '0 years 10 months', 'Interest Telecaling ', 1, '2025-01-28 08:58:12', 0, NULL, 0, NULL, 1),
(9771, 23854, 'concentrix ', 'customer support ', '2022-05-24', 31062022.00, '2023-12-27', 19000.00, 'chennai', '1', '1 years 7 months', ' ', 1, '2025-01-29 05:53:51', 0, NULL, 0, NULL, 1),
(9772, 23858, 'Casagrand buliders ', 'Excutive ', '2024-03-13', 26276.00, '2024-12-10', 26276.00, 'Thiruvanmiyur ', '1', '0 years 8 months', ' Father health issues ', 1, '2025-01-29 07:01:59', 0, NULL, 0, NULL, 1),
(9773, 23865, 'Home credit finance pvt Ltd ', 'Sales executive ', '2019-09-07', 13000.00, '1970-01-01', 18000.00, 'Adyar chennai', '2', '5 years 4 months', ' Corona period closed the company for production issue ', 1, '2025-01-29 08:29:18', 0, NULL, 0, NULL, 1),
(9774, 23855, 'Sourcecorp solutions private limited ', 'Business development executive ', '2024-12-15', 15000.00, '2025-01-27', 15000.00, 'Kolathur ', '1', '0 years 1 months', ' Shifted house', 1, '2025-01-29 08:47:30', 0, NULL, 0, NULL, 1),
(9775, 23866, 'Imarque Solution Tnagar', 'Tele sales', '2018-09-17', 5.00, '2019-01-17', 12000.00, 'Tnagar', '1', '0 years 4 months', ' Process was shut down', 1, '2025-01-29 09:26:17', 0, NULL, 0, NULL, 1),
(9776, 23867, 'Creditmantri finance ', 'Credit relationship officer ', '2023-12-11', 23000.00, '2024-09-14', 26000.00, 'Thousands light', '1', '0 years 9 months', ' ', 1, '2025-01-29 09:29:36', 0, NULL, 0, NULL, 1),
(9777, 23868, 'Bajaj Finserv ', 'Sales officer ', '2024-05-16', 18000.00, '2025-01-17', 25000.00, 'Chennai ', '1', '0 years 8 months', ' It is contract based work that why ', 1, '2025-01-29 10:03:30', 1, '2025-01-29 10:04:06', 0, NULL, 1),
(9778, 23872, 'Promantis inc', 'US IT technical recruiter ', '2024-03-06', 20000.00, '2024-10-09', 20000.00, 'Chennai', '1', '0 years 7 months', ' Health issue ', 1, '2025-01-30 05:27:36', 0, NULL, 0, NULL, 1),
(9779, 23877, 'Yes', 'Telecaller', '2024-02-05', 14.00, '2024-12-06', 15.00, 'Chetpet', '1', '0 years 10 months', ' ', 1, '2025-01-30 06:10:14', 0, NULL, 0, NULL, 1),
(9780, 23877, 'Yes', 'Telecaller', '2024-02-05', 14.00, '2024-12-06', 15.00, 'Chetpet', '1', '0 years 10 months', ' ', 1, '2025-01-30 06:10:14', 0, NULL, 0, NULL, 1),
(9781, 23878, 'Om innovation', 'Tele sales ', '2024-02-13', 14.00, '2024-10-11', 15.00, 'Kilpuk', '1', '0 years 7 months', ' ', 1, '2025-01-30 06:16:21', 0, NULL, 0, NULL, 1),
(9782, 23884, 'Muthoot finance. Kfc .st John\'s hospital ', 'Maneger ', '2019-08-01', 21.00, '2025-12-23', 21.00, 'Bengaluru ', '1', '6 years 4 months', ' Salary ', 1, '2025-01-30 07:27:46', 0, NULL, 0, NULL, 1),
(9783, 23884, 'Muthoot finance.kfc .st John\'s hospital.GBS laptop', 'Customer care executive ', '2019-08-01', 21.00, '2025-12-23', 20.00, 'Bengaluru ', '2', '6 years 4 months', 'Salary ', 1, '2025-01-30 07:30:04', 0, NULL, 0, NULL, 1),
(9784, 23887, 'connect business solutions', 'telecaller', '2023-06-22', 15000.00, '2025-01-20', 19000.00, 'guindy', '1', '1 years 6 months', ' ', 1, '2025-01-30 07:30:34', 0, NULL, 0, NULL, 1),
(9785, 23886, 'FS insurance pvt lmt', 'Financial services executive ', '2025-01-30', 17.00, '1970-01-01', 17.00, 'Nandanam ', '2', '0 years 0 months', ' Health issue', 1, '2025-01-30 08:03:51', 0, NULL, 0, NULL, 1),
(9786, 23889, 'Tds Management pvt limited ', 'Tellecalling ', '2023-01-30', 16.00, '2024-05-10', 17.00, 'Dharmapuri ', '1', '1 years 3 months', ' ', 1, '2025-01-30 08:24:43', 0, NULL, 0, NULL, 1),
(9787, 23889, 'Sancy berhad ', 'Software developer ', '2022-05-10', 16.00, '2024-04-05', 17.00, 'Malasiya ', '1', '1 years 10 months', 'Project completed ', 1, '2025-01-30 08:26:35', 0, NULL, 0, NULL, 1),
(9788, 23895, 'icici', 'collection executive', '2024-04-15', 13000.00, '2024-11-25', 15000.00, 'kadalur', '1', '0 years 7 months', ' ', 1, '2025-01-31 05:15:47', 0, NULL, 0, NULL, 1),
(9789, 23896, 'Rakesh N', 'Ok', '2025-02-01', 25000.00, '2025-02-02', 18000.00, 'Chennai', '1', '0 years 0 months', 'Salary Did not increased ', 1, '2025-01-31 05:44:42', 0, NULL, 0, NULL, 1),
(9790, 23899, 'Just dial ', 'Telle marketing executive ', '2022-06-28', 18000.00, '2024-05-15', 19600.00, 'Little mount ', '1', '1 years 10 months', ' Salary hike', 1, '2025-01-31 06:23:15', 0, NULL, 0, NULL, 1),
(9791, 23900, '1 year', 'Relationship manager ', '2025-01-31', 15.00, '1970-01-01', 15.00, 'Nungambakkam ', '2', '0 years 0 months', 'Family problems ', 1, '2025-01-31 06:38:11', 0, NULL, 0, NULL, 1),
(9792, 23902, 'ashoke leyland under layam ', 'quality inspector', '2024-06-13', 14000.00, '2024-12-31', 14000.00, 'ennor', '1', '0 years 6 months', ' ', 1, '2025-01-31 06:48:25', 0, NULL, 0, NULL, 1),
(9793, 23904, 'Tata Consultancy services', 'Associate trainee', '2015-04-20', 13000.00, '2015-09-11', 18000.00, 'Thoraipakkam', '1', '0 years 4 months', ' Higher studies', 1, '2025-01-31 06:51:25', 0, NULL, 0, NULL, 1),
(9794, 23903, 'Shriram finance Pvt Ltd ', 'Tele caller and collection officer ', '2023-08-07', 18000.00, '2024-11-05', 18000.00, 'Tiruttani ', '1', '1 years 5 months', ' ', 1, '2025-01-31 06:52:00', 0, NULL, 0, NULL, 1),
(9795, 23905, 'HDB FINANCIAL SERVICES LIMITED ', 'Relationship officer', '2023-11-01', 12000.00, '2024-05-06', 13800.00, 'Chennai ', '1', '0 years 6 months', ' Due to My Health issues.', 1, '2025-01-31 06:58:13', 0, NULL, 0, NULL, 1),
(9796, 23908, 'State Bank of India ', 'Field executive and Tele caller ', '2023-02-04', 18000.00, '2024-11-20', 18000.00, 'Chennai ', '1', '1 years 9 months', ' ', 1, '2025-01-31 07:02:15', 0, NULL, 0, NULL, 1),
(9797, 23912, 'Shriram finance limited ', 'Re', '2023-08-18', 18000.00, '2024-12-15', 22000.00, 'Kallakuritchi dist ', '1', '1 years 3 months', ' Some personal reasons ', 1, '2025-01-31 10:14:38', 0, NULL, 0, NULL, 1),
(9798, 23914, 'pagar book', 'business development manager', '2022-01-05', 55000.00, '1970-01-01', 55000.00, 'chennai', '2', '3 years 0 months', ' ', 1, '2025-01-31 12:32:09', 0, NULL, 0, NULL, 1),
(9799, 23917, 'Yes bank', 'Credit analysis ', '2019-02-01', 17000.00, '2022-11-23', 1.00, 'Neap Museum road', '1', '3 years 9 months', 'Health issue', 1, '2025-02-01 05:23:00', 0, NULL, 0, NULL, 1),
(9800, 23921, 'BAJAJ FINSERV LTD', 'SALES EXECUTIVE ', '2023-06-30', 31.00, '2025-01-14', 25000.00, 'NUNGAMBAKKAM ', '1', '1 years 6 months', ' For career growth ', 1, '2025-02-01 06:10:41', 0, NULL, 0, NULL, 1),
(9801, 23923, 'yes bank', 'team leader', '2021-03-15', 20000.00, '2023-03-29', 20000.00, 'chennai', '1', '2 years 0 months', ' ', 1, '2025-02-01 06:47:29', 0, NULL, 0, NULL, 1),
(9802, 23924, 'Global health care', 'Payment posting', '2023-10-04', 13000.00, '2025-10-25', 23000.00, 'Velachery', '1', '2 years 0 months', 'Want a career change and also for a salary hike.', 1, '2025-02-01 07:03:47', 0, NULL, 0, NULL, 1),
(9803, 23931, 'Allset business solutions ', 'Customer support executive ', '2023-09-12', 21.00, '2025-01-05', 21.00, 'Thoughts light', '1', '1 years 3 months', ' Marriage reason\n', 1, '2025-02-01 09:31:33', 0, NULL, 0, NULL, 1),
(9804, 23932, 'Vatsyalyapuram seva sansthan ', 'Manager ', '2022-08-01', 22000.00, '2024-10-01', 22000.00, 'Jayanagar ', '1', '2 years 2 months', 'I got married ', 1, '2025-02-01 09:41:19', 0, NULL, 0, NULL, 1),
(9805, 23934, 'Teleperformance ', 'Customer support executive ', '2022-06-13', 15000.00, '2025-07-21', 18000.00, 'Ambattur ', '1', '3 years 1 months', ' ', 1, '2025-02-03 04:36:36', 0, NULL, 0, NULL, 1),
(9806, 23935, 'HDB finance services ', 'Collection ', '2023-05-05', 5.00, '2023-08-05', 18000.00, 'Thought lit', '1', '0 years 3 months', ' ', 1, '2025-02-03 05:09:00', 0, NULL, 0, NULL, 1),
(9807, 23939, 'Om inovation', 'Telecaller', '2024-02-16', 13.00, '2024-07-05', 14.00, 'Chetpet', '1', '0 years 4 months', ' ', 1, '2025-02-03 05:24:06', 0, NULL, 0, NULL, 1),
(9808, 23936, 'Southern Finserve private limited ', 'Sales coordinator ', '2023-04-05', 20000.00, '2025-04-01', 20000.00, 'T nagar chennai ', '1', '1 years 11 months', ' I need more salary that why relieving that company ', 1, '2025-02-03 05:27:33', 154, '2025-02-03 12:04:35', 0, NULL, 0),
(9809, 23936, 'Southern Finserve private limited ', 'Sales coordinator ', '2023-04-05', 20000.00, '1970-01-01', 20000.00, 'T nagar chennai ', '2', '1 years 9 months', 'I need more salary that why relieving that company ', 1, '2025-02-03 05:30:08', 0, NULL, 0, NULL, 1),
(9810, 23941, 'aristo pharma', 'mr', '2024-03-01', 18500.00, '2024-12-31', 21500.00, 't nagar', '1', '0 years 9 months', ' Due to person reasons', 1, '2025-02-03 05:37:46', 0, NULL, 0, NULL, 1),
(9811, 23774, 'Iprocess ( icici bank) ', 'Executive', '2024-07-04', 125000.00, '2025-01-21', 15000.00, 'Ambattur', '1', '0 years 6 months', ' Too long to travel', 1, '2025-02-03 05:42:21', 0, NULL, 0, NULL, 1),
(9812, 23951, 'Vee technology', 'Ar caller', '2024-09-18', 20000.00, '2025-01-31', 18000.00, 'Thoraipakkam', '1', '0 years 4 months', ' Health issue', 1, '2025-02-04 05:35:30', 0, NULL, 0, NULL, 1),
(9813, 23741, 'Airtal dth', 'Call service ', '2023-10-20', 7.00, '2024-05-09', 15000.00, 'Chetpat', '1', '0 years 6 months', 'Health issue', 1, '2025-02-04 05:37:42', 0, NULL, 0, NULL, 1),
(9814, 23948, '?????', '?????? ???????', '2020-03-03', 25000.00, '2021-02-20', 25000.00, '?????????', '1', '0 years 11 months', ' ?????????? ?????', 1, '2025-02-04 05:46:52', 0, NULL, 0, NULL, 1),
(9815, 23955, 'Star health insurance ', 'Officer ', '2024-01-02', 15000.00, '2025-01-03', 18500.00, 'Chennai', '1', '1 years 0 months', ' Looking for new exposure ', 1, '2025-02-04 06:05:33', 0, NULL, 0, NULL, 1),
(9816, 23956, 'egniol group of company', 'business devlepment excutive', '2022-06-01', 18000.00, '2023-11-15', 21000.00, 'little mount', '1', '1 years 5 months', ' ', 1, '2025-02-04 06:29:31', 0, NULL, 0, NULL, 1),
(9817, 23956, 'shiram life insurance', 'senior sales excutive', '2013-03-03', 21000.00, '2024-12-28', 21000.00, 'gmore', '1', '11 years 9 months', 'Carrier', 1, '2025-02-04 06:31:57', 0, NULL, 0, NULL, 1),
(9818, 23964, 'Eureka Outsourcing Solutions Pvt Ltd ', '       Customer Care Associate – Data & Document M', '2023-11-14', 10000.00, '2024-12-01', 10000.00, 'chennai', '1', '1 years 0 months', 'personal ', 1, '2025-02-04 03:40:04', 1, '2025-02-04 03:58:09', 0, NULL, 1),
(9819, 23964, 'Apollo Tyres  Private Limited', 'junior executive', '2023-10-01', 14000.00, '2024-10-30', 18000.00, 'sri city tada', '1', '1 years 0 months', 'personal', 1, '2025-02-04 03:57:34', 1, '2025-02-04 03:57:53', 0, NULL, 1),
(9820, 23967, 'Debt Care ', 'Paytm collection ', '2023-01-01', 13500.00, '2023-11-10', 15000.00, 'Virgubakkam', '1', '0 years 10 months', ' Perfect reliving try to better opportunity ', 1, '2025-02-05 06:55:31', 0, NULL, 0, NULL, 1),
(9821, 23969, 'HDFC Bank ltd', 'Sales Officer', '2023-09-25', 275000.00, '2024-07-05', 22000.00, 'Jayanagar', '1', '0 years 9 months', 'I have to stay on my native for few months Because of some family issue so I resigned job went native recently I come back from my native so currently i am looking for suitable job. ', 1, '2025-02-05 09:13:25', 0, NULL, 0, NULL, 1),
(9822, 23971, 'Samsung Electronics ', 'SGC', '2024-07-01', 40000.00, '2025-01-01', 40000.00, 'Washermenpet ', '1', '0 years 6 months', ' ', 1, '2025-02-05 09:21:44', 0, NULL, 0, NULL, 1),
(9823, 23975, 'policy bazaar .com', 'Financial advisor', '2023-11-02', 27000.00, '2024-12-03', 30000.00, 'domlur', '1', '1 years 1 months', ' MEDICAL ISSUE ', 1, '2025-02-05 01:11:48', 0, NULL, 0, NULL, 1),
(9824, 23980, 'Vizza insurance broking services ', 'Telecaler', '2023-12-20', 14000.00, '2024-12-07', 20000.00, 'Koyambedu', '1', '0 years 11 months', ' Office location was changed ', 1, '2025-02-06 04:32:37', 0, NULL, 0, NULL, 1),
(9825, 23982, 'Sutherland global service pvt ', 'Customer service associate ', '2023-08-29', 19000.00, '2024-08-29', 19000.00, 'Chennai', '1', '1 years 0 months', 'I want to improve my work experience and gaining some knowledge ', 1, '2025-02-06 04:45:29', 0, NULL, 0, NULL, 1),
(9826, 23989, 'Hdb financial service ', 'Senior sales officer ', '2022-08-02', 2022.00, '2024-12-22', 20000.00, 'Chennai', '1', '2 years 4 months', ' Salary', 1, '2025-02-06 05:39:14', 0, NULL, 0, NULL, 1),
(9827, 23985, 'sree krishna agency', 'telecaller', '2024-06-05', 13000.00, '2024-09-30', 15000.00, 'teynampet', '1', '0 years 3 months', ' Target', 1, '2025-02-06 05:39:38', 0, NULL, 0, NULL, 1),
(9828, 23991, 'Lepa finance ', 'Relationship manager ', '2022-03-17', 28000.00, '2024-04-04', 35000.00, 'Bangalore', '1', '2 years 0 months', ' Personal reasons ', 1, '2025-02-06 05:47:41', 0, NULL, 0, NULL, 1),
(9829, 23992, 'Muthoot', 'Telecalling', '2024-09-08', 18000.00, '2025-01-25', 18000.00, 'Thanjavur ', '1', '0 years 4 months', ' Work', 1, '2025-02-06 06:03:37', 0, NULL, 0, NULL, 1),
(9830, 23994, 'Kotak Mahindra bank ', 'Assistant Manager ', '2024-11-14', 29900.00, '2025-02-10', 400000.00, 'Bangalore', '1', '0 years 2 months', ' The branches they assigned me is too far from place where I stay and also not given complete training  of products properly', 1, '2025-02-06 07:45:37', 0, NULL, 0, NULL, 1),
(9831, 23994, 'Hdfc bank limited ', 'Junior Relationship Manager ', '2022-12-19', 18000.00, '2024-11-13', 220000.00, 'Bangalore ', '1', '1 years 10 months', 'For growth of my work.', 1, '2025-02-06 07:47:22', 0, NULL, 0, NULL, 1),
(9832, 23994, 'Axis Bank limited', 'Junior sales officer ', '2022-04-20', 15000.00, '2022-11-07', 220000.00, 'Bangalore', '1', '0 years 6 months', 'Offrole employee and had a opportunity  in hdfc bank for onrole employee  so I hv changed', 1, '2025-02-06 07:49:10', 0, NULL, 0, NULL, 1),
(9833, 24002, 'Matrix business ', 'Executive ', '2022-05-20', 12000.00, '2024-06-15', 12000.00, 'T. Nagar ', '1', '2 years 0 months', ' -', 1, '2025-02-07 04:21:41', 0, NULL, 0, NULL, 1),
(9834, 24002, 'Global billing partner ', ' inter', '2024-06-20', 18000.00, '2025-02-04', 18000.00, 'Vepery ', '1', '0 years 7 months', '_', 1, '2025-02-07 04:24:09', 0, NULL, 0, NULL, 1),
(9835, 24005, 'ALL SET BUSINESS SOLUTION ', 'CUSTOMER CARE EXECUTIVE ', '2023-11-10', 14000.00, '2024-11-23', 14000.00, 'CHENNAI', '1', '1 years 0 months', ' PERSONAL REASON ', 1, '2025-02-07 05:19:04', 0, NULL, 0, NULL, 1),
(9836, 24030, 'HDB financial services Ltd ', 'Sales executive ', '2020-03-04', 13500.00, '2023-01-10', 18500.00, 'Chennai ', '1', '2 years 10 months', ' Financial growth ', 1, '2025-02-07 11:08:37', 0, NULL, 0, NULL, 1),
(9837, 24032, 'Jeykay Associaties ', 'Audit Clerk ', '2024-06-01', 9000.00, '2025-01-31', 9000.00, 'Thanjavur ', '1', '0 years 7 months', ' Looking for opportunities for professional growth', 1, '2025-02-08 03:56:06', 0, NULL, 0, NULL, 1),
(9838, 24039, 'Transflow Pumps and Technologies ', 'Marketing and Sales Excutive ', '2024-03-01', 18000.00, '2025-03-01', 18000.00, 'Chennai ', '2', '1 years 0 months', ' Filed Sales not Comfortable ', 1, '2025-02-08 07:40:34', 0, NULL, 0, NULL, 1),
(9839, 24043, 'bajaj finance', 'dma', '2024-07-15', 1.00, '2025-01-31', 17500.00, 'chennau', '1', '0 years 6 months', ' ', 1, '2025-02-10 05:37:20', 0, NULL, 0, NULL, 1),
(9840, 24042, 'Vizza Insurance broking', 'Sales', '2024-05-30', 14000.00, '2024-12-08', 14000.00, 'Chennai', '1', '0 years 6 months', ' Salary issue', 1, '2025-02-10 05:40:41', 0, NULL, 0, NULL, 1),
(9841, 24044, 'Vizza Insurance ', 'Tele sales ', '2024-09-02', 14000.00, '2025-02-07', 14000.00, 'Chennai', '1', '0 years 5 months', 'Distance ', 1, '2025-02-10 05:53:32', 0, NULL, 0, NULL, 1),
(9842, 24048, 'xpresshift logistic', 'chennai', '2022-08-10', 15000.00, '2024-06-25', 225000.00, 'choolai', '1', '1 years 10 months', ' I wanted  relieve to upgrade myself and salary', 1, '2025-02-10 06:42:07', 0, NULL, 0, NULL, 1),
(9843, 24051, 'Electric showroom ', 'No', '2025-08-13', 16000.00, '1970-01-01', 16000.00, 'Kadur', '2', '0 years 6 months', 'Time too late ', 1, '2025-02-10 07:30:37', 0, NULL, 0, NULL, 1),
(9844, 24053, 'Kasvahurbs ', 'Sales ', '2024-03-10', 16000.00, '2024-06-10', 16000.00, 'Marathahalli ', '1', '0 years 3 months', ' Salary reasons', 1, '2025-02-10 08:28:38', 0, NULL, 0, NULL, 1),
(9845, 24052, 'Capinex money mark private limited ', 'Sales executive ', '2024-11-01', 15000.00, '2025-01-10', 15000.00, 'Bangalore ', '1', '0 years 2 months', ' Salary reasons ', 1, '2025-02-10 09:16:57', 0, NULL, 0, NULL, 1),
(9846, 24058, 'Restaurant ', 'Assistant manager ', '2021-02-11', 2021.00, '2024-12-20', 22000.00, 'Purasaiwalkam', '1', '3 years 10 months', ' Daily rotational shift and night shift ', 1, '2025-02-11 06:20:45', 0, NULL, 0, NULL, 1),
(9847, 24057, 'Team Lease (Bajaj Finserv)', 'Sales Officer', '2022-11-07', 31.00, '2024-11-05', 17500.00, 'Chennai', '1', '1 years 11 months', ' To Upgrade Profile', 1, '2025-02-11 06:21:39', 0, NULL, 0, NULL, 1),
(9848, 24062, 'Tata Motors Car dealerships', 'Customer Advisor', '2020-12-07', 13000.00, '2022-07-31', 17000.00, 'Salem', '1', '1 years 7 months', ' Health issue', 1, '2025-02-11 07:02:43', 0, NULL, 0, NULL, 1),
(9849, 24062, 'Caspian management service LLP', 'Ezy color assist ', '2022-08-01', 21000.00, '2024-09-16', 25000.00, 'Salem', '1', '2 years 1 months', 'Family situation and My health issues', 1, '2025-02-11 07:05:27', 0, NULL, 0, NULL, 1),
(9850, 24069, 'Imarque Solution Pvt Ltd ', 'Customer support executive ', '2024-06-03', 15000.00, '2025-02-13', 15000.00, 'Teynapet ', '1', '0 years 8 months', 'Salary hick', 1, '2025-02-11 11:46:23', 0, NULL, 0, NULL, 1),
(9851, 24068, 'I marquee solution ', 'Customer care executive ', '2024-08-01', 15000.00, '2025-02-10', 15000.00, 'Teynampet', '1', '0 years 6 months', ' Salary ', 1, '2025-02-12 04:10:35', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9852, 24074, 'vcare hair and skin clinic', 'telecalling', '2025-01-13', 17000.00, '2025-02-06', 17000.00, 'ambathur', '1', '0 years 0 months', ' They did not Provide Incentive Properly that only i will relive the company ', 1, '2025-02-12 05:35:41', 0, NULL, 0, NULL, 1),
(9853, 24074, 'cameo corporate service limited company ', 'telecaller', '2024-09-18', 17000.00, '2024-11-10', 17000.00, 'mount road', '1', '0 years 1 months', 'The shift time is so long for me that only i will relive the company ', 1, '2025-02-12 05:38:57', 0, NULL, 0, NULL, 1),
(9854, 24047, 'I marque solution ', 'Tele caller ', '2024-03-12', 15000.00, '2024-07-27', 15000.00, 'Pondy bazzer', '1', '0 years 4 months', ' Met with an accident ', 1, '2025-02-12 05:40:26', 0, NULL, 0, NULL, 1),
(9855, 24084, 'Bankbazaar.com', 'Senior customer relationship officer grade2 ', '2022-03-21', 15000.00, '2024-09-30', 21000.00, 'Ambattur', '1', '2 years 6 months', ' Need career growth and salary hike', 1, '2025-02-12 09:05:26', 0, NULL, 0, NULL, 1),
(9856, 24085, 'Rupeek gold loan private limited ', 'Relationship manager ', '2019-07-12', 18000.00, '2025-02-28', 31000.00, 'Jayadeva ', '1', '5 years 7 months', ' Due to the company le off', 1, '2025-02-12 09:55:50', 0, NULL, 0, NULL, 1),
(9857, 24091, 'Airtel', 'Customer relationship officer ', '2023-10-30', 16000.00, '2025-01-20', 17000.00, 'Ayanavaram ', '1', '1 years 2 months', ' They changed store ayanavaram to pattinapakkam.distance duration  and time so I relieved', 1, '2025-02-13 05:54:46', 0, NULL, 0, NULL, 1),
(9858, 24098, 'Bankbazaar.com', 'Senior Customer Relationship officer-II ', '2023-01-05', 15000.00, '2024-08-01', 24000.00, 'Chennai ', '1', '1 years 6 months', ' ', 1, '2025-02-13 06:40:21', 0, NULL, 0, NULL, 1),
(9859, 24100, 'Allsec technologies Pvt limited ', 'Customer care executive ', '2023-05-19', 5.00, '2025-01-27', 16500.00, 'Velachery ', '1', '1 years 8 months', ' ', 1, '2025-02-13 06:50:07', 0, NULL, 0, NULL, 1),
(9860, 24107, 'Vithraag coprate office', 'Billing', '2024-10-19', 7.00, '2025-02-10', 14000.00, 'Broadway', '1', '0 years 3 months', ' ', 1, '2025-02-14 05:11:16', 0, NULL, 0, NULL, 1),
(9861, 24111, 'R. Kalaiyarasi ', 'HK supervisor ', '2024-11-19', 18000.00, '2025-02-07', 20000.00, 'Chennai ', '1', '0 years 2 months', ' Now iam looking forward to using my knowledge and enhancing skills in a reputed company ', 1, '2025-02-14 05:52:29', 0, NULL, 0, NULL, 1),
(9862, 24110, 'Schwing stetter india pvt Ltd', 'Customer support executive', '2023-01-01', 20000.00, '2025-01-20', 24000.00, 'Irungattukottai', '1', '2 years 0 months', ' Long distance', 1, '2025-02-14 05:54:46', 0, NULL, 0, NULL, 1),
(9863, 24109, 'Lucas Tvs Pvt. Ltd ', 'Production', '2023-07-03', 16000.00, '2024-12-31', 16000.00, 'chennai', '1', '1 years 5 months', 'Heavy Production Work', 153, '2025-02-14 11:25:35', 0, NULL, 0, NULL, 1),
(9864, 24113, 'Allsett business solution', 'Telecaller', '2024-09-20', 15000.00, '2025-02-07', 14000.00, 'Chennai', '1', '0 years 4 months', ' Medical issue', 1, '2025-02-14 06:06:31', 0, NULL, 0, NULL, 1),
(9865, 24112, 'Jio ', 'sales ', '2023-01-01', 15000.00, '2025-02-13', 15000.00, 'ambattur ', '1', '2 years 1 months', ' Salary issue', 1, '2025-02-14 06:07:07', 0, NULL, 0, NULL, 1),
(9866, 24114, 'allset business solution', 'bpo', '2024-09-20', 12000.00, '1970-01-01', 14000.00, 'chennai', '2', '0 years 4 months', ' ', 1, '2025-02-14 06:09:37', 0, NULL, 0, NULL, 1),
(9867, 24114, 'maruti suzuki', 'bpo', '2023-09-25', 11000.00, '1970-01-01', 13.50, 'coimabatore', '2', '1 years 4 months', 'Health isues', 1, '2025-02-14 06:11:05', 0, NULL, 0, NULL, 1),
(9868, 24106, 'Telecalling ', 'Telecalling ', '2024-10-02', 18000.00, '2025-01-30', 16500.00, 'Cit nagar ', '1', '0 years 3 months', 'Reason for Salary delay ', 1, '2025-02-14 06:42:03', 0, NULL, 0, NULL, 1),
(9869, 24116, 'People interactive ', 'Telesales executive ', '2024-03-20', 28000.00, '2024-12-02', 18000.00, 'Chennai ', '1', '0 years 8 months', ' Due to my health issue ', 1, '2025-02-15 02:54:17', 0, NULL, 0, NULL, 1),
(9870, 24117, 'Justdial Pvt Ltd ', 'Telesales ', '2024-02-28', 15000.00, '2025-09-09', 18000.00, 'Little Mount ', '1', '1 years 6 months', ' Salary not increased, incentive issues', 1, '2025-02-15 05:15:45', 0, NULL, 0, NULL, 1),
(9871, 24118, 'Sona comstar BLW precision forgings limited ', 'Starter motor testing ', '2023-07-03', 15000.00, '2024-07-31', 15000.00, 'Chennai ', '1', '1 years 0 months', ' Apprentice trainee', 1, '2025-02-15 05:23:52', 0, NULL, 0, NULL, 1),
(9872, 24119, 'Numeric power system ', 'Revenue executive ', '2023-07-03', 15000.00, '2024-12-04', 15000.00, 'Vadapalani ', '1', '1 years 5 months', ' ', 1, '2025-02-15 05:27:30', 0, NULL, 0, NULL, 1),
(9873, 24122, 'Dvara Kshetriya Gramin Financial Services Private ', 'Wealth manager ', '2024-05-17', 17500.00, '2025-01-23', 16000.00, 'Ambattur', '1', '0 years 8 months', ' Not interested to work with that domain.', 1, '2025-02-15 06:35:29', 0, NULL, 0, NULL, 1),
(9874, 24125, 'Bharati airtel pvt ltd ', 'Installation engineer ', '2022-02-08', 22500.00, '1970-01-01', 18000.00, 'Chennai ', '2', '3 years 0 months', ' Fulltime field worh', 1, '2025-02-15 06:36:41', 0, NULL, 0, NULL, 1),
(9875, 24128, 'Cafs', 'Senior mis', '2018-01-15', 16000.00, '2023-06-10', 23000.00, 'Chennai', '1', '5 years 4 months', ' Personal issue', 1, '2025-02-15 03:01:17', 0, NULL, 0, NULL, 1),
(9876, 24136, 'Mamtha hr', 'Chennai', '2025-02-17', 16000.00, '2025-02-18', 12000.00, 'Spencer plaza ', '1', '0 years 0 months', ' Work as intern', 1, '2025-02-17 05:44:01', 0, NULL, 0, NULL, 1),
(9877, 24145, 'Focus Edumatics ', 'Online tutor ', '2022-12-02', 17000.00, '2023-05-04', 17000.00, 'Chennai', '1', '0 years 5 months', 'Company Breach got closed in Chennai ', 1, '2025-02-17 07:24:29', 0, NULL, 0, NULL, 1),
(9878, 24146, 'Motilal Oswal ', 'Sales executive ', '2024-10-01', 15000.00, '2024-12-31', 15000.00, 'Chennai', '1', '0 years 2 months', ' ', 1, '2025-02-17 07:49:17', 0, NULL, 0, NULL, 1),
(9879, 24147, 'CORONIS ajuba', 'Junior associate ', '2023-05-17', 20000.00, '2025-02-04', 27000.00, 'Chennai', '1', '1 years 8 months', ' ', 1, '2025-02-17 08:01:39', 0, NULL, 0, NULL, 1),
(9880, 24148, 'Karishma', 'Asix bank', '2022-02-22', 22000.00, '2024-01-17', 20000.00, 'Chennai ', '1', '1 years 10 months', ' ', 1, '2025-02-17 09:27:24', 0, NULL, 0, NULL, 1),
(9881, 24151, 'Khata book', 'CRO', '2024-04-08', 20000.00, '2025-01-10', 23000.00, 'Bangalore', '1', '0 years 9 months', 'Family issues', 1, '2025-02-17 09:49:30', 0, NULL, 0, NULL, 1),
(9882, 24152, 'HCL TECHNOLOGY', 'HELP DESK admin Officer', '2024-06-11', 13000.00, '2025-09-21', 20000.00, 'Sholinganallur', '1', '1 years 3 months', ' Travel Distance', 1, '2025-02-17 09:54:13', 0, NULL, 0, NULL, 1),
(9883, 24131, 'Axis Bank collection team ', 'Senior tellicaller ', '2021-06-15', 9.00, '2024-03-11', 20000.00, 'Chennai ', '1', '2 years 8 months', '  Agency close ', 1, '2025-02-17 11:45:07', 0, NULL, 0, NULL, 1),
(9884, 24161, 'Athena bpo company ', 'Telecaller', '2022-01-05', 15000.00, '2023-01-07', 15000.00, 'Banglore ', '1', '1 years 0 months', ' Migrating to chennai ', 1, '2025-02-18 05:39:18', 0, NULL, 0, NULL, 1),
(9885, 24161, 'Orocorp technologies pvt limited ', 'Telecaller ', '2023-07-07', 19000.00, '2024-07-07', 19000.00, 'Chennai', '1', '1 years 0 months', 'N/A', 1, '2025-02-18 05:42:02', 0, NULL, 0, NULL, 1),
(9886, 24127, 'Fint solution Pvt Ltd ', 'HDFC credit card sale excutive ', '2023-06-20', 14000.00, '2024-04-05', 16000.00, 'Coimbatore ', '1', '0 years 9 months', ' Some family issues ', 1, '2025-02-18 05:54:01', 0, NULL, 0, NULL, 1),
(9887, 24162, 'Fastrack call taxi', 'Customer care executive ', '2024-01-20', 1.00, '2024-11-19', 20000.00, 'Kodambakkam', '1', '0 years 9 months', ' Have some health issues ', 1, '2025-02-18 06:00:41', 0, NULL, 0, NULL, 1),
(9888, 24168, 'NINESTARS INFORMATION TECHNOLOGIES PRIVATE LIMITED', 'Junior associate ', '2024-03-01', 12000.00, '1970-01-01', 13000.00, 'Chennai ', '2', '0 years 11 months', 'Some medical problem', 1, '2025-02-18 07:27:32', 0, NULL, 0, NULL, 1),
(9889, 24184, 'IDL foundation', 'Business Development executive', '2024-09-23', 17000.00, '2025-02-10', 17000.00, 'HSR Layout', '1', '0 years 4 months', ' ', 1, '2025-02-19 06:36:31', 0, NULL, 0, NULL, 1),
(9890, 24185, 'Ohealer health care ', 'Health Assistant', '2020-09-23', 10.00, '1970-01-01', 32.00, 'Bannerghatta main road ', '2', '4 years 4 months', ' There was a lay off from the company', 1, '2025-02-19 06:46:03', 0, NULL, 0, NULL, 1),
(9891, 24188, 'CAMS ', 'Senior operation executive ', '2023-04-17', 300000.00, '2024-09-23', 350000.00, 'Anna Salai ', '1', '1 years 5 months', ' Personal issue ', 1, '2025-02-19 07:23:24', 0, NULL, 0, NULL, 1),
(9892, 24188, 'Go colors India pvt Ltd ', 'Online executive ', '2021-10-01', 250000.00, '2023-03-31', 275000.00, 'Chennai ', '1', '1 years 5 months', 'Courier growth ', 1, '2025-02-19 07:28:33', 0, NULL, 0, NULL, 1),
(9893, 24191, 'Om invation ', 'Customer support ', '2024-04-01', 13000.00, '2025-01-30', 13000.00, 'Chennai ', '1', '0 years 9 months', ' Office close', 1, '2025-02-19 11:12:11', 0, NULL, 0, NULL, 1),
(9894, 24196, 'shriram finance ltd', 'business executive', '2023-09-04', 17000.00, '2025-02-09', 22000.00, 'chennai', '1', '1 years 5 months', 'i will to  Changing my career for learning skills accepting new challenges for my career growth', 1, '2025-02-20 05:37:15', 0, NULL, 0, NULL, 1),
(9895, 24201, 'Club Mahindra Holidays and resort ', 'Telesales ', '2024-09-16', 26000.00, '2024-12-31', 25000.00, 'Chennai ', '1', '0 years 3 months', ' Office transfer ', 1, '2025-02-20 05:53:17', 0, NULL, 0, NULL, 1),
(9896, 24201, 'Club Mahindra Holiday resort ', 'Telesales ', '2024-09-16', 25000.00, '1970-01-01', 25000.00, 'Chennai ', '2', '0 years 5 months', ' Office Transfer ', 1, '2025-02-20 05:56:07', 0, NULL, 0, NULL, 1),
(9897, 24203, 'Kosuke Technologies private limited', 'Software Tester', '2024-07-08', 16000.00, '2025-01-31', 16000.00, 'Kundrathur', '1', '0 years 6 months', ' Company will close ', 1, '2025-02-20 06:14:18', 0, NULL, 0, NULL, 1),
(9898, 24203, 'DropTaxi', 'Junior executive', '2023-09-04', 13000.00, '2024-03-10', 13000.00, 'Chromepet ', '1', '0 years 6 months', 'Customer support process will close', 1, '2025-02-20 06:15:44', 0, NULL, 0, NULL, 1),
(9899, 24208, 'Essencea Infoserv', 'cUSTOMER CARE EXECUTIVE', '2020-09-05', 13000.00, '2021-12-20', 13000.00, 'WFH', '1', '1 years 3 months', 'sON HEALTH ISSUE', 154, '2025-02-20 12:45:43', 0, NULL, 0, NULL, 1),
(9900, 24208, 'wEBSPIRE sOLUTIONS', 'Data Entr Executive', '2024-03-01', 17000.00, '2024-11-30', 17000.00, 'Villupuram', '1', '0 years 9 months', 'Relocated from villupuram', 154, '2025-02-20 12:47:17', 0, NULL, 0, NULL, 1),
(9901, 24211, 'DWM insurance consultancy ', 'Telecaller ', '2024-09-01', 13000.00, '2025-01-01', 13000.00, 'Ashok pillar ', '1', '0 years 4 months', ' Insensitives problems and salary issue ', 1, '2025-02-20 09:31:59', 0, NULL, 0, NULL, 1),
(9902, 24212, 'Thinksynk ,edr ', 'Chrompet ', '2022-06-17', 15.00, '2023-07-31', 18.00, 'Guindy', '1', '1 years 1 months', ' Some other reason', 1, '2025-02-20 10:16:17', 0, NULL, 0, NULL, 1),
(9903, 24214, 'Tele performance ', 'Tele caller ', '2021-02-20', 15000.00, '2024-02-20', 15000.00, 'Ampattur ', '1', '3 years 0 months', ' Project dropped ', 1, '2025-02-20 11:59:00', 0, NULL, 0, NULL, 1),
(9904, 24213, 'Tele performance ', 'Telecaller', '2023-08-01', 15000.00, '2024-06-08', 15000.00, 'Ambattur ', '1', '0 years 10 months', ' Project dropped ', 1, '2025-02-20 12:06:55', 0, NULL, 0, NULL, 1),
(9905, 8614, 'Sutherland ', 'International semi voice process ', '2021-02-20', 15000.00, '2022-03-01', 15000.00, 'Chennai', '1', '1 years 0 months', ' Contract ', 1, '2025-02-20 01:50:47', 0, NULL, 0, NULL, 1),
(9906, 8614, 'Tele performance ', 'Voice process ', '2018-06-01', 10000.00, '2019-06-01', 15000.00, 'Chennai', '1', '1 years 0 months', 'Project was closed', 1, '2025-02-20 01:52:44', 0, NULL, 0, NULL, 1),
(9907, 24215, 'AIRPORT commission of customs ', 'Process Associate ', '2022-12-22', 15000.00, '2024-12-31', 15000.00, 'Menambakkam ', '1', '2 years 0 months', ' ', 1, '2025-02-21 05:08:29', 0, NULL, 0, NULL, 1),
(9908, 24215, 'Aagna Global solutions pvt Ltd ', 'Process Associate ', '2018-10-15', 8000.00, '2020-11-30', 10000.00, 'Porur', '1', '2 years 1 months', 'Salary expectation ', 1, '2025-02-21 05:12:02', 0, NULL, 0, NULL, 1),
(9909, 24219, 'Shriram finance Ltd ', 'Marketing executive ', '2024-01-02', 18500.00, '2025-01-28', 18500.00, 'Gummidipundi ', '1', '1 years 0 months', ' Personal issue ', 1, '2025-02-21 06:37:17', 0, NULL, 0, NULL, 1),
(9910, 24222, 'Fs Broking insurance', 'Financial Service executive', '2024-04-02', 14000.00, '2025-02-19', 14000.00, 'Nanadanam', '1', '0 years 10 months', 'Salary ', 1, '2025-02-21 07:25:33', 0, NULL, 0, NULL, 1),
(9911, 24227, 'Freedom app', 'Business Development executive ', '2023-07-05', 24000.00, '2024-12-24', 24000.00, 'Bangalore ', '1', '1 years 5 months', ' Location change ', 1, '2025-02-21 08:08:31', 0, NULL, 0, NULL, 1),
(9912, 24231, 'IndusInd Bank ltd', 'Customer support executive ', '2023-12-19', 20000.00, '2024-10-20', 20000.00, 'Karappakam chennai', '1', '1 years 2 months', ' ', 1, '2025-02-21 11:06:59', 0, NULL, 0, NULL, 1),
(9913, 24233, 'Aura bpo services ', 'Payment posting', '2024-02-01', 2024.00, '1970-01-01', 15500.00, 'Chennai', '2', '1 years 0 months', ' For career growth and learn new things', 1, '2025-02-21 02:07:27', 0, NULL, 0, NULL, 1),
(9914, 24237, 'SBI CSP', 'SUB KO', '2024-11-04', 20000.00, '2025-02-19', 20000.00, 'Adirampattinam, Thanjavur ', '1', '0 years 3 months', ' They didn\'t gave any offer letter and Office I\'d card and Payslips.I feel insecured about this job ', 1, '2025-02-22 03:03:02', 0, NULL, 0, NULL, 1),
(9915, 24238, 'CSC COMPUTER EDUCATION', 'Trainer & Excuter', '2023-08-06', 15000.00, '2024-10-11', 18000.00, 'Pattukkottai', '1', '1 years 2 months', ' Career growth\n Improving communication skills\n ', 1, '2025-02-22 04:15:31', 0, NULL, 0, NULL, 1),
(9916, 24239, 'Abi Estate Pvt Ltd', 'Customer relationship officer', '2024-05-04', 26000.00, '2025-01-24', 26000.00, 'Teynampet', '1', '0 years 8 months', ' Process has got completed', 1, '2025-02-22 04:32:23', 0, NULL, 0, NULL, 1),
(9917, 24244, 'Team lease', 'Team leader ', '2023-03-12', 28000.00, '2025-02-07', 28000.00, 'Chennai', '1', '1 years 10 months', ' ', 1, '2025-02-22 07:23:56', 0, NULL, 0, NULL, 1),
(9918, 24254, 'PAISABAZAAR MARKETING AND CONSULTANCY ', 'SALES EXECUTIVE ', '2023-01-23', 23.00, '2025-01-10', 25000.00, 'CHENNAI', '1', '1 years 11 months', ' Long distance ', 1, '2025-02-24 05:20:43', 0, NULL, 0, NULL, 1),
(9919, 24252, 'Tele caller ', 'Sales Executive Officer ', '2022-01-24', 21000.00, '2024-06-21', 21000.00, 'Chrompet ', '1', '2 years 4 months', ' Studies ', 1, '2025-02-24 05:31:30', 0, NULL, 0, NULL, 1),
(9920, 24070, 'Zealous service ', 'Customer support executive ', '2016-03-11', 10000.00, '2017-05-02', 16284.00, 'Nungambakkam ', '1', '1 years 1 months', ' It\'s night shift work ', 1, '2025-02-24 06:20:54', 0, NULL, 0, NULL, 1),
(9921, 24070, 'I process service pvt ltd ', 'Sale executive ', '2019-10-07', 14000.00, '2021-07-31', 14000.00, 'West mambalam ', '1', '1 years 9 months', 'That company tender close ', 1, '2025-02-24 06:24:23', 0, NULL, 0, NULL, 1),
(9922, 24259, 'shriram Finance Limited ', 'Customer relationship', '2024-07-13', 17000.00, '2025-02-24', 21000.00, 'madhavaram', '2', '0 years 7 months', ' ', 1, '2025-02-24 06:31:06', 0, NULL, 0, NULL, 1),
(9923, 24259, 'shriram finance limiited', 'feild excutive', '2024-07-03', 17000.00, '1970-01-01', 21000.00, 'madhavaram', '2', '0 years 7 months', 'Time not suitable and field work also ', 1, '2025-02-24 06:35:28', 0, NULL, 0, NULL, 1),
(9924, 24264, 'Vcare', 'Front office sales executive ', '2022-09-30', 18000.00, '2024-05-20', 21000.00, 'Anna nagar ', '1', '1 years 7 months', ' For future growth ', 1, '2025-02-24 07:20:11', 0, NULL, 0, NULL, 1),
(9925, 24266, 'Hari agencies ', 'Sales ', '2016-02-24', 10000.00, '2024-12-23', 15000.00, 'Chennai', '1', '8 years 9 months', ' Shop as been closed for metro project ', 1, '2025-02-24 07:39:52', 0, NULL, 0, NULL, 1),
(9926, 24267, 'Liquiloans ', 'Relationship manager ', '2023-01-28', 29000.00, '1970-01-01', 29000.00, 'Chennai ', '2', '2 years 0 months', 'Tamilnadu business was closed so they said come to Mumbai and handle mumbai team I can\'t able to go mumbai', 1, '2025-02-24 11:09:07', 0, NULL, 0, NULL, 1),
(9927, 24275, 'Hamly business solutions ', 'Process associate ', '2024-11-05', 13009.00, '1970-01-01', 13000.00, 'THANJAVUR', '2', '0 years 3 months', 'I working on night shift that cause health issues so iam moving forward on day shift', 1, '2025-02-25 05:20:46', 0, NULL, 0, NULL, 1),
(9928, 24277, 'Bajaj finance ', 'Finance executive ', '2024-04-01', 17500.00, '1970-01-01', 17500.00, 'T nagar', '2', '0 years 10 months', ' Personal problem ', 1, '2025-02-25 05:40:10', 0, NULL, 0, NULL, 1),
(9929, 24271, 'Sutherland global services ', 'Amazon seller support ( customer internet)', '2024-06-25', 21000.00, '2024-11-29', 21000.00, 'Perungalathur, Chennai ', '1', '0 years 5 months', ' Health condition due to night shift and the cab was not provided and stopped during the tenure ', 1, '2025-02-25 06:48:45', 0, NULL, 0, NULL, 1),
(9930, 24280, 'Nexus Research ', 'BDE ', '2024-02-01', 17000.00, '2025-02-01', 17000.00, 'Koramangala ', '1', '1 years 0 months', ' ', 1, '2025-02-25 06:53:42', 0, NULL, 0, NULL, 1),
(9931, 24284, 'Tech Mahindra ', 'Customer care support ', '2023-01-06', 16000.00, '2024-01-13', 16000.00, 'Chennai ', '1', '1 years 0 months', ' Life growth improve ', 1, '2025-02-25 07:26:51', 0, NULL, 0, NULL, 1),
(9932, 24283, 'Export Pvt Ltd', 'Telesales', '2020-11-06', 18000.00, '2023-12-07', 18000.00, 'chennai', '1', '3 years 1 months', 'Salary increment Teamleader Misunderstanding ', 1, '2025-02-25 07:39:12', 153, '2025-02-25 01:16:17', 0, NULL, 1),
(9933, 24284, 'Matrimony .com ltd', 'Relationship manager', '2024-02-28', 20000.00, '2024-11-28', 20000.00, 'chennai', '1', '0 years 9 months', 'Night shift', 153, '2025-02-25 01:19:06', 0, NULL, 0, NULL, 1),
(9934, 24285, 'Saviour management service', 'Tele caller', '2021-01-08', 11000.00, '2022-05-31', 15000.00, 'Arumbakkam', '1', '1 years 4 months', 'I want to study diploma course in Central polytechnic College I cannot able to continue on that company that\'s why I relieve from that company', 1, '2025-02-25 11:06:23', 0, NULL, 0, NULL, 1),
(9935, 24287, 'Om innovation ', 'Customer care executive ', '2024-06-05', 14000.00, '2025-01-03', 14000.00, 'Chetpet ', '1', '0 years 6 months', ' Salary issue ', 1, '2025-02-25 11:59:51', 0, NULL, 0, NULL, 1),
(9936, 24292, 'HCL', 'Associate ', '2022-04-01', 185000.00, '2022-10-28', 185000.00, 'Chennai ', '1', '0 years 6 months', ' Project Closed ', 1, '2025-02-26 05:59:40', 0, NULL, 0, NULL, 1),
(9937, 24293, 'Karthikeyan B ', 'Employee ', '2024-05-22', 14000.00, '2025-02-17', 14000.00, 'Om innovation Call Service Pvt Ltd Chennai Chetpet', '1', '0 years 8 months', ' Salary Issue and Family Problem ', 1, '2025-02-26 06:15:03', 0, NULL, 0, NULL, 1),
(9938, 24296, 'HDFC Bank under HDB', 'Junior Processing Officer', '2023-09-21', 13000.00, '1970-01-01', 15000.00, 'Bangalore', '2', '1 years 5 months', ' Wanted a career growth \nLooking for a good opportunity so that I can enrich my knowledge as well as my income', 1, '2025-02-26 06:29:23', 0, NULL, 0, NULL, 1),
(9939, 24297, 'Swad food Product', 'TSE', '2022-10-10', 18000.00, '2023-12-20', 20000.00, 'Kerala', '1', '1 years 2 months', ' Personal problem', 1, '2025-02-26 06:52:07', 0, NULL, 0, NULL, 1),
(9940, 24300, 'IDFC finance ', 'Sales executive ', '2025-02-26', 13000.00, '1970-01-01', 13000.00, 'Redhills ', '2', '0 years 0 months', ' ', 1, '2025-02-26 08:16:45', 0, NULL, 0, NULL, 1),
(9941, 24301, 'I process ', 'Sales executive ', '2024-06-21', 14500.00, '2025-01-01', 14500.00, 'Ambattur ', '2', '0 years 6 months', ' ', 1, '2025-02-26 08:24:10', 0, NULL, 0, NULL, 1),
(9942, 24304, 'Bluechip corporate investment centre private limit', 'Telecaller', '2023-06-26', 15000.00, '2024-05-02', 150000.00, 'Chennai', '1', '0 years 10 months', ' Father health injury ', 1, '2025-02-27 03:54:52', 0, NULL, 0, NULL, 1),
(9943, 24305, 'Finlight reserch company ', 'BDA', '2024-08-05', 18000.00, '2025-01-27', 20000.00, 'Tavrekere', '1', '0 years 5 months', 'Family problems ', 1, '2025-02-27 05:38:55', 0, NULL, 0, NULL, 1),
(9944, 24306, 'Finlight research pvt ltd', 'BDE', '2024-01-01', 19000.00, '2024-04-01', 19000.00, 'Jp nagar', '1', '0 years 3 months', ' Due to mother health issues ', 1, '2025-02-27 05:45:17', 0, NULL, 0, NULL, 1),
(9945, 24307, 'Fincaps Financial services ', 'Telesales', '2024-07-01', 12000.00, '2025-02-26', 12000.00, 'Dhasprakash ', '1', '0 years 7 months', ' Salary issue', 1, '2025-02-27 06:01:07', 0, NULL, 0, NULL, 1),
(9946, 24307, 'Fincaps Financial services ', 'Telesales ', '2024-07-01', 12000.00, '2025-02-26', 12000.00, 'Dhasprakash ', '1', '0 years 7 months', 'Salary issue ', 1, '2025-02-27 06:02:07', 1, '2025-02-27 06:02:51', 0, NULL, 0),
(9947, 24308, 'Fincaps Financial Services ', 'Telesales ', '2024-07-01', 12000.00, '2025-02-26', 12000.00, 'Dhasprakash ', '1', '0 years 7 months', ' Salary Issue ', 1, '2025-02-27 06:23:51', 0, NULL, 0, NULL, 1),
(9948, 24310, 'Tn finance', 'Sales executive', '2020-08-15', 15000.00, '2024-06-27', 15000.00, 'Nugapakkam', '1', '3 years 10 months', 'Personal issues ', 1, '2025-02-27 06:34:15', 0, NULL, 0, NULL, 1),
(9949, 24312, 'Hdfc bank', 'Risk analyst ', '2022-02-26', 12000.00, '2024-11-12', 17000.00, 'Chennai', '1', '2 years 8 months', ' My mother has passed away ', 1, '2025-02-27 07:50:41', 0, NULL, 0, NULL, 1),
(9950, 24321, 'Jana Small Finance bank ', 'CREM Agri', '2024-05-01', 19500.00, '1970-01-01', 19500.00, 'Thanjavur ', '2', '0 years 9 months', ' Field work', 1, '2025-02-28 05:08:34', 0, NULL, 0, NULL, 1),
(9951, 24322, 'Jana small finance bank', 'OAC', '2023-07-27', 21000.00, '1970-01-01', 25000.00, 'Thanjavur', '2', '1 years 7 months', 'Career growth ', 1, '2025-02-28 05:24:23', 0, NULL, 0, NULL, 1),
(9952, 23746, 'Cara24 private limited ', 'Retail associate ', '2023-06-05', 23000.00, '2024-12-03', 300000.00, 'Nungambakkam ', '1', '1 years 5 months', ' Layoff ', 1, '2025-02-28 05:33:14', 0, NULL, 0, NULL, 1),
(9953, 24320, 'Vcare coperate ', 'Call centre executive ', '2024-02-14', 15000.00, '2024-09-15', 15000.00, 'Ambattur ', '1', '0 years 7 months', ' Time duration and I am preparing for my examinations', 1, '2025-02-28 05:55:08', 0, NULL, 0, NULL, 1),
(9954, 24324, 'Goalcrict Pvt Ltd ', 'Relationship ', '2024-03-02', 19000.00, '2025-11-30', 23000.00, 'Jaynagar 5th block ', '1', '1 years 8 months', ' I that time assident  ', 1, '2025-02-28 05:55:33', 0, NULL, 0, NULL, 1),
(9955, 24330, 'HDB financial services ', 'Telecaller ', '2023-06-23', 10000.00, '2025-02-04', 13.00, 'Chennai ', '1', '1 years 7 months', ' ', 1, '2025-02-28 07:30:53', 0, NULL, 0, NULL, 1),
(9956, 24329, 'RangsonsAerospace', 'Associate engineer', '2023-05-02', 24642.00, '2024-11-06', 24642.00, 'Bangalore', '1', '1 years 6 months', ' Personal reason', 1, '2025-02-28 07:30:53', 0, NULL, 0, NULL, 1),
(9957, 24329, 'Suprawin Technologies', 'Process associate', '2020-11-18', 9000.00, '2021-11-30', 9000.00, 'Tumkur', '1', '1 years 0 months', 'Career growth', 1, '2025-02-28 07:32:44', 0, NULL, 0, NULL, 1),
(9958, 24334, 'SBICAP SECURITIES ', 'Relationship Officer ', '2023-11-22', 15000.00, '2025-01-04', 15000.00, 'Chidambaram ', '1', '1 years 1 months', ' Lost passion on work', 1, '2025-02-28 08:34:18', 0, NULL, 0, NULL, 1),
(9959, 24333, 'DTDC ', 'Gummidipoondi ', '2024-04-06', 18000.00, '2025-01-05', 16500.00, 'Gummidipoondi', '1', '0 years 8 months', ' Salary low', 1, '2025-02-28 08:52:11', 0, NULL, 0, NULL, 1),
(9960, 24343, 'Bhawar groups ', 'Sales executive ', '2024-09-02', 16000.00, '2025-01-03', 16000.00, 'string:Chennai', '1', '0 years 4 months', ' Naa relevant for that job role ', 1, '2025-03-01 06:20:57', 0, NULL, 0, NULL, 1),
(9961, 24343, 'Bhawar groups ', 'Sales executive officer ', '2024-09-02', 14000.00, '2025-01-03', 16000.00, 'string:Chennai', '1', '0 years 4 months', 'Not relevant job that job role ', 1, '2025-03-01 06:22:17', 0, NULL, 0, NULL, 1),
(9962, 24346, 'ICICI Bank ', 'Phone banking officer ', '2022-08-01', 18000.00, '2024-07-30', 25000.00, 'Ambattur ', '1', '1 years 11 months', 'Due to personal family issue', 1, '2025-03-01 10:46:01', 0, NULL, 0, NULL, 1),
(9963, 24351, 'Sobha Limited ', 'Pre Sales Executive ', '2024-03-01', 20410.00, '2025-01-27', 20410.00, 'Bengaluru ', '1', '0 years 10 months', ' .', 1, '2025-03-03 05:01:23', 0, NULL, 0, NULL, 1),
(9964, 24352, 'TVS sundaram motors ', 'Customer relationship executive ', '2022-09-06', 18.00, '2023-04-06', 18.50, 'Mount road', '1', '0 years 7 months', ' Mom health issue .', 1, '2025-03-03 06:22:19', 0, NULL, 0, NULL, 1),
(9965, 24354, 'Airtel ', 'Sales ', '2024-12-01', 27000.00, '2025-03-03', 25000.00, 'Tonderpet ', '2', '0 years 3 months', ' ', 1, '2025-03-03 07:12:48', 0, NULL, 0, NULL, 1),
(9966, 24357, 'Kapitus strategy pvt ltd', 'Operation analyst', '2023-03-20', 20000.00, '2024-03-20', 20000.00, 'Chennai', '1', '1 years 0 months', ' Contract', 1, '2025-03-03 09:18:54', 0, NULL, 0, NULL, 1),
(9967, 24357, 'Amazon transportation pvt ltd ', 'Station support executive ', '2019-01-01', 15000.00, '2020-12-26', 19000.00, 'Chennai', '1', '1 years 11 months', 'Contract ', 1, '2025-03-03 09:20:09', 0, NULL, 0, NULL, 1),
(9968, 24364, 'Casagrand Builders ', 'Marketing executive ', '2023-04-07', 1.00, '1970-01-01', 25.00, 'Thiruvanmiyur ', '2', '1 years 10 months', ' Gained experience in real estate Need some more experience in any other industry ', 1, '2025-03-04 04:08:41', 0, NULL, 0, NULL, 1),
(9969, 24359, 'Casagrand builders ', 'Executive ', '2022-10-03', 1.00, '1970-01-01', 25.00, 'Thiruvanmuir', '2', '2 years 5 months', '   Looking for Better career gowrth and Learning skill . ', 1, '2025-03-04 04:18:25', 0, NULL, 0, NULL, 1),
(9970, 24367, 'balmer lawrie & co.ltd', 'sales coordinator', '2023-04-17', 20000.00, '1970-01-01', 23000.00, 'hal old airport exit road', '2', '1 years 10 months', ' It is too far to travel to office from my location to work location ', 1, '2025-03-04 05:04:48', 0, NULL, 0, NULL, 1),
(9971, 24368, 'I marque solution ', 'Customer support executive ', '2023-08-21', 11000.00, '2024-01-31', 11000.00, 'T.Nagar ', '1', '0 years 5 months', ' Salary low and no insensitive ', 1, '2025-03-04 05:12:06', 0, NULL, 0, NULL, 1),
(9972, 24369, 'Rohini Food Products ', 'Business development Manager ', '2024-10-13', 5.00, '2025-01-31', 18500.00, 'Korattur ', '1', '0 years 3 months', ' Business loss ', 1, '2025-03-04 05:34:25', 0, NULL, 0, NULL, 1),
(9973, 24371, 'Vintorix private limited ', 'Software engineer ', '2023-12-01', 22000.00, '2025-02-28', 22000.00, 'Perungalathur ', '1', '1 years 2 months', ' It is a Non It job -Email Marketing ', 1, '2025-03-04 06:39:13', 0, NULL, 0, NULL, 1),
(9974, 24370, 'Tangedco', 'Employee ', '2023-11-22', 10000.00, '2025-02-27', 10000.00, 'TNEB Head office ', '1', '1 years 3 months', 'Low salary reason', 1, '2025-03-04 06:47:41', 0, NULL, 0, NULL, 1),
(9975, 24370, 'Tangedco ', 'Employee ', '2023-11-22', 10000.00, '2025-02-27', 10000.00, 'TNEB HEAD OFFICE ', '1', '1 years 3 months', 'Low salary reason ', 1, '2025-03-04 06:48:53', 0, NULL, 0, NULL, 1),
(9976, 24374, 'Homeadda', 'Pre sales ', '2025-01-08', 390000.00, '2025-03-01', 3.00, 'Banglore ', '1', '0 years 1 months', ' Company in loss so they removed pre-sales process ', 1, '2025-03-04 07:22:38', 0, NULL, 0, NULL, 1),
(9977, 24361, 'Faber smart care sales And service Center', 'BACK END EXECUTIVE', '2023-11-23', 150000.00, '1970-01-01', 216000.00, 'Mint street,chennai', '2', '1 years 3 months', 'personal issue ', 1, '2025-03-04 10:08:32', 0, NULL, 0, NULL, 1),
(9978, 24377, 'Allset Business solutions ', 'BPO ', '2024-12-27', 9800.00, '2025-03-04', 13000.00, 'Thousand lights ', '1', '0 years 2 months', ' Salary Negotism', 1, '2025-03-05 05:14:38', 0, NULL, 0, NULL, 1),
(9979, 24382, 'Allset Business Solution Pvt Limited ', 'Team Leader', '2023-08-02', 18000.00, '2024-10-31', 20000.00, 'Chennai', '1', '1 years 2 months', ' For Medical Issues ', 1, '2025-03-05 05:44:41', 0, NULL, 0, NULL, 1),
(9980, 24335, 'sutherland', 'ustomer support analyst', '2023-09-13', 4000.00, '2024-04-20', 19000.00, 'chennai', '1', '0 years 7 months', ' Due to health issue I was  unable to continue the job as customer support.', 1, '2025-03-05 06:04:55', 0, NULL, 0, NULL, 1),
(9981, 24384, 'Titan jewellery division ', 'Contractor ', '2023-03-05', 15000.00, '2024-01-23', 18000.00, 'Hosur', '1', '0 years 10 months', ' Contractor has closed.', 1, '2025-03-05 07:30:35', 0, NULL, 0, NULL, 1),
(9982, 24383, 'Titan jewellery division ', 'Contractor ', '2021-03-05', 15000.00, '1970-01-01', 18000.00, 'Hosur', '2', '4 years 0 months', ' Not interested', 1, '2025-03-05 07:38:40', 0, NULL, 0, NULL, 1),
(9983, 24386, '11million dream consultancy services ', 'Associate Recruiter ', '2023-03-15', 10000.00, '2023-05-04', 17000.00, 'Chennai', '1', '0 years 1 months', ' It\'s  a start up company, so worked as an intern  to learn knowledge in HR field', 1, '2025-03-05 02:49:51', 0, NULL, 0, NULL, 1),
(9984, 24386, 'Star Health insurance ', 'Insurance Advisor ', '2024-02-21', 18000.00, '2024-09-03', 17000.00, 'Chennai ', '1', '0 years 6 months', 'I left to pursue new opportunities where I can continue growing professionally. Especially faced salary budget constraints as well.', 1, '2025-03-05 02:52:53', 0, NULL, 0, NULL, 1),
(9985, 24387, 'Star health and allied insurance ', 'Sales executive ', '2024-02-05', 16000.00, '2024-09-03', 16000.00, 'Aminjikarai', '1', '0 years 6 months', ' Looking for better job opportunities where I can grow and learn professionally', 1, '2025-03-05 03:42:54', 0, NULL, 0, NULL, 1),
(9986, 24389, 'Tele performance welcome caller', 'Wellcome caller finance', '2019-07-08', 15000.00, '2020-08-13', 10000.00, 'Ambattur estate', '1', '1 years 1 months', ' Timing issue', 1, '2025-03-06 06:05:07', 0, NULL, 0, NULL, 1),
(9987, 24278, 'Hdfc home loan', 'Sales executive ', '2024-01-04', 15000.00, '2025-03-01', 17000.00, 'Chennai ', '1', '1 years 1 months', ' Salary package problem experience changed company it industry career ', 1, '2025-03-06 08:28:02', 0, NULL, 0, NULL, 1),
(9988, 24388, 'Printwel', 'Customer Engagement specialist', '2022-12-01', 0.00, '2023-12-01', 0.00, 'Bangalore', '1', '1 years 0 months', 'NA', 154, '2025-03-07 09:53:32', 0, NULL, 0, NULL, 1),
(9989, 24388, 'ICICI Prudential Life Insurance', 'Financial Service Consultant', '2024-01-01', 1.00, '1970-01-01', 1.00, 'Bangalore', '2', '1 years 2 months', 'NA', 154, '2025-03-07 09:54:57', 0, NULL, 0, NULL, 1),
(9990, 24403, 'Airtel ', 'Corporate ambassador ', '2024-02-01', 18000.00, '2024-07-30', 18000.00, 'Chennai ', '1', '0 years 5 months', ' Coz of my health issues ', 1, '2025-03-07 06:33:07', 0, NULL, 0, NULL, 1),
(9991, 24405, 'Jubilant foodworks ', 'Guest delight associate ', '2023-03-20', 15000.00, '2025-02-20', 18000.00, 'Sanjay nagar', '1', '1 years 11 months', ' Family issues ', 1, '2025-03-08 04:25:07', 0, NULL, 0, NULL, 1),
(9992, 24406, 'Orocorp technology ', 'Calling partner ', '2022-05-12', 15000.00, '2025-02-28', 17000.00, 'Nungambakkam ', '1', '2 years 9 months', 'Work place  change to other location so can\'t travel long distance. ', 1, '2025-03-08 05:48:28', 0, NULL, 0, NULL, 1),
(9993, 24408, 'Shriram Finance Limited', 'Relationship executive ', '2023-02-16', 15000.00, '2024-11-19', 21250.00, 'Minjur', '1', '1 years 9 months', ' ', 1, '2025-03-08 05:49:49', 1, '2025-03-08 05:51:40', 0, NULL, 1),
(9994, 24408, 'Equitas Small Finance Bank', 'Relationship Manager', '2024-11-25', 21129.00, '1970-01-01', 21129.00, 'Minjur', '2', '0 years 3 months', 'Location changing ', 1, '2025-03-08 05:53:23', 0, NULL, 0, NULL, 1),
(9995, 24410, 'Sutherland global service ', 'Customer support ', '2023-05-09', 13000.00, '2025-01-28', 18000.00, 'Chennai', '1', '1 years 8 months', 'Health issues since it\'s an rotational shift ', 1, '2025-03-08 06:56:46', 0, NULL, 0, NULL, 1),
(9996, 24415, 'HR Recruiter ', 'HR Recruiter ', '2022-07-09', 17000.00, '2024-12-20', 20000.00, 'Chennai', '1', '2 years 5 months', ' ', 1, '2025-03-10 07:19:34', 0, NULL, 0, NULL, 1),
(9997, 24414, 'FRM Pvt ltd', 'Telecallar', '2022-12-20', 15000.00, '2023-09-14', 15000.00, 'Arumbakkam', '1', '0 years 8 months', 'Salary Problems', 153, '2025-03-10 12:51:38', 0, NULL, 0, NULL, 1),
(9998, 24417, 'Stats perform', 'Data collection analyst ', '2024-04-24', 17500.00, '2024-09-30', 17500.00, 'Thousand lights ', '1', '0 years 5 months', 'Because of Rotational shift i got an health issues so why i relieved ', 1, '2025-03-11 04:56:41', 0, NULL, 0, NULL, 1),
(9999, 24418, 'Technocapsy', 'Customer support executive', '2022-06-01', 15500.00, '2023-07-30', 18500.00, 'Vellore', '1', '1 years 1 months', ' Health issues', 1, '2025-03-11 05:05:18', 0, NULL, 0, NULL, 1),
(10000, 24417, 'ICICI LOMBARD', 'CRM', '2023-10-01', 15000.00, '2024-03-01', 15000.00, 'tHOUSAND LIGHTS', '1', '0 years 4 months', 'company shifted long distance', 153, '2025-03-11 10:35:26', 0, NULL, 0, NULL, 1),
(10001, 24423, 'Imerge business solution ', 'Telemarketing ', '2024-07-07', 18000.00, '2025-02-20', 25000.00, 'Navalur ', '1', '0 years 8 months', '  Timing not compatible and than location also ', 1, '2025-03-11 05:53:42', 0, NULL, 0, NULL, 1),
(10002, 24424, 'HDB Financial Services ', 'Senior telecalling officer ', '2024-01-29', 10000.00, '2025-03-07', 12000.00, 'Chennai ', '1', '1 years 1 months', ' salary package not comfortable .', 1, '2025-03-11 06:11:28', 0, NULL, 0, NULL, 1),
(10003, 24428, 'Allsec technologies Pvt Ltd ', 'Customer care executive ', '2023-05-09', 2023.00, '2024-10-09', 15270.00, ' Shanthinager ', '1', '1 years 5 months', ' Better opportunity\n For better salary ', 1, '2025-03-11 09:00:24', 0, NULL, 0, NULL, 1),
(10004, 24446, 'Quess pvt limited company', 'Sales executive', '2024-05-17', 17500.00, '2024-11-01', 2.50, 'Chennai', '1', '0 years 5 months', '6month ', 1, '2025-03-12 06:11:25', 0, NULL, 0, NULL, 1),
(10005, 24447, 'mastermind', 'telecaller', '2025-03-12', 18000.00, '1970-01-01', 18000.00, 'thousanlights', '2', '0 years 0 months', ' Salary deduction ', 1, '2025-03-12 06:50:38', 0, NULL, 0, NULL, 1),
(10006, 24452, 'Shiram transport finance company ', 'Relationship executive ', '2019-06-10', 13500.00, '2023-07-05', 20000.00, 'Tiruchendur ', '1', '4 years 0 months', ' Family health issue ', 1, '2025-03-12 10:29:53', 0, NULL, 0, NULL, 1),
(10007, 24453, 'Trimzo digital marketing', 'Business development executive', '2024-10-07', 25000.00, '2025-03-24', 25000.00, 'Anna nagar', '1', '0 years 5 months', ' Office closeing', 1, '2025-03-12 12:37:44', 0, NULL, 0, NULL, 1),
(10008, 24457, 'cogent e-services', 'telecaller ', '2024-05-25', 16000.00, '2025-01-22', 16000.00, 'karnataka  mangalore', '1', '0 years 7 months', ' Contract basic job so reason for relieving', 1, '2025-03-13 04:20:39', 0, NULL, 0, NULL, 1),
(10009, 24458, 'Cogent e -services private ltd', 'CSA', '2024-05-15', 18000.00, '2025-01-22', 18000.00, 'Mangalore Karnataka', '1', '0 years 8 months', 'Contract based my work ', 1, '2025-03-13 04:24:13', 0, NULL, 0, NULL, 1),
(10010, 24459, 'dvara kgfs', 'wm', '2023-05-09', 18400.00, '2024-12-31', 22500.00, 'thiruvottiyur', '1', '1 years 7 months', 'Family issues', 1, '2025-03-13 04:58:14', 0, NULL, 0, NULL, 1),
(10011, 24461, 'Dvara KGFS', 'wealth manager', '2023-05-01', 30.00, '2024-12-31', 22000.00, 'chennai', '1', '1 years 7 months', ' ', 1, '2025-03-13 05:12:19', 0, NULL, 0, NULL, 1),
(10012, 24234, 'Golden enterprise ', 'Telesales ', '2022-11-02', 16000.00, '2024-09-15', 17000.00, 'Vadapalani ', '1', '1 years 10 months', ' Family issues ', 1, '2025-03-13 05:26:01', 0, NULL, 0, NULL, 1),
(10013, 24454, 'Icici Lombard general insurance ', 'TSO', '2024-12-01', 5.00, '2025-03-08', 15000.00, 'Chennai', '1', '0 years 3 months', ' ', 1, '2025-03-13 05:42:23', 0, NULL, 0, NULL, 1),
(10014, 24465, 'Shriram general insurance ', 'Executive ', '2022-09-15', 15000.00, '2023-10-21', 23000.00, 'Sowcarpet ', '1', '1 years 1 months', ' Expect for high salary ', 1, '2025-03-13 05:50:39', 0, NULL, 0, NULL, 1),
(10015, 24466, 'Teamlease services limited', 'Sales offficer', '2024-10-18', 19800.00, '1970-01-01', 19800.00, 'greems road', '2', '0 years 4 months', 'career growth', 153, '2025-03-13 11:46:59', 0, NULL, 0, NULL, 1),
(10016, 24470, 'amazon ', 'quality analyst', '2020-08-10', 19500.00, '2022-06-06', 22000.00, 'chennai', '1', '1 years 9 months', ' family situation', 1, '2025-03-13 07:33:22', 0, NULL, 0, NULL, 1),
(10017, 24471, 'biba fashion limited', 'sales executive', '2023-07-01', 14500.00, '2024-02-10', 14500.00, 'chennai', '1', '0 years 7 months', ' its temporary job', 1, '2025-03-14 03:57:48', 0, NULL, 0, NULL, 1),
(10018, 24471, 'icici lombard general insurance ', 'telecaller', '2024-11-01', 13500.00, '2025-02-01', 13500.00, 'chennai', '1', '0 years 3 months', 'salary delay', 1, '2025-03-14 04:00:18', 0, NULL, 0, NULL, 1),
(10019, 24472, 'hdb financial service', 'junior officer', '2020-02-12', 13000.00, '2022-06-14', 19000.00, 'chennai', '1', '2 years 4 months', ' Move to non voice team ', 1, '2025-03-14 05:23:10', 0, NULL, 0, NULL, 1),
(10020, 24472, 'aargee staffing solution', 'bussiness associate', '2023-03-08', 16000.00, '2024-03-10', 16000.00, 'ambattur', '1', '1 years 0 months', 'Project close', 1, '2025-03-14 05:24:42', 0, NULL, 0, NULL, 1),
(10021, 24473, 'forte', 'telecaller', '2024-01-19', 16000.00, '2025-01-15', 16000.00, 'chennai', '1', '0 years 11 months', ' Long distance traveling ', 1, '2025-03-14 05:31:13', 0, NULL, 0, NULL, 1),
(10022, 24478, 'Allset business solution', 'telecaller', '2024-02-03', 15000.00, '1970-01-01', 15000.00, 'thousand lights', '2', '1 years 1 months', ' ', 1, '2025-03-15 08:35:06', 0, NULL, 0, NULL, 1),
(10023, 24480, 'HDB financial services ', 'Senior tellingcaller', '2021-09-08', 10000.00, '2022-08-01', 11000.00, 'Thousand lights', '1', '3 years 6 months', ' Personal reasons ', 1, '2025-03-17 05:11:17', 0, NULL, 0, NULL, 1),
(10024, 24481, 'Jps credit management ', 'Senior executive ', '2023-05-11', 17000.00, '2024-03-11', 17000.00, 'Arumbakam ', '1', '0 years 10 months', ' Health issues ', 1, '2025-03-17 05:23:22', 0, NULL, 0, NULL, 1),
(10025, 24483, 'KI MOBILITY SOLUTIONS', 'Team leader', '2024-08-01', 27000.00, '1970-01-01', 27000.00, 'Banglore', '2', '0 years 7 months', 'To explore more in different domin', 1, '2025-03-17 06:02:41', 0, NULL, 0, NULL, 1),
(10026, 24482, 'Indusind bank ', 'Sales officer ', '2022-09-26', 25.10, '2023-11-10', 15000.00, 'Karapakkam', '1', '1 years 1 months', ' Personal issue ', 1, '2025-03-17 06:06:23', 0, NULL, 0, NULL, 1),
(10027, 24486, 'Trendnologies ', 'HR Generalist ', '2023-11-17', 12000.00, '2025-03-13', 15000.00, 'Anna nagar ', '1', '1 years 3 months', ' Company shutdown ', 1, '2025-03-17 06:44:37', 0, NULL, 0, NULL, 1),
(10028, 24487, 'Bank Bazaar ', 'Cro', '2021-04-15', 250000.00, '2024-10-15', 283000.00, 'Ambattur ', '1', '3 years 6 months', ' To learn new thing about business organisation ', 1, '2025-03-17 06:54:51', 0, NULL, 0, NULL, 1),
(10029, 24489, 'SAVIOUR MANAGEMENT', 'telecaller', '2024-10-01', 12000.00, '2025-01-01', 12000.00, 'ARUMBAKKAM', '1', '0 years 3 months', 'TEMPORARY JOB ', 153, '2025-03-17 12:36:59', 0, NULL, 0, NULL, 1),
(10030, 24490, 'Policy pazzar ', 'Customer relationship manager', '2024-06-15', 20000.00, '2025-01-30', 20000.00, 'Thiruvanmiyur ', '1', '0 years 7 months', ' Health issues', 1, '2025-03-17 12:15:41', 153, '2025-03-18 09:56:31', 0, NULL, 1),
(10031, 24494, 'Hathway cable ', 'Telesales executive ', '2024-08-17', 17000.00, '2025-01-31', 17000.00, 'Nungambakkam', '1', '0 years 5 months', 'Travelling issue', 1, '2025-03-18 04:52:46', 0, NULL, 0, NULL, 1),
(10032, 24496, 'Casagrand builder ', 'Executive ', '2022-04-11', 31.00, '1970-01-01', 19000.00, 'Thiruvanmiyur ', '2', '2 years 11 months', ' As I need my career growth in other field ', 1, '2025-03-18 06:03:32', 0, NULL, 0, NULL, 1),
(10033, 24498, 'Casagrand builder\'s', 'Executive', '2021-11-11', 31.00, '1970-01-01', 22000.00, 'Thiruvanmiyur', '2', '3 years 4 months', ' I improve my career path so I changed my job......', 1, '2025-03-18 06:08:14', 0, NULL, 0, NULL, 1),
(10034, 24502, 'muthoot finance', 'business development officer', '2024-12-04', 18500.00, '2025-02-07', 18500.00, 'vadapalani', '1', '0 years 2 months', ' Health issuse ', 1, '2025-03-18 07:16:08', 0, NULL, 0, NULL, 1),
(10035, 24509, 'HDFC BANK', 'Sales officer', '2024-03-03', 13500.00, '1970-01-01', 13500.00, 'Dharmapuri', '2', '1 years 0 months', ' Family problem  so iam relieving', 1, '2025-03-19 07:10:45', 0, NULL, 0, NULL, 1),
(10036, 24510, 'Arcis e-service private limited ', 'Document verification ', '2024-06-03', 13000.00, '1970-01-01', 13000.00, 'Chennai', '2', '0 years 9 months', ' Salary was low ', 1, '2025-03-19 07:39:04', 0, NULL, 0, NULL, 1),
(10037, 24513, 'EXIMIO SERVICES AND SOLUTIONJ', 'PROCESS ASSOCIATE', '2022-04-19', 16000.00, '2023-04-15', 16000.00, 'CHENNAI', '1', '3 years 2 months', 'RELOCATING REASONS', 154, '2025-03-19 02:45:09', 154, '2025-03-19 02:52:53', 0, NULL, 1),
(10038, 24514, 'Nachiyeappa Chettiar Finance ', 'Telecalling ', '2023-11-05', 15000.00, '2025-01-01', 18000.00, 'Kovilpatti', '1', '1 years 1 months', ' Marriage ', 1, '2025-03-19 01:21:00', 0, NULL, 0, NULL, 1),
(10039, 24517, 'Chennai metro railway limited ', 'Tom (ticket operator)', '2022-03-05', 17000.00, '2024-11-30', 25000.00, 'AG-dms,NANDHANAM', '1', '2 years 8 months', ' Health issue', 1, '2025-03-20 04:34:48', 0, NULL, 0, NULL, 1),
(10040, 24521, 'SANMAI PHARMACEUTICAL ', 'Sales executive ', '2023-06-05', 21500.00, '2025-02-03', 21500.00, 'Chennai ', '1', '1 years 7 months', ' ', 1, '2025-03-20 05:14:14', 0, NULL, 0, NULL, 1),
(10041, 24527, 'Kaya enterprises ', 'Supervisor ', '2017-03-24', 15000.00, '2021-05-31', 21000.00, 'Salem', '1', '4 years 2 months', ' Company closed', 1, '2025-03-20 08:08:10', 0, NULL, 0, NULL, 1),
(10042, 24527, 'Nivar hotel and resort pvt ltd ', 'Supervisor ', '2021-06-01', 18000.00, '2023-01-31', 18000.00, 'Salem ', '1', '1 years 7 months', 'Restaurant sales ', 1, '2025-03-20 08:11:03', 0, NULL, 0, NULL, 1),
(10043, 24527, 'Nivar infotech pvt ltd ', 'Tell calling and production manager ', '2023-02-01', 45000.00, '2023-10-01', 45000.00, 'Coimbatore ', '1', '0 years 8 months', 'Location change ', 1, '2025-03-20 08:14:08', 0, NULL, 0, NULL, 1),
(10044, 24527, 'Andromeda pvt limited ', 'Tellcalling ', '2024-10-10', 19000.00, '2024-12-31', 19000.00, 'Nungambakkam ', '1', '0 years 2 months', 'Location change ', 1, '2025-03-20 08:16:08', 0, NULL, 0, NULL, 1),
(10045, 24527, 'Credit mantri Finserv pvt limited ', 'Tellcalling ', '2024-12-30', 24000.00, '2025-03-19', 24000.00, 'Spencer plaza', '1', '0 years 2 months', 'Timing ', 1, '2025-03-20 08:18:18', 0, NULL, 0, NULL, 1),
(10046, 24528, 'Tanishq ', 'Retail service officer', '2024-02-02', 20.00, '2024-10-25', 20.00, 'Pondy bazaar ', '1', '0 years 8 months', 'Not interested in jewelry product', 1, '2025-03-20 01:16:42', 0, NULL, 0, NULL, 1),
(10047, 24532, 'Allset business solutions and EB minnagam ', 'Telecalling', '2022-04-25', 16000.00, '1970-01-01', 10.00, 'LIC', '2', '2 years 10 months', ' Salary issues ', 1, '2025-03-21 06:05:39', 0, NULL, 0, NULL, 1),
(10048, 24531, 'Allset business Solution 1 year / Eb Minnagam 2 ye', 'Telecalling ', '2022-04-25', 16000.00, '1970-01-01', 10.00, 'Lic Anna Salai', '2', '2 years 10 months', ' Salary issue ', 1, '2025-03-21 06:05:53', 0, NULL, 0, NULL, 1),
(10049, 24536, 'Coronis ajuba', 'Payment posting ', '2022-10-17', 9000.00, '2025-04-17', 19000.00, 'Ambattur', '1', '2 years 6 months', 'Career growth', 1, '2025-03-21 06:13:40', 0, NULL, 0, NULL, 1),
(10050, 24536, 'Mmc infotech ', 'Lop voice process', '2021-12-01', 5000.00, '2022-06-01', 6000.00, 'Chennai', '1', '0 years 6 months', 'Higher studies', 1, '2025-03-21 06:14:48', 0, NULL, 0, NULL, 1),
(10051, 24538, 'Billed Right health care private limited ', 'VR Associate ', '2022-09-21', 17.00, '2023-08-21', 17.00, 'Mylapore ,chennai', '1', '0 years 11 months', ' Offer from ecare', 1, '2025-03-21 07:02:05', 0, NULL, 0, NULL, 1),
(10052, 24543, 'Woodwind enterprises ', 'Telecalling executive ', '2024-06-17', 18000.00, '2025-03-06', 20000.00, 'CHENNAI', '1', '0 years 8 months', ' Issues with business ', 1, '2025-03-22 05:06:26', 0, NULL, 0, NULL, 1),
(10053, 24541, 'DCC group of companies ', 'HR recruiter & Buisness development executive Head', '2024-07-15', 15000.00, '2025-03-12', 18000.00, 'Anna nager ', '1', '0 years 7 months', 'No salary reversal and Timing issues \nNo more holidays including sunday will be a working day ', 1, '2025-03-22 09:38:51', 0, NULL, 0, NULL, 1),
(10054, 24550, 'Sugar cosmetics ', 'S.M', '2023-11-01', 28.50, '2025-03-05', 28.50, 'Chennai Airport ', '1', '1 years 4 months', ' Personal issues ', 1, '2025-03-24 07:03:36', 0, NULL, 0, NULL, 1),
(10055, 24552, 'Fastrack ', 'Telecaller', '2023-03-03', 13000.00, '2023-05-29', 13000.00, 'Chennai ', '1', '0 years 2 months', 'Mother\'s health issue ', 1, '2025-03-24 07:56:58', 0, NULL, 0, NULL, 1),
(10056, 24547, 'Adept360', 'Technical consultant ', '2023-08-01', 20000.00, '2024-03-06', 22000.00, 'Chennai ', '1', '1 years 7 months', ' Training Only ', 1, '2025-03-24 08:29:05', 0, NULL, 0, NULL, 1),
(10057, 24557, 'Tech Mahindra ', 'Customer support associate ', '2023-07-18', 20000.00, '2024-12-25', 2.75, 'Chennai', '1', '1 years 5 months', 'Career growth and salary hike ', 1, '2025-03-25 04:45:49', 0, NULL, 0, NULL, 1),
(10058, 24556, 'zealous service', ' 3d artist', '2022-11-01', 100000.00, '2025-03-01', 200000.00, 'nungambakkam', '1', '2 years 3 months', 'due  to layoff', 154, '2025-03-25 10:26:29', 154, '2025-03-25 10:28:17', 0, NULL, 1),
(10059, 24558, 'Zealous Service ', '3D Modeling designer ', '2022-06-08', 15000.00, '2025-03-20', 22000.00, 'NRCS Tower Nungambakkam ', '1', '2 years 9 months', 'Unpaid long Leave ', 1, '2025-03-25 05:03:49', 0, NULL, 0, NULL, 1),
(10060, 24564, 'Fs insurance broking ', 'Co-ordinator ', '2022-04-28', 12000.00, '2025-03-20', 19200.00, 'Nandhanam ', '1', '2 years 10 months', 'Personal issues', 1, '2025-03-25 05:56:14', 0, NULL, 0, NULL, 1),
(10061, 24565, 'Homelane interior design company ', 'Sales executive ', '2024-03-01', 20000.00, '2024-11-01', 23000.00, 'Indiranagar ', '1', '0 years 8 months', ' Because of work environment ', 1, '2025-03-25 06:03:21', 0, NULL, 0, NULL, 1),
(10062, 24565, 'Decotales ', 'Presale executive ', '2024-12-10', 23000.00, '2025-03-20', 23000.00, 'Jp nagar ', '1', '0 years 3 months', 'Because of health issues ', 1, '2025-03-25 06:04:42', 0, NULL, 0, NULL, 1),
(10063, 24570, 'KAARLO', 'SOUCRING SPECIALIST', '2024-09-01', 0.00, '2024-12-01', 0.00, 'TRICHY', '1', '0 years 2 months', 'INTERNSHIP', 154, '2025-03-25 02:43:38', 0, NULL, 0, NULL, 1),
(10064, 24570, '247HIRE PVT LTD', 'HR ASSOCIATE', '2021-03-01', 11000.00, '2023-06-01', 18000.00, 'TRICHY', '1', '2 years 3 months', 'NIGHT SHIFT WORK ALSO NEED TO TAKE CARE OF MOM', 154, '2025-03-25 02:46:24', 0, NULL, 0, NULL, 1),
(10065, 24571, 'Hexaware Technologies ', 'Executive ', '2024-05-23', 21.00, '2025-02-08', 17500.00, 'Chennai ', '1', '0 years 8 months', ' Personal issue ', 1, '2025-03-26 04:49:05', 0, NULL, 0, NULL, 1),
(10066, 24574, 'mvr infotech ', 'Telecalling ', '2024-09-26', 17000.00, '2025-03-20', 18000.00, ' t nagar ', '1', '0 years 5 months', ' salary issues ', 1, '2025-03-26 05:59:36', 0, NULL, 0, NULL, 1),
(10067, 24575, 'AXIS BANK', 'PERSONAL LOAN', '2025-03-26', 20012001.00, '1970-01-01', 2.75, 'KODAMBAKKAM', '2', '0 years 0 months', 'NIL', 154, '2025-03-26 02:46:24', 154, '2025-03-26 02:47:02', 0, NULL, 0),
(10068, 24578, 'Gk industry ', 'Telecaller ', '2021-03-05', 10000.00, '2025-01-31', 12000.00, 'Salem ', '1', '3 years 10 months', ' No time over and no holiday ', 1, '2025-03-27 06:07:03', 0, NULL, 0, NULL, 1),
(10069, 24579, 'mms', 'customer Support executive', '2025-03-27', 12000.00, '2025-04-27', 13000.00, 'mmda', '1', '0 years 1 months', ' Office shifting ', 1, '2025-03-27 06:10:29', 0, NULL, 0, NULL, 1),
(10070, 24581, 'J.A SOLUTIONS ', 'Customer support executive ', '2020-10-20', 10000.00, '2021-10-20', 10000.00, 'Thanjavur ', '1', '1 years 0 months', ' Projects starting to get downsized. I want to look for better opportunities in a city.', 1, '2025-03-27 06:58:26', 0, NULL, 0, NULL, 1),
(10071, 24581, 'Ebixcash global services private limited ', 'Customer service associate ', '2021-12-14', 15000.00, '2022-08-31', 15000.00, 'Bangalore ', '1', '0 years 8 months', 'My father got hospitalised due to unforeseen illness so I have to be with him to take care of his health and the family', 1, '2025-03-27 07:00:47', 0, NULL, 0, NULL, 1),
(10072, 24582, 'G.b.manoj kumar', 'Team leader role ', '2021-08-21', 25000.00, '2024-02-29', 25000.00, 'T nagar ', '1', '2 years 6 months', ' Health issue ', 1, '2025-03-28 09:27:41', 0, NULL, 0, NULL, 1),
(10073, 24586, 'Shriram life insurance ', 'Senior executive ', '2025-01-23', 18500.00, '1970-01-01', 18500.00, 'Egmore ', '2', '0 years 2 months', ' Office shifted to Hyderabad ', 1, '2025-03-29 05:16:31', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10074, 24587, 'F.s Insurance broking services ', 'Sales executive ', '2024-06-11', 14000.00, '2025-02-28', 14000.00, 'Nandanam ', '1', '0 years 8 months', ' Interested in New tech', 1, '2025-03-29 06:04:00', 0, NULL, 0, NULL, 1),
(10075, 24588, 'Shriram life insurance ', 'Senior executive ', '2024-11-24', 17000.00, '1970-01-01', 17000.00, 'Egmore', '2', '0 years 4 months', ' ', 1, '2025-03-29 06:48:38', 0, NULL, 0, NULL, 1),
(10076, 24590, 'Srivin Holidays and Resorts Pvt Ltd ', 'Senior sales consultant ', '2024-06-03', 20000.00, '2025-01-10', 20000.00, 'Thousand lights ', '1', '0 years 7 months', ' ', 1, '2025-03-29 07:17:39', 0, NULL, 0, NULL, 1),
(10077, 24589, 'srivin holidays pvt ltd', 'take over manager', '2022-05-10', 20000.00, '2025-01-10', 20.00, 'thousand lights', '1', '2 years 10 months', ' Salary issues', 1, '2025-03-29 07:18:06', 0, NULL, 0, NULL, 1),
(10078, 24591, 'Dinamalar ', 'Marketing Executive ', '2023-06-05', 22000.00, '2023-06-29', 22000.00, 'Mound road', '1', '0 years 0 months', ' My father is hospitalized for 2month so I need to take care of my dad . In emergency situation I resigned my job ', 1, '2025-03-29 07:57:04', 0, NULL, 0, NULL, 1),
(10079, 24594, 'Asianpaints', 'Ezycolour customer Associate ', '2023-03-19', 22000.00, '2024-03-19', 27000.00, 'Chennai ,Madambakkam', '1', '1 years 0 months', ' That\'s An off role job', 1, '2025-03-29 01:04:38', 0, NULL, 0, NULL, 1),
(10080, 24594, 'Gradsquare ', 'Business Development Excecutive ', '2024-07-28', 27000.00, '2025-01-15', 27000.00, 'Chennai', '1', '0 years 5 months', 'Issue With roles And responsibilities ', 1, '2025-03-29 01:06:06', 0, NULL, 0, NULL, 1),
(10081, 24596, 'a and a dukaan financial services and pvt ltd bank', 'senior customer relationship officer', '2022-03-01', 24000.00, '2024-11-30', 24751.00, 'ambattur chennai', '1', '2 years 8 months', ' Career growth ', 1, '2025-03-31 04:43:30', 0, NULL, 0, NULL, 1),
(10082, 24598, 'STAR HEALTH INSURANCE ', 'SALES EXECUTIVE', '2022-12-01', 16000.00, '2024-03-31', 18500.00, 'ROYAPETTAH', '1', '1 years 4 months', 'MEDICAL INJURY', 154, '2025-03-31 10:55:45', 0, NULL, 0, NULL, 1),
(10083, 24599, 'Khavin Enterprises pvt Ltd ', 'Admin', '2024-11-01', 22000.00, '2025-03-15', 11000.00, 'Chemarabakkam ', '1', '0 years 4 months', 'Current company hold on business that reason for relieve the job', 1, '2025-03-31 05:48:20', 0, NULL, 0, NULL, 1),
(10084, 24601, 'Bigbasket', 'Area relationship executive ', '2024-09-23', 23000.00, '1970-01-01', 23000.00, 'Virugambakkam ', '2', '0 years 6 months', ' In orde to enhance my skills set', 1, '2025-03-31 06:12:51', 0, NULL, 0, NULL, 1),
(10085, 24600, 'Tamil flim industry', 'Make up artist', '2008-01-01', 1000.00, '2025-03-31', 32000.00, 'Chennai', '1', '17 years 2 months', ' Nil', 1, '2025-03-31 06:15:44', 0, NULL, 0, NULL, 1),
(10086, 24602, 'Shriram life insurance ', 'Senior executive ', '2022-05-16', 24500.00, '1970-01-01', 24500.00, 'Egmore', '2', '2 years 10 months', ' Shriram life insurance company process will stop digital marketing process April end close that y am searching job ', 1, '2025-03-31 06:42:55', 0, NULL, 0, NULL, 1),
(10087, 24603, 'Shriram life insurance company ', 'Sales executive ', '2024-06-26', 19000.00, '1970-01-01', 22000.00, 'Egmore', '2', '0 years 9 months', ' Process is closing ', 1, '2025-03-31 07:50:31', 0, NULL, 0, NULL, 1),
(10088, 24610, 'Shankari A', 'Sels', '2023-01-01', 18000.00, '2024-11-01', 18000.00, 'Thiruvattur chennai ', '1', '1 years 10 months', ' Helth problem ', 1, '2025-04-01 05:58:13', 0, NULL, 0, NULL, 1),
(10089, 24620, 'Pace Setters Business solutions Pvt Ltd ', 'Customer service ', '2023-07-17', 12000.00, '2024-07-14', 12000.00, 'Nungambakkam ', '1', '0 years 11 months', 'Due to some health  issues I couldn\'t able to continue ', 1, '2025-04-01 06:43:55', 0, NULL, 0, NULL, 1),
(10090, 24621, 'BAJAJ FINANCE ', 'Salas ', '2020-01-01', 10500.00, '2021-10-22', 12500.00, 'Kanchipuram ', '1', '1 years 9 months', 'Relieving letter ', 1, '2025-04-01 07:32:50', 0, NULL, 0, NULL, 1),
(10091, 24631, 'Bhawar sales corporation', 'Telecaller', '2022-01-04', 11000.00, '2023-06-24', 13000.00, 'Pudupet', '1', '1 years 5 months', ' Personal issue', 1, '2025-04-02 06:57:55', 0, NULL, 0, NULL, 1),
(10092, 24631, 'Allset business solution', 'Telecaller', '2023-10-13', 13000.00, '2025-03-28', 13000.00, 'Thousand lights', '1', '1 years 5 months', 'No salary hike', 1, '2025-04-02 06:59:02', 0, NULL, 0, NULL, 1),
(10093, 24604, 'Quess crop ltd ', 'Relationship officer ', '2024-05-02', 1.00, '2024-10-31', 16700.00, 'Choolaimedu ', '1', '0 years 5 months', ' Knowledge improve ', 1, '2025-04-02 07:02:12', 0, NULL, 0, NULL, 1),
(10094, 24632, 'QUESS CROP LTD', 'Relationship officer ', '2024-05-02', 1.00, '2024-12-08', 16700.00, 'Choolaimedu ', '1', '0 years 7 months', ' Knowledge improvement ', 1, '2025-04-02 07:08:34', 0, NULL, 0, NULL, 1),
(10095, 24633, 'Shriramlife insurance company', 'Senior Executive', '2024-09-25', 234000.00, '1970-01-01', 234000.00, 'Chennai egmore', '2', '0 years 6 months', ' Process Shutdown', 1, '2025-04-02 08:06:21', 0, NULL, 0, NULL, 1),
(10096, 24633, 'Justdial', 'Telesales executive', '2023-05-16', 220000.00, '2024-07-17', 220000.00, 'Little mount', '1', '1 years 2 months', 'Insensitive issues', 1, '2025-04-02 08:09:21', 0, NULL, 0, NULL, 1),
(10097, 24633, 'CMF info system', 'Internal auditor', '2022-08-04', 180000.00, '2023-01-28', 180000.00, 'teynampet', '1', '0 years 5 months', 'Filed work And work timing sometimes 16 hrs per day', 1, '2025-04-02 08:21:07', 0, NULL, 0, NULL, 1),
(10098, 24636, 'IDFC', 'SALES EXECUTIVE', '2023-01-01', 18000.00, '2024-08-01', 0.00, 'KANCHEEPURAM', '1', '1 years 7 months', 'NOT GROMMING WELL IN SALES', 154, '2025-04-02 03:03:07', 0, NULL, 0, NULL, 1),
(10099, 19653, 'Shriram life insurance', 'Senior executive', '2024-06-25', 19914.00, '1970-01-01', 19914.00, 'Chennai egmore', '2', '0 years 9 months', 'Organization location Change ', 1, '2025-04-02 09:44:56', 0, NULL, 0, NULL, 1),
(10100, 24637, 'Think sync', 'Customer service executive ', '2021-10-15', 10000.00, '2023-09-15', 12000.00, 'Guindy ', '1', '1 years 11 months', ' Career growth ', 1, '2025-04-02 01:09:42', 0, NULL, 0, NULL, 1),
(10101, 24637, 'Hdb finance ', 'Customer service executive ', '2024-04-25', 13500.00, '2024-09-05', 13500.00, 'Thousands lights ', '1', '0 years 4 months', 'Marriage ', 1, '2025-04-02 01:12:19', 0, NULL, 0, NULL, 1),
(10102, 24640, 'Jeyram Educational Trust ', 'Trainer ', '2022-02-28', 8000.00, '2023-03-01', 10000.00, 'Thanjavur', '1', '1 years 0 months', ' Health issue ', 1, '2025-04-03 04:38:13', 0, NULL, 0, NULL, 1),
(10103, 24642, 'Muthalagu finance', 'Sale executive ', '2024-06-03', 8000.00, '2025-01-17', 10000.00, 'Thanjavur', '1', '0 years 7 months', ' Salary issue', 1, '2025-04-03 05:15:40', 0, NULL, 0, NULL, 1),
(10104, 24638, 'Apexcovantage', 'Nonvoice', '2018-11-21', 11500.00, '1970-01-01', 13000.00, 'Guindy', '2', '6 years 4 months', ' Emergency ', 1, '2025-04-03 06:13:34', 0, NULL, 0, NULL, 1),
(10105, 24646, 'KK Consultant', 'Admin', '2023-04-10', 18000.00, '2024-12-19', 18000.00, 'Maraimalai nagar', '1', '1 years 8 months', ' Salary issues', 1, '2025-04-03 09:24:08', 0, NULL, 0, NULL, 1),
(10106, 24647, 'Just dial ', 'Telecaller', '2021-02-01', 18000.00, '2022-02-01', 18000.00, 'Little mount ', '1', '1 years 0 months', ' ', 1, '2025-04-03 09:24:27', 0, NULL, 0, NULL, 1),
(10107, 24648, 'Iopex technologies', 'Senior technical customer support', '2023-08-14', 29000.00, '2024-02-14', 29000.00, 'Chennai', '1', '0 years 6 months', ' End of contract ', 1, '2025-04-03 11:34:21', 0, NULL, 0, NULL, 1),
(10108, 24644, 'Blue-chip investment company ', 'Telecaller ', '2022-01-04', 15000.00, '2023-08-17', 18000.00, 'Thousand lights ', '1', '1 years 7 months', 'Health issues  ', 1, '2025-04-03 05:15:30', 0, NULL, 0, NULL, 1),
(10109, 24650, 'hdb finanacial Services ', 'senior telecalling officer', '2024-10-04', 15.00, '2025-03-07', 15000.00, 'greams road', '1', '0 years 5 months', ' I got a job offer from cognizant in banglore..', 1, '2025-04-04 05:56:45', 0, NULL, 0, NULL, 1),
(10110, 24652, 'Agaram info tech', 'Software trainee', '2019-08-05', 7500.00, '2020-11-30', 7500.00, 'Nessapakkam, chennai', '1', '1 years 3 months', 'Interest in higher education ', 1, '2025-04-04 09:15:57', 0, NULL, 0, NULL, 1),
(10111, 24652, 'DPR', 'Software developer ', '2022-12-05', 15000.00, '1970-01-01', 25000.00, 'Thandalam, Sriperumbudur ', '2', '2 years 3 months', 'To learn ,apply new skills and mutually grow along the organisation ', 1, '2025-04-04 09:18:59', 0, NULL, 0, NULL, 1),
(10112, 24654, 'Pace setter ', 'Business ', '2025-04-17', 15000.00, '1970-01-01', 13000.00, 'Nungambakkam ', '2', '0 years 0 months', ' Late salary ', 1, '2025-04-04 10:04:20', 0, NULL, 0, NULL, 1),
(10113, 24653, 'pace setter ', 'nothing', '2025-04-04', 13000.00, '1970-01-01', 13000.00, 'nungambakkam', '2', '0 years 0 months', 'Late salary ', 1, '2025-04-04 10:04:24', 0, NULL, 0, NULL, 1),
(10114, 24655, 'Sri Velan Global services ', 'Hr Assistant ', '2024-01-01', 16000.00, '2025-01-01', 16000.00, 'Madurai ', '1', '1 years 0 months', ' I haven’t left the company yet. Due to some financial constraints, progress has been delayed, which has affected my career growth', 1, '2025-04-04 10:58:52', 0, NULL, 0, NULL, 1),
(10115, 24656, 'Foxconn Hon Hai Technology ', 'HR SUPPORT ', '2023-11-21', 18000.00, '1970-01-01', 18000.00, 'Sunguvarchathiram', '2', '1 years 4 months', 'For career growth ', 1, '2025-04-04 11:14:07', 0, NULL, 0, NULL, 1),
(10116, 24661, 'Renult nissan technology business center of india ', 'System engineer ', '2024-08-26', 20000.00, '1970-01-01', 20000.00, 'Chengalpet ', '2', '0 years 7 months', ' IT conduct will be close to soon ', 1, '2025-04-07 04:40:42', 1, '2025-04-07 04:41:50', 0, NULL, 1),
(10117, 24659, 'Altruist Technology pvt Ltd ', 'Customer service Executive ', '2022-01-22', 15000.00, '2022-07-25', 15000.00, 'Chennai ', '1', '0 years 6 months', ' ', 1, '2025-04-07 05:32:24', 0, NULL, 0, NULL, 1),
(10118, 24659, 'Shing yang pvt Ltd ', 'Trainee Marine Engineer ', '2022-11-11', 25000.00, '2023-11-25', 25000.00, 'Malaysia ', '1', '1 years 0 months', 'Health issues in aboard sea side', 1, '2025-04-07 05:35:41', 0, NULL, 0, NULL, 1),
(10119, 24665, 'Fedbank ', 'MIS coordinator ', '2024-05-01', 17.00, '2025-02-25', 17.00, 'Skywalk mall', '1', '0 years 9 months', ' ', 1, '2025-04-07 05:53:20', 0, NULL, 0, NULL, 1),
(10120, 24669, 'Chai point ', 'Voice process ', '2019-12-11', 10000.00, '2025-01-02', 20000.00, 'Chennai Guindy ', '1', '5 years 0 months', ' ', 1, '2025-04-07 06:15:59', 0, NULL, 0, NULL, 1),
(10121, 24670, 'Happy maids', 'Telecalling ', '2021-03-07', 12000.00, '2022-06-09', 15000.00, 'Valasaravakkam ', '1', '1 years 3 months', 'That office Shift in Solinaglur so I was resigned it\'s very long distance for my house ', 1, '2025-04-07 06:48:57', 0, NULL, 0, NULL, 1),
(10122, 24671, 'Collman service pvt ltd', 'Telecaller', '2024-10-04', 12000.00, '1970-01-01', 17000.00, 'Koyembedu,chennai', '2', '0 years 6 months', ' Looking for roles with more responsibility, higher levels of management, or greater opportunities for growth. ', 1, '2025-04-07 10:05:31', 0, NULL, 0, NULL, 1),
(10123, 24622, 'I digital', 'Data entry', '2024-07-08', 16000.00, '2025-01-23', 16000.00, 'ekkattuthangal', '1', '0 years 6 months', ' Salary problem, ', 1, '2025-04-08 06:26:03', 0, NULL, 0, NULL, 1),
(10124, 24622, 'I digital', 'Data entry ', '2024-07-08', 16000.00, '2025-01-23', 16000.00, 'ekkattuthangal', '1', '0 years 6 months', 'Government exam prepare', 1, '2025-04-08 06:28:20', 154, '2025-04-08 12:44:01', 0, NULL, 0),
(10125, 24682, 'Just dial', 'Telemarketing', '2023-09-20', 15000.00, '1970-01-01', 15000.00, 'Little mount', '2', '1 years 6 months', ' ', 1, '2025-04-08 06:33:36', 0, NULL, 0, NULL, 1),
(10126, 24683, 'SRI RAM INSURANCE', 'SALES', '2025-01-01', 15000.00, '2025-03-01', 15000.00, 'EKKATTUTHANGAL', '1', '0 years 3 months', 'FAMILY ISSUES', 154, '2025-04-08 12:06:18', 154, '2025-04-08 12:06:40', 0, NULL, 1),
(10127, 24684, 'Bharath finical inclusion limited 100% subsidiary ', 'Thanjavur ', '2025-02-24', 15000.00, '1970-01-01', 15000.00, 'Thanjavur ', '2', '0 years 1 months', ' Shutdown the bmo officers process though out tamilnadu ', 1, '2025-04-08 07:23:43', 0, NULL, 0, NULL, 1),
(10128, 24686, 'Altruiat technologies ', 'Sql associate ', '2023-09-14', 10800.00, '1970-01-01', 10800.00, 'Solinganallur', '2', '1 years 6 months', ' Get more exposure and salary hike', 1, '2025-04-08 09:17:02', 0, NULL, 0, NULL, 1),
(10129, 24686, 'Nandi toyota motor world', 'Warranty executive', '2018-08-14', 8000.00, '2019-12-26', 20000.00, 'Banglore', '1', '1 years 4 months', ' Covid ', 1, '2025-04-08 09:24:42', 0, NULL, 0, NULL, 1),
(10130, 24686, 'Altruiat technologies ', 'Sql associate ', '2023-09-14', 10800.00, '1970-01-01', 10800.00, 'Chennai', '2', '1 years 6 months', 'Want more exposure &  salary increment', 1, '2025-04-08 09:26:11', 1, '2025-04-08 09:26:42', 0, NULL, 0),
(10131, 24687, 'almeen store', 'sales person', '2023-01-05', 13000.00, '2024-12-31', 13000.00, 'koambedu', '1', '1 years 11 months', 'personal reasons', 154, '2025-04-08 03:10:57', 0, NULL, 0, NULL, 1),
(10132, 24694, 'bankbazzar pvt ltd', 'customer relationship manager', '2022-11-01', 15000.00, '2025-01-01', 20000.00, 'ambattur', '1', '2 years 2 months', 'taking care of father', 154, '2025-04-09 12:15:14', 0, NULL, 0, NULL, 1),
(10133, 24699, 'ELIOR INDIA FOOD SERVICE LLP', 'Account executive', '2024-01-16', 19500.00, '1970-01-01', 270000.00, 'Bangalore', '2', '1 years 2 months', ' ', 1, '2025-04-09 09:52:32', 0, NULL, 0, NULL, 1),
(10134, 24703, 'Muthoot finance ', 'Junior relationship executive ', '2023-06-05', 10000.00, '2025-03-05', 19750.00, 'Thambuchetty street', '1', '1 years 9 months', ' Career growth ', 1, '2025-04-10 04:59:00', 0, NULL, 0, NULL, 1),
(10135, 24702, 'exterprise', 'data process associates', '2024-04-01', 16000.00, '2024-10-25', 16000.00, 'mountroad ', '1', '0 years 6 months', ' Salary issues', 1, '2025-04-10 05:03:21', 0, NULL, 0, NULL, 1),
(10136, 24705, 'Cholamandalam finance private limited ', 'Team lead executive ', '2023-07-28', 12000.00, '2025-02-06', 14000.00, 'Guduvanchery ', '1', '1 years 6 months', ' It\'s company lay off', 1, '2025-04-10 05:32:26', 0, NULL, 0, NULL, 1),
(10137, 24709, 'zealous service', 'customer support executive', '2017-08-01', 8000.00, '2019-09-01', 13000.00, 'Chennai', '1', '2 years 1 months', ' Carrier growth', 1, '2025-04-10 10:57:02', 154, '2025-04-12 11:56:22', 0, NULL, 1),
(10138, 24716, 'Hcl technologies ', 'Process associate ', '2024-01-04', 200000.00, '2025-01-10', 200000.00, 'Navalur ', '1', '1 years 0 months', ' I want to increase my skills and to explore strategic project ', 1, '2025-04-11 06:00:47', 0, NULL, 0, NULL, 1),
(10139, 24719, 'Jubilamt food works', 'Business associated', '2022-01-17', 14000.00, '2024-06-20', 14000.00, 'Flower road', '1', '2 years 5 months', ' It\'s other sector ', 1, '2025-04-12 02:32:58', 0, NULL, 0, NULL, 1),
(10140, 24721, 'Indian bulls dhani loan', 'Collection process', '2023-09-21', 20000.00, '2024-09-25', 20000.00, 'Chennai', '1', '1 years 0 months', 'Office shifting for another location taramani', 1, '2025-04-12 05:54:09', 0, NULL, 0, NULL, 1),
(10141, 24720, 'India Bulls dhani ', 'Collection process ', '2024-02-15', 17000.00, '2025-02-10', 20000.00, 'Aminjikarai ', '1', '0 years 11 months', ' Office change to Taramani ', 1, '2025-04-12 05:59:59', 0, NULL, 0, NULL, 1),
(10142, 24709, 'bajaj finance pvt ltd', 'senior executive', '2024-06-01', 20000.00, '1970-01-01', 20000.00, 'chennai', '2', '0 years 10 months', 'not relived yet', 154, '2025-04-12 11:56:11', 0, NULL, 0, NULL, 1),
(10143, 24706, 'Tele performance ', 'Associate ', '2022-06-16', 18000.00, '2022-07-22', 18000.00, 'Bangalore', '1', '0 years 1 months', ' For better growth and carrier opportunities ', 1, '2025-04-12 07:28:57', 0, NULL, 0, NULL, 1),
(10144, 24723, 'teleperformance ', 'sales associate', '2021-06-16', 18000.00, '2022-07-12', 18000.00, 'banglore', '1', '1 years 0 months', 'relloacting and ton help father business', 154, '2025-04-12 01:07:36', 0, NULL, 0, NULL, 1),
(10145, 24725, 'BRITANYA COMPANY', 'CHECKING MANAGER', '2018-01-12', 12000.00, '2018-01-01', 18000.00, 'MYLAPORE', '1', '0 years 0 months', 'DISTANCE ', 154, '2025-04-12 03:11:48', 0, NULL, 0, NULL, 1),
(10146, 24728, 'HDFC ERGO GIC LTD ', 'Operation senior executive ', '2022-07-07', 22000.00, '2025-02-14', 23000.00, 'Chennai Ashok Nagar ', '1', '2 years 7 months', ' Family situation ', 1, '2025-04-15 06:04:21', 0, NULL, 0, NULL, 1),
(10147, 24729, 'Tata docomo ', 'Telesales', '2016-04-10', 5500.00, '2016-11-10', 5500.00, 'Hyderabad ', '1', '0 years 7 months', ' Due to marriage ', 1, '2025-04-15 06:53:22', 0, NULL, 0, NULL, 1),
(10148, 24729, 'Ebix cash ', 'Customer support ', '2022-03-03', 12000.00, '2023-11-01', 14000.00, 'Choolaimedu ', '1', '1 years 7 months', 'Promoted to trainer can\'t able to handle ', 1, '2025-04-15 06:55:36', 0, NULL, 0, NULL, 1),
(10149, 24730, 'webberax', 'customer support analyst', '2022-04-20', 20000.00, '2023-09-07', 27000.00, 'chennai', '1', '1 years 4 months', ' Layoff', 1, '2025-04-15 07:46:39', 0, NULL, 0, NULL, 1),
(10150, 24733, 'Mallika Furniture And Electronic ', 'Thanjavur ', '2024-02-05', 15000.00, '1970-01-01', 17500.00, 'Thanjavur', '2', '1 years 2 months', ' ', 1, '2025-04-16 04:44:38', 0, NULL, 0, NULL, 1),
(10151, 24732, 'Soundrapandi suppama girl\'s higher secondary schoo', 'PG teacher ', '2020-09-14', 15000.00, '2025-03-27', 20000.00, 'Chennai ', '1', '4 years 6 months', ' Due to some spinal card issues', 1, '2025-04-16 04:48:50', 0, NULL, 0, NULL, 1),
(10152, 24735, 'Sbi bank ', 'Seals executive ', '2023-05-09', 130000.00, '2024-02-03', 15000.00, 'Kumbakonam', '1', '0 years 8 months', ' Health issues ', 1, '2025-04-16 04:59:33', 0, NULL, 0, NULL, 1),
(10153, 24736, 'Shriram finance limited ', 'Telecalling ', '2024-12-14', 13000.00, '2025-03-29', 13000.00, 'Georg town', '1', '0 years 3 months', 'Less salary ', 1, '2025-04-16 04:59:40', 0, NULL, 0, NULL, 1),
(10154, 24731, 'SBI BANK RBO IT corridor  (HEAD OFFICE)', 'Telecaller ', '2024-10-21', 15000.00, '2025-03-29', 15000.00, 'Guindy ', '1', '0 years 5 months', ' Contract work ', 1, '2025-04-16 05:10:14', 0, NULL, 0, NULL, 1),
(10155, 24734, 'naveena t', 'accounts', '2024-01-01', 13000.00, '2025-04-16', 18500.00, 'Thanjavur ', '2', '1 years 3 months', ' Timeing Problem ', 1, '2025-04-16 05:25:19', 0, NULL, 0, NULL, 1),
(10156, 24740, 'Om innovation', 'sales executive ', '2024-05-22', 15000.00, '2024-09-30', 15000.00, 'chetpet', '1', '0 years 4 months', 'That process is closed ', 1, '2025-04-16 08:11:10', 0, NULL, 0, NULL, 1),
(10157, 24747, 'Moon agency', 'Telecaller', '2021-06-17', 13000.00, '2022-07-17', 13000.00, 'Ayyempettai', '1', '1 years 1 months', ' Marriage', 1, '2025-04-17 05:42:33', 0, NULL, 0, NULL, 1),
(10158, 24748, 'Prakala wealth pvt ltd ', 'Operation lead & customer support ', '2024-07-08', 12000.00, '2025-01-31', 15000.00, 'R A Puram ', '1', '0 years 6 months', ' Medical Issues ', 1, '2025-04-17 06:17:07', 0, NULL, 0, NULL, 1),
(10159, 24752, 'ICCI', 'Telecaller', '2024-02-12', 12000.00, '1970-01-01', 12000.00, 'Chennai', '2', '1 years 2 months', ' Salary issues', 1, '2025-04-17 09:16:57', 0, NULL, 0, NULL, 1),
(10160, 24753, 'RELIABLE SOLUTION COMPANY', 'INSURANCE VERIFICATION', '2023-04-17', 15000.00, '2025-03-01', 15000.00, 'AYANAVARAM', '1', '1 years 10 months', 'VENDOR STOPPED THE PROCESS', 154, '2025-04-17 04:55:12', 0, NULL, 0, NULL, 1),
(10161, 24755, 'SBI FUTURZ SOLUTION ', 'Sales executive ', '2024-08-05', 20000.00, '2025-02-28', 20000.00, 'Nungambakkam ', '1', '0 years 6 months', 'Mother health issue  and salary', 1, '2025-04-18 05:25:29', 0, NULL, 0, NULL, 1),
(10162, 24761, 'Dream work management finance and business solutio', 'Tele sales officer ', '2024-02-01', 12000.00, '2025-02-13', 12000.00, 'Ashok pillar kasitheter Jafferkhanpet, Chennai ', '1', '1 years 0 months', ' Health issues ', 1, '2025-04-18 05:26:58', 0, NULL, 0, NULL, 1),
(10163, 24766, 'Unique business solutions ', 'Sales telecaller', '2024-06-10', 2024.00, '2025-03-28', 15000.00, 'Perambur ', '1', '0 years 9 months', 'No learning , low benefits for employees', 1, '2025-04-18 06:49:58', 0, NULL, 0, NULL, 1),
(10164, 24771, 'Elite funding service ', 'Sales executive ', '2024-01-05', 13000.00, '2025-03-05', 13000.00, 'Kolathur ', '1', '1 years 2 months', ' No improvement ', 1, '2025-04-19 05:55:55', 0, NULL, 0, NULL, 1),
(10165, 24784, 'Innovsorce service pvt ltd', 'Branch relationship executive ', '2023-05-29', 200000.00, '2024-08-20', 200000.00, 'T nagar', '1', '1 years 2 months', ' Personal issues ', 1, '2025-04-19 09:06:09', 0, NULL, 0, NULL, 1),
(10166, 24786, 'HDFC Sales pvt ltd', 'Loan officer ', '2024-01-08', 19000.00, '2025-03-13', 19000.00, 'Vadapalani', '1', '1 years 2 months', ' ', 1, '2025-04-19 09:21:57', 0, NULL, 0, NULL, 1),
(10167, 24793, 'Indusind Bank ', 'Executive ', '2022-11-29', 18000.00, '2023-06-07', 18000.00, 'Karappakam (Chennai )', '1', '0 years 6 months', ' Due to health issues ', 1, '2025-04-21 05:41:33', 0, NULL, 0, NULL, 1),
(10168, 24796, 'Fornax bpo ', 'Medical billing ', '2024-08-27', 16000.00, '2025-02-12', 16000.00, 'Lic ', '1', '0 years 5 months', 'Night shift ', 1, '2025-04-21 06:01:34', 0, NULL, 0, NULL, 1),
(10169, 24797, 'Pace settings business solutions pvt ltd ', 'Sales executive ', '2024-01-01', 15000.00, '2024-07-29', 15000.00, 'Nungambakkam ', '1', '0 years 6 months', ' Family issue ', 1, '2025-04-21 06:16:43', 0, NULL, 0, NULL, 1),
(10170, 24794, 'OM innovation ', 'Telecaller', '2021-12-13', 13000.00, '2022-12-27', 14000.00, 'Chetpet', '1', '1 years 0 months', ' Incentive issue', 1, '2025-04-21 06:17:08', 0, NULL, 0, NULL, 1),
(10171, 24798, 'monexo fintech pvt ltd', 'customer service and operations', '2022-06-04', 17000.00, '2024-10-29', 20009.00, 'nungambakam', '1', '2 years 4 months', ' Company ceased operations', 1, '2025-04-21 06:55:55', 0, NULL, 0, NULL, 1),
(10172, 24783, 'Delphi Tvs private limited ', 'Quality engineer ', '2021-11-23', 18000.00, '2024-01-05', 18000.00, 'Thiruvallur ', '1', '2 years 1 months', ' Training period completed ', 1, '2025-04-21 09:48:20', 0, NULL, 0, NULL, 1),
(10173, 24811, 'Bandhan bank ', 'Odugathur', '2022-12-27', 20000.00, '2024-07-16', 20000.00, 'Vellore ', '1', '1 years 6 months', ' Time management ', 1, '2025-04-22 05:04:48', 0, NULL, 0, NULL, 1),
(10174, 24819, 'Oppo', 'Sales executive ', '2023-03-01', 10000.00, '2024-06-01', 18000.00, 'Thiruvarur ', '1', '2 years 1 months', ' Change my location ', 1, '2025-04-22 07:18:43', 0, NULL, 0, NULL, 1),
(10175, 24809, 'Realince Retail Limited ', 'Cashier ', '2023-04-09', 11000.00, '2024-08-08', 11000.00, 'Thanjavur ', '1', '1 years 3 months', ' Timing issue ', 1, '2025-04-22 07:47:54', 0, NULL, 0, NULL, 1),
(10176, 24824, 'Leveraa Info and Solutions Pvt Ltd ', 'Business Development Executive ', '2024-01-02', 20.00, '2024-12-31', 20.00, 'Coimbatore ', '1', '0 years 11 months', ' Personal issues ', 1, '2025-04-22 01:36:23', 0, NULL, 0, NULL, 1),
(10177, 24825, 'Infocare engineering services pvt ltd ', 'Hr executive', '2023-06-15', 13000.00, '2024-06-15', 18000.00, 'Chennai', '1', '1 years 0 months', 'To upgrade my skills now recently i have gained my practical knowledge in keka HRMS', 1, '2025-04-22 03:48:16', 0, NULL, 0, NULL, 1),
(10178, 24828, 'L&T FINANCE ', 'Micro loan officer ', '2024-03-13', 14500.00, '2025-04-03', 15500.00, 'Thanjavur', '1', '1 years 0 months', ' ', 1, '2025-04-23 04:54:35', 0, NULL, 0, NULL, 1),
(10179, 24827, 'Indras Agencies pvt ltd ', 'Warehouse executive ', '2023-03-01', 31.00, '1970-01-01', 21700.00, 'Chennai ', '2', '2 years 1 months', ' Everyday late night ( Over time working)', 1, '2025-04-23 05:02:57', 0, NULL, 0, NULL, 1),
(10180, 24833, 'Tech mahindra', 'Customer support', '2023-12-06', 17000.00, '2024-08-03', 23.00, 'Chennai', '1', '0 years 7 months', ' Looking high package ', 1, '2025-04-23 06:46:49', 0, NULL, 0, NULL, 1),
(10181, 24832, 'ISON Experiences Ltd', 'Telesales', '2024-07-20', 14500.00, '1970-01-01', 14500.00, 'Perungudi', '2', '0 years 9 months', 'Agency Period will be finish \nThen process also closed ', 1, '2025-04-23 06:48:43', 0, NULL, 0, NULL, 1),
(10182, 24826, 'JSJ GROUPS OF COMPANY', 'TME', '2025-01-05', 10000.00, '2025-04-15', 20000.00, 'Chennai', '1', '0 years 3 months', ' Becasue hand cash', 1, '2025-04-23 07:36:01', 0, NULL, 0, NULL, 1),
(10183, 24837, 'Matrimony ', 'Payment assistent ', '2025-03-20', 15000.00, '1970-01-01', 15000.00, 'Guindy ', '2', '0 years 1 months', ' It is a evening shift that\'s I can\'t comfortable ', 1, '2025-04-23 07:45:01', 0, NULL, 0, NULL, 1),
(10184, 24836, 'HBD FINANCE SERVICE ', 'Collection process ', '2023-01-01', 14000.00, '2023-05-01', 14000.00, 'Mount road', '1', '0 years 4 months', 'Growth ', 1, '2025-04-23 07:54:05', 0, NULL, 0, NULL, 1),
(10185, 24791, 'Amtex system ', 'Health relationship officer ', '2024-10-04', 21750.00, '2025-04-30', 21750.00, 'Siruseri, navalur, chennai ', '1', '0 years 6 months', ' I am seeking a new opportunity due to challenges in managing my financial commitments, as the current salary credit date falls on the 15th of each month. A more aligned salary schedule would help me ensure better financial stability and planning', 1, '2025-04-23 09:37:12', 0, NULL, 0, NULL, 1),
(10186, 24840, 'Amtex', 'HRO', '2024-10-16', 24000.00, '1970-01-01', 22000.00, 'Siruseri ', '2', '0 years 6 months', '  It\'s to long from home', 1, '2025-04-23 09:41:47', 0, NULL, 0, NULL, 1),
(10187, 24843, 'SRI collage ', '2D Animation ', '2020-12-05', 10000.00, '2022-03-10', 10000.00, 'Vandavasi ', '1', '1 years 3 months', ' ', 1, '2025-04-24 05:32:41', 0, NULL, 0, NULL, 1),
(10188, 24843, 'Spellbound  vfx', 'Paint artist ', '2022-06-03', 15000.00, '2023-06-10', 15000.00, 'Chennai ', '1', '1 years 0 months', 'No project ', 1, '2025-04-24 05:34:59', 0, NULL, 0, NULL, 1),
(10189, 24844, 'Vizza broking services and Pvt Ltd ', 'TME', '2023-12-19', 12000.00, '2024-12-20', 20000.00, 'Madurai ', '1', '1 years 0 months', 'Low salary ', 1, '2025-04-24 07:26:36', 0, NULL, 0, NULL, 1),
(10190, 24846, 'sree seashore marketing', 'accountant', '2021-06-24', 10.00, '2024-06-22', 17000.00, 'trichirappali', '1', '2 years 11 months', 'long distance', 1, '2025-04-24 07:38:19', 0, NULL, 0, NULL, 1),
(10191, 24847, 'Matrimony. Com', 'Customer service support', '2019-06-20', 12000.00, '2021-04-24', 12000.00, 'Chennai', '1', '1 years 10 months', ' Personal issues', 1, '2025-04-24 08:43:14', 0, NULL, 0, NULL, 1),
(10192, 24853, 'LEMON PEAK MARKETING SERVICES ', 'Customer support ', '2024-10-07', 20000.00, '2025-04-15', 20000.00, 'Nungambakkam, Chennai ', '1', '0 years 6 months', ' Its a complete night shift process so after 6 months started to face some health issues hence relieved', 1, '2025-04-25 07:35:58', 0, NULL, 0, NULL, 1),
(10193, 24854, 'FPL hyundai', 'Showroom   sales', '2021-04-25', 16500.00, '2021-04-30', 21500.00, 'Kavankarai', '1', '0 years 0 months', ' ', 1, '2025-04-25 01:26:55', 0, NULL, 0, NULL, 1),
(10194, 24854, 'Chennai medical', 'Sales', '2021-01-29', 17600.00, '2021-04-30', 21300.00, 'Tondairpet', '1', '0 years 3 months', 'Met an accident', 1, '2025-04-25 01:29:15', 0, NULL, 0, NULL, 1),
(10195, 24855, 'SV Smart Financial Services ', 'Operation Assistant ', '2023-04-22', 22000.00, '2025-01-01', 22000.00, 'Indiranagar ', '1', '1 years 8 months', 'Long Distance ', 1, '2025-04-26 05:29:22', 0, NULL, 0, NULL, 1),
(10196, 24810, 'Reliable Data Services Pvt Ltd', 'Account executive', '2024-02-14', 12.00, '2025-03-14', 12.00, 'chennai', '1', '1 years 1 months', 'Shift Changes', 1, '2025-04-26 06:45:24', 0, NULL, 0, NULL, 1),
(10197, 24859, 'Bankbazaar ', 'Senior customer relationship officer ', '2022-08-10', 15000.00, '2025-02-04', 21000.00, 'Ambattur', '1', '2 years 5 months', ' Distance', 1, '2025-04-26 10:16:34', 0, NULL, 0, NULL, 1),
(10198, 24861, 'Poorvika mobiles', 'Junior executive', '2023-07-19', 13000.00, '2025-03-10', 15000.00, 'Chennai', '1', '1 years 7 months', ' Family issues', 1, '2025-04-26 10:48:22', 0, NULL, 0, NULL, 1),
(10199, 24862, 'Lemonpeak ', 'Customer service executive and customer support ex', '2025-01-20', 18000.00, '1970-01-01', 18000.00, 'Nungambakkam ', '2', '0 years 3 months', ' ', 1, '2025-04-27 04:54:11', 0, NULL, 0, NULL, 1),
(10200, 24862, 'Lemonpeak company ', 'Customer service executive and customer support ex', '2025-01-20', 18000.00, '1970-01-01', 18000.00, 'Nungambakkam Chennai ', '2', '0 years 3 months', 'Night shift wanna to change to day shift ', 1, '2025-04-27 04:55:31', 0, NULL, 0, NULL, 1),
(10201, 24863, 'Deccan I Service ', 'Date entry and Customer service ', '2019-06-12', 8000.00, '2021-04-03', 13000.00, 'Pallavaram ', '1', '1 years 9 months', ' Upgrade to foreign ', 1, '2025-04-28 03:58:55', 0, NULL, 0, NULL, 1),
(10202, 24864, 'Quess corporation Pvt Ltd ', 'Recovery manager', '2020-12-02', 12000.00, '2021-06-24', 16500.00, 'Anthiyur ', '1', '0 years 6 months', '  No growth', 1, '2025-04-28 04:11:55', 0, NULL, 0, NULL, 1),
(10203, 24867, 'Vizza Broking Insurance Pvt Ltd', 'Tele caller ', '2024-04-23', 12000.00, '1970-01-01', 12000.00, 'Madurai ', '2', '1 years 0 months', ' My father illness so I can leave the job', 1, '2025-04-28 05:45:34', 0, NULL, 0, NULL, 1),
(10204, 24868, 'Shriram finance ', 'Business executive ', '2024-11-15', 17000.00, '1970-01-01', 17000.00, 'chennai', '2', '0 years 5 months', ' ', 1, '2025-04-28 06:06:08', 0, NULL, 0, NULL, 1),
(10205, 24876, 'flat world solution', 'process associate', '2023-10-09', 16500.00, '1970-01-01', 20000.00, 'jp nagar', '2', '1 years 6 months', ' Get a better opportunities', 1, '2025-04-28 11:08:53', 0, NULL, 0, NULL, 1),
(10206, 24881, 'Optivel health solutions private limited ', 'Audit assistant ', '2022-01-29', 12000.00, '2024-12-31', 15000.00, 'chennai', '1', '2 years 11 months', 'Because of no value ', 1, '2025-04-29 05:11:54', 0, NULL, 0, NULL, 1),
(10207, 24880, 'Access health care ', 'Client partner ', '2023-07-19', 12500.00, '2025-02-10', 15000.00, 'Ambathur ', '1', '1 years 6 months', ' Salary reason ', 1, '2025-04-29 05:20:08', 0, NULL, 0, NULL, 1),
(10208, 24878, 'Vignesh R ', 'Teller ', '2025-05-05', 18500.00, '2025-05-07', 18500.00, 'Chennai ', '1', '0 years 0 months', ' ', 1, '2025-04-29 05:31:54', 0, NULL, 0, NULL, 1),
(10209, 24883, 'HDB Financial service ', 'Telecalling ', '2024-04-08', 15000.00, '2025-02-28', 12500.00, 'Thousand light ', '1', '0 years 10 months', 'Health issues ', 1, '2025-04-29 07:06:11', 0, NULL, 0, NULL, 1),
(10210, 24884, 'MMC infotech pvt lid', 'Backend operation', '2023-02-07', 14000.00, '2024-02-29', 14000.00, 'Pattinampakkam', '1', '1 years 0 months', 'Health issues', 1, '2025-04-29 07:13:18', 0, NULL, 0, NULL, 1),
(10211, 24884, 'HDB financial services', 'Telemarketing Executive', '2024-04-18', 15000.00, '2025-03-03', 15000.00, 'Thousand lights', '1', '0 years 10 months', 'For Growth ', 1, '2025-04-29 07:15:37', 0, NULL, 0, NULL, 1),
(10212, 24895, '-Day n day', 'chennai', '2017-06-03', 12000.00, '2022-04-08', 22000.00, 'tamilnadu', '1', '4 years 10 months', ' ', 1, '2025-04-30 05:52:12', 0, NULL, 0, NULL, 1),
(10213, 24895, ' hdfc', 'chennai', '2022-05-04', 16000.00, '2023-06-07', 16000.00, 'tamilnadu', '1', '1 years 1 months', 'Salary not giving correct date', 1, '2025-04-30 05:54:21', 0, NULL, 0, NULL, 1),
(10214, 24895, 'telecalling', 'chennai', '2023-06-08', 17000.00, '2024-02-09', 17000.00, 'tamilnadu', '1', '0 years 8 months', 'Timing not set ', 1, '2025-04-30 05:56:48', 0, NULL, 0, NULL, 1),
(10215, 24895, 'khazana', ' chennai', '2024-03-08', 22000.00, '2025-04-05', 22000.00, 'tamilnadu', '1', '1 years 0 months', 'Personal problem', 1, '2025-04-30 05:58:18', 0, NULL, 0, NULL, 1),
(10216, 24904, 'HDFC bank ', 'Chennai ', '2022-05-02', 12000.00, '2023-05-10', 12000.00, 'Saidapet ', '1', '1 years 0 months', 'College exams ', 1, '2025-05-02 05:09:18', 0, NULL, 0, NULL, 1),
(10217, 24903, 'Manipal business solution ', 'Retainer', '2025-03-03', 17000.00, '1970-01-01', 17000.00, 'Chennai ', '2', '0 years 1 months', ' I\'m leaving my current company because I don\'t see any growth opportunities there.', 1, '2025-05-02 05:33:10', 0, NULL, 0, NULL, 1),
(10218, 24915, 'matrimony.com', 'service executive', '2024-02-02', 12000.00, '2025-03-14', 15000.00, 'guindy .chennai', '1', '1 years 1 months', ' for my growth', 1, '2025-05-02 06:31:54', 0, NULL, 0, NULL, 1),
(10219, 24920, 'Bluechip investment', 'Sales and marketing', '2024-11-14', 16000.00, '2025-04-04', 20000.00, 'Tambaram', '1', '0 years 4 months', ' Personal issue', 1, '2025-05-02 11:40:04', 0, NULL, 0, NULL, 1),
(10220, 24921, 'HCL Technologies ', 'Customer Service Representative ', '2022-10-14', 20000.00, '2024-04-30', 20000.00, 'Sholinganaloor', '1', '1 years 6 months', 'Faced health issues, due to night shift ', 1, '2025-05-03 06:26:27', 0, NULL, 0, NULL, 1),
(10221, 24924, 'Hc insurance senior representative ', 'Data entry ', '2022-12-23', 13000.00, '2024-05-17', 16000.00, 'Coimbatore ', '1', '1 years 4 months', ' Due to Family &health  isues i was unable to continue in the organisation.', 1, '2025-05-03 01:05:49', 0, NULL, 0, NULL, 1),
(10222, 24928, 'Sutherland ', 'Operations ', '2024-09-14', 22000.00, '2025-03-28', 25000.00, 'Chennai ', '1', '0 years 6 months', ' ', 1, '2025-05-05 06:23:37', 0, NULL, 0, NULL, 1),
(10223, 24931, 'Shriram life insurance company limited ', 'Renewal department ', '2023-01-20', 2.00, '2025-04-02', 18300.00, 'Egmore ', '1', '2 years 2 months', ' ', 1, '2025-05-05 09:54:25', 0, NULL, 0, NULL, 1),
(10224, 24935, 'royal sundaram general insurance compq', 'back office Associate ', '2022-12-22', 15000.00, '2024-06-30', 17000.00, 'nungambakkam', '1', '1 years 6 months', ' Health issue ', 1, '2025-05-06 04:56:28', 0, NULL, 0, NULL, 1),
(10225, 24942, 'Bajaj Finserv ', 'Sales', '2024-06-01', 17500.00, '2025-03-15', 17500.00, 'Chennai ', '1', '0 years 9 months', ' ', 1, '2025-05-06 07:17:38', 0, NULL, 0, NULL, 1),
(10226, 24942, 'KOTAK MAHINDRA BANK ', 'Sales ', '2024-02-10', 12000.00, '2024-12-10', 12000.00, 'Chennai ', '1', '0 years 10 months', 'Health issue', 1, '2025-05-06 07:20:25', 0, NULL, 0, NULL, 1),
(10227, 24941, 'Sutherland global services private limited ', 'Customer support ', '2023-03-20', 17000.00, '2024-11-20', 17000.00, 'Perugalathur ', '1', '1 years 8 months', ' Health issues ', 1, '2025-05-06 07:21:27', 0, NULL, 0, NULL, 1),
(10228, 24950, 'AXIS BANK LTD', 'BDE', '2023-08-24', 18000.00, '2024-10-02', 18000.00, 'CHENNAI', '1', '1 years 1 months', 'Marriage ', 1, '2025-05-07 07:48:57', 0, NULL, 0, NULL, 1),
(10229, 24951, 'Salman ahmed .k', 'Ambattur', '2021-06-06', 18000.00, '1970-01-01', 18000.00, 'Ambattur', '2', '3 years 11 months', ' Long distance', 1, '2025-05-07 09:34:52', 0, NULL, 0, NULL, 1),
(10230, 24955, 'Medplus ', 'Sales executive ', '2022-09-03', 12000.00, '2024-06-11', 15000.00, 'Thiruvottiyur ', '1', '1 years 9 months', ' For growth my career and interested in work for my qualification related jobs ', 1, '2025-05-07 01:20:05', 0, NULL, 0, NULL, 1),
(10231, 24955, 'NAAN MUDHALVAN ', 'Trainer of mutual funds , wealth management , bank', '2024-12-18', 30000.00, '2025-03-20', 30000.00, 'Field colleges ', '1', '0 years 3 months', 'Course completed for 2024 to 2025 batch ', 1, '2025-05-07 01:24:22', 0, NULL, 0, NULL, 1),
(10232, 24955, 'Ma medical ', 'Sales executive ', '2024-08-14', 13000.00, '1970-01-01', 18000.00, 'Kaladipet', '2', '0 years 8 months', 'Currently working ', 1, '2025-05-07 01:26:28', 0, NULL, 0, NULL, 1),
(10233, 24952, 'Byjus', 'Bda', '2022-07-01', 34000.00, '2023-02-01', 33000.00, 'Coimbatore ', '1', '0 years 7 months', ' Own sister passed away', 1, '2025-05-08 05:02:17', 0, NULL, 0, NULL, 1),
(10234, 24958, 'Shriram finance Limited ', 'Business Executive ', '2023-09-07', 16000.00, '2024-12-11', 16000.00, 'George Town', '1', '1 years 3 months', ' Personal reason ', 1, '2025-05-08 05:18:40', 0, NULL, 0, NULL, 1),
(10235, 24954, 'Icici bank', 'Branch relationship officer', '2021-03-01', 10000.00, '2022-05-31', 14000.00, 'Ariyalur', '1', '1 years 2 months', ' Career growth and salary package', 1, '2025-05-08 05:30:44', 0, NULL, 0, NULL, 1),
(10236, 24954, 'HDB financial services', 'Sales executive', '2022-08-15', 12000.00, '1970-01-01', 14000.00, 'Thanjavur', '2', '2 years 8 months', 'Career growth and salary package', 1, '2025-05-08 05:32:35', 0, NULL, 0, NULL, 1),
(10237, 24959, 'Banking ', 'Chennai ', '2024-05-18', 8000.00, '2025-04-30', 8000.00, 'No:1,Club house road Chennai 600002', '1', '0 years 11 months', ' Higher education ', 1, '2025-05-08 05:59:02', 0, NULL, 0, NULL, 1),
(10238, 24970, 'Shriram life insurance ', 'Sales executive ', '2024-04-09', 18000.00, '2024-12-26', 18000.00, 'Chennai,egmore', '1', '0 years 8 months', ' ', 1, '2025-05-09 06:24:39', 0, NULL, 0, NULL, 1),
(10239, 24975, 'Telesales ', 'Sales ', '2024-11-01', 22000.00, '2025-04-22', 22000.00, 'Chennai ', '1', '0 years 5 months', ' Increase camunication ', 1, '2025-05-09 08:06:42', 0, NULL, 0, NULL, 1),
(10240, 24976, 'Conneqt business solution ltm', 'Telecaller ', '2023-08-01', 20000.00, '2024-05-09', 20000.00, 'Chennai ', '1', '0 years 9 months', 'For MBA exam', 1, '2025-05-09 10:07:48', 0, NULL, 0, NULL, 1),
(10241, 24986, 'Team lease', 'Tele caller ', '2021-03-12', 16000.00, '2021-09-17', 16000.00, 'Coimbedu', '1', '0 years 6 months', ' I studied ug ', 1, '2025-05-10 05:45:21', 0, NULL, 0, NULL, 1),
(10242, 24992, 'amtex', 'ustomer support', '2024-10-03', 2.64, '2025-04-30', 2.64, 'hennai', '1', '0 years 6 months', ' ', 1, '2025-05-10 12:57:33', 0, NULL, 0, NULL, 1),
(10243, 24978, 'Allzone management solutions ', 'Process Trainee', '2023-06-08', 10000.00, '2024-07-15', 10000.00, 'Kodambakkam', '1', '1 years 1 months', ' Salary insufficient ', 1, '2025-05-12 04:26:48', 0, NULL, 0, NULL, 1),
(10244, 24997, 'Vision property ', 'Business partner ', '2023-11-01', 15000.00, '2024-12-31', 150000.00, 'Trichy ', '1', '1 years 1 months', ' Studies ', 1, '2025-05-12 04:55:00', 0, NULL, 0, NULL, 1),
(10245, 25012, 'Kotak Mahindra bank limited ', 'Jr executive ', '2023-02-09', 15230.00, '2024-06-27', 15230.00, 'Chennai', '1', '1 years 4 months', ' Medical issue ', 1, '2025-05-13 04:36:20', 0, NULL, 0, NULL, 1),
(10246, 25013, 'rsnadian info tech', 'coordinator', '2024-09-01', 16000.00, '2025-05-10', 16000.00, 'mountroad', '1', '0 years 8 months', 'not copmfort for that joib', 1, '2025-05-13 05:38:09', 0, NULL, 0, NULL, 1),
(10247, 25015, 'Kotak Mahindra Bank ', 'Junior associate ', '2024-02-01', 20000.00, '2025-04-30', 18500.00, 'Egmore ', '1', '1 years 2 months', ' In Kotak Mahindra Bank has closed the credit card section Thay y am reliving the job.', 1, '2025-05-13 07:29:54', 0, NULL, 0, NULL, 1),
(10248, 25017, 'Kotak Mahindra Bank ', 'Junior Associate ', '2024-02-01', 17000.00, '2025-04-30', 17000.00, 'Egmore ', '1', '1 years 2 months', ' For banned the Kotak credit card process ', 1, '2025-05-13 07:30:44', 0, NULL, 0, NULL, 1),
(10249, 25015, 'Kotak Mahindra Bank ', 'Junior associate ', '2024-02-01', 17500.00, '2025-04-30', 20000.00, 'Egy', '1', '1 years 2 months', 'In Kotak Mahindra Bank had closed the credit card that y am reliving the job ', 1, '2025-05-13 07:31:12', 0, NULL, 0, NULL, 1),
(10250, 25017, 'Kotak Mahindra Bank ', 'Junior Associate ', '2024-02-01', 17000.00, '2025-04-30', 17000.00, 'Egmore ', '1', '1 years 2 months', 'For banned the Kotak credit card ', 1, '2025-05-13 07:32:44', 1, '2025-05-13 07:33:00', 0, NULL, 0),
(10251, 25019, 'TNEB (tangedco)ICCS', 'Telecaller', '2023-11-07', 12500.00, '2025-05-10', 12500.00, 'Lic ', '1', '1 years 6 months', ' Long distance and salary issue ', 1, '2025-05-13 08:06:09', 0, NULL, 0, NULL, 1),
(10252, 25016, 'Cameo ', 'Tel caller ', '2024-08-01', 15000.00, '2025-05-05', 15000.00, 'Lic', '1', '0 years 9 months', ' Health issues and salary issues', 1, '2025-05-13 08:08:03', 0, NULL, 0, NULL, 1),
(10253, 25010, 'conneqt solution', 'collection process', '2023-08-02', 17000.00, '2024-10-25', 17000.00, 'guindy', '1', '1 years 2 months', ' the process was closed', 1, '2025-05-13 10:10:52', 0, NULL, 0, NULL, 1),
(10254, 25023, 'highcourt', 'files checking', '2023-12-15', 15000.00, '2024-02-20', 15000.00, 'paris', '1', '0 years 2 months', ' low salary', 1, '2025-05-13 10:25:25', 0, NULL, 0, NULL, 1),
(10255, 25023, 'highcourt', 'files checking', '2023-12-15', 15000.00, '2024-02-20', 15000.00, 'paris', '1', '0 years 2 months', ' low salary', 1, '2025-05-13 10:25:25', 0, NULL, 0, NULL, 1),
(10256, 25033, 'Justdial ', 'Telesales executive ', '2024-07-08', 28000.00, '2024-12-27', 28000.00, 'Chennai', '1', '0 years 5 months', ' Health issues ', 1, '2025-05-14 06:50:49', 0, NULL, 0, NULL, 1),
(10257, 25033, 'Bharat matrimony ', 'Payment assistance ', '2019-04-06', 17000.00, '2023-07-31', 21000.00, 'Chennai', '1', '4 years 3 months', 'For baby', 1, '2025-05-14 06:51:52', 0, NULL, 0, NULL, 1),
(10258, 25045, 'raaj khosla co pvt ltd', 'process executive', '2022-09-01', 18500.00, '2024-01-31', 20000.00, 'chennai', '1', '1 years 4 months', ' Company have no manpower \nI have work on 12to14hrs\nSo this is a reason to relive my previous company', 1, '2025-05-16 04:43:04', 0, NULL, 0, NULL, 1),
(10259, 25044, 'Susee hyundai ', 'Sales executive ', '2024-10-01', 14000.00, '2025-01-31', 14000.00, 'Madurai ', '1', '0 years 3 months', ' Personal reasons ', 1, '2025-05-16 04:44:03', 0, NULL, 0, NULL, 1),
(10260, 25047, 'SRIRAM LIF INSURANCE', 'TELESALES', '2023-04-10', 21000.00, '2025-04-01', 0.00, 'EGMORE', '1', '1 years 11 months', 'PROCESS Was totally stoped  and as soon as they start  the field sales', 154, '2025-05-16 12:28:55', 0, NULL, 0, NULL, 1),
(10261, 25051, 'Cheeru clinic', 'Clinic work', '2024-10-13', 4500.00, '2025-05-19', 4500.00, 'Umacomplex Signal', '1', '0 years 7 months', ' Expecting for full time job', 1, '2025-05-16 07:48:11', 0, NULL, 0, NULL, 1),
(10262, 25048, 'Wells Fargo ', 'Associate fraud and claims operation representativ', '2023-09-25', 22583.00, '2024-09-22', 22583.00, 'Pallavaram ', '1', '0 years 11 months', ' Met with an accident ', 1, '2025-05-16 08:13:40', 0, NULL, 0, NULL, 1),
(10263, 25055, 'Hayathbasha', 'Tecaller ', '2024-08-16', 18.00, '2025-03-05', 15.00, 'Thanapet', '1', '0 years 6 months', ' Family problem', 1, '2025-05-19 05:27:13', 0, NULL, 0, NULL, 1),
(10264, 25063, 'Neeyamo', 'Verification specialist', '2021-01-25', 10000.00, '2025-04-11', 14300.00, 'Madurai', '1', '4 years 2 months', ' Career growth', 1, '2025-05-20 03:59:16', 0, NULL, 0, NULL, 1),
(10265, 25070, 'Finnovation tech solution ', 'Operation executive ', '2023-07-01', 20000.00, '2025-02-11', 22000.00, 'Bommanahalli,banglore ', '1', '1 years 7 months', ' ', 1, '2025-05-20 12:49:15', 0, NULL, 0, NULL, 1),
(10266, 25041, 'Eximio ', 'Ambattur ', '2023-04-07', 13000.00, '2025-05-01', 13000.00, 'Ambattur estate ', '1', '2 years 0 months', ' Low salary ', 1, '2025-05-21 06:41:00', 0, NULL, 0, NULL, 1),
(10267, 25081, 'orn babies ind pvt ltd ', 'sales exicutive', '2022-04-11', 17000.00, '2025-04-02', 17300.00, 'hrbr layout', '1', '2 years 11 months', 'Born babies This is a franchise \nrented it, so the building owner was renovating the building, so he shifted to another place, so I quit my job.', 1, '2025-05-21 10:13:43', 0, NULL, 0, NULL, 1),
(10268, 25082, 'Landmark insurance broker ', 'Team leader ', '2024-05-27', 22105.00, '2025-05-15', 22105.00, 'Teynampet ', '1', '0 years 11 months', ' Closing telecallig ', 1, '2025-05-21 11:18:07', 0, NULL, 0, NULL, 1),
(10269, 25087, 'arthi scan priva limts (vadapalani)', 'telecaling', '2023-09-13', 15000.00, '2025-03-05', 18000.00, 'Vadapalani', '1', '1 years 5 months', 'Recently my dad death so i refiling the job', 1, '2025-05-22 08:02:17', 0, NULL, 0, NULL, 1),
(10270, 25090, 'Pace setters', 'Telecallee', '2023-01-01', 1.00, '2023-09-07', 15000.00, 'Chennai', '1', '0 years 8 months', ' Process closed', 1, '2025-05-22 08:24:05', 0, NULL, 0, NULL, 1),
(10271, 25090, 'Royal Enfield ', 'Customer support ', '2025-01-01', 1.00, '2025-03-01', 18000.00, 'Chennai', '1', '0 years 2 months', 'Designation changed ', 1, '2025-05-22 08:25:06', 0, NULL, 0, NULL, 1),
(10272, 25102, 'Nokia solution and networking ', 'Quality ', '2018-08-20', 12000.00, '2019-05-05', 12000.00, 'Chennai ', '1', '0 years 8 months', ' Contract job only', 1, '2025-05-22 07:11:14', 0, NULL, 0, NULL, 1),
(10273, 25102, 'Jumoo dairy food private limited ', 'Sales officer ', '2024-02-05', 23000.00, '2024-12-13', 23000.00, 'Tenkasi , Chennai ', '1', '0 years 10 months', 'Every month change the work location ', 1, '2025-05-22 07:14:44', 0, NULL, 0, NULL, 1),
(10274, 25102, 'Policy bazaar ', 'Associate Sales Consultant.', '2024-12-17', 21000.00, '2025-03-15', 21000.00, 'Chennai ', '2', '0 years 2 months', 'Some medical problem ', 1, '2025-05-22 07:18:30', 0, NULL, 0, NULL, 1),
(10275, 25086, 'prPrabhas vcare hair and skin clinic... Bpo.. Role', 'customer support', '2023-09-18', 15000.00, '2024-09-18', 0.00, 'ambattur', '1', '1 years 0 months', ' sister health issue', 1, '2025-05-23 04:24:07', 0, NULL, 0, NULL, 1),
(10276, 25106, 'Tradeindia', 'Relationship manager ', '2024-08-01', 27000.00, '2025-01-22', 27000.00, 'CHENNAI', '1', '0 years 5 months', ' ', 1, '2025-05-23 05:15:15', 0, NULL, 0, NULL, 1),
(10277, 25106, 'Byjus', 'Business development executive ', '2022-03-04', 27000.00, '2024-05-04', 27000.00, 'CHENNAI', '1', '2 years 2 months', 'Company closed ', 1, '2025-05-23 05:16:35', 0, NULL, 0, NULL, 1),
(10278, 25108, 'Trance home service india pvt Ltd ', 'Business development officer ', '2019-04-24', 10.00, '2025-05-28', 18.00, 'Purasaiwalkam ', '1', '6 years 1 months', ' ', 1, '2025-05-23 05:46:16', 0, NULL, 0, NULL, 1),
(10279, 25109, 'Vave engineering private limited ', 'Rebar Detailer', '2019-08-22', 9000.00, '2022-07-10', 11000.00, 'Chennai', '1', '2 years 10 months', ' Company closed due to corona.', 1, '2025-05-23 05:52:36', 0, NULL, 0, NULL, 1),
(10280, 25109, 'ICICI BANK PVT LTD ', 'Virtual Relationship Manager ', '2022-07-11', 18000.00, '2025-02-01', 26000.00, 'Chennai', '1', '2 years 6 months', 'Health issues.', 1, '2025-05-23 05:54:08', 0, NULL, 0, NULL, 1),
(10281, 25113, 'Hdfc bank limited', 'Tele sales officer', '2024-12-27', 300000.00, '2025-01-27', 300000.00, 'Chennai', '1', '0 years 1 months', ' ', 1, '2025-05-23 09:18:20', 0, NULL, 0, NULL, 1),
(10282, 25118, 'Finfortune Financial Services', 'Telecaller', '2024-03-13', 20000.00, '2025-04-12', 20000.00, 'Chennai', '1', '1 years 0 months', ' Personal Issues', 1, '2025-05-24 08:46:08', 0, NULL, 0, NULL, 1),
(10283, 25119, 'Reliable solution ', 'Vendor ', '2022-10-01', 15000.00, '2023-03-28', 18000.00, 'Chennai ', '1', '0 years 5 months', ' Salary ', 1, '2025-05-24 09:48:08', 0, NULL, 0, NULL, 1),
(10284, 25120, 'Enrich money financial solution Madurai ', 'Relationship manager ', '2022-10-03', 10000.00, '2024-04-30', 12000.00, 'Madurai ', '1', '1 years 6 months', ' Marriage ', 1, '2025-05-24 11:14:02', 0, NULL, 0, NULL, 1),
(10285, 25130, 'Shree Abirami Engineering work Pvt Ltd', 'Technical Support ', '2023-06-19', 15000.00, '2025-01-08', 17000.00, 'Porur', '1', '1 years 6 months', ' Health Issues ', 1, '2025-05-26 05:44:02', 0, NULL, 0, NULL, 1),
(10286, 25131, 'Intellect design arena limited', 'Associate consultant', '2024-03-04', 42000.00, '2025-04-30', 42000.00, 'Chennai', '1', '1 years 1 months', ' ', 1, '2025-05-26 06:22:50', 0, NULL, 0, NULL, 1),
(10287, 25133, 'Unique business solution ', 'Cashe department ', '2024-08-10', 14000.00, '2025-01-20', 16000.00, 'Perambur ', '1', '0 years 5 months', ' I have family issue and salary issue ', 1, '2025-05-26 06:54:26', 0, NULL, 0, NULL, 1),
(10288, 25134, 'Unique business solution ', 'Cash collection ', '2024-08-10', 13000.00, '2025-01-20', 14000.00, 'Perambur ', '1', '0 years 5 months', ' Salary late issue ', 1, '2025-05-26 07:06:00', 0, NULL, 0, NULL, 1),
(10289, 25137, 'Saxeo manufacturing ', 'Business development Associate ', '2024-05-07', 15000.00, '2025-01-05', 20000.00, 'Coimbatore ', '1', '0 years 7 months', ' I switch to my career to another industry ', 1, '2025-05-26 12:07:26', 0, NULL, 0, NULL, 1),
(10290, 25137, 'Dezprox solutions ', 'Business development executive (Freelancing)', '2024-02-03', 17000.00, '2025-04-25', 18000.00, 'Karur', '1', '1 years 2 months', 'I am working only freelancing ', 1, '2025-05-26 12:09:11', 0, NULL, 0, NULL, 1),
(10291, 25121, 'non it', 'perungalattur', '2024-09-22', 15000.00, '2025-03-11', 15000.00, 'chennai', '1', '0 years 5 months', ' ', 1, '2025-05-27 04:39:25', 0, NULL, 0, NULL, 1),
(10292, 25121, 'non it', 'perungalatture', '2024-09-22', 15000.00, '2025-03-11', 15000.00, 'chennai', '1', '0 years 5 months', 'Health issues', 1, '2025-05-27 04:41:16', 154, '2025-05-27 10:20:09', 0, NULL, 0),
(10293, 25140, 'Hdb financial services pvt ltd ', 'Senior sales executive ', '2016-09-27', 10000.00, '2023-05-05', 15000.00, 'Nungambakkam ', '1', '6 years 7 months', ' Due to my marriage ', 1, '2025-05-27 09:22:31', 0, NULL, 0, NULL, 1),
(10294, 25146, 'star health insurance', 'telesales officer', '2024-02-05', 30000.00, '2025-04-30', 30000.00, 'chennai', '1', '1 years 2 months', ' There is no proper incentives credit date and time', 1, '2025-05-28 06:13:40', 0, NULL, 0, NULL, 1),
(10295, 25143, 'star health insurance ', 'telesales', '2024-02-25', 18500.00, '2025-02-28', 18500.00, 'chennai', '1', '1 years 0 months', ' there is no proper incentive credit date and time', 1, '2025-05-28 06:19:57', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10296, 25148, 'Atriowings Technologies ', 'Web designing ', '2024-11-25', 3000.00, '2025-05-25', 3000.00, 'Korattur, Chennai ', '1', '0 years 6 months', ' Done my internship ', 1, '2025-05-28 06:26:07', 0, NULL, 0, NULL, 1),
(10297, 25147, 'Icici Lombard general insurance company ', 'Tso', '2024-01-04', 13000.00, '2025-03-04', 13000.00, 'Chennai thousand lights ', '1', '1 years 2 months', ' Personal issue and salary not incriment ', 1, '2025-05-28 06:27:47', 0, NULL, 0, NULL, 1),
(10298, 25145, 'legacy ', 'sales', '2024-11-04', 15000.00, '1970-01-01', 15000.00, 'gunidy ', '2', '0 years 6 months', ' Long dist to travel', 1, '2025-05-28 06:43:55', 0, NULL, 0, NULL, 1),
(10299, 25149, 'HDB financial services ', 'Senior telecaller', '2021-10-11', 9000.00, '2023-04-01', 14000.00, 'Thousand lights, mount road', '1', '1 years 5 months', ' Due to long distance and health issues ', 1, '2025-05-28 06:55:33', 0, NULL, 0, NULL, 1),
(10300, 25151, 'Wizklub', 'Teamleader', '2022-06-22', 37000.00, '2024-04-30', 37000.00, 'Btm 1 st stage ', '1', '1 years 10 months', ' Company shut down ', 1, '2025-05-28 07:28:29', 0, NULL, 0, NULL, 1),
(10301, 25151, 'Isbm', 'Team leader', '2024-10-01', 350000.00, '2025-02-28', 35000.00, 'Koramangala ', '1', '0 years 4 months', 'No proper work regulations no revenue building no incentives ', 1, '2025-05-28 07:30:46', 0, NULL, 0, NULL, 1),
(10302, 25152, 'om innovation private limited', 'sales', '2022-02-14', 12000.00, '2023-03-01', 12000.00, 'chetpet', '1', '1 years 0 months', 'personal abuse ', 154, '2025-05-28 01:13:32', 0, NULL, 0, NULL, 1),
(10303, 25152, 'lorvern business solutions', 'sales force', '2023-04-01', 13000.00, '2024-03-01', 13000.00, 'kodambakam', '1', '0 years 10 months', 'salary isuse', 154, '2025-05-28 01:14:58', 0, NULL, 0, NULL, 1),
(10304, 25152, 'shiram fortune private limited', 'senior sales force', '2024-04-01', 14500.00, '1970-01-01', 17500.00, 'kodambakkam', '2', '1 years 1 months', 'no support', 154, '2025-05-28 01:16:27', 0, NULL, 0, NULL, 1),
(10305, 25154, 'HDB financial service', 'Sales officer', '2024-09-01', 16000.00, '2024-12-31', 18000.00, 'Greams road', '1', '0 years 3 months', ' Due to exams', 1, '2025-05-28 09:45:35', 0, NULL, 0, NULL, 1),
(10306, 25154, 'HDB financial services ', 'Sales officer', '2024-09-01', 15000.00, '2024-12-31', 18000.00, 'Greams road', '1', '0 years 3 months', ' Due to exams', 1, '2025-05-28 09:49:30', 154, '2025-05-28 03:26:40', 0, NULL, 0),
(10307, 25154, 'Logskim solution ', 'BD coordinator ', '2025-01-01', 13000.00, '2025-04-30', 13000.00, 'Greams road', '1', '0 years 3 months', 'Salary issue', 1, '2025-05-28 09:51:03', 0, NULL, 0, NULL, 1),
(10308, 24993, 'Bank Bazaar ', 'Customer Relationship Officer ', '2022-07-01', 15000.00, '2023-08-01', 20000.00, 'Ambattur ', '1', '1 years 1 months', ' Underwent a surgery ', 1, '2025-05-28 06:06:08', 0, NULL, 0, NULL, 1),
(10309, 25159, 'Star estate ', 'Senior pre sales executive ', '2024-03-24', 38000.00, '2025-03-01', 38000.00, 'Hsr layout ', '1', '0 years 11 months', ' Did not find growth in the previous company ', 1, '2025-05-29 05:51:26', 0, NULL, 0, NULL, 1),
(10310, 25163, 'Swiggy', 'Senior Customer Support executive ', '2016-08-21', 8.00, '2024-01-31', 39000.00, 'Bangalore ', '1', '7 years 5 months', ' Layoff', 1, '2025-05-29 07:35:49', 0, NULL, 0, NULL, 1),
(10311, 25155, 'Just dial', 'Telesales', '2024-07-15', 21000.00, '2025-02-14', 21000.00, 'Little mount', '1', '0 years 6 months', ' Health issues problem', 1, '2025-05-29 08:56:06', 0, NULL, 0, NULL, 1),
(10312, 25167, 'Vizza insurance broking services Pvt ', 'caller ', '2023-10-03', 15.00, '2024-03-10', 15.00, 'Saidapet ', '1', '0 years 5 months', 'Salary issues', 1, '2025-05-30 05:48:23', 1, '2025-05-30 05:55:36', 0, NULL, 1),
(10313, 25167, 'Q4', 'Senior caller ', '2024-03-03', 20.00, '2025-04-01', 23000.00, 'Ashoknagar ', '1', '1 years 0 months', 'Company shutdown ', 1, '2025-05-30 05:51:35', 0, NULL, 0, NULL, 1),
(10314, 25169, 'Vizza insurance broking services ', 'Telecaller', '2023-12-26', 13500.00, '2024-03-08', 13500.00, 'Saidapet ', '1', '0 years 2 months', ' Salary issue ', 1, '2025-05-30 05:54:44', 0, NULL, 0, NULL, 1),
(10315, 25169, 'Q4', 'Senior caller', '2024-03-10', 18000.00, '2025-04-07', 23000.00, 'Ashok nagar', '1', '1 years 2 months', 'Company shutdown ', 1, '2025-05-30 05:59:15', 0, NULL, 0, NULL, 1),
(10316, 25171, 'kare prosthetics and orthotics', 'telemarketing', '2024-12-01', 31000.00, '1970-01-01', 31000.00, 'btm layout', '2', '0 years 5 months', 'Layoff ', 1, '2025-05-30 02:13:27', 0, NULL, 0, NULL, 1),
(10317, 25176, 'Star health insurance ', 'Team leader ', '2020-05-15', 22000.00, '2024-12-04', 270000.00, 'Chennai ', '1', '4 years 6 months', ' Long distance ', 1, '2025-05-31 10:12:57', 0, NULL, 0, NULL, 1),
(10318, 25181, 'SBI CARDS', 'Sales excutive', '2022-10-02', 20000.00, '2024-11-04', 20000.00, 'Roayapettah ', '1', '2 years 1 months', 'ASM is not responding ', 1, '2025-06-02 05:02:38', 0, NULL, 0, NULL, 1),
(10319, 25185, 'Myinception tech ', 'Front end developer ', '2024-03-05', 10000.00, '1970-01-01', 10000.00, 'Chennai ', '2', '1 years 2 months', ' Lack of project ', 1, '2025-06-02 06:00:28', 0, NULL, 0, NULL, 1),
(10320, 25185, 'Myinception tech ', 'Front end developer ', '2024-03-05', 10000.00, '1970-01-01', 10000.00, 'Chennai ', '2', '1 years 2 months', ' Lack of project ', 1, '2025-06-02 06:00:28', 0, NULL, 0, NULL, 1),
(10321, 25185, 'Myinception tech ', 'Front end developer ', '2024-03-05', 10000.00, '1970-01-01', 10000.00, 'Chennai ', '2', '1 years 2 months', ' Lack of project ', 1, '2025-06-02 06:00:28', 0, NULL, 0, NULL, 1),
(10322, 25185, 'Myinception tech ', 'Junior developer ', '2024-03-05', 10000.00, '1970-01-01', 10000.00, 'Chennai ', '2', '1 years 2 months', 'Lack of project ', 1, '2025-06-02 06:01:48', 0, NULL, 0, NULL, 1),
(10323, 25180, 'BAJAJ FINSERV ', 'BUSINESS LOAN ', '2023-04-05', 16000.00, '2023-09-03', 16000.00, 'MADURAI ', '1', '0 years 4 months', ' My parents have arranged my marriage.', 1, '2025-06-02 06:12:56', 0, NULL, 0, NULL, 1),
(10324, 25201, 'trade india', 'deputy manager', '2024-08-01', 5.09, '2025-03-31', 2.00, 'thousand light ', '1', '0 years 7 months', ' ', 1, '2025-06-02 07:55:38', 0, NULL, 0, NULL, 1),
(10325, 25205, 'tamil matrimony.com', 'intern telesales executive', '2025-01-03', 12000.00, '2025-06-03', 10500.00, 'Chennai  Guindy', '1', '0 years 5 months', 'To develop my carrier growth ', 1, '2025-06-02 09:44:54', 0, NULL, 0, NULL, 1),
(10326, 25209, 'B2c technology ', 'SALES', '2023-03-15', 18000.00, '2024-06-06', 18000.00, 'Kanyakumari ', '1', '1 years 2 months', 'Update skill Developing knowledge ', 1, '2025-06-03 05:44:11', 0, NULL, 0, NULL, 1),
(10327, 25210, 'iTC limited ', 'Wimco Nagar ', '2024-05-15', 16000.00, '2025-04-23', 18500.00, 'Wimco Nagar ', '1', '0 years 11 months', ' It\'s production field no set for me', 1, '2025-06-03 05:54:43', 0, NULL, 0, NULL, 1),
(10328, 25213, 'Sri kamatchi medical centre ', 'Telecom junior officer ', '2022-03-01', 10000.00, '2025-04-07', 12000.00, 'THANJAVUR', '1', '3 years 1 months', 'Priority my studies ', 1, '2025-06-03 06:01:44', 0, NULL, 0, NULL, 1),
(10329, 25221, '14417 STUDENTS HELPLINE', 'Call Centet Executive ', '2023-12-22', 13000.00, '2025-01-10', 13000.00, 'Nungambakkam DPI Campus', '1', '1 years 0 months', ' Low Salary  Issue  And  Long  travel timeing issue ', 1, '2025-06-03 07:02:58', 0, NULL, 0, NULL, 1),
(10330, 25222, 'BAJAJ FINSERV', 'Sales Officer ', '2019-03-12', 19700.00, '2025-06-02', 19700.00, 'Chennai ', '1', '6 years 2 months', ' Timing .', 1, '2025-06-03 01:40:43', 0, NULL, 0, NULL, 1),
(10331, 25227, 'Matrix business private limited ', 'Executive ', '2024-12-09', 16499.00, '1970-01-01', 18499.00, 'Tnagar', '2', '0 years 5 months', ' Better salary', 1, '2025-06-04 06:29:20', 0, NULL, 0, NULL, 1),
(10332, 25233, 'Autosense private limited ', 'Relationship executive ', '2024-11-01', 18000.00, '2025-04-25', 18000.00, 'Guindy', '1', '0 years 5 months', ' ', 1, '2025-06-04 11:52:37', 0, NULL, 0, NULL, 1),
(10333, 25244, 'Newbazaar technology pvt ltd', 'Inside sales executive', '2022-08-02', 20000.00, '2025-02-10', 20000.00, 'Hsr', '1', '2 years 6 months', ' Business loss', 1, '2025-06-05 07:18:33', 0, NULL, 0, NULL, 1),
(10334, 25245, 'New bazaar technology ', 'Inside Sales ', '2022-06-05', 28.00, '2025-05-04', 28.00, 'Hsr', '1', '2 years 10 months', 'Business loss', 1, '2025-06-05 07:21:36', 0, NULL, 0, NULL, 1),
(10335, 25247, 'Matrimony.com', 'Telesales Executive ', '2022-09-05', 12000.00, '2023-11-30', 15000.00, 'Guindy', '1', '1 years 2 months', 'Salary expected ', 1, '2025-06-05 09:02:17', 0, NULL, 0, NULL, 1),
(10336, 25250, 'Casagrand', 'Svc', '2020-10-01', 18000.00, '2021-01-31', 18000.00, 'Chen', '1', '4 years 8 months', ' Contract finish ', 1, '2025-06-06 07:08:07', 0, NULL, 0, NULL, 1),
(10337, 25251, 'Just dail private limited ', 'Saidapat', '2022-05-11', 14000.00, '2023-04-26', 18000.00, 'Little mount ', '1', '0 years 11 months', ' Marriage ', 1, '2025-06-06 07:30:52', 0, NULL, 0, NULL, 1),
(10338, 25259, 'Shriram finance limited ', 'Relationship excutive ', '2024-12-01', 20000.00, '2025-12-01', 22000.00, 'Pattabiram ', '1', '1 years 0 months', 'Personal issues', 1, '2025-06-07 06:10:03', 0, NULL, 0, NULL, 1),
(10339, 25262, 'Matrimony.com', 'Senior relationship maneger ', '2024-07-11', 23000.00, '2025-05-11', 23000.00, 'Adyar Chennai ', '1', '0 years 10 months', ' Helth issue ', 1, '2025-06-09 05:39:16', 0, NULL, 0, NULL, 1),
(10340, 25269, 'F.S.Insurance Broking Services Ltd', 'Financial services executive ', '2025-01-28', 16.00, '2025-06-05', 3.00, 'Nandhanam ', '1', '0 years 4 months', 'Working on Sunday - No leave', 1, '2025-06-09 01:14:49', 0, NULL, 0, NULL, 1),
(10341, 25272, 'Altruist Technologies ', 'Business associate ', '2024-03-06', 12000.00, '2025-05-09', 18.00, 'Mountroad ', '1', '1 years 2 months', ' Salary issue ', 1, '2025-06-10 05:45:33', 0, NULL, 0, NULL, 1),
(10342, 25271, 'PEACE SETTER BUSINESS SOLUTION', 'SBI LIFE INSURANCE  CUSTOMER SUPPORT', '2021-06-01', 11000.00, '2023-08-30', 11000.00, 'Nungambakkam', '1', '2 years 2 months', ' ', 1, '2025-06-10 05:48:24', 0, NULL, 0, NULL, 1),
(10343, 25279, 'Acquisition of executive ', 'TAMIL nadu ', '2024-05-01', 14000.00, '2025-06-10', 14000.00, 'Chennai', '2', '1 years 1 months', ' ', 1, '2025-06-10 06:49:01', 0, NULL, 0, NULL, 1),
(10344, 25279, 'Acquisition executive ', 'Tamil Nadu ', '2024-05-01', 1200.00, '1970-01-01', 14000.00, 'Vyasarpadi ', '2', '1 years 1 months', 'Salary very low amount ', 1, '2025-06-10 06:50:52', 0, NULL, 0, NULL, 1),
(10345, 25283, 'aditya ', 'senior sales executive', '2024-07-23', 30000.00, '2025-01-31', 30000.00, 'chennai', '1', '0 years 6 months', ' Distance and no petrol allowance', 1, '2025-06-10 08:52:02', 0, NULL, 0, NULL, 1),
(10346, 25286, 'kvaluent edtech', 'h r', '2022-10-18', 13500.00, '1970-01-01', 17000.00, 'Chennai', '2', '2 years 7 months', ' Wanted to have a switch of career', 1, '2025-06-10 12:55:23', 0, NULL, 0, NULL, 1),
(10347, 25285, 'Rinsha.k', 'Sales executive ', '2024-03-12', 25000.00, '2025-04-02', 25000.00, 'Thiruvanmiyur ', '1', '1 years 0 months', ' Personal issue', 1, '2025-06-11 05:12:32', 0, NULL, 0, NULL, 1),
(10348, 25291, 'Sudhakar s', 'Telecaller ', '2023-09-06', 16000.00, '2025-02-07', 16000.00, 'Chennai Perungudi ', '1', '1 years 5 months', ' Next level ', 1, '2025-06-11 06:07:51', 0, NULL, 0, NULL, 1),
(10349, 25299, 'Shriram life insurance ', 'Senior telecaller executive ', '2024-10-17', 20800.00, '2025-03-31', 20800.00, 'Egmore', '1', '0 years 5 months', ' Company relocated to hydrabad ', 1, '2025-06-11 07:07:13', 0, NULL, 0, NULL, 1),
(10350, 25298, 'poorvika', 'voice process', '2024-01-10', 18000.00, '1970-01-01', 0.00, 'ekathuthangal', '2', '1 years 5 months', 'career growth', 154, '2025-06-11 01:19:04', 0, NULL, 0, NULL, 1),
(10351, 25305, 'AIONION INVESTMENTS SERVICE PVT.LTD.COMPANY', 'SALES EXECUTIVE', '2023-08-10', 17000.00, '2025-03-07', 0.00, 'ROYAPETTA', '1', '1 years 6 months', 'CAREER GROWTH', 154, '2025-06-11 03:47:32', 0, NULL, 0, NULL, 1),
(10352, 25314, 'Star health ', 'Officer', '2024-08-16', 19000.00, '2025-02-21', 18000.00, 'Egmore', '1', '0 years 6 months', ' Process shut down ', 1, '2025-06-12 05:04:01', 0, NULL, 0, NULL, 1),
(10353, 25317, 'Dillivignesh ', 'Chennai ', '2024-04-27', 10000.00, '2025-04-12', 10000.00, 'Lic', '1', '0 years 11 months', ' ', 1, '2025-06-12 06:09:49', 0, NULL, 0, NULL, 1),
(10354, 25313, 'homesfy realty ', 'assistant sales manager ', '2023-11-20', 39000.00, '2024-04-17', 39000.00, 'sheshadripuram', '1', '0 years 4 months', ' ', 1, '2025-06-12 06:59:23', 0, NULL, 0, NULL, 1),
(10355, 25316, 'Halal india private limited ', 'Sales and marketing executive ', '2023-06-19', 15.00, '2025-02-28', 17.00, 'Chennai ', '1', '1 years 8 months', ' Looking for better salary ', 1, '2025-06-12 07:27:44', 0, NULL, 0, NULL, 1),
(10356, 25321, 'Avasoft ', 'Software Engineer ', '2023-07-14', 10000.00, '2024-09-21', 500000.00, 'Chennai ', '1', '1 years 2 months', ' I’m stepping down due to health issues arising from prolonged night shifts.', 1, '2025-06-12 11:33:23', 0, NULL, 0, NULL, 1),
(10357, 25332, 'FIN tech solution', 'Ashok Nagar ', '2024-08-15', 15000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '0 years 9 months', 'For salary date \n\n', 1, '2025-06-13 05:36:15', 0, NULL, 0, NULL, 1),
(10358, 25337, 'IDFC fist bank (Buzzworkz business services)', 'Director sales team ', '2024-10-28', 17895.00, '2025-03-31', 17895.00, 'Chennai ', '1', '0 years 5 months', ' Having no bike ', 1, '2025-06-13 05:36:40', 0, NULL, 0, NULL, 1),
(10359, 25335, 'Conneqt solution Pvt Ltd ', 'Bpo tamil voice executive ', '2024-04-19', 14200.00, '2024-10-31', 16500.00, 'Gunidy', '1', '0 years 6 months', ' Location change and full of night shifts', 1, '2025-06-13 05:38:12', 0, NULL, 0, NULL, 1),
(10360, 25339, 'Aequitas debt solution ', 'Tele collection executive ', '2022-09-07', 25000.00, '2024-09-10', 25000.00, 'Tyenampet ', '1', '2 years 0 months', ' No proper hike', 1, '2025-06-13 06:04:32', 0, NULL, 0, NULL, 1),
(10361, 25348, 'Upcycle ', 'Order Management associate ', '2024-08-19', 300000.00, '2025-06-12', 300000.00, 'Domlur ', '1', '0 years 9 months', ' ', 1, '2025-06-13 09:54:50', 0, NULL, 0, NULL, 1),
(10362, 25349, 'Avanexa Technology ', 'Ui ux designer ', '2024-09-01', 12000.00, '2025-05-20', 12000.00, 'Coimbatore ', '1', '0 years 9 months', ' Salary not affordable and growth of knowledge other industries I was quit ', 1, '2025-06-13 10:28:29', 0, NULL, 0, NULL, 1),
(10363, 25368, 'Vertex ', 'Business associate ', '2018-05-15', 10500.00, '2019-02-11', 11000.00, 'Mount road', '1', '0 years 8 months', ' Contract closed', 1, '2025-06-16 07:18:24', 1, '2025-06-16 07:22:29', 0, NULL, 1),
(10364, 25368, 'Vertex ', 'Business associate ', '2018-05-15', 10500.00, '2019-02-11', 18000.00, 'Mount road', '1', '0 years 8 months', ' Contract closed', 1, '2025-06-16 07:18:24', 1, '2025-06-16 07:22:48', 0, NULL, 0),
(10365, 25370, 'Capital Honda ', 'CRE TELLECALLING ', '2024-01-22', 14000.00, '2024-06-27', 14000.00, 'Perungudi ', '1', '0 years 5 months', ' Health issues ', 1, '2025-06-16 07:24:36', 0, NULL, 0, NULL, 1),
(10366, 25369, 'Cars24 private limited ', 'Retail associate ', '2022-01-04', 18000.00, '2023-02-01', 25000.00, 'HSR layout ', '1', '3 years 5 months', ' Personal issue ', 1, '2025-06-16 07:25:33', 0, NULL, 0, NULL, 1),
(10367, 25369, 'Pink blue.in supply company ', 'Tele sales executive ', '2023-03-13', 16300.00, '2025-05-21', 27000.00, 'HSR layout ', '1', '2 years 2 months', 'Better salary and opportunities ', 1, '2025-06-16 07:29:13', 0, NULL, 0, NULL, 1),
(10368, 25378, 'ayatiworks technologies', 'junior ui/ux designer', '2024-02-01', 20000.00, '2025-03-03', 20000.00, 'chennai', '1', '1 years 1 months', 'Career growth', 1, '2025-06-16 11:23:58', 0, NULL, 0, NULL, 1),
(10369, 25374, 'Bigziel technology pvt ', 'UI UX designer ', '2024-11-10', 0.00, '1970-01-01', 0.00, 'Chennai ', '2', '0 years 7 months', ' Unpaid ', 1, '2025-06-17 05:38:55', 0, NULL, 0, NULL, 1),
(10370, 25379, 'airtel', 'customer support', '2024-10-14', 25000.00, '2025-05-14', 25000.00, 'poonamalle', '1', '0 years 7 months', ' ', 1, '2025-06-17 06:00:32', 0, NULL, 0, NULL, 1),
(10371, 25380, 'airtel', 'customer support', '2024-10-14', 25000.00, '2025-05-14', 25000.00, 'ponammalle', '1', '0 years 7 months', 'Contract based ', 1, '2025-06-17 06:01:20', 0, NULL, 0, NULL, 1),
(10372, 25383, 'Petter england EA', 'Sales', '2019-05-01', 12000.00, '2020-02-17', 13000.00, 'Chennai', '1', '0 years 9 months', 'Closed the shop', 1, '2025-06-17 06:33:35', 0, NULL, 0, NULL, 1),
(10373, 25382, 'tech digital', 'ui/ux designer', '2024-11-15', 20500.00, '2025-03-31', 20500.00, 'chennai', '1', '0 years 4 months', 'they hired me for a project which was discontinued for many reason. its an full and full recruitment company', 1, '2025-06-17 08:45:56', 0, NULL, 0, NULL, 1),
(10374, 25391, 'Teleperformance Global private limited ', 'Customer support executive ', '2024-08-29', 29.00, '2025-07-02', 240000.00, 'Ambattur ', '1', '0 years 10 months', ' Personal Reason ', 1, '2025-06-18 04:34:46', 1, '2025-06-18 04:46:28', 0, NULL, 1),
(10375, 25391, 'Adam and Eve IT private limited ', 'Support specialist Team lead ', '2023-01-19', 1.00, '2024-08-26', 18000.00, 'Coimbatore ', '1', '1 years 7 months', 'Project finish ', 1, '2025-06-18 04:37:18', 1, '2025-06-18 04:41:11', 0, NULL, 1),
(10376, 25391, 'IENERGIZER IT private limited ', 'Operation support specialist ', '2022-06-10', 29.00, '2023-06-27', 30000.00, 'Bangalore ', '1', '1 years 0 months', 'Language Barrier', 1, '2025-06-18 04:39:07', 1, '2025-06-18 04:45:41', 0, NULL, 1),
(10377, 25401, 'Smylewurk ', 'Compliance RTR ', '2024-08-15', 16000.00, '2025-04-07', 180000.00, 'Nungambakkam ', '1', '0 years 7 months', 'FAMILY ISSUE ', 1, '2025-06-18 04:46:59', 0, NULL, 0, NULL, 1),
(10378, 25402, 'Srivin', ' Telllecalling', '2025-01-01', 15000.00, '2025-06-18', 2.00, 'Thousand light', '1', '0 years 5 months', ' Salary issues', 1, '2025-06-18 05:09:56', 0, NULL, 0, NULL, 1),
(10379, 25403, 'UNICEF ', 'Telecaller ', '2025-04-05', 27200.00, '2025-04-30', 27200.00, 'Vadapalani ', '1', '0 years 0 months', ' We are form persolkelly third party to UNICEF , currently UNICEF  shutdown all the third party companies ', 1, '2025-06-18 05:36:21', 0, NULL, 0, NULL, 1),
(10380, 25404, 'GSQUARE ', 'Telecaller ', '2023-08-17', 26000.00, '2024-03-01', 26000.00, 'Chennai ', '1', '0 years 6 months', ' Because incentive delayed process', 1, '2025-06-18 06:00:00', 0, NULL, 0, NULL, 1),
(10381, 25406, 'Star health insurance ', 'Telecaller ', '2025-01-01', 17000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '0 years 5 months', ' ', 1, '2025-06-18 06:19:42', 0, NULL, 0, NULL, 1),
(10382, 25405, 'posch holidays and resorts pvt.ltd', 'telecaller', '2022-10-04', 18000.00, '2025-06-18', 20000.00, 'ashok nagar', '1', '2 years 8 months', ' salary expecting', 1, '2025-06-18 06:26:47', 0, NULL, 0, NULL, 1),
(10383, 25407, 'Bankbazaar ', 'Senior Customer Relationship officer ', '2023-03-20', 15000.00, '2025-01-11', 19000.00, 'Ambattur Industrial estate ', '1', '1 years 9 months', ' Family situations', 1, '2025-06-18 06:35:56', 0, NULL, 0, NULL, 1),
(10384, 25407, 'VHR SOLUTION PVT LTD ', 'HR Trainee ', '2021-12-06', 15000.00, '2022-06-24', 15000.00, 'Bangalore ', '1', '0 years 6 months', 'Transportation ', 1, '2025-06-18 06:37:37', 0, NULL, 0, NULL, 1),
(10385, 25396, 'my tvs', 'customer support', '2024-08-14', 22000.00, '2025-05-30', 22000.00, 'eekatuthangal', '1', '0 years 9 months', ' ', 1, '2025-06-19 05:22:37', 0, NULL, 0, NULL, 1),
(10386, 25396, 'Hdb financial services', 'sales ', '2022-07-19', 19500.00, '2023-11-14', 20000.00, 'nungambakkam', '1', '1 years 3 months', 'salary issue', 154, '2025-06-19 10:56:14', 0, NULL, 0, NULL, 1),
(10387, 25423, 'ARK Enterprises ', 'Admin & pre-sales ', '2023-10-01', 20000.00, '2025-06-10', 20000.00, 'Kolathur rose nagar', '1', '1 years 8 months', ' There I got my salary cash in hand so i relieved', 1, '2025-06-19 07:52:00', 0, NULL, 0, NULL, 1),
(10388, 25426, 'Jana Small Finance Bank ', 'Collection -Tellecaller ', '2024-10-07', 19500.00, '2025-04-30', 19500.00, 'Tiruvettriyur ', '1', '0 years 6 months', ' Some personal issues ', 1, '2025-06-19 08:37:58', 0, NULL, 0, NULL, 1),
(10389, 25429, 'I marque solution private limited', 'collection ', '2024-02-28', 18500.00, '2025-02-28', 18500.00, 'Teynampet', '1', '1 years 0 months', ' Distance', 1, '2025-06-20 05:10:23', 0, NULL, 0, NULL, 1),
(10390, 25433, 'ITech india pvt ltd', 'Rate Auditor ', '2021-03-03', 12000.00, '2022-05-05', 14.00, 'Chennai', '1', '1 years 2 months', ' ', 1, '2025-06-20 05:43:33', 0, NULL, 0, NULL, 1),
(10391, 25437, 'Sriram Fortune Solution ', 'Telecalling ', '2024-01-12', 18000.00, '2025-01-01', 18000.00, 'Chennai ', '1', '0 years 11 months', ' ', 1, '2025-06-20 06:18:31', 0, NULL, 0, NULL, 1),
(10392, 25438, 'Vizza insurance broking services private limited ', 'Vpe', '2024-09-30', 13000.00, '2025-02-07', 13000.00, 'Vadapalani ', '1', '0 years 4 months', ' Family issues ', 1, '2025-06-20 06:25:48', 0, NULL, 0, NULL, 1),
(10393, 25439, 'BAJAJ FINANCE ', 'TELICALLING ', '2023-12-20', 24000.00, '2025-12-22', 28000.00, 'NUNGAMBAKKAM ', '1', '2 years 0 months', ' MY BARNCH IS CHANGED SO I RELATIVE THE WORK', 1, '2025-06-20 06:27:02', 0, NULL, 0, NULL, 1),
(10394, 25436, 'BAJAJ FINANCE ', 'TELICALLING ', '2022-12-20', 24000.00, '2025-01-01', 28500.00, 'NUNGAMBAKKAM ', '1', '2 years 0 months', ' My branch changed in tambaram so very long location I will relive the job', 1, '2025-06-20 06:36:59', 0, NULL, 0, NULL, 1),
(10395, 25443, 'Pantaloons', 'Sales executive', '2022-02-13', 10000.00, '2022-06-14', 13000.00, 'Ambattur', '1', '0 years 4 months', ' ', 1, '2025-06-20 07:34:01', 0, NULL, 0, NULL, 1),
(10396, 25451, 'Nova Studios HQ ', 'UI/UX Designer', '2024-05-14', 27000.00, '1970-01-01', 30000.00, 'Hyderabad ', '2', '1 years 1 months', ' To explore more products and various work environment To learn new design trends.', 1, '2025-06-21 04:41:04', 0, NULL, 0, NULL, 1),
(10397, 25453, 'Bundle tecnology ', 'Telecalling', '2023-08-28', 18000.00, '2024-08-30', 20000.00, 'Nungambakkam ', '1', '1 years 0 months', ' High salary expected ', 1, '2025-06-21 05:47:40', 0, NULL, 0, NULL, 1),
(10398, 25457, 'Enrich financial market pvt ltd', 'Relationship manager ', '2024-03-01', 18000.00, '1970-01-01', 18000.00, 'Kodambakkam ', '2', '1 years 3 months', ' Salary hike', 1, '2025-06-21 12:20:45', 0, NULL, 0, NULL, 1),
(10399, 25456, 'Mayil ventures ', 'UI UX Designer ', '2025-01-03', 8000.00, '1970-01-01', 8000.00, 'Teynampet ', '2', '0 years 5 months', ' ', 1, '2025-06-21 02:18:19', 0, NULL, 0, NULL, 1),
(10400, 25460, 'Neographx ', 'UIUX designer ', '2024-11-10', 8000.00, '2025-03-28', 1000.00, 'chennai', '1', '0 years 4 months', ' Company layoff', 1, '2025-06-23 05:24:54', 1, '2025-06-23 05:25:33', 0, NULL, 1),
(10401, 25459, 'Zantic Ai', 'Graphic designer/uiux designer', '2024-09-15', 8000.00, '2025-05-15', 8000.00, 'Chennai', '1', '0 years 8 months', ' ', 1, '2025-06-23 05:27:17', 0, NULL, 0, NULL, 1),
(10402, 25464, 'MAX Academy ', 'Graphic designer and UI UX designer ', '2024-07-20', 22000.00, '2024-12-31', 25000.00, 'Chennai ', '1', '0 years 5 months', 'Change fully  Ui ux designer role', 1, '2025-06-23 06:23:17', 0, NULL, 0, NULL, 1),
(10403, 25466, 'Arms connect ', 'Telecaller', '2023-09-10', 14000.00, '2024-08-15', 15000.00, 'Nandhanam', '1', '0 years 11 months', ' Salary issue for salary credit date late and I\'m have many commitments so I\'m reliving the job ', 1, '2025-06-23 06:57:33', 0, NULL, 0, NULL, 1),
(10404, 25467, 'Eureka Outsourcing Private Limited Company ', 'Digital Relationship Manager', '2023-08-22', 14.50, '2025-01-06', 14.50, 'Thoraipakkam', '1', '1 years 4 months', 'Career growth', 1, '2025-06-23 07:08:56', 0, NULL, 0, NULL, 1),
(10405, 25465, 'sudharsanam and associates', 'call centre agent', '2023-12-13', 20000.00, '2025-05-24', 20000.00, 'chennai', '1', '1 years 6 months', 'have completed my contract period with the company.', 1, '2025-06-23 07:29:13', 1, '2025-06-23 07:30:11', 0, NULL, 1),
(10406, 25468, 'Vvd', 'Chennai', '2024-02-17', 15000.00, '1970-01-01', 15000.00, 'Egmore', '2', '1 years 4 months', 'Company  timing not set work and long distance', 1, '2025-06-23 07:30:17', 0, NULL, 0, NULL, 1),
(10407, 25469, 'Jio', 'Installation sales ', '2020-02-20', 15000.00, '2021-08-30', 17000.00, 'Chennai ', '1', '1 years 6 months', ' COVID time ', 1, '2025-06-23 07:30:31', 0, NULL, 0, NULL, 1),
(10408, 25471, 'Reliance jio', 'Drs', '2024-05-20', 25000.00, '2025-03-13', 25000.00, 'Chennai ', '1', '0 years 9 months', ' 50%field work ', 1, '2025-06-23 07:43:36', 0, NULL, 0, NULL, 1),
(10409, 25473, 'Sudharshanam & associates', 'Telecaller', '2022-04-22', 23000.00, '2025-05-24', 23000.00, 'Chennai ', '1', '3 years 1 months', 'No specific reason ', 1, '2025-06-23 10:13:03', 0, NULL, 0, NULL, 1),
(10410, 25475, 'STAM', 'Business Manager', '2022-07-01', 250000.00, '2025-05-31', 300000.00, 'chennai', '1', '2 years 10 months', ' Career Growth', 1, '2025-06-23 01:21:29', 0, NULL, 0, NULL, 1),
(10411, 25476, 'Netmeds online pharmacy ', 'Customer support service ', '2025-01-07', 18000.00, '2025-06-10', 18000.00, 'Royapettah ', '1', '0 years 5 months', ' ', 1, '2025-06-23 02:33:59', 0, NULL, 0, NULL, 1),
(10412, 25477, 'STC', 'DEO/customer support ', '2022-03-15', 12000.00, '2025-06-30', 17000.00, 'Chennai', '1', '3 years 3 months', 'Looking for better career growth and opportunities.', 1, '2025-06-23 02:54:31', 0, NULL, 0, NULL, 1),
(10413, 25472, 'EPK GROUP ', 'UX UI Designer ', '2023-05-13', 180000.00, '2024-11-30', 259200.00, 'Chennai, Tamilnadu ', '1', '1 years 6 months', ' Due to fund issue problem from the Organisation, They can\'t able to Provide Salary and asked our entire IT team to move on', 1, '2025-06-23 04:54:41', 0, NULL, 0, NULL, 1),
(10414, 25483, 'Edr continuous information private limited ', 'GIS ANALYST ', '2022-10-05', 180000.00, '1970-01-01', 250000.00, 'Chennai ', '2', '2 years 8 months', ' Salary hike is not satisfied ', 1, '2025-06-24 05:38:42', 0, NULL, 0, NULL, 1),
(10415, 25485, 'Bajaj finance limited ', 'Senior officer ', '2023-10-15', 18000.00, '2024-11-05', 18000.00, 'Nandanam', '1', '1 years 0 months', ' ', 1, '2025-06-24 05:54:30', 0, NULL, 0, NULL, 1),
(10416, 25486, 'Bajaj finance company ', 'Senior officer ', '2023-12-18', 18000.00, '2024-08-10', 18000.00, 'Nandanam', '1', '0 years 7 months', 'Health issues ', 1, '2025-06-24 06:02:31', 0, NULL, 0, NULL, 1),
(10417, 25493, 'Shriram life Insurance company Ltd ', 'Relationship manager ', '2024-07-29', 25000.00, '2025-05-03', 300000.00, 'Tiruvannamalai ', '1', '0 years 9 months', 'Carrier Growth ', 1, '2025-06-24 09:50:45', 0, NULL, 0, NULL, 1),
(10418, 25495, 'Star health insurance ', 'Customer care executive ', '2024-07-21', 18000.00, '2025-02-20', 18000.00, 'Thousand lights ', '1', '0 years 6 months', ' Due to examination ', 1, '2025-06-24 01:12:59', 0, NULL, 0, NULL, 1),
(10419, 25497, 'Hdfc bank ', 'Assistant manager ', '2023-02-13', 20500.00, '2024-02-29', 20500.00, 'Porur', '1', '1 years 0 months', ' Due to personal reason ', 1, '2025-06-25 02:19:27', 0, NULL, 0, NULL, 1),
(10420, 25502, 'SWITS DIGITAL ', 'UI UX designer ', '2024-09-12', 13000.00, '2025-05-16', 17000.00, 'Chennai ', '1', '0 years 8 months', ' My part in the design project is completed, and now the development team has taken over.', 1, '2025-06-25 05:41:56', 0, NULL, 0, NULL, 1),
(10421, 25502, 'SWITS DIGITAL ', 'UI UX designer ', '2024-09-12', 13000.00, '2025-05-16', 17000.00, 'chennai', '1', '0 years 8 months', 'My part in the design project is completed, and now the development team has taken over.', 1, '2025-06-25 05:43:02', 0, NULL, 0, NULL, 1),
(10422, 25503, 'Sbi Auto loan sales executive quess corp limited', 'Auto loan sales executive ', '2024-01-03', 18000.00, '2025-01-30', 180000.00, 'Bengaluru', '1', '1 years 0 months', ' Due to some personal issue ', 1, '2025-06-25 05:53:05', 0, NULL, 0, NULL, 1),
(10423, 25515, 'Connection point ', 'Egmore', '2025-01-15', 10000.00, '2025-06-15', 13000.00, 'Egmore', '1', '0 years 5 months', ' I\'ve Not Received My Salary in Properly in each month\n', 1, '2025-06-25 07:36:53', 0, NULL, 0, NULL, 1),
(10424, 25478, 'technoarete research and development association', 'client relationship executive', '2023-05-11', 18746.00, '2024-12-31', 25936.00, 'thirumangalam', '1', '1 years 7 months', ' ', 1, '2025-06-25 07:56:41', 0, NULL, 0, NULL, 1),
(10425, 25518, 'G Square Housing ', 'Senior Tele calling executive ', '2022-03-18', 18000.00, '2024-09-02', 24000.00, 'Alwarpet', '1', '2 years 5 months', ' No proper recognition and promotion..also company has asked to change location to coimbatore ', 1, '2025-06-25 09:53:29', 0, NULL, 0, NULL, 1),
(10426, 25518, 'MMC infotech', 'Telecaller executive ', '2019-11-09', 11000.00, '2022-03-08', 11000.00, 'Santhome ', '1', '2 years 3 months', 'No salary hike', 1, '2025-06-25 09:54:38', 0, NULL, 0, NULL, 1),
(10427, 25526, 'Ucal', 'Hr trainee', '2022-06-01', 15000.00, '2024-07-10', 15000.00, 'Chengalpattu', '1', '2 years 1 months', 'Low salary ', 1, '2025-06-26 05:47:47', 0, NULL, 0, NULL, 1),
(10428, 25528, 'Imerge business solutions ', 'Telemarketing excutive ', '2023-06-12', 14000.00, '2024-01-31', 14000.00, 'Perungudi, Chennai ', '1', '0 years 7 months', ' Project was closed by the company.', 1, '2025-06-26 07:09:37', 0, NULL, 0, NULL, 1),
(10429, 25537, 'casagrand builders pvt ltd', 'telemarketing executive', '2023-12-29', 250000.00, '2025-02-28', 250000.00, 'thiruvanmiyur', '1', '1 years 1 months', ' Medical reason', 1, '2025-06-26 12:26:46', 0, NULL, 0, NULL, 1),
(10430, 25536, 'Imarque solution, Mayiladuthurai ', 'Sales executive ', '2025-02-15', 13000.00, '2025-05-30', 13000.00, 'Mayiladuthurai ', '2', '0 years 3 months', 'For career growth ', 1, '2025-06-26 12:53:58', 1, '2025-06-26 12:55:08', 0, NULL, 1),
(10431, 25546, 'Deepika ', 'Telecalling ', '2021-08-02', 12500.00, '2025-05-25', 15000.00, 'Kodambakkam', '1', '3 years 9 months', ' Long distance and timing ', 1, '2025-06-27 06:27:27', 0, NULL, 0, NULL, 1),
(10432, 25554, 'Paytm one97 communication', 'Sales representative ', '2016-06-07', 30000.00, '2018-06-06', 30000.00, 'Chennai', '1', '1 years 11 months', ' There is no career growth ', 1, '2025-06-27 07:31:11', 0, NULL, 0, NULL, 1),
(10433, 25553, 'om innovation call service pvt ltd', 'customer service executive', '2024-06-08', 15000.00, '2025-06-09', 18000.00, 'chetpet', '1', '1 years 0 months', ' Process has been closed ', 1, '2025-06-27 07:58:54', 0, NULL, 0, NULL, 1),
(10434, 25553, 'reach charitable trust ', 'telecaller', '2021-08-18', 6000.00, '2022-02-28', 7000.00, 'anna nagar', '1', '0 years 6 months', 'College has been started ', 1, '2025-06-27 08:03:32', 0, NULL, 0, NULL, 1),
(10435, 25558, 'RM promoters ', 'Kalavasal ', '2024-06-27', 13000.00, '2024-11-05', 13000.00, 'Madurai ', '1', '0 years 4 months', ' ', 1, '2025-06-27 08:04:11', 0, NULL, 0, NULL, 1),
(10436, 25557, 'RM promoters ', 'Kalavasal', '2024-06-10', 13000.00, '2024-11-05', 13000.00, 'Madurai ', '1', '0 years 4 months', ' ', 1, '2025-06-27 08:06:02', 0, NULL, 0, NULL, 1),
(10437, 25569, 'Policy bazaar insurance brokerage company ', 'Associate sales consultant ', '2024-09-14', 22000.00, '2025-06-12', 22000.00, 'Chennai ', '1', '0 years 8 months', ' For Salary Growth and Personal Growth ', 1, '2025-06-28 04:42:11', 0, NULL, 0, NULL, 1),
(10438, 25570, 'ICCS', 'Sales executive ', '2024-05-06', 14000.00, '2025-06-30', 17000.00, 'Shollinganallur ', '1', '1 years 1 months', ' Long distance ', 1, '2025-06-28 05:06:37', 0, NULL, 0, NULL, 1),
(10439, 25571, 'SBI', 'sales executives', '2025-01-02', 18.00, '2025-05-28', 18.00, 'paris ', '1', '0 years 4 months', ' Some personal issues', 1, '2025-06-28 05:15:46', 0, NULL, 0, NULL, 1),
(10440, 25576, 'om Innovation call service pvt lmt ', 'customer executive support', '2025-01-08', 14000.00, '2025-04-08', 16000.00, 'chetpet', '1', '0 years 3 months', ' ', 1, '2025-06-28 05:42:09', 0, NULL, 0, NULL, 1),
(10441, 25577, 'om innovation call service pvt ltd ', 'customer executive support', '2024-06-21', 14000.00, '2025-06-30', 16000.00, 'chetpet', '1', '1 years 0 months', ' Process has been closed', 1, '2025-06-28 05:58:28', 0, NULL, 0, NULL, 1),
(10442, 25584, 'justdial', 'sales executive', '2024-12-05', 14000.00, '2025-05-07', 16000.00, 'chennai', '1', '0 years 5 months', ' Health issues', 1, '2025-06-28 08:11:23', 0, NULL, 0, NULL, 1),
(10443, 25594, 'Andromeda sales and distribution prt ltd ', 'Team leader ', '2024-09-01', 15000.00, '2025-06-21', 15000.00, 'Ekkatuthangal', '1', '0 years 9 months', ' Salary issues ', 1, '2025-06-29 01:02:03', 0, NULL, 0, NULL, 1),
(10444, 25599, 'SBI card ', 'Sales executive ', '2024-10-05', 17500.00, '2025-02-15', 17500.00, 'Nungambakkam ', '1', '0 years 4 months', ' Higher education ', 1, '2025-06-30 05:37:13', 0, NULL, 0, NULL, 1),
(10445, 25600, 'Sai Baba business solutions pvt Ltd ', 'Sale\'s and marketing ', '2024-05-03', 18000.00, '2025-06-18', 16000.00, 'Dms', '1', '1 years 1 months', ' ', 1, '2025-06-30 05:55:29', 0, NULL, 0, NULL, 1),
(10446, 25600, 'Sai Baba business solutions pvt Ltd ', 'Sale\'s and marketing ', '2024-05-03', 18000.00, '2025-06-18', 16000.00, 'Dms', '1', '1 years 1 months', ' Low salary ', 1, '2025-06-30 05:55:40', 0, NULL, 0, NULL, 1),
(10447, 25608, 'Altruist technologies ', 'Customer care executive ', '2024-05-05', 23000.00, '2025-06-21', 23000.00, 'Banglore ', '1', '1 years 1 months', ' No growth in the company ', 1, '2025-06-30 06:37:57', 0, NULL, 0, NULL, 1),
(10448, 25617, 'Trident Renault ', 'Sr. Executive Grade I', '2024-05-01', 21000.00, '2025-05-14', 21000.00, 'Bangalore', '1', '1 years 0 months', 'My mother was admitted to hospital ', 1, '2025-06-30 09:04:59', 0, NULL, 0, NULL, 1),
(10449, 25617, 'Royal Enfield ', 'Process excecutive', '2023-04-11', 12000.00, '2023-12-30', 12000.00, 'Bangalore', '1', '0 years 8 months', 'Personal reasons ', 1, '2025-06-30 09:07:44', 0, NULL, 0, NULL, 1),
(10450, 25616, 'MUTRAH INSOFOUM GRUOPS ', 'Competition management involves actively analyzing', '2020-04-10', 20000.00, '2022-11-08', 35000.00, 'OMAN, MASCAT ', '1', '2 years 6 months', ' Contract period completed ', 1, '2025-07-01 04:03:24', 0, NULL, 0, NULL, 1),
(10451, 25621, 'The rhive and co', 'Hr executive ', '2023-05-15', 15.00, '2025-05-15', 30000.00, 'CHENNAI', '1', '1 years 0 months', ' Looking for growth in career', 1, '2025-07-01 04:39:42', 0, NULL, 0, NULL, 1),
(10452, 25624, 'Mmc infotec services ', 'Processing Executive ', '2024-06-28', 15000.00, '2025-06-30', 15000.00, 'Chennai', '1', '1 years 0 months', ' Contract was completed ', 1, '2025-07-01 05:38:28', 0, NULL, 0, NULL, 1),
(10453, 25628, 'Bank bazaar ', 'Customer relationship officer ', '2022-12-07', 15000.00, '2023-07-12', 15000.00, 'Ambattur ', '1', '0 years 7 months', ' Health issues wheezing problem ', 1, '2025-07-01 06:07:26', 0, NULL, 0, NULL, 1),
(10454, 25631, 'Shriram life insurance ', 'Customer care executive ', '2023-06-01', 1.00, '2025-06-08', 18000.00, 'Guindy ', '1', '2 years 0 months', ' Untime ', 1, '2025-07-01 07:19:15', 0, NULL, 0, NULL, 1),
(10455, 25635, 'spar', 'sale', '2022-01-01', 15000.00, '2024-01-01', 16000.00, 'chennai', '1', '2 years 0 months', ' ', 1, '2025-07-01 07:39:27', 0, NULL, 0, NULL, 1),
(10456, 25634, 'Hermatics pvt ltd', 'Telecaller', '2020-01-02', 1.50, '2021-02-02', 1.50, 'Coimbatore ', '1', '1 years 1 months', ' Personal reasons ', 1, '2025-07-01 07:49:02', 0, NULL, 0, NULL, 1),
(10457, 25649, 'Bankbazaar', 'Senior cro', '2022-07-01', 270000.00, '2024-11-30', 300000.00, 'Ambattur', '1', '2 years 4 months', ' Personal', 1, '2025-07-01 01:34:42', 0, NULL, 0, NULL, 1),
(10458, 25658, 'Trayee business solutions ', 'Processing executive ', '2024-06-03', 15300.00, '2025-06-30', 15300.00, 'Chennai ', '1', '1 years 0 months', ' One year project complete ', 1, '2025-07-02 06:01:37', 0, NULL, 0, NULL, 1),
(10459, 25660, 'Rs nadhiyan infotech Pvt ', 'Coordinator ', '2024-09-01', 16000.00, '2025-07-10', 16000.00, 'Mount road ', '1', '0 years 10 months', ' No increment ', 1, '2025-07-02 06:10:57', 0, NULL, 0, NULL, 1),
(10460, 25644, 'Vizza insurance broking services pvt lmt ', 'Chennai ', '2024-10-10', 14000.00, '2025-04-08', 14000.00, 'Saidapet ', '1', '0 years 5 months', ' I work was temporarily but I want permanent job on this role so I relieve to the company can offer so I\'m immediate joining ', 1, '2025-07-03 05:28:36', 0, NULL, 0, NULL, 1),
(10461, 25672, 'indian Institute of logistics ', 'executive', '2023-06-01', 180000.00, '2025-07-01', 210488.00, 'egmore', '1', '2 years 1 months', ' I’m looking for new challenges and opportunities to grow professionally that weren’t available in my previous role', 1, '2025-07-03 06:14:57', 0, NULL, 0, NULL, 1),
(10462, 25671, 'allset business solutions', 'Support manger ', '2023-10-16', 24000.00, '2024-11-19', 23900.00, 'Thousandslight ', '1', '1 years 1 months', ' I\'m not interested in process so I\'m move to another job ', 1, '2025-07-03 06:18:49', 0, NULL, 0, NULL, 1),
(10463, 25673, 'Integrated enterprises india pvt.ltd', 'Relationship manager', '2022-03-01', 12000.00, '2025-04-30', 30000.00, 'Chennai', '1', '3 years 1 months', ' My mother health issue ,that\'s why i am relieved previous job.', 1, '2025-07-03 06:27:04', 0, NULL, 0, NULL, 1),
(10464, 25691, 'computer age manageme service', 'customer service executive', '2023-12-10', 16000.00, '2025-03-30', 16000.00, 'lic', '1', '1 years 3 months', ' Manager pressure', 1, '2025-07-04 06:01:45', 0, NULL, 0, NULL, 1),
(10465, 25708, 'tocumulus technology', 'technical support', '2023-04-03', 12.00, '2024-10-31', 14.00, 'thiruvanmiyur', '1', '1 years 6 months', ' Layoff ', 1, '2025-07-05 06:11:38', 0, NULL, 0, NULL, 1),
(10466, 25708, 'just dial ', 'tele marketing execute ', '2024-12-05', 13.00, '2025-05-07', 15.00, 'little mount ', '1', '0 years 5 months', 'Salary issues', 1, '2025-07-05 06:13:30', 0, NULL, 0, NULL, 1),
(10467, 25707, 'Just dial limited', 'Telesales executive', '2024-12-05', 7.00, '2025-05-08', 15000.00, 'Little mount', '1', '0 years 5 months', ' Health issues', 1, '2025-07-05 06:14:32', 0, NULL, 0, NULL, 1),
(10468, 25711, 'Shriram life insurance company ', 'Senior Executive ', '2024-09-25', 18000.00, '2025-04-30', 16000.00, 'Egmore ', '1', '0 years 7 months', ' Company was shutdown in chennai shifted to Hyderabad ', 1, '2025-07-05 06:19:49', 0, NULL, 0, NULL, 1),
(10469, 25712, 'Shriram life insurance ', 'Senior sales executive ', '2024-09-25', 20000.00, '2025-04-25', 14000.00, 'Egmore ', '1', '0 years 7 months', ' Change the WRK location in Hyderabad ', 1, '2025-07-05 06:26:06', 0, NULL, 0, NULL, 1),
(10470, 25715, 'Jayam finance ', 'Telecaller ', '2024-06-02', 20000.00, '1970-01-01', 15000.00, 'Chennai', '2', '1 years 1 months', ' College exam', 1, '2025-07-05 09:06:23', 0, NULL, 0, NULL, 1),
(10471, 25714, 'Jayam finance ', 'Telecaller ', '2024-06-05', 20000.00, '1970-01-01', 15000.00, 'Chennai', '2', '1 years 1 months', ' College exam ', 1, '2025-07-05 09:25:41', 0, NULL, 0, NULL, 1),
(10472, 25717, 'Imarquee solutions ', 'Customer support executive ', '2022-10-17', 10000.00, '2025-05-07', 14800.00, 'Chennai', '1', '2 years 6 months', 'I am looking for a better career growth and professional growth', 1, '2025-07-05 12:00:04', 0, NULL, 0, NULL, 1),
(10473, 25718, 'Imarque solutions ', 'Customer support executive ', '2024-10-24', 13000.00, '2025-02-13', 13000.00, 'Teynampet ', '1', '0 years 3 months', 'Searched for a better opportunity', 1, '2025-07-05 12:09:21', 0, NULL, 0, NULL, 1),
(10474, 25722, 'aurora', 'tso', '2024-06-05', 14000.00, '1970-01-01', 15000.00, 'kodambakkam', '2', '1 years 1 months', ' Some personal reason ', 1, '2025-07-07 04:44:00', 0, NULL, 0, NULL, 1),
(10475, 25724, 'tech mahindra', 'customer support executive', '2023-09-11', 14600.00, '2024-07-31', 16000.00, 'egmore', '1', '0 years 10 months', ' process over', 1, '2025-07-07 05:32:58', 0, NULL, 0, NULL, 1),
(10476, 25724, 'imarque solutions', 'telesales executive', '2024-09-10', 16000.00, '2025-04-08', 16000.00, 'pondy bazzar', '1', '0 years 6 months', 'career growth', 1, '2025-07-07 05:34:24', 0, NULL, 0, NULL, 1),
(10477, 25727, 'Shri ram chits pvt lim', 'Tell calling executive', '2022-01-01', 10000.00, '1970-01-01', 15000.00, 'Mylapour', '2', '3 years 6 months', ' Health issues', 1, '2025-07-07 06:27:04', 0, NULL, 0, NULL, 1),
(10478, 25726, 'DATAMARK ', 'Process associate ', '2024-07-30', 15000.00, '2025-03-01', 17000.00, 'Ambattur ', '1', '0 years 7 months', 'Health issue', 1, '2025-07-07 06:53:06', 0, NULL, 0, NULL, 1),
(10479, 25726, 'DATAMARK ', 'Process associate ', '2024-07-30', 15000.00, '2025-03-01', 17000.00, 'Ambattur ', '1', '0 years 7 months', 'Health issue ', 1, '2025-07-07 06:54:29', 0, NULL, 0, NULL, 1),
(10480, 25730, 'Shriram Life insurance ', 'Sale executive ', '2024-08-14', 22000.00, '2025-04-30', 22000.00, 'Egmore ', '1', '0 years 8 months', ' Shut down ', 1, '2025-07-07 07:00:36', 0, NULL, 0, NULL, 1),
(10481, 25730, 'Shriram Life insurance ', 'Sale executive ', '2024-08-14', 22000.00, '2025-04-30', 22000.00, 'Egmore ', '1', '0 years 8 months', 'Company shut down ', 1, '2025-07-07 07:02:39', 0, NULL, 0, NULL, 1),
(10482, 25732, 'HDB FINANCIAL service ', 'Sales Offer', '2023-08-01', 12000.00, '2024-07-05', 13000.00, 'Madhavaram ', '1', '0 years 11 months', ' ', 1, '2025-07-07 07:06:19', 0, NULL, 0, NULL, 1),
(10483, 25732, 'HDB FINANCIAL service ', 'Sales Offer', '2023-08-01', 12000.00, '2024-07-05', 13000.00, 'Madhavaram ', '1', '0 years 11 months', ' ', 1, '2025-07-07 07:06:24', 1, '2025-07-07 07:06:31', 0, NULL, 0),
(10484, 25732, 'Muthoot money ', 'JRE', '2024-07-23', 18000.00, '2025-05-02', 20000.00, 'Old Washermenpet ', '1', '0 years 9 months', 'Key problem ', 1, '2025-07-07 07:07:58', 0, NULL, 0, NULL, 1),
(10485, 25735, 'Colive Advisory pvt ltd ', 'Relationship manager ', '2022-07-12', 12.00, '2023-09-30', 23700.00, 'Banglore ', '1', '1 years 2 months', 'Health issues ', 1, '2025-07-07 12:21:16', 0, NULL, 0, NULL, 1),
(10486, 25741, 'Exela Technology ', 'Data Analysis ', '2022-06-27', 12000.00, '2025-01-28', 17000.00, 'Guindy ', '1', '2 years 7 months', ' Project closed ', 1, '2025-07-08 06:22:55', 0, NULL, 0, NULL, 1),
(10487, 25682, 'Kotak Mahindra Bank Limited ', 'Junior associate ', '2024-09-15', 14.50, '2025-05-15', 17.50, 'Chennai ', '1', '0 years 8 months', 'I got irritated by customer response and collection team.', 1, '2025-07-08 06:35:25', 0, NULL, 0, NULL, 1),
(10488, 25744, 'Cholandalam finance', 'Tele calling ', '2024-09-28', 17000.00, '2025-04-10', 17000.00, 'Prince plaza egmore ', '1', '0 years 6 months', ' ', 1, '2025-07-08 07:10:42', 0, NULL, 0, NULL, 1),
(10489, 25745, 'Shriram Life insurance ', 'Senior Telesales Executive ', '2024-10-17', 24.00, '2025-04-01', 24.00, 'Egmore ', '1', '0 years 5 months', ' Company moved on hydrabad ', 1, '2025-07-08 07:23:55', 0, NULL, 0, NULL, 1),
(10490, 25746, 'Vizza insurance ', 'Caller', '2024-05-07', 10.00, '2025-03-27', 16000.00, 'Koyambedu ', '1', '0 years 10 months', ' Family issue ', 1, '2025-07-08 07:49:29', 0, NULL, 0, NULL, 1),
(10491, 25752, 'Finn point solution ', 'Bpo process ', '2019-07-04', 16000.00, '2024-07-09', 20000.00, 'Mount road ', '1', '5 years 0 months', 'My marriage ', 1, '2025-07-09 05:48:28', 0, NULL, 0, NULL, 1),
(10492, 25760, 'Kotak Mahindra Bank ', 'Junior associate ', '2024-10-02', 14500.00, '1970-01-01', 16000.00, 'Old washermenpet ', '2', '0 years 9 months', ' Over time working ', 1, '2025-07-09 09:36:12', 0, NULL, 0, NULL, 1),
(10493, 25753, 'Ison xperiences', 'Telesales ', '2024-07-22', 12000.00, '2025-02-05', 12000.00, 'Perungudi, Chennai ', '1', '0 years 6 months', 'Health issues \n', 1, '2025-07-09 09:55:45', 0, NULL, 0, NULL, 1),
(10494, 25765, 'Altruist technologies ', 'L1 Advisor ', '2024-09-30', 7.00, '2025-07-02', 11800.00, 'Chennai ', '1', '0 years 9 months', ' Random ', 1, '2025-07-09 04:29:31', 0, NULL, 0, NULL, 1),
(10495, 25767, 'HDFC bank pvt ltd', 'Sales', '2024-08-05', 21.00, '2025-02-10', 21.00, 'Porur', '1', '0 years 6 months', ' During health issue', 1, '2025-07-10 05:11:22', 1, '2025-07-10 05:15:11', 0, NULL, 1),
(10496, 25767, 'HDB financial Service pvt ltd', 'Insurance Verification', '2022-01-10', 10000.00, '2024-07-31', 19000.00, 'Porur', '1', '2 years 6 months', 'Promoting to hdfc staff', 1, '2025-07-10 05:14:25', 0, NULL, 0, NULL, 1),
(10497, 25771, 'Star health insurance ', 'CRE ', '2024-07-07', 18000.00, '2025-05-22', 20000.00, 'Omr', '1', '0 years 10 months', ' Some Family Issue ', 1, '2025-07-10 06:11:05', 0, NULL, 0, NULL, 1),
(10498, 25774, 'Pinaka enterprises ', 'Telecaller ', '2025-04-28', 18.50, '2025-06-30', 18.50, 'Nungambakkam ', '1', '0 years 2 months', 'Very long distances of travel so late at come to home at 9pm ', 1, '2025-07-10 09:53:20', 0, NULL, 0, NULL, 1),
(10499, 25790, 'Cemo', 'Telle calling ', '2022-01-20', 15000.00, '2025-06-20', 15000.00, 'Mount road ', '1', '3 years 5 months', ' Health issues ', 1, '2025-07-11 05:52:56', 0, NULL, 0, NULL, 1),
(10500, 25799, 'Daeseong india automotive  pvt ltd', 'quality control', '2021-08-01', 16500.00, '2023-08-20', 16500.00, 'sri perumpathur', '1', '2 years 0 months', ' That time my father was suffering from liver issues\nHe need my help so i relieved', 1, '2025-07-11 06:35:22', 1, '2025-07-11 06:36:19', 0, NULL, 1),
(10501, 25798, 'Star Health & Allied Insurance', 'telecaller', '2022-07-01', 16000.00, '2025-02-23', 18.50, 'Vadapalani', '1', '2 years 7 months', ' thats not onroll  job , working days and timing not porper ', 1, '2025-07-11 07:27:33', 0, NULL, 0, NULL, 1),
(10502, 25806, 'Meyer organics Pvt Ltd ', 'Jr executive ', '2024-12-10', 7.00, '2025-05-31', 25000.00, 'Peenya ', '1', '0 years 5 months', ' Personal issue', 1, '2025-07-11 07:44:31', 0, NULL, 0, NULL, 1),
(10503, 25808, 'graffitto industrial material pvt ltd', 'telecaller', '2025-03-04', 14000.00, '2025-06-05', 14000.00, 'tirunelveli', '1', '0 years 3 months', ' ', 1, '2025-07-11 08:02:07', 0, NULL, 0, NULL, 1),
(10504, 25810, 'Jio Infocomm ', 'Jio fiber engineer and sales executive ', '2021-12-01', 17000.00, '2022-12-16', 17000.00, 'Perambur ', '1', '1 years 0 months', ' Applied for uG course ', 1, '2025-07-11 09:28:15', 0, NULL, 0, NULL, 1),
(10505, 25811, 'EBIXCASH ', 'Relationship manager ', '2024-09-11', 25.00, '2025-05-20', 25000.00, 'Bommanahalli ', '1', '0 years 8 months', ' Process close ', 1, '2025-07-11 01:21:17', 0, NULL, 0, NULL, 1),
(10506, 25811, 'Value vidya ', 'Education consultant ', '2023-09-01', 15000.00, '2024-08-31', 15000.00, 'Mirava circle ', '1', '0 years 11 months', 'Health issues ', 1, '2025-07-11 01:23:36', 0, NULL, 0, NULL, 1),
(10507, 25813, 'Power Builders ', 'Receptionist ', '2025-04-02', 17000.00, '1970-01-01', 17000.00, '27/57, Ellaiamman colony, teynampet, chennai ', '2', '0 years 3 months', 'Not Relieved yet.', 1, '2025-07-12 05:42:06', 0, NULL, 0, NULL, 1),
(10508, 25814, 'Aurora infinite private limited ', 'Telecaller', '2024-06-12', 15.00, '2025-05-12', 15.00, 'Vadapalani ', '1', '0 years 11 months', ' That company shifted in to other location that is the reason for relieving ', 1, '2025-07-12 06:20:51', 0, NULL, 0, NULL, 1),
(10509, 25838, 'Domestic voice ', 'Voice process ', '2024-12-27', 13500.00, '2025-06-10', 13500.00, 'Chennai', '1', '0 years 5 months', ' Health issues ', 1, '2025-07-14 07:07:03', 0, NULL, 0, NULL, 1),
(10510, 25850, 'Shriram Finance Limited ', 'Relationship Executive ', '2024-01-08', 306000.00, '2024-07-29', 306000.00, 'Erode', '1', '0 years 6 months', ' To prepare for Banking Exams', 1, '2025-07-14 08:49:51', 0, NULL, 0, NULL, 1),
(10511, 25851, 'FRQ BRO PRIVATE LIMITED ', 'OEC', '2024-01-09', 12000.00, '2025-01-25', 20000.00, 'DHARMAPURI TAMILNADU ', '1', '1 years 0 months', ' LOOKING FOR OTHER JOB', 1, '2025-07-14 09:54:32', 0, NULL, 0, NULL, 1),
(10512, 25851, 'MOBASE ELECTRONICS', 'GET', '2022-11-19', 20000.00, '2023-06-15', 24000.00, 'THIRUVALLUR ', '1', '0 years 6 months', 'HEALTH ISSUES ', 1, '2025-07-14 09:57:16', 0, NULL, 0, NULL, 1),
(10513, 25873, 'Policy bazaar', 'Associate sales consultant ', '2024-08-10', 21000.00, '2025-03-08', 21000.00, 'Kanthanchavadi ', '1', '0 years 6 months', ' Process change to Mumbai ', 1, '2025-07-15 07:51:28', 0, NULL, 0, NULL, 1),
(10514, 25872, 'Policybazaar brokerage pvt ltd', 'Sales associate ', '2024-08-10', 250000.00, '2025-06-17', 250000.00, 'Chennai ', '1', '0 years 10 months', ' Family issue ', 1, '2025-07-15 07:58:16', 0, NULL, 0, NULL, 1),
(10515, 25874, 'Yes Bank ', 'Fraud risk analyst ', '2024-02-20', 15000.00, '2025-04-10', 15000.00, 'Chennai', '1', '1 years 1 months', ' ', 1, '2025-07-15 09:07:12', 0, NULL, 0, NULL, 1),
(10516, 25880, 'Black buck', 'Telesales agent ', '2024-08-28', 1.00, '2025-02-13', 18000.00, 'Banglore ', '1', '0 years 10 months', 'I need go to my examination for masters educational ', 1, '2025-07-15 07:41:55', 0, NULL, 0, NULL, 1),
(10517, 25883, 'Rubiz It Services ', 'Dataentry operator ', '2024-02-19', 8000.00, '2025-05-30', 12000.00, 'Tirunelveli ', '1', '1 years 3 months', ' For getting better job experience ', 1, '2025-07-16 05:18:31', 0, NULL, 0, NULL, 1),
(10518, 25887, 'Just dial pvt ltd', 'Telesales executive', '2019-07-17', 12000.00, '2024-07-31', 27000.00, 'Saidapet, guindy', '1', '5 years 0 months', 'My Family Issues ', 1, '2025-07-16 05:52:00', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10519, 25888, 'venture soft tech', 'qa', '2022-07-16', 15000.00, '2023-02-01', 500.00, 'bangalore', '1', '0 years 6 months', ' Process Shut down', 1, '2025-07-16 06:34:39', 0, NULL, 0, NULL, 1),
(10520, 25890, 'Max life insurance co Ltd ', 'Assistant manager ', '2024-02-12', 280000.00, '2024-07-12', 280000.00, 'Koramangala ', '1', '0 years 5 months', ' For carier growth and i got better opportunity ', 1, '2025-07-16 06:35:32', 0, NULL, 0, NULL, 1),
(10521, 25890, 'Shriram Life insurance ', 'Rm', '2024-07-18', 350000.00, '2024-12-18', 350000.00, 'Vajarahalli', '1', '0 years 5 months', 'Personal work ', 1, '2025-07-16 06:37:02', 0, NULL, 0, NULL, 1),
(10522, 25888, 'baroda global shared ', 'collection', '2023-02-13', 22000.00, '2024-05-01', 100.00, 'bangalore', '1', '1 years 2 months', 'higher education ', 1, '2025-07-16 06:38:20', 0, NULL, 0, NULL, 1),
(10523, 25888, 'payrupik', 'collection ', '2024-10-08', 25000.00, '2025-06-05', 100.00, 'bangalore', '1', '0 years 7 months', 'health issues ', 1, '2025-07-16 06:41:02', 0, NULL, 0, NULL, 1),
(10524, 25892, 'Kushals fashion jewellery ', 'Sales executive ', '2023-11-01', 10000.00, '2024-07-01', 10000.00, 'Hubli', '1', '0 years 8 months', ' Education ', 1, '2025-07-16 07:08:20', 0, NULL, 0, NULL, 1),
(10525, 25901, 'Bharat bio tank', 'Customer sales executive ', '2022-10-16', 15000.00, '2024-09-30', 19500.00, 'Aminjikarai', '1', '1 years 11 months', ' ', 1, '2025-07-16 08:10:45', 0, NULL, 0, NULL, 1),
(10526, 25899, 'Credit mantri', 'Tellecaller', '2024-01-04', 15000.00, '2025-03-15', 15000.00, 'Mount road', '1', '1 years 2 months', ' S', 1, '2025-07-16 10:02:32', 0, NULL, 0, NULL, 1),
(10527, 25904, 'Credit mantri', 'Tellcaller ', '2023-11-07', 15000.00, '2025-05-29', 15000.00, 'Mount road ', '1', '1 years 6 months', ' Salary problem incentives issue', 1, '2025-07-16 10:22:33', 0, NULL, 0, NULL, 1),
(10528, 25912, 'Altruist Technologies Pvt Ltd', 'Team leader', '2022-10-21', 14000.00, '2025-07-11', 14000.00, 'Mount Road', '1', '2 years 8 months', ' Better development', 1, '2025-07-17 06:01:49', 0, NULL, 0, NULL, 1),
(10529, 25915, 'Office of the accountant general ', 'Data entry ', '2020-11-14', 12000.00, '2024-12-31', 18000.00, 'Teynampet', '1', '4 years 1 months', ' Contract ended ', 1, '2025-07-17 06:32:42', 0, NULL, 0, NULL, 1),
(10530, 25920, 'Office bazzar e-store private limited ', 'Quotation excited ', '2025-03-15', 11000.00, '2025-07-05', 11000.00, 'Royapettah ', '1', '0 years 3 months', ' Low salary \n', 1, '2025-07-17 09:29:20', 0, NULL, 0, NULL, 1),
(10531, 25925, 'Shivay prashar pvt ltd', 'Sale\'s executive ', '2023-02-22', 18000.00, '2025-02-04', 18000.00, 'Bangalore ', '1', '1 years 11 months', ' Not giving on time salary ', 1, '2025-07-18 06:24:45', 0, NULL, 0, NULL, 1),
(10532, 25931, 'CHITRA scientific industries ', 'Tally accountant ', '2021-06-06', 12000.00, '2022-05-31', 15000.00, 'Valasaravakkam ', '1', '0 years 11 months', ' Im have looked for grow my career in a sales domin', 1, '2025-07-18 01:20:26', 0, NULL, 0, NULL, 1),
(10533, 23848, 'a&a dukaan financial services ltd', 'Relationship officer ', '2025-01-28', 7.00, '2025-07-15', 18500.00, 'Chennai Ambattur ', '1', '0 years 5 months', 'My father\'s medical issues ', 1, '2025-07-19 07:11:56', 0, NULL, 0, NULL, 1),
(10534, 25955, 'Altruist Technologies', 'Caller', '2024-05-09', 15000.00, '2025-07-11', 15000.00, 'Mount Road', '1', '1 years 2 months', 'They didn\'t Hike salary and Incentives problems', 1, '2025-07-21 05:19:52', 0, NULL, 0, NULL, 1),
(10535, 25958, 'cams', 'kyc', '2021-04-25', 18500.00, '2025-02-28', 4.00, 'chennai', '1', '3 years 10 months', ' family', 1, '2025-07-21 05:21:25', 0, NULL, 0, NULL, 1),
(10536, 25961, 'policybazzar', 'advisor', '2024-06-05', 250000.00, '2025-02-28', 250000.00, 'chennai', '1', '0 years 8 months', ' Move on to better company', 1, '2025-07-21 05:37:14', 0, NULL, 0, NULL, 1),
(10537, 25957, 'Foxconn India Private Limited', 'QUALITY SUPERVISOR', '2023-03-02', 22000.00, '2023-10-15', 22000.00, 'Sriperambudur', '1', '0 years 7 months', 'jOB SWITCH', 154, '2025-07-21 11:41:00', 0, NULL, 0, NULL, 1),
(10538, 25957, 'kARAIKUDI NEWS CHANNEL', 'Newsreader', '2023-12-15', 18000.00, '2024-12-20', 18000.00, 'Karaikudi', '1', '1 years 0 months', 'Marriage', 154, '2025-07-21 11:42:25', 0, NULL, 0, NULL, 1),
(10539, 25964, 'Csc ', 'Trainer ', '2022-11-01', 12000.00, '2023-05-30', 15000.00, 'Chinnasalem', '1', '0 years 6 months', ' For higher studies', 1, '2025-07-21 06:24:07', 0, NULL, 0, NULL, 1),
(10540, 25969, 'Pointel Solutions India Private Limited', 'Project Coordinator', '2025-03-03', 15000.00, '2025-07-18', 15000.00, 'Chennai', '1', '0 years 4 months', 'As i am completed the java full stack developer in that company I worked in the non technical so that so  I want to work in technical as a developer.', 1, '2025-07-21 07:05:44', 0, NULL, 0, NULL, 1),
(10541, 25971, 'Emphasis business solutions ', 'Caller', '2023-09-26', 15000.00, '2024-07-21', 18000.00, 'Kodambakkam Chennai ', '1', '0 years 9 months', ' ', 1, '2025-07-21 07:36:53', 0, NULL, 0, NULL, 1),
(10542, 25971, 'Conneqt Business solutions ', 'Telecaler', '2024-08-26', 22000.00, '2025-02-26', 22000.00, 'Guindy Chennai ', '1', '0 years 6 months', 'Met an a accedent', 1, '2025-07-21 07:39:00', 0, NULL, 0, NULL, 1),
(10543, 25974, 'The park hotel Chennai ', 'Assistant accountant ', '2022-11-09', 15000.00, '2025-02-15', 23000.00, 'Chennai ', '1', '2 years 3 months', ' Personal ', 1, '2025-07-21 10:08:14', 0, NULL, 0, NULL, 1),
(10544, 25975, 'Why global service ', 'Digital marketing intern ', '2024-11-11', 18000.00, '2025-05-23', 18000.00, 'Egmore ', '1', '0 years 6 months', ' ', 1, '2025-07-21 10:21:48', 0, NULL, 0, NULL, 1),
(10545, 25982, 'Colorbar', 'Senior staff', '2024-04-01', 15000.00, '2025-06-15', 20000.00, 'Velachery ', '1', '1 years 2 months', ' Extra time work', 1, '2025-07-22 07:41:42', 0, NULL, 0, NULL, 1),
(10546, 25948, 'Star special wires product pvt Ltd ', 'Sales executive or marketing ', '2025-01-15', 18000.00, '1970-01-01', 18000.00, 'Ambattur ', '2', '0 years 6 months', ' Staff not responsible in our company ', 1, '2025-07-22 08:10:41', 0, NULL, 0, NULL, 1),
(10547, 25987, 'Jio private limited ', 'KYC executive ', '2024-11-01', 22000.00, '2025-07-04', 25000.00, 'Hodi Bangalore ', '1', '0 years 8 months', ' ', 1, '2025-07-22 02:19:07', 0, NULL, 0, NULL, 1),
(10548, 25989, 'M/s. Apra infraprojects ', 'Tenderer & accountant', '2024-06-03', 15000.00, '2025-06-20', 20000.00, 'Kolathur', '1', '1 years 0 months', ' To increase my career experience in various field. To learn new things. ', 1, '2025-07-22 03:56:36', 0, NULL, 0, NULL, 1),
(10549, 25988, 'Bankbazaar ', 'Sales executive ', '2024-07-26', 24000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '0 years 11 months', ' Buliding carrier in different jobs and experience in different places ', 1, '2025-07-22 04:22:10', 0, NULL, 0, NULL, 1),
(10550, 25988, 'Bankbazaar ', 'Sales executive ', '2024-07-26', 15000.00, '1970-01-01', 20000.00, 'Ambattur ', '2', '0 years 11 months', 'Building carrier in different jobs and experience in different places ', 1, '2025-07-22 04:24:20', 0, NULL, 0, NULL, 1),
(10551, 26000, 'Poorvika mobile ', 'Exicutive ', '2025-01-04', 1.00, '2025-07-01', 19500.00, 'Sholinganallur ', '1', '0 years 5 months', ' ', 1, '2025-07-23 05:36:45', 0, NULL, 0, NULL, 1),
(10552, 26002, 'Kagira Drawing Solution ', 'Admin assistant and voice process ', '2024-06-01', 13000.00, '1970-01-01', 17000.00, 'Perungudi ', '2', '1 years 1 months', 'I have worked as a Admin assistant and under the voice process and I releave For my career growth and I have some health issues', 1, '2025-07-23 05:44:16', 0, NULL, 0, NULL, 1),
(10553, 26003, 'Zealous ', 'Telecaller', '2018-01-19', 8500.00, '2018-12-31', 20000.00, 'Kodambakkam high rood', '1', '0 years 11 months', ' Process closed', 1, '2025-07-23 05:52:28', 0, NULL, 0, NULL, 1),
(10554, 26005, 'Apollo group of colleges ', 'Admin executive ', '2025-02-19', 8000.00, '2025-06-05', 14000.00, 'Anna nagar', '1', '0 years 3 months', 'Long distance and I want develop in skills and knowledge ', 1, '2025-07-23 05:55:19', 1, '2025-07-23 05:56:41', 0, NULL, 0),
(10555, 26005, 'Apollo group of colleges ', 'Admin executive ', '2025-02-19', 14000.00, '2025-06-05', 14000.00, 'Anna nagar', '1', '0 years 3 months', 'Long distance and developing my skills ', 1, '2025-07-23 05:56:26', 0, NULL, 0, NULL, 1),
(10556, 26006, 'Collman egancy ', 'Mogappair ', '2023-09-10', 18000.00, '2025-07-23', 18000.00, 'Arumbakam', '1', '1 years 10 months', ' Meet with out of station client ', 1, '2025-07-23 06:04:21', 0, NULL, 0, NULL, 1),
(10557, 26004, 'Lifeline business solutions ', '_', '2025-07-23', 15000.00, '1970-01-01', 15000.00, 'Thousand lights ', '2', '0 years 0 months', ' Office location changed', 1, '2025-07-23 06:31:07', 0, NULL, 0, NULL, 1),
(10558, 26016, '247 digitize ', 'Process associate ', '2024-02-09', 15000.00, '2024-04-30', 15000.00, 'Arumbakkam', '1', '0 years 2 months', ' Due to continuous night shifts', 1, '2025-07-23 06:32:02', 0, NULL, 0, NULL, 1),
(10559, 26004, 'Lifeline business solutions ', 'Tele caller ', '2025-05-02', 15000.00, '2025-07-23', 15000.00, 'Thousand lights ', '1', '0 years 2 months', 'Office location changed ', 1, '2025-07-23 06:32:47', 0, NULL, 0, NULL, 1),
(10560, 26004, 'Lifeline Business solutions ', 'Tele caller ', '2025-05-02', 15000.00, '2025-07-23', 15000.00, 'Thousand lights ', '1', '0 years 2 months', ' Office location changed', 1, '2025-07-23 06:36:27', 0, NULL, 0, NULL, 1),
(10561, 26017, 'Life insurance ', 'Telecalling ', '2024-09-17', 20000.00, '2025-03-02', 17.14, 'Chennai ', '1', '0 years 5 months', ' Company shift ', 1, '2025-07-23 07:04:24', 0, NULL, 0, NULL, 1),
(10562, 26044, 'Plada info tech ', 'Virtual relationship manager ', '2023-06-13', 25000.00, '2025-03-20', 25730.00, 'Ambattur ', '1', '1 years 9 months', ' ', 1, '2025-07-24 05:47:31', 0, NULL, 0, NULL, 1),
(10563, 26032, 'shriram finance ltd', 'branch product head ', '2022-06-21', 15000.00, '2024-12-18', 21000.00, 'ponneri', '1', '2 years 5 months', 'Distance ', 1, '2025-07-24 05:48:28', 0, NULL, 0, NULL, 1),
(10564, 26041, 'centizen inc', 'software engineer', '2022-12-01', 400000.00, '2025-06-27', 400000.00, 'tirunelveli', '1', '2 years 6 months', ' I’m looking for better growth opportunities and a role that aligns more closely with my skills and long-term career goals.', 1, '2025-07-24 06:03:29', 0, NULL, 0, NULL, 1),
(10565, 26038, 'Vysun business solution ', 'Email marketing executive ', '2024-06-01', 20.00, '2025-06-01', 20.00, 'Jayanagar ', '1', '1 years 0 months', ' I had a great experience with my previous company, but I felt the growth opportunities were limited. I wanted to move to a role where I could learn new skills and grow professionally.', 1, '2025-07-24 07:41:10', 0, NULL, 0, NULL, 1),
(10566, 26056, 'Banking ', 'Telecaller ', '2018-07-01', 12.00, '2019-08-02', 15.00, 'Chennai ', '1', '1 years 1 months', ' Due to health issues ', 1, '2025-07-24 12:29:11', 0, NULL, 0, NULL, 1),
(10567, 18147, 'Vigha Businesses Pvt Ltd ', 'Business Manager ', '2024-02-08', 20000.00, '2025-06-30', 25000.00, 'Chengalpattu ', '1', '1 years 4 months', ' ', 1, '2025-07-25 01:36:50', 0, NULL, 0, NULL, 1),
(10568, 26062, 'RB enterprises ', 'HR EXECUTIVE OFFICEER', '2024-01-10', 14000.00, '2025-07-22', 16000.00, 'Kolathur ', '1', '1 years 6 months', ' Project is completed so I am relieving ', 1, '2025-07-25 05:10:24', 0, NULL, 0, NULL, 1),
(10569, 26063, 'Apzzo Technologies Pvt Ltd', 'Backend Developer', '2023-07-17', 180000.00, '2025-08-25', 315000.00, 'chennai', '2', '2 years 1 months', ' I have been working with my current company for the past 2 years, and during this time, I’ve gained valuable experience and grown both technically and professionally. I now feel it’s the right time to seek a new opportunity where I can work in a more dynamic and growth-oriented environment, continue to learn, and contribute my skills more effectively to impactful projects.', 1, '2025-07-25 05:51:29', 0, NULL, 0, NULL, 1),
(10570, 26064, 'Digitise Business Solutions Pvt.Lim', 'Customer support executive ', '2024-04-24', 12000.00, '2025-06-03', 12000.00, 'Velachery ', '1', '1 years 1 months', ' Salary Expected and Carrier Growth ', 1, '2025-07-25 06:06:04', 0, NULL, 0, NULL, 1),
(10571, 26068, 'COMPETITIVE EDGE ACADEMY ', 'Telecaller & admin assistant ', '2024-07-01', 13000.00, '2025-07-24', 15000.00, 'Anna nagar west', '1', '1 years 0 months', 'Nothing ', 1, '2025-07-25 06:45:13', 0, NULL, 0, NULL, 1),
(10572, 26069, 'Rathira Ayurveda company', 'Tellecaler & tellesales', '2020-09-09', 18000.00, '2024-12-26', 28000.00, 'Coimbatore ', '1', '4 years 3 months', ' Company got scam ', 1, '2025-07-25 06:52:54', 0, NULL, 0, NULL, 1),
(10573, 26067, 'Star health insurance ', 'Tele caller ', '2024-06-05', 16000.00, '2024-09-08', 20000.00, 'Saidapet', '1', '0 years 3 months', ' I got marriage ', 1, '2025-07-25 06:55:47', 0, NULL, 0, NULL, 1),
(10574, 26073, 'gowtham k', 'sales Executive ', '2025-05-01', 20000.00, '2025-06-01', 20000.00, 'palikaranai', '1', '0 years 1 months', 'Filed work not inter ', 1, '2025-07-25 07:11:55', 0, NULL, 0, NULL, 1),
(10575, 26077, 'cluster technologies', 'mern stack developer', '2023-02-01', 300000.00, '2025-06-30', 400000.00, 'chennai', '1', '2 years 4 months', ' No more projects are yet and could not contribute my skills with them', 1, '2025-07-25 07:36:16', 0, NULL, 0, NULL, 1),
(10576, 26079, 'Miras visa private limited ', 'Visa executive ', '2024-05-16', 13000.00, '2025-07-25', 15000.00, 'Egmore ', '2', '1 years 2 months', ' ', 1, '2025-07-25 09:06:07', 0, NULL, 0, NULL, 1),
(10577, 26085, 'EPMA info tech ', '11 months', '2023-07-26', 14000.00, '2024-08-31', 14000.00, 'Ooty', '1', '1 years 1 months', ' Because of the technical issue we lost our server before we solve the problem of our sever we lost our project so I left the company ', 1, '2025-07-25 12:29:51', 0, NULL, 0, NULL, 1),
(10578, 26071, 'skillmine technology', 'software engineer', '2023-06-05', 412000.00, '1970-01-01', 412000.00, 'sivakasi', '2', '2 years 1 months', ' Better Career growth and explore new things ', 1, '2025-07-25 06:36:27', 0, NULL, 0, NULL, 1),
(10579, 26100, 'Getmyuni ', 'Inside sales executive ', '2024-07-01', 24000.00, '2025-01-01', 24000.00, 'Bangalore ', '1', '0 years 6 months', ' Company was relocating to delhi location ', 1, '2025-07-28 02:00:35', 0, NULL, 0, NULL, 1),
(10580, 26101, 'Vysun Business Solutions ', 'Email Marketing Executive ', '2024-06-08', 23000.00, '2025-07-02', 23000.00, 'Bengaluru', '1', '1 years 0 months', ' The company was about to shut dowm', 1, '2025-07-28 05:16:30', 0, NULL, 0, NULL, 1),
(10581, 26102, 'Writer information ', 'Telecaller ', '2024-11-19', 15000.00, '2025-07-14', 15000.00, 'Alwarpet ', '1', '0 years 7 months', 'Due to health issues ', 1, '2025-07-28 05:25:07', 0, NULL, 0, NULL, 1),
(10582, 26103, 'Eximio private limited ', 'Team leader ', '2022-06-15', 10000.00, '2025-01-31', 17000.00, 'Chennai ', '1', '2 years 7 months', ' ', 1, '2025-07-28 05:30:27', 0, NULL, 0, NULL, 1),
(10583, 26109, 'forte management service', 'loan recovery', '2024-12-02', 15000.00, '2025-06-30', 15000.00, 'Chennai', '1', '0 years 6 months', ' I didn’t get a salary properly the give salary like half of the salary so thats y i reliev from that office ', 1, '2025-07-28 07:56:57', 0, NULL, 0, NULL, 1),
(10584, 26109, 'forte management ', 'loan recovery', '2024-12-02', 15000.00, '2025-06-30', 15000.00, 'chennai ', '1', '0 years 6 months', 'They didn’t give a salary properly', 1, '2025-07-28 07:58:46', 0, NULL, 0, NULL, 1),
(10585, 26030, 'Neolysi Technologies ', 'Full stack developer ', '2023-08-18', 10000.00, '1970-01-01', 18000.00, 'Chennai, Thousand light ', '2', '1 years 11 months', 'Looking for new challenges, Career growth opportunities,etc..', 1, '2025-07-28 10:11:55', 0, NULL, 0, NULL, 1),
(10586, 26114, 'chola mandalam investment and financae private lim', 'associate manager collection', '2023-06-20', 22000.00, '2025-03-31', 0.00, 'chennai mount road', '1', '1 years 9 months', 'to start a business', 154, '2025-07-28 03:46:12', 0, NULL, 0, NULL, 1),
(10587, 26114, 'exit solutions', 'senior executive', '2023-10-10', 18000.00, '2023-05-18', 18000.00, 'chennai', '1', '0 years 4 months', 'salary issue', 154, '2025-07-28 03:50:48', 0, NULL, 0, NULL, 1),
(10588, 26118, 'Ienergizer pvt ltd', 'Customer Support Excutive ', '2024-03-23', 20.00, '2025-07-14', 20.00, 'Kudlu gate', '1', '1 years 3 months', ' I am looking for a new opportunity where I can take on more responsibilities ', 1, '2025-07-28 12:09:15', 0, NULL, 0, NULL, 1),
(10589, 26126, 'Star health insurance ', 'Asst manager ', '2019-02-21', 13000.00, '2025-05-03', 430000.00, 'Egmore ', '1', '6 years 2 months', ' Personal reasons ', 1, '2025-07-29 06:12:51', 0, NULL, 0, NULL, 1),
(10590, 26129, 'IEnergizer', 'voice process ', '2023-02-07', 1.00, '2025-04-03', 20.00, 'kulugate', '1', '2 years 1 months', ' Due to medical  issues ', 1, '2025-07-29 07:20:56', 0, NULL, 0, NULL, 1),
(10591, 25651, 'Hdfc bank and sundaram finance', 'Telesales,sales associate ', '2023-08-09', 16500.00, '2024-04-06', 20000.00, 'Chennai', '1', '0 years 7 months', ' Travelling issues', 1, '2025-07-30 05:11:18', 0, NULL, 0, NULL, 1),
(10592, 26124, 'Shri Guruvaiyurappan Chits pvt ltd', 'Tele caller ', '2024-01-02', 15000.00, '2025-07-31', 15000.00, 'Chennai ', '1', '1 years 6 months', 'Work pressure and very long travel in house ', 1, '2025-07-30 07:01:46', 154, '2025-07-30 12:40:38', 0, NULL, 1),
(10593, 26150, 'levicent software technologies private limited', 'software developer', '2023-05-08', 12000.00, '2025-07-10', 18000.00, 'tiruvannamalai', '1', '2 years 2 months', ' ', 1, '2025-07-30 03:54:41', 0, NULL, 0, NULL, 1),
(10594, 26159, 'Ntt data', 'Hphc insurance opration ', '2022-10-03', 17000.00, '2024-06-20', 20000.00, 'Porur', '1', '1 years 8 months', ' Health issues ', 1, '2025-07-31 06:08:02', 0, NULL, 0, NULL, 1),
(10595, 26161, 'Bethar technology private limited ', 'Telesales executive ', '2022-01-21', 15000.00, '2025-08-16', 20000.00, 'Chennai', '1', '3 years 6 months', ' ', 1, '2025-07-31 06:16:59', 0, NULL, 0, NULL, 1),
(10596, 26163, 'Muthu shankar tourism ajd travels ', 'Admin executive', '2018-01-02', 13500.00, '2020-12-31', 14000.00, 'Thiruvanmiyur chennai ', '1', '2 years 11 months', ' ', 1, '2025-07-31 07:15:24', 0, NULL, 0, NULL, 1),
(10597, 26163, 'Cholamandalam', 'Process associate', '2021-01-01', 15000.00, '2023-12-30', 15000.00, 'Parrys chennai', '1', '2 years 11 months', 'Work pressure ', 1, '2025-07-31 07:17:39', 0, NULL, 0, NULL, 1),
(10598, 26177, 'BAWA HONDA', 'Sales And Customer Relationship Executive ', '2023-08-01', 15000.00, '2024-09-10', 16000.00, 'Mayiladuthurai', '1', '1 years 1 months', ' Personal Reason', 1, '2025-08-01 04:50:12', 0, NULL, 0, NULL, 1),
(10599, 26176, 'Pace setters business solutions ', 'Lnt collection process ', '2024-11-02', 13000.00, '2025-04-14', 13000.00, 'Nugambakkam ', '1', '0 years 5 months', 'Accident ', 1, '2025-08-01 05:19:10', 0, NULL, 0, NULL, 1),
(10600, 26167, 'Kadamba technology ', 'Data process Associative ', '2025-01-15', 2.50, '2025-07-31', 2.50, 'Trichy ', '1', '0 years 6 months', 'Health issue ', 1, '2025-08-01 06:18:21', 0, NULL, 0, NULL, 1),
(10601, 26186, 'HDB financial services ', 'Senior telecalling officer', '2023-08-02', 12000.00, '2024-08-06', 10000.00, 'Greams road', '1', '1 years 0 months', ' Less salary ', 1, '2025-08-01 06:21:14', 0, NULL, 0, NULL, 1),
(10602, 26186, 'Spocto solution team lease', 'Digital debt counsellor ', '2025-02-04', 18000.00, '2025-05-31', 18000.00, 'Royapettah', '1', '0 years 3 months', 'Process ramp down', 1, '2025-08-01 06:23:38', 0, NULL, 0, NULL, 1),
(10603, 26188, 'Hdb financial services ', 'Senior telecaller', '2022-12-22', 12000.00, '2024-07-09', 12000.00, 'Chennai', '1', '1 years 6 months', ' Less salary ', 1, '2025-08-01 06:26:50', 0, NULL, 0, NULL, 1),
(10604, 26190, 'Policy bazaar', 'Financial advisor ', '2024-08-10', 360000.00, '2025-08-20', 36000.00, 'Chennai', '1', '1 years 0 months', ' ', 1, '2025-08-01 06:46:08', 0, NULL, 0, NULL, 1),
(10605, 26201, 'Policy bazaar ', 'Financial advisor ', '2024-08-10', 21000.00, '2025-04-30', 21000.00, 'Chennai ', '1', '0 years 8 months', ' Personal issue ', 1, '2025-08-02 05:12:17', 0, NULL, 0, NULL, 1),
(10606, 26237, 'i3 solution private limited ', 'Vadapalani ', '2024-06-01', 25000.00, '2025-06-25', 25000.00, 'Chennai ', '1', '1 years 0 months', ' Startup company\'s I am not relieving company loss so close \n', 1, '2025-08-05 05:15:39', 0, NULL, 0, NULL, 1),
(10607, 26240, 'Bhuvaneshwari', 'Telecaller', '2025-08-05', 18000.00, '1970-01-01', 15000.00, 'Chennai', '2', '0 years 0 months', ' ', 1, '2025-08-05 06:15:05', 0, NULL, 0, NULL, 1),
(10608, 26240, 'Bhuvaneshwari', 'Telecaller', '2025-08-05', 18000.00, '1970-01-01', 15000.00, 'Chennai', '2', '0 years 0 months', 'Pregenant', 1, '2025-08-05 06:16:32', 0, NULL, 0, NULL, 1),
(10609, 26244, 'Imarque solutions pvt Ltd ', 'Front office executive ', '2022-01-03', 13000.00, '2022-12-31', 13000.00, 'Teynampet', '1', '0 years 11 months', ' Married ', 1, '2025-08-05 06:31:37', 0, NULL, 0, NULL, 1),
(10610, 26246, 'Global infinity', 'Data validation expert', '2024-06-05', 13000.00, '2025-06-10', 15000.00, 'Trichy', '1', '1 years 0 months', ' For career growth', 1, '2025-08-05 06:46:35', 0, NULL, 0, NULL, 1),
(10611, 26248, 'Global infinity ', 'Data validation expert', '2024-06-06', 13000.00, '2025-06-10', 15000.00, 'Trichy ', '1', '1 years 0 months', ' Project completed ', 1, '2025-08-05 06:51:07', 0, NULL, 0, NULL, 1),
(10612, 26249, 'Global infinity ', 'Data validation expert', '2024-06-08', 13000.00, '2025-06-10', 15000.00, 'Thousands lights ', '1', '1 years 0 months', ' ', 1, '2025-08-05 06:54:22', 0, NULL, 0, NULL, 1),
(10613, 26250, 'Golbal Infinity ', 'Data validation expert', '2024-06-02', 13000.00, '2025-06-05', 15000.00, 'Trichy', '1', '1 years 0 months', ' Project complete', 1, '2025-08-05 07:12:22', 0, NULL, 0, NULL, 1),
(10614, 26253, 'shriram finance limited', 'seniour exective', '2024-06-06', 21000.00, '2025-04-02', 21000.00, 'kadambathur', '1', '0 years 9 months', ' Medical reson', 1, '2025-08-05 07:43:02', 0, NULL, 0, NULL, 1),
(10615, 26253, 'quess corp limited', 'sales officer', '2023-01-04', 19000.00, '2024-01-10', 19000.00, 'vadapalani', '1', '1 years 0 months', 'Better job', 1, '2025-08-05 07:44:55', 0, NULL, 0, NULL, 1),
(10616, 26253, 'conneqt business solutions', 'seniour sales executive', '2022-02-08', 18000.00, '2022-12-06', 18000.00, 'gindy', '1', '0 years 9 months', 'Process closed', 1, '2025-08-05 07:47:24', 0, NULL, 0, NULL, 1),
(10617, 26261, 'Mahadeva audit office ', 'Accountant ', '2025-02-01', 15000.00, '2025-08-01', 15000.00, 'Mysore bank ', '1', '0 years 6 months', ' Travelling issue', 1, '2025-08-05 12:14:31', 0, NULL, 0, NULL, 1),
(10618, 26264, 'i marq solution pvt ltd', 'telecaller', '2022-02-03', 17000.00, '2023-07-30', 1700.00, 'teynampet', '1', '1 years 5 months', ' For pregnancy', 1, '2025-08-05 07:01:11', 0, NULL, 0, NULL, 1),
(10619, 26276, 'Federal bank', 'Relationship manager ', '2025-08-06', 25000.00, '1970-01-01', 25000.00, 'Chennai', '2', '0 years 0 months', ' Health issues ', 1, '2025-08-06 08:27:57', 0, NULL, 0, NULL, 1),
(10620, 26278, 'Writer information', 'Customer support', '2024-11-18', 15000.00, '2025-07-10', 15000.00, 'CHENNAI', '1', '0 years 8 months', 'Health issues cause of rotational shift timings', 1, '2025-08-06 09:57:43', 0, NULL, 0, NULL, 1),
(10621, 26274, 'Madhani Travels', 'Sales and tele sales Executive ', '2023-08-23', 23000.00, '2025-05-15', 25000.00, 'Chennai', '1', '1 years 8 months', ' The company did not pay the salary properly.', 1, '2025-08-06 10:18:32', 0, NULL, 0, NULL, 1),
(10622, 26268, 'aapgs', 'teamleader', '2023-02-06', 11000.00, '1970-01-01', 28750.00, 'madurai', '2', '2 years 6 months', ' Insearch of new environment ', 1, '2025-08-06 02:59:13', 0, NULL, 0, NULL, 1),
(10623, 26089, 'Hero motocorp ', 'Insurance executive ', '2022-04-01', 18000.00, '2023-06-30', 18000.00, 'Rajasthan ', '1', '1 years 2 months', ' Relocate to Bangalore ', 1, '2025-08-07 04:56:53', 0, NULL, 0, NULL, 1),
(10624, 26280, 'Suresh timber mass marketting ', 'Telecalling and sales ', '2023-10-02', 13000.00, '2024-04-02', 13000.00, 'Madurai ', '1', '0 years 6 months', ' Marriage ', 1, '2025-08-07 05:21:43', 0, NULL, 0, NULL, 1),
(10625, 26287, 'ZUARI MANAGEMENT SERVICES ', 'Account ', '2023-02-01', 12000.00, '2025-07-20', 15000.00, 'Jk.puram', '1', '2 years 5 months', '  I want to see my skills and abilities in better position ', 1, '2025-08-07 05:47:25', 0, NULL, 0, NULL, 1),
(10626, 26291, 'Sangeetha company', 'Telecalling', '2021-08-07', 10000.00, '2022-11-07', 12000.00, 'Anna nagar', '1', '1 years 3 months', ' Father passed', 1, '2025-08-07 06:11:44', 0, NULL, 0, NULL, 1),
(10627, 26293, 'ICICI Lombard general insurance ', 'Tele sales officer ', '2022-07-17', 12000.00, '1970-01-01', 17000.00, 'Thousand light ', '2', '3 years 0 months', ' Health issues ', 1, '2025-08-07 06:32:22', 0, NULL, 0, NULL, 1),
(10628, 26295, 'indira ivf', 'medical records Executive ', '2025-07-19', 400000.00, '1970-01-01', 400000.00, 'jp nagar', '2', '0 years 0 months', ' ', 1, '2025-08-07 06:41:31', 0, NULL, 0, NULL, 1),
(10629, 26295, 'induan instit of mille research', 'projec co ordinator', '2021-08-09', 250000.00, '2024-12-31', 250000.00, 'bengalore', '1', '3 years 4 months', 'Better opportunity', 1, '2025-08-07 06:45:00', 0, NULL, 0, NULL, 1),
(10630, 26301, 'Credixxa ', 'SALES executive ', '2024-05-06', 18000.00, '2025-06-13', 18000.00, 'Ambattur ', '1', '1 years 1 months', ' The company shifted to other location', 1, '2025-08-07 07:24:42', 0, NULL, 0, NULL, 1),
(10631, 26296, 'Phone pe private limited ', 'Business development Executive ', '2024-01-04', 19000.00, '1970-01-01', 24000.00, 'Chennai ', '2', '1 years 7 months', ' Career growth ', 1, '2025-08-07 07:27:28', 0, NULL, 0, NULL, 1),
(10632, 26308, 'Infosys', 'System engineer', '2022-01-17', 22000.00, '2025-07-01', 34000.00, 'Mysore', '1', '3 years 5 months', ' Layoff', 1, '2025-08-08 05:43:37', 0, NULL, 0, NULL, 1),
(10633, 26309, '1 year', 'Nill', '2024-01-01', 13000.00, '2025-01-10', 14000.00, 'Royapuram', '1', '1 years 0 months', ' ', 1, '2025-08-08 06:03:47', 0, NULL, 0, NULL, 1),
(10634, 26310, 'Altrust', 'Customer support', '2023-11-01', 12000.00, '2024-12-20', 12000.00, 'Mount road chennai', '1', '1 years 1 months', ' Less salary', 1, '2025-08-08 06:13:52', 0, NULL, 0, NULL, 1),
(10635, 26313, 'Digitide business solution ', 'CCE ', '2024-04-25', 14000.00, '2025-07-15', 18500.00, 'Velachery ', '1', '1 years 2 months', ' Personal reason ', 1, '2025-08-08 07:14:19', 0, NULL, 0, NULL, 1),
(10636, 26322, 'Everest fleet', 'Relationship manager ', '2024-03-11', 21000.00, '2025-02-22', 21000.00, 'Koyambedu ', '1', '0 years 11 months', ' ', 1, '2025-08-09 06:14:37', 0, NULL, 0, NULL, 1),
(10637, 26321, 'HDFC SALES', 'Loan officer ', '2024-11-28', 15000.00, '2025-08-06', 20000.00, 'Chennai ', '1', '0 years 8 months', 'No support to earn', 1, '2025-08-09 06:14:49', 0, NULL, 0, NULL, 1),
(10638, 26340, 'Propel Finways', 'Telemarketing executive ', '2024-06-24', 14000.00, '2025-02-28', 15000.00, 'Ashok Nagar', '1', '0 years 8 months', ' 7months Experience\nDidnt provided a promotion and salary increment for what they promised', 1, '2025-08-11 07:07:38', 154, '2025-08-11 12:47:22', 0, NULL, 1),
(10639, 26348, 'Vyapr', 'Inside sales ', '2024-06-08', 25600.00, '2025-08-01', 28560.00, 'HSR layout', '1', '1 years 1 months', ' ', 1, '2025-08-12 07:25:50', 0, NULL, 0, NULL, 1),
(10640, 26353, 'wealth india Financial serives pvt ltd', 'mutual funds adivosoy', '2025-10-21', 20000.00, '2025-11-01', 20000.00, 'chennai', '1', '0 years 0 months', ' Health issu ', 1, '2025-08-12 09:56:57', 0, NULL, 0, NULL, 1),
(10641, 26364, 'Vizza insurance ', 'Telecaller ', '2025-01-13', 16.00, '2025-08-20', 18.00, 'Koyambedu ', '1', '0 years 7 months', 'Health issue ', 1, '2025-08-13 06:37:10', 0, NULL, 0, NULL, 1),
(10642, 26363, 'VIZZA INSURANCE BROKING LTD', 'TELECALLER', '2024-07-17', 16000.00, '2025-01-08', 16000.00, 'KOYEMBEDU ', '1', '0 years 5 months', ' Delay of incentives ', 1, '2025-08-13 06:37:39', 0, NULL, 0, NULL, 1),
(10643, 26362, 'Vizza Insurance Broking limit', 'Tele sale Executive ', '2024-09-27', 12600.00, '1970-01-01', 14000.00, 'Saidapet', '2', '0 years 10 months', ' Mother Health Issues ', 1, '2025-08-13 06:47:12', 0, NULL, 0, NULL, 1),
(10644, 26361, 'Vizza insurance booking company ', 'Telesales ', '2024-09-29', 15000.00, '1970-01-01', 16000.00, 'Saidapet ', '2', '0 years 10 months', ' Company shift to other location ', 1, '2025-08-13 06:47:52', 0, NULL, 0, NULL, 1),
(10645, 26361, 'Vizza insurance booking company ', 'Telesales ', '2024-09-29', 15000.00, '1970-01-01', 16000.00, 'Saidapet ', '2', '0 years 10 months', 'Company shift to other location ', 1, '2025-08-13 06:50:08', 0, NULL, 0, NULL, 1),
(10646, 26368, 'transeazy logistics pvt ltd', 'delivery executive supervisor', '2023-05-08', 10000.00, '2025-06-20', 16000.00, 'mayasandra anekal', '1', '2 years 1 months', ' warehouse shifed ', 1, '2025-08-14 05:08:40', 0, NULL, 0, NULL, 1),
(10647, 26370, 'Imarque solution ', 'Customer executive service ', '2024-11-25', 15000.00, '1970-01-01', 15000.00, 'Teyampet', '2', '0 years 8 months', ' Process transfer to another branch ', 1, '2025-08-14 05:43:35', 0, NULL, 0, NULL, 1),
(10648, 26376, 'Justdial ', 'Marketing ', '2024-03-12', 20000.00, '2025-08-14', 20000.00, 'Saidapet ', '1', '1 years 5 months', ' ', 1, '2025-08-14 07:56:48', 0, NULL, 0, NULL, 1),
(10649, 26378, 'Lavanya', 'Tellecallar ', '2024-10-26', 14.00, '2025-06-10', 16500.00, 'Egmore ', '1', '0 years 7 months', ' Long distance ', 1, '2025-08-14 09:45:52', 0, NULL, 0, NULL, 1),
(10650, 15276, 'Fs insurance broking services pvt ltd', 'Tele caller', '2024-02-14', 14000.00, '2025-04-30', 16000.00, 'Nandanam', '1', '1 years 2 months', ' ', 1, '2025-08-16 06:03:00', 0, NULL, 0, NULL, 1),
(10651, 26385, 'FS insurance Broking services and pvt ltd ', 'Tellecaller', '2023-12-26', 14000.00, '2025-01-15', 14000.00, 'Nandhanam', '1', '1 years 0 months', ' Marriage ', 1, '2025-08-16 06:06:31', 0, NULL, 0, NULL, 1),
(10652, 26392, 'Tamil matrimony ', 'Service executive ', '2023-09-09', 12000.00, '2024-09-12', 16000.00, 'Chennai ', '1', '1 years 0 months', ' Health issues ', 1, '2025-08-16 07:39:16', 0, NULL, 0, NULL, 1),
(10653, 26390, 'Tamilmatrimony', 'Sales executive', '2023-09-28', 12000.00, '2024-08-31', 16000.00, 'Guindy', '1', '0 years 11 months', ' Hire study ', 1, '2025-08-16 07:53:09', 0, NULL, 0, NULL, 1),
(10654, 26401, 'Hdfc life insurance ', 'SDM', '2025-01-27', 22000.00, '2025-05-16', 22000.00, 'Chennai ', '1', '0 years 3 months', ' My team totally changed into field work ', 1, '2025-08-18 04:59:14', 0, NULL, 0, NULL, 1),
(10655, 26401, 'Quess Corp Ltd ', 'Junior Relationship Officer ', '2023-12-15', 11000.00, '2024-08-09', 11000.00, 'Chennai ', '1', '0 years 7 months', 'No salary hike', 1, '2025-08-18 05:01:24', 0, NULL, 0, NULL, 1),
(10656, 26402, 'Sriram chits', 'Marketing officer', '2024-02-18', 12000.00, '2024-10-23', 12000.00, 'Thanjavur ', '1', '0 years 8 months', ' Transfer', 1, '2025-08-18 05:58:08', 0, NULL, 0, NULL, 1),
(10657, 26404, '6 month ', 'Relationship manager ', '2023-05-10', 15000.00, '2023-11-07', 15000.00, 'Bangalore ', '1', '0 years 5 months', ' I had to leave my previous job in Bangalore due to some unavoidable personal reasons. Those issues are now resolved, and I am fully focused on continuing my career without any interruptions.”\n', 1, '2025-08-18 06:00:19', 0, NULL, 0, NULL, 1),
(10658, 26408, 'Digitide business solutions private limited ', 'Telecalling executive ', '2024-07-23', 1.00, '2025-08-08', 11790.00, 'Velachery ', '1', '1 years 0 months', ' ', 1, '2025-08-18 06:19:16', 0, NULL, 0, NULL, 1),
(10659, 26399, 'HDB financial services ', 'Tellecalling', '2024-08-12', 10000.00, '2025-05-31', 12000.00, 'Chennai ', '1', '0 years 9 months', 'No sunday off \nDoing MBA so need sunday off for classes ', 1, '2025-08-18 06:20:15', 0, NULL, 0, NULL, 1),
(10660, 26408, 'Digitide business solutions private limited ', 'Telecalling executive ', '2024-07-23', 1.00, '2025-08-08', 11790.00, 'Velachery ', '1', '1 years 0 months', ' ', 1, '2025-08-18 06:22:53', 0, NULL, 0, NULL, 1),
(10661, 26409, 'Marketsof1', 'Telecaller ', '2024-12-01', 1.00, '2025-05-10', 13000.00, 'Little mount', '1', '0 years 5 months', ' ', 1, '2025-08-18 06:35:03', 0, NULL, 0, NULL, 1),
(10662, 16693, 'justdial pvt ltd', 'telemarketing', '2024-04-09', 18000.00, '2025-05-16', 18000.00, 'little mount', '1', '1 years 1 months', 'career growth', 154, '2025-08-18 01:29:10', 0, NULL, 0, NULL, 1),
(10663, 26414, 'Just dial', 'Telemarketing', '2024-07-06', 18000.00, '2025-07-30', 18000.00, 'CHENNAI', '1', '1 years 0 months', ' For my better career growth', 1, '2025-08-18 08:05:29', 0, NULL, 0, NULL, 1),
(10664, 26415, 'Cams', 'Lead specialist ', '2024-08-19', 28000.00, '2024-11-20', 28000.00, 'Chennai', '1', '0 years 3 months', ' Accident ', 1, '2025-08-18 08:35:01', 0, NULL, 0, NULL, 1),
(10665, 26415, 'Aionion investment services private limited ', 'Deputy manager ', '2019-10-18', 12000.00, '2023-03-10', 25000.00, 'Chennai', '1', '3 years 4 months', 'Personal', 1, '2025-08-18 08:36:09', 0, NULL, 0, NULL, 1),
(10666, 26415, 'Nettyfish solution private limited company ', 'Business associate ', '2024-02-02', 25000.00, '2024-07-01', 25000.00, 'Chennai ', '1', '0 years 4 months', 'Contract closed', 1, '2025-08-18 08:37:39', 0, NULL, 0, NULL, 1),
(10667, 26416, 'Justdial ', 'Chennai ', '2025-04-01', 22000.00, '2025-08-18', 22000.00, 'Little Mount ', '2', '0 years 4 months', ' Not comfortable in work time', 1, '2025-08-18 09:58:08', 0, NULL, 0, NULL, 1),
(10668, 26429, 'Kotak mahindra bank ', 'Junior Associative ', '2024-02-12', 15000.00, '2025-07-08', 15000.00, 'Chennai ', '1', '1 years 4 months', ' ', 1, '2025-08-19 04:57:42', 0, NULL, 0, NULL, 1),
(10669, 26427, 'ams soft tech ', 'recovery agent ', '2024-02-15', 18000.00, '2025-01-25', 18000.00, 'info park ambatur', '1', '0 years 11 months', ' Medical issue ', 1, '2025-08-19 06:27:57', 0, NULL, 0, NULL, 1),
(10670, 26436, 'Imarque solutions private limited company ', 'Customer support executive ', '2025-06-20', 12000.00, '2025-08-05', 15000.00, 'Pandy bazar ', '1', '0 years 1 months', ' Personal issue ', 1, '2025-08-19 06:50:04', 0, NULL, 0, NULL, 1),
(10671, 26437, 'IMarque Solution Pvt Ltd ', 'Customer Support Executive ', '2024-06-20', 12000.00, '2025-08-14', 13000.00, 'Tynampet ', '1', '1 years 1 months', 'Long distance ', 1, '2025-08-19 06:54:12', 0, NULL, 0, NULL, 1),
(10672, 26438, 'India fillings pvt Ltd ', 'Account manager ', '2024-10-21', 10.11, '2025-01-31', 28000.00, 'Guindy ', '1', '0 years 3 months', ' Before joining India Filings, I had attended an interview with CAFS. At that time, there were no Relationship Manager openings available, so I joined India Filings to fulfill my commitments. Later, I received a call from Ms. Jothiga mam at CAFS regarding the RM opening, and hence I decided to resign from India Filings and join CAFS.', 1, '2025-08-19 07:08:25', 0, NULL, 0, NULL, 1),
(10673, 26438, 'Liquiloans', 'RELATIONSHIP MANAGER ', '2023-01-28', 30.00, '2024-09-27', 29500.00, 'Anna nagar', '1', '1 years 7 months', 'I was working with Liquiloans, but the company decided to close its business operations in Tamil Nadu. As part of this decision, my role was laid off. It was purely a business-driven decision and not performance related.', 1, '2025-08-19 07:14:37', 0, NULL, 0, NULL, 1),
(10674, 26405, 'Pathright co-private limited company  ', 'Telesales ', '2025-05-10', 16000.00, '2025-08-11', 16000.00, 'Chennai', '1', '0 years 3 months', ' Father health problem ,so I am  reliving ', 1, '2025-08-19 07:20:18', 0, NULL, 0, NULL, 1),
(10675, 26439, 'Dtdc express ', 'Customer care executive ', '2024-10-19', 20000.00, '2025-05-08', 20000.00, 'Velapanchavadi', '1', '0 years 5 months', 'Changed  to  Night shift', 1, '2025-08-19 07:29:13', 0, NULL, 0, NULL, 1),
(10676, 26440, 'Walk in ', 'Customer care executive ', '2025-05-23', 20000.00, '1970-01-01', 20000.00, 'Chennai', '2', '0 years 2 months', ' Some shift problem changeing ', 1, '2025-08-19 07:59:41', 0, NULL, 0, NULL, 1),
(10677, 26381, 'Croma Tata Enterprises', 'Customer relationship manager', '2021-12-20', 12000.00, '2025-01-01', 17000.00, 'Anna Nagar', '1', '3 years 0 months', ' Personal issue ', 1, '2025-08-19 08:37:47', 0, NULL, 0, NULL, 1),
(10678, 26459, 'First source ', 'Analysts ', '2020-12-10', 25000.00, '2022-11-10', 25000.00, 'Sarjapur ', '1', '1 years 11 months', ' Health issues ', 1, '2025-08-20 10:13:35', 0, NULL, 0, NULL, 1),
(10679, 26458, 'Enthusiastic travels and tours', 'Mail handling and communication through calls', '2024-08-13', 24000.00, '2025-07-15', 26000.00, 'Madhavaram', '1', '1 years 0 months', ' Travel distance ', 1, '2025-08-21 05:26:26', 0, NULL, 0, NULL, 1),
(10680, 26467, 'Iccs- Insight Customer Call Solutions ', 'Customer support executive ', '2024-06-14', 13000.00, '2025-04-30', 13000.00, 'Chennai ', '1', '0 years 10 months', ' ', 1, '2025-08-21 06:15:13', 0, NULL, 0, NULL, 1),
(10681, 26461, 'Chennai technology ', 'Sales executive ', '2023-08-18', 15.00, '1970-01-01', 17000.00, 'Purasawakkam', '2', '2 years 0 months', ' ', 1, '2025-08-21 06:22:02', 0, NULL, 0, NULL, 1),
(10682, 26461, 'Chennai technology ', 'Sales executive ', '2023-08-17', 15000.00, '1970-01-01', 17000.00, 'Purasawakkam ', '2', '2 years 0 months', 'Chenge the company location ', 1, '2025-08-21 06:23:33', 0, NULL, 0, NULL, 1),
(10683, 26471, 'Arjun packaging ', 'Accountant ', '2023-02-07', 22000.00, '2024-03-05', 22000.00, 'Jp Nagar ', '1', '1 years 0 months', ' ', 1, '2025-08-21 07:07:16', 0, NULL, 0, NULL, 1),
(10684, 26475, 'Axis Bank ', 'Senior relationship officer ', '2023-08-10', 1.00, '1970-01-01', 24000.00, 'Rt nagar ', '2', '2 years 0 months', ' Marriage got fixed ', 1, '2025-08-21 09:11:54', 0, NULL, 0, NULL, 1),
(10685, 26487, 'kids care playschool', 'teacher', '2022-06-01', 7500.00, '2024-06-01', 10000.00, 'old washermanpet', '1', '2 years 0 months', ' job change', 1, '2025-08-22 05:49:45', 0, NULL, 0, NULL, 1),
(10686, 26487, 'star health insurance', 'sales executive', '2025-06-01', 16207.00, '2025-08-20', 17000.00, 'vadapalani', '1', '0 years 2 months', 'timing', 1, '2025-08-22 05:55:20', 0, NULL, 0, NULL, 1),
(10687, 26488, 'paizza bazzar consulting and marketing', 'sales consultant', '2024-01-08', 15000.00, '2025-08-06', 17600.00, 'tidel park', '1', '1 years 6 months', ' week off problem', 1, '2025-08-22 06:57:46', 0, NULL, 0, NULL, 1),
(10688, 26489, 'altres technology', 'telecaller', '2021-06-01', 12000.00, '2022-12-01', 14000.00, 'raheja towers', '1', '1 years 6 months', ' salary issue', 1, '2025-08-22 07:24:01', 0, NULL, 0, NULL, 1),
(10689, 26489, 'icici bank', 'senior executive', '2023-01-01', 14000.00, '2024-01-01', 16000.00, 'saidapet', '1', '1 years 0 months', 'long distance', 1, '2025-08-22 07:28:18', 0, NULL, 0, NULL, 1),
(10690, 26489, 'reliance nippon life insurance', 'pre relationship manager', '2024-02-01', 16000.00, '2024-08-20', 18000.00, 'parrys corner', '1', '0 years 6 months', 'business down', 1, '2025-08-22 07:31:26', 0, NULL, 0, NULL, 1),
(10691, 26494, 'Jana small finance bank ', 'Relationship manager ', '2024-12-09', 1.00, '2025-08-12', 23000.00, 'Bangalore', '1', '0 years 8 months', ' NA', 1, '2025-08-22 12:29:49', 0, NULL, 0, NULL, 1),
(10692, 26494, 'HDB financial services ', 'Senior sales officer ', '2023-10-30', 1.00, '2024-12-05', 18000.00, 'Bangalore', '1', '1 years 1 months', 'NA', 1, '2025-08-22 12:31:18', 0, NULL, 0, NULL, 1),
(10693, 26499, 'Tamira Aesthetic healthcare ', 'Customer support executive ', '2024-07-01', 1.00, '2024-12-30', 18000.00, 'Chennai ', '1', '0 years 5 months', ' Process changed', 1, '2025-08-23 06:32:16', 0, NULL, 0, NULL, 1),
(10694, 26499, 'HDB Financial Services ', 'Senior Telecalling Officer ', '2020-09-20', 1.00, '2021-07-20', 10000.00, 'Chennai ', '1', '0 years 10 months', 'Searched for better opportunity (proper relieving)', 1, '2025-08-23 06:34:12', 0, NULL, 0, NULL, 1),
(10695, 26499, 'First source pvt ltd ', 'AR caller ', '2024-03-05', 1.00, '2024-07-01', 22000.00, 'Chennai ', '1', '0 years 3 months', 'Due to health issue (night shift)', 1, '2025-08-23 06:36:59', 0, NULL, 0, NULL, 1),
(10696, 26479, 'Reliance retail ', 'Customer Relationship manager ', '2024-08-23', 25000.00, '2025-06-05', 25000.00, 'Thiruvallur ', '1', '0 years 9 months', ' Career Development ', 1, '2025-08-23 07:19:07', 0, NULL, 0, NULL, 1),
(10697, 26507, 'Mervice infotech Pvt Ltd ', 'Customer support executive ', '2022-11-28', 17500.00, '2025-08-03', 19000.00, 'Somasandrapalya', '1', '2 years 8 months', ' Career growth and New opportunities ', 1, '2025-08-25 04:44:10', 0, NULL, 0, NULL, 1),
(10698, 26508, 'Sri sun yamaha ', 'Orathanadu ', '2023-11-06', 6500.00, '1970-01-01', 17000.00, 'Orathanadu ', '2', '1 years 9 months', ' Health issues ', 1, '2025-08-25 04:57:38', 0, NULL, 0, NULL, 1),
(10699, 26508, 'Sri sun yamaha ', 'Orathanadu ', '2023-11-06', 6500.00, '2025-07-30', 17000.00, 'Orathanadu ', '1', '1 years 8 months', 'Health issues ', 1, '2025-08-25 04:58:59', 0, NULL, 0, NULL, 1),
(10700, 26478, 'Rbl', 'Junior associate ', '2024-04-01', 18.00, '1970-01-01', 18.00, 'Richmond circle ', '2', '1 years 4 months', ' ', 1, '2025-08-25 05:22:20', 0, NULL, 0, NULL, 1),
(10701, 26509, 'Green Point Production (Event Management)', 'Administrative role, customer support', '2023-04-03', 12000.00, '2025-06-28', 18000.00, 'Cuddalore', '1', '2 years 2 months', ' Left the job as the company didn’t provide proper salary slips and formal documents', 1, '2025-08-25 05:31:33', 0, NULL, 0, NULL, 1),
(10702, 26510, 'Telebuy naptol , my money Mantra, global health ca', 'Senior caller', '2025-01-02', 16000.00, '2025-08-25', 16000.00, 'Mount road', '2', '0 years 7 months', ' Process as close to one month ', 1, '2025-08-25 05:37:13', 0, NULL, 0, NULL, 1),
(10703, 26510, 'Sudarsanam associate ', 'Senior caller ', '1997-01-02', 16000.00, '1970-01-01', 16000.00, 'Mount road ', '2', '28 years 7 months', 'Process as close to one month because agriment will be close', 1, '2025-08-25 05:38:50', 0, NULL, 0, NULL, 1),
(10704, 26469, 'magics india private limited', 'telle caller', '2022-08-01', 18000.00, '2023-01-15', 18000.00, 'bangalore', '1', '0 years 5 months', 'office relocate', 162, '2025-08-25 03:22:24', 0, NULL, 0, NULL, 1),
(10705, 26514, 'Gateway Technologies ', ' . NET Developer ', '2022-08-01', 2.02, '1970-01-01', 4.08, 'Chenna ', '2', '3 years 0 months', ' Looking for an opportunity to work with new technologies ', 1, '2025-08-25 09:53:00', 0, NULL, 0, NULL, 1),
(10706, 26469, 'suvision holding private limited', 'telle caller', '2023-12-01', 20000.00, '2024-08-15', 20000.00, 'bangalore', '1', '0 years 8 months', 'personal reasons', 162, '2025-08-25 03:23:57', 0, NULL, 0, NULL, 1),
(10707, 26517, 'just dial pvt ltd', 'telecaller sales department', '2021-03-11', 12000.00, '2024-01-01', 21000.00, 'little mount', '1', '2 years 9 months', 'maternity', 159, '2025-08-26 11:11:51', 0, NULL, 0, NULL, 1),
(10708, 26518, 'star health insurance', 'telesales executive', '2025-02-10', 17000.00, '2025-08-25', 17000.00, 'vadapalani', '1', '0 years 6 months', ' working hours', 1, '2025-08-26 06:37:04', 0, NULL, 0, NULL, 1),
(10709, 26524, 'Pvr', 'Sales', '2024-10-08', 23000.00, '2025-04-08', 23000.00, 'Thousands lights ', '1', '0 years 6 months', ' Night shift ', 1, '2025-08-26 10:41:56', 0, NULL, 0, NULL, 1),
(10710, 26533, 'Leadsense pvt Ltd ', 'Academic counselor ', '2024-05-01', 17500.00, '2025-08-14', 19500.00, 'Nungambakkam ', '1', '1 years 3 months', ' Time issue ', 1, '2025-08-28 05:59:12', 0, NULL, 0, NULL, 1),
(10711, 26532, 'Censa next private limited ', 'Associate ', '2022-02-02', 28000.00, '2023-10-11', 25000.00, 'T nagar', '1', '1 years 8 months', ' ', 1, '2025-08-28 06:03:23', 0, NULL, 0, NULL, 1),
(10712, 26538, 'Mervice infotech technology ', 'BE', '2023-11-20', 18000.00, '2025-02-28', 23000.00, 'Hsr layout Bangalore ', '1', '1 years 3 months', ' There is no growth in previous company that\'s why I resigned the job ', 1, '2025-08-29 05:18:36', 0, NULL, 0, NULL, 1),
(10713, 26552, 'Prime Toys Pvt Ltd ', 'Tele caller ', '2024-07-13', 10.00, '2025-08-25', 22000.00, 'Mint street ', '2', '1 years 1 months', ' Brach Change at Long Distance form my place ', 1, '2025-08-30 08:09:10', 0, NULL, 0, NULL, 1),
(10714, 26559, 'Apollo Sindoori hotels ltd', 'Coordinator', '2023-06-14', 14.00, '2024-11-07', 15000.00, 'Greams road,thousand lights,chennai.', '1', '1 years 4 months', ' To pursue my career goals.', 1, '2025-09-01 06:12:36', 0, NULL, 0, NULL, 1),
(10715, 26569, 'coforge business process solution private limited', 'process associate', '2024-09-11', 22000.00, '2025-07-18', 22000.00, 'tlf', '1', '0 years 10 months', ' night shift', 1, '2025-09-02 05:58:10', 0, NULL, 0, NULL, 1),
(10716, 25985, 'EB ', 'TELECALLER', '2025-05-26', 13500.00, '2025-08-15', 7000.00, 'LIC', '1', '0 years 2 months', 'HEALTH ISSUE FOR MOTHER', 159, '2025-09-02 12:19:58', 0, NULL, 0, NULL, 1),
(10717, 26581, 'Justdial limited', 'Sale executive', '2023-09-20', 16000.00, '2025-08-31', 17000.00, 'Little mount', '1', '1 years 11 months', ' My next level growt', 1, '2025-09-03 04:28:43', 0, NULL, 0, NULL, 1),
(10718, 26573, 'good word public school', 'assistant accountan', '2018-06-01', 12000.00, '2020-08-01', 12000.00, 'redhills', '1', '2 years 2 months', ' career growth', 1, '2025-09-03 06:30:47', 0, NULL, 0, NULL, 1),
(10719, 26573, 'tech mahindra', 'customer support executive', '2022-08-01', 15000.00, '2023-09-01', 20000.00, 'ambatur', '1', '1 years 1 months', 'career growth', 1, '2025-09-03 06:31:54', 0, NULL, 0, NULL, 1),
(10720, 26573, 'teleperformance', 'senior customer service associate', '2023-07-03', 25000.00, '2024-07-03', 25000.00, 'ambatur', '1', '1 years 0 months', 'career growth', 1, '2025-09-03 06:33:34', 0, NULL, 0, NULL, 1),
(10721, 26573, 'movate technologies', 'network engineer', '2024-05-01', 30000.00, '2025-06-24', 30000.00, 'ambattur', '1', '1 years 1 months', 'health issue', 1, '2025-09-03 06:34:56', 0, NULL, 0, NULL, 1),
(10722, 26585, 'ison experience', 'sales executive', '2024-05-23', 18000.00, '2025-07-08', 18000.00, 'tharamani', '1', '1 years 1 months', 'career growth', 159, '2025-09-03 12:19:04', 0, NULL, 0, NULL, 1),
(10723, 26583, 'invensis software solution ', 'process executive', '2022-06-28', 18000.00, '2023-10-31', 20000.00, 'bangalore', '1', '1 years 4 months', ' health issues', 1, '2025-09-03 10:38:01', 0, NULL, 0, NULL, 1),
(10724, 26591, 'HDB finance services for ', 'Sales executive ', '2017-07-19', 125000.00, '2018-11-28', 21000.00, 'Chennai ', '1', '1 years 4 months', ' ', 1, '2025-09-04 04:40:12', 0, NULL, 0, NULL, 1),
(10725, 26587, 'HDB financial services ', 'Senior telecaller ', '2024-02-03', 13456.00, '2025-04-02', 15000.00, 'GP Road ', '1', '1 years 1 months', ' ', 1, '2025-09-04 04:41:01', 0, NULL, 0, NULL, 1),
(10726, 26591, 'Me hin service ', 'Sales officer ', '2018-11-29', 215000.00, '2020-11-30', 22000.00, 'Chennai ', '1', '6 years 9 months', 'Carrier update ', 1, '2025-09-04 04:44:52', 159, '2025-09-04 10:30:11', 0, NULL, 1),
(10727, 26580, 'STAR HEALTH INSURANCE', 'Relationship Manager', '2024-02-20', 36400.00, '1970-01-01', 40666.00, 'Bengaluru', '2', '1 years 6 months', ' Career growth', 1, '2025-09-04 04:46:57', 0, NULL, 0, NULL, 1),
(10728, 26591, 'Ranstand india pvt ltd ', 'Bracelet relationship officer ', '2020-12-03', 220000.00, '2021-09-30', 23000.00, 'Trichy ', '1', '0 years 9 months', 'Carrier update ', 1, '2025-09-04 04:48:56', 0, NULL, 0, NULL, 1),
(10729, 26591, 'Piramal capital finance Ltd ', 'Senior relationship manager ', '2022-02-02', 280000.00, '2022-12-30', 30000.00, 'Trichy ', '1', '0 years 10 months', 'Carrier important ', 1, '2025-09-04 04:52:46', 0, NULL, 0, NULL, 1),
(10730, 26591, 'Piramal capital finance Ltd ', 'Senior relationship manager ', '2022-02-02', 280000.00, '2022-12-30', 30000.00, 'Trichy ', '1', '0 years 10 months', 'Carrier important ', 1, '2025-09-04 04:52:47', 159, '2025-09-04 10:28:32', 0, NULL, 0),
(10731, 26591, 'Aditya Birla capital finance Ltd ', 'BCSM', '2023-02-02', 350000.00, '2023-12-28', 35000.00, 'Trichy ', '1', '0 years 10 months', 'Carrier important ', 1, '2025-09-04 05:04:05', 0, NULL, 0, NULL, 1),
(10732, 26591, 'adithya brila capital ltd', 'customer relationship manager', '2023-02-04', 24000.00, '2023-12-28', 28000.00, 'trichY', '1', '0 years 10 months', 'maternity gap', 159, '2025-09-04 10:36:29', 0, NULL, 0, NULL, 1),
(10733, 26591, 'utkar small finance', 'branch relationship officer', '2024-05-24', 27000.00, '2024-12-07', 27000.00, 'trichY', '1', '0 years 6 months', 'maternity leave', 159, '2025-09-04 10:40:48', 0, NULL, 0, NULL, 1),
(10734, 26590, 'Manappuram finance limited ', 'Junior assistant and Assistant branch head ', '2024-06-11', 13000.00, '2025-06-11', 16000.00, 'Chennai ', '1', '1 years 0 months', ' ', 1, '2025-09-04 06:29:31', 0, NULL, 0, NULL, 1),
(10735, 26596, 'IMERIT TECHNOLOGIES ', 'Senior ITES Excutive Lidar ', '2025-02-03', 23000.00, '2025-06-30', 23000.00, 'Coimbatore ', '1', '0 years 4 months', ' ', 1, '2025-09-04 06:37:52', 0, NULL, 0, NULL, 1),
(10736, 26599, 'kotak mahindra bank', 'marketing sales executive', '2024-01-18', 15000.00, '2025-08-30', 25000.00, 'tirupattur', '1', '1 years 7 months', 'for marriage', 162, '2025-09-04 03:43:37', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10737, 26602, 'Stellar innovation pvt ltd', 'Data entry ', '2023-04-01', 6000.00, '2023-10-31', 10000.00, 'Sholinger', '1', '0 years 6 months', ' Salery problem ', 1, '2025-09-04 12:14:11', 0, NULL, 0, NULL, 1),
(10738, 26602, 'Shriram finance ltd', 'Re , field officer', '2024-06-01', 20000.00, '2025-07-18', 20000.00, 'RK pet ,THIRUTHANI ', '1', '1 years 1 months', 'Better opportunity ', 1, '2025-09-04 12:16:56', 0, NULL, 0, NULL, 1),
(10739, 26607, 'veetee technologies', 'software engineer', '2023-03-13', 12000.00, '2025-09-02', 23000.00, 'Chennai', '1', '2 years 5 months', ' To upskill', 1, '2025-09-05 06:05:30', 0, NULL, 0, NULL, 1),
(10740, 26608, 'Just Dail ', 'Telemarketing ', '2024-09-25', 12000.00, '2025-03-10', 15000.00, 'Chennai ', '1', '0 years 5 months', ' Throat issue ( Tonsils )', 1, '2025-09-05 06:38:31', 0, NULL, 0, NULL, 1),
(10741, 26615, 'City union Bank ', 'Relationship manager ', '2024-03-16', 21000.00, '2025-07-31', 21000.00, 'Chennai ', '1', '1 years 4 months', ' Location and salary ', 1, '2025-09-05 01:38:09', 0, NULL, 0, NULL, 1),
(10742, 26619, 'Suganya', 'Leads coordinator ', '2025-02-25', 20000.00, '2025-09-01', 20000.00, 'Anna nagar', '1', '0 years 6 months', 'Relieving because of health issues..', 1, '2025-09-06 06:22:35', 0, NULL, 0, NULL, 1),
(10743, 26622, 'Star health insurance ', 'Senior Telecalling ', '2025-01-06', 1.00, '2025-06-30', 22000.00, 'Vadapalani ', '1', '0 years 5 months', ' Timing issues', 1, '2025-09-06 06:59:50', 0, NULL, 0, NULL, 1),
(10744, 26621, 'Bajaj finance ', 'Sales officer ', '2023-11-09', 31.00, '2025-05-01', 20000.00, 'Spencer plaza ', '1', '1 years 5 months', ' ', 1, '2025-09-06 07:00:14', 0, NULL, 0, NULL, 1),
(10745, 26623, 'pinnacle systems pvt ltd', 'full stack developer', '2025-09-06', 10000.00, '2025-10-10', 14000.00, 'tirupur', '1', '0 years 1 months', ' I would like to resign from my current position due to better career growth opportunities', 1, '2025-09-06 07:41:08', 0, NULL, 0, NULL, 1),
(10746, 18243, 'HDFC Bank ', 'Sales executive ', '2024-08-12', 7.00, '2025-07-04', 12.00, 'Chennai ', '1', '0 years 10 months', ' Below Salary', 1, '2025-09-08 05:32:50', 0, NULL, 0, NULL, 1),
(10747, 26629, 'justdial', 'telecaller sales', '2024-07-04', 14500.00, '2025-03-07', 21000.00, 'saidapet', '1', '0 years 8 months', ' salary issues', 1, '2025-09-08 05:44:13', 0, NULL, 0, NULL, 1),
(10748, 26628, 'Credit mantri ', 'Internal auditor ', '2025-07-21', 17000.00, '2025-09-07', 15000.00, 'Spenzar palaza ', '1', '0 years 1 months', ' Distance ', 1, '2025-09-08 06:50:34', 0, NULL, 0, NULL, 1),
(10749, 26640, 'sk agency', 'building executive', '2019-06-14', 8500.00, '2020-07-02', 9000.00, 'salem', '1', '1 years 0 months', ' needed more salary', 1, '2025-09-08 07:39:51', 0, NULL, 0, NULL, 1),
(10750, 26640, 'unitech polycomponents', 'quality supervisor', '2020-11-04', 13500.00, '2021-11-12', 15000.00, 'sriperambathur', '1', '1 years 0 months', 'covid layout', 1, '2025-09-08 07:41:36', 0, NULL, 0, NULL, 1),
(10751, 26640, 'ods technology', 'title searcher', '2024-05-14', 16000.00, '2025-07-31', 18000.00, 'salem', '1', '1 years 2 months', 'career growth', 159, '2025-09-08 01:14:42', 0, NULL, 0, NULL, 1),
(10752, 26642, 'Hyundai mobis ', 'Graduate Trainee ', '2024-12-31', 33000.00, '1970-01-01', 33000.00, 'Sriperumbudur', '2', '0 years 8 months', 'Passionate about sales / Marketing ', 1, '2025-09-08 12:27:16', 0, NULL, 0, NULL, 1),
(10753, 26643, 'Caliph builders and developers ', 'Marketing manager ', '2020-08-01', 11000.00, '2024-07-30', 19000.00, 'Koppikar road hubli ', '1', '3 years 11 months', ' To get better opportunity ', 1, '2025-09-08 01:07:26', 0, NULL, 0, NULL, 1),
(10754, 26643, 'People interactive ', 'Relation manager ', '2024-11-14', 21000.00, '2025-05-31', 23000.00, 'Koramangala 5th block Bangalore ', '1', '0 years 6 months', 'Got an better opportunity to see career growth ', 1, '2025-09-08 01:10:33', 0, NULL, 0, NULL, 1),
(10755, 26643, 'Girnar soft education (college dekho ) ', 'Academic counsellor ', '2025-05-01', 27000.00, '2025-08-31', 27000.00, 'Lal bagh main gate bangalore ', '1', '0 years 3 months', 'The process getting shut down ', 1, '2025-09-08 01:12:20', 0, NULL, 0, NULL, 1),
(10756, 26644, 'Aditya Birla fashion retail limited ', 'Sales executive ', '2022-06-30', 12000.00, '2023-11-18', 30000.00, 'Banglore ', '1', '1 years 4 months', 'Better opportunity ', 1, '2025-09-08 01:13:27', 0, NULL, 0, NULL, 1),
(10757, 26644, 'People interactive pvt ltd ', 'Product advisor ', '2023-11-21', 18000.00, '2025-05-02', 22000.00, 'Banglore ', '1', '1 years 5 months', ' For better career growth ', 1, '2025-09-08 01:19:00', 0, NULL, 0, NULL, 1),
(10758, 26649, 'Relationship Manager ', 'Chennai ', '2025-01-06', 12000.00, '2025-06-09', 12000.00, 'Chetpet, Chennai ', '1', '0 years 5 months', ' ', 1, '2025-09-09 05:08:18', 0, NULL, 0, NULL, 1),
(10759, 26659, 'Vcidex solution Pvt Ltd ', 'Junior software developer ', '2023-06-23', 15000.00, '1970-01-01', 22200.00, 'Ekkatuthagal , Chennai. ', '2', '2 years 2 months', 'Iam looking for better growth opportunities in my career. ', 1, '2025-09-09 06:02:54', 0, NULL, 0, NULL, 1),
(10760, 26669, 'Hepl ', 'Senior sales executive ', '2024-04-24', 35000.00, '2025-01-25', 35000.00, 'Chennai', '1', '0 years 9 months', ' Process closed ', 1, '2025-09-09 06:08:15', 0, NULL, 0, NULL, 1),
(10761, 26672, 'Tesser Insights ', 'Software engineer ', '2023-10-01', 25000.00, '2025-06-30', 25000.00, 'Chennai ', '1', '1 years 8 months', ' Organization downsizing team', 1, '2025-09-09 06:26:20', 0, NULL, 0, NULL, 1),
(10762, 26670, 'Roadmap IT solutions Pvt Ltd ', 'Software programmer ', '2025-03-03', 300000.00, '2025-08-02', 240000.00, 'Puducherry ', '1', '0 years 4 months', 'Due to the lower income of projects the company go to down so they can layoff new joinees ', 1, '2025-09-09 06:26:25', 0, NULL, 0, NULL, 1),
(10763, 26677, 'BLUECHIP CORPORATE INVESTMENT CENTRE PVT LTD', 'SR FIELD EXECUTIVE ', '2012-06-11', 11.00, '2024-01-19', 19800.00, 'Belgaum ', '1', '11 years 7 months', ' ', 1, '2025-09-09 06:55:34', 0, NULL, 0, NULL, 1),
(10764, 26679, 'cams ', 'Senior executive-operation ', '2024-08-29', 31.00, '2025-04-04', 1.00, 'chennai', '1', '0 years 7 months', 'Seeking new challenges, more opportunities for growth.', 1, '2025-09-09 07:20:59', 0, NULL, 0, NULL, 1),
(10765, 26682, 'RedMind Technology', 'web developer', '2023-10-01', 5000.00, '2024-11-30', 15000.00, 'NAMAKKAL', '1', '1 years 1 months', ' Career Growth', 1, '2025-09-09 07:21:26', 0, NULL, 0, NULL, 1),
(10766, 26694, 'laabamone business solutions pvt ltd', 'python developer', '2024-11-11', 12000.00, '1970-01-01', 14000.00, 'madurai', '2', '0 years 9 months', ' salary delay issue', 1, '2025-09-09 07:51:50', 0, NULL, 0, NULL, 1),
(10767, 26746, 'Sri sai associates ', 'Telecalling ', '2025-02-03', 15.00, '1970-01-01', 18.00, 'Perambur', '2', '0 years 7 months', ' Branches changed', 1, '2025-09-10 06:08:20', 0, NULL, 0, NULL, 1),
(10768, 26743, 'kgv graphics', 'Desktop Publisher', '1998-03-02', 3000.00, '2000-01-31', 3500.00, 'chennai', '1', '1 years 10 months', 'opportunity to learn and earn', 1, '2025-09-10 06:28:24', 1, '2025-09-10 07:07:22', 0, NULL, 1),
(10769, 26743, 'netcom softlabs', 'Multimedia Technician', '2000-02-01', 3500.00, '2002-04-12', 3800.00, 'chennai', '1', '2 years 2 months', 'opportunity to work with advt agencies', 1, '2025-09-10 06:33:51', 1, '2025-09-10 07:07:55', 0, NULL, 1),
(10770, 26752, 'Vedic glass partition ', 'Senior sales manager ', '2025-01-20', 30000.00, '2025-07-10', 1.00, 'Chennai ', '1', '0 years 5 months', ' Salary issue ', 1, '2025-09-10 06:58:33', 0, NULL, 0, NULL, 1),
(10771, 26752, 'Motilal Oswal ', 'Sales executive ', '2024-08-08', 27000.00, '2025-01-24', 2.00, 'Chennai ', '1', '0 years 5 months', 'Personal issue ', 1, '2025-09-10 07:00:00', 0, NULL, 0, NULL, 1),
(10772, 26743, 'equations advertisement agencies', 'graphics designer', '2002-04-17', 4000.00, '2003-02-28', 4500.00, 'chennai', '1', '0 years 10 months', 'internatinal clients and opportunity to use multimedia tools\n', 1, '2025-09-10 07:02:44', 1, '2025-09-10 07:09:12', 0, NULL, 1),
(10773, 26753, 'Justdial private limited ', 'Tele marketing executive ', '2023-11-06', 19.50, '2025-09-01', 19.50, 'Banglore ', '1', '1 years 9 months', ' Looking for a better opportunity ', 1, '2025-09-10 07:04:14', 0, NULL, 0, NULL, 1),
(10774, 26743, 'Tulsyan Technologies', 'Web-Graphic Artist', '2003-03-01', 5500.00, '2004-06-30', 5500.00, 'chennai', '1', '1 years 3 months', 'shift to international clients', 1, '2025-09-10 07:05:53', 0, NULL, 0, NULL, 1),
(10775, 26743, 'Alden India Pvt Ltd', 'Quark Operator', '2004-07-01', 6500.00, '2005-09-30', 7500.00, 'chennai', '1', '1 years 2 months', 'Opportunity to work in graphics & template development', 1, '2025-09-10 07:12:34', 0, NULL, 0, NULL, 1),
(10776, 26743, 'Datapage India Pvt Ltd', 'Senior Publishing Officer ', '2005-09-19', 11500.00, '2007-01-26', 13500.00, 'chennai', '1', '1 years 4 months', 'Opportunity to become template developer, sample page design & XML etm workflow', 1, '2025-09-10 07:15:26', 0, NULL, 0, NULL, 1),
(10777, 26743, 'TexTech India Pvt Ltd', 'Senior Paginator', '2007-01-28', 17000.00, '2008-09-30', 22000.00, 'chennai', '1', '1 years 8 months', 'to utilise technical knowledge', 1, '2025-09-10 07:18:26', 0, NULL, 0, NULL, 1),
(10778, 26743, 'Ccube Medias', 'freelance visual designer - fcp editor', '2008-09-01', 25000.00, '2011-07-30', 30000.00, 'chennai bangalore', '1', '2 years 10 months', 'get opportunity to work in anna university', 1, '2025-09-10 07:21:38', 0, NULL, 0, NULL, 1),
(10779, 26743, 'anna university-mysore university-studios', 'freelance visual desiner', '2011-09-01', 30000.00, '2022-11-30', 40000.00, 'chennai-bangalore-mysore', '1', '11 years 2 months', 'get opportunity work in it domain', 1, '2025-09-10 07:23:46', 0, NULL, 0, NULL, 1),
(10780, 26743, 'SOLIDARIDAD NETWORK INDIA PRIVATE LIMITED', 'full stack designer', '2022-12-05', 50000.00, '2024-02-28', 50000.00, 'bangalore', '1', '1 years 2 months', 'as a single parent i\'m in the situation to stay with my kids', 1, '2025-09-10 07:27:35', 0, NULL, 0, NULL, 1),
(10781, 26743, 'Parsimony', 'freelance figma designer', '2024-03-01', 850.00, '1970-01-01', 1000.00, 'chennai', '2', '1 years 6 months', 'become full stack developer', 1, '2025-09-10 07:38:25', 0, NULL, 0, NULL, 1),
(10782, 26760, 'Tech Mahindra ', 'Customer support associate ', '2024-06-01', 13000.00, '2025-02-01', 15000.00, 'Ambatur ', '1', '0 years 8 months', ' Language fluency ', 1, '2025-09-10 12:58:34', 0, NULL, 0, NULL, 1),
(10783, 26764, 'Royal Enfield ', 'Sale executive and Tele caller ', '2022-07-10', 10000.00, '2024-02-07', 12000.00, 'Kasi theatre ', '1', '1 years 6 months', ' Personal issue ', 1, '2025-09-11 05:46:17', 0, NULL, 0, NULL, 1),
(10784, 26764, 'Blue dart', 'Labour ', '2024-03-07', 12500.00, '2025-02-28', 13000.00, 'Greems road', '1', '0 years 11 months', 'Personal issue ', 1, '2025-09-11 05:47:47', 0, NULL, 0, NULL, 1),
(10785, 26764, 'IDFC FIRST Bharat ltd', 'Tele caller and collection executive ', '2025-03-03', 15500.00, '2025-08-31', 15500.00, 'MGR Nagar', '1', '0 years 5 months', 'Personal issue ', 1, '2025-09-11 05:49:05', 0, NULL, 0, NULL, 1),
(10786, 26765, 'Tata consultancy services ', 'Market research ', '2024-09-09', 2.00, '2025-08-30', 2.00, 'Chennai one ', '1', '0 years 11 months', 'To upskill my self ', 1, '2025-09-11 06:32:00', 0, NULL, 0, NULL, 1),
(10787, 26768, 'Isbm university', 'Counselor', '2024-08-12', 15000.00, '2025-08-16', 15000.00, 'Chennai', '1', '1 years 0 months', ' Due the salary problem issues ', 1, '2025-09-11 07:27:21', 0, NULL, 0, NULL, 1),
(10788, 26617, 'Too quick technology ', 'Telecalling', '2023-09-12', 18000.00, '2024-09-12', 18000.00, 'Chennai', '1', '1 years 0 months', ' Health insurance ', 1, '2025-09-12 02:24:10', 0, NULL, 0, NULL, 1),
(10789, 26770, 'Intecai ', 'Node js developer ', '2024-04-04', 68000.00, '2025-06-30', 68000.00, 'Chennai ', '1', '1 years 2 months', ' I completed my contract ', 1, '2025-09-12 03:42:52', 0, NULL, 0, NULL, 1),
(10790, 26774, 'statsperform , ', 'client support', '2021-09-29', 15000.00, '2025-08-31', 25000.00, 'chennai', '1', '3 years 11 months', ' Development ', 1, '2025-09-12 06:04:40', 1, '2025-09-12 06:06:11', 0, NULL, 1),
(10791, 26812, 'Aathisoft ', 'Frontend developer ', '2024-04-17', 5000.00, '2025-05-21', 7500.00, 'Pudukkottai ', '1', '1 years 1 months', ' Looking for better carrier growth opportunity ', 1, '2025-09-13 04:37:38', 0, NULL, 0, NULL, 1),
(10792, 26788, 'Yaazhtech Software Solution ', 'Full Stack Developer ', '2025-07-21', 15000.00, '1970-01-01', 15000.00, 'Karur', '2', '0 years 1 months', ' The office located in rural place. So which is not comfortable to me.i tried to find accommodation but there is no proper facilities.', 1, '2025-09-13 04:48:12', 0, NULL, 0, NULL, 1),
(10793, 26788, 'Yaazhtech Software Solution ', 'Jr Frontend developer ', '2023-03-20', 15000.00, '2024-05-31', 15000.00, 'Chennai', '1', '1 years 2 months', 'Mom got medical care. So I want to care of her. So I asked leave so the company couldn\'t that much leave date. So I asked them and relieved from that company properly.', 1, '2025-09-13 04:57:26', 0, NULL, 0, NULL, 1),
(10794, 26816, 'Allset business solutions ', 'Customer service executive ', '2024-05-27', 25000.00, '2025-06-30', 21000.00, 'Chennai ', '1', '1 years 1 months', 'I joined a diploma course so I took break from my work space ', 1, '2025-09-13 05:09:17', 0, NULL, 0, NULL, 1),
(10795, 26819, 'Star health Insurance', 'Telesales agent', '2024-05-20', 17000.00, '2025-01-31', 20000.00, 'Chennai', '1', '0 years 8 months', ' ', 1, '2025-09-13 09:25:53', 1, '2025-09-13 09:27:46', 0, NULL, 1),
(10796, 26819, 'VDA Infosolution', 'Desktop support engineer', '2022-06-06', 17000.00, '2023-06-22', 17000.00, 'Chennai', '1', '1 years 0 months', 'Project closure', 1, '2025-09-13 09:28:42', 0, NULL, 0, NULL, 1),
(10797, 26827, 'mquotient', 'software engineer', '2024-07-01', 15000.00, '2025-04-30', 15000.00, 'remote', '1', '0 years 9 months', ' Budget', 1, '2025-09-13 12:01:55', 0, NULL, 0, NULL, 1),
(10798, 26851, 'Just dial limited ', 'Telemarketing executive ', '2023-07-20', 14000.00, '2025-08-29', 15000.00, 'Little mount ', '1', '2 years 1 months', ' Salary is not satisfied  ', 1, '2025-09-15 05:28:22', 0, NULL, 0, NULL, 1),
(10799, 26821, 'Azure Protect Plus ', 'Caller', '2024-05-15', 17.50, '2025-09-09', 17.50, 'Vadapalani ', '1', '1 years 3 months', ' Long distance then salary issues', 1, '2025-09-15 05:51:34', 0, NULL, 0, NULL, 1),
(10800, 26856, 'A&A Dukaan financial services pvt Ltd ', 'Senior customer relationship officer ', '2022-11-11', 16500.00, '2025-09-03', 20000.00, 'Ambattur Chennai ', '1', '2 years 9 months', ' Courier growth and salary growth ', 1, '2025-09-15 09:15:56', 0, NULL, 0, NULL, 1),
(10801, 26858, 'shriram finance limited ', 'busines Executives ', '2024-06-20', 16500.00, '2025-07-15', 18000.00, 'ambattur ', '1', '1 years 0 months', ' ', 1, '2025-09-15 10:08:31', 0, NULL, 0, NULL, 1),
(10802, 26868, 'Creditmantri Finserv pvt ltd ', 'Credit relationship officer ', '2025-01-27', 20000.00, '2025-07-12', 23000.00, 'Chennai ', '1', '0 years 5 months', ' Health issues ', 1, '2025-09-16 06:42:34', 0, NULL, 0, NULL, 1),
(10803, 26861, '24[7].ai', 'digital interaction advisor ', '2018-09-07', 14000.00, '2019-01-16', 14000.00, 'bangalore', '1', '0 years 4 months', ' preparing for govt exams', 1, '2025-09-16 07:21:38', 0, NULL, 0, NULL, 1),
(10804, 26861, 'allsec technologies limited', 'customer care executive ', '2021-04-02', 14000.00, '2022-06-07', 14000.00, 'bangalore', '1', '1 years 2 months', 'health issues', 1, '2025-09-16 07:23:40', 0, NULL, 0, NULL, 1),
(10805, 26861, 'frankinn institute of air hostess training ', 'tele counsellor', '2023-03-01', 15000.00, '2025-06-27', 20000.00, 'bangalore', '1', '2 years 3 months', 'career growth', 1, '2025-09-16 07:26:12', 0, NULL, 0, NULL, 1),
(10806, 26866, 'Malayalam manorama ', 'Telesales Executive ', '2024-12-21', 300000.00, '2025-03-31', 25000.00, 'Chennai ', '1', '0 years 3 months', ' Health issues ', 1, '2025-09-17 05:19:58', 0, NULL, 0, NULL, 1),
(10807, 26866, 'Sastha industries ', 'Telesales', '2022-04-12', 250000.00, '2024-09-19', 23000.00, 'Chennai', '1', '2 years 5 months', 'Carrier growth ', 1, '2025-09-17 05:22:27', 0, NULL, 0, NULL, 1),
(10808, 26866, 'Yes bank ', 'Telesales Executive ', '2021-06-01', 250000.00, '2022-03-31', 18500.00, 'Chennai', '1', '0 years 9 months', 'My father is late', 1, '2025-09-17 05:24:34', 0, NULL, 0, NULL, 1),
(10809, 26876, 'Muthoot finance ', 'Sales', '2024-07-01', 16000.00, '2024-12-31', 19000.00, 'Gulbarga ', '1', '0 years 5 months', ' Marriage ', 1, '2025-09-17 06:56:16', 0, NULL, 0, NULL, 1),
(10810, 26878, 'Allset Business Solutions ', 'Sales Executive ', '2021-03-17', 10000.00, '2024-05-24', 14000.00, 'Thought Lights ', '1', '3 years 2 months', ' Salary Issues ', 1, '2025-09-17 07:38:46', 0, NULL, 0, NULL, 1),
(10811, 26879, 'Excetra company ', 'Receptionist ', '2025-01-06', 18000.00, '2025-09-12', 18000.00, 'Yeshwanthpura ', '1', '0 years 8 months', ' It is to far ', 1, '2025-09-17 09:11:28', 0, NULL, 0, NULL, 1),
(10812, 26880, 'India post office ', 'Bpm', '2021-09-04', 12000.00, '2025-09-13', 18000.00, 'Jeelakunte village and post gowribidanur taluku Ch', '1', '4 years 0 months', ' ', 1, '2025-09-17 09:44:01', 0, NULL, 0, NULL, 1),
(10813, 26890, 'Lenskart', 'Sales associate ', '2025-09-26', 18000.00, '2025-09-30', 20000.00, 'Anna nagar ', '1', '0 years 0 months', ' ', 1, '2025-09-18 06:52:22', 0, NULL, 0, NULL, 1),
(10814, 26894, 'Teleperformance ', 'CSA', '2020-10-08', 16000.00, '2025-07-08', 18000.00, 'Ambattur ', '1', '4 years 9 months', ' ', 1, '2025-09-18 11:01:14', 0, NULL, 0, NULL, 1),
(10815, 26895, 'Alldigi technology', 'Customer care executive', '2024-06-12', 13000.00, '2025-03-31', 12000.00, 'Velachery', '1', '0 years 9 months', ' Better opportunity', 1, '2025-09-18 11:36:50', 0, NULL, 0, NULL, 1),
(10816, 26897, 'dignity ', 'telecaller', '2021-07-10', 13000.00, '2022-05-10', 13000.00, 'ambattur', '1', '0 years 10 months', ' ', 1, '2025-09-18 12:11:35', 0, NULL, 0, NULL, 1),
(10817, 26897, 'ags health ', 'associate', '2022-06-03', 16000.00, '2023-07-06', 16000.00, 'ambattur', '1', '1 years 1 months', 'Carrear growth ', 1, '2025-09-18 12:14:57', 0, NULL, 0, NULL, 1),
(10818, 26903, 'tabtree', 'backend developer', '2022-11-16', 10000.00, '1970-01-01', 420000.00, 'chennai', '2', '2 years 10 months', ' For better package… its a very small startup company', 1, '2025-09-19 02:33:44', 0, NULL, 0, NULL, 1),
(10819, 26905, 'Ekart ', 'Exicutive ', '2025-08-07', 25000.00, '1970-01-01', 25000.00, 'Kk nagar', '2', '0 years 1 months', ' Move on', 1, '2025-09-19 04:56:01', 0, NULL, 0, NULL, 1),
(10820, 26913, 'Ags transact technologies', 'Executive ', '2023-01-05', 20000.00, '2024-10-31', 1.00, 'Chennai', '1', '1 years 9 months', ' ', 1, '2025-09-19 06:07:37', 0, NULL, 0, NULL, 1),
(10821, 26911, 'Impower Solutions pvt ltd ', 'Junior Content Writer ', '2021-12-17', 12000.00, '2023-10-31', 16000.00, 'Chennai', '1', '1 years 10 months', ' Due to personal reasons and health conditions ', 1, '2025-09-19 06:18:02', 0, NULL, 0, NULL, 1),
(10822, 26914, 'Fs insurance broking ', 'Tele sales ', '2025-01-21', 14000.00, '2025-08-04', 14000.00, 'Nandanam', '1', '0 years 6 months', ' Pf not provided ', 1, '2025-09-19 07:02:02', 0, NULL, 0, NULL, 1),
(10823, 26915, 'yoho Technologies ', 'Process Associate', '2025-02-03', 15000.00, '2025-09-11', 16000.00, 'keelkattalai', '1', '0 years 7 months', ' ', 1, '2025-09-19 07:21:21', 0, NULL, 0, NULL, 1),
(10824, 26918, ' vlc consturction', 'site supervisor', '2019-11-01', 10000.00, '2022-09-20', 11000.00, 'chennai', '1', '2 years 10 months', 'Financial problem', 1, '2025-09-19 09:29:14', 1, '2025-09-19 09:29:53', 0, NULL, 1),
(10825, 26918, 'tablets india limited ', 'medical representative', '2022-09-21', 14000.00, '2025-02-06', 16000.00, 'chennai', '1', '2 years 4 months', 'Growth level ', 1, '2025-09-19 09:32:10', 1, '2025-09-19 09:35:42', 0, NULL, 1),
(10826, 26918, 'franco indian pharmaceutical', 'medical representative', '2025-02-08', 30000.00, '2025-09-18', 30000.00, 'chennai', '1', '0 years 7 months', 'Field work not growth my self ', 1, '2025-09-19 09:35:21', 0, NULL, 0, NULL, 1),
(10827, 26896, 'Pon chemical ', 'Madhavaram ', '2024-02-15', 15000.00, '2025-01-22', 17000.00, 'Chennai', '1', '0 years 11 months', ' For career growth ', 1, '2025-09-19 03:07:05', 0, NULL, 0, NULL, 1),
(10828, 26935, 'Hdb financial services ', 'Senior telecalling Officer ', '2024-10-28', 13000.00, '2025-08-06', 13000.00, 'Thousand light ', '1', '0 years 9 months', ' Personal reason', 1, '2025-09-20 06:57:07', 0, NULL, 0, NULL, 1),
(10829, 26934, 'HBD  finance services ', 'Senior telecaller ', '2024-10-28', 13000.00, '2025-06-06', 13000.00, 'Thousands light', '1', '0 years 7 months', ' Health issues', 1, '2025-09-20 06:58:57', 0, NULL, 0, NULL, 1),
(10830, 26932, 'Taurus bpo ', 'Customer support ', '2025-02-03', 15000.00, '2025-07-16', 15000.00, 'Velachery ', '1', '0 years 5 months', ' My office shifted to Bangalore  (6months experience )', 1, '2025-09-20 07:27:33', 0, NULL, 0, NULL, 1),
(10831, 26941, 'Gae Projects Private Limited ', 'Software Developer ', '2023-05-17', 15000.00, '1970-01-01', 20000.00, 'Aladur, Chennai ', '2', '2 years 4 months', ' For better learning opportunities and Better Career growth ', 1, '2025-09-20 09:43:20', 0, NULL, 0, NULL, 1),
(10832, 26942, 'Simtek ', 'Bussiness development executive ', '2024-11-19', 32500.00, '2025-06-10', 32500.00, 'Chennai ', '1', '0 years 6 months', ' Mother was in sick', 1, '2025-09-20 09:53:57', 0, NULL, 0, NULL, 1),
(10833, 26944, 'park intelli solutions', 'appraisal analyst', '2021-03-15', 15000.00, '2021-03-31', 15000.00, 'coimbatore', '1', '0 years 0 months', ' I wanted to transition into a development-focused role to leverage my interest and skills in coding and web technologies and advance my career in IT', 1, '2025-09-20 11:36:10', 0, NULL, 0, NULL, 1),
(10834, 26944, 'sparkout tech solutions', 'node.js developer', '2022-06-21', 5000.00, '2025-09-29', 33000.00, 'coimbatore', '1', '3 years 3 months', 'Seeking new challenges and exposure to different technologies to grow my skills and advance my career', 1, '2025-09-20 11:39:54', 0, NULL, 0, NULL, 1),
(10835, 26951, 'Just Dial limited ', 'Tellecaller ', '2024-07-04', 15000.00, '1970-01-01', 21000.00, 'Little mount ', '2', '1 years 2 months', ' Due to shift timing ', 1, '2025-09-22 04:02:21', 0, NULL, 0, NULL, 1),
(10836, 26953, 'Axis Bank Ltd ', 'Savings account & current account sales ', '2023-08-10', 19000.00, '2024-09-20', 20000.00, 'Chennai ', '1', '1 years 1 months', ' ', 1, '2025-09-22 06:01:32', 0, NULL, 0, NULL, 1),
(10837, 26954, 'Customer executive ', 'Employee ', '2023-08-06', 15000.00, '2025-08-31', 18500.00, 'Chennai ', '1', '2 years 1 months', ' I want grow further learn new skill development.', 1, '2025-09-22 06:06:11', 0, NULL, 0, NULL, 1),
(10838, 26957, 'shriram life insurance', 'insurance advisor', '2024-05-08', 22.00, '2025-05-01', 22.00, 'egmore', '1', '0 years 11 months', ' Company get closed', 1, '2025-09-22 06:55:25', 0, NULL, 0, NULL, 1),
(10839, 26945, 'worktual innovation pvt', 'software engineer', '2023-07-12', 12072023.00, '2025-09-12', 480000.00, 'ekkathutagal', '1', '2 years 2 months', ' Career growth', 1, '2025-09-22 07:20:53', 1, '2025-09-22 07:22:12', 0, NULL, 1),
(10840, 26958, 'tradeindia info private imite ', 'relationship manager', '2025-06-25', 30000.00, '2025-09-05', 30000.00, 'thousand light', '1', '0 years 2 months', 'Personal reasons', 1, '2025-09-22 07:56:25', 0, NULL, 0, NULL, 1),
(10841, 26960, 'accenture', 'healthcare new associate ', '2024-08-16', 14500.00, '2025-08-29', 17000.00, 'sholinganallur', '1', '1 years 0 months', 'for  better opportunities and career growth', 1, '2025-09-22 09:29:15', 0, NULL, 0, NULL, 1),
(10842, 26966, 'HDB Financial Services ', 'Processor ', '2024-04-29', 14000.00, '2025-08-30', 18000.00, 'Thousands lights ', '1', '1 years 4 months', ' Shits timings ', 1, '2025-09-23 02:06:40', 0, NULL, 0, NULL, 1),
(10843, 26966, 'HDB Financial Services ', 'Sales executive ', '2022-08-08', 14000.00, '2023-06-16', 15500.00, 'Thiruninravur ', '1', '0 years 10 months', 'Field ', 1, '2025-09-23 02:08:08', 0, NULL, 0, NULL, 1),
(10844, 26966, 'Quess Corp Limited ', 'Junior relationship officer ', '2023-10-20', 14000.00, '2024-02-08', 14000.00, 'Avadi', '1', '0 years 3 months', 'Personal ', 1, '2025-09-23 02:10:41', 0, NULL, 0, NULL, 1),
(10845, 26965, 'HDB DINANCIAL SERVICES ', 'SALES OFFICER ', '2025-02-10', 15000.00, '2025-06-26', 15000.00, 'PERAMBALUR ', '1', '0 years 4 months', ' ', 1, '2025-09-23 05:24:37', 1, '2025-09-23 05:28:01', 0, NULL, 0),
(10846, 26965, 'HDB FINANCIAL services ', 'Sales officer ', '2025-02-10', 15000.00, '2025-06-26', 15000.00, 'Perambalur ', '1', '0 years 4 months', 'My mind and my body condition is worst because of full fieldwork for i would quite the job.', 1, '2025-09-23 05:27:49', 0, NULL, 0, NULL, 1),
(10847, 26968, 'Entri software private limited ', 'Inside sales ', '2024-07-01', 22500.00, '2025-06-07', 25000.00, 'Coimbatore ', '1', '0 years 11 months', ' Medical issues ', 1, '2025-09-23 05:32:27', 0, NULL, 0, NULL, 1),
(10848, 26969, 'Aptronix', 'Senior sales executive ', '2023-01-05', 22000.00, '2025-12-26', 24400.00, 'Chennai (Velachery ', '1', '2 years 11 months', ' Long distance ', 1, '2025-09-23 06:03:39', 0, NULL, 0, NULL, 1),
(10849, 26975, 'Suraj and co', 'Relationship Manager ', '2024-11-28', 2.50, '2025-07-19', 2.50, 'Bengaluru Wilson garden ', '1', '0 years 7 months', ' Completed 1 year on relationship Manager & wants to changes the postion for higher authority ', 1, '2025-09-24 04:50:37', 0, NULL, 0, NULL, 1),
(10850, 26985, 'omega healthcare', 'process executive', '2024-07-11', 20000.00, '2025-08-01', 20000.00, 'taramani', '1', '1 years 0 months', ' Due to health issues', 1, '2025-09-24 07:20:49', 1, '2025-09-24 07:21:33', 0, NULL, 1),
(10851, 26982, 'merit ', 'research analyst', '2019-05-24', 18000.00, '2020-05-25', 226000.00, 'chennai', '1', '1 years 0 months', ' Covid ', 1, '2025-09-24 07:29:14', 0, NULL, 0, NULL, 1),
(10852, 26982, 'rajalakshmi school of buisness', 'Business development executive', '2024-09-04', 23000.00, '2025-04-15', 276000.00, 'chennai', '1', '0 years 7 months', 'Distance and irregular salary', 1, '2025-09-24 07:32:16', 0, NULL, 0, NULL, 1),
(10853, 26987, 'Star health and Allied insurance company ', 'Customer service executive ', '2023-05-15', 15.00, '2025-04-16', 16.50, 'Royapettah ', '1', '1 years 11 months', ' Low salary package ', 1, '2025-09-24 10:59:09', 0, NULL, 0, NULL, 1),
(10854, 26988, 'Collman services ', 'Tellecaller ', '2024-09-10', 15000.00, '2025-05-02', 15000.00, 'Arumbakkam ', '1', '0 years 7 months', ' ', 1, '2025-09-24 12:37:50', 0, NULL, 0, NULL, 1),
(10855, 26994, 'Kishore ', '25/09/2025', '2025-06-03', 15000.00, '2025-09-25', 15000.00, 'Kodambakkam ', '1', '0 years 3 months', 'Salary issue ', 1, '2025-09-25 07:38:43', 0, NULL, 0, NULL, 1),
(10856, 26995, 'Thirumalaivasan ', '25/09/2025', '2025-06-03', 15000.00, '2025-09-25', 15000.00, 'Kodambakkam ', '1', '0 years 3 months', ' Salary issue ', 1, '2025-09-25 08:44:21', 0, NULL, 0, NULL, 1),
(10857, 26997, 'Ideelit Softwares LLP ', 'React js Developer ', '2023-05-20', 10000.00, '1970-01-01', 15000.00, 'Madurai ', '2', '2 years 4 months', ' For improving my skills set and career growth ', 1, '2025-09-25 09:27:15', 0, NULL, 0, NULL, 1),
(10858, 27000, 'Stats Perform ', 'DCA', '2021-04-13', 12500.00, '2025-04-28', 20000.00, 'Thousand lights', '1', '4 years 5 months', ' There is no growth ', 1, '2025-09-25 12:07:32', 0, NULL, 0, NULL, 1),
(10859, 26999, 'autosense pvt ltd', 'telesales', '2025-03-21', 18000.00, '1970-01-01', 18000.00, 'guindy', '2', '0 years 6 months', ' Health issue', 1, '2025-09-25 08:16:41', 0, NULL, 0, NULL, 1),
(10860, 27004, 'JRK CONSULTING SERVICES PVT ltd ', 'Qc', '2021-11-22', 7500.00, '2024-11-30', 30000.00, 'Chennai ', '1', '3 years 0 months', ' Improve my career growth ', 1, '2025-09-26 04:50:36', 0, NULL, 0, NULL, 1),
(10861, 27012, 'BAJAJ FINSERV LTD', 'SALE\'S EXCUTIVE ', '2022-03-18', 16000.00, '2025-06-26', 293000.00, 'KADUBISANAHALLI ', '1', '3 years 3 months', ' ', 1, '2025-09-26 08:13:41', 0, NULL, 0, NULL, 1),
(10862, 27010, 'al arab arafa manpower consultancy ', 'bDM', '2025-04-01', 16.00, '2025-09-01', 20.00, 'Trich', '1', '0 years 5 months', 'migration', 159, '2025-09-26 03:37:25', 0, NULL, 0, NULL, 1),
(10863, 26759, 'Lenskart ', 'Telesales ', '2025-07-15', 18500.00, '2025-07-29', 18500.00, 'Mylapore ', '1', '0 years 0 months', ' ', 1, '2025-09-27 06:25:33', 0, NULL, 0, NULL, 1),
(10864, 27024, 'Altruist technologies pvt ltd', 'Customer support ', '2022-02-14', 12500.00, '2023-03-20', 20000.00, 'Bommanahalli ', '1', '1 years 1 months', ' Health issue', 1, '2025-09-27 07:35:32', 0, NULL, 0, NULL, 1),
(10865, 27024, 'Justdial', 'Tele sales', '2023-04-18', 20000.00, '2025-06-07', 20000.00, 'Cunningham road', '1', '2 years 1 months', 'Started new business ', 1, '2025-09-27 07:37:23', 0, NULL, 0, NULL, 1),
(10866, 27030, 'Teleperformance ', 'Operations ', '2020-10-26', 24000.00, '2022-05-22', 24000.00, 'Ambattur ', '1', '1 years 6 months', ' Received after child birth ', 1, '2025-09-28 04:16:26', 0, NULL, 0, NULL, 1),
(10867, 27039, '4', 'Tele marketing ', '2024-07-18', 1.00, '2025-05-30', 28000.00, 'Banglore ', '1', '0 years 10 months', ' Process got shutdown ', 1, '2025-09-29 06:34:39', 0, NULL, 0, NULL, 1),
(10868, 27040, 'Sivaraman S', 'Puzhal ', '2023-11-15', 19000.00, '2024-04-30', 30.00, 'Redhill ', '1', '0 years 5 months', ' Night shift ', 1, '2025-09-29 06:54:34', 0, NULL, 0, NULL, 1),
(10869, 27041, 'Axis bank Ltd ', 'Assistant Manager ', '2021-03-20', 25000.00, '2023-07-23', 23000.00, 'Bangalore ', '1', '2 years 4 months', ' Mother expired ', 1, '2025-09-29 06:57:23', 0, NULL, 0, NULL, 1),
(10870, 27044, 'Altruist technology pvt ltd ', 'CSR', '2024-08-23', 7.00, '1970-01-01', 23000.00, 'Kudlu gate ', '2', '1 years 1 months', ' ', 1, '2025-09-29 07:23:13', 0, NULL, 0, NULL, 1),
(10871, 27048, 'Sanviv services private limited company ', 'Customer support executive ', '2024-02-01', 14000.00, '2025-05-10', 16000.00, 'Chromepet ', '1', '1 years 3 months', ' Its a personal issue ', 1, '2025-09-29 12:31:11', 0, NULL, 0, NULL, 1),
(10872, 27051, 'Beepkart', 'Sales executive ', '2025-02-07', 31000.00, '1970-01-01', 31000.00, 'Yelahanka', '2', '0 years 7 months', ' Company has been closed so they called immediate lay off', 1, '2025-09-30 06:11:04', 0, NULL, 0, NULL, 1),
(10873, 27053, 'bajaj finserv private limited', 'financial executive', '2024-05-02', 18000.00, '2025-05-15', 19500.00, 'chennai', '1', '1 years 0 months', ' ', 1, '2025-10-02 01:52:16', 0, NULL, 0, NULL, 1),
(10874, 27055, 'imarque solutions ', 'customer suppo executive ', '2024-09-10', 16000.00, '2025-09-24', 16000.00, 'teynampet', '1', '1 years 0 months', ' Salary issue ', 1, '2025-10-03 02:43:18', 0, NULL, 0, NULL, 1),
(10875, 27057, 'V care', 'Telecaller', '2024-06-17', 14000.00, '2025-07-12', 24000.00, 'Ambattur', '1', '1 years 0 months', ' I learn to new experience and work environment', 1, '2025-10-03 07:39:03', 0, NULL, 0, NULL, 1),
(10876, 27058, 'Conduent businesses pvt ltd ', 'Transaction analysts ', '2017-09-04', 18000.00, '2020-10-09', 18000.00, 'Bangalore ', '1', '3 years 1 months', ' Due to health issues ', 1, '2025-10-03 07:54:51', 0, NULL, 0, NULL, 1),
(10877, 27059, 'axis bank', 'assistant manager', '2023-08-10', 18000.00, '1970-01-01', 360000.00, 'bangalore', '2', '2 years 1 months', ' To imp my skills', 1, '2025-10-03 10:31:07', 0, NULL, 0, NULL, 1),
(10878, 27059, 'icici bank', 'officer sales', '2021-06-03', 13000.00, '2021-12-15', 13000.00, 'bangalore', '1', '0 years 6 months', 'For family purpose', 1, '2025-10-03 10:35:12', 0, NULL, 0, NULL, 1),
(10879, 27060, 'G Square Housing ', 'Tele Caller', '2025-03-12', 20000.00, '2025-09-29', 20000.00, 'Nandanam', '1', '0 years 6 months', ' Personal Reasons', 1, '2025-10-03 11:05:33', 0, NULL, 0, NULL, 1),
(10880, 27060, 'Roof and Floor ', 'Tele caller', '2024-02-22', 15000.00, '2025-03-10', 15000.00, 'Government Estate ', '1', '1 years 0 months', 'Personal Reasons', 1, '2025-10-03 11:08:15', 0, NULL, 0, NULL, 1),
(10881, 27064, 'First source limited ', 'Customer support Associate ', '2021-09-01', 12000.00, '2022-01-01', 13000.00, 'Navalur', '1', '0 years 4 months', ' Due to personal health issue ', 1, '2025-10-04 05:38:38', 0, NULL, 0, NULL, 1),
(10882, 27064, 'Htc Global Pvt limited ', 'Data Conversion specialist ', '2022-03-01', 12000.00, '2022-09-01', 12000.00, 'Vandalur ', '1', '0 years 6 months', 'Need to work in voice process. ', 1, '2025-10-04 05:40:45', 0, NULL, 0, NULL, 1),
(10883, 27064, 'Imarque solutions pvt limited ', 'Subject Matter Expert ', '2023-01-18', 12000.00, '2025-08-02', 17000.00, 'IDM (near Egmore)', '1', '2 years 6 months', 'Married and I too improve my knowledge. ', 1, '2025-10-04 05:42:31', 0, NULL, 0, NULL, 1),
(10884, 27065, 'infosys', 'senior process executive', '2022-08-18', 20000.00, '1970-01-01', 345000.00, 'bangalore', '2', '3 years 1 months', ' N/A', 1, '2025-10-04 06:16:08', 0, NULL, 0, NULL, 1),
(10885, 27066, 'Tamil Matrimony ', 'Data validation ', '2025-07-01', 20000.00, '2025-10-01', 20000.00, 'Guindy', '1', '0 years 3 months', 'Due to personal issue ', 1, '2025-10-04 08:32:56', 0, NULL, 0, NULL, 1),
(10886, 27067, 'Cams', 'Customer support Executive ', '2021-08-30', 13000.00, '2023-01-16', 16000.00, 'Chennai ', '1', '1 years 4 months', ' ', 1, '2025-10-04 07:38:22', 0, NULL, 0, NULL, 1),
(10887, 27072, 'HDB FINANCIAL SERVICES ', 'Senior Telecalling Collection ', '2023-05-06', 12000.00, '2025-05-06', 16000.00, 'Thousand lights ', '1', '2 years 0 months', ' Salary package ', 1, '2025-10-06 05:12:24', 0, NULL, 0, NULL, 1),
(10888, 27074, 'Digient Technologies ', 'Front office executive ', '2024-09-04', 34000.00, '2025-06-13', 34000.00, 'Chennai', '1', '0 years 9 months', ' Personal', 1, '2025-10-06 05:18:20', 0, NULL, 0, NULL, 1),
(10889, 27019, 'Vizza insurance pvt Ltd ', 'Tellseller', '2025-08-04', 13500.00, '1970-01-01', 13509.00, 'Teynampet', '2', '0 years 2 months', 'To want more salary ', 1, '2025-10-06 05:47:53', 0, NULL, 0, NULL, 1),
(10890, 27077, 'ICICI prudential life insurance corporation ltd', 'Team Lead ', '2023-03-01', 25000.00, '2024-04-30', 34000.00, 'Tiruppur', '1', '1 years 1 months', ' I decided to resign from my position in order to dedicate my full time and effort to preparing for government examinations.\n', 1, '2025-10-06 05:54:44', 0, NULL, 0, NULL, 1),
(10891, 27086, 'sagility', 'associate', '2024-01-08', 14650.00, '2025-10-07', 22000.00, 'surva wav tec electronic city', '1', '1 years 8 months', ' ', 1, '2025-10-07 04:38:51', 0, NULL, 0, NULL, 1),
(10892, 27088, 'Tvs insurance broking private limited ', 'IE2', '2022-12-05', 14000.00, '1970-01-01', 25000.00, 'Chennai', '2', '2 years 10 months', ' Career Growth ', 1, '2025-10-07 05:28:34', 0, NULL, 0, NULL, 1),
(10893, 27089, 'VIDYA ', 'Tele calling ', '2025-10-07', 17000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '0 years 0 months', '2 years ', 1, '2025-10-07 06:43:16', 0, NULL, 0, NULL, 1),
(10894, 27071, 'mycon debt collection ', 'debt collection officer ', '2025-03-04', 22000.00, '2025-10-07', 22000.00, 'ambattur ', '1', '0 years 7 months', ' So long  for travel ', 1, '2025-10-07 06:45:51', 0, NULL, 0, NULL, 1),
(10895, 27071, 'mycon debt collection ', 'debt collection officer ', '2025-03-04', 22000.00, '2025-10-07', 22000.00, 'ambattur ', '1', '0 years 7 months', ' So long  for travel ', 1, '2025-10-07 06:45:52', 0, NULL, 0, NULL, 1),
(10896, 27092, 'Justdial private limited ', 'Telemarketing executive', '2023-10-07', 16500.00, '2024-05-04', 16500.00, 'Chennai ', '1', '0 years 6 months', ' Marriage', 1, '2025-10-07 07:00:44', 0, NULL, 0, NULL, 1),
(10897, 27090, 'armsofttech', 'Collection executive', '2019-07-10', 15000.00, '2022-02-01', 15000.00, 'guindY', '1', '2 years 6 months', 'got Different oppoutunity by reference', 154, '2025-10-07 12:46:42', 0, NULL, 0, NULL, 1),
(10898, 27090, 'bussan autofinance', 'Collection executive', '2022-02-01', 18000.00, '2023-03-01', 18000.00, 'tenampet', '1', '1 years 0 months', 'Company shut down ', 154, '2025-10-07 12:47:57', 0, NULL, 0, NULL, 1),
(10899, 27090, 'Casagrand builders', 'site visit coordinator', '2023-04-20', 23000.00, '2024-07-03', 23000.00, 'Thiruvanmiur', '1', '1 years 2 months', 'Mother health issues', 154, '2025-10-07 12:49:30', 0, NULL, 0, NULL, 1),
(10900, 27099, 'kgis ', 'voice process', '2024-01-07', 15000.00, '2024-11-20', 18000.00, 'coimbatore', '1', '0 years 10 months', 'My health issues broke my leg ', 1, '2025-10-08 05:58:19', 0, NULL, 0, NULL, 1),
(10901, 27102, 'Trade india', 'Deputy manager-key account ', '2024-08-01', 34000.00, '2025-10-06', 34000.00, 'Chennai', '1', '1 years 2 months', ' ', 1, '2025-10-08 07:43:29', 0, NULL, 0, NULL, 1),
(10902, 27100, 'axis bank', 'junior reletionship officer', '2023-01-01', 18000.00, '2024-04-30', 18000.00, 'electronic city', '1', '1 years 3 months', ' looking for better oppurtunities', 1, '2025-10-08 07:48:32', 0, NULL, 0, NULL, 1),
(10903, 27100, 'manapuram gold ', 'junior assistant loan department', '2024-06-22', 20000.00, '2025-08-09', 25000.00, 'electronic city ', '1', '1 years 1 months', 'looking for a better opportunities ', 1, '2025-10-08 07:50:36', 0, NULL, 0, NULL, 1),
(10904, 27104, 'Tmis', 'Front end developer ', '2024-03-29', 15.00, '2025-03-29', 15.00, 'Perungudi ', '1', '1 years 0 months', ' Low salary and salary date extend too much ', 1, '2025-10-08 09:00:07', 0, NULL, 0, NULL, 1),
(10905, 27104, 'Tmis ', 'Front end developer ', '2024-03-29', 15.00, '2025-03-29', 15.00, 'Perungudi ', '1', '1 years 0 months', 'Low salary and salary date will be too much extended ', 1, '2025-10-08 09:01:27', 0, NULL, 0, NULL, 1),
(10906, 27116, 'incred ', 'tele sales ', '2021-06-07', 17.00, '2023-06-07', 18500.00, 'bangalore', '1', '2 years 0 months', ' Job change ', 1, '2025-10-09 09:38:33', 0, NULL, 0, NULL, 1),
(10907, 25568, 'Wondersoft private limited ', 'Inside sales ', '2023-07-19', 18500.00, '2024-10-30', 18500.00, 'T nagar', '1', '1 years 3 months', ' Far distance ', 1, '2025-10-09 09:41:36', 0, NULL, 0, NULL, 1),
(10908, 27121, 'FS Insurance Pvt Ltd', 'Financial Executive', '2025-01-21', 14000.00, '2025-10-03', 14000.00, 'Teynampet Chennai', '1', '0 years 8 months', 'Incentive structure', 1, '2025-10-09 01:27:54', 0, NULL, 0, NULL, 1),
(10909, 27125, 'blitzkite services', 'process associate', '2024-01-20', 18000.00, '2025-05-01', 20000.00, 'btm', '1', '1 years 3 months', ' marriage purpose', 1, '2025-10-10 07:21:00', 0, NULL, 0, NULL, 1),
(10910, 27128, 'Royal Sundaram general insurance ', 'Sales associate ', '2022-09-09', 18000.00, '2024-12-31', 20000.00, 'Karapakkam ', '1', '2 years 3 months', ' Not have any growth', 1, '2025-10-10 09:11:11', 0, NULL, 0, NULL, 1),
(10911, 27128, 'Novac technology ', 'Sales associate ', '2025-01-20', 25000.00, '2025-09-02', 25000.00, 'Perungudi ', '1', '0 years 7 months', 'Health issues ', 1, '2025-10-10 09:12:26', 0, NULL, 0, NULL, 1),
(10912, 27133, 'Vizza health insurance pvt ltd ', 'Voice process executive ', '2021-01-05', 14000.00, '2023-12-10', 15000.00, 'Koyambedu ', '1', '2 years 11 months', ' No proper incentive and no salary increment over pressure ', 1, '2025-10-11 05:30:37', 0, NULL, 0, NULL, 1),
(10913, 27135, 'Techmahindra', 'Customer service executive', '2024-07-01', 15000.00, '2025-09-28', 14000.00, 'Chennai', '1', '1 years 2 months', ' No increment', 1, '2025-10-11 06:47:12', 0, NULL, 0, NULL, 1),
(10914, 27141, 'Sutherland ', 'Customer Support Executive ', '2024-10-23', 15.00, '2025-05-07', 17.00, 'Perugalathur ', '1', '0 years 6 months', ' Health issues ', 1, '2025-10-11 09:24:15', 0, NULL, 0, NULL, 1),
(10915, 27142, 'Treams technology', 'Admin, customer support ', '2025-01-15', 22000.00, '1970-01-01', 22000.00, 'Ekaduthangal', '2', '0 years 8 months', ' Office location change after no response and no information ', 1, '2025-10-11 09:31:58', 0, NULL, 0, NULL, 1),
(10916, 27150, 'Propel Finways Insurance Marketing PVTLTD', 'SENIOR EXECUTIVE', '2024-04-18', 15000.00, '2025-04-30', 15000.00, 'kodambakkam', '1', '1 years 0 months', 'Salary  Issues', 1, '2025-10-11 01:37:08', 0, NULL, 0, NULL, 1),
(10917, 27153, 'Source hov pvt ltd ', 'Jr processor ', '2018-10-01', 10000.00, '2023-08-25', 18000.00, 'Salem', '1', '4 years 10 months', ' I need to push my self to the next level ', 1, '2025-10-13 04:47:46', 0, NULL, 0, NULL, 1),
(10918, 27151, 'Mutur Pharma pvt ltd ', 'Bpo', '2025-05-27', 17000.00, '1970-01-01', 17000.00, 'Ambattur ', '2', '0 years 4 months', ' Not get in the proper salary \nNo insective. ', 1, '2025-10-13 05:31:25', 0, NULL, 0, NULL, 1),
(10919, 27155, 'aceolution', 'Customer support analyst', '2022-08-17', 15000.00, '2025-09-29', 30000.00, 'coimbatore', '1', '3 years 1 months', ' I want grow and learnin new skills and new place', 1, '2025-10-13 06:16:32', 0, NULL, 0, NULL, 1),
(10920, 27149, 'SM marketing ', 'Sales executive ', '2024-09-10', 20000.00, '2025-08-30', 20000.00, 'Pondicherry ', '1', '0 years 11 months', 'I like indoor office work so I reason the job', 1, '2025-10-13 06:30:57', 0, NULL, 0, NULL, 1),
(10921, 27160, 'cameo corporate parivate limited ', 'tellecaller sales ', '2023-11-07', 12000.00, '2024-09-11', 12000.00, 'chennai', '1', '1 years 11 months', ' ', 1, '2025-10-13 07:43:32', 0, NULL, 0, NULL, 1),
(10922, 27160, 'allset business solutions ', 'tellecaller ', '2025-02-05', 17000.00, '2025-08-10', 17000.00, 'thousand lights ', '1', '0 years 6 months', 'Personal reasons ', 1, '2025-10-13 07:45:35', 0, NULL, 0, NULL, 1),
(10923, 27161, 'Propel Finways insurance Marketing Pvt Ltd ', 'Tele marketing Executive ', '2024-06-24', 15000.00, '2025-02-28', 16000.00, 'Ashok nagar ', '1', '0 years 8 months', ' No surporting for company ', 1, '2025-10-13 08:29:32', 0, NULL, 0, NULL, 1),
(10924, 27162, 'CGSMA', 'Data entry', '2025-07-01', 13.00, '2025-10-13', 13.00, 'Chennai', '1', '0 years 3 months', 'One year of apprenticeship training', 1, '2025-10-13 08:49:46', 0, NULL, 0, NULL, 1),
(10925, 27163, 'HDFC Bank ', 'Relationship manager ', '2023-07-17', 15000.00, '2024-12-11', 15000.00, 'Chennai ', '1', '1 years 4 months', ' Personal issue ', 1, '2025-10-13 09:07:16', 0, NULL, 0, NULL, 1),
(10926, 27164, 'My money mantra ', 'Telly caller ', '2025-06-27', 13000.00, '2025-09-30', 13000.00, 'Vadapalani ', '1', '0 years 3 months', 'Distence problem, And increase salary .', 1, '2025-10-13 09:42:50', 0, NULL, 0, NULL, 1),
(10927, 27165, 'egniol', 'Senior Business Developer ', '2025-07-01', 27000.00, '2025-09-29', 27000.00, 'chennai', '1', '0 years 2 months', ' The company have closed their chennai branch', 1, '2025-10-13 09:50:21', 0, NULL, 0, NULL, 1),
(10928, 27166, 'Ts mahalingam finance and services pvt ltd ', 'Tele caller ', '2021-12-20', 15000.00, '2025-06-01', 15000.00, 'Chennai', '1', '3 years 9 months', ' Financial ', 1, '2025-10-13 09:51:18', 0, NULL, 0, NULL, 1),
(10929, 27172, 'IGT solution private limited ', 'Process Associate ', '2022-12-06', 15000.00, '2023-12-10', 1500.00, 'Chennai ', '1', '1 years 0 months', ' Process closed ', 1, '2025-10-14 04:56:59', 0, NULL, 0, NULL, 1),
(10930, 27172, 'Suraj and co', 'Virtual Relationship Manager ', '2024-12-19', 16000.00, '2025-10-10', 16000.00, 'Bangalore ', '1', '0 years 9 months', 'Not salary growth', 1, '2025-10-14 04:58:20', 0, NULL, 0, NULL, 1),
(10931, 27173, 'eskertech solutions private limited ', 'sales executive ', '2025-07-04', 15000.00, '2025-10-10', 15000.00, 'teynampet ', '1', '0 years 3 months', ' The previous company did\'t provide me a proper incentives and it also difficult to take a proper leave ', 1, '2025-10-14 05:47:09', 0, NULL, 0, NULL, 1),
(10932, 27174, 'Eskertech solutions private limited ', 'Employee ', '2025-07-04', 15000.00, '1970-01-01', 15000.00, 'Teynampet', '2', '0 years 3 months', ' ', 1, '2025-10-14 05:48:25', 0, NULL, 0, NULL, 1),
(10933, 27175, 'Eskertech solution private limited ', 'Employee', '2025-07-04', 15000.00, '1970-01-01', 15000.00, 'Teynampet', '2', '0 years 3 months', ' Don\'t provide Intensivety ', 1, '2025-10-14 05:50:05', 0, NULL, 0, NULL, 1),
(10934, 27174, 'Eskertech solutions private limited ', 'Employee ', '2025-07-04', 15000.00, '1970-01-01', 15009.00, 'Tenampet', '2', '0 years 3 months', 'Don\'t provide incentive ', 1, '2025-10-14 05:50:21', 0, NULL, 0, NULL, 1),
(10935, 27178, 'Bharath matrimony ', 'Senior service executive ', '2023-10-12', 14500.00, '2025-10-12', 16500.00, 'Anepalya', '1', '2 years 0 months', ' ', 1, '2025-10-14 05:55:35', 0, NULL, 0, NULL, 1),
(10936, 27179, 'Global consulting ', 'Tellcaller', '2025-01-01', 20000.00, '2025-10-06', 20000.00, 'Thousand light ', '1', '0 years 9 months', ' Salary problem ', 1, '2025-10-14 06:00:57', 0, NULL, 0, NULL, 1),
(10937, 27186, 'Justdial ltd', 'Telemarketing Executive ', '2024-01-23', 18000.00, '2025-11-05', 19200.00, 'Chennai ', '1', '1 years 9 months', ' ', 1, '2025-10-15 05:39:36', 0, NULL, 0, NULL, 1),
(10938, 27187, 'Vodafone ', 'Telecalling', '2017-03-03', 10000.00, '2018-02-09', 10000.00, 'Chennai ', '1', '0 years 11 months', ' ', 1, '2025-10-15 06:01:21', 1, '2025-10-15 06:05:12', 0, NULL, 1),
(10939, 27187, 'Deccan i services pvt ltd ', 'Data Entry - Mortgage ', '2018-05-10', 12500.00, '2020-09-10', 12500.00, 'Villupuram ', '1', '2 years 4 months', 'Health Issue', 1, '2025-10-15 06:04:08', 0, NULL, 0, NULL, 1),
(10940, 27187, 'Sri Lakshmi Associates ', 'Office maintenance work', '2024-11-04', 18500.00, '2025-03-05', 18500.00, 'Royapettah ', '1', '0 years 4 months', 'Health Issue ', 1, '2025-10-15 06:07:46', 0, NULL, 0, NULL, 1),
(10941, 27184, 'akshmi tata', 'sales consultant', '2025-01-27', 18000.00, '2025-08-25', 18000.00, 'gummidipoondi ', '1', '0 years 6 months', 'Married\nShifting to chennai', 1, '2025-10-15 06:53:44', 0, NULL, 0, NULL, 1),
(10942, 27190, 'ICICI Lombard general insurance', 'telesales officer', '2019-10-11', 10000.00, '2020-11-30', 10000.00, 'Thousand light', '1', '1 years 1 months', ' corona ', 1, '2025-10-15 01:41:10', 0, NULL, 0, NULL, 1),
(10943, 27190, 'hdb financial services ltd', 'Corporate sales executive', '2022-05-16', 15000.00, '2023-07-31', 15000.00, 'arumbakkam', '1', '1 years 2 months', 'Career growth', 1, '2025-10-15 01:58:49', 0, NULL, 0, NULL, 1),
(10944, 27190, 'HDFC Bank Private Limited ', 'Officer', '2023-08-11', 20000.00, '2024-12-31', 20000.00, 'Arumbakkam', '1', '1 years 4 months', 'father helath issuse', 1, '2025-10-15 02:01:43', 0, NULL, 0, NULL, 1),
(10945, 27194, 'ibrook infotech', 'full stack engineer', '2023-03-13', 8000.00, '2025-10-31', 21000.00, 'chennai', '1', '2 years 7 months', ' In my current role, i have learned a lot. looking for new growth opportunities in both career and personal..', 1, '2025-10-15 05:55:07', 0, NULL, 0, NULL, 1),
(10946, 27188, 'ICICI prudential life insurance ', 'Financial service manager ', '2022-12-20', 2.85, '2023-06-01', 2.85, 'Nungambakkam ', '1', '0 years 5 months', ' ', 1, '2025-10-16 05:38:03', 0, NULL, 0, NULL, 1),
(10947, 27202, 'yrs infotech', 'digital marketing trainee', '2025-09-01', 15000.00, '2025-10-14', 15000.00, 'west mambalam', '1', '0 years 1 months', ' ', 1, '2025-10-16 07:58:16', 0, NULL, 0, NULL, 1),
(10948, 27202, 'adboxers', 'email marketer', '2025-01-01', 12000.00, '2025-08-31', 12000.00, 'chrompet', '1', '0 years 7 months', 'salary ', 1, '2025-10-16 07:59:37', 0, NULL, 0, NULL, 1),
(10949, 27204, 'cognizant ', 'senior process Executive ', '2023-08-30', 24500.00, '2025-09-05', 24500.00, 'bangalore ', '1', '2 years 0 months', ' good growth and hike ', 1, '2025-10-16 08:59:55', 0, NULL, 0, NULL, 1),
(10950, 27212, 'Bankbazaar', 'Senior customer relationship officer', '2022-11-28', 15000.00, '2025-09-30', 21000.00, 'Ambattur', '1', '2 years 10 months', ' Career growth', 1, '2025-10-17 06:11:02', 0, NULL, 0, NULL, 1),
(10951, 27220, 'Omres pvt ltd', 'Sales manager ', '2021-02-12', 35000.00, '2025-09-30', 35000.00, 'Mumbai ', '1', '4 years 7 months', ' Migrating to native', 1, '2025-10-17 10:45:04', 0, NULL, 0, NULL, 1),
(10952, 27232, 'Thinksynq solutions pvt ltd ', 'Customer support executive ', '2023-08-01', 15000.00, '2025-08-08', 15000.00, 'Ekkattuthangal ', '1', '2 years 0 months', ' No hike', 1, '2025-10-21 11:26:01', 0, NULL, 0, NULL, 1),
(10953, 27239, 'Au small finance bank ', 'Money officer ', '2024-04-17', 23500.00, '2024-12-31', 23500.00, 'Chennai- Besant nagar', '1', '0 years 8 months', ' Carrier growth ', 1, '2025-10-22 06:57:18', 0, NULL, 0, NULL, 1),
(10954, 27247, 'IDFC First Bharath ', 'Sales manager ', '2024-06-10', 22800.00, '2024-11-05', 22800.00, 'Chintamani karnataka ', '1', '0 years 4 months', ' For higher studies ', 1, '2025-10-23 07:09:15', 1, '2025-10-23 07:16:36', 0, NULL, 1),
(10955, 27247, 'Home loan legal office', 'Consultant service officer ', '2022-11-10', 10000.00, '2024-05-20', 15000.00, 'Chintamani karnataka ', '1', '1 years 6 months', 'For better opportunities ', 1, '2025-10-23 07:11:26', 0, NULL, 0, NULL, 1),
(10956, 27251, 'Pixalive Group ', 'Node.js developer ', '2022-08-10', 400000.00, '1970-01-01', 520000.00, 'Bangalore ', '2', '3 years 2 months', ' Update my carrier ', 1, '2025-10-23 09:17:37', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10957, 27262, 'KPN FARM FRESH ', 'Customer support executive ', '2024-06-01', 13000.00, '2025-03-30', 15000.00, 'Anna nagar ', '1', '0 years 9 months', ' To join a  new job for career growth ', 1, '2025-10-24 06:10:44', 0, NULL, 0, NULL, 1),
(10958, 27267, 'bharathbrands pvt ltd', 'ui/ux designer', '2024-04-27', 18000.00, '2025-05-11', 18000.00, 'chennai', '1', '1 years 0 months', ' I really valued my time at Bharathbrands, but I wanted to expand into more complex UX challenges and gain experience in the banking and financial domain, which led me to join Tagit.', 1, '2025-10-24 11:13:40', 0, NULL, 0, NULL, 1),
(10959, 27252, 'Teleperformance ', 'Customer support Associate ', '2025-05-21', 2025.00, '1970-01-01', 201516.00, 'Chennai ', '2', '0 years 5 months', ' Salary concern', 1, '2025-10-25 04:41:17', 0, NULL, 0, NULL, 1),
(10960, 27274, 'Heer wealth management ', 'Telesales ', '2024-01-05', 14000.00, '2024-09-07', 14000.00, 'Nungambakkam, chennai ', '1', '1 years 9 months', ' ', 1, '2025-10-25 06:16:39', 0, NULL, 0, NULL, 1),
(10961, 27275, 'Vizza broking insurance', 'Sales executive', '2025-04-04', 7.00, '2025-10-04', 14000.00, 'CMBT', '1', '0 years 6 months', ' My carrier and growth issue', 1, '2025-10-25 07:03:59', 0, NULL, 0, NULL, 1),
(10962, 27277, 'Ask technology ', 'Software developer ', '2023-11-01', 2160000.00, '1970-01-01', 300000.00, 'Kodambakkam, chennai ', '2', '1 years 11 months', 'For better package ', 1, '2025-10-25 10:31:01', 0, NULL, 0, NULL, 1),
(10963, 27290, 'Csb bank', 'Customer support executive', '2025-04-09', 5.00, '2025-08-23', 18.00, 'Nugambakkam', '1', '0 years 4 months', ' Due to non performing', 1, '2025-10-27 07:05:02', 0, NULL, 0, NULL, 1),
(10964, 27295, 'Hdb financial services ', 'Tele caller ', '2023-02-01', 15000.00, '2025-02-01', 16000.00, 'Mound road', '1', '2 years 0 months', ' Health issues  ', 1, '2025-10-28 05:00:31', 0, NULL, 0, NULL, 1),
(10965, 27304, 'Vizza insurance broking services pvt Ltd ', 'Voice process executive ', '2023-08-07', 16000.00, '2024-02-10', 16000.00, 'Chennai ', '1', '0 years 6 months', ' Personal ', 1, '2025-10-28 06:26:28', 0, NULL, 0, NULL, 1),
(10966, 27304, 'Propel finways broking services pvt Ltd ', 'Asst. Team leader ', '2024-03-05', 17000.00, '2025-01-07', 17000.00, 'Chennai', '1', '0 years 10 months', 'Personal and relocation ', 1, '2025-10-28 06:28:05', 0, NULL, 0, NULL, 1),
(10967, 27304, 'Vizza insurance broking services pvt Ltd ', 'Team leader ', '2025-02-10', 17000.00, '1970-01-01', 17000.00, 'Madurai', '2', '0 years 8 months', 'Salary hike', 1, '2025-10-28 06:28:46', 0, NULL, 0, NULL, 1),
(10968, 27306, 'Matrimony.com', 'Senior service executive ', '2023-07-13', 14500.00, '2025-06-24', 18500.00, 'Adugodi banglore ', '1', '1 years 11 months', ' Salary ', 1, '2025-10-28 06:56:57', 0, NULL, 0, NULL, 1),
(10969, 27309, 'Matrimony.com pvt LTD ', 'Customer service executive ', '2024-10-30', 16200.00, '1970-01-01', 16200.00, 'Guindy', '2', '0 years 11 months', ' ', 1, '2025-10-28 09:46:32', 0, NULL, 0, NULL, 1),
(10970, 27309, 'Matrimony.com pvt LTD ', 'Customer service executive ', '2024-09-30', 16200.00, '1970-01-01', 16200.00, 'Chennai', '2', '0 years 11 months', 'For my carrier growth ', 1, '2025-10-28 09:47:39', 0, NULL, 0, NULL, 1),
(10971, 27309, 'Star health insurance company ', 'Customer sales executive ', '2020-02-05', 11500.00, '2020-07-10', 11500.00, 'Kodambakkam ', '1', '0 years 5 months', 'During pandemic ', 1, '2025-10-28 09:49:52', 0, NULL, 0, NULL, 1),
(10972, 27309, 'Star health insurance company ', 'Customer sales executive ', '2020-02-23', 11500.00, '2025-10-28', 11500.00, 'Chennai', '2', '5 years 8 months', ' Pandemic issues ', 1, '2025-10-28 09:55:54', 0, NULL, 0, NULL, 1),
(10973, 27316, 'Renuga murugan ', 'Employee ', '2024-06-24', 30000.00, '2025-07-04', 26000.00, 'Chennai ', '1', '1 years 0 months', 'This field sales ', 1, '2025-10-29 05:05:51', 0, NULL, 0, NULL, 1),
(10974, 27329, 'Vidal Health Insurance TPA ', 'EXECUTIVE ', '2023-05-22', 18000.00, '2025-08-29', 22000.00, 'Chennai ', '1', '2 years 3 months', ' Better opportunity ', 1, '2025-10-30 06:18:32', 0, NULL, 0, NULL, 1),
(10975, 27328, 'Wittur elevator company ', 'Quality control ', '2025-05-10', 16000.00, '2025-10-30', 16000.00, 'Sriperumbudur ', '1', '0 years 5 months', ' ', 1, '2025-10-30 01:54:16', 0, NULL, 0, NULL, 1),
(10976, 27338, 'Telecaller ', 'Bannerghatta road Bangalore ', '2024-08-06', 19.00, '2025-10-08', 19.00, 'Bilekahalli ', '1', '1 years 2 months', ' ', 1, '2025-10-31 08:44:53', 0, NULL, 0, NULL, 1),
(10977, 27339, 'Eskertech solution private limited (HDFC back offi', 'Telesales ', '2024-12-07', 14000.00, '2025-04-11', 22000.00, 'Teynampet ', '1', '0 years 4 months', ' Office timing is not comfortable to me giving late logout only', 1, '2025-10-31 11:08:41', 0, NULL, 0, NULL, 1),
(10978, 27340, 'S keerthana', 'Sales coordinator', '2024-06-06', 17500.00, '2025-03-02', 20000.00, 'Kodambakkam', '1', '0 years 8 months', ' Health issues', 1, '2025-10-31 12:18:53', 0, NULL, 0, NULL, 1),
(10979, 27344, 'star health insurance', 'renival retention officer', '2025-08-01', 16000.00, '2025-10-15', 16000.00, 'chennai', '1', '0 years 2 months', 'Health issue', 1, '2025-11-01 12:07:14', 0, NULL, 0, NULL, 1),
(10980, 27352, 'Alldigi Tech', 'Customer Care Supervisor', '2024-03-05', 13028.00, '2025-10-05', 15512.00, 'Velachery, Chennai', '1', '1 years 7 months', ' ', 1, '2025-11-03 06:02:03', 0, NULL, 0, NULL, 1),
(10981, 27353, 'Cognizant technology solutions ', 'Team lead ', '2019-07-11', 11072017.00, '2024-04-30', 30000.00, 'Chennai ', '1', '4 years 9 months', ' Upskill myself ', 1, '2025-11-03 06:51:25', 0, NULL, 0, NULL, 1),
(10982, 27360, 'Pace setters business solutions pvt Ltd ', 'Telecaller', '2022-07-15', 15000.00, '2025-10-16', 15000.00, 'Nungambakkam ', '1', '3 years 3 months', ' Process ramp down', 1, '2025-11-04 11:00:28', 0, NULL, 0, NULL, 1),
(10983, 27361, 'Pace setters business solution pvt ltd', 'Telecaller ', '2022-07-15', 15000.00, '2025-10-16', 15000.00, 'Chennai', '1', '3 years 3 months', ' Process ramp down', 1, '2025-11-05 05:09:26', 0, NULL, 0, NULL, 1),
(10984, 27365, 'Tamil Matrimony private limited.com', 'Senior sarvice executive ', '2024-02-23', 12000.00, '2025-07-16', 15000.00, 'Guindy ', '1', '1 years 4 months', ' Financial issue ', 1, '2025-11-05 05:51:16', 0, NULL, 0, NULL, 1),
(10985, 27366, 'Matrimony.com', 'Senior service executive ', '2024-02-23', 12000.00, '2025-09-17', 15000.00, 'Guindy ', '1', '1 years 6 months', ' Financial problem and update my skills', 1, '2025-11-05 05:51:24', 0, NULL, 0, NULL, 1),
(10986, 27374, 'Atwias info solutions ', 'Full stack developer ', '2025-02-19', 30000.00, '2025-09-30', 350000.00, 'Teynampet ', '1', '0 years 7 months', ' My last company for digital marketing company last 3 months no projects ', 1, '2025-11-05 09:52:14', 0, NULL, 0, NULL, 1),
(10987, 27374, 'Fayn global ', 'Full stack developer ', '2024-02-26', 12000.00, '2025-02-18', 12000.00, 'Chennai', '1', '0 years 11 months', 'Move next level ', 1, '2025-11-05 09:53:31', 0, NULL, 0, NULL, 1),
(10988, 27369, 'bornwhiz technologies llp', 'associate full stack developer', '2024-09-16', 7100.00, '1970-01-01', 10100.00, 'chidambaram', '2', '1 years 1 months', ' I’m looking for a role where I can keep learning new things, improve my skills, and take on more challenges.', 1, '2025-11-06 03:01:31', 1, '2025-11-06 03:02:53', 0, NULL, 1),
(10989, 27384, 'Senthooran Nidhi Limited', 'Senior sales executive ', '2024-07-01', 8000.00, '2025-07-31', 15000.00, 'Mannargudi', '1', '1 years 0 months', ' Personal Reason ', 1, '2025-11-06 02:04:12', 0, NULL, 0, NULL, 1),
(10990, 27385, 'HDFC ergo ', 'Relationship manager ', '2022-02-01', 10000.00, '2023-11-06', 20000.00, 'Chennai ', '1', '1 years 9 months', ' Went native ', 1, '2025-11-06 02:49:25', 0, NULL, 0, NULL, 1),
(10991, 27391, 'Calibehr business support pvt ltd ', 'Team leader ', '2019-06-05', 12000.00, '2023-02-05', 23000.00, 'Chennai ', '1', '3 years 8 months', ' For marriage ', 1, '2025-11-10 05:53:53', 0, NULL, 0, NULL, 1),
(10992, 27393, 'Keerthana.s', 'Telecaling', '2023-06-21', 12.00, '2025-11-10', 12.00, 'Cuddaloure', '1', '2 years 4 months', ' ', 1, '2025-11-10 06:45:09', 0, NULL, 0, NULL, 1),
(10993, 27388, 'uber9 business process solution pvt ', 'atl', '2023-10-16', 2022.00, '2025-12-27', 33041.00, 'ambattur ', '1', '2 years 2 months', ' I decided to move on from my previous role because I was looking for better career growth and learning opportunities in sales. I felt it was the right time to take the next step and work in an environment where I can contribute more and develop further.', 1, '2025-11-10 09:02:02', 0, NULL, 0, NULL, 1),
(10994, 27398, 'DWM insurance and financial consultant for Pvt Ltd', 'Relationship manager ', '2022-09-25', 13.00, '2024-01-14', 20.00, 'Ashok pillar ', '1', '1 years 3 months', 'I got experience in insurance field I go another job I got  hike income ', 1, '2025-11-11 04:35:19', 0, NULL, 0, NULL, 1),
(10995, 27398, 'Eskertech solution Pvt Ltd ', 'Relationship ', '2024-04-11', 15.00, '2025-06-10', 20.00, 'Teynampet ', '1', '1 years 7 months', 'I got more experience in insurance filed so I go another job means I get hike income ', 1, '2025-11-11 04:38:32', 0, NULL, 0, NULL, 1),
(10996, 27399, 'matrimony.com', 'telesales ', '2024-01-24', 12000.00, '2024-06-17', 12000.00, 'chennai', '1', '0 years 4 months', ' Health issues', 1, '2025-11-11 05:20:04', 154, '2025-11-11 11:03:25', 0, NULL, 1),
(10997, 27399, 'riemen solutions', 'customer support ', '2025-02-16', 9500.00, '2025-05-13', 9500.00, 'thanjavur', '1', '0 years 2 months', 'That comp didn rene thei project ', 1, '2025-11-11 05:25:25', 0, NULL, 0, NULL, 1),
(10998, 27400, 'Vizza insurance services ', 'Telecaller ', '2025-09-15', 5000.00, '2025-11-10', 13000.00, 'Teynampet ', '2', '0 years 1 months', 'Timing and salary problem. ', 1, '2025-11-11 05:55:01', 0, NULL, 0, NULL, 1),
(10999, 27403, 'Bharthi airtel private limited ', 'Sales advisor ', '2025-01-11', 23000.00, '2025-09-12', 23000.00, 'Pattinapakkam ', '1', '0 years 8 months', 'Shifting the company for other roll ', 1, '2025-11-11 07:41:07', 0, NULL, 0, NULL, 1),
(11000, 27407, 'Bsnl hdfc personal loan ', 'Telecaller ', '2025-01-15', 18000.00, '2025-09-08', 18000.00, 'Amjikarai', '1', '0 years 7 months', 'Low salary ', 1, '2025-11-12 07:34:50', 0, NULL, 0, NULL, 1),
(11001, 27408, 'Tech Mahindra', 'Customer Support', '2024-06-12', 17967.00, '2025-07-31', 18000.00, 'Mount Road', '1', '1 years 1 months', ' My Previous Company Location Is Egmore After 1 Year Change To Ambattur and Perungalathur My House AreaTriplicane To That Location Long Distance That was I Am Relieved', 1, '2025-11-12 09:14:54', 0, NULL, 0, NULL, 1),
(11002, 27410, 'Thamizhaga Internet communication pvt ltd ', 'Customer relationship & backend process', '2022-05-12', 12500.00, '2025-11-20', 20000.00, 'Egmore', '1', '3 years 6 months', ' ', 1, '2025-11-13 05:16:52', 1, '2025-11-13 05:18:29', 0, NULL, 0),
(11003, 27410, 'Thamizhaga Internet communication pvt ltd ', 'Customer relationship & Backend process ', '2022-05-12', 12500.00, '1970-01-01', 20000.00, 'Egmore ', '2', '3 years 6 months', 'to pursue a new opportunity that aligns with my long term career goals', 1, '2025-11-13 05:19:56', 0, NULL, 0, NULL, 1),
(11004, 27411, 'hdb finance ', 'sales Officer ', '2024-06-16', 17000.00, '2025-09-01', 17000.00, 'moolakkadai', '1', '1 years 2 months', 'Collection Pressure ', 1, '2025-11-13 06:28:27', 0, NULL, 0, NULL, 1),
(11005, 27412, 'Adithya Birla Sun Life insurance ', 'Relationship exicutive ', '2025-01-15', 350000.00, '2025-07-22', 350000.00, 'Vijaynagar banglore ', '1', '0 years 6 months', ' ', 1, '2025-11-13 06:32:15', 0, NULL, 0, NULL, 1),
(11006, 27413, 'equitas bank', 'vrm', '2024-09-10', 3.60, '2024-10-14', 3.70, 'mount road', '1', '0 years 1 months', ' Dad health issues ', 1, '2025-11-13 06:46:26', 0, NULL, 0, NULL, 1),
(11007, 27417, 'Hdfc Bank Ltd ', 'Customer care executive/Teller', '2024-12-09', 25200.00, '2025-03-20', 25200.00, 'Chennai', '1', '0 years 3 months', ' Health reason ', 1, '2025-11-13 01:30:43', 0, NULL, 0, NULL, 1),
(11008, 27417, 'South Indian Cine &TV Drivers Association affiliat', 'Executive Assistant ', '2021-08-10', 20000.00, '2024-10-30', 20000.00, 'Vadapalani, Chennai ', '1', '3 years 2 months', 'For career growth', 1, '2025-11-13 01:33:59', 0, NULL, 0, NULL, 1),
(11009, 27414, 'HRH NEXT', 'Coimbatore', '2024-08-15', 15000.00, '2025-10-20', 15000.00, 'Coimbatore', '1', '1 years 2 months', ' ', 1, '2025-11-14 05:08:21', 0, NULL, 0, NULL, 1),
(11010, 27423, 'Club mahindra', 'Telemarketing', '2025-06-02', 25000.00, '2025-09-17', 25000.00, 'Mg road', '1', '0 years 3 months', ' ', 1, '2025-11-14 05:51:03', 0, NULL, 0, NULL, 1),
(11011, 27427, 'Tvs emerald ', 'Presales - Executive ', '2025-07-10', 31000.00, '2025-10-31', 31000.00, 'Nungambakkam ', '1', '0 years 3 months', ' ', 1, '2025-11-14 06:41:15', 0, NULL, 0, NULL, 1),
(11012, 27427, 'Angling aqua marine pvt ltd', 'BDE', '2024-01-11', 24000.00, '2025-02-28', 25000.00, 'Velachery', '1', '1 years 1 months', 'Company closed', 1, '2025-11-14 06:42:39', 0, NULL, 0, NULL, 1),
(11013, 27427, 'LVR automobile distributor ', 'Assit account & admin staff', '2022-07-01', 18000.00, '2023-07-31', 2000.00, 'Mount Road ', '1', '1 years 0 months', 'It\'s a wholesaler shop so I want to move corporate work nature and their is no higher position ', 1, '2025-11-14 06:46:09', 0, NULL, 0, NULL, 1),
(11014, 27430, 'Reema afrin', 'Voice process ', '2025-08-01', 15000.00, '2025-10-31', 15000.00, 'Chennai ', '1', '0 years 2 months', 'Hostel food is not suitable for my health ', 1, '2025-11-14 10:31:04', 0, NULL, 0, NULL, 1),
(11015, 27428, 'Pace setters', 'Telecaller ', '2025-03-05', 17500.00, '2025-10-10', 17500.00, 'Chennai', '1', '0 years 7 months', ' ', 1, '2025-11-15 04:33:04', 0, NULL, 0, NULL, 1),
(11016, 27436, 'Cognizant ', 'Senior Executive ', '2022-06-21', 200000.00, '2024-11-28', 300000.00, 'Noida ', '1', '2 years 5 months', ' For Take care of my mother ', 1, '2025-11-15 05:29:48', 0, NULL, 0, NULL, 1),
(11017, 27438, 'Mphasis Limited ', 'Senior transaction processing officer ', '2021-02-15', 12000.00, '2025-10-30', 30343.00, 'Bangalore ', '1', '4 years 8 months', ' Looking for New opportunity ', 1, '2025-11-15 05:51:44', 0, NULL, 0, NULL, 1),
(11018, 27437, 'JUSTDIAL', 'Tele Marketing Executive', '2025-06-02', 20837.00, '2025-11-03', 20837.00, 'Cunningham Road ', '1', '0 years 5 months', ' Family Issues', 1, '2025-11-15 06:23:10', 0, NULL, 0, NULL, 1),
(11019, 27439, 'Tata Consultancy Service ', 'Information Process Enabler ', '2023-09-22', 1.00, '2025-10-10', 230000.00, 'Chennai ', '1', '2 years 0 months', ' Process Ramdown ', 1, '2025-11-15 06:50:07', 0, NULL, 0, NULL, 1),
(11020, 27440, 'Sms', 'Tele Caller ', '2021-12-10', 18000.00, '2023-05-30', 18500.00, 'Arumbakkam ', '1', '1 years 5 months', ' ', 1, '2025-11-15 11:11:31', 0, NULL, 0, NULL, 1),
(11021, 27440, 'Olympia cyber space ', 'Customer support ', '2025-05-07', 21000.00, '2025-11-30', 21500.00, 'Guindy ', '1', '0 years 6 months', 'Long distance ', 1, '2025-11-15 11:13:16', 0, NULL, 0, NULL, 1),
(11022, 27443, 'Foxcon quality testing ', 'Sirperabathur', '2022-08-22', 15000.00, '2025-04-30', 15000.00, 'Chennai ', '1', '2 years 8 months', ' Personal issues ', 1, '2025-11-17 04:39:36', 0, NULL, 0, NULL, 1),
(11023, 27445, 'Annai distribution agency', 'Cosmetics sales & telecaller executive ', '2022-02-16', 16000.00, '2025-10-18', 24000.00, 'Chennai', '1', '3 years 8 months', ' I like to work with reputed company with PF. ', 1, '2025-11-17 06:15:38', 0, NULL, 0, NULL, 1),
(11024, 27441, 'Bankbazaar ', 'Senior customer relationship officer ', '2022-11-17', 20000.00, '2025-01-25', 300000.00, 'Chennai ', '1', '2 years 2 months', ' ', 1, '2025-11-17 09:22:42', 1, '2025-11-17 09:24:28', 0, NULL, 0),
(11025, 27441, 'Bankbazaar ', 'Senior customer relationship officer ', '2022-12-11', 20000.00, '2025-01-25', 300000.00, 'Chennai', '1', '2 years 1 months', 'Because of major medical issues in my family so I was forced to quit the job', 1, '2025-11-17 09:24:18', 0, NULL, 0, NULL, 1),
(11026, 26421, 'Unique investment ', 'Executive ', '2025-07-18', 15000.00, '2025-11-14', 15000.00, 'Bengaluru ', '1', '0 years 3 months', ' ', 1, '2025-11-18 03:04:47', 0, NULL, 0, NULL, 1),
(11027, 27457, 'Sagility pvt ltd ', 'Trainee Process consultant ', '2024-07-24', 16500.00, '2025-08-13', 18000.00, 'Bengaluru ', '1', '1 years 0 months', ' For better prospects', 1, '2025-11-18 07:53:46', 0, NULL, 0, NULL, 1),
(11028, 27456, 'Sagility Private limited Bangalore ', 'Trainee process consultant ', '2024-06-13', 16500.00, '2025-07-13', 18000.00, 'Bangalore ', '1', '1 years 1 months', ' For better Prospects ', 1, '2025-11-18 07:53:46', 0, NULL, 0, NULL, 1),
(11029, 27459, 'Kevell corp-', 'Business development executive ', '2024-08-05', 12.00, '2025-08-22', 15000.00, 'Madurai ', '1', '1 years 0 months', ' Salary issues ', 1, '2025-11-19 04:05:40', 0, NULL, 0, NULL, 1),
(11030, 27462, 'Alldigi Technologies ', 'Customer Care Executive ', '2023-04-03', 15000.00, '2025-06-30', 19000.00, 'Chennai', '1', '2 years 2 months', 'Personal Reasons', 1, '2025-11-19 05:44:39', 0, NULL, 0, NULL, 1),
(11031, 27463, 'Indusland Bank ', 'Acquisition manager ', '2024-07-15', 18000.00, '1970-01-01', 19500.00, 'H a L old airpot road', '2', '1 years 4 months', ' Moving to another place ', 1, '2025-11-19 06:15:26', 0, NULL, 0, NULL, 1),
(11032, 27466, 'ALLSET BUSINESS SOLUTION ', 'TELECALLER', '2025-01-20', 17000.00, '2025-08-31', 17000.00, 'Thousand light ', '1', '0 years 7 months', ' Medical issue', 1, '2025-11-20 05:49:48', 0, NULL, 0, NULL, 1),
(11033, 27467, 'Christina A ', 'TELECALLER', '2025-01-06', 17000.00, '2025-07-21', 17000.00, 'Spencer plaza ', '1', '0 years 6 months', ' Timing issue', 1, '2025-11-20 05:52:43', 0, NULL, 0, NULL, 1),
(11034, 27469, 'Gretivents ', 'Digital Marketing ', '2024-12-02', 25000.00, '2025-10-31', 25000.00, 'Pudukkottai ', '1', '0 years 10 months', ' Career growth ', 1, '2025-11-20 09:16:35', 0, NULL, 0, NULL, 1),
(11035, 26365, 'HDFC life banca', 'Corporate agency manager ', '2024-07-25', 3.75, '2024-10-25', 3.75, 'Porur', '1', '0 years 3 months', ' Mother illness required to take care.', 1, '2025-11-22 04:33:59', 0, NULL, 0, NULL, 1),
(11036, 27478, 'Bankbazaar ', 'Senior relationship officer ', '2023-09-19', 1.00, '2025-10-07', 22000.00, 'Chennai', '1', '2 years 0 months', ' ', 1, '2025-11-22 06:23:26', 0, NULL, 0, NULL, 1),
(11037, 27477, 'Slam ', 'Sale ', '2025-01-30', 7.00, '2025-09-30', 23500.00, 'Vepery', '1', '0 years 8 months', ' Health issues ', 1, '2025-11-24 08:00:26', 0, NULL, 0, NULL, 1),
(11038, 27491, 'Thinksynq solution Pvt Ltd ', 'Customer support executive ', '2023-06-10', 9500.00, '1970-01-01', 10500.00, 'Ekkattuthangal, chennai ', '2', '2 years 5 months', ' Carrier growth and knowledge ', 1, '2025-11-24 04:44:24', 0, NULL, 0, NULL, 1),
(11039, 27492, 'Indefinite technology', 'Tl', '2025-05-05', 25000.00, '1970-01-01', 25000.00, 'Anna nagar ', '2', '0 years 6 months', ' “I was not able to learn effectively in that company, but I am confident that I will grow wherever I work', 1, '2025-11-25 05:19:12', 0, NULL, 0, NULL, 1),
(11040, 27487, 'HDB Financial', 'SALES OFFICER', '2024-09-26', 15000.00, '2025-11-13', 15000.00, 'Thanjavur ', '1', '1 years 1 months', ' Personal Reasons ', 1, '2025-11-25 06:28:46', 154, '2025-11-25 12:01:20', 0, NULL, 1),
(11041, 27495, 'Matrimony.com', 'Inbound voice process ', '2023-12-16', 31.00, '2025-07-31', 21.00, 'Chennai , guindy', '1', '1 years 7 months', ' career advancement, better compensation, seeking new challenges, and improved work-life balance', 1, '2025-11-25 07:21:25', 0, NULL, 0, NULL, 1),
(11042, 27501, 'idfc first bank', 'mambalam', '2025-08-01', 20000.00, '1970-01-01', 20000.00, 'mambalam', '2', '0 years 3 months', 'Personal  issue', 1, '2025-11-26 07:27:19', 0, NULL, 0, NULL, 1),
(11043, 27509, 'Stats perform', 'Data collection analyst', '2024-01-17', 31.00, '2025-11-26', 22000.00, 'Thousand lights', '1', '1 years 10 months', ' Regular night ', 1, '2025-11-27 10:01:04', 0, NULL, 0, NULL, 1),
(11044, 27512, 'Vizza Insurance Broking services private limited ', 'Telecaller', '2024-11-04', 13000.00, '2025-09-08', 13000.00, 'Chennai', '1', '0 years 10 months', ' Medical ', 1, '2025-11-28 05:04:11', 0, NULL, 0, NULL, 1),
(11045, 27513, 'AJ JEWELLERS ', 'Production department ', '2024-06-01', 19000.00, '2025-10-31', 21000.00, 'Bells road pycrafts road Triplicane ', '1', '1 years 4 months', 'For time problem ', 1, '2025-11-28 05:41:38', 0, NULL, 0, NULL, 1),
(11046, 27524, 'redbus pvt ltd', 'customer support exective', '2022-12-01', 22300.00, '2024-08-20', 27800.00, 'Bangalore ka', '1', '1 years 8 months', ' Worked for an consulting process Got closed ', 1, '2025-11-29 08:21:25', 1, '2025-11-29 08:22:07', 0, NULL, 1),
(11047, 27524, 'bimal auto agency ', 'insurance customer support and sales ', '2019-08-14', 12000.00, '2022-03-01', 15000.00, 'Bangalore ka', '1', '2 years 6 months', 'Due to salary issues and for career Growth ', 1, '2025-11-29 08:25:29', 0, NULL, 0, NULL, 1),
(11048, 27524, 'finnovation tech pvt ltd kreditbee ', 'customer support voice ', '2022-03-09', 21000.00, '2022-11-30', 22000.00, 'Bangalore ka', '1', '0 years 8 months', 'Got an opportunity for work from home and for salary increments ', 1, '2025-11-29 08:28:33', 0, NULL, 0, NULL, 1),
(11049, 27524, 'khiviraj bajaj pvt ltd ', 'billing and senior sales consultant ', '2025-03-14', 27000.00, '2025-09-30', 27000.00, 'kolar', '1', '0 years 6 months', 'Salary  and incentive issue ', 1, '2025-11-29 08:32:35', 0, NULL, 0, NULL, 1),
(11050, 27528, 'Vizza insurance brokarege service Pvt Ltd ', 'Centre head ', '2023-04-01', 35.00, '2025-09-03', 50.00, 'Shanthi Nagar ', '1', '2 years 5 months', ' Branch was closed ', 1, '2025-12-01 05:45:41', 0, NULL, 0, NULL, 1),
(11051, 27529, 'Vizza insurance brokers Pvt Ltd ', 'Tl', '2023-03-15', 15.00, '2025-09-03', 19.00, 'Shanthi Nagar ', '1', '2 years 5 months', ' Branch close', 1, '2025-12-01 06:02:22', 0, NULL, 0, NULL, 1),
(11052, 27532, 'Tamil matrimony,pease setter,Edufin', 'Customer support executive ', '2024-06-13', 31.00, '2025-11-18', 17.00, 'Guindy, Nungambakkam ', '1', '1 years 5 months', ' Salary issue ', 1, '2025-12-01 08:18:23', 0, NULL, 0, NULL, 1),
(11053, 27535, 'Tele performance ', 'Customer service Associate ', '2023-11-16', 18008.00, '2025-03-01', 18800.00, 'Chennai ', '1', '1 years 3 months', ' Rotational shift and rotational week off ', 1, '2025-12-01 01:11:12', 0, NULL, 0, NULL, 1),
(11054, 27535, 'Computer Age Management Service pvt Ltd ', 'Senior Executive ', '2025-04-21', 19000.00, '2025-10-31', 19000.00, 'Chennai ', '1', '0 years 6 months', 'Due to personal reason', 1, '2025-12-01 01:13:31', 0, NULL, 0, NULL, 1),
(11055, 27540, 'Justdial ', 'Sales marketing ', '2023-05-15', 2.40, '2025-05-16', 2.40, 'Cubbon park ', '1', '2 years 0 months', ' ', 1, '2025-12-02 05:40:04', 0, NULL, 0, NULL, 1),
(11056, 27541, 'go fashion pvt ltd', 'senior customer executive', '2022-01-03', 13500.00, '2025-02-28', 19000.00, 'nungambakkam', '1', '3 years 1 months', ' Marriage purpose', 1, '2025-12-02 06:12:14', 1, '2025-12-02 06:18:23', 0, NULL, 1),
(11057, 27541, 'go fashion pvt ltd', 'senior customer executive', '2022-01-03', 13500.00, '2025-02-28', 19000.00, 'nungambakkam', '1', '3 years 1 months', ' ', 1, '2025-12-02 06:17:58', 0, NULL, 0, NULL, 1),
(11058, 27545, 'Fusion cx', 'Customer service executive ', '2024-04-01', 13500.00, '2025-02-05', 14000.00, 'Chennai', '1', '0 years 10 months', ' ', 1, '2025-12-02 07:02:07', 0, NULL, 0, NULL, 1),
(11059, 27546, 'Fusion cx', 'Customer service executive ', '2024-04-01', 13500.00, '2025-02-05', 15000.00, 'Chennai ', '1', '0 years 10 months', ' ', 1, '2025-12-02 07:09:06', 0, NULL, 0, NULL, 1),
(11060, 27547, 'Hdfc bank&dft international institute ', 'Chennai ', '2022-05-01', 14000.00, '2025-12-05', 18000.00, 'St.Thomas Mount& saidapet ', '1', '3 years 7 months', ' They change the place of institute ', 1, '2025-12-02 09:28:10', 0, NULL, 0, NULL, 1),
(11061, 27554, 'Crystal homes ', 'Telecalling and sales executive ', '2024-06-06', 17000.00, '2025-05-31', 20000.00, 'Chennai ', '1', '0 years 11 months', ' Native place thanjavur so i am working thanjavur i decide it', 1, '2025-12-03 04:53:00', 0, NULL, 0, NULL, 1),
(11062, 27554, 'Crystal homes ', 'Telecalling and sales executive ', '2024-06-06', 17000.00, '2025-05-31', 20000.00, 'Chennai ', '1', '0 years 11 months', 'I working interest for thanjavur', 1, '2025-12-03 04:54:20', 0, NULL, 0, NULL, 1),
(11063, 27551, 'noble hospital', 'account executive', '2025-01-03', 16000.00, '2025-08-12', 16000.00, 'chennai', '1', '0 years 7 months', ' In my past company they is a low career growth That’s why develop my skill in next level', 1, '2025-12-03 05:43:07', 0, NULL, 0, NULL, 1),
(11064, 27558, 'Cognizant Technology Solutions ', 'Process Exicutive ', '2024-07-16', 2.80, '2025-11-14', 3.50, 'Hebbal', '1', '1 years 3 months', ' The shift timing wasn’t suitable for me in the long run, so I decided to look for a role with a more suitable schedule.', 1, '2025-12-03 05:44:37', 0, NULL, 0, NULL, 1),
(11065, 27562, 'Concentrix ', 'Operation executive ', '2023-08-22', 1.00, '2024-11-27', 22000.00, 'Chennai', '1', '1 years 3 months', ' Personal ', 1, '2025-12-03 06:01:55', 0, NULL, 0, NULL, 1),
(11066, 27564, 'Omega healthcare', 'AR process Associate ', '2022-09-02', 16000.00, '2024-05-03', 18500.00, 'Taramani', '1', '1 years 8 months', ' Health issue', 1, '2025-12-03 06:12:31', 0, NULL, 0, NULL, 1),
(11067, 27564, 'Star health insurance ', 'Tso', '2025-01-16', 18500.00, '2025-08-10', 18500.00, 'Vadapalani ', '1', '0 years 6 months', 'Met with an accident', 1, '2025-12-03 06:13:38', 0, NULL, 0, NULL, 1),
(11068, 27570, 'aarthi scans and labs', 'telecaller', '2024-11-01', 14600.00, '1970-01-01', 16000.00, 'vadapalani', '2', '1 years 1 months', ' Expected good sala ', 1, '2025-12-03 12:52:48', 0, NULL, 0, NULL, 1),
(11069, 27579, 'aarthi scans and labs', 'telecalling executive', '2024-06-27', 15000.00, '1970-01-01', 16000.00, 'vadapalani', '2', '1 years 5 months', ' Expecting good salary', 1, '2025-12-04 04:56:07', 0, NULL, 0, NULL, 1),
(11070, 27583, 'Iris homes', 'Manager', '2025-01-07', 12000.00, '2025-10-31', 15000.00, 'Thanjavur', '1', '0 years 9 months', ' Project is over', 1, '2025-12-04 05:19:39', 0, NULL, 0, NULL, 1),
(11071, 27581, 'Madras veterinary College, TANUVAS', 'Project skilled assistant ', '2023-04-06', 12240.00, '2024-09-16', 12240.00, 'Chennai', '1', '1 years 5 months', ' Completion of project and planning to move to the next step in career', 1, '2025-12-04 05:32:04', 1, '2025-12-04 05:35:30', 0, NULL, 0),
(11072, 27581, 'Madras veterinary College, TANUVAS ', 'Project skilled assistant ', '2023-02-06', 12240.00, '2024-09-16', 12240.00, 'Chennai', '1', '1 years 7 months', 'Completion of project and planning to move to the next step in career ', 1, '2025-12-04 05:34:37', 0, NULL, 0, NULL, 1),
(11073, 27584, 'Aionion insurance marketing private limited ', 'Team leader', '2023-12-22', 350000.00, '2025-11-25', 550000.00, 'Chennai ', '1', '1 years 11 months', 'Relieved from duties following resignation to pursue better growth opportunities.', 1, '2025-12-04 05:36:53', 0, NULL, 0, NULL, 1),
(11074, 27585, 'Muthoot Finance ', 'Junior relationship management ', '2024-10-14', 18000.00, '2025-11-20', 20000.00, 'Cuddalore ', '1', '1 years 1 months', ' Personal ', 1, '2025-12-04 06:18:37', 0, NULL, 0, NULL, 1),
(11075, 27575, 'Conneqt Business Solutions and Star health insuran', 'Customer care ', '2025-03-03', 18500.00, '2025-07-02', 21000.00, 'Chennai ', '1', '0 years 3 months', ' Time and leave', 1, '2025-12-04 06:21:45', 0, NULL, 0, NULL, 1),
(11076, 27586, 'HDFC ergo', 'Senior executive', '2024-12-16', 23000.00, '2025-02-13', 23000.00, 'Chennai', '1', '0 years 1 months', ' I get offer from Accenture', 1, '2025-12-04 06:23:06', 0, NULL, 0, NULL, 1),
(11077, 27589, 'Pace sector', 'Telecalling', '2025-03-08', 14000.00, '2025-11-16', 14000.00, 'Nungampakkam', '1', '0 years 8 months', ' Health issues', 1, '2025-12-04 07:17:20', 0, NULL, 0, NULL, 1),
(11078, 27594, 'ABT Maruti Suzuki ', 'Accounts executive ', '2024-01-01', 16000.00, '2025-06-21', 17500.00, 'Nandanam,  Chennai ', '1', '1 years 5 months', ' Personal Issues ', 1, '2025-12-04 01:42:30', 0, NULL, 0, NULL, 1),
(11079, 27598, 'Sudarsham Associates ', 'Chennai', '2025-06-07', 20000.00, '2025-11-30', 22000.00, 'Mount road', '1', '0 years 5 months', ' Process be closed ', 1, '2025-12-05 05:44:58', 0, NULL, 0, NULL, 1),
(11080, 27597, 'Sudharsanam & accociates ', 'Tele caller ', '2022-04-25', 12000.00, '2025-09-30', 18000.00, 'Chennai ', '1', '3 years 5 months', ' Process shift to Hand office Mumbai ', 1, '2025-12-05 05:44:59', 0, NULL, 0, NULL, 1),
(11081, 27596, 'Chrysalis home needs pvt.ltd', 'Customer relationship manager ', '2024-06-24', 20000.00, '2025-10-24', 20000.00, 'Siruseri ', '1', '1 years 4 months', ' Health issues ', 1, '2025-12-05 05:59:40', 0, NULL, 0, NULL, 1),
(11082, 27602, 'Stematic equipment companie ', 'Accountant ', '2023-10-03', 12000.00, '2025-12-31', 15500.00, 'Chennai ', '1', '2 years 2 months', 'I have to get growth my knowledge ', 1, '2025-12-05 02:08:29', 0, NULL, 0, NULL, 1),
(11083, 27603, 'Mediassist TPA Private limited for CMCHIS', 'Insurance coordinator ', '2019-12-06', 12000.00, '2023-12-30', 15000.00, 'Thanjavur ', '1', '4 years 0 months', ' Personal issues ', 1, '2025-12-06 04:32:19', 1, '2025-12-06 04:32:49', 0, NULL, 1),
(11084, 27610, 'Florance shoe company ', 'Junior accountant ', '2025-01-03', 150000.00, '2025-07-19', 150000.00, 'Egmore', '1', '0 years 6 months', ' Due to my mother have fire injury So I take care of him ', 1, '2025-12-06 01:16:49', 0, NULL, 0, NULL, 1),
(11085, 27621, 'Writer Business services pvt ltd ', 'Team leader ', '2024-12-30', 21.00, '2025-07-01', 25000.00, 'Nandhanam ', '1', '0 years 6 months', ' Process shutdown ', 1, '2025-12-08 06:09:50', 0, NULL, 0, NULL, 1),
(11086, 27622, 'CAMS ', 'Lead Specialist ', '2025-01-09', 31857.00, '2025-05-02', 31857.00, 'Chennai', '1', '0 years 3 months', ' Due to Mother health issue ', 1, '2025-12-08 06:42:38', 0, NULL, 0, NULL, 1),
(11087, 27625, 'Fast forward logistics', 'Customer care executive ', '2022-02-01', 17000.00, '2023-02-02', 17000.00, 'Kodambakkam', '1', '1 years 0 months', ' I got married  and I have a kid', 1, '2025-12-08 06:49:07', 0, NULL, 0, NULL, 1),
(11088, 27626, '1 point 1 solution', 'Cre', '2023-12-03', 23000.00, '2025-09-01', 24000.00, 'Kudlu gate', '1', '1 years 8 months', ' Career gowth', 1, '2025-12-08 08:46:29', 0, NULL, 0, NULL, 1),
(11089, 27629, 'vizza indurance', 'operations ', '2025-03-01', 20000.00, '1970-01-01', 20000.00, 'teynampet', '2', '0 years 9 months', ' ', 1, '2025-12-08 11:15:48', 0, NULL, 0, NULL, 1),
(11090, 27630, 'Imarque solution', 'Customer support executive', '2024-09-10', 16.00, '2025-04-08', 16.00, 'Chennai', '1', '0 years 6 months', ' Process wrapped ', 1, '2025-12-08 04:01:37', 0, NULL, 0, NULL, 1),
(11091, 27633, 'P.ORR AND SONS PVT LTD', 'Accounts executive ', '2024-01-18', 13000.00, '1970-01-01', 14000.00, 'Chennai ', '2', '1 years 10 months', 'Salary', 1, '2025-12-09 05:10:33', 1, '2025-12-09 05:10:59', 0, NULL, 1),
(11092, 27635, 'Vizza insurance broking services pvt Ltd ', 'Tele caller ', '2023-07-17', 15.00, '2025-10-03', 20.00, 'Shanthi Nagar ', '1', '2 years 2 months', ' Branch closed ', 1, '2025-12-09 05:41:51', 0, NULL, 0, NULL, 1),
(11093, 27634, 'Vizza insurance pvt Ltd ', 'Tellecalling ', '2024-02-19', 15000.00, '2025-10-03', 18.00, 'Shanthinagar ', '1', '1 years 7 months', ' Branch closed ', 1, '2025-12-09 05:44:01', 0, NULL, 0, NULL, 1),
(11094, 27636, 'Vizza', 'Telecaler ', '2024-01-12', 18630.00, '2025-09-03', 200000.00, 'Shanthi nagar', '1', '1 years 7 months', ' Branch closed ', 1, '2025-12-09 06:07:36', 0, NULL, 0, NULL, 1),
(11095, 27631, 'Bank bazaar .com', 'Senior customer relationship officer grade 1 ', '2022-05-09', 15000.00, '2025-08-16', 21000.00, 'Ambattur ', '1', '3 years 3 months', ' Last one they can\'t provide ,the proper salary hike.', 1, '2025-12-09 06:29:21', 0, NULL, 0, NULL, 1),
(11096, 27641, 'Kap systems pvt ltd', 'Bde', '2018-05-10', 15000.00, '2019-08-30', 15000.00, 'Jayanagar', '1', '1 years 3 months', ' ', 1, '2025-12-09 07:04:52', 0, NULL, 0, NULL, 1),
(11097, 27642, 'Don Associates ', 'Junior Accountant ', '2024-07-01', 10000.00, '2025-06-30', 15000.00, 'Thirumangalam', '1', '0 years 11 months', ' Health issues ', 1, '2025-12-09 11:31:26', 0, NULL, 0, NULL, 1),
(11098, 27649, 'trdfin support service system', 'Recruitment Executive ', '2025-02-03', 18000.00, '2025-11-28', 18000.00, 'mylapore ', '1', '0 years 9 months', ' Company shifted to long so the compay itself layoff some candidayes', 1, '2025-12-10 06:14:45', 0, NULL, 0, NULL, 1),
(11099, 27654, 'Yes bank', 'Customer support executive ', '2025-04-01', 30.00, '1970-01-01', 18500.00, 'Chennai', '2', '0 years 8 months', ' Particular grow from ', 1, '2025-12-10 07:15:53', 0, NULL, 0, NULL, 1),
(11100, 27656, 'Qdegrees people process productivity ', 'Quality Analyst ', '2021-07-07', 25000.00, '2022-09-08', 30000.00, 'Jaipur ', '1', '1 years 2 months', ' Corona heavy time all employees are relieving company ', 1, '2025-12-10 08:11:50', 0, NULL, 0, NULL, 1),
(11101, 27656, 'Reliance RPM pvt Ltd ', 'Executive officer ', '2023-08-20', 30000.00, '2024-10-18', 35000.00, 'Saligramam', '1', '1 years 1 months', 'Not Gaving salary properly ', 1, '2025-12-10 08:15:37', 0, NULL, 0, NULL, 1),
(11102, 27657, 'Navarathina jewellery ', 'Telly calling, marketting, sales staff ', '2023-06-01', 15000.00, '2025-12-09', 15000.00, 'Cumbum', '1', '2 years 6 months', ' I grow my career ', 1, '2025-12-10 11:09:45', 0, NULL, 0, NULL, 1),
(11103, 27664, 'Ramanujam and boovaraham chartered accountants ', 'Audit analyst ', '2025-04-01', 16000.00, '1970-01-01', 16000.00, 'Spencer plaza ', '2', '0 years 8 months', ' Expecting to gain knowledge in accounts department and see the chalenges faced by an account executive ', 1, '2025-12-11 05:04:41', 0, NULL, 0, NULL, 1),
(11104, 27664, 'Ramachandran and murali chartered accountants ', 'Audit assistant ', '2023-12-01', 8000.00, '2025-02-28', 12000.00, 'Kodambakkam ', '1', '1 years 2 months', 'Expected for a salary hike ', 1, '2025-12-11 05:06:06', 0, NULL, 0, NULL, 1),
(11105, 27665, 'Insurance ', 'Insurance ', '2020-07-23', 13000.00, '1970-01-01', 18000.00, 'Thanjavur ', '2', '5 years 4 months', ' No reasone', 1, '2025-12-11 05:24:04', 0, NULL, 0, NULL, 1),
(11106, 27667, 'Jk Enterprises', 'Accountant ', '2024-03-01', 150000.00, '1970-01-01', 15000.00, 'Chennai', '2', '1 years 9 months', ' Long distance ', 1, '2025-12-11 06:06:50', 0, NULL, 0, NULL, 1),
(11107, 27668, 'team lease service limited', 'relationship officer', '2025-03-30', 24000.00, '2025-08-28', 24000.00, 'chennai', '1', '0 years 4 months', ' Sume persnal reasone', 1, '2025-12-11 06:07:16', 0, NULL, 0, NULL, 1),
(11108, 27667, 'Jk Enterprises', 'Accountant ', '2024-03-01', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '1 years 9 months', 'Distance ', 1, '2025-12-11 06:07:58', 0, NULL, 0, NULL, 1),
(11109, 27669, 'Hdbfs ', 'Telle caller ', '2024-04-15', 12000.00, '2025-11-06', 15000.00, 'Chennai ', '1', '1 years 6 months', ' Career growth ', 1, '2025-12-11 06:30:20', 0, NULL, 0, NULL, 1),
(11110, 27670, 'pantech solution', 'customer support', '2024-01-10', 21000.00, '2025-01-22', 20000.00, 'hen ', '1', '1 years 0 months', ' Searching for new one', 1, '2025-12-11 07:00:10', 0, NULL, 0, NULL, 1),
(11111, 27671, 'golden financial services', 'team leader', '2017-03-01', 15000.00, '2019-12-31', 22000.00, 'jayanagar', '1', '2 years 9 months', ' not providing salary on time', 1, '2025-12-11 07:15:56', 0, NULL, 0, NULL, 1),
(11112, 27671, 'bhoomi homez', 'team leader', '2020-01-31', 15000.00, '2020-12-31', 15000.00, 'jayanagar', '1', '0 years 11 months', 'no incetives', 1, '2025-12-11 07:17:38', 0, NULL, 0, NULL, 1),
(11113, 27671, 'career lease staffing solution ', ' hr admin', '2023-07-01', 25000.00, '2025-10-24', 30000.00, 'jayanagar', '1', '2 years 3 months', 'shift in office location ', 1, '2025-12-11 07:22:20', 0, NULL, 0, NULL, 1),
(11114, 27680, 'Lic of India ', 'Tellecaller ', '2022-12-20', 15000.00, '1970-01-01', 18000.00, 'Indira nagar', '2', '2 years 11 months', ' Office has been shifted to different place', 1, '2025-12-11 10:19:35', 0, NULL, 0, NULL, 1),
(11115, 27683, 'nexg space creators', 'operation executive ', '2025-07-01', 9942.00, '1970-01-01', 12329.00, 'chennai', '2', '0 years 5 months', ' ', 1, '2025-12-11 02:40:12', 0, NULL, 0, NULL, 1),
(11116, 27688, 'Proeza Corp Pvt Ltd ', 'Accounts Executive', '2023-10-09', 15000.00, '2025-12-04', 18000.00, 'Nungambakkam, Chennai ', '1', '2 years 1 months', ' ', 1, '2025-12-12 05:25:52', 0, NULL, 0, NULL, 1),
(11117, 27689, 'Thinksynq solution Pvt Ltd ', 'Customer support executive ', '2024-07-01', 15000.00, '2025-11-30', 15000.00, 'Ekkatuthangal', '1', '1 years 4 months', 'reason is that the salary in my previous role was quite low and wasn’t sufficient to support my family’s expenses. So I am looking for a role that offers better opportunities for learning, skill development, and financial growth', 1, '2025-12-12 05:38:26', 1, '2025-12-12 05:39:21', 0, NULL, 1),
(11118, 27691, 'quess winning together', 'filed sales executive ', '2024-05-12', 7.00, '2025-12-05', 27000.00, 'chennai ', '1', '1 years 6 months', ' not poveter petrol amount ', 1, '2025-12-12 06:22:39', 0, NULL, 0, NULL, 1),
(11119, 27682, 'Amethyst cafe private limited', 'Purchase executive', '2025-09-26', 18000.00, '2025-12-30', 18000.00, 'Chennai', '1', '0 years 3 months', ' I am accountant student our company is not intrst for our department', 1, '2025-12-12 09:04:36', 0, NULL, 0, NULL, 1),
(11120, 27698, 'Thinksynq solutions Pvt Ltd ', 'Customer support executive ', '2024-10-24', 14500.00, '2025-12-10', 15000.00, 'Chennai ', '1', '1 years 1 months', ' Improve my knowledge and salary', 1, '2025-12-12 09:51:47', 0, NULL, 0, NULL, 1),
(11121, 27704, 'Yesbank', 'Fraud analyst', '2024-02-19', 16000.00, '2025-10-02', 17000.00, 'Ambattur', '1', '1 years 7 months', ' Carrer growth', 1, '2025-12-12 10:37:12', 0, NULL, 0, NULL, 1),
(11122, 27706, 'Lumina dramatics', 'Web researcher ', '2023-03-03', 10000.00, '2025-12-03', 14000.00, 'Capital land , taramani', '1', '2 years 9 months', ' grow my career to next level', 1, '2025-12-12 12:50:19', 0, NULL, 0, NULL, 1),
(11123, 27708, 'Glens Innovation labs private limited ', 'Reporting executive ', '2024-12-12', 20000.00, '2025-07-15', 20000.00, 'Arumbakkam ', '1', '0 years 7 months', ' Health treatment ', 1, '2025-12-12 01:15:53', 0, NULL, 0, NULL, 1),
(11124, 27709, 'Safi steel traders private limited ', 'Accounts ', '2024-12-01', 13000.00, '2025-11-06', 15000.00, 'Rajapalayam', '1', '0 years 11 months', ' ', 1, '2025-12-12 01:16:58', 0, NULL, 0, NULL, 1),
(11125, 27710, 'SB homes ', 'Assistant accountant', '2025-03-01', 18000.00, '2025-09-30', 21000.00, 'Porur', '1', '0 years 6 months', ' Due to low man power ', 1, '2025-12-12 01:27:24', 0, NULL, 0, NULL, 1),
(11126, 27711, 'The Banyan ', 'Accountant ', '2024-10-01', 13393.00, '1970-01-01', 13393.00, 'Mogappair East', '2', '1 years 2 months', 'I’m seeking better learning opportunities and broader responsibilities.\n', 1, '2025-12-12 01:28:03', 0, NULL, 0, NULL, 1),
(11127, 27716, 'Thinksynq', 'Assistant manager', '2017-06-05', 16000.00, '2025-12-13', 30000.00, 'Chennai', '2', '8 years 6 months', ' To evolve and grow', 1, '2025-12-13 05:04:48', 0, NULL, 0, NULL, 1),
(11128, 27718, 'Justdial Pvt Ltd ', 'Tele Marketing Executive ', '2024-01-29', 2.40, '2025-03-10', 19000.00, 'Banglore ', '1', '1 years 1 months', ' ', 1, '2025-12-13 05:51:37', 0, NULL, 0, NULL, 1),
(11129, 27723, 'sutherland global service', 'customer support', '2023-07-12', 12.00, '2024-07-10', 18000.00, 'perungalathur', '1', '0 years 11 months', ' ', 1, '2025-12-15 05:28:55', 0, NULL, 0, NULL, 1),
(11130, 27727, 'FS insurance broking services pvt Ltd ', 'Senior financial services executive ', '2024-01-26', 14000.00, '1970-01-01', 16000.00, 'Nandhanam ', '2', '1 years 10 months', ' No growth ', 1, '2025-12-15 06:17:39', 0, NULL, 0, NULL, 1),
(11131, 27729, 'Reliance nippon life insurance company ', 'SENIOR relationship manager ', '2025-08-11', 20000.00, '2025-12-15', 20000.00, 'Guindy ', '1', '0 years 4 months', ' Personal reasons ', 1, '2025-12-15 06:36:21', 0, NULL, 0, NULL, 1),
(11132, 27735, 'Yes bank (plada Infotech services limited )', 'Virtual relationship manager ', '2024-08-30', 16.50, '2025-11-24', 17.50, 'Ambattur ', '1', '1 years 2 months', ' I was ready for new challenges that aligned more closely with my long-term career goals.\n', 1, '2025-12-15 12:29:11', 0, NULL, 0, NULL, 1),
(11133, 27736, 'HDB FINANCIAL SERVICES ', 'Sales Executive ', '2023-10-03', 12000.00, '2025-08-21', 15000.00, 'ADAMBAKKAM ', '1', '1 years 10 months', ' 12 Hours Work ', 1, '2025-12-15 01:11:49', 0, NULL, 0, NULL, 1),
(11134, 27736, 'INTEGRAL COACH FACTORY ', 'HELPER ', '2022-08-01', 15000.00, '2023-09-20', 17000.00, 'VILLIVAKKAM ', '1', '1 years 1 months', 'HEALTH ISSUES ', 1, '2025-12-15 01:14:02', 0, NULL, 0, NULL, 1),
(11135, 27737, 'Royal Enfield ', 'Accounting ', '2025-05-09', 10.00, '2025-12-05', 17000.00, 'Arumbakkam ', '1', '0 years 6 months', 'Salary and growth of my career opportunities.', 1, '2025-12-16 04:58:20', 0, NULL, 0, NULL, 1),
(11136, 27738, 'IDFC First Bank ', 'Employee ', '2023-12-27', 12000.00, '2025-06-11', 23000.00, 'Mount road ', '1', '1 years 5 months', 'There is huge of skills only I learn i want to improve my skills and knowledge and I want to build my career in sales environment.', 1, '2025-12-16 05:30:49', 0, NULL, 0, NULL, 1),
(11137, 27719, 'bank bazaar ', 'customer relationship officer', '2023-01-15', 15000.00, '2023-11-30', 22000.00, 'ambattur', '1', '0 years 10 months', ' need to change work ambiance Also for my feature growths ', 1, '2025-12-16 06:06:54', 0, NULL, 0, NULL, 1),
(11138, 27743, 'Inkrobe', 'Account executive', '2026-01-16', 1.00, '2027-05-13', 1300.00, 'Tambaram', '1', '1 years 3 months', ' ', 1, '2025-12-16 07:28:07', 0, NULL, 0, NULL, 1),
(11139, 27746, 'teamlease services limited', 'telecaller', '2025-03-12', 17500.00, '2025-07-10', 17500.00, 'nandanam', '1', '0 years 3 months', ' personal health issues ', 1, '2025-12-16 07:50:30', 0, NULL, 0, NULL, 1),
(11140, 27747, 'Iopex technologies ', 'Media analyst ', '2023-10-12', 12500.00, '2025-06-24', 16000.00, 'Chennai ', '1', '1 years 8 months', ' Because of countinues night shift got health issues ', 1, '2025-12-16 08:36:31', 0, NULL, 0, NULL, 1),
(11141, 27750, 'ab& partners', 'crm', '2024-05-01', 300000.00, '2025-09-30', 300000.00, 'chennai', '1', '1 years 4 months', ' Closing the depart of mine', 1, '2025-12-16 12:06:38', 0, NULL, 0, NULL, 1),
(11142, 27751, 'Phonepe ', 'Amnjikarai ', '2025-06-07', 260000.00, '2025-12-31', 20000.00, 'Amnjikarai ', '1', '0 years 6 months', ' Looking for career growth ', 1, '2025-12-16 12:47:45', 0, NULL, 0, NULL, 1),
(11143, 27739, 'Matrimony.com', 'Senior Relationship manager ', '2025-08-29', 1.00, '2025-12-16', 25000.00, 'Adyar ', '2', '0 years 3 months', ' I\'m not interested work ', 1, '2025-12-16 01:08:30', 0, NULL, 0, NULL, 1),
(11144, 27753, 'B Thulasiram & Co ', 'Article assistant ', '2023-02-22', 7000.00, '2024-10-31', 7500.00, 'Nungambakkam ', '1', '1 years 8 months', ' ', 1, '2025-12-16 03:33:11', 0, NULL, 0, NULL, 1),
(11145, 27753, 'Right stack Capital advisory private limited ', 'Staff accountant ', '2025-01-29', 10000.00, '2025-06-30', 10000.00, 'R.A. Puram', '1', '0 years 5 months', 'Due to my mother\'s illness ', 1, '2025-12-16 03:34:35', 0, NULL, 0, NULL, 1),
(11146, 27756, 'Bank Bazaar ', 'Senior relationship officer ', '2022-08-17', 16800.00, '2025-08-05', 25000.00, 'Ambuttur ', '1', '2 years 11 months', ' Dad passed away ', 1, '2025-12-17 05:49:33', 0, NULL, 0, NULL, 1),
(11147, 27758, 'Ienergizer ', 'Customer service ', '2025-04-26', 20000.00, '1970-01-01', 21100.00, 'Noida sector 59 up', '2', '0 years 7 months', ' ', 1, '2025-12-17 05:53:54', 0, NULL, 0, NULL, 1),
(11148, 27755, 'Vakilsearch', 'Sale Busines adviser', '2024-06-03', 19000.00, '2025-12-07', 240000.00, 'Ambutur', '1', '1 years 6 months', ' Looking forward to work with reputated company & growth in my career', 1, '2025-12-17 05:54:47', 0, NULL, 0, NULL, 1),
(11149, 27759, 'NA', 'NA', '2025-12-17', 100.00, '1970-01-01', 100.00, 'NA', '2', '0 years 0 months', 'NA', 1, '2025-12-17 06:35:37', 0, NULL, 0, NULL, 1),
(11150, 27760, 'Jain housing and construction ', 'Tele marketing ', '2025-06-02', 22.00, '2025-10-15', 20.00, 'Kodambakkam ', '1', '0 years 4 months', ' I decided to leave my previous job because the company required me to sign a 2-year bond with the same position and the same salary, which would limit my growth. I am looking for a role that offers better learning opportunities and career development.', 1, '2025-12-17 08:45:01', 0, NULL, 0, NULL, 1),
(11151, 27763, 'wipro ', 'associate', '2024-11-29', 17000.00, '2025-10-27', 17000.00, 'chennai', '1', '0 years 10 months', ' ', 1, '2025-12-17 10:44:24', 0, NULL, 0, NULL, 1),
(11152, 27766, 'Allsec technology pvt Ltd ', 'Customer care executive ', '2023-04-01', 17500.00, '2024-05-31', 18500.00, '1 year ', '1', '1 years 1 months', 'Emergency in native ', 1, '2025-12-17 12:57:46', 0, NULL, 0, NULL, 1),
(11153, 27772, 'Giri technology private limited Chennai', 'Frontend Developer ', '2024-07-01', 10000.00, '2025-07-01', 13000.00, 'Nungambakkam ', '1', '1 years 0 months', ' I have growth on my carrier so I Will choose that option ', 1, '2025-12-18 05:32:17', 0, NULL, 0, NULL, 1),
(11154, 27774, 'E2E Supply Chain solutions limited ', 'Sr. Accountant ', '2022-09-03', 12000.00, '2025-12-01', 19000.00, 'Chennai', '1', '3 years 2 months', 'More knowledge and growth in the accounting field and expecting salary high', 1, '2025-12-18 05:45:00', 0, NULL, 0, NULL, 1),
(11155, 27776, 'Land mark estates ', 'GM', '2024-02-14', 28000.00, '2025-11-11', 3.30, 'Banglore ', '1', '1 years 8 months', ' ', 1, '2025-12-18 06:09:31', 0, NULL, 0, NULL, 1),
(11156, 27778, 'Arihant electrical ', 'Accountant ', '2024-12-05', 15000.00, '2025-11-30', 17000.00, 'Broadway ', '1', '0 years 11 months', ' To upskill myself ', 1, '2025-12-18 07:30:20', 0, NULL, 0, NULL, 1),
(11157, 27783, 'muthoot fincrop ', 'executive ', '2024-03-05', 19000.00, '2026-02-16', 29500.00, 'spenzer plaza', '1', '1 years 11 months', ' To up myself', 1, '2025-12-18 03:23:12', 0, NULL, 0, NULL, 1),
(11158, 27767, 'Ss infotech ', 'Loan executive ', '2024-07-07', 170000.00, '2024-12-09', 16000.00, 'Lic', '1', '0 years 5 months', ' Health issue', 1, '2025-12-19 05:42:13', 0, NULL, 0, NULL, 1),
(11159, 27785, 'Adithya birla capital', 'vrm', '2025-01-30', 4.50, '2025-12-24', 3.20, 'chennai', '1', '0 years 10 months', 'My Career growth', 1, '2025-12-19 06:04:15', 0, NULL, 0, NULL, 1),
(11160, 27804, 'VELON TELEGROWTH', 'CUSTOMER RELATIONSHIP MANAGER', '2024-07-31', 15000.00, '2024-08-31', 15000.00, 'K.K.NAGAR , CHENNAI ', '1', '0 years 1 months', 'DUE TO NIGHT SHIFT  I CAN\'T ABLE TO WORK CONTINUESLY', 1, '2025-12-19 06:08:14', 0, NULL, 0, NULL, 1),
(11161, 27806, 'ramu&co', 'senior sales exe', '2020-01-06', 31800.00, '1970-01-01', 46100.00, 'alwarpet', '2', '5 years 11 months', ' Carrier Development ', 1, '2025-12-19 07:54:48', 0, NULL, 0, NULL, 1),
(11162, 27782, 'Use kiwi info labs', 'Voice call', '2023-05-16', 23000.00, '2025-05-13', 23000.00, 'Vadapalani ', '1', '1 years 11 months', 'Accident', 1, '2025-12-19 08:11:51', 0, NULL, 0, NULL, 1),
(11163, 27808, 'Dominos pizza', 'Guest delight Service ', '2022-12-22', 15000.00, '2025-09-17', 15000.00, 'Madhavaram ', '1', '2 years 8 months', ' I want to go appart from food so i resigned my job ', 1, '2025-12-19 09:16:19', 0, NULL, 0, NULL, 1),
(11164, 27811, 'Axis Bank ', 'Credit executive ', '2022-06-09', 12000.00, '2023-08-31', 12000.00, 'Chennai', '1', '1 years 2 months', ' Preparing for Government exam ', 1, '2025-12-19 10:08:37', 0, NULL, 0, NULL, 1),
(11165, 25183, 'Urbanrise properties ', 'Telecalling ', '2025-07-03', 18000.00, '2025-10-10', 18000.00, 'Guindy', '1', '0 years 3 months', ' ', 1, '2025-12-19 12:49:54', 0, NULL, 0, NULL, 1),
(11166, 27817, 'hdb financial services', 'senior sales officer', '2023-11-17', 12000.00, '2025-12-05', 15500.00, 'mannadi ', '1', '2 years 0 months', ' I am not intrested in field souring ', 1, '2025-12-20 05:34:38', 0, NULL, 0, NULL, 1),
(11167, 27818, 'Hdb financial services Pvt Ltd ', 'Senior sales officer ', '2023-11-21', 12000.00, '2024-10-25', 15000.00, 'Chennai ', '1', '0 years 11 months', ' Field sourcing ', 1, '2025-12-20 05:40:51', 0, NULL, 0, NULL, 1),
(11168, 27824, 'hvf', 'Apprenticeship ', '2023-06-05', 9000.00, '2024-06-05', 9000.00, 'avadi', '1', '1 years 0 months', ' ', 1, '2025-12-20 02:12:48', 0, NULL, 0, NULL, 1),
(11169, 27825, 'Straight circle ', 'Accounts executive ', '2025-01-01', 12000.00, '2026-01-17', 15000.00, 'Chennai', '1', '1 years 0 months', ' For carrer growth ', 1, '2025-12-20 02:35:26', 0, NULL, 0, NULL, 1),
(11170, 27830, 'Allset business solution ', 'Telecalling sales executive ', '2024-08-02', 21000.00, '2025-09-30', 21000.00, 'Chennai', '1', '1 years 1 months', ' Father  health issues and salary delay problem ', 1, '2025-12-22 06:09:10', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11171, 27834, 'bajaj finance ', 'relationship manager', '2024-05-21', 20000.00, '2025-10-28', 20000.00, 'chennai', '1', '1 years 5 months', ' They are changeing the role to field sales ', 1, '2025-12-22 06:40:45', 0, NULL, 0, NULL, 1),
(11172, 27833, 'Saranya', 'No', '2025-12-22', 18000.00, '2027-03-31', 20000.00, 'Chennai', '1', '1 years 3 months', ' job experience', 1, '2025-12-22 06:42:02', 0, NULL, 0, NULL, 1),
(11173, 27839, 'Sagilty pvt ltd', 'process executive', '2024-09-06', 18000.00, '2025-02-19', 17000.00, 'porur', '1', '0 years 5 months', ' Accident ', 1, '2025-12-22 07:35:25', 0, NULL, 0, NULL, 1),
(11174, 27841, 'HDB financial services ', 'Relationship manager ', '2022-03-03', 12500.00, '2023-05-18', 17000.00, 'Chennai ', '1', '1 years 2 months', ' MBA studying ', 1, '2025-12-22 12:01:02', 0, NULL, 0, NULL, 1),
(11175, 27841, 'HDB financial services ', 'Relationship manager ', '2022-03-03', 12500.00, '2023-05-18', 12500.00, 'Chennai ', '1', '1 years 2 months', ' MBA studying ', 1, '2025-12-22 12:11:29', 1, '2025-12-22 12:15:57', 0, NULL, 0),
(11176, 21729, 'Tech Mahindra ', 'Loan executive ', '2024-09-09', 15000.00, '2025-06-30', 17000.00, 'Egmore ', '1', '0 years 9 months', ' Client base over and shifted the office to sholinganalur ', 1, '2025-12-23 04:58:36', 0, NULL, 0, NULL, 1),
(11177, 12829, 'Sudarasanam associates ', 'Telesales ', '2024-12-11', 24.00, '2025-11-30', 24.00, 'lIC', '1', '0 years 11 months', ' Company will shift in own branch ', 1, '2025-12-23 06:59:31', 0, NULL, 0, NULL, 1),
(11178, 27852, 'Sudarasanam associates ', 'Sales', '2024-11-11', 295000.00, '2025-11-30', 295000.00, 'Chennai ', '1', '1 years 0 months', ' Company swift in main branch ', 1, '2025-12-23 07:43:02', 0, NULL, 0, NULL, 1),
(11179, 27853, 'Jiviews Private Limited ', 'Mobile Application Developer ', '2024-09-09', 240000.00, '2025-10-08', 312000.00, 'Chennai', '1', '1 years 0 months', ' For career growth and for hike ', 1, '2025-12-23 08:27:20', 0, NULL, 0, NULL, 1),
(11180, 27854, 'AL-HERQEL EST. FOR CONTRACTING', 'Admin Executive', '2023-12-09', 49000.00, '2025-08-25', 49000.00, 'Ras Tanura, Saudi Arabia', '1', '1 years 8 months', ' Contract finished ', 1, '2025-12-23 09:16:26', 0, NULL, 0, NULL, 1),
(11181, 27854, 'Laboni Collection', 'Admin Exrcutive', '2021-10-01', 15000.00, '2023-10-02', 18000.00, 'Karur', '1', '2 years 0 months', 'Salary issue', 1, '2025-12-23 09:18:14', 0, NULL, 0, NULL, 1),
(11182, 27854, 'VKP industries, KPR Transports', 'Accounts Assistant', '2017-04-01', 10000.00, '2021-09-30', 12000.00, 'Karur', '1', '4 years 5 months', 'Salary issue', 1, '2025-12-23 09:20:20', 0, NULL, 0, NULL, 1),
(11183, 27856, 'FRQ BRO PRIVATE LIMTED', 'OEC', '2023-09-15', 16000.00, '2025-08-13', 18000.00, 'Thoothukudi', '1', '1 years 10 months', ' NO CAREER GROWTH', 1, '2025-12-23 10:13:42', 0, NULL, 0, NULL, 1),
(11184, 27860, 'Autosense private limited ', 'Team leader ', '2023-02-07', 1.00, '2025-10-13', 15000.00, 'Chennai ', '1', '2 years 8 months', ' ', 1, '2025-12-23 02:01:22', 0, NULL, 0, NULL, 1),
(11185, 27862, 'Matrimony.com', 'Pallavaram ', '2023-02-08', 14800.00, '2025-12-24', 16500.00, 'Guindy ', '2', '2 years 10 months', ' Health issues ', 1, '2025-12-24 05:57:55', 0, NULL, 0, NULL, 1),
(11186, 27865, 'Hdfc bank limited ', 'Assistant manager ', '2022-12-23', 14500.00, '2025-02-21', 22500.00, 'Chennai ', '1', '2 years 1 months', 'Health issue', 1, '2025-12-25 07:06:18', 0, NULL, 0, NULL, 1),
(11187, 27866, 'AgniSharman Logistics Pvt Ltd ', 'Sales Executive/ Team Lead', '2023-08-16', 17000.00, '2025-11-15', 25000.00, 'Guduvancheri ', '1', '2 years 2 months', 'Relieved to pursue opportunities offering long-term professional growth.', 1, '2025-12-25 10:44:55', 0, NULL, 0, NULL, 1),
(11188, 27868, 'ISBM', 'Senior Career Advisor ', '2023-11-03', 20000.00, '2024-12-08', 20000.00, 'Chennai ', '1', '1 years 1 months', ' Emergency In Home Town', 1, '2025-12-25 11:55:26', 0, NULL, 0, NULL, 1),
(11189, 27873, 'TATA CONSULTANCY SERVICES', 'BPO', '2024-01-05', 26000.00, '2026-01-01', 26000.00, 'chennai', '1', '1 years 11 months', ' ', 1, '2025-12-26 05:15:29', 0, NULL, 0, NULL, 1),
(11190, 27874, 'Cameo Corporate Services Limited ', 'Assistant - RTA', '2023-11-07', 11001.00, '2025-05-07', 11001.00, 'Chennai ', '1', '1 years 6 months', ' Salary not hike and long distance travel', 1, '2025-12-26 06:02:52', 0, NULL, 0, NULL, 1),
(11191, 27882, 'S. H. Opticals ', 'Sales executive ', '2025-06-10', 18000.00, '2025-10-06', 18000.00, 'Ice house ', '1', '0 years 3 months', ' Building reconstruction ', 1, '2025-12-26 06:57:35', 0, NULL, 0, NULL, 1),
(11192, 27882, 'Image opticals ', 'Delivery executive ', '2023-05-15', 15000.00, '2024-05-16', 15000.00, 'Parrys', '1', '1 years 0 months', 'No career growth ', 1, '2025-12-26 06:59:54', 0, NULL, 0, NULL, 1),
(11193, 27885, 'Star Health Insurance ', 'Telesales', '2024-12-01', 26000.00, '2025-12-02', 26000.00, 'Chennai', '1', '1 years 0 months', ' Incentive Not given properly ', 1, '2025-12-26 10:04:49', 0, NULL, 0, NULL, 1),
(11194, 27886, 'Alteration company', 'Customer executive ', '2024-09-19', 10000.00, '2025-11-20', 10000.00, 'Chennai', '1', '1 years 3 months', ' ', 1, '2025-12-26 11:43:02', 0, NULL, 0, NULL, 1),
(11195, 27889, 'Invensis technologies Pvt Ltd ', 'Collections coordinator ', '2019-07-28', 16000.00, '2024-08-24', 25000.00, 'Jp nagar Bengaluru ', '1', '5 years 0 months', ' Went through some surgery and needed some rest', 1, '2025-12-26 12:38:01', 0, NULL, 0, NULL, 1),
(11196, 27891, 'just dial', 'information retrieval officer', '2024-05-23', 13732.00, '2024-10-05', 13732.00, 'chennai', '1', '0 years 4 months', ' due to rotational shifts, they promised me to get approval for shift change but did\'nt', 1, '2025-12-26 02:22:34', 0, NULL, 0, NULL, 1),
(11197, 27891, 'eskertech solutions pvt ltd', 'customer success', '2024-10-06', 14000.00, '2024-12-07', 14000.00, 'chennai', '1', '0 years 2 months', 'the product sales was of flase information, and not implemented for what i signed for.', 1, '2025-12-26 02:26:52', 0, NULL, 0, NULL, 1),
(11198, 27891, 'first insurance services', 'customer success', '2024-12-11', 13000.00, '1970-01-01', 16000.00, 'chennai', '2', '1 years 0 months', 'i want to make myself positioned in a better place, whereas current organization did\'nt provide next position', 1, '2025-12-26 02:30:54', 0, NULL, 0, NULL, 1),
(11199, 27893, 'Computer Age Management Service ', 'Senior executive customer service ', '2024-05-23', 13200.00, '2025-11-20', 17110.00, '158 Anna salai ,rayala tower 3, 6th floor, chennai', '1', '1 years 5 months', ' Salary issu ', 1, '2025-12-27 05:49:44', 0, NULL, 0, NULL, 1),
(11200, 27894, 'datamark bpo llp', 'prosess associate', '2024-04-07', 20000.00, '2025-02-03', 20000.00, 'ambattur', '1', '0 years 9 months', ' ', 1, '2025-12-27 06:16:13', 0, NULL, 0, NULL, 1),
(11201, 27894, 'datamark bpo llp', 'process associate', '2024-04-07', 20000.00, '2025-02-03', 20000.00, 'ambattur', '1', '0 years 9 months', 'due to my mother health we went to native for treatment', 1, '2025-12-27 06:17:37', 1, '2025-12-27 06:17:50', 0, NULL, 0),
(11202, 27895, 'Matrimony ', 'Telesales ', '2024-07-15', 12000.00, '2024-11-15', 15000.00, 'Guindy ', '1', '0 years 4 months', ' I joined the software testing course, which is why I\'m relieved . ', 1, '2025-12-27 06:47:54', 0, NULL, 0, NULL, 1),
(11203, 27896, 'Star finance ', 'Sales', '2025-05-13', 15.00, '2025-11-30', 15.00, 'Adyar gate ', '1', '0 years 6 months', ' Long and salary date problem ', 1, '2025-12-27 06:48:53', 0, NULL, 0, NULL, 1),
(11204, 27897, 'Everest fleet Pvt Ltd ', 'Customer Support executive', '2023-04-10', 15000.00, '2023-12-23', 15000.00, 'Chennai', '1', '0 years 8 months', 'We shifted home so I relieved.', 1, '2025-12-27 06:49:29', 0, NULL, 0, NULL, 1),
(11205, 27897, 'Smile cars', 'Customer support executive', '2024-08-01', 18000.00, '2024-09-30', 18000.00, 'Chennai', '1', '0 years 1 months', 'I\'m not comfortable for Rotational shift', 1, '2025-12-27 06:51:22', 0, NULL, 0, NULL, 1),
(11206, 27898, 'KBL services ltd', 'Customer support associate ', '2025-08-16', 21000.00, '1970-01-01', 10000.00, 'K.h road', '2', '0 years 4 months', ' It\'s to far from my location ', 1, '2025-12-27 07:39:00', 0, NULL, 0, NULL, 1),
(11207, 27911, 'Sudarsanam and associates ', 'Spoc ', '2022-10-10', 15000.00, '2025-11-30', 23000.00, 'Mount road ', '1', '3 years 1 months', 'Process closed ', 1, '2025-12-29 05:30:45', 0, NULL, 0, NULL, 1),
(11208, 27913, 'Shree consultancy ', 'Re', '2025-09-01', 1.00, '2025-12-01', 18000.00, 'Guindy ', '1', '0 years 3 months', ' Personal issue ', 1, '2025-12-29 05:47:52', 0, NULL, 0, NULL, 1),
(11209, 27910, 'Aquitas debt solution ', 'Tele calling ', '2024-05-01', 15000.00, '2025-10-10', 16000.00, 'Thousands lights ', '1', '1 years 5 months', 'Proper reliving letter no ..timing pressure ', 1, '2025-12-29 05:49:34', 0, NULL, 0, NULL, 1),
(11210, 27910, 'Aquitas debt solution ', 'Tele calling ', '2024-05-01', 15000.00, '2025-10-10', 16000.00, 'Thousands lights ', '1', '1 years 5 months', 'Pressure ', 1, '2025-12-29 05:51:56', 0, NULL, 0, NULL, 1),
(11211, 27914, 'Stats perform india Pvt Ltd ', 'Data analysis ', '2024-06-05', 18000.00, '2025-06-19', 24000.00, 'Thousands lights', '1', '1 years 0 months', ' ', 1, '2025-12-29 06:06:05', 0, NULL, 0, NULL, 1),
(11212, 27906, 'yes bank ', 'phone banking officer', '2025-08-14', 16800.00, '2025-12-08', 17000.00, 'ambattur', '1', '0 years 3 months', ' ', 1, '2025-12-29 06:16:45', 0, NULL, 0, NULL, 1),
(11213, 27915, 'hdb finance', 'sales officer', '2025-07-28', 12700.00, '2025-11-20', 12700.00, 'thousand light', '1', '0 years 3 months', ' health issue', 1, '2025-12-29 07:53:30', 1, '2025-12-29 07:54:02', 0, NULL, 1),
(11214, 27918, 'R.PARTHIBAN', 'Telecaller', '2025-12-31', 20000.00, '1970-01-01', 16000.00, 'Chennai ,t.nagar', '2', '0 years 0 months', ' ', 1, '2025-12-29 09:12:13', 0, NULL, 0, NULL, 1),
(11215, 27922, 'Abraham phillip lLP', 'Accounts trainee ', '2025-03-12', 5000.00, '2025-09-12', 8000.00, 'Nelson monickam road, railway colony ', '1', '0 years 6 months', ' not received enough salary and learning exposure is less', 1, '2025-12-29 02:10:24', 0, NULL, 0, NULL, 1),
(11216, 27927, 'Mass media creatives private limited ', 'Accountant ', '2025-05-16', 13.00, '2025-12-04', 14000.00, 'Chennai ', '1', '0 years 6 months', ' Salary delay ', 1, '2025-12-30 06:11:51', 0, NULL, 0, NULL, 1),
(11217, 27928, 'LIC OF INDIA ', 'Sales executive, and tellicaller', '2024-01-01', 15.00, '2025-11-30', 18.00, 'HSR layout ', '1', '1 years 10 months', ' Long distance ', 1, '2025-12-30 06:25:31', 0, NULL, 0, NULL, 1),
(11218, 27921, 'himalaya wellness company', 'sales executive', '2024-09-07', 16200.00, '2025-09-02', 17000.00, 'chennai', '1', '0 years 11 months', ' upgrade my skills', 1, '2025-12-30 07:33:37', 0, NULL, 0, NULL, 1),
(11219, 27933, 'Muthoottu mini finance limited ', 'Customer relationship executive ', '2023-11-23', 18000.00, '2025-05-15', 20000.00, 'Villivakkam Chennai ', '1', '1 years 5 months', ' Mother\'s eye operation ', 1, '2025-12-30 10:39:59', 0, NULL, 0, NULL, 1),
(11220, 27936, 'Bankbazaar ', 'Senior customer relationship officer ', '2023-06-22', 15000.00, '1970-01-01', 20000.00, 'Ambattur ', '2', '2 years 6 months', ' ', 1, '2025-12-30 02:27:38', 0, NULL, 0, NULL, 1),
(11221, 27939, 'Rk Bajaj', 'Billing executive ', '2023-07-02', 12000.00, '2024-05-11', 13000.00, 'Madurai', '1', '0 years 10 months', ' Due to medical emergency ', 1, '2025-12-31 05:44:59', 0, NULL, 0, NULL, 1),
(11222, 27940, 'NS Varadan Association ', 'Ambattur ', '2025-07-15', 19000.00, '2025-12-29', 19000.00, 'Ambattur ', '1', '0 years 5 months', ' ', 1, '2025-12-31 06:31:40', 0, NULL, 0, NULL, 1),
(11223, 27943, 'Sutherland global solution', 'Customer support executive', '2023-09-24', 15000.00, '2025-01-18', 180000.00, 'Chennai', '1', '1 years 3 months', 'Since it is rotational shift timing and also due to my hand injury, I\'m unable to continue the job  . Now I\'m perfectly alright to continue my carreer\n\n\nI would like to restart my carreer in accounting field', 1, '2025-12-31 07:01:35', 0, NULL, 0, NULL, 1),
(11224, 27945, 'Global connect business solution ', 'Process Executive ', '2024-12-19', 16000.00, '2025-06-25', 16000.00, 'Trichy ', '1', '0 years 6 months', ' Traveling ', 1, '2025-12-31 07:01:42', 0, NULL, 0, NULL, 1),
(11225, 27941, 'bsc channabasappa & sons', 'sales  and marketing executive', '2019-03-01', 14000.00, '2024-10-31', 25000.00, 'davangere', '1', '5 years 7 months', ' career growth', 1, '2025-12-31 07:07:27', 0, NULL, 0, NULL, 1),
(11226, 27941, 'motorizzr', 'sales manager', '2024-12-01', 30000.00, '1970-01-01', 30000.00, 'btm layout', '2', '1 years 0 months', 'career growth ', 1, '2025-12-31 07:09:22', 0, NULL, 0, NULL, 1),
(11227, 27946, 'Aceolution ', 'Process Executive ', '2024-11-04', 18000.00, '2025-10-31', 18000.00, 'Guindy ', '1', '0 years 11 months', ' Ramp down ', 1, '2025-12-31 07:41:37', 0, NULL, 0, NULL, 1),
(11228, 27937, 'Genius publication ', 'Sales executive ', '2022-08-26', 19000.00, '1970-01-01', 20000.00, 'Aminjikarai', '2', '3 years 4 months', ' Company has moved to Mumbai', 1, '2026-01-02 04:27:02', 0, NULL, 0, NULL, 1),
(11229, 27958, 'I marque solutions pvt Ltd', 'Customer support executive', '2024-01-31', 12000.00, '2025-12-31', 14000.00, 'Chennai, Teynampet', '1', '1 years 11 months', ' Due to financial issues', 1, '2026-01-02 06:45:10', 0, NULL, 0, NULL, 1),
(11230, 27956, 'hdb financal service', 'senior sales officer', '2025-10-02', 20000.00, '1970-01-01', 25000.00, 'Thoothukudi ', '2', '0 years 3 months', ' Relocated ', 1, '2026-01-02 06:48:55', 0, NULL, 0, NULL, 1),
(11231, 27961, 'HDB financial services ', 'Senior tllecaller', '2023-08-04', 16000.00, '2025-08-05', 18000.00, 'Chennai ', '1', '2 years 0 months', ' Health issues ', 1, '2026-01-02 08:22:19', 0, NULL, 0, NULL, 1),
(11232, 27964, 'HOTEL JAYAPUSHPAM PVT LTD ', 'Accounts Assistant ', '2024-07-08', 15000.00, '1970-01-01', 16500.00, 'Koyambedu ', '2', '1 years 5 months', ' No proper Hike and can\'t able learn new things.', 1, '2026-01-02 12:33:56', 0, NULL, 0, NULL, 1),
(11233, 27971, 'bankbazaar.com', 'senior customer relationship officer', '2023-08-01', 15000.00, '2025-09-18', 25000.00, 'ambattur chennai', '1', '2 years 1 months', ' ', 1, '2026-01-03 12:41:22', 0, NULL, 0, NULL, 1),
(11234, 27984, 'Quatrex solution ', 'Voice process ', '2025-11-01', 18000.00, '2026-01-02', 18000.00, 'Madurai ', '1', '0 years 2 months', ' ', 1, '2026-01-03 09:20:55', 0, NULL, 0, NULL, 1),
(11235, 27990, 'Easy Recruitment ', 'Telecaller ', '2024-08-21', 16000.00, '2025-02-03', 16000.00, 'Velachery ', '1', '0 years 5 months', ' Mother\'s Health issues ', 1, '2026-01-05 06:40:54', 0, NULL, 0, NULL, 1),
(11236, 27993, 'madras city properties', 'bdm', '2025-08-01', 15000.00, '2025-12-01', 20000.00, 'chennai', '1', '0 years 4 months', ' job developement', 1, '2026-01-05 07:21:27', 0, NULL, 0, NULL, 1),
(11237, 27994, 'TECH Mahindra ', 'Customer service ', '2023-02-02', 15000.00, '2023-09-29', 15000.00, 'Egmore ', '1', '0 years 7 months', ' It\'s a contract for an 8 month', 1, '2026-01-05 08:56:01', 0, NULL, 0, NULL, 1),
(11238, 27994, 'KRAZYBEE SERVICE PRIVATE LIMITED ', 'Operation executive in collection ', '2024-02-20', 17000.00, '2024-08-01', 17000.00, 'Mylapore ', '1', '0 years 5 months', 'Some personal reasons I going transfer to another location so I resigned', 1, '2026-01-05 08:58:32', 0, NULL, 0, NULL, 1),
(11239, 27997, 'SRS car\'s pvt LTD ', 'Sales consultant ', '2025-02-17', 18000.00, '2025-12-15', 18000.00, 'Melavasthachavadi Pudukkottai road Thanjavur ', '1', '0 years 9 months', ' Not payouts ', 1, '2026-01-05 10:14:31', 0, NULL, 0, NULL, 1),
(11240, 27997, 'Sapbpo service pvt ltd ', 'Data entry ', '2023-11-10', 10000.00, '2024-03-20', 10000.00, 'Convert ', '1', '0 years 4 months', 'Health issue ', 1, '2026-01-05 10:17:22', 0, NULL, 0, NULL, 1),
(11241, 27998, 'Shiram life insurance ', 'Cce', '2023-07-14', 1.00, '2025-03-13', 16000.00, 'Kodambakkam ', '1', '1 years 7 months', ' Health issues ', 1, '2026-01-05 10:19:22', 0, NULL, 0, NULL, 1),
(11242, 27999, 'MSA Groups ', 'Accounts executive ', '2024-11-11', 13000.00, '2026-01-05', 17000.00, 'Guindy ', '1', '1 years 1 months', ' Salary ', 1, '2026-01-05 10:59:46', 0, NULL, 0, NULL, 1),
(11243, 28004, 'health insurance', 'insurance', '2025-03-05', 15.00, '2025-10-10', 15.00, 'koyambedu', '1', '0 years 7 months', ' Salary issue ', 1, '2026-01-06 05:08:31', 0, NULL, 0, NULL, 1),
(11244, 28005, 'Integrated enterprises indian pvt ltd ', 'Relationship manager ', '2024-12-16', 15000.00, '2025-11-30', 20000.00, 'Banashankari ', '1', '0 years 11 months', ' Personal reasons ', 1, '2026-01-06 05:28:13', 0, NULL, 0, NULL, 1),
(11245, 28002, 'Achha associate', 'Accountant ', '2025-01-10', 25000.00, '1970-01-01', 25000.00, 'Chennai ', '2', '0 years 11 months', ' I will get marriage ', 1, '2026-01-06 05:31:31', 0, NULL, 0, NULL, 1),
(11246, 28011, 'S Ravi & Associates ', 'Audit Assistant ', '2022-01-06', 10000.00, '2022-10-08', 15000.00, 'Mylapore', '1', '0 years 9 months', ' Went to dubai for studies and worked part time for 4 months', 1, '2026-01-06 05:56:38', 0, NULL, 0, NULL, 1),
(11247, 28013, 'Airtel ', 'CRO ', '2025-02-20', 11.00, '2025-07-21', 20000.00, 'Chennai ', '1', '0 years 5 months', 'Want to change the domain ', 1, '2026-01-06 06:04:56', 0, NULL, 0, NULL, 1),
(11248, 28016, 'Quality inn viha', 'Cashier', '2019-06-10', 10000.00, '2020-06-10', 10.00, 'Kumbakonam', '1', '1 years 0 months', ' Corona virus?? so many staffs leaving hotel', 1, '2026-01-06 06:19:21', 0, NULL, 0, NULL, 1),
(11249, 28012, 'Muthoot finance ', 'Telecaller', '2024-05-02', 12000.00, '2024-12-03', 15000.00, 'Nungambakkam ', '1', '0 years 7 months', ' ', 1, '2026-01-06 06:20:09', 0, NULL, 0, NULL, 1),
(11250, 28016, 'Updated service pvt Ltd', 'Sales support associate', '2020-07-15', 10000.00, '2021-07-31', 10000.00, 'Kumbakonam', '1', '1 years 0 months', 'It is off roll of sbi life insurance so switch over to on roll in sbi life insurance', 1, '2026-01-06 06:22:03', 0, NULL, 0, NULL, 1),
(11251, 28016, 'Sbi life insurance', 'Operation associate', '2021-08-02', 15000.00, '2023-01-03', 15500.00, 'Pattukkottai', '1', '1 years 5 months', 'Due to family ? situation came to Chennai', 1, '2026-01-06 06:23:25', 0, NULL, 0, NULL, 1),
(11252, 28016, 'Think and learn pvt Ltd (byjus) ', 'Business development associate', '2023-06-15', 40000.00, '2024-03-31', 40000.00, 'Chennai', '1', '0 years 9 months', 'Due to company wind up', 1, '2026-01-06 06:25:40', 0, NULL, 0, NULL, 1),
(11253, 28016, 'Pioneer wincon', 'Digital marketing executive ( inside sales) ', '2024-04-15', 28000.00, '2025-07-16', 29000.00, 'Chennai', '1', '1 years 3 months', 'Ask to go for field sales frequently outside  Chennai', 1, '2026-01-06 06:27:49', 0, NULL, 0, NULL, 1),
(11254, 28019, 'Amaze travels Pvt ltd', 'Booking department ', '2022-04-11', 13000.00, '2025-05-10', 18000.00, 'Poonamallee ', '1', '3 years 0 months', 'Personal reasons so I quit my job.', 1, '2026-01-06 06:57:32', 0, NULL, 0, NULL, 1),
(11255, 28023, 'aionion insurance pvt ltd ', 'senior executive ', '2024-03-14', 37500.00, '2026-01-06', 37500.00, 'royapettah ', '2', '1 years 9 months', ' Career Growth ', 1, '2026-01-06 09:16:57', 0, NULL, 0, NULL, 1),
(11256, 28024, 'I marque solutions pvt ltd', 'Customer support executive', '2024-09-03', 16000.00, '2025-12-31', 16000.00, 'Teynampet, chennai', '1', '1 years 3 months', ' Salary issues', 1, '2026-01-06 09:26:32', 0, NULL, 0, NULL, 1),
(11257, 28026, 'IndusInd Bank', 'Relationship Executive', '2024-10-07', 16500.00, '1970-01-01', 18000.00, 'Chennai', '2', '1 years 2 months', ' ', 1, '2026-01-06 10:41:09', 0, NULL, 0, NULL, 1),
(11258, 28018, 'Network ', 'Engineer ', '2025-01-07', 25000.00, '2026-01-05', 23000.00, 'Chennai', '1', '0 years 11 months', ' Not interested ', 1, '2026-01-06 10:50:36', 0, NULL, 0, NULL, 1),
(11259, 28027, 'Medical research foundation ', 'Doctor secretary ', '2024-09-03', 15500.00, '2025-11-28', 18000.00, 'Chennai', '1', '1 years 2 months', ' Personal issues ', 1, '2026-01-06 11:54:22', 0, NULL, 0, NULL, 1),
(11260, 28029, 'Proteam Softwares India Pvt.Ltd ', 'HR Trainee ', '2025-12-11', 7500.00, '1970-01-01', 7500.00, 'Chennai', '2', '0 years 0 months', ' For Better Opportunity ', 1, '2026-01-06 12:53:59', 0, NULL, 0, NULL, 1),
(11261, 28031, 'POORVIKA MOBILES PRIVATE LIMITED ', '31/12/2025', '2022-05-10', 18000.00, '2024-11-12', 19000.00, 'NAGAPATTINAM ', '1', '2 years 6 months', ' ', 1, '2026-01-06 02:14:13', 0, NULL, 0, NULL, 1),
(11262, 27986, 'Thinksynq ', 'Process Associate ', '2024-09-02', 16.50, '1970-01-01', 16.50, 'Chennai ', '2', '1 years 4 months', 'I’m looking for career growth and a role that offers more learning and client interaction, which is why I’m transitioning into business development.', 1, '2026-01-06 03:59:41', 0, NULL, 0, NULL, 1),
(11263, 28030, 'Bluechip corporate investment centre private limit', 'Branch assistant ', '2023-08-07', 16500.00, '1970-01-01', 16500.00, 'Porur', '2', '2 years 4 months', 'Reason for reliving my previous job for positive reasons like seeking better career growth, new challenges, skill development, a supportive culture, or better work-life balance', 1, '2026-01-06 05:38:15', 0, NULL, 0, NULL, 1),
(11264, 28033, 'KUN Motorcycle Pvt Ltd', 'Account Assistant', '2022-08-01', 13000.00, '2023-06-01', 15000.00, '11 months', '1', '0 years 10 months', 'For Higher Studies', 1, '2026-01-07 05:13:19', 0, NULL, 0, NULL, 1),
(11265, 28035, 'sudarsanam and associates ', 'ATL ', '2022-09-22', 22000.00, '2025-11-30', 25000.00, 'mount road ', '1', '3 years 2 months', ' Closure of process', 1, '2026-01-07 05:35:18', 0, NULL, 0, NULL, 1),
(11266, 27995, 'Merlom ', 'Customer support ', '2025-06-05', 22000.00, '2025-11-10', 24500.00, ' valasaravakkam', '1', '0 years 5 months', 'Personal reason ', 1, '2026-01-07 07:01:19', 0, NULL, 0, NULL, 1),
(11267, 28036, 'altruist technologies pvt ltd', 'operations', '2025-09-17', 17092025.00, '2024-06-10', 16000.00, 'perungudi', '2', '1 years 3 months', 'due to medical emergency from family side', 1, '2026-01-07 07:46:02', 0, NULL, 0, NULL, 1),
(11268, 28039, 'Indiamart ', 'Service Provider executive ', '2024-10-09', 3.00, '2025-06-11', 20000.00, 'Chennai ( Thousand light )', '1', '0 years 8 months', 'Mother had an open heart surgery operation. So , doctor suggested to there with the mother minimum 6 months .', 1, '2026-01-07 07:55:35', 0, NULL, 0, NULL, 1),
(11269, 28042, 'Matrix Business Services india Pvt Ltd ', 'Executive', '2022-09-01', 13000.00, '2024-08-08', 15000.00, 'Chennai', '1', '1 years 11 months', ' Career growth', 1, '2026-01-07 08:14:13', 0, NULL, 0, NULL, 1),
(11270, 28050, 'Altruist private limited company ', 'Customer support ', '2026-01-29', 14000.00, '1970-01-01', 14000.00, 'Karappakam', '2', '0 years 0 months', ' Health issuse', 1, '2026-01-08 04:35:18', 0, NULL, 0, NULL, 1),
(11271, 28051, 'P.l & associate ', 'Accountant ', '2024-08-16', 12000.00, '2025-12-31', 15000.00, 'K.k nagar', '1', '1 years 4 months', ' For better experience and better exposure ', 1, '2026-01-08 04:54:06', 0, NULL, 0, NULL, 1),
(11272, 28052, 'Persol kelly pvt ltd', 'Customer relationship ', '2024-07-22', 15000.00, '2025-07-31', 15000.00, 'Kodambakkam ', '1', '1 years 0 months', ' Contract ended ', 1, '2026-01-08 05:47:17', 0, NULL, 0, NULL, 1),
(11273, 28046, 'Matrimony.com', 'Service executive ', '2024-04-15', 19000.00, '2025-12-14', 1.70, 'Chennai ', '1', '1 years 7 months', ' Career growth ', 1, '2026-01-08 06:04:58', 0, NULL, 0, NULL, 1),
(11274, 28054, 'Vizza insurance ', 'Tele caller ', '2018-01-01', 10000.00, '1970-01-01', 15800.00, 'Banashankari ', '2', '8 years 0 months', ' Marriage ', 1, '2026-01-08 06:35:18', 0, NULL, 0, NULL, 1),
(11275, 28054, 'Iifl', 'Tele caller ', '2021-01-01', 12000.00, '1970-01-01', 15800.00, 'Shivaji Nagar ', '2', '5 years 0 months', 'Health issues ', 1, '2026-01-08 06:36:17', 0, NULL, 0, NULL, 1),
(11276, 28054, 'Algetes', 'Tele caller ', '2024-01-01', 15800.00, '1970-01-01', 15800.00, 'Shanthinagar ', '2', '2 years 0 months', 'Salary issue ', 1, '2026-01-08 06:37:37', 0, NULL, 0, NULL, 1),
(11277, 28056, 'Lakshmidevi ', 'Associate ', '2021-09-03', 20.00, '2025-03-08', 20000.00, 'Chennai ', '1', '3 years 6 months', ' ', 1, '2026-01-08 08:14:58', 0, NULL, 0, NULL, 1),
(11278, 28057, 'savino del bene', 'sales eexecutive', '2025-01-06', 25000.00, '2025-08-11', 25000.00, 'chennai', '1', '0 years 7 months', ' ', 1, '2026-01-08 08:41:13', 0, NULL, 0, NULL, 1),
(11279, 28058, 'Bank bazaar', 'Customer relationship organizer ', '2025-04-12', 19500.00, '1970-01-01', 21000.00, 'Ambattur', '2', '0 years 8 months', ' It\'s to long for me to travel from my location.', 1, '2026-01-08 08:45:19', 0, NULL, 0, NULL, 1),
(11280, 28060, 'urban tree infrastructures pvt ltd', 'sales executive', '2025-09-17', 20000.00, '2026-01-08', 20000.00, 'nungambakkam', '2', '0 years 3 months', ' I am looking for career growth and hope to work with a respected company', 1, '2026-01-08 09:26:13', 0, NULL, 0, NULL, 1),
(11281, 28061, 'Urban tree infrastructure pvt ltd ', 'Sales Executive ', '2025-09-17', 20000.00, '1970-01-01', 20000.00, 'Nungambakkam ', '2', '0 years 3 months', ' I am looking for a better career opportunity, and I want to work in a reputed compan', 1, '2026-01-08 09:26:21', 0, NULL, 0, NULL, 1),
(11282, 28071, 'rg groups', 'telecaler', '2023-04-01', 15000.00, '2023-10-15', 15000.00, 'rajajinagar', '1', '0 years 6 months', ' distance', 1, '2026-01-09 05:29:36', 1, '2026-01-09 05:33:24', 0, NULL, 1),
(11283, 28071, 'rk groups', 'telecaler', '2023-11-01', 20000.00, '2024-11-10', 20000.00, 'double road bangalore', '1', '1 years 0 months', 'company closed', 1, '2026-01-09 05:34:37', 0, NULL, 0, NULL, 1),
(11284, 28071, 'vizza', 'telecaler', '2024-12-09', 22000.00, '2025-10-03', 22000.00, 'double road', '1', '0 years 9 months', 'company closed', 1, '2026-01-09 05:35:43', 0, NULL, 0, NULL, 1),
(11285, 28071, 'iifl', 'senior atl', '2025-10-28', 23000.00, '2026-01-08', 23000.00, 'wilson garden ', '1', '0 years 2 months', 'wanted to shift', 1, '2026-01-09 05:37:19', 0, NULL, 0, NULL, 1),
(11286, 28078, 'Techneat Info solutions pvt .Ltd ', 'Accounts Executive ', '2025-07-14', 15000.00, '2026-01-13', 15000.00, 'Saidapet', '1', '0 years 5 months', ' To upgrade my professional skills .', 1, '2026-01-09 11:56:31', 0, NULL, 0, NULL, 1),
(11287, 28079, 'Straive spi global ', 'Executive', '2022-08-08', 12800.00, '2025-12-20', 25000.00, 'Thousands lights ', '1', '3 years 4 months', ' Career growth and better opportunities', 1, '2026-01-10 04:29:38', 0, NULL, 0, NULL, 1),
(11288, 28066, 'bajaj finserv health ', 'Relationship manager ', '2025-09-01', 23000.00, '2025-12-31', 26000.00, 'chennai', '1', '0 years 3 months', ' Relocate in bangalor', 1, '2026-01-10 04:32:21', 0, NULL, 0, NULL, 1),
(11289, 28081, 'HDB Financial service ', 'Sales officer ', '2025-05-15', 15000.00, '2026-01-02', 15000.00, 'Madurai ', '1', '0 years 7 months', ' Relocation in Chennai ', 1, '2026-01-10 05:54:07', 0, NULL, 0, NULL, 1),
(11290, 28068, 'St holy bells group of institutions ', 'Administrative tellecaller ', '2018-01-03', 12000.00, '1970-01-01', 18000.00, 'Ayanavaram ', '2', '8 years 0 months', 'Pregnency delivery ', 1, '2026-01-10 06:10:59', 0, NULL, 0, NULL, 1),
(11291, 28068, 'St holy bells group of institutions ', 'Administrative tellecaller ', '2018-01-03', 12000.00, '1970-01-01', 18000.00, 'Ayanavaram ', '2', '8 years 0 months', 'Delivary maturity ', 1, '2026-01-10 06:12:18', 0, NULL, 0, NULL, 1),
(11292, 28065, 'The cell phone doctor ', 'Supporting lead', '2023-02-03', 15000.00, '2023-08-05', 15000.00, 'Ayanavaram ', '1', '0 years 6 months', ' Health issues ', 1, '2026-01-10 09:27:18', 0, NULL, 0, NULL, 1),
(11293, 28087, 'Hdfc bank', 'Assistant manager ', '2022-08-01', 3.10, '2025-12-24', 3.10, 'Chennai ', '1', '3 years 4 months', ' Rotational shifts ', 1, '2026-01-12 05:28:24', 0, NULL, 0, NULL, 1),
(11294, 28064, 'Vecura wellness clinic ', 'Customer relationship executive ', '2024-07-12', 15700.00, '2025-10-07', 19000.00, 'Anna nagar ', '1', '1 years 2 months', ' Customer relationship executive is supported to customer ', 1, '2026-01-12 06:38:19', 0, NULL, 0, NULL, 1),
(11295, 28091, 'MSA Groups', 'Account executive ', '2025-08-01', 18000.00, '2025-12-18', 20000.00, 'Chennai', '1', '0 years 4 months', ' Salary issue for reliving company', 1, '2026-01-12 07:40:46', 0, NULL, 0, NULL, 1),
(11296, 28092, 'Senior client partner ', 'Ambattur ', '2022-09-05', 12500.00, '2025-04-04', 18500.00, 'Ambattur ', '1', '2 years 6 months', ' Work pressure ', 1, '2026-01-12 07:43:42', 0, NULL, 0, NULL, 1),
(11297, 28098, 'Sutherland global services ', 'Chennai', '2024-05-22', 19.00, '2025-09-30', 19500.00, 'Perungalathur ', '1', '1 years 4 months', ' Work location is too long ', 1, '2026-01-12 10:27:17', 0, NULL, 0, NULL, 1),
(11298, 28099, 'IZEON Innovative pvt Ltd ', 'HR executive ', '2025-10-10', 18000.00, '2026-01-10', 18000.00, 'Chennai ', '1', '0 years 3 months', ' The company was on the verge of shutting down.', 1, '2026-01-12 12:49:55', 0, NULL, 0, NULL, 1),
(11299, 28101, 'Abhishek Kothari and company ', 'Accounts and compliance executive ', '2025-04-03', 12500.00, '2025-10-31', 15000.00, 'Shenoy Nagar ', '1', '0 years 9 months', 'My mother met with an accident.', 1, '2026-01-12 01:43:29', 0, NULL, 0, NULL, 1),
(11300, 28104, 'E-care india pvt ltd ', 'Financial Transactions ', '2025-02-01', 13000.00, '2025-12-05', 13000.00, 'Chennai ', '1', '0 years 10 months', ' Native land issue ', 1, '2026-01-13 04:53:52', 0, NULL, 0, NULL, 1),
(11301, 28106, 'imarque Solution ', 'Customer Support Executive ', '2024-11-18', 13000.00, '2026-01-12', 14000.00, 'chennai', '1', '1 years 1 months', ' No growth in Office ', 1, '2026-01-13 05:17:58', 0, NULL, 0, NULL, 1),
(11302, 28107, 'Ruralshores business private limited ', 'Customer care executive ', '2022-10-01', 15000.00, '2024-01-31', 15000.00, 'Uthiramerur ', '1', '1 years 3 months', ' ', 1, '2026-01-13 05:40:50', 0, NULL, 0, NULL, 1),
(11303, 28108, 'Just dial, jobixoindia ', 'Telesales ', '2023-02-27', 18000.00, '2025-12-31', 18000.00, 'Chennai ', '1', '2 years 10 months', ' Project shutdown ', 1, '2026-01-13 06:19:06', 0, NULL, 0, NULL, 1),
(11304, 28109, 'infocom network private limited', 'relationship manager', '2024-08-08', 5.00, '2025-02-13', 30000.00, 'chennai', '1', '0 years 6 months', ' For better growth', 1, '2026-01-13 06:23:56', 0, NULL, 0, NULL, 1),
(11305, 28110, 'justdial pvt ltd', 'tele marketing', '2024-07-04', 17000.00, '2025-05-09', 21000.00, 'little mount', '1', '0 years 10 months', 'personal issue', 1, '2026-01-13 06:39:17', 0, NULL, 0, NULL, 1),
(11306, 28112, 'HDB Financial services ', 'Senior Telecaller ', '2021-10-11', 11.00, '2023-04-01', 13000.00, 'Greams road ', '1', '1 years 5 months', ' Health issues and long distance ', 1, '2026-01-13 07:38:15', 0, NULL, 0, NULL, 1),
(11307, 28085, 'Integrated enterprise india private limited ', 'Relationship manager ', '2024-08-01', 13000.00, '2025-12-12', 16500.00, 'Raja annamalai puram', '1', '1 years 4 months', ' My previous role was a target-based sales position with long working hours. Due to health considerations, I am now seeking a role that offers better work-life balance and long-term stability.', 1, '2026-01-13 12:41:41', 0, NULL, 0, NULL, 1),
(11308, 28117, 'Yes Bank', 'Fraud Risk Analyst ', '2024-10-23', 229000.00, '2025-10-30', 229000.00, 'Chennai', '1', '1 years 0 months', ' Due to long hours work I\'m unable to keep up Personal life to enjoy', 1, '2026-01-14 05:15:40', 0, NULL, 0, NULL, 1),
(11309, 28117, 'Sagility ', 'Trainee Process Consultant', '2023-06-06', 204000.00, '2024-01-10', 204000.00, 'Chennai ', '1', '0 years 7 months', '. ', 1, '2026-01-14 05:17:42', 0, NULL, 0, NULL, 1),
(11310, 28118, 'Mam tubes and pipes ', 'Chennai ', '2021-02-01', 20000.00, '2025-08-05', 20000.00, 'Chennai ', '1', '4 years 6 months', ' Medical issue ', 1, '2026-01-14 06:51:45', 0, NULL, 0, NULL, 1),
(11311, 28119, 'Kinara capital limited ', 'Senior Sales officer ', '2024-12-18', 400000.00, '2025-09-18', 400000.00, 'Bangalore ', '1', '0 years 9 months', ' Aquasation ', 1, '2026-01-14 07:20:03', 0, NULL, 0, NULL, 1),
(11312, 28119, 'Au small finance Bank limited ', 'Manager ', '2022-06-11', 400000.00, '2024-11-13', 400000.00, 'Bellandur ', '1', '2 years 5 months', 'Personal reasons ', 1, '2026-01-14 07:21:48', 0, NULL, 0, NULL, 1),
(11313, 28120, 'eos globe', 'customer service', '2025-09-01', 21700.00, '2025-12-03', 21700.00, 'chennai', '1', '0 years 3 months', ' process closed ', 1, '2026-01-14 07:26:23', 0, NULL, 0, NULL, 1),
(11314, 28123, 'HDB FINANCIAL SERVICES LTD ', 'Senior Telecalling officer ', '2024-08-21', 12500.00, '2026-01-07', 13300.00, 'Thousand Lights ', '1', '1 years 4 months', ' Salary is not reasonable ', 1, '2026-01-14 11:29:20', 0, NULL, 0, NULL, 1),
(11315, 28124, 'Cafs', 'Senior relationship manager', '2024-08-22', 192000.00, '2025-09-30', 211000.00, 'Spencer plaza', '1', '1 years 1 months', ' Work life balance', 1, '2026-01-16 07:12:40', 0, NULL, 0, NULL, 1),
(11316, 28127, 'APAC FINANCIAL SERVICES PVT LTD ', 'Relationship Apprentice ', '2024-12-09', 12000.00, '2025-11-30', 144000.00, 'Thiruvarur ', '1', '0 years 11 months', 'Due to salary negotiable. Company holding the approval because of financial year end.', 1, '2026-01-17 09:59:28', 0, NULL, 0, NULL, 1),
(11317, 28130, 'HDB FINANCIAL SERVICES ', 'Sales executive ', '2022-01-03', 15000.00, '2026-08-09', 15000.00, 'Mount road', '1', '4 years 7 months', ' ', 1, '2026-01-19 04:37:05', 0, NULL, 0, NULL, 1),
(11318, 28136, 'Global health care ', 'Intern', '2025-02-21', 14000.00, '2025-09-30', 14000.00, 'Egmore ', '1', '0 years 7 months', ' Project end', 1, '2026-01-19 05:01:25', 0, NULL, 0, NULL, 1),
(11319, 28137, 'Flipkart ', 'Operations executive ', '2022-03-22', 23000.00, '2024-03-19', 23000.00, 'Chennai ', '1', '1 years 11 months', 'Personal reasons ', 1, '2026-01-19 05:12:19', 0, NULL, 0, NULL, 1),
(11320, 28134, 'HVF', 'Stenographer', '2024-09-23', 22000.00, '2025-09-23', 22000.00, 'Avadi', '1', '1 years 0 months', ' Central government contract', 1, '2026-01-19 05:32:06', 0, NULL, 0, NULL, 1),
(11321, 28141, 'HDFC Bank ', 'Relationship manager ', '2023-03-03', 16.00, '2024-09-24', 18000.00, 'Thousands light ', '1', '1 years 6 months', ' I got married ', 1, '2026-01-19 06:33:39', 0, NULL, 0, NULL, 1),
(11322, 28142, 'KANEST PROPERTIES ', 'Tellecaller', '2025-05-05', 16000.00, '2025-11-12', 16000.00, 'Ashok nagar', '1', '0 years 6 months', ' Distance matter ', 1, '2026-01-19 07:30:31', 0, NULL, 0, NULL, 1),
(11323, 28143, 'SBI CREDIT CARDS ', 'Tellecaller ', '2025-04-08', 17000.00, '2025-10-15', 17000.00, 'Thousand lights ', '1', '0 years 6 months', ' Health issues \n', 1, '2026-01-19 08:01:30', 0, NULL, 0, NULL, 1),
(11324, 28150, 'HCL', 'Customer service representative ', '2019-01-21', 12000.00, '2021-05-28', 12000.00, 'Chennai', '1', '2 years 4 months', ' Low salary ', 1, '2026-01-19 12:48:34', 0, NULL, 0, NULL, 1),
(11325, 28150, 'Cognizant ', 'Senior process executive ', '2021-06-08', 17000.00, '2023-11-01', 22000.00, 'Chennai', '1', '2 years 4 months', 'Better opportunities ', 1, '2026-01-19 12:50:15', 0, NULL, 0, NULL, 1),
(11326, 28150, 'Kavi india', 'Claims processing analsyt ', '2024-06-24', 28200.00, '2025-08-29', 28900.00, 'Chennai', '1', '1 years 2 months', 'Married recently ', 1, '2026-01-19 12:51:36', 0, NULL, 0, NULL, 1),
(11327, 28153, 'Matrimony.com', 'Relationship manager ', '2024-12-20', 27000.00, '2025-06-18', 27000.00, 'Adayar', '1', '0 years 5 months', ' HNI Malayalam process was closed', 1, '2026-01-20 04:56:05', 0, NULL, 0, NULL, 1),
(11328, 28153, 'Markets of1', 'Telesales executive ', '2023-07-13', 15000.00, '2024-10-29', 16000.00, 'Little Mount ', '1', '1 years 3 months', 'Salary hike ', 1, '2026-01-20 04:58:56', 0, NULL, 0, NULL, 1),
(11329, 28153, 'Peldano india ', 'Customer support Executive ', '2022-07-01', 6000.00, '2023-06-10', 7500.00, 'Kollam ', '1', '0 years 11 months', 'Salary hike ', 1, '2026-01-20 05:01:44', 0, NULL, 0, NULL, 1),
(11330, 28147, 'Nila travels ', 'Telecaller ', '2025-07-20', 12000.00, '2026-01-10', 10000.00, 'Chennai ', '1', '0 years 5 months', ' Health issues ', 1, '2026-01-20 05:11:45', 0, NULL, 0, NULL, 1),
(11331, 28148, 'Nila travels Service', 'Tellecalling ', '2025-06-02', 12000.00, '2026-01-09', 10000.00, 'Thanjavur', '1', '0 years 7 months', ' Low salary ', 1, '2026-01-20 05:12:05', 0, NULL, 0, NULL, 1),
(11332, 28148, 'Nila Travels', 'Tellecalling ', '2025-06-03', 12000.00, '2026-01-10', 10000.00, 'Thanjavur ', '1', '0 years 7 months', 'Low salary ', 1, '2026-01-20 05:13:19', 0, NULL, 0, NULL, 1),
(11333, 28154, 'Aarvee Traders ', 'Nolambur ', '2025-06-01', 14000.00, '2025-11-30', 14000.00, 'Mugappair West ', '1', '0 years 5 months', 'I want to improve my skills and take on more responsibilities.', 1, '2026-01-20 05:29:02', 0, NULL, 0, NULL, 1),
(11334, 28157, 'real estate', 'CRM Executive ', '2023-09-08', 23000.00, '2025-12-02', 25000.00, 'Guindy ', '1', '2 years 2 months', ' Mother Health issues and not giving to leave ', 1, '2026-01-20 07:29:49', 0, NULL, 0, NULL, 1),
(11335, 28159, 'Au small finance bank ltd ', 'Manager', '2025-06-12', 68000.00, '2026-02-03', 68000.00, 'Chennai', '1', '0 years 7 months', ' Better opportunity ', 1, '2026-01-20 09:17:01', 0, NULL, 0, NULL, 1),
(11336, 28160, 'cameo', 'senior executie', '2024-11-21', 21000.00, '2025-12-30', 21000.00, 'chennai', '1', '1 years 1 months', ' ', 1, '2026-01-20 09:43:55', 154, '2026-01-20 03:14:51', 0, NULL, 1),
(11337, 28162, 'Policybazaar. Com', 'Associate sales consultant ', '2018-03-03', 1.00, '2021-10-05', 28000.00, 'Haryana', '1', '3 years 7 months', ' Lockdown ', 1, '2026-01-20 10:07:07', 0, NULL, 0, NULL, 1),
(11338, 28162, 'Spinny cars', 'Executive supply', '2021-12-02', 1.00, '2022-12-03', 29000.00, 'Chennai ', '1', '1 years 0 months', 'Better pay', 1, '2026-01-20 10:08:48', 0, NULL, 0, NULL, 1),
(11339, 28165, 'Sri Saairam Associates', 'Accountant', '2023-08-04', 8000.00, '2025-12-20', 13000.00, 'Villupuram', '1', '2 years 4 months', 'PG examination (M.com-cooperative management ) ', 1, '2026-01-20 01:55:35', 0, NULL, 0, NULL, 1),
(11340, 28167, 'Hdb Financial services ', 'Senior sales Officer ', '2024-03-28', 28.00, '2025-05-29', 17766.00, 'Thousand lights ', '1', '1 years 2 months', ' Personal Health Issues ', 1, '2026-01-21 05:51:30', 0, NULL, 0, NULL, 1),
(11341, 28175, 'Allen career institute ', 'Senior marketing executive ', '2025-11-20', 35000.00, '1970-01-01', 35000.00, 'Chennai ', '2', '0 years 2 months', ' Its a field sales job ', 1, '2026-01-21 05:57:30', 0, NULL, 0, NULL, 1),
(11342, 28166, 'MMC Infotech Pvt Ltd ', 'Branch support (customer care executive)', '2022-09-02', 13360.00, '2025-12-31', 16560.00, 'Acropolis, ttk road ', '1', '3 years 3 months', ' For career development ', 1, '2026-01-21 06:51:25', 0, NULL, 0, NULL, 1),
(11343, 28177, 'Mmc infotech ', 'Branch support (customer care)', '2023-02-09', 13360.00, '2025-12-31', 16560.00, 'Acropolis ,tTk road ', '1', '2 years 10 months', ' Career growth ', 1, '2026-01-21 06:51:25', 0, NULL, 0, NULL, 1),
(11344, 28178, 'Cedar business solution ', 'Pachayapass ', '2025-05-01', 13000.00, '2026-01-06', 14000.00, 'Amijikarai', '1', '0 years 8 months', ' Family issues ', 1, '2026-01-21 07:41:28', 0, NULL, 0, NULL, 1),
(11345, 28179, 'HBCC CLUB ', 'ASSISTANT COACH', '2016-01-02', 1500.00, '2018-12-31', 20000.00, 'BANGALORE', '1', '2 years 11 months', 'COVID', 162, '2026-01-21 01:16:48', 162, '2026-01-21 01:17:49', 0, NULL, 1),
(11346, 28179, 'CHAIRMAN VEN VERT', 'TECHNICIAN ', '2019-01-02', 20000.00, '2021-12-31', 22000.00, 'BANGALORE', '1', '2 years 11 months', 'NO PROPER SALARY & TRANSFERS', 162, '2026-01-21 01:19:47', 0, NULL, 0, NULL, 1),
(11347, 28179, 'JAMIND TECHNOLOGY PVT LTD', 'OPERATOR TECHNICIAN', '2023-02-01', 25000.00, '2023-12-31', 25000.00, 'BANGALORE', '1', '0 years 10 months', 'CAREER CHANGE', 162, '2026-01-21 01:21:32', 0, NULL, 0, NULL, 1),
(11348, 28179, 'PAYTON HEALTHCARE PVT LTD', 'RECOVERY AGENT ', '2024-01-01', 38000.00, '1970-01-01', 45000.00, 'BANGALORE', '2', '2 years 0 months', 'HIRED FOR DIFFERENT ROLES AND HAD TO MANAGE OTHER WORKS TOO.', 162, '2026-01-21 01:23:40', 0, NULL, 0, NULL, 1),
(11349, 28180, 'Lokesh waran ', 'Salam merit college back side', '2021-07-01', 18.50, '2023-07-01', 20.00, 'Egmore', '1', '2 years 0 months', ' ', 1, '2026-01-21 08:21:25', 0, NULL, 0, NULL, 1),
(11350, 28183, 'Integrated registry management services pvt ltd ', 'Senior customer service executive ', '2019-01-21', 8000.00, '2025-10-25', 22000.00, 'T.nagar', '1', '6 years 9 months', ' Career growth and salary hike ', 1, '2026-01-21 01:21:03', 0, NULL, 0, NULL, 1),
(11351, 28185, 'Hope placement service ', 'Telecalling ', '2023-06-12', 12000.00, '2024-09-22', 14000.00, 'Pudukkottai ', '1', '1 years 3 months', ' Praganacy', 1, '2026-01-22 04:46:47', 0, NULL, 0, NULL, 1),
(11352, 28181, 'Allsec technology ', 'Telecaller', '2024-06-10', 15000.00, '2025-01-19', 15000.00, 'Velachery ', '1', '1 years 7 months', ' Parents health issues ', 1, '2026-01-22 06:00:50', 0, NULL, 0, NULL, 1),
(11353, 28151, 'Shriram Finance ', 'Business executive ', '2024-05-17', 20000.00, '2026-01-09', 19000.00, 'Saravanampatti ', '1', '1 years 7 months', 'Personal issues ', 1, '2026-01-22 06:01:13', 0, NULL, 0, NULL, 1),
(11354, 28190, 'sangam ayurveda ', 'customer care executive', '2024-08-01', 16000.00, '2025-04-20', 17000.00, 'work from home ', '1', '0 years 8 months', ' It was a contract job ', 1, '2026-01-22 06:18:30', 0, NULL, 0, NULL, 1),
(11355, 28195, 'Sparkitx ', 'Junior developer ', '2021-10-20', 10000.00, '2023-02-06', 10000.00, 'Kodambakkam ', '1', '1 years 3 months', ' For career growth ', 1, '2026-01-22 06:22:25', 1, '2026-01-22 06:22:58', 0, NULL, 1),
(11356, 28184, 'emerge global tech', 'Business development executive', '2024-05-27', 12000.00, '2025-12-29', 20000.00, 'kathipara', '1', '1 years 7 months', ' relocation of house', 1, '2026-01-22 06:43:28', 0, NULL, 0, NULL, 1),
(11357, 28200, 'EBIXCASH WORLD MONEY LIMITED ', 'Executive ', '2024-02-02', 17000.00, '2025-11-30', 22500.00, 'Chennai', '1', '1 years 9 months', ' Last company I worked for 12 hrs shift  and night shift also  my health was very bad that\'s why I\'m relieving that company ', 1, '2026-01-22 01:27:57', 0, NULL, 0, NULL, 1),
(11358, 28205, 'Khazana corporate office ', 'Executive ', '2024-12-10', 23000.00, '2025-12-16', 230000.00, 'Chennai ', '1', '1 years 0 months', ' Salary issue and there is any growth ', 1, '2026-01-23 05:29:48', 0, NULL, 0, NULL, 1),
(11359, 28207, 'Airtel telecom pvt Ltd ', 'Process associate ', '2021-03-22', 1.00, '2024-08-28', 21000.00, 'Chennai ', '1', '3 years 5 months', ' ', 1, '2026-01-23 05:37:28', 0, NULL, 0, NULL, 1),
(11360, 28206, 'M nellaiya rolling mill pvt Ltd ', 'Customer sales executive ', '2024-05-27', 22000.00, '2025-06-21', 22000.00, 'Chennai ', '1', '1 years 0 months', ' For career growth ', 1, '2026-01-23 05:40:56', 0, NULL, 0, NULL, 1),
(11361, 28206, 'Bankbazaar ', 'Customer Relationship officer', '2022-06-18', 15000.00, '2024-02-11', 20000.00, 'Chennai ', '1', '1 years 7 months', 'Career growth ', 1, '2026-01-23 05:42:58', 0, NULL, 0, NULL, 1),
(11362, 28208, 'I marque solutions private limited ', 'Customer support executive ', '2023-11-07', 15000.00, '2024-12-01', 15000.00, 'T.NAGAR', '1', '1 years 0 months', ' Process closed ', 1, '2026-01-23 06:35:56', 0, NULL, 0, NULL, 1),
(11363, 28208, 'HDB Finance limited ', 'Relationship executive ', '2024-12-10', 17000.00, '2025-12-01', 17000.00, 'Anna Nagar ', '1', '0 years 11 months', 'Salary ', 1, '2026-01-23 06:38:23', 0, NULL, 0, NULL, 1),
(11364, 28209, 'l and T finance ', 'Tele caller ', '2025-01-02', 17.00, '2025-12-01', 16.00, 'KR Puram ', '1', '0 years 10 months', ' Salary not perfect ', 1, '2026-01-23 07:04:21', 0, NULL, 0, NULL, 1),
(11365, 28211, 'Vmaps', 'Gis analysis ', '2022-08-30', 20.00, '2025-09-30', 25.00, 'Banglore ', '1', '3 years 1 months', ' Health issues ', 1, '2026-01-23 08:36:04', 0, NULL, 0, NULL, 1),
(11366, 28213, 'greater chennai corporation', 'public grievance', '2024-10-10', 18000.00, '1970-01-01', 18000.00, 'rippon building ', '2', '1 years 3 months', ' Low salary basis and rotional shifts ', 1, '2026-01-24 07:06:49', 1, '2026-01-24 07:12:15', 0, NULL, 1),
(11367, 28214, 'Greater chennai corporation 1913 call center ', 'Call center executive ', '2024-08-01', 18000.00, '1970-01-01', 18000.00, 'Ripon building,perimet ,chennai', '2', '1 years 5 months', ' Shift based and no festival leave', 1, '2026-01-24 07:09:48', 0, NULL, 0, NULL, 1),
(11368, 28213, 'ceedar business solution ', 'recovery agent', '2024-05-06', 15000.00, '2024-10-03', 15000.00, 'arumbakkam', '1', '1 years 8 months', 'That procees can be closed in ceedar business solution ', 1, '2026-01-24 07:11:34', 0, NULL, 0, NULL, 1),
(11369, 28216, 'Vizza Fintech ', 'Claim support consultant ', '2025-07-18', 16000.00, '1970-01-01', 16000.00, 'Teynampet', '2', '0 years 6 months', 'The contract was closed.', 1, '2026-01-24 08:04:35', 0, NULL, 0, NULL, 1),
(11370, 28215, 'Rkv Residency ', 'Accountant ', '2023-08-23', 17000.00, '2026-01-15', 18000.00, 'Krishnagiri ', '1', '2 years 4 months', ' ', 1, '2026-01-24 09:06:17', 0, NULL, 0, NULL, 1),
(11371, 28219, 'VVASAI Software Solutions private limited ', 'Quality Analyst ', '2023-12-01', 7000.00, '2025-07-31', 10000.00, 'Thanjavur ', '1', '1 years 7 months', 'Offered salary did not meet my expectations', 1, '2026-01-24 09:42:37', 0, NULL, 0, NULL, 1),
(11372, 28221, 'JJ Hall Marking Centre ', 'Account cum XRF', '2024-09-01', 15000.00, '2025-05-06', 15000.00, 'Trichy ', '1', '0 years 8 months', 'Working hours & location ', 1, '2026-01-24 11:22:44', 0, NULL, 0, NULL, 1),
(11373, 28222, 'Equitas Small Finance  Bank', 'Sakes Associate', '2025-04-03', 13000.00, '2025-07-02', 13000.00, 'Poontgootam, Thiruvarur', '1', '0 years 2 months', ' Work load', 1, '2026-01-24 11:34:16', 0, NULL, 0, NULL, 1),
(11374, 28230, 'Policybazaar.com', 'Relationship manager ', '2024-12-28', 25800.00, '2025-06-30', 25800.00, 'Bangalore ', '1', '0 years 6 months', ' Accident ', 1, '2026-01-27 04:39:04', 0, NULL, 0, NULL, 1),
(11375, 28232, 'Yung Media ', 'Frontend developer ', '2025-07-01', 5000.00, '2025-09-03', 6000.00, 'Velachery ', '1', '0 years 2 months', ' This is Internship ', 1, '2026-01-27 04:57:36', 0, NULL, 0, NULL, 1),
(11376, 28233, 'Tranz India ', 'Tele caller ', '2023-05-27', 20000.00, '2025-12-20', 20000.00, 'Chennai Tambaram', '1', '2 years 6 months', ' For my career growth ', 1, '2026-01-27 05:06:34', 0, NULL, 0, NULL, 1),
(11377, 28235, 'Naveen hospital ', 'Front office executive ', '2022-06-15', 15000.00, '2024-12-30', 15000.00, 'Coimbatore ', '1', '2 years 6 months', ' ', 1, '2026-01-27 05:10:06', 0, NULL, 0, NULL, 1),
(11378, 28235, 'Delta super ', 'Console Executive ', '2024-08-07', 12500.00, '2025-05-30', 12500.00, 'Thanjavur ', '1', '0 years 9 months', 'Health Problem ', 1, '2026-01-27 05:11:16', 0, NULL, 0, NULL, 1),
(11379, 28240, 'Star health insurance  ', 'Officer', '2022-12-14', 16000.00, '2024-12-18', 18500.00, 'Near Satyam Cinemas', '1', '2 years 0 months', 'Injury in leg ', 1, '2026-01-27 06:14:21', 0, NULL, 0, NULL, 1),
(11380, 28244, 'Mis executive ', 'Ranipet ', '2024-02-07', 18000.00, '2025-12-19', 18000.00, 'Data entry operations ', '1', '1 years 10 months', ' Layoffs for reason ', 1, '2026-01-27 06:42:10', 0, NULL, 0, NULL, 1),
(11381, 28244, 'Mis executive ', 'Ranipet ', '2024-02-07', 18000.00, '2025-12-19', 18000.00, 'Data entry operations ', '1', '1 years 10 months', ' Layoffs for reason ', 1, '2026-01-27 06:42:10', 0, NULL, 0, NULL, 1),
(11382, 28245, 'Pramuk health service ', 'Tele caller ', '2023-02-07', 13.00, '1970-01-01', 18.00, 'Shanthi Nagar ', '2', '2 years 11 months', ' Health issues ', 1, '2026-01-27 07:15:15', 0, NULL, 0, NULL, 1),
(11383, 28245, 'Vizza insurance ', 'Team leader ', '2023-11-06', 13.00, '1970-01-01', 18.00, 'Shanthi Nagar ', '2', '2 years 2 months', 'Marriage ', 1, '2026-01-27 07:16:28', 0, NULL, 0, NULL, 1),
(11384, 28202, 'ison exprience ', 'tellecaller', '2025-07-20', 7.00, '1970-01-01', 15000.00, 'perungudi', '2', '0 years 6 months', ' ', 1, '2026-01-27 08:15:01', 0, NULL, 0, NULL, 1),
(11385, 28259, 'Collection office', 'Tele caller', '2026-01-28', 12.00, '1970-01-01', 15.00, 'Banashankari', '2', '0 years 0 months', ' Health issues', 1, '2026-01-28 06:05:28', 0, NULL, 0, NULL, 1),
(11386, 28259, 'Vizza insurance', 'Tele caller', '2026-01-28', 15.00, '1970-01-01', 15.00, 'Shanthi nagar', '2', '0 years 0 months', 'Personal reason', 1, '2026-01-28 06:07:14', 0, NULL, 0, NULL, 1),
(11387, 28258, 'First source ', 'Underwriter', '2025-09-01', 16500.00, '1970-01-01', 18000.00, 'Chennai ', '2', '0 years 4 months', ' Lay off to next project ', 1, '2026-01-28 06:09:13', 0, NULL, 0, NULL, 1),
(11388, 28266, 'JSJ life Insurance Company ', 'TeleCalling ', '2021-01-07', 18000.00, '2023-01-07', 25000.00, 'Chennai', '1', '2 years 0 months', ' Company shifted to Tambaram ', 1, '2026-01-28 07:23:06', 0, NULL, 0, NULL, 1),
(11389, 28266, 'Bajaj Finance ', 'Team Lead', '2023-02-07', 35000.00, '2025-12-29', 35000.00, 'Chennai', '1', '2 years 10 months', 'Company shifted to Ambattur.', 1, '2026-01-28 07:24:51', 0, NULL, 0, NULL, 1),
(11390, 28273, 'CazaPrime ', 'Research Consultant ', '2025-09-01', 180000.00, '2026-01-13', 15000.00, 'Coimbatore ', '1', '0 years 4 months', ' I want to explore my skill into an organisation ', 1, '2026-01-28 09:16:20', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11391, 28264, 'Greater chennai corporation ', 'Tele calling ', '2025-08-03', 16500.00, '2026-01-28', 16500.00, 'Ribbon building ', '1', '0 years 5 months', ' I do not have an experience or relieving letter, payslips, or PF records, as PF was not processed. So Im resign ', 1, '2026-01-28 10:26:54', 0, NULL, 0, NULL, 1),
(11392, 28274, 'k.c.nagaraj & co', 'accountant', '2022-05-02', 7500.00, '2023-04-30', 7500.00, 'coimbatore', '1', '0 years 11 months', ' Personal', 1, '2026-01-28 01:23:40', 0, NULL, 0, NULL, 1),
(11393, 28274, 'art workers fashion', 'accountant and merchadiser', '2023-04-03', 18500.00, '2024-03-30', 18500.00, 'coimbatore', '1', '0 years 11 months', 'They asked me to do their personal choirs', 1, '2026-01-28 01:25:20', 0, NULL, 0, NULL, 1),
(11394, 28279, 'Tusker global', 'Campaign executive', '2024-03-05', 14000.00, '2026-01-23', 17500.00, 'Chennai', '1', '1 years 10 months', ' After gaining foundational experience in accounts, I explored a role as a Campaign Executive to build my communication and client-facing skills. While it was a valuable detour, I realized my strengths and passion lie in accounting. Now, I’m refocusing on my core expertise and pursuing CMA (US) to advance my career in finance and management accounting', 1, '2026-01-28 02:48:45', 0, NULL, 0, NULL, 1),
(11395, 28284, 'Idfc first bharat', 'Relationship Manager', '2023-10-03', 15000.00, '2025-02-11', 22000.00, 'Thanjavur ', '1', '1 years 4 months', ' Went to Abroad', 1, '2026-01-29 05:58:16', 0, NULL, 0, NULL, 1),
(11396, 28286, 'Collxpert resolutions private limited ', 'Telecalling ', '2025-03-10', 20000.00, '2026-01-31', 20000.00, 'Thousands lights ', '1', '0 years 10 months', 'Salary issue ', 1, '2026-01-29 06:11:41', 0, NULL, 0, NULL, 1),
(11397, 28286, 'Collxpert resolutions ', 'Caller', '2024-03-05', 20000.00, '2026-01-31', 20000.00, 'Thousand lights ', '1', '1 years 10 months', 'Salary issue ', 1, '2026-01-29 06:13:33', 0, NULL, 0, NULL, 1),
(11398, 28287, 'shamim', 'telecaller', '2025-07-17', 23.00, '2025-12-10', 23.00, 'madhavaram', '1', '0 years 4 months', 'Due to some personal reasons, I was unable to continue my previous job, so I had to leave it. Now I am actively looking for a new job.', 1, '2026-01-29 06:50:18', 0, NULL, 0, NULL, 1),
(11399, 28287, 'shamim', 'influncer marketing coordinator', '2025-07-17', 23.00, '2025-12-10', 23.00, 'madhavaram', '1', '0 years 4 months', 'Due to some personal reasons, I was unable to continue my previous job, so I had to leave it. Now I am actively looking for a new job.', 1, '2026-01-29 06:54:05', 0, NULL, 0, NULL, 1),
(11400, 28287, 'shamim', 'influncer marketing coordinator', '2025-07-17', 23.00, '2025-12-10', 23.00, 'madhavaram', '1', '0 years 4 months', 'Due to some personal reasons, I was unable to continue my previous job, so I had to leave it. Now I am actively looking for a new job.', 1, '2026-01-29 06:54:05', 0, NULL, 0, NULL, 1),
(11401, 28290, 'VENTURE GLOBAL TECH ( AP INFOTECH)  ', 'CUSTOMER SERVICE EXECUTIVE(SUPPORT ENGINEER)', '2013-11-04', 13000.00, '2017-11-30', 13000.00, 'Vadapalani', '1', '4 years 0 months', 'Process Closed', 1, '2026-01-29 07:27:54', 0, NULL, 0, NULL, 1),
(11402, 28290, 'Venture Global Tech', 'IT Support L1 helpdesk', '2018-04-04', 18000.00, '2022-07-11', 18000.00, 'Anna Nagar', '1', '4 years 3 months', 'Education Purpose', 1, '2026-01-29 07:31:23', 0, NULL, 0, NULL, 1),
(11403, 28290, 'SRI Guru constructions', 'Support Executive Coordinator', '2023-06-16', 22000.00, '2024-12-16', 22000.00, 'Royapuram', '1', '1 years 6 months', 'Education Purpose and family issues', 1, '2026-01-29 07:33:52', 0, NULL, 0, NULL, 1),
(11404, 28291, 'Layer Codes Technology ', 'Mern start Developer', '2024-12-01', 10000.00, '2025-12-04', 15000.00, 'Villupuram ', '1', '1 years 0 months', ' ', 1, '2026-01-29 08:25:51', 0, NULL, 0, NULL, 1),
(11405, 28281, 'Sahi saathi matrimony ', 'Service ', '2025-05-14', 20000.00, '2026-01-27', 18000.00, 'Chennai ', '1', '0 years 8 months', ' Health issue ', 1, '2026-01-29 11:11:34', 0, NULL, 0, NULL, 1),
(11406, 28293, 'Justdial ', 'Telesales excutive ', '2025-07-03', 23000.00, '2026-01-13', 17600.00, 'Little Mount ', '1', '0 years 6 months', 'Career growth+ salary growth ', 1, '2026-01-29 01:27:20', 0, NULL, 0, NULL, 1),
(11407, 28294, 'workle workforce', 'ast operation supervior', '2023-09-01', 35000.00, '2026-01-29', 35000.00, 'singapore', '1', '2 years 4 months', ' ', 1, '2026-01-29 05:40:32', 0, NULL, 0, NULL, 1),
(11408, 28305, 'myntra delivery ', 'delivary boy', '2019-01-01', 15000.00, '2025-04-01', 25.00, 'indira nagar', '1', '6 years 3 months', ' Healthy issue', 1, '2026-01-30 06:33:57', 0, NULL, 0, NULL, 1),
(11409, 28305, 'vizza insurance Company ', 'tele caller', '2025-04-29', 18.00, '2025-09-03', 25.00, 'shanthi nagar ', '1', '0 years 4 months', 'Branch closed ', 1, '2026-01-30 06:36:40', 0, NULL, 0, NULL, 1),
(11410, 28278, 'SM associate risk management pvt ltd ', 'Tele calling ', '2020-11-12', 13500.00, '2024-05-31', 20000.00, 'Kotturpuram', '1', '3 years 6 months', ' Maternity ', 1, '2026-01-30 06:48:59', 0, NULL, 0, NULL, 1),
(11411, 28306, 'Sm associates risk management pvt Ltd ', 'Tele caller ', '2020-07-10', 10000.00, '2024-08-31', 20000.00, 'Kotturpuram', '1', '4 years 1 months', ' Maternity ', 1, '2026-01-30 07:03:37', 0, NULL, 0, NULL, 1),
(11412, 28309, 'Bajaj Finance ', 'Sales officer ', '2024-06-06', 19000.00, '2025-11-30', 19000.00, 'Chennai', '1', '1 years 5 months', ' ', 1, '2026-01-30 07:03:59', 0, NULL, 0, NULL, 1),
(11413, 28314, 'AAconstruction ', 'Purchase incharge site supervisor and marketing ex', '2018-07-17', 18000.00, '2021-10-20', 30000.00, 'Perambur ', '1', '3 years 3 months', ' Project not in flow', 1, '2026-01-30 09:15:24', 0, NULL, 0, NULL, 1),
(11414, 28314, 'Bank bazaar ', 'Customer Relationship executive ', '2021-11-25', 20000.00, '2023-11-16', 25000.00, 'Ambattur ', '1', '1 years 11 months', 'Project delined ', 1, '2026-01-30 09:18:01', 0, NULL, 0, NULL, 1),
(11415, 28314, 'Airport Authority Of India ', 'Customer Relationship Officer ', '2023-11-25', 30000.00, '2025-12-16', 30000.00, 'Meenambakkam ', '1', '2 years 0 months', 'Contract completed ', 1, '2026-01-30 09:20:25', 0, NULL, 0, NULL, 1),
(11416, 28313, 'Sbicap securities ', 'Sales executive ', '2024-07-29', 15000.00, '2025-12-31', 15000.00, 'Annanagar', '1', '1 years 5 months', ' To new company ', 1, '2026-01-30 09:20:42', 0, NULL, 0, NULL, 1),
(11417, 28329, 'Tecalling ', 'Voice process ', '2024-10-08', 20000.00, '2025-12-26', 20000.00, 'Chennai ', '1', '1 years 2 months', ' Health issues ', 1, '2026-01-31 02:09:57', 0, NULL, 0, NULL, 1),
(11418, 28336, 'Bluechip corporate investment centre private limit', 'Branch assistant ', '2024-09-03', 14020.00, '2025-11-29', 16800.00, 'Hospet ', '1', '1 years 2 months', 'Moving to a new industry or exploring a different career path.', 1, '2026-02-02 01:53:37', 0, NULL, 0, NULL, 1),
(11419, 28341, 'Benchmark tea and chocolate factory ooty ', 'Ecommerce management and customer care ', '2023-11-03', 15000.00, '2024-10-03', 15000.00, 'Ooty ', '1', '0 years 11 months', ' I did not find any growth there ', 1, '2026-02-02 05:28:17', 0, NULL, 0, NULL, 1),
(11420, 28342, 'Jio reliance ', 'Telesales and sales executive ', '2024-03-05', 13000.00, '1970-01-01', 15000.00, 'Kanchipuram ', '2', '1 years 10 months', ' ', 1, '2026-02-02 05:55:01', 0, NULL, 0, NULL, 1),
(11421, 28343, 'Cial and ampera', 'Bpo', '2023-09-04', 21500.00, '2025-09-24', 27000.00, 'Nandanam', '1', '2 years 0 months', ' Management is  incentive not in regular', 1, '2026-02-02 06:05:05', 0, NULL, 0, NULL, 1),
(11422, 28335, 'Reenamohan ', 'Senior tell caller ', '2023-11-23', 13000.00, '2026-01-03', 16800.00, 'Chennai ', '1', '2 years 1 months', ' Salary low', 1, '2026-02-02 06:18:50', 0, NULL, 0, NULL, 1),
(11423, 28344, 'shriram life insurance ', 'senior executive', '2024-10-02', 24000.00, '2025-03-31', 24000.00, 'egmore chennai', '1', '0 years 5 months', 'Company closed ', 1, '2026-02-02 06:42:50', 0, NULL, 0, NULL, 1),
(11424, 28332, 'paramount tpa', 'customer relationship executive', '2024-12-12', 16000.00, '2025-05-06', 16000.00, 'nelson manikam road', '1', '0 years 4 months', 'Fathers health issue', 1, '2026-02-02 06:43:14', 0, NULL, 0, NULL, 1),
(11425, 28346, 'Edelweiss life insurance ', 'Senior Financial Executive ', '2025-10-22', 25158.00, '1970-01-01', 1.00, 'Jayanagar', '2', '0 years 3 months', ' ', 1, '2026-02-02 07:08:19', 0, NULL, 0, NULL, 1),
(11426, 28346, 'Ideal property management ', 'Sales Executive ', '2023-04-09', 34000.00, '2024-12-12', 1.00, 'Patna', '1', '1 years 8 months', 'Changing of location ', 1, '2026-02-02 07:10:20', 0, NULL, 0, NULL, 1),
(11427, 28346, 'SHIVAAY CONSULTANT AND SOLUTIONS', 'Senior Sales Executive', '2021-12-14', 23000.00, '2023-01-03', 1.00, 'Patna', '1', '1 years 0 months', 'Na', 1, '2026-02-02 07:11:43', 0, NULL, 0, NULL, 1),
(11428, 28346, 'P.N.K Projects Pvt.Ltd', 'Team Leader', '2020-09-17', 18000.00, '2021-10-29', 1.00, 'Patna', '1', '1 years 1 months', 'NA', 1, '2026-02-02 07:12:31', 0, NULL, 0, NULL, 1),
(11429, 28347, 'Ola Electric Technologies private limited', 'Store manager', '2023-10-08', 25000.00, '2026-01-31', 30000.00, 'Kelambakkam, Chennai', '1', '2 years 3 months', ' Daily so many issues and product quality is very low.', 1, '2026-02-02 07:54:09', 0, NULL, 0, NULL, 1),
(11430, 28347, 'Bharti Airtel Private limited', 'Field Sales Executive', '2022-09-30', 18000.00, '2023-09-30', 18000.00, 'Puducherry', '1', '1 years 0 months', 'Health issue for me.', 1, '2026-02-02 07:56:50', 0, NULL, 0, NULL, 1),
(11431, 28347, 'KUN Hyundai Auto Private limited', 'Sales Executive', '2021-02-10', 12000.00, '2022-07-31', 12000.00, 'Puducherry', '1', '1 years 5 months', 'Low Salary and not increment', 1, '2026-02-02 07:59:33', 0, NULL, 0, NULL, 1),
(11432, 28348, 'Culminant Outlook Services Private limited ', 'Hr Recruiter', '2025-02-17', 12000.00, '2026-01-13', 12000.00, 'Chennai ', '1', '0 years 10 months', ' I learned a lot in my current role, but I’m looking for a more stable organization with long-term career opportunities and better exposure in recruitment processes.', 1, '2026-02-02 10:18:34', 0, NULL, 0, NULL, 1),
(11433, 28353, 'NRT&ASSOCIATES ', 'Article Assistant ', '2024-07-20', 12000.00, '2025-10-25', 15000.00, 'Chennai ', '1', '1 years 3 months', ' Completed Articleship ', 1, '2026-02-02 12:44:58', 0, NULL, 0, NULL, 1),
(11434, 28354, 'Tele performance ', 'Agent', '2023-03-15', 30.00, '2026-04-15', 25000.00, 'Ambattur ', '1', '3 years 1 months', ' ', 1, '2026-02-03 06:04:16', 0, NULL, 0, NULL, 1),
(11435, 28366, 'One point one solution ', 'Collection executive ', '2025-07-05', 16000.00, '1970-01-01', 16000.00, 'Kudlu gate Bangalore ', '2', '0 years 6 months', ' Family issues ', 1, '2026-02-03 06:18:44', 0, NULL, 0, NULL, 1),
(11436, 28368, 'Yes bank ', 'Phone banking officer ', '2024-03-13', 15500.00, '2025-07-25', 18500.00, 'Ambattur ', '1', '1 years 4 months', ' Due to medical issue for my mother i relieved and now it got solved now I\'m searching for the job ', 1, '2026-02-03 06:47:33', 0, NULL, 0, NULL, 1),
(11437, 28327, 'Max life insurance ', 'Telecaller ', '2024-03-12', 22000.00, '2025-04-20', 20000.00, 'Pachaipas ', '1', '1 years 1 months', ' Comission base salary ', 1, '2026-02-03 07:28:52', 0, NULL, 0, NULL, 1),
(11438, 28377, 'Exide ', 'Telecaller ', '2023-10-01', 12000.00, '2026-02-15', 15000.00, 'Trichy', '1', '2 years 4 months', ' For career growth ', 1, '2026-02-03 12:40:47', 0, NULL, 0, NULL, 1),
(11439, 28378, 'Vifin Fintech ', 'Backend opration executive ', '2025-06-16', 15000.00, '2025-11-11', 15000.00, 'Teynampet ', '1', '0 years 4 months', 'Product closed ', 1, '2026-02-03 12:55:34', 0, NULL, 0, NULL, 1),
(11440, 28379, 'HDFCBANK ', 'Relationship manager ', '2023-02-05', 15000.00, '2024-12-05', 18000.00, 'Thousand Lights ', '1', '1 years 10 months', ' Traveling issue ', 1, '2026-02-04 04:38:27', 0, NULL, 0, NULL, 1),
(11441, 28380, 'Dhanalakshmi srinivasan ', 'Telwcalling', '2024-12-10', 10000.00, '2026-01-25', 12000.00, 'Thanjavur', '1', '1 years 1 months', ' Salary issue', 1, '2026-02-04 05:30:03', 0, NULL, 0, NULL, 1),
(11442, 28382, 'Schneider electric limited bangalore ', 'Quality department ', '2021-04-01', 16000.00, '2022-04-01', 18500.00, 'Jigani', '1', '1 years 0 months', ' One year contract based ', 1, '2026-02-04 05:37:16', 0, NULL, 0, NULL, 1),
(11443, 28382, 'Bajaj Finserv limited ', 'Sales officer ', '2022-05-01', 14500.00, '2025-12-30', 23000.00, 'Bellary/bangalore ', '1', '3 years 7 months', 'Experience another department ', 1, '2026-02-04 05:39:05', 1, '2026-02-04 05:39:37', 0, NULL, 1),
(11444, 28385, 'Retailsolution ', 'Billing executive', '2022-12-31', 2.00, '2024-12-31', 15000.00, 'mylapore', '1', '2 years 0 months', ' Contract ', 1, '2026-02-04 06:16:44', 0, NULL, 0, NULL, 1),
(11445, 28387, 'Hmt pvt ltd ', 'Telecalller', '2022-06-01', 14500.00, '2023-09-11', 18000.00, 'Chennai', '1', '1 years 3 months', ' ', 1, '2026-02-04 06:43:43', 0, NULL, 0, NULL, 1),
(11446, 28399, 'maruti suzuki ', 'telecaller and customer support ', '2025-08-30', 17000.00, '2026-02-02', 17000.00, 'nandampakkam', '1', '0 years 5 months', 'Not proper incentive ', 1, '2026-02-04 10:18:55', 0, NULL, 0, NULL, 1),
(11447, 28400, 'Equitas small finance Bank ', 'Gummidipoondi ', '2019-05-19', 17000.00, '2025-07-31', 26500.00, 'Gummidipoondi ', '1', '6 years 2 months', ' Nil', 1, '2026-02-04 11:15:12', 0, NULL, 0, NULL, 1),
(11448, 28405, 'The New Indian Express Group ', 'Software Engineer ', '2022-06-20', 5.00, '2024-07-03', 3.36, 'Ambattur', '1', '2 years 0 months', ' Mother Health Issues ', 1, '2026-02-05 04:54:23', 0, NULL, 0, NULL, 1),
(11449, 28394, 'Aspira technology ', 'Telecalling ', '2025-08-01', 9000.00, '2026-01-30', 9000.00, 'Thanjavur ', '1', '0 years 5 months', ' Salary issues ', 1, '2026-02-05 05:25:23', 0, NULL, 0, NULL, 1),
(11450, 28406, 'Aspira technology ', 'Telecaller ', '2025-08-01', 9000.00, '2026-01-30', 9000.00, 'Thanjavur ', '1', '0 years 5 months', ' Salary easuces', 1, '2026-02-05 05:26:02', 0, NULL, 0, NULL, 1),
(11451, 28407, 'Policybazaar.com ', 'Associate sales consultant ', '2024-02-08', 30000.00, '2025-12-03', 30000.00, 'Domlur', '1', '1 years 9 months', 'career growth', 1, '2026-02-05 05:38:22', 0, NULL, 0, NULL, 1),
(11452, 28408, 'THE NEW INDIA ASSURANCE ', 'Sale\'s Process Executive ', '2024-12-09', 3.40, '2026-02-10', 3.40, 'Bangalore ', '1', '1 years 2 months', ' Since it\'s government office they hired on the basis of contract and I had hope that they are going to confirm but I don\'t find postive vibe of confirmation so I resigned the job', 1, '2026-02-05 06:11:41', 0, NULL, 0, NULL, 1),
(11453, 28411, 'ICICI Home finance ', 'Relationship manager ', '2025-11-19', 30.00, '2025-12-22', 23000.00, 'Bangalore ', '1', '0 years 1 months', ' Growth ', 1, '2026-02-05 06:35:53', 0, NULL, 0, NULL, 1),
(11454, 28402, 'tamil matrimony . com', 'sales exectie ', '2024-02-05', 15000.00, '2025-12-20', 15000.00, 'guindY', '1', '1 years 10 months', 'caree growth ', 159, '2026-02-05 01:05:43', 0, NULL, 0, NULL, 1),
(11455, 23623, 'hdfc sales pvt ltd', 'home loan process', '2023-12-01', 11000.00, '2024-10-31', 15000.00, 'vadapalani', '1', '0 years 10 months', ' career Growth', 1, '2026-02-05 07:59:03', 0, NULL, 0, NULL, 1),
(11456, 28414, 'airtel (suraj&co)', 'virtual relationship manger ', '2023-10-13', 15000.00, '2025-08-31', 16500.00, 'chennai', '1', '1 years 10 months', ' Carrier update', 1, '2026-02-05 10:17:33', 0, NULL, 0, NULL, 1),
(11457, 28417, 'Tata Electronics company', 'Operater', '2024-01-19', 15300.00, '2024-10-10', 17000.00, 'Narasapur industrial area', '1', '0 years 8 months', ' Because of shifts', 1, '2026-02-06 04:59:49', 0, NULL, 0, NULL, 1),
(11458, 28425, 'Fero Advisory pvt limited ', 'Senior executive ', '2025-03-01', 19000.00, '2025-10-15', 19000.00, 'Nungambakkam ', '1', '0 years 7 months', 'The company has shifted to Bangalore', 1, '2026-02-06 05:46:43', 0, NULL, 0, NULL, 1),
(11459, 28429, 'asmacs tours and travel association', 'mobilization officer', '2019-01-11', 12000.00, '2020-03-15', 14000.00, 'west mambalam chennai', '1', '1 years 2 months', ' ', 1, '2026-02-07 06:26:56', 0, NULL, 0, NULL, 1),
(11460, 28429, 'vizza investment centre', 'assistant manager', '2020-12-30', 12000.00, '2025-10-11', 28000.00, 'koyambedu chennai', '1', '4 years 9 months', 'salary issue ', 1, '2026-02-07 06:31:12', 0, NULL, 0, NULL, 1),
(11461, 28430, 'Hemanathan M ', 'GRM', '2024-06-03', 19500.00, '2026-02-07', 23000.00, 'Uthiramerur ', '1', '1 years 8 months', '  Bike accident ', 1, '2026-02-07 06:34:53', 0, NULL, 0, NULL, 1),
(11462, 28429, 'propel finway insurance marketing private limited', 'assistant manager', '2025-10-20', 33000.00, '1970-01-01', 33000.00, 'kodambakkam', '2', '0 years 3 months', 'team issue and salary issue also ', 1, '2026-02-07 06:35:03', 0, NULL, 0, NULL, 1),
(11463, 28433, 'Aspira Technology ', 'Tele caller ', '2025-09-01', 8000.00, '2025-12-31', 8000.00, 'Sundaram paints nearby medical College road ', '1', '0 years 3 months', 'Package issues ', 1, '2026-02-07 07:57:41', 0, NULL, 0, NULL, 1),
(11464, 28410, 'TELEPERFORMANCE GLOBAL BUSINESS PRIVATE LIMITED ', 'CUSTOMER SUPPORT ASSOCIATE ', '2024-11-26', 31.00, '2025-12-30', 17761.00, 'BANGALORE ', '1', '1 years 1 months', ' carrier growth ', 1, '2026-02-07 09:40:47', 0, NULL, 0, NULL, 1),
(11465, 28437, 'ICICI Bank ', 'Sales executive ', '2021-07-28', 2.50, '2022-02-28', 2.50, 'Sivakasi ', '1', '0 years 7 months', 'Pursuing higher studies.', 1, '2026-02-07 09:50:59', 0, NULL, 0, NULL, 1),
(11466, 28438, 'Bmg', 'Tele caller ', '2024-10-08', 16000.00, '2025-12-18', 15000.00, 'Chrompet', '1', '1 years 2 months', ' ', 1, '2026-02-07 01:19:32', 0, NULL, 0, NULL, 1),
(11467, 28436, 'Aspira technology ', 'Telecalling ', '2025-09-01', 8000.00, '2026-01-28', 8000.00, 'Thanjavur ', '1', '0 years 4 months', 'Salary delay ', 1, '2026-02-07 03:23:10', 0, NULL, 0, NULL, 1),
(11468, 28432, 'Matrimony ', 'tele sales executive', '2024-02-23', 28.00, '2025-05-03', 15000.00, 'Guindy ', '1', '1 years 2 months', ' Family issues ', 1, '2026-02-09 04:43:35', 0, NULL, 0, NULL, 1),
(11469, 28450, 'Integreatz ERP India Private Limited', 'Chennai ', '2025-04-01', 10000.00, '2025-07-03', 10000.00, 'Guindy ', '1', '0 years 3 months', ' As a fresher, I felt the role didn’t offer enough technical learning, so I chose to leave early and focus on my growth.', 1, '2026-02-09 05:50:43', 0, NULL, 0, NULL, 1),
(11470, 28445, 'Ison', 'Customer executive', '2025-05-29', 14000.00, '2025-08-31', 14000.00, 'Chennai', '1', '0 years 3 months', ' Some Reason', 1, '2026-02-09 05:59:48', 0, NULL, 0, NULL, 1),
(11471, 28451, 'Wipro ', 'Senior associate order to cash', '2023-05-03', 180000.00, '2024-10-06', 200000.00, 'Chennai', '1', '1 years 5 months', ' Carrier growth my project has been end', 1, '2026-02-09 06:01:53', 0, NULL, 0, NULL, 1),
(11472, 28456, 'Skill-lync', 'Inside sales specialist ', '2022-06-11', 37000.00, '2023-01-05', 35000.00, 'Chennai', '1', '0 years 6 months', ' Personal reason', 1, '2026-02-09 09:30:57', 0, NULL, 0, NULL, 1),
(11473, 28458, 'omkar staffing solutions pvt ltd', 'hr recruiter', '2024-06-17', 5.00, '1970-01-01', 16000.00, 'chennai', '2', '1 years 7 months', ' reason for relieving is salary issue and learning new things', 1, '2026-02-09 10:38:17', 0, NULL, 0, NULL, 1),
(11474, 28460, 'Epic motors Pvt Ltd ', 'Telesales executive ', '2026-01-01', 19000.00, '2026-01-24', 19000.00, 'Vyasarpadi ', '1', '0 years 0 months', ' Cause of shortage In manpower they Suddenly changed my designation without my knowledge ', 1, '2026-02-09 12:20:45', 0, NULL, 0, NULL, 1),
(11475, 28465, ' q conneqt business solution', 'customer service executive', '2022-01-24', 25000.00, '2023-09-02', 25000.00, 'chennai', '1', '1 years 7 months', ' Better opportunity', 1, '2026-02-10 05:41:35', 0, NULL, 0, NULL, 1),
(11476, 28468, 'cafs', 'portfolio manager', '2022-11-07', 288000.00, '2024-07-16', 350000.00, 'chennai', '1', '1 years 8 months', ' ', 1, '2026-02-10 07:07:51', 0, NULL, 0, NULL, 1),
(11477, 28469, 'Simmathri ', 'Sales', '2026-02-10', 23000.00, '1970-01-01', 17000.00, 'Spencer plaza ', '2', '0 years 0 months', ' 1.5', 1, '2026-02-10 07:08:11', 0, NULL, 0, NULL, 1),
(11478, 28469, 'Simmathri ', 'Sales', '2026-02-10', 23000.00, '1970-01-01', 17000.00, 'Spencer plaza ', '2', '0 years 0 months', 'It\'s not growth ', 1, '2026-02-10 07:10:19', 0, NULL, 0, NULL, 1),
(11479, 28468, 'quintuple solutions', 'senior portfolio manager', '2024-09-02', 420000.00, '2025-11-15', 420000.00, 'chennai', '1', '1 years 2 months', 'company got windup', 1, '2026-02-10 07:11:03', 0, NULL, 0, NULL, 1),
(11480, 28478, 'We stands private limited', 'Relationship manager', '2020-03-10', 2.00, '2022-08-23', 32000.00, 'Bangluru', '1', '2 years 5 months', ' ', 1, '2026-02-10 09:23:26', 0, NULL, 0, NULL, 1),
(11481, 28476, 'Queen bee holidays ', 'Telecaller ', '2025-08-16', 18.00, '2026-02-01', 18.00, 'Ekkattuthangal ', '1', '0 years 5 months', ' Salary problem ', 1, '2026-02-10 09:24:32', 0, NULL, 0, NULL, 1),
(11482, 28480, 'Plus point ventures ', 'Physical education trainer ', '2022-06-01', 12000.00, '2025-03-31', 15000.00, 'School ', '1', '2 years 9 months', ' Career growth ', 1, '2026-02-10 01:01:07', 0, NULL, 0, NULL, 1),
(11483, 28486, 'mGM MALAR HOSPITAL', 'HR GENERALIST INTERN', '2024-11-01', 0.00, '2025-02-28', 0.00, 'ADYAR CHENNAI', '1', '0 years 3 months', 'INTERNSHIP', 159, '2026-02-11 12:04:51', 159, '2026-02-11 12:11:29', 0, NULL, 1),
(11484, 28488, 'Gajendraa electric company', 'Accountant ', '2025-07-01', 20000.00, '2026-01-31', 20000.00, 'Chennai', '1', '0 years 6 months', ' I resigned from my previous role due to academic commitments, which I have since discontinued.', 1, '2026-02-11 06:48:50', 0, NULL, 0, NULL, 1),
(11485, 28487, 'CAMSREP', 'INSURANCE', '2024-07-29', 0.00, '2025-04-04', 21500.00, 'LIC', '1', '0 years 8 months', 'FATHER HEALTH ISSUE', 159, '2026-02-11 12:24:44', 159, '2026-02-11 12:25:57', 0, NULL, 1),
(11486, 28487, 'MATRIX BUSINESS INDIA PVT LTD', 'EXECUTIVE', '2023-02-03', 1.00, '2024-03-08', 12000.00, 'TNAGAR', '1', '1 years 1 months', 'SALARY WAS NOT ENOUGH', 159, '2026-02-11 12:30:45', 0, NULL, 0, NULL, 1),
(11487, 28487, 'CAMS', 'EXECUTIVE', '2018-09-03', 1.00, '2021-01-08', 10500.00, 'LIC', '1', '2 years 4 months', 'LAND ISSUE', 159, '2026-02-11 12:32:10', 0, NULL, 0, NULL, 1),
(11488, 28489, 'armsoft', 'tellecaller', '2023-03-01', 11000.00, '2024-03-01', 21000.00, 'Ambattur', '1', '1 years 0 months', 'salary issue', 159, '2026-02-11 12:56:49', 0, NULL, 0, NULL, 1),
(11489, 28489, 'armsoft', 'tellecaller', '2023-03-01', 11000.00, '2024-03-01', 21000.00, 'Ambattur', '1', '1 years 0 months', 'salary issue', 159, '2026-02-11 12:56:50', 159, '2026-02-11 12:57:02', 0, NULL, 0),
(11490, 28489, 'armsoft', 'tellecaller', '2023-03-01', 11000.00, '2024-03-01', 21000.00, 'Ambattur', '1', '1 years 0 months', 'salary issue', 159, '2026-02-11 12:56:50', 159, '2026-02-11 12:56:59', 0, NULL, 0),
(11491, 28491, 'Bhatia medical institute ', 'Telemarketing and student counselor ', '2022-12-07', 15.00, '2025-04-30', 23000.00, 'Egmore ', '1', '2 years 4 months', 'Shifting the Branch and changed to online courses ', 1, '2026-02-11 07:37:34', 0, NULL, 0, NULL, 1),
(11492, 28492, 'dr bhatia  medical institute', 'telemarketing ', '2024-01-19', 13000.00, '2025-01-19', 20000.00, 'egmore', '1', '1 years 0 months', ' Shifting the branch and Everything chaneg to Online process', 1, '2026-02-11 07:37:37', 0, NULL, 0, NULL, 1),
(11493, 28498, 'shriram life insurance', 'team leader', '2025-01-02', 13000.00, '2026-01-06', 18500.00, 'kodambakkam', '1', '1 years 0 months', ' ', 1, '2026-02-11 10:50:00', 0, NULL, 0, NULL, 1),
(11494, 28519, 'Bajaj Finserv ', 'Sales Associate ', '2022-12-20', 10000.00, '2024-03-30', 18000.00, 'Pondicherry ', '1', '1 years 3 months', ' ', 1, '2026-02-12 12:05:45', 0, NULL, 0, NULL, 1),
(11495, 28523, 'Talent Tribe Consulting International pvt ltd', 'HR Trainee ', '2024-09-16', 15000.00, '2025-03-07', 1000.00, 'Chennai ', '1', '0 years 5 months', ' I was sick', 1, '2026-02-12 01:13:18', 0, NULL, 0, NULL, 1),
(11496, 28523, 'Adecco India Pvt Ltd', 'HR Recruiter ', '2021-07-15', 21000.00, '2022-02-08', 21000.00, 'Chennai ', '1', '0 years 6 months', 'Company told me to me to relocate to Bangalore, my parents did not allowed me.', 1, '2026-02-12 01:16:04', 0, NULL, 0, NULL, 1),
(11497, 28525, 'Adrian Dalsey, Larry Hillblom, and Robert Lynn', 'Process associate ', '2024-06-03', 12000.00, '2025-08-13', 12000.00, 'Thoraipakkam', '1', '1 years 2 months', ' Married in home town but now I relocated to Chennai ', 1, '2026-02-12 01:38:21', 0, NULL, 0, NULL, 1),
(11498, 28526, 'Mechlion India Pvt Ltd ', 'Sales and Marketing Executive ', '2022-10-09', 15000.00, '2023-12-31', 20000.00, 'Bangalore ', '1', '1 years 2 months', ' It was a fixed-term role where I gained hands-on experience in end-to-end sales operations, and after completing my learning objectives, I moved on to explore new opportunities.', 1, '2026-02-12 01:50:20', 0, NULL, 0, NULL, 1),
(11499, 28526, 'Khivraj Motors Pvt Ltd ', 'Sales Executive ', '2024-04-11', 18000.00, '2024-09-07', 18000.00, 'Bangalore ', '1', '0 years 4 months', 'Clearing the competitive exam gave me the confidence that I was academically prepared for advanced management studies. I pursued MBA to build expertise in marketing strategy, operations management, and data-driven decision-making, which are essential for long-term career growth in sales and business operations.', 1, '2026-02-12 01:52:28', 0, NULL, 0, NULL, 1),
(11500, 28522, 'V Thomas &co', 'Audit assistant ', '2024-04-04', 13000.00, '2025-06-30', 13000.00, 'Vellore ', '1', '1 years 2 months', ' Worked only for experience and learning ', 1, '2026-02-12 02:26:10', 1, '2026-02-12 02:26:44', 0, NULL, 1),
(11501, 28530, 'Shriram life insurance ', 'Sales executive ', '2025-05-29', 15.00, '2026-02-02', 15.00, 'Kodambakkam ', '1', '0 years 8 months', ' Health issues ', 1, '2026-02-13 06:36:21', 0, NULL, 0, NULL, 1),
(11502, 28532, 'Deepzero Software ltd ', 'Software Engineer ', '2022-01-03', 240000.00, '2024-08-31', 240000.00, 'Remote', '1', '2 years 7 months', ' Maternity break ', 1, '2026-02-13 07:38:19', 0, NULL, 0, NULL, 1),
(11503, 28532, 'Amazon Development Center India pvt ltd', 'Customer Support Associate ', '2020-07-06', 190000.00, '2021-04-18', 195000.00, 'Coimbatore ', '1', '0 years 9 months', 'Marriage ', 1, '2026-02-13 07:48:07', 0, NULL, 0, NULL, 1),
(11504, 28532, 'Accenture Solutions private ltd', 'Transaction processing Associate ', '2018-06-09', 180000.00, '2019-09-15', 189000.00, 'Bengaluru', '1', '1 years 3 months', 'Covid', 1, '2026-02-13 07:52:37', 0, NULL, 0, NULL, 1),
(11505, 28510, 'ICICI Bank ', 'Assistant manager -I ', '2022-11-23', 18500.00, '2025-12-12', 26500.00, 'Ambattur ', '1', '3 years 0 months', ' Carrier growth and salary package ', 1, '2026-02-13 03:15:27', 0, NULL, 0, NULL, 1),
(11506, 28536, 'bankbazaar', 'senior customer relationship manager', '2024-06-16', 1.00, '2026-02-21', 20000.00, 'amabathur', '1', '1 years 8 months', 'carriar growth', 159, '2026-02-14 10:31:57', 0, NULL, 0, NULL, 1),
(11507, 28543, 'Sutherland global services ', 'Front line caller', '2017-02-02', 15000.00, '2018-02-03', 15000.00, 'Porur ', '1', '1 years 0 months', ' Medical issues ', 1, '2026-02-14 05:43:35', 0, NULL, 0, NULL, 1),
(11508, 28546, 'Swift ProSys Pvt Ltd ', 'HR Assistant ', '2024-07-04', 10000.00, '2025-08-07', 12000.00, 'Chennai', '1', '1 years 7 months', ' Career Growth ', 1, '2026-02-14 06:00:16', 0, NULL, 0, NULL, 1),
(11509, 28547, 'True Tracking ', 'Associate Developer ', '2024-08-12', 15000.00, '2025-04-30', 15000.00, 'Perungudi Chennai ', '1', '0 years 8 months', 'For supporting my family during medical emergency ', 1, '2026-02-14 06:51:12', 0, NULL, 0, NULL, 1),
(11510, 28549, 'Rpinnacle Research and Solutions ', 'Python programming ', '2024-03-01', 15000.00, '2024-12-31', 15000.00, 'Thuckalay ', '1', '0 years 9 months', ' ', 1, '2026-02-14 09:00:49', 0, NULL, 0, NULL, 1),
(11511, 28553, 'ICICI LOMBARD GIC LTD', 'Senior Development Manager ', '2024-12-06', 1.00, '2025-10-17', 27000.00, 'Chennai ', '1', '0 years 10 months', ' Other', 1, '2026-02-14 11:36:07', 0, NULL, 0, NULL, 1),
(11512, 28555, 'FNB Financial Corporate', 'Voice process Associate', '2026-01-15', 10.00, '2026-02-10', 10000.00, 'Perambur chennai', '1', '0 years 0 months', 'Stucked in uncomfortable situation', 1, '2026-02-14 12:47:44', 0, NULL, 0, NULL, 1),
(11513, 28559, 'Apex Covantage private limited ', 'QA customer technical support ', '2024-12-02', 30000.00, '2025-10-31', 30000.00, 'Chennai ', '1', '0 years 10 months', ' Health issues ', 1, '2026-02-14 01:28:25', 0, NULL, 0, NULL, 1),
(11514, 28558, 'Ms.Rajan and co ', 'Accounts assistant ', '2024-05-20', 10000.00, '2025-10-18', 14000.00, 'Chennai ', '1', '1 years 4 months', ' Seeking better opportunities for career growth.\nLooking to gain more experience in my field.', 1, '2026-02-14 01:30:41', 0, NULL, 0, NULL, 1),
(11515, 28557, ' SRI R N GLOBAL CONSULTANCY  SERVICES PVT LTD', 'HR recruiter and executive', '2025-10-23', 15000.00, '2026-02-16', 15000.00, 'VILLIVAKKAM', '1', '0 years 3 months', '12-02-2025', 159, '2026-02-16 10:36:04', 0, NULL, 0, NULL, 1),
(11516, 28564, 'CITY UNION BANK ', 'RELATIONSHIP MANAGER ', '2025-09-01', 24000.00, '2025-10-16', 24000.00, 'CHENNAI ', '1', '0 years 1 months', ' Field marketing and sales ', 1, '2026-02-16 05:09:42', 0, NULL, 0, NULL, 1),
(11517, 28564, 'city union bank', 'Relationship manager', '2025-09-01', 24000.00, '2026-10-16', 24000.00, 'chennai', '1', '1 years 1 months', 'Field marketing', 159, '2026-02-16 10:41:36', 0, NULL, 0, NULL, 1),
(11518, 28563, 'Comstar automotive technology ', 'Assosiate ', '2020-02-03', 18.00, '2021-01-03', 19.00, 'Maraimalai nagar', '1', '0 years 11 months', ' ', 1, '2026-02-16 05:31:55', 0, NULL, 0, NULL, 1),
(11519, 28563, 'Cognizant ', 'Process executive ', '2021-03-26', 20.00, '2023-05-05', 25.00, 'Tambaram ', '1', '2 years 1 months', 'I\'m not well in night shift ', 1, '2026-02-16 05:34:47', 0, NULL, 0, NULL, 1),
(11520, 28562, 'Preston consultancy ', 'Inside sales ', '2024-04-26', 35000.00, '2026-02-14', 30000.00, 'Anna nagar ', '1', '1 years 9 months', ' ', 1, '2026-02-16 05:41:37', 0, NULL, 0, NULL, 1),
(11521, 28572, ' sp finnacle ', 'telecaller ', '2023-11-01', 15.00, '1970-01-01', 20.00, 'chennai', '2', '2 years 3 months', 'Career \nGrowth ', 1, '2026-02-16 12:55:29', 0, NULL, 0, NULL, 1),
(11522, 28573, 'TATA AIA Life Insurance Company Ltd', 'Sales Manager', '2024-12-31', 1150000.00, '2026-02-09', 1150000.00, 'Chennai', '1', '1 years 1 months', ' Channel Closed and looking for good opportunity. ', 1, '2026-02-16 01:37:02', 0, NULL, 0, NULL, 1),
(11523, 28573, 'Edelweiss Life Insurance Company Ltd', 'Cluster Manager', '2023-09-14', 900000.00, '2024-12-20', 970000.00, 'Chennai', '1', '1 years 3 months', 'Got Transfer and not able to relocate.', 1, '2026-02-16 01:39:51', 0, NULL, 0, NULL, 1),
(11524, 28574, ' TECH MAHINDRA', 'Associate- Customer support', '2024-08-16', 17000.00, '2025-06-19', 17000.00, 'chennai', '1', '0 years 10 months', 'Previously working at remote. I have some network Issues. So I am Relieved. ', 1, '2026-02-16 02:31:56', 1, '2026-02-16 02:33:27', 0, NULL, 1),
(11525, 28575, 'G square', 'Chennai ', '2024-11-01', 20000.00, '2025-06-12', 20000.00, 'Alwarpet', '1', '0 years 7 months', 'Health issue & personal', 1, '2026-02-16 08:34:44', 0, NULL, 0, NULL, 1),
(11526, 28502, 'Collar Jobskart ', 'HR recruiter ', '2025-09-15', 15000.00, '2026-01-30', 15000.00, 'Anna Nagar ', '1', '0 years 4 months', ' I worked in a consultancy so felt it\'s very pressurized and the shift timings is too long always going behind targets ', 1, '2026-02-17 03:34:37', 0, NULL, 0, NULL, 1),
(11527, 28566, 'exela Technologies ', 'process associate ', '2022-09-07', 13.00, '2025-01-02', 216000.00, 'thanjavur', '1', '2 years 3 months', ' My project is closed', 1, '2026-02-17 04:39:23', 0, NULL, 0, NULL, 1),
(11528, 28579, 'Leomarshell agency ', 'Recruitment and Marketing executive ', '2024-08-01', 15000.00, '2025-11-24', 17000.00, 'Thiruvanmiyur Chennai ', '1', '1 years 3 months', 'Career growth and  I\'m looking forward to learn more in HR Domain ', 1, '2026-02-17 06:23:17', 0, NULL, 0, NULL, 1),
(11529, 28581, 'Vision fund india ', 'People and culture Trainee in HR team', '2025-01-10', 12184.00, '2025-04-09', 12184.00, 'Vadapalani ', '1', '0 years 2 months', ' Due to contract end', 1, '2026-02-17 06:58:20', 0, NULL, 0, NULL, 1),
(11530, 28583, 'J.A solution', 'Data entry ', '2025-08-01', 15.09, '2026-01-31', 15000.00, 'Thanjavur ', '1', '0 years 5 months', ' ', 1, '2026-02-17 07:14:14', 0, NULL, 0, NULL, 1),
(11531, 28582, 'Allset business solutions ', 'Tele calling ', '2026-01-27', 18000.00, '2026-03-06', 16000.00, 'Thousand lights ', '1', '0 years 1 months', 'Due to probation end I resigned the job in telecalling team in allset business solutions.\nOverall my work experience was good and best support for my organization.', 1, '2026-02-17 07:23:53', 0, NULL, 0, NULL, 1),
(11532, 28584, 'Acurus solutions ', 'Trainee knowledge associate ', '2025-01-27', 17000.00, '2025-07-29', 17300.00, 'Royapettah, Chennai ', '1', '0 years 6 months', 'The role I took in my previous company was more in the medical domain and was a temporary opportunity. While I gained valuable experience working in a structured environment, I realized that my core strength and long-term career interest lies in accounts and finance.\nSo I decided to move towards a role that aligns better with my experience and skill set.', 1, '2026-02-17 09:58:00', 0, NULL, 0, NULL, 1),
(11533, 28585, 'concentrix technology private limited', 'customer support executive', '2022-02-14', 17000.00, '2022-10-16', 17000.00, 'thoraipakkam', '1', '0 years 8 months', 'Process gets rampdown', 1, '2026-02-17 10:20:55', 0, NULL, 0, NULL, 1),
(11534, 28586, 'Finstein ', 'Fullstack developer ', '2022-07-10', 2.00, '2025-03-01', 3.80, 'Thousand light ', '1', '2 years 7 months', ' Moms health issue ', 1, '2026-02-17 12:15:39', 0, NULL, 0, NULL, 1),
(11535, 28587, 'Shriram life insurance ', 'Assistant sales manager ', '2025-12-01', 5.00, '2026-02-14', 22000.00, 'Mogappair ', '1', '0 years 2 months', 'Delayed in salary ', 1, '2026-02-17 01:17:46', 0, NULL, 0, NULL, 1),
(11536, 28589, 'Apex covantage ', 'Quality checking ', '2025-06-15', 15000.00, '2026-02-11', 15000.00, 'Guindy', '1', '0 years 7 months', ' “My project was shifted to the Hyderabad branch, and since there was no position for me there, so I was relieved.”', 1, '2026-02-18 05:10:05', 0, NULL, 0, NULL, 1),
(11537, 28590, 'Apex covantage ', 'Quality checking ', '2025-06-28', 15000.00, '2026-02-11', 15000.00, 'Guindy', '1', '0 years 7 months', ' My project was relocated to Hyderabad, and as there was no suitable opportunity for me there, I decided to get relieved.', 1, '2026-02-18 05:23:50', 0, NULL, 0, NULL, 1),
(11538, 28594, 'FRANCH COURIER', 'ENTRY IN THE SYSTEM', '2026-02-18', 8000.00, '2026-02-18', 8000.00, 'PURASAIWAKKAM', '1', '0 years 0 months', 'because that is part time', 154, '2026-02-18 11:50:02', 0, NULL, 0, NULL, 1),
(11539, 28596, 'Best money gold ', 'Manager ', '2023-02-13', 8000.00, '2025-11-10', 12000.00, 'Mannargudi ', '1', '2 years 8 months', ' Low salary ', 1, '2026-02-18 07:38:06', 0, NULL, 0, NULL, 1),
(11540, 28600, 'infinox info stark service private limited', 'customer support and sales ', '2024-02-01', 18000.00, '2026-02-01', 26500.00, 'chennai', '1', '2 years 0 months', ' ', 1, '2026-02-18 09:25:55', 0, NULL, 0, NULL, 1),
(11541, 28599, 'bharath matrimony', 'senior services executive', '2023-07-13', 14500.00, '2026-02-14', 18000.00, 'adugodi', '1', '2 years 7 months', ' personal reasons', 1, '2026-02-18 09:35:10', 0, NULL, 0, NULL, 1),
(11542, 28598, 'arise bpo', 'telecaller', '2024-11-20', 21000.00, '2026-02-13', 21000.00, 'shanthinagar', '1', '1 years 2 months', ' personal reasons', 1, '2026-02-18 09:44:19', 0, NULL, 0, NULL, 1),
(11543, 28598, 'connections back office', 'telecaller', '2024-01-17', 17000.00, '2025-11-14', 17000.00, 'wilson garden', '1', '1 years 9 months', 'personal', 1, '2026-02-18 09:45:47', 0, NULL, 0, NULL, 1),
(11544, 28602, 'OrgLinked ', 'Associate hr', '2025-09-22', 15000.00, '1970-01-01', 15000.00, 'Chennai ', '2', '0 years 4 months', ' Career growth ', 1, '2026-02-18 11:42:41', 0, NULL, 0, NULL, 1),
(11545, 28607, 'Viza Fintech ', 'Claim support consultant ', '2025-08-18', 17000.00, '1970-01-01', 18500.00, 'Chennai ', '2', '0 years 6 months', ' Travel location ', 1, '2026-02-19 03:21:59', 0, NULL, 0, NULL, 1),
(11546, 28607, 'Rrdonnnely', 'Document specialist ', '2018-08-01', 13000.00, '2022-05-22', 15000.00, 'Chennai ', '1', '3 years 9 months', 'Some health issues ', 1, '2026-02-19 03:23:48', 0, NULL, 0, NULL, 1),
(11547, 28612, 'Prabas Vcare skin and hair clinic ', 'Telecaller', '2024-08-01', 22000.00, '2026-01-01', 22000.00, 'JP nagar ', '1', '1 years 5 months', ' Due to distance ', 1, '2026-02-19 05:28:02', 0, NULL, 0, NULL, 1),
(11548, 28613, 'bajaj finserv', 'assistant sales manager', '2019-02-15', 250000.00, '2020-03-16', 300000.00, 'bangalore', '1', '1 years 1 months', ' ', 1, '2026-02-19 05:30:06', 0, NULL, 0, NULL, 1),
(11549, 28613, 'shriram life insuarance', 'business manager', '2024-09-09', 350000.00, '2024-12-07', 400000.00, 'bangalore', '1', '0 years 2 months', 'Personal reasons', 1, '2026-02-19 05:33:28', 0, NULL, 0, NULL, 1),
(11550, 28615, 'Canara HSBC Life insurance company', 'Credit life officer', '2025-06-02', 30.00, '1970-01-01', 400000.00, 'Tambaram', '2', '0 years 8 months', ' ', 1, '2026-02-19 06:04:05', 0, NULL, 0, NULL, 1),
(11551, 28619, 'Axis max life insurance company limited ', 'Associate agency development manager ', '2025-09-08', 31.00, '2026-02-16', 31.00, 'Bangalore ', '1', '0 years 5 months', ' ', 1, '2026-02-19 07:17:08', 0, NULL, 0, NULL, 1),
(11552, 28623, 'waila technology', 'senior programmer', '2023-04-10', 300000.00, '2026-03-06', 455000.00, 'nagercoil', '1', '2 years 10 months', ' For my carear growth', 1, '2026-02-19 10:49:11', 0, NULL, 0, NULL, 1),
(11553, 28623, 'alo info tech ', 'backend developer', '2021-02-01', 180000.00, '2023-02-01', 240000.00, 'nagercoil', '1', '2 years 0 months', 'Update for next level ', 1, '2026-02-19 10:52:56', 0, NULL, 0, NULL, 1),
(11554, 28618, 'Accenture ', 'Process associate ', '2022-04-19', 12000.00, '2025-12-15', 18000.00, 'Chennai ', '1', '3 years 7 months', ' ', 1, '2026-02-19 04:03:23', 0, NULL, 0, NULL, 1),
(11555, 28618, 'Accenture ', 'Process associate ', '2022-04-14', 12000.00, '2025-12-15', 18000.00, 'Chennai ', '1', '3 years 8 months', 'Night shift ', 1, '2026-02-19 04:04:27', 0, NULL, 0, NULL, 1),
(11556, 28626, 'HDB Financial services ', 'Senior telling calling officer ', '2020-12-26', 12000.00, '2022-06-15', 12000.00, 'Chennai ', '1', '1 years 5 months', ' Mother health ', 1, '2026-02-19 04:38:33', 0, NULL, 0, NULL, 1),
(11557, 28630, 'Axis securities limited ', 'Document exicutive ', '2017-06-08', 200000.00, '2019-03-31', 220000.00, 'Bangalore ', '1', '1 years 9 months', ' Company change ', 1, '2026-02-20 05:48:36', 0, NULL, 0, NULL, 1),
(11558, 28630, 'Quess corp ltd', 'Senior Relationship officer', '2019-04-01', 220000.00, '2023-06-28', 320000.00, 'Bangalore ', '1', '4 years 2 months', 'Better job opportunities ', 1, '2026-02-20 05:50:30', 0, NULL, 0, NULL, 1),
(11559, 28631, ' bank bazaar', 'senior customer relationship officer', '2023-02-23', 15000.00, '2025-10-18', 23000.00, ' ambattur', '1', '2 years 7 months', ' For a better position and learnings', 1, '2026-02-20 05:53:29', 0, NULL, 0, NULL, 1),
(11560, 28630, 'Au small finance Bank ', 'Platinum relationship manager ', '2024-01-02', 550000.00, '2025-04-28', 580000.00, 'Bangalore Sarjapur road ', '1', '1 years 3 months', 'Government job preparation ', 1, '2026-02-20 05:55:36', 0, NULL, 0, NULL, 1),
(11561, 28630, 'Ujjivan small finance Bank ', 'Branch banking Relationship manager ', '2025-07-11', 750000.00, '2025-10-06', 750000.00, 'Bangalore Whitefield ', '1', '0 years 2 months', 'Family medical issues ', 1, '2026-02-20 05:57:42', 0, NULL, 0, NULL, 1),
(11562, 28635, 'Shree MFS Pvt Ltd ', 'Telesales', '2025-08-25', 18000.00, '2026-01-30', 18000.00, 'Guindy', '1', '0 years 5 months', ' ', 1, '2026-02-20 07:01:52', 1, '2026-02-20 07:09:18', 0, NULL, 0),
(11563, 28635, 'Shree MFS Pvt Ltd ', 'Telesales ', '2025-08-25', 22000.00, '2026-01-30', 22000.00, 'Guindy ', '1', '0 years 5 months', ' I had to travel to my hometown as my mother was unwell. Due to this personal emergency, I was away for 20 days, and hence I have been relieved from my position.', 1, '2026-02-20 07:11:12', 0, NULL, 0, NULL, 1),
(11564, 28633, 'FirstSource Solutions', 'Process Executive', '2025-08-20', 20000.00, '2026-01-31', 250000.00, 'Navallur', '1', '0 years 6 months', 'Process Randown', 159, '2026-02-20 12:49:05', 159, '2026-02-20 12:51:30', 0, NULL, 1),
(11565, 28636, 'Altruistic ', 'Customer su ', '2024-03-19', 7.00, '2025-03-19', 19000.00, 'omr', '1', '1 years 0 months', ' Family Issues ', 1, '2026-02-20 07:19:13', 0, NULL, 0, NULL, 1),
(11566, 28634, 'kpmg', 'analYst', '0206-02-20', 17000.00, '2026-02-20', 22000.00, 'chetpet', '1', '1820 years 0 months', 'project end', 159, '2026-02-20 12:56:46', 0, NULL, 0, NULL, 1),
(11567, 28637, 'waila technology', 'senior programmer', '2023-04-10', 300000.00, '2026-02-27', 455000.00, 'nagercoil', '1', '2 years 10 months', ' For my carrear growth', 1, '2026-02-20 07:29:39', 0, NULL, 0, NULL, 1),
(11568, 28637, 'alo info tech', 'backend developer ', '2021-02-01', 1500000.00, '2023-02-01', 240000.00, 'nagercoil', '1', '2 years 0 months', 'For carear growth', 1, '2026-02-20 07:34:24', 0, NULL, 0, NULL, 1),
(11569, 28641, 'Muthoot finance gold loan', 'Beach Station', '2023-11-01', 1.00, '2025-10-07', 17000.00, 'Beach station ', '1', '1 years 11 months', ' Dad accident ', 1, '2026-02-20 12:08:14', 0, NULL, 0, NULL, 1),
(11570, 28644, 'Askan Technologies', 'Full stack developer', '2025-02-10', 0.00, '2025-09-26', 0.00, 'Pond', '1', '0 years 7 months', 'internship', 159, '2026-02-21 10:40:50', 0, NULL, 0, NULL, 1),
(11571, 28646, 'Aavin ', 'account intern', '2022-12-01', 0.00, '2023-01-31', 0.00, 'chennai', '1', '0 years 2 months', 'compeleted internship', 159, '2026-02-21 11:03:21', 0, NULL, 0, NULL, 1),
(11572, 28646, 'shariff and co chartered account firm', 'account and finance imten', '2023-06-01', 0.00, '1970-01-01', 0.00, 'chennai', '2', '2 years 8 months', 'compeleted internship', 159, '2026-02-21 11:06:12', 0, NULL, 0, NULL, 1),
(11573, 28646, 'C.C Bank', 'banker intern', '2024-02-01', 0.00, '2024-03-31', 0.00, 'chennai', '1', '0 years 1 months', 'internship compeled', 159, '2026-02-21 11:08:23', 0, NULL, 0, NULL, 1),
(11574, 28646, 'm.k eNTERPRISES', 'ACCOUNT INTERN', '2024-12-02', 0.00, '2025-01-31', 0.00, 'CHENNAI', '1', '0 years 1 months', 'Compeled internship', 159, '2026-02-21 11:10:01', 0, NULL, 0, NULL, 1),
(11575, 28645, 'Tandem Digital Solution Private Limited ', 'Full Stack Developer ', '2023-04-01', 45000.00, '2025-01-31', 45000.00, 'Chennai ', '1', '1 years 9 months', ' Some family issues and mother health issues ', 1, '2026-02-21 05:40:28', 0, NULL, 0, NULL, 1),
(11576, 27526, 'Ar krishna associates', 'Audit assistant', '2025-06-02', 12000.00, '1970-01-01', 12000.00, 'Nungambakkam', '2', '0 years 8 months', 'Seeking for better growth and knowledge in accounts field', 1, '2026-02-21 05:42:12', 0, NULL, 0, NULL, 1),
(11577, 28645, 'Seyasoft solution private limited ', 'Programmer', '2021-02-15', 18000.00, '2023-03-31', 25000.00, 'Chennai', '1', '2 years 1 months', 'Technology growth ', 1, '2026-02-21 05:42:35', 0, NULL, 0, NULL, 1),
(11578, 28645, 'Justsee info service PLtd', 'PHP programmer ', '2019-03-01', 15000.00, '2020-03-31', 15000.00, 'Chennai ', '1', '1 years 0 months', 'COVID ', 1, '2026-02-21 05:44:47', 0, NULL, 0, NULL, 1),
(11579, 28649, '23 solution ', 'Tele caller ', '2022-09-24', 10000.00, '2025-09-05', 14000.00, 'T nagar', '1', '2 years 11 months', 'Reason for salary ', 1, '2026-02-21 09:29:27', 0, NULL, 0, NULL, 1),
(11580, 28657, 'Justdial pvt ltd', 'Telemarketing executive ', '2024-06-06', 17000.00, '2025-05-07', 21000.00, 'Little mount', '1', '0 years 11 months', 'Travel distance ', 1, '2026-02-21 01:33:56', 0, NULL, 0, NULL, 1),
(11581, 28665, 'Rainbow Children\'s Hospital ', 'Patient Care Services ', '2024-12-10', 15000.00, '2025-05-12', 15000.00, 'Sholinganallur', '1', '0 years 5 months', ' For higher studies ', 1, '2026-02-23 04:47:24', 0, NULL, 0, NULL, 1),
(11582, 28666, 'impulse design', 'software engineering', '2024-04-01', 5000.00, '1970-01-01', 10000.00, 'chennai', '2', '1 years 10 months', ' I wanted to explore the company and also wanted explore the knowledge of it', 1, '2026-02-23 05:06:38', 0, NULL, 0, NULL, 1),
(11583, 28669, 'SUTHERLAND', 'CUSTOMER SUPPORT', '2024-07-30', 18000.00, '2024-11-11', 18000.00, 'PERUNGALATHUR', '1', '0 years 3 months', 'PROCESS FILLED', 159, '2026-02-23 11:06:30', 0, NULL, 0, NULL, 1),
(11584, 28677, 'Sri shanmuka matric hr sec school ', 'Teacher ', '2022-06-13', 7500.00, '2025-04-25', 12000.00, 'Mannargudi ', '1', '2 years 10 months', ' Health issue ', 1, '2026-02-23 06:08:43', 0, NULL, 0, NULL, 1),
(11585, 28647, 'bankbazaar', 'senior cro', '2023-10-20', 15000.00, '2025-12-14', 20000.00, 'ambattur ', '1', '2 years 1 months', ' For career growth and career change ', 1, '2026-02-23 06:09:44', 0, NULL, 0, NULL, 1),
(11586, 28678, 'Capgemini ', 'Process associate ', '2021-08-28', 30.00, '2025-10-19', 18000.00, 'Salem', '1', '4 years 1 months', ' Carrier growth ', 1, '2026-02-23 06:15:03', 0, NULL, 0, NULL, 1),
(11587, 28680, 'rsmart', 'telecaller', '2024-12-02', 16000.00, '2026-01-30', 17000.00, 'chennai', '1', '1 years 1 months', ' Better offer for better position and salary', 1, '2026-02-23 06:49:42', 0, NULL, 0, NULL, 1),
(11588, 28680, 'teamlease', 'elecaller', '2024-09-02', 16000.00, '2024-10-30', 16000.00, 'chennai', '1', '0 years 1 months', 'Inter compay transfer within the same group', 1, '2026-02-23 06:53:47', 0, NULL, 0, NULL, 1),
(11589, 28679, 'Hire Lab Consultancy ', 'Hr Recruiter ', '2025-01-28', 14500.00, '2025-12-31', 14500.00, 'Chennai ', '1', '0 years 11 months', 'I am looking for new opportunities where I can learn more, grow in my career, and contribute effectively.', 1, '2026-02-23 06:55:31', 0, NULL, 0, NULL, 1),
(11590, 28680, 'netizen management', 'elecaller', '2024-03-05', 15000.00, '2024-09-30', 15000.00, 'hennai', '1', '0 years 6 months', 'Inter company tranfer within the sane group', 1, '2026-02-23 06:55:42', 0, NULL, 0, NULL, 1),
(11591, 28680, 'hdb', 'telecaller', '2022-11-29', 12000.00, '2024-01-10', 12000.00, 'chennai', '1', '1 years 1 months', 'Looking for better exposures', 1, '2026-02-23 06:59:01', 0, NULL, 0, NULL, 1),
(11592, 28684, 'Just dial', 'Iro ', '2024-06-05', 20000.00, '2024-11-01', 20000.00, 'Little mount', '1', '0 years 4 months', ' Health issue', 1, '2026-02-23 07:20:42', 0, NULL, 0, NULL, 1),
(11593, 28686, 'Zolvit', 'Business Advisor', '2025-08-04', 15500.00, '2026-01-31', 15500.00, 'Thanjavur', '1', '0 years 5 months', ' Study purpose', 1, '2026-02-23 07:53:05', 0, NULL, 0, NULL, 1),
(11594, 28694, 'Morrass modular kitchen ', 'Customer handling and accounts ', '2021-04-25', 13000.00, '2023-12-19', 16000.00, 'Thanjavur ', '1', '2 years 7 months', ' Marriage', 1, '2026-02-23 04:46:15', 0, NULL, 0, NULL, 1),
(11595, 28699, 'Fincover ', 'Personal loan ', '2026-02-24', 15000.00, '1970-01-01', 19000.00, 'Vadalalani ', '2', '0 years 0 months', ' I year 2 months ', 1, '2026-02-24 05:10:39', 0, NULL, 0, NULL, 1),
(11596, 28698, 'suraj &co', 'Telecaller', '2026-02-24', 15000.00, '1970-01-01', 170000.00, 'thousand lights ', '2', '0 years 0 months', '1 year and 1 month', 1, '2026-02-24 05:21:33', 0, NULL, 0, NULL, 1),
(11597, 28701, 'sagility healthcare ltd', 'senior process consultant', '2023-06-15', 187000.00, '1970-01-01', 17000.00, 'chennai', '2', '2 years 8 months', ' Shift Changes', 1, '2026-02-24 06:21:28', 0, NULL, 0, NULL, 1),
(11598, 28688, 'Hamly business solutions ', 'Senior process associate', '2023-11-29', 13000.00, '2026-02-24', 19500.00, 'New Bustand RR Nagar', '2', '2 years 2 months', 'Why because of I am working in the night shift so that\'s causing me a health issues so I want to move on from there.', 1, '2026-02-24 08:29:54', 0, NULL, 0, NULL, 1),
(11599, 28707, 'Star health and allied insurance ', 'Customer support associate ', '2024-07-10', 20000.00, '2026-02-15', 22500.00, 'Thousand lights ', '1', '1 years 7 months', ' Timings and weekoff', 1, '2026-02-24 09:05:12', 0, NULL, 0, NULL, 1),
(11600, 28724, 'Customer care executive ', 'Voice process ', '2024-03-20', 15000.00, '2025-04-30', 15000.00, 'Perungudi ', '1', '1 years 1 months', ' ', 1, '2026-02-25 05:08:38', 0, NULL, 0, NULL, 1),
(11601, 28720, 'Cedar business salutation ', 'BPO', '2024-06-02', 15000.00, '2024-11-20', 15000.00, 'Chepet', '1', '0 years 5 months', ' Startup company and they recruiting 10 STD students that company so leave that', 1, '2026-02-25 06:03:35', 0, NULL, 0, NULL, 1),
(11602, 28720, 'SLAM', 'Trainer ', '2024-11-22', 15000.00, '2025-04-02', 15000.00, 'Kilpauk ', '1', '0 years 4 months', 'Start our own business so I leave that company ', 1, '2026-02-25 06:04:55', 0, NULL, 0, NULL, 1),
(11603, 28716, 'Intouch cx', 'Customer support', '2025-09-29', 21000.00, '2026-02-25', 21000.00, 'Electroni city', '1', '0 years 4 months', ' Process closed', 1, '2026-02-25 06:53:33', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11604, 28716, 'Teleperformance', 'Customer support', '2023-12-28', 15000.00, '1970-01-01', 15000.00, 'Chennai', '2', '2 years 1 months', 'Health issue', 1, '2026-02-25 06:54:54', 0, NULL, 0, NULL, 1),
(11605, 28726, 'Samaeera groups ', 'Pre-sales executive ', '2025-07-01', 16500.00, '2026-02-25', 16500.00, 'Nungambakkam ', '1', '0 years 7 months', ' There is exposure or any appreciation or hike there that\'s why I decided to relieve and search for another organization ', 1, '2026-02-25 07:29:16', 0, NULL, 0, NULL, 1),
(11606, 28735, 'Sutherland ', 'L2 Vendor seller support ', '2022-10-26', 16000.00, '2025-12-26', 36000.00, 'Chennai ', '1', '3 years 2 months', ' Career growth and improve my self, learn new skills.', 1, '2026-02-25 11:04:14', 0, NULL, 0, NULL, 1),
(11607, 28747, 'Danush furnitures', 'Sales', '2019-02-19', 6000.00, '2026-03-05', 18000.00, 'Chennai ', '1', '7 years 0 months', ' To get extra idea\'s and information about another about sales', 1, '2026-02-25 04:32:27', 0, NULL, 0, NULL, 1),
(11608, 28753, 'fourth dimens technologies', 'jr hr', '2024-06-03', 12000.00, '2025-11-26', 14000.00, 'chennai', '1', '1 years 5 months', ' Career growth', 1, '2026-02-26 05:22:05', 0, NULL, 0, NULL, 1),
(11609, 28754, 'Datamark ', 'Quality auditor', '2019-10-24', 10000.00, '2025-08-30', 18000.00, 'Ambattur', '1', '5 years 10 months', ' Night shift ', 1, '2026-02-26 05:39:08', 0, NULL, 0, NULL, 1),
(11610, 28755, 'Accenture ', 'Experience ', '2019-12-19', 20000.00, '2025-01-15', 25000.00, 'Sholinganallur', '1', '5 years 0 months', ' I left the job due to family responsibilities and night shift constraints.', 1, '2026-02-26 05:56:44', 0, NULL, 0, NULL, 1),
(11611, 28758, 'nsp numotech inc', 'machine assembler', '2019-06-19', 16000.00, '2025-09-17', 19000.00, 'thanjavur', '1', '6 years 2 months', 'Personal family issue', 1, '2026-02-26 06:20:39', 0, NULL, 0, NULL, 1),
(11612, 28763, 'GTS Solution ', 'Store Exicutive ', '2025-11-01', 21000.00, '2026-02-01', 21400.00, 'Bangalore ', '1', '0 years 3 months', 'Health Issues ', 1, '2026-02-26 07:26:03', 0, NULL, 0, NULL, 1),
(11613, 28764, 'Kredit bee ', 'Senior executive officer ', '2025-02-27', 22000.00, '2025-11-01', 22000.00, 'Mylapore ', '1', '0 years 8 months', ' Marriage ', 1, '2026-02-26 07:36:30', 0, NULL, 0, NULL, 1),
(11614, 28766, 'SBI credit cards', 'BRE', '2025-08-01', 22000.00, '2025-10-31', 22000.00, 'Hasthinapuram', '1', '0 years 2 months', 'Some Issues', 159, '2026-02-26 03:44:52', 0, NULL, 0, NULL, 1),
(11615, 28770, 'psmj', 'hrbp', '2024-08-14', 14000.00, '2025-07-03', 19000.00, 'alwarpet', '1', '0 years 10 months', ' Health issues and surger ', 1, '2026-02-26 12:51:00', 0, NULL, 0, NULL, 1),
(11616, 28775, 'bankbazaar', 'senior customer relationship manager', '2024-01-19', 20000.00, '1970-01-01', 20000.00, 'ambattur', '2', '2 years 1 months', ' Salary hike', 1, '2026-02-26 06:16:16', 0, NULL, 0, NULL, 1),
(11617, 28776, 'Ki mobility solutions Pvt Ltd ', 'Customer support executive ', '2024-08-12', 20000.00, '2026-02-18', 20000.00, 'Jp nagar Bengaluru ', '1', '1 years 6 months', ' Grow in my carrier learn new skills', 1, '2026-02-27 04:54:24', 0, NULL, 0, NULL, 1),
(11618, 28776, 'Race chanakya school ', 'Teacher', '2023-08-10', 14000.00, '2024-06-01', 14000.00, 'Raichur', '1', '0 years 9 months', 'I want to switch in career', 1, '2026-02-27 04:56:10', 0, NULL, 0, NULL, 1),
(11619, 28769, 'AGS HEALTH', 'Process Associate ', '2025-08-05', 21000.00, '2026-02-23', 21000.00, 'Chennai ', '1', '0 years 6 months', ' I was been benched that my existing project has been ramdown so they told to leave the organization ', 1, '2026-02-27 04:57:55', 0, NULL, 0, NULL, 1),
(11620, 28737, 'Armsofttec-air', 'Senior telecaller collection ', '2025-06-28', 20000.00, '2026-02-24', 20000.00, 'Ambattur ', '1', '0 years 7 months', ' Salary delay', 1, '2026-02-27 05:13:21', 0, NULL, 0, NULL, 1),
(11621, 28784, 'Sr lab products ', 'Inside sales and billing excutive ', '2021-07-01', 182021.00, '2023-12-30', 18000.00, 'Mylapore ', '1', '2 years 5 months', ' My mB was passed away so company was closed ', 1, '2026-02-27 05:55:43', 0, NULL, 0, NULL, 1),
(11622, 28783, ' Cameo Corporate Services Limited', 'telecaller ', '2020-01-15', 17500.00, '2022-04-02', 19000.00, 'mount road ', '1', '2 years 2 months', ' Better salary ', 1, '2026-02-27 06:00:06', 0, NULL, 0, NULL, 1),
(11623, 28783, 'Marketsoft one ', 'telesales', '2022-04-16', 22000.00, '2024-12-05', 23500.00, 'saidapet', '1', '2 years 7 months', 'Location ', 1, '2026-02-27 06:03:21', 1, '2026-02-27 06:05:57', 0, NULL, 1),
(11624, 28783, 'matrimony.com', 'relationship manager ', '2025-01-09', 25000.00, '2025-09-11', 25000.00, 'adayar', '1', '0 years 8 months', 'Marriage ', 1, '2026-02-27 06:08:03', 0, NULL, 0, NULL, 1),
(11625, 28785, 'Astro computer ', 'Account assistant ', '2025-08-27', 23000.00, '2025-12-27', 23000.00, 'Chennai ', '1', '0 years 4 months', ' ', 1, '2026-02-27 06:40:39', 0, NULL, 0, NULL, 1),
(11626, 28786, 'Imarque solutions ', 'Telecaller ', '2025-05-06', 11000.00, '2025-11-07', 13000.00, 'Tenampet chennai ', '1', '0 years 6 months', ' Salary problem ', 1, '2026-02-27 07:04:44', 0, NULL, 0, NULL, 1),
(11627, 28787, 'BSNL process ', 'Customer care Executive ', '2026-02-27', 20000.00, '1970-01-01', 20000.00, 'Mound road', '2', '0 years 0 months', ' ', 1, '2026-02-27 07:20:06', 0, NULL, 0, NULL, 1),
(11628, 28767, 'NTT data ', 'HC & insurance Operations Associate', '2022-06-17', 130000.00, '2025-10-20', 20000.00, 'Coimbatore', '1', '3 years 4 months', ' Father health issue', 1, '2026-02-27 09:52:53', 0, NULL, 0, NULL, 1),
(11629, 28773, 'Maruti suzuki ', 'Sales executive ', '2026-02-02', 6.00, '1970-01-01', 18000.00, 'Chennai ', '2', '0 years 0 months', ' Low package ', 1, '2026-02-27 10:44:35', 0, NULL, 0, NULL, 1),
(11630, 28796, 'bumsa pvt ltd', 'hr recruiter', '2021-08-02', 15000.00, '2023-01-31', 18000.00, 'guindy', '1', '1 years 5 months', 'got married and that was Night shift', 1, '2026-02-28 04:20:45', 0, NULL, 0, NULL, 1),
(11631, 28803, 'Omega Healthcare', 'AR executive ', '2020-10-20', 200000.00, '2021-12-22', 200000.00, 'Kandhanchavadi', '1', '1 years 2 months', ' Payment issues', 1, '2026-02-28 05:02:04', 0, NULL, 0, NULL, 1),
(11632, 28803, 'Access Healthcare', 'Senior AR Caller', '2021-12-28', 300000.00, '2023-12-28', 400000.00, 'Ambattur', '1', '2 years 0 months', 'Position not given', 1, '2026-02-28 05:03:54', 0, NULL, 0, NULL, 1),
(11633, 28803, 'AGS Healthcare', 'Process associate Level 2', '2024-01-05', 500000.00, '2024-09-28', 500000.00, 'Kandhanchavadi', '1', '0 years 8 months', 'Health issues', 1, '2026-02-28 05:05:38', 0, NULL, 0, NULL, 1),
(11634, 28803, 'Access Healthcare', 'Senior Client Partner', '2024-11-05', 550000.00, '2025-05-30', 550000.00, 'Ambattur ', '1', '0 years 6 months', 'Project over', 1, '2026-02-28 05:06:53', 0, NULL, 0, NULL, 1),
(11635, 28803, 'Firstsoruce Pvt Ltd ', 'Senior Revenue Cycle Billing Specialist ', '2025-06-30', 660000.00, '2025-09-05', 660000.00, 'Kandhanchavadi', '1', '0 years 2 months', 'Project downsized', 1, '2026-02-28 05:08:37', 0, NULL, 0, NULL, 1),
(11636, 28805, 'pruvity hr solutions', 'entry associate software developer', '2022-01-01', 10000.00, '2025-03-29', 35000.00, 'madurai', '1', '3 years 2 months', ' I am looking for better career growth and new learning opportunities.\nIn my current company, I learned PHP, Laravel, SQL, and worked on real projects.\nNow I want to improve my skills, take more responsibilities, and work on challenging projects.\nSo I decided to move to a company where I can grow technically and professionally.\nI am leaving on good terms and I am thankful to my current organization for the experience.', 1, '2026-02-28 06:18:52', 0, NULL, 0, NULL, 1),
(11637, 28804, 'maintwiz', 'software development trainee', '2025-10-13', 18000.00, '1970-01-01', 18000.00, 'kodambakkam', '2', '0 years 4 months', ' I am looking for better career growth and new learning opportunities.Now I want to improve my skills, take more responsibilities, and work on challenging projects.\nSo I decided to move to a company where I can grow technically and professionally.\n\nI am leaving on good terms and I am thankful to my current organization for the experience.', 1, '2026-02-28 06:19:13', 0, NULL, 0, NULL, 1),
(11638, 28824, 'bpo voice process', 'customer exective', '2020-02-04', 17000.00, '2025-03-12', 20000.00, 'chennai', '1', '5 years 1 months', ' Sick', 1, '2026-03-02 05:59:38', 0, NULL, 0, NULL, 1),
(11639, 28779, 'dra homes', 'property advisor', '2024-08-05', 5.00, '2025-08-02', 25000.00, 'chennai', '1', '0 years 11 months', ' Change the incentive slabs ', 1, '2026-03-02 06:05:51', 0, NULL, 0, NULL, 1),
(11640, 28828, 'policy bazaar pvt ltd', 'sales advisior', '2025-10-26', 31500.00, '2026-02-28', 31500.00, 'dolmur', '1', '0 years 4 months', ' Better oppotunity', 1, '2026-03-02 06:58:01', 0, NULL, 0, NULL, 1),
(11641, 28828, 'vizza insurance broking services pvt ltd', 'hr executive', '2024-09-26', 28000.00, '2025-09-27', 28000.00, 'shantinagar', '1', '1 years 0 months', 'Better Opportunity ', 1, '2026-03-02 07:00:05', 0, NULL, 0, NULL, 1),
(11642, 28828, 'debtcare enterprises pvt ltd', 'hr recruiter', '2022-04-01', 22000.00, '2023-04-13', 22000.00, 'shivajinagar', '1', '1 years 0 months', 'Better opportunity', 1, '2026-03-02 07:02:38', 0, NULL, 0, NULL, 1),
(11643, 28828, 'pmr relocations pvt ltd', 'hr accountant', '2021-02-03', 18000.00, '2022-03-10', 18000.00, 'tc palaya', '1', '1 years 1 months', 'Better opportunity', 1, '2026-03-02 07:06:02', 0, NULL, 0, NULL, 1),
(11644, 28830, 'Bajaj Finserv ', 'Triplicane ', '2025-07-01', 17000.00, '1970-01-01', 22000.00, 'Egmore ', '2', '0 years 8 months', ' Illness ', 1, '2026-03-02 09:31:11', 0, NULL, 0, NULL, 1),
(11645, 28830, 'Bajaj Finserv ', 'Triplicane ', '2025-07-01', 17000.00, '2026-01-01', 20000.00, 'Egmore ', '1', '0 years 6 months', 'Health issues ', 1, '2026-03-02 09:33:02', 0, NULL, 0, NULL, 1),
(11646, 28833, 'Vijay versatile', 'Sales and marketing executive ', '2023-07-01', 1.00, '2024-09-01', 3.00, 'Salem', '1', '1 years 2 months', ' I have to change for my career growth. ', 1, '2026-03-02 09:34:14', 1, '2026-03-02 09:34:46', 0, NULL, 0),
(11647, 28833, 'Star Health insurance company ', 'Senior telecaller', '2025-07-02', 1.00, '2026-01-31', 4.00, 'Chennai, vadapalani', '1', '0 years 6 months', 'Family medical issue . ', 1, '2026-03-02 09:37:47', 0, NULL, 0, NULL, 1),
(11648, 28794, 'Manappuram finance limited ', 'Assistant branch head ', '2020-12-03', 10500.00, '2021-09-19', 15500.00, 'Chennai ', '1', '0 years 9 months', ' Doing higher so relieved my previous job', 1, '2026-03-02 09:39:11', 0, NULL, 0, NULL, 1),
(11649, 28833, 'Vijay versatile ', 'Sales and marketing manager ', '2023-07-01', 1.00, '2025-06-01', 3.00, 'Salem', '1', '1 years 11 months', 'I have to change for my career growth ', 1, '2026-03-02 09:39:13', 0, NULL, 0, NULL, 1),
(11650, 28831, 'Shri ram life insurance company', 'Senior executive', '2025-12-16', 24000.00, '2026-04-30', 24000.00, 'Egmore', '1', '0 years 4 months', ' Digital channel sales process closed (insurance)', 1, '2026-03-02 09:42:31', 0, NULL, 0, NULL, 1),
(11651, 28840, 'IDFC First Bharat Private limited ', 'Customer Service ', '2022-01-03', 15000.00, '2023-12-15', 15000.00, 'Dindigul ', '1', '1 years 11 months', ' Field Work and Long Travel ', 1, '2026-03-03 03:50:21', 0, NULL, 0, NULL, 1),
(11652, 28846, 'Professional courier ', 'Assistant manager ', '2025-05-19', 30000.00, '2025-11-06', 30000.00, 'Gunidy ', '1', '0 years 5 months', ' Not fitted ', 1, '2026-03-03 05:35:29', 0, NULL, 0, NULL, 1),
(11653, 28850, 'technosoft  global services ltd', 'ar callar', '2023-08-07', 31.00, '2025-01-27', 25000.00, 'chennai', '1', '1 years 5 months', ' ', 1, '2026-03-03 06:09:04', 0, NULL, 0, NULL, 1),
(11654, 28854, 'Tata aiA', 'Arm', '2025-11-01', 300000.00, '1970-01-01', 300000.00, 'Nungambakkam ', '2', '0 years 4 months', 'For carrier growth', 1, '2026-03-03 06:51:09', 0, NULL, 0, NULL, 1),
(11655, 28856, 'Sutherland global services pvt ltd', 'Associate CS intern', '2022-09-12', 12500.00, '2023-12-01', 18000.00, 'Perungalathur', '1', '1 years 2 months', 'Had issue with travelling since they have stoped cab services', 1, '2026-03-03 07:24:35', 0, NULL, 0, NULL, 1),
(11656, 28856, 'Bharath financial inclusion limited', 'Loan officer', '2024-02-01', 18000.00, '2025-02-28', 18000.00, 'Perambur', '1', '1 years 0 months', 'Meet with an accident and the branch has been moved to other location', 1, '2026-03-03 07:26:29', 0, NULL, 0, NULL, 1),
(11657, 28861, 'Accenture ', 'Healthcare operations new associate ', '2024-09-24', 20000.00, '2026-01-21', 20000.00, 'Chennai ', '1', '1 years 3 months', 'Carrer growth ', 1, '2026-03-03 08:10:05', 0, NULL, 0, NULL, 1),
(11658, 28860, 'Eureka outsourcing ', 'Telecalling ', '2025-10-11', 12000.00, '1970-01-01', 12000.00, 'Omr thuraipakkam ', '2', '0 years 4 months', 'Low of Package ', 1, '2026-03-03 08:42:59', 0, NULL, 0, NULL, 1),
(11659, 28858, 'Eximio ', 'Ambattur ', '2024-07-17', 15000.00, '2025-11-07', 15000.00, 'Ambattur ', '1', '1 years 3 months', 'There are not giving to change my shift timing ', 1, '2026-03-03 09:26:25', 0, NULL, 0, NULL, 1),
(11660, 28869, 'Confident ', 'Graphic designer ', '2025-09-01', 18000.00, '2026-02-01', 18000.00, 'Bangalore ', '1', '0 years 5 months', ' ', 1, '2026-03-03 11:12:04', 0, NULL, 0, NULL, 1),
(11661, 28870, 'Justdial ', 'Telemarketing ', '2024-03-12', 13500.00, '2025-06-06', 19000.00, 'Little mount', '1', '1 years 2 months', ' Better opportunity And growth of my career ', 1, '2026-03-03 11:59:19', 0, NULL, 0, NULL, 1),
(11662, 28870, 'Mahindra Holidays & Resort India limited ', 'Telecalling', '2025-09-15', 19000.00, '2026-02-21', 19000.00, 'Thousand light ', '1', '0 years 5 months', 'My role was changed to field based', 1, '2026-03-03 12:04:00', 0, NULL, 0, NULL, 1),
(11663, 28879, 'Keys Fintech ', 'Finance analyst ', '2025-07-09', 15000.00, '2026-02-09', 15000.00, 'Chinmaya Nagar,  virugambakkam ', '1', '0 years 7 months', ' Company got windup ', 1, '2026-03-04 06:06:42', 0, NULL, 0, NULL, 1),
(11664, 28879, 'Keys fintech ', 'Finance analyst ( telecalling ) ', '2025-07-09', 15000.00, '2026-02-09', 15000.00, 'Chinmaya Nagar,  virugambakkam ', '1', '0 years 7 months', 'Company got windup ', 1, '2026-03-04 06:08:06', 0, NULL, 0, NULL, 1),
(11665, 28884, 'Justdial ', 'Tele marketing ', '2025-03-03', 7.00, '2025-12-05', 22000.00, 'Little mount ', '1', '0 years 9 months', ' ', 1, '2026-03-04 06:09:58', 0, NULL, 0, NULL, 1),
(11666, 28880, 'manusror honda', 'hoster', '2024-10-02', 23000.00, '2026-02-16', 23000.00, 'porur', '1', '1 years 4 months', 'salary issue', 159, '2026-03-04 11:41:06', 0, NULL, 0, NULL, 1),
(11667, 28883, 'Entuite technologies ', 'Full stack developer ', '2024-02-12', 10000.00, '2025-04-02', 12000.00, 'Trivandrum ', '1', '1 years 1 months', ' Work location not interested ', 1, '2026-03-04 06:29:48', 0, NULL, 0, NULL, 1),
(11668, 28866, 'Sundaram finance', 'Sale process', '2025-01-01', 20000.00, '2025-12-31', 17000.00, 'Chennai', '1', '0 years 11 months', 'Development course training', 1, '2026-03-04 06:37:22', 0, NULL, 0, NULL, 1),
(11669, 28888, 'bajaj life insurance', 'assitant territory manager', '2025-07-01', 30.00, '2025-12-30', 400000.00, 'arumbakam', '1', '0 years 5 months', ' ', 1, '2026-03-04 06:46:53', 0, NULL, 0, NULL, 1),
(11670, 28889, 'yesbank ltd', 'sales executive', '2025-02-05', 3.00, '2025-12-12', 1.00, 'chennai', '1', '0 years 10 months', 'For growth in carrrer ', 1, '2026-03-04 06:54:54', 0, NULL, 0, NULL, 1),
(11671, 28890, 'Lead Integrated business services pvt ltd', 'Full Stack Developer', '2023-07-22', 8000.00, '2025-10-07', 12000.00, 'Chennai', '1', '2 years 2 months', 'To work in more challenging environment and strength my career', 1, '2026-03-04 07:41:31', 0, NULL, 0, NULL, 1),
(11672, 28893, 'Enterstellar Softwares Pvt Ltd', 'HR Recruiter', '2025-01-24', 30.00, '2025-09-30', 16000.00, 'Royapettah', '1', '0 years 8 months', ' Company shutdown', 1, '2026-03-04 09:03:19', 0, NULL, 0, NULL, 1),
(11673, 28903, 'Bajaj finance ', 'Sales executive ', '2023-10-09', 22000.00, '2025-12-01', 22000.00, 'Chennai ', '1', '2 years 1 months', ' Health issue ', 1, '2026-03-05 05:56:19', 0, NULL, 0, NULL, 1),
(11674, 28905, 'Imarque solutions ', 'Customer support executive ', '2021-01-10', 10000.00, '1970-01-01', 12000.00, 'Tnagar', '2', '5 years 1 months', ' Health issues ', 1, '2026-03-05 07:12:34', 0, NULL, 0, NULL, 1),
(11675, 28905, 'Imarque solutions ', 'Customer support executive ', '2021-01-10', 10000.00, '2022-03-15', 12000.00, 'Tnagar', '1', '1 years 2 months', 'Health issues ', 1, '2026-03-05 07:14:10', 0, NULL, 0, NULL, 1),
(11676, 28905, 'Buzzworks ', 'Data abstraction executive ', '2022-03-27', 13500.00, '2024-06-15', 17000.00, 'Kanthanchavadi', '1', '2 years 2 months', 'Internal conversion ', 1, '2026-03-05 07:15:29', 0, NULL, 0, NULL, 1),
(11677, 28905, 'Optum health care ', 'Hedis executive ', '2024-06-20', 17000.00, '2024-12-27', 19000.00, 'Kanthanchavadi ', '1', '0 years 6 months', 'Marriage ', 1, '2026-03-05 07:16:47', 0, NULL, 0, NULL, 1),
(11678, 28907, 'Edelweiss Life Insurance ', 'Relationship manager ', '2023-12-23', 40000.00, '1970-01-01', 40000.00, 'Chennai ', '2', '2 years 2 months', ' Career Opportunity ', 1, '2026-03-05 09:17:48', 0, NULL, 0, NULL, 1),
(11679, 28915, 'Atos Syntal ', 'Rpa Trainee ', '2022-09-01', 17000.00, '2023-04-01', 17000.00, 'Siruseri ', '1', '0 years 7 months', ' Complete night shift has been given continuously ', 1, '2026-03-05 04:06:24', 0, NULL, 0, NULL, 1),
(11680, 28925, 'KEMS SOFTWARE SOLUTIONS ', 'Junior software developer', '2025-04-01', 1.60, '2025-11-30', 12500.00, 'Chennai ', '1', '0 years 7 months', ' Suddenly organization closed', 1, '2026-03-06 05:41:28', 0, NULL, 0, NULL, 1),
(11681, 28926, 'ESAF SMALL FIANACE BANK', 'Senior officer', '2023-05-15', 19000.00, '2026-02-07', 31000.00, 'Sathankulam', '1', '2 years 8 months', ' ', 1, '2026-03-06 06:03:41', 0, NULL, 0, NULL, 1),
(11682, 28759, 'Insurance & Investment Solutions', 'Telesales, Telecollection, Customer handling', '2025-08-10', 20000.00, '2026-01-14', 20000.00, 'Alwarthirunagar', '1', '0 years 5 months', 'I was looking for reputed organization so I temporarily worked there', 1, '2026-03-06 06:33:11', 0, NULL, 0, NULL, 1),
(11683, 28929, 'Conneqt business solutions ', 'Back office executive ', '2024-11-24', 15000.00, '2025-11-16', 16000.00, 'Valacherry ', '1', '0 years 11 months', ' Health issues ', 1, '2026-03-06 07:47:29', 0, NULL, 0, NULL, 1),
(11684, 28936, 'M R Groups ', 'Yes', '2026-03-11', 22000.00, '2026-03-13', 20000.00, 'Chennai ', '1', '0 years 0 months', ' I don\'t like way treating ', 1, '2026-03-07 05:13:04', 0, NULL, 0, NULL, 1),
(11685, 28937, 'Shriram life insurance company Ltd ', 'Relationship manager', '2024-06-10', 14.00, '2025-05-03', 21000.00, 'Tiruvannamalai ', '1', '1 years 8 months', 'I work in Banca channel But this financial year there cancel Tieup working Bank.', 1, '2026-03-07 05:36:15', 0, NULL, 0, NULL, 1),
(11686, 26447, 'nithyananda  and co', 'audit associate', '2012-03-19', 25000.00, '2015-06-30', 25000.00, 'BANGALORE', '1', '3 years 3 months', 'personal commitments', 162, '2026-03-07 11:38:56', 0, NULL, 0, NULL, 1),
(11687, 28949, 'Matrimony ', 'Customer relationship officer', '2025-02-06', 25000.00, '2026-02-07', 25000.00, 'Chennai ', '1', '1 years 0 months', ' ', 1, '2026-03-09 08:45:05', 0, NULL, 0, NULL, 1),
(11688, 28950, 'Seven consultancy Pvt Ltd ', 'Thudiyalur', '2024-06-03', 20000.00, '1970-01-01', 25000.00, 'Coimbatore ', '2', '1 years 9 months', ' Location change ', 1, '2026-03-09 10:20:55', 0, NULL, 0, NULL, 1),
(11689, 28958, 'Icici bank ', 'Branch relationship officer ', '2021-01-18', 15000.00, '2022-01-19', 18000.00, 'Valuthoor', '1', '1 years 0 months', ' Mother health issue ', 1, '2026-03-09 01:16:02', 0, NULL, 0, NULL, 1),
(11690, 28953, 'concentrix', 'Senior representatives operations ', '2024-03-09', 16000.00, '2026-01-08', 30000.00, 'chennai', '1', '1 years 9 months', ' Due to Process rampdown', 1, '2026-03-09 01:46:14', 0, NULL, 0, NULL, 1),
(11691, 28961, 'Airlift USA', 'Arrival Notice Executive', '2025-03-08', 12000.00, '2026-09-11', 12000.00, 'Coimbatore', '1', '1 years 6 months', ' ', 1, '2026-03-10 05:07:06', 0, NULL, 0, NULL, 1),
(11692, 28964, 'Tvs insurance broking Pvt ', 'Sales executive retail', '2024-03-15', 28000.00, '2025-12-30', 28000.00, 'Guindy', '1', '1 years 9 months', 'Location change ', 1, '2026-03-10 05:17:27', 0, NULL, 0, NULL, 1),
(11693, 28967, 'Just dial ', 'Telemarketing executive ', '2024-01-21', 19200.00, '2025-11-05', 21000.00, 'Chennai ', '1', '1 years 9 months', ' ', 1, '2026-03-10 06:45:17', 0, NULL, 0, NULL, 1),
(11694, 28967, 'Just dial ', 'Telemarketing executive ', '2024-01-21', 19200.00, '2025-11-05', 21000.00, 'Chennai ', '1', '1 years 9 months', ' ', 1, '2026-03-10 06:45:20', 0, NULL, 0, NULL, 1),
(11695, 28971, 'Tech Vaseegrah ', 'Thanjavur ', '2024-04-03', 9000.00, '1970-01-01', 0.00, 'Thanjavur ', '2', '1 years 11 months', ' ', 1, '2026-03-10 07:24:48', 1, '2026-03-10 07:26:41', 0, NULL, 0),
(11696, 28971, 'Techvaseegrah ', 'Thanjavur ', '2024-04-03', 7000.00, '1970-01-01', 15000.00, 'Thanjavur ', '2', '1 years 11 months', 'Salary concern', 1, '2026-03-10 07:26:33', 0, NULL, 0, NULL, 1),
(11697, 28970, 'techvaseegrah', 'developer', '2025-09-08', 4000.00, '1970-01-01', 10000.00, 'thanjavur', '2', '0 years 6 months', ' salary concern', 1, '2026-03-10 07:31:21', 0, NULL, 0, NULL, 1),
(11698, 28972, 'zinnov management consulting', 'marketing  research intern', '2019-05-05', 7000.00, '2020-07-07', 8000.00, 'kanchipuram', '1', '1 years 2 months', '  seeking better career growth', 1, '2026-03-10 07:51:20', 0, NULL, 0, NULL, 1),
(11699, 28972, 'eximio service and solutions pvt ltd', 'process associate', '2021-08-31', 9000.00, '2023-01-02', 10000.00, 'kanchipuram', '1', '1 years 4 months', ' improved work-life balance', 1, '2026-03-10 07:56:02', 0, NULL, 0, NULL, 1),
(11700, 28972, 'get farms', 'senior sales executive', '2023-04-06', 17000.00, '2025-08-08', 21000.00, 'chennai', '1', '2 years 4 months', 'Company Culture/Management: A poor fit with company values, toxic leadership, or lack of support.', 1, '2026-03-10 07:59:36', 0, NULL, 0, NULL, 1),
(11701, 28976, 'ICCS', 'CM Helpline ', '2025-02-10', 11000.00, '2025-10-11', 13000.00, 'Kotturpuram', '1', '0 years 8 months', ' ', 1, '2026-03-10 09:31:19', 0, NULL, 0, NULL, 1),
(11702, 28978, 'Sarath Kumar ', 'Charge entry ', '2023-04-28', 16000.00, '2025-06-29', 24000.00, 'Tirupati ', '1', '2 years 2 months', ' Accident issue ', 1, '2026-03-10 10:29:45', 0, NULL, 0, NULL, 1),
(11703, 28962, 'Mentore agro pvt Ltd  tha', 'Marketing co ordinator ', '2025-08-10', 20000.00, '2026-02-05', 15000.00, 'Sidco sengipati ', '1', '0 years 5 months', 'No reason ', 1, '2026-03-10 10:33:46', 0, NULL, 0, NULL, 1),
(11704, 28981, 'Miramed ajuba ', 'Junior account Executive', '2022-07-15', 15082022.00, '2024-05-19', 30000.00, 'wFH', '1', '1 years 10 months', ' Due to my sister delivery ', 1, '2026-03-10 11:31:34', 0, NULL, 0, NULL, 1),
(11705, 28982, 'Shree mutual fund ', 'Sales associate ', '2025-04-13', 31.00, '2026-01-10', 22000.00, 'Guindy', '1', '0 years 8 months', ' Career growth ', 1, '2026-03-10 12:27:53', 0, NULL, 0, NULL, 1),
(11706, 16810, 'Krish IT Solutions PVT LTD', 'Full stack developer', '2023-05-01', 120000.00, '1970-01-01', 250000.00, 'Chennai', '2', '2 years 10 months', ' For my career growth.', 1, '2026-03-10 04:04:01', 0, NULL, 0, NULL, 1),
(11707, 28993, 'Justdial, Allset business solution', 'Business delivery ', '2025-03-03', 21000.00, '2025-09-30', 21000.00, 'Chennai ', '1', '0 years 6 months', ' I met with an accident so I wasn\'t able to continued that job', 1, '2026-03-11 06:15:45', 0, NULL, 0, NULL, 1),
(11708, 28992, 'allset business solution', 'business delivery executive', '2023-09-08', 21000.00, '2025-09-30', 26000.00, 'hennai', '1', '2 years 0 months', 'Health issues , went  treatment for two months', 1, '2026-03-11 06:15:52', 0, NULL, 0, NULL, 1),
(11709, 28996, 'Medfox health care ', 'Junior executive ', '2019-06-01', 1.00, '2020-06-01', 10000.00, 'Chennai ', '1', '1 years 0 months', 'Due to pandemic Situation', 1, '2026-03-11 06:38:55', 0, NULL, 0, NULL, 1),
(11710, 28994, 'Imarque solution pvt ltd ', 'Tele sales executive ', '2024-06-06', 13000.00, '2025-08-04', 13000.00, 'Teynampet ', '1', '1 years 1 months', ' Health and timing.', 1, '2026-03-11 06:44:00', 0, NULL, 0, NULL, 1),
(11711, 28998, 'Isha homes pvt ltd', 'CRM', '2025-01-05', 10.01, '2025-12-30', 15000.00, 'Trichy ', '1', '0 years 11 months', 'Personal reson', 1, '2026-03-11 07:25:56', 0, NULL, 0, NULL, 1),
(11712, 29021, 'trendian garments ', 'sales', '2022-06-03', 13500.00, '2025-01-19', 15000.00, 'arakkonam', '1', '2 years 7 months', ' Due to late payment of salary ', 1, '2026-03-12 05:56:55', 0, NULL, 0, NULL, 1),
(11713, 29022, 'Writer business pvt Ltd ', 'Geo auditor', '2023-12-11', 17000.00, '2025-02-20', 20000.00, 'Nandhanam', '1', '1 years 2 months', ' There is no hike and there is no proper response for the employes queries ', 1, '2026-03-12 05:56:55', 0, NULL, 0, NULL, 1),
(11714, 29021, 'unique business solution ', 'telecaller', '2025-03-10', 16000.00, '2025-08-08', 16000.00, 'perambur ', '1', '0 years 4 months', 'Due to some personal reasons ', 1, '2026-03-12 05:59:34', 0, NULL, 0, NULL, 1),
(11715, 29027, 'Loans mantra', 'Tele marketing ', '2023-11-24', 15.00, '2025-05-08', 19.00, 'Arumbakkam ', '1', '1 years 5 months', ' The company not provided salary slip ', 1, '2026-03-12 08:47:59', 0, NULL, 0, NULL, 1),
(11716, 29029, 'novac', 'sales executives', '2025-06-26', 25000.00, '2026-02-20', 25000.00, 'perungidi', '1', '0 years 7 months', ' Health iss ', 1, '2026-03-12 09:49:04', 0, NULL, 0, NULL, 1),
(11717, 29033, 'Tcs (tata consulting services)', 'Banking operations SME', '2018-07-12', 13500.00, '2025-09-19', 25000.00, 'Chennai ', '1', '7 years 2 months', '  Due to my mother’s spine surgery, I needed to take care of her in my native place, so I relocated from Chennai to Pattukottai.', 1, '2026-03-12 12:48:32', 1, '2026-03-12 12:49:18', 0, NULL, 1),
(11718, 29035, 'Oncospark ', 'Payment  Posting ', '2025-08-07', 32000.00, '2026-02-11', 32000.00, 'Chennai ', '1', '0 years 6 months', ' Project  losed', 1, '2026-03-12 04:54:23', 0, NULL, 0, NULL, 1),
(11719, 29039, 'VI postpaid', 'Sales', '2024-08-14', 15000.00, '2026-01-20', 15000.00, 'Chennai', '1', '1 years 5 months', ' Some personal issue', 1, '2026-03-13 06:35:33', 0, NULL, 0, NULL, 1),
(11720, 29039, 'VI postpaid', 'Sales', '2024-08-14', 15000.00, '2026-01-20', 15000.00, 'Chennai', '1', '1 years 5 months', ' Some personal issue', 1, '2026-03-13 06:35:34', 0, NULL, 0, NULL, 1),
(11721, 29040, ' Kent private limited ', 'Counter sales representative ', '2026-01-08', 22000.00, '1970-01-01', 22000.00, 'Kammanahalli ', '2', '0 years 2 months', '  For growth ', 1, '2026-03-13 06:45:57', 0, NULL, 0, NULL, 1),
(11722, 29042, 'Aditya Birla ', 'Business development manager ', '2024-10-10', 25.00, '1970-01-01', 29000.00, 'Egmore ', '2', '1 years 5 months', ' Good offer ', 1, '2026-03-13 08:14:16', 0, NULL, 0, NULL, 1),
(11723, 29042, 'Indusland bank', 'EXE', '2022-06-03', 17500.00, '2023-07-10', 29000.00, 'Salee corporate team', '1', '1 years 1 months', 'Marriage ', 1, '2026-03-13 08:17:21', 0, NULL, 0, NULL, 1),
(11724, 29047, 'Narayanan Health insurance Ltd.', 'Junior Telesales Dept', '2025-07-10', 22000.00, '2026-01-02', 22000.00, 'Bangalore ', '1', '0 years 5 months', ' Some family issue I can drop the old company ', 1, '2026-03-14 05:17:04', 0, NULL, 0, NULL, 1),
(11725, 29060, 'CAMS', 'senior Executive ', '2016-09-26', 8.50, '2026-03-05', 20000.00, 'anna salai', '1', '9 years 5 months', ' low income and more than 9 years in mutul fund so,I grow my carrier and income growth', 1, '2026-03-16 05:41:53', 0, NULL, 0, NULL, 1),
(11726, 29063, 'Foundit', 'Cold calling sales executive ', '2025-12-22', 20000.00, '2026-03-07', 20000.00, 'Bommanahalli ', '1', '0 years 2 months', ' ', 1, '2026-03-16 06:12:10', 0, NULL, 0, NULL, 1),
(11727, 29062, 'Foundit', 'B2c sales', '2025-12-22', 20000.00, '2026-03-06', 20000.00, 'Bengaluru, bommanahalli', '1', '0 years 2 months', ' Completed my internship duration', 1, '2026-03-16 06:14:09', 0, NULL, 0, NULL, 1),
(11728, 29064, 'Foundit', 'B2C', '2025-12-22', 20000.00, '2026-03-07', 20000.00, 'Bommanahalli', '1', '0 years 2 months', ' ', 1, '2026-03-16 06:20:08', 0, NULL, 0, NULL, 1),
(11729, 29065, 'vijaya raja Groups ', 'custo relatio manager ', '2022-12-10', 24000.00, '2024-10-09', 28000.00, 'chennai ', '1', '1 years 9 months', 'Helth issu ', 1, '2026-03-16 06:27:39', 0, NULL, 0, NULL, 1),
(11730, 29067, 'Foundit', 'B2C', '2025-12-22', 20.00, '2026-02-21', 20.00, 'Roopena agarahara', '1', '0 years 1 months', ' Work pressure', 1, '2026-03-16 07:35:07', 0, NULL, 0, NULL, 1),
(11731, 29068, 'Sbi credit card and payment services ', 'Mis Co-ordinator ', '2024-04-04', 19500.00, '2026-02-06', 19509.00, 'Chenny', '1', '1 years 10 months', ' Long distance ', 1, '2026-03-16 09:20:18', 0, NULL, 0, NULL, 1),
(11732, 29069, 'Calibehr business support services pvt ltd ', 'Sales executive ', '2019-04-30', 13500.00, '2025-12-17', 18700.00, 'Maduravoyal', '1', '6 years 7 months', ' Low salary ', 1, '2026-03-16 09:26:48', 0, NULL, 0, NULL, 1),
(11733, 29083, 'Sri Dhanalakshmi enterprises ', 'Telecaller ', '2025-05-25', 18000.00, '2026-03-12', 18000.00, 'Chetpet', '1', '0 years 9 months', ' Customer calling unwanted during night time ', 1, '2026-03-17 05:08:51', 0, NULL, 0, NULL, 1),
(11734, 29082, 'DSE Loans', 'Executive', '2025-01-01', 15000.00, '2025-07-31', 15000.00, 'Thousand Lights', '1', '0 years 6 months', ' ', 1, '2026-03-17 05:22:33', 0, NULL, 0, NULL, 1),
(11735, 29082, 'Sri Dhanalakshmi enterprises ', 'Telecaller', '2025-08-05', 18000.00, '2026-03-08', 18000.00, 'Chetpet', '1', '0 years 7 months', 'Clients calling us unwantedly during night times', 1, '2026-03-17 05:24:24', 0, NULL, 0, NULL, 1),
(11736, 29086, 'Muthoot finance ', 'Sales executive ', '2025-11-10', 20000.00, '2026-01-02', 20000.00, 'Vadapalani ', '1', '0 years 1 months', ' ', 1, '2026-03-17 07:04:17', 0, NULL, 0, NULL, 1),
(11737, 29089, 'Accenture ', 'Health opration associate ', '2018-08-23', 120000.00, '2025-12-18', 375000.00, 'Chennai ', '1', '7 years 3 months', ' I gained valuable experience in my previous company. Now I am looking for a new opportunity where I can further develop my skills and contribute more to the organization’s success.', 1, '2026-03-17 08:03:11', 0, NULL, 0, NULL, 1),
(11738, 29092, 'Neuberg Diagnostics ', 'CSE', '2025-07-29', 25000.00, '2026-03-03', 21000.00, 'Chennai ', '1', '0 years 7 months', ' Personal reasons ', 1, '2026-03-17 08:33:24', 0, NULL, 0, NULL, 1),
(11739, 29092, 'Neuberg Diagnostics ', 'CSE', '2025-07-29', 25000.00, '2026-03-03', 25000.00, 'Chennai ', '1', '0 years 7 months', 'Personal reasons ', 1, '2026-03-17 08:34:36', 0, NULL, 0, NULL, 1),
(11740, 29093, 'Dtech information Technology and Outsourcing ', 'Customer Service Executive ', '2024-12-23', 21860.00, '2026-03-31', 21860.00, 'Coimbatore ', '1', '1 years 3 months', 'As per company policy, the weekly off is on Friday, which has affected my personal commitments. Additionally, the role requires 10-hour shifts per day, along with overtime without compensation, and 24/7 availability. Due to these reasons, I have decided to relieve myself from the company.', 1, '2026-03-17 10:38:00', 0, NULL, 0, NULL, 1),
(11741, 29096, 'Standard chartered ', 'Analyst ', '2025-01-10', 15000.00, '2025-12-31', 15000.00, 'Chennai', '1', '0 years 11 months', ' It\'s  a contract role that why I relieving.\nI\'m looking for permanent role and long term role.', 1, '2026-03-17 11:20:29', 0, NULL, 0, NULL, 1),
(11742, 29097, 'Wwd technologies', 'Thanjavur ', '2024-07-02', 10000.00, '1970-01-01', 12000.00, 'Thanjavur ', '2', '1 years 8 months', ' Project closed ', 1, '2026-03-17 12:08:42', 0, NULL, 0, NULL, 1),
(11743, 29108, 'Gold Star Paints & Chemicals', 'Territory Sales Officer ', '2024-10-05', 30000.00, '2025-10-31', 35000.00, 'Ernakulam ', '1', '1 years 0 months', ' Father\'s  health issue & death', 1, '2026-03-18 05:11:05', 0, NULL, 0, NULL, 1),
(11744, 29108, 'Al Zahra Pvt Hospital ', 'E claims Billing Specialist ', '2014-07-04', 150000.00, '2020-08-31', 200000.00, 'Dubai, UAE', '1', '6 years 1 months', 'Corona outbreak & Mother\'s health issue', 1, '2026-03-18 05:14:43', 0, NULL, 0, NULL, 1),
(11745, 29108, 'Al Ahalia Hospital ', 'Billing Accountant', '2009-11-27', 75000.00, '2014-08-12', 110000.00, 'Abu Dhabi', '1', '4 years 8 months', 'For career upgrade', 1, '2026-03-18 05:18:31', 0, NULL, 0, NULL, 1),
(11746, 29111, 'HDB Financial service', 'Telesale', '2025-05-07', 15000.00, '2025-11-20', 15000.00, 'Thousand lights', '1', '0 years 6 months', '  ', 1, '2026-03-18 05:31:49', 0, NULL, 0, NULL, 1),
(11747, 29112, 'HDB finance ', 'Telesales ', '2025-05-07', 17000.00, '2025-11-10', 13000.00, 'Thousands light ', '1', '0 years 6 months', '  6 months ', 1, '2026-03-18 05:33:13', 0, NULL, 0, NULL, 1),
(11748, 29124, 'Axis Bank ', 'Assistant manager ', '2024-07-25', 30000.00, '2025-10-18', 30000.00, 'Chennai ', '1', '1 years 2 months', ' My career growth and salary increase ', 1, '2026-03-18 06:13:49', 0, NULL, 0, NULL, 1),
(11749, 29126, 'Vizza Insurance ', 'Caller', '2025-04-04', 15000.00, '2025-11-07', 16500.00, 'Koyambedu ', '1', '0 years 7 months', ' Salary delay it\'s not avortable my living cost.', 1, '2026-03-18 06:56:07', 0, NULL, 0, NULL, 1),
(11750, 29144, 'Care health insurance company', 'Area relationship manager', '2025-08-07', 31.00, '2026-01-31', 25000.00, 'Aminjikarai', '1', '0 years 5 months', ' Incentive not in proper', 1, '2026-03-19 05:31:14', 0, NULL, 0, NULL, 1),
(11751, 29156, 'Shai health University ', 'AR caller ', '2025-02-02', 18.00, '2025-11-20', 20.00, 'Chennai ', '1', '0 years 9 months', ' Medical issues ', 1, '2026-03-19 12:33:36', 0, NULL, 0, NULL, 1),
(11752, 29159, 'Globe links ', 'Team leader ', '2025-03-17', 22000.00, '2025-11-30', 22000.00, 'Chennai ', '1', '0 years 8 months', ' Marriage ', 1, '2026-03-20 03:36:05', 0, NULL, 0, NULL, 1),
(11753, 29090, 'vizza insurance broking services pvt ltd company', 'sales consultant posp', '2025-06-04', 13000.00, '2026-03-12', 16000.00, 'teynampet chennai', '1', '0 years 9 months', ' Probably incentives not came to thats Why relieving the job ', 1, '2026-03-20 05:15:05', 0, NULL, 0, NULL, 1),
(11754, 29158, 'Alagappa Institute of Technology', 'Executive assistant - HR & Operation', '2025-09-01', 15000.00, '2026-02-02', 17000.00, 'chennai', '1', '0 years 5 months', 'I’m looking for better career growth and learning opportunities. While I gained valuable experience in my previous role, I feel this position aligns more closely with my long-term career goals', 1, '2026-03-20 07:24:18', 1, '2026-03-20 07:26:43', 0, NULL, 1),
(11755, 29165, 'Sagility healthcare ', 'Process consultant ', '2023-05-08', 30.00, '2025-12-06', 300009.00, 'Electronic City ', '1', '2 years 6 months', ' Am seeking a good salary according to my experience and also I just want to learn a new skills.', 1, '2026-03-20 08:18:25', 0, NULL, 0, NULL, 1),
(11756, 29168, 'ISON EXPERIENCES ', 'Telesales Executive ', '2024-03-14', 16000.00, '2026-01-27', 16000.00, 'Chennai ', '1', '1 years 10 months', ' I left the job for better career opportunities and growth.', 1, '2026-03-20 12:56:34', 0, NULL, 0, NULL, 1),
(11757, 29169, 'Medibuddy ', 'Crm associate ', '2024-10-01', 31.00, '2026-04-01', 407000.00, 'Sg palya', '1', '1 years 6 months', ' Salary was less', 1, '2026-03-21 04:50:41', 0, NULL, 0, NULL, 1),
(11758, 29171, 'teleperformance ', 'live chat associate ', '2023-10-01', 16500.00, '2025-10-01', 16500.00, 'Ambattur ', '1', '2 years 0 months', ' Looking for better career growth and learning opportunities.', 1, '2026-03-21 05:31:33', 1, '2026-03-21 05:31:53', 0, NULL, 1),
(11759, 29171, 'tech Mahindra ', 'customer support associate ', '2021-06-10', 15500.00, '2023-06-10', 15500.00, 'Ambattur ', '1', '2 years 0 months', 'Looking for better career growth and learning opportunities.', 1, '2026-03-21 05:35:01', 0, NULL, 0, NULL, 1),
(11760, 29172, 'Optimum solutions ', 'Customer support ', '2024-09-03', 17.00, '2026-02-28', 22.00, 'Chennai', '1', '1 years 5 months', ' My skill development to that sector / I need to improve another more skills upgrade my self ', 1, '2026-03-21 05:55:21', 0, NULL, 0, NULL, 1),
(11761, 29174, 'Marsaero Innovations opc pvt ltd ', 'Hr recruiter ', '2024-11-01', 15000.00, '2026-03-13', 15000.00, 'Chromepet ', '1', '1 years 4 months', ' Now I am looking for better growth and more responsiblities to handle end to end recruitment process independently.so leaved ', 1, '2026-03-21 09:22:22', 0, NULL, 0, NULL, 1),
(11762, 29175, 'wehyre', 'hr operation', '2024-12-02', 21360.00, '2025-12-31', 21360.00, 'banglore', '1', '1 years 0 months', ' Salary issue and told to reside in banglore cost of living in banglore quiet tough so resigned over ', 1, '2026-03-21 09:32:45', 0, NULL, 0, NULL, 1),
(11763, 29177, 'Ags healthcare ', 'Process executive ', '2025-08-01', 14500.00, '2026-01-01', 14500.00, 'Chennai', '1', '0 years 5 months', ' ', 1, '2026-03-21 10:15:48', 0, NULL, 0, NULL, 1),
(11764, 29180, 'HurixDigital ', 'HR Executive ', '2025-06-08', 16072025.00, '2026-01-06', 300000.00, 'Chennai ', '1', '0 years 6 months', ' Change in job role and shift ', 1, '2026-03-21 01:34:08', 0, NULL, 0, NULL, 1),
(11765, 29184, 'aeiti suzuki', 'data management system', '2024-09-20', 12000.00, '2024-12-31', 12000.00, 'thanjavur', '1', '1 years 6 months', ' I had a leg in in a bike Accident ', 1, '2026-03-21 05:30:11', 0, NULL, 0, NULL, 1),
(11766, 29187, 'Apollo hospital Pvt limited ', 'Customer support telecalling ', '2024-03-21', 21000.00, '2025-06-20', 21000.00, 'Chennai', '1', '1 years 2 months', ' Personal', 1, '2026-03-23 05:45:38', 0, NULL, 0, NULL, 1),
(11767, 29193, 'Vox India interior and exterior solution private l', 'Customer care executive ', '2025-07-02', 26000.00, '2026-02-15', 26000.00, 'Jigani ', '1', '0 years 7 months', ' Shifted to other location due to some family issues ', 1, '2026-03-23 06:17:52', 0, NULL, 0, NULL, 1),
(11768, 29209, 'Axis Bank ', 'Relationship manager ', '2024-07-13', 15000.00, '2025-07-25', 16000.00, 'T Nagar ', '1', '1 years 0 months', ' New experience for new job', 1, '2026-03-24 05:24:05', 0, NULL, 0, NULL, 1),
(11769, 29210, 'Kotak life insurance ', 'Team coordinator and Hr coordinator ', '2023-05-14', 0.00, '2026-03-24', 20000.00, 'Chennai', '1', '2 years 10 months', ' ', 1, '2026-03-24 06:00:48', 0, NULL, 0, NULL, 1),
(11770, 29210, 'Komos automotive pvt ltd ', 'Project coordinator ', '2021-04-14', 15000.00, '2023-01-18', 17000.00, 'Orakadam', '1', '1 years 9 months', 'For my carrier growth switch the job ', 1, '2026-03-24 06:03:31', 0, NULL, 0, NULL, 1),
(11771, 29214, 'HDB Financial Services ', 'Sales Executive ', '2025-09-04', 17000.00, '2025-12-04', 17000.00, 'Teynampet ', '1', '0 years 3 months', ' Family Problems ', 1, '2026-03-24 10:15:36', 0, NULL, 0, NULL, 1),
(11772, 29085, 'Bhartiaxa life insurance company ', 'Assistant Relationship manager ', '2025-09-03', 25000.00, '2026-01-01', 25000.00, 'Gopalapuram ', '1', '0 years 3 months', ' Proper salary not comming ', 1, '2026-03-25 05:34:49', 0, NULL, 0, NULL, 1),
(11773, 29222, 'Innovative digital solutions', 'Telecaller', '2025-08-02', 5.00, '2026-03-25', 16000.00, 'Chennai', '1', '0 years 7 months', ' 6months notice period completed', 1, '2026-03-25 06:09:57', 0, NULL, 0, NULL, 1),
(11774, 29221, 'Shens hospital ', 'Hr', '2025-11-28', 16000.00, '2026-03-25', 16000.00, 'Ashok pillar ', '1', '0 years 3 months', ' Time is not affordable ', 1, '2026-03-25 06:17:20', 0, NULL, 0, NULL, 1),
(11775, 29217, 'Policybazaar ', 'Relationship manager ', '2026-01-05', 28000.00, '1970-01-01', 28000.00, 'Perungudi ', '2', '0 years 2 months', ' ', 1, '2026-03-25 06:53:06', 0, NULL, 0, NULL, 1),
(11776, 29225, 'Altruist ', 'Customer support executive ', '2024-12-14', 15000.00, '2025-12-25', 15000.00, 'Garebhipalya ', '1', '1 years 0 months', ' Better opportunity ', 1, '2026-03-25 07:21:14', 0, NULL, 0, NULL, 1),
(11777, 29235, 'eosc golbel', 'tambaram', '2024-06-08', 15.00, '2026-03-26', 15.00, 'thuraipakkam', '1', '1 years 9 months', ' salary issue', 1, '2026-03-26 05:59:00', 0, NULL, 0, NULL, 1),
(11778, 29236, 'Zinka Logistics ', 'BPO TeleSales ', '2021-01-01', 10.00, '2021-09-01', 16.40, 'Marathahalli Kadubisanahalli Devarabisanahalli Ban', '1', '0 years 8 months', ' Process Shutdown ', 1, '2026-03-26 06:20:58', 0, NULL, 0, NULL, 1),
(11779, 29237, 'Yulu bike pvt ltd ', 'Area manager', '2025-04-08', 30000.00, '2026-03-21', 30000.00, 'Electronic City ', '1', '0 years 11 months', ' I was hired for 1 cluster as a area manager letter I handled the pan banglore after i performed  well there is no salary increase and no growth so I resigned and know I\'m looking growth ', 1, '2026-03-26 06:35:20', 0, NULL, 0, NULL, 1),
(11780, 29239, 'Star health Allied Insurance ', 'Claim Relationship officer ', '2023-06-21', 15000.00, '1970-01-01', 20000.00, 'Chennai ', '2', '2 years 9 months', ' Looking for New opportunity and develop my personal career and financial growth ', 1, '2026-03-26 06:44:27', 0, NULL, 0, NULL, 1),
(11781, 29254, 'Star health insurance ', 'Insurance advisor ', '2018-09-01', 15000.00, '2023-10-16', 15000.00, 'Chennai ', '1', '5 years 1 months', ' Lock down ', 1, '2026-03-27 03:20:38', 0, NULL, 0, NULL, 1),
(11782, 29254, 'Shriram Finance ', 'Business executive ', '2024-12-02', 20200.00, '2025-07-02', 20200.00, 'Chennai ', '1', '0 years 7 months', 'Family issue', 1, '2026-03-27 03:22:15', 0, NULL, 0, NULL, 1),
(11783, 29261, 'Bluechip corporate investment centre ', 'Telecaller ', '2024-10-15', 16500.00, '2026-03-03', 16500.00, 'Alwarpet ', '1', '1 years 4 months', 'Family problems ', 1, '2026-03-27 06:18:37', 0, NULL, 0, NULL, 1),
(11784, 29262, 'Nextskill Technologies ', 'Full stack developer ', '2025-04-01', 1.50, '2026-04-01', 1.50, 'Coimbatore ', '1', '1 years 0 months', ' ', 1, '2026-03-27 06:20:50', 0, NULL, 0, NULL, 1),
(11785, 29270, 'AI airport service limited', 'Customer service executive ', '2024-10-09', 25000.00, '2025-08-28', 25000.00, 'Chennai ', '1', '0 years 10 months', ' The organisation is going to shutdown ', 1, '2026-03-27 07:39:08', 0, NULL, 0, NULL, 1),
(11786, 29271, 'million talents private limited', 'HR specialist', '2024-12-06', 18000.00, '2025-10-16', 20000.00, 'banglore', '1', '0 years 10 months', 'my father health issues so i have to take care and stay in hospital.if im taking lot of leave is not good for organisation and my career too,so that i left .', 159, '2026-03-27 01:41:22', 0, NULL, 0, NULL, 1),
(11787, 29274, 'Creative Hands HR Consultancy', 'HR recruiter', '2024-03-04', 15000.00, '2025-08-05', 20000.00, 'Chennai', '1', '1 years 5 months', ' Health Issues', 1, '2026-03-27 10:13:28', 0, NULL, 0, NULL, 1),
(11788, 29275, 'Vilvatech smart solution Pvt Ltd in Thanjavur', 'Business executive ', '2025-07-21', 12000.00, '1970-01-01', 12000.00, 'Thanjavur ', '2', '0 years 8 months', 'Work pressure plus no sales that\'s why I am relieved ', 1, '2026-03-27 10:26:49', 0, NULL, 0, NULL, 1),
(11789, 29282, 'riemen solutions', 'bpo', '2023-02-01', 10000.00, '2023-09-30', 10000.00, 'thanjavur', '1', '0 years 7 months', ' ', 1, '2026-03-28 06:46:13', 0, NULL, 0, NULL, 1),
(11790, 29285, 'Altruist Technologies', 'customer support executive', '2024-12-13', 15000.00, '2025-08-10', 15000.00, 'bommanahalli', '1', '1 years 3 months', 'Process shut down', 1, '2026-03-28 07:28:55', 162, '2026-03-28 01:03:58', 0, NULL, 1),
(11791, 29286, 'Mervice Infotech ', 'CSE', '2025-08-10', 11.00, '2026-03-27', 2.00, 'Silkboard ', '1', '0 years 7 months', ' ', 1, '2026-03-28 07:49:52', 0, NULL, 0, NULL, 1),
(11792, 29291, 'falcon telesourcing pvt ltd ', 'document verification', '2024-07-15', 16000.00, '1970-01-01', 16000.00, 'wilson garen ', '2', '1 years 8 months', ' ', 1, '2026-03-30 05:26:07', 0, NULL, 0, NULL, 1),
(11793, 29292, 'Innovative Digital solution', 'Telecaller', '2025-08-03', 5.00, '2026-03-10', 16000.00, 'Chennai', '1', '0 years 7 months', ' Notice period completed', 1, '2026-03-30 05:32:56', 0, NULL, 0, NULL, 1),
(11794, 29294, 'THE CHENNAI MOBILES', 'SALES EXECUTIVE', '2024-07-24', 25000.00, '2025-11-01', 25000.00, 'AVINASHI', '1', '1 years 3 months', ' UPDATED LOCATION', 1, '2026-03-30 05:46:50', 0, NULL, 0, NULL, 1),
(11795, 29295, 'Banking ', 'Sales executive ', '2025-10-08', 18000.00, '2026-03-30', 18000.00, 'Arumbakam ', '1', '0 years 5 months', ' Looking for better career growth and new opportunities ', 1, '2026-03-30 05:54:57', 0, NULL, 0, NULL, 1),
(11796, 29296, 'Schneider electric ', 'Production DTP', '2024-08-09', 17000.00, '2025-08-09', 17000.00, 'Poonamallee ', '1', '1 years 0 months', ' Completed one year apprenticeship role ', 1, '2026-03-30 06:28:57', 0, NULL, 0, NULL, 1),
(11797, 29298, 'Wipro', 'Senior Associate ', '2024-06-19', 22000.00, '2025-10-20', 23000.00, 'Bangalore ', '1', '1 years 4 months', ' Because of health issues I have  left the company sir ', 1, '2026-03-30 06:42:43', 0, NULL, 0, NULL, 1),
(11798, 29299, 'Sree Krishna agency ', 'Team leader ', '2022-02-22', 13000.00, '2023-10-28', 18000.00, 'Sterling road chennai', '1', '1 years 8 months', 'Take care of some personal and family commitments ', 1, '2026-03-30 06:43:39', 0, NULL, 0, NULL, 1),
(11799, 29289, 'star health and allied insurance co ltd', 'telesales officer', '2025-01-02', 16000.00, '2026-01-13', 17500.00, 'chennai', '2', '1 years 0 months', 'due timing issue ', 1, '2026-03-31 03:35:13', 1, '2026-03-31 03:40:55', 0, NULL, 1),
(11800, 29289, 'galaxy health insurance', 'relationship manager', '2026-02-03', 16000.00, '2026-03-31', 16000.00, 'chennai', '2', '0 years 1 months', 'low salary', 1, '2026-03-31 03:45:42', 0, NULL, 0, NULL, 1),
(11801, 29283, 'casagrand buliders', 'senior executive', '2025-04-09', 35000.00, '1970-01-01', 35000.00, 'sholliganallur', '2', '0 years 11 months', 'I want to take up more challenging responsibilities and grow professionally, which is limited in my current role', 1, '2026-03-31 04:51:19', 0, NULL, 0, NULL, 1),
(11802, 29283, 'global health care', 'senior executive', '2023-10-02', 37000.00, '2024-10-01', 37000.00, 'velacherry', '1', '0 years 11 months', 'Career growth', 1, '2026-03-31 04:59:29', 0, NULL, 0, NULL, 1),
(11803, 29283, 'omega health care', 'senior executive ', '2021-07-01', 28000.00, '2023-09-30', 28000.00, 'chennai one thoraipakkam', '1', '2 years 2 months', 'Career growth', 1, '2026-03-31 05:01:48', 0, NULL, 0, NULL, 1),
(11804, 29309, 'Posnic innovation pvt limited ', 'Mayiladuthurai ', '2022-07-17', 12000.00, '2025-12-25', 20000.00, 'Nagapattinam ', '1', '3 years 5 months', ' Salary problem not run family ', 1, '2026-03-31 05:19:38', 0, NULL, 0, NULL, 1),
(11805, 29311, 'Cognizant Technology Solutions ', 'Programmer Analyst ', '2022-02-05', 22000.00, '2024-05-17', 25000.00, 'Chennai', '1', '2 years 3 months', 'Preparation for Government Exam', 1, '2026-03-31 06:35:04', 0, NULL, 0, NULL, 1),
(11806, 29314, 'ramsol', 'hr recruiter', '2025-04-01', 15000.00, '2026-02-04', 15000.00, 'chennai', '1', '0 years 10 months', ' Better opportunity', 1, '2026-03-31 06:45:20', 0, NULL, 0, NULL, 1),
(11807, 29308, 'RMPEB Building Construction', 'Head Supervisor', '2026-01-01', 20000.00, '1970-01-01', 20000.00, 'Kanchipuram', '2', '0 years 2 months', 'weekly 7 days work and 12+ hours of working time', 154, '2026-03-31 02:42:57', 0, NULL, 0, NULL, 1),
(11808, 29317, 'HDB Financial services', 'Senior telecaller', '2023-11-01', 10000.00, '2025-01-01', 10000.00, 'Chennai', '1', '1 years 2 months', 'career growth', 154, '2026-03-31 02:50:50', 0, NULL, 0, NULL, 1),
(11809, 29317, 'Popular Motors Ventures ', 'senior tele caller', '2025-02-01', 15000.00, '2025-07-31', 15000.00, 'chennai', '1', '0 years 5 months', 'for personal reasones', 154, '2026-03-31 02:52:03', 0, NULL, 0, NULL, 1),
(11810, 29317, 'spacedraft india private ltd', 'CRM executive ', '2025-12-01', 22000.00, '2026-03-10', 22000.00, 'chennai', '1', '0 years 3 months', 'No proper salary', 154, '2026-03-31 02:53:35', 0, NULL, 0, NULL, 1),
(11811, 29324, 'FIIT formacion pvt ltd ', 'Hr Generalist ', '2024-05-05', 168000.00, '2026-03-31', 235000.00, 'Avadi', '1', '1 years 10 months', ' Career growth ', 1, '2026-04-01 04:51:50', 0, NULL, 0, NULL, 1),
(11812, 29323, 'Star Health & Allied Insurance company ', 'Telesales Executive ', '2024-12-18', 16000.00, '2025-03-31', 16500.00, 'Vadapalani ', '1', '0 years 3 months', ' Family issue ', 1, '2026-04-01 04:54:18', 0, NULL, 0, NULL, 1),
(11813, 29322, 'Star Health and allied insurance company ', 'Telesales Executive ', '2024-12-18', 16000.00, '2025-12-12', 17700.00, 'Vadapalani ', '1', '0 years 11 months', ' Timing issue', 1, '2026-04-01 05:00:48', 0, NULL, 0, NULL, 1),
(11814, 29322, 'Galaxy health insurance ', 'Relationship manager ', '2026-01-23', 19000.00, '1970-01-01', 19000.00, 'Teynampet ', '2', '0 years 2 months', 'Low salary ', 1, '2026-04-01 05:01:46', 0, NULL, 0, NULL, 1),
(11815, 29325, 'Swiggy', 'Telecaller', '2020-02-10', 25000.00, '2023-09-30', 25000.00, 'nungambakkam', '1', '3 years 7 months', 'Office closed', 159, '2026-04-01 11:10:52', 0, NULL, 0, NULL, 1),
(11816, 29325, 'foxconn private limited', 'data entr', '2023-05-01', 25000.00, '2023-12-01', 25000.00, 'sriperumbatur', '1', '0 years 7 months', 'contract for 6 months', 159, '2026-04-01 11:13:57', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11817, 29325, 'ocean life space india private ltd', 'procurement junior coordinator', '2024-01-31', 25000.00, '2026-04-01', 28000.00, 'ekkatuthangal', '1', '2 years 2 months', 'distance and timing', 159, '2026-04-01 11:15:23', 159, '2026-04-01 11:16:21', 0, NULL, 1),
(11818, 19394, 'Axis Max life insurance , Care health insurance, H', 'Assistant sales manager ', '2025-11-06', 30.00, '1970-01-01', 27000.00, 'Chennai ', '2', '0 years 4 months', 'Field sales ', 1, '2026-04-01 06:13:46', 0, NULL, 0, NULL, 1),
(11819, 29329, 'Bluedart', 'Customer support executive ', '2025-02-05', 26000.00, '1970-01-01', 26000.00, 'nungambakkam', '2', '1 years 1 months', ' Family emergency ', 1, '2026-04-01 06:16:16', 0, NULL, 0, NULL, 1),
(11820, 19394, 'Care health insurance ', 'Relationship manager ', '2024-06-04', 30.00, '2025-10-09', 21000.00, 'Chennai ', '1', '1 years 4 months', 'Family reason ', 1, '2026-04-01 06:16:55', 0, NULL, 0, NULL, 1),
(11821, 29341, 'Express Pack Print ', 'ERP Support Executive ', '2023-11-21', 45000.00, '2025-05-05', 48000.00, 'United Arab Emirates ', '1', '1 years 5 months', ' Due to medical issues ', 1, '2026-04-01 09:58:29', 0, NULL, 0, NULL, 1),
(11822, 29342, 'City union bank ', 'Relationship manager ', '2026-05-08', 31.00, '1970-01-01', 22000.00, 'Chennai ', '2', '0 years 1 months', 'Currently I\'m working ', 1, '2026-04-01 10:00:02', 0, NULL, 0, NULL, 1),
(11823, 29341, 'Infosys private Limited ', 'System Associate ', '2022-06-20', 16000.00, '2023-07-19', 16000.00, 'Chennai', '1', '1 years 0 months', 'Due to medical emergency ', 1, '2026-04-01 10:00:51', 0, NULL, 0, NULL, 1),
(11824, 29353, 'Straive ', 'Data associate ', '2025-11-24', 265000.00, '1970-01-01', 265000.00, 'chennai', '2', '0 years 4 months', ' I want to switch to my field ', 1, '2026-04-01 01:19:23', 0, NULL, 0, NULL, 1),
(11825, 29354, 'MATRIMONY.COM ', 'Customer support Associate ', '2024-11-05', 12000.00, '2026-03-11', 18500.00, 'Guindy ', '1', '1 years 4 months', ' I will join new company I learning new skills and experience so  I relieving previous company ', 1, '2026-04-01 01:32:48', 0, NULL, 0, NULL, 1),
(11826, 29358, 'B seen designs', 'Marketing executive ', '2025-06-09', 28000.00, '2025-12-10', 3.00, 'Chennai ', '1', '0 years 6 months', 'Carrier growth ', 1, '2026-04-01 06:21:28', 0, NULL, 0, NULL, 1),
(11827, 29361, 'Nxtwave ', 'BDA', '2024-05-01', 26200.00, '2025-07-31', 26200.00, 'Hyderabad ', '1', '1 years 2 months', ' Medical issues to my father ', 1, '2026-04-02 05:22:45', 0, NULL, 0, NULL, 1),
(11828, 29360, 'Kaviya ', 'Tele calling ', '2024-12-31', 22000.00, '2026-04-02', 22000.00, 'Kodambakkam ', '1', '1 years 3 months', ' Timing ', 1, '2026-04-02 05:25:28', 0, NULL, 0, NULL, 1),
(11829, 29364, 'Anur cloud technology ', 'QA engineer ', '2022-01-03', 2.00, '2025-09-30', 3.00, 'Chennai ', '1', '3 years 8 months', ' ', 1, '2026-04-02 05:30:04', 0, NULL, 0, NULL, 1),
(11830, 29364, 'Anur cloud technology ', 'QA engineer ', '2022-01-03', 2.00, '2025-09-30', 3.00, 'Chennai ', '1', '3 years 8 months', ' ', 1, '2026-04-02 05:30:04', 0, NULL, 0, NULL, 1),
(11831, 29365, 'Vizza insurance ', 'Telesales ', '2024-12-18', 16.00, '2026-01-07', 18.00, 'Koyambedu ', '1', '1 years 0 months', ' New experience ', 1, '2026-04-02 05:38:32', 0, NULL, 0, NULL, 1),
(11832, 29375, 'Muthoot , ', 'CCE ', '2023-09-14', 16000.00, '2024-03-31', 16000.00, 'Rasipuram ', '1', '0 years 6 months', ' Health issues ', 1, '2026-04-02 09:55:20', 0, NULL, 0, NULL, 1),
(11833, 29374, 'Cogent e service limited ', 'Telicaling executive ', '2022-09-01', 15000.00, '2023-07-01', 17000.00, 'Mangalore ', '1', '0 years 10 months', ' ', 1, '2026-04-02 09:55:52', 0, NULL, 0, NULL, 1),
(11834, 29376, 'Policybazaar insurance brokerage private limited ', 'Telecaller', '2024-04-01', 375000.00, '2025-08-05', 375000.00, 'Chennai', '1', '1 years 4 months', 'Reason for my marriage so I quite the job', 1, '2026-04-02 04:42:09', 0, NULL, 0, NULL, 1),
(11835, 29377, 'Hdb financial services company ', 'Chennai ', '2023-08-04', 10.00, '2024-11-03', 15.00, 'Thousand lights ', '1', '1 years 2 months', ' Mother health issues ', 1, '2026-04-03 05:00:40', 154, '2026-04-03 10:32:11', 0, NULL, 1),
(11836, 29375, 'cogent serices', 'customer care executive', '2021-09-01', 15000.00, '2022-06-29', 15000.00, 'mangalore', '1', '0 years 9 months', 'health issue', 154, '2026-04-03 10:53:15', 0, NULL, 0, NULL, 1),
(11837, 29375, 'cogent services', 'customer care executive', '2022-09-01', 15000.00, '2023-06-30', 15000.00, 'mangalore', '1', '0 years 9 months', 'health issue', 154, '2026-04-03 10:54:35', 0, NULL, 0, NULL, 1),
(11838, 29374, 'Muthoot', 'gold loan executive', '2023-08-01', 16000.00, '2023-12-31', 16000.00, 'rasipuram', '1', '0 years 4 months', 'family health issue', 154, '2026-04-03 10:57:01', 0, NULL, 0, NULL, 1),
(11839, 29382, 'Teleperformace ', 'Customer support executive ', '2025-06-09', 1.00, '2026-01-03', 15000.00, 'Ambattur ', '1', '0 years 6 months', ' Due to contract base', 1, '2026-04-03 08:38:14', 0, NULL, 0, NULL, 1),
(11840, 29386, 'Justdial Pvt Ltd ', 'Telemarketing Executive ', '2024-02-28', 14500.00, '2025-07-05', 35000.00, 'Little Mount ', '1', '1 years 4 months', ' Personal Reason ', 1, '2026-04-06 03:46:30', 0, NULL, 0, NULL, 1),
(11841, 29380, 'taurus bpo company', 'customer support', '2023-08-10', 10.00, '2026-04-06', 18.00, 'velachery', '1', '2 years 7 months', ' The process  was closed', 1, '2026-04-06 05:39:02', 0, NULL, 0, NULL, 1),
(11842, 29387, 'Star health insurance ', 'Tele sales ', '2025-10-14', 30102025.00, '2026-02-28', 27000.00, 'Vadapalani ', '1', '0 years 4 months', ' Salary issues', 1, '2026-04-06 05:45:24', 0, NULL, 0, NULL, 1),
(11843, 29390, 'alldigitech', 'customer care executive', '2025-07-01', 7.00, '1970-01-01', 20000.00, 'banglore', '2', '0 years 9 months', ' ', 1, '2026-04-06 08:11:19', 0, NULL, 0, NULL, 1),
(11844, 29393, 'Nestaway technologies ', 'Customer Support executive ', '2024-07-01', 21000.00, '1970-01-01', 24000.00, 'Bangalore ', '2', '1 years 9 months', ' Better job opportunity ', 1, '2026-04-07 04:48:05', 0, NULL, 0, NULL, 1),
(11845, 29394, 'mckingstown', 'ales', '2022-01-01', 18000.00, '2025-12-31', 25000.00, 'besant nagar', '1', '3 years 11 months', ' ', 1, '2026-04-07 05:09:43', 0, NULL, 0, NULL, 1),
(11846, 29398, 'Axis bank ', 'Senior relationship officer ', '2025-04-02', 19500.00, '2026-04-04', 19332.00, 'T nagar ', '1', '1 years 0 months', ' Reason is For my career growth and also salary.I want work in big organisation and I want learning more and more in my career journey that\'s why am relieving.', 1, '2026-04-07 07:12:03', 0, NULL, 0, NULL, 1),
(11847, 29413, 'Phoneix global resettlement services.', 'Tele sales executive ', '2025-06-01', 25000.00, '2026-01-01', 25000.00, 'Banglore ', '1', '0 years 7 months', ' ', 1, '2026-04-08 09:29:44', 0, NULL, 0, NULL, 1),
(11848, 29413, 'Phoneix global resettlement services ', 'Tele sales executive ', '2025-06-01', 250000.00, '2026-01-01', 25000.00, 'Koramangala Bangalore ', '1', '0 years 7 months', 'Because of some personal reasons ', 1, '2026-04-08 09:32:40', 0, NULL, 0, NULL, 1),
(11849, 29414, 'Real estate based corporate company ', 'Telecaller', '2025-06-09', 15.00, '2025-08-05', 18000.00, 'Chromepet ', '1', '0 years 1 months', ' Traveling issue ', 1, '2026-04-08 09:46:03', 0, NULL, 0, NULL, 1),
(11850, 29420, 'Hamly business solutions ', 'Senior process associate ', '2022-03-01', 15000.00, '2025-03-01', 22000.00, 'Thanjavur ', '1', '3 years 0 months', ' Health issues ', 1, '2026-04-08 12:50:21', 0, NULL, 0, NULL, 1),
(11851, 29423, 'Stats performs ', 'Data collection analyst ', '2023-08-18', 20000.00, '2025-10-31', 25000.00, 'Chennai ', '1', '2 years 2 months', ' Looking for better career growth ', 1, '2026-04-09 05:31:44', 0, NULL, 0, NULL, 1),
(11852, 29429, 'Medusind', 'Ar caller', '2025-01-03', 18000.00, '2026-02-03', 20000.00, 'Vadapalani ', '1', '1 years 1 months', ' I am not comfortable with night shifts ', 1, '2026-04-09 06:23:22', 0, NULL, 0, NULL, 1),
(11853, 29430, 'Bangalore industrial oil ', 'Backend office and sales ', '2026-01-28', 22000.00, '2026-04-16', 22000.00, 'Bommasandhra ', '1', '0 years 2 months', ' No growth .no incentives ', 1, '2026-04-09 06:38:53', 0, NULL, 0, NULL, 1),
(11854, 29430, 'Justdial ltd ', 'Tele sales ', '2022-10-18', 20.00, '2026-01-14', 20.00, 'Cunningham road ', '1', '3 years 2 months', 'No increament from past 3 years', 1, '2026-04-09 06:40:28', 0, NULL, 0, NULL, 1),
(11855, 29432, 'bank bazaar', 'senior customer relationship officer', '2022-09-22', 18000.00, '2025-10-01', 23500.00, 'ambattur', '1', '3 years 0 months', 'hikes and designation', 154, '2026-04-09 12:56:37', 0, NULL, 0, NULL, 1),
(11856, 29433, 'autosense', 'telesales executive', '2022-06-01', 18000.00, '2025-02-28', 18000.00, 'chennai', '1', '2 years 8 months', 'no salary increment', 154, '2026-04-09 03:05:05', 0, NULL, 0, NULL, 1),
(11857, 29433, 'ebixcash global services', 'telemarketer', '2025-03-01', 20000.00, '2025-07-31', 20000.00, 'chennai', '1', '0 years 5 months', 'process shifted to bangalore', 154, '2026-04-09 03:06:56', 0, NULL, 0, NULL, 1),
(11858, 29433, 'upmeta academy', 'data analst trainee', '2025-09-01', 20000.00, '2025-03-31', 20000.00, 'chennai', '1', '0 years 5 months', 'location changed', 154, '2026-04-09 03:08:20', 0, NULL, 0, NULL, 1),
(11859, 29438, 'Indiafilings pvt ltd', 'relationship manager', '2023-09-08', 13000.00, '2026-02-20', 18000.00, 'chepkat', '1', '2 years 5 months', ' ', 1, '2026-04-09 02:03:36', 0, NULL, 0, NULL, 1),
(11860, 29439, 'BNB TECHNOLOGY ', 'Customer support executive ', '2018-06-12', 12000.00, '2024-04-30', 12000.00, 'Chennai', '1', '5 years 10 months', ' ', 1, '2026-04-10 05:06:35', 0, NULL, 0, NULL, 1),
(11861, 29440, 'Pacific advisory solution', 'Relationship manager ', '2019-02-04', 30000.00, '2019-10-10', 30000.00, 'Guindy', '1', '0 years 8 months', ' Got job in direct channel as a financial consultant in hdfc life', 1, '2026-04-10 05:16:00', 0, NULL, 0, NULL, 1),
(11862, 29442, 'Capgemini Services India Pvt Ltd ', 'Process Associate ', '2024-05-30', 260000.00, '2025-11-28', 260000.00, 'Chennai', '1', '1 years 5 months', ' ', 1, '2026-04-10 05:51:15', 0, NULL, 0, NULL, 1),
(11863, 29445, 'star health innsurance', 'sales', '2024-12-02', 16000.00, '2025-03-03', 160000.00, 'vadapalani', '1', '0 years 3 months', 'work timings', 154, '2026-04-10 11:34:31', 0, NULL, 0, NULL, 1),
(11864, 29455, 'snnr private limited', 'sales associate and cashier', '2021-10-01', 12000.00, '2022-12-31', 12000.00, 'vr mall', '1', '1 years 3 months', 'closed', 154, '2026-04-10 02:55:10', 0, NULL, 0, NULL, 1),
(11865, 29455, 'prisma garments', 'sales associate and cashier', '2023-01-02', 14000.00, '2024-04-30', 14000.00, 'vr chennai', '1', '1 years 3 months', 'got offer after graduation', 154, '2026-04-10 02:56:41', 0, NULL, 0, NULL, 1),
(11866, 29455, 'unicef india', 'telecaller', '2024-04-01', 27000.00, '2025-04-30', 27000.00, 'vadapalani', '1', '1 years 0 months', 'campaign is closed', 154, '2026-04-10 02:57:51', 0, NULL, 0, NULL, 1),
(11867, 29455, 'policy pact', 'telecaller', '2025-04-01', 27000.00, '2025-12-31', 27000.00, 'purasiwalkam chennai', '1', '0 years 8 months', 'no official documents has been given', 154, '2026-04-10 02:59:09', 0, NULL, 0, NULL, 1),
(11868, 29456, 'star health insurance', 'customer support', '2022-12-05', 17000.00, '2024-02-28', 17000.00, 'thousand lights', '1', '1 years 2 months', 'better opportunity in unicef', 154, '2026-04-10 03:05:03', 0, NULL, 0, NULL, 1),
(11869, 29456, 'unicef', 'lead generation', '2024-04-01', 27000.00, '2025-04-30', 27000.00, 'vadapalani', '1', '1 years 0 months', 'company shutdown', 154, '2026-04-10 03:06:12', 0, NULL, 0, NULL, 1),
(11870, 29458, 'matrimony.com', 'realtionshi manager', '2024-06-14', 25000.00, '2026-02-06', 25000.00, 'advar', '1', '1 years 7 months', 'health issue', 154, '2026-04-10 03:13:31', 0, NULL, 0, NULL, 1),
(11871, 29459, 'just dial', 'telemarketing executive', '2021-09-01', 15000.00, '2023-01-31', 15000.00, 'little mount', '1', '1 years 4 months', 'salary hike', 154, '2026-04-10 03:22:48', 0, NULL, 0, NULL, 1),
(11872, 29459, 'jain housing construction', 'telemarketing executive', '2023-03-01', 20000.00, '2024-05-31', 20000.00, 'kodambakam', '1', '1 years 3 months', 'family situation', 154, '2026-04-10 03:24:24', 0, NULL, 0, NULL, 1),
(11873, 29459, 'market soft 1', 'telesales executive', '2024-06-01', 18000.00, '2024-11-30', 18000.00, 'little mount', '1', '0 years 5 months', 'salary hikes', 154, '2026-04-10 03:25:37', 0, NULL, 0, NULL, 1),
(11874, 29459, 'tamil matrimony', 'senior relationship manager', '2025-02-01', 25000.00, '2026-01-31', 25000.00, 'adar', '1', '0 years 11 months', 'accident', 154, '2026-04-10 03:27:54', 0, NULL, 0, NULL, 1),
(11875, 29468, 'Dalocon international Pvt Ltd ', 'Business development manager ', '2024-06-03', 23.50, '2025-04-30', 2.00, 'Bangalore ', '1', '0 years 10 months', ' Not given salary properly ', 1, '2026-04-11 06:18:11', 0, NULL, 0, NULL, 1),
(11876, 29470, 'Hindustan Software Technology ', 'SharePoint developer ', '2025-02-05', 15000.00, '1970-01-01', 15000.00, 'Coimbatore ', '2', '1 years 2 months', ' N/A', 1, '2026-04-11 08:41:08', 0, NULL, 0, NULL, 1),
(11877, 29472, 'uniq', 'application developer', '2024-01-02', 10000.00, '2025-06-30', 15000.00, 'tnagar', '1', '1 years 5 months', 'low salary', 154, '2026-04-11 04:07:41', 0, NULL, 0, NULL, 1),
(11878, 29477, 'Elatre digital marketing agency chennai ', 'Seo trainee ', '2025-05-12', 13000.00, '2025-10-31', 13000.00, 'Perungudi ', '1', '0 years 5 months', 'Not gaining any knowledge in the organisation ', 1, '2026-04-13 05:45:47', 0, NULL, 0, NULL, 1),
(11879, 29479, 'Idfc bank', 'Relationship manager', '2026-01-11', 16500.00, '2026-04-01', 16500.00, 'Uttarahalli ', '1', '0 years 2 months', ' Better opportunities', 1, '2026-04-13 05:56:12', 0, NULL, 0, NULL, 1),
(11880, 29481, 'Jovees skincare herbal ', 'Beuty advisor ', '2020-01-05', 18000.00, '2025-12-20', 32000.00, 'Parrys ', '1', '5 years 11 months', ' ', 1, '2026-04-13 06:22:24', 0, NULL, 0, NULL, 1),
(11881, 29481, 'Loan Requirement ', 'Loan process ', '2025-12-22', 22000.00, '2026-03-05', 22000.00, 'Arum Pakkam ', '1', '0 years 2 months', 'Salary', 1, '2026-04-13 06:27:00', 0, NULL, 0, NULL, 1),
(11882, 29487, 'total outsource management', 'data', '2024-10-01', 11000.00, '2026-03-01', 15000.00, 'thanjavur', '1', '1 years 5 months', ' ', 1, '2026-04-13 06:34:33', 0, NULL, 0, NULL, 1),
(11883, 29493, 'cafs', 'relationship executive', '2024-12-02', 13000.00, '2026-05-13', 13000.00, 'mount road', '1', '1 years 5 months', 'chicken pox', 154, '2026-04-13 12:21:19', 0, NULL, 0, NULL, 1),
(11884, 29493, 'shriram life', 'sales', '2025-01-01', 16000.00, '2025-04-30', 16000.00, 'kodambakkam', '1', '0 years 3 months', 'offer letter has not provided', 154, '2026-04-13 12:22:26', 0, NULL, 0, NULL, 1),
(11885, 29489, 'airport', 'aprentice', '2024-11-01', 0.00, '2025-11-21', 15000.00, 'airport', '1', '1 years 0 months', 'government contract', 154, '2026-04-13 12:30:52', 0, NULL, 0, NULL, 1),
(11886, 29494, 'Shriram life insurance ', 'Customer support executive ', '2023-06-01', 15000.00, '2026-03-31', 18000.00, 'Kodambakkam ', '1', '2 years 9 months', 'Personal reasons ', 1, '2026-04-13 07:05:42', 0, NULL, 0, NULL, 1),
(11887, 29495, 'Keypoint Technologies ', 'Software Associate ', '2025-11-17', 17.00, '1970-01-01', 24000.00, 'Trichy', '2', '0 years 4 months', ' Want to explore.', 1, '2026-04-13 07:41:08', 0, NULL, 0, NULL, 1),
(11888, 29495, 'Incom e solutions Architect', 'Jr. Software developer ', '2024-10-01', 22000.00, '2025-11-16', 22000.00, 'Trichy', '1', '1 years 1 months', 'Vendor transition ', 1, '2026-04-13 07:42:29', 0, NULL, 0, NULL, 1),
(11889, 29486, 'vizza insurance', 'voice process excutive', '2025-03-03', 0.00, '2026-02-28', 0.00, 'chennai', '1', '0 years 11 months', 'location change', 154, '2026-04-13 02:54:26', 0, NULL, 0, NULL, 1),
(11890, 29498, 'Exela Technologies ', 'Senior Processor', '2018-08-30', 11000.00, '2025-10-16', 29000.00, 'Chennai ', '1', '7 years 1 months', ' Project closed.', 1, '2026-04-13 03:38:24', 0, NULL, 0, NULL, 1),
(11891, 29500, 'Jana Small Finance  bank', 'Customer relationship manager', '2026-01-16', 28333.00, '2026-04-01', 28333.00, 'Fraer Town', '1', '0 years 2 months', 'Timing Issues', 162, '2026-04-14 12:15:37', 0, NULL, 0, NULL, 1),
(11892, 29501, 'Infinity learn ', 'Inside sales executive ', '2025-02-20', 32000.00, '2026-03-03', 32000.00, 'Bangalore ', '1', '1 years 0 months', ' ', 1, '2026-04-14 09:03:38', 0, NULL, 0, NULL, 1),
(11893, 29507, 'Bajaj finance limited ', 'Sales', '2025-09-11', 11.00, '2026-01-06', 21000.00, 'Chennai ', '2', '0 years 3 months', ' ', 1, '2026-04-15 05:49:01', 0, NULL, 0, NULL, 1),
(11894, 29508, 'Swarnaudhyam ', 'Thanjavur', '2024-01-01', 12000.00, '2025-02-01', 12000.00, 'Thanjavur', '1', '1 years 1 months', ' Field job', 1, '2026-04-15 05:53:29', 0, NULL, 0, NULL, 1),
(11895, 29506, 'yung media ', 'project coordinator', '2025-03-04', 20000.00, '2025-09-02', 20000.00, 'velachery ', '1', '0 years 5 months', ' Due to Personal reasons', 1, '2026-04-15 05:56:54', 0, NULL, 0, NULL, 1),
(11896, 29506, 'yung media ', 'project coordinator', '2025-03-04', 20000.00, '2025-09-03', 20000.00, 'Velachery ', '1', '0 years 5 months', 'Due to personal reasons', 1, '2026-04-15 05:58:35', 0, NULL, 0, NULL, 1),
(11897, 29516, 'anb constructions', 'admin', '2021-06-01', 11000.00, '2023-02-28', 12000.00, 'kodambakkam', '1', '1 years 8 months', 'no career growth', 154, '2026-04-15 12:41:09', 0, NULL, 0, NULL, 1),
(11898, 29516, 'hdfc bank', 'relAtionship manager', '2023-04-21', 17000.00, '2025-06-09', 20000.00, 'porur', '1', '2 years 1 months', 'health issue', 154, '2026-04-15 12:42:26', 0, NULL, 0, NULL, 1),
(11899, 29518, 'Hdfc bank', 'Virtual relationship manager', '2023-04-01', 24000.00, '2023-10-31', 24000.00, 'Chennai', '1', '0 years 6 months', ' Personal reason', 1, '2026-04-15 07:44:12', 0, NULL, 0, NULL, 1),
(11900, 29522, 'Bankbazaar ', 'Customer relationship officer ', '2025-03-31', 20000.00, '2026-04-09', 19100.00, 'Ambattur ', '1', '1 years 0 months', ' Due to timing issue ', 1, '2026-04-15 09:29:55', 0, NULL, 0, NULL, 1),
(11901, 29528, 'Equitas Small Finance Bank Head Office ', 'Customer service support ', '2021-09-07', 12800.00, '2022-04-16', 15000.00, 'Chennai Mount road ', '1', '0 years 7 months', ' Left to pursue MBA which I have now completed ', 1, '2026-04-16 05:16:42', 0, NULL, 0, NULL, 1),
(11902, 29535, 'Venticinque Aeyon Groupe ', 'Mern Stack Developer ', '2025-12-09', 10.00, '2026-03-09', 10.00, 'Remote ', '1', '0 years 3 months', ' Internship is completed ', 1, '2026-04-16 05:24:05', 0, NULL, 0, NULL, 1),
(11903, 29535, 'Ailaysa Technologies ', 'React Developer ', '2026-02-11', 13000.00, '2026-03-31', 13000.00, 'Chennai ', '1', '0 years 1 months', 'It\'s 50 days internship only that internship is completed ', 1, '2026-04-16 05:25:56', 0, NULL, 0, NULL, 1),
(11904, 29504, 'Matrimony.com ', 'Senior Relationship Manager ', '2024-10-10', 27000.00, '2025-07-01', 27000.00, 'Adyar', '1', '0 years 8 months', ' Better Propects', 1, '2026-04-16 06:00:15', 0, NULL, 0, NULL, 1),
(11905, 29542, 'HDB financial services ', 'Sale\'s officer ', '2024-09-20', 12000.00, '2025-12-11', 16000.00, 'Avadi', '1', '1 years 2 months', 'Health issues ', 1, '2026-04-16 08:08:09', 0, NULL, 0, NULL, 1),
(11906, 29553, 'Tvse', 'Desktop support ', '2025-06-09', 300000.00, '1970-01-01', 300000.00, 'Chennai', '2', '0 years 10 months', 'I am looking to transition into a software development role to align with my skills and long-term career goals', 1, '2026-04-16 01:23:21', 0, NULL, 0, NULL, 1),
(11907, 29565, 'central govt contract', 'deo', '2021-12-01', 25000.00, '2024-10-31', 25000.00, 'meenambakkam', '1', '2 years 11 months', '2 years contract', 154, '2026-04-17 10:54:43', 0, NULL, 0, NULL, 1),
(11908, 29565, 'central govt contract', 'deo', '2021-12-01', 25000.00, '2024-10-31', 25000.00, 'meenambakkam', '1', '2 years 11 months', '2 years contract', 154, '2026-04-17 10:54:45', 154, '2026-04-17 10:54:51', 0, NULL, 0),
(11909, 29563, 'allsec infotechnologies', 'us support exe ', '2022-03-02', 17500.00, '2023-12-24', 20000.00, 'mg road', '1', '1 years 9 months', ' ', 1, '2026-04-17 05:28:40', 0, NULL, 0, NULL, 1),
(11910, 29563, 'girnarsoft Education pvt limi ', 'operations exe', '2023-03-01', 21000.00, '2023-12-22', 21000.00, 'lallbagh', '1', '0 years 9 months', 'Process shutdown', 1, '2026-04-17 05:30:57', 0, NULL, 0, NULL, 1),
(11911, 29566, 'City union bank ', 'Rm II', '2025-03-18', 31.00, '2025-12-06', 32900.00, 'Minjur ', '1', '0 years 8 months', ' Long distance issue ', 1, '2026-04-17 05:54:10', 0, NULL, 0, NULL, 1),
(11912, 29591, 'corpgen services', 'bgv', '2024-06-05', 22000.00, '2026-04-18', 23000.00, 'chennai', '1', '1 years 10 months', ' ', 1, '2026-04-18 04:14:43', 0, NULL, 0, NULL, 1),
(11913, 29594, 'sainani innovations private limited', 'uiux designer', '2025-11-01', 15000.00, '2026-03-31', 15000.00, 'chengalpet', '1', '0 years 4 months', 'no development and no real experience', 154, '2026-04-18 10:12:50', 0, NULL, 0, NULL, 1),
(11914, 29595, 'Anur Cloud Technologies ', 'Junior Software Engineer ', '2023-08-02', 2023.00, '2026-06-19', 300000.00, 'Chennai ', '1', '2 years 10 months', 'Career growth, Project and Technology change, skill improvement ', 1, '2026-04-18 04:54:33', 0, NULL, 0, NULL, 1),
(11915, 29601, 'Cubematch technologies ', 'Software engineer ', '2026-01-01', 8.50, '1970-01-01', 8.50, 'Perungudi ', '2', '0 years 3 months', ' Due to personal reasons ', 1, '2026-04-18 06:30:23', 0, NULL, 0, NULL, 1),
(11916, 29601, 'Anur cloud technology ', 'Junior software engineer ', '2023-09-01', 3.60, '2025-12-31', 5.40, 'Chennai ', '1', '2 years 3 months', 'To upgrade my skills and show my experienced skill in new place ', 1, '2026-04-18 06:32:53', 0, NULL, 0, NULL, 1),
(11917, 29601, 'Gowebez ', 'Full stack developer ', '2021-08-06', 4000.00, '2023-07-01', 300000.00, 'Chennai ', '1', '1 years 10 months', 'As its wfh i want to experience an wfo work culture and to upgrade my skills ', 1, '2026-04-18 06:35:24', 0, NULL, 0, NULL, 1),
(11918, 29603, 'Money Square', 'Tele caller', '2024-06-05', 21000.00, '2026-02-21', 21000.00, 'Wilson Garden', '1', '1 years 8 months', 'Better oppourtunities', 172, '2026-04-18 12:07:08', 0, NULL, 0, NULL, 1),
(11919, 29604, 'Teamlease India pvt ltd ', 'Sales executive ', '2026-02-11', 21500.00, '2026-04-10', 21500.00, 'Velachery ', '1', '0 years 1 months', ' Work pressure ', 1, '2026-04-18 06:49:00', 0, NULL, 0, NULL, 1),
(11920, 29607, 'aditya birla', 'sales manager', '2023-10-02', 350000.00, '2026-04-04', 430000.00, 'porur', '1', '2 years 6 months', 'distance', 154, '2026-04-18 12:24:10', 0, NULL, 0, NULL, 1),
(11921, 29607, 'icici ', 'sales executive', '2021-07-01', 22000.00, '2023-07-30', 22000.00, 'thousand lights', '1', '2 years 0 months', 'no promotion', 154, '2026-04-18 12:26:27', 0, NULL, 0, NULL, 1),
(11922, 29607, 'altruist', 'business associate ', '2019-06-03', 18000.00, '2021-07-31', 18000.00, 'mount road', '1', '2 years 1 months', 'no promotion and hikes', 154, '2026-04-18 12:28:00', 0, NULL, 0, NULL, 1),
(11923, 29605, 'alorica', 'customer experience agent', '2025-05-25', 24000.00, '2026-01-29', 26000.00, 'belanduru', '1', '0 years 8 months', ' Due to medical emergency', 1, '2026-04-18 07:03:53', 0, NULL, 0, NULL, 1),
(11924, 29611, 'mastermind', 'front end developer', '2024-10-01', 12000.00, '2025-10-31', 15000.00, 'krishnagiri', '1', '1 years 1 months', 'project over', 154, '2026-04-18 12:54:59', 0, NULL, 0, NULL, 1),
(11925, 29611, 'tech tulasi', 'front end developer', '2023-05-01', 5000.00, '2024-03-31', 12000.00, 'nanganallur', '1', '0 years 11 months', 'project over', 154, '2026-04-18 12:56:18', 0, NULL, 0, NULL, 1),
(11926, 29612, 'Hdfc ergo', 'Team leader', '2023-01-10', 32000.00, '2024-12-26', 29000.00, 'Chennai', '1', '1 years 11 months', ' Process close', 1, '2026-04-18 10:07:16', 0, NULL, 0, NULL, 1),
(11927, 29622, 'Infinix 360', 'Seo analyst ', '2024-11-04', 18000.00, '2026-01-31', 18000.00, 'Velachery ', '1', '1 years 2 months', 'Project issues', 1, '2026-04-20 04:58:34', 0, NULL, 0, NULL, 1),
(11928, 29517, 'team lease', 'telecaller', '2023-05-08', 20000.00, '2025-05-07', 20000.00, 'chennai', '1', '1 years 11 months', ' ', 1, '2026-04-20 05:37:49', 0, NULL, 0, NULL, 1),
(11929, 29621, 'Equitas Small Finance Bank ', 'Associate ', '2025-06-18', 18000.00, '2026-01-17', 18000.00, 'Teynampet ', '1', '0 years 6 months', ' House shifted', 1, '2026-04-20 05:47:09', 0, NULL, 0, NULL, 1),
(11930, 29621, 'Technibit Solutions ', 'International Non Voice Process ', '2023-01-18', 16000.00, '2024-01-18', 16000.00, 'Teynampet ', '1', '1 years 0 months', 'Not specific', 1, '2026-04-20 05:48:40', 0, NULL, 0, NULL, 1),
(11931, 29623, 'Fourv Technologies pvt ltd ', 'Team leader', '2023-01-10', 20000.00, '2026-04-10', 25000.00, 'Bangalore ', '1', '3 years 3 months', ' The process is ramp down ', 1, '2026-04-20 05:58:45', 0, NULL, 0, NULL, 1),
(11932, 29620, 'HDB financial services ', 'Telecalling ', '2023-11-10', 15000.00, '2026-04-07', 20000.00, 'Thousand lights ', '1', '2 years 4 months', 'Family Problems ', 1, '2026-04-20 06:32:21', 0, NULL, 0, NULL, 1),
(11933, 29632, 'thillai textiles', 'sales manager and production controller', '2024-03-01', 15000.00, '2026-02-16', 18000.00, 'elambillai', '1', '1 years 11 months', 'want to relocate in chennai', 154, '2026-04-20 12:46:46', 0, NULL, 0, NULL, 1),
(11934, 29643, 'Hynudai Glovis', 'Operator ', '2024-07-02', 17000.00, '2026-02-15', 17000.00, 'Penukonda', '1', '1 years 7 months', ' For the better opportunity ', 1, '2026-04-21 04:51:02', 0, NULL, 0, NULL, 1),
(11935, 29645, 'Blue stock finetech ', 'It support and monitoring ', '2025-01-01', 330000.00, '2025-12-31', 330000.00, 'Remote ', '1', '0 years 11 months', 'It\'s an internship ', 1, '2026-04-21 04:53:19', 0, NULL, 0, NULL, 1),
(11936, 29648, 'Justdial ', 'Telemarketing ', '2025-05-28', 20000.00, '1970-01-01', 20000.00, 'Bengaluru ', '2', '0 years 10 months', ' During Office  timing ', 1, '2026-04-21 05:14:00', 0, NULL, 0, NULL, 1),
(11937, 29652, 'Infinix 360', 'Seo analyst ', '2024-11-04', 18000.00, '2026-01-31', 18000.00, 'Chennai', '1', '1 years 2 months', ' Project issues', 1, '2026-04-21 05:40:52', 0, NULL, 0, NULL, 1),
(11938, 29655, 'Nuke Technologies Pvt Ltd ', 'Technical Sales Representative ', '2024-07-01', 15000.00, '2025-12-31', 20000.00, 'Chennai ', '1', '1 years 5 months', ' Personal Reasons', 1, '2026-04-21 06:02:48', 0, NULL, 0, NULL, 1),
(11939, 29660, 'Shadow fax', 'Customer support  executive', '2025-09-01', 22000.00, '2026-03-28', 22000.00, 'Koramangala', '1', '0 years 6 months', ' Travelling issues due to office shifted', 1, '2026-04-21 07:11:34', 0, NULL, 0, NULL, 1),
(11940, 29661, 'hdb financial sevice', 'april', '2024-11-25', 15.00, '2026-04-03', 15.00, 'chennai', '1', '1 years 4 months', 'To update my skills and built my career', 1, '2026-04-21 08:05:26', 0, NULL, 0, NULL, 1),
(11941, 29664, 'asp rcm', 'ar caller', '2021-05-13', 40000.00, '2025-11-15', 40000.00, 'chennai', '1', '4 years 6 months', ' Project was down', 1, '2026-04-21 09:44:42', 0, NULL, 0, NULL, 1),
(11942, 29665, 'Microbotwave Technology ', 'Front end developer ', '2025-08-01', 12000.00, '2026-02-01', 15000.00, 'Villupuram ', '1', '0 years 6 months', ' ', 1, '2026-04-21 09:50:54', 0, NULL, 0, NULL, 1),
(11943, 29677, 'vizza insurance broking services pvt ltd', 'dme', '2025-01-27', 17000.00, '2026-01-15', 17000.00, 'koyambedu', '1', '0 years 11 months', ' Salary issue, incentives not credited Properly, leads not given , ', 1, '2026-04-22 06:44:06', 0, NULL, 0, NULL, 1),
(11944, 29680, 'vizza broking', 'telecaller', '2025-02-13', 13000.00, '2025-10-10', 13000.00, 'koambedu', '1', '0 years 7 months', 'chicken pox', 154, '2026-04-22 12:14:42', 0, NULL, 0, NULL, 1),
(11945, 29678, 'Integrated enterprises india pvt ltd ', 'Relationship Manager ', '2024-11-19', 112024.00, '2025-11-20', 17500.00, ' T Nagar,chennai', '1', '1 years 0 months', ' Switching domain', 1, '2026-04-22 06:52:29', 0, NULL, 0, NULL, 1),
(11946, 29687, 'Riemen Solution ', 'Customer support executive ', '2025-10-04', 8500.00, '1970-01-01', 9500.00, 'Tholkappiyar sathukkam, Thanjavur ', '2', '0 years 6 months', ' Only certain process are available in that previous conpany I can\'t able to upgrade my knowledge and career ', 1, '2026-04-24 04:25:45', 0, NULL, 0, NULL, 1),
(11947, 29697, 'Ts mahalimgam finance and services pvt ltd ', 'Tele caller ', '2023-12-26', 15000.00, '2025-04-01', 15000.00, 'Chennai Thousand light ', '1', '1 years 3 months', ' Salary hike issue ', 1, '2026-04-24 07:08:41', 0, NULL, 0, NULL, 1),
(11948, 29698, 'Altruist technology private limited ', 'Business process senior associate ', '2022-12-27', 16500.00, '2026-04-13', 16500.00, 'Tecci park , karapakkam', '1', '3 years 3 months', ' No more salary hikes and i need to be growth my self ', 1, '2026-04-24 07:28:29', 0, NULL, 0, NULL, 1),
(11949, 29702, 'Reimen solutions private Ltd', 'Customer support executive ', '2025-11-17', 8500.00, '2026-05-15', 9500.00, 'Thanjavur', '1', '0 years 5 months', ' ', 1, '2026-04-25 04:38:01', 0, NULL, 0, NULL, 1),
(11950, 29715, 'Seyalon Business Solutions ', 'Customer service representative ', '2022-07-07', 10500.00, '2025-09-10', 20000.00, 'Guindy ', '1', '3 years 2 months', 'For carrer growth and to explore new opportunities. ', 1, '2026-04-25 06:25:58', 0, NULL, 0, NULL, 1),
(11951, 29715, 'Sutherland global services ', 'Associate ', '2025-10-13', 16000.00, '2026-01-21', 20700.00, 'Perungalathur ', '1', '0 years 3 months', 'Due to health issues, I have resigned from the last company. ', 1, '2026-04-25 06:28:22', 0, NULL, 0, NULL, 1),
(11952, 29720, 'jena small finance bank', 'relationship officer', '2026-01-19', 21000.00, '2026-04-22', 21000.00, 'pallawaram', '1', '0 years 3 months', 'field work', 154, '2026-04-25 01:30:44', 0, NULL, 0, NULL, 1),
(11953, 29720, 'surya uday small finance bank', 'relationship officer', '2024-05-14', 15000.00, '2025-10-06', 15000.00, 'tambaram', '1', '1 years 4 months', 'career growth', 154, '2026-04-25 01:32:20', 0, NULL, 0, NULL, 1),
(11954, 29726, 'kavi india software technologies ', 'claims processing executive ', '2023-11-20', 24500.00, '2025-09-30', 26000.00, 'chennai ', '1', '1 years 10 months', ' Process Ramp down from client ', 1, '2026-04-27 03:43:27', 0, NULL, 0, NULL, 1),
(11955, 29727, 'FS Insurance and Broking services ', 'Financial services executive ', '2025-10-05', 20000.00, '1970-01-01', 20000.00, 'Nandanam', '2', '0 years 6 months', ' I am looking for better career growth and a sales-focused role.', 1, '2026-04-27 04:47:06', 0, NULL, 0, NULL, 1),
(11956, 29598, 'Sutherland ', 'Customer support associate ', '2024-06-12', 18000.00, '2025-08-12', 23000.00, 'Perungalathur ', '1', '1 years 2 months', ' Health issues ', 1, '2026-04-27 06:26:17', 0, NULL, 0, NULL, 1),
(11957, 29598, 'Sitel india', 'Customer support professional ', '2021-10-05', 16000.00, '2022-03-31', 21000.00, 'Ramanujan it park ', '1', '0 years 5 months', 'Personal issues ', 1, '2026-04-27 06:31:30', 0, NULL, 0, NULL, 1),
(11958, 29731, 'Teleperformance ', 'Customer Support Executive ', '2022-02-28', 10000.00, '2023-06-01', 10000.00, 'Chennai ', '1', '1 years 3 months', ' Salary issues ', 1, '2026-04-27 06:45:19', 0, NULL, 0, NULL, 1),
(11959, 29731, 'Smyle Wurk LLP ', 'Complaince Auditor ', '2023-09-04', 15000.00, '2024-06-11', 15000.00, 'Chennai ', '1', '0 years 9 months', 'Process layoff ', 1, '2026-04-27 06:47:03', 0, NULL, 0, NULL, 1),
(11960, 29731, 'Imarque Solutions ', 'Customer Care Executive ', '2024-08-14', 15000.00, '2025-02-07', 15000.00, 'Chennai ', '1', '0 years 5 months', 'Salary Issues ', 1, '2026-04-27 06:49:18', 0, NULL, 0, NULL, 1),
(11961, 29731, 'Matrimony. Com ', 'Customer Service Executive ', '2025-02-27', 14500.00, '2025-11-17', 14500.00, 'Chennai ', '1', '0 years 8 months', 'Facilities services are not available ', 1, '2026-04-27 06:51:10', 0, NULL, 0, NULL, 1),
(11962, 29732, 'muthoot finance', 'customer care executive', '2025-07-20', 20000.00, '2026-03-20', 25000.00, 'old washermenpet', '1', '0 years 8 months', 'had plans to settle in native', 154, '2026-04-27 12:26:46', 154, '2026-04-27 12:33:38', 0, NULL, 0),
(11963, 29732, 'hdb financial service', 'non voice', '2019-07-01', 12000.00, '2020-01-30', 12000.00, 'thousand lights', '1', '0 years 6 months', 'salary low', 154, '2026-04-27 12:28:21', 0, NULL, 0, NULL, 1),
(11964, 29732, 'Muthoot finance ', 'Sales officer ', '2023-07-20', 20000.00, '2026-03-20', 25000.00, 'Washermenpet ', '1', '2 years 9 months', ' For better package ', 1, '2026-04-27 07:00:45', 0, NULL, 0, NULL, 1),
(11965, 29733, 'SA communication', 'sales associate', '2024-10-02', 20000.00, '2025-12-19', 20000.00, 'thirupattur', '1', '1 years 2 months', 'planned for higher education', 154, '2026-04-27 12:46:31', 0, NULL, 0, NULL, 1),
(11966, 29734, 'HDB finance ', 'Thousand light ', '2024-01-27', 18000.00, '2024-05-07', 18000.00, 'Chennai ', '1', '0 years 3 months', ' ', 1, '2026-04-27 07:29:47', 0, NULL, 0, NULL, 1),
(11967, 27319, 'Equitas bank LMT', 'Customer support ', '2025-05-26', 30.00, '2026-01-15', 25000.00, 'Teynampet', '1', '0 years 7 months', ' Salary hold for no reason ', 1, '2026-04-27 08:23:30', 0, NULL, 0, NULL, 1),
(11968, 29737, 'Infotroz solutions ', 'UI UX designer ', '2025-12-08', 36000.00, '2026-02-28', 36000.00, 'Chennai ', '1', '0 years 2 months', ' For my mother health issues ', 1, '2026-04-27 09:02:31', 0, NULL, 0, NULL, 1),
(11969, 29724, 'cma cgm gbs', 'graduate trainee - accounts payable', '2024-05-10', 18000.00, '2025-05-21', 180000.00, 'chennai', '1', '1 years 0 months', ' ', 1, '2026-04-28 02:03:58', 0, NULL, 0, NULL, 1),
(11970, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:14', 1, '2026-04-28 05:21:09', 0, NULL, 0),
(11971, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:15', 1, '2026-04-28 05:21:12', 0, NULL, 0),
(11972, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:15', 1, '2026-04-28 05:20:41', 0, NULL, 0),
(11973, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:17', 1, '2026-04-28 05:20:41', 0, NULL, 0),
(11974, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:20', 1, '2026-04-28 05:20:41', 0, NULL, 0),
(11975, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:36', 1, '2026-04-28 05:21:16', 0, NULL, 0),
(11976, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:36', 1, '2026-04-28 05:21:20', 0, NULL, 0),
(11977, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:36', 1, '2026-04-28 05:21:23', 0, NULL, 0),
(11978, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:36', 1, '2026-04-28 05:21:26', 0, NULL, 0),
(11979, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:36', 1, '2026-04-28 05:21:29', 0, NULL, 0),
(11980, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:37', 1, '2026-04-28 05:21:41', 0, NULL, 0),
(11981, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:37', 1, '2026-04-28 05:21:45', 0, NULL, 0),
(11982, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:37', 1, '2026-04-28 05:21:49', 0, NULL, 0),
(11983, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:37', 1, '2026-04-28 05:21:53', 0, NULL, 0),
(11984, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:37', 1, '2026-04-28 05:21:59', 0, NULL, 0),
(11985, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:37', 1, '2026-04-28 05:22:09', 0, NULL, 0),
(11986, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:37', 1, '2026-04-28 05:22:12', 0, NULL, 0),
(11987, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:37', 1, '2026-04-28 05:22:17', 0, NULL, 0),
(11988, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:38', 1, '2026-04-28 05:22:20', 0, NULL, 0),
(11989, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:38', 1, '2026-04-28 05:23:04', 0, NULL, 0),
(11990, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:38', 1, '2026-04-28 05:22:53', 0, NULL, 0),
(11991, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:38', 1, '2026-04-28 05:22:54', 0, NULL, 0),
(11992, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:38', 1, '2026-04-28 05:22:54', 0, NULL, 0),
(11993, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:38', 1, '2026-04-28 05:23:17', 0, NULL, 0),
(11994, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:38', 1, '2026-04-28 05:22:55', 0, NULL, 0),
(11995, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:38', 1, '2026-04-28 05:23:18', 0, NULL, 0),
(11996, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:38', 1, '2026-04-28 05:23:18', 0, NULL, 0),
(11997, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:38', 1, '2026-04-28 05:23:18', 0, NULL, 0),
(11998, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:38', 1, '2026-04-28 05:23:49', 0, NULL, 0),
(11999, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:39', 1, '2026-04-28 05:23:25', 0, NULL, 0),
(12000, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:39', 1, '2026-04-28 05:23:52', 0, NULL, 0),
(12001, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:39', 1, '2026-04-28 05:23:25', 0, NULL, 0),
(12002, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:39', 1, '2026-04-28 05:24:19', 0, NULL, 0),
(12003, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:39', 1, '2026-04-28 05:23:28', 0, NULL, 0),
(12004, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:39', 1, '2026-04-28 05:23:30', 0, NULL, 0),
(12005, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:40', 1, '2026-04-28 05:24:20', 0, NULL, 0),
(12006, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:40', 1, '2026-04-28 05:23:42', 0, NULL, 0),
(12007, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:40', 1, '2026-04-28 05:23:33', 0, NULL, 0),
(12008, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:40', 1, '2026-04-28 05:23:41', 0, NULL, 0),
(12009, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:40', 1, '2026-04-28 05:24:35', 0, NULL, 0),
(12010, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:40', 1, '2026-04-28 05:24:40', 0, NULL, 0),
(12011, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:40', 1, '2026-04-28 05:24:40', 0, NULL, 0),
(12012, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:40', 0, NULL, 0, NULL, 1),
(12013, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:40', 1, '2026-04-28 05:23:46', 0, NULL, 0),
(12014, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:40', 1, '2026-04-28 05:21:06', 0, NULL, 0),
(12015, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:40', 1, '2026-04-28 05:21:00', 0, NULL, 0),
(12016, 29745, 'i marque solutions', 'talicaller', '2025-01-17', 13000.00, '1970-01-01', 14500.00, 'T. Nagar', '2', '1 years 3 months', ' ', 1, '2026-04-28 05:20:41', 1, '2026-04-28 05:20:48', 0, NULL, 0),
(12017, 29749, 'lead pro', 'telesales executive', '2021-04-18', 22000.00, '2023-05-05', 22000.00, 'thiruvanmiur', '1', '2 years 0 months', 'long leave due to fathers death', 154, '2026-04-28 10:55:59', 154, '2026-04-28 11:10:14', 0, NULL, 1),
(12018, 29718, 'Yella insurance ', 'Customer support executive ', '2025-07-21', 13000.00, '2026-02-18', 13000.00, 'Anna nagar chennai ', '1', '0 years 6 months', ' Shifting another city', 1, '2026-04-28 06:45:05', 0, NULL, 0, NULL, 1),
(12019, 29740, 'customer support executive ', 'customer support executive ', '2026-01-17', 18000.00, '2026-04-24', 18000.00, 'nungambakkam ', '1', '0 years 3 months', 'Since the process will be completed by the end of this month,', 1, '2026-04-28 07:07:24', 0, NULL, 0, NULL, 1),
(12020, 29740, 'sarva robotics', 'project associate', '2024-08-16', 16500.00, '2025-06-10', 16500.00, 'Anakaputhur, Chennai, Tamil Nadu 600074', '1', '0 years 9 months', 'I have some health issues', 1, '2026-04-28 07:12:05', 0, NULL, 0, NULL, 1),
(12021, 29758, 'Maruthi suzuki showroom ', 'Customer care executive ', '2025-04-02', 18000.00, '2025-09-09', 20000.00, 'Vellore', '1', '0 years 5 months', ' Some personal health issues ', 1, '2026-04-29 04:46:30', 0, NULL, 0, NULL, 1),
(12022, 29762, 'Manappuram finance limited and KG hospital Recepi', 'Junior officer . Front office associate ', '2024-09-13', 1.00, '2026-05-31', 24.00, 'Bangalore. Banashankari ', '1', '1 years 8 months', ' Looking for carrier and financial. And improve my skills ', 1, '2026-04-29 06:41:44', 0, NULL, 0, NULL, 1),
(12023, 29762, 'Kg hospital ', 'Front office associate ', '2024-09-13', 13.00, '2026-05-31', 24000.00, 'Banashankari ', '1', '1 years 8 months', 'Looking for carrier and financial growth this organisation suitable for my skills and knowledge. And improve my communication skills also', 1, '2026-04-29 06:44:00', 0, NULL, 0, NULL, 1),
(12024, 29768, 'Crystal Homes ', 'Sales executive ', '2025-06-02', 30000.00, '2026-02-02', 30000.00, 'T.nagar', '1', '0 years 8 months', ' Unfortunately I am affected by typhoid so , I take long leave for I\'m recovery.', 1, '2026-04-29 09:19:17', 0, NULL, 0, NULL, 1),
(12025, 29769, 'Shriram life insurance ', 'Wealth Manager ', '2024-12-20', 51000.00, '2026-04-25', 51000.00, 'Bangalore ', '1', '1 years 4 months', ' Career growth ', 1, '2026-04-29 09:26:41', 0, NULL, 0, NULL, 1),
(12026, 29771, 'India mart intermesh Limited', 'Sales executive', '2024-08-05', 30000.00, '2025-04-30', 30000.00, 'Madurai', '1', '0 years 8 months', ' Due to some personal issue ', 1, '2026-04-30 06:05:04', 0, NULL, 0, NULL, 1),
(12027, 29790, 'Bankbazaar ', 'Senior customer relationship officer ', '2023-04-17', 22000.00, '2026-03-31', 22000.00, 'Ambattur estate ', '1', '2 years 11 months', ' ', 1, '2026-05-02 06:05:30', 0, NULL, 0, NULL, 1),
(12028, 29791, ' Cupent  OPC Private Ltd', 'software developer', '2024-05-02', 20000.00, '1970-01-01', 22000.00, 'chennai', '2', '2 years 0 months', 'yet to relieve', 154, '2026-05-02 11:41:21', 154, '2026-05-02 11:42:52', 0, NULL, 1),
(12029, 29803, 'Fowmi invention pvt ltd ', 'Sales executive ', '2024-03-10', 16000.00, '2025-04-20', 18000.00, 'T nager', '1', '1 years 1 months', 'Distance \nWorking time', 1, '2026-05-04 05:12:01', 0, NULL, 0, NULL, 1),
(12030, 29814, 'Medall Diagnostics', 'Front office', '2021-01-02', 12000.00, '2025-08-03', 19850.00, 'adaar', '1', '4 years 7 months', 'Marriage', 154, '2026-05-04 12:20:24', 0, NULL, 0, NULL, 1),
(12031, 29816, 'Policy bazaar.com', 'Sales executive ', '2026-05-04', 30000.00, '2026-06-01', 30000.00, 'Chennai', '1', '0 years 0 months', 'I strongly believe this organization provides excellent growth opportunities, which is the reason I chose it.', 1, '2026-05-04 07:05:39', 0, NULL, 0, NULL, 1),
(12032, 29816, 'Policy bazaar ', 'Sales executive ', '2025-07-04', 30000.00, '2026-07-01', 30000.00, 'Chennai ', '1', '0 years 11 months', 'I strongly believe this organization provides excellent growth opportunities, which is the reason I chose it.', 1, '2026-05-04 07:06:45', 0, NULL, 0, NULL, 1),
(12033, 29818, 'star health insurances', 'telesales', '2025-01-03', 17000.00, '2026-02-06', 17000.00, 'chennai', '1', '1 years 1 months', ' ', 1, '2026-05-04 07:34:19', 0, NULL, 0, NULL, 1),
(12034, 29824, 'Altruist Technologies Limited', 'BAO', '2020-12-27', 16000.00, '2022-03-18', 26000.00, 'Bommanahalli ', '1', '1 years 2 months', 'Personal Reasons ', 172, '2026-05-04 02:13:36', 0, NULL, 0, NULL, 1),
(12035, 29826, 'Tetrosoft', 'Full stack developer ', '2025-08-14', 1.20, '1970-01-01', 1.56, 'Gobi', '2', '0 years 8 months', ' ', 1, '2026-05-04 09:27:44', 0, NULL, 0, NULL, 1),
(12036, 29835, 'Alf electro motors ', 'Sales executive manager ', '2025-03-10', 20000.00, '2026-04-07', 25000.00, 'Chennai', '1', '1 years 0 months', ' More deduction ', 1, '2026-05-05 05:43:21', 0, NULL, 0, NULL, 1),
(12037, 29836, 'urbanrise construction', 'senior associate', '2025-09-08', 33000.00, '2026-02-07', 33000.00, 'koturpuram', '1', '0 years 4 months', 'Vacation and week off not comfortable', 154, '2026-05-05 11:33:17', 0, NULL, 0, NULL, 1),
(12038, 29837, 'Ampheonl PVT LTD', 'Entr and Exit Association', '2024-05-10', 18000.00, '2024-07-13', 18000.00, 'Wipro Gate', '1', '0 years 2 months', '3 months Controct', 172, '2026-05-05 11:58:16', 0, NULL, 0, NULL, 1),
(12039, 29838, 'Bajaj Finserv limited ', 'Sales ', '2025-12-18', 20000.00, '2026-04-30', 20000.00, 'Chetpet ', '1', '0 years 4 months', '..', 1, '2026-05-05 06:35:16', 0, NULL, 0, NULL, 1),
(12040, 29839, 'Fs broking insurance ', 'Co-ordinator ', '2023-04-17', 14.00, '2025-10-07', 20.00, 'Nandanam ', '1', '2 years 5 months', ' Timing issue ', 1, '2026-05-05 06:44:59', 0, NULL, 0, NULL, 1),
(12041, 29846, 'Joy Tapp Technology ', 'Software Developer ', '2025-08-21', 20000.00, '2026-02-10', 20000.00, 'T Nagar ', '1', '0 years 5 months', ' There is no more projects', 1, '2026-05-05 07:35:38', 0, NULL, 0, NULL, 1),
(12042, 29857, 'I marque', 'telesales executive', '2025-06-23', 12000.00, '2026-03-03', 12000.00, 'tenampet', '1', '0 years 8 months', 'No proper logout and week off', 154, '2026-05-05 01:26:36', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker_working_experience` (`prime_candidate_tracker_working_experience_id`, `prime_candidate_tracker_id`, `organization_name`, `current_designation`, `joined_date`, `salary_start`, `relived_date`, `salary_left`, `work_location`, `resigned`, `duration`, `reasone_for_relieving`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12043, 29859, 'Parag jewellers Pvt Ltd ', 'Sales executive ', '2020-06-01', 8000.00, '2023-10-06', 13500.00, 'Chennai ', '1', '3 years 4 months', ' Career growth ', 1, '2026-05-05 09:27:32', 0, NULL, 0, NULL, 1),
(12044, 29859, 'Tech Mahindra Indian Bank ', 'Customer support telle caller', '2023-11-06', 18000.00, '2025-05-10', 18000.00, 'Egmore Chennai ', '1', '1 years 6 months', 'Salary growth ', 1, '2026-05-05 09:28:44', 0, NULL, 0, NULL, 1),
(12045, 29859, 'Gro digital ', 'Telle sales', '2024-06-02', 23000.00, '2025-12-31', 23000.00, 'Nandanam ', '1', '1 years 6 months', 'Career growth ', 1, '2026-05-05 09:30:23', 0, NULL, 0, NULL, 1),
(12046, 29871, 'Altruist Technologies Pvt Ltd ', 'Business Associate ', '2022-01-04', 20000.00, '2024-01-13', 20000.00, 'Bangalore ', '1', '2 years 0 months', ' I want to move next step in my career and I want groom myself more and more ', 1, '2026-05-06 05:06:37', 1, '2026-05-06 05:20:09', 0, NULL, 0),
(12047, 29870, 'Amazon.uk', 'Warehouse Operative ', '2023-01-02', 2023.00, '2025-10-29', 40000.00, 'Manchester, United kingdom ', '1', '2 years 9 months', ' Moved to India', 1, '2026-05-06 05:24:44', 0, NULL, 0, NULL, 1),
(12048, 29871, 'Khannba Enterprises pvt Ltd ', 'Business Associate ', '2024-01-18', 25000.00, '2026-04-30', 25000.00, 'Bangalore ', '1', '2 years 3 months', 'Due to Process Ramp-off ', 1, '2026-05-06 05:29:49', 0, NULL, 0, NULL, 1),
(12049, 29870, 'Hdfc bank ', 'Business development executive ', '2017-11-01', 2017.00, '2019-11-01', 18000.00, 'Nelson Manickam road ', '1', '2 years 0 months', 'Got a better offer as a procurement coordinator.', 1, '2026-05-06 05:30:33', 0, NULL, 0, NULL, 1),
(12050, 29871, 'Altruist Technologies Pvt Ltd ', 'Business Associate ', '2022-01-04', 20000.00, '2024-01-13', 20000.00, 'Bangalore ', '1', '2 years 0 months', 'I want to groom myself in my career so i decided to move on next step in my Career ', 1, '2026-05-06 05:33:23', 0, NULL, 0, NULL, 1),
(12051, 29820, 'Pace setter solutions', 'Collection agent', '2025-03-12', 16000.00, '2026-02-07', 17000.00, 'Nugambakkam', '1', '0 years 10 months', 'No Increase in salary', 154, '2026-05-06 11:12:22', 0, NULL, 0, NULL, 1),
(12052, 29875, 'Cogent E service limited ', 'Team leader', '2023-06-19', 15000.00, '1970-01-01', 20500.00, 'Mangalore ', '2', '2 years 10 months', 'Company business lose', 1, '2026-05-06 06:43:01', 0, NULL, 0, NULL, 1),
(12053, 29876, 'Manappuram finance Limited ', 'Telecaller, Billing,Gold recover,', '2024-09-25', 12000.00, '2025-09-25', 17000.00, 'Dalmiya ', '1', '1 years 0 months', ' Family Situation and health issues ', 1, '2026-05-06 08:09:51', 1, '2026-05-06 08:14:22', 0, NULL, 1),
(12054, 29865, 'Bankbazzar ', 'Senior Technical support executive ', '2025-04-28', 21500.00, '2026-04-21', 25500.00, 'Ambattur ', '1', '0 years 11 months', ' Move on career Growth ', 1, '2026-05-07 03:58:24', 0, NULL, 0, NULL, 1),
(12055, 29888, 'Forte Management Services ', 'Tele calling ', '2023-06-04', 13000.00, '2023-12-30', 16000.00, 'Saidapet ', '1', '0 years 6 months', ' I Am Studying In MCOM ', 1, '2026-05-07 05:13:47', 0, NULL, 0, NULL, 1),
(12056, 29884, 'Bharti Airtel DTH ', 'Senior Marketing Staff ', '2020-09-14', 16500.00, '2025-05-05', 24000.00, 'Virudhunagar', '1', '4 years 7 months', 'We shifted to Chennai as a family for my mother’s treatment, so I relieving from Airtel DTH.', 1, '2026-05-07 05:24:18', 0, NULL, 0, NULL, 1),
(12057, 29891, 'Sai infotech', 'Data entry operator', '2025-02-02', 19500.00, '2026-03-31', 19500.00, 'Ranipet', '1', '1 years 1 months', ' Contract ended', 1, '2026-05-07 05:27:51', 0, NULL, 0, NULL, 1),
(12058, 29892, 'Dsquare multitech private limited ', 'Ui ux designer ', '2025-03-06', 18000.00, '2026-04-30', 18000.00, 'Madipakkam, chennai ', '1', '1 years 1 months', ' ', 1, '2026-05-07 05:44:30', 0, NULL, 0, NULL, 1),
(12059, 29892, 'HL Mando ANAND India Private Limited ', 'Cell cordinater ', '2020-07-24', 15000.00, '2024-07-10', 25000.00, 'Sriperumbudur, chennai ', '1', '3 years 11 months', 'I want to move from manufacturing to UI/UX design because I am more passionate about creativity, design, and user experience. I also have skills in design tools and web technologies, so I want to build my career in this field', 1, '2026-05-07 05:49:18', 0, NULL, 0, NULL, 1),
(12060, 29900, 'My money mantra ', 'Loan sales ', '2022-07-14', 19000.00, '2026-05-15', 25000.00, 'T nagar ', '1', '3 years 10 months', ' Give to transfer long distance show', 1, '2026-05-07 07:05:58', 0, NULL, 0, NULL, 1),
(12061, 29902, 'induja housing finance ', 'sales officer ', '2025-09-12', 18000.00, '2026-02-07', 23000.00, 'ambattur ', '1', '0 years 4 months', 'Change of branch ', 1, '2026-05-07 07:14:00', 0, NULL, 0, NULL, 1),
(12062, 29903, 'Shreya impacts', 'sales', '2025-06-01', 18000.00, '2026-04-06', 18000.00, 'moolakadai', '1', '0 years 10 months', 'to gain new experience\n', 154, '2026-05-07 01:04:03', 0, NULL, 0, NULL, 1),
(12063, 29890, 'R.balaji', 'Poonamalle ', '2026-05-07', 30000.00, '1970-01-01', 300000.00, 'Arumbakkam', '2', '0 years 0 months', ' ', 1, '2026-05-07 08:14:35', 0, NULL, 0, NULL, 1),
(12064, 29912, 'FORTE MANAGMENT', 'COLLECTION', '2025-08-18', 15000.00, '2026-03-22', 16000.00, 'SAIDAPET', '1', '0 years 7 months', 'Salary issues', 154, '2026-05-08 10:28:10', 0, NULL, 0, NULL, 1),
(12065, 29918, 'I-5 car jewels ', 'Chennai ', '2024-08-02', 19000.00, '2026-01-31', 21500.00, 'Royapettah', '1', '1 years 9 months', ' Personal Reasons', 1, '2026-05-08 05:42:10', 0, NULL, 0, NULL, 1),
(12066, 7745, 'Matrimony. Com', 'Senior relationship manager ', '2024-04-10', 24500.00, '1970-01-01', 26500.00, 'Adyar ', '2', '2 years 0 months', ' Shift timings ', 1, '2026-05-08 06:13:36', 0, NULL, 0, NULL, 1),
(12067, 29928, 'Axis Bank ', 'Customer support ', '2025-04-07', 12500.00, '1970-01-01', 12500.00, 'Anna nagar ', '2', '1 years 1 months', 'Health issue', 1, '2026-05-08 08:03:54', 0, NULL, 0, NULL, 1),
(12068, 29937, 'Canon company private limited', 'Store executive', '2021-01-01', 11000.00, '1970-01-01', 11000.00, 'Bangalore', '2', '5 years 4 months', ' Low salary And Delay salary Date', 1, '2026-05-09 05:21:23', 0, NULL, 0, NULL, 1),
(12069, 29937, 'Hdfc bank ', 'collection Executive ', '2021-08-01', 10000.00, '2024-04-30', 20000.00, 'Ambur', '1', '4 years 9 months', 'Delay salary and No career growth', 1, '2026-05-09 05:24:54', 0, NULL, 0, NULL, 1),
(12070, 29938, 'Pace settor ', 'Nungambakkam ', '2025-06-20', 16000.00, '2026-04-15', 16000.00, 'Chennai ', '1', '0 years 9 months', 'Salary issue \n', 1, '2026-05-09 06:16:47', 0, NULL, 0, NULL, 1),
(12071, 29947, '4D Global Medical Billing Pvt Ltd ', 'Billing Specialist ', '2024-01-18', 18000.00, '2025-07-25', 20000.00, 'Guindy,Chennai', '1', '1 years 6 months', 'My Father is a Past Away,So I Can\'t Continue This Job, I went to My Native Place And My family Some Personal Issues, again This Time to All Problem is Clear.', 1, '2026-05-09 12:11:01', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_category`
--

CREATE TABLE `cw_category` (
  `prime_category_id` int NOT NULL,
  `category_name` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_category`
--

INSERT INTO `cw_category` (`prime_category_id`, `category_name`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'Super Admin', 1, '2019-03-07 04:10:13', 1, '2020-01-30 05:31:52', 1, '2019-03-10 05:09:56', 1),
(2, 'Admin', 1, '2019-04-29 05:35:49', 1, '2020-08-26 04:17:53', 0, NULL, 1),
(3, 'HR', 1, '2019-08-26 05:23:07', 1, '2020-08-26 04:18:02', 0, NULL, 1),
(4, 'Consultancy', 1, '2020-08-26 04:20:00', 1, '2020-08-26 05:19:58', 0, NULL, 1),
(5, 'Candidate', 1, '2020-08-26 04:20:52', 1, '2020-08-26 04:22:01', 0, NULL, 1),
(6, 'Interviewer', 1, '2020-08-26 05:20:09', 1, '2020-08-26 05:44:11', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_channel`
--

CREATE TABLE `cw_channel` (
  `prime_channel_id` int NOT NULL,
  `channel_name` varchar(50) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_channel`
--

INSERT INTO `cw_channel` (`prime_channel_id`, `channel_name`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'Priority circle', 1, '2020-12-12 11:06:41', 1, '2020-12-28 12:17:34', 0, NULL, 1),
(2, 'IT', 1, '2020-12-12 01:22:27', 0, NULL, 0, NULL, 1),
(3, 'Direct Marketing', 7, '2020-12-17 01:31:17', 0, NULL, 0, NULL, 1),
(4, 'Mutual Fund', 7, '2020-12-22 05:48:28', 0, NULL, 0, NULL, 1),
(5, 'Admin', 7, '2020-12-22 05:48:47', 0, NULL, 0, NULL, 1),
(6, 'E Sale', 7, '2020-12-22 05:50:01', 0, NULL, 0, NULL, 1),
(7, 'Operations', 7, '2020-12-22 05:50:24', 0, NULL, 0, NULL, 1),
(8, 'HR', 7, '2020-12-23 12:07:18', 0, NULL, 0, NULL, 1),
(9, 'Elite', 7, '2021-08-03 06:23:08', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_company`
--

CREATE TABLE `cw_company` (
  `prime_company_id` int NOT NULL,
  `company_name` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_company`
--

INSERT INTO `cw_company` (`prime_company_id`, `company_name`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'Patroniss', 1, '2020-09-12 10:57:59', 0, NULL, 0, NULL, 1),
(2, 'CAFSINFOTECH', 1, '2020-10-07 05:10:16', 0, NULL, 0, NULL, 1),
(3, 'CAFSJOBS', 1, '2020-10-07 05:10:25', 0, NULL, 0, NULL, 1),
(4, 'CAFS', 1, '2020-10-07 05:10:46', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_company_information`
--

CREATE TABLE `cw_company_information` (
  `prime_company_information_id` int NOT NULL,
  `company_name` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '',
  `company_short_name` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '',
  `mobile_number` varchar(10) COLLATE utf8mb4_general_ci DEFAULT '',
  `alt_mobile_number` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '',
  `land_line` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '',
  `email` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '',
  `fax` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '',
  `address` text COLLATE utf8mb4_general_ci,
  `city` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '',
  `country` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '',
  `website` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '',
  `gstin` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '',
  `pan` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '',
  `company_logo` text COLLATE utf8mb4_general_ci,
  `sms_url` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '',
  `sms_sender_id` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '',
  `sms_username` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '',
  `sms_password` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '',
  `primary_color` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '',
  `secondary_color` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `cw_company_information`
--

INSERT INTO `cw_company_information` (`prime_company_information_id`, `company_name`, `company_short_name`, `mobile_number`, `alt_mobile_number`, `land_line`, `email`, `fax`, `address`, `city`, `state`, `country`, `website`, `gstin`, `pan`, `company_logo`, `sms_url`, `sms_sender_id`, `sms_username`, `sms_password`, `primary_color`, `secondary_color`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'RMS', 'RMS', '9876543219', '', '', '', '', 'Chennai,Tamilnadu', 'Chennai', 'Tamil Nadu', 'India', '', '', '', '', '', '', '', '', '#f75940', '#001630', 1, '2019-10-31 03:15:47', 1, '2020-08-31 01:08:38', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_company_information_print_contact_information`
--

CREATE TABLE `cw_company_information_print_contact_information` (
  `prime_company_information_print_contact_information_id` int NOT NULL,
  `prime_company_information_id` int DEFAULT '0',
  `contact_name` varchar(255) DEFAULT '',
  `contact_number` varchar(100) DEFAULT '',
  `contact_for` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `cw_company_information_print_default_notes`
--

CREATE TABLE `cw_company_information_print_default_notes` (
  `prime_company_information_print_default_notes_id` int NOT NULL,
  `prime_company_information_id` int DEFAULT '0',
  `print_note_for` varchar(100) DEFAULT '',
  `print_note` text,
  `print_note_status` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `cw_company_information_registered_office_information`
--

CREATE TABLE `cw_company_information_registered_office_information` (
  `prime_company_information_registered_office_information_id` int NOT NULL,
  `prime_company_information_id` int DEFAULT '0',
  `registered_address` text,
  `registered_city` varchar(255) DEFAULT '',
  `registered_state` varchar(255) DEFAULT '',
  `registered_country` varchar(255) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `cw_consultancy`
--

CREATE TABLE `cw_consultancy` (
  `prime_consultancy_id` int NOT NULL,
  `consultancy_name` varchar(50) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_consultancy`
--

INSERT INTO `cw_consultancy` (`prime_consultancy_id`, `consultancy_name`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'CAFSJOBS', 1, '2020-08-26 04:26:04', 1, '2020-09-02 10:16:28', 0, NULL, 1),
(2, 'Thinkfinity', 1, '2020-09-02 02:51:57', 0, NULL, 0, NULL, 1),
(3, 'Eminence', 1, '2020-09-02 02:52:20', 0, NULL, 0, NULL, 1),
(4, 'Dheepak consultancy', 1, '2020-09-04 10:56:51', 0, NULL, 0, NULL, 1),
(5, 'VITEZ Solutions', 1, '2020-09-04 11:00:23', 0, NULL, 0, NULL, 1),
(6, 'Pravriti', 50, '2020-09-12 07:01:25', 0, NULL, 0, NULL, 1),
(7, 'Chaya', 50, '2020-09-12 07:01:34', 0, NULL, 0, NULL, 1),
(8, 'NAGA', 50, '2020-09-14 11:12:16', 0, NULL, 0, NULL, 1),
(9, 'BEXHIN', 50, '2020-09-14 11:40:14', 0, NULL, 0, NULL, 1),
(10, 'People Place', 50, '2020-09-14 11:59:38', 7, '2020-12-15 04:44:37', 0, NULL, 1),
(11, 'S3Infotech', 50, '2020-09-16 01:32:55', 0, NULL, 0, NULL, 1),
(12, 'NIBS', 7, '2020-10-06 12:06:55', 0, NULL, 0, NULL, 1),
(13, 'Level-Up STC', 1, '2020-11-05 01:31:42', 0, NULL, 0, NULL, 1),
(14, 'HR7M', 7, '2020-11-19 04:13:37', 7, '2020-11-19 04:14:01', 0, NULL, 1),
(15, 'Zenfy', 7, '2020-11-19 06:00:00', 7, '2020-12-15 04:43:49', 0, NULL, 1),
(16, 'MRTS', 7, '2021-03-17 11:28:55', 0, NULL, 0, NULL, 1),
(17, 'Steercorp', 60, '2021-11-03 05:39:47', 0, NULL, 0, NULL, 1),
(18, 'CEO HR', 60, '2021-11-03 05:40:04', 0, NULL, 0, NULL, 1),
(19, 'Jobcento', 60, '2021-11-15 02:30:15', 0, NULL, 0, NULL, 1),
(20, 'Beacon Consulting', 60, '2021-11-15 02:30:28', 0, NULL, 0, NULL, 1),
(21, 'Jobseeks 4U', 60, '2021-11-15 02:31:03', 0, NULL, 0, NULL, 1),
(22, 'Trimastir Solutions', 60, '2021-12-11 05:50:37', 0, NULL, 0, NULL, 1),
(23, 'MS HR', 7, '2022-03-29 11:27:11', 7, '2022-03-30 04:06:33', 0, NULL, 1),
(24, 'All Time Service Vision', 60, '2022-05-19 04:12:11', 0, NULL, 0, NULL, 1),
(25, 'Vinpogo', 60, '2022-06-14 06:05:48', 0, NULL, 0, NULL, 1),
(26, 'Smatronics', 1, '2023-03-22 03:12:42', 0, NULL, 0, NULL, 1),
(27, 'Job Fair Walk In', 60, '2023-06-06 10:04:45', 0, NULL, 0, NULL, 1),
(28, 'DIRAA HR Services', 1, '2023-07-12 11:43:22', 0, NULL, 0, NULL, 1),
(29, 'Skylark HR Solutions', 60, '2024-02-15 03:09:51', 0, NULL, 0, NULL, 1),
(30, 'Harriss Consultancy', 60, '2024-02-15 03:10:07', 0, NULL, 0, NULL, 1),
(31, 'Cloud Matic HR Solutions', 60, '2024-02-15 03:10:17', 0, NULL, 0, NULL, 1),
(32, 'Winture Placements', 60, '2024-02-15 03:11:01', 0, NULL, 0, NULL, 1),
(33, 'Prowin Placement', 60, '2024-02-15 03:11:15', 0, NULL, 0, NULL, 1),
(34, 'TalentPro', 60, '2024-03-06 01:05:47', 0, NULL, 0, NULL, 1),
(35, 'Talent Trends', 60, '2024-03-21 04:10:00', 0, NULL, 0, NULL, 1),
(36, 'Flexo', 60, '2024-03-21 04:10:09', 0, NULL, 0, NULL, 1),
(37, 'Recruitify JM HR', 60, '2024-03-21 04:10:48', 0, NULL, 0, NULL, 1),
(38, 'JobsCruze', 60, '2024-03-26 05:43:45', 0, NULL, 0, NULL, 1),
(39, 'Pro Consultant', 60, '2024-03-26 05:43:55', 0, NULL, 0, NULL, 1),
(40, 'Mercc', 60, '2024-03-26 05:44:02', 0, NULL, 0, NULL, 1),
(41, 'Opsis Consultancy', 60, '2024-03-26 05:44:14', 0, NULL, 0, NULL, 1),
(42, 'Zayin HR Solutions', 60, '2024-04-02 10:31:02', 0, NULL, 0, NULL, 1),
(43, 'Hariss Consultancy', 60, '2024-04-02 10:31:23', 0, NULL, 0, NULL, 1),
(44, 'Business SHR', 60, '2024-04-02 10:31:32', 0, NULL, 0, NULL, 1),
(45, 'Career School', 60, '2024-04-02 10:31:41', 0, NULL, 0, NULL, 1),
(46, 'ESNL', 60, '2024-04-02 10:31:47', 0, NULL, 0, NULL, 1),
(47, 'hi-centrix placements', 104, '2024-04-02 03:57:50', 0, NULL, 0, NULL, 1),
(48, 'Ananta Vyom Consultants', 104, '2024-04-04 04:18:15', 0, NULL, 0, NULL, 1),
(49, 'Wehyre Corporate Consultancy', 104, '2024-04-04 04:24:55', 0, NULL, 0, NULL, 1),
(50, 'creative hands HR solutions.', 104, '2024-04-05 04:37:18', 0, NULL, 0, NULL, 1),
(51, 'HighSource HR Solutions', 104, '2024-04-10 10:50:05', 0, NULL, 0, NULL, 1),
(52, 'Vishakan Consultancy', 104, '2024-04-20 03:13:35', 0, NULL, 0, NULL, 1),
(53, 'SRI HR Integrated services', 104, '2024-05-15 06:10:46', 0, NULL, 0, NULL, 1),
(54, 'SkyNetwork', 104, '2024-06-07 04:01:20', 0, NULL, 0, NULL, 1),
(55, 'Milestone', 104, '2024-06-07 04:01:28', 0, NULL, 0, NULL, 1),
(56, 'Akshaya HR Solutions', 104, '2024-07-12 10:27:00', 0, NULL, 0, NULL, 1),
(57, 'Info HR Solutions', 60, '2024-08-12 04:21:59', 0, NULL, 0, NULL, 1),
(58, 'PrimeThink Biz solutions', 104, '2024-08-19 04:23:57', 0, NULL, 0, NULL, 1),
(59, 'Quantumsparktech', 104, '2025-05-08 03:30:49', 0, NULL, 0, NULL, 1),
(60, 'ITVEDANT', 1, '2025-06-25 10:21:45', 0, NULL, 0, NULL, 1),
(61, 'Thanisha Jobs', 104, '2025-07-11 06:08:52', 0, NULL, 0, NULL, 1),
(62, 'Humanetics HR Tech', 104, '2025-07-14 06:21:09', 60, '2025-07-21 06:34:36', 0, NULL, 1),
(63, 'Whytap', 60, '2025-10-27 11:33:59', 0, NULL, 0, NULL, 1),
(64, 'Sharaa Info Developers', 60, '2025-10-27 02:47:40', 0, NULL, 0, NULL, 1),
(65, 'Talentia', 104, '2025-12-12 09:47:01', 0, NULL, 0, NULL, 1),
(66, 'Work Freaks', 104, '2025-12-12 09:48:25', 0, NULL, 0, NULL, 1),
(67, 'Skill Hunt Solutions', 104, '2025-12-23 04:18:17', 0, NULL, 0, NULL, 1),
(68, 'GRMAC', 104, '2026-01-08 05:01:10', 0, NULL, 0, NULL, 1),
(69, 'Maven Source', 104, '2026-01-27 06:14:08', 0, NULL, 0, NULL, 1),
(70, 'Venpa', 104, '2026-02-18 11:59:43', 0, NULL, 0, NULL, 1),
(71, 'Business Integra', 104, '2026-03-10 03:55:26', 0, NULL, 0, NULL, 1),
(72, 'Pumo Technovation', 60, '2026-03-31 10:16:17', 0, NULL, 0, NULL, 1),
(73, 'Bayleaf', 60, '2026-04-29 12:10:11', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_custom_design`
--

CREATE TABLE `cw_custom_design` (
  `prime_custom_design_id` int NOT NULL,
  `prime_module_id` varchar(100) DEFAULT NULL,
  `input_for` int DEFAULT '0',
  `input_view` int NOT NULL,
  `label_name` text,
  `field_show` int DEFAULT '0',
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_custom_design`
--

INSERT INTO `cw_custom_design` (`prime_custom_design_id`, `prime_module_id`, `input_for`, `input_view`, `label_name`, `field_show`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(163, 'employees', 123, 2, 'friend_name_1', 1, 1, '2020-02-17 16:19:20', NULL, NULL, NULL, NULL, 1),
(164, 'employees', 123, 2, 'friend_name_1_mobile_no', 1, 1, '2020-02-17 16:19:20', NULL, NULL, NULL, NULL, 1),
(165, 'employees', 123, 2, 'friend_name_1_address', 1, 1, '2020-02-17 16:19:20', NULL, NULL, NULL, NULL, 1),
(166, 'employees', 123, 2, 'friend_job_details', 1, 1, '2020-02-17 16:19:20', NULL, NULL, NULL, NULL, 1),
(255, 'employees', 129, 2, 'highest_qualifaction', 1, 1, '2020-02-18 15:00:13', NULL, NULL, NULL, NULL, 1),
(256, 'employees', 129, 2, 'languages_knowns', 1, 1, '2020-02-18 15:00:13', NULL, NULL, NULL, NULL, 1),
(264, 'employees', 128, 2, 'original_submitted', 1, 1, '2020-02-18 15:01:00', NULL, NULL, NULL, NULL, 1),
(265, 'employees', 128, 2, 'original_certificate_details', 1, 1, '2020-02-18 15:01:00', NULL, NULL, NULL, NULL, 1),
(266, 'employees', 128, 2, 'original_certificate_number', 1, 1, '2020-02-18 15:01:00', NULL, NULL, NULL, NULL, 1),
(267, 'employees', 128, 2, 'dra_completion_status', 1, 1, '2020-02-18 15:01:00', NULL, NULL, NULL, NULL, 1),
(268, 'employees', 128, 2, 'dra_completed_date', 1, 1, '2020-02-18 15:01:00', NULL, NULL, NULL, NULL, 1),
(269, 'employees', 128, 2, 'dra_registration_number', 1, 1, '2020-02-18 15:01:00', NULL, NULL, NULL, NULL, 1),
(278, 'employees', 112, 2, 'reference_name_1', 1, 1, '2020-02-18 15:01:12', NULL, NULL, NULL, NULL, 1),
(279, 'employees', 112, 2, 'reference_1_mobile_no', 1, 1, '2020-02-18 15:01:12', NULL, NULL, NULL, NULL, 1),
(280, 'employees', 112, 2, 'reference_1_relationship', 1, 1, '2020-02-18 15:01:12', NULL, NULL, NULL, NULL, 1),
(281, 'employees', 112, 2, 'reference_1_residence_address', 1, 1, '2020-02-18 15:01:12', NULL, NULL, NULL, NULL, 1),
(282, 'employees', 112, 2, 'relative_jobs_details', 1, 1, '2020-02-18 15:01:12', NULL, NULL, NULL, NULL, 1),
(320, 'employees', 130, 2, 'fresher_or_experience', 1, 1, '2020-02-19 18:29:45', NULL, NULL, NULL, NULL, 1),
(321, 'employees', 130, 2, 'total_experience', 1, 1, '2020-02-19 18:29:45', NULL, NULL, NULL, NULL, 1),
(322, 'employees', 130, 2, 'organization_name', 1, 1, '2020-02-19 18:29:45', NULL, NULL, NULL, NULL, 1),
(323, 'employees', 130, 2, 'desigantion', 1, 1, '2020-02-19 18:29:45', NULL, NULL, NULL, NULL, 1),
(324, 'employees', 130, 2, 'manager_name', 1, 1, '2020-02-19 18:29:45', NULL, NULL, NULL, NULL, 1),
(325, 'employees', 130, 2, 'work_exp_start_month', 1, 1, '2020-02-19 18:29:45', NULL, NULL, NULL, NULL, 1),
(326, 'employees', 130, 2, 'work_exp_start_year', 1, 1, '2020-02-19 18:29:45', NULL, NULL, NULL, NULL, 1),
(327, 'employees', 130, 2, 'work_exp_end_month', 1, 1, '2020-02-19 18:29:45', NULL, NULL, NULL, NULL, 1),
(328, 'employees', 130, 2, 'work_exp_end_year', 1, 1, '2020-02-19 18:29:45', NULL, NULL, NULL, NULL, 1),
(396, 'employees', 32, 2, 'mobile_number', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(397, 'employees', 32, 2, 'additional_mobile_number', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(398, 'employees', 32, 2, 'company_email_id', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(399, 'employees', 32, 2, 'personal_email_id', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(400, 'employees', 32, 2, 'blood_group', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(401, 'employees', 32, 2, 'mother_tongue', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(402, 'employees', 32, 2, 'address_proof_list', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(403, 'employees', 32, 2, 'permanent_address_details', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(404, 'employees', 32, 2, 'permanent_address', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(405, 'employees', 32, 2, 'current_address_proof', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(406, 'employees', 32, 2, 'current_address_details', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(407, 'employees', 32, 2, 'current_address', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(408, 'employees', 32, 2, 'id_proof_list', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(409, 'employees', 32, 2, 'id_proof_value', 1, 1, '2020-03-07 17:16:02', NULL, NULL, NULL, NULL, 1),
(418, 'employees', 111, 2, 'fname', 1, 1, '2020-03-07 17:21:21', NULL, NULL, NULL, NULL, 1),
(419, 'employees', 111, 2, 'emp_father_name', 1, 1, '2020-03-07 17:21:21', NULL, NULL, NULL, NULL, 1),
(420, 'employees', 111, 2, 'father_contact', 1, 1, '2020-03-07 17:21:21', NULL, NULL, NULL, NULL, 1),
(421, 'employees', 111, 2, 'mother_name', 1, 1, '2020-03-07 17:21:21', NULL, NULL, NULL, NULL, 1),
(422, 'employees', 111, 2, 'mother_contact', 1, 1, '2020-03-07 17:21:21', NULL, NULL, NULL, NULL, 1),
(423, 'employees', 111, 2, 'marital_status', 1, 1, '2020-03-07 17:21:21', NULL, NULL, NULL, NULL, 1),
(424, 'employees', 111, 2, 'spouse_name', 1, 1, '2020-03-07 17:21:21', NULL, NULL, NULL, NULL, 1),
(425, 'employees', 111, 2, 'spouse_contact_no', 1, 1, '2020-03-07 17:21:21', NULL, NULL, NULL, NULL, 1),
(432, 'employees', 1, 2, 'emp_name', 1, 1, '2020-03-07 18:09:27', NULL, NULL, NULL, NULL, 1),
(433, 'employees', 1, 2, 'branch', 1, 1, '2020-03-07 18:09:27', NULL, NULL, NULL, NULL, 1),
(434, 'employees', 1, 2, 'designation', 1, 1, '2020-03-07 18:09:27', NULL, NULL, NULL, NULL, 1),
(547, 'candidate_tracker', 137, 3, 'standard', 1, 1, '2020-08-28 12:42:36', NULL, NULL, NULL, NULL, 1),
(548, 'candidate_tracker', 137, 3, 'board_university', 1, 1, '2020-08-28 12:42:36', NULL, NULL, NULL, NULL, 1),
(549, 'candidate_tracker', 137, 3, 'degree', 1, 1, '2020-08-28 12:42:36', NULL, NULL, NULL, NULL, 1),
(550, 'candidate_tracker', 137, 3, 'year_of_passing', 1, 1, '2020-08-28 12:42:36', NULL, NULL, NULL, NULL, 1),
(551, 'candidate_tracker', 137, 3, 'percentage', 1, 1, '2020-08-28 12:42:36', NULL, NULL, NULL, NULL, 1),
(686, 'candidate_tracker', 138, 3, 'organization_name', 1, 1, '2020-09-03 11:59:12', NULL, NULL, NULL, NULL, 1),
(687, 'candidate_tracker', 138, 3, 'work_location', 1, 1, '2020-09-03 11:59:12', NULL, NULL, NULL, NULL, 1),
(688, 'candidate_tracker', 138, 3, 'current_designation', 1, 1, '2020-09-03 11:59:12', NULL, NULL, NULL, NULL, 1),
(689, 'candidate_tracker', 138, 3, 'joined_date', 1, 1, '2020-09-03 11:59:12', NULL, NULL, NULL, NULL, 1),
(690, 'candidate_tracker', 138, 3, 'salary_start', 1, 1, '2020-09-03 11:59:12', NULL, NULL, NULL, NULL, 1),
(691, 'candidate_tracker', 138, 3, 'resigned', 1, 1, '2020-09-03 11:59:12', NULL, NULL, NULL, NULL, 1),
(692, 'candidate_tracker', 138, 3, 'relived_date', 1, 1, '2020-09-03 11:59:12', NULL, NULL, NULL, NULL, 1),
(693, 'candidate_tracker', 138, 3, 'salary_left', 1, 1, '2020-09-03 11:59:12', NULL, NULL, NULL, NULL, 1),
(694, 'candidate_tracker', 138, 3, 'duration', 1, 1, '2020-09-03 11:59:12', NULL, NULL, NULL, NULL, 1),
(695, 'candidate_tracker', 138, 3, 'reasone_for_relieving', 1, 1, '2020-09-03 11:59:12', NULL, NULL, NULL, NULL, 1),
(835, 'candidate_tracker', 135, 2, 'candidate_name', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(836, 'candidate_tracker', 135, 2, 'department', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(837, 'candidate_tracker', 135, 2, 'post_applied_for', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(838, 'candidate_tracker', 135, 2, 'mobile_number', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(839, 'candidate_tracker', 135, 2, 'alternate_number', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(840, 'candidate_tracker', 135, 2, 'email_id', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(841, 'candidate_tracker', 135, 2, 'date_of_birth', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(842, 'candidate_tracker', 135, 2, 'age', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(843, 'candidate_tracker', 135, 2, 'applied_by', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(844, 'candidate_tracker', 135, 2, 'consultancy', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(845, 'candidate_tracker', 135, 2, 'recruiter', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(846, 'candidate_tracker', 135, 2, 'employee_code', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(847, 'candidate_tracker', 135, 2, 'marital_status', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(848, 'candidate_tracker', 135, 2, 'father_or_husband_name', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(849, 'candidate_tracker', 135, 2, 'occupation', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(850, 'candidate_tracker', 135, 2, 'income', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(851, 'candidate_tracker', 135, 2, 'no_of_siblings', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(852, 'candidate_tracker', 135, 2, 'employee_type', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(853, 'candidate_tracker', 135, 2, 'current_salary', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(854, 'candidate_tracker', 135, 2, 'expected_salary', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(855, 'candidate_tracker', 135, 2, 'permanent_location', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(856, 'candidate_tracker', 135, 2, 'current_location', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(857, 'candidate_tracker', 135, 2, 'candidate_code', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(858, 'candidate_tracker', 135, 2, 'sts_resume', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(859, 'candidate_tracker', 135, 2, 'date_of_available', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(860, 'candidate_tracker', 135, 2, 'interview_slot', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(861, 'candidate_tracker', 135, 2, 'interview_type', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(862, 'candidate_tracker', 135, 2, 'notice_period', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(863, 'candidate_tracker', 135, 2, 'bike', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(864, 'candidate_tracker', 135, 2, 'company_location', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1),
(865, 'candidate_tracker', 135, 2, 'company_branch', 1, 1, '2021-05-06 13:52:18', NULL, NULL, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_department`
--

CREATE TABLE `cw_department` (
  `prime_department_id` int NOT NULL,
  `department` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_department`
--

INSERT INTO `cw_department` (`prime_department_id`, `department`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'Telecaller', 1, '2020-09-03 06:12:07', 1, '2020-09-04 09:40:47', 0, NULL, 1),
(2, 'Information technology', 1, '2020-09-03 06:12:26', 0, NULL, 0, NULL, 1),
(3, 'admin', 1, '2020-09-03 06:12:38', 0, NULL, 0, NULL, 1),
(4, 'Finance', 1, '2020-09-04 09:41:07', 0, NULL, 0, NULL, 1),
(5, 'Sales', 1, '2020-09-04 09:41:15', 50, '2020-09-14 05:56:31', 0, NULL, 1),
(6, 'HR', 1, '2020-09-04 09:45:11', 0, NULL, 0, NULL, 1),
(7, 'Mutual Fund', 1, '2020-09-04 09:45:20', 1, '2020-09-04 09:46:32', 0, NULL, 1),
(8, 'E - Sale', 1, '2020-12-11 12:36:21', 0, NULL, 0, NULL, 1),
(9, 'Stocks', 7, '2021-04-10 10:25:35', 0, NULL, 0, NULL, 1),
(10, 'Elite', 60, '2021-06-18 03:39:59', 7, '2021-08-03 06:20:34', 0, NULL, 1),
(11, 'Elite-RE', 7, '2021-08-03 06:20:06', 7, '2021-08-03 06:20:27', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_designation`
--

CREATE TABLE `cw_designation` (
  `prime_designation_id` int NOT NULL,
  `designation` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_designation`
--

INSERT INTO `cw_designation` (`prime_designation_id`, `designation`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2, 'Collection executive', 7, '2021-03-29 12:09:37', 0, NULL, 0, NULL, 1),
(3, 'Equity Dealer', 7, '2021-04-10 10:26:21', 0, NULL, 0, NULL, 1),
(5, 'Portfolio Manager', 60, '2022-01-10 03:50:55', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_documents_required`
--

CREATE TABLE `cw_documents_required` (
  `prime_documents_required_id` int NOT NULL,
  `documents_required` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_email_line`
--

CREATE TABLE `cw_email_line` (
  `prime_email_line_id` int NOT NULL,
  `email_line_name` varchar(100) DEFAULT NULL,
  `mail_configuration` int DEFAULT NULL,
  `email_for` varchar(50) DEFAULT NULL,
  `process_month` varchar(20) DEFAULT NULL,
  `pdf_template` varchar(100) DEFAULT NULL,
  `trans_status` int DEFAULT '1',
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_email_log`
--

CREATE TABLE `cw_email_log` (
  `prime_email_log_id` int NOT NULL,
  `email_line_id` int DEFAULT NULL,
  `email_id` varchar(100) DEFAULT NULL,
  `employee_code` varchar(50) DEFAULT NULL,
  `status` int DEFAULT '1',
  `message` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_employees`
--

CREATE TABLE `cw_employees` (
  `prime_employees_id` int NOT NULL,
  `role` varchar(100) DEFAULT '0',
  `user_name` varchar(100) DEFAULT NULL,
  `password` varchar(100) DEFAULT NULL,
  `employee_code` varchar(100) DEFAULT '',
  `emp_name` varchar(100) DEFAULT '',
  `department` varchar(100) DEFAULT '0',
  `designation` varchar(100) DEFAULT '0',
  `gender` varchar(100) DEFAULT '0',
  `date_of_birth` date DEFAULT NULL,
  `emp_age` int DEFAULT '0',
  `user_right` varchar(100) DEFAULT '3',
  `consultancy` varchar(100) DEFAULT '0',
  `emp_code` varchar(50) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_employees`
--

INSERT INTO `cw_employees` (`prime_employees_id`, `role`, `user_name`, `password`, `employee_code`, `emp_name`, `department`, `designation`, `gender`, `date_of_birth`, `emp_age`, `user_right`, `consultancy`, `emp_code`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, '1', 'RMS', '932d3253fe8a7141921eb6269c16b7bd', 'D100', 'gksu', '', '', '', NULL, 0, '1', '0', '', 0, NULL, 0, NULL, 0, NULL, 1),
(7, '3', 'H1000', '947d1066b8d45448d9bff7d9a33bd9af', 'H1000', 'Kayal', '6', '0', '2', '1987-12-09', 32, '3', '', '66663', 1, '2020-09-02 06:46:30', 1, '2024-04-15 10:42:10', 0, NULL, 1),
(8, '6', 'I1000', '947d1066b8d45448d9bff7d9a33bd9af', 'I1000', 'Kayalvizhi sambantham', '6', '0', '2', '1987-12-09', 32, '5', '', '66663', 1, '2020-09-02 07:11:08', 60, '2023-11-10 03:53:54', 0, NULL, 1),
(9, '6', 'I1001', '1cddf94a61ad87daba66df7442a7549f', 'I1001', 'yet to assign', '1', '0', '2', '1990-12-10', 29, '5', '', '5152', 1, '2020-09-03 10:32:53', 1, '2020-09-26 10:08:31', 0, NULL, 1),
(10, '2', 'A1000', 'ef196a952e7c2fddfbcf7b9acf7e39e6', 'A1000', 'Thiyagharajan', '3', '0', '2', '1983-07-19', 37, '2', '', '5551', 1, '2020-09-03 10:36:18', 1, '2020-09-04 10:13:09', 0, NULL, 1),
(11, '6', 'I1002', '27bcb51759eb74cf72357452136fa54f', 'I1002', 'Karthika L', '1', '0', '2', '1991-06-01', 29, '5', '', '5155', 1, '2020-09-03 10:42:11', 60, '2025-11-04 06:42:03', 0, NULL, 1),
(12, '4', 'C1000', '27944e9add65fd535e08566a5669e748', 'C1000', 'Thinkfinity', '6', '0', '1', '2020-09-03', 0, '4', '2', '', 1, '2020-09-03 11:16:14', 60, '2025-08-12 04:21:18', 0, NULL, 1),
(13, '6', 'I1003', 'aa68c75c4a77c87f97fb686b2f068676', 'I1003', 'Muthuraj R', '5', '0', '1', '1988-05-17', 32, '5', '', '5159', 1, '2020-09-03 11:21:20', 60, '2023-09-11 07:21:30', 0, NULL, 1),
(14, '6', 'I1004', '541000f65480973580265d1852de01cf', 'I1004', 'Priyanka Jenit T', '1', '0', '1', '1995-08-22', 25, '5', '', '5198', 1, '2020-09-03 11:22:29', 60, '2022-03-22 03:36:26', 0, NULL, 1),
(15, '6', 'I1005', '8d76e06f5f91afc2dd1a35d05a53a096', 'I1005', 'Saravanan K', '5', '0', '1', '1992-11-16', 27, '5', '', '5153', 1, '2020-09-03 11:23:33', 1, '2020-09-04 10:14:21', 0, NULL, 1),
(16, '6', 'I1006', '9246444d94f081e3549803b928260f56', 'I1006', 'Thiyagarajan', '5', '0', '1', '1990-10-18', 29, '5', '', '5174', 1, '2020-09-03 11:24:16', 1, '2020-09-04 10:14:32', 0, NULL, 1),
(17, '6', 'I1007', 'd98bf0db5de0e4f1f496dde7167c6663', 'I1007', 'Ramesh Kumar R', '5', '0', '1', '1994-01-06', 26, '5', '', '5206', 1, '2020-09-03 11:24:50', 60, '2021-02-20 10:42:11', 0, NULL, 1),
(18, '6', 'I1008', '36b029343f27799ed544e0c6d681b55b', 'I1008', 'Sriram R', '5', '0', '1', '1987-05-24', 33, '5', '', '5161', 1, '2020-09-03 11:25:36', 60, '2024-10-28 11:20:21', 0, NULL, 1),
(19, '6', 'I1009', 'ba6632d4c60ea20c60b0c7e0fa1e1102', 'I1009', 'Kannan.S', '5', '0', '1', '1991-04-10', 29, '5', '', '5266', 1, '2020-09-03 11:26:39', 60, '2023-11-11 05:23:22', 0, NULL, 1),
(20, '6', 'I1010', 'f14f90c6e807b14ae4d15e96100db484', 'I1010', 'Srikanth S', '5', '0', '1', '1994-01-17', 26, '5', '', '5392', 1, '2020-09-03 11:27:30', 7, '2021-08-26 12:01:19', 0, NULL, 1),
(21, '6', 'I1011', '7f975a56c761db6506eca0b37ce6ec87', 'I1011', 'Dhivya', '1', '0', '2', '1993-01-21', 27, '5', '', '', 1, '2020-09-03 12:17:23', 1, '2020-09-05 05:40:26', 0, NULL, 1),
(22, '6', 'I1012', 'f33ba15effa5c10e873bf3842afb46a6', 'I1012', 'Danial Balaji L', '5', '0', '1', '1985-01-01', 35, '5', '', '5157', 1, '2020-09-03 12:32:57', 1, '2020-09-04 10:16:00', 0, NULL, 1),
(23, '6', 'I1013', '6b180037abbebea991d8b1232f8a8ca9', 'I1013', 'thyagu', '0', '0', '1', '1990-10-18', 29, '5', '', '', 1, '2020-09-03 12:34:47', 0, NULL, 0, NULL, 1),
(24, '6', 'I1014', 'afd3f3cefdd9c2f88293179b4d865978', 'I1014', 'Suthagar T', '5', '0', '1', '1992-06-12', 28, '5', '', '5156', 1, '2020-09-03 12:39:10', 1, '2020-09-04 10:16:23', 0, NULL, 1),
(25, '6', 'I1015', '446d76066d086e27be7e0f45be4e88bc', 'I1015', 'Nirmal Kumar', '3', '0', '1', '1995-03-01', 25, '5', '', '5565', 1, '2020-09-03 01:23:39', 1, '2020-11-05 10:14:31', 0, NULL, 1),
(26, '6', 'I1016', '08fe2621d8e716b02ec0da35256a998d', 'I1016', 'test GS', '2', '0', '1', '1991-08-28', 29, '5', '', '6161', 1, '2020-09-03 01:34:02', 1, '2020-09-29 01:05:24', 0, NULL, 1),
(27, '6', 'I1017', '5405267b3cf44a6b58130ca48ec98521', 'I1017', 'Sathishkumar B', '2', '0', '1', '1994-01-06', 26, '5', '', '6163', 1, '2020-09-03 01:35:25', 1, '2021-08-30 10:28:02', 0, NULL, 1),
(28, '6', 'I1018', 'ef50c335cca9f340bde656363ebd02fd', 'I1018', 'Jagufer sathik', '2', '0', '1', '1994-05-04', 26, '5', '', '6166', 1, '2020-09-03 11:58:03', 1, '2020-09-04 10:17:52', 0, NULL, 1),
(29, '6', 'I1019', '03e0704b5690a2dee1861dc3ad3316c9', 'I1019', 'Gaurav Gupta', '5', '0', '1', '1982-12-22', 37, '5', '', '5185', 1, '2020-09-04 10:21:35', 60, '2023-09-05 05:41:05', 0, NULL, 1),
(30, '6', 'I1020', 'ef24ac33b71d87b465fb81fd18f28e4a', 'I1020', 'R Sathish Kumar', '5', '0', '1', '1992-04-27', 28, '5', '', '5154', 1, '2020-09-04 10:23:14', 60, '2022-12-03 03:25:16', 0, NULL, 1),
(31, '6', 'I1021', 'df0a4feafa43fccc6e1a9f6b1ff081fe', 'I1021', 'C K Gnana Kumaran', '5', '0', '1', '1975-07-03', 45, '5', '', '5158', 1, '2020-09-04 10:26:17', 60, '2024-07-04 07:03:49', 0, NULL, 1),
(32, '6', 'I1022', '0248226ca8d1255017526870abc6a4bf', 'I1022', 'Surendar c', '3', '0', '1', '1991-03-16', 29, '5', '', '5164', 1, '2020-09-04 10:28:12', 60, '2021-02-03 06:37:28', 0, NULL, 1),
(33, '6', 'I1023', 'fa3f39aa01b6af6b87fdd7603ff3b737', 'I1023', 'Raj Kumar K', '5', '0', '1', '1992-03-11', 28, '5', '', '5172', 1, '2020-09-04 10:29:35', 60, '2022-01-04 10:28:57', 0, NULL, 1),
(34, '6', 'I1024', '021bbc7ee20b71134d53e20206bd6feb', 'I1024', 'Guru Prasad V', '5', '0', '1', '1989-09-11', 30, '5', '', '5177', 1, '2020-09-04 10:31:48', 0, NULL, 0, NULL, 1),
(35, '6', 'I1025', '82b8a3434904411a9fdc43ca87cee70c', 'I1025', 'Raghu B', '7', '0', '1', '1993-06-13', 27, '5', '', '5181', 1, '2020-09-04 10:33:30', 0, NULL, 0, NULL, 1),
(36, '6', 'I1026', '24146db4eb48c718b84cae0a0799dcfc', 'I1026', 'Logesh D', '5', '0', '1', '1989-04-22', 31, '5', '', '5188', 1, '2020-09-04 10:38:34', 0, NULL, 0, NULL, 1),
(37, '6', 'I1027', '883e881bb4d22a7add958f2d6b052c9f', 'I1027', 'Udayakumar', '2', '0', '1', '1990-01-07', 30, '5', '', '6162', 1, '2020-09-04 10:41:13', 0, NULL, 0, NULL, 1),
(38, '6', 'I1028', '3806734b256c27e41ec2c6bffa26d9e7', 'I1028', 'Gowshick M', '5', '0', '1', '1996-03-07', 24, '5', '', '5264', 1, '2020-09-04 10:43:40', 1, '2020-11-20 04:11:01', 0, NULL, 1),
(39, '6', 'I1029', '84d2004bf28a2095230e8e14993d398d', 'I1029', 'Muppudathy Mani N', '5', '0', '1', '1996-01-08', 24, '5', '', '5326', 1, '2020-09-04 10:45:22', 0, NULL, 0, NULL, 1),
(40, '6', 'I1030', '0c12e3854387940a6d2aab86d18c3ca0', 'I1030', 'Veben William', '5', '0', '1', '1994-10-08', 25, '5', '', '5388', 1, '2020-09-04 10:47:30', 60, '2021-05-06 10:59:08', 0, NULL, 1),
(41, '6', 'I1031', 'afdec7005cc9f14302cd0474fd0f3c96', 'I1031', 'Priyanka R', '6', '0', '1', '1994-03-06', 26, '5', '', '4142', 1, '2020-09-04 10:49:20', 0, NULL, 0, NULL, 1),
(42, '6', 'I1032', 'f8e068e3b24fd1a2a3a6d159b1d297cd', 'I1032', 'Sudharsan P', '5', '0', '1', '1996-01-15', 24, '5', '', '55607', 1, '2020-09-04 10:51:03', 60, '2022-11-14 06:10:40', 0, NULL, 1),
(43, '6', 'I1033', 'e17184bcb70dcf3942c54e0b537ffc6d', 'I1033', 'Palanivel Perumalraj', '4', '0', '1', '1982-12-16', 37, '5', '', '5552', 1, '2020-09-04 10:52:29', 0, NULL, 0, NULL, 1),
(44, '6', 'I1034', '6f10d630e390cfd2b30116ff7b2c9ec0', 'I1034', 'Shanmugan Kutralingam S', '5', '0', '1', '1987-01-13', 33, '5', '', '5573', 1, '2020-09-04 10:59:36', 60, '2021-11-22 06:03:35', 0, NULL, 1),
(45, '6', 'I1035', '62d4813b6e5043fc74d15ddc1c5e9918', 'I1035', 'Suresh Kumar CA', '5', '0', '1', '1983-11-18', 37, '5', '', '5151', 1, '2020-09-04 11:01:11', 1, '2020-12-18 10:53:29', 0, NULL, 1),
(46, '4', 'C1001', '20cad7a1b3d89d427f6c56caaa7667ac', 'C1001', 'Eminence', '6', '0', '3', '2020-09-04', 0, '4', '3', 'C1001', 1, '2020-09-04 12:13:03', 60, '2022-11-26 06:17:38', 0, NULL, 1),
(47, '4', 'C1002', 'fba9d88164f3e2d9109ee770223212a0', 'C1002', 'VITEZ Solutions', '6', '0', '3', '2020-09-04', 0, '4', '5', '', 1, '2020-09-04 12:40:21', 1, '2020-12-22 10:41:31', 0, NULL, 1),
(48, '4', 'C1003', 'a8698009bce6d1b8c2128eddefc25aad', 'C1003', 'CAFSJOBS', '6', '0', '2', '2020-09-04', 0, '4', '1', '', 1, '2020-09-04 04:30:42', 1, '2020-09-24 06:25:55', 0, NULL, 1),
(49, '4', 'C1004', '743e093f5db2fa87d1a3174237a5bdc6', 'C1004', 'Dheepak consultancy', '6', '0', '1', '2020-09-05', 0, '4', '4', '', 1, '2020-09-05 02:07:25', 7, '2020-09-27 12:51:23', 0, NULL, 1),
(50, '3', 'H1001', 'e807f1fcf82d132f9bb018ca6738a19f', 'H1001', 'Priyanka r - HR', '6', '0', '2', '1994-03-06', 26, '3', '', '66673', 1, '2020-09-05 06:40:49', 1, '2020-09-22 01:51:20', 0, NULL, 1),
(51, '6', 'I1036', '1c9ebf4c72c862d9956c3190ae732ee7', 'I1036', 'sarath vimal raj', '5', '0', '1', '1991-09-14', 28, '5', '', '5369', 1, '2020-09-11 10:51:53', 60, '2021-11-19 03:44:35', 0, NULL, 1),
(52, '3', 'H1002', '4253aa6dbfb6b28ab0a0b7ac57483a91', 'H1002', 'Banu', '6', '0', '2', '1990-12-10', 29, '3', '', '5152', 1, '2020-09-16 04:58:24', 7, '2021-09-13 05:31:20', 0, NULL, 1),
(53, '6', 'I1037', 'a62635f7fea77a1a23fe973e52aa020f', 'I1037', 'Banupriya', '6', '0', '2', '1990-12-10', 29, '5', '', '', 1, '2020-09-17 11:54:53', 60, '2024-04-15 09:57:11', 0, NULL, 1),
(54, '6', 'I1038', '56580f70bf7871e6047bcc4bc921e02b', 'I1038', 'Gokulraj', '2', '0', '1', '1991-08-28', 29, '5', '', '', 1, '2020-09-21 04:21:04', 1, '2021-12-04 12:11:13', 0, NULL, 1),
(55, '3', 'H1003', 'bf5c505d23fd62ecc54540011ae56ecb', 'H1003', 'nandhini', '6', '0', '2', '1991-08-30', 29, '3', '', '', 1, '2020-09-29 11:22:38', 0, NULL, 0, NULL, 1),
(56, '6', 'I1039', 'b32ba27b50ca706be08af221413a6ced', 'I1039', 'Manivel', '5', '0', '1', '1992-07-20', 28, '5', '', '5361', 7, '2020-10-07 01:28:26', 1, '2020-11-04 05:27:42', 0, NULL, 1),
(57, '6', 'I1040', '03b767292019059247500326f6005e5c', 'I1040', 'Syed Abthali N', '5', '0', '1', '1997-10-02', 23, '5', '', '5382', 7, '2020-10-20 12:54:12', 60, '2021-09-07 10:53:24', 0, NULL, 1),
(58, '3', 'H1004', '901f6a63fb1dfe0a0651a021ee9d48a6', 'H1004', 'Jennifer', '6', '0', '2', '1986-10-28', 34, '3', '', '77771', 1, '2020-10-28 11:29:18', 60, '2022-01-05 05:11:55', 0, NULL, 1),
(59, '6', 'I1041', '1f9540fc361ce061759bab326fdbe208', 'I1041', 'Arun', '6', '0', '1', '1991-01-25', 29, '5', '', '55605', 7, '2020-11-07 03:39:18', 1, '2020-11-07 03:56:50', 0, NULL, 1),
(60, '3', 'H1005', '32ae99ba7ce4765b806807bd4b3f9d6e', 'H1005', 'Arun Hr', '6', '0', '1', '1990-11-11', 30, '3', '', 'H1005', 1, '2020-11-11 11:43:24', 60, '2024-06-15 10:03:41', 0, NULL, 1),
(61, '4', 'C1005', 'd7205630047f3c525a5bef61026f4fc5', 'C1005', 'HR7M', '6', '0', '1', '2020-12-02', 0, '4', '14', 'C', 7, '2020-12-02 03:32:42', 7, '2022-02-16 04:03:21', 0, NULL, 1),
(62, '4', 'C1006', '8ede794df53df08b9168f87b6018baa1', 'C1006', 'Zenfy', '6', '0', '2', '2020-11-30', 0, '4', '15', '', 7, '2020-12-02 04:34:13', 7, '2020-12-02 05:34:10', 0, NULL, 1),
(63, '6', 'I1042', '31b779b8e6caa3393a5f97d43e055a50', 'I1042', 'latha P', '2', '0', '2', '1995-05-07', 25, '5', '', '', 1, '2020-12-11 02:56:10', 1, '2020-12-12 11:01:12', 0, NULL, 1),
(64, '3', 'H1006', '5f15688dac1645789d7a2857c33aa579', 'H1006', 'Sabeha', '6', '0', '2', '1997-09-18', 23, '3', '', '77772', 7, '2020-12-15 05:16:42', 60, '2021-12-15 10:49:02', 0, NULL, 1),
(65, '3', 'H1007', 'deceaee4f6471f76dbb76e9ecf1046f7', 'H1007', 'Seethapathi', '6', '0', '2', '1996-12-07', 24, '3', '', '77773', 7, '2020-12-15 05:27:14', 7, '2020-12-29 11:07:39', 0, NULL, 1),
(66, '4', 'C1007', '58ccffc43926f7d314080cdcb2167d70', 'C1007', 'NAGAS', '6', '0', '1', '2020-12-16', 0, '4', '8', '', 7, '2020-12-16 11:53:27', 0, NULL, 0, NULL, 1),
(67, '6', 'I1043', 'a645b9230f40e9ad5d4b5da74c7d0477', 'I1043', 'Syed Reyaz Ahmed', '1', '0', '1', '1977-11-04', 43, '5', '', '', 7, '2020-12-23 11:53:19', 60, '2021-02-16 10:25:07', 0, NULL, 1),
(68, '6', 'I1044', '588875c2cfb3cc35b5709907309d22af', 'I1044', 'Sanjeev Joshi', '5', '0', '1', '1977-07-16', 43, '5', '', '', 60, '2021-01-11 11:48:34', 0, NULL, 0, NULL, 1),
(69, '6', 'I1045', '0ec2857b797f071c1061dc237d1eab3b', 'I1045', 'Reyaz Ahmed', '2', '0', '1', '1997-07-21', 23, '5', '', '', 60, '2021-02-20 10:16:33', 60, '2021-03-03 06:43:30', 0, NULL, 1),
(70, '4', 'C1008', '89508bf4c8686ba5aadb9ec7c8860c2c', 'C1008', 'MRTS', '6', '0', '1', '2021-03-16', 0, '4', '16', '', 7, '2021-03-17 11:32:27', 7, '2021-03-17 12:48:55', 0, NULL, 1),
(71, '6', 'I1046', 'ffe915a493e5b019881353cae640ff01', 'I1046', 'Santhosh B', '5', '0', '1', '1990-10-17', 30, '5', '', '55567', 60, '2021-05-07 03:50:16', 60, '2023-02-17 05:35:57', 0, NULL, 1),
(72, '3', 'H1008', 'ebdb699eb5ada330b69b14a18bbf59f2', 'H1008', 'HR Gokul', '6', '0', '1', '1991-08-28', 29, '3', '', '', 60, '2021-05-21 03:56:11', 1, '2021-05-21 04:15:49', 0, NULL, 1),
(73, '6', 'I1047', '0c3943aefc5d749d8337bd2444c3807b', 'I1047', 'Dhanalakshmi', '1', '0', '2', '1997-05-29', 24, '5', '', '', 60, '2021-08-10 07:16:14', 60, '2021-08-10 07:33:54', 0, NULL, 1),
(74, '6', 'I1048', '92ef13fb957104fb0eea712f218b1170', 'I1048', 'Sithy vinayagam', '1', '0', '1', '1992-08-03', 29, '5', '', '', 7, '2021-09-13 04:18:14', 7, '2021-09-13 05:30:26', 0, NULL, 1),
(75, '4', 'C1009', 'f4107995641d7af48d50a67d0d7d30db', 'C1009', 'CEO HR', '6', '0', '1', '2021-11-03', 0, '4', '18', '', 60, '2021-11-03 05:41:15', 0, NULL, 0, NULL, 1),
(76, '4', 'C1010', '9563c0b9338bc25575574c7ad0332c55', 'C1010', 'Steercorp', '6', '0', '1', '2021-11-03', 0, '4', '17', '', 60, '2021-11-03 05:42:17', 0, NULL, 0, NULL, 1),
(77, '4', 'C1011', '334fcfbe891109fca34624a072081ad9', 'C1011', 'Jobseeks 4U', '6', '0', '1', '2021-11-15', 0, '4', '21', 'C1011', 60, '2021-11-15 02:32:00', 0, NULL, 0, NULL, 1),
(78, '4', 'C1012', 'aabde4add454769f419b9ee281a86aee', 'C1012', 'Beacon Consulting', '6', '0', '1', '2021-11-15', 0, '4', '20', 'C1012', 60, '2021-11-15 02:32:41', 0, NULL, 0, NULL, 1),
(79, '4', 'C1013', '81ab8a7fee0ea3fd98f64b06a81bff37', 'C1013', 'Jobcento', '6', '0', '1', '2021-11-15', 0, '4', '19', 'C1013', 60, '2021-11-15 02:33:24', 0, NULL, 0, NULL, 1),
(80, '6', 'I1049', '2f8bc40b1069091c22ca7d41888f6d93', 'I1049', 'Pandiarajan', '5', '0', '1', '1984-07-05', 37, '5', '', 'I1049', 60, '2021-11-19 05:50:25', 0, NULL, 0, NULL, 1),
(81, '4', 'C1014', '43ca010cc4f960b96cd5d451ac04a845', 'C1014', 'Trimastir Solutions', '6', '0', '1', '2021-12-11', 0, '4', '22', 'C1014', 60, '2021-12-11 05:51:35', 0, NULL, 0, NULL, 1),
(82, '6', 'I1050', 'a9996b1407ec515c109b7b952b78a12d', 'I1050', 'Ravi', '5', '0', '1', '2021-12-23', 0, '5', '', 'I1050', 60, '2021-12-23 06:11:00', 0, NULL, 0, NULL, 1),
(83, '6', 'I1051', '8ebe866e68378af5e68e03543d3dadf3', 'I1051', 'Jennifer Int', '6', '0', '2', '2022-01-15', 0, '5', '', '77771', 60, '2022-01-15 10:20:43', 60, '2022-02-11 05:46:33', 0, NULL, 1),
(84, '3', 'H1009', 'eacb2e419de65429a64465afca0f792c', 'H1009', 'Jagapathi Babu', '6', '0', '1', '2022-01-19', 0, '3', '', 'H1009', 60, '2022-01-19 02:43:25', 60, '2022-02-18 05:16:09', 0, NULL, 1),
(85, '3', 'H1010', '40528565891343b832ccd62eebff6cb7', 'H1010', 'Helen Mary', '6', '0', '2', '2022-02-05', 0, '3', '', 'H1010', 60, '2022-02-05 09:38:33', 60, '2022-06-30 04:10:45', 0, NULL, 1),
(86, '6', 'I1052', '472052448105aa38b7ecf9e83f58294b', 'I1052', 'Manikandan', '5', '0', '1', '2022-02-11', 0, '5', '', 'I1052', 60, '2022-02-11 05:47:41', 0, NULL, 0, NULL, 1),
(87, '3', 'H1011', '7e7b40d9275fc93e648f4e88a69089a9', 'H1011', 'Vishal', '6', '0', '1', '2022-02-16', 0, '3', '', 'H1011', 60, '2022-02-16 06:41:35', 60, '2022-02-19 01:16:41', 0, NULL, 1),
(88, '6', 'I1053', '8b9455478154d11f8588800cef010c44', 'I1053', 'Ramesh Prasanna', '5', '0', '1', '2022-02-23', 0, '5', '', 'I1053', 60, '2022-02-23 06:40:10', 60, '2022-02-23 06:40:38', 0, NULL, 1),
(89, '6', 'I1054', 'b4dc7707315a6d00f85e1ce7698a185d', 'I1054', 'Babu', '5', '0', '1', '1994-06-21', 27, '5', '', 'I1054', 60, '2022-03-21 12:14:10', 60, '2025-04-21 10:41:05', 0, NULL, 1),
(90, '4', 'C1015', 'fd42567ab01322276bb495801a66d771', 'C1015', 'MS HR', '6', '0', '3', '2022-03-30', 0, '4', '23', '', 7, '2022-03-30 05:14:46', 60, '2022-09-16 10:30:10', 0, NULL, 1),
(91, '6', 'I1055', '30a4b2ac9bc530fabbcf5348e39d7f10', 'I1055', 'Sai Lokesh', '5', '0', '1', '1994-01-18', 28, '5', '', 'P1232', 60, '2022-05-10 02:57:40', 0, NULL, 0, NULL, 1),
(92, '3', 'H1012', '227164c2ed23438ab74f38c0c3868efc', 'H1012', 'Gayathri', '6', '0', '2', '2001-04-28', 21, '3', '', 'H1012', 60, '2022-05-10 04:28:43', 60, '2022-07-18 06:26:58', 0, NULL, 1),
(93, '6', 'I1056', '45cf59377f015247854336769a8885ec', 'I1056', 'Mohanraj', '8', '0', '1', '1994-05-19', 27, '5', '', 'P1256', 60, '2022-05-18 02:52:14', 0, NULL, 0, NULL, 1),
(94, '4', 'C1016', '86b4c262a5928ece853dec107560db1b', 'C1016', 'All Time Service Vision', '6', '0', '1', '2022-05-19', 0, '4', '24', 'C1016', 60, '2022-05-19 04:13:26', 60, '2022-05-19 04:13:49', 0, NULL, 1),
(95, '4', 'C1017', '669cbcb78869c01a9a77850eee56e06b', 'C1017', 'Vinpogo', '6', '0', '1', '2022-06-14', 0, '4', '25', 'C1017', 60, '2022-06-14 06:06:29', 0, NULL, 0, NULL, 1),
(96, '3', 'H1013', '47059b3ad8283c002e4213e848d939b1', 'H1013', 'Mageshwari', '6', '0', '2', '2022-07-15', 0, '3', '', 'H1013', 60, '2022-07-15 04:10:32', 60, '2022-09-23 02:54:29', 0, NULL, 1),
(97, '6', 'I1057', '6d3cc3240f785ff018cb615c239314a6', 'I1057', 'Helen', '6', '0', '2', '2022-08-17', 0, '5', '', 'I1057', 60, '2022-08-17 04:44:53', 60, '2022-08-17 04:49:14', 0, NULL, 1),
(98, '6', 'I1058', 'ad097f6628134395a869acb2dfe962d7', 'I1058', 'Herash', '3', '0', '1', '2022-08-20', 0, '5', '', 'P1254', 60, '2022-08-20 06:39:38', 0, NULL, 0, NULL, 1),
(99, '3', 'H1014', '82d1b839d6d299204fb98e95c60b0cb2', 'H1014', 'Heera', '6', '0', '2', '2022-10-08', 0, '3', '', 'H1014', 60, '2022-10-08 01:09:15', 60, '2022-11-05 09:54:57', 0, NULL, 1),
(100, '6', 'I1059', '15c7f30aca34b259f1ab6ea61a8bf88c', 'I1059', 'Bhavani', '1', '0', '2', '1998-10-31', 23, '5', '', 'P1122', 60, '2022-10-29 05:04:26', 60, '2022-11-02 03:43:32', 0, NULL, 1),
(101, '3', 'H1015', '23a2b586bf3574e0eee89ea5fcc9d130', 'H1015', 'Priyatharisini.C', '6', '0', '2', '1999-05-04', 23, '3', '', 'H1015', 60, '2023-04-10 03:36:59', 0, NULL, 0, NULL, 1),
(102, '6', 'I1060', 'ce9d87dccb2e375277fb8b9d6ff84e0d', 'I1060', 'Charles', '5', '0', '1', '2023-04-29', 0, '5', '', 'I1060', 60, '2023-04-29 06:00:29', 0, NULL, 0, NULL, 1),
(103, '3', 'H1016', 'f13d65a1dcce36d8daee758050312f99', 'H1016', 'Mahalakshmi', '6', '0', '2', '2023-05-08', 0, '3', '', 'H1016', 60, '2023-05-08 07:13:08', 0, NULL, 0, NULL, 1),
(104, '3', 'H1017', '1fe751775b5c9efe9006965c30dc964f', 'H1017', 'Jothiga', '6', '0', '2', '2023-05-08', 0, '3', '', 'H1017', 60, '2023-05-08 07:15:06', 60, '2024-07-01 12:28:01', 0, NULL, 1),
(105, '6', 'I1061', '217eb7dab86674730db692700bf9367d', 'I1061', 'Gopinath', '5', '0', '1', '2023-05-31', 0, '5', '', 'I1061', 60, '2023-05-31 02:39:07', 0, NULL, 0, NULL, 1),
(106, '3', 'H1018', '72b1fdb4e193a23cede85a7acdf1eeb1', 'H1018', 'Intern', '6', '0', '2', '2023-06-01', 0, '3', '', 'H1018', 60, '2023-06-01 09:43:39', 0, NULL, 0, NULL, 1),
(107, '6', 'I1062', 'f310c27723387bf38a50cdaf25811612', 'I1062', 'Priyatharisini', '6', '0', '2', '2023-06-17', 0, '5', '', 'I1062', 60, '2023-06-17 06:24:37', 60, '2023-06-17 06:25:38', 0, NULL, 1),
(108, '3', 'H1019', '5eb0ffde589a960bac1b8bafa2ed0322', 'H1019', 'Gayathri K', '6', '0', '2', '2023-06-27', 0, '3', '', 'H1019', 60, '2023-06-27 02:28:36', 60, '2023-06-27 03:08:35', 0, NULL, 1),
(109, '6', 'I1063', 'e5472c2d7bf88c02e045ff19fe14d4c2', 'I1063', 'jothiga', '6', '0', '2', '2023-07-26', 0, '5', '', 'I1063', 60, '2023-07-26 05:23:37', 0, NULL, 0, NULL, 1),
(110, '3', 'H1020', 'a79a1fa310a5ff02b05da4a0e0d3eb0b', 'H1020', 'Anthony Praveen', '6', '0', '1', '2002-11-10', 21, '3', '', 'H1020', 60, '2024-01-13 05:09:23', 60, '2024-01-13 05:11:06', 0, NULL, 1),
(111, '4', 'C1018', '67526439f227afae5bdf85d314e2b394', 'C1018', 'Skylark', '6', '0', '1', '2024-02-15', 0, '4', '29', 'C1018', 60, '2024-02-15 03:12:47', 60, '2024-02-19 03:42:31', 0, NULL, 1),
(112, '3', 'H1021', '1b79472988d518f38a8b3c18f7c448f6', 'H1021', 'Divya', '6', '0', '1', '2024-02-19', 0, '3', '', 'H1021', 60, '2024-02-19 04:38:51', 60, '2024-02-19 04:39:24', 0, NULL, 1),
(113, '4', 'C1019', '5629175e25969f5cb4f1bb353a032e79', 'C1019', 'Winture', '6', '0', '1', '2024-02-23', 0, '4', '32', 'C1019', 60, '2024-02-23 02:43:30', 0, NULL, 0, NULL, 1),
(114, '4', 'C1020', '022f7792f87c74ce89e1d703762a6471', 'C1020', 'TalentPro', '6', '0', '1', '2024-03-06', 0, '4', '34', 'C1020', 60, '2024-03-06 01:06:54', 0, NULL, 0, NULL, 1),
(115, '4', 'C1021', '12d5fdb73eea22486ca89c73462b8827', 'C1021', 'Vidhya', '6', '0', '1', '2024-03-13', 0, '4', '31', 'C1021', 60, '2024-03-13 01:18:46', 0, NULL, 0, NULL, 1),
(116, '4', 'C1022', 'd57176c7ae5b6aa063c2f3c9ee8f2c99', 'C1022', 'Talent Trends', '6', '0', '1', '2024-03-21', 0, '4', '35', 'C1022', 60, '2024-03-21 04:11:48', 0, NULL, 0, NULL, 1),
(117, '4', 'C1023', '5ebc40aa4c619b22809f05f677cc4a74', 'C1023', 'Recruitify JM HR', '6', '0', '1', '2024-03-21', 0, '4', '37', 'C1023', 60, '2024-03-21 04:12:32', 0, NULL, 0, NULL, 1),
(118, '4', 'C1024', 'b96887de2d5de5af5404ddc9f322ad37', 'C1024', 'JobsCruze', '6', '0', '1', '2024-03-26', 0, '4', '38', 'C1024', 60, '2024-03-26 05:45:59', 0, NULL, 0, NULL, 1),
(119, '4', 'C1025', '8f07ac64511f674469224b63f09da95b', 'C1025', 'Pro Consultant', '6', '0', '1', '2024-03-26', 0, '4', '39', 'C1025', 60, '2024-03-26 05:46:45', 0, NULL, 0, NULL, 1),
(120, '4', 'C1026', '7feb76987df74a41d7b243dab4d4ef23', 'C1026', 'Mercc', '6', '0', '1', '2024-03-26', 0, '4', '40', 'C1026', 60, '2024-03-26 05:47:42', 0, NULL, 0, NULL, 1),
(121, '4', 'C1027', 'b8086fc69bad9930f10033aa541fe396', 'C1027', 'Zayin', '6', '0', '1', '2024-04-02', 0, '4', '42', 'C1027', 60, '2024-04-02 10:33:10', 0, NULL, 0, NULL, 1),
(122, '4', 'C1028', '7de1b8b16cbc767ca55e716b02121274', 'C1028', 'Business SHR', '6', '0', '1', '2024-04-02', 0, '4', '44', 'C1028', 60, '2024-04-02 10:33:50', 0, NULL, 0, NULL, 1),
(123, '4', 'C1029', '4c5e12fd8e21bc0b78cdf786db2a4cdf', 'C1029', 'Career School', '6', '0', '1', '2024-04-02', 0, '4', '45', 'C1029', 60, '2024-04-02 10:34:39', 0, NULL, 0, NULL, 1),
(124, '4', 'C1030', '391b67a39a932079dab4a6c2d50d7caf', 'C1030', 'Hariss Consultancy', '6', '0', '1', '2024-04-02', 0, '4', '43', 'C1030', 60, '2024-04-02 10:35:23', 0, NULL, 0, NULL, 1),
(125, '4', 'C1031', '14c8a50ba38c3b998e9b840726abfe78', 'C1031', 'ESNL', '6', '0', '1', '2024-04-02', 0, '4', '46', 'C1031', 60, '2024-04-02 10:36:16', 0, NULL, 0, NULL, 1),
(126, '3', 'H1022', '6a0446ac6ded19911bfe6a354aea00b5', 'H1022', 'Sumaiya', '6', '0', '1', '2024-04-02', 0, '3', '', 'H1022', 60, '2024-04-02 10:42:30', 60, '2024-04-02 03:24:44', 0, NULL, 1),
(127, '3', 'H1023', 'fc73fa8b660d0ef63abade3c427b60e9', 'H1023', 'Sreevedha', '6', '0', '2', '2024-04-02', 0, '3', '', 'H1023', 104, '2024-04-02 10:59:55', 60, '2024-04-10 05:18:25', 0, NULL, 1),
(128, '3', 'H1024', '1a0f4aea616312d04bb688955d2a4adb', 'H1024', 'Vignesh', '6', '0', '1', '2000-02-14', 24, '3', '', 'H1024', 104, '2024-04-02 11:26:49', 0, NULL, 0, NULL, 1),
(129, '3', 'H1025', 'b87c9e95bf2c0808664ec878949a7859', 'H1025', 'Rekha', '6', '0', '2', '2002-03-30', 22, '3', '', 'H1025', 104, '2024-04-02 11:28:21', 0, NULL, 0, NULL, 1),
(130, '3', 'H1026', 'af5fe67750f5dca7083986bb5b7c9c78', 'H1026', 'Afrin Sulaiha', '6', '0', '2', '2001-02-24', 23, '3', '', 'H1026', 104, '2024-04-02 11:30:03', 60, '2024-04-05 10:49:42', 0, NULL, 1),
(131, '6', 'I1064', 'd6039f0045c1f6453aa7de1ea517c7d1', 'I1064', 'sumaiya ', '6', '0', '2', '1997-08-24', 26, '5', '', 'I1064', 104, '2024-04-02 03:35:57', 1, '2024-04-02 04:06:01', 0, NULL, 1),
(132, '4', 'C1032', 'c9431539992b9f5ba133ac046f8933fd', 'C1032', 'hi-centrix placements', '6', '0', '1', '2024-04-02', 0, '4', '47', 'C1032', 104, '2024-04-02 03:59:12', 0, NULL, 0, NULL, 1),
(133, '4', 'C1033', '506d8287a828c3302608563689e6f686', 'C1033', 'Ananta Vyom Consultants', '6', '0', '1', '2024-04-04', 0, '4', '48', 'C1033', 104, '2024-04-04 04:23:55', 0, NULL, 0, NULL, 1),
(134, '4', 'C1034', '9880d488e3d5464c9a8875f5650e50e7', 'C1034', 'Wehyre Corporate Consultancy', '6', '0', '1', '2024-04-04', 0, '4', '49', 'C1034', 104, '2024-04-04 04:26:08', 0, NULL, 0, NULL, 1),
(135, '4', 'C1035', 'ca9b0901897f727fae2a592c1803192d', 'C1035', 'creative hands HR solutions.', '6', '0', '1', '2024-04-05', 0, '4', '50', 'C1035', 104, '2024-04-05 04:39:07', 60, '2025-12-12 10:03:38', 0, NULL, 1),
(136, '4', 'C1036', '5ca4f67fb997768c55f7bd3a786a24f4', 'C1036', 'HighSource HR Solutions', '6', '0', '1', '2024-04-10', 0, '4', '51', 'C1036', 104, '2024-04-10 10:51:31', 0, NULL, 0, NULL, 1),
(137, '6', 'I1065', 'c13af78bf1af0619ee3bea4fbc4f9d5c', 'I1065', 'Giriraja', '5', '0', '1', '2024-04-18', 0, '5', '', 'I1065', 104, '2024-04-18 03:46:17', 0, NULL, 0, NULL, 1),
(138, '6', 'I1066', '65dfeaf6debe93d879e6884ffa9fb4c5', 'I1066', 'jagadeesh', '5', '0', '1', '2024-04-18', 0, '5', '', 'I1066', 104, '2024-04-18 03:49:19', 60, '2024-07-31 12:55:53', 0, NULL, 1),
(139, '6', 'I1067', 'da09c15c0e03aa3f8ea54739577f9ba5', 'I1067', 'Gnanasekar', '5', '0', '1', '2024-04-18', 0, '5', '', 'I1067', 104, '2024-04-18 03:54:46', 60, '2024-04-20 10:57:03', 0, NULL, 1),
(140, '6', 'I1068', 'd289caedb763a66925bfe5f101d9306b', 'I1068', 'Porselvan', '5', '0', '1', '2024-04-18', 0, '5', '', 'I1068', 104, '2024-04-18 03:55:38', 0, NULL, 0, NULL, 1),
(141, '6', 'I1069', '15352ada08584e6b7b8b922e85439e0f', 'I1069', 'PRADEEPAN', '5', '0', '1', '2024-04-20', 0, '5', '', 'I1069', 104, '2024-04-20 03:12:08', 60, '2024-04-23 03:42:17', 0, NULL, 1),
(142, '4', 'C1037', '07e07ef97762fc42df3106f570baf638', 'C1037', 'Vishakan Consultancy', '6', '0', '1', '2024-04-20', 0, '4', '52', 'C1037', 104, '2024-04-20 03:14:34', 0, NULL, 0, NULL, 1),
(143, '4', 'C1038', '8559bff4bdf1541ac80a1e2a4665a65b', 'C1038', 'Flexo', '6', '0', '1', '2024-05-14', 0, '4', '36', 'C1038', 60, '2024-05-14 05:39:34', 60, '2025-08-12 04:19:59', 0, NULL, 1),
(144, '4', 'C1039', '32ee5c9ee3a9e84fa5d7758427ac5a81', 'C1039', 'SRI HR Integrated services', '6', '0', '1', '2024-05-15', 0, '3', '53', 'C1039', 104, '2024-05-15 06:14:37', 0, NULL, 0, NULL, 1),
(145, '4', 'C1040', '46b2d706e6c01b19f3e584821a9da548', 'C1040', 'Skynetwork', '5', '0', '1', '2024-06-07', 0, '4', '54', 'C1040', 104, '2024-06-07 04:29:32', 0, NULL, 0, NULL, 1),
(146, '4', 'C1041', 'ce402d8df4a15bcc69ae8deec276a646', 'C1041', 'Milestone', '5', '0', '1', '2024-06-07', 0, '4', '55', 'C1041', 104, '2024-06-07 04:30:21', 0, NULL, 0, NULL, 1),
(147, '6', 'I1070', 'be8dc85a15a5b83d485ba60a91799351', 'I1070', 'Ashfaq', '5', '0', '1', '2024-07-10', 0, '5', '', 'I1070', 60, '2024-07-10 06:11:29', 0, NULL, 0, NULL, 1),
(148, '4', 'C1042', 'c4e2eff2b48fe9eb82ef1dd8cc002e8c', 'C1042', 'akshaya HR Solutions', '6', '0', '1', '2024-07-12', 0, '4', '56', 'C1042', 104, '2024-07-12 10:35:06', 60, '2024-07-18 04:37:20', 0, NULL, 1),
(149, '6', 'I1071', '19ae42ad4c3f5030d7cc4305da2a410f', 'I1071', 'R. Rajasekaran', '5', '0', '1', '2024-07-22', 0, '5', '', 'I1071', 104, '2024-07-22 03:37:12', 0, NULL, 0, NULL, 1),
(150, '4', 'C1043', '483c5f36381ac7d2443f412e05be9a8b', 'C1043', 'INFO HR Solutions', '6', '0', '1', '2024-08-12', 0, '4', '57', 'C1043', 60, '2024-08-12 04:23:02', 0, NULL, 0, NULL, 1),
(151, '4', 'C1044', '0e297573734e118493f65a52f600d499', 'C1044', 'PrimeThink Biz solutions', '5', '0', '1', '2024-08-19', 0, '4', '58', 'C1044', 104, '2024-08-19 04:24:47', 0, NULL, 0, NULL, 1),
(152, '6', 'I1072', 'e291d5ba964b2c9d6f19f800d475ca50', 'I1072', 'Abdul Rahman ', '5', '0', '1', '1997-06-23', 27, '5', '', 'I1072', 104, '2024-10-14 03:00:49', 0, NULL, 0, NULL, 1),
(153, '3', 'H1027', 'f1a8333fc4897ca8f5e307876535be98', 'H1027', 'Siva Prasad', '6', '0', '1', '2024-10-30', 0, '3', '', 'H1027', 60, '2024-10-30 03:10:25', 60, '2024-10-30 03:12:31', 0, NULL, 1),
(154, '3', 'H1028', 'c996d79226feb1c1f941d25f0559f239', 'H1028', 'Sridhar', '6', '0', '1', '2024-10-30', 0, '3', '', 'H1028', 104, '2024-10-30 04:09:34', 0, NULL, 0, NULL, 1),
(155, '6', 'I1073', 'af49e87251b9fe7154f878b17c57f548', 'I1073', 'Sridhar', '6', '0', '1', '2025-03-06', 0, '5', '', 'I1073', 60, '2025-03-06 12:55:27', 0, NULL, 0, NULL, 1),
(156, '6', 'I1074', 'ff7b84c9048ba9383b4f41158ddf54ae', 'I1074', 'Deshwaran', '5', '0', '1', '2025-04-18', 0, '5', '', 'I1074', 104, '2025-04-18 12:03:21', 0, NULL, 0, NULL, 1),
(157, '3', 'H1029', 'fe92b43461e8372c5dc892207491f743', 'H1029', 'Anuja', '6', '0', '2', '2025-04-25', 0, '3', '', 'H1029', 104, '2025-04-25 10:35:41', 60, '2025-04-25 06:58:01', 0, NULL, 1),
(158, '6', 'I1075', '7cbd273233c911b140f37afe5edaae62', 'I1075', 'Anuja', '6', '0', '2', '2025-04-25', 0, '5', '', 'I1075', 60, '2025-04-25 10:40:42', 60, '2025-04-25 06:56:57', 0, NULL, 1),
(159, '3', 'H1030', 'd07c23d507ba2525149fab052a2962da', 'H1030', 'Lakshana', '6', '0', '2', '2025-06-03', 0, '3', '', 'H1030', 60, '2025-06-03 05:31:24', 60, '2025-06-20 04:09:17', 0, NULL, 1),
(160, '4', 'C1045', '56aa8cf101611343c9b680ec4bdffcce', 'C1045', 'Humanetics HR tech', '6', '0', '1', '2025-07-21', 0, '4', '62', 'C1045', 104, '2025-07-21 06:30:38', 60, '2025-07-21 06:34:59', 0, NULL, 1),
(161, '6', 'I1076', '2918ae8cf841be2cd56ee0aaf0bc43f7', 'I1076', 'Lakshana Sre', '6', '0', '2', '2025-08-20', 0, '5', '', 'I1076', 104, '2025-08-20 12:48:50', 0, NULL, 0, NULL, 1),
(162, '3', 'H1031', '768f2a8f8a89d5cc2f4809ae08928b0c', 'H1031', 'Hari Priya', '6', '0', '2', '2025-08-21', 0, '3', '', 'H1031', 104, '2025-08-21 03:39:50', 60, '2026-03-20 11:50:11', 0, NULL, 1),
(163, '6', 'I1077', 'debcda734e0452ec1dd2e7a99f0aa83c', 'I1077', 'Hari Priya', '6', '0', '2', '2025-08-21', 0, '5', '', 'I1077', 104, '2025-08-21 03:40:37', 0, NULL, 0, NULL, 1),
(164, '6', 'I1078', '41edef22d034fc7808f07c97232e1f7f', 'I1078', 'Sathyamoorthy', '5', '0', '1', '2025-12-02', 0, '5', '', 'I1078', 104, '2025-12-02 05:44:41', 60, '2025-12-11 12:46:47', 0, NULL, 1),
(165, '4', 'C1046', 'f37857f1802134bc7fa376dba2d92640', 'C1046', 'Talentia HR Solutions', '6', '0', '1', '2025-12-12', 0, '4', '65', 'C1046', 104, '2025-12-12 09:52:13', 60, '2025-12-12 10:08:15', 0, NULL, 1),
(166, '4', 'C1047', '3c61473eb31b96deb86ec8ecdb3a4a3b', 'C1047', 'Workfreaks', '6', '0', '1', '2025-12-12', 0, '4', '66', 'C1047', 60, '2025-12-12 10:42:51', 0, NULL, 0, NULL, 1),
(167, '6', 'I1079', '15d7fe698549b769c9eb153cdd220968', 'I1079', 'Vasudeva Reddy', '5', '0', '1', '2025-12-20', 0, '5', '', 'I1079', 104, '2025-12-20 11:52:44', 0, NULL, 0, NULL, 1),
(168, '6', 'I1080', 'fe458caf173dce2111e27306fbd77605', 'I1080', 'Anandhakrishnan', '5', '0', '1', '2025-12-20', 0, '5', '', 'I1080', 104, '2025-12-20 11:54:07', 0, NULL, 0, NULL, 1),
(169, '4', 'C1048', '2057422622079ea6b31bcd13802e4294', 'C1048', 'skill Hunt Solutions', '6', '0', '1', '2025-12-23', 0, '4', '67', 'C1048', 104, '2025-12-23 04:21:22', 0, NULL, 0, NULL, 1),
(170, '4', 'C1049', 'd2fa16700cf1b190d251f03545722564', 'C1049', 'GRMAC ', '6', '0', '1', '2026-01-08', 0, '4', '68', 'C1049', 104, '2026-01-08 05:02:20', 0, NULL, 0, NULL, 1),
(171, '4', 'C1050', '51cbf28f8f9e1ab0171853df520c7868', 'C1050', 'Business Integra Software Solutions', '6', '0', '1', '2026-03-10', 0, '4', '71', 'C1050', 104, '2026-03-10 03:59:02', 0, NULL, 0, NULL, 1),
(172, '3', 'H1032', 'ccb950a9436fbdfe2ba66461c7814fe7', 'H1032', 'Bharath Kumar', '6', '0', '1', '2026-03-18', 0, '3', '', 'H1032', 60, '2026-03-18 06:56:49', 60, '2026-03-18 06:58:01', 0, NULL, 1),
(173, '6', 'I1081', '32ae99ba7ce4765b806807bd4b3f9d6e', 'I1081', 'Bharath Kumar', '6', '0', '1', '2026-03-18', 0, '5', '', 'I1081', 60, '2026-03-18 06:59:19', 0, NULL, 0, NULL, 1),
(174, '6', 'I1082', 'e029aadb5b1e6e6c532f15bdc7b1c48d', 'I1082', 'Priya', '5', '0', '2', '2026-03-25', 0, '5', '', 'I1082', 60, '2026-03-25 03:05:50', 60, '2026-03-25 03:46:04', 0, NULL, 1),
(175, '4', 'C1051', '8deac0592d9cbe9ebce05e8a0726181c', 'C1051', 'Bayleaf', '6', '0', '1', '2026-04-29', 0, '4', '73', 'C1051', 60, '2026-04-29 12:10:44', 0, NULL, 0, NULL, 1),
(176, '6', 'I1083', 'a06b8c80503228de95a75d4368bfcd6c', 'I1083', 'Kamala Bharathy', '5', '0', '2', '2026-05-08', 0, '5', '', 'I1083', 60, '2026-05-08 11:07:05', 0, NULL, 0, NULL, 1),
(177, '3', 'H1033', '19ea8b0fd716d205ca37730424f3fa64', 'H1033', 'Dhammasundari', '6', '0', '2', '2026-05-09', 0, '3', '', 'H1033', 60, '2026-05-09 11:34:00', 60, '2026-05-09 11:36:07', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_employees_log`
--

CREATE TABLE `cw_employees_log` (
  `prime_employees_log_id` int NOT NULL,
  `prime_employees_id` int DEFAULT '0',
  `employee_code` varchar(255) DEFAULT NULL,
  `emp_name` varchar(255) DEFAULT NULL,
  `label_name` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) NOT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_employees_log`
--

INSERT INTO `cw_employees_log` (`prime_employees_log_id`, `prime_employees_id`, `employee_code`, `emp_name`, `label_name`, `old_value`, `new_value`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 27, 'I1017', 'Ramesh', 'emp_name', 'Ramesh', 'sathishkumar b', 1, '2020-09-03 13:40:52', 0, NULL, 0, NULL, 1),
(2, 26, 'I1016', 'Gokulraj sankar', 'department', '0', '2', 1, '2020-09-03 23:56:32', 0, NULL, 0, NULL, 1),
(3, 7, 'H1000', 'Kayal', 'department', '0', '6', 1, '2020-09-04 10:10:52', 0, NULL, 0, NULL, 1),
(4, 7, 'H1000', 'Kayal', 'emp_code', '', '6663', 1, '2020-09-04 10:10:52', 0, NULL, 0, NULL, 1),
(5, 7, 'H1000', 'Kayal', 'emp_code', '6663', '66663', 1, '2020-09-04 10:11:00', 0, NULL, 0, NULL, 1),
(6, 8, 'I1000', 'Kayalvizhi sambantham', 'department', '0', '1', 1, '2020-09-04 10:11:40', 0, NULL, 0, NULL, 1),
(7, 8, 'I1000', 'Kayalvizhi sambantham', 'emp_code', '', '66663', 1, '2020-09-04 10:11:40', 0, NULL, 0, NULL, 1),
(8, 9, 'I1001', 'Banupriya', 'department', '0', '1', 1, '2020-09-04 10:11:58', 0, NULL, 0, NULL, 1),
(9, 9, 'I1001', 'Banupriya', 'emp_code', '', '5152', 1, '2020-09-04 10:11:58', 0, NULL, 0, NULL, 1),
(10, 10, 'A1000', 'Thiyaghu', 'emp_name', 'Thiyaghu', 'Thiyagharajan', 1, '2020-09-04 10:13:09', 0, NULL, 0, NULL, 1),
(11, 10, 'A1000', 'Thiyaghu', 'department', '0', '3', 1, '2020-09-04 10:13:09', 0, NULL, 0, NULL, 1),
(12, 10, 'A1000', 'Thiyaghu', 'emp_code', '', '5551', 1, '2020-09-04 10:13:09', 0, NULL, 0, NULL, 1),
(13, 11, 'I1002', 'Karthika L', 'department', '0', '1', 1, '2020-09-04 10:13:30', 0, NULL, 0, NULL, 1),
(14, 11, 'I1002', 'Karthika L', 'emp_code', '', '5155', 1, '2020-09-04 10:13:30', 0, NULL, 0, NULL, 1),
(15, 13, 'I1003', 'Muthuraj R', 'department', '0', '1', 1, '2020-09-04 10:13:50', 0, NULL, 0, NULL, 1),
(16, 13, 'I1003', 'Muthuraj R', 'emp_code', '', '5159', 1, '2020-09-04 10:13:50', 0, NULL, 0, NULL, 1),
(17, 14, 'I1004', 'Priyanka Jenit T', 'department', '0', '1', 1, '2020-09-04 10:14:02', 0, NULL, 0, NULL, 1),
(18, 14, 'I1004', 'Priyanka Jenit T', 'emp_code', '', '5198', 1, '2020-09-04 10:14:02', 0, NULL, 0, NULL, 1),
(19, 15, 'I1005', 'Saravanan K', 'department', '0', '5', 1, '2020-09-04 10:14:21', 0, NULL, 0, NULL, 1),
(20, 15, 'I1005', 'Saravanan K', 'emp_code', '', '5153', 1, '2020-09-04 10:14:21', 0, NULL, 0, NULL, 1),
(21, 16, 'I1006', 'Thiyagarajan', 'department', '0', '5', 1, '2020-09-04 10:14:32', 0, NULL, 0, NULL, 1),
(22, 16, 'I1006', 'Thiyagarajan', 'emp_code', '', '5174', 1, '2020-09-04 10:14:32', 0, NULL, 0, NULL, 1),
(23, 17, 'I1007', 'Ramesh Kumar R', 'department', '0', '5', 1, '2020-09-04 10:14:45', 0, NULL, 0, NULL, 1),
(24, 17, 'I1007', 'Ramesh Kumar R', 'emp_code', '', '5206', 1, '2020-09-04 10:14:45', 0, NULL, 0, NULL, 1),
(25, 18, 'I1008', 'Sriram R', 'department', '0', '5', 1, '2020-09-04 10:15:01', 0, NULL, 0, NULL, 1),
(26, 18, 'I1008', 'Sriram R', 'emp_code', '', '5161', 1, '2020-09-04 10:15:01', 0, NULL, 0, NULL, 1),
(27, 19, 'I1009', 'Kannan.S', 'department', '0', '5', 1, '2020-09-04 10:15:16', 0, NULL, 0, NULL, 1),
(28, 19, 'I1009', 'Kannan.S', 'emp_code', '', '5266', 1, '2020-09-04 10:15:16', 0, NULL, 0, NULL, 1),
(29, 20, 'I1010', 'Srikanth S', 'department', '0', '5', 1, '2020-09-04 10:15:32', 0, NULL, 0, NULL, 1),
(30, 20, 'I1010', 'Srikanth S', 'emp_code', '', '5392', 1, '2020-09-04 10:15:32', 0, NULL, 0, NULL, 1),
(31, 21, 'I1011', 'Dhivya', 'department', '0', '1', 1, '2020-09-04 10:15:44', 0, NULL, 0, NULL, 1),
(32, 22, 'I1012', 'Danial Balaji L', 'department', '0', '5', 1, '2020-09-04 10:16:00', 0, NULL, 0, NULL, 1),
(33, 22, 'I1012', 'Danial Balaji L', 'emp_code', '', '5157', 1, '2020-09-04 10:16:00', 0, NULL, 0, NULL, 1),
(34, 24, 'I1014', 'Suthagar T', 'department', '0', '5', 1, '2020-09-04 10:16:23', 0, NULL, 0, NULL, 1),
(35, 24, 'I1014', 'Suthagar T', 'emp_code', '', '5156', 1, '2020-09-04 10:16:23', 0, NULL, 0, NULL, 1),
(36, 25, 'I1015', 'Nirmal Kumar', 'department', '0', '3', 1, '2020-09-04 10:16:41', 0, NULL, 0, NULL, 1),
(37, 25, 'I1015', 'Nirmal Kumar', 'emp_code', '', '5565', 1, '2020-09-04 10:16:41', 0, NULL, 0, NULL, 1),
(38, 26, 'I1016', 'Gokulraj sankar', 'emp_code', '', '6161', 1, '2020-09-04 10:17:00', 0, NULL, 0, NULL, 1),
(39, 27, 'I1017', 'sathishkumar b', 'department', '0', '2', 1, '2020-09-04 10:17:14', 0, NULL, 0, NULL, 1),
(40, 27, 'I1017', 'sathishkumar b', 'emp_code', '', '6163', 1, '2020-09-04 10:17:14', 0, NULL, 0, NULL, 1),
(41, 28, 'I1018', 'Sathish', 'emp_name', 'Sathish', 'Jagufer sathik', 1, '2020-09-04 10:17:52', 0, NULL, 0, NULL, 1),
(42, 28, 'I1018', 'Sathish', 'emp_code', '', '6166', 1, '2020-09-04 10:17:52', 0, NULL, 0, NULL, 1),
(43, 8, 'I1000', 'Kayalvizhi sambantham', 'department', '1', '6', 1, '2020-09-04 12:55:00', 0, NULL, 0, NULL, 1),
(44, 12, 'C1000', 'Thinkfinity', 'department', '0', '6', 1, '2020-09-04 16:25:28', 0, NULL, 0, NULL, 1),
(45, 48, 'H1001', 'CAFSJOBS', 'role', '3', '4', 1, '2020-09-04 16:32:06', 0, NULL, 0, NULL, 1),
(46, 48, 'H1001', 'CAFSJOBS', 'consultancy', '', '1', 1, '2020-09-04 16:32:06', 0, NULL, 0, NULL, 1),
(47, 48, 'H1001', 'CAFSJOBS', 'employee_code', 'H1001', 'C1003', 1, '2020-09-04 16:32:06', 0, NULL, 0, NULL, 1),
(48, 27, 'I1017', 'sathishkumar b', 'emp_name', 'sathishkumar b', 'Sathishkumar B', 1, '2020-09-08 18:22:06', 0, NULL, 0, NULL, 1),
(49, 38, 'I1028', 'Gowshick M', 'department', '5', '1', 1, '2020-09-14 11:48:55', 0, NULL, 0, NULL, 1),
(50, 54, 'I1038', 'Gokulraj', 'user_right', '3', '5', 1, '2020-09-23 12:27:09', 0, NULL, 0, NULL, 1),
(51, 9, 'I1001', 'Banupriya', 'emp_name', 'Banupriya', 'yet to assign', 1, '2020-09-26 10:08:31', 0, NULL, 0, NULL, 1),
(52, 26, 'I1016', 'Gokulraj sankar', 'emp_name', 'Gokulraj sankar', 'test GS', 1, '2020-09-29 13:05:24', 0, NULL, 0, NULL, 1),
(53, 57, 'I1040', 'Syed Abthali N', 'date_of_birth', '2020-10-20', '1997-10-02', 7, '2020-10-20 15:26:28', 0, NULL, 0, NULL, 1),
(54, 57, 'I1040', 'Syed Abthali N', 'emp_age', '0', '23', 7, '2020-10-20 15:26:28', 0, NULL, 0, NULL, 1),
(55, 38, 'I1028', 'Gowshick M', 'department', '1', '5', 7, '2020-11-19 14:55:13', 0, NULL, 0, NULL, 1),
(56, 62, 'C1006', 'Zenfy', 'user_right', '3', '4', 7, '2020-12-02 17:34:10', 0, NULL, 0, NULL, 1),
(57, 8, 'I1000', 'Kayalvizhi sambantham', 'employee_code', 'I1000', 'I1042', 1, '2020-12-07 15:33:05', 0, NULL, 0, NULL, 1),
(58, 8, 'I1000', 'Kayalvizhi sambantham', 'employee_code', 'I1000', 'I1042', 1, '2020-12-07 16:10:08', 0, NULL, 0, NULL, 1),
(59, 7, 'H1000', 'Kayal', 'employee_code', 'H1000', 'H1006', 1, '2020-12-11 12:27:29', 0, NULL, 0, NULL, 1),
(60, 58, 'H1004', 'Hr Test', 'emp_name', 'Hr Test', 'Jennifer', 1, '2020-12-15 10:40:28', 0, NULL, 0, NULL, 1),
(61, 58, 'H1004', 'Jennifer', 'emp_code', '5555', '77771', 1, '2020-12-15 10:40:58', 0, NULL, 0, NULL, 1),
(62, 45, 'I1035', 'Suresh Kumar CA', 'emp_age', '36', '37', 1, '2020-12-18 10:50:02', 0, NULL, 0, NULL, 1),
(63, 64, 'H1006', 'Sabeha', 'emp_code', 'J77772', '77772', 7, '2020-12-18 11:19:52', 0, NULL, 0, NULL, 1),
(64, 65, 'H1007', 'Seethapathi', 'emp_code', 'J77773', '77773', 7, '2020-12-18 11:20:05', 0, NULL, 0, NULL, 1),
(65, 47, 'C1002', 'VITEZ Solutions', 'user_right', '3', '4', 1, '2020-12-22 10:41:31', 0, NULL, 0, NULL, 1),
(66, 70, 'C1008', 'MRTS', 'user_right', '3', '4', 7, '2021-03-17 12:39:35', 0, NULL, 0, NULL, 1),
(67, 54, 'I1038', 'Gokulraj', 'department', '6', '2', 1, '2021-04-16 10:00:15', 0, NULL, 0, NULL, 1),
(68, 73, 'I1047', 'Dhanalakshmi', 'department', '10', '1', 60, '2021-08-10 19:33:54', 0, NULL, 0, NULL, 1),
(69, 74, 'I1048', 'Sidhivinayagam', 'department', '10', '1', 7, '2021-09-13 16:20:08', 0, NULL, 0, NULL, 1),
(70, 74, 'I1048', 'Sidhivinayagam', 'emp_name', 'Sidhivinayagam', 'Sithy vinayagam', 7, '2021-09-13 17:30:26', 0, NULL, 0, NULL, 1),
(71, 52, 'H1002', 'Banupriya', 'emp_name', 'Banupriya', 'Banu', 7, '2021-09-13 17:31:20', 0, NULL, 0, NULL, 1),
(72, 83, 'I1051', 'Jennifer', 'emp_name', 'Jennifer', 'Jennifer Int', 60, '2022-01-15 10:28:06', 0, NULL, 0, NULL, 1),
(73, 83, 'I1051', 'Jennifer', 'emp_code', '', '77771', 60, '2022-01-15 10:28:06', 0, NULL, 0, NULL, 1),
(74, 84, 'H1009', 'Jagapathy Babu', 'emp_name', 'Jagapathy Babu', 'Jagapathi Babu', 60, '2022-01-19 14:44:09', 0, NULL, 0, NULL, 1),
(75, 83, 'I1051', 'Jennifer Int', 'role', '3', '6', 60, '2022-02-11 17:46:33', 0, NULL, 0, NULL, 1),
(76, 90, 'C1015', 'MS HR', 'user_right', '3', '4', 60, '2022-04-12 11:34:15', 0, NULL, 0, NULL, 1),
(77, 100, 'I1059', 'Bhavani', 'department', '10', '1', 60, '2022-11-02 15:43:32', 0, NULL, 0, NULL, 1),
(78, 42, 'I1032', 'Sudharsan P', 'department', '1', '5', 60, '2022-11-14 18:10:40', 0, NULL, 0, NULL, 1),
(79, 42, 'I1032', 'Sudharsan P', 'emp_code', '5447', '55607', 60, '2022-11-14 18:10:40', 0, NULL, 0, NULL, 1),
(80, 46, 'C1001', 'Eminence', 'emp_code', '', 'C1001', 60, '2022-11-26 17:31:14', 0, NULL, 0, NULL, 1),
(81, 107, 'H1019', 'Priyatharisini', 'role', '3', '6', 60, '2023-06-17 18:25:38', 0, NULL, 0, NULL, 1),
(82, 107, 'H1019', 'Priyatharisini', 'emp_code', 'H1019', 'I1062', 60, '2023-06-17 18:25:38', 0, NULL, 0, NULL, 1),
(83, 107, 'H1019', 'Priyatharisini', 'employee_code', 'H1019', 'I1062', 60, '2023-06-17 18:25:38', 0, NULL, 0, NULL, 1),
(84, 107, 'H1019', 'Priyatharisini', 'user_right', '3', '5', 60, '2023-06-17 18:25:38', 0, NULL, 0, NULL, 1),
(85, 29, 'I1019', 'Gaurav Guptha', 'emp_name', 'Gaurav Guptha', 'Gaurav Gupta', 60, '2023-09-05 17:41:05', 0, NULL, 0, NULL, 1),
(86, 31, 'I1021', 'CK Gnana Kumaran', 'emp_name', 'CK Gnana Kumaran', 'C K Gnana Kumaran', 60, '2023-09-05 17:45:03', 0, NULL, 0, NULL, 1),
(87, 13, 'I1003', 'Muthuraj R', 'department', '1', '5', 60, '2023-09-11 19:21:30', 0, NULL, 0, NULL, 1),
(88, 111, 'C1018', 'Skylark', 'user_right', '3', '4', 60, '2024-02-19 15:42:31', 0, NULL, 0, NULL, 1),
(89, 139, 'I1067', 'Gana sekar', 'emp_name', 'Gana sekar', 'Gnanasekar', 60, '2024-04-20 10:57:03', 0, NULL, 0, NULL, 1),
(90, 141, 'I1069', 'Parthiban', 'emp_name', 'Parthiban', 'PRADEEPAN', 60, '2024-04-23 15:42:17', 0, NULL, 0, NULL, 1),
(91, 148, 'C1042', 'akshaya HR Solutions', 'user_right', '3', '4', 1, '2024-07-12 11:15:51', 0, NULL, 0, NULL, 1),
(92, 158, 'I1075', 'Anuja', 'user_right', '3', '5', 60, '2025-04-25 18:49:51', 0, NULL, 0, NULL, 1),
(93, 157, 'H1029', 'Anuja', 'user_right', '5', '3', 60, '2025-04-25 18:58:01', 0, NULL, 0, NULL, 1),
(94, 160, 'C1045', 'Humanities', 'emp_name', 'Humanities', 'Humanetics HR tech', 60, '2025-07-21 18:34:59', 0, NULL, 0, NULL, 1),
(95, 164, 'I1078', 'Sathyamoorthy', 'user_right', '3', '5', 60, '2025-12-11 12:46:42', 0, NULL, 0, NULL, 1),
(96, 135, 'C1035', 'creative hands HR solutions.', 'user_right', '3', '4', 60, '2025-12-12 10:03:38', 0, NULL, 0, NULL, 1),
(97, 165, 'C1046', 'Talentia HR Solutions', 'user_right', '3', '4', 60, '2025-12-12 10:07:00', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_employee_code_auto`
--

CREATE TABLE `cw_employee_code_auto` (
  `prime_employee_code_auto_id` int NOT NULL,
  `category` varchar(100) DEFAULT '',
  `prefix` varchar(100) DEFAULT '',
  `start_value` varchar(100) DEFAULT '',
  `code_type` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_employee_code_auto`
--

INSERT INTO `cw_employee_code_auto` (`prime_employee_code_auto_id`, `category`, `prefix`, `start_value`, `code_type`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, '3', 'H', '1000', '1', 1, '2020-02-10 10:32:16', 1, '2020-09-02 06:44:25', 0, NULL, 1),
(2, '4', 'C', '1000', '1', 1, '2020-09-01 05:36:06', 1, '2020-09-01 05:36:53', 0, NULL, 1),
(3, '2', 'A', '1000', '1', 1, '2020-09-01 05:37:15', 0, NULL, 0, NULL, 1),
(4, '6', 'I', '1000', '1', 1, '2020-09-01 05:49:09', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_employee_permission`
--

CREATE TABLE `cw_employee_permission` (
  `prime_employee_permission_id` int NOT NULL,
  `role` varchar(100) DEFAULT '',
  `permission_id` varchar(255) DEFAULT NULL,
  `grants_menu_id` int NOT NULL DEFAULT '0',
  `grants_sub_menu_id` int NOT NULL DEFAULT '0',
  `access_add` int NOT NULL DEFAULT '0',
  `access_update` int NOT NULL DEFAULT '0',
  `access_delete` int NOT NULL DEFAULT '0',
  `access_search` int NOT NULL DEFAULT '0',
  `access_export` int NOT NULL DEFAULT '0',
  `access_import` int NOT NULL DEFAULT '0',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_employee_permission`
--

INSERT INTO `cw_employee_permission` (`prime_employee_permission_id`, `role`, `permission_id`, `grants_menu_id`, `grants_sub_menu_id`, `access_add`, `access_update`, `access_delete`, `access_search`, `access_export`, `access_import`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6, '2', 'candidate_tracker', 7, 9, 0, 1, 0, 1, 0, 0, 0, NULL, 0, NULL, 0, NULL, 1),
(11, '3', 'candidate_tracker', 7, 9, 1, 1, 1, 1, 1, 0, 0, NULL, 0, NULL, 0, NULL, 1),
(12, '3', 'password_change', 5, 20, 1, 1, 1, 1, 1, 1, 0, NULL, 0, NULL, 0, NULL, 1),
(13, '3', 'report', 10, 0, 1, 1, 1, 1, 1, 1, 0, NULL, 0, NULL, 0, NULL, 1),
(17, '4', 'candidate_tracker', 7, 9, 0, 0, 0, 1, 0, 0, 0, NULL, 0, NULL, 0, NULL, 1),
(18, '4', 'password_change', 5, 20, 1, 1, 1, 1, 1, 1, 0, NULL, 0, NULL, 0, NULL, 1),
(30, '5', 'candidate_tracker', 7, 9, 0, 0, 0, 1, 0, 0, 0, NULL, 0, NULL, 0, NULL, 1),
(31, '5', 'password_change', 5, 20, 1, 1, 1, 1, 1, 1, 0, NULL, 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_file_merge_log`
--

CREATE TABLE `cw_file_merge_log` (
  `prime_file_merge_log_id` int NOT NULL,
  `module_id` varchar(100) DEFAULT NULL,
  `module_name` varchar(100) DEFAULT NULL,
  `module_type` varchar(100) DEFAULT NULL,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_form_bind_input`
--

CREATE TABLE `cw_form_bind_input` (
  `prime_input_cond_for_id` int NOT NULL,
  `input_cond_id` int DEFAULT '0',
  `input_cond_module_id` varchar(100) DEFAULT NULL,
  `line_input_bind_to` tinyblob,
  `line_input_bind_table` tinyblob,
  `line_input_bind_col` blob,
  `cond_order` int NOT NULL DEFAULT '0',
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_form_bind_input`
--

INSERT INTO `cw_form_bind_input` (`prime_input_cond_for_id`, `input_cond_id`, `input_cond_module_id`, `line_input_bind_to`, `line_input_bind_table`, `line_input_bind_col`, `cond_order`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 1, 'employees', 0x636f6e6669726d6174696f6e5f64617465, '', 0x24636f6e6669726d5f706572696f64203d20212b2040636f6e6669726d6174696f6e5f706572696f6440206d6f6e746873213b090a2473746172745f64617465203d206e6577204461746554696d652840646174655f6f665f6a6f696e696e6740293b0a24637573746f6d5f64617465203d202473746172745f646174652d3e6d6f64696679282124636f6e6669726d5f706572696f6421293b0a24637573746f6d5f64617465203d2024637573746f6d5f646174652d3e666f726d61742821642d6d2d5921293b0a72657475726e2024637573746f6d5f646174653b, 0, 1, '2019-03-14 05:26:19', 1, '2019-12-02 13:10:26', NULL, NULL, 1),
(2, 2, 'employees', 0x7265746972656d656e745f64617465, '', 0x24726574656972655f706572696f64203d20212b20407265746972656d656e745f796561727340207965617273213b090a2473746172745f64617465203d206e6577204461746554696d652840646174655f6f665f626972746840293b0a24637573746f6d5f64617465203d202473746172745f646174652d3e6d6f64696679282124726574656972655f706572696f6421293b0a24637573746f6d5f64617465203d2024637573746f6d5f646174652d3e666f726d61742821642d6d2d5921293b0a72657475726e2024637573746f6d5f646174653b, 0, 1, '2019-03-14 05:28:44', NULL, NULL, NULL, NULL, 1),
(3, 3, 'employees', 0x656d705f616765, '', 0x24646174655f31203d206e6577204461746554696d652840646174655f6f665f626972746840293b0a24646174655f32203d206e6577204461746554696d652864617465287e592d6d2d647e2920293b0a24646966666572203d2024646174655f322d3e646966662824646174655f31293b0a24616765202020203d202028737472696e672924646966666572202d3e793b0a72657475726e20246167653b, 0, 1, '2019-06-01 12:30:11', NULL, NULL, NULL, NULL, 1),
(4, 4, 'candidate_tracker', 0x616765, '', 0x24646174655f31203d206e6577204461746554696d652840646174655f6f665f626972746840293b0a24646174655f32203d206e6577204461746554696d652864617465287e592d6d2d647e2920293b0a24646966666572203d2024646174655f322d3e646966662824646174655f31293b0a24616765202020203d202028737472696e672924646966666572202d3e793b0a72657475726e20246167653b, 1, 1, '2020-08-26 05:10:03', NULL, NULL, NULL, NULL, 1),
(5, 5, 'candidate_tracker', 0x6475726174696f6e, '', 0x24646174655f31203d206e6577206461746574696d6528406a6f696e65645f6461746540293b0a24646174655f32203d206e6577206461746574696d65284072656c697665645f6461746540293b0a24646966666572203d2024646174655f322d3e646966662824646174655f31293b0a24796561722020203d202028737472696e672924646966666572202d3e793b0a246d6f6e7468203d202028737472696e672924646966666572202d3e6d3b0a72657475726e2024796561722e2120796561727320212e246d6f6e74682e21206d6f6e746873213b, 2, 1, '2020-08-31 07:06:28', 1, '2020-09-01 06:12:52', NULL, NULL, 1),
(6, 6, 'candidate_tracker', 0x6475726174696f6e, '', 0x24646174655f31203d206e6577206461746574696d6528406a6f696e65645f6461746540293b0a24646174655f32203d206e6577206461746574696d652864617465287e792d6d2d647e2920293b0a24646966666572203d2024646174655f322d3e646966662824646174655f31293b0a24796561722020203d202028737472696e672924646966666572202d3e793b0a246d6f6e7468203d202028737472696e672924646966666572202d3e6d3b0a72657475726e2024796561722e2120796561727320212e246d6f6e74682e21206d6f6e746873213b, 3, 1, '2020-09-01 06:13:46', NULL, NULL, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_form_condition_formula`
--

CREATE TABLE `cw_form_condition_formula` (
  `prime_cond_id` int NOT NULL,
  `cond_module_id` varchar(100) DEFAULT NULL,
  `condition_label_name` varchar(100) DEFAULT NULL,
  `condition_type` int DEFAULT '0',
  `condition_for` text,
  `condition_check_form` blob,
  `condition_bind_to` blob,
  `condition_table` text,
  `is_drop_down` int DEFAULT '0',
  `cond_drop_down` varchar(100) DEFAULT NULL,
  `tab_sort` int DEFAULT NULL,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_form_condition_formula`
--

INSERT INTO `cw_form_condition_formula` (`prime_cond_id`, `cond_module_id`, `condition_label_name`, `condition_type`, `condition_for`, `condition_check_form`, `condition_bind_to`, `condition_table`, `is_drop_down`, `cond_drop_down`, `tab_sort`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'employees', 'confirmation date', 2, '1,2,3,4,5,6', 0x646174655f6f665f6a6f696e696e672c636f6e6669726d6174696f6e5f706572696f64, 0x636f6e6669726d6174696f6e5f64617465, '', 0, '', 1, 1, '2019-03-14 04:54:23', NULL, NULL, NULL, NULL, 1),
(2, 'employees', 'retirement age', 2, '1,2,3,4,5,6', 0x646174655f6f665f62697274682c7265746972656d656e745f7965617273, 0x7265746972656d656e745f64617465, '', 0, '', 2, 1, '2019-03-14 04:57:57', NULL, NULL, NULL, NULL, 1),
(3, 'employees', 'age calculation', 2, '1,2,3,4,5,6', 0x646174655f6f665f6269727468, 0x656d705f616765, '', 0, '', 3, 1, '2019-06-01 12:27:30', 1, '2019-12-02 13:10:14', NULL, NULL, 1),
(4, 'candidate_tracker', 'age calculation', 2, '1,2,3,4,5,6', 0x646174655f6f665f6269727468, 0x616765, '', 0, '', 1, 1, '2020-08-26 17:08:53', NULL, NULL, NULL, NULL, 1),
(5, 'candidate_tracker', 'work duration', 2, '1,2,3,4,5,6', 0x6a6f696e65645f646174652c72656c697665645f64617465, 0x6475726174696f6e, '', 0, '', 3, 1, '2020-08-31 19:05:24', NULL, NULL, NULL, NULL, 1),
(6, 'candidate_tracker', 'work duration with joined date', 2, '1,2,3,4,5,6', 0x6a6f696e65645f64617465, 0x6475726174696f6e, '', 0, '', 3, 1, '2020-09-01 18:13:22', NULL, NULL, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_form_for_input`
--

CREATE TABLE `cw_form_for_input` (
  `prime_for_input_id` int NOT NULL,
  `input_for_cond_id` int DEFAULT '0',
  `input_for_cond_module_id` varchar(100) DEFAULT NULL,
  `line_input_for` tinyblob,
  `line_input_for_table` tinyblob,
  `line_input_for_col` tinyblob,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_form_setting`
--

CREATE TABLE `cw_form_setting` (
  `prime_form_id` int NOT NULL,
  `prime_module_id` varchar(100) DEFAULT NULL,
  `input_view_type` int DEFAULT '0',
  `input_for` int DEFAULT '0',
  `field_type` text,
  `label_name` text,
  `view_name` varchar(100) DEFAULT NULL,
  `short_name` varchar(255) DEFAULT NULL,
  `text_type` int DEFAULT NULL,
  `field_length` int DEFAULT NULL,
  `field_decimals` int DEFAULT NULL,
  `pick_list_type` int DEFAULT '0',
  `pick_list` blob,
  `pick_table` varchar(100) DEFAULT NULL,
  `auto_prime_id` varchar(100) DEFAULT NULL,
  `auto_dispaly_value` varchar(100) DEFAULT NULL,
  `pick_list_import` int DEFAULT NULL,
  `field_isdefault` int DEFAULT NULL,
  `default_value` text,
  `file_type` text,
  `upload_extension` text,
  `mandatory_field` int DEFAULT NULL,
  `unique_field` text,
  `field_for` text,
  `field_show` int DEFAULT '1',
  `field_sort` int DEFAULT '0',
  `table_show` int DEFAULT '0',
  `table_sort` int DEFAULT '0',
  `monthly_input_sort` int NOT NULL DEFAULT '0',
  `payroll_sort` int DEFAULT '0',
  `search_show` int DEFAULT '0',
  `transaction_type` int DEFAULT NULL,
  `gross_check` int DEFAULT '0',
  `taxable_check` int DEFAULT '0',
  `earn_month_check` int DEFAULT '0',
  `earn_payroll_check` int NOT NULL DEFAULT '0',
  `ded_payroll_check` int DEFAULT '0',
  `benefit_check` int DEFAULT '0',
  `increment_check` int DEFAULT '0',
  `arrear_pf_check` int DEFAULT '0',
  `fandf_check` int DEFAULT '0',
  `deduction_check` int DEFAULT '0',
  `deduction_month_check` int DEFAULT '0',
  `loan_check` int DEFAULT '0',
  `uniform_check` int DEFAULT '0',
  `edit_read` int DEFAULT '0',
  `picklist_data` int NOT NULL DEFAULT '0',
  `duplicate_data` int NOT NULL DEFAULT '0',
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_form_setting`
--

INSERT INTO `cw_form_setting` (`prime_form_id`, `prime_module_id`, `input_view_type`, `input_for`, `field_type`, `label_name`, `view_name`, `short_name`, `text_type`, `field_length`, `field_decimals`, `pick_list_type`, `pick_list`, `pick_table`, `auto_prime_id`, `auto_dispaly_value`, `pick_list_import`, `field_isdefault`, `default_value`, `file_type`, `upload_extension`, `mandatory_field`, `unique_field`, `field_for`, `field_show`, `field_sort`, `table_show`, `table_sort`, `monthly_input_sort`, `payroll_sort`, `search_show`, `transaction_type`, `gross_check`, `taxable_check`, `earn_month_check`, `earn_payroll_check`, `ded_payroll_check`, `benefit_check`, `increment_check`, `arrear_pf_check`, `fandf_check`, `deduction_check`, `deduction_month_check`, `loan_check`, `uniform_check`, `edit_read`, `picklist_data`, `duplicate_data`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'employees', 2, 1, '5', 'role', 'Category', '', 0, 0, 0, 1, 0x7072696d655f63617465676f72795f69642c63617465676f72795f6e616d65, 'cw_category', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 10, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2018-12-04 17:45:55', 1, '2020-07-22 16:00:47', NULL, NULL, 1),
(2, 'employees', 2, 1, '1', 'employee_code', 'Interview Code', 'interview Code', 2, 100, 0, 0, NULL, NULL, NULL, NULL, 0, 1, '', '', '', 1, '1', '1,2,3,4,5,6', 1, 12, 1, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, '2018-12-05 16:58:11', 1, '2020-09-03 23:30:02', NULL, NULL, 1),
(3, 'employees', 2, 1, '1', 'emp_name', 'Employee Name', 'Employee Name', 2, 100, 0, 0, NULL, NULL, NULL, NULL, 0, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 1, 1, 4, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-01-10 10:23:50', 1, '2020-12-02 15:29:50', NULL, NULL, 1),
(4, 'country', 1, 2, '1', 'country_name', 'Country Name', NULL, NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2018-12-22 15:31:05', 1, '2019-03-06 19:47:12', NULL, NULL, 1),
(5, 'state', 1, 3, '1', 'state_name', 'State Name', NULL, NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2018-12-22 15:33:08', NULL, NULL, NULL, NULL, 1),
(6, 'state', 1, 3, '5', 'country', 'Country', NULL, NULL, 0, 0, 1, 0x7072696d655f636f756e7472795f69642c636f756e7472795f6e616d65, 'cw_country', NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 2, 1, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2018-12-22 15:33:42', NULL, NULL, NULL, NULL, 1),
(46, 'category', 1, 12, '1', 'category_name', 'Category Name', '', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '1', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-03-07 16:08:50', NULL, NULL, NULL, NULL, 1),
(48, 'blood_group', 1, 14, '1', 'blood_group', 'Blood Group', 'Blood Group', 2, 100, 0, 0, NULL, NULL, NULL, NULL, 0, 1, '', '', NULL, 1, '1', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-03-08 22:11:30', 1, '2020-02-03 13:22:42', NULL, NULL, 1),
(49, 'branch', 1, 15, '1', 'branch', 'Branch', 'Branch', 2, 100, 0, 0, NULL, NULL, NULL, NULL, 0, 1, '', '', NULL, 1, '1', '1,2,3,4,5,6', 1, 1, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-03-08 22:13:26', 1, '2020-12-15 13:38:46', NULL, NULL, 1),
(50, 'department', 1, 16, '1', 'department', 'Department', 'Department', 2, 100, 0, 0, NULL, NULL, NULL, NULL, 0, 1, '', '', NULL, 1, '1', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-03-09 05:55:25', 1, '2020-02-03 13:26:12', NULL, NULL, 1),
(51, 'designation', 1, 17, '1', 'designation', 'Designation', 'Designation', 2, 100, 0, 0, NULL, NULL, NULL, NULL, 0, 1, '', '', NULL, 1, '1', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-03-09 05:56:27', 1, '2020-02-03 14:50:49', NULL, NULL, 1),
(52, 'education', 1, 18, '1', 'education', 'Education', 'Education', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-03-09 05:57:19', NULL, NULL, NULL, NULL, 1),
(67, 'employees', 2, 1, '5', 'department', 'Department', 'Department', 0, 0, 0, 1, 0x7072696d655f6465706172746d656e745f69642c6465706172746d656e74, 'cw_department', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 4, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-03-13 05:37:35', 1, '2020-09-03 18:11:39', NULL, NULL, 1),
(68, 'employees', 2, 1, '5', 'designation', 'Designation', 'Designation', 0, 0, 0, 1, 0x7072696d655f64657369676e6174696f6e5f69642c64657369676e6174696f6e, 'cw_designation', NULL, NULL, 2, 1, '0', '', '', 0, '0', '1,2,3,4,5,6', 0, 5, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-03-13 05:38:15', 1, '2020-08-26 16:16:38', NULL, NULL, 1),
(69, 'gender', 1, 42, '1', 'gender', 'Gender', 'Gender', 2, 100, 0, 0, NULL, NULL, NULL, NULL, 0, 1, '', '', NULL, 1, '1', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-03-13 05:41:53', 1, '2020-02-03 15:15:50', NULL, NULL, 1),
(70, 'employees', 2, 1, '5', 'gender', 'Gender', 'Gender', 0, 0, 0, 1, 0x7072696d655f67656e6465725f69642c67656e646572, 'cw_gender', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-03-13 05:45:09', 1, '2020-07-22 16:00:47', NULL, NULL, 1),
(74, 'employees', 2, 1, '4', 'date_of_birth', 'Date Of Birth', 'Date of Birth', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 0, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 7, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-03-13 05:59:49', 1, '2020-07-22 16:00:47', NULL, NULL, 1),
(328, 'employees', 2, 1, '3', 'emp_age', 'Age', 'Age', NULL, 10, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '0', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 8, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-04-08 04:15:56', 1, '2020-07-22 16:00:47', NULL, NULL, 1),
(390, 'employee_code_auto', 1, 67, '5', 'category', 'Category', '', NULL, 0, 0, 1, 0x7072696d655f63617465676f72795f69642c63617465676f72795f6e616d65, 'cw_category', NULL, NULL, NULL, 1, '', '', NULL, 0, '1', '1,2,3,4,5,6', 1, 2, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-05-16 20:50:33', 1, '2019-06-01 16:59:13', NULL, NULL, 1),
(391, 'employee_code_auto', 1, 67, '1', 'prefix', 'Prefix', '', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 3, 1, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-05-16 20:51:31', 1, '2019-06-01 14:35:10', NULL, NULL, 1),
(392, 'employee_code_auto', 1, 67, '1', 'start_value', 'Start Value', '', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 4, 1, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-05-16 20:52:12', 1, '2019-06-01 16:59:19', NULL, NULL, 1),
(432, 'employee_code_auto', 1, 67, '5', 'code_type', 'Code Type', 'Code Type', NULL, 0, 0, 2, 0x4175746f2c4d616e75616c, 'cw_zct_1', NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-06-01 14:34:21', 1, '2019-06-01 14:35:10', NULL, NULL, 1),
(637, 'company_information', 2, 100, '1', 'company_name', 'Company Name', 'Company Name', NULL, 255, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 13:32:58', 1, '2019-10-31 14:44:24', NULL, NULL, 1),
(638, 'company_information', 2, 100, '1', 'company_short_name', 'Company Short Name', 'Company Short Name', NULL, 255, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 13:34:02', 1, '2019-10-31 14:44:27', NULL, NULL, 1),
(639, 'company_information', 2, 100, '1', 'mobile_number', 'Mobile Number', 'Mobile Number', 2, 10, 0, 0, NULL, NULL, NULL, NULL, 0, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 13:37:59', 1, '2020-02-03 16:17:39', NULL, NULL, 1),
(640, 'company_information', 2, 100, '1', 'alt_mobile_number', 'Alt Mobile Number', 'Alt Mobile Number', NULL, 255, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 13:38:40', 1, '2019-10-31 14:44:35', NULL, NULL, 1),
(641, 'company_information', 2, 100, '1', 'land_line', 'Land Line', 'Land Line', NULL, 255, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 13:39:11', 1, '2019-10-31 14:44:39', NULL, NULL, 1),
(642, 'company_information', 2, 100, '1', 'email', 'Email', 'Email', NULL, 255, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 13:39:45', 1, '2019-10-31 14:44:44', NULL, NULL, 1),
(643, 'company_information', 2, 100, '1', 'fax', 'Fax', 'Fax', NULL, 255, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 13:40:18', 1, '2019-10-31 14:44:49', NULL, NULL, 1),
(644, 'company_information', 2, 100, '8', 'address', 'Address', 'Address', NULL, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 13:41:01', 1, '2019-10-31 14:44:55', NULL, NULL, 1),
(645, 'company_information', 2, 100, '1', 'city', 'City', 'City', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 13:42:09', 1, '2019-10-31 14:45:01', NULL, NULL, 1),
(646, 'company_information', 2, 100, '1', 'state', 'State', 'State', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 13:43:21', 1, '2019-10-31 14:45:09', NULL, NULL, 1),
(647, 'company_information', 2, 100, '1', 'country', 'Country', 'Country', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 14:29:04', 1, '2019-10-31 14:45:16', NULL, NULL, 1),
(648, 'company_information', 2, 100, '1', 'website', 'Website', 'Website', NULL, 255, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 14:29:43', 1, '2019-10-31 14:45:23', NULL, NULL, 1),
(649, 'company_information', 2, 100, '1', 'gstin', 'GSTIN', 'GSTIN', NULL, 50, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 14:30:25', 1, '2019-10-31 14:45:30', NULL, NULL, 1),
(650, 'company_information', 2, 100, '1', 'pan', 'PAN', 'PAN', NULL, 20, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 14:30:58', 1, '2019-10-31 14:45:38', NULL, NULL, 1),
(651, 'company_information', 3, 101, '8', 'registered_address', 'Registered Address', 'Registered Address', NULL, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 14:37:42', NULL, NULL, NULL, NULL, 1),
(652, 'company_information', 3, 101, '1', 'registered_city', 'Registered City', 'Registered City', NULL, 255, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 14:38:36', NULL, NULL, NULL, NULL, 1),
(653, 'company_information', 3, 101, '1', 'registered_state', 'Registered State', 'Registered State', NULL, 255, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 14:39:19', NULL, NULL, NULL, NULL, 1),
(654, 'company_information', 3, 101, '1', 'registered_country', 'Registered Country', 'Registered Country', NULL, 255, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 14:42:42', NULL, NULL, NULL, NULL, 1),
(655, 'company_information', 3, 102, '1', 'contact_name', 'Contact Name', 'Contact Name', NULL, 255, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 14:59:35', 1, '2019-10-31 15:09:43', NULL, NULL, 1),
(656, 'company_information', 3, 102, '1', 'contact_number', 'Contact Number', 'Contact Number', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 15:00:14', 1, '2019-10-31 15:09:43', NULL, NULL, 1),
(657, 'company_information', 3, 102, '5', 'contact_for', 'Contact For', 'Contact For', NULL, 0, 0, 2, 0x706179726f6c6c, 'cw_zct_2', NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 15:06:42', 1, '2019-10-31 15:09:43', NULL, NULL, 1),
(658, 'company_information', 3, 103, '5', 'print_note_for', 'Print Note For', 'Print Note For', NULL, 0, 0, 2, 0x706179726f6c6c, 'cw_zct_2', NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 15:07:34', NULL, NULL, NULL, NULL, 1),
(659, 'company_information', 3, 103, '8', 'print_note', 'Print Note', 'Print Note', NULL, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 15:08:17', NULL, NULL, NULL, NULL, 1),
(660, 'company_information', 3, 103, '5', 'print_note_status', 'Print Note Status', 'Print Note Status', NULL, 0, 0, 2, 0x4163746976652c496e616374697665, 'cw_zct_3', NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-10-31 15:09:26', NULL, NULL, NULL, NULL, 1),
(661, 'user_role', 1, 104, '1', 'role_name', 'Role Name', 'Role', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '1', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-11-14 10:35:06', NULL, NULL, NULL, NULL, 1),
(662, 'employees', 2, 1, '5', 'user_right', 'User Right', 'User Right', 0, 0, 0, 1, 0x7072696d655f757365725f726f6c655f69642c726f6c655f6e616d65, 'cw_user_role', NULL, NULL, 2, 1, '3', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 13, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-11-14 15:02:17', 1, '2020-07-22 16:00:47', NULL, NULL, 1),
(676, 'mail_configurations', 1, 109, '1', 'configuration_name', 'Configuration Name', 'configuration name', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-11-21 17:00:45', 1, '2019-11-21 17:09:24', NULL, NULL, 1),
(677, 'mail_configurations', 1, 109, '1', 'smtp_server', 'Smtp Server', 'SMTP server', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-11-21 17:02:03', 1, '2019-11-21 17:09:24', NULL, NULL, 1),
(678, 'mail_configurations', 1, 109, '1', 'sender_name', 'Sender Name', 'Sender Name', NULL, 30, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-11-21 17:02:42', 1, '2019-11-21 17:09:24', NULL, NULL, 1),
(679, 'mail_configurations', 1, 109, '8', 'bcc', 'Bcc', 'BCC', NULL, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-11-21 17:03:07', 1, '2019-11-21 17:09:24', NULL, NULL, 1),
(680, 'mail_configurations', 1, 109, '3', 'port_no', 'Port No', 'Port No', NULL, 10, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '0', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 6, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-11-21 17:03:57', 1, '2019-11-21 17:09:24', NULL, NULL, 1),
(681, 'mail_configurations', 1, 109, '1', 'mail_username', 'Sender Username', 'Sender Username', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-11-21 17:07:38', 1, '2019-11-21 17:10:04', NULL, NULL, 1),
(682, 'mail_configurations', 1, 109, '1', 'sender_email', 'Sender Email', 'Sender Email', NULL, 100, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 4, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2019-11-21 17:09:02', 1, '2019-11-21 17:09:24', NULL, NULL, 1),
(687, 'company_information', 2, 100, '10', 'company_logo', 'Company Logo', 'Company Logo', NULL, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, 1, '', 'image/*', NULL, 0, '0', '1,2,3,4,5,6', 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-01-11 12:21:47', NULL, NULL, NULL, NULL, 1),
(758, 'company_information', 2, 121, '1', 'sms_url', 'SMS Url', 'SMS Url', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-02-05 20:05:27', NULL, NULL, NULL, NULL, 1),
(759, 'company_information', 2, 121, '1', 'sms_sender_id', 'SMS Sender Id', 'SMS Sender Id', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-02-05 20:05:51', NULL, NULL, NULL, NULL, 1),
(760, 'company_information', 2, 121, '1', 'sms_username', 'SMS Username', 'SMS Username', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-02-05 20:06:11', NULL, NULL, NULL, NULL, 1),
(761, 'company_information', 2, 121, '1', 'sms_password', 'SMS Password', 'SMS Password', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', NULL, 0, '0', '1,2,3,4,5,6', 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-02-05 20:06:35', NULL, NULL, NULL, NULL, 1),
(785, 'upload_extension', 1, 126, '5', 'file_type', 'File Type', 'file type', 0, 0, 0, 2, 0x446f63756d656e742c417564696f2c496d616765, 'cw_zct_4', NULL, NULL, 2, 1, '0', '', NULL, 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-02-15 10:27:07', NULL, NULL, NULL, NULL, 1),
(786, 'upload_extension', 1, 126, '1', 'extension', 'Extension', 'extension', 1, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', NULL, 1, '1', '1,2,3,4,5,6', 1, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-02-15 10:27:45', NULL, NULL, NULL, NULL, 1),
(868, 'company_information', 2, 132, '1', 'primary_color', 'Primary Color', 'Primary Color', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-03-19 12:32:44', 1, '2020-03-19 12:33:28', NULL, NULL, 1),
(869, 'company_information', 2, 132, '1', 'secondary_color', 'Secondary Color', 'Secondary Color', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-03-19 12:33:08', NULL, NULL, NULL, NULL, 1),
(870, 'consultancy', 1, 134, '1', 'consultancy_name', 'Consultancy Name', 'consultancy name', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '1', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:44:41', NULL, NULL, NULL, NULL, 1),
(871, 'candidate_tracker', 2, 135, '1', 'candidate_name', 'Name As Per ADHAAR', 'Name as per ADHAAR', 1, 100, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:47:17', 1, '2025-01-20 16:29:43', NULL, NULL, 1),
(872, 'position', 1, 136, '1', 'position_name', 'Position Name', 'position name', 1, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '1', '1,2,3,4,5,6', 1, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:48:48', 1, '2020-09-03 18:20:53', NULL, NULL, 1),
(873, 'candidate_tracker', 2, 135, '5', 'post_applied_for', 'Post Applied For', 'Post Applied For', 0, 0, 0, 1, 0x7072696d655f706f736974696f6e5f69642c706f736974696f6e5f6e616d65, 'cw_position', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 3, 1, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:49:31', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(874, 'candidate_tracker', 2, 135, '11', 'mobile_number', 'Mobile Number', 'mobile number', 0, 10, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 4, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:50:14', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(875, 'candidate_tracker', 2, 135, '11', 'alternate_number', 'Alternate Number', 'alternate number', 0, 10, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 0, '0', '1,2,3,4,5,6', 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:50:38', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(876, 'candidate_tracker', 2, 135, '12', 'email_id', 'Email Id', 'email id', 0, 100, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:51:15', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(877, 'candidate_tracker', 2, 135, '4', 'date_of_birth', 'Date Of Birth', 'date of birth', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:51:42', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(878, 'candidate_tracker', 2, 135, '3', 'age', 'Age', 'Age', 0, 10, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:52:01', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(879, 'candidate_tracker', 2, 135, '5', 'applied_by', 'Applied By', 'applied by', 0, 0, 0, 2, 0x5265666572656e63652c436f6e73756c74616e63792c4469726563742077616c6b696e2c4164732c496e646565642c4e61756b7269, 'cw_zct_5', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 9, 1, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:53:32', 1, '2024-10-20 12:54:39', NULL, NULL, 1),
(880, 'candidate_tracker', 2, 135, '5', 'marital_status', 'Marital Status', 'Marital Status', 0, 0, 0, 2, 0x4d6172726965642c556e6d617272696564, 'cw_zct_6', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:54:14', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(881, 'candidate_tracker', 2, 135, '1', 'father_or_husband_name', 'Parent Or Spouse Name', 'Parent Or Spouse Name', 1, 100, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:54:48', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(882, 'candidate_tracker', 2, 135, '1', 'occupation', 'Occupation', 'Occupation', 1, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:55:37', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(883, 'candidate_tracker', 2, 135, '2', 'income', 'Family Income Per Month', 'Family Income Per Month', 0, 0, 2, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:55:56', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(884, 'candidate_tracker', 2, 135, '3', 'no_of_siblings', 'No Of Siblings', 'No of Siblings', 0, 10, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:56:16', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(885, 'candidate_tracker', 2, 135, '2', 'current_salary', 'Current Salary', 'Current Salary', 0, 0, 2, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:56:39', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(886, 'candidate_tracker', 2, 135, '2', 'expected_salary', 'Expected Salary', 'Expected Salary', 0, 0, 2, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:56:55', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(887, 'candidate_tracker', 2, 135, '1', 'permanent_location', 'Permanent Location', 'Permanent Location', 1, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:57:28', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(888, 'candidate_tracker', 2, 135, '1', 'current_location', 'Current Location', 'Current Location', 1, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:57:57', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(889, 'candidate_tracker', 3, 137, '5', 'standard', 'Standard', 'Standard', 0, 0, 0, 2, 0x53534c432c4853432c55472c50472c4449504c4f4d41, 'cw_zct_7', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 14:59:16', 1, '2020-08-28 12:07:52', NULL, NULL, 1),
(890, 'candidate_tracker', 3, 137, '1', 'board_university', 'Board Or University', 'Board or University', 1, 100, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:00:01', NULL, NULL, NULL, NULL, 1),
(891, 'candidate_tracker', 3, 137, '1', 'std_medium', 'Medium', 'Medium', 1, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 0, '0', '1,2,3,4,5,6', 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:02:27', 1, '2020-08-28 12:00:18', NULL, NULL, 1),
(892, 'candidate_tracker', 3, 137, '1', 'degree', 'Degree', 'Degree', 1, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 0, '0', '1,2,3,4,5,6', 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:02:50', 1, '2020-08-28 14:56:58', NULL, NULL, 1),
(893, 'candidate_tracker', 3, 137, '1', 'year_of_passing', 'Year Of Passing', 'Year of Passing', 0, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:03:19', NULL, NULL, NULL, NULL, 1),
(894, 'candidate_tracker', 3, 137, '2', 'percentage', 'Percentage', 'Percentage', 0, 0, 2, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:03:34', NULL, NULL, NULL, NULL, 1),
(895, 'candidate_tracker', 3, 138, '1', 'organization_name', 'Organization Name', 'Organization Name', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:06:03', 1, '2020-08-28 12:12:42', NULL, NULL, 1),
(896, 'candidate_tracker', 3, 138, '1', 'work_location', 'Work Location', 'Work Location', 1, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:06:20', 1, '2020-08-28 12:12:42', NULL, NULL, 1),
(897, 'candidate_tracker', 3, 138, '1', 'current_designation', 'Designation', 'Designation', 1, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:07:28', 1, '2020-08-28 12:12:42', NULL, NULL, 1),
(898, 'candidate_tracker', 3, 138, '4', 'joined_date', 'Joined Date', 'Joined Date', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:07:46', 1, '2020-08-28 12:12:42', NULL, NULL, 1),
(899, 'candidate_tracker', 3, 138, '2', 'salary_start', 'Salary Start', 'Salary Start', 0, 0, 2, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:08:05', 1, '2020-08-28 12:12:42', NULL, NULL, 1),
(900, 'candidate_tracker', 3, 138, '4', 'relived_date', 'Relived Date', 'Relived Date', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:08:32', 1, '2020-08-28 12:12:42', NULL, NULL, 1),
(901, 'candidate_tracker', 3, 138, '2', 'salary_left', 'Current Or Left Salary', 'Current or left Salary', 0, 0, 2, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:08:56', 1, '2020-08-28 12:12:42', NULL, NULL, 1),
(902, 'candidate_tracker', 2, 135, '1', 'candidate_code', 'Job Code', 'Job Code', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 0, '0', '1,2,3,4,5,6', 1, 24, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 15:13:40', 1, '2025-01-22 11:25:04', NULL, NULL, 1),
(903, 'employees', 2, 1, '5', 'consultancy', 'Consultancy', 'consultancy', 0, 0, 0, 1, 0x7072696d655f636f6e73756c74616e63795f69642c636f6e73756c74616e63795f6e616d65, 'cw_consultancy', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 10, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 16:12:50', NULL, NULL, NULL, NULL, 1),
(904, 'candidate_tracker', 2, 135, '5', 'consultancy', 'Consultancy', 'consultancy', 0, 0, 0, 1, 0x7072696d655f636f6e73756c74616e63795f69642c636f6e73756c74616e63795f6e616d65, 'cw_consultancy', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 10, 1, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-26 16:44:45', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(905, 'candidate_tracker', 2, 135, '5', 'employee_type', 'Employee Type', 'employee type', 0, 0, 0, 2, 0x467265736865722c457870657269656e636564, 'cw_zct_8', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 19, 1, 9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-27 13:35:36', 60, '2025-09-13 09:59:47', NULL, NULL, 1),
(906, 'candidate_tracker', 2, 135, '10', 'sts_resume', 'Resume Pdf Or Doc', 'Resume pdf or Doc', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '.pdf,.xls,.xlsx,.csv,.docx,.txt', 'pdf,doc,docx', 1, '0', '1,2,3,4,5,6', 1, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-27 16:17:55', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(907, 'candidate_tracker', 2, 135, '13', 'interview_date', 'Interview Date', 'interview date', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 0, '0', '1,2,3,4,5,6', 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-27 18:21:44', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(908, 'candidate_tracker', 2, 135, '4', 'date_of_available', 'WalkIn Interview Date', 'walkIn interview date', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 27, 1, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-27 18:39:54', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(909, 'candidate_tracker', 2, 135, '3', 'notice_period', 'Notice Period', 'notice period (Days)', 0, 10, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-27 19:07:05', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(910, 'candidate_tracker', 3, 138, '5', 'resigned', 'Resigned', 'resigned', 0, 0, 0, 2, 0x5965732c4e6f, 'cw_zct_9', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-28 12:09:43', 1, '2020-08-28 12:24:55', NULL, NULL, 1),
(911, 'candidate_tracker', 2, 135, '1', 'employee_code', 'Ref Employee Code', 'ref Employee Code', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-28 12:40:37', 1, '2024-06-15 19:56:59', NULL, NULL, 1),
(912, 'position', 3, 139, '8', 'question', 'Question', 'Question', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-28 18:43:57', NULL, NULL, NULL, NULL, 1),
(913, 'candidate_tracker', 2, 135, '5', 'candidate_status', 'Candidate Status', 'Candidate Status', 0, 0, 0, 1, 0x63616e6469646174655f7374617475735f69642c63616e6469646174655f737461747573, 'cw_candidate_status', NULL, NULL, 2, 1, '6', '', '', 0, '0', '1,2,3,4,5,6', 1, 32, 1, 10, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-28 23:02:32', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(914, 'candidate_tracker', 2, 135, '5', 'interviewer', 'Interviewer', 'Interviewer', 0, 0, 0, 1, 0x7072696d655f656d706c6f796565735f69642c656d705f6e616d65, 'cw_employees', NULL, NULL, 2, 1, '0', '', '', 0, '0', '1,2,3,4,5,6', 1, 33, 1, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-28 23:04:22', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(915, 'candidate_tracker', 2, 135, '4', 'date_of_joining', 'Date Of Joining', 'Date Of Joining', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 34, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-30 23:22:57', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(916, 'candidate_tracker', 2, 135, '2', 'salary_commited', 'Salary Commited', 'Salary Commited', 0, 0, 2, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 0, '0', '1,2,3,4,5,6', 1, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-30 23:23:25', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(917, 'candidate_tracker', 2, 135, '1', 'interview_time', 'Interview Time', 'Interview Time', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 0, '0', '1,2,3,4,5,6', 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-31 19:00:31', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(918, 'candidate_tracker', 3, 138, '1', 'duration', 'Duration', 'Duration', 0, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-31 19:03:39', NULL, NULL, NULL, NULL, 1),
(919, 'candidate_tracker', 2, 135, '5', 'selected_status', 'Selected Status', 'Selected Status', 0, 0, 0, 2, 0x4a6f696e65642c4e6f74204a6f696e65642c416273636f6e6465642c5465726d696e617465642c4f6666657265642c52657369676e65642c436f6e6669726d65642c52656a65637465642c59657420546f20526576696577, 'cw_zct_10', NULL, NULL, 2, 1, '0', '', '', 0, '0', '1,2,3,4,5,6', 1, 36, 1, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-31 20:49:42', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(920, 'candidate_tracker', 2, 135, '4', 'abs_or_ter_date', 'Abs Or Ter Date', 'abs or ter date', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-08-31 20:50:32', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(921, 'candidate_tracker', 2, 135, '5', 'bike', 'Bike', 'bike', 0, 0, 0, 2, 0x5965732c4e6f, 'cw_zct_11', NULL, NULL, 2, 1, '1', '', '', 1, '0', '1,2,3,4,5,6', 1, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-02 17:59:00', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(922, 'candidate_tracker', 3, 138, '8', 'reasone_for_relieving', 'Reasone For Relieving', 'reasone for relieving', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-02 19:08:36', NULL, NULL, NULL, NULL, 1),
(923, 'position', 1, 136, '5', 'department', 'Department', 'department', 0, 0, 0, 1, 0x7072696d655f6465706172746d656e745f69642c6465706172746d656e74, 'cw_department', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-03 18:20:44', 1, '2020-09-03 23:59:11', NULL, NULL, 1),
(924, 'candidate_tracker', 2, 135, '8', 'interviewer_remarks', 'Interviewer Remarks', 'interviewer remarks', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 0, '0', '1,2,3,4,5,6', 1, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-03 23:28:39', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(925, 'employees', 2, 1, '1', 'emp_code', 'Employee Code', 'Employee Code', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 0, '0', '1,2,3,4,5,6', 1, 11, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-03 23:29:35', 1, '2020-09-03 23:55:55', NULL, NULL, 1),
(926, 'candidate_tracker', 2, 135, '5', 'department', 'Department', 'department', 0, 0, 0, 1, 0x7072696d655f6465706172746d656e745f69642c6465706172746d656e74, 'cw_department', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 2, 1, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-03 23:49:32', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(927, 'candidate_tracker', 2, 135, '5', 'dob_exist', 'Exists', 'Exists', 0, 0, 0, 1, 0x7072696d655f7374617475735f6d6f64655f69642c7374617475735f6d6f64655f76616c7565, 'cw_status_mode', NULL, NULL, 2, 1, '2', '', '', 0, '0', '1,2,3,4,5,6', 1, 40, 1, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-05 11:38:11', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(928, 'location', 1, 140, '1', 'location_name', 'Location Name', 'location name', 1, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '1', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-11 22:17:17', NULL, NULL, NULL, NULL, 1),
(929, 'company', 1, 141, '1', 'company_name', 'Company Name', 'company name', 1, 100, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '1', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-11 22:20:01', NULL, NULL, NULL, NULL, 1),
(930, 'candidate_tracker', 2, 135, '5', 'company', 'Company', 'company', 0, 0, 0, 1, 0x7072696d655f636f6d70616e795f69642c636f6d70616e795f6e616d65, 'cw_company', NULL, NULL, 2, 1, '0', '', '', 0, '0', '1,2,3,4,5,6', 1, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-11 22:20:47', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(931, 'candidate_tracker', 2, 135, '5', 'company_location', 'Work Location', 'Work location', 0, 0, 0, 1, 0x7072696d655f6c6f636174696f6e5f69642c6c6f636174696f6e5f6e616d65, 'cw_location', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-11 22:22:10', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(932, 'candidate_tracker', 2, 135, '5', 'company_branch', 'Company Branch', 'company branch', 0, 0, 0, 1, 0x7072696d655f6272616e63685f69642c6272616e6368, 'cw_branch', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-11 22:22:52', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(933, 'candidate_tracker', 2, 135, '5', 'resend_mail', 'Resend Mail', 'Resend Mail', 0, 0, 0, 1, 0x7072696d655f7374617475735f6d6f64655f69642c7374617475735f6d6f64655f76616c7565, 'cw_status_mode', NULL, NULL, 2, 1, '0', '', '', 0, '0', '1,2,3,4,5,6', 1, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-16 20:13:25', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(934, 'candidate_tracker', 2, 135, '5', 'inc', 'Inc', 'inc', 0, 0, 0, 1, 0x7072696d655f7374617475735f6d6f64655f69642c7374617475735f6d6f64655f76616c7565, 'cw_status_mode', NULL, NULL, 2, 1, '1', '', '', 0, '0', '1,2,3,4,5,6', 1, 45, 1, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-09-17 18:14:27', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(935, 'time_slot', 1, 142, '1', 'time_slot', 'Time Slot', 'Time Slot', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-12-07 18:29:57', NULL, NULL, NULL, NULL, 1),
(936, 'slots', 1, 143, '5', 'time_slot', 'Time Slot', 'Time Slot', 0, 0, 0, 1, 0x7072696d655f74696d655f736c6f745f69642c74696d655f736c6f74, 'cw_time_slot', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-12-07 19:55:35', NULL, NULL, NULL, NULL, 1),
(937, 'slots', 1, 143, '3', 'candidate_count', 'Candidate Count', 'Candidate Count', 0, 10, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-12-07 19:56:06', NULL, NULL, NULL, NULL, 1),
(938, 'candidate_tracker', 2, 135, '4', 'ncd', 'NCD', 'NCD', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 46, 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-12-07 20:01:04', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(939, 'candidate_tracker', 2, 135, '5', 'interview_slot', 'Interview Time Slot', 'Interview Time Slot', 0, 0, 0, 1, 0x7072696d655f74696d655f736c6f745f69642c74696d655f736c6f74, 'cw_time_slot', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 28, 1, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-12-07 20:02:11', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(940, 'channel', 1, 144, '1', 'channel_name', 'Channel Name', 'Channel Name', 1, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-12-12 10:42:35', NULL, NULL, NULL, NULL, 1),
(941, 'candidate_tracker', 2, 135, '5', 'channel_name', 'Channel Name', 'Channel Name', 0, 0, 0, 1, 0x7072696d655f6368616e6e656c5f69642c6368616e6e656c5f6e616d65, 'cw_channel', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 12, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-12-12 10:51:36', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(942, 'candidate_tracker', 2, 135, '5', 'recruiter', 'HR Recruiter', 'HR Recruiter', 0, 0, 0, 1, 0x656d706c6f7965655f636f64652c656d705f6e616d65, 'cw_employees', NULL, NULL, 1, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 11, 1, 17, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-12-12 10:55:46', 60, '2024-06-21 13:28:37', NULL, NULL, 1),
(943, 'branch', 1, 15, '5', 'location', 'Location', 'Location', 0, 0, 0, 1, 0x7072696d655f6c6f636174696f6e5f69642c6c6f636174696f6e5f6e616d65, 'cw_location', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 2, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-12-15 13:38:22', 1, '2020-12-15 13:38:46', NULL, NULL, 1),
(944, 'mail_configurations', 1, 109, '1', 'mail_password', 'Mail Password', 'Mail Password', 2, 100, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-12-15 15:46:14', NULL, NULL, NULL, NULL, 1),
(945, 'source', 1, 145, '1', 'source_name', 'Source Name', 'Source Name', 2, 100, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2020-12-24 11:33:31', NULL, NULL, NULL, NULL, 1),
(946, 'interview_type', 1, 146, '1', 'interview_type', 'Interview Type', 'Interview Type', 1, 100, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '1', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2021-05-06 13:12:48', NULL, NULL, NULL, NULL, 1),
(947, 'candidate_tracker', 2, 135, '5', 'interview_type', 'Interview Type', 'Interview Type', 0, 0, 0, 1, 0x7072696d655f696e746572766965775f747970655f69642c696e746572766965775f74797065, 'cw_interview_type', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2021-05-06 13:23:45', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(948, 'candidate_tracker', 2, 135, '8', 'hr_remark', 'Hr Remark', 'Hr Remark', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 0, '0', '1,2,3,4,5,6', 1, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2021-09-08 14:49:57', 1, '2021-09-09 13:14:06', NULL, NULL, 1),
(949, 'candidate_tracker', 2, 135, '8', 'recruiter_remark', 'Recruiter Remark', 'Recruiter Remark', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 0, '0', '1,2,3,4,5,6', 1, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2021-09-08 14:51:50', 1, '2021-09-09 13:14:14', NULL, NULL, 1),
(950, 'candidate_tracker', 2, 135, '7', 'enroll_reason', 'Enroll Reason', 'Enroll Reason', 0, 0, 0, 2, 0x50686f746f2c49442050726f6f662c5065726d656e616e7420416464726573732050726f6f662c43757272656e7420416464726573732050726f6f662c4869676865737420456475636174696f6e2050726f6f662c41616468617220436172642050726f6f66, 'cw_zct_12', NULL, NULL, 2, 1, '0', '', '', 1, '0', '1,2,3,4,5,6', 1, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2021-09-08 15:05:42', 1, '2021-09-08 15:06:31', NULL, NULL, 1),
(951, 'manager_list', 1, 147, '1', 'employee_code', 'Employee Code', 'Employee Code', 2, 50, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '1', '1,2,3,4,5,6', 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2024-06-15 09:53:34', NULL, NULL, NULL, NULL, 1),
(952, 'manager_list', 1, 147, '1', 'manager_name', 'Manager Name', 'Manager Name', 1, 100, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 1, '0', '1,2,3,4,5,6', 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2024-06-15 09:54:05', 1, '2024-06-15 09:55:06', NULL, NULL, 1),
(953, 'candidate_tracker', 2, 135, '5', 'level_1', 'Level 1 Interviewer', 'Level 1 Interviewer', 0, 0, 0, 1, 0x656d706c6f7965655f636f64652c6d616e616765725f6e616d65, 'cw_manager_list', NULL, NULL, 2, 1, '0', '', '', 0, '0', '1,2,3,4,5,6', 1, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2024-06-15 09:57:35', 1, '2024-06-15 14:50:11', NULL, NULL, 1),
(954, 'candidate_tracker', 2, 135, '5', 'level_2', 'Level 2 Interviewer', 'Level 2 Interviewer', 0, 0, 0, 1, 0x656d706c6f7965655f636f64652c6d616e616765725f6e616d65, 'cw_manager_list', NULL, NULL, 2, 1, '0', '', '', 0, '0', '1,2,3,4,5,6', 1, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2024-06-15 10:09:44', NULL, NULL, NULL, NULL, 1),
(955, 'candidate_tracker', 2, 135, '4', 'exp_doj', 'Expected Date Of Joining', 'Expected date of Joining', 0, 0, 0, 0, NULL, NULL, NULL, NULL, 2, 1, '', '', '', 0, '0', '1,2,3,4,5,6', 1, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '2024-06-15 10:13:27', 1, '2024-06-15 11:25:40', NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_form_table_cond_for`
--

CREATE TABLE `cw_form_table_cond_for` (
  `prime_table_cond_for_id` int NOT NULL,
  `table_cond_id` int DEFAULT '0',
  `table_cond_module_id` varchar(100) DEFAULT NULL,
  `line_prime_table` varchar(100) DEFAULT NULL,
  `line_prime_col` varchar(100) DEFAULT NULL,
  `line_join_type` varchar(100) DEFAULT NULL,
  `line_join_table` varchar(100) DEFAULT NULL,
  `line_join_col` varchar(100) DEFAULT NULL,
  `line_sort` varchar(100) DEFAULT NULL,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_form_table_search`
--

CREATE TABLE `cw_form_table_search` (
  `prime_table_id` int NOT NULL,
  `query_module_id` varchar(100) DEFAULT NULL,
  `query_for` int DEFAULT NULL,
  `where_condition` tinyblob,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_form_table_search`
--

INSERT INTO `cw_form_table_search` (`prime_table_id`, `query_module_id`, `query_for`, `where_condition`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'candidate_tracker', 4, 0x616e64202863775f63616e6469646174655f747261636b65722e636f6e73756c74616e637920696e285e406c6f676765645f636f6e73756c74616e6379405e29206f722063775f63616e6469646174655f747261636b65722e7472616e735f637265617465645f627920696e285e406c6f676765645f6964405e2929, 1, '2020-08-26 04:47:12', 1, '2020-08-26 04:48:43', NULL, NULL, 1),
(2, 'candidate_tracker', 5, 0x616e642063775f63616e6469646174655f747261636b65722e696e74657276696577657220696e285e406c6f676765645f6964405e2920616e642063775f63616e6469646174655f747261636b65722e63616e6469646174655f737461747573206e6f7420696e2028332c352c3829, 1, '2020-08-30 12:43:42', 1, '2020-12-15 04:42:49', NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_form_view_setting`
--

CREATE TABLE `cw_form_view_setting` (
  `prime_form_view_id` int NOT NULL,
  `prime_view_module_id` varchar(100) DEFAULT NULL,
  `form_view_type` text,
  `form_view_type_mode` int DEFAULT NULL,
  `form_view_label_name` text,
  `form_view_heading` text,
  `form_view_sort` int DEFAULT '0',
  `form_view_show` int DEFAULT '1',
  `form_view_for` text,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_form_view_setting`
--

INSERT INTO `cw_form_view_setting` (`prime_form_view_id`, `prime_view_module_id`, `form_view_type`, `form_view_type_mode`, `form_view_label_name`, `form_view_heading`, `form_view_sort`, `form_view_show`, `form_view_for`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'employees', '2', 0, 'employee_information', 'Employee Details', 1, 1, '1,2,3,4,5,6', 1, '2018-12-04 17:44:08', 1, '2020-07-22 16:52:23', NULL, NULL, 1),
(2, 'country', '1', 0, 'country_name', 'Country Name', 1, 1, '1,2,3,4,5,6', 1, '2018-12-22 15:30:38', NULL, NULL, NULL, NULL, 1),
(3, 'state', '1', 0, 'state_information', 'State Information', 1, 1, '1,2,3,4,5,6', 1, '2018-12-22 15:32:40', NULL, NULL, NULL, NULL, 1),
(12, 'category', '1', 0, 'category_information', 'Category Information', 1, 1, '1,2,3,4,5,6', 1, '2019-03-07 16:07:55', 1, '2019-08-26 14:51:04', NULL, NULL, 1),
(14, 'blood_group', '1', 0, 'blood_group', 'Blood Group', 1, 1, '1,2,3,4,5,6', 1, '2019-03-08 22:02:07', NULL, NULL, NULL, NULL, 1),
(15, 'branch', '1', 0, 'branch', 'Branch', 1, 1, '1,2,3,4,5,6', 1, '2019-03-08 22:12:53', NULL, NULL, NULL, NULL, 1),
(16, 'department', '1', 0, 'department', 'Department', 1, 1, '1,2,3,4,5,6', 1, '2019-03-09 05:52:55', NULL, NULL, NULL, NULL, 1),
(17, 'designation', '1', 0, 'designation', 'Designation', 1, 1, '1,2,3,4,5,6', 1, '2019-03-09 05:56:00', NULL, NULL, NULL, NULL, 1),
(42, 'gender', '1', 0, 'gender', 'Gender', 1, 1, '1,2,3,4,5,6', 1, '2019-03-13 05:41:26', NULL, NULL, NULL, NULL, 1),
(67, 'employee_code_auto', '1', 0, 'employee_code_auto', 'Employee Code Auto', 1, 1, '1,2,3,4,5,6', 1, '2019-05-16 20:49:57', NULL, NULL, NULL, NULL, 1),
(100, 'company_information', '2', 0, 'basic_information', 'Basic Information', 1, 1, '1,2,3,4,5,6', 1, '2019-10-31 13:31:07', 1, '2019-10-31 14:44:15', NULL, NULL, 1),
(101, 'company_information', '3', 2, 'registered_office_information', 'Registered Office Information', 2, 1, '1,2,3,4,5,6', 1, '2019-10-31 14:35:22', 1, '2019-10-31 14:45:49', NULL, NULL, 1),
(102, 'company_information', '3', 2, 'print_contact_information', 'Print Contact Information', 3, 1, '1,2,3,4,5,6', 1, '2019-10-31 14:58:40', NULL, NULL, NULL, NULL, 1),
(103, 'company_information', '3', 2, 'print_default_notes', 'Print Default Notes', 4, 1, '1,2,3,4,5,6', 1, '2019-10-31 15:05:39', 1, '2019-10-31 15:10:35', NULL, NULL, 1),
(104, 'user_role', '1', 0, 'user_role', 'User Role', 1, 1, '1,2,3,4,5,6', 1, '2019-11-14 10:34:16', NULL, NULL, NULL, NULL, 1),
(109, 'mail_configurations', '1', 0, 'mail_configuration_information', 'mail configuration information', 1, 1, '1,2,3,4,5,6', 1, '2019-11-21 16:59:52', NULL, NULL, NULL, NULL, 1),
(117, 'sms_compaign', '1', 0, 'sms_compaign', 'SMS Compaign', 1, 1, '1,2,3,4,5,6', 1, '2020-02-03 22:01:36', NULL, NULL, NULL, NULL, 1),
(121, 'company_information', '2', 0, 'sms_configuration', 'SMS Configuration', 5, 1, '1,2,3,4,5,6', 1, '2020-02-05 19:54:44', NULL, NULL, NULL, NULL, 1),
(126, 'upload_extension', '1', 0, 'upload_extension', 'upload extension', 1, 1, '1,2,3,4,5,6', 1, '2020-02-15 10:26:20', NULL, NULL, NULL, NULL, 1),
(132, 'company_information', '2', 0, 'color_picker', 'Color Picker', 6, 1, '1,2,3,4,5,6', 1, '2020-03-19 12:30:43', NULL, NULL, NULL, NULL, 1),
(134, 'consultancy', '1', 0, 'consultancy_details', 'consultancy details', 1, 1, '1,2,3,4,5,6', 1, '2020-08-26 14:44:08', NULL, NULL, NULL, NULL, 1),
(135, 'candidate_tracker', '2', 0, 'candidate_details', 'Candidate details', 1, 1, '1,2,3,4,5,6', 1, '2020-08-26 14:45:55', NULL, NULL, NULL, NULL, 1),
(136, 'position', '1', 0, 'position', 'position details', 1, 1, '1,2,3,4,5,6', 1, '2020-08-26 14:48:09', 1, '2020-08-26 14:48:26', NULL, NULL, 1),
(137, 'candidate_tracker', '3', 2, 'educational_qualification', 'educational qualification', 2, 1, '1,2,3,4,5,6', 1, '2020-08-26 14:58:28', NULL, NULL, NULL, NULL, 1),
(138, 'candidate_tracker', '3', 2, 'working_experience', 'Working experience', 3, 1, '1,2,3,4,5,6', 1, '2020-08-26 15:04:00', NULL, NULL, NULL, NULL, 1),
(139, 'position', '3', 1, 'questions', 'Questions', 2, 1, '1,2,3,4,5,6', 1, '2020-08-28 18:41:14', NULL, NULL, NULL, NULL, 1),
(140, 'location', '1', 0, 'location_information', 'location information', 1, 1, '1,2,3,4,5,6', 1, '2020-09-11 22:16:30', NULL, NULL, NULL, NULL, 1),
(141, 'company', '1', 0, 'company_details', 'company details', 1, 1, '1,2,3,4,5,6', 1, '2020-09-11 22:17:42', NULL, NULL, NULL, NULL, 1),
(142, 'time_slot', '1', 0, 'time_slot_details', 'Time Slot Details', 1, 1, '1,2,3,4,5,6', 1, '2020-12-07 18:28:08', NULL, NULL, NULL, NULL, 1),
(143, 'slots', '1', 0, 'slots_details', 'slots', 1, 1, '1,2,3,4,5,6', 1, '2020-12-07 19:55:06', NULL, NULL, NULL, NULL, 1),
(144, 'channel', '1', 0, 'channel_info', 'Channel Info', 1, 1, '1,2,3,4,5,6', 1, '2020-12-12 10:41:40', NULL, NULL, NULL, NULL, 1),
(145, 'source', '1', 0, 'source', 'Source', 1, 1, '1,2,3,4,5,6', 1, '2020-12-24 11:25:06', NULL, NULL, NULL, NULL, 1),
(146, 'interview_type', '1', 0, 'interview_type_details', 'Interview Type Details', 1, 1, '1,2,3,4,5,6', 1, '2021-05-06 13:12:21', NULL, NULL, NULL, NULL, 1),
(147, 'manager_list', '1', 0, 'manager_list_info', 'Manager List Info', 1, 1, '1,2,3,4,5,6', 1, '2024-06-15 09:52:16', NULL, NULL, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_gender`
--

CREATE TABLE `cw_gender` (
  `prime_gender_id` int NOT NULL,
  `gender` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_gender`
--

INSERT INTO `cw_gender` (`prime_gender_id`, `gender`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'M', 1, '2020-02-04 12:06:37', 0, NULL, 0, NULL, 1),
(2, 'F', 1, '2020-02-04 12:06:42', 0, NULL, 0, NULL, 1),
(3, 'O', 1, '2020-02-04 12:06:47', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_grants`
--

CREATE TABLE `cw_grants` (
  `permission_id` varchar(255) NOT NULL,
  `prime_employees_id` int NOT NULL,
  `grants_menu_id` int NOT NULL DEFAULT '0',
  `grants_sub_menu_id` int NOT NULL DEFAULT '0',
  `access_add` int DEFAULT '0',
  `access_update` int DEFAULT '0',
  `access_delete` int DEFAULT '0',
  `access_search` int DEFAULT '0',
  `access_export` int DEFAULT '0',
  `access_import` int DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `cw_grants`
--

INSERT INTO `cw_grants` (`permission_id`, `prime_employees_id`, `grants_menu_id`, `grants_sub_menu_id`, `access_add`, `access_update`, `access_delete`, `access_search`, `access_export`, `access_import`) VALUES
('blood_group', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('blood_group', 7, 5, 5, 1, 1, 1, 1, 1, 1),
('blood_group', 52, 5, 5, 1, 1, 1, 1, 1, 1),
('blood_group', 60, 5, 5, 1, 1, 1, 1, 1, 1),
('blood_group', 72, 5, 5, 1, 1, 1, 1, 1, 1),
('blood_group', 138, 5, 5, 0, 0, 0, 0, 0, 0),
('branch', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('branch', 7, 5, 5, 1, 1, 1, 1, 1, 1),
('branch', 52, 5, 5, 1, 1, 1, 1, 1, 1),
('branch', 60, 5, 5, 1, 1, 1, 1, 1, 1),
('branch', 72, 5, 5, 1, 1, 1, 1, 1, 1),
('branch', 138, 5, 5, 0, 0, 0, 0, 0, 0),
('candidate_tracker', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('candidate_tracker', 8, 7, 9, 1, 1, 1, 1, 1, 1),
('candidate_tracker', 9, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 10, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 11, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 12, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 13, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 14, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 15, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 16, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 17, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 18, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 19, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 20, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 21, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 22, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 23, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 24, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 25, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 26, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 27, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 28, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 29, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 30, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 31, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 32, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 33, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 34, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 35, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 36, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 37, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 38, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 39, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 40, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 41, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 42, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 43, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 44, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 45, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 46, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 47, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 48, 0, 0, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 49, 0, 0, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 50, 7, 9, 1, 1, 1, 1, 1, 1),
('candidate_tracker', 51, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 52, 7, 9, 1, 1, 1, 1, 1, 1),
('candidate_tracker', 53, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 54, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 55, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 56, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 57, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 58, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 59, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 60, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 61, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 62, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 63, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 64, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 65, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 66, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 67, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 68, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 69, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 70, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 71, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 72, 7, 9, 1, 1, 1, 1, 1, 1),
('candidate_tracker', 73, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 74, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 75, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 76, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 77, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 78, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 79, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 80, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 81, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 82, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 83, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 84, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 85, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 86, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 87, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 88, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 89, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 90, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 91, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 92, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 93, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 94, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 95, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 96, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 97, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 98, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 99, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 100, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 101, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 102, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 103, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 104, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 105, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 107, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 108, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 109, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 110, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 111, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 112, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 113, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 114, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 115, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 116, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 117, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 118, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 119, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 120, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 121, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 122, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 123, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 124, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 125, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 126, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 127, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 130, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 131, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 132, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 133, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 134, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 135, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 136, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 137, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 138, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 139, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 140, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 141, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 142, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 143, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 144, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 145, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 146, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 147, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 148, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 149, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 150, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 151, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 152, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 153, 7, 9, 1, 1, 1, 1, 1, 0),
('candidate_tracker', 154, 7, 9, 1, 1, 1, 1, 1, 0),
('candidate_tracker', 155, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 156, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 157, 7, 9, 1, 1, 1, 1, 1, 0),
('candidate_tracker', 158, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 159, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 160, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 161, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 162, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 163, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 164, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 165, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 166, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 167, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 168, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 169, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 170, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 171, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 172, 7, 9, 1, 1, 0, 1, 0, 0),
('candidate_tracker', 173, 7, 9, 0, 1, 0, 1, 0, 0),
('candidate_tracker', 174, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 175, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 176, 7, 9, 0, 0, 0, 1, 0, 0),
('candidate_tracker', 177, 7, 9, 1, 1, 0, 1, 0, 0),
('category', 1, 0, 0, 1, 1, 0, 1, 1, 1),
('category', 7, 5, 2, 1, 1, 1, 1, 1, 1),
('category', 72, 5, 2, 1, 1, 1, 1, 1, 1),
('category', 104, 5, 2, 1, 1, 0, 1, 0, 0),
('category', 126, 5, 2, 1, 1, 1, 1, 1, 1),
('channel', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('channel', 7, 7, 7, 1, 1, 1, 1, 1, 1),
('channel', 52, 7, 7, 1, 1, 1, 1, 1, 1),
('channel', 60, 7, 7, 1, 1, 1, 1, 1, 1),
('channel', 72, 7, 7, 1, 1, 1, 1, 1, 1),
('channel', 104, 7, 7, 1, 1, 1, 1, 1, 1),
('channel', 126, 7, 7, 1, 1, 0, 1, 0, 0),
('company', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('company', 7, 7, 7, 1, 1, 1, 1, 1, 1),
('company', 52, 7, 7, 1, 1, 1, 1, 1, 1),
('company', 60, 7, 7, 1, 1, 1, 1, 1, 1),
('company', 72, 7, 7, 1, 1, 1, 1, 1, 1),
('company', 104, 7, 7, 1, 1, 1, 1, 1, 1),
('company_information', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('company_information', 72, 5, 6, 1, 1, 1, 1, 1, 1),
('company_information', 138, 5, 6, 0, 0, 0, 0, 0, 0),
('consultancy', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('consultancy', 7, 5, 5, 1, 1, 1, 1, 1, 1),
('consultancy', 52, 5, 5, 1, 1, 1, 1, 1, 1),
('consultancy', 60, 5, 5, 1, 1, 1, 1, 1, 1),
('consultancy', 72, 5, 5, 1, 1, 1, 1, 1, 1),
('consultancy', 104, 5, 5, 1, 1, 1, 1, 1, 1),
('consultancy', 138, 5, 5, 0, 0, 0, 0, 0, 0),
('country', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('custom_approval', 72, 5, 21, 1, 1, 1, 1, 1, 1),
('custom_approval', 138, 5, 21, 0, 0, 0, 0, 0, 0),
('department', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('department', 7, 5, 5, 1, 1, 1, 1, 1, 1),
('department', 52, 5, 5, 1, 1, 1, 1, 1, 1),
('department', 60, 5, 5, 1, 1, 1, 1, 1, 1),
('department', 72, 5, 5, 1, 1, 1, 1, 1, 1),
('department', 104, 5, 5, 1, 1, 1, 1, 1, 1),
('department', 138, 5, 5, 0, 0, 0, 0, 0, 0),
('designation', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('designation', 7, 5, 5, 1, 1, 1, 1, 1, 1),
('designation', 52, 5, 5, 1, 1, 1, 1, 1, 1),
('designation', 60, 5, 5, 1, 1, 1, 1, 1, 1),
('designation', 72, 5, 5, 1, 1, 1, 1, 1, 1),
('designation', 138, 5, 5, 0, 0, 0, 0, 0, 0),
('dynamic_db', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('dynamic_db', 138, 1, 0, 0, 0, 0, 0, 0, 0),
('email_campaign', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('email_campaign', 138, 12, 0, 0, 0, 0, 0, 0, 0),
('email_process', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('email_process', 138, 12, 0, 0, 0, 0, 0, 0, 0),
('employee', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('employees', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('employees', 7, 5, 2, 1, 1, 1, 1, 1, 1),
('employees', 52, 5, 2, 1, 1, 0, 1, 0, 0),
('employees', 60, 5, 2, 1, 1, 0, 1, 1, 0),
('employees', 72, 5, 2, 1, 1, 1, 1, 1, 1),
('employees', 104, 5, 2, 1, 0, 0, 1, 0, 0),
('employees', 126, 5, 2, 1, 1, 1, 1, 1, 1),
('employee_code_auto', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('employee_code_auto', 72, 5, 21, 1, 1, 1, 1, 1, 1),
('employee_code_auto', 104, 5, 21, 1, 1, 1, 1, 1, 1),
('employee_code_auto', 138, 5, 21, 0, 0, 0, 0, 0, 0),
('employee_enrolment', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('employee_enrolment', 7, 2, 0, 1, 1, 1, 1, 1, 1),
('employee_enrolment', 52, 2, 0, 1, 1, 1, 1, 1, 1),
('employee_enrolment', 60, 2, 0, 1, 1, 1, 1, 1, 1),
('employee_enrolment', 72, 2, 0, 1, 1, 1, 1, 1, 1),
('employee_enrolment', 138, 2, 0, 0, 0, 0, 0, 0, 0),
('employee_permission', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('employee_permission', 7, 2, 0, 1, 1, 1, 1, 1, 1),
('employee_permission', 52, 2, 0, 1, 1, 1, 1, 1, 1),
('employee_permission', 60, 2, 0, 1, 1, 1, 1, 1, 1),
('employee_permission', 72, 2, 0, 1, 1, 1, 1, 1, 1),
('file_merge', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('form_setting', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('form_setting', 7, 1, 0, 1, 1, 1, 1, 1, 1),
('form_setting', 52, 1, 0, 0, 1, 0, 1, 1, 1),
('form_setting', 60, 1, 0, 0, 1, 0, 1, 1, 1),
('gender', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('gender', 7, 5, 5, 1, 1, 1, 1, 1, 1),
('gender', 52, 5, 5, 1, 1, 1, 1, 1, 1),
('gender', 60, 5, 5, 1, 1, 1, 1, 1, 1),
('gender', 72, 5, 5, 1, 1, 1, 1, 1, 1),
('gender', 138, 5, 5, 0, 0, 0, 0, 0, 0),
('interview_type', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('interview_type', 7, 7, 7, 1, 1, 1, 1, 1, 1),
('interview_type', 72, 7, 7, 1, 1, 1, 1, 1, 1),
('interview_type', 104, 7, 7, 1, 1, 1, 1, 1, 1),
('location', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('location', 7, 7, 7, 1, 1, 1, 1, 1, 1),
('location', 52, 7, 7, 1, 1, 1, 1, 1, 1),
('location', 60, 7, 7, 1, 1, 1, 1, 1, 1),
('location', 72, 7, 7, 1, 1, 1, 1, 1, 1),
('location', 104, 7, 7, 1, 1, 1, 1, 1, 1),
('mail_configurations', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('mail_configurations', 138, 12, 0, 0, 0, 0, 0, 0, 0),
('manager_list', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('manager_list', 60, 7, 8, 1, 1, 1, 1, 1, 1),
('manager_list', 104, 7, 8, 1, 1, 1, 1, 1, 1),
('manager_list', 159, 7, 8, 1, 1, 1, 1, 1, 1),
('manager_list', 162, 7, 8, 1, 1, 1, 1, 1, 1),
('module_setting', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('password_change', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('password_change', 8, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 9, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 11, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 12, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 13, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 14, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 15, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 16, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 17, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 18, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 19, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 20, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 21, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 22, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 23, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 24, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 25, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 26, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 27, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 28, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 29, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 30, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 31, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 32, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 33, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 34, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 35, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 36, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 37, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 38, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 39, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 40, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 41, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 42, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 43, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 44, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 45, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 46, 5, 20, 0, 1, 0, 0, 0, 0),
('password_change', 47, 5, 20, 1, 1, 1, 1, 0, 0),
('password_change', 48, 0, 0, 1, 1, 1, 1, 1, 1),
('password_change', 49, 0, 0, 1, 1, 1, 1, 1, 1),
('password_change', 50, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 51, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 52, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 53, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 54, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 55, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 56, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 57, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 58, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 59, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 60, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 63, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 64, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 67, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 68, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 69, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 70, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 71, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 72, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 73, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 74, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 75, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 76, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 77, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 78, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 79, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 80, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 81, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 82, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 83, 5, 20, 0, 1, 0, 1, 0, 0),
('password_change', 86, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 88, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 89, 5, 20, 1, 1, 1, 1, 0, 0),
('password_change', 90, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 91, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 93, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 94, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 95, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 98, 5, 20, 0, 0, 0, 0, 0, 0),
('password_change', 100, 5, 20, 0, 1, 0, 0, 0, 0),
('password_change', 102, 5, 20, 0, 1, 0, 0, 0, 0),
('password_change', 104, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 105, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 107, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 109, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 111, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 113, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 114, 5, 20, 1, 1, 1, 1, 0, 0),
('password_change', 115, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 116, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 117, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 118, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 119, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 120, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 121, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 122, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 123, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 124, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 125, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 131, 5, 20, 0, 1, 0, 1, 0, 0),
('password_change', 132, 5, 20, 1, 1, 0, 1, 1, 1),
('password_change', 133, 5, 20, 1, 1, 0, 1, 1, 1),
('password_change', 134, 5, 20, 1, 1, 0, 1, 1, 1),
('password_change', 135, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 136, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 137, 5, 20, 1, 1, 1, 1, 0, 0),
('password_change', 138, 5, 20, 1, 1, 1, 1, 0, 0),
('password_change', 139, 5, 20, 0, 1, 0, 0, 0, 0),
('password_change', 140, 5, 20, 1, 1, 1, 1, 0, 0),
('password_change', 141, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 142, 5, 20, 0, 1, 0, 1, 0, 0),
('password_change', 143, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 144, 5, 20, 1, 1, 1, 1, 0, 0),
('password_change', 145, 5, 20, 1, 0, 0, 1, 0, 0),
('password_change', 146, 5, 20, 1, 0, 0, 1, 0, 0),
('password_change', 147, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 148, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 149, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 150, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 151, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 152, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 153, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 154, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 155, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 156, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 157, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 158, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 159, 5, 20, 1, 1, 1, 1, 0, 0),
('password_change', 160, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 161, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 162, 5, 20, 0, 1, 0, 1, 0, 0),
('password_change', 163, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 164, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 165, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 166, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 167, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 168, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 169, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 170, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 171, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 172, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 173, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 174, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 175, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 176, 5, 20, 1, 1, 1, 1, 1, 1),
('password_change', 177, 5, 20, 1, 1, 0, 1, 0, 0),
('pdf_setting', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('pdf_setting', 60, 5, 20, 1, 1, 1, 1, 1, 1),
('pdf_setting', 72, 5, 20, 1, 1, 1, 1, 1, 1),
('pdf_setting', 104, 5, 20, 1, 1, 1, 1, 1, 1),
('position', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('position', 7, 7, 7, 1, 1, 1, 1, 1, 1),
('position', 52, 7, 7, 1, 1, 1, 1, 1, 1),
('position', 60, 7, 7, 1, 1, 1, 1, 1, 1),
('position', 72, 7, 7, 1, 1, 1, 1, 1, 1),
('position', 104, 7, 7, 1, 1, 1, 1, 1, 1),
('position', 126, 7, 7, 1, 1, 0, 1, 0, 0),
('print_setting', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('print_setting', 55, 5, 20, 1, 1, 1, 1, 1, 1),
('print_setting', 60, 5, 20, 1, 1, 1, 1, 1, 1),
('print_setting', 72, 5, 20, 1, 1, 1, 1, 1, 1),
('print_setting', 104, 5, 20, 1, 1, 1, 1, 1, 1),
('report', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('report', 7, 10, 0, 1, 1, 1, 1, 1, 1),
('report', 50, 10, 0, 1, 1, 1, 1, 1, 1),
('report', 52, 10, 0, 1, 1, 1, 1, 1, 1),
('report', 60, 10, 0, 1, 1, 1, 1, 1, 1),
('report', 72, 10, 0, 1, 1, 1, 1, 1, 1),
('report', 104, 10, 0, 1, 1, 1, 1, 1, 1),
('report_setting', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('report_setting', 7, 2, 0, 1, 1, 1, 1, 1, 1),
('report_setting', 52, 2, 0, 1, 1, 1, 1, 1, 1),
('report_setting', 60, 2, 0, 1, 1, 1, 1, 1, 1),
('report_setting', 72, 2, 0, 1, 1, 1, 1, 1, 1),
('slots', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('slots', 7, 7, 7, 1, 1, 1, 1, 1, 1),
('slots', 52, 7, 7, 1, 1, 1, 1, 1, 1),
('slots', 60, 7, 7, 1, 1, 1, 1, 1, 1),
('slots', 72, 7, 7, 1, 1, 1, 1, 1, 1),
('slots', 104, 7, 7, 1, 1, 1, 1, 1, 1),
('sms_compaign', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('sms_compaign', 138, 12, 0, 0, 0, 0, 0, 0, 0),
('source', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('source', 7, 7, 7, 1, 1, 1, 1, 1, 1),
('source', 52, 7, 7, 1, 1, 1, 1, 1, 1),
('source', 60, 7, 7, 1, 1, 1, 1, 1, 1),
('source', 72, 7, 7, 1, 1, 1, 1, 1, 1),
('source', 104, 7, 7, 1, 1, 1, 1, 1, 1),
('state', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('table_delete', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('time_slot', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('time_slot', 7, 7, 7, 1, 1, 1, 1, 1, 1),
('time_slot', 52, 7, 7, 1, 1, 1, 1, 1, 1),
('time_slot', 60, 7, 7, 1, 1, 1, 1, 1, 1),
('time_slot', 72, 7, 7, 1, 1, 1, 1, 1, 1),
('time_slot', 104, 7, 7, 1, 1, 1, 1, 1, 1),
('time_slot', 126, 7, 7, 0, 1, 0, 1, 0, 0),
('upload_extension', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('upload_extension', 7, 5, 5, 1, 1, 1, 1, 1, 1),
('upload_extension', 52, 5, 5, 1, 1, 1, 1, 1, 1),
('upload_extension', 60, 5, 5, 1, 1, 1, 1, 1, 1),
('upload_extension', 72, 5, 5, 1, 1, 1, 1, 1, 1),
('upload_extension', 104, 5, 5, 1, 1, 1, 1, 1, 1),
('upload_extension', 138, 5, 5, 0, 0, 0, 0, 0, 0),
('user_role', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('user_role', 72, 5, 21, 1, 1, 1, 1, 1, 1),
('user_role', 104, 5, 21, 1, 1, 1, 1, 1, 1),
('user_role', 138, 5, 21, 0, 0, 0, 0, 0, 0),
('utilities_settings', 1, 0, 0, 1, 1, 1, 1, 1, 1),
('utilities_settings', 60, 5, 20, 1, 1, 1, 1, 1, 1),
('utilities_settings', 72, 5, 20, 1, 1, 1, 1, 1, 1),
('utilities_settings', 104, 5, 20, 1, 1, 1, 1, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_import`
--

CREATE TABLE `cw_import` (
  `import_id` int NOT NULL,
  `import_type` int NOT NULL DEFAULT '1',
  `module_id` varchar(100) DEFAULT NULL,
  `excel_format` varchar(100) DEFAULT NULL,
  `excel_file_path` varchar(100) DEFAULT NULL,
  `excel_sheet_name` varchar(255) DEFAULT NULL,
  `excel_start_row` int DEFAULT NULL,
  `excel_end_row` int DEFAULT NULL,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_interviewer_log`
--

CREATE TABLE `cw_interviewer_log` (
  `prime_interviewer_log_id` int NOT NULL,
  `prime_candidate_tracker_id` int DEFAULT NULL,
  `interviewer` int DEFAULT NULL,
  `question` text,
  `rating` int DEFAULT NULL,
  `remarks` text,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_interviewer_log`
--

INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(1, 3, 8, 'Appearance', 3, '-', 8, '2020-09-03 11:39:53', 1),
(2, 3, 8, 'Attitude', 2, '-', 8, '2020-09-03 11:39:53', 1),
(3, 3, 8, 'Communication (Tamil)', 3, '-', 8, '2020-09-03 11:39:53', 1),
(4, 3, 8, 'Communication (English)', 3, '-', 8, '2020-09-03 11:39:53', 1),
(5, 3, 8, 'convincing Skills', 2, '--', 8, '2020-09-03 11:39:53', 1),
(6, 3, 8, 'Confidence Level', 3, '-', 8, '2020-09-03 11:39:53', 1),
(7, 3, 8, 'Importance (Job)', 1, '-', 8, '2020-09-03 11:39:53', 1),
(8, 3, 8, 'Observation skills', 3, '-', 8, '2020-09-03 11:39:53', 1),
(9, 3, 8, 'Pressure Handling', 1, '-', 8, '2020-09-03 11:39:53', 1),
(10, 3, 8, 'Patient', 2, '-', 8, '2020-09-03 11:39:53', 1),
(11, 3, 8, 'Sustainability', 1, '-', 8, '2020-09-03 11:39:53', 1),
(12, 4, 8, 'Appearance', 3, '-', 8, '2020-09-03 11:55:50', 1),
(13, 4, 8, 'Attitude', 3, '-', 8, '2020-09-03 11:55:50', 1),
(14, 4, 8, 'Communication (Tamil)', 3, '-', 8, '2020-09-03 11:55:50', 1),
(15, 4, 8, 'Communication (English)', 2, '-', 8, '2020-09-03 11:55:50', 1),
(16, 4, 8, 'convincing Skills', 2, '-', 8, '2020-09-03 11:55:50', 1),
(17, 4, 8, 'Confidence Level', 3, '-', 8, '2020-09-03 11:55:50', 1),
(18, 4, 8, 'Importance (Job)', 3, 'Father auto driver', 8, '2020-09-03 11:55:50', 1),
(19, 4, 8, 'Observation skills', 3, '-', 8, '2020-09-03 11:55:50', 1),
(20, 4, 8, 'Pressure Handling', 2, '-', 8, '2020-09-03 11:55:50', 1),
(21, 4, 8, 'Patient', 3, '-', 8, '2020-09-03 11:55:50', 1),
(22, 4, 8, 'Sustainability', 3, '-', 8, '2020-09-03 11:55:50', 1),
(23, 4, 8, 'Appearance', 3, '-', 8, '2020-09-03 11:55:50', 1),
(24, 4, 8, 'Attitude', 3, '-', 8, '2020-09-03 11:55:50', 1),
(25, 4, 8, 'Communication (Tamil)', 3, '-', 8, '2020-09-03 11:55:50', 1),
(26, 4, 8, 'Communication (English)', 2, '-', 8, '2020-09-03 11:55:50', 1),
(27, 4, 8, 'convincing Skills', 2, '-', 8, '2020-09-03 11:55:50', 1),
(28, 4, 8, 'Confidence Level', 3, '-', 8, '2020-09-03 11:55:50', 1),
(29, 4, 8, 'Importance (Job)', 3, 'Father auto driver', 8, '2020-09-03 11:55:50', 1),
(30, 4, 8, 'Observation skills', 3, '-', 8, '2020-09-03 11:55:50', 1),
(31, 4, 8, 'Pressure Handling', 2, '-', 8, '2020-09-03 11:55:50', 1),
(32, 4, 8, 'Patient', 3, '-', 8, '2020-09-03 11:55:50', 1),
(33, 4, 8, 'Sustainability', 3, '-', 8, '2020-09-03 11:55:50', 1),
(34, 4, 11, 'Appearance', 3, '-', 11, '2020-09-03 12:50:47', 1),
(35, 4, 11, 'Attitude', 4, '-', 11, '2020-09-03 12:50:47', 1),
(36, 4, 11, 'Communication (Tamil)', 3, '-', 11, '2020-09-03 12:50:47', 1),
(37, 4, 11, 'Communication (English)', 2, 'pronounce issue', 11, '2020-09-03 12:50:47', 1),
(38, 4, 11, 'convincing Skills', 4, '-', 11, '2020-09-03 12:50:47', 1),
(39, 4, 11, 'Confidence Level', 3, '-', 11, '2020-09-03 12:50:47', 1),
(40, 4, 11, 'Importance (Job)', 3, '-', 11, '2020-09-03 12:50:47', 1),
(41, 4, 11, 'Observation skills', 4, '-', 11, '2020-09-03 12:50:47', 1),
(42, 4, 11, 'Pressure Handling', 3, '-', 11, '2020-09-03 12:50:47', 1),
(43, 4, 11, 'Patient', 4, '-', 11, '2020-09-03 12:50:47', 1),
(44, 4, 11, 'Sustainability', 3, '-', 11, '2020-09-03 12:50:47', 1),
(45, 16, 11, 'Appearance', 4, '-', 11, '2020-09-03 01:10:05', 1),
(46, 16, 11, 'Attitude', 4, '-', 11, '2020-09-03 01:10:05', 1),
(47, 16, 11, 'Communication (Tamil)', 5, '-', 11, '2020-09-03 01:10:05', 1),
(48, 16, 11, 'Communication (English)', 5, '-', 11, '2020-09-03 01:10:05', 1),
(49, 16, 11, 'convincing Skills', 4, '-', 11, '2020-09-03 01:10:05', 1),
(50, 16, 11, 'Confidence Level', 4, '-', 11, '2020-09-03 01:10:05', 1),
(51, 16, 11, 'Importance (Job)', 3, '-', 11, '2020-09-03 01:10:05', 1),
(52, 16, 11, 'Observation skills', 4, '-', 11, '2020-09-03 01:10:05', 1),
(53, 16, 11, 'Pressure Handling', 3, '-', 11, '2020-09-03 01:10:05', 1),
(54, 16, 11, 'Patient', 4, '-', 11, '2020-09-03 01:10:05', 1),
(55, 16, 11, 'Sustainability', 3, '-', 11, '2020-09-03 01:10:05', 1),
(56, 22, 24, 'Appearance', 4, 'okay for our profile', 24, '2020-09-03 01:14:44', 1),
(57, 22, 24, 'Attitude', 4, 'okay for our profile', 24, '2020-09-03 01:14:44', 1),
(58, 22, 24, 'Communication (English)', 4, 'Okay For Our Profile', 24, '2020-09-03 01:14:44', 1),
(59, 22, 24, 'Communication (Tamil)', 5, 'Okay For Our Profile', 24, '2020-09-03 01:14:44', 1),
(60, 22, 24, 'Convincing Skills', 2, 'Okay For Our Profile', 24, '2020-09-03 01:14:44', 1),
(61, 22, 24, 'Confidence Level', 3, 'Okay For Our Profile', 24, '2020-09-03 01:14:44', 1),
(62, 22, 24, 'Existing Experience Analyze', 4, 'Okay For Our Profile', 24, '2020-09-03 01:14:44', 1),
(63, 22, 24, 'Importance Of Job', 5, 'Okay For Our Profile', 24, '2020-09-03 01:14:44', 1),
(64, 22, 24, 'Observation Skills', 3, 'Okay For Our Profile', 24, '2020-09-03 01:14:44', 1),
(65, 22, 24, 'Patient', 4, 'Okay For Our Profile', 24, '2020-09-03 01:14:44', 1),
(66, 22, 24, 'Pressure Handling', 1, '-', 24, '2020-09-03 01:14:44', 1),
(67, 22, 24, 'Practical Challenges Outcome', 3, '-', 24, '2020-09-03 01:14:44', 1),
(68, 22, 24, 'Sustainability', 4, '-', 24, '2020-09-03 01:14:44', 1),
(69, 22, 24, 'Sales Experience', 1, '-', 24, '2020-09-03 01:14:44', 1),
(70, 22, 24, 'Willing To Work On Holidays', 1, '-', 24, '2020-09-03 01:14:44', 1),
(71, 30, 21, 'Appearance', 4, '-', 21, '2020-09-03 01:24:47', 1),
(72, 30, 21, 'Attitude', 4, '-', 21, '2020-09-03 01:24:47', 1),
(73, 30, 21, 'Communication (Tamil)', 4, '-', 21, '2020-09-03 01:24:47', 1),
(74, 30, 21, 'Communication (English)', 4, '-', 21, '2020-09-03 01:24:47', 1),
(75, 30, 21, 'convincing Skills', 3, '-', 21, '2020-09-03 01:24:47', 1),
(76, 30, 21, 'Confidence Level', 4, '-', 21, '2020-09-03 01:24:47', 1),
(77, 30, 21, 'Importance (Job)', 5, '-', 21, '2020-09-03 01:24:47', 1),
(78, 30, 21, 'Observation skills', 4, '-', 21, '2020-09-03 01:24:47', 1),
(79, 30, 21, 'Pressure Handling', 3, '-', 21, '2020-09-03 01:24:47', 1),
(80, 30, 21, 'Patient', 4, '-', 21, '2020-09-03 01:24:47', 1),
(81, 30, 21, 'Sustainability', 4, '-', 21, '2020-09-03 01:24:47', 1),
(82, 26, 21, 'Appearance', 3, '-', 21, '2020-09-03 01:31:17', 1),
(83, 26, 21, 'Attitude', 4, '-', 21, '2020-09-03 01:31:17', 1),
(84, 26, 21, 'Communication (Tamil)', 4, '-', 21, '2020-09-03 01:31:17', 1),
(85, 26, 21, 'Communication (English)', 3, '-', 21, '2020-09-03 01:31:17', 1),
(86, 26, 21, 'convincing Skills', 3, '-', 21, '2020-09-03 01:31:17', 1),
(87, 26, 21, 'Confidence Level', 3, '-', 21, '2020-09-03 01:31:17', 1),
(88, 26, 21, 'Importance (Job)', 2, '-', 21, '2020-09-03 01:31:17', 1),
(89, 26, 21, 'Observation skills', 3, '-', 21, '2020-09-03 01:31:17', 1),
(90, 26, 21, 'Pressure Handling', 3, '-', 21, '2020-09-03 01:31:17', 1),
(91, 26, 21, 'Patient', 3, '-', 21, '2020-09-03 01:31:17', 1),
(92, 26, 21, 'Sustainability', 2, '-', 21, '2020-09-03 01:31:17', 1),
(93, 26, 21, 'Appearance', 3, '-', 21, '2020-09-03 01:31:18', 1),
(94, 26, 21, 'Attitude', 4, '-', 21, '2020-09-03 01:31:18', 1),
(95, 26, 21, 'Communication (Tamil)', 4, '-', 21, '2020-09-03 01:31:18', 1),
(96, 26, 21, 'Communication (English)', 3, '-', 21, '2020-09-03 01:31:18', 1),
(97, 26, 21, 'convincing Skills', 3, '-', 21, '2020-09-03 01:31:18', 1),
(98, 26, 21, 'Confidence Level', 3, '-', 21, '2020-09-03 01:31:18', 1),
(99, 26, 21, 'Importance (Job)', 2, '-', 21, '2020-09-03 01:31:18', 1),
(100, 26, 21, 'Observation skills', 3, '-', 21, '2020-09-03 01:31:18', 1),
(101, 26, 21, 'Pressure Handling', 3, '-', 21, '2020-09-03 01:31:18', 1),
(102, 26, 21, 'Patient', 3, '-', 21, '2020-09-03 01:31:18', 1),
(103, 26, 21, 'Sustainability', 2, '-', 21, '2020-09-03 01:31:18', 1),
(104, 6, 8, 'Appearance', 3, '---', 8, '2020-09-03 01:33:25', 1),
(105, 6, 8, 'Attitude', 3, '-', 8, '2020-09-03 01:33:25', 1),
(106, 6, 8, 'Communication (English)', 2, '---', 8, '2020-09-03 01:33:25', 1),
(107, 6, 8, 'Communication (Tamil)', 4, '-', 8, '2020-09-03 01:33:25', 1),
(108, 6, 8, 'Convincing Skills', 3, '--', 8, '2020-09-03 01:33:25', 1),
(109, 6, 8, 'Confidence Level', 3, '-', 8, '2020-09-03 01:33:25', 1),
(110, 6, 8, 'Existing Experience Analyze', 4, '-', 8, '2020-09-03 01:33:25', 1),
(111, 6, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 01:33:25', 1),
(112, 6, 8, 'Observation Skills', 3, '-', 8, '2020-09-03 01:33:25', 1),
(113, 6, 8, 'Patient', 3, '-', 8, '2020-09-03 01:33:25', 1),
(114, 6, 8, 'Pressure Handling', 3, '-', 8, '2020-09-03 01:33:25', 1),
(115, 6, 8, 'Practical Challenges Outcome', 3, '-', 8, '2020-09-03 01:33:25', 1),
(116, 6, 8, 'Sustainability', 3, '-', 8, '2020-09-03 01:33:25', 1),
(117, 6, 8, 'Sales Experience', 3, '-', 8, '2020-09-03 01:33:25', 1),
(118, 6, 8, 'Willing To Work On Holidays', 3, '-', 8, '2020-09-03 01:33:25', 1),
(119, 6, 8, 'Appearance', 3, '---', 8, '2020-09-03 01:33:25', 1),
(120, 6, 8, 'Attitude', 3, '-', 8, '2020-09-03 01:33:25', 1),
(121, 6, 8, 'Communication (English)', 2, '---', 8, '2020-09-03 01:33:25', 1),
(122, 6, 8, 'Communication (Tamil)', 4, '-', 8, '2020-09-03 01:33:25', 1),
(123, 6, 8, 'Convincing Skills', 3, '--', 8, '2020-09-03 01:33:25', 1),
(124, 6, 8, 'Confidence Level', 3, '-', 8, '2020-09-03 01:33:25', 1),
(125, 6, 8, 'Existing Experience Analyze', 4, '-', 8, '2020-09-03 01:33:25', 1),
(126, 6, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 01:33:25', 1),
(127, 6, 8, 'Observation Skills', 3, '-', 8, '2020-09-03 01:33:25', 1),
(128, 6, 8, 'Patient', 3, '-', 8, '2020-09-03 01:33:25', 1),
(129, 6, 8, 'Pressure Handling', 3, '-', 8, '2020-09-03 01:33:25', 1),
(130, 6, 8, 'Practical Challenges Outcome', 3, '-', 8, '2020-09-03 01:33:25', 1),
(131, 6, 8, 'Sustainability', 3, '-', 8, '2020-09-03 01:33:25', 1),
(132, 6, 8, 'Sales Experience', 3, '-', 8, '2020-09-03 01:33:25', 1),
(133, 6, 8, 'Willing To Work On Holidays', 3, '-', 8, '2020-09-03 01:33:25', 1),
(134, 6, 8, 'Appearance', 3, '---', 8, '2020-09-03 01:33:25', 1),
(135, 6, 8, 'Attitude', 3, '-', 8, '2020-09-03 01:33:25', 1),
(136, 6, 8, 'Communication (English)', 2, '---', 8, '2020-09-03 01:33:25', 1),
(137, 6, 8, 'Communication (Tamil)', 4, '-', 8, '2020-09-03 01:33:25', 1),
(138, 6, 8, 'Convincing Skills', 3, '--', 8, '2020-09-03 01:33:25', 1),
(139, 6, 8, 'Confidence Level', 3, '-', 8, '2020-09-03 01:33:25', 1),
(140, 6, 8, 'Existing Experience Analyze', 4, '-', 8, '2020-09-03 01:33:25', 1),
(141, 6, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 01:33:25', 1),
(142, 6, 8, 'Observation Skills', 3, '-', 8, '2020-09-03 01:33:25', 1),
(143, 6, 8, 'Patient', 3, '-', 8, '2020-09-03 01:33:25', 1),
(144, 6, 8, 'Pressure Handling', 3, '-', 8, '2020-09-03 01:33:25', 1),
(145, 6, 8, 'Practical Challenges Outcome', 3, '-', 8, '2020-09-03 01:33:25', 1),
(146, 6, 8, 'Sustainability', 3, '-', 8, '2020-09-03 01:33:25', 1),
(147, 6, 8, 'Sales Experience', 3, '-', 8, '2020-09-03 01:33:25', 1),
(148, 6, 8, 'Willing To Work On Holidays', 3, '-', 8, '2020-09-03 01:33:25', 1),
(149, 6, 8, 'Appearance', 3, '---', 8, '2020-09-03 01:33:25', 1),
(150, 6, 8, 'Attitude', 3, '-', 8, '2020-09-03 01:33:25', 1),
(151, 6, 8, 'Communication (English)', 2, '---', 8, '2020-09-03 01:33:25', 1),
(152, 6, 8, 'Communication (Tamil)', 4, '-', 8, '2020-09-03 01:33:25', 1),
(153, 6, 8, 'Convincing Skills', 3, '--', 8, '2020-09-03 01:33:25', 1),
(154, 6, 8, 'Confidence Level', 3, '-', 8, '2020-09-03 01:33:25', 1),
(155, 6, 8, 'Existing Experience Analyze', 4, '-', 8, '2020-09-03 01:33:25', 1),
(156, 6, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 01:33:25', 1),
(157, 6, 8, 'Observation Skills', 3, '-', 8, '2020-09-03 01:33:25', 1),
(158, 6, 8, 'Patient', 3, '-', 8, '2020-09-03 01:33:25', 1),
(159, 6, 8, 'Pressure Handling', 3, '-', 8, '2020-09-03 01:33:25', 1),
(160, 6, 8, 'Practical Challenges Outcome', 3, '-', 8, '2020-09-03 01:33:25', 1),
(161, 6, 8, 'Sustainability', 3, '-', 8, '2020-09-03 01:33:25', 1),
(162, 6, 8, 'Sales Experience', 3, '-', 8, '2020-09-03 01:33:25', 1),
(163, 6, 8, 'Willing To Work On Holidays', 3, '-', 8, '2020-09-03 01:33:25', 1),
(164, 6, 8, 'Appearance', 3, '---', 8, '2020-09-03 01:33:25', 1),
(165, 6, 8, 'Attitude', 3, '-', 8, '2020-09-03 01:33:25', 1),
(166, 6, 8, 'Communication (English)', 2, '---', 8, '2020-09-03 01:33:25', 1),
(167, 6, 8, 'Communication (Tamil)', 4, '-', 8, '2020-09-03 01:33:25', 1),
(168, 6, 8, 'Convincing Skills', 3, '--', 8, '2020-09-03 01:33:25', 1),
(169, 6, 8, 'Confidence Level', 3, '-', 8, '2020-09-03 01:33:25', 1),
(170, 6, 8, 'Existing Experience Analyze', 4, '-', 8, '2020-09-03 01:33:25', 1),
(171, 6, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 01:33:25', 1),
(172, 6, 8, 'Observation Skills', 3, '-', 8, '2020-09-03 01:33:25', 1),
(173, 6, 8, 'Patient', 3, '-', 8, '2020-09-03 01:33:25', 1),
(174, 6, 8, 'Pressure Handling', 3, '-', 8, '2020-09-03 01:33:25', 1),
(175, 6, 8, 'Practical Challenges Outcome', 3, '-', 8, '2020-09-03 01:33:25', 1),
(176, 6, 8, 'Sustainability', 3, '-', 8, '2020-09-03 01:33:25', 1),
(177, 6, 8, 'Sales Experience', 3, '-', 8, '2020-09-03 01:33:25', 1),
(178, 6, 8, 'Willing To Work On Holidays', 3, '-', 8, '2020-09-03 01:33:25', 1),
(179, 6, 8, 'Appearance', 3, '---', 8, '2020-09-03 01:33:25', 1),
(180, 6, 8, 'Attitude', 3, '-', 8, '2020-09-03 01:33:25', 1),
(181, 6, 8, 'Communication (English)', 2, '---', 8, '2020-09-03 01:33:25', 1),
(182, 6, 8, 'Communication (Tamil)', 4, '-', 8, '2020-09-03 01:33:25', 1),
(183, 6, 8, 'Convincing Skills', 3, '--', 8, '2020-09-03 01:33:25', 1),
(184, 6, 8, 'Confidence Level', 3, '-', 8, '2020-09-03 01:33:25', 1),
(185, 6, 8, 'Existing Experience Analyze', 4, '-', 8, '2020-09-03 01:33:25', 1),
(186, 6, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 01:33:25', 1),
(187, 6, 8, 'Observation Skills', 3, '-', 8, '2020-09-03 01:33:25', 1),
(188, 6, 8, 'Patient', 3, '-', 8, '2020-09-03 01:33:25', 1),
(189, 6, 8, 'Pressure Handling', 3, '-', 8, '2020-09-03 01:33:25', 1),
(190, 6, 8, 'Practical Challenges Outcome', 3, '-', 8, '2020-09-03 01:33:25', 1),
(191, 6, 8, 'Sustainability', 3, '-', 8, '2020-09-03 01:33:25', 1),
(192, 6, 8, 'Sales Experience', 3, '-', 8, '2020-09-03 01:33:25', 1),
(193, 6, 8, 'Willing To Work On Holidays', 3, '-', 8, '2020-09-03 01:33:25', 1),
(194, 6, 8, 'Appearance', 3, '---', 8, '2020-09-03 01:33:25', 1),
(195, 6, 8, 'Attitude', 3, '-', 8, '2020-09-03 01:33:25', 1),
(196, 6, 8, 'Communication (English)', 2, '---', 8, '2020-09-03 01:33:25', 1),
(197, 6, 8, 'Communication (Tamil)', 4, '-', 8, '2020-09-03 01:33:25', 1),
(198, 6, 8, 'Convincing Skills', 3, '--', 8, '2020-09-03 01:33:25', 1),
(199, 6, 8, 'Confidence Level', 3, '-', 8, '2020-09-03 01:33:25', 1),
(200, 6, 8, 'Existing Experience Analyze', 4, '-', 8, '2020-09-03 01:33:25', 1),
(201, 6, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 01:33:25', 1),
(202, 6, 8, 'Observation Skills', 3, '-', 8, '2020-09-03 01:33:25', 1),
(203, 6, 8, 'Patient', 3, '-', 8, '2020-09-03 01:33:25', 1),
(204, 6, 8, 'Pressure Handling', 3, '-', 8, '2020-09-03 01:33:25', 1),
(205, 6, 8, 'Practical Challenges Outcome', 3, '-', 8, '2020-09-03 01:33:25', 1),
(206, 6, 8, 'Sustainability', 3, '-', 8, '2020-09-03 01:33:25', 1),
(207, 6, 8, 'Sales Experience', 3, '-', 8, '2020-09-03 01:33:25', 1),
(208, 6, 8, 'Willing To Work On Holidays', 3, '-', 8, '2020-09-03 01:33:25', 1),
(209, 25, 17, 'Appearance', 2, '-', 17, '2020-09-03 02:37:26', 1),
(210, 25, 17, 'Attitude', 3, '-', 17, '2020-09-03 02:37:26', 1),
(211, 25, 17, 'Communication (English)', 2, '-', 17, '2020-09-03 02:37:26', 1),
(212, 25, 17, 'Communication (Tamil)', 4, '-', 17, '2020-09-03 02:37:26', 1),
(213, 25, 17, 'Convincing Skills', 2, '-', 17, '2020-09-03 02:37:26', 1),
(214, 25, 17, 'Confidence Level', 3, '-', 17, '2020-09-03 02:37:26', 1),
(215, 25, 17, 'Existing Experience Analyze', 3, '-', 17, '2020-09-03 02:37:26', 1),
(216, 25, 17, 'Importance Of Job', 3, '-', 17, '2020-09-03 02:37:26', 1),
(217, 25, 17, 'Observation Skills', 3, '-', 17, '2020-09-03 02:37:26', 1),
(218, 25, 17, 'Patient', 2, '-', 17, '2020-09-03 02:37:26', 1),
(219, 25, 17, 'Pressure Handling', 3, '-', 17, '2020-09-03 02:37:26', 1),
(220, 25, 17, 'Practical Challenges Outcome', 3, '-', 17, '2020-09-03 02:37:26', 1),
(221, 25, 17, 'Sustainability', 3, '-', 17, '2020-09-03 02:37:26', 1),
(222, 25, 17, 'Sales Experience', 3, '-', 17, '2020-09-03 02:37:26', 1),
(223, 25, 17, 'Willing To Work On Holidays', 2, '-', 17, '2020-09-03 02:37:26', 1),
(224, 5, 8, 'Appearance', 3, '-', 8, '2020-09-03 04:51:21', 1),
(225, 5, 8, 'Attitude', 3, '-', 8, '2020-09-03 04:51:21', 1),
(226, 5, 8, 'Communication (English)', 3, '-', 8, '2020-09-03 04:51:21', 1),
(227, 5, 8, 'Communication (Tamil)', 3, '-', 8, '2020-09-03 04:51:21', 1),
(228, 5, 8, 'Convincing Skills', 3, '-', 8, '2020-09-03 04:51:21', 1),
(229, 5, 8, 'Confidence Level', 2, '-', 8, '2020-09-03 04:51:21', 1),
(230, 5, 8, 'Existing Experience Analyze', 1, '-', 8, '2020-09-03 04:51:21', 1),
(231, 5, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 04:51:21', 1),
(232, 5, 8, 'Observation Skills', 2, '-', 8, '2020-09-03 04:51:21', 1),
(233, 5, 8, 'Patient', 3, '-', 8, '2020-09-03 04:51:21', 1),
(234, 5, 8, 'Pressure Handling', 2, '-', 8, '2020-09-03 04:51:21', 1),
(235, 5, 8, 'Practical Challenges Outcome', 2, '-', 8, '2020-09-03 04:51:21', 1),
(236, 5, 8, 'Sustainability', 2, '-', 8, '2020-09-03 04:51:21', 1),
(237, 5, 8, 'Sales Experience', 1, '-', 8, '2020-09-03 04:51:21', 1),
(238, 5, 8, 'Willing To Work On Holidays', 1, '-', 8, '2020-09-03 04:51:21', 1),
(239, 5, 8, 'Appearance', 3, '-', 8, '2020-09-03 04:51:21', 1),
(240, 5, 8, 'Attitude', 3, '-', 8, '2020-09-03 04:51:21', 1),
(241, 5, 8, 'Communication (English)', 3, '-', 8, '2020-09-03 04:51:21', 1),
(242, 5, 8, 'Communication (Tamil)', 3, '-', 8, '2020-09-03 04:51:21', 1),
(243, 5, 8, 'Convincing Skills', 3, '-', 8, '2020-09-03 04:51:21', 1),
(244, 5, 8, 'Confidence Level', 2, '-', 8, '2020-09-03 04:51:21', 1),
(245, 5, 8, 'Existing Experience Analyze', 1, '-', 8, '2020-09-03 04:51:21', 1),
(246, 5, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 04:51:21', 1),
(247, 5, 8, 'Observation Skills', 2, '-', 8, '2020-09-03 04:51:21', 1),
(248, 5, 8, 'Patient', 3, '-', 8, '2020-09-03 04:51:21', 1),
(249, 5, 8, 'Pressure Handling', 2, '-', 8, '2020-09-03 04:51:21', 1),
(250, 5, 8, 'Practical Challenges Outcome', 2, '-', 8, '2020-09-03 04:51:21', 1),
(251, 5, 8, 'Sustainability', 2, '-', 8, '2020-09-03 04:51:21', 1),
(252, 5, 8, 'Sales Experience', 1, '-', 8, '2020-09-03 04:51:21', 1),
(253, 5, 8, 'Willing To Work On Holidays', 1, '-', 8, '2020-09-03 04:51:21', 1),
(254, 5, 8, 'Appearance', 3, '-', 8, '2020-09-03 04:51:21', 1),
(255, 5, 8, 'Attitude', 3, '-', 8, '2020-09-03 04:51:21', 1),
(256, 5, 8, 'Communication (English)', 3, '-', 8, '2020-09-03 04:51:21', 1),
(257, 5, 8, 'Communication (Tamil)', 3, '-', 8, '2020-09-03 04:51:21', 1),
(258, 5, 8, 'Convincing Skills', 3, '-', 8, '2020-09-03 04:51:21', 1),
(259, 5, 8, 'Confidence Level', 2, '-', 8, '2020-09-03 04:51:21', 1),
(260, 5, 8, 'Existing Experience Analyze', 1, '-', 8, '2020-09-03 04:51:21', 1),
(261, 5, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 04:51:21', 1),
(262, 5, 8, 'Observation Skills', 2, '-', 8, '2020-09-03 04:51:21', 1),
(263, 5, 8, 'Patient', 3, '-', 8, '2020-09-03 04:51:21', 1),
(264, 5, 8, 'Pressure Handling', 2, '-', 8, '2020-09-03 04:51:21', 1),
(265, 5, 8, 'Practical Challenges Outcome', 2, '-', 8, '2020-09-03 04:51:21', 1),
(266, 5, 8, 'Sustainability', 2, '-', 8, '2020-09-03 04:51:21', 1),
(267, 5, 8, 'Sales Experience', 1, '-', 8, '2020-09-03 04:51:21', 1),
(268, 5, 8, 'Willing To Work On Holidays', 1, '-', 8, '2020-09-03 04:51:21', 1),
(269, 7, 8, 'Appearance', 3, '-', 8, '2020-09-03 04:53:00', 1),
(270, 7, 8, 'Attitude', 3, '-', 8, '2020-09-03 04:53:00', 1),
(271, 7, 8, 'Communication (English)', 2, '-', 8, '2020-09-03 04:53:00', 1),
(272, 7, 8, 'Communication (Tamil)', 3, '-', 8, '2020-09-03 04:53:00', 1),
(273, 7, 8, 'Convincing Skills', 2, '-', 8, '2020-09-03 04:53:00', 1),
(274, 7, 8, 'Confidence Level', 2, '-', 8, '2020-09-03 04:53:00', 1),
(275, 7, 8, 'Existing Experience Analyze', 3, '-', 8, '2020-09-03 04:53:00', 1),
(276, 7, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 04:53:00', 1),
(277, 7, 8, 'Observation Skills', 3, '-', 8, '2020-09-03 04:53:00', 1),
(278, 7, 8, 'Patient', 3, '-', 8, '2020-09-03 04:53:00', 1),
(279, 7, 8, 'Pressure Handling', 2, '-', 8, '2020-09-03 04:53:00', 1),
(280, 7, 8, 'Practical Challenges Outcome', 2, '-', 8, '2020-09-03 04:53:00', 1),
(281, 7, 8, 'Sustainability', 3, '-', 8, '2020-09-03 04:53:00', 1),
(282, 7, 8, 'Sales Experience', 2, '-', 8, '2020-09-03 04:53:00', 1),
(283, 7, 8, 'Willing To Work On Holidays', 1, '-', 8, '2020-09-03 04:53:00', 1),
(284, 7, 8, 'Appearance', 3, '-', 8, '2020-09-03 04:53:00', 1),
(285, 7, 8, 'Attitude', 3, '-', 8, '2020-09-03 04:53:00', 1),
(286, 7, 8, 'Communication (English)', 2, '-', 8, '2020-09-03 04:53:00', 1),
(287, 7, 8, 'Communication (Tamil)', 3, '-', 8, '2020-09-03 04:53:00', 1),
(288, 7, 8, 'Convincing Skills', 2, '-', 8, '2020-09-03 04:53:00', 1),
(289, 7, 8, 'Confidence Level', 2, '-', 8, '2020-09-03 04:53:00', 1),
(290, 7, 8, 'Existing Experience Analyze', 3, '-', 8, '2020-09-03 04:53:00', 1),
(291, 7, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 04:53:00', 1),
(292, 7, 8, 'Observation Skills', 3, '-', 8, '2020-09-03 04:53:00', 1),
(293, 7, 8, 'Patient', 3, '-', 8, '2020-09-03 04:53:00', 1),
(294, 7, 8, 'Pressure Handling', 2, '-', 8, '2020-09-03 04:53:00', 1),
(295, 7, 8, 'Practical Challenges Outcome', 2, '-', 8, '2020-09-03 04:53:00', 1),
(296, 7, 8, 'Sustainability', 3, '-', 8, '2020-09-03 04:53:00', 1),
(297, 7, 8, 'Sales Experience', 2, '-', 8, '2020-09-03 04:53:00', 1),
(298, 7, 8, 'Willing To Work On Holidays', 1, '-', 8, '2020-09-03 04:53:00', 1),
(299, 7, 8, 'Appearance', 3, '-', 8, '2020-09-03 04:53:00', 1),
(300, 7, 8, 'Attitude', 3, '-', 8, '2020-09-03 04:53:00', 1),
(301, 7, 8, 'Communication (English)', 2, '-', 8, '2020-09-03 04:53:00', 1),
(302, 7, 8, 'Communication (Tamil)', 3, '-', 8, '2020-09-03 04:53:00', 1),
(303, 7, 8, 'Convincing Skills', 2, '-', 8, '2020-09-03 04:53:00', 1),
(304, 7, 8, 'Confidence Level', 2, '-', 8, '2020-09-03 04:53:00', 1),
(305, 7, 8, 'Existing Experience Analyze', 3, '-', 8, '2020-09-03 04:53:00', 1),
(306, 7, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 04:53:00', 1),
(307, 7, 8, 'Observation Skills', 3, '-', 8, '2020-09-03 04:53:00', 1),
(308, 7, 8, 'Patient', 3, '-', 8, '2020-09-03 04:53:00', 1),
(309, 7, 8, 'Pressure Handling', 2, '-', 8, '2020-09-03 04:53:00', 1),
(310, 7, 8, 'Practical Challenges Outcome', 2, '-', 8, '2020-09-03 04:53:00', 1),
(311, 7, 8, 'Sustainability', 3, '-', 8, '2020-09-03 04:53:00', 1),
(312, 7, 8, 'Sales Experience', 2, '-', 8, '2020-09-03 04:53:00', 1),
(313, 7, 8, 'Willing To Work On Holidays', 1, '-', 8, '2020-09-03 04:53:00', 1),
(314, 7, 8, 'Appearance', 3, '-', 8, '2020-09-03 04:53:00', 1),
(315, 7, 8, 'Attitude', 3, '-', 8, '2020-09-03 04:53:00', 1),
(316, 7, 8, 'Communication (English)', 2, '-', 8, '2020-09-03 04:53:00', 1),
(317, 7, 8, 'Communication (Tamil)', 3, '-', 8, '2020-09-03 04:53:00', 1),
(318, 7, 8, 'Convincing Skills', 2, '-', 8, '2020-09-03 04:53:00', 1),
(319, 7, 8, 'Confidence Level', 2, '-', 8, '2020-09-03 04:53:00', 1),
(320, 7, 8, 'Existing Experience Analyze', 3, '-', 8, '2020-09-03 04:53:00', 1),
(321, 7, 8, 'Importance Of Job', 3, '-', 8, '2020-09-03 04:53:00', 1),
(322, 7, 8, 'Observation Skills', 3, '-', 8, '2020-09-03 04:53:00', 1),
(323, 7, 8, 'Patient', 3, '-', 8, '2020-09-03 04:53:00', 1),
(324, 7, 8, 'Pressure Handling', 2, '-', 8, '2020-09-03 04:53:00', 1),
(325, 7, 8, 'Practical Challenges Outcome', 2, '-', 8, '2020-09-03 04:53:00', 1),
(326, 7, 8, 'Sustainability', 3, '-', 8, '2020-09-03 04:53:00', 1),
(327, 7, 8, 'Sales Experience', 2, '-', 8, '2020-09-03 04:53:00', 1),
(328, 7, 8, 'Willing To Work On Holidays', 1, '-', 8, '2020-09-03 04:53:00', 1),
(329, 12, 16, 'attitude of the employee?', 3, '\n-\n', 16, '2020-09-03 04:54:39', 1),
(330, 12, 16, 'candidate have a real-time working experience?', 2, '-', 16, '2020-09-03 04:54:39', 1),
(331, 12, 16, 'Communication Skills?', 2, '_', 16, '2020-09-03 04:54:39', 1),
(332, 12, 16, 'Having a good experience in client side,server side and database?', 2, '_', 16, '2020-09-03 04:54:39', 1),
(333, 12, 16, 'Idea about code management tools like git, bitbucket, svn...etc', 2, '_', 16, '2020-09-03 04:54:39', 1),
(334, 12, 16, 'Is all the technical Requirements matched with this employee?', 3, '_', 16, '2020-09-03 04:54:39', 1),
(335, 12, 16, 'Is Employee Clearly Understand the roles and Responsibility?', 3, '_', 16, '2020-09-03 04:54:39', 1),
(336, 12, 16, 'looking for a job change for career growth or salary growth?', 2, '_', 16, '2020-09-03 04:54:39', 1),
(337, 12, 16, 'relevance experience with this technical spec.', 2, '_', 16, '2020-09-03 04:54:39', 1),
(338, 12, 16, 'worked with team?', 3, '_', 16, '2020-09-03 04:54:39', 1),
(339, 24, 16, 'Appearance', 2, 'Average', 16, '2020-09-03 04:58:54', 1),
(340, 24, 16, 'Attitude', 2, 'Average', 16, '2020-09-03 04:58:54', 1),
(341, 24, 16, 'Communication (English)', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(342, 24, 16, 'Communication (Tamil)', 1, 'average', 16, '2020-09-03 04:58:54', 1),
(343, 24, 16, 'Convincing Skills', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(344, 24, 16, 'Confidence Level', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(345, 24, 16, 'Existing Experience Analyze', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(346, 24, 16, 'Importance Of Job', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(347, 24, 16, 'Observation Skills', 1, 'average', 16, '2020-09-03 04:58:54', 1),
(348, 24, 16, 'Patient', 2, 'average', 16, '2020-09-03 04:58:54', 1),
(349, 24, 16, 'Pressure Handling', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(350, 24, 16, 'Practical Challenges Outcome', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(351, 24, 16, 'Sustainability', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(352, 24, 16, 'Sales Experience', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(353, 24, 16, 'Willing To Work On Holidays', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(354, 24, 16, 'Appearance', 2, 'Average', 16, '2020-09-03 04:58:54', 1),
(355, 24, 16, 'Attitude', 2, 'Average', 16, '2020-09-03 04:58:54', 1),
(356, 24, 16, 'Communication (English)', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(357, 24, 16, 'Communication (Tamil)', 1, 'average', 16, '2020-09-03 04:58:54', 1),
(358, 24, 16, 'Convincing Skills', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(359, 24, 16, 'Confidence Level', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(360, 24, 16, 'Existing Experience Analyze', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(361, 24, 16, 'Importance Of Job', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(362, 24, 16, 'Observation Skills', 1, 'average', 16, '2020-09-03 04:58:54', 1),
(363, 24, 16, 'Patient', 2, 'average', 16, '2020-09-03 04:58:54', 1),
(364, 24, 16, 'Pressure Handling', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(365, 24, 16, 'Practical Challenges Outcome', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(366, 24, 16, 'Sustainability', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(367, 24, 16, 'Sales Experience', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(368, 24, 16, 'Willing To Work On Holidays', 1, 'no', 16, '2020-09-03 04:58:54', 1),
(369, 9, 8, 'Appearance', 0, '', 8, '2020-09-03 06:20:44', 1),
(370, 9, 8, 'Attitude', 0, '', 8, '2020-09-03 06:20:44', 1),
(371, 9, 8, 'Communication (Tamil)', 1, '', 8, '2020-09-03 06:20:44', 1),
(372, 9, 8, 'Communication (English)', 1, '', 8, '2020-09-03 06:20:44', 1),
(373, 9, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:20:44', 1),
(374, 9, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:20:44', 1),
(375, 9, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:20:44', 1),
(376, 9, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:20:44', 1),
(377, 9, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:20:44', 1),
(378, 9, 8, 'Patient', 0, '', 8, '2020-09-03 06:20:44', 1),
(379, 9, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:20:44', 1),
(380, 9, 8, 'Appearance', 0, '', 8, '2020-09-03 06:20:45', 1),
(381, 9, 8, 'Attitude', 0, '', 8, '2020-09-03 06:20:45', 1),
(382, 9, 8, 'Communication (Tamil)', 1, '', 8, '2020-09-03 06:20:45', 1),
(383, 9, 8, 'Communication (English)', 1, '', 8, '2020-09-03 06:20:45', 1),
(384, 9, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:20:45', 1),
(385, 9, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:20:45', 1),
(386, 9, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:20:45', 1),
(387, 9, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:20:45', 1),
(388, 9, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:20:45', 1),
(389, 9, 8, 'Patient', 0, '', 8, '2020-09-03 06:20:45', 1),
(390, 9, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:20:45', 1),
(391, 9, 8, 'Appearance', 0, '', 8, '2020-09-03 06:20:45', 1),
(392, 9, 8, 'Attitude', 0, '', 8, '2020-09-03 06:20:45', 1),
(393, 9, 8, 'Communication (Tamil)', 1, '', 8, '2020-09-03 06:20:45', 1),
(394, 9, 8, 'Communication (English)', 1, '', 8, '2020-09-03 06:20:45', 1),
(395, 9, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:20:45', 1),
(396, 9, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:20:45', 1),
(397, 9, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:20:45', 1),
(398, 9, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:20:45', 1),
(399, 9, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:20:45', 1),
(400, 9, 8, 'Patient', 0, '', 8, '2020-09-03 06:20:45', 1),
(401, 9, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:20:45', 1),
(402, 9, 8, 'Appearance', 0, '', 8, '2020-09-03 06:20:45', 1),
(403, 9, 8, 'Attitude', 0, '', 8, '2020-09-03 06:20:45', 1),
(404, 9, 8, 'Communication (Tamil)', 1, '', 8, '2020-09-03 06:20:45', 1),
(405, 9, 8, 'Communication (English)', 1, '', 8, '2020-09-03 06:20:45', 1),
(406, 9, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:20:45', 1),
(407, 9, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:20:45', 1),
(408, 9, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:20:45', 1),
(409, 9, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:20:45', 1),
(410, 9, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:20:45', 1),
(411, 9, 8, 'Patient', 0, '', 8, '2020-09-03 06:20:45', 1),
(412, 9, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:20:45', 1),
(413, 14, 8, 'Appearance', 0, '', 8, '2020-09-03 06:22:40', 1),
(414, 14, 8, 'Attitude', 0, '', 8, '2020-09-03 06:22:40', 1),
(415, 14, 8, 'Communication (Tamil)', 1, '', 8, '2020-09-03 06:22:40', 1),
(416, 14, 8, 'Communication (English)', 1, '', 8, '2020-09-03 06:22:40', 1),
(417, 14, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:22:40', 1),
(418, 14, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:22:40', 1),
(419, 14, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:22:40', 1),
(420, 14, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:22:40', 1),
(421, 14, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:22:40', 1),
(422, 14, 8, 'Patient', 0, '', 8, '2020-09-03 06:22:40', 1),
(423, 14, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:22:40', 1),
(424, 14, 8, 'Appearance', 0, '', 8, '2020-09-03 06:22:40', 1),
(425, 14, 8, 'Attitude', 0, '', 8, '2020-09-03 06:22:40', 1),
(426, 14, 8, 'Communication (Tamil)', 1, '', 8, '2020-09-03 06:22:40', 1),
(427, 14, 8, 'Communication (English)', 1, '', 8, '2020-09-03 06:22:40', 1),
(428, 14, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:22:40', 1),
(429, 14, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:22:40', 1),
(430, 14, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:22:40', 1),
(431, 14, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:22:40', 1),
(432, 14, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:22:40', 1),
(433, 14, 8, 'Patient', 0, '', 8, '2020-09-03 06:22:40', 1),
(434, 14, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:22:40', 1),
(435, 14, 8, 'Appearance', 0, '', 8, '2020-09-03 06:22:40', 1),
(436, 14, 8, 'Attitude', 0, '', 8, '2020-09-03 06:22:40', 1),
(437, 14, 8, 'Communication (Tamil)', 1, '', 8, '2020-09-03 06:22:40', 1),
(438, 14, 8, 'Communication (English)', 1, '', 8, '2020-09-03 06:22:40', 1),
(439, 14, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:22:40', 1),
(440, 14, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:22:40', 1),
(441, 14, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:22:40', 1),
(442, 14, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:22:40', 1),
(443, 14, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:22:40', 1),
(444, 14, 8, 'Patient', 0, '', 8, '2020-09-03 06:22:40', 1),
(445, 14, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:22:40', 1),
(446, 14, 8, 'Appearance', 0, '', 8, '2020-09-03 06:22:40', 1),
(447, 14, 8, 'Attitude', 0, '', 8, '2020-09-03 06:22:40', 1),
(448, 14, 8, 'Communication (Tamil)', 1, '', 8, '2020-09-03 06:22:40', 1),
(449, 14, 8, 'Communication (English)', 1, '', 8, '2020-09-03 06:22:40', 1),
(450, 14, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:22:40', 1),
(451, 14, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:22:40', 1),
(452, 14, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:22:40', 1),
(453, 14, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:22:40', 1),
(454, 14, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:22:40', 1),
(455, 14, 8, 'Patient', 0, '', 8, '2020-09-03 06:22:40', 1),
(456, 14, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:22:40', 1),
(457, 14, 8, 'Appearance', 0, '', 8, '2020-09-03 06:22:41', 1),
(458, 14, 8, 'Attitude', 0, '', 8, '2020-09-03 06:22:41', 1),
(459, 14, 8, 'Communication (Tamil)', 1, '', 8, '2020-09-03 06:22:41', 1),
(460, 14, 8, 'Communication (English)', 1, '', 8, '2020-09-03 06:22:41', 1),
(461, 14, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:22:41', 1),
(462, 14, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:22:41', 1),
(463, 14, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:22:41', 1),
(464, 14, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:22:41', 1),
(465, 14, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:22:41', 1),
(466, 14, 8, 'Patient', 0, '', 8, '2020-09-03 06:22:41', 1),
(467, 14, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:22:41', 1),
(468, 14, 8, 'Appearance', 0, '', 8, '2020-09-03 06:22:41', 1),
(469, 14, 8, 'Attitude', 0, '', 8, '2020-09-03 06:22:41', 1),
(470, 14, 8, 'Communication (Tamil)', 1, '', 8, '2020-09-03 06:22:41', 1),
(471, 14, 8, 'Communication (English)', 1, '', 8, '2020-09-03 06:22:41', 1),
(472, 14, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:22:41', 1),
(473, 14, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:22:41', 1),
(474, 14, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:22:41', 1),
(475, 14, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:22:41', 1),
(476, 14, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:22:41', 1),
(477, 14, 8, 'Patient', 0, '', 8, '2020-09-03 06:22:41', 1),
(478, 14, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:22:41', 1),
(479, 15, 8, 'Appearance', 0, '', 8, '2020-09-03 06:24:23', 1),
(480, 15, 8, 'Attitude', 0, '', 8, '2020-09-03 06:24:23', 1),
(481, 15, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:24:23', 1),
(482, 15, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:24:23', 1),
(483, 15, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:24:23', 1),
(484, 15, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:24:23', 1),
(485, 15, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:24:23', 1),
(486, 15, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:24:23', 1),
(487, 15, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:24:23', 1),
(488, 15, 8, 'Patient', 0, '', 8, '2020-09-03 06:24:23', 1),
(489, 15, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:24:23', 1),
(490, 15, 8, 'Appearance', 0, '', 8, '2020-09-03 06:24:24', 1),
(491, 15, 8, 'Attitude', 0, '', 8, '2020-09-03 06:24:24', 1),
(492, 15, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:24:24', 1),
(493, 15, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:24:24', 1),
(494, 15, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:24:24', 1),
(495, 15, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:24:24', 1),
(496, 15, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:24:24', 1),
(497, 15, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:24:24', 1),
(498, 15, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:24:24', 1),
(499, 15, 8, 'Patient', 0, '', 8, '2020-09-03 06:24:24', 1),
(500, 15, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:24:24', 1),
(501, 15, 8, 'Appearance', 0, '', 8, '2020-09-03 06:24:24', 1),
(502, 15, 8, 'Attitude', 0, '', 8, '2020-09-03 06:24:24', 1),
(503, 15, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:24:24', 1),
(504, 15, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:24:24', 1),
(505, 15, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:24:24', 1),
(506, 15, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:24:24', 1),
(507, 15, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:24:24', 1),
(508, 15, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:24:24', 1),
(509, 15, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:24:24', 1),
(510, 15, 8, 'Patient', 0, '', 8, '2020-09-03 06:24:24', 1),
(511, 15, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:24:24', 1),
(512, 15, 8, 'Appearance', 0, '', 8, '2020-09-03 06:24:24', 1),
(513, 15, 8, 'Attitude', 0, '', 8, '2020-09-03 06:24:24', 1),
(514, 15, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:24:24', 1),
(515, 15, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:24:24', 1),
(516, 15, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:24:24', 1),
(517, 15, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:24:24', 1),
(518, 15, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:24:24', 1),
(519, 15, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:24:24', 1),
(520, 15, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:24:24', 1),
(521, 15, 8, 'Patient', 0, '', 8, '2020-09-03 06:24:24', 1),
(522, 15, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:24:24', 1),
(523, 15, 8, 'Appearance', 0, '', 8, '2020-09-03 06:24:24', 1),
(524, 15, 8, 'Attitude', 0, '', 8, '2020-09-03 06:24:24', 1),
(525, 15, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:24:24', 1),
(526, 15, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:24:24', 1),
(527, 15, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:24:24', 1),
(528, 15, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:24:24', 1),
(529, 15, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:24:24', 1),
(530, 15, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:24:24', 1),
(531, 15, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:24:24', 1),
(532, 15, 8, 'Patient', 0, '', 8, '2020-09-03 06:24:24', 1),
(533, 15, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:24:24', 1),
(534, 15, 8, 'Appearance', 0, '', 8, '2020-09-03 06:24:24', 1),
(535, 15, 8, 'Attitude', 0, '', 8, '2020-09-03 06:24:24', 1),
(536, 15, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:24:24', 1),
(537, 15, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:24:24', 1),
(538, 15, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:24:24', 1),
(539, 15, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:24:24', 1),
(540, 15, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:24:24', 1),
(541, 15, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:24:24', 1),
(542, 15, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:24:24', 1),
(543, 15, 8, 'Patient', 0, '', 8, '2020-09-03 06:24:24', 1),
(544, 15, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:24:24', 1),
(545, 15, 8, 'Appearance', 0, '', 8, '2020-09-03 06:24:24', 1),
(546, 15, 8, 'Attitude', 0, '', 8, '2020-09-03 06:24:24', 1),
(547, 15, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:24:24', 1),
(548, 15, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:24:24', 1),
(549, 15, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:24:24', 1),
(550, 15, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:24:24', 1),
(551, 15, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:24:24', 1),
(552, 15, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:24:24', 1),
(553, 15, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:24:24', 1),
(554, 15, 8, 'Patient', 0, '', 8, '2020-09-03 06:24:24', 1),
(555, 15, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:24:24', 1),
(556, 18, 8, 'Appearance', 0, '', 8, '2020-09-03 06:26:06', 1),
(557, 18, 8, 'Attitude', 0, '', 8, '2020-09-03 06:26:06', 1),
(558, 18, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:26:06', 1),
(559, 18, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:26:06', 1),
(560, 18, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(561, 18, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:26:06', 1),
(562, 18, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 06:26:06', 1),
(563, 18, 8, 'Observation Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(564, 18, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:26:06', 1),
(565, 18, 8, 'Patient', 0, '', 8, '2020-09-03 06:26:06', 1),
(566, 18, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:26:06', 1),
(567, 18, 8, 'Sales Experience', 0, '', 8, '2020-09-03 06:26:06', 1),
(568, 18, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 06:26:06', 1),
(569, 18, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 06:26:06', 1),
(570, 18, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 06:26:06', 1),
(571, 18, 8, 'Appearance', 0, '', 8, '2020-09-03 06:26:06', 1),
(572, 18, 8, 'Attitude', 0, '', 8, '2020-09-03 06:26:06', 1),
(573, 18, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:26:06', 1),
(574, 18, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:26:06', 1),
(575, 18, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(576, 18, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:26:06', 1),
(577, 18, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 06:26:06', 1),
(578, 18, 8, 'Observation Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(579, 18, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:26:06', 1),
(580, 18, 8, 'Patient', 0, '', 8, '2020-09-03 06:26:06', 1),
(581, 18, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:26:06', 1),
(582, 18, 8, 'Sales Experience', 0, '', 8, '2020-09-03 06:26:06', 1),
(583, 18, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 06:26:06', 1),
(584, 18, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 06:26:06', 1),
(585, 18, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 06:26:06', 1),
(586, 18, 8, 'Appearance', 0, '', 8, '2020-09-03 06:26:06', 1),
(587, 18, 8, 'Attitude', 0, '', 8, '2020-09-03 06:26:06', 1),
(588, 18, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:26:06', 1),
(589, 18, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:26:06', 1),
(590, 18, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(591, 18, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:26:06', 1),
(592, 18, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 06:26:06', 1),
(593, 18, 8, 'Observation Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(594, 18, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:26:06', 1),
(595, 18, 8, 'Patient', 0, '', 8, '2020-09-03 06:26:06', 1),
(596, 18, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:26:06', 1),
(597, 18, 8, 'Sales Experience', 0, '', 8, '2020-09-03 06:26:06', 1),
(598, 18, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 06:26:06', 1),
(599, 18, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 06:26:06', 1),
(600, 18, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 06:26:06', 1),
(601, 18, 8, 'Appearance', 0, '', 8, '2020-09-03 06:26:06', 1),
(602, 18, 8, 'Attitude', 0, '', 8, '2020-09-03 06:26:06', 1),
(603, 18, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:26:06', 1),
(604, 18, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:26:06', 1),
(605, 18, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(606, 18, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:26:06', 1),
(607, 18, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 06:26:06', 1),
(608, 18, 8, 'Observation Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(609, 18, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:26:06', 1),
(610, 18, 8, 'Patient', 0, '', 8, '2020-09-03 06:26:06', 1),
(611, 18, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:26:06', 1),
(612, 18, 8, 'Sales Experience', 0, '', 8, '2020-09-03 06:26:06', 1),
(613, 18, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 06:26:06', 1),
(614, 18, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 06:26:06', 1),
(615, 18, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 06:26:06', 1),
(616, 18, 8, 'Appearance', 0, '', 8, '2020-09-03 06:26:06', 1),
(617, 18, 8, 'Attitude', 0, '', 8, '2020-09-03 06:26:06', 1),
(618, 18, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:26:06', 1),
(619, 18, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:26:06', 1),
(620, 18, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(621, 18, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:26:06', 1),
(622, 18, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 06:26:06', 1),
(623, 18, 8, 'Observation Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(624, 18, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:26:06', 1),
(625, 18, 8, 'Patient', 0, '', 8, '2020-09-03 06:26:06', 1),
(626, 18, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:26:06', 1),
(627, 18, 8, 'Sales Experience', 0, '', 8, '2020-09-03 06:26:06', 1),
(628, 18, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 06:26:06', 1),
(629, 18, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 06:26:06', 1),
(630, 18, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 06:26:06', 1),
(631, 18, 8, 'Appearance', 0, '', 8, '2020-09-03 06:26:06', 1),
(632, 18, 8, 'Attitude', 0, '', 8, '2020-09-03 06:26:06', 1),
(633, 18, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:26:06', 1),
(634, 18, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:26:06', 1),
(635, 18, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(636, 18, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:26:06', 1),
(637, 18, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 06:26:06', 1),
(638, 18, 8, 'Observation Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(639, 18, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:26:06', 1),
(640, 18, 8, 'Patient', 0, '', 8, '2020-09-03 06:26:06', 1),
(641, 18, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:26:06', 1),
(642, 18, 8, 'Sales Experience', 0, '', 8, '2020-09-03 06:26:06', 1),
(643, 18, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 06:26:06', 1),
(644, 18, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 06:26:06', 1),
(645, 18, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 06:26:06', 1),
(646, 18, 8, 'Appearance', 0, '', 8, '2020-09-03 06:26:06', 1),
(647, 18, 8, 'Attitude', 0, '', 8, '2020-09-03 06:26:06', 1),
(648, 18, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:26:06', 1),
(649, 18, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:26:06', 1),
(650, 18, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(651, 18, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:26:06', 1),
(652, 18, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 06:26:06', 1),
(653, 18, 8, 'Observation Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(654, 18, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:26:06', 1),
(655, 18, 8, 'Patient', 0, '', 8, '2020-09-03 06:26:06', 1),
(656, 18, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:26:06', 1),
(657, 18, 8, 'Sales Experience', 0, '', 8, '2020-09-03 06:26:06', 1),
(658, 18, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 06:26:06', 1),
(659, 18, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 06:26:06', 1),
(660, 18, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 06:26:06', 1),
(661, 18, 8, 'Appearance', 0, '', 8, '2020-09-03 06:26:06', 1),
(662, 18, 8, 'Attitude', 0, '', 8, '2020-09-03 06:26:06', 1),
(663, 18, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:26:06', 1),
(664, 18, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:26:06', 1),
(665, 18, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(666, 18, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:26:06', 1),
(667, 18, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 06:26:06', 1),
(668, 18, 8, 'Observation Skills', 0, '', 8, '2020-09-03 06:26:06', 1),
(669, 18, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:26:06', 1),
(670, 18, 8, 'Patient', 0, '', 8, '2020-09-03 06:26:06', 1),
(671, 18, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:26:06', 1),
(672, 18, 8, 'Sales Experience', 0, '', 8, '2020-09-03 06:26:06', 1),
(673, 18, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 06:26:06', 1),
(674, 18, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 06:26:06', 1),
(675, 18, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 06:26:06', 1),
(676, 30, 8, 'Appearance', 0, '', 8, '2020-09-03 06:27:28', 1),
(677, 30, 8, 'Attitude', 0, '', 8, '2020-09-03 06:27:28', 1),
(678, 30, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:27:28', 1),
(679, 30, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:27:28', 1),
(680, 30, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:27:28', 1),
(681, 30, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:27:28', 1),
(682, 30, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:27:28', 1),
(683, 30, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:27:28', 1),
(684, 30, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:27:28', 1),
(685, 30, 8, 'Patient', 0, '', 8, '2020-09-03 06:27:28', 1),
(686, 30, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:27:28', 1),
(687, 30, 8, 'Appearance', 0, '', 8, '2020-09-03 06:27:28', 1),
(688, 30, 8, 'Attitude', 0, '', 8, '2020-09-03 06:27:28', 1),
(689, 30, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:27:28', 1),
(690, 30, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:27:28', 1),
(691, 30, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:27:28', 1),
(692, 30, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:27:28', 1),
(693, 30, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:27:28', 1),
(694, 30, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:27:28', 1),
(695, 30, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:27:28', 1),
(696, 30, 8, 'Patient', 0, '', 8, '2020-09-03 06:27:28', 1),
(697, 30, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:27:28', 1),
(698, 30, 8, 'Appearance', 0, '', 8, '2020-09-03 06:27:28', 1),
(699, 30, 8, 'Attitude', 0, '', 8, '2020-09-03 06:27:28', 1),
(700, 30, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:27:28', 1),
(701, 30, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:27:28', 1),
(702, 30, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:27:28', 1),
(703, 30, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:27:28', 1),
(704, 30, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:27:28', 1),
(705, 30, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:27:28', 1),
(706, 30, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:27:28', 1),
(707, 30, 8, 'Patient', 0, '', 8, '2020-09-03 06:27:28', 1),
(708, 30, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:27:28', 1),
(709, 30, 8, 'Appearance', 0, '', 8, '2020-09-03 06:27:29', 1),
(710, 30, 8, 'Attitude', 0, '', 8, '2020-09-03 06:27:29', 1),
(711, 30, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:27:29', 1),
(712, 30, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:27:29', 1),
(713, 30, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:27:29', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(714, 30, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:27:29', 1),
(715, 30, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:27:29', 1),
(716, 30, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:27:29', 1),
(717, 30, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:27:29', 1),
(718, 30, 8, 'Patient', 0, '', 8, '2020-09-03 06:27:29', 1),
(719, 30, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:27:29', 1),
(720, 30, 8, 'Appearance', 0, '', 8, '2020-09-03 06:27:29', 1),
(721, 30, 8, 'Attitude', 0, '', 8, '2020-09-03 06:27:29', 1),
(722, 30, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:27:29', 1),
(723, 30, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:27:29', 1),
(724, 30, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:27:29', 1),
(725, 30, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:27:29', 1),
(726, 30, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:27:29', 1),
(727, 30, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:27:29', 1),
(728, 30, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:27:29', 1),
(729, 30, 8, 'Patient', 0, '', 8, '2020-09-03 06:27:29', 1),
(730, 30, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:27:29', 1),
(731, 30, 8, 'Appearance', 0, '', 8, '2020-09-03 06:27:29', 1),
(732, 30, 8, 'Attitude', 0, '', 8, '2020-09-03 06:27:29', 1),
(733, 30, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:27:29', 1),
(734, 30, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:27:29', 1),
(735, 30, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:27:29', 1),
(736, 30, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:27:29', 1),
(737, 30, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:27:29', 1),
(738, 30, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:27:29', 1),
(739, 30, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:27:29', 1),
(740, 30, 8, 'Patient', 0, '', 8, '2020-09-03 06:27:29', 1),
(741, 30, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:27:29', 1),
(742, 30, 8, 'Appearance', 0, '', 8, '2020-09-03 06:27:29', 1),
(743, 30, 8, 'Attitude', 0, '', 8, '2020-09-03 06:27:29', 1),
(744, 30, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:27:29', 1),
(745, 30, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:27:29', 1),
(746, 30, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:27:29', 1),
(747, 30, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:27:29', 1),
(748, 30, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:27:29', 1),
(749, 30, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:27:29', 1),
(750, 30, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:27:29', 1),
(751, 30, 8, 'Patient', 0, '', 8, '2020-09-03 06:27:29', 1),
(752, 30, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:27:29', 1),
(753, 30, 8, 'Appearance', 0, '', 8, '2020-09-03 06:27:29', 1),
(754, 30, 8, 'Attitude', 0, '', 8, '2020-09-03 06:27:29', 1),
(755, 30, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:27:29', 1),
(756, 30, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:27:29', 1),
(757, 30, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:27:29', 1),
(758, 30, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:27:29', 1),
(759, 30, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:27:29', 1),
(760, 30, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:27:29', 1),
(761, 30, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:27:29', 1),
(762, 30, 8, 'Patient', 0, '', 8, '2020-09-03 06:27:29', 1),
(763, 30, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:27:29', 1),
(764, 30, 8, 'Appearance', 0, '', 8, '2020-09-03 06:27:29', 1),
(765, 30, 8, 'Attitude', 0, '', 8, '2020-09-03 06:27:29', 1),
(766, 30, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:27:29', 1),
(767, 30, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:27:29', 1),
(768, 30, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:27:29', 1),
(769, 30, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:27:29', 1),
(770, 30, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:27:29', 1),
(771, 30, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:27:29', 1),
(772, 30, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:27:29', 1),
(773, 30, 8, 'Patient', 0, '', 8, '2020-09-03 06:27:29', 1),
(774, 30, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:27:29', 1),
(775, 13, 8, 'Appearance', 0, '', 8, '2020-09-03 06:29:35', 1),
(776, 13, 8, 'Attitude', 0, '', 8, '2020-09-03 06:29:35', 1),
(777, 13, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:29:35', 1),
(778, 13, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:29:35', 1),
(779, 13, 8, 'convincing Skills', 0, '', 8, '2020-09-03 06:29:35', 1),
(780, 13, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:29:35', 1),
(781, 13, 8, 'Importance (Job)', 0, '', 8, '2020-09-03 06:29:35', 1),
(782, 13, 8, 'Observation skills', 0, '', 8, '2020-09-03 06:29:35', 1),
(783, 13, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:29:35', 1),
(784, 13, 8, 'Patient', 0, '', 8, '2020-09-03 06:29:35', 1),
(785, 13, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:29:35', 1),
(786, 23, 8, 'Appearance', 0, '', 8, '2020-09-03 06:31:01', 1),
(787, 23, 8, 'Attitude', 0, '', 8, '2020-09-03 06:31:01', 1),
(788, 23, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:31:01', 1),
(789, 23, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:31:01', 1),
(790, 23, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 06:31:01', 1),
(791, 23, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:31:01', 1),
(792, 23, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 06:31:01', 1),
(793, 23, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 06:31:01', 1),
(794, 23, 8, 'Observation Skills', 0, '', 8, '2020-09-03 06:31:01', 1),
(795, 23, 8, 'Patient', 0, '', 8, '2020-09-03 06:31:01', 1),
(796, 23, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:31:01', 1),
(797, 23, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 06:31:01', 1),
(798, 23, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:31:01', 1),
(799, 23, 8, 'Sales Experience', 0, '', 8, '2020-09-03 06:31:01', 1),
(800, 23, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 06:31:01', 1),
(801, 23, 8, 'Appearance', 0, '', 8, '2020-09-03 06:31:01', 1),
(802, 23, 8, 'Attitude', 0, '', 8, '2020-09-03 06:31:01', 1),
(803, 23, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:31:01', 1),
(804, 23, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:31:01', 1),
(805, 23, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 06:31:01', 1),
(806, 23, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:31:01', 1),
(807, 23, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 06:31:01', 1),
(808, 23, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 06:31:01', 1),
(809, 23, 8, 'Observation Skills', 0, '', 8, '2020-09-03 06:31:01', 1),
(810, 23, 8, 'Patient', 0, '', 8, '2020-09-03 06:31:01', 1),
(811, 23, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:31:01', 1),
(812, 23, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 06:31:01', 1),
(813, 23, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:31:01', 1),
(814, 23, 8, 'Sales Experience', 0, '', 8, '2020-09-03 06:31:01', 1),
(815, 23, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 06:31:01', 1),
(816, 23, 8, 'Appearance', 0, '', 8, '2020-09-03 06:31:01', 1),
(817, 23, 8, 'Attitude', 0, '', 8, '2020-09-03 06:31:01', 1),
(818, 23, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:31:01', 1),
(819, 23, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:31:01', 1),
(820, 23, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 06:31:01', 1),
(821, 23, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:31:01', 1),
(822, 23, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 06:31:01', 1),
(823, 23, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 06:31:01', 1),
(824, 23, 8, 'Observation Skills', 0, '', 8, '2020-09-03 06:31:01', 1),
(825, 23, 8, 'Patient', 0, '', 8, '2020-09-03 06:31:01', 1),
(826, 23, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:31:01', 1),
(827, 23, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 06:31:01', 1),
(828, 23, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:31:01', 1),
(829, 23, 8, 'Sales Experience', 0, '', 8, '2020-09-03 06:31:01', 1),
(830, 23, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 06:31:01', 1),
(831, 23, 8, 'Appearance', 0, '', 8, '2020-09-03 06:31:01', 1),
(832, 23, 8, 'Attitude', 0, '', 8, '2020-09-03 06:31:01', 1),
(833, 23, 8, 'Communication (English)', 0, '', 8, '2020-09-03 06:31:01', 1),
(834, 23, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 06:31:01', 1),
(835, 23, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 06:31:01', 1),
(836, 23, 8, 'Confidence Level', 0, '', 8, '2020-09-03 06:31:01', 1),
(837, 23, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 06:31:01', 1),
(838, 23, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 06:31:01', 1),
(839, 23, 8, 'Observation Skills', 0, '', 8, '2020-09-03 06:31:01', 1),
(840, 23, 8, 'Patient', 0, '', 8, '2020-09-03 06:31:01', 1),
(841, 23, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 06:31:01', 1),
(842, 23, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 06:31:01', 1),
(843, 23, 8, 'Sustainability', 0, '', 8, '2020-09-03 06:31:01', 1),
(844, 23, 8, 'Sales Experience', 0, '', 8, '2020-09-03 06:31:01', 1),
(845, 23, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 06:31:01', 1),
(846, 1, 11, 'Appearance', 0, '', 11, '2020-09-03 06:57:17', 1),
(847, 1, 11, 'Attitude', 0, '', 11, '2020-09-03 06:57:17', 1),
(848, 1, 11, 'Communication (Tamil)', 0, '', 11, '2020-09-03 06:57:17', 1),
(849, 1, 11, 'Communication (English)', 0, '', 11, '2020-09-03 06:57:17', 1),
(850, 1, 11, 'convincing Skills', 0, '', 11, '2020-09-03 06:57:17', 1),
(851, 1, 11, 'Confidence Level', 0, '', 11, '2020-09-03 06:57:17', 1),
(852, 1, 11, 'Importance (Job)', 0, '', 11, '2020-09-03 06:57:17', 1),
(853, 1, 11, 'Observation skills', 0, '', 11, '2020-09-03 06:57:17', 1),
(854, 1, 11, 'Pressure Handling', 0, '', 11, '2020-09-03 06:57:17', 1),
(855, 1, 11, 'Patient', 0, '', 11, '2020-09-03 06:57:17', 1),
(856, 1, 11, 'Sustainability', 0, '', 11, '2020-09-03 06:57:17', 1),
(857, 20, 11, 'Appearance', 0, '', 11, '2020-09-03 06:58:22', 1),
(858, 20, 11, 'Attitude', 0, '', 11, '2020-09-03 06:58:22', 1),
(859, 20, 11, 'Communication (English)', 0, '', 11, '2020-09-03 06:58:22', 1),
(860, 20, 11, 'Communication (Tamil)', 0, '', 11, '2020-09-03 06:58:22', 1),
(861, 20, 11, 'Convincing Skills', 0, '', 11, '2020-09-03 06:58:22', 1),
(862, 20, 11, 'Confidence Level', 0, '', 11, '2020-09-03 06:58:22', 1),
(863, 20, 11, 'Existing Experience Analyze', 0, '', 11, '2020-09-03 06:58:22', 1),
(864, 20, 11, 'Importance Of Job', 0, '', 11, '2020-09-03 06:58:22', 1),
(865, 20, 11, 'Observation Skills', 0, '', 11, '2020-09-03 06:58:22', 1),
(866, 20, 11, 'Patient', 0, '', 11, '2020-09-03 06:58:22', 1),
(867, 20, 11, 'Pressure Handling', 0, '', 11, '2020-09-03 06:58:22', 1),
(868, 20, 11, 'Practical Challenges Outcome', 0, '', 11, '2020-09-03 06:58:22', 1),
(869, 20, 11, 'Sustainability', 0, '', 11, '2020-09-03 06:58:22', 1),
(870, 20, 11, 'Sales Experience', 0, '', 11, '2020-09-03 06:58:22', 1),
(871, 20, 11, 'Willing To Work On Holidays', 0, '', 11, '2020-09-03 06:58:22', 1),
(872, 20, 11, 'Appearance', 0, '', 11, '2020-09-03 06:58:22', 1),
(873, 20, 11, 'Attitude', 0, '', 11, '2020-09-03 06:58:22', 1),
(874, 20, 11, 'Communication (English)', 0, '', 11, '2020-09-03 06:58:22', 1),
(875, 20, 11, 'Communication (Tamil)', 0, '', 11, '2020-09-03 06:58:22', 1),
(876, 20, 11, 'Convincing Skills', 0, '', 11, '2020-09-03 06:58:22', 1),
(877, 20, 11, 'Confidence Level', 0, '', 11, '2020-09-03 06:58:22', 1),
(878, 20, 11, 'Existing Experience Analyze', 0, '', 11, '2020-09-03 06:58:22', 1),
(879, 20, 11, 'Importance Of Job', 0, '', 11, '2020-09-03 06:58:22', 1),
(880, 20, 11, 'Observation Skills', 0, '', 11, '2020-09-03 06:58:22', 1),
(881, 20, 11, 'Patient', 0, '', 11, '2020-09-03 06:58:22', 1),
(882, 20, 11, 'Pressure Handling', 0, '', 11, '2020-09-03 06:58:22', 1),
(883, 20, 11, 'Practical Challenges Outcome', 0, '', 11, '2020-09-03 06:58:22', 1),
(884, 20, 11, 'Sustainability', 0, '', 11, '2020-09-03 06:58:22', 1),
(885, 20, 11, 'Sales Experience', 0, '', 11, '2020-09-03 06:58:22', 1),
(886, 20, 11, 'Willing To Work On Holidays', 0, '', 11, '2020-09-03 06:58:22', 1),
(887, 22, 25, 'Appearance', 0, '', 25, '2020-09-03 06:59:55', 1),
(888, 22, 25, 'Attitude', 0, '', 25, '2020-09-03 06:59:55', 1),
(889, 22, 25, 'Communication (English)', 0, '', 25, '2020-09-03 06:59:55', 1),
(890, 22, 25, 'Communication (Tamil)', 0, '', 25, '2020-09-03 06:59:55', 1),
(891, 22, 25, 'Convincing Skills', 0, '', 25, '2020-09-03 06:59:55', 1),
(892, 22, 25, 'Confidence Level', 0, '', 25, '2020-09-03 06:59:55', 1),
(893, 22, 25, 'Existing Experience Analyze', 0, '', 25, '2020-09-03 06:59:55', 1),
(894, 22, 25, 'Importance Of Job', 0, '', 25, '2020-09-03 06:59:55', 1),
(895, 22, 25, 'Observation Skills', 0, '', 25, '2020-09-03 06:59:55', 1),
(896, 22, 25, 'Patient', 0, '', 25, '2020-09-03 06:59:55', 1),
(897, 22, 25, 'Pressure Handling', 0, '', 25, '2020-09-03 06:59:55', 1),
(898, 22, 25, 'Practical Challenges Outcome', 0, '', 25, '2020-09-03 06:59:55', 1),
(899, 22, 25, 'Sustainability', 0, '', 25, '2020-09-03 06:59:55', 1),
(900, 22, 25, 'Sales Experience', 0, '', 25, '2020-09-03 06:59:55', 1),
(901, 22, 25, 'Willing To Work On Holidays', 0, '', 25, '2020-09-03 06:59:55', 1),
(902, 25, 13, 'Appearance', 0, '', 13, '2020-09-03 07:01:46', 1),
(903, 25, 13, 'Attitude', 0, '', 13, '2020-09-03 07:01:46', 1),
(904, 25, 13, 'Communication (English)', 0, '', 13, '2020-09-03 07:01:46', 1),
(905, 25, 13, 'Communication (Tamil)', 0, '', 13, '2020-09-03 07:01:46', 1),
(906, 25, 13, 'Convincing Skills', 0, '', 13, '2020-09-03 07:01:46', 1),
(907, 25, 13, 'Confidence Level', 0, '', 13, '2020-09-03 07:01:46', 1),
(908, 25, 13, 'Existing Experience Analyze', 0, '', 13, '2020-09-03 07:01:46', 1),
(909, 25, 13, 'Importance Of Job', 0, '', 13, '2020-09-03 07:01:46', 1),
(910, 25, 13, 'Observation Skills', 0, '', 13, '2020-09-03 07:01:46', 1),
(911, 25, 13, 'Patient', 0, '', 13, '2020-09-03 07:01:46', 1),
(912, 25, 13, 'Pressure Handling', 0, '', 13, '2020-09-03 07:01:46', 1),
(913, 25, 13, 'Practical Challenges Outcome', 0, '', 13, '2020-09-03 07:01:46', 1),
(914, 25, 13, 'Sustainability', 0, '', 13, '2020-09-03 07:01:46', 1),
(915, 25, 13, 'Sales Experience', 0, '', 13, '2020-09-03 07:01:46', 1),
(916, 25, 13, 'Willing To Work On Holidays', 0, '', 13, '2020-09-03 07:01:46', 1),
(917, 27, 8, 'Appearance', 0, '', 8, '2020-09-03 07:07:14', 1),
(918, 27, 8, 'Attitude', 0, '', 8, '2020-09-03 07:07:14', 1),
(919, 27, 8, 'Communication (English)', 0, '', 8, '2020-09-03 07:07:14', 1),
(920, 27, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 07:07:14', 1),
(921, 27, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 07:07:14', 1),
(922, 27, 8, 'Confidence Level', 0, '', 8, '2020-09-03 07:07:14', 1),
(923, 27, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 07:07:14', 1),
(924, 27, 8, 'Observation Skills', 0, '', 8, '2020-09-03 07:07:14', 1),
(925, 27, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 07:07:14', 1),
(926, 27, 8, 'Patient', 0, '', 8, '2020-09-03 07:07:14', 1),
(927, 27, 8, 'Sustainability', 0, '', 8, '2020-09-03 07:07:14', 1),
(928, 27, 8, 'Sales Experience', 0, '', 8, '2020-09-03 07:07:14', 1),
(929, 27, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 07:07:14', 1),
(930, 27, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 07:07:14', 1),
(931, 27, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 07:07:14', 1),
(932, 27, 8, 'Appearance', 0, '', 8, '2020-09-03 07:07:14', 1),
(933, 27, 8, 'Attitude', 0, '', 8, '2020-09-03 07:07:14', 1),
(934, 27, 8, 'Communication (English)', 0, '', 8, '2020-09-03 07:07:14', 1),
(935, 27, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 07:07:14', 1),
(936, 27, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 07:07:14', 1),
(937, 27, 8, 'Confidence Level', 0, '', 8, '2020-09-03 07:07:14', 1),
(938, 27, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 07:07:14', 1),
(939, 27, 8, 'Observation Skills', 0, '', 8, '2020-09-03 07:07:14', 1),
(940, 27, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 07:07:14', 1),
(941, 27, 8, 'Patient', 0, '', 8, '2020-09-03 07:07:14', 1),
(942, 27, 8, 'Sustainability', 0, '', 8, '2020-09-03 07:07:14', 1),
(943, 27, 8, 'Sales Experience', 0, '', 8, '2020-09-03 07:07:14', 1),
(944, 27, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 07:07:14', 1),
(945, 27, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 07:07:14', 1),
(946, 27, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 07:07:14', 1),
(947, 27, 8, 'Appearance', 0, '', 8, '2020-09-03 07:07:14', 1),
(948, 27, 8, 'Attitude', 0, '', 8, '2020-09-03 07:07:14', 1),
(949, 27, 8, 'Communication (English)', 0, '', 8, '2020-09-03 07:07:14', 1),
(950, 27, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 07:07:14', 1),
(951, 27, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 07:07:14', 1),
(952, 27, 8, 'Confidence Level', 0, '', 8, '2020-09-03 07:07:14', 1),
(953, 27, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 07:07:14', 1),
(954, 27, 8, 'Observation Skills', 0, '', 8, '2020-09-03 07:07:14', 1),
(955, 27, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 07:07:14', 1),
(956, 27, 8, 'Patient', 0, '', 8, '2020-09-03 07:07:14', 1),
(957, 27, 8, 'Sustainability', 0, '', 8, '2020-09-03 07:07:14', 1),
(958, 27, 8, 'Sales Experience', 0, '', 8, '2020-09-03 07:07:14', 1),
(959, 27, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 07:07:14', 1),
(960, 27, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 07:07:14', 1),
(961, 27, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 07:07:14', 1),
(962, 27, 8, 'Appearance', 0, '', 8, '2020-09-03 07:07:14', 1),
(963, 27, 8, 'Attitude', 0, '', 8, '2020-09-03 07:07:14', 1),
(964, 27, 8, 'Communication (English)', 0, '', 8, '2020-09-03 07:07:14', 1),
(965, 27, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 07:07:14', 1),
(966, 27, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 07:07:14', 1),
(967, 27, 8, 'Confidence Level', 0, '', 8, '2020-09-03 07:07:14', 1),
(968, 27, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 07:07:14', 1),
(969, 27, 8, 'Observation Skills', 0, '', 8, '2020-09-03 07:07:14', 1),
(970, 27, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 07:07:14', 1),
(971, 27, 8, 'Patient', 0, '', 8, '2020-09-03 07:07:14', 1),
(972, 27, 8, 'Sustainability', 0, '', 8, '2020-09-03 07:07:14', 1),
(973, 27, 8, 'Sales Experience', 0, '', 8, '2020-09-03 07:07:14', 1),
(974, 27, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 07:07:14', 1),
(975, 27, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 07:07:14', 1),
(976, 27, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 07:07:14', 1),
(977, 27, 8, 'Appearance', 0, '', 8, '2020-09-03 07:07:14', 1),
(978, 27, 8, 'Attitude', 0, '', 8, '2020-09-03 07:07:14', 1),
(979, 27, 8, 'Communication (English)', 0, '', 8, '2020-09-03 07:07:14', 1),
(980, 27, 8, 'Communication (Tamil)', 0, '', 8, '2020-09-03 07:07:14', 1),
(981, 27, 8, 'Convincing Skills', 0, '', 8, '2020-09-03 07:07:14', 1),
(982, 27, 8, 'Confidence Level', 0, '', 8, '2020-09-03 07:07:14', 1),
(983, 27, 8, 'Importance Of Job', 0, '', 8, '2020-09-03 07:07:14', 1),
(984, 27, 8, 'Observation Skills', 0, '', 8, '2020-09-03 07:07:14', 1),
(985, 27, 8, 'Pressure Handling', 0, '', 8, '2020-09-03 07:07:14', 1),
(986, 27, 8, 'Patient', 0, '', 8, '2020-09-03 07:07:14', 1),
(987, 27, 8, 'Sustainability', 0, '', 8, '2020-09-03 07:07:14', 1),
(988, 27, 8, 'Sales Experience', 0, '', 8, '2020-09-03 07:07:14', 1),
(989, 27, 8, 'Existing Experience Analyze', 0, '', 8, '2020-09-03 07:07:14', 1),
(990, 27, 8, 'Practical Challenges Outcome', 0, '', 8, '2020-09-03 07:07:14', 1),
(991, 27, 8, 'Willing To Work On Holidays', 0, '', 8, '2020-09-03 07:07:14', 1),
(992, 40, 28, 'Is Employee Clearly Understand the roles and Responsibility?', 3, 'nill', 28, '2020-09-04 12:09:25', 1),
(993, 40, 28, 'Communication Skills?', 3, 'nill', 28, '2020-09-04 12:09:25', 1),
(994, 40, 26, 'Is Employee Clearly Understand the roles and Responsibility?', 4, 'test', 26, '2020-09-04 12:11:37', 1),
(995, 40, 26, 'Communication Skills?', 4, 'test', 26, '2020-09-04 12:11:37', 1),
(996, 42, 8, 'Communication (English)', 1, '', 8, '2020-09-04 10:52:27', 1),
(997, 42, 8, 'Patient', 2, '', 8, '2020-09-04 10:52:27', 1),
(998, 42, 8, 'Sustainability', 1, '', 8, '2020-09-04 10:52:27', 1),
(999, 44, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 11:14:03', 1),
(1000, 44, 8, 'convincing Skills', 4, '', 8, '2020-09-04 11:14:03', 1),
(1001, 44, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 11:14:03', 1),
(1002, 44, 8, 'convincing Skills', 4, '', 8, '2020-09-04 11:14:03', 1),
(1003, 44, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 11:14:03', 1),
(1004, 44, 8, 'convincing Skills', 4, '', 8, '2020-09-04 11:14:03', 1),
(1005, 45, 8, 'Communication (Tamil)', 1, '', 8, '2020-09-04 11:23:50', 1),
(1006, 45, 8, 'Communication (English)', 1, '', 8, '2020-09-04 11:23:50', 1),
(1007, 45, 8, 'convincing Skills', 1, '', 8, '2020-09-04 11:23:50', 1),
(1008, 48, 8, 'Appearance', 2, '', 8, '2020-09-04 11:35:47', 1),
(1009, 48, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 11:35:47', 1),
(1010, 48, 8, 'Communication (English)', 3, '', 8, '2020-09-04 11:35:47', 1),
(1011, 48, 8, 'convincing Skills', 3, '', 8, '2020-09-04 11:35:47', 1),
(1012, 48, 8, 'Sustainability', 2, '', 8, '2020-09-04 11:35:47', 1),
(1013, 48, 8, 'Appearance', 2, '', 8, '2020-09-04 11:35:47', 1),
(1014, 48, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 11:35:47', 1),
(1015, 48, 8, 'Communication (English)', 3, '', 8, '2020-09-04 11:35:47', 1),
(1016, 48, 8, 'convincing Skills', 3, '', 8, '2020-09-04 11:35:47', 1),
(1017, 48, 8, 'Sustainability', 2, '', 8, '2020-09-04 11:35:47', 1),
(1018, 49, 8, 'Communication (Tamil)', 2, '', 8, '2020-09-04 11:47:22', 1),
(1019, 49, 8, 'Communication (English)', 1, '', 8, '2020-09-04 11:47:22', 1),
(1020, 49, 8, 'Communication (Tamil)', 2, '', 8, '2020-09-04 11:47:22', 1),
(1021, 49, 8, 'Communication (English)', 1, '', 8, '2020-09-04 11:47:22', 1),
(1022, 49, 8, 'Communication (Tamil)', 2, '', 8, '2020-09-04 11:47:23', 1),
(1023, 49, 8, 'Communication (English)', 1, '', 8, '2020-09-04 11:47:23', 1),
(1024, 50, 8, 'Communication (Tamil)', 2, '', 8, '2020-09-04 11:53:11', 1),
(1025, 50, 8, 'Communication (English)', 1, '', 8, '2020-09-04 11:53:11', 1),
(1026, 50, 8, 'Confidence Level', 1, '', 8, '2020-09-04 11:53:11', 1),
(1027, 50, 8, 'Sustainability', 2, '', 8, '2020-09-04 11:53:11', 1),
(1028, 50, 8, 'Communication (Tamil)', 2, '', 8, '2020-09-04 11:53:11', 1),
(1029, 50, 8, 'Communication (English)', 1, '', 8, '2020-09-04 11:53:11', 1),
(1030, 50, 8, 'Confidence Level', 1, '', 8, '2020-09-04 11:53:11', 1),
(1031, 50, 8, 'Sustainability', 2, '', 8, '2020-09-04 11:53:11', 1),
(1032, 50, 8, 'Communication (Tamil)', 2, '', 8, '2020-09-04 11:53:11', 1),
(1033, 50, 8, 'Communication (English)', 1, '', 8, '2020-09-04 11:53:11', 1),
(1034, 50, 8, 'Confidence Level', 1, '', 8, '2020-09-04 11:53:11', 1),
(1035, 50, 8, 'Sustainability', 2, '', 8, '2020-09-04 11:53:11', 1),
(1036, 50, 8, 'Communication (Tamil)', 2, '', 8, '2020-09-04 11:53:12', 1),
(1037, 50, 8, 'Communication (English)', 1, '', 8, '2020-09-04 11:53:12', 1),
(1038, 50, 8, 'Confidence Level', 1, '', 8, '2020-09-04 11:53:12', 1),
(1039, 50, 8, 'Sustainability', 2, '', 8, '2020-09-04 11:53:12', 1),
(1040, 50, 8, 'Communication (Tamil)', 2, '', 8, '2020-09-04 11:53:12', 1),
(1041, 50, 8, 'Communication (English)', 1, '', 8, '2020-09-04 11:53:12', 1),
(1042, 50, 8, 'Confidence Level', 1, '', 8, '2020-09-04 11:53:12', 1),
(1043, 50, 8, 'Sustainability', 2, '', 8, '2020-09-04 11:53:12', 1),
(1044, 50, 8, 'Communication (Tamil)', 2, '', 8, '2020-09-04 11:53:12', 1),
(1045, 50, 8, 'Communication (English)', 1, '', 8, '2020-09-04 11:53:12', 1),
(1046, 50, 8, 'Confidence Level', 1, '', 8, '2020-09-04 11:53:12', 1),
(1047, 50, 8, 'Sustainability', 2, '', 8, '2020-09-04 11:53:12', 1),
(1048, 60, 8, 'Appearance', 2, '', 8, '2020-09-04 12:24:14', 1),
(1049, 60, 8, 'Attitude', 2, '', 8, '2020-09-04 12:24:14', 1),
(1050, 60, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 12:24:14', 1),
(1051, 60, 8, 'Communication (English)', 2, '', 8, '2020-09-04 12:24:14', 1),
(1052, 60, 8, 'Appearance', 2, '', 8, '2020-09-04 12:24:14', 1),
(1053, 60, 8, 'Attitude', 2, '', 8, '2020-09-04 12:24:14', 1),
(1054, 60, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 12:24:14', 1),
(1055, 60, 8, 'Communication (English)', 2, '', 8, '2020-09-04 12:24:14', 1),
(1056, 60, 8, 'Appearance', 2, '', 8, '2020-09-04 12:24:14', 1),
(1057, 60, 8, 'Attitude', 2, '', 8, '2020-09-04 12:24:14', 1),
(1058, 60, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 12:24:14', 1),
(1059, 60, 8, 'Communication (English)', 2, '', 8, '2020-09-04 12:24:14', 1),
(1060, 60, 8, 'Appearance', 2, '', 8, '2020-09-04 12:24:14', 1),
(1061, 60, 8, 'Attitude', 2, '', 8, '2020-09-04 12:24:14', 1),
(1062, 60, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 12:24:14', 1),
(1063, 60, 8, 'Communication (English)', 2, '', 8, '2020-09-04 12:24:14', 1),
(1064, 60, 8, 'Appearance', 2, '', 8, '2020-09-04 12:24:14', 1),
(1065, 60, 8, 'Attitude', 2, '', 8, '2020-09-04 12:24:14', 1),
(1066, 60, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 12:24:14', 1),
(1067, 60, 8, 'Communication (English)', 2, '', 8, '2020-09-04 12:24:14', 1),
(1068, 60, 8, 'Appearance', 2, '', 8, '2020-09-04 12:24:14', 1),
(1069, 60, 8, 'Attitude', 2, '', 8, '2020-09-04 12:24:14', 1),
(1070, 60, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 12:24:14', 1),
(1071, 60, 8, 'Communication (English)', 2, '', 8, '2020-09-04 12:24:14', 1),
(1072, 60, 8, 'Appearance', 2, '', 8, '2020-09-04 12:24:14', 1),
(1073, 60, 8, 'Attitude', 2, '', 8, '2020-09-04 12:24:14', 1),
(1074, 60, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 12:24:14', 1),
(1075, 60, 8, 'Communication (English)', 2, '', 8, '2020-09-04 12:24:14', 1),
(1076, 60, 8, 'Appearance', 2, '', 8, '2020-09-04 12:24:14', 1),
(1077, 60, 8, 'Attitude', 2, '', 8, '2020-09-04 12:24:14', 1),
(1078, 60, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 12:24:14', 1),
(1079, 60, 8, 'Communication (English)', 2, '', 8, '2020-09-04 12:24:14', 1),
(1080, 61, 18, 'Appearance', 4, '', 18, '2020-09-04 12:39:21', 1),
(1081, 61, 18, 'Attitude', 3, '', 18, '2020-09-04 12:39:21', 1),
(1082, 61, 18, 'Communication (English)', 4, '', 18, '2020-09-04 12:39:21', 1),
(1083, 61, 18, 'Communication (Tamil)', 5, '', 18, '2020-09-04 12:39:21', 1),
(1084, 61, 18, 'Convincing Skills', 4, '', 18, '2020-09-04 12:39:21', 1),
(1085, 61, 18, 'Confidence Level', 4, '', 18, '2020-09-04 12:39:21', 1),
(1086, 61, 18, 'Importance Of Job', 3, '', 18, '2020-09-04 12:39:21', 1),
(1087, 61, 18, 'Observation Skills', 3, '', 18, '2020-09-04 12:39:21', 1),
(1088, 61, 18, 'Pressure Handling', 4, '', 18, '2020-09-04 12:39:21', 1),
(1089, 61, 18, 'Patient', 4, '', 18, '2020-09-04 12:39:21', 1),
(1090, 61, 18, 'Sustainability', 2, '', 18, '2020-09-04 12:39:21', 1),
(1091, 61, 18, 'Sales Experience', 4, '', 18, '2020-09-04 12:39:21', 1),
(1092, 61, 18, 'Existing Experience Analyze', 4, '', 18, '2020-09-04 12:39:21', 1),
(1093, 61, 18, 'Practical Challenges Outcome', 3, '', 18, '2020-09-04 12:39:21', 1),
(1094, 61, 18, 'Willing To Work On Holidays', 4, '', 18, '2020-09-04 12:39:21', 1),
(1095, 46, 26, 'candidate have a real-time working experience?', 1, 'Dont Have a Much Experience In  Real-Time', 26, '2020-09-04 12:43:03', 1),
(1096, 46, 26, 'Having a good experience in client side,server side and database?', 1, 'Not Good, Both Server-Side And Database Side.', 26, '2020-09-04 12:43:03', 1),
(1097, 46, 26, 'Idea about code management tools like git, bitbucket, svn...etc', 1, 'No idea', 26, '2020-09-04 12:43:03', 1),
(1098, 46, 26, 'Is all the technical Requirements matched with this employee?', 1, 'No', 26, '2020-09-04 12:43:03', 1),
(1099, 46, 26, 'Is Employee Clearly Understand the roles and Responsibility?', 1, '', 26, '2020-09-04 12:43:03', 1),
(1100, 46, 26, 'candidate have a real-time working experience?', 1, 'Dont Have a Much Experience In  Real-Time', 26, '2020-09-04 12:43:03', 1),
(1101, 46, 26, 'Having a good experience in client side,server side and database?', 1, 'Not Good, Both Server-Side And Database Side.', 26, '2020-09-04 12:43:03', 1),
(1102, 46, 26, 'Idea about code management tools like git, bitbucket, svn...etc', 1, 'No idea', 26, '2020-09-04 12:43:03', 1),
(1103, 46, 26, 'Is all the technical Requirements matched with this employee?', 1, 'No', 26, '2020-09-04 12:43:03', 1),
(1104, 46, 26, 'Is Employee Clearly Understand the roles and Responsibility?', 1, '', 26, '2020-09-04 12:43:03', 1),
(1105, 46, 26, 'candidate have a real-time working experience?', 1, 'Dont Have a Much Experience In  Real-Time', 26, '2020-09-04 12:43:03', 1),
(1106, 46, 26, 'Having a good experience in client side,server side and database?', 1, 'Not Good, Both Server-Side And Database Side.', 26, '2020-09-04 12:43:03', 1),
(1107, 46, 26, 'Idea about code management tools like git, bitbucket, svn...etc', 1, 'No idea', 26, '2020-09-04 12:43:03', 1),
(1108, 46, 26, 'Is all the technical Requirements matched with this employee?', 1, 'No', 26, '2020-09-04 12:43:03', 1),
(1109, 46, 26, 'Is Employee Clearly Understand the roles and Responsibility?', 1, '', 26, '2020-09-04 12:43:03', 1),
(1110, 62, 14, 'Appearance', 4, '-', 14, '2020-09-04 01:05:33', 1),
(1111, 62, 14, 'Attitude', 3, '-', 14, '2020-09-04 01:05:33', 1),
(1112, 62, 14, 'Communication (Tamil)', 3, '-', 14, '2020-09-04 01:05:33', 1),
(1113, 62, 14, 'Communication (English)', 2, '-', 14, '2020-09-04 01:05:33', 1),
(1114, 62, 14, 'convincing Skills', 3, '-', 14, '2020-09-04 01:05:33', 1),
(1115, 62, 14, 'Confidence Level', 3, '-', 14, '2020-09-04 01:05:33', 1),
(1116, 62, 14, 'Importance (Job)', 4, '-', 14, '2020-09-04 01:05:33', 1),
(1117, 62, 14, 'Observation skills', 4, '-', 14, '2020-09-04 01:05:33', 1),
(1118, 62, 14, 'Pressure Handling', 4, '-', 14, '2020-09-04 01:05:33', 1),
(1119, 62, 14, 'Patient', 3, '-', 14, '2020-09-04 01:05:33', 1),
(1120, 62, 14, 'Sustainability', 4, '-', 14, '2020-09-04 01:05:33', 1),
(1121, 62, 14, 'Appearance', 4, '-', 14, '2020-09-04 01:05:33', 1),
(1122, 62, 14, 'Attitude', 3, '-', 14, '2020-09-04 01:05:33', 1),
(1123, 62, 14, 'Communication (Tamil)', 3, '-', 14, '2020-09-04 01:05:33', 1),
(1124, 62, 14, 'Communication (English)', 2, '-', 14, '2020-09-04 01:05:33', 1),
(1125, 62, 14, 'convincing Skills', 3, '-', 14, '2020-09-04 01:05:33', 1),
(1126, 62, 14, 'Confidence Level', 3, '-', 14, '2020-09-04 01:05:33', 1),
(1127, 62, 14, 'Importance (Job)', 4, '-', 14, '2020-09-04 01:05:33', 1),
(1128, 62, 14, 'Observation skills', 4, '-', 14, '2020-09-04 01:05:33', 1),
(1129, 62, 14, 'Pressure Handling', 4, '-', 14, '2020-09-04 01:05:33', 1),
(1130, 62, 14, 'Patient', 3, '-', 14, '2020-09-04 01:05:33', 1),
(1131, 62, 14, 'Sustainability', 4, '-', 14, '2020-09-04 01:05:33', 1),
(1132, 48, 11, 'Appearance', 3, '-', 11, '2020-09-04 01:11:44', 1),
(1133, 48, 11, 'Attitude', 4, '-', 11, '2020-09-04 01:11:44', 1),
(1134, 48, 11, 'Communication (Tamil)', 4, '-', 11, '2020-09-04 01:11:44', 1),
(1135, 48, 11, 'Communication (English)', 4, '-', 11, '2020-09-04 01:11:44', 1),
(1136, 48, 11, 'convincing Skills', 4, '-', 11, '2020-09-04 01:11:44', 1),
(1137, 48, 11, 'Confidence Level', 5, '-', 11, '2020-09-04 01:11:44', 1),
(1138, 48, 11, 'Importance (Job)', 4, '-', 11, '2020-09-04 01:11:44', 1),
(1139, 48, 11, 'Observation skills', 4, '-', 11, '2020-09-04 01:11:44', 1),
(1140, 48, 11, 'Pressure Handling', 4, '-', 11, '2020-09-04 01:11:44', 1),
(1141, 48, 11, 'Patient', 3, '-', 11, '2020-09-04 01:11:44', 1),
(1142, 48, 11, 'Sustainability', 3, '-', 11, '2020-09-04 01:11:44', 1),
(1143, 61, 18, 'Appearance', 4, '', 18, '2020-09-04 01:12:29', 1),
(1144, 61, 18, 'Attitude', 3, '', 18, '2020-09-04 01:12:29', 1),
(1145, 61, 18, 'Communication (English)', 3, '', 18, '2020-09-04 01:12:29', 1),
(1146, 61, 18, 'Communication (Tamil)', 4, '', 18, '2020-09-04 01:12:29', 1),
(1147, 61, 18, 'Convincing Skills', 3, '', 18, '2020-09-04 01:12:29', 1),
(1148, 61, 18, 'Confidence Level', 4, '', 18, '2020-09-04 01:12:29', 1),
(1149, 61, 18, 'Importance Of Job', 3, '', 18, '2020-09-04 01:12:29', 1),
(1150, 61, 18, 'Pressure Handling', 3, '', 18, '2020-09-04 01:12:29', 1),
(1151, 61, 18, 'Patient', 3, '', 18, '2020-09-04 01:12:29', 1),
(1152, 61, 18, 'Sustainability', 2, '', 18, '2020-09-04 01:12:29', 1),
(1153, 61, 18, 'Sales Experience', 4, '', 18, '2020-09-04 01:12:29', 1),
(1154, 61, 18, 'Existing Experience Analyze', 4, '', 18, '2020-09-04 01:12:29', 1),
(1155, 61, 18, 'Practical Challenges Outcome', 4, '', 18, '2020-09-04 01:12:29', 1),
(1156, 61, 18, 'Willing To Work On Holidays', 3, '', 18, '2020-09-04 01:12:29', 1),
(1157, 61, 18, 'Appearance', 4, '', 18, '2020-09-04 01:12:29', 1),
(1158, 61, 18, 'Attitude', 3, '', 18, '2020-09-04 01:12:29', 1),
(1159, 61, 18, 'Communication (English)', 3, '', 18, '2020-09-04 01:12:29', 1),
(1160, 61, 18, 'Communication (Tamil)', 4, '', 18, '2020-09-04 01:12:29', 1),
(1161, 61, 18, 'Convincing Skills', 3, '', 18, '2020-09-04 01:12:29', 1),
(1162, 61, 18, 'Confidence Level', 4, '', 18, '2020-09-04 01:12:29', 1),
(1163, 61, 18, 'Importance Of Job', 3, '', 18, '2020-09-04 01:12:29', 1),
(1164, 61, 18, 'Pressure Handling', 3, '', 18, '2020-09-04 01:12:29', 1),
(1165, 61, 18, 'Patient', 3, '', 18, '2020-09-04 01:12:29', 1),
(1166, 61, 18, 'Sustainability', 2, '', 18, '2020-09-04 01:12:29', 1),
(1167, 61, 18, 'Sales Experience', 4, '', 18, '2020-09-04 01:12:29', 1),
(1168, 61, 18, 'Existing Experience Analyze', 4, '', 18, '2020-09-04 01:12:29', 1),
(1169, 61, 18, 'Practical Challenges Outcome', 4, '', 18, '2020-09-04 01:12:29', 1),
(1170, 61, 18, 'Willing To Work On Holidays', 3, '', 18, '2020-09-04 01:12:29', 1),
(1171, 68, 8, 'Appearance', 3, '3', 8, '2020-09-04 01:22:08', 1),
(1172, 68, 8, 'Attitude', 3, '3', 8, '2020-09-04 01:22:08', 1),
(1173, 68, 11, 'Appearance', 4, '4', 11, '2020-09-04 01:23:59', 1),
(1174, 68, 11, 'Attitude', 4, '4', 11, '2020-09-04 01:23:59', 1),
(1175, 63, 8, 'Appearance', 3, '', 8, '2020-09-04 02:00:04', 1),
(1176, 63, 8, 'Communication (Tamil)', 2, '', 8, '2020-09-04 02:00:04', 1),
(1177, 63, 8, 'Communication (English)', 1, '', 8, '2020-09-04 02:00:04', 1),
(1178, 63, 8, 'convincing Skills', 1, '', 8, '2020-09-04 02:00:04', 1),
(1179, 63, 8, 'Observation skills', 1, '', 8, '2020-09-04 02:00:04', 1),
(1180, 64, 40, 'Appearance', 3, 'Not upto the level', 40, '2020-09-04 02:17:27', 1),
(1181, 64, 40, 'Attitude', 4, 'Seems quite and listener', 40, '2020-09-04 02:17:27', 1),
(1182, 64, 40, 'Communication (English)', 2, 'Neutral in communication', 40, '2020-09-04 02:17:27', 1),
(1183, 64, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2020-09-04 02:17:27', 1),
(1184, 64, 40, 'Convincing Skills', 4, 'Seems goods calls handling live', 40, '2020-09-04 02:17:27', 1),
(1185, 64, 40, 'Confidence Level', 3, 'ok', 40, '2020-09-04 02:17:27', 1),
(1186, 64, 40, 'Importance Of Job', 4, 'Got married, looking for permanent job for long term', 40, '2020-09-04 02:17:27', 1),
(1187, 64, 40, 'Observation Skills', 3, 'Neutral Listener', 40, '2020-09-04 02:17:27', 1),
(1188, 64, 40, 'Pressure Handling', 1, 'Zero in pressure handling', 40, '2020-09-04 02:17:27', 1),
(1189, 64, 40, 'Patient', 3, '', 40, '2020-09-04 02:17:27', 1),
(1190, 64, 40, 'Sustainability', 2, 'His Past Profile It Seems Not A Sustainable Person', 40, '2020-09-04 02:17:27', 1),
(1191, 64, 40, 'Sales Experience', 1, 'Zero experience in sales', 40, '2020-09-04 02:17:27', 1),
(1192, 64, 40, 'Existing Experience Analyze', 3, 'Doubtful ', 40, '2020-09-04 02:17:27', 1),
(1193, 64, 40, 'Practical Challenges Outcome', 2, '', 40, '2020-09-04 02:17:27', 1),
(1194, 64, 40, 'Willing To Work On Holidays', 3, 'Seems yes', 40, '2020-09-04 02:17:27', 1),
(1195, 64, 40, 'Appearance', 3, 'Not upto the level', 40, '2020-09-04 02:17:27', 1),
(1196, 64, 40, 'Attitude', 4, 'Seems quite and listener', 40, '2020-09-04 02:17:27', 1),
(1197, 64, 40, 'Communication (English)', 2, 'Neutral in communication', 40, '2020-09-04 02:17:27', 1),
(1198, 64, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2020-09-04 02:17:27', 1),
(1199, 64, 40, 'Convincing Skills', 4, 'Seems goods calls handling live', 40, '2020-09-04 02:17:27', 1),
(1200, 64, 40, 'Confidence Level', 3, 'ok', 40, '2020-09-04 02:17:27', 1),
(1201, 64, 40, 'Importance Of Job', 4, 'Got married, looking for permanent job for long term', 40, '2020-09-04 02:17:27', 1),
(1202, 64, 40, 'Observation Skills', 3, 'Neutral Listener', 40, '2020-09-04 02:17:27', 1),
(1203, 64, 40, 'Pressure Handling', 1, 'Zero in pressure handling', 40, '2020-09-04 02:17:27', 1),
(1204, 64, 40, 'Patient', 3, '', 40, '2020-09-04 02:17:27', 1),
(1205, 64, 40, 'Sustainability', 2, 'His Past Profile It Seems Not A Sustainable Person', 40, '2020-09-04 02:17:27', 1),
(1206, 64, 40, 'Sales Experience', 1, 'Zero experience in sales', 40, '2020-09-04 02:17:27', 1),
(1207, 64, 40, 'Existing Experience Analyze', 3, 'Doubtful ', 40, '2020-09-04 02:17:27', 1),
(1208, 64, 40, 'Practical Challenges Outcome', 2, '', 40, '2020-09-04 02:17:27', 1),
(1209, 64, 40, 'Willing To Work On Holidays', 3, 'Seems yes', 40, '2020-09-04 02:17:27', 1),
(1210, 64, 40, 'Appearance', 3, 'Not upto the level', 40, '2020-09-04 02:17:27', 1),
(1211, 64, 40, 'Attitude', 4, 'Seems quite and listener', 40, '2020-09-04 02:17:27', 1),
(1212, 64, 40, 'Communication (English)', 2, 'Neutral in communication', 40, '2020-09-04 02:17:27', 1),
(1213, 64, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2020-09-04 02:17:27', 1),
(1214, 64, 40, 'Convincing Skills', 4, 'Seems goods calls handling live', 40, '2020-09-04 02:17:27', 1),
(1215, 64, 40, 'Confidence Level', 3, 'ok', 40, '2020-09-04 02:17:27', 1),
(1216, 64, 40, 'Importance Of Job', 4, 'Got married, looking for permanent job for long term', 40, '2020-09-04 02:17:27', 1),
(1217, 64, 40, 'Observation Skills', 3, 'Neutral Listener', 40, '2020-09-04 02:17:27', 1),
(1218, 64, 40, 'Pressure Handling', 1, 'Zero in pressure handling', 40, '2020-09-04 02:17:27', 1),
(1219, 64, 40, 'Patient', 3, '', 40, '2020-09-04 02:17:27', 1),
(1220, 64, 40, 'Sustainability', 2, 'His Past Profile It Seems Not A Sustainable Person', 40, '2020-09-04 02:17:27', 1),
(1221, 64, 40, 'Sales Experience', 1, 'Zero experience in sales', 40, '2020-09-04 02:17:27', 1),
(1222, 64, 40, 'Existing Experience Analyze', 3, 'Doubtful ', 40, '2020-09-04 02:17:27', 1),
(1223, 64, 40, 'Practical Challenges Outcome', 2, '', 40, '2020-09-04 02:17:27', 1),
(1224, 64, 40, 'Willing To Work On Holidays', 3, 'Seems yes', 40, '2020-09-04 02:17:27', 1),
(1225, 64, 40, 'Appearance', 3, 'Not upto the level', 40, '2020-09-04 02:17:27', 1),
(1226, 64, 40, 'Attitude', 4, 'Seems quite and listener', 40, '2020-09-04 02:17:27', 1),
(1227, 64, 40, 'Communication (English)', 2, 'Neutral in communication', 40, '2020-09-04 02:17:27', 1),
(1228, 64, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2020-09-04 02:17:27', 1),
(1229, 64, 40, 'Convincing Skills', 4, 'Seems goods calls handling live', 40, '2020-09-04 02:17:27', 1),
(1230, 64, 40, 'Confidence Level', 3, 'ok', 40, '2020-09-04 02:17:27', 1),
(1231, 64, 40, 'Importance Of Job', 4, 'Got married, looking for permanent job for long term', 40, '2020-09-04 02:17:27', 1),
(1232, 64, 40, 'Observation Skills', 3, 'Neutral Listener', 40, '2020-09-04 02:17:27', 1),
(1233, 64, 40, 'Pressure Handling', 1, 'Zero in pressure handling', 40, '2020-09-04 02:17:27', 1),
(1234, 64, 40, 'Patient', 3, '', 40, '2020-09-04 02:17:27', 1),
(1235, 64, 40, 'Sustainability', 2, 'His Past Profile It Seems Not A Sustainable Person', 40, '2020-09-04 02:17:27', 1),
(1236, 64, 40, 'Sales Experience', 1, 'Zero experience in sales', 40, '2020-09-04 02:17:27', 1),
(1237, 64, 40, 'Existing Experience Analyze', 3, 'Doubtful ', 40, '2020-09-04 02:17:27', 1),
(1238, 64, 40, 'Practical Challenges Outcome', 2, '', 40, '2020-09-04 02:17:27', 1),
(1239, 64, 40, 'Willing To Work On Holidays', 3, 'Seems yes', 40, '2020-09-04 02:17:27', 1),
(1240, 44, 11, 'Appearance', 3, '', 11, '2020-09-04 02:32:47', 1),
(1241, 44, 11, 'Attitude', 4, '', 11, '2020-09-04 02:32:47', 1),
(1242, 44, 11, 'Communication (Tamil)', 5, '', 11, '2020-09-04 02:32:47', 1),
(1243, 44, 11, 'Communication (English)', 3, '', 11, '2020-09-04 02:32:47', 1),
(1244, 44, 11, 'convincing Skills', 4, '', 11, '2020-09-04 02:32:47', 1),
(1245, 44, 11, 'Confidence Level', 4, '', 11, '2020-09-04 02:32:47', 1),
(1246, 44, 11, 'Importance (Job)', 4, '', 11, '2020-09-04 02:32:47', 1),
(1247, 44, 11, 'Observation skills', 5, '', 11, '2020-09-04 02:32:47', 1),
(1248, 44, 11, 'Pressure Handling', 4, '', 11, '2020-09-04 02:32:47', 1),
(1249, 44, 11, 'Patient', 3, '', 11, '2020-09-04 02:32:47', 1),
(1250, 44, 11, 'Sustainability', 4, '', 11, '2020-09-04 02:32:47', 1),
(1251, 52, 11, 'Appearance', 3, '-', 11, '2020-09-04 02:37:50', 1),
(1252, 52, 11, 'Attitude', 3, '-', 11, '2020-09-04 02:37:50', 1),
(1253, 52, 11, 'Communication (Tamil)', 2, '-', 11, '2020-09-04 02:37:50', 1),
(1254, 52, 11, 'Communication (English)', 2, '-', 11, '2020-09-04 02:37:50', 1),
(1255, 52, 11, 'convincing Skills', 3, '-', 11, '2020-09-04 02:37:50', 1),
(1256, 52, 11, 'Confidence Level', 2, '-', 11, '2020-09-04 02:37:50', 1),
(1257, 52, 11, 'Importance (Job)', 3, '-', 11, '2020-09-04 02:37:50', 1),
(1258, 52, 11, 'Observation skills', 2, '-', 11, '2020-09-04 02:37:50', 1),
(1259, 52, 11, 'Pressure Handling', 2, '-', 11, '2020-09-04 02:37:50', 1),
(1260, 52, 11, 'Patient', 4, '-', 11, '2020-09-04 02:37:50', 1),
(1261, 52, 11, 'Sustainability', 3, '-', 11, '2020-09-04 02:37:50', 1),
(1262, 52, 11, 'Appearance', 3, '-', 11, '2020-09-04 02:37:50', 1),
(1263, 52, 11, 'Attitude', 3, '-', 11, '2020-09-04 02:37:50', 1),
(1264, 52, 11, 'Communication (Tamil)', 2, '-', 11, '2020-09-04 02:37:50', 1),
(1265, 52, 11, 'Communication (English)', 2, '-', 11, '2020-09-04 02:37:50', 1),
(1266, 52, 11, 'convincing Skills', 3, '-', 11, '2020-09-04 02:37:50', 1),
(1267, 52, 11, 'Confidence Level', 2, '-', 11, '2020-09-04 02:37:50', 1),
(1268, 52, 11, 'Importance (Job)', 3, '-', 11, '2020-09-04 02:37:50', 1),
(1269, 52, 11, 'Observation skills', 2, '-', 11, '2020-09-04 02:37:50', 1),
(1270, 52, 11, 'Pressure Handling', 2, '-', 11, '2020-09-04 02:37:50', 1),
(1271, 52, 11, 'Patient', 4, '-', 11, '2020-09-04 02:37:50', 1),
(1272, 52, 11, 'Sustainability', 3, '-', 11, '2020-09-04 02:37:50', 1),
(1273, 65, 40, 'Appearance', 3, 'Not looks professional', 40, '2020-09-04 02:37:59', 1),
(1274, 65, 40, 'Attitude', 5, 'Seems very positive', 40, '2020-09-04 02:37:59', 1),
(1275, 65, 40, 'Communication (English)', 5, 'Good in communication', 40, '2020-09-04 02:37:59', 1),
(1276, 65, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2020-09-04 02:37:59', 1),
(1277, 65, 40, 'Convincing Skills', 3, 'Yet to decide', 40, '2020-09-04 02:37:59', 1),
(1278, 65, 40, 'Confidence Level', 5, '', 40, '2020-09-04 02:37:59', 1),
(1279, 65, 40, 'Importance Of Job', 3, 'Doubtful', 40, '2020-09-04 02:37:59', 1),
(1280, 65, 40, 'Observation Skills', 3, 'Look in to it', 40, '2020-09-04 02:37:59', 1),
(1281, 65, 40, 'Pressure Handling', 3, 'Might be', 40, '2020-09-04 02:37:59', 1),
(1282, 65, 40, 'Patient', 2, 'His past experience seems not that much', 40, '2020-09-04 02:37:59', 1),
(1283, 65, 40, 'Sustainability', 3, 'yet to decide', 40, '2020-09-04 02:37:59', 1),
(1284, 65, 40, 'Sales Experience', 2, 'have limited experience in sales', 40, '2020-09-04 02:37:59', 1),
(1285, 65, 40, 'Existing Experience Analyze', 3, '', 40, '2020-09-04 02:37:59', 1),
(1286, 65, 40, 'Practical Challenges Outcome', 3, '', 40, '2020-09-04 02:37:59', 1),
(1287, 65, 40, 'Willing To Work On Holidays', 5, '', 40, '2020-09-04 02:37:59', 1),
(1288, 62, 17, 'Appearance', 3, '', 17, '2020-09-04 03:00:03', 1),
(1289, 62, 17, 'Attitude', 3, '', 17, '2020-09-04 03:00:03', 1),
(1290, 62, 17, 'Communication (Tamil)', 4, '', 17, '2020-09-04 03:00:03', 1),
(1291, 62, 17, 'Communication (English)', 3, '', 17, '2020-09-04 03:00:03', 1),
(1292, 62, 17, 'convincing Skills', 3, '', 17, '2020-09-04 03:00:03', 1),
(1293, 62, 17, 'Confidence Level', 3, '', 17, '2020-09-04 03:00:03', 1),
(1294, 62, 17, 'Importance (Job)', 4, '', 17, '2020-09-04 03:00:03', 1),
(1295, 62, 17, 'Observation skills', 3, '', 17, '2020-09-04 03:00:03', 1),
(1296, 62, 17, 'Pressure Handling', 4, '', 17, '2020-09-04 03:00:03', 1),
(1297, 62, 17, 'Patient', 3, '', 17, '2020-09-04 03:00:03', 1),
(1298, 62, 17, 'Sustainability', 3, '', 17, '2020-09-04 03:00:03', 1),
(1299, 62, 17, 'Appearance', 3, '', 17, '2020-09-04 03:00:03', 1),
(1300, 62, 17, 'Attitude', 3, '', 17, '2020-09-04 03:00:03', 1),
(1301, 62, 17, 'Communication (Tamil)', 4, '', 17, '2020-09-04 03:00:03', 1),
(1302, 62, 17, 'Communication (English)', 3, '', 17, '2020-09-04 03:00:03', 1),
(1303, 62, 17, 'convincing Skills', 3, '', 17, '2020-09-04 03:00:03', 1),
(1304, 62, 17, 'Confidence Level', 3, '', 17, '2020-09-04 03:00:03', 1),
(1305, 62, 17, 'Importance (Job)', 4, '', 17, '2020-09-04 03:00:03', 1),
(1306, 62, 17, 'Observation skills', 3, '', 17, '2020-09-04 03:00:03', 1),
(1307, 62, 17, 'Pressure Handling', 4, '', 17, '2020-09-04 03:00:03', 1),
(1308, 62, 17, 'Patient', 3, '', 17, '2020-09-04 03:00:03', 1),
(1309, 62, 17, 'Sustainability', 3, '', 17, '2020-09-04 03:00:03', 1),
(1310, 62, 17, 'Appearance', 3, '', 17, '2020-09-04 03:00:03', 1),
(1311, 62, 17, 'Attitude', 3, '', 17, '2020-09-04 03:00:03', 1),
(1312, 62, 17, 'Communication (Tamil)', 4, '', 17, '2020-09-04 03:00:03', 1),
(1313, 62, 17, 'Communication (English)', 3, '', 17, '2020-09-04 03:00:03', 1),
(1314, 62, 17, 'convincing Skills', 3, '', 17, '2020-09-04 03:00:03', 1),
(1315, 62, 17, 'Confidence Level', 3, '', 17, '2020-09-04 03:00:03', 1),
(1316, 62, 17, 'Importance (Job)', 4, '', 17, '2020-09-04 03:00:03', 1),
(1317, 62, 17, 'Observation skills', 3, '', 17, '2020-09-04 03:00:03', 1),
(1318, 62, 17, 'Pressure Handling', 4, '', 17, '2020-09-04 03:00:03', 1),
(1319, 62, 17, 'Patient', 3, '', 17, '2020-09-04 03:00:03', 1),
(1320, 62, 17, 'Sustainability', 3, '', 17, '2020-09-04 03:00:03', 1),
(1321, 62, 17, 'Appearance', 3, '', 17, '2020-09-04 03:00:03', 1),
(1322, 62, 17, 'Attitude', 3, '', 17, '2020-09-04 03:00:03', 1),
(1323, 62, 17, 'Communication (Tamil)', 4, '', 17, '2020-09-04 03:00:03', 1),
(1324, 62, 17, 'Communication (English)', 3, '', 17, '2020-09-04 03:00:03', 1),
(1325, 62, 17, 'convincing Skills', 3, '', 17, '2020-09-04 03:00:03', 1),
(1326, 62, 17, 'Confidence Level', 3, '', 17, '2020-09-04 03:00:03', 1),
(1327, 62, 17, 'Importance (Job)', 4, '', 17, '2020-09-04 03:00:03', 1),
(1328, 62, 17, 'Observation skills', 3, '', 17, '2020-09-04 03:00:03', 1),
(1329, 62, 17, 'Pressure Handling', 4, '', 17, '2020-09-04 03:00:03', 1),
(1330, 62, 17, 'Patient', 3, '', 17, '2020-09-04 03:00:03', 1),
(1331, 62, 17, 'Sustainability', 3, '', 17, '2020-09-04 03:00:03', 1),
(1332, 53, 17, 'Appearance', 2, '', 17, '2020-09-04 03:04:43', 1),
(1333, 53, 17, 'Attitude', 2, '', 17, '2020-09-04 03:04:43', 1),
(1334, 53, 17, 'Communication (English)', 1, '', 17, '2020-09-04 03:04:43', 1),
(1335, 53, 17, 'Communication (Tamil)', 3, '', 17, '2020-09-04 03:04:43', 1),
(1336, 53, 17, 'Convincing Skills', 2, '', 17, '2020-09-04 03:04:43', 1),
(1337, 53, 17, 'Confidence Level', 2, '', 17, '2020-09-04 03:04:43', 1),
(1338, 53, 17, 'Existing Experience Analyze', 2, '', 17, '2020-09-04 03:04:43', 1),
(1339, 53, 17, 'Importance Of Job', 1, '', 17, '2020-09-04 03:04:43', 1),
(1340, 53, 17, 'Observation Skills', 1, '', 17, '2020-09-04 03:04:43', 1),
(1341, 53, 17, 'Patient', 2, '', 17, '2020-09-04 03:04:43', 1),
(1342, 53, 17, 'Pressure Handling', 1, '', 17, '2020-09-04 03:04:43', 1),
(1343, 53, 17, 'Appearance', 2, '', 17, '2020-09-04 03:04:43', 1),
(1344, 53, 17, 'Attitude', 2, '', 17, '2020-09-04 03:04:43', 1),
(1345, 53, 17, 'Communication (English)', 1, '', 17, '2020-09-04 03:04:43', 1),
(1346, 53, 17, 'Communication (Tamil)', 3, '', 17, '2020-09-04 03:04:43', 1),
(1347, 53, 17, 'Convincing Skills', 2, '', 17, '2020-09-04 03:04:43', 1),
(1348, 53, 17, 'Confidence Level', 2, '', 17, '2020-09-04 03:04:43', 1),
(1349, 53, 17, 'Existing Experience Analyze', 2, '', 17, '2020-09-04 03:04:43', 1),
(1350, 53, 17, 'Importance Of Job', 1, '', 17, '2020-09-04 03:04:43', 1),
(1351, 53, 17, 'Observation Skills', 1, '', 17, '2020-09-04 03:04:43', 1),
(1352, 53, 17, 'Patient', 2, '', 17, '2020-09-04 03:04:43', 1),
(1353, 53, 17, 'Pressure Handling', 1, '', 17, '2020-09-04 03:04:43', 1),
(1354, 53, 17, 'Appearance', 2, '', 17, '2020-09-04 03:04:43', 1),
(1355, 53, 17, 'Attitude', 2, '', 17, '2020-09-04 03:04:43', 1),
(1356, 53, 17, 'Communication (English)', 1, '', 17, '2020-09-04 03:04:43', 1),
(1357, 53, 17, 'Communication (Tamil)', 3, '', 17, '2020-09-04 03:04:43', 1),
(1358, 53, 17, 'Convincing Skills', 2, '', 17, '2020-09-04 03:04:43', 1),
(1359, 53, 17, 'Confidence Level', 2, '', 17, '2020-09-04 03:04:43', 1),
(1360, 53, 17, 'Existing Experience Analyze', 2, '', 17, '2020-09-04 03:04:43', 1),
(1361, 53, 17, 'Importance Of Job', 1, '', 17, '2020-09-04 03:04:43', 1),
(1362, 53, 17, 'Observation Skills', 1, '', 17, '2020-09-04 03:04:43', 1),
(1363, 53, 17, 'Patient', 2, '', 17, '2020-09-04 03:04:43', 1),
(1364, 53, 17, 'Pressure Handling', 1, '', 17, '2020-09-04 03:04:43', 1),
(1365, 53, 17, 'Appearance', 2, '', 17, '2020-09-04 03:04:43', 1),
(1366, 53, 17, 'Attitude', 2, '', 17, '2020-09-04 03:04:43', 1),
(1367, 53, 17, 'Communication (English)', 1, '', 17, '2020-09-04 03:04:43', 1),
(1368, 53, 17, 'Communication (Tamil)', 3, '', 17, '2020-09-04 03:04:43', 1),
(1369, 53, 17, 'Convincing Skills', 2, '', 17, '2020-09-04 03:04:43', 1),
(1370, 53, 17, 'Confidence Level', 2, '', 17, '2020-09-04 03:04:43', 1),
(1371, 53, 17, 'Existing Experience Analyze', 2, '', 17, '2020-09-04 03:04:43', 1),
(1372, 53, 17, 'Importance Of Job', 1, '', 17, '2020-09-04 03:04:43', 1),
(1373, 53, 17, 'Observation Skills', 1, '', 17, '2020-09-04 03:04:43', 1),
(1374, 53, 17, 'Patient', 2, '', 17, '2020-09-04 03:04:43', 1),
(1375, 53, 17, 'Pressure Handling', 1, '', 17, '2020-09-04 03:04:43', 1),
(1376, 53, 17, 'Appearance', 2, '', 17, '2020-09-04 03:04:43', 1),
(1377, 53, 17, 'Attitude', 2, '', 17, '2020-09-04 03:04:43', 1),
(1378, 53, 17, 'Communication (English)', 1, '', 17, '2020-09-04 03:04:43', 1),
(1379, 53, 17, 'Communication (Tamil)', 3, '', 17, '2020-09-04 03:04:43', 1),
(1380, 53, 17, 'Convincing Skills', 2, '', 17, '2020-09-04 03:04:43', 1),
(1381, 53, 17, 'Confidence Level', 2, '', 17, '2020-09-04 03:04:43', 1),
(1382, 53, 17, 'Existing Experience Analyze', 2, '', 17, '2020-09-04 03:04:43', 1),
(1383, 53, 17, 'Importance Of Job', 1, '', 17, '2020-09-04 03:04:43', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(1384, 53, 17, 'Observation Skills', 1, '', 17, '2020-09-04 03:04:43', 1),
(1385, 53, 17, 'Patient', 2, '', 17, '2020-09-04 03:04:43', 1),
(1386, 53, 17, 'Pressure Handling', 1, '', 17, '2020-09-04 03:04:43', 1),
(1387, 74, 27, 'attitude of the employee?', 1, '1', 27, '2020-09-04 03:20:20', 1),
(1388, 65, 18, 'Appearance', 3, '', 18, '2020-09-04 03:37:43', 1),
(1389, 65, 18, 'Attitude', 2, '', 18, '2020-09-04 03:37:43', 1),
(1390, 65, 18, 'Communication (English)', 3, '', 18, '2020-09-04 03:37:43', 1),
(1391, 65, 18, 'Communication (Tamil)', 3, '', 18, '2020-09-04 03:37:43', 1),
(1392, 65, 18, 'Convincing Skills', 3, '', 18, '2020-09-04 03:37:43', 1),
(1393, 65, 18, 'Confidence Level', 4, '', 18, '2020-09-04 03:37:43', 1),
(1394, 65, 18, 'Importance Of Job', 2, '', 18, '2020-09-04 03:37:43', 1),
(1395, 65, 18, 'Observation Skills', 4, '', 18, '2020-09-04 03:37:43', 1),
(1396, 65, 18, 'Pressure Handling', 4, '', 18, '2020-09-04 03:37:43', 1),
(1397, 65, 18, 'Patient', 3, '', 18, '2020-09-04 03:37:43', 1),
(1398, 65, 18, 'Sustainability', 2, '', 18, '2020-09-04 03:37:43', 1),
(1399, 65, 18, 'Sales Experience', 2, '', 18, '2020-09-04 03:37:43', 1),
(1400, 65, 18, 'Existing Experience Analyze', 4, '', 18, '2020-09-04 03:37:43', 1),
(1401, 65, 18, 'Practical Challenges Outcome', 4, '', 18, '2020-09-04 03:37:43', 1),
(1402, 65, 18, 'Willing To Work On Holidays', 4, '', 18, '2020-09-04 03:37:43', 1),
(1403, 71, 44, 'Appearance', 4, '', 44, '2020-09-04 03:42:36', 1),
(1404, 71, 44, 'Attitude', 4, '', 44, '2020-09-04 03:42:36', 1),
(1405, 71, 44, 'Communication (English)', 3, '', 44, '2020-09-04 03:42:36', 1),
(1406, 71, 44, 'Communication (Tamil)', 4, '', 44, '2020-09-04 03:42:36', 1),
(1407, 71, 44, 'Convincing Skills', 3, '', 44, '2020-09-04 03:42:36', 1),
(1408, 71, 44, 'Confidence Level', 3, '', 44, '2020-09-04 03:42:36', 1),
(1409, 71, 44, 'Importance Of Job', 3, '', 44, '2020-09-04 03:42:36', 1),
(1410, 71, 44, 'Observation Skills', 3, '', 44, '2020-09-04 03:42:36', 1),
(1411, 71, 44, 'Pressure Handling', 3, '', 44, '2020-09-04 03:42:36', 1),
(1412, 71, 44, 'Patient', 3, '', 44, '2020-09-04 03:42:36', 1),
(1413, 71, 44, 'Sustainability', 4, '', 44, '2020-09-04 03:42:36', 1),
(1414, 71, 44, 'Sales Experience', 4, '', 44, '2020-09-04 03:42:36', 1),
(1415, 71, 44, 'Existing Experience Analyze', 3, '', 44, '2020-09-04 03:42:36', 1),
(1416, 71, 44, 'Practical Challenges Outcome', 3, '', 44, '2020-09-04 03:42:36', 1),
(1417, 71, 44, 'Willing To Work On Holidays', 4, '', 44, '2020-09-04 03:42:36', 1),
(1418, 71, 44, 'Appearance', 4, '', 44, '2020-09-04 04:04:49', 1),
(1419, 71, 44, 'Attitude', 4, '', 44, '2020-09-04 04:04:49', 1),
(1420, 71, 44, 'Communication (English)', 2, '', 44, '2020-09-04 04:04:49', 1),
(1421, 71, 44, 'Communication (Tamil)', 4, '', 44, '2020-09-04 04:04:49', 1),
(1422, 71, 44, 'Convincing Skills', 3, '', 44, '2020-09-04 04:04:49', 1),
(1423, 71, 44, 'Confidence Level', 3, '', 44, '2020-09-04 04:04:49', 1),
(1424, 71, 44, 'Importance Of Job', 3, '', 44, '2020-09-04 04:04:49', 1),
(1425, 71, 44, 'Observation Skills', 4, '', 44, '2020-09-04 04:04:49', 1),
(1426, 71, 44, 'Pressure Handling', 3, '', 44, '2020-09-04 04:04:49', 1),
(1427, 71, 44, 'Patient', 3, '', 44, '2020-09-04 04:04:49', 1),
(1428, 71, 44, 'Sustainability', 4, '', 44, '2020-09-04 04:04:49', 1),
(1429, 71, 44, 'Sales Experience', 4, '', 44, '2020-09-04 04:04:49', 1),
(1430, 71, 44, 'Existing Experience Analyze', 3, '', 44, '2020-09-04 04:04:49', 1),
(1431, 71, 44, 'Practical Challenges Outcome', 3, '', 44, '2020-09-04 04:04:49', 1),
(1432, 71, 44, 'Willing To Work On Holidays', 4, '', 44, '2020-09-04 04:04:49', 1),
(1433, 75, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-04 04:22:47', 1),
(1434, 75, 8, 'Communication (English)', 3, '', 8, '2020-09-04 04:22:47', 1),
(1435, 75, 8, 'convincing Skills', 3, '', 8, '2020-09-04 04:22:47', 1),
(1436, 71, 44, 'Appearance', 4, '', 44, '2020-09-04 04:50:14', 1),
(1437, 71, 44, 'Attitude', 4, '', 44, '2020-09-04 04:50:14', 1),
(1438, 71, 44, 'Communication (English)', 2, '', 44, '2020-09-04 04:50:14', 1),
(1439, 71, 44, 'Communication (Tamil)', 4, '', 44, '2020-09-04 04:50:14', 1),
(1440, 71, 44, 'Convincing Skills', 3, '', 44, '2020-09-04 04:50:14', 1),
(1441, 71, 44, 'Confidence Level', 3, '', 44, '2020-09-04 04:50:14', 1),
(1442, 71, 44, 'Importance Of Job', 3, '', 44, '2020-09-04 04:50:14', 1),
(1443, 71, 44, 'Observation Skills', 4, '', 44, '2020-09-04 04:50:14', 1),
(1444, 71, 44, 'Pressure Handling', 3, '', 44, '2020-09-04 04:50:14', 1),
(1445, 71, 44, 'Patient', 3, '', 44, '2020-09-04 04:50:14', 1),
(1446, 71, 44, 'Sustainability', 4, '', 44, '2020-09-04 04:50:14', 1),
(1447, 71, 44, 'Sales Experience', 4, '', 44, '2020-09-04 04:50:14', 1),
(1448, 71, 44, 'Existing Experience Analyze', 3, '', 44, '2020-09-04 04:50:14', 1),
(1449, 71, 44, 'Practical Challenges Outcome', 3, '', 44, '2020-09-04 04:50:14', 1),
(1450, 71, 44, 'Willing To Work On Holidays', 4, '', 44, '2020-09-04 04:50:14', 1),
(1451, 86, 40, 'Appearance', 3, '', 40, '2020-09-05 12:16:08', 1),
(1452, 86, 40, 'Attitude', 3, 'Attitude issues', 40, '2020-09-05 12:16:08', 1),
(1453, 86, 40, 'Communication (English)', 1, 'Not good in communication', 40, '2020-09-05 12:16:08', 1),
(1454, 86, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2020-09-05 12:16:08', 1),
(1455, 86, 40, 'Convincing Skills', 3, 'Neutral', 40, '2020-09-05 12:16:08', 1),
(1456, 86, 40, 'Confidence Level', 5, '', 40, '2020-09-05 12:16:08', 1),
(1457, 86, 40, 'Importance Of Job', 3, '', 40, '2020-09-05 12:16:08', 1),
(1458, 86, 40, 'Observation Skills', 3, '', 40, '2020-09-05 12:16:08', 1),
(1459, 86, 40, 'Patient', 2, '', 40, '2020-09-05 12:16:08', 1),
(1460, 86, 40, 'Sustainability', 3, 'Might be doubtful', 40, '2020-09-05 12:16:08', 1),
(1461, 86, 40, 'Sales Experience', 3, '', 40, '2020-09-05 12:16:08', 1),
(1462, 86, 40, 'Existing Experience Analyze', 3, '', 40, '2020-09-05 12:16:08', 1),
(1463, 86, 40, 'Practical Challenges Outcome', 2, '', 40, '2020-09-05 12:16:08', 1),
(1464, 86, 40, 'Willing To Work On Holidays', 5, '', 40, '2020-09-05 12:16:08', 1),
(1465, 86, 18, 'Appearance', 3, '', 18, '2020-09-05 01:17:51', 1),
(1466, 86, 18, 'Attitude', 2, '', 18, '2020-09-05 01:17:51', 1),
(1467, 86, 18, 'Communication (English)', 1, '', 18, '2020-09-05 01:17:51', 1),
(1468, 86, 18, 'Communication (Tamil)', 5, '', 18, '2020-09-05 01:17:51', 1),
(1469, 86, 18, 'Convincing Skills', 4, '', 18, '2020-09-05 01:17:51', 1),
(1470, 86, 18, 'Confidence Level', 4, '', 18, '2020-09-05 01:17:51', 1),
(1471, 86, 18, 'Importance Of Job', 4, '', 18, '2020-09-05 01:17:51', 1),
(1472, 86, 18, 'Observation Skills', 3, '', 18, '2020-09-05 01:17:51', 1),
(1473, 86, 18, 'Pressure Handling', 4, '', 18, '2020-09-05 01:17:51', 1),
(1474, 86, 18, 'Patient', 1, '', 18, '2020-09-05 01:17:51', 1),
(1475, 86, 18, 'Sustainability', 3, '', 18, '2020-09-05 01:17:51', 1),
(1476, 86, 18, 'Sales Experience', 3, '', 18, '2020-09-05 01:17:51', 1),
(1477, 86, 18, 'Existing Experience Analyze', 3, '', 18, '2020-09-05 01:17:51', 1),
(1478, 86, 18, 'Practical Challenges Outcome', 3, '', 18, '2020-09-05 01:17:51', 1),
(1479, 86, 18, 'Willing To Work On Holidays', 3, '', 18, '2020-09-05 01:17:51', 1),
(1480, 29, 8, 'attitude of the employee?', 3, '', 8, '2020-09-05 01:38:50', 1),
(1481, 29, 8, 'relevance experience with this technical spec.', 3, '', 8, '2020-09-05 01:38:50', 1),
(1482, 29, 8, 'worked with team?', 3, '', 8, '2020-09-05 01:38:50', 1),
(1483, 29, 26, 'Having a good experience in client side,server side and database?', 5, '', 26, '2020-09-05 01:59:37', 1),
(1484, 29, 26, 'Idea about code management tools like git, bitbucket, svn...etc', 5, '', 26, '2020-09-05 01:59:37', 1),
(1485, 29, 26, 'Is all the technical Requirements matched with this employee?', 3, '', 26, '2020-09-05 01:59:37', 1),
(1486, 81, 21, 'Appearance', 3, '', 21, '2020-09-05 05:53:44', 1),
(1487, 81, 21, 'Attitude', 3, '', 21, '2020-09-05 05:53:44', 1),
(1488, 81, 21, 'Communication (Tamil)', 4, '', 21, '2020-09-05 05:53:44', 1),
(1489, 81, 21, 'Communication (English)', 3, '', 21, '2020-09-05 05:53:44', 1),
(1490, 81, 21, 'convincing Skills', 3, '', 21, '2020-09-05 05:53:44', 1),
(1491, 81, 21, 'Confidence Level', 3, '', 21, '2020-09-05 05:53:44', 1),
(1492, 81, 21, 'Importance (Job)', 4, '', 21, '2020-09-05 05:53:44', 1),
(1493, 81, 21, 'Observation skills', 3, '', 21, '2020-09-05 05:53:44', 1),
(1494, 81, 21, 'Pressure Handling', 3, '', 21, '2020-09-05 05:53:44', 1),
(1495, 81, 21, 'Patient', 3, '', 21, '2020-09-05 05:53:44', 1),
(1496, 81, 21, 'Sustainability', 3, '', 21, '2020-09-05 05:53:44', 1),
(1497, 85, 21, 'Appearance', 4, '-', 21, '2020-09-05 05:56:12', 1),
(1498, 85, 21, 'Attitude', 3, '-', 21, '2020-09-05 05:56:12', 1),
(1499, 85, 21, 'Communication (Tamil)', 4, '-', 21, '2020-09-05 05:56:12', 1),
(1500, 85, 21, 'Communication (English)', 3, '-', 21, '2020-09-05 05:56:12', 1),
(1501, 85, 21, 'convincing Skills', 3, '-', 21, '2020-09-05 05:56:12', 1),
(1502, 85, 21, 'Confidence Level', 3, '-', 21, '2020-09-05 05:56:12', 1),
(1503, 85, 21, 'Importance (Job)', 3, '-', 21, '2020-09-05 05:56:12', 1),
(1504, 85, 21, 'Observation skills', 3, '-', 21, '2020-09-05 05:56:12', 1),
(1505, 85, 21, 'Pressure Handling', 3, '-', 21, '2020-09-05 05:56:12', 1),
(1506, 85, 21, 'Patient', 4, '-', 21, '2020-09-05 05:56:12', 1),
(1507, 85, 21, 'Sustainability', 3, '-', 21, '2020-09-05 05:56:12', 1),
(1508, 94, 21, 'Appearance', 3, '-', 21, '2020-09-05 05:58:15', 1),
(1509, 94, 21, 'Attitude', 4, '-', 21, '2020-09-05 05:58:15', 1),
(1510, 94, 21, 'Communication (Tamil)', 3, '-', 21, '2020-09-05 05:58:15', 1),
(1511, 94, 21, 'Communication (English)', 2, '-', 21, '2020-09-05 05:58:15', 1),
(1512, 94, 21, 'convincing Skills', 3, '-', 21, '2020-09-05 05:58:15', 1),
(1513, 94, 21, 'Confidence Level', 3, '-', 21, '2020-09-05 05:58:15', 1),
(1514, 94, 21, 'Importance (Job)', 4, '-', 21, '2020-09-05 05:58:15', 1),
(1515, 94, 21, 'Observation skills', 3, '-', 21, '2020-09-05 05:58:15', 1),
(1516, 94, 21, 'Pressure Handling', 3, '-', 21, '2020-09-05 05:58:15', 1),
(1517, 94, 21, 'Patient', 4, '-', 21, '2020-09-05 05:58:15', 1),
(1518, 94, 21, 'Sustainability', 3, '-', 21, '2020-09-05 05:58:15', 1),
(1519, 105, 8, 'Is Employee Clearly Understand the roles and Responsibility?', 5, '', 8, '2020-09-06 11:39:50', 1),
(1520, 105, 8, 'Communication Skills?', 4, 'okay', 8, '2020-09-06 11:39:50', 1),
(1521, 111, 8, 'Communication (English)', 2, '', 8, '2020-09-07 11:44:47', 1),
(1522, 111, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-07 11:44:47', 1),
(1523, 111, 8, 'Convincing Skills', 3, '', 8, '2020-09-07 11:44:47', 1),
(1524, 111, 8, 'Confidence Level', 3, '', 8, '2020-09-07 11:44:47', 1),
(1525, 111, 8, 'Importance Of Job', 4, '', 8, '2020-09-07 11:44:47', 1),
(1526, 111, 8, 'Pressure Handling', 2, '', 8, '2020-09-07 11:44:47', 1),
(1527, 111, 8, 'Existing Experience Analyze', 2, '', 8, '2020-09-07 11:44:47', 1),
(1528, 111, 8, 'Practical Challenges Outcome', 2, '', 8, '2020-09-07 11:44:47', 1),
(1529, 110, 19, 'Appearance', 2, '', 19, '2020-09-07 12:04:26', 1),
(1530, 110, 19, 'Attitude', 2, '', 19, '2020-09-07 12:04:26', 1),
(1531, 110, 19, 'Communication (English)', 1, '', 19, '2020-09-07 12:04:26', 1),
(1532, 110, 19, 'Communication (Tamil)', 2, '', 19, '2020-09-07 12:04:26', 1),
(1533, 110, 19, 'Convincing Skills', 2, '', 19, '2020-09-07 12:04:26', 1),
(1534, 110, 19, 'Confidence Level', 2, '', 19, '2020-09-07 12:04:26', 1),
(1535, 110, 19, 'Existing Experience Analyze', 2, '', 19, '2020-09-07 12:04:26', 1),
(1536, 110, 19, 'Importance Of Job', 2, '', 19, '2020-09-07 12:04:26', 1),
(1537, 110, 19, 'Observation Skills', 1, '', 19, '2020-09-07 12:04:26', 1),
(1538, 110, 19, 'Patient', 2, '', 19, '2020-09-07 12:04:26', 1),
(1539, 110, 19, 'Pressure Handling', 2, '', 19, '2020-09-07 12:04:26', 1),
(1540, 110, 19, 'Practical Challenges Outcome', 2, '', 19, '2020-09-07 12:04:26', 1),
(1541, 110, 19, 'Sustainability', 2, '', 19, '2020-09-07 12:04:26', 1),
(1542, 110, 19, 'Sales Experience', 2, '', 19, '2020-09-07 12:04:26', 1),
(1543, 110, 19, 'Willing To Work On Holidays', 1, '', 19, '2020-09-07 12:04:26', 1),
(1544, 111, 40, 'Appearance', 4, 'Professional Appreance', 40, '2020-09-07 12:35:51', 1),
(1545, 111, 40, 'Attitude', 5, 'Looks Professional', 40, '2020-09-07 12:35:51', 1),
(1546, 111, 40, 'Communication (English)', 5, 'Good', 40, '2020-09-07 12:35:51', 1),
(1547, 111, 40, 'Communication (Tamil)', 5, 'Good', 40, '2020-09-07 12:35:51', 1),
(1548, 111, 40, 'Convincing Skills', 4, 'Good', 40, '2020-09-07 12:35:51', 1),
(1549, 111, 40, 'Confidence Level', 4, 'Promising', 40, '2020-09-07 12:35:51', 1),
(1550, 111, 40, 'Importance Of Job', 5, 'Looking for job immeditely', 40, '2020-09-07 12:35:51', 1),
(1551, 111, 40, 'Observation Skills', 4, '', 40, '2020-09-07 12:35:51', 1),
(1552, 111, 40, 'Pressure Handling', 4, '', 40, '2020-09-07 12:35:51', 1),
(1553, 111, 40, 'Patient', 5, '', 40, '2020-09-07 12:35:51', 1),
(1554, 111, 40, 'Sustainability', 3, '', 40, '2020-09-07 12:35:51', 1),
(1555, 111, 40, 'Sales Experience', 3, '', 40, '2020-09-07 12:35:51', 1),
(1556, 111, 40, 'Existing Experience Analyze', 4, '', 40, '2020-09-07 12:35:51', 1),
(1557, 111, 40, 'Practical Challenges Outcome', 3, '', 40, '2020-09-07 12:35:51', 1),
(1558, 111, 40, 'Willing To Work On Holidays', 5, '', 40, '2020-09-07 12:35:51', 1),
(1559, 108, 16, 'Appearance', 3, 'AVERAGE\n', 16, '2020-09-07 12:38:20', 1),
(1560, 108, 16, 'Attitude', 3, 'GOOD', 16, '2020-09-07 12:38:20', 1),
(1561, 108, 16, 'Communication (English)', 2, 'AVERAGE', 16, '2020-09-07 12:38:20', 1),
(1562, 108, 16, 'Communication (Tamil)', 3, 'GOOD', 16, '2020-09-07 12:38:20', 1),
(1563, 108, 16, 'Convincing Skills', 3, 'AVERAGE', 16, '2020-09-07 12:38:20', 1),
(1564, 108, 16, 'Confidence Level', 2, 'AVERAGE', 16, '2020-09-07 12:38:20', 1),
(1565, 108, 16, 'Existing Experience Analyze', 3, 'GOOD', 16, '2020-09-07 12:38:20', 1),
(1566, 108, 16, 'Importance Of Job', 2, 'AVERAGE', 16, '2020-09-07 12:38:20', 1),
(1567, 108, 16, 'Observation Skills', 3, 'GOOD', 16, '2020-09-07 12:38:20', 1),
(1568, 108, 16, 'Patient', 3, 'AVERAGE', 16, '2020-09-07 12:38:20', 1),
(1569, 108, 16, 'Pressure Handling', 3, 'AVERAGE', 16, '2020-09-07 12:38:20', 1),
(1570, 108, 16, 'Practical Challenges Outcome', 2, 'AVERAGE', 16, '2020-09-07 12:38:20', 1),
(1571, 108, 16, 'Sustainability', 2, 'DOUBT', 16, '2020-09-07 12:38:20', 1),
(1572, 108, 16, 'Sales Experience', 2, '5 MONTH ONLY', 16, '2020-09-07 12:38:20', 1),
(1573, 108, 16, 'Willing To Work On Holidays', 3, 'GOOD', 16, '2020-09-07 12:38:20', 1),
(1583, 112, 26, 'Is Employee Clearly Understand the roles and Responsibility?', 3, '', 26, '2020-09-07 12:50:27', 1),
(1584, 112, 26, 'Communication Skills?', 2, '', 26, '2020-09-07 12:50:27', 1),
(1585, 112, 26, 'Is all the technical Requirements matched with this employee?', 3, '', 26, '2020-09-07 12:50:27', 1),
(1586, 112, 26, 'attitude of the employee?', 2, '', 26, '2020-09-07 12:50:27', 1),
(1587, 112, 26, 'Having a good experience in client side,server side and database?', 2, 'dont have a  realtime experience in Mongo', 26, '2020-09-07 12:50:27', 1),
(1588, 112, 26, 'Idea about code management tools like git, bitbucket, svn...etc', 2, 'have to check while completing the task', 26, '2020-09-07 12:50:27', 1),
(1589, 112, 26, 'looking for a job change for career growth or salary growth?', 3, 'salary growth, we can offer upto 40 % if he completed the task.', 26, '2020-09-07 12:50:27', 1),
(1590, 112, 26, 'candidate have a real-time working experience?', 3, '', 26, '2020-09-07 12:50:27', 1),
(1591, 112, 26, 'worked with team?', 3, '', 26, '2020-09-07 12:50:27', 1),
(1592, 106, 26, 'attitude of the employee?', 1, '', 26, '2020-09-07 01:17:37', 1),
(1593, 106, 26, 'candidate have a real-time working experience?', 1, '', 26, '2020-09-07 01:17:37', 1),
(1594, 106, 26, 'Communication Skills?', 1, '', 26, '2020-09-07 01:17:37', 1),
(1595, 116, 24, 'Appearance', 4, '', 24, '2020-09-07 01:39:45', 1),
(1596, 116, 24, 'convincing Skills', 5, 'GOOD', 24, '2020-09-07 01:39:45', 1),
(1597, 121, 24, 'Confidence Level', 1, 'NOT SUITABLE FOR OUR PROFILE AND EXPECTING MORE SALARY.... ', 24, '2020-09-07 01:59:02', 1),
(1598, 83, 8, 'Attitude', 3, '', 8, '2020-09-07 02:06:06', 1),
(1599, 83, 8, 'Communication (English)', 2, '', 8, '2020-09-07 02:06:06', 1),
(1600, 83, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-07 02:06:06', 1),
(1601, 83, 8, 'Convincing Skills', 3, '', 8, '2020-09-07 02:06:06', 1),
(1602, 83, 8, 'Pressure Handling', 2, '', 8, '2020-09-07 02:06:06', 1),
(1603, 111, 18, 'Appearance', 3, 'Average', 18, '2020-09-07 02:46:37', 1),
(1604, 111, 18, 'Attitude', 4, 'Good', 18, '2020-09-07 02:46:37', 1),
(1605, 111, 18, 'Communication (English)', 3, 'Avg', 18, '2020-09-07 02:46:37', 1),
(1606, 111, 18, 'Communication (Tamil)', 4, 'Good', 18, '2020-09-07 02:46:37', 1),
(1607, 111, 18, 'Convincing Skills', 1, 'poor', 18, '2020-09-07 02:46:37', 1),
(1608, 111, 18, 'Confidence Level', 2, 'Average', 18, '2020-09-07 02:46:37', 1),
(1609, 111, 18, 'Importance Of Job', 4, 'High', 18, '2020-09-07 02:46:37', 1),
(1610, 111, 18, 'Observation Skills', 3, 'Avg', 18, '2020-09-07 02:46:37', 1),
(1611, 111, 18, 'Pressure Handling', 3, 'Avg', 18, '2020-09-07 02:46:37', 1),
(1612, 111, 18, 'Patient', 4, 'Good', 18, '2020-09-07 02:46:37', 1),
(1613, 111, 18, 'Sustainability', 3, 'Avg', 18, '2020-09-07 02:46:37', 1),
(1614, 111, 18, 'Sales Experience', 2, 'Limited', 18, '2020-09-07 02:46:37', 1),
(1615, 111, 18, 'Existing Experience Analyze', 2, 'poor', 18, '2020-09-07 02:46:37', 1),
(1616, 111, 18, 'Practical Challenges Outcome', 3, 'Avg', 18, '2020-09-07 02:46:37', 1),
(1617, 111, 18, 'Willing To Work On Holidays', 3, 'Avg', 18, '2020-09-07 02:46:37', 1),
(1618, 104, 15, 'Appearance', 3, '', 15, '2020-09-07 02:48:56', 1),
(1619, 104, 15, 'Attitude', 3, '', 15, '2020-09-07 02:48:56', 1),
(1620, 104, 15, 'Communication (English)', 3, '', 15, '2020-09-07 02:48:56', 1),
(1621, 104, 15, 'Communication (Tamil)', 4, '', 15, '2020-09-07 02:48:56', 1),
(1622, 104, 15, 'Convincing Skills', 2, '', 15, '2020-09-07 02:48:56', 1),
(1623, 104, 15, 'Confidence Level', 1, '', 15, '2020-09-07 02:48:56', 1),
(1624, 104, 15, 'Existing Experience Analyze', 1, '', 15, '2020-09-07 02:48:56', 1),
(1625, 104, 15, 'Importance Of Job', 3, '', 15, '2020-09-07 02:48:56', 1),
(1626, 104, 15, 'Observation Skills', 2, '', 15, '2020-09-07 02:48:56', 1),
(1627, 104, 15, 'Patient', 3, '', 15, '2020-09-07 02:48:56', 1),
(1628, 104, 15, 'Pressure Handling', 1, '', 15, '2020-09-07 02:48:56', 1),
(1629, 104, 15, 'Practical Challenges Outcome', 1, '', 15, '2020-09-07 02:48:56', 1),
(1630, 104, 15, 'Sustainability', 1, '', 15, '2020-09-07 02:48:56', 1),
(1631, 104, 15, 'Sales Experience', 1, '', 15, '2020-09-07 02:48:56', 1),
(1632, 104, 15, 'Willing To Work On Holidays', 1, '', 15, '2020-09-07 02:48:56', 1),
(1633, 119, 24, 'Sustainability', 1, 'past job.. 2month abscond and 6month abscond', 24, '2020-09-07 02:57:45', 1),
(1634, 123, 31, 'Appearance', 4, '', 31, '2020-09-07 03:46:35', 1),
(1635, 123, 31, 'Attitude', 3, '', 31, '2020-09-07 03:46:35', 1),
(1636, 123, 31, 'Communication (English)', 3, '', 31, '2020-09-07 03:46:35', 1),
(1637, 123, 31, 'Communication (Tamil)', 5, '', 31, '2020-09-07 03:46:35', 1),
(1638, 123, 31, 'Convincing Skills', 2, '', 31, '2020-09-07 03:46:35', 1),
(1639, 123, 31, 'Confidence Level', 3, '', 31, '2020-09-07 03:46:35', 1),
(1640, 123, 31, 'Importance Of Job', 2, '', 31, '2020-09-07 03:46:35', 1),
(1641, 123, 31, 'Observation Skills', 3, '', 31, '2020-09-07 03:46:35', 1),
(1642, 123, 31, 'Pressure Handling', 3, '', 31, '2020-09-07 03:46:35', 1),
(1643, 123, 31, 'Patient', 4, '', 31, '2020-09-07 03:46:35', 1),
(1644, 123, 31, 'Sustainability', 3, '', 31, '2020-09-07 03:46:35', 1),
(1645, 123, 31, 'Sales Experience', 3, '', 31, '2020-09-07 03:46:35', 1),
(1646, 123, 31, 'Existing Experience Analyze', 3, '', 31, '2020-09-07 03:46:35', 1),
(1647, 123, 31, 'Practical Challenges Outcome', 2, '', 31, '2020-09-07 03:46:35', 1),
(1648, 123, 31, 'Willing To Work On Holidays', 4, '', 31, '2020-09-07 03:46:35', 1),
(1649, 114, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-07 04:23:13', 1),
(1650, 114, 8, 'Communication (English)', 2, '', 8, '2020-09-07 04:23:13', 1),
(1651, 114, 8, 'convincing Skills', 2, '', 8, '2020-09-07 04:23:13', 1),
(1652, 114, 8, 'Importance (Job)', 3, '', 8, '2020-09-07 04:23:13', 1),
(1653, 114, 8, 'Patient', 3, '', 8, '2020-09-07 04:23:13', 1),
(1654, 83, 19, 'Appearance', 1, '', 19, '2020-09-07 04:32:01', 1),
(1655, 83, 19, 'Attitude', 2, '', 19, '2020-09-07 04:32:01', 1),
(1656, 83, 19, 'Communication (English)', 1, '', 19, '2020-09-07 04:32:01', 1),
(1657, 83, 19, 'Communication (Tamil)', 3, '', 19, '2020-09-07 04:32:01', 1),
(1658, 83, 19, 'Convincing Skills', 1, '', 19, '2020-09-07 04:32:01', 1),
(1659, 83, 19, 'Confidence Level', 1, '', 19, '2020-09-07 04:32:01', 1),
(1660, 83, 19, 'Existing Experience Analyze', 1, '', 19, '2020-09-07 04:32:01', 1),
(1661, 83, 19, 'Importance Of Job', 2, '', 19, '2020-09-07 04:32:01', 1),
(1662, 83, 19, 'Observation Skills', 2, '', 19, '2020-09-07 04:32:01', 1),
(1663, 83, 19, 'Patient', 3, '', 19, '2020-09-07 04:32:01', 1),
(1664, 83, 19, 'Pressure Handling', 1, '', 19, '2020-09-07 04:32:01', 1),
(1665, 83, 19, 'Practical Challenges Outcome', 1, '', 19, '2020-09-07 04:32:01', 1),
(1666, 83, 19, 'Sustainability', 1, '', 19, '2020-09-07 04:32:01', 1),
(1667, 83, 19, 'Sales Experience', 2, '', 19, '2020-09-07 04:32:01', 1),
(1668, 83, 19, 'Willing To Work On Holidays', 1, '', 19, '2020-09-07 04:32:01', 1),
(1669, 116, 20, 'Appearance', 3, '', 20, '2020-09-07 04:55:10', 1),
(1670, 116, 20, 'Attitude', 4, '', 20, '2020-09-07 04:55:10', 1),
(1671, 116, 20, 'Communication (Tamil)', 4, '', 20, '2020-09-07 04:55:10', 1),
(1672, 116, 20, 'Sustainability', 4, '', 20, '2020-09-07 04:55:10', 1),
(1673, 117, 20, 'Sustainability', 3, '', 20, '2020-09-07 05:03:23', 1),
(1674, 135, 11, 'Appearance', 3, '', 11, '2020-09-08 11:46:43', 1),
(1675, 135, 11, 'Attitude', 3, '', 11, '2020-09-08 11:46:43', 1),
(1676, 135, 11, 'Communication (Tamil)', 4, '', 11, '2020-09-08 11:46:43', 1),
(1677, 135, 11, 'Communication (English)', 3, '', 11, '2020-09-08 11:46:43', 1),
(1678, 135, 11, 'convincing Skills', 2, '', 11, '2020-09-08 11:46:43', 1),
(1679, 135, 11, 'Confidence Level', 3, '', 11, '2020-09-08 11:46:43', 1),
(1680, 135, 11, 'Importance (Job)', 3, '', 11, '2020-09-08 11:46:43', 1),
(1681, 135, 11, 'Observation skills', 4, '', 11, '2020-09-08 11:46:43', 1),
(1682, 135, 11, 'Pressure Handling', 3, '', 11, '2020-09-08 11:46:43', 1),
(1683, 135, 11, 'Patient', 3, '', 11, '2020-09-08 11:46:43', 1),
(1684, 135, 11, 'Sustainability', 3, '', 11, '2020-09-08 11:46:43', 1),
(1685, 132, 17, 'Appearance', 3, '', 17, '2020-09-08 11:55:12', 1),
(1686, 132, 17, 'Attitude', 3, '', 17, '2020-09-08 11:55:12', 1),
(1687, 132, 17, 'Communication (English)', 4, '', 17, '2020-09-08 11:55:12', 1),
(1688, 132, 17, 'Communication (Tamil)', 4, '', 17, '2020-09-08 11:55:12', 1),
(1689, 132, 17, 'Convincing Skills', 3, '', 17, '2020-09-08 11:55:12', 1),
(1690, 132, 17, 'Confidence Level', 3, '', 17, '2020-09-08 11:55:12', 1),
(1691, 132, 17, 'Existing Experience Analyze', 1, '', 17, '2020-09-08 11:55:12', 1),
(1692, 132, 17, 'Importance Of Job', 2, '', 17, '2020-09-08 11:55:12', 1),
(1693, 132, 17, 'Observation Skills', 3, '', 17, '2020-09-08 11:55:12', 1),
(1694, 132, 17, 'Patient', 2, '', 17, '2020-09-08 11:55:12', 1),
(1695, 132, 17, 'Pressure Handling', 3, '', 17, '2020-09-08 11:55:12', 1),
(1696, 132, 17, 'Practical Challenges Outcome', 3, '', 17, '2020-09-08 11:55:12', 1),
(1697, 132, 17, 'Sustainability', 2, '', 17, '2020-09-08 11:55:12', 1),
(1698, 132, 17, 'Sales Experience', 1, '', 17, '2020-09-08 11:55:12', 1),
(1699, 132, 17, 'Willing To Work On Holidays', 3, '', 17, '2020-09-08 11:55:12', 1),
(1700, 156, 24, 'Appearance', 3, 'GOOD FOR SALE', 24, '2020-09-08 12:05:08', 1),
(1701, 156, 24, 'Convincing Skills', 4, 'GOOD FOR SALE', 24, '2020-09-08 12:05:08', 1),
(1702, 156, 24, 'Confidence Level', 5, 'GOOD FOR SALE', 24, '2020-09-08 12:05:08', 1),
(1703, 155, 19, 'Communication (English)', 1, '', 19, '2020-09-08 12:10:13', 1),
(1704, 141, 44, 'Appearance', 3, '', 44, '2020-09-08 12:20:44', 1),
(1705, 141, 44, 'Attitude', 3, '', 44, '2020-09-08 12:20:44', 1),
(1706, 141, 44, 'Communication (English)', 2, '', 44, '2020-09-08 12:20:44', 1),
(1707, 141, 44, 'Communication (Tamil)', 4, '', 44, '2020-09-08 12:20:44', 1),
(1708, 141, 44, 'Convincing Skills', 2, '', 44, '2020-09-08 12:20:44', 1),
(1709, 141, 44, 'Confidence Level', 2, '', 44, '2020-09-08 12:20:44', 1),
(1710, 141, 44, 'Importance Of Job', 2, '', 44, '2020-09-08 12:20:44', 1),
(1711, 141, 44, 'Observation Skills', 2, '', 44, '2020-09-08 12:20:44', 1),
(1712, 141, 44, 'Pressure Handling', 2, '', 44, '2020-09-08 12:20:44', 1),
(1713, 141, 44, 'Patient', 2, '', 44, '2020-09-08 12:20:44', 1),
(1714, 141, 44, 'Sustainability', 2, '', 44, '2020-09-08 12:20:44', 1),
(1715, 141, 44, 'Sales Experience', 3, '', 44, '2020-09-08 12:20:44', 1),
(1716, 141, 44, 'Existing Experience Analyze', 2, '', 44, '2020-09-08 12:20:44', 1),
(1717, 141, 44, 'Practical Challenges Outcome', 2, '', 44, '2020-09-08 12:20:44', 1),
(1718, 141, 44, 'Willing To Work On Holidays', 2, '', 44, '2020-09-08 12:20:44', 1),
(1719, 148, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-08 12:28:05', 1),
(1720, 134, 26, 'attitude of the employee?', 3, '', 26, '2020-09-08 12:28:40', 1),
(1721, 134, 26, 'candidate have a real-time working experience?', 1, '', 26, '2020-09-08 12:28:40', 1),
(1722, 134, 26, 'Communication Skills?', 2, '', 26, '2020-09-08 12:28:40', 1),
(1723, 131, 31, 'Appearance', 4, '', 31, '2020-09-08 12:30:11', 1),
(1724, 131, 31, 'Attitude', 4, '', 31, '2020-09-08 12:30:11', 1),
(1725, 131, 31, 'Communication (English)', 5, '', 31, '2020-09-08 12:30:11', 1),
(1726, 131, 31, 'Communication (Tamil)', 5, '', 31, '2020-09-08 12:30:11', 1),
(1727, 131, 31, 'Convincing Skills', 4, '', 31, '2020-09-08 12:30:11', 1),
(1728, 131, 31, 'Confidence Level', 3, '', 31, '2020-09-08 12:30:11', 1),
(1729, 131, 31, 'Importance Of Job', 3, '', 31, '2020-09-08 12:30:11', 1),
(1730, 131, 31, 'Observation Skills', 4, '', 31, '2020-09-08 12:30:11', 1),
(1731, 131, 31, 'Pressure Handling', 2, '', 31, '2020-09-08 12:30:11', 1),
(1732, 131, 31, 'Patient', 3, '', 31, '2020-09-08 12:30:11', 1),
(1733, 131, 31, 'Sustainability', 2, '', 31, '2020-09-08 12:30:11', 1),
(1734, 131, 31, 'Sales Experience', 2, 'More into service and functional area', 31, '2020-09-08 12:30:11', 1),
(1735, 131, 31, 'Existing Experience Analyze', 3, '', 31, '2020-09-08 12:30:11', 1),
(1736, 131, 31, 'Practical Challenges Outcome', 3, '', 31, '2020-09-08 12:30:11', 1),
(1737, 131, 31, 'Willing To Work On Holidays', 4, '', 31, '2020-09-08 12:30:11', 1),
(1738, 129, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-08 12:34:15', 1),
(1739, 129, 8, 'Convincing Skills', 3, '', 8, '2020-09-08 12:34:15', 1),
(1740, 129, 8, 'Existing Experience Analyze', 3, '', 8, '2020-09-08 12:34:15', 1),
(1741, 129, 8, 'Importance Of Job', 2, '', 8, '2020-09-08 12:34:15', 1),
(1742, 129, 8, 'Patient', 3, '', 8, '2020-09-08 12:34:15', 1),
(1743, 129, 8, 'Pressure Handling', 2, '', 8, '2020-09-08 12:34:15', 1),
(1744, 129, 8, 'Sustainability', 2, '', 8, '2020-09-08 12:34:15', 1),
(1745, 129, 8, 'Sales Experience', 3, '', 8, '2020-09-08 12:34:15', 1),
(1746, 145, 31, 'Appearance', 4, '', 31, '2020-09-08 12:36:16', 1),
(1747, 145, 31, 'Attitude', 4, '', 31, '2020-09-08 12:36:16', 1),
(1748, 145, 31, 'Communication (English)', 3, '', 31, '2020-09-08 12:36:16', 1),
(1749, 145, 31, 'Communication (Tamil)', 4, '', 31, '2020-09-08 12:36:16', 1),
(1750, 145, 31, 'Convincing Skills', 4, '', 31, '2020-09-08 12:36:16', 1),
(1751, 145, 31, 'Confidence Level', 4, '', 31, '2020-09-08 12:36:16', 1),
(1752, 145, 31, 'Importance Of Job', 3, '', 31, '2020-09-08 12:36:16', 1),
(1753, 145, 31, 'Observation Skills', 3, '', 31, '2020-09-08 12:36:16', 1),
(1754, 145, 31, 'Pressure Handling', 3, '', 31, '2020-09-08 12:36:16', 1),
(1755, 145, 31, 'Patient', 3, '', 31, '2020-09-08 12:36:16', 1),
(1756, 145, 31, 'Sustainability', 3, '', 31, '2020-09-08 12:36:16', 1),
(1757, 145, 31, 'Sales Experience', 3, '', 31, '2020-09-08 12:36:16', 1),
(1758, 145, 31, 'Existing Experience Analyze', 3, '', 31, '2020-09-08 12:36:16', 1),
(1759, 145, 31, 'Practical Challenges Outcome', 3, '', 31, '2020-09-08 12:36:16', 1),
(1760, 145, 31, 'Willing To Work On Holidays', 4, '', 31, '2020-09-08 12:36:16', 1),
(1761, 127, 17, 'Appearance', 2, '', 17, '2020-09-08 12:40:55', 1),
(1762, 127, 17, 'Attitude', 3, '', 17, '2020-09-08 12:40:55', 1),
(1763, 127, 17, 'Communication (English)', 3, '', 17, '2020-09-08 12:40:55', 1),
(1764, 127, 17, 'Communication (Tamil)', 4, '', 17, '2020-09-08 12:40:55', 1),
(1765, 127, 17, 'Convincing Skills', 3, '', 17, '2020-09-08 12:40:55', 1),
(1766, 127, 17, 'Confidence Level', 3, '', 17, '2020-09-08 12:40:55', 1),
(1767, 127, 17, 'Existing Experience Analyze', 3, '', 17, '2020-09-08 12:40:55', 1),
(1768, 127, 17, 'Importance Of Job', 3, '', 17, '2020-09-08 12:40:55', 1),
(1769, 127, 17, 'Observation Skills', 3, '', 17, '2020-09-08 12:40:55', 1),
(1770, 127, 17, 'Patient', 3, '', 17, '2020-09-08 12:40:55', 1),
(1771, 127, 17, 'Pressure Handling', 3, '', 17, '2020-09-08 12:40:55', 1),
(1772, 127, 17, 'Practical Challenges Outcome', 2, '', 17, '2020-09-08 12:40:55', 1),
(1773, 127, 17, 'Sustainability', 3, '', 17, '2020-09-08 12:40:55', 1),
(1774, 127, 17, 'Sales Experience', 2, '', 17, '2020-09-08 12:40:55', 1),
(1775, 127, 17, 'Willing To Work On Holidays', 3, '', 17, '2020-09-08 12:40:55', 1),
(1776, 132, 40, 'Appearance', 4, 'Looks professional', 40, '2020-09-08 12:52:04', 1),
(1777, 132, 40, 'Attitude', 5, 'Behaving professionally', 40, '2020-09-08 12:52:04', 1),
(1778, 132, 40, 'Communication (English)', 3, 'Not upto the mark', 40, '2020-09-08 12:52:04', 1),
(1779, 132, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2020-09-08 12:52:04', 1),
(1780, 132, 40, 'Convincing Skills', 1, 'Fresher yet to learn', 40, '2020-09-08 12:52:04', 1),
(1781, 132, 40, 'Confidence Level', 3, 'seems like shy guy', 40, '2020-09-08 12:52:04', 1),
(1782, 132, 40, 'Existing Experience Analyze', 1, 'No experience', 40, '2020-09-08 12:52:04', 1),
(1783, 132, 40, 'Importance Of Job', 4, 'Planning for his own business he wants to know about ground work he will in 3 years max', 40, '2020-09-08 12:52:04', 1),
(1784, 132, 40, 'Observation Skills', 3, 'Slow runner', 40, '2020-09-08 12:52:04', 1),
(1785, 132, 40, 'Patient', 5, 'Yes he is', 40, '2020-09-08 12:52:04', 1),
(1786, 132, 40, 'Pressure Handling', 1, 'Fresher', 40, '2020-09-08 12:52:04', 1),
(1787, 132, 40, 'Practical Challenges Outcome', 1, 'NO experience', 40, '2020-09-08 12:52:04', 1),
(1788, 132, 40, 'Sustainability', 3, 'Maximum 2 years in business', 40, '2020-09-08 12:52:04', 1),
(1789, 132, 40, 'Sales Experience', 1, 'zero exp', 40, '2020-09-08 12:52:04', 1),
(1790, 132, 40, 'Willing To Work On Holidays', 5, 'Yes he is capable off', 40, '2020-09-08 12:52:04', 1),
(1791, 139, 26, 'attitude of the employee?', 1, '', 26, '2020-09-08 12:58:01', 1),
(1792, 139, 26, 'candidate have a real-time working experience?', 1, '', 26, '2020-09-08 12:58:01', 1),
(1793, 139, 26, 'Communication Skills?', 2, '', 26, '2020-09-08 12:58:01', 1),
(1794, 127, 16, 'Appearance', 3, '', 16, '2020-09-08 01:07:40', 1),
(1795, 127, 16, 'Attitude', 3, '', 16, '2020-09-08 01:07:40', 1),
(1796, 127, 16, 'Communication (English)', 3, '', 16, '2020-09-08 01:07:40', 1),
(1797, 127, 16, 'Communication (Tamil)', 4, '', 16, '2020-09-08 01:07:40', 1),
(1798, 127, 16, 'Convincing Skills', 4, '', 16, '2020-09-08 01:07:40', 1),
(1799, 127, 16, 'Confidence Level', 4, '', 16, '2020-09-08 01:07:40', 1),
(1800, 127, 16, 'Existing Experience Analyze', 3, '', 16, '2020-09-08 01:07:40', 1),
(1801, 127, 16, 'Importance Of Job', 4, '', 16, '2020-09-08 01:07:40', 1),
(1802, 127, 16, 'Observation Skills', 3, '', 16, '2020-09-08 01:07:40', 1),
(1803, 127, 16, 'Patient', 3, '', 16, '2020-09-08 01:07:40', 1),
(1804, 127, 16, 'Pressure Handling', 3, '', 16, '2020-09-08 01:07:40', 1),
(1805, 127, 16, 'Practical Challenges Outcome', 2, '', 16, '2020-09-08 01:07:40', 1),
(1806, 127, 16, 'Sustainability', 4, '', 16, '2020-09-08 01:07:40', 1),
(1807, 127, 16, 'Sales Experience', 4, '', 16, '2020-09-08 01:07:40', 1),
(1808, 127, 16, 'Willing To Work On Holidays', 4, '', 16, '2020-09-08 01:07:40', 1),
(1809, 129, 36, 'Communication (English)', 3, '', 36, '2020-09-08 01:20:05', 1),
(1810, 129, 36, 'Communication (Tamil)', 3, '', 36, '2020-09-08 01:20:05', 1),
(1811, 148, 14, 'Appearance', 2, '', 14, '2020-09-08 01:20:51', 1),
(1812, 148, 14, 'Attitude', 3, '', 14, '2020-09-08 01:20:51', 1),
(1813, 148, 14, 'Communication (English)', 3, '', 14, '2020-09-08 01:20:51', 1),
(1814, 148, 14, 'Communication (Tamil)', 3, '', 14, '2020-09-08 01:20:51', 1),
(1815, 148, 14, 'Existing Experience Analyze', 2, '', 14, '2020-09-08 01:20:51', 1),
(1816, 148, 14, 'Pressure Handling', 3, '', 14, '2020-09-08 01:20:51', 1),
(1817, 157, 11, 'Appearance', 3, '', 11, '2020-09-08 01:34:33', 1),
(1818, 157, 11, 'Attitude', 3, '', 11, '2020-09-08 01:34:33', 1),
(1819, 157, 11, 'Communication (Tamil)', 3, '', 11, '2020-09-08 01:34:33', 1),
(1820, 157, 11, 'Communication (English)', 2, '', 11, '2020-09-08 01:34:33', 1),
(1821, 157, 11, 'convincing Skills', 3, '', 11, '2020-09-08 01:34:33', 1),
(1822, 157, 11, 'Confidence Level', 3, '', 11, '2020-09-08 01:34:33', 1),
(1823, 157, 11, 'Importance (Job)', 3, '', 11, '2020-09-08 01:34:33', 1),
(1824, 157, 11, 'Observation skills', 3, '', 11, '2020-09-08 01:34:33', 1),
(1825, 157, 11, 'Pressure Handling', 2, '', 11, '2020-09-08 01:34:33', 1),
(1826, 157, 11, 'Patient', 3, '', 11, '2020-09-08 01:34:33', 1),
(1827, 157, 11, 'Sustainability', 3, '', 11, '2020-09-08 01:34:33', 1),
(1828, 132, 18, 'Appearance', 3, '', 18, '2020-09-08 01:43:07', 1),
(1829, 132, 18, 'Attitude', 4, '', 18, '2020-09-08 01:43:07', 1),
(1830, 132, 18, 'Communication (English)', 1, '', 18, '2020-09-08 01:43:07', 1),
(1831, 132, 18, 'Communication (Tamil)', 3, '', 18, '2020-09-08 01:43:07', 1),
(1832, 132, 18, 'Convincing Skills', 2, '', 18, '2020-09-08 01:43:07', 1),
(1833, 132, 18, 'Confidence Level', 3, '', 18, '2020-09-08 01:43:07', 1),
(1834, 132, 18, 'Existing Experience Analyze', 1, '', 18, '2020-09-08 01:43:07', 1),
(1835, 132, 18, 'Importance Of Job', 3, '', 18, '2020-09-08 01:43:07', 1),
(1836, 132, 18, 'Observation Skills', 2, '', 18, '2020-09-08 01:43:07', 1),
(1837, 132, 18, 'Patient', 4, '', 18, '2020-09-08 01:43:07', 1),
(1838, 132, 18, 'Pressure Handling', 3, '', 18, '2020-09-08 01:43:07', 1),
(1839, 132, 18, 'Practical Challenges Outcome', 3, '', 18, '2020-09-08 01:43:07', 1),
(1840, 132, 18, 'Sustainability', 3, '', 18, '2020-09-08 01:43:07', 1),
(1841, 132, 18, 'Sales Experience', 1, '', 18, '2020-09-08 01:43:07', 1),
(1842, 132, 18, 'Willing To Work On Holidays', 4, '', 18, '2020-09-08 01:43:07', 1),
(1843, 140, 26, 'attitude of the employee?', 3, '', 26, '2020-09-08 02:19:37', 1),
(1844, 140, 26, 'candidate have a real-time working experience?', 2, 'she worked just 2 projects, but only Maintenance. ', 26, '2020-09-08 02:19:37', 1),
(1845, 140, 26, 'Communication Skills?', 3, '', 26, '2020-09-08 02:19:37', 1),
(1846, 140, 26, 'Having a good experience in client side,server side and database?', 2, '', 26, '2020-09-08 02:19:37', 1),
(1847, 128, 21, 'Appearance', 3, '-', 21, '2020-09-08 02:54:03', 1),
(1848, 128, 21, 'Attitude', 4, '-', 21, '2020-09-08 02:54:03', 1),
(1849, 128, 21, 'Communication (Tamil)', 4, '-', 21, '2020-09-08 02:54:03', 1),
(1850, 128, 21, 'Communication (English)', 3, '-', 21, '2020-09-08 02:54:03', 1),
(1851, 128, 21, 'convincing Skills', 3, '-', 21, '2020-09-08 02:54:03', 1),
(1852, 128, 21, 'Confidence Level', 3, '-', 21, '2020-09-08 02:54:03', 1),
(1853, 128, 21, 'Importance (Job)', 2, '-', 21, '2020-09-08 02:54:03', 1),
(1854, 128, 21, 'Observation skills', 3, '-', 21, '2020-09-08 02:54:03', 1),
(1855, 128, 21, 'Pressure Handling', 3, '-', 21, '2020-09-08 02:54:03', 1),
(1856, 128, 21, 'Patient', 4, '-', 21, '2020-09-08 02:54:03', 1),
(1857, 128, 21, 'Sustainability', 3, '-', 21, '2020-09-08 02:54:03', 1),
(1858, 137, 21, 'Appearance', 4, '-', 21, '2020-09-08 02:58:40', 1),
(1859, 137, 21, 'Attitude', 3, '-', 21, '2020-09-08 02:58:40', 1),
(1860, 137, 21, 'Communication (Tamil)', 4, '-', 21, '2020-09-08 02:58:40', 1),
(1861, 137, 21, 'Communication (English)', 3, '-', 21, '2020-09-08 02:58:40', 1),
(1862, 137, 21, 'convincing Skills', 4, '-', 21, '2020-09-08 02:58:40', 1),
(1863, 137, 21, 'Confidence Level', 3, '-', 21, '2020-09-08 02:58:40', 1),
(1864, 137, 21, 'Importance (Job)', 4, '-', 21, '2020-09-08 02:58:40', 1),
(1865, 137, 21, 'Observation skills', 4, '-', 21, '2020-09-08 02:58:40', 1),
(1866, 137, 21, 'Pressure Handling', 3, '-', 21, '2020-09-08 02:58:40', 1),
(1867, 137, 21, 'Patient', 3, '-', 21, '2020-09-08 02:58:40', 1),
(1868, 137, 21, 'Sustainability', 4, '-', 21, '2020-09-08 02:58:40', 1),
(1869, 142, 21, 'Appearance', 2, '', 21, '2020-09-08 03:02:01', 1),
(1870, 142, 21, 'Attitude', 2, '', 21, '2020-09-08 03:02:01', 1),
(1871, 142, 21, 'Communication (Tamil)', 4, '', 21, '2020-09-08 03:02:01', 1),
(1872, 142, 21, 'Communication (English)', 1, '', 21, '2020-09-08 03:02:01', 1),
(1873, 142, 21, 'convincing Skills', 1, '', 21, '2020-09-08 03:02:01', 1),
(1874, 142, 21, 'Confidence Level', 1, '', 21, '2020-09-08 03:02:01', 1),
(1875, 142, 21, 'Importance (Job)', 3, '', 21, '2020-09-08 03:02:01', 1),
(1876, 142, 21, 'Observation skills', 2, '', 21, '2020-09-08 03:02:01', 1),
(1877, 142, 21, 'Pressure Handling', 1, '', 21, '2020-09-08 03:02:01', 1),
(1878, 142, 21, 'Patient', 4, '', 21, '2020-09-08 03:02:01', 1),
(1879, 142, 21, 'Sustainability', 1, '', 21, '2020-09-08 03:02:01', 1),
(1880, 149, 21, 'Appearance', 3, '', 21, '2020-09-08 03:05:50', 1),
(1881, 149, 21, 'Attitude', 4, '', 21, '2020-09-08 03:05:50', 1),
(1882, 149, 21, 'Communication (Tamil)', 4, '', 21, '2020-09-08 03:05:50', 1),
(1883, 149, 21, 'Communication (English)', 2, '', 21, '2020-09-08 03:05:50', 1),
(1884, 149, 21, 'convincing Skills', 3, '', 21, '2020-09-08 03:05:50', 1),
(1885, 149, 21, 'Confidence Level', 3, '', 21, '2020-09-08 03:05:50', 1),
(1886, 149, 21, 'Importance (Job)', 3, '', 21, '2020-09-08 03:05:50', 1),
(1887, 149, 21, 'Observation skills', 3, '', 21, '2020-09-08 03:05:50', 1),
(1888, 149, 21, 'Pressure Handling', 3, '', 21, '2020-09-08 03:05:50', 1),
(1889, 149, 21, 'Patient', 4, '', 21, '2020-09-08 03:05:50', 1),
(1890, 149, 21, 'Sustainability', 4, '', 21, '2020-09-08 03:05:50', 1),
(1891, 16, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-08 04:13:23', 1),
(1892, 16, 8, 'Communication (English)', 3, '', 8, '2020-09-08 04:13:23', 1),
(1893, 16, 8, 'convincing Skills', 2, '', 8, '2020-09-08 04:13:23', 1),
(1894, 16, 8, 'Importance (Job)', 2, '', 8, '2020-09-08 04:13:23', 1),
(1895, 134, 27, 'candidate have a real-time working experience?', 2, 'As a Fresher He Knows only CRUD Opertations.', 27, '2020-09-08 06:18:25', 1),
(1896, 140, 27, 'attitude of the employee?', 3, '', 27, '2020-09-08 07:12:07', 1),
(1897, 140, 27, 'Communication Skills?', 3, '', 27, '2020-09-08 07:12:07', 1),
(1898, 140, 27, 'relevance experience with this technical spec.', 3, '', 27, '2020-09-08 07:12:07', 1),
(1899, 175, 8, 'Communication (English)', 2, '', 8, '2020-09-09 10:50:24', 1),
(1900, 175, 8, 'Communication (Tamil)', 2, 'pronunciation is not good because of his mother Tongue ', 8, '2020-09-09 10:50:24', 1),
(1901, 175, 8, 'Convincing Skills', 3, '', 8, '2020-09-09 10:50:24', 1),
(1902, 175, 8, 'Confidence Level', 2, '', 8, '2020-09-09 10:50:24', 1),
(1903, 175, 8, 'Importance Of Job', 3, '', 8, '2020-09-09 10:50:24', 1),
(1904, 175, 8, 'Sustainability', 2, 'profile miss match, after 2 years joless, worked in many concerns.', 8, '2020-09-09 10:50:24', 1),
(1905, 175, 8, 'Sales Experience', 3, '', 8, '2020-09-09 10:50:24', 1),
(1906, 175, 8, 'Existing Experience Analyze', 2, '', 8, '2020-09-09 10:50:24', 1),
(1907, 161, 8, 'Appearance', 3, '', 8, '2020-09-09 11:09:15', 1),
(1908, 161, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-09 11:09:15', 1),
(1909, 161, 8, 'Communication (English)', 2, '', 8, '2020-09-09 11:09:15', 1),
(1910, 161, 8, 'convincing Skills', 3, '', 8, '2020-09-09 11:09:15', 1),
(1911, 161, 8, 'Confidence Level', 3, '', 8, '2020-09-09 11:09:15', 1),
(1912, 161, 8, 'Importance (Job)', 3, '', 8, '2020-09-09 11:09:15', 1),
(1913, 178, 8, 'Appearance', 3, '', 8, '2020-09-09 11:17:42', 1),
(1914, 178, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-09 11:17:42', 1),
(1915, 178, 8, 'Communication (English)', 2, '', 8, '2020-09-09 11:17:42', 1),
(1916, 178, 8, 'convincing Skills', 2, '', 8, '2020-09-09 11:17:42', 1),
(1917, 178, 8, 'Confidence Level', 2, '', 8, '2020-09-09 11:17:42', 1),
(1918, 178, 8, 'Importance (Job)', 3, '', 8, '2020-09-09 11:17:42', 1),
(1919, 81, 14, 'Appearance', 3, '', 14, '2020-09-09 11:37:21', 1),
(1920, 81, 14, 'Attitude', 3, '', 14, '2020-09-09 11:37:21', 1),
(1921, 81, 14, 'Communication (Tamil)', 4, '', 14, '2020-09-09 11:37:21', 1),
(1922, 81, 14, 'Communication (English)', 3, '', 14, '2020-09-09 11:37:21', 1),
(1923, 81, 14, 'convincing Skills', 4, '', 14, '2020-09-09 11:37:21', 1),
(1924, 81, 14, 'Confidence Level', 4, '', 14, '2020-09-09 11:37:21', 1),
(1925, 81, 14, 'Importance (Job)', 4, '', 14, '2020-09-09 11:37:21', 1),
(1926, 81, 14, 'Observation skills', 4, '', 14, '2020-09-09 11:37:21', 1),
(1927, 81, 14, 'Pressure Handling', 4, '', 14, '2020-09-09 11:37:21', 1),
(1928, 81, 14, 'Patient', 3, '', 14, '2020-09-09 11:37:21', 1),
(1929, 81, 14, 'Sustainability', 4, '', 14, '2020-09-09 11:37:21', 1),
(1930, 160, 8, 'Appearance', 3, '', 8, '2020-09-09 11:40:54', 1),
(1931, 160, 8, 'Attitude', 3, '', 8, '2020-09-09 11:40:54', 1),
(1932, 160, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-09 11:40:54', 1),
(1933, 160, 8, 'Communication (English)', 3, '', 8, '2020-09-09 11:40:54', 1),
(1934, 160, 8, 'Confidence Level', 3, '', 8, '2020-09-09 11:40:54', 1),
(1935, 175, 34, 'Appearance', 2, 'not act like  professional people', 34, '2020-09-09 12:04:30', 1),
(1936, 175, 34, 'Attitude', 4, 'Down to earth Personality', 34, '2020-09-09 12:04:30', 1),
(1937, 175, 34, 'Communication (English)', 1, 'Not good', 34, '2020-09-09 12:04:30', 1),
(1938, 175, 34, 'Communication (Tamil)', 3, 'his local language is malayalam not  the mark in tamil', 34, '2020-09-09 12:04:30', 1),
(1939, 175, 34, 'Convincing Skills', 3, 'Pitching is bit satisfied but end conclusion is not satisfied', 34, '2020-09-09 12:04:30', 1),
(1940, 175, 34, 'Confidence Level', 1, 'zero level', 34, '2020-09-09 12:04:30', 1),
(1941, 175, 34, 'Importance Of Job', 4, 'Really need a job to sustain in professional carrier', 34, '2020-09-09 12:04:30', 1),
(1942, 175, 34, 'Observation Skills', 2, 'Dilemma', 34, '2020-09-09 12:04:30', 1),
(1943, 175, 34, 'Pressure Handling', 2, 'His past working history seems like doubtful', 34, '2020-09-09 12:04:30', 1),
(1944, 175, 34, 'Patient', 4, 'yes he is...', 34, '2020-09-09 12:04:30', 1),
(1945, 175, 34, 'Sustainability', 2, 'Comparing to past history not a long runner', 34, '2020-09-09 12:04:30', 1),
(1946, 175, 34, 'Sales Experience', 3, '3 years but not a productive', 34, '2020-09-09 12:04:30', 1),
(1947, 175, 34, 'Existing Experience Analyze', 1, 'doubtful', 34, '2020-09-09 12:04:30', 1),
(1948, 175, 34, 'Practical Challenges Outcome', 2, 'doubtful', 34, '2020-09-09 12:04:30', 1),
(1949, 175, 34, 'Willing To Work On Holidays', 3, 'yes', 34, '2020-09-09 12:04:30', 1),
(1950, 171, 8, 'Appearance', 3, '', 8, '2020-09-09 12:11:35', 1),
(1951, 171, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-09 12:11:35', 1),
(1952, 171, 8, 'Communication (English)', 3, '', 8, '2020-09-09 12:11:35', 1),
(1953, 171, 8, 'convincing Skills', 2, '', 8, '2020-09-09 12:11:35', 1),
(1954, 171, 8, 'Confidence Level', 2, '', 8, '2020-09-09 12:11:35', 1),
(1955, 171, 8, 'Importance (Job)', 3, '', 8, '2020-09-09 12:11:35', 1),
(1956, 161, 14, 'Appearance', 4, '', 14, '2020-09-09 12:26:06', 1),
(1957, 161, 14, 'Attitude', 4, '', 14, '2020-09-09 12:26:06', 1),
(1958, 161, 14, 'Communication (Tamil)', 4, '', 14, '2020-09-09 12:26:06', 1),
(1959, 161, 14, 'Communication (English)', 3, '', 14, '2020-09-09 12:26:06', 1),
(1960, 161, 14, 'convincing Skills', 4, '', 14, '2020-09-09 12:26:06', 1),
(1961, 161, 14, 'Confidence Level', 4, '', 14, '2020-09-09 12:26:06', 1),
(1962, 161, 14, 'Importance (Job)', 4, '', 14, '2020-09-09 12:26:06', 1),
(1963, 161, 14, 'Observation skills', 4, '', 14, '2020-09-09 12:26:06', 1),
(1964, 161, 14, 'Pressure Handling', 4, '', 14, '2020-09-09 12:26:06', 1),
(1965, 161, 14, 'Patient', 3, '', 14, '2020-09-09 12:26:06', 1),
(1966, 161, 14, 'Sustainability', 4, '', 14, '2020-09-09 12:26:06', 1),
(1967, 170, 8, 'Appearance', 3, '', 8, '2020-09-09 12:43:56', 1),
(1968, 170, 8, 'Attitude', 3, '', 8, '2020-09-09 12:43:56', 1),
(1969, 170, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-09 12:43:56', 1),
(1970, 170, 8, 'Communication (English)', 2, '', 8, '2020-09-09 12:43:56', 1),
(1971, 170, 8, 'convincing Skills', 2, '', 8, '2020-09-09 12:43:56', 1),
(1972, 170, 8, 'Importance (Job)', 3, '', 8, '2020-09-09 12:43:56', 1),
(1973, 170, 8, 'Sustainability', 2, '', 8, '2020-09-09 12:43:56', 1),
(1974, 188, 14, 'Appearance', 3, '', 14, '2020-09-09 01:44:51', 1),
(1975, 188, 14, 'Attitude', 1, '', 14, '2020-09-09 01:44:51', 1),
(1976, 188, 14, 'Communication (Tamil)', 3, '', 14, '2020-09-09 01:44:51', 1),
(1977, 188, 14, 'Communication (English)', 3, '', 14, '2020-09-09 01:44:51', 1),
(1978, 188, 14, 'convincing Skills', 1, '', 14, '2020-09-09 01:44:51', 1),
(1979, 188, 14, 'Confidence Level', 1, '', 14, '2020-09-09 01:44:51', 1),
(1980, 188, 14, 'Importance (Job)', 2, '', 14, '2020-09-09 01:44:51', 1),
(1981, 188, 14, 'Observation skills', 1, '', 14, '2020-09-09 01:44:51', 1),
(1982, 188, 14, 'Pressure Handling', 1, '', 14, '2020-09-09 01:44:51', 1),
(1983, 188, 14, 'Patient', 2, '', 14, '2020-09-09 01:44:51', 1),
(1984, 188, 14, 'Sustainability', 1, '', 14, '2020-09-09 01:44:51', 1),
(1985, 166, 11, 'Appearance', 3, '-', 11, '2020-09-09 02:24:33', 1),
(1986, 166, 11, 'Attitude', 4, '-', 11, '2020-09-09 02:24:33', 1),
(1987, 166, 11, 'Communication (Tamil)', 4, '-', 11, '2020-09-09 02:24:33', 1),
(1988, 166, 11, 'Communication (English)', 3, '-', 11, '2020-09-09 02:24:33', 1),
(1989, 166, 11, 'convincing Skills', 3, '-', 11, '2020-09-09 02:24:33', 1),
(1990, 166, 11, 'Confidence Level', 4, '-', 11, '2020-09-09 02:24:33', 1),
(1991, 166, 11, 'Importance (Job)', 4, '-', 11, '2020-09-09 02:24:33', 1),
(1992, 166, 11, 'Observation skills', 4, '-', 11, '2020-09-09 02:24:33', 1),
(1993, 166, 11, 'Pressure Handling', 3, '-', 11, '2020-09-09 02:24:33', 1),
(1994, 166, 11, 'Patient', 4, '-', 11, '2020-09-09 02:24:33', 1),
(1995, 166, 11, 'Sustainability', 4, '-', 11, '2020-09-09 02:24:33', 1),
(1996, 169, 11, 'Appearance', 3, '', 11, '2020-09-09 02:25:50', 1),
(1997, 169, 11, 'Attitude', 2, '', 11, '2020-09-09 02:25:50', 1),
(1998, 169, 11, 'Communication (Tamil)', 4, '', 11, '2020-09-09 02:25:50', 1),
(1999, 169, 11, 'Communication (English)', 3, '', 11, '2020-09-09 02:25:50', 1),
(2000, 169, 11, 'convincing Skills', 3, '', 11, '2020-09-09 02:25:50', 1),
(2001, 169, 11, 'Confidence Level', 3, '', 11, '2020-09-09 02:25:50', 1),
(2002, 169, 11, 'Importance (Job)', 3, '', 11, '2020-09-09 02:25:50', 1),
(2003, 169, 11, 'Observation skills', 4, '', 11, '2020-09-09 02:25:50', 1),
(2004, 169, 11, 'Pressure Handling', 1, '', 11, '2020-09-09 02:25:50', 1),
(2005, 169, 11, 'Patient', 3, '', 11, '2020-09-09 02:25:50', 1),
(2006, 169, 11, 'Sustainability', 1, '', 11, '2020-09-09 02:25:50', 1),
(2007, 183, 21, 'Appearance', 4, '-', 21, '2020-09-09 02:32:23', 1),
(2008, 183, 21, 'Attitude', 4, '-', 21, '2020-09-09 02:32:23', 1),
(2009, 183, 21, 'Communication (Tamil)', 4, '-', 21, '2020-09-09 02:32:23', 1),
(2010, 183, 21, 'Communication (English)', 3, '-', 21, '2020-09-09 02:32:23', 1),
(2011, 183, 21, 'convincing Skills', 3, '-', 21, '2020-09-09 02:32:23', 1),
(2012, 183, 21, 'Confidence Level', 4, '-', 21, '2020-09-09 02:32:23', 1),
(2013, 183, 21, 'Importance (Job)', 4, '-', 21, '2020-09-09 02:32:23', 1),
(2014, 183, 21, 'Observation skills', 4, '-', 21, '2020-09-09 02:32:23', 1),
(2015, 183, 21, 'Pressure Handling', 4, '-', 21, '2020-09-09 02:32:23', 1),
(2016, 183, 21, 'Patient', 4, '-', 21, '2020-09-09 02:32:23', 1),
(2017, 183, 21, 'Sustainability', 4, '-', 21, '2020-09-09 02:32:23', 1),
(2018, 187, 21, 'Appearance', 4, '', 21, '2020-09-09 02:35:11', 1),
(2019, 187, 21, 'Attitude', 4, '', 21, '2020-09-09 02:35:11', 1),
(2020, 187, 21, 'Communication (Tamil)', 4, '', 21, '2020-09-09 02:35:11', 1),
(2021, 187, 21, 'Communication (English)', 3, '', 21, '2020-09-09 02:35:11', 1),
(2022, 187, 21, 'convincing Skills', 4, '', 21, '2020-09-09 02:35:11', 1),
(2023, 187, 21, 'Confidence Level', 4, '', 21, '2020-09-09 02:35:11', 1),
(2024, 187, 21, 'Importance (Job)', 5, '', 21, '2020-09-09 02:35:11', 1),
(2025, 187, 21, 'Observation skills', 4, '', 21, '2020-09-09 02:35:11', 1),
(2026, 187, 21, 'Pressure Handling', 4, '', 21, '2020-09-09 02:35:11', 1),
(2027, 187, 21, 'Patient', 4, '', 21, '2020-09-09 02:35:11', 1),
(2028, 187, 21, 'Sustainability', 4, '', 21, '2020-09-09 02:35:11', 1),
(2029, 180, 21, 'Appearance', 4, '', 21, '2020-09-09 02:36:37', 1),
(2030, 180, 21, 'Attitude', 3, '', 21, '2020-09-09 02:36:37', 1),
(2031, 180, 21, 'Communication (Tamil)', 4, '', 21, '2020-09-09 02:36:37', 1),
(2032, 180, 21, 'Communication (English)', 3, '', 21, '2020-09-09 02:36:37', 1),
(2033, 180, 21, 'convincing Skills', 4, '', 21, '2020-09-09 02:36:37', 1),
(2034, 180, 21, 'Confidence Level', 4, '', 21, '2020-09-09 02:36:37', 1),
(2035, 180, 21, 'Importance (Job)', 4, '', 21, '2020-09-09 02:36:37', 1),
(2036, 180, 21, 'Observation skills', 4, '', 21, '2020-09-09 02:36:37', 1),
(2037, 180, 21, 'Pressure Handling', 4, '', 21, '2020-09-09 02:36:37', 1),
(2038, 180, 21, 'Patient', 3, '', 21, '2020-09-09 02:36:37', 1),
(2039, 180, 21, 'Sustainability', 4, '', 21, '2020-09-09 02:36:37', 1),
(2040, 179, 21, 'Appearance', 2, '', 21, '2020-09-09 02:40:58', 1),
(2041, 179, 21, 'Attitude', 2, '', 21, '2020-09-09 02:40:58', 1),
(2042, 179, 21, 'Communication (Tamil)', 4, '', 21, '2020-09-09 02:40:58', 1),
(2043, 179, 21, 'Communication (English)', 2, '', 21, '2020-09-09 02:40:58', 1),
(2044, 179, 21, 'convincing Skills', 1, '', 21, '2020-09-09 02:40:58', 1),
(2045, 179, 21, 'Confidence Level', 1, '', 21, '2020-09-09 02:40:58', 1),
(2046, 179, 21, 'Importance (Job)', 3, '', 21, '2020-09-09 02:40:58', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(2047, 179, 21, 'Observation skills', 1, '', 21, '2020-09-09 02:40:58', 1),
(2048, 179, 21, 'Pressure Handling', 1, '', 21, '2020-09-09 02:40:58', 1),
(2049, 179, 21, 'Patient', 1, '', 21, '2020-09-09 02:40:58', 1),
(2050, 179, 21, 'Sustainability', 1, '', 21, '2020-09-09 02:40:58', 1),
(2051, 182, 21, 'Appearance', 3, '', 21, '2020-09-09 02:44:20', 1),
(2052, 182, 21, 'Attitude', 1, '', 21, '2020-09-09 02:44:20', 1),
(2053, 182, 21, 'Communication (Tamil)', 4, '', 21, '2020-09-09 02:44:20', 1),
(2054, 182, 21, 'Communication (English)', 3, '', 21, '2020-09-09 02:44:20', 1),
(2055, 182, 21, 'convincing Skills', 1, '', 21, '2020-09-09 02:44:20', 1),
(2056, 182, 21, 'Confidence Level', 1, '', 21, '2020-09-09 02:44:20', 1),
(2057, 182, 21, 'Importance (Job)', 2, '', 21, '2020-09-09 02:44:20', 1),
(2058, 182, 21, 'Observation skills', 2, '', 21, '2020-09-09 02:44:20', 1),
(2059, 182, 21, 'Pressure Handling', 1, '', 21, '2020-09-09 02:44:20', 1),
(2060, 182, 21, 'Patient', 1, '', 21, '2020-09-09 02:44:20', 1),
(2061, 182, 21, 'Sustainability', 1, '', 21, '2020-09-09 02:44:20', 1),
(2062, 165, 21, 'Appearance', 4, '', 21, '2020-09-09 02:49:02', 1),
(2063, 165, 21, 'Attitude', 4, '', 21, '2020-09-09 02:49:02', 1),
(2064, 165, 21, 'Communication (Tamil)', 4, '', 21, '2020-09-09 02:49:02', 1),
(2065, 165, 21, 'Communication (English)', 4, '', 21, '2020-09-09 02:49:02', 1),
(2066, 165, 21, 'convincing Skills', 4, '', 21, '2020-09-09 02:49:02', 1),
(2067, 165, 21, 'Confidence Level', 4, '', 21, '2020-09-09 02:49:02', 1),
(2068, 165, 21, 'Importance (Job)', 4, '', 21, '2020-09-09 02:49:02', 1),
(2069, 165, 21, 'Observation skills', 4, '', 21, '2020-09-09 02:49:02', 1),
(2070, 165, 21, 'Pressure Handling', 4, '', 21, '2020-09-09 02:49:02', 1),
(2071, 165, 21, 'Patient', 4, '', 21, '2020-09-09 02:49:02', 1),
(2072, 165, 21, 'Sustainability', 2, '', 21, '2020-09-09 02:49:02', 1),
(2073, 167, 19, 'Appearance', 3, '', 19, '2020-09-09 02:52:36', 1),
(2074, 167, 19, 'Attitude', 3, '', 19, '2020-09-09 02:52:36', 1),
(2075, 167, 19, 'Communication (English)', 4, '', 19, '2020-09-09 02:52:36', 1),
(2076, 167, 19, 'Communication (Tamil)', 4, '', 19, '2020-09-09 02:52:36', 1),
(2077, 167, 19, 'Convincing Skills', 3, '', 19, '2020-09-09 02:52:36', 1),
(2078, 167, 19, 'Confidence Level', 3, '', 19, '2020-09-09 02:52:36', 1),
(2079, 167, 19, 'Importance Of Job', 4, '', 19, '2020-09-09 02:52:36', 1),
(2080, 167, 19, 'Observation Skills', 4, '', 19, '2020-09-09 02:52:36', 1),
(2081, 167, 19, 'Pressure Handling', 2, '', 19, '2020-09-09 02:52:36', 1),
(2082, 167, 19, 'Patient', 3, '', 19, '2020-09-09 02:52:36', 1),
(2083, 167, 19, 'Sustainability', 1, '', 19, '2020-09-09 02:52:36', 1),
(2084, 167, 19, 'Sales Experience', 2, '', 19, '2020-09-09 02:52:36', 1),
(2085, 167, 19, 'Existing Experience Analyze', 1, '', 19, '2020-09-09 02:52:36', 1),
(2086, 167, 19, 'Practical Challenges Outcome', 2, '', 19, '2020-09-09 02:52:36', 1),
(2087, 167, 19, 'Willing To Work On Holidays', 1, '', 19, '2020-09-09 02:52:36', 1),
(2088, 180, 13, 'Appearance', 4, '', 13, '2020-09-09 03:05:31', 1),
(2089, 180, 13, 'Attitude', 4, '', 13, '2020-09-09 03:05:31', 1),
(2090, 180, 13, 'Communication (Tamil)', 4, '', 13, '2020-09-09 03:05:31', 1),
(2091, 180, 13, 'Communication (English)', 3, '', 13, '2020-09-09 03:05:31', 1),
(2092, 180, 13, 'convincing Skills', 4, '', 13, '2020-09-09 03:05:31', 1),
(2093, 180, 13, 'Confidence Level', 4, '', 13, '2020-09-09 03:05:31', 1),
(2094, 180, 13, 'Importance (Job)', 4, '', 13, '2020-09-09 03:05:31', 1),
(2095, 180, 13, 'Observation skills', 4, '', 13, '2020-09-09 03:05:31', 1),
(2096, 180, 13, 'Pressure Handling', 4, '', 13, '2020-09-09 03:05:31', 1),
(2097, 180, 13, 'Patient', 4, '', 13, '2020-09-09 03:05:31', 1),
(2098, 180, 13, 'Sustainability', 4, '', 13, '2020-09-09 03:05:31', 1),
(2099, 181, 13, 'Appearance', 4, '', 13, '2020-09-09 03:09:42', 1),
(2100, 181, 13, 'Attitude', 4, '', 13, '2020-09-09 03:09:42', 1),
(2101, 181, 13, 'Communication (Tamil)', 4, '', 13, '2020-09-09 03:09:42', 1),
(2102, 181, 13, 'Communication (English)', 3, '', 13, '2020-09-09 03:09:42', 1),
(2103, 181, 13, 'convincing Skills', 4, '', 13, '2020-09-09 03:09:42', 1),
(2104, 181, 13, 'Confidence Level', 4, '', 13, '2020-09-09 03:09:42', 1),
(2105, 181, 13, 'Importance (Job)', 5, '', 13, '2020-09-09 03:09:42', 1),
(2106, 181, 13, 'Observation skills', 4, '', 13, '2020-09-09 03:09:42', 1),
(2107, 181, 13, 'Pressure Handling', 4, '', 13, '2020-09-09 03:09:42', 1),
(2108, 181, 13, 'Patient', 3, '', 13, '2020-09-09 03:09:42', 1),
(2109, 181, 13, 'Sustainability', 4, '', 13, '2020-09-09 03:09:42', 1),
(2110, 189, 13, 'Appearance', 4, '', 13, '2020-09-09 03:16:00', 1),
(2111, 189, 13, 'Attitude', 4, '', 13, '2020-09-09 03:16:00', 1),
(2112, 189, 13, 'Communication (Tamil)', 4, '', 13, '2020-09-09 03:16:00', 1),
(2113, 189, 13, 'Communication (English)', 2, '', 13, '2020-09-09 03:16:00', 1),
(2114, 189, 13, 'convincing Skills', 4, '', 13, '2020-09-09 03:16:00', 1),
(2115, 189, 13, 'Confidence Level', 4, '', 13, '2020-09-09 03:16:00', 1),
(2116, 189, 13, 'Importance (Job)', 4, '', 13, '2020-09-09 03:16:00', 1),
(2117, 189, 13, 'Observation skills', 4, '', 13, '2020-09-09 03:16:00', 1),
(2118, 189, 13, 'Pressure Handling', 4, '', 13, '2020-09-09 03:16:00', 1),
(2119, 189, 13, 'Patient', 4, '', 13, '2020-09-09 03:16:00', 1),
(2120, 189, 13, 'Sustainability', 3, '', 13, '2020-09-09 03:16:00', 1),
(2121, 196, 20, 'Appearance', 4, '', 20, '2020-09-09 03:56:22', 1),
(2122, 196, 20, 'Attitude', 4, '', 20, '2020-09-09 03:56:22', 1),
(2123, 196, 20, 'Communication (English)', 4, '', 20, '2020-09-09 03:56:22', 1),
(2124, 196, 20, 'Communication (Tamil)', 5, '', 20, '2020-09-09 03:56:22', 1),
(2125, 196, 20, 'Convincing Skills', 3, '', 20, '2020-09-09 03:56:22', 1),
(2126, 196, 20, 'Confidence Level', 4, '', 20, '2020-09-09 03:56:22', 1),
(2127, 196, 20, 'Existing Experience Analyze', 5, '', 20, '2020-09-09 03:56:22', 1),
(2128, 196, 20, 'Importance Of Job', 3, '', 20, '2020-09-09 03:56:22', 1),
(2129, 196, 20, 'Observation Skills', 4, '', 20, '2020-09-09 03:56:22', 1),
(2130, 196, 20, 'Patient', 3, '', 20, '2020-09-09 03:56:22', 1),
(2131, 196, 20, 'Pressure Handling', 3, '', 20, '2020-09-09 03:56:22', 1),
(2132, 196, 20, 'Practical Challenges Outcome', 4, '', 20, '2020-09-09 03:56:22', 1),
(2133, 196, 20, 'Sustainability', 4, '', 20, '2020-09-09 03:56:22', 1),
(2134, 196, 20, 'Sales Experience', 1, '', 20, '2020-09-09 03:56:22', 1),
(2135, 196, 20, 'Willing To Work On Holidays', 4, '', 20, '2020-09-09 03:56:22', 1),
(2136, 195, 44, 'Appearance', 4, '', 44, '2020-09-09 04:20:52', 1),
(2137, 195, 44, 'Attitude', 4, '', 44, '2020-09-09 04:20:52', 1),
(2138, 195, 44, 'Communication (English)', 3, '', 44, '2020-09-09 04:20:52', 1),
(2139, 195, 44, 'Communication (Tamil)', 4, '', 44, '2020-09-09 04:20:52', 1),
(2140, 195, 44, 'Convincing Skills', 3, '', 44, '2020-09-09 04:20:52', 1),
(2141, 195, 44, 'Confidence Level', 4, '', 44, '2020-09-09 04:20:52', 1),
(2142, 195, 44, 'Importance Of Job', 4, '', 44, '2020-09-09 04:20:52', 1),
(2143, 195, 44, 'Observation Skills', 3, '', 44, '2020-09-09 04:20:52', 1),
(2144, 195, 44, 'Pressure Handling', 3, '', 44, '2020-09-09 04:20:52', 1),
(2145, 195, 44, 'Patient', 3, '', 44, '2020-09-09 04:20:52', 1),
(2146, 195, 44, 'Sustainability', 3, '', 44, '2020-09-09 04:20:52', 1),
(2147, 195, 44, 'Sales Experience', 4, '', 44, '2020-09-09 04:20:52', 1),
(2148, 195, 44, 'Existing Experience Analyze', 3, '', 44, '2020-09-09 04:20:52', 1),
(2149, 195, 44, 'Practical Challenges Outcome', 3, '', 44, '2020-09-09 04:20:52', 1),
(2150, 195, 44, 'Willing To Work On Holidays', 4, '', 44, '2020-09-09 04:20:52', 1),
(2151, 165, 24, 'Sustainability', 1, 'candidate should not sustain .. he is looking government job... 6 month period only  he looking job', 24, '2020-09-09 05:01:17', 1),
(2152, 182, 8, 'Attitude', 2, '', 8, '2020-09-09 05:09:42', 1),
(2153, 182, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-09 05:09:42', 1),
(2154, 182, 8, 'Communication (English)', 2, '', 8, '2020-09-09 05:09:42', 1),
(2155, 182, 8, 'convincing Skills', 2, '', 8, '2020-09-09 05:09:42', 1),
(2156, 182, 8, 'Confidence Level', 2, '', 8, '2020-09-09 05:09:42', 1),
(2157, 182, 8, 'Pressure Handling', 2, '', 8, '2020-09-09 05:09:42', 1),
(2158, 195, 18, 'Appearance', 4, '', 18, '2020-09-09 05:41:56', 1),
(2159, 195, 18, 'Attitude', 4, '', 18, '2020-09-09 05:41:56', 1),
(2160, 195, 18, 'Communication (English)', 4, '', 18, '2020-09-09 05:41:56', 1),
(2161, 195, 18, 'Communication (Tamil)', 4, '', 18, '2020-09-09 05:41:56', 1),
(2162, 195, 18, 'Convincing Skills', 3, '', 18, '2020-09-09 05:41:56', 1),
(2163, 195, 18, 'Confidence Level', 4, '', 18, '2020-09-09 05:41:56', 1),
(2164, 195, 18, 'Importance Of Job', 4, '', 18, '2020-09-09 05:41:56', 1),
(2165, 195, 18, 'Observation Skills', 3, '', 18, '2020-09-09 05:41:56', 1),
(2166, 195, 18, 'Pressure Handling', 4, '', 18, '2020-09-09 05:41:56', 1),
(2167, 195, 18, 'Patient', 4, '', 18, '2020-09-09 05:41:56', 1),
(2168, 195, 18, 'Sustainability', 3, '', 18, '2020-09-09 05:41:56', 1),
(2169, 195, 18, 'Sales Experience', 4, '', 18, '2020-09-09 05:41:56', 1),
(2170, 195, 18, 'Existing Experience Analyze', 3, '', 18, '2020-09-09 05:41:56', 1),
(2171, 195, 18, 'Practical Challenges Outcome', 3, '', 18, '2020-09-09 05:41:56', 1),
(2172, 195, 18, 'Willing To Work On Holidays', 3, '', 18, '2020-09-09 05:41:56', 1),
(2173, 219, 27, 'attitude of the employee?', 3, 'good xdbquot attitude xquot testing', 27, '2020-09-10 09:55:15', 1),
(2174, 219, 26, 'attitude of the employee?', 3, 'nill', 26, '2020-09-10 09:57:41', 1),
(2175, 219, 41, 'attitude of the employee?', 3, 'gfngtnj', 41, '2020-09-10 09:58:21', 1),
(2176, 220, 26, 'attitude of the employee?', 3, 'test', 26, '2020-09-10 10:19:33', 1),
(2177, 220, 27, 'attitude of the employee?', 4, 'nill', 27, '2020-09-10 10:20:28', 1),
(2178, 220, 41, 'attitude of the employee?', 4, 'uy8hj', 41, '2020-09-10 10:21:22', 1),
(2179, 200, 24, 'Appearance', 2, '', 24, '2020-09-10 11:48:50', 1),
(2180, 200, 24, 'Communication (Tamil)', 1, '', 24, '2020-09-10 11:48:50', 1),
(2181, 200, 24, 'Convincing Skills', 3, '', 24, '2020-09-10 11:48:50', 1),
(2182, 200, 24, 'Pressure Handling', 1, '', 24, '2020-09-10 11:48:50', 1),
(2183, 200, 24, 'Sustainability', 1, '', 24, '2020-09-10 11:48:50', 1),
(2184, 200, 24, 'Sales Experience', 1, '', 24, '2020-09-10 11:48:50', 1),
(2185, 167, 22, 'Appearance', 3, '', 22, '2020-09-10 11:56:52', 1),
(2186, 167, 22, 'Attitude', 3, '', 22, '2020-09-10 11:56:52', 1),
(2187, 167, 22, 'Communication (English)', 4, '', 22, '2020-09-10 11:56:52', 1),
(2188, 167, 22, 'Communication (Tamil)', 4, '', 22, '2020-09-10 11:56:52', 1),
(2189, 167, 22, 'Convincing Skills', 4, '', 22, '2020-09-10 11:56:52', 1),
(2190, 167, 22, 'Confidence Level', 3, '', 22, '2020-09-10 11:56:52', 1),
(2191, 167, 22, 'Importance Of Job', 2, '', 22, '2020-09-10 11:56:52', 1),
(2192, 167, 22, 'Observation Skills', 2, '', 22, '2020-09-10 11:56:52', 1),
(2193, 167, 22, 'Pressure Handling', 1, '', 22, '2020-09-10 11:56:52', 1),
(2194, 167, 22, 'patience', 1, '', 22, '2020-09-10 11:56:52', 1),
(2195, 167, 22, 'Sustainability', 1, '', 22, '2020-09-10 11:56:52', 1),
(2196, 167, 22, 'Sales Experience', 2, '', 22, '2020-09-10 11:56:52', 1),
(2197, 167, 22, 'Existing Experience Analyze', 3, '', 22, '2020-09-10 11:56:52', 1),
(2198, 167, 22, 'Practical Challenges Outcome', 2, '', 22, '2020-09-10 11:56:52', 1),
(2199, 167, 22, 'Willing To Work On Holidays', 1, '', 22, '2020-09-10 11:56:52', 1),
(2200, 192, 19, 'Appearance', 2, '', 19, '2020-09-10 11:57:52', 1),
(2201, 192, 19, 'Attitude', 2, '', 19, '2020-09-10 11:57:52', 1),
(2202, 192, 19, 'Communication (English)', 1, '', 19, '2020-09-10 11:57:52', 1),
(2203, 192, 19, 'Communication (Tamil)', 1, '', 19, '2020-09-10 11:57:52', 1),
(2204, 192, 19, 'Convincing Skills', 3, '', 19, '2020-09-10 11:57:52', 1),
(2205, 192, 19, 'Confidence Level', 2, '', 19, '2020-09-10 11:57:52', 1),
(2206, 192, 19, 'Existing Experience Analyze', 3, '', 19, '2020-09-10 11:57:52', 1),
(2207, 192, 19, 'Importance Of Job', 1, '', 19, '2020-09-10 11:57:52', 1),
(2208, 192, 19, 'Observation Skills', 2, '', 19, '2020-09-10 11:57:52', 1),
(2209, 192, 19, 'Pressure Handling', 1, '', 19, '2020-09-10 11:57:52', 1),
(2210, 192, 19, 'Sustainability', 1, '', 19, '2020-09-10 11:57:52', 1),
(2211, 192, 19, 'Sales Experience', 2, '', 19, '2020-09-10 11:57:52', 1),
(2212, 225, 14, 'Appearance', 2, '', 14, '2020-09-10 12:01:17', 1),
(2213, 225, 14, 'Attitude', 3, '', 14, '2020-09-10 12:01:17', 1),
(2214, 225, 14, 'Communication (Tamil)', 3, '', 14, '2020-09-10 12:01:17', 1),
(2215, 225, 14, 'Communication (English)', 1, '', 14, '2020-09-10 12:01:17', 1),
(2216, 225, 14, 'convincing Skills', 1, '', 14, '2020-09-10 12:01:17', 1),
(2217, 225, 14, 'Confidence Level', 1, '', 14, '2020-09-10 12:01:17', 1),
(2218, 225, 14, 'Importance (Job)', 2, '', 14, '2020-09-10 12:01:17', 1),
(2219, 225, 14, 'Observation skills', 1, '', 14, '2020-09-10 12:01:17', 1),
(2220, 225, 14, 'Pressure Handling', 1, '', 14, '2020-09-10 12:01:17', 1),
(2221, 225, 14, 'patience', 2, '', 14, '2020-09-10 12:01:17', 1),
(2222, 225, 14, 'Sustainability', 1, '', 14, '2020-09-10 12:01:17', 1),
(2223, 226, 11, 'Appearance', 3, '', 11, '2020-09-10 12:02:39', 1),
(2224, 226, 11, 'Attitude', 2, '', 11, '2020-09-10 12:02:39', 1),
(2225, 226, 11, 'Communication (Tamil)', 3, '', 11, '2020-09-10 12:02:39', 1),
(2226, 226, 11, 'Communication (English)', 3, '', 11, '2020-09-10 12:02:39', 1),
(2227, 226, 11, 'convincing Skills', 3, '', 11, '2020-09-10 12:02:39', 1),
(2228, 226, 11, 'Confidence Level', 4, '', 11, '2020-09-10 12:02:39', 1),
(2229, 226, 11, 'Importance (Job)', 4, '', 11, '2020-09-10 12:02:39', 1),
(2230, 226, 11, 'Observation skills', 3, '', 11, '2020-09-10 12:02:39', 1),
(2231, 226, 11, 'Pressure Handling', 1, '', 11, '2020-09-10 12:02:39', 1),
(2232, 226, 11, 'patience', 3, '', 11, '2020-09-10 12:02:39', 1),
(2233, 226, 11, 'Sustainability', 1, '', 11, '2020-09-10 12:02:39', 1),
(2234, 224, 14, 'Appearance', 3, '', 14, '2020-09-10 12:06:53', 1),
(2235, 224, 14, 'Attitude', 3, '', 14, '2020-09-10 12:06:53', 1),
(2236, 224, 14, 'Communication (Tamil)', 3, '', 14, '2020-09-10 12:06:53', 1),
(2237, 224, 14, 'Communication (English)', 2, '', 14, '2020-09-10 12:06:53', 1),
(2238, 224, 14, 'convincing Skills', 2, '', 14, '2020-09-10 12:06:53', 1),
(2239, 224, 14, 'Confidence Level', 1, '', 14, '2020-09-10 12:06:53', 1),
(2240, 224, 14, 'Importance (Job)', 2, '', 14, '2020-09-10 12:06:53', 1),
(2241, 224, 14, 'Observation skills', 2, '', 14, '2020-09-10 12:06:53', 1),
(2242, 224, 14, 'Pressure Handling', 1, '', 14, '2020-09-10 12:06:53', 1),
(2243, 224, 14, 'patience', 2, '', 14, '2020-09-10 12:06:53', 1),
(2244, 224, 14, 'Sustainability', 2, '', 14, '2020-09-10 12:06:53', 1),
(2245, 184, 8, 'Appearance', 3, '', 8, '2020-09-10 12:07:27', 1),
(2246, 184, 8, 'Communication (English)', 2, '', 8, '2020-09-10 12:07:27', 1),
(2247, 184, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-10 12:07:27', 1),
(2248, 184, 8, 'Convincing Skills', 3, '', 8, '2020-09-10 12:07:27', 1),
(2249, 184, 8, 'Confidence Level', 3, '', 8, '2020-09-10 12:07:27', 1),
(2250, 184, 8, 'Importance Of Job', 3, '', 8, '2020-09-10 12:07:27', 1),
(2251, 184, 8, 'Willing To Work On Holidays', 3, '', 8, '2020-09-10 12:07:27', 1),
(2252, 159, 21, 'Appearance', 4, '', 21, '2020-09-10 12:11:22', 1),
(2253, 159, 21, 'Attitude', 4, '', 21, '2020-09-10 12:11:22', 1),
(2254, 159, 21, 'Communication (Tamil)', 4, '', 21, '2020-09-10 12:11:22', 1),
(2255, 159, 21, 'Communication (English)', 2, '', 21, '2020-09-10 12:11:22', 1),
(2256, 159, 21, 'convincing Skills', 2, '', 21, '2020-09-10 12:11:22', 1),
(2257, 159, 21, 'Confidence Level', 1, '', 21, '2020-09-10 12:11:22', 1),
(2258, 159, 21, 'Importance (Job)', 3, '', 21, '2020-09-10 12:11:22', 1),
(2259, 159, 21, 'Observation skills', 3, '', 21, '2020-09-10 12:11:22', 1),
(2260, 159, 21, 'Pressure Handling', 1, '', 21, '2020-09-10 12:11:22', 1),
(2261, 159, 21, 'patience', 4, '', 21, '2020-09-10 12:11:22', 1),
(2262, 159, 21, 'Sustainability', 2, '', 21, '2020-09-10 12:11:22', 1),
(2263, 203, 21, 'Appearance', 2, '', 21, '2020-09-10 12:16:39', 1),
(2264, 203, 21, 'Attitude', 1, '', 21, '2020-09-10 12:16:39', 1),
(2265, 203, 21, 'Communication (Tamil)', 3, '', 21, '2020-09-10 12:16:39', 1),
(2266, 203, 21, 'Communication (English)', 1, '', 21, '2020-09-10 12:16:39', 1),
(2267, 203, 21, 'convincing Skills', 1, '', 21, '2020-09-10 12:16:39', 1),
(2268, 203, 21, 'Confidence Level', 2, '', 21, '2020-09-10 12:16:39', 1),
(2269, 203, 21, 'Importance (Job)', 3, '', 21, '2020-09-10 12:16:39', 1),
(2270, 203, 21, 'Observation skills', 1, '', 21, '2020-09-10 12:16:39', 1),
(2271, 203, 21, 'Pressure Handling', 1, '', 21, '2020-09-10 12:16:39', 1),
(2272, 203, 21, 'patience', 3, '', 21, '2020-09-10 12:16:39', 1),
(2273, 203, 21, 'Sustainability', 2, '', 21, '2020-09-10 12:16:39', 1),
(2274, 222, 21, 'Appearance', 3, '', 21, '2020-09-10 12:18:35', 1),
(2275, 222, 21, 'Attitude', 3, '', 21, '2020-09-10 12:18:35', 1),
(2276, 222, 21, 'Communication (Tamil)', 3, '', 21, '2020-09-10 12:18:35', 1),
(2277, 222, 21, 'Communication (English)', 1, '', 21, '2020-09-10 12:18:35', 1),
(2278, 222, 21, 'convincing Skills', 1, '', 21, '2020-09-10 12:18:35', 1),
(2279, 222, 21, 'Confidence Level', 2, '', 21, '2020-09-10 12:18:35', 1),
(2280, 222, 21, 'Importance (Job)', 3, '', 21, '2020-09-10 12:18:35', 1),
(2281, 222, 21, 'Observation skills', 2, '', 21, '2020-09-10 12:18:35', 1),
(2282, 222, 21, 'Pressure Handling', 1, '', 21, '2020-09-10 12:18:35', 1),
(2283, 222, 21, 'patience', 2, '', 21, '2020-09-10 12:18:35', 1),
(2284, 222, 21, 'Sustainability', 2, '', 21, '2020-09-10 12:18:35', 1),
(2285, 194, 24, 'Confidence Level', 4, '', 24, '2020-09-10 12:55:22', 1),
(2286, 194, 24, 'Importance Of Job', 4, '', 24, '2020-09-10 12:55:22', 1),
(2287, 194, 24, 'Observation Skills', 4, '', 24, '2020-09-10 12:55:22', 1),
(2288, 194, 24, 'Practical Challenges Outcome', 4, '', 24, '2020-09-10 12:55:22', 1),
(2289, 184, 17, 'Appearance', 3, '', 17, '2020-09-10 01:02:08', 1),
(2290, 184, 17, 'Attitude', 3, '', 17, '2020-09-10 01:02:08', 1),
(2291, 184, 17, 'Communication (English)', 2, '', 17, '2020-09-10 01:02:08', 1),
(2292, 184, 17, 'Communication (Tamil)', 3, '', 17, '2020-09-10 01:02:08', 1),
(2293, 184, 17, 'Convincing Skills', 3, '', 17, '2020-09-10 01:02:08', 1),
(2294, 184, 17, 'Confidence Level', 3, '', 17, '2020-09-10 01:02:08', 1),
(2295, 184, 17, 'Existing Experience Analyze', 2, '', 17, '2020-09-10 01:02:08', 1),
(2296, 184, 17, 'Importance Of Job', 4, '', 17, '2020-09-10 01:02:08', 1),
(2297, 184, 17, 'Observation Skills', 3, '', 17, '2020-09-10 01:02:08', 1),
(2298, 184, 17, 'patience', 3, '', 17, '2020-09-10 01:02:08', 1),
(2299, 184, 17, 'Pressure Handling', 3, '', 17, '2020-09-10 01:02:08', 1),
(2300, 184, 17, 'Practical Challenges Outcome', 3, '', 17, '2020-09-10 01:02:08', 1),
(2301, 184, 17, 'Sustainability', 3, '', 17, '2020-09-10 01:02:08', 1),
(2302, 184, 17, 'Sales Experience', 2, '', 17, '2020-09-10 01:02:08', 1),
(2303, 184, 17, 'Willing To Work On Holidays', 4, '', 17, '2020-09-10 01:02:08', 1),
(2304, 194, 22, 'Appearance', 3, '', 22, '2020-09-10 01:23:36', 1),
(2305, 194, 22, 'Attitude', 3, '', 22, '2020-09-10 01:23:36', 1),
(2306, 194, 22, 'Communication (English)', 3, '', 22, '2020-09-10 01:23:36', 1),
(2307, 194, 22, 'Communication (Tamil)', 4, '', 22, '2020-09-10 01:23:36', 1),
(2308, 194, 22, 'Convincing Skills', 3, '', 22, '2020-09-10 01:23:36', 1),
(2309, 194, 22, 'Confidence Level', 4, '', 22, '2020-09-10 01:23:36', 1),
(2310, 194, 22, 'Existing Experience Analyze', 1, '', 22, '2020-09-10 01:23:36', 1),
(2311, 194, 22, 'Importance Of Job', 4, '', 22, '2020-09-10 01:23:36', 1),
(2312, 194, 22, 'Observation Skills', 5, '', 22, '2020-09-10 01:23:36', 1),
(2313, 194, 22, 'patience', 4, '', 22, '2020-09-10 01:23:36', 1),
(2314, 194, 22, 'Pressure Handling', 3, '', 22, '2020-09-10 01:23:36', 1),
(2315, 194, 22, 'Practical Challenges Outcome', 4, '', 22, '2020-09-10 01:23:36', 1),
(2316, 194, 22, 'Sustainability', 4, '', 22, '2020-09-10 01:23:36', 1),
(2317, 194, 22, 'Sales Experience', 1, '', 22, '2020-09-10 01:23:36', 1),
(2318, 194, 22, 'Willing To Work On Holidays', 3, '', 22, '2020-09-10 01:23:36', 1),
(2319, 191, 26, 'attitude of the employee?', 1, '', 26, '2020-09-10 01:25:10', 1),
(2320, 191, 26, 'candidate have a real-time working experience?', 1, 'He dont know the basics of c and c++.', 26, '2020-09-10 01:25:10', 1),
(2321, 191, 26, 'Communication Skills?', 2, '', 26, '2020-09-10 01:25:10', 1),
(2322, 223, 13, 'Appearance', 4, '', 13, '2020-09-10 01:30:17', 1),
(2323, 223, 13, 'Attitude', 4, '', 13, '2020-09-10 01:30:17', 1),
(2324, 223, 13, 'Communication (Tamil)', 4, '', 13, '2020-09-10 01:30:17', 1),
(2325, 223, 13, 'Communication (English)', 3, '', 13, '2020-09-10 01:30:17', 1),
(2326, 223, 13, 'convincing Skills', 4, '', 13, '2020-09-10 01:30:17', 1),
(2327, 223, 13, 'Confidence Level', 4, '', 13, '2020-09-10 01:30:17', 1),
(2328, 223, 13, 'Importance (Job)', 4, '', 13, '2020-09-10 01:30:17', 1),
(2329, 223, 13, 'Observation skills', 4, '', 13, '2020-09-10 01:30:17', 1),
(2330, 223, 13, 'Pressure Handling', 4, '', 13, '2020-09-10 01:30:17', 1),
(2331, 223, 13, 'patience', 4, '', 13, '2020-09-10 01:30:17', 1),
(2332, 223, 13, 'Sustainability', 4, '', 13, '2020-09-10 01:30:17', 1),
(2333, 164, 44, 'Appearance', 3, '', 44, '2020-09-10 01:48:08', 1),
(2334, 164, 44, 'Attitude', 3, '', 44, '2020-09-10 01:48:08', 1),
(2335, 164, 44, 'Communication (English)', 1, '', 44, '2020-09-10 01:48:08', 1),
(2336, 164, 44, 'Communication (Tamil)', 4, '', 44, '2020-09-10 01:48:08', 1),
(2337, 164, 44, 'Convincing Skills', 2, '', 44, '2020-09-10 01:48:08', 1),
(2338, 164, 44, 'Confidence Level', 2, '', 44, '2020-09-10 01:48:08', 1),
(2339, 164, 44, 'Existing Experience Analyze', 2, '', 44, '2020-09-10 01:48:08', 1),
(2340, 164, 44, 'Importance Of Job', 2, '', 44, '2020-09-10 01:48:08', 1),
(2341, 164, 44, 'Observation Skills', 2, '', 44, '2020-09-10 01:48:08', 1),
(2342, 164, 44, 'patience', 2, '', 44, '2020-09-10 01:48:08', 1),
(2343, 164, 44, 'Pressure Handling', 2, '', 44, '2020-09-10 01:48:08', 1),
(2344, 164, 44, 'Practical Challenges Outcome', 2, '', 44, '2020-09-10 01:48:08', 1),
(2345, 164, 44, 'Sustainability', 1, '', 44, '2020-09-10 01:48:08', 1),
(2346, 164, 44, 'Sales Experience', 1, '', 44, '2020-09-10 01:48:08', 1),
(2347, 164, 44, 'Willing To Work On Holidays', 2, '', 44, '2020-09-10 01:48:08', 1),
(2348, 112, 27, 'Is Employee Clearly Understand the roles and Responsibility?', 2, 'He Is Not Ready To Do The Task With Given Timeline.  Even he is not ready to listen my comments too.', 27, '2020-09-10 02:19:16', 1),
(2349, 112, 27, 'attitude of the employee?', 1, 'I Have Explained The Task. And Gave The Timeline. But He Is Simply Asked Me In How Many Days You Done The Same. His Attitude is not good.', 27, '2020-09-10 02:19:16', 1),
(2350, 158, 31, 'Appearance', 2, '', 31, '2020-09-10 02:39:23', 1),
(2351, 158, 31, 'Attitude', 3, '', 31, '2020-09-10 02:39:23', 1),
(2352, 158, 31, 'Communication (English)', 4, '', 31, '2020-09-10 02:39:23', 1),
(2353, 158, 31, 'Communication (Tamil)', 1, '', 31, '2020-09-10 02:39:23', 1),
(2354, 158, 31, 'Convincing Skills', 2, '', 31, '2020-09-10 02:39:23', 1),
(2355, 158, 31, 'Confidence Level', 2, '', 31, '2020-09-10 02:39:23', 1),
(2356, 158, 31, 'Importance Of Job', 4, '', 31, '2020-09-10 02:39:23', 1),
(2357, 158, 31, 'Observation Skills', 3, '', 31, '2020-09-10 02:39:23', 1),
(2358, 158, 31, 'Pressure Handling', 2, '', 31, '2020-09-10 02:39:23', 1),
(2359, 158, 31, 'patience', 3, '', 31, '2020-09-10 02:39:23', 1),
(2360, 158, 31, 'Sustainability', 2, '', 31, '2020-09-10 02:39:23', 1),
(2361, 158, 31, 'Sales Experience', 2, '', 31, '2020-09-10 02:39:23', 1),
(2362, 158, 31, 'Existing Experience Analyze', 3, '', 31, '2020-09-10 02:39:23', 1),
(2363, 158, 31, 'Practical Challenges Outcome', 3, '', 31, '2020-09-10 02:39:23', 1),
(2364, 158, 31, 'Willing To Work On Holidays', 4, '', 31, '2020-09-10 02:39:23', 1),
(2365, 240, 21, 'Appearance', 3, '', 21, '2020-09-10 03:01:18', 1),
(2366, 240, 21, 'Attitude', 3, '', 21, '2020-09-10 03:01:18', 1),
(2367, 240, 21, 'Communication (Tamil)', 4, '', 21, '2020-09-10 03:01:18', 1),
(2368, 240, 21, 'Communication (English)', 2, '', 21, '2020-09-10 03:01:18', 1),
(2369, 240, 21, 'convincing Skills', 3, '', 21, '2020-09-10 03:01:18', 1),
(2370, 240, 21, 'Confidence Level', 2, '', 21, '2020-09-10 03:01:18', 1),
(2371, 240, 21, 'Importance (Job)', 3, '', 21, '2020-09-10 03:01:18', 1),
(2372, 240, 21, 'Observation skills', 3, '', 21, '2020-09-10 03:01:18', 1),
(2373, 240, 21, 'Pressure Handling', 3, '', 21, '2020-09-10 03:01:18', 1),
(2374, 240, 21, 'patience', 4, '', 21, '2020-09-10 03:01:18', 1),
(2375, 240, 21, 'Sustainability', 1, '', 21, '2020-09-10 03:01:18', 1),
(2376, 250, 27, 'attitude of the employee?', 3, 'test', 27, '2020-09-10 04:38:46', 1),
(2377, 250, 26, 'attitude of the employee?', 3, '', 26, '2020-09-10 04:41:10', 1),
(2378, 250, 26, 'candidate have a real-time working experience?', 1, '', 26, '2020-09-10 04:41:10', 1),
(2379, 250, 26, 'Communication Skills?', 3, '', 26, '2020-09-10 04:41:10', 1),
(2380, 250, 26, 'Idea about code management tools like git, bitbucket, svn...etc', 3, '', 26, '2020-09-10 04:41:10', 1),
(2381, 250, 41, 'attitude of the employee?', 4, '', 41, '2020-09-10 04:41:50', 1),
(2382, 250, 41, 'Communication Skills?', 5, '', 41, '2020-09-10 04:41:50', 1),
(2383, 193, 8, 'Attitude', 3, '', 8, '2020-09-11 10:42:59', 1),
(2384, 193, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-11 10:42:59', 1),
(2385, 193, 8, 'Communication (English)', 3, 'Manageable', 8, '2020-09-11 10:42:59', 1),
(2386, 193, 8, 'convincing Skills', 3, 'previously in idea sim process', 8, '2020-09-11 10:42:59', 1),
(2387, 193, 8, 'Importance (Job)', 3, '', 8, '2020-09-11 10:42:59', 1),
(2388, 193, 8, 'Sustainability', 3, 'ready to sign bond for 2 years', 8, '2020-09-11 10:42:59', 1),
(2389, 258, 8, 'Appearance', 3, '', 8, '2020-09-11 11:05:13', 1),
(2390, 258, 8, 'Communication (English)', 2, 'managable', 8, '2020-09-11 11:05:13', 1),
(2391, 258, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-11 11:05:13', 1),
(2392, 258, 8, 'Convincing Skills', 3, '', 8, '2020-09-11 11:05:13', 1),
(2393, 258, 8, 'Importance Of Job', 3, 'family commitment', 8, '2020-09-11 11:05:13', 1),
(2394, 258, 8, 'Pressure Handling', 3, '', 8, '2020-09-11 11:05:13', 1),
(2395, 258, 8, 'Sustainability', 2, 'holds offer for 22K', 8, '2020-09-11 11:05:13', 1),
(2396, 258, 8, 'Sales Experience', 4, '', 8, '2020-09-11 11:05:13', 1),
(2397, 258, 8, 'Existing Experience Analyze', 3, '', 8, '2020-09-11 11:05:13', 1),
(2398, 258, 8, 'Willing To Work On Holidays', 4, '', 8, '2020-09-11 11:05:13', 1),
(2399, 177, 21, 'Appearance', 4, '', 21, '2020-09-11 12:03:23', 1),
(2400, 177, 21, 'Attitude', 3, '', 21, '2020-09-11 12:03:23', 1),
(2401, 177, 21, 'Communication (Tamil)', 4, '', 21, '2020-09-11 12:03:23', 1),
(2402, 177, 21, 'Communication (English)', 4, '', 21, '2020-09-11 12:03:23', 1),
(2403, 177, 21, 'convincing Skills', 4, '', 21, '2020-09-11 12:03:23', 1),
(2404, 177, 21, 'Confidence Level', 4, '', 21, '2020-09-11 12:03:23', 1),
(2405, 177, 21, 'Importance (Job)', 3, '', 21, '2020-09-11 12:03:23', 1),
(2406, 177, 21, 'Observation skills', 4, '', 21, '2020-09-11 12:03:23', 1),
(2407, 177, 21, 'Pressure Handling', 3, '', 21, '2020-09-11 12:03:23', 1),
(2408, 177, 21, 'patience', 4, '', 21, '2020-09-11 12:03:23', 1),
(2409, 177, 21, 'Sustainability', 4, '', 21, '2020-09-11 12:03:23', 1),
(2410, 193, 21, 'convincing Skills', 1, '', 21, '2020-09-11 12:05:07', 1),
(2411, 193, 21, 'Confidence Level', 2, '', 21, '2020-09-11 12:05:07', 1),
(2412, 193, 21, 'Importance (Job)', 3, '', 21, '2020-09-11 12:05:07', 1),
(2413, 193, 21, 'Observation skills', 3, '', 21, '2020-09-11 12:05:07', 1),
(2414, 193, 21, 'Pressure Handling', 3, '', 21, '2020-09-11 12:05:07', 1),
(2415, 193, 21, 'Sustainability', 3, '', 21, '2020-09-11 12:05:07', 1),
(2416, 237, 21, 'convincing Skills', 2, '', 21, '2020-09-11 12:06:16', 1),
(2417, 237, 21, 'Confidence Level', 1, '', 21, '2020-09-11 12:06:16', 1),
(2418, 237, 21, 'Importance (Job)', 1, '', 21, '2020-09-11 12:06:16', 1),
(2419, 237, 21, 'Pressure Handling', 1, '', 21, '2020-09-11 12:06:16', 1),
(2420, 237, 21, 'Sustainability', 1, '', 21, '2020-09-11 12:06:16', 1),
(2421, 251, 8, 'Appearance', 3, '', 8, '2020-09-11 12:12:58', 1),
(2422, 251, 8, 'Attitude', 3, '', 8, '2020-09-11 12:12:58', 1),
(2423, 251, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-11 12:12:58', 1),
(2424, 251, 8, 'Communication (English)', 3, '', 8, '2020-09-11 12:12:58', 1),
(2425, 251, 8, 'convincing Skills', 3, '', 8, '2020-09-11 12:12:58', 1),
(2426, 251, 8, 'Importance (Job)', 4, '', 8, '2020-09-11 12:12:58', 1),
(2427, 251, 8, 'Pressure Handling', 3, '', 8, '2020-09-11 12:12:58', 1),
(2428, 239, 26, 'attitude of the employee?', 1, 'He is looking for the job because he completed cSE, importance of job zero.\n', 26, '2020-09-11 12:14:44', 1),
(2429, 239, 26, 'candidate have a real-time working experience?', 1, 'he  bought final year project from company and Submitted in College,  dont know what is the project he done.', 26, '2020-09-11 12:14:44', 1),
(2430, 239, 26, 'Communication Skills?', 1, 'he is not even trying to speak english', 26, '2020-09-11 12:14:44', 1),
(2431, 258, 33, 'Appearance', 3, '', 33, '2020-09-11 12:18:55', 1),
(2432, 258, 33, 'Attitude', 2, '', 33, '2020-09-11 12:18:55', 1),
(2433, 258, 33, 'Communication (English)', 2, '', 33, '2020-09-11 12:18:55', 1),
(2434, 258, 33, 'Communication (Tamil)', 2, '', 33, '2020-09-11 12:18:55', 1),
(2435, 258, 33, 'Convincing Skills', 1, '', 33, '2020-09-11 12:18:55', 1),
(2436, 258, 33, 'Confidence Level', 1, '', 33, '2020-09-11 12:18:55', 1),
(2437, 258, 33, 'Observation Skills', 1, '', 33, '2020-09-11 12:18:55', 1),
(2438, 258, 33, 'Pressure Handling', 1, '', 33, '2020-09-11 12:18:55', 1),
(2439, 258, 33, 'patience', 3, '', 33, '2020-09-11 12:18:55', 1),
(2440, 258, 33, 'Sales Experience', 3, '', 33, '2020-09-11 12:18:55', 1),
(2441, 258, 33, 'Existing Experience Analyze', 1, '', 33, '2020-09-11 12:18:55', 1),
(2442, 236, 19, 'Appearance', 4, '', 19, '2020-09-11 12:22:44', 1),
(2443, 236, 19, 'Attitude', 3, '', 19, '2020-09-11 12:22:44', 1),
(2444, 236, 19, 'Communication (English)', 5, '', 19, '2020-09-11 12:22:44', 1),
(2445, 236, 19, 'Communication (Tamil)', 4, '', 19, '2020-09-11 12:22:44', 1),
(2446, 236, 19, 'Convincing Skills', 3, '', 19, '2020-09-11 12:22:44', 1),
(2447, 236, 19, 'Confidence Level', 4, '', 19, '2020-09-11 12:22:44', 1),
(2448, 236, 19, 'Existing Experience Analyze', 2, '', 19, '2020-09-11 12:22:44', 1),
(2449, 236, 19, 'Importance Of Job', 4, '', 19, '2020-09-11 12:22:44', 1),
(2450, 236, 19, 'Observation Skills', 4, '', 19, '2020-09-11 12:22:44', 1),
(2451, 236, 19, 'patience', 4, '', 19, '2020-09-11 12:22:44', 1),
(2452, 236, 19, 'Pressure Handling', 3, '', 19, '2020-09-11 12:22:44', 1),
(2453, 236, 19, 'Sustainability', 4, '', 19, '2020-09-11 12:22:44', 1),
(2454, 236, 19, 'Sales Experience', 2, '', 19, '2020-09-11 12:22:44', 1),
(2455, 236, 19, 'Willing To Work On Holidays', 4, '', 19, '2020-09-11 12:22:44', 1),
(2456, 241, 21, 'Attitude', 3, '', 21, '2020-09-11 12:41:51', 1),
(2457, 241, 21, 'Confidence Level', 1, '', 21, '2020-09-11 12:41:51', 1),
(2458, 241, 21, 'Importance (Job)', 3, '', 21, '2020-09-11 12:41:51', 1),
(2459, 241, 21, 'Observation skills', 2, '', 21, '2020-09-11 12:41:51', 1),
(2460, 241, 21, 'Pressure Handling', 1, '', 21, '2020-09-11 12:41:51', 1),
(2461, 241, 21, 'Sustainability', 1, '', 21, '2020-09-11 12:41:51', 1),
(2462, 244, 21, 'Communication (Tamil)', 4, '', 21, '2020-09-11 12:45:59', 1),
(2463, 244, 21, 'Confidence Level', 4, '', 21, '2020-09-11 12:45:59', 1),
(2464, 244, 21, 'Importance (Job)', 4, '', 21, '2020-09-11 12:45:59', 1),
(2465, 244, 21, 'Observation skills', 4, 'observation skill is good ', 21, '2020-09-11 12:45:59', 1),
(2466, 244, 21, 'Pressure Handling', 4, '', 21, '2020-09-11 12:45:59', 1),
(2467, 244, 21, 'Sustainability', 3, '', 21, '2020-09-11 12:45:59', 1),
(2468, 258, 40, 'Appearance', 4, 'Looks professional', 40, '2020-09-11 12:49:11', 1),
(2469, 258, 40, 'Attitude', 3, 'Act like professional', 40, '2020-09-11 12:49:11', 1),
(2470, 258, 40, 'Communication (English)', 1, 'Not good', 40, '2020-09-11 12:49:11', 1),
(2471, 258, 40, 'Communication (Tamil)', 4, 'Good in local language', 40, '2020-09-11 12:49:11', 1),
(2472, 258, 40, 'Convincing Skills', 1, 'zero in convincing skills', 40, '2020-09-11 12:49:11', 1),
(2473, 258, 40, 'Confidence Level', 1, 'zero', 40, '2020-09-11 12:49:11', 1),
(2474, 258, 40, 'Importance Of Job', 1, 'Not a long runner', 40, '2020-09-11 12:49:11', 1),
(2475, 258, 40, 'Observation Skills', 1, 'Zero', 40, '2020-09-11 12:49:11', 1),
(2476, 258, 40, 'Pressure Handling', 1, 'Zero', 40, '2020-09-11 12:49:11', 1),
(2477, 258, 40, 'patience', 2, 'Short temper', 40, '2020-09-11 12:49:11', 1),
(2478, 258, 40, 'Sustainability', 1, 'Not a long runner', 40, '2020-09-11 12:49:11', 1),
(2479, 258, 40, 'Sales Experience', 3, 'Doubtful in past experience', 40, '2020-09-11 12:49:11', 1),
(2480, 258, 40, 'Existing Experience Analyze', 1, 'Zero', 40, '2020-09-11 12:49:11', 1),
(2481, 258, 40, 'Practical Challenges Outcome', 1, 'No ', 40, '2020-09-11 12:49:11', 1),
(2482, 258, 40, 'Willing To Work On Holidays', 3, 'Doubtful', 40, '2020-09-11 12:49:11', 1),
(2483, 265, 11, 'Appearance', 3, '-', 11, '2020-09-11 12:58:10', 1),
(2484, 265, 11, 'Attitude', 4, '-', 11, '2020-09-11 12:58:10', 1),
(2485, 265, 11, 'Communication (Tamil)', 4, '-', 11, '2020-09-11 12:58:10', 1),
(2486, 265, 11, 'Communication (English)', 3, '-', 11, '2020-09-11 12:58:10', 1),
(2487, 265, 11, 'convincing Skills', 3, '-', 11, '2020-09-11 12:58:10', 1),
(2488, 265, 11, 'Confidence Level', 4, '-', 11, '2020-09-11 12:58:10', 1),
(2489, 265, 11, 'Importance (Job)', 4, '-', 11, '2020-09-11 12:58:10', 1),
(2490, 265, 11, 'Observation skills', 3, '-', 11, '2020-09-11 12:58:10', 1),
(2491, 265, 11, 'Pressure Handling', 3, '-', 11, '2020-09-11 12:58:10', 1),
(2492, 265, 11, 'patience', 3, '-', 11, '2020-09-11 12:58:10', 1),
(2493, 265, 11, 'Sustainability', 3, '-', 11, '2020-09-11 12:58:10', 1),
(2494, 248, 15, 'Appearance', 3, '', 15, '2020-09-11 01:01:27', 1),
(2495, 248, 15, 'Attitude', 1, '', 15, '2020-09-11 01:01:27', 1),
(2496, 248, 15, 'Communication (English)', 4, '', 15, '2020-09-11 01:01:27', 1),
(2497, 248, 15, 'Communication (Tamil)', 4, '', 15, '2020-09-11 01:01:27', 1),
(2498, 248, 15, 'Convincing Skills', 4, '', 15, '2020-09-11 01:01:27', 1),
(2499, 248, 15, 'Confidence Level', 4, '', 15, '2020-09-11 01:01:27', 1),
(2500, 248, 15, 'Existing Experience Analyze', 3, '', 15, '2020-09-11 01:01:27', 1),
(2501, 248, 15, 'Importance Of Job', 4, '', 15, '2020-09-11 01:01:27', 1),
(2502, 248, 15, 'Sustainability', 2, '', 15, '2020-09-11 01:01:27', 1),
(2503, 248, 15, 'Sales Experience', 4, '', 15, '2020-09-11 01:01:27', 1),
(2504, 262, 8, 'Appearance', 3, '', 8, '2020-09-11 01:09:34', 1),
(2505, 262, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-11 01:09:34', 1),
(2506, 262, 8, 'Confidence Level', 2, '', 8, '2020-09-11 01:09:34', 1),
(2507, 262, 8, 'patience', 1, 'before i say leave she stood from the chair', 8, '2020-09-11 01:09:34', 1),
(2508, 262, 8, 'Sustainability', 1, 'first Concern 6 months and salary is 9K second Concern salary is 12k and now expected is 13+', 8, '2020-09-11 01:09:34', 1),
(2509, 256, 8, 'Appearance', 3, '', 8, '2020-09-11 01:11:19', 1),
(2510, 256, 8, 'Attitude', 3, '', 8, '2020-09-11 01:11:19', 1),
(2511, 256, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-11 01:11:19', 1),
(2512, 256, 8, 'convincing Skills', 2, 'said no idea to promote a product', 8, '2020-09-11 01:11:19', 1),
(2513, 256, 8, 'Importance (Job)', 3, '', 8, '2020-09-11 01:11:19', 1),
(2514, 256, 8, 'patience', 3, '', 8, '2020-09-11 01:11:19', 1),
(2515, 265, 8, 'Appearance', 3, '', 8, '2020-09-11 01:36:45', 1),
(2516, 265, 8, 'Attitude', 2, '', 8, '2020-09-11 01:36:45', 1),
(2517, 265, 8, 'Communication (Tamil)', 3, '', 8, '2020-09-11 01:36:45', 1),
(2518, 265, 8, 'Communication (English)', 3, '', 8, '2020-09-11 01:36:45', 1),
(2519, 265, 8, 'convincing Skills', 3, '', 8, '2020-09-11 01:36:45', 1),
(2520, 265, 8, 'Confidence Level', 3, '', 8, '2020-09-11 01:36:45', 1),
(2521, 265, 8, 'Importance (Job)', 3, '', 8, '2020-09-11 01:36:45', 1),
(2522, 265, 8, 'patience', 2, '', 8, '2020-09-11 01:36:45', 1),
(2523, 260, 13, 'Appearance', 4, '', 13, '2020-09-11 03:53:46', 1),
(2524, 260, 13, 'Communication (Tamil)', 4, '', 13, '2020-09-11 03:53:46', 1),
(2525, 260, 13, 'convincing Skills', 4, '', 13, '2020-09-11 03:53:46', 1),
(2526, 260, 13, 'Confidence Level', 4, '', 13, '2020-09-11 03:53:46', 1),
(2527, 260, 13, 'Pressure Handling', 4, '', 13, '2020-09-11 03:53:46', 1),
(2528, 264, 19, 'Appearance', 2, '', 19, '2020-09-11 05:49:05', 1),
(2529, 264, 19, 'Communication (Tamil)', 1, '', 19, '2020-09-11 05:49:05', 1),
(2530, 264, 19, 'Sales Experience', 1, '', 19, '2020-09-11 05:49:05', 1),
(2531, 266, 19, 'Appearance', 1, '', 19, '2020-09-11 05:50:45', 1),
(2532, 266, 19, 'Communication (Tamil)', 1, '', 19, '2020-09-11 05:50:45', 1),
(2533, 266, 19, 'Sustainability', 1, '', 19, '2020-09-11 05:50:45', 1),
(2534, 32, 8, 'Communication (Tamil)', 2, '', 8, '2020-09-11 06:16:56', 1),
(2535, 257, 13, 'Appearance', 4, '', 13, '2020-09-11 06:44:09', 1),
(2536, 257, 13, 'Attitude', 4, '', 13, '2020-09-11 06:44:09', 1),
(2537, 257, 13, 'Communication (Tamil)', 4, '', 13, '2020-09-11 06:44:09', 1),
(2538, 257, 13, 'convincing Skills', 4, '', 13, '2020-09-11 06:44:09', 1),
(2539, 257, 13, 'Pressure Handling', 4, '', 13, '2020-09-11 06:44:09', 1),
(2540, 247, 31, 'Appearance', 4, 'Need xxamp Good', 31, '2020-09-11 06:51:03', 1),
(2541, 247, 31, 'Attitude', 2, '', 31, '2020-09-11 06:51:03', 1),
(2542, 247, 31, 'Communication (English)', 1, 'Unable to understand', 31, '2020-09-11 06:51:03', 1),
(2543, 247, 31, 'Communication (Tamil)', 4, '', 31, '2020-09-11 06:51:03', 1),
(2544, 247, 31, 'Convincing Skills', 2, '', 31, '2020-09-11 06:51:03', 1),
(2545, 247, 31, 'Confidence Level', 2, '', 31, '2020-09-11 06:51:03', 1),
(2546, 158, 31, 'Appearance', 4, '', 31, '2020-09-11 07:04:08', 1),
(2547, 158, 31, 'Communication (English)', 5, '', 31, '2020-09-11 07:04:08', 1),
(2548, 158, 31, 'Communication (Tamil)', 4, '', 31, '2020-09-11 07:04:08', 1),
(2549, 158, 31, 'Sales Experience', 2, 'Fresher For Direct Sales And Expecting high salary (45K)', 31, '2020-09-11 07:04:08', 1),
(2550, 255, 31, 'Appearance', 4, '', 31, '2020-09-11 08:19:29', 1),
(2551, 255, 31, 'Communication (English)', 3, '', 31, '2020-09-11 08:19:29', 1),
(2552, 255, 31, 'Communication (Tamil)', 5, '', 31, '2020-09-11 08:19:29', 1),
(2553, 255, 31, 'Convincing Skills', 4, '', 31, '2020-09-11 08:19:29', 1),
(2554, 255, 31, 'Confidence Level', 4, '', 31, '2020-09-11 08:19:29', 1),
(2555, 255, 31, 'Sustainability', 4, '', 31, '2020-09-11 08:19:29', 1),
(2556, 265, 40, 'Appearance', 4, 'Professional attire', 40, '2020-09-11 09:12:14', 1),
(2557, 265, 40, 'Attitude', 3, 'Acceptable attitude', 40, '2020-09-11 09:12:14', 1),
(2558, 265, 40, 'Communication (English)', 3, 'Neutral level in communication', 40, '2020-09-11 09:12:14', 1),
(2559, 265, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2020-09-11 09:12:14', 1),
(2560, 265, 40, 'Convincing Skills', 3, 'New to sales,fresher', 40, '2020-09-11 09:12:14', 1),
(2561, 265, 40, 'Confidence Level', 5, 'Appreciated one', 40, '2020-09-11 09:12:14', 1),
(2562, 265, 40, 'Importance Of Job', 4, 'Financial crunch looking for job', 40, '2020-09-11 09:12:14', 1),
(2563, 265, 40, 'Observation Skills', 3, 'Yet to decide', 40, '2020-09-11 09:12:14', 1),
(2564, 265, 40, 'Pressure Handling', 3, 'New to RM profile', 40, '2020-09-11 09:12:14', 1),
(2565, 265, 40, 'patience', 4, 'Seems like', 40, '2020-09-11 09:12:14', 1),
(2566, 265, 40, 'Sustainability', 4, 'Seems long runner', 40, '2020-09-11 09:12:14', 1),
(2567, 265, 40, 'Sales Experience', 1, 'Fresher', 40, '2020-09-11 09:12:14', 1),
(2568, 265, 40, 'Existing Experience Analyze', 4, 'Clear knowledge about previous workflow', 40, '2020-09-11 09:12:14', 1),
(2569, 265, 40, 'Practical Challenges Outcome', 3, 'Interested in exploring new things seems fit', 40, '2020-09-11 09:12:14', 1),
(2570, 265, 40, 'Willing To Work On Holidays', 3, 'Yes she is', 40, '2020-09-11 09:12:14', 1),
(2571, 285, 27, 'attitude of the employee?', 5, 'Good', 27, '2020-09-12 12:11:22', 1),
(2572, 285, 41, 'attitude of the employee?', 5, 'selected test', 41, '2020-09-12 12:12:08', 1),
(2573, 267, 16, 'Sustainability', 1, 'Sustain in doubt', 16, '2020-09-12 01:51:42', 1),
(2574, 259, 8, 'Communication (Tamil)', 3, 'no sales pitch will not suite for CRM/RE', 8, '2020-09-12 02:19:59', 1),
(2575, 288, 21, 'Communication (English)', 3, 'managable  comm', 21, '2020-09-12 04:36:36', 1),
(2576, 288, 21, 'Confidence Level', 1, 'very low', 21, '2020-09-12 04:36:36', 1),
(2577, 288, 21, 'Importance (Job)', 2, 'father passed away ', 21, '2020-09-12 04:36:36', 1),
(2578, 288, 21, 'Observation skills', 1, 'lisening skil is very low', 21, '2020-09-12 04:36:36', 1),
(2579, 288, 21, 'Pressure Handling', 1, 'very low confidence ', 21, '2020-09-12 04:36:36', 1),
(2580, 288, 21, 'Sustainability', 1, 'not sustain long term ', 21, '2020-09-12 04:36:36', 1),
(2581, 319, 34, 'Importance Of Job', 5, 'need job imm because he is the one who taking care of his family', 34, '2020-09-14 12:35:26', 1),
(2582, 319, 34, 'Sustainability', 4, 'will sustain and ready to sign bond', 34, '2020-09-14 12:35:26', 1),
(2583, 325, 8, 'Communication (English)', 3, 'okay', 8, '2020-09-14 01:15:20', 1),
(2584, 325, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-14 01:15:20', 1),
(2585, 325, 8, 'Observation Skills', 3, 'quick learner', 8, '2020-09-14 01:15:20', 1),
(2586, 323, 8, 'Communication (English)', 3, 'language is little bit local', 8, '2020-09-14 01:18:39', 1),
(2587, 323, 8, 'Communication (Tamil)', 2, 'no', 8, '2020-09-14 01:18:39', 1),
(2588, 323, 8, 'Convincing Skills', 3, 'trying his best', 8, '2020-09-14 01:18:39', 1),
(2589, 323, 8, 'Importance Of Job', 3, 'family Commitment', 8, '2020-09-14 01:18:39', 1),
(2590, 324, 8, 'Appearance', 3, 'okay', 8, '2020-09-14 01:34:39', 1),
(2591, 324, 8, 'Communication (English)', 2, 'Manageable', 8, '2020-09-14 01:34:39', 1),
(2592, 324, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-14 01:34:39', 1),
(2593, 324, 8, 'Convincing Skills', 4, 'Manageable and will sell any product', 8, '2020-09-14 01:34:39', 1),
(2594, 299, 21, 'Communication (Tamil)', 4, 'ok', 21, '2020-09-14 02:29:30', 1),
(2595, 299, 21, 'Communication (English)', 3, 'managble', 21, '2020-09-14 02:29:30', 1),
(2596, 299, 21, 'Importance (Job)', 4, 'low family income', 21, '2020-09-14 02:29:30', 1),
(2597, 321, 21, 'Confidence Level', 1, 'not bold', 21, '2020-09-14 02:30:52', 1),
(2598, 317, 21, 'Sustainability', 1, 'not sustain long term ', 21, '2020-09-14 02:32:52', 1),
(2599, 326, 11, 'Appearance', 3, '-', 11, '2020-09-14 02:36:59', 1),
(2600, 326, 11, 'Attitude', 3, '-', 11, '2020-09-14 02:36:59', 1),
(2601, 326, 11, 'Communication (Tamil)', 4, 'good', 11, '2020-09-14 02:36:59', 1),
(2602, 326, 11, 'Communication (English)', 2, '-', 11, '2020-09-14 02:36:59', 1),
(2603, 326, 11, 'convincing Skills', 3, 'ok', 11, '2020-09-14 02:36:59', 1),
(2604, 326, 11, 'Confidence Level', 4, '-', 11, '2020-09-14 02:36:59', 1),
(2605, 326, 11, 'Importance (Job)', 4, '-', 11, '2020-09-14 02:36:59', 1),
(2606, 326, 11, 'Observation skills', 4, '-', 11, '2020-09-14 02:36:59', 1),
(2607, 326, 11, 'Pressure Handling', 3, '-', 11, '2020-09-14 02:36:59', 1),
(2608, 326, 11, 'patience', 4, '-', 11, '2020-09-14 02:36:59', 1),
(2609, 326, 11, 'Sustainability', 4, '-=', 11, '2020-09-14 02:36:59', 1),
(2610, 326, 21, 'Communication (Tamil)', 4, 'ok', 21, '2020-09-14 02:38:33', 1),
(2611, 326, 21, 'Confidence Level', 4, 'ok', 21, '2020-09-14 02:38:33', 1),
(2612, 325, 34, 'Appearance', 4, 'good', 34, '2020-09-14 02:38:47', 1),
(2613, 325, 34, 'Attitude', 4, 'good', 34, '2020-09-14 02:38:47', 1),
(2614, 325, 34, 'Communication (English)', 4, 'good', 34, '2020-09-14 02:38:47', 1),
(2615, 325, 34, 'Communication (Tamil)', 5, 'good', 34, '2020-09-14 02:38:47', 1),
(2616, 325, 34, 'Convincing Skills', 5, 'good', 34, '2020-09-14 02:38:47', 1),
(2617, 325, 34, 'Confidence Level', 4, 'good', 34, '2020-09-14 02:38:47', 1),
(2618, 325, 34, 'Importance Of Job', 3, 'need job immeadtely', 34, '2020-09-14 02:38:47', 1),
(2619, 325, 34, 'Willing To Work On Holidays', 4, 'will work in holidays', 34, '2020-09-14 02:38:47', 1),
(2620, 322, 34, 'Communication (English)', 3, 'average', 34, '2020-09-14 02:40:39', 1),
(2621, 322, 34, 'Communication (Tamil)', 5, 'good', 34, '2020-09-14 02:40:39', 1),
(2622, 322, 34, 'Convincing Skills', 3, 'average', 34, '2020-09-14 02:40:39', 1),
(2623, 322, 34, 'Confidence Level', 5, 'good', 34, '2020-09-14 02:40:39', 1),
(2624, 322, 34, 'Importance Of Job', 5, 'need job immeadate', 34, '2020-09-14 02:40:39', 1),
(2625, 322, 34, 'Observation Skills', 4, 'good', 34, '2020-09-14 02:40:39', 1),
(2626, 319, 15, 'Sustainability', 1, 'already working indusind bank collection job exp only 6 months', 15, '2020-09-14 02:45:24', 1),
(2627, 289, 15, 'Sustainability', 3, 'already working bank bazear.com ', 15, '2020-09-14 02:47:47', 1),
(2628, 283, 14, 'Appearance', 4, 'good', 14, '2020-09-14 03:10:23', 1),
(2629, 283, 14, 'Attitude', 4, 'okay', 14, '2020-09-14 03:10:23', 1),
(2630, 283, 14, 'Communication (Tamil)', 4, 'well good', 14, '2020-09-14 03:10:23', 1),
(2631, 283, 14, 'Communication (English)', 3, 'okay for manage', 14, '2020-09-14 03:10:23', 1),
(2632, 283, 14, 'convincing Skills', 4, 'good', 14, '2020-09-14 03:10:23', 1),
(2633, 283, 14, 'Confidence Level', 4, 'good', 14, '2020-09-14 03:10:23', 1),
(2634, 283, 14, 'Importance (Job)', 4, 'yes need', 14, '2020-09-14 03:10:23', 1),
(2635, 283, 14, 'Observation skills', 4, 'good', 14, '2020-09-14 03:10:23', 1),
(2636, 283, 14, 'Pressure Handling', 4, 'ok for handling', 14, '2020-09-14 03:10:23', 1),
(2637, 283, 14, 'patience', 3, 'okay', 14, '2020-09-14 03:10:23', 1),
(2638, 283, 14, 'Sustainability', 4, 'she will sustain', 14, '2020-09-14 03:10:23', 1),
(2639, 318, 14, 'Appearance', 2, 'not okay', 14, '2020-09-14 03:14:46', 1),
(2640, 318, 14, 'Attitude', 2, 'poor', 14, '2020-09-14 03:14:46', 1),
(2641, 318, 14, 'Communication (Tamil)', 3, 'okay', 14, '2020-09-14 03:14:46', 1),
(2642, 318, 14, 'Communication (English)', 1, 'bad', 14, '2020-09-14 03:14:46', 1),
(2643, 318, 14, 'convincing Skills', 1, 'poor', 14, '2020-09-14 03:14:46', 1),
(2644, 318, 14, 'Confidence Level', 2, 'very less', 14, '2020-09-14 03:14:46', 1),
(2645, 318, 14, 'Importance (Job)', 2, 'need only but he  is not fit for this profile', 14, '2020-09-14 03:14:46', 1),
(2646, 318, 14, 'Observation skills', 2, 'bad', 14, '2020-09-14 03:14:46', 1),
(2647, 318, 14, 'Pressure Handling', 1, 'need data entry job with no pressure he said', 14, '2020-09-14 03:14:46', 1),
(2648, 318, 14, 'patience', 3, 'okay', 14, '2020-09-14 03:14:46', 1),
(2649, 318, 14, 'Sustainability', 1, 'doubt ', 14, '2020-09-14 03:14:46', 1),
(2650, 305, 38, 'Appearance', 1, 'he is not in formals and he weared stud in interview session', 38, '2020-09-14 04:05:29', 1),
(2651, 305, 38, 'Communication (Tamil)', 2, 'manageable kannada ', 38, '2020-09-14 04:05:29', 1),
(2652, 305, 38, 'Communication (English)', 1, 'he dont know basic english', 38, '2020-09-14 04:05:29', 1),
(2653, 305, 38, 'Sustainability', 1, 'he will not sustain in our field', 38, '2020-09-14 04:05:29', 1),
(2654, 307, 38, 'Appearance', 1, 'he is not in formals xxamp he weared stud in interview session', 38, '2020-09-14 04:15:38', 1),
(2655, 307, 38, 'Communication (Tamil)', 2, 'he dont know kannada fluently', 38, '2020-09-14 04:15:38', 1),
(2656, 307, 38, 'Communication (English)', 1, 'dont know basic english', 38, '2020-09-14 04:15:38', 1),
(2657, 307, 38, 'patience', 1, 'he is not in a seat for few minutes ', 38, '2020-09-14 04:15:38', 1),
(2658, 307, 38, 'Sustainability', 1, 'will not sustain ', 38, '2020-09-14 04:15:38', 1),
(2659, 308, 38, 'Appearance', 1, 'no formal code ', 38, '2020-09-14 04:18:49', 1),
(2660, 308, 38, 'Communication (Tamil)', 2, 'better in kannada, not good', 38, '2020-09-14 04:18:49', 1),
(2661, 308, 38, 'Communication (English)', 2, 'manageable english', 38, '2020-09-14 04:18:49', 1),
(2662, 308, 38, 'Sustainability', 1, 'will not sustain in our field', 38, '2020-09-14 04:18:49', 1),
(2663, 329, 15, 'Importance Of Job', 4, 'working people for this person only in our family', 15, '2020-09-14 04:19:24', 1),
(2664, 334, 14, 'Appearance', 4, 'good', 14, '2020-09-15 11:43:41', 1),
(2665, 334, 14, 'Attitude', 3, 'ok', 14, '2020-09-15 11:43:41', 1),
(2666, 334, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-09-15 11:43:41', 1),
(2667, 334, 14, 'Communication (English)', 4, 'good', 14, '2020-09-15 11:43:41', 1),
(2668, 334, 14, 'convincing Skills', 1, 'not ok for sales', 14, '2020-09-15 11:43:41', 1),
(2669, 334, 14, 'Confidence Level', 2, 'less', 14, '2020-09-15 11:43:41', 1),
(2670, 334, 14, 'Importance (Job)', 3, 'job need', 14, '2020-09-15 11:43:41', 1),
(2671, 334, 14, 'Observation skills', 3, 'ok', 14, '2020-09-15 11:43:41', 1),
(2672, 334, 14, 'Pressure Handling', 2, 'less', 14, '2020-09-15 11:43:41', 1),
(2673, 334, 14, 'patience', 3, 'ok', 14, '2020-09-15 11:43:41', 1),
(2674, 334, 14, 'Sustainability', 3, 'only for mutual funds means she will sustain', 14, '2020-09-15 11:43:41', 1),
(2675, 293, 21, 'Communication (Tamil)', 4, 'good', 21, '2020-09-15 12:43:14', 1),
(2676, 293, 21, 'Communication (English)', 3, 'managable', 21, '2020-09-15 12:43:14', 1),
(2677, 293, 21, 'Sustainability', 1, 'she is not  sustain long term', 21, '2020-09-15 12:43:14', 1),
(2678, 333, 21, 'Appearance', 4, 'ok', 21, '2020-09-15 12:50:53', 1),
(2679, 333, 21, 'Communication (Tamil)', 4, 'good', 21, '2020-09-15 12:50:53', 1),
(2680, 333, 21, 'Communication (English)', 4, 'good', 21, '2020-09-15 12:50:53', 1),
(2681, 333, 21, 'convincing Skills', 3, 'ok', 21, '2020-09-15 12:50:53', 1),
(2682, 333, 21, 'Importance (Job)', 5, 'father passed away', 21, '2020-09-15 12:50:53', 1),
(2683, 333, 21, 'Sustainability', 4, '2 yrs ', 21, '2020-09-15 12:50:53', 1),
(2684, 342, 21, 'Communication (Tamil)', 4, 'ok', 21, '2020-09-15 12:53:52', 1),
(2685, 342, 21, 'Communication (English)', 3, 'managable', 21, '2020-09-15 12:53:52', 1),
(2686, 342, 21, 'Pressure Handling', 3, 'ok', 21, '2020-09-15 12:53:52', 1),
(2687, 342, 21, 'Sustainability', 4, 'ok', 21, '2020-09-15 12:53:52', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(2688, 328, 31, 'Appearance', 2, 'came with casuals', 31, '2020-09-15 01:06:51', 1),
(2689, 328, 31, 'Confidence Level', 2, 'showing urge to get the job', 31, '2020-09-15 01:06:51', 1),
(2690, 328, 31, 'Existing Experience Analyze', 2, 'his stmts not match with his actuals', 31, '2020-09-15 01:06:51', 1),
(2691, 39, 26, 'Is Employee Clearly Understand the roles and Responsibility?', 3, 'test', 26, '2020-09-15 03:03:42', 1),
(2692, 39, 26, 'Is all the technical Requirements matched with this employee?', 4, 'test', 26, '2020-09-15 03:03:42', 1),
(2693, 331, 24, 'Appearance', 3, 'not bad.. okay for our profile', 24, '2020-09-15 03:58:14', 1),
(2694, 331, 24, 'Communication (Tamil)', 1, 'clarity missing', 24, '2020-09-15 03:58:14', 1),
(2695, 331, 24, 'Convincing Skills', 1, 'below average', 24, '2020-09-15 03:58:14', 1),
(2696, 331, 24, 'Existing Experience Analyze', 1, 'Implement Is Poor For Existing Job ', 24, '2020-09-15 03:58:14', 1),
(2697, 338, 8, 'convincing Skills', 2, 'will not suite for calling', 8, '2020-09-15 05:05:20', 1),
(2698, 329, 17, 'Appearance', 3, 'good', 17, '2020-09-15 05:24:30', 1),
(2699, 329, 17, 'Attitude', 3, 'good', 17, '2020-09-15 05:24:30', 1),
(2700, 329, 17, 'Communication (English)', 3, 'not bad', 17, '2020-09-15 05:24:30', 1),
(2701, 329, 17, 'Communication (Tamil)', 4, 'good', 17, '2020-09-15 05:24:30', 1),
(2702, 329, 17, 'Convincing Skills', 3, 'Okay', 17, '2020-09-15 05:24:30', 1),
(2703, 329, 17, 'Confidence Level', 3, 'okay', 17, '2020-09-15 05:24:30', 1),
(2704, 329, 17, 'Existing Experience Analyze', 3, 'Already worked sbi credit card xxamp maangalam finance collection process ', 17, '2020-09-15 05:24:30', 1),
(2705, 329, 17, 'Importance Of Job', 4, 'finance need ', 17, '2020-09-15 05:24:30', 1),
(2706, 329, 17, 'Observation Skills', 3, 'okay', 17, '2020-09-15 05:24:30', 1),
(2707, 329, 17, 'patience', 3, 'okay', 17, '2020-09-15 05:24:30', 1),
(2708, 329, 17, 'Pressure Handling', 3, 'oaky', 17, '2020-09-15 05:24:30', 1),
(2709, 329, 17, 'Practical Challenges Outcome', 3, 'okay', 17, '2020-09-15 05:24:30', 1),
(2710, 329, 17, 'Sustainability', 3, 'okay', 17, '2020-09-15 05:24:30', 1),
(2711, 329, 17, 'Sales Experience', 3, 'fresher for sales ', 17, '2020-09-15 05:24:30', 1),
(2712, 329, 17, 'Willing To Work On Holidays', 4, 'willing to work Convenient time and holidays also ', 17, '2020-09-15 05:24:30', 1),
(2713, 346, 29, 'Convincing Skills', 1, 'Doesnxquott have skills to convince', 29, '2020-09-15 06:03:37', 1),
(2714, 346, 29, 'Importance Of Job', 1, 'has own family business, left job frequently', 29, '2020-09-15 06:03:37', 1),
(2715, 346, 29, 'Observation Skills', 1, 'worked for 7 years but Doesnxquott have any skills', 29, '2020-09-15 06:03:37', 1),
(2716, 367, 26, 'attitude of the employee?', 2, 'okay', 26, '2020-09-16 11:20:40', 1),
(2717, 367, 26, 'Communication Skills?', 1, 'he will not manage', 26, '2020-09-16 11:20:40', 1),
(2718, 367, 26, 'relevance experience with this technical spec.', 1, 'he dont know basic curd operations.', 26, '2020-09-16 11:20:40', 1),
(2719, 368, 26, 'attitude of the employee?', 2, 'Okay', 26, '2020-09-16 11:54:06', 1),
(2720, 368, 26, 'candidate have a real-time working experience?', 1, 'He is telling us did my project but from the explanation, we dont see the quality', 26, '2020-09-16 11:54:06', 1),
(2721, 368, 26, 'Communication Skills?', 3, 'He will manage', 26, '2020-09-16 11:54:06', 1),
(2722, 368, 26, 'relevance experience with this technical spec.', 2, 'He is having one year 6 months of experience but he dont know basic jquery ajax syntax and basic MySQL queries.', 26, '2020-09-16 11:54:06', 1),
(2723, 356, 21, 'Communication (Tamil)', 2, 'low,voice , fluency is not good ', 21, '2020-09-16 12:01:50', 1),
(2724, 356, 21, 'Confidence Level', 1, 'not bold ', 21, '2020-09-16 12:01:50', 1),
(2725, 356, 21, 'Sustainability', 1, 'pursuing mba ,sat,sun class, part time job  also doing ', 21, '2020-09-16 12:01:50', 1),
(2726, 369, 21, 'Communication (Tamil)', 1, 'local slang language is not good ', 21, '2020-09-16 12:06:54', 1),
(2727, 369, 21, 'patience', 1, 'worst attitude ', 21, '2020-09-16 12:06:54', 1),
(2728, 369, 21, 'Sustainability', 1, 'not sustain long term ', 21, '2020-09-16 12:06:54', 1),
(2729, 269, 51, 'Appearance', 4, 'his appearance was good', 51, '2020-09-16 12:14:57', 1),
(2730, 269, 51, 'Communication (English)', 3, 'his communication in english is better', 51, '2020-09-16 12:14:57', 1),
(2731, 269, 51, 'Communication (Tamil)', 4, 'His Communication In tamil is good', 51, '2020-09-16 12:14:57', 1),
(2732, 269, 51, 'Convincing Skills', 4, 'convicing skills is good and he is trying to convice us with different examples.', 51, '2020-09-16 12:14:57', 1),
(2733, 269, 51, 'Confidence Level', 4, 'confidence in him is good', 51, '2020-09-16 12:14:57', 1),
(2734, 269, 51, 'Importance Of Job', 4, 'he knows the importance of this job', 51, '2020-09-16 12:14:57', 1),
(2735, 269, 51, 'Observation Skills', 4, 'he try to observe what we are saying', 51, '2020-09-16 12:14:57', 1),
(2736, 269, 51, 'patience', 4, 'his patient skills are good', 51, '2020-09-16 12:14:57', 1),
(2737, 269, 51, 'Willing To Work On Holidays', 4, 'he is willing to work on holidays too', 51, '2020-09-16 12:14:57', 1),
(2738, 355, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-16 12:23:32', 1),
(2739, 355, 8, 'Communication (English)', 3, 'Managable', 8, '2020-09-16 12:23:32', 1),
(2740, 359, 8, 'Communication (Tamil)', 2, 'local language and pronunciation is not clear and good.', 8, '2020-09-16 12:30:58', 1),
(2741, 364, 8, 'Appearance', 3, 'oky', 8, '2020-09-16 12:49:44', 1),
(2742, 364, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-16 12:49:44', 1),
(2743, 364, 8, 'convincing Skills', 3, 'good', 8, '2020-09-16 12:49:44', 1),
(2744, 361, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-16 12:51:14', 1),
(2745, 361, 8, 'convincing Skills', 2, 'will not suite for our process. no fluency while speaking', 8, '2020-09-16 12:51:14', 1),
(2746, 389, 27, 'Is Employee Clearly Understand the roles and Responsibility?', 4, 'nill', 27, '2020-09-16 02:08:02', 1),
(2747, 389, 41, 'Is Employee Clearly Understand the roles and Responsibility?', 4, 'nill', 41, '2020-09-16 02:11:10', 1),
(2748, 381, 13, 'Pressure Handling', 2, 'she is not suitable for pressure handling', 13, '2020-09-16 02:51:07', 1),
(2749, 380, 21, 'Appearance', 4, 'ok good', 21, '2020-09-16 03:29:03', 1),
(2750, 380, 21, 'Communication (Tamil)', 4, 'good,', 21, '2020-09-16 03:29:03', 1),
(2751, 380, 21, 'Communication (English)', 3, 'managable ', 21, '2020-09-16 03:29:03', 1),
(2752, 380, 21, 'Confidence Level', 4, 'ok ,she is bold xxamp good voice clarity ,..', 21, '2020-09-16 03:29:03', 1),
(2753, 380, 21, 'Sustainability', 4, 'ok', 21, '2020-09-16 03:29:03', 1),
(2754, 311, 21, 'Confidence Level', 1, 'very low ', 21, '2020-09-16 03:30:58', 1),
(2755, 311, 21, 'Sustainability', 1, 'not sustain long term...', 21, '2020-09-16 03:30:58', 1),
(2756, 383, 21, 'Confidence Level', 1, 'not bold', 21, '2020-09-16 03:36:55', 1),
(2757, 383, 21, 'Sustainability', 1, 'not  Sustain Long Term ...', 21, '2020-09-16 03:36:55', 1),
(2758, 388, 26, 'attitude of the employee?', 4, 'Good', 26, '2020-09-16 03:37:04', 1),
(2759, 388, 26, 'candidate have a real-time working experience?', 1, 'No, she worked websites alone', 26, '2020-09-16 03:37:04', 1),
(2760, 388, 26, 'relevance experience with this technical spec.', 1, 'she dont know the basic array  concepts and basic database queries ', 26, '2020-09-16 03:37:04', 1),
(2761, 371, 13, 'convincing Skills', 1, 'poor', 13, '2020-09-16 04:02:33', 1),
(2762, 371, 13, 'Confidence Level', 2, 'less', 13, '2020-09-16 04:02:33', 1),
(2763, 371, 13, 'Observation skills', 2, 'poor', 13, '2020-09-16 04:02:33', 1),
(2764, 390, 26, 'Is Employee Clearly Understand the roles and Responsibility?', 4, 'good', 26, '2020-09-16 04:11:28', 1),
(2765, 390, 26, 'Communication Skills?', 3, 'very good', 26, '2020-09-16 04:11:28', 1),
(2766, 269, 29, 'Convincing Skills', 1, 'Doesnxquott have any convincing skill', 29, '2020-09-16 04:11:42', 1),
(2767, 269, 29, 'Confidence Level', 1, 'No confidence level', 29, '2020-09-16 04:11:42', 1),
(2768, 269, 29, 'Observation Skills', 1, 'nil', 29, '2020-09-16 04:11:42', 1),
(2769, 269, 29, 'Sustainability', 1, 'will not stay for long term', 29, '2020-09-16 04:11:42', 1),
(2770, 269, 29, 'Sales Experience', 1, 'no Relevant insurance or sales experience  ', 29, '2020-09-16 04:11:42', 1),
(2771, 364, 21, 'Communication (Tamil)', 4, 'good communication ', 21, '2020-09-16 04:14:42', 1),
(2772, 364, 21, 'Confidence Level', 4, 'ok ', 21, '2020-09-16 04:14:42', 1),
(2773, 364, 21, 'Sustainability', 4, '1-2 yrs ', 21, '2020-09-16 04:14:42', 1),
(2774, 390, 8, 'Is Employee Clearly Understand the roles and Responsibility?', 3, 'ok', 8, '2020-09-16 04:16:17', 1),
(2775, 71, 29, 'Convincing Skills', 1, 'no convincing skill', 29, '2020-09-16 04:16:50', 1),
(2776, 71, 29, 'Importance Of Job', 1, 'Doesnxquott have any importance', 29, '2020-09-16 04:16:50', 1),
(2777, 71, 29, 'Sustainability', 1, 'has not proved in previous experience', 29, '2020-09-16 04:16:50', 1),
(2778, 71, 29, 'Sales Experience', 1, 'has worked exp but could not handle sales or marketing profile', 29, '2020-09-16 04:16:50', 1),
(2779, 71, 29, 'Practical Challenges Outcome', 1, 'could not achieve in previous companies', 29, '2020-09-16 04:16:50', 1),
(2780, 366, 38, 'Appearance', 2, 'He Attend Interview With Long Beard....Its Not Good To See ', 38, '2020-09-16 04:31:06', 1),
(2781, 366, 38, 'Attitude', 1, 'zero listening skills xxamp he is asking question, english is mandatory for you!!', 38, '2020-09-16 04:31:06', 1),
(2782, 366, 38, 'Communication (English)', 1, 'not good in fluent ', 38, '2020-09-16 04:31:06', 1),
(2783, 366, 38, 'Sustainability', 1, 'he will not sustain in our field', 38, '2020-09-16 04:31:06', 1),
(2784, 372, 38, 'Attitude', 1, 'zero listening', 38, '2020-09-16 04:34:38', 1),
(2785, 372, 38, 'Communication (English)', 1, 'he donxquott know basic english', 38, '2020-09-16 04:34:38', 1),
(2786, 372, 38, 'Observation skills', 1, 'not understanding what ixquotm asking', 38, '2020-09-16 04:34:38', 1),
(2787, 372, 38, 'Pressure Handling', 1, 'he will not handle pressure', 38, '2020-09-16 04:34:38', 1),
(2788, 365, 38, 'Appearance', 3, 'good', 38, '2020-09-16 04:39:01', 1),
(2789, 365, 38, 'Attitude', 3, 'good in listening xxamp understanding', 38, '2020-09-16 04:39:01', 1),
(2790, 365, 38, 'Communication (English)', 4, 'good fluent communication', 38, '2020-09-16 04:39:01', 1),
(2791, 365, 38, 'Sustainability', 1, 'she is 30years old xxamp she is having kid', 38, '2020-09-16 04:39:01', 1),
(2792, 382, 21, 'Communication (Tamil)', 4, 'good communication,', 21, '2020-09-16 04:52:58', 1),
(2793, 382, 21, 'Observation skills', 3, 'ok', 21, '2020-09-16 04:52:58', 1),
(2794, 382, 21, 'Sustainability', 4, 'min1 year ', 21, '2020-09-16 04:52:58', 1),
(2795, 405, 11, 'Appearance', 3, '-', 11, '2020-09-17 12:02:26', 1),
(2796, 405, 11, 'Attitude', 3, '-', 11, '2020-09-17 12:02:26', 1),
(2797, 405, 11, 'Communication (Tamil)', 4, 'ok', 11, '2020-09-17 12:02:26', 1),
(2798, 405, 11, 'Communication (English)', 2, '-', 11, '2020-09-17 12:02:26', 1),
(2799, 405, 11, 'convincing Skills', 3, '-', 11, '2020-09-17 12:02:26', 1),
(2800, 405, 11, 'Confidence Level', 3, '-', 11, '2020-09-17 12:02:26', 1),
(2801, 405, 11, 'Importance (Job)', 3, '-', 11, '2020-09-17 12:02:26', 1),
(2802, 405, 11, 'Observation skills', 3, '-', 11, '2020-09-17 12:02:26', 1),
(2803, 405, 11, 'Pressure Handling', 1, '-', 11, '2020-09-17 12:02:26', 1),
(2804, 405, 11, 'patience', 2, '-', 11, '2020-09-17 12:02:26', 1),
(2805, 405, 11, 'Sustainability', 2, '-', 11, '2020-09-17 12:02:26', 1),
(2806, 407, 27, 'candidate have a real-time working experience?', 2, 'He donxquott have a experience. He did something like website creation', 27, '2020-09-17 12:11:34', 1),
(2807, 407, 27, 'Communication Skills?', 3, 'Moderately Speaking English. Clearly Given the Answer to My Questions.', 27, '2020-09-17 12:11:34', 1),
(2808, 393, 24, 'Communication (Tamil)', 3, 'communication no problem', 24, '2020-09-17 12:21:28', 1),
(2809, 393, 24, 'Convincing Skills', 3, 'good', 24, '2020-09-17 12:21:28', 1),
(2810, 393, 24, 'Sustainability', 2, 'little bit doubt.. kindly check this parameter ..', 24, '2020-09-17 12:21:28', 1),
(2811, 399, 8, 'Appearance', 3, 'okay', 8, '2020-09-17 12:51:15', 1),
(2812, 399, 8, 'Communication (English)', 3, 'okay', 8, '2020-09-17 12:51:15', 1),
(2813, 399, 8, 'Convincing Skills', 3, 'he will but with low voice', 8, '2020-09-17 12:51:15', 1),
(2814, 399, 8, 'patience', 3, 'yes', 8, '2020-09-17 12:51:15', 1),
(2815, 399, 8, 'Sales Experience', 3, 'was in marketing and sales', 8, '2020-09-17 12:51:15', 1),
(2816, 399, 40, 'Appearance', 4, 'APPEARANCE PROFESSIONALLY', 40, '2020-09-17 01:46:12', 1),
(2817, 399, 40, 'Attitude', 4, 'SEEMS LIKE A POLITE PERSONALITY', 40, '2020-09-17 01:46:12', 1),
(2818, 399, 40, 'Communication (English)', 2, 'NOT GOOD IN COMMUNICATION', 40, '2020-09-17 01:46:12', 1),
(2819, 399, 40, 'Communication (Tamil)', 4, 'GOOD IN LOCAL LANGUAGE', 40, '2020-09-17 01:46:12', 1),
(2820, 399, 40, 'Convincing Skills', 3, 'DOESNxquotT HAVE KNOWLEDGE IN INSURANCE,PREVIOUS SKILLS SEEMS OK', 40, '2020-09-17 01:46:12', 1),
(2821, 399, 40, 'Confidence Level', 3, 'SLOW RUNNER', 40, '2020-09-17 01:46:12', 1),
(2822, 399, 40, 'Importance Of Job', 4, 'HE WANTS IMMEDIATE JOBS ', 40, '2020-09-17 01:46:12', 1),
(2823, 399, 40, 'Observation Skills', 3, 'AVERAGE IN', 40, '2020-09-17 01:46:12', 1),
(2824, 399, 40, 'Pressure Handling', 4, 'LOOKS HARD RUNNER', 40, '2020-09-17 01:46:12', 1),
(2825, 399, 40, 'patience', 4, 'HANDLING THINGS PATIENTLY ', 40, '2020-09-17 01:46:12', 1),
(2826, 399, 40, 'Sustainability', 3, 'SATISFIED WITH JOB WOULD BE A LONG RUNNER', 40, '2020-09-17 01:46:12', 1),
(2827, 399, 40, 'Sales Experience', 2, '17 MONTHS OF SALES EXPERIENCE', 40, '2020-09-17 01:46:12', 1),
(2828, 399, 40, 'Existing Experience Analyze', 3, 'PREVIOUS EXP SEEMS NOT LIKE A LONG RUNNER', 40, '2020-09-17 01:46:12', 1),
(2829, 399, 40, 'Practical Challenges Outcome', 3, 'YET TO DECIDE', 40, '2020-09-17 01:46:12', 1),
(2830, 399, 40, 'Willing To Work On Holidays', 5, 'YES HE IS WILLING TO WORK ON SUNDAYS', 40, '2020-09-17 01:46:12', 1),
(2831, 375, 8, 'convincing Skills', 2, 'will not suite for our process', 8, '2020-09-17 01:47:40', 1),
(2832, 375, 8, 'Pressure Handling', 1, 'will not Sustain and handle pressure and target', 8, '2020-09-17 01:47:40', 1),
(2833, 415, 24, 'Communication (Tamil)', 3, 'communication okay', 24, '2020-09-17 02:07:58', 1),
(2834, 415, 24, 'Sales Experience', 3, '1years chit fund sales', 24, '2020-09-17 02:07:58', 1),
(2835, 426, 38, 'Appearance', 4, 'profiled', 38, '2020-09-17 03:00:29', 1),
(2836, 426, 38, 'Attitude', 4, 'good in listening xxamp understanding skill', 38, '2020-09-17 03:00:29', 1),
(2837, 426, 38, 'Communication (Tamil)', 5, 'very good', 38, '2020-09-17 03:00:29', 1),
(2838, 426, 38, 'Communication (English)', 4, 'good fluency', 38, '2020-09-17 03:00:29', 1),
(2839, 426, 38, 'convincing Skills', 4, 'already having sales experience', 38, '2020-09-17 03:00:29', 1),
(2840, 426, 38, 'Importance (Job)', 4, 'she is seperated from her family', 38, '2020-09-17 03:00:29', 1),
(2841, 426, 38, 'Observation skills', 4, 'too good', 38, '2020-09-17 03:00:29', 1),
(2842, 426, 38, 'Pressure Handling', 4, 'already she worked as a TL in SS Capitals', 38, '2020-09-17 03:00:29', 1),
(2843, 426, 38, 'Sustainability', 1, 'family is giving marriage pressure to her', 38, '2020-09-17 03:00:29', 1),
(2844, 436, 8, 'Attitude', 2, 'childish', 8, '2020-09-17 03:08:19', 1),
(2845, 399, 18, 'Appearance', 2, 'Ok', 18, '2020-09-17 03:33:56', 1),
(2846, 399, 18, 'Attitude', 3, 'Goog', 18, '2020-09-17 03:33:56', 1),
(2847, 399, 18, 'Communication (English)', 3, 'Average', 18, '2020-09-17 03:33:56', 1),
(2848, 399, 18, 'Communication (Tamil)', 4, 'Good', 18, '2020-09-17 03:33:56', 1),
(2849, 399, 18, 'Convincing Skills', 3, 'Ok', 18, '2020-09-17 03:33:56', 1),
(2850, 399, 18, 'Confidence Level', 4, 'Good', 18, '2020-09-17 03:33:56', 1),
(2851, 399, 18, 'Importance Of Job', 4, 'Main earning person', 18, '2020-09-17 03:33:56', 1),
(2852, 399, 18, 'Observation Skills', 3, 'Ok', 18, '2020-09-17 03:33:56', 1),
(2853, 399, 18, 'Pressure Handling', 4, 'Ok', 18, '2020-09-17 03:33:56', 1),
(2854, 399, 18, 'patience', 4, 'Good', 18, '2020-09-17 03:33:56', 1),
(2855, 399, 18, 'Sustainability', 4, 'Good', 18, '2020-09-17 03:33:56', 1),
(2856, 399, 18, 'Sales Experience', 3, 'Average', 18, '2020-09-17 03:33:56', 1),
(2857, 399, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2020-09-17 03:33:56', 1),
(2858, 399, 18, 'Practical Challenges Outcome', 3, 'Good', 18, '2020-09-17 03:33:56', 1),
(2859, 399, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2020-09-17 03:33:56', 1),
(2860, 419, 13, 'Communication (Tamil)', 3, 'good', 13, '2020-09-17 05:38:26', 1),
(2861, 419, 13, 'convincing Skills', 1, 'less', 13, '2020-09-17 05:38:26', 1),
(2862, 419, 13, 'Confidence Level', 1, 'less', 13, '2020-09-17 05:38:26', 1),
(2863, 419, 13, 'Observation skills', 1, 'not understand anything', 13, '2020-09-17 05:38:26', 1),
(2864, 419, 13, 'Pressure Handling', 1, 'not fit  for sales profile ', 13, '2020-09-17 05:38:26', 1),
(2865, 434, 13, 'Appearance', 1, 'poor', 13, '2020-09-17 05:43:44', 1),
(2866, 434, 13, 'Observation skills', 1, 'less', 13, '2020-09-17 05:43:44', 1),
(2867, 434, 13, 'Sustainability', 1, 'having experience in many  companies but not sustain  company more than 6 months  ', 13, '2020-09-17 05:43:44', 1),
(2868, 401, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-09-18 10:37:00', 1),
(2869, 401, 21, 'Confidence Level', 3, 'average ', 21, '2020-09-18 10:37:00', 1),
(2870, 401, 21, 'Sustainability', 1, 'not sustain long term , 45 mins to 1 hour travel,,expected 15 k salary, she  not have voice exp also', 21, '2020-09-18 10:37:00', 1),
(2871, 354, 21, 'Appearance', 1, 'ok good ', 21, '2020-09-18 10:40:49', 1),
(2872, 354, 21, 'Communication (Tamil)', 4, 'good communication', 21, '2020-09-18 10:40:49', 1),
(2873, 354, 21, 'Confidence Level', 4, 'also good ', 21, '2020-09-18 10:40:49', 1),
(2874, 354, 21, 'Observation skills', 4, 'ok ', 21, '2020-09-18 10:40:49', 1),
(2875, 354, 21, 'Sustainability', 3, 'minimum 1 year', 21, '2020-09-18 10:40:49', 1),
(2876, 460, 8, 'Appearance', 3, 'okay', 8, '2020-09-18 11:07:23', 1),
(2877, 460, 8, 'Communication (English)', 3, 'okay', 8, '2020-09-18 11:07:23', 1),
(2878, 460, 8, 'Confidence Level', 4, 'good', 8, '2020-09-18 11:07:23', 1),
(2879, 455, 21, 'Communication (Tamil)', 4, 'good com', 21, '2020-09-18 11:08:49', 1),
(2880, 455, 21, 'Pressure Handling', 1, 'not able to take pressure', 21, '2020-09-18 11:08:49', 1),
(2881, 385, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-18 11:19:15', 1),
(2882, 385, 8, 'convincing Skills', 3, 'trying his best', 8, '2020-09-18 11:19:15', 1),
(2883, 385, 8, 'Sustainability', 2, 'family Commitments There is Possibility to witch easily for salary.', 8, '2020-09-18 11:19:15', 1),
(2884, 464, 24, 'Communication (Tamil)', 4, 'OKAY FOR TELECALLING', 24, '2020-09-18 11:35:01', 1),
(2885, 464, 24, 'Sustainability', 4, 'READY TO SIGN BOND ', 24, '2020-09-18 11:35:01', 1),
(2886, 439, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-18 11:37:19', 1),
(2887, 439, 8, 'Convincing Skills', 3, 'good', 8, '2020-09-18 11:37:19', 1),
(2888, 439, 8, 'Confidence Level', 3, 'okay', 8, '2020-09-18 11:37:19', 1),
(2889, 439, 8, 'Sustainability', 2, 'need to check, already he was helping his father in business', 8, '2020-09-18 11:37:19', 1),
(2890, 460, 14, 'Attitude', 4, 'good', 14, '2020-09-18 12:24:21', 1),
(2891, 460, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-09-18 12:24:21', 1),
(2892, 460, 14, 'Communication (English)', 4, 'well good', 14, '2020-09-18 12:24:21', 1),
(2893, 460, 14, 'convincing Skills', 4, 'Convincing products good ', 14, '2020-09-18 12:24:21', 1),
(2894, 460, 14, 'Observation skills', 4, 'good ', 14, '2020-09-18 12:24:21', 1),
(2895, 463, 8, 'Communication (Tamil)', 2, 'no fluency', 8, '2020-09-18 12:56:36', 1),
(2896, 465, 31, 'Appearance', 4, 'Neet and good', 31, '2020-09-18 01:10:33', 1),
(2897, 465, 31, 'Communication (Tamil)', 4, 'good', 31, '2020-09-18 01:10:33', 1),
(2898, 465, 31, 'Convincing Skills', 1, 'unable to convince for a product', 31, '2020-09-18 01:10:33', 1),
(2899, 465, 31, 'Sales Experience', 1, 'not into direct sales', 31, '2020-09-18 01:10:33', 1),
(2900, 465, 31, 'Existing Experience Analyze', 1, 'Worked Only In Operations And Sales Support.   ', 31, '2020-09-18 01:10:33', 1),
(2901, 458, 8, 'Appearance', 3, 'okay', 8, '2020-09-18 01:13:23', 1),
(2902, 458, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-09-18 01:13:23', 1),
(2903, 458, 8, 'Communication (English)', 3, 'Manageable', 8, '2020-09-18 01:13:23', 1),
(2904, 458, 8, 'convincing Skills', 3, 'good', 8, '2020-09-18 01:13:23', 1),
(2905, 458, 8, 'Importance (Job)', 3, 'yes', 8, '2020-09-18 01:13:23', 1),
(2906, 440, 8, 'Appearance', 3, 'okay', 8, '2020-09-18 01:21:34', 1),
(2907, 440, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-18 01:21:34', 1),
(2908, 440, 8, 'Confidence Level', 3, 'good', 8, '2020-09-18 01:21:34', 1),
(2909, 440, 8, 'Importance (Job)', 3, 'family commitment, father is a Coolie she is a elder sister', 8, '2020-09-18 01:21:34', 1),
(2910, 421, 8, 'Appearance', 3, 'okay', 8, '2020-09-18 01:33:04', 1),
(2911, 421, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-18 01:33:04', 1),
(2912, 421, 8, 'convincing Skills', 3, 'trying her best', 8, '2020-09-18 01:33:04', 1),
(2913, 421, 8, 'Importance (Job)', 3, 'father was late and mom doing house keeping', 8, '2020-09-18 01:33:04', 1),
(2914, 385, 14, 'Appearance', 1, 'not good ', 14, '2020-09-18 01:41:35', 1),
(2915, 385, 14, 'convincing Skills', 1, 'very poor', 14, '2020-09-18 01:41:35', 1),
(2916, 385, 14, 'Confidence Level', 2, 'less', 14, '2020-09-18 01:41:35', 1),
(2917, 469, 38, 'Appearance', 3, 'good', 38, '2020-09-18 02:29:23', 1),
(2918, 469, 38, 'Attitude', 2, 'good in listening', 38, '2020-09-18 02:29:23', 1),
(2919, 469, 38, 'Communication (Tamil)', 3, 'fluent kannada', 38, '2020-09-18 02:29:23', 1),
(2920, 469, 38, 'Communication (English)', 3, 'good in fluent', 38, '2020-09-18 02:29:23', 1),
(2921, 469, 38, 'Importance (Job)', 4, 'dad is paralyzed so he is the person who earning in his family', 38, '2020-09-18 02:29:23', 1),
(2922, 469, 38, 'Sustainability', 3, 'if salary okay for him means he will sustain', 38, '2020-09-18 02:29:23', 1),
(2923, 480, 38, 'Appearance', 1, 'behaving like something distrubed', 38, '2020-09-18 02:34:13', 1),
(2924, 480, 38, 'Attitude', 1, 'she is asking what is my salary before interview completion', 38, '2020-09-18 02:34:13', 1),
(2925, 480, 38, 'Communication (English)', 1, 'zero in english communication and listening', 38, '2020-09-18 02:34:13', 1),
(2926, 480, 38, 'Sustainability', 1, 'looking for loan selling field', 38, '2020-09-18 02:34:13', 1),
(2927, 475, 14, 'Communication (Tamil)', 2, 'pronunciation not good', 14, '2020-09-18 02:45:37', 1),
(2928, 475, 14, 'Confidence Level', 1, 'less ', 14, '2020-09-18 02:45:37', 1),
(2929, 408, 8, 'Appearance', 3, 'okay', 8, '2020-09-18 03:18:38', 1),
(2930, 408, 8, 'Pressure Handling', 2, 'will not handle pressure', 8, '2020-09-18 03:18:38', 1),
(2931, 408, 8, 'Sustainability', 2, 'not okay to work on target based job', 8, '2020-09-18 03:18:38', 1),
(2932, 481, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-18 03:37:52', 1),
(2933, 440, 13, 'convincing Skills', 2, 'poor', 13, '2020-09-18 03:38:21', 1),
(2934, 440, 13, 'Confidence Level', 2, 'less', 13, '2020-09-18 03:38:21', 1),
(2935, 440, 13, 'Pressure Handling', 1, 'Not suitable for pressure handling', 13, '2020-09-18 03:38:21', 1),
(2936, 439, 19, 'Communication (English)', 4, 'communication is good', 19, '2020-09-18 04:12:45', 1),
(2937, 439, 19, 'Convincing Skills', 4, 'ok', 19, '2020-09-18 04:12:45', 1),
(2938, 439, 19, 'Confidence Level', 4, 'ok', 19, '2020-09-18 04:12:45', 1),
(2939, 439, 19, 'Pressure Handling', 4, 'ok', 19, '2020-09-18 04:12:45', 1),
(2940, 439, 19, 'Sustainability', 1, 'need time to finalize', 19, '2020-09-18 04:12:45', 1),
(2941, 477, 27, 'attitude of the employee?', 4, 'she replied very polite.', 27, '2020-09-18 04:27:22', 1),
(2942, 477, 27, 'candidate have a real-time working experience?', 4, '5+ years experience', 27, '2020-09-18 04:27:22', 1),
(2943, 477, 27, 'Communication Skills?', 3, 'She speak english fluently but dont know tamil', 27, '2020-09-18 04:27:22', 1),
(2944, 477, 27, 'Having a good experience in client side,server side and database?', 3, 'she worked in all the platforms', 27, '2020-09-18 04:27:22', 1),
(2945, 477, 27, 'relevance experience with this technical spec.', 4, 'she worked 2 Projects in CI and 1 Project i Laravel', 27, '2020-09-18 04:27:22', 1),
(2946, 458, 21, 'Communication (Tamil)', 4, 'good comm', 21, '2020-09-18 06:40:27', 1),
(2947, 458, 21, 'Confidence Level', 4, 'ok sha have exp', 21, '2020-09-18 06:40:27', 1),
(2948, 458, 21, 'Importance (Job)', 4, 'father expired', 21, '2020-09-18 06:40:27', 1),
(2949, 458, 21, 'Sustainability', 4, 'min 2 yrs', 21, '2020-09-18 06:40:27', 1),
(2950, 421, 14, 'Appearance', 4, 'good', 14, '2020-09-19 10:56:46', 1),
(2951, 421, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-09-19 10:56:46', 1),
(2952, 421, 14, 'Confidence Level', 4, 'high', 14, '2020-09-19 10:56:46', 1),
(2953, 421, 14, 'Observation skills', 4, 'well good', 14, '2020-09-19 10:56:46', 1),
(2954, 486, 8, 'Appearance', 3, 'good', 8, '2020-09-19 11:06:02', 1),
(2955, 486, 8, 'Communication (English)', 3, 'his Pronunciation is not good. will not suite for calling. ', 8, '2020-09-19 11:06:02', 1),
(2956, 486, 8, 'patience', 3, 'yes', 8, '2020-09-19 11:06:02', 1),
(2957, 491, 8, 'Appearance', 3, 'okay', 8, '2020-09-19 12:29:32', 1),
(2958, 491, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-19 12:29:32', 1),
(2959, 491, 8, 'Confidence Level', 3, 'good', 8, '2020-09-19 12:29:32', 1),
(2960, 491, 8, 'Sales Experience', 3, '2.4 yrs in sales and marketing (ICICI)', 8, '2020-09-19 12:29:32', 1),
(2961, 491, 8, 'Existing Experience Analyze', 3, 'okay', 8, '2020-09-19 12:29:32', 1),
(2962, 491, 8, 'Willing To Work On Holidays', 3, 'he will', 8, '2020-09-19 12:29:32', 1),
(2963, 484, 8, 'Appearance', 3, 'okay', 8, '2020-09-19 12:44:50', 1),
(2964, 484, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-09-19 12:44:50', 1),
(2965, 484, 8, 'Convincing Skills', 3, 'good', 8, '2020-09-19 12:44:50', 1),
(2966, 484, 8, 'Observation Skills', 3, 'okay', 8, '2020-09-19 12:44:50', 1),
(2967, 484, 8, 'Existing Experience Analyze', 3, 'good', 8, '2020-09-19 12:44:50', 1),
(2968, 490, 8, 'Sustainability', 2, 'Doing His Degree And Looking For Part Time Job.', 8, '2020-09-19 01:05:15', 1),
(2969, 504, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-19 01:45:14', 1),
(2970, 501, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-19 01:54:30', 1),
(2971, 501, 8, 'convincing Skills', 3, 'good', 8, '2020-09-19 01:54:30', 1),
(2972, 501, 8, 'Importance (Job)', 3, 'no father she has to take care of her mom', 8, '2020-09-19 01:54:30', 1),
(2973, 471, 30, 'Appearance', 2, 'everything fine but he is wearing stud in both ears....he is saying its my culture', 30, '2020-09-19 02:07:18', 1),
(2974, 471, 30, 'Attitude', 3, 'good communication and understanding', 30, '2020-09-19 02:07:18', 1),
(2975, 471, 30, 'Communication (English)', 3, 'fluent english is good ', 30, '2020-09-19 02:07:18', 1),
(2976, 471, 30, 'Communication (Tamil)', 3, 'he is basically tamil but he know very well kannada', 30, '2020-09-19 02:07:18', 1),
(2977, 471, 30, 'Observation Skills', 3, 'good', 30, '2020-09-19 02:07:18', 1),
(2978, 471, 30, 'Sustainability', 3, 'job needed candidate', 30, '2020-09-19 02:07:18', 1),
(2979, 483, 21, 'Communication (Tamil)', 1, 'communication ok ,but no flow in words', 21, '2020-09-19 03:19:23', 1),
(2980, 483, 21, 'Confidence Level', 3, 'no confidence', 21, '2020-09-19 03:19:23', 1),
(2981, 483, 21, 'Pressure Handling', 1, 'he cant take pressure', 21, '2020-09-19 03:19:23', 1),
(2982, 504, 21, 'Appearance', 4, 'ok good', 21, '2020-09-19 03:22:52', 1),
(2983, 504, 21, 'Communication (Tamil)', 4, 'good communication ', 21, '2020-09-19 03:22:52', 1),
(2984, 504, 21, 'Confidence Level', 4, 'ok ,already he have 3 month sales exp ', 21, '2020-09-19 03:22:52', 1),
(2985, 504, 21, 'Importance (Job)', 4, 'father expired, mother only ', 21, '2020-09-19 03:22:52', 1),
(2986, 504, 21, 'patience', 4, 'ok', 21, '2020-09-19 03:22:52', 1),
(2987, 504, 21, 'Sustainability', 4, 'min 2-3 exp', 21, '2020-09-19 03:22:52', 1),
(2988, 488, 16, 'Sustainability', 1, 'Sustain doubt', 16, '2020-09-19 03:55:11', 1),
(2989, 510, 27, 'candidate have a real-time working experience?', 3, 'Having 10 Month Experience', 27, '2020-09-21 11:42:44', 1),
(2990, 510, 27, 'Is all the technical Requirements matched with this employee?', 4, 'he knows php ajax and CI Framework.', 27, '2020-09-21 11:42:44', 1),
(2991, 510, 27, 'relevance experience with this technical spec.', 4, 'he has a relevance tech spec.', 27, '2020-09-21 11:42:44', 1),
(2992, 474, 13, 'convincing Skills', 2, 'poor', 13, '2020-09-21 12:01:31', 1),
(2993, 474, 13, 'Pressure Handling', 1, 'less', 13, '2020-09-21 12:01:31', 1),
(2994, 236, 22, 'Sustainability', 1, 'bond not Interested..  ', 22, '2020-09-21 01:15:21', 1),
(2995, 539, 44, 'Communication (English)', 4, 'given clarity presentation in good manner ', 44, '2020-09-21 01:34:12', 1),
(2996, 539, 44, 'Confidence Level', 4, 'good in self confident ', 44, '2020-09-21 01:34:12', 1),
(2997, 539, 44, 'Sales Experience', 2, 'He donxquott have much field experience ', 44, '2020-09-21 01:34:12', 1),
(2998, 539, 44, 'Practical Challenges Outcome', 4, 'He is willing to do sales , in Previews company he was done a cross sell for life Business ', 44, '2020-09-21 01:34:12', 1),
(2999, 510, 26, 'attitude of the employee?', 3, 'good', 26, '2020-09-21 01:47:09', 1),
(3000, 510, 26, 'candidate have a real-time working experience?', 3, 'yes he is Having  6 month exp.', 26, '2020-09-21 01:47:09', 1),
(3001, 510, 26, 'Communication Skills?', 2, 'manageable', 26, '2020-09-21 01:47:09', 1),
(3002, 510, 26, 'Having a good experience in client side,server side and database?', 3, 'good', 26, '2020-09-21 01:47:09', 1),
(3003, 543, 36, 'Appearance', 4, 'ok', 36, '2020-09-21 02:26:19', 1),
(3004, 543, 36, 'Attitude', 3, 'Fine', 36, '2020-09-21 02:26:19', 1),
(3005, 543, 36, 'Communication (English)', 4, 'Fine', 36, '2020-09-21 02:26:19', 1),
(3006, 543, 36, 'Communication (Tamil)', 4, 'Fine', 36, '2020-09-21 02:26:19', 1),
(3007, 543, 36, 'Convincing Skills', 3, 'Fine', 36, '2020-09-21 02:26:19', 1),
(3008, 543, 36, 'Confidence Level', 4, 'Fine', 36, '2020-09-21 02:26:19', 1),
(3009, 543, 36, 'Importance Of Job', 3, 'Ok', 36, '2020-09-21 02:26:19', 1),
(3010, 543, 36, 'Observation Skills', 2, 'Fine', 36, '2020-09-21 02:26:19', 1),
(3011, 543, 36, 'Pressure Handling', 2, 'Lets check', 36, '2020-09-21 02:26:19', 1),
(3012, 543, 36, 'patience', 3, 'Need to check', 36, '2020-09-21 02:26:19', 1),
(3013, 543, 36, 'Sustainability', 3, 'Need to check', 36, '2020-09-21 02:26:19', 1),
(3014, 543, 36, 'Sales Experience', 2, 'No', 36, '2020-09-21 02:26:19', 1),
(3015, 543, 36, 'Existing Experience Analyze', 4, 'Good', 36, '2020-09-21 02:26:19', 1),
(3016, 543, 36, 'Practical Challenges Outcome', 3, 'Average', 36, '2020-09-21 02:26:19', 1),
(3017, 543, 36, 'Willing To Work On Holidays', 2, 'No', 36, '2020-09-21 02:26:19', 1),
(3018, 516, 14, 'Communication (Tamil)', 2, 'NOT GOOD', 14, '2020-09-21 02:33:26', 1),
(3019, 516, 14, 'convincing Skills', 1, 'very less', 14, '2020-09-21 02:33:26', 1),
(3020, 516, 14, 'Confidence Level', 1, 'less', 14, '2020-09-21 02:33:26', 1),
(3021, 516, 14, 'Pressure Handling', 1, 'very less', 14, '2020-09-21 02:33:26', 1),
(3022, 323, 24, 'Communication (Tamil)', 1, 'local', 24, '2020-09-21 02:37:28', 1),
(3023, 536, 33, 'Communication (English)', 1, 'not good', 33, '2020-09-21 02:48:41', 1),
(3024, 536, 33, 'Communication (Tamil)', 1, 'not good', 33, '2020-09-21 02:48:41', 1),
(3025, 536, 33, 'Convincing Skills', 1, 'not good candidate facing stammering issue', 33, '2020-09-21 02:48:41', 1),
(3026, 510, 8, 'attitude of the employee?', 3, 'okay', 8, '2020-09-21 04:50:56', 1),
(3027, 540, 39, 'Appearance', 3, 'dress code  and  way he carries himself and respect for interviewer', 39, '2020-09-21 04:51:34', 1),
(3028, 540, 39, 'Attitude', 3, 'Carrying Positive attitude with the knowledge the field   he had a experience', 39, '2020-09-21 04:51:34', 1),
(3029, 540, 39, 'Communication (English)', 3, 'voice clear and good at convey what he wants deliver', 39, '2020-09-21 04:51:34', 1),
(3030, 540, 39, 'Observation Skills', 3, 'he listen and  the question asked and the eye contact was good', 39, '2020-09-21 04:51:34', 1),
(3031, 500, 8, 'Observation Skills', 2, 'Nil', 8, '2020-09-21 04:52:44', 1),
(3032, 500, 8, 'Sustainability', 2, 'currently she is staying with her cousin bro. her native is kanyakumari. time being looking for job.', 8, '2020-09-21 04:52:44', 1),
(3033, 555, 14, 'Communication (Tamil)', 3, 'okay ', 14, '2020-09-21 04:59:34', 1),
(3034, 555, 14, 'Communication (Tamil)', 3, 'okay', 14, '2020-09-21 05:02:01', 1),
(3035, 555, 14, 'Communication (English)', 2, 'okay', 14, '2020-09-21 05:02:01', 1),
(3036, 555, 14, 'Importance (Job)', 4, 'need job for family background', 14, '2020-09-21 05:02:01', 1),
(3037, 545, 14, 'Communication (Tamil)', 2, 'okay ', 14, '2020-09-21 05:07:19', 1),
(3038, 545, 14, 'Sustainability', 1, 'planned for higher studies . doubt for sustain ', 14, '2020-09-21 05:07:19', 1),
(3039, 554, 14, 'Appearance', 4, 'good', 14, '2020-09-21 05:15:42', 1),
(3040, 554, 14, 'Communication (Tamil)', 4, 'well good', 14, '2020-09-21 05:15:42', 1),
(3041, 554, 14, 'Communication (English)', 3, 'good', 14, '2020-09-21 05:15:42', 1),
(3042, 554, 14, 'convincing Skills', 4, 'good', 14, '2020-09-21 05:15:42', 1),
(3043, 554, 13, 'Attitude', 4, 'good', 13, '2020-09-21 05:18:53', 1),
(3044, 554, 13, 'Communication (English)', 4, 'good', 13, '2020-09-21 05:18:53', 1),
(3045, 554, 13, 'Confidence Level', 4, 'high', 13, '2020-09-21 05:18:53', 1),
(3046, 555, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-09-21 05:20:19', 1),
(3047, 555, 13, 'Importance (Job)', 4, 'job needed', 13, '2020-09-21 05:20:19', 1),
(3048, 539, 29, 'Communication (English)', 3, 'good', 29, '2020-09-21 05:20:20', 1),
(3049, 539, 29, 'Convincing Skills', 3, 'good at convincing', 29, '2020-09-21 05:20:20', 1),
(3050, 539, 29, 'Confidence Level', 3, 'will able to perform well in longer term', 29, '2020-09-21 05:20:20', 1),
(3051, 539, 29, 'Existing Experience Analyze', 3, 'has done well in Existing job profile', 29, '2020-09-21 05:20:20', 1),
(3052, 539, 29, 'Practical Challenges Outcome', 2, 'need to analysis and check on  practical outcome, earlier company was able to do well', 29, '2020-09-21 05:20:20', 1),
(3053, 545, 14, 'Communication (Tamil)', 2, 'okay', 14, '2020-09-21 05:26:50', 1),
(3054, 545, 14, 'convincing Skills', 1, 'not good', 14, '2020-09-21 05:26:50', 1),
(3055, 545, 14, 'Confidence Level', 2, 'less', 14, '2020-09-21 05:26:50', 1),
(3056, 521, 21, 'Communication (Tamil)', 2, 'pronuncation  problem', 21, '2020-09-21 05:51:31', 1),
(3057, 521, 21, 'Pressure Handling', 1, 'not able to take preesure ', 21, '2020-09-21 05:51:31', 1),
(3058, 534, 31, 'Appearance', 4, 'nEAT', 31, '2020-09-21 06:44:57', 1),
(3059, 534, 31, 'Communication (English)', 4, 'Good in language', 31, '2020-09-21 06:44:57', 1),
(3060, 534, 31, 'Convincing Skills', 4, 'capable to convince', 31, '2020-09-21 06:44:57', 1),
(3061, 534, 29, 'Attitude', 3, 'Positive to work hard', 29, '2020-09-21 06:50:57', 1),
(3062, 534, 29, 'Communication (English)', 3, 'good', 29, '2020-09-21 06:50:57', 1),
(3063, 534, 29, 'Convincing Skills', 4, 'Good at convincing', 29, '2020-09-21 06:50:57', 1),
(3064, 534, 29, 'Confidence Level', 4, 'good', 29, '2020-09-21 06:50:57', 1),
(3065, 534, 29, 'Sales Experience', 4, 'Sales experience with different sector can do well with us', 29, '2020-09-21 06:50:57', 1),
(3066, 534, 29, 'Practical Challenges Outcome', 3, 'have proved in past work', 29, '2020-09-21 06:50:57', 1),
(3067, 540, 30, 'Appearance', 3, 'Dress code good', 30, '2020-09-21 07:09:03', 1),
(3068, 540, 30, 'Communication (English)', 3, 'communication also good', 30, '2020-09-21 07:09:03', 1),
(3069, 540, 30, 'Sales Experience', 3, 'insurance experience 7 months xxamp total Experience 5 yrs', 30, '2020-09-21 07:09:03', 1),
(3070, 540, 30, 'Willing To Work On Holidays', 3, 'yes', 30, '2020-09-21 07:09:03', 1),
(3071, 484, 51, 'Appearance', 3, 'his apperance is good', 51, '2020-09-22 10:08:48', 1),
(3072, 484, 51, 'Communication (English)', 1, 'his comminication in english is poor', 51, '2020-09-22 10:08:48', 1),
(3073, 484, 51, 'Communication (Tamil)', 3, 'his communication in tamil is normal', 51, '2020-09-22 10:08:48', 1),
(3074, 484, 51, 'Convincing Skills', 2, 'his convicing skills in sales is poor', 51, '2020-09-22 10:08:48', 1),
(3075, 484, 51, 'Importance Of Job', 2, 'he knowss the importance of this job', 51, '2020-09-22 10:08:48', 1),
(3076, 491, 51, 'Appearance', 3, 'his apperance is good ', 51, '2020-09-22 10:13:00', 1),
(3077, 491, 51, 'Communication (English)', 1, 'comminication in english is poor', 51, '2020-09-22 10:13:00', 1),
(3078, 491, 51, 'Communication (Tamil)', 3, 'comuunication in tamil is normal', 51, '2020-09-22 10:13:00', 1),
(3079, 491, 51, 'Convincing Skills', 1, 'convicing skills are poor', 51, '2020-09-22 10:13:00', 1),
(3080, 491, 51, 'Sales Experience', 2, 'he as sales experince but he cant able to say any products', 51, '2020-09-22 10:13:00', 1),
(3081, 565, 33, 'Appearance', 3, 'GOOD', 33, '2020-09-22 11:12:41', 1),
(3082, 565, 33, 'Attitude', 3, 'GOOD', 33, '2020-09-22 11:12:41', 1),
(3083, 565, 33, 'Communication (English)', 2, 'AVERAGE BUT HE MANAGE', 33, '2020-09-22 11:12:41', 1),
(3084, 565, 33, 'Communication (Tamil)', 4, 'SPEAKS GOOD', 33, '2020-09-22 11:12:41', 1),
(3085, 565, 33, 'Sales Experience', 1, 'EXPERIENCE IN TELECALLING CUSTOMER SUPPORT  NOT FIELD WORK', 33, '2020-09-22 11:12:41', 1),
(3086, 568, 44, 'Importance Of Job', 1, 'Running own provisional store', 44, '2020-09-22 11:41:06', 1),
(3087, 568, 44, 'Pressure Handling', 1, 'because of pressure he Resigned his Previous Company  ', 44, '2020-09-22 11:41:06', 1),
(3088, 568, 44, 'Sales Experience', 1, 'He Is Not Fit For Sales', 44, '2020-09-22 11:41:06', 1),
(3089, 533, 27, 'candidate have a real-time working experience?', 2, 'He is having experience. but not relevant to our requirements.', 27, '2020-09-22 12:13:31', 1),
(3090, 533, 27, 'Is all the technical Requirements matched with this employee?', 2, 'No.  All The Technical Requirements Not Matched With This Employee', 27, '2020-09-22 12:13:31', 1),
(3091, 533, 27, 'looking for a job change for career growth or salary growth?', 2, 'salary growth', 27, '2020-09-22 12:13:31', 1),
(3092, 544, 14, 'convincing Skills', 1, 'poor', 14, '2020-09-22 01:26:13', 1),
(3093, 544, 14, 'Confidence Level', 1, 'very less', 14, '2020-09-22 01:26:13', 1),
(3094, 544, 14, 'Importance (Job)', 1, 'less', 14, '2020-09-22 01:26:13', 1),
(3095, 456, 14, 'Attitude', 1, 'Not okay', 14, '2020-09-22 01:32:09', 1),
(3096, 456, 14, 'convincing Skills', 1, 'bad', 14, '2020-09-22 01:32:09', 1),
(3097, 456, 14, 'Confidence Level', 1, 'less', 14, '2020-09-22 01:32:09', 1),
(3098, 545, 14, 'Attitude', 1, 'bad', 14, '2020-09-22 01:34:16', 1),
(3099, 545, 14, 'convincing Skills', 1, 'less', 14, '2020-09-22 01:34:16', 1),
(3100, 545, 14, 'Confidence Level', 1, 'less', 14, '2020-09-22 01:34:16', 1),
(3101, 545, 14, 'Sustainability', 1, 'less ', 14, '2020-09-22 01:34:16', 1),
(3102, 546, 14, 'Communication (Tamil)', 1, 'pronunciation poor', 14, '2020-09-22 01:35:24', 1),
(3103, 546, 14, 'convincing Skills', 1, 'less', 14, '2020-09-22 01:35:24', 1),
(3104, 546, 14, 'Confidence Level', 1, 'less', 14, '2020-09-22 01:35:24', 1),
(3105, 550, 21, 'Appearance', 4, 'ok', 21, '2020-09-22 02:37:05', 1),
(3106, 550, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-09-22 02:37:05', 1),
(3107, 550, 21, 'Sustainability', 1, 'not sustain long term..', 21, '2020-09-22 02:37:05', 1),
(3108, 478, 8, 'Appearance', 3, 'okay', 8, '2020-09-22 03:02:19', 1),
(3109, 478, 8, 'Communication (English)', 3, 'Managable', 8, '2020-09-22 03:02:19', 1),
(3110, 478, 8, 'Communication (Tamil)', 3, 'good but has his native slang', 8, '2020-09-22 03:02:19', 1),
(3111, 478, 8, 'Convincing Skills', 4, 'good, on spot he started convincing', 8, '2020-09-22 03:02:19', 1),
(3112, 540, 8, 'Communication (English)', 3, 'good', 8, '2020-09-22 05:04:56', 1),
(3113, 540, 8, 'Convincing Skills', 3, 'okay', 8, '2020-09-22 05:04:56', 1),
(3114, 530, 33, 'Appearance', 1, 'NOT WEAR FORMALS ', 33, '2020-09-22 06:16:48', 1),
(3115, 530, 33, 'Communication (English)', 1, 'NOT GOOD ', 33, '2020-09-22 06:16:48', 1),
(3116, 530, 33, 'Communication (Tamil)', 2, 'TALKING VERY SLOW', 33, '2020-09-22 06:16:48', 1),
(3117, 530, 33, 'Convincing Skills', 2, 'AVERAGE', 33, '2020-09-22 06:16:48', 1),
(3118, 530, 33, 'Sales Experience', 1, 'NO SALES EXPERIENCE', 33, '2020-09-22 06:16:48', 1),
(3119, 566, 31, 'Appearance', 4, 'Neat', 31, '2020-09-22 06:50:03', 1),
(3120, 566, 31, 'Communication (English)', 5, 'Good', 31, '2020-09-22 06:50:03', 1),
(3121, 566, 31, 'Communication (Tamil)', 5, 'Good', 31, '2020-09-22 06:50:03', 1),
(3122, 566, 29, 'Communication (English)', 3, 'good', 29, '2020-09-22 06:53:11', 1),
(3123, 566, 29, 'Convincing Skills', 3, 'can Do better with training', 29, '2020-09-22 06:53:11', 1),
(3124, 566, 29, 'Confidence Level', 3, 'good', 29, '2020-09-22 06:53:11', 1),
(3125, 566, 29, 'patience', 3, 'good', 29, '2020-09-22 06:53:11', 1),
(3126, 583, 34, 'Appearance', 3, 'good', 34, '2020-09-23 11:25:35', 1),
(3127, 583, 34, 'Attitude', 4, 'attitude is good', 34, '2020-09-23 11:25:35', 1),
(3128, 583, 34, 'Communication (English)', 3, 'average', 34, '2020-09-23 11:25:35', 1),
(3129, 583, 34, 'Communication (Tamil)', 4, 'good', 34, '2020-09-23 11:25:35', 1),
(3130, 583, 34, 'Convincing Skills', 3, 'good', 34, '2020-09-23 11:25:35', 1),
(3131, 583, 34, 'Confidence Level', 4, 'good', 34, '2020-09-23 11:25:35', 1),
(3132, 583, 34, 'Importance Of Job', 5, 'he needs a job imm', 34, '2020-09-23 11:25:35', 1),
(3133, 583, 34, 'Observation Skills', 4, 'good observation skill', 34, '2020-09-23 11:25:35', 1),
(3134, 583, 34, 'Pressure Handling', 4, 'He Will Handle The Pressure', 34, '2020-09-23 11:25:35', 1),
(3135, 583, 34, 'patience', 4, 'good', 34, '2020-09-23 11:25:35', 1),
(3136, 583, 34, 'Sustainability', 4, 'he will sustain', 34, '2020-09-23 11:25:35', 1),
(3137, 583, 34, 'Sales Experience', 2, 'average', 34, '2020-09-23 11:25:35', 1),
(3138, 583, 34, 'Existing Experience Analyze', 4, 'good', 34, '2020-09-23 11:25:35', 1),
(3139, 583, 34, 'Practical Challenges Outcome', 4, 'good', 34, '2020-09-23 11:25:35', 1),
(3140, 583, 34, 'Willing To Work On Holidays', 5, 'he is ready o work in holidays', 34, '2020-09-23 11:25:35', 1),
(3141, 582, 38, 'Appearance', 2, 'not bad', 38, '2020-09-23 02:53:48', 1),
(3142, 582, 38, 'Communication (Tamil)', 3, 'good in kannada', 38, '2020-09-23 02:53:48', 1),
(3143, 582, 38, 'Communication (English)', 3, 'good in fluent english', 38, '2020-09-23 02:53:48', 1),
(3144, 582, 38, 'Importance (Job)', 1, 'looking high package and also not interested in RM profile', 38, '2020-09-23 02:53:48', 1),
(3145, 582, 38, 'Sustainability', 1, 'he will not sustain', 38, '2020-09-23 02:53:48', 1),
(3146, 589, 38, 'Attitude', 1, 'he is not fit for our filed', 38, '2020-09-23 02:58:26', 1),
(3147, 589, 38, 'Communication (English)', 2, 'manageable', 38, '2020-09-23 02:58:26', 1),
(3148, 589, 38, 'Importance (Job)', 1, 'i ask to wait for next round but is not available', 38, '2020-09-23 02:58:26', 1),
(3149, 589, 38, 'patience', 1, 'worst in patience ', 38, '2020-09-23 02:58:26', 1),
(3150, 589, 38, 'Sustainability', 1, 'he is not ready to work in our field', 38, '2020-09-23 02:58:26', 1),
(3151, 592, 38, 'Appearance', 3, 'good', 38, '2020-09-23 03:02:17', 1),
(3152, 592, 38, 'Attitude', 3, 'good in communication xxamp understanding', 38, '2020-09-23 03:02:17', 1),
(3153, 592, 38, 'Communication (Tamil)', 3, 'fluent kannada', 38, '2020-09-23 03:02:17', 1),
(3154, 592, 38, 'Communication (English)', 3, 'good in english communication', 38, '2020-09-23 03:02:17', 1),
(3155, 592, 38, 'Observation skills', 3, 'Average but not bad', 38, '2020-09-23 03:02:17', 1),
(3156, 592, 38, 'Sustainability', 3, 'she will sustain if salary okay means', 38, '2020-09-23 03:02:17', 1),
(3157, 596, 38, 'Appearance', 2, 'she is loose talker', 38, '2020-09-23 03:04:26', 1),
(3158, 596, 38, 'Attitude', 1, 'over attitude', 38, '2020-09-23 03:04:26', 1),
(3159, 596, 38, 'Communication (English)', 1, 'bad in english', 38, '2020-09-23 03:04:26', 1),
(3160, 596, 38, 'Importance (Job)', 3, 'job needed', 38, '2020-09-23 03:04:26', 1),
(3161, 596, 38, 'Sustainability', 2, '15k salary okay means she will sustain', 38, '2020-09-23 03:04:26', 1),
(3162, 575, 14, 'Communication (Tamil)', 2, 'okay', 14, '2020-09-23 03:54:46', 1),
(3163, 575, 14, 'convincing Skills', 1, 'less', 14, '2020-09-23 03:54:46', 1),
(3164, 575, 14, 'Confidence Level', 1, 'very less', 14, '2020-09-23 03:54:46', 1),
(3165, 591, 36, 'Appearance', 4, 'k', 36, '2020-09-23 06:23:57', 1),
(3166, 591, 36, 'Attitude', 4, 'k', 36, '2020-09-23 06:23:57', 1),
(3167, 591, 36, 'Communication (English)', 4, 'k', 36, '2020-09-23 06:23:57', 1),
(3168, 591, 36, 'Communication (Tamil)', 4, 'k', 36, '2020-09-23 06:23:57', 1),
(3169, 591, 36, 'Convincing Skills', 4, 'k', 36, '2020-09-23 06:23:57', 1),
(3170, 591, 36, 'Confidence Level', 4, 'k', 36, '2020-09-23 06:23:57', 1),
(3171, 591, 36, 'Importance Of Job', 4, 'k', 36, '2020-09-23 06:23:57', 1),
(3172, 591, 36, 'Observation Skills', 4, 'k', 36, '2020-09-23 06:23:57', 1),
(3173, 591, 36, 'Pressure Handling', 3, 'k', 36, '2020-09-23 06:23:57', 1),
(3174, 591, 36, 'patience', 3, 'k', 36, '2020-09-23 06:23:57', 1),
(3175, 591, 36, 'Sustainability', 4, 'k', 36, '2020-09-23 06:23:57', 1),
(3176, 591, 36, 'Sales Experience', 2, 'Not relevant experience  but he is intrested to work with us', 36, '2020-09-23 06:23:57', 1),
(3177, 591, 36, 'Existing Experience Analyze', 3, 'k', 36, '2020-09-23 06:23:57', 1),
(3178, 591, 36, 'Practical Challenges Outcome', 4, 'k', 36, '2020-09-23 06:23:57', 1),
(3179, 591, 36, 'Willing To Work On Holidays', 4, 'k', 36, '2020-09-23 06:23:57', 1),
(3180, 604, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-09-24 12:50:53', 1),
(3181, 604, 21, 'Pressure Handling', 1, 'he is not able to take pressure', 21, '2020-09-24 12:50:53', 1),
(3182, 604, 21, 'Sustainability', 1, 'not sustain long term', 21, '2020-09-24 12:50:53', 1),
(3183, 590, 21, 'Communication (Tamil)', 4, 'ok', 21, '2020-09-24 12:51:46', 1),
(3184, 590, 21, 'Communication (English)', 1, 'pronouncation problem', 21, '2020-09-24 12:51:46', 1),
(3185, 598, 21, 'Appearance', 4, 'ok ', 21, '2020-09-24 12:53:49', 1),
(3186, 598, 21, 'Attitude', 4, 'ok', 21, '2020-09-24 12:53:49', 1),
(3187, 598, 21, 'Communication (Tamil)', 4, 'good comm', 21, '2020-09-24 12:53:49', 1),
(3188, 598, 21, 'Confidence Level', 1, 'no', 21, '2020-09-24 12:53:49', 1),
(3189, 598, 21, 'Sustainability', 1, 'she is interested in IT field ...', 21, '2020-09-24 12:53:49', 1),
(3190, 606, 8, 'Appearance', 3, 'okay', 8, '2020-09-24 07:19:36', 1),
(3191, 606, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-09-24 07:19:36', 1),
(3192, 606, 8, 'convincing Skills', 3, 'good', 8, '2020-09-24 07:19:36', 1),
(3193, 612, 51, 'Appearance', 3, 'her appearnce is nt good', 51, '2020-09-25 10:04:51', 1),
(3194, 612, 51, 'Communication (English)', 2, 'her communication in english is poor', 51, '2020-09-25 10:04:51', 1),
(3195, 612, 51, 'Communication (Tamil)', 3, 'Her Communication In tamil Is good', 51, '2020-09-25 10:04:51', 1),
(3196, 612, 51, 'Convincing Skills', 2, 'her convincing skills is low.....', 51, '2020-09-25 10:04:51', 1),
(3197, 612, 51, 'Willing To Work On Holidays', 1, 'she is not willing to wrk on holidays', 51, '2020-09-25 10:04:51', 1),
(3198, 615, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-09-25 11:56:56', 1),
(3199, 615, 14, 'convincing Skills', 1, 'less', 14, '2020-09-25 11:56:56', 1),
(3200, 615, 14, 'Confidence Level', 1, 'less', 14, '2020-09-25 11:56:56', 1),
(3201, 567, 17, 'Appearance', 3, 'good', 17, '2020-09-25 12:03:44', 1),
(3202, 567, 17, 'Attitude', 3, 'good', 17, '2020-09-25 12:03:44', 1),
(3203, 567, 17, 'Communication (English)', 3, 'good', 17, '2020-09-25 12:03:44', 1),
(3204, 567, 17, 'Communication (Tamil)', 3, 'good', 17, '2020-09-25 12:03:44', 1),
(3205, 567, 17, 'Convincing Skills', 4, 'good', 17, '2020-09-25 12:03:44', 1),
(3206, 567, 17, 'Confidence Level', 3, 'okay', 17, '2020-09-25 12:03:44', 1),
(3207, 567, 17, 'Existing Experience Analyze', 3, 'already worked  star health ', 17, '2020-09-25 12:03:44', 1),
(3208, 567, 17, 'Importance Of Job', 3, 'finance need ', 17, '2020-09-25 12:03:44', 1),
(3209, 567, 17, 'Observation Skills', 3, 'okay', 17, '2020-09-25 12:03:44', 1),
(3210, 567, 17, 'patience', 3, 'good', 17, '2020-09-25 12:03:44', 1),
(3211, 567, 17, 'Pressure Handling', 4, 'okay', 17, '2020-09-25 12:03:44', 1),
(3212, 567, 17, 'Practical Challenges Outcome', 3, 'okay', 17, '2020-09-25 12:03:44', 1),
(3213, 567, 17, 'Sustainability', 4, 'He will sustain', 17, '2020-09-25 12:03:44', 1),
(3214, 567, 17, 'Sales Experience', 3, 'in door work ', 17, '2020-09-25 12:03:44', 1),
(3215, 567, 17, 'Willing To Work On Holidays', 4, 'yes', 17, '2020-09-25 12:03:44', 1),
(3216, 616, 14, 'convincing Skills', 1, 'less', 14, '2020-09-25 12:05:58', 1),
(3217, 616, 14, 'Confidence Level', 1, 'less', 14, '2020-09-25 12:05:58', 1),
(3218, 616, 14, 'Observation skills', 1, 'not understand anything about sales ', 14, '2020-09-25 12:05:58', 1),
(3219, 614, 21, 'Communication (Tamil)', 1, 'he  know malayalam only', 21, '2020-09-25 01:07:50', 1),
(3220, 619, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-09-25 01:11:44', 1),
(3221, 619, 21, 'Confidence Level', 4, 'ok ', 21, '2020-09-25 01:11:44', 1),
(3222, 619, 21, 'Sustainability', 3, 'min 1.5 yrs', 21, '2020-09-25 01:11:44', 1),
(3223, 156, 19, 'Pressure Handling', 1, 'no', 19, '2020-09-25 01:35:58', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(3224, 156, 19, 'Sustainability', 1, 'no fit for sales', 19, '2020-09-25 01:35:58', 1),
(3225, 623, 8, 'Appearance', 3, 'okay', 8, '2020-09-25 02:16:15', 1),
(3226, 623, 8, 'Importance (Job)', 3, 'yes', 8, '2020-09-25 02:16:15', 1),
(3227, 478, 19, 'Sustainability', 1, 'not ok with Bond', 19, '2020-09-25 02:29:03', 1),
(3228, 478, 19, 'Sales Experience', 1, 'no sales exp', 19, '2020-09-25 02:29:03', 1),
(3229, 621, 38, 'Attitude', 2, 'Average in understanding skill', 38, '2020-09-25 03:47:05', 1),
(3230, 621, 38, 'Communication (Tamil)', 1, 'he donxquott know kannada ', 38, '2020-09-25 03:47:05', 1),
(3231, 621, 38, 'Communication (English)', 2, 'manageable', 38, '2020-09-25 03:47:05', 1),
(3232, 628, 38, 'Appearance', 2, 'too aged', 38, '2020-09-25 03:50:15', 1),
(3233, 628, 38, 'Attitude', 2, 'he is Very matured....will not suit for CRM ', 38, '2020-09-25 03:50:15', 1),
(3234, 628, 38, 'Communication (Tamil)', 1, 'he know basic kannada only', 38, '2020-09-25 03:50:15', 1),
(3235, 628, 38, 'Communication (English)', 3, 'Not bad ', 38, '2020-09-25 03:50:15', 1),
(3236, 640, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-09-26 10:39:57', 1),
(3237, 640, 13, 'convincing Skills', 3, 'less', 13, '2020-09-26 10:39:57', 1),
(3238, 636, 13, 'Pressure Handling', 2, 'poor', 13, '2020-09-26 11:49:25', 1),
(3239, 636, 13, 'Sustainability', 2, 'less', 13, '2020-09-26 11:49:25', 1),
(3240, 654, 14, 'convincing Skills', 1, 'very low', 14, '2020-09-26 03:37:22', 1),
(3241, 654, 14, 'Observation skills', 1, 'not good for understanding', 14, '2020-09-26 03:37:22', 1),
(3242, 645, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-09-26 03:38:43', 1),
(3243, 645, 14, 'convincing Skills', 1, 'less', 14, '2020-09-26 03:38:43', 1),
(3244, 645, 14, 'Confidence Level', 1, 'very low', 14, '2020-09-26 03:38:43', 1),
(3245, 634, 14, 'Communication (Tamil)', 1, 'bad', 14, '2020-09-26 03:50:04', 1),
(3246, 634, 14, 'convincing Skills', 1, 'less', 14, '2020-09-26 03:50:04', 1),
(3247, 634, 14, 'Confidence Level', 1, 'less', 14, '2020-09-26 03:50:04', 1),
(3248, 648, 14, 'convincing Skills', 1, 'less', 14, '2020-09-26 03:51:10', 1),
(3249, 648, 14, 'Confidence Level', 1, 'poor', 14, '2020-09-26 03:51:10', 1),
(3250, 648, 14, 'Observation skills', 1, 'less understand capacity not good', 14, '2020-09-26 03:51:10', 1),
(3251, 638, 21, 'Communication (Tamil)', 4, 'ok good ', 21, '2020-09-26 03:57:57', 1),
(3252, 638, 21, 'Sustainability', 1, 'expecting high salary above 15 k , he dont have voice exp.....', 21, '2020-09-26 03:57:57', 1),
(3253, 652, 21, 'Appearance', 4, 'ok', 21, '2020-09-26 04:00:34', 1),
(3254, 652, 21, 'Communication (Tamil)', 4, 'ok good communication ', 21, '2020-09-26 04:00:34', 1),
(3255, 652, 21, 'Pressure Handling', 1, 'not bold', 21, '2020-09-26 04:00:34', 1),
(3256, 652, 21, 'Sustainability', 1, 'long distance (perungaluthur)', 21, '2020-09-26 04:00:34', 1),
(3257, 647, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-09-26 04:03:23', 1),
(3258, 647, 21, 'Observation skills', 3, 'ok not bad', 21, '2020-09-26 04:03:23', 1),
(3259, 647, 21, 'Sustainability', 1, 'not sustain long term  becz she ill come with friends only', 21, '2020-09-26 04:03:23', 1),
(3260, 633, 21, 'Appearance', 4, 'ok good ', 21, '2020-09-26 04:08:16', 1),
(3261, 633, 21, 'Confidence Level', 1, 'not bold', 21, '2020-09-26 04:08:16', 1),
(3262, 633, 21, 'Pressure Handling', 1, 'she  cant  take pressure ', 21, '2020-09-26 04:08:16', 1),
(3263, 633, 21, 'Sustainability', 1, 'not sustain long term , she i il come only with friends....', 21, '2020-09-26 04:08:16', 1),
(3264, 231, 21, 'Communication (Tamil)', 4, 'ok', 21, '2020-09-28 09:51:00', 1),
(3265, 120, 18, 'Appearance', 3, 'Good', 18, '2020-09-28 11:10:28', 1),
(3266, 120, 18, 'Attitude', 3, 'Good', 18, '2020-09-28 11:10:28', 1),
(3267, 120, 18, 'Communication (English)', 4, 'Good', 18, '2020-09-28 11:10:28', 1),
(3268, 120, 18, 'Communication (Tamil)', 4, 'Good', 18, '2020-09-28 11:10:28', 1),
(3269, 120, 18, 'Convincing Skills', 4, 'Good', 18, '2020-09-28 11:10:28', 1),
(3270, 120, 18, 'Confidence Level', 4, 'Good', 18, '2020-09-28 11:10:28', 1),
(3271, 120, 18, 'Existing Experience Analyze', 3, 'Good', 18, '2020-09-28 11:10:28', 1),
(3272, 120, 18, 'Importance Of Job', 2, 'Not much as he is also doing side business', 18, '2020-09-28 11:10:28', 1),
(3273, 120, 18, 'Observation Skills', 4, 'Good', 18, '2020-09-28 11:10:28', 1),
(3274, 120, 18, 'patience', 3, 'Nominal', 18, '2020-09-28 11:10:28', 1),
(3275, 120, 18, 'Pressure Handling', 4, 'Ok', 18, '2020-09-28 11:10:28', 1),
(3276, 120, 18, 'Practical Challenges Outcome', 3, 'Good', 18, '2020-09-28 11:10:28', 1),
(3277, 120, 18, 'Sustainability', 3, 'Need double check', 18, '2020-09-28 11:10:28', 1),
(3278, 120, 18, 'Sales Experience', 4, 'good', 18, '2020-09-28 11:10:28', 1),
(3279, 120, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2020-09-28 11:10:28', 1),
(3280, 641, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-09-28 11:18:06', 1),
(3281, 641, 13, 'Pressure Handling', 2, 'less', 13, '2020-09-28 11:18:06', 1),
(3282, 663, 21, 'Appearance', 4, 'ok', 21, '2020-09-28 11:25:57', 1),
(3283, 663, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-09-28 11:25:57', 1),
(3284, 663, 21, 'Confidence Level', 4, 'ok', 21, '2020-09-28 11:25:57', 1),
(3285, 663, 21, 'Observation skills', 4, 'ok good', 21, '2020-09-28 11:25:57', 1),
(3286, 663, 21, 'Sustainability', 3, 'min 1 yr above', 21, '2020-09-28 11:25:57', 1),
(3287, 674, 19, 'Communication (English)', 1, 'not good', 19, '2020-09-28 01:05:11', 1),
(3288, 674, 19, 'Convincing Skills', 1, 'zero', 19, '2020-09-28 01:05:11', 1),
(3289, 674, 19, 'Sustainability', 1, 'not fit for sales', 19, '2020-09-28 01:05:11', 1),
(3290, 666, 40, 'Appearance', 4, 'Looks Professional', 40, '2020-09-28 01:06:21', 1),
(3291, 666, 40, 'Attitude', 4, 'Seems professional', 40, '2020-09-28 01:06:21', 1),
(3292, 666, 40, 'Communication (English)', 3, 'Not good in communication', 40, '2020-09-28 01:06:21', 1),
(3293, 666, 40, 'Communication (Tamil)', 5, 'Excellent in local language', 40, '2020-09-28 01:06:21', 1),
(3294, 666, 40, 'Convincing Skills', 4, 'Convinced with approach', 40, '2020-09-28 01:06:21', 1),
(3295, 666, 40, 'Confidence Level', 5, 'Having 13 years of exp in sales can be visible', 40, '2020-09-28 01:06:21', 1),
(3296, 666, 40, 'Importance Of Job', 5, 'Immediate joiner and highly required', 40, '2020-09-28 01:06:21', 1),
(3297, 666, 40, 'Observation Skills', 5, 'Seems good', 40, '2020-09-28 01:06:21', 1),
(3298, 666, 40, 'Pressure Handling', 4, 'Have sales exp 13 years pressure handler', 40, '2020-09-28 01:06:21', 1),
(3299, 666, 40, 'patience', 4, 'seems like short temper at the same time have patience to handle customer', 40, '2020-09-28 01:06:21', 1),
(3300, 666, 40, 'Sustainability', 5, 'Long runner', 40, '2020-09-28 01:06:21', 1),
(3301, 666, 40, 'Sales Experience', 5, '13 years', 40, '2020-09-28 01:06:21', 1),
(3302, 666, 40, 'Existing Experience Analyze', 4, 'Crystal clear', 40, '2020-09-28 01:06:21', 1),
(3303, 666, 40, 'Practical Challenges Outcome', 4, 'Might me can', 40, '2020-09-28 01:06:21', 1),
(3304, 666, 40, 'Willing To Work On Holidays', 4, 'Randomly due to married', 40, '2020-09-28 01:06:21', 1),
(3305, 670, 19, 'Appearance', 1, 'dress code', 19, '2020-09-28 01:07:43', 1),
(3306, 670, 19, 'Sustainability', 1, 'not fit for sustainability', 19, '2020-09-28 01:07:43', 1),
(3307, 675, 20, 'Appearance', 2, 'Body language not adequate', 20, '2020-09-28 01:20:49', 1),
(3308, 675, 20, 'Communication (Tamil)', 1, 'communication not fit for sales', 20, '2020-09-28 01:20:49', 1),
(3309, 675, 20, 'Convincing Skills', 1, 'No convincing skills', 20, '2020-09-28 01:20:49', 1),
(3310, 675, 20, 'Existing Experience Analyze', 2, 'Service job for banks', 20, '2020-09-28 01:20:49', 1),
(3311, 678, 8, 'Communication (English)', 2, 'Very bad', 8, '2020-09-28 04:02:42', 1),
(3312, 678, 8, 'Existing Experience Analyze', 2, 'very bad', 8, '2020-09-28 04:02:42', 1),
(3313, 668, 21, 'Appearance', 4, 'ok', 21, '2020-09-28 05:17:25', 1),
(3314, 668, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-09-28 05:17:25', 1),
(3315, 668, 21, 'Confidence Level', 2, 'low', 21, '2020-09-28 05:17:25', 1),
(3316, 668, 21, 'Observation skills', 2, 'low3', 21, '2020-09-28 05:17:25', 1),
(3317, 684, 8, 'Pressure Handling', 2, 'will not', 8, '2020-09-28 05:18:18', 1),
(3318, 684, 8, 'Sustainability', 2, 'will   not work  more than6 months', 8, '2020-09-28 05:18:18', 1),
(3319, 683, 8, 'Pressure Handling', 2, 'felt pressure in previous company', 8, '2020-09-28 05:20:55', 1),
(3320, 669, 21, 'Appearance', 3, 'ok', 21, '2020-09-28 05:22:16', 1),
(3321, 669, 21, 'Sustainability', 1, 'not sustain long term', 21, '2020-09-28 05:22:16', 1),
(3322, 695, 21, 'Appearance', 4, 'ok', 21, '2020-09-28 05:26:52', 1),
(3323, 695, 21, 'Communication (Tamil)', 4, 'ok', 21, '2020-09-28 05:26:52', 1),
(3324, 695, 21, 'Importance (Job)', 4, 'yes need for family', 21, '2020-09-28 05:26:52', 1),
(3325, 695, 21, 'Sustainability', 3, 'ok he said  min 2 yrs', 21, '2020-09-28 05:26:52', 1),
(3326, 677, 21, 'Communication (Tamil)', 3, 'low voice', 21, '2020-09-28 05:28:21', 1),
(3327, 677, 21, 'Confidence Level', 2, 'low confidence', 21, '2020-09-28 05:28:21', 1),
(3328, 677, 21, 'Sustainability', 1, 'not bold ,cant sustain long term', 21, '2020-09-28 05:28:21', 1),
(3329, 673, 21, 'Appearance', 4, 'ok', 21, '2020-09-28 05:30:39', 1),
(3330, 673, 21, 'Communication (Tamil)', 4, 'ok good ', 21, '2020-09-28 05:30:39', 1),
(3331, 673, 21, 'Confidence Level', 1, 'low', 21, '2020-09-28 05:30:39', 1),
(3332, 673, 21, 'Pressure Handling', 1, 'not able to take pressure', 21, '2020-09-28 05:30:39', 1),
(3333, 698, 21, 'Sustainability', 1, 'she is searching mail process xxamp also expected 14 k above for crm', 21, '2020-09-28 05:32:49', 1),
(3334, 676, 21, 'Sustainability', 1, 'not sustain', 21, '2020-09-28 05:34:40', 1),
(3335, 680, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-09-28 06:11:57', 1),
(3336, 680, 13, 'convincing Skills', 4, 'good', 13, '2020-09-28 06:11:57', 1),
(3337, 694, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-09-28 06:15:51', 1),
(3338, 694, 13, 'convincing Skills', 4, 'good', 13, '2020-09-28 06:15:51', 1),
(3339, 694, 13, 'Confidence Level', 4, 'good', 13, '2020-09-28 06:15:51', 1),
(3340, 664, 13, 'Pressure Handling', 2, 'poor', 13, '2020-09-28 06:18:07', 1),
(3341, 664, 13, 'Sustainability', 2, 'less', 13, '2020-09-28 06:18:07', 1),
(3342, 632, 51, 'Appearance', 4, 'his appearnce is good', 51, '2020-09-28 06:28:11', 1),
(3343, 632, 51, 'Communication (English)', 3, 'he as good communication skills', 51, '2020-09-28 06:28:11', 1),
(3344, 632, 51, 'Communication (Tamil)', 3, 'He As Good Communication Skills', 51, '2020-09-28 06:28:11', 1),
(3345, 632, 51, 'Convincing Skills', 3, 'he As Good convicing  Skills', 51, '2020-09-28 06:28:11', 1),
(3346, 632, 51, 'Sales Experience', 2, 'he doesnt have sales expernice', 51, '2020-09-28 06:28:11', 1),
(3347, 667, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-09-28 06:36:23', 1),
(3348, 667, 13, 'convincing Skills', 4, 'good', 13, '2020-09-28 06:36:23', 1),
(3349, 699, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-09-28 06:38:39', 1),
(3350, 699, 13, 'convincing Skills', 4, 'good', 13, '2020-09-28 06:38:39', 1),
(3351, 692, 13, 'Pressure Handling', 2, 'poor', 13, '2020-09-28 06:43:33', 1),
(3352, 692, 13, 'Sustainability', 2, 'poor', 13, '2020-09-28 06:43:33', 1),
(3353, 691, 13, 'Confidence Level', 2, 'low', 13, '2020-09-28 06:44:46', 1),
(3354, 691, 13, 'Observation skills', 2, 'poor', 13, '2020-09-28 06:44:46', 1),
(3355, 690, 13, 'convincing Skills', 2, 'poor', 13, '2020-09-28 06:50:45', 1),
(3356, 690, 13, 'Confidence Level', 2, 'low', 13, '2020-09-28 06:50:45', 1),
(3357, 681, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-09-28 06:52:18', 1),
(3358, 681, 13, 'Confidence Level', 2, 'poor', 13, '2020-09-28 06:52:18', 1),
(3359, 672, 13, 'Sustainability', 1, 'low', 13, '2020-09-28 07:03:09', 1),
(3360, 700, 24, 'Sustainability', 1, 'sustainability is doubt', 24, '2020-09-29 11:41:46', 1),
(3361, 703, 21, 'Appearance', 4, 'ok', 21, '2020-09-29 12:05:15', 1),
(3362, 703, 21, 'Pressure Handling', 2, 'she is in customer support ', 21, '2020-09-29 12:05:15', 1),
(3363, 703, 21, 'Sustainability', 2, 'not sustain', 21, '2020-09-29 12:05:15', 1),
(3364, 704, 21, 'Appearance', 4, 'ok', 21, '2020-09-29 12:08:00', 1),
(3365, 704, 21, 'Pressure Handling', 2, 'she is in customer support ', 21, '2020-09-29 12:08:00', 1),
(3366, 701, 13, 'Communication (Tamil)', 5, 'GOOD', 13, '2020-09-29 01:00:52', 1),
(3367, 701, 13, 'convincing Skills', 5, 'GOOD', 13, '2020-09-29 01:00:52', 1),
(3368, 707, 13, 'Communication (Tamil)', 3, 'POOR', 13, '2020-09-29 01:01:51', 1),
(3369, 707, 13, 'convincing Skills', 2, 'LESS', 13, '2020-09-29 01:01:51', 1),
(3370, 701, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-09-29 01:39:39', 1),
(3371, 701, 8, 'Convincing Skills', 4, 'good', 8, '2020-09-29 01:39:39', 1),
(3372, 719, 36, 'Appearance', 3, 'k', 36, '2020-09-29 03:29:36', 1),
(3373, 719, 36, 'Attitude', 3, 'k', 36, '2020-09-29 03:29:36', 1),
(3374, 719, 36, 'Communication (English)', 3, 'k', 36, '2020-09-29 03:29:36', 1),
(3375, 719, 36, 'Communication (Tamil)', 4, 'k', 36, '2020-09-29 03:29:36', 1),
(3376, 719, 36, 'Convincing Skills', 4, 'k', 36, '2020-09-29 03:29:36', 1),
(3377, 719, 36, 'Confidence Level', 4, 'k', 36, '2020-09-29 03:29:36', 1),
(3378, 719, 36, 'Importance Of Job', 3, 'k', 36, '2020-09-29 03:29:36', 1),
(3379, 719, 36, 'Observation Skills', 3, 'k', 36, '2020-09-29 03:29:36', 1),
(3380, 719, 36, 'Pressure Handling', 2, 'Need to check', 36, '2020-09-29 03:29:36', 1),
(3381, 719, 36, 'patience', 4, 'k', 36, '2020-09-29 03:29:36', 1),
(3382, 719, 36, 'Sustainability', 3, 'k', 36, '2020-09-29 03:29:36', 1),
(3383, 719, 36, 'Sales Experience', 3, 'k', 36, '2020-09-29 03:29:36', 1),
(3384, 719, 36, 'Existing Experience Analyze', 4, 'k', 36, '2020-09-29 03:29:36', 1),
(3385, 719, 36, 'Practical Challenges Outcome', 4, 'k', 36, '2020-09-29 03:29:36', 1),
(3386, 719, 36, 'Willing To Work On Holidays', 4, 'k', 36, '2020-09-29 03:29:36', 1),
(3387, 671, 13, 'Communication (Tamil)', 3, 'less', 13, '2020-09-29 06:01:19', 1),
(3388, 671, 13, 'convincing Skills', 2, 'poor', 13, '2020-09-29 06:01:19', 1),
(3389, 710, 13, 'Communication (English)', 4, 'good', 13, '2020-09-29 06:03:20', 1),
(3390, 710, 13, 'Pressure Handling', 4, 'good', 13, '2020-09-29 06:03:20', 1),
(3391, 711, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-09-29 06:05:09', 1),
(3392, 711, 13, 'convincing Skills', 4, 'good', 13, '2020-09-29 06:05:09', 1),
(3393, 659, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-09-29 06:08:57', 1),
(3394, 659, 13, 'convincing Skills', 4, 'good', 13, '2020-09-29 06:08:57', 1),
(3395, 688, 13, 'Communication (Tamil)', 3, 'less', 13, '2020-09-29 06:12:43', 1),
(3396, 688, 13, 'Confidence Level', 2, 'poor', 13, '2020-09-29 06:12:43', 1),
(3397, 702, 13, 'Observation skills', 3, 'poor', 13, '2020-09-29 06:13:54', 1),
(3398, 702, 13, 'Pressure Handling', 2, 'low', 13, '2020-09-29 06:13:54', 1),
(3399, 708, 13, 'Communication (Tamil)', 1, 'poor', 13, '2020-09-29 06:16:11', 1),
(3400, 708, 13, 'convincing Skills', 1, 'poor', 13, '2020-09-29 06:16:11', 1),
(3401, 713, 13, 'Confidence Level', 2, 'poor', 13, '2020-09-29 06:17:13', 1),
(3402, 713, 13, 'Pressure Handling', 2, 'poor', 13, '2020-09-29 06:17:13', 1),
(3403, 723, 41, 'Appearance', 3, 'Ok', 41, '2020-09-30 11:34:36', 1),
(3404, 723, 41, 'Attitude', 3, 'Ok', 41, '2020-09-30 11:34:36', 1),
(3405, 723, 41, 'Communication (Tamil)', 3, 'Good', 41, '2020-09-30 11:34:36', 1),
(3406, 723, 41, 'Communication (English)', 2, 'Avg', 41, '2020-09-30 11:34:36', 1),
(3407, 723, 41, 'Pressure Handling', 1, 'Will not handle', 41, '2020-09-30 11:34:36', 1),
(3408, 723, 41, 'Sustainability', 1, 'Will not sustain', 41, '2020-09-30 11:34:36', 1),
(3409, 730, 41, 'Appearance', 3, 'ok', 41, '2020-09-30 11:35:50', 1),
(3410, 730, 41, 'Attitude', 3, 'ok', 41, '2020-09-30 11:35:50', 1),
(3411, 730, 41, 'Communication (Tamil)', 3, 'ok', 41, '2020-09-30 11:35:50', 1),
(3412, 730, 41, 'Communication (English)', 1, 'poor', 41, '2020-09-30 11:35:50', 1),
(3413, 745, 41, 'Appearance', 3, 'ok', 41, '2020-09-30 12:02:13', 1),
(3414, 745, 41, 'Attitude', 3, 'ok', 41, '2020-09-30 12:02:13', 1),
(3415, 745, 41, 'Communication (Tamil)', 3, 'ok', 41, '2020-09-30 12:02:13', 1),
(3416, 745, 41, 'Communication (English)', 2, 'manageable 2.5 he will learn', 41, '2020-09-30 12:02:13', 1),
(3417, 745, 41, 'convincing Skills', 3, 'ok', 41, '2020-09-30 12:02:13', 1),
(3418, 745, 41, 'Importance (Job)', 4, 'only income earning in family', 41, '2020-09-30 12:02:13', 1),
(3419, 745, 41, 'Observation skills', 3, 'ok', 41, '2020-09-30 12:02:13', 1),
(3420, 745, 41, 'Sustainability', 4, 'yes will sustain', 41, '2020-09-30 12:02:13', 1),
(3421, 746, 41, 'Appearance', 3, 'ok', 41, '2020-09-30 12:05:10', 1),
(3422, 746, 41, 'Attitude', 3, 'ok', 41, '2020-09-30 12:05:10', 1),
(3423, 746, 41, 'Communication (Tamil)', 3, 'ok', 41, '2020-09-30 12:05:10', 1),
(3424, 746, 41, 'Communication (English)', 3, 'ok', 41, '2020-09-30 12:05:10', 1),
(3425, 746, 41, 'convincing Skills', 3, 'ok', 41, '2020-09-30 12:05:10', 1),
(3426, 746, 41, 'Importance (Job)', 2, 'need to check', 41, '2020-09-30 12:05:10', 1),
(3427, 746, 41, 'Sustainability', 2, 'need to check', 41, '2020-09-30 12:05:10', 1),
(3428, 721, 41, 'Appearance', 2, 'below ang', 41, '2020-09-30 12:30:54', 1),
(3429, 721, 41, 'Attitude', 3, 'ok', 41, '2020-09-30 12:30:54', 1),
(3430, 721, 41, 'Communication (Tamil)', 3, 'ok', 41, '2020-09-30 12:30:54', 1),
(3431, 721, 41, 'Communication (English)', 1, 'no comm at all', 41, '2020-09-30 12:30:54', 1),
(3432, 721, 41, 'Sustainability', 1, 'Looking for data entry job will not sustain', 41, '2020-09-30 12:30:54', 1),
(3433, 745, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-09-30 12:33:03', 1),
(3434, 745, 14, 'convincing Skills', 4, 'good', 14, '2020-09-30 12:33:03', 1),
(3435, 751, 41, 'Appearance', 3, 'Neat', 41, '2020-09-30 01:39:28', 1),
(3436, 751, 41, 'Attitude', 3, 'ok', 41, '2020-09-30 01:39:28', 1),
(3437, 751, 41, 'Communication (Tamil)', 3, 'ok', 41, '2020-09-30 01:39:28', 1),
(3438, 751, 41, 'Communication (English)', 3, 'ok', 41, '2020-09-30 01:39:28', 1),
(3439, 751, 41, 'Importance (Job)', 2, 'need to check', 41, '2020-09-30 01:39:28', 1),
(3440, 751, 41, 'Sustainability', 2, 'need to check', 41, '2020-09-30 01:39:28', 1),
(3441, 755, 14, 'convincing Skills', 1, 'less', 14, '2020-09-30 02:38:16', 1),
(3442, 755, 14, 'Confidence Level', 1, 'low', 14, '2020-09-30 02:38:16', 1),
(3443, 764, 41, 'Appearance', 3, 'Ok', 41, '2020-09-30 03:11:06', 1),
(3444, 764, 41, 'Communication (Tamil)', 3, 'Ok', 41, '2020-09-30 03:11:06', 1),
(3445, 764, 41, 'Pressure Handling', 1, 'Zero', 41, '2020-09-30 03:11:06', 1),
(3446, 743, 14, 'Appearance', 4, 'good', 14, '2020-09-30 03:12:42', 1),
(3447, 743, 14, 'Communication (Tamil)', 4, 'pronunciation good', 14, '2020-09-30 03:12:42', 1),
(3448, 743, 14, 'convincing Skills', 4, 'well good', 14, '2020-09-30 03:12:42', 1),
(3449, 726, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-09-30 03:15:25', 1),
(3450, 726, 14, 'Confidence Level', 4, 'high', 14, '2020-09-30 03:15:25', 1),
(3451, 726, 14, 'Observation skills', 4, 'understanding level good', 14, '2020-09-30 03:15:25', 1),
(3452, 718, 14, 'Communication (Tamil)', 4, 'pronunciation good', 14, '2020-09-30 03:16:49', 1),
(3453, 718, 14, 'convincing Skills', 4, 'good', 14, '2020-09-30 03:16:49', 1),
(3454, 718, 14, 'Observation skills', 4, 'understanding level good', 14, '2020-09-30 03:16:49', 1),
(3455, 731, 14, 'Attitude', 1, 'not good', 14, '2020-09-30 03:19:13', 1),
(3456, 731, 14, 'Confidence Level', 1, 'less', 14, '2020-09-30 03:19:13', 1),
(3457, 731, 14, 'Sustainability', 1, 'less ', 14, '2020-09-30 03:19:13', 1),
(3458, 716, 14, 'convincing Skills', 1, 'less', 14, '2020-09-30 03:20:24', 1),
(3459, 716, 14, 'Confidence Level', 1, 'less', 14, '2020-09-30 03:20:24', 1),
(3460, 716, 14, 'Observation skills', 1, 'not understand anything ', 14, '2020-09-30 03:20:24', 1),
(3461, 714, 13, 'Communication (Tamil)', 3, 'low', 13, '2020-09-30 04:23:17', 1),
(3462, 714, 13, 'convincing Skills', 2, 'poor', 13, '2020-09-30 04:23:17', 1),
(3463, 752, 13, 'Observation skills', 3, 'less', 13, '2020-09-30 04:25:06', 1),
(3464, 752, 13, 'Pressure Handling', 2, 'poor', 13, '2020-09-30 04:25:06', 1),
(3465, 752, 13, 'Sustainability', 1, 'low', 13, '2020-09-30 04:25:06', 1),
(3466, 753, 13, 'Sustainability', 1, 'poor', 13, '2020-09-30 04:33:26', 1),
(3467, 768, 41, 'Appearance', 2, 'Not ok', 41, '2020-09-30 05:00:02', 1),
(3468, 768, 41, 'Attitude', 3, 'ok', 41, '2020-09-30 05:00:02', 1),
(3469, 768, 41, 'Communication (Tamil)', 3, 'ok', 41, '2020-09-30 05:00:02', 1),
(3470, 768, 41, 'Communication (English)', 1, 'not ok', 41, '2020-09-30 05:00:02', 1),
(3471, 768, 41, 'Importance (Job)', 1, 'interest in Starting own slogan class ', 41, '2020-09-30 05:00:02', 1),
(3472, 768, 41, 'Sustainability', 1, 'will not sustain', 41, '2020-09-30 05:00:02', 1),
(3473, 759, 13, 'Communication (Tamil)', 1, 'POOR', 13, '2020-10-01 11:47:15', 1),
(3474, 759, 13, 'Confidence Level', 2, 'LESS', 13, '2020-10-01 11:47:15', 1),
(3475, 787, 16, 'Appearance', 4, 'goood', 16, '2020-10-01 01:04:29', 1),
(3476, 787, 16, 'Attitude', 4, 'good', 16, '2020-10-01 01:04:29', 1),
(3477, 787, 16, 'Communication (English)', 4, 'good', 16, '2020-10-01 01:04:29', 1),
(3478, 787, 16, 'Communication (Tamil)', 5, 'good', 16, '2020-10-01 01:04:29', 1),
(3479, 787, 16, 'Convincing Skills', 4, 'good', 16, '2020-10-01 01:04:29', 1),
(3480, 787, 16, 'Confidence Level', 4, 'good', 16, '2020-10-01 01:04:29', 1),
(3481, 787, 16, 'Importance Of Job', 4, 'need', 16, '2020-10-01 01:04:29', 1),
(3482, 787, 16, 'Pressure Handling', 4, 'good', 16, '2020-10-01 01:04:29', 1),
(3483, 787, 16, 'Sustainability', 5, 'no doubt', 16, '2020-10-01 01:04:29', 1),
(3484, 787, 16, 'Sales Experience', 1, 'fresh', 16, '2020-10-01 01:04:29', 1),
(3485, 787, 16, 'Willing To Work On Holidays', 4, 'no problem', 16, '2020-10-01 01:04:29', 1),
(3486, 788, 33, 'Appearance', 3, 'Good\n', 33, '2020-10-01 01:25:59', 1),
(3487, 788, 33, 'Communication (English)', 3, 'Good ', 33, '2020-10-01 01:25:59', 1),
(3488, 788, 33, 'Communication (Tamil)', 3, 'Good', 33, '2020-10-01 01:25:59', 1),
(3489, 788, 33, 'Sales Experience', 4, 'Having indurance experience', 33, '2020-10-01 01:25:59', 1),
(3490, 798, 14, 'convincing Skills', 1, 'less', 14, '2020-10-01 01:32:29', 1),
(3491, 798, 14, 'Confidence Level', 1, 'low', 14, '2020-10-01 01:32:29', 1),
(3492, 791, 14, 'Communication (Tamil)', 1, 'pronunciation not good ', 14, '2020-10-01 01:33:28', 1),
(3493, 791, 14, 'convincing Skills', 1, 'not good', 14, '2020-10-01 01:33:28', 1),
(3494, 786, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-10-01 01:35:40', 1),
(3495, 786, 14, 'convincing Skills', 1, 'poor', 14, '2020-10-01 01:35:40', 1),
(3496, 786, 14, 'Confidence Level', 1, 'less', 14, '2020-10-01 01:35:40', 1),
(3497, 793, 14, 'convincing Skills', 1, 'poor', 14, '2020-10-01 01:36:59', 1),
(3498, 793, 14, 'Confidence Level', 1, 'low', 14, '2020-10-01 01:36:59', 1),
(3499, 793, 14, 'Observation skills', 1, 'not understand anything', 14, '2020-10-01 01:36:59', 1),
(3500, 812, 41, 'Appearance', 3, 'ok', 41, '2020-10-01 03:00:02', 1),
(3501, 812, 41, 'Attitude', 3, 'ok', 41, '2020-10-01 03:00:02', 1),
(3502, 812, 41, 'Communication (Tamil)', 3, 'ok', 41, '2020-10-01 03:00:02', 1),
(3503, 812, 41, 'Communication (English)', 2, 'avg', 41, '2020-10-01 03:00:02', 1),
(3504, 812, 41, 'Sustainability', 1, 'prep for govt exam to join in coaching center she is looking for job', 41, '2020-10-01 03:00:02', 1),
(3505, 773, 13, 'Communication (Tamil)', 5, 'good', 13, '2020-10-01 04:16:27', 1),
(3506, 773, 13, 'convincing Skills', 4, 'good', 13, '2020-10-01 04:16:27', 1),
(3507, 773, 13, 'Importance (Job)', 4, 'High', 13, '2020-10-01 04:16:27', 1),
(3508, 790, 13, 'convincing Skills', 3, 'less', 13, '2020-10-01 04:36:19', 1),
(3509, 790, 13, 'Confidence Level', 2, 'poor', 13, '2020-10-01 04:36:19', 1),
(3510, 794, 13, 'Communication (Tamil)', 3, 'less', 13, '2020-10-01 04:38:57', 1),
(3511, 794, 13, 'convincing Skills', 2, 'poor', 13, '2020-10-01 04:38:57', 1),
(3512, 810, 36, 'Appearance', 4, 'k', 36, '2020-10-01 04:43:06', 1),
(3513, 810, 36, 'Attitude', 4, 'k', 36, '2020-10-01 04:43:06', 1),
(3514, 810, 36, 'Communication (English)', 3, 'k', 36, '2020-10-01 04:43:06', 1),
(3515, 810, 36, 'Communication (Tamil)', 4, 'k', 36, '2020-10-01 04:43:06', 1),
(3516, 810, 36, 'Convincing Skills', 4, 'k', 36, '2020-10-01 04:43:06', 1),
(3517, 810, 36, 'Confidence Level', 4, 'k', 36, '2020-10-01 04:43:06', 1),
(3518, 810, 36, 'Importance Of Job', 4, 'k', 36, '2020-10-01 04:43:06', 1),
(3519, 810, 36, 'Observation Skills', 3, 'k', 36, '2020-10-01 04:43:06', 1),
(3520, 810, 36, 'Pressure Handling', 3, 'k', 36, '2020-10-01 04:43:06', 1),
(3521, 810, 36, 'patience', 3, 'k', 36, '2020-10-01 04:43:06', 1),
(3522, 810, 36, 'Sustainability', 3, 'k', 36, '2020-10-01 04:43:06', 1),
(3523, 810, 36, 'Sales Experience', 3, 'k', 36, '2020-10-01 04:43:06', 1),
(3524, 810, 36, 'Existing Experience Analyze', 3, 'k', 36, '2020-10-01 04:43:06', 1),
(3525, 810, 36, 'Practical Challenges Outcome', 3, 'k', 36, '2020-10-01 04:43:06', 1),
(3526, 810, 36, 'Willing To Work On Holidays', 4, 'k', 36, '2020-10-01 04:43:06', 1),
(3527, 799, 13, 'Appearance', 3, 'less', 13, '2020-10-01 04:43:31', 1),
(3528, 799, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-01 04:43:31', 1),
(3529, 799, 13, 'Confidence Level', 3, 'less', 13, '2020-10-01 04:43:31', 1),
(3530, 799, 13, 'Observation skills', 2, 'poor', 13, '2020-10-01 04:43:31', 1),
(3531, 797, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-01 04:47:31', 1),
(3532, 797, 13, 'Confidence Level', 3, 'low', 13, '2020-10-01 04:47:31', 1),
(3533, 815, 14, 'Communication (Tamil)', 4, 'well good', 14, '2020-10-01 05:07:33', 1),
(3534, 815, 14, 'convincing Skills', 4, 'good', 14, '2020-10-01 05:07:33', 1),
(3535, 815, 14, 'Observation skills', 4, 'good understanding skills', 14, '2020-10-01 05:07:33', 1),
(3536, 735, 14, 'Communication (Tamil)', 4, 'well good', 14, '2020-10-01 05:09:24', 1),
(3537, 735, 14, 'convincing Skills', 4, 'good', 14, '2020-10-01 05:09:24', 1),
(3538, 735, 14, 'Observation skills', 4, 'good', 14, '2020-10-01 05:09:24', 1),
(3539, 766, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-10-01 05:10:58', 1),
(3540, 766, 14, 'convincing Skills', 4, 'good', 14, '2020-10-01 05:10:58', 1),
(3541, 766, 14, 'Observation skills', 4, 'product observing skill good', 14, '2020-10-01 05:10:58', 1),
(3542, 811, 41, 'Appearance', 3, 'Ok', 41, '2020-10-01 05:41:14', 1),
(3543, 811, 41, 'Attitude', 3, 'ok', 41, '2020-10-01 05:41:14', 1),
(3544, 811, 41, 'Sustainability', 2, 'will not sustain looking for job to pay her govt exam coaching fee', 41, '2020-10-01 05:41:14', 1),
(3545, 789, 13, 'Sustainability', 2, 'less', 13, '2020-10-01 05:43:14', 1),
(3546, 801, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-10-02 11:47:34', 1),
(3547, 801, 14, 'Observation skills', 4, 'good understanding skills', 14, '2020-10-02 11:47:34', 1),
(3548, 806, 14, 'Communication (Tamil)', 4, 'well good', 14, '2020-10-02 11:48:29', 1),
(3549, 806, 14, 'convincing Skills', 4, 'good', 14, '2020-10-02 11:48:29', 1),
(3550, 806, 14, 'Observation skills', 4, 'good', 14, '2020-10-02 11:48:29', 1),
(3551, 805, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-10-02 11:51:26', 1),
(3552, 805, 14, 'convincing Skills', 1, 'less', 14, '2020-10-02 11:51:26', 1),
(3553, 805, 14, 'Observation skills', 1, 'not understand anything', 14, '2020-10-02 11:51:26', 1),
(3554, 828, 44, 'Sales Experience', 1, 'Not fit for field sales ', 44, '2020-10-02 01:40:30', 1),
(3555, 828, 8, 'Communication (Tamil)', 3, 'but not bold.', 8, '2020-10-02 03:33:30', 1),
(3556, 828, 8, 'Sustainability', 2, 'will not sustain. resigned her Previous job for marriage plan. her mom has some health issues. ', 8, '2020-10-02 03:33:30', 1),
(3557, 332, 18, 'Appearance', 3, 'Good', 18, '2020-10-02 05:23:45', 1),
(3558, 332, 18, 'Attitude', 3, 'Good', 18, '2020-10-02 05:23:45', 1),
(3559, 332, 18, 'Communication (English)', 3, 'Good', 18, '2020-10-02 05:23:45', 1),
(3560, 332, 18, 'Sales Experience', 4, 'good', 18, '2020-10-02 05:23:45', 1),
(3561, 332, 18, 'Existing Experience Analyze', 4, 'good', 18, '2020-10-02 05:23:45', 1),
(3562, 666, 18, 'Appearance', 4, 'Good', 18, '2020-10-02 05:33:44', 1),
(3563, 666, 18, 'Attitude', 3, 'Good', 18, '2020-10-02 05:33:44', 1),
(3564, 666, 18, 'Communication (English)', 4, 'Good', 18, '2020-10-02 05:33:44', 1),
(3565, 666, 18, 'Communication (Tamil)', 4, 'Good', 18, '2020-10-02 05:33:44', 1),
(3566, 666, 18, 'Convincing Skills', 4, 'Good', 18, '2020-10-02 05:33:44', 1),
(3567, 666, 18, 'Confidence Level', 4, 'Good', 18, '2020-10-02 05:33:44', 1),
(3568, 666, 18, 'Importance Of Job', 4, 'Need', 18, '2020-10-02 05:33:44', 1),
(3569, 666, 18, 'Observation Skills', 3, 'Ok', 18, '2020-10-02 05:33:44', 1),
(3570, 666, 18, 'Pressure Handling', 4, 'Good', 18, '2020-10-02 05:33:44', 1),
(3571, 666, 18, 'patience', 2, 'low', 18, '2020-10-02 05:33:44', 1),
(3572, 666, 18, 'Sustainability', 4, 'YEs', 18, '2020-10-02 05:33:44', 1),
(3573, 666, 18, 'Sales Experience', 4, 'Availible', 18, '2020-10-02 05:33:44', 1),
(3574, 666, 18, 'Existing Experience Analyze', 3, 'Ok', 18, '2020-10-02 05:33:44', 1),
(3575, 666, 18, 'Practical Challenges Outcome', 3, 'Good', 18, '2020-10-02 05:33:44', 1),
(3576, 666, 18, 'Willing To Work On Holidays', 4, 'Ok', 18, '2020-10-02 05:33:44', 1),
(3577, 325, 18, 'Appearance', 4, 'good', 18, '2020-10-02 05:35:33', 1),
(3578, 325, 18, 'Attitude', 5, 'Good', 18, '2020-10-02 05:35:33', 1),
(3579, 325, 18, 'Communication (English)', 4, 'Good', 18, '2020-10-02 05:35:33', 1),
(3580, 325, 18, 'Communication (Tamil)', 4, 'Good', 18, '2020-10-02 05:35:33', 1),
(3581, 325, 18, 'Convincing Skills', 4, 'Good', 18, '2020-10-02 05:35:33', 1),
(3582, 325, 18, 'Confidence Level', 3, 'Good', 18, '2020-10-02 05:35:33', 1),
(3583, 325, 18, 'Importance Of Job', 4, 'Good', 18, '2020-10-02 05:35:33', 1),
(3584, 325, 18, 'Observation Skills', 4, 'Good', 18, '2020-10-02 05:35:33', 1),
(3585, 325, 18, 'Pressure Handling', 2, 'Poor', 18, '2020-10-02 05:35:33', 1),
(3586, 325, 18, 'patience', 4, 'good', 18, '2020-10-02 05:35:33', 1),
(3587, 325, 18, 'Sustainability', 1, 'Doubtful', 18, '2020-10-02 05:35:33', 1),
(3588, 325, 18, 'Sales Experience', 1, 'Nil', 18, '2020-10-02 05:35:33', 1),
(3589, 325, 18, 'Existing Experience Analyze', 1, 'Fresher', 18, '2020-10-02 05:35:33', 1),
(3590, 325, 18, 'Practical Challenges Outcome', 3, 'ok', 18, '2020-10-02 05:35:33', 1),
(3591, 325, 18, 'Willing To Work On Holidays', 1, 'No', 18, '2020-10-02 05:35:33', 1),
(3592, 847, 51, 'Appearance', 4, ' Neat And Good\n', 51, '2020-10-03 12:26:45', 1),
(3593, 847, 51, 'Sustainability', 4, 'Understand That Worked Long Term Of 5 Yrs With Maruthi\n', 51, '2020-10-03 12:26:45', 1),
(3594, 847, 51, 'Willing To Work On Holidays', 4, 'Alredy Have Experience In Working Holidays At Maruthi\n', 51, '2020-10-03 12:26:45', 1),
(3595, 749, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-03 01:31:57', 1),
(3596, 853, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-03 01:35:08', 1),
(3597, 853, 13, 'convincing Skills', 4, 'good', 13, '2020-10-03 01:35:08', 1),
(3598, 853, 13, 'Confidence Level', 4, 'good', 13, '2020-10-03 01:35:08', 1),
(3599, 802, 13, 'Pressure Handling', 2, 'poor', 13, '2020-10-03 01:37:12', 1),
(3600, 802, 13, 'Sustainability', 2, 'low', 13, '2020-10-03 01:37:12', 1),
(3601, 814, 13, 'Confidence Level', 3, 'low', 13, '2020-10-03 01:44:04', 1),
(3602, 814, 13, 'Pressure Handling', 2, 'low', 13, '2020-10-03 01:44:04', 1),
(3603, 845, 31, 'Appearance', 4, 'neat xxamp Good', 31, '2020-10-03 03:15:48', 1),
(3604, 845, 31, 'Communication (Tamil)', 4, 'good', 31, '2020-10-03 03:15:48', 1),
(3605, 845, 31, 'Sales Experience', 4, 'having good experience in sales', 31, '2020-10-03 03:15:48', 1),
(3606, 861, 38, 'Appearance', 3, 'satisfactory', 38, '2020-10-03 03:52:57', 1),
(3607, 861, 38, 'Attitude', 3, 'good understanding skill', 38, '2020-10-03 03:52:57', 1),
(3608, 861, 38, 'Communication (Tamil)', 4, 'fluent kannada', 38, '2020-10-03 03:52:57', 1),
(3609, 861, 38, 'Communication (English)', 3, 'Not bad', 38, '2020-10-03 03:52:57', 1),
(3610, 861, 38, 'Sustainability', 3, 'job needed candidate', 38, '2020-10-03 03:52:57', 1),
(3611, 862, 38, 'Appearance', 3, 'Good', 38, '2020-10-03 03:55:38', 1),
(3612, 862, 38, 'Attitude', 3, 'good listening xxamp communication', 38, '2020-10-03 03:55:38', 1),
(3613, 862, 38, 'Communication (English)', 3, 'not Bad', 38, '2020-10-03 03:55:38', 1),
(3614, 862, 38, 'Importance (Job)', 4, 'father doing welder work....she have to support so job need for her', 38, '2020-10-03 03:55:38', 1),
(3615, 862, 38, 'patience', 3, 'good in patience', 38, '2020-10-03 03:55:38', 1),
(3616, 862, 38, 'Sustainability', 3, 'she will sustain longterm with us', 38, '2020-10-03 03:55:38', 1),
(3617, 796, 14, 'convincing Skills', 1, 'less', 14, '2020-10-03 04:55:30', 1),
(3618, 796, 14, 'Observation skills', 1, 'bad ', 14, '2020-10-03 04:55:30', 1),
(3619, 858, 14, 'convincing Skills', 1, 'less', 14, '2020-10-03 04:57:38', 1),
(3620, 858, 14, 'Confidence Level', 1, 'low', 14, '2020-10-03 04:57:38', 1),
(3621, 858, 14, 'Observation skills', 1, 'not understand anything', 14, '2020-10-03 04:57:38', 1),
(3622, 847, 8, 'Communication (English)', 2, 'no', 8, '2020-10-03 05:39:20', 1),
(3623, 847, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-10-03 05:39:20', 1),
(3624, 847, 8, 'Sales Experience', 2, 'nil', 8, '2020-10-03 05:39:20', 1),
(3625, 847, 8, 'Existing Experience Analyze', 3, 'okay', 8, '2020-10-03 05:39:20', 1),
(3626, 660, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-03 06:36:43', 1),
(3627, 660, 13, 'convincing Skills', 2, 'poor', 13, '2020-10-03 06:36:43', 1),
(3628, 840, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-03 06:38:59', 1),
(3629, 840, 13, 'Confidence Level', 1, 'poor', 13, '2020-10-03 06:38:59', 1),
(3630, 819, 13, 'Pressure Handling', 2, 'low', 13, '2020-10-03 06:45:16', 1),
(3631, 819, 13, 'Sustainability', 2, 'low', 13, '2020-10-03 06:45:16', 1),
(3632, 881, 44, 'Communication (English)', 2, ' Communication  is not in expected level ', 44, '2020-10-05 11:23:23', 1),
(3633, 881, 44, 'Sustainability', 1, 'Already attended interview in Hdb finance and they ask to wait for one months, so Doubt', 44, '2020-10-05 11:23:23', 1),
(3634, 877, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-05 11:59:17', 1),
(3635, 877, 13, 'convincing Skills', 2, 'poor', 13, '2020-10-05 11:59:17', 1),
(3636, 888, 28, 'candidate have a real-time working experience?', 2, 'he have 8 month experience. But not strong in php basic array concept', 28, '2020-10-05 12:09:39', 1),
(3637, 810, 8, 'Appearance', 3, 'okay', 8, '2020-10-05 12:53:03', 1),
(3638, 810, 8, 'Communication (English)', 3, 'managable', 8, '2020-10-05 12:53:03', 1),
(3639, 810, 8, 'Convincing Skills', 3, 'okay', 8, '2020-10-05 12:53:03', 1),
(3640, 810, 8, 'Sustainability', 2, 'form UAE and holds offer their and already moved two  profile because of his manager.', 8, '2020-10-05 12:53:03', 1),
(3641, 810, 8, 'Sales Experience', 3, 'yes', 8, '2020-10-05 12:53:03', 1),
(3642, 880, 28, 'Is all the technical Requirements matched with this employee?', 3, 'He is good  Knowledge in php basic and also know mysql basic query. ', 28, '2020-10-05 01:01:30', 1),
(3643, 878, 24, 'Sustainability', 1, 'not suitable for  calling profile.. ', 24, '2020-10-05 01:24:34', 1),
(3644, 891, 38, 'Attitude', 3, 'Good In Understanding xxamp Communication', 38, '2020-10-05 04:21:06', 1),
(3645, 891, 38, 'Communication (Tamil)', 4, 'fluent in kannada xxamp tamil', 38, '2020-10-05 04:21:06', 1),
(3646, 891, 38, 'Communication (English)', 2, 'not bad ', 38, '2020-10-05 04:21:06', 1),
(3647, 891, 38, 'Observation skills', 3, 'Good', 38, '2020-10-05 04:21:06', 1),
(3648, 891, 38, 'Sustainability', 3, 'she will sustain', 38, '2020-10-05 04:21:06', 1),
(3649, 824, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-05 05:51:13', 1),
(3650, 824, 21, 'Observation skills', 2, 'very low', 21, '2020-10-05 05:51:13', 1),
(3651, 824, 21, 'Sustainability', 2, 'not sustain long', 21, '2020-10-05 05:51:13', 1),
(3652, 860, 13, 'Communication (Tamil)', 5, 'GOOD', 13, '2020-10-05 05:55:15', 1),
(3653, 860, 13, 'convincing Skills', 4, 'GOOD', 13, '2020-10-05 05:55:15', 1),
(3654, 900, 30, 'Appearance', 3, 'Outlook Okay for RM Profile', 30, '2020-10-05 06:00:45', 1),
(3655, 900, 30, 'Attitude', 3, 'Good in communication xxamp listening', 30, '2020-10-05 06:00:45', 1),
(3656, 900, 30, 'Communication (English)', 3, 'Fluent English', 30, '2020-10-05 06:00:45', 1),
(3657, 900, 30, 'Pressure Handling', 3, 'Already experienced ', 30, '2020-10-05 06:00:45', 1),
(3658, 900, 30, 'Sustainability', 3, 'He will sustain', 30, '2020-10-05 06:00:45', 1),
(3659, 900, 30, 'Willing To Work On Holidays', 3, 'Ready to work ', 30, '2020-10-05 06:00:45', 1),
(3660, 889, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-05 06:02:44', 1),
(3661, 889, 13, 'Pressure Handling', 4, 'good', 13, '2020-10-05 06:02:44', 1),
(3662, 895, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-05 06:08:01', 1),
(3663, 895, 13, 'Confidence Level', 2, 'low', 13, '2020-10-05 06:08:01', 1),
(3664, 898, 13, 'Sustainability', 2, 'low', 13, '2020-10-05 06:18:06', 1),
(3665, 869, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-05 06:21:58', 1),
(3666, 869, 13, 'Pressure Handling', 2, 'low', 13, '2020-10-05 06:21:58', 1),
(3667, 865, 13, 'Communication (Tamil)', 2, 'low', 13, '2020-10-05 06:23:03', 1),
(3668, 865, 13, 'convincing Skills', 2, 'low', 13, '2020-10-05 06:23:03', 1),
(3669, 865, 13, 'Confidence Level', 2, 'low', 13, '2020-10-05 06:23:03', 1),
(3670, 863, 13, 'Confidence Level', 1, 'low', 13, '2020-10-05 06:24:26', 1),
(3671, 874, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-05 06:26:32', 1),
(3672, 874, 13, 'Confidence Level', 2, 'low', 13, '2020-10-05 06:26:32', 1),
(3673, 894, 13, 'Attitude', 2, 'poor', 13, '2020-10-05 06:28:04', 1),
(3674, 894, 13, 'convincing Skills', 2, 'less', 13, '2020-10-05 06:28:04', 1),
(3675, 893, 13, 'Pressure Handling', 2, 'low', 13, '2020-10-05 06:37:03', 1),
(3676, 893, 13, 'Sustainability', 1, 'low', 13, '2020-10-05 06:37:03', 1),
(3677, 901, 33, 'Appearance', 5, 'Good', 33, '2020-10-05 07:53:29', 1),
(3678, 901, 33, 'Attitude', 3, 'Good', 33, '2020-10-05 07:53:29', 1),
(3679, 901, 33, 'Communication (English)', 3, 'Good', 33, '2020-10-05 07:53:29', 1),
(3680, 901, 33, 'Communication (Tamil)', 3, 'Good', 33, '2020-10-05 07:53:29', 1),
(3681, 914, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-06 11:19:39', 1),
(3682, 914, 13, 'convincing Skills', 2, 'low', 13, '2020-10-06 11:19:39', 1),
(3683, 883, 36, 'Appearance', 3, 'k', 36, '2020-10-06 11:28:47', 1),
(3684, 883, 36, 'Attitude', 4, 'k', 36, '2020-10-06 11:28:47', 1),
(3685, 883, 36, 'Communication (English)', 4, 'k', 36, '2020-10-06 11:28:47', 1),
(3686, 883, 36, 'Communication (Tamil)', 4, 'k', 36, '2020-10-06 11:28:47', 1),
(3687, 883, 36, 'Convincing Skills', 4, 'k', 36, '2020-10-06 11:28:47', 1),
(3688, 883, 36, 'Confidence Level', 3, 'k', 36, '2020-10-06 11:28:47', 1),
(3689, 883, 36, 'Importance Of Job', 4, 'k', 36, '2020-10-06 11:28:47', 1),
(3690, 883, 36, 'Observation Skills', 3, 'k', 36, '2020-10-06 11:28:47', 1),
(3691, 883, 36, 'Pressure Handling', 4, 'k', 36, '2020-10-06 11:28:47', 1),
(3692, 883, 36, 'patience', 4, 'k', 36, '2020-10-06 11:28:47', 1),
(3693, 883, 36, 'Sustainability', 3, 'k', 36, '2020-10-06 11:28:47', 1),
(3694, 883, 36, 'Sales Experience', 3, 'k', 36, '2020-10-06 11:28:47', 1),
(3695, 883, 36, 'Existing Experience Analyze', 4, 'k', 36, '2020-10-06 11:28:47', 1),
(3696, 883, 36, 'Practical Challenges Outcome', 3, 'k', 36, '2020-10-06 11:28:47', 1),
(3697, 883, 36, 'Willing To Work On Holidays', 4, 'k', 36, '2020-10-06 11:28:47', 1),
(3698, 912, 33, 'Appearance', 2, 'GOOD APPEARANCE', 33, '2020-10-06 11:31:55', 1),
(3699, 912, 33, 'Attitude', 3, 'COLLEGE GUY ATTITUDE BUT WE CAN IMPROVE IT', 33, '2020-10-06 11:31:55', 1),
(3700, 912, 33, 'Communication (English)', 3, 'HE CAN MANAGE', 33, '2020-10-06 11:31:55', 1),
(3701, 912, 33, 'Communication (Tamil)', 3, 'GOOD', 33, '2020-10-06 11:31:55', 1),
(3702, 912, 33, 'Willing To Work On Holidays', 3, 'OKEY FOR HIM', 33, '2020-10-06 11:31:55', 1),
(3703, 901, 18, 'Appearance', 4, 'good', 18, '2020-10-06 11:36:57', 1),
(3704, 901, 18, 'Attitude', 3, 'Good', 18, '2020-10-06 11:36:57', 1),
(3705, 901, 18, 'Communication (English)', 4, 'Good', 18, '2020-10-06 11:36:57', 1),
(3706, 901, 18, 'Communication (Tamil)', 4, 'Good', 18, '2020-10-06 11:36:57', 1),
(3707, 901, 18, 'Convincing Skills', 4, 'Good', 18, '2020-10-06 11:36:57', 1),
(3708, 901, 18, 'Confidence Level', 4, 'Good', 18, '2020-10-06 11:36:57', 1),
(3709, 901, 18, 'Importance Of Job', 3, 'Need', 18, '2020-10-06 11:36:57', 1),
(3710, 901, 18, 'Observation Skills', 3, 'Average', 18, '2020-10-06 11:36:57', 1),
(3711, 901, 18, 'Pressure Handling', 3, 'Good', 18, '2020-10-06 11:36:57', 1),
(3712, 901, 18, 'patience', 3, 'Average', 18, '2020-10-06 11:36:57', 1),
(3713, 901, 18, 'Sustainability', 3, 'Ok', 18, '2020-10-06 11:36:57', 1),
(3714, 901, 18, 'Sales Experience', 4, 'Good', 18, '2020-10-06 11:36:57', 1),
(3715, 901, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2020-10-06 11:36:57', 1),
(3716, 901, 18, 'Practical Challenges Outcome', 3, 'Good', 18, '2020-10-06 11:36:57', 1),
(3717, 901, 18, 'Willing To Work On Holidays', 3, 'Yes', 18, '2020-10-06 11:36:57', 1),
(3718, 911, 13, 'Confidence Level', 2, 'low', 13, '2020-10-06 11:40:43', 1),
(3719, 911, 13, 'Sustainability', 1, 'less', 13, '2020-10-06 11:40:43', 1),
(3720, 885, 13, 'Pressure Handling', 1, 'poorl', 13, '2020-10-06 12:13:11', 1),
(3721, 885, 13, 'Sustainability', 2, 'less', 13, '2020-10-06 12:13:11', 1),
(3722, 276, 44, 'Communication (English)', 4, 'Good communication skill', 44, '2020-10-06 02:28:39', 1),
(3723, 276, 44, 'Convincing Skills', 3, 'Good in convincing', 44, '2020-10-06 02:28:39', 1),
(3724, 276, 44, 'Sales Experience', 3, 'having sales Experience in other industry', 44, '2020-10-06 02:28:39', 1),
(3725, 788, 44, 'Communication (English)', 3, 'Communication ok', 44, '2020-10-06 02:31:31', 1),
(3726, 788, 44, 'Existing Experience Analyze', 1, 'From Fraud selling Background  ', 44, '2020-10-06 02:31:31', 1),
(3727, 882, 21, 'Appearance', 4, 'ok', 21, '2020-10-06 02:34:20', 1),
(3728, 882, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-06 02:34:20', 1),
(3729, 882, 21, 'convincing Skills', 3, 'ok but, she don have exp', 21, '2020-10-06 02:34:20', 1),
(3730, 882, 21, 'Confidence Level', 4, 'ok', 21, '2020-10-06 02:34:20', 1),
(3731, 882, 21, 'Sustainability', 4, 'she need job for family ...', 21, '2020-10-06 02:34:20', 1),
(3732, 886, 21, 'Appearance', 4, 'ok', 21, '2020-10-06 02:53:32', 1),
(3733, 886, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-06 02:53:32', 1),
(3734, 886, 21, 'Communication (English)', 3, 'ok', 21, '2020-10-06 02:53:32', 1),
(3735, 886, 21, 'convincing Skills', 3, 'ok', 21, '2020-10-06 02:53:32', 1),
(3736, 886, 21, 'Importance (Job)', 2, 'no need for family', 21, '2020-10-06 02:53:32', 1),
(3737, 886, 21, 'Sustainability', 2, '6 months only sustain', 21, '2020-10-06 02:53:32', 1),
(3738, 918, 21, 'Appearance', 4, 'ok', 21, '2020-10-06 02:58:42', 1),
(3739, 918, 21, 'Communication (Tamil)', 4, 'ok', 21, '2020-10-06 02:58:42', 1),
(3740, 918, 21, 'convincing Skills', 3, 'ok, dont have exp ', 21, '2020-10-06 02:58:42', 1),
(3741, 918, 21, 'Pressure Handling', 1, 'she dont want pressure job ...', 21, '2020-10-06 02:58:42', 1),
(3742, 890, 21, 'Pressure Handling', 1, 'she is not work with pressure', 21, '2020-10-06 03:21:42', 1),
(3743, 915, 21, 'Attitude', 4, 'ok', 21, '2020-10-06 03:24:26', 1),
(3744, 915, 21, 'Importance (Job)', 1, 'no job need for family ,bcz family income 50 k monthly ', 21, '2020-10-06 03:24:26', 1),
(3745, 915, 21, 'Sustainability', 1, 'not sustain long term', 21, '2020-10-06 03:24:26', 1),
(3746, 916, 30, 'Attitude', 3, 'Good in listening xxamp  communication', 30, '2020-10-06 03:25:55', 1),
(3747, 916, 30, 'Sustainability', 3, 'he will sustain', 30, '2020-10-06 03:25:55', 1),
(3748, 916, 30, 'Sales Experience', 3, 'One and half years experience in Aegon religare', 30, '2020-10-06 03:25:55', 1),
(3749, 916, 30, 'Existing Experience Analyze', 3, 'Good in sales', 30, '2020-10-06 03:25:55', 1),
(3750, 913, 21, 'Sustainability', 1, 'not sustain long term, she is intrested in lecture job , tnpsc exam', 21, '2020-10-06 03:26:29', 1),
(3751, 286, 13, 'Communication (Tamil)', 3, 'poor', 13, '2020-10-06 03:27:19', 1),
(3752, 286, 13, 'convincing Skills', 2, 'less', 13, '2020-10-06 03:27:19', 1),
(3753, 897, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-06 03:28:48', 1),
(3754, 897, 13, 'convincing Skills', 2, 'low', 13, '2020-10-06 03:28:48', 1),
(3755, 679, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-06 03:30:09', 1),
(3756, 679, 13, 'convincing Skills', 4, 'good', 13, '2020-10-06 03:30:09', 1),
(3757, 501, 13, 'Sustainability', 2, 'less', 13, '2020-10-06 03:33:26', 1),
(3758, 665, 11, 'Appearance', 3, 'ok', 11, '2020-10-06 03:57:38', 1),
(3759, 665, 11, 'Attitude', 3, 'ok', 11, '2020-10-06 03:57:38', 1),
(3760, 665, 11, 'Communication (Tamil)', 3, 'good', 11, '2020-10-06 03:57:38', 1),
(3761, 665, 11, 'Communication (English)', 3, 'average', 11, '2020-10-06 03:57:38', 1),
(3762, 665, 11, 'convincing Skills', 3, '...', 11, '2020-10-06 03:57:38', 1),
(3763, 665, 11, 'Confidence Level', 3, '..', 11, '2020-10-06 03:57:38', 1),
(3764, 665, 11, 'Importance (Job)', 4, '.......', 11, '2020-10-06 03:57:38', 1),
(3765, 665, 11, 'Observation skills', 4, '......', 11, '2020-10-06 03:57:38', 1),
(3766, 665, 11, 'Pressure Handling', 3, '.....', 11, '2020-10-06 03:57:38', 1),
(3767, 665, 11, 'patience', 4, '....', 11, '2020-10-06 03:57:38', 1),
(3768, 665, 11, 'Sustainability', 3, '....', 11, '2020-10-06 03:57:38', 1),
(3769, 884, 13, 'Communication (Tamil)', 3, 'poor', 13, '2020-10-06 05:37:52', 1),
(3770, 884, 13, 'Confidence Level', 2, 'low', 13, '2020-10-06 05:37:52', 1),
(3771, 909, 34, 'Appearance', 4, 'good', 34, '2020-10-06 06:18:56', 1),
(3772, 909, 34, 'Attitude', 3, 'good', 34, '2020-10-06 06:18:56', 1),
(3773, 909, 34, 'Communication (English)', 3, 'average', 34, '2020-10-06 06:18:56', 1),
(3774, 909, 34, 'Communication (Tamil)', 5, 'good', 34, '2020-10-06 06:18:56', 1),
(3775, 909, 34, 'Convincing Skills', 3, 'average', 34, '2020-10-06 06:18:56', 1),
(3776, 909, 34, 'Confidence Level', 2, 'not good', 34, '2020-10-06 06:18:56', 1),
(3777, 909, 34, 'Importance Of Job', 5, 'need very important', 34, '2020-10-06 06:18:56', 1),
(3778, 909, 34, 'Observation Skills', 3, 'better', 34, '2020-10-06 06:18:56', 1),
(3779, 909, 34, 'Pressure Handling', 2, 'no he will not handle the pressure', 34, '2020-10-06 06:18:56', 1),
(3780, 909, 34, 'patience', 4, 'average', 34, '2020-10-06 06:18:56', 1),
(3781, 909, 34, 'Sustainability', 2, 'good', 34, '2020-10-06 06:18:56', 1),
(3782, 909, 34, 'Sales Experience', 2, 'No Exoerience In Sales', 34, '2020-10-06 06:18:56', 1),
(3783, 909, 34, 'Existing Experience Analyze', 2, 'good', 34, '2020-10-06 06:18:56', 1),
(3784, 909, 34, 'Practical Challenges Outcome', 2, 'average', 34, '2020-10-06 06:18:56', 1),
(3785, 909, 34, 'Willing To Work On Holidays', 4, 'willing to work', 34, '2020-10-06 06:18:56', 1),
(3786, 901, 8, 'Sales Experience', 3, 'yes but not in insurance.', 8, '2020-10-06 06:20:16', 1),
(3787, 916, 8, 'Confidence Level', 3, 'okay', 8, '2020-10-06 06:22:13', 1),
(3788, 916, 8, 'Sales Experience', 3, 'yes', 8, '2020-10-06 06:22:13', 1),
(3789, 939, 34, 'Appearance', 4, 'good', 34, '2020-10-06 06:27:42', 1),
(3790, 939, 34, 'Attitude', 4, 'good', 34, '2020-10-06 06:27:42', 1),
(3791, 939, 34, 'Communication (English)', 2, 'he is not speaking in english', 34, '2020-10-06 06:27:42', 1),
(3792, 939, 34, 'Communication (Tamil)', 4, 'good', 34, '2020-10-06 06:27:42', 1),
(3793, 939, 34, 'Convincing Skills', 4, 'good', 34, '2020-10-06 06:27:42', 1),
(3794, 939, 34, 'Confidence Level', 4, 'high', 34, '2020-10-06 06:27:42', 1),
(3795, 939, 34, 'Existing Experience Analyze', 4, 'good', 34, '2020-10-06 06:27:42', 1),
(3796, 939, 34, 'Importance Of Job', 5, 'need job because he was taking care is family', 34, '2020-10-06 06:27:42', 1),
(3797, 939, 34, 'Observation Skills', 4, 'good', 34, '2020-10-06 06:27:42', 1),
(3798, 939, 34, 'patience', 5, 'good', 34, '2020-10-06 06:27:42', 1),
(3799, 939, 34, 'Pressure Handling', 4, 'he will handle', 34, '2020-10-06 06:27:42', 1),
(3800, 939, 34, 'Practical Challenges Outcome', 4, 'average', 34, '2020-10-06 06:27:42', 1),
(3801, 939, 34, 'Sustainability', 4, 'good', 34, '2020-10-06 06:27:42', 1),
(3802, 939, 34, 'Sales Experience', 4, 'good', 34, '2020-10-06 06:27:42', 1),
(3803, 939, 34, 'Willing To Work On Holidays', 4, 'yes', 34, '2020-10-06 06:27:42', 1),
(3804, 955, 8, 'Communication (Tamil)', 2, 'pronunciation is not good', 8, '2020-10-07 12:54:26', 1),
(3805, 955, 8, 'Pressure Handling', 2, 'will not suite for us', 8, '2020-10-07 12:54:26', 1),
(3806, 920, 8, 'Communication (English)', 3, 'Manageable', 8, '2020-10-07 12:55:37', 1),
(3807, 920, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-10-07 12:55:37', 1),
(3808, 924, 51, 'Appearance', 4, 'neat and good', 51, '2020-10-07 01:12:51', 1),
(3809, 924, 51, 'Communication (English)', 3, 'communication is good', 51, '2020-10-07 01:12:51', 1),
(3810, 924, 51, 'Communication (Tamil)', 3, 'Communication Is Good', 51, '2020-10-07 01:12:51', 1),
(3811, 924, 51, 'Convincing Skills', 3, 'his convincing skills are been good', 51, '2020-10-07 01:12:51', 1),
(3812, 924, 51, 'Willing To Work On Holidays', 3, 'he is flexible to wrk on holidays', 51, '2020-10-07 01:12:51', 1),
(3813, 908, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-07 02:53:25', 1),
(3814, 908, 13, 'Observation skills', 2, 'low', 13, '2020-10-07 02:53:25', 1),
(3815, 944, 13, 'Sustainability', 2, 'poor', 13, '2020-10-07 03:02:21', 1),
(3816, 942, 28, 'Is all the technical Requirements matched with this employee?', 2, 'He is not strong in php basic .  ', 28, '2020-10-07 03:06:48', 1),
(3817, 948, 13, 'Communication (Tamil)', 1, 'poor', 13, '2020-10-07 03:06:57', 1),
(3818, 950, 13, 'convincing Skills', 2, 'poor', 13, '2020-10-07 03:09:24', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(3819, 950, 13, 'Pressure Handling', 1, 'low', 13, '2020-10-07 03:09:24', 1),
(3820, 970, 28, 'Is all the technical Requirements matched with this employee?', 3, 'He is good Knowledge in android.', 28, '2020-10-07 03:11:34', 1),
(3821, 907, 21, 'Appearance', 4, 'ok', 21, '2020-10-07 03:15:11', 1),
(3822, 907, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-07 03:15:11', 1),
(3823, 907, 21, 'Confidence Level', 3, 'ok average ', 21, '2020-10-07 03:15:11', 1),
(3824, 907, 21, 'Sustainability', 2, 'not sustain long term', 21, '2020-10-07 03:15:11', 1),
(3825, 952, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-07 03:17:58', 1),
(3826, 952, 13, 'convincing Skills', 4, 'good', 13, '2020-10-07 03:17:58', 1),
(3827, 951, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-07 03:18:43', 1),
(3828, 951, 21, 'Observation skills', 3, 'ok', 21, '2020-10-07 03:18:43', 1),
(3829, 951, 21, 'Pressure Handling', 4, 'ok good ', 21, '2020-10-07 03:18:43', 1),
(3830, 951, 21, 'Sustainability', 4, 'min 1 yr ', 21, '2020-10-07 03:18:43', 1),
(3831, 954, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-07 03:19:53', 1),
(3832, 954, 13, 'Confidence Level', 2, 'low', 13, '2020-10-07 03:19:53', 1),
(3833, 931, 21, 'Pressure Handling', 2, 'interested only in customer support', 21, '2020-10-07 03:20:57', 1),
(3834, 960, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-07 03:21:49', 1),
(3835, 960, 13, 'Confidence Level', 2, 'low', 13, '2020-10-07 03:21:49', 1),
(3836, 960, 13, 'Observation skills', 2, 'low', 13, '2020-10-07 03:21:49', 1),
(3837, 964, 13, 'Pressure Handling', 2, 'low', 13, '2020-10-07 03:23:29', 1),
(3838, 964, 13, 'Sustainability', 1, 'less', 13, '2020-10-07 03:23:29', 1),
(3839, 947, 21, 'Communication (Tamil)', 4, 'ok good ', 21, '2020-10-07 03:25:11', 1),
(3840, 947, 21, 'Confidence Level', 4, 'ok ', 21, '2020-10-07 03:25:11', 1),
(3841, 947, 21, 'Importance (Job)', 5, 'father late ', 21, '2020-10-07 03:25:11', 1),
(3842, 947, 21, 'Sustainability', 4, 'min 1 year..', 21, '2020-10-07 03:25:11', 1),
(3843, 957, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-07 03:25:39', 1),
(3844, 957, 13, 'convincing Skills', 2, 'poor', 13, '2020-10-07 03:25:39', 1),
(3845, 965, 21, 'Sustainability', 2, 'not sustain long xxamp also double minded ', 21, '2020-10-07 03:26:30', 1),
(3846, 966, 21, 'Communication (Tamil)', 3, 'ok good', 21, '2020-10-07 03:28:57', 1),
(3847, 966, 21, 'Confidence Level', 1, 'low voice ,not bold ', 21, '2020-10-07 03:28:57', 1),
(3848, 966, 21, 'Sustainability', 1, 'not sus long term', 21, '2020-10-07 03:28:57', 1),
(3849, 923, 21, 'Appearance', 4, 'ok', 21, '2020-10-07 04:41:32', 1),
(3850, 923, 21, 'Communication (Tamil)', 4, 'ok good ', 21, '2020-10-07 04:41:32', 1),
(3851, 923, 21, 'Pressure Handling', 2, 'she dont have  voice exp , alreadyhave exp in email chat process ...', 21, '2020-10-07 04:41:32', 1),
(3852, 927, 21, 'Communication (Tamil)', 4, 'ok good ', 21, '2020-10-07 04:54:20', 1),
(3853, 927, 21, 'Confidence Level', 3, 'ok ', 21, '2020-10-07 04:54:20', 1),
(3854, 927, 21, 'Pressure Handling', 3, 'ok but fresher ', 21, '2020-10-07 04:54:20', 1),
(3855, 927, 21, 'Sustainability', 4, 'min  1 yr', 21, '2020-10-07 04:54:20', 1),
(3856, 943, 21, 'Sustainability', 1, 'she is interested in customer support ', 21, '2020-10-07 04:55:25', 1),
(3857, 959, 21, 'Sustainability', 1, 'she wants 3 month only full time job, after  she went to colleage ', 21, '2020-10-07 04:58:53', 1),
(3858, 967, 39, 'Communication (English)', 4, 'Good', 39, '2020-10-07 05:29:19', 1),
(3859, 967, 39, 'Confidence Level', 4, 'Good in confidence level', 39, '2020-10-07 05:29:19', 1),
(3860, 967, 39, 'Observation Skills', 4, 'Quick learner', 39, '2020-10-07 05:29:19', 1),
(3861, 967, 39, 'Willing To Work On Holidays', 4, 'Interested to work in holkdahs', 39, '2020-10-07 05:29:19', 1),
(3862, 951, 8, 'convincing Skills', 3, 'good', 8, '2020-10-07 06:35:15', 1),
(3863, 951, 8, 'Sustainability', 2, 'doubt', 8, '2020-10-07 06:35:15', 1),
(3864, 963, 30, 'Appearance', 3, 'Good in oulook', 30, '2020-10-07 07:35:34', 1),
(3865, 963, 30, 'Attitude', 3, 'Good in communication and understanding ', 30, '2020-10-07 07:35:34', 1),
(3866, 963, 30, 'Sustainability', 3, 'Job importance more', 30, '2020-10-07 07:35:34', 1),
(3867, 963, 30, 'Willing To Work On Holidays', 3, 'He is more comfortable. No problem on that', 30, '2020-10-07 07:35:34', 1),
(3868, 936, 21, 'Communication (Tamil)', 4, 'ok', 21, '2020-10-08 11:24:47', 1),
(3869, 936, 21, 'Sustainability', 2, 'not  sustain long term xxamp also  last salry 18k ', 21, '2020-10-08 11:24:47', 1),
(3870, 985, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-08 12:37:31', 1),
(3871, 985, 13, 'Confidence Level', 5, 'good', 13, '2020-10-08 12:37:31', 1),
(3872, 978, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-08 01:29:00', 1),
(3873, 978, 13, 'convincing Skills', 3, 'low', 13, '2020-10-08 01:29:00', 1),
(3874, 995, 24, 'Sustainability', 4, 'job need ', 24, '2020-10-08 01:36:00', 1),
(3875, 995, 22, 'Communication (English)', 1, 'laungauage is not good', 22, '2020-10-08 02:41:32', 1),
(3876, 995, 22, 'Communication (Tamil)', 1, 'Laungauage Is Not Good', 22, '2020-10-08 02:41:32', 1),
(3877, 995, 22, 'Convincing Skills', 1, 'marketing skills is nil', 22, '2020-10-08 02:41:32', 1),
(3878, 971, 21, 'Sustainability', 1, 'not sustain long term , bcz  she have offer and expecting high  salary ', 21, '2020-10-08 03:19:24', 1),
(3879, 977, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-08 03:27:51', 1),
(3880, 977, 21, 'Confidence Level', 3, 'ok but fresher', 21, '2020-10-08 03:27:51', 1),
(3881, 977, 21, 'Sustainability', 4, 'ok min 1yr', 21, '2020-10-08 03:27:51', 1),
(3882, 986, 13, 'Pressure Handling', 2, 'poor', 13, '2020-10-08 03:35:50', 1),
(3883, 986, 13, 'Sustainability', 2, 'low', 13, '2020-10-08 03:35:50', 1),
(3884, 977, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-10-08 06:35:48', 1),
(3885, 977, 8, 'Confidence Level', 3, 'good', 8, '2020-10-08 06:35:48', 1),
(3886, 1013, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-09 11:17:57', 1),
(3887, 1013, 13, 'convincing Skills', 4, 'good', 13, '2020-10-09 11:17:57', 1),
(3888, 1013, 13, 'Confidence Level', 5, 'good', 13, '2020-10-09 11:17:57', 1),
(3889, 1019, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-09 11:56:58', 1),
(3890, 1019, 21, 'convincing Skills', 2, 'low', 21, '2020-10-09 11:56:58', 1),
(3891, 1019, 21, 'Pressure Handling', 1, 'no confidence ', 21, '2020-10-09 11:56:58', 1),
(3892, 1031, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-10-09 02:36:22', 1),
(3893, 1031, 14, 'Importance (Job)', 4, 'need job ', 14, '2020-10-09 02:36:22', 1),
(3894, 505, 13, 'Pressure Handling', 1, 'poor', 13, '2020-10-09 03:13:37', 1),
(3895, 505, 13, 'Sustainability', 2, 'less', 13, '2020-10-09 03:13:37', 1),
(3896, 1006, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-09 03:15:37', 1),
(3897, 1006, 13, 'convincing Skills', 4, 'good', 13, '2020-10-09 03:15:37', 1),
(3898, 1023, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-09 03:17:00', 1),
(3899, 1023, 13, 'Confidence Level', 1, 'low', 13, '2020-10-09 03:17:00', 1),
(3900, 1030, 13, 'Pressure Handling', 2, 'poor', 13, '2020-10-09 03:18:52', 1),
(3901, 1030, 13, 'Sustainability', 2, 'low', 13, '2020-10-09 03:18:52', 1),
(3902, 1021, 21, 'Sustainability', 2, 'she is not sustain long term bcz,already in accounts field xxampalso expecting above 12k salary', 21, '2020-10-09 03:30:45', 1),
(3903, 1028, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-09 03:34:45', 1),
(3904, 1028, 21, 'convincing Skills', 2, 'average ', 21, '2020-10-09 03:34:45', 1),
(3905, 1028, 21, 'Confidence Level', 1, 'very low', 21, '2020-10-09 03:34:45', 1),
(3906, 1028, 21, 'Sustainability', 2, 'not bold , not fit for sales..long distance', 21, '2020-10-09 03:34:45', 1),
(3907, 956, 36, 'Appearance', 4, 'k', 36, '2020-10-09 04:11:23', 1),
(3908, 956, 36, 'Attitude', 4, 'k', 36, '2020-10-09 04:11:23', 1),
(3909, 956, 36, 'Communication (Tamil)', 4, 'k', 36, '2020-10-09 04:11:23', 1),
(3910, 956, 36, 'Communication (English)', 3, 'k', 36, '2020-10-09 04:11:23', 1),
(3911, 956, 36, 'convincing Skills', 4, 'k', 36, '2020-10-09 04:11:23', 1),
(3912, 956, 36, 'Confidence Level', 4, 'k', 36, '2020-10-09 04:11:23', 1),
(3913, 956, 36, 'Importance (Job)', 3, 'k', 36, '2020-10-09 04:11:23', 1),
(3914, 956, 36, 'Observation skills', 3, 'k', 36, '2020-10-09 04:11:23', 1),
(3915, 956, 36, 'Pressure Handling', 3, 'k', 36, '2020-10-09 04:11:23', 1),
(3916, 956, 36, 'patience', 3, 'k', 36, '2020-10-09 04:11:23', 1),
(3917, 956, 36, 'Sustainability', 3, 'k', 36, '2020-10-09 04:11:23', 1),
(3918, 1024, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-10-09 04:28:17', 1),
(3919, 1024, 14, 'convincing Skills', 1, 'less', 14, '2020-10-09 04:28:17', 1),
(3920, 1024, 14, 'Confidence Level', 1, 'low', 14, '2020-10-09 04:28:17', 1),
(3921, 1024, 14, 'Observation skills', 1, 'not understand anything about the sales', 14, '2020-10-09 04:28:17', 1),
(3922, 892, 34, 'Appearance', 4, 'GOOD', 34, '2020-10-09 04:44:58', 1),
(3923, 892, 34, 'Attitude', 4, 'GOOD', 34, '2020-10-09 04:44:58', 1),
(3924, 892, 34, 'Communication (English)', 3, 'HE WILL ABLE TO MANAGE IN ENGLISH', 34, '2020-10-09 04:44:58', 1),
(3925, 892, 34, 'Communication (Tamil)', 5, 'GOOD', 34, '2020-10-09 04:44:58', 1),
(3926, 892, 34, 'Convincing Skills', 4, 'GOOD', 34, '2020-10-09 04:44:58', 1),
(3927, 892, 34, 'Confidence Level', 5, 'HIGH', 34, '2020-10-09 04:44:58', 1),
(3928, 892, 34, 'Importance Of Job', 4, 'NEED JOB IMMEADATELY AND HE WILL SUSTAIN FOR LONG TERM', 34, '2020-10-09 04:44:58', 1),
(3929, 892, 34, 'Observation Skills', 4, 'GOOD', 34, '2020-10-09 04:44:58', 1),
(3930, 892, 34, 'Pressure Handling', 4, 'GOOD HANDLING', 34, '2020-10-09 04:44:58', 1),
(3931, 892, 34, 'patience', 4, 'GOOD', 34, '2020-10-09 04:44:58', 1),
(3932, 892, 34, 'Sustainability', 5, 'VERY GOOD SUSTAINABLITY', 34, '2020-10-09 04:44:58', 1),
(3933, 892, 34, 'Sales Experience', 4, 'GOOD', 34, '2020-10-09 04:44:58', 1),
(3934, 892, 34, 'Existing Experience Analyze', 4, 'GOOD', 34, '2020-10-09 04:44:58', 1),
(3935, 892, 34, 'Practical Challenges Outcome', 4, 'GOOD', 34, '2020-10-09 04:44:58', 1),
(3936, 892, 34, 'Willing To Work On Holidays', 4, 'HE WILL WORK IN HOLIDAYS', 34, '2020-10-09 04:44:58', 1),
(3937, 1035, 38, 'Appearance', 3, 'Good', 38, '2020-10-09 05:20:56', 1),
(3938, 1035, 38, 'Attitude', 3, 'satisfied with her communication and listening', 38, '2020-10-09 05:20:56', 1),
(3939, 1035, 38, 'Communication (Tamil)', 4, 'fluent kannada', 38, '2020-10-09 05:20:56', 1),
(3940, 1035, 38, 'Communication (English)', 3, 'good in english', 38, '2020-10-09 05:20:56', 1),
(3941, 1035, 38, 'Importance (Job)', 3, 'father late...only mother is earning 11k per month', 38, '2020-10-09 05:20:56', 1),
(3942, 1035, 38, 'Sustainability', 4, 'Job needed candidate', 38, '2020-10-09 05:20:56', 1),
(3943, 1002, 38, 'Attitude', 3, 'Good in communication', 38, '2020-10-09 05:24:00', 1),
(3944, 1002, 38, 'Communication (Tamil)', 4, 'fluent kannada', 38, '2020-10-09 05:24:00', 1),
(3945, 1002, 38, 'Communication (English)', 3, 'Not bad manageable', 38, '2020-10-09 05:24:00', 1),
(3946, 1002, 38, 'Observation skills', 3, 'average not bad', 38, '2020-10-09 05:24:00', 1),
(3947, 751, 19, 'Communication (English)', 1, 'communication is not good', 19, '2020-10-09 05:25:57', 1),
(3948, 751, 19, 'Sustainability', 1, 'he is not fit for sales', 19, '2020-10-09 05:25:57', 1),
(3949, 751, 19, 'Willing To Work On Holidays', 1, 'not willing in working', 19, '2020-10-09 05:25:57', 1),
(3950, 892, 44, 'Communication (English)', 3, 'Good  communication skill', 44, '2020-10-09 05:34:10', 1),
(3951, 892, 44, 'Sales Experience', 3, 'Having good experience in other field', 44, '2020-10-09 05:34:10', 1),
(3952, 892, 44, 'Existing Experience Analyze', 3, 'Good tracker from previous company', 44, '2020-10-09 05:34:10', 1),
(3953, 892, 44, 'Willing To Work On Holidays', 3, 'he ready to work on holidays', 44, '2020-10-09 05:34:10', 1),
(3954, 1043, 14, 'Communication (Tamil)', 1, 'pronunciation not good', 14, '2020-10-10 11:20:13', 1),
(3955, 1043, 14, 'convincing Skills', 1, 'less', 14, '2020-10-10 11:20:13', 1),
(3956, 1043, 14, 'Confidence Level', 1, 'low', 14, '2020-10-10 11:20:13', 1),
(3957, 1048, 14, 'Communication (Tamil)', 1, 'not good pronunciation skill', 14, '2020-10-10 01:15:05', 1),
(3958, 1048, 14, 'convincing Skills', 1, 'less', 14, '2020-10-10 01:15:05', 1),
(3959, 1048, 14, 'Observation skills', 1, 'understanding level less', 14, '2020-10-10 01:15:05', 1),
(3960, 1037, 21, 'Appearance', 4, 'ok', 21, '2020-10-10 03:03:09', 1),
(3961, 1037, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-10 03:03:09', 1),
(3962, 1037, 21, 'Confidence Level', 2, 'low', 21, '2020-10-10 03:03:09', 1),
(3963, 1037, 21, 'Sustainability', 1, 'not  sustain long term xxamp also joining it course , xxampnow he want data entry job.. ', 21, '2020-10-10 03:03:09', 1),
(3964, 1054, 21, 'Appearance', 3, 'ok', 21, '2020-10-10 03:08:17', 1),
(3965, 1054, 21, 'Communication (Tamil)', 4, 'ok good ', 21, '2020-10-10 03:08:17', 1),
(3966, 1054, 21, 'Importance (Job)', 3, '20k family income', 21, '2020-10-10 03:08:17', 1),
(3967, 1054, 21, 'Sustainability', 2, 'not sustain long term becz, she already worked courier process related system work..', 21, '2020-10-10 03:08:17', 1),
(3968, 1049, 21, 'Appearance', 4, 'ok', 21, '2020-10-10 03:11:39', 1),
(3969, 1049, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-10 03:11:39', 1),
(3970, 1049, 21, 'Pressure Handling', 1, 'no sales skills', 21, '2020-10-10 03:11:39', 1),
(3971, 1049, 21, 'Sustainability', 2, 'not sustain bcz, he  have more 10  yrs experienced  in front office asst in hotel xxamp resorts ...also expecting 15 k above for crm ', 21, '2020-10-10 03:11:39', 1),
(3972, 1057, 44, 'Communication (English)', 1, 'Poor communication', 44, '2020-10-12 10:37:19', 1),
(3973, 1057, 44, 'Sales Experience', 1, 'He is not fit for sales', 44, '2020-10-12 10:37:19', 1),
(3974, 1076, 15, 'Appearance', 4, 'god', 15, '2020-10-12 11:52:09', 1),
(3975, 1076, 15, 'Attitude', 4, 'good', 15, '2020-10-12 11:52:09', 1),
(3976, 1076, 15, 'Communication (English)', 4, 'good', 15, '2020-10-12 11:52:09', 1),
(3977, 1076, 15, 'Communication (Tamil)', 4, 'good', 15, '2020-10-12 11:52:09', 1),
(3978, 1076, 15, 'Convincing Skills', 3, 'okay', 15, '2020-10-12 11:52:09', 1),
(3979, 1076, 15, 'Confidence Level', 4, 'good', 15, '2020-10-12 11:52:09', 1),
(3980, 1076, 15, 'Importance Of Job', 5, 'money problem', 15, '2020-10-12 11:52:09', 1),
(3981, 1076, 15, 'Sustainability', 4, 'sustain for long term', 15, '2020-10-12 11:52:09', 1),
(3982, 1082, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-10-12 12:48:09', 1),
(3983, 1082, 14, 'convincing Skills', 1, 'less', 14, '2020-10-12 12:48:09', 1),
(3984, 1082, 14, 'Confidence Level', 1, 'low', 14, '2020-10-12 12:48:09', 1),
(3985, 1083, 14, 'convincing Skills', 1, 'less', 14, '2020-10-12 12:49:24', 1),
(3986, 1083, 14, 'Confidence Level', 1, 'low', 14, '2020-10-12 12:49:24', 1),
(3987, 1081, 14, 'Communication (Tamil)', 1, 'pronunciation not good', 14, '2020-10-12 12:50:40', 1),
(3988, 1081, 14, 'Confidence Level', 1, 'less', 14, '2020-10-12 12:50:40', 1),
(3989, 1081, 14, 'Observation skills', 1, 'not understand anything about sales', 14, '2020-10-12 12:50:40', 1),
(3990, 1097, 16, 'Communication (English)', 1, 'BAD', 16, '2020-10-12 12:56:39', 1),
(3991, 1097, 16, 'Communication (Tamil)', 1, 'BAD', 16, '2020-10-12 12:56:39', 1),
(3992, 1097, 16, 'Convincing Skills', 1, 'BAD', 16, '2020-10-12 12:56:39', 1),
(3993, 1097, 16, 'Sustainability', 1, 'DOUBT', 16, '2020-10-12 12:56:39', 1),
(3994, 1076, 8, 'Sustainability', 2, 'will not sustain for long term sal exp is 18K', 8, '2020-10-12 01:05:20', 1),
(3995, 1067, 38, 'Attitude', 1, 'her voice is too low', 38, '2020-10-12 01:47:42', 1),
(3996, 1067, 38, 'Communication (Tamil)', 1, 'donxquott know kannada', 38, '2020-10-12 01:47:42', 1),
(3997, 1067, 38, 'Communication (English)', 2, 'average', 38, '2020-10-12 01:47:42', 1),
(3998, 1067, 38, 'Pressure Handling', 1, 'she will not handle pressure', 38, '2020-10-12 01:47:42', 1),
(3999, 1068, 38, 'Importance (Job)', 1, 'she is looking for non voice process', 38, '2020-10-12 01:48:20', 1),
(4000, 1078, 38, 'Attitude', 3, 'Good in communication xxamp listening', 38, '2020-10-12 01:51:26', 1),
(4001, 1078, 38, 'Communication (English)', 2, 'manageable english', 38, '2020-10-12 01:51:26', 1),
(4002, 1078, 38, 'convincing Skills', 2, 'average', 38, '2020-10-12 01:51:26', 1),
(4003, 1078, 38, 'Observation skills', 3, 'good', 38, '2020-10-12 01:51:26', 1),
(4004, 1078, 38, 'Pressure Handling', 3, 'she will manage because already experienced', 38, '2020-10-12 01:51:26', 1),
(4005, 1089, 40, 'Appearance', 5, 'Professional Attire', 40, '2020-10-12 01:55:22', 1),
(4006, 1089, 40, 'Attitude', 4, 'Behave professionally', 40, '2020-10-12 01:55:22', 1),
(4007, 1089, 40, 'Communication (English)', 1, 'Not good in communication', 40, '2020-10-12 01:55:22', 1),
(4008, 1089, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2020-10-12 01:55:22', 1),
(4009, 1089, 40, 'Convincing Skills', 3, 'Neutral response in convincing skills', 40, '2020-10-12 01:55:22', 1),
(4010, 1089, 40, 'Confidence Level', 4, 'Good', 40, '2020-10-12 01:55:22', 1),
(4011, 1089, 40, 'Importance Of Job', 4, 'Planning to start a business 2 years downline seems like long runner', 40, '2020-10-12 01:55:22', 1),
(4012, 1089, 40, 'Observation Skills', 4, 'Good', 40, '2020-10-12 01:55:22', 1),
(4013, 1089, 40, 'Pressure Handling', 4, 'good', 40, '2020-10-12 01:55:22', 1),
(4014, 1089, 40, 'patience', 2, 'Seems short temper', 40, '2020-10-12 01:55:22', 1),
(4015, 1089, 40, 'Sustainability', 3, 'Yet to decide', 40, '2020-10-12 01:55:22', 1),
(4016, 1089, 40, 'Sales Experience', 3, 'Not in sales revenue generation', 40, '2020-10-12 01:55:22', 1),
(4017, 1089, 40, 'Existing Experience Analyze', 3, 'Might be', 40, '2020-10-12 01:55:22', 1),
(4018, 1089, 40, 'Practical Challenges Outcome', 3, 'Need to decide', 40, '2020-10-12 01:55:22', 1),
(4019, 1089, 40, 'Willing To Work On Holidays', 5, 'Willing to work in anytime', 40, '2020-10-12 01:55:22', 1),
(4020, 1088, 38, 'Attitude', 4, 'good in fluency', 38, '2020-10-12 01:55:39', 1),
(4021, 1088, 38, 'Communication (English)', 4, 'good in fluent english', 38, '2020-10-12 01:55:39', 1),
(4022, 1088, 38, 'Observation skills', 3, 'good...she worked as a tellecaller for past 6years', 38, '2020-10-12 01:55:39', 1),
(4023, 1088, 38, 'Pressure Handling', 3, 'she will manage', 38, '2020-10-12 01:55:39', 1),
(4024, 1088, 38, 'Sustainability', 2, 'she is telling too far from my house....but hardly 30mins only travelling.....check this point from your side', 38, '2020-10-12 01:55:39', 1),
(4025, 1084, 21, 'Communication (Tamil)', 3, 'ok', 21, '2020-10-12 02:42:35', 1),
(4026, 1084, 21, 'Observation skills', 3, 'low', 21, '2020-10-12 02:42:35', 1),
(4027, 1084, 21, 'Sustainability', 2, 'not sustain long term ', 21, '2020-10-12 02:42:35', 1),
(4028, 1075, 21, 'Communication (Tamil)', 3, 'ok good', 21, '2020-10-12 02:44:46', 1),
(4029, 1075, 21, 'Communication (English)', 3, 'below avg', 21, '2020-10-12 02:44:46', 1),
(4030, 1075, 21, 'Confidence Level', 1, 'low', 21, '2020-10-12 02:44:46', 1),
(4031, 1075, 21, 'patience', 4, 'ok', 21, '2020-10-12 02:44:46', 1),
(4032, 1075, 21, 'Sustainability', 2, 'not sustain ', 21, '2020-10-12 02:44:46', 1),
(4033, 1074, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-12 02:49:01', 1),
(4034, 1074, 21, 'Pressure Handling', 3, 'ok', 21, '2020-10-12 02:49:01', 1),
(4035, 1074, 21, 'patience', 4, 'ok ', 21, '2020-10-12 02:49:01', 1),
(4036, 1074, 21, 'Sustainability', 3, 'need to check distance,2 hrs  ', 21, '2020-10-12 02:49:01', 1),
(4037, 1091, 16, 'Appearance', 4, 'GOOD', 16, '2020-10-12 03:08:08', 1),
(4038, 1091, 16, 'Communication (Tamil)', 4, 'GOOD', 16, '2020-10-12 03:08:08', 1),
(4039, 1091, 16, 'Convincing Skills', 4, 'GOOD', 16, '2020-10-12 03:08:08', 1),
(4040, 1091, 16, 'Sustainability', 4, 'NO DOUBT', 16, '2020-10-12 03:08:08', 1),
(4041, 1011, 21, 'Appearance', 4, 'ok', 21, '2020-10-12 03:16:38', 1),
(4042, 1011, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-12 03:16:38', 1),
(4043, 1011, 21, 'Communication (English)', 3, 'below avg', 21, '2020-10-12 03:16:38', 1),
(4044, 1011, 21, 'Confidence Level', 2, 'low', 21, '2020-10-12 03:16:38', 1),
(4045, 1011, 21, 'Sustainability', 2, 'not sustain long term  bcz of family backround', 21, '2020-10-12 03:16:38', 1),
(4046, 1077, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-10-12 03:29:49', 1),
(4047, 1077, 14, 'convincing Skills', 1, 'less', 14, '2020-10-12 03:29:49', 1),
(4048, 1104, 14, 'Communication (Tamil)', 1, 'pronunciation not good', 14, '2020-10-12 03:30:28', 1),
(4049, 1104, 14, 'Confidence Level', 1, 'low', 14, '2020-10-12 03:30:28', 1),
(4050, 1073, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-12 03:31:06', 1),
(4051, 1073, 13, 'convincing Skills', 5, 'good', 13, '2020-10-12 03:31:06', 1),
(4052, 1079, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-10-12 03:31:33', 1),
(4053, 1079, 14, 'convincing Skills', 4, 'good', 14, '2020-10-12 03:31:33', 1),
(4054, 1079, 14, 'Observation skills', 4, 'handle the sales skills', 14, '2020-10-12 03:31:33', 1),
(4055, 1098, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-12 03:32:23', 1),
(4056, 1098, 13, 'Confidence Level', 2, 'low', 13, '2020-10-12 03:32:23', 1),
(4057, 999, 13, 'Communication (Tamil)', 3, 'low', 13, '2020-10-12 03:33:57', 1),
(4058, 999, 13, 'convincing Skills', 2, 'poor', 13, '2020-10-12 03:33:57', 1),
(4059, 1051, 13, 'Importance (Job)', 2, 'less', 13, '2020-10-12 03:44:22', 1),
(4060, 1051, 13, 'Sustainability', 2, 'low', 13, '2020-10-12 03:44:22', 1),
(4061, 1095, 38, 'Attitude', 3, 'Good In Communiction xxamp Listening', 38, '2020-10-12 05:26:16', 1),
(4062, 1095, 38, 'Communication (Tamil)', 4, 'Kannada Communication Is Good', 38, '2020-10-12 05:26:16', 1),
(4063, 1095, 38, 'Communication (English)', 2, 'Manageable', 38, '2020-10-12 05:26:16', 1),
(4064, 1095, 38, 'Importance (Job)', 4, 'Dad Is Barber...She Have To Support To Her Family', 38, '2020-10-12 05:26:16', 1),
(4065, 1095, 38, 'Observation skills', 3, 'good', 38, '2020-10-12 05:26:16', 1),
(4066, 1095, 38, 'Sustainability', 3, 'Job Needed Candidate', 38, '2020-10-12 05:26:16', 1),
(4067, 1044, 51, 'Appearance', 3, 'his appearnace is good .', 51, '2020-10-13 10:02:31', 1),
(4068, 1044, 51, 'Communication (English)', 3, 'his english communicaation is normal', 51, '2020-10-13 10:02:31', 1),
(4069, 1044, 51, 'Communication (Tamil)', 4, 'His tamil Communicaation Is good', 51, '2020-10-13 10:02:31', 1),
(4070, 1044, 51, 'Convincing Skills', 4, 'convicing skills is more good with him', 51, '2020-10-13 10:02:31', 1),
(4071, 1044, 51, 'Willing To Work On Holidays', 4, 'willing to work on holidays', 51, '2020-10-13 10:02:31', 1),
(4072, 1111, 21, 'Appearance', 3, 'ok', 21, '2020-10-13 11:07:23', 1),
(4073, 1111, 21, 'Confidence Level', 1, 'very low', 21, '2020-10-13 11:07:23', 1),
(4074, 1111, 21, 'Sustainability', 1, 'not sustain long term', 21, '2020-10-13 11:07:23', 1),
(4075, 1110, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-13 11:55:20', 1),
(4076, 1110, 13, 'convincing Skills', 4, 'good', 13, '2020-10-13 11:55:20', 1),
(4077, 1110, 13, 'Confidence Level', 5, 'good', 13, '2020-10-13 11:55:20', 1),
(4078, 1108, 14, 'Communication (Tamil)', 1, 'pronunciation not good', 14, '2020-10-13 12:00:16', 1),
(4079, 1108, 14, 'convincing Skills', 1, 'less', 14, '2020-10-13 12:00:16', 1),
(4080, 1108, 14, 'Confidence Level', 1, 'low', 14, '2020-10-13 12:00:16', 1),
(4081, 1112, 21, 'Appearance', 4, 'ok', 21, '2020-10-13 12:09:40', 1),
(4082, 1112, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-13 12:09:40', 1),
(4083, 1112, 21, 'convincing Skills', 3, 'avg', 21, '2020-10-13 12:09:40', 1),
(4084, 1112, 21, 'Sustainability', 2, 'not sustain long term', 21, '2020-10-13 12:09:40', 1),
(4085, 1124, 13, 'Communication (Tamil)', 1, 'very poor', 13, '2020-10-13 12:45:56', 1),
(4086, 1124, 13, 'convincing Skills', 2, 'low', 13, '2020-10-13 12:45:56', 1),
(4087, 1130, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-10-13 01:12:21', 1),
(4088, 1130, 14, 'Observation skills', 1, 'understanding level less', 14, '2020-10-13 01:12:21', 1),
(4089, 1110, 8, 'Sustainability', 2, 'long distance  and  no fluency in speech', 8, '2020-10-13 01:19:20', 1),
(4090, 1115, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-13 03:47:37', 1),
(4091, 1115, 13, 'convincing Skills', 4, 'good', 13, '2020-10-13 03:47:37', 1),
(4092, 1152, 14, 'convincing Skills', 1, 'less', 14, '2020-10-13 04:01:12', 1),
(4093, 1152, 14, 'Confidence Level', 1, 'low', 14, '2020-10-13 04:01:12', 1),
(4094, 1152, 14, 'Pressure Handling', 1, 'not pressure handling ', 14, '2020-10-13 04:01:12', 1),
(4095, 1171, 13, 'Communication (Tamil)', 1, 'poor', 13, '2020-10-14 11:59:32', 1),
(4096, 1171, 13, 'convincing Skills', 2, 'low', 13, '2020-10-14 11:59:32', 1),
(4097, 1157, 21, 'Appearance', 3, 'ok', 21, '2020-10-14 12:09:55', 1),
(4098, 1157, 21, 'Communication (Tamil)', 4, 'ok', 21, '2020-10-14 12:09:55', 1),
(4099, 1157, 21, 'Importance (Job)', 2, 'both father xxamp mother are govt employee 50 k above per month ', 21, '2020-10-14 12:09:55', 1),
(4100, 1157, 21, 'Sustainability', 1, 'he is doing mBA , week end class have ,', 21, '2020-10-14 12:09:55', 1),
(4101, 1156, 21, 'Appearance', 4, 'ok', 21, '2020-10-14 12:12:30', 1),
(4102, 1156, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-14 12:12:30', 1),
(4103, 1156, 21, 'convincing Skills', 3, 'she is already worked in jewel showroom', 21, '2020-10-14 12:12:30', 1),
(4104, 1156, 21, 'Importance (Job)', 3, 'yes she is need for family ', 21, '2020-10-14 12:12:30', 1),
(4105, 1156, 21, 'Sustainability', 4, 'ok, min 2yrs ', 21, '2020-10-14 12:12:30', 1),
(4106, 1120, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-14 12:17:24', 1),
(4107, 1120, 21, 'Confidence Level', 3, 'ok', 21, '2020-10-14 12:17:24', 1),
(4108, 1120, 21, 'Sustainability', 2, 'not sustain long term bcz , she compl B.ed , due to covid schools  are not opened now, once open she went', 21, '2020-10-14 12:17:24', 1),
(4109, 1153, 21, 'Sustainability', 2, 'rejected bcz, she worked in personal loan  at last 6 months , she quit bcz of target xxamp job pressure , also expecting 13 k salary ..', 21, '2020-10-14 12:20:18', 1),
(4110, 1150, 21, 'Sustainability', 2, 'Rejected Bcz, She Worked In Personal Loan  At Last 6 Months , She Quit Bcz Of Target xxamp Job Pressure , Also Expecting 13 K Salary ..', 21, '2020-10-14 12:22:00', 1),
(4111, 1170, 31, 'Appearance', 4, 'Neat ', 31, '2020-10-14 12:43:16', 1),
(4112, 1170, 31, 'Communication (Tamil)', 4, 'good', 31, '2020-10-14 12:43:16', 1),
(4113, 1170, 31, 'Sales Experience', 1, 'all his experience related to accounts and book keeping ', 31, '2020-10-14 12:43:16', 1),
(4114, 1172, 13, 'Communication (Tamil)', 2, 'low', 13, '2020-10-14 02:24:56', 1),
(4115, 1172, 13, 'convincing Skills', 2, 'low', 13, '2020-10-14 02:24:56', 1),
(4116, 1129, 13, 'Pressure Handling', 2, 'poor', 13, '2020-10-14 02:26:07', 1),
(4117, 1129, 13, 'Sustainability', 2, 'less', 13, '2020-10-14 02:26:07', 1),
(4118, 1173, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-10-14 02:49:33', 1),
(4119, 1173, 14, 'Observation skills', 4, 'good', 14, '2020-10-14 02:49:33', 1),
(4120, 810, 33, 'Appearance', 1, 'not good', 33, '2020-10-14 03:04:37', 1),
(4121, 810, 33, 'Attitude', 1, 'not good', 33, '2020-10-14 03:04:37', 1),
(4122, 810, 33, 'Communication (Tamil)', 2, 'not good', 33, '2020-10-14 03:04:37', 1),
(4123, 1044, 29, 'Appearance', 4, 'good', 29, '2020-10-14 03:32:00', 1),
(4124, 1044, 29, 'Convincing Skills', 4, 'good can improve', 29, '2020-10-14 03:32:00', 1),
(4125, 1044, 29, 'Confidence Level', 3, 'has vision for career and earnings', 29, '2020-10-14 03:32:00', 1),
(4126, 1044, 29, 'Sales Experience', 3, 'sales exper..', 29, '2020-10-14 03:32:00', 1),
(4127, 1183, 21, 'Appearance', 4, 'ok', 21, '2020-10-14 04:54:43', 1),
(4128, 1183, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-14 04:54:43', 1),
(4129, 1183, 21, 'convincing Skills', 3, 'already he have exp in dish recharge ', 21, '2020-10-14 04:54:43', 1),
(4130, 1183, 21, 'Sustainability', 1, 'not sustain 2 comp quit in last 1 yr bec of personal reason , ', 21, '2020-10-14 04:54:43', 1),
(4131, 1179, 13, 'Communication (Tamil)', 4, 'GOOD', 13, '2020-10-14 05:02:23', 1),
(4132, 1179, 13, 'convincing Skills', 4, 'GOOD', 13, '2020-10-14 05:02:23', 1),
(4133, 1151, 13, 'Pressure Handling', 1, 'LOW', 13, '2020-10-14 05:07:07', 1),
(4134, 1151, 13, 'Sustainability', 2, 'LESS', 13, '2020-10-14 05:07:07', 1),
(4135, 1209, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-15 11:54:38', 1),
(4136, 1209, 13, 'convincing Skills', 4, 'good', 13, '2020-10-15 11:54:38', 1),
(4137, 1201, 13, 'Pressure Handling', 1, 'low', 13, '2020-10-15 01:02:38', 1),
(4138, 1214, 13, 'Communication (Tamil)', 2, 'low', 13, '2020-10-15 02:01:38', 1),
(4139, 1226, 14, 'Communication (Tamil)', 3, 'good', 14, '2020-10-15 02:27:14', 1),
(4140, 1226, 14, 'convincing Skills', 4, 'good', 14, '2020-10-15 02:27:14', 1),
(4141, 1207, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-10-15 02:29:37', 1),
(4142, 1207, 14, 'convincing Skills', 4, 'good', 14, '2020-10-15 02:29:37', 1),
(4143, 1219, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-10-15 02:30:27', 1),
(4144, 1219, 14, 'Observation skills', 1, 'not understand anything ', 14, '2020-10-15 02:30:27', 1),
(4145, 1188, 14, 'Communication (Tamil)', 1, 'pronunciation not good', 14, '2020-10-15 02:32:51', 1),
(4146, 1188, 14, 'convincing Skills', 1, 'less', 14, '2020-10-15 02:32:51', 1),
(4147, 1188, 14, 'Confidence Level', 1, 'low', 14, '2020-10-15 02:32:51', 1),
(4148, 1221, 30, 'Appearance', 3, 'good', 30, '2020-10-15 05:59:40', 1),
(4149, 1221, 30, 'Attitude', 3, 'Good In Communication And Listening', 30, '2020-10-15 05:59:40', 1),
(4150, 1221, 30, 'Communication (English)', 2, 'manageable', 30, '2020-10-15 05:59:40', 1),
(4151, 1221, 30, 'Communication (Tamil)', 4, 'fluent kannada', 30, '2020-10-15 05:59:40', 1),
(4152, 1221, 30, 'Convincing Skills', 3, 'already having experience in banking sector', 30, '2020-10-15 05:59:40', 1),
(4153, 1221, 30, 'Importance Of Job', 3, 'job needed candidate', 30, '2020-10-15 05:59:40', 1),
(4154, 1221, 30, 'Pressure Handling', 3, 'she is too matured...she will handle', 30, '2020-10-15 05:59:40', 1),
(4155, 1221, 30, 'Sales Experience', 3, '1year expereince  as hdfc sales executive', 30, '2020-10-15 05:59:40', 1),
(4156, 1177, 21, 'Sustainability', 1, 'not sustain bcz , he is interested in customer support proces, dont want sales  profile, also interested in iT prof', 21, '2020-10-15 06:11:39', 1),
(4157, 1215, 21, 'Sustainability', 1, 'he is interested in father buisness, current situtation only need job', 21, '2020-10-15 06:13:09', 1),
(4158, 1220, 21, 'Sustainability', 1, 'not bold not sustain bcz, 1;30 hrs travel', 21, '2020-10-15 06:14:06', 1),
(4159, 1245, 13, 'Communication (Tamil)', 2, 'POOR', 13, '2020-10-16 11:12:20', 1),
(4160, 1245, 13, 'convincing Skills', 2, 'LOW', 13, '2020-10-16 11:12:20', 1),
(4161, 1243, 21, 'Appearance', 3, 'ok ', 21, '2020-10-16 11:31:02', 1),
(4162, 1243, 21, 'Communication (Tamil)', 3, 'ok ', 21, '2020-10-16 11:31:02', 1),
(4163, 1243, 21, 'Communication (English)', 1, 'pronouncation  prob', 21, '2020-10-16 11:31:02', 1),
(4164, 1243, 21, 'Confidence Level', 1, 'no ', 21, '2020-10-16 11:31:02', 1),
(4165, 1243, 21, 'Sustainability', 1, 'not sustain, low confidence , not bold, noflow in words ,come with friend only..', 21, '2020-10-16 11:31:02', 1),
(4166, 1228, 13, 'Confidence Level', 2, 'low', 13, '2020-10-16 01:05:43', 1),
(4167, 1174, 13, 'Communication (Tamil)', 5, 'good', 13, '2020-10-16 01:08:33', 1),
(4168, 1174, 13, 'convincing Skills', 4, 'good', 13, '2020-10-16 01:08:33', 1),
(4169, 1242, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-10-16 01:28:01', 1),
(4170, 1242, 14, 'convincing Skills', 4, 'good', 14, '2020-10-16 01:28:01', 1),
(4171, 1251, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-10-16 01:30:26', 1),
(4172, 1251, 14, 'convincing Skills', 4, 'good', 14, '2020-10-16 01:30:26', 1),
(4173, 1256, 39, 'Communication (English)', 3, 'Average in communication', 39, '2020-10-16 02:30:11', 1),
(4174, 1256, 39, 'Convincing Skills', 2, 'Not enough', 39, '2020-10-16 02:30:11', 1),
(4175, 1256, 39, 'Sustainability', 1, 'Will not sustain\n', 39, '2020-10-16 02:30:11', 1),
(4176, 1263, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-16 06:02:50', 1),
(4177, 1263, 13, 'convincing Skills', 2, 'low', 13, '2020-10-16 06:02:50', 1),
(4178, 1255, 13, 'Communication (Tamil)', 3, 'Average', 13, '2020-10-17 01:13:26', 1),
(4179, 1282, 13, 'Communication (Tamil)', 5, 'good', 13, '2020-10-17 02:07:58', 1),
(4180, 1282, 13, 'convincing Skills', 4, 'good', 13, '2020-10-17 02:07:58', 1),
(4181, 1281, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-10-17 03:24:08', 1),
(4182, 1281, 14, 'Confidence Level', 4, 'good', 14, '2020-10-17 03:24:08', 1),
(4183, 1281, 14, 'Observation skills', 4, 'understanding skills good', 14, '2020-10-17 03:24:08', 1),
(4184, 1288, 13, 'Sustainability', 1, 'Less', 13, '2020-10-17 04:26:08', 1),
(4185, 1284, 21, 'Sustainability', 1, 'she is come with friend only 7also not bold...', 21, '2020-10-17 06:25:26', 1),
(4186, 1285, 21, 'Sustainability', 1, 'not bold ,no voice clarity, she is come with his friend ', 21, '2020-10-17 06:26:29', 1),
(4187, 1257, 21, 'Communication (Tamil)', 3, 'ok', 21, '2020-10-17 06:29:05', 1),
(4188, 1257, 21, 'Sustainability', 1, 'not sustain bez his brother also work in lic ...,already teeth pain ...', 21, '2020-10-17 06:29:05', 1),
(4189, 1261, 21, 'Sustainability', 1, 'he is interested in customer care base or cus support', 21, '2020-10-17 06:29:59', 1),
(4190, 1301, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-10-19 12:27:56', 1),
(4191, 1301, 14, 'convincing Skills', 4, 'good', 14, '2020-10-19 12:27:56', 1),
(4192, 1308, 13, 'Communication (Tamil)', 1, 'poor', 13, '2020-10-19 01:03:02', 1),
(4193, 1308, 13, 'convincing Skills', 2, 'low', 13, '2020-10-19 01:03:02', 1),
(4194, 1302, 21, 'Appearance', 4, 'ok', 21, '2020-10-19 01:09:35', 1),
(4195, 1302, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-19 01:09:35', 1),
(4196, 1302, 21, 'Confidence Level', 3, 'ok she is fresher ', 21, '2020-10-19 01:09:35', 1),
(4197, 1302, 21, 'Sustainability', 3, 'need to check ,sustainability ,she is come with friend ,, xxamp also need to check distance ', 21, '2020-10-19 01:09:35', 1),
(4198, 1306, 14, 'Communication (Tamil)', 1, 'pronunciation not good', 14, '2020-10-19 02:46:01', 1),
(4199, 1306, 14, 'convincing Skills', 1, 'low', 14, '2020-10-19 02:46:01', 1),
(4200, 1310, 21, 'Appearance', 3, 'ok', 21, '2020-10-19 03:02:50', 1),
(4201, 1310, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-19 03:02:50', 1),
(4202, 1310, 21, 'Pressure Handling', 2, 'fresher ', 21, '2020-10-19 03:02:50', 1),
(4203, 1310, 21, 'Sustainability', 2, 'not  entrybold, low confidence ,she is interested in data', 21, '2020-10-19 03:02:50', 1),
(4204, 1164, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-10-19 03:32:50', 1),
(4205, 1164, 14, 'convincing Skills', 1, 'less', 14, '2020-10-19 03:32:50', 1),
(4206, 1164, 14, 'Confidence Level', 1, 'low', 14, '2020-10-19 03:32:50', 1),
(4207, 1250, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-19 03:57:55', 1),
(4208, 1328, 13, 'Pressure Handling', 2, 'low', 13, '2020-10-20 01:14:48', 1),
(4209, 1328, 13, 'Sustainability', 2, 'low', 13, '2020-10-20 01:14:48', 1),
(4210, 1329, 13, 'Communication (Tamil)', 1, 'poor', 13, '2020-10-20 01:15:41', 1),
(4211, 1329, 13, 'convincing Skills', 2, 'low', 13, '2020-10-20 01:15:41', 1),
(4212, 1315, 24, 'Convincing Skills', 1, 'voice not good', 24, '2020-10-20 03:15:19', 1),
(4213, 1331, 57, 'Convincing Skills', 3, 'OK FOR SALES FIELD', 57, '2020-10-20 04:01:11', 1),
(4214, 1352, 29, 'Convincing Skills', 1, 'Could not', 29, '2020-10-20 04:32:24', 1),
(4215, 1352, 29, 'Importance Of Job', 1, 'Already switched in last 4 years', 29, '2020-10-20 04:32:24', 1),
(4216, 1352, 29, 'Sustainability', 1, 'will not fit for any profile', 29, '2020-10-20 04:32:24', 1),
(4217, 1352, 29, 'Sales Experience', 1, 'no exp of RM profile', 29, '2020-10-20 04:32:24', 1),
(4218, 1305, 29, 'Appearance', 3, 'good', 29, '2020-10-20 04:38:10', 1),
(4219, 1305, 29, 'Convincing Skills', 3, 'can improve', 29, '2020-10-20 04:38:10', 1),
(4220, 1305, 29, 'Importance Of Job', 4, 'Need Better Opportunity can do well', 29, '2020-10-20 04:38:10', 1),
(4221, 1305, 29, 'Pressure Handling', 4, 'Can handle pressure ', 29, '2020-10-20 04:38:10', 1),
(4222, 1305, 29, 'Sales Experience', 2, 'Need to improve ', 29, '2020-10-20 04:38:10', 1),
(4223, 1305, 29, 'Willing To Work On Holidays', 3, 'will work', 29, '2020-10-20 04:38:10', 1),
(4224, 1347, 21, 'Appearance', 3, 'ok', 21, '2020-10-20 04:40:43', 1),
(4225, 1347, 21, 'Communication (Tamil)', 3, 'ok good', 21, '2020-10-20 04:40:43', 1),
(4226, 1347, 21, 'Confidence Level', 2, 'ok', 21, '2020-10-20 04:40:43', 1),
(4227, 1347, 21, 'Sustainability', 2, 'not sustain , she is interested in non voice job xxampalso come with his friend only ', 21, '2020-10-20 04:40:43', 1),
(4228, 1335, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-20 04:46:02', 1),
(4229, 1335, 21, 'Confidence Level', 3, 'ok ', 21, '2020-10-20 04:46:02', 1),
(4230, 1335, 21, 'Pressure Handling', 3, 'ok already have exp in personal loan', 21, '2020-10-20 04:46:02', 1),
(4231, 1317, 21, 'Appearance', 3, 'ok', 21, '2020-10-20 04:53:12', 1),
(4232, 1317, 21, 'Communication (Tamil)', 3, 'ok good', 21, '2020-10-20 04:53:12', 1),
(4233, 1317, 21, 'Confidence Level', 3, 'average', 21, '2020-10-20 04:53:12', 1),
(4234, 1317, 21, 'Sustainability', 2, 'not sustain ,he searched data  entry job ...', 21, '2020-10-20 04:53:12', 1),
(4235, 1331, 22, 'Appearance', 3, 'apperance is good', 22, '2020-10-20 07:24:18', 1),
(4236, 1331, 22, 'Attitude', 4, 'good', 22, '2020-10-20 07:24:18', 1),
(4237, 1331, 22, 'Communication (Tamil)', 3, 'speaking clarity is good', 22, '2020-10-20 07:24:18', 1),
(4238, 1331, 22, 'Convincing Skills', 3, 'health insurance explanation is good', 22, '2020-10-20 07:24:18', 1),
(4239, 1350, 14, 'Communication (Tamil)', 1, 'good', 14, '2020-10-21 11:16:34', 1),
(4240, 1350, 14, 'convincing Skills', 1, 'less', 14, '2020-10-21 11:16:34', 1),
(4241, 1351, 27, 'looking for a job change for career growth or salary growth?', 1, 'Looking for Salary Growth Only. he got hike in the current month itself. but expected more salary from that.   ', 27, '2020-10-21 12:45:45', 1),
(4242, 1355, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-21 01:30:09', 1),
(4243, 1355, 13, 'convincing Skills', 2, 'low', 13, '2020-10-21 01:30:09', 1),
(4244, 1356, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-21 01:36:09', 1),
(4245, 1356, 13, 'Sustainability', 2, 'low', 13, '2020-10-21 01:36:09', 1),
(4246, 1359, 13, 'Communication (Tamil)', 1, 'poor', 13, '2020-10-21 01:40:32', 1),
(4247, 1398, 24, 'Appearance', 1, 'not fit our profile', 24, '2020-10-21 02:22:34', 1),
(4248, 1299, 21, 'Appearance', 3, 'ok', 21, '2020-10-21 02:31:02', 1),
(4249, 1299, 21, 'Communication (Tamil)', 3, 'ok good', 21, '2020-10-21 02:31:02', 1),
(4250, 1299, 21, 'convincing Skills', 3, 'ok but fresher ', 21, '2020-10-21 02:31:02', 1),
(4251, 1299, 21, 'Sustainability', 1, 'min 1 yr', 21, '2020-10-21 02:31:02', 1),
(4252, 1348, 21, 'Sustainability', 2, 'need to check bcz ,she already worked 3  companies in last 4 yrs xxamp also expecting high salary for crm 18k above ', 21, '2020-10-21 02:33:59', 1),
(4253, 1390, 13, 'Communication (Tamil)', 2, 'low', 13, '2020-10-21 02:37:22', 1),
(4254, 1381, 21, 'Appearance', 3, 'ok', 21, '2020-10-21 02:39:04', 1),
(4255, 1381, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-21 02:39:04', 1),
(4256, 1381, 21, 'Pressure Handling', 2, ' he already relived  credit card job bcz Not Able To Handle Pressure...', 21, '2020-10-21 02:39:04', 1),
(4257, 1373, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-21 02:44:48', 1),
(4258, 1373, 21, 'convincing Skills', 1, 'low ', 21, '2020-10-21 02:44:48', 1),
(4259, 1373, 21, 'Pressure Handling', 1, 'fresher , not bold ', 21, '2020-10-21 02:44:48', 1),
(4260, 1382, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-21 02:46:55', 1),
(4261, 1382, 13, 'convincing Skills', 2, 'low', 13, '2020-10-21 02:46:55', 1),
(4262, 1363, 21, 'Appearance', 3, 'ok', 21, '2020-10-21 02:47:51', 1),
(4263, 1363, 21, 'Communication (Tamil)', 4, 'ok  good', 21, '2020-10-21 02:47:51', 1),
(4264, 1363, 21, 'Communication (English)', 3, 'managble', 21, '2020-10-21 02:47:51', 1),
(4265, 1363, 21, 'convincing Skills', 3, 'already worked in trading process', 21, '2020-10-21 02:47:51', 1),
(4266, 1363, 21, 'Importance (Job)', 3, 'she need for family backround', 21, '2020-10-21 02:47:51', 1),
(4267, 1363, 21, 'Sustainability', 3, 'min 1.5 yrs', 21, '2020-10-21 02:47:51', 1),
(4268, 1353, 21, 'Pressure Handling', 2, 'already relived in credit card sales due to pressure ', 21, '2020-10-21 02:49:03', 1),
(4269, 1353, 21, 'Sustainability', 2, 'expecting 15 k above ', 21, '2020-10-21 02:49:03', 1),
(4270, 1372, 13, 'Communication (Tamil)', 1, 'poor', 13, '2020-10-21 02:49:11', 1),
(4271, 1372, 13, 'convincing Skills', 2, 'low', 13, '2020-10-21 02:49:11', 1),
(4272, 1391, 13, 'Communication (Tamil)', 2, 'low', 13, '2020-10-21 03:04:26', 1),
(4273, 1391, 13, 'Confidence Level', 1, 'less', 13, '2020-10-21 03:04:26', 1),
(4274, 1404, 13, 'Communication (Tamil)', 1, 'poor', 13, '2020-10-21 03:13:00', 1),
(4275, 1299, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-21 03:17:50', 1),
(4276, 1299, 13, 'convincing Skills', 4, 'good', 13, '2020-10-21 03:17:50', 1),
(4277, 1403, 21, 'Communication (Tamil)', 3, 'ok avg', 21, '2020-10-21 05:12:23', 1),
(4278, 1403, 21, 'Confidence Level', 2, 'dth recharge  process ', 21, '2020-10-21 05:12:23', 1),
(4279, 1403, 21, 'Sustainability', 1, 'he is expected 13 k above for crm', 21, '2020-10-21 05:12:23', 1),
(4280, 1332, 31, 'Appearance', 4, 'neat xxamp Good', 31, '2020-10-21 05:17:48', 1),
(4281, 1332, 31, 'Sales Experience', 1, 'No exp. in sales', 31, '2020-10-21 05:17:48', 1),
(4282, 1332, 31, 'Existing Experience Analyze', 1, 'Exp. in service only', 31, '2020-10-21 05:17:48', 1),
(4283, 1395, 57, 'Convincing Skills', 4, 'he is ok for sales field', 57, '2020-10-21 06:10:44', 1),
(4284, 1342, 19, 'Appearance', 3, 'looking good', 19, '2020-10-21 06:22:22', 1),
(4285, 1342, 19, 'Convincing Skills', 4, 'already exp in tele caller', 19, '2020-10-21 06:22:22', 1),
(4286, 1342, 19, 'Sustainability', 4, 'last year exp 3 years,job needed ', 19, '2020-10-21 06:22:22', 1),
(4287, 1358, 19, 'Convincing Skills', 1, 'no convincing skill', 19, '2020-10-21 06:30:02', 1),
(4288, 1358, 19, 'Sustainability', 1, 'wont sustain', 19, '2020-10-21 06:30:02', 1),
(4289, 1414, 21, 'Communication (Tamil)', 4, 'OK GOOD', 21, '2020-10-22 01:17:14', 1),
(4290, 1414, 21, 'Confidence Level', 3, 'OK', 21, '2020-10-22 01:17:14', 1),
(4291, 1414, 21, 'Importance (Job)', 1, 'family income 50k above for month', 21, '2020-10-22 01:17:14', 1),
(4292, 1414, 21, 'Pressure Handling', 3, 'non voice job in cognazant', 21, '2020-10-22 01:17:14', 1),
(4293, 1414, 21, 'Sustainability', 2, 'Non Voice Job In Cognazant', 21, '2020-10-22 01:17:14', 1),
(4294, 1421, 21, 'Communication (Tamil)', 3, 'ok good ', 21, '2020-10-22 01:26:49', 1),
(4295, 1421, 21, 'Confidence Level', 2, 'not bold ', 21, '2020-10-22 01:26:49', 1),
(4296, 1421, 21, 'Sustainability', 1, 'not bold xxamp low confidence  last 1 year she not went any job', 21, '2020-10-22 01:26:49', 1),
(4297, 1389, 13, 'Communication (Tamil)', 4, 'GOOD', 13, '2020-10-22 01:27:54', 1),
(4298, 1389, 13, 'convincing Skills', 4, 'GOOD', 13, '2020-10-22 01:27:54', 1),
(4299, 1422, 13, 'Pressure Handling', 2, 'POOR', 13, '2020-10-22 01:28:52', 1),
(4300, 1423, 13, 'Pressure Handling', 2, 'LOW', 13, '2020-10-22 01:29:56', 1),
(4301, 1423, 13, 'Sustainability', 2, 'LESS', 13, '2020-10-22 01:29:56', 1),
(4302, 1420, 21, 'Confidence Level', 1, 'very low', 21, '2020-10-22 01:30:05', 1),
(4303, 1420, 21, 'Importance (Job)', 1, 'her father worked in dubai.. ', 21, '2020-10-22 01:30:05', 1),
(4304, 1425, 13, 'convincing Skills', 3, 'poor', 13, '2020-10-22 01:32:24', 1),
(4305, 1425, 13, 'Pressure Handling', 2, 'low', 13, '2020-10-22 01:32:24', 1),
(4306, 1434, 13, 'Sustainability', 2, 'low', 13, '2020-10-22 01:34:22', 1),
(4307, 1367, 13, 'Pressure Handling', 2, 'low', 13, '2020-10-22 01:36:50', 1),
(4308, 1361, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-22 02:36:25', 1),
(4309, 1361, 13, 'convincing Skills', 4, 'good', 13, '2020-10-22 02:36:25', 1),
(4310, 1211, 54, 'attitude of the employee?', 4, 'Good', 54, '2020-10-22 06:02:34', 1),
(4311, 1452, 13, 'Communication (Tamil)', 4, 'GOOD', 13, '2020-10-23 12:21:02', 1),
(4312, 1452, 13, 'convincing Skills', 4, 'GOOD', 13, '2020-10-23 12:21:02', 1),
(4313, 1435, 13, 'Communication (Tamil)', 2, 'POOR', 13, '2020-10-23 12:23:29', 1),
(4314, 1435, 13, 'convincing Skills', 1, 'LOW', 13, '2020-10-23 12:23:29', 1),
(4315, 1455, 13, 'Communication (Tamil)', 1, 'poor', 13, '2020-10-23 12:24:34', 1),
(4316, 1459, 8, 'Importance Of Job', 3, 'yes', 8, '2020-10-23 02:30:20', 1),
(4317, 1459, 8, 'Pressure Handling', 2, 'yes', 8, '2020-10-23 02:30:20', 1),
(4318, 1459, 8, 'Sustainability', 2, 'need to check', 8, '2020-10-23 02:30:20', 1),
(4319, 1447, 8, 'Communication (Tamil)', 2, 'pronunciation is not clear', 8, '2020-10-23 02:33:19', 1),
(4320, 1448, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-23 02:52:02', 1),
(4321, 1448, 13, 'convincing Skills', 4, 'good', 13, '2020-10-23 02:52:02', 1),
(4322, 1462, 13, 'Pressure Handling', 1, 'poor', 13, '2020-10-23 02:52:53', 1),
(4323, 1461, 13, 'Pressure Handling', 1, 'poor', 13, '2020-10-23 02:54:33', 1),
(4324, 1460, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-23 02:55:38', 1),
(4325, 1460, 13, 'convincing Skills', 2, 'low', 13, '2020-10-23 02:55:38', 1),
(4326, 1453, 13, 'Communication (Tamil)', 1, 'poor', 13, '2020-10-23 03:33:46', 1),
(4327, 1417, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-10-23 03:35:49', 1),
(4328, 1417, 13, 'convincing Skills', 2, 'low', 13, '2020-10-23 03:35:49', 1),
(4329, 1417, 13, 'Pressure Handling', 1, 'poor', 13, '2020-10-23 03:35:49', 1),
(4330, 1458, 20, 'Communication (Tamil)', 2, 'communication average ', 20, '2020-10-24 08:47:59', 1),
(4331, 1430, 19, 'Sustainability', 4, 'he need job ', 19, '2020-10-24 10:35:14', 1),
(4332, 1340, 19, 'Sustainability', 1, 'no longer sustainability', 19, '2020-10-24 10:39:52', 1),
(4333, 1480, 44, 'Communication (English)', 1, 'Poor Communication', 44, '2020-10-24 11:40:01', 1),
(4334, 1480, 44, 'Sales Experience', 1, 'Donxquott have sales Experience', 44, '2020-10-24 11:40:01', 1),
(4335, 1489, 14, 'Sustainability', 1, 'less', 14, '2020-10-24 12:49:39', 1),
(4336, 1476, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-24 01:58:20', 1),
(4337, 1476, 13, 'convincing Skills', 4, 'good', 13, '2020-10-24 01:58:20', 1),
(4338, 1436, 13, 'Communication (Tamil)', 4, 'good', 13, '2020-10-24 02:02:02', 1),
(4339, 1436, 13, 'Confidence Level', 5, 'good', 13, '2020-10-24 02:02:02', 1),
(4340, 1402, 13, 'Pressure Handling', 2, 'poor', 13, '2020-10-24 02:23:55', 1),
(4341, 1402, 13, 'Sustainability', 2, 'less', 13, '2020-10-24 02:23:55', 1),
(4342, 1487, 13, 'Sustainability', 2, 'less', 13, '2020-10-24 02:24:45', 1),
(4343, 1405, 13, 'Pressure Handling', 1, 'low', 13, '2020-10-24 02:27:18', 1),
(4344, 1399, 13, 'Confidence Level', 2, 'less', 13, '2020-10-24 02:29:24', 1),
(4345, 1399, 13, 'Pressure Handling', 2, 'less', 13, '2020-10-24 02:29:24', 1),
(4346, 1473, 14, 'convincing Skills', 1, 'less', 14, '2020-10-24 02:57:51', 1),
(4347, 1473, 14, 'Confidence Level', 1, 'low', 14, '2020-10-24 02:57:51', 1),
(4348, 1488, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-10-24 02:59:10', 1),
(4349, 1488, 14, 'convincing Skills', 4, 'good', 14, '2020-10-24 02:59:10', 1),
(4350, 1486, 14, 'Confidence Level', 1, 'less', 14, '2020-10-24 03:11:24', 1),
(4351, 1490, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-10-24 04:00:21', 1),
(4352, 1490, 14, 'convincing Skills', 1, 'less', 14, '2020-10-24 04:00:21', 1),
(4353, 1491, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-10-24 04:30:46', 1),
(4354, 1491, 14, 'Observation skills', 1, 'not understand anything', 14, '2020-10-24 04:30:46', 1),
(4355, 1492, 14, 'Communication (Tamil)', 1, 'poor', 14, '2020-10-24 04:31:38', 1),
(4356, 1492, 14, 'convincing Skills', 1, 'less', 14, '2020-10-24 04:31:38', 1),
(4357, 1492, 14, 'Confidence Level', 1, 'low', 14, '2020-10-24 04:31:38', 1),
(4358, 1499, 13, 'Communication (Tamil)', 2, 'POOR', 13, '2020-10-26 11:10:12', 1),
(4359, 1502, 13, 'Communication (Tamil)', 5, 'GOOD', 13, '2020-10-26 12:34:07', 1),
(4360, 1500, 13, 'Communication (Tamil)', 1, 'poor', 13, '2020-10-26 12:35:43', 1),
(4361, 1508, 14, 'Communication (Tamil)', 1, 'pronunciation not good', 14, '2020-10-26 02:50:06', 1),
(4362, 1508, 14, 'convincing Skills', 1, 'very low', 14, '2020-10-26 02:50:06', 1),
(4363, 1501, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-10-27 11:03:17', 1),
(4364, 1501, 14, 'Observation skills', 4, 'good', 14, '2020-10-27 11:03:17', 1),
(4365, 1518, 19, 'Sustainability', 1, 'having doubt about his sustainability', 19, '2020-10-27 11:05:56', 1),
(4366, 1514, 20, 'Communication (Tamil)', 1, 'no fluency in communication even in tamil .', 20, '2020-10-27 11:07:39', 1),
(4367, 1534, 21, 'Appearance', 4, 'ok', 21, '2020-10-27 11:16:25', 1),
(4368, 1534, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-27 11:16:25', 1),
(4369, 1534, 21, 'convincing Skills', 1, 'very poor', 21, '2020-10-27 11:16:25', 1),
(4370, 1534, 21, 'Importance (Job)', 1, 'family income 60000 per month, time being for job', 21, '2020-10-27 11:16:25', 1),
(4371, 1534, 21, 'Sustainability', 1, 'not sustain bcz she need non voice  job..', 21, '2020-10-27 11:16:25', 1),
(4372, 1533, 21, 'Appearance', 4, 'ok', 21, '2020-10-27 11:36:37', 1),
(4373, 1533, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-27 11:36:37', 1),
(4374, 1533, 21, 'Communication (English)', 3, 'managable', 21, '2020-10-27 11:36:37', 1),
(4375, 1533, 21, 'convincing Skills', 1, 'poor', 21, '2020-10-27 11:36:37', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(4376, 1533, 21, 'Confidence Level', 2, 'low', 21, '2020-10-27 11:36:37', 1),
(4377, 1533, 21, 'Importance (Job)', 2, '30 k above per month', 21, '2020-10-27 11:36:37', 1),
(4378, 1533, 21, 'Sustainability', 2, 'she ill come with her friend only', 21, '2020-10-27 11:36:37', 1),
(4379, 1521, 21, 'Appearance', 3, 'ok', 21, '2020-10-27 12:31:21', 1),
(4380, 1521, 21, 'Attitude', 4, 'good', 21, '2020-10-27 12:31:21', 1),
(4381, 1521, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-27 12:31:21', 1),
(4382, 1521, 21, 'convincing Skills', 3, 'fresher ok', 21, '2020-10-27 12:31:21', 1),
(4383, 1521, 21, 'Importance (Job)', 4, 'bcz of family', 21, '2020-10-27 12:31:21', 1),
(4384, 1521, 21, 'Sustainability', 3, 'min 2 yrs', 21, '2020-10-27 12:31:21', 1),
(4385, 1542, 57, 'Confidence Level', 4, 'good for sales field... and confidence level good', 57, '2020-10-27 01:09:12', 1),
(4386, 1538, 19, 'Appearance', 4, 'sales appearance ', 19, '2020-10-27 01:15:34', 1),
(4387, 1538, 19, 'Sustainability', 4, 'job need person', 19, '2020-10-27 01:15:34', 1),
(4388, 1511, 19, 'Convincing Skills', 1, 'zero percent convincing skill', 19, '2020-10-27 01:35:50', 1),
(4389, 1511, 19, 'Sustainability', 1, 'no longer sustain', 19, '2020-10-27 01:35:50', 1),
(4390, 1544, 19, 'Sustainability', 1, 'no longer sustain', 19, '2020-10-27 01:40:57', 1),
(4391, 1541, 19, 'Sustainability', 1, 'no longer sustain', 19, '2020-10-27 01:44:56', 1),
(4392, 1510, 16, 'Appearance', 3, 'GOOD', 16, '2020-10-27 02:44:37', 1),
(4393, 1510, 16, 'Attitude', 2, 'AVERAGE', 16, '2020-10-27 02:44:37', 1),
(4394, 1510, 16, 'Communication (English)', 4, 'GOOD', 16, '2020-10-27 02:44:37', 1),
(4395, 1510, 16, 'Communication (Tamil)', 4, 'GOOD', 16, '2020-10-27 02:44:37', 1),
(4396, 1249, 8, 'Appearance', 3, 'okay', 8, '2020-10-28 02:37:49', 1),
(4397, 1249, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-10-28 02:37:49', 1),
(4398, 1249, 8, 'Observation Skills', 3, 'okay', 8, '2020-10-28 02:37:49', 1),
(4399, 1520, 21, 'Appearance', 3, 'ok', 21, '2020-10-28 03:38:33', 1),
(4400, 1520, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-28 03:38:33', 1),
(4401, 1520, 21, 'Pressure Handling', 1, 'low he have exp in non voice', 21, '2020-10-28 03:38:33', 1),
(4402, 1580, 21, 'Communication (Tamil)', 4, 'ok good ', 21, '2020-10-28 03:44:08', 1),
(4403, 1580, 21, 'Confidence Level', 1, 'low', 21, '2020-10-28 03:44:08', 1),
(4404, 1580, 21, 'Sustainability', 1, 'long distance ', 21, '2020-10-28 03:44:08', 1),
(4405, 1574, 21, 'Importance (Job)', 2, 'family income above 30k ', 21, '2020-10-28 03:45:10', 1),
(4406, 1568, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-28 03:49:10', 1),
(4407, 1568, 21, 'Confidence Level', 2, 'low ', 21, '2020-10-28 03:49:10', 1),
(4408, 1568, 21, 'Pressure Handling', 2, 'she is not sustain pressure', 21, '2020-10-28 03:49:10', 1),
(4409, 1578, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-28 03:53:38', 1),
(4410, 1578, 21, 'Communication (English)', 3, 'managable', 21, '2020-10-28 03:53:38', 1),
(4411, 1578, 21, 'Confidence Level', 3, 'ok', 21, '2020-10-28 03:53:38', 1),
(4412, 1578, 21, 'Importance (Job)', 4, 'yes ', 21, '2020-10-28 03:53:38', 1),
(4413, 1578, 21, 'Pressure Handling', 3, 'ok but she is fresher', 21, '2020-10-28 03:53:38', 1),
(4414, 1578, 21, 'Sustainability', 3, 'ok min 2 yrs', 21, '2020-10-28 03:53:38', 1),
(4415, 1577, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-28 04:00:48', 1),
(4416, 1577, 21, 'Confidence Level', 3, 'ok', 21, '2020-10-28 04:00:48', 1),
(4417, 1577, 21, 'Importance (Job)', 3, 'yes', 21, '2020-10-28 04:00:48', 1),
(4418, 1577, 21, 'Pressure Handling', 3, 'ok she already worked in reliance ', 21, '2020-10-28 04:00:48', 1),
(4419, 1545, 24, 'Appearance', 1, 'not fit for sale ', 24, '2020-10-28 04:47:54', 1),
(4420, 1559, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-10-28 05:38:11', 1),
(4421, 1559, 8, 'Communication (English)', 3, 'good', 8, '2020-10-28 05:38:11', 1),
(4422, 1559, 8, 'Sustainability', 3, 'check', 8, '2020-10-28 05:38:11', 1),
(4423, 1548, 19, 'Appearance', 1, 'not good looking', 19, '2020-10-29 04:41:06', 1),
(4424, 1548, 19, 'Communication (Tamil)', 1, 'very bad', 19, '2020-10-29 04:41:06', 1),
(4425, 1548, 19, 'Convincing Skills', 1, 'not even try to convinc', 19, '2020-10-29 04:41:06', 1),
(4426, 1537, 38, 'Appearance', 2, 'too aged', 38, '2020-10-29 04:51:17', 1),
(4427, 1537, 38, 'Attitude', 2, 'average in english communication', 38, '2020-10-29 04:51:17', 1),
(4428, 1537, 38, 'Communication (Tamil)', 1, 'donxquott know kannada', 38, '2020-10-29 04:51:17', 1),
(4429, 1604, 38, 'Appearance', 3, 'good in outlook', 38, '2020-10-29 04:56:09', 1),
(4430, 1604, 38, 'Attitude', 1, 'bad in communication', 38, '2020-10-29 04:56:09', 1),
(4431, 1604, 38, 'Communication (Tamil)', 3, 'he know tamil but he donxquott know kannada', 38, '2020-10-29 04:56:09', 1),
(4432, 1604, 38, 'Communication (English)', 1, 'too bad in english', 38, '2020-10-29 04:56:09', 1),
(4433, 1604, 38, 'Sustainability', 1, 'he will not sustain...previous work experience in core field', 38, '2020-10-29 04:56:09', 1),
(4434, 1603, 38, 'Appearance', 2, 'not bad', 38, '2020-10-29 04:59:25', 1),
(4435, 1603, 38, 'Attitude', 2, 'average in communication xxamplistening', 38, '2020-10-29 04:59:25', 1),
(4436, 1603, 38, 'Communication (Tamil)', 1, 'he donxquott know kannada', 38, '2020-10-29 04:59:25', 1),
(4437, 1603, 38, 'Communication (English)', 2, 'manageable', 38, '2020-10-29 04:59:25', 1),
(4438, 1603, 38, 'Sustainability', 1, 'he will note sustain ', 38, '2020-10-29 04:59:25', 1),
(4439, 1089, 44, 'Communication (English)', 1, 'Poor communication', 44, '2020-10-29 05:21:44', 1),
(4440, 1089, 44, 'Importance Of Job', 1, 'doing own bussiness', 44, '2020-10-29 05:21:44', 1),
(4441, 1362, 44, 'Communication (English)', 3, 'Communication ok', 44, '2020-10-29 05:24:10', 1),
(4442, 1362, 44, 'Importance Of Job', 1, 'Having other sources', 44, '2020-10-29 05:24:10', 1),
(4443, 1338, 57, 'Communication (Tamil)', 1, 'communication is not clear ', 57, '2020-10-29 06:37:38', 1),
(4444, 1523, 57, 'Pressure Handling', 1, 'he is not good for sales ', 57, '2020-10-29 06:39:54', 1),
(4445, 1600, 51, 'Appearance', 3, 'HIS APPEARANCE IS GOOD', 51, '2020-10-30 10:33:25', 1),
(4446, 1600, 51, 'Communication (English)', 2, 'COMMINICATION IN ENGLISH IS OK', 51, '2020-10-30 10:33:25', 1),
(4447, 1600, 51, 'Confidence Level', 2, 'CONFIDENCE LEVEL IN HIM IN LOW', 51, '2020-10-30 10:33:25', 1),
(4448, 1600, 51, 'Pressure Handling', 2, 'CANT ABLE TO HANDLE WORK PRESSURE', 51, '2020-10-30 10:33:25', 1),
(4449, 1618, 20, 'Appearance', 1, 'not so good', 20, '2020-10-30 11:25:15', 1),
(4450, 1618, 20, 'Attitude', 5, 'descent attitude and body language', 20, '2020-10-30 11:25:15', 1),
(4451, 1618, 20, 'Importance Of Job', 1, 'no bike has not willing to afford.', 20, '2020-10-30 11:25:15', 1),
(4452, 1618, 20, 'Sustainability', 1, 'left previous company without proper reason. doesnxquott show prominent sustainability.', 20, '2020-10-30 11:25:15', 1),
(4453, 1605, 21, 'Appearance', 3, 'ok', 21, '2020-10-30 12:06:21', 1),
(4454, 1605, 21, 'Communication (Tamil)', 3, 'ok good', 21, '2020-10-30 12:06:21', 1),
(4455, 1605, 21, 'Confidence Level', 3, 'ok', 21, '2020-10-30 12:06:21', 1),
(4456, 1605, 21, 'Importance (Job)', 4, 'need for family', 21, '2020-10-30 12:06:21', 1),
(4457, 1605, 21, 'Sustainability', 2, 'long distance', 21, '2020-10-30 12:06:21', 1),
(4458, 1583, 20, 'Sustainability', 1, 'plans to start to own business after 6 months with friends.', 20, '2020-10-30 01:15:03', 1),
(4459, 1592, 19, 'Communication (English)', 4, 'Good', 19, '2020-10-30 02:42:37', 1),
(4460, 1592, 19, 'Confidence Level', 4, 'trying to convince', 19, '2020-10-30 02:42:37', 1),
(4461, 1590, 20, 'Communication (Tamil)', 1, 'didnxquott even try to communicate or tried to pitch', 20, '2020-10-30 03:23:37', 1),
(4462, 1621, 19, 'Appearance', 1, 'not looking good for Sales', 19, '2020-10-30 03:37:56', 1),
(4463, 1615, 24, 'Appearance', 1, 'Not Suitable For Profile..', 24, '2020-10-30 03:42:46', 1),
(4464, 1596, 51, 'Appearance', 3, 'his appearnce is good', 51, '2020-10-30 03:56:53', 1),
(4465, 1596, 51, 'Communication (English)', 3, 'his communication in english is good ', 51, '2020-10-30 03:56:53', 1),
(4466, 1641, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-10-31 01:48:32', 1),
(4467, 1641, 8, 'Importance (Job)', 3, 'yes', 8, '2020-10-31 01:48:32', 1),
(4468, 1641, 21, 'Appearance', 4, 'ok', 21, '2020-10-31 03:40:54', 1),
(4469, 1641, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-10-31 03:40:54', 1),
(4470, 1641, 21, 'convincing Skills', 3, 'ok', 21, '2020-10-31 03:40:54', 1),
(4471, 1641, 21, 'Importance (Job)', 4, 'need for family backround ', 21, '2020-10-31 03:40:54', 1),
(4472, 1641, 21, 'Pressure Handling', 3, '3 month exp', 21, '2020-10-31 03:40:54', 1),
(4473, 1667, 21, 'Communication (Tamil)', 4, 'ok good  ', 21, '2020-11-02 06:03:35', 1),
(4474, 1667, 21, 'convincing Skills', 3, 'ok fresher ', 21, '2020-11-02 06:03:35', 1),
(4475, 1667, 21, 'Pressure Handling', 3, 'ok but fresher ', 21, '2020-11-02 06:03:35', 1),
(4476, 1667, 21, 'Sustainability', 4, 'ok ', 21, '2020-11-02 06:03:35', 1),
(4477, 1677, 21, 'Appearance', 3, 'ok', 21, '2020-11-02 06:06:33', 1),
(4478, 1677, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-11-02 06:06:33', 1),
(4479, 1677, 21, 'Communication (English)', 3, 'managable', 21, '2020-11-02 06:06:33', 1),
(4480, 1677, 21, 'convincing Skills', 3, 'ok', 21, '2020-11-02 06:06:33', 1),
(4481, 1677, 21, 'Importance (Job)', 4, 'need for family ', 21, '2020-11-02 06:06:33', 1),
(4482, 1677, 21, 'Observation skills', 4, 'ok', 21, '2020-11-02 06:06:33', 1),
(4483, 1677, 21, 'Sustainability', 3, 'ok', 21, '2020-11-02 06:06:33', 1),
(4484, 1651, 20, 'Communication (Tamil)', 1, 'poor', 20, '2020-11-03 10:46:38', 1),
(4485, 347, 8, 'Communication (English)', 3, 'okay', 8, '2020-11-03 02:49:41', 1),
(4486, 347, 8, 'Sales Experience', 3, 'interested', 8, '2020-11-03 02:49:41', 1),
(4487, 1670, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-11-03 02:59:55', 1),
(4488, 1670, 21, 'Sustainability', 1, 'not sustain because she already have offer in tech mahindra  16 k salary..', 21, '2020-11-03 02:59:55', 1),
(4489, 1697, 8, 'Software Installation?', 3, 'yes', 8, '2020-11-03 03:12:50', 1),
(4490, 1669, 53, 'Software Installation?', 2, 'basic', 53, '2020-11-04 11:42:59', 1),
(4491, 1669, 53, 'Software Troubleshooting?', 1, 'basic', 53, '2020-11-04 11:42:59', 1),
(4492, 1669, 53, 'Do you Know system assembling?', 3, 'YEs he know', 53, '2020-11-04 11:42:59', 1),
(4493, 1697, 54, 'Software Installation?', 3, 'he can', 54, '2020-11-04 12:02:24', 1),
(4494, 1697, 54, 'Do you Know system assembling?', 3, 'he can', 54, '2020-11-04 12:02:24', 1),
(4495, 1714, 19, 'Sales Experience', 4, 'Already working in Health Insurance', 19, '2020-11-04 03:04:58', 1),
(4496, 1708, 19, 'Importance Of Job', 1, 'she think its SBI Credit Card Sale', 19, '2020-11-04 03:07:23', 1),
(4497, 1693, 19, 'Appearance', 1, 'appearance s not good', 19, '2020-11-04 03:14:53', 1),
(4498, 1693, 19, 'Convincing Skills', 1, 'even not try to convince', 19, '2020-11-04 03:14:53', 1),
(4499, 1693, 19, 'Sales Experience', 1, 'Fresher nd not fit for sale', 19, '2020-11-04 03:14:53', 1),
(4500, 1687, 38, 'Appearance', 3, 'good in listening and communication', 38, '2020-11-04 03:21:05', 1),
(4501, 1687, 38, 'Attitude', 3, 'good in listening', 38, '2020-11-04 03:21:05', 1),
(4502, 1687, 38, 'Confidence Level', 3, 'she already experienced in sales so good in confidence', 38, '2020-11-04 03:21:05', 1),
(4503, 1687, 38, 'Pressure Handling', 3, 'she will handle', 38, '2020-11-04 03:21:05', 1),
(4504, 1687, 38, 'Sustainability', 3, 'wil sustain', 38, '2020-11-04 03:21:05', 1),
(4505, 1720, 39, 'Appearance', 3, 'good', 39, '2020-11-04 04:16:51', 1),
(4506, 1720, 39, 'Communication (English)', 4, 'good', 39, '2020-11-04 04:16:51', 1),
(4507, 1720, 39, 'Observation Skills', 3, 'better in observation skills', 39, '2020-11-04 04:16:51', 1),
(4508, 1256, 56, 'Attitude', 1, 'bad in communication and listening', 56, '2020-11-04 05:38:48', 1),
(4509, 1256, 56, 'Communication (English)', 1, 'worst  english', 56, '2020-11-04 05:38:48', 1),
(4510, 1256, 56, 'Communication (Tamil)', 2, 'he dont know kannada', 56, '2020-11-04 05:38:48', 1),
(4511, 1256, 56, 'Sustainability', 1, 'he will not sustain', 56, '2020-11-04 05:38:48', 1),
(4512, 1648, 56, 'Appearance', 3, 'good', 56, '2020-11-04 05:41:08', 1),
(4513, 1648, 56, 'Communication (English)', 2, 'manageable', 56, '2020-11-04 05:41:08', 1),
(4514, 1648, 56, 'Communication (Tamil)', 4, 'good in fluency', 56, '2020-11-04 05:41:08', 1),
(4515, 1648, 56, 'Sustainability', 3, 'he will sustain for long time', 56, '2020-11-04 05:41:08', 1),
(4516, 1648, 56, 'Sales Experience', 3, 'he is having already sales exp ', 56, '2020-11-04 05:41:08', 1),
(4517, 1648, 56, 'Existing Experience Analyze', 3, 'not bad ', 56, '2020-11-04 05:41:08', 1),
(4518, 924, 29, 'Convincing Skills', 1, 'not much', 29, '2020-11-05 10:36:07', 1),
(4519, 924, 29, 'Importance Of Job', 1, 'couldnt manage in any area', 29, '2020-11-05 10:36:07', 1),
(4520, 924, 29, 'Sustainability', 1, 'risky profile', 29, '2020-11-05 10:36:07', 1),
(4521, 845, 29, 'Convincing Skills', 1, 'Doesnxquott have Relevant sales exp ', 29, '2020-11-05 10:40:38', 1),
(4522, 845, 29, 'Pressure Handling', 1, 'will not manage sales pressure', 29, '2020-11-05 10:40:38', 1),
(4523, 845, 29, 'Sustainability', 1, 'risky profile, last 10 years IT exp..', 29, '2020-11-05 10:40:38', 1),
(4524, 1249, 20, 'Communication (Tamil)', 1, 'not good in communication', 20, '2020-11-05 12:00:27', 1),
(4525, 1581, 20, 'Importance Of Job', 1, 'wants to start business', 20, '2020-11-05 12:01:11', 1),
(4526, 123, 18, 'Communication (Tamil)', 3, 'ok', 18, '2020-11-05 01:19:00', 1),
(4527, 123, 18, 'Sustainability', 3, 'ok', 18, '2020-11-05 01:19:00', 1),
(4528, 1746, 14, 'Communication (Tamil)', 1, 'pronunciation not good', 14, '2020-11-05 02:39:24', 1),
(4529, 1746, 14, 'convincing Skills', 1, 'less', 14, '2020-11-05 02:39:24', 1),
(4530, 1746, 14, 'Confidence Level', 1, 'low', 14, '2020-11-05 02:39:24', 1),
(4531, 1744, 20, 'Communication (Tamil)', 3, 'bold and loud voice suitable for calling.', 20, '2020-11-05 03:01:12', 1),
(4532, 1744, 20, 'Pressure Handling', 4, 'can handle pressure from previous experience.', 20, '2020-11-05 03:01:12', 1),
(4533, 1716, 36, 'Appearance', 3, 'Fine', 36, '2020-11-06 12:33:08', 1),
(4534, 1716, 36, 'Attitude', 3, 'xdbquot', 36, '2020-11-06 12:33:08', 1),
(4535, 1716, 36, 'Communication (English)', 3, 'xdbquot', 36, '2020-11-06 12:33:08', 1),
(4536, 1716, 36, 'Communication (Tamil)', 3, 'xquot', 36, '2020-11-06 12:33:08', 1),
(4537, 1716, 36, 'Convincing Skills', 3, 'xquot', 36, '2020-11-06 12:33:08', 1),
(4538, 1716, 36, 'Confidence Level', 3, 'xquot', 36, '2020-11-06 12:33:08', 1),
(4539, 1716, 36, 'Importance Of Job', 3, 'xquot', 36, '2020-11-06 12:33:08', 1),
(4540, 1716, 36, 'Observation Skills', 3, 'xquot', 36, '2020-11-06 12:33:08', 1),
(4541, 1716, 36, 'Pressure Handling', 3, 'xquot', 36, '2020-11-06 12:33:08', 1),
(4542, 1716, 36, 'patience', 3, 'xquot', 36, '2020-11-06 12:33:08', 1),
(4543, 1716, 36, 'Sustainability', 3, 'xquot', 36, '2020-11-06 12:33:08', 1),
(4544, 1716, 36, 'Sales Experience', 3, 'xquot', 36, '2020-11-06 12:33:08', 1),
(4545, 1716, 36, 'Existing Experience Analyze', 3, 'xquot', 36, '2020-11-06 12:33:08', 1),
(4546, 1716, 36, 'Practical Challenges Outcome', 3, 'xquot', 36, '2020-11-06 12:33:08', 1),
(4547, 1716, 36, 'Willing To Work On Holidays', 3, 'xquot', 36, '2020-11-06 12:33:08', 1),
(4548, 1766, 13, 'Sustainability', 1, 'less', 13, '2020-11-06 12:43:31', 1),
(4549, 1755, 44, 'Communication (English)', 4, 'Good communication skill', 44, '2020-11-06 01:35:10', 1),
(4550, 1755, 44, 'Willing To Work On Holidays', 3, 'ready to work on holidays', 44, '2020-11-06 01:35:10', 1),
(4551, 1776, 20, 'Importance Of Job', 4, 'has job need', 20, '2020-11-06 03:47:52', 1),
(4552, 1764, 14, 'convincing Skills', 1, 'less', 14, '2020-11-06 04:06:33', 1),
(4553, 1764, 14, 'Confidence Level', 1, 'low', 14, '2020-11-06 04:06:33', 1),
(4554, 1765, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-11-06 05:44:41', 1),
(4555, 1765, 21, 'Communication (English)', 3, 'ok', 21, '2020-11-06 05:44:41', 1),
(4556, 1765, 21, 'Confidence Level', 3, 'ok but fresher', 21, '2020-11-06 05:44:41', 1),
(4557, 1765, 21, 'Importance (Job)', 4, 'father passed away', 21, '2020-11-06 05:44:41', 1),
(4558, 1765, 21, 'Sustainability', 4, 'ok', 21, '2020-11-06 05:44:41', 1),
(4559, 1770, 19, 'Appearance', 4, 'good looking', 19, '2020-11-06 05:52:47', 1),
(4560, 1770, 19, 'Convincing Skills', 4, 'try to convice', 19, '2020-11-06 05:52:47', 1),
(4561, 1776, 19, 'Communication (Tamil)', 1, 'from AP', 19, '2020-11-06 05:53:43', 1),
(4562, 1227, 31, 'Appearance', 4, 'Neat xxamp Good', 31, '2020-11-06 05:59:39', 1),
(4563, 1227, 31, 'Convincing Skills', 4, 'good in convincing', 31, '2020-11-06 05:59:39', 1),
(4564, 1227, 31, 'Confidence Level', 4, 'okay', 31, '2020-11-06 05:59:39', 1),
(4565, 1770, 31, 'Appearance', 4, 'Neat xxamp Good', 31, '2020-11-06 06:26:13', 1),
(4566, 1770, 31, 'Convincing Skills', 4, 'good ', 31, '2020-11-06 06:26:13', 1),
(4567, 1675, 51, 'Appearance', 3, 'good', 51, '2020-11-07 11:23:44', 1),
(4568, 1675, 51, 'Confidence Level', 1, 'lack in his confidence', 51, '2020-11-07 11:23:44', 1),
(4569, 1675, 51, 'Willing To Work On Holidays', 1, 'no', 51, '2020-11-07 11:23:44', 1),
(4570, 1801, 14, 'Communication (Tamil)', 1, 'not good', 14, '2020-11-07 02:35:31', 1),
(4571, 1801, 14, 'convincing Skills', 1, 'less', 14, '2020-11-07 02:35:31', 1),
(4572, 1801, 14, 'Confidence Level', 1, 'low', 14, '2020-11-07 02:35:31', 1),
(4573, 1800, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-11-07 03:13:24', 1),
(4574, 1800, 14, 'convincing Skills', 4, 'good', 14, '2020-11-07 03:13:24', 1),
(4575, 1798, 8, 'Communication (Tamil)', 2, 'Avg. not speaking up', 8, '2020-11-07 03:49:53', 1),
(4576, 1798, 8, 'Existing Experience Analyze', 2, 'No', 8, '2020-11-07 03:49:53', 1),
(4577, 1798, 8, 'Pressure Handling', 2, 'No', 8, '2020-11-07 03:49:53', 1),
(4578, 1798, 8, 'Sales Experience', 2, 'No', 8, '2020-11-07 03:49:53', 1),
(4579, 1803, 13, 'convincing Skills', 1, 'low', 13, '2020-11-07 03:54:04', 1),
(4580, 1804, 13, 'Sustainability', 1, 'low', 13, '2020-11-07 03:54:36', 1),
(4581, 1780, 20, 'Communication (Tamil)', 2, 'voice not good. no voice clarity.', 20, '2020-11-09 11:58:16', 1),
(4582, 1795, 44, 'Importance Of Job', 1, 'He is LIC agent', 44, '2020-11-09 12:00:32', 1),
(4583, 1811, 13, 'Communication (Tamil)', 2, 'poor', 13, '2020-11-09 12:12:42', 1),
(4584, 1811, 13, 'convincing Skills', 2, 'low', 13, '2020-11-09 12:12:42', 1),
(4585, 1807, 14, 'Attitude', 1, 'not good', 14, '2020-11-09 12:38:45', 1),
(4586, 1807, 14, 'Observation skills', 1, 'not understand anything', 14, '2020-11-09 12:38:45', 1),
(4587, 1806, 8, 'Software Installation?', 3, 'yes', 8, '2020-11-09 04:38:34', 1),
(4588, 1806, 8, 'Software Troubleshooting?', 3, 'yes', 8, '2020-11-09 04:38:34', 1),
(4589, 1806, 8, 'Do you Know system assembling?', 3, 'yes', 8, '2020-11-09 04:38:34', 1),
(4590, 1825, 40, 'Appearance', 4, 'PROFESSIONAL ATTIRE', 40, '2020-11-10 12:05:46', 1),
(4591, 1825, 40, 'Attitude', 4, 'GOOD', 40, '2020-11-10 12:05:46', 1),
(4592, 1825, 40, 'Communication (English)', 4, 'GOOD', 40, '2020-11-10 12:05:46', 1),
(4593, 1825, 40, 'Communication (Tamil)', 5, 'GOOD', 40, '2020-11-10 12:05:46', 1),
(4594, 1825, 40, 'Convincing Skills', 3, 'MIGHT BE OKAY', 40, '2020-11-10 12:05:46', 1),
(4595, 1825, 40, 'Confidence Level', 5, 'PROFESSIONAL ', 40, '2020-11-10 12:05:46', 1),
(4596, 1825, 40, 'Importance Of Job', 4, 'IMMEDIATE JOINER', 40, '2020-11-10 12:05:46', 1),
(4597, 1825, 40, 'Observation Skills', 4, 'GOOD', 40, '2020-11-10 12:05:46', 1),
(4598, 1825, 40, 'Pressure Handling', 4, 'GOOD', 40, '2020-11-10 12:05:46', 1),
(4599, 1825, 40, 'patience', 5, 'GOOD', 40, '2020-11-10 12:05:46', 1),
(4600, 1825, 40, 'Sustainability', 4, 'SEEMS LIKE LONG RUNNER', 40, '2020-11-10 12:05:46', 1),
(4601, 1825, 40, 'Sales Experience', 5, 'HAVING PROPER SALES EXPERIENCE', 40, '2020-11-10 12:05:46', 1),
(4602, 1825, 40, 'Existing Experience Analyze', 3, 'GOOD', 40, '2020-11-10 12:05:46', 1),
(4603, 1825, 40, 'Practical Challenges Outcome', 3, 'NEUTRAL', 40, '2020-11-10 12:05:46', 1),
(4604, 1825, 40, 'Willing To Work On Holidays', 5, 'YE SHE IS ', 40, '2020-11-10 12:05:46', 1),
(4605, 1825, 18, 'Appearance', 3, 'Good', 18, '2020-11-10 01:43:33', 1),
(4606, 1825, 18, 'Attitude', 3, 'Good', 18, '2020-11-10 01:43:33', 1),
(4607, 1825, 18, 'Communication (English)', 3, 'Good', 18, '2020-11-10 01:43:33', 1),
(4608, 1825, 18, 'Convincing Skills', 3, 'Good', 18, '2020-11-10 01:43:33', 1),
(4609, 1825, 18, 'Confidence Level', 3, 'Good', 18, '2020-11-10 01:43:33', 1),
(4610, 1825, 18, 'Pressure Handling', 3, 'Ok', 18, '2020-11-10 01:43:33', 1),
(4611, 1825, 18, 'patience', 3, 'Good', 18, '2020-11-10 01:43:33', 1),
(4612, 1825, 18, 'Sales Experience', 4, 'Good', 18, '2020-11-10 01:43:33', 1),
(4613, 1841, 13, 'convincing Skills', 3, 'low', 13, '2020-11-11 01:15:52', 1),
(4614, 1841, 13, 'Confidence Level', 2, 'less', 13, '2020-11-11 01:15:52', 1),
(4615, 1819, 19, 'Confidence Level', 4, 'good', 19, '2020-11-12 02:43:27', 1),
(4616, 1819, 19, 'Sustainability', 4, 'Already working exp in last 3 years', 19, '2020-11-12 02:43:27', 1),
(4617, 1866, 13, 'convincing Skills', 1, 'poor', 13, '2020-11-12 03:59:51', 1),
(4618, 1867, 13, 'Sustainability', 1, 'less', 13, '2020-11-12 04:01:18', 1),
(4619, 1877, 40, 'Appearance', 4, 'Professional Attire', 40, '2020-11-13 12:18:07', 1),
(4620, 1877, 40, 'Attitude', 5, 'Good', 40, '2020-11-13 12:18:07', 1),
(4621, 1877, 40, 'Communication (English)', 5, 'Good in language', 40, '2020-11-13 12:18:07', 1),
(4622, 1877, 40, 'Communication (Tamil)', 4, 'Good', 40, '2020-11-13 12:18:07', 1),
(4623, 1877, 40, 'Convincing Skills', 3, 'Neutral', 40, '2020-11-13 12:18:07', 1),
(4624, 1877, 40, 'Confidence Level', 4, 'Might be okay', 40, '2020-11-13 12:18:07', 1),
(4625, 1877, 40, 'Importance Of Job', 4, 'Married and looking for job immeditely', 40, '2020-11-13 12:18:07', 1),
(4626, 1877, 40, 'Observation Skills', 3, 'Seems ok', 40, '2020-11-13 12:18:07', 1),
(4627, 1877, 40, 'Pressure Handling', 3, 'Might be', 40, '2020-11-13 12:18:07', 1),
(4628, 1877, 40, 'patience', 4, 'yes', 40, '2020-11-13 12:18:07', 1),
(4629, 1877, 40, 'Sustainability', 3, 'Seems like along runner', 40, '2020-11-13 12:18:07', 1),
(4630, 1877, 40, 'Sales Experience', 2, 'Inside sales not in field', 40, '2020-11-13 12:18:07', 1),
(4631, 1877, 40, 'Existing Experience Analyze', 3, 'neutral', 40, '2020-11-13 12:18:07', 1),
(4632, 1877, 40, 'Practical Challenges Outcome', 3, 'Ok', 40, '2020-11-13 12:18:07', 1),
(4633, 1877, 40, 'Willing To Work On Holidays', 4, 'Might be ', 40, '2020-11-13 12:18:07', 1),
(4634, 1875, 31, 'Appearance', 2, 'came with casuals', 31, '2020-11-13 12:18:23', 1),
(4635, 1875, 31, 'Convincing Skills', 1, 'Not upto the mark ', 31, '2020-11-13 12:18:23', 1),
(4636, 1875, 31, 'Confidence Level', 2, 'not expected level', 31, '2020-11-13 12:18:23', 1),
(4637, 1877, 31, 'Appearance', 4, 'Good', 31, '2020-11-13 12:23:52', 1),
(4638, 1877, 31, 'Communication (English)', 4, 'Good', 31, '2020-11-13 12:23:52', 1),
(4639, 1877, 31, 'Convincing Skills', 1, 'not satisfied', 31, '2020-11-13 12:23:52', 1),
(4640, 1869, 51, 'Appearance', 4, 'good ', 51, '2020-11-13 01:05:51', 1),
(4641, 1869, 51, 'Communication (English)', 4, 'Good ', 51, '2020-11-13 01:05:51', 1),
(4642, 1869, 51, 'Communication (Tamil)', 4, 'Good ', 51, '2020-11-13 01:05:51', 1),
(4643, 1869, 51, 'Convincing Skills', 4, 'Good ', 51, '2020-11-13 01:05:51', 1),
(4644, 1639, 31, 'Appearance', 4, 'Good', 31, '2020-11-13 03:10:02', 1),
(4645, 1639, 31, 'Convincing Skills', 1, 'Not satisfied', 31, '2020-11-13 03:10:02', 1),
(4646, 1873, 39, 'Attitude', 2, 'averagw in communication and listening', 39, '2020-11-13 03:23:27', 1),
(4647, 1873, 39, 'Communication (English)', 2, 'average and manageable', 39, '2020-11-13 03:23:27', 1),
(4648, 1873, 39, 'Sustainability', 1, 'his mindset 50-50', 39, '2020-11-13 03:23:27', 1),
(4649, 1873, 39, 'Sales Experience', 1, 'no sales experience', 39, '2020-11-13 03:23:27', 1),
(4650, 1871, 39, 'Appearance', 3, 'good', 39, '2020-11-13 03:25:32', 1),
(4651, 1871, 39, 'Attitude', 4, 'good in listening', 39, '2020-11-13 03:25:32', 1),
(4652, 1871, 39, 'Communication (English)', 2, 'manageable', 39, '2020-11-13 03:25:32', 1),
(4653, 1871, 39, 'Confidence Level', 3, 'good', 39, '2020-11-13 03:25:32', 1),
(4654, 1871, 39, 'Sustainability', 3, 'he will sustain', 39, '2020-11-13 03:25:32', 1),
(4655, 1871, 39, 'Sales Experience', 1, 'fresher', 39, '2020-11-13 03:25:32', 1),
(4656, 1844, 54, 'attitude of the employee?', 3, 'Good', 54, '2020-11-16 10:41:47', 1),
(4657, 1844, 54, 'candidate have a real-time working experience?', 1, 'Worked single domain like websites.', 54, '2020-11-16 10:41:47', 1),
(4658, 1844, 54, 'Communication Skills?', 2, 'Ok', 54, '2020-11-16 10:41:47', 1),
(4659, 1876, 28, 'relevance experience with this technical spec.', 1, 'Not so much skill in basic php', 28, '2020-11-16 12:42:39', 1),
(4660, 1898, 31, 'Appearance', 4, 'Good', 31, '2020-11-16 01:47:07', 1),
(4661, 1898, 31, 'Communication (Tamil)', 4, 'Good', 31, '2020-11-16 01:47:07', 1),
(4662, 1888, 13, 'Communication (Tamil)', 1, 'poor', 13, '2020-11-16 03:23:00', 1),
(4663, 1878, 20, 'Communication (Tamil)', 1, 'not good communication', 20, '2020-11-16 04:13:00', 1),
(4664, 1898, 18, 'Appearance', 3, 'Good', 18, '2020-11-16 04:33:42', 1),
(4665, 1898, 18, 'Attitude', 3, 'Good', 18, '2020-11-16 04:33:42', 1),
(4666, 1898, 18, 'Communication (English)', 4, 'Good', 18, '2020-11-16 04:33:42', 1),
(4667, 1898, 18, 'Communication (Tamil)', 4, 'Good', 18, '2020-11-16 04:33:42', 1),
(4668, 1898, 18, 'Convincing Skills', 3, 'Decent', 18, '2020-11-16 04:33:42', 1),
(4669, 1898, 18, 'Confidence Level', 3, 'Good', 18, '2020-11-16 04:33:42', 1),
(4670, 1898, 18, 'Importance Of Job', 4, 'Required', 18, '2020-11-16 04:33:42', 1),
(4671, 1898, 18, 'Observation Skills', 3, 'Neat', 18, '2020-11-16 04:33:42', 1),
(4672, 1898, 18, 'Pressure Handling', 3, 'Ok', 18, '2020-11-16 04:33:42', 1),
(4673, 1898, 18, 'patience', 3, 'Ok', 18, '2020-11-16 04:33:42', 1),
(4674, 1898, 18, 'Sustainability', 4, 'Good', 18, '2020-11-16 04:33:42', 1),
(4675, 1898, 18, 'Sales Experience', 3, 'Ok', 18, '2020-11-16 04:33:42', 1),
(4676, 1921, 14, 'Communication (Tamil)', 4, 'good', 14, '2020-11-17 01:24:02', 1),
(4677, 1921, 14, 'convincing Skills', 4, 'good', 14, '2020-11-17 01:24:02', 1),
(4678, 1921, 14, 'Confidence Level', 4, 'good', 14, '2020-11-17 01:24:02', 1),
(4679, 1921, 13, 'Communication (Tamil)', 4, 'Good', 13, '2020-11-17 01:33:41', 1),
(4680, 1921, 13, 'convincing Skills', 4, 'Good', 13, '2020-11-17 01:33:41', 1),
(4681, 1908, 30, 'Appearance', 1, 'not fit for our field', 30, '2020-11-17 03:39:36', 1),
(4682, 1908, 30, 'Attitude', 1, 'bad in listening', 30, '2020-11-17 03:39:36', 1),
(4683, 1908, 30, 'Communication (English)', 1, 'zero english', 30, '2020-11-17 03:39:36', 1),
(4684, 1908, 30, 'Communication (Tamil)', 3, 'okay in kannada ', 30, '2020-11-17 03:39:36', 1),
(4685, 1908, 30, 'Pressure Handling', 1, 'he will not handle pressure', 30, '2020-11-17 03:39:36', 1),
(4686, 1908, 30, 'Sales Experience', 1, 'no experience....he is fresher', 30, '2020-11-17 03:39:36', 1),
(4687, 1929, 51, 'Appearance', 4, 'good', 51, '2020-11-18 12:06:39', 1),
(4688, 1929, 51, 'Attitude', 4, 'good', 51, '2020-11-18 12:06:39', 1),
(4689, 1929, 51, 'Convincing Skills', 3, 'good', 51, '2020-11-18 12:06:39', 1),
(4690, 1943, 51, 'Appearance', 4, 'good', 51, '2020-11-18 12:07:43', 1),
(4691, 1943, 51, 'Communication (English)', 3, 'better', 51, '2020-11-18 12:07:43', 1),
(4692, 1943, 51, 'Communication (Tamil)', 4, 'good', 51, '2020-11-18 12:07:43', 1),
(4693, 1934, 31, 'Appearance', 4, 'Good', 31, '2020-11-18 02:39:20', 1),
(4694, 1911, 30, 'Appearance', 2, 'average in outlook', 30, '2020-11-18 02:58:44', 1),
(4695, 1911, 30, 'Attitude', 3, 'Good in communication and listening', 30, '2020-11-18 02:58:44', 1),
(4696, 1911, 30, 'Communication (English)', 3, 'fluent english', 30, '2020-11-18 02:58:44', 1),
(4697, 1911, 30, 'Observation Skills', 3, 'good', 30, '2020-11-18 02:58:44', 1),
(4698, 1911, 30, 'Sustainability', 2, 'he will not sustain bcs he is looking high package', 30, '2020-11-18 02:58:44', 1),
(4699, 1911, 30, 'Sales Experience', 2, 'already he worked for ICICI Bank PL Process', 30, '2020-11-18 02:58:44', 1),
(4700, 1959, 27, 'attitude of the employee?', 3, 'Good.', 27, '2020-11-19 11:03:34', 1),
(4701, 1922, 27, 'attitude of the employee?', 4, 'Attitude is good.', 27, '2020-11-19 12:28:26', 1),
(4702, 1922, 27, 'relevance experience with this technical spec.', 4, 'He had 4 Years of Experienced.', 27, '2020-11-19 12:28:26', 1),
(4703, 1922, 27, 'worked with team?', 1, 'He is Individual Player. ', 27, '2020-11-19 12:28:26', 1),
(4704, 1961, 51, 'Communication (English)', 3, 'good', 51, '2020-11-19 01:19:57', 1),
(4705, 1961, 51, 'Communication (Tamil)', 4, 'good', 51, '2020-11-19 01:19:57', 1),
(4706, 1961, 51, 'Confidence Level', 4, 'good', 51, '2020-11-19 01:19:57', 1),
(4707, 1961, 51, 'Importance Of Job', 4, 'she needs the job', 51, '2020-11-19 01:19:57', 1),
(4708, 1961, 51, 'Sales Experience', 4, 'having sales expernce in life', 51, '2020-11-19 01:19:57', 1),
(4709, 1879, 38, 'Appearance', 3, 'satisfied', 38, '2020-11-19 02:55:10', 1),
(4710, 1879, 38, 'Attitude', 3, 'good in communication and listening', 38, '2020-11-19 02:55:10', 1),
(4711, 1879, 38, 'Communication (Tamil)', 3, 'good in kannada and telugu', 38, '2020-11-19 02:55:10', 1),
(4712, 1879, 38, 'Communication (English)', 3, 'not bad average', 38, '2020-11-19 02:55:10', 1),
(4713, 1879, 38, 'Importance (Job)', 3, 'job needed candidate', 38, '2020-11-19 02:55:10', 1),
(4714, 1879, 38, 'Sustainability', 3, 'she will sustain', 38, '2020-11-19 02:55:10', 1),
(4715, 1937, 36, 'Appearance', 4, 'k', 36, '2020-11-19 03:28:55', 1),
(4716, 1937, 36, 'Attitude', 3, 'k', 36, '2020-11-19 03:28:55', 1),
(4717, 1937, 36, 'Communication (English)', 2, 'k', 36, '2020-11-19 03:28:55', 1),
(4718, 1937, 36, 'Communication (Tamil)', 3, 'k', 36, '2020-11-19 03:28:55', 1),
(4719, 1937, 36, 'Convincing Skills', 2, 'k', 36, '2020-11-19 03:28:55', 1),
(4720, 1937, 36, 'Confidence Level', 3, 'k', 36, '2020-11-19 03:28:55', 1),
(4721, 1937, 36, 'Importance Of Job', 3, 'k', 36, '2020-11-19 03:28:55', 1),
(4722, 1937, 36, 'Observation Skills', 3, 'k', 36, '2020-11-19 03:28:55', 1),
(4723, 1937, 36, 'Pressure Handling', 3, 'k', 36, '2020-11-19 03:28:55', 1),
(4724, 1937, 36, 'patience', 4, 'k', 36, '2020-11-19 03:28:55', 1),
(4725, 1937, 36, 'Sustainability', 3, 'k', 36, '2020-11-19 03:28:55', 1),
(4726, 1937, 36, 'Sales Experience', 3, 'k', 36, '2020-11-19 03:28:55', 1),
(4727, 1937, 36, 'Existing Experience Analyze', 3, 'k', 36, '2020-11-19 03:28:55', 1),
(4728, 1937, 36, 'Practical Challenges Outcome', 3, 'k', 36, '2020-11-19 03:28:55', 1),
(4729, 1937, 36, 'Willing To Work On Holidays', 3, 'k', 36, '2020-11-19 03:28:55', 1),
(4730, 1963, 28, 'attitude of the employee?', 3, 'Good', 28, '2020-11-19 04:01:24', 1),
(4731, 1942, 36, 'Appearance', 2, 'k', 36, '2020-11-19 06:45:00', 1),
(4732, 1942, 36, 'Attitude', 4, 'k', 36, '2020-11-19 06:45:00', 1),
(4733, 1942, 36, 'Communication (English)', 2, 'k', 36, '2020-11-19 06:45:00', 1),
(4734, 1942, 36, 'Communication (Tamil)', 4, 'k', 36, '2020-11-19 06:45:00', 1),
(4735, 1942, 36, 'Convincing Skills', 3, 'k', 36, '2020-11-19 06:45:00', 1),
(4736, 1942, 36, 'Confidence Level', 3, 'k', 36, '2020-11-19 06:45:00', 1),
(4737, 1942, 36, 'Importance Of Job', 4, 'k', 36, '2020-11-19 06:45:00', 1),
(4738, 1942, 36, 'Observation Skills', 4, 'k', 36, '2020-11-19 06:45:00', 1),
(4739, 1942, 36, 'Pressure Handling', 3, 'k', 36, '2020-11-19 06:45:00', 1),
(4740, 1942, 36, 'patience', 4, 'k', 36, '2020-11-19 06:45:00', 1),
(4741, 1942, 36, 'Sustainability', 3, 'k', 36, '2020-11-19 06:45:00', 1),
(4742, 1942, 36, 'Sales Experience', 1, 'k', 36, '2020-11-19 06:45:00', 1),
(4743, 1942, 36, 'Existing Experience Analyze', 3, 'k', 36, '2020-11-19 06:45:00', 1),
(4744, 1942, 36, 'Practical Challenges Outcome', 4, 'k', 36, '2020-11-19 06:45:00', 1),
(4745, 1942, 36, 'Willing To Work On Holidays', 5, 'k', 36, '2020-11-19 06:45:00', 1),
(4746, 1936, 29, 'Sustainability', 1, 'not suitable for insurance profile', 29, '2020-11-20 11:05:34', 1),
(4747, 1943, 29, 'Convincing Skills', 3, 'can improve', 29, '2020-11-20 11:07:27', 1),
(4748, 1943, 29, 'Confidence Level', 3, 'willing to work in sales', 29, '2020-11-20 11:07:27', 1),
(4749, 1913, 31, 'Appearance', 4, 'Good', 31, '2020-11-20 12:07:26', 1),
(4750, 1913, 31, 'Communication (English)', 4, 'Good', 31, '2020-11-20 12:07:26', 1),
(4751, 1973, 19, 'Sustainability', 1, 'no more sustain', 19, '2020-11-20 12:23:49', 1),
(4752, 1952, 51, 'Communication (English)', 3, 'good', 51, '2020-11-20 04:49:37', 1),
(4753, 1952, 51, 'Communication (Tamil)', 3, 'good', 51, '2020-11-20 04:49:37', 1),
(4754, 1952, 51, 'Confidence Level', 4, 'good', 51, '2020-11-20 04:49:37', 1),
(4755, 1979, 39, 'Appearance', 3, 'Outlook good', 39, '2020-11-21 03:34:37', 1),
(4756, 1979, 39, 'Communication (English)', 4, 'Good', 39, '2020-11-21 03:34:37', 1),
(4757, 1979, 39, 'Confidence Level', 3, 'Manageable', 39, '2020-11-21 03:34:37', 1),
(4758, 1979, 39, 'Importance Of Job', 3, 'Mandatory', 39, '2020-11-21 03:34:37', 1),
(4759, 1979, 39, 'Observation Skills', 4, 'Good in observation', 39, '2020-11-21 03:34:37', 1),
(4760, 1864, 39, 'Appearance', 3, 'Good', 39, '2020-11-21 03:39:47', 1),
(4761, 1864, 39, 'Communication (English)', 3, 'Good in communication', 39, '2020-11-21 03:39:47', 1),
(4762, 1864, 39, 'Importance Of Job', 3, 'Mandatory', 39, '2020-11-21 03:39:47', 1),
(4763, 1987, 51, 'Appearance', 4, 'appearnce is good', 51, '2020-11-21 03:40:51', 1),
(4764, 1987, 51, 'Convincing Skills', 2, 'convicing skill is poor', 51, '2020-11-21 03:40:51', 1),
(4765, 1980, 39, 'Communication (English)', 1, 'Worst in communication', 39, '2020-11-21 03:43:31', 1),
(4766, 1980, 39, 'Pressure Handling', 1, 'Will not handle', 39, '2020-11-21 03:43:31', 1),
(4767, 1980, 39, 'Sustainability', 1, 'Will not sustain ', 39, '2020-11-21 03:43:31', 1),
(4768, 1994, 31, 'Appearance', 4, 'Good', 31, '2020-11-21 05:08:10', 1),
(4769, 1994, 31, 'Communication (English)', 4, 'Good', 31, '2020-11-21 05:08:10', 1),
(4770, 1994, 31, 'Convincing Skills', 4, 'good', 31, '2020-11-21 05:08:10', 1),
(4771, 1989, 13, 'Attitude', 1, 'poor', 13, '2020-11-21 06:47:30', 1),
(4772, 1947, 27, 'attitude of the employee?', 1, 'Woprst Attitude.', 27, '2020-11-23 01:18:23', 1),
(4773, 1995, 51, 'Appearance', 4, 'good', 51, '2020-11-24 10:40:18', 1),
(4774, 1995, 51, 'Communication (English)', 4, 'good', 51, '2020-11-24 10:40:18', 1),
(4775, 2005, 51, 'Appearance', 4, 'good ', 51, '2020-11-24 10:41:21', 1),
(4776, 2005, 51, 'Communication (English)', 3, 'Good ', 51, '2020-11-24 10:41:21', 1),
(4777, 2005, 51, 'Convincing Skills', 4, 'Good ', 51, '2020-11-24 10:41:21', 1),
(4778, 2004, 29, 'Convincing Skills', 1, 'not good', 29, '2020-11-24 02:56:30', 1),
(4779, 2004, 29, 'Confidence Level', 1, 'nothing', 29, '2020-11-24 02:56:30', 1),
(4780, 2004, 29, 'Sales Experience', 1, 'no exp, ', 29, '2020-11-24 02:56:30', 1),
(4781, 1945, 29, 'Communication (English)', 1, 'nil', 29, '2020-11-24 02:57:46', 1),
(4782, 1945, 29, 'Convincing Skills', 1, 'no convincing skill', 29, '2020-11-24 02:57:46', 1),
(4783, 1945, 29, 'Pressure Handling', 1, 'nil', 29, '2020-11-24 02:57:46', 1),
(4784, 1945, 29, 'Sales Experience', 1, 'not Relevant and aged', 29, '2020-11-24 02:57:46', 1),
(4785, 1961, 29, 'Convincing Skills', 1, 'no', 29, '2020-11-24 03:00:05', 1),
(4786, 1961, 29, 'Pressure Handling', 1, 'nil', 29, '2020-11-24 03:00:05', 1),
(4787, 1961, 29, 'Sustainability', 1, 'will not stay ', 29, '2020-11-24 03:00:05', 1),
(4788, 1961, 29, 'Sales Experience', 1, 'doesnxquott know anything about the products', 29, '2020-11-24 03:00:05', 1),
(4789, 1961, 29, 'Existing Experience Analyze', 1, 'non performer, all false commitments and statement about previous work', 29, '2020-11-24 03:00:05', 1),
(4790, 1927, 18, 'Appearance', 3, 'Goof', 18, '2020-11-26 12:50:04', 1),
(4791, 1927, 18, 'Attitude', 3, 'Good', 18, '2020-11-26 12:50:04', 1),
(4792, 1927, 18, 'Communication (English)', 1, 'poor', 18, '2020-11-26 12:50:04', 1),
(4793, 1927, 18, 'Communication (Tamil)', 4, 'Good', 18, '2020-11-26 12:50:04', 1),
(4794, 1927, 18, 'Convincing Skills', 4, 'Good', 18, '2020-11-26 12:50:04', 1),
(4795, 1927, 18, 'Sales Experience', 3, 'Good', 18, '2020-11-26 12:50:04', 1),
(4796, 1994, 18, 'Attitude', 3, 'Good', 18, '2020-11-26 12:51:25', 1),
(4797, 1994, 18, 'Communication (English)', 4, 'Good', 18, '2020-11-26 12:51:25', 1),
(4798, 1994, 18, 'Communication (Tamil)', 4, 'Good', 18, '2020-11-26 12:51:25', 1),
(4799, 1994, 18, 'patience', 3, 'Good', 18, '2020-11-26 12:51:25', 1),
(4800, 1994, 18, 'Sustainability', 4, 'good', 18, '2020-11-26 12:51:25', 1),
(4801, 1994, 18, 'Sales Experience', 4, 'Good', 18, '2020-11-26 12:51:25', 1),
(4802, 1940, 36, 'Communication (English)', 4, 'Good', 36, '2020-11-26 01:06:20', 1),
(4803, 1940, 36, 'Communication (Tamil)', 4, 'Good', 36, '2020-11-26 01:06:20', 1),
(4804, 1940, 36, 'Convincing Skills', 3, 'k', 36, '2020-11-26 01:06:20', 1),
(4805, 1940, 36, 'Observation Skills', 3, 'k', 36, '2020-11-26 01:06:20', 1),
(4806, 1940, 36, 'patience', 4, 'k', 36, '2020-11-26 01:06:20', 1),
(4807, 2076, 19, 'Communication (English)', 4, 'GOOD', 19, '2020-11-27 05:39:38', 1),
(4808, 2076, 19, 'Sales Experience', 4, '2 YEARS IN MF(TRADE VALUE)', 19, '2020-11-27 05:39:38', 1),
(4809, 2083, 40, 'Appearance', 4, 'Professional Attire', 40, '2020-11-30 10:42:55', 1),
(4810, 2083, 40, 'Attitude', 5, 'Good', 40, '2020-11-30 10:42:55', 1),
(4811, 2083, 40, 'Communication (English)', 4, 'Good', 40, '2020-11-30 10:42:55', 1),
(4812, 2083, 40, 'Communication (Tamil)', 5, 'Good', 40, '2020-11-30 10:42:55', 1),
(4813, 2083, 40, 'Convincing Skills', 3, 'Not having sales knowledge', 40, '2020-11-30 10:42:55', 1),
(4814, 2083, 40, 'Confidence Level', 4, 'Might be', 40, '2020-11-30 10:42:55', 1),
(4815, 2083, 40, 'Importance Of Job', 5, 'Looking for JOB for long term', 40, '2020-11-30 10:42:55', 1),
(4816, 2083, 40, 'Observation Skills', 3, 'Neutral', 40, '2020-11-30 10:42:55', 1),
(4817, 2083, 40, 'Pressure Handling', 3, 'Yet to decide', 40, '2020-11-30 10:42:55', 1),
(4818, 2083, 40, 'patience', 5, 'Yes ', 40, '2020-11-30 10:42:55', 1),
(4819, 2083, 40, 'Sustainability', 4, 'Seems like a long runner', 40, '2020-11-30 10:42:55', 1),
(4820, 2083, 40, 'Sales Experience', 2, 'Fresher in sales', 40, '2020-11-30 10:42:55', 1),
(4821, 2083, 40, 'Existing Experience Analyze', 3, 'OK', 40, '2020-11-30 10:42:55', 1),
(4822, 2083, 40, 'Practical Challenges Outcome', 3, 'Neutral', 40, '2020-11-30 10:42:55', 1),
(4823, 2083, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2020-11-30 10:42:55', 1),
(4824, 2083, 18, 'Appearance', 4, 'good', 18, '2020-11-30 12:11:50', 1),
(4825, 2083, 18, 'Attitude', 4, 'good', 18, '2020-11-30 12:11:50', 1),
(4826, 2083, 18, 'Communication (English)', 4, 'good', 18, '2020-11-30 12:11:50', 1),
(4827, 2083, 18, 'Communication (Tamil)', 4, 'good', 18, '2020-11-30 12:11:50', 1),
(4828, 2083, 18, 'Convincing Skills', 3, 'ok', 18, '2020-11-30 12:11:50', 1),
(4829, 2083, 18, 'Confidence Level', 3, 'good', 18, '2020-11-30 12:11:50', 1),
(4830, 2083, 18, 'Importance Of Job', 4, 'needed', 18, '2020-11-30 12:11:50', 1),
(4831, 2083, 18, 'Observation Skills', 4, 'good', 18, '2020-11-30 12:11:50', 1),
(4832, 2083, 18, 'Pressure Handling', 3, 'ok', 18, '2020-11-30 12:11:50', 1),
(4833, 2083, 18, 'patience', 4, 'good', 18, '2020-11-30 12:11:50', 1),
(4834, 2083, 18, 'Sustainability', 4, 'good based on manager', 18, '2020-11-30 12:11:50', 1),
(4835, 2083, 18, 'Sales Experience', 3, 'average', 18, '2020-11-30 12:11:50', 1),
(4836, 2083, 18, 'Existing Experience Analyze', 3, 'good', 18, '2020-11-30 12:11:50', 1),
(4837, 2075, 38, 'Appearance', 3, 'Looking profiled', 38, '2020-11-30 01:19:34', 1),
(4838, 2075, 38, 'Attitude', 3, 'good in listening ', 38, '2020-11-30 01:19:34', 1),
(4839, 2075, 38, 'Communication (English)', 3, 'Average', 38, '2020-11-30 01:19:34', 1),
(4840, 2075, 38, 'Convincing Skills', 3, 'he completed marketing degree  so good in convicing skills', 38, '2020-11-30 01:19:34', 1),
(4841, 2075, 38, 'Importance Of Job', 3, 'job needed candidate', 38, '2020-11-30 01:19:34', 1),
(4842, 2075, 38, 'Sustainability', 3, 'he will sustain', 38, '2020-11-30 01:19:34', 1),
(4843, 2075, 38, 'Willing To Work On Holidays', 3, 'he is ready to work in holidays', 38, '2020-11-30 01:19:34', 1),
(4844, 2077, 38, 'Appearance', 2, 'Not Satisfied\n', 38, '2020-11-30 01:32:13', 1),
(4845, 2077, 38, 'Attitude', 1, 'Communication Okay Only...Not Good', 38, '2020-11-30 01:32:13', 1),
(4846, 2077, 38, 'Communication (English)', 2, 'Average', 38, '2020-11-30 01:32:13', 1),
(4847, 2077, 38, 'Sales Experience', 3, 'yes Already He Is Having In Sales Field\nNot Interested', 38, '2020-11-30 01:32:13', 1),
(4848, 2132, 38, 'Attitude', 2, 'not satisfied in communication and listening', 38, '2020-11-30 03:37:18', 1),
(4849, 2132, 38, 'Communication (English)', 1, 'manageable ', 38, '2020-11-30 03:37:18', 1),
(4850, 2132, 38, 'Sustainability', 1, 'he will not sustain', 38, '2020-11-30 03:37:18', 1),
(4851, 2132, 38, 'Sales Experience', 1, 'no sales experience', 38, '2020-11-30 03:37:18', 1),
(4852, 2007, 56, 'Communication (English)', 4, 'The way communicate is good with confidence clear on his convey his knowledge', 56, '2020-12-01 11:06:27', 1),
(4853, 2007, 56, 'Confidence Level', 3, 'confidence level is good with knowledge', 56, '2020-12-01 11:06:27', 1),
(4854, 2007, 56, 'Sales Experience', 3, 'he s good banking products and acheivement also', 56, '2020-12-01 11:06:27', 1),
(4855, 2140, 54, 'Software Installation?', 2, 'he knows os installation', 54, '2020-12-01 12:04:49', 1),
(4856, 2140, 54, 'Do you Know system assembling?', 1, 'he knows basic troubleshooting process.', 54, '2020-12-01 12:04:49', 1),
(4857, 2112, 54, 'Software Installation?', 3, 'haveing relevent exprience', 54, '2020-12-01 12:07:11', 1),
(4858, 2122, 21, 'Sustainability', 1, 'not sustain long term bcz she is planning mba for abroad...', 21, '2020-12-01 12:34:45', 1),
(4859, 2007, 30, 'Appearance', 3, 'dressing sense its good.', 30, '2020-12-01 02:58:03', 1),
(4860, 2007, 30, 'Communication (English)', 4, 'GOOD COMMUNICATION SKILL', 30, '2020-12-01 02:58:03', 1),
(4861, 2007, 30, 'Convincing Skills', 3, 'good', 30, '2020-12-01 02:58:03', 1),
(4862, 2007, 30, 'Pressure Handling', 3, 'Already experience in our field.He will handle the pressure', 30, '2020-12-01 02:58:03', 1),
(4863, 2007, 30, 'Sustainability', 3, 'he will sustain long term', 30, '2020-12-01 02:58:03', 1),
(4864, 2007, 30, 'Sales Experience', 4, '5 yrs experience in sales.', 30, '2020-12-01 02:58:03', 1),
(4865, 2007, 30, 'Existing Experience Analyze', 3, 'good', 30, '2020-12-01 02:58:03', 1),
(4866, 2007, 30, 'Willing To Work On Holidays', 3, 'he will work.', 30, '2020-12-01 02:58:03', 1),
(4867, 2186, 8, 'Communication (Tamil)', 3, 'very slow', 8, '2020-12-01 03:37:44', 1),
(4868, 2186, 8, 'Sales Experience', 3, 'yes', 8, '2020-12-01 03:37:44', 1),
(4869, 2190, 36, 'Convincing Skills', 3, 'Good', 36, '2020-12-02 12:54:42', 1),
(4870, 2190, 36, 'patience', 4, 'Good', 36, '2020-12-02 12:54:42', 1),
(4871, 2085, 38, 'Appearance', 2, 'okay with his appearance', 38, '2020-12-02 01:35:54', 1),
(4872, 2085, 38, 'Attitude', 3, 'good in understanding and listening', 38, '2020-12-02 01:35:54', 1),
(4873, 2085, 38, 'Existing Experience Analyze', 1, 'he is fresher', 38, '2020-12-02 01:35:54', 1),
(4874, 2085, 38, 'Importance Of Job', 3, 'Job needed candidate', 38, '2020-12-02 01:35:54', 1),
(4875, 2085, 38, 'Sustainability', 3, 'he will sustain', 38, '2020-12-02 01:35:54', 1),
(4876, 2085, 38, 'Sales Experience', 1, 'no sales experience', 38, '2020-12-02 01:35:54', 1),
(4877, 2171, 8, 'Convincing Skills', 3, 'yes', 8, '2020-12-03 12:48:20', 1),
(4878, 2171, 8, 'Sustainability', 3, 'yes', 8, '2020-12-03 12:48:20', 1),
(4879, 2171, 8, 'Sales Experience', 2, 'no', 8, '2020-12-03 12:48:20', 1),
(4880, 2153, 8, 'Communication (English)', 2, 'below avg', 8, '2020-12-03 03:32:32', 1),
(4881, 2153, 8, 'Convincing Skills', 3, 'okay', 8, '2020-12-03 03:32:32', 1),
(4882, 2153, 8, 'Sales Experience', 3, 'yes', 8, '2020-12-03 03:32:32', 1),
(4883, 2204, 8, 'Communication (Tamil)', 3, 'avg', 8, '2020-12-03 03:34:16', 1),
(4884, 2204, 8, 'Confidence Level', 2, 'lack', 8, '2020-12-03 03:34:16', 1),
(4885, 2204, 8, 'Importance Of Job', 3, 'yes', 8, '2020-12-03 03:34:16', 1),
(4886, 2153, 51, 'Appearance', 3, 'good', 51, '2020-12-03 07:29:35', 1),
(4887, 2204, 51, 'Pressure Handling', 1, 'low in pressure handling', 51, '2020-12-03 07:31:45', 1),
(4888, 2245, 8, 'Communication (English)', 3, 'below avg and  pronunciation is not  good', 8, '2020-12-04 12:31:35', 1),
(4889, 2245, 8, 'Sustainability', 2, 'yes', 8, '2020-12-04 12:31:35', 1),
(4890, 2249, 38, 'Appearance', 3, 'Good in outlook', 38, '2020-12-04 02:53:54', 1),
(4891, 2249, 38, 'Attitude', 4, 'good listening and communication', 38, '2020-12-04 02:53:54', 1),
(4892, 2249, 38, 'Communication (English)', 4, 'good in fluent english', 38, '2020-12-04 02:53:54', 1),
(4893, 2249, 38, 'Communication (Tamil)', 3, 'and he know hindi telugu urudu and russian', 38, '2020-12-04 02:53:54', 1),
(4894, 2249, 38, 'Sustainability', 1, 'he will not sustain', 38, '2020-12-04 02:53:54', 1),
(4895, 2249, 38, 'Sales Experience', 1, 'no experience', 38, '2020-12-04 02:53:54', 1),
(4896, 2260, 8, 'Appearance', 3, 'okay', 8, '2020-12-04 04:08:51', 1),
(4897, 2260, 8, 'Communication (English)', 3, 'good', 8, '2020-12-04 04:08:51', 1),
(4898, 2260, 8, 'Convincing Skills', 3, 'okay', 8, '2020-12-04 04:08:51', 1),
(4899, 2260, 8, 'Existing Experience Analyze', 3, 'good', 8, '2020-12-04 04:08:51', 1),
(4900, 2153, 29, 'Convincing Skills', 3, 'GOOD', 29, '2020-12-05 11:25:23', 1),
(4901, 2153, 29, 'Importance Of Job', 2, 'AVERAGE', 29, '2020-12-05 11:25:23', 1),
(4902, 2153, 29, 'Sales Experience', 3, 'HAS EXP CAN DO WELL', 29, '2020-12-05 11:25:23', 1),
(4903, 2260, 29, 'Appearance', 3, 'GOOD', 29, '2020-12-05 11:27:06', 1),
(4904, 2260, 29, 'Attitude', 3, 'POSITIVE ATTITUDE', 29, '2020-12-05 11:27:06', 1),
(4905, 2260, 29, 'Communication (English)', 4, 'GOOD', 29, '2020-12-05 11:27:06', 1),
(4906, 2260, 29, 'Convincing Skills', 3, 'GOOD', 29, '2020-12-05 11:27:06', 1),
(4907, 2260, 29, 'Confidence Level', 3, 'GOOD', 29, '2020-12-05 11:27:06', 1),
(4908, 2229, 8, 'Communication (English)', 3, 'okay', 8, '2020-12-05 12:25:08', 1),
(4909, 2229, 8, 'Confidence Level', 3, 'good', 8, '2020-12-05 12:25:08', 1),
(4910, 2229, 8, 'Sales Experience', 2, 'fresher', 8, '2020-12-05 12:25:08', 1),
(4911, 2196, 33, 'Appearance', 2, 'NOT GOOD WEARED CASUALS ', 33, '2020-12-05 04:51:50', 1),
(4912, 2196, 33, 'Attitude', 3, 'AVERAGE', 33, '2020-12-05 04:51:50', 1),
(4913, 2196, 33, 'Communication (English)', 3, 'AVERAGE', 33, '2020-12-05 04:51:50', 1),
(4914, 2196, 33, 'Communication (Tamil)', 2, 'AVERAGE', 33, '2020-12-05 04:51:50', 1),
(4915, 2196, 33, 'Convincing Skills', 1, 'LEARNER', 33, '2020-12-05 04:51:50', 1),
(4916, 2285, 51, 'Appearance', 3, 'good', 51, '2020-12-05 06:10:00', 1),
(4917, 2285, 51, 'Willing To Work On Holidays', 3, 'good', 51, '2020-12-05 06:10:00', 1),
(4918, 2256, 21, 'Appearance', 3, 'ok', 21, '2020-12-05 06:13:28', 1),
(4919, 2256, 21, 'Communication (Tamil)', 4, 'ok god', 21, '2020-12-05 06:13:28', 1),
(4920, 2256, 21, 'Confidence Level', 3, 'ok, he have exp', 21, '2020-12-05 06:13:28', 1),
(4921, 2256, 21, 'Importance (Job)', 4, 'father passed away , he is source income our family', 21, '2020-12-05 06:13:28', 1),
(4922, 2256, 21, 'Sustainability', 4, 'ok for above 2 yrs , bond also ok', 21, '2020-12-05 06:13:28', 1),
(4923, 2245, 11, 'Appearance', 3, '-', 11, '2020-12-07 10:10:46', 1),
(4924, 2245, 11, 'Attitude', 3, '-', 11, '2020-12-07 10:10:46', 1),
(4925, 2245, 11, 'Communication (Tamil)', 2, '-', 11, '2020-12-07 10:10:46', 1),
(4926, 2245, 11, 'Communication (English)', 2, '-', 11, '2020-12-07 10:10:46', 1),
(4927, 2245, 11, 'convincing Skills', 2, '-', 11, '2020-12-07 10:10:46', 1),
(4928, 2245, 11, 'Confidence Level', 2, '-', 11, '2020-12-07 10:10:46', 1),
(4929, 2245, 11, 'Importance (Job)', 3, '-', 11, '2020-12-07 10:10:46', 1),
(4930, 2245, 11, 'Observation skills', 3, '-', 11, '2020-12-07 10:10:46', 1),
(4931, 2245, 11, 'Pressure Handling', 2, '-', 11, '2020-12-07 10:10:46', 1),
(4932, 2245, 11, 'patience', 3, '-', 11, '2020-12-07 10:10:46', 1),
(4933, 2245, 11, 'Sustainability', 3, '-', 11, '2020-12-07 10:10:46', 1),
(4934, 2229, 44, 'Communication (English)', 4, 'Good Communication skill', 44, '2020-12-07 10:54:25', 1),
(4935, 2229, 44, 'Sales Experience', 1, 'Fresher', 44, '2020-12-07 10:54:25', 1),
(4936, 2283, 56, 'Appearance', 3, 'Way she s carring herself way behave as professional is good', 56, '2020-12-07 12:30:40', 1),
(4937, 2283, 56, 'Convincing Skills', 3, 'voice tone and confident on herself  with the way she Convince what she wants to she good at it.', 56, '2020-12-07 12:30:40', 1),
(4938, 2283, 56, 'Importance Of Job', 3, 'She need a job to take care family and her sister education ', 56, '2020-12-07 12:30:40', 1),
(4939, 2287, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-12-07 04:15:21', 1),
(4940, 2287, 8, 'Sales Experience', 3, 'yes', 8, '2020-12-07 04:15:21', 1),
(4941, 2287, 8, 'Existing Experience Analyze', 3, 'good', 8, '2020-12-07 04:15:21', 1),
(4942, 2261, 33, 'Appearance', 3, 'Good', 33, '2020-12-07 05:11:55', 1),
(4943, 2261, 33, 'Communication (English)', 4, 'Good', 33, '2020-12-07 05:11:55', 1),
(4944, 2261, 33, 'Communication (Tamil)', 4, 'Good', 33, '2020-12-07 05:11:55', 1),
(4945, 2261, 33, 'Willing To Work On Holidays', 4, 'Yes', 33, '2020-12-07 05:11:55', 1),
(4946, 2283, 30, 'Appearance', 2, 'Good ', 30, '2020-12-07 11:46:33', 1),
(4947, 2283, 30, 'Communication (English)', 3, 'Communication skill ok', 30, '2020-12-07 11:46:33', 1),
(4948, 2283, 30, 'Importance Of Job', 3, 'Need', 30, '2020-12-07 11:46:33', 1),
(4949, 2283, 30, 'Willing To Work On Holidays', 3, 'She k with Holidays also', 30, '2020-12-07 11:46:33', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(4950, 2287, 44, 'Communication (English)', 1, 'poor communication ', 44, '2020-12-08 10:48:56', 1),
(4951, 2287, 44, 'Sales Experience', 2, 'having experience in other industry', 44, '2020-12-08 10:48:56', 1),
(4952, 2305, 19, 'Sales Experience', 4, 'exp in banking(2years)', 19, '2020-12-08 11:08:59', 1),
(4953, 2346, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-12-08 01:14:29', 1),
(4954, 2346, 8, 'Sales Experience', 3, 'yes', 8, '2020-12-08 01:14:29', 1),
(4955, 2340, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-12-08 01:15:11', 1),
(4956, 2340, 8, 'Importance (Job)', 4, 'yes', 8, '2020-12-08 01:15:11', 1),
(4957, 2268, 8, 'Communication (English)', 3, 'okay', 8, '2020-12-08 01:17:22', 1),
(4958, 2319, 19, 'Communication (Tamil)', 4, 'good', 19, '2020-12-08 04:23:03', 1),
(4959, 2319, 19, 'Observation Skills', 4, 'good', 19, '2020-12-08 04:23:03', 1),
(4960, 2321, 15, 'Attitude', 4, 'ok', 15, '2020-12-08 05:18:12', 1),
(4961, 2321, 15, 'Communication (English)', 3, 'ok', 15, '2020-12-08 05:18:12', 1),
(4962, 2321, 15, 'Communication (Tamil)', 5, 'ok', 15, '2020-12-08 05:18:12', 1),
(4963, 2321, 15, 'Convincing Skills', 3, 'ok', 15, '2020-12-08 05:18:12', 1),
(4964, 2321, 15, 'Confidence Level', 4, 'ok', 15, '2020-12-08 05:18:12', 1),
(4965, 2321, 15, 'Importance Of Job', 3, 'finance need', 15, '2020-12-08 05:18:12', 1),
(4966, 2321, 15, 'Observation Skills', 2, 'ok', 15, '2020-12-08 05:18:12', 1),
(4967, 2321, 15, 'Sustainability', 2, 'traning period  analyze', 15, '2020-12-08 05:18:12', 1),
(4968, 2321, 15, 'Sales Experience', 1, 'fresher', 15, '2020-12-08 05:18:12', 1),
(4969, 2321, 15, 'Willing To Work On Holidays', 3, 'ok', 15, '2020-12-08 05:18:12', 1),
(4970, 2271, 15, 'Appearance', 3, 'ok', 15, '2020-12-08 05:21:58', 1),
(4971, 2271, 15, 'Attitude', 3, 'silent person', 15, '2020-12-08 05:21:58', 1),
(4972, 2271, 15, 'Communication (English)', 3, 'ok', 15, '2020-12-08 05:21:58', 1),
(4973, 2271, 15, 'Communication (Tamil)', 3, 'ok', 15, '2020-12-08 05:21:58', 1),
(4974, 2271, 15, 'Importance Of Job', 4, 'finance ', 15, '2020-12-08 05:21:58', 1),
(4975, 2271, 15, 'Sustainability', 3, 'ok', 15, '2020-12-08 05:21:58', 1),
(4976, 2271, 15, 'Sales Experience', 1, 'fresher', 15, '2020-12-08 05:21:58', 1),
(4977, 2340, 21, 'Appearance', 3, 'ok', 21, '2020-12-08 05:32:32', 1),
(4978, 2340, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-12-08 05:32:32', 1),
(4979, 2340, 21, 'Communication (English)', 2, 'avg', 21, '2020-12-08 05:32:32', 1),
(4980, 2340, 21, 'convincing Skills', 3, 'ok', 21, '2020-12-08 05:32:32', 1),
(4981, 2340, 21, 'Confidence Level', 3, 'ok', 21, '2020-12-08 05:32:32', 1),
(4982, 2340, 21, 'Importance (Job)', 4, 'yes', 21, '2020-12-08 05:32:32', 1),
(4983, 2340, 21, 'Sustainability', 3, 'ok for bond also', 21, '2020-12-08 05:32:32', 1),
(4984, 2313, 21, 'Appearance', 3, 'ok', 21, '2020-12-08 05:34:57', 1),
(4985, 2313, 21, 'Communication (Tamil)', 4, 'ok', 21, '2020-12-08 05:34:57', 1),
(4986, 2313, 21, 'Communication (English)', 3, 'ok avg', 21, '2020-12-08 05:34:57', 1),
(4987, 2313, 21, 'convincing Skills', 4, 'ok', 21, '2020-12-08 05:34:57', 1),
(4988, 2313, 21, 'Confidence Level', 4, 'ok ', 21, '2020-12-08 05:34:57', 1),
(4989, 2313, 21, 'Pressure Handling', 4, 'already have exp ', 21, '2020-12-08 05:34:57', 1),
(4990, 2313, 21, 'Sustainability', 4, 'ok', 21, '2020-12-08 05:34:57', 1),
(4991, 2334, 31, 'Communication (Tamil)', 4, 'Good', 31, '2020-12-08 07:27:32', 1),
(4992, 2334, 31, 'Existing Experience Analyze', 1, 'irrelevant', 31, '2020-12-08 07:27:32', 1),
(4993, 2346, 31, 'Appearance', 4, 'Good', 31, '2020-12-08 07:29:38', 1),
(4994, 2346, 31, 'Existing Experience Analyze', 1, 'irrelevant', 31, '2020-12-08 07:29:38', 1),
(4995, 2335, 30, 'Appearance', 3, 'Its seems good', 30, '2020-12-09 09:42:09', 1),
(4996, 2335, 30, 'Communication (English)', 3, 'Good communication ', 30, '2020-12-09 09:42:09', 1),
(4997, 2335, 30, 'Observation Skills', 3, 'Good', 30, '2020-12-09 09:42:09', 1),
(4998, 2335, 30, 'Willing To Work On Holidays', 3, 'K with Holidays ', 30, '2020-12-09 09:42:09', 1),
(4999, 2346, 44, 'Attitude', 3, 'Ok', 44, '2020-12-09 10:36:18', 1),
(5000, 2346, 44, 'Communication (English)', 3, 'Good communication skill', 44, '2020-12-09 10:36:18', 1),
(5001, 2346, 44, 'Sales Experience', 3, 'Having Experience in Card sales xxamp E commerce', 44, '2020-12-09 10:36:18', 1),
(5002, 2357, 44, 'Communication (English)', 3, 'Good  communication skills', 44, '2020-12-09 10:43:06', 1),
(5003, 2357, 44, 'Sales Experience', 3, 'Having experience in hdfc  bank', 44, '2020-12-09 10:43:06', 1),
(5004, 2357, 44, 'Willing To Work On Holidays', 3, 'Ready to work on holidays', 44, '2020-12-09 10:43:06', 1),
(5005, 2384, 8, 'Communication (English)', 3, 'avg', 8, '2020-12-09 05:04:32', 1),
(5006, 2384, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-12-09 05:04:32', 1),
(5007, 2374, 21, 'Appearance', 3, 'ok', 21, '2020-12-10 10:16:44', 1),
(5008, 2374, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-12-10 10:16:44', 1),
(5009, 2374, 21, 'Communication (English)', 3, 'ok managable ', 21, '2020-12-10 10:16:44', 1),
(5010, 2374, 21, 'convincing Skills', 3, 'ok', 21, '2020-12-10 10:16:44', 1),
(5011, 2374, 21, 'Confidence Level', 3, 'ok', 21, '2020-12-10 10:16:44', 1),
(5012, 2374, 21, 'Pressure Handling', 3, 'ok have exp', 21, '2020-12-10 10:16:44', 1),
(5013, 2374, 21, 'Sustainability', 3, 'ok for 1 yr bond...', 21, '2020-12-10 10:16:44', 1),
(5014, 2346, 29, 'Convincing Skills', 2, 'AVERAGE', 29, '2020-12-10 02:58:07', 1),
(5015, 2346, 29, 'Importance Of Job', 3, 'AVERAGE', 29, '2020-12-10 02:58:07', 1),
(5016, 2346, 29, 'Sales Experience', 3, 'GOOD', 29, '2020-12-10 02:58:07', 1),
(5017, 2285, 29, 'Convincing Skills', 1, 'NIL', 29, '2020-12-10 02:59:36', 1),
(5018, 2285, 29, 'Confidence Level', 1, 'NOT GOOD', 29, '2020-12-10 02:59:36', 1),
(5019, 2285, 29, 'Sustainability', 1, 'WILL NOT', 29, '2020-12-10 02:59:36', 1),
(5020, 2285, 29, 'Sales Experience', 1, 'NO SALES EXPERIENCE', 29, '2020-12-10 02:59:36', 1),
(5021, 2427, 8, 'Appearance', 3, 'okay', 8, '2020-12-11 12:41:43', 1),
(5022, 2427, 8, 'Communication (English)', 3, 'good', 8, '2020-12-11 12:41:43', 1),
(5023, 2427, 8, 'Sales Experience', 2, 'no', 8, '2020-12-11 12:41:43', 1),
(5024, 2243, 8, 'Communication (English)', 2, 'below avg', 8, '2020-12-11 03:14:52', 1),
(5025, 2243, 8, 'Convincing Skills', 3, 'okay', 8, '2020-12-11 03:14:52', 1),
(5026, 2243, 19, 'Communication (Tamil)', 4, 'good', 19, '2020-12-11 05:49:52', 1),
(5027, 2243, 19, 'Importance Of Job', 4, 'Fresher Fit for sales', 19, '2020-12-11 05:49:52', 1),
(5028, 2336, 30, 'Appearance', 3, 'Good in Outlook', 30, '2020-12-11 06:53:21', 1),
(5029, 2336, 30, 'Attitude', 3, 'good communication and listening', 30, '2020-12-11 06:53:21', 1),
(5030, 2336, 30, 'Communication (English)', 3, 'good in english fluent', 30, '2020-12-11 06:53:21', 1),
(5031, 2336, 30, 'Convincing Skills', 3, 'he is experienced in same field', 30, '2020-12-11 06:53:21', 1),
(5032, 2336, 30, 'Sales Experience', 3, 'yes he is having in aegon', 30, '2020-12-11 06:53:21', 1),
(5033, 2455, 38, 'Appearance', 1, 'not satisfied with his appearance', 38, '2020-12-12 11:51:02', 1),
(5034, 2455, 38, 'Attitude', 1, 'not good in communication', 38, '2020-12-12 11:51:02', 1),
(5035, 2455, 38, 'Communication (English)', 1, 'basic english', 38, '2020-12-12 11:51:02', 1),
(5036, 2455, 38, 'Pressure Handling', 1, 'he will not handle', 38, '2020-12-12 11:51:02', 1),
(5037, 2455, 38, 'Sales Experience', 1, 'no experience', 38, '2020-12-12 11:51:02', 1),
(5038, 2447, 19, 'Sustainability', 4, 'fit for the job', 19, '2020-12-12 02:44:15', 1),
(5039, 2462, 19, 'Convincing Skills', 1, 'zero', 19, '2020-12-12 02:48:29', 1),
(5040, 2462, 19, 'Sustainability', 1, 'no sustain', 19, '2020-12-12 02:48:29', 1),
(5041, 2475, 21, 'Appearance', 3, 'ok', 21, '2020-12-12 06:13:22', 1),
(5042, 2475, 21, 'Communication (Tamil)', 4, 'ok good', 21, '2020-12-12 06:13:22', 1),
(5043, 2475, 21, 'Communication (English)', 3, 'managable ', 21, '2020-12-12 06:13:22', 1),
(5044, 2475, 21, 'convincing Skills', 4, 'ok', 21, '2020-12-12 06:13:22', 1),
(5045, 2475, 21, 'Importance (Job)', 4, 'need for family ', 21, '2020-12-12 06:13:22', 1),
(5046, 2475, 21, 'Sustainability', 4, 'ok', 21, '2020-12-12 06:13:22', 1),
(5047, 2427, 44, 'Sales Experience', 1, 'Freshers', 44, '2020-12-14 10:40:23', 1),
(5048, 2382, 19, 'Sales Experience', 1, 'no exp in sales', 19, '2020-12-14 11:29:52', 1),
(5049, 2387, 19, 'Sales Experience', 1, 'exp in collection agent', 19, '2020-12-14 11:30:37', 1),
(5050, 2409, 31, 'Appearance', 3, 'Good', 31, '2020-12-15 05:25:54', 1),
(5051, 2409, 31, 'Convincing Skills', 1, 'Unable to convince his own product', 31, '2020-12-15 05:25:54', 1),
(5052, 2511, 31, 'Convincing Skills', 2, 'Poor', 31, '2020-12-15 05:32:25', 1),
(5053, 2511, 31, 'Confidence Level', 1, 'Poor', 31, '2020-12-15 05:32:25', 1),
(5054, 2511, 31, 'Sustainability', 1, 'Frequently changing ', 31, '2020-12-15 05:32:25', 1),
(5055, 2486, 11, 'Appearance', 2, '-', 11, '2020-12-16 10:46:22', 1),
(5056, 2486, 11, 'Attitude', 3, '-', 11, '2020-12-16 10:46:22', 1),
(5057, 2486, 11, 'Communication (Tamil)', 3, 'moderate ', 11, '2020-12-16 10:46:22', 1),
(5058, 2486, 11, 'Communication (English)', 2, '-', 11, '2020-12-16 10:46:22', 1),
(5059, 2486, 11, 'convincing Skills', 2, '-', 11, '2020-12-16 10:46:22', 1),
(5060, 2486, 11, 'Confidence Level', 2, '--', 11, '2020-12-16 10:46:22', 1),
(5061, 2486, 11, 'Importance (Job)', 3, '-', 11, '2020-12-16 10:46:22', 1),
(5062, 2486, 11, 'Observation skills', 3, '-', 11, '2020-12-16 10:46:22', 1),
(5063, 2486, 11, 'Pressure Handling', 3, '-', 11, '2020-12-16 10:46:22', 1),
(5064, 2486, 11, 'patience', 3, '-', 11, '2020-12-16 10:46:22', 1),
(5065, 2486, 11, 'Sustainability', 2, '-', 11, '2020-12-16 10:46:22', 1),
(5066, 2473, 11, 'Appearance', 3, '-', 11, '2020-12-16 10:49:15', 1),
(5067, 2473, 11, 'Attitude', 3, '-', 11, '2020-12-16 10:49:15', 1),
(5068, 2473, 11, 'Communication (Tamil)', 4, 'good', 11, '2020-12-16 10:49:15', 1),
(5069, 2473, 11, 'Communication (English)', 4, 'ok', 11, '2020-12-16 10:49:15', 1),
(5070, 2473, 11, 'convincing Skills', 3, '-', 11, '2020-12-16 10:49:15', 1),
(5071, 2473, 11, 'Confidence Level', 3, 'ok', 11, '2020-12-16 10:49:15', 1),
(5072, 2473, 11, 'Importance (Job)', 3, '-', 11, '2020-12-16 10:49:15', 1),
(5073, 2473, 11, 'Observation skills', 3, '-', 11, '2020-12-16 10:49:15', 1),
(5074, 2473, 11, 'Pressure Handling', 2, '-', 11, '2020-12-16 10:49:15', 1),
(5075, 2473, 11, 'patience', 3, '--', 11, '2020-12-16 10:49:15', 1),
(5076, 2473, 11, 'Sustainability', 2, '-', 11, '2020-12-16 10:49:15', 1),
(5077, 2518, 8, 'Communication (Tamil)', 3, 'avg', 8, '2020-12-16 01:10:42', 1),
(5078, 2518, 8, 'convincing Skills', 2, 'no', 8, '2020-12-16 01:10:42', 1),
(5079, 2538, 8, 'Communication (Tamil)', 3, 'avg, ', 8, '2020-12-16 01:12:00', 1),
(5080, 2538, 8, 'Importance Of Job', 3, 'yes', 8, '2020-12-16 01:12:00', 1),
(5081, 2538, 8, 'Sustainability', 2, 'need to check', 8, '2020-12-16 01:12:00', 1),
(5082, 2538, 24, 'Appearance', 1, 'not good', 24, '2020-12-16 02:45:36', 1),
(5083, 2539, 8, 'Communication (English)', 3, 'good', 8, '2020-12-16 03:02:00', 1),
(5084, 2510, 38, 'Appearance', 3, 'good in  outlook', 38, '2020-12-16 03:29:46', 1),
(5085, 2510, 38, 'Attitude', 4, 'Good in communication and listening', 38, '2020-12-16 03:29:46', 1),
(5086, 2510, 38, 'Communication (English)', 3, 'fluent in english', 38, '2020-12-16 03:29:46', 1),
(5087, 2510, 38, 'Communication (Tamil)', 3, 'he know very well telugu, tamil xxamp hindi', 38, '2020-12-16 03:29:46', 1),
(5088, 2510, 38, 'Confidence Level', 3, 'good', 38, '2020-12-16 03:29:46', 1),
(5089, 2510, 38, 'Pressure Handling', 3, 'he will handle', 38, '2020-12-16 03:29:46', 1),
(5090, 2510, 38, 'Sales Experience', 2, 'average', 38, '2020-12-16 03:29:46', 1),
(5091, 2510, 38, 'Willing To Work On Holidays', 3, 'accepeted', 38, '2020-12-16 03:29:46', 1),
(5092, 2513, 38, 'Appearance', 3, 'good in outlook', 38, '2020-12-16 03:34:15', 1),
(5093, 2513, 38, 'Attitude', 3, 'ixquotm convinced in his communication and listening', 38, '2020-12-16 03:34:15', 1),
(5094, 2513, 38, 'Communication (English)', 3, 'good', 38, '2020-12-16 03:34:15', 1),
(5095, 2513, 38, 'Observation Skills', 2, 'good', 38, '2020-12-16 03:34:15', 1),
(5096, 2513, 38, 'Pressure Handling', 3, 'he will handle', 38, '2020-12-16 03:34:15', 1),
(5097, 2513, 38, 'Sales Experience', 3, 'good in sales ', 38, '2020-12-16 03:34:15', 1),
(5098, 2513, 38, 'Willing To Work On Holidays', 2, 'accepted', 38, '2020-12-16 03:34:15', 1),
(5099, 2510, 8, 'Communication (English)', 3, 'good', 8, '2020-12-16 04:17:58', 1),
(5100, 2543, 39, 'Appearance', 2, 'Satisfied', 39, '2020-12-16 05:08:18', 1),
(5101, 2543, 39, 'Attitude', 2, 'Average in communication and understanding', 39, '2020-12-16 05:08:18', 1),
(5102, 2543, 39, 'Communication (English)', 3, 'good fluency', 39, '2020-12-16 05:08:18', 1),
(5103, 2543, 39, 'patience', 1, 'no patience', 39, '2020-12-16 05:08:18', 1),
(5104, 2543, 39, 'Sustainability', 1, 'he will not sustain', 39, '2020-12-16 05:08:18', 1),
(5105, 2560, 8, 'Communication (Tamil)', 3, 'avg', 8, '2020-12-17 12:59:35', 1),
(5106, 2560, 8, 'convincing Skills', 2, 'not up to the level', 8, '2020-12-17 12:59:35', 1),
(5107, 2560, 8, 'Confidence Level', 2, 'no', 8, '2020-12-17 12:59:35', 1),
(5108, 2381, 36, 'Communication (English)', 4, 'Good', 36, '2020-12-17 05:12:56', 1),
(5109, 2381, 36, 'Communication (Tamil)', 4, 'Good', 36, '2020-12-17 05:12:56', 1),
(5110, 2381, 36, 'Convincing Skills', 4, 'Good', 36, '2020-12-17 05:12:56', 1),
(5111, 2381, 36, 'Confidence Level', 4, 'Good', 36, '2020-12-17 05:12:56', 1),
(5112, 2381, 36, 'Importance Of Job', 3, 'k', 36, '2020-12-17 05:12:56', 1),
(5113, 2381, 36, 'Sales Experience', 2, 'k', 36, '2020-12-17 05:12:56', 1),
(5114, 2381, 36, 'Existing Experience Analyze', 4, 'k', 36, '2020-12-17 05:12:56', 1),
(5115, 2539, 44, 'Communication (English)', 3, 'Good Communication skill', 44, '2020-12-18 11:22:55', 1),
(5116, 2539, 44, 'Sales Experience', 3, 'Having inbound Tele sales experience', 44, '2020-12-18 11:22:55', 1),
(5117, 2051, 39, 'Appearance', 1, 'Not good in outlook', 39, '2020-12-18 01:02:14', 1),
(5118, 2051, 39, 'Attitude', 2, 'Average communication', 39, '2020-12-18 01:02:14', 1),
(5119, 2051, 39, 'Communication (English)', 1, 'Manageable', 39, '2020-12-18 01:02:14', 1),
(5120, 2051, 39, 'Pressure Handling', 1, 'He will not handle pressure', 39, '2020-12-18 01:02:14', 1),
(5121, 2051, 39, 'Sustainability', 1, 'He will not sustain', 39, '2020-12-18 01:02:14', 1),
(5122, 2546, 42, 'Appearance', 3, 'Good', 42, '2020-12-18 01:06:45', 1),
(5123, 2546, 42, 'Attitude', 4, 'Too good in communication', 42, '2020-12-18 01:06:45', 1),
(5124, 2546, 42, 'Communication (Tamil)', 3, 'She know kannada and telugu', 42, '2020-12-18 01:06:45', 1),
(5125, 2546, 42, 'Communication (English)', 4, 'Fluent english', 42, '2020-12-18 01:06:45', 1),
(5126, 2546, 42, 'Importance (Job)', 3, 'Already she worked in agrement basis and now she need job', 42, '2020-12-18 01:06:45', 1),
(5127, 2546, 42, 'Sustainability', 3, 'She will sustain', 42, '2020-12-18 01:06:45', 1),
(5128, 2479, 56, 'Communication (English)', 3, 'SHE IS HAVING A GOOD COMMUNICATION SKILL AND FLUENT IN ACCENT', 56, '2020-12-18 03:39:49', 1),
(5129, 2479, 56, 'Communication (Tamil)', 3, 'MOTHER TOUNGUE IS TAMIL, SO SHE IS GOOD ON THAT', 56, '2020-12-18 03:39:49', 1),
(5130, 2479, 56, 'Sales Experience', 3, 'SHE HAD A VERY GOOD EXPERIENCE IN TELL CALLING SALES', 56, '2020-12-18 03:39:49', 1),
(5131, 2580, 11, 'Communication (Tamil)', 4, 'ok', 11, '2020-12-18 06:22:07', 1),
(5132, 2580, 11, 'Communication (English)', 2, 'below average ', 11, '2020-12-18 06:22:07', 1),
(5133, 2580, 11, 'convincing Skills', 3, 'ok', 11, '2020-12-18 06:22:07', 1),
(5134, 2580, 11, 'Confidence Level', 3, 'normal', 11, '2020-12-18 06:22:07', 1),
(5135, 2580, 11, 'Importance (Job)', 3, 'ok', 11, '2020-12-18 06:22:07', 1),
(5136, 2580, 11, 'Sustainability', 2, 'long distance so doubt', 11, '2020-12-18 06:22:07', 1),
(5137, 2568, 11, 'Appearance', 3, 'ok', 11, '2020-12-18 06:24:10', 1),
(5138, 2568, 11, 'Attitude', 3, 'positive', 11, '2020-12-18 06:24:10', 1),
(5139, 2568, 11, 'Communication (Tamil)', 4, 'good', 11, '2020-12-18 06:24:10', 1),
(5140, 2568, 11, 'Communication (English)', 3, 'ok', 11, '2020-12-18 06:24:10', 1),
(5141, 2568, 11, 'convincing Skills', 3, 'ok', 11, '2020-12-18 06:24:10', 1),
(5142, 2568, 11, 'Confidence Level', 3, 'ok', 11, '2020-12-18 06:24:10', 1),
(5143, 2568, 11, 'Importance (Job)', 3, 'required', 11, '2020-12-18 06:24:10', 1),
(5144, 2568, 11, 'Observation skills', 4, 'good', 11, '2020-12-18 06:24:10', 1),
(5145, 2568, 11, 'Pressure Handling', 3, 'can handle sales pressure', 11, '2020-12-18 06:24:10', 1),
(5146, 2568, 11, 'patience', 4, 'ok', 11, '2020-12-18 06:24:10', 1),
(5147, 2568, 11, 'Sustainability', 3, 'ok', 11, '2020-12-18 06:24:10', 1),
(5148, 2584, 18, 'Appearance', 2, 'Average', 18, '2020-12-19 11:56:08', 1),
(5149, 2584, 18, 'Communication (English)', 2, 'Poor', 18, '2020-12-19 11:56:08', 1),
(5150, 2584, 18, 'Convincing Skills', 3, 'Average', 18, '2020-12-19 11:56:08', 1),
(5151, 2584, 18, 'Importance Of Job', 4, 'Needed', 18, '2020-12-19 11:56:08', 1),
(5152, 2584, 18, 'Observation Skills', 2, 'Average', 18, '2020-12-19 11:56:08', 1),
(5153, 2584, 18, 'Sales Experience', 4, 'Good', 18, '2020-12-19 11:56:08', 1),
(5154, 2585, 18, 'Appearance', 3, 'Ok', 18, '2020-12-19 11:57:52', 1),
(5155, 2585, 18, 'Attitude', 3, 'Decent', 18, '2020-12-19 11:57:52', 1),
(5156, 2585, 18, 'Communication (English)', 3, 'Average', 18, '2020-12-19 11:57:52', 1),
(5157, 2585, 18, 'Communication (Tamil)', 3, 'Good', 18, '2020-12-19 11:57:52', 1),
(5158, 2585, 18, 'Convincing Skills', 4, 'Good', 18, '2020-12-19 11:57:52', 1),
(5159, 2585, 18, 'Confidence Level', 3, 'good', 18, '2020-12-19 11:57:52', 1),
(5160, 2585, 18, 'Importance Of Job', 4, 'Needed', 18, '2020-12-19 11:57:52', 1),
(5161, 2585, 18, 'Sustainability', 3, 'Ok', 18, '2020-12-19 11:57:52', 1),
(5162, 2585, 18, 'Sales Experience', 4, 'good', 18, '2020-12-19 11:57:52', 1),
(5163, 2130, 8, 'Communication (Tamil)', 3, 'Avg', 8, '2020-12-19 02:44:21', 1),
(5164, 2130, 8, 'Communication (English)', 2, 'below avg', 8, '2020-12-19 02:44:21', 1),
(5165, 2130, 8, 'Sustainability', 1, 'very poor', 8, '2020-12-19 02:44:21', 1),
(5166, 2565, 42, 'Communication (English)', 2, 'she is not good in accent', 42, '2020-12-19 03:45:33', 1),
(5167, 2565, 42, 'Importance (Job)', 1, 'she is preparing civil service exam', 42, '2020-12-19 03:45:33', 1),
(5168, 2565, 42, 'Sustainability', 1, 'she will not sustain, waver mind', 42, '2020-12-19 03:45:33', 1),
(5169, 2479, 30, 'Attitude', 3, 'good communication', 30, '2020-12-19 04:00:26', 1),
(5170, 2479, 30, 'Communication (English)', 3, 'good', 30, '2020-12-19 04:00:26', 1),
(5171, 2479, 30, 'Sustainability', 3, 'she will sustain', 30, '2020-12-19 04:00:26', 1),
(5172, 2623, 38, 'Attitude', 1, 'VERY BAD IN COMMUNICATION', 38, '2020-12-21 01:06:08', 1),
(5173, 2623, 38, 'Communication (English)', 1, 'HE DONxquotT KNOW BASIC ENGLISH  TOO', 38, '2020-12-21 01:06:08', 1),
(5174, 2623, 38, 'Confidence Level', 1, 'ZERO IN CONFIDENCE', 38, '2020-12-21 01:06:08', 1),
(5175, 2623, 38, 'Pressure Handling', 1, 'HE WILL NOT HANDLE...NOT MATURED', 38, '2020-12-21 01:06:08', 1),
(5176, 2623, 38, 'Sustainability', 1, 'HE WILL NOT SUSTAIN', 38, '2020-12-21 01:06:08', 1),
(5177, 2623, 38, 'Sales Experience', 1, 'HE WILL NOT SUIT FOR OUR PROFILE', 38, '2020-12-21 01:06:08', 1),
(5178, 2627, 8, 'Communication (English)', 3, 'good', 8, '2020-12-21 05:29:34', 1),
(5179, 2627, 8, 'Pressure Handling', 2, 'no', 8, '2020-12-21 05:29:34', 1),
(5180, 2515, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-12-21 05:34:29', 1),
(5181, 2515, 8, 'Existing Experience Analyze', 3, 'yes', 8, '2020-12-21 05:34:29', 1),
(5182, 2515, 8, 'Sales Experience', 3, 'yes', 8, '2020-12-21 05:34:29', 1),
(5183, 2622, 8, 'convincing Skills', 2, 'no', 8, '2020-12-21 05:39:38', 1),
(5184, 2622, 8, 'Confidence Level', 2, 'no', 8, '2020-12-21 05:39:38', 1),
(5185, 2622, 8, 'Pressure Handling', 2, 'will not ', 8, '2020-12-21 05:39:38', 1),
(5186, 2622, 8, 'Sustainability', 3, 'yes', 8, '2020-12-21 05:39:38', 1),
(5187, 2633, 8, 'Communication (English)', 4, 'good', 8, '2020-12-21 05:43:09', 1),
(5188, 2633, 8, 'Convincing Skills', 3, 'okay', 8, '2020-12-21 05:43:09', 1),
(5189, 2633, 8, 'Sustainability', 3, 'yes', 8, '2020-12-21 05:43:09', 1),
(5190, 2633, 8, 'Existing Experience Analyze', 3, 'good', 8, '2020-12-21 05:43:09', 1),
(5191, 2626, 8, 'Communication (Tamil)', 2, 'avg', 8, '2020-12-21 05:44:03', 1),
(5192, 2626, 8, 'Confidence Level', 2, 'no', 8, '2020-12-21 05:44:03', 1),
(5193, 2635, 41, 'Appearance', 3, 'Ok', 41, '2020-12-21 05:45:45', 1),
(5194, 2635, 41, 'Attitude', 3, 'Ok', 41, '2020-12-21 05:45:45', 1),
(5195, 2635, 41, 'Communication (Tamil)', 3, 'Ok', 41, '2020-12-21 05:45:45', 1),
(5196, 2635, 41, 'Communication (English)', 1, 'Not good', 41, '2020-12-21 05:45:45', 1),
(5197, 2635, 41, 'Pressure Handling', 1, 'Will not handle pressure', 41, '2020-12-21 05:45:45', 1),
(5198, 2635, 41, 'Sustainability', 1, 'Not interested in sales', 41, '2020-12-21 05:45:45', 1),
(5199, 2614, 8, 'Communication (Tamil)', 3, 'avg', 8, '2020-12-21 05:48:04', 1),
(5200, 2614, 8, 'Sales Experience', 2, 'no', 8, '2020-12-21 05:48:04', 1),
(5201, 2633, 31, 'Communication (English)', 4, 'Good', 31, '2020-12-21 07:42:54', 1),
(5202, 2633, 31, 'Confidence Level', 3, 'Okay', 31, '2020-12-21 07:42:54', 1),
(5203, 2662, 8, 'Communication (English)', 3, 'avg', 8, '2020-12-22 01:12:29', 1),
(5204, 2662, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-12-22 01:12:29', 1),
(5205, 2662, 8, 'Importance Of Job', 4, 'yes', 8, '2020-12-22 01:12:29', 1),
(5206, 2662, 8, 'Sustainability', 3, 'yes', 8, '2020-12-22 01:12:29', 1),
(5207, 2593, 8, 'Communication (English)', 2, 'below avg', 8, '2020-12-22 01:21:51', 1),
(5208, 2593, 8, 'Communication (Tamil)', 3, 'native slang', 8, '2020-12-22 01:21:51', 1),
(5209, 2593, 8, 'Sustainability', 3, 'okay with bond', 8, '2020-12-22 01:21:51', 1),
(5210, 2593, 8, 'Sales Experience', 2, 'no', 8, '2020-12-22 01:21:51', 1),
(5211, 2630, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-12-22 01:28:09', 1),
(5212, 2630, 8, 'convincing Skills', 3, 'yes', 8, '2020-12-22 01:28:09', 1),
(5213, 2656, 8, 'Communication (English)', 3, 'avg', 8, '2020-12-22 02:58:56', 1),
(5214, 2656, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-12-22 02:58:56', 1),
(5215, 2656, 8, 'Sales Experience', 3, 'yes', 8, '2020-12-22 02:58:56', 1),
(5216, 2630, 21, 'Communication (Tamil)', 4, 'ok', 21, '2020-12-22 03:17:03', 1),
(5217, 2630, 21, 'convincing Skills', 3, 'ok', 21, '2020-12-22 03:17:03', 1),
(5218, 2630, 21, 'Confidence Level', 4, 'ok ', 21, '2020-12-22 03:17:03', 1),
(5219, 2630, 21, 'Sustainability', 3, 'ok for 2 yrs above ', 21, '2020-12-22 03:17:03', 1),
(5220, 2659, 38, 'Appearance', 1, 'not good in outlook', 38, '2020-12-22 04:41:13', 1),
(5221, 2659, 38, 'Attitude', 1, 'very bad in communication and listening', 38, '2020-12-22 04:41:13', 1),
(5222, 2659, 38, 'Communication (English)', 1, 'he dont know basic english', 38, '2020-12-22 04:41:13', 1),
(5223, 2659, 38, 'Sustainability', 1, 'he will not sustain', 38, '2020-12-22 04:41:13', 1),
(5224, 2659, 38, 'Sales Experience', 2, 'sales experience in average level', 38, '2020-12-22 04:41:13', 1),
(5225, 2656, 44, 'Communication (English)', 3, 'Good Communication skills', 44, '2020-12-23 10:48:38', 1),
(5226, 2656, 44, 'Sales Experience', 3, 'Having Experience in other sales', 44, '2020-12-23 10:48:38', 1),
(5227, 2678, 8, 'Communication (English)', 3, 'okay', 8, '2020-12-23 11:03:52', 1),
(5228, 2678, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-12-23 11:03:52', 1),
(5229, 2678, 8, 'Sales Experience', 2, 'fresher', 8, '2020-12-23 11:03:52', 1),
(5230, 2678, 44, 'Communication (English)', 3, 'Good communication', 44, '2020-12-23 11:33:18', 1),
(5231, 2615, 8, 'Communication (English)', 3, 'okay', 8, '2020-12-23 12:26:10', 1),
(5232, 2615, 8, 'convincing Skills', 3, 'okay', 8, '2020-12-23 12:26:10', 1),
(5233, 2631, 38, 'Appearance', 2, 'Good in appearance', 38, '2020-12-23 01:29:32', 1),
(5234, 2631, 38, 'Attitude', 2, 'Average communication ', 38, '2020-12-23 01:29:32', 1),
(5235, 2631, 38, 'Communication (English)', 2, 'manageable', 38, '2020-12-23 01:29:32', 1),
(5236, 2631, 38, 'Existing Experience Analyze', 1, 'only 8 months ', 38, '2020-12-23 01:29:32', 1),
(5237, 2631, 38, 'Sustainability', 1, 'he will not sustain', 38, '2020-12-23 01:29:32', 1),
(5238, 2631, 38, 'Sales Experience', 1, 'no sales experience', 38, '2020-12-23 01:29:32', 1),
(5239, 2632, 38, 'Attitude', 2, 'average understanding and communication', 38, '2020-12-23 01:35:13', 1),
(5240, 2632, 38, 'Communication (English)', 2, 'manageable', 38, '2020-12-23 01:35:13', 1),
(5241, 2632, 38, 'Existing Experience Analyze', 1, 'fresher', 38, '2020-12-23 01:35:13', 1),
(5242, 2632, 38, 'Sustainability', 1, 'he will not sustain and he use  to work with his friend rajesh otherwise he will not work', 38, '2020-12-23 01:35:13', 1),
(5243, 2693, 8, 'Communication (English)', 3, 'good', 8, '2020-12-23 05:37:48', 1),
(5244, 2693, 8, 'Observation Skills', 3, 'okay', 8, '2020-12-23 05:37:48', 1),
(5245, 2693, 8, 'Sustainability', 2, 'need to check', 8, '2020-12-23 05:37:48', 1),
(5246, 2693, 8, 'Sales Experience', 2, 'no', 8, '2020-12-23 05:37:48', 1),
(5247, 2691, 8, 'Communication (English)', 2, 'below avg', 8, '2020-12-23 06:51:41', 1),
(5248, 2691, 8, 'Convincing Skills', 3, 'avg', 8, '2020-12-23 06:51:41', 1),
(5249, 2691, 8, 'Sales Experience', 3, 'yes', 8, '2020-12-23 06:51:41', 1),
(5250, 2691, 8, 'Existing Experience Analyze', 2, 'no', 8, '2020-12-23 06:51:41', 1),
(5251, 2644, 8, 'Communication (English)', 3, 'good', 8, '2020-12-23 06:53:49', 1),
(5252, 2644, 8, 'Confidence Level', 3, 'good', 8, '2020-12-23 06:53:49', 1),
(5253, 2644, 8, 'Sales Experience', 2, 'no', 8, '2020-12-23 06:53:49', 1),
(5254, 2644, 8, 'Existing Experience Analyze', 3, 'good', 8, '2020-12-23 06:53:49', 1),
(5255, 2696, 8, 'Communication (English)', 3, 'good', 8, '2020-12-24 12:05:47', 1),
(5256, 2696, 8, 'Confidence Level', 3, 'good', 8, '2020-12-24 12:05:47', 1),
(5257, 2696, 8, 'patience', 3, 'yes', 8, '2020-12-24 12:05:47', 1),
(5258, 2696, 8, 'Sales Experience', 3, 'yes', 8, '2020-12-24 12:05:47', 1),
(5259, 2644, 33, 'Appearance', 3, 'Good', 33, '2020-12-24 02:55:52', 1),
(5260, 2644, 33, 'Communication (English)', 3, 'Good', 33, '2020-12-24 02:55:52', 1),
(5261, 2644, 33, 'Sales Experience', 2, 'Good', 33, '2020-12-24 02:55:52', 1),
(5262, 2698, 8, 'Communication (English)', 3, 'good', 8, '2020-12-24 03:21:16', 1),
(5263, 2709, 38, 'Communication (English)', 3, 'modrate communication', 38, '2020-12-24 03:57:38', 1),
(5264, 2709, 38, 'Existing Experience Analyze', 1, 'dont have any experiance', 38, '2020-12-24 03:57:38', 1),
(5265, 2709, 38, 'Sustainability', 2, 'he will suits  for our job, he dont have bike', 38, '2020-12-24 03:57:38', 1),
(5266, 2624, 38, 'Appearance', 3, 'GOOD IN OUTLOOK', 38, '2020-12-24 03:58:07', 1),
(5267, 2624, 38, 'Attitude', 1, 'LOW COMMUNICATION AND UNDERSTANDING', 38, '2020-12-24 03:58:07', 1),
(5268, 2624, 38, 'Communication (English)', 2, 'MANAGEABLE', 38, '2020-12-24 03:58:07', 1),
(5269, 2624, 38, 'Existing Experience Analyze', 1, 'FRESHER', 38, '2020-12-24 03:58:07', 1),
(5270, 2624, 38, 'Sustainability', 1, 'HE WILL SUSTAIN ', 38, '2020-12-24 03:58:07', 1),
(5271, 2624, 38, 'Sales Experience', 1, 'NIL IN SALES EXP', 38, '2020-12-24 03:58:07', 1),
(5272, 2579, 39, 'Communication (English)', 1, 'MANAGEABLE', 39, '2020-12-24 04:04:49', 1),
(5273, 2579, 39, 'Pressure Handling', 1, 'HE WILL NOT HANDLE PRESSURE', 39, '2020-12-24 04:04:49', 1),
(5274, 2579, 39, 'Sustainability', 1, 'HE WILL NOT SUSTAIN', 39, '2020-12-24 04:04:49', 1),
(5275, 2615, 67, 'Appearance', 3, 'Carried herself well.', 67, '2020-12-24 05:42:07', 1),
(5276, 2615, 67, 'Attitude', 3, 'willingness to work', 67, '2020-12-24 05:42:07', 1),
(5277, 2615, 67, 'Communication (Tamil)', 4, 'Good', 67, '2020-12-24 05:42:07', 1),
(5278, 2615, 67, 'Communication (English)', 5, 'V Good', 67, '2020-12-24 05:42:07', 1),
(5279, 2615, 67, 'convincing Skills', 2, 'Fresher needs some training', 67, '2020-12-24 05:42:07', 1),
(5280, 2615, 67, 'Confidence Level', 3, 'after taining she will imrpove', 67, '2020-12-24 05:42:07', 1),
(5281, 2615, 67, 'Pressure Handling', 2, 'Fresher will handle in few months', 67, '2020-12-24 05:42:07', 1),
(5282, 2615, 67, 'Sustainability', 3, 'needs to help her family for marriage', 67, '2020-12-24 05:42:07', 1),
(5283, 2693, 29, 'Convincing Skills', 1, 'no', 29, '2020-12-24 06:00:52', 1),
(5284, 2693, 29, 'Importance Of Job', 1, 'no', 29, '2020-12-24 06:00:52', 1),
(5285, 2711, 19, 'Appearance', 4, 'formals', 19, '2020-12-25 12:54:51', 1),
(5286, 2711, 19, 'Communication (English)', 4, 'good', 19, '2020-12-25 12:54:51', 1),
(5287, 2711, 19, 'Importance Of Job', 4, 'need job ', 19, '2020-12-25 12:54:51', 1),
(5288, 2744, 8, 'Communication (English)', 2, 'below avg', 8, '2020-12-28 12:55:26', 1),
(5289, 2744, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-12-28 12:55:26', 1),
(5290, 2744, 8, 'Importance Of Job', 3, 'yes', 8, '2020-12-28 12:55:26', 1),
(5291, 2744, 8, 'Sales Experience', 3, '2 yrs in swiping machine selling', 8, '2020-12-28 12:55:26', 1),
(5292, 2705, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-12-28 12:57:37', 1),
(5293, 2705, 8, 'Convincing Skills', 3, 'good', 8, '2020-12-28 12:57:37', 1),
(5294, 2705, 8, 'Importance Of Job', 3, 'yes', 8, '2020-12-28 12:57:37', 1),
(5295, 2705, 8, 'Sustainability', 3, '2 yrs in calling', 8, '2020-12-28 12:57:37', 1),
(5296, 2705, 8, 'Sales Experience', 2, 'no', 8, '2020-12-28 12:57:37', 1),
(5297, 2751, 8, 'Communication (Tamil)', 2, 'avg', 8, '2020-12-28 12:59:14', 1),
(5298, 2751, 8, 'Convincing Skills', 2, 'avg', 8, '2020-12-28 12:59:14', 1),
(5299, 2751, 8, 'Observation Skills', 2, 'Very Lethargic', 8, '2020-12-28 12:59:14', 1),
(5300, 2751, 8, 'Sustainability', 2, 'need to check', 8, '2020-12-28 12:59:14', 1),
(5301, 2751, 8, 'Sales Experience', 2, 'no', 8, '2020-12-28 12:59:14', 1),
(5302, 2739, 8, 'Communication (English)', 3, 'good', 8, '2020-12-28 01:00:50', 1),
(5303, 2737, 33, 'Appearance', 3, 'Good', 33, '2020-12-28 02:08:52', 1),
(5304, 2737, 33, 'Attitude', 3, 'Good', 33, '2020-12-28 02:08:52', 1),
(5305, 2737, 33, 'Communication (English)', 1, 'Not good but he manage', 33, '2020-12-28 02:08:52', 1),
(5306, 2737, 33, 'Communication (Tamil)', 4, 'Very good', 33, '2020-12-28 02:08:52', 1),
(5307, 2737, 33, 'Sustainability', 4, 'Good', 33, '2020-12-28 02:08:52', 1),
(5308, 2699, 8, 'Communication (Tamil)', 3, 'okay', 8, '2020-12-28 02:53:15', 1),
(5309, 2699, 8, 'Communication (English)', 3, 'okay', 8, '2020-12-28 02:53:15', 1),
(5310, 2699, 8, 'Sustainability', 2, 'no', 8, '2020-12-28 02:53:15', 1),
(5311, 2751, 24, 'Appearance', 1, 'NOT FIT FOR RE PROFILE', 24, '2020-12-28 03:08:23', 1),
(5312, 2737, 18, 'Appearance', 3, 'Average', 18, '2020-12-28 03:45:30', 1),
(5313, 2737, 18, 'Attitude', 3, 'Ok', 18, '2020-12-28 03:45:30', 1),
(5314, 2737, 18, 'Communication (English)', 2, 'Poor', 18, '2020-12-28 03:45:30', 1),
(5315, 2737, 18, 'Communication (Tamil)', 4, 'Good', 18, '2020-12-28 03:45:30', 1),
(5316, 2737, 18, 'Convincing Skills', 3, 'Ok', 18, '2020-12-28 03:45:30', 1),
(5317, 2737, 18, 'Confidence Level', 4, 'Good', 18, '2020-12-28 03:45:30', 1),
(5318, 2737, 18, 'Importance Of Job', 5, 'Needed', 18, '2020-12-28 03:45:30', 1),
(5319, 2737, 18, 'Observation Skills', 3, 'Ok', 18, '2020-12-28 03:45:30', 1),
(5320, 2737, 18, 'Pressure Handling', 4, 'Good', 18, '2020-12-28 03:45:30', 1),
(5321, 2737, 18, 'patience', 4, 'Good', 18, '2020-12-28 03:45:30', 1),
(5322, 2737, 18, 'Sustainability', 3, 'Average', 18, '2020-12-28 03:45:30', 1),
(5323, 2737, 18, 'Sales Experience', 5, 'Good', 18, '2020-12-28 03:45:30', 1),
(5324, 2737, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2020-12-28 03:45:30', 1),
(5325, 2774, 8, 'Communication (English)', 3, 'avg', 8, '2020-12-29 01:44:23', 1),
(5326, 2774, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-12-29 01:44:23', 1),
(5327, 2774, 8, 'Importance Of Job', 3, 'yes', 8, '2020-12-29 01:44:23', 1),
(5328, 2763, 8, 'Communication (English)', 3, 'good', 8, '2020-12-29 01:45:46', 1),
(5329, 2763, 8, 'Sustainability', 2, 'no. higher study(Phd)', 8, '2020-12-29 01:45:46', 1),
(5330, 2763, 8, 'Sales Experience', 2, 'no', 8, '2020-12-29 01:45:46', 1),
(5331, 2765, 8, 'Attitude', 3, 'okay', 8, '2020-12-29 01:46:50', 1),
(5332, 2765, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-12-29 01:46:50', 1),
(5333, 2765, 8, 'Convincing Skills', 3, 'yes', 8, '2020-12-29 01:46:50', 1),
(5334, 2765, 8, 'Sales Experience', 3, 'yes. in textail helping his uncle', 8, '2020-12-29 01:46:50', 1),
(5335, 2602, 30, 'Appearance', 1, 'not satisfied', 30, '2020-12-29 03:38:47', 1),
(5336, 2602, 30, 'Attitude', 1, 'Average communication', 30, '2020-12-29 03:38:47', 1),
(5337, 2602, 30, 'Pressure Handling', 1, 'he will not handle sales pressure', 30, '2020-12-29 03:38:47', 1),
(5338, 2602, 30, 'Sustainability', 1, 'he will not sustain', 30, '2020-12-29 03:38:47', 1),
(5339, 2660, 39, 'Attitude', 2, 'average in communication', 39, '2020-12-29 04:24:55', 1),
(5340, 2660, 39, 'Communication (English)', 2, 'manageable only', 39, '2020-12-29 04:24:55', 1),
(5341, 2660, 39, 'Confidence Level', 1, 'no confidence ', 39, '2020-12-29 04:24:55', 1),
(5342, 2660, 39, 'Sustainability', 2, 'he will not sustain', 39, '2020-12-29 04:24:55', 1),
(5343, 2656, 18, 'Attitude', 4, 'Good', 18, '2020-12-29 05:13:45', 1),
(5344, 2656, 18, 'Communication (English)', 3, 'Good enough', 18, '2020-12-29 05:13:45', 1),
(5345, 2656, 18, 'Communication (Tamil)', 4, 'good', 18, '2020-12-29 05:13:45', 1),
(5346, 2656, 18, 'Convincing Skills', 4, 'good', 18, '2020-12-29 05:13:45', 1),
(5347, 2656, 18, 'Confidence Level', 4, 'good', 18, '2020-12-29 05:13:45', 1),
(5348, 2656, 18, 'Existing Experience Analyze', 4, 'good', 18, '2020-12-29 05:13:45', 1),
(5349, 2656, 18, 'Practical Challenges Outcome', 4, 'Good', 18, '2020-12-29 05:13:45', 1),
(5350, 2656, 18, 'Sustainability', 3, 'Average', 18, '2020-12-29 05:13:45', 1),
(5351, 2656, 18, 'Sales Experience', 4, 'Good but not relevant', 18, '2020-12-29 05:13:45', 1),
(5352, 2774, 33, 'Appearance', 3, 'good', 33, '2020-12-30 12:22:04', 1),
(5353, 2774, 33, 'Communication (English)', 2, 'average but he can manage', 33, '2020-12-30 12:22:04', 1),
(5354, 2774, 33, 'Communication (Tamil)', 3, 'good', 33, '2020-12-30 12:22:04', 1),
(5355, 2774, 33, 'Convincing Skills', 2, 'average', 33, '2020-12-30 12:22:04', 1),
(5356, 2774, 33, 'Sustainability', 2, 'he can sustain in crm or esales', 33, '2020-12-30 12:22:04', 1),
(5357, 2743, 40, 'Appearance', 3, 'Interview done over the call', 40, '2020-12-30 04:00:44', 1),
(5358, 2743, 40, 'Attitude', 4, 'Voice seems like bit over attitude', 40, '2020-12-30 04:00:44', 1),
(5359, 2743, 40, 'Communication (English)', 1, 'Zero in comminication', 40, '2020-12-30 04:00:44', 1),
(5360, 2743, 40, 'Communication (Tamil)', 5, 'Good', 40, '2020-12-30 04:00:44', 1),
(5361, 2743, 40, 'Convincing Skills', 2, 'Fresher', 40, '2020-12-30 04:00:44', 1),
(5362, 2743, 40, 'Confidence Level', 4, 'Seems like', 40, '2020-12-30 04:00:44', 1),
(5363, 2743, 40, 'Importance Of Job', 5, 'Highly required', 40, '2020-12-30 04:00:44', 1),
(5364, 2743, 40, 'Observation Skills', 3, 'Neutral', 40, '2020-12-30 04:00:44', 1),
(5365, 2743, 40, 'Pressure Handling', 3, 'Survivor under pressure ', 40, '2020-12-30 04:00:44', 1),
(5366, 2743, 40, 'patience', 2, 'Not upto the mark', 40, '2020-12-30 04:00:44', 1),
(5367, 2743, 40, 'Sustainability', 5, 'Ok to work under bond contract', 40, '2020-12-30 04:00:44', 1),
(5368, 2743, 40, 'Sales Experience', 1, 'Zero knowledge', 40, '2020-12-30 04:00:44', 1),
(5369, 2743, 40, 'Existing Experience Analyze', 2, 'Neutral', 40, '2020-12-30 04:00:44', 1),
(5370, 2743, 40, 'Practical Challenges Outcome', 3, 'Might be', 40, '2020-12-30 04:00:44', 1),
(5371, 2743, 40, 'Willing To Work On Holidays', 5, 'Yes he will be', 40, '2020-12-30 04:00:44', 1),
(5372, 2783, 8, 'Communication (English)', 3, 'okay', 8, '2020-12-30 04:37:42', 1),
(5373, 2783, 8, 'Communication (Tamil)', 3, 'good', 8, '2020-12-30 04:37:42', 1),
(5374, 2783, 8, 'Importance Of Job', 3, 'yes', 8, '2020-12-30 04:37:42', 1),
(5375, 2783, 8, 'Sustainability', 3, 'need to check', 8, '2020-12-30 04:37:42', 1),
(5376, 2783, 8, 'Sales Experience', 3, 'yes', 8, '2020-12-30 04:37:42', 1),
(5377, 2783, 8, 'Existing Experience Analyze', 3, 'good', 8, '2020-12-30 04:37:42', 1),
(5378, 2793, 8, 'Communication (English)', 4, 'good', 8, '2020-12-30 04:39:13', 1),
(5379, 2793, 8, 'Sales Experience', 3, 'yes', 8, '2020-12-30 04:39:13', 1),
(5380, 2793, 8, 'Existing Experience Analyze', 3, 'good', 8, '2020-12-30 04:39:13', 1),
(5381, 2793, 29, 'Convincing Skills', 1, 'No Sales skills', 29, '2020-12-30 04:51:15', 1),
(5382, 2793, 29, 'Importance Of Job', 1, 'Not Much', 29, '2020-12-30 04:51:15', 1),
(5383, 2793, 29, 'Sustainability', 1, 'Will Not fit for longer term', 29, '2020-12-30 04:51:15', 1),
(5384, 2783, 29, 'Communication (English)', 3, 'good', 29, '2020-12-30 04:54:03', 1),
(5385, 2783, 29, 'Convincing Skills', 3, 'good', 29, '2020-12-30 04:54:03', 1),
(5386, 2783, 29, 'Sales Experience', 4, 'difference sales experience, can manage', 29, '2020-12-30 04:54:03', 1),
(5387, 2714, 29, 'Pressure Handling', 1, 'will not handle', 29, '2020-12-30 04:56:13', 1),
(5388, 2714, 29, 'Sustainability', 1, 'will not stay', 29, '2020-12-30 04:56:13', 1),
(5389, 2714, 29, 'Sales Experience', 1, 'nil', 29, '2020-12-30 04:56:13', 1),
(5390, 2802, 36, 'Sales Experience', 3, 'K', 36, '2020-12-30 05:33:35', 1),
(5391, 2802, 36, 'Willing To Work On Holidays', 3, 'K', 36, '2020-12-30 05:33:35', 1),
(5392, 2802, 18, 'Appearance', 3, 'Decent', 18, '2020-12-31 12:19:42', 1),
(5393, 2802, 18, 'Attitude', 3, 'Good', 18, '2020-12-31 12:19:42', 1),
(5394, 2802, 18, 'Communication (English)', 3, 'Ok', 18, '2020-12-31 12:19:42', 1),
(5395, 2802, 18, 'Communication (Tamil)', 4, 'Good', 18, '2020-12-31 12:19:42', 1),
(5396, 2802, 18, 'Convincing Skills', 4, 'Good', 18, '2020-12-31 12:19:42', 1),
(5397, 2802, 18, 'Confidence Level', 4, 'Good', 18, '2020-12-31 12:19:42', 1),
(5398, 2802, 18, 'Importance Of Job', 4, 'Need is there', 18, '2020-12-31 12:19:42', 1),
(5399, 2802, 18, 'Observation Skills', 3, 'Ok', 18, '2020-12-31 12:19:42', 1),
(5400, 2802, 18, 'Pressure Handling', 4, 'Can handle', 18, '2020-12-31 12:19:42', 1),
(5401, 2802, 18, 'patience', 3, 'Ok', 18, '2020-12-31 12:19:42', 1),
(5402, 2802, 18, 'Sustainability', 4, 'Once set can sustain for long term', 18, '2020-12-31 12:19:42', 1),
(5403, 2802, 18, 'Sales Experience', 4, 'Good but not relevant industry', 18, '2020-12-31 12:19:42', 1),
(5404, 2802, 18, 'Practical Challenges Outcome', 3, 'Can handle', 18, '2020-12-31 12:19:42', 1),
(5405, 2800, 8, 'Communication (English)', 2, 'below avg', 8, '2020-12-31 03:33:18', 1),
(5406, 2800, 8, 'Communication (Tamil)', 2, 'speaking slowly', 8, '2020-12-31 03:33:18', 1),
(5407, 2800, 8, 'Convincing Skills', 2, 'nil', 8, '2020-12-31 03:33:18', 1),
(5408, 2800, 8, 'Confidence Level', 2, 'no', 8, '2020-12-31 03:33:18', 1),
(5409, 2800, 8, 'Sustainability', 2, 'no 1yr in each compnany', 8, '2020-12-31 03:33:18', 1),
(5410, 2795, 8, 'Communication (Tamil)', 3, 'avg', 8, '2021-01-04 03:01:09', 1),
(5411, 2795, 8, 'Convincing Skills', 2, 'no as expected', 8, '2021-01-04 03:01:09', 1),
(5412, 2795, 8, 'Confidence Level', 2, 'no', 8, '2021-01-04 03:01:09', 1),
(5413, 2795, 8, 'Pressure Handling', 1, 'zero', 8, '2021-01-04 03:01:09', 1),
(5414, 2803, 8, 'Attitude', 2, 'not good', 8, '2021-01-04 03:04:55', 1),
(5415, 2803, 8, 'Communication (English)', 3, 'okay', 8, '2021-01-04 03:04:55', 1),
(5416, 2803, 8, 'Pressure Handling', 2, 'no', 8, '2021-01-04 03:04:55', 1),
(5417, 2803, 8, 'Sales Experience', 2, 'no', 8, '2021-01-04 03:04:55', 1),
(5418, 2843, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-01-04 03:06:31', 1),
(5419, 2843, 8, 'Communication (English)', 2, 'avg', 8, '2021-01-04 03:06:31', 1),
(5420, 2843, 8, 'Importance (Job)', 3, 'yes', 8, '2021-01-04 03:06:31', 1),
(5421, 2828, 8, 'Communication (English)', 2, 'avg', 8, '2021-01-04 03:10:16', 1),
(5422, 2828, 8, 'Convincing Skills', 2, 'not up to the level', 8, '2021-01-04 03:10:16', 1),
(5423, 2828, 8, 'Sustainability', 2, 'will not', 8, '2021-01-04 03:10:16', 1),
(5424, 2828, 8, 'Existing Experience Analyze', 2, 'no', 8, '2021-01-04 03:10:16', 1),
(5425, 2860, 8, 'Communication (English)', 3, 'good', 8, '2021-01-05 01:46:56', 1),
(5426, 2860, 8, 'convincing Skills', 3, 'good', 8, '2021-01-05 01:46:56', 1),
(5427, 2860, 8, 'Importance (Job)', 3, 'yes', 8, '2021-01-05 01:46:56', 1),
(5428, 2860, 8, 'Sustainability', 3, 'yes', 8, '2021-01-05 01:46:56', 1),
(5429, 2844, 8, 'Communication (English)', 3, 'good', 8, '2021-01-05 01:48:20', 1),
(5430, 2844, 8, 'Observation Skills', 3, 'need to check', 8, '2021-01-05 01:48:20', 1),
(5431, 2844, 8, 'Sales Experience', 3, 'in paytm', 8, '2021-01-05 01:48:20', 1),
(5432, 2844, 40, 'Appearance', 2, 'Not in professional attire', 40, '2021-01-05 02:16:11', 1),
(5433, 2844, 40, 'Attitude', 4, 'Professionally ', 40, '2021-01-05 02:16:11', 1),
(5434, 2844, 40, 'Communication (English)', 5, 'Good', 40, '2021-01-05 02:16:11', 1),
(5435, 2844, 40, 'Communication (Tamil)', 4, 'Good', 40, '2021-01-05 02:16:11', 1),
(5436, 2844, 40, 'Convincing Skills', 4, 'Ok in convincing skills', 40, '2021-01-05 02:16:11', 1),
(5437, 2844, 40, 'Confidence Level', 5, 'Good', 40, '2021-01-05 02:16:11', 1),
(5438, 2844, 40, 'Importance Of Job', 5, 'Immediate requirement', 40, '2021-01-05 02:16:11', 1),
(5439, 2844, 40, 'Observation Skills', 4, 'Ok', 40, '2021-01-05 02:16:11', 1),
(5440, 2844, 40, 'Pressure Handling', 3, 'neutral ', 40, '2021-01-05 02:16:11', 1),
(5441, 2844, 40, 'patience', 4, 'Good', 40, '2021-01-05 02:16:11', 1),
(5442, 2844, 40, 'Sustainability', 3, 'Might be', 40, '2021-01-05 02:16:11', 1),
(5443, 2844, 40, 'Sales Experience', 1, 'Zero knowledge in sales', 40, '2021-01-05 02:16:11', 1),
(5444, 2844, 40, 'Existing Experience Analyze', 3, 'Neutral', 40, '2021-01-05 02:16:11', 1),
(5445, 2844, 40, 'Practical Challenges Outcome', 3, 'Might be', 40, '2021-01-05 02:16:11', 1),
(5446, 2844, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-01-05 02:16:11', 1),
(5447, 2846, 8, 'Communication (English)', 3, 'avg', 8, '2021-01-05 04:23:38', 1),
(5448, 2846, 8, 'Convincing Skills', 3, 'good', 8, '2021-01-05 04:23:38', 1),
(5449, 2846, 8, 'Sustainability', 3, 'yes', 8, '2021-01-05 04:23:38', 1),
(5450, 2846, 8, 'Sales Experience', 3, '8 months in aagna sol.', 8, '2021-01-05 04:23:38', 1),
(5451, 2865, 44, 'Communication (English)', 3, 'Good Communication skill', 44, '2021-01-05 05:12:36', 1),
(5452, 2865, 44, 'Sales Experience', 3, 'Having Experience in other sales', 44, '2021-01-05 05:12:36', 1),
(5453, 2875, 8, 'Communication (English)', 3, 'avg', 8, '2021-01-06 03:19:23', 1),
(5454, 2875, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-01-06 03:19:23', 1),
(5455, 2875, 8, 'Sales Experience', 2, 'fresher', 8, '2021-01-06 03:19:23', 1),
(5456, 2874, 8, 'Communication (English)', 4, 'good', 8, '2021-01-06 03:20:12', 1),
(5457, 2874, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-01-06 03:20:12', 1),
(5458, 2874, 8, 'Sustainability', 3, 'check once', 8, '2021-01-06 03:20:12', 1),
(5459, 2874, 8, 'Sales Experience', 3, 'iyr', 8, '2021-01-06 03:20:12', 1),
(5460, 2883, 8, 'convincing Skills', 3, 'good', 8, '2021-01-06 03:21:20', 1),
(5461, 2883, 8, 'Importance (Job)', 4, 'yes', 8, '2021-01-06 03:21:20', 1),
(5462, 2885, 8, 'Communication (English)', 3, 'avg', 8, '2021-01-06 03:22:31', 1),
(5463, 2885, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-01-06 03:22:31', 1),
(5464, 2885, 8, 'Convincing Skills', 3, 'good', 8, '2021-01-06 03:22:31', 1),
(5465, 2885, 8, 'Sales Experience', 3, 'yes', 8, '2021-01-06 03:22:31', 1),
(5466, 2885, 8, 'Existing Experience Analyze', 3, 'good', 8, '2021-01-06 03:22:31', 1),
(5467, 2886, 8, 'Communication (English)', 3, 'avg', 8, '2021-01-06 03:23:50', 1),
(5468, 2886, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-01-06 03:23:50', 1),
(5469, 2886, 8, 'Sales Experience', 3, 'yes', 8, '2021-01-06 03:23:50', 1),
(5470, 2886, 8, 'Existing Experience Analyze', 3, 'good', 8, '2021-01-06 03:23:50', 1),
(5471, 2886, 44, 'Communication (Tamil)', 3, 'Good Communication', 44, '2021-01-06 05:58:54', 1),
(5472, 2886, 44, 'Sales Experience', 3, 'Having Relevant Experience ', 44, '2021-01-06 05:58:54', 1),
(5473, 2886, 44, 'Willing To Work On Holidays', 3, 'Ready to work', 44, '2021-01-06 05:58:54', 1),
(5474, 2885, 44, 'Sales Experience', 2, 'Having Experience in MF', 44, '2021-01-06 06:01:31', 1),
(5475, 2678, 29, 'Convincing Skills', 1, 'no', 29, '2021-01-06 06:22:12', 1),
(5476, 2678, 29, 'Confidence Level', 1, 'no', 29, '2021-01-06 06:22:12', 1),
(5477, 2678, 29, 'Importance Of Job', 1, 'no', 29, '2021-01-06 06:22:12', 1),
(5478, 2865, 29, 'Communication (English)', 3, 'good', 29, '2021-01-06 06:24:09', 1),
(5479, 2865, 29, 'Convincing Skills', 2, 'ok', 29, '2021-01-06 06:24:09', 1),
(5480, 2865, 29, 'Importance Of Job', 3, 'Matured', 29, '2021-01-06 06:24:09', 1),
(5481, 2865, 29, 'Sales Experience', 2, 'can do better in our business', 29, '2021-01-06 06:24:09', 1),
(5482, 2886, 29, 'Communication (English)', 2, 'ok', 29, '2021-01-06 06:32:15', 1),
(5483, 2886, 29, 'Convincing Skills', 2, 'can do better', 29, '2021-01-06 06:32:15', 1),
(5484, 2886, 29, 'Confidence Level', 2, 'ok', 29, '2021-01-06 06:32:15', 1),
(5485, 2886, 29, 'Sales Experience', 2, 'stock, mf, insurance', 29, '2021-01-06 06:32:15', 1),
(5486, 2844, 18, 'Appearance', 3, 'Ok', 18, '2021-01-07 02:59:30', 1),
(5487, 2844, 18, 'Attitude', 2, 'Fair', 18, '2021-01-07 02:59:30', 1),
(5488, 2844, 18, 'Communication (English)', 3, 'Good', 18, '2021-01-07 02:59:30', 1),
(5489, 2844, 18, 'Communication (Tamil)', 3, 'Decent', 18, '2021-01-07 02:59:30', 1),
(5490, 2844, 18, 'Convincing Skills', 3, 'Ok', 18, '2021-01-07 02:59:30', 1),
(5491, 2844, 18, 'Confidence Level', 4, 'Good', 18, '2021-01-07 02:59:30', 1),
(5492, 2844, 18, 'Importance Of Job', 3, 'Fairly needed', 18, '2021-01-07 02:59:30', 1),
(5493, 2844, 18, 'Observation Skills', 3, 'Average', 18, '2021-01-07 02:59:30', 1),
(5494, 2844, 18, 'Pressure Handling', 3, 'Can hadle to some extent', 18, '2021-01-07 02:59:30', 1),
(5495, 2844, 18, 'patience', 2, 'poor', 18, '2021-01-07 02:59:30', 1),
(5496, 2844, 18, 'Sales Experience', 2, 'Not relevant', 18, '2021-01-07 02:59:30', 1),
(5497, 2844, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-01-07 02:59:30', 1),
(5498, 2900, 8, 'Importance Of Job', 4, 'yes', 8, '2021-01-07 05:31:06', 1),
(5499, 2907, 21, 'Appearance', 3, 'ok', 21, '2021-01-07 05:53:29', 1),
(5500, 2907, 21, 'Communication (Tamil)', 4, 'ok', 21, '2021-01-07 05:53:29', 1),
(5501, 2907, 21, 'Communication (English)', 3, 'ok', 21, '2021-01-07 05:53:29', 1),
(5502, 2907, 21, 'convincing Skills', 4, 'ok', 21, '2021-01-07 05:53:29', 1),
(5503, 2907, 21, 'Pressure Handling', 4, 'she already have experience ', 21, '2021-01-07 05:53:29', 1),
(5504, 2907, 21, 'Sustainability', 4, 'ok 2 yrs bond ', 21, '2021-01-07 05:53:29', 1),
(5505, 2911, 8, 'Communication (English)', 3, 'avg', 8, '2021-01-07 06:52:33', 1),
(5506, 2911, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-01-07 06:52:33', 1),
(5507, 2911, 8, 'Importance Of Job', 3, 'yes', 8, '2021-01-07 06:52:33', 1),
(5508, 2515, 34, 'Appearance', 3, 'GOOD', 34, '2021-01-08 10:51:36', 1),
(5509, 2515, 34, 'Attitude', 3, 'OK', 34, '2021-01-08 10:51:36', 1),
(5510, 2515, 34, 'Communication (English)', 2, 'NOT BAD', 34, '2021-01-08 10:51:36', 1),
(5511, 2515, 34, 'Communication (Tamil)', 4, 'GOOD', 34, '2021-01-08 10:51:36', 1),
(5512, 2515, 34, 'Convincing Skills', 4, 'GOOD', 34, '2021-01-08 10:51:36', 1),
(5513, 2515, 34, 'Confidence Level', 4, 'GOOD', 34, '2021-01-08 10:51:36', 1),
(5514, 2515, 34, 'Existing Experience Analyze', 3, 'NOT GOOD', 34, '2021-01-08 10:51:36', 1),
(5515, 2515, 34, 'Importance Of Job', 3, 'HE NEED JOB IMMEADATELY ', 34, '2021-01-08 10:51:36', 1),
(5516, 2515, 34, 'Observation Skills', 4, 'GOOD', 34, '2021-01-08 10:51:36', 1),
(5517, 2515, 34, 'patience', 4, 'GOOD', 34, '2021-01-08 10:51:36', 1),
(5518, 2515, 34, 'Pressure Handling', 4, 'HE WILL HANDLE PRESSURE', 34, '2021-01-08 10:51:36', 1),
(5519, 2515, 34, 'Practical Challenges Outcome', 3, 'OK', 34, '2021-01-08 10:51:36', 1),
(5520, 2515, 34, 'Sustainability', 2, 'NOT GAURANTY', 34, '2021-01-08 10:51:36', 1),
(5521, 2515, 34, 'Sales Experience', 3, 'GOOD', 34, '2021-01-08 10:51:36', 1),
(5522, 2515, 34, 'Willing To Work On Holidays', 3, 'HE WILL WORK IN HOLIDAYS', 34, '2021-01-08 10:51:36', 1),
(5523, 2807, 34, 'Appearance', 4, 'GOOD', 34, '2021-01-08 10:55:59', 1),
(5524, 2807, 34, 'Attitude', 4, 'GOOD', 34, '2021-01-08 10:55:59', 1),
(5525, 2807, 34, 'Communication (English)', 3, 'HE WILL MANAGE', 34, '2021-01-08 10:55:59', 1),
(5526, 2807, 34, 'Communication (Tamil)', 5, 'TAMIL IS GOOD', 34, '2021-01-08 10:55:59', 1),
(5527, 2807, 34, 'Convincing Skills', 4, 'CONVINCING IS GOOD', 34, '2021-01-08 10:55:59', 1),
(5528, 2807, 34, 'Confidence Level', 4, 'GOOD', 34, '2021-01-08 10:55:59', 1),
(5529, 2807, 34, 'Existing Experience Analyze', 4, 'YES GOOD ALREADY HE WAS WORKED  IN STAR HEALTH FOR 9 MONTHS AND HE KNOWS THE PRODUCTS ALSO WELL', 34, '2021-01-08 10:55:59', 1),
(5530, 2807, 34, 'Importance Of Job', 4, 'WILL JOIN IMM', 34, '2021-01-08 10:55:59', 1),
(5531, 2807, 34, 'Observation Skills', 4, 'GOOD', 34, '2021-01-08 10:55:59', 1),
(5532, 2807, 34, 'patience', 4, 'GOOD', 34, '2021-01-08 10:55:59', 1),
(5533, 2807, 34, 'Pressure Handling', 3, 'AVERAGE', 34, '2021-01-08 10:55:59', 1),
(5534, 2807, 34, 'Practical Challenges Outcome', 4, 'GOOD', 34, '2021-01-08 10:55:59', 1),
(5535, 2807, 34, 'Sustainability', 4, 'HE WILL SUSTAIN', 34, '2021-01-08 10:55:59', 1),
(5536, 2807, 34, 'Sales Experience', 4, 'GOOD', 34, '2021-01-08 10:55:59', 1),
(5537, 2807, 34, 'Willing To Work On Holidays', 5, 'READY TO WORKS IN SUNDAYS', 34, '2021-01-08 10:55:59', 1),
(5538, 2861, 34, 'Appearance', 4, 'GOOD', 34, '2021-01-08 11:06:41', 1),
(5539, 2861, 34, 'Attitude', 4, 'GOOD', 34, '2021-01-08 11:06:41', 1),
(5540, 2861, 34, 'Communication (English)', 3, 'AVERAGE', 34, '2021-01-08 11:06:41', 1),
(5541, 2861, 34, 'Communication (Tamil)', 4, 'GOOD IN TAMIL', 34, '2021-01-08 11:06:41', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(5542, 2861, 34, 'Convincing Skills', 4, 'GOOD', 34, '2021-01-08 11:06:41', 1),
(5543, 2861, 34, 'Confidence Level', 4, 'GOOD', 34, '2021-01-08 11:06:41', 1),
(5544, 2861, 34, 'Existing Experience Analyze', 5, 'ALREDAY  HE WORKED IN CAFS DUE TO ACCIDENT HE RESIGNED ', 34, '2021-01-08 11:06:41', 1),
(5545, 2861, 34, 'Importance Of Job', 4, 'HE WILL JOIN IMM', 34, '2021-01-08 11:06:41', 1),
(5546, 2861, 34, 'Observation Skills', 4, 'GOOD', 34, '2021-01-08 11:06:41', 1),
(5547, 2861, 34, 'patience', 4, 'GOOD', 34, '2021-01-08 11:06:41', 1),
(5548, 2861, 34, 'Pressure Handling', 4, 'AVERAGE', 34, '2021-01-08 11:06:41', 1),
(5549, 2861, 34, 'Practical Challenges Outcome', 4, 'GOOD', 34, '2021-01-08 11:06:41', 1),
(5550, 2861, 34, 'Sustainability', 4, 'HE WILL SUSTAIN', 34, '2021-01-08 11:06:41', 1),
(5551, 2861, 34, 'Sales Experience', 4, 'GOOD', 34, '2021-01-08 11:06:41', 1),
(5552, 2861, 34, 'Willing To Work On Holidays', 5, 'HE WILL WORK ON SUNDAYS', 34, '2021-01-08 11:06:41', 1),
(5553, 2917, 22, 'Confidence Level', 4, 'work for long term', 22, '2021-01-08 04:34:30', 1),
(5554, 2844, 29, 'Communication (English)', 3, 'good', 29, '2021-01-09 11:00:26', 1),
(5555, 2844, 29, 'Convincing Skills', 1, 'zero', 29, '2021-01-09 11:00:26', 1),
(5556, 2844, 29, 'Confidence Level', 1, 'nil', 29, '2021-01-09 11:00:26', 1),
(5557, 2844, 29, 'Importance Of Job', 1, 'nil', 29, '2021-01-09 11:00:26', 1),
(5558, 2844, 29, 'Pressure Handling', 1, 'will not handle', 29, '2021-01-09 11:00:26', 1),
(5559, 2844, 29, 'Sales Experience', 1, 'no sales exp', 29, '2021-01-09 11:00:26', 1),
(5560, 2844, 29, 'Existing Experience Analyze', 1, 'has not worked for last 1.5 years', 29, '2021-01-09 11:00:26', 1),
(5561, 2929, 8, 'convincing Skills', 3, 'okay', 8, '2021-01-09 12:48:30', 1),
(5562, 2929, 8, 'Sustainability', 2, 'need to check', 8, '2021-01-09 12:48:30', 1),
(5563, 2875, 8, 'Sustainability', 2, 'need to check, ', 8, '2021-01-09 12:50:54', 1),
(5564, 2874, 8, 'Confidence Level', 3, 'good', 8, '2021-01-09 12:54:06', 1),
(5565, 2874, 8, 'Sustainability', 2, 'need to check', 8, '2021-01-09 12:54:06', 1),
(5566, 2918, 56, 'Communication (English)', 3, 'The way he speaks with the subject is good', 56, '2021-01-09 03:43:42', 1),
(5567, 2918, 56, 'Confidence Level', 3, 'with knowledge with deliverying is good', 56, '2021-01-09 03:43:42', 1),
(5568, 2918, 56, 'Importance Of Job', 4, 'He has Responsibility take care  of his famiy', 56, '2021-01-09 03:43:42', 1),
(5569, 2929, 21, 'Appearance', 4, 'ok', 21, '2021-01-09 04:01:05', 1),
(5570, 2929, 21, 'Communication (Tamil)', 4, 'ok', 21, '2021-01-09 04:01:05', 1),
(5571, 2929, 21, 'convincing Skills', 2, 'not good ', 21, '2021-01-09 04:01:05', 1),
(5572, 2929, 21, 'Sustainability', 2, 'she is not able to sustain long term ,bcz,  she have family problem with husband.. not suit for our procees', 21, '2021-01-09 04:01:05', 1),
(5573, 2918, 30, 'Appearance', 3, 'good ', 30, '2021-01-09 05:08:52', 1),
(5574, 2918, 30, 'Communication (English)', 4, 'good in communication skill', 30, '2021-01-09 05:08:52', 1),
(5575, 2918, 30, 'Convincing Skills', 3, 'good experience in that', 30, '2021-01-09 05:08:52', 1),
(5576, 2918, 30, 'Existing Experience Analyze', 3, '3.5yrs experience ', 30, '2021-01-09 05:08:52', 1),
(5577, 2918, 30, 'Willing To Work On Holidays', 3, 'he will work on holidays', 30, '2021-01-09 05:08:52', 1),
(5578, 2946, 18, 'Appearance', 3, 'Decent', 18, '2021-01-11 06:08:34', 1),
(5579, 2946, 18, 'Attitude', 4, 'Very Good', 18, '2021-01-11 06:08:34', 1),
(5580, 2946, 18, 'Communication (English)', 5, 'Excellent', 18, '2021-01-11 06:08:34', 1),
(5581, 2946, 18, 'Communication (Tamil)', 4, 'Neat', 18, '2021-01-11 06:08:34', 1),
(5582, 2946, 18, 'Convincing Skills', 4, 'Good Enough', 18, '2021-01-11 06:08:34', 1),
(5583, 2946, 18, 'Confidence Level', 4, 'Good', 18, '2021-01-11 06:08:34', 1),
(5584, 2946, 18, 'Importance Of Job', 5, 'Needed', 18, '2021-01-11 06:08:34', 1),
(5585, 2946, 18, 'Observation Skills', 4, 'Good', 18, '2021-01-11 06:08:34', 1),
(5586, 2946, 18, 'Pressure Handling', 4, 'Good', 18, '2021-01-11 06:08:34', 1),
(5587, 2946, 18, 'patience', 5, 'High', 18, '2021-01-11 06:08:34', 1),
(5588, 2946, 18, 'Sustainability', 3, 'If the job sets for him we can expect the cadet to be long term', 18, '2021-01-11 06:08:34', 1),
(5589, 2946, 18, 'Sales Experience', 2, 'Average but not relevant to our field', 18, '2021-01-11 06:08:34', 1),
(5590, 2946, 18, 'Existing Experience Analyze', 4, 'Good observation', 18, '2021-01-11 06:08:34', 1),
(5591, 2946, 18, 'Practical Challenges Outcome', 4, 'Can take up to a good level', 18, '2021-01-11 06:08:34', 1),
(5592, 2946, 18, 'Willing To Work On Holidays', 2, 'Doubtful as he teaches dance class on weekends', 18, '2021-01-11 06:08:34', 1),
(5593, 2946, 8, 'Communication (English)', 4, 'good', 8, '2021-01-11 06:35:15', 1),
(5594, 2946, 8, 'Convincing Skills', 4, 'good', 8, '2021-01-11 06:35:15', 1),
(5595, 2946, 8, 'Sustainability', 3, 'has to check', 8, '2021-01-11 06:35:15', 1),
(5596, 2946, 8, 'Sales Experience', 3, 'yes', 8, '2021-01-11 06:35:15', 1),
(5597, 2946, 8, 'Existing Experience Analyze', 3, 'good', 8, '2021-01-11 06:35:15', 1),
(5598, 2934, 68, 'Appearance', 3, 'Appearance is good', 68, '2021-01-11 06:45:11', 1),
(5599, 2934, 68, 'Communication (English)', 3, 'good in English', 68, '2021-01-11 06:45:11', 1),
(5600, 2934, 68, 'Confidence Level', 4, 'Very Good confidence Laval even as Fresher', 68, '2021-01-11 06:45:11', 1),
(5601, 2934, 68, 'Importance Of Job', 4, 'He wants to stand on his Own', 68, '2021-01-11 06:45:11', 1),
(5602, 2943, 68, 'Communication (English)', 3, 'Good in English', 68, '2021-01-11 06:48:20', 1),
(5603, 2943, 68, 'Communication (Tamil)', 5, 'As mother Tongue is Tamil ', 68, '2021-01-11 06:48:20', 1),
(5604, 2943, 68, 'Importance Of Job', 4, 'Having Commitments, to fulfill He wants to earn Incentive', 68, '2021-01-11 06:48:20', 1),
(5605, 2944, 19, 'Importance Of Job', 4, 'he need job', 19, '2021-01-11 06:57:25', 1),
(5606, 2922, 56, 'Attitude', 3, 'the way he carry his himself towards sales perspective ', 56, '2021-01-11 07:07:17', 1),
(5607, 2922, 56, 'Importance Of Job', 4, 'Need for Money because he has to take care of his parents', 56, '2021-01-11 07:07:17', 1),
(5608, 2922, 56, 'Willing To Work On Holidays', 5, 'he ready to work from joining itself on sunday  if company required', 56, '2021-01-11 07:07:17', 1),
(5609, 2936, 22, 'Convincing Skills', 4, 'ok', 22, '2021-01-12 11:02:27', 1),
(5610, 2944, 22, 'Sustainability', 4, 'ok', 22, '2021-01-12 11:03:08', 1),
(5611, 2933, 34, 'Appearance', 4, 'GOOD', 34, '2021-01-12 11:43:18', 1),
(5612, 2933, 34, 'Attitude', 4, 'GOOD', 34, '2021-01-12 11:43:18', 1),
(5613, 2933, 34, 'Communication (English)', 3, 'AVERAGE', 34, '2021-01-12 11:43:18', 1),
(5614, 2933, 34, 'Communication (Tamil)', 4, 'TAMIL IS GOOD', 34, '2021-01-12 11:43:18', 1),
(5615, 2933, 34, 'Convincing Skills', 4, 'GOOD', 34, '2021-01-12 11:43:18', 1),
(5616, 2933, 34, 'Confidence Level', 4, 'GOOD', 34, '2021-01-12 11:43:18', 1),
(5617, 2933, 34, 'Importance Of Job', 5, 'HE NEED JOB IMM', 34, '2021-01-12 11:43:18', 1),
(5618, 2933, 34, 'Observation Skills', 4, 'GOOD', 34, '2021-01-12 11:43:18', 1),
(5619, 2933, 34, 'Pressure Handling', 4, 'AVERAGE', 34, '2021-01-12 11:43:18', 1),
(5620, 2933, 34, 'patience', 4, 'GOOD', 34, '2021-01-12 11:43:18', 1),
(5621, 2933, 34, 'Sustainability', 4, 'HE WILL SUSTAIN AND ALSO HE IS READY TO SIGN BOND ALSO', 34, '2021-01-12 11:43:18', 1),
(5622, 2933, 34, 'Sales Experience', 4, 'YES HE HAVE SALE EXPERIRNCE IN  BAJAJ', 34, '2021-01-12 11:43:18', 1),
(5623, 2933, 34, 'Existing Experience Analyze', 4, 'GOOD', 34, '2021-01-12 11:43:18', 1),
(5624, 2933, 34, 'Practical Challenges Outcome', 4, 'GOOD', 34, '2021-01-12 11:43:18', 1),
(5625, 2933, 34, 'Willing To Work On Holidays', 5, 'READY TO WORK IN HOLIDAYS', 34, '2021-01-12 11:43:18', 1),
(5626, 2957, 8, 'Appearance', 2, 'poor', 8, '2021-01-12 04:36:40', 1),
(5627, 2957, 8, 'Attitude', 2, 'poor', 8, '2021-01-12 04:36:40', 1),
(5628, 2957, 8, 'Communication (English)', 2, 'poor', 8, '2021-01-12 04:36:40', 1),
(5629, 2957, 8, 'Observation Skills', 2, 'poor', 8, '2021-01-12 04:36:40', 1),
(5630, 2911, 18, 'Appearance', 3, 'Ok', 18, '2021-01-12 05:43:11', 1),
(5631, 2911, 18, 'Attitude', 4, 'Good', 18, '2021-01-12 05:43:11', 1),
(5632, 2911, 18, 'Communication (English)', 2, 'Average', 18, '2021-01-12 05:43:11', 1),
(5633, 2911, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-01-12 05:43:11', 1),
(5634, 2911, 18, 'Convincing Skills', 3, 'Fresher need to train', 18, '2021-01-12 05:43:11', 1),
(5635, 2911, 18, 'Confidence Level', 4, 'Good', 18, '2021-01-12 05:43:11', 1),
(5636, 2911, 18, 'Importance Of Job', 5, 'Needed', 18, '2021-01-12 05:43:11', 1),
(5637, 2911, 18, 'Observation Skills', 4, 'Good', 18, '2021-01-12 05:43:11', 1),
(5638, 2911, 18, 'Sustainability', 3, 'Looks Ok', 18, '2021-01-12 05:43:11', 1),
(5639, 2911, 18, 'Sales Experience', 1, 'Nil', 18, '2021-01-12 05:43:11', 1),
(5640, 2934, 30, 'Appearance', 3, 'Appearance good', 30, '2021-01-13 01:00:23', 1),
(5641, 2934, 30, 'Communication (English)', 4, 'Good communication skill', 30, '2021-01-13 01:00:23', 1),
(5642, 2934, 30, 'Sustainability', 3, 'He will sustain', 30, '2021-01-13 01:00:23', 1),
(5643, 2934, 30, 'Existing Experience Analyze', 1, 'Fresher ', 30, '2021-01-13 01:00:23', 1),
(5644, 2934, 30, 'Willing To Work On Holidays', 3, 'He will work on holidays', 30, '2021-01-13 01:00:23', 1),
(5645, 2922, 30, 'Appearance', 3, 'Good', 30, '2021-01-13 01:02:16', 1),
(5646, 2922, 30, 'Importance Of Job', 3, 'Job Importance must.', 30, '2021-01-13 01:02:16', 1),
(5647, 2922, 30, 'Sales Experience', 3, 'He worked in car sales ', 30, '2021-01-13 01:02:16', 1),
(5648, 2922, 30, 'Willing To Work On Holidays', 3, 'He will work.', 30, '2021-01-13 01:02:16', 1),
(5649, 2954, 34, 'Appearance', 4, 'good', 34, '2021-01-15 12:20:47', 1),
(5650, 2954, 34, 'Attitude', 4, 'good', 34, '2021-01-15 12:20:47', 1),
(5651, 2954, 34, 'Communication (English)', 3, 'average', 34, '2021-01-15 12:20:47', 1),
(5652, 2954, 34, 'Communication (Tamil)', 5, 'good', 34, '2021-01-15 12:20:47', 1),
(5653, 2954, 34, 'Convincing Skills', 4, 'average', 34, '2021-01-15 12:20:47', 1),
(5654, 2954, 34, 'Confidence Level', 4, 'good', 34, '2021-01-15 12:20:47', 1),
(5655, 2954, 34, 'Importance Of Job', 5, 'he needs job imm and also ready to sign bond also', 34, '2021-01-15 12:20:47', 1),
(5656, 2954, 34, 'Observation Skills', 4, 'good', 34, '2021-01-15 12:20:47', 1),
(5657, 2954, 34, 'Pressure Handling', 3, 'average', 34, '2021-01-15 12:20:47', 1),
(5658, 2954, 34, 'patience', 4, 'good', 34, '2021-01-15 12:20:47', 1),
(5659, 2954, 34, 'Sustainability', 4, 'he will sustain', 34, '2021-01-15 12:20:47', 1),
(5660, 2954, 34, 'Sales Experience', 4, 'sales experience is good', 34, '2021-01-15 12:20:47', 1),
(5661, 2954, 34, 'Existing Experience Analyze', 4, 'ok', 34, '2021-01-15 12:20:47', 1),
(5662, 2954, 34, 'Practical Challenges Outcome', 4, 'good', 34, '2021-01-15 12:20:47', 1),
(5663, 2954, 34, 'Willing To Work On Holidays', 4, 'he will work in sundays', 34, '2021-01-15 12:20:47', 1),
(5664, 2918, 8, 'Communication (English)', 3, 'good', 8, '2021-01-16 12:18:49', 1),
(5665, 2918, 8, 'Convincing Skills', 3, 'okay', 8, '2021-01-16 12:18:49', 1),
(5666, 2918, 8, 'Sustainability', 2, 'need to check. his previous package was 38. ', 8, '2021-01-16 12:18:49', 1),
(5667, 2918, 8, 'Sales Experience', 3, 'yes', 8, '2021-01-16 12:18:49', 1),
(5668, 2943, 30, 'Appearance', 3, 'GOOD', 30, '2021-01-16 12:52:27', 1),
(5669, 2943, 30, 'Communication (English)', 3, 'COMMUNICATION SKILL K', 30, '2021-01-16 12:52:27', 1),
(5670, 2943, 30, 'Importance Of Job', 4, 'JOB NEED MANDATORY', 30, '2021-01-16 12:52:27', 1),
(5671, 2943, 30, 'Existing Experience Analyze', 3, 'EXPERIENCE IN REALESTATE SALES', 30, '2021-01-16 12:52:27', 1),
(5672, 2943, 30, 'Willing To Work On Holidays', 3, 'WILL WORK ON HOLIDAYS', 30, '2021-01-16 12:52:27', 1),
(5673, 2995, 8, 'Convincing Skills', 3, 'okay', 8, '2021-01-19 01:32:36', 1),
(5674, 2995, 8, 'Sales Experience', 3, 'yes in tata sky', 8, '2021-01-19 01:32:36', 1),
(5675, 2985, 8, 'Confidence Level', 3, 'good', 8, '2021-01-19 01:35:25', 1),
(5676, 2985, 8, 'Sustainability', 2, 'no, looking for salary hike from previous company. from 1.8l she exp 3l.', 8, '2021-01-19 01:35:25', 1),
(5677, 2985, 8, 'Sales Experience', 3, 'in credit card', 8, '2021-01-19 01:35:25', 1),
(5678, 2996, 8, 'Convincing Skills', 3, 'okay', 8, '2021-01-20 02:38:31', 1),
(5679, 2996, 8, 'Sales Experience', 3, 'yes', 8, '2021-01-20 02:38:31', 1),
(5680, 2996, 8, 'Existing Experience Analyze', 3, 'good', 8, '2021-01-20 02:38:31', 1),
(5681, 3010, 8, 'Convincing Skills', 3, 'good', 8, '2021-01-20 02:40:15', 1),
(5682, 3010, 8, 'Importance Of Job', 4, 'yes', 8, '2021-01-20 02:40:15', 1),
(5683, 3020, 8, 'Convincing Skills', 3, 'okay', 8, '2021-01-21 01:38:24', 1),
(5684, 3020, 8, 'Importance Of Job', 3, 'yes. father-late Recently', 8, '2021-01-21 01:38:24', 1),
(5685, 3020, 8, 'Sales Experience', 2, 'no', 8, '2021-01-21 01:38:24', 1),
(5686, 3021, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-01-21 01:40:25', 1),
(5687, 3021, 8, 'Sustainability', 2, 'no, cross check', 8, '2021-01-21 01:40:25', 1),
(5688, 3019, 30, 'Appearance', 3, 'good', 30, '2021-01-21 07:13:30', 1),
(5689, 3019, 30, 'Communication (English)', 3, 'communication its k (hindi ,telugu and kannada)', 30, '2021-01-21 07:13:30', 1),
(5690, 3019, 30, 'Existing Experience Analyze', 3, '3yrs experience', 30, '2021-01-21 07:13:30', 1),
(5691, 3019, 30, 'Willing To Work On Holidays', 3, 'he will work on holidays', 30, '2021-01-21 07:13:30', 1),
(5692, 2985, 44, 'Communication (English)', 3, 'Good communication ', 44, '2021-01-22 11:10:43', 1),
(5693, 2985, 44, 'Sales Experience', 3, 'Having experience in card sales', 44, '2021-01-22 11:10:43', 1),
(5694, 2996, 44, 'Communication (English)', 3, 'Communication is ok', 44, '2021-01-22 11:13:07', 1),
(5695, 2996, 44, 'Sales Experience', 3, 'Having experience in other sales ', 44, '2021-01-22 11:13:07', 1),
(5696, 3010, 44, 'Communication (English)', 3, 'Communication ok', 44, '2021-01-22 11:15:01', 1),
(5697, 3010, 29, 'Communication (English)', 2, 'ok', 29, '2021-01-22 06:15:14', 1),
(5698, 3010, 29, 'Convincing Skills', 2, 'can do better', 29, '2021-01-22 06:15:14', 1),
(5699, 2985, 29, 'Convincing Skills', 3, 'can do better', 29, '2021-01-22 06:21:28', 1),
(5700, 2985, 29, 'Observation Skills', 2, 'good', 29, '2021-01-22 06:21:28', 1),
(5701, 2985, 29, 'Sales Experience', 2, 'tele sales experience, can improve in field sales', 29, '2021-01-22 06:21:28', 1),
(5702, 3058, 68, 'Convincing Skills', 2, 'Not Have Sales Exp', 68, '2021-01-27 07:20:28', 1),
(5703, 3058, 68, 'Confidence Level', 2, 'Not Have sales Exp', 68, '2021-01-27 07:20:28', 1),
(5704, 3058, 68, 'Sales Experience', 1, 'Have experience in Back end jobs.', 68, '2021-01-27 07:20:28', 1),
(5705, 3072, 40, 'Appearance', 5, 'good', 40, '2021-01-28 12:42:09', 1),
(5706, 3072, 40, 'Attitude', 4, 'good', 40, '2021-01-28 12:42:09', 1),
(5707, 3072, 40, 'Communication (English)', 3, 'neutral', 40, '2021-01-28 12:42:09', 1),
(5708, 3072, 40, 'Communication (Tamil)', 5, 'good', 40, '2021-01-28 12:42:09', 1),
(5709, 3072, 40, 'Convincing Skills', 4, 'seems interesting', 40, '2021-01-28 12:42:09', 1),
(5710, 3072, 40, 'Confidence Level', 5, 'good', 40, '2021-01-28 12:42:09', 1),
(5711, 3072, 40, 'Importance Of Job', 3, 'ok', 40, '2021-01-28 12:42:09', 1),
(5712, 3072, 40, 'Observation Skills', 4, 'good', 40, '2021-01-28 12:42:09', 1),
(5713, 3072, 40, 'Pressure Handling', 4, 'ok', 40, '2021-01-28 12:42:09', 1),
(5714, 3072, 40, 'patience', 3, 'Not much', 40, '2021-01-28 12:42:09', 1),
(5715, 3072, 40, 'Sustainability', 2, 'doubtful', 40, '2021-01-28 12:42:09', 1),
(5716, 3072, 40, 'Sales Experience', 4, 'yes having exp for 4 years', 40, '2021-01-28 12:42:09', 1),
(5717, 3072, 40, 'Existing Experience Analyze', 3, 'ok', 40, '2021-01-28 12:42:09', 1),
(5718, 3072, 40, 'Practical Challenges Outcome', 3, 'ok', 40, '2021-01-28 12:42:09', 1),
(5719, 3072, 40, 'Willing To Work On Holidays', 5, 'yes he will', 40, '2021-01-28 12:42:09', 1),
(5720, 3049, 29, 'Convincing Skills', 1, 'nil', 29, '2021-01-28 12:51:34', 1),
(5721, 3049, 29, 'Confidence Level', 1, 'no', 29, '2021-01-28 12:51:34', 1),
(5722, 3049, 29, 'Pressure Handling', 1, 'will not handle', 29, '2021-01-28 12:51:34', 1),
(5723, 3049, 29, 'Sales Experience', 1, 'nil', 29, '2021-01-28 12:51:34', 1),
(5724, 3071, 18, 'Appearance', 4, 'Good', 18, '2021-01-28 06:47:24', 1),
(5725, 3071, 18, 'Attitude', 3, 'Ok', 18, '2021-01-28 06:47:24', 1),
(5726, 3071, 18, 'Communication (English)', 3, 'Average', 18, '2021-01-28 06:47:24', 1),
(5727, 3071, 18, 'Communication (Tamil)', 4, 'Ok', 18, '2021-01-28 06:47:24', 1),
(5728, 3071, 18, 'Convincing Skills', 3, 'Need to train', 18, '2021-01-28 06:47:24', 1),
(5729, 3071, 18, 'Confidence Level', 4, 'Good', 18, '2021-01-28 06:47:24', 1),
(5730, 3071, 18, 'Importance Of Job', 5, 'Highly Needed', 18, '2021-01-28 06:47:24', 1),
(5731, 3071, 18, 'Observation Skills', 4, 'Good', 18, '2021-01-28 06:47:24', 1),
(5732, 3071, 18, 'Pressure Handling', 4, 'Can Handle', 18, '2021-01-28 06:47:24', 1),
(5733, 3071, 18, 'patience', 4, 'Good', 18, '2021-01-28 06:47:24', 1),
(5734, 3071, 18, 'Sustainability', 4, 'Looks good', 18, '2021-01-28 06:47:24', 1),
(5735, 3071, 18, 'Sales Experience', 3, 'ok but diffrent industry', 18, '2021-01-28 06:47:24', 1),
(5736, 3071, 18, 'Existing Experience Analyze', 3, 'Ok', 18, '2021-01-28 06:47:24', 1),
(5737, 3071, 18, 'Practical Challenges Outcome', 3, 'Good Enough', 18, '2021-01-28 06:47:24', 1),
(5738, 3071, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2021-01-28 06:47:24', 1),
(5739, 3072, 18, 'Appearance', 4, 'Good', 18, '2021-01-29 12:06:40', 1),
(5740, 3072, 18, 'Attitude', 4, 'Ok', 18, '2021-01-29 12:06:40', 1),
(5741, 3072, 18, 'Communication (English)', 4, 'Good', 18, '2021-01-29 12:06:40', 1),
(5742, 3072, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-01-29 12:06:40', 1),
(5743, 3072, 18, 'Convincing Skills', 4, 'Good', 18, '2021-01-29 12:06:40', 1),
(5744, 3072, 18, 'Confidence Level', 4, 'Good', 18, '2021-01-29 12:06:40', 1),
(5745, 3072, 18, 'Importance Of Job', 4, 'need is there', 18, '2021-01-29 12:06:40', 1),
(5746, 3072, 18, 'Observation Skills', 3, 'Good', 18, '2021-01-29 12:06:40', 1),
(5747, 3072, 18, 'Pressure Handling', 4, 'will handle', 18, '2021-01-29 12:06:40', 1),
(5748, 3072, 18, 'patience', 2, 'poor', 18, '2021-01-29 12:06:40', 1),
(5749, 3072, 18, 'Sustainability', 4, 'Once set he will be long term', 18, '2021-01-29 12:06:40', 1),
(5750, 3072, 18, 'Sales Experience', 3, 'Good but not relevant', 18, '2021-01-29 12:06:40', 1),
(5751, 3072, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-01-29 12:06:40', 1),
(5752, 3072, 18, 'Practical Challenges Outcome', 4, 'Yes', 18, '2021-01-29 12:06:40', 1),
(5753, 3072, 18, 'Willing To Work On Holidays', 3, 'Yes', 18, '2021-01-29 12:06:40', 1),
(5754, 3085, 8, 'Communication (English)', 3, 'okay', 8, '2021-01-29 02:48:35', 1),
(5755, 3085, 8, 'Convincing Skills', 3, 'fresher but she can', 8, '2021-01-29 02:48:35', 1),
(5756, 3085, 8, 'Importance Of Job', 2, 'no', 8, '2021-01-29 02:48:35', 1),
(5757, 3082, 8, 'Confidence Level', 2, 'low', 8, '2021-01-29 02:55:00', 1),
(5758, 3082, 8, 'Pressure Handling', 2, 'will not', 8, '2021-01-29 02:55:00', 1),
(5759, 3082, 8, 'Sustainability', 1, 'no', 8, '2021-01-29 02:55:00', 1),
(5760, 3082, 8, 'Willing To Work On Holidays', 1, 'no', 8, '2021-01-29 02:55:00', 1),
(5761, 3053, 8, 'Communication (English)', 3, 'okay', 8, '2021-01-29 02:57:53', 1),
(5762, 3053, 8, 'Pressure Handling', 2, 'no', 8, '2021-01-29 02:57:53', 1),
(5763, 3053, 8, 'Sales Experience', 2, 'no', 8, '2021-01-29 02:57:53', 1),
(5764, 3071, 8, 'Communication (English)', 3, 'avg', 8, '2021-01-29 06:12:09', 1),
(5765, 3071, 8, 'Convincing Skills', 3, 'avg', 8, '2021-01-29 06:12:09', 1),
(5766, 3071, 8, 'Sales Experience', 3, 'yes but not in insurance sales', 8, '2021-01-29 06:12:09', 1),
(5767, 3095, 8, 'Communication (English)', 4, 'good', 8, '2021-01-30 11:33:22', 1),
(5768, 3095, 8, 'Convincing Skills', 3, 'good', 8, '2021-01-30 11:33:22', 1),
(5769, 3095, 8, 'Sustainability', 2, 'need to check', 8, '2021-01-30 11:33:22', 1),
(5770, 3095, 8, 'Sales Experience', 4, 'yes', 8, '2021-01-30 11:33:22', 1),
(5771, 3095, 8, 'Existing Experience Analyze', 3, 'good', 8, '2021-01-30 11:33:22', 1),
(5772, 3096, 8, 'Communication (English)', 3, 'avg', 8, '2021-01-30 11:57:25', 1),
(5773, 3096, 8, 'convincing Skills', 3, 'okay', 8, '2021-01-30 11:57:25', 1),
(5774, 3096, 8, 'Sustainability', 2, 'has to check', 8, '2021-01-30 11:57:25', 1),
(5775, 3095, 29, 'Communication (English)', 4, 'good', 29, '2021-02-01 10:32:06', 1),
(5776, 3095, 29, 'Convincing Skills', 3, 'can do better', 29, '2021-02-01 10:32:06', 1),
(5777, 3095, 29, 'Confidence Level', 3, 'ok', 29, '2021-02-01 10:32:06', 1),
(5778, 3095, 29, 'Sustainability', 2, 'need to check in few day', 29, '2021-02-01 10:32:06', 1),
(5779, 3085, 18, 'Appearance', 4, 'Good', 18, '2021-02-01 10:58:02', 1),
(5780, 3085, 18, 'Attitude', 4, 'Good', 18, '2021-02-01 10:58:02', 1),
(5781, 3085, 18, 'Communication (English)', 4, 'Good', 18, '2021-02-01 10:58:02', 1),
(5782, 3085, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-02-01 10:58:02', 1),
(5783, 3085, 18, 'Convincing Skills', 3, 'Decent Begginer', 18, '2021-02-01 10:58:02', 1),
(5784, 3085, 18, 'Confidence Level', 4, 'Good', 18, '2021-02-01 10:58:02', 1),
(5785, 3085, 18, 'Importance Of Job', 4, 'Need', 18, '2021-02-01 10:58:02', 1),
(5786, 3085, 18, 'Observation Skills', 3, 'Ok', 18, '2021-02-01 10:58:02', 1),
(5787, 3085, 18, 'Pressure Handling', 3, 'Fair', 18, '2021-02-01 10:58:02', 1),
(5788, 3085, 18, 'patience', 4, 'Good', 18, '2021-02-01 10:58:02', 1),
(5789, 3085, 18, 'Sustainability', 2, 'need to check', 18, '2021-02-01 10:58:02', 1),
(5790, 3085, 18, 'Sales Experience', 1, 'Nil', 18, '2021-02-01 10:58:02', 1),
(5791, 3085, 18, 'Existing Experience Analyze', 1, 'Nil', 18, '2021-02-01 10:58:02', 1),
(5792, 3085, 18, 'Practical Challenges Outcome', 2, 'Need to verify as she is a fresher and her first job with first interview', 18, '2021-02-01 10:58:02', 1),
(5793, 3085, 18, 'Willing To Work On Holidays', 2, 'No', 18, '2021-02-01 10:58:02', 1),
(5794, 3088, 8, 'Communication (English)', 3, 'avg', 8, '2021-02-01 12:36:30', 1),
(5795, 3088, 8, 'Convincing Skills', 3, 'good', 8, '2021-02-01 12:36:30', 1),
(5796, 3088, 8, 'Importance Of Job', 3, 'yes', 8, '2021-02-01 12:36:30', 1),
(5797, 3088, 8, 'Sustainability', 3, 'yes', 8, '2021-02-01 12:36:30', 1),
(5798, 3088, 8, 'Sales Experience', 3, '3yrs part time job', 8, '2021-02-01 12:36:30', 1),
(5799, 3113, 8, 'Communication (English)', 2, 'below avg', 8, '2021-02-01 12:38:52', 1),
(5800, 3113, 8, 'Communication (Tamil)', 3, 'native language', 8, '2021-02-01 12:38:52', 1),
(5801, 3113, 8, 'Importance Of Job', 3, 'yes', 8, '2021-02-01 12:38:52', 1),
(5802, 3113, 8, 'patience', 3, 'yes', 8, '2021-02-01 12:38:52', 1),
(5803, 3113, 8, 'Sales Experience', 3, 'yes', 8, '2021-02-01 12:38:52', 1),
(5804, 3106, 8, 'Convincing Skills', 3, 'avg', 8, '2021-02-01 01:20:26', 1),
(5805, 3106, 8, 'Importance Of Job', 3, 'yes', 8, '2021-02-01 01:20:26', 1),
(5806, 3106, 8, 'Sustainability', 2, 'has to check', 8, '2021-02-01 01:20:26', 1),
(5807, 3106, 8, 'Sales Experience', 3, 'yes', 8, '2021-02-01 01:20:26', 1),
(5808, 3111, 8, 'Communication (English)', 3, 'good', 8, '2021-02-01 03:46:33', 1),
(5809, 3111, 8, 'Sustainability', 2, 'need to check', 8, '2021-02-01 03:46:33', 1),
(5810, 3111, 8, 'Sales Experience', 3, '1 yr in sales', 8, '2021-02-01 03:46:33', 1),
(5811, 3115, 8, 'Convincing Skills', 3, 'good', 8, '2021-02-01 04:54:36', 1),
(5812, 3115, 8, 'Importance Of Job', 3, 'yes', 8, '2021-02-01 04:54:36', 1),
(5813, 3115, 8, 'Sales Experience', 3, 'yes', 8, '2021-02-01 04:54:36', 1),
(5814, 3115, 22, 'Convincing Skills', 3, 'good', 22, '2021-02-02 10:28:45', 1),
(5815, 3113, 33, 'Attitude', 2, 'not good', 33, '2021-02-02 12:06:58', 1),
(5816, 3113, 33, 'Communication (English)', 2, 'not convincing', 33, '2021-02-02 12:06:58', 1),
(5817, 3113, 33, 'Communication (Tamil)', 2, 'not convincing', 33, '2021-02-02 12:06:58', 1),
(5818, 3113, 33, 'Convincing Skills', 2, 'not good', 33, '2021-02-02 12:06:58', 1),
(5819, 3120, 8, 'Communication (English)', 3, 'avg', 8, '2021-02-02 03:02:09', 1),
(5820, 3120, 8, 'Confidence Level', 3, 'good', 8, '2021-02-02 03:02:09', 1),
(5821, 3120, 8, 'Sales Experience', 2, 'fresher', 8, '2021-02-02 03:02:09', 1),
(5822, 3121, 8, 'Communication (English)', 3, 'okay', 8, '2021-02-02 03:03:20', 1),
(5823, 3140, 8, 'Communication (English)', 3, 'good', 8, '2021-02-03 12:48:15', 1),
(5824, 3140, 8, 'Convincing Skills', 3, 'good', 8, '2021-02-03 12:48:15', 1),
(5825, 3156, 8, 'Communication (English)', 3, 'avg', 8, '2021-02-04 01:12:34', 1),
(5826, 3156, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-02-04 01:12:34', 1),
(5827, 3156, 8, 'Confidence Level', 3, 'good', 8, '2021-02-04 01:12:34', 1),
(5828, 3161, 8, 'Confidence Level', 3, 'good', 8, '2021-02-04 01:41:16', 1),
(5829, 3163, 8, 'Communication (English)', 3, 'avg', 8, '2021-02-04 01:42:28', 1),
(5830, 3163, 8, 'Importance (Job)', 3, 'yes', 8, '2021-02-04 01:42:28', 1),
(5831, 3160, 8, 'Communication (English)', 2, 'below avg', 8, '2021-02-04 01:44:12', 1),
(5832, 3160, 8, 'Sustainability', 2, 'need to check', 8, '2021-02-04 01:44:12', 1),
(5833, 3160, 8, 'Sales Experience', 3, 'yes', 8, '2021-02-04 01:44:12', 1),
(5834, 3163, 21, 'Appearance', 4, 'ok', 21, '2021-02-04 02:56:33', 1),
(5835, 3163, 21, 'Communication (English)', 3, 'avg', 21, '2021-02-04 02:56:33', 1),
(5836, 3163, 21, 'convincing Skills', 2, 'she dont have experiance ', 21, '2021-02-04 02:56:33', 1),
(5837, 3163, 21, 'Confidence Level', 2, 'average ', 21, '2021-02-04 02:56:33', 1),
(5838, 3163, 21, 'Importance (Job)', 3, 'time being ', 21, '2021-02-04 02:56:33', 1),
(5839, 3163, 21, 'Pressure Handling', 3, 'she is back end proces , not able to take pressure ', 21, '2021-02-04 02:56:33', 1),
(5840, 3163, 21, 'Sustainability', 2, 'she is not sustain long term  ', 21, '2021-02-04 02:56:33', 1),
(5841, 3150, 34, 'Appearance', 4, 'good', 34, '2021-02-04 03:30:13', 1),
(5842, 3150, 34, 'Attitude', 4, 'good', 34, '2021-02-04 03:30:13', 1),
(5843, 3150, 34, 'Communication (English)', 3, 'average', 34, '2021-02-04 03:30:13', 1),
(5844, 3150, 34, 'Communication (Tamil)', 4, 'tamil is good', 34, '2021-02-04 03:30:13', 1),
(5845, 3150, 34, 'Convincing Skills', 4, 'not good', 34, '2021-02-04 03:30:13', 1),
(5846, 3150, 34, 'Confidence Level', 2, 'not so good', 34, '2021-02-04 03:30:13', 1),
(5847, 3150, 34, 'Existing Experience Analyze', 2, 'no he was an fresher', 34, '2021-02-04 03:30:13', 1),
(5848, 3150, 34, 'Importance Of Job', 3, 'he is not intersted in sales but he need job asap', 34, '2021-02-04 03:30:13', 1),
(5849, 3150, 34, 'Observation Skills', 3, 'ok', 34, '2021-02-04 03:30:13', 1),
(5850, 3150, 34, 'patience', 3, 'not bad', 34, '2021-02-04 03:30:13', 1),
(5851, 3150, 34, 'Pressure Handling', 2, 'he will  not hadle the pressure', 34, '2021-02-04 03:30:13', 1),
(5852, 3150, 34, 'Practical Challenges Outcome', 2, 'not bad', 34, '2021-02-04 03:30:13', 1),
(5853, 3150, 34, 'Sustainability', 2, 'not guarented', 34, '2021-02-04 03:30:13', 1),
(5854, 3150, 34, 'Sales Experience', 2, 'no', 34, '2021-02-04 03:30:13', 1),
(5855, 3150, 34, 'Willing To Work On Holidays', 2, 'no', 34, '2021-02-04 03:30:13', 1),
(5856, 3134, 34, 'Appearance', 4, 'GOOD', 34, '2021-02-05 12:32:08', 1),
(5857, 3134, 34, 'Attitude', 4, 'GOOD', 34, '2021-02-05 12:32:08', 1),
(5858, 3134, 34, 'Communication (English)', 3, 'AVERAGE', 34, '2021-02-05 12:32:08', 1),
(5859, 3134, 34, 'Communication (Tamil)', 4, 'VERY GOOD ', 34, '2021-02-05 12:32:08', 1),
(5860, 3134, 34, 'Convincing Skills', 4, 'VERY GOOD CONVENCING SKILLS', 34, '2021-02-05 12:32:08', 1),
(5861, 3134, 34, 'Confidence Level', 4, 'GOOD', 34, '2021-02-05 12:32:08', 1),
(5862, 3134, 34, 'Importance Of Job', 4, 'SHE NEEDS VERY IMPORTANT', 34, '2021-02-05 12:32:08', 1),
(5863, 3134, 34, 'Observation Skills', 4, 'GOOD', 34, '2021-02-05 12:32:08', 1),
(5864, 3134, 34, 'Pressure Handling', 4, 'GOOD', 34, '2021-02-05 12:32:08', 1),
(5865, 3134, 34, 'patience', 4, 'GOOD', 34, '2021-02-05 12:32:08', 1),
(5866, 3134, 34, 'Sustainability', 5, 'VERY GOOD', 34, '2021-02-05 12:32:08', 1),
(5867, 3134, 34, 'Sales Experience', 5, 'GOOD', 34, '2021-02-05 12:32:08', 1),
(5868, 3134, 34, 'Existing Experience Analyze', 5, 'GOOD KNOWLADGE IN SALES', 34, '2021-02-05 12:32:08', 1),
(5869, 3134, 34, 'Practical Challenges Outcome', 4, 'GOOD', 34, '2021-02-05 12:32:08', 1),
(5870, 3134, 34, 'Willing To Work On Holidays', 4, 'SHE WILL WORK ON SUNDAY', 34, '2021-02-05 12:32:08', 1),
(5871, 3181, 68, 'Appearance', 1, 'not Fair', 68, '2021-02-05 12:59:58', 1),
(5872, 3181, 68, 'Convincing Skills', 1, 'As he has a exp in Collecting Documents ', 68, '2021-02-05 12:59:58', 1),
(5873, 3182, 8, 'Communication (English)', 3, 'good', 8, '2021-02-05 03:09:54', 1),
(5874, 3182, 8, 'Convincing Skills', 3, 'good', 8, '2021-02-05 03:09:54', 1),
(5875, 3182, 8, 'Sustainability', 2, 'need to check', 8, '2021-02-05 03:09:54', 1),
(5876, 3182, 8, 'Existing Experience Analyze', 3, 'good and clear', 8, '2021-02-05 03:09:54', 1),
(5877, 3182, 40, 'Appearance', 5, 'PROFESSIONAL ATTIRE', 40, '2021-02-05 06:06:09', 1),
(5878, 3182, 40, 'Attitude', 5, 'Professionally approached', 40, '2021-02-05 06:06:09', 1),
(5879, 3182, 40, 'Communication (English)', 5, 'Excellent', 40, '2021-02-05 06:06:09', 1),
(5880, 3182, 40, 'Communication (Tamil)', 1, 'Zero', 40, '2021-02-05 06:06:09', 1),
(5881, 3182, 40, 'Convincing Skills', 3, 'Doesnxquott having Experience in sales', 40, '2021-02-05 06:06:09', 1),
(5882, 3182, 40, 'Confidence Level', 4, 'Good', 40, '2021-02-05 06:06:09', 1),
(5883, 3182, 40, 'Importance Of Job', 5, 'Highly required', 40, '2021-02-05 06:06:09', 1),
(5884, 3182, 40, 'Observation Skills', 4, 'Good', 40, '2021-02-05 06:06:09', 1),
(5885, 3182, 40, 'Pressure Handling', 3, 'doubtful', 40, '2021-02-05 06:06:09', 1),
(5886, 3182, 40, 'patience', 5, 'yes', 40, '2021-02-05 06:06:09', 1),
(5887, 3182, 40, 'Sustainability', 3, 'might be', 40, '2021-02-05 06:06:09', 1),
(5888, 3182, 40, 'Sales Experience', 2, 'no', 40, '2021-02-05 06:06:09', 1),
(5889, 3182, 40, 'Existing Experience Analyze', 3, 'neutral', 40, '2021-02-05 06:06:09', 1),
(5890, 3182, 40, 'Practical Challenges Outcome', 3, 'neutral', 40, '2021-02-05 06:06:09', 1),
(5891, 3182, 40, 'Willing To Work On Holidays', 5, 'yes he is', 40, '2021-02-05 06:06:09', 1),
(5892, 3160, 44, 'Communication (English)', 1, 'Not expected level', 44, '2021-02-05 06:07:49', 1),
(5893, 3195, 39, 'Appearance', 3, 'Good in outlook', 39, '2021-02-06 05:27:05', 1),
(5894, 3195, 39, 'Attitude', 3, 'good in listening', 39, '2021-02-06 05:27:05', 1),
(5895, 3195, 39, 'Communication (English)', 2, 'average', 39, '2021-02-06 05:27:05', 1),
(5896, 3195, 39, 'Sustainability', 1, 'he will not sustain', 39, '2021-02-06 05:27:05', 1),
(5897, 3195, 39, 'Sales Experience', 1, 'no relevant Experience', 39, '2021-02-06 05:27:05', 1),
(5898, 3156, 18, 'Appearance', 4, 'Good', 18, '2021-02-08 09:55:08', 1),
(5899, 3156, 18, 'Attitude', 3, 'Good', 18, '2021-02-08 09:55:08', 1),
(5900, 3156, 18, 'Communication (English)', 3, 'Average', 18, '2021-02-08 09:55:08', 1),
(5901, 3156, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-02-08 09:55:08', 1),
(5902, 3156, 18, 'Convincing Skills', 4, 'Fresher need to train', 18, '2021-02-08 09:55:08', 1),
(5903, 3156, 18, 'Confidence Level', 4, 'Good', 18, '2021-02-08 09:55:08', 1),
(5904, 3156, 18, 'Importance Of Job', 2, 'He is relatively rich but wishes to learn', 18, '2021-02-08 09:55:08', 1),
(5905, 3156, 18, 'Observation Skills', 4, 'Good', 18, '2021-02-08 09:55:08', 1),
(5906, 3156, 18, 'Pressure Handling', 3, 'Ok', 18, '2021-02-08 09:55:08', 1),
(5907, 3156, 18, 'patience', 4, 'Ok', 18, '2021-02-08 09:55:08', 1),
(5908, 3156, 18, 'Sustainability', 3, 'Need to cross check in the 1st 7 days', 18, '2021-02-08 09:55:08', 1),
(5909, 3156, 18, 'Sales Experience', 1, 'Nil', 18, '2021-02-08 09:55:08', 1),
(5910, 3156, 18, 'Existing Experience Analyze', 1, 'Nil', 18, '2021-02-08 09:55:08', 1),
(5911, 3156, 18, 'Practical Challenges Outcome', 4, 'Can mould', 18, '2021-02-08 09:55:08', 1),
(5912, 3156, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2021-02-08 09:55:08', 1),
(5913, 3161, 18, 'Appearance', 3, 'Ok', 18, '2021-02-08 11:58:33', 1),
(5914, 3161, 18, 'Communication (English)', 3, 'Average', 18, '2021-02-08 11:58:33', 1),
(5915, 3161, 18, 'Communication (Tamil)', 3, 'Average', 18, '2021-02-08 11:58:33', 1),
(5916, 3161, 18, 'Convincing Skills', 2, 'Poor', 18, '2021-02-08 11:58:33', 1),
(5917, 3161, 18, 'Confidence Level', 3, 'Average', 18, '2021-02-08 11:58:33', 1),
(5918, 3161, 18, 'Importance Of Job', 2, 'Poor', 18, '2021-02-08 11:58:33', 1),
(5919, 3161, 18, 'Sustainability', 1, 'No', 18, '2021-02-08 11:58:33', 1),
(5920, 3205, 8, 'Communication (Tamil)', 3, 'avg', 8, '2021-02-08 01:12:09', 1),
(5921, 3205, 8, 'Sustainability', 2, 'cross check', 8, '2021-02-08 01:12:09', 1),
(5922, 3205, 8, 'Sales Experience', 3, '1yr', 8, '2021-02-08 01:12:09', 1),
(5923, 3187, 8, 'Communication (English)', 3, 'good', 8, '2021-02-08 01:13:07', 1),
(5924, 3187, 8, 'Confidence Level', 3, 'good', 8, '2021-02-08 01:13:07', 1),
(5925, 3187, 8, 'Sales Experience', 3, 'yes', 8, '2021-02-08 01:13:07', 1),
(5926, 3187, 8, 'Existing Experience Analyze', 4, 'good', 8, '2021-02-08 01:13:07', 1),
(5927, 3063, 8, 'Convincing Skills', 3, 'okay', 8, '2021-02-08 01:36:31', 1),
(5928, 3063, 8, 'Importance Of Job', 3, 'yes', 8, '2021-02-08 01:36:31', 1),
(5929, 3063, 8, 'Sales Experience', 3, '1yr', 8, '2021-02-08 01:36:31', 1),
(5930, 3063, 8, 'Willing To Work On Holidays', 3, 'yes', 8, '2021-02-08 01:36:31', 1),
(5931, 3188, 29, 'Convincing Skills', 2, 'good', 29, '2021-02-08 01:40:29', 1),
(5932, 3188, 29, 'Sales Experience', 2, 'can do better', 29, '2021-02-08 01:40:29', 1),
(5933, 3187, 29, 'Attitude', 2, 'wiling to grow and earn ', 29, '2021-02-08 01:42:07', 1),
(5934, 3187, 29, 'Communication (English)', 2, 'good', 29, '2021-02-08 01:42:07', 1),
(5935, 3187, 29, 'Convincing Skills', 3, 'can handle and improve', 29, '2021-02-08 01:42:07', 1),
(5936, 3187, 29, 'Sales Experience', 2, 'food industry', 29, '2021-02-08 01:42:07', 1),
(5937, 3213, 8, 'Communication (English)', 3, 'good', 8, '2021-02-08 02:46:06', 1),
(5938, 3215, 39, 'Communication (English)', 2, 'Poor in communication\n', 39, '2021-02-08 06:28:47', 1),
(5939, 3215, 39, 'Convincing Skills', 3, 'Average', 39, '2021-02-08 06:28:47', 1),
(5940, 3215, 39, 'Observation Skills', 2, 'Observation skill. Is average', 39, '2021-02-08 06:28:47', 1),
(5941, 3215, 39, 'Sustainability', 1, 'Will not sustain', 39, '2021-02-08 06:28:47', 1),
(5942, 3182, 18, 'Appearance', 4, 'Good', 18, '2021-02-10 11:43:23', 1),
(5943, 3182, 18, 'Attitude', 4, 'Good', 18, '2021-02-10 11:43:23', 1),
(5944, 3182, 18, 'Communication (English)', 5, 'Excellent', 18, '2021-02-10 11:43:23', 1),
(5945, 3182, 18, 'Communication (Tamil)', 1, 'Poor', 18, '2021-02-10 11:43:23', 1),
(5946, 3182, 18, 'Convincing Skills', 4, 'Good', 18, '2021-02-10 11:43:23', 1),
(5947, 3182, 18, 'Confidence Level', 4, 'Good', 18, '2021-02-10 11:43:23', 1),
(5948, 3182, 18, 'Importance Of Job', 4, 'Needed', 18, '2021-02-10 11:43:23', 1),
(5949, 3182, 18, 'Observation Skills', 4, 'Good', 18, '2021-02-10 11:43:23', 1),
(5950, 3182, 18, 'Pressure Handling', 4, 'Can Handle', 18, '2021-02-10 11:43:23', 1),
(5951, 3182, 18, 'patience', 4, 'Good', 18, '2021-02-10 11:43:23', 1),
(5952, 3182, 18, 'Sustainability', 3, 'Aerage', 18, '2021-02-10 11:43:23', 1),
(5953, 3182, 18, 'Sales Experience', 4, 'Good', 18, '2021-02-10 11:43:23', 1),
(5954, 3182, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2021-02-10 11:43:23', 1),
(5955, 3063, 34, 'Appearance', 4, 'good', 34, '2021-02-10 12:03:47', 1),
(5956, 3063, 34, 'Attitude', 4, 'good', 34, '2021-02-10 12:03:47', 1),
(5957, 3063, 34, 'Communication (English)', 3, 'not bad', 34, '2021-02-10 12:03:47', 1),
(5958, 3063, 34, 'Communication (Tamil)', 5, 'good', 34, '2021-02-10 12:03:47', 1),
(5959, 3063, 34, 'Convincing Skills', 3, 'average', 34, '2021-02-10 12:03:47', 1),
(5960, 3063, 34, 'Confidence Level', 3, 'average', 34, '2021-02-10 12:03:47', 1),
(5961, 3063, 34, 'Existing Experience Analyze', 4, 'good', 34, '2021-02-10 12:03:47', 1),
(5962, 3063, 34, 'Importance Of Job', 4, 'he needs job imm', 34, '2021-02-10 12:03:47', 1),
(5963, 3063, 34, 'Observation Skills', 4, 'good', 34, '2021-02-10 12:03:47', 1),
(5964, 3063, 34, 'patience', 4, 'good', 34, '2021-02-10 12:03:47', 1),
(5965, 3063, 34, 'Pressure Handling', 4, 'he will handle the pressure', 34, '2021-02-10 12:03:47', 1),
(5966, 3063, 34, 'Practical Challenges Outcome', 4, 'good', 34, '2021-02-10 12:03:47', 1),
(5967, 3063, 34, 'Sustainability', 4, 'will sustain', 34, '2021-02-10 12:03:47', 1),
(5968, 3063, 34, 'Sales Experience', 4, 'good', 34, '2021-02-10 12:03:47', 1),
(5969, 3063, 34, 'Willing To Work On Holidays', 4, 'he will work on holidays also', 34, '2021-02-10 12:03:47', 1),
(5970, 3246, 41, 'Appearance', 3, 'GOOD', 41, '2021-02-10 12:15:29', 1),
(5971, 3246, 41, 'Attitude', 3, 'GOOD', 41, '2021-02-10 12:15:29', 1),
(5972, 3246, 41, 'Communication (English)', 2, 'OK', 41, '2021-02-10 12:15:29', 1),
(5973, 3246, 41, 'Communication (Tamil)', 3, 'GOOD', 41, '2021-02-10 12:15:29', 1),
(5974, 3246, 41, 'Convincing Skills', 3, 'OK ', 41, '2021-02-10 12:15:29', 1),
(5975, 3246, 41, 'Confidence Level', 3, 'YES', 41, '2021-02-10 12:15:29', 1),
(5976, 3246, 41, 'Importance Of Job', 3, 'YES Single parent', 41, '2021-02-10 12:15:29', 1),
(5977, 3246, 41, 'Observation Skills', 3, 'yES', 41, '2021-02-10 12:15:29', 1),
(5978, 3246, 41, 'Sustainability', 3, 'YES', 41, '2021-02-10 12:15:29', 1),
(5979, 3246, 41, 'Willing To Work On Holidays', 3, 'YES', 41, '2021-02-10 12:15:29', 1),
(5980, 3246, 34, 'Appearance', 4, 'good', 34, '2021-02-10 02:59:58', 1),
(5981, 3246, 34, 'Attitude', 4, 'good', 34, '2021-02-10 02:59:58', 1),
(5982, 3246, 34, 'Communication (English)', 3, 'average', 34, '2021-02-10 02:59:58', 1),
(5983, 3246, 34, 'Communication (Tamil)', 4, 'good', 34, '2021-02-10 02:59:58', 1),
(5984, 3246, 34, 'Convincing Skills', 4, 'good', 34, '2021-02-10 02:59:58', 1),
(5985, 3246, 34, 'Confidence Level', 4, 'good', 34, '2021-02-10 02:59:58', 1),
(5986, 3246, 34, 'Existing Experience Analyze', 4, 'good', 34, '2021-02-10 02:59:58', 1),
(5987, 3246, 34, 'Importance Of Job', 4, 'he needs job immediately', 34, '2021-02-10 02:59:58', 1),
(5988, 3246, 34, 'Observation Skills', 3, 'good', 34, '2021-02-10 02:59:58', 1),
(5989, 3246, 34, 'patience', 4, 'good', 34, '2021-02-10 02:59:58', 1),
(5990, 3246, 34, 'Pressure Handling', 4, 'average', 34, '2021-02-10 02:59:58', 1),
(5991, 3246, 34, 'Practical Challenges Outcome', 4, 'good', 34, '2021-02-10 02:59:58', 1),
(5992, 3246, 34, 'Sustainability', 4, 'he will sustain', 34, '2021-02-10 02:59:58', 1),
(5993, 3246, 34, 'Sales Experience', 4, 'good', 34, '2021-02-10 02:59:58', 1),
(5994, 3246, 34, 'Willing To Work On Holidays', 4, 'he will work on holidays also', 34, '2021-02-10 02:59:58', 1),
(5995, 3197, 41, 'Appearance', 2, 'OK', 41, '2021-02-10 03:08:30', 1),
(5996, 3197, 41, 'Attitude', 3, 'GOOD', 41, '2021-02-10 03:08:30', 1),
(5997, 3197, 41, 'Communication (English)', 2, 'OK', 41, '2021-02-10 03:08:30', 1),
(5998, 3197, 41, 'Communication (Tamil)', 3, 'GOOD', 41, '2021-02-10 03:08:30', 1),
(5999, 3197, 41, 'Convincing Skills', 3, 'YES', 41, '2021-02-10 03:08:30', 1),
(6000, 3197, 41, 'Pressure Handling', 3, 'YES', 41, '2021-02-10 03:08:30', 1),
(6001, 3197, 41, 'Sustainability', 2, 'CHECK', 41, '2021-02-10 03:08:30', 1),
(6002, 3249, 41, 'Appearance', 3, 'GOOD', 41, '2021-02-10 03:12:02', 1),
(6003, 3249, 41, 'Attitude', 3, 'GOOD', 41, '2021-02-10 03:12:02', 1),
(6004, 3249, 41, 'Communication (English)', 2, 'OK, issue in communication flow', 41, '2021-02-10 03:12:02', 1),
(6005, 3249, 41, 'Communication (Tamil)', 3, 'Stammering while speaking', 41, '2021-02-10 03:12:02', 1),
(6006, 3249, 41, 'Convincing Skills', 2, 'AVERAGE', 41, '2021-02-10 03:12:02', 1),
(6007, 3249, 41, 'Pressure Handling', 3, 'YES', 41, '2021-02-10 03:12:02', 1),
(6008, 3249, 41, 'Sustainability', 2, 'CHECK', 41, '2021-02-10 03:12:02', 1),
(6009, 3224, 14, 'Communication (Tamil)', 1, 'not good', 14, '2021-02-10 03:12:03', 1),
(6010, 3224, 14, 'Communication (English)', 1, 'pronunciation not good', 14, '2021-02-10 03:12:03', 1),
(6011, 3224, 14, 'convincing Skills', 1, 'less', 14, '2021-02-10 03:12:03', 1),
(6012, 3224, 14, 'Observation skills', 1, 'less', 14, '2021-02-10 03:12:03', 1),
(6013, 3248, 41, 'Appearance', 3, 'GOOD', 41, '2021-02-10 03:16:01', 1),
(6014, 3248, 41, 'Attitude', 3, 'GOOD', 41, '2021-02-10 03:16:01', 1),
(6015, 3248, 41, 'Communication (English)', 3, 'GOOD', 41, '2021-02-10 03:16:01', 1),
(6016, 3248, 41, 'Communication (Tamil)', 3, 'GOOD', 41, '2021-02-10 03:16:01', 1),
(6017, 3248, 41, 'Convincing Skills', 3, 'GOOD', 41, '2021-02-10 03:16:01', 1),
(6018, 3248, 41, 'Sustainability', 2, 'CHECK', 41, '2021-02-10 03:16:01', 1),
(6019, 3248, 41, 'Sales Experience', 3, 'YES', 41, '2021-02-10 03:16:01', 1),
(6020, 3248, 41, 'Existing Experience Analyze', 2, 'TRAIN HE WILL LEARN', 41, '2021-02-10 03:16:01', 1),
(6021, 3248, 41, 'Practical Challenges Outcome', 3, 'WAS INTO SALES BUT DIFFERENT SECTOR', 41, '2021-02-10 03:16:01', 1),
(6022, 3248, 41, 'Willing To Work On Holidays', 3, 'YES', 41, '2021-02-10 03:16:01', 1),
(6023, 3252, 41, 'Appearance', 3, 'GOOD', 41, '2021-02-10 03:24:08', 1),
(6024, 3252, 41, 'Attitude', 3, 'GOOD', 41, '2021-02-10 03:24:08', 1),
(6025, 3252, 41, 'Communication (English)', 2, 'MANAGEABLE', 41, '2021-02-10 03:24:08', 1),
(6026, 3252, 41, 'Communication (Tamil)', 3, 'GOOD', 41, '2021-02-10 03:24:08', 1),
(6027, 3252, 41, 'Convincing Skills', 2, 'FRESHER LEVEL - OK', 41, '2021-02-10 03:24:08', 1),
(6028, 3252, 41, 'Confidence Level', 3, 'YES ', 41, '2021-02-10 03:24:08', 1),
(6029, 3252, 41, 'Importance Of Job', 2, 'INCOMING EARNING PERSON (FATHER - WELDER)', 41, '2021-02-10 03:24:08', 1),
(6030, 3252, 41, 'Observation Skills', 2, 'OK - AVERAGE', 41, '2021-02-10 03:24:08', 1),
(6031, 3252, 41, 'patience', 3, 'YES GOOD LISTENER', 41, '2021-02-10 03:24:08', 1),
(6032, 3252, 41, 'Pressure Handling', 2, 'NEED TO CHECK', 41, '2021-02-10 03:24:08', 1),
(6033, 3252, 41, 'Sustainability', 2, 'NEED TO CHECK', 41, '2021-02-10 03:24:08', 1),
(6034, 3252, 41, 'Sales Experience', 1, 'FRESHER', 41, '2021-02-10 03:24:08', 1),
(6035, 3252, 41, 'Willing To Work On Holidays', 3, 'YES', 41, '2021-02-10 03:24:08', 1),
(6036, 3247, 38, 'Appearance', 2, 'not good in outlook', 38, '2021-02-10 03:42:40', 1),
(6037, 3247, 38, 'Attitude', 2, 'average in listening', 38, '2021-02-10 03:42:40', 1),
(6038, 3247, 38, 'Communication (English)', 2, 'manageable only', 38, '2021-02-10 03:42:40', 1),
(6039, 3247, 38, 'Communication (Tamil)', 1, 'he know only kannada but he mentioned telugu also in resume...then i asked some question through telugu, totally he is blank.. he donxquott know basic telugu also but he mentioned......first approach he given false hope', 38, '2021-02-10 03:42:40', 1),
(6040, 3247, 38, 'Confidence Level', 1, 'very low', 38, '2021-02-10 03:42:40', 1),
(6041, 3247, 38, 'Observation Skills', 1, 'basic level in observation', 38, '2021-02-10 03:42:40', 1),
(6042, 3247, 38, 'Sales Experience', 2, 'he had sales exp but not Relevant to our process ', 38, '2021-02-10 03:42:40', 1),
(6043, 3248, 29, 'Convincing Skills', 2, 'good, can do better with experience', 29, '2021-02-11 01:21:05', 1),
(6044, 3248, 29, 'Sales Experience', 1, 'only worked 6 months, can do better here', 29, '2021-02-11 01:21:05', 1),
(6045, 3250, 41, 'Appearance', 3, 'OK', 41, '2021-02-12 09:48:26', 1),
(6046, 3252, 34, 'Appearance', 4, 'good', 34, '2021-02-12 10:14:33', 1),
(6047, 3252, 34, 'Attitude', 4, 'good', 34, '2021-02-12 10:14:33', 1),
(6048, 3252, 34, 'Communication (English)', 3, 'he will manage ', 34, '2021-02-12 10:14:33', 1),
(6049, 3252, 34, 'Communication (Tamil)', 4, 'good', 34, '2021-02-12 10:14:33', 1),
(6050, 3252, 34, 'Convincing Skills', 4, 'good', 34, '2021-02-12 10:14:33', 1),
(6051, 3252, 34, 'Confidence Level', 4, 'good', 34, '2021-02-12 10:14:33', 1),
(6052, 3252, 34, 'Existing Experience Analyze', 4, 'good', 34, '2021-02-12 10:14:33', 1),
(6053, 3252, 34, 'Importance Of Job', 4, 'he needs  a job immeadtely', 34, '2021-02-12 10:14:33', 1),
(6054, 3252, 34, 'Observation Skills', 4, 'good', 34, '2021-02-12 10:14:33', 1),
(6055, 3252, 34, 'patience', 4, 'good', 34, '2021-02-12 10:14:33', 1),
(6056, 3252, 34, 'Pressure Handling', 4, 'He Will Handle The Pressure', 34, '2021-02-12 10:14:33', 1),
(6057, 3252, 34, 'Practical Challenges Outcome', 4, 'ok', 34, '2021-02-12 10:14:33', 1),
(6058, 3252, 34, 'Sustainability', 4, 'good', 34, '2021-02-12 10:14:33', 1),
(6059, 3252, 34, 'Sales Experience', 4, 'good', 34, '2021-02-12 10:14:33', 1),
(6060, 3252, 34, 'Willing To Work On Holidays', 4, 'he will work on holidays also', 34, '2021-02-12 10:14:33', 1),
(6061, 3250, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-02-12 10:42:34', 1),
(6062, 3250, 14, 'convincing Skills', 4, 'good', 14, '2021-02-12 10:42:34', 1),
(6063, 3250, 14, 'Observation skills', 4, 'easy to observe', 14, '2021-02-12 10:42:34', 1),
(6064, 3290, 41, 'Sustainability', 2, 'HE WILL CALL BACK', 41, '2021-02-13 02:39:53', 1),
(6065, 3295, 21, 'Appearance', 3, 'ok ', 21, '2021-02-13 04:01:29', 1),
(6066, 3295, 21, 'Communication (Tamil)', 4, 'ok', 21, '2021-02-13 04:01:29', 1),
(6067, 3295, 21, 'Communication (English)', 3, 'avg ', 21, '2021-02-13 04:01:29', 1),
(6068, 3295, 21, 'convincing Skills', 3, 'ok , but she dont have experience ', 21, '2021-02-13 04:01:29', 1),
(6069, 3295, 21, 'Confidence Level', 4, 'ok good ', 21, '2021-02-13 04:01:29', 1),
(6070, 3295, 21, 'Pressure Handling', 3, 'need to check in training days , she dont haveexper', 21, '2021-02-13 04:01:29', 1),
(6071, 3312, 39, 'Appearance', 3, 'good in Appearance', 39, '2021-02-15 03:03:26', 1),
(6072, 3312, 39, 'Attitude', 3, 'good in communication and listening', 39, '2021-02-15 03:03:26', 1),
(6073, 3312, 39, 'Communication (English)', 4, 'fluent english', 39, '2021-02-15 03:03:26', 1),
(6074, 3312, 39, 'Communication (Tamil)', 3, 'she know tamil and hindi too', 39, '2021-02-15 03:03:26', 1),
(6075, 3312, 39, 'Convincing Skills', 3, 'she is already experienced in same sales so she convinced', 39, '2021-02-15 03:03:26', 1),
(6076, 3312, 39, 'Pressure Handling', 3, 'she will handle', 39, '2021-02-15 03:03:26', 1),
(6077, 3312, 39, 'Sales Experience', 3, '3years relevant experience in same filed', 39, '2021-02-15 03:03:26', 1),
(6078, 3281, 39, 'Appearance', 2, 'not satisfied', 39, '2021-02-16 10:48:25', 1),
(6079, 3281, 39, 'Attitude', 2, 'average in listening and understanding', 39, '2021-02-16 10:48:25', 1),
(6080, 3281, 39, 'Communication (English)', 2, 'manageable', 39, '2021-02-16 10:48:25', 1),
(6081, 3281, 39, 'Pressure Handling', 2, 'he will not handle pressure', 39, '2021-02-16 10:48:25', 1),
(6082, 3281, 39, 'Willing To Work On Holidays', 1, 'he said staright away....he canxquott work', 39, '2021-02-16 10:48:25', 1),
(6083, 3231, 29, 'Sustainability', 1, 'will not', 29, '2021-02-16 03:50:57', 1),
(6084, 3231, 29, 'Sales Experience', 1, 'doesnxquott have insurance sales expe..', 29, '2021-02-16 03:50:57', 1),
(6085, 3231, 29, 'Existing Experience Analyze', 1, 'not usefull in our profile', 29, '2021-02-16 03:50:57', 1),
(6086, 3264, 29, 'Convincing Skills', 1, 'no', 29, '2021-02-16 03:52:10', 1),
(6087, 3264, 29, 'Pressure Handling', 1, 'could not handle pressure', 29, '2021-02-16 03:52:10', 1),
(6088, 3264, 29, 'Sales Experience', 1, 'no insurance sales exp, currently working in operations', 29, '2021-02-16 03:52:10', 1),
(6089, 3216, 34, 'Appearance', 4, 'good', 34, '2021-02-16 04:34:56', 1),
(6090, 3216, 34, 'Attitude', 4, 'good', 34, '2021-02-16 04:34:56', 1),
(6091, 3216, 34, 'Communication (English)', 3, 'average', 34, '2021-02-16 04:34:56', 1),
(6092, 3216, 34, 'Communication (Tamil)', 4, 'good ', 34, '2021-02-16 04:34:56', 1),
(6093, 3216, 34, 'Convincing Skills', 4, 'good', 34, '2021-02-16 04:34:56', 1),
(6094, 3216, 34, 'Confidence Level', 4, 'ok', 34, '2021-02-16 04:34:56', 1),
(6095, 3216, 34, 'Existing Experience Analyze', 4, 'good', 34, '2021-02-16 04:34:56', 1),
(6096, 3216, 34, 'Importance Of Job', 4, 'good', 34, '2021-02-16 04:34:56', 1),
(6097, 3216, 34, 'Observation Skills', 4, 'good', 34, '2021-02-16 04:34:56', 1),
(6098, 3216, 34, 'patience', 4, 'not bad', 34, '2021-02-16 04:34:56', 1),
(6099, 3216, 34, 'Pressure Handling', 4, 'he will handle', 34, '2021-02-16 04:34:56', 1),
(6100, 3216, 34, 'Practical Challenges Outcome', 4, 'ok', 34, '2021-02-16 04:34:56', 1),
(6101, 3216, 34, 'Sustainability', 4, 'ok', 34, '2021-02-16 04:34:56', 1),
(6102, 3216, 34, 'Sales Experience', 4, 'no', 34, '2021-02-16 04:34:56', 1),
(6103, 3216, 34, 'Willing To Work On Holidays', 4, 'yes he will', 34, '2021-02-16 04:34:56', 1),
(6104, 3290, 13, 'Communication (Tamil)', 2, 'low', 13, '2021-02-16 07:34:20', 1),
(6105, 3290, 13, 'Confidence Level', 2, 'low', 13, '2021-02-16 07:34:20', 1),
(6106, 3400, 36, 'patience', 5, 'Ok', 36, '2021-02-19 04:41:31', 1),
(6107, 3400, 36, 'Sales Experience', 3, 'Ok', 36, '2021-02-19 04:41:31', 1),
(6108, 3400, 36, 'Existing Experience Analyze', 4, 'Ok', 36, '2021-02-19 04:41:31', 1),
(6109, 3400, 18, 'Appearance', 4, 'Good', 18, '2021-02-19 07:12:08', 1),
(6110, 3400, 18, 'Attitude', 4, 'Good', 18, '2021-02-19 07:12:08', 1),
(6111, 3400, 18, 'Communication (English)', 3, 'Above Average', 18, '2021-02-19 07:12:08', 1),
(6112, 3400, 18, 'Communication (Tamil)', 3, 'Above Average', 18, '2021-02-19 07:12:08', 1),
(6113, 3400, 18, 'Convincing Skills', 3, 'Ok', 18, '2021-02-19 07:12:08', 1),
(6114, 3400, 18, 'Confidence Level', 4, 'Good', 18, '2021-02-19 07:12:08', 1),
(6115, 3400, 18, 'Importance Of Job', 3, 'Guy is from a good background but determined to stand in his own legs', 18, '2021-02-19 07:12:08', 1),
(6116, 3400, 18, 'Observation Skills', 4, 'Good', 18, '2021-02-19 07:12:08', 1),
(6117, 3400, 18, 'Pressure Handling', 3, 'To Some Extent', 18, '2021-02-19 07:12:08', 1),
(6118, 3400, 18, 'patience', 4, 'Decent', 18, '2021-02-19 07:12:08', 1),
(6119, 3400, 18, 'Sustainability', 4, 'Yes', 18, '2021-02-19 07:12:08', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(6120, 3400, 18, 'Sales Experience', 3, 'Average and not relevant', 18, '2021-02-19 07:12:08', 1),
(6121, 3400, 18, 'Existing Experience Analyze', 4, 'Explained clearly', 18, '2021-02-19 07:12:08', 1),
(6122, 3400, 18, 'Practical Challenges Outcome', 3, 'Ok', 18, '2021-02-19 07:12:08', 1),
(6123, 3400, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2021-02-19 07:12:08', 1),
(6124, 3409, 17, 'Appearance', 3, 'Okay', 17, '2021-02-20 11:08:47', 1),
(6125, 3409, 17, 'Attitude', 3, 'good', 17, '2021-02-20 11:08:47', 1),
(6126, 3409, 17, 'Communication (English)', 3, 'good', 17, '2021-02-20 11:08:47', 1),
(6127, 3409, 17, 'Communication (Tamil)', 4, 'good', 17, '2021-02-20 11:08:47', 1),
(6128, 3409, 17, 'Convincing Skills', 4, 'good', 17, '2021-02-20 11:08:47', 1),
(6129, 3409, 17, 'Confidence Level', 3, 'okay', 17, '2021-02-20 11:08:47', 1),
(6130, 3409, 17, 'Existing Experience Analyze', 3, 'existing sales sriram finance', 17, '2021-02-20 11:08:47', 1),
(6131, 3409, 17, 'Importance Of Job', 3, 'finance need', 17, '2021-02-20 11:08:47', 1),
(6132, 3409, 17, 'Observation Skills', 3, 'okay', 17, '2021-02-20 11:08:47', 1),
(6133, 3409, 17, 'patience', 3, 'okay', 17, '2021-02-20 11:08:47', 1),
(6134, 3409, 17, 'Pressure Handling', 3, 'okay', 17, '2021-02-20 11:08:47', 1),
(6135, 3409, 17, 'Practical Challenges Outcome', 3, 'okay', 17, '2021-02-20 11:08:47', 1),
(6136, 3409, 17, 'Sustainability', 3, 'need to check', 17, '2021-02-20 11:08:47', 1),
(6137, 3409, 17, 'Sales Experience', 4, 'yes', 17, '2021-02-20 11:08:47', 1),
(6138, 3409, 17, 'Willing To Work On Holidays', 3, 'yes', 17, '2021-02-20 11:08:47', 1),
(6139, 3452, 39, 'Appearance', 1, 'his dressing code is not like he came for interview', 39, '2021-02-22 03:04:35', 1),
(6140, 3452, 39, 'Attitude', 1, 'bad in communication', 39, '2021-02-22 03:04:35', 1),
(6141, 3452, 39, 'Communication (English)', 1, 'basic english', 39, '2021-02-22 03:04:35', 1),
(6142, 3452, 39, 'Importance Of Job', 1, 'seems like looking job for temporary', 39, '2021-02-22 03:04:35', 1),
(6143, 3452, 39, 'Sustainability', 1, 'he will not sustain', 39, '2021-02-22 03:04:35', 1),
(6144, 3453, 39, 'Appearance', 1, 'looking local in outlooking', 39, '2021-02-22 03:12:36', 1),
(6145, 3453, 39, 'Attitude', 1, 'bad in listening', 39, '2021-02-22 03:12:36', 1),
(6146, 3453, 39, 'Communication (English)', 1, 'basic in english', 39, '2021-02-22 03:12:36', 1),
(6147, 3453, 39, 'Pressure Handling', 1, 'he will not handle pressure', 39, '2021-02-22 03:12:36', 1),
(6148, 3318, 44, 'Sales Experience', 1, 'Having experience  in other field ', 44, '2021-02-22 07:20:48', 1),
(6149, 3401, 44, 'Communication (Tamil)', 3, 'Good in communication', 44, '2021-02-22 07:23:32', 1),
(6150, 3401, 44, 'Sales Experience', 3, 'Having experience in Kotak life', 44, '2021-02-22 07:23:32', 1),
(6151, 3401, 44, 'Willing To Work On Holidays', 3, 'Ready to work on holidays', 44, '2021-02-22 07:23:32', 1),
(6152, 3422, 31, 'Appearance', 3, 'Neat', 31, '2021-02-24 11:42:36', 1),
(6153, 3422, 31, 'Communication (Tamil)', 3, 'Good', 31, '2021-02-24 11:42:36', 1),
(6154, 3401, 29, 'Convincing Skills', 2, 'ok', 29, '2021-02-24 01:36:43', 1),
(6155, 3401, 29, 'Sustainability', 2, 'will stay for long term', 29, '2021-02-24 01:36:43', 1),
(6156, 3401, 29, 'Sales Experience', 3, 'Got insurance sales exp', 29, '2021-02-24 01:36:43', 1),
(6157, 3401, 29, 'Existing Experience Analyze', 1, 'need to check within 7 days in training program', 29, '2021-02-24 01:36:43', 1),
(6158, 3503, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-02-25 04:01:13', 1),
(6159, 3503, 13, 'convincing Skills', 4, 'good', 13, '2021-02-25 04:01:13', 1),
(6160, 3405, 68, 'Communication (English)', 4, 'GOOD', 68, '2021-02-26 11:28:54', 1),
(6161, 3405, 68, 'Convincing Skills', 2, 'nOT mUCH', 68, '2021-02-26 11:28:54', 1),
(6162, 3405, 68, 'Pressure Handling', 1, 'cANT hANDLE pRESSURE', 68, '2021-02-26 11:28:54', 1),
(6163, 3405, 68, 'Sustainability', 1, '..', 68, '2021-02-26 11:28:54', 1),
(6164, 3541, 68, 'Appearance', 1, 'nOT gOOD', 68, '2021-02-26 12:47:17', 1),
(6165, 3541, 68, 'Communication (English)', 1, 'nOT gOOD IN ENGLISH', 68, '2021-02-26 12:47:17', 1),
(6166, 3541, 68, 'Confidence Level', 1, 'nO CONFIDENCE', 68, '2021-02-26 12:47:17', 1),
(6167, 2742, 68, 'Appearance', 4, 'Good Appearance', 68, '2021-02-26 04:26:14', 1),
(6168, 2742, 68, 'Communication (English)', 4, 'Good in English', 68, '2021-02-26 04:26:14', 1),
(6169, 3607, 8, 'Communication (English)', 3, 'okay', 8, '2021-03-02 01:18:00', 1),
(6170, 3607, 8, 'Confidence Level', 3, 'quit good', 8, '2021-03-02 01:18:00', 1),
(6171, 3607, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-02 01:18:00', 1),
(6172, 3607, 8, 'Sales Experience', 3, '8yr but not in insurance 6months in sriram life.', 8, '2021-03-02 01:18:00', 1),
(6173, 3604, 8, 'Communication (English)', 3, 'good', 8, '2021-03-02 01:29:12', 1),
(6174, 3584, 13, 'convincing Skills', 2, 'very low', 13, '2021-03-03 12:18:03', 1),
(6175, 3584, 13, 'Pressure Handling', 2, 'low', 13, '2021-03-03 12:18:03', 1),
(6176, 3601, 8, 'Communication (English)', 3, 'good', 8, '2021-03-03 01:38:10', 1),
(6177, 3624, 8, 'Communication (English)', 3, 'good', 8, '2021-03-03 01:41:38', 1),
(6178, 3624, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-03 01:41:38', 1),
(6179, 3624, 8, 'Confidence Level', 3, 'good', 8, '2021-03-03 01:41:38', 1),
(6180, 3624, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-03 01:41:38', 1),
(6181, 3623, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-03 01:44:19', 1),
(6182, 3623, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-03 01:44:19', 1),
(6183, 3623, 8, 'Importance Of Job', 4, 'yes', 8, '2021-03-03 01:44:19', 1),
(6184, 3623, 8, 'Sustainability', 3, 'job need', 8, '2021-03-03 01:44:19', 1),
(6185, 3623, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-03 01:44:19', 1),
(6186, 3580, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-03-03 04:27:47', 1),
(6187, 3580, 13, 'convincing Skills', 4, 'good', 13, '2021-03-03 04:27:47', 1),
(6188, 3502, 30, 'Communication (English)', 4, 'good communication ', 30, '2021-03-04 04:51:17', 1),
(6189, 3502, 30, 'Observation Skills', 3, 'good', 30, '2021-03-04 04:51:17', 1),
(6190, 3502, 30, 'Pressure Handling', 4, 'he will sustain ', 30, '2021-03-04 04:51:17', 1),
(6191, 3502, 30, 'Sales Experience', 4, 'already insurance experience there', 30, '2021-03-04 04:51:17', 1),
(6192, 3502, 30, 'Willing To Work On Holidays', 4, 'he will work on holidays', 30, '2021-03-04 04:51:17', 1),
(6193, 3624, 29, 'Convincing Skills', 2, 'good', 29, '2021-03-05 12:40:17', 1),
(6194, 3624, 29, 'Importance Of Job', 2, 'matured', 29, '2021-03-05 12:40:17', 1),
(6195, 3624, 29, 'Sales Experience', 2, 'no insurance exp, can learn quickly', 29, '2021-03-05 12:40:17', 1),
(6196, 3587, 29, 'Communication (Tamil)', 1, 'doesnxquott know tamil', 29, '2021-03-05 12:42:22', 1),
(6197, 3587, 29, 'Convincing Skills', 2, 'good', 29, '2021-03-05 12:42:22', 1),
(6198, 3587, 29, 'Sales Experience', 1, 'no much exp in any industry', 29, '2021-03-05 12:42:22', 1),
(6199, 3318, 29, 'Convincing Skills', 1, 'zero', 29, '2021-03-05 12:46:33', 1),
(6200, 3318, 29, 'Existing Experience Analyze', 1, 'false commitments', 29, '2021-03-05 12:46:33', 1),
(6201, 3318, 29, 'Importance Of Job', 1, 'not much important', 29, '2021-03-05 12:46:33', 1),
(6202, 3318, 29, 'Sustainability', 1, 'no', 29, '2021-03-05 12:46:33', 1),
(6203, 3670, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-03-05 06:45:17', 1),
(6204, 3670, 13, 'convincing Skills', 4, 'good', 13, '2021-03-05 06:45:17', 1),
(6205, 3670, 13, 'Confidence Level', 4, 'good', 13, '2021-03-05 06:45:17', 1),
(6206, 3638, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-05 06:55:33', 1),
(6207, 3638, 8, 'Sales Experience', 3, 'has  4 yr sales exp', 8, '2021-03-05 06:55:33', 1),
(6208, 3638, 8, 'Existing Experience Analyze', 3, 'avg', 8, '2021-03-05 06:55:33', 1),
(6209, 3674, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-05 08:53:07', 1),
(6210, 3674, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-05 08:53:07', 1),
(6211, 3674, 8, 'Confidence Level', 3, 'good', 8, '2021-03-05 08:53:07', 1),
(6212, 3674, 8, 'patience', 3, 'yes', 8, '2021-03-05 08:53:07', 1),
(6213, 3666, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-05 09:04:52', 1),
(6214, 3666, 8, 'Convincing Skills', 3, 'okay', 8, '2021-03-05 09:04:52', 1),
(6215, 3666, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-05 09:04:52', 1),
(6216, 3666, 8, 'Existing Experience Analyze', 3, 'good', 8, '2021-03-05 09:04:52', 1),
(6217, 3666, 40, 'Appearance', 2, 'Not professional', 40, '2021-03-06 08:53:10', 1),
(6218, 3666, 40, 'Attitude', 2, 'Week', 40, '2021-03-06 08:53:10', 1),
(6219, 3666, 40, 'Communication (English)', 4, 'Good in ', 40, '2021-03-06 08:53:10', 1),
(6220, 3666, 40, 'Communication (Tamil)', 3, 'Ok', 40, '2021-03-06 08:53:10', 1),
(6221, 3666, 40, 'Convincing Skills', 1, 'Zero knowledge', 40, '2021-03-06 08:53:10', 1),
(6222, 3666, 40, 'Confidence Level', 2, 'Not upto the mark', 40, '2021-03-06 08:53:10', 1),
(6223, 3666, 40, 'Importance Of Job', 3, 'Not a sustainer', 40, '2021-03-06 08:53:10', 1),
(6224, 3666, 40, 'Observation Skills', 2, 'Week', 40, '2021-03-06 08:53:10', 1),
(6225, 3666, 40, 'Pressure Handling', 1, 'Zero', 40, '2021-03-06 08:53:10', 1),
(6226, 3666, 40, 'patience', 1, 'No', 40, '2021-03-06 08:53:10', 1),
(6227, 3666, 40, 'Sustainability', 1, 'No', 40, '2021-03-06 08:53:10', 1),
(6228, 3666, 40, 'Sales Experience', 1, 'No', 40, '2021-03-06 08:53:10', 1),
(6229, 3666, 40, 'Existing Experience Analyze', 1, 'No', 40, '2021-03-06 08:53:10', 1),
(6230, 3666, 40, 'Practical Challenges Outcome', 1, 'Zero knowledge', 40, '2021-03-06 08:53:10', 1),
(6231, 3666, 40, 'Willing To Work On Holidays', 1, 'No', 40, '2021-03-06 08:53:10', 1),
(6232, 3410, 40, 'Appearance', 4, 'Professional Attire', 40, '2021-03-06 08:56:03', 1),
(6233, 3410, 40, 'Attitude', 4, 'Good', 40, '2021-03-06 08:56:03', 1),
(6234, 3410, 40, 'Communication (English)', 2, 'Average', 40, '2021-03-06 08:56:03', 1),
(6235, 3410, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-03-06 08:56:03', 1),
(6236, 3410, 40, 'Convincing Skills', 4, 'Seems good', 40, '2021-03-06 08:56:03', 1),
(6237, 3410, 40, 'Confidence Level', 4, 'Yes', 40, '2021-03-06 08:56:03', 1),
(6238, 3410, 40, 'Importance Of Job', 5, 'Immediate joiner', 40, '2021-03-06 08:56:03', 1),
(6239, 3410, 40, 'Observation Skills', 4, 'Good', 40, '2021-03-06 08:56:03', 1),
(6240, 3410, 40, 'Pressure Handling', 4, 'Good', 40, '2021-03-06 08:56:03', 1),
(6241, 3410, 40, 'patience', 4, 'Above Average', 40, '2021-03-06 08:56:03', 1),
(6242, 3410, 40, 'Sustainability', 4, 'Looks like sustainer', 40, '2021-03-06 08:56:03', 1),
(6243, 3410, 40, 'Sales Experience', 4, '7 years of exp', 40, '2021-03-06 08:56:03', 1),
(6244, 3410, 40, 'Existing Experience Analyze', 4, 'Good ratio', 40, '2021-03-06 08:56:03', 1),
(6245, 3410, 40, 'Practical Challenges Outcome', 4, 'Ok', 40, '2021-03-06 08:56:03', 1),
(6246, 3410, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-03-06 08:56:03', 1),
(6247, 3442, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-06 12:12:00', 1),
(6248, 3442, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-06 12:12:00', 1),
(6249, 3442, 8, 'Sales Experience', 3, 'around 5 yrs of sales Exp', 8, '2021-03-06 12:12:00', 1),
(6250, 3659, 8, 'Appearance', 2, 'looks very matured', 8, '2021-03-06 12:15:44', 1),
(6251, 3659, 8, 'Sustainability', 2, 'planning to do higher study', 8, '2021-03-06 12:15:44', 1),
(6252, 3675, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-03-06 12:52:52', 1),
(6253, 3675, 13, 'Confidence Level', 4, 'good', 13, '2021-03-06 12:52:52', 1),
(6254, 3442, 40, 'Appearance', 2, 'Not in a professional attire', 40, '2021-03-06 12:55:55', 1),
(6255, 3442, 40, 'Attitude', 4, 'Good', 40, '2021-03-06 12:55:55', 1),
(6256, 3442, 40, 'Communication (English)', 4, 'Average', 40, '2021-03-06 12:55:55', 1),
(6257, 3442, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-03-06 12:55:55', 1),
(6258, 3442, 40, 'Convincing Skills', 2, 'Not upto the mark', 40, '2021-03-06 12:55:55', 1),
(6259, 3442, 40, 'Confidence Level', 3, 'Ok', 40, '2021-03-06 12:55:55', 1),
(6260, 3442, 40, 'Importance Of Job', 3, 'Commitment having ', 40, '2021-03-06 12:55:55', 1),
(6261, 3442, 40, 'Observation Skills', 2, 'Below Average', 40, '2021-03-06 12:55:55', 1),
(6262, 3442, 40, 'Pressure Handling', 3, 'Doubtful', 40, '2021-03-06 12:55:55', 1),
(6263, 3442, 40, 'patience', 3, 'Doubtful', 40, '2021-03-06 12:55:55', 1),
(6264, 3442, 40, 'Sustainability', 4, 'Seems like a long runner', 40, '2021-03-06 12:55:55', 1),
(6265, 3442, 40, 'Sales Experience', 3, '6 years of exp', 40, '2021-03-06 12:55:55', 1),
(6266, 3442, 40, 'Existing Experience Analyze', 3, 'Ok', 40, '2021-03-06 12:55:55', 1),
(6267, 3442, 40, 'Practical Challenges Outcome', 2, 'Below Average', 40, '2021-03-06 12:55:55', 1),
(6268, 3442, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-03-06 12:55:55', 1),
(6269, 3682, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-06 03:32:28', 1),
(6270, 3682, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-06 03:32:28', 1),
(6271, 3682, 8, 'Confidence Level', 3, 'good', 8, '2021-03-06 03:32:28', 1),
(6272, 3682, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-06 03:32:28', 1),
(6273, 3682, 8, 'Existing Experience Analyze', 3, 'good', 8, '2021-03-06 03:32:28', 1),
(6274, 3684, 8, 'Communication (English)', 3, 'below avg', 8, '2021-03-06 03:34:32', 1),
(6275, 3684, 8, 'Convincing Skills', 2, 'not upto the level', 8, '2021-03-06 03:34:32', 1),
(6276, 3684, 8, 'Sustainability', 2, 'need to check', 8, '2021-03-06 03:34:32', 1),
(6277, 3684, 8, 'Sales Experience', 3, 'yes completely in card sales', 8, '2021-03-06 03:34:32', 1),
(6278, 3680, 8, 'Communication (Tamil)', 4, 'good', 8, '2021-03-06 03:37:52', 1),
(6279, 3680, 8, 'convincing Skills', 3, 'good', 8, '2021-03-06 03:37:52', 1),
(6280, 3680, 8, 'Importance (Job)', 3, 'yes', 8, '2021-03-06 03:37:52', 1),
(6281, 3682, 40, 'Appearance', 4, 'Good', 40, '2021-03-06 04:27:18', 1),
(6282, 3682, 40, 'Attitude', 3, 'Average', 40, '2021-03-06 04:27:18', 1),
(6283, 3682, 40, 'Communication (English)', 4, 'Average', 40, '2021-03-06 04:27:18', 1),
(6284, 3682, 40, 'Communication (Tamil)', 4, 'Good', 40, '2021-03-06 04:27:18', 1),
(6285, 3682, 40, 'Convincing Skills', 2, 'Not upto the mark', 40, '2021-03-06 04:27:18', 1),
(6286, 3682, 40, 'Confidence Level', 3, 'Neutral', 40, '2021-03-06 04:27:18', 1),
(6287, 3682, 40, 'Importance Of Job', 3, 'Not a sustainer', 40, '2021-03-06 04:27:18', 1),
(6288, 3682, 40, 'Observation Skills', 2, 'Below average', 40, '2021-03-06 04:27:18', 1),
(6289, 3682, 40, 'Pressure Handling', 3, 'Not upto the mark', 40, '2021-03-06 04:27:18', 1),
(6290, 3682, 40, 'patience', 2, 'No', 40, '2021-03-06 04:27:18', 1),
(6291, 3682, 40, 'Sustainability', 3, 'Doubtful', 40, '2021-03-06 04:27:18', 1),
(6292, 3682, 40, 'Sales Experience', 3, 'Doubtful', 40, '2021-03-06 04:27:18', 1),
(6293, 3682, 40, 'Existing Experience Analyze', 3, 'Ok', 40, '2021-03-06 04:27:18', 1),
(6294, 3682, 40, 'Practical Challenges Outcome', 2, 'No', 40, '2021-03-06 04:27:18', 1),
(6295, 3682, 40, 'Willing To Work On Holidays', 3, 'Dobutful', 40, '2021-03-06 04:27:18', 1),
(6296, 3684, 40, 'Appearance', 2, 'no', 40, '2021-03-06 04:31:51', 1),
(6297, 3684, 40, 'Attitude', 1, 'zero', 40, '2021-03-06 04:31:51', 1),
(6298, 3684, 40, 'Communication (English)', 1, 'zero', 40, '2021-03-06 04:31:51', 1),
(6299, 3684, 40, 'Communication (Tamil)', 5, 'good', 40, '2021-03-06 04:31:51', 1),
(6300, 3684, 40, 'Convincing Skills', 2, 'zero knowledge', 40, '2021-03-06 04:31:51', 1),
(6301, 3684, 40, 'Confidence Level', 4, 'yes he is', 40, '2021-03-06 04:31:51', 1),
(6302, 3684, 40, 'Importance Of Job', 3, 'doubtful', 40, '2021-03-06 04:31:51', 1),
(6303, 3684, 40, 'Observation Skills', 2, 'Zero', 40, '2021-03-06 04:31:51', 1),
(6304, 3684, 40, 'Pressure Handling', 3, 'not having knowledge in insurance industry', 40, '2021-03-06 04:31:51', 1),
(6305, 3684, 40, 'patience', 3, 'above average', 40, '2021-03-06 04:31:51', 1),
(6306, 3684, 40, 'Sustainability', 2, 'Doubtful', 40, '2021-03-06 04:31:51', 1),
(6307, 3684, 40, 'Sales Experience', 3, 'he is having', 40, '2021-03-06 04:31:51', 1),
(6308, 3684, 40, 'Existing Experience Analyze', 4, 'Good in credit care sales and having proper knowledge', 40, '2021-03-06 04:31:51', 1),
(6309, 3684, 40, 'Practical Challenges Outcome', 2, 'No', 40, '2021-03-06 04:31:51', 1),
(6310, 3684, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-03-06 04:31:51', 1),
(6311, 3410, 18, 'Appearance', 3, 'Ok', 18, '2021-03-06 04:41:17', 1),
(6312, 3410, 18, 'Attitude', 4, 'Good', 18, '2021-03-06 04:41:17', 1),
(6313, 3410, 18, 'Communication (English)', 3, 'Average', 18, '2021-03-06 04:41:17', 1),
(6314, 3410, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-03-06 04:41:17', 1),
(6315, 3410, 18, 'Convincing Skills', 4, 'Good', 18, '2021-03-06 04:41:17', 1),
(6316, 3410, 18, 'Confidence Level', 4, 'Good', 18, '2021-03-06 04:41:17', 1),
(6317, 3410, 18, 'Importance Of Job', 4, 'Highly needed', 18, '2021-03-06 04:41:17', 1),
(6318, 3410, 18, 'Observation Skills', 4, 'Good', 18, '2021-03-06 04:41:17', 1),
(6319, 3410, 18, 'Pressure Handling', 4, 'To a good extent', 18, '2021-03-06 04:41:17', 1),
(6320, 3410, 18, 'patience', 4, 'Good', 18, '2021-03-06 04:41:17', 1),
(6321, 3410, 18, 'Sustainability', 4, 'Can look for long term', 18, '2021-03-06 04:41:17', 1),
(6322, 3410, 18, 'Sales Experience', 4, 'Good', 18, '2021-03-06 04:41:17', 1),
(6323, 3410, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-03-06 04:41:17', 1),
(6324, 3689, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-08 12:25:03', 1),
(6325, 3689, 8, 'Communication (Tamil)', 4, 'good', 8, '2021-03-08 12:25:03', 1),
(6326, 3689, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-08 12:25:03', 1),
(6327, 3689, 8, 'Confidence Level', 3, 'good', 8, '2021-03-08 12:25:03', 1),
(6328, 3689, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-08 12:25:03', 1),
(6329, 3689, 8, 'Existing Experience Analyze', 3, 'good', 8, '2021-03-08 12:25:03', 1),
(6330, 3693, 8, 'Communication (Tamil)', 4, 'good', 8, '2021-03-08 12:26:35', 1),
(6331, 3693, 8, 'convincing Skills', 4, 'good', 8, '2021-03-08 12:26:35', 1),
(6332, 3693, 8, 'Importance (Job)', 3, 'yes', 8, '2021-03-08 12:26:35', 1),
(6333, 3693, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-03-08 04:39:35', 1),
(6334, 3693, 13, 'Confidence Level', 4, 'good', 13, '2021-03-08 04:39:35', 1),
(6335, 3696, 8, 'Communication (Tamil)', 2, 'good', 8, '2021-03-08 04:43:54', 1),
(6336, 3696, 8, 'Convincing Skills', 3, 'okay', 8, '2021-03-08 04:43:54', 1),
(6337, 3696, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-08 04:43:54', 1),
(6338, 3695, 8, 'Sustainability', 2, 'need to check', 8, '2021-03-08 04:53:43', 1),
(6339, 3693, 8, 'Communication (Tamil)', 4, 'good and bold', 8, '2021-03-08 04:54:43', 1),
(6340, 3714, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-09 11:11:19', 1),
(6341, 3714, 8, 'Convincing Skills', 3, 'okay', 8, '2021-03-09 11:11:19', 1),
(6342, 3714, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-09 11:11:19', 1),
(6343, 3694, 13, 'Pressure Handling', 2, 'low', 13, '2021-03-09 11:25:31', 1),
(6344, 3694, 13, 'Sustainability', 2, 'less', 13, '2021-03-09 11:25:31', 1),
(6345, 3723, 8, 'Communication (English)', 3, 'okay', 8, '2021-03-09 02:52:47', 1),
(6346, 3723, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-09 02:52:47', 1),
(6347, 3723, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-09 02:52:47', 1),
(6348, 3719, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-09 03:11:55', 1),
(6349, 3719, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-09 03:11:55', 1),
(6350, 3719, 8, 'Sustainability', 2, 'need to check', 8, '2021-03-09 03:11:55', 1),
(6351, 3716, 8, 'Communication (Tamil)', 3, 'okay but little bit local slang', 8, '2021-03-09 03:13:28', 1),
(6352, 3716, 8, 'Pressure Handling', 3, 'need to check', 8, '2021-03-09 03:13:28', 1),
(6353, 3716, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-09 03:13:28', 1),
(6354, 3716, 8, 'Willing To Work On Holidays', 3, 'yes', 8, '2021-03-09 03:13:28', 1),
(6355, 3715, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-09 03:16:51', 1),
(6356, 3715, 8, 'Confidence Level', 2, 'not up to the level', 8, '2021-03-09 03:16:51', 1),
(6357, 3729, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-09 06:25:27', 1),
(6358, 3729, 8, 'convincing Skills', 3, 'okay', 8, '2021-03-09 06:25:27', 1),
(6359, 3729, 8, 'Sustainability', 2, 'no', 8, '2021-03-09 06:25:27', 1),
(6360, 3727, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-09 06:26:13', 1),
(6361, 3727, 8, 'Sustainability', 2, 'no', 8, '2021-03-09 06:26:13', 1),
(6362, 3721, 8, 'Appearance', 2, 'poor', 8, '2021-03-09 06:28:40', 1),
(6363, 3721, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-09 06:28:40', 1),
(6364, 3722, 8, 'Sustainability', 1, 'no', 8, '2021-03-09 06:30:17', 1),
(6365, 3323, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-03-09 06:49:38', 1),
(6366, 3323, 13, 'convincing Skills', 4, 'good', 13, '2021-03-09 06:49:38', 1),
(6367, 3623, 33, 'Appearance', 3, 'Average', 33, '2021-03-10 10:58:28', 1),
(6368, 3736, 8, 'Attitude', 3, 'good', 8, '2021-03-10 11:15:19', 1),
(6369, 3736, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-10 11:15:19', 1),
(6370, 3736, 8, 'Convincing Skills', 3, 'yes convincing', 8, '2021-03-10 11:15:19', 1),
(6371, 3736, 8, 'Sustainability', 3, 'yes', 8, '2021-03-10 11:15:19', 1),
(6372, 3623, 40, 'Appearance', 3, 'Not like a professional', 40, '2021-03-10 11:53:26', 1),
(6373, 3623, 40, 'Attitude', 4, 'Good', 40, '2021-03-10 11:53:26', 1),
(6374, 3623, 40, 'Communication (English)', 1, 'Zero', 40, '2021-03-10 11:53:26', 1),
(6375, 3623, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-03-10 11:53:26', 1),
(6376, 3623, 40, 'Convincing Skills', 2, 'Not upto the mark fresher', 40, '2021-03-10 11:53:26', 1),
(6377, 3623, 40, 'Confidence Level', 4, 'Average', 40, '2021-03-10 11:53:26', 1),
(6378, 3623, 40, 'Importance Of Job', 4, 'Yes immediate', 40, '2021-03-10 11:53:26', 1),
(6379, 3623, 40, 'Observation Skills', 2, 'Below average', 40, '2021-03-10 11:53:26', 1),
(6380, 3623, 40, 'Pressure Handling', 2, 'Fresher for sale', 40, '2021-03-10 11:53:26', 1),
(6381, 3623, 40, 'patience', 3, 'Neutral', 40, '2021-03-10 11:53:26', 1),
(6382, 3623, 40, 'Sustainability', 4, 'Ok for 2 years Contract', 40, '2021-03-10 11:53:26', 1),
(6383, 3623, 40, 'Sales Experience', 1, '5 months exp in sales', 40, '2021-03-10 11:53:26', 1),
(6384, 3623, 40, 'Existing Experience Analyze', 2, 'Doubtful', 40, '2021-03-10 11:53:26', 1),
(6385, 3623, 40, 'Practical Challenges Outcome', 2, 'Below average', 40, '2021-03-10 11:53:26', 1),
(6386, 3623, 40, 'Willing To Work On Holidays', 5, 'He would', 40, '2021-03-10 11:53:26', 1),
(6387, 3739, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-10 12:12:37', 1),
(6388, 3739, 8, 'Convincing Skills', 4, 'good', 8, '2021-03-10 12:12:37', 1),
(6389, 3739, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-10 12:12:37', 1),
(6390, 3739, 8, 'Sales Experience', 3, '6m in hdfc', 8, '2021-03-10 12:12:37', 1),
(6391, 3750, 8, 'Communication (English)', 2, 'avg', 8, '2021-03-10 05:51:02', 1),
(6392, 3750, 8, 'convincing Skills', 2, 'avg', 8, '2021-03-10 05:51:02', 1),
(6393, 3749, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-10 05:54:38', 1),
(6394, 3749, 8, 'Confidence Level', 3, 'good', 8, '2021-03-10 05:54:38', 1),
(6395, 3749, 8, 'Importance Of Job', 4, 'no parents', 8, '2021-03-10 05:54:38', 1),
(6396, 3749, 8, 'Sustainability', 4, 'okay with bond', 8, '2021-03-10 05:54:38', 1),
(6397, 3745, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-10 06:02:49', 1),
(6398, 3745, 8, 'patience', 3, 'yes', 8, '2021-03-10 06:02:49', 1),
(6399, 3745, 8, 'Existing Experience Analyze', 3, 'good. completely in pharma', 8, '2021-03-10 06:02:49', 1),
(6400, 3732, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-10 06:34:43', 1),
(6401, 3732, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-10 06:34:43', 1),
(6402, 3732, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-10 06:34:43', 1),
(6403, 3732, 8, 'Importance Of Job', 3, 'Recently shifted to chennaii', 8, '2021-03-10 06:34:43', 1),
(6404, 3732, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-10 06:34:43', 1),
(6405, 3736, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-03-10 06:45:03', 1),
(6406, 3736, 13, 'Confidence Level', 4, 'good', 13, '2021-03-10 06:45:03', 1),
(6407, 3761, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-11 12:32:04', 1),
(6408, 3761, 8, 'convincing Skills', 3, 'good', 8, '2021-03-11 12:32:04', 1),
(6409, 3761, 8, 'Importance (Job)', 3, 'yes', 8, '2021-03-11 12:32:04', 1),
(6410, 3762, 8, 'Communication (Tamil)', 4, 'good', 8, '2021-03-11 12:32:48', 1),
(6411, 3762, 8, 'convincing Skills', 4, 'good', 8, '2021-03-11 12:32:48', 1),
(6412, 3762, 8, 'Importance (Job)', 3, 'yes', 8, '2021-03-11 12:32:48', 1),
(6413, 3763, 8, 'Attitude', 3, 'good', 8, '2021-03-11 01:10:47', 1),
(6414, 3763, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-11 01:10:47', 1),
(6415, 3763, 8, 'Importance (Job)', 3, 'yes', 8, '2021-03-11 01:10:47', 1),
(6416, 3763, 8, 'Sustainability', 3, 'yes', 8, '2021-03-11 01:10:47', 1),
(6417, 3772, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-11 04:57:42', 1),
(6418, 3772, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-11 04:57:42', 1),
(6419, 3772, 8, 'Convincing Skills', 4, 'good', 8, '2021-03-11 04:57:42', 1),
(6420, 3772, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-11 04:57:42', 1),
(6421, 3768, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-11 05:08:08', 1),
(6422, 3768, 8, 'Convincing Skills', 4, 'good', 8, '2021-03-11 05:08:08', 1),
(6423, 3768, 8, 'Confidence Level', 3, 'good', 8, '2021-03-11 05:08:08', 1),
(6424, 3768, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-11 05:08:08', 1),
(6425, 3764, 13, 'convincing Skills', 2, 'less', 13, '2021-03-11 06:41:49', 1),
(6426, 3764, 13, 'Confidence Level', 3, 'ok', 13, '2021-03-11 06:41:49', 1),
(6427, 3761, 13, 'Communication (English)', 4, 'good', 13, '2021-03-11 06:46:37', 1),
(6428, 3761, 13, 'convincing Skills', 4, 'good', 13, '2021-03-11 06:46:37', 1),
(6429, 3762, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-03-11 06:47:23', 1),
(6430, 3762, 13, 'convincing Skills', 4, 'good', 13, '2021-03-11 06:47:23', 1),
(6431, 3768, 36, 'Confidence Level', 4, 'OK', 36, '2021-03-12 11:04:35', 1),
(6432, 3732, 33, 'Appearance', 4, 'Good', 33, '2021-03-12 11:27:30', 1),
(6433, 3732, 33, 'Communication (English)', 4, 'Good', 33, '2021-03-12 11:27:30', 1),
(6434, 3732, 33, 'Communication (Tamil)', 4, 'Good', 33, '2021-03-12 11:27:30', 1),
(6435, 3732, 33, 'Sales Experience', 3, 'Having insurance experience', 33, '2021-03-12 11:27:30', 1),
(6436, 3745, 33, 'Appearance', 3, 'Good', 33, '2021-03-12 11:29:50', 1),
(6437, 3784, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-12 01:38:18', 1),
(6438, 3784, 8, 'convincing Skills', 3, 'good', 8, '2021-03-12 01:38:18', 1),
(6439, 3784, 8, 'Importance (Job)', 3, 'yes', 8, '2021-03-12 01:38:18', 1),
(6440, 3784, 8, 'Pressure Handling', 3, 'no sales exp', 8, '2021-03-12 01:38:18', 1),
(6441, 3782, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-12 01:39:20', 1),
(6442, 3782, 8, 'Confidence Level', 3, 'too good', 8, '2021-03-12 01:39:20', 1),
(6443, 3782, 8, 'Importance (Job)', 3, 'yes', 8, '2021-03-12 01:39:20', 1),
(6444, 3768, 18, 'Attitude', 3, 'Good', 18, '2021-03-12 03:19:00', 1),
(6445, 3768, 18, 'Communication (English)', 3, 'Average', 18, '2021-03-12 03:19:00', 1),
(6446, 3768, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-03-12 03:19:00', 1),
(6447, 3768, 18, 'Convincing Skills', 3, 'Managable', 18, '2021-03-12 03:19:00', 1),
(6448, 3768, 18, 'Importance Of Job', 5, 'Highly required', 18, '2021-03-12 03:19:00', 1),
(6449, 3768, 18, 'Sustainability', 4, 'Yes', 18, '2021-03-12 03:19:00', 1),
(6450, 3768, 18, 'Sales Experience', 2, 'Average', 18, '2021-03-12 03:19:00', 1),
(6451, 3784, 13, 'Communication (English)', 4, 'good', 13, '2021-03-12 05:23:44', 1),
(6452, 3784, 13, 'Confidence Level', 4, 'good', 13, '2021-03-12 05:23:44', 1),
(6453, 3752, 34, 'Appearance', 4, 'good', 34, '2021-03-12 05:26:14', 1),
(6454, 3752, 34, 'Attitude', 4, 'good', 34, '2021-03-12 05:26:14', 1),
(6455, 3752, 34, 'Communication (English)', 3, 'average', 34, '2021-03-12 05:26:14', 1),
(6456, 3752, 34, 'Communication (Tamil)', 5, 'good i n tamil', 34, '2021-03-12 05:26:14', 1),
(6457, 3752, 34, 'Convincing Skills', 4, 'good convincing skills', 34, '2021-03-12 05:26:14', 1),
(6458, 3752, 34, 'Confidence Level', 4, 'good', 34, '2021-03-12 05:26:14', 1),
(6459, 3752, 34, 'Existing Experience Analyze', 4, 'not bad', 34, '2021-03-12 05:26:14', 1),
(6460, 3752, 34, 'Importance Of Job', 4, 'good', 34, '2021-03-12 05:26:14', 1),
(6461, 3752, 34, 'Observation Skills', 4, 'good', 34, '2021-03-12 05:26:14', 1),
(6462, 3752, 34, 'patience', 4, 'good', 34, '2021-03-12 05:26:14', 1),
(6463, 3752, 34, 'Pressure Handling', 4, 'good in pressure handling', 34, '2021-03-12 05:26:14', 1),
(6464, 3752, 34, 'Practical Challenges Outcome', 4, 'not bad', 34, '2021-03-12 05:26:14', 1),
(6465, 3752, 34, 'Sustainability', 3, 'average', 34, '2021-03-12 05:26:14', 1),
(6466, 3752, 34, 'Sales Experience', 4, 'good', 34, '2021-03-12 05:26:14', 1),
(6467, 3752, 34, 'Willing To Work On Holidays', 5, 'surely he will work on sundays', 34, '2021-03-12 05:26:14', 1),
(6468, 3782, 13, 'Communication (Tamil)', 2, 'low', 13, '2021-03-12 05:27:56', 1),
(6469, 3782, 13, 'convincing Skills', 2, 'less', 13, '2021-03-12 05:27:56', 1),
(6470, 3789, 8, 'Communication (English)', 3, 'Manageable', 8, '2021-03-12 05:50:06', 1),
(6471, 3789, 8, 'Communication (Tamil)', 3, 'okAY', 8, '2021-03-12 05:50:06', 1),
(6472, 3789, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-12 05:50:06', 1),
(6473, 3789, 8, 'Sales Experience', 3, 'yes but not Relevant', 8, '2021-03-12 05:50:06', 1),
(6474, 3798, 8, 'Communication (English)', 3, 'Manageable', 8, '2021-03-13 11:39:35', 1),
(6475, 3798, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-13 11:39:35', 1),
(6476, 3798, 8, 'Confidence Level', 3, 'good', 8, '2021-03-13 11:39:35', 1),
(6477, 3798, 8, 'Sustainability', 2, 'need to  check.', 8, '2021-03-13 11:39:35', 1),
(6478, 3757, 8, 'convincing Skills', 3, 'okay', 8, '2021-03-13 11:41:02', 1),
(6479, 3757, 8, 'Confidence Level', 2, 'low', 8, '2021-03-13 11:41:02', 1),
(6480, 3757, 8, 'Importance (Job)', 2, 'no', 8, '2021-03-13 11:41:02', 1),
(6481, 3757, 8, 'Pressure Handling', 2, 'no', 8, '2021-03-13 11:41:02', 1),
(6482, 3680, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-03-13 05:03:35', 1),
(6483, 3680, 13, 'convincing Skills', 4, 'good', 13, '2021-03-13 05:03:35', 1),
(6484, 3801, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-13 05:13:31', 1),
(6485, 3803, 8, 'Observation Skills', 1, 'poor', 8, '2021-03-13 05:42:28', 1),
(6486, 3803, 8, 'Existing Experience Analyze', 2, 'no', 8, '2021-03-13 05:42:28', 1),
(6487, 3638, 29, 'Convincing Skills', 2, 'can do better', 29, '2021-03-13 07:29:29', 1),
(6488, 3638, 29, 'Observation Skills', 2, 'is keen to explore option', 29, '2021-03-13 07:29:29', 1),
(6489, 3638, 29, 'Sales Experience', 3, 'has Relevant experience ', 29, '2021-03-13 07:29:29', 1),
(6490, 3623, 18, 'Appearance', 2, 'Average', 18, '2021-03-15 01:26:41', 1),
(6491, 3623, 18, 'Attitude', 4, 'Good', 18, '2021-03-15 01:26:41', 1),
(6492, 3623, 18, 'Communication (English)', 4, 'Good', 18, '2021-03-15 01:26:41', 1),
(6493, 3623, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-03-15 01:26:41', 1),
(6494, 3623, 18, 'Convincing Skills', 3, 'Ok', 18, '2021-03-15 01:26:41', 1),
(6495, 3623, 18, 'Confidence Level', 2, 'Average', 18, '2021-03-15 01:26:41', 1),
(6496, 3623, 18, 'Importance Of Job', 5, 'Highly required', 18, '2021-03-15 01:26:41', 1),
(6497, 3623, 18, 'Observation Skills', 3, 'Ok', 18, '2021-03-15 01:26:41', 1),
(6498, 3623, 18, 'Sustainability', 3, 'Need to reconform in first 7 days', 18, '2021-03-15 01:26:41', 1),
(6499, 3623, 18, 'Sales Experience', 2, 'Average', 18, '2021-03-15 01:26:41', 1),
(6500, 3827, 8, 'Communication (English)', 2, 'below avg', 8, '2021-03-15 01:42:23', 1),
(6501, 3827, 8, 'Communication (Tamil)', 3, 'okay, but little bit loCAL SLANG', 8, '2021-03-15 01:42:23', 1),
(6502, 3827, 8, 'Existing Experience Analyze', 3, 'okay', 8, '2021-03-15 01:42:23', 1),
(6503, 3827, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-15 01:42:23', 1),
(6504, 3827, 8, 'Willing To Work On Holidays', 3, 'yes', 8, '2021-03-15 01:42:23', 1),
(6505, 1585, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-15 06:10:05', 1),
(6506, 1585, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-15 06:10:05', 1),
(6507, 1585, 8, 'Confidence Level', 3, 'good', 8, '2021-03-15 06:10:05', 1),
(6508, 1585, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-15 06:10:05', 1),
(6509, 1598, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-15 06:11:03', 1),
(6510, 1598, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-15 06:11:03', 1),
(6511, 1598, 8, 'Confidence Level', 3, 'good', 8, '2021-03-15 06:11:03', 1),
(6512, 1598, 8, 'Importance Of Job', 4, 'yes', 8, '2021-03-15 06:11:03', 1),
(6513, 1598, 8, 'Sustainability', 2, 'check', 8, '2021-03-15 06:11:03', 1),
(6514, 3835, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-15 06:13:16', 1),
(6515, 3835, 8, 'Confidence Level', 2, 'avg', 8, '2021-03-15 06:13:16', 1),
(6516, 3835, 8, 'Importance Of Job', 3, 'yes+\n', 8, '2021-03-15 06:13:16', 1),
(6517, 3825, 17, 'Appearance', 3, 'okay', 17, '2021-03-16 10:28:51', 1),
(6518, 3825, 17, 'Attitude', 3, 'okay', 17, '2021-03-16 10:28:51', 1),
(6519, 3825, 17, 'Communication (English)', 3, 'okay', 17, '2021-03-16 10:28:51', 1),
(6520, 3825, 17, 'Communication (Tamil)', 4, 'good', 17, '2021-03-16 10:28:51', 1),
(6521, 3825, 17, 'Convincing Skills', 3, 'okay', 17, '2021-03-16 10:28:51', 1),
(6522, 3825, 17, 'Confidence Level', 3, 'okay', 17, '2021-03-16 10:28:51', 1),
(6523, 3825, 17, 'Existing Experience Analyze', 3, 'Not in sales ', 17, '2021-03-16 10:28:51', 1),
(6524, 3825, 17, 'Importance Of Job', 4, 'Finance need ', 17, '2021-03-16 10:28:51', 1),
(6525, 3825, 17, 'Observation Skills', 3, 'okay', 17, '2021-03-16 10:28:51', 1),
(6526, 3825, 17, 'patience', 3, 'okay', 17, '2021-03-16 10:28:51', 1),
(6527, 3825, 17, 'Pressure Handling', 3, 'okay', 17, '2021-03-16 10:28:51', 1),
(6528, 3825, 17, 'Practical Challenges Outcome', 3, 'okay', 17, '2021-03-16 10:28:51', 1),
(6529, 3825, 17, 'Sustainability', 3, 'Ned to check', 17, '2021-03-16 10:28:51', 1),
(6530, 3825, 17, 'Sales Experience', 3, 'existing not is sales ', 17, '2021-03-16 10:28:51', 1),
(6531, 3825, 17, 'Willing To Work On Holidays', 3, 'yes', 17, '2021-03-16 10:28:51', 1),
(6532, 3840, 8, 'Appearance', 2, 'very nervous ', 8, '2021-03-16 12:20:05', 1),
(6533, 3840, 8, 'Communication (English)', 2, 'below avg', 8, '2021-03-16 12:20:05', 1),
(6534, 3840, 8, 'Communication (Tamil)', 3, 'avg', 8, '2021-03-16 12:20:05', 1),
(6535, 3840, 8, 'Convincing Skills', 2, 'not speaking up', 8, '2021-03-16 12:20:05', 1),
(6536, 3845, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-16 05:41:05', 1),
(6537, 3845, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-16 05:41:05', 1),
(6538, 3845, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-16 05:41:05', 1),
(6539, 3845, 8, 'Sales Experience', 2, 'no', 8, '2021-03-16 05:41:05', 1),
(6540, 1585, 19, 'Sustainability', 1, 'NOT FIT FOR SALES', 19, '2021-03-17 01:15:39', 1),
(6541, 1598, 19, 'Sustainability', 1, 'Not Fit For Sale', 19, '2021-03-17 01:16:16', 1),
(6542, 3745, 18, 'Appearance', 3, 'Ok', 18, '2021-03-17 03:53:23', 1),
(6543, 3745, 18, 'Attitude', 3, 'Average', 18, '2021-03-17 03:53:23', 1),
(6544, 3745, 18, 'Communication (English)', 4, 'Good', 18, '2021-03-17 03:53:23', 1),
(6545, 3745, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-03-17 03:53:23', 1),
(6546, 3745, 18, 'Convincing Skills', 3, 'Ok', 18, '2021-03-17 03:53:23', 1),
(6547, 3745, 18, 'Confidence Level', 3, 'Good', 18, '2021-03-17 03:53:23', 1),
(6548, 3745, 18, 'Importance Of Job', 4, 'Highly Required', 18, '2021-03-17 03:53:23', 1),
(6549, 3745, 18, 'Observation Skills', 4, 'Good', 18, '2021-03-17 03:53:23', 1),
(6550, 3745, 18, 'Pressure Handling', 3, 'Average', 18, '2021-03-17 03:53:23', 1),
(6551, 3745, 18, 'patience', 3, 'Average', 18, '2021-03-17 03:53:23', 1),
(6552, 3745, 18, 'Sustainability', 3, 'Need to filter in the first week carefully', 18, '2021-03-17 03:53:23', 1),
(6553, 3745, 18, 'Sales Experience', 3, 'Ok but not relevant', 18, '2021-03-17 03:53:23', 1),
(6554, 3745, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-03-17 03:53:23', 1),
(6555, 3745, 18, 'Practical Challenges Outcome', 4, 'can handle with enough trainning', 18, '2021-03-17 03:53:23', 1),
(6556, 3745, 18, 'Willing To Work On Holidays', 3, 'For appointnents', 18, '2021-03-17 03:53:23', 1),
(6557, 3867, 8, 'Appearance', 2, 'not good', 8, '2021-03-17 04:55:24', 1),
(6558, 3867, 8, 'Attitude', 1, 'very poor', 8, '2021-03-17 04:55:24', 1),
(6559, 3867, 8, 'Communication (Tamil)', 2, 'poor', 8, '2021-03-17 04:55:24', 1),
(6560, 3867, 8, 'convincing Skills', 1, 'zeor', 8, '2021-03-17 04:55:24', 1),
(6561, 3867, 8, 'Importance (Job)', 3, 'yes', 8, '2021-03-17 04:55:24', 1),
(6562, 3867, 8, 'Observation skills', 1, 'zero', 8, '2021-03-17 04:55:24', 1),
(6563, 3867, 8, 'patience', 1, 'zero', 8, '2021-03-17 04:55:24', 1),
(6564, 3866, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-17 05:00:13', 1),
(6565, 3866, 8, 'Sustainability', 2, 'poor', 8, '2021-03-17 05:00:13', 1),
(6566, 3853, 8, 'Appearance', 2, 'poor, no shirt button', 8, '2021-03-17 05:06:13', 1),
(6567, 3853, 8, 'Communication (Tamil)', 3, 'Okay', 8, '2021-03-17 05:06:13', 1),
(6568, 3853, 8, 'Convincing Skills', 2, 'avg', 8, '2021-03-17 05:06:13', 1),
(6569, 3853, 8, 'Confidence Level', 2, 'not good', 8, '2021-03-17 05:06:13', 1),
(6570, 3860, 8, 'Appearance', 2, 'avg', 8, '2021-03-17 05:24:56', 1),
(6571, 3860, 8, 'Convincing Skills', 2, 'below avg', 8, '2021-03-17 05:24:56', 1),
(6572, 3860, 8, 'Confidence Level', 2, 'poor', 8, '2021-03-17 05:24:56', 1),
(6573, 3860, 8, 'Existing Experience Analyze', 2, 'poor', 8, '2021-03-17 05:24:56', 1),
(6574, 3894, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-18 04:01:03', 1),
(6575, 3894, 8, 'convincing Skills', 3, 'good', 8, '2021-03-18 04:01:03', 1),
(6576, 3894, 8, 'Importance (Job)', 3, 'yes', 8, '2021-03-18 04:01:03', 1),
(6577, 3862, 8, 'Communication (English)', 3, 'okay', 8, '2021-03-18 04:08:03', 1),
(6578, 3862, 8, 'Convincing Skills', 3, 'okay', 8, '2021-03-18 04:08:03', 1),
(6579, 3862, 8, 'Practical Challenges Outcome', 2, 'poor', 8, '2021-03-18 04:08:03', 1),
(6580, 3882, 8, 'Communication (Tamil)', 3, 'avg', 8, '2021-03-18 04:12:22', 1),
(6581, 3890, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-03-18 04:56:56', 1),
(6582, 3890, 13, 'convincing Skills', 4, 'good', 13, '2021-03-18 04:56:56', 1),
(6583, 3894, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-03-18 04:58:13', 1),
(6584, 3894, 13, 'Confidence Level', 4, 'good', 13, '2021-03-18 04:58:13', 1),
(6585, 3893, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-18 05:29:33', 1),
(6586, 3893, 8, 'Confidence Level', 3, 'good', 8, '2021-03-18 05:29:33', 1),
(6587, 3893, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-18 05:29:33', 1),
(6588, 3893, 8, 'Sustainability', 3, 'yes', 8, '2021-03-18 05:29:33', 1),
(6589, 3897, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-18 05:58:10', 1),
(6590, 3897, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-18 05:58:10', 1),
(6591, 3897, 8, 'Existing Experience Analyze', 3, 'good', 8, '2021-03-18 05:58:10', 1),
(6592, 3897, 8, 'Importance Of Job', 3, 'high', 8, '2021-03-18 05:58:10', 1),
(6593, 3897, 8, 'Sustainability', 3, 'yes', 8, '2021-03-18 05:58:10', 1),
(6594, 3897, 8, 'Sales Experience', 3, 'good', 8, '2021-03-18 05:58:10', 1),
(6595, 3884, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-18 06:04:02', 1),
(6596, 3884, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-18 06:04:02', 1),
(6597, 3884, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-18 06:04:02', 1),
(6598, 3884, 8, 'Sales Experience', 3, 'in icici lambard', 8, '2021-03-18 06:04:02', 1),
(6599, 3901, 8, 'Attitude', 3, 'good', 8, '2021-03-19 11:55:26', 1),
(6600, 3901, 8, 'Communication (English)', 3, 'okay', 8, '2021-03-19 11:55:26', 1),
(6601, 3901, 8, 'Convincing Skills', 3, 'okay', 8, '2021-03-19 11:55:26', 1),
(6602, 3901, 8, 'Observation Skills', 3, 'good', 8, '2021-03-19 11:55:26', 1),
(6603, 3901, 8, 'patience', 3, 'good', 8, '2021-03-19 11:55:26', 1),
(6604, 3901, 8, 'Sustainability', 2, 'has to check', 8, '2021-03-19 11:55:26', 1),
(6605, 3901, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-19 11:55:26', 1),
(6606, 3914, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-19 12:16:08', 1),
(6607, 3914, 8, 'Convincing Skills', 3, 'okay', 8, '2021-03-19 12:16:08', 1),
(6608, 3914, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-19 12:16:08', 1),
(6609, 3914, 8, 'Pressure Handling', 3, 'has to check', 8, '2021-03-19 12:16:08', 1),
(6610, 3914, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-19 12:16:08', 1),
(6611, 3913, 8, 'Attitude', 3, 'okay', 8, '2021-03-19 01:02:52', 1),
(6612, 3913, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-19 01:02:52', 1),
(6613, 3913, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-19 01:02:52', 1),
(6614, 3913, 8, 'Importance Of Job', 3, 'job', 8, '2021-03-19 01:02:52', 1),
(6615, 3913, 8, 'patience', 3, 'good', 8, '2021-03-19 01:02:52', 1),
(6616, 3913, 8, 'Sustainability', 2, 'need to  check', 8, '2021-03-19 01:02:52', 1),
(6617, 3912, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-19 04:24:58', 1),
(6618, 3912, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-19 04:24:58', 1),
(6619, 3912, 8, 'Confidence Level', 3, 'good', 8, '2021-03-19 04:24:58', 1),
(6620, 3912, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-19 04:24:58', 1),
(6621, 3912, 8, 'Pressure Handling', 2, 'has to check', 8, '2021-03-19 04:24:58', 1),
(6622, 3927, 8, 'Attitude', 3, 'good', 8, '2021-03-19 04:29:25', 1),
(6623, 3927, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-19 04:29:25', 1),
(6624, 3927, 8, 'Importance (Job)', 3, 'yes', 8, '2021-03-19 04:29:25', 1),
(6625, 3927, 8, 'patience', 3, 'good', 8, '2021-03-19 04:29:25', 1),
(6626, 3921, 8, 'Communication (English)', 3, 'okay', 8, '2021-03-19 04:31:55', 1),
(6627, 3921, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-19 04:31:55', 1),
(6628, 3921, 8, 'Convincing Skills', 3, 'okay', 8, '2021-03-19 04:31:55', 1),
(6629, 3921, 8, 'patience', 3, 'good', 8, '2021-03-19 04:31:55', 1),
(6630, 3921, 8, 'Sustainability', 2, 'has to check', 8, '2021-03-19 04:31:55', 1),
(6631, 3917, 8, 'Communication (English)', 2, 'below avg', 8, '2021-03-19 04:40:31', 1),
(6632, 3917, 8, 'Convincing Skills', 2, 'not up to the level', 8, '2021-03-19 04:40:31', 1),
(6633, 3911, 8, 'Appearance', 3, 'manly', 8, '2021-03-19 04:48:09', 1),
(6634, 3911, 8, 'Communication (English)', 3, 'good', 8, '2021-03-19 04:48:09', 1),
(6635, 3911, 8, 'Importance (Job)', 4, 'yes', 8, '2021-03-19 04:48:09', 1),
(6636, 3916, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-19 04:49:14', 1),
(6637, 3732, 18, 'Appearance', 3, 'Average', 18, '2021-03-19 06:20:30', 1),
(6638, 3732, 18, 'Attitude', 4, 'Good', 18, '2021-03-19 06:20:30', 1),
(6639, 3732, 18, 'Communication (English)', 3, 'Average', 18, '2021-03-19 06:20:30', 1),
(6640, 3732, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-03-19 06:20:30', 1),
(6641, 3732, 18, 'Convincing Skills', 4, 'Good', 18, '2021-03-19 06:20:30', 1),
(6642, 3732, 18, 'Confidence Level', 4, 'Good', 18, '2021-03-19 06:20:30', 1),
(6643, 3732, 18, 'Importance Of Job', 4, 'Highly needed', 18, '2021-03-19 06:20:30', 1),
(6644, 3732, 18, 'Observation Skills', 4, 'Good', 18, '2021-03-19 06:20:30', 1),
(6645, 3732, 18, 'Pressure Handling', 3, 'Good', 18, '2021-03-19 06:20:30', 1),
(6646, 3732, 18, 'patience', 4, 'Good', 18, '2021-03-19 06:20:30', 1),
(6647, 3732, 18, 'Sustainability', 3, 'Need to check in 1st week', 18, '2021-03-19 06:20:30', 1),
(6648, 3732, 18, 'Sales Experience', 4, 'Good', 18, '2021-03-19 06:20:30', 1),
(6649, 3732, 18, 'Existing Experience Analyze', 2, 'Below Average', 18, '2021-03-19 06:20:30', 1),
(6650, 3732, 18, 'Practical Challenges Outcome', 4, 'Yes', 18, '2021-03-19 06:20:30', 1),
(6651, 3875, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-19 06:44:56', 1),
(6652, 3875, 8, 'Convincing Skills', 3, 'okay', 8, '2021-03-19 06:44:56', 1),
(6653, 3927, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-03-20 12:01:51', 1),
(6654, 3914, 34, 'Appearance', 4, 'good', 34, '2021-03-20 12:36:27', 1),
(6655, 3914, 34, 'Attitude', 4, 'good', 34, '2021-03-20 12:36:27', 1),
(6656, 3914, 34, 'Communication (English)', 4, 'average', 34, '2021-03-20 12:36:27', 1),
(6657, 3914, 34, 'Communication (Tamil)', 4, 'good', 34, '2021-03-20 12:36:27', 1),
(6658, 3914, 34, 'Convincing Skills', 4, 'good', 34, '2021-03-20 12:36:27', 1),
(6659, 3914, 34, 'Confidence Level', 4, 'good', 34, '2021-03-20 12:36:27', 1),
(6660, 3914, 34, 'Existing Experience Analyze', 4, 'average', 34, '2021-03-20 12:36:27', 1),
(6661, 3914, 34, 'Importance Of Job', 4, 'he will join immieadatey', 34, '2021-03-20 12:36:27', 1),
(6662, 3914, 34, 'Observation Skills', 4, 'ok', 34, '2021-03-20 12:36:27', 1),
(6663, 3914, 34, 'patience', 4, 'good', 34, '2021-03-20 12:36:27', 1),
(6664, 3914, 34, 'Pressure Handling', 4, 'good', 34, '2021-03-20 12:36:27', 1),
(6665, 3914, 34, 'Practical Challenges Outcome', 4, 'good', 34, '2021-03-20 12:36:27', 1),
(6666, 3914, 34, 'Sustainability', 4, 'will sustain', 34, '2021-03-20 12:36:27', 1),
(6667, 3914, 34, 'Sales Experience', 4, 'ok', 34, '2021-03-20 12:36:27', 1),
(6668, 3914, 34, 'Willing To Work On Holidays', 4, 'he will work', 34, '2021-03-20 12:36:27', 1),
(6669, 3921, 34, 'Appearance', 4, 'good', 34, '2021-03-20 12:40:26', 1),
(6670, 3921, 34, 'Attitude', 4, 'good', 34, '2021-03-20 12:40:26', 1),
(6671, 3921, 34, 'Communication (English)', 4, 'average', 34, '2021-03-20 12:40:26', 1),
(6672, 3921, 34, 'Communication (Tamil)', 5, 'good', 34, '2021-03-20 12:40:26', 1),
(6673, 3921, 34, 'Convincing Skills', 4, 'good', 34, '2021-03-20 12:40:26', 1),
(6674, 3921, 34, 'Confidence Level', 4, 'good', 34, '2021-03-20 12:40:26', 1),
(6675, 3921, 34, 'Importance Of Job', 4, 'he will join a job immedaitely', 34, '2021-03-20 12:40:26', 1),
(6676, 3921, 34, 'Observation Skills', 4, 'good', 34, '2021-03-20 12:40:26', 1),
(6677, 3921, 34, 'Pressure Handling', 4, 'ok', 34, '2021-03-20 12:40:26', 1),
(6678, 3921, 34, 'patience', 4, 'good', 34, '2021-03-20 12:40:26', 1),
(6679, 3921, 34, 'Sustainability', 4, 'he will sustain', 34, '2021-03-20 12:40:26', 1),
(6680, 3921, 34, 'Sales Experience', 3, 'ok', 34, '2021-03-20 12:40:26', 1),
(6681, 3921, 34, 'Existing Experience Analyze', 4, 'average', 34, '2021-03-20 12:40:26', 1),
(6682, 3921, 34, 'Practical Challenges Outcome', 4, 'ok', 34, '2021-03-20 12:40:26', 1),
(6683, 3921, 34, 'Willing To Work On Holidays', 4, 'he will', 34, '2021-03-20 12:40:26', 1),
(6684, 3935, 8, 'Communication (Tamil)', 3, 'no continuation while speaking', 8, '2021-03-20 01:37:27', 1),
(6685, 3935, 8, 'convincing Skills', 2, 'poor', 8, '2021-03-20 01:37:27', 1),
(6686, 3936, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-20 01:38:31', 1),
(6687, 3936, 8, 'Importance (Job)', 3, 'yes', 8, '2021-03-20 01:38:31', 1),
(6688, 3936, 8, 'Sustainability', 4, 'yes', 8, '2021-03-20 01:38:31', 1),
(6689, 3938, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-20 01:41:27', 1),
(6690, 3938, 8, 'Sustainability', 3, 'yes', 8, '2021-03-20 01:41:27', 1),
(6691, 3946, 8, 'Attitude', 3, 'good', 8, '2021-03-20 05:12:14', 1),
(6692, 3946, 8, 'Communication (Tamil)', 3, 'has native slang', 8, '2021-03-20 05:12:14', 1),
(6693, 3946, 8, 'Confidence Level', 3, 'good', 8, '2021-03-20 05:12:14', 1),
(6694, 3946, 8, 'Importance Of Job', 4, 'yes', 8, '2021-03-20 05:12:14', 1),
(6695, 3946, 8, 'patience', 3, 'good', 8, '2021-03-20 05:12:14', 1),
(6696, 3942, 8, 'Communication (Tamil)', 3, 'okay but pronunciation is not that much clear', 8, '2021-03-20 05:26:16', 1),
(6697, 3942, 8, 'Confidence Level', 3, 'good', 8, '2021-03-20 05:26:16', 1),
(6698, 3942, 8, 'Pressure Handling', 2, 'has to check', 8, '2021-03-20 05:26:16', 1),
(6699, 3942, 8, 'Sustainability', 2, 'has to check', 8, '2021-03-20 05:26:16', 1),
(6700, 3942, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-20 05:26:16', 1),
(6701, 3961, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-22 03:50:00', 1),
(6702, 3961, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-22 03:50:00', 1),
(6703, 3961, 8, 'Sustainability', 2, 'check once', 8, '2021-03-22 03:50:00', 1),
(6704, 3957, 8, 'Attitude', 2, 'poor', 8, '2021-03-22 03:51:48', 1),
(6705, 3971, 8, 'Appearance', 3, 'okay', 8, '2021-03-23 11:06:07', 1),
(6706, 3971, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-23 11:06:07', 1),
(6707, 3971, 8, 'Convincing Skills', 3, 'okay', 8, '2021-03-23 11:06:07', 1),
(6708, 3971, 8, 'Existing Experience Analyze', 3, 'Explanation Was Good', 8, '2021-03-23 11:06:07', 1),
(6709, 3971, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-23 11:06:07', 1),
(6710, 3971, 8, 'Pressure Handling', 2, 'has to check', 8, '2021-03-23 11:06:07', 1),
(6711, 3972, 8, 'Communication (Tamil)', 3, 'avg', 8, '2021-03-23 11:07:12', 1),
(6712, 3972, 8, 'Importance (Job)', 3, 'high', 8, '2021-03-23 11:07:12', 1),
(6713, 3977, 8, 'Communication (Tamil)', 4, 'good', 8, '2021-03-23 01:33:42', 1),
(6714, 3977, 8, 'Confidence Level', 3, 'good', 8, '2021-03-23 01:33:42', 1),
(6715, 3977, 8, 'Existing Experience Analyze', 3, 'good', 8, '2021-03-23 01:33:42', 1),
(6716, 3978, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-23 03:49:50', 1),
(6717, 3978, 8, 'Convincing Skills', 3, 'okay', 8, '2021-03-23 03:49:50', 1),
(6718, 3978, 8, 'Observation Skills', 2, 'need to check', 8, '2021-03-23 03:49:50', 1),
(6719, 3978, 8, 'Sustainability', 2, 'check once', 8, '2021-03-23 03:49:50', 1),
(6720, 3983, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-23 03:51:33', 1),
(6721, 3983, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-23 03:51:33', 1),
(6722, 3983, 8, 'Confidence Level', 3, 'good', 8, '2021-03-23 03:51:33', 1),
(6723, 3983, 8, 'Observation Skills', 3, 'good', 8, '2021-03-23 03:51:33', 1),
(6724, 3983, 8, 'Sustainability', 3, 'yes', 8, '2021-03-23 03:51:33', 1),
(6725, 3981, 8, 'Attitude', 2, 'talkative so check once.', 8, '2021-03-23 03:54:23', 1),
(6726, 3981, 8, 'Communication (English)', 2, 'avg', 8, '2021-03-23 03:54:23', 1),
(6727, 3981, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-23 03:54:23', 1),
(6728, 3981, 8, 'Convincing Skills', 3, 'okay', 8, '2021-03-23 03:54:23', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(6729, 3981, 8, 'Confidence Level', 3, 'good', 8, '2021-03-23 03:54:23', 1),
(6730, 3981, 8, 'Observation Skills', 2, 'no listening skill', 8, '2021-03-23 03:54:23', 1),
(6731, 3981, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-23 03:54:23', 1),
(6732, 3979, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-23 03:57:45', 1),
(6733, 3979, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-23 03:57:45', 1),
(6734, 3979, 8, 'convincing Skills', 2, 'poor', 8, '2021-03-23 03:57:45', 1),
(6735, 3979, 8, 'Sustainability', 2, '2yr kid, she is bored in home, looking for job to support her husband.', 8, '2021-03-23 03:57:45', 1),
(6736, 3975, 13, 'Pressure Handling', 1, 'low', 13, '2021-03-23 06:19:25', 1),
(6737, 3976, 13, 'Communication (Tamil)', 2, 'low', 13, '2021-03-23 06:20:58', 1),
(6738, 3976, 13, 'convincing Skills', 2, 'less', 13, '2021-03-23 06:20:58', 1),
(6739, 4003, 8, 'Communication (English)', 2, 'avg', 8, '2021-03-24 01:31:40', 1),
(6740, 4003, 8, 'Convincing Skills', 2, 'not upto the level', 8, '2021-03-24 01:31:40', 1),
(6741, 4003, 8, 'Confidence Level', 3, 'good', 8, '2021-03-24 01:31:40', 1),
(6742, 4003, 8, 'Sustainability', 2, 'check once', 8, '2021-03-24 01:31:40', 1),
(6743, 4003, 8, 'Existing Experience Analyze', 2, 'not that much clear, no clarity in his speech.', 8, '2021-03-24 01:31:40', 1),
(6744, 3993, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-24 01:34:26', 1),
(6745, 3993, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-24 01:34:26', 1),
(6746, 3993, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-24 01:34:26', 1),
(6747, 4003, 40, 'Appearance', 4, 'Ok', 40, '2021-03-24 07:43:21', 1),
(6748, 4003, 40, 'Attitude', 3, 'Good', 40, '2021-03-24 07:43:21', 1),
(6749, 4003, 40, 'Communication (English)', 2, 'Not ok', 40, '2021-03-24 07:43:21', 1),
(6750, 4003, 40, 'Communication (Tamil)', 3, 'Ok', 40, '2021-03-24 07:43:21', 1),
(6751, 4003, 40, 'Convincing Skills', 1, 'Zero', 40, '2021-03-24 07:43:21', 1),
(6752, 4003, 40, 'Confidence Level', 3, 'Neutral', 40, '2021-03-24 07:43:21', 1),
(6753, 4003, 40, 'Importance Of Job', 3, 'Not a sustainer', 40, '2021-03-24 07:43:21', 1),
(6754, 4003, 40, 'Observation Skills', 2, 'Not upto the mark', 40, '2021-03-24 07:43:21', 1),
(6755, 4003, 40, 'Pressure Handling', 1, 'Zero', 40, '2021-03-24 07:43:21', 1),
(6756, 4003, 40, 'patience', 2, 'Doubtful', 40, '2021-03-24 07:43:21', 1),
(6757, 4003, 40, 'Sustainability', 2, 'No', 40, '2021-03-24 07:43:21', 1),
(6758, 4003, 40, 'Sales Experience', 1, 'Zero', 40, '2021-03-24 07:43:21', 1),
(6759, 4003, 40, 'Existing Experience Analyze', 1, 'No', 40, '2021-03-24 07:43:21', 1),
(6760, 4003, 40, 'Practical Challenges Outcome', 1, 'No', 40, '2021-03-24 07:43:21', 1),
(6761, 4003, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-03-24 07:43:21', 1),
(6762, 3971, 17, 'Appearance', 3, 'Good', 17, '2021-03-24 08:25:04', 1),
(6763, 3971, 17, 'Attitude', 3, 'Good', 17, '2021-03-24 08:25:04', 1),
(6764, 3971, 17, 'Communication (English)', 3, 'okay', 17, '2021-03-24 08:25:04', 1),
(6765, 3971, 17, 'Communication (Tamil)', 4, 'Good', 17, '2021-03-24 08:25:04', 1),
(6766, 3971, 17, 'Convincing Skills', 4, 'good', 17, '2021-03-24 08:25:04', 1),
(6767, 3971, 17, 'Confidence Level', 3, 'okay', 17, '2021-03-24 08:25:04', 1),
(6768, 3971, 17, 'Existing Experience Analyze', 3, 'Sales', 17, '2021-03-24 08:25:04', 1),
(6769, 3971, 17, 'Importance Of Job', 4, 'good', 17, '2021-03-24 08:25:04', 1),
(6770, 3971, 17, 'Observation Skills', 3, 'good', 17, '2021-03-24 08:25:04', 1),
(6771, 3971, 17, 'patience', 3, 'good', 17, '2021-03-24 08:25:04', 1),
(6772, 3971, 17, 'Pressure Handling', 4, 'good', 17, '2021-03-24 08:25:04', 1),
(6773, 3971, 17, 'Practical Challenges Outcome', 4, 'good', 17, '2021-03-24 08:25:04', 1),
(6774, 3971, 17, 'Sustainability', 3, 'need to check', 17, '2021-03-24 08:25:04', 1),
(6775, 3971, 17, 'Sales Experience', 4, 'already in sales industry ', 17, '2021-03-24 08:25:04', 1),
(6776, 3971, 17, 'Willing To Work On Holidays', 3, 'okay', 17, '2021-03-24 08:25:04', 1),
(6777, 4033, 8, 'Attitude', 3, 'okay', 8, '2021-03-25 01:38:17', 1),
(6778, 4033, 8, 'Communication (English)', 3, 'okay', 8, '2021-03-25 01:38:17', 1),
(6779, 4033, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-25 01:38:17', 1),
(6780, 4033, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-25 01:38:17', 1),
(6781, 4033, 8, 'Confidence Level', 3, 'good', 8, '2021-03-25 01:38:17', 1),
(6782, 4033, 8, 'Sustainability', 2, 'check once', 8, '2021-03-25 01:38:17', 1),
(6783, 4033, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-25 01:38:17', 1),
(6784, 4035, 8, 'Attitude', 3, 'good', 8, '2021-03-25 01:41:45', 1),
(6785, 4035, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-25 01:41:45', 1),
(6786, 4035, 8, 'Confidence Level', 4, 'good', 8, '2021-03-25 01:41:45', 1),
(6787, 4035, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-25 01:41:45', 1),
(6788, 3295, 8, 'Attitude', 2, 'not up to the level', 8, '2021-03-25 04:28:28', 1),
(6789, 3295, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-25 04:28:28', 1),
(6790, 3295, 8, 'Sustainability', 2, 'has to check, ', 8, '2021-03-25 04:28:28', 1),
(6791, 4036, 8, 'Appearance', 3, 'good', 8, '2021-03-25 05:01:53', 1),
(6792, 4036, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-25 05:01:53', 1),
(6793, 4036, 8, 'convincing Skills', 3, 'good', 8, '2021-03-25 05:01:53', 1),
(6794, 4039, 8, 'Appearance', 2, 'avg', 8, '2021-03-25 05:13:44', 1),
(6795, 4039, 8, 'Communication (English)', 2, 'below avg', 8, '2021-03-25 05:13:44', 1),
(6796, 4039, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-25 05:13:44', 1),
(6797, 4039, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-25 05:13:44', 1),
(6798, 4039, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-25 05:13:44', 1),
(6799, 4042, 8, 'Communication (English)', 2, 'avg', 8, '2021-03-25 05:17:08', 1),
(6800, 4042, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-25 05:17:08', 1),
(6801, 4042, 8, 'Convincing Skills', 3, 'avg', 8, '2021-03-25 05:17:08', 1),
(6802, 4053, 8, 'Appearance', 3, 'okay', 8, '2021-03-26 01:22:29', 1),
(6803, 4053, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-26 01:22:29', 1),
(6804, 4053, 8, 'Confidence Level', 3, 'good', 8, '2021-03-26 01:22:29', 1),
(6805, 4053, 8, 'Sustainability', 2, 'check once', 8, '2021-03-26 01:22:29', 1),
(6806, 3956, 34, 'Appearance', 4, 'good', 34, '2021-03-26 02:50:50', 1),
(6807, 3956, 34, 'Attitude', 4, 'good', 34, '2021-03-26 02:50:50', 1),
(6808, 3956, 34, 'Communication (English)', 4, 'average', 34, '2021-03-26 02:50:50', 1),
(6809, 3956, 34, 'Communication (Tamil)', 5, 'good', 34, '2021-03-26 02:50:50', 1),
(6810, 3956, 34, 'Convincing Skills', 4, 'good', 34, '2021-03-26 02:50:50', 1),
(6811, 3956, 34, 'Confidence Level', 4, 'ok', 34, '2021-03-26 02:50:50', 1),
(6812, 3956, 34, 'Existing Experience Analyze', 4, 'good', 34, '2021-03-26 02:50:50', 1),
(6813, 3956, 34, 'Importance Of Job', 4, 'he needs job imm', 34, '2021-03-26 02:50:50', 1),
(6814, 3956, 34, 'Observation Skills', 4, 'good', 34, '2021-03-26 02:50:50', 1),
(6815, 3956, 34, 'patience', 4, 'ok', 34, '2021-03-26 02:50:50', 1),
(6816, 3956, 34, 'Pressure Handling', 4, 'ok', 34, '2021-03-26 02:50:50', 1),
(6817, 3956, 34, 'Practical Challenges Outcome', 4, 'good', 34, '2021-03-26 02:50:50', 1),
(6818, 3956, 34, 'Sustainability', 4, 'good', 34, '2021-03-26 02:50:50', 1),
(6819, 3956, 34, 'Sales Experience', 4, 'good', 34, '2021-03-26 02:50:50', 1),
(6820, 3956, 34, 'Willing To Work On Holidays', 4, 'good', 34, '2021-03-26 02:50:50', 1),
(6821, 4064, 8, 'Appearance', 3, 'okay', 8, '2021-03-26 03:11:25', 1),
(6822, 4064, 8, 'Communication (English)', 3, 'okay', 8, '2021-03-26 03:11:25', 1),
(6823, 4064, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-26 03:11:25', 1),
(6824, 4064, 8, 'Confidence Level', 3, 'good', 8, '2021-03-26 03:11:25', 1),
(6825, 4064, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-26 03:11:25', 1),
(6826, 4064, 8, 'Sales Experience', 3, 'yes', 8, '2021-03-26 03:11:25', 1),
(6827, 4064, 8, 'Practical Challenges Outcome', 2, 'poor', 8, '2021-03-26 03:11:25', 1),
(6828, 3983, 17, 'Appearance', 3, 'okay', 17, '2021-03-26 03:20:03', 1),
(6829, 3983, 17, 'Attitude', 4, 'okay', 17, '2021-03-26 03:20:03', 1),
(6830, 3983, 17, 'Communication (English)', 3, 'okay', 17, '2021-03-26 03:20:03', 1),
(6831, 3983, 17, 'Communication (Tamil)', 5, 'good', 17, '2021-03-26 03:20:03', 1),
(6832, 3983, 17, 'Convincing Skills', 2, 'okay', 17, '2021-03-26 03:20:03', 1),
(6833, 3983, 17, 'Confidence Level', 3, 'okay', 17, '2021-03-26 03:20:03', 1),
(6834, 3983, 17, 'Existing Experience Analyze', 2, 'okay', 17, '2021-03-26 03:20:03', 1),
(6835, 3983, 17, 'Importance Of Job', 4, 'Finance need ', 17, '2021-03-26 03:20:03', 1),
(6836, 3983, 17, 'Observation Skills', 3, 'okay', 17, '2021-03-26 03:20:03', 1),
(6837, 3983, 17, 'patience', 3, 'okay', 17, '2021-03-26 03:20:03', 1),
(6838, 3983, 17, 'Pressure Handling', 3, 'okay', 17, '2021-03-26 03:20:03', 1),
(6839, 3983, 17, 'Practical Challenges Outcome', 2, 'okay', 17, '2021-03-26 03:20:03', 1),
(6840, 3983, 17, 'Sustainability', 3, 'need to check ', 17, '2021-03-26 03:20:03', 1),
(6841, 3983, 17, 'Sales Experience', 2, 'fresher', 17, '2021-03-26 03:20:03', 1),
(6842, 3983, 17, 'Willing To Work On Holidays', 4, 'yes', 17, '2021-03-26 03:20:03', 1),
(6843, 4064, 40, 'Appearance', 4, 'Professional', 40, '2021-03-26 04:02:20', 1),
(6844, 4064, 40, 'Attitude', 5, 'Professional', 40, '2021-03-26 04:02:20', 1),
(6845, 4064, 40, 'Communication (English)', 5, 'Good', 40, '2021-03-26 04:02:20', 1),
(6846, 4064, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-03-26 04:02:20', 1),
(6847, 4064, 40, 'Convincing Skills', 3, 'Not having proper knowledge in sales', 40, '2021-03-26 04:02:20', 1),
(6848, 4064, 40, 'Confidence Level', 5, 'Capable to work', 40, '2021-03-26 04:02:20', 1),
(6849, 4064, 40, 'Importance Of Job', 5, 'Immediate joiner', 40, '2021-03-26 04:02:20', 1),
(6850, 4064, 40, 'Observation Skills', 4, 'Good', 40, '2021-03-26 04:02:20', 1),
(6851, 4064, 40, 'Pressure Handling', 3, 'Yet to decide', 40, '2021-03-26 04:02:20', 1),
(6852, 4064, 40, 'patience', 4, 'Good', 40, '2021-03-26 04:02:20', 1),
(6853, 4064, 40, 'Sustainability', 4, 'Seems like a long runner', 40, '2021-03-26 04:02:20', 1),
(6854, 4064, 40, 'Sales Experience', 3, 'Not in field sales. Inside sales Experience', 40, '2021-03-26 04:02:20', 1),
(6855, 4064, 40, 'Existing Experience Analyze', 3, 'Good', 40, '2021-03-26 04:02:20', 1),
(6856, 4064, 40, 'Practical Challenges Outcome', 2, 'Yet to Conclude', 40, '2021-03-26 04:02:20', 1),
(6857, 4064, 40, 'Willing To Work On Holidays', 5, 'He would be. depends on clients interest', 40, '2021-03-26 04:02:20', 1),
(6858, 4054, 8, 'convincing Skills', 1, 'poor', 8, '2021-03-26 05:53:58', 1),
(6859, 4054, 8, 'Pressure Handling', 2, 'poor', 8, '2021-03-26 05:53:58', 1),
(6860, 4036, 17, 'Appearance', 3, 'Good', 17, '2021-03-27 03:12:02', 1),
(6861, 4036, 17, 'Attitude', 4, 'Good', 17, '2021-03-27 03:12:02', 1),
(6862, 4036, 17, 'Communication (English)', 3, 'okay', 17, '2021-03-27 03:12:02', 1),
(6863, 4036, 17, 'Communication (Tamil)', 5, 'good', 17, '2021-03-27 03:12:02', 1),
(6864, 4036, 17, 'Convincing Skills', 4, 'good', 17, '2021-03-27 03:12:02', 1),
(6865, 4036, 17, 'Confidence Level', 4, 'okay', 17, '2021-03-27 03:12:02', 1),
(6866, 4036, 17, 'Existing Experience Analyze', 3, 'already credit card selling ', 17, '2021-03-27 03:12:02', 1),
(6867, 4036, 17, 'Importance Of Job', 4, 'financial need', 17, '2021-03-27 03:12:02', 1),
(6868, 4036, 17, 'Observation Skills', 4, 'Practical he will learn', 17, '2021-03-27 03:12:02', 1),
(6869, 4036, 17, 'patience', 3, 'okay', 17, '2021-03-27 03:12:02', 1),
(6870, 4036, 17, 'Pressure Handling', 4, 'okay', 17, '2021-03-27 03:12:02', 1),
(6871, 4036, 17, 'Practical Challenges Outcome', 4, 'He will do', 17, '2021-03-27 03:12:02', 1),
(6872, 4036, 17, 'Sustainability', 4, 'okay', 17, '2021-03-27 03:12:02', 1),
(6873, 4036, 17, 'Sales Experience', 4, 'he was worked at field executive in icici credit card section ', 17, '2021-03-27 03:12:02', 1),
(6874, 4036, 17, 'Willing To Work On Holidays', 4, 'yes', 17, '2021-03-27 03:12:02', 1),
(6875, 4079, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-27 04:22:59', 1),
(6876, 4079, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-27 04:22:59', 1),
(6877, 3981, 34, 'Appearance', 4, 'good', 34, '2021-03-27 05:04:27', 1),
(6878, 3981, 34, 'Attitude', 4, 'good', 34, '2021-03-27 05:04:27', 1),
(6879, 3981, 34, 'Communication (English)', 4, 'not bad\n', 34, '2021-03-27 05:04:27', 1),
(6880, 3981, 34, 'Communication (Tamil)', 4, 'good', 34, '2021-03-27 05:04:27', 1),
(6881, 3981, 34, 'Convincing Skills', 4, 'not bad', 34, '2021-03-27 05:04:27', 1),
(6882, 3981, 34, 'Confidence Level', 4, 'good', 34, '2021-03-27 05:04:27', 1),
(6883, 3981, 34, 'Existing Experience Analyze', 4, 'good', 34, '2021-03-27 05:04:27', 1),
(6884, 3981, 34, 'Importance Of Job', 4, 'he needs a job immeaditely', 34, '2021-03-27 05:04:27', 1),
(6885, 3981, 34, 'Observation Skills', 3, 'ok', 34, '2021-03-27 05:04:27', 1),
(6886, 3981, 34, 'patience', 4, 'good', 34, '2021-03-27 05:04:27', 1),
(6887, 3981, 34, 'Pressure Handling', 4, 'ok', 34, '2021-03-27 05:04:27', 1),
(6888, 3981, 34, 'Practical Challenges Outcome', 4, 'good', 34, '2021-03-27 05:04:27', 1),
(6889, 3981, 34, 'Sustainability', 4, 'he is ready for sign a  bond also', 34, '2021-03-27 05:04:27', 1),
(6890, 3981, 34, 'Sales Experience', 4, 'good', 34, '2021-03-27 05:04:27', 1),
(6891, 3981, 34, 'Willing To Work On Holidays', 4, 'yes', 34, '2021-03-27 05:04:27', 1),
(6892, 4033, 34, 'Appearance', 4, 'good', 34, '2021-03-27 05:25:32', 1),
(6893, 4033, 34, 'Attitude', 4, 'good', 34, '2021-03-27 05:25:32', 1),
(6894, 4033, 34, 'Communication (English)', 4, 'good', 34, '2021-03-27 05:25:32', 1),
(6895, 4033, 34, 'Communication (Tamil)', 5, 'good', 34, '2021-03-27 05:25:32', 1),
(6896, 4033, 34, 'Convincing Skills', 4, 'average', 34, '2021-03-27 05:25:32', 1),
(6897, 4033, 34, 'Confidence Level', 4, 'good', 34, '2021-03-27 05:25:32', 1),
(6898, 4033, 34, 'Existing Experience Analyze', 4, 'good', 34, '2021-03-27 05:25:32', 1),
(6899, 4033, 34, 'Importance Of Job', 4, 'need job imm', 34, '2021-03-27 05:25:32', 1),
(6900, 4033, 34, 'Observation Skills', 4, 'good', 34, '2021-03-27 05:25:32', 1),
(6901, 4033, 34, 'patience', 4, 'good', 34, '2021-03-27 05:25:32', 1),
(6902, 4033, 34, 'Pressure Handling', 4, 'he will handle', 34, '2021-03-27 05:25:32', 1),
(6903, 4033, 34, 'Practical Challenges Outcome', 4, 'good', 34, '2021-03-27 05:25:32', 1),
(6904, 4033, 34, 'Sustainability', 4, 'good', 34, '2021-03-27 05:25:32', 1),
(6905, 4033, 34, 'Sales Experience', 4, 'good', 34, '2021-03-27 05:25:32', 1),
(6906, 4033, 34, 'Willing To Work On Holidays', 4, 'he will work', 34, '2021-03-27 05:25:32', 1),
(6907, 4075, 13, 'Communication (Tamil)', 2, 'low', 13, '2021-03-28 11:47:31', 1),
(6908, 4075, 13, 'Pressure Handling', 2, 'less', 13, '2021-03-28 11:47:31', 1),
(6909, 4076, 13, 'Appearance', 2, 'low', 13, '2021-03-28 11:49:14', 1),
(6910, 4076, 13, 'Confidence Level', 2, 'less', 13, '2021-03-28 11:49:14', 1),
(6911, 3938, 13, 'convincing Skills', 2, 'low', 13, '2021-03-28 11:55:55', 1),
(6912, 4073, 19, 'Sustainability', 4, 'Fit for sales', 19, '2021-03-29 03:43:23', 1),
(6913, 4099, 8, 'Attitude', 3, 'good', 8, '2021-03-29 04:02:24', 1),
(6914, 4099, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-29 04:02:24', 1),
(6915, 4099, 8, 'Convincing Skills', 3, 'good', 8, '2021-03-29 04:02:24', 1),
(6916, 4099, 8, 'Importance Of Job', 4, 'yes', 8, '2021-03-29 04:02:24', 1),
(6917, 4091, 8, 'Appearance', 2, 'poor', 8, '2021-03-29 04:21:32', 1),
(6918, 4091, 8, 'Communication (Tamil)', 3, 'avg', 8, '2021-03-29 04:21:32', 1),
(6919, 4091, 8, 'Confidence Level', 3, 'avg', 8, '2021-03-29 04:21:32', 1),
(6920, 4091, 8, 'Observation Skills', 2, 'poor', 8, '2021-03-29 04:21:32', 1),
(6921, 4091, 8, 'Sustainability', 2, 'has to check', 8, '2021-03-29 04:21:32', 1),
(6922, 4096, 8, 'convincing Skills', 3, 'good', 8, '2021-03-29 04:33:36', 1),
(6923, 4096, 8, 'Confidence Level', 3, 'good', 8, '2021-03-29 04:33:36', 1),
(6924, 4097, 8, 'Confidence Level', 3, 'good', 8, '2021-03-29 04:40:39', 1),
(6925, 4097, 8, 'Importance (Job)', 3, 'yes', 8, '2021-03-29 04:40:39', 1),
(6926, 4064, 18, 'Appearance', 4, 'Good', 18, '2021-03-30 01:20:51', 1),
(6927, 4064, 18, 'Attitude', 2, 'Below Average', 18, '2021-03-30 01:20:51', 1),
(6928, 4064, 18, 'Communication (English)', 5, 'Good', 18, '2021-03-30 01:20:51', 1),
(6929, 4064, 18, 'Communication (Tamil)', 5, 'Good', 18, '2021-03-30 01:20:51', 1),
(6930, 4064, 18, 'Convincing Skills', 4, 'Decent', 18, '2021-03-30 01:20:51', 1),
(6931, 4064, 18, 'Confidence Level', 3, 'Above Average', 18, '2021-03-30 01:20:51', 1),
(6932, 4064, 18, 'Importance Of Job', 4, 'Highly Required', 18, '2021-03-30 01:20:51', 1),
(6933, 4064, 18, 'Observation Skills', 3, 'Average', 18, '2021-03-30 01:20:51', 1),
(6934, 4064, 18, 'Pressure Handling', 2, 'low', 18, '2021-03-30 01:20:51', 1),
(6935, 4064, 18, 'patience', 3, 'Average', 18, '2021-03-30 01:20:51', 1),
(6936, 4064, 18, 'Sustainability', 3, 'Need to take a call in the first week', 18, '2021-03-30 01:20:51', 1),
(6937, 4064, 18, 'Sales Experience', 4, 'Good but not relevant', 18, '2021-03-30 01:20:51', 1),
(6938, 4064, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-03-30 01:20:51', 1),
(6939, 4064, 18, 'Practical Challenges Outcome', 4, 'Good', 18, '2021-03-30 01:20:51', 1),
(6940, 4064, 18, 'Willing To Work On Holidays', 5, 'Yes', 18, '2021-03-30 01:20:51', 1),
(6941, 4136, 8, 'Communication (Tamil)', 3, 'avg', 8, '2021-03-30 03:53:44', 1),
(6942, 4136, 8, 'convincing Skills', 2, 'poor', 8, '2021-03-30 03:53:44', 1),
(6943, 3689, 29, 'Communication (English)', 2, 'ok', 29, '2021-03-30 06:56:01', 1),
(6944, 3689, 29, 'Sales Experience', 2, 'ok', 29, '2021-03-30 06:56:01', 1),
(6945, 3723, 29, 'Sales Experience', 2, 'ok', 29, '2021-03-30 06:57:16', 1),
(6946, 3912, 29, 'Observation Skills', 2, 'ok', 29, '2021-03-30 06:57:41', 1),
(6947, 4106, 17, 'Appearance', 3, 'Okay', 17, '2021-03-31 11:06:39', 1),
(6948, 4106, 17, 'Attitude', 3, 'okay', 17, '2021-03-31 11:06:39', 1),
(6949, 4106, 17, 'Communication (English)', 3, 'okay', 17, '2021-03-31 11:06:39', 1),
(6950, 4106, 17, 'Communication (Tamil)', 5, 'Good', 17, '2021-03-31 11:06:39', 1),
(6951, 4106, 17, 'Convincing Skills', 4, 'okay', 17, '2021-03-31 11:06:39', 1),
(6952, 4106, 17, 'Confidence Level', 3, 'okay', 17, '2021-03-31 11:06:39', 1),
(6953, 4106, 17, 'Existing Experience Analyze', 3, 'fresher ', 17, '2021-03-31 11:06:39', 1),
(6954, 4106, 17, 'Importance Of Job', 4, 'Finance need', 17, '2021-03-31 11:06:39', 1),
(6955, 4106, 17, 'Observation Skills', 4, 'okay', 17, '2021-03-31 11:06:39', 1),
(6956, 4106, 17, 'patience', 4, 'okay', 17, '2021-03-31 11:06:39', 1),
(6957, 4106, 17, 'Pressure Handling', 3, 'okay', 17, '2021-03-31 11:06:39', 1),
(6958, 4106, 17, 'Practical Challenges Outcome', 3, 'he will do', 17, '2021-03-31 11:06:39', 1),
(6959, 4106, 17, 'Sustainability', 4, 'need to check', 17, '2021-03-31 11:06:39', 1),
(6960, 4106, 17, 'Sales Experience', 3, 'no', 17, '2021-03-31 11:06:39', 1),
(6961, 4106, 17, 'Willing To Work On Holidays', 4, 'Yes', 17, '2021-03-31 11:06:39', 1),
(6962, 4158, 8, 'Appearance', 3, 'okay', 8, '2021-03-31 01:30:22', 1),
(6963, 4158, 8, 'Attitude', 3, 'good', 8, '2021-03-31 01:30:22', 1),
(6964, 4158, 8, 'Communication (English)', 3, 'just okay', 8, '2021-03-31 01:30:22', 1),
(6965, 4158, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-31 01:30:22', 1),
(6966, 4158, 8, 'patience', 3, 'yes', 8, '2021-03-31 01:30:22', 1),
(6967, 4152, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-31 01:31:41', 1),
(6968, 4152, 8, 'Confidence Level', 3, 'good', 8, '2021-03-31 01:31:41', 1),
(6969, 4152, 8, 'Pressure Handling', 3, 'has to heck', 8, '2021-03-31 01:31:41', 1),
(6970, 4156, 8, 'Attitude', 3, 'okay', 8, '2021-03-31 01:35:07', 1),
(6971, 4156, 8, 'Communication (English)', 3, 'good', 8, '2021-03-31 01:35:07', 1),
(6972, 4156, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-03-31 01:35:07', 1),
(6973, 4156, 8, 'Convincing Skills', 4, 'good', 8, '2021-03-31 01:35:07', 1),
(6974, 4156, 8, 'Sustainability', 3, 'he will', 8, '2021-03-31 01:35:07', 1),
(6975, 4156, 8, 'Existing Experience Analyze', 3, 'very clear', 8, '2021-03-31 01:35:07', 1),
(6976, 4163, 8, 'Communication (Tamil)', 3, 'avg', 8, '2021-03-31 02:47:58', 1),
(6977, 4163, 8, 'convincing Skills', 2, 'poor', 8, '2021-03-31 02:47:58', 1),
(6978, 4153, 8, 'Communication (English)', 3, 'avg', 8, '2021-03-31 02:54:08', 1),
(6979, 4153, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-03-31 02:54:08', 1),
(6980, 4153, 8, 'Confidence Level', 2, 'poor', 8, '2021-03-31 02:54:08', 1),
(6981, 4165, 8, 'Communication (Tamil)', 2, 'poor', 8, '2021-03-31 03:47:46', 1),
(6982, 4165, 8, 'Convincing Skills', 2, 'poor', 8, '2021-03-31 03:47:46', 1),
(6983, 4165, 8, 'Confidence Level', 2, 'very low', 8, '2021-03-31 03:47:46', 1),
(6984, 4167, 8, 'Communication (Tamil)', 2, 'avg', 8, '2021-03-31 03:51:18', 1),
(6985, 4167, 8, 'Convincing Skills', 2, 'poor', 8, '2021-03-31 03:51:18', 1),
(6986, 4167, 8, 'Confidence Level', 2, 'poor', 8, '2021-03-31 03:51:18', 1),
(6987, 4167, 8, 'Existing Experience Analyze', 2, 'Couldnxquott explain  his profile', 8, '2021-03-31 03:51:18', 1),
(6988, 4167, 8, 'Importance Of Job', 3, 'yes', 8, '2021-03-31 03:51:18', 1),
(6989, 4167, 8, 'Observation Skills', 2, 'poor', 8, '2021-03-31 03:51:18', 1),
(6990, 4154, 8, 'Communication (English)', 2, 'below avg', 8, '2021-04-01 01:27:11', 1),
(6991, 4154, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-01 01:27:11', 1),
(6992, 4154, 8, 'Pressure Handling', 2, 'has to check', 8, '2021-04-01 01:27:11', 1),
(6993, 4154, 8, 'Existing Experience Analyze', 2, 'poor', 8, '2021-04-01 01:27:11', 1),
(6994, 4176, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-01 02:55:35', 1),
(6995, 4176, 8, 'Convincing Skills', 3, 'avg', 8, '2021-04-01 02:55:35', 1),
(6996, 4176, 8, 'Importance Of Job', 3, 'yes', 8, '2021-04-01 02:55:35', 1),
(6997, 4181, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-05 01:42:15', 1),
(6998, 4181, 8, 'Convincing Skills', 3, 'good', 8, '2021-04-05 01:42:15', 1),
(6999, 4181, 8, 'Confidence Level', 3, 'good', 8, '2021-04-05 01:42:15', 1),
(7000, 4181, 8, 'Sales Experience', 3, 'has 2ye exp in loan and insurance', 8, '2021-04-05 01:42:15', 1),
(7001, 4154, 40, 'Appearance', 2, 'Not Ok', 40, '2021-04-05 02:12:06', 1),
(7002, 4154, 40, 'Attitude', 2, 'Not upto the mark', 40, '2021-04-05 02:12:06', 1),
(7003, 4154, 40, 'Communication (English)', 1, 'Zero', 40, '2021-04-05 02:12:06', 1),
(7004, 4154, 40, 'Communication (Tamil)', 3, 'Not ok', 40, '2021-04-05 02:12:06', 1),
(7005, 4154, 40, 'Convincing Skills', 1, 'Zero', 40, '2021-04-05 02:12:06', 1),
(7006, 4154, 40, 'Confidence Level', 1, 'Zero', 40, '2021-04-05 02:12:06', 1),
(7007, 4154, 40, 'Importance Of Job', 3, 'Neutral', 40, '2021-04-05 02:12:06', 1),
(7008, 4154, 40, 'Observation Skills', 1, 'Zero', 40, '2021-04-05 02:12:06', 1),
(7009, 4154, 40, 'Pressure Handling', 1, 'Zero', 40, '2021-04-05 02:12:06', 1),
(7010, 4154, 40, 'patience', 2, 'Not upto the mark', 40, '2021-04-05 02:12:06', 1),
(7011, 4154, 40, 'Sustainability', 2, 'Doubtful', 40, '2021-04-05 02:12:06', 1),
(7012, 4154, 40, 'Sales Experience', 1, 'Zero', 40, '2021-04-05 02:12:06', 1),
(7013, 4154, 40, 'Existing Experience Analyze', 2, 'Zero', 40, '2021-04-05 02:12:06', 1),
(7014, 4154, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-04-05 02:12:06', 1),
(7015, 4154, 40, 'Willing To Work On Holidays', 1, 'Zero', 40, '2021-04-05 02:12:06', 1),
(7016, 4219, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-05 02:59:28', 1),
(7017, 4219, 8, 'convincing Skills', 3, 'avg', 8, '2021-04-05 02:59:28', 1),
(7018, 4219, 8, 'Confidence Level', 3, 'good', 8, '2021-04-05 02:59:28', 1),
(7019, 4219, 8, 'Importance (Job)', 4, 'high', 8, '2021-04-05 02:59:28', 1),
(7020, 4208, 8, 'Attitude', 1, 'poor', 8, '2021-04-05 05:31:20', 1),
(7021, 4212, 8, 'Attitude', 2, 'avg', 8, '2021-04-05 05:34:39', 1),
(7022, 4212, 8, 'Convincing Skills', 2, 'poor', 8, '2021-04-05 05:34:39', 1),
(7023, 4212, 8, 'Observation Skills', 2, 'poor', 8, '2021-04-05 05:34:39', 1),
(7024, 4215, 8, 'Communication (English)', 2, 'avg', 8, '2021-04-05 05:39:56', 1),
(7025, 4215, 8, 'Communication (Tamil)', 3, 'avg', 8, '2021-04-05 05:39:56', 1),
(7026, 4215, 8, 'Convincing Skills', 2, 'poor', 8, '2021-04-05 05:39:56', 1),
(7027, 4152, 13, 'Communication (Tamil)', 2, 'low', 13, '2021-04-07 11:21:16', 1),
(7028, 4238, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-07 04:39:37', 1),
(7029, 4238, 8, 'Convincing Skills', 3, 'okay', 8, '2021-04-07 04:39:37', 1),
(7030, 4238, 8, 'Importance Of Job', 3, 'yes', 8, '2021-04-07 04:39:37', 1),
(7031, 4238, 8, 'Sales Experience', 3, 'yes', 8, '2021-04-07 04:39:37', 1),
(7032, 4233, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-07 04:41:09', 1),
(7033, 4233, 8, 'convincing Skills', 3, 'good', 8, '2021-04-07 04:41:09', 1),
(7034, 4233, 8, 'Confidence Level', 3, 'good', 8, '2021-04-07 04:41:09', 1),
(7035, 4233, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-04-08 12:53:12', 1),
(7036, 4233, 13, 'convincing Skills', 4, 'good', 13, '2021-04-08 12:53:12', 1),
(7037, 4275, 8, 'Attitude', 3, 'goog', 8, '2021-04-08 01:05:38', 1),
(7038, 4275, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-08 01:05:38', 1),
(7039, 4275, 8, 'Convincing Skills', 3, 'good', 8, '2021-04-08 01:05:38', 1),
(7040, 4275, 8, 'Confidence Level', 3, 'good', 8, '2021-04-08 01:05:38', 1),
(7041, 4275, 8, 'Importance Of Job', 3, 'high', 8, '2021-04-08 01:05:38', 1),
(7042, 4275, 8, 'Willing To Work On Holidays', 3, 'yes', 8, '2021-04-08 01:05:38', 1),
(7043, 4265, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-08 05:41:33', 1),
(7044, 4265, 8, 'Sustainability', 2, 'check once', 8, '2021-04-08 05:41:33', 1),
(7045, 4271, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-08 05:43:56', 1),
(7046, 4271, 8, 'convincing Skills', 3, 'good', 8, '2021-04-08 05:43:56', 1),
(7047, 4271, 8, 'Importance (Job)', 3, 'yes', 8, '2021-04-08 05:43:56', 1),
(7048, 4287, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-08 05:45:40', 1),
(7049, 4287, 8, 'convincing Skills', 3, 'avg', 8, '2021-04-08 05:45:40', 1),
(7050, 4287, 8, 'Importance (Job)', 3, 'yes', 8, '2021-04-08 05:45:40', 1),
(7051, 4216, 14, 'Appearance', 4, 'good', 14, '2021-04-08 06:24:28', 1),
(7052, 4216, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-04-08 06:24:28', 1),
(7053, 4216, 14, 'convincing Skills', 4, 'good', 14, '2021-04-08 06:24:28', 1),
(7054, 4216, 14, 'Sustainability', 4, 'high . Already working in 2 companies related to sales so she will sustain', 14, '2021-04-08 06:24:28', 1),
(7055, 4219, 14, 'Attitude', 4, 'good', 14, '2021-04-08 06:25:57', 1),
(7056, 4219, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-04-08 06:25:57', 1),
(7057, 4287, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-04-08 06:40:54', 1),
(7058, 4287, 14, 'convincing Skills', 3, 'not bad', 14, '2021-04-08 06:40:54', 1),
(7059, 4278, 14, 'convincing Skills', 1, 'very low', 14, '2021-04-08 06:42:17', 1),
(7060, 4278, 14, 'Observation skills', 1, 'poor', 14, '2021-04-08 06:42:17', 1),
(7061, 4271, 14, 'Communication (Tamil)', 3, 'good', 14, '2021-04-08 06:43:14', 1),
(7062, 4272, 13, 'Pressure Handling', 2, 'low', 13, '2021-04-09 10:37:19', 1),
(7063, 4272, 13, 'Sustainability', 2, 'low', 13, '2021-04-09 10:37:19', 1),
(7064, 4289, 13, 'Communication (Tamil)', 1, 'low', 13, '2021-04-09 10:38:42', 1),
(7065, 4289, 13, 'convincing Skills', 1, 'low', 13, '2021-04-09 10:38:42', 1),
(7066, 4289, 13, 'Confidence Level', 1, 'low', 13, '2021-04-09 10:38:42', 1),
(7067, 4265, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-04-09 12:04:56', 1),
(7068, 3690, 14, 'Attitude', 3, 'good', 14, '2021-04-09 12:13:39', 1),
(7069, 3690, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-04-09 12:13:39', 1),
(7070, 4225, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-09 02:39:46', 1),
(7071, 4225, 8, 'convincing Skills', 3, 'Good', 8, '2021-04-09 02:39:46', 1),
(7072, 4225, 8, 'Confidence Level', 3, 'Good', 8, '2021-04-09 02:39:46', 1),
(7073, 4225, 8, 'Importance (Job)', 4, 'high', 8, '2021-04-09 02:39:46', 1),
(7074, 4300, 8, 'Communication (Tamil)', 3, 'good. check with her pronunciation', 8, '2021-04-09 02:58:27', 1),
(7075, 4300, 8, 'convincing Skills', 3, 'good', 8, '2021-04-09 02:58:27', 1),
(7076, 4300, 8, 'Importance (Job)', 5, 'high', 8, '2021-04-09 02:58:27', 1),
(7077, 4300, 8, 'Sustainability', 3, 'yes', 8, '2021-04-09 02:58:27', 1),
(7078, 4303, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-09 02:59:58', 1),
(7079, 4303, 8, 'convincing Skills', 3, 'good', 8, '2021-04-09 02:59:58', 1),
(7080, 4303, 8, 'Importance (Job)', 3, 'yes', 8, '2021-04-09 02:59:58', 1),
(7081, 4306, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-09 03:04:57', 1),
(7082, 4306, 8, 'Convincing Skills', 4, 'good', 8, '2021-04-09 03:04:57', 1),
(7083, 4306, 8, 'Confidence Level', 3, 'good', 8, '2021-04-09 03:04:57', 1),
(7084, 4306, 8, 'Pressure Handling', 3, 'okay', 8, '2021-04-09 03:04:57', 1),
(7085, 4196, 8, 'Appearance', 2, 'check once', 8, '2021-04-09 03:06:36', 1),
(7086, 4196, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-09 03:06:36', 1),
(7087, 4196, 8, 'Convincing Skills', 3, 'avg', 8, '2021-04-09 03:06:36', 1),
(7088, 4196, 8, 'Importance Of Job', 3, 'has to settle in a reputed org.', 8, '2021-04-09 03:06:36', 1),
(7089, 4196, 8, 'Willing To Work On Holidays', 3, 'yes', 8, '2021-04-09 03:06:36', 1),
(7090, 4311, 8, 'convincing Skills', 4, 'good, has product knowledge of star and care', 8, '2021-04-09 03:54:13', 1),
(7091, 4311, 8, 'Confidence Level', 3, 'good', 8, '2021-04-09 03:54:13', 1),
(7092, 4311, 8, 'Importance (Job)', 3, 'high', 8, '2021-04-09 03:54:13', 1),
(7093, 4312, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-09 03:56:17', 1),
(7094, 4302, 8, 'Observation skills', 2, 'poor', 8, '2021-04-09 04:15:35', 1),
(7095, 4225, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-04-10 10:53:40', 1),
(7096, 4225, 13, 'convincing Skills', 4, 'good', 13, '2021-04-10 10:53:40', 1),
(7097, 4300, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-04-10 10:54:53', 1),
(7098, 4300, 13, 'Confidence Level', 4, 'good', 13, '2021-04-10 10:54:53', 1),
(7099, 3942, 31, 'Appearance', 3, 'Good', 31, '2021-04-10 11:15:32', 1),
(7100, 3942, 31, 'Convincing Skills', 4, 'Okay with that profile', 31, '2021-04-10 11:15:32', 1),
(7101, 4181, 31, 'Appearance', 3, 'Good', 31, '2021-04-10 11:17:53', 1),
(7102, 4181, 31, 'Confidence Level', 3, 'Okay', 31, '2021-04-10 11:17:53', 1),
(7103, 4321, 8, 'Communication (Tamil)', 3, 'good but little bit slow', 8, '2021-04-10 11:46:50', 1),
(7104, 4321, 8, 'convincing Skills', 3, 'good', 8, '2021-04-10 11:46:50', 1),
(7105, 4321, 8, 'Sustainability', 3, 'yes', 8, '2021-04-10 11:46:50', 1),
(7106, 4330, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-10 01:20:39', 1),
(7107, 4330, 8, 'convincing Skills', 3, 'good', 8, '2021-04-10 01:20:39', 1),
(7108, 4330, 8, 'Importance (Job)', 3, 'yes', 8, '2021-04-10 01:20:39', 1),
(7109, 4330, 8, 'Sustainability', 2, 'check once', 8, '2021-04-10 01:20:39', 1),
(7110, 4329, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-10 01:22:26', 1),
(7111, 4329, 8, 'Importance (Job)', 4, 'highly needed', 8, '2021-04-10 01:22:26', 1),
(7112, 4329, 8, 'Pressure Handling', 2, 'check once', 8, '2021-04-10 01:22:26', 1),
(7113, 4329, 8, 'Sustainability', 3, 'yes', 8, '2021-04-10 01:22:26', 1),
(7114, 4321, 13, 'Communication (Tamil)', 2, 'low', 13, '2021-04-10 03:08:49', 1),
(7115, 4321, 13, 'Confidence Level', 2, 'low', 13, '2021-04-10 03:08:49', 1),
(7116, 4334, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-10 10:19:04', 1),
(7117, 4334, 8, 'Convincing Skills', 3, 'good', 8, '2021-04-10 10:19:04', 1),
(7118, 4334, 8, 'Importance Of Job', 3, 'yes', 8, '2021-04-10 10:19:04', 1),
(7119, 4324, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-04-13 10:36:43', 1),
(7120, 4324, 13, 'convincing Skills', 4, 'good', 13, '2021-04-13 10:36:43', 1),
(7121, 4382, 14, 'Attitude', 4, 'good', 14, '2021-04-13 04:24:28', 1),
(7122, 4382, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-04-13 04:24:28', 1),
(7123, 4412, 8, 'Communication (English)', 3, 'okay', 8, '2021-04-15 12:52:39', 1),
(7124, 4412, 8, 'Convincing Skills', 3, 'good', 8, '2021-04-15 12:52:39', 1),
(7125, 4412, 8, 'Confidence Level', 3, 'good', 8, '2021-04-15 12:52:39', 1),
(7126, 4412, 8, 'Sustainability', 2, 'fresher for us, check once', 8, '2021-04-15 12:52:39', 1),
(7127, 4412, 8, 'Sales Experience', 3, '4yr ', 8, '2021-04-15 12:52:39', 1),
(7128, 4412, 8, 'Existing Experience Analyze', 3, 'over all good', 8, '2021-04-15 12:52:39', 1),
(7129, 4425, 8, 'Attitude', 3, 'okay', 8, '2021-04-15 06:40:51', 1),
(7130, 4425, 8, 'Communication (English)', 3, 'okay', 8, '2021-04-15 06:40:51', 1),
(7131, 4425, 8, 'Convincing Skills', 3, 'upto the level', 8, '2021-04-15 06:40:51', 1),
(7132, 4425, 8, 'Confidence Level', 3, 'good', 8, '2021-04-15 06:40:51', 1),
(7133, 4425, 8, 'Sales Experience', 3, 'b2B', 8, '2021-04-15 06:40:51', 1),
(7134, 4437, 8, 'Pressure Handling', 2, 'left previous job bcoz of pressure', 8, '2021-04-16 03:07:31', 1),
(7135, 4303, 14, 'Attitude', 4, 'good', 14, '2021-04-16 05:46:17', 1),
(7136, 4303, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-04-16 05:46:17', 1),
(7137, 4312, 14, 'Communication (Tamil)', 2, 'not good', 14, '2021-04-16 05:47:54', 1),
(7138, 4277, 14, 'Appearance', 4, 'good', 14, '2021-04-16 05:49:13', 1),
(7139, 4277, 14, 'Attitude', 4, 'good', 14, '2021-04-16 05:49:13', 1),
(7140, 4277, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-04-16 05:49:13', 1),
(7141, 4453, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-04-19 11:58:08', 1),
(7142, 4465, 14, 'Communication (Tamil)', 2, 'not good', 14, '2021-04-19 06:48:17', 1),
(7143, 4465, 14, 'Observation skills', 1, 'less', 14, '2021-04-19 06:48:17', 1),
(7144, 4412, 31, 'Communication (English)', 3, 'Good', 31, '2021-04-21 03:43:21', 1),
(7145, 4412, 31, 'Convincing Skills', 4, 'okay with convincing skill', 31, '2021-04-21 03:43:21', 1),
(7146, 4564, 14, 'Appearance', 4, 'good', 14, '2021-04-23 12:50:03', 1),
(7147, 4564, 14, 'Attitude', 4, 'good', 14, '2021-04-23 12:50:03', 1),
(7148, 4493, 14, 'Communication (Tamil)', 1, 'not good', 14, '2021-04-23 12:53:02', 1),
(7149, 4551, 14, 'Communication (Tamil)', 3, 'good', 14, '2021-04-23 12:54:48', 1),
(7150, 4494, 14, 'Communication (Tamil)', 1, 'bad', 14, '2021-04-23 12:57:23', 1),
(7151, 4494, 14, 'Observation skills', 1, 'less', 14, '2021-04-23 12:57:23', 1),
(7152, 4412, 29, 'Communication (English)', 3, 'good', 29, '2021-04-26 11:24:14', 1),
(7153, 4412, 29, 'Convincing Skills', 3, 'has skills', 29, '2021-04-26 11:24:14', 1),
(7154, 4412, 29, 'Sales Experience', 3, 'got sales experience, however different profile, can perform', 29, '2021-04-26 11:24:14', 1),
(7155, 4609, 21, 'Appearance', 4, 'ok', 21, '2021-04-27 11:04:40', 1),
(7156, 4609, 21, 'Attitude', 4, 'ok', 21, '2021-04-27 11:04:40', 1),
(7157, 4609, 21, 'Communication (Tamil)', 4, 'ok', 21, '2021-04-27 11:04:40', 1),
(7158, 4609, 21, 'Communication (English)', 3, 'avg', 21, '2021-04-27 11:04:40', 1),
(7159, 4609, 21, 'convincing Skills', 3, 'need to improve ', 21, '2021-04-27 11:04:40', 1),
(7160, 4609, 21, 'Confidence Level', 4, 'ok', 21, '2021-04-27 11:04:40', 1),
(7161, 4609, 21, 'Importance (Job)', 4, 'single parent ', 21, '2021-04-27 11:04:40', 1),
(7162, 4609, 21, 'Observation skills', 3, 'good', 21, '2021-04-27 11:04:40', 1),
(7163, 4609, 21, 'Pressure Handling', 3, 'avg', 21, '2021-04-27 11:04:40', 1),
(7164, 4609, 21, 'patience', 4, 'ok', 21, '2021-04-27 11:04:40', 1),
(7165, 4609, 21, 'Sustainability', 4, 'ok', 21, '2021-04-27 11:04:40', 1),
(7166, 4629, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-27 07:26:51', 1),
(7167, 4629, 8, 'Communication (English)', 2, 'below avg', 8, '2021-04-27 07:26:51', 1),
(7168, 4629, 8, 'Confidence Level', 3, 'good', 8, '2021-04-27 07:26:51', 1),
(7169, 4629, 8, 'Sustainability', 3, 'ready to sign 1yr service agreement', 8, '2021-04-27 07:26:51', 1),
(7170, 4630, 8, 'Attitude', 2, 'check once', 8, '2021-04-27 07:27:43', 1),
(7171, 4630, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-27 07:27:43', 1),
(7172, 4630, 8, 'Confidence Level', 3, 'good', 8, '2021-04-27 07:27:43', 1),
(7173, 4630, 8, 'Sustainability', 2, 'has to check', 8, '2021-04-27 07:27:43', 1),
(7174, 4655, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-28 03:19:48', 1),
(7175, 4655, 8, 'convincing Skills', 3, 'okay', 8, '2021-04-28 03:19:48', 1),
(7176, 4655, 8, 'Importance (Job)', 4, 'high', 8, '2021-04-28 03:19:48', 1),
(7177, 4648, 8, 'Importance (Job)', 3, 'high', 8, '2021-04-28 04:36:46', 1),
(7178, 4649, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-28 04:42:27', 1),
(7179, 4649, 8, 'convincing Skills', 3, 'okay', 8, '2021-04-28 04:42:27', 1),
(7180, 4649, 8, 'Importance (Job)', 3, 'yes', 8, '2021-04-28 04:42:27', 1),
(7181, 4649, 8, 'Pressure Handling', 2, 'has to check', 8, '2021-04-28 04:42:27', 1),
(7182, 4652, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-04-28 04:44:16', 1),
(7183, 4652, 8, 'convincing Skills', 3, 'okay', 8, '2021-04-28 04:44:16', 1),
(7184, 4652, 8, 'Confidence Level', 3, 'okay', 8, '2021-04-28 04:44:16', 1),
(7185, 4652, 8, 'Importance (Job)', 3, 'yes', 8, '2021-04-28 04:44:16', 1),
(7186, 4652, 8, 'Pressure Handling', 3, 'check once', 8, '2021-04-28 04:44:16', 1),
(7187, 4650, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-28 04:45:40', 1),
(7188, 4650, 8, 'convincing Skills', 3, 'good', 8, '2021-04-28 04:45:40', 1),
(7189, 4650, 8, 'Importance (Job)', 3, 'yes', 8, '2021-04-28 04:45:40', 1),
(7190, 4650, 8, 'Pressure Handling', 3, 'okay', 8, '2021-04-28 04:45:40', 1),
(7191, 4649, 21, 'Appearance', 4, 'ok', 21, '2021-04-29 11:20:31', 1),
(7192, 4649, 21, 'Attitude', 4, 'ok', 21, '2021-04-29 11:20:31', 1),
(7193, 4649, 21, 'Communication (Tamil)', 4, 'ok', 21, '2021-04-29 11:20:31', 1),
(7194, 4649, 21, 'Communication (English)', 3, 'managable', 21, '2021-04-29 11:20:31', 1),
(7195, 4649, 21, 'convincing Skills', 4, 'ok', 21, '2021-04-29 11:20:31', 1),
(7196, 4649, 21, 'Confidence Level', 4, 'ok', 21, '2021-04-29 11:20:31', 1),
(7197, 4649, 21, 'Importance (Job)', 4, 'single parent ', 21, '2021-04-29 11:20:31', 1),
(7198, 4649, 21, 'Observation skills', 4, 'ok', 21, '2021-04-29 11:20:31', 1),
(7199, 4649, 21, 'Sustainability', 4, 'max 2yrs', 21, '2021-04-29 11:20:31', 1),
(7200, 4648, 21, 'Appearance', 3, 'ok', 21, '2021-04-29 11:22:46', 1),
(7201, 4648, 21, 'Communication (Tamil)', 3, 'ok ', 21, '2021-04-29 11:22:46', 1),
(7202, 4648, 21, 'convincing Skills', 2, 'low', 21, '2021-04-29 11:22:46', 1),
(7203, 4648, 21, 'Confidence Level', 2, 'low', 21, '2021-04-29 11:22:46', 1),
(7204, 4648, 21, 'Pressure Handling', 2, 'she dont have exp .. 2 months in icici', 21, '2021-04-29 11:22:46', 1),
(7205, 4674, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-29 02:35:21', 1),
(7206, 4674, 8, 'convincing Skills', 3, 'avg, fresher', 8, '2021-04-29 02:35:21', 1),
(7207, 4674, 8, 'Importance (Job)', 4, 'high', 8, '2021-04-29 02:35:21', 1),
(7208, 4674, 8, 'Sustainability', 3, 'yes', 8, '2021-04-29 02:35:21', 1),
(7209, 4665, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-04-29 02:46:25', 1),
(7210, 4665, 8, 'Convincing Skills', 2, 'below avg', 8, '2021-04-29 02:46:25', 1),
(7211, 4665, 8, 'Importance Of Job', 3, 'yes', 8, '2021-04-29 02:46:25', 1),
(7212, 4665, 8, 'Pressure Handling', 2, 'poor', 8, '2021-04-29 02:46:25', 1),
(7213, 4470, 34, 'Appearance', 4, 'good', 34, '2021-04-30 11:07:48', 1),
(7214, 4470, 34, 'Attitude', 4, 'good', 34, '2021-04-30 11:07:48', 1),
(7215, 4470, 34, 'Communication (English)', 3, 'he will manage', 34, '2021-04-30 11:07:48', 1),
(7216, 4470, 34, 'Communication (Tamil)', 5, 'good', 34, '2021-04-30 11:07:48', 1),
(7217, 4470, 34, 'Convincing Skills', 3, 'average', 34, '2021-04-30 11:07:48', 1),
(7218, 4470, 34, 'Confidence Level', 4, 'good', 34, '2021-04-30 11:07:48', 1),
(7219, 4470, 34, 'Existing Experience Analyze', 4, 'good', 34, '2021-04-30 11:07:48', 1),
(7220, 4470, 34, 'Importance Of Job', 4, 'he needs a job imm', 34, '2021-04-30 11:07:48', 1),
(7221, 4470, 34, 'Observation Skills', 3, 'average', 34, '2021-04-30 11:07:48', 1),
(7222, 4470, 34, 'patience', 4, 'good', 34, '2021-04-30 11:07:48', 1),
(7223, 4470, 34, 'Pressure Handling', 4, 'good', 34, '2021-04-30 11:07:48', 1),
(7224, 4470, 34, 'Practical Challenges Outcome', 3, 'ok', 34, '2021-04-30 11:07:48', 1),
(7225, 4470, 34, 'Sustainability', 4, 'he will sustain', 34, '2021-04-30 11:07:48', 1),
(7226, 4470, 34, 'Sales Experience', 4, 'ok', 34, '2021-04-30 11:07:48', 1),
(7227, 4470, 34, 'Willing To Work On Holidays', 4, 'ya  he will works in holidays also', 34, '2021-04-30 11:07:48', 1),
(7228, 4476, 34, 'Appearance', 4, 'good', 34, '2021-04-30 11:14:11', 1),
(7229, 4476, 34, 'Attitude', 4, 'good', 34, '2021-04-30 11:14:11', 1),
(7230, 4476, 34, 'Communication (English)', 3, 'average', 34, '2021-04-30 11:14:11', 1),
(7231, 4476, 34, 'Communication (Tamil)', 5, 'good', 34, '2021-04-30 11:14:11', 1),
(7232, 4476, 34, 'Convincing Skills', 4, 'good', 34, '2021-04-30 11:14:11', 1),
(7233, 4476, 34, 'Confidence Level', 4, 'good', 34, '2021-04-30 11:14:11', 1),
(7234, 4476, 34, 'Existing Experience Analyze', 4, 'ok', 34, '2021-04-30 11:14:11', 1),
(7235, 4476, 34, 'Importance Of Job', 4, 'he needs a job imm', 34, '2021-04-30 11:14:11', 1),
(7236, 4476, 34, 'Observation Skills', 4, 'good', 34, '2021-04-30 11:14:11', 1),
(7237, 4476, 34, 'patience', 4, 'good', 34, '2021-04-30 11:14:11', 1),
(7238, 4476, 34, 'Pressure Handling', 4, 'he will manage', 34, '2021-04-30 11:14:11', 1),
(7239, 4476, 34, 'Practical Challenges Outcome', 4, 'average', 34, '2021-04-30 11:14:11', 1),
(7240, 4476, 34, 'Sustainability', 4, 'good', 34, '2021-04-30 11:14:11', 1),
(7241, 4476, 34, 'Sales Experience', 4, 'average', 34, '2021-04-30 11:14:11', 1),
(7242, 4476, 34, 'Willing To Work On Holidays', 4, 'ye he will', 34, '2021-04-30 11:14:11', 1),
(7243, 4628, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-04-30 04:28:16', 1),
(7244, 4628, 13, 'convincing Skills', 4, 'good', 13, '2021-04-30 04:28:16', 1),
(7245, 4646, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-04-30 04:32:57', 1),
(7246, 4646, 13, 'convincing Skills', 4, 'good', 13, '2021-04-30 04:32:57', 1),
(7247, 4646, 13, 'Confidence Level', 4, 'good suite for CRM and voice process', 13, '2021-04-30 04:32:57', 1),
(7248, 4705, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-05-03 03:04:01', 1),
(7249, 4705, 8, 'convincing Skills', 2, 'poor', 8, '2021-05-03 03:04:01', 1),
(7250, 4702, 8, 'Attitude', 3, 'good', 8, '2021-05-03 03:07:58', 1),
(7251, 4702, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-05-03 03:07:58', 1),
(7252, 4702, 8, 'Convincing Skills', 3, 'good', 8, '2021-05-03 03:07:58', 1),
(7253, 4702, 8, 'Confidence Level', 3, 'good', 8, '2021-05-03 03:07:58', 1),
(7254, 4702, 8, 'Pressure Handling', 2, 'check once', 8, '2021-05-03 03:07:58', 1),
(7255, 4702, 8, 'Sales Experience', 3, '2m in herbal product', 8, '2021-05-03 03:07:58', 1),
(7256, 4715, 8, 'Appearance', 2, 'no neck button', 8, '2021-05-04 06:13:01', 1),
(7257, 4715, 8, 'Communication (Tamil)', 2, 'okay but native language', 8, '2021-05-04 06:13:01', 1),
(7258, 4715, 8, 'convincing Skills', 2, 'avg', 8, '2021-05-04 06:13:01', 1),
(7259, 4715, 8, 'Importance (Job)', 3, 'high', 8, '2021-05-04 06:13:01', 1),
(7260, 4726, 14, 'Sustainability', 1, 'less', 14, '2021-05-05 02:44:17', 1),
(7261, 4728, 14, 'Communication (Tamil)', 2, 'poor', 14, '2021-05-05 02:44:49', 1),
(7262, 4728, 14, 'Confidence Level', 1, 'low', 14, '2021-05-05 02:44:49', 1),
(7263, 4609, 29, 'Convincing Skills', 2, 'Can improve', 29, '2021-05-05 06:04:45', 1),
(7264, 4609, 29, 'Sales Experience', 2, 'Has Non insurance Exp, can learn quickly', 29, '2021-05-05 06:04:45', 1),
(7265, 4736, 8, 'convincing Skills', 2, 'avg', 8, '2021-05-05 06:29:32', 1),
(7266, 4736, 8, 'Confidence Level', 2, 'avg', 8, '2021-05-05 06:29:32', 1),
(7267, 4736, 8, 'Pressure Handling', 2, 'poor', 8, '2021-05-05 06:29:32', 1),
(7268, 4735, 8, 'Communication (Tamil)', 2, 'no clarity in speech, MT is kanada', 8, '2021-05-05 06:30:26', 1),
(7269, 4735, 8, 'convincing Skills', 2, 'avg', 8, '2021-05-05 06:30:26', 1),
(7270, 4735, 8, 'Confidence Level', 2, 'avg', 8, '2021-05-05 06:30:26', 1),
(7271, 4735, 8, 'Pressure Handling', 2, 'avg', 8, '2021-05-05 06:30:26', 1),
(7272, 4730, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-05-05 06:38:15', 1),
(7273, 4730, 8, 'convincing Skills', 3, 'okay', 8, '2021-05-05 06:38:15', 1),
(7274, 4730, 8, 'Confidence Level', 3, 'good', 8, '2021-05-05 06:38:15', 1),
(7275, 4730, 8, 'Sustainability', 2, 'check once', 8, '2021-05-05 06:38:15', 1),
(7276, 4722, 8, 'Appearance', 2, 'not upto the level', 8, '2021-05-05 06:40:11', 1),
(7277, 4722, 8, 'Communication (Tamil)', 3, 'avg', 8, '2021-05-05 06:40:11', 1),
(7278, 4722, 8, 'Convincing Skills', 2, 'avg', 8, '2021-05-05 06:40:11', 1),
(7279, 4722, 8, 'Confidence Level', 2, 'avg', 8, '2021-05-05 06:40:11', 1),
(7280, 4722, 8, 'Existing Experience Analyze', 2, 'avg', 8, '2021-05-05 06:40:11', 1),
(7281, 4722, 8, 'Sustainability', 3, 'yes', 8, '2021-05-05 06:40:11', 1),
(7282, 4727, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-05-05 06:42:46', 1),
(7283, 4727, 8, 'convincing Skills', 3, 'good', 8, '2021-05-05 06:42:46', 1),
(7284, 4727, 8, 'Confidence Level', 3, 'good', 8, '2021-05-05 06:42:46', 1),
(7285, 4727, 8, 'Sustainability', 2, 'check once, came with friends', 8, '2021-05-05 06:42:46', 1),
(7286, 4733, 40, 'Appearance', 1, 'Not in a professional attire', 40, '2021-05-06 01:13:04', 1),
(7287, 4733, 40, 'Attitude', 2, 'Dull and seems not interested', 40, '2021-05-06 01:13:04', 1),
(7288, 4733, 40, 'Communication (English)', 3, 'Ok', 40, '2021-05-06 01:13:04', 1),
(7289, 4733, 40, 'Communication (Tamil)', 1, 'Zero', 40, '2021-05-06 01:13:04', 1),
(7290, 4733, 40, 'Convincing Skills', 3, 'In hindi having some potential for convincing the customer', 40, '2021-05-06 01:13:04', 1),
(7291, 4733, 40, 'Confidence Level', 3, 'Average', 40, '2021-05-06 01:13:04', 1),
(7292, 4733, 40, 'Importance Of Job', 3, 'Doubtful', 40, '2021-05-06 01:13:04', 1),
(7293, 4733, 40, 'Observation Skills', 2, 'Not up to the mark', 40, '2021-05-06 01:13:04', 1),
(7294, 4733, 40, 'Pressure Handling', 1, 'Zero', 40, '2021-05-06 01:13:04', 1),
(7295, 4733, 40, 'patience', 3, 'In interview he had the issue in concentration', 40, '2021-05-06 01:13:04', 1),
(7296, 4733, 40, 'Sustainability', 2, 'Doubtful, in previous companies exp seems also irrelevant', 40, '2021-05-06 01:13:04', 1),
(7297, 4733, 40, 'Sales Experience', 1, 'Inbound sales having not field exp', 40, '2021-05-06 01:13:04', 1),
(7298, 4733, 40, 'Existing Experience Analyze', 3, 'Average', 40, '2021-05-06 01:13:04', 1),
(7299, 4733, 40, 'Practical Challenges Outcome', 2, 'Not up to the mark', 40, '2021-05-06 01:13:04', 1),
(7300, 4733, 40, 'Willing To Work On Holidays', 3, 'Based on the situation', 40, '2021-05-06 01:13:04', 1),
(7301, 4743, 40, 'Appearance', 1, 'Not good', 40, '2021-05-06 03:08:31', 1),
(7302, 4743, 40, 'Attitude', 2, 'Not professional', 40, '2021-05-06 03:08:31', 1),
(7303, 4743, 40, 'Communication (English)', 3, 'Ok', 40, '2021-05-06 03:08:31', 1),
(7304, 4743, 40, 'Communication (Tamil)', 1, 'No', 40, '2021-05-06 03:08:31', 1),
(7305, 4743, 40, 'Convincing Skills', 1, 'Zero', 40, '2021-05-06 03:08:31', 1),
(7306, 4743, 40, 'Confidence Level', 2, 'Below Average', 40, '2021-05-06 03:08:31', 1),
(7307, 4743, 40, 'Importance Of Job', 1, 'Not a sustainer', 40, '2021-05-06 03:08:31', 1),
(7308, 4743, 40, 'Observation Skills', 1, 'Below average', 40, '2021-05-06 03:08:31', 1),
(7309, 4743, 40, 'Pressure Handling', 1, 'Zero', 40, '2021-05-06 03:08:31', 1),
(7310, 4743, 40, 'patience', 1, 'Zero', 40, '2021-05-06 03:08:31', 1),
(7311, 4743, 40, 'Sustainability', 1, 'Zero', 40, '2021-05-06 03:08:31', 1),
(7312, 4743, 40, 'Sales Experience', 1, 'Zero', 40, '2021-05-06 03:08:31', 1),
(7313, 4743, 40, 'Existing Experience Analyze', 1, 'zero', 40, '2021-05-06 03:08:31', 1),
(7314, 4743, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-05-06 03:08:31', 1),
(7315, 4743, 40, 'Willing To Work On Holidays', 2, 'Doubtful', 40, '2021-05-06 03:08:31', 1),
(7316, 4750, 8, 'Attitude', 3, 'check once', 8, '2021-05-06 05:05:12', 1),
(7317, 4750, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-05-06 05:05:12', 1),
(7318, 4750, 8, 'Convincing Skills', 3, 'good', 8, '2021-05-06 05:05:12', 1),
(7319, 4750, 8, 'Confidence Level', 3, 'high', 8, '2021-05-06 05:05:12', 1),
(7320, 4750, 8, 'Existing Experience Analyze', 3, 'okay', 8, '2021-05-06 05:05:12', 1),
(7321, 4750, 8, 'Importance Of Job', 3, 'yes', 8, '2021-05-06 05:05:12', 1),
(7322, 4750, 8, 'patience', 3, 'yes', 8, '2021-05-06 05:05:12', 1),
(7323, 4750, 8, 'Sales Experience', 3, '7months', 8, '2021-05-06 05:05:12', 1),
(7324, 4784, 40, 'Appearance', 3, 'Ok', 40, '2021-05-08 11:29:43', 1),
(7325, 4784, 40, 'Attitude', 4, 'Good', 40, '2021-05-08 11:29:43', 1),
(7326, 4784, 40, 'Communication (English)', 3, 'Average', 40, '2021-05-08 11:29:43', 1),
(7327, 4784, 40, 'Communication (Tamil)', 1, 'Having knowledge in Hindi xxamp Telugu', 40, '2021-05-08 11:29:43', 1),
(7328, 4784, 40, 'Convincing Skills', 3, 'New to field sales', 40, '2021-05-08 11:29:43', 1),
(7329, 4784, 40, 'Confidence Level', 4, 'Good', 40, '2021-05-08 11:29:43', 1),
(7330, 4784, 40, 'Importance Of Job', 4, 'Immediate ', 40, '2021-05-08 11:29:43', 1),
(7331, 4784, 40, 'Observation Skills', 4, 'Good', 40, '2021-05-08 11:29:43', 1),
(7332, 4784, 40, 'Pressure Handling', 3, 'Average', 40, '2021-05-08 11:29:43', 1),
(7333, 4784, 40, 'patience', 3, 'Average', 40, '2021-05-08 11:29:43', 1),
(7334, 4784, 40, 'Sustainability', 4, 'Willing to work under contract for 2 years', 40, '2021-05-08 11:29:43', 1),
(7335, 4784, 40, 'Sales Experience', 3, 'Inbound sales not in field', 40, '2021-05-08 11:29:43', 1),
(7336, 4784, 40, 'Existing Experience Analyze', 2, 'Not having proper knowledge in previous process', 40, '2021-05-08 11:29:43', 1),
(7337, 4784, 40, 'Practical Challenges Outcome', 3, 'Neutral', 40, '2021-05-08 11:29:43', 1),
(7338, 4784, 40, 'Willing To Work On Holidays', 5, 'Yes He would', 40, '2021-05-08 11:29:43', 1),
(7339, 4176, 19, 'Importance Of Job', 1, 'not fit for sales', 19, '2021-05-11 10:13:57', 1),
(7340, 4814, 40, 'Appearance', 3, 'Virtual Meet Appearance was average', 40, '2021-05-12 03:40:01', 1),
(7341, 4814, 40, 'Attitude', 4, 'Professional', 40, '2021-05-12 03:40:01', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(7342, 4814, 40, 'Communication (English)', 4, 'Good', 40, '2021-05-12 03:40:01', 1),
(7343, 4814, 40, 'Communication (Tamil)', 1, 'Good in local language', 40, '2021-05-12 03:40:01', 1),
(7344, 4814, 40, 'Convincing Skills', 3, 'Yet to confirm', 40, '2021-05-12 03:40:01', 1),
(7345, 4814, 40, 'Confidence Level', 4, 'Good', 40, '2021-05-12 03:40:01', 1),
(7346, 4814, 40, 'Importance Of Job', 4, 'Immediate Joiner', 40, '2021-05-12 03:40:01', 1),
(7347, 4814, 40, 'Observation Skills', 3, 'Good', 40, '2021-05-12 03:40:01', 1),
(7348, 4814, 40, 'Pressure Handling', 3, 'Neutral', 40, '2021-05-12 03:40:01', 1),
(7349, 4814, 40, 'patience', 4, 'Probably', 40, '2021-05-12 03:40:01', 1),
(7350, 4814, 40, 'Sustainability', 4, 'He would', 40, '2021-05-12 03:40:01', 1),
(7351, 4814, 40, 'Sales Experience', 3, 'Having 2.5 years of EXP in field sales', 40, '2021-05-12 03:40:01', 1),
(7352, 4814, 40, 'Existing Experience Analyze', 3, 'Good', 40, '2021-05-12 03:40:01', 1),
(7353, 4814, 40, 'Practical Challenges Outcome', 3, 'Good', 40, '2021-05-12 03:40:01', 1),
(7354, 4814, 40, 'Willing To Work On Holidays', 5, 'Yes ', 40, '2021-05-12 03:40:01', 1),
(7355, 4797, 40, 'Appearance', 3, 'Ok', 40, '2021-05-12 04:21:00', 1),
(7356, 4797, 40, 'Attitude', 2, 'Below Average', 40, '2021-05-12 04:21:00', 1),
(7357, 4797, 40, 'Communication (English)', 3, 'Neutral', 40, '2021-05-12 04:21:00', 1),
(7358, 4797, 40, 'Communication (Tamil)', 1, 'Good in local language', 40, '2021-05-12 04:21:00', 1),
(7359, 4797, 40, 'Convincing Skills', 2, 'Not upto the mark', 40, '2021-05-12 04:21:00', 1),
(7360, 4797, 40, 'Confidence Level', 3, 'Average', 40, '2021-05-12 04:21:00', 1),
(7361, 4797, 40, 'Importance Of Job', 3, 'Yes ', 40, '2021-05-12 04:21:00', 1),
(7362, 4797, 40, 'Observation Skills', 2, 'Below Average', 40, '2021-05-12 04:21:00', 1),
(7363, 4797, 40, 'Pressure Handling', 1, 'Zero', 40, '2021-05-12 04:21:00', 1),
(7364, 4797, 40, 'patience', 3, 'Ok', 40, '2021-05-12 04:21:00', 1),
(7365, 4797, 40, 'Sustainability', 1, 'Doubtful from his previous exp', 40, '2021-05-12 04:21:00', 1),
(7366, 4797, 40, 'Sales Experience', 3, 'Not in field sales', 40, '2021-05-12 04:21:00', 1),
(7367, 4797, 40, 'Existing Experience Analyze', 1, 'Not ok', 40, '2021-05-12 04:21:00', 1),
(7368, 4797, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-05-12 04:21:00', 1),
(7369, 4797, 40, 'Willing To Work On Holidays', 3, 'Doubtful', 40, '2021-05-12 04:21:00', 1),
(7370, 4810, 40, 'Appearance', 1, 'Zero', 40, '2021-05-13 12:55:42', 1),
(7371, 4810, 40, 'Attitude', 2, 'Not Good', 40, '2021-05-13 12:55:42', 1),
(7372, 4810, 40, 'Communication (English)', 3, 'Ok', 40, '2021-05-13 12:55:42', 1),
(7373, 4810, 40, 'Communication (Tamil)', 2, 'Ok with his local language Telugu', 40, '2021-05-13 12:55:42', 1),
(7374, 4810, 40, 'Convincing Skills', 1, 'Zero', 40, '2021-05-13 12:55:42', 1),
(7375, 4810, 40, 'Confidence Level', 1, 'Zero', 40, '2021-05-13 12:55:42', 1),
(7376, 4810, 40, 'Importance Of Job', 2, 'No', 40, '2021-05-13 12:55:42', 1),
(7377, 4810, 40, 'Observation Skills', 1, 'Zero', 40, '2021-05-13 12:55:42', 1),
(7378, 4810, 40, 'Pressure Handling', 2, 'Not up to the level', 40, '2021-05-13 12:55:42', 1),
(7379, 4810, 40, 'patience', 2, 'No', 40, '2021-05-13 12:55:42', 1),
(7380, 4810, 40, 'Sustainability', 1, 'Zero', 40, '2021-05-13 12:55:42', 1),
(7381, 4810, 40, 'Sales Experience', 2, 'Not in field sales', 40, '2021-05-13 12:55:42', 1),
(7382, 4810, 40, 'Existing Experience Analyze', 1, 'Zero', 40, '2021-05-13 12:55:42', 1),
(7383, 4810, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-05-13 12:55:42', 1),
(7384, 4810, 40, 'Willing To Work On Holidays', 1, 'Doubtful', 40, '2021-05-13 12:55:42', 1),
(7385, 4807, 40, 'Appearance', 4, 'Good', 40, '2021-05-13 12:58:15', 1),
(7386, 4807, 40, 'Attitude', 3, 'Average', 40, '2021-05-13 12:58:15', 1),
(7387, 4807, 40, 'Communication (English)', 3, 'Ok', 40, '2021-05-13 12:58:15', 1),
(7388, 4807, 40, 'Communication (Tamil)', 2, 'He knows Hindi comparing to telugu ', 40, '2021-05-13 12:58:15', 1),
(7389, 4807, 40, 'Convincing Skills', 2, 'Below Average', 40, '2021-05-13 12:58:15', 1),
(7390, 4807, 40, 'Confidence Level', 3, 'Average', 40, '2021-05-13 12:58:15', 1),
(7391, 4807, 40, 'Importance Of Job', 2, 'Based on his interest', 40, '2021-05-13 12:58:15', 1),
(7392, 4807, 40, 'Observation Skills', 2, 'Below Average', 40, '2021-05-13 12:58:15', 1),
(7393, 4807, 40, 'Pressure Handling', 2, 'Doubtful', 40, '2021-05-13 12:58:15', 1),
(7394, 4807, 40, 'patience', 4, 'Yes', 40, '2021-05-13 12:58:15', 1),
(7395, 4807, 40, 'Sustainability', 2, 'Doubtful', 40, '2021-05-13 12:58:15', 1),
(7396, 4807, 40, 'Sales Experience', 3, 'Not in a proper way of sales exp', 40, '2021-05-13 12:58:15', 1),
(7397, 4807, 40, 'Existing Experience Analyze', 2, 'Not Good', 40, '2021-05-13 12:58:15', 1),
(7398, 4807, 40, 'Practical Challenges Outcome', 2, 'No', 40, '2021-05-13 12:58:15', 1),
(7399, 4807, 40, 'Willing To Work On Holidays', 4, 'He would', 40, '2021-05-13 12:58:15', 1),
(7400, 4823, 40, 'Appearance', 4, 'Professional Attire', 40, '2021-05-13 01:04:26', 1),
(7401, 4823, 40, 'Attitude', 4, 'Good', 40, '2021-05-13 01:04:26', 1),
(7402, 4823, 40, 'Communication (English)', 4, 'Good', 40, '2021-05-13 01:04:26', 1),
(7403, 4823, 40, 'Communication (Tamil)', 4, 'Good in his local language', 40, '2021-05-13 01:04:26', 1),
(7404, 4823, 40, 'Convincing Skills', 4, 'Good', 40, '2021-05-13 01:04:26', 1),
(7405, 4823, 40, 'Confidence Level', 5, 'Good', 40, '2021-05-13 01:04:26', 1),
(7406, 4823, 40, 'Importance Of Job', 4, 'Immediate Joiner', 40, '2021-05-13 01:04:26', 1),
(7407, 4823, 40, 'Observation Skills', 4, 'Good', 40, '2021-05-13 01:04:26', 1),
(7408, 4823, 40, 'Pressure Handling', 3, 'Seems neutral', 40, '2021-05-13 01:04:26', 1),
(7409, 4823, 40, 'patience', 3, 'Ok', 40, '2021-05-13 01:04:26', 1),
(7410, 4823, 40, 'Sustainability', 3, 'He may', 40, '2021-05-13 01:04:26', 1),
(7411, 4823, 40, 'Sales Experience', 3, 'Not proper sales', 40, '2021-05-13 01:04:26', 1),
(7412, 4823, 40, 'Existing Experience Analyze', 3, 'Ok', 40, '2021-05-13 01:04:26', 1),
(7413, 4823, 40, 'Practical Challenges Outcome', 3, 'Ok', 40, '2021-05-13 01:04:26', 1),
(7414, 4823, 40, 'Willing To Work On Holidays', 5, 'Yes he would', 40, '2021-05-13 01:04:26', 1),
(7415, 4730, 19, 'Appearance', 4, 'good look for sales', 19, '2021-05-13 02:03:30', 1),
(7416, 4860, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-05-15 10:15:12', 1),
(7417, 4860, 8, 'convincing Skills', 3, 'good', 8, '2021-05-15 10:15:12', 1),
(7418, 4860, 8, 'Confidence Level', 3, 'good', 8, '2021-05-15 10:15:12', 1),
(7419, 4860, 8, 'Importance (Job)', 2, 'check once', 8, '2021-05-15 10:15:12', 1),
(7420, 4844, 40, 'Appearance', 2, 'Not professional', 40, '2021-05-15 12:03:08', 1),
(7421, 4844, 40, 'Attitude', 4, 'Good', 40, '2021-05-15 12:03:08', 1),
(7422, 4844, 40, 'Communication (English)', 4, 'Good', 40, '2021-05-15 12:03:08', 1),
(7423, 4844, 40, 'Communication (Tamil)', 5, 'Good in Local language telugu', 40, '2021-05-15 12:03:08', 1),
(7424, 4844, 40, 'Convincing Skills', 1, 'Fresher', 40, '2021-05-15 12:03:08', 1),
(7425, 4844, 40, 'Confidence Level', 3, 'Neutral', 40, '2021-05-15 12:03:08', 1),
(7426, 4844, 40, 'Importance Of Job', 2, 'Based on his interest', 40, '2021-05-15 12:03:08', 1),
(7427, 4844, 40, 'Observation Skills', 3, 'Neutral', 40, '2021-05-15 12:03:08', 1),
(7428, 4844, 40, 'Pressure Handling', 2, 'No', 40, '2021-05-15 12:03:08', 1),
(7429, 4844, 40, 'patience', 4, 'Yes', 40, '2021-05-15 12:03:08', 1),
(7430, 4844, 40, 'Sustainability', 2, 'Doubtful', 40, '2021-05-15 12:03:08', 1),
(7431, 4844, 40, 'Sales Experience', 1, 'No', 40, '2021-05-15 12:03:08', 1),
(7432, 4844, 40, 'Existing Experience Analyze', 1, 'Zero', 40, '2021-05-15 12:03:08', 1),
(7433, 4844, 40, 'Practical Challenges Outcome', 1, 'zero', 40, '2021-05-15 12:03:08', 1),
(7434, 4844, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-05-15 12:03:08', 1),
(7435, 4846, 40, 'Appearance', 4, 'Good', 40, '2021-05-15 12:06:26', 1),
(7436, 4846, 40, 'Attitude', 4, 'Good', 40, '2021-05-15 12:06:26', 1),
(7437, 4846, 40, 'Communication (English)', 4, 'Good', 40, '2021-05-15 12:06:26', 1),
(7438, 4846, 40, 'Communication (Tamil)', 5, 'Good in local language telugu', 40, '2021-05-15 12:06:26', 1),
(7439, 4846, 40, 'Convincing Skills', 4, 'Good in ', 40, '2021-05-15 12:06:26', 1),
(7440, 4846, 40, 'Confidence Level', 5, 'Yes', 40, '2021-05-15 12:06:26', 1),
(7441, 4846, 40, 'Importance Of Job', 4, '15 days Notice period', 40, '2021-05-15 12:06:26', 1),
(7442, 4846, 40, 'Observation Skills', 4, 'Good', 40, '2021-05-15 12:06:26', 1),
(7443, 4846, 40, 'Pressure Handling', 3, 'Might be', 40, '2021-05-15 12:06:26', 1),
(7444, 4846, 40, 'patience', 4, 'Good', 40, '2021-05-15 12:06:26', 1),
(7445, 4846, 40, 'Sustainability', 4, 'He would be', 40, '2021-05-15 12:06:26', 1),
(7446, 4846, 40, 'Sales Experience', 4, 'Not our profile having sales exp in other profile', 40, '2021-05-15 12:06:26', 1),
(7447, 4846, 40, 'Existing Experience Analyze', 4, 'Good', 40, '2021-05-15 12:06:26', 1),
(7448, 4846, 40, 'Practical Challenges Outcome', 3, 'Neutral', 40, '2021-05-15 12:06:26', 1),
(7449, 4846, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-05-15 12:06:26', 1),
(7450, 4842, 40, 'Appearance', 1, 'No Good', 40, '2021-05-15 12:08:17', 1),
(7451, 4842, 40, 'Attitude', 3, 'Neutal', 40, '2021-05-15 12:08:17', 1),
(7452, 4842, 40, 'Communication (English)', 4, 'Good', 40, '2021-05-15 12:08:17', 1),
(7453, 4842, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-05-15 12:08:17', 1),
(7454, 4842, 40, 'Convincing Skills', 2, 'below average', 40, '2021-05-15 12:08:17', 1),
(7455, 4842, 40, 'Confidence Level', 2, 'Not up to the mark', 40, '2021-05-15 12:08:17', 1),
(7456, 4842, 40, 'Importance Of Job', 3, 'Neutral', 40, '2021-05-15 12:08:17', 1),
(7457, 4842, 40, 'Observation Skills', 3, 'Ok', 40, '2021-05-15 12:08:17', 1),
(7458, 4842, 40, 'Pressure Handling', 2, 'No', 40, '2021-05-15 12:08:17', 1),
(7459, 4842, 40, 'patience', 2, 'No', 40, '2021-05-15 12:08:17', 1),
(7460, 4842, 40, 'Sustainability', 2, 'Doubtful', 40, '2021-05-15 12:08:17', 1),
(7461, 4842, 40, 'Sales Experience', 2, 'No inbound sales', 40, '2021-05-15 12:08:17', 1),
(7462, 4842, 40, 'Existing Experience Analyze', 2, 'No', 40, '2021-05-15 12:08:17', 1),
(7463, 4842, 40, 'Practical Challenges Outcome', 2, 'Zero', 40, '2021-05-15 12:08:17', 1),
(7464, 4842, 40, 'Willing To Work On Holidays', 3, 'Might be', 40, '2021-05-15 12:08:17', 1),
(7465, 4840, 40, 'Appearance', 1, 'Not good', 40, '2021-05-15 12:40:03', 1),
(7466, 4840, 40, 'Attitude', 2, 'Not good', 40, '2021-05-15 12:40:03', 1),
(7467, 4840, 40, 'Communication (English)', 2, 'Not good', 40, '2021-05-15 12:40:03', 1),
(7468, 4840, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-05-15 12:40:03', 1),
(7469, 4840, 40, 'Convincing Skills', 2, 'Fresher', 40, '2021-05-15 12:40:03', 1),
(7470, 4840, 40, 'Confidence Level', 2, 'Zero', 40, '2021-05-15 12:40:03', 1),
(7471, 4840, 40, 'Importance Of Job', 4, 'immediate Joiner', 40, '2021-05-15 12:40:03', 1),
(7472, 4840, 40, 'Observation Skills', 2, 'No', 40, '2021-05-15 12:40:03', 1),
(7473, 4840, 40, 'Pressure Handling', 2, 'Fresher', 40, '2021-05-15 12:40:03', 1),
(7474, 4840, 40, 'patience', 2, 'No', 40, '2021-05-15 12:40:03', 1),
(7475, 4840, 40, 'Sustainability', 2, 'Doubtful', 40, '2021-05-15 12:40:03', 1),
(7476, 4840, 40, 'Sales Experience', 1, 'Zero', 40, '2021-05-15 12:40:03', 1),
(7477, 4840, 40, 'Existing Experience Analyze', 1, 'Zero', 40, '2021-05-15 12:40:03', 1),
(7478, 4840, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-05-15 12:40:03', 1),
(7479, 4840, 40, 'Willing To Work On Holidays', 3, 'Doubtful', 40, '2021-05-15 12:40:03', 1),
(7480, 4854, 40, 'Appearance', 4, 'Good ', 40, '2021-05-15 02:23:40', 1),
(7481, 4854, 40, 'Attitude', 4, 'Good', 40, '2021-05-15 02:23:40', 1),
(7482, 4854, 40, 'Communication (English)', 4, 'Good', 40, '2021-05-15 02:23:40', 1),
(7483, 4854, 40, 'Communication (Tamil)', 4, 'Good in local language', 40, '2021-05-15 02:23:40', 1),
(7484, 4854, 40, 'Convincing Skills', 4, 'Good', 40, '2021-05-15 02:23:40', 1),
(7485, 4854, 40, 'Confidence Level', 4, 'Good', 40, '2021-05-15 02:23:40', 1),
(7486, 4854, 40, 'Importance Of Job', 4, 'Immediately ', 40, '2021-05-15 02:23:40', 1),
(7487, 4854, 40, 'Observation Skills', 4, 'Good', 40, '2021-05-15 02:23:40', 1),
(7488, 4854, 40, 'Pressure Handling', 3, 'Doubtful', 40, '2021-05-15 02:23:40', 1),
(7489, 4854, 40, 'patience', 4, 'he would be probably', 40, '2021-05-15 02:23:40', 1),
(7490, 4854, 40, 'Sustainability', 3, 'based on company process', 40, '2021-05-15 02:23:40', 1),
(7491, 4854, 40, 'Sales Experience', 3, 'Having but not in our profile', 40, '2021-05-15 02:23:40', 1),
(7492, 4854, 40, 'Existing Experience Analyze', 3, 'Ok', 40, '2021-05-15 02:23:40', 1),
(7493, 4854, 40, 'Practical Challenges Outcome', 3, 'Ok', 40, '2021-05-15 02:23:40', 1),
(7494, 4854, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-05-15 02:23:40', 1),
(7495, 4858, 40, 'Appearance', 3, 'Ok', 40, '2021-05-15 05:40:18', 1),
(7496, 4858, 40, 'Attitude', 1, 'Not good', 40, '2021-05-15 05:40:18', 1),
(7497, 4858, 40, 'Communication (English)', 3, 'Average', 40, '2021-05-15 05:40:18', 1),
(7498, 4858, 40, 'Communication (Tamil)', 5, 'Good in local language telugu', 40, '2021-05-15 05:40:18', 1),
(7499, 4858, 40, 'Convincing Skills', 1, 'Zero', 40, '2021-05-15 05:40:18', 1),
(7500, 4858, 40, 'Confidence Level', 1, 'Zero', 40, '2021-05-15 05:40:18', 1),
(7501, 4858, 40, 'Importance Of Job', 1, 'Zero', 40, '2021-05-15 05:40:18', 1),
(7502, 4858, 40, 'Observation Skills', 1, 'Zero', 40, '2021-05-15 05:40:18', 1),
(7503, 4858, 40, 'Pressure Handling', 1, 'Zero', 40, '2021-05-15 05:40:18', 1),
(7504, 4858, 40, 'patience', 1, 'Zero', 40, '2021-05-15 05:40:18', 1),
(7505, 4858, 40, 'Sustainability', 2, 'No', 40, '2021-05-15 05:40:18', 1),
(7506, 4858, 40, 'Sales Experience', 1, 'Zero', 40, '2021-05-15 05:40:18', 1),
(7507, 4858, 40, 'Existing Experience Analyze', 1, 'zero', 40, '2021-05-15 05:40:18', 1),
(7508, 4858, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-05-15 05:40:18', 1),
(7509, 4858, 40, 'Willing To Work On Holidays', 1, 'Zero', 40, '2021-05-15 05:40:18', 1),
(7510, 4872, 40, 'Appearance', 1, 'Not good', 40, '2021-05-17 01:05:13', 1),
(7511, 4872, 40, 'Attitude', 1, 'Bad', 40, '2021-05-17 01:05:13', 1),
(7512, 4872, 40, 'Communication (English)', 3, 'Average', 40, '2021-05-17 01:05:13', 1),
(7513, 4872, 40, 'Communication (Tamil)', 4, 'Good in local language', 40, '2021-05-17 01:05:13', 1),
(7514, 4872, 40, 'Convincing Skills', 2, 'below Average', 40, '2021-05-17 01:05:13', 1),
(7515, 4872, 40, 'Confidence Level', 1, 'Zero', 40, '2021-05-17 01:05:13', 1),
(7516, 4872, 40, 'Importance Of Job', 2, 'No', 40, '2021-05-17 01:05:13', 1),
(7517, 4872, 40, 'Observation Skills', 1, 'Zero', 40, '2021-05-17 01:05:13', 1),
(7518, 4872, 40, 'Pressure Handling', 1, 'Zero', 40, '2021-05-17 01:05:13', 1),
(7519, 4872, 40, 'patience', 1, 'Zero', 40, '2021-05-17 01:05:13', 1),
(7520, 4872, 40, 'Sustainability', 1, 'No', 40, '2021-05-17 01:05:13', 1),
(7521, 4872, 40, 'Sales Experience', 3, 'Having but not a relevant exp', 40, '2021-05-17 01:05:13', 1),
(7522, 4872, 40, 'Existing Experience Analyze', 2, 'Bad', 40, '2021-05-17 01:05:13', 1),
(7523, 4872, 40, 'Practical Challenges Outcome', 1, 'Bad', 40, '2021-05-17 01:05:13', 1),
(7524, 4872, 40, 'Willing To Work On Holidays', 2, 'Doubtful', 40, '2021-05-17 01:05:13', 1),
(7525, 4868, 40, 'Appearance', 4, 'Good', 40, '2021-05-17 01:07:21', 1),
(7526, 4868, 40, 'Attitude', 3, 'Ok', 40, '2021-05-17 01:07:21', 1),
(7527, 4868, 40, 'Communication (English)', 3, 'Average', 40, '2021-05-17 01:07:21', 1),
(7528, 4868, 40, 'Communication (Tamil)', 4, 'Good in local language', 40, '2021-05-17 01:07:21', 1),
(7529, 4868, 40, 'Convincing Skills', 3, 'New to sales', 40, '2021-05-17 01:07:21', 1),
(7530, 4868, 40, 'Confidence Level', 4, 'Good', 40, '2021-05-17 01:07:21', 1),
(7531, 4868, 40, 'Importance Of Job', 4, 'Immediate Joiner', 40, '2021-05-17 01:07:21', 1),
(7532, 4868, 40, 'Observation Skills', 3, 'Ok', 40, '2021-05-17 01:07:21', 1),
(7533, 4868, 40, 'Pressure Handling', 3, 'Doubtful', 40, '2021-05-17 01:07:21', 1),
(7534, 4868, 40, 'patience', 4, 'Might be', 40, '2021-05-17 01:07:21', 1),
(7535, 4868, 40, 'Sustainability', 3, 'Might be', 40, '2021-05-17 01:07:21', 1),
(7536, 4868, 40, 'Sales Experience', 1, 'Zero', 40, '2021-05-17 01:07:21', 1),
(7537, 4868, 40, 'Existing Experience Analyze', 1, 'No', 40, '2021-05-17 01:07:21', 1),
(7538, 4868, 40, 'Practical Challenges Outcome', 3, 'Ok', 40, '2021-05-17 01:07:21', 1),
(7539, 4868, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-05-17 01:07:21', 1),
(7540, 4871, 40, 'Appearance', 1, 'Bad', 40, '2021-05-17 01:31:06', 1),
(7541, 4871, 40, 'Attitude', 2, 'Bad', 40, '2021-05-17 01:31:06', 1),
(7542, 4871, 40, 'Communication (English)', 2, 'Below Average', 40, '2021-05-17 01:31:06', 1),
(7543, 4871, 40, 'Communication (Tamil)', 4, 'Good in local language', 40, '2021-05-17 01:31:06', 1),
(7544, 4871, 40, 'Convincing Skills', 1, 'Zero', 40, '2021-05-17 01:31:06', 1),
(7545, 4871, 40, 'Confidence Level', 1, 'Zero', 40, '2021-05-17 01:31:06', 1),
(7546, 4871, 40, 'Importance Of Job', 1, 'Zero', 40, '2021-05-17 01:31:06', 1),
(7547, 4871, 40, 'Observation Skills', 1, 'Zero', 40, '2021-05-17 01:31:06', 1),
(7548, 4871, 40, 'Pressure Handling', 1, 'Zero', 40, '2021-05-17 01:31:06', 1),
(7549, 4871, 40, 'patience', 3, 'Ok', 40, '2021-05-17 01:31:06', 1),
(7550, 4871, 40, 'Sustainability', 1, 'Doubtful', 40, '2021-05-17 01:31:06', 1),
(7551, 4871, 40, 'Sales Experience', 1, 'Zero', 40, '2021-05-17 01:31:06', 1),
(7552, 4871, 40, 'Existing Experience Analyze', 1, 'Zero', 40, '2021-05-17 01:31:06', 1),
(7553, 4871, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-05-17 01:31:06', 1),
(7554, 4871, 40, 'Willing To Work On Holidays', 1, 'No', 40, '2021-05-17 01:31:06', 1),
(7555, 4870, 40, 'Appearance', 2, 'Not professional', 40, '2021-05-17 02:51:45', 1),
(7556, 4870, 40, 'Attitude', 3, 'Average', 40, '2021-05-17 02:51:45', 1),
(7557, 4870, 40, 'Communication (English)', 3, 'Average', 40, '2021-05-17 02:51:45', 1),
(7558, 4870, 40, 'Communication (Tamil)', 4, 'Good in local language', 40, '2021-05-17 02:51:45', 1),
(7559, 4870, 40, 'Convincing Skills', 1, 'Bad', 40, '2021-05-17 02:51:45', 1),
(7560, 4870, 40, 'Confidence Level', 2, 'Not up to the mark', 40, '2021-05-17 02:51:45', 1),
(7561, 4870, 40, 'Importance Of Job', 2, 'No', 40, '2021-05-17 02:51:45', 1),
(7562, 4870, 40, 'Observation Skills', 1, 'Zero', 40, '2021-05-17 02:51:45', 1),
(7563, 4870, 40, 'Pressure Handling', 1, 'Zero', 40, '2021-05-17 02:51:45', 1),
(7564, 4870, 40, 'patience', 1, 'Zero', 40, '2021-05-17 02:51:45', 1),
(7565, 4870, 40, 'Sustainability', 1, 'Doubtful', 40, '2021-05-17 02:51:45', 1),
(7566, 4870, 40, 'Sales Experience', 1, 'Zero', 40, '2021-05-17 02:51:45', 1),
(7567, 4870, 40, 'Existing Experience Analyze', 1, 'Zero', 40, '2021-05-17 02:51:45', 1),
(7568, 4870, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-05-17 02:51:45', 1),
(7569, 4870, 40, 'Willing To Work On Holidays', 3, 'Doubtful', 40, '2021-05-17 02:51:45', 1),
(7570, 4867, 40, 'Appearance', 3, 'Ok', 40, '2021-05-17 04:09:42', 1),
(7571, 4867, 40, 'Attitude', 4, 'Good', 40, '2021-05-17 04:09:42', 1),
(7572, 4867, 40, 'Communication (English)', 3, 'Average', 40, '2021-05-17 04:09:42', 1),
(7573, 4867, 40, 'Communication (Tamil)', 4, 'Good in local language', 40, '2021-05-17 04:09:42', 1),
(7574, 4867, 40, 'Convincing Skills', 3, 'Average', 40, '2021-05-17 04:09:42', 1),
(7575, 4867, 40, 'Confidence Level', 4, 'Good', 40, '2021-05-17 04:09:42', 1),
(7576, 4867, 40, 'Importance Of Job', 3, 'Need 1 week time to join due to notice period', 40, '2021-05-17 04:09:42', 1),
(7577, 4867, 40, 'Observation Skills', 3, 'Ok', 40, '2021-05-17 04:09:42', 1),
(7578, 4867, 40, 'Pressure Handling', 3, 'Ok', 40, '2021-05-17 04:09:42', 1),
(7579, 4867, 40, 'patience', 3, 'Ok', 40, '2021-05-17 04:09:42', 1),
(7580, 4867, 40, 'Sustainability', 3, 'Doubtful', 40, '2021-05-17 04:09:42', 1),
(7581, 4867, 40, 'Sales Experience', 3, 'Not in our profile', 40, '2021-05-17 04:09:42', 1),
(7582, 4867, 40, 'Existing Experience Analyze', 3, 'Average', 40, '2021-05-17 04:09:42', 1),
(7583, 4867, 40, 'Practical Challenges Outcome', 3, 'Average', 40, '2021-05-17 04:09:42', 1),
(7584, 4867, 40, 'Willing To Work On Holidays', 5, 'yes ', 40, '2021-05-17 04:09:42', 1),
(7585, 4867, 18, 'Appearance', 3, 'Ok', 18, '2021-05-17 06:18:20', 1),
(7586, 4867, 18, 'Attitude', 4, 'Good', 18, '2021-05-17 06:18:20', 1),
(7587, 4867, 18, 'Communication (English)', 3, 'Good Enough', 18, '2021-05-17 06:18:20', 1),
(7588, 4867, 18, 'Communication (Tamil)', 3, 'Avg', 18, '2021-05-17 06:18:20', 1),
(7589, 4867, 18, 'Convincing Skills', 4, 'Good', 18, '2021-05-17 06:18:20', 1),
(7590, 4867, 18, 'Confidence Level', 4, 'Good', 18, '2021-05-17 06:18:20', 1),
(7591, 4867, 18, 'Importance Of Job', 5, 'Much needed', 18, '2021-05-17 06:18:20', 1),
(7592, 4867, 18, 'Observation Skills', 3, 'Ok', 18, '2021-05-17 06:18:20', 1),
(7593, 4867, 18, 'Pressure Handling', 4, 'Can Handle', 18, '2021-05-17 06:18:20', 1),
(7594, 4867, 18, 'patience', 3, 'Decent', 18, '2021-05-17 06:18:20', 1),
(7595, 4867, 18, 'Sustainability', 4, 'Yes', 18, '2021-05-17 06:18:20', 1),
(7596, 4867, 18, 'Sales Experience', 3, 'Good but not relevant', 18, '2021-05-17 06:18:20', 1),
(7597, 4867, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-05-17 06:18:20', 1),
(7598, 4854, 18, 'Appearance', 3, 'Average', 18, '2021-05-17 10:49:30', 1),
(7599, 4854, 18, 'Attitude', 4, 'Good', 18, '2021-05-17 10:49:30', 1),
(7600, 4854, 18, 'Communication (English)', 3, 'Ok', 18, '2021-05-17 10:49:30', 1),
(7601, 4854, 18, 'Communication (Tamil)', 1, 'Nil', 18, '2021-05-17 10:49:30', 1),
(7602, 4854, 18, 'Convincing Skills', 3, 'Ok', 18, '2021-05-17 10:49:30', 1),
(7603, 4854, 18, 'Confidence Level', 4, 'Good', 18, '2021-05-17 10:49:30', 1),
(7604, 4854, 18, 'Importance Of Job', 5, 'Highly Required', 18, '2021-05-17 10:49:30', 1),
(7605, 4854, 18, 'Observation Skills', 3, 'Ok', 18, '2021-05-17 10:49:30', 1),
(7606, 4854, 18, 'Pressure Handling', 4, 'Ok', 18, '2021-05-17 10:49:30', 1),
(7607, 4854, 18, 'patience', 4, 'Good', 18, '2021-05-17 10:49:30', 1),
(7608, 4854, 18, 'Sustainability', 4, 'Yes', 18, '2021-05-17 10:49:30', 1),
(7609, 4854, 18, 'Sales Experience', 2, 'Poor', 18, '2021-05-17 10:49:30', 1),
(7610, 4854, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-05-17 10:49:30', 1),
(7611, 4854, 18, 'Practical Challenges Outcome', 2, 'No cold calling experience', 18, '2021-05-17 10:49:30', 1),
(7612, 4854, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2021-05-17 10:49:30', 1),
(7613, 4814, 18, 'Appearance', 5, 'Good', 18, '2021-05-17 10:54:16', 1),
(7614, 4814, 18, 'Attitude', 4, 'Good', 18, '2021-05-17 10:54:16', 1),
(7615, 4814, 18, 'Communication (English)', 4, 'Good', 18, '2021-05-17 10:54:16', 1),
(7616, 4814, 18, 'Communication (Tamil)', 1, 'No', 18, '2021-05-17 10:54:16', 1),
(7617, 4814, 18, 'Convincing Skills', 4, 'Good', 18, '2021-05-17 10:54:16', 1),
(7618, 4814, 18, 'Confidence Level', 4, 'Good', 18, '2021-05-17 10:54:16', 1),
(7619, 4814, 18, 'Importance Of Job', 3, 'Needed', 18, '2021-05-17 10:54:16', 1),
(7620, 4814, 18, 'Observation Skills', 4, 'Good', 18, '2021-05-17 10:54:16', 1),
(7621, 4814, 18, 'Pressure Handling', 3, 'Average', 18, '2021-05-17 10:54:16', 1),
(7622, 4814, 18, 'patience', 3, 'Decent', 18, '2021-05-17 10:54:16', 1),
(7623, 4814, 18, 'Sustainability', 3, 'Need to monitor carefully', 18, '2021-05-17 10:54:16', 1),
(7624, 4814, 18, 'Sales Experience', 4, 'Good', 18, '2021-05-17 10:54:16', 1),
(7625, 4814, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-05-17 10:54:16', 1),
(7626, 4784, 18, 'Appearance', 4, 'Good', 18, '2021-05-17 10:58:52', 1),
(7627, 4784, 18, 'Attitude', 3, 'Decent', 18, '2021-05-17 10:58:52', 1),
(7628, 4784, 18, 'Communication (English)', 4, 'Good', 18, '2021-05-17 10:58:52', 1),
(7629, 4784, 18, 'Convincing Skills', 4, 'Good', 18, '2021-05-17 10:58:52', 1),
(7630, 4784, 18, 'Confidence Level', 4, 'Good', 18, '2021-05-17 10:58:52', 1),
(7631, 4784, 18, 'Importance Of Job', 4, 'Needed', 18, '2021-05-17 10:58:52', 1),
(7632, 4784, 18, 'Observation Skills', 4, 'Good', 18, '2021-05-17 10:58:52', 1),
(7633, 4784, 18, 'Pressure Handling', 3, 'Average', 18, '2021-05-17 10:58:52', 1),
(7634, 4784, 18, 'patience', 4, 'Good', 18, '2021-05-17 10:58:52', 1),
(7635, 4784, 18, 'Sustainability', 2, 'Need to monitor carefully', 18, '2021-05-17 10:58:52', 1),
(7636, 4784, 18, 'Sales Experience', 3, 'Ok', 18, '2021-05-17 10:58:52', 1),
(7637, 4784, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-05-17 10:58:52', 1),
(7638, 4738, 18, 'Appearance', 4, 'Good', 18, '2021-05-18 05:12:55', 1),
(7639, 4738, 18, 'Attitude', 4, 'Good', 18, '2021-05-18 05:12:55', 1),
(7640, 4738, 18, 'Communication (English)', 4, 'Good', 18, '2021-05-18 05:12:55', 1),
(7641, 4738, 18, 'Communication (Tamil)', 1, 'NA', 18, '2021-05-18 05:12:55', 1),
(7642, 4738, 18, 'Convincing Skills', 4, 'Good', 18, '2021-05-18 05:12:55', 1),
(7643, 4738, 18, 'Confidence Level', 4, 'Good', 18, '2021-05-18 05:12:55', 1),
(7644, 4738, 18, 'Importance Of Job', 3, 'Needed', 18, '2021-05-18 05:12:55', 1),
(7645, 4738, 18, 'Observation Skills', 4, 'Good', 18, '2021-05-18 05:12:55', 1),
(7646, 4738, 18, 'Pressure Handling', 3, 'Decent', 18, '2021-05-18 05:12:55', 1),
(7647, 4738, 18, 'patience', 3, 'Average', 18, '2021-05-18 05:12:55', 1),
(7648, 4738, 18, 'Sustainability', 3, 'Need to check', 18, '2021-05-18 05:12:55', 1),
(7649, 4738, 18, 'Sales Experience', 4, 'Good', 18, '2021-05-18 05:12:55', 1),
(7650, 4738, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-05-18 05:12:55', 1),
(7651, 4823, 18, 'Appearance', 4, 'Good', 18, '2021-05-18 05:17:29', 1),
(7652, 4823, 18, 'Attitude', 4, 'Good', 18, '2021-05-18 05:17:29', 1),
(7653, 4823, 18, 'Communication (English)', 4, 'Good', 18, '2021-05-18 05:17:29', 1),
(7654, 4823, 18, 'Convincing Skills', 4, 'Good', 18, '2021-05-18 05:17:29', 1),
(7655, 4823, 18, 'Confidence Level', 4, 'Good', 18, '2021-05-18 05:17:29', 1),
(7656, 4823, 18, 'Importance Of Job', 4, 'Needed', 18, '2021-05-18 05:17:29', 1),
(7657, 4823, 18, 'Sustainability', 2, '3 job changes in 4 years', 18, '2021-05-18 05:17:29', 1),
(7658, 4823, 18, 'Sales Experience', 4, 'Good', 18, '2021-05-18 05:17:29', 1),
(7659, 4823, 18, 'Existing Experience Analyze', 3, 'Good', 18, '2021-05-18 05:17:29', 1),
(7660, 4887, 18, 'Appearance', 4, 'Good', 18, '2021-05-18 05:19:34', 1),
(7661, 4887, 18, 'Attitude', 3, 'Ok', 18, '2021-05-18 05:19:34', 1),
(7662, 4887, 18, 'Communication (English)', 2, 'Average', 18, '2021-05-18 05:19:34', 1),
(7663, 4887, 18, 'Convincing Skills', 3, 'Good', 18, '2021-05-18 05:19:34', 1),
(7664, 4887, 18, 'Confidence Level', 4, 'Good', 18, '2021-05-18 05:19:34', 1),
(7665, 4887, 18, 'Importance Of Job', 5, 'Highly needed', 18, '2021-05-18 05:19:34', 1),
(7666, 4887, 18, 'Observation Skills', 4, 'Good', 18, '2021-05-18 05:19:34', 1),
(7667, 4887, 18, 'Pressure Handling', 4, 'Can handle', 18, '2021-05-18 05:19:34', 1),
(7668, 4887, 18, 'patience', 3, 'Good', 18, '2021-05-18 05:19:34', 1),
(7669, 4887, 18, 'Sustainability', 4, 'Yes', 18, '2021-05-18 05:19:34', 1),
(7670, 4887, 18, 'Sales Experience', 3, 'Ok', 18, '2021-05-18 05:19:34', 1),
(7671, 4619, 18, 'Appearance', 4, 'Good', 18, '2021-05-18 05:25:48', 1),
(7672, 4619, 18, 'Attitude', 4, 'Good', 18, '2021-05-18 05:25:48', 1),
(7673, 4619, 18, 'Communication (English)', 4, 'GOOD', 18, '2021-05-18 05:25:48', 1),
(7674, 4619, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-05-18 05:25:48', 1),
(7675, 4619, 18, 'Convincing Skills', 4, 'Good', 18, '2021-05-18 05:25:48', 1),
(7676, 4619, 18, 'Confidence Level', 4, 'Good', 18, '2021-05-18 05:25:48', 1),
(7677, 4619, 18, 'Importance Of Job', 4, 'Needed', 18, '2021-05-18 05:25:48', 1),
(7678, 4619, 18, 'Observation Skills', 3, 'GOod', 18, '2021-05-18 05:25:48', 1),
(7679, 4619, 18, 'Pressure Handling', 3, 'Decent', 18, '2021-05-18 05:25:48', 1),
(7680, 4619, 18, 'patience', 3, 'Above average', 18, '2021-05-18 05:25:48', 1),
(7681, 4619, 18, 'Sustainability', 4, 'Yes as he is santosh reference', 18, '2021-05-18 05:25:48', 1),
(7682, 4619, 18, 'Sales Experience', 4, 'Good', 18, '2021-05-18 05:25:48', 1),
(7683, 4619, 18, 'Practical Challenges Outcome', 4, 'Can manage', 18, '2021-05-18 05:25:48', 1),
(7684, 4887, 40, 'Appearance', 3, 'Ok', 40, '2021-05-19 11:35:14', 1),
(7685, 4887, 40, 'Attitude', 4, 'Good', 40, '2021-05-19 11:35:14', 1),
(7686, 4887, 40, 'Communication (English)', 4, 'Good', 40, '2021-05-19 11:35:14', 1),
(7687, 4887, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-05-19 11:35:14', 1),
(7688, 4887, 40, 'Convincing Skills', 3, 'Ok', 40, '2021-05-19 11:35:14', 1),
(7689, 4887, 40, 'Confidence Level', 4, 'Good', 40, '2021-05-19 11:35:14', 1),
(7690, 4887, 40, 'Importance Of Job', 3, 'Having offers with some other companies too', 40, '2021-05-19 11:35:14', 1),
(7691, 4887, 40, 'Observation Skills', 3, 'Good', 40, '2021-05-19 11:35:14', 1),
(7692, 4887, 40, 'Pressure Handling', 3, 'Might be', 40, '2021-05-19 11:35:14', 1),
(7693, 4887, 40, 'patience', 4, 'Yes', 40, '2021-05-19 11:35:14', 1),
(7694, 4887, 40, 'Sustainability', 2, 'Doubt', 40, '2021-05-19 11:35:14', 1),
(7695, 4887, 40, 'Sales Experience', 1, 'Zero', 40, '2021-05-19 11:35:14', 1),
(7696, 4887, 40, 'Existing Experience Analyze', 1, 'Zero', 40, '2021-05-19 11:35:14', 1),
(7697, 4887, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-05-19 11:35:14', 1),
(7698, 4887, 40, 'Willing To Work On Holidays', 3, 'Yeah', 40, '2021-05-19 11:35:14', 1),
(7699, 4891, 40, 'Appearance', 3, 'Ok', 40, '2021-05-19 11:54:20', 1),
(7700, 4891, 40, 'Attitude', 1, 'Zero', 40, '2021-05-19 11:54:20', 1),
(7701, 4891, 40, 'Communication (English)', 3, 'ok', 40, '2021-05-19 11:54:20', 1),
(7702, 4891, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-05-19 11:54:20', 1),
(7703, 4891, 40, 'Convincing Skills', 2, 'Not good', 40, '2021-05-19 11:54:20', 1),
(7704, 4891, 40, 'Confidence Level', 2, 'Not good', 40, '2021-05-19 11:54:20', 1),
(7705, 4891, 40, 'Importance Of Job', 1, 'Doubtful', 40, '2021-05-19 11:54:20', 1),
(7706, 4891, 40, 'Observation Skills', 2, 'Bad', 40, '2021-05-19 11:54:20', 1),
(7707, 4891, 40, 'Pressure Handling', 1, 'Zero', 40, '2021-05-19 11:54:20', 1),
(7708, 4891, 40, 'patience', 1, 'Zero', 40, '2021-05-19 11:54:20', 1),
(7709, 4891, 40, 'Sustainability', 1, 'Zero', 40, '2021-05-19 11:54:20', 1),
(7710, 4891, 40, 'Sales Experience', 1, 'Zero', 40, '2021-05-19 11:54:20', 1),
(7711, 4891, 40, 'Existing Experience Analyze', 1, 'Zero', 40, '2021-05-19 11:54:20', 1),
(7712, 4891, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-05-19 11:54:20', 1),
(7713, 4891, 40, 'Willing To Work On Holidays', 1, 'Doubtful', 40, '2021-05-19 11:54:20', 1),
(7714, 4889, 40, 'Appearance', 2, 'Not good', 40, '2021-05-19 12:28:42', 1),
(7715, 4889, 40, 'Attitude', 4, 'Good', 40, '2021-05-19 12:28:42', 1),
(7716, 4889, 40, 'Communication (English)', 3, 'Average', 40, '2021-05-19 12:28:42', 1),
(7717, 4889, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-05-19 12:28:42', 1),
(7718, 4889, 40, 'Convincing Skills', 2, 'Not good', 40, '2021-05-19 12:28:42', 1),
(7719, 4889, 40, 'Confidence Level', 3, 'Might be', 40, '2021-05-19 12:28:42', 1),
(7720, 4889, 40, 'Importance Of Job', 4, 'Yes', 40, '2021-05-19 12:28:42', 1),
(7721, 4889, 40, 'Observation Skills', 2, 'Ok', 40, '2021-05-19 12:28:42', 1),
(7722, 4889, 40, 'Pressure Handling', 3, 'Zero', 40, '2021-05-19 12:28:42', 1),
(7723, 4889, 40, 'patience', 3, 'Ok', 40, '2021-05-19 12:28:42', 1),
(7724, 4889, 40, 'Sustainability', 2, 'Doubtful', 40, '2021-05-19 12:28:42', 1),
(7725, 4889, 40, 'Sales Experience', 4, 'Not relevant exp', 40, '2021-05-19 12:28:42', 1),
(7726, 4889, 40, 'Existing Experience Analyze', 2, 'Ok', 40, '2021-05-19 12:28:42', 1),
(7727, 4889, 40, 'Practical Challenges Outcome', 2, 'Ok', 40, '2021-05-19 12:28:42', 1),
(7728, 4889, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-05-19 12:28:42', 1),
(7729, 4932, 40, 'Appearance', 2, 'Not in a professional attire', 40, '2021-05-21 01:44:31', 1),
(7730, 4932, 40, 'Attitude', 4, 'Professional', 40, '2021-05-21 01:44:31', 1),
(7731, 4932, 40, 'Communication (English)', 5, 'Excellent', 40, '2021-05-21 01:44:31', 1),
(7732, 4932, 40, 'Communication (Tamil)', 3, 'Ok in local language', 40, '2021-05-21 01:44:31', 1),
(7733, 4932, 40, 'Convincing Skills', 4, 'Good', 40, '2021-05-21 01:44:31', 1),
(7734, 4932, 40, 'Confidence Level', 4, 'Good', 40, '2021-05-21 01:44:31', 1),
(7735, 4932, 40, 'Importance Of Job', 4, 'Immediately can join ', 40, '2021-05-21 01:44:31', 1),
(7736, 4932, 40, 'Observation Skills', 4, 'Good', 40, '2021-05-21 01:44:31', 1),
(7737, 4932, 40, 'Pressure Handling', 3, 'Ok', 40, '2021-05-21 01:44:31', 1),
(7738, 4932, 40, 'patience', 4, 'Good', 40, '2021-05-21 01:44:31', 1),
(7739, 4932, 40, 'Sustainability', 3, 'Doubtful', 40, '2021-05-21 01:44:31', 1),
(7740, 4932, 40, 'Sales Experience', 2, 'Not in field sales', 40, '2021-05-21 01:44:31', 1),
(7741, 4932, 40, 'Existing Experience Analyze', 3, 'Average', 40, '2021-05-21 01:44:31', 1),
(7742, 4932, 40, 'Practical Challenges Outcome', 3, 'Ok', 40, '2021-05-21 01:44:31', 1),
(7743, 4932, 40, 'Willing To Work On Holidays', 5, 'Yes he would be', 40, '2021-05-21 01:44:31', 1),
(7744, 4928, 18, 'Appearance', 4, 'Good', 18, '2021-05-21 05:22:17', 1),
(7745, 4928, 18, 'Attitude', 4, 'Good', 18, '2021-05-21 05:22:17', 1),
(7746, 4928, 18, 'Communication (English)', 4, 'Goodd', 18, '2021-05-21 05:22:17', 1),
(7747, 4928, 18, 'Convincing Skills', 3, 'Average', 18, '2021-05-21 05:22:17', 1),
(7748, 4928, 18, 'Confidence Level', 4, 'Good', 18, '2021-05-21 05:22:17', 1),
(7749, 4928, 18, 'Importance Of Job', 3, 'Average', 18, '2021-05-21 05:22:17', 1),
(7750, 4928, 18, 'Observation Skills', 4, 'Good', 18, '2021-05-21 05:22:17', 1),
(7751, 4928, 18, 'Pressure Handling', 3, 'Average', 18, '2021-05-21 05:22:17', 1),
(7752, 4928, 18, 'patience', 4, 'Good', 18, '2021-05-21 05:22:17', 1),
(7753, 4928, 18, 'Sustainability', 3, 'Average', 18, '2021-05-21 05:22:17', 1),
(7754, 4928, 18, 'Sales Experience', 1, 'Nil', 18, '2021-05-21 05:22:17', 1),
(7755, 4928, 18, 'Existing Experience Analyze', 1, 'Fresher', 18, '2021-05-21 05:22:17', 1),
(7756, 4938, 40, 'Appearance', 3, 'Ok', 40, '2021-05-22 12:44:49', 1),
(7757, 4938, 40, 'Attitude', 3, 'Average', 40, '2021-05-22 12:44:49', 1),
(7758, 4938, 40, 'Communication (English)', 3, 'Average', 40, '2021-05-22 12:44:49', 1),
(7759, 4938, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-05-22 12:44:49', 1),
(7760, 4938, 40, 'Convincing Skills', 2, 'Fresher', 40, '2021-05-22 12:44:49', 1),
(7761, 4938, 40, 'Confidence Level', 3, 'Average', 40, '2021-05-22 12:44:49', 1),
(7762, 4938, 40, 'Importance Of Job', 3, 'Immediate joinee', 40, '2021-05-22 12:44:49', 1),
(7763, 4938, 40, 'Observation Skills', 3, 'Average', 40, '2021-05-22 12:44:49', 1),
(7764, 4938, 40, 'Pressure Handling', 2, 'Fresher for sales', 40, '2021-05-22 12:44:49', 1),
(7765, 4938, 40, 'patience', 3, 'Ok', 40, '2021-05-22 12:44:49', 1),
(7766, 4938, 40, 'Sustainability', 3, 'Doubtful', 40, '2021-05-22 12:44:49', 1),
(7767, 4938, 40, 'Sales Experience', 1, 'Zero', 40, '2021-05-22 12:44:49', 1),
(7768, 4938, 40, 'Existing Experience Analyze', 1, 'Zero', 40, '2021-05-22 12:44:49', 1),
(7769, 4938, 40, 'Practical Challenges Outcome', 3, 'Ok', 40, '2021-05-22 12:44:49', 1),
(7770, 4938, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-05-22 12:44:49', 1),
(7771, 4928, 40, 'Appearance', 4, 'Good', 40, '2021-05-22 12:47:47', 1),
(7772, 4928, 40, 'Attitude', 4, 'Good', 40, '2021-05-22 12:47:47', 1),
(7773, 4928, 40, 'Communication (English)', 2, 'Below Average', 40, '2021-05-22 12:47:47', 1),
(7774, 4928, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-05-22 12:47:47', 1),
(7775, 4928, 40, 'Convincing Skills', 1, 'Fresher', 40, '2021-05-22 12:47:47', 1),
(7776, 4928, 40, 'Confidence Level', 3, 'Average', 40, '2021-05-22 12:47:47', 1),
(7777, 4928, 40, 'Importance Of Job', 3, 'Might be', 40, '2021-05-22 12:47:47', 1),
(7778, 4928, 40, 'Observation Skills', 3, 'Ok', 40, '2021-05-22 12:47:47', 1),
(7779, 4928, 40, 'Pressure Handling', 1, 'Fresher', 40, '2021-05-22 12:47:47', 1),
(7780, 4928, 40, 'patience', 3, 'Average', 40, '2021-05-22 12:47:47', 1),
(7781, 4928, 40, 'Sustainability', 3, 'May be', 40, '2021-05-22 12:47:47', 1),
(7782, 4928, 40, 'Sales Experience', 1, 'Zero', 40, '2021-05-22 12:47:47', 1),
(7783, 4928, 40, 'Existing Experience Analyze', 1, 'Zero', 40, '2021-05-22 12:47:47', 1),
(7784, 4928, 40, 'Practical Challenges Outcome', 3, 'Ok', 40, '2021-05-22 12:47:47', 1),
(7785, 4928, 40, 'Willing To Work On Holidays', 5, 'Yes he would be', 40, '2021-05-22 12:47:47', 1),
(7786, 4774, 18, 'Appearance', 4, 'Good', 18, '2021-05-23 08:01:51', 1),
(7787, 4774, 18, 'Convincing Skills', 4, 'Good', 18, '2021-05-23 08:01:51', 1),
(7788, 4774, 18, 'Importance Of Job', 5, 'Needed', 18, '2021-05-23 08:01:51', 1),
(7789, 4774, 18, 'Sustainability', 3, 'Ok', 18, '2021-05-23 08:01:51', 1),
(7790, 4774, 18, 'Sales Experience', 4, 'Good', 18, '2021-05-23 08:01:51', 1),
(7791, 4932, 18, 'Appearance', 4, 'Good', 18, '2021-05-23 09:15:19', 1),
(7792, 4932, 18, 'Attitude', 5, 'Sweet', 18, '2021-05-23 09:15:19', 1),
(7793, 4932, 18, 'Communication (English)', 4, 'Good', 18, '2021-05-23 09:15:19', 1),
(7794, 4932, 18, 'Convincing Skills', 3, 'Average', 18, '2021-05-23 09:15:19', 1),
(7795, 4932, 18, 'Confidence Level', 4, 'Good', 18, '2021-05-23 09:15:19', 1),
(7796, 4932, 18, 'Importance Of Job', 4, 'Needed', 18, '2021-05-23 09:15:19', 1),
(7797, 4932, 18, 'Observation Skills', 4, 'Good', 18, '2021-05-23 09:15:19', 1),
(7798, 4932, 18, 'Pressure Handling', 3, 'Ok', 18, '2021-05-23 09:15:19', 1),
(7799, 4932, 18, 'patience', 5, 'Good', 18, '2021-05-23 09:15:19', 1),
(7800, 4932, 18, 'Sustainability', 4, 'Good', 18, '2021-05-23 09:15:19', 1),
(7801, 4932, 18, 'Sales Experience', 2, 'Average', 18, '2021-05-23 09:15:19', 1),
(7802, 4932, 18, 'Existing Experience Analyze', 5, 'Good', 18, '2021-05-23 09:15:19', 1),
(7803, 4932, 18, 'Practical Challenges Outcome', 4, 'Good', 18, '2021-05-23 09:15:19', 1),
(7804, 4932, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2021-05-23 09:15:19', 1),
(7805, 4969, 40, 'Appearance', 3, 'Good', 40, '2021-06-01 04:05:28', 1),
(7806, 4969, 40, 'Attitude', 3, 'Good', 40, '2021-06-01 04:05:28', 1),
(7807, 4969, 40, 'Communication (English)', 4, 'Excellent', 40, '2021-06-01 04:05:28', 1),
(7808, 4969, 40, 'Communication (Tamil)', 3, 'Good', 40, '2021-06-01 04:05:28', 1),
(7809, 4969, 40, 'Convincing Skills', 3, 'Good', 40, '2021-06-01 04:05:28', 1),
(7810, 4969, 40, 'Confidence Level', 4, 'Good', 40, '2021-06-01 04:05:28', 1),
(7811, 4969, 40, 'Importance Of Job', 4, 'Good', 40, '2021-06-01 04:05:28', 1),
(7812, 4969, 40, 'Observation Skills', 4, 'Good', 40, '2021-06-01 04:05:28', 1),
(7813, 4969, 40, 'Pressure Handling', 3, 'Good', 40, '2021-06-01 04:05:28', 1),
(7814, 4969, 40, 'patience', 4, 'Good', 40, '2021-06-01 04:05:28', 1),
(7815, 4969, 40, 'Sustainability', 4, 'Good', 40, '2021-06-01 04:05:28', 1),
(7816, 4969, 40, 'Sales Experience', 3, 'Good', 40, '2021-06-01 04:05:28', 1),
(7817, 4969, 40, 'Existing Experience Analyze', 3, 'Good', 40, '2021-06-01 04:05:28', 1),
(7818, 4969, 40, 'Practical Challenges Outcome', 3, 'Good', 40, '2021-06-01 04:05:28', 1),
(7819, 4969, 40, 'Willing To Work On Holidays', 5, 'Good', 40, '2021-06-01 04:05:28', 1),
(7820, 4978, 40, 'Appearance', 3, 'Ok', 40, '2021-06-01 04:39:50', 1),
(7821, 4978, 40, 'Attitude', 3, 'Average', 40, '2021-06-01 04:39:50', 1),
(7822, 4978, 40, 'Communication (English)', 3, 'Average', 40, '2021-06-01 04:39:50', 1),
(7823, 4978, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-06-01 04:39:50', 1),
(7824, 4978, 40, 'Convincing Skills', 3, 'Average', 40, '2021-06-01 04:39:50', 1),
(7825, 4978, 40, 'Confidence Level', 2, 'Below Average', 40, '2021-06-01 04:39:50', 1),
(7826, 4978, 40, 'Importance Of Job', 3, 'Immediate joiner', 40, '2021-06-01 04:39:50', 1),
(7827, 4978, 40, 'Observation Skills', 3, 'Good', 40, '2021-06-01 04:39:50', 1),
(7828, 4978, 40, 'Pressure Handling', 2, 'Doubtful', 40, '2021-06-01 04:39:50', 1),
(7829, 4978, 40, 'patience', 3, 'Ok', 40, '2021-06-01 04:39:50', 1),
(7830, 4978, 40, 'Sustainability', 3, 'Doubtful', 40, '2021-06-01 04:39:50', 1),
(7831, 4978, 40, 'Sales Experience', 2, 'below average', 40, '2021-06-01 04:39:50', 1),
(7832, 4978, 40, 'Existing Experience Analyze', 2, 'Below average', 40, '2021-06-01 04:39:50', 1),
(7833, 4978, 40, 'Practical Challenges Outcome', 3, 'Ok', 40, '2021-06-01 04:39:50', 1),
(7834, 4978, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-06-01 04:39:50', 1),
(7835, 4967, 40, 'Appearance', 2, 'below Average', 40, '2021-06-01 04:41:23', 1),
(7836, 4967, 40, 'Attitude', 3, 'Ok', 40, '2021-06-01 04:41:23', 1),
(7837, 4967, 40, 'Communication (English)', 2, 'Not good', 40, '2021-06-01 04:41:23', 1),
(7838, 4967, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-06-01 04:41:23', 1),
(7839, 4967, 40, 'Convincing Skills', 2, 'No', 40, '2021-06-01 04:41:23', 1),
(7840, 4967, 40, 'Confidence Level', 2, 'Bad', 40, '2021-06-01 04:41:23', 1),
(7841, 4967, 40, 'Importance Of Job', 3, 'immediate Joiner', 40, '2021-06-01 04:41:23', 1),
(7842, 4967, 40, 'Observation Skills', 2, 'very low', 40, '2021-06-01 04:41:23', 1),
(7843, 4967, 40, 'Pressure Handling', 2, 'Doubtful', 40, '2021-06-01 04:41:23', 1),
(7844, 4967, 40, 'patience', 3, 'Average', 40, '2021-06-01 04:41:23', 1),
(7845, 4967, 40, 'Sustainability', 3, 'Doubtful', 40, '2021-06-01 04:41:23', 1),
(7846, 4967, 40, 'Sales Experience', 3, 'Doubtful', 40, '2021-06-01 04:41:23', 1),
(7847, 4967, 40, 'Existing Experience Analyze', 2, 'Below average', 40, '2021-06-01 04:41:23', 1),
(7848, 4967, 40, 'Practical Challenges Outcome', 2, 'Bad', 40, '2021-06-01 04:41:23', 1),
(7849, 4967, 40, 'Willing To Work On Holidays', 3, 'Doubtful', 40, '2021-06-01 04:41:23', 1),
(7850, 4968, 40, 'Appearance', 2, 'Ok', 40, '2021-06-01 04:42:59', 1),
(7851, 4968, 40, 'Attitude', 2, 'Zero', 40, '2021-06-01 04:42:59', 1),
(7852, 4968, 40, 'Communication (English)', 3, 'Ok', 40, '2021-06-01 04:42:59', 1),
(7853, 4968, 40, 'Communication (Tamil)', 5, 'Good ', 40, '2021-06-01 04:42:59', 1),
(7854, 4968, 40, 'Convincing Skills', 2, 'Average', 40, '2021-06-01 04:42:59', 1),
(7855, 4968, 40, 'Confidence Level', 3, 'Ok', 40, '2021-06-01 04:42:59', 1),
(7856, 4968, 40, 'Importance Of Job', 2, 'No', 40, '2021-06-01 04:42:59', 1),
(7857, 4968, 40, 'Observation Skills', 2, 'Bad', 40, '2021-06-01 04:42:59', 1),
(7858, 4968, 40, 'Pressure Handling', 2, 'Below Average', 40, '2021-06-01 04:42:59', 1),
(7859, 4968, 40, 'patience', 3, 'Ok', 40, '2021-06-01 04:42:59', 1),
(7860, 4968, 40, 'Sustainability', 1, 'Doubtful', 40, '2021-06-01 04:42:59', 1),
(7861, 4968, 40, 'Sales Experience', 1, 'Zero', 40, '2021-06-01 04:42:59', 1),
(7862, 4968, 40, 'Existing Experience Analyze', 1, 'Zero', 40, '2021-06-01 04:42:59', 1),
(7863, 4968, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-06-01 04:42:59', 1),
(7864, 4968, 40, 'Willing To Work On Holidays', 3, 'Sometimes', 40, '2021-06-01 04:42:59', 1),
(7865, 4975, 40, 'Appearance', 2, 'Not a professional aatire', 40, '2021-06-01 04:44:29', 1),
(7866, 4975, 40, 'Attitude', 3, 'Ok', 40, '2021-06-01 04:44:29', 1),
(7867, 4975, 40, 'Communication (English)', 3, 'Ok', 40, '2021-06-01 04:44:29', 1),
(7868, 4975, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-06-01 04:44:29', 1),
(7869, 4975, 40, 'Convincing Skills', 2, 'Bad', 40, '2021-06-01 04:44:29', 1),
(7870, 4975, 40, 'Confidence Level', 4, 'Good', 40, '2021-06-01 04:44:29', 1),
(7871, 4975, 40, 'Importance Of Job', 2, 'No', 40, '2021-06-01 04:44:29', 1),
(7872, 4975, 40, 'Observation Skills', 3, 'Ok', 40, '2021-06-01 04:44:29', 1),
(7873, 4975, 40, 'Pressure Handling', 2, 'Average', 40, '2021-06-01 04:44:29', 1),
(7874, 4975, 40, 'patience', 4, 'Good', 40, '2021-06-01 04:44:29', 1),
(7875, 4975, 40, 'Sustainability', 1, 'No', 40, '2021-06-01 04:44:29', 1),
(7876, 4975, 40, 'Sales Experience', 1, 'Zero ', 40, '2021-06-01 04:44:29', 1),
(7877, 4975, 40, 'Existing Experience Analyze', 1, 'Zero', 40, '2021-06-01 04:44:29', 1),
(7878, 4975, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-06-01 04:44:29', 1),
(7879, 4975, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-06-01 04:44:29', 1),
(7880, 4977, 40, 'Appearance', 3, 'Ok', 40, '2021-06-01 04:45:55', 1),
(7881, 4977, 40, 'Attitude', 3, 'Ok', 40, '2021-06-01 04:45:55', 1),
(7882, 4977, 40, 'Communication (English)', 1, 'Bad', 40, '2021-06-01 04:45:55', 1),
(7883, 4977, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-06-01 04:45:55', 1),
(7884, 4977, 40, 'Convincing Skills', 2, 'Bad', 40, '2021-06-01 04:45:55', 1),
(7885, 4977, 40, 'Confidence Level', 4, 'Good', 40, '2021-06-01 04:45:55', 1),
(7886, 4977, 40, 'Importance Of Job', 1, 'No', 40, '2021-06-01 04:45:55', 1),
(7887, 4977, 40, 'Observation Skills', 2, 'No', 40, '2021-06-01 04:45:55', 1),
(7888, 4977, 40, 'Pressure Handling', 1, 'bad', 40, '2021-06-01 04:45:55', 1),
(7889, 4977, 40, 'patience', 1, 'Zero', 40, '2021-06-01 04:45:55', 1),
(7890, 4977, 40, 'Sustainability', 3, 'Average', 40, '2021-06-01 04:45:55', 1),
(7891, 4977, 40, 'Sales Experience', 3, 'Average', 40, '2021-06-01 04:45:55', 1),
(7892, 4977, 40, 'Existing Experience Analyze', 1, 'No', 40, '2021-06-01 04:45:55', 1),
(7893, 4977, 40, 'Practical Challenges Outcome', 2, 'Average', 40, '2021-06-01 04:45:55', 1),
(7894, 4977, 40, 'Willing To Work On Holidays', 1, 'Doubtful', 40, '2021-06-01 04:45:55', 1),
(7895, 4979, 40, 'Appearance', 3, 'Ok', 40, '2021-06-01 04:47:24', 1),
(7896, 4979, 40, 'Attitude', 3, 'Ok', 40, '2021-06-01 04:47:24', 1),
(7897, 4979, 40, 'Communication (English)', 2, 'Average', 40, '2021-06-01 04:47:24', 1),
(7898, 4979, 40, 'Communication (Tamil)', 4, 'Good', 40, '2021-06-01 04:47:24', 1),
(7899, 4979, 40, 'Convincing Skills', 3, 'Average', 40, '2021-06-01 04:47:24', 1),
(7900, 4979, 40, 'Confidence Level', 1, 'Zero', 40, '2021-06-01 04:47:24', 1),
(7901, 4979, 40, 'Importance Of Job', 2, 'doubtful', 40, '2021-06-01 04:47:24', 1),
(7902, 4979, 40, 'Observation Skills', 2, 'bad', 40, '2021-06-01 04:47:24', 1),
(7903, 4979, 40, 'Pressure Handling', 3, 'ok', 40, '2021-06-01 04:47:24', 1),
(7904, 4979, 40, 'patience', 4, 'good', 40, '2021-06-01 04:47:24', 1),
(7905, 4979, 40, 'Sustainability', 2, 'doubtful', 40, '2021-06-01 04:47:24', 1),
(7906, 4979, 40, 'Sales Experience', 2, 'average', 40, '2021-06-01 04:47:24', 1),
(7907, 4979, 40, 'Existing Experience Analyze', 3, 'ok', 40, '2021-06-01 04:47:24', 1),
(7908, 4979, 40, 'Practical Challenges Outcome', 3, 'ok', 40, '2021-06-01 04:47:24', 1),
(7909, 4979, 40, 'Willing To Work On Holidays', 5, 'yes', 40, '2021-06-01 04:47:24', 1),
(7910, 5021, 8, 'Communication (English)', 3, 'avg', 8, '2021-06-01 05:41:45', 1),
(7911, 5021, 8, 'Convincing Skills', 3, 'okay', 8, '2021-06-01 05:41:45', 1),
(7912, 5021, 8, 'Importance Of Job', 3, 'yes', 8, '2021-06-01 05:41:45', 1),
(7913, 5021, 8, 'Sales Experience', 3, '3.5yr into sales, but fresher for insurance', 8, '2021-06-01 05:41:45', 1),
(7914, 4993, 8, 'Appearance', 4, 'good', 8, '2021-06-01 05:45:03', 1),
(7915, 4993, 8, 'Attitude', 3, 'okay', 8, '2021-06-01 05:45:03', 1),
(7916, 4993, 8, 'Communication (English)', 4, 'good', 8, '2021-06-01 05:45:03', 1),
(7917, 4993, 8, 'Confidence Level', 4, 'too good', 8, '2021-06-01 05:45:03', 1),
(7918, 4993, 8, 'Importance Of Job', 3, 'cross check once', 8, '2021-06-01 05:45:03', 1),
(7919, 4993, 8, 'Existing Experience Analyze', 3, 'good', 8, '2021-06-01 05:45:03', 1),
(7920, 4998, 8, 'Communication (English)', 2, 'very native', 8, '2021-06-01 05:46:08', 1),
(7921, 4998, 8, 'Convincing Skills', 3, 'avg', 8, '2021-06-01 05:46:08', 1),
(7922, 4998, 8, 'Confidence Level', 3, 'avg', 8, '2021-06-01 05:46:08', 1),
(7923, 4998, 8, 'Sales Experience', 2, 'fresher', 8, '2021-06-01 05:46:08', 1),
(7924, 5021, 40, 'Appearance', 1, 'Bad', 40, '2021-06-01 06:07:30', 1),
(7925, 5021, 40, 'Attitude', 2, 'Not good', 40, '2021-06-01 06:07:30', 1),
(7926, 5021, 40, 'Communication (English)', 1, 'Not good', 40, '2021-06-01 06:07:30', 1),
(7927, 5021, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-06-01 06:07:30', 1),
(7928, 5021, 40, 'Convincing Skills', 3, 'Bad', 40, '2021-06-01 06:07:30', 1),
(7929, 5021, 40, 'Confidence Level', 1, 'Zero', 40, '2021-06-01 06:07:30', 1),
(7930, 5021, 40, 'Importance Of Job', 2, 'No', 40, '2021-06-01 06:07:30', 1),
(7931, 5021, 40, 'Observation Skills', 1, 'Bad', 40, '2021-06-01 06:07:30', 1),
(7932, 5021, 40, 'Pressure Handling', 1, 'Zero', 40, '2021-06-01 06:07:30', 1),
(7933, 5021, 40, 'patience', 2, 'Bad', 40, '2021-06-01 06:07:30', 1),
(7934, 5021, 40, 'Sustainability', 1, 'Doubtful', 40, '2021-06-01 06:07:30', 1),
(7935, 5021, 40, 'Sales Experience', 3, 'Irrelevant', 40, '2021-06-01 06:07:30', 1),
(7936, 5021, 40, 'Existing Experience Analyze', 1, 'Bad', 40, '2021-06-01 06:07:30', 1),
(7937, 5021, 40, 'Practical Challenges Outcome', 1, 'Bad', 40, '2021-06-01 06:07:30', 1),
(7938, 5021, 40, 'Willing To Work On Holidays', 3, 'Might be', 40, '2021-06-01 06:07:30', 1),
(7939, 4803, 13, 'Attitude', 3, 'well behaved and  performing good', 13, '2021-06-01 07:44:04', 1),
(7940, 4803, 13, 'Communication (Tamil)', 4, 'completed tamil litreture so language fluency is good', 13, '2021-06-01 07:44:04', 1),
(7941, 4803, 13, 'Confidence Level', 2, 'better confidence', 13, '2021-06-01 07:44:04', 1),
(7942, 4803, 13, 'Sustainability', 3, 'have no extra commitment so good only', 13, '2021-06-01 07:44:04', 1),
(7943, 4862, 13, 'Communication (Tamil)', 3, 'fluency is better only in tamil', 13, '2021-06-01 07:46:34', 1),
(7944, 4862, 13, 'Confidence Level', 3, 'already experience having so lots of confidene', 13, '2021-06-01 07:46:34', 1),
(7945, 4862, 13, 'Importance (Job)', 2, 'family in moderate condition need a job now', 13, '2021-06-01 07:46:34', 1),
(7946, 4864, 13, 'Attitude', 2, 'good attitude', 13, '2021-06-01 07:48:50', 1),
(7947, 4864, 13, 'Confidence Level', 2, 'lots confidence in this field', 13, '2021-06-01 07:48:50', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(7948, 4864, 13, 'Importance (Job)', 3, 'well planned for future so job is more importance', 13, '2021-06-01 07:48:50', 1),
(7949, 4873, 13, 'Attitude', 2, 'good attention in while performing interview well behaved', 13, '2021-06-01 07:53:10', 1),
(7950, 4873, 13, 'Communication (Tamil)', 3, 'good fluency in language', 13, '2021-06-01 07:53:10', 1),
(7951, 4873, 13, 'Importance (Job)', 2, 'family in poor only so job is more important', 13, '2021-06-01 07:53:10', 1),
(7952, 5044, 13, 'Attitude', 2, 'PERFORMING GOOD AND GOOD EXPOSURE', 13, '2021-06-01 07:55:10', 1),
(7953, 5044, 13, 'Communication (Tamil)', 3, 'GOOD FLUENCY', 13, '2021-06-01 07:55:10', 1),
(7954, 5044, 13, 'Pressure Handling', 3, 'ALL READY WORKED SO GOOD ONLY IN THIS SITUATION', 13, '2021-06-01 07:55:10', 1),
(7955, 4860, 13, 'Attitude', 3, 'HIGHLY EXPOSED CANDIDATE', 13, '2021-06-01 08:03:36', 1),
(7956, 4860, 13, 'Communication (Tamil)', 2, 'FAST SPEAKING FLUENCY IN TAMIL', 13, '2021-06-01 08:03:36', 1),
(7957, 4860, 13, 'Confidence Level', 2, 'OVER CONFIDENCE AND HARD WORKING CAPACITY', 13, '2021-06-01 08:03:36', 1),
(7958, 4861, 13, 'Attitude', 2, 'GOOD ONLY IN ATTITUDE', 13, '2021-06-01 08:06:27', 1),
(7959, 4861, 13, 'Communication (Tamil)', 2, 'GOOD PERFORMING AND FLUENCY IS GOOD', 13, '2021-06-01 08:06:27', 1),
(7960, 4861, 13, 'Importance (Job)', 2, 'VERY POOR FAMILY MORE IMPORTANT', 13, '2021-06-01 08:06:27', 1),
(7961, 5062, 14, 'Communication (Tamil)', 4, 'Good', 14, '2021-06-09 05:48:28', 1),
(7962, 5062, 14, 'convincing Skills', 4, 'Good', 14, '2021-06-09 05:48:28', 1),
(7963, 5083, 40, 'Appearance', 4, 'Good', 40, '2021-06-10 02:28:39', 1),
(7964, 5083, 40, 'Attitude', 4, 'Good', 40, '2021-06-10 02:28:39', 1),
(7965, 5083, 40, 'Communication (English)', 4, 'Good', 40, '2021-06-10 02:28:39', 1),
(7966, 5083, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-06-10 02:28:39', 1),
(7967, 5083, 40, 'Convincing Skills', 3, 'Ok', 40, '2021-06-10 02:28:39', 1),
(7968, 5083, 40, 'Confidence Level', 4, 'Good', 40, '2021-06-10 02:28:39', 1),
(7969, 5083, 40, 'Importance Of Job', 4, 'Yes', 40, '2021-06-10 02:28:39', 1),
(7970, 5083, 40, 'Observation Skills', 4, 'Good', 40, '2021-06-10 02:28:39', 1),
(7971, 5083, 40, 'Pressure Handling', 4, 'Good', 40, '2021-06-10 02:28:39', 1),
(7972, 5083, 40, 'patience', 4, 'Good', 40, '2021-06-10 02:28:39', 1),
(7973, 5083, 40, 'Sustainability', 4, 'Good', 40, '2021-06-10 02:28:39', 1),
(7974, 5083, 40, 'Sales Experience', 3, 'Average', 40, '2021-06-10 02:28:39', 1),
(7975, 5083, 40, 'Existing Experience Analyze', 3, 'Ok', 40, '2021-06-10 02:28:39', 1),
(7976, 5083, 40, 'Practical Challenges Outcome', 3, 'Ok', 40, '2021-06-10 02:28:39', 1),
(7977, 5083, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-06-10 02:28:39', 1),
(7978, 5080, 40, 'Appearance', 2, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7979, 5080, 40, 'Attitude', 2, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7980, 5080, 40, 'Communication (English)', 3, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7981, 5080, 40, 'Communication (Tamil)', 5, 'Ok', 40, '2021-06-10 04:48:43', 1),
(7982, 5080, 40, 'Convincing Skills', 2, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7983, 5080, 40, 'Confidence Level', 2, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7984, 5080, 40, 'Importance Of Job', 2, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7985, 5080, 40, 'Observation Skills', 1, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7986, 5080, 40, 'Pressure Handling', 2, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7987, 5080, 40, 'patience', 2, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7988, 5080, 40, 'Sustainability', 2, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7989, 5080, 40, 'Sales Experience', 2, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7990, 5080, 40, 'Existing Experience Analyze', 1, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7991, 5080, 40, 'Practical Challenges Outcome', 1, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7992, 5080, 40, 'Willing To Work On Holidays', 1, 'Bad', 40, '2021-06-10 04:48:43', 1),
(7993, 5085, 40, 'Appearance', 3, 'Ok', 40, '2021-06-10 04:50:21', 1),
(7994, 5085, 40, 'Attitude', 4, 'Good', 40, '2021-06-10 04:50:21', 1),
(7995, 5085, 40, 'Communication (English)', 1, 'Bad', 40, '2021-06-10 04:50:21', 1),
(7996, 5085, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-06-10 04:50:21', 1),
(7997, 5085, 40, 'Convincing Skills', 2, 'Bad', 40, '2021-06-10 04:50:21', 1),
(7998, 5085, 40, 'Confidence Level', 1, 'Bad', 40, '2021-06-10 04:50:21', 1),
(7999, 5085, 40, 'Importance Of Job', 4, 'Good', 40, '2021-06-10 04:50:21', 1),
(8000, 5085, 40, 'Observation Skills', 1, 'Bad', 40, '2021-06-10 04:50:21', 1),
(8001, 5085, 40, 'Pressure Handling', 1, 'Bad', 40, '2021-06-10 04:50:21', 1),
(8002, 5085, 40, 'patience', 2, 'Bad', 40, '2021-06-10 04:50:21', 1),
(8003, 5085, 40, 'Sustainability', 1, 'Bad', 40, '2021-06-10 04:50:21', 1),
(8004, 5085, 40, 'Sales Experience', 1, 'Bad', 40, '2021-06-10 04:50:21', 1),
(8005, 5085, 40, 'Existing Experience Analyze', 1, 'Bad', 40, '2021-06-10 04:50:21', 1),
(8006, 5085, 40, 'Practical Challenges Outcome', 1, 'Bad', 40, '2021-06-10 04:50:21', 1),
(8007, 5085, 40, 'Willing To Work On Holidays', 3, 'Ok', 40, '2021-06-10 04:50:21', 1),
(8008, 5083, 18, 'Appearance', 4, 'Good', 18, '2021-06-11 12:07:35', 1),
(8009, 5083, 18, 'Attitude', 4, 'Good', 18, '2021-06-11 12:07:35', 1),
(8010, 5083, 18, 'Communication (English)', 4, 'Good', 18, '2021-06-11 12:07:35', 1),
(8011, 5083, 18, 'Convincing Skills', 3, 'Ok for the time being', 18, '2021-06-11 12:07:35', 1),
(8012, 5083, 18, 'Confidence Level', 4, 'Good', 18, '2021-06-11 12:07:35', 1),
(8013, 5083, 18, 'Importance Of Job', 4, 'Needed', 18, '2021-06-11 12:07:35', 1),
(8014, 5083, 18, 'Observation Skills', 3, 'Ok', 18, '2021-06-11 12:07:35', 1),
(8015, 5083, 18, 'patience', 4, 'Good', 18, '2021-06-11 12:07:35', 1),
(8016, 5083, 18, 'Sustainability', 2, 'Need to filter in 1st week', 18, '2021-06-11 12:07:35', 1),
(8017, 5083, 18, 'Sales Experience', 2, 'Poor', 18, '2021-06-11 12:07:35', 1),
(8018, 5076, 18, 'Appearance', 3, 'Ok', 18, '2021-06-11 02:54:22', 1),
(8019, 5076, 18, 'Attitude', 4, 'Good', 18, '2021-06-11 02:54:22', 1),
(8020, 5076, 18, 'Communication (English)', 4, 'Good', 18, '2021-06-11 02:54:22', 1),
(8021, 5076, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-06-11 02:54:22', 1),
(8022, 5076, 18, 'Convincing Skills', 4, 'Good', 18, '2021-06-11 02:54:22', 1),
(8023, 5076, 18, 'Confidence Level', 4, 'Good', 18, '2021-06-11 02:54:22', 1),
(8024, 5076, 18, 'Importance Of Job', 5, 'Highly required', 18, '2021-06-11 02:54:22', 1),
(8025, 5076, 18, 'Observation Skills', 3, 'Ok', 18, '2021-06-11 02:54:22', 1),
(8026, 5076, 18, 'patience', 4, 'Good', 18, '2021-06-11 02:54:22', 1),
(8027, 5076, 18, 'Sustainability', 4, 'Good', 18, '2021-06-11 02:54:22', 1),
(8028, 5076, 18, 'Sales Experience', 4, 'Good', 18, '2021-06-11 02:54:22', 1),
(8029, 5076, 18, 'Existing Experience Analyze', 4, 'Neat', 18, '2021-06-11 02:54:22', 1),
(8030, 5076, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2021-06-11 02:54:22', 1),
(8031, 5053, 13, 'Attitude', 3, 'good only  ', 13, '2021-06-12 12:09:58', 1),
(8032, 5053, 13, 'Communication (Tamil)', 3, 'clear voice modulation and clarity', 13, '2021-06-12 12:09:58', 1),
(8033, 5053, 13, 'Importance (Job)', 4, 'more important needed candidate', 13, '2021-06-12 12:09:58', 1),
(8034, 5053, 13, 'patience', 3, 'good only', 13, '2021-06-12 12:09:58', 1),
(8035, 5120, 13, 'Attitude', 3, 'talk active and adaptive person', 13, '2021-06-14 10:50:41', 1),
(8036, 5120, 13, 'Communication (Tamil)', 4, 'have good communication  skills', 13, '2021-06-14 10:50:41', 1),
(8037, 5120, 13, 'Importance (Job)', 3, 'much more important', 13, '2021-06-14 10:50:41', 1),
(8038, 5120, 13, 'Observation skills', 4, 'fast thinking and good lisener too', 13, '2021-06-14 10:50:41', 1),
(8039, 5111, 40, 'Appearance', 4, 'Good', 40, '2021-06-14 03:13:50', 1),
(8040, 5111, 40, 'Attitude', 1, 'Bad', 40, '2021-06-14 03:13:50', 1),
(8041, 5111, 40, 'Communication (English)', 1, 'Poor', 40, '2021-06-14 03:13:50', 1),
(8042, 5111, 40, 'Communication (Tamil)', 3, 'Average in his local language', 40, '2021-06-14 03:13:50', 1),
(8043, 5111, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-06-14 03:13:50', 1),
(8044, 5111, 40, 'Confidence Level', 1, 'Poor', 40, '2021-06-14 03:13:50', 1),
(8045, 5111, 40, 'Importance Of Job', 1, 'Doubtful', 40, '2021-06-14 03:13:50', 1),
(8046, 5111, 40, 'Observation Skills', 1, 'Poor', 40, '2021-06-14 03:13:50', 1),
(8047, 5111, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-06-14 03:13:50', 1),
(8048, 5111, 40, 'patience', 1, 'Poor', 40, '2021-06-14 03:13:50', 1),
(8049, 5111, 40, 'Sustainability', 1, 'Doubtful', 40, '2021-06-14 03:13:50', 1),
(8050, 5111, 40, 'Sales Experience', 1, 'Irrelevant', 40, '2021-06-14 03:13:50', 1),
(8051, 5111, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-06-14 03:13:50', 1),
(8052, 5111, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-06-14 03:13:50', 1),
(8053, 5111, 40, 'Willing To Work On Holidays', 1, 'yet doubtful', 40, '2021-06-14 03:13:50', 1),
(8054, 5112, 40, 'Appearance', 3, 'Ok', 40, '2021-06-14 03:15:12', 1),
(8055, 5112, 40, 'Attitude', 2, 'Poor', 40, '2021-06-14 03:15:12', 1),
(8056, 5112, 40, 'Communication (English)', 2, 'Average', 40, '2021-06-14 03:15:12', 1),
(8057, 5112, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-06-14 03:15:12', 1),
(8058, 5112, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-06-14 03:15:12', 1),
(8059, 5112, 40, 'Confidence Level', 1, 'Poor', 40, '2021-06-14 03:15:12', 1),
(8060, 5112, 40, 'Importance Of Job', 2, 'No', 40, '2021-06-14 03:15:12', 1),
(8061, 5112, 40, 'Observation Skills', 3, 'Average', 40, '2021-06-14 03:15:12', 1),
(8062, 5112, 40, 'Pressure Handling', 2, 'Poor', 40, '2021-06-14 03:15:12', 1),
(8063, 5112, 40, 'patience', 5, 'Good', 40, '2021-06-14 03:15:12', 1),
(8064, 5112, 40, 'Sustainability', 1, 'Doubtful', 40, '2021-06-14 03:15:12', 1),
(8065, 5112, 40, 'Sales Experience', 1, 'No', 40, '2021-06-14 03:15:12', 1),
(8066, 5112, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-06-14 03:15:12', 1),
(8067, 5112, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-06-14 03:15:12', 1),
(8068, 5112, 40, 'Willing To Work On Holidays', 2, 'Doubtful', 40, '2021-06-14 03:15:12', 1),
(8069, 5107, 40, 'Appearance', 4, 'Good', 40, '2021-06-14 03:52:00', 1),
(8070, 5107, 40, 'Attitude', 4, 'Good', 40, '2021-06-14 03:52:00', 1),
(8071, 5107, 40, 'Communication (English)', 2, 'Average', 40, '2021-06-14 03:52:00', 1),
(8072, 5107, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-06-14 03:52:00', 1),
(8073, 5107, 40, 'Convincing Skills', 3, 'Average', 40, '2021-06-14 03:52:00', 1),
(8074, 5107, 40, 'Confidence Level', 4, 'Good', 40, '2021-06-14 03:52:00', 1),
(8075, 5107, 40, 'Importance Of Job', 4, 'Yes', 40, '2021-06-14 03:52:00', 1),
(8076, 5107, 40, 'Observation Skills', 4, 'Good', 40, '2021-06-14 03:52:00', 1),
(8077, 5107, 40, 'Pressure Handling', 2, 'Fresher', 40, '2021-06-14 03:52:00', 1),
(8078, 5107, 40, 'patience', 3, 'New to employment career', 40, '2021-06-14 03:52:00', 1),
(8079, 5107, 40, 'Sustainability', 3, 'Might be', 40, '2021-06-14 03:52:00', 1),
(8080, 5107, 40, 'Sales Experience', 1, 'Zero', 40, '2021-06-14 03:52:00', 1),
(8081, 5107, 40, 'Existing Experience Analyze', 1, 'Fresher', 40, '2021-06-14 03:52:00', 1),
(8082, 5107, 40, 'Practical Challenges Outcome', 1, 'No', 40, '2021-06-14 03:52:00', 1),
(8083, 5107, 40, 'Willing To Work On Holidays', 5, 'He will be', 40, '2021-06-14 03:52:00', 1),
(8084, 5107, 18, 'Appearance', 3, 'Good', 18, '2021-06-14 07:40:22', 1),
(8085, 5107, 18, 'Attitude', 4, 'Good', 18, '2021-06-14 07:40:22', 1),
(8086, 5107, 18, 'Communication (English)', 4, 'Good', 18, '2021-06-14 07:40:22', 1),
(8087, 5107, 18, 'Convincing Skills', 3, 'Good for fresher', 18, '2021-06-14 07:40:22', 1),
(8088, 5107, 18, 'Confidence Level', 4, 'hIGH', 18, '2021-06-14 07:40:22', 1),
(8089, 5107, 18, 'Importance Of Job', 4, 'Required', 18, '2021-06-14 07:40:22', 1),
(8090, 5107, 18, 'Observation Skills', 4, 'Good', 18, '2021-06-14 07:40:22', 1),
(8091, 5107, 18, 'Pressure Handling', 4, 'Good', 18, '2021-06-14 07:40:22', 1),
(8092, 5107, 18, 'patience', 2, 'Average', 18, '2021-06-14 07:40:22', 1),
(8093, 5107, 18, 'Sustainability', 3, 'fresher need to focus', 18, '2021-06-14 07:40:22', 1),
(8094, 5107, 18, 'Sales Experience', 1, 'Nil', 18, '2021-06-14 07:40:22', 1),
(8095, 5105, 40, 'Appearance', 4, 'Good', 40, '2021-06-16 02:47:57', 1),
(8096, 5105, 40, 'Attitude', 4, 'Good', 40, '2021-06-16 02:47:57', 1),
(8097, 5105, 40, 'Communication (English)', 5, 'Good', 40, '2021-06-16 02:47:57', 1),
(8098, 5105, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-06-16 02:47:57', 1),
(8099, 5105, 40, 'Convincing Skills', 3, 'Average', 40, '2021-06-16 02:47:57', 1),
(8100, 5105, 40, 'Confidence Level', 4, 'Good', 40, '2021-06-16 02:47:57', 1),
(8101, 5105, 40, 'Importance Of Job', 4, 'Good', 40, '2021-06-16 02:47:57', 1),
(8102, 5105, 40, 'Observation Skills', 4, 'Good', 40, '2021-06-16 02:47:57', 1),
(8103, 5105, 40, 'Pressure Handling', 3, 'Might be and he is a fresher', 40, '2021-06-16 02:47:57', 1),
(8104, 5105, 40, 'patience', 4, 'Good', 40, '2021-06-16 02:47:57', 1),
(8105, 5105, 40, 'Sustainability', 3, 'Might be', 40, '2021-06-16 02:47:57', 1),
(8106, 5105, 40, 'Sales Experience', 1, 'Zero knowledge he is a fresher', 40, '2021-06-16 02:47:57', 1),
(8107, 5105, 40, 'Existing Experience Analyze', 1, 'No', 40, '2021-06-16 02:47:57', 1),
(8108, 5105, 40, 'Practical Challenges Outcome', 3, 'Ok', 40, '2021-06-16 02:47:57', 1),
(8109, 5105, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-06-16 02:47:57', 1),
(8110, 5132, 40, 'Appearance', 4, 'Good', 40, '2021-06-17 12:11:38', 1),
(8111, 5132, 40, 'Attitude', 2, 'Poor', 40, '2021-06-17 12:11:38', 1),
(8112, 5132, 40, 'Communication (English)', 3, 'Average', 40, '2021-06-17 12:11:38', 1),
(8113, 5132, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-06-17 12:11:38', 1),
(8114, 5132, 40, 'Convincing Skills', 2, 'Fresher', 40, '2021-06-17 12:11:38', 1),
(8115, 5132, 40, 'Confidence Level', 1, 'Poor', 40, '2021-06-17 12:11:38', 1),
(8116, 5132, 40, 'Importance Of Job', 1, 'Doubtful', 40, '2021-06-17 12:11:38', 1),
(8117, 5132, 40, 'Observation Skills', 1, 'Poor', 40, '2021-06-17 12:11:38', 1),
(8118, 5132, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-06-17 12:11:38', 1),
(8119, 5132, 40, 'patience', 3, 'Average', 40, '2021-06-17 12:11:38', 1),
(8120, 5132, 40, 'Sustainability', 1, 'Doubtful', 40, '2021-06-17 12:11:38', 1),
(8121, 5132, 40, 'Sales Experience', 1, 'Fresher', 40, '2021-06-17 12:11:38', 1),
(8122, 5132, 40, 'Existing Experience Analyze', 1, 'Fresher', 40, '2021-06-17 12:11:38', 1),
(8123, 5132, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-06-17 12:11:38', 1),
(8124, 5132, 40, 'Willing To Work On Holidays', 3, 'Doubtful', 40, '2021-06-17 12:11:38', 1),
(8125, 5079, 40, 'Appearance', 1, 'Poor', 40, '2021-06-17 12:41:05', 1),
(8126, 5079, 40, 'Attitude', 1, 'Poor', 40, '2021-06-17 12:41:05', 1),
(8127, 5079, 40, 'Communication (English)', 3, 'Average', 40, '2021-06-17 12:41:05', 1),
(8128, 5079, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-06-17 12:41:05', 1),
(8129, 5079, 40, 'Convincing Skills', 2, 'Ok', 40, '2021-06-17 12:41:05', 1),
(8130, 5079, 40, 'Confidence Level', 3, 'Average', 40, '2021-06-17 12:41:05', 1),
(8131, 5079, 40, 'Importance Of Job', 3, 'Doubtful', 40, '2021-06-17 12:41:05', 1),
(8132, 5079, 40, 'Observation Skills', 1, 'Poor', 40, '2021-06-17 12:41:05', 1),
(8133, 5079, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-06-17 12:41:05', 1),
(8134, 5079, 40, 'patience', 4, 'Yes', 40, '2021-06-17 12:41:05', 1),
(8135, 5079, 40, 'Sustainability', 1, 'Doubtful', 40, '2021-06-17 12:41:05', 1),
(8136, 5079, 40, 'Sales Experience', 2, 'NO', 40, '2021-06-17 12:41:05', 1),
(8137, 5079, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-06-17 12:41:05', 1),
(8138, 5079, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-06-17 12:41:05', 1),
(8139, 5079, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-06-17 12:41:05', 1),
(8140, 5082, 40, 'Appearance', 1, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8141, 5082, 40, 'Attitude', 2, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8142, 5082, 40, 'Communication (English)', 1, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8143, 5082, 40, 'Communication (Tamil)', 1, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8144, 5082, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8145, 5082, 40, 'Confidence Level', 1, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8146, 5082, 40, 'Importance Of Job', 1, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8147, 5082, 40, 'Observation Skills', 1, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8148, 5082, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8149, 5082, 40, 'patience', 1, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8150, 5082, 40, 'Sustainability', 1, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8151, 5082, 40, 'Sales Experience', 1, 'No', 40, '2021-06-17 12:42:20', 1),
(8152, 5082, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8153, 5082, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-06-17 12:42:20', 1),
(8154, 5082, 40, 'Willing To Work On Holidays', 3, 'Doubtful', 40, '2021-06-17 12:42:20', 1),
(8155, 5084, 40, 'Appearance', 2, 'Below Average', 40, '2021-06-17 12:45:54', 1),
(8156, 5084, 40, 'Attitude', 3, 'Average', 40, '2021-06-17 12:45:54', 1),
(8157, 5084, 40, 'Communication (English)', 3, 'Average', 40, '2021-06-17 12:45:54', 1),
(8158, 5084, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-06-17 12:45:54', 1),
(8159, 5084, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-06-17 12:45:54', 1),
(8160, 5084, 40, 'Confidence Level', 3, 'ok', 40, '2021-06-17 12:45:54', 1),
(8161, 5084, 40, 'Importance Of Job', 3, 'Doubtful', 40, '2021-06-17 12:45:54', 1),
(8162, 5084, 40, 'Observation Skills', 4, 'Good', 40, '2021-06-17 12:45:54', 1),
(8163, 5084, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-06-17 12:45:54', 1),
(8164, 5084, 40, 'patience', 4, 'Good', 40, '2021-06-17 12:45:54', 1),
(8165, 5084, 40, 'Sustainability', 2, 'No', 40, '2021-06-17 12:45:54', 1),
(8166, 5084, 40, 'Sales Experience', 3, 'Average', 40, '2021-06-17 12:45:54', 1),
(8167, 5084, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-06-17 12:45:54', 1),
(8168, 5084, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-06-17 12:45:54', 1),
(8169, 5084, 40, 'Willing To Work On Holidays', 5, 'Yes he will be', 40, '2021-06-17 12:45:54', 1),
(8170, 5093, 40, 'Appearance', 4, 'Good', 40, '2021-06-17 12:49:27', 1),
(8171, 5093, 40, 'Attitude', 4, 'Good', 40, '2021-06-17 12:49:27', 1),
(8172, 5093, 40, 'Communication (English)', 1, 'Poor', 40, '2021-06-17 12:49:27', 1),
(8173, 5093, 40, 'Communication (Tamil)', 3, 'Average', 40, '2021-06-17 12:49:27', 1),
(8174, 5093, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-06-17 12:49:27', 1),
(8175, 5093, 40, 'Confidence Level', 1, 'Poor', 40, '2021-06-17 12:49:27', 1),
(8176, 5093, 40, 'Importance Of Job', 2, 'No', 40, '2021-06-17 12:49:27', 1),
(8177, 5093, 40, 'Observation Skills', 3, 'Average', 40, '2021-06-17 12:49:27', 1),
(8178, 5093, 40, 'Pressure Handling', 3, 'Doubtful', 40, '2021-06-17 12:49:27', 1),
(8179, 5093, 40, 'patience', 4, 'Good', 40, '2021-06-17 12:49:27', 1),
(8180, 5093, 40, 'Sustainability', 1, 'No', 40, '2021-06-17 12:49:27', 1),
(8181, 5093, 40, 'Sales Experience', 1, 'Poor', 40, '2021-06-17 12:49:27', 1),
(8182, 5093, 40, 'Existing Experience Analyze', 2, 'Poor', 40, '2021-06-17 12:49:27', 1),
(8183, 5093, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-06-17 12:49:27', 1),
(8184, 5093, 40, 'Willing To Work On Holidays', 2, 'Might be', 40, '2021-06-17 12:49:27', 1),
(8185, 5124, 40, 'Appearance', 1, 'Poor', 40, '2021-06-17 12:51:12', 1),
(8186, 5124, 40, 'Attitude', 2, 'Poor', 40, '2021-06-17 12:51:12', 1),
(8187, 5124, 40, 'Communication (English)', 1, 'Poor', 40, '2021-06-17 12:51:12', 1),
(8188, 5124, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-06-17 12:51:12', 1),
(8189, 5124, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-06-17 12:51:12', 1),
(8190, 5124, 40, 'Confidence Level', 1, 'Poor', 40, '2021-06-17 12:51:12', 1),
(8191, 5124, 40, 'Importance Of Job', 2, 'Below Average', 40, '2021-06-17 12:51:12', 1),
(8192, 5124, 40, 'Observation Skills', 3, 'Average', 40, '2021-06-17 12:51:12', 1),
(8193, 5124, 40, 'Pressure Handling', 3, 'Average', 40, '2021-06-17 12:51:12', 1),
(8194, 5124, 40, 'patience', 1, 'Poor', 40, '2021-06-17 12:51:12', 1),
(8195, 5124, 40, 'Sustainability', 1, 'Poor', 40, '2021-06-17 12:51:12', 1),
(8196, 5124, 40, 'Sales Experience', 3, 'Average', 40, '2021-06-17 12:51:12', 1),
(8197, 5124, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-06-17 12:51:12', 1),
(8198, 5124, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-06-17 12:51:12', 1),
(8199, 5124, 40, 'Willing To Work On Holidays', 3, 'Might be', 40, '2021-06-17 12:51:12', 1),
(8200, 5094, 40, 'Appearance', 3, 'Ok', 40, '2021-06-17 12:53:03', 1),
(8201, 5094, 40, 'Attitude', 1, 'Poor', 40, '2021-06-17 12:53:03', 1),
(8202, 5094, 40, 'Communication (English)', 3, 'Average', 40, '2021-06-17 12:53:03', 1),
(8203, 5094, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-06-17 12:53:03', 1),
(8204, 5094, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-06-17 12:53:03', 1),
(8205, 5094, 40, 'Confidence Level', 1, 'Poor', 40, '2021-06-17 12:53:03', 1),
(8206, 5094, 40, 'Importance Of Job', 3, 'Might be', 40, '2021-06-17 12:53:03', 1),
(8207, 5094, 40, 'Observation Skills', 1, 'Poor', 40, '2021-06-17 12:53:03', 1),
(8208, 5094, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-06-17 12:53:03', 1),
(8209, 5094, 40, 'patience', 1, 'Poor', 40, '2021-06-17 12:53:03', 1),
(8210, 5094, 40, 'Sustainability', 1, 'Poor', 40, '2021-06-17 12:53:03', 1),
(8211, 5094, 40, 'Sales Experience', 1, 'Poor', 40, '2021-06-17 12:53:03', 1),
(8212, 5094, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-06-17 12:53:03', 1),
(8213, 5094, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-06-17 12:53:03', 1),
(8214, 5094, 40, 'Willing To Work On Holidays', 2, 'No', 40, '2021-06-17 12:53:03', 1),
(8215, 5095, 40, 'Appearance', 3, 'Ok', 40, '2021-06-17 12:54:31', 1),
(8216, 5095, 40, 'Attitude', 3, 'Ok', 40, '2021-06-17 12:54:31', 1),
(8217, 5095, 40, 'Communication (English)', 1, 'Poor', 40, '2021-06-17 12:54:31', 1),
(8218, 5095, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-06-17 12:54:31', 1),
(8219, 5095, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-06-17 12:54:31', 1),
(8220, 5095, 40, 'Confidence Level', 3, 'Average', 40, '2021-06-17 12:54:31', 1),
(8221, 5095, 40, 'Importance Of Job', 3, 'Average', 40, '2021-06-17 12:54:31', 1),
(8222, 5095, 40, 'Observation Skills', 2, 'Below average', 40, '2021-06-17 12:54:31', 1),
(8223, 5095, 40, 'Pressure Handling', 2, 'Poor', 40, '2021-06-17 12:54:31', 1),
(8224, 5095, 40, 'patience', 2, 'Poor', 40, '2021-06-17 12:54:31', 1),
(8225, 5095, 40, 'Sustainability', 2, 'Poor', 40, '2021-06-17 12:54:31', 1),
(8226, 5095, 40, 'Sales Experience', 2, 'Poor', 40, '2021-06-17 12:54:31', 1),
(8227, 5095, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-06-17 12:54:31', 1),
(8228, 5095, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-06-17 12:54:31', 1),
(8229, 5095, 40, 'Willing To Work On Holidays', 1, 'No', 40, '2021-06-17 12:54:31', 1),
(8230, 5096, 40, 'Appearance', 3, 'Ok', 40, '2021-06-17 12:55:59', 1),
(8231, 5096, 40, 'Attitude', 2, 'Poor', 40, '2021-06-17 12:55:59', 1),
(8232, 5096, 40, 'Communication (English)', 1, 'Poor', 40, '2021-06-17 12:55:59', 1),
(8233, 5096, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-06-17 12:55:59', 1),
(8234, 5096, 40, 'Convincing Skills', 2, 'Poor', 40, '2021-06-17 12:55:59', 1),
(8235, 5096, 40, 'Confidence Level', 1, 'Poor', 40, '2021-06-17 12:55:59', 1),
(8236, 5096, 40, 'Importance Of Job', 3, 'Average', 40, '2021-06-17 12:55:59', 1),
(8237, 5096, 40, 'Observation Skills', 2, 'Poor', 40, '2021-06-17 12:55:59', 1),
(8238, 5096, 40, 'Pressure Handling', 3, 'Average', 40, '2021-06-17 12:55:59', 1),
(8239, 5096, 40, 'patience', 2, 'Poor', 40, '2021-06-17 12:55:59', 1),
(8240, 5096, 40, 'Sustainability', 1, 'Never', 40, '2021-06-17 12:55:59', 1),
(8241, 5096, 40, 'Sales Experience', 3, 'Average', 40, '2021-06-17 12:55:59', 1),
(8242, 5096, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-06-17 12:55:59', 1),
(8243, 5096, 40, 'Practical Challenges Outcome', 1, 'poor', 40, '2021-06-17 12:55:59', 1),
(8244, 5096, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-06-17 12:55:59', 1),
(8245, 5104, 40, 'Appearance', 2, 'Poor', 40, '2021-06-17 12:57:44', 1),
(8246, 5104, 40, 'Attitude', 5, 'Professional', 40, '2021-06-17 12:57:44', 1),
(8247, 5104, 40, 'Communication (English)', 3, 'Average', 40, '2021-06-17 12:57:44', 1),
(8248, 5104, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-06-17 12:57:44', 1),
(8249, 5104, 40, 'Convincing Skills', 2, 'Poor', 40, '2021-06-17 12:57:44', 1),
(8250, 5104, 40, 'Confidence Level', 4, 'Good', 40, '2021-06-17 12:57:44', 1),
(8251, 5104, 40, 'Importance Of Job', 3, 'Doubtful', 40, '2021-06-17 12:57:44', 1),
(8252, 5104, 40, 'Observation Skills', 3, 'Average', 40, '2021-06-17 12:57:44', 1),
(8253, 5104, 40, 'Pressure Handling', 3, 'Average', 40, '2021-06-17 12:57:44', 1),
(8254, 5104, 40, 'patience', 3, 'average', 40, '2021-06-17 12:57:44', 1),
(8255, 5104, 40, 'Sustainability', 1, 'he will not', 40, '2021-06-17 12:57:44', 1),
(8256, 5104, 40, 'Sales Experience', 3, 'average', 40, '2021-06-17 12:57:44', 1),
(8257, 5104, 40, 'Existing Experience Analyze', 1, 'poor', 40, '2021-06-17 12:57:44', 1),
(8258, 5104, 40, 'Practical Challenges Outcome', 1, 'poor', 40, '2021-06-17 12:57:44', 1),
(8259, 5104, 40, 'Willing To Work On Holidays', 1, 'no', 40, '2021-06-17 12:57:44', 1),
(8260, 5117, 40, 'Appearance', 1, 'Poor', 40, '2021-06-17 12:59:03', 1),
(8261, 5117, 40, 'Attitude', 3, 'average', 40, '2021-06-17 12:59:03', 1),
(8262, 5117, 40, 'Communication (English)', 2, 'poor', 40, '2021-06-17 12:59:03', 1),
(8263, 5117, 40, 'Communication (Tamil)', 5, 'good in local language', 40, '2021-06-17 12:59:03', 1),
(8264, 5117, 40, 'Convincing Skills', 1, 'poor', 40, '2021-06-17 12:59:03', 1),
(8265, 5117, 40, 'Confidence Level', 1, 'poor', 40, '2021-06-17 12:59:03', 1),
(8266, 5117, 40, 'Importance Of Job', 1, 'poor', 40, '2021-06-17 12:59:03', 1),
(8267, 5117, 40, 'Observation Skills', 1, 'poor', 40, '2021-06-17 12:59:03', 1),
(8268, 5117, 40, 'Pressure Handling', 1, 'poor', 40, '2021-06-17 12:59:03', 1),
(8269, 5117, 40, 'patience', 1, 'poor', 40, '2021-06-17 12:59:03', 1),
(8270, 5117, 40, 'Sustainability', 1, 'poor', 40, '2021-06-17 12:59:03', 1),
(8271, 5117, 40, 'Sales Experience', 1, 'poor', 40, '2021-06-17 12:59:03', 1),
(8272, 5117, 40, 'Existing Experience Analyze', 1, 'poor', 40, '2021-06-17 12:59:03', 1),
(8273, 5117, 40, 'Practical Challenges Outcome', 1, 'poor', 40, '2021-06-17 12:59:03', 1),
(8274, 5117, 40, 'Willing To Work On Holidays', 1, 'no', 40, '2021-06-17 12:59:03', 1),
(8275, 5154, 8, 'convincing Skills', 2, 'poor', 8, '2021-06-18 02:06:50', 1),
(8276, 5154, 8, 'Confidence Level', 3, 'avg', 8, '2021-06-18 02:06:50', 1),
(8277, 5154, 8, 'Importance (Job)', 3, 'yes', 8, '2021-06-18 02:06:50', 1),
(8278, 5154, 8, 'Pressure Handling', 2, 'fresher, will not handle pressure', 8, '2021-06-18 02:06:50', 1),
(8279, 5154, 8, 'Sustainability', 3, 'avg', 8, '2021-06-18 02:06:50', 1),
(8280, 5164, 8, 'Appearance', 2, 'interview with night dress', 8, '2021-06-18 02:17:37', 1),
(8281, 5164, 8, 'Attitude', 2, 'poor', 8, '2021-06-18 02:17:37', 1),
(8282, 5164, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-06-18 02:17:37', 1),
(8283, 5148, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-06-18 04:55:15', 1),
(8284, 5148, 8, 'Confidence Level', 3, 'good', 8, '2021-06-18 04:55:15', 1),
(8285, 5148, 8, 'Importance (Job)', 3, 'avg', 8, '2021-06-18 04:55:15', 1),
(8286, 5148, 8, 'Sustainability', 3, 'check once for sales', 8, '2021-06-18 04:55:15', 1),
(8287, 5139, 40, 'Appearance', 3, 'Average', 40, '2021-06-19 11:43:13', 1),
(8288, 5139, 40, 'Attitude', 3, 'Average', 40, '2021-06-19 11:43:13', 1),
(8289, 5139, 40, 'Communication (English)', 3, 'Average', 40, '2021-06-19 11:43:13', 1),
(8290, 5139, 40, 'Communication (Tamil)', 4, 'Good in local language', 40, '2021-06-19 11:43:13', 1),
(8291, 5139, 40, 'Convincing Skills', 3, 'Average', 40, '2021-06-19 11:43:13', 1),
(8292, 5139, 40, 'Confidence Level', 1, 'Poor', 40, '2021-06-19 11:43:13', 1),
(8293, 5139, 40, 'Importance Of Job', 1, 'Poor', 40, '2021-06-19 11:43:13', 1),
(8294, 5139, 40, 'Observation Skills', 1, 'Very poor', 40, '2021-06-19 11:43:13', 1),
(8295, 5139, 40, 'Pressure Handling', 2, 'Below Average', 40, '2021-06-19 11:43:13', 1),
(8296, 5139, 40, 'patience', 4, 'Good', 40, '2021-06-19 11:43:13', 1),
(8297, 5139, 40, 'Sustainability', 1, 'Very doubtful', 40, '2021-06-19 11:43:13', 1),
(8298, 5139, 40, 'Sales Experience', 2, 'Irrelevant', 40, '2021-06-19 11:43:13', 1),
(8299, 5139, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-06-19 11:43:13', 1),
(8300, 5139, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-06-19 11:43:13', 1),
(8301, 5139, 40, 'Willing To Work On Holidays', 3, 'Doubtful', 40, '2021-06-19 11:43:13', 1),
(8302, 5140, 40, 'Appearance', 1, 'Poor', 40, '2021-06-19 11:44:34', 1),
(8303, 5140, 40, 'Attitude', 1, 'Poor', 40, '2021-06-19 11:44:34', 1),
(8304, 5140, 40, 'Communication (English)', 1, 'Very poor', 40, '2021-06-19 11:44:34', 1),
(8305, 5140, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-06-19 11:44:34', 1),
(8306, 5140, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-06-19 11:44:34', 1),
(8307, 5140, 40, 'Confidence Level', 1, 'Poor', 40, '2021-06-19 11:44:34', 1),
(8308, 5140, 40, 'Importance Of Job', 3, 'Neutral', 40, '2021-06-19 11:44:34', 1),
(8309, 5140, 40, 'Observation Skills', 1, 'Poor', 40, '2021-06-19 11:44:34', 1),
(8310, 5140, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-06-19 11:44:34', 1),
(8311, 5140, 40, 'patience', 1, 'Poor', 40, '2021-06-19 11:44:34', 1),
(8312, 5140, 40, 'Sustainability', 1, 'No', 40, '2021-06-19 11:44:34', 1),
(8313, 5140, 40, 'Sales Experience', 1, 'No', 40, '2021-06-19 11:44:34', 1),
(8314, 5140, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-06-19 11:44:34', 1),
(8315, 5140, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-06-19 11:44:34', 1),
(8316, 5140, 40, 'Willing To Work On Holidays', 5, 'He will', 40, '2021-06-19 11:44:34', 1),
(8317, 5185, 13, 'Attitude', 3, 'good only well confident person', 13, '2021-06-21 09:54:40', 1),
(8318, 5185, 13, 'Communication (Tamil)', 3, 'good fluency in language', 13, '2021-06-21 09:54:40', 1),
(8319, 5185, 13, 'Confidence Level', 4, 'very high ', 13, '2021-06-21 09:54:40', 1),
(8320, 5185, 13, 'Sustainability', 3, 'from poor background so no issues', 13, '2021-06-21 09:54:40', 1),
(8321, 5244, 40, 'Appearance', 3, 'Ok', 40, '2021-06-24 02:30:29', 1),
(8322, 5244, 40, 'Attitude', 3, 'Average', 40, '2021-06-24 02:30:29', 1),
(8323, 5244, 40, 'Communication (English)', 3, 'Average', 40, '2021-06-24 02:30:29', 1),
(8324, 5244, 40, 'Communication (Tamil)', 4, 'Good', 40, '2021-06-24 02:30:29', 1),
(8325, 5244, 40, 'Convincing Skills', 2, 'Fresher', 40, '2021-06-24 02:30:29', 1),
(8326, 5244, 40, 'Confidence Level', 3, 'Good', 40, '2021-06-24 02:30:29', 1),
(8327, 5244, 40, 'Existing Experience Analyze', 2, 'Not upto the mark', 40, '2021-06-24 02:30:29', 1),
(8328, 5244, 40, 'Importance Of Job', 3, 'Immediate joiner', 40, '2021-06-24 02:30:29', 1),
(8329, 5244, 40, 'Observation Skills', 4, 'Good', 40, '2021-06-24 02:30:29', 1),
(8330, 5244, 40, 'patience', 4, 'Good', 40, '2021-06-24 02:30:29', 1),
(8331, 5244, 40, 'Pressure Handling', 3, 'Average', 40, '2021-06-24 02:30:29', 1),
(8332, 5244, 40, 'Practical Challenges Outcome', 2, 'Not up to the mark', 40, '2021-06-24 02:30:29', 1),
(8333, 5244, 40, 'Sustainability', 3, 'Doubtful', 40, '2021-06-24 02:30:29', 1),
(8334, 5244, 40, 'Sales Experience', 1, 'No ', 40, '2021-06-24 02:30:29', 1),
(8335, 5244, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-06-24 02:30:29', 1),
(8336, 5244, 18, 'Attitude', 3, 'Ok', 18, '2021-06-25 07:43:24', 1),
(8337, 5244, 18, 'Communication (English)', 4, 'Good', 18, '2021-06-25 07:43:24', 1),
(8338, 5244, 18, 'Convincing Skills', 4, 'Decent', 18, '2021-06-25 07:43:24', 1),
(8339, 5244, 18, 'Confidence Level', 4, 'Good', 18, '2021-06-25 07:43:24', 1),
(8340, 5244, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-06-25 07:43:24', 1),
(8341, 5244, 18, 'Importance Of Job', 4, 'Needed', 18, '2021-06-25 07:43:24', 1),
(8342, 5244, 18, 'Observation Skills', 4, 'Good', 18, '2021-06-25 07:43:24', 1),
(8343, 5244, 18, 'patience', 4, 'Good', 18, '2021-06-25 07:43:24', 1),
(8344, 5244, 18, 'Pressure Handling', 4, 'Yes', 18, '2021-06-25 07:43:24', 1),
(8345, 5244, 18, 'Sustainability', 3, 'Need to double check in trainning', 18, '2021-06-25 07:43:24', 1),
(8346, 5244, 18, 'Sales Experience', 1, 'Nil', 18, '2021-06-25 07:43:24', 1),
(8347, 5244, 18, 'Willing To Work On Holidays', 3, 'Yes', 18, '2021-06-25 07:43:24', 1),
(8348, 5279, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-06-26 04:55:32', 1),
(8349, 5268, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-06-26 04:56:10', 1),
(8350, 5268, 14, 'convincing Skills', 4, 'good', 14, '2021-06-26 04:56:10', 1),
(8351, 5241, 14, 'Importance (Job)', 4, 'job needed family', 14, '2021-06-26 04:57:20', 1),
(8352, 5241, 14, 'Observation skills', 4, 'good', 14, '2021-06-26 04:57:20', 1),
(8353, 5240, 14, 'Communication (Tamil)', 4, 'good', 14, '2021-06-26 04:58:25', 1),
(8354, 5240, 14, 'convincing Skills', 4, 'good convincing skills ', 14, '2021-06-26 04:58:25', 1),
(8355, 5148, 14, 'Sustainability', 1, 'she  is not okay for one year agreement ', 14, '2021-06-26 05:01:36', 1),
(8356, 5277, 39, 'Appearance', 4, 'good looking', 39, '2021-06-28 01:37:20', 1),
(8357, 5277, 39, 'Communication (English)', 4, 'communication is good', 39, '2021-06-28 01:37:20', 1),
(8358, 5277, 39, 'Confidence Level', 4, 'good', 39, '2021-06-28 01:37:20', 1),
(8359, 5277, 39, 'Sales Experience', 4, '11 years of experience in sales', 39, '2021-06-28 01:37:20', 1),
(8360, 5277, 30, 'Appearance', 4, 'good', 30, '2021-06-28 01:42:00', 1),
(8361, 5277, 30, 'Convincing Skills', 4, 'good in convincing', 30, '2021-06-28 01:42:00', 1),
(8362, 5277, 30, 'Importance Of Job', 5, 'family situation job is mandatory', 30, '2021-06-28 01:42:00', 1),
(8363, 5277, 30, 'Sustainability', 4, 'will sustain in our profile ', 30, '2021-06-28 01:42:00', 1),
(8364, 5277, 30, 'Willing To Work On Holidays', 4, 'yes', 30, '2021-06-28 01:42:00', 1),
(8365, 5285, 18, 'Appearance', 4, 'Decent ', 18, '2021-06-30 01:10:11', 1),
(8366, 5285, 18, 'Attitude', 4, 'Good', 18, '2021-06-30 01:10:11', 1),
(8367, 5285, 18, 'Communication (English)', 3, 'Good', 18, '2021-06-30 01:10:11', 1),
(8368, 5285, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-06-30 01:10:11', 1),
(8369, 5285, 18, 'Confidence Level', 4, 'Good', 18, '2021-06-30 01:10:11', 1),
(8370, 5285, 18, 'Importance Of Job', 4, 'Needed high', 18, '2021-06-30 01:10:11', 1),
(8371, 5285, 18, 'patience', 4, 'Good', 18, '2021-06-30 01:10:11', 1),
(8372, 5285, 18, 'Sustainability', 4, 'Yes', 18, '2021-06-30 01:10:11', 1),
(8373, 5285, 18, 'Sales Experience', 4, 'Good', 18, '2021-06-30 01:10:11', 1),
(8374, 5285, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-06-30 01:10:11', 1),
(8375, 5285, 18, 'Practical Challenges Outcome', 4, 'Yes', 18, '2021-06-30 01:10:11', 1),
(8376, 5285, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2021-06-30 01:10:11', 1),
(8377, 5234, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-06-30 04:04:53', 1),
(8378, 5234, 13, 'convincing Skills', 4, 'good', 13, '2021-06-30 04:04:53', 1),
(8379, 5269, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-06-30 04:09:45', 1),
(8380, 5269, 13, 'convincing Skills', 4, 'good', 13, '2021-06-30 04:09:45', 1),
(8381, 5252, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-06-30 07:08:30', 1),
(8382, 5252, 13, 'convincing Skills', 4, 'good', 13, '2021-06-30 07:08:30', 1),
(8383, 5272, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-06-30 07:13:55', 1),
(8384, 5272, 13, 'convincing Skills', 4, 'good', 13, '2021-06-30 07:13:55', 1),
(8385, 5257, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-07-03 09:59:04', 1),
(8386, 5257, 13, 'Confidence Level', 4, 'good', 13, '2021-07-03 09:59:04', 1),
(8387, 5195, 30, 'Appearance', 3, 'good', 30, '2021-07-03 06:50:37', 1),
(8388, 5195, 30, 'Communication (English)', 3, 'good communication English', 30, '2021-07-03 06:50:37', 1),
(8389, 5195, 30, 'Importance Of Job', 4, 'job need mandatory', 30, '2021-07-03 06:50:37', 1),
(8390, 5195, 30, 'Existing Experience Analyze', 3, 'having sales experience', 30, '2021-07-03 06:50:37', 1),
(8391, 5368, 44, 'Communication (Tamil)', 3, 'Good communication skill', 44, '2021-07-08 05:48:50', 1),
(8392, 5368, 44, 'Sales Experience', 4, 'Having experience in blue chip', 44, '2021-07-08 05:48:50', 1),
(8393, 5368, 29, 'Convincing Skills', 2, 'need to improve, has insurance skill and knowledge', 29, '2021-07-08 07:10:30', 1),
(8394, 5368, 29, 'Observation Skills', 2, 'average', 29, '2021-07-08 07:10:30', 1),
(8395, 5368, 29, 'Sales Experience', 4, 'has Relevance exp with insurance, we can mold ', 29, '2021-07-08 07:10:30', 1),
(8396, 5368, 29, 'Practical Challenges Outcome', 2, 'need to check for 7 days under training period', 29, '2021-07-08 07:10:30', 1),
(8397, 5359, 40, 'Appearance', 2, 'He appeared in casuals', 40, '2021-07-09 10:13:45', 1),
(8398, 5359, 40, 'Attitude', 4, 'Good', 40, '2021-07-09 10:13:45', 1),
(8399, 5359, 40, 'Communication (English)', 2, 'Below Average', 40, '2021-07-09 10:13:45', 1),
(8400, 5359, 40, 'Communication (Tamil)', 4, 'Good in local language', 40, '2021-07-09 10:13:45', 1),
(8401, 5359, 40, 'Convincing Skills', 2, 'Fresher', 40, '2021-07-09 10:13:45', 1),
(8402, 5359, 40, 'Confidence Level', 3, 'Average', 40, '2021-07-09 10:13:45', 1),
(8403, 5359, 40, 'Importance Of Job', 3, 'Yes he will be', 40, '2021-07-09 10:13:45', 1),
(8404, 5359, 40, 'Observation Skills', 3, 'good', 40, '2021-07-09 10:13:45', 1),
(8405, 5359, 40, 'Pressure Handling', 3, 'Fresher', 40, '2021-07-09 10:13:45', 1),
(8406, 5359, 40, 'patience', 3, 'Neutral', 40, '2021-07-09 10:13:45', 1),
(8407, 5359, 40, 'Sustainability', 3, 'Doubtful', 40, '2021-07-09 10:13:45', 1),
(8408, 5359, 40, 'Sales Experience', 1, 'Fresher', 40, '2021-07-09 10:13:45', 1),
(8409, 5359, 40, 'Existing Experience Analyze', 1, 'Fresher', 40, '2021-07-09 10:13:45', 1),
(8410, 5359, 40, 'Practical Challenges Outcome', 1, 'Fresher', 40, '2021-07-09 10:13:45', 1),
(8411, 5359, 40, 'Willing To Work On Holidays', 3, 'Might be', 40, '2021-07-09 10:13:45', 1),
(8412, 5405, 8, 'Communication (English)', 3, 'avg', 8, '2021-07-10 01:12:10', 1),
(8413, 5405, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-07-10 01:12:10', 1),
(8414, 5405, 8, 'Sustainability', 2, 'check once, applied job in abroad.', 8, '2021-07-10 01:12:10', 1),
(8415, 5405, 57, 'Communication (Tamil)', 4, 'communication good and easily observed ', 57, '2021-07-10 04:04:44', 1),
(8416, 5405, 57, 'Sustainability', 4, 'He is already work in core field more then 2 years and confident level good ', 57, '2021-07-10 04:04:44', 1),
(8417, 5359, 18, 'Appearance', 4, '\ngOOD', 18, '2021-07-12 12:39:51', 1),
(8418, 5359, 18, 'Attitude', 4, 'GOD', 18, '2021-07-12 12:39:51', 1),
(8419, 5359, 18, 'Communication (English)', 4, 'GOOD', 18, '2021-07-12 12:39:51', 1),
(8420, 5359, 18, 'Convincing Skills', 4, 'DECENT', 18, '2021-07-12 12:39:51', 1),
(8421, 5359, 18, 'Confidence Level', 4, 'GOOD', 18, '2021-07-12 12:39:51', 1),
(8422, 5359, 18, 'Importance Of Job', 3, 'FRESHER', 18, '2021-07-12 12:39:51', 1),
(8423, 5359, 18, 'Observation Skills', 4, 'GOOD', 18, '2021-07-12 12:39:51', 1),
(8424, 5359, 18, 'Pressure Handling', 3, 'LOOKS OK', 18, '2021-07-12 12:39:51', 1),
(8425, 5359, 18, 'patience', 3, 'DECENT', 18, '2021-07-12 12:39:51', 1),
(8426, 5359, 18, 'Sustainability', 4, 'NEED TO FILTER IN TRAINNING', 18, '2021-07-12 12:39:51', 1),
(8427, 5359, 18, 'Sales Experience', 1, 'NIL', 18, '2021-07-12 12:39:51', 1),
(8428, 5414, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-07-12 04:53:46', 1),
(8429, 5414, 8, 'Convincing Skills', 3, 'good', 8, '2021-07-12 04:53:46', 1),
(8430, 5414, 8, 'Sales Experience', 3, '1.6yrs in credit card sales', 8, '2021-07-12 04:53:46', 1),
(8431, 5396, 8, 'Communication Skills?', 3, 'avg', 8, '2021-07-12 04:59:21', 1),
(8432, 5396, 8, 'attitude of the employee?', 3, 'okay', 8, '2021-07-12 04:59:21', 1),
(8433, 5396, 8, 'looking for a job change for career growth or salary growth?', 3, 'job change', 8, '2021-07-12 04:59:21', 1),
(8434, 5396, 8, 'candidate have a real-time working experience?', 2, 'no', 8, '2021-07-12 04:59:21', 1),
(8435, 5387, 8, 'Communication Skills?', 3, 'avg', 8, '2021-07-12 05:02:02', 1),
(8436, 5387, 8, 'attitude of the employee?', 3, 'okay', 8, '2021-07-12 05:02:02', 1),
(8437, 5387, 8, 'relevance experience with this technical spec.', 2, 'no', 8, '2021-07-12 05:02:02', 1),
(8438, 5387, 8, 'looking for a job change for career growth or salary growth?', 3, 'job change', 8, '2021-07-12 05:02:02', 1),
(8439, 5387, 8, 'candidate have a real-time working experience?', 2, 'no', 8, '2021-07-12 05:02:02', 1),
(8440, 5414, 19, 'Appearance', 3, 'Official Look', 19, '2021-07-13 11:22:01', 1),
(8441, 5414, 19, 'Sales Experience', 4, 'experience', 19, '2021-07-13 11:22:01', 1),
(8442, 5324, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-07-13 11:31:58', 1),
(8443, 5324, 8, 'Convincing Skills', 3, 'okay', 8, '2021-07-13 11:31:58', 1),
(8444, 5324, 8, 'Existing Experience Analyze', 3, 'okay', 8, '2021-07-13 11:31:58', 1),
(8445, 5324, 8, 'Importance Of Job', 3, 'yes', 8, '2021-07-13 11:31:58', 1),
(8446, 5324, 8, 'Sales Experience', 3, 'yes', 8, '2021-07-13 11:31:58', 1),
(8447, 5418, 8, 'Communication (English)', 3, 'okay', 8, '2021-07-13 12:21:19', 1),
(8448, 5418, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-07-13 12:21:19', 1),
(8449, 5418, 8, 'Convincing Skills', 3, 'good', 8, '2021-07-13 12:21:19', 1),
(8450, 5418, 8, 'Confidence Level', 3, 'good', 8, '2021-07-13 12:21:19', 1),
(8451, 5418, 8, 'Importance Of Job', 3, 'high', 8, '2021-07-13 12:21:19', 1),
(8452, 5418, 8, 'patience', 4, 'yes', 8, '2021-07-13 12:21:19', 1),
(8453, 5418, 8, 'Sales Experience', 3, 'yes', 8, '2021-07-13 12:21:19', 1),
(8454, 5418, 20, 'Sales Experience', 3, 'has a 4 years experience in credit card sales with imarque solutions', 20, '2021-07-13 05:27:25', 1),
(8455, 5280, 14, 'Attitude', 4, 'good', 14, '2021-07-14 05:23:32', 1),
(8456, 5354, 18, 'Appearance', 3, 'Neat', 18, '2021-07-15 12:22:55', 1),
(8457, 5354, 18, 'Attitude', 4, 'Good', 18, '2021-07-15 12:22:55', 1),
(8458, 5354, 18, 'Communication (English)', 3, 'Good', 18, '2021-07-15 12:22:55', 1),
(8459, 5354, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-07-15 12:22:55', 1),
(8460, 5354, 18, 'Convincing Skills', 4, 'Good', 18, '2021-07-15 12:22:55', 1),
(8461, 5354, 18, 'Confidence Level', 4, 'Good', 18, '2021-07-15 12:22:55', 1),
(8462, 5354, 18, 'Importance Of Job', 5, 'Required', 18, '2021-07-15 12:22:55', 1),
(8463, 5354, 18, 'Observation Skills', 4, 'Good', 18, '2021-07-15 12:22:55', 1),
(8464, 5354, 18, 'Pressure Handling', 4, 'Good', 18, '2021-07-15 12:22:55', 1),
(8465, 5354, 18, 'Sustainability', 4, 'Need to double Check during trainnning', 18, '2021-07-15 12:22:55', 1),
(8466, 5354, 18, 'Sales Experience', 4, 'Good', 18, '2021-07-15 12:22:55', 1),
(8467, 5354, 18, 'Existing Experience Analyze', 2, 'Average', 18, '2021-07-15 12:22:55', 1),
(8468, 5354, 18, 'Practical Challenges Outcome', 3, 'Need to train but can adapt', 18, '2021-07-15 12:22:55', 1),
(8469, 5354, 18, 'Willing To Work On Holidays', 4, 'yes', 18, '2021-07-15 12:22:55', 1),
(8470, 5516, 33, 'Appearance', 3, 'GOOD', 33, '2021-07-23 04:49:41', 1),
(8471, 5516, 33, 'Attitude', 3, 'GOOD', 33, '2021-07-23 04:49:41', 1),
(8472, 5516, 33, 'Communication (English)', 2, 'NOT BAD', 33, '2021-07-23 04:49:41', 1),
(8473, 5564, 19, 'Appearance', 4, 'Decent Look', 19, '2021-07-24 03:38:44', 1),
(8474, 5564, 19, 'Importance Of Job', 3, 'Needed', 19, '2021-07-24 03:38:44', 1),
(8475, 5564, 19, 'Sustainability', 4, 'Ready to Sign Bond', 19, '2021-07-24 03:38:44', 1),
(8476, 5516, 18, 'Appearance', 4, 'Neat', 18, '2021-07-26 06:30:02', 1),
(8477, 5516, 18, 'Attitude', 4, 'G0od', 18, '2021-07-26 06:30:02', 1),
(8478, 5516, 18, 'Communication (English)', 3, ' Average', 18, '2021-07-26 06:30:02', 1),
(8479, 5516, 18, 'Communication (Tamil)', 4, 'Ok', 18, '2021-07-26 06:30:02', 1),
(8480, 5516, 18, 'Convincing Skills', 3, 'Ok', 18, '2021-07-26 06:30:02', 1),
(8481, 5603, 8, 'Communication (Tamil)', 4, 'good', 8, '2021-07-27 05:55:35', 1),
(8482, 5603, 8, 'Convincing Skills', 3, 'good', 8, '2021-07-27 05:55:35', 1),
(8483, 5603, 8, 'Confidence Level', 3, 'good', 8, '2021-07-27 05:55:35', 1),
(8484, 5603, 24, 'Appearance', 4, 'good', 24, '2021-07-27 05:58:20', 1),
(8485, 5552, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-07-28 05:43:53', 1),
(8486, 5552, 8, 'Convincing Skills', 3, 'good', 8, '2021-07-28 05:43:53', 1),
(8487, 5552, 8, 'Confidence Level', 3, 'good', 8, '2021-07-28 05:43:53', 1),
(8488, 5552, 19, 'Appearance', 3, 'Fit for Calls', 19, '2021-07-29 12:29:53', 1),
(8489, 5552, 19, 'Attitude', 4, 'Attitude', 19, '2021-07-29 12:29:53', 1),
(8490, 5552, 19, 'Sales Experience', 3, '1 Years Exp', 19, '2021-07-29 12:29:53', 1),
(8491, 5648, 19, 'Sustainability', 4, 'He Need Job', 19, '2021-08-02 10:39:44', 1),
(8492, 5672, 19, 'Importance Of Job', 4, 'He Need Job', 19, '2021-08-04 10:56:02', 1),
(8493, 5695, 18, 'Appearance', 4, 'Good', 18, '2021-08-04 12:39:12', 1),
(8494, 5695, 18, 'Attitude', 4, 'Good', 18, '2021-08-04 12:39:12', 1),
(8495, 5695, 18, 'Communication (English)', 3, 'Decent', 18, '2021-08-04 12:39:12', 1),
(8496, 5695, 18, 'Convincing Skills', 3, 'Average', 18, '2021-08-04 12:39:12', 1),
(8497, 5695, 18, 'Confidence Level', 3, 'Decent', 18, '2021-08-04 12:39:12', 1),
(8498, 5695, 18, 'Importance Of Job', 5, 'Highly Needed', 18, '2021-08-04 12:39:12', 1),
(8499, 5695, 18, 'Observation Skills', 4, 'Good', 18, '2021-08-04 12:39:12', 1),
(8500, 5695, 18, 'Pressure Handling', 4, 'Good', 18, '2021-08-04 12:39:12', 1),
(8501, 5695, 18, 'patience', 4, 'Good', 18, '2021-08-04 12:39:12', 1),
(8502, 5695, 18, 'Sustainability', 3, 'Yes', 18, '2021-08-04 12:39:12', 1),
(8503, 5695, 18, 'Sales Experience', 3, 'Average', 18, '2021-08-04 12:39:12', 1),
(8504, 5695, 18, 'Existing Experience Analyze', 3, 'ok', 18, '2021-08-04 12:39:12', 1),
(8505, 5695, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2021-08-04 12:39:12', 1),
(8506, 5699, 18, 'Appearance', 4, 'Good', 18, '2021-08-04 03:41:49', 1),
(8507, 5699, 18, 'Attitude', 4, 'Good', 18, '2021-08-04 03:41:49', 1),
(8508, 5699, 18, 'Communication (English)', 3, 'Neat', 18, '2021-08-04 03:41:49', 1),
(8509, 5699, 18, 'Convincing Skills', 4, 'Good', 18, '2021-08-04 03:41:49', 1),
(8510, 5699, 18, 'Confidence Level', 4, 'Good', 18, '2021-08-04 03:41:49', 1),
(8511, 5699, 18, 'Importance Of Job', 4, 'High', 18, '2021-08-04 03:41:49', 1),
(8512, 5699, 18, 'Observation Skills', 4, 'Good', 18, '2021-08-04 03:41:49', 1),
(8513, 5699, 18, 'Pressure Handling', 4, 'Good', 18, '2021-08-04 03:41:49', 1),
(8514, 5699, 18, 'patience', 4, 'Good', 18, '2021-08-04 03:41:49', 1),
(8515, 5699, 18, 'Sustainability', 4, 'Good', 18, '2021-08-04 03:41:49', 1),
(8516, 5699, 18, 'Sales Experience', 3, 'Ok but B to B', 18, '2021-08-04 03:41:49', 1),
(8517, 5699, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-08-04 03:41:49', 1),
(8518, 5705, 14, 'Communication (Tamil)', 4, 'Good', 14, '2021-08-04 03:58:02', 1),
(8519, 5734, 18, 'Appearance', 4, 'Good', 18, '2021-08-05 01:33:08', 1),
(8520, 5734, 18, 'Attitude', 3, 'Average', 18, '2021-08-05 01:33:08', 1),
(8521, 5734, 18, 'Communication (English)', 3, 'Good', 18, '2021-08-05 01:33:08', 1),
(8522, 5734, 18, 'Importance Of Job', 2, 'Low', 18, '2021-08-05 01:33:08', 1),
(8523, 5734, 18, 'Pressure Handling', 3, 'No', 18, '2021-08-05 01:33:08', 1),
(8524, 5734, 18, 'Sales Experience', 1, 'Nil', 18, '2021-08-05 01:33:08', 1),
(8525, 5745, 19, 'Importance Of Job', 4, 'He need Job', 19, '2021-08-05 04:47:22', 1),
(8526, 5745, 19, 'Sustainability', 4, 'Already working in 3 years', 19, '2021-08-05 04:47:22', 1),
(8527, 5753, 18, 'Appearance', 4, 'Good', 18, '2021-08-06 12:53:49', 1),
(8528, 5753, 18, 'Attitude', 4, 'Good', 18, '2021-08-06 12:53:49', 1),
(8529, 5753, 18, 'Communication (English)', 4, 'Good', 18, '2021-08-06 12:53:49', 1),
(8530, 5753, 18, 'Convincing Skills', 4, 'Good', 18, '2021-08-06 12:53:49', 1),
(8531, 5753, 18, 'Confidence Level', 4, 'Good', 18, '2021-08-06 12:53:49', 1),
(8532, 5753, 18, 'Importance Of Job', 4, 'Needed', 18, '2021-08-06 12:53:49', 1),
(8533, 5753, 18, 'patience', 4, 'Good', 18, '2021-08-06 12:53:49', 1),
(8534, 5753, 18, 'Sustainability', 4, 'Good', 18, '2021-08-06 12:53:49', 1),
(8535, 5753, 18, 'Sales Experience', 2, 'Poor', 18, '2021-08-06 12:53:49', 1),
(8536, 5753, 18, 'Existing Experience Analyze', 3, 'Decent', 18, '2021-08-06 12:53:49', 1),
(8537, 5723, 40, 'Appearance', 4, 'Good', 40, '2021-08-07 11:28:52', 1),
(8538, 5723, 40, 'Attitude', 4, 'Good', 40, '2021-08-07 11:28:52', 1),
(8539, 5723, 40, 'Communication (English)', 4, 'Good', 40, '2021-08-07 11:28:52', 1),
(8540, 5723, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-08-07 11:28:52', 1),
(8541, 5723, 40, 'Convincing Skills', 3, 'Average', 40, '2021-08-07 11:28:52', 1),
(8542, 5723, 40, 'Confidence Level', 4, 'Good', 40, '2021-08-07 11:28:52', 1),
(8543, 5723, 40, 'Importance Of Job', 3, 'Doubtful', 40, '2021-08-07 11:28:52', 1),
(8544, 5723, 40, 'Observation Skills', 3, 'Average', 40, '2021-08-07 11:28:52', 1),
(8545, 5723, 40, 'Pressure Handling', 2, 'Fresher', 40, '2021-08-07 11:28:52', 1),
(8546, 5723, 40, 'patience', 4, 'Good', 40, '2021-08-07 11:28:52', 1),
(8547, 5723, 40, 'Sustainability', 3, 'Average', 40, '2021-08-07 11:28:52', 1),
(8548, 5723, 40, 'Sales Experience', 1, 'Fresher', 40, '2021-08-07 11:28:52', 1),
(8549, 5723, 40, 'Existing Experience Analyze', 1, 'Fresher', 40, '2021-08-07 11:28:52', 1),
(8550, 5723, 40, 'Practical Challenges Outcome', 3, 'Average', 40, '2021-08-07 11:28:52', 1),
(8551, 5723, 40, 'Willing To Work On Holidays', 4, 'Willings', 40, '2021-08-07 11:28:52', 1),
(8552, 5725, 40, 'Appearance', 2, 'Poor', 40, '2021-08-07 11:33:18', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(8553, 5725, 40, 'Attitude', 1, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8554, 5725, 40, 'Communication (English)', 1, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8555, 5725, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-08-07 11:33:18', 1),
(8556, 5725, 40, 'Convincing Skills', 2, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8557, 5725, 40, 'Confidence Level', 2, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8558, 5725, 40, 'Importance Of Job', 5, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8559, 5725, 40, 'Observation Skills', 1, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8560, 5725, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8561, 5725, 40, 'patience', 1, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8562, 5725, 40, 'Sustainability', 1, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8563, 5725, 40, 'Sales Experience', 1, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8564, 5725, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8565, 5725, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8566, 5725, 40, 'Willing To Work On Holidays', 1, 'Poor', 40, '2021-08-07 11:33:18', 1),
(8567, 5764, 40, 'Appearance', 5, 'Professional Attire', 40, '2021-08-07 11:42:43', 1),
(8568, 5764, 40, 'Attitude', 4, 'Professional', 40, '2021-08-07 11:42:43', 1),
(8569, 5764, 40, 'Communication (English)', 5, 'Excellent', 40, '2021-08-07 11:42:43', 1),
(8570, 5764, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-08-07 11:42:43', 1),
(8571, 5764, 40, 'Convincing Skills', 3, 'Fresher but good', 40, '2021-08-07 11:42:43', 1),
(8572, 5764, 40, 'Confidence Level', 5, 'Good', 40, '2021-08-07 11:42:43', 1),
(8573, 5764, 40, 'Importance Of Job', 3, 'Having some good offers outside but we can take a call', 40, '2021-08-07 11:42:43', 1),
(8574, 5764, 40, 'Observation Skills', 4, 'Good', 40, '2021-08-07 11:42:43', 1),
(8575, 5764, 40, 'Pressure Handling', 4, 'Might be', 40, '2021-08-07 11:42:43', 1),
(8576, 5764, 40, 'patience', 5, 'Good', 40, '2021-08-07 11:42:43', 1),
(8577, 5764, 40, 'Sustainability', 3, 'Doubtful', 40, '2021-08-07 11:42:43', 1),
(8578, 5764, 40, 'Sales Experience', 1, 'Fresher', 40, '2021-08-07 11:42:43', 1),
(8579, 5764, 40, 'Existing Experience Analyze', 2, 'Fresher', 40, '2021-08-07 11:42:43', 1),
(8580, 5764, 40, 'Practical Challenges Outcome', 1, 'Fresher', 40, '2021-08-07 11:42:43', 1),
(8581, 5764, 40, 'Willing To Work On Holidays', 3, 'Might be', 40, '2021-08-07 11:42:43', 1),
(8582, 4757, 21, 'Appearance', 4, 'ok', 21, '2021-08-09 01:07:23', 1),
(8583, 4757, 21, 'Attitude', 4, 'ok good', 21, '2021-08-09 01:07:23', 1),
(8584, 4757, 21, 'Communication (Tamil)', 5, 'ok', 21, '2021-08-09 01:07:23', 1),
(8585, 4757, 21, 'Communication (English)', 4, 'avg', 21, '2021-08-09 01:07:23', 1),
(8586, 4757, 21, 'convincing Skills', 4, 'ok', 21, '2021-08-09 01:07:23', 1),
(8587, 4757, 21, 'Confidence Level', 4, 'ok', 21, '2021-08-09 01:07:23', 1),
(8588, 4757, 21, 'Importance (Job)', 4, 'yes', 21, '2021-08-09 01:07:23', 1),
(8589, 4757, 21, 'Observation skills', 4, 'ok good', 21, '2021-08-09 01:07:23', 1),
(8590, 4757, 21, 'Pressure Handling', 3, 'need to check', 21, '2021-08-09 01:07:23', 1),
(8591, 4757, 21, 'patience', 4, 'ok', 21, '2021-08-09 01:07:23', 1),
(8592, 4757, 21, 'Sustainability', 4, 'ok', 21, '2021-08-09 01:07:23', 1),
(8593, 4757, 29, 'Attitude', 3, 'has positive attitude for earning and growth', 29, '2021-08-09 03:42:16', 1),
(8594, 4757, 29, 'Convincing Skills', 3, 'good', 29, '2021-08-09 03:42:16', 1),
(8595, 4757, 29, 'Sales Experience', 3, 'can do well in insurance industry', 29, '2021-08-09 03:42:16', 1),
(8596, 5307, 34, 'Appearance', 2, 'ok', 34, '2021-08-10 03:57:54', 1),
(8597, 5307, 34, 'Attitude', 2, 'average', 34, '2021-08-10 03:57:54', 1),
(8598, 5307, 34, 'Communication (English)', 2, 'not good ', 34, '2021-08-10 03:57:54', 1),
(8599, 5307, 34, 'Communication (Tamil)', 4, 'good', 34, '2021-08-10 03:57:54', 1),
(8600, 5307, 34, 'Convincing Skills', 2, 'average', 34, '2021-08-10 03:57:54', 1),
(8601, 5307, 34, 'Confidence Level', 2, 'average', 34, '2021-08-10 03:57:54', 1),
(8602, 5307, 34, 'Existing Experience Analyze', 1, 'he is an fresher', 34, '2021-08-10 03:57:54', 1),
(8603, 5307, 34, 'Importance Of Job', 2, 'not that much', 34, '2021-08-10 03:57:54', 1),
(8604, 5307, 34, 'Observation Skills', 3, 'ok', 34, '2021-08-10 03:57:54', 1),
(8605, 5307, 34, 'patience', 2, 'average', 34, '2021-08-10 03:57:54', 1),
(8606, 5307, 34, 'Pressure Handling', 2, 'he will not handle', 34, '2021-08-10 03:57:54', 1),
(8607, 5307, 34, 'Practical Challenges Outcome', 2, 'ok', 34, '2021-08-10 03:57:54', 1),
(8608, 5307, 34, 'Sustainability', 2, 'doubtful ', 34, '2021-08-10 03:57:54', 1),
(8609, 5307, 34, 'Sales Experience', 1, 'no', 34, '2021-08-10 03:57:54', 1),
(8610, 5307, 34, 'Willing To Work On Holidays', 1, 'no', 34, '2021-08-10 03:57:54', 1),
(8611, 5809, 33, 'Appearance', 4, 'good', 33, '2021-08-11 12:05:20', 1),
(8612, 5809, 33, 'Communication (English)', 3, 'good', 33, '2021-08-11 12:05:20', 1),
(8613, 5809, 33, 'Convincing Skills', 4, 'having in sales experience', 33, '2021-08-11 12:05:20', 1),
(8614, 5809, 33, 'patience', 3, 'good', 33, '2021-08-11 12:05:20', 1),
(8615, 5809, 33, 'Sustainability', 2, 'Average.Please Check Sustainability For Our Profile  ', 33, '2021-08-11 12:05:20', 1),
(8616, 5764, 18, 'Appearance', 5, 'Good', 18, '2021-08-11 12:37:45', 1),
(8617, 5764, 18, 'Attitude', 4, 'Good', 18, '2021-08-11 12:37:45', 1),
(8618, 5764, 18, 'Communication (English)', 4, 'Good', 18, '2021-08-11 12:37:45', 1),
(8619, 5764, 18, 'Convincing Skills', 4, 'Good', 18, '2021-08-11 12:37:45', 1),
(8620, 5764, 18, 'Confidence Level', 5, 'Good', 18, '2021-08-11 12:37:45', 1),
(8621, 5764, 18, 'Importance Of Job', 4, 'Fresher', 18, '2021-08-11 12:37:45', 1),
(8622, 5764, 18, 'Observation Skills', 4, 'Good', 18, '2021-08-11 12:37:45', 1),
(8623, 5764, 18, 'Pressure Handling', 4, 'Good', 18, '2021-08-11 12:37:45', 1),
(8624, 5764, 18, 'patience', 4, 'Good', 18, '2021-08-11 12:37:45', 1),
(8625, 5764, 18, 'Sustainability', 3, 'Need to filter in 1st week', 18, '2021-08-11 12:37:45', 1),
(8626, 5764, 18, 'Sales Experience', 1, 'Nil', 18, '2021-08-11 12:37:45', 1),
(8627, 5764, 18, 'Existing Experience Analyze', 1, 'Nil', 18, '2021-08-11 12:37:45', 1),
(8628, 5764, 18, 'Practical Challenges Outcome', 5, 'Good', 18, '2021-08-11 12:37:45', 1),
(8629, 5809, 18, 'Appearance', 3, 'decent', 18, '2021-08-11 05:55:10', 1),
(8630, 5809, 18, 'Attitude', 4, 'Matured', 18, '2021-08-11 05:55:10', 1),
(8631, 5809, 18, 'Communication (English)', 3, 'Ok', 18, '2021-08-11 05:55:10', 1),
(8632, 5809, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-08-11 05:55:10', 1),
(8633, 5809, 18, 'Convincing Skills', 4, 'Decent', 18, '2021-08-11 05:55:10', 1),
(8634, 5809, 18, 'Confidence Level', 4, 'Good', 18, '2021-08-11 05:55:10', 1),
(8635, 5809, 18, 'Importance Of Job', 4, 'Needed', 18, '2021-08-11 05:55:10', 1),
(8636, 5809, 18, 'patience', 4, 'Good', 18, '2021-08-11 05:55:10', 1),
(8637, 5809, 18, 'Sustainability', 4, 'Need to filter in 1st week', 18, '2021-08-11 05:55:10', 1),
(8638, 5809, 18, 'Sales Experience', 2, 'Average', 18, '2021-08-11 05:55:10', 1),
(8639, 5836, 57, 'Sales Experience', 2, 'sales approach good', 57, '2021-08-11 08:25:42', 1),
(8640, 2352, 57, 'Importance Of Job', 3, 'need job', 57, '2021-08-11 08:26:41', 1),
(8641, 2352, 57, 'Sales Experience', 2, 'sales approach good', 57, '2021-08-11 08:26:41', 1),
(8642, 5840, 57, 'Confidence Level', 3, 'he is good approach and conf good', 57, '2021-08-11 08:27:23', 1),
(8643, 5846, 18, 'Appearance', 4, 'Good', 18, '2021-08-13 04:45:08', 1),
(8644, 5846, 18, 'Attitude', 4, 'Good', 18, '2021-08-13 04:45:08', 1),
(8645, 5846, 18, 'Communication (English)', 4, 'Good', 18, '2021-08-13 04:45:08', 1),
(8646, 5846, 18, 'Convincing Skills', 3, 'Decent', 18, '2021-08-13 04:45:08', 1),
(8647, 5846, 18, 'Confidence Level', 4, 'Good', 18, '2021-08-13 04:45:08', 1),
(8648, 5846, 18, 'Importance Of Job', 3, 'needed', 18, '2021-08-13 04:45:08', 1),
(8649, 5846, 18, 'Observation Skills', 4, 'Good', 18, '2021-08-13 04:45:08', 1),
(8650, 5846, 18, 'Pressure Handling', 3, 'Ok', 18, '2021-08-13 04:45:08', 1),
(8651, 5846, 18, 'patience', 4, 'Good', 18, '2021-08-13 04:45:08', 1),
(8652, 5846, 18, 'Sustainability', 2, 'Need to filter in trainning', 18, '2021-08-13 04:45:08', 1),
(8653, 5846, 18, 'Sales Experience', 2, 'Below Average', 18, '2021-08-13 04:45:08', 1),
(8654, 5911, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-08-17 05:54:50', 1),
(8655, 5911, 8, 'Convincing Skills', 3, 'avg', 8, '2021-08-17 05:54:50', 1),
(8656, 5911, 8, 'Sustainability', 2, 'check once, looking for job bcoz of calary', 8, '2021-08-17 05:54:50', 1),
(8657, 5911, 57, 'Convincing Skills', 2, 'basic convincing skill ok ', 57, '2021-08-18 02:44:03', 1),
(8658, 5911, 57, 'Sustainability', 3, 'he is already working railway bases some thing agreement base .. ', 57, '2021-08-18 02:44:03', 1),
(8659, 5927, 8, 'Is Employee Clearly Understand the roles and Responsibility?', 1, 'no', 8, '2021-08-19 04:27:59', 1),
(8660, 5927, 8, 'Communication Skills?', 1, 'poor', 8, '2021-08-19 04:27:59', 1),
(8661, 5927, 8, 'Is all the technical Requirements matched with this employee?', 1, 'nil', 8, '2021-08-19 04:27:59', 1),
(8662, 5927, 8, 'attitude of the employee?', 3, 'okay', 8, '2021-08-19 04:27:59', 1),
(8663, 5927, 8, 'relevance experience with this technical spec.', 1, 'no', 8, '2021-08-19 04:27:59', 1),
(8664, 5927, 8, 'looking for a job change for career growth or salary growth?', 2, 'job change and salary', 8, '2021-08-19 04:27:59', 1),
(8665, 5951, 8, 'Communication (English)', 3, 'avg', 8, '2021-08-19 04:32:35', 1),
(8666, 5951, 8, 'Communication (Tamil)', 3, 'okay but native language', 8, '2021-08-19 04:32:35', 1),
(8667, 5951, 8, 'Convincing Skills', 3, 'okay', 8, '2021-08-19 04:32:35', 1),
(8668, 5973, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-08-21 06:27:22', 1),
(8669, 5973, 8, 'Convincing Skills', 3, 'okay', 8, '2021-08-21 06:27:22', 1),
(8670, 5973, 8, 'Importance Of Job', 3, 'yes', 8, '2021-08-21 06:27:22', 1),
(8671, 5973, 8, 'Sales Experience', 3, 'yes', 8, '2021-08-21 06:27:22', 1),
(8672, 5973, 8, 'Existing Experience Analyze', 2, 'avg', 8, '2021-08-21 06:27:22', 1),
(8673, 5936, 40, 'Appearance', 4, 'Good, professional attire', 40, '2021-08-23 11:01:24', 1),
(8674, 5936, 40, 'Attitude', 4, 'Good', 40, '2021-08-23 11:01:24', 1),
(8675, 5936, 40, 'Communication (English)', 5, 'Excellent', 40, '2021-08-23 11:01:24', 1),
(8676, 5936, 40, 'Communication (Tamil)', 4, 'Good in local language', 40, '2021-08-23 11:01:24', 1),
(8677, 5936, 40, 'Convincing Skills', 2, 'Fresher', 40, '2021-08-23 11:01:24', 1),
(8678, 5936, 40, 'Confidence Level', 3, 'Average', 40, '2021-08-23 11:01:24', 1),
(8679, 5936, 40, 'Importance Of Job', 3, 'Might be family background is rich and no money problem', 40, '2021-08-23 11:01:24', 1),
(8680, 5936, 40, 'Observation Skills', 4, 'Good', 40, '2021-08-23 11:01:24', 1),
(8681, 5936, 40, 'Pressure Handling', 3, 'Yet to decide', 40, '2021-08-23 11:01:24', 1),
(8682, 5936, 40, 'patience', 4, 'Good', 40, '2021-08-23 11:01:24', 1),
(8683, 5936, 40, 'Sustainability', 3, 'Doubtful', 40, '2021-08-23 11:01:24', 1),
(8684, 5936, 40, 'Sales Experience', 1, 'Fresher', 40, '2021-08-23 11:01:24', 1),
(8685, 5936, 40, 'Existing Experience Analyze', 1, 'No existing experience', 40, '2021-08-23 11:01:24', 1),
(8686, 5936, 40, 'Practical Challenges Outcome', 1, 'No', 40, '2021-08-23 11:01:24', 1),
(8687, 5936, 40, 'Willing To Work On Holidays', 5, 'Yes he will be ', 40, '2021-08-23 11:01:24', 1),
(8688, 5965, 20, 'Confidence Level', 4, 'bold attidue sales pitch', 20, '2021-08-23 04:52:52', 1),
(8689, 5965, 19, 'Importance Of Job', 4, 'NEED JOB', 19, '2021-08-23 06:46:22', 1),
(8690, 5982, 17, 'Appearance', 3, 'Good', 17, '2021-08-25 12:30:53', 1),
(8691, 5982, 17, 'Attitude', 3, 'Okay', 17, '2021-08-25 12:30:53', 1),
(8692, 5982, 17, 'Communication (English)', 4, 'He will speak ', 17, '2021-08-25 12:30:53', 1),
(8693, 5982, 17, 'Communication (Tamil)', 4, 'good', 17, '2021-08-25 12:30:53', 1),
(8694, 5982, 17, 'Convincing Skills', 4, 'good', 17, '2021-08-25 12:30:53', 1),
(8695, 5982, 17, 'Confidence Level', 4, 'good', 17, '2021-08-25 12:30:53', 1),
(8696, 5982, 17, 'Existing Experience Analyze', 3, 'worked our company only', 17, '2021-08-25 12:30:53', 1),
(8697, 5982, 17, 'Importance Of Job', 4, 'Need financially', 17, '2021-08-25 12:30:53', 1),
(8698, 5982, 17, 'Observation Skills', 3, 'okay ', 17, '2021-08-25 12:30:53', 1),
(8699, 5982, 17, 'patience', 3, 'okay', 17, '2021-08-25 12:30:53', 1),
(8700, 5982, 17, 'Pressure Handling', 4, 'He will manage', 17, '2021-08-25 12:30:53', 1),
(8701, 5982, 17, 'Practical Challenges Outcome', 4, 'okay for that', 17, '2021-08-25 12:30:53', 1),
(8702, 5982, 17, 'Sustainability', 4, 'He will sustain ', 17, '2021-08-25 12:30:53', 1),
(8703, 5982, 17, 'Sales Experience', 3, 'have our company only', 17, '2021-08-25 12:30:53', 1),
(8704, 5982, 17, 'Willing To Work On Holidays', 4, 'Yes', 17, '2021-08-25 12:30:53', 1),
(8705, 5973, 31, 'Appearance', 4, 'Good', 31, '2021-08-25 03:29:17', 1),
(8706, 5973, 31, 'Communication (English)', 3, 'Okay', 31, '2021-08-25 03:29:17', 1),
(8707, 5973, 31, 'Confidence Level', 4, 'Good', 31, '2021-08-25 03:29:17', 1),
(8708, 6031, 8, 'Importance Of Job', 3, 'yes', 8, '2021-08-25 10:21:02', 1),
(8709, 6031, 8, 'Sustainability', 2, 'check once', 8, '2021-08-25 10:21:02', 1),
(8710, 6020, 31, 'Appearance', 4, 'good', 31, '2021-08-26 11:18:54', 1),
(8711, 6020, 31, 'Communication (English)', 4, 'Good', 31, '2021-08-26 11:18:54', 1),
(8712, 5973, 29, 'Convincing Skills', 3, 'can improve', 29, '2021-08-26 11:19:30', 1),
(8713, 5973, 29, 'Sales Experience', 2, 'in term insurance, knows about the industry', 29, '2021-08-26 11:19:30', 1),
(8714, 6020, 29, 'Convincing Skills', 2, 'can do well in our industry ', 29, '2021-08-26 11:27:15', 1),
(8715, 6020, 29, 'Confidence Level', 2, 'fresher has Potential to build', 29, '2021-08-26 11:27:15', 1),
(8716, 6047, 8, 'Communication (English)', 3, 'okay', 8, '2021-08-26 01:34:13', 1),
(8717, 6047, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-08-26 01:34:13', 1),
(8718, 6047, 8, 'Convincing Skills', 3, 'good', 8, '2021-08-26 01:34:13', 1),
(8719, 6047, 8, 'Confidence Level', 3, 'good', 8, '2021-08-26 01:34:13', 1),
(8720, 6047, 8, 'Sustainability', 2, 'check once', 8, '2021-08-26 01:34:13', 1),
(8721, 6047, 19, 'Communication (English)', 4, 'good', 19, '2021-08-26 01:52:32', 1),
(8722, 6047, 19, 'Convincing Skills', 4, 'good', 19, '2021-08-26 01:52:32', 1),
(8723, 6025, 13, 'Communication (Tamil)', 4, 'Good', 13, '2021-08-28 11:41:51', 1),
(8724, 6025, 13, 'convincing Skills', 4, 'good', 13, '2021-08-28 11:41:51', 1),
(8725, 6025, 13, 'Confidence Level', 4, 'very good', 13, '2021-08-28 11:41:51', 1),
(8726, 6024, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-08-28 11:52:56', 1),
(8727, 6024, 13, 'Confidence Level', 4, 'good', 13, '2021-08-28 11:52:56', 1),
(8728, 6094, 8, 'Communication (English)', 3, 'good', 8, '2021-08-28 01:25:49', 1),
(8729, 6094, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-08-28 01:25:49', 1),
(8730, 6094, 8, 'Convincing Skills', 3, 'okay', 8, '2021-08-28 01:25:49', 1),
(8731, 6094, 8, 'Pressure Handling', 2, 'check once', 8, '2021-08-28 01:25:49', 1),
(8732, 6094, 8, 'Sustainability', 2, 'check twice', 8, '2021-08-28 01:25:49', 1),
(8733, 6094, 34, 'Appearance', 4, 'good', 34, '2021-08-28 03:40:36', 1),
(8734, 6094, 34, 'Attitude', 4, 'good', 34, '2021-08-28 03:40:36', 1),
(8735, 6094, 34, 'Communication (English)', 4, 'good communication in english', 34, '2021-08-28 03:40:36', 1),
(8736, 6094, 34, 'Communication (Tamil)', 5, 'good', 34, '2021-08-28 03:40:36', 1),
(8737, 6094, 34, 'Convincing Skills', 4, 'he is having convincing Knowledge ', 34, '2021-08-28 03:40:36', 1),
(8738, 6094, 34, 'Confidence Level', 4, 'good', 34, '2021-08-28 03:40:36', 1),
(8739, 6094, 34, 'Existing Experience Analyze', 4, 'good', 34, '2021-08-28 03:40:36', 1),
(8740, 6094, 34, 'Importance Of Job', 5, 'he need job Immediately  ', 34, '2021-08-28 03:40:36', 1),
(8741, 6094, 34, 'Observation Skills', 4, 'good', 34, '2021-08-28 03:40:36', 1),
(8742, 6094, 34, 'patience', 4, 'good', 34, '2021-08-28 03:40:36', 1),
(8743, 6094, 34, 'Pressure Handling', 3, 'average', 34, '2021-08-28 03:40:36', 1),
(8744, 6094, 34, 'Practical Challenges Outcome', 3, 'ok', 34, '2021-08-28 03:40:36', 1),
(8745, 6094, 34, 'Sustainability', 4, 'he will sustain and he is ready to sign bond also', 34, '2021-08-28 03:40:36', 1),
(8746, 6094, 34, 'Sales Experience', 4, 'he already having sales Experience ', 34, '2021-08-28 03:40:36', 1),
(8747, 6094, 34, 'Willing To Work On Holidays', 4, 'he will work', 34, '2021-08-28 03:40:36', 1),
(8748, 6105, 8, 'Sustainability', 2, 'check once, newly married', 8, '2021-09-01 12:22:59', 1),
(8749, 6140, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-09-01 03:35:56', 1),
(8750, 6140, 8, 'Convincing Skills', 3, 'okay', 8, '2021-09-01 03:35:56', 1),
(8751, 6140, 8, 'Confidence Level', 3, 'good', 8, '2021-09-01 03:35:56', 1),
(8752, 6140, 8, 'Importance Of Job', 3, 'yes, father auto driver', 8, '2021-09-01 03:35:56', 1),
(8753, 6159, 8, 'Communication (English)', 3, 'okay', 8, '2021-09-02 11:11:18', 1),
(8754, 6159, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-09-02 11:11:18', 1),
(8755, 6159, 8, 'Convincing Skills', 2, 'we has to train', 8, '2021-09-02 11:11:18', 1),
(8756, 6159, 8, 'Confidence Level', 3, 'good', 8, '2021-09-02 11:11:18', 1),
(8757, 6159, 8, 'Importance Of Job', 3, 'yes', 8, '2021-09-02 11:11:18', 1),
(8758, 6164, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-09-02 12:48:31', 1),
(8759, 6164, 8, 'Convincing Skills', 3, 'good', 8, '2021-09-02 12:48:31', 1),
(8760, 6164, 8, 'Confidence Level', 3, 'okay', 8, '2021-09-02 12:48:31', 1),
(8761, 6169, 8, 'Sustainability', 2, 'check once', 8, '2021-09-02 03:04:48', 1),
(8762, 6140, 29, 'Communication (English)', 2, 'can speak english', 29, '2021-09-02 03:18:39', 1),
(8763, 6140, 29, 'Convincing Skills', 2, 'has some skills can improve', 29, '2021-09-02 03:18:39', 1),
(8764, 6198, 34, 'Appearance', 4, 'good appearance ', 34, '2021-09-04 01:26:39', 1),
(8765, 6198, 34, 'Attitude', 4, 'good', 34, '2021-09-04 01:26:39', 1),
(8766, 6198, 34, 'Communication (English)', 4, 'good in english', 34, '2021-09-04 01:26:39', 1),
(8767, 6198, 34, 'Communication (Tamil)', 5, 'good ', 34, '2021-09-04 01:26:39', 1),
(8768, 6198, 34, 'Convincing Skills', 4, 'he is not having any sale experince but still he is trying to convince', 34, '2021-09-04 01:26:39', 1),
(8769, 6198, 34, 'Confidence Level', 4, 'good', 34, '2021-09-04 01:26:39', 1),
(8770, 6198, 34, 'Existing Experience Analyze', 4, 'existing jobs are in manufacturing line now new for sale industry', 34, '2021-09-04 01:26:39', 1),
(8771, 6198, 34, 'Importance Of Job', 4, 'needs job Immediately  ', 34, '2021-09-04 01:26:39', 1),
(8772, 6198, 34, 'Observation Skills', 4, 'good', 34, '2021-09-04 01:26:39', 1),
(8773, 6198, 34, 'patience', 4, 'good', 34, '2021-09-04 01:26:39', 1),
(8774, 6198, 34, 'Pressure Handling', 4, 'he  will handle the pressure', 34, '2021-09-04 01:26:39', 1),
(8775, 6198, 34, 'Practical Challenges Outcome', 4, 'ok', 34, '2021-09-04 01:26:39', 1),
(8776, 6198, 34, 'Sustainability', 4, 'surely he will sustain', 34, '2021-09-04 01:26:39', 1),
(8777, 6198, 34, 'Sales Experience', 3, 'no experience on sales he worked in production line', 34, '2021-09-04 01:26:39', 1),
(8778, 6198, 34, 'Willing To Work On Holidays', 4, 'he will work in sundays', 34, '2021-09-04 01:26:39', 1),
(8779, 6218, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-09-06 01:42:48', 1),
(8780, 6218, 8, 'Convincing Skills', 3, 'good', 8, '2021-09-06 01:42:48', 1),
(8781, 6218, 8, 'Confidence Level', 3, 'good', 8, '2021-09-06 01:42:48', 1),
(8782, 6218, 8, 'Sustainability', 2, 'check once', 8, '2021-09-06 01:42:48', 1),
(8783, 6216, 8, 'convincing Skills', 3, 'okay', 8, '2021-09-06 01:48:16', 1),
(8784, 6216, 8, 'Pressure Handling', 2, 'check once', 8, '2021-09-06 01:48:16', 1),
(8785, 6232, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-09-07 11:21:38', 1),
(8786, 6232, 8, 'Sustainability', 2, 'check once, may takeover family biz.', 8, '2021-09-07 11:21:38', 1),
(8787, 6233, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-09-07 12:38:08', 1),
(8788, 6233, 8, 'Confidence Level', 3, 'good', 8, '2021-09-07 12:38:08', 1),
(8789, 6112, 19, 'Appearance', 4, 'Fit for field  Executive', 19, '2021-09-07 12:44:07', 1),
(8790, 6112, 19, 'Sustainability', 4, 'Sustainability', 19, '2021-09-07 12:44:07', 1),
(8791, 6237, 8, 'Communication (Tamil)', 3, 'native slang', 8, '2021-09-07 03:39:50', 1),
(8792, 6237, 8, 'Convincing Skills', 3, 'good', 8, '2021-09-07 03:39:50', 1),
(8793, 6237, 8, 'Confidence Level', 3, 'good', 8, '2021-09-07 03:39:50', 1),
(8794, 6237, 8, 'Sustainability', 2, 'check once.', 8, '2021-09-07 03:39:50', 1),
(8795, 6239, 8, 'Communication (English)', 3, 'good', 8, '2021-09-07 03:43:19', 1),
(8796, 6239, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-09-07 03:43:19', 1),
(8797, 6239, 8, 'Convincing Skills', 3, 'good', 8, '2021-09-07 03:43:19', 1),
(8798, 6239, 8, 'Confidence Level', 3, 'okay', 8, '2021-09-07 03:43:19', 1),
(8799, 6242, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-09-07 04:07:48', 1),
(8800, 6242, 13, 'Confidence Level', 4, 'good', 13, '2021-09-07 04:07:48', 1),
(8801, 6054, 30, 'Appearance', 3, 'good', 30, '2021-09-08 04:58:09', 1),
(8802, 6054, 30, 'Communication (English)', 3, 'communication skill ok', 30, '2021-09-08 04:58:09', 1),
(8803, 6054, 30, 'Sales Experience', 3, 'not relevant but he have experience', 30, '2021-09-08 04:58:09', 1),
(8804, 6054, 30, 'Willing To Work On Holidays', 4, 'he will work on sundays', 30, '2021-09-08 04:58:09', 1),
(8805, 5970, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-09-09 10:19:00', 1),
(8806, 5970, 13, 'Importance (Job)', 4, 'high', 13, '2021-09-09 10:19:00', 1),
(8807, 6263, 8, 'Sustainability', 2, 'check once, can work 1yr', 8, '2021-09-09 12:18:28', 1),
(8808, 6239, 29, 'Communication (English)', 3, 'Got good communication', 29, '2021-09-11 11:45:37', 1),
(8809, 6239, 29, 'Convincing Skills', 2, 'Has sales skill, we can improvise', 29, '2021-09-11 11:45:37', 1),
(8810, 6221, 29, 'Convincing Skills', 3, 'Got convincing skill, worked earlier with us', 29, '2021-09-11 11:48:19', 1),
(8811, 6221, 29, 'Pressure Handling', 2, 'got experience can do well', 29, '2021-09-11 11:48:19', 1),
(8812, 6221, 29, 'Sales Experience', 3, 'earlier worked in cRM for 1 year', 29, '2021-09-11 11:48:19', 1),
(8813, 6298, 74, 'Attitude', 3, 'very calm , good listener', 74, '2021-09-13 04:34:50', 1),
(8814, 6298, 74, 'Communication (Tamil)', 3, 'average only', 74, '2021-09-13 04:34:50', 1),
(8815, 6298, 74, 'Importance (Job)', 4, 'very poor family , job need', 74, '2021-09-13 04:34:50', 1),
(8816, 6298, 74, 'Sustainability', 4, 'have no other option very much need', 74, '2021-09-13 04:34:50', 1),
(8817, 6299, 74, 'Attitude', 4, 'talk active and very much intrested', 74, '2021-09-13 04:38:46', 1),
(8818, 6299, 74, 'Importance (Job)', 4, 'family in poor situation so job needed', 74, '2021-09-13 04:38:46', 1),
(8819, 6299, 74, 'Sustainability', 4, 'financial crisis need a job and not intretsed in core', 74, '2021-09-13 04:38:46', 1),
(8820, 6297, 74, 'Communication (Tamil)', 3, 'good in language ', 74, '2021-09-13 04:41:59', 1),
(8821, 6297, 74, 'Confidence Level', 3, 'have hood confidence ', 74, '2021-09-13 04:41:59', 1),
(8822, 6297, 74, 'Sustainability', 4, 'family in poor condition so job need ', 74, '2021-09-13 04:41:59', 1),
(8823, 6295, 74, 'Attitude', 3, 'well maturied and talk active', 74, '2021-09-13 04:46:28', 1),
(8824, 6295, 74, 'Confidence Level', 3, 'confidence is good only', 74, '2021-09-13 04:46:28', 1),
(8825, 6295, 74, 'Sustainability', 3, 'job need father passed so no option', 74, '2021-09-13 04:46:28', 1),
(8826, 6294, 74, 'Attitude', 3, 'good attitude and talk active', 74, '2021-09-13 04:55:46', 1),
(8827, 6294, 74, 'Confidence Level', 3, 'already 6 months in experience good in confidence', 74, '2021-09-13 04:55:46', 1),
(8828, 6294, 74, 'Sustainability', 4, 'father is a electrician job need', 74, '2021-09-13 04:55:46', 1),
(8829, 6303, 8, 'Attitude', 3, 'okay', 8, '2021-09-14 12:08:03', 1),
(8830, 6303, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-09-14 12:08:03', 1),
(8831, 6303, 8, 'Convincing Skills', 3, 'good', 8, '2021-09-14 12:08:03', 1),
(8832, 6303, 8, 'Confidence Level', 3, 'good', 8, '2021-09-14 12:08:03', 1),
(8833, 6303, 8, 'Sales Experience', 3, 'yes', 8, '2021-09-14 12:08:03', 1),
(8834, 5207, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-09-14 12:15:43', 1),
(8835, 5207, 13, 'Confidence Level', 4, 'good', 13, '2021-09-14 12:15:43', 1),
(8836, 6318, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-09-15 12:55:55', 1),
(8837, 6318, 8, 'convincing Skills', 3, 'good', 8, '2021-09-15 12:55:55', 1),
(8838, 6318, 8, 'Confidence Level', 3, 'good', 8, '2021-09-15 12:55:55', 1),
(8839, 6322, 74, 'Communication (Tamil)', 3, 'Good language skills and talk active', 74, '2021-09-15 04:21:54', 1),
(8840, 6322, 74, 'convincing Skills', 3, 'Good convincing skills', 74, '2021-09-15 04:21:54', 1),
(8841, 6322, 74, 'Importance (Job)', 4, 'Highly preferred for job', 74, '2021-09-15 04:21:54', 1),
(8842, 6327, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-09-16 11:51:17', 1),
(8843, 6327, 8, 'Convincing Skills', 3, 'good', 8, '2021-09-16 11:51:17', 1),
(8844, 6327, 8, 'Confidence Level', 3, 'good', 8, '2021-09-16 11:51:17', 1),
(8845, 6327, 8, 'Sustainability', 3, 'job need', 8, '2021-09-16 11:51:17', 1),
(8846, 6331, 8, 'Communication (English)', 2, 'below avg', 8, '2021-09-16 12:19:20', 1),
(8847, 6331, 8, 'Communication (Tamil)', 3, 'okay but native slang', 8, '2021-09-16 12:19:20', 1),
(8848, 6331, 8, 'Convincing Skills', 2, 'avg', 8, '2021-09-16 12:19:20', 1),
(8849, 6331, 8, 'Confidence Level', 3, 'okay', 8, '2021-09-16 12:19:20', 1),
(8850, 6331, 8, 'Sustainability', 2, 'Check Once, Waiting For His Paper Once He Received He May Move.', 8, '2021-09-16 12:19:20', 1),
(8851, 6337, 8, 'Communication (English)', 2, 'avg', 8, '2021-09-16 04:34:08', 1),
(8852, 6337, 8, 'Communication (Tamil)', 3, 'okay but very slow', 8, '2021-09-16 04:34:08', 1),
(8853, 6337, 8, 'Convincing Skills', 3, 'avg', 8, '2021-09-16 04:34:08', 1),
(8854, 6337, 8, 'Confidence Level', 3, 'okay', 8, '2021-09-16 04:34:08', 1),
(8855, 6337, 8, 'Sales Experience', 3, 'yes but not in insurance', 8, '2021-09-16 04:34:08', 1),
(8856, 6337, 33, 'Appearance', 3, 'GOOD', 33, '2021-09-16 05:27:41', 1),
(8857, 6337, 33, 'Communication (English)', 3, 'GOOD', 33, '2021-09-16 05:27:41', 1),
(8858, 6337, 33, 'Communication (Tamil)', 3, 'GOOD', 33, '2021-09-16 05:27:41', 1),
(8859, 6337, 33, 'Convincing Skills', 3, 'GOOD IN SALES EXPERIENCE\n', 33, '2021-09-16 05:27:41', 1),
(8860, 6337, 33, 'Sustainability', 3, 'GOOD', 33, '2021-09-16 05:27:41', 1),
(8861, 4154, 8, 'Attitude', 3, 'okay', 8, '2021-09-16 05:46:10', 1),
(8862, 4154, 8, 'Communication (English)', 2, 'avg', 8, '2021-09-16 05:46:10', 1),
(8863, 4154, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-09-16 05:46:10', 1),
(8864, 4154, 8, 'Convincing Skills', 2, 'avg', 8, '2021-09-16 05:46:10', 1),
(8865, 4154, 8, 'Confidence Level', 2, 'avg', 8, '2021-09-16 05:46:10', 1),
(8866, 4154, 8, 'Pressure Handling', 2, 'avg', 8, '2021-09-16 05:46:10', 1),
(8867, 4154, 8, 'patience', 3, 'yes', 8, '2021-09-16 05:46:10', 1),
(8868, 4154, 8, 'Sustainability', 2, 'no, check once', 8, '2021-09-16 05:46:10', 1),
(8869, 4154, 8, 'Sales Experience', 3, 'yes', 8, '2021-09-16 05:46:10', 1),
(8870, 6337, 18, 'Appearance', 4, 'Good', 18, '2021-09-16 06:17:01', 1),
(8871, 6337, 18, 'Attitude', 3, 'Decent', 18, '2021-09-16 06:17:01', 1),
(8872, 6337, 18, 'Communication (English)', 2, 'average', 18, '2021-09-16 06:17:01', 1),
(8873, 6337, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-09-16 06:17:01', 1),
(8874, 6337, 18, 'Convincing Skills', 4, 'Good', 18, '2021-09-16 06:17:01', 1),
(8875, 6337, 18, 'Confidence Level', 4, 'Good', 18, '2021-09-16 06:17:01', 1),
(8876, 6337, 18, 'Importance Of Job', 4, 'Need', 18, '2021-09-16 06:17:01', 1),
(8877, 6337, 18, 'Observation Skills', 4, 'Good', 18, '2021-09-16 06:17:01', 1),
(8878, 6337, 18, 'Pressure Handling', 4, 'Good', 18, '2021-09-16 06:17:01', 1),
(8879, 6337, 18, 'patience', 3, 'Ok', 18, '2021-09-16 06:17:01', 1),
(8880, 6337, 18, 'Sustainability', 4, 'Good', 18, '2021-09-16 06:17:01', 1),
(8881, 6337, 18, 'Sales Experience', 4, 'Good', 18, '2021-09-16 06:17:01', 1),
(8882, 6337, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-09-16 06:17:01', 1),
(8883, 6339, 8, 'Communication (Tamil)', 3, 'Okay', 8, '2021-09-17 11:28:33', 1),
(8884, 6339, 8, 'Convincing Skills', 3, 'Average ', 8, '2021-09-17 11:28:33', 1),
(8885, 6339, 19, 'Sustainability', 4, 'Sustain Job needed', 19, '2021-09-17 11:39:52', 1),
(8886, 6342, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-09-17 12:00:22', 1),
(8887, 6342, 8, 'Convincing Skills', 3, 'avg', 8, '2021-09-17 12:00:22', 1),
(8888, 6342, 8, 'Confidence Level', 3, 'avg', 8, '2021-09-17 12:00:22', 1),
(8889, 6342, 8, 'Importance Of Job', 3, 'yes', 8, '2021-09-17 12:00:22', 1),
(8890, 6342, 8, 'Pressure Handling', 2, 'check once', 8, '2021-09-17 12:00:22', 1),
(8891, 6342, 8, 'Sales Experience', 2, 'nil', 8, '2021-09-17 12:00:22', 1),
(8892, 6355, 8, 'Attitude', 3, 'okat', 8, '2021-09-17 06:21:35', 1),
(8893, 6355, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-09-17 06:21:35', 1),
(8894, 6355, 8, 'Convincing Skills', 2, 'Average', 8, '2021-09-17 06:21:35', 1),
(8895, 6355, 8, 'Confidence Level', 3, 'avg', 8, '2021-09-17 06:21:35', 1),
(8896, 6355, 8, 'Sustainability', 3, 'yes', 8, '2021-09-17 06:21:35', 1),
(8897, 6355, 8, 'Sales Experience', 3, 'yes but in showroom care sales', 8, '2021-09-17 06:21:35', 1),
(8898, 6355, 8, 'Existing Experience Analyze', 3, 'avg', 8, '2021-09-17 06:21:35', 1),
(8899, 6323, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-09-18 11:54:03', 1),
(8900, 6323, 13, 'convincing Skills', 4, 'good', 13, '2021-09-18 11:54:03', 1),
(8901, 4154, 33, 'Sustainability', 2, 'NOT GOOD', 33, '2021-09-18 12:56:16', 1),
(8902, 6383, 74, 'Attitude', 3, 'good only', 74, '2021-09-20 04:36:32', 1),
(8903, 6383, 74, 'Communication (Tamil)', 3, 'good explanation skills', 74, '2021-09-20 04:36:32', 1),
(8904, 6383, 74, 'Confidence Level', 4, 'high on confidence level', 74, '2021-09-20 04:36:32', 1),
(8905, 6383, 74, 'Importance (Job)', 3, 'much needed job', 74, '2021-09-20 04:36:32', 1),
(8906, 6383, 74, 'Sustainability', 3, 'no other oportuninty', 74, '2021-09-20 04:36:32', 1),
(8907, 6403, 8, 'Attitude', 3, 'good', 8, '2021-09-21 11:49:17', 1),
(8908, 6403, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-09-21 11:49:17', 1),
(8909, 6403, 8, 'Convincing Skills', 3, 'good', 8, '2021-09-21 11:49:17', 1),
(8910, 6403, 8, 'Confidence Level', 3, 'good', 8, '2021-09-21 11:49:17', 1),
(8911, 6403, 20, 'Appearance', 5, 'professional apperance', 20, '2021-09-21 11:54:41', 1),
(8912, 6403, 20, 'Attitude', 5, 'Polite attitude', 20, '2021-09-21 11:54:41', 1),
(8913, 6403, 20, 'Communication (Tamil)', 5, 'good level of communication', 20, '2021-09-21 11:54:41', 1),
(8914, 6407, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-09-21 01:16:10', 1),
(8915, 6407, 8, 'Convincing Skills', 3, 'okay', 8, '2021-09-21 01:16:10', 1),
(8916, 6407, 8, 'Confidence Level', 2, 'avg', 8, '2021-09-21 01:16:10', 1),
(8917, 6407, 8, 'Pressure Handling', 2, 'check once', 8, '2021-09-21 01:16:10', 1),
(8918, 6412, 8, 'Attitude', 3, 'okay', 8, '2021-09-21 02:42:25', 1),
(8919, 6412, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-09-21 02:42:25', 1),
(8920, 6412, 8, 'Confidence Level', 3, 'good', 8, '2021-09-21 02:42:25', 1),
(8921, 6412, 8, 'Importance (Job)', 3, 'yes.', 8, '2021-09-21 02:42:25', 1),
(8922, 6355, 18, 'Appearance', 4, 'Good', 18, '2021-09-21 04:23:35', 1),
(8923, 6355, 18, 'Attitude', 4, 'Good', 18, '2021-09-21 04:23:35', 1),
(8924, 6355, 18, 'Communication (English)', 3, 'Decent', 18, '2021-09-21 04:23:35', 1),
(8925, 6355, 18, 'Communication (Tamil)', 4, 'Gdod', 18, '2021-09-21 04:23:35', 1),
(8926, 6355, 18, 'Convincing Skills', 4, 'Good', 18, '2021-09-21 04:23:35', 1),
(8927, 6355, 18, 'Confidence Level', 4, 'Good', 18, '2021-09-21 04:23:35', 1),
(8928, 6355, 18, 'Importance Of Job', 4, 'Needed', 18, '2021-09-21 04:23:35', 1),
(8929, 6355, 18, 'Observation Skills', 4, 'Good', 18, '2021-09-21 04:23:35', 1),
(8930, 6355, 18, 'Sales Experience', 4, 'Good', 18, '2021-09-21 04:23:35', 1),
(8931, 6411, 8, 'Attitude', 3, 'good', 8, '2021-09-22 10:21:08', 1),
(8932, 6411, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-09-22 10:21:08', 1),
(8933, 6411, 8, 'Confidence Level', 3, 'okay', 8, '2021-09-22 10:21:08', 1),
(8934, 6449, 8, 'Attitude', 3, 'adaptable ', 8, '2021-09-24 01:09:30', 1),
(8935, 6449, 8, 'Communication (English)', 3, 'good', 8, '2021-09-24 01:09:30', 1),
(8936, 6449, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-09-24 01:09:30', 1),
(8937, 6449, 8, 'Convincing Skills', 3, 'good', 8, '2021-09-24 01:09:30', 1),
(8938, 6449, 8, 'Confidence Level', 3, 'good', 8, '2021-09-24 01:09:30', 1),
(8939, 6449, 8, 'Sales Experience', 2, 'no', 8, '2021-09-24 01:09:30', 1),
(8940, 6448, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-09-24 02:32:15', 1),
(8941, 6448, 8, 'convincing Skills', 3, 'okay', 8, '2021-09-24 02:32:15', 1),
(8942, 6448, 8, 'Confidence Level', 3, 'good', 8, '2021-09-24 02:32:15', 1),
(8943, 6448, 8, 'Importance (Job)', 3, 'high', 8, '2021-09-24 02:32:15', 1),
(8944, 6125, 29, 'Convincing Skills', 3, 'has skills we can Develop ', 29, '2021-09-27 10:00:24', 1),
(8945, 6125, 29, 'Pressure Handling', 2, 'can handle', 29, '2021-09-27 10:00:24', 1),
(8946, 6125, 29, 'Sales Experience', 2, 'worked in credit card sales,', 29, '2021-09-27 10:00:24', 1),
(8947, 6455, 8, 'Communication (Tamil)', 3, 'good', 8, '2021-09-27 12:01:49', 1),
(8948, 6455, 8, 'convincing Skills', 2, 'avg', 8, '2021-09-27 12:01:49', 1),
(8949, 6455, 8, 'Confidence Level', 3, 'good', 8, '2021-09-27 12:01:49', 1),
(8950, 6482, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-10-04 12:16:00', 1),
(8951, 6482, 8, 'convincing Skills', 3, 'okay', 8, '2021-10-04 12:16:00', 1),
(8952, 6482, 8, 'Confidence Level', 3, 'good', 8, '2021-10-04 12:16:00', 1),
(8953, 6482, 8, 'Importance (Job)', 3, 'yes', 8, '2021-10-04 12:16:00', 1),
(8954, 6482, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-10-04 12:41:49', 1),
(8955, 6482, 13, 'convincing Skills', 4, 'good', 13, '2021-10-04 12:41:49', 1),
(8956, 6482, 13, 'Importance (Job)', 4, 'high', 13, '2021-10-04 12:41:49', 1),
(8957, 4154, 18, 'Appearance', 3, 'Ok', 18, '2021-10-05 07:17:38', 1),
(8958, 4154, 18, 'Attitude', 3, 'Ok', 18, '2021-10-05 07:17:38', 1),
(8959, 4154, 18, 'Communication (English)', 3, 'Average', 18, '2021-10-05 07:17:38', 1),
(8960, 4154, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-10-05 07:17:38', 1),
(8961, 4154, 18, 'Convincing Skills', 4, 'Decent', 18, '2021-10-05 07:17:38', 1),
(8962, 4154, 18, 'Confidence Level', 4, 'Good', 18, '2021-10-05 07:17:38', 1),
(8963, 4154, 18, 'Importance Of Job', 4, 'Need', 18, '2021-10-05 07:17:38', 1),
(8964, 4154, 18, 'Observation Skills', 4, 'Good', 18, '2021-10-05 07:17:38', 1),
(8965, 4154, 18, 'Pressure Handling', 3, 'Average', 18, '2021-10-05 07:17:38', 1),
(8966, 4154, 18, 'patience', 3, 'Ok', 18, '2021-10-05 07:17:38', 1),
(8967, 4154, 18, 'Sustainability', 4, 'Yes', 18, '2021-10-05 07:17:38', 1),
(8968, 6507, 74, 'Attitude', 3, 'good in attitude', 74, '2021-10-06 12:58:33', 1),
(8969, 6507, 74, 'Communication (English)', 4, 'exellent in english', 74, '2021-10-06 12:58:33', 1),
(8970, 6507, 74, 'Importance (Job)', 3, 'highly job need', 74, '2021-10-06 12:58:33', 1),
(8971, 6507, 74, 'Sustainability', 2, 'financial crisis joob need', 74, '2021-10-06 12:58:33', 1),
(8972, 6510, 74, 'Communication (English)', 3, 'fluency in english', 74, '2021-10-06 01:11:36', 1),
(8973, 6510, 74, 'Observation skills', 3, 'well matured and good listining', 74, '2021-10-06 01:11:36', 1),
(8974, 6510, 74, 'Sustainability', 3, 'financial crisis highly job need', 74, '2021-10-06 01:11:36', 1),
(8975, 6497, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-10-06 06:36:05', 1),
(8976, 6497, 13, 'convincing Skills', 4, 'good', 13, '2021-10-06 06:36:05', 1),
(8977, 6497, 13, 'Confidence Level', 4, 'good', 13, '2021-10-06 06:36:05', 1),
(8978, 6500, 13, 'Communication (Tamil)', 2, 'low', 13, '2021-10-06 06:37:11', 1),
(8979, 6500, 13, 'convincing Skills', 2, 'low', 13, '2021-10-06 06:37:11', 1),
(8980, 6520, 8, 'Communication (Tamil)', 3, 'okay', 8, '2021-10-07 06:32:03', 1),
(8981, 6520, 8, 'convincing Skills', 3, 'okay', 8, '2021-10-07 06:32:03', 1),
(8982, 6520, 8, 'Confidence Level', 3, 'good', 8, '2021-10-07 06:32:03', 1),
(8983, 6520, 74, 'Attitude', 2, 'good only', 74, '2021-10-07 07:51:49', 1),
(8984, 6520, 74, 'Confidence Level', 3, 'high confidence level', 74, '2021-10-07 07:51:49', 1),
(8985, 6449, 18, 'Appearance', 4, 'Good', 18, '2021-10-08 02:53:03', 1),
(8986, 6449, 18, 'Attitude', 3, 'Decent', 18, '2021-10-08 02:53:03', 1),
(8987, 6449, 18, 'Communication (English)', 4, 'Good', 18, '2021-10-08 02:53:03', 1),
(8988, 6449, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-10-08 02:53:03', 1),
(8989, 6449, 18, 'Convincing Skills', 3, 'Decent', 18, '2021-10-08 02:53:03', 1),
(8990, 6449, 18, 'Confidence Level', 4, 'Good', 18, '2021-10-08 02:53:03', 1),
(8991, 6449, 18, 'Importance Of Job', 3, 'Needed', 18, '2021-10-08 02:53:03', 1),
(8992, 6449, 18, 'Observation Skills', 4, 'Good', 18, '2021-10-08 02:53:03', 1),
(8993, 6449, 18, 'Pressure Handling', 4, 'Ok', 18, '2021-10-08 02:53:03', 1),
(8994, 6449, 18, 'patience', 3, 'Decent', 18, '2021-10-08 02:53:03', 1),
(8995, 6449, 18, 'Sustainability', 3, '1 Year', 18, '2021-10-08 02:53:03', 1),
(8996, 6449, 18, 'Sales Experience', 2, 'Average and not relevant', 18, '2021-10-08 02:53:03', 1),
(8997, 6449, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2021-10-08 02:53:03', 1),
(8998, 6449, 18, 'Practical Challenges Outcome', 4, 'Good', 18, '2021-10-08 02:53:03', 1),
(8999, 6537, 74, 'Communication (Tamil)', 3, 'good in communication', 74, '2021-10-09 04:42:34', 1),
(9000, 6537, 74, 'Importance (Job)', 3, 'highly job need', 74, '2021-10-09 04:42:34', 1),
(9001, 6537, 74, 'Pressure Handling', 3, 'good in pressure handling', 74, '2021-10-09 04:42:34', 1),
(9002, 6542, 74, 'Importance (Job)', 3, 'highly job need', 74, '2021-10-10 12:39:11', 1),
(9003, 6542, 74, 'Pressure Handling', 3, 'good in pressure handling', 74, '2021-10-10 12:39:11', 1),
(9004, 6573, 13, 'Communication (Tamil)', 4, 'GOOD', 13, '2021-10-16 04:57:58', 1),
(9005, 6573, 13, 'Confidence Level', 4, 'GOOD', 13, '2021-10-16 04:57:58', 1),
(9006, 6574, 13, 'Communication (English)', 4, 'GOOD', 13, '2021-10-16 05:00:29', 1),
(9007, 6574, 13, 'convincing Skills', 4, 'GOOD', 13, '2021-10-16 05:00:29', 1),
(9008, 6587, 41, 'Appearance', 3, 'Good', 41, '2021-10-18 03:27:07', 1),
(9009, 6587, 41, 'Attitude', 3, 'Good', 41, '2021-10-18 03:27:07', 1),
(9010, 6587, 41, 'Communication (Tamil)', 4, 'Good', 41, '2021-10-18 03:27:07', 1),
(9011, 6587, 41, 'Communication (English)', 2, 'Ok', 41, '2021-10-18 03:27:07', 1),
(9012, 6587, 41, 'convincing Skills', 2, 'Ok', 41, '2021-10-18 03:27:07', 1),
(9013, 6587, 41, 'Confidence Level', 2, 'Ok', 41, '2021-10-18 03:27:07', 1),
(9014, 6587, 41, 'Importance (Job)', 3, 'Yes', 41, '2021-10-18 03:27:07', 1),
(9015, 6587, 41, 'Observation skills', 3, 'above Ok', 41, '2021-10-18 03:27:07', 1),
(9016, 6587, 41, 'Pressure Handling', 3, 'Yes', 41, '2021-10-18 03:27:07', 1),
(9017, 6587, 41, 'patience', 2, 'Yes', 41, '2021-10-18 03:27:07', 1),
(9018, 6587, 41, 'Sustainability', 2, 'Need to check', 41, '2021-10-18 03:27:07', 1),
(9019, 6588, 41, 'Appearance', 3, 'good', 41, '2021-10-18 03:28:48', 1),
(9020, 6588, 41, 'Attitude', 3, 'good', 41, '2021-10-18 03:28:48', 1),
(9021, 6588, 41, 'Communication (Tamil)', 3, 'good', 41, '2021-10-18 03:28:48', 1),
(9022, 6588, 41, 'Communication (English)', 2, 'average', 41, '2021-10-18 03:28:48', 1),
(9023, 6588, 41, 'convincing Skills', 2, 'ok', 41, '2021-10-18 03:28:48', 1),
(9024, 6588, 41, 'Confidence Level', 2, 'ok', 41, '2021-10-18 03:28:48', 1),
(9025, 6588, 41, 'Importance (Job)', 3, 'yes', 41, '2021-10-18 03:28:48', 1),
(9026, 6588, 41, 'Observation skills', 3, 'yes', 41, '2021-10-18 03:28:48', 1),
(9027, 6588, 41, 'Pressure Handling', 2, 'ok', 41, '2021-10-18 03:28:48', 1),
(9028, 6588, 41, 'patience', 3, 'yes', 41, '2021-10-18 03:28:48', 1),
(9029, 6588, 41, 'Sustainability', 2, 'need to check', 41, '2021-10-18 03:28:48', 1),
(9030, 6631, 57, 'Willing To Work On Holidays', 4, 'he is willing to work holidays', 57, '2021-10-21 05:16:45', 1),
(9031, 6584, 74, 'Communication (Tamil)', 3, 'good comunication skills', 74, '2021-10-22 09:56:05', 1),
(9032, 6584, 74, 'Importance (Job)', 3, 'highly job need', 74, '2021-10-22 09:56:05', 1),
(9033, 6563, 74, 'Attitude', 1, 'highly attitude not suit for our team', 74, '2021-10-22 09:59:44', 1),
(9034, 6563, 74, 'patience', 1, 'have no patience while waiting for interview', 74, '2021-10-22 09:59:44', 1),
(9035, 6198, 19, 'Sustainability', 1, 'Not Fit', 19, '2021-10-23 11:38:30', 1),
(9036, 6550, 19, 'Sustainability', 1, 'No Sustain', 19, '2021-10-23 11:44:57', 1),
(9037, 6662, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-10-25 01:34:51', 1),
(9038, 6662, 13, 'Confidence Level', 4, 'good', 13, '2021-10-25 01:34:51', 1),
(9039, 6650, 18, 'Appearance', 4, 'Good', 18, '2021-10-26 12:47:46', 1),
(9040, 6650, 18, 'Attitude', 4, 'Strong', 18, '2021-10-26 12:47:46', 1),
(9041, 6650, 18, 'Communication (English)', 2, 'Avg', 18, '2021-10-26 12:47:46', 1),
(9042, 6650, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-10-26 12:47:46', 1),
(9043, 6650, 18, 'Convincing Skills', 4, 'Good', 18, '2021-10-26 12:47:46', 1),
(9044, 6650, 18, 'Confidence Level', 4, 'Good', 18, '2021-10-26 12:47:46', 1),
(9045, 6650, 18, 'Existing Experience Analyze', 5, 'Good', 18, '2021-10-26 12:47:46', 1),
(9046, 6650, 18, 'Importance Of Job', 4, 'Needed', 18, '2021-10-26 12:47:46', 1),
(9047, 6650, 18, 'Observation Skills', 4, 'Good', 18, '2021-10-26 12:47:46', 1),
(9048, 6650, 18, 'patience', 3, 'Avg', 18, '2021-10-26 12:47:46', 1),
(9049, 6650, 18, 'Pressure Handling', 3, 'Yes', 18, '2021-10-26 12:47:46', 1),
(9050, 6650, 18, 'Practical Challenges Outcome', 3, 'Good', 18, '2021-10-26 12:47:46', 1),
(9051, 6650, 18, 'Sustainability', 3, 'Looks OK', 18, '2021-10-26 12:47:46', 1),
(9052, 6650, 18, 'Sales Experience', 3, 'No calling experinece ', 18, '2021-10-26 12:47:46', 1),
(9053, 6742, 13, 'Communication (Tamil)', 2, 'low', 13, '2021-11-10 11:17:38', 1),
(9054, 6742, 13, 'Confidence Level', 3, 'low', 13, '2021-11-10 11:17:38', 1),
(9055, 6793, 40, 'Appearance', 5, 'Good', 40, '2021-11-19 03:33:14', 1),
(9056, 6793, 40, 'Attitude', 2, 'Unprofessional', 40, '2021-11-19 03:33:14', 1),
(9057, 6793, 40, 'Communication (English)', 1, 'Poor', 40, '2021-11-19 03:33:14', 1),
(9058, 6793, 40, 'Communication (Tamil)', 1, 'Poor in local language', 40, '2021-11-19 03:33:14', 1),
(9059, 6793, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-11-19 03:33:14', 1),
(9060, 6793, 40, 'Confidence Level', 1, 'Zero', 40, '2021-11-19 03:33:14', 1),
(9061, 6793, 40, 'Importance Of Job', 1, 'Will not sustain', 40, '2021-11-19 03:33:14', 1),
(9062, 6793, 40, 'Observation Skills', 1, 'Very Poor', 40, '2021-11-19 03:33:14', 1),
(9063, 6793, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-11-19 03:33:14', 1),
(9064, 6793, 40, 'patience', 3, 'Neutral', 40, '2021-11-19 03:33:14', 1),
(9065, 6793, 40, 'Sustainability', 1, 'Zero', 40, '2021-11-19 03:33:14', 1),
(9066, 6793, 40, 'Sales Experience', 1, 'Unapt', 40, '2021-11-19 03:33:14', 1),
(9067, 6793, 40, 'Existing Experience Analyze', 1, 'Irrelevant', 40, '2021-11-19 03:33:14', 1),
(9068, 6793, 40, 'Practical Challenges Outcome', 1, 'Zero', 40, '2021-11-19 03:33:14', 1),
(9069, 6793, 40, 'Willing To Work On Holidays', 1, 'No', 40, '2021-11-19 03:33:14', 1),
(9070, 6687, 51, 'Appearance', 4, 'good', 51, '2021-11-19 06:26:22', 1),
(9071, 6687, 51, 'Attitude', 4, 'good', 51, '2021-11-19 06:26:22', 1),
(9072, 6687, 51, 'Communication (English)', 3, 'ok ', 51, '2021-11-19 06:26:22', 1),
(9073, 6687, 51, 'Communication (Tamil)', 3, 'good', 51, '2021-11-19 06:26:22', 1),
(9074, 6687, 51, 'Convincing Skills', 2, 'convincing skills is not thr', 51, '2021-11-19 06:26:22', 1),
(9075, 6687, 51, 'Confidence Level', 3, 'lower confidence level', 51, '2021-11-19 06:26:22', 1),
(9076, 6687, 51, 'Existing Experience Analyze', 2, 'not speking clear about exisiting experience', 51, '2021-11-19 06:26:22', 1),
(9077, 6687, 51, 'Importance Of Job', 2, 'feel like not having int in insurance feild', 51, '2021-11-19 06:26:22', 1),
(9078, 6687, 51, 'Observation Skills', 2, 'normal ', 51, '2021-11-19 06:26:22', 1),
(9079, 6687, 51, 'patience', 4, 'good', 51, '2021-11-19 06:26:22', 1),
(9080, 6687, 51, 'Pressure Handling', 2, 'cant handle pressure', 51, '2021-11-19 06:26:22', 1),
(9081, 6687, 51, 'Practical Challenges Outcome', 3, 'normal', 51, '2021-11-19 06:26:22', 1),
(9082, 6687, 51, 'Sustainability', 1, 'because he as many agents in his own family', 51, '2021-11-19 06:26:22', 1),
(9083, 6687, 51, 'Sales Experience', 2, 'nil', 51, '2021-11-19 06:26:22', 1),
(9084, 6687, 51, 'Willing To Work On Holidays', 2, 'nirmal', 51, '2021-11-19 06:26:22', 1),
(9085, 6714, 51, 'Appearance', 3, 'good', 51, '2021-11-19 06:30:31', 1),
(9086, 6714, 51, 'Attitude', 3, 'good', 51, '2021-11-19 06:30:31', 1),
(9087, 6714, 51, 'Communication (English)', 3, 'normal', 51, '2021-11-19 06:30:31', 1),
(9088, 6714, 51, 'Communication (Tamil)', 4, 'good', 51, '2021-11-19 06:30:31', 1),
(9089, 6714, 51, 'Convincing Skills', 3, 'normal', 51, '2021-11-19 06:30:31', 1),
(9090, 6714, 51, 'Confidence Level', 3, 'nil', 51, '2021-11-19 06:30:31', 1),
(9091, 6714, 51, 'Importance Of Job', 3, 'nil', 51, '2021-11-19 06:30:31', 1),
(9092, 6714, 51, 'Observation Skills', 3, 'normal', 51, '2021-11-19 06:30:31', 1),
(9093, 6714, 51, 'Pressure Handling', 3, 'normal', 51, '2021-11-19 06:30:31', 1),
(9094, 6714, 51, 'patience', 4, 'good', 51, '2021-11-19 06:30:31', 1),
(9095, 6714, 51, 'Sustainability', 2, 'doubt ', 51, '2021-11-19 06:30:31', 1),
(9096, 6714, 51, 'Sales Experience', 2, 'nil in insurance', 51, '2021-11-19 06:30:31', 1),
(9097, 6714, 51, 'Existing Experience Analyze', 3, 'ok', 51, '2021-11-19 06:30:31', 1),
(9098, 6714, 51, 'Practical Challenges Outcome', 3, 'normal', 51, '2021-11-19 06:30:31', 1),
(9099, 6714, 51, 'Willing To Work On Holidays', 3, 'accepted to do', 51, '2021-11-19 06:30:31', 1),
(9100, 6729, 51, 'Appearance', 3, 'normal', 51, '2021-11-19 06:33:47', 1),
(9101, 6729, 51, 'Attitude', 3, 'Good', 51, '2021-11-19 06:33:47', 1),
(9102, 6729, 51, 'Communication (English)', 3, 'normal', 51, '2021-11-19 06:33:47', 1),
(9103, 6729, 51, 'Communication (Tamil)', 4, 'good', 51, '2021-11-19 06:33:47', 1),
(9104, 6729, 51, 'Convincing Skills', 3, 'normal', 51, '2021-11-19 06:33:47', 1),
(9105, 6729, 51, 'Confidence Level', 3, 'normal', 51, '2021-11-19 06:33:47', 1),
(9106, 6729, 51, 'Importance Of Job', 2, 'poor', 51, '2021-11-19 06:33:47', 1),
(9107, 6729, 51, 'Observation Skills', 1, 'normal', 51, '2021-11-19 06:33:47', 1),
(9108, 6729, 51, 'Pressure Handling', 2, 'normal', 51, '2021-11-19 06:33:47', 1),
(9109, 6729, 51, 'patience', 3, 'good', 51, '2021-11-19 06:33:47', 1),
(9110, 6729, 51, 'Sustainability', 1, 'nil', 51, '2021-11-19 06:33:47', 1),
(9111, 6729, 51, 'Sales Experience', 1, 'nil in sales', 51, '2021-11-19 06:33:47', 1),
(9112, 6729, 51, 'Existing Experience Analyze', 2, 'nil', 51, '2021-11-19 06:33:47', 1),
(9113, 6729, 51, 'Practical Challenges Outcome', 2, 'nil', 51, '2021-11-19 06:33:47', 1),
(9114, 6729, 51, 'Willing To Work On Holidays', 3, 'ok', 51, '2021-11-19 06:33:47', 1),
(9115, 6720, 29, 'Convincing Skills', 2, 'good', 29, '2021-11-20 06:39:19', 1),
(9116, 6720, 29, 'Pressure Handling', 2, 'can handle', 29, '2021-11-20 06:39:19', 1),
(9117, 6720, 29, 'Sales Experience', 2, 'different sector exp,, can train and improve', 29, '2021-11-20 06:39:19', 1),
(9118, 6824, 40, 'Appearance', 5, 'Good', 40, '2021-11-22 06:27:11', 1),
(9119, 6824, 40, 'Attitude', 3, 'Ok', 40, '2021-11-22 06:27:11', 1),
(9120, 6824, 40, 'Communication (English)', 5, 'Good in communication', 40, '2021-11-22 06:27:11', 1),
(9121, 6824, 40, 'Communication (Tamil)', 2, 'Not good in local language', 40, '2021-11-22 06:27:11', 1),
(9122, 6824, 40, 'Convincing Skills', 1, 'Not having exp in sales', 40, '2021-11-22 06:27:11', 1),
(9123, 6824, 40, 'Confidence Level', 5, 'Good', 40, '2021-11-22 06:27:11', 1),
(9124, 6824, 40, 'Importance Of Job', 5, 'Yes but not in sales', 40, '2021-11-22 06:27:11', 1),
(9125, 6824, 40, 'Observation Skills', 1, 'Poor', 40, '2021-11-22 06:27:11', 1),
(9126, 6824, 40, 'Pressure Handling', 1, 'Would not', 40, '2021-11-22 06:27:11', 1),
(9127, 6824, 40, 'patience', 4, 'Good', 40, '2021-11-22 06:27:11', 1),
(9128, 6824, 40, 'Sustainability', 1, 'Will not sustain for long', 40, '2021-11-22 06:27:11', 1),
(9129, 6824, 40, 'Sales Experience', 1, 'Zero experience', 40, '2021-11-22 06:27:11', 1),
(9130, 6824, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-11-22 06:27:11', 1),
(9131, 6824, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-11-22 06:27:11', 1),
(9132, 6824, 40, 'Willing To Work On Holidays', 1, 'No', 40, '2021-11-22 06:27:11', 1),
(9133, 6837, 40, 'Appearance', 5, 'Good', 40, '2021-11-24 11:14:30', 1),
(9134, 6837, 40, 'Attitude', 5, 'Good', 40, '2021-11-24 11:14:30', 1),
(9135, 6837, 40, 'Communication (English)', 5, 'Good', 40, '2021-11-24 11:14:30', 1),
(9136, 6837, 40, 'Communication (Tamil)', 4, 'Good', 40, '2021-11-24 11:14:30', 1),
(9137, 6837, 40, 'Convincing Skills', 3, 'Average', 40, '2021-11-24 11:14:30', 1),
(9138, 6837, 40, 'Confidence Level', 5, 'Good', 40, '2021-11-24 11:14:30', 1),
(9139, 6837, 40, 'Importance Of Job', 5, 'Yes', 40, '2021-11-24 11:14:30', 1),
(9140, 6837, 40, 'Observation Skills', 4, 'Good', 40, '2021-11-24 11:14:30', 1),
(9141, 6837, 40, 'Pressure Handling', 3, 'Average', 40, '2021-11-24 11:14:30', 1),
(9142, 6837, 40, 'patience', 4, 'Yes', 40, '2021-11-24 11:14:30', 1),
(9143, 6837, 40, 'Sustainability', 2, 'Doubtful', 40, '2021-11-24 11:14:30', 1),
(9144, 6837, 40, 'Sales Experience', 3, 'Neutral', 40, '2021-11-24 11:14:30', 1),
(9145, 6837, 40, 'Existing Experience Analyze', 2, 'Poor', 40, '2021-11-24 11:14:30', 1),
(9146, 6837, 40, 'Practical Challenges Outcome', 2, 'Poor', 40, '2021-11-24 11:14:30', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(9147, 6837, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-11-24 11:14:30', 1),
(9148, 6845, 40, 'Appearance', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9149, 6845, 40, 'Attitude', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9150, 6845, 40, 'Communication (English)', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9151, 6845, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-11-24 01:23:30', 1),
(9152, 6845, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9153, 6845, 40, 'Confidence Level', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9154, 6845, 40, 'Importance Of Job', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9155, 6845, 40, 'Observation Skills', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9156, 6845, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9157, 6845, 40, 'patience', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9158, 6845, 40, 'Sustainability', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9159, 6845, 40, 'Sales Experience', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9160, 6845, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9161, 6845, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9162, 6845, 40, 'Willing To Work On Holidays', 1, 'Poor', 40, '2021-11-24 01:23:30', 1),
(9163, 6853, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-11-24 01:28:51', 1),
(9164, 6853, 13, 'Confidence Level', 4, 'good', 13, '2021-11-24 01:28:51', 1),
(9165, 6853, 13, 'Pressure Handling', 4, 'okay', 13, '2021-11-24 01:28:51', 1),
(9166, 6849, 40, 'Appearance', 1, 'Poor', 40, '2021-11-24 06:23:39', 1),
(9167, 6849, 40, 'Attitude', 5, 'Good', 40, '2021-11-24 06:23:39', 1),
(9168, 6849, 40, 'Communication (English)', 4, 'Good', 40, '2021-11-24 06:23:39', 1),
(9169, 6849, 40, 'Communication (Tamil)', 3, 'Average', 40, '2021-11-24 06:23:39', 1),
(9170, 6849, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-11-24 06:23:39', 1),
(9171, 6849, 40, 'Confidence Level', 4, 'Good', 40, '2021-11-24 06:23:39', 1),
(9172, 6849, 40, 'Importance Of Job', 5, 'Yes', 40, '2021-11-24 06:23:39', 1),
(9173, 6849, 40, 'Observation Skills', 4, 'Good', 40, '2021-11-24 06:23:39', 1),
(9174, 6849, 40, 'Pressure Handling', 3, 'Doubtful', 40, '2021-11-24 06:23:39', 1),
(9175, 6849, 40, 'patience', 5, 'Good', 40, '2021-11-24 06:23:39', 1),
(9176, 6849, 40, 'Sustainability', 4, 'Good', 40, '2021-11-24 06:23:39', 1),
(9177, 6849, 40, 'Sales Experience', 1, 'Poor', 40, '2021-11-24 06:23:39', 1),
(9178, 6849, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-11-24 06:23:39', 1),
(9179, 6849, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-11-24 06:23:39', 1),
(9180, 6849, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-11-24 06:23:39', 1),
(9181, 6837, 18, 'Appearance', 4, 'Good', 18, '2021-11-25 12:45:42', 1),
(9182, 6837, 18, 'Attitude', 4, 'Good', 18, '2021-11-25 12:45:42', 1),
(9183, 6837, 18, 'Communication (English)', 4, 'Good', 18, '2021-11-25 12:45:42', 1),
(9184, 6837, 18, 'Convincing Skills', 4, 'Good', 18, '2021-11-25 12:45:42', 1),
(9185, 6837, 18, 'Confidence Level', 4, 'Good', 18, '2021-11-25 12:45:42', 1),
(9186, 6837, 18, 'Importance Of Job', 5, 'Required', 18, '2021-11-25 12:45:42', 1),
(9187, 6837, 18, 'Pressure Handling', 4, 'Good', 18, '2021-11-25 12:45:42', 1),
(9188, 6837, 18, 'Sustainability', 3, 'Need to double check', 18, '2021-11-25 12:45:42', 1),
(9189, 6837, 18, 'Sales Experience', 4, 'Good', 18, '2021-11-25 12:45:42', 1),
(9190, 6843, 40, 'Appearance', 3, 'Average', 40, '2021-11-25 02:38:21', 1),
(9191, 6843, 40, 'Attitude', 5, 'Good', 40, '2021-11-25 02:38:21', 1),
(9192, 6843, 40, 'Communication (English)', 4, 'Good', 40, '2021-11-25 02:38:21', 1),
(9193, 6843, 40, 'Communication (Tamil)', 5, 'Good in local language', 40, '2021-11-25 02:38:21', 1),
(9194, 6843, 40, 'Convincing Skills', 2, 'Not upto the mark', 40, '2021-11-25 02:38:21', 1),
(9195, 6843, 40, 'Confidence Level', 3, 'Average', 40, '2021-11-25 02:38:21', 1),
(9196, 6843, 40, 'Importance Of Job', 3, 'Not really', 40, '2021-11-25 02:38:21', 1),
(9197, 6843, 40, 'Observation Skills', 1, 'Poor', 40, '2021-11-25 02:38:21', 1),
(9198, 6843, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-11-25 02:38:21', 1),
(9199, 6843, 40, 'patience', 1, 'Poor', 40, '2021-11-25 02:38:21', 1),
(9200, 6843, 40, 'Sustainability', 1, 'Poor', 40, '2021-11-25 02:38:21', 1),
(9201, 6843, 40, 'Sales Experience', 1, 'Poor', 40, '2021-11-25 02:38:21', 1),
(9202, 6843, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-11-25 02:38:21', 1),
(9203, 6843, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-11-25 02:38:21', 1),
(9204, 6843, 40, 'Willing To Work On Holidays', 1, 'Poor', 40, '2021-11-25 02:38:21', 1),
(9205, 6869, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-11-25 04:34:00', 1),
(9206, 6869, 13, 'convincing Skills', 4, 'good', 13, '2021-11-25 04:34:00', 1),
(9207, 6870, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-11-25 04:35:45', 1),
(9208, 6870, 13, 'convincing Skills', 4, 'good', 13, '2021-11-25 04:35:45', 1),
(9209, 6870, 13, 'Observation skills', 4, 'good', 13, '2021-11-25 04:35:45', 1),
(9210, 6857, 40, 'Appearance', 3, 'Average', 40, '2021-11-25 04:37:13', 1),
(9211, 6857, 40, 'Attitude', 3, 'Average', 40, '2021-11-25 04:37:13', 1),
(9212, 6857, 40, 'Communication (English)', 2, 'Average', 40, '2021-11-25 04:37:13', 1),
(9213, 6857, 40, 'Communication (Tamil)', 4, 'Ok', 40, '2021-11-25 04:37:13', 1),
(9214, 6857, 40, 'Convincing Skills', 3, 'Average', 40, '2021-11-25 04:37:13', 1),
(9215, 6857, 40, 'Confidence Level', 3, 'Average', 40, '2021-11-25 04:37:13', 1),
(9216, 6857, 40, 'Importance Of Job', 3, 'Average', 40, '2021-11-25 04:37:13', 1),
(9217, 6857, 40, 'Observation Skills', 3, 'Average', 40, '2021-11-25 04:37:13', 1),
(9218, 6857, 40, 'Pressure Handling', 3, 'Average', 40, '2021-11-25 04:37:13', 1),
(9219, 6857, 40, 'patience', 3, 'Average', 40, '2021-11-25 04:37:13', 1),
(9220, 6857, 40, 'Sustainability', 3, 'Average', 40, '2021-11-25 04:37:13', 1),
(9221, 6857, 40, 'Sales Experience', 3, 'Average', 40, '2021-11-25 04:37:13', 1),
(9222, 6857, 40, 'Existing Experience Analyze', 3, 'Average', 40, '2021-11-25 04:37:13', 1),
(9223, 6857, 40, 'Practical Challenges Outcome', 3, 'Average', 40, '2021-11-25 04:37:13', 1),
(9224, 6857, 40, 'Willing To Work On Holidays', 5, 'He would', 40, '2021-11-25 04:37:13', 1),
(9225, 6882, 40, 'Appearance', 2, 'Below Average', 40, '2021-11-27 05:58:20', 1),
(9226, 6882, 40, 'Attitude', 3, 'Average', 40, '2021-11-27 05:58:20', 1),
(9227, 6882, 40, 'Communication (English)', 1, 'Poor', 40, '2021-11-27 05:58:20', 1),
(9228, 6882, 40, 'Communication (Tamil)', 5, 'good in local language', 40, '2021-11-27 05:58:20', 1),
(9229, 6882, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-11-27 05:58:20', 1),
(9230, 6882, 40, 'Confidence Level', 1, 'Poor', 40, '2021-11-27 05:58:20', 1),
(9231, 6882, 40, 'Importance Of Job', 1, 'Poor', 40, '2021-11-27 05:58:20', 1),
(9232, 6882, 40, 'Observation Skills', 1, 'Poor', 40, '2021-11-27 05:58:20', 1),
(9233, 6882, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-11-27 05:58:20', 1),
(9234, 6882, 40, 'patience', 1, 'Poor', 40, '2021-11-27 05:58:20', 1),
(9235, 6882, 40, 'Sustainability', 1, 'Poor', 40, '2021-11-27 05:58:20', 1),
(9236, 6882, 40, 'Sales Experience', 1, 'Poor', 40, '2021-11-27 05:58:20', 1),
(9237, 6882, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-11-27 05:58:20', 1),
(9238, 6882, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-11-27 05:58:20', 1),
(9239, 6882, 40, 'Willing To Work On Holidays', 1, 'Poor', 40, '2021-11-27 05:58:20', 1),
(9240, 1682, 44, 'Communication (Tamil)', 4, 'good ', 44, '2021-11-29 10:55:53', 1),
(9241, 1682, 44, 'Sales Experience', 4, 'having experience in blue chip', 44, '2021-11-29 10:55:53', 1),
(9242, 6856, 74, 'Appearance', 3, 'good in appearance', 74, '2021-11-29 03:51:00', 1),
(9243, 6856, 74, 'Importance (Job)', 3, 'highly job need', 74, '2021-11-29 03:51:00', 1),
(9244, 6856, 74, 'Sustainability', 3, 'need to work for a long time', 74, '2021-11-29 03:51:00', 1),
(9245, 6913, 31, 'Appearance', 4, 'Neat\n', 31, '2021-11-29 03:53:42', 1),
(9246, 6913, 31, 'Communication (English)', 4, 'Good', 31, '2021-11-29 03:53:42', 1),
(9247, 6857, 18, 'Appearance', 3, 'OK', 18, '2021-11-29 05:11:53', 1),
(9248, 6857, 18, 'Attitude', 4, 'GOOD', 18, '2021-11-29 05:11:53', 1),
(9249, 6857, 18, 'Communication (English)', 4, 'GOOD', 18, '2021-11-29 05:11:53', 1),
(9250, 6857, 18, 'Convincing Skills', 3, 'DECENT', 18, '2021-11-29 05:11:53', 1),
(9251, 6857, 18, 'Confidence Level', 4, 'GOOD', 18, '2021-11-29 05:11:53', 1),
(9252, 6857, 18, 'Importance Of Job', 4, 'HIGH', 18, '2021-11-29 05:11:53', 1),
(9253, 6857, 18, 'Observation Skills', 4, 'GOOD', 18, '2021-11-29 05:11:53', 1),
(9254, 6857, 18, 'Sustainability', 4, 'GOOD', 18, '2021-11-29 05:11:53', 1),
(9255, 6857, 18, 'Sales Experience', 3, 'DECENT', 18, '2021-11-29 05:11:53', 1),
(9256, 6918, 44, 'Appearance', 4, 'neat', 44, '2021-11-29 06:06:03', 1),
(9257, 6918, 44, 'Communication (English)', 3, 'good', 44, '2021-11-29 06:06:03', 1),
(9258, 6888, 29, 'Convincing Skills', 2, 'Has sales exp, can do', 29, '2021-11-30 07:31:54', 1),
(9259, 6888, 29, 'Importance Of Job', 2, 'need of job and incentive', 29, '2021-11-30 07:31:54', 1),
(9260, 6918, 29, 'Communication (English)', 2, 'can speak, can improve', 29, '2021-11-30 07:34:25', 1),
(9261, 6918, 29, 'Convincing Skills', 4, 'has Convincing skill, with training can do well ', 29, '2021-11-30 07:34:25', 1),
(9262, 6918, 29, 'Observation Skills', 3, 'good', 29, '2021-11-30 07:34:25', 1),
(9263, 6913, 29, 'Attitude', 3, 'good', 29, '2021-12-01 05:44:33', 1),
(9264, 6913, 29, 'Convincing Skills', 3, 'GOOD', 29, '2021-12-01 05:44:33', 1),
(9265, 6913, 29, 'Observation Skills', 2, 'ok', 29, '2021-12-01 05:44:33', 1),
(9266, 6938, 18, 'Appearance', 3, 'Ok', 18, '2021-12-02 12:01:51', 1),
(9267, 6938, 18, 'Attitude', 3, 'Ok', 18, '2021-12-02 12:01:51', 1),
(9268, 6938, 18, 'Communication (English)', 4, 'Good', 18, '2021-12-02 12:01:51', 1),
(9269, 6938, 18, 'Convincing Skills', 4, 'Ok', 18, '2021-12-02 12:01:51', 1),
(9270, 6938, 18, 'Confidence Level', 4, 'Good', 18, '2021-12-02 12:01:51', 1),
(9271, 6938, 18, 'Importance Of Job', 5, 'High', 18, '2021-12-02 12:01:51', 1),
(9272, 6938, 18, 'Observation Skills', 4, 'Good', 18, '2021-12-02 12:01:51', 1),
(9273, 6938, 18, 'patience', 2, 'Low', 18, '2021-12-02 12:01:51', 1),
(9274, 6938, 18, 'Sustainability', 3, 'Average', 18, '2021-12-02 12:01:51', 1),
(9275, 6938, 18, 'Sales Experience', 3, 'Good', 18, '2021-12-02 12:01:51', 1),
(9276, 6961, 40, 'Appearance', 4, 'Good', 40, '2021-12-03 12:20:06', 1),
(9277, 6961, 40, 'Attitude', 4, 'Good', 40, '2021-12-03 12:20:06', 1),
(9278, 6961, 40, 'Communication (English)', 4, 'Good', 40, '2021-12-03 12:20:06', 1),
(9279, 6961, 40, 'Communication (Tamil)', 4, 'Good', 40, '2021-12-03 12:20:06', 1),
(9280, 6961, 40, 'Convincing Skills', 3, 'Average', 40, '2021-12-03 12:20:06', 1),
(9281, 6961, 40, 'Confidence Level', 4, 'Good', 40, '2021-12-03 12:20:06', 1),
(9282, 6961, 40, 'Importance Of Job', 4, 'Good', 40, '2021-12-03 12:20:06', 1),
(9283, 6961, 40, 'Observation Skills', 3, 'Average', 40, '2021-12-03 12:20:06', 1),
(9284, 6961, 40, 'Pressure Handling', 2, 'Below Average', 40, '2021-12-03 12:20:06', 1),
(9285, 6961, 40, 'patience', 4, 'Good', 40, '2021-12-03 12:20:06', 1),
(9286, 6961, 40, 'Sustainability', 3, 'Average', 40, '2021-12-03 12:20:06', 1),
(9287, 6961, 40, 'Sales Experience', 1, 'No existing exp', 40, '2021-12-03 12:20:06', 1),
(9288, 6961, 40, 'Existing Experience Analyze', 3, 'Average', 40, '2021-12-03 12:20:06', 1),
(9289, 6961, 40, 'Practical Challenges Outcome', 3, 'Average', 40, '2021-12-03 12:20:06', 1),
(9290, 6961, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-12-03 12:20:06', 1),
(9291, 6914, 18, 'Appearance', 5, 'Good', 18, '2021-12-03 01:10:42', 1),
(9292, 6914, 18, 'Attitude', 5, 'good', 18, '2021-12-03 01:10:42', 1),
(9293, 6914, 18, 'Communication (English)', 5, 'good', 18, '2021-12-03 01:10:42', 1),
(9294, 6914, 18, 'Communication (Tamil)', 3, 'average', 18, '2021-12-03 01:10:42', 1),
(9295, 6914, 18, 'Convincing Skills', 4, 'Good', 18, '2021-12-03 01:10:42', 1),
(9296, 6914, 18, 'Confidence Level', 4, 'High', 18, '2021-12-03 01:10:42', 1),
(9297, 6914, 18, 'Importance Of Job', 3, 'Fresher', 18, '2021-12-03 01:10:42', 1),
(9298, 6914, 18, 'Observation Skills', 4, 'Good', 18, '2021-12-03 01:10:42', 1),
(9299, 6914, 18, 'Pressure Handling', 4, 'Decent', 18, '2021-12-03 01:10:42', 1),
(9300, 6914, 18, 'patience', 4, 'Good', 18, '2021-12-03 01:10:42', 1),
(9301, 6914, 18, 'Sustainability', 2, 'Doubtful', 18, '2021-12-03 01:10:42', 1),
(9302, 6914, 18, 'Sales Experience', 1, 'no', 18, '2021-12-03 01:10:42', 1),
(9303, 6777, 15, 'Attitude', 3, 'normal', 15, '2021-12-06 10:55:53', 1),
(9304, 6777, 15, 'Communication (Tamil)', 4, 'ok', 15, '2021-12-06 10:55:53', 1),
(9305, 6777, 15, 'Existing Experience Analyze', 1, 'no', 15, '2021-12-06 10:55:53', 1),
(9306, 6777, 15, 'Importance Of Job', 5, 'needed person financial problems', 15, '2021-12-06 10:55:53', 1),
(9307, 6777, 15, 'Sustainability', 4, 'long time i thiking', 15, '2021-12-06 10:55:53', 1),
(9308, 6969, 40, 'Appearance', 5, 'Good', 40, '2021-12-06 01:35:40', 1),
(9309, 6969, 40, 'Attitude', 4, 'Good', 40, '2021-12-06 01:35:40', 1),
(9310, 6969, 40, 'Communication (English)', 5, 'Excellent', 40, '2021-12-06 01:35:40', 1),
(9311, 6969, 40, 'Communication (Tamil)', 4, 'Good', 40, '2021-12-06 01:35:40', 1),
(9312, 6969, 40, 'Convincing Skills', 4, 'Good', 40, '2021-12-06 01:35:40', 1),
(9313, 6969, 40, 'Confidence Level', 5, 'Good', 40, '2021-12-06 01:35:40', 1),
(9314, 6969, 40, 'Importance Of Job', 5, 'Yes it it', 40, '2021-12-06 01:35:40', 1),
(9315, 6969, 40, 'Observation Skills', 5, 'Good', 40, '2021-12-06 01:35:40', 1),
(9316, 6969, 40, 'Pressure Handling', 5, 'Good', 40, '2021-12-06 01:35:40', 1),
(9317, 6969, 40, 'patience', 5, 'Good', 40, '2021-12-06 01:35:40', 1),
(9318, 6969, 40, 'Sustainability', 2, 'Doubtful', 40, '2021-12-06 01:35:40', 1),
(9319, 6969, 40, 'Sales Experience', 2, 'Tele sales', 40, '2021-12-06 01:35:40', 1),
(9320, 6969, 40, 'Existing Experience Analyze', 3, 'Average', 40, '2021-12-06 01:35:40', 1),
(9321, 6969, 40, 'Practical Challenges Outcome', 2, 'Below average', 40, '2021-12-06 01:35:40', 1),
(9322, 6969, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-12-06 01:35:40', 1),
(9323, 6969, 18, 'Appearance', 4, 'Good', 18, '2021-12-06 05:50:08', 1),
(9324, 6969, 18, 'Attitude', 4, 'Good', 18, '2021-12-06 05:50:08', 1),
(9325, 6969, 18, 'Communication (English)', 4, 'Good', 18, '2021-12-06 05:50:08', 1),
(9326, 6969, 18, 'Convincing Skills', 4, 'Good', 18, '2021-12-06 05:50:08', 1),
(9327, 6969, 18, 'Confidence Level', 4, 'Good', 18, '2021-12-06 05:50:08', 1),
(9328, 6969, 18, 'Importance Of Job', 4, 'Need', 18, '2021-12-06 05:50:08', 1),
(9329, 6969, 18, 'Observation Skills', 4, 'Good', 18, '2021-12-06 05:50:08', 1),
(9330, 6969, 18, 'patience', 4, 'Good', 18, '2021-12-06 05:50:08', 1),
(9331, 6969, 18, 'Sales Experience', 2, 'Average', 18, '2021-12-06 05:50:08', 1),
(9332, 6969, 18, 'Willing To Work On Holidays', 3, 'Yes', 18, '2021-12-06 05:50:08', 1),
(9333, 7011, 80, 'Appearance', 5, 'Good', 80, '2021-12-07 01:37:22', 1),
(9334, 7011, 80, 'Attitude', 3, 'Affordable', 80, '2021-12-07 01:37:22', 1),
(9335, 7011, 80, 'Communication (English)', 1, 'Week', 80, '2021-12-07 01:37:22', 1),
(9336, 7011, 80, 'Communication (Tamil)', 5, 'Good', 80, '2021-12-07 01:37:22', 1),
(9337, 7011, 80, 'Convincing Skills', 3, 'Ok', 80, '2021-12-07 01:37:22', 1),
(9338, 7011, 80, 'Confidence Level', 4, 'Good', 80, '2021-12-07 01:37:22', 1),
(9339, 7011, 80, 'Importance Of Job', 5, 'Needed', 80, '2021-12-07 01:37:22', 1),
(9340, 7011, 80, 'Observation Skills', 4, 'Ok', 80, '2021-12-07 01:37:22', 1),
(9341, 7011, 80, 'Pressure Handling', 5, 'Ok', 80, '2021-12-07 01:37:22', 1),
(9342, 7011, 80, 'patience', 4, 'Ok', 80, '2021-12-07 01:37:22', 1),
(9343, 7011, 80, 'Sustainability', 5, 'Ok', 80, '2021-12-07 01:37:22', 1),
(9344, 7011, 80, 'Sales Experience', 4, 'Good', 80, '2021-12-07 01:37:22', 1),
(9345, 7011, 80, 'Existing Experience Analyze', 4, 'Ok', 80, '2021-12-07 01:37:22', 1),
(9346, 7011, 80, 'Practical Challenges Outcome', 4, 'Good', 80, '2021-12-07 01:37:22', 1),
(9347, 7011, 80, 'Willing To Work On Holidays', 1, 'Pressure level', 80, '2021-12-07 01:37:22', 1),
(9348, 7011, 18, 'Appearance', 3, 'Decent', 18, '2021-12-07 07:35:37', 1),
(9349, 7011, 18, 'Attitude', 3, 'Decent', 18, '2021-12-07 07:35:37', 1),
(9350, 7011, 18, 'Communication (English)', 1, 'Nil', 18, '2021-12-07 07:35:37', 1),
(9351, 7011, 18, 'Communication (Tamil)', 4, 'Ok', 18, '2021-12-07 07:35:37', 1),
(9352, 7011, 18, 'Sales Experience', 3, 'Average', 18, '2021-12-07 07:35:37', 1),
(9353, 7026, 40, 'Appearance', 4, 'Good', 40, '2021-12-08 12:58:48', 1),
(9354, 7026, 40, 'Attitude', 4, 'Good', 40, '2021-12-08 12:58:48', 1),
(9355, 7026, 40, 'Communication (English)', 4, 'Good', 40, '2021-12-08 12:58:48', 1),
(9356, 7026, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-12-08 12:58:48', 1),
(9357, 7026, 40, 'Convincing Skills', 1, 'Fresher', 40, '2021-12-08 12:58:48', 1),
(9358, 7026, 40, 'Confidence Level', 4, 'Good', 40, '2021-12-08 12:58:48', 1),
(9359, 7026, 40, 'Importance Of Job', 5, 'Yes it is', 40, '2021-12-08 12:58:48', 1),
(9360, 7026, 40, 'Observation Skills', 4, 'Good', 40, '2021-12-08 12:58:48', 1),
(9361, 7026, 40, 'Pressure Handling', 3, 'Average', 40, '2021-12-08 12:58:48', 1),
(9362, 7026, 40, 'patience', 4, 'Good', 40, '2021-12-08 12:58:48', 1),
(9363, 7026, 40, 'Sustainability', 3, 'Doubtful', 40, '2021-12-08 12:58:48', 1),
(9364, 7026, 40, 'Sales Experience', 1, 'Poor', 40, '2021-12-08 12:58:48', 1),
(9365, 7026, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-12-08 12:58:48', 1),
(9366, 7026, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-12-08 12:58:48', 1),
(9367, 7026, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-12-08 12:58:48', 1),
(9368, 7039, 40, 'Appearance', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9369, 7039, 40, 'Attitude', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9370, 7039, 40, 'Communication (English)', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9371, 7039, 40, 'Communication (Tamil)', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9372, 7039, 40, 'Convincing Skills', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9373, 7039, 40, 'Confidence Level', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9374, 7039, 40, 'Importance Of Job', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9375, 7039, 40, 'Observation Skills', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9376, 7039, 40, 'Pressure Handling', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9377, 7039, 40, 'patience', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9378, 7039, 40, 'Sustainability', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9379, 7039, 40, 'Sales Experience', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9380, 7039, 40, 'Existing Experience Analyze', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9381, 7039, 40, 'Practical Challenges Outcome', 4, 'Good', 40, '2021-12-08 03:55:56', 1),
(9382, 7039, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-12-08 03:55:56', 1),
(9383, 7029, 40, 'Appearance', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9384, 7029, 40, 'Attitude', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9385, 7029, 40, 'Communication (English)', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9386, 7029, 40, 'Communication (Tamil)', 3, 'Ok', 40, '2021-12-09 12:42:33', 1),
(9387, 7029, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9388, 7029, 40, 'Confidence Level', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9389, 7029, 40, 'Importance Of Job', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9390, 7029, 40, 'Observation Skills', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9391, 7029, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9392, 7029, 40, 'patience', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9393, 7029, 40, 'Sustainability', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9394, 7029, 40, 'Sales Experience', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9395, 7029, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9396, 7029, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-12-09 12:42:33', 1),
(9397, 7029, 40, 'Willing To Work On Holidays', 1, 'No', 40, '2021-12-09 12:42:33', 1),
(9398, 7039, 18, 'Appearance', 4, 'Good', 18, '2021-12-09 01:58:56', 1),
(9399, 7039, 18, 'Attitude', 4, 'Good', 18, '2021-12-09 01:58:56', 1),
(9400, 7039, 18, 'Communication (English)', 4, 'GOod', 18, '2021-12-09 01:58:56', 1),
(9401, 7039, 18, 'Convincing Skills', 4, 'Good', 18, '2021-12-09 01:58:56', 1),
(9402, 7039, 18, 'Confidence Level', 4, 'Good', 18, '2021-12-09 01:58:56', 1),
(9403, 7039, 18, 'Importance Of Job', 5, 'High', 18, '2021-12-09 01:58:56', 1),
(9404, 7039, 18, 'Observation Skills', 4, 'Good', 18, '2021-12-09 01:58:56', 1),
(9405, 7039, 18, 'Pressure Handling', 3, 'Decent', 18, '2021-12-09 01:58:56', 1),
(9406, 7039, 18, 'patience', 4, 'Good', 18, '2021-12-09 01:58:56', 1),
(9407, 7039, 18, 'Sustainability', 3, 'Need good handholding', 18, '2021-12-09 01:58:56', 1),
(9408, 7006, 40, 'Appearance', 1, 'Poor', 40, '2021-12-10 01:09:16', 1),
(9409, 7006, 40, 'Attitude', 2, 'Poor', 40, '2021-12-10 01:09:16', 1),
(9410, 7006, 40, 'Communication (English)', 5, 'Good', 40, '2021-12-10 01:09:16', 1),
(9411, 7006, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-12-10 01:09:16', 1),
(9412, 7006, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-12-10 01:09:16', 1),
(9413, 7006, 40, 'Confidence Level', 1, 'Poor', 40, '2021-12-10 01:09:16', 1),
(9414, 7006, 40, 'Importance Of Job', 1, 'Poor', 40, '2021-12-10 01:09:16', 1),
(9415, 7006, 40, 'Observation Skills', 1, 'Poor', 40, '2021-12-10 01:09:16', 1),
(9416, 7006, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-12-10 01:09:16', 1),
(9417, 7006, 40, 'patience', 1, 'Poor', 40, '2021-12-10 01:09:16', 1),
(9418, 7006, 40, 'Sustainability', 1, 'Very Poor', 40, '2021-12-10 01:09:16', 1),
(9419, 7006, 40, 'Sales Experience', 1, 'Zero', 40, '2021-12-10 01:09:16', 1),
(9420, 7006, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-12-10 01:09:16', 1),
(9421, 7006, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-12-10 01:09:16', 1),
(9422, 7006, 40, 'Willing To Work On Holidays', 1, 'Not at all', 40, '2021-12-10 01:09:16', 1),
(9423, 7057, 40, 'Appearance', 3, 'Average', 40, '2021-12-10 03:13:55', 1),
(9424, 7057, 40, 'Attitude', 4, 'Good', 40, '2021-12-10 03:13:55', 1),
(9425, 7057, 40, 'Communication (English)', 4, 'Good', 40, '2021-12-10 03:13:55', 1),
(9426, 7057, 40, 'Communication (Tamil)', 5, 'Good', 40, '2021-12-10 03:13:55', 1),
(9427, 7057, 40, 'Convincing Skills', 3, 'Average', 40, '2021-12-10 03:13:55', 1),
(9428, 7057, 40, 'Confidence Level', 4, 'Good', 40, '2021-12-10 03:13:55', 1),
(9429, 7057, 40, 'Importance Of Job', 3, 'Average', 40, '2021-12-10 03:13:55', 1),
(9430, 7057, 40, 'Observation Skills', 4, 'Good', 40, '2021-12-10 03:13:55', 1),
(9431, 7057, 40, 'Pressure Handling', 4, 'Good', 40, '2021-12-10 03:13:55', 1),
(9432, 7057, 40, 'patience', 3, 'Good', 40, '2021-12-10 03:13:55', 1),
(9433, 7057, 40, 'Sustainability', 2, 'Doubtful', 40, '2021-12-10 03:13:55', 1),
(9434, 7057, 40, 'Sales Experience', 2, 'Average', 40, '2021-12-10 03:13:55', 1),
(9435, 7057, 40, 'Existing Experience Analyze', 3, 'Average', 40, '2021-12-10 03:13:55', 1),
(9436, 7057, 40, 'Practical Challenges Outcome', 2, 'Below Average', 40, '2021-12-10 03:13:55', 1),
(9437, 7057, 40, 'Willing To Work On Holidays', 5, 'Yes', 40, '2021-12-10 03:13:55', 1),
(9438, 7019, 40, 'Appearance', 4, 'Good', 40, '2021-12-13 01:17:37', 1),
(9439, 7019, 40, 'Attitude', 3, 'Average', 40, '2021-12-13 01:17:37', 1),
(9440, 7019, 40, 'Communication (English)', 2, 'Below Average', 40, '2021-12-13 01:17:37', 1),
(9441, 7019, 40, 'Communication (Tamil)', 4, 'Good', 40, '2021-12-13 01:17:37', 1),
(9442, 7019, 40, 'Convincing Skills', 1, 'Poor', 40, '2021-12-13 01:17:37', 1),
(9443, 7019, 40, 'Confidence Level', 1, 'Poor', 40, '2021-12-13 01:17:37', 1),
(9444, 7019, 40, 'Importance Of Job', 3, 'Average', 40, '2021-12-13 01:17:37', 1),
(9445, 7019, 40, 'Observation Skills', 3, 'Average', 40, '2021-12-13 01:17:37', 1),
(9446, 7019, 40, 'Pressure Handling', 1, 'Poor', 40, '2021-12-13 01:17:37', 1),
(9447, 7019, 40, 'patience', 4, 'Good', 40, '2021-12-13 01:17:37', 1),
(9448, 7019, 40, 'Sustainability', 1, 'Poor', 40, '2021-12-13 01:17:37', 1),
(9449, 7019, 40, 'Sales Experience', 2, 'Not in field Sales', 40, '2021-12-13 01:17:37', 1),
(9450, 7019, 40, 'Existing Experience Analyze', 1, 'Poor', 40, '2021-12-13 01:17:37', 1),
(9451, 7019, 40, 'Practical Challenges Outcome', 1, 'Poor', 40, '2021-12-13 01:17:37', 1),
(9452, 7019, 40, 'Willing To Work On Holidays', 1, 'No', 40, '2021-12-13 01:17:37', 1),
(9453, 7047, 13, 'Communication (Tamil)', 4, 'good', 13, '2021-12-14 12:59:10', 1),
(9454, 7047, 13, 'convincing Skills', 4, 'good', 13, '2021-12-14 12:59:10', 1),
(9455, 7057, 18, 'Appearance', 3, 'Decent', 18, '2021-12-17 12:08:22', 1),
(9456, 7057, 18, 'Attitude', 4, 'Good', 18, '2021-12-17 12:08:22', 1),
(9457, 7057, 18, 'Communication (English)', 4, 'Good', 18, '2021-12-17 12:08:22', 1),
(9458, 7057, 18, 'Observation Skills', 4, 'Good', 18, '2021-12-17 12:08:22', 1),
(9459, 7057, 18, 'patience', 4, 'Good', 18, '2021-12-17 12:08:22', 1),
(9460, 7057, 18, 'Sustainability', 3, 'Doubtful', 18, '2021-12-17 12:08:22', 1),
(9461, 7183, 31, 'Appearance', 4, 'Good', 31, '2021-12-20 03:47:54', 1),
(9462, 7183, 31, 'Convincing Skills', 4, 'can able to convince ', 31, '2021-12-20 03:47:54', 1),
(9463, 7183, 31, 'Pressure Handling', 4, 'worked in daily target based work', 31, '2021-12-20 03:47:54', 1),
(9464, 7183, 29, 'Attitude', 2, 'ok', 29, '2021-12-20 06:28:13', 1),
(9465, 7183, 29, 'Convincing Skills', 3, 'Good', 29, '2021-12-20 06:28:13', 1),
(9466, 7183, 29, 'Confidence Level', 2, 'Good', 29, '2021-12-20 06:28:13', 1),
(9467, 7150, 18, 'Appearance', 4, 'Good', 18, '2021-12-20 07:05:54', 1),
(9468, 7150, 18, 'Attitude', 4, 'Good', 18, '2021-12-20 07:05:54', 1),
(9469, 7150, 18, 'Communication (English)', 4, 'Good', 18, '2021-12-20 07:05:54', 1),
(9470, 7150, 18, 'Importance Of Job', 3, 'Needed', 18, '2021-12-20 07:05:54', 1),
(9471, 7150, 18, 'patience', 4, 'Good', 18, '2021-12-20 07:05:54', 1),
(9472, 7150, 18, 'Sustainability', 2, 'Need to check in trainning', 18, '2021-12-20 07:05:54', 1),
(9473, 7212, 80, 'Appearance', 5, 'Good', 80, '2021-12-22 03:45:44', 1),
(9474, 7212, 80, 'Attitude', 3, 'Ok', 80, '2021-12-22 03:45:44', 1),
(9475, 7212, 80, 'Communication (English)', 3, 'Ok', 80, '2021-12-22 03:45:44', 1),
(9476, 7212, 80, 'Communication (Tamil)', 5, 'Good', 80, '2021-12-22 03:45:44', 1),
(9477, 7212, 80, 'Convincing Skills', 5, 'Good', 80, '2021-12-22 03:45:44', 1),
(9478, 7212, 80, 'Confidence Level', 4, 'Ok', 80, '2021-12-22 03:45:44', 1),
(9479, 7212, 80, 'Importance Of Job', 3, 'Is there', 80, '2021-12-22 03:45:44', 1),
(9480, 7212, 80, 'Observation Skills', 4, 'Ok', 80, '2021-12-22 03:45:44', 1),
(9481, 7212, 80, 'Pressure Handling', 4, 'Ok', 80, '2021-12-22 03:45:44', 1),
(9482, 7212, 80, 'patience', 5, 'Good', 80, '2021-12-22 03:45:44', 1),
(9483, 7212, 80, 'Sustainability', 4, 'Ok', 80, '2021-12-22 03:45:44', 1),
(9484, 7212, 80, 'Sales Experience', 3, 'He have banking experience', 80, '2021-12-22 03:45:44', 1),
(9485, 7212, 80, 'Existing Experience Analyze', 4, 'Ok', 80, '2021-12-22 03:45:44', 1),
(9486, 7212, 80, 'Practical Challenges Outcome', 4, 'Ok', 80, '2021-12-22 03:45:44', 1),
(9487, 7212, 80, 'Willing To Work On Holidays', 2, 'No', 80, '2021-12-22 03:45:44', 1),
(9488, 7165, 80, 'Appearance', 3, 'Ok', 80, '2021-12-22 03:49:12', 1),
(9489, 7165, 80, 'Attitude', 4, 'Ok', 80, '2021-12-22 03:49:12', 1),
(9490, 7165, 80, 'Communication (English)', 2, 'Not Good', 80, '2021-12-22 03:49:12', 1),
(9491, 7165, 80, 'Communication (Tamil)', 5, 'Good', 80, '2021-12-22 03:49:12', 1),
(9492, 7165, 80, 'Convincing Skills', 3, 'Ok', 80, '2021-12-22 03:49:12', 1),
(9493, 7165, 80, 'Confidence Level', 2, 'Ok', 80, '2021-12-22 03:49:12', 1),
(9494, 7165, 80, 'Importance Of Job', 5, 'Very much important', 80, '2021-12-22 03:49:12', 1),
(9495, 7165, 80, 'Observation Skills', 3, 'Ok', 80, '2021-12-22 03:49:12', 1),
(9496, 7165, 80, 'Pressure Handling', 4, 'Ok', 80, '2021-12-22 03:49:12', 1),
(9497, 7165, 80, 'patience', 4, 'Ok', 80, '2021-12-22 03:49:12', 1),
(9498, 7165, 80, 'Sustainability', 3, 'Ok', 80, '2021-12-22 03:49:12', 1),
(9499, 7165, 80, 'Sales Experience', 2, 'He have 1 year experience in ICICI Bank', 80, '2021-12-22 03:49:12', 1),
(9500, 7165, 80, 'Existing Experience Analyze', 2, 'Ok', 80, '2021-12-22 03:49:12', 1),
(9501, 7165, 80, 'Practical Challenges Outcome', 2, 'Ok', 80, '2021-12-22 03:49:12', 1),
(9502, 7165, 80, 'Willing To Work On Holidays', 5, 'Yes', 80, '2021-12-22 03:49:12', 1),
(9503, 7244, 57, 'Sustainability', 3, 'he is already working in 3years sales s', 57, '2021-12-23 06:19:38', 1),
(9504, 7214, 29, 'Existing Experience Analyze', 2, 'has worked for 2 years, can check for insurance in 7 days', 29, '2021-12-24 04:05:22', 1),
(9505, 7214, 29, 'Sustainability', 2, 'need to check in 7 days', 29, '2021-12-24 04:05:22', 1),
(9506, 7212, 18, 'Appearance', 4, 'Good', 18, '2021-12-27 05:12:06', 1),
(9507, 7212, 18, 'Communication (English)', 3, 'Ok', 18, '2021-12-27 05:12:06', 1),
(9508, 7212, 18, 'Communication (Tamil)', 4, 'Good', 18, '2021-12-27 05:12:06', 1),
(9509, 7336, 74, 'Appearance', 3, 'good exposure skills', 74, '2021-12-30 03:13:21', 1),
(9510, 7336, 74, 'Sustainability', 3, 'job need highly sustainable in job', 74, '2021-12-30 03:13:21', 1),
(9511, 7353, 13, 'Communication (Tamil)', 4, 'Good', 13, '2021-12-31 02:39:16', 1),
(9512, 7353, 13, 'Confidence Level', 5, 'Very Good', 13, '2021-12-31 02:39:16', 1),
(9513, 7365, 80, 'Appearance', 5, 'Good', 80, '2022-01-04 11:59:33', 1),
(9514, 7365, 80, 'Attitude', 4, 'Ok', 80, '2022-01-04 11:59:33', 1),
(9515, 7365, 80, 'Communication (English)', 5, 'Good', 80, '2022-01-04 11:59:33', 1),
(9516, 7365, 80, 'Communication (Tamil)', 4, 'Ok', 80, '2022-01-04 11:59:33', 1),
(9517, 7365, 80, 'Convincing Skills', 4, 'Ok', 80, '2022-01-04 11:59:33', 1),
(9518, 7365, 80, 'Confidence Level', 4, 'Ok', 80, '2022-01-04 11:59:33', 1),
(9519, 7365, 80, 'Importance Of Job', 5, 'Needed', 80, '2022-01-04 11:59:33', 1),
(9520, 7365, 80, 'Observation Skills', 4, 'Ok', 80, '2022-01-04 11:59:33', 1),
(9521, 7365, 80, 'Pressure Handling', 3, 'Will try', 80, '2022-01-04 11:59:33', 1),
(9522, 7365, 80, 'patience', 4, 'Ok', 80, '2022-01-04 11:59:33', 1),
(9523, 7365, 80, 'Sustainability', 4, 'Ok', 80, '2022-01-04 11:59:33', 1),
(9524, 7365, 80, 'Sales Experience', 1, 'Fresher from our industry', 80, '2022-01-04 11:59:33', 1),
(9525, 7365, 80, 'Existing Experience Analyze', 2, 'Ok', 80, '2022-01-04 11:59:33', 1),
(9526, 7365, 80, 'Practical Challenges Outcome', 4, 'Ok', 80, '2022-01-04 11:59:33', 1),
(9527, 7365, 80, 'Willing To Work On Holidays', 3, 'No', 80, '2022-01-04 11:59:33', 1),
(9528, 7348, 14, 'Sustainability', 1, 'Less', 14, '2022-01-07 05:28:07', 1),
(9529, 7414, 80, 'Appearance', 4, 'Ok', 80, '2022-01-07 06:59:32', 1),
(9530, 7414, 80, 'Attitude', 4, 'Ok', 80, '2022-01-07 06:59:32', 1),
(9531, 7414, 80, 'Communication (English)', 2, 'No', 80, '2022-01-07 06:59:32', 1),
(9532, 7414, 80, 'Communication (Tamil)', 5, 'Good', 80, '2022-01-07 06:59:32', 1),
(9533, 7414, 80, 'Convincing Skills', 3, 'Ok', 80, '2022-01-07 06:59:32', 1),
(9534, 7414, 80, 'Confidence Level', 4, 'Ok', 80, '2022-01-07 06:59:32', 1),
(9535, 7414, 80, 'Importance Of Job', 4, 'Very much important', 80, '2022-01-07 06:59:32', 1),
(9536, 7414, 80, 'Observation Skills', 3, 'Ok', 80, '2022-01-07 06:59:32', 1),
(9537, 7414, 80, 'Pressure Handling', 4, 'Ok', 80, '2022-01-07 06:59:32', 1),
(9538, 7414, 80, 'patience', 3, 'Ok', 80, '2022-01-07 06:59:32', 1),
(9539, 7414, 80, 'Sustainability', 4, 'Ok', 80, '2022-01-07 06:59:32', 1),
(9540, 7414, 80, 'Sales Experience', 3, 'Ok', 80, '2022-01-07 06:59:32', 1),
(9541, 7414, 80, 'Existing Experience Analyze', 3, 'Ok', 80, '2022-01-07 06:59:32', 1),
(9542, 7414, 80, 'Practical Challenges Outcome', 3, 'Ok', 80, '2022-01-07 06:59:32', 1),
(9543, 7414, 80, 'Willing To Work On Holidays', 4, 'Yes', 80, '2022-01-07 06:59:32', 1),
(9544, 7415, 13, 'Confidence Level', 4, 'good', 13, '2022-01-08 05:01:24', 1),
(9545, 7415, 13, 'Importance (Job)', 4, 'good', 13, '2022-01-08 05:01:24', 1),
(9546, 7431, 74, 'Importance (Job)', 3, 'highly job need', 74, '2022-01-10 06:20:41', 1),
(9547, 7388, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-01-11 04:27:43', 1),
(9548, 7388, 13, 'convincing Skills', 4, 'good', 13, '2022-01-11 04:27:43', 1),
(9549, 7389, 13, 'Communication (Tamil)', 2, 'low', 13, '2022-01-11 04:30:19', 1),
(9550, 7389, 13, 'Confidence Level', 2, 'very low', 13, '2022-01-11 04:30:19', 1),
(9551, 7414, 18, 'Appearance', 3, 'Decent', 18, '2022-01-17 05:06:02', 1),
(9552, 7414, 18, 'Attitude', 4, 'Good', 18, '2022-01-17 05:06:02', 1),
(9553, 7414, 18, 'Communication (English)', 1, 'poor', 18, '2022-01-17 05:06:02', 1),
(9554, 7414, 18, 'Communication (Tamil)', 4, 'Ok', 18, '2022-01-17 05:06:02', 1),
(9555, 7414, 18, 'Convincing Skills', 3, 'Need to train', 18, '2022-01-17 05:06:02', 1),
(9556, 7414, 18, 'Confidence Level', 4, 'Good', 18, '2022-01-17 05:06:02', 1),
(9557, 7414, 18, 'Sales Experience', 4, 'Good', 18, '2022-01-17 05:06:02', 1),
(9558, 7492, 13, 'Communication (Tamil)', 4, 'Good', 13, '2022-01-18 02:49:59', 1),
(9559, 7492, 13, 'convincing Skills', 4, 'Good', 13, '2022-01-18 02:49:59', 1),
(9560, 7492, 13, 'Confidence Level', 4, 'Good', 13, '2022-01-18 02:49:59', 1),
(9561, 7444, 13, 'Communication (Tamil)', 2, 'low', 13, '2022-01-18 02:51:13', 1),
(9562, 7444, 13, 'Confidence Level', 2, 'low', 13, '2022-01-18 02:51:13', 1),
(9563, 7363, 13, 'convincing Skills', 2, 'low', 13, '2022-01-18 02:53:11', 1),
(9564, 7363, 13, 'Pressure Handling', 2, 'low', 13, '2022-01-18 02:53:11', 1),
(9565, 7491, 13, 'convincing Skills', 2, 'low', 13, '2022-01-20 01:31:59', 1),
(9566, 7491, 13, 'Confidence Level', 2, 'low', 13, '2022-01-20 01:31:59', 1),
(9567, 7517, 13, 'Sustainability', 2, 'low', 13, '2022-01-20 05:49:15', 1),
(9568, 7523, 31, 'Appearance', 3, 'Neat', 31, '2022-01-21 12:19:38', 1),
(9569, 7523, 31, 'Communication (Tamil)', 4, 'Good', 31, '2022-01-21 12:19:38', 1),
(9570, 7523, 29, 'Convincing Skills', 3, 'good', 29, '2022-01-22 03:01:01', 1),
(9571, 7523, 29, 'Observation Skills', 2, 'good', 29, '2022-01-22 03:01:01', 1),
(9572, 7578, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-01-25 06:28:10', 1),
(9573, 7578, 13, 'convincing Skills', 4, 'good', 13, '2022-01-25 06:28:10', 1),
(9574, 7607, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-01-28 06:46:46', 1),
(9575, 7607, 13, 'convincing Skills', 4, 'good', 13, '2022-01-28 06:46:46', 1),
(9576, 7611, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-01-28 06:48:08', 1),
(9577, 7611, 13, 'convincing Skills', 4, 'good', 13, '2022-01-28 06:48:08', 1),
(9578, 7615, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-01-28 06:51:08', 1),
(9579, 7615, 13, 'Confidence Level', 4, 'good', 13, '2022-01-28 06:51:08', 1),
(9580, 7586, 29, 'Communication (English)', 3, 'GOOD', 29, '2022-01-31 11:24:33', 1),
(9581, 7586, 29, 'Confidence Level', 2, 'CAN DO BETTER HERE', 29, '2022-01-31 11:24:33', 1),
(9582, 7680, 8, 'Communication (Tamil)', 2, 'native slang', 8, '2022-02-04 04:36:51', 1),
(9583, 7680, 8, 'convincing Skills', 2, 'poor', 8, '2022-02-04 04:36:51', 1),
(9584, 7681, 8, 'Appearance', 2, 'avg', 8, '2022-02-04 04:53:16', 1),
(9585, 7681, 8, 'Communication (Tamil)', 2, 'just okay, has 3m exp in calling 4yr back', 8, '2022-02-04 04:53:16', 1),
(9586, 7681, 8, 'convincing Skills', 2, 'poor', 8, '2022-02-04 04:53:16', 1),
(9587, 7685, 8, 'convincing Skills', 3, 'good', 8, '2022-02-05 12:19:17', 1),
(9588, 7685, 8, 'Importance (Job)', 3, 'high', 8, '2022-02-05 12:19:17', 1),
(9589, 7691, 8, 'Attitude', 3, 'okay', 8, '2022-02-07 03:18:08', 1),
(9590, 7691, 8, 'Communication (English)', 3, 'good', 8, '2022-02-07 03:18:08', 1),
(9591, 7691, 8, 'Convincing Skills', 3, 'avg', 8, '2022-02-07 03:18:08', 1),
(9592, 7691, 8, 'Importance Of Job', 3, 'yes', 8, '2022-02-07 03:18:08', 1),
(9593, 7691, 8, 'Pressure Handling', 3, 'yes', 8, '2022-02-07 03:18:08', 1),
(9594, 7691, 8, 'Existing Experience Analyze', 3, 'good', 8, '2022-02-07 03:18:08', 1),
(9595, 7694, 8, 'Attitude', 3, 'okay', 8, '2022-02-07 03:47:00', 1),
(9596, 7694, 8, 'Communication (Tamil)', 3, 'okay', 8, '2022-02-07 03:47:00', 1),
(9597, 7694, 8, 'Confidence Level', 3, 'good', 8, '2022-02-07 03:47:00', 1),
(9598, 7694, 8, 'Sustainability', 3, 'check once.', 8, '2022-02-07 03:47:00', 1),
(9599, 7700, 8, 'Appearance', 3, 'okay', 8, '2022-02-07 03:51:44', 1),
(9600, 7700, 8, 'Attitude', 3, 'questionable', 8, '2022-02-07 03:51:44', 1),
(9601, 7700, 8, 'Convincing Skills', 3, 'okay', 8, '2022-02-07 03:51:44', 1),
(9602, 7700, 8, 'Confidence Level', 3, 'good', 8, '2022-02-07 03:51:44', 1),
(9603, 7699, 8, 'Communication (English)', 3, 'good', 8, '2022-02-07 06:36:36', 1),
(9604, 7699, 8, 'Convincing Skills', 3, 'good', 8, '2022-02-07 06:36:36', 1),
(9605, 7699, 8, 'Confidence Level', 3, 'good', 8, '2022-02-07 06:36:36', 1),
(9606, 7699, 8, 'Sustainability', 3, 'yes', 8, '2022-02-07 06:36:36', 1),
(9607, 7689, 8, 'Attitude', 3, 'okay', 8, '2022-02-08 11:49:58', 1),
(9608, 7689, 8, 'Communication (Tamil)', 3, 'okay', 8, '2022-02-08 11:49:58', 1),
(9609, 7689, 8, 'Confidence Level', 3, 'good', 8, '2022-02-08 11:49:58', 1),
(9610, 7712, 8, 'Communication (Tamil)', 3, 'okay', 8, '2022-02-08 02:41:04', 1),
(9611, 7712, 8, 'Communication (English)', 3, 'avg', 8, '2022-02-08 02:41:04', 1),
(9612, 7712, 8, 'Confidence Level', 3, 'good', 8, '2022-02-08 02:41:04', 1),
(9613, 7712, 8, 'Importance (Job)', 3, 'yes', 8, '2022-02-08 02:41:04', 1),
(9614, 7700, 31, 'Communication (English)', 4, 'Good', 31, '2022-02-08 04:05:50', 1),
(9615, 7700, 31, 'Convincing Skills', 2, 'Seems to be lack of convincing ', 31, '2022-02-08 04:05:50', 1),
(9616, 7700, 31, 'Sustainability', 2, 'Find frequent job change', 31, '2022-02-08 04:05:50', 1),
(9617, 7724, 8, 'Attitude', 2, 'check once', 8, '2022-02-09 03:43:11', 1),
(9618, 7724, 8, 'Communication (English)', 3, 'avg', 8, '2022-02-09 03:43:11', 1),
(9619, 7724, 8, 'Convincing Skills', 3, 'okay', 8, '2022-02-09 03:43:11', 1),
(9620, 7724, 8, 'Sales Experience', 2, 'yes but not into fieldsales', 8, '2022-02-09 03:43:11', 1),
(9621, 7737, 8, 'Communication (Tamil)', 3, 'good', 8, '2022-02-10 12:06:15', 1),
(9622, 7737, 8, 'convincing Skills', 3, 'good', 8, '2022-02-10 12:06:15', 1),
(9623, 7737, 8, 'Confidence Level', 3, 'good', 8, '2022-02-10 12:06:15', 1),
(9624, 7737, 8, 'Importance (Job)', 3, 'yes', 8, '2022-02-10 12:06:15', 1),
(9625, 7740, 8, 'Communication (Tamil)', 3, 'okay', 8, '2022-02-10 01:06:08', 1),
(9626, 7740, 8, 'Convincing Skills', 2, 'avg', 8, '2022-02-10 01:06:08', 1),
(9627, 7740, 8, 'Sustainability', 2, 'check once, doubt in handling pressure', 8, '2022-02-10 01:06:08', 1),
(9628, 7740, 8, 'Sales Experience', 2, 'no', 8, '2022-02-10 01:06:08', 1),
(9629, 7754, 18, 'Appearance', 3, 'Ok', 18, '2022-02-12 11:31:17', 1),
(9630, 7754, 18, 'Attitude', 4, 'Good', 18, '2022-02-12 11:31:17', 1),
(9631, 7754, 18, 'Communication (English)', 2, 'Average', 18, '2022-02-12 11:31:17', 1),
(9632, 7754, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-02-12 11:31:17', 1),
(9633, 7754, 18, 'Convincing Skills', 4, 'Good', 18, '2022-02-12 11:31:17', 1),
(9634, 7754, 18, 'Importance Of Job', 4, 'Needed', 18, '2022-02-12 11:31:17', 1),
(9635, 7737, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-02-12 03:45:04', 1),
(9636, 7737, 13, 'convincing Skills', 4, 'good', 13, '2022-02-12 03:45:04', 1),
(9637, 7752, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-02-12 03:52:37', 1),
(9638, 7752, 13, 'Confidence Level', 4, 'good', 13, '2022-02-12 03:52:37', 1),
(9639, 7770, 8, 'Communication (Tamil)', 3, 'good', 8, '2022-02-14 01:25:10', 1),
(9640, 7770, 8, 'Convincing Skills', 2, 'avg', 8, '2022-02-14 01:25:10', 1),
(9641, 7770, 8, 'Pressure Handling', 2, 'check once', 8, '2022-02-14 01:25:10', 1),
(9642, 7770, 8, 'Sustainability', 2, 'check once', 8, '2022-02-14 01:25:10', 1),
(9643, 7770, 8, 'Sales Experience', 1, 'no, ', 8, '2022-02-14 01:25:10', 1),
(9644, 7779, 8, 'Communication (English)', 3, 'good', 8, '2022-02-15 12:45:44', 1),
(9645, 7779, 8, 'convincing Skills', 3, 'okay', 8, '2022-02-15 12:45:44', 1),
(9646, 7779, 8, 'Importance (Job)', 3, 'yes', 8, '2022-02-15 12:45:44', 1),
(9647, 7779, 8, 'Sustainability', 2, 'check once.', 8, '2022-02-15 12:45:44', 1),
(9648, 7728, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-02-15 02:57:24', 1),
(9649, 7728, 13, 'convincing Skills', 4, 'good', 13, '2022-02-15 02:57:24', 1),
(9650, 7785, 8, 'Communication (English)', 2, 'avg', 8, '2022-02-15 03:52:35', 1),
(9651, 7785, 8, 'Communication (Tamil)', 3, 'good', 8, '2022-02-15 03:52:35', 1),
(9652, 7785, 8, 'Confidence Level', 3, 'good', 8, '2022-02-15 03:52:35', 1),
(9653, 7785, 8, 'Sales Experience', 3, 'completely into 2w loan and finance', 8, '2022-02-15 03:52:35', 1),
(9654, 7773, 8, 'Communication (English)', 3, 'good', 8, '2022-02-15 06:17:48', 1),
(9655, 7773, 8, 'Convincing Skills', 3, 'okay', 8, '2022-02-15 06:17:48', 1),
(9656, 7773, 8, 'Importance Of Job', 3, 'yes', 8, '2022-02-15 06:17:48', 1),
(9657, 7773, 8, 'Sustainability', 2, 'check once', 8, '2022-02-15 06:17:48', 1),
(9658, 7773, 8, 'Sales Experience', 3, 'yes 7m in star health', 8, '2022-02-15 06:17:48', 1),
(9659, 7796, 8, 'Communication (English)', 2, 'avg', 8, '2022-02-16 02:59:22', 1),
(9660, 7796, 8, 'Communication (Tamil)', 3, 'good', 8, '2022-02-16 02:59:22', 1),
(9661, 7796, 8, 'Confidence Level', 3, 'good', 8, '2022-02-16 02:59:22', 1),
(9662, 7796, 8, 'Sustainability', 2, 'check once', 8, '2022-02-16 02:59:22', 1),
(9663, 7796, 8, 'Sales Experience', 3, 'yes', 8, '2022-02-16 02:59:22', 1),
(9664, 7796, 8, 'Existing Experience Analyze', 2, 'okay', 8, '2022-02-16 02:59:22', 1),
(9665, 7793, 8, 'Communication (English)', 2, 'avg', 8, '2022-02-16 05:02:37', 1),
(9666, 7793, 8, 'Communication (Tamil)', 3, 'okay', 8, '2022-02-16 05:02:37', 1),
(9667, 7793, 8, 'Convincing Skills', 3, 'okay', 8, '2022-02-16 05:02:37', 1),
(9668, 7793, 8, 'Importance Of Job', 3, 'yes', 8, '2022-02-16 05:02:37', 1),
(9669, 7785, 80, 'Appearance', 5, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9670, 7785, 80, 'Attitude', 4, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9671, 7785, 80, 'Communication (English)', 3, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9672, 7785, 80, 'Communication (Tamil)', 5, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9673, 7785, 80, 'Convincing Skills', 3, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9674, 7785, 80, 'Confidence Level', 3, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9675, 7785, 80, 'Importance Of Job', 3, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9676, 7785, 80, 'Observation Skills', 4, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9677, 7785, 80, 'Pressure Handling', 3, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9678, 7785, 80, 'patience', 4, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9679, 7785, 80, 'Sustainability', 4, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9680, 7785, 80, 'Sales Experience', 4, '4 years with 3 companies', 80, '2022-02-16 05:32:46', 1),
(9681, 7785, 80, 'Existing Experience Analyze', 3, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9682, 7785, 80, 'Practical Challenges Outcome', 3, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9683, 7785, 80, 'Willing To Work On Holidays', 3, 'Ok', 80, '2022-02-16 05:32:46', 1),
(9684, 7807, 8, 'Communication (English)', 3, 'avg', 8, '2022-02-17 05:48:34', 1),
(9685, 7807, 8, 'Convincing Skills', 3, 'okay', 8, '2022-02-17 05:48:34', 1),
(9686, 7807, 8, 'Sustainability', 2, 'check once', 8, '2022-02-17 05:48:34', 1),
(9687, 7807, 8, 'Sales Experience', 3, 'yes but not into insurance', 8, '2022-02-17 05:48:34', 1),
(9688, 7712, 29, 'Communication (English)', 2, 'good', 29, '2022-02-18 12:13:47', 1),
(9689, 7712, 29, 'Convincing Skills', 2, 'good', 29, '2022-02-18 12:13:47', 1),
(9690, 7800, 80, 'Appearance', 4, 'Ok', 80, '2022-02-18 12:36:43', 1),
(9691, 7800, 80, 'Attitude', 4, 'Ok', 80, '2022-02-18 12:36:43', 1),
(9692, 7800, 80, 'Communication (English)', 4, 'Ok', 80, '2022-02-18 12:36:43', 1),
(9693, 7800, 80, 'Communication (Tamil)', 5, 'Ok', 80, '2022-02-18 12:36:43', 1),
(9694, 7800, 80, 'Convincing Skills', 4, 'Ok', 80, '2022-02-18 12:36:43', 1),
(9695, 7800, 80, 'Confidence Level', 5, 'Ok', 80, '2022-02-18 12:36:43', 1),
(9696, 7800, 80, 'Importance Of Job', 5, 'Yes', 80, '2022-02-18 12:36:43', 1),
(9697, 7800, 80, 'Observation Skills', 4, 'Ok', 80, '2022-02-18 12:36:43', 1),
(9698, 7800, 80, 'Pressure Handling', 4, 'Ok', 80, '2022-02-18 12:36:43', 1),
(9699, 7800, 80, 'patience', 4, 'Ok', 80, '2022-02-18 12:36:43', 1),
(9700, 7800, 80, 'Sustainability', 4, 'Ok', 80, '2022-02-18 12:36:43', 1),
(9701, 7800, 80, 'Sales Experience', 1, 'He have Teaching experience ', 80, '2022-02-18 12:36:43', 1),
(9702, 7800, 80, 'Existing Experience Analyze', 2, 'Ok', 80, '2022-02-18 12:36:43', 1),
(9703, 7800, 80, 'Practical Challenges Outcome', 4, 'Ok', 80, '2022-02-18 12:36:43', 1),
(9704, 7800, 80, 'Willing To Work On Holidays', 4, 'Yes', 80, '2022-02-18 12:36:43', 1),
(9705, 7815, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-02-18 03:13:57', 1),
(9706, 7815, 13, 'convincing Skills', 4, 'good', 13, '2022-02-18 03:13:57', 1),
(9707, 7804, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-02-18 03:27:23', 1),
(9708, 7804, 13, 'Confidence Level', 4, 'good', 13, '2022-02-18 03:27:23', 1),
(9709, 7834, 8, 'Communication (English)', 3, 'okay', 8, '2022-02-19 02:40:01', 1),
(9710, 7834, 8, 'Communication (Tamil)', 3, 'good', 8, '2022-02-19 02:40:01', 1),
(9711, 7834, 8, 'Convincing Skills', 3, 'good', 8, '2022-02-19 02:40:01', 1),
(9712, 7843, 8, 'Communication (Tamil)', 3, 'okay', 8, '2022-02-21 02:36:02', 1),
(9713, 7843, 8, 'Convincing Skills', 3, 'okay', 8, '2022-02-21 02:36:02', 1),
(9714, 7843, 8, 'Pressure Handling', 2, 'check once', 8, '2022-02-21 02:36:02', 1),
(9715, 7843, 8, 'Sales Experience', 3, 'yes', 8, '2022-02-21 02:36:02', 1),
(9716, 7796, 18, 'Appearance', 3, 'Decent', 18, '2022-02-22 04:25:28', 1),
(9717, 7796, 18, 'Attitude', 4, 'Good', 18, '2022-02-22 04:25:28', 1),
(9718, 7796, 18, 'Communication (English)', 3, 'Average', 18, '2022-02-22 04:25:28', 1),
(9719, 7796, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-02-22 04:25:28', 1),
(9720, 7796, 18, 'Convincing Skills', 4, 'Good', 18, '2022-02-22 04:25:28', 1),
(9721, 7796, 18, 'Willing To Work On Holidays', 4, 'Yes', 18, '2022-02-22 04:25:28', 1),
(9722, 7872, 8, 'Communication (Tamil)', 3, 'good', 8, '2022-02-23 01:03:06', 1),
(9723, 7872, 8, 'Convincing Skills', 3, 'good', 8, '2022-02-23 01:03:06', 1),
(9724, 7872, 8, 'Confidence Level', 3, 'good', 8, '2022-02-23 01:03:06', 1),
(9725, 7872, 8, 'Importance Of Job', 3, 'yes', 8, '2022-02-23 01:03:06', 1),
(9726, 7880, 8, 'Communication (Tamil)', 3, 'okay', 8, '2022-02-23 01:30:12', 1),
(9727, 7880, 8, 'Confidence Level', 3, 'good', 8, '2022-02-23 01:30:12', 1),
(9728, 7879, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-02-23 01:43:06', 1),
(9729, 7879, 13, 'Confidence Level', 4, '4', 13, '2022-02-23 01:43:06', 1),
(9730, 7890, 8, 'Communication (Tamil)', 3, 'good', 8, '2022-02-24 10:11:43', 1),
(9731, 7890, 8, 'Convincing Skills', 3, 'good', 8, '2022-02-24 10:11:43', 1),
(9732, 7890, 8, 'Sales Experience', 3, 'yes 3yrs', 8, '2022-02-24 10:11:43', 1),
(9733, 7835, 18, 'Appearance', 4, 'Goof', 18, '2022-02-25 11:04:33', 1),
(9734, 7835, 18, 'Attitude', 4, 'Good', 18, '2022-02-25 11:04:33', 1),
(9735, 7835, 18, 'Communication (English)', 4, 'Good', 18, '2022-02-25 11:04:33', 1),
(9736, 7835, 18, 'Convincing Skills', 4, 'Good', 18, '2022-02-25 11:04:33', 1),
(9737, 7835, 18, 'Confidence Level', 4, 'Good', 18, '2022-02-25 11:04:33', 1),
(9738, 7835, 18, 'Importance Of Job', 4, 'Needed', 18, '2022-02-25 11:04:33', 1),
(9739, 7835, 18, 'Observation Skills', 4, 'Good', 18, '2022-02-25 11:04:33', 1),
(9740, 7835, 18, 'Sustainability', 3, 'Need to Double Check', 18, '2022-02-25 11:04:33', 1),
(9741, 7835, 18, 'Sales Experience', 3, 'Decent', 18, '2022-02-25 11:04:33', 1),
(9742, 7773, 18, 'Appearance', 4, 'Good', 18, '2022-02-25 04:26:29', 1),
(9743, 7773, 18, 'Attitude', 4, 'Good', 18, '2022-02-25 04:26:29', 1),
(9744, 7773, 18, 'Communication (English)', 4, 'Good', 18, '2022-02-25 04:26:29', 1),
(9745, 7773, 18, 'Convincing Skills', 4, 'Good', 18, '2022-02-25 04:26:29', 1),
(9746, 7773, 18, 'Confidence Level', 4, 'Good', 18, '2022-02-25 04:26:29', 1),
(9747, 7773, 18, 'Importance Of Job', 4, 'Needed', 18, '2022-02-25 04:26:29', 1),
(9748, 7773, 18, 'Observation Skills', 4, 'Good', 18, '2022-02-25 04:26:29', 1),
(9749, 7773, 18, 'Sustainability', 3, 'Decent', 18, '2022-02-25 04:26:29', 1),
(9750, 7929, 8, 'Communication (Tamil)', 3, 'okay', 8, '2022-02-26 03:10:07', 1),
(9751, 7929, 8, 'Convincing Skills', 3, 'okay', 8, '2022-02-26 03:10:07', 1),
(9752, 7929, 8, 'Confidence Level', 3, 'good', 8, '2022-02-26 03:10:07', 1),
(9753, 7929, 8, 'Sales Experience', 2, 'yes', 8, '2022-02-26 03:10:07', 1),
(9754, 8010, 82, 'Convincing Skills', 3, 'Good in sales pitching', 82, '2022-03-04 04:43:48', 1),
(9755, 8016, 83, 'Software Installation?', 1, 'no basic knowledge', 83, '2022-03-05 03:41:25', 1),
(9756, 8016, 83, 'Software Troubleshooting?', 1, 'No Basic Knowledge', 83, '2022-03-05 03:41:25', 1),
(9757, 8016, 83, 'Do you Know system assembling?', 1, 'No Basic Knowledge', 83, '2022-03-05 03:41:25', 1),
(9758, 7762, 80, 'Appearance', 5, 'Ok', 80, '2022-03-05 04:19:40', 1),
(9759, 7762, 80, 'Attitude', 5, 'Good', 80, '2022-03-05 04:19:40', 1),
(9760, 7762, 80, 'Communication (English)', 5, 'Good', 80, '2022-03-05 04:19:40', 1),
(9761, 7762, 80, 'Communication (Tamil)', 5, 'Good', 80, '2022-03-05 04:19:40', 1),
(9762, 7762, 80, 'Convincing Skills', 5, 'Good', 80, '2022-03-05 04:19:40', 1),
(9763, 7762, 80, 'Confidence Level', 5, 'Good', 80, '2022-03-05 04:19:40', 1),
(9764, 7762, 80, 'Importance Of Job', 3, 'He will work for learning not for commitment. But incase settle he will be good', 80, '2022-03-05 04:19:40', 1),
(9765, 7762, 80, 'Observation Skills', 5, 'Good', 80, '2022-03-05 04:19:40', 1),
(9766, 7762, 80, 'Pressure Handling', 4, 'Ok', 80, '2022-03-05 04:19:40', 1),
(9767, 7762, 80, 'patience', 5, 'Ok', 80, '2022-03-05 04:19:40', 1),
(9768, 7762, 80, 'Sustainability', 4, 'Ok', 80, '2022-03-05 04:19:40', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(9769, 7762, 80, 'Sales Experience', 3, 'Ok', 80, '2022-03-05 04:19:40', 1),
(9770, 7762, 80, 'Existing Experience Analyze', 3, 'Ok', 80, '2022-03-05 04:19:40', 1),
(9771, 7762, 80, 'Practical Challenges Outcome', 4, 'Good', 80, '2022-03-05 04:19:40', 1),
(9772, 7762, 80, 'Willing To Work On Holidays', 3, 'Ok', 80, '2022-03-05 04:19:40', 1),
(9773, 8021, 8, 'Appearance', 2, 'okay', 8, '2022-03-07 05:42:45', 1),
(9774, 8021, 8, 'Communication (Tamil)', 3, 'okay', 8, '2022-03-07 05:42:45', 1),
(9775, 8021, 8, 'Convincing Skills', 2, 'avg', 8, '2022-03-07 05:42:45', 1),
(9776, 8021, 8, 'Sustainability', 2, 'check once', 8, '2022-03-07 05:42:45', 1),
(9777, 8021, 8, 'Sales Experience', 3, 'yes', 8, '2022-03-07 05:42:45', 1),
(9778, 8021, 8, 'Existing Experience Analyze', 3, 'okay', 8, '2022-03-07 05:42:45', 1),
(9779, 8014, 80, 'Appearance', 4, 'Ok', 80, '2022-03-10 01:10:57', 1),
(9780, 8014, 80, 'Attitude', 4, 'Ok', 80, '2022-03-10 01:10:57', 1),
(9781, 8014, 80, 'Communication (English)', 3, 'Ok', 80, '2022-03-10 01:10:57', 1),
(9782, 8014, 80, 'Communication (Tamil)', 5, 'Good', 80, '2022-03-10 01:10:57', 1),
(9783, 8014, 80, 'Convincing Skills', 3, 'Ok', 80, '2022-03-10 01:10:57', 1),
(9784, 8014, 80, 'Confidence Level', 4, 'Ok', 80, '2022-03-10 01:10:57', 1),
(9785, 8014, 80, 'Importance Of Job', 5, 'Needed', 80, '2022-03-10 01:10:57', 1),
(9786, 8014, 80, 'Observation Skills', 3, 'Ok', 80, '2022-03-10 01:10:57', 1),
(9787, 8014, 80, 'Pressure Handling', 4, 'Ok', 80, '2022-03-10 01:10:57', 1),
(9788, 8014, 80, 'patience', 3, 'Ok', 80, '2022-03-10 01:10:57', 1),
(9789, 8014, 80, 'Sustainability', 3, 'Ok', 80, '2022-03-10 01:10:57', 1),
(9790, 8014, 80, 'Sales Experience', 2, 'No', 80, '2022-03-10 01:10:57', 1),
(9791, 8014, 80, 'Existing Experience Analyze', 4, 'Ok', 80, '2022-03-10 01:10:57', 1),
(9792, 8014, 80, 'Practical Challenges Outcome', 3, 'Ok', 80, '2022-03-10 01:10:57', 1),
(9793, 8014, 80, 'Willing To Work On Holidays', 3, 'Ok', 80, '2022-03-10 01:10:57', 1),
(9794, 8073, 8, 'Sustainability', 2, 'check once.', 8, '2022-03-10 05:12:33', 1),
(9795, 8014, 18, 'Appearance', 3, 'Ok', 18, '2022-03-10 05:15:49', 1),
(9796, 8014, 18, 'Communication (English)', 2, 'Average', 18, '2022-03-10 05:15:49', 1),
(9797, 8014, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-03-10 05:15:49', 1),
(9798, 8014, 18, 'Importance Of Job', 5, 'Needed', 18, '2022-03-10 05:15:49', 1),
(9799, 7942, 18, 'Appearance', 3, 'Ok', 18, '2022-03-10 05:18:02', 1),
(9800, 7942, 18, 'Convincing Skills', 3, 'Average', 18, '2022-03-10 05:18:02', 1),
(9801, 7942, 18, 'Sustainability', 4, 'Ok', 18, '2022-03-10 05:18:02', 1),
(9802, 7936, 13, 'Communication (Tamil)', 2, 'low', 13, '2022-03-12 12:33:56', 1),
(9803, 7936, 13, 'convincing Skills', 2, 'low', 13, '2022-03-12 12:33:56', 1),
(9804, 8119, 80, 'Appearance', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9805, 8119, 80, 'Attitude', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9806, 8119, 80, 'Communication (English)', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9807, 8119, 80, 'Communication (Tamil)', 5, 'Good', 80, '2022-03-15 02:55:38', 1),
(9808, 8119, 80, 'Convincing Skills', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9809, 8119, 80, 'Confidence Level', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9810, 8119, 80, 'Importance Of Job', 3, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9811, 8119, 80, 'Observation Skills', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9812, 8119, 80, 'Pressure Handling', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9813, 8119, 80, 'patience', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9814, 8119, 80, 'Sustainability', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9815, 8119, 80, 'Sales Experience', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9816, 8119, 80, 'Existing Experience Analyze', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9817, 8119, 80, 'Practical Challenges Outcome', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9818, 8119, 80, 'Willing To Work On Holidays', 4, 'Ok', 80, '2022-03-15 02:55:38', 1),
(9819, 8100, 13, 'Communication (English)', 2, 'low', 13, '2022-03-17 10:27:09', 1),
(9820, 8100, 13, 'convincing Skills', 2, 'low', 13, '2022-03-17 10:27:09', 1),
(9821, 7873, 18, 'Appearance', 4, 'Goog', 18, '2022-03-18 03:31:52', 1),
(9822, 7873, 18, 'Communication (English)', 3, 'Good', 18, '2022-03-18 03:31:52', 1),
(9823, 7873, 18, 'Importance Of Job', 4, 'Needed', 18, '2022-03-18 03:31:52', 1),
(9824, 8146, 80, 'Appearance', 4, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9825, 8146, 80, 'Attitude', 5, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9826, 8146, 80, 'Communication (English)', 5, 'Good', 80, '2022-03-18 05:13:45', 1),
(9827, 8146, 80, 'Communication (Tamil)', 4, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9828, 8146, 80, 'Convincing Skills', 4, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9829, 8146, 80, 'Confidence Level', 4, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9830, 8146, 80, 'Importance Of Job', 5, 'Needed', 80, '2022-03-18 05:13:45', 1),
(9831, 8146, 80, 'Observation Skills', 4, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9832, 8146, 80, 'Pressure Handling', 4, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9833, 8146, 80, 'patience', 4, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9834, 8146, 80, 'Sustainability', 4, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9835, 8146, 80, 'Sales Experience', 4, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9836, 8146, 80, 'Existing Experience Analyze', 4, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9837, 8146, 80, 'Practical Challenges Outcome', 4, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9838, 8146, 80, 'Willing To Work On Holidays', 4, 'Ok', 80, '2022-03-18 05:13:45', 1),
(9839, 8077, 31, 'Communication (English)', 4, 'good', 31, '2022-03-21 07:55:22', 1),
(9840, 8146, 18, 'Appearance', 4, 'Good', 18, '2022-03-23 11:43:54', 1),
(9841, 8146, 18, 'Attitude', 4, 'Good', 18, '2022-03-23 11:43:54', 1),
(9842, 8146, 18, 'Communication (English)', 5, 'Good', 18, '2022-03-23 11:43:54', 1),
(9843, 8146, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-03-23 11:43:54', 1),
(9844, 8146, 18, 'Sales Experience', 3, 'Average', 18, '2022-03-23 11:43:54', 1),
(9845, 8222, 80, 'Appearance', 4, 'Ok', 80, '2022-03-25 12:04:29', 1),
(9846, 8222, 80, 'Attitude', 4, 'Ok', 80, '2022-03-25 12:04:29', 1),
(9847, 8222, 80, 'Communication (English)', 3, 'Ok', 80, '2022-03-25 12:04:29', 1),
(9848, 8222, 80, 'Communication (Tamil)', 5, 'Good\n', 80, '2022-03-25 12:04:29', 1),
(9849, 8222, 80, 'Confidence Level', 4, 'Ok', 80, '2022-03-25 12:04:29', 1),
(9850, 8222, 80, 'Importance Of Job', 4, 'Needed', 80, '2022-03-25 12:04:29', 1),
(9851, 8222, 80, 'Observation Skills', 3, 'Ok', 80, '2022-03-25 12:04:29', 1),
(9852, 8222, 80, 'Pressure Handling', 3, 'Ok', 80, '2022-03-25 12:04:29', 1),
(9853, 8222, 80, 'patience', 4, 'Ok', 80, '2022-03-25 12:04:29', 1),
(9854, 8222, 80, 'Sustainability', 4, 'Ok', 80, '2022-03-25 12:04:29', 1),
(9855, 8222, 80, 'Sales Experience', 4, 'Ok', 80, '2022-03-25 12:04:29', 1),
(9856, 8222, 80, 'Existing Experience Analyze', 3, 'Ok', 80, '2022-03-25 12:04:29', 1),
(9857, 8222, 80, 'Practical Challenges Outcome', 3, 'Ok', 80, '2022-03-25 12:04:29', 1),
(9858, 8222, 80, 'Willing To Work On Holidays', 4, 'Ok', 80, '2022-03-25 12:04:29', 1),
(9859, 8225, 13, 'Communication (English)', 3, 'average', 13, '2022-03-26 11:42:46', 1),
(9860, 8225, 13, 'convincing Skills', 2, 'low', 13, '2022-03-26 11:42:46', 1),
(9861, 8228, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-03-28 11:35:03', 1),
(9862, 8228, 13, 'convincing Skills', 4, 'Good', 13, '2022-03-28 11:35:03', 1),
(9863, 8242, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-03-28 11:44:35', 1),
(9864, 8242, 13, 'convincing Skills', 4, 'good', 13, '2022-03-28 11:44:35', 1),
(9865, 8232, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-03-29 06:58:47', 1),
(9866, 8232, 13, 'Confidence Level', 4, 'good', 13, '2022-03-29 06:58:47', 1),
(9867, 8245, 13, 'Communication (Tamil)', 4, 'good', 13, '2022-03-29 07:00:29', 1),
(9868, 8245, 13, 'convincing Skills', 4, 'good', 13, '2022-03-29 07:00:29', 1),
(9869, 8275, 31, 'Appearance', 4, 'Good', 31, '2022-03-31 08:15:39', 1),
(9870, 8275, 31, 'Communication (English)', 4, 'Good', 31, '2022-03-31 08:15:39', 1),
(9871, 8275, 31, 'Convincing Skills', 4, 'acceptable level of convincing skill', 31, '2022-03-31 08:15:39', 1),
(9872, 8332, 19, 'Appearance', 4, 'Good ', 19, '2022-04-06 10:12:13', 1),
(9873, 8332, 19, 'Communication (English)', 4, 'Good', 19, '2022-04-06 10:12:13', 1),
(9874, 7602, 19, 'Appearance', 1, 'No', 19, '2022-04-06 12:27:10', 1),
(9875, 8398, 80, 'Appearance', 4, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9876, 8398, 80, 'Attitude', 4, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9877, 8398, 80, 'Communication (English)', 3, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9878, 8398, 80, 'Communication (Tamil)', 5, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9879, 8398, 80, 'Convincing Skills', 4, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9880, 8398, 80, 'Confidence Level', 4, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9881, 8398, 80, 'Importance Of Job', 4, 'Much needed', 80, '2022-04-08 07:34:33', 1),
(9882, 8398, 80, 'Observation Skills', 4, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9883, 8398, 80, 'Pressure Handling', 4, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9884, 8398, 80, 'patience', 4, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9885, 8398, 80, 'Sustainability', 4, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9886, 8398, 80, 'Sales Experience', 4, 'Good', 80, '2022-04-08 07:34:33', 1),
(9887, 8398, 80, 'Existing Experience Analyze', 4, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9888, 8398, 80, 'Practical Challenges Outcome', 4, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9889, 8398, 80, 'Willing To Work On Holidays', 4, 'Ok', 80, '2022-04-08 07:34:33', 1),
(9890, 8398, 18, 'Appearance', 4, 'Good', 18, '2022-04-09 11:35:13', 1),
(9891, 8398, 18, 'Attitude', 4, 'Good', 18, '2022-04-09 11:35:13', 1),
(9892, 8398, 18, 'Communication (English)', 4, 'Good', 18, '2022-04-09 11:35:13', 1),
(9893, 8398, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-04-09 11:35:13', 1),
(9894, 8398, 18, 'Convincing Skills', 4, 'Good', 18, '2022-04-09 11:35:13', 1),
(9895, 8398, 18, 'Confidence Level', 4, 'Good', 18, '2022-04-09 11:35:13', 1),
(9896, 8398, 18, 'Importance Of Job', 4, 'Needed', 18, '2022-04-09 11:35:13', 1),
(9897, 8398, 18, 'Observation Skills', 5, 'Good', 18, '2022-04-09 11:35:13', 1),
(9898, 8398, 18, 'Sales Experience', 4, 'Good', 18, '2022-04-09 11:35:13', 1),
(9899, 8264, 18, 'Appearance', 4, 'Good', 18, '2022-04-09 05:26:56', 1),
(9900, 8264, 18, 'Attitude', 3, 'Ok', 18, '2022-04-09 05:26:56', 1),
(9901, 8264, 18, 'Communication (English)', 5, 'Good', 18, '2022-04-09 05:26:56', 1),
(9902, 8264, 18, 'Confidence Level', 4, 'Good', 18, '2022-04-09 05:26:56', 1),
(9903, 8264, 18, 'Sustainability', 3, 'Need to Filter in 1st week', 18, '2022-04-09 05:26:56', 1),
(9904, 8264, 18, 'Sales Experience', 3, 'Good but not relevant', 18, '2022-04-09 05:26:56', 1),
(9905, 8311, 18, 'Appearance', 4, 'Good', 18, '2022-04-27 12:20:49', 1),
(9906, 8311, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-04-27 12:20:49', 1),
(9907, 8311, 18, 'Importance Of Job', 4, 'Need', 18, '2022-04-27 12:20:49', 1),
(9908, 8311, 18, 'Sustainability', 4, 'Yes', 18, '2022-04-27 12:20:49', 1),
(9909, 8311, 18, 'Sales Experience', 4, 'Good but not relevant', 18, '2022-04-27 12:20:49', 1),
(9910, 8539, 18, 'Appearance', 4, 'Good', 18, '2022-05-04 03:04:22', 1),
(9911, 8539, 18, 'Importance Of Job', 4, 'Need', 18, '2022-05-04 03:04:22', 1),
(9912, 8539, 18, 'Sales Experience', 4, 'Ok', 18, '2022-05-04 03:04:22', 1),
(9913, 8660, 31, 'Communication (English)', 4, 'good language', 31, '2022-05-06 03:46:26', 1),
(9914, 8660, 31, 'Convincing Skills', 4, 'Good.  ', 31, '2022-05-06 03:46:26', 1),
(9915, 8660, 31, 'Confidence Level', 4, 'Good', 31, '2022-05-06 03:46:26', 1),
(9916, 8387, 31, 'Communication (English)', 4, 'Good', 31, '2022-05-06 03:48:43', 1),
(9917, 8387, 31, 'Sustainability', 1, 'doubtful in sustaining long term with us', 31, '2022-05-06 03:48:43', 1),
(9918, 8677, 80, 'Appearance', 4, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9919, 8677, 80, 'Attitude', 4, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9920, 8677, 80, 'Communication (English)', 3, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9921, 8677, 80, 'Communication (Tamil)', 5, 'Good', 80, '2022-05-10 04:20:33', 1),
(9922, 8677, 80, 'Convincing Skills', 4, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9923, 8677, 80, 'Confidence Level', 3, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9924, 8677, 80, 'Importance Of Job', 4, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9925, 8677, 80, 'Observation Skills', 4, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9926, 8677, 80, 'Pressure Handling', 4, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9927, 8677, 80, 'patience', 4, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9928, 8677, 80, 'Sustainability', 4, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9929, 8677, 80, 'Sales Experience', 4, 'He have 2 years of experience ', 80, '2022-05-10 04:20:33', 1),
(9930, 8677, 80, 'Existing Experience Analyze', 4, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9931, 8677, 80, 'Practical Challenges Outcome', 4, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9932, 8677, 80, 'Willing To Work On Holidays', 4, 'Ok', 80, '2022-05-10 04:20:33', 1),
(9933, 8706, 57, 'Communication (English)', 4, 'Communication good', 57, '2022-05-11 04:14:43', 1),
(9934, 8769, 18, 'Appearance', 3, 'Decent', 18, '2022-05-18 01:46:54', 1),
(9935, 8769, 18, 'Attitude', 2, 'Need to double check', 18, '2022-05-18 01:46:54', 1),
(9936, 8769, 18, 'Communication (English)', 3, 'Average', 18, '2022-05-18 01:46:54', 1),
(9937, 8769, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-05-18 01:46:54', 1),
(9938, 8769, 18, 'Convincing Skills', 4, 'Good', 18, '2022-05-18 01:46:54', 1),
(9939, 8769, 18, 'Confidence Level', 4, 'Matured', 18, '2022-05-18 01:46:54', 1),
(9940, 8769, 18, 'Importance Of Job', 4, 'Needed', 18, '2022-05-18 01:46:54', 1),
(9941, 8769, 18, 'Observation Skills', 3, 'Average', 18, '2022-05-18 01:46:54', 1),
(9942, 8769, 18, 'Pressure Handling', 3, 'Ok', 18, '2022-05-18 01:46:54', 1),
(9943, 8769, 18, 'patience', 2, 'Average', 18, '2022-05-18 01:46:54', 1),
(9944, 8769, 18, 'Sustainability', 3, 'Need to filter in 1st week', 18, '2022-05-18 01:46:54', 1),
(9945, 8769, 18, 'Sales Experience', 4, 'Good But not relevant', 18, '2022-05-18 01:46:54', 1),
(9946, 8769, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2022-05-18 01:46:54', 1),
(9947, 8828, 31, 'Appearance', 4, 'Good', 31, '2022-05-25 11:06:28', 1),
(9948, 8828, 31, 'Convincing Skills', 4, 'Good', 31, '2022-05-25 11:06:28', 1),
(9949, 8828, 29, 'Appearance', 3, 'Good', 29, '2022-05-25 06:56:50', 1),
(9950, 8828, 29, 'Communication (English)', 3, 'Good', 29, '2022-05-25 06:56:50', 1),
(9951, 8828, 29, 'Convincing Skills', 3, 'ok', 29, '2022-05-25 06:56:50', 1),
(9952, 8828, 29, 'Sales Experience', 3, 'non insurance, need to train', 29, '2022-05-25 06:56:50', 1),
(9953, 8739, 29, 'Communication (English)', 3, 'good', 29, '2022-05-25 06:59:06', 1),
(9954, 8739, 29, 'convincing Skills', 2, 'ok', 29, '2022-05-25 06:59:06', 1),
(9955, 8863, 31, 'Appearance', 4, 'neat', 31, '2022-05-31 10:10:42', 1),
(9956, 8863, 31, 'Confidence Level', 4, 'Good', 31, '2022-05-31 10:10:42', 1),
(9957, 8863, 29, 'Convincing Skills', 3, 'good', 29, '2022-05-31 08:42:17', 1),
(9958, 8863, 29, 'Sales Experience', 3, 'ok', 29, '2022-05-31 08:42:17', 1),
(9959, 8898, 19, 'Appearance', 4, 'Good Look', 19, '2022-06-07 11:01:09', 1),
(9960, 8898, 19, 'Importance Of Job', 4, 'Job Needed Person', 19, '2022-06-07 11:01:09', 1),
(9961, 8969, 80, 'Appearance', 4, 'Ok', 80, '2022-06-09 06:58:25', 1),
(9962, 8969, 80, 'Attitude', 4, 'Ok', 80, '2022-06-09 06:58:25', 1),
(9963, 8969, 80, 'Communication (English)', 2, 'Will improve', 80, '2022-06-09 06:58:25', 1),
(9964, 8969, 80, 'Communication (Tamil)', 5, 'Good', 80, '2022-06-09 06:58:25', 1),
(9965, 8969, 80, 'Convincing Skills', 4, 'Ok', 80, '2022-06-09 06:58:25', 1),
(9966, 8969, 80, 'Confidence Level', 4, 'Ok', 80, '2022-06-09 06:58:25', 1),
(9967, 8969, 80, 'Importance Of Job', 5, 'Very much', 80, '2022-06-09 06:58:25', 1),
(9968, 8969, 80, 'Observation Skills', 4, 'Ok', 80, '2022-06-09 06:58:25', 1),
(9969, 8969, 80, 'Pressure Handling', 3, 'Ok', 80, '2022-06-09 06:58:25', 1),
(9970, 8969, 80, 'patience', 3, 'Ok', 80, '2022-06-09 06:58:25', 1),
(9971, 8969, 80, 'Sustainability', 4, 'Ok', 80, '2022-06-09 06:58:25', 1),
(9972, 8969, 80, 'Sales Experience', 2, 'No', 80, '2022-06-09 06:58:25', 1),
(9973, 8969, 80, 'Existing Experience Analyze', 4, 'Ok', 80, '2022-06-09 06:58:25', 1),
(9974, 8969, 80, 'Practical Challenges Outcome', 4, 'Ok', 80, '2022-06-09 06:58:25', 1),
(9975, 8969, 80, 'Willing To Work On Holidays', 5, 'Ok', 80, '2022-06-09 06:58:25', 1),
(9976, 8969, 18, 'Appearance', 3, 'Ok', 18, '2022-06-10 01:21:37', 1),
(9977, 8969, 18, 'Attitude', 4, 'Good', 18, '2022-06-10 01:21:37', 1),
(9978, 8969, 18, 'Communication (English)', 1, 'Nil', 18, '2022-06-10 01:21:37', 1),
(9979, 8969, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-06-10 01:21:37', 1),
(9980, 8969, 18, 'Convincing Skills', 3, 'Ok', 18, '2022-06-10 01:21:37', 1),
(9981, 8969, 18, 'Confidence Level', 4, 'Good', 18, '2022-06-10 01:21:37', 1),
(9982, 8969, 18, 'Importance Of Job', 4, 'Needed', 18, '2022-06-10 01:21:37', 1),
(9983, 8969, 18, 'Observation Skills', 4, 'Good', 18, '2022-06-10 01:21:37', 1),
(9984, 8969, 18, 'Pressure Handling', 4, 'yes', 18, '2022-06-10 01:21:37', 1),
(9985, 8969, 18, 'Sales Experience', 1, 'Nil', 18, '2022-06-10 01:21:37', 1),
(9986, 8990, 18, 'Appearance', 4, 'Good', 18, '2022-06-12 09:39:41', 1),
(9987, 8990, 18, 'Attitude', 4, 'Good', 18, '2022-06-12 09:39:41', 1),
(9988, 8990, 18, 'Communication (English)', 3, 'Ok', 18, '2022-06-12 09:39:41', 1),
(9989, 8990, 18, 'Communication (Tamil)', 5, 'Good', 18, '2022-06-12 09:39:41', 1),
(9990, 8990, 18, 'Convincing Skills', 4, 'Good', 18, '2022-06-12 09:39:41', 1),
(9991, 8990, 18, 'Sales Experience', 4, 'Decent', 18, '2022-06-12 09:39:41', 1),
(9992, 9023, 39, 'Appearance', 3, 'Good', 39, '2022-06-14 02:57:32', 1),
(9993, 9023, 39, 'Communication (English)', 5, 'Communication is good', 39, '2022-06-14 02:57:32', 1),
(9994, 9023, 39, 'Confidence Level', 4, 'Good', 39, '2022-06-14 02:57:32', 1),
(9995, 9023, 39, 'Observation Skills', 4, 'Observation skill is good', 39, '2022-06-14 02:57:32', 1),
(9996, 9023, 39, 'Sustainability', 4, 'Will sustain', 39, '2022-06-14 02:57:32', 1),
(9997, 9023, 30, 'Communication (English)', 4, 'Good', 30, '2022-06-14 02:59:42', 1),
(9998, 9023, 30, 'Confidence Level', 4, 'Good', 30, '2022-06-14 02:59:42', 1),
(9999, 9023, 30, 'Sustainability', 4, 'Sustain for long', 30, '2022-06-14 02:59:42', 1),
(10000, 9043, 39, 'Appearance', 3, 'GOOD', 39, '2022-06-15 03:37:13', 1),
(10001, 9043, 39, 'Communication (English)', 3, 'MANAGEABLE', 39, '2022-06-15 03:37:13', 1),
(10002, 9043, 39, 'Confidence Level', 3, 'GOOD', 39, '2022-06-15 03:37:13', 1),
(10003, 9043, 39, 'Importance Of Job', 4, 'NEEDED', 39, '2022-06-15 03:37:13', 1),
(10004, 9042, 39, 'Appearance', 1, 'bad', 39, '2022-06-15 05:24:29', 1),
(10005, 9042, 39, 'Communication (English)', 2, 'average', 39, '2022-06-15 05:24:29', 1),
(10006, 9042, 39, 'Confidence Level', 1, 'lack of confidence', 39, '2022-06-15 05:24:29', 1),
(10007, 8992, 18, 'Appearance', 3, 'Ok', 18, '2022-06-16 11:56:58', 1),
(10008, 8992, 18, 'Attitude', 4, 'Good', 18, '2022-06-16 11:56:58', 1),
(10009, 8992, 18, 'Communication (English)', 1, 'Poor', 18, '2022-06-16 11:56:58', 1),
(10010, 8992, 18, 'Communication (Tamil)', 4, 'Above Average', 18, '2022-06-16 11:56:58', 1),
(10011, 8992, 18, 'Convincing Skills', 3, 'Decent', 18, '2022-06-16 11:56:58', 1),
(10012, 8992, 18, 'Confidence Level', 4, 'Good', 18, '2022-06-16 11:56:58', 1),
(10013, 8992, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2022-06-16 11:56:58', 1),
(10014, 8992, 18, 'Importance Of Job', 4, 'Needed', 18, '2022-06-16 11:56:58', 1),
(10015, 8992, 18, 'Sales Experience', 3, 'Decent', 18, '2022-06-16 11:56:58', 1),
(10016, 9098, 39, 'Appearance', 4, 'Good in appearance ', 39, '2022-06-22 11:08:41', 1),
(10017, 9098, 39, 'Communication (English)', 3, 'Good', 39, '2022-06-22 11:08:41', 1),
(10018, 9098, 39, 'Confidence Level', 4, 'Confidence level is good', 39, '2022-06-22 11:08:41', 1),
(10019, 9098, 39, 'Importance Of Job', 5, 'Need of job', 39, '2022-06-22 11:08:41', 1),
(10020, 9098, 39, 'Sustainability', 4, 'Will sustain ', 39, '2022-06-22 11:08:41', 1),
(10021, 9098, 39, 'Willing To Work On Holidays', 4, 'She ready to work on holiday ', 39, '2022-06-22 11:08:41', 1),
(10022, 9094, 31, 'Appearance', 4, 'Neat', 31, '2022-06-26 12:04:53', 1),
(10023, 9094, 31, 'Communication (English)', 4, 'Good', 31, '2022-06-26 12:04:53', 1),
(10024, 9094, 31, 'Sales Experience', 4, 'Already work with health insurance as well life insurance as cross sell', 31, '2022-06-26 12:04:53', 1),
(10025, 9161, 39, 'Appearance', 3, 'good', 39, '2022-06-29 05:48:40', 1),
(10026, 9161, 39, 'Communication (English)', 4, 'good in communication', 39, '2022-06-29 05:48:40', 1),
(10027, 9161, 39, 'Convincing Skills', 3, 'good', 39, '2022-06-29 05:48:40', 1),
(10028, 9161, 39, 'Importance Of Job', 4, 'needed', 39, '2022-06-29 05:48:40', 1),
(10029, 9094, 29, 'Convincing Skills', 3, 'good', 29, '2022-06-30 11:48:28', 1),
(10030, 9094, 29, 'Sales Experience', 2, 'good', 29, '2022-06-30 11:48:28', 1),
(10031, 9117, 29, 'Communication (English)', 2, 'good', 29, '2022-06-30 11:50:17', 1),
(10032, 9117, 29, 'Confidence Level', 3, 'good', 29, '2022-06-30 11:50:17', 1),
(10033, 9117, 29, 'Sustainability', 2, 'can do well', 29, '2022-06-30 11:50:17', 1),
(10034, 9186, 44, 'Communication (Tamil)', 4, 'good in local language ', 44, '2022-07-01 02:57:42', 1),
(10035, 9186, 44, 'Sales Experience', 1, 'Donxquott have sales Experience', 44, '2022-07-01 02:57:42', 1),
(10036, 9186, 44, 'Willing To Work On Holidays', 3, 'ready to work on sundays', 44, '2022-07-01 02:57:42', 1),
(10037, 9202, 39, 'Appearance', 3, 'not bad', 39, '2022-07-02 10:46:02', 1),
(10038, 9202, 39, 'Communication (English)', 3, 'average', 39, '2022-07-02 10:46:02', 1),
(10039, 9202, 39, 'Confidence Level', 3, 'ok', 39, '2022-07-02 10:46:02', 1),
(10040, 9202, 39, 'Importance Of Job', 4, 'needed', 39, '2022-07-02 10:46:02', 1),
(10041, 9202, 39, 'Willing To Work On Holidays', 3, 'yes', 39, '2022-07-02 10:46:02', 1),
(10042, 9186, 29, 'Observation Skills', 2, 'good', 29, '2022-07-04 12:57:49', 1),
(10043, 9255, 39, 'Appearance', 3, 'good', 39, '2022-07-05 06:47:05', 1),
(10044, 9255, 39, 'Communication (English)', 3, 'good', 39, '2022-07-05 06:47:05', 1),
(10045, 9255, 39, 'Confidence Level', 3, 'good', 39, '2022-07-05 06:47:05', 1),
(10046, 9255, 39, 'Observation Skills', 3, 'good', 39, '2022-07-05 06:47:05', 1),
(10047, 9281, 39, 'Appearance', 3, 'good', 39, '2022-07-06 02:44:05', 1),
(10048, 9281, 39, 'Communication (English)', 3, 'average', 39, '2022-07-06 02:44:05', 1),
(10049, 9281, 39, 'Importance Of Job', 3, 'needed', 39, '2022-07-06 02:44:05', 1),
(10050, 9281, 39, 'Sustainability', 3, 'will sustain', 39, '2022-07-06 02:44:05', 1),
(10051, 9254, 18, 'Attitude', 3, 'Decent', 18, '2022-07-08 09:56:01', 1),
(10052, 9254, 18, 'Communication (English)', 4, 'Good', 18, '2022-07-08 09:56:01', 1),
(10053, 9254, 18, 'Communication (Tamil)', 3, 'Good', 18, '2022-07-08 09:56:01', 1),
(10054, 9254, 18, 'Convincing Skills', 4, 'Good', 18, '2022-07-08 09:56:01', 1),
(10055, 9254, 18, 'Confidence Level', 4, 'Good', 18, '2022-07-08 09:56:01', 1),
(10056, 9254, 18, 'Sustainability', 4, 'Need to filter in 1st week', 18, '2022-07-08 09:56:01', 1),
(10057, 9254, 18, 'Sales Experience', 3, 'Average', 18, '2022-07-08 09:56:01', 1),
(10058, 9346, 39, 'Appearance', 3, 'Ok', 39, '2022-07-12 04:16:48', 1),
(10059, 9346, 39, 'Communication (English)', 3, 'Good', 39, '2022-07-12 04:16:48', 1),
(10060, 9346, 39, 'Confidence Level', 3, 'Good', 39, '2022-07-12 04:16:48', 1),
(10061, 9346, 39, 'Observation Skills', 3, 'Good', 39, '2022-07-12 04:16:48', 1),
(10062, 9343, 39, 'Appearance', 2, 'Not bad', 39, '2022-07-12 04:18:01', 1),
(10063, 9343, 39, 'Communication (English)', 2, 'Below average ', 39, '2022-07-12 04:18:01', 1),
(10064, 9343, 39, 'Confidence Level', 2, 'Not that much ', 39, '2022-07-12 04:18:01', 1),
(10065, 9346, 30, 'Communication (English)', 2, 'need to cross check arun', 30, '2022-07-12 06:43:53', 1),
(10066, 9346, 30, 'Confidence Level', 3, 'will manage', 30, '2022-07-12 06:43:53', 1),
(10067, 9346, 30, 'Pressure Handling', 4, 'will sustain', 30, '2022-07-12 06:43:53', 1),
(10068, 9381, 30, 'Appearance', 3, 'good', 30, '2022-07-14 11:16:23', 1),
(10069, 9381, 30, 'Communication (English)', 3, 'skill its good', 30, '2022-07-14 11:16:23', 1),
(10070, 9381, 30, 'Importance Of Job', 4, 'need job importance ', 30, '2022-07-14 11:16:23', 1),
(10071, 9381, 30, 'Willing To Work On Holidays', 4, 'will work on sundays also', 30, '2022-07-14 11:16:23', 1),
(10072, 9420, 19, 'patience', 5, 'Patience', 19, '2022-07-16 02:53:30', 1),
(10073, 9413, 44, 'Communication (English)', 4, 'Communication is good', 44, '2022-07-16 06:42:41', 1),
(10074, 9413, 44, 'Existing Experience Analyze', 4, 'Having 4 years tele calling experience ', 44, '2022-07-16 06:42:41', 1),
(10075, 9511, 44, 'Communication (Tamil)', 4, 'Good communication skill', 44, '2022-07-22 03:10:33', 1),
(10076, 9511, 44, 'Sales Experience', 4, 'Having 3 + Years experience in blue chip', 44, '2022-07-22 03:10:33', 1),
(10077, 9511, 44, 'Willing To Work On Holidays', 4, 'He can work', 44, '2022-07-22 03:10:33', 1),
(10078, 9478, 29, 'Convincing Skills', 3, 'good', 29, '2022-07-22 03:30:19', 1),
(10079, 9478, 29, 'Sales Experience', 2, 'in health', 29, '2022-07-22 03:30:19', 1),
(10080, 9511, 29, 'Convincing Skills', 2, 'Good', 29, '2022-07-22 03:35:10', 1),
(10081, 9511, 29, 'Sustainability', 2, 'can do well for long term', 29, '2022-07-22 03:35:10', 1),
(10082, 9511, 29, 'Sales Experience', 3, 'similar', 29, '2022-07-22 03:35:10', 1),
(10083, 9503, 39, 'Appearance', 4, 'good', 39, '2022-07-22 04:11:56', 1),
(10084, 9503, 39, 'Communication (English)', 3, 'good in communication', 39, '2022-07-22 04:11:56', 1),
(10085, 9503, 39, 'Confidence Level', 3, 'good', 39, '2022-07-22 04:11:56', 1),
(10086, 9503, 39, 'Importance Of Job', 4, 'needed', 39, '2022-07-22 04:11:56', 1),
(10087, 9503, 30, 'Appearance', 3, 'good', 30, '2022-07-22 04:14:54', 1),
(10088, 9503, 30, 'Convincing Skills', 4, 'he will manage', 30, '2022-07-22 04:14:54', 1),
(10089, 9503, 30, 'Sales Experience', 3, 'Prevoiusly worked in sales', 30, '2022-07-22 04:14:54', 1),
(10090, 9414, 31, 'Communication (English)', 4, 'Good', 31, '2022-07-23 04:48:03', 1),
(10091, 9414, 31, 'Convincing Skills', 4, 'Good', 31, '2022-07-23 04:48:03', 1),
(10092, 9454, 29, 'Communication (English)', 3, 'good', 29, '2022-07-23 04:56:12', 1),
(10093, 9413, 29, 'Communication (English)', 3, 'good', 29, '2022-07-23 04:58:09', 1),
(10094, 9413, 29, 'Convincing Skills', 3, 'good', 29, '2022-07-23 04:58:09', 1),
(10095, 9414, 29, 'Convincing Skills', 3, 'good', 29, '2022-07-23 04:58:45', 1),
(10096, 9514, 18, 'Appearance', 4, 'Good', 18, '2022-07-27 03:27:13', 1),
(10097, 9514, 18, 'Communication (English)', 4, 'Good', 18, '2022-07-27 03:27:13', 1),
(10098, 9514, 18, 'Confidence Level', 4, 'Good', 18, '2022-07-27 03:27:13', 1),
(10099, 9514, 18, 'Sustainability', 2, 'Doubtful', 18, '2022-07-27 03:27:13', 1),
(10100, 9514, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2022-07-27 03:27:13', 1),
(10101, 9601, 30, 'Appearance', 3, 'good', 30, '2022-07-28 07:06:02', 1),
(10102, 9601, 30, 'Communication (English)', 4, 'multiple language skills', 30, '2022-07-28 07:06:02', 1),
(10103, 9601, 30, 'Importance Of Job', 3, 'fresher', 30, '2022-07-28 07:06:02', 1),
(10104, 9645, 18, 'Appearance', 4, 'Good', 18, '2022-08-01 06:15:38', 1),
(10105, 9645, 18, 'Sustainability', 1, 'Need to filter in 1st week', 18, '2022-08-01 06:15:38', 1),
(10106, 9685, 18, 'Appearance', 4, 'Good', 18, '2022-08-03 12:51:51', 1),
(10107, 9685, 18, 'Attitude', 4, 'Good', 18, '2022-08-03 12:51:51', 1),
(10108, 9685, 18, 'Communication (English)', 4, 'Good', 18, '2022-08-03 12:51:51', 1),
(10109, 9685, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-08-03 12:51:51', 1),
(10110, 9685, 18, 'Convincing Skills', 4, 'Good', 18, '2022-08-03 12:51:51', 1),
(10111, 9685, 18, 'Confidence Level', 4, 'Good', 18, '2022-08-03 12:51:51', 1),
(10112, 9685, 18, 'Importance Of Job', 4, 'Need', 18, '2022-08-03 12:51:51', 1),
(10113, 9685, 18, 'Observation Skills', 4, 'Good', 18, '2022-08-03 12:51:51', 1),
(10114, 9685, 18, 'Pressure Handling', 5, 'Good', 18, '2022-08-03 12:51:51', 1),
(10115, 9685, 18, 'patience', 4, 'Good', 18, '2022-08-03 12:51:51', 1),
(10116, 9685, 18, 'Sales Experience', 2, 'Below Average', 18, '2022-08-03 12:51:51', 1),
(10117, 9725, 44, 'Sales Experience', 1, 'Fresher', 44, '2022-08-09 09:35:33', 1),
(10118, 9725, 29, 'Communication (Tamil)', 3, 'good', 29, '2022-08-09 08:56:55', 1),
(10119, 9725, 29, 'Convincing Skills', 3, 'can do well, fresher need to train', 29, '2022-08-09 08:56:55', 1),
(10120, 9701, 18, 'Appearance', 3, 'Decent', 18, '2022-08-10 10:13:30', 1),
(10121, 9701, 18, 'Attitude', 4, 'Good', 18, '2022-08-10 10:13:30', 1),
(10122, 9701, 18, 'Communication (English)', 3, 'Decent', 18, '2022-08-10 10:13:30', 1),
(10123, 9701, 18, 'Sustainability', 4, 'Yes', 18, '2022-08-10 10:13:30', 1),
(10124, 9895, 31, 'Communication (English)', 4, 'also knows telugu, kannada a', 31, '2022-08-23 05:06:58', 1),
(10125, 9895, 31, 'Convincing Skills', 4, 'holding relevant experience with insurance product selling ', 31, '2022-08-23 05:06:58', 1),
(10126, 9874, 31, 'Sales Experience', 4, 'have relevant experience worked with IDFC in CASA ', 31, '2022-08-24 09:48:02', 1),
(10127, 9620, 31, 'Sustainability', 1, 'frequent job switch', 31, '2022-08-24 09:49:46', 1),
(10128, 9874, 29, 'Convincing Skills', 2, 'good', 29, '2022-08-25 12:14:45', 1),
(10129, 9874, 29, 'Sales Experience', 3, 'insurance background', 29, '2022-08-25 12:14:45', 1),
(10130, 8989, 18, 'Appearance', 3, 'Ok', 18, '2022-08-26 04:30:12', 1),
(10131, 8989, 18, 'Attitude', 3, 'Ok', 18, '2022-08-26 04:30:12', 1),
(10132, 8989, 18, 'Communication (English)', 3, 'Average', 18, '2022-08-26 04:30:12', 1),
(10133, 8989, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-08-26 04:30:12', 1),
(10134, 8989, 18, 'Convincing Skills', 3, 'Decent', 18, '2022-08-26 04:30:12', 1),
(10135, 8989, 18, 'Confidence Level', 4, 'Good', 18, '2022-08-26 04:30:12', 1),
(10136, 8989, 18, 'Importance Of Job', 4, 'Needed', 18, '2022-08-26 04:30:12', 1),
(10137, 8989, 18, 'Observation Skills', 3, 'Average', 18, '2022-08-26 04:30:12', 1),
(10138, 8989, 18, 'Pressure Handling', 4, 'Yes', 18, '2022-08-26 04:30:12', 1),
(10139, 8989, 18, 'patience', 4, 'Good', 18, '2022-08-26 04:30:12', 1),
(10140, 8989, 18, 'Sustainability', 4, 'Good', 18, '2022-08-26 04:30:12', 1),
(10141, 8989, 18, 'Sales Experience', 3, 'Below Average', 18, '2022-08-26 04:30:12', 1),
(10142, 9473, 44, 'Communication (Tamil)', 5, 'Good  in communication ', 44, '2022-09-06 10:55:54', 1),
(10143, 9473, 44, 'Sales Experience', 4, 'Have Retail Sales Experience', 44, '2022-09-06 10:55:54', 1),
(10144, 9473, 44, 'Willing To Work On Holidays', 3, 'ready to work on sunday', 44, '2022-09-06 10:55:54', 1),
(10145, 9473, 29, 'Observation Skills', 3, 'good', 29, '2022-09-07 10:37:30', 1),
(10146, 9473, 29, 'Sales Experience', 2, 'ok', 29, '2022-09-07 10:37:30', 1),
(10147, 10091, 18, 'Appearance', 3, 'Ok', 18, '2022-09-08 04:53:56', 1),
(10148, 10091, 18, 'Communication (English)', 1, 'Poor', 18, '2022-09-08 04:53:56', 1),
(10149, 10091, 18, 'Communication (Tamil)', 4, 'Ok', 18, '2022-09-08 04:53:56', 1),
(10150, 10091, 18, 'Importance Of Job', 4, 'Need', 18, '2022-09-08 04:53:56', 1),
(10151, 10091, 18, 'Pressure Handling', 2, 'Tuf', 18, '2022-09-08 04:53:56', 1),
(10152, 10091, 18, 'Sustainability', 3, 'Need to fileter in 1st week', 18, '2022-09-08 04:53:56', 1),
(10153, 10185, 31, 'Communication (Tamil)', 4, 'good', 31, '2022-09-13 05:36:26', 1),
(10154, 10185, 31, 'Sustainability', 4, 'worked 7 yrs with  vodafone as customer care executive', 31, '2022-09-13 05:36:26', 1),
(10155, 10194, 44, 'Communication (Tamil)', 4, 'Communication skill ok', 44, '2022-09-14 02:42:28', 1),
(10156, 10194, 44, 'Sales Experience', 3, 'Having 1 year tele calling experience ', 44, '2022-09-14 02:42:28', 1),
(10157, 10195, 29, 'Attitude', 3, 'good', 29, '2022-09-14 05:46:03', 1),
(10158, 10195, 29, 'Convincing Skills', 2, 'good', 29, '2022-09-14 05:46:03', 1),
(10159, 10196, 29, 'Attitude', 2, 'ok', 29, '2022-09-14 05:46:39', 1),
(10160, 10203, 29, 'Convincing Skills', 3, 'ok', 29, '2022-09-18 07:04:05', 1),
(10161, 10203, 29, 'Sales Experience', 2, 'other industry we can build', 29, '2022-09-18 07:04:05', 1),
(10162, 10207, 29, 'convincing Skills', 2, 'ok', 29, '2022-09-18 07:06:54', 1),
(10163, 10185, 29, 'Convincing Skills', 3, 'ok', 29, '2022-09-18 07:07:59', 1),
(10164, 10230, 31, 'Communication (English)', 4, 'Good', 31, '2022-09-19 10:36:15', 1),
(10165, 10230, 31, 'Sales Experience', 4, '8 months worked with HDFC Credit card sales', 31, '2022-09-19 10:36:15', 1),
(10166, 10230, 29, 'Convincing Skills', 2, 'ok', 29, '2022-09-19 04:33:25', 1),
(10167, 10230, 29, 'Sales Experience', 3, 'good', 29, '2022-09-19 04:33:25', 1),
(10168, 10217, 30, 'Appearance', 3, 'good', 30, '2022-09-19 04:35:35', 1),
(10169, 10217, 30, 'Communication (English)', 3, 'good', 30, '2022-09-19 04:35:35', 1),
(10170, 10217, 30, 'Importance Of Job', 4, 'For that particular reason she came bangalore and also family back ground she needs to support', 30, '2022-09-19 04:35:35', 1),
(10171, 10216, 30, 'Appearance', 3, 'good', 30, '2022-09-19 04:36:58', 1),
(10172, 10216, 30, 'Communication (English)', 3, 'Skill its good', 30, '2022-09-19 04:36:58', 1),
(10173, 10216, 30, 'Importance Of Job', 4, 'Job must needed', 30, '2022-09-19 04:36:58', 1),
(10174, 10341, 44, 'Communication (English)', 4, 'Communication ok', 44, '2022-09-26 07:21:23', 1),
(10175, 10341, 44, 'Sales Experience', 3, 'Having fmcg experience', 44, '2022-09-26 07:21:23', 1),
(10176, 10341, 44, 'Willing To Work On Holidays', 4, 'Ready to working on sunday', 44, '2022-09-26 07:21:23', 1),
(10177, 10333, 30, 'Appearance', 3, 'Good', 30, '2022-09-27 04:04:12', 1),
(10178, 10333, 30, 'Communication (English)', 4, 'Good', 30, '2022-09-27 04:04:12', 1),
(10179, 10333, 30, 'Observation Skills', 3, 'Good', 30, '2022-09-27 04:04:12', 1),
(10180, 10333, 30, 'Willing To Work On Holidays', 3, 'He will work on Sunday ', 30, '2022-09-27 04:04:12', 1),
(10181, 10332, 30, 'Communication (English)', 3, 'He will manage ', 30, '2022-09-27 04:30:41', 1),
(10182, 10332, 30, 'Importance Of Job', 3, 'He Needs to support family ', 30, '2022-09-27 04:30:41', 1),
(10183, 10332, 30, 'Sustainability', 3, 'He will sustain ', 30, '2022-09-27 04:30:41', 1),
(10184, 10298, 18, 'Appearance', 4, 'Good', 18, '2022-09-27 04:54:06', 1),
(10185, 10298, 18, 'Attitude', 3, 'Ok need to Strengthen', 18, '2022-09-27 04:54:06', 1),
(10186, 10298, 18, 'Communication (English)', 5, 'Good', 18, '2022-09-27 04:54:06', 1),
(10187, 10298, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-09-27 04:54:06', 1),
(10188, 10298, 18, 'Convincing Skills', 4, 'Good', 18, '2022-09-27 04:54:06', 1),
(10189, 10298, 18, 'Observation Skills', 3, 'Need to Improve', 18, '2022-09-27 04:54:06', 1),
(10190, 10298, 18, 'Pressure Handling', 4, 'Good', 18, '2022-09-27 04:54:06', 1),
(10191, 10298, 18, 'Sustainability', 4, 'Good', 18, '2022-09-27 04:54:06', 1),
(10192, 10298, 18, 'Sales Experience', 3, 'Average', 18, '2022-09-27 04:54:06', 1),
(10193, 10298, 18, 'Existing Experience Analyze', 5, 'Good', 18, '2022-09-27 04:54:06', 1),
(10194, 10298, 18, 'Practical Challenges Outcome', 5, 'Good', 18, '2022-09-27 04:54:06', 1),
(10195, 10298, 18, 'Willing To Work On Holidays', 4, 'Good', 18, '2022-09-27 04:54:06', 1),
(10196, 10394, 31, 'Communication (English)', 4, 'Good', 31, '2022-09-29 08:32:41', 1),
(10197, 10394, 31, 'Importance Of Job', 4, 'want to switch from NGO ', 31, '2022-09-29 08:32:41', 1),
(10198, 10397, 44, 'Communication (English)', 3, 'Communication skill ok', 44, '2022-09-30 04:33:33', 1),
(10199, 10397, 44, 'Sales Experience', 4, 'Having experience in real estate', 44, '2022-09-30 04:33:33', 1),
(10200, 10397, 29, 'Convincing Skills', 2, 'good', 29, '2022-09-30 05:47:44', 1),
(10201, 10397, 29, 'Sales Experience', 2, 'good', 29, '2022-09-30 05:47:44', 1),
(10202, 10358, 29, 'Convincing Skills', 2, 'good', 29, '2022-09-30 05:51:04', 1),
(10203, 10358, 29, 'Sales Experience', 2, 'good', 29, '2022-09-30 05:51:04', 1),
(10204, 10382, 18, 'Attitude', 5, 'Good', 18, '2022-10-01 05:12:31', 1),
(10205, 10382, 18, 'Communication (English)', 3, 'Ok', 18, '2022-10-01 05:12:31', 1),
(10206, 10382, 18, 'Communication (Tamil)', 5, 'Good', 18, '2022-10-01 05:12:31', 1),
(10207, 10382, 18, 'Importance Of Job', 5, 'High', 18, '2022-10-01 05:12:31', 1),
(10208, 10382, 18, 'Sales Experience', 4, 'Good', 18, '2022-10-01 05:12:31', 1),
(10209, 10431, 18, 'Appearance', 3, 'Ok', 18, '2022-10-06 02:55:44', 1),
(10210, 10431, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-10-06 02:55:44', 1),
(10211, 10431, 18, 'Sales Experience', 3, 'Average', 18, '2022-10-06 02:55:44', 1),
(10212, 10552, 31, 'Communication (English)', 4, 'Good', 31, '2022-10-11 02:51:39', 1),
(10213, 10552, 31, 'Convincing Skills', 4, 'Good', 31, '2022-10-11 02:51:39', 1),
(10214, 10574, 29, 'Attitude', 2, 'good', 29, '2022-10-12 02:48:35', 1),
(10215, 10574, 29, 'Convincing Skills', 3, 'better convincing', 29, '2022-10-12 02:48:35', 1),
(10216, 10611, 29, 'Communication (English)', 3, 'good', 29, '2022-10-18 10:52:12', 1),
(10217, 10611, 29, 'Convincing Skills', 2, 'Having skills, can perform ', 29, '2022-10-18 10:52:12', 1),
(10218, 10611, 29, 'Sales Experience', 2, 'has related exp, can train and try for long term', 29, '2022-10-18 10:52:12', 1),
(10219, 10621, 29, 'Convincing Skills', 3, 'good', 29, '2022-10-26 03:17:35', 1),
(10220, 10621, 29, 'Sales Experience', 3, 'Has sales experience with different industry, can do well', 29, '2022-10-26 03:17:35', 1),
(10221, 10736, 18, 'Appearance', 4, 'Good', 18, '2022-11-01 06:32:24', 1),
(10222, 10736, 18, 'Communication (English)', 3, 'Decent', 18, '2022-11-01 06:32:24', 1),
(10223, 10736, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-11-01 06:32:24', 1),
(10224, 10736, 18, 'Convincing Skills', 3, 'Decent', 18, '2022-11-01 06:32:24', 1),
(10225, 10736, 18, 'Importance Of Job', 3, 'Need', 18, '2022-11-01 06:32:24', 1),
(10226, 10736, 18, 'Sustainability', 3, 'Need to fiter in 1st week', 18, '2022-11-01 06:32:24', 1),
(10227, 10754, 29, 'Importance Of Job', 3, 'ok', 29, '2022-11-02 05:45:32', 1),
(10228, 10754, 29, 'Sales Experience', 2, 'life exp ', 29, '2022-11-02 05:45:32', 1),
(10229, 9340, 31, 'Communication (Tamil)', 4, 'Good', 31, '2022-11-03 03:30:13', 1),
(10230, 9340, 31, 'Willing To Work On Holidays', 4, 'Staying alone and ready to work in holidays also', 31, '2022-11-03 03:30:13', 1),
(10231, 10733, 29, 'Communication (English)', 2, 'ok', 29, '2022-11-03 06:50:14', 1),
(10232, 10733, 29, 'Sales Experience', 3, 'has Relevant experience can improve', 29, '2022-11-03 06:50:14', 1),
(10233, 10827, 31, 'Communication (English)', 4, 'good', 31, '2022-11-04 09:07:18', 1),
(10234, 10827, 31, 'Importance Of Job', 4, 'Recently married and highly switch to chennai from salem', 31, '2022-11-04 09:07:18', 1),
(10235, 10735, 31, 'Communication (English)', 4, 'good', 31, '2022-11-04 09:13:22', 1),
(10236, 10735, 31, 'Convincing Skills', 4, 'can able to convince investment plans', 31, '2022-11-04 09:13:22', 1),
(10237, 10827, 29, 'Convincing Skills', 2, 'ok', 29, '2022-11-05 11:55:45', 1),
(10238, 10827, 29, 'Sales Experience', 2, 'has Relevant experience, can do well ', 29, '2022-11-05 11:55:45', 1),
(10239, 10630, 18, 'Appearance', 3, 'Ok', 18, '2022-11-08 03:06:56', 1),
(10240, 10630, 18, 'Communication (English)', 3, 'Fair', 18, '2022-11-08 03:06:56', 1),
(10241, 10630, 18, 'Communication (Tamil)', 3, 'Ok', 18, '2022-11-08 03:06:56', 1),
(10242, 10630, 18, 'Importance Of Job', 3, 'Needed', 18, '2022-11-08 03:06:56', 1),
(10243, 10630, 18, 'Sustainability', 2, 'Doubtful. Need to check in 1st week', 18, '2022-11-08 03:06:56', 1),
(10244, 10968, 42, 'Appearance', 4, 'Good ', 42, '2022-11-14 06:27:57', 1),
(10245, 10968, 42, 'Attitude', 3, 'Good ', 42, '2022-11-14 06:27:57', 1),
(10246, 10968, 42, 'Communication (English)', 4, 'Good', 42, '2022-11-14 06:27:57', 1),
(10247, 10968, 30, 'Appearance', 3, 'GOOD', 30, '2022-11-15 10:43:55', 1),
(10248, 10968, 30, 'Communication (English)', 3, 'SKILL GOOD', 30, '2022-11-15 10:43:55', 1),
(10249, 10968, 30, 'Sustainability', 3, 'FAMILY BACKGROUND JOB NEED IMPORTANCE', 30, '2022-11-15 10:43:55', 1),
(10250, 10922, 18, 'Appearance', 3, 'Good', 18, '2022-11-17 09:55:27', 1),
(10251, 10922, 18, 'Attitude', 3, 'Good', 18, '2022-11-17 09:55:27', 1),
(10252, 10922, 18, 'Communication (English)', 4, 'Decent', 18, '2022-11-17 09:55:27', 1),
(10253, 10922, 18, 'Communication (Tamil)', 4, 'Good', 18, '2022-11-17 09:55:27', 1),
(10254, 11100, 29, 'Convincing Skills', 3, 'good', 29, '2022-11-17 05:27:27', 1),
(10255, 11107, 42, 'Appearance', 4, 'Good', 42, '2022-11-22 03:39:09', 1),
(10256, 11107, 42, 'Attitude', 4, 'Good', 42, '2022-11-22 03:39:09', 1),
(10257, 11107, 42, 'Communication (English)', 4, 'Good', 42, '2022-11-22 03:39:09', 1),
(10258, 11107, 42, 'Communication (Tamil)', 4, 'Good', 42, '2022-11-22 03:39:09', 1),
(10259, 11107, 42, 'Convincing Skills', 4, 'Good', 42, '2022-11-22 03:39:09', 1),
(10260, 11107, 30, 'Appearance', 3, 'Good ', 30, '2022-11-22 03:44:15', 1),
(10261, 11107, 30, 'Communication (English)', 3, 'Good ', 30, '2022-11-22 03:44:15', 1),
(10262, 11107, 30, 'Sales Experience', 3, 'Credit card sales ', 30, '2022-11-22 03:44:15', 1),
(10263, 11303, 31, 'Sales Experience', 4, 'Already worked with the same profile in vizza broking', 31, '2022-12-02 04:01:55', 1),
(10264, 11274, 30, 'Appearance', 3, 'Good', 30, '2022-12-03 04:25:27', 1),
(10265, 11274, 30, 'Communication (English)', 3, 'Good', 30, '2022-12-03 04:25:27', 1),
(10266, 11274, 30, 'Existing Experience Analyze', 4, 'Cold calling experience ', 30, '2022-12-03 04:25:27', 1),
(10267, 11303, 29, 'Convincing Skills', 3, 'good', 29, '2022-12-03 09:11:59', 1),
(10268, 11303, 29, 'Sales Experience', 3, 'health Insurance exp, can do well in life', 29, '2022-12-03 09:11:59', 1),
(10269, 11475, 18, 'Convincing Skills', 3, 'Average', 18, '2022-12-22 11:19:50', 1),
(10270, 11475, 18, 'Importance Of Job', 4, 'High', 18, '2022-12-22 11:19:50', 1),
(10271, 11475, 18, 'patience', 3, 'Ok', 18, '2022-12-22 11:19:50', 1),
(10272, 11475, 18, 'Sustainability', 1, 'Need to filter in 1st week', 18, '2022-12-22 11:19:50', 1),
(10273, 11632, 29, 'Convincing Skills', 2, 'good', 29, '2023-01-04 10:20:03', 1),
(10274, 11632, 29, 'Sales Experience', 2, 'not Relevant however we can train', 29, '2023-01-04 10:20:03', 1),
(10275, 11600, 18, 'Attitude', 4, 'good', 18, '2023-01-06 10:59:37', 1),
(10276, 11600, 18, 'Communication (English)', 3, 'Good', 18, '2023-01-06 10:59:37', 1),
(10277, 11600, 18, 'Communication (Tamil)', 4, 'Good', 18, '2023-01-06 10:59:37', 1),
(10278, 11600, 18, 'Importance Of Job', 4, 'Needed', 18, '2023-01-06 10:59:37', 1),
(10279, 11675, 29, 'Communication (English)', 2, 'good', 29, '2023-01-09 06:11:24', 1),
(10280, 11675, 29, 'Convincing Skills', 2, 'Good', 29, '2023-01-09 06:11:24', 1),
(10281, 11675, 29, 'Sales Experience', 3, 'worked with insurance can train further', 29, '2023-01-09 06:11:24', 1),
(10282, 11715, 29, 'Convincing Skills', 3, 'good', 29, '2023-01-09 06:13:26', 1),
(10283, 11715, 29, 'Sustainability', 2, 'has worked for 4 years in broking', 29, '2023-01-09 06:13:26', 1),
(10284, 11712, 57, 'Sales Experience', 1, 'he Have one year sales experience bajaj finz same health insurance', 57, '2023-01-16 01:06:36', 1),
(10285, 11830, 29, 'Communication (English)', 2, 'good', 29, '2023-01-31 03:44:06', 1),
(10286, 11830, 29, 'Convincing Skills', 3, 'good at convincing', 29, '2023-01-31 03:44:06', 1),
(10287, 10229, 29, 'Convincing Skills', 3, 'good', 29, '2023-01-31 04:40:20', 1),
(10288, 11899, 29, 'Convincing Skills', 3, 'good', 29, '2023-02-11 12:01:48', 1),
(10289, 11960, 31, 'Appearance', 4, 'Neat', 31, '2023-02-25 07:01:20', 1),
(10290, 11960, 31, 'Communication (English)', 3, 'Can able to making and managing calls', 31, '2023-02-25 07:01:20', 1),
(10291, 11960, 31, 'Importance Of Job', 4, 'he is the only person working in his family', 31, '2023-02-25 07:01:20', 1),
(10292, 11960, 29, 'Communication (English)', 2, 'good', 29, '2023-02-27 06:15:15', 1),
(10293, 11960, 29, 'Convincing Skills', 2, 'good', 29, '2023-02-27 06:15:15', 1),
(10294, 11960, 29, 'Sales Experience', 2, 'other industry can Improvise  ', 29, '2023-02-27 06:15:15', 1),
(10295, 11993, 29, 'Communication (English)', 3, 'good', 29, '2023-03-02 07:05:11', 1),
(10296, 11993, 29, 'Convincing Skills', 3, 'good', 29, '2023-03-02 07:05:11', 1),
(10297, 11993, 29, 'Observation Skills', 3, 'good', 29, '2023-03-02 07:05:11', 1),
(10298, 11983, 29, 'Communication (English)', 3, 'ok', 29, '2023-03-09 06:51:34', 1),
(10299, 11983, 29, 'Convincing Skills', 3, 'good', 29, '2023-03-09 06:51:34', 1),
(10300, 11978, 18, 'Appearance', 3, 'Good', 18, '2023-03-13 06:54:28', 1),
(10301, 11978, 18, 'Communication (English)', 2, 'Average', 18, '2023-03-13 06:54:28', 1),
(10302, 11978, 18, 'Communication (Tamil)', 4, 'Good', 18, '2023-03-13 06:54:28', 1),
(10303, 12043, 31, 'Communication (English)', 4, 'Good', 31, '2023-03-16 06:28:27', 1),
(10304, 12043, 31, 'Sales Experience', 3, 'Worked with Shriram life insurance with inbound call sales.', 31, '2023-03-16 06:28:27', 1),
(10305, 12043, 29, 'Convincing Skills', 2, 'good', 29, '2023-03-20 11:41:52', 1),
(10306, 12341, 31, 'Convincing Skills', 4, 'good', 31, '2023-04-11 05:53:31', 1),
(10307, 12341, 31, 'Sales Experience', 4, 'Already worked with educare industry like Byjus as well rajalakshmi educare', 31, '2023-04-11 05:53:31', 1),
(10308, 12341, 29, 'Communication (English)', 2, 'good', 29, '2023-04-13 12:01:03', 1),
(10309, 12341, 29, 'Convincing Skills', 2, 'good', 29, '2023-04-13 12:01:03', 1),
(10310, 12341, 29, 'Sales Experience', 3, 'worked in biju for 8-10 months in door to door sales, we can mold for our bizs', 29, '2023-04-13 12:01:03', 1),
(10311, 12357, 31, 'Sales Experience', 4, 'having experience in field sales as well lead generation in go bumper and phonepe', 31, '2023-04-15 06:05:54', 1),
(10312, 12388, 31, 'Sustainability', 4, 'worked nearly 6 yrs with QC depart in the same company.  last year moved to sales in real estate field, due to extentive travel he want to switch', 31, '2023-04-15 06:09:13', 1),
(10313, 12388, 29, 'Convincing Skills', 2, 'ok', 29, '2023-04-15 06:13:17', 1),
(10314, 12388, 29, 'Sales Experience', 3, 'ok', 29, '2023-04-15 06:13:17', 1),
(10315, 12357, 29, 'Convincing Skills', 2, 'good', 29, '2023-04-15 06:39:24', 1),
(10316, 12357, 29, 'Observation Skills', 3, 'good', 29, '2023-04-15 06:39:24', 1),
(10317, 12357, 29, 'Existing Experience Analyze', 3, 'need to check in 7 day for confirmation', 29, '2023-04-15 06:39:24', 1),
(10318, 12432, 42, 'Appearance', 5, 'Good', 42, '2023-04-19 12:20:19', 1),
(10319, 12432, 42, 'Attitude', 5, 'Good', 42, '2023-04-19 12:20:19', 1),
(10320, 12432, 42, 'Communication (English)', 4, 'Good', 42, '2023-04-19 12:20:19', 1),
(10321, 12432, 42, 'Convincing Skills', 4, 'Good', 42, '2023-04-19 12:20:19', 1),
(10322, 12432, 42, 'Confidence Level', 5, 'Good', 42, '2023-04-19 12:20:19', 1),
(10323, 12432, 42, 'Importance Of Job', 5, 'Good', 42, '2023-04-19 12:20:19', 1),
(10324, 12432, 42, 'Observation Skills', 5, 'Good', 42, '2023-04-19 12:20:19', 1),
(10325, 12432, 42, 'Pressure Handling', 5, 'Good', 42, '2023-04-19 12:20:19', 1),
(10326, 12432, 42, 'patience', 5, 'Good', 42, '2023-04-19 12:20:19', 1),
(10327, 12432, 42, 'Sustainability', 5, 'Good', 42, '2023-04-19 12:20:19', 1),
(10328, 12432, 42, 'Sales Experience', 4, 'Good', 42, '2023-04-19 12:20:19', 1),
(10329, 12432, 42, 'Existing Experience Analyze', 4, 'Good', 42, '2023-04-19 12:20:19', 1),
(10330, 12432, 42, 'Practical Challenges Outcome', 5, 'Good', 42, '2023-04-19 12:20:19', 1),
(10331, 12432, 42, 'Willing To Work On Holidays', 5, 'Good', 42, '2023-04-19 12:20:19', 1),
(10332, 12438, 42, 'Appearance', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10333, 12438, 42, 'Attitude', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10334, 12438, 42, 'Communication (English)', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10335, 12438, 42, 'Communication (Tamil)', 1, 'Good', 42, '2023-04-19 12:22:39', 1),
(10336, 12438, 42, 'Convincing Skills', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10337, 12438, 42, 'Confidence Level', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10338, 12438, 42, 'Importance Of Job', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10339, 12438, 42, 'Observation Skills', 4, 'Good', 42, '2023-04-19 12:22:39', 1),
(10340, 12438, 42, 'Pressure Handling', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10341, 12438, 42, 'patience', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10342, 12438, 42, 'Sustainability', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10343, 12438, 42, 'Sales Experience', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10344, 12438, 42, 'Existing Experience Analyze', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10345, 12438, 42, 'Practical Challenges Outcome', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10346, 12438, 42, 'Willing To Work On Holidays', 5, 'Good', 42, '2023-04-19 12:22:39', 1),
(10347, 12432, 30, 'Appearance', 3, 'Good', 30, '2023-04-19 12:29:17', 1),
(10348, 12432, 30, 'Communication (English)', 4, 'Good', 30, '2023-04-19 12:29:17', 1),
(10349, 12432, 30, 'Pressure Handling', 3, 'Experiences in inside of sales', 30, '2023-04-19 12:29:17', 1),
(10350, 12432, 30, 'Willing To Work On Holidays', 3, 'Will work', 30, '2023-04-19 12:29:17', 1),
(10351, 12438, 30, 'Appearance', 4, 'Good', 30, '2023-04-19 12:32:10', 1),
(10352, 12438, 30, 'Communication (English)', 4, 'Good', 30, '2023-04-19 12:32:10', 1),
(10353, 12438, 30, 'Confidence Level', 4, 'Good', 30, '2023-04-19 12:32:10', 1),
(10354, 12431, 42, 'Appearance', 5, 'Good ', 42, '2023-04-19 02:50:15', 1),
(10355, 12431, 42, 'Attitude', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10356, 12431, 42, 'Communication (English)', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10357, 12431, 42, 'Communication (Tamil)', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10358, 12431, 42, 'Convincing Skills', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10359, 12431, 42, 'Confidence Level', 5, 'Good', 42, '2023-04-19 02:50:15', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(10360, 12431, 42, 'Importance Of Job', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10361, 12431, 42, 'Observation Skills', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10362, 12431, 42, 'Pressure Handling', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10363, 12431, 42, 'patience', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10364, 12431, 42, 'Sustainability', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10365, 12431, 42, 'Sales Experience', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10366, 12431, 42, 'Existing Experience Analyze', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10367, 12431, 42, 'Practical Challenges Outcome', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10368, 12431, 42, 'Willing To Work On Holidays', 5, 'Good', 42, '2023-04-19 02:50:15', 1),
(10369, 12431, 30, 'Appearance', 3, 'Good', 30, '2023-04-21 10:37:13', 1),
(10370, 12431, 30, 'Communication (English)', 4, 'Good communication skills ', 30, '2023-04-21 10:37:13', 1),
(10371, 12431, 30, 'Convincing Skills', 4, 'Sales experience ', 30, '2023-04-21 10:37:13', 1),
(10372, 12358, 29, 'Convincing Skills', 3, 'gOOD', 29, '2023-04-21 05:19:56', 1),
(10373, 12358, 29, 'Observation Skills', 2, 'OK', 29, '2023-04-21 05:19:56', 1),
(10374, 12390, 29, 'Convincing Skills', 2, 'Fresher, need to focus on training', 29, '2023-04-21 05:26:32', 1),
(10375, 12390, 29, 'Sales Experience', 1, 'No sales exp', 29, '2023-04-21 05:26:32', 1),
(10376, 12544, 31, 'Appearance', 4, 'Neat', 31, '2023-05-01 11:35:39', 1),
(10377, 12544, 31, 'Sales Experience', 3, 'Candidate have experience in credit card sales as well CASA ', 31, '2023-05-01 11:35:39', 1),
(10378, 12572, 24, 'Communication (Tamil)', 1, 'she does not speak anything', 24, '2023-05-02 10:06:22', 1),
(10379, 12544, 29, 'Convincing Skills', 2, 'Good', 29, '2023-05-03 11:12:14', 1),
(10380, 12642, 29, 'Convincing Skills', 3, 'good', 29, '2023-05-09 07:02:50', 1),
(10381, 12642, 29, 'Sales Experience', 2, 'we can Mold and train', 29, '2023-05-09 07:02:50', 1),
(10382, 12693, 31, 'Importance Of Job', 4, 'Highly need in job.  and he has some quite experience in sales', 31, '2023-05-09 07:26:29', 1),
(10383, 12688, 31, 'Pressure Handling', 2, 'quit the former job due to pressure', 31, '2023-05-09 07:28:00', 1),
(10384, 12693, 29, 'Convincing Skills', 3, 'Good', 29, '2023-05-09 08:08:17', 1),
(10385, 12693, 29, 'Sustainability', 2, 'Need to check during training period for long term and getting adapted to life and mf', 29, '2023-05-09 08:08:17', 1),
(10386, 12768, 42, 'Appearance', 4, 'Good ', 42, '2023-05-13 02:23:03', 1),
(10387, 12768, 42, 'Attitude', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10388, 12768, 42, 'Communication (English)', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10389, 12768, 42, 'Communication (Tamil)', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10390, 12768, 42, 'Convincing Skills', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10391, 12768, 42, 'Confidence Level', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10392, 12768, 42, 'Importance Of Job', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10393, 12768, 42, 'Observation Skills', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10394, 12768, 42, 'Pressure Handling', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10395, 12768, 42, 'patience', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10396, 12768, 42, 'Sustainability', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10397, 12768, 42, 'Sales Experience', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10398, 12768, 42, 'Existing Experience Analyze', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10399, 12768, 42, 'Practical Challenges Outcome', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10400, 12768, 42, 'Willing To Work On Holidays', 4, 'Good', 42, '2023-05-13 02:23:03', 1),
(10401, 12771, 42, 'Appearance', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10402, 12771, 42, 'Attitude', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10403, 12771, 42, 'Communication (English)', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10404, 12771, 42, 'Communication (Tamil)', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10405, 12771, 42, 'Convincing Skills', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10406, 12771, 42, 'Confidence Level', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10407, 12771, 42, 'Importance Of Job', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10408, 12771, 42, 'Observation Skills', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10409, 12771, 42, 'Pressure Handling', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10410, 12771, 42, 'patience', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10411, 12771, 42, 'Sustainability', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10412, 12771, 42, 'Sales Experience', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10413, 12771, 42, 'Existing Experience Analyze', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10414, 12771, 42, 'Practical Challenges Outcome', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10415, 12771, 42, 'Willing To Work On Holidays', 4, 'Good', 42, '2023-05-13 02:24:27', 1),
(10416, 12768, 30, 'Appearance', 3, 'GOOD', 30, '2023-05-13 05:41:08', 1),
(10417, 12768, 30, 'Communication (English)', 4, 'GOOD COMMUNICATION SKILL', 30, '2023-05-13 05:41:08', 1),
(10418, 12768, 30, 'Importance Of Job', 4, 'NEED TO TAKE CARE OF HIS FAMILY', 30, '2023-05-13 05:41:08', 1),
(10419, 12768, 30, 'Sales Experience', 3, 'BPO EXPERIENCE', 30, '2023-05-13 05:41:08', 1),
(10420, 12771, 30, 'Appearance', 3, 'GOOD', 30, '2023-05-13 05:42:29', 1),
(10421, 12771, 30, 'Communication (English)', 4, 'GOOD', 30, '2023-05-13 05:42:29', 1),
(10422, 12771, 30, 'Sustainability', 4, 'WILL SUSTAIN', 30, '2023-05-13 05:42:29', 1),
(10423, 12771, 30, 'Existing Experience Analyze', 3, 'BPO EXPERIENCE', 30, '2023-05-13 05:42:29', 1),
(10424, 12810, 42, 'Appearance', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10425, 12810, 42, 'Attitude', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10426, 12810, 42, 'Communication (English)', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10427, 12810, 42, 'Communication (Tamil)', 1, 'Good', 42, '2023-05-16 03:36:31', 1),
(10428, 12810, 42, 'Convincing Skills', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10429, 12810, 42, 'Confidence Level', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10430, 12810, 42, 'Importance Of Job', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10431, 12810, 42, 'Observation Skills', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10432, 12810, 42, 'Pressure Handling', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10433, 12810, 42, 'patience', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10434, 12810, 42, 'Sustainability', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10435, 12810, 42, 'Sales Experience', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10436, 12810, 42, 'Existing Experience Analyze', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10437, 12810, 42, 'Practical Challenges Outcome', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10438, 12810, 42, 'Willing To Work On Holidays', 5, 'Good', 42, '2023-05-16 03:36:31', 1),
(10439, 12815, 42, 'Appearance', 4, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10440, 12815, 42, 'Attitude', 4, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10441, 12815, 42, 'Communication (English)', 2, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10442, 12815, 42, 'Communication (Tamil)', 4, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10443, 12815, 42, 'Convincing Skills', 2, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10444, 12815, 42, 'Existing Experience Analyze', 2, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10445, 12815, 42, 'Importance Of Job', 4, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10446, 12815, 42, 'Observation Skills', 2, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10447, 12815, 42, 'Pressure Handling', 2, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10448, 12815, 42, 'Practical Challenges Outcome', 2, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10449, 12815, 42, 'Sustainability', 2, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10450, 12815, 42, 'Sales Experience', 2, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10451, 12815, 42, 'Willing To Work On Holidays', 3, 'Ok', 42, '2023-05-16 03:38:45', 1),
(10452, 12816, 42, 'Appearance', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10453, 12816, 42, 'Attitude', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10454, 12816, 42, 'Communication (English)', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10455, 12816, 42, 'Communication (Tamil)', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10456, 12816, 42, 'Convincing Skills', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10457, 12816, 42, 'Confidence Level', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10458, 12816, 42, 'Existing Experience Analyze', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10459, 12816, 42, 'Importance Of Job', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10460, 12816, 42, 'Observation Skills', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10461, 12816, 42, 'patience', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10462, 12816, 42, 'Pressure Handling', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10463, 12816, 42, 'Practical Challenges Outcome', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10464, 12816, 42, 'Sustainability', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10465, 12816, 42, 'Sales Experience', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10466, 12816, 42, 'Willing To Work On Holidays', 4, 'Ok', 42, '2023-05-16 03:40:49', 1),
(10467, 12817, 42, 'Appearance', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10468, 12817, 42, 'Attitude', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10469, 12817, 42, 'Communication (English)', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10470, 12817, 42, 'Communication (Tamil)', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10471, 12817, 42, 'Convincing Skills', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10472, 12817, 42, 'Confidence Level', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10473, 12817, 42, 'Existing Experience Analyze', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10474, 12817, 42, 'Importance Of Job', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10475, 12817, 42, 'Observation Skills', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10476, 12817, 42, 'patience', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10477, 12817, 42, 'Pressure Handling', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10478, 12817, 42, 'Practical Challenges Outcome', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10479, 12817, 42, 'Sustainability', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10480, 12817, 42, 'Sales Experience', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10481, 12817, 42, 'Willing To Work On Holidays', 4, 'Ok', 42, '2023-05-16 03:42:13', 1),
(10482, 12810, 30, 'Appearance', 4, 'good', 30, '2023-05-16 03:49:44', 1),
(10483, 12810, 30, 'Communication (English)', 5, 'Profesional', 30, '2023-05-16 03:49:44', 1),
(10484, 12810, 30, 'Sales Experience', 4, 'Have previous sales experience ', 30, '2023-05-16 03:49:44', 1),
(10485, 12810, 30, 'Existing Experience Analyze', 4, 'good', 30, '2023-05-16 03:49:44', 1),
(10486, 12816, 30, 'Appearance', 3, 'good', 30, '2023-05-16 03:52:14', 1),
(10487, 12816, 30, 'Communication (English)', 4, 'professional', 30, '2023-05-16 03:52:14', 1),
(10488, 12816, 30, 'Convincing Skills', 4, 'good', 30, '2023-05-16 03:52:14', 1),
(10489, 12816, 30, 'Sales Experience', 4, 'not  in  on-field  experience inside sales experience', 30, '2023-05-16 03:52:14', 1),
(10490, 12817, 30, 'Appearance', 4, 'good', 30, '2023-05-16 03:53:43', 1),
(10491, 12817, 30, 'Communication (English)', 4, 'professional', 30, '2023-05-16 03:53:43', 1),
(10492, 12817, 30, 'Convincing Skills', 4, 'good on that part', 30, '2023-05-16 03:53:43', 1),
(10493, 12817, 30, 'Pressure Handling', 4, 'will sustain', 30, '2023-05-16 03:53:43', 1),
(10494, 12787, 18, 'Appearance', 3, 'Ok', 18, '2023-05-17 01:54:52', 1),
(10495, 12787, 18, 'Communication (English)', 3, 'Above average', 18, '2023-05-17 01:54:52', 1),
(10496, 12787, 18, 'Communication (Tamil)', 4, 'Good', 18, '2023-05-17 01:54:52', 1),
(10497, 12787, 18, 'Sustainability', 4, 'Yes', 18, '2023-05-17 01:54:52', 1),
(10498, 12787, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2023-05-17 01:54:52', 1),
(10499, 12821, 42, 'Appearance', 5, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10500, 12821, 42, 'Attitude', 5, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10501, 12821, 42, 'Communication (English)', 2, 'Not much', 42, '2023-05-18 01:01:11', 1),
(10502, 12821, 42, 'Communication (Tamil)', 1, 'No', 42, '2023-05-18 01:01:11', 1),
(10503, 12821, 42, 'Convincing Skills', 2, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10504, 12821, 42, 'Confidence Level', 3, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10505, 12821, 42, 'Existing Experience Analyze', 5, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10506, 12821, 42, 'Importance Of Job', 5, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10507, 12821, 42, 'Observation Skills', 4, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10508, 12821, 42, 'patience', 4, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10509, 12821, 42, 'Pressure Handling', 2, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10510, 12821, 42, 'Practical Challenges Outcome', 2, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10511, 12821, 42, 'Sustainability', 2, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10512, 12821, 42, 'Sales Experience', 1, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10513, 12821, 42, 'Willing To Work On Holidays', 3, 'Ok', 42, '2023-05-18 01:01:11', 1),
(10514, 12822, 42, 'Appearance', 2, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10515, 12822, 42, 'Attitude', 1, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10516, 12822, 42, 'Communication (English)', 3, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10517, 12822, 42, 'Communication (Tamil)', 4, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10518, 12822, 42, 'Convincing Skills', 1, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10519, 12822, 42, 'Confidence Level', 3, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10520, 12822, 42, 'Importance Of Job', 3, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10521, 12822, 42, 'Observation Skills', 3, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10522, 12822, 42, 'Pressure Handling', 3, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10523, 12822, 42, 'patience', 3, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10524, 12822, 42, 'Sustainability', 3, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10525, 12822, 42, 'Sales Experience', 3, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10526, 12822, 42, 'Existing Experience Analyze', 3, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10527, 12822, 42, 'Practical Challenges Outcome', 3, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10528, 12822, 42, 'Willing To Work On Holidays', 3, 'Ok', 42, '2023-05-18 01:03:19', 1),
(10529, 12823, 29, 'Communication (English)', 2, 'ok ', 29, '2023-05-19 09:53:32', 1),
(10530, 12823, 29, 'Observation Skills', 2, 'good', 29, '2023-05-19 09:53:32', 1),
(10531, 12852, 29, 'Convincing Skills', 3, 'good', 29, '2023-05-23 08:08:25', 1),
(10532, 12852, 29, 'Sales Experience', 3, 'already worked in CRM team, has experience', 29, '2023-05-23 08:08:25', 1),
(10533, 12856, 29, 'Communication (English)', 3, 'good', 29, '2023-05-23 08:10:38', 1),
(10534, 12856, 29, 'Convincing Skills', 2, 'we can train and check in 7 days for sustainability ', 29, '2023-05-23 08:10:38', 1),
(10535, 12941, 19, 'Appearance', 4, 'GOOD', 19, '2023-05-31 05:00:34', 1),
(10536, 12941, 19, 'patience', 4, 'gOOD', 19, '2023-05-31 05:00:34', 1),
(10537, 9763, 19, 'Sustainability', 1, 'NO', 19, '2023-05-31 05:07:40', 1),
(10538, 12729, 19, 'Sustainability', 1, 'NOT', 19, '2023-05-31 05:08:06', 1),
(10539, 12789, 19, 'Sustainability', 1, 'NO', 19, '2023-05-31 05:08:39', 1),
(10540, 12797, 19, 'Sustainability', 1, 'NO', 19, '2023-05-31 05:09:05', 1),
(10541, 12782, 44, 'Communication (English)', 4, 'Good communication', 44, '2023-05-31 06:38:07', 1),
(10542, 12782, 44, 'Sales Experience', 4, 'Having experience in b2b sales', 44, '2023-05-31 06:38:07', 1),
(10543, 12782, 44, 'Willing To Work On Holidays', 4, 'He will work ', 44, '2023-05-31 06:38:07', 1),
(10544, 12858, 19, 'Appearance', 4, 'Good', 19, '2023-06-02 01:18:24', 1),
(10545, 12858, 19, 'Communication (English)', 4, 'Good', 19, '2023-06-02 01:18:24', 1),
(10546, 12858, 19, 'Confidence Level', 5, 'Good', 19, '2023-06-02 01:18:24', 1),
(10547, 12999, 19, 'Importance Of Job', 5, 'Job Needed', 19, '2023-06-02 01:19:05', 1),
(10548, 13043, 19, 'Convincing Skills', 4, 'Good', 19, '2023-06-05 07:21:36', 1),
(10549, 13131, 29, 'Convincing Skills', 2, 'good', 29, '2023-06-08 10:08:33', 1),
(10550, 13131, 29, 'Sales Experience', 2, 'exp in life, can train and check', 29, '2023-06-08 10:08:33', 1),
(10551, 13120, 19, 'Willing To Work On Holidays', 1, 'nOT FIT FOR SALES', 19, '2023-06-09 12:02:14', 1),
(10552, 13014, 30, 'Appearance', 3, 'Good', 30, '2023-06-12 10:34:41', 1),
(10553, 13014, 30, 'Communication (English)', 4, 'Good ', 30, '2023-06-12 10:34:41', 1),
(10554, 13014, 30, 'Sales Experience', 4, 'Trading ', 30, '2023-06-12 10:34:41', 1),
(10555, 13168, 19, 'Appearance', 4, 'GOOD', 19, '2023-06-13 10:14:47', 1),
(10556, 13168, 19, 'Confidence Level', 4, 'GOOD', 19, '2023-06-13 10:14:47', 1),
(10557, 13206, 19, 'Appearance', 4, 'GOOD', 19, '2023-06-13 10:15:36', 1),
(10558, 13206, 19, 'Importance Of Job', 4, 'NEEDED', 19, '2023-06-13 10:15:36', 1),
(10559, 13146, 19, 'Sustainability', 1, 'BAD', 19, '2023-06-13 10:16:49', 1),
(10560, 13163, 29, 'Communication (English)', 2, 'ok', 29, '2023-06-15 10:36:47', 1),
(10561, 13163, 29, 'Convincing Skills', 2, 'good', 29, '2023-06-15 10:36:47', 1),
(10562, 13163, 29, 'Sales Experience', 3, 'worked for bijus for lead collection at malls and stalls, can mold for investment and insurance sales,', 29, '2023-06-15 10:36:47', 1),
(10563, 13165, 29, 'Communication (English)', 3, 'good', 29, '2023-06-15 10:40:58', 1),
(10564, 13165, 29, 'Convincing Skills', 2, 'good', 29, '2023-06-15 10:40:58', 1),
(10565, 13165, 29, 'Sales Experience', 3, 'worked as telecaller, skill and communication wise better can check in training period for long term asset', 29, '2023-06-15 10:40:58', 1),
(10566, 13219, 44, 'Communication (Tamil)', 5, 'good in local language ', 44, '2023-06-15 10:56:16', 1),
(10567, 13219, 44, 'Convincing Skills', 4, 'Good in convincing skill', 44, '2023-06-15 10:56:16', 1),
(10568, 13219, 44, 'Sales Experience', 4, 'Having retail sales experience', 44, '2023-06-15 10:56:16', 1),
(10569, 13153, 19, 'Importance Of Job', 4, 'Job Needed', 19, '2023-06-15 04:12:05', 1),
(10570, 13219, 29, 'Communication (English)', 2, 'good', 29, '2023-06-19 11:08:39', 1),
(10571, 13219, 29, 'Convincing Skills', 2, 'good', 29, '2023-06-19 11:08:39', 1),
(10572, 13285, 19, 'Convincing Skills', 1, 'Bad', 19, '2023-06-20 07:04:47', 1),
(10573, 13296, 29, 'Communication (English)', 2, 'ok', 29, '2023-06-21 10:05:56', 1),
(10574, 13296, 29, 'Convincing Skills', 2, 'doing well, we can try to mold for financial sales', 29, '2023-06-21 10:05:56', 1),
(10575, 13407, 30, 'Appearance', 3, 'Good', 30, '2023-06-27 12:30:40', 1),
(10576, 13407, 30, 'Communication (English)', 4, 'Good ', 30, '2023-06-27 12:30:40', 1),
(10577, 13407, 30, 'Confidence Level', 4, 'Good ', 30, '2023-06-27 12:30:40', 1),
(10578, 13521, 19, 'Appearance', 1, 'Not Good Looking', 19, '2023-07-04 07:27:30', 1),
(10579, 13520, 19, 'Sales Experience', 4, 'Already having Sales Exp', 19, '2023-07-04 07:28:12', 1),
(10580, 13518, 18, 'Appearance', 3, 'Good', 18, '2023-07-06 10:11:44', 1),
(10581, 13518, 18, 'Attitude', 4, 'Good', 18, '2023-07-06 10:11:44', 1),
(10582, 13518, 18, 'Communication (English)', 3, 'Above average', 18, '2023-07-06 10:11:44', 1),
(10583, 13518, 18, 'Communication (Tamil)', 4, 'Good', 18, '2023-07-06 10:11:44', 1),
(10584, 13518, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2023-07-06 10:11:44', 1),
(10585, 13518, 18, 'Sustainability', 3, 'Yes', 18, '2023-07-06 10:11:44', 1),
(10586, 13561, 19, 'Confidence Level', 1, 'Not Good', 19, '2023-07-08 04:45:28', 1),
(10587, 13059, 19, 'Confidence Level', 1, 'NOT GOOD', 19, '2023-07-08 04:46:15', 1),
(10588, 13544, 19, 'Sustainability', 4, 'GOOD', 19, '2023-07-08 04:47:44', 1),
(10589, 13551, 19, 'Sustainability', 1, 'NOT FIT', 19, '2023-07-08 04:49:26', 1),
(10590, 13534, 19, 'Sustainability', 4, 'SELECTED', 19, '2023-07-08 04:53:00', 1),
(10591, 13559, 29, 'Convincing Skills', 3, 'good', 29, '2023-07-10 10:08:02', 1),
(10592, 13559, 29, 'Sales Experience', 3, 'worked as tele caller for lead conversion, looking for growth and income, can train and check ', 29, '2023-07-10 10:08:02', 1),
(10593, 13560, 29, 'Attitude', 3, 'good', 29, '2023-07-10 10:10:19', 1),
(10594, 13560, 29, 'Communication (English)', 3, 'does well with language', 29, '2023-07-10 10:10:19', 1),
(10595, 13560, 29, 'Convincing Skills', 3, 'worked as tele caller we can train and build', 29, '2023-07-10 10:10:19', 1),
(10596, 13584, 19, 'Confidence Level', 4, 'Good', 19, '2023-07-12 10:17:37', 1),
(10597, 13597, 19, 'Importance Of Job', 4, 'Job Needed Person', 19, '2023-07-12 06:04:10', 1),
(10598, 13596, 19, 'Convincing Skills', 1, 'NOT FIT FOR SALES', 19, '2023-07-12 06:04:44', 1),
(10599, 13627, 19, 'Importance Of Job', 4, 'Job Need Person', 19, '2023-07-14 10:05:19', 1),
(10600, 13628, 19, 'Importance Of Job', 4, 'Positive Mind job need person', 19, '2023-07-14 11:01:15', 1),
(10601, 13550, 30, 'Appearance', 3, 'Good', 30, '2023-07-17 08:21:42', 1),
(10602, 13550, 30, 'Communication (English)', 3, 'Good ', 30, '2023-07-17 08:21:42', 1),
(10603, 13550, 30, 'Sustainability', 3, 'Yes', 30, '2023-07-17 08:21:42', 1),
(10604, 13550, 30, 'Willing To Work On Holidays', 3, 'Yes', 30, '2023-07-17 08:21:42', 1),
(10605, 13535, 19, 'Importance Of Job', 1, 'Not fit For sales', 19, '2023-07-18 02:48:53', 1),
(10606, 13598, 19, 'Convincing Skills', 1, 'Low', 19, '2023-07-18 02:49:28', 1),
(10607, 13601, 19, 'Sustainability', 1, 'Not Fit for Sales', 19, '2023-07-18 02:50:11', 1),
(10608, 13622, 19, 'Importance Of Job', 1, 'Not Fit', 19, '2023-07-18 02:50:50', 1),
(10609, 13623, 19, 'Importance Of Job', 1, 'Not Fit', 19, '2023-07-18 02:51:24', 1),
(10610, 13651, 19, 'Importance Of Job', 1, 'Not Fit', 19, '2023-07-18 02:51:59', 1),
(10611, 13653, 19, 'Importance Of Job', 1, 'Long Distance ', 19, '2023-07-18 02:52:38', 1),
(10612, 13676, 29, 'Communication (English)', 2, 'good', 29, '2023-07-20 10:05:53', 1),
(10613, 13676, 29, 'Convincing Skills', 3, 'can train and develop', 29, '2023-07-20 10:05:53', 1),
(10614, 13676, 29, 'Sales Experience', 2, 'worked in credit card and pl sales, can train for life and mf', 29, '2023-07-20 10:05:53', 1),
(10615, 13680, 19, 'Importance Of Job', 1, 'Not Fit', 19, '2023-07-21 06:37:07', 1),
(10616, 13678, 19, 'Confidence Level', 4, 'Good', 19, '2023-07-21 06:38:23', 1),
(10617, 13678, 19, 'Importance Of Job', 4, 'Needed Person', 19, '2023-07-21 06:38:23', 1),
(10618, 13670, 19, 'Convincing Skills', 4, 'Good', 19, '2023-07-21 06:39:02', 1),
(10619, 13708, 19, 'Convincing Skills', 1, 'Not Fit for sales', 19, '2023-07-25 03:45:15', 1),
(10620, 13749, 31, 'Appearance', 4, 'Neat ', 31, '2023-07-31 10:02:37', 1),
(10621, 13749, 31, 'Convincing Skills', 4, 'Good', 31, '2023-07-31 10:02:37', 1),
(10622, 13877, 31, 'Appearance', 4, 'Neat', 31, '2023-07-31 10:03:46', 1),
(10623, 13877, 31, 'Communication (English)', 4, 'Good', 31, '2023-07-31 10:03:46', 1),
(10624, 13877, 29, 'Communication (English)', 2, 'good', 29, '2023-07-31 04:52:58', 1),
(10625, 13877, 29, 'Sales Experience', 2, 'good', 29, '2023-07-31 04:52:58', 1),
(10626, 13749, 29, 'Sales Experience', 2, 'walk in sales', 29, '2023-07-31 04:54:51', 1),
(10627, 13754, 19, 'Observation Skills', 1, 'Not Fit ', 19, '2023-08-01 05:37:15', 1),
(10628, 13757, 19, 'Sustainability', 1, 'Not Fit for Sales', 19, '2023-08-01 05:39:00', 1),
(10629, 13765, 19, 'Confidence Level', 1, 'Not fir for sales', 19, '2023-08-01 05:39:35', 1),
(10630, 13790, 19, 'Importance Of Job', 1, 'Low Profile', 19, '2023-08-01 05:40:18', 1),
(10631, 13800, 19, 'Confidence Level', 1, 'not fit for sales', 19, '2023-08-01 05:40:57', 1),
(10632, 14018, 29, 'Convincing Skills', 2, 'good', 29, '2023-08-09 10:24:11', 1),
(10633, 14018, 29, 'Observation Skills', 2, 'good', 29, '2023-08-09 10:24:11', 1),
(10634, 13932, 19, 'Importance Of Job', 1, 'No Need foor Job', 19, '2023-08-09 03:59:20', 1),
(10635, 13970, 19, 'Importance Of Job', 1, 'Not Selected', 19, '2023-08-09 03:59:46', 1),
(10636, 13971, 19, 'Sustainability', 1, 'Not fit', 19, '2023-08-09 04:00:52', 1),
(10637, 13982, 19, 'Importance Of Job', 1, 'nt need for job', 19, '2023-08-09 04:02:48', 1),
(10638, 14004, 19, 'Sustainability', 1, 'Doubt', 19, '2023-08-09 04:04:04', 1),
(10639, 14085, 44, 'Communication (Tamil)', 5, 'Good in Local language ', 44, '2023-08-16 10:23:44', 1),
(10640, 14085, 44, 'Sales Experience', 4, 'Having experience in other industry', 44, '2023-08-16 10:23:44', 1),
(10641, 14085, 44, 'Willing To Work On Holidays', 4, 'He ready to work ', 44, '2023-08-16 10:23:44', 1),
(10642, 13987, 31, 'Sales Experience', 4, 'Having experience in real estate sales ', 31, '2023-08-16 10:26:32', 1),
(10643, 13987, 31, 'Willing To Work On Holidays', 4, 'ready to work on holidays', 31, '2023-08-16 10:26:32', 1),
(10644, 14200, 19, 'Confidence Level', 5, 'Job Needed Person', 19, '2023-08-22 01:09:38', 1),
(10645, 14171, 19, 'Sustainability', 1, 'Not Fit for sales', 19, '2023-08-22 01:11:51', 1),
(10646, 14204, 29, 'Communication (English)', 3, 'ok', 29, '2023-08-23 05:20:40', 1),
(10647, 14204, 29, 'Convincing Skills', 3, 'can mold and improve', 29, '2023-08-23 05:20:40', 1),
(10648, 14217, 29, 'Convincing Skills', 3, 'ok', 29, '2023-08-23 05:21:30', 1),
(10649, 14221, 19, 'Importance Of Job', 4, 'Job Needed person', 19, '2023-08-26 05:58:15', 1),
(10650, 14225, 19, 'Convincing Skills', 1, 'Low', 19, '2023-08-26 05:58:59', 1),
(10651, 14304, 19, 'Convincing Skills', 1, 'Low', 19, '2023-08-30 10:51:58', 1),
(10652, 14306, 19, 'Confidence Level', 4, 'Good', 19, '2023-08-30 10:52:53', 1),
(10653, 14320, 30, 'Appearance', 3, 'Good', 30, '2023-08-31 06:45:08', 1),
(10654, 14320, 30, 'Convincing Skills', 3, 'Good ', 30, '2023-08-31 06:45:08', 1),
(10655, 14320, 30, 'Sustainability', 3, 'Job important ', 30, '2023-08-31 06:45:08', 1),
(10656, 14320, 30, 'Willing To Work On Holidays', 4, 'He will work ', 30, '2023-08-31 06:45:08', 1),
(10657, 14361, 19, 'Confidence Level', 5, 'Good', 19, '2023-09-09 03:42:40', 1),
(10658, 14376, 31, 'Communication (English)', 4, 'good', 31, '2023-09-09 06:46:08', 1),
(10659, 14376, 31, 'Convincing Skills', 4, 'Okay.  has experience in credit card sales', 31, '2023-09-09 06:46:08', 1),
(10660, 14376, 29, 'Communication (English)', 2, 'good', 29, '2023-09-14 11:18:52', 1),
(10661, 14376, 29, 'Convincing Skills', 2, 'can improve and check', 29, '2023-09-14 11:18:52', 1),
(10662, 14415, 19, 'Importance Of Job', 4, 'job Needed Person', 19, '2023-09-15 07:14:39', 1),
(10663, 14342, 19, 'Importance Of Job', 1, 'Not Selected', 19, '2023-09-15 07:15:09', 1),
(10664, 14423, 19, 'Importance Of Job', 1, 'Reject', 19, '2023-09-15 07:15:36', 1),
(10665, 14447, 29, 'Communication (English)', 4, 'good', 29, '2023-09-19 10:23:47', 1),
(10666, 14447, 29, 'Convincing Skills', 2, 'can train and improve', 29, '2023-09-19 10:23:47', 1),
(10667, 14502, 44, 'Communication (Tamil)', 5, 'Good in local Language ', 44, '2023-09-25 03:30:45', 1),
(10668, 14502, 44, 'Sales Experience', 4, 'Having experience in other domain', 44, '2023-09-25 03:30:45', 1),
(10669, 14502, 44, 'Willing To Work On Holidays', 4, 'He can work', 44, '2023-09-25 03:30:45', 1),
(10670, 14672, 18, 'Appearance', 4, 'Good', 18, '2023-10-10 10:23:29', 1),
(10671, 14672, 18, 'Attitude', 4, 'Good', 18, '2023-10-10 10:23:29', 1),
(10672, 14672, 18, 'Communication (English)', 3, 'Decent', 18, '2023-10-10 10:23:29', 1),
(10673, 14672, 18, 'Communication (Tamil)', 4, 'Good', 18, '2023-10-10 10:23:29', 1),
(10674, 14672, 18, 'Importance Of Job', 5, 'Needed as sole bread winner', 18, '2023-10-10 10:23:29', 1),
(10675, 14672, 18, 'Sustainability', 4, 'Yes', 18, '2023-10-10 10:23:29', 1),
(10676, 14678, 44, 'Communication (English)', 3, 'He can manage', 44, '2023-10-12 10:01:27', 1),
(10677, 14678, 44, 'Communication (Tamil)', 4, 'Good in Local Language  ', 44, '2023-10-12 10:01:27', 1),
(10678, 14678, 44, 'Sales Experience', 3, 'Having experience in C C sales', 44, '2023-10-12 10:01:27', 1),
(10679, 14678, 44, 'Willing To Work On Holidays', 4, 'He ready to work', 44, '2023-10-12 10:01:27', 1),
(10680, 14121, 19, 'Importance Of Job', 5, 'Job Needed Person', 19, '2023-10-13 10:10:05', 1),
(10681, 14844, 31, 'Appearance', 4, 'good', 31, '2023-10-25 07:02:20', 1),
(10682, 14844, 31, 'Confidence Level', 4, 'Good', 31, '2023-10-25 07:02:20', 1),
(10683, 14844, 29, 'Communication (English)', 2, 'good', 29, '2023-10-26 10:24:19', 1),
(10684, 14844, 29, 'Convincing Skills', 3, 'have sales skill and good at convincing', 29, '2023-10-26 10:24:19', 1),
(10685, 15160, 19, 'Confidence Level', 4, 'I hope they have a confidence', 19, '2023-11-11 05:28:53', 1),
(10686, 15160, 19, 'Importance Of Job', 4, 'Job needed person', 19, '2023-11-11 05:28:53', 1),
(10687, 14394, 30, 'Appearance', 3, 'Good', 30, '2023-11-14 09:49:57', 1),
(10688, 14394, 30, 'Communication (English)', 4, 'Good', 30, '2023-11-14 09:49:57', 1),
(10689, 14394, 30, 'Confidence Level', 3, 'Giod', 30, '2023-11-14 09:49:57', 1),
(10690, 14394, 30, 'Sales Experience', 3, 'Cold calling experience ', 30, '2023-11-14 09:49:57', 1),
(10691, 15181, 44, 'Communication (English)', 4, 'Good in Communication ', 44, '2023-11-14 05:43:17', 1),
(10692, 15181, 44, 'Sales Experience', 3, 'Having experience in other industry ', 44, '2023-11-14 05:43:17', 1),
(10693, 15205, 18, 'Appearance', 4, 'Good', 18, '2023-11-16 05:34:42', 1),
(10694, 15205, 18, 'Communication (English)', 4, 'Good', 18, '2023-11-16 05:34:42', 1),
(10695, 15205, 18, 'Sales Experience', 3, 'Decent', 18, '2023-11-16 05:34:42', 1),
(10696, 15222, 19, 'Existing Experience Analyze', 4, 'Already Working in HDFC', 19, '2023-11-17 01:09:30', 1),
(10697, 14741, 19, 'Observation Skills', 1, 'Not fit for sales', 19, '2023-11-17 01:11:02', 1),
(10698, 15243, 19, 'Importance Of Job', 4, 'Fresher - try 7 days after that only we have to confirm ', 19, '2023-11-17 01:14:41', 1),
(10699, 14510, 19, 'Convincing Skills', 1, 'She even not try to convince', 19, '2023-11-17 01:16:09', 1),
(10700, 15250, 30, 'Appearance', 3, 'Good ', 30, '2023-11-17 06:03:18', 1),
(10701, 15250, 30, 'Communication (English)', 4, 'Good ', 30, '2023-11-17 06:03:18', 1),
(10702, 15250, 30, 'Existing Experience Analyze', 3, 'Good ', 30, '2023-11-17 06:03:18', 1),
(10703, 15251, 30, 'Communication (English)', 4, 'Good ', 30, '2023-11-17 06:05:06', 1),
(10704, 15251, 30, 'Convincing Skills', 3, 'Good ', 30, '2023-11-17 06:05:06', 1),
(10705, 15251, 30, 'Pressure Handling', 3, 'Sustain ', 30, '2023-11-17 06:05:06', 1),
(10706, 15257, 30, 'Communication (English)', 4, 'Hood', 30, '2023-11-17 06:06:56', 1),
(10707, 15257, 30, 'Existing Experience Analyze', 3, 'Experience salexquots ', 30, '2023-11-17 06:06:56', 1),
(10708, 15257, 30, 'Willing To Work On Holidays', 3, 'Will work ', 30, '2023-11-17 06:06:56', 1),
(10709, 15214, 29, 'Communication (English)', 3, 'good', 29, '2023-11-20 10:00:16', 1),
(10710, 15214, 29, 'Convincing Skills', 2, 'good', 29, '2023-11-20 10:00:16', 1),
(10711, 15181, 29, 'Convincing Skills', 2, 'good', 29, '2023-11-20 10:12:23', 1),
(10712, 15272, 19, 'Importance Of Job', 4, 'Job needed Person', 19, '2023-11-20 08:01:21', 1),
(10713, 15280, 30, 'Appearance', 3, 'GOOD', 30, '2023-11-27 11:38:23', 1),
(10714, 15280, 30, 'Communication (English)', 3, 'GOOD', 30, '2023-11-27 11:38:23', 1),
(10715, 15280, 30, 'Sales Experience', 4, 'ITS THERE', 30, '2023-11-27 11:38:23', 1),
(10716, 15330, 29, 'Communication (English)', 3, 'good', 29, '2023-11-28 10:29:10', 1),
(10717, 15330, 29, 'Convincing Skills', 2, 'can improve, need to train', 29, '2023-11-28 10:29:10', 1),
(10718, 15385, 19, 'Confidence Level', 4, 'Fit for Sales and Out Side Call', 19, '2023-12-12 04:09:02', 1),
(10719, 15596, 18, 'Appearance', 3, 'Good', 18, '2023-12-12 07:25:07', 1),
(10720, 15596, 18, 'Attitude', 4, 'Good', 18, '2023-12-12 07:25:07', 1),
(10721, 15596, 18, 'Communication (Tamil)', 4, 'Good', 18, '2023-12-12 07:25:07', 1),
(10722, 15596, 18, 'Convincing Skills', 4, 'Good', 18, '2023-12-12 07:25:07', 1),
(10723, 15596, 18, 'Sales Experience', 3, 'Ok', 18, '2023-12-12 07:25:07', 1),
(10724, 15551, 30, 'Appearance', 3, 'good', 30, '2023-12-13 12:19:52', 1),
(10725, 15551, 30, 'Communication (English)', 4, 'good', 30, '2023-12-13 12:19:52', 1),
(10726, 15551, 30, 'Communication (Tamil)', 3, 'ok', 30, '2023-12-13 12:19:52', 1),
(10727, 15551, 30, 'Sales Experience', 4, 'calling experience', 30, '2023-12-13 12:19:52', 1),
(10728, 15575, 30, 'Appearance', 3, 'good', 30, '2023-12-13 12:22:46', 1),
(10729, 15575, 30, 'Communication (English)', 3, 'good', 30, '2023-12-13 12:22:46', 1),
(10730, 15575, 30, 'Importance Of Job', 3, 'first job', 30, '2023-12-13 12:22:46', 1),
(10731, 15587, 30, 'Appearance', 3, 'good', 30, '2023-12-13 12:23:48', 1),
(10732, 15587, 30, 'Communication (English)', 4, 'good', 30, '2023-12-13 12:23:48', 1),
(10733, 15587, 30, 'Sales Experience', 3, 'calling experience', 30, '2023-12-13 12:23:48', 1),
(10734, 15594, 30, 'Communication (English)', 3, 'good', 30, '2023-12-13 12:28:10', 1),
(10735, 15594, 30, 'Importance Of Job', 4, 'mandatory need of job', 30, '2023-12-13 12:28:10', 1),
(10736, 15605, 30, 'Appearance', 4, 'good', 30, '2023-12-13 12:30:18', 1),
(10737, 15605, 30, 'Communication (English)', 4, 'good', 30, '2023-12-13 12:30:18', 1),
(10738, 15605, 30, 'Convincing Skills', 4, 'good', 30, '2023-12-13 12:30:18', 1),
(10739, 15605, 30, 'Sales Experience', 4, 'experience health sales care insurance', 30, '2023-12-13 12:30:18', 1),
(10740, 15606, 30, 'Appearance', 2, 'good', 30, '2023-12-13 12:31:08', 1),
(10741, 15606, 30, 'Communication (English)', 4, 'good', 30, '2023-12-13 12:31:08', 1),
(10742, 15606, 30, 'Sales Experience', 3, 'experience in sales', 30, '2023-12-13 12:31:08', 1),
(10743, 15663, 19, 'Importance Of Job', 4, 'Job needed person', 19, '2023-12-16 06:24:01', 1),
(10744, 15742, 19, 'Importance Of Job', 4, 'Job needed Person', 19, '2023-12-18 06:43:08', 1),
(10745, 15983, 19, 'Sales Experience', 4, 'She is already having 2.5 years Experiance in MArketing i hope she had a good comunication skills and she need job so i want to try 7 days traing period', 19, '2023-12-29 11:14:29', 1),
(10746, 16033, 44, 'Communication (Tamil)', 5, 'Good in local language ', 44, '2024-01-08 10:05:11', 1),
(10747, 16033, 44, 'Sales Experience', 4, 'Having experience in credit card sales', 44, '2024-01-08 10:05:11', 1),
(10748, 16033, 44, 'Willing To Work On Holidays', 4, 'Ready to work', 44, '2024-01-08 10:05:11', 1),
(10749, 16102, 19, 'Existing Experience Analyze', 4, 'He has exp in tele calling  and good speaking skill but i have small doubt about him last Company salary 19k in hand now he ok with 18k so i will confirm after 7 days only', 19, '2024-01-09 04:12:09', 1),
(10750, 16136, 31, 'Communication (English)', 4, 'Okay', 31, '2024-01-11 04:32:12', 1),
(10751, 16136, 31, 'Sales Experience', 4, '1 year work experience with Just dial.  ', 31, '2024-01-11 04:32:12', 1),
(10752, 16077, 30, 'Appearance', 3, 'good', 30, '2024-01-12 10:22:13', 1),
(10753, 16077, 30, 'Communication (English)', 4, 'good', 30, '2024-01-12 10:22:13', 1),
(10754, 16077, 30, 'Confidence Level', 4, 'good', 30, '2024-01-12 10:22:13', 1),
(10755, 16077, 30, 'Existing Experience Analyze', 5, 'core experience', 30, '2024-01-12 10:22:13', 1),
(10756, 16297, 19, 'Importance Of Job', 4, 'She need job due to his family situation and she speak clearly about the job and insurance also so I think she suits for the job and her need is 16k salary per month I think she fit for the job and also the salary ', 19, '2024-01-23 10:35:24', 1),
(10757, 16313, 19, 'Attitude', 4, 'Fresher only Job needed person and also he Has a lessoning skill and patience too', 19, '2024-01-23 10:37:01', 1),
(10758, 16338, 19, 'Attitude', 1, 'Not Fit for Job', 19, '2024-01-25 05:50:05', 1),
(10759, 16343, 19, 'patience', 1, 'No Patience', 19, '2024-01-25 05:50:46', 1),
(10760, 16342, 44, 'Communication (Tamil)', 4, 'Good in local language ', 44, '2024-01-25 05:51:16', 1),
(10761, 16342, 44, 'Sales Experience', 2, 'Having other sales experience', 44, '2024-01-25 05:51:16', 1),
(10762, 16342, 44, 'Willing To Work On Holidays', 4, 'ready to work', 44, '2024-01-25 05:51:16', 1),
(10763, 16074, 31, 'Sustainability', 3, 'in 3 yrs worked 2 companies in 2 different industries', 31, '2024-01-29 10:32:10', 1),
(10764, 16074, 31, 'Sales Experience', 3, 'No direct sales experience', 31, '2024-01-29 10:32:10', 1),
(10765, 16315, 19, 'Existing Experience Analyze', 4, 'She had Exp in Sales Field and also she speaks well,job needed Person', 19, '2024-01-29 10:32:28', 1),
(10766, 16247, 31, 'Communication (English)', 5, 'Good command in english', 31, '2024-01-29 10:36:59', 1),
(10767, 16247, 31, 'Importance Of Job', 2, 'hope he is well settled', 31, '2024-01-29 10:36:59', 1),
(10768, 16247, 31, 'Sales Experience', 1, 'candidate having retails experience with domestic and international.  Dont have calling or direct sales experience', 31, '2024-01-29 10:36:59', 1),
(10769, 15813, 31, 'Communication (English)', 4, 'good', 31, '2024-01-29 10:41:19', 1),
(10770, 15813, 31, 'Sales Experience', 1, 'No proper sales experience and she expecting some kind of inbound calls. ', 31, '2024-01-29 10:41:19', 1),
(10771, 16437, 31, 'Communication (English)', 4, 'Good', 31, '2024-02-01 04:46:50', 1),
(10772, 16437, 31, 'Sales Experience', 4, 'worked with credit card sales as well jewel loan companies', 31, '2024-02-01 04:46:50', 1),
(10773, 16327, 31, 'Appearance', 4, 'Neat', 31, '2024-02-01 06:40:27', 1),
(10774, 16327, 31, 'Communication (Tamil)', 4, 'Good', 31, '2024-02-01 06:40:27', 1),
(10775, 16454, 31, 'Appearance', 4, 'Neat', 31, '2024-02-01 06:42:24', 1),
(10776, 16454, 31, 'Communication (English)', 4, '\ngood', 31, '2024-02-01 06:42:24', 1),
(10777, 16425, 19, 'Importance Of Job', 4, 'Selected', 19, '2024-02-01 06:59:15', 1),
(10778, 13591, 19, 'Attitude', 1, 'Not fit', 19, '2024-02-01 06:59:58', 1),
(10779, 14561, 19, 'Willing To Work On Holidays', 1, 'no', 19, '2024-02-01 07:00:24', 1),
(10780, 14613, 19, 'Sustainability', 2, 'not fit ', 19, '2024-02-01 07:01:00', 1),
(10781, 16437, 29, 'Attitude', 2, 'good', 29, '2024-02-01 07:09:46', 1),
(10782, 16437, 29, 'Communication (English)', 3, 'Can manage with english', 29, '2024-02-01 07:09:46', 1),
(10783, 16437, 29, 'Convincing Skills', 3, 'Can train in our field and improvise.', 29, '2024-02-01 07:09:46', 1),
(10784, 16454, 29, 'Communication (English)', 2, 'ok', 29, '2024-02-01 07:10:46', 1),
(10785, 16454, 29, 'Convincing Skills', 3, 'ok, need to check for short term,', 29, '2024-02-01 07:10:46', 1),
(10786, 16327, 29, 'Importance Of Job', 2, 'have to check in training period', 29, '2024-02-01 07:13:52', 1),
(10787, 16327, 29, 'Sales Experience', 2, 'other sales exp', 29, '2024-02-01 07:13:52', 1),
(10788, 16455, 19, 'Importance Of Job', 4, 'Selected', 19, '2024-02-03 05:28:09', 1),
(10789, 14647, 19, 'Observation Skills', 1, 'not fit', 19, '2024-02-03 05:28:42', 1),
(10790, 15144, 19, 'Importance Of Job', 1, 'no involvement', 19, '2024-02-03 05:29:23', 1),
(10791, 15161, 19, 'Appearance', 1, 'not fit for sales', 19, '2024-02-03 05:29:55', 1),
(10792, 16427, 19, 'Attitude', 1, 'Reject', 19, '2024-02-03 05:30:39', 1),
(10793, 16372, 19, 'Appearance', 1, 'not fit', 19, '2024-02-03 05:31:13', 1),
(10794, 15311, 19, 'Pressure Handling', 1, 'i hope he is not fit', 19, '2024-02-03 05:33:48', 1),
(10795, 15642, 19, 'Convincing Skills', 1, 'not fit', 19, '2024-02-03 05:34:45', 1),
(10796, 15662, 19, 'Appearance', 1, 'Reject', 19, '2024-02-03 05:58:49', 1),
(10797, 16356, 19, 'Confidence Level', 1, 'Rejected', 19, '2024-02-03 05:59:40', 1),
(10798, 16093, 19, 'Attitude', 1, 'Rejected', 19, '2024-02-03 06:00:03', 1),
(10799, 15750, 19, 'Importance Of Job', 1, 'not fit', 19, '2024-02-03 06:00:26', 1),
(10800, 15749, 19, 'Attitude', 1, 'Reject', 19, '2024-02-03 06:00:50', 1),
(10801, 15723, 19, 'Appearance', 1, 'Rejected', 19, '2024-02-03 06:01:16', 1),
(10802, 9910, 18, 'Appearance', 4, 'Decent', 18, '2024-02-05 01:16:09', 1),
(10803, 9910, 18, 'Communication (English)', 4, 'Good', 18, '2024-02-05 01:16:09', 1),
(10804, 9910, 18, 'Communication (Tamil)', 4, 'Good', 18, '2024-02-05 01:16:09', 1),
(10805, 9910, 18, 'Convincing Skills', 4, 'Good', 18, '2024-02-05 01:16:09', 1),
(10806, 9910, 18, 'Confidence Level', 4, 'Good', 18, '2024-02-05 01:16:09', 1),
(10807, 9910, 18, 'Sustainability', 4, 'Good', 18, '2024-02-05 01:16:09', 1),
(10808, 16483, 18, 'Communication (English)', 4, 'Good', 18, '2024-02-05 01:19:01', 1),
(10809, 16483, 18, 'Importance Of Job', 4, 'Need', 18, '2024-02-05 01:19:01', 1),
(10810, 16483, 18, 'Observation Skills', 4, 'Good', 18, '2024-02-05 01:19:01', 1),
(10811, 16483, 18, 'Sustainability', 4, 'Good', 18, '2024-02-05 01:19:01', 1),
(10812, 16389, 29, 'Communication (English)', 2, 'good', 29, '2024-02-08 10:09:43', 1),
(10813, 16389, 29, 'Sales Experience', 3, 'has sales skill, can be trained and uplifted ', 29, '2024-02-08 10:09:43', 1),
(10814, 16773, 19, 'Existing Experience Analyze', 4, 'Selected', 19, '2024-02-09 02:04:43', 1),
(10815, 16515, 19, 'Appearance', 4, 'Selected', 19, '2024-02-09 02:05:43', 1),
(10816, 16536, 19, 'Convincing Skills', 1, 'not fit for sales', 19, '2024-02-09 02:06:11', 1),
(10817, 16729, 31, 'Communication (English)', 4, 'Good', 31, '2024-02-12 04:35:35', 1),
(10818, 16729, 31, 'Willing To Work On Holidays', 4, 'no hesitation to work in holidays since his father stays with him.  yearly once or twice will to go his native', 31, '2024-02-12 04:35:35', 1),
(10819, 16873, 31, 'Communication (English)', 4, 'good', 31, '2024-02-12 04:39:53', 1),
(10820, 16873, 31, 'Importance Of Job', 4, 'highly needed a job now and candidate also okay ', 31, '2024-02-12 04:39:53', 1),
(10821, 16873, 31, 'Willing To Work On Holidays', 4, 'No hesitation to work on holidays', 31, '2024-02-12 04:39:53', 1),
(10822, 17002, 19, 'patience', 4, 'Selected', 19, '2024-02-15 04:15:04', 1),
(10823, 17011, 19, 'Importance Of Job', 4, 'Selected', 19, '2024-02-15 04:16:07', 1),
(10824, 17007, 19, 'Sales Experience', 1, 'i think she has a fake exp in his resume she had Insurance exp but she did not tell the plan name  ', 19, '2024-02-15 04:23:30', 1),
(10825, 17054, 31, 'Communication (English)', 4, 'Good', 31, '2024-02-19 04:23:09', 1),
(10826, 17054, 31, 'Sales Experience', 4, 'having relevant experience with Shriram life and Policy Bazaar', 31, '2024-02-19 04:23:09', 1),
(10827, 17054, 29, 'Communication (English)', 3, 'good', 29, '2024-02-20 05:07:49', 1),
(10828, 17054, 29, 'Convincing Skills', 3, 'doing well', 29, '2024-02-20 05:07:49', 1),
(10829, 17054, 29, 'Sales Experience', 3, 'Relevance exp', 29, '2024-02-20 05:07:49', 1),
(10830, 17066, 29, 'Communication (English)', 3, 'good', 29, '2024-02-20 06:03:15', 1),
(10831, 17055, 29, 'Communication (English)', 3, 'good', 29, '2024-02-20 06:17:02', 1),
(10832, 17120, 19, 'Observation Skills', 4, 'Fresher so we need to train him after 7 days only we will decide', 19, '2024-02-21 03:55:39', 1),
(10833, 17107, 19, 'Existing Experience Analyze', 1, 'Reject', 19, '2024-02-21 03:56:08', 1),
(10834, 17164, 19, 'Importance Of Job', 4, 'Selected', 19, '2024-02-26 10:24:40', 1),
(10835, 17179, 19, 'Existing Experience Analyze', 4, 'Selected', 19, '2024-02-26 11:36:12', 1),
(10836, 17058, 19, 'Observation Skills', 1, 'rejected', 19, '2024-02-27 11:37:49', 1),
(10837, 17087, 19, 'Existing Experience Analyze', 1, 'Rejected', 19, '2024-02-27 11:38:40', 1),
(10838, 17089, 19, 'Confidence Level', 1, 'Rejected', 19, '2024-02-27 11:39:10', 1),
(10839, 17090, 19, 'Convincing Skills', 1, 'Rejected', 19, '2024-02-27 11:43:45', 1),
(10840, 17106, 19, 'Attitude', 1, 'Rejected', 19, '2024-02-27 11:44:21', 1),
(10841, 17337, 19, 'Convincing Skills', 4, 'Selected', 19, '2024-03-04 04:05:08', 1),
(10842, 17369, 19, 'Importance Of Job', 4, 'Selected ', 19, '2024-03-09 07:09:26', 1),
(10843, 17393, 19, 'Existing Experience Analyze', 4, 'Selected ', 19, '2024-03-09 07:10:04', 1),
(10844, 17517, 19, 'Sales Experience', 4, 'Selected', 19, '2024-03-12 03:44:09', 1),
(10845, 17510, 19, 'Convincing Skills', 1, 'Rejected', 19, '2024-03-12 05:06:40', 1),
(10846, 17532, 19, 'Importance Of Job', 4, 'Selected', 19, '2024-03-12 05:07:53', 1),
(10847, 17587, 19, 'Confidence Level', 4, 'Selected ', 19, '2024-03-18 07:03:58', 1),
(10848, 17237, 19, 'Convincing Skills', 1, 'Reject', 19, '2024-03-19 05:13:31', 1),
(10849, 17925, 19, 'Communication (Tamil)', 4, 'Fresher, I hope she fit for sales', 19, '2024-03-27 06:04:53', 1),
(10850, 17821, 19, 'Existing Experience Analyze', 4, 'Selected', 19, '2024-03-27 06:06:49', 1),
(10851, 18160, 19, 'Communication (English)', 4, 'Selected ', 19, '2024-04-03 10:21:43', 1),
(10852, 18218, 30, 'Appearance', 4, 'good', 30, '2024-04-03 08:34:04', 1),
(10853, 18218, 30, 'Communication (English)', 4, 'good', 30, '2024-04-03 08:34:04', 1),
(10854, 18218, 30, 'Convincing Skills', 4, 'good', 30, '2024-04-03 08:34:04', 1),
(10855, 18218, 30, 'Sales Experience', 3, 'sales experience', 30, '2024-04-03 08:34:04', 1),
(10856, 18236, 30, 'Appearance', 3, 'good', 30, '2024-04-03 08:35:33', 1),
(10857, 18236, 30, 'Communication (English)', 3, 'good', 30, '2024-04-03 08:35:33', 1),
(10858, 18236, 30, 'Importance Of Job', 4, 'looking for long time growth', 30, '2024-04-03 08:35:33', 1),
(10859, 18236, 30, 'Sales Experience', 1, 'fresher', 30, '2024-04-03 08:35:33', 1),
(10860, 18302, 30, 'Appearance', 3, 'good', 30, '2024-04-04 04:28:04', 1),
(10861, 18302, 30, 'Communication (English)', 4, 'good', 30, '2024-04-04 04:28:04', 1),
(10862, 18302, 30, 'Convincing Skills', 4, 'good', 30, '2024-04-04 04:28:04', 1),
(10863, 18126, 30, 'Appearance', 3, 'Good ', 30, '2024-04-05 11:40:58', 1),
(10864, 18126, 30, 'Communication (English)', 4, 'Smart ', 30, '2024-04-05 11:40:58', 1),
(10865, 18126, 30, 'Convincing Skills', 4, 'Smart ', 30, '2024-04-05 11:40:58', 1),
(10866, 17612, 30, 'Appearance', 3, 'Good', 30, '2024-04-05 11:42:54', 1),
(10867, 17612, 30, 'Communication (English)', 3, 'Good', 30, '2024-04-05 11:42:54', 1),
(10868, 17612, 30, 'Sales Experience', 2, '3month', 30, '2024-04-05 11:42:54', 1),
(10869, 18338, 31, 'Existing Experience Analyze', 1, 'not related to sales', 31, '2024-04-08 02:48:26', 1),
(10870, 18335, 31, 'Confidence Level', 2, 'Hope he has worked with back end and operations work ans still interested to do the same ', 31, '2024-04-08 02:51:24', 1),
(10871, 18320, 31, 'Communication (Tamil)', 2, 'Hesitate to speak', 31, '2024-04-08 02:57:26', 1),
(10872, 18320, 31, 'Confidence Level', 2, 'Uncomfortable to respond the questions', 31, '2024-04-08 02:57:26', 1),
(10873, 16381, 31, 'Communication (English)', 4, 'Good', 31, '2024-04-08 04:15:25', 1),
(10874, 17184, 31, 'Communication (English)', 4, 'Good', 31, '2024-04-08 04:19:16', 1),
(10875, 18326, 31, 'Appearance', 4, 'neatly presented', 31, '2024-04-08 04:23:03', 1),
(10876, 18326, 31, 'Communication (English)', 4, 'Good', 31, '2024-04-08 04:23:03', 1),
(10877, 17162, 31, 'Sales Experience', 3, 'Worked with ICICI bank and hdfc bank in off roles as relationship manager', 31, '2024-04-08 04:30:47', 1),
(10878, 18151, 31, 'Sales Experience', 1, 'Nil', 31, '2024-04-08 04:32:43', 1),
(10879, 18136, 31, 'Communication (English)', 3, 'Not much fluent', 31, '2024-04-08 04:36:49', 1),
(10880, 18136, 31, 'Communication (Tamil)', 4, 'Good', 31, '2024-04-08 04:36:49', 1),
(10881, 18136, 31, 'Convincing Skills', 2, 'Very Slow And Not Aggressive', 31, '2024-04-08 04:36:49', 1),
(10882, 18260, 30, 'Appearance', 3, 'good', 30, '2024-04-08 05:14:40', 1),
(10883, 18260, 30, 'Communication (English)', 3, 'good', 30, '2024-04-08 05:14:40', 1),
(10884, 18260, 30, 'Existing Experience Analyze', 3, 'have sales experience on other field', 30, '2024-04-08 05:14:40', 1),
(10885, 16730, 31, 'Attitude', 2, 'very casual and not much serious about the interview', 31, '2024-04-08 06:05:41', 1),
(10886, 16730, 31, 'Convincing Skills', 2, 'Not impressive ', 31, '2024-04-08 06:05:41', 1),
(10887, 17232, 31, 'Sales Experience', 2, 'His experience more into accounts and receivables on his  existing clients.', 31, '2024-04-08 06:08:28', 1),
(10888, 17632, 31, 'Communication (Tamil)', 4, 'Good', 31, '2024-04-08 06:10:06', 1),
(10889, 18274, 31, 'Communication (Tamil)', 4, 'Good', 31, '2024-04-08 06:13:49', 1),
(10890, 18416, 19, 'Importance Of Job', 4, 'Selected ', 19, '2024-04-15 10:06:59', 1),
(10891, 18453, 19, 'Observation Skills', 4, 'Selected ', 19, '2024-04-15 10:08:43', 1),
(10892, 18546, 30, 'Appearance', 3, 'good', 30, '2024-04-16 04:52:53', 1),
(10893, 18546, 30, 'Communication (English)', 3, 'good', 30, '2024-04-16 04:52:53', 1),
(10894, 18546, 30, 'Communication (Tamil)', 4, 'good', 30, '2024-04-16 04:52:53', 1),
(10895, 18546, 30, 'Sales Experience', 3, 'core related experience', 30, '2024-04-16 04:52:53', 1),
(10896, 18487, 30, 'Appearance', 3, 'good', 30, '2024-04-16 05:02:09', 1),
(10897, 18487, 30, 'Communication (English)', 3, 'good', 30, '2024-04-16 05:02:09', 1),
(10898, 18487, 30, 'Sales Experience', 2, 'ok for tele salles', 30, '2024-04-16 05:02:09', 1),
(10899, 18578, 19, 'Importance Of Job', 4, 'Selected ', 19, '2024-04-16 06:52:57', 1),
(10900, 18569, 18, 'Communication (English)', 4, 'Good', 18, '2024-04-17 10:18:14', 1),
(10901, 18569, 18, 'Convincing Skills', 4, 'Good', 18, '2024-04-17 10:18:14', 1),
(10902, 18569, 18, 'Importance Of Job', 4, 'Need', 18, '2024-04-17 10:18:14', 1),
(10903, 18569, 18, 'Practical Challenges Outcome', 5, 'High', 18, '2024-04-17 10:18:14', 1),
(10904, 18562, 18, 'Appearance', 4, 'Good', 18, '2024-04-17 10:20:01', 1),
(10905, 18562, 18, 'Attitude', 4, 'Good', 18, '2024-04-17 10:20:01', 1),
(10906, 18562, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2024-04-17 10:20:01', 1),
(10907, 18562, 18, 'Importance Of Job', 4, 'Need', 18, '2024-04-17 10:20:01', 1),
(10908, 18573, 30, 'Appearance', 3, 'good', 30, '2024-04-17 05:07:19', 1),
(10909, 18573, 30, 'Communication (English)', 4, 'good', 30, '2024-04-17 05:07:19', 1),
(10910, 18573, 30, 'Sustainability', 4, 'will sustain', 30, '2024-04-17 05:07:19', 1),
(10911, 18611, 30, 'Appearance', 3, 'good', 30, '2024-04-17 05:09:58', 1),
(10912, 18611, 30, 'Communication (English)', 4, 'good', 30, '2024-04-17 05:09:58', 1),
(10913, 18611, 30, 'Confidence Level', 3, 'good', 30, '2024-04-17 05:09:58', 1),
(10914, 18611, 30, 'Existing Experience Analyze', 4, 'health insurance previous experience', 30, '2024-04-17 05:09:58', 1),
(10915, 18609, 30, 'Appearance', 3, 'good', 30, '2024-04-17 05:11:34', 1),
(10916, 18609, 30, 'Communication (English)', 4, 'good', 30, '2024-04-17 05:11:34', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(10917, 18609, 30, 'Importance Of Job', 4, 'mandatory', 30, '2024-04-17 05:11:34', 1),
(10918, 18575, 30, 'Appearance', 4, 'good', 30, '2024-04-18 04:42:09', 1),
(10919, 18575, 30, 'Communication (English)', 4, 'good', 30, '2024-04-18 04:42:09', 1),
(10920, 18575, 30, 'Communication (Tamil)', 3, 'good', 30, '2024-04-18 04:42:09', 1),
(10921, 18575, 30, 'Convincing Skills', 4, 'good', 30, '2024-04-18 04:42:09', 1),
(10922, 18575, 30, 'Existing Experience Analyze', 4, 'good', 30, '2024-04-18 04:42:09', 1),
(10923, 18637, 30, 'Appearance', 3, 'good', 30, '2024-04-18 04:43:23', 1),
(10924, 18637, 30, 'Communication (English)', 3, 'good', 30, '2024-04-18 04:43:23', 1),
(10925, 18637, 30, 'Confidence Level', 3, 'good', 30, '2024-04-18 04:43:23', 1),
(10926, 18637, 30, 'Sales Experience', 3, 'yes', 30, '2024-04-18 04:43:23', 1),
(10927, 18639, 30, 'Appearance', 3, 'good', 30, '2024-04-18 04:44:38', 1),
(10928, 18639, 30, 'Communication (English)', 3, 'good', 30, '2024-04-18 04:44:38', 1),
(10929, 18639, 30, 'Confidence Level', 3, 'good', 30, '2024-04-18 04:44:38', 1),
(10930, 18639, 30, 'Observation Skills', 3, 'good', 30, '2024-04-18 04:44:38', 1),
(10931, 18632, 18, 'Appearance', 4, 'Good', 18, '2024-04-20 01:11:32', 1),
(10932, 18632, 18, 'Communication (English)', 4, 'Good', 18, '2024-04-20 01:11:32', 1),
(10933, 18632, 18, 'Communication (Tamil)', 5, 'Good', 18, '2024-04-20 01:11:32', 1),
(10934, 18632, 18, 'Confidence Level', 4, 'Good', 18, '2024-04-20 01:11:32', 1),
(10935, 18632, 18, 'Importance Of Job', 3, 'Need', 18, '2024-04-20 01:11:32', 1),
(10936, 18632, 18, 'Sustainability', 3, 'Need to Filter in 1st week', 18, '2024-04-20 01:11:32', 1),
(10937, 18616, 29, 'Communication (English)', 3, 'Good', 29, '2024-04-22 10:01:56', 1),
(10938, 18616, 29, 'Convincing Skills', 2, 'good', 29, '2024-04-22 10:01:56', 1),
(10939, 18616, 29, 'Sales Experience', 3, 'Have to train for financial products, has sales skills', 29, '2024-04-22 10:01:56', 1),
(10940, 18606, 29, 'Communication (English)', 3, 'good', 29, '2024-04-22 10:41:24', 1),
(10941, 18606, 29, 'Convincing Skills', 3, 'has skills, need to Develop it', 29, '2024-04-22 10:41:24', 1),
(10942, 18643, 30, 'Appearance', 3, 'GOOD', 30, '2024-04-22 03:44:53', 1),
(10943, 18643, 30, 'Communication (English)', 3, 'GOOD', 30, '2024-04-22 03:44:53', 1),
(10944, 18643, 30, 'Convincing Skills', 3, 'GOOD', 30, '2024-04-22 03:44:53', 1),
(10945, 18669, 30, 'Appearance', 4, 'good', 30, '2024-04-22 03:47:12', 1),
(10946, 18669, 30, 'Communication (English)', 5, 'good', 30, '2024-04-22 03:47:12', 1),
(10947, 18669, 30, 'Convincing Skills', 3, 'good', 30, '2024-04-22 03:47:12', 1),
(10948, 18669, 30, 'Observation Skills', 3, 'good', 30, '2024-04-22 03:47:12', 1),
(10949, 18670, 30, 'Appearance', 3, 'good', 30, '2024-04-22 03:48:47', 1),
(10950, 18670, 30, 'Communication (English)', 3, 'good', 30, '2024-04-22 03:48:47', 1),
(10951, 18670, 30, 'Sales Experience', 3, 'k', 30, '2024-04-22 03:48:47', 1),
(10952, 18559, 19, 'Importance Of Job', 1, 'His distance is too long and also he is not willing to travel that much of distance ', 19, '2024-04-22 06:30:56', 1),
(10953, 18681, 19, 'Importance Of Job', 4, 'Selected', 19, '2024-04-23 02:44:14', 1),
(10954, 18676, 19, 'Existing Experience Analyze', 1, 'not fit for sales', 19, '2024-04-23 02:46:00', 1),
(10955, 18703, 30, 'Appearance', 4, 'good', 30, '2024-04-24 05:17:18', 1),
(10956, 18703, 30, 'Communication (English)', 4, 'good', 30, '2024-04-24 05:17:18', 1),
(10957, 18703, 30, 'Convincing Skills', 4, 'good', 30, '2024-04-24 05:17:18', 1),
(10958, 18703, 30, 'Observation Skills', 3, 'good', 30, '2024-04-24 05:17:18', 1),
(10959, 18697, 19, 'Importance Of Job', 4, 'Selected', 19, '2024-04-24 07:04:36', 1),
(10960, 18740, 19, 'Existing Experience Analyze', 1, 'Rejected', 19, '2024-04-26 06:09:48', 1),
(10961, 18724, 19, 'Sales Experience', 1, 'already he is working reliance life for 6 month and he is not fit for sales', 19, '2024-04-26 06:18:45', 1),
(10962, 18764, 19, 'Existing Experience Analyze', 1, 'rejected', 19, '2024-04-27 06:51:05', 1),
(10963, 18777, 30, 'Appearance', 3, 'good', 30, '2024-04-29 08:03:07', 1),
(10964, 18777, 30, 'Communication (English)', 3, 'good', 30, '2024-04-29 08:03:07', 1),
(10965, 18777, 30, 'Convincing Skills', 3, 'good', 30, '2024-04-29 08:03:07', 1),
(10966, 18777, 30, 'Importance Of Job', 3, 'need', 30, '2024-04-29 08:03:07', 1),
(10967, 18782, 30, 'Appearance', 3, 'good', 30, '2024-04-29 08:04:06', 1),
(10968, 18782, 30, 'Communication (English)', 3, 'good', 30, '2024-04-29 08:04:06', 1),
(10969, 18782, 30, 'Importance Of Job', 3, 'need', 30, '2024-04-29 08:04:06', 1),
(10970, 18783, 30, 'Appearance', 3, 'good', 30, '2024-04-29 08:04:53', 1),
(10971, 18783, 30, 'Communication (English)', 3, 'good', 30, '2024-04-29 08:04:53', 1),
(10972, 18783, 30, 'Communication (Tamil)', 4, 'good', 30, '2024-04-29 08:04:53', 1),
(10973, 18783, 30, 'Importance Of Job', 3, 'need', 30, '2024-04-29 08:04:53', 1),
(10974, 18804, 19, 'Convincing Skills', 4, 'Selected', 19, '2024-04-30 03:49:53', 1),
(10975, 18772, 19, 'Communication (Tamil)', 4, 'Selected', 19, '2024-04-30 06:05:31', 1),
(10976, 18811, 19, 'Importance Of Job', 1, 'Rejected', 19, '2024-04-30 06:06:32', 1),
(10977, 18596, 19, 'Convincing Skills', 1, 'Rejected', 19, '2024-04-30 06:08:08', 1),
(10978, 18860, 19, 'Importance Of Job', 4, 'Job Needed Person', 19, '2024-05-03 06:40:23', 1),
(10979, 18897, 19, 'Attitude', 1, 'Rejected', 19, '2024-05-04 05:07:53', 1),
(10980, 18789, 19, 'Pressure Handling', 1, 'Rejected', 19, '2024-05-04 05:08:50', 1),
(10981, 18767, 30, 'Appearance', 4, 'good', 30, '2024-05-06 10:26:08', 1),
(10982, 18767, 30, 'Communication (English)', 3, 'good', 30, '2024-05-06 10:26:08', 1),
(10983, 18767, 30, 'Convincing Skills', 3, 'good', 30, '2024-05-06 10:26:08', 1),
(10984, 18767, 30, 'Existing Experience Analyze', 3, 'good', 30, '2024-05-06 10:26:08', 1),
(10985, 18759, 30, 'Appearance', 3, 'god', 30, '2024-05-06 10:28:17', 1),
(10986, 18759, 30, 'Communication (English)', 4, 'good', 30, '2024-05-06 10:28:17', 1),
(10987, 18759, 30, 'Observation Skills', 3, 'good', 30, '2024-05-06 10:28:17', 1),
(10988, 18610, 30, 'Appearance', 3, 'good', 30, '2024-05-06 10:33:14', 1),
(10989, 18610, 30, 'Communication (English)', 3, 'good', 30, '2024-05-06 10:33:14', 1),
(10990, 18610, 30, 'Convincing Skills', 3, 'good', 30, '2024-05-06 10:33:14', 1),
(10991, 18887, 30, 'Appearance', 4, 'good', 30, '2024-05-06 03:35:38', 1),
(10992, 18887, 30, 'Communication (English)', 4, 'good', 30, '2024-05-06 03:35:38', 1),
(10993, 18887, 30, 'Convincing Skills', 3, 'good', 30, '2024-05-06 03:35:38', 1),
(10994, 18887, 30, 'Sales Experience', 3, 'good', 30, '2024-05-06 03:35:38', 1),
(10995, 18694, 18, 'Appearance', 4, 'Good', 18, '2024-05-07 10:03:33', 1),
(10996, 18694, 18, 'Communication (English)', 3, 'Above Average', 18, '2024-05-07 10:03:33', 1),
(10997, 18694, 18, 'Convincing Skills', 3, 'Decent', 18, '2024-05-07 10:03:33', 1),
(10998, 18694, 18, 'Importance Of Job', 4, 'Needed', 18, '2024-05-07 10:03:33', 1),
(10999, 18694, 18, 'Sustainability', 4, 'Need to filter in training', 18, '2024-05-07 10:03:33', 1),
(11000, 18975, 19, 'Pressure Handling', 1, 'Rejected', 19, '2024-05-07 04:39:42', 1),
(11001, 16385, 19, 'Convincing Skills', 1, 'rejected', 19, '2024-05-07 04:40:54', 1),
(11002, 17033, 19, 'Importance Of Job', 1, 'Rejected', 19, '2024-05-07 04:41:32', 1),
(11003, 18980, 30, 'Appearance', 3, 'goood', 30, '2024-05-08 02:57:34', 1),
(11004, 18980, 30, 'Communication (English)', 3, 'good', 30, '2024-05-08 02:57:34', 1),
(11005, 18987, 30, 'Appearance', 4, 'good', 30, '2024-05-08 02:58:47', 1),
(11006, 18987, 30, 'Communication (English)', 4, 'good', 30, '2024-05-08 02:58:47', 1),
(11007, 18987, 30, 'Convincing Skills', 3, 'good', 30, '2024-05-08 02:58:47', 1),
(11008, 18987, 30, 'Observation Skills', 3, 'good', 30, '2024-05-08 02:58:47', 1),
(11009, 19000, 30, 'Appearance', 3, 'good', 30, '2024-05-10 04:24:34', 1),
(11010, 19000, 30, 'Communication (English)', 3, 'good', 30, '2024-05-10 04:24:34', 1),
(11011, 18921, 30, 'Appearance', 3, 'good', 30, '2024-05-13 06:21:36', 1),
(11012, 18921, 30, 'Communication (English)', 3, 'good', 30, '2024-05-13 06:21:36', 1),
(11013, 18921, 30, 'Convincing Skills', 3, 'good', 30, '2024-05-13 06:21:36', 1),
(11014, 19185, 30, 'Appearance', 3, 'good', 30, '2024-05-13 06:23:28', 1),
(11015, 19185, 30, 'Communication (English)', 3, 'good', 30, '2024-05-13 06:23:28', 1),
(11016, 19185, 30, 'Confidence Level', 3, 'good', 30, '2024-05-13 06:23:28', 1),
(11017, 19185, 30, 'Sales Experience', 3, 'good', 30, '2024-05-13 06:23:28', 1),
(11018, 19203, 30, 'Appearance', 3, 'good', 30, '2024-05-13 06:24:18', 1),
(11019, 19203, 30, 'Communication (English)', 4, 'good', 30, '2024-05-13 06:24:18', 1),
(11020, 19203, 30, 'Existing Experience Analyze', 3, 'good', 30, '2024-05-13 06:24:18', 1),
(11021, 19208, 30, 'Appearance', 4, 'good', 30, '2024-05-13 06:25:03', 1),
(11022, 19208, 30, 'Communication (English)', 4, 'good', 30, '2024-05-13 06:25:03', 1),
(11023, 19208, 30, 'Confidence Level', 3, 'good', 30, '2024-05-13 06:25:03', 1),
(11024, 19208, 30, 'Existing Experience Analyze', 4, 'good', 30, '2024-05-13 06:25:03', 1),
(11025, 19218, 30, 'Appearance', 3, 'Good', 30, '2024-05-14 08:08:13', 1),
(11026, 19218, 30, 'Communication (English)', 3, 'Good', 30, '2024-05-14 08:08:13', 1),
(11027, 19218, 30, 'Sustainability', 1, 'Need to check', 30, '2024-05-14 08:08:13', 1),
(11028, 19222, 30, 'Appearance', 4, 'Good ', 30, '2024-05-14 08:09:22', 1),
(11029, 19222, 30, 'Communication (English)', 5, 'Good ', 30, '2024-05-14 08:09:22', 1),
(11030, 19222, 30, 'Confidence Level', 3, 'K', 30, '2024-05-14 08:09:22', 1),
(11031, 19245, 19, 'Appearance', 1, 'Rejected', 19, '2024-05-15 04:56:04', 1),
(11032, 19247, 19, 'Appearance', 1, 'Rejected', 19, '2024-05-15 04:57:13', 1),
(11033, 17153, 19, 'Attitude', 1, 'Rejected', 19, '2024-05-15 04:57:42', 1),
(11034, 19026, 30, 'Appearance', 3, 'Good', 30, '2024-05-18 12:28:05', 1),
(11035, 19026, 30, 'Attitude', 3, 'Good', 30, '2024-05-18 12:28:05', 1),
(11036, 19026, 30, 'Communication (English)', 3, 'Good', 30, '2024-05-18 12:28:05', 1),
(11037, 19296, 18, 'Appearance', 4, 'Good', 18, '2024-05-20 07:36:00', 1),
(11038, 19296, 18, 'Attitude', 4, 'Good', 18, '2024-05-20 07:36:00', 1),
(11039, 19296, 18, 'Communication (English)', 4, 'Good', 18, '2024-05-20 07:36:00', 1),
(11040, 19296, 18, 'Communication (Tamil)', 4, 'Good', 18, '2024-05-20 07:36:00', 1),
(11041, 19296, 18, 'Sustainability', 3, 'Need to filter in 1st week', 18, '2024-05-20 07:36:00', 1),
(11042, 19284, 19, 'Importance Of Job', 4, 'Job Needed Person', 19, '2024-05-21 10:19:57', 1),
(11043, 19315, 29, 'Communication (English)', 3, 'good', 29, '2024-05-22 12:49:07', 1),
(11044, 19315, 29, 'Convincing Skills', 3, 'good', 29, '2024-05-22 12:49:07', 1),
(11045, 19347, 30, 'Appearance', 4, 'good', 30, '2024-05-24 01:45:35', 1),
(11046, 19347, 30, 'Communication (English)', 4, 'good', 30, '2024-05-24 01:45:35', 1),
(11047, 19347, 30, 'Confidence Level', 4, 'good', 30, '2024-05-24 01:45:35', 1),
(11048, 19341, 30, 'Appearance', 3, 'good', 30, '2024-05-24 01:46:23', 1),
(11049, 19341, 30, 'Communication (English)', 3, 'good', 30, '2024-05-24 01:46:23', 1),
(11050, 19341, 30, 'Importance Of Job', 3, 'yes', 30, '2024-05-24 01:46:23', 1),
(11051, 17166, 19, 'Attitude', 1, 'Rejected', 19, '2024-05-24 03:47:03', 1),
(11052, 17225, 19, 'Convincing Skills', 1, 'Rejected', 19, '2024-05-24 03:47:33', 1),
(11053, 19324, 19, 'Existing Experience Analyze', 4, 'Selected', 19, '2024-05-24 03:50:06', 1),
(11054, 19330, 19, 'Convincing Skills', 1, 'Rejected', 19, '2024-05-24 03:50:39', 1),
(11055, 19304, 19, 'Convincing Skills', 1, 'not fit for sales', 19, '2024-05-24 03:51:05', 1),
(11056, 19288, 19, 'Confidence Level', 1, 'Rejected', 19, '2024-05-24 03:51:52', 1),
(11057, 18583, 19, 'Convincing Skills', 1, 'Rejected', 19, '2024-05-24 03:52:37', 1),
(11058, 17168, 19, 'Convincing Skills', 1, 'rejected', 19, '2024-05-24 03:53:14', 1),
(11059, 17256, 19, 'Pressure Handling', 1, 'Rejected', 19, '2024-05-24 03:54:36', 1),
(11060, 17174, 19, 'Attitude', 1, 'Rejected', 19, '2024-05-24 03:55:19', 1),
(11061, 17181, 19, 'Convincing Skills', 1, 'rejected', 19, '2024-05-24 03:56:00', 1),
(11062, 17249, 19, 'Convincing Skills', 1, 'Rejected', 19, '2024-05-24 03:56:24', 1),
(11063, 17222, 19, 'Confidence Level', 1, 'Rejected', 19, '2024-05-24 03:57:33', 1),
(11064, 17175, 19, 'Importance Of Job', 1, 'Rejected', 19, '2024-05-24 03:58:11', 1),
(11065, 17246, 19, 'Convincing Skills', 1, 'rejected', 19, '2024-05-24 04:00:19', 1),
(11066, 19380, 30, 'Appearance', 3, 'good', 30, '2024-05-25 05:40:38', 1),
(11067, 19380, 30, 'Communication (English)', 3, 'good', 30, '2024-05-25 05:40:38', 1),
(11068, 19380, 30, 'Importance Of Job', 3, 'yes', 30, '2024-05-25 05:40:38', 1),
(11069, 19360, 29, 'Communication (English)', 3, 'good', 29, '2024-05-25 06:32:53', 1),
(11070, 19360, 29, 'Convincing Skills', 3, 'can train and improve', 29, '2024-05-25 06:32:53', 1),
(11071, 19369, 29, 'Communication (English)', 3, 'Good', 29, '2024-05-27 10:09:09', 1),
(11072, 19369, 29, 'Convincing Skills', 3, 'Good', 29, '2024-05-27 10:09:09', 1),
(11073, 19369, 29, 'Sales Experience', 3, 'Not Relevant, we can train and Mold  ', 29, '2024-05-27 10:09:09', 1),
(11074, 19364, 31, 'Communication (Tamil)', 4, 'Good', 31, '2024-05-27 10:23:40', 1),
(11075, 19364, 31, 'Sales Experience', 4, 'having 3 yrs experience in HDFC inbound calls at credit and loan sales', 31, '2024-05-27 10:23:40', 1),
(11076, 19396, 30, 'Appearance', 4, 'good', 30, '2024-05-28 05:48:12', 1),
(11077, 19396, 30, 'Communication (English)', 4, 'good', 30, '2024-05-28 05:48:12', 1),
(11078, 19396, 30, 'Confidence Level', 3, 'good', 30, '2024-05-28 05:48:12', 1),
(11079, 19430, 19, 'Importance Of Job', 1, 'Selected', 19, '2024-05-30 02:39:02', 1),
(11080, 19364, 29, 'Convincing Skills', 2, 'good', 29, '2024-06-01 06:47:58', 1),
(11081, 19364, 29, 'Sales Experience', 3, 'has Relevant exp', 29, '2024-06-01 06:47:58', 1),
(11082, 19404, 29, 'Pressure Handling', 3, 'can manage ', 29, '2024-06-01 06:48:50', 1),
(11083, 19404, 29, 'Sales Experience', 2, 'have to train and drive', 29, '2024-06-01 06:48:50', 1),
(11084, 19415, 29, 'Communication (English)', 3, 'good', 29, '2024-06-01 06:49:34', 1),
(11085, 19415, 29, 'Convincing Skills', 2, 'can do well', 29, '2024-06-01 06:49:34', 1),
(11086, 19460, 30, 'Appearance', 3, 'good', 30, '2024-06-04 02:53:49', 1),
(11087, 19460, 30, 'Convincing Skills', 3, 'good', 30, '2024-06-04 02:53:49', 1),
(11088, 19460, 30, 'Observation Skills', 3, 'good', 30, '2024-06-04 02:53:49', 1),
(11089, 19478, 30, 'Appearance', 3, 'good', 30, '2024-06-04 02:54:41', 1),
(11090, 19478, 30, 'Communication (English)', 4, 'good', 30, '2024-06-04 02:54:41', 1),
(11091, 19478, 30, 'Observation Skills', 3, 'good', 30, '2024-06-04 02:54:41', 1),
(11092, 19414, 18, 'Communication (English)', 3, 'Good ', 18, '2024-06-04 04:20:05', 1),
(11093, 19414, 18, 'Convincing Skills', 2, 'Can mold and improve', 18, '2024-06-04 04:20:05', 1),
(11094, 19477, 18, 'Communication (English)', 2, 'Decent', 18, '2024-06-05 05:03:35', 1),
(11095, 19477, 18, 'Communication (Tamil)', 3, 'Good', 18, '2024-06-05 05:03:35', 1),
(11096, 19477, 18, 'Confidence Level', 3, 'Good', 18, '2024-06-05 05:03:35', 1),
(11097, 19477, 18, 'Importance Of Job', 4, 'Highly needed as coming from a poor background', 18, '2024-06-05 05:03:35', 1),
(11098, 19477, 18, 'Sales Experience', 1, 'Nil', 18, '2024-06-05 05:03:35', 1),
(11099, 19477, 18, 'Existing Experience Analyze', 3, 'Good Knoweledge', 18, '2024-06-05 05:03:35', 1),
(11100, 19569, 30, 'Appearance', 3, 'Good', 30, '2024-06-10 09:16:09', 1),
(11101, 19569, 30, 'Communication (English)', 3, 'Good', 30, '2024-06-10 09:16:09', 1),
(11102, 19569, 30, 'Convincing Skills', 3, 'Good', 30, '2024-06-10 09:16:09', 1),
(11103, 19569, 30, 'Sales Experience', 4, 'In different core ', 30, '2024-06-10 09:16:09', 1),
(11104, 19580, 30, 'Appearance', 4, 'Good', 30, '2024-06-10 09:16:55', 1),
(11105, 19580, 30, 'Communication (English)', 4, 'Good', 30, '2024-06-10 09:16:55', 1),
(11106, 19580, 30, 'Observation Skills', 3, 'Good', 30, '2024-06-10 09:16:55', 1),
(11107, 19496, 30, 'Appearance', 3, 'Good', 30, '2024-06-10 09:18:20', 1),
(11108, 19496, 30, 'Communication (English)', 3, 'Good', 30, '2024-06-10 09:18:20', 1),
(11109, 19496, 30, 'Observation Skills', 3, 'Good', 30, '2024-06-10 09:18:20', 1),
(11110, 19607, 30, 'Appearance', 3, 'Good', 30, '2024-06-11 05:56:07', 1),
(11111, 19607, 30, 'Communication (English)', 4, 'Good', 30, '2024-06-11 05:56:07', 1),
(11112, 19607, 30, 'Convincing Skills', 4, 'Good', 30, '2024-06-11 05:56:07', 1),
(11113, 19607, 30, 'Observation Skills', 4, 'Good', 30, '2024-06-11 05:56:07', 1),
(11114, 19607, 30, 'Sales Experience', 3, 'Other field', 30, '2024-06-11 05:56:07', 1),
(11115, 19607, 30, 'Willing To Work On Holidays', 3, 'She will work', 30, '2024-06-11 05:56:07', 1),
(11116, 19605, 30, 'Appearance', 3, 'Good', 30, '2024-06-11 05:57:14', 1),
(11117, 19605, 30, 'Communication (English)', 3, 'Good', 30, '2024-06-11 05:57:14', 1),
(11118, 19605, 30, 'Convincing Skills', 3, 'Good', 30, '2024-06-11 05:57:14', 1),
(11119, 19605, 30, 'Sales Experience', 3, 'In cars 23', 30, '2024-06-11 05:57:14', 1),
(11120, 19601, 30, 'Appearance', 3, 'Good', 30, '2024-06-11 05:57:57', 1),
(11121, 19601, 30, 'Communication (English)', 3, 'Good', 30, '2024-06-11 05:57:57', 1),
(11122, 19601, 30, 'Convincing Skills', 3, 'K', 30, '2024-06-11 05:57:57', 1),
(11123, 19615, 30, 'Appearance', 3, 'Good', 30, '2024-06-11 05:58:52', 1),
(11124, 19615, 30, 'Communication (English)', 3, 'Good', 30, '2024-06-11 05:58:52', 1),
(11125, 19615, 30, 'Convincing Skills', 3, 'Good', 30, '2024-06-11 05:58:52', 1),
(11126, 19592, 30, 'Appearance', 3, 'good', 30, '2024-06-12 03:36:58', 1),
(11127, 19592, 30, 'Communication (English)', 3, 'good', 30, '2024-06-12 03:36:58', 1),
(11128, 19592, 30, 'Convincing Skills', 3, 'good', 30, '2024-06-12 03:36:58', 1),
(11129, 19617, 30, 'Appearance', 3, 'good', 30, '2024-06-12 03:37:56', 1),
(11130, 19617, 30, 'Communication (English)', 3, 'good', 30, '2024-06-12 03:37:56', 1),
(11131, 19617, 30, 'Communication (Tamil)', 5, 'good', 30, '2024-06-12 03:37:56', 1),
(11132, 19626, 30, 'Appearance', 4, 'good', 30, '2024-06-12 03:38:42', 1),
(11133, 19626, 30, 'Communication (English)', 3, 'good', 30, '2024-06-12 03:38:42', 1),
(11134, 19626, 30, 'Confidence Level', 3, 'good', 30, '2024-06-12 03:38:42', 1),
(11135, 19654, 18, 'Appearance', 3, 'Ok', 18, '2024-06-13 05:05:51', 1),
(11136, 19654, 18, 'Communication (English)', 2, 'Average', 18, '2024-06-13 05:05:51', 1),
(11137, 19654, 18, 'Communication (Tamil)', 3, 'Ok', 18, '2024-06-13 05:05:51', 1),
(11138, 19654, 18, 'Confidence Level', 3, 'Ok', 18, '2024-06-13 05:05:51', 1),
(11139, 19654, 18, 'patience', 3, 'Good', 18, '2024-06-13 05:05:51', 1),
(11140, 19654, 18, 'Sales Experience', 1, 'Nil', 18, '2024-06-13 05:05:51', 1),
(11141, 19654, 18, 'Existing Experience Analyze', 3, 'Decent', 18, '2024-06-13 05:05:51', 1),
(11142, 19674, 29, 'Convincing Skills', 2, 'good', 29, '2024-06-18 12:21:49', 1),
(11143, 19674, 29, 'Sales Experience', 2, 'Has sales exp', 29, '2024-06-18 12:21:49', 1),
(11144, 19802, 29, 'Communication (English)', 2, 'good', 29, '2024-06-20 03:40:59', 1),
(11145, 19802, 29, 'Convincing Skills', 2, 'can do better have to train', 29, '2024-06-20 03:40:59', 1),
(11146, 19722, 18, 'Observation Skills', 3, 'Ok', 18, '2024-06-20 03:50:06', 1),
(11147, 19722, 18, 'Sales Experience', 1, 'Nil', 18, '2024-06-20 03:50:06', 1),
(11148, 19722, 18, 'Willing To Work On Holidays', 1, 'Need to double Check', 18, '2024-06-20 03:50:06', 1),
(11149, 19764, 30, 'Appearance', 3, 'Good', 30, '2024-06-21 05:00:58', 1),
(11150, 19764, 30, 'Communication (English)', 4, 'Good', 30, '2024-06-21 05:00:58', 1),
(11151, 19764, 30, 'Convincing Skills', 4, 'Good', 30, '2024-06-21 05:00:58', 1),
(11152, 19277, 30, 'Appearance', 3, 'GOOD', 30, '2024-06-22 11:11:56', 1),
(11153, 19277, 30, 'Communication (English)', 2, 'GOOD', 30, '2024-06-22 11:11:56', 1),
(11154, 19277, 30, 'Confidence Level', 3, 'GOOD', 30, '2024-06-22 11:11:56', 1),
(11155, 19833, 18, 'Appearance', 3, 'Ok', 18, '2024-06-25 03:15:10', 1),
(11156, 19833, 18, 'Communication (English)', 3, 'Decent', 18, '2024-06-25 03:15:10', 1),
(11157, 19833, 18, 'Communication (Tamil)', 3, 'Good', 18, '2024-06-25 03:15:10', 1),
(11158, 19833, 18, 'Convincing Skills', 3, 'Good', 18, '2024-06-25 03:15:10', 1),
(11159, 19833, 18, 'Sales Experience', 2, 'Average', 18, '2024-06-25 03:15:10', 1),
(11160, 19763, 18, 'Confidence Level', 3, 'Good', 18, '2024-06-26 07:16:15', 1),
(11161, 19763, 18, 'Importance Of Job', 3, 'High', 18, '2024-06-26 07:16:15', 1),
(11162, 19763, 18, 'patience', 2, 'Ok', 18, '2024-06-26 07:16:15', 1),
(11163, 19763, 18, 'Sales Experience', 1, 'Nil', 18, '2024-06-26 07:16:15', 1),
(11164, 19935, 31, 'Confidence Level', 3, 'Low voice, not a confident deliver ', 31, '2024-06-27 05:17:25', 1),
(11165, 19935, 31, 'Practical Challenges Outcome', 2, 'seems to be time constraint', 31, '2024-06-27 05:17:25', 1),
(11166, 19906, 29, 'Communication (English)', 3, 'Good at communication', 29, '2024-07-01 10:41:12', 1),
(11167, 19906, 29, 'Convincing Skills', 2, 'Can train and mould to this industry', 29, '2024-07-01 10:41:12', 1),
(11168, 20001, 18, 'Convincing Skills', 3, 'Good', 18, '2024-07-02 04:38:47', 1),
(11169, 20001, 18, 'Confidence Level', 3, 'Good', 18, '2024-07-02 04:38:47', 1),
(11170, 20001, 18, 'Importance Of Job', 4, 'Needed', 18, '2024-07-02 04:38:47', 1),
(11171, 20010, 31, 'Importance Of Job', 4, 'highly need a job now since her husband returned from abroad and planned to start business', 31, '2024-07-03 03:09:57', 1),
(11172, 20010, 31, 'Sales Experience', 3, 'nearly 1.5 yrs experience in Tele calling sales with bajaj finserv .  After her marriage she didnot worked since 4 years', 31, '2024-07-03 03:09:57', 1),
(11173, 19953, 31, 'Importance Of Job', 4, 'candidate is jobless now, due to some personal issues he left the job more than a year.  worked in a relevant industry. ', 31, '2024-07-03 03:17:19', 1),
(11174, 19953, 31, 'Sales Experience', 3, 'having telesales experience with just dial and sulekha but both are not more than a year each.', 31, '2024-07-03 03:17:19', 1),
(11175, 20011, 18, 'Appearance', 3, 'Good', 18, '2024-07-03 03:52:08', 1),
(11176, 20011, 18, 'Communication (English)', 2, 'Ok', 18, '2024-07-03 03:52:08', 1),
(11177, 20011, 18, 'Communication (Tamil)', 3, 'Decent', 18, '2024-07-03 03:52:08', 1),
(11178, 20011, 18, 'Sales Experience', 2, 'Average', 18, '2024-07-03 03:52:08', 1),
(11179, 20019, 29, 'Communication (English)', 3, 'Good with language', 29, '2024-07-04 07:55:32', 1),
(11180, 20019, 29, 'Convincing Skills', 2, 'Have to improve,', 29, '2024-07-04 07:55:32', 1),
(11181, 20026, 29, 'Communication (English)', 3, 'Good with language', 29, '2024-07-04 07:59:59', 1),
(11182, 20026, 29, 'Convincing Skills', 2, 'good', 29, '2024-07-04 07:59:59', 1),
(11183, 20026, 29, 'Observation Skills', 3, 'Can grab it easily, will be good for our industry', 29, '2024-07-04 07:59:59', 1),
(11184, 19953, 29, 'Communication (English)', 3, 'good with language', 29, '2024-07-04 08:07:26', 1),
(11185, 19953, 29, 'Sustainability', 1, 'have to check and review him monthly', 29, '2024-07-04 08:07:26', 1),
(11186, 19953, 29, 'Sales Experience', 3, 'Exp in Telecalling and handling sales calls', 29, '2024-07-04 08:07:26', 1),
(11187, 20036, 18, 'Appearance', 3, 'Good', 18, '2024-07-05 05:40:10', 1),
(11188, 20036, 18, 'Attitude', 3, 'Decent', 18, '2024-07-05 05:40:10', 1),
(11189, 20036, 18, 'Communication (English)', 3, 'Good', 18, '2024-07-05 05:40:10', 1),
(11190, 20036, 18, 'Communication (Tamil)', 3, 'Good', 18, '2024-07-05 05:40:10', 1),
(11191, 20036, 18, 'Sales Experience', 1, 'Fresher', 18, '2024-07-05 05:40:10', 1),
(11192, 20029, 18, 'Appearance', 3, 'Decent', 18, '2024-07-05 06:06:55', 1),
(11193, 20029, 18, 'Communication (English)', 3, 'Good', 18, '2024-07-05 06:06:55', 1),
(11194, 20029, 18, 'Communication (Tamil)', 3, 'Good', 18, '2024-07-05 06:06:55', 1),
(11195, 20029, 18, 'Importance Of Job', 3, 'Needed', 18, '2024-07-05 06:06:55', 1),
(11196, 20029, 18, 'Sales Experience', 2, 'Average', 18, '2024-07-05 06:06:55', 1),
(11197, 20058, 31, 'Appearance', 4, 'Neat', 31, '2024-07-05 07:09:32', 1),
(11198, 20058, 31, 'Sales Experience', 4, 'Had experience in product sales with maruti spares at madurai.  and 2 yrs experience in sBI cards and Star health as campaign marketing at malls', 31, '2024-07-05 07:09:32', 1),
(11199, 20097, 18, 'Appearance', 3, 'Good', 18, '2024-07-08 03:59:27', 1),
(11200, 20097, 18, 'Attitude', 4, 'Good', 18, '2024-07-08 03:59:27', 1),
(11201, 20097, 18, 'Communication (English)', 3, 'Decent', 18, '2024-07-08 03:59:27', 1),
(11202, 20097, 18, 'Convincing Skills', 3, 'Decent', 18, '2024-07-08 03:59:27', 1),
(11203, 19937, 29, 'Communication (English)', 2, 'Good', 29, '2024-07-10 12:41:46', 1),
(11204, 19937, 29, 'Convincing Skills', 3, 'Can mold to our industry', 29, '2024-07-10 12:41:46', 1),
(11205, 20064, 29, 'Communication (English)', 3, 'good', 29, '2024-07-10 12:43:40', 1),
(11206, 20064, 29, 'Convincing Skills', 3, 'Has skills can do well', 29, '2024-07-10 12:43:40', 1),
(11207, 20058, 29, 'Convincing Skills', 3, 'good at Convincing, can train for life and mf', 29, '2024-07-10 12:46:07', 1),
(11208, 20058, 29, 'Sustainability', 3, 'have to check in 7 days during training, 50% doubt ', 29, '2024-07-10 12:46:07', 1),
(11209, 20058, 29, 'Sales Experience', 3, 'no relevence exp, but can train and check', 29, '2024-07-10 12:46:07', 1),
(11210, 20125, 18, 'Communication (English)', 3, 'Good', 18, '2024-07-10 03:56:15', 1),
(11211, 20125, 18, 'Importance Of Job', 3, 'Need', 18, '2024-07-10 03:56:15', 1),
(11212, 20125, 18, 'Observation Skills', 3, 'Good', 18, '2024-07-10 03:56:15', 1),
(11213, 20125, 18, 'Sustainability', 3, 'Yes', 18, '2024-07-10 03:56:15', 1),
(11214, 20125, 18, 'Sales Experience', 3, 'Good but in other verticles', 18, '2024-07-10 03:56:15', 1),
(11215, 20068, 29, 'Convincing Skills', 2, 'Have to Train and improve, has skills to develope', 29, '2024-07-10 04:32:42', 1),
(11216, 20068, 29, 'Sales Experience', 3, 'Has bank CASA exp, can mold to our industry', 29, '2024-07-10 04:32:42', 1),
(11217, 20138, 30, 'Appearance', 3, 'good', 30, '2024-07-11 11:51:13', 1),
(11218, 20138, 30, 'Communication (English)', 4, 'good', 30, '2024-07-11 11:51:13', 1),
(11219, 20138, 30, 'Confidence Level', 3, 'good', 30, '2024-07-11 11:51:13', 1),
(11220, 20138, 30, 'Sales Experience', 4, 'personal loan', 30, '2024-07-11 11:51:13', 1),
(11221, 20175, 18, 'Appearance', 3, 'Ok', 18, '2024-07-12 04:08:10', 1),
(11222, 20175, 18, 'Attitude', 3, 'Decent', 18, '2024-07-12 04:08:10', 1),
(11223, 20175, 18, 'Communication (English)', 2, 'Ok', 18, '2024-07-12 04:08:10', 1),
(11224, 20175, 18, 'Communication (Tamil)', 3, 'Need improvement', 18, '2024-07-12 04:08:10', 1),
(11225, 20175, 18, 'Convincing Skills', 3, 'Decent', 18, '2024-07-12 04:08:10', 1),
(11226, 20175, 18, 'Existing Experience Analyze', 1, 'Fresher', 18, '2024-07-12 04:08:10', 1),
(11227, 20244, 30, 'Appearance', 3, 'good', 30, '2024-07-17 11:25:51', 1),
(11228, 20244, 30, 'Communication (English)', 3, 'good', 30, '2024-07-17 11:25:51', 1),
(11229, 20244, 30, 'Sustainability', 2, 'will try', 30, '2024-07-17 11:25:51', 1),
(11230, 20212, 30, 'Appearance', 3, 'good', 30, '2024-07-17 11:29:01', 1),
(11231, 20212, 30, 'Communication (English)', 3, 'good', 30, '2024-07-17 11:29:01', 1),
(11232, 20212, 30, 'Existing Experience Analyze', 1, 'fresher', 30, '2024-07-17 11:29:01', 1),
(11233, 20212, 30, 'Observation Skills', 3, 'good', 30, '2024-07-17 11:29:01', 1),
(11234, 20126, 29, 'Communication (English)', 3, 'good', 29, '2024-07-17 11:34:30', 1),
(11235, 20126, 29, 'Convincing Skills', 3, 'Good', 29, '2024-07-17 11:34:30', 1),
(11236, 20140, 29, 'Communication (English)', 3, 'Good at communication', 29, '2024-07-17 11:45:39', 1),
(11237, 20140, 29, 'Convincing Skills', 3, 'Can train for our industry ', 29, '2024-07-17 11:45:39', 1),
(11238, 20140, 29, 'Sales Experience', 3, 'Has Sales exp, can fit our role for sales', 29, '2024-07-17 11:45:39', 1),
(11239, 19905, 29, 'Convincing Skills', 3, 'Good', 29, '2024-07-19 07:47:21', 1),
(11240, 19905, 29, 'Sustainability', 1, 'Have to check in few days', 29, '2024-07-19 07:47:21', 1),
(11241, 19905, 29, 'Sales Experience', 3, 'Has some experience, we have to train and check', 29, '2024-07-19 07:47:21', 1),
(11242, 20155, 29, 'Communication (English)', 3, 'good', 29, '2024-07-19 07:54:19', 1),
(11243, 20155, 29, 'Convincing Skills', 3, 'is good at skill have to train ', 29, '2024-07-19 07:54:19', 1),
(11244, 20333, 30, 'Appearance', 3, 'GOOD', 30, '2024-07-20 11:42:48', 1),
(11245, 20333, 30, 'Communication (English)', 3, 'K', 30, '2024-07-20 11:42:48', 1),
(11246, 20333, 30, 'Observation Skills', 3, 'GOOD', 30, '2024-07-20 11:42:48', 1),
(11247, 20318, 18, 'Appearance', 3, 'Good', 18, '2024-07-22 11:17:30', 1),
(11248, 20318, 18, 'Attitude', 3, 'Good', 18, '2024-07-22 11:17:30', 1),
(11249, 20318, 18, 'Communication (English)', 2, 'Decent', 18, '2024-07-22 11:17:30', 1),
(11250, 20318, 18, 'Convincing Skills', 3, 'Above Average', 18, '2024-07-22 11:17:30', 1),
(11251, 20318, 18, 'Importance Of Job', 4, 'Highly needed', 18, '2024-07-22 11:17:30', 1),
(11252, 20318, 18, 'Sales Experience', 3, 'Good', 18, '2024-07-22 11:17:30', 1),
(11253, 20397, 30, 'Appearance', 3, 'GOOD', 30, '2024-07-23 11:09:14', 1),
(11254, 20397, 30, 'Communication (English)', 3, 'GOOD', 30, '2024-07-23 11:09:14', 1),
(11255, 20397, 30, 'Convincing Skills', 3, 'GOOD', 30, '2024-07-23 11:09:14', 1),
(11256, 20405, 30, 'Appearance', 2, 'K', 30, '2024-07-23 11:11:46', 1),
(11257, 20405, 30, 'Communication (English)', 2, 'K', 30, '2024-07-23 11:11:46', 1),
(11258, 20405, 30, 'Existing Experience Analyze', 1, 'FRESHER', 30, '2024-07-23 11:11:46', 1),
(11259, 20411, 30, 'Appearance', 4, 'GOOD', 30, '2024-07-23 11:12:37', 1),
(11260, 20411, 30, 'Communication (English)', 3, 'GOOD', 30, '2024-07-23 11:12:37', 1),
(11261, 20411, 30, 'Confidence Level', 4, 'GOOD', 30, '2024-07-23 11:12:37', 1),
(11262, 20411, 30, 'Existing Experience Analyze', 3, 'CORE FIELD TELESALES', 30, '2024-07-23 11:12:37', 1),
(11263, 20223, 29, 'Convincing Skills', 3, 'good', 29, '2024-07-25 04:30:17', 1),
(11264, 20223, 29, 'Sales Experience', 2, 'Has some insurance experience, have tp train Aggressively.', 29, '2024-07-25 04:30:17', 1),
(11265, 20435, 29, 'Confidence Level', 2, 'fresher, can manage to learn quickly', 29, '2024-07-25 04:32:58', 1),
(11266, 20439, 29, 'Communication (English)', 3, 'Good at communication', 29, '2024-07-25 05:09:03', 1),
(11267, 20439, 29, 'Convincing Skills', 3, 'Good ', 29, '2024-07-25 05:09:03', 1),
(11268, 20439, 29, 'Sales Experience', 2, 'Was in Retention, have to train for core sales process ', 29, '2024-07-25 05:09:03', 1),
(11269, 20485, 29, 'Convincing Skills', 2, 'good', 29, '2024-08-01 10:31:44', 1),
(11270, 20226, 29, 'Communication (English)', 2, 'good', 29, '2024-08-01 10:33:21', 1),
(11271, 20226, 29, 'Convincing Skills', 3, 'have sales exp, can Improve', 29, '2024-08-01 10:33:21', 1),
(11272, 19803, 29, 'Communication (English)', 2, 'good', 29, '2024-08-01 10:35:30', 1),
(11273, 20418, 29, 'Communication (English)', 2, 'good', 29, '2024-08-01 01:39:09', 1),
(11274, 20418, 29, 'Convincing Skills', 3, 'Has worked in telecalling process, has skills', 29, '2024-08-01 01:39:09', 1),
(11275, 20360, 30, 'Appearance', 4, 'good', 30, '2024-08-01 04:29:42', 1),
(11276, 20571, 30, 'Appearance', 3, 'Good', 30, '2024-08-02 10:01:11', 1),
(11277, 20571, 30, 'Communication (English)', 3, 'Good', 30, '2024-08-02 10:01:11', 1),
(11278, 20571, 30, 'Convincing Skills', 3, 'Better', 30, '2024-08-02 10:01:11', 1),
(11279, 20494, 30, 'Appearance', 3, 'good', 30, '2024-08-06 11:31:52', 1),
(11280, 20494, 30, 'Communication (English)', 3, 'good', 30, '2024-08-06 11:31:52', 1),
(11281, 20494, 30, 'Confidence Level', 3, 'good', 30, '2024-08-06 11:31:52', 1),
(11282, 20646, 18, 'Appearance', 2, 'Ok', 18, '2024-08-06 07:12:47', 1),
(11283, 20646, 18, 'Communication (Tamil)', 2, 'Decent', 18, '2024-08-06 07:12:47', 1),
(11284, 20646, 18, 'Communication (English)', 1, 'Average', 18, '2024-08-06 07:12:47', 1),
(11285, 20646, 18, 'convincing Skills', 3, 'Above Average', 18, '2024-08-06 07:12:47', 1),
(11286, 20646, 18, 'Sustainability', 2, 'Need to filter in Week 1', 18, '2024-08-06 07:12:47', 1),
(11287, 20608, 29, 'Convincing Skills', 3, 'Good', 29, '2024-08-08 12:01:12', 1),
(11288, 20628, 29, 'Communication (English)', 3, 'good', 29, '2024-08-08 12:03:52', 1),
(11289, 20628, 29, 'Convincing Skills', 3, 'has skill can develop for investments', 29, '2024-08-08 12:03:52', 1),
(11290, 20234, 29, 'Convincing Skills', 3, 'Has skills to convince, can train for investments', 29, '2024-08-08 12:09:54', 1),
(11291, 20234, 29, 'Importance Of Job', 1, 'Has switched 3 job in last 5 years,', 29, '2024-08-08 12:09:54', 1),
(11292, 20234, 29, 'Sustainability', 1, 'has attitude, have to develop in positive way and check', 29, '2024-08-08 12:09:54', 1),
(11293, 20234, 29, 'Sales Experience', 3, 'Has sales and telecalling exp, will be usefull for our process', 29, '2024-08-08 12:09:54', 1),
(11294, 20488, 29, 'Sustainability', 1, 'cannot trust,  ', 29, '2024-08-08 12:13:11', 1),
(11295, 20650, 30, 'Appearance', 4, 'good', 30, '2024-08-08 01:08:41', 1),
(11296, 20650, 30, 'Communication (English)', 3, 'good', 30, '2024-08-08 01:08:41', 1),
(11297, 20650, 30, 'Convincing Skills', 4, 'good', 30, '2024-08-08 01:08:41', 1),
(11298, 20650, 30, 'Sales Experience', 4, 'policy bazzar previous experience', 30, '2024-08-08 01:08:41', 1),
(11299, 20589, 30, 'Appearance', 3, 'good', 30, '2024-08-09 06:43:21', 1),
(11300, 20589, 30, 'Communication (English)', 3, 'good', 30, '2024-08-09 06:43:21', 1),
(11301, 20589, 30, 'Sales Experience', 1, 'k', 30, '2024-08-09 06:43:21', 1),
(11302, 20425, 18, 'Appearance', 3, 'Good', 18, '2024-08-19 12:23:15', 1),
(11303, 20425, 18, 'Attitude', 3, 'Good', 18, '2024-08-19 12:23:15', 1),
(11304, 20425, 18, 'Communication (English)', 3, 'Ok', 18, '2024-08-19 12:23:15', 1),
(11305, 20425, 18, 'Importance Of Job', 4, 'Needed', 18, '2024-08-19 12:23:15', 1),
(11306, 20425, 18, 'Sales Experience', 3, 'Good', 18, '2024-08-19 12:23:15', 1),
(11307, 20808, 18, 'Communication (English)', 3, 'Ok', 18, '2024-08-20 01:17:33', 1),
(11308, 20808, 18, 'Importance Of Job', 3, 'Need', 18, '2024-08-20 01:17:33', 1),
(11309, 20808, 18, 'Sales Experience', 2, 'Ok', 18, '2024-08-20 01:17:33', 1),
(11310, 20802, 29, 'Communication (English)', 3, 'Good with communication', 29, '2024-08-21 05:20:44', 1),
(11311, 20802, 29, 'Convincing Skills', 3, 'can do well, has skill to manage', 29, '2024-08-21 05:20:44', 1),
(11312, 20802, 29, 'Sales Experience', 2, 'no sales experience, but can be trained and checked', 29, '2024-08-21 05:20:44', 1),
(11313, 20789, 29, 'Communication (English)', 3, 'Good', 29, '2024-08-21 05:22:39', 1),
(11314, 20789, 29, 'Convincing Skills', 3, 'good', 29, '2024-08-21 05:22:39', 1),
(11315, 20773, 29, 'Communication (English)', 2, 'can manage to good extend', 29, '2024-08-21 05:23:55', 1),
(11316, 20773, 29, 'Convincing Skills', 3, 'good', 29, '2024-08-21 05:23:55', 1),
(11317, 20694, 30, 'Appearance', 3, 'good', 30, '2024-08-23 11:11:31', 1),
(11318, 20694, 30, 'Communication (English)', 4, 'good', 30, '2024-08-23 11:11:31', 1),
(11319, 20694, 30, 'Observation Skills', 4, 'good', 30, '2024-08-23 11:11:31', 1),
(11320, 20694, 30, 'Sales Experience', 3, 'its there', 30, '2024-08-23 11:11:31', 1),
(11321, 20772, 30, 'Appearance', 3, 'good', 30, '2024-08-23 11:12:48', 1),
(11322, 20772, 30, 'Communication (English)', 4, 'good', 30, '2024-08-23 11:12:48', 1),
(11323, 20772, 30, 'Confidence Level', 4, 'good', 30, '2024-08-23 11:12:48', 1),
(11324, 20772, 30, 'Sales Experience', 4, 'core related', 30, '2024-08-23 11:12:48', 1),
(11325, 20685, 29, 'Communication (English)', 2, 'good', 29, '2024-08-24 04:06:27', 1),
(11326, 20685, 29, 'Sales Experience', 2, 'Has sales exp, can try for life and mutual fund', 29, '2024-08-24 04:06:27', 1),
(11327, 20971, 18, 'Importance Of Job', 4, 'High', 18, '2024-08-27 05:30:43', 1),
(11328, 20971, 18, 'Sales Experience', 2, 'Weak', 18, '2024-08-27 05:30:43', 1),
(11329, 20971, 18, 'Existing Experience Analyze', 3, 'Good', 18, '2024-08-27 05:30:43', 1),
(11330, 20963, 18, 'Appearance', 3, 'Good', 18, '2024-08-27 06:30:46', 1),
(11331, 20963, 18, 'Attitude', 4, 'Excellent', 18, '2024-08-27 06:30:46', 1),
(11332, 20963, 18, 'Communication (English)', 3, 'Good', 18, '2024-08-27 06:30:46', 1),
(11333, 20963, 18, 'Existing Experience Analyze', 3, 'Good', 18, '2024-08-27 06:30:46', 1),
(11334, 20963, 18, 'Sales Experience', 3, 'Ok', 18, '2024-08-27 06:30:46', 1),
(11335, 20922, 29, 'Communication (English)', 3, 'Good ', 29, '2024-08-28 01:38:39', 1),
(11336, 20922, 29, 'Convincing Skills', 2, 'Has skill we can develop further', 29, '2024-08-28 01:38:39', 1),
(11337, 20922, 29, 'Sales Experience', 3, 'worked in policy bazaar, has relevant exp, can train other factors and mold', 29, '2024-08-28 01:38:39', 1),
(11338, 20961, 29, 'Communication (English)', 3, 'good', 29, '2024-08-28 07:59:08', 1),
(11339, 20961, 29, 'Convincing Skills', 3, 'has health insurance exp, can mold to our options', 29, '2024-08-28 07:59:08', 1),
(11340, 21025, 11, 'Sustainability', 1, 'switched many companys in short period ', 11, '2024-08-30 10:01:22', 1),
(11341, 20986, 11, 'Sustainability', 1, 'sustainbility problem ', 11, '2024-08-30 10:47:28', 1),
(11342, 20984, 29, 'Convincing Skills', 2, 'good', 29, '2024-08-30 01:34:54', 1),
(11343, 20984, 29, 'Sales Experience', 2, 'need to train and check, can perform', 29, '2024-08-30 01:34:54', 1),
(11344, 20968, 18, 'Appearance', 3, 'Good', 18, '2024-09-02 03:58:32', 1),
(11345, 20968, 18, 'Attitude', 3, 'Good', 18, '2024-09-02 03:58:32', 1),
(11346, 20968, 18, 'Importance Of Job', 3, 'Needed', 18, '2024-09-02 03:58:32', 1),
(11347, 20968, 18, 'Sales Experience', 2, 'Ok', 18, '2024-09-02 03:58:32', 1),
(11348, 20956, 18, 'Appearance', 3, 'Good', 18, '2024-09-03 06:30:03', 1),
(11349, 20956, 18, 'Communication (English)', 3, 'Good', 18, '2024-09-03 06:30:03', 1),
(11350, 20956, 18, 'Convincing Skills', 3, 'Decent', 18, '2024-09-03 06:30:03', 1),
(11351, 20956, 18, 'Importance Of Job', 3, 'Needed', 18, '2024-09-03 06:30:03', 1),
(11352, 21133, 29, 'Communication (English)', 3, 'Good can manage', 29, '2024-09-09 12:35:39', 1),
(11353, 21133, 29, 'Convincing Skills', 3, 'having skills, we have to develop for core sales', 29, '2024-09-09 12:35:39', 1),
(11354, 21133, 29, 'Sales Experience', 3, 'has sales experience, can train for life and mF', 29, '2024-09-09 12:35:39', 1),
(11355, 21223, 30, 'Appearance', 3, 'good', 30, '2024-09-13 09:37:32', 1),
(11356, 21223, 30, 'Communication (English)', 3, 'good', 30, '2024-09-13 09:37:32', 1),
(11357, 21223, 30, 'Sales Experience', 2, '3months in maruthi showroom', 30, '2024-09-13 09:37:32', 1),
(11358, 21058, 30, 'Appearance', 4, 'good', 30, '2024-09-13 09:39:39', 1),
(11359, 21058, 30, 'Communication (English)', 4, 'good', 30, '2024-09-13 09:39:39', 1),
(11360, 21058, 30, 'Pressure Handling', 3, 'sustain', 30, '2024-09-13 09:39:39', 1),
(11361, 21058, 30, 'Sales Experience', 3, 'one year with policy bazzar', 30, '2024-09-13 09:39:39', 1),
(11362, 21220, 30, 'Appearance', 3, 'good', 30, '2024-09-13 11:06:33', 1),
(11363, 21220, 30, 'Communication (English)', 4, 'good', 30, '2024-09-13 11:06:33', 1),
(11364, 21220, 30, 'Existing Experience Analyze', 1, 'some little bit', 30, '2024-09-13 11:06:33', 1),
(11365, 21433, 30, 'Appearance', 3, 'good', 30, '2024-09-17 05:47:05', 1),
(11366, 21433, 30, 'Communication (English)', 3, 'good', 30, '2024-09-17 05:47:05', 1),
(11367, 21433, 30, 'Convincing Skills', 3, 'good', 30, '2024-09-17 05:47:05', 1),
(11368, 21344, 30, 'Appearance', 3, 'good', 30, '2024-09-17 05:48:08', 1),
(11369, 21344, 30, 'Communication (English)', 3, 'skill good', 30, '2024-09-17 05:48:08', 1),
(11370, 21344, 30, 'Convincing Skills', 3, 'k', 30, '2024-09-17 05:48:08', 1),
(11371, 22173, 30, 'Appearance', 3, 'GOOD', 30, '2024-10-09 06:23:00', 1),
(11372, 22173, 30, 'Communication (English)', 3, 'GOOD', 30, '2024-10-09 06:23:00', 1),
(11373, 22173, 30, 'Importance Of Job', 4, 'FAMILY BACKROUND', 30, '2024-10-09 06:23:00', 1),
(11374, 22173, 30, 'Existing Experience Analyze', 2, '2MONTHS IN POLICY BAZZAR', 30, '2024-10-09 06:23:00', 1),
(11375, 22207, 30, 'Appearance', 3, 'good', 30, '2024-10-14 03:52:59', 1),
(11376, 22207, 30, 'Communication (English)', 3, 'good', 30, '2024-10-14 03:52:59', 1),
(11377, 22207, 30, 'Convincing Skills', 3, 'good', 30, '2024-10-14 03:52:59', 1),
(11378, 22207, 30, 'Observation Skills', 3, 'good', 30, '2024-10-14 03:52:59', 1),
(11379, 22207, 30, 'Sales Experience', 3, 'not core related', 30, '2024-10-14 03:52:59', 1),
(11380, 22130, 29, 'convincing Skills', 3, 'Has sales exp, can train and check', 29, '2024-10-18 03:39:52', 1),
(11381, 22471, 18, 'Communication (English)', 2, 'Ok', 18, '2024-10-28 11:23:58', 1),
(11382, 22471, 18, 'Communication (Tamil)', 3, 'Good', 18, '2024-10-28 11:23:58', 1),
(11383, 22471, 18, 'Convincing Skills', 3, 'Decent', 18, '2024-10-28 11:23:58', 1),
(11384, 22471, 18, 'Importance Of Job', 3, 'Needed', 18, '2024-10-28 11:23:58', 1),
(11385, 22471, 18, 'Sales Experience', 3, 'Average but not relevant', 18, '2024-10-28 11:23:58', 1),
(11386, 22331, 18, 'Appearance', 3, 'Good', 18, '2024-11-02 12:26:04', 1),
(11387, 22331, 18, 'Attitude', 3, 'Good', 18, '2024-11-02 12:26:04', 1),
(11388, 22331, 18, 'Communication (English)', 4, 'Good', 18, '2024-11-02 12:26:04', 1),
(11389, 22331, 18, 'Communication (Tamil)', 3, 'Good', 18, '2024-11-02 12:26:04', 1),
(11390, 22331, 18, 'Convincing Skills', 2, 'Ok', 18, '2024-11-02 12:26:04', 1),
(11391, 22331, 18, 'Confidence Level', 3, 'Decent', 18, '2024-11-02 12:26:04', 1),
(11392, 22638, 30, 'Appearance', 3, 'Good', 30, '2024-11-04 11:57:12', 1),
(11393, 22638, 30, 'Communication (English)', 4, 'Good', 30, '2024-11-04 11:57:12', 1),
(11394, 22638, 30, 'Convincing Skills', 4, 'Good', 30, '2024-11-04 11:57:12', 1),
(11395, 22638, 30, 'Confidence Level', 4, 'Good ', 30, '2024-11-04 11:57:12', 1),
(11396, 22638, 30, 'Sales Experience', 5, '1.6yrs in pb', 30, '2024-11-04 11:57:12', 1),
(11397, 14197, 18, 'Attitude', 3, 'Good', 18, '2024-11-07 06:11:25', 1),
(11398, 14197, 18, 'Communication (English)', 1, 'Average', 18, '2024-11-07 06:11:25', 1),
(11399, 14197, 18, 'Communication (Tamil)', 3, 'Decent', 18, '2024-11-07 06:11:25', 1),
(11400, 14197, 18, 'Convincing Skills', 2, 'Ok', 18, '2024-11-07 06:11:25', 1),
(11401, 14197, 18, 'Importance Of Job', 3, 'Need', 18, '2024-11-07 06:11:25', 1),
(11402, 14197, 18, 'Observation Skills', 3, 'Good', 18, '2024-11-07 06:11:25', 1),
(11403, 14197, 18, 'Sales Experience', 2, 'Decent', 18, '2024-11-07 06:11:25', 1),
(11404, 22800, 152, 'Appearance', 3, 'OK', 152, '2024-11-09 02:41:59', 1),
(11405, 22800, 152, 'Attitude', 3, 'Good', 152, '2024-11-09 02:41:59', 1),
(11406, 22800, 152, 'Communication (English)', 3, 'Above average', 152, '2024-11-09 02:41:59', 1),
(11407, 22800, 152, 'Communication (Tamil)', 4, 'Good', 152, '2024-11-09 02:41:59', 1),
(11408, 22800, 152, 'Convincing Skills', 4, 'Good convincing skill', 152, '2024-11-09 02:41:59', 1),
(11409, 22800, 152, 'Sales Experience', 4, 'All previous sales experience', 152, '2024-11-09 02:41:59', 1),
(11410, 22800, 18, 'Attitude', 3, 'Good', 18, '2024-11-14 11:04:45', 1),
(11411, 22800, 18, 'Communication (English)', 2, 'Decent', 18, '2024-11-14 11:04:45', 1),
(11412, 22800, 18, 'Convincing Skills', 3, 'Ok', 18, '2024-11-14 11:04:45', 1),
(11413, 22800, 18, 'Importance Of Job', 3, 'Needed', 18, '2024-11-14 11:04:45', 1),
(11414, 22980, 11, 'Appearance', 3, 'ok', 11, '2024-11-22 02:55:39', 1),
(11415, 22980, 11, 'Attitude', 4, 'ok', 11, '2024-11-22 02:55:39', 1),
(11416, 22980, 11, 'Communication (Tamil)', 5, 'good', 11, '2024-11-22 02:55:39', 1),
(11417, 22980, 11, 'Communication (English)', 3, 'average ', 11, '2024-11-22 02:55:39', 1),
(11418, 22980, 11, 'convincing Skills', 3, 'good', 11, '2024-11-22 02:55:39', 1),
(11419, 22980, 11, 'Confidence Level', 4, 'good', 11, '2024-11-22 02:55:39', 1),
(11420, 22980, 11, 'Importance (Job)', 5, 'high', 11, '2024-11-22 02:55:39', 1),
(11421, 22980, 11, 'Observation skills', 4, 'good', 11, '2024-11-22 02:55:39', 1),
(11422, 22980, 11, 'Pressure Handling', 4, 'she can', 11, '2024-11-22 02:55:39', 1),
(11423, 22980, 11, 'patience', 4, 'ok', 11, '2024-11-22 02:55:39', 1),
(11424, 22980, 11, 'Sustainability', 4, 'ok', 11, '2024-11-22 02:55:39', 1),
(11425, 23079, 18, 'Appearance', 2, 'Ok', 18, '2024-12-17 04:43:13', 1),
(11426, 23079, 18, 'Attitude', 2, 'Decent', 18, '2024-12-17 04:43:13', 1),
(11427, 23079, 18, 'Communication (English)', 3, 'Above Average', 18, '2024-12-17 04:43:13', 1),
(11428, 23079, 18, 'Communication (Tamil)', 2, 'Good', 18, '2024-12-17 04:43:13', 1),
(11429, 23079, 18, 'Convincing Skills', 3, 'Ok', 18, '2024-12-17 04:43:13', 1),
(11430, 23079, 18, 'Sustainability', 2, 'Need to recheck in the training period', 18, '2024-12-17 04:43:13', 1),
(11431, 23079, 18, 'Sales Experience', 2, 'Low and not relevant', 18, '2024-12-17 04:43:13', 1),
(11432, 23079, 18, 'Existing Experience Analyze', 3, 'Good', 18, '2024-12-17 04:43:13', 1),
(11433, 23465, 30, 'Appearance', 3, 'good', 30, '2025-01-04 12:24:19', 1),
(11434, 23465, 30, 'Communication (English)', 3, 'k', 30, '2025-01-04 12:24:19', 1),
(11435, 23465, 30, 'Confidence Level', 2, 'k', 30, '2025-01-04 12:24:19', 1),
(11436, 23456, 30, 'Appearance', 3, 'good', 30, '2025-01-04 12:26:39', 1),
(11437, 23456, 30, 'Communication (English)', 3, 'good', 30, '2025-01-04 12:26:39', 1),
(11438, 23456, 30, 'Observation Skills', 3, 'good', 30, '2025-01-04 12:26:39', 1),
(11439, 23596, 30, 'Appearance', 4, 'good', 30, '2025-01-11 11:34:43', 1),
(11440, 23596, 30, 'Attitude', 3, 'good', 30, '2025-01-11 11:34:43', 1),
(11441, 23596, 30, 'Confidence Level', 3, 'good', 30, '2025-01-11 11:34:43', 1),
(11442, 23577, 30, 'Appearance', 3, 'good', 30, '2025-01-11 11:35:44', 1),
(11443, 23577, 30, 'Communication (English)', 4, 'professional', 30, '2025-01-11 11:35:44', 1),
(11444, 23577, 30, 'Convincing Skills', 3, 'good', 30, '2025-01-11 11:35:44', 1),
(11445, 23562, 30, 'Appearance', 3, 'good', 30, '2025-01-11 11:37:07', 1),
(11446, 23562, 30, 'Communication (English)', 3, 'good', 30, '2025-01-11 11:37:07', 1),
(11447, 23709, 30, 'Appearance', 3, 'good', 30, '2025-01-21 06:52:04', 1),
(11448, 23709, 30, 'Communication (English)', 2, 'average', 30, '2025-01-21 06:52:04', 1),
(11449, 23709, 30, 'Confidence Level', 3, 'k', 30, '2025-01-21 06:52:04', 1),
(11450, 23668, 30, 'Appearance', 3, 'good', 30, '2025-01-21 06:54:19', 1),
(11451, 23668, 30, 'Communication (English)', 3, 'good', 30, '2025-01-21 06:54:19', 1),
(11452, 23668, 30, 'Convincing Skills', 3, 'good', 30, '2025-01-21 06:54:19', 1),
(11453, 23668, 30, 'Existing Experience Analyze', 2, 'not core related', 30, '2025-01-21 06:54:19', 1),
(11454, 23665, 30, 'Appearance', 4, 'good', 30, '2025-01-21 06:55:31', 1),
(11455, 23665, 30, 'Communication (English)', 4, 'good', 30, '2025-01-21 06:55:31', 1),
(11456, 23665, 30, 'Existing Experience Analyze', 3, 'lic', 30, '2025-01-21 06:55:31', 1),
(11457, 23665, 30, 'Pressure Handling', 3, 'will sustain', 30, '2025-01-21 06:55:31', 1),
(11458, 23734, 29, 'Communication (English)', 2, 'good', 29, '2025-01-27 06:05:12', 1),
(11459, 23734, 29, 'Sales Experience', 2, 'worked for card and loan sales as a telecalling, need to train and check', 29, '2025-01-27 06:05:12', 1),
(11460, 23841, 29, 'Communication (English)', 3, 'ok', 29, '2025-02-04 01:17:08', 1),
(11461, 23917, 30, 'Appearance', 3, 'good', 30, '2025-02-05 10:00:34', 1),
(11462, 23917, 30, 'Communication (English)', 3, 'good', 30, '2025-02-05 10:00:34', 1),
(11463, 23917, 30, 'Confidence Level', 3, 'good', 30, '2025-02-05 10:00:34', 1),
(11464, 23975, 30, 'Appearance', 3, 'Good', 30, '2025-02-08 07:10:15', 1),
(11465, 23975, 30, 'Communication (English)', 4, 'Good', 30, '2025-02-08 07:10:15', 1),
(11466, 23975, 30, 'Observation Skills', 3, 'Good', 30, '2025-02-08 07:10:15', 1),
(11467, 23975, 30, 'Sales Experience', 3, 'More than year policy bazazar ', 30, '2025-02-08 07:10:15', 1),
(11468, 23579, 30, 'Appearance', 3, 'Good', 30, '2025-02-08 07:12:04', 1),
(11469, 23579, 30, 'Communication (English)', 3, 'Good', 30, '2025-02-08 07:12:04', 1),
(11470, 23579, 30, 'Communication (Tamil)', 5, 'Yes', 30, '2025-02-08 07:12:04', 1),
(11471, 23579, 30, 'Sales Experience', 1, 'Nil', 30, '2025-02-08 07:12:04', 1),
(11472, 23987, 30, 'Appearance', 3, 'Good', 30, '2025-02-08 07:13:28', 1),
(11473, 23987, 30, 'Communication (English)', 3, 'Good', 30, '2025-02-08 07:13:28', 1),
(11474, 23987, 30, 'Convincing Skills', 2, 'K need to train', 30, '2025-02-08 07:13:28', 1),
(11475, 23987, 30, 'Sales Experience', 1, 'Fresher', 30, '2025-02-08 07:13:28', 1),
(11476, 23600, 30, 'Appearance', 3, 'good', 30, '2025-02-14 10:18:33', 1),
(11477, 23600, 30, 'Communication (English)', 3, 'good', 30, '2025-02-14 10:18:33', 1),
(11478, 23600, 30, 'Convincing Skills', 3, 'good', 30, '2025-02-14 10:18:33', 1),
(11479, 24043, 152, 'Appearance', 4, 'Ok\n', 152, '2025-02-15 07:48:28', 1),
(11480, 24043, 152, 'Attitude', 3, 'ok\n', 152, '2025-02-15 07:48:28', 1),
(11481, 24043, 152, 'Communication (English)', 3, 'ok', 152, '2025-02-15 07:48:28', 1),
(11482, 24043, 152, 'Communication (Tamil)', 3, 'ok', 152, '2025-02-15 07:48:28', 1),
(11483, 24043, 152, 'Convincing Skills', 3, 'ok', 152, '2025-02-15 07:48:28', 1),
(11484, 24043, 152, 'Confidence Level', 3, 'ok', 152, '2025-02-15 07:48:28', 1),
(11485, 24043, 152, 'Importance Of Job', 4, 'ok', 152, '2025-02-15 07:48:28', 1),
(11486, 24043, 152, 'Observation Skills', 2, 'ok', 152, '2025-02-15 07:48:28', 1),
(11487, 24043, 152, 'Pressure Handling', 3, 'ok', 152, '2025-02-15 07:48:28', 1),
(11488, 24043, 152, 'patience', 3, 'ok', 152, '2025-02-15 07:48:28', 1),
(11489, 24043, 152, 'Sustainability', 4, 'ok', 152, '2025-02-15 07:48:28', 1),
(11490, 24043, 152, 'Sales Experience', 4, 'ok', 152, '2025-02-15 07:48:28', 1),
(11491, 24043, 152, 'Existing Experience Analyze', 3, 'ok', 152, '2025-02-15 07:48:28', 1),
(11492, 24043, 152, 'Practical Challenges Outcome', 2, 'ok', 152, '2025-02-15 07:48:28', 1);
INSERT INTO `cw_interviewer_log` (`prime_interviewer_log_id`, `prime_candidate_tracker_id`, `interviewer`, `question`, `rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(11493, 24043, 152, 'Willing To Work On Holidays', 4, 'ok', 152, '2025-02-15 07:48:28', 1),
(11494, 24147, 18, 'Appearance', 2, 'Ok', 18, '2025-02-18 01:44:37', 1),
(11495, 24147, 18, 'Attitude', 3, 'Good', 18, '2025-02-18 01:44:37', 1),
(11496, 24147, 18, 'Communication (English)', 3, 'Good', 18, '2025-02-18 01:44:37', 1),
(11497, 24147, 18, 'Communication (Tamil)', 3, 'Good', 18, '2025-02-18 01:44:37', 1),
(11498, 24147, 18, 'Importance Of Job', 4, 'Highly needed', 18, '2025-02-18 01:44:37', 1),
(11499, 24147, 18, 'Sustainability', 3, 'Need to check but can retain', 18, '2025-02-18 01:44:37', 1),
(11500, 24147, 18, 'Sales Experience', 1, 'Poor', 18, '2025-02-18 01:44:37', 1),
(11501, 24147, 18, 'Existing Experience Analyze', 3, 'Decent', 18, '2025-02-18 01:44:37', 1),
(11502, 24151, 30, 'Appearance', 3, 'Good', 30, '2025-02-19 03:35:21', 1),
(11503, 24151, 30, 'Communication (English)', 3, 'Good', 30, '2025-02-19 03:35:21', 1),
(11504, 24151, 30, 'Convincing Skills', 3, 'Good', 30, '2025-02-19 03:35:21', 1),
(11505, 24267, 29, 'Communication (English)', 3, 'ok', 29, '2025-02-26 06:02:21', 1),
(11506, 24267, 29, 'Convincing Skills', 3, 'Good at convincing', 29, '2025-02-26 06:02:21', 1),
(11507, 24267, 29, 'Sales Experience', 3, 'Can train and mold for financial advice', 29, '2025-02-26 06:02:21', 1),
(11508, 24324, 30, 'Communication (English)', 1, 'NOT UPTO THE MARK', 30, '2025-02-28 12:59:02', 1),
(11509, 24324, 30, 'Confidence Level', 1, 'ZERO', 30, '2025-02-28 12:59:02', 1),
(11510, 24217, 30, 'Appearance', 4, 'GOOD', 30, '2025-02-28 01:00:14', 1),
(11511, 24217, 30, 'Communication (English)', 3, 'GOOD', 30, '2025-02-28 01:00:14', 1),
(11512, 24351, 30, 'Appearance', 3, 'good', 30, '2025-03-04 12:39:29', 1),
(11513, 24351, 30, 'Communication (English)', 3, 'good', 30, '2025-03-04 12:39:29', 1),
(11514, 24351, 30, 'Importance Of Job', 3, 'looking for growth', 30, '2025-03-04 12:39:29', 1),
(11515, 24184, 30, 'Appearance', 3, 'good', 30, '2025-03-04 12:41:11', 1),
(11516, 24184, 30, 'Communication (English)', 2, 'managable', 30, '2025-03-04 12:41:11', 1),
(11517, 24367, 30, 'Appearance', 3, 'GOOD', 30, '2025-03-12 05:08:46', 1),
(11518, 24367, 30, 'Communication (English)', 3, 'GOOD', 30, '2025-03-12 05:08:46', 1),
(11519, 24367, 30, 'Convincing Skills', 3, 'GOOD', 30, '2025-03-12 05:08:46', 1),
(11520, 24461, 29, 'Communication (English)', 3, 'good', 29, '2025-03-15 06:32:26', 1),
(11521, 24461, 29, 'Sales Experience', 2, 'ok', 29, '2025-03-15 06:32:26', 1),
(11522, 24526, 30, 'Appearance', 3, 'good', 30, '2025-03-21 04:56:04', 1),
(11523, 24526, 30, 'Communication (English)', 3, 'good', 30, '2025-03-21 04:56:04', 1),
(11524, 24526, 30, 'Convincing Skills', 3, 'good', 30, '2025-03-21 04:56:04', 1),
(11525, 24550, 29, 'Communication (English)', 3, 'good', 29, '2025-04-07 10:18:10', 1),
(11526, 24550, 29, 'Sales Experience', 2, 'other sector exp, can mold for core sales', 29, '2025-04-07 10:18:10', 1),
(11527, 24677, 30, 'Appearance', 3, 'good', 30, '2025-04-08 12:15:35', 1),
(11528, 24677, 30, 'Communication (English)', 3, 'good', 30, '2025-04-08 12:15:35', 1),
(11529, 24677, 30, 'Existing Experience Analyze', 1, 'fresher', 30, '2025-04-08 12:15:35', 1),
(11530, 24677, 30, 'Observation Skills', 3, 'good', 30, '2025-04-08 12:15:35', 1),
(11531, 24855, 30, 'Appearance', 3, 'good', 30, '2025-04-26 12:14:55', 1),
(11532, 24855, 30, 'Communication (English)', 3, 'good', 30, '2025-04-26 12:14:55', 1),
(11533, 24855, 30, 'Convincing Skills', 2, 'k', 30, '2025-04-26 12:14:55', 1),
(11534, 25018, 30, 'Appearance', 3, 'GOOD', 30, '2025-05-14 12:25:18', 1),
(11535, 25018, 30, 'Communication (English)', 4, 'GOOD', 30, '2025-05-14 12:25:18', 1),
(11536, 25018, 30, 'Existing Experience Analyze', 3, 'NOT OUR CORE RELATED BUT SHE IN TEACHING LINE', 30, '2025-05-14 12:25:18', 1),
(11537, 25018, 30, 'Observation Skills', 3, 'K', 30, '2025-05-14 12:25:18', 1),
(11538, 25032, 30, 'Appearance', 3, 'good', 30, '2025-05-15 02:55:57', 1),
(11539, 25032, 30, 'Communication (English)', 3, 'good', 30, '2025-05-15 02:55:57', 1),
(11540, 25032, 30, 'Existing Experience Analyze', 1, 'fresher', 30, '2025-05-15 02:55:57', 1),
(11541, 25080, 30, 'Appearance', 3, 'good', 30, '2025-05-22 10:42:38', 1),
(11542, 25080, 30, 'Communication (English)', 4, 'good', 30, '2025-05-22 10:42:38', 1),
(11543, 25080, 30, 'Convincing Skills', 3, 'good', 30, '2025-05-22 10:42:38', 1),
(11544, 25070, 30, 'Appearance', 3, 'good', 30, '2025-05-23 04:27:03', 1),
(11545, 25070, 30, 'Communication (English)', 4, 'good', 30, '2025-05-23 04:27:03', 1),
(11546, 25070, 30, 'Convincing Skills', 3, 'good', 30, '2025-05-23 04:27:03', 1),
(11547, 25070, 30, 'Willing To Work On Holidays', 4, 'will work', 30, '2025-05-23 04:27:03', 1),
(11548, 25110, 152, 'Appearance', 4, 'Good Looking', 152, '2025-05-26 12:17:42', 1),
(11549, 25110, 152, 'Attitude', 4, 'Fine attitude', 152, '2025-05-26 12:17:42', 1),
(11550, 25110, 152, 'Communication (English)', 3, 'Good but need to improve to conversational communication', 152, '2025-05-26 12:17:42', 1),
(11551, 25110, 152, 'Communication (Tamil)', 4, 'Good', 152, '2025-05-26 12:17:42', 1),
(11552, 25110, 152, 'Convincing Skills', 3, 'Good', 152, '2025-05-26 12:17:42', 1),
(11553, 25110, 152, 'Confidence Level', 4, 'Confident enough not over confident as well', 152, '2025-05-26 12:17:42', 1),
(11554, 25110, 152, 'Importance Of Job', 4, 'Has a younger sister and fatherxquots income is not regular', 152, '2025-05-26 12:17:42', 1),
(11555, 25110, 152, 'Observation Skills', 4, 'Good, Listens to the question asked and responds properly', 152, '2025-05-26 12:17:42', 1),
(11556, 25110, 152, 'Pressure Handling', 3, 'Expecting to handle well', 152, '2025-05-26 12:17:42', 1),
(11557, 25110, 152, 'patience', 4, 'Good', 152, '2025-05-26 12:17:42', 1),
(11558, 25110, 152, 'Sustainability', 3, 'Cant say as fresher, but seems reliable', 152, '2025-05-26 12:17:42', 1),
(11559, 25110, 152, 'Sales Experience', 1, 'Fresher', 152, '2025-05-26 12:17:42', 1),
(11560, 25110, 152, 'Existing Experience Analyze', 1, 'Fresher', 152, '2025-05-26 12:17:42', 1),
(11561, 25110, 152, 'Practical Challenges Outcome', 3, 'Good ', 152, '2025-05-26 12:17:42', 1),
(11562, 25110, 152, 'Willing To Work On Holidays', 4, 'Ready', 152, '2025-05-26 12:17:42', 1),
(11563, 22946, 30, 'Appearance', 3, 'good', 30, '2025-05-28 10:15:30', 1),
(11564, 22946, 30, 'Communication (English)', 3, 'good', 30, '2025-05-28 10:15:30', 1),
(11565, 22946, 30, 'Confidence Level', 3, 'good', 30, '2025-05-28 10:15:30', 1),
(11566, 25144, 30, 'Appearance', 4, 'GOOD', 30, '2025-05-28 06:47:20', 1),
(11567, 25144, 30, 'Communication (English)', 4, 'GOOD', 30, '2025-05-28 06:47:20', 1),
(11568, 25144, 30, 'Confidence Level', 3, 'GOOD', 30, '2025-05-28 06:47:20', 1),
(11569, 25151, 30, 'Appearance', 3, 'GOOD', 30, '2025-05-28 06:49:08', 1),
(11570, 25151, 30, 'Communication (English)', 4, 'GOOD', 30, '2025-05-28 06:49:08', 1),
(11571, 25151, 30, 'Confidence Level', 4, 'GOOD', 30, '2025-05-28 06:49:08', 1),
(11572, 25110, 18, 'Appearance', 3, 'Ok', 18, '2025-05-30 10:31:50', 1),
(11573, 25110, 18, 'Attitude', 4, 'Good', 18, '2025-05-30 10:31:50', 1),
(11574, 25110, 18, 'Communication (English)', 3, 'Average', 18, '2025-05-30 10:31:50', 1),
(11575, 25110, 18, 'Communication (Tamil)', 3, 'Ok', 18, '2025-05-30 10:31:50', 1),
(11576, 25110, 18, 'Convincing Skills', 2, 'Need to Improve', 18, '2025-05-30 10:31:50', 1),
(11577, 25110, 18, 'Confidence Level', 4, 'Good', 18, '2025-05-30 10:31:50', 1),
(11578, 25110, 18, 'Observation Skills', 3, 'Decent', 18, '2025-05-30 10:31:50', 1),
(11579, 25110, 18, 'patience', 3, 'Need to work', 18, '2025-05-30 10:31:50', 1),
(11580, 25110, 18, 'Sustainability', 2, 'Doubtful as he is still a fresher and he got a lot to figure out', 18, '2025-05-30 10:31:50', 1),
(11581, 25110, 18, 'Sales Experience', 1, 'Nil', 18, '2025-05-30 10:31:50', 1),
(11582, 25159, 30, 'Appearance', 3, 'good', 30, '2025-05-30 05:20:09', 1),
(11583, 25159, 30, 'Communication (English)', 4, 'good', 30, '2025-05-30 05:20:09', 1),
(11584, 25159, 30, 'Convincing Skills', 3, 'good', 30, '2025-05-30 05:20:09', 1),
(11585, 25159, 30, 'Sales Experience', 3, 'real estate and builders', 30, '2025-05-30 05:20:09', 1),
(11586, 25163, 30, 'Appearance', 3, 'good', 30, '2025-05-30 05:21:23', 1),
(11587, 25163, 30, 'Communication (English)', 4, 'good', 30, '2025-05-30 05:21:23', 1),
(11588, 25163, 30, 'Confidence Level', 2, 'k', 30, '2025-05-30 05:21:23', 1),
(11589, 25115, 30, 'Appearance', 4, 'good', 30, '2025-05-31 06:03:31', 1),
(11590, 25115, 30, 'Communication (English)', 3, 'k managable', 30, '2025-05-31 06:03:31', 1),
(11591, 25115, 30, 'Convincing Skills', 3, 'good', 30, '2025-05-31 06:03:31', 1),
(11592, 25207, 30, 'Appearance', 3, 'Good', 30, '2025-06-11 01:43:34', 1),
(11593, 25207, 30, 'Communication (English)', 3, 'Good', 30, '2025-06-11 01:43:34', 1),
(11594, 25207, 30, 'Confidence Level', 3, 'Good', 30, '2025-06-11 01:43:34', 1),
(11595, 25244, 30, 'Appearance', 3, 'good', 30, '2025-06-13 09:54:11', 1),
(11596, 25244, 30, 'Communication (English)', 4, 'good', 30, '2025-06-13 09:54:11', 1),
(11597, 25244, 30, 'Importance Of Job', 3, 'yes', 30, '2025-06-13 09:54:11', 1),
(11598, 25245, 30, 'Appearance', 3, 'good', 30, '2025-06-13 09:55:28', 1),
(11599, 25245, 30, 'Communication (English)', 4, 'good', 30, '2025-06-13 09:55:28', 1),
(11600, 25245, 30, 'Confidence Level', 3, 'good', 30, '2025-06-13 09:55:28', 1),
(11601, 25245, 30, 'Sales Experience', 3, 'yes not in core related', 30, '2025-06-13 09:55:28', 1),
(11602, 25345, 30, 'Appearance', 3, 'good', 30, '2025-06-14 05:17:05', 1),
(11603, 25345, 30, 'Communication (English)', 3, 'good', 30, '2025-06-14 05:17:05', 1),
(11604, 25369, 30, 'Appearance', 3, 'good', 30, '2025-06-16 07:23:12', 1),
(11605, 25369, 30, 'Communication (English)', 4, 'good', 30, '2025-06-16 07:23:12', 1),
(11606, 25369, 30, 'Existing Experience Analyze', 3, 'not in core but tele sales experience', 30, '2025-06-16 07:23:12', 1),
(11607, 25503, 30, 'Appearance', 3, 'good', 30, '2025-06-26 10:26:58', 1),
(11608, 25503, 30, 'Communication (English)', 4, 'good', 30, '2025-06-26 10:26:58', 1),
(11609, 25503, 30, 'Existing Experience Analyze', 3, 'good', 30, '2025-06-26 10:26:58', 1),
(11610, 25467, 18, 'Attitude', 4, 'Good', 18, '2025-06-27 05:08:15', 1),
(11611, 25467, 18, 'Communication (English)', 3, 'Good', 18, '2025-06-27 05:08:15', 1),
(11612, 25467, 18, 'Convincing Skills', 3, 'Decent', 18, '2025-06-27 05:08:15', 1),
(11613, 25467, 18, 'Confidence Level', 3, 'Good', 18, '2025-06-27 05:08:15', 1),
(11614, 25467, 18, 'Importance Of Job', 3, 'Needed', 18, '2025-06-27 05:08:15', 1),
(11615, 25467, 18, 'Sustainability', 3, 'Depends onManager', 18, '2025-06-27 05:08:15', 1),
(11616, 25621, 30, 'Appearance', 3, 'good', 30, '2025-07-01 02:54:28', 1),
(11617, 25621, 30, 'Communication (English)', 4, 'good', 30, '2025-07-01 02:54:28', 1),
(11618, 25621, 30, 'Confidence Level', 3, 'good', 30, '2025-07-01 02:54:28', 1),
(11619, 25604, 29, 'Convincing Skills', 3, 'Good', 29, '2025-07-02 06:31:29', 1),
(11620, 25711, 29, 'Convincing Skills', 3, 'Good', 29, '2025-07-05 06:31:21', 1),
(11621, 25711, 29, 'Sales Experience', 2, 'Has exp, we have to mold', 29, '2025-07-05 06:31:21', 1),
(11622, 25712, 29, 'Convincing Skills', 3, 'good at convining', 29, '2025-07-05 06:56:02', 1),
(11623, 25712, 29, 'Importance Of Job', 2, 'lot of breaks in previous exp, we have to check during training period', 29, '2025-07-05 06:56:02', 1),
(11624, 25686, 18, 'Appearance', 3, 'Ok', 18, '2025-07-10 11:01:53', 1),
(11625, 25686, 18, 'Attitude', 3, 'Ok', 18, '2025-07-10 11:01:53', 1),
(11626, 25686, 18, 'Communication (English)', 2, 'Average', 18, '2025-07-10 11:01:53', 1),
(11627, 25686, 18, 'Communication (Tamil)', 3, 'Good', 18, '2025-07-10 11:01:53', 1),
(11628, 25686, 18, 'Convincing Skills', 3, 'Need to Train', 18, '2025-07-10 11:01:53', 1),
(11629, 25686, 18, 'Confidence Level', 3, 'Good', 18, '2025-07-10 11:01:53', 1),
(11630, 25686, 18, 'patience', 2, 'Need to Improve', 18, '2025-07-10 11:01:53', 1),
(11631, 25686, 18, 'Sales Experience', 1, 'Nil', 18, '2025-07-10 11:01:53', 1),
(11632, 25649, 18, 'Attitude', 2, 'Ok', 18, '2025-07-10 11:37:30', 1),
(11633, 25649, 18, 'Convincing Skills', 2, 'Average', 18, '2025-07-10 11:37:30', 1),
(11634, 25649, 18, 'Confidence Level', 3, 'Good', 18, '2025-07-10 11:37:30', 1),
(11635, 25649, 18, 'Importance Of Job', 3, 'Highly needed', 18, '2025-07-10 11:37:30', 1),
(11636, 25649, 18, 'Sustainability', 3, 'Ok', 18, '2025-07-10 11:37:30', 1),
(11637, 25649, 18, 'Sales Experience', 3, 'Ok', 18, '2025-07-10 11:37:30', 1),
(11638, 25735, 30, 'Appearance', 3, 'good', 30, '2025-07-11 06:32:16', 1),
(11639, 25735, 30, 'Communication (English)', 3, 'good', 30, '2025-07-11 06:32:16', 1),
(11640, 25735, 30, 'Convincing Skills', 3, 'good', 30, '2025-07-11 06:32:16', 1),
(11641, 25735, 30, 'Observation Skills', 3, 'good', 30, '2025-07-11 06:32:16', 1),
(11642, 25812, 30, 'Appearance', 4, 'good', 30, '2025-07-14 03:00:26', 1),
(11643, 25812, 30, 'Communication (English)', 2, 'Managable', 30, '2025-07-14 03:00:26', 1),
(11644, 25812, 30, 'Convincing Skills', 3, 'good', 30, '2025-07-14 03:00:26', 1),
(11645, 25850, 30, 'Appearance', 3, 'good', 30, '2025-07-14 06:26:09', 1),
(11646, 25850, 30, 'Communication (English)', 3, 'good', 30, '2025-07-14 06:26:09', 1),
(11647, 25850, 30, 'Convincing Skills', 3, 'good', 30, '2025-07-14 06:26:09', 1),
(11648, 25890, 30, 'Appearance', 3, 'good', 30, '2025-07-16 04:45:13', 1),
(11649, 25890, 30, 'Communication (English)', 3, 'good', 30, '2025-07-16 04:45:13', 1),
(11650, 25890, 30, 'Existing Experience Analyze', 3, 'yes ', 30, '2025-07-16 04:45:13', 1),
(11651, 25888, 30, 'Appearance', 3, 'good', 30, '2025-07-17 07:06:08', 1),
(11652, 25888, 30, 'Communication (English)', 3, 'good', 30, '2025-07-17 07:06:08', 1),
(11653, 25888, 30, 'Communication (Tamil)', 5, 'yes', 30, '2025-07-17 07:06:08', 1),
(11654, 25888, 30, 'Confidence Level', 3, 'good', 30, '2025-07-17 07:06:08', 1),
(11655, 26003, 29, 'Communication (English)', 2, 'ok', 29, '2025-07-24 10:00:22', 1),
(11656, 26003, 29, 'Convincing Skills', 3, 'Good, can train', 29, '2025-07-24 10:00:22', 1),
(11657, 26003, 29, 'Observation Skills', 3, 'good', 29, '2025-07-24 10:00:22', 1),
(11658, 26277, 30, 'Appearance', 3, 'GOOD', 30, '2025-08-06 04:31:26', 1),
(11659, 26277, 30, 'Communication (English)', 4, 'GOOD', 30, '2025-08-06 04:31:26', 1),
(11660, 26277, 30, 'Observation Skills', 4, 'SMART', 30, '2025-08-06 04:31:26', 1),
(11661, 26308, 30, 'Appearance', 3, 'good', 30, '2025-08-08 04:01:47', 1),
(11662, 26308, 30, 'Communication (English)', 3, 'good', 30, '2025-08-08 04:01:47', 1),
(11663, 26308, 30, 'Convincing Skills', 3, 'good', 30, '2025-08-08 04:01:47', 1),
(11664, 26308, 30, 'Sustainability', 3, 'min 1.5yr', 30, '2025-08-08 04:01:47', 1),
(11665, 21547, 18, 'Attitude', 4, 'Good', 18, '2025-08-19 12:02:42', 1),
(11666, 21547, 18, 'Communication (English)', 2, 'Good Enough', 18, '2025-08-19 12:02:42', 1),
(11667, 21547, 18, 'Communication (Tamil)', 3, 'Decent', 18, '2025-08-19 12:02:42', 1),
(11668, 21547, 18, 'Convincing Skills', 3, 'Ok', 18, '2025-08-19 12:02:42', 1),
(11669, 21547, 18, 'Confidence Level', 4, 'Good', 18, '2025-08-19 12:02:42', 1),
(11670, 26438, 18, 'Appearance', 3, 'Ok', 18, '2025-08-20 11:25:45', 1),
(11671, 26438, 18, 'Attitude', 4, 'Good', 18, '2025-08-20 11:25:45', 1),
(11672, 26438, 18, 'Communication (English)', 2, 'Ok', 18, '2025-08-20 11:25:45', 1),
(11673, 26438, 18, 'Communication (Tamil)', 3, 'Decent', 18, '2025-08-20 11:25:45', 1),
(11674, 26438, 18, 'Convincing Skills', 3, 'Ok', 18, '2025-08-20 11:25:45', 1),
(11675, 26438, 18, 'Confidence Level', 4, 'High', 18, '2025-08-20 11:25:45', 1),
(11676, 26475, 30, 'Appearance', 3, 'good', 30, '2025-08-28 04:42:21', 1),
(11677, 26475, 30, 'Communication (English)', 2, 'managable', 30, '2025-08-28 04:42:21', 1),
(11678, 26475, 30, 'Convincing Skills', 3, 'good', 30, '2025-08-28 04:42:21', 1),
(11679, 26475, 30, 'Existing Experience Analyze', 4, 'close to 4yrs telesales experience', 30, '2025-08-28 04:42:21', 1),
(11680, 26494, 30, 'Appearance', 3, 'good', 30, '2025-08-28 04:43:24', 1),
(11681, 26494, 30, 'Communication (English)', 3, 'managable', 30, '2025-08-28 04:43:24', 1),
(11682, 26494, 30, 'Sales Experience', 3, 'telesales experience', 30, '2025-08-28 04:43:24', 1),
(11683, 26478, 30, 'Appearance', 3, 'GOOD', 30, '2025-08-29 11:36:26', 1),
(11684, 26478, 30, 'Communication (English)', 3, 'GOOD', 30, '2025-08-29 11:36:26', 1),
(11685, 26533, 29, 'Communication (English)', 3, 'Good', 29, '2025-08-30 07:31:35', 1),
(11686, 26533, 29, 'Convincing Skills', 2, 'ok', 29, '2025-08-30 07:31:35', 1),
(11687, 26533, 29, 'Sales Experience', 3, 'no relavent exp, we can mold.', 29, '2025-08-30 07:31:35', 1),
(11688, 26541, 30, 'Appearance', 4, 'good', 30, '2025-09-03 05:42:19', 1),
(11689, 26541, 30, 'Communication (English)', 3, 'good', 30, '2025-09-03 05:42:19', 1),
(11690, 26573, 18, 'Appearance', 3, 'Decent', 18, '2025-09-03 05:47:41', 1),
(11691, 26573, 18, 'Attitude', 3, 'Strong', 18, '2025-09-03 05:47:41', 1),
(11692, 26573, 18, 'Communication (English)', 3, 'Ok', 18, '2025-09-03 05:47:41', 1),
(11693, 26573, 18, 'Communication (Tamil)', 3, 'Ok', 18, '2025-09-03 05:47:41', 1),
(11694, 26573, 18, 'Convincing Skills', 3, 'Good', 18, '2025-09-03 05:47:41', 1),
(11695, 26573, 18, 'Sales Experience', 1, 'Not Relevant and low', 18, '2025-09-03 05:47:41', 1),
(11696, 26573, 18, 'Practical Challenges Outcome', 3, 'looks ok', 18, '2025-09-03 05:47:41', 1),
(11697, 26599, 30, 'Appearance', 3, 'good', 30, '2025-09-06 03:20:54', 1),
(11698, 26599, 30, 'Communication (English)', 3, 'good', 30, '2025-09-06 03:20:54', 1),
(11699, 26599, 30, 'Existing Experience Analyze', 3, 'kotak bank re 1 year 6months', 30, '2025-09-06 03:20:54', 1),
(11700, 26677, 30, 'Appearance', 3, 'good', 30, '2025-09-09 05:37:38', 1),
(11701, 26677, 30, 'Communication (English)', 3, 'Managable', 30, '2025-09-09 05:37:38', 1),
(11702, 26677, 30, 'Confidence Level', 3, 'good', 30, '2025-09-09 05:37:38', 1),
(11703, 26677, 30, 'Existing Experience Analyze', 5, '12yrs experience in bluechips', 30, '2025-09-09 05:37:38', 1),
(11704, 26644, 30, 'Appearance', 3, 'good', 30, '2025-09-09 05:38:57', 1),
(11705, 26644, 30, 'Communication (English)', 3, 'good', 30, '2025-09-09 05:38:57', 1),
(11706, 26644, 30, 'Convincing Skills', 3, 'good', 30, '2025-09-09 05:38:57', 1),
(11707, 26644, 30, 'Existing Experience Analyze', 3, 'yes', 30, '2025-09-09 05:38:57', 1),
(11708, 26643, 30, 'Appearance', 3, 'good', 30, '2025-09-10 11:00:41', 1),
(11709, 26643, 30, 'Communication (English)', 3, 'good', 30, '2025-09-10 11:00:41', 1),
(11710, 26643, 30, 'Convincing Skills', 3, 'good', 30, '2025-09-10 11:00:41', 1),
(11711, 26753, 30, 'Appearance', 3, 'GOOD', 30, '2025-09-10 06:36:29', 1),
(11712, 26753, 30, 'Communication (English)', 3, 'GOOD', 30, '2025-09-10 06:36:29', 1),
(11713, 26753, 30, 'Convincing Skills', 3, 'GOOD', 30, '2025-09-10 06:36:29', 1),
(11714, 26752, 29, 'Communication (English)', 3, 'good', 29, '2025-09-10 07:07:37', 1),
(11715, 26752, 29, 'Sales Experience', 1, 'not relevent exp, but has tele calling exp, can create', 29, '2025-09-10 07:07:37', 1),
(11716, 26562, 30, 'Appearance', 3, 'good', 30, '2025-09-17 05:19:31', 1),
(11717, 26562, 30, 'Communication (English)', 3, 'good', 30, '2025-09-17 05:19:31', 1),
(11718, 26562, 30, 'Importance Of Job', 3, 'yes', 30, '2025-09-17 05:19:31', 1),
(11719, 26875, 30, 'Appearance', 3, 'good', 30, '2025-09-17 05:20:17', 1),
(11720, 26875, 30, 'Communication (English)', 3, 'good', 30, '2025-09-17 05:20:17', 1),
(11721, 26875, 30, 'Confidence Level', 3, 'k', 30, '2025-09-17 05:20:17', 1),
(11722, 26861, 30, 'Appearance', 3, 'good', 30, '2025-09-17 05:21:13', 1),
(11723, 26861, 30, 'Communication (English)', 3, 'good', 30, '2025-09-17 05:21:13', 1),
(11724, 26861, 30, 'Convincing Skills', 3, 'good', 30, '2025-09-17 05:21:13', 1),
(11725, 26866, 29, 'Convincing Skills', 3, 'good', 29, '2025-09-20 06:52:00', 1),
(11726, 26866, 29, 'Sales Experience', 2, 'not relevant, can mold', 29, '2025-09-20 06:52:00', 1),
(11727, 26880, 30, 'Appearance', 3, 'good', 30, '2025-09-23 10:26:10', 1),
(11728, 26880, 30, 'Communication (English)', 2, 'managable', 30, '2025-09-23 10:26:10', 1),
(11729, 26880, 30, 'Confidence Level', 2, 'good', 30, '2025-09-23 10:26:10', 1),
(11730, 26957, 18, 'Appearance', 3, 'Ok', 18, '2025-09-24 12:18:19', 1),
(11731, 26957, 18, 'Attitude', 3, 'Decent', 18, '2025-09-24 12:18:19', 1),
(11732, 26957, 18, 'Communication (English)', 2, 'Average', 18, '2025-09-24 12:18:19', 1),
(11733, 26957, 18, 'Communication (Tamil)', 3, 'Good', 18, '2025-09-24 12:18:19', 1),
(11734, 26957, 18, 'Importance Of Job', 3, 'Needed', 18, '2025-09-24 12:18:19', 1),
(11735, 26957, 18, 'Sales Experience', 3, 'Ok', 18, '2025-09-24 12:18:19', 1),
(11736, 26955, 18, 'Appearance', 3, 'Ok', 18, '2025-09-24 12:19:43', 1),
(11737, 26955, 18, 'Attitude', 3, 'Good', 18, '2025-09-24 12:19:43', 1),
(11738, 26955, 18, 'Convincing Skills', 3, 'Decent', 18, '2025-09-24 12:19:43', 1),
(11739, 26955, 18, 'Importance Of Job', 3, 'High', 18, '2025-09-24 12:19:43', 1),
(11740, 26968, 29, 'Convincing Skills', 2, 'ok', 29, '2025-09-24 07:03:04', 1),
(11741, 26968, 29, 'Sales Experience', 2, 'ok for sales profile, have to train and mold accordingly', 29, '2025-09-24 07:03:04', 1),
(11742, 27024, 30, 'Appearance', 3, 'good', 30, '2025-09-27 06:30:59', 1),
(11743, 27024, 30, 'Communication (English)', 3, 'managable', 30, '2025-09-27 06:30:59', 1),
(11744, 27024, 30, 'Convincing Skills', 3, 'good', 30, '2025-09-27 06:30:59', 1),
(11745, 26975, 30, 'Appearance', 3, 'good', 30, '2025-09-27 06:32:30', 1),
(11746, 26975, 30, 'Communication (English)', 3, 'good', 30, '2025-09-27 06:32:30', 1),
(11747, 26975, 30, 'Convincing Skills', 3, 'good', 30, '2025-09-27 06:32:30', 1),
(11748, 27051, 30, 'Appearance', 3, 'good', 30, '2025-10-03 01:29:52', 1),
(11749, 27051, 30, 'Communication (English)', 3, 'good', 30, '2025-10-03 01:29:52', 1),
(11750, 27051, 30, 'Convincing Skills', 3, 'good', 30, '2025-10-03 01:29:52', 1),
(11751, 27044, 30, 'Appearance', 3, 'good', 30, '2025-10-03 06:06:38', 1),
(11752, 27044, 30, 'Communication (English)', 3, 'good', 30, '2025-10-03 06:06:38', 1),
(11753, 27041, 30, 'Appearance', 3, 'good', 30, '2025-10-03 06:07:30', 1),
(11754, 27041, 30, 'Communication (English)', 3, 'good', 30, '2025-10-03 06:07:30', 1),
(11755, 27041, 30, 'Importance Of Job', 3, 's', 30, '2025-10-03 06:07:30', 1),
(11756, 27039, 30, 'Appearance', 3, 'good', 30, '2025-10-03 06:08:27', 1),
(11757, 27039, 30, 'Communication (English)', 3, 'good', 30, '2025-10-03 06:08:27', 1),
(11758, 27039, 30, 'Convincing Skills', 3, 'k', 30, '2025-10-03 06:08:27', 1),
(11759, 27062, 30, 'Appearance', 3, 'GOOD', 30, '2025-10-07 06:01:11', 1),
(11760, 27062, 30, 'Communication (English)', 4, 'GOOD', 30, '2025-10-07 06:01:11', 1),
(11761, 27062, 30, 'Convincing Skills', 2, 'K', 30, '2025-10-07 06:01:11', 1),
(11762, 27247, 30, 'Appearance', 3, 'good', 30, '2025-10-24 03:30:34', 1),
(11763, 27247, 30, 'Communication (English)', 3, 'good', 30, '2025-10-24 03:30:34', 1),
(11764, 27247, 30, 'Convincing Skills', 3, 'k', 30, '2025-10-24 03:30:34', 1),
(11765, 27178, 30, 'Appearance', 3, 'good', 30, '2025-10-24 03:31:39', 1),
(11766, 27178, 30, 'Communication (English)', 3, 'good', 30, '2025-10-24 03:31:39', 1),
(11767, 27178, 30, 'Convincing Skills', 3, 'good', 30, '2025-10-24 03:31:39', 1),
(11768, 26767, 30, 'Appearance', 3, 'GOOD', 30, '2025-11-04 03:24:48', 1),
(11769, 26767, 30, 'Communication (English)', 3, 'GOOD', 30, '2025-11-04 03:24:48', 1),
(11770, 26767, 30, 'Convincing Skills', 3, 'MANAGABLE', 30, '2025-11-04 03:24:48', 1),
(11771, 27306, 30, 'Appearance', 3, 'good', 30, '2025-11-07 12:25:02', 1),
(11772, 27306, 30, 'Communication (English)', 3, 'k', 30, '2025-11-07 12:25:02', 1),
(11773, 27306, 30, 'Convincing Skills', 3, 'k', 30, '2025-11-07 12:25:02', 1),
(11774, 27376, 30, 'Appearance', 3, 'good', 30, '2025-11-07 12:27:50', 1),
(11775, 27376, 30, 'Communication (English)', 3, 'k', 30, '2025-11-07 12:27:50', 1),
(11776, 27377, 30, 'Appearance', 3, 'good', 30, '2025-11-07 12:28:35', 1),
(11777, 27377, 30, 'Communication (English)', 3, 'k', 30, '2025-11-07 12:28:35', 1),
(11778, 27386, 30, 'Appearance', 3, 'good', 30, '2025-11-11 01:29:51', 1),
(11779, 27386, 30, 'Communication (English)', 3, 'good', 30, '2025-11-11 01:29:51', 1),
(11780, 27413, 152, 'Appearance', 4, 'Good Looking ', 152, '2025-11-13 02:45:35', 1),
(11781, 27413, 152, 'Attitude', 3, 'Good Attitude, polite', 152, '2025-11-13 02:45:35', 1),
(11782, 27413, 152, 'Communication (English)', 3, 'Good communication skill', 152, '2025-11-13 02:45:35', 1),
(11783, 27413, 152, 'Communication (Tamil)', 4, 'Native speaker of tamil and malayalam', 152, '2025-11-13 02:45:35', 1),
(11784, 27413, 152, 'Convincing Skills', 4, 'Intention to convince ', 152, '2025-11-13 02:45:35', 1),
(11785, 27413, 152, 'Confidence Level', 3, 'Not overconfident', 152, '2025-11-13 02:45:35', 1),
(11786, 27413, 152, 'Importance Of Job', 4, 'Family in a bad position now need job to take care of family', 152, '2025-11-13 02:45:35', 1),
(11787, 27413, 152, 'Observation Skills', 3, 'Ok', 152, '2025-11-13 02:45:35', 1),
(11788, 27413, 152, 'Pressure Handling', 3, 'Expecting to do well', 152, '2025-11-13 02:45:35', 1),
(11789, 27413, 152, 'patience', 3, 'Ok', 152, '2025-11-13 02:45:35', 1),
(11790, 27413, 152, 'Sustainability', 3, 'Been for long term in previous companies', 152, '2025-11-13 02:45:35', 1),
(11791, 27413, 152, 'Sales Experience', 4, 'With equitas and ICICI', 152, '2025-11-13 02:45:35', 1),
(11792, 27413, 152, 'Existing Experience Analyze', 3, '3 Companies in 4 years one with less than one year due to covid', 152, '2025-11-13 02:45:35', 1),
(11793, 27413, 152, 'Practical Challenges Outcome', 3, 'Good, ', 152, '2025-11-13 02:45:35', 1),
(11794, 27413, 152, 'Willing To Work On Holidays', 3, 'Yes but asked if necessary', 152, '2025-11-13 02:45:35', 1),
(11795, 27412, 30, 'Appearance', 3, 'GOOD', 30, '2025-11-13 06:34:59', 1),
(11796, 27412, 30, 'Communication (English)', 4, 'GOOD', 30, '2025-11-13 06:34:59', 1),
(11797, 27412, 30, 'Existing Experience Analyze', 4, '1.6YRS BANCCA CHANNEL LIFE INSURANCE', 30, '2025-11-13 06:34:59', 1),
(11798, 27412, 30, 'Observation Skills', 3, 'GOOD', 30, '2025-11-13 06:34:59', 1),
(11799, 27423, 30, 'Appearance', 3, 'good', 30, '2025-11-15 04:12:28', 1),
(11800, 27423, 30, 'Communication (English)', 4, 'good', 30, '2025-11-15 04:12:28', 1),
(11801, 27423, 30, 'Confidence Level', 3, 'good', 30, '2025-11-15 04:12:28', 1),
(11802, 27423, 30, 'Existing Experience Analyze', 3, 'yes', 30, '2025-11-15 04:12:28', 1),
(11803, 27428, 29, 'Communication (English)', 2, 'ok', 29, '2025-11-15 04:57:31', 1),
(11804, 27428, 29, 'Sales Experience', 3, 'Has Life and Health Inurance knowledge', 29, '2025-11-15 04:57:31', 1),
(11805, 27428, 29, 'Existing Experience Analyze', 3, 'Can tune and build', 29, '2025-11-15 04:57:31', 1),
(11806, 27441, 18, 'Appearance', 3, 'Good', 18, '2025-11-17 05:34:18', 1),
(11807, 27441, 18, 'Attitude', 3, 'Good', 18, '2025-11-17 05:34:18', 1),
(11808, 27441, 18, 'Communication (English)', 4, 'Good', 18, '2025-11-17 05:34:18', 1),
(11809, 27441, 18, 'Communication (Tamil)', 3, 'Good', 18, '2025-11-17 05:34:18', 1),
(11810, 27441, 18, 'Convincing Skills', 4, 'Good', 18, '2025-11-17 05:34:18', 1),
(11811, 27441, 18, 'patience', 3, 'Good', 18, '2025-11-17 05:34:18', 1),
(11812, 27441, 18, 'Existing Experience Analyze', 3, 'Good', 18, '2025-11-17 05:34:18', 1),
(11813, 27427, 18, 'Attitude', 3, 'Good', 18, '2025-11-18 05:51:47', 1),
(11814, 27427, 18, 'Communication (English)', 2, 'Average', 18, '2025-11-18 05:51:47', 1),
(11815, 27427, 18, 'Communication (Tamil)', 3, 'Good', 18, '2025-11-18 05:51:47', 1),
(11816, 27427, 18, 'Convincing Skills', 3, 'Decent', 18, '2025-11-18 05:51:47', 1),
(11817, 27427, 18, 'Confidence Level', 3, 'Good', 18, '2025-11-18 05:51:47', 1),
(11818, 27427, 18, 'Importance Of Job', 4, 'Needed', 18, '2025-11-18 05:51:47', 1),
(11819, 27427, 18, 'Sales Experience', 2, 'Weak', 18, '2025-11-18 05:51:47', 1),
(11820, 27427, 18, 'Existing Experience Analyze', 3, 'Good', 18, '2025-11-18 05:51:47', 1),
(11821, 27427, 18, 'Practical Challenges Outcome', 3, 'She can handle', 18, '2025-11-18 05:51:47', 1),
(11822, 27478, 29, 'Convincing Skills', 2, 'good', 29, '2025-11-29 10:56:51', 1),
(11823, 27478, 29, 'Sales Experience', 2, 'sales exp, have to mould for life', 29, '2025-11-29 10:56:51', 1),
(11824, 27524, 30, 'Appearance', 3, 'good', 30, '2025-12-02 11:56:16', 1),
(11825, 27524, 30, 'Communication (English)', 4, 'good', 30, '2025-12-02 11:56:16', 1),
(11826, 27524, 30, 'Convincing Skills', 3, 'yes', 30, '2025-12-02 11:56:16', 1),
(11827, 27529, 30, 'Appearance', 3, 'good', 30, '2025-12-02 11:59:47', 1),
(11828, 27529, 30, 'Communication (English)', 3, 'k', 30, '2025-12-02 11:59:47', 1),
(11829, 27529, 30, 'Communication (Tamil)', 5, 's', 30, '2025-12-02 11:59:47', 1),
(11830, 27529, 30, 'Convincing Skills', 5, 'good', 30, '2025-12-02 11:59:47', 1),
(11831, 27529, 30, 'Existing Experience Analyze', 5, '4yrs same core field', 30, '2025-12-02 11:59:47', 1),
(11832, 27541, 18, 'Appearance', 3, 'Decent', 18, '2025-12-02 04:26:54', 1),
(11833, 27541, 18, 'Attitude', 3, 'Good', 18, '2025-12-02 04:26:54', 1),
(11834, 27541, 18, 'Importance Of Job', 3, 'Needed', 18, '2025-12-02 04:26:54', 1),
(11835, 27541, 18, 'Observation Skills', 3, 'Good', 18, '2025-12-02 04:26:54', 1),
(11836, 27541, 18, 'Sales Experience', 2, 'Not Relevant', 18, '2025-12-02 04:26:54', 1),
(11837, 27540, 30, 'Appearance', 3, 'Good', 30, '2025-12-04 06:42:20', 1),
(11838, 27540, 30, 'Communication (English)', 3, 'Managable', 30, '2025-12-04 06:42:20', 1),
(11839, 27540, 30, 'Existing Experience Analyze', 3, 'Yes', 30, '2025-12-04 06:42:20', 1),
(11840, 27558, 30, 'Appearance', 4, 'good', 30, '2025-12-06 11:03:33', 1),
(11841, 27558, 30, 'Communication (English)', 3, 'good', 30, '2025-12-06 11:03:33', 1),
(11842, 27558, 30, 'Convincing Skills', 3, 'k', 30, '2025-12-06 11:03:33', 1),
(11843, 27558, 30, 'Observation Skills', 3, 'good', 30, '2025-12-06 11:03:33', 1),
(11844, 27544, 30, 'Appearance', 3, 'good', 30, '2025-12-06 11:04:13', 1),
(11845, 27544, 30, 'Communication (English)', 3, 'k', 30, '2025-12-06 11:04:13', 1),
(11846, 27598, 29, 'Communication (English)', 2, 'Good', 29, '2025-12-08 10:08:54', 1),
(11847, 27598, 29, 'Convincing Skills', 3, 'Good', 29, '2025-12-08 10:08:54', 1),
(11848, 27634, 30, 'Appearance', 4, 'good', 30, '2025-12-09 12:31:42', 1),
(11849, 27634, 30, 'Communication (English)', 3, 'k', 30, '2025-12-09 12:31:42', 1),
(11850, 27634, 30, 'Confidence Level', 5, 'good', 30, '2025-12-09 12:31:42', 1),
(11851, 27634, 30, 'Existing Experience Analyze', 5, 'same core', 30, '2025-12-09 12:31:42', 1),
(11852, 27636, 30, 'Appearance', 3, 'good', 30, '2025-12-09 01:18:40', 1),
(11853, 27636, 30, 'Communication (English)', 3, 'good', 30, '2025-12-09 01:18:40', 1),
(11854, 27636, 30, 'Convincing Skills', 3, 'good', 30, '2025-12-09 01:18:40', 1),
(11855, 27636, 30, 'Existing Experience Analyze', 4, '3.5yrs', 30, '2025-12-09 01:18:40', 1),
(11856, 27635, 30, 'Appearance', 3, 'good', 30, '2025-12-09 01:20:22', 1),
(11857, 27635, 30, 'Communication (English)', 3, 'managable but kannada fluent', 30, '2025-12-09 01:20:22', 1),
(11858, 27635, 30, 'Existing Experience Analyze', 4, 'good overall', 30, '2025-12-09 01:20:22', 1),
(11859, 27631, 18, 'Appearance', 3, 'Ok', 18, '2025-12-11 12:19:48', 1),
(11860, 27631, 18, 'Attitude', 3, 'Decent', 18, '2025-12-11 12:19:48', 1),
(11861, 27631, 18, 'Communication (English)', 2, 'Ok', 18, '2025-12-11 12:19:48', 1),
(11862, 27631, 18, 'Communication (Tamil)', 3, 'Good', 18, '2025-12-11 12:19:48', 1),
(11863, 27631, 18, 'Importance Of Job', 4, 'High', 18, '2025-12-11 12:19:48', 1),
(11864, 27626, 30, 'Appearance', 3, 'good', 30, '2025-12-11 06:59:18', 1),
(11865, 27626, 30, 'Communication (English)', 3, 'good', 30, '2025-12-11 06:59:18', 1),
(11866, 27626, 30, 'Confidence Level', 3, 'good', 30, '2025-12-11 06:59:18', 1),
(11867, 27889, 30, 'Appearance', 3, 'good', 30, '2025-12-29 04:43:03', 1),
(11868, 27889, 30, 'Communication (English)', 3, 'clean', 30, '2025-12-29 04:43:03', 1),
(11869, 27889, 30, 'Convincing Skills', 3, 'managable', 30, '2025-12-29 04:43:03', 1),
(11870, 27945, 168, 'Appearance', 4, 'Good', 168, '2026-01-02 10:07:47', 1),
(11871, 27945, 168, 'Attitude', 4, 'Polite and calm', 168, '2026-01-02 10:07:47', 1),
(11872, 27945, 168, 'Communication (English)', 4, 'Pronunciation was good and understandable', 168, '2026-01-02 10:07:47', 1),
(11873, 27945, 168, 'Communication (Tamil)', 4, 'Good', 168, '2026-01-02 10:07:47', 1),
(11874, 27945, 168, 'Convincing Skills', 5, 'Able to convince ', 168, '2026-01-02 10:07:47', 1),
(11875, 27945, 168, 'Confidence Level', 4, 'Having a exposure to prove the best', 168, '2026-01-02 10:07:47', 1),
(11876, 27945, 168, 'Existing Experience Analyze', 3, 'Having a 6 months in data entry', 168, '2026-01-02 10:07:47', 1),
(11877, 27945, 168, 'Importance Of Job', 4, 'Job required as per her current family situation', 168, '2026-01-02 10:07:47', 1),
(11878, 27945, 168, 'Observation Skills', 3, 'Good', 168, '2026-01-02 10:07:47', 1),
(11879, 27945, 168, 'patience', 4, 'Good', 168, '2026-01-02 10:07:47', 1),
(11880, 27945, 168, 'Pressure Handling', 4, 'Good', 168, '2026-01-02 10:07:47', 1),
(11881, 27945, 168, 'Practical Challenges Outcome', 5, 'Good', 168, '2026-01-02 10:07:47', 1),
(11882, 27945, 168, 'Sustainability', 4, 'Having no commitment as of now to deviate', 168, '2026-01-02 10:07:47', 1),
(11883, 27945, 168, 'Sales Experience', 2, 'No Sales Experience', 168, '2026-01-02 10:07:47', 1),
(11884, 27945, 168, 'Willing To Work On Holidays', 3, 'Yes if necessity', 168, '2026-01-02 10:07:47', 1),
(11885, 27911, 29, 'Communication (English)', 3, 'Good', 29, '2026-01-02 11:02:05', 1),
(11886, 27911, 29, 'Sales Experience', 3, 'Has sales exp in loan, can build for life', 29, '2026-01-02 11:02:05', 1),
(11887, 27941, 30, 'Appearance', 3, 'good', 30, '2026-01-07 05:14:43', 1),
(11888, 27941, 30, 'Communication (English)', 2, 'managable but he will pick up', 30, '2026-01-07 05:14:43', 1),
(11889, 27941, 30, 'Confidence Level', 4, 'good', 30, '2026-01-07 05:14:43', 1),
(11890, 28054, 30, 'Appearance', 4, 'good', 30, '2026-01-09 09:47:42', 1),
(11891, 28054, 30, 'Communication (English)', 3, 'she will manage', 30, '2026-01-09 09:47:42', 1),
(11892, 28054, 30, 'Confidence Level', 4, 'good', 30, '2026-01-09 09:47:42', 1),
(11893, 28055, 30, 'Appearance', 3, 'good', 30, '2026-01-09 09:48:44', 1),
(11894, 28055, 30, 'Communication (English)', 4, 'good', 30, '2026-01-09 09:48:44', 1),
(11895, 28055, 30, 'Convincing Skills', 4, 'very clear', 30, '2026-01-09 09:48:44', 1),
(11896, 28071, 30, 'Appearance', 3, 'Good', 30, '2026-01-10 10:13:07', 1),
(11897, 28071, 30, 'Confidence Level', 4, 'Good', 30, '2026-01-10 10:13:07', 1),
(11898, 28071, 30, 'Sales Experience', 5, 'Health insurance', 30, '2026-01-10 10:13:07', 1),
(11899, 28005, 30, 'Appearance', 3, 'Good', 30, '2026-01-10 10:14:50', 1),
(11900, 28005, 30, 'Communication (English)', 3, 'Good', 30, '2026-01-10 10:14:50', 1),
(11901, 28005, 30, 'Convincing Skills', 3, 'Managable but mf knowl good', 30, '2026-01-10 10:14:50', 1),
(11902, 28035, 29, 'Communication (English)', 2, 'good', 29, '2026-01-12 09:50:58', 1),
(11903, 28035, 29, 'Convincing Skills', 3, 'good', 29, '2026-01-12 09:50:58', 1),
(11904, 28035, 29, 'Sales Experience', 3, 'Sales Exp, can be trained for life and mf', 29, '2026-01-12 09:50:58', 1),
(11905, 28259, 30, 'Appearance', 3, 'good', 30, '2026-01-28 04:49:47', 1),
(11906, 28259, 30, 'Convincing Skills', 4, 'good', 30, '2026-01-28 04:49:47', 1),
(11907, 28259, 30, 'Existing Experience Analyze', 4, 'star from vizza', 30, '2026-01-28 04:49:47', 1),
(11908, 28344, 29, 'Communication (English)', 2, 'good', 29, '2026-02-03 05:54:11', 1),
(11909, 28344, 29, 'Sales Experience', 2, 'relavant exp', 29, '2026-02-03 05:54:11', 1),
(11910, 28305, 30, 'Appearance', 3, 'good', 30, '2026-02-04 05:37:54', 1),
(11911, 28305, 30, 'Communication (English)', 3, 'good', 30, '2026-02-04 05:37:54', 1),
(11912, 28305, 30, 'Confidence Level', 2, 'k', 30, '2026-02-04 05:37:54', 1),
(11913, 28305, 30, 'Existing Experience Analyze', 3, '6months in star but lack of product knowledge', 30, '2026-02-04 05:37:54', 1),
(11914, 28346, 30, 'Appearance', 4, 'good', 30, '2026-02-04 05:39:11', 1),
(11915, 28346, 30, 'Communication (English)', 4, 'good', 30, '2026-02-04 05:39:11', 1),
(11916, 28346, 30, 'Convincing Skills', 3, 'managable', 30, '2026-02-04 05:39:11', 1),
(11917, 28346, 30, 'Confidence Level', 2, 'k', 30, '2026-02-04 05:39:11', 1),
(11918, 28346, 30, 'Sustainability', 1, 'need to check', 30, '2026-02-04 05:39:11', 1),
(11919, 28456, 18, 'Appearance', 4, 'Good', 18, '2026-02-10 04:46:57', 1),
(11920, 28456, 18, 'Attitude', 3, 'Good', 18, '2026-02-10 04:46:57', 1),
(11921, 28456, 18, 'Communication (English)', 4, 'Good', 18, '2026-02-10 04:46:57', 1),
(11922, 28456, 18, 'Communication (Tamil)', 3, 'Good', 18, '2026-02-10 04:46:57', 1),
(11923, 28456, 18, 'Convincing Skills', 3, 'Decent for Fresher cos of Age and Maturity', 18, '2026-02-10 04:46:57', 1),
(11924, 28456, 18, 'Importance Of Job', 3, 'Need to Check becaus of Age factor and Family Background', 18, '2026-02-10 04:46:57', 1),
(11925, 28456, 18, 'patience', 3, 'Good', 18, '2026-02-10 04:46:57', 1),
(11926, 28456, 18, 'Sustainability', 2, 'Need to Filter in week 1', 18, '2026-02-10 04:46:57', 1),
(11927, 28456, 18, 'Sales Experience', 1, 'Na', 18, '2026-02-10 04:46:57', 1),
(11928, 28437, 18, 'Appearance', 3, 'Good', 18, '2026-02-13 01:03:44', 1),
(11929, 28437, 18, 'Attitude', 3, 'Good', 18, '2026-02-13 01:03:44', 1),
(11930, 28437, 18, 'Communication (English)', 2, 'Below Average', 18, '2026-02-13 01:03:44', 1),
(11931, 28437, 18, 'Communication (Tamil)', 3, 'Decent', 18, '2026-02-13 01:03:44', 1),
(11932, 28437, 18, 'Convincing Skills', 3, 'Need to Improve', 18, '2026-02-13 01:03:44', 1),
(11933, 28437, 18, 'Confidence Level', 4, 'Good', 18, '2026-02-13 01:03:44', 1),
(11934, 28437, 18, 'Importance Of Job', 4, 'Needed', 18, '2026-02-13 01:03:44', 1),
(11935, 28437, 18, 'patience', 4, 'Good', 18, '2026-02-13 01:03:44', 1),
(11936, 28536, 18, 'Communication (English)', 2, 'Ok', 18, '2026-02-21 02:38:09', 1),
(11937, 28536, 18, 'Communication (Tamil)', 3, 'Decent', 18, '2026-02-21 02:38:09', 1),
(11938, 28536, 18, 'Confidence Level', 3, 'Good', 18, '2026-02-21 02:38:09', 1),
(11939, 28536, 18, 'Importance Of Job', 4, 'High', 18, '2026-02-21 02:38:09', 1),
(11940, 28647, 18, 'Appearance', 2, 'Ok', 18, '2026-02-23 06:42:50', 1),
(11941, 28647, 18, 'Attitude', 3, 'Good', 18, '2026-02-23 06:42:50', 1),
(11942, 28647, 18, 'Communication (English)', 2, 'Ok', 18, '2026-02-23 06:42:50', 1),
(11943, 28647, 18, 'Communication (Tamil)', 4, 'Good', 18, '2026-02-23 06:42:50', 1),
(11944, 28647, 18, 'Sales Experience', 2, 'ok but not relevant', 18, '2026-02-23 06:42:50', 1),
(11945, 28647, 18, 'Existing Experience Analyze', 3, 'Good', 18, '2026-02-23 06:42:50', 1),
(11946, 28631, 29, 'Communication (English)', 3, 'Good', 29, '2026-02-25 07:37:50', 1),
(11947, 28631, 29, 'Convincing Skills', 3, 'has skills', 29, '2026-02-25 07:37:50', 1),
(11948, 28631, 29, 'Sales Experience', 3, 'has credit card sales exp, have to train and mold for financial products', 29, '2026-02-25 07:37:50', 1),
(11949, 28783, 29, 'Convincing Skills', 3, 'good at convincing', 29, '2026-02-27 04:49:01', 1),
(11950, 28783, 29, 'Observation Skills', 3, 'good', 29, '2026-02-27 04:49:01', 1),
(11951, 28783, 29, 'Sales Experience', 3, 'in different field, have to build', 29, '2026-02-27 04:49:01', 1),
(11952, 28784, 18, 'Appearance', 3, 'Decent', 18, '2026-02-28 07:00:52', 1),
(11953, 28784, 18, 'Attitude', 3, 'Good', 18, '2026-02-28 07:00:52', 1),
(11954, 28784, 18, 'Communication (English)', 1, 'Ok', 18, '2026-02-28 07:00:52', 1),
(11955, 28784, 18, 'Communication (Tamil)', 4, 'Good', 18, '2026-02-28 07:00:52', 1),
(11956, 28784, 18, 'Convincing Skills', 3, 'Good', 18, '2026-02-28 07:00:52', 1),
(11957, 28784, 18, 'Importance Of Job', 4, 'High', 18, '2026-02-28 07:00:52', 1),
(11958, 28784, 18, 'Sales Experience', 2, 'Not Relevant as Inbound sale', 18, '2026-02-28 07:00:52', 1),
(11959, 28981, 18, 'Appearance', 3, 'Good', 18, '2026-03-13 05:37:18', 1),
(11960, 28981, 18, 'Attitude', 4, 'Good', 18, '2026-03-13 05:37:18', 1),
(11961, 28981, 18, 'Communication (Tamil)', 3, 'Good', 18, '2026-03-13 05:37:18', 1),
(11962, 28981, 18, 'Importance Of Job', 3, 'Fair', 18, '2026-03-13 05:37:18', 1),
(11963, 28981, 18, 'Pressure Handling', 2, 'Ok', 18, '2026-03-13 05:37:18', 1),
(11964, 28981, 18, 'patience', 4, 'High', 18, '2026-03-13 05:37:18', 1),
(11965, 28981, 18, 'Sustainability', 2, 'Need to Check in 1st week', 18, '2026-03-13 05:37:18', 1),
(11966, 29224, 30, 'Appearance', 3, 'good', 30, '2026-03-26 10:44:17', 1),
(11967, 29224, 30, 'Communication (English)', 4, 'good', 30, '2026-03-26 10:44:17', 1),
(11968, 29224, 30, 'Existing Experience Analyze', 1, 'fresher', 30, '2026-03-26 10:44:17', 1),
(11969, 29401, 174, 'Appearance', 4, 'decent dressing', 174, '2026-04-08 04:00:52', 1),
(11970, 29401, 174, 'Communication (English)', 3, 'good communication', 174, '2026-04-08 04:00:52', 1),
(11971, 29401, 174, 'Confidence Level', 4, 'good sales confidence', 174, '2026-04-08 04:00:52', 1),
(11972, 29401, 174, 'Importance Of Job', 5, 'good sustainability long term working', 174, '2026-04-08 04:00:52', 1),
(11973, 29563, 30, 'Appearance', 4, 'good', 30, '2026-04-20 05:22:56', 1),
(11974, 29563, 30, 'Communication (English)', 4, 'good', 30, '2026-04-20 05:22:56', 1),
(11975, 29563, 30, 'Importance Of Job', 2, 'work for 2years only', 30, '2026-04-20 05:22:56', 1),
(11976, 29603, 30, 'Appearance', 3, 'good', 30, '2026-04-20 05:23:41', 1),
(11977, 29603, 30, 'Communication (English)', 4, 'good', 30, '2026-04-20 05:23:41', 1),
(11978, 29603, 30, 'Communication (Tamil)', 5, 'yes', 30, '2026-04-20 05:23:41', 1),
(11979, 29603, 30, 'Confidence Level', 3, 'k', 30, '2026-04-20 05:23:41', 1),
(11980, 29623, 30, 'Appearance', 4, 'good', 30, '2026-04-22 10:58:08', 1),
(11981, 29623, 30, 'Communication (English)', 4, 'good', 30, '2026-04-22 10:58:08', 1),
(11982, 29623, 30, 'Convincing Skills', 3, 'well maturity person', 30, '2026-04-22 10:58:08', 1),
(11983, 29623, 30, 'Importance Of Job', 4, 'lots of commitment', 30, '2026-04-22 10:58:08', 1),
(11984, 29642, 30, 'Appearance', 3, 'good', 30, '2026-04-22 10:59:24', 1),
(11985, 29642, 30, 'Communication (English)', 4, 'good skill', 30, '2026-04-22 10:59:24', 1),
(11986, 29642, 30, 'Convincing Skills', 3, 'good ', 30, '2026-04-22 10:59:24', 1),
(11987, 29749, 29, 'Convincing Skills', 3, 'Good', 29, '2026-04-29 03:25:59', 1),
(11988, 29749, 29, 'Sales Experience', 3, 'Has sales and tele calling experience in credit card, can mold to our industry', 29, '2026-04-29 03:25:59', 1),
(11989, 29836, 18, 'Appearance', 3, 'Decent', 18, '2026-05-05 04:26:36', 1),
(11990, 29836, 18, 'Attitude', 4, 'Good', 18, '2026-05-05 04:26:36', 1),
(11991, 29836, 18, 'Communication (English)', 2, 'Ok', 18, '2026-05-05 04:26:36', 1),
(11992, 29836, 18, 'Communication (Tamil)', 3, 'Good', 18, '2026-05-05 04:26:36', 1),
(11993, 29836, 18, 'Confidence Level', 3, 'Good', 18, '2026-05-05 04:26:36', 1),
(11994, 29836, 18, 'patience', 3, 'Good', 18, '2026-05-05 04:26:36', 1),
(11995, 29836, 18, 'Sales Experience', 3, 'Decent', 18, '2026-05-05 04:26:36', 1),
(11996, 29836, 18, 'Existing Experience Analyze', 4, 'Good', 18, '2026-05-05 04:26:36', 1),
(11997, 29771, 29, 'Convincing Skills', 3, 'Good', 29, '2026-05-05 06:02:50', 1),
(11998, 29771, 29, 'Observation Skills', 3, 'Good at work', 29, '2026-05-05 06:02:50', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_interview_type`
--

CREATE TABLE `cw_interview_type` (
  `prime_interview_type_id` int NOT NULL,
  `interview_type` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `cw_interview_type`
--

INSERT INTO `cw_interview_type` (`prime_interview_type_id`, `interview_type`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'Direct Walkin', 1, '2021-05-06 01:51:39', 0, NULL, 0, NULL, 1),
(2, 'Virtual', 1, '2021-05-06 01:51:47', 1, '2021-05-06 01:53:47', 0, NULL, 1),
(3, 'Telephonic', 1, '2021-05-06 02:54:41', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_location`
--

CREATE TABLE `cw_location` (
  `prime_location_id` int NOT NULL,
  `location_name` varchar(50) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_location`
--

INSERT INTO `cw_location` (`prime_location_id`, `location_name`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'Chennai', 1, '2020-09-12 10:53:25', 0, NULL, 0, NULL, 1),
(2, 'Bangalore', 1, '2020-09-12 10:53:30', 0, NULL, 0, NULL, 1),
(3, 'Hyderabad', 60, '2021-05-05 01:01:34', 60, '2021-05-05 01:01:41', 0, NULL, 1),
(4, 'Tamilnadu', 60, '2021-05-20 01:53:08', 60, '2021-05-20 01:53:12', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_mail_configurations`
--

CREATE TABLE `cw_mail_configurations` (
  `prime_mail_configurations_id` int NOT NULL,
  `configuration_name` varchar(100) DEFAULT '',
  `smtp_server` varchar(100) DEFAULT '',
  `sender_name` varchar(30) DEFAULT '',
  `bcc` text,
  `port_no` int DEFAULT '0',
  `mail_username` varchar(100) DEFAULT '',
  `sender_email` varchar(100) DEFAULT '',
  `mail_password` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_mail_configurations`
--

INSERT INTO `cw_mail_configurations` (`prime_mail_configurations_id`, `configuration_name`, `smtp_server`, `sender_name`, `bcc`, `port_no`, `mail_username`, `sender_email`, `mail_password`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'Test Config 1', 'smtp.gmail.com', 'cAFS', 'hr@cafsinfotech.com', 587, 'Smarthrmsmailer@Gmail.Com', 'Smarthrmsmailer@Gmail.Com', 'jjxnaouenrdqdwxe', 1, '2019-11-21 05:12:48', 1, '2022-10-29 06:31:16', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_mail_configurations_cf`
--

CREATE TABLE `cw_mail_configurations_cf` (
  `prime_mail_configurations_cf_id` int NOT NULL,
  `prime_mail_configurations_id` int DEFAULT '0',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_mail_configurations_cf`
--

INSERT INTO `cw_mail_configurations_cf` (`prime_mail_configurations_cf_id`, `prime_mail_configurations_id`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 1, 1, '2019-11-21 05:12:48', 1, '2022-10-29 06:31:16', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_main_menu`
--

CREATE TABLE `cw_main_menu` (
  `prime_menu_id` int NOT NULL,
  `menu_name` varchar(100) DEFAULT NULL,
  `menu_for` tinyblob,
  `menu_sort` int DEFAULT '0',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_main_menu`
--

INSERT INTO `cw_main_menu` (`prime_menu_id`, `menu_name`, `menu_for`, `menu_sort`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'Super Admin', 0x322c332c342c352c362c37, 8, 1, '2018-11-21 11:22:16', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(2, 'Admin', 0x312c32, 7, 1, '2018-11-21 11:22:27', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(3, 'Master', 0x312c32, 12, 1, '2018-11-26 06:21:48', 1, '0000-00-00 00:00:00', 0, NULL, 0),
(4, 'Transaction', 0x312c322c332c342c352c362c37, 13, 1, '2019-01-14 09:50:13', 1, '0000-00-00 00:00:00', 0, NULL, 0),
(5, 'User Management', 0x312c322c33, 2, 1, '2019-03-08 06:22:58', 1, '2020-08-25 12:49:18', 0, NULL, 1),
(6, 'Tax', 0x312c322c332c342c352c362c37, 3, 1, '2019-03-08 06:23:06', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(7, 'Candidate Tracker', 0x312c322c33, 1, 1, '2019-03-08 06:23:19', 1, '2020-08-26 02:20:45', 0, NULL, 1),
(8, 'Benefit', 0x322c332c342c352c362c37, 4, 1, '2019-03-08 06:23:29', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(9, 'Popup Data', 0x322c332c342c352c362c37, 11, 1, '2019-03-08 06:35:35', 1, '0000-00-00 00:00:00', 0, NULL, 0),
(10, 'Report', 0x312c322c332c342c352c36, 9, 1, '2019-03-08 06:47:13', 1, '2020-09-15 04:16:20', 0, NULL, 1),
(11, 'HRMS', 0x322c332c342c352c362c37, 5, 1, '2019-03-11 11:09:29', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(12, 'Email', 0x312c322c33, 6, 1, '2019-08-19 12:47:46', 1, '0000-00-00 00:00:00', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_manager_list`
--

CREATE TABLE `cw_manager_list` (
  `prime_manager_list_id` int NOT NULL,
  `employee_code` varchar(50) DEFAULT '',
  `manager_name` varchar(100) DEFAULT NULL,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `cw_manager_list`
--

INSERT INTO `cw_manager_list` (`prime_manager_list_id`, `employee_code`, `manager_name`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'P1023', 'Sithy Vinayagam', 104, '2024-06-15 10:08:46', 0, NULL, 0, NULL, 1),
(2, '55645', 'Syed Abthali N', 104, '2024-06-15 10:09:11', 0, NULL, 0, NULL, 1),
(3, '55555', 'Sathish Kumar R', 104, '2024-06-15 10:09:24', 0, NULL, 0, NULL, 1),
(4, '55557', 'Sriram R', 104, '2024-06-15 10:09:39', 0, NULL, 0, NULL, 1),
(5, '55560', 'Gaurav Gupta', 104, '2024-06-15 10:09:52', 0, NULL, 0, NULL, 1),
(6, '55651', 'Kannan.S', 104, '2024-06-15 10:10:05', 0, NULL, 0, NULL, 1),
(7, '55567', 'B Santhosh', 104, '2024-06-15 10:10:17', 0, NULL, 0, NULL, 1),
(8, '55577', 'Banupriya S', 104, '2024-06-15 10:10:33', 0, NULL, 0, NULL, 1),
(9, '55579', 'Sarath Vimal Raj S', 104, '2024-06-15 10:10:47', 0, NULL, 0, NULL, 1),
(10, '55580', 'C K Gnana Kumaran', 104, '2024-06-15 10:11:00', 0, NULL, 0, NULL, 1),
(11, '55565', 'Manikandan S', 104, '2024-06-15 10:11:13', 0, NULL, 0, NULL, 1),
(12, 'P1066', 'Charles R', 104, '2024-06-15 10:11:28', 0, NULL, 0, NULL, 1),
(13, '55666', 'GOPINATH K', 104, '2024-06-15 10:11:39', 0, NULL, 0, NULL, 1),
(14, 'P1070', 'Babu M', 104, '2024-06-15 10:11:51', 0, NULL, 0, NULL, 1),
(15, 'CA130', 'GIRIRAJA.M', 104, '2024-06-15 10:15:28', 0, NULL, 0, NULL, 1),
(16, '55671', 'Ashfaq Ahmed Khan', 104, '2024-06-15 10:16:52', 0, NULL, 0, NULL, 1),
(17, '55656', 'Gnanasekar D', 104, '2024-06-15 10:23:56', 0, NULL, 0, NULL, 1),
(18, '55634', 'Jagadeesh', 104, '2024-06-15 10:24:17', 0, NULL, 0, NULL, 1),
(19, '55650', 'Porrselvan', 104, '2024-06-15 10:25:04', 0, NULL, 0, NULL, 1),
(20, '5151', 'Suresh Kumar C A', 60, '2024-06-15 11:49:52', 0, NULL, 0, NULL, 1),
(21, '55566', 'Gokulraj sankar', 104, '2024-06-15 12:53:55', 0, NULL, 0, NULL, 1),
(22, '55605', 'Arun', 104, '2024-06-15 01:22:11', 0, NULL, 0, NULL, 1),
(23, '55773', 'Sumaiya Khanum', 60, '2024-06-15 01:34:06', 0, NULL, 0, NULL, 1),
(24, '77778', 'Jothiga', 104, '2024-06-26 06:07:49', 0, NULL, 0, NULL, 1),
(25, 'P1287', 'R. Rajasekaran', 104, '2024-07-22 03:44:02', 0, NULL, 0, NULL, 1),
(26, '55824', 'Karthika', 104, '2024-08-08 07:00:54', 0, NULL, 0, NULL, 1),
(27, '55735', 'Abdul Rahman P', 104, '2024-10-14 05:47:44', 60, '2024-10-15 12:15:26', 0, NULL, 1),
(28, '55732', 'Deshwaran', 104, '2025-04-18 12:06:39', 0, NULL, 0, NULL, 1),
(29, '55864', 'Sridhar R', 60, '2025-07-21 07:11:17', 0, NULL, 0, NULL, 1),
(30, '55882', 'Lakshana Sre', 104, '2025-08-20 12:56:25', 0, NULL, 0, NULL, 1),
(31, 'I1077', 'Hari Priya', 104, '2025-08-21 03:41:26', 0, NULL, 0, NULL, 1),
(32, '55692', 'Sathyamoorthy', 104, '2025-12-02 05:49:41', 104, '2025-12-02 05:50:18', 0, NULL, 1),
(33, 'CI144', 'Anandha Krishnan', 104, '2025-12-31 02:35:51', 0, NULL, 0, NULL, 1),
(34, '55786', 'K. Vasudeva Reddy', 104, '2026-02-25 06:39:20', 0, NULL, 0, NULL, 1),
(35, '55899', 'Priya M', 60, '2026-03-26 09:53:55', 0, NULL, 0, NULL, 1),
(36, 'C99176', 'KAZEEM NIZAMUDEEN', 60, '2026-03-26 09:54:15', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_modules`
--

CREATE TABLE `cw_modules` (
  `sort` int NOT NULL,
  `module_id` varchar(255) NOT NULL,
  `module_name` varchar(100) DEFAULT NULL,
  `module_type` varchar(100) DEFAULT NULL,
  `menu_id` int DEFAULT '0',
  `sub_menu_id` int DEFAULT NULL,
  `module_for` tinyblob,
  `rights_to` tinyblob,
  `show_module` int DEFAULT '0',
  `quicklink` tinyblob,
  `import_module` int NOT NULL DEFAULT '0',
  `pdf_module` int NOT NULL DEFAULT '0',
  `custom_module` int NOT NULL DEFAULT '0',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `cw_modules`
--

INSERT INTO `cw_modules` (`sort`, `module_id`, `module_name`, `module_type`, `menu_id`, `sub_menu_id`, `module_for`, `rights_to`, `show_module`, `quicklink`, `import_module`, `pdf_module`, `custom_module`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2, 'blood_group', 'Blood Group', 'DYNAMIC', 5, 5, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2019-03-09 10:11:46', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(3, 'branch', 'Branch', 'DYNAMIC', 5, 5, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2019-03-09 10:12:19', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(22, 'candidate_tracker', 'Candidate Tracker', 'DYNAMIC', 7, 9, 0x312c322c332c342c352c36, 0x312c32, 1, '', 1, 0, 1, 1, '2020-08-26 02:20:26', 1, '2020-12-24 11:02:00', 0, NULL, 1),
(29, 'category', 'Category', 'DEV', 5, 2, 0x312c322c332c342c352c36, 0x31, 1, '', 0, 0, 0, 1, '2019-03-07 04:05:42', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(29, 'channel', 'Channel', 'DYNAMIC', 7, 7, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-12-12 10:40:57', 0, NULL, 0, NULL, 1),
(26, 'company', 'Company', 'DYNAMIC', 7, 7, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-09-11 09:59:40', 0, NULL, 0, NULL, 1),
(52, 'company_information', 'Company Information', 'CUSTOM', 5, 6, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2019-10-31 01:28:13', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(1000, 'config', 'System Config', 'CUSTOM', 2, 0, 0x312c322c332c342c352c36, 0x30, 0, NULL, 0, 0, 0, 1, '2018-11-21 11:59:17', 1, '2018-11-21 11:59:17', 0, NULL, 1),
(23, 'consultancy', 'Consultancy', 'DYNAMIC', 5, 5, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-08-26 02:43:41', 0, NULL, 0, NULL, 1),
(63, 'custom_approval', 'Approval Process', 'CUSTOM', 5, 21, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-01-11 12:39:53', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(5, 'department', 'Department', 'DYNAMIC', 5, 5, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2019-03-09 10:13:46', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(6, 'designation', 'Designation', 'DYNAMIC', 5, 5, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2019-03-09 10:14:11', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(162, 'dynamic_db', 'Dynamic Db', 'DEV', 1, 0, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-01-13 12:05:00', 0, NULL, 0, NULL, 1),
(155, 'email_campaign', 'Email Campaign', 'CUSTOM', 12, 0, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2019-11-23 10:03:22', 0, NULL, 0, NULL, 1),
(154, 'email_process', 'Email Process', 'CUSTOM', 12, 0, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2019-11-21 05:30:30', 0, NULL, 0, NULL, 1),
(30, 'employees', 'Employee Master', 'CUSTOM', 5, 2, 0x312c322c332c342c352c36, 0x312c32, 1, '', 1, 1, 0, 1, '2018-11-21 11:59:17', 1, '2020-08-26 03:35:39', 0, NULL, 1),
(21, 'employee_code_auto', 'Employee Code Auto', 'CUSTOM', 5, 21, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2019-03-13 01:41:58', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(161, 'employee_enrolment', 'Employee Enrolment', 'CUSTOM', 2, 0, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-01-11 12:37:57', 0, NULL, 0, NULL, 1),
(990, 'employee_permission', 'Employee Permission', 'DEV', 2, 0, 0x312c322c332c342c352c36, 0x31, 1, '', 0, 0, 0, 1, '2019-05-15 05:04:19', 0, NULL, 0, NULL, 1),
(991, 'file_merge', 'File Merge', 'DEV', 1, 0, 0x312c322c332c342c352c36, 0x30, 1, NULL, 0, 0, 0, 1, '2019-05-13 14:59:17', 1, '2019-05-13 14:59:17', 0, NULL, 1),
(999, 'form_setting', 'Screen Setting', 'DEV', 1, 0, 0x312c322c332c342c352c36, 0x30, 1, NULL, 0, 0, 0, 1, '2018-11-21 11:59:17', 1, '2018-11-21 11:59:17', 0, NULL, 1),
(10, 'gender', 'Gender', 'DYNAMIC', 5, 5, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2019-03-13 06:10:38', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(31, 'interview_type', 'Interview Type', 'DYNAMIC', 7, 7, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2021-05-06 01:12:02', 0, NULL, 0, NULL, 1),
(25, 'location', 'Location', 'DYNAMIC', 7, 7, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-09-11 09:59:14', 0, NULL, 0, NULL, 1),
(135, 'mail_configurations', 'Mail Configurations', 'CUSTOM', 12, 0, 0x312c322c332c342c352c36, 0x312c32, 1, 0x656d706c6f79656573, 0, 0, 0, 1, '2019-08-19 12:48:16', 1, '2019-11-21 05:17:09', 0, NULL, 1),
(32, 'manager_list', 'Manager List', 'DYNAMIC', 7, 8, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2024-06-15 09:51:48', 0, NULL, 0, NULL, 1),
(998, 'module_setting', 'Module Setting', 'DEV', 1, 0, 0x312c322c332c342c352c36, 0x30, 1, NULL, 0, 0, 0, 1, '2018-11-21 11:59:17', 1, '2018-11-21 11:59:17', 0, NULL, 1),
(174, 'password_change', 'Password Change', 'DYNAMIC', 5, 20, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-03-19 12:20:09', 0, NULL, 0, NULL, 1),
(51, 'pdf_setting', 'Pdf Setting', 'DEV', 5, 20, 0x312c322c332c342c352c36, NULL, 1, NULL, 0, 0, 0, 1, '2019-03-05 11:59:17', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(24, 'position', 'Position', 'DYNAMIC', 7, 7, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-08-26 02:47:51', 1, '2021-03-12 10:17:07', 0, NULL, 1),
(50, 'print_setting', 'Print Setting', 'DEV', 5, 20, 0x312c322c332c342c352c36, NULL, 1, NULL, 0, 0, 0, 1, '2019-03-05 11:59:17', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(994, 'report', 'Report', 'DEV', 10, 0, 0x312c322c332c342c352c36, 0x30, 1, NULL, 0, 0, 0, 1, '2019-03-28 14:59:17', 1, '2019-03-28 14:59:17', 0, NULL, 1),
(995, 'report_setting', 'Report Setting', 'DEV', 2, 0, 0x312c322c332c342c352c36, 0x30, 1, NULL, 0, 0, 0, 1, '2019-03-28 14:59:17', 1, '2019-03-28 14:59:17', 0, NULL, 1),
(27, 'slots', 'Slots', 'DYNAMIC', 7, 7, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-12-07 06:24:16', 0, NULL, 0, NULL, 1),
(166, 'sms_compaign', 'SMS Compaign', 'DYNAMIC', 12, 0, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-02-03 10:01:17', 0, NULL, 0, NULL, 1),
(30, 'source', 'Source', 'DYNAMIC', 7, 7, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-12-24 11:24:38', 0, NULL, 0, NULL, 1),
(898, 'table_delete', 'Table Delete', 'DEV', 1, 0, 0x312c322c332c342c352c36, 0x30, 1, NULL, 0, 0, 0, 1, '2019-05-13 14:59:17', 1, '2019-05-13 14:59:17', 0, NULL, 1),
(28, 'time_slot', 'Time Slot', 'DYNAMIC', 7, 7, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-12-07 06:26:44', 0, NULL, 0, NULL, 1),
(70, 'upload_extension', 'Upload Extension', 'DYNAMIC', 5, 5, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2020-02-15 10:25:14', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(53, 'user_role', 'User Role', 'CUSTOM', 5, 21, 0x312c322c332c342c352c36, 0x312c32, 1, '', 0, 0, 0, 1, '2019-11-15 11:44:36', 1, '2020-02-15 17:25:09', 0, NULL, 1),
(49, 'utilities_settings', 'Utilities Settings', 'DEV', 5, 20, 0x312c322c332c342c352c36, 0x30, 1, NULL, 0, 0, 0, 1, '2018-11-21 11:59:17', 1, '2020-02-15 17:25:09', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_payroll_formula`
--

CREATE TABLE `cw_payroll_formula` (
  `prime_payroll_id` int NOT NULL,
  `formula_for` int DEFAULT NULL,
  `formula_type` int DEFAULT NULL,
  `out_column` varchar(255) DEFAULT NULL,
  `payroll_formula` blob,
  `formula_mode` int DEFAULT '0',
  `round_value` varchar(255) DEFAULT '0',
  `formula_order` int DEFAULT '0',
  `fandf_only` int DEFAULT '0',
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_payroll_formula`
--

INSERT INTO `cw_payroll_formula` (`prime_payroll_id`, `formula_for`, `formula_type`, `out_column`, `payroll_formula`, `formula_mode`, `round_value`, `formula_order`, `fandf_only`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 2, 1, 'weekly_off', 0x407765656b6c795f6f666640, 1, '', 1, 0, 1, '2020-02-27 16:43:06', NULL, NULL, NULL, NULL, 1),
(2, 2, 1, 'leave_days', 0x406c656176655f6461797340, 1, '', 1, 0, 1, '2020-02-27 16:43:15', NULL, NULL, NULL, NULL, 1),
(3, 2, 1, 'leave_camp_off_days', 0x406c656176655f63616d705f6f66665f6461797340, 1, '', 1, 0, 1, '2020-02-27 16:43:22', NULL, NULL, NULL, NULL, 1),
(4, 2, 1, 'late_days', 0x406c6174655f6461797340, 1, '', 1, 0, 1, '2020-02-27 16:43:29', NULL, NULL, NULL, NULL, 1),
(5, 2, 1, 'late_comp_off_days', 0x406c6174655f636f6d705f6f66665f6461797340, 1, '', 1, 0, 1, '2020-02-27 16:43:37', NULL, NULL, NULL, NULL, 1),
(6, 2, 1, 'free_ta_and_oos_ta', 0x40667265655f74615f616e645f6f6f735f746140, 1, '', 1, 0, 1, '2020-02-27 16:43:44', NULL, NULL, NULL, NULL, 0),
(7, 2, 2, 'dra', 0x4064726140, 1, '', 1, 0, 1, '2020-02-27 16:43:55', NULL, NULL, NULL, NULL, 0),
(8, 2, 2, 'loan', 0x406c6f616e40, 1, '', 1, 0, 1, '2020-02-27 16:44:03', NULL, NULL, NULL, NULL, 1),
(9, 2, 2, 'pv', 0x40707640, 1, '', 1, 0, 1, '2020-02-27 16:44:08', NULL, NULL, NULL, NULL, 1),
(10, 2, 2, 'ta', 0x40746140, 1, '', 1, 0, 1, '2020-02-27 16:44:18', NULL, NULL, NULL, NULL, 1),
(11, 2, 2, 'os', 0x406f7340, 1, '', 1, 0, 1, '2020-02-27 16:44:25', NULL, NULL, NULL, NULL, 1),
(12, 2, 2, 'tds', 0x4074647340, 1, '', 1, 0, 1, '2020-02-27 16:44:31', NULL, NULL, NULL, NULL, 1),
(13, 2, 2, 'penalty', 0x4070656e616c747940, 1, '', 1, 0, 1, '2020-02-27 16:44:38', NULL, NULL, NULL, NULL, 1),
(14, 2, 1, 'late_off_day', 0x406c6174655f6f66665f64617940, 1, '', 1, 0, 1, '2020-02-27 16:45:26', NULL, NULL, NULL, NULL, 1),
(15, 2, 1, 'month_days', 0x406d6f6e74685f6461797340, 1, '', 1, 0, 1, '2020-02-27 16:47:14', NULL, NULL, NULL, NULL, 1),
(16, 2, 1, 'present', 0x406d6f6e74685f64617973402d407765656b6c795f6f6666402d40646966666572656e7469616c5f64617940, 2, '', 1, 0, 1, '2020-02-27 16:49:01', 1, '2020-04-20 12:29:00', NULL, NULL, 1),
(17, 2, 1, 'actual_leave_days', 0x406c656176655f64617973402d28406c656176655f63616d705f6f66665f64617973402b406c65617665735f616363756d756c617465644029, 2, '', 2, 0, 1, '2020-02-27 16:53:34', 1, '2020-04-09 17:46:27', NULL, NULL, 1),
(18, 2, 1, 'actual_late_days', 0x406c6174655f64617973402d406c6174655f636f6d705f6f66665f6461797340, 2, '', 3, 0, 1, '2020-02-27 16:53:55', NULL, NULL, NULL, NULL, 1),
(19, 2, 1, 'lop_days', 0x284061637475616c5f6c656176655f6461797340292b284061637475616c5f6c6174655f64617973402a406c6174655f6f66665f6461794029, 2, '', 4, 0, 1, '2020-02-27 16:54:40', 1, '2020-04-20 12:27:42', NULL, NULL, 1),
(20, 2, 1, 'paid_days', 0x406d6f6e74685f64617973402d406c6f705f64617973402d40646966666572656e7469616c5f64617940, 2, '', 5, 0, 1, '2020-02-27 16:55:53', 1, '2020-04-20 12:29:32', NULL, NULL, 1),
(21, 2, 1, 'fixed_gross', 0x4066697865645f67726f737340, 1, '', 1, 0, 1, '2020-02-27 16:57:08', NULL, NULL, NULL, NULL, 0),
(22, 2, 2, 'absent_deduction', 0x284066697865645f67726f7373402a4061637475616c5f6c656176655f6461797340292f406d6f6e74685f6461797340, 2, '1', 7, 0, 1, '2020-02-27 16:58:36', 1, '2020-02-27 17:02:32', NULL, NULL, 1),
(23, 2, 2, 'late_deduction', 0x284066697865645f67726f7373402a284061637475616c5f6c6174655f64617973402a406c6174655f6f66665f6461794029292f406d6f6e74685f6461797340, 2, '1', 8, 0, 1, '2020-02-27 17:04:14', 1, '2020-02-27 17:30:11', NULL, NULL, 1),
(24, 2, 2, 'documentation_fee', 0x40646f63756d656e746174696f6e5f66656540, 1, '', 1, 0, 1, '2020-02-27 17:48:06', NULL, NULL, NULL, NULL, 1),
(25, 2, 1, 'total_earn', 0x4066697865645f67726f7373402b40667265655f74615f616e645f6f6f735f7461402b40735f67726f7373402b406f746865725f726566756e64402b406c656176655f726566756e64402b406472615f726566756e64402b407464735f726566756e64402b40656d705f696e63656e74697665402b406172726561725f73616c617279402b40615f67726f737340, 2, '1', 12, 0, 1, '2020-02-27 17:50:09', 1, '2020-07-28 17:34:26', NULL, NULL, 1),
(26, 2, 2, 'total_deductions', 0x40616273656e745f646564756374696f6e402b406c6174655f646564756374696f6e402b40647261402b406c6f616e402b40646f63756d656e746174696f6e5f666565402b407076402b407461402b40746473402b4070656e616c7479402b4068756e647265645f7065725f6f735f646564402b4066696674795f7065725f6f735f646564402b406f735f68756e647265645f706572635f66726565402b4073616c6172795f616476616e6365402b40656d695f6c6f616e402b4073616c6172795f646564756374696f6e402b406f746865725f646564756374696f6e402b40707265765f6d6f6e74685f646564756374696f6e40, 2, '1', 15, 0, 1, '2020-02-27 17:52:00', 1, '2020-08-18 12:10:39', NULL, NULL, 1),
(27, 2, 1, 'net_pay', 0x40746f74616c5f6561726e402d40746f74616c5f646564756374696f6e73402d40646966666572656e7469616c5f646564756374696f6e40, 2, '1', 27, 0, 1, '2020-02-27 17:53:36', 1, '2020-08-18 12:11:06', NULL, NULL, 1),
(28, 2, 1, 'differential_day', 0x40646966666572656e7469616c5f64617940, 1, '', 1, 0, 1, '2020-02-28 10:05:36', NULL, NULL, NULL, NULL, 0),
(29, 2, 1, 'supplementary_day', 0x40737570706c656d656e746172795f64617940, 1, '', 1, 0, 1, '2020-02-28 12:38:16', NULL, NULL, NULL, NULL, 1),
(30, 2, 1, 'supplementary_month', 0x40737570706c656d656e746172795f6d6f6e746840, 1, '', 1, 0, 1, '2020-02-28 12:38:24', NULL, NULL, NULL, NULL, 0),
(31, 2, 1, 's_gross', 0x28647a28284066697865645f67726f7373402f40737570706c656d656e746172795f6d6f6e746840292a40737570706c656d656e746172795f64617940292029, 2, '1', 9, 0, 1, '2020-02-28 12:40:18', 1, '2020-02-28 15:10:05', NULL, NULL, 1),
(32, 3, 1, 'weekly_off', 0x407765656b6c795f6f666640, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(33, 3, 1, 'leave_days', 0x406c656176655f6461797340, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(34, 3, 1, 'leave_camp_off_days', 0x406c656176655f63616d705f6f66665f6461797340, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(35, 3, 1, 'late_days', 0x406c6174655f6461797340, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(36, 3, 1, 'late_comp_off_days', 0x406c6174655f636f6d705f6f66665f6461797340, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(37, 3, 1, 'free_ta_and_oos_ta', 0x40667265655f74615f616e645f6f6f735f746140, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 0),
(38, 3, 2, 'dra', 0x4064726140, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(39, 3, 2, 'loan', 0x406c6f616e40, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(40, 3, 2, 'pv', 0x40707640, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(41, 3, 2, 'ta', 0x40746140, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(42, 3, 2, 'os', 0x406f7340, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(43, 3, 2, 'tds', 0x4074647340, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(44, 3, 2, 'penalty', 0x4070656e616c747940, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(45, 3, 1, 'late_off_day', 0x406c6174655f6f66665f64617940, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(46, 3, 1, 'month_days', 0x406d6f6e74685f6461797340, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(47, 3, 1, 'present', 0x406d6f6e74685f64617973402d407765656b6c795f6f6666402d40646966666572656e7469616c5f64617940, 2, '', 1, 0, 1, '2020-03-26 20:01:50', 1, '2020-04-20 12:29:45', NULL, NULL, 1),
(48, 3, 1, 'actual_leave_days', 0x406c656176655f64617973402d28406c656176655f63616d705f6f66665f64617973402b406c65617665735f616363756d756c617465644029, 2, '', 2, 0, 1, '2020-03-26 20:01:50', 1, '2020-04-09 17:47:28', NULL, NULL, 1),
(49, 3, 1, 'actual_late_days', 0x2461203d20303b0a696628406c6174655f6461797340203e2032297b0a20202461203d20406c6174655f64617973402d406c6174655f616363756d756c61746564402d406c6174655f636f6d705f6f66665f6461797340203b0a7d0a72657475726e20202024613b, 3, '', 3, 0, 1, '2020-03-26 20:01:50', 1, '2020-07-24 12:42:12', NULL, NULL, 1),
(50, 3, 1, 'lop_days', 0x284061637475616c5f6c656176655f6461797340292b284061637475616c5f6c6174655f64617973402a406c6174655f6f66665f6461794029, 2, '', 4, 0, 1, '2020-03-26 20:01:50', 1, '2020-04-20 12:27:57', NULL, NULL, 1),
(51, 3, 1, 'paid_days', 0x406d6f6e74685f64617973402d406c6f705f64617973402d40646966666572656e7469616c5f64617940, 2, '', 5, 0, 1, '2020-03-26 20:01:50', 1, '2020-04-20 12:30:02', NULL, NULL, 1),
(52, 3, 1, 'fixed_gross', 0x4066697865645f67726f737340, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 0),
(53, 3, 2, 'absent_deduction', 0x284066697865645f67726f7373402a4061637475616c5f6c656176655f6461797340292f406d6f6e74685f6461797340, 2, '1', 7, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(54, 3, 2, 'late_deduction', 0x284066697865645f67726f7373402a284061637475616c5f6c6174655f64617973402a406c6174655f6f66665f6461794029292f406d6f6e74685f6461797340, 2, '1', 8, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(55, 3, 2, 'documentation_fee', 0x40646f63756d656e746174696f6e5f66656540, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(56, 3, 1, 'dra_refund', 0x406472615f726566756e6440, 1, '', 1, 0, 1, '2020-03-26 20:01:50', 1, '2020-04-08 20:34:35', NULL, NULL, 1),
(57, 3, 2, 'total_deductions', 0x40616273656e745f646564756374696f6e402b406c6174655f646564756374696f6e402b40647261402b406c6f616e402b40646f63756d656e746174696f6e5f666565402b407076402b407461402b40746473402b4070656e616c7479402b4068756e647265645f7065725f6f735f646564402b4066696674795f7065725f6f735f646564402b406f735f68756e647265645f706572635f66726565402b4073616c6172795f616476616e6365402b40656d695f6c6f616e402b4073616c6172795f646564756374696f6e402b406f746865725f646564756374696f6e402b4066696674795f7065725f6f735f646564402b40707265765f6d6f6e74685f646564756374696f6e40, 2, '1', 24, 0, 1, '2020-03-26 20:01:50', 1, '2020-08-18 12:11:28', NULL, NULL, 1),
(58, 3, 1, 'net_pay', 0x40746f74616c5f6561726e402d40746f74616c5f646564756374696f6e73402d40646966666572656e7469616c5f646564756374696f6e40, 2, '1', 27, 0, 1, '2020-03-26 20:01:50', 1, '2020-08-18 12:12:50', NULL, NULL, 1),
(59, 3, 1, 'differential_day', 0x40646966666572656e7469616c5f64617940, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(60, 3, 1, 'supplementary_day', 0x40737570706c656d656e746172795f64617940, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(61, 3, 1, 'supplementary_month', 0x40737570706c656d656e746172795f6d6f6e746840, 1, '', 1, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(62, 3, 1, 's_gross', 0x28647a28284066697865645f67726f7373402f40737570706c656d656e746172795f6d6f6e746840292a40737570706c656d656e746172795f64617940292029, 2, '1', 9, 0, 1, '2020-03-26 20:01:50', NULL, NULL, NULL, NULL, 1),
(63, 3, 1, 'metro', 0x406d6574726f40, 1, '', 1, 0, 1, '2020-03-29 20:57:07', NULL, NULL, NULL, NULL, 1),
(64, 3, 1, 'fixed_basic', 0x696628406d6574726f40203d3d31290a7b0a72657475726e20284066697865645f67726f7373402a3530292f3130303b0a7d0a656c73650a7b0a72657475726e20284066697865645f67726f7373402a3430292f3130303b0a7d0a, 3, '', 10, 0, 1, '2020-03-29 20:58:06', 1, '2020-04-28 10:12:58', NULL, NULL, 1),
(65, 3, 1, 'fixed_hra', 0x696628406d6574726f40203d3d31290a7b0a72657475726e20284066697865645f6261736963402a3530292f3130303b0a7d0a656c73650a7b0a72657475726e20284066697865645f6261736963402a3430292f3130303b0a7d0a, 3, '', 11, 0, 1, '2020-03-29 20:58:31', NULL, NULL, NULL, NULL, 1),
(66, 3, 1, 'fixed_conveyance', 0x6966284066697865645f67726f7373403c3d3135303030290a7b0a24783d303b0a72657475726e2024783b0a7d0a656c7365696628284066697865645f67726f7373403e31353030302920262620284066697865645f67726f737340203c3d323030303029290a7b0a24783d3333333b0a72657475726e2024783b0a7d0a656c7365696628284066697865645f67726f7373403e3d32303030302920262620284066697865645f67726f737340203c3d323530303029290a7b0a24783d3530303b0a72657475726e2024783b0a7d0a656c73656966284066697865645f67726f7373403e3235303030290a7b0a24783d313630303b0a72657475726e2024783b0a7d0a656c73650a7b0a24783d303b0a72657475726e2024783b0a7d, 3, '', 12, 0, 1, '2020-03-29 20:59:05', NULL, NULL, NULL, NULL, 1),
(67, 3, 1, 'fo_allowance', 0x4066697865645f67726f7373402d284066697865645f6261736963402b4066697865645f687261402b4066697865645f636f6e766579616e63654029, 2, '', 13, 0, 1, '2020-03-29 20:59:26', NULL, NULL, NULL, NULL, 1),
(68, 3, 1, 'basic', 0x4066697865645f626173696340, 2, '', 14, 0, 1, '2020-03-29 21:00:47', 1, '2020-04-28 10:05:25', NULL, NULL, 1),
(69, 3, 1, 'hra', 0x4066697865645f68726140, 2, '', 15, 0, 1, '2020-03-29 21:01:00', NULL, NULL, NULL, NULL, 1),
(70, 3, 1, 'conveyance', 0x4066697865645f636f6e766579616e636540, 2, '', 16, 0, 1, '2020-03-29 21:02:23', NULL, NULL, NULL, NULL, 1),
(71, 3, 1, 'other_allowance', 0x40666f5f616c6c6f77616e636540, 2, '', 17, 0, 1, '2020-03-29 21:03:59', NULL, NULL, NULL, NULL, 1),
(72, 3, 1, 'gross', 0x4066697865645f67726f737340, 2, '', 18, 0, 1, '2020-03-29 21:04:34', NULL, NULL, NULL, NULL, 1),
(73, 3, 1, 'tds_refund', 0x407464735f726566756e6440, 1, '', 1, 0, 1, '2020-04-08 19:39:38', NULL, NULL, NULL, NULL, 1),
(74, 3, 1, 'lop_refund_days', 0x406c6f705f726566756e645f6461797340, 1, '', 1, 0, 1, '2020-04-08 19:39:51', NULL, NULL, NULL, NULL, 1),
(75, 3, 1, 'other_refund', 0x406f746865725f726566756e6440, 1, '', 1, 0, 1, '2020-04-08 19:46:55', NULL, NULL, NULL, NULL, 0),
(76, 3, 1, 'leave_refund', 0x284067726f7373402a406c6f705f726566756e645f6461797340292f406d6f6e74685f6461797340, 2, '', 19, 0, 1, '2020-04-08 20:25:11', NULL, NULL, NULL, NULL, 1),
(77, 3, 1, 'total_earn', 0x4066697865645f67726f7373402b40667265655f74615f616e645f6f6f735f7461402b40735f67726f7373402b406c656176655f726566756e64402b406472615f726566756e64402b407464735f726566756e64402b406f746865725f726566756e64402b40656d705f696e63656e74697665402b406172726561725f73616c617279402b40615f67726f737340, 2, '', 21, 0, 1, '2020-04-08 20:46:31', 1, '2020-07-28 17:34:59', NULL, NULL, 1),
(78, 3, 1, 'other_refund', 0x406f746865725f726566756e6440, 1, '', 1, 0, 1, '2020-04-08 21:46:00', 1, '2020-04-10 18:04:57', NULL, NULL, 1),
(79, 2, 1, 'tds_refund', 0x407464735f726566756e6440, 1, '', 1, 0, 1, '2020-04-08 21:47:58', NULL, NULL, NULL, NULL, 1),
(80, 2, 1, 'dra_refund', 0x406472615f726566756e6440, 1, '', 1, 0, 1, '2020-04-08 21:48:10', NULL, NULL, NULL, NULL, 1),
(81, 2, 1, 'lop_refund_days', 0x406c6f705f726566756e645f6461797340, 1, '', 1, 0, 1, '2020-04-08 21:48:24', NULL, NULL, NULL, NULL, 1),
(82, 2, 1, 'leave_refund', 0x284066697865645f67726f7373402a406c6f705f726566756e645f6461797340292f406d6f6e74685f6461797340, 2, '', 10, 0, 1, '2020-04-08 21:50:08', NULL, NULL, NULL, NULL, 1),
(83, 2, 1, 'other_refund', 0x406f746865725f726566756e6440, 1, '', 1, 0, 1, '2020-04-08 21:50:52', 1, '2020-04-10 18:04:27', NULL, NULL, 1),
(84, 3, 1, 'leaves_accumulated', 0x406c65617665735f616363756d756c6174656440, 1, '', 1, 0, 1, '2020-04-09 17:45:35', NULL, NULL, NULL, NULL, 1),
(85, 2, 1, 'leaves_accumulated', 0x406c65617665735f616363756d756c6174656440, 1, '', 1, 0, 1, '2020-04-09 17:45:47', NULL, NULL, NULL, NULL, 1),
(86, 2, 1, 'differential_day', 0x40646966666572656e7469616c5f64617940, 1, '', 1, 0, 1, '2020-04-17 11:29:24', NULL, NULL, NULL, NULL, 0),
(87, 2, 2, 'fifty_per_os_ded', 0x4066696674795f7065725f6f735f64656440, 1, '', 1, 0, 1, '2020-04-17 15:29:20', NULL, NULL, NULL, NULL, 1),
(88, 2, 2, 'hundred_per_os_ded', 0x4068756e647265645f7065725f6f735f64656440, 1, '', 1, 0, 1, '2020-04-17 15:29:30', NULL, NULL, NULL, NULL, 1),
(89, 2, 2, 'os_hundred_perc_free', 0x406f735f68756e647265645f706572635f6672656540, 1, '', 1, 0, 1, '2020-04-17 15:29:47', NULL, NULL, NULL, NULL, 1),
(90, 2, 1, 'free_ta_and_oos_ta', 0x284066696674795f7065725f6f735f646564402f32292b406f735f68756e647265645f706572635f6672656540, 2, '', 11, 0, 1, '2020-04-17 15:32:06', NULL, NULL, NULL, NULL, 1),
(91, 3, 2, 'hundred_per_os_ded', 0x4068756e647265645f7065725f6f735f64656440, 1, '', 1, 0, 1, '2020-04-17 15:36:32', NULL, NULL, NULL, NULL, 1),
(92, 3, 2, 'fifty_per_os_ded', 0x4066696674795f7065725f6f735f64656440, 1, '', 1, 0, 1, '2020-04-17 15:36:39', NULL, NULL, NULL, NULL, 1),
(93, 3, 2, 'os_hundred_perc_free', 0x406f735f68756e647265645f706572635f6672656540, 1, '', 1, 0, 1, '2020-04-17 15:36:52', NULL, NULL, NULL, NULL, 1),
(94, 3, 1, 'free_ta_and_oos_ta', 0x284066696674795f7065725f6f735f646564402f32292b406f735f68756e647265645f706572635f6672656540, 2, '', 20, 0, 1, '2020-04-17 15:37:24', NULL, NULL, NULL, NULL, 1),
(95, 3, 2, 'salary_advance', 0x4073616c6172795f616476616e636540, 1, '', 1, 0, 1, '2020-04-18 17:07:17', NULL, NULL, NULL, NULL, 1),
(96, 2, 2, 'salary_advance', 0x4073616c6172795f616476616e636540, 1, '', 1, 0, 1, '2020-04-18 17:53:07', NULL, NULL, NULL, NULL, 1),
(97, 2, 2, 'emi_loan', 0x40656d695f6c6f616e40, 1, '', 1, 0, 1, '2020-04-18 17:54:04', NULL, NULL, NULL, NULL, 1),
(98, 3, 2, 'emi_loan', 0x40656d695f6c6f616e40, 1, '', 1, 0, 1, '2020-04-18 17:54:15', NULL, NULL, NULL, NULL, 1),
(99, 3, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-04-20 11:50:42', NULL, NULL, NULL, NULL, 1),
(100, 2, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-04-20 11:54:48', NULL, NULL, NULL, NULL, 0),
(101, 3, 2, 'differential_deduction', 0x284066697865645f67726f7373402a2840646966666572656e7469616c5f6461794029292f406d6f6e74685f6461797340, 2, '1', 22, 0, 1, '2020-04-20 12:36:06', NULL, NULL, NULL, NULL, 1),
(102, 2, 2, 'differential_deduction', 0x284066697865645f67726f7373402a2840646966666572656e7469616c5f6461794029292f406d6f6e74685f6461797340, 2, '', 13, 0, 1, '2020-04-20 12:39:38', NULL, NULL, NULL, NULL, 1),
(103, 2, 2, 'salary_ded_percentage', 0x4073616c6172795f6465645f70657263656e7461676540, 1, '', 1, 0, 1, '2020-04-22 17:37:15', NULL, NULL, NULL, NULL, 1),
(104, 2, 2, 'salary_deduction', 0x284066697865645f67726f7373402a4073616c6172795f6465645f70657263656e7461676540292f313030, 2, '', 14, 0, 1, '2020-04-22 17:41:50', NULL, NULL, NULL, NULL, 1),
(105, 3, 2, 'salary_ded_percentage', 0x4073616c6172795f6465645f70657263656e7461676540, 1, '', 1, 0, 1, '2020-04-22 17:42:03', NULL, NULL, NULL, NULL, 1),
(106, 3, 2, 'salary_deduction', 0x284066697865645f67726f7373402a4073616c6172795f6465645f70657263656e7461676540292f313030, 2, '', 23, 0, 1, '2020-04-22 17:42:40', NULL, NULL, NULL, NULL, 1),
(107, 5, 1, 'weekly_off', 0x407765656b6c795f6f666640, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(108, 5, 1, 'leave_days', 0x406c656176655f6461797340, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(109, 5, 1, 'leave_camp_off_days', 0x406c656176655f63616d705f6f66665f6461797340, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(110, 5, 1, 'late_days', 0x406c6174655f6461797340, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(111, 5, 1, 'late_comp_off_days', 0x406c6174655f636f6d705f6f66665f6461797340, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(112, 5, 2, 'dra', 0x4064726140, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(113, 5, 2, 'loan', 0x406c6f616e40, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(114, 5, 2, 'pv', 0x40707640, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(115, 5, 2, 'ta', 0x40746140, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(116, 5, 2, 'os', 0x406f7340, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(117, 5, 2, 'tds', 0x4074647340, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(118, 5, 2, 'penalty', 0x4070656e616c747940, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(119, 5, 1, 'late_off_day', 0x406c6174655f6f66665f64617940, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(120, 5, 1, 'month_days', 0x406d6f6e74685f6461797340, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(121, 5, 1, 'present', 0x406d6f6e74685f64617973402d407765656b6c795f6f6666402d40646966666572656e7469616c5f64617940, 2, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(122, 5, 1, 'actual_leave_days', 0x406c656176655f64617973402d28406c656176655f63616d705f6f66665f64617973402b406c65617665735f616363756d756c617465644029, 2, '', 2, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(123, 5, 1, 'actual_late_days', 0x406c6174655f64617973402d406c6174655f636f6d705f6f66665f6461797340, 2, '', 3, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(124, 5, 1, 'lop_days', 0x284061637475616c5f6c656176655f6461797340292b284061637475616c5f6c6174655f64617973402a406c6174655f6f66665f6461794029, 2, '', 4, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(125, 5, 1, 'paid_days', 0x406d6f6e74685f64617973402d406c6f705f64617973402d40646966666572656e7469616c5f64617940, 2, '', 5, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(126, 5, 1, 'fixed_gross', 0x4066697865645f67726f737340, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 0),
(127, 5, 2, 'absent_deduction', 0x284066697865645f67726f7373402a4061637475616c5f6c656176655f6461797340292f406d6f6e74685f6461797340, 2, '1', 7, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(128, 5, 2, 'late_deduction', 0x284066697865645f67726f7373402a284061637475616c5f6c6174655f64617973402a406c6174655f6f66665f6461794029292f406d6f6e74685f6461797340, 2, '1', 8, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(129, 5, 2, 'documentation_fee', 0x40646f63756d656e746174696f6e5f66656540, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(130, 5, 1, 'total_earn', 0x40667265655f74615f616e645f6f6f735f7461402b406f746865725f726566756e64402b406c656176655f726566756e64402b406472615f726566756e64402b407464735f726566756e64402b40666f735f73616c617279402b40735f67726f7373402b40656d705f696e63656e74697665402b406172726561725f73616c617279402b40615f67726f737340, 2, '1', 12, 0, 1, '2020-04-23 14:16:21', 1, '2020-07-28 17:36:19', NULL, NULL, 1),
(131, 5, 2, 'total_deductions', 0x40616273656e745f646564756374696f6e402b406c6174655f646564756374696f6e402b40647261402b406c6f616e402b40646f63756d656e746174696f6e5f666565402b407076402b407461402b40746473402b4070656e616c7479402b4068756e647265645f7065725f6f735f646564402b4066696674795f7065725f6f735f646564402b406f735f68756e647265645f706572635f66726565402b4073616c6172795f616476616e6365402b40656d695f6c6f616e402b4073616c6172795f646564756374696f6e402b4068756e647265645f7065725f6f735f646564402b406f746865725f646564756374696f6e402b40707265765f6d6f6e74685f646564756374696f6e40, 2, '1', 15, 0, 1, '2020-04-23 14:16:21', 1, '2020-08-18 12:11:49', NULL, NULL, 1),
(132, 5, 1, 'net_pay', 0x40746f74616c5f6561726e402d40746f74616c5f646564756374696f6e73402d40646966666572656e7469616c5f646564756374696f6e40, 2, '1', 27, 0, 1, '2020-04-23 14:16:21', 1, '2020-08-18 12:13:05', NULL, NULL, 1),
(133, 5, 1, 'supplementary_day', 0x40737570706c656d656e746172795f64617940, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(134, 5, 1, 'supplementary_month', 0x40737570706c656d656e746172795f6d6f6e746840, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(135, 5, 1, 's_gross', 0x28647a28284066697865645f67726f7373402f40737570706c656d656e746172795f6d6f6e746840292a40737570706c656d656e746172795f64617940292029, 2, '1', 9, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(136, 5, 1, 'tds_refund', 0x407464735f726566756e6440, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(137, 5, 1, 'dra_refund', 0x406472615f726566756e6440, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(138, 5, 1, 'lop_refund_days', 0x406c6f705f726566756e645f6461797340, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(139, 5, 1, 'leave_refund', 0x284066697865645f67726f7373402a406c6f705f726566756e645f6461797340292f406d6f6e74685f6461797340, 2, '', 10, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(140, 5, 1, 'other_refund', 0x406f746865725f726566756e6440, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(141, 5, 1, 'leaves_accumulated', 0x406c65617665735f616363756d756c6174656440, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(142, 5, 1, 'differential_day', 0x40646966666572656e7469616c5f64617940, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(143, 5, 2, 'fifty_per_os_ded', 0x4066696674795f7065725f6f735f64656440, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(144, 5, 2, 'hundred_per_os_ded', 0x4068756e647265645f7065725f6f735f64656440, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(145, 5, 2, 'os_hundred_perc_free', 0x406f735f68756e647265645f706572635f6672656540, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(146, 5, 1, 'free_ta_and_oos_ta', 0x284066696674795f7065725f6f735f646564402f32292b406f735f68756e647265645f706572635f6672656540, 2, '', 11, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(147, 5, 2, 'salary_advance', 0x4073616c6172795f616476616e636540, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(148, 5, 2, 'emi_loan', 0x40656d695f6c6f616e40, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(149, 5, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(150, 5, 2, 'differential_deduction', 0x284066697865645f67726f7373402a2840646966666572656e7469616c5f6461794029292f406d6f6e74685f6461797340, 2, '', 13, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(151, 5, 2, 'salary_ded_percentage', 0x4073616c6172795f6465645f70657263656e7461676540, 1, '', 1, 0, 1, '2020-04-23 14:16:21', NULL, NULL, NULL, NULL, 1),
(152, 5, 2, 'salary_deduction', 0x2840666f735f73616c617279402a4073616c6172795f6465645f70657263656e7461676540292f313030, 2, '', 14, 0, 1, '2020-04-23 14:16:21', 1, '2020-04-24 11:44:30', NULL, NULL, 1),
(170, 5, 1, 'fos_salary', 0x40666f735f73616c61727940, 1, '', 1, 0, 1, '2020-04-23 14:58:39', NULL, NULL, NULL, NULL, 1),
(171, 2, 2, 'other_deduction', 0x406f746865725f646564756374696f6e40, 1, '', 1, 0, 1, '2020-04-24 12:17:35', NULL, NULL, NULL, NULL, 1),
(172, 3, 2, 'other_deduction', 0x406f746865725f646564756374696f6e40, 1, '', 1, 0, 1, '2020-04-24 12:17:44', NULL, NULL, NULL, NULL, 1),
(173, 5, 2, 'other_deduction', 0x406f746865725f646564756374696f6e40, 1, '', 1, 0, 1, '2020-04-24 12:17:55', NULL, NULL, NULL, NULL, 1),
(174, 2, 1, 'emp_incentive', 0x40656d705f696e63656e7469766540, 1, '', 1, 0, 1, '2020-04-25 19:28:48', NULL, NULL, NULL, NULL, 1),
(175, 3, 1, 'emp_incentive', 0x40656d705f696e63656e7469766540, 1, '', 1, 0, 1, '2020-04-25 19:30:29', NULL, NULL, NULL, NULL, 1),
(176, 5, 1, 'emp_incentive', 0x40656d705f696e63656e7469766540, 1, '', 1, 0, 1, '2020-04-25 19:36:19', NULL, NULL, NULL, NULL, 1),
(177, 2, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-04-27 18:46:05', NULL, NULL, NULL, NULL, 0),
(178, 2, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-04-28 10:02:46', NULL, NULL, NULL, NULL, 0),
(179, 2, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-04-28 10:55:28', NULL, NULL, NULL, NULL, 0),
(180, 2, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-04-28 10:58:04', NULL, NULL, NULL, NULL, 0),
(181, 2, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-04-28 11:07:04', NULL, NULL, NULL, NULL, 0),
(182, 2, 1, 'differential_day', 0x40646966666572656e7469616c5f64617940, 1, '', 1, 0, 1, '2020-04-28 11:08:56', NULL, NULL, NULL, NULL, 1),
(183, 2, 1, 'supplementary_month', 0x40737570706c656d656e746172795f6d6f6e746840, 1, '', 1, 0, 1, '2020-04-28 11:10:27', NULL, NULL, NULL, NULL, 1),
(184, 2, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-04-28 11:55:07', NULL, NULL, NULL, NULL, 0),
(185, 2, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-04-28 19:12:43', NULL, NULL, NULL, NULL, 0),
(186, 2, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-04-28 19:16:33', NULL, NULL, NULL, NULL, 0),
(187, 2, 1, 'fixed_gross', 0x4066697865645f67726f737340, 1, '', 1, 0, 1, '2020-04-28 19:17:53', NULL, NULL, NULL, NULL, 0),
(188, 2, 1, 'metro', 0x406d6574726f40, 1, '', 1, 0, 1, '2020-05-14 16:42:07', NULL, NULL, NULL, NULL, 1),
(189, 2, 1, 'fixed_basic', 0x696628406d6574726f40203d3d3129207b2072657475726e20284066697865645f67726f7373402a3530292f3130303b207d20656c7365207b2072657475726e20284066697865645f67726f7373402a3430292f3130303b207d, 3, '', 16, 0, 1, '2020-05-14 16:42:55', NULL, NULL, NULL, NULL, 1),
(190, 2, 1, 'fixed_hra', 0x696628406d6574726f40203d3d3129207b2072657475726e20284066697865645f6261736963402a3530292f3130303b207d20656c7365207b2072657475726e20284066697865645f6261736963402a3430292f3130303b207d, 3, '', 17, 0, 1, '2020-05-14 16:43:24', NULL, NULL, NULL, NULL, 1),
(191, 2, 1, 'fixed_conveyance', 0x6966284066697865645f67726f7373403c3d313530303029207b200a0924783d303b0a0972657475726e2024783b0a7d20656c7365696628284066697865645f67726f7373403e31353030302920262620284066697865645f67726f737340203c3d32303030302929207b0a0924783d3333333b0a0972657475726e2024783b200a7d20656c7365696628284066697865645f67726f7373403e3d32303030302920262620284066697865645f67726f737340203c3d32353030302929207b200a0924783d3530303b200a0972657475726e2024783b200a7d20656c73656966284066697865645f67726f7373403e323530303029207b0a0924783d313630303b200a0972657475726e2024783b200a7d20656c7365207b200a0924783d303b200a0972657475726e2024783b200a7d, 3, '', 18, 0, 1, '2020-05-14 16:44:54', NULL, NULL, NULL, NULL, 1),
(192, 2, 1, 'fo_allowance', 0x4066697865645f67726f7373402d284066697865645f6261736963402b4066697865645f687261402b4066697865645f636f6e766579616e63654029, 2, '', 19, 0, 1, '2020-05-14 16:45:19', NULL, NULL, NULL, NULL, 1),
(193, 2, 1, 'basic', 0x4066697865645f626173696340, 2, '', 20, 0, 1, '2020-05-14 16:47:05', 1, '2020-05-14 17:03:54', NULL, NULL, 1),
(194, 2, 1, 'hra', 0x4066697865645f68726140, 2, '', 21, 0, 1, '2020-05-14 16:47:30', 1, '2020-05-14 17:04:39', NULL, NULL, 1),
(195, 2, 1, 'conveyance', 0x4066697865645f636f6e766579616e636540, 2, '', 22, 0, 1, '2020-05-14 16:48:01', 1, '2020-05-14 17:04:56', NULL, NULL, 1),
(196, 2, 1, 'other_allowance', 0x40666f5f616c6c6f77616e636540, 2, '', 23, 0, 1, '2020-05-14 16:48:57', 1, '2020-05-14 17:05:13', NULL, NULL, 1),
(197, 2, 1, 'gross', 0x4066697865645f67726f737340, 2, '', 24, 0, 1, '2020-05-14 16:50:30', 1, '2020-05-14 17:04:20', NULL, NULL, 1),
(198, 5, 1, 'metro', 0x406d6574726f40, 1, '', 1, 0, 1, '2020-05-14 16:53:05', NULL, NULL, NULL, NULL, 1),
(199, 5, 1, 'fixed_basic', 0x696628406d6574726f40203d3d3129207b2072657475726e202840666f735f73616c617279402a3530292f3130303b207d20656c7365207b2072657475726e202840666f735f73616c617279402a3430292f3130303b207d, 3, '', 16, 0, 1, '2020-05-14 16:54:05', NULL, NULL, NULL, NULL, 1),
(200, 5, 1, 'fixed_hra', 0x696628406d6574726f40203d3d3129207b2072657475726e20284066697865645f6261736963402a3530292f3130303b207d20656c7365207b2072657475726e20284066697865645f6261736963402a3430292f3130303b207d, 3, '', 17, 0, 1, '2020-05-14 16:54:34', NULL, NULL, NULL, NULL, 1),
(201, 5, 1, 'fixed_conveyance', 0x69662840666f735f73616c617279403c3d313530303029207b200a0924783d303b0a0972657475726e2024783b0a7d20656c73656966282840666f735f73616c617279403e313530303029202626202840666f735f73616c61727940203c3d32303030302929207b0a0924783d3333333b0a0972657475726e2024783b200a7d20656c73656966282840666f735f73616c617279403e3d323030303029202626202840666f735f73616c61727940203c3d32353030302929207b200a0924783d3530303b200a0972657475726e2024783b200a7d20656c736569662840666f735f73616c617279403e323530303029207b0a0924783d313630303b200a0972657475726e2024783b200a7d20656c7365207b200a0924783d303b200a0972657475726e2024783b200a7d, 3, '', 18, 0, 1, '2020-05-14 16:56:40', NULL, NULL, NULL, NULL, 1),
(202, 5, 1, 'fo_allowance', 0x40666f735f73616c617279402d284066697865645f6261736963402b4066697865645f687261402b4066697865645f636f6e766579616e63654029, 2, '', 19, 0, 1, '2020-05-14 16:57:21', NULL, NULL, NULL, NULL, 1),
(203, 5, 1, 'basic', 0x4066697865645f626173696340, 2, '', 20, 0, 1, '2020-05-14 16:57:54', 1, '2020-05-14 17:05:35', NULL, NULL, 1),
(204, 5, 1, 'hra', 0x4066697865645f68726140, 2, '', 21, 0, 1, '2020-05-14 16:58:28', 1, '2020-05-14 17:05:58', NULL, NULL, 1),
(205, 5, 1, 'conveyance', 0x4066697865645f636f6e766579616e636540, 2, '', 22, 0, 1, '2020-05-14 16:59:03', 1, '2020-05-14 17:06:19', NULL, NULL, 1),
(206, 5, 1, 'other_allowance', 0x40666f5f616c6c6f77616e636540, 2, '', 23, 0, 1, '2020-05-14 17:00:10', 1, '2020-05-14 17:06:48', NULL, NULL, 1),
(207, 5, 1, 'gross', 0x40666f735f73616c61727940, 2, '', 24, 0, 1, '2020-05-14 17:00:42', 1, '2020-05-14 17:07:20', NULL, NULL, 1),
(208, 2, 1, 'arrear_salary', 0x406172726561725f73616c61727940, 1, '', 1, 0, 1, '2020-05-27 13:12:41', NULL, NULL, NULL, NULL, 1),
(209, 3, 1, 'arrear_salary', 0x406172726561725f73616c61727940, 1, '', 1, 0, 1, '2020-05-27 13:13:53', NULL, NULL, NULL, NULL, 1),
(210, 5, 1, 'arrear_salary', 0x406172726561725f73616c61727940, 1, '', 1, 0, 1, '2020-05-27 13:14:46', NULL, NULL, NULL, NULL, 1),
(211, 6, 1, 'weekly_off', 0x407765656b6c795f6f666640, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(212, 6, 1, 'leave_days', 0x406c656176655f6461797340, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(213, 6, 1, 'leave_camp_off_days', 0x406c656176655f63616d705f6f66665f6461797340, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(214, 6, 1, 'late_days', 0x406c6174655f6461797340, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(215, 6, 1, 'late_comp_off_days', 0x406c6174655f636f6d705f6f66665f6461797340, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(216, 6, 2, 'dra', 0x4064726140, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(217, 6, 2, 'loan', 0x406c6f616e40, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(218, 6, 2, 'pv', 0x40707640, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(219, 6, 2, 'ta', 0x40746140, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(220, 6, 2, 'os', 0x406f7340, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(221, 6, 2, 'tds', 0x4074647340, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(222, 6, 2, 'penalty', 0x4070656e616c747940, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(223, 6, 1, 'late_off_day', 0x406c6174655f6f66665f64617940, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(224, 6, 1, 'month_days', 0x406d6f6e74685f6461797340, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(225, 6, 1, 'present', 0x406d6f6e74685f64617973402d407765656b6c795f6f6666402d40646966666572656e7469616c5f64617940, 2, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(226, 6, 1, 'actual_leave_days', 0x406c656176655f64617973402d28406c656176655f63616d705f6f66665f64617973402b406c65617665735f616363756d756c617465644029, 2, '', 2, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(227, 6, 1, 'actual_late_days', 0x406c6174655f64617973402d406c6174655f636f6d705f6f66665f6461797340, 2, '', 3, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(228, 6, 1, 'lop_days', 0x284061637475616c5f6c656176655f6461797340292b284061637475616c5f6c6174655f64617973402a406c6174655f6f66665f6461794029, 2, '', 4, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(229, 6, 1, 'paid_days', 0x406d6f6e74685f64617973402d406c6f705f64617973402d40646966666572656e7469616c5f64617940, 2, '', 5, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(230, 6, 1, 'fixed_gross', 0x4066697865645f67726f737340, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 0),
(231, 6, 2, 'absent_deduction', 0x284066697865645f67726f7373402a4061637475616c5f6c656176655f6461797340292f406d6f6e74685f6461797340, 2, '1', 7, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(232, 6, 2, 'late_deduction', 0x284066697865645f67726f7373402a284061637475616c5f6c6174655f64617973402a406c6174655f6f66665f6461794029292f406d6f6e74685f6461797340, 2, '1', 8, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(233, 6, 2, 'documentation_fee', 0x40646f63756d656e746174696f6e5f66656540, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(234, 6, 1, 'dra_refund', 0x406472615f726566756e6440, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(235, 6, 2, 'total_deductions', 0x40616273656e745f646564756374696f6e402b406c6174655f646564756374696f6e402b40647261402b406c6f616e402b40646f63756d656e746174696f6e5f666565402b407076402b407461402b40746473402b4070656e616c7479402b4068756e647265645f7065725f6f735f646564402b4066696674795f7065725f6f735f646564402b406f735f68756e647265645f706572635f66726565402b4073616c6172795f616476616e6365402b40656d695f6c6f616e402b4073616c6172795f646564756374696f6e402b406f746865725f646564756374696f6e402b40707265765f6d6f6e74685f646564756374696f6e40, 2, '1', 24, 0, 1, '2020-07-04 11:22:51', 1, '2020-08-18 12:12:08', NULL, NULL, 1),
(236, 6, 1, 'net_pay', 0x40746f74616c5f6561726e402d40746f74616c5f646564756374696f6e73402d40646966666572656e7469616c5f646564756374696f6e40, 2, '1', 26, 0, 1, '2020-07-04 11:22:51', 1, '2020-08-18 12:13:18', NULL, NULL, 1),
(237, 6, 1, 'differential_day', 0x40646966666572656e7469616c5f64617940, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(238, 6, 1, 'supplementary_day', 0x40737570706c656d656e746172795f64617940, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(239, 6, 1, 'supplementary_month', 0x40737570706c656d656e746172795f6d6f6e746840, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(240, 6, 1, 's_gross', 0x28647a28284066697865645f67726f7373402f40737570706c656d656e746172795f6d6f6e746840292a40737570706c656d656e746172795f64617940292029, 2, '1', 9, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(241, 6, 1, 'metro', 0x406d6574726f40, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(242, 6, 1, 'fixed_basic', 0x696628406d6574726f40203d3d31290a7b0a72657475726e20284066697865645f67726f7373402a3530292f3130303b0a7d0a656c73650a7b0a72657475726e20284066697865645f67726f7373402a3430292f3130303b0a7d0a, 3, '', 10, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(243, 6, 1, 'fixed_hra', 0x696628406d6574726f40203d3d31290a7b0a72657475726e20284066697865645f6261736963402a3530292f3130303b0a7d0a656c73650a7b0a72657475726e20284066697865645f6261736963402a3430292f3130303b0a7d0a, 3, '', 11, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(244, 6, 1, 'fixed_conveyance', 0x6966284066697865645f67726f7373403c3d3135303030290a7b0a24783d303b0a72657475726e2024783b0a7d0a656c7365696628284066697865645f67726f7373403e31353030302920262620284066697865645f67726f737340203c3d323030303029290a7b0a24783d3333333b0a72657475726e2024783b0a7d0a656c7365696628284066697865645f67726f7373403e3d32303030302920262620284066697865645f67726f737340203c3d323530303029290a7b0a24783d3530303b0a72657475726e2024783b0a7d0a656c73656966284066697865645f67726f7373403e3235303030290a7b0a24783d313630303b0a72657475726e2024783b0a7d0a656c73650a7b0a24783d303b0a72657475726e2024783b0a7d, 3, '', 12, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(245, 6, 1, 'fo_allowance', 0x4066697865645f67726f7373402d284066697865645f6261736963402b4066697865645f687261402b4066697865645f636f6e766579616e63654029, 2, '', 13, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(246, 6, 1, 'basic', 0x4066697865645f626173696340, 2, '', 14, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(247, 6, 1, 'hra', 0x4066697865645f68726140, 2, '', 15, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(248, 6, 1, 'conveyance', 0x4066697865645f636f6e766579616e636540, 2, '', 16, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(249, 6, 1, 'other_allowance', 0x40666f5f616c6c6f77616e636540, 2, '', 17, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(250, 6, 1, 'gross', 0x4066697865645f67726f737340, 2, '', 18, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(251, 6, 1, 'tds_refund', 0x407464735f726566756e6440, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(252, 6, 1, 'lop_refund_days', 0x406c6f705f726566756e645f6461797340, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(253, 6, 1, 'leave_refund', 0x284067726f7373402a406c6f705f726566756e645f6461797340292f406d6f6e74685f6461797340, 2, '', 19, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(254, 6, 1, 'total_earn', 0x4066697865645f67726f7373402b40667265655f74615f616e645f6f6f735f7461402b40735f67726f7373402b406c656176655f726566756e64402b406472615f726566756e64402b407464735f726566756e64402b406f746865725f726566756e64402b40656d705f696e63656e74697665402b406172726561725f73616c617279402b40615f67726f737340, 2, '', 21, 0, 1, '2020-07-04 11:22:51', 1, '2020-07-28 17:36:43', NULL, NULL, 1),
(255, 6, 1, 'other_refund', 0x406f746865725f726566756e6440, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(256, 6, 1, 'leaves_accumulated', 0x406c65617665735f616363756d756c6174656440, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(257, 6, 2, 'hundred_per_os_ded', 0x4068756e647265645f7065725f6f735f64656440, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(258, 6, 2, 'fifty_per_os_ded', 0x4066696674795f7065725f6f735f64656440, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(259, 6, 2, 'os_hundred_perc_free', 0x406f735f68756e647265645f706572635f6672656540, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(260, 6, 1, 'free_ta_and_oos_ta', 0x284066696674795f7065725f6f735f646564402f32292b406f735f68756e647265645f706572635f6672656540, 2, '', 20, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(261, 6, 2, 'salary_advance', 0x4073616c6172795f616476616e636540, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(262, 6, 2, 'emi_loan', 0x40656d695f6c6f616e40, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(263, 6, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(264, 6, 2, 'differential_deduction', 0x284066697865645f67726f7373402a2840646966666572656e7469616c5f6461794029292f406d6f6e74685f6461797340, 2, '1', 22, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(265, 6, 2, 'salary_ded_percentage', 0x4073616c6172795f6465645f70657263656e7461676540, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(266, 6, 2, 'salary_deduction', 0x284066697865645f67726f7373402a4073616c6172795f6465645f70657263656e7461676540292f313030, 2, '', 23, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(267, 6, 2, 'other_deduction', 0x406f746865725f646564756374696f6e40, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(268, 6, 1, 'emp_incentive', 0x40656d705f696e63656e7469766540, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(269, 6, 1, 'arrear_salary', 0x406172726561725f73616c61727940, 1, '', 1, 0, 1, '2020-07-04 11:22:51', NULL, NULL, NULL, NULL, 1),
(274, 7, 1, 'weekly_off', 0x407765656b6c795f6f666640, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(275, 7, 1, 'leave_days', 0x406c656176655f6461797340, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(276, 7, 1, 'leave_camp_off_days', 0x406c656176655f63616d705f6f66665f6461797340, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(277, 7, 1, 'late_days', 0x406c6174655f6461797340, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(278, 7, 1, 'late_comp_off_days', 0x406c6174655f636f6d705f6f66665f6461797340, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(279, 7, 2, 'dra', 0x4064726140, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(280, 7, 2, 'loan', 0x406c6f616e40, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(281, 7, 2, 'pv', 0x40707640, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(282, 7, 2, 'ta', 0x40746140, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(283, 7, 2, 'os', 0x406f7340, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(284, 7, 2, 'tds', 0x4074647340, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(285, 7, 2, 'penalty', 0x4070656e616c747940, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(286, 7, 1, 'late_off_day', 0x406c6174655f6f66665f64617940, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(287, 7, 1, 'month_days', 0x406d6f6e74685f6461797340, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(288, 7, 1, 'present', 0x406d6f6e74685f64617973402d407765656b6c795f6f6666402d40646966666572656e7469616c5f64617940, 2, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(289, 7, 1, 'actual_leave_days', 0x406c656176655f64617973402d28406c656176655f63616d705f6f66665f64617973402b406c65617665735f616363756d756c617465644029, 2, '', 2, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(290, 7, 1, 'actual_late_days', 0x406c6174655f64617973402d406c6174655f636f6d705f6f66665f6461797340, 2, '', 3, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(291, 7, 1, 'lop_days', 0x284061637475616c5f6c656176655f6461797340292b284061637475616c5f6c6174655f64617973402a406c6174655f6f66665f6461794029, 2, '', 4, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(292, 7, 1, 'paid_days', 0x406d6f6e74685f64617973402d406c6f705f64617973402d40646966666572656e7469616c5f64617940, 2, '', 5, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(293, 7, 1, 'fixed_gross', 0x4066697865645f67726f737340, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 0),
(294, 7, 2, 'absent_deduction', 0x284066697865645f67726f7373402a4061637475616c5f6c656176655f6461797340292f406d6f6e74685f6461797340, 2, '1', 7, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(295, 7, 2, 'late_deduction', 0x284066697865645f67726f7373402a284061637475616c5f6c6174655f64617973402a406c6174655f6f66665f6461794029292f406d6f6e74685f6461797340, 2, '1', 8, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(296, 7, 2, 'documentation_fee', 0x40646f63756d656e746174696f6e5f66656540, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(297, 7, 1, 'dra_refund', 0x406472615f726566756e6440, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(298, 7, 2, 'total_deductions', 0x40616273656e745f646564756374696f6e402b406c6174655f646564756374696f6e402b40647261402b406c6f616e402b40646f63756d656e746174696f6e5f666565402b407076402b407461402b40746473402b4070656e616c7479402b4068756e647265645f7065725f6f735f646564402b4066696674795f7065725f6f735f646564402b406f735f68756e647265645f706572635f66726565402b4073616c6172795f616476616e6365402b40656d695f6c6f616e402b4073616c6172795f646564756374696f6e402b406f746865725f646564756374696f6e402b40707265765f6d6f6e74685f646564756374696f6e40, 2, '1', 24, 0, 1, '2020-07-04 11:23:04', 1, '2020-08-18 12:12:28', NULL, NULL, 1),
(299, 7, 1, 'net_pay', 0x40746f74616c5f6561726e402d40746f74616c5f646564756374696f6e73402d40646966666572656e7469616c5f646564756374696f6e40, 2, '1', 26, 0, 1, '2020-07-04 11:23:04', 1, '2020-08-18 12:13:30', NULL, NULL, 1),
(300, 7, 1, 'differential_day', 0x40646966666572656e7469616c5f64617940, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(301, 7, 1, 'supplementary_day', 0x40737570706c656d656e746172795f64617940, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(302, 7, 1, 'supplementary_month', 0x40737570706c656d656e746172795f6d6f6e746840, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(303, 7, 1, 's_gross', 0x28647a28284066697865645f67726f7373402f40737570706c656d656e746172795f6d6f6e746840292a40737570706c656d656e746172795f64617940292029, 2, '1', 9, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(304, 7, 1, 'metro', 0x406d6574726f40, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(305, 7, 1, 'fixed_basic', 0x696628406d6574726f40203d3d31290a7b0a72657475726e20284066697865645f67726f7373402a3530292f3130303b0a7d0a656c73650a7b0a72657475726e20284066697865645f67726f7373402a3430292f3130303b0a7d0a, 3, '', 10, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(306, 7, 1, 'fixed_hra', 0x696628406d6574726f40203d3d31290a7b0a72657475726e20284066697865645f6261736963402a3530292f3130303b0a7d0a656c73650a7b0a72657475726e20284066697865645f6261736963402a3430292f3130303b0a7d0a, 3, '', 11, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(307, 7, 1, 'fixed_conveyance', 0x6966284066697865645f67726f7373403c3d3135303030290a7b0a24783d303b0a72657475726e2024783b0a7d0a656c7365696628284066697865645f67726f7373403e31353030302920262620284066697865645f67726f737340203c3d323030303029290a7b0a24783d3333333b0a72657475726e2024783b0a7d0a656c7365696628284066697865645f67726f7373403e3d32303030302920262620284066697865645f67726f737340203c3d323530303029290a7b0a24783d3530303b0a72657475726e2024783b0a7d0a656c73656966284066697865645f67726f7373403e3235303030290a7b0a24783d313630303b0a72657475726e2024783b0a7d0a656c73650a7b0a24783d303b0a72657475726e2024783b0a7d, 3, '', 12, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(308, 7, 1, 'fo_allowance', 0x4066697865645f67726f7373402d284066697865645f6261736963402b4066697865645f687261402b4066697865645f636f6e766579616e63654029, 2, '', 13, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(309, 7, 1, 'basic', 0x4066697865645f626173696340, 2, '', 14, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(310, 7, 1, 'hra', 0x4066697865645f68726140, 2, '', 15, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(311, 7, 1, 'conveyance', 0x4066697865645f636f6e766579616e636540, 2, '', 16, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(312, 7, 1, 'other_allowance', 0x40666f5f616c6c6f77616e636540, 2, '', 17, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(313, 7, 1, 'gross', 0x4066697865645f67726f737340, 2, '', 18, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1);
INSERT INTO `cw_payroll_formula` (`prime_payroll_id`, `formula_for`, `formula_type`, `out_column`, `payroll_formula`, `formula_mode`, `round_value`, `formula_order`, `fandf_only`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(314, 7, 1, 'tds_refund', 0x407464735f726566756e6440, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(315, 7, 1, 'lop_refund_days', 0x406c6f705f726566756e645f6461797340, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(316, 7, 1, 'leave_refund', 0x284067726f7373402a406c6f705f726566756e645f6461797340292f406d6f6e74685f6461797340, 2, '', 19, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(317, 7, 1, 'total_earn', 0x4066697865645f67726f7373402b40667265655f74615f616e645f6f6f735f7461402b40735f67726f7373402b406c656176655f726566756e64402b406472615f726566756e64402b407464735f726566756e64402b406f746865725f726566756e64402b40656d705f696e63656e74697665402b406172726561725f73616c617279402b40615f67726f737340, 2, '', 21, 0, 1, '2020-07-04 11:23:04', 1, '2020-07-28 17:37:26', NULL, NULL, 1),
(318, 7, 1, 'other_refund', 0x406f746865725f726566756e6440, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(319, 7, 1, 'leaves_accumulated', 0x406c65617665735f616363756d756c6174656440, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(320, 7, 2, 'hundred_per_os_ded', 0x4068756e647265645f7065725f6f735f64656440, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(321, 7, 2, 'fifty_per_os_ded', 0x4066696674795f7065725f6f735f64656440, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(322, 7, 2, 'os_hundred_perc_free', 0x406f735f68756e647265645f706572635f6672656540, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(323, 7, 1, 'free_ta_and_oos_ta', 0x284066696674795f7065725f6f735f646564402f32292b406f735f68756e647265645f706572635f6672656540, 2, '', 20, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(324, 7, 2, 'salary_advance', 0x4073616c6172795f616476616e636540, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(325, 7, 2, 'emi_loan', 0x40656d695f6c6f616e40, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(326, 7, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(327, 7, 2, 'differential_deduction', 0x284066697865645f67726f7373402a2840646966666572656e7469616c5f6461794029292f406d6f6e74685f6461797340, 2, '1', 22, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(328, 7, 2, 'salary_ded_percentage', 0x4073616c6172795f6465645f70657263656e7461676540, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(329, 7, 2, 'salary_deduction', 0x284066697865645f67726f7373402a4073616c6172795f6465645f70657263656e7461676540292f313030, 2, '', 23, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(330, 7, 2, 'other_deduction', 0x406f746865725f646564756374696f6e40, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(331, 7, 1, 'emp_incentive', 0x40656d705f696e63656e7469766540, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(332, 7, 1, 'arrear_salary', 0x406172726561725f73616c61727940, 1, '', 1, 0, 1, '2020-07-04 11:23:04', NULL, NULL, NULL, NULL, 1),
(333, 2, 1, 'revised_gross', 0x40726576697365645f67726f737340, 1, '', 1, 0, 1, '2020-07-22 11:36:13', NULL, NULL, NULL, NULL, 1),
(334, 2, 1, 'extra_days', 0x4065787472615f6461797340, 1, '', 1, 0, 1, '2020-07-22 11:36:45', NULL, NULL, NULL, NULL, 1),
(335, 2, 1, 'actual_gross', 0x4061637475616c5f67726f737340, 1, '', 1, 0, 1, '2020-07-22 11:52:20', NULL, NULL, NULL, NULL, 0),
(336, 2, 1, 'fixed_gross', 0x69662840726576697365645f67726f737340203d3d202030297b200a72657475726e204066697865645f67726f7373403b0a7d656c73657b0a72657475726e2040726576697365645f67726f7373403b0a7d, 3, '', 6, 0, 1, '2020-07-22 11:54:55', NULL, NULL, NULL, NULL, 1),
(337, 2, 1, 'extra_days_salary', 0x284061637475616c5f67726f7373402a4065787472615f6461797340292f406d6f6e74685f6461797340, 2, '', 26, 0, 1, '2020-07-22 11:56:34', 1, '2020-07-22 12:18:27', NULL, NULL, 1),
(338, 3, 1, 'revised_gross', 0x40726576697365645f67726f737340, 1, '', 1, 0, 1, '2020-07-22 11:58:36', NULL, NULL, NULL, NULL, 1),
(339, 3, 1, 'actual_gross', 0x4061637475616c5f67726f737340, 1, '', 1, 0, 1, '2020-07-22 11:58:45', NULL, NULL, NULL, NULL, 0),
(340, 5, 1, 'revised_gross', 0x40726576697365645f67726f737340, 1, '', 1, 0, 1, '2020-07-22 11:59:04', NULL, NULL, NULL, NULL, 1),
(341, 5, 1, 'actual_gross', 0x4061637475616c5f67726f737340, 1, '', 1, 0, 1, '2020-07-22 11:59:13', NULL, NULL, NULL, NULL, 0),
(342, 6, 1, 'revised_gross', 0x40726576697365645f67726f737340, 1, '', 1, 0, 1, '2020-07-22 11:59:24', NULL, NULL, NULL, NULL, 1),
(343, 6, 1, 'actual_gross', 0x4061637475616c5f67726f737340, 1, '', 1, 0, 1, '2020-07-22 11:59:33', NULL, NULL, NULL, NULL, 0),
(344, 7, 1, 'revised_gross', 0x40726576697365645f67726f737340, 1, '', 1, 0, 1, '2020-07-22 11:59:53', NULL, NULL, NULL, NULL, 1),
(345, 7, 1, 'actual_gross', 0x4061637475616c5f67726f737340, 1, '', 1, 0, 1, '2020-07-22 12:00:03', NULL, NULL, NULL, NULL, 0),
(346, 3, 1, 'fixed_gross', 0x69662840726576697365645f67726f737340203d3d2030297b2072657475726e204066697865645f67726f7373403b207d656c73657b2072657475726e2040726576697365645f67726f7373403b207d, 3, '', 6, 0, 1, '2020-07-22 12:02:41', NULL, NULL, NULL, NULL, 1),
(347, 5, 1, 'fixed_gross', 0x69662840726576697365645f67726f737340203d3d2030297b2072657475726e204066697865645f67726f7373403b207d656c73657b2072657475726e2040726576697365645f67726f7373403b207d, 3, '', 6, 0, 1, '2020-07-22 12:03:25', NULL, NULL, NULL, NULL, 1),
(348, 6, 1, 'fixed_gross', 0x69662840726576697365645f67726f737340203d3d2030297b2072657475726e204066697865645f67726f7373403b207d656c73657b2072657475726e2040726576697365645f67726f7373403b207d, 3, '', 6, 0, 1, '2020-07-22 12:04:00', NULL, NULL, NULL, NULL, 1),
(349, 7, 1, 'fixed_gross', 0x69662840726576697365645f67726f737340203d3d2030297b2072657475726e204066697865645f67726f7373403b207d656c73657b2072657475726e2040726576697365645f67726f7373403b207d, 3, '', 6, 0, 1, '2020-07-22 12:04:27', NULL, NULL, NULL, NULL, 1),
(350, 3, 1, 'extra_days', 0x4065787472615f6461797340, 1, '', 1, 0, 1, '2020-07-22 12:15:58', NULL, NULL, NULL, NULL, 1),
(351, 3, 1, 'extra_days_salary', 0x284061637475616c5f67726f7373402a4065787472615f6461797340292f406d6f6e74685f6461797340, 2, '', 26, 0, 1, '2020-07-22 12:16:07', 1, '2020-07-22 12:19:04', NULL, NULL, 1),
(352, 5, 1, 'extra_days', 0x4065787472615f6461797340, 1, '', 1, 0, 1, '2020-07-22 12:16:17', NULL, NULL, NULL, NULL, 1),
(353, 5, 1, 'extra_days_salary', 0x284061637475616c5f67726f7373402a4065787472615f6461797340292f406d6f6e74685f6461797340, 2, '', 26, 0, 1, '2020-07-22 12:16:29', 1, '2020-07-22 12:19:14', NULL, NULL, 1),
(354, 6, 1, 'extra_days', 0x4065787472615f6461797340, 1, '', 1, 0, 1, '2020-07-22 12:16:52', NULL, NULL, NULL, NULL, 1),
(355, 6, 1, 'extra_days_salary', 0x284061637475616c5f67726f7373402a4065787472615f6461797340292f406d6f6e74685f6461797340, 2, '', 25, 0, 1, '2020-07-22 12:17:05', 1, '2020-07-22 12:19:29', NULL, NULL, 1),
(356, 7, 1, 'extra_days', 0x4065787472615f6461797340, 1, '', 1, 0, 1, '2020-07-22 12:17:13', NULL, NULL, NULL, NULL, 1),
(357, 7, 1, 'extra_days_salary', 0x284061637475616c5f67726f7373402a4065787472615f6461797340292f406d6f6e74685f6461797340, 2, '', 25, 0, 1, '2020-07-22 12:17:21', 1, '2020-07-22 12:19:43', NULL, NULL, 1),
(358, 2, 1, 'actual_gross', 0x4066697865645f67726f737340, 2, '', 25, 0, 1, '2020-07-24 11:13:37', NULL, NULL, NULL, NULL, 1),
(359, 3, 1, 'actual_gross', 0x4066697865645f67726f737340, 2, '', 25, 0, 1, '2020-07-24 11:14:09', NULL, NULL, NULL, NULL, 1),
(360, 5, 1, 'actual_gross', 0x4066697865645f67726f737340, 2, '', 25, 0, 1, '2020-07-24 11:14:35', NULL, NULL, NULL, NULL, 1),
(361, 6, 1, 'actual_gross', 0x4066697865645f67726f737340, 1, '', 1, 0, 1, '2020-07-24 11:15:05', NULL, NULL, NULL, NULL, 1),
(362, 7, 1, 'actual_gross', 0x4066697865645f67726f737340, 1, '', 1, 0, 1, '2020-07-24 11:15:40', NULL, NULL, NULL, NULL, 1),
(363, 2, 1, 'late_accumulated', 0x406c6174655f616363756d756c6174656440, 1, '', 1, 0, 1, '2020-07-24 12:25:18', NULL, NULL, NULL, NULL, 1),
(364, 3, 1, 'late_accumulated', 0x406c6174655f616363756d756c6174656440, 1, '', 1, 0, 1, '2020-07-24 12:25:30', NULL, NULL, NULL, NULL, 1),
(365, 5, 1, 'late_accumulated', 0x406c6174655f616363756d756c6174656440, 1, '', 1, 0, 1, '2020-07-24 12:25:43', NULL, NULL, NULL, NULL, 1),
(366, 6, 1, 'late_accumulated', 0x406c6174655f616363756d756c6174656440, 1, '', 1, 0, 1, '2020-07-24 12:25:53', NULL, NULL, NULL, NULL, 1),
(367, 7, 1, 'late_accumulated', 0x406c6174655f616363756d756c6174656440, 1, '', 1, 0, 1, '2020-07-24 12:26:02', NULL, NULL, NULL, NULL, 1),
(368, 2, 2, 'prev_month_deduction', 0x40707265765f6d6f6e74685f646564756374696f6e40, 1, '', 1, 0, 1, '2020-07-27 16:24:37', NULL, NULL, NULL, NULL, 1),
(369, 3, 2, 'prev_month_deduction', 0x40707265765f6d6f6e74685f646564756374696f6e40, 1, '', 1, 0, 1, '2020-07-27 16:24:47', NULL, NULL, NULL, NULL, 1),
(370, 5, 2, 'prev_month_deduction', 0x40707265765f6d6f6e74685f646564756374696f6e40, 1, '', 1, 0, 1, '2020-07-27 16:24:57', NULL, NULL, NULL, NULL, 1),
(371, 6, 2, 'prev_month_deduction', 0x40707265765f6d6f6e74685f646564756374696f6e40, 1, '', 1, 0, 1, '2020-07-27 16:25:05', NULL, NULL, NULL, NULL, 1),
(372, 7, 2, 'prev_month_deduction', 0x40707265765f6d6f6e74685f646564756374696f6e40, 1, '', 1, 0, 1, '2020-07-27 16:25:19', NULL, NULL, NULL, NULL, 1),
(373, 3, 1, 'a_basic', 0x40615f626173696340, 1, '1', 1, 0, 1, '2020-07-28 17:22:48', NULL, NULL, NULL, NULL, 1),
(374, 3, 1, 'a_conveyance', 0x40615f636f6e766579616e636540, 1, '', 1, 0, 1, '2020-07-28 17:22:56', NULL, NULL, NULL, NULL, 0),
(375, 3, 1, 'a_conveyance', 0x40615f636f6e766579616e636540, 1, '1', 1, 0, 1, '2020-07-28 17:23:10', NULL, NULL, NULL, NULL, 1),
(376, 3, 1, 'a_gross', 0x40615f67726f737340, 1, '1', 1, 0, 1, '2020-07-28 17:23:23', NULL, NULL, NULL, NULL, 1),
(377, 3, 1, 'a_hra', 0x40615f68726140, 1, '1', 1, 0, 1, '2020-07-28 17:23:37', NULL, NULL, NULL, NULL, 1),
(378, 3, 1, 'a_other_allowance', 0x40615f6f746865725f616c6c6f77616e636540, 1, '', 1, 0, 1, '2020-07-28 17:23:48', NULL, NULL, NULL, NULL, 1),
(379, 2, 1, 'a_basic', 0x40615f626173696340, 1, '1', 1, 0, 1, '2020-07-28 17:24:09', NULL, NULL, NULL, NULL, 1),
(380, 2, 1, 'a_conveyance', 0x40615f636f6e766579616e636540, 1, '1', 1, 0, 1, '2020-07-28 17:24:20', NULL, NULL, NULL, NULL, 1),
(381, 2, 1, 'a_gross', 0x40615f67726f737340, 1, '1', 1, 0, 1, '2020-07-28 17:24:29', NULL, NULL, NULL, NULL, 1),
(382, 2, 1, 'a_hra', 0x40615f68726140, 1, '1', 1, 0, 1, '2020-07-28 17:24:39', NULL, NULL, NULL, NULL, 1),
(383, 2, 1, 'a_other_allowance', 0x40615f6f746865725f616c6c6f77616e636540, 1, '1', 1, 0, 1, '2020-07-28 17:25:46', NULL, NULL, NULL, NULL, 1),
(384, 5, 1, 'a_basic', 0x40615f626173696340, 1, '1', 1, 0, 1, '2020-07-28 17:26:01', NULL, NULL, NULL, NULL, 1),
(385, 5, 1, 'a_conveyance', 0x40615f636f6e766579616e636540, 1, '1', 1, 0, 1, '2020-07-28 17:26:17', NULL, NULL, NULL, NULL, 1),
(386, 5, 1, 'a_gross', 0x40615f67726f737340, 1, '1', 1, 0, 1, '2020-07-28 17:26:28', NULL, NULL, NULL, NULL, 1),
(387, 5, 1, 'a_hra', 0x40615f68726140, 1, '1', 1, 0, 1, '2020-07-28 17:26:39', NULL, NULL, NULL, NULL, 1),
(388, 5, 1, 'a_other_allowance', 0x40615f6f746865725f616c6c6f77616e636540, 1, '1', 1, 0, 1, '2020-07-28 17:26:50', NULL, NULL, NULL, NULL, 1),
(389, 6, 1, 'a_basic', 0x40615f626173696340, 1, '1', 1, 0, 1, '2020-07-28 17:27:11', NULL, NULL, NULL, NULL, 1),
(390, 6, 1, 'a_conveyance', 0x40615f636f6e766579616e636540, 1, '1', 1, 0, 1, '2020-07-28 17:27:19', NULL, NULL, NULL, NULL, 1),
(391, 6, 1, 'a_gross', 0x40615f67726f737340, 1, '1', 1, 0, 1, '2020-07-28 17:27:45', NULL, NULL, NULL, NULL, 1),
(392, 6, 1, 'a_other_allowance', 0x40615f6f746865725f616c6c6f77616e636540, 1, '1', 1, 0, 1, '2020-07-28 17:27:58', NULL, NULL, NULL, NULL, 1),
(393, 7, 1, 'a_basic', 0x40615f626173696340, 1, '1', 1, 0, 1, '2020-07-28 17:28:38', NULL, NULL, NULL, NULL, 1),
(394, 7, 1, 'a_conveyance', 0x40615f636f6e766579616e636540, 1, '1', 1, 0, 1, '2020-07-28 17:28:49', NULL, NULL, NULL, NULL, 1),
(395, 7, 1, 'a_gross', 0x40615f67726f737340, 1, '1', 1, 0, 1, '2020-07-28 17:29:00', NULL, NULL, NULL, NULL, 1),
(396, 7, 1, 'a_hra', 0x40615f68726140, 1, '1', 1, 0, 1, '2020-07-28 17:29:10', NULL, NULL, NULL, NULL, 1),
(397, 7, 1, 'a_other_allowance', 0x40615f6f746865725f616c6c6f77616e636540, 1, '1', 1, 0, 1, '2020-07-28 17:29:21', NULL, NULL, NULL, NULL, 1),
(398, 2, 2, 'dra', 0x4064726140, 1, '', 1, 0, 1, '2020-08-07 16:28:38', NULL, NULL, NULL, NULL, 1),
(399, 2, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-08-10 16:11:28', NULL, NULL, NULL, NULL, 0),
(400, 2, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-08-20 13:15:36', NULL, NULL, NULL, NULL, 0),
(401, 2, 1, 'date_of_joining', 0x40646174655f6f665f6a6f696e696e6740, 1, '', 1, 0, 1, '2020-08-20 15:47:07', NULL, NULL, NULL, NULL, 1),
(402, 2, 2, 'dra_completion_status', 0x406472615f636f6d706c6574696f6e5f73746174757340, 1, '', 1, 0, 1, '2020-08-20 16:09:24', NULL, NULL, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_payroll_function`
--

CREATE TABLE `cw_payroll_function` (
  `prime_payroll_function_id` int NOT NULL,
  `statutory_name` int DEFAULT NULL,
  `map_column` varchar(255) DEFAULT NULL,
  `input_column` blob,
  `function_name` int DEFAULT NULL,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_payroll_function`
--

INSERT INTO `cw_payroll_function` (`prime_payroll_function_id`, `statutory_name`, `map_column`, `input_column`, `function_name`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 8, 'month_days', 0x726f6c652c7472616e73616374696f6e735f6d6f6e7468, 5, 1, '2020-02-27 16:47:34', NULL, NULL, NULL, NULL, 1),
(2, 9, 'differential_day', 0x656d706c6f7965655f636f64652c726f6c652c7472616e73616374696f6e735f6d6f6e7468, 8, 1, '2020-02-28 10:05:10', NULL, NULL, NULL, NULL, 1),
(3, 13, 'documentation_fee', 0x726f6c652c656d706c6f7965655f636f64652c7472616e73616374696f6e735f6d6f6e7468, 11, 1, '2020-04-10 19:13:16', NULL, NULL, 1, '2020-04-18 18:24:07', 0),
(4, 13, 'documentation_fee', 0x726f6c652c656d706c6f7965655f636f64652c7472616e73616374696f6e735f6d6f6e7468, 11, 1, '2020-04-24 11:43:18', NULL, NULL, 1, '2020-04-25 15:30:19', 0),
(5, 13, 'documentation_fee', 0x726f6c652c656d706c6f7965655f636f64652c7472616e73616374696f6e735f6d6f6e7468, 11, 1, '2020-04-25 15:57:08', NULL, NULL, 1, '2020-04-26 08:56:39', 0),
(6, 13, 'documentation_fee', 0x726f6c652c656d706c6f7965655f636f64652c7472616e73616374696f6e735f6d6f6e7468, 11, 1, '2020-04-26 11:50:41', NULL, NULL, 1, '2020-04-28 14:19:46', 0),
(7, 13, 'documentation_fee', 0x726f6c652c656d706c6f7965655f636f64652c7472616e73616374696f6e735f6d6f6e7468, 11, 1, '2020-04-28 14:22:30', NULL, NULL, 1, '2020-04-28 19:16:02', 0),
(8, 13, 'documentation_fee', 0x726f6c652c656d706c6f7965655f636f64652c7472616e73616374696f6e735f6d6f6e7468, 11, 1, '2020-04-28 19:21:17', NULL, NULL, NULL, NULL, 1),
(9, 14, 'dra', 0x6272616e63682c646174655f6f665f6a6f696e696e672c6472615f707265762c6472615f636f6d706c6574696f6e5f7374617475732c656d706c6f7965655f636f6465, 12, 1, '2020-08-07 11:43:24', NULL, NULL, 1, '2020-08-10 16:11:18', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_payroll_function_map`
--

CREATE TABLE `cw_payroll_function_map` (
  `payroll_column_map_id` int NOT NULL,
  `map_statutory_name` int DEFAULT NULL,
  `loc_name` varchar(255) DEFAULT NULL,
  `db_column` varchar(255) DEFAULT NULL,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_payroll_function_map`
--

INSERT INTO `cw_payroll_function_map` (`payroll_column_map_id`, `map_statutory_name`, `loc_name`, `db_column`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 12, 'paid_days', 'paid_days', 1, '2020-07-25 15:16:07', NULL, NULL, NULL, NULL, 1),
(2, 12, 'month_days', 'month_days', 1, '2020-07-25 15:16:22', NULL, NULL, NULL, NULL, 1),
(3, 12, 'lop_days', 'lop_days', 1, '2020-07-25 15:16:36', NULL, NULL, NULL, NULL, 1),
(4, 12, 'earned_gross', 'gross', 1, '2020-07-25 15:16:57', NULL, NULL, NULL, NULL, 1),
(5, 12, 'earned_basic', 'basic', 1, '2020-07-25 15:17:16', NULL, NULL, NULL, NULL, 1),
(6, 12, 'fixed_basic', 'fixed_basic', 1, '2020-07-25 15:17:34', NULL, NULL, NULL, NULL, 1),
(7, 12, 'arrear_gross', 'a_gross', 1, '2020-07-25 15:17:53', NULL, NULL, NULL, NULL, 1),
(8, 12, 'arrear_pf_gross', 'arrear_pf_gross', 1, '2020-07-25 15:18:09', NULL, NULL, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_pdf_setting`
--

CREATE TABLE `cw_pdf_setting` (
  `prime_pdf_map_id` int NOT NULL,
  `pdf_block_for` int DEFAULT NULL,
  `pdf_info_name` int DEFAULT NULL,
  `pdf_sheet_per_page` int DEFAULT NULL,
  `pdf_set_password` int NOT NULL,
  `pdf_paper_size` varchar(100) NOT NULL,
  `pdf_sheet_type` varchar(100) DEFAULT NULL,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_permissions`
--

CREATE TABLE `cw_permissions` (
  `permission_id` varchar(255) NOT NULL,
  `module_id` varchar(255) NOT NULL,
  `location_id` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `cw_permissions`
--

INSERT INTO `cw_permissions` (`permission_id`, `module_id`, `location_id`) VALUES
('blood_group', 'blood_group', NULL),
('branch', 'branch', NULL),
('candidate_tracker', 'candidate_tracker', NULL),
('category', 'category', NULL),
('channel', 'channel', NULL),
('company', 'company', NULL),
('company_information', 'company_information', NULL),
('config', 'config', NULL),
('consultancy', 'consultancy', NULL),
('country', 'country', NULL),
('custom_approval', 'custom_approval', NULL),
('department', 'department', NULL),
('designation', 'designation', NULL),
('dynamic_db', 'dynamic_db', NULL),
('email_campaign', 'email_campaign', NULL),
('email_process', 'email_process', NULL),
('employees', 'employees', NULL),
('employee_code_auto', 'employee_code_auto', NULL),
('employee_enrolment', 'employee_enrolment', NULL),
('employee_permission', 'employee_permission', NULL),
('file_merge', 'file_merge', NULL),
('form_setting', 'form_setting', NULL),
('gender', 'gender', NULL),
('interview_type', 'interview_type', NULL),
('location', 'location', NULL),
('mail_configurations', 'mail_configurations', NULL),
('manager_list', 'manager_list', NULL),
('module_setting', 'module_setting', NULL),
('password_change', 'password_change', NULL),
('pdf_setting', 'pdf_setting', NULL),
('position', 'position', NULL),
('report', 'report', NULL),
('report_setting', 'report_setting', NULL),
('slots', 'slots', NULL),
('sms_compaign', 'sms_compaign', NULL),
('source', 'source', NULL),
('state', 'state', NULL),
('table_delete', 'table_delete', NULL),
('time_slot', 'time_slot', NULL),
('upload_extension', 'upload_extension', NULL),
('user_role', 'user_role', NULL),
('utilities_settings', 'utilities_settings', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `cw_pick_base_search`
--

CREATE TABLE `cw_pick_base_search` (
  `prime_pick_base_search_id` int NOT NULL,
  `pick_module_id` varchar(100) DEFAULT NULL,
  `pick_query_for` int DEFAULT NULL,
  `query_list_id` text,
  `pick_where_condition` tinyblob,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_pick_base_search`
--

INSERT INTO `cw_pick_base_search` (`prime_pick_base_search_id`, `pick_module_id`, `pick_query_for`, `query_list_id`, `pick_where_condition`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6, 'candidate_tracker', 1, '942', 0x616e642063775f656d706c6f796565732e757365725f726967687420696e285e335e2920616e642063775f656d706c6f796565732e6465706172746d656e7420696e285e365e29, 1, '2020-12-12 12:08:16', 1, '2020-12-22 11:37:37', NULL, NULL, 1),
(7, 'candidate_tracker', 3, '942', 0x616e642063775f656d706c6f796565732e757365725f726967687420696e285e335e2920616e642063775f656d706c6f796565732e6465706172746d656e7420696e285e365e29, 1, '2020-12-12 12:14:56', 1, '2020-12-22 11:37:30', NULL, NULL, 1),
(8, 'candidate_tracker', 6, '942', 0x616e642063775f656d706c6f796565732e757365725f726967687420696e285e335e2920616e642063775f656d706c6f796565732e6465706172746d656e7420696e285e365e29, 1, '2020-12-12 12:15:09', 1, '2020-12-22 11:37:45', NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_position`
--

CREATE TABLE `cw_position` (
  `prime_position_id` int NOT NULL,
  `position_name` varchar(50) DEFAULT '',
  `department` varchar(100) DEFAULT '0',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_position`
--

INSERT INTO `cw_position` (`prime_position_id`, `position_name`, `department`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'Agency Manager', '5', 1, '2020-08-26 03:37:41', 1, '2023-10-27 04:07:41', 0, NULL, 1),
(2, 'MERN STACK Developer', '2', 1, '2020-09-01 10:52:09', 1, '2021-12-06 01:00:54', 0, NULL, 1),
(3, 'React Native', '2', 1, '2020-09-01 02:07:41', 1, '2020-09-03 11:59:35', 0, NULL, 1),
(4, 'Customer Relationship Manager', '1', 1, '2020-09-02 11:48:43', 1, '2020-09-04 09:43:08', 0, NULL, 1),
(5, 'Relationship manager', '5', 1, '2020-09-02 12:10:15', 1, '2020-09-04 09:43:40', 0, NULL, 1),
(6, 'Relationship Executive', '5', 1, '2020-09-02 12:13:42', 1, '2023-10-27 04:07:44', 0, NULL, 1),
(7, 'Mutual Fund  Co-Ordinater', '7', 1, '2020-09-02 04:09:42', 1, '2020-09-04 09:46:41', 0, NULL, 1),
(8, 'Mutual Fund Relationship manager', '7', 1, '2020-09-02 04:10:27', 1, '2020-09-04 09:46:48', 0, NULL, 1),
(9, 'Branch Manager', '5', 1, '2020-09-02 04:11:21', 1, '2020-09-04 09:45:51', 0, NULL, 1),
(10, 'Assistant branch manager', '5', 1, '2020-09-02 04:12:03', 1, '2020-09-04 09:46:00', 0, NULL, 1),
(11, 'HR recruiter', '6', 1, '2020-09-02 04:13:21', 1, '2020-09-04 09:46:09', 0, NULL, 1),
(12, 'Driver', '3', 1, '2020-09-02 04:17:26', 1, '2020-09-04 09:51:50', 0, NULL, 1),
(13, 'Full Stack Developer', '2', 1, '2020-09-03 02:44:29', 1, '2025-09-09 11:58:10', 0, NULL, 1),
(14, 'Android or Flutter Developer', '2', 1, '2020-09-03 02:47:02', 1, '2023-12-20 10:14:40', 0, NULL, 1),
(15, 'IOS Developer', '2', 1, '2020-09-03 02:51:01', 1, '2020-09-04 09:42:59', 0, NULL, 1),
(16, 'MIS Executive', '3', 1, '2020-09-04 01:03:08', 1, '2024-01-13 10:50:43', 0, NULL, 1),
(17, 'Business Development Manager', '5', 50, '2020-09-14 05:58:15', 0, NULL, 0, NULL, 1),
(20, 'Customer Relationship Manager', '5', 1, '2020-09-02 11:48:43', 1, '2020-09-04 09:43:08', 0, NULL, 1),
(21, 'system administrator', '3', 1, '2020-10-28 01:37:20', 0, NULL, 0, NULL, 1),
(22, 'Digital Marketing', '2', 1, '2020-11-10 11:18:36', 0, NULL, 0, NULL, 1),
(23, 'UI UX Developer and Designer', '2', 1, '2020-12-01 03:34:12', 0, NULL, 0, NULL, 1),
(24, 'Area Manager', '8', 1, '2020-12-11 12:36:56', 0, NULL, 0, NULL, 1),
(25, 'Relationship Manager', '8', 1, '2020-12-11 12:41:27', 0, NULL, 0, NULL, 1),
(26, 'MIS Executive', '7', 7, '2020-12-22 05:45:42', 1, '2024-01-13 10:50:36', 0, NULL, 1),
(27, 'DotNet Winform', '2', 60, '2021-03-12 10:17:05', 0, NULL, 0, NULL, 1),
(28, 'Data Analyst', '3', 1, '2021-03-17 02:50:11', 0, NULL, 0, NULL, 1),
(29, 'Trainer', '3', 60, '2021-03-24 12:09:27', 0, NULL, 0, NULL, 1),
(30, 'Equity Dealer', '9', 1, '2021-04-10 10:34:08', 0, NULL, 0, NULL, 1),
(31, 'React Js Developer', '2', 1, '2021-12-06 01:01:09', 0, NULL, 0, NULL, 1),
(32, 'Portfolio Manager', '5', 60, '2022-01-10 03:52:43', 0, NULL, 0, NULL, 1),
(33, 'Accounts', '4', 60, '2022-11-09 10:21:29', 0, NULL, 0, NULL, 1),
(34, 'Technical Support Engineer', '2', 1, '2024-04-23 04:48:27', 0, NULL, 0, NULL, 1),
(35, 'Business Developer Executive Intern', '2', 1, '2024-09-24 12:43:18', 1, '2024-09-24 12:43:47', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_position_questions`
--

CREATE TABLE `cw_position_questions` (
  `prime_position_questions_id` int NOT NULL,
  `prime_position_id` int DEFAULT '0',
  `question` text,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_position_questions`
--

INSERT INTO `cw_position_questions` (`prime_position_questions_id`, `prime_position_id`, `question`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 2, 'Is Employee Clearly Understand the roles and Responsibility?', 1, '2020-09-01 10:53:12', 0, NULL, 0, NULL, 1),
(2, 2, 'Communication Skills?', 1, '2020-09-01 10:53:22', 0, NULL, 0, NULL, 1),
(3, 2, 'Is all the technical Requirements matched with this employee?', 1, '2020-09-01 10:53:30', 0, NULL, 0, NULL, 1),
(4, 2, 'attitude of the employee?', 1, '2020-09-01 10:53:46', 0, NULL, 0, NULL, 1),
(5, 2, 'Having a good experience in client side,server side and database?', 1, '2020-09-01 10:55:18', 0, NULL, 0, NULL, 1),
(6, 2, 'Idea about code management tools like git, bitbucket, svn...etc', 1, '2020-09-01 10:56:53', 0, NULL, 0, NULL, 1),
(7, 2, 'relevance experience with this technical spec.', 1, '2020-09-01 10:58:41', 0, NULL, 0, NULL, 1),
(8, 2, 'looking for a job change for career growth or salary growth?', 1, '2020-09-01 11:00:30', 0, NULL, 0, NULL, 1),
(9, 2, 'candidate have a real-time working experience?', 1, '2020-09-01 11:02:16', 0, NULL, 0, NULL, 1),
(10, 2, 'worked with team?', 1, '2020-09-01 11:03:56', 0, NULL, 0, NULL, 1),
(11, 3, 'attitude of the employee?', 1, '2020-09-01 02:07:58', 0, NULL, 0, NULL, 1),
(12, 3, 'candidate have a real-time working experience?', 1, '2020-09-01 02:08:10', 0, NULL, 0, NULL, 1),
(13, 3, 'Communication Skills?', 1, '2020-09-01 02:08:18', 0, NULL, 0, NULL, 1),
(14, 3, 'Having a good experience in client side,server side and database?', 1, '2020-09-01 02:08:25', 0, NULL, 0, NULL, 1),
(15, 3, 'Idea about code management tools like git, bitbucket, svn...etc', 1, '2020-09-01 02:08:33', 0, NULL, 0, NULL, 1),
(16, 3, 'Is all the technical Requirements matched with this employee?', 1, '2020-09-01 02:08:39', 0, NULL, 0, NULL, 1),
(17, 3, 'Is Employee Clearly Understand the roles and Responsibility?', 1, '2020-09-01 02:08:47', 0, NULL, 0, NULL, 1),
(18, 3, 'looking for a job change for career growth or salary growth?', 1, '2020-09-01 02:08:53', 0, NULL, 0, NULL, 1),
(19, 3, 'relevance experience with this technical spec.', 1, '2020-09-01 02:09:00', 0, NULL, 0, NULL, 1),
(20, 3, 'worked with team?', 1, '2020-09-01 02:09:07', 0, NULL, 0, NULL, 1),
(21, 4, 'Appearance', 1, '2020-09-02 11:50:00', 0, NULL, 0, NULL, 1),
(22, 4, 'Attitude', 1, '2020-09-02 11:50:50', 0, NULL, 0, NULL, 1),
(23, 4, 'Communication (Tamil)', 1, '2020-09-02 11:54:32', 0, NULL, 0, NULL, 1),
(24, 4, 'Communication (English)', 1, '2020-09-02 11:55:17', 0, NULL, 0, NULL, 1),
(25, 4, 'convincing Skills', 1, '2020-09-02 11:56:18', 1, '2020-09-02 11:56:37', 0, NULL, 1),
(26, 4, 'Confidence Level', 1, '2020-09-02 11:58:19', 0, NULL, 0, NULL, 1),
(27, 4, 'Importance (Job)', 1, '2020-09-02 11:58:44', 0, NULL, 0, NULL, 1),
(28, 4, 'Observation skills', 1, '2020-09-02 11:58:53', 0, NULL, 0, NULL, 1),
(29, 4, 'Pressure Handling', 1, '2020-09-02 11:59:23', 0, NULL, 0, NULL, 1),
(30, 4, 'patience', 1, '2020-09-02 11:59:50', 1, '2020-09-09 06:58:01', 0, NULL, 1),
(31, 4, 'Sustainability', 1, '2020-09-02 12:00:26', 1, '2020-09-02 12:00:57', 0, NULL, 1),
(32, 5, 'Appearance\nAttitude\nCommunication (English)\nCommunication (Tamil)\nConvincing Skills\nConfidence Level\nImportance Of Job\nObservation Skills\nPressure Handling\nPatient\nSustainability', 1, '2020-09-02 01:11:55', 1, '2020-09-02 01:12:01', 0, NULL, 0),
(33, 5, 'Appearance\nAttitude\nCommunication (English)\nCommunication (Tamil)\nConvincing Skills\nConfidence Level\nImportance Of Job\nObservation Skills\nPressure Handling\nPatient\nSustainability', 1, '2020-09-02 01:11:55', 1, '2020-09-02 01:12:04', 0, NULL, 0),
(34, 5, 'Appearance\n,Attitude\n', 1, '2020-09-02 01:12:23', 1, '2020-09-02 01:12:26', 0, NULL, 0),
(35, 5, 'Appearance', 1, '2020-09-02 01:12:38', 0, NULL, 0, NULL, 1),
(36, 5, 'Attitude', 1, '2020-09-02 01:12:52', 0, NULL, 0, NULL, 1),
(37, 5, 'Communication (English)', 1, '2020-09-02 01:13:38', 0, NULL, 0, NULL, 1),
(38, 5, 'Communication (Tamil)', 1, '2020-09-02 01:13:49', 0, NULL, 0, NULL, 1),
(39, 5, 'Convincing Skills', 1, '2020-09-02 01:13:57', 0, NULL, 0, NULL, 1),
(40, 5, 'Confidence Level', 1, '2020-09-02 01:14:05', 0, NULL, 0, NULL, 1),
(41, 5, 'Importance Of Job', 1, '2020-09-02 01:14:11', 0, NULL, 0, NULL, 1),
(42, 5, 'Observation Skills', 1, '2020-09-02 01:14:17', 0, NULL, 0, NULL, 1),
(43, 5, 'Pressure Handling', 1, '2020-09-02 01:14:23', 0, NULL, 0, NULL, 1),
(44, 5, 'Patient', 1, '2020-09-02 01:14:33', 1, '2020-09-02 01:14:52', 0, NULL, 0),
(45, 5, 'patience', 1, '2020-09-02 01:14:33', 1, '2020-09-09 06:56:48', 0, NULL, 1),
(46, 5, 'Sustainability', 1, '2020-09-02 01:24:14', 0, NULL, 0, NULL, 1),
(47, 5, 'Sales Experience', 1, '2020-09-02 01:41:07', 0, NULL, 0, NULL, 1),
(48, 5, 'Existing Experience Analyze', 1, '2020-09-02 01:42:11', 0, NULL, 0, NULL, 1),
(49, 5, 'Practical Challenges Outcome', 1, '2020-09-02 01:43:34', 0, NULL, 0, NULL, 1),
(50, 5, 'Willing To Work On Holidays', 1, '2020-09-02 01:46:48', 0, NULL, 0, NULL, 1),
(51, 6, 'Appearance', 1, '2020-09-02 02:35:35', 0, NULL, 0, NULL, 1),
(52, 6, 'Attitude', 1, '2020-09-02 02:35:55', 1, '2020-09-02 02:35:59', 0, NULL, 0),
(53, 6, 'Attitude', 1, '2020-09-02 02:35:56', 0, NULL, 0, NULL, 1),
(54, 6, 'Communication (English)', 1, '2020-09-02 02:36:07', 0, NULL, 0, NULL, 1),
(55, 6, 'Communication (Tamil)', 1, '2020-09-02 02:36:14', 0, NULL, 0, NULL, 1),
(56, 6, 'Convincing Skills', 1, '2020-09-02 02:36:21', 0, NULL, 0, NULL, 1),
(57, 6, 'Confidence Level', 1, '2020-09-02 02:37:23', 0, NULL, 0, NULL, 1),
(58, 6, 'Existing Experience Analyze', 1, '2020-09-02 02:37:32', 0, NULL, 0, NULL, 1),
(59, 6, 'Importance Of Job', 1, '2020-09-02 02:37:38', 0, NULL, 0, NULL, 1),
(60, 6, 'Observation Skills', 1, '2020-09-02 02:37:45', 0, NULL, 0, NULL, 1),
(61, 6, 'patience', 1, '2020-09-02 02:37:51', 1, '2020-09-09 06:56:37', 0, NULL, 1),
(62, 6, 'Pressure Handling', 1, '2020-09-02 02:37:58', 0, NULL, 0, NULL, 1),
(63, 6, 'Practical Challenges Outcome', 1, '2020-09-02 02:38:06', 0, NULL, 0, NULL, 1),
(64, 6, 'Sustainability', 1, '2020-09-02 02:38:31', 0, NULL, 0, NULL, 1),
(65, 6, 'Sales Experience', 1, '2020-09-02 02:38:35', 0, NULL, 0, NULL, 1),
(66, 6, 'Willing To Work On Holidays', 1, '2020-09-02 02:38:45', 0, NULL, 0, NULL, 1),
(67, 13, 'attitude of the employee?', 1, '2020-09-03 02:45:15', 0, NULL, 0, NULL, 1),
(68, 13, 'candidate have a real-time working experience?', 1, '2020-09-03 02:45:22', 0, NULL, 0, NULL, 1),
(69, 13, 'Communication Skills?', 1, '2020-09-03 02:45:29', 0, NULL, 0, NULL, 1),
(70, 13, 'Having a good experience in client side,server side and database?', 1, '2020-09-03 02:45:34', 0, NULL, 0, NULL, 1),
(71, 13, 'Idea about code management tools like git, bitbucket, svn...etc', 1, '2020-09-03 02:45:42', 0, NULL, 0, NULL, 1),
(72, 13, 'Is all the technical Requirements matched with this employee?', 1, '2020-09-03 02:45:49', 0, NULL, 0, NULL, 1),
(73, 13, 'Is Employee Clearly Understand the roles and Responsibility?', 1, '2020-09-03 02:46:00', 1, '2020-09-03 02:46:04', 0, NULL, 0),
(74, 13, 'Is Employee Clearly Understand the roles and Responsibility?', 1, '2020-09-03 02:46:00', 0, NULL, 0, NULL, 1),
(75, 13, 'looking for a job change for career growth or salary growth?', 1, '2020-09-03 02:46:16', 0, NULL, 0, NULL, 1),
(76, 13, 'relevance experience with this technical spec.', 1, '2020-09-03 02:46:25', 0, NULL, 0, NULL, 1),
(77, 13, 'worked with team?', 1, '2020-09-03 02:46:38', 0, NULL, 0, NULL, 1),
(78, 14, 'attitude of the employee?', 1, '2020-09-03 02:47:16', 0, NULL, 0, NULL, 1),
(79, 14, 'candidate have a real-time working experience?', 1, '2020-09-03 02:47:27', 0, NULL, 0, NULL, 1),
(80, 14, 'Communication Skills?', 1, '2020-09-03 02:47:40', 0, NULL, 0, NULL, 1),
(81, 14, 'Having a good experience in client side,server side and database?', 1, '2020-09-03 02:47:50', 0, NULL, 0, NULL, 1),
(82, 14, 'Idea about code management tools like git, bitbucket, svn...etc', 1, '2020-09-03 02:49:50', 0, NULL, 0, NULL, 1),
(83, 14, 'Is all the technical Requirements matched with this employee?', 1, '2020-09-03 02:49:58', 0, NULL, 0, NULL, 1),
(84, 14, 'Is Employee Clearly Understand the roles and Responsibility?', 1, '2020-09-03 02:50:05', 0, NULL, 0, NULL, 1),
(85, 14, 'looking for a job change for career growth or salary growth?', 1, '2020-09-03 02:50:12', 0, NULL, 0, NULL, 1),
(86, 14, 'relevance experience with this technical spec.', 1, '2020-09-03 02:50:21', 0, NULL, 0, NULL, 1),
(87, 14, 'worked with team?', 1, '2020-09-03 02:50:28', 0, NULL, 0, NULL, 1),
(88, 15, 'attitude of the employee?', 1, '2020-09-03 03:18:08', 0, NULL, 0, NULL, 1),
(89, 15, 'candidate have a real-time working experience?', 1, '2020-09-03 03:18:17', 0, NULL, 0, NULL, 1),
(90, 15, 'Communication Skills?', 1, '2020-09-03 03:18:26', 0, NULL, 0, NULL, 1),
(91, 15, 'Having a good experience in client side,server side and database?', 1, '2020-09-03 03:18:38', 0, NULL, 0, NULL, 1),
(92, 15, 'Idea about code management tools like git, bitbucket, svn...etc', 1, '2020-09-03 03:19:17', 0, NULL, 0, NULL, 1),
(93, 15, 'Is all the technical Requirements matched with this employee?', 1, '2020-09-03 03:19:24', 0, NULL, 0, NULL, 1),
(94, 15, 'Is Employee Clearly Understand the roles and Responsibility?', 1, '2020-09-03 03:19:33', 0, NULL, 0, NULL, 1),
(95, 15, 'looking for a job change for career growth or salary growth?', 1, '2020-09-03 03:20:05', 0, NULL, 0, NULL, 1),
(96, 15, 'relevance experience with this technical spec.', 1, '2020-09-03 03:20:12', 0, NULL, 0, NULL, 1),
(97, 15, 'worked with team?', 1, '2020-09-03 03:20:19', 0, NULL, 0, NULL, 1),
(98, 21, 'Software Installation?', 1, '2020-10-28 01:37:46', 0, NULL, 0, NULL, 1),
(99, 21, 'Software Troubleshooting?', 1, '2020-10-28 01:38:01', 0, NULL, 0, NULL, 1),
(100, 21, 'Do you Know system assembling?', 1, '2020-10-28 02:24:34', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_print_block`
--

CREATE TABLE `cw_print_block` (
  `prime_print_block_id` int NOT NULL,
  `print_block_module_id` varchar(100) DEFAULT NULL,
  `print_block_for` int DEFAULT NULL,
  `print_block_name` varchar(100) DEFAULT NULL,
  `print_block_type` int DEFAULT NULL,
  `print_block_table` blob,
  `print_block_column` blob,
  `suppressed_data` int NOT NULL DEFAULT '0',
  `cumulative_data` int NOT NULL DEFAULT '0',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_print_design`
--

CREATE TABLE `cw_print_design` (
  `prime_print_design_id` int NOT NULL,
  `print_design_for` int DEFAULT NULL,
  `print_design` blob,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_print_info`
--

CREATE TABLE `cw_print_info` (
  `prime_print_info_id` int NOT NULL,
  `print_info_module_id` varchar(100) DEFAULT NULL,
  `print_info_name` varchar(100) DEFAULT NULL,
  `print_info_for` tinyblob,
  `print_type` int NOT NULL DEFAULT '0',
  `print_based_on` int DEFAULT NULL,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_print_map`
--

CREATE TABLE `cw_print_map` (
  `prime_print_map_id` int NOT NULL,
  `print_map_module_id` varchar(100) DEFAULT NULL,
  `print_map_for` varchar(100) DEFAULT NULL,
  `print_map` tinyblob,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_print_split`
--

CREATE TABLE `cw_print_split` (
  `prime_print_split_id` int NOT NULL,
  `split_table_info` int DEFAULT NULL,
  `split_info` int DEFAULT NULL,
  `split_colum` blob,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_print_table`
--

CREATE TABLE `cw_print_table` (
  `prime_print_table_id` int NOT NULL,
  `print_table_for_id` int DEFAULT '0',
  `print_table_module_id` varchar(100) DEFAULT NULL,
  `line_prime_table` varchar(100) DEFAULT NULL,
  `line_prime_col` varchar(100) DEFAULT NULL,
  `line_join_type` varchar(100) DEFAULT NULL,
  `line_join_table` varchar(100) DEFAULT NULL,
  `line_join_col` varchar(100) DEFAULT NULL,
  `line_sort` varchar(100) DEFAULT NULL,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_print_table_where`
--

CREATE TABLE `cw_print_table_where` (
  `prime_print_where_id` int NOT NULL,
  `where_module_id` varchar(100) DEFAULT NULL,
  `where_for_id` int DEFAULT NULL,
  `where_condition` tinyblob,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_professional_tax_location`
--

CREATE TABLE `cw_professional_tax_location` (
  `prime_professional_tax_location_id` int NOT NULL,
  `professional_tax_location` varchar(200) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_professional_tax_location`
--

INSERT INTO `cw_professional_tax_location` (`prime_professional_tax_location_id`, `professional_tax_location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'Chennai', 1, '2020-02-04 12:09:05', 0, NULL, 0, NULL, 1),
(2, 'TAMILNADU', 1, '2020-02-04 12:09:26', 0, NULL, 0, NULL, 1),
(3, 'KARNATAKA', 1, '2020-02-04 12:09:40', 0, NULL, 0, NULL, 1),
(4, 'NIL', 1, '2020-02-25 08:33:54', 1, '2020-02-25 08:34:09', 0, NULL, 1),
(5, 'NA', 27, '2020-03-23 17:27:56', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_report_add_column`
--

CREATE TABLE `cw_report_add_column` (
  `prime_report_add_column_id` int NOT NULL,
  `report_id` int DEFAULT NULL,
  `add_name` varchar(255) DEFAULT NULL,
  `select_condition` tinyblob,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_report_filter`
--

CREATE TABLE `cw_report_filter` (
  `report_filter_id` int NOT NULL,
  `prime_report_id` int NOT NULL,
  `filter_name` varchar(255) NOT NULL,
  `trans_created_by` int NOT NULL,
  `trans_created_date` datetime NOT NULL,
  `trans_updated_by` int NOT NULL,
  `trans_updated_date` datetime NOT NULL,
  `trans_deleted_by` int NOT NULL,
  `trans_deleted_date` datetime NOT NULL,
  `trans_status` int NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_report_filter`
--

INSERT INTO `cw_report_filter` (`report_filter_id`, `prime_report_id`, `filter_name`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 1, 'Reference', 1, '2020-09-04 16:14:27', 0, '0000-00-00 00:00:00', 0, '0000-00-00 00:00:00', 1),
(2, 1, 'Selected', 1, '2020-09-04 16:15:48', 0, '0000-00-00 00:00:00', 0, '0000-00-00 00:00:00', 1),
(3, 1, 'Selected for next round', 1, '2020-09-04 16:16:25', 7, '2020-09-08 10:21:25', 0, '0000-00-00 00:00:00', 1),
(4, 1, 'Selected List', 1, '2020-09-04 19:22:46', 0, '0000-00-00 00:00:00', 0, '0000-00-00 00:00:00', 0),
(5, 1, 'Dheepak consultancy', 7, '2020-09-05 14:03:49', 7, '2020-09-08 10:21:34', 0, '0000-00-00 00:00:00', 1),
(6, 1, 'Rejected', 7, '2020-09-08 10:16:00', 0, '0000-00-00 00:00:00', 0, '0000-00-00 00:00:00', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_report_filter_line`
--

CREATE TABLE `cw_report_filter_line` (
  `report_filter_line_id` int NOT NULL,
  `report_filter_id` int DEFAULT NULL,
  `filter_id` text,
  `filter_con` text,
  `filter_val` text,
  `field_type` text,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_report_filter_line`
--

INSERT INTO `cw_report_filter_line` (`report_filter_line_id`, `report_filter_id`, `filter_id`, `filter_con`, `filter_val`, `field_type`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 1, 'applied_by', '=', '1', '5', 1, '2020-09-04 16:14:27', NULL, NULL, NULL, NULL, 1),
(2, 2, 'candidate_status', '=', '3', '5', 1, '2020-09-04 16:15:48', NULL, NULL, NULL, NULL, 1),
(4, 4, 'candidate_status', '=', '3', '5', 1, '2020-09-04 19:22:46', NULL, NULL, NULL, NULL, 1),
(7, 6, 'candidate_status', '=', '5', '5', 7, '2020-09-08 10:16:00', NULL, NULL, NULL, NULL, 1),
(9, 3, 'candidate_status', '=', '4', '5', 7, '2020-09-08 10:21:25', NULL, NULL, NULL, NULL, 1),
(10, 5, 'consultancy', '=', '4', '5', 7, '2020-09-08 10:21:34', NULL, NULL, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_report_setting`
--

CREATE TABLE `cw_report_setting` (
  `prime_report_setting_id` int NOT NULL,
  `report_name` varchar(100) DEFAULT '',
  `report_for` blob,
  `table_info` blob,
  `table_column` blob,
  `group_column` blob,
  `date_filter` int DEFAULT NULL,
  `date_column` blob,
  `sub_tot_show` int DEFAULT NULL,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_report_setting`
--

INSERT INTO `cw_report_setting` (`prime_report_setting_id`, `report_name`, `report_for`, `table_info`, `table_column`, `group_column`, `date_filter`, `date_column`, `sub_tot_show`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 0x63775f63616e6469646174655f747261636b65722c63775f656d706c6f79656573, 0x63775f63616e6469646174655f747261636b65722e6162735f6f725f7465725f646174652c63775f63616e6469646174655f747261636b65722e6167652c63775f63616e6469646174655f747261636b65722e616c7465726e6174655f6e756d6265722c63775f63616e6469646174655f747261636b65722e6170706c6965645f62792c63775f63616e6469646174655f747261636b65722e62696b652c63775f63616e6469646174655f747261636b65722e63616e6469646174655f636f64652c63775f63616e6469646174655f747261636b65722e63616e6469646174655f6e616d652c63775f63616e6469646174655f747261636b65722e63616e6469646174655f7374617475732c63775f63616e6469646174655f747261636b65722e6368616e6e656c5f6e616d652c63775f63616e6469646174655f747261636b65722e636f6d70616e795f6272616e63682c63775f63616e6469646174655f747261636b65722e636f6d70616e795f6c6f636174696f6e2c63775f63616e6469646174655f747261636b65722e636f6e73756c74616e63792c63775f63616e6469646174655f747261636b65722e63757272656e745f6c6f636174696f6e2c63775f63616e6469646174655f747261636b65722e63757272656e745f73616c6172792c63775f63616e6469646174655f747261636b65722e646174655f6f665f617661696c61626c652c63775f63616e6469646174655f747261636b65722e646174655f6f665f62697274682c63775f63616e6469646174655f747261636b65722e646174655f6f665f6a6f696e696e672c63775f63616e6469646174655f747261636b65722e6465706172746d656e742c63775f63616e6469646174655f747261636b65722e656d61696c5f69642c63775f63616e6469646174655f747261636b65722e656d706c6f7965655f636f64652c63775f63616e6469646174655f747261636b65722e656d706c6f7965655f747970652c63775f63616e6469646174655f747261636b65722e6578705f646f6a2c63775f63616e6469646174655f747261636b65722e65787065637465645f73616c6172792c63775f63616e6469646174655f747261636b65722e6661746865725f6f725f68757362616e645f6e616d652c63775f63616e6469646174655f747261636b65722e696e636f6d652c63775f63616e6469646174655f747261636b65722e696e746572766965775f646174652c63775f63616e6469646174655f747261636b65722e696e746572766965775f74696d652c63775f63616e6469646174655f747261636b65722e696e7465727669657765722c63775f63616e6469646174655f747261636b65722e696e7465727669657765725f72656d61726b732c63775f63616e6469646174655f747261636b65722e6c6576656c5f312c63775f63616e6469646174655f747261636b65722e6c6576656c5f322c63775f63616e6469646174655f747261636b65722e6d61726974616c5f7374617475732c63775f63616e6469646174655f747261636b65722e6d6f62696c655f6e756d6265722c63775f63616e6469646174655f747261636b65722e6e6f5f6f665f7369626c696e67732c63775f63616e6469646174655f747261636b65722e6e6f746963655f706572696f642c63775f63616e6469646174655f747261636b65722e6f636375706174696f6e2c63775f63616e6469646174655f747261636b65722e7065726d616e656e745f6c6f636174696f6e2c63775f63616e6469646174655f747261636b65722e706f73745f6170706c6965645f666f722c63775f63616e6469646174655f747261636b65722e7265637275697465722c63775f63616e6469646174655f747261636b65722e73616c6172795f636f6d6d697465642c63775f63616e6469646174655f747261636b65722e73656c65637465645f7374617475732c63775f656d706c6f796565732e64657369676e6174696f6e2c63775f656d706c6f796565732e656d705f636f64652c63775f656d706c6f796565732e656d705f6e616d65, '', 1, 0x63775f63616e6469646174655f747261636b65722e646174655f6f665f617661696c61626c65, 0, 1, '2020-09-02 10:55:40', 1, '2024-06-15 03:43:56', 0, NULL, 1),
(2, 'Interview schedules', 0x312c322c332c342c352c36, 0x63775f63616e6469646174655f747261636b6572, 0x63775f63616e6469646174655f747261636b65722e63616e6469646174655f6e616d652c63775f63616e6469646174655f747261636b65722e706f73745f6170706c6965645f666f722c63775f63616e6469646174655f747261636b65722e656d61696c5f69642c63775f63616e6469646174655f747261636b65722e6170706c6965645f62792c63775f63616e6469646174655f747261636b65722e6d61726974616c5f7374617475732c63775f63616e6469646174655f747261636b65722e63757272656e745f73616c6172792c63775f63616e6469646174655f747261636b65722e65787065637465645f73616c6172792c63775f63616e6469646174655f747261636b65722e7065726d616e656e745f6c6f636174696f6e2c63775f63616e6469646174655f747261636b65722e63757272656e745f6c6f636174696f6e2c63775f63616e6469646174655f747261636b65722e656d706c6f7965655f747970652c63775f63616e6469646174655f747261636b65722e646174655f6f665f617661696c61626c652c63775f63616e6469646174655f747261636b65722e636f6d70616e795f6272616e63682c63775f63616e6469646174655f747261636b65722e6368616e6e656c5f6e616d65, '', 1, 0x63775f63616e6469646174655f747261636b65722e646174655f6f665f617661696c61626c65, 0, 1, '2023-04-17 04:26:20', 1, '2023-04-17 04:35:57', 0, NULL, 1),
(3, 'Yet to Assign', 0x312c33, 0x63775f63616e6469646174655f747261636b6572, 0x63775f63616e6469646174655f747261636b65722e63616e6469646174655f6e616d652c63775f63616e6469646174655f747261636b65722e706f73745f6170706c6965645f666f722c63775f63616e6469646174655f747261636b65722e6d6f62696c655f6e756d6265722c63775f63616e6469646174655f747261636b65722e656d61696c5f69642c63775f63616e6469646174655f747261636b65722e6167652c63775f63616e6469646174655f747261636b65722e6d61726974616c5f7374617475732c63775f63616e6469646174655f747261636b65722e636f6e73756c74616e6379, '', 1, 0x63775f63616e6469646174655f747261636b65722e646174655f6f665f617661696c61626c65, 0, 60, '2025-02-14 04:19:29', 60, '2025-02-20 07:24:41', 0, NULL, 1),
(4, 'IT Team', 0x31, 0x63775f63616e6469646174655f747261636b65722c63775f656d706c6f79656573, 0x63775f63616e6469646174655f747261636b65722e6368616e6e656c5f6e616d65, '', 2, '', 0, 60, '2025-07-09 10:24:43', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_report_table`
--

CREATE TABLE `cw_report_table` (
  `prime_report_table_id` int NOT NULL,
  `join_for` int DEFAULT '0',
  `line_prime_table` varchar(100) DEFAULT NULL,
  `line_prime_col` varchar(100) DEFAULT NULL,
  `line_join_type` varchar(100) DEFAULT NULL,
  `line_join_table` varchar(100) DEFAULT NULL,
  `line_join_col` varchar(100) DEFAULT NULL,
  `line_sort` varchar(100) DEFAULT NULL,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_report_table`
--

INSERT INTO `cw_report_table` (`prime_report_table_id`, `join_for`, `line_prime_table`, `line_prime_col`, `line_join_type`, `line_join_table`, `line_join_col`, `line_sort`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 1, 'cw_employees', 'cw_employees.prime_employees_id', 'inner', 'cw_candidate_tracker', 'cw_candidate_tracker.interviewer', '1', 1, '2020-09-03 11:38:08', 1, '2020-09-03 11:39:39', NULL, NULL, 0),
(2, 1, 'cw_candidate_tracker', 'cw_candidate_tracker.interviewer', 'inner', 'cw_employees', 'cw_employees.prime_employees_id', '1', 1, '2020-09-03 11:39:39', NULL, NULL, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_report_table_view`
--

CREATE TABLE `cw_report_table_view` (
  `prime_report_table_view_id` int NOT NULL,
  `report_id` int DEFAULT NULL,
  `report_name` varchar(100) DEFAULT '',
  `report_for` blob,
  `module_column` varchar(100) DEFAULT NULL,
  `table_column` varchar(255) DEFAULT NULL,
  `table_sort` int NOT NULL DEFAULT '0',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_report_table_view`
--

INSERT INTO `cw_report_table_view` (`prime_report_table_view_id`, `report_id`, `report_name`, `report_for`, `module_column`, `table_column`, `table_sort`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'candidate_name', 1, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(2, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'post_applied_for', 6, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(3, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'mobile_number', 2, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(4, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'alternate_number', 16, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(5, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'email_id', 17, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(6, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'date_of_birth', 18, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(7, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'age', 19, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(8, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'applied_by', 7, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(9, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'marital_status', 20, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(10, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'father_or_husband_name', 21, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(11, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'occupation', 22, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(12, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'income', 23, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(13, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'no_of_siblings', 24, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(14, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'current_salary', 25, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(15, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'expected_salary', 13, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(16, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'permanent_location', 26, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(17, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'current_location', 27, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(18, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'candidate_code', 3, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(19, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'consultancy', 8, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(20, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'employee_type', 28, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(23, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'date_of_available', 4, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(24, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'notice_period', 29, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(25, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'employee_code', 30, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(26, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'candidate_status', 11, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(27, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'interviewer', 9, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(28, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'date_of_joining', 12, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(29, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'salary_commited', 14, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(30, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'interview_time', 31, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(31, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'selected_status', 32, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(32, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'abs_or_ter_date', 33, 1, '2020-09-02 10:55:40', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(33, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'bike', 34, 1, '2020-09-03 23:37:24', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(34, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'interviewer_remarks', 15, 1, '2020-09-03 23:37:24', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(35, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'employees', 'emp_name', 35, 1, '2020-09-03 23:37:24', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(36, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'employees', 'emp_code', 36, 1, '2020-09-03 23:37:24', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(37, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'interview_date', 37, 1, '2020-09-05 17:16:18', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(38, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'department', 5, 1, '2020-09-05 17:16:18', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(39, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'employees', 'designation', 38, 1, '2020-09-05 17:17:27', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(41, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'company_location', 39, 52, '2021-02-17 17:28:21', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(42, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'company_branch', 40, 52, '2021-02-17 17:28:21', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(43, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'recruiter', 41, 1, '2021-03-01 15:12:34', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(44, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'candidate_name', 1, 1, '2023-04-17 16:26:20', 0, NULL, 0, NULL, 1),
(45, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'post_applied_for', 2, 1, '2023-04-17 16:26:20', 0, NULL, 0, NULL, 1),
(46, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'email_id', 3, 1, '2023-04-17 16:26:20', 0, NULL, 0, NULL, 1),
(47, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'applied_by', 4, 1, '2023-04-17 16:26:20', 0, NULL, 0, NULL, 1),
(48, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'marital_status', 5, 1, '2023-04-17 16:26:20', 0, NULL, 0, NULL, 1),
(49, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'current_salary', 6, 1, '2023-04-17 16:26:20', 0, NULL, 0, NULL, 1),
(50, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'expected_salary', 7, 1, '2023-04-17 16:26:20', 0, NULL, 0, NULL, 1),
(51, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'permanent_location', 8, 1, '2023-04-17 16:26:20', 0, NULL, 0, NULL, 1),
(52, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'current_location', 9, 1, '2023-04-17 16:26:20', 0, NULL, 0, NULL, 1),
(54, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'date_of_available', 11, 1, '2023-04-17 16:27:49', 0, NULL, 0, NULL, 1),
(55, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'employee_type', 12, 1, '2023-04-17 16:35:24', 0, NULL, 0, NULL, 1),
(56, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'company_branch', 12, 1, '2023-04-17 16:35:57', 0, NULL, 0, NULL, 1),
(57, 2, 'Interview schedules', 0x312c322c332c342c352c36, 'candidate_tracker', 'channel_name', 13, 1, '2023-04-17 16:35:57', 0, NULL, 0, NULL, 1),
(58, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'exp_doj', 42, 1, '2024-06-15 11:32:54', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(59, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'level_1', 43, 1, '2024-06-15 11:32:54', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(60, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'level_2', 44, 1, '2024-06-15 11:32:54', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(61, 1, 'CANDIDATE REPORT', 0x312c322c332c342c352c36, 'candidate_tracker', 'channel_name', 10, 1, '2024-06-15 15:43:56', 1, '2024-06-15 15:44:53', 0, NULL, 1),
(63, 3, 'Yet to Assign', 0x33, 'candidate_tracker', 'candidate_name', 2, 1, '2025-02-17 16:07:40', 0, NULL, 0, NULL, 1),
(64, 3, 'Yet to Assign', 0x33, 'candidate_tracker', 'post_applied_for', 3, 1, '2025-02-17 16:07:40', 0, NULL, 0, NULL, 1),
(65, 3, 'Yet to Assign', 0x33, 'candidate_tracker', 'mobile_number', 4, 1, '2025-02-17 16:07:40', 0, NULL, 0, NULL, 1),
(66, 3, 'Yet to Assign', 0x33, 'candidate_tracker', 'email_id', 5, 1, '2025-02-17 16:07:40', 0, NULL, 0, NULL, 1),
(67, 3, 'Yet to Assign', 0x33, 'candidate_tracker', 'age', 6, 1, '2025-02-17 16:07:40', 0, NULL, 0, NULL, 1),
(68, 3, 'Yet to Assign', 0x33, 'candidate_tracker', 'marital_status', 7, 1, '2025-02-17 16:07:40', 0, NULL, 0, NULL, 1),
(69, 3, 'Yet to Assign', 0x312c33, 'candidate_tracker', 'consultancy', 7, 60, '2025-02-20 19:24:41', 0, NULL, 0, NULL, 1),
(70, 4, 'IT Team', 0x31, 'candidate_tracker', 'channel_name', 1, 60, '2025-07-09 10:24:43', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_report_tot_column`
--

CREATE TABLE `cw_report_tot_column` (
  `prime_report_tot_id` int NOT NULL,
  `report_id` int DEFAULT NULL,
  `sum_column_name` text,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_report_tot_column`
--

INSERT INTO `cw_report_tot_column` (`prime_report_tot_id`, `report_id`, `sum_column_name`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 1, 'cw_candidate_tracker.salary_commited', 1, '2020-09-05 17:20:21', NULL, NULL, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_report_where`
--

CREATE TABLE `cw_report_where` (
  `prime_report_where_id` int NOT NULL,
  `where_for_id` int DEFAULT NULL,
  `where_condition` tinyblob,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_report_where`
--

INSERT INTO `cw_report_where` (`prime_report_where_id`, `where_for_id`, `where_condition`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 2, 0x616e642063775f63616e6469646174655f747261636b65722e63616e6469646174655f73746174757320696e28362c31302920616e642063775f63616e6469646174655f747261636b65722e6368616e6e656c5f6e616d6520696e28312c332c362c3929, 1, '2023-04-17 04:31:08', 1, '2023-04-17 04:34:45', NULL, NULL, 1),
(2, 3, 0x616e642063775f63616e6469646174655f747261636b65722e63616e6469646174655f737461747573203d2036, 1, '2025-02-17 04:08:37', NULL, NULL, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_reserved_words`
--

CREATE TABLE `cw_reserved_words` (
  `prime_reserved_words_id` int NOT NULL,
  `reserved_word` varchar(255) DEFAULT NULL,
  `reserved_type` varchar(255) DEFAULT NULL,
  `notes` varchar(255) DEFAULT NULL,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_reserved_words`
--

INSERT INTO `cw_reserved_words` (`prime_reserved_words_id`, `reserved_word`, `reserved_type`, `notes`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'ACCESSIBLE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(2, 'ACCOUNT', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(3, 'ACTION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(4, 'ADD', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(5, 'ADMIN', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(6, 'AFTER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(7, 'AGAINST', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(8, 'AGGREGATE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(9, 'ALGORITHM', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(10, 'ALL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(11, 'ALTER', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(12, 'ALWAYS', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(13, 'ANALYSE', 'Keyword', 'added in 5.6.6; removed in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(14, 'ANALYZE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(15, 'AND', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(16, 'ANY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(17, 'AS', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(18, 'ASC', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(19, 'ASCII', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(20, 'ASENSITIVE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(21, 'AT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(22, 'AUTHORS', 'Keyword', 'removed in 5.6.8', 0, NULL, 0, NULL, 0, NULL, 1),
(23, 'AUTOEXTEND_SIZE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(24, 'AUTO_INCREMENT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(25, 'AVG', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(26, 'AVG_ROW_LENGTH', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(27, 'BACKUP', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(28, 'BEFORE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(29, 'BEGIN', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(30, 'BETWEEN', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(31, 'BIGINT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(32, 'BINARY', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(33, 'BINLOG', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(34, 'BIT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(35, 'BLOB', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(36, 'BLOCK', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(37, 'BOOL', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(38, 'BOOLEAN', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(39, 'BOTH', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(40, 'BTREE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(41, 'BUCKETS', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(42, 'BY', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(43, 'BYTE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(44, 'CACHE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(45, 'CALL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(46, 'CASCADE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(47, 'CASCADED', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(48, 'CASE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(49, 'CATALOG_NAME', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(50, 'CHAIN', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(51, 'CHANGE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(52, 'CHANGED', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(53, 'CHANNEL', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(54, 'CHAR', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(55, 'CHARACTER', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(56, 'CHARSET', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(57, 'CHECK', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(58, 'CHECKSUM', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(59, 'CIPHER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(60, 'CLASS_ORIGIN', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(61, 'CLIENT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(62, 'CLONE', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(63, 'CLOSE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(64, 'COALESCE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(65, 'CODE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(66, 'COLLATE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(67, 'COLLATION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(68, 'COLUMN', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(69, 'COLUMNS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(70, 'COLUMN_FORMAT', 'Keyword', 'added in 5.6.6', 0, NULL, 0, NULL, 0, NULL, 1),
(71, 'COLUMN_NAME', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(72, 'COMMENT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(73, 'COMMIT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(74, 'COMMITTED', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(75, 'COMPACT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(76, 'COMPLETION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(77, 'COMPONENT', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(78, 'COMPRESSED', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(79, 'COMPRESSION', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(80, 'CONCURRENT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(81, 'CONDITION', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(82, 'CONNECTION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(83, 'CONSISTENT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(84, 'CONSTRAINT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(85, 'CONSTRAINT_CATALOG', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(86, 'CONSTRAINT_NAME', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(87, 'CONSTRAINT_SCHEMA', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(88, 'CONTAINS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(89, 'CONTEXT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(90, 'CONTINUE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(91, 'CONTRIBUTORS', 'Keyword', 'removed in 5.6.8', 0, NULL, 0, NULL, 0, NULL, 1),
(92, 'CONVERT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(93, 'CPU', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(94, 'CREATE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(95, 'CROSS', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(96, 'CUBE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(97, 'CUME_DIST', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(98, 'CURRENT', 'Keyword', 'added in 5.6.4', 0, NULL, 0, NULL, 0, NULL, 1),
(99, 'CURRENT_DATE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(100, 'CURRENT_TIME', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(101, 'CURRENT_TIMESTAMP', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(102, 'CURRENT_USER', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(103, 'CURSOR', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(104, 'CURSOR_NAME', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(105, 'DATA', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(106, 'DATABASE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(107, 'DATABASES', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(108, 'DATAFILE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(109, 'DATE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(110, 'DATETIME', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(111, 'DAY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(112, 'DAY_HOUR', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(113, 'DAY_MICROSECOND', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(114, 'DAY_MINUTE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(115, 'DAY_SECOND', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(116, 'DEALLOCATE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(117, 'DEC', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(118, 'DECIMAL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(119, 'DECLARE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(120, 'DEFAULT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(121, 'DEFAULT_AUTH', 'Keyword', 'added in 5.6.4', 0, NULL, 0, NULL, 0, NULL, 1),
(122, 'DEFINER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(123, 'DEFINITION', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(124, 'DELAYED', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(125, 'DELAY_KEY_WRITE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(126, 'DELETE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(127, 'DENSE_RANK', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(128, 'DESC', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(129, 'DESCRIBE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(130, 'DESCRIPTION', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(131, 'DES_KEY_FILE', 'Keyword', 'removed in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(132, 'DETERMINISTIC', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(133, 'DIAGNOSTICS', 'Keyword', 'added in 5.6.4', 0, NULL, 0, NULL, 0, NULL, 1),
(134, 'DIRECTORY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(135, 'DISABLE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(136, 'DISCARD', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(137, 'DISK', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(138, 'DISTINCT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(139, 'DISTINCTROW', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(140, 'DIV', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(141, 'DO', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(142, 'DOUBLE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(143, 'DROP', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(144, 'DUAL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(145, 'DUMPFILE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(146, 'DUPLICATE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(147, 'DYNAMIC', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(148, 'EACH', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(149, 'ELSE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(150, 'ELSEIF', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(151, 'EMPTY', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(152, 'ENABLE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(153, 'ENCLOSED', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(154, 'ENCRYPTION', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(155, 'END', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(156, 'ENDS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(157, 'ENGINE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(158, 'ENGINES', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(159, 'ENUM', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(160, 'ERROR', 'Keyword', 'added in 5.5.3', 0, NULL, 0, NULL, 0, NULL, 1),
(161, 'ERRORS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(162, 'ESCAPE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(163, 'ESCAPED', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(164, 'EVENT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(165, 'EVENTS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(166, 'EVERY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(167, 'EXCEPT', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(168, 'EXCHANGE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(169, 'EXCLUDE', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(170, 'EXECUTE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(171, 'EXISTS', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(172, 'EXIT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(173, 'EXPANSION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(174, 'EXPIRE', 'Keyword', 'added in 5.6.6', 0, NULL, 0, NULL, 0, NULL, 1),
(175, 'EXPLAIN', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(176, 'EXPORT', 'Keyword', 'added in 5.6.6', 0, NULL, 0, NULL, 0, NULL, 1),
(177, 'EXTENDED', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(178, 'EXTENT_SIZE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(179, 'FALSE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(180, 'FAST', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(181, 'FAULTS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(182, 'FETCH', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(183, 'FIELDS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(184, 'FILE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(185, 'FILE_BLOCK_SIZE', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(186, 'FILTER', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(187, 'FIRST', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(188, 'FIRST_VALUE', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(189, 'FIXED', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(190, 'FLOAT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(191, 'FLOAT4', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(192, 'FLOAT8', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(193, 'FLUSH', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(194, 'FOLLOWING', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(195, 'FOLLOWS', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(196, 'FOR', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(197, 'FORCE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(198, 'FOREIGN', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(199, 'FORMAT', 'Keyword', 'added in 5.6.5', 0, NULL, 0, NULL, 0, NULL, 1),
(200, 'FOUND', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(201, 'FRAC_SECOND', 'Keyword', 'removed in 5.5.3', 0, NULL, 0, NULL, 0, NULL, 1),
(202, 'FROM', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(203, 'FULL', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(204, 'FULLTEXT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(205, 'FUNCTION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(206, 'GENERAL', 'Keyword', 'added in 5.5.3; became nonreserved in 5.5.8', 0, NULL, 0, NULL, 0, NULL, 1),
(207, 'GENERATED', 'Reserved', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(208, 'GEOMCOLLECTION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(209, 'GEOMETRY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(210, 'GEOMETRYCOLLECTION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(211, 'GET', 'Reserved', 'added in 5.6.4', 0, NULL, 0, NULL, 0, NULL, 1),
(212, 'GET_FORMAT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(213, 'GET_MASTER_PUBLIC_KEY', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(214, 'GLOBAL', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(215, 'GRANT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(216, 'GRANTS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(217, 'GROUP', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(218, 'GROUPING', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(219, 'GROUPS', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(220, 'GROUP_REPLICATION', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(221, 'HANDLER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(222, 'HASH', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(223, 'HAVING', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(224, 'HELP', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(225, 'HIGH_PRIORITY', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(226, 'HISTOGRAM', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(227, 'HISTORY', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(228, 'HOST', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(229, 'HOSTS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(230, 'HOUR', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(231, 'HOUR_MICROSECOND', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(232, 'HOUR_MINUTE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(233, 'HOUR_SECOND', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(234, 'IDENTIFIED', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(235, 'IF', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(236, 'IGNORE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(237, 'IGNORE_SERVER_IDS', 'Keyword', 'became nonreserved in 5.5.8', 0, NULL, 0, NULL, 0, NULL, 1),
(238, 'IMPORT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(239, 'IN', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(240, 'INDEX', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(241, 'INDEXES', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(242, 'INFILE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(243, 'INITIAL_SIZE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(244, 'INNER', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(245, 'INNOBASE', 'Keyword', 'removed in 5.5.3', 0, NULL, 0, NULL, 0, NULL, 1),
(246, 'INNODB', 'Keyword', 'removed in 5.5.3', 0, NULL, 0, NULL, 0, NULL, 1),
(247, 'INOUT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(248, 'INSENSITIVE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(249, 'INSERT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(250, 'INSERT_METHOD', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(251, 'INSTALL', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(252, 'INSTANCE', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(253, 'INT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(254, 'INT1', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(255, 'INT2', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(256, 'INT3', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(257, 'INT4', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(258, 'INT8', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(259, 'INTEGER', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(260, 'INTERVAL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(261, 'INTO', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(262, 'INVISIBLE', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(263, 'INVOKER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(264, 'IO', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(265, 'IO_AFTER_GTIDS', 'Reserved', 'added in 5.6.5', 0, NULL, 0, NULL, 0, NULL, 1),
(266, 'IO_BEFORE_GTIDS', 'Reserved', 'added in 5.6.5', 0, NULL, 0, NULL, 0, NULL, 1),
(267, 'IO_THREAD', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(268, 'IPC', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(269, 'IS', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(270, 'ISOLATION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(271, 'ISSUER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(272, 'ITERATE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(273, 'JOIN', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(274, 'JSON', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(275, 'JSON_TABLE', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(276, 'KEY', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(277, 'KEYS', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(278, 'KEY_BLOCK_SIZE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(279, 'KILL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(280, 'LAG', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(281, 'LANGUAGE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(282, 'LAST', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(283, 'LAST_VALUE', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(284, 'LEAD', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(285, 'LEADING', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(286, 'LEAVE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(287, 'LEAVES', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(288, 'LEFT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(289, 'LESS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(290, 'LEVEL', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(291, 'LIKE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(292, 'LIMIT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(293, 'LINEAR', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(294, 'LINES', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(295, 'LINESTRING', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(296, 'LIST', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(297, 'LOAD', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(298, 'LOCAL', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(299, 'LOCALTIME', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(300, 'LOCALTIMESTAMP', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(301, 'LOCK', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(302, 'LOCKED', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(303, 'LOCKS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(304, 'LOGFILE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(305, 'LOGS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(306, 'LONG', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(307, 'LONGBLOB', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(308, 'LONGTEXT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(309, 'LOOP', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(310, 'LOW_PRIORITY', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(311, 'MASTER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(312, 'MASTER_AUTO_POSITION', 'Keyword', 'added in 5.6.5', 0, NULL, 0, NULL, 0, NULL, 1),
(313, 'MASTER_BIND', 'Reserved', 'added in 5.6.1', 0, NULL, 0, NULL, 0, NULL, 1),
(314, 'MASTER_CONNECT_RETRY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(315, 'MASTER_DELAY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(316, 'MASTER_HEARTBEAT_PERIOD', 'Keyword', 'became nonreserved in 5.5.8', 0, NULL, 0, NULL, 0, NULL, 1),
(317, 'MASTER_HOST', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(318, 'MASTER_LOG_FILE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(319, 'MASTER_LOG_POS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(320, 'MASTER_PASSWORD', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(321, 'MASTER_PORT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(322, 'MASTER_PUBLIC_KEY_PATH', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(323, 'MASTER_RETRY_COUNT', 'Keyword', 'added in 5.6.1', 0, NULL, 0, NULL, 0, NULL, 1),
(324, 'MASTER_SERVER_ID', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(325, 'MASTER_SSL', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(326, 'MASTER_SSL_CA', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(327, 'MASTER_SSL_CAPATH', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(328, 'MASTER_SSL_CERT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(329, 'MASTER_SSL_CIPHER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(330, 'MASTER_SSL_CRL', 'Keyword', 'added in 5.6.3', 0, NULL, 0, NULL, 0, NULL, 1),
(331, 'MASTER_SSL_CRLPATH', 'Keyword', 'added in 5.6.3', 0, NULL, 0, NULL, 0, NULL, 1),
(332, 'MASTER_SSL_KEY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(333, 'MASTER_SSL_VERIFY_SERVER_CERT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(334, 'MASTER_TLS_VERSION', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(335, 'MASTER_USER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(336, 'MATCH', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(337, 'MAXVALUE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(338, 'MAX_CONNECTIONS_PER_HOUR', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(339, 'MAX_QUERIES_PER_HOUR', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(340, 'MAX_ROWS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(341, 'MAX_SIZE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(342, 'MAX_UPDATES_PER_HOUR', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(343, 'MAX_USER_CONNECTIONS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(344, 'MEDIUM', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(345, 'MEDIUMBLOB', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(346, 'MEDIUMINT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(347, 'MEDIUMTEXT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(348, 'MEMORY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(349, 'MERGE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(350, 'MESSAGE_TEXT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(351, 'MICROSECOND', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(352, 'MIDDLEINT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(353, 'MIGRATE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(354, 'MINUTE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(355, 'MINUTE_MICROSECOND', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(356, 'MINUTE_SECOND', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(357, 'MIN_ROWS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(358, 'MOD', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(359, 'MODE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(360, 'MODIFIES', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(361, 'MODIFY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(362, 'MONTH', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(363, 'MULTILINESTRING', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(364, 'MULTIPOINT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(365, 'MULTIPOLYGON', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(366, 'MUTEX', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(367, 'MYSQL_ERRNO', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(368, 'NAME', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(369, 'NAMES', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(370, 'NATIONAL', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(371, 'NATURAL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(372, 'NCHAR', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(373, 'NDB', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(374, 'NDBCLUSTER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(375, 'NESTED', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(376, 'NEVER', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(377, 'NEW', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(378, 'NEXT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(379, 'NO', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(380, 'NODEGROUP', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(381, 'NONE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(382, 'NOT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(383, 'NOWAIT', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(384, 'NO_WAIT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(385, 'NO_WRITE_TO_BINLOG', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(386, 'NTH_VALUE', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(387, 'NTILE', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(388, 'NULL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(389, 'NULLS', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(390, 'NUMBER', 'Keyword', 'added in 5.6.4', 0, NULL, 0, NULL, 0, NULL, 1),
(391, 'NUMERIC', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(392, 'NVARCHAR', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(393, 'OF', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(394, 'OFFSET', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(395, 'OLD_PASSWORD', 'Keyword', 'removed in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(396, 'ON', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(397, 'ONE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(398, 'ONE_SHOT', 'Keyword', 'became reserved in 5.6.1; removed in 5.6.5', 0, NULL, 0, NULL, 0, NULL, 1),
(399, 'ONLY', 'Keyword', 'added in 5.6.5', 0, NULL, 0, NULL, 0, NULL, 1),
(400, 'OPEN', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(401, 'OPTIMIZE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(402, 'OPTIMIZER_COSTS', 'Reserved', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(403, 'OPTION', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(404, 'OPTIONALLY', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(405, 'OPTIONS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(406, 'OR', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(407, 'ORDER', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(408, 'ORDINALITY', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(409, 'OTHERS', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(410, 'OUT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(411, 'OUTER', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(412, 'OUTFILE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(413, 'OVER', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(414, 'OWNER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(415, 'PACK_KEYS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(416, 'PAGE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(417, 'PARSER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(418, 'PARSE_GCOL_EXPR', 'Keyword', 'added in 5.7; removed in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(419, 'PARTIAL', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(420, 'PARTITION', 'Reserved', 'became reserved in 5.6.2', 0, NULL, 0, NULL, 0, NULL, 1),
(421, 'PARTITIONING', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(422, 'PARTITIONS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(423, 'PASSWORD', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(424, 'PATH', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(425, 'PERCENT_RANK', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(426, 'PERSIST', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(427, 'PERSIST_ONLY', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(428, 'PHASE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(429, 'PLUGIN', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(430, 'PLUGINS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(431, 'PLUGIN_DIR', 'Keyword', 'added in 5.6.4', 0, NULL, 0, NULL, 0, NULL, 1),
(432, 'POINT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(433, 'POLYGON', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(434, 'PORT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(435, 'PRECEDES', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(436, 'PRECEDING', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(437, 'PRECISION', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(438, 'PREPARE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(439, 'PRESERVE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(440, 'PREV', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(441, 'PRIMARY', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(442, 'PRIVILEGES', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(443, 'PROCEDURE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(444, 'PROCESS', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(445, 'PROCESSLIST', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(446, 'PROFILE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(447, 'PROFILES', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(448, 'PROXY', 'Keyword', 'added in 5.5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(449, 'PURGE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(450, 'QUARTER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(451, 'QUERY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(452, 'QUICK', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(453, 'RANGE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(454, 'RANK', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(455, 'READ', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(456, 'READS', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(457, 'READ_ONLY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(458, 'READ_WRITE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(459, 'REAL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(460, 'REBUILD', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(461, 'RECOVER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(462, 'RECURSIVE', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(463, 'REDOFILE', 'Keyword', 'removed in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(464, 'REDO_BUFFER_SIZE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(465, 'REDUNDANT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(466, 'REFERENCE', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(467, 'REFERENCES', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(468, 'REGEXP', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(469, 'RELAY', 'Keyword', 'added in 5.5.3', 0, NULL, 0, NULL, 0, NULL, 1),
(470, 'RELAYLOG', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(471, 'RELAY_LOG_FILE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(472, 'RELAY_LOG_POS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(473, 'RELAY_THREAD', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(474, 'RELEASE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(475, 'RELOAD', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(476, 'REMOTE', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(477, 'REMOVE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(478, 'RENAME', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(479, 'REORGANIZE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(480, 'REPAIR', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(481, 'REPEAT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(482, 'REPEATABLE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(483, 'REPLACE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(484, 'REPLICATE_DO_DB', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(485, 'REPLICATE_DO_TABLE', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(486, 'REPLICATE_IGNORE_DB', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(487, 'REPLICATE_IGNORE_TABLE', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(488, 'REPLICATE_REWRITE_DB', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(489, 'REPLICATE_WILD_DO_TABLE', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(490, 'REPLICATE_WILD_IGNORE_TABLE', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(491, 'REPLICATION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(492, 'REQUIRE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(493, 'RESET', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(494, 'RESIGNAL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(495, 'RESOURCE', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(496, 'RESPECT', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(497, 'RESTART', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(498, 'RESTORE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(499, 'RESTRICT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(500, 'RESUME', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(501, 'RETURN', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(502, 'RETURNED_SQLSTATE', 'Keyword', 'added in 5.6.4', 0, NULL, 0, NULL, 0, NULL, 1),
(503, 'RETURNS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(504, 'REUSE', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(505, 'REVERSE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(506, 'REVOKE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(507, 'RIGHT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(508, 'RLIKE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(509, 'ROLE', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(510, 'ROLLBACK', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(511, 'ROLLUP', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(512, 'ROTATE', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(513, 'ROUTINE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(514, 'ROW', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(515, 'ROWS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(516, 'ROW_COUNT', 'Keyword', 'added in 5.6.4', 0, NULL, 0, NULL, 0, NULL, 1),
(517, 'ROW_FORMAT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(518, 'ROW_NUMBER', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(519, 'RTREE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(520, 'SAVEPOINT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(521, 'SCHEDULE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(522, 'SCHEMA', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(523, 'SCHEMAS', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(524, 'SCHEMA_NAME', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(525, 'SECOND', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(526, 'SECOND_MICROSECOND', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(527, 'SECURITY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(528, 'SELECT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(529, 'SENSITIVE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(530, 'SEPARATOR', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(531, 'SERIAL', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(532, 'SERIALIZABLE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(533, 'SERVER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(534, 'SESSION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(535, 'SET', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(536, 'SHARE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(537, 'SHOW', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(538, 'SHUTDOWN', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(539, 'SIGNAL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(540, 'SIGNED', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(541, 'SIMPLE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(542, 'SKIP', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(543, 'SLAVE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(544, 'SLOW', 'Keyword', 'added in 5.5.3; became nonreserved in 5.5.8', 0, NULL, 0, NULL, 0, NULL, 1),
(545, 'SMALLINT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(546, 'SNAPSHOT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(547, 'SOCKET', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(548, 'SOME', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(549, 'SONAME', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(550, 'SOUNDS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(551, 'SOURCE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(552, 'SPATIAL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(553, 'SPECIFIC', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(554, 'SQL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(555, 'SQLEXCEPTION', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(556, 'SQLSTATE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(557, 'SQLWARNING', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(558, 'SQL_AFTER_GTIDS', 'Keyword', 'added in 5.6.5; became nonreserved in 5.6.6', 0, NULL, 0, NULL, 0, NULL, 1),
(559, 'SQL_AFTER_MTS_GAPS', 'Keyword', 'added in 5.6.6', 0, NULL, 0, NULL, 0, NULL, 1),
(560, 'SQL_BEFORE_GTIDS', 'Keyword', 'added in 5.6.5; became nonreserved in 5.6.6', 0, NULL, 0, NULL, 0, NULL, 1),
(561, 'SQL_BIG_RESULT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(562, 'SQL_BUFFER_RESULT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(563, 'SQL_CACHE', 'Keyword', 'removed in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(564, 'SQL_CALC_FOUND_ROWS', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(565, 'SQL_NO_CACHE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(566, 'SQL_SMALL_RESULT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(567, 'SQL_THREAD', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(568, 'SQL_TSI_DAY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(569, 'SQL_TSI_FRAC_SECOND', 'Keyword', 'removed in 5.5.3', 0, NULL, 0, NULL, 0, NULL, 1),
(570, 'SQL_TSI_HOUR', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(571, 'SQL_TSI_MINUTE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(572, 'SQL_TSI_MONTH', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(573, 'SQL_TSI_QUARTER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(574, 'SQL_TSI_SECOND', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(575, 'SQL_TSI_WEEK', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(576, 'SQL_TSI_YEAR', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(577, 'SRID', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(578, 'SSL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(579, 'STACKED', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(580, 'START', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(581, 'STARTING', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(582, 'STARTS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(583, 'STATS_AUTO_RECALC', 'Keyword', 'added in 5.6.6', 0, NULL, 0, NULL, 0, NULL, 1),
(584, 'STATS_PERSISTENT', 'Keyword', 'added in 5.6.6', 0, NULL, 0, NULL, 0, NULL, 1),
(585, 'STATS_SAMPLE_PAGES', 'Keyword', 'added in 5.6.6', 0, NULL, 0, NULL, 0, NULL, 1),
(586, 'STATUS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(587, 'STOP', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(588, 'STORAGE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(589, 'STORED', 'Reserved', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(590, 'STRAIGHT_JOIN', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(591, 'STRING', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(592, 'SUBCLASS_ORIGIN', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(593, 'SUBJECT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(594, 'SUBPARTITION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(595, 'SUBPARTITIONS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(596, 'SUPER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(597, 'SUSPEND', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(598, 'SWAPS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(599, 'SWITCHES', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(600, 'SYSTEM', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(601, 'TABLE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(602, 'TABLES', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(603, 'TABLESPACE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(604, 'TABLE_CHECKSUM', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(605, 'TABLE_NAME', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(606, 'TEMPORARY', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(607, 'TEMPTABLE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(608, 'TERMINATED', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(609, 'TEXT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(610, 'THAN', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(611, 'THEN', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(612, 'THREAD_PRIORITY', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(613, 'TIES', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(614, 'TIME', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(615, 'TIMESTAMP', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(616, 'TIMESTAMPADD', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(617, 'TIMESTAMPDIFF', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(618, 'TINYBLOB', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(619, 'TINYINT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(620, 'TINYTEXT', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(621, 'TO', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(622, 'TRAILING', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(623, 'TRANSACTION', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(624, 'TRIGGER', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(625, 'TRIGGERS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(626, 'TRUE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(627, 'TRUNCATE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(628, 'TYPE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(629, 'TYPES', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(630, 'UNBOUNDED', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(631, 'UNCOMMITTED', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(632, 'UNDEFINED', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(633, 'UNDO', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(634, 'UNDOFILE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(635, 'UNDO_BUFFER_SIZE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(636, 'UNICODE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(637, 'UNINSTALL', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(638, 'UNION', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(639, 'UNIQUE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(640, 'UNKNOWN', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(641, 'UNLOCK', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(642, 'UNSIGNED', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(643, 'UNTIL', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(644, 'UPDATE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(645, 'UPGRADE', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(646, 'USAGE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(647, 'USE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(648, 'USER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(649, 'USER_RESOURCES', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(650, 'USE_FRM', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(651, 'USING', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(652, 'UTC_DATE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(653, 'UTC_TIME', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(654, 'VALIDATION', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(655, 'VALUES', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(656, 'VARBINARY', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(657, 'VARCHAR', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(658, 'VARCHARACTER', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(659, 'VARIABLES', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(660, 'VARYING', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(661, 'VCPU', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(662, 'VIEW', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(663, 'VIRTUAL', 'Reserved', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(664, 'VISIBLE', 'Keyword', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(665, 'WAIT', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(666, 'WARNINGS', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(667, 'WEEK', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(668, 'WEIGHT_STRING', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(669, 'WHEN', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(670, 'WHERE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(671, 'WHILE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(672, 'WINDOW', 'Reserved', 'added in 8.0', 0, NULL, 0, NULL, 0, NULL, 1),
(673, 'WITH', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(674, 'WITHOUT', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(675, 'WORK', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(676, 'WRAPPER', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(677, 'WRITE', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(678, 'X509', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(679, 'XA', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(680, 'XID', 'Keyword', 'added in 5.7', 0, NULL, 0, NULL, 0, NULL, 1),
(681, 'XML', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(682, 'XOR', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(683, 'YEAR', 'Keyword', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(684, 'YEAR_MONTH', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1),
(685, 'ZEROFILL', 'Reserved', NULL, 0, NULL, 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_role_base_condition`
--

CREATE TABLE `cw_role_base_condition` (
  `prime_role_base_condition_id` int NOT NULL,
  `role_module_id` varchar(100) DEFAULT NULL,
  `role_condition_for` text,
  `user_condition_type` varchar(50) DEFAULT NULL,
  `input_columns` text,
  `trans_created_by` int DEFAULT NULL,
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT NULL,
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT NULL,
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_role_base_condition`
--

INSERT INTO `cw_role_base_condition` (`prime_role_base_condition_id`, `role_module_id`, `role_condition_for`, `user_condition_type`, `input_columns`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'candidate_tracker', '4', 'readonly', 'candidate_code,consultancy', 1, '2020-08-26 04:52:02', 1, '2020-08-27 10:20:40', NULL, NULL, 1),
(2, 'candidate_tracker', '1,2,5', 'readonly', 'candidate_code', 1, '2020-08-27 10:20:19', 1, '2020-12-22 04:06:30', NULL, NULL, 1),
(3, 'candidate_tracker', '3', 'readonly', '', 1, '2020-12-22 04:08:15', 7, '2020-12-29 11:06:51', NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_sessions`
--

CREATE TABLE `cw_sessions` (
  `id` varchar(40) NOT NULL,
  `ip_address` varchar(45) NOT NULL,
  `timestamp` int UNSIGNED NOT NULL DEFAULT '0',
  `data` blob NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `cw_sessions`
--

INSERT INTO `cw_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES
('31330ef8f4c29df552776a42c83adbcd204ed3b3', '103.238.228.178', 1778317571, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383331373537313b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('bfd7f426c94cc0cb6b85baea7509896f575a0059', '106.222.220.59', 1778317730, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383331373733303b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('9d64feaa1aaaa2643c63dcfaeccb359b1c2de7fe', '103.238.228.178', 1778317957, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383331373935373b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('b8e5f398cacf75146b85ec310a99e315413e9928', '103.238.228.178', 1778325289, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332353238393b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a323a223630223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303035223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a32363a7b733a31313a22626c6f6f645f67726f7570223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a363a226272616e6368223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2230223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2230223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a373a226368616e6e656c223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a373a22636f6d70616e79223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31313a22636f6e73756c74616e6379223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31303a226465706172746d656e74223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31313a2264657369676e6174696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a393a22656d706c6f79656573223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31383a22656d706c6f7965655f656e726f6c6d656e74223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31393a22656d706c6f7965655f7065726d697373696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31323a22666f726d5f73657474696e67223b613a363a7b733a31303a226163636573735f616464223b733a313a2230223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a363a2267656e646572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a383a226c6f636174696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31323a226d616e616765725f6c697374223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31313a227064665f73657474696e67223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a383a22706f736974696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31333a227072696e745f73657474696e67223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a363a227265706f7274223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31343a227265706f72745f73657474696e67223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a353a22736c6f7473223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a363a22736f75726365223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a393a2274696d655f736c6f74223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31363a2275706c6f61645f657874656e73696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31383a227574696c69746965735f73657474696e6773223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('90eafc87e5dcf7c82caa0d30d4524d410cb35d04', '106.222.220.59', 1778318057, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383331383035373b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('b4f1e47998847a10dfa411dfaf8554dd05686c44', '103.238.228.178', 1778319262, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383331393236323b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('5df17513b8eaa95ed2ecacdab10f8a64497aadd8', '106.222.220.59', 1778318363, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383331383336333b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('4f2d9ee553119b14daf238941d32ceb1dc6fc8e2', '198.235.24.34', 1778318214, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383331383231343b),
('c5b8e013aec382f8e1a5ff3d3c7adbe623554e12', '106.222.220.59', 1778318777, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383331383737373b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('2d3dc9ddba49a1cdf0f0fc9ec96587e03621923d', '103.238.228.178', 1778325014, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332353031343b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313736223b6c6f676765645f726f6c657c733a313a2236223b6c6f676765645f757365725f726f6c657c733a313a2235223b6c6f676765645f656d705f636f64657c733a353a224931303833223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2235223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2230223b733a31333a226163636573735f757064617465223b733a313a2230223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2230223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('3521fcd4f2fd7d3e970ac0a464d24c0c0e4058d7', '106.222.220.59', 1778321721, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332313732313b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('0d57228fa06d623da43fef7138f39d696c0095a0', '106.222.220.59', 1778318989, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383331383938393b),
('16a797faede82342fa866e5dcc8345505aaa200d', '103.238.228.178', 1778325254, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383331393236323b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('6d4209ab004c8ec9595be7e7f617437e38e8a200', '106.222.220.59', 1778319724, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383331393437383b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313439223b6c6f676765645f726f6c657c733a313a2236223b6c6f676765645f757365725f726f6c657c733a313a2235223b6c6f676765645f656d705f636f64657c733a353a224931303731223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2235223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2230223b733a31333a226163636573735f757064617465223b733a313a2230223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2230223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('670710b32a21fe9ca24800b4fcf939fde84de34e', '103.238.228.178', 1778328684, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383331393734313b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313539223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303330223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a333a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2230223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2230223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31323a226d616e616765725f6c697374223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2230223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d7d),
('c7d6f3c0007d5613eb7f51b043729a4ea0bd2caa', '106.222.220.59', 1778322621, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332323632313b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('098ded423ebb24de3d26466ba11b81a2d814c540', '106.222.221.186', 1778322645, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332323134323b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313634223b6c6f676765645f726f6c657c733a313a2236223b6c6f676765645f757365725f726f6c657c733a313a2235223b6c6f676765645f656d705f636f64657c733a353a224931303738223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2235223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2230223b733a31333a226163636573735f757064617465223b733a313a2230223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2230223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('4e2fa948cf4ac2f68174c5ee5bf95a94674e5787', '106.222.220.59', 1778324820, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332343832303b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('7076e83340f5e6072ab4629601230268f95090f0', '106.222.220.59', 1778325748, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332353734383b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('09c702221f98d4046c53c78290854f21afb7aa88', '103.238.228.178', 1778325015, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332353031353b),
('e590fd56bd6cab51c90b33f47c52491ea5563567', '103.238.228.178', 1778327896, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332373839363b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a323a223630223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303035223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a32363a7b733a31313a22626c6f6f645f67726f7570223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a363a226272616e6368223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2230223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2230223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a373a226368616e6e656c223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a373a22636f6d70616e79223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31313a22636f6e73756c74616e6379223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31303a226465706172746d656e74223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31313a2264657369676e6174696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a393a22656d706c6f79656573223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31383a22656d706c6f7965655f656e726f6c6d656e74223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31393a22656d706c6f7965655f7065726d697373696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31323a22666f726d5f73657474696e67223b613a363a7b733a31303a226163636573735f616464223b733a313a2230223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a363a2267656e646572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a383a226c6f636174696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31323a226d616e616765725f6c697374223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31313a227064665f73657474696e67223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a383a22706f736974696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31333a227072696e745f73657474696e67223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a363a227265706f7274223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31343a227265706f72745f73657474696e67223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a353a22736c6f7473223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a363a22736f75726365223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a393a2274696d655f736c6f74223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31363a2275706c6f61645f657874656e73696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31383a227574696c69746965735f73657474696e6773223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('b34b5f9e1404f297a41066e1d33071b94ee03ad4', '106.222.220.59', 1778326244, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332363234343b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('ed9aef24bcb5b467c40a0bca6c5a2cb357e80dee', '106.222.220.59', 1778326807, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332363830373b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('197d912a32ba83e61e66b6a223ff86e49d680190', '106.222.220.59', 1778327167, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332373136373b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('0aff70b65f5d0d66393a283fe9961ea005b8bcf2', '106.222.220.59', 1778329059, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332393035393b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('dda3210fb782df0864743dbd6a68526970a680fb', '172.104.161.144', 1778327231, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332373233313b);
INSERT INTO `cw_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES
('24886ab04ae502fb61122f72cac433a7ef701aa5', '103.238.228.178', 1778329319, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332373839363b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a323a223630223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303035223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a32363a7b733a31313a22626c6f6f645f67726f7570223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a363a226272616e6368223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2230223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2230223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a373a226368616e6e656c223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a373a22636f6d70616e79223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31313a22636f6e73756c74616e6379223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31303a226465706172746d656e74223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31313a2264657369676e6174696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a393a22656d706c6f79656573223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31383a22656d706c6f7965655f656e726f6c6d656e74223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31393a22656d706c6f7965655f7065726d697373696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31323a22666f726d5f73657474696e67223b613a363a7b733a31303a226163636573735f616464223b733a313a2230223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a363a2267656e646572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a383a226c6f636174696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31323a226d616e616765725f6c697374223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31313a227064665f73657474696e67223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a383a22706f736974696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31333a227072696e745f73657474696e67223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a363a227265706f7274223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31343a227265706f72745f73657474696e67223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a353a22736c6f7473223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a363a22736f75726365223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a393a2274696d655f736c6f74223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31363a2275706c6f61645f657874656e73696f6e223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d733a31383a227574696c69746965735f73657474696e6773223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('4e6b3650dedee8bde69e608c1314eb076ee4c9ac', '103.238.228.178', 1778329231, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332373930313b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a323a223539223b6c6f676765645f726f6c657c733a313a2236223b6c6f676765645f757365725f726f6c657c733a313a2235223b6c6f676765645f656d705f636f64657c733a353a224931303431223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2230223b733a31333a226163636573735f757064617465223b733a313a2230223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2230223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('8dfb2c7cbd9245c84a346b7f139c8142a954ee3c', '103.238.228.178', 1778328632, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332383034333b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a323a223131223b6c6f676765645f726f6c657c733a313a2236223b6c6f676765645f757365725f726f6c657c733a313a2235223b6c6f676765645f656d705f636f64657c733a353a224931303032223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2231223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2230223b733a31333a226163636573735f757064617465223b733a313a2230223b733a31333a226163636573735f64656c657465223b733a313a2230223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2230223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('1a4f31d3bf5ac317c9147c4c3d1583f5c9c662a8', '106.222.220.59', 1778329548, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332393534383b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('0eabda2264a1143759fd71202d44d116c9abc329', '106.222.220.59', 1778329549, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383332393534383b6c6f676765645f747970657c733a383a22454d504c4f594545223b6c6f676765645f69647c733a333a22313534223b6c6f676765645f726f6c657c733a313a2233223b6c6f676765645f757365725f726f6c657c733a313a2233223b6c6f676765645f656d705f636f64657c733a353a224831303238223b6c6f676765645f6272616e63687c4e3b6c6f676765645f636f6e73756c74616e63797c733a303a22223b6c6f676765645f646570747c733a313a2236223b6163636573735f646174617c613a323a7b733a31373a2263616e6469646174655f747261636b6572223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2230223b7d733a31353a2270617373776f72645f6368616e6765223b613a363a7b733a31303a226163636573735f616464223b733a313a2231223b733a31333a226163636573735f757064617465223b733a313a2231223b733a31333a226163636573735f64656c657465223b733a313a2231223b733a31333a226163636573735f736561726368223b733a313a2231223b733a31333a226163636573735f6578706f7274223b733a313a2231223b733a31333a226163636573735f696d706f7274223b733a313a2231223b7d7d),
('35140a29ba3689774863f0068901819e5fcf3379', '203.83.40.22', 1778330619, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383333303631393b),
('26d0455f91c2c2739d2ec869f716c34dca40736b', '203.83.40.22', 1778332179, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383333323137393b),
('bd3666ad52ec8fd5fa23e74856d6ae926201f06f', '66.132.224.238', 1778338806, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383333383830363b),
('c450fdb38aa7a72e7221c9c5a454f21fb44f0027', '199.45.154.132', 1778339619, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383333393631393b),
('0b705b30d67ef7b128c681df25b16228f5e4f434', '172.104.161.144', 1778345558, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383334353535383b),
('ceb679319b79ecc5cf9bc0da33f1995184198e7b', '203.83.40.22', 1778348111, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383334383131313b),
('05aae25e6281c7c63b9103e8ad98c9d15bcefbba', '178.128.239.48', 1778351530, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383335313533303b),
('00afb6a7cfb0ae68fcacc9e806a4d2d832c6e2ac', '178.128.239.48', 1778351532, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383335313533323b),
('4eec3efcb1216dcaec3f6b7b383b6c88c8aa7aff', '172.104.161.144', 1778356844, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383335363834343b),
('e860f6c881448847180d3db0741772d719436eda', '203.83.40.22', 1778365971, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383336353937313b),
('86c1c71a0d9b8b93e9372f8c9b1af9c5d6829a8b', '208.76.40.197', 1778373558, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383337333535373b),
('a0d0d63b8b6f11d389d56f2b2591365187431a25', '172.104.161.144', 1778377756, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383337373735363b),
('5dd98c42b742f93b5728ad5783b9c257d750d3c7', '103.107.198.230', 1778385788, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383338353738383b),
('a4909443b56770486dc4e776fdfadce868152b59', '104.28.227.186', 1778389513, 0x5f5f63695f6c6173745f726567656e65726174657c693a313737383338393531333b);

-- --------------------------------------------------------

--
-- Table structure for table `cw_session_value`
--

CREATE TABLE `cw_session_value` (
  `prime_session_value_id` int NOT NULL,
  `session_for` int DEFAULT '0',
  `session_value` varchar(100) NOT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;

--
-- Dumping data for table `cw_session_value`
--

INSERT INTO `cw_session_value` (`prime_session_value_id`, `session_for`, `session_value`, `trans_status`) VALUES
(1, 1, 'logged_type', 1),
(2, 1, 'logged_id', 1),
(3, 1, 'logged_role', 1),
(4, 1, 'access_data', 1),
(5, 1, 'logged_map_cust', 1),
(6, 1, 'logged_repot_to', 1),
(7, 1, 'logged_MY', 1),
(8, 1, 'logged_DMY', 1),
(9, 1, 'logged_YMD', 1),
(10, 1, 'logged_YM', 1),
(11, 1, 'logged_Y', 1),
(12, 1, 'logged_user_role', 1),
(13, 1, 'logged_emp_code', 1),
(14, 1, 'logged_branch', 1),
(15, 1, 'logged_consultancy', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_slots`
--

CREATE TABLE `cw_slots` (
  `prime_slots_id` int NOT NULL,
  `time_slot` varchar(100) DEFAULT '0',
  `candidate_count` int DEFAULT '0',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_slots`
--

INSERT INTO `cw_slots` (`prime_slots_id`, `time_slot`, `candidate_count`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, '1', 40, 1, '2020-12-07 07:58:19', 1, '2025-09-22 02:56:59', 0, NULL, 1),
(2, '2', 40, 1, '2020-12-07 07:58:25', 1, '2025-09-22 02:57:04', 0, NULL, 1),
(3, '3', 40, 1, '2020-12-07 07:58:31', 1, '2025-09-22 02:57:08', 0, NULL, 1),
(4, '4', 40, 1, '2023-07-27 03:14:29', 1, '2025-09-22 02:57:13', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_sms_log`
--

CREATE TABLE `cw_sms_log` (
  `prime_sms_log_id` int NOT NULL,
  `designation` varchar(100) DEFAULT '',
  `to_mobile` text NOT NULL,
  `sms_txt` text NOT NULL,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_source`
--

CREATE TABLE `cw_source` (
  `prime_source_id` int NOT NULL,
  `source_name` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_source`
--

INSERT INTO `cw_source` (`prime_source_id`, `source_name`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'naukri', 1, '2020-12-24 11:33:45', 0, NULL, 0, NULL, 1),
(2, 'indeed', 1, '2020-12-24 11:33:51', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_state`
--

CREATE TABLE `cw_state` (
  `prime_state_id` int NOT NULL,
  `state_name` varchar(100) DEFAULT '',
  `country` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_state`
--

INSERT INTO `cw_state` (`prime_state_id`, `state_name`, `country`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'Tamil Nadu', '1', 1, '2018-12-22 03:33:59', 0, NULL, 1, '2019-03-09 11:29:01', 0),
(2, 'Kerala', '1', 1, '2019-01-07 11:01:55', 1, '2019-03-09 11:26:42', 1, '2019-03-09 11:29:01', 0),
(12, 'Karnataka', '1', 1, '2019-01-09 11:09:32', 1, '2019-03-09 11:26:02', 1, '2019-03-09 11:29:01', 0),
(13, 'Jharkhand', '1', 1, '2019-01-09 11:09:32', 1, '2019-03-09 11:25:38', 1, '2019-03-09 11:29:01', 0),
(14, 'Maharashtra', '1', 1, '2019-01-09 11:09:32', 0, NULL, 1, '2019-03-09 11:29:01', 0),
(15, 'Manipur', '1', 1, '2019-01-09 11:09:32', 0, NULL, 1, '2019-03-09 11:29:01', 0),
(16, 'Mizoram', '1', 1, '2019-01-09 11:09:32', 0, NULL, 1, '2019-03-09 11:29:01', 0),
(17, 'Odisha', '1', 1, '2019-01-09 11:09:33', 0, NULL, 1, '2019-03-09 11:29:01', 0),
(18, 'Punjab', '1', 1, '2019-01-09 11:09:33', 0, NULL, 1, '2019-03-09 11:29:01', 0),
(19, 'Rajasthan', '1', 1, '2019-01-09 11:09:33', 0, NULL, 1, '2019-03-09 11:29:01', 0),
(20, 'Sikkim', '1', 1, '2019-01-09 11:09:33', 0, NULL, 1, '2019-01-09 11:11:11', 0),
(21, 'Andhra Pradesh', '1', 1, '2019-01-10 11:10:28', 1, '2019-03-09 11:21:24', 0, NULL, 1),
(22, 'Arunachal Pradesh', '1', 1, '2019-03-09 11:21:52', 0, NULL, 0, NULL, 1),
(23, 'Assam', '1', 1, '2019-03-09 11:22:08', 0, NULL, 0, NULL, 1),
(24, 'Bihar', '1', 1, '2019-03-09 11:22:35', 0, NULL, 0, NULL, 1),
(25, 'Chhattisgarh', '1', 1, '2019-03-09 11:23:20', 0, NULL, 0, NULL, 1),
(26, 'Goa', '1', 1, '2019-03-09 11:23:40', 0, NULL, 0, NULL, 1),
(27, 'Gujarat', '1', 1, '2019-03-09 11:24:03', 0, NULL, 0, NULL, 1),
(28, 'Haryana', '1', 1, '2019-03-09 11:24:39', 0, NULL, 0, NULL, 1),
(29, 'Himachal Pradesh', '1', 1, '2019-03-09 11:24:54', 0, NULL, 0, NULL, 1),
(30, 'Jammu and Kashmir', '1', 1, '2019-03-09 11:25:17', 0, NULL, 0, NULL, 1),
(31, 'Madhya Pradesh', '1', 1, '2019-03-09 11:27:04', 0, NULL, 1, '2019-03-09 11:29:25', 0),
(32, 'Maharashtra', '1', 1, '2019-03-09 11:27:19', 0, NULL, 1, '2019-03-09 11:29:25', 0),
(33, 'Jharkhand', '1', 1, '2019-03-09 11:29:41', 0, NULL, 0, NULL, 1),
(34, 'Karnataka', '1', 1, '2019-03-09 11:30:00', 0, NULL, 0, NULL, 1),
(35, 'Kerala', '1', 1, '2019-03-09 11:30:12', 0, NULL, 0, NULL, 1),
(36, 'Madhya Pradesh', '1', 1, '2019-03-09 11:30:26', 0, NULL, 0, NULL, 1),
(37, 'Maharashtra', '1', 1, '2019-03-09 11:30:41', 0, NULL, 0, NULL, 1),
(38, 'Manipur', '1', 1, '2019-03-09 11:30:54', 0, NULL, 0, NULL, 1),
(39, 'Meghalaya', '1', 1, '2019-03-09 11:31:07', 0, NULL, 0, NULL, 1),
(40, 'Mizoram', '1', 1, '2019-03-09 11:31:19', 0, NULL, 0, NULL, 1),
(41, 'Nagaland', '1', 1, '2019-03-09 11:31:31', 0, NULL, 0, NULL, 1),
(42, 'Orissa', '1', 1, '2019-03-09 11:31:43', 0, NULL, 0, NULL, 1),
(43, 'Punjab', '1', 1, '2019-03-09 11:31:55', 0, NULL, 0, NULL, 1),
(44, 'Rajasthan', '1', 1, '2019-03-09 11:32:15', 0, NULL, 0, NULL, 1),
(45, 'Sikkim', '1', 1, '2019-03-09 11:32:29', 0, NULL, 0, NULL, 1),
(46, 'Tamil Nadu', '1', 1, '2019-03-09 11:32:41', 0, NULL, 0, NULL, 1),
(47, 'Telagana', '1', 1, '2019-03-09 11:32:53', 0, NULL, 0, NULL, 1),
(48, 'Tripura', '1', 1, '2019-03-09 11:33:06', 0, NULL, 0, NULL, 1),
(49, 'Uttaranchal', '1', 1, '2019-03-09 11:33:20', 0, NULL, 0, NULL, 1),
(50, 'Uttar Pradesh', '1', 1, '2019-03-09 11:33:32', 0, NULL, 0, NULL, 1),
(51, 'West Bengal', '1', 1, '2019-03-09 11:33:45', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_state_cf`
--

CREATE TABLE `cw_state_cf` (
  `prime_state_cf_id` int NOT NULL,
  `prime_state_id` int DEFAULT '0',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_state_cf`
--

INSERT INTO `cw_state_cf` (`prime_state_cf_id`, `prime_state_id`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 1, 1, '2018-12-22 03:33:59', 0, NULL, 0, NULL, 1),
(2, 2, 1, '2019-01-07 11:01:55', 1, '2019-03-09 11:26:42', 0, NULL, 1),
(3, 12, 1, '2019-01-09 11:09:32', 1, '2019-03-09 11:26:02', 0, NULL, 1),
(4, 13, 1, '2019-01-09 11:09:32', 1, '2019-03-09 11:25:38', 0, NULL, 1),
(5, 14, 1, '2019-01-09 11:09:32', 0, NULL, 0, NULL, 1),
(6, 15, 1, '2019-01-09 11:09:32', 0, NULL, 0, NULL, 1),
(7, 16, 1, '2019-01-09 11:09:32', 0, NULL, 0, NULL, 1),
(8, 17, 1, '2019-01-09 11:09:33', 0, NULL, 0, NULL, 1),
(9, 18, 1, '2019-01-09 11:09:33', 0, NULL, 0, NULL, 1),
(10, 19, 1, '2019-01-09 11:09:33', 0, NULL, 0, NULL, 1),
(11, 20, 1, '2019-01-09 11:09:33', 0, NULL, 0, NULL, 1),
(12, 21, 1, '2019-01-10 11:10:28', 1, '2019-03-09 11:21:24', 0, NULL, 1),
(13, 22, 1, '2019-03-09 11:21:52', 0, NULL, 0, NULL, 1),
(14, 23, 1, '2019-03-09 11:22:08', 0, NULL, 0, NULL, 1),
(15, 24, 1, '2019-03-09 11:22:35', 0, NULL, 0, NULL, 1),
(16, 25, 1, '2019-03-09 11:23:20', 0, NULL, 0, NULL, 1),
(17, 26, 1, '2019-03-09 11:23:40', 0, NULL, 0, NULL, 1),
(18, 27, 1, '2019-03-09 11:24:03', 0, NULL, 0, NULL, 1),
(19, 28, 1, '2019-03-09 11:24:39', 0, NULL, 0, NULL, 1),
(20, 29, 1, '2019-03-09 11:24:54', 0, NULL, 0, NULL, 1),
(21, 30, 1, '2019-03-09 11:25:17', 0, NULL, 0, NULL, 1),
(22, 31, 1, '2019-03-09 11:27:04', 0, NULL, 0, NULL, 1),
(23, 32, 1, '2019-03-09 11:27:19', 0, NULL, 0, NULL, 1),
(24, 33, 1, '2019-03-09 11:29:41', 0, NULL, 0, NULL, 1),
(25, 34, 1, '2019-03-09 11:30:00', 0, NULL, 0, NULL, 1),
(26, 35, 1, '2019-03-09 11:30:12', 0, NULL, 0, NULL, 1),
(27, 36, 1, '2019-03-09 11:30:26', 0, NULL, 0, NULL, 1),
(28, 37, 1, '2019-03-09 11:30:41', 0, NULL, 0, NULL, 1),
(29, 38, 1, '2019-03-09 11:30:54', 0, NULL, 0, NULL, 1),
(30, 39, 1, '2019-03-09 11:31:07', 0, NULL, 0, NULL, 1),
(31, 40, 1, '2019-03-09 11:31:19', 0, NULL, 0, NULL, 1),
(32, 41, 1, '2019-03-09 11:31:31', 0, NULL, 0, NULL, 1),
(33, 42, 1, '2019-03-09 11:31:43', 0, NULL, 0, NULL, 1),
(34, 43, 1, '2019-03-09 11:31:55', 0, NULL, 0, NULL, 1),
(35, 44, 1, '2019-03-09 11:32:15', 0, NULL, 0, NULL, 1),
(36, 45, 1, '2019-03-09 11:32:29', 0, NULL, 0, NULL, 1),
(37, 46, 1, '2019-03-09 11:32:41', 0, NULL, 0, NULL, 1),
(38, 47, 1, '2019-03-09 11:32:53', 0, NULL, 0, NULL, 1),
(39, 48, 1, '2019-03-09 11:33:06', 0, NULL, 0, NULL, 1),
(40, 49, 1, '2019-03-09 11:33:20', 0, NULL, 0, NULL, 1),
(41, 50, 1, '2019-03-09 11:33:32', 0, NULL, 0, NULL, 1),
(42, 51, 1, '2019-03-09 11:33:45', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_status_mode`
--

CREATE TABLE `cw_status_mode` (
  `prime_status_mode_id` int NOT NULL,
  `status_mode_value` varchar(150) DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_status_mode`
--

INSERT INTO `cw_status_mode` (`prime_status_mode_id`, `status_mode_value`, `trans_status`) VALUES
(1, 'YES', 1),
(2, 'NO', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_statutory`
--

CREATE TABLE `cw_statutory` (
  `prime_statutory_id` int NOT NULL,
  `category` varchar(100) DEFAULT '',
  `pf_limit` int DEFAULT '0',
  `pf_conditions` varchar(100) DEFAULT '',
  `esi_limit` int DEFAULT '0',
  `esi_conditions` varchar(100) DEFAULT '',
  `admin_charge` varchar(100) DEFAULT '',
  `inspection_charge` varchar(100) DEFAULT '',
  `edli_charge` varchar(100) DEFAULT '',
  `esi_start_check_month` varchar(100) DEFAULT '',
  `esi_end_check_month` varchar(100) DEFAULT '',
  `earning_column` varchar(100) DEFAULT '',
  `esi_eligibilit_formula` text,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_statutory`
--

INSERT INTO `cw_statutory` (`prime_statutory_id`, `category`, `pf_limit`, `pf_conditions`, `esi_limit`, `esi_conditions`, `admin_charge`, `inspection_charge`, `edli_charge`, `esi_start_check_month`, `esi_end_check_month`, `earning_column`, `esi_eligibilit_formula`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, '2', 100, '1', 100, '1', '1', '2', '2', '3', '3', '', 'PF Limit - \nESI Limit', 1, '2020-03-03 06:41:43', 0, NULL, 0, NULL, 1),
(2, '3', 20, '1', 20, '1', '2', '2', '2', '2', '1', 'pt_projection', '@pt_projection@', 1, '2020-03-09 10:21:05', 1, '2020-03-09 10:21:11', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_statutory_field`
--

CREATE TABLE `cw_statutory_field` (
  `prime_statutory_field_id` int NOT NULL,
  `statutory_field_name` varchar(100) NOT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;

--
-- Dumping data for table `cw_statutory_field`
--

INSERT INTO `cw_statutory_field` (`prime_statutory_field_id`, `statutory_field_name`, `trans_status`) VALUES
(1, 'PF Amount', 1),
(2, 'ESI Eligibility', 1),
(3, 'PT Amount', 1),
(4, 'VPF Amount', 1),
(5, 'TDS Amount', 1),
(6, 'LWF Amount', 1),
(7, 'Loan Amount', 1),
(8, 'Total working days', 1),
(9, 'Differential Day', 1),
(10, 'Separation Day', 1),
(11, 'Gratuity', 1),
(12, 'Increment', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_statutory_function`
--

CREATE TABLE `cw_statutory_function` (
  `prime_statutory_function_id` int NOT NULL,
  `statutory_function_name` varchar(100) NOT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;

--
-- Dumping data for table `cw_statutory_function`
--

INSERT INTO `cw_statutory_function` (`prime_statutory_function_id`, `statutory_function_name`, `trans_status`) VALUES
(1, 'get_pf_value', 1),
(2, 'get_esi_status', 1),
(3, 'get_professional_tax_value', 1),
(4, 'get_loan_value', 1),
(5, 'get_total_work_days', 1),
(6, 'get_lwf_employee', 1),
(7, 'get_lwf_employer', 1),
(8, 'get_differential_day', 1),
(9, 'get_seperation_day', 1),
(10, 'get_gratuity', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_sub_menu`
--

CREATE TABLE `cw_sub_menu` (
  `prime_sub_menu_id` int NOT NULL,
  `map_main_menu` int DEFAULT NULL,
  `sub_menu_name` varchar(100) DEFAULT NULL,
  `sub_menu_sort` int DEFAULT '0',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_sub_menu`
--

INSERT INTO `cw_sub_menu` (`prime_sub_menu_id`, `map_main_menu`, `sub_menu_name`, `sub_menu_sort`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 4, 'Payroll Settings', 7, 1, '2019-02-11 05:22:20', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(2, 5, 'Master', 3, 1, '2019-03-08 06:26:09', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(3, 5, 'Transaction', 5, 1, '2019-03-08 06:32:26', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(4, 5, 'Reports', 6, 1, '2019-03-08 06:34:40', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(5, 5, 'Popup Data', 1, 1, '2019-03-09 10:04:42', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(6, 5, 'Utilities', 2, 1, '2019-03-10 05:21:14', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(7, 7, 'Master', 9, 1, '2019-03-13 03:32:20', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(8, 7, 'Settings', 8, 1, '2019-03-13 03:32:37', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(9, 7, 'Transaction', 10, 1, '2019-03-13 03:32:52', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(10, 7, 'Reports', 11, 1, '2019-03-13 03:33:03', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(11, 6, 'Master', 14, 1, '2019-03-13 03:33:44', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(12, 6, 'Settings', 13, 1, '2019-03-13 03:33:52', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(13, 6, 'Transaction', 15, 1, '2019-03-13 03:34:08', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(14, 6, 'Reports', 16, 1, '2019-03-13 03:34:17', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(15, 8, 'Master', 18, 1, '2019-03-13 03:34:36', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(16, 8, 'Settings', 17, 1, '2019-03-13 03:34:53', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(17, 8, 'Transaction', 19, 1, '2019-03-13 03:35:06', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(18, 8, 'Reports', 20, 1, '2019-03-13 03:35:19', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(19, 6, 'Popup Data', 12, 1, '2019-08-22 01:16:22', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(20, 5, 'Settings', 21, 1, '2019-08-23 05:18:47', 1, '0000-00-00 00:00:00', 0, NULL, 1),
(21, 5, 'Employee Management', 4, 1, '2020-02-04 06:15:23', 1, '0000-00-00 00:00:00', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_time_slot`
--

CREATE TABLE `cw_time_slot` (
  `prime_time_slot_id` int NOT NULL,
  `time_slot` varchar(50) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_time_slot`
--

INSERT INTO `cw_time_slot` (`prime_time_slot_id`, `time_slot`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, '10 AM to 11 AM', 1, '2020-12-07 07:53:44', 0, NULL, 0, NULL, 1),
(2, '12 PM to 1 PM', 1, '2020-12-07 07:53:48', 0, NULL, 0, NULL, 1),
(3, '2.30 PM to 3.30 PM', 1, '2020-12-07 07:53:52', 0, NULL, 0, NULL, 1),
(4, '3.30 PM To 4.30 PM', 60, '2023-07-26 02:33:27', 0, NULL, 0, NULL, 1),
(5, '4.30 PM t0 6.30 PM', 60, '2024-03-25 02:37:57', 60, '2024-03-25 02:42:06', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_upload_extension`
--

CREATE TABLE `cw_upload_extension` (
  `prime_upload_extension_id` int NOT NULL,
  `file_type` varchar(100) DEFAULT '0',
  `extension` varchar(50) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_upload_extension`
--

INSERT INTO `cw_upload_extension` (`prime_upload_extension_id`, `file_type`, `extension`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, '1', 'xls', 1, '2020-02-14 07:19:47', 1, '2020-02-17 04:50:32', 0, NULL, 1),
(2, '1', 'pdf', 1, '2020-02-14 07:19:58', 0, NULL, 0, NULL, 1),
(3, '1', 'xlsx', 1, '2020-02-14 07:20:10', 1, '2020-02-17 04:50:35', 0, NULL, 1),
(4, '1', 'txt', 1, '2020-02-14 07:20:21', 0, NULL, 0, NULL, 1),
(5, '3', 'jpeg', 1, '2020-02-14 07:20:44', 0, NULL, 0, NULL, 1),
(6, '3', 'jpg', 1, '2020-02-14 07:20:56', 0, NULL, 0, NULL, 1),
(7, '3', 'png', 1, '2020-02-14 07:21:07', 0, NULL, 0, NULL, 1),
(8, '1', 'doc', 1, '2020-02-29 02:49:39', 0, NULL, 0, NULL, 1),
(9, '1', 'docx', 1, '2020-02-29 02:49:45', 0, NULL, 0, NULL, 1),
(10, '3', 'bmp', 1, '2020-03-03 06:36:03', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_user_role`
--

CREATE TABLE `cw_user_role` (
  `prime_user_role_id` int NOT NULL,
  `role_name` varchar(100) DEFAULT '',
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_user_role`
--

INSERT INTO `cw_user_role` (`prime_user_role_id`, `role_name`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'SUPER ADMIN', 1, '2020-02-04 12:39:13', 0, NULL, 0, NULL, 1),
(2, 'Admin', 1, '2020-02-04 12:39:28', 0, NULL, 0, NULL, 1),
(3, 'HR', 1, '2020-02-04 12:39:37', 1, '2020-02-26 01:16:40', 1, '2020-02-26 01:19:11', 1),
(4, 'Consultancy', 1, '2020-02-04 12:39:43', 0, NULL, 0, NULL, 1),
(5, 'Interviewer', 1, '2020-02-04 12:39:43', 0, NULL, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_util_excel_format`
--

CREATE TABLE `cw_util_excel_format` (
  `prime_excel_format_id` int NOT NULL,
  `excel_module_id` varchar(100) DEFAULT NULL,
  `import_type` int NOT NULL DEFAULT '1',
  `excel_name` varchar(100) DEFAULT NULL,
  `excel_table_name` blob,
  `excel_column_name` blob,
  `exist_column_name` tinyblob,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_util_excel_format_line`
--

CREATE TABLE `cw_util_excel_format_line` (
  `prime_excel_format_line_id` int NOT NULL,
  `prime_excel_format_id` int DEFAULT NULL,
  `excel_line_module_id` varchar(100) DEFAULT NULL,
  `excel_line_column_name` varchar(100) DEFAULT NULL,
  `excel_line_value` varchar(100) DEFAULT NULL,
  `trans_created_by` int DEFAULT '0',
  `trans_created_date` datetime DEFAULT NULL,
  `trans_updated_by` int DEFAULT '0',
  `trans_updated_date` datetime DEFAULT NULL,
  `trans_deleted_by` int DEFAULT '0',
  `trans_deleted_date` datetime DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `cw_verify_status`
--

CREATE TABLE `cw_verify_status` (
  `prime_verify_status_id` int NOT NULL,
  `verify_value` varchar(150) DEFAULT NULL,
  `trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_verify_status`
--

INSERT INTO `cw_verify_status` (`prime_verify_status_id`, `verify_value`, `trans_status`) VALUES
(1, 'Pending', 1),
(2, 'Completed', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_zct_1`
--

CREATE TABLE `cw_zct_1` (
  `cw_zct_1_id` int NOT NULL,
  `cw_zct_1_value` varchar(150) DEFAULT '0',
  `cw_zct_1_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_zct_1`
--

INSERT INTO `cw_zct_1` (`cw_zct_1_id`, `cw_zct_1_value`, `cw_zct_1_status`) VALUES
(1, 'Auto', 1),
(2, 'Manual', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_zct_2`
--

CREATE TABLE `cw_zct_2` (
  `cw_zct_2_id` int NOT NULL,
  `cw_zct_2_value` varchar(150) DEFAULT '0',
  `cw_zct_2_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `cw_zct_2`
--

INSERT INTO `cw_zct_2` (`cw_zct_2_id`, `cw_zct_2_value`, `cw_zct_2_status`) VALUES
(1, 'payroll', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_zct_3`
--

CREATE TABLE `cw_zct_3` (
  `cw_zct_3_id` int NOT NULL,
  `cw_zct_3_value` varchar(150) DEFAULT '0',
  `cw_zct_3_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `cw_zct_3`
--

INSERT INTO `cw_zct_3` (`cw_zct_3_id`, `cw_zct_3_value`, `cw_zct_3_status`) VALUES
(1, 'Active', 1),
(2, 'Inactive', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_zct_4`
--

CREATE TABLE `cw_zct_4` (
  `cw_zct_4_id` int NOT NULL,
  `cw_zct_4_value` varchar(150) DEFAULT '0',
  `cw_zct_4_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_zct_4`
--

INSERT INTO `cw_zct_4` (`cw_zct_4_id`, `cw_zct_4_value`, `cw_zct_4_status`) VALUES
(1, 'Document', 1),
(2, 'Audio', 1),
(3, 'Image', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_zct_5`
--

CREATE TABLE `cw_zct_5` (
  `cw_zct_5_id` int NOT NULL,
  `cw_zct_5_value` varchar(150) DEFAULT '0',
  `cw_zct_5_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_zct_5`
--

INSERT INTO `cw_zct_5` (`cw_zct_5_id`, `cw_zct_5_value`, `cw_zct_5_status`) VALUES
(1, 'Reference', 1),
(2, 'Consultancy', 1),
(3, 'Direct walkin', 1),
(4, 'Ads', 1),
(5, 'Naukri', 1),
(6, 'Indeed', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_zct_6`
--

CREATE TABLE `cw_zct_6` (
  `cw_zct_6_id` int NOT NULL,
  `cw_zct_6_value` varchar(150) DEFAULT '0',
  `cw_zct_6_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_zct_6`
--

INSERT INTO `cw_zct_6` (`cw_zct_6_id`, `cw_zct_6_value`, `cw_zct_6_status`) VALUES
(1, 'Married', 1),
(2, 'Unmarried', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_zct_7`
--

CREATE TABLE `cw_zct_7` (
  `cw_zct_7_id` int NOT NULL,
  `cw_zct_7_value` varchar(150) DEFAULT '0',
  `cw_zct_7_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_zct_7`
--

INSERT INTO `cw_zct_7` (`cw_zct_7_id`, `cw_zct_7_value`, `cw_zct_7_status`) VALUES
(1, 'SSLC', 1),
(2, 'HSC', 1),
(3, 'UG', 1),
(4, 'PG', 1),
(5, 'DIPLOMA', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_zct_8`
--

CREATE TABLE `cw_zct_8` (
  `cw_zct_8_id` int NOT NULL,
  `cw_zct_8_value` varchar(150) DEFAULT '0',
  `cw_zct_8_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_zct_8`
--

INSERT INTO `cw_zct_8` (`cw_zct_8_id`, `cw_zct_8_value`, `cw_zct_8_status`) VALUES
(1, 'Fresher', 1),
(2, 'Experienced', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_zct_9`
--

CREATE TABLE `cw_zct_9` (
  `cw_zct_9_id` int NOT NULL,
  `cw_zct_9_value` varchar(150) DEFAULT '0',
  `cw_zct_9_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_zct_9`
--

INSERT INTO `cw_zct_9` (`cw_zct_9_id`, `cw_zct_9_value`, `cw_zct_9_status`) VALUES
(1, 'Yes', 1),
(2, 'No', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_zct_10`
--

CREATE TABLE `cw_zct_10` (
  `cw_zct_10_id` int NOT NULL,
  `cw_zct_10_value` varchar(150) DEFAULT '0',
  `cw_zct_10_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_zct_10`
--

INSERT INTO `cw_zct_10` (`cw_zct_10_id`, `cw_zct_10_value`, `cw_zct_10_status`) VALUES
(1, 'Joined', 1),
(2, 'Not Joined', 1),
(3, 'Absconded', 1),
(4, 'Terminated', 1),
(5, 'Confirmed', 1),
(6, 'Resigned', 1),
(7, 'Offered', 1),
(8, 'Rejected', 1),
(9, 'Yet To Review', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_zct_11`
--

CREATE TABLE `cw_zct_11` (
  `cw_zct_11_id` int NOT NULL,
  `cw_zct_11_value` varchar(150) DEFAULT '0',
  `cw_zct_11_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `cw_zct_11`
--

INSERT INTO `cw_zct_11` (`cw_zct_11_id`, `cw_zct_11_value`, `cw_zct_11_status`) VALUES
(1, 'Yes', 1),
(2, 'No', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cw_zct_12`
--

CREATE TABLE `cw_zct_12` (
  `cw_zct_12_id` int NOT NULL,
  `cw_zct_12_value` varchar(150) DEFAULT '0',
  `cw_zct_12_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `cw_zct_12`
--

INSERT INTO `cw_zct_12` (`cw_zct_12_id`, `cw_zct_12_value`, `cw_zct_12_status`) VALUES
(1, 'Photo', 1),
(2, 'ID Proof', 1),
(3, 'Permenant Address Proof', 1),
(4, 'Current Address Proof', 1),
(5, 'Highest Education Proof', 1),
(6, 'Aadhar Card Proof', 1);

--
-- Indexes for dumped tables
--

--
-- Indexes for table `cw_active_status`
--
ALTER TABLE `cw_active_status`
  ADD PRIMARY KEY (`prime_active_status_id`);

--
-- Indexes for table `cw_app_config`
--
ALTER TABLE `cw_app_config`
  ADD PRIMARY KEY (`app_id`);

--
-- Indexes for table `cw_assign_log`
--
ALTER TABLE `cw_assign_log`
  ADD PRIMARY KEY (`prime_assign_log_id`);

--
-- Indexes for table `cw_blood_group`
--
ALTER TABLE `cw_blood_group`
  ADD PRIMARY KEY (`prime_blood_group_id`),
  ADD UNIQUE KEY `blood_group` (`blood_group`);

--
-- Indexes for table `cw_branch`
--
ALTER TABLE `cw_branch`
  ADD PRIMARY KEY (`prime_branch_id`),
  ADD UNIQUE KEY `branch` (`branch`);

--
-- Indexes for table `cw_candidate_status`
--
ALTER TABLE `cw_candidate_status`
  ADD PRIMARY KEY (`candidate_status_id`);

--
-- Indexes for table `cw_candidate_tracker`
--
ALTER TABLE `cw_candidate_tracker`
  ADD PRIMARY KEY (`prime_candidate_tracker_id`),
  ADD KEY `mobile_number` (`mobile_number`,`trans_status`),
  ADD KEY `post_applied_for` (`post_applied_for`),
  ADD KEY `candidate_status` (`candidate_status`);

--
-- Indexes for table `cw_candidate_tracker_educational_qualification`
--
ALTER TABLE `cw_candidate_tracker_educational_qualification`
  ADD PRIMARY KEY (`prime_candidate_tracker_educational_qualification_id`);

--
-- Indexes for table `cw_candidate_tracker_log`
--
ALTER TABLE `cw_candidate_tracker_log`
  ADD PRIMARY KEY (`prime_candidate_tracker_log_id`);

--
-- Indexes for table `cw_candidate_tracker_working_experience`
--
ALTER TABLE `cw_candidate_tracker_working_experience`
  ADD PRIMARY KEY (`prime_candidate_tracker_working_experience_id`);

--
-- Indexes for table `cw_category`
--
ALTER TABLE `cw_category`
  ADD PRIMARY KEY (`prime_category_id`),
  ADD UNIQUE KEY `category_name` (`category_name`);

--
-- Indexes for table `cw_channel`
--
ALTER TABLE `cw_channel`
  ADD PRIMARY KEY (`prime_channel_id`);

--
-- Indexes for table `cw_company`
--
ALTER TABLE `cw_company`
  ADD PRIMARY KEY (`prime_company_id`),
  ADD UNIQUE KEY `company_name` (`company_name`);

--
-- Indexes for table `cw_company_information`
--
ALTER TABLE `cw_company_information`
  ADD PRIMARY KEY (`prime_company_information_id`);

--
-- Indexes for table `cw_company_information_print_contact_information`
--
ALTER TABLE `cw_company_information_print_contact_information`
  ADD PRIMARY KEY (`prime_company_information_print_contact_information_id`);

--
-- Indexes for table `cw_company_information_print_default_notes`
--
ALTER TABLE `cw_company_information_print_default_notes`
  ADD PRIMARY KEY (`prime_company_information_print_default_notes_id`);

--
-- Indexes for table `cw_company_information_registered_office_information`
--
ALTER TABLE `cw_company_information_registered_office_information`
  ADD PRIMARY KEY (`prime_company_information_registered_office_information_id`);

--
-- Indexes for table `cw_consultancy`
--
ALTER TABLE `cw_consultancy`
  ADD PRIMARY KEY (`prime_consultancy_id`),
  ADD UNIQUE KEY `consultancy_name` (`consultancy_name`);

--
-- Indexes for table `cw_custom_design`
--
ALTER TABLE `cw_custom_design`
  ADD PRIMARY KEY (`prime_custom_design_id`);

--
-- Indexes for table `cw_department`
--
ALTER TABLE `cw_department`
  ADD PRIMARY KEY (`prime_department_id`),
  ADD UNIQUE KEY `department` (`department`);

--
-- Indexes for table `cw_designation`
--
ALTER TABLE `cw_designation`
  ADD PRIMARY KEY (`prime_designation_id`),
  ADD UNIQUE KEY `designation` (`designation`);

--
-- Indexes for table `cw_documents_required`
--
ALTER TABLE `cw_documents_required`
  ADD PRIMARY KEY (`prime_documents_required_id`),
  ADD UNIQUE KEY `documents_required` (`documents_required`);

--
-- Indexes for table `cw_email_line`
--
ALTER TABLE `cw_email_line`
  ADD PRIMARY KEY (`prime_email_line_id`);

--
-- Indexes for table `cw_email_log`
--
ALTER TABLE `cw_email_log`
  ADD PRIMARY KEY (`prime_email_log_id`);

--
-- Indexes for table `cw_employees`
--
ALTER TABLE `cw_employees`
  ADD PRIMARY KEY (`prime_employees_id`),
  ADD UNIQUE KEY `user_name` (`user_name`),
  ADD UNIQUE KEY `employee_code` (`employee_code`);

--
-- Indexes for table `cw_employees_log`
--
ALTER TABLE `cw_employees_log`
  ADD PRIMARY KEY (`prime_employees_log_id`);

--
-- Indexes for table `cw_employee_code_auto`
--
ALTER TABLE `cw_employee_code_auto`
  ADD PRIMARY KEY (`prime_employee_code_auto_id`),
  ADD UNIQUE KEY `category` (`category`);

--
-- Indexes for table `cw_employee_permission`
--
ALTER TABLE `cw_employee_permission`
  ADD PRIMARY KEY (`prime_employee_permission_id`);

--
-- Indexes for table `cw_file_merge_log`
--
ALTER TABLE `cw_file_merge_log`
  ADD PRIMARY KEY (`prime_file_merge_log_id`);

--
-- Indexes for table `cw_form_bind_input`
--
ALTER TABLE `cw_form_bind_input`
  ADD PRIMARY KEY (`prime_input_cond_for_id`);

--
-- Indexes for table `cw_form_condition_formula`
--
ALTER TABLE `cw_form_condition_formula`
  ADD PRIMARY KEY (`prime_cond_id`);

--
-- Indexes for table `cw_form_for_input`
--
ALTER TABLE `cw_form_for_input`
  ADD PRIMARY KEY (`prime_for_input_id`);

--
-- Indexes for table `cw_form_setting`
--
ALTER TABLE `cw_form_setting`
  ADD PRIMARY KEY (`prime_form_id`);

--
-- Indexes for table `cw_form_table_cond_for`
--
ALTER TABLE `cw_form_table_cond_for`
  ADD PRIMARY KEY (`prime_table_cond_for_id`);

--
-- Indexes for table `cw_form_table_search`
--
ALTER TABLE `cw_form_table_search`
  ADD PRIMARY KEY (`prime_table_id`);

--
-- Indexes for table `cw_form_view_setting`
--
ALTER TABLE `cw_form_view_setting`
  ADD PRIMARY KEY (`prime_form_view_id`);

--
-- Indexes for table `cw_gender`
--
ALTER TABLE `cw_gender`
  ADD PRIMARY KEY (`prime_gender_id`),
  ADD UNIQUE KEY `gender` (`gender`);

--
-- Indexes for table `cw_grants`
--
ALTER TABLE `cw_grants`
  ADD PRIMARY KEY (`permission_id`,`prime_employees_id`),
  ADD KEY `ospos_grants_ibfk_2` (`prime_employees_id`);

--
-- Indexes for table `cw_import`
--
ALTER TABLE `cw_import`
  ADD PRIMARY KEY (`import_id`);

--
-- Indexes for table `cw_interviewer_log`
--
ALTER TABLE `cw_interviewer_log`
  ADD PRIMARY KEY (`prime_interviewer_log_id`);

--
-- Indexes for table `cw_interview_type`
--
ALTER TABLE `cw_interview_type`
  ADD PRIMARY KEY (`prime_interview_type_id`),
  ADD UNIQUE KEY `interview_type` (`interview_type`);

--
-- Indexes for table `cw_location`
--
ALTER TABLE `cw_location`
  ADD PRIMARY KEY (`prime_location_id`),
  ADD UNIQUE KEY `location_name` (`location_name`);

--
-- Indexes for table `cw_mail_configurations`
--
ALTER TABLE `cw_mail_configurations`
  ADD PRIMARY KEY (`prime_mail_configurations_id`);

--
-- Indexes for table `cw_mail_configurations_cf`
--
ALTER TABLE `cw_mail_configurations_cf`
  ADD PRIMARY KEY (`prime_mail_configurations_cf_id`);

--
-- Indexes for table `cw_main_menu`
--
ALTER TABLE `cw_main_menu`
  ADD PRIMARY KEY (`prime_menu_id`);

--
-- Indexes for table `cw_manager_list`
--
ALTER TABLE `cw_manager_list`
  ADD PRIMARY KEY (`prime_manager_list_id`),
  ADD UNIQUE KEY `employee_code` (`employee_code`);

--
-- Indexes for table `cw_modules`
--
ALTER TABLE `cw_modules`
  ADD PRIMARY KEY (`module_id`);

--
-- Indexes for table `cw_payroll_formula`
--
ALTER TABLE `cw_payroll_formula`
  ADD PRIMARY KEY (`prime_payroll_id`);

--
-- Indexes for table `cw_payroll_function`
--
ALTER TABLE `cw_payroll_function`
  ADD PRIMARY KEY (`prime_payroll_function_id`);

--
-- Indexes for table `cw_payroll_function_map`
--
ALTER TABLE `cw_payroll_function_map`
  ADD PRIMARY KEY (`payroll_column_map_id`);

--
-- Indexes for table `cw_pdf_setting`
--
ALTER TABLE `cw_pdf_setting`
  ADD PRIMARY KEY (`prime_pdf_map_id`);

--
-- Indexes for table `cw_permissions`
--
ALTER TABLE `cw_permissions`
  ADD PRIMARY KEY (`permission_id`);

--
-- Indexes for table `cw_pick_base_search`
--
ALTER TABLE `cw_pick_base_search`
  ADD PRIMARY KEY (`prime_pick_base_search_id`);

--
-- Indexes for table `cw_position`
--
ALTER TABLE `cw_position`
  ADD PRIMARY KEY (`prime_position_id`);

--
-- Indexes for table `cw_position_questions`
--
ALTER TABLE `cw_position_questions`
  ADD PRIMARY KEY (`prime_position_questions_id`);

--
-- Indexes for table `cw_print_block`
--
ALTER TABLE `cw_print_block`
  ADD PRIMARY KEY (`prime_print_block_id`);

--
-- Indexes for table `cw_print_design`
--
ALTER TABLE `cw_print_design`
  ADD PRIMARY KEY (`prime_print_design_id`);

--
-- Indexes for table `cw_print_info`
--
ALTER TABLE `cw_print_info`
  ADD PRIMARY KEY (`prime_print_info_id`);

--
-- Indexes for table `cw_print_map`
--
ALTER TABLE `cw_print_map`
  ADD PRIMARY KEY (`prime_print_map_id`);

--
-- Indexes for table `cw_print_split`
--
ALTER TABLE `cw_print_split`
  ADD PRIMARY KEY (`prime_print_split_id`);

--
-- Indexes for table `cw_print_table`
--
ALTER TABLE `cw_print_table`
  ADD PRIMARY KEY (`prime_print_table_id`);

--
-- Indexes for table `cw_print_table_where`
--
ALTER TABLE `cw_print_table_where`
  ADD PRIMARY KEY (`prime_print_where_id`);

--
-- Indexes for table `cw_professional_tax_location`
--
ALTER TABLE `cw_professional_tax_location`
  ADD PRIMARY KEY (`prime_professional_tax_location_id`),
  ADD UNIQUE KEY `professional_tax_location` (`professional_tax_location`);

--
-- Indexes for table `cw_report_add_column`
--
ALTER TABLE `cw_report_add_column`
  ADD PRIMARY KEY (`prime_report_add_column_id`);

--
-- Indexes for table `cw_report_filter`
--
ALTER TABLE `cw_report_filter`
  ADD PRIMARY KEY (`report_filter_id`);

--
-- Indexes for table `cw_report_filter_line`
--
ALTER TABLE `cw_report_filter_line`
  ADD PRIMARY KEY (`report_filter_line_id`);

--
-- Indexes for table `cw_report_setting`
--
ALTER TABLE `cw_report_setting`
  ADD PRIMARY KEY (`prime_report_setting_id`);

--
-- Indexes for table `cw_report_table`
--
ALTER TABLE `cw_report_table`
  ADD PRIMARY KEY (`prime_report_table_id`);

--
-- Indexes for table `cw_report_table_view`
--
ALTER TABLE `cw_report_table_view`
  ADD PRIMARY KEY (`prime_report_table_view_id`);

--
-- Indexes for table `cw_report_tot_column`
--
ALTER TABLE `cw_report_tot_column`
  ADD PRIMARY KEY (`prime_report_tot_id`);

--
-- Indexes for table `cw_report_where`
--
ALTER TABLE `cw_report_where`
  ADD PRIMARY KEY (`prime_report_where_id`);

--
-- Indexes for table `cw_reserved_words`
--
ALTER TABLE `cw_reserved_words`
  ADD PRIMARY KEY (`prime_reserved_words_id`);

--
-- Indexes for table `cw_role_base_condition`
--
ALTER TABLE `cw_role_base_condition`
  ADD PRIMARY KEY (`prime_role_base_condition_id`);

--
-- Indexes for table `cw_session_value`
--
ALTER TABLE `cw_session_value`
  ADD PRIMARY KEY (`prime_session_value_id`);

--
-- Indexes for table `cw_slots`
--
ALTER TABLE `cw_slots`
  ADD PRIMARY KEY (`prime_slots_id`);

--
-- Indexes for table `cw_sms_log`
--
ALTER TABLE `cw_sms_log`
  ADD PRIMARY KEY (`prime_sms_log_id`);

--
-- Indexes for table `cw_source`
--
ALTER TABLE `cw_source`
  ADD PRIMARY KEY (`prime_source_id`);

--
-- Indexes for table `cw_state`
--
ALTER TABLE `cw_state`
  ADD PRIMARY KEY (`prime_state_id`);

--
-- Indexes for table `cw_state_cf`
--
ALTER TABLE `cw_state_cf`
  ADD PRIMARY KEY (`prime_state_cf_id`);

--
-- Indexes for table `cw_status_mode`
--
ALTER TABLE `cw_status_mode`
  ADD PRIMARY KEY (`prime_status_mode_id`);

--
-- Indexes for table `cw_statutory`
--
ALTER TABLE `cw_statutory`
  ADD PRIMARY KEY (`prime_statutory_id`);

--
-- Indexes for table `cw_statutory_field`
--
ALTER TABLE `cw_statutory_field`
  ADD PRIMARY KEY (`prime_statutory_field_id`);

--
-- Indexes for table `cw_statutory_function`
--
ALTER TABLE `cw_statutory_function`
  ADD PRIMARY KEY (`prime_statutory_function_id`);

--
-- Indexes for table `cw_sub_menu`
--
ALTER TABLE `cw_sub_menu`
  ADD PRIMARY KEY (`prime_sub_menu_id`);

--
-- Indexes for table `cw_time_slot`
--
ALTER TABLE `cw_time_slot`
  ADD PRIMARY KEY (`prime_time_slot_id`);

--
-- Indexes for table `cw_upload_extension`
--
ALTER TABLE `cw_upload_extension`
  ADD PRIMARY KEY (`prime_upload_extension_id`),
  ADD UNIQUE KEY `extension` (`extension`);

--
-- Indexes for table `cw_user_role`
--
ALTER TABLE `cw_user_role`
  ADD PRIMARY KEY (`prime_user_role_id`);

--
-- Indexes for table `cw_util_excel_format`
--
ALTER TABLE `cw_util_excel_format`
  ADD PRIMARY KEY (`prime_excel_format_id`);

--
-- Indexes for table `cw_util_excel_format_line`
--
ALTER TABLE `cw_util_excel_format_line`
  ADD PRIMARY KEY (`prime_excel_format_line_id`);

--
-- Indexes for table `cw_verify_status`
--
ALTER TABLE `cw_verify_status`
  ADD PRIMARY KEY (`prime_verify_status_id`);

--
-- Indexes for table `cw_zct_1`
--
ALTER TABLE `cw_zct_1`
  ADD PRIMARY KEY (`cw_zct_1_id`);

--
-- Indexes for table `cw_zct_2`
--
ALTER TABLE `cw_zct_2`
  ADD PRIMARY KEY (`cw_zct_2_id`);

--
-- Indexes for table `cw_zct_3`
--
ALTER TABLE `cw_zct_3`
  ADD PRIMARY KEY (`cw_zct_3_id`);

--
-- Indexes for table `cw_zct_4`
--
ALTER TABLE `cw_zct_4`
  ADD PRIMARY KEY (`cw_zct_4_id`);

--
-- Indexes for table `cw_zct_5`
--
ALTER TABLE `cw_zct_5`
  ADD PRIMARY KEY (`cw_zct_5_id`);

--
-- Indexes for table `cw_zct_6`
--
ALTER TABLE `cw_zct_6`
  ADD PRIMARY KEY (`cw_zct_6_id`);

--
-- Indexes for table `cw_zct_7`
--
ALTER TABLE `cw_zct_7`
  ADD PRIMARY KEY (`cw_zct_7_id`);

--
-- Indexes for table `cw_zct_8`
--
ALTER TABLE `cw_zct_8`
  ADD PRIMARY KEY (`cw_zct_8_id`);

--
-- Indexes for table `cw_zct_9`
--
ALTER TABLE `cw_zct_9`
  ADD PRIMARY KEY (`cw_zct_9_id`);

--
-- Indexes for table `cw_zct_10`
--
ALTER TABLE `cw_zct_10`
  ADD PRIMARY KEY (`cw_zct_10_id`);

--
-- Indexes for table `cw_zct_11`
--
ALTER TABLE `cw_zct_11`
  ADD PRIMARY KEY (`cw_zct_11_id`);

--
-- Indexes for table `cw_zct_12`
--
ALTER TABLE `cw_zct_12`
  ADD PRIMARY KEY (`cw_zct_12_id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `cw_active_status`
--
ALTER TABLE `cw_active_status`
  MODIFY `prime_active_status_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `cw_app_config`
--
ALTER TABLE `cw_app_config`
  MODIFY `app_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7674;

--
-- AUTO_INCREMENT for table `cw_assign_log`
--
ALTER TABLE `cw_assign_log`
  MODIFY `prime_assign_log_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25816;

--
-- AUTO_INCREMENT for table `cw_blood_group`
--
ALTER TABLE `cw_blood_group`
  MODIFY `prime_blood_group_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `cw_branch`
--
ALTER TABLE `cw_branch`
  MODIFY `prime_branch_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `cw_candidate_status`
--
ALTER TABLE `cw_candidate_status`
  MODIFY `candidate_status_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `cw_candidate_tracker`
--
ALTER TABLE `cw_candidate_tracker`
  MODIFY `prime_candidate_tracker_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29948;

--
-- AUTO_INCREMENT for table `cw_candidate_tracker_educational_qualification`
--
ALTER TABLE `cw_candidate_tracker_educational_qualification`
  MODIFY `prime_candidate_tracker_educational_qualification_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38226;

--
-- AUTO_INCREMENT for table `cw_candidate_tracker_log`
--
ALTER TABLE `cw_candidate_tracker_log`
  MODIFY `prime_candidate_tracker_log_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_candidate_tracker_working_experience`
--
ALTER TABLE `cw_candidate_tracker_working_experience`
  MODIFY `prime_candidate_tracker_working_experience_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12072;

--
-- AUTO_INCREMENT for table `cw_category`
--
ALTER TABLE `cw_category`
  MODIFY `prime_category_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `cw_channel`
--
ALTER TABLE `cw_channel`
  MODIFY `prime_channel_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `cw_company`
--
ALTER TABLE `cw_company`
  MODIFY `prime_company_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `cw_company_information`
--
ALTER TABLE `cw_company_information`
  MODIFY `prime_company_information_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `cw_company_information_print_contact_information`
--
ALTER TABLE `cw_company_information_print_contact_information`
  MODIFY `prime_company_information_print_contact_information_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_company_information_print_default_notes`
--
ALTER TABLE `cw_company_information_print_default_notes`
  MODIFY `prime_company_information_print_default_notes_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_company_information_registered_office_information`
--
ALTER TABLE `cw_company_information_registered_office_information`
  MODIFY `prime_company_information_registered_office_information_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_consultancy`
--
ALTER TABLE `cw_consultancy`
  MODIFY `prime_consultancy_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=74;

--
-- AUTO_INCREMENT for table `cw_custom_design`
--
ALTER TABLE `cw_custom_design`
  MODIFY `prime_custom_design_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=866;

--
-- AUTO_INCREMENT for table `cw_department`
--
ALTER TABLE `cw_department`
  MODIFY `prime_department_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `cw_designation`
--
ALTER TABLE `cw_designation`
  MODIFY `prime_designation_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `cw_documents_required`
--
ALTER TABLE `cw_documents_required`
  MODIFY `prime_documents_required_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_email_line`
--
ALTER TABLE `cw_email_line`
  MODIFY `prime_email_line_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_email_log`
--
ALTER TABLE `cw_email_log`
  MODIFY `prime_email_log_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_employees`
--
ALTER TABLE `cw_employees`
  MODIFY `prime_employees_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=178;

--
-- AUTO_INCREMENT for table `cw_employees_log`
--
ALTER TABLE `cw_employees_log`
  MODIFY `prime_employees_log_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=98;

--
-- AUTO_INCREMENT for table `cw_employee_code_auto`
--
ALTER TABLE `cw_employee_code_auto`
  MODIFY `prime_employee_code_auto_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `cw_employee_permission`
--
ALTER TABLE `cw_employee_permission`
  MODIFY `prime_employee_permission_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;

--
-- AUTO_INCREMENT for table `cw_file_merge_log`
--
ALTER TABLE `cw_file_merge_log`
  MODIFY `prime_file_merge_log_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_form_bind_input`
--
ALTER TABLE `cw_form_bind_input`
  MODIFY `prime_input_cond_for_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `cw_form_condition_formula`
--
ALTER TABLE `cw_form_condition_formula`
  MODIFY `prime_cond_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `cw_form_for_input`
--
ALTER TABLE `cw_form_for_input`
  MODIFY `prime_for_input_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_form_setting`
--
ALTER TABLE `cw_form_setting`
  MODIFY `prime_form_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=956;

--
-- AUTO_INCREMENT for table `cw_form_table_cond_for`
--
ALTER TABLE `cw_form_table_cond_for`
  MODIFY `prime_table_cond_for_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_form_table_search`
--
ALTER TABLE `cw_form_table_search`
  MODIFY `prime_table_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_form_view_setting`
--
ALTER TABLE `cw_form_view_setting`
  MODIFY `prime_form_view_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=148;

--
-- AUTO_INCREMENT for table `cw_gender`
--
ALTER TABLE `cw_gender`
  MODIFY `prime_gender_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `cw_import`
--
ALTER TABLE `cw_import`
  MODIFY `import_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_interviewer_log`
--
ALTER TABLE `cw_interviewer_log`
  MODIFY `prime_interviewer_log_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11999;

--
-- AUTO_INCREMENT for table `cw_interview_type`
--
ALTER TABLE `cw_interview_type`
  MODIFY `prime_interview_type_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `cw_location`
--
ALTER TABLE `cw_location`
  MODIFY `prime_location_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `cw_mail_configurations`
--
ALTER TABLE `cw_mail_configurations`
  MODIFY `prime_mail_configurations_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `cw_mail_configurations_cf`
--
ALTER TABLE `cw_mail_configurations_cf`
  MODIFY `prime_mail_configurations_cf_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `cw_main_menu`
--
ALTER TABLE `cw_main_menu`
  MODIFY `prime_menu_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `cw_manager_list`
--
ALTER TABLE `cw_manager_list`
  MODIFY `prime_manager_list_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37;

--
-- AUTO_INCREMENT for table `cw_payroll_formula`
--
ALTER TABLE `cw_payroll_formula`
  MODIFY `prime_payroll_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=403;

--
-- AUTO_INCREMENT for table `cw_payroll_function`
--
ALTER TABLE `cw_payroll_function`
  MODIFY `prime_payroll_function_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `cw_payroll_function_map`
--
ALTER TABLE `cw_payroll_function_map`
  MODIFY `payroll_column_map_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `cw_pdf_setting`
--
ALTER TABLE `cw_pdf_setting`
  MODIFY `prime_pdf_map_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_pick_base_search`
--
ALTER TABLE `cw_pick_base_search`
  MODIFY `prime_pick_base_search_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `cw_position`
--
ALTER TABLE `cw_position`
  MODIFY `prime_position_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=36;

--
-- AUTO_INCREMENT for table `cw_position_questions`
--
ALTER TABLE `cw_position_questions`
  MODIFY `prime_position_questions_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=101;

--
-- AUTO_INCREMENT for table `cw_print_block`
--
ALTER TABLE `cw_print_block`
  MODIFY `prime_print_block_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_print_design`
--
ALTER TABLE `cw_print_design`
  MODIFY `prime_print_design_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_print_info`
--
ALTER TABLE `cw_print_info`
  MODIFY `prime_print_info_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_print_map`
--
ALTER TABLE `cw_print_map`
  MODIFY `prime_print_map_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_print_split`
--
ALTER TABLE `cw_print_split`
  MODIFY `prime_print_split_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_print_table`
--
ALTER TABLE `cw_print_table`
  MODIFY `prime_print_table_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_print_table_where`
--
ALTER TABLE `cw_print_table_where`
  MODIFY `prime_print_where_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_professional_tax_location`
--
ALTER TABLE `cw_professional_tax_location`
  MODIFY `prime_professional_tax_location_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `cw_report_add_column`
--
ALTER TABLE `cw_report_add_column`
  MODIFY `prime_report_add_column_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_report_filter`
--
ALTER TABLE `cw_report_filter`
  MODIFY `report_filter_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `cw_report_filter_line`
--
ALTER TABLE `cw_report_filter_line`
  MODIFY `report_filter_line_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `cw_report_setting`
--
ALTER TABLE `cw_report_setting`
  MODIFY `prime_report_setting_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `cw_report_table`
--
ALTER TABLE `cw_report_table`
  MODIFY `prime_report_table_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_report_table_view`
--
ALTER TABLE `cw_report_table_view`
  MODIFY `prime_report_table_view_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=71;

--
-- AUTO_INCREMENT for table `cw_report_tot_column`
--
ALTER TABLE `cw_report_tot_column`
  MODIFY `prime_report_tot_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `cw_report_where`
--
ALTER TABLE `cw_report_where`
  MODIFY `prime_report_where_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_reserved_words`
--
ALTER TABLE `cw_reserved_words`
  MODIFY `prime_reserved_words_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=686;

--
-- AUTO_INCREMENT for table `cw_role_base_condition`
--
ALTER TABLE `cw_role_base_condition`
  MODIFY `prime_role_base_condition_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `cw_session_value`
--
ALTER TABLE `cw_session_value`
  MODIFY `prime_session_value_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `cw_slots`
--
ALTER TABLE `cw_slots`
  MODIFY `prime_slots_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `cw_sms_log`
--
ALTER TABLE `cw_sms_log`
  MODIFY `prime_sms_log_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_source`
--
ALTER TABLE `cw_source`
  MODIFY `prime_source_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_state`
--
ALTER TABLE `cw_state`
  MODIFY `prime_state_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=52;

--
-- AUTO_INCREMENT for table `cw_state_cf`
--
ALTER TABLE `cw_state_cf`
  MODIFY `prime_state_cf_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43;

--
-- AUTO_INCREMENT for table `cw_status_mode`
--
ALTER TABLE `cw_status_mode`
  MODIFY `prime_status_mode_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_statutory`
--
ALTER TABLE `cw_statutory`
  MODIFY `prime_statutory_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_statutory_field`
--
ALTER TABLE `cw_statutory_field`
  MODIFY `prime_statutory_field_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `cw_statutory_function`
--
ALTER TABLE `cw_statutory_function`
  MODIFY `prime_statutory_function_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `cw_sub_menu`
--
ALTER TABLE `cw_sub_menu`
  MODIFY `prime_sub_menu_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `cw_time_slot`
--
ALTER TABLE `cw_time_slot`
  MODIFY `prime_time_slot_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `cw_upload_extension`
--
ALTER TABLE `cw_upload_extension`
  MODIFY `prime_upload_extension_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `cw_user_role`
--
ALTER TABLE `cw_user_role`
  MODIFY `prime_user_role_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `cw_util_excel_format`
--
ALTER TABLE `cw_util_excel_format`
  MODIFY `prime_excel_format_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_util_excel_format_line`
--
ALTER TABLE `cw_util_excel_format_line`
  MODIFY `prime_excel_format_line_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cw_verify_status`
--
ALTER TABLE `cw_verify_status`
  MODIFY `prime_verify_status_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_zct_1`
--
ALTER TABLE `cw_zct_1`
  MODIFY `cw_zct_1_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_zct_2`
--
ALTER TABLE `cw_zct_2`
  MODIFY `cw_zct_2_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `cw_zct_3`
--
ALTER TABLE `cw_zct_3`
  MODIFY `cw_zct_3_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_zct_4`
--
ALTER TABLE `cw_zct_4`
  MODIFY `cw_zct_4_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `cw_zct_5`
--
ALTER TABLE `cw_zct_5`
  MODIFY `cw_zct_5_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `cw_zct_6`
--
ALTER TABLE `cw_zct_6`
  MODIFY `cw_zct_6_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_zct_7`
--
ALTER TABLE `cw_zct_7`
  MODIFY `cw_zct_7_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `cw_zct_8`
--
ALTER TABLE `cw_zct_8`
  MODIFY `cw_zct_8_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_zct_9`
--
ALTER TABLE `cw_zct_9`
  MODIFY `cw_zct_9_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_zct_10`
--
ALTER TABLE `cw_zct_10`
  MODIFY `cw_zct_10_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `cw_zct_11`
--
ALTER TABLE `cw_zct_11`
  MODIFY `cw_zct_11_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `cw_zct_12`
--
ALTER TABLE `cw_zct_12`
  MODIFY `cw_zct_12_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
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 */;